diff -Nru stellarium-0.12.1/CMakeLists.txt stellarium-0.12.4/CMakeLists.txt --- stellarium-0.12.1/CMakeLists.txt 2013-04-21 07:45:56.000000000 +0000 +++ stellarium-0.12.4/CMakeLists.txt 2013-09-23 06:20:50.000000000 +0000 @@ -1,4 +1,5 @@ +# Minimal version of cmake for using with Qt5 is 2.8.9 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.7) # Avoid repeating the IF statement in the ENDIF and ELSE @@ -12,7 +13,7 @@ PROJECT(Stellarium) SET(STELLARIUM_MAJOR "0") SET(STELLARIUM_MINOR "12") -SET(STELLARIUM_PATCH "1") +SET(STELLARIUM_PATCH "4") SET(VERSION "${STELLARIUM_MAJOR}.${STELLARIUM_MINOR}.${STELLARIUM_PATCH}") SET(PACKAGE stellarium) @@ -36,8 +37,8 @@ # Add valgrind build options if necessary IF(${CMAKE_BUILD_TYPE} MATCHES "Valgrind") - SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0") - SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O0") + SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O0 -g") + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O0 -g") ENDIF() IF(NOT STELLARIUM_SPLASH) @@ -54,7 +55,6 @@ STRING(REGEX REPLACE "^.*[ ]([0-9]+)\\.[0-9].*$" "\\1" CLANG_MAJOR "${_clang_version_info}") STRING(REGEX REPLACE "^.*[ ][0-9]+\\.([0-9]).*$" "\\1" CLANG_MINOR "${_clang_version_info}") MESSAGE(STATUS "Found Clang ${CLANG_MAJOR}.${CLANG_MINOR}") - SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Woverloaded-virtual") ELSE() SET(CLANG_MAJOR 0) SET(CLANG_MINOR 0) @@ -86,7 +86,7 @@ IF(UNIX AND NOT WIN32) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wno-unused-parameter") # additional C compile flags - SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra") # additional CPP compile flags + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wno-unused-parameter") # additional CPP compile flags ELSEIF ("${CMAKE_SIZEOF_VOID_P}" EQUAL "4") SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -fexceptions -fident -mthreads") SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wsign-promo -fexceptions -fident -mthreads") @@ -97,6 +97,10 @@ SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wsign-promo -fexceptions -fident -mthreads -mwindows") # --enable-runtime-pseudo-reloc --verbose ENDIF() +IF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Woverloaded-virtual -Wno-unused-private-field -Wno-uninitialized -Wno-tautological-constant-out-of-range-compare") +ENDIF() + SET(OPTIMIZE_INTEL_ATOM 0 CACHE BOOL "Activate optimizations for atom processor.") IF(OPTIMIZE_INTEL_ATOM) SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mtune=generic -msse -msse2 -msse3 -mfpmath=sse") @@ -115,11 +119,17 @@ IF (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") # Use -pthread compilation option to properly link to threading library SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread") + IF(${GCC_VERSION} STRGREATER "4.7") + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-local-typedefs") + ENDIF() ENDIF (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") # best way to get to APPLE? IF(APPLE) - SET(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -fno-common -Wall -Wextra") + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Wall -Wextra") + IF("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-private-field -Wno-unknown-warning-option") + ENDIF() SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-common -Wall -Wextra -Wno-unused-parameter") # uncomment one of the following, depending on minimum OS level you want @@ -197,25 +207,29 @@ SET(BUILD_STATIC_PLUGINS 1 CACHE BOOL "Define whether plugins should be compiled statically and linked to the main program") SET(BUILD_DYNAMIC_PLUGINS 0 CACHE BOOL "Define whether plugins should be compiled dynamically") +#### demo plugins #### SET(USE_PLUGIN_HELLOSTELMODULE 0 CACHE BOOL "Define whether the HelloStelModule plugin should be created.") SET(USE_PLUGIN_SIMPLEDRAWLINE 0 CACHE BOOL "Define whether the Simple Draw Line plugin should be created.") + +#### work plugins #### SET(USE_PLUGIN_ANGLEMEASURE 1 CACHE BOOL "Define whether the AngleMeasure plugin should be created.") SET(USE_PLUGIN_COMPASSMARKS 1 CACHE BOOL "Define whether the CompassMarks plugin should be created.") -SET(USE_PLUGIN_SATELLITES 1 CACHE BOOL "Define whether the Satellites plugin should be created.") -SET(USE_PLUGIN_TELESCOPECONTROL 1 CACHE BOOL "Define whether the TelescopeControl plug-in should be created.") +SET(USE_PLUGIN_EXOPLANETS 1 CACHE BOOL "Define whether the Exoplanets plugin should be created.") SET(USE_PLUGIN_LOGBOOK 0 CACHE BOOL "Define whether the LogBook plugin should be created.") +SET(USE_PLUGIN_NOVAE 1 CACHE BOOL "Define whether the Novae plugin should be created.") +SET(USE_PLUGIN_OBSERVABILITY 1 CACHE BOOL "Define whether the Observability plugin should be created.") SET(USE_PLUGIN_OCULARS 1 CACHE BOOL "Define whether the Oculars plugin should be created.") +SET(USE_PLUGIN_PULSARS 1 CACHE BOOL "Define whether the Pulsars plugin should be created.") +SET(USE_PLUGIN_QUASARS 1 CACHE BOOL "Define whether the Quasars plugin should be created.") +SET(USE_PLUGIN_RENDERERSTATISTICS 0 CACHE BOOL "Define whether the RendererStatistics plugin should be created.") +SET(USE_PLUGIN_SATELLITES 1 CACHE BOOL "Define whether the Satellites plugin should be created.") +SET(USE_PLUGIN_SOLARSYSTEMEDITOR 1 CACHE BOOL "Define whether the Solar System Editor should be built.") +SET(USE_PLUGIN_SUPERNOVAE 1 CACHE BOOL "Define whether the Historical Supernova plugin should be created.") SET(USE_PLUGIN_SVMT 0 CACHE BOOL "Define whether the SVMT plugin should be created.") +SET(USE_PLUGIN_TELESCOPECONTROL 1 CACHE BOOL "Define whether the TelescopeControl plug-in should be created.") SET(USE_PLUGIN_TEXTUSERINTERFACE 1 CACHE BOOL "Define whether the TextUserInterface plugin should be created.") SET(USE_PLUGIN_TIMEZONECONFIGURATION 1 CACHE BOOL "Define whether the TimeZoneConfiguration plugin should be created.") SET(USE_PLUGIN_VIRGO 0 CACHE BOOL "Define whether the VirGO plugin should be created.") -SET(USE_PLUGIN_SOLARSYSTEMEDITOR 1 CACHE BOOL "Define whether the Solar System Editor should be built.") -SET(USE_PLUGIN_SUPERNOVAE 1 CACHE BOOL "Define whether the Historical Supernova plugin should be created.") -SET(USE_PLUGIN_QUASARS 1 CACHE BOOL "Define whether the Quasars plugin should be created.") -SET(USE_PLUGIN_PULSARS 1 CACHE BOOL "Define whether the Pulsars plugin should be created.") -SET(USE_PLUGIN_EXOPLANETS 1 CACHE BOOL "Define whether the Exoplanets plugin should be created.") -SET(USE_PLUGIN_OBSERVABILITY 1 CACHE BOOL "Define whether the Observability plugin should be created.") -SET(USE_PLUGIN_RENDERERSTATISTICS 0 CACHE BOOL "Define whether the RendererStatistics plugin should be created.") ########## Static plugins need to define includes and libraries ########## for the compilation of Stellarium itself @@ -365,10 +379,11 @@ ELSEIF ("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") SET(ISS_ARCHITECTURE_SPECIFIC ";Make the installer run only on win64:\nArchitecturesAllowed=x64\n;Switch to 64-bit install mode:\nArchitecturesInstallIn64BitMode=x64") SET(ISS_PACKAGE_PLATFORM "win64") - SET(ISS_ARCH_SPECIFIC_MINGW_LIBS "Source: \"${MINGW_BIN_DIRECTORY}/libstdc++*.dll\"; DestDir: \"{app}\";") + SET(ISS_ARCH_SPECIFIC_MINGW_LIBS "Source: \"${MINGW_BIN_DIRECTORY}/libstdc++*.dll\"; DestDir: \"{app}\";\nSource: \"@QT_BINARY_DIR@/libwinpthread*.dll\"; DestDir: \"{app}\";\nSource: \"@QT_BINARY_DIR@/libgcc_s_sjlj*.dll\"; DestDir: \"{app}\";") ENDIF() SET(ISS_AUTOGENERATED_WARNING "Do not edit this file! It has been automatically generated by CMake. Your changes will be lost the next time CMake is run.") CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/stellarium.iss.cmake ${CMAKE_SOURCE_DIR}/stellarium.iss @ONLY) + CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/stellarium-patch.iss.cmake ${CMAKE_SOURCE_DIR}/stellarium-patch.iss @ONLY) ENDIF(WIN32) ########## Release build tweaks ########### @@ -392,6 +407,8 @@ ELSEIF(GCC_VERSION VERSION_EQUAL 4.6 OR GCC_VERSION VERSION_EQUAL 4.7) SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O0 -fauto-inc-dec -fcompare-elim -fcprop-registers -fdce -fdefer-pop -fdelayed-branch -fdse -fguess-branch-probability -fif-conversion2 -fif-conversion -fipa-pure-const -fipa-reference -fipa-profile -fmerge-constants -fsplit-wide-types -ftree-bit-ccp -ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse -ftree-forwprop -ftree-fre -ftree-phiprop -ftree-sra -ftree-pta -ftree-ter -funit-at-a-time -fthread-jumps -falign-functions -falign-jumps -falign-loops -falign-labels -fcaller-saves -fcrossjumping -fcse-follow-jumps -fcse-skip-blocks -fdelete-null-pointer-checks -fdevirtualize -fexpensive-optimizations -fgcse -fgcse-lm -finline-small-functions -findirect-inlining -fipa-sra -foptimize-sibling-calls -fpartial-inlining -fpeephole2 -fregmove -freorder-blocks -freorder-functions -frerun-cse-after-loop -fsched-interblock -fsched-spec -fschedule-insns -fschedule-insns2 -fstrict-aliasing -fstrict-overflow -ftree-switch-conversion -ftree-pre -ftree-vrp") SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O0 -fauto-inc-dec -fcompare-elim -fcprop-registers -fdce -fdefer-pop -fdelayed-branch -fdse -fguess-branch-probability -fif-conversion2 -fif-conversion -fipa-pure-const -fipa-reference -fipa-profile -fmerge-constants -fsplit-wide-types -ftree-bit-ccp -ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse -ftree-forwprop -ftree-fre -ftree-phiprop -ftree-sra -ftree-pta -ftree-ter -funit-at-a-time -fthread-jumps -falign-functions -falign-jumps -falign-loops -falign-labels -fcaller-saves -fcrossjumping -fcse-follow-jumps -fcse-skip-blocks -fdelete-null-pointer-checks -fdevirtualize -fexpensive-optimizations -fgcse -fgcse-lm -finline-small-functions -findirect-inlining -fipa-sra -foptimize-sibling-calls -fpartial-inlining -fpeephole2 -fregmove -freorder-blocks -freorder-functions -frerun-cse-after-loop -fsched-interblock -fsched-spec -fschedule-insns -fschedule-insns2 -fstrict-aliasing -fstrict-overflow -ftree-switch-conversion -ftree-pre -ftree-vrp") + SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -fauto-inc-dec -fcompare-elim -fcprop-registers -fdce -fdefer-pop -fdelayed-branch -fdse -fguess-branch-probability -fif-conversion2 -fif-conversion -fipa-pure-const -fipa-reference -fipa-profile -fmerge-constants -fsplit-wide-types -ftree-bit-ccp -ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse -ftree-forwprop -ftree-fre -ftree-phiprop -ftree-sra -ftree-pta -ftree-ter -funit-at-a-time -fthread-jumps -falign-functions -falign-jumps -falign-loops -falign-labels -fcaller-saves -fcrossjumping -fcse-follow-jumps -fcse-skip-blocks -fdelete-null-pointer-checks -fdevirtualize -fexpensive-optimizations -fgcse -fgcse-lm -finline-small-functions -findirect-inlining -fipa-sra -foptimize-sibling-calls -fpartial-inlining -fpeephole2 -fregmove -freorder-blocks -freorder-functions -frerun-cse-after-loop -fsched-interblock -fsched-spec -fschedule-insns -fschedule-insns2 -fstrict-aliasing -fstrict-overflow -ftree-switch-conversion -ftree-pre -ftree-vrp") + SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 -fauto-inc-dec -fcompare-elim -fcprop-registers -fdce -fdefer-pop -fdelayed-branch -fdse -fguess-branch-probability -fif-conversion2 -fif-conversion -fipa-pure-const -fipa-reference -fipa-profile -fmerge-constants -fsplit-wide-types -ftree-bit-ccp -ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse -ftree-forwprop -ftree-fre -ftree-phiprop -ftree-sra -ftree-pta -ftree-ter -funit-at-a-time -fthread-jumps -falign-functions -falign-jumps -falign-loops -falign-labels -fcaller-saves -fcrossjumping -fcse-follow-jumps -fcse-skip-blocks -fdelete-null-pointer-checks -fdevirtualize -fexpensive-optimizations -fgcse -fgcse-lm -finline-small-functions -findirect-inlining -fipa-sra -foptimize-sibling-calls -fpartial-inlining -fpeephole2 -fregmove -freorder-blocks -freorder-functions -frerun-cse-after-loop -fsched-interblock -fsched-spec -fschedule-insns -fschedule-insns2 -fstrict-aliasing -fstrict-overflow -ftree-switch-conversion -ftree-pre -ftree-vrp") SET(CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} -O0 -fauto-inc-dec -fcompare-elim -fcprop-registers -fdce -fdefer-pop -fdelayed-branch -fdse -fguess-branch-probability -fif-conversion2 -fif-conversion -fipa-pure-const -fipa-reference -fipa-profile -fmerge-constants -fsplit-wide-types -ftree-bit-ccp -ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse -ftree-forwprop -ftree-fre -ftree-phiprop -ftree-sra -ftree-pta -ftree-ter -funit-at-a-time -fthread-jumps -falign-functions -falign-jumps -falign-loops -falign-labels -fcaller-saves -fcrossjumping -fcse-follow-jumps -fcse-skip-blocks -fdelete-null-pointer-checks -fdevirtualize -fexpensive-optimizations -fgcse -fgcse-lm -finline-small-functions -findirect-inlining -fipa-sra -foptimize-sibling-calls -fpartial-inlining -fpeephole2 -fregmove -freorder-blocks -freorder-functions -frerun-cse-after-loop -fsched-interblock -fsched-spec -fschedule-insns -fschedule-insns2 -fstrict-aliasing -fstrict-overflow -ftree-switch-conversion -ftree-pre -ftree-vrp") SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -O0 -fauto-inc-dec -fcompare-elim -fcprop-registers -fdce -fdefer-pop -fdelayed-branch -fdse -fguess-branch-probability -fif-conversion2 -fif-conversion -fipa-pure-const -fipa-reference -fipa-profile -fmerge-constants -fsplit-wide-types -ftree-bit-ccp -ftree-builtin-call-dce -ftree-ccp -ftree-ch -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse -ftree-forwprop -ftree-fre -ftree-phiprop -ftree-sra -ftree-pta -ftree-ter -funit-at-a-time -fthread-jumps -falign-functions -falign-jumps -falign-loops -falign-labels -fcaller-saves -fcrossjumping -fcse-follow-jumps -fcse-skip-blocks -fdelete-null-pointer-checks -fdevirtualize -fexpensive-optimizations -fgcse -fgcse-lm -finline-small-functions -findirect-inlining -fipa-sra -foptimize-sibling-calls -fpartial-inlining -fpeephole2 -fregmove -freorder-blocks -freorder-functions -frerun-cse-after-loop -fsched-interblock -fsched-spec -fschedule-insns -fschedule-insns2 -fstrict-aliasing -fstrict-overflow -ftree-switch-conversion -ftree-pre -ftree-vrp") ENDIF() @@ -464,6 +481,13 @@ CONFIGURE_FILE(${PROJECT_SOURCE_DIR}/Doxyfile.cmake ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile @ONLY) ADD_CUSTOM_TARGET(apidoc doxygen ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generate the doxygen documentation into the doc directory.") +##################### Generate translation copying script ###################### +IF (WIN32) + STRING(REPLACE "/" "\\" PROJECT_SOURCE_DIR_WINPATH ${PROJECT_SOURCE_DIR}) + STRING(REPLACE "/" "\\" PROJECT_BINARY_DIR_WINPATH ${PROJECT_BINARY_DIR}) + CONFIGURE_FILE(${PROJECT_SOURCE_DIR}/util/copy-translations.bat.cmake ${PROJECT_SOURCE_DIR}/util/copy-translations.bat @ONLY NEWLINE_STYLE WIN32) +ENDIF(WIN32) + ########### Top level include directories ########### # This will be used for all compilations in sub-directories INCLUDE_DIRECTORIES( diff -Nru stellarium-0.12.1/ChangeLog stellarium-0.12.4/ChangeLog --- stellarium-0.12.1/ChangeLog 2013-04-21 07:14:50.000000000 +0000 +++ stellarium-0.12.4/ChangeLog 2013-09-28 09:27:13.000000000 +0000 @@ -1,3 +1,60 @@ +0.12.4 [2013-09-26] +Bugfix release. +- fixed crash Stellarium when enabled binoculars in the Oculars plugin (LP: #1222742); +- added render nighttime landscapes without lighting (LP: #1223052); + +0.12.3 [2013-09-08] +Bugfix release with new plugin. +- new plugin - Bright Novae; +- added intermediate value to ZHR of shooting stars between 80 and 10000 (LP: #1208106); +- fixed search tool (LP: #1208296, #1211198); +- fixed behaviour for shortkeys of few plugins (LP: #1208291); +- fixed Flamsteed designations for few Virgo stars (LP: #1222094); +- fixed saving Milky Way brightness via GUI (LP: #1220477) + +0.12.2 [2013-08-04] +Bugfix release with few new features. +New version of the Satellites plug-in (0.8.1): +- automatic adding of new satellites on update from selected update sources; +by default, only new naked-eye satellites are auto-added +- automatic removal of satellites if they are no longer listed in the update +sources +- "user-defined" flag protecting satellites from update/removal +- satellites can be added to/removed from satellite groups from the GUI +- custom satellite groups can be defined +- the default satellite group names and satellite descriptions are translatable +Added: +- Variable stars support (LP: #665014) +- Automatic change of landscape on planet change (LP: #1173254) +- Flamsteed designation for stars and search tool (LP: #1190503) +Changed: +- Repacked default star catalogs (LP: #926588) +- Update DSO features (LP: #1115035, #1172402, #1180493) +- Improved Quasars plugin (LP: #1169232, #1181688) +- Improved Pulsars plugin (LP: #1169230, #1181688) +- Improved Oculars plugin (LP: #1170239, #1188340) +- Improved Historical Supernovae plugin (LP: #1180962) +- Improved Observability analysis plugin (LP: #1171182) +- Improved Exoplanets plugin (LP: #1177871) +- Improved Satellites plugin (LP: #955780) +- Improved search tool (LP: #1181534, #1184599, #1180962) +- Improved scripting engine (LP: #1202637, #1091626) +Fixed: +- Satellites plugin cause crash when enabled in distant past (LP: #955780) +- Landscape colour saturation at summer noon (LP: #1115364) +- wrong rendering of Planet's shadow (LP: #1131847) +- stellarium crashes (LP: #1157930, #1177871, #1194838, #1173355, #1184599) +- mismatched malloc/delete (LP: #1172931) +- error in template code (LP: #1178257) +- undefined template function in vecmath (LP: #1178391) +- Setting Startup date and time (Other:) sets time to UTC, not my local (EDT) time (LP: #1198570) +- Debug messages don't completely convert paths to local directory separator (LP: #682633) +- Garbled text hovering over time/date (LP: #1176424) +- Set time to now (Icon not illuminated) (LP: #1178498) +- Tongan translation discrepancies (LP: #1181945) +- POD document (LP: #1184459) +- No orbits displayed for some planets' satellites (LP: #834727) + 0.12.1 [2013-04-21] Bugfix release with few new features. Added: diff -Nru stellarium-0.12.1/Doxyfile.cmake stellarium-0.12.4/Doxyfile.cmake --- stellarium-0.12.1/Doxyfile.cmake 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/Doxyfile.cmake 2013-08-04 06:20:27.000000000 +0000 @@ -672,7 +672,7 @@ # with spaces. INPUT = @PROJECT_SOURCE_DIR@/src/ \ - @PROJECT_SOURCE_DIR@/doc/ + @PROJECT_SOURCE_DIR@/doc/ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is @@ -1564,7 +1564,7 @@ # NOT include the path). If a tag file is not located in the directory in which # doxygen is run, you must also specify the path to the tagfile here. -TAGFILES = "../../doc/qt.tag=http://doc.qt.nokia.com/stable/" +TAGFILES = "../../doc/qt.tag=http://qt-project.org/doc/qt-4.8/" # BM: A tag file for Qt can be found in KDE's API documentation tarbal: # http://api.kde.org/kdereview-api/kdereview.tar.gz diff -Nru stellarium-0.12.1/README stellarium-0.12.4/README --- stellarium-0.12.1/README 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/README 2013-09-28 09:27:47.000000000 +0000 @@ -262,6 +262,12 @@ estimated from r or b magnitude. When there is no b- or v- magnitude, the color B-V is estimated from the other magnitudes. Also proper motions of faint stars are neglected at all. + 3.8 Stellarium's Catalog of Variable Stars based on General Catalog of Variable + Stars (GCVS) version 2013Apr. + http://www.sai.msu.su/gcvs/gcvs/ + Samus N.N., Durlevich O.V., Kazarovets E V., Kireeva N.N., Pastukhova E.N., + Zharova A.V., et al., General Catalogue of Variable Stars (Samus+ 2007-2012) + http://cdsarc.u-strasbg.fr/viz-bin/Cat?cat=B%2Fgcvs& 4. Graphics 4.1 All graphics are copyrighted by the Stellarium's Team (GPL) except @@ -358,7 +364,7 @@ -------------------------------------------------------------------------------- 9. LICENSE -------------------------------------------------------------------------------- - Copyright (C) 2004-2012 Fabien Chereau et al. + Copyright (C) 2004-2013 Fabien Chereau et al. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff -Nru stellarium-0.12.1/Windows/Stellarium.sln stellarium-0.12.4/Windows/Stellarium.sln --- stellarium-0.12.1/Windows/Stellarium.sln 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/Windows/Stellarium.sln 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Stellarium", "Stellarium.vcxproj", "{486D205A-73A3-48D8-914D-23F9FB5B3973}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {486D205A-73A3-48D8-914D-23F9FB5B3973}.Debug|Win32.ActiveCfg = Debug|Win32 + {486D205A-73A3-48D8-914D-23F9FB5B3973}.Debug|Win32.Build.0 = Debug|Win32 + {486D205A-73A3-48D8-914D-23F9FB5B3973}.Release|Win32.ActiveCfg = Release|Win32 + {486D205A-73A3-48D8-914D-23F9FB5B3973}.Release|Win32.Build.0 = Release|Win32 + {209BA6C3-8286-4E86-B111-C29BEA81B14B}.Debug|Win32.ActiveCfg = Debug|Win32 + {209BA6C3-8286-4E86-B111-C29BEA81B14B}.Debug|Win32.Build.0 = Debug|Win32 + {209BA6C3-8286-4E86-B111-C29BEA81B14B}.Release|Win32.ActiveCfg = Release|Win32 + {209BA6C3-8286-4E86-B111-C29BEA81B14B}.Release|Win32.Build.0 = Release|Win32 + {6311BC3F-FF6A-4914-877E-544F451CF931}.Debug|Win32.ActiveCfg = Debug|Win32 + {6311BC3F-FF6A-4914-877E-544F451CF931}.Debug|Win32.Build.0 = Debug|Win32 + {6311BC3F-FF6A-4914-877E-544F451CF931}.Release|Win32.ActiveCfg = Release|Win32 + {6311BC3F-FF6A-4914-877E-544F451CF931}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/Windows/Stellarium.suo and /tmp/qEvCSzZF1M/stellarium-0.12.4/Windows/Stellarium.suo differ diff -Nru stellarium-0.12.1/Windows/Stellarium.vcxproj stellarium-0.12.4/Windows/Stellarium.vcxproj --- stellarium-0.12.1/Windows/Stellarium.vcxproj 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/Windows/Stellarium.vcxproj 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,2017 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing MultiLevelJsonBase.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing MultiLevelJsonBase.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + + + + + + + + + + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing AddRemoveLandscapesDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing AddRemoveLandscapesDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing AngleSpinBox.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing AngleSpinBox.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing AtmosphereDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing AtmosphereDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ConfigurationDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ConfigurationDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing CustomDeltaTEquationDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing CustomDeltaTEquationDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing DateTimeDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing DateTimeDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing Dialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing Dialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing HelpDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing HelpDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing LocationDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing LocationDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing MapLabel.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing MapLabel.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ScriptConsole.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ScriptConsole.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing SearchDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing SearchDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ShortcutLineEdit.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ShortcutLineEdit.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ShortcutsDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ShortcutsDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing SkyGui.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing SkyGui.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelGui.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelGui.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelGuiItems.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelGuiItems.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelScriptSyntaxHighlighter.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelScriptSyntaxHighlighter.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ViewDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ViewDialog.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + + + + + + + + + + + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelMainWindow.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelMainWindow.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelMainGraphicsView.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelMainGraphicsView.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelScriptMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelScriptMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelMainScriptAPIProxy.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelMainScriptAPIProxy.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelMainScriptAPI.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelMainScriptAPI.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ScreenImageMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ScreenImageMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StarMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StarMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing SolarSystem.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing SolarSystem.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing NebulaMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing NebulaMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing MilkyWay.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing MilkyWay.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing MeteorMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing MeteorMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing LandscapeMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing LandscapeMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing LabelMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing LabelMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing GridLinesMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing GridLinesMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ConstellationMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing ConstellationMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelQGLTextureBackend.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelQGLTextureBackend.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelTextureBackend.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelTextureBackend.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" + + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelTextureLoader.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelTextureLoader.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelVideoMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelVideoMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyPolygon.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyPolygon.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyLayerMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyLayerMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyLayer.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyLayer.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyImageTile.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyImageTile.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyDrawer.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyDrawer.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyCultureMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelSkyCultureMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelShortcutMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelShortcutMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelShortcutGroup.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelShortcutGroup.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelObserver.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelObserver.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelObjectMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelObjectMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelMovementMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelMovementMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelModuleMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelModuleMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelLocationMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelLocationMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelCore.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelCore.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelAudioMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelAudioMgr.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelAppGraphicsWidget.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelAppGraphicsWidget.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelApp.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing StelApp.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing SimbadSearcher.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + $(QTDIR)\bin\moc.exe;%(FullPath) + Moc%27ing SimbadSearcher.hpp... + .\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp + "$(QTDIR)\bin\moc.exe" "%(FullPath)" -o ".\GeneratedFiles\$(ConfigurationName)\moc_%(Filename).cpp" -DUNICODE -DWIN32 -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DNDEBUG -DQT_CORE_LIB -DQT_GUI_LIB -DQT_XML_LIB -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_NETWORK_LIB -DQT_SCRIPT_LIB -DQT_STATICPLUGIN -D_USE_MATH_DEFINES -DINSTALL_DATADIR=\".\" -DPACKAGE_VERSION=\"0.12.2\" -DNOMINMAX -DDEFAULT_GRAPHICS_SYSTEM=\"native\" "-I.\GeneratedFiles" "-I." "-I$(QTDIR)\include" "-I.\GeneratedFiles\$(ConfigurationName)\." "-I$(QTDIR)\include\QtCore" "-I$(QTDIR)\include\QtGui" "-I$(QTDIR)\include\QtXml" "-I$(QTDIR)\include\QtSql" "-I$(QTDIR)\include\QtOpenGL" "-I$(QTDIR)\include\QtNetwork" "-I$(QTDIR)\include\QtScript" "-I.\..\src\core" "-I.\..\src\core\modules" "-I.\..\src\scripting" "-I.\..\src" + + + + + Document + %(FullPath);..\data\icon.bmp;..\data\shaders\xyYToRGB.glsl;%(AdditionalInputs) + Rcc%27ing %(Identity)... + .\GeneratedFiles\qrc_%(Filename).cpp;%(Outputs) + "$(QTDIR)\bin\rcc.exe" -name "%(Filename)" -no-compress "%(FullPath)" -o .\GeneratedFiles\qrc_%(Filename).cpp + %(FullPath);..\data\icon.bmp;..\data\shaders\xyYToRGB.glsl;%(AdditionalInputs) + Rcc%27ing %(Identity)... + .\GeneratedFiles\qrc_%(Filename).cpp;%(Outputs) + "$(QTDIR)\bin\rcc.exe" -name "%(Filename)" -no-compress "%(FullPath)" -o .\GeneratedFiles\qrc_%(Filename).cpp + + + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + Document + %(FullPath);..\data\gui\tabicon-scripts.png;..\data\gui\btScriptStop-off.png;..\data\gui\btScriptStop-on.png;..\data\gui\btScriptRun-on.png;..\data\gui\btScriptRun-off.png;..\data\gui\folder.png;..\data\gui\nv_folder.png;..\data\gui\spindown-pressed.png;..\data\gui\spinleft-pressed.png;..\data\gui\spinright-pressed.png;..\data\gui\spinup-pressed.png;..\data\gui\tabicon-tools.png;..\data\gui\tabicon-navigation.png;..\data\gui\tabicon-main.png;..\data\gui\map-pointeur.png;..\data\gui\tabicon-info.png;..\data\gui\tabicon-help.png;..\data\gui\filesave.png;..\data\gui\tabicon-landscape-active.png;..\data\gui\tabicon-markings-active.png;..\data\gui\searchBoxBackground.png;..\data\gui\nv_searchBoxBackground.png;..\data\gui\searchButtonImage.png;..\data\gui\nv_searchButtonImage.png;..\data\gui\tabicon-sky-active.png;..\data\gui\tabicon-starlore-active.png;..\data\gui\btFlipHorizontal-off.png;..\data\gui\tabicon-landscape.png;..\data\gui\tabicon-images.png;..\data\gui\tabicon-logs.png;..\data\gui\tabicon-starlore.png;..\data\gui\tabicon-sky.png;..\data\gui\tabicon-markings.png;..\data\gui\btFlipHorizontal-on.png;..\data\gui\btFlipVertical-off.png;..\data\gui\btFlipVertical-on.png;..\data\gui\nv_checkbox-checked.png;..\data\gui\closeButton.png;..\data\gui\closeButton-hover.png;..\data\gui\nv_closeButton.png;..\data\gui\nv_closeButton-hover.png;..\data\gui\nv_checkbox-unchecked.png;..\data\gui\nv_radio-checked.png;..\data\gui\nv_radio-unchecked.png;..\data\gui\nv_resize.png;..\data\gui\nv_spindown.png;..\data\gui\nv_spinleft.png;..\data\gui\nv_spinright.png;..\data\gui\nv_spinup.png;..\data\gui\btFullScreen-on.png;..\data\gui\btFullScreen-off.png;..\data\gui\btbg-left.png;..\data\gui\btbg-middle.png;..\data\gui\btbg-right.png;..\data\gui\btbg-single.png;..\data\gui\1-off-time.png;..\data\gui\1-on-time.png;..\data\gui\2-off-location.png;..\data\gui\2-on-location.png;..\data\gui\3-off-sky.png;..\data\gui\3-on-sky.png;..\data\gui\4-off-skylore.png;..\data\gui\4-on-skylore.png;..\data\gui\5-off-labels.png;..\data\gui\5-on-labels.png;..\data\gui\6-off-search.png;..\data\gui\6-on-search.png;..\data\gui\7-off-plugins.png;..\data\gui\7-on-plugins.png;..\data\gui\8-off-settings.png;..\data\gui\8-on-settings.png;..\data\gui\9-off-help.png;..\data\gui\9-on-help.png;..\data\gui\btAtmosphere-off.png;..\data\gui\btAtmosphere-on.png;..\data\gui\btCardinalPoints-off.png;..\data\gui\btAzimuthalGrid-on.png;..\data\gui\btAzimuthalGrid-off.png;..\data\gui\btCardinalPoints-on.png;..\data\gui\btConstellationArt-off.png;..\data\gui\btConstellationArt-on.png;..\data\gui\btConstellationLabels-off.png;..\data\gui\btConstellationLabels-on.png;..\data\gui\btConstellationLines-off.png;..\data\gui\btConstellationLines-on.png;..\data\gui\btDSS-off.png;..\data\gui\btDSS-on.png;..\data\gui\btEquatorialGrid-off.png;..\data\gui\btEquatorialGrid-on.png;..\data\gui\btEquatorialMount-off.png;..\data\gui\btEquatorialMount-on.png;..\data\gui\btGotoSelectedObject-off.png;..\data\gui\btGotoSelectedObject-on.png;..\data\gui\btGround-off.png;..\data\gui\btGround-on.png;..\data\gui\btNebula-off.png;..\data\gui\btNebula-on.png;..\data\gui\btNightView-off.png;..\data\gui\btNightView-on.png;..\data\gui\btQuit.png;..\data\gui\btTimeForward-off.png;..\data\gui\btTimeForward-on.png;..\data\gui\btTimeNow-off.png;..\data\gui\btTimeNow-on.png;..\data\gui\btTimeRealtime-off.png;..\data\gui\btTimeRealtime-on.png;..\data\gui\nv_btTimeRealtime-off.png;..\data\gui\btTimeRewind-off.png;..\data\gui\btTimeRewind-on.png;..\data\gui\btTimePause-on.png;..\data\gui\btPlanets-off.png;..\data\gui\btPlanets-on.png;..\data\gui\checkbox-checked.png;..\data\gui\checkbox-unchecked.png;..\data\gui\glow.png;..\data\gui\glow32x32.png;..\data\gui\radio-checked.png;..\data\gui\radio-unchecked.png;..\data\gui\resize.png;..\data\gui\spindown.png;..\data\gui\spinup.png;..\data\gui\spinright.png;..\data\gui\spinleft.png;..\data\gui\VerticalAutoHideOff.png;..\data\gui\HorizontalAutoHideOn.png;..\data\gui\HorizontalAutoHideOff.png;..\data\gui\VerticalAutoHideOn.png;..\data\gui\world.png;..\data\gui\nightHtml.css;..\data\gui\nightStyle.css;..\data\gui\normalHtml.css;..\data\gui\normalStyle.css;..\data\gui\tabicon-plugins.png;..\data\gui\nv_filesave.png;..\data\gui\backspace.png;%(AdditionalInputs) + Rcc%27ing %(Identity)... + .\GeneratedFiles\qrc_%(Filename).cpp;%(Outputs) + "$(QTDIR)\bin\rcc.exe" -name "%(Filename)" -no-compress "%(FullPath)" -o .\GeneratedFiles\qrc_%(Filename).cpp + %(FullPath);..\data\gui\tabicon-scripts.png;..\data\gui\btScriptStop-off.png;..\data\gui\btScriptStop-on.png;..\data\gui\btScriptRun-on.png;..\data\gui\btScriptRun-off.png;..\data\gui\folder.png;..\data\gui\nv_folder.png;..\data\gui\spindown-pressed.png;..\data\gui\spinleft-pressed.png;..\data\gui\spinright-pressed.png;..\data\gui\spinup-pressed.png;..\data\gui\tabicon-tools.png;..\data\gui\tabicon-navigation.png;..\data\gui\tabicon-main.png;..\data\gui\map-pointeur.png;..\data\gui\tabicon-info.png;..\data\gui\tabicon-help.png;..\data\gui\filesave.png;..\data\gui\tabicon-landscape-active.png;..\data\gui\tabicon-markings-active.png;..\data\gui\searchBoxBackground.png;..\data\gui\nv_searchBoxBackground.png;..\data\gui\searchButtonImage.png;..\data\gui\nv_searchButtonImage.png;..\data\gui\tabicon-sky-active.png;..\data\gui\tabicon-starlore-active.png;..\data\gui\btFlipHorizontal-off.png;..\data\gui\tabicon-landscape.png;..\data\gui\tabicon-images.png;..\data\gui\tabicon-logs.png;..\data\gui\tabicon-starlore.png;..\data\gui\tabicon-sky.png;..\data\gui\tabicon-markings.png;..\data\gui\btFlipHorizontal-on.png;..\data\gui\btFlipVertical-off.png;..\data\gui\btFlipVertical-on.png;..\data\gui\nv_checkbox-checked.png;..\data\gui\closeButton.png;..\data\gui\closeButton-hover.png;..\data\gui\nv_closeButton.png;..\data\gui\nv_closeButton-hover.png;..\data\gui\nv_checkbox-unchecked.png;..\data\gui\nv_radio-checked.png;..\data\gui\nv_radio-unchecked.png;..\data\gui\nv_resize.png;..\data\gui\nv_spindown.png;..\data\gui\nv_spinleft.png;..\data\gui\nv_spinright.png;..\data\gui\nv_spinup.png;..\data\gui\btFullScreen-on.png;..\data\gui\btFullScreen-off.png;..\data\gui\btbg-left.png;..\data\gui\btbg-middle.png;..\data\gui\btbg-right.png;..\data\gui\btbg-single.png;..\data\gui\1-off-time.png;..\data\gui\1-on-time.png;..\data\gui\2-off-location.png;..\data\gui\2-on-location.png;..\data\gui\3-off-sky.png;..\data\gui\3-on-sky.png;..\data\gui\4-off-skylore.png;..\data\gui\4-on-skylore.png;..\data\gui\5-off-labels.png;..\data\gui\5-on-labels.png;..\data\gui\6-off-search.png;..\data\gui\6-on-search.png;..\data\gui\7-off-plugins.png;..\data\gui\7-on-plugins.png;..\data\gui\8-off-settings.png;..\data\gui\8-on-settings.png;..\data\gui\9-off-help.png;..\data\gui\9-on-help.png;..\data\gui\btAtmosphere-off.png;..\data\gui\btAtmosphere-on.png;..\data\gui\btCardinalPoints-off.png;..\data\gui\btAzimuthalGrid-on.png;..\data\gui\btAzimuthalGrid-off.png;..\data\gui\btCardinalPoints-on.png;..\data\gui\btConstellationArt-off.png;..\data\gui\btConstellationArt-on.png;..\data\gui\btConstellationLabels-off.png;..\data\gui\btConstellationLabels-on.png;..\data\gui\btConstellationLines-off.png;..\data\gui\btConstellationLines-on.png;..\data\gui\btDSS-off.png;..\data\gui\btDSS-on.png;..\data\gui\btEquatorialGrid-off.png;..\data\gui\btEquatorialGrid-on.png;..\data\gui\btEquatorialMount-off.png;..\data\gui\btEquatorialMount-on.png;..\data\gui\btGotoSelectedObject-off.png;..\data\gui\btGotoSelectedObject-on.png;..\data\gui\btGround-off.png;..\data\gui\btGround-on.png;..\data\gui\btNebula-off.png;..\data\gui\btNebula-on.png;..\data\gui\btNightView-off.png;..\data\gui\btNightView-on.png;..\data\gui\btQuit.png;..\data\gui\btTimeForward-off.png;..\data\gui\btTimeForward-on.png;..\data\gui\btTimeNow-off.png;..\data\gui\btTimeNow-on.png;..\data\gui\btTimeRealtime-off.png;..\data\gui\btTimeRealtime-on.png;..\data\gui\nv_btTimeRealtime-off.png;..\data\gui\btTimeRewind-off.png;..\data\gui\btTimeRewind-on.png;..\data\gui\btTimePause-on.png;..\data\gui\btPlanets-off.png;..\data\gui\btPlanets-on.png;..\data\gui\checkbox-checked.png;..\data\gui\checkbox-unchecked.png;..\data\gui\glow.png;..\data\gui\glow32x32.png;..\data\gui\radio-checked.png;..\data\gui\radio-unchecked.png;..\data\gui\resize.png;..\data\gui\spindown.png;..\data\gui\spinup.png;..\data\gui\spinright.png;..\data\gui\spinleft.png;..\data\gui\VerticalAutoHideOff.png;..\data\gui\HorizontalAutoHideOn.png;..\data\gui\HorizontalAutoHideOff.png;..\data\gui\VerticalAutoHideOn.png;..\data\gui\world.png;..\data\gui\nightHtml.css;..\data\gui\nightStyle.css;..\data\gui\normalHtml.css;..\data\gui\normalStyle.css;..\data\gui\tabicon-plugins.png;..\data\gui\nv_filesave.png;..\data\gui\backspace.png;%(AdditionalInputs) + Rcc%27ing %(Identity)... + .\GeneratedFiles\qrc_%(Filename).cpp;%(Outputs) + "$(QTDIR)\bin\rcc.exe" -name "%(Filename)" -no-compress "%(FullPath)" -o .\GeneratedFiles\qrc_%(Filename).cpp + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + true + true + + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + Document + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + $(QTDIR)\bin\uic.exe;%(AdditionalInputs) + Uic%27ing %(Identity)... + .\GeneratedFiles\ui_%(Filename).h;%(Outputs) + "$(QTDIR)\bin\uic.exe" -o ".\GeneratedFiles\ui_%(Filename).h" "%(FullPath)" + + + + + + + + {486D205A-73A3-48D8-914D-23F9FB5B3973} + Qt4VSv1.0 + Stellarium + + + + Application + + + Application + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + AllRules.ruleset + + + AllRules.ruleset + + + $(SolutionDir)$(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + ..\src;..\src\scripting;..\src\gui;..\src\core\modules;..\src\core\renderer;..\src\core\external;..\src\core\planetsephems;..\src\core\external\kfilter;..\src\core\external\glues_stel\source;C:\OpenSource\zlib-1.2.7;$(IncludePath) + ..\src;..\src\scripting;..\src\gui;..\src\core\modules;..\src\core\renderer;..\src\core\external;..\src\core\planetsephems;..\src\core\external\kfilter;..\src\core\external\glues_stel\source;..\src\core\external\kdewin32;C:\OpenSource\zlib-1.2.7;$(IncludePath) + + + + UNICODE;WIN32;QT_LARGEFILE_SUPPORT;QT_CORE_LIB;QT_GUI_LIB;QT_XML_LIB;QT_SQL_LIB;QT_OPENGL_LIB;QT_NETWORK_LIB;QT_SCRIPT_LIB;QT_STATICPLUGIN;_USE_MATH_DEFINES;INSTALL_DATADIR=".";PACKAGE_VERSION="0.12.2";NOMINMAX;DEFAULT_GRAPHICS_SYSTEM="native";%(PreprocessorDefinitions) + .\GeneratedFiles;.;$(QTDIR)\include;.\GeneratedFiles\$(ConfigurationName);$(QTDIR)\include\QtCore;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtXml;$(QTDIR)\include\QtSql;$(QTDIR)\include\QtOpenGL;$(QTDIR)\include\QtNetwork;$(QTDIR)\include\QtScript;..\src\core;..\src\core\modules;..\src\scripting;..\src;%(AdditionalIncludeDirectories) + Disabled + ProgramDatabase + MultiThreadedDebugDLL + false + + + Windows + $(OutDir)\$(ProjectName).exe + $(SolutionDir)$(Platform)\$(Configuration);$(QTDIR)\lib;%(AdditionalLibraryDirectories) + true + imm32.lib;ws2_32.lib;qtmaind.lib;QtCored.lib;QtGuid.lib;QtXmld.lib;QtSqld.lib;QtOpenGLd.lib;opengl32.lib;glu32.lib;QtNetworkd.lib;QtScriptd.lib;%(AdditionalDependencies) + false + + + + + UNICODE;WIN32;QT_LARGEFILE_SUPPORT;QT_DLL;QT_NO_DEBUG;NDEBUG;QT_CORE_LIB;QT_GUI_LIB;QT_XML_LIB;QT_SQL_LIB;QT_OPENGL_LIB;QT_NETWORK_LIB;QT_SCRIPT_LIB;QT_STATICPLUGIN;_USE_MATH_DEFINES;INSTALL_DATADIR=".";PACKAGE_VERSION="0.12.2";NOMINMAX;DEFAULT_GRAPHICS_SYSTEM="native";%(PreprocessorDefinitions) + .\GeneratedFiles;.;$(QTDIR)\include;.\GeneratedFiles\$(ConfigurationName);$(QTDIR)\include\QtCore;$(QTDIR)\include\QtGui;$(QTDIR)\include\QtXml;$(QTDIR)\include\QtSql;$(QTDIR)\include\QtOpenGL;$(QTDIR)\include\QtNetwork;$(QTDIR)\include\QtScript;..\src\core;..\src\core\modules;..\src\scripting;..\src;%(AdditionalIncludeDirectories) + + + MultiThreadedDLL + false + + + Windows + $(OutDir)\$(ProjectName).exe + $(QTDIR)\lib;%(AdditionalLibraryDirectories) + false + imm32.lib;ws2_32.lib;qtmain.lib;QtCore.lib;QtGui.lib;QtXml.lib;QtSql.lib;QtOpenGL.lib;opengl32.lib;glu32.lib;QtNetwork.lib;QtScript.lib;%(AdditionalDependencies) + + + + + + + + + + + \ No newline at end of file diff -Nru stellarium-0.12.1/Windows/Stellarium.vcxproj.filters stellarium-0.12.4/Windows/Stellarium.vcxproj.filters --- stellarium-0.12.1/Windows/Stellarium.vcxproj.filters 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/Windows/Stellarium.vcxproj.filters 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,1919 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;cxx;c;def + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h + + + {99349809-55BA-4b9d-BF79-8FDBB0286EB3} + ui + + + {D9D6E242-F8AF-46E4-B9FD-80ECBC20BA3E} + qrc;* + false + + + {71ED8ED8-ACB9-4CE9-BBE1-E00B30144E11} + moc;h;cpp + False + + + {0007c0cf-16fe-49d2-8d38-6240fb564260} + cpp;moc + False + + + {0d61bc71-5e05-490c-81d7-8bcd34f2a241} + cpp;moc + False + + + {dec61518-2295-4a7b-a3a3-9e4f2ef68d5f} + + + {4b7a118c-3fb0-40b9-b73b-5f926934e1cb} + + + {ced08f09-34b3-43d0-9fd1-dbb3817ae79b} + + + {01ab5880-56a5-4106-93eb-c2f03009446b} + + + {e7746f92-92db-41ef-a6e3-150a9bb66a19} + + + {2ee6d612-225f-4504-920a-2df472327609} + + + {cdad4c17-8a70-4c5b-b56b-e53f79be8df9} + + + {9e7f6b17-6381-41b4-a1ae-ce0f04b27896} + + + {93ef2d89-88db-4792-bf68-fed32105b4b5} + + + {3d01047b-a9af-4700-9a74-2b1babe6c559} + + + {f67f3d79-5739-4fa6-baa8-de9bd166824b} + + + {d7559aa2-7382-4352-bdbf-847e657425aa} + + + {c714bd14-f55d-4741-abf7-e3993e924b09} + + + {5cf24a64-db46-4beb-8ab5-204973bae7b1} + + + {87b69dd5-3ad0-4cb1-a7b3-28133de14998} + + + {e61613d9-2769-4a40-a19e-ed3eb996be64} + + + {89d07fcf-8a15-4520-8e47-7ba7e80eff38} + + + {f1fc2d01-995b-43c9-b740-b1ae594835a3} + + + {98af64d7-34d7-4269-9949-0bd908e968da} + + + {1a60cda1-f2b0-444d-b271-feb0b7ac253b} + + + {11d230a0-b598-461d-9e17-59a1448a6907} + + + {fe1bb9ac-75c7-4615-b78e-8fdfa0d2df41} + + + {160e83c8-dc66-48e7-86d1-ca955bb9db37} + + + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Script + + + Header Files\Script + + + Header Files\Script + + + Header Files\Script + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files + + + Header Files + + + Resource Files + + + Form Files + + + Form Files + + + Form Files + + + Form Files + + + Form Files + + + Form Files + + + Form Files + + + Form Files + + + Form Files + + + Form Files + + + Form Files + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Header Files\GUI + + + Resource Files + + + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Source Files\Core\External\kFilter + + + Source Files\Core\External\kFilter + + + Source Files\Core\External\kFilter + + + Source Files\Core\External\kFilter + + + Source Files\Core\External\kFilter + + + Source Files\Core\External\kFilter + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Source Files\Core\Modules + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Source Files\Script + + + Source Files\Script + + + Source Files\Script + + + Source Files\Script + + + Source Files\Script + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core\Renderer + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core + + + Source Files\Core\Modules + + + Source Files\Core\External\Glues + + + Source Files\Core\External\Glues + + + Source Files\Core\External\Glues + + + Source Files\Core\External\Glues + + + Source Files\Core\External\Glues + + + Source Files\Core\External\Glues + + + Source Files\Core\External\Glues + + + Source Files\Core\External\Glues + + + Source Files\Core\External\Glues + + + Source Files\Core\External\Glues + + + Source Files\Core\Planetsephems + + + Source Files\Core\Planetsephems + + + Source Files\Core\Planetsephems + + + Source Files\Core\Planetsephems + + + Source Files\Core\Planetsephems + + + Source Files\Core\Planetsephems + + + Source Files\Core\Planetsephems + + + Source Files\Core\Planetsephems + + + Source Files\Core\Planetsephems + + + Source Files\Core\Planetsephems + + + Source Files\Core\Planetsephems + + + Source Files\Core\External\KdeWin32 + + + Source Files\Core\External\KdeWin32 + + + Source Files\Core\External\KdeWin32 + + + Source Files\Core\External\KdeWin32 + + + Source Files + + + Source Files + + + Source Files + + + Generated Files\Debug + + + Generated Files\Release + + + Source Files + + + Generated Files\Debug + + + Generated Files\Release + + + Source Files\Core\Renderer + + + Source Files\Core\External\Glues + + + Source Files + + + Generated Files + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Generated Files\Debug + + + Generated Files\Release + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Source Files\GUI + + + Generated Files + + + + + Header Files\Core\External\kFilter + + + Header Files\Core\External\kFilter + + + Header Files\Core\External\kFilter + + + Header Files\Core\External\kFilter + + + Header Files\Core\External\kFilter + + + Header Files\Core\External\kFilter + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core\Renderer + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core + + + Header Files\Core\Modules + + + Header Files\Core\Modules + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\External\Glues + + + Header Files\Core\Planetsephems + + + Header Files\Core\Planetsephems + + + Header Files\Core\Planetsephems + + + Header Files\Core\Planetsephems + + + Header Files\Core\Planetsephems + + + Header Files\Core\Planetsephems + + + Header Files\Core\Planetsephems + + + Header Files\Core\Planetsephems + + + Header Files\Core\Planetsephems + + + Header Files\Core\Planetsephems + + + Header Files\Core\Planetsephems + + + Header Files\Core\External\KdeWin32 + + + Header Files\Core\External\KdeWin32 + + + Header Files\Core\External\KdeWin32 + + + Header Files\Core\External\KdeWin32 + + + Header Files + + + Header Files + + + Header Files\Core\External\Glues + + + Generated Files + + + Generated Files + + + Generated Files + + + Generated Files + + + Generated Files + + + Generated Files + + + Generated Files + + + Generated Files + + + Generated Files + + + Generated Files + + + Generated Files + + + Header Files\GUI + + + Header Files\Core\External\Glues + + + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + Resource Files + + + + + Resource Files + + + \ No newline at end of file diff -Nru stellarium-0.12.1/Windows/Stellarium.vcxproj.user stellarium-0.12.4/Windows/Stellarium.vcxproj.user --- stellarium-0.12.1/Windows/Stellarium.vcxproj.user 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/Windows/Stellarium.vcxproj.user 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,13 @@ + + + + C:\Qt\4.8.4 + PATH=$(QTDIR)\bin%3b"$(QTDIR)\bin%3b$(PATH) + ..\.. + WindowsLocalDebugger + + + C:\Qt\4.8.4 + PATH=$(QTDIR)\bin%3b"$(QTDIR)\bin%3b$(PATH) + + \ No newline at end of file diff -Nru stellarium-0.12.1/Windows/Stellarium.vcxproj.vspscc stellarium-0.12.4/Windows/Stellarium.vcxproj.vspscc --- stellarium-0.12.1/Windows/Stellarium.vcxproj.vspscc 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/Windows/Stellarium.vcxproj.vspscc 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,139 @@ +"" +{ +"FILE_VERSION" = "9237" +"ENLISTMENT_CHOICE" = "NEVER" +"PROJECT_FILE_RELATIVE_PATH" = "" +"NUMBER_OF_EXCLUDED_FILES" = "129" +"EXCLUDED_FILE0" = "GeneratedFiles\\Release\\moc_StelGuiItems.cpp" +"EXCLUDED_FILE1" = "GeneratedFiles\\Debug\\moc_LocationDialog.cpp" +"EXCLUDED_FILE2" = "GeneratedFiles\\Release\\moc_AtmosphereDialog.cpp" +"EXCLUDED_FILE3" = "GeneratedFiles\\Release\\moc_AngleSpinBox.cpp" +"EXCLUDED_FILE4" = "GeneratedFiles\\ui_scriptConsole.h" +"EXCLUDED_FILE5" = "GeneratedFiles\\Debug\\moc_StarMgr.cpp" +"EXCLUDED_FILE6" = "GeneratedFiles\\Debug\\moc_LandscapeMgr.cpp" +"EXCLUDED_FILE7" = "GeneratedFiles\\Release\\moc_StelObjectMgr.cpp" +"EXCLUDED_FILE8" = "GeneratedFiles\\Release\\moc_ShortcutsDialog.cpp" +"EXCLUDED_FILE9" = "GeneratedFiles\\Release\\moc_ConfigurationDialog.cpp" +"EXCLUDED_FILE10" = "GeneratedFiles\\Release\\moc_StelMainWindow.cpp" +"EXCLUDED_FILE11" = "GeneratedFiles\\Release\\moc_StelMainScriptAPIProxy.cpp" +"EXCLUDED_FILE12" = "GeneratedFiles\\Debug\\moc_StelMainScriptAPIProxy.cpp" +"EXCLUDED_FILE13" = "GeneratedFiles\\Release\\moc_StelLocationMgr.cpp" +"EXCLUDED_FILE14" = "GeneratedFiles\\Release\\moc_SimbadSearcher.cpp" +"EXCLUDED_FILE15" = "GeneratedFiles\\Release\\moc_ShortcutLineEdit.cpp" +"EXCLUDED_FILE16" = "GeneratedFiles\\Debug\\moc_GridLinesMgr.cpp" +"EXCLUDED_FILE17" = "GeneratedFiles\\Release\\moc_ConstellationMgr.cpp" +"EXCLUDED_FILE18" = "GeneratedFiles\\Release\\moc_StelSkyPolygon.cpp" +"EXCLUDED_FILE19" = "GeneratedFiles\\Release\\moc_StelSkyLayerMgr.cpp" +"EXCLUDED_FILE20" = "GeneratedFiles\\Debug\\moc_StelObserver.cpp" +"EXCLUDED_FILE21" = "GeneratedFiles\\Debug\\moc_StelAppGraphicsWidget.cpp" +"EXCLUDED_FILE22" = "GeneratedFiles\\Release\\moc_Dialog.cpp" +"EXCLUDED_FILE23" = "GeneratedFiles\\Debug\\moc_AddRemoveLandscapesDialog.cpp" +"EXCLUDED_FILE24" = "GeneratedFiles\\Release\\moc_StelMainGraphicsView.cpp" +"EXCLUDED_FILE25" = "GeneratedFiles\\Release\\moc_StelSkyLayer.cpp" +"EXCLUDED_FILE26" = "GeneratedFiles\\Release\\moc_StelShortcutMgr.cpp" +"EXCLUDED_FILE27" = "GeneratedFiles\\Release\\moc_StelCore.cpp" +"EXCLUDED_FILE28" = "GeneratedFiles\\Debug\\moc_StelCore.cpp" +"EXCLUDED_FILE29" = "GeneratedFiles\\ui_dateTimeDialogGui.h" +"EXCLUDED_FILE30" = "GeneratedFiles\\Debug\\moc_StelTextureBackend.cpp" +"EXCLUDED_FILE31" = "GeneratedFiles\\Debug\\moc_StelMovementMgr.cpp" +"EXCLUDED_FILE32" = "GeneratedFiles\\Debug\\moc_StelAudioMgr.cpp" +"EXCLUDED_FILE33" = "GeneratedFiles\\Release\\moc_SkyGui.cpp" +"EXCLUDED_FILE34" = "GeneratedFiles\\Debug\\moc_SearchDialog.cpp" +"EXCLUDED_FILE35" = "GeneratedFiles\\Debug\\moc_ScriptConsole.cpp" +"EXCLUDED_FILE36" = "GeneratedFiles\\ui_locationDialogGui.h" +"EXCLUDED_FILE37" = "GeneratedFiles\\Release\\moc_StelMainScriptAPI.cpp" +"EXCLUDED_FILE38" = "GeneratedFiles\\Release\\moc_StelVideoMgr.cpp" +"EXCLUDED_FILE39" = "GeneratedFiles\\Release\\moc_StelApp.cpp" +"EXCLUDED_FILE40" = "GeneratedFiles\\Debug\\moc_MultiLevelJsonBase.cpp" +"EXCLUDED_FILE41" = "GeneratedFiles\\Debug\\moc_Dialog.cpp" +"EXCLUDED_FILE42" = "GeneratedFiles\\Debug\\moc_CustomDeltaTEquationDialog.cpp" +"EXCLUDED_FILE43" = "GeneratedFiles\\ui_CustomDeltaTEquationDialog.h" +"EXCLUDED_FILE44" = "GeneratedFiles\\ui_configurationDialog.h" +"EXCLUDED_FILE45" = "GeneratedFiles\\ui_AtmosphereDialog.h" +"EXCLUDED_FILE46" = "GeneratedFiles\\Debug\\moc_StelMainGraphicsView.cpp" +"EXCLUDED_FILE47" = "GeneratedFiles\\Release\\moc_StelTextureLoader.cpp" +"EXCLUDED_FILE48" = "GeneratedFiles\\Debug\\moc_NebulaMgr.cpp" +"EXCLUDED_FILE49" = "GeneratedFiles\\Release\\moc_MeteorMgr.cpp" +"EXCLUDED_FILE50" = "GeneratedFiles\\Release\\moc_StelSkyImageTile.cpp" +"EXCLUDED_FILE51" = "GeneratedFiles\\Debug\\moc_StelSkyDrawer.cpp" +"EXCLUDED_FILE52" = "GeneratedFiles\\Debug\\moc_StelSkyCultureMgr.cpp" +"EXCLUDED_FILE53" = "GeneratedFiles\\Debug\\moc_StelModuleMgr.cpp" +"EXCLUDED_FILE54" = "GeneratedFiles\\Debug\\moc_StelGui.cpp" +"EXCLUDED_FILE55" = "GeneratedFiles\\Release\\moc_ScriptConsole.cpp" +"EXCLUDED_FILE56" = "GeneratedFiles\\Release\\moc_LocationDialog.cpp" +"EXCLUDED_FILE57" = "GeneratedFiles\\Debug\\moc_DateTimeDialog.cpp" +"EXCLUDED_FILE58" = "GeneratedFiles\\ui_shortcutsDialog.h" +"EXCLUDED_FILE59" = "GeneratedFiles\\Release\\moc_StelQGLTextureBackend.cpp" +"EXCLUDED_FILE60" = "GeneratedFiles\\Debug\\moc_ScreenImageMgr.cpp" +"EXCLUDED_FILE61" = "GeneratedFiles\\Release\\moc_StarMgr.cpp" +"EXCLUDED_FILE62" = "GeneratedFiles\\Release\\moc_StelSkyDrawer.cpp" +"EXCLUDED_FILE63" = "GeneratedFiles\\Debug\\moc_StelScriptSyntaxHighlighter.cpp" +"EXCLUDED_FILE64" = "GeneratedFiles\\Debug\\moc_SkyGui.cpp" +"EXCLUDED_FILE65" = "GeneratedFiles\\Debug\\moc_StelScriptMgr.cpp" +"EXCLUDED_FILE66" = "GeneratedFiles\\Release\\moc_LandscapeMgr.cpp" +"EXCLUDED_FILE67" = "GeneratedFiles\\Release\\moc_LabelMgr.cpp" +"EXCLUDED_FILE68" = "GeneratedFiles\\Debug\\moc_LabelMgr.cpp" +"EXCLUDED_FILE69" = "GeneratedFiles\\Release\\moc_StelShortcutGroup.cpp" +"EXCLUDED_FILE70" = "GeneratedFiles\\Release\\moc_StelMovementMgr.cpp" +"EXCLUDED_FILE71" = "GeneratedFiles\\Release\\moc_StelModuleMgr.cpp" +"EXCLUDED_FILE72" = "GeneratedFiles\\Debug\\moc_ViewDialog.cpp" +"EXCLUDED_FILE73" = "GeneratedFiles\\Debug\\moc_StelGuiItems.cpp" +"EXCLUDED_FILE74" = "GeneratedFiles\\Release\\moc_CustomDeltaTEquationDialog.cpp" +"EXCLUDED_FILE75" = "GeneratedFiles\\Debug\\moc_AngleSpinBox.cpp" +"EXCLUDED_FILE76" = "GeneratedFiles\\Release\\moc_AddRemoveLandscapesDialog.cpp" +"EXCLUDED_FILE77" = "GeneratedFiles\\Debug\\moc_AtmosphereDialog.cpp" +"EXCLUDED_FILE78" = "GeneratedFiles\\Release\\moc_StelTextureBackend.cpp" +"EXCLUDED_FILE79" = "GeneratedFiles\\Debug\\moc_StelQGLTextureBackend.cpp" +"EXCLUDED_FILE80" = "GeneratedFiles\\Release\\moc_StelScriptMgr.cpp" +"EXCLUDED_FILE81" = "GeneratedFiles\\Release\\moc_GridLinesMgr.cpp" +"EXCLUDED_FILE82" = "GeneratedFiles\\Release\\moc_StelObserver.cpp" +"EXCLUDED_FILE83" = "GeneratedFiles\\Release\\moc_MultiLevelJsonBase.cpp" +"EXCLUDED_FILE84" = "GeneratedFiles\\Release\\moc_ViewDialog.cpp" +"EXCLUDED_FILE85" = "GeneratedFiles\\Debug\\moc_StelDialog.cpp" +"EXCLUDED_FILE86" = "GeneratedFiles\\ui_helpDialogGui.h" +"EXCLUDED_FILE87" = "GeneratedFiles\\Debug\\moc_StelMainWindow.cpp" +"EXCLUDED_FILE88" = "GeneratedFiles\\Release\\moc_MilkyWay.cpp" +"EXCLUDED_FILE89" = "GeneratedFiles\\Release\\moc_StelAudioMgr.cpp" +"EXCLUDED_FILE90" = "GeneratedFiles\\Debug\\moc_SimbadSearcher.cpp" +"EXCLUDED_FILE91" = "GeneratedFiles\\Debug\\moc_ShortcutLineEdit.cpp" +"EXCLUDED_FILE92" = "GeneratedFiles\\ui_searchDialogGui.h" +"EXCLUDED_FILE93" = "GeneratedFiles\\Debug\\moc_SolarSystem.cpp" +"EXCLUDED_FILE94" = "GeneratedFiles\\Debug\\moc_MilkyWay.cpp" +"EXCLUDED_FILE95" = "GeneratedFiles\\Debug\\moc_ConstellationMgr.cpp" +"EXCLUDED_FILE96" = "GeneratedFiles\\Debug\\moc_StelSkyPolygon.cpp" +"EXCLUDED_FILE97" = "GeneratedFiles\\Debug\\moc_StelSkyLayer.cpp" +"EXCLUDED_FILE98" = "GeneratedFiles\\Release\\moc_StelDialog.cpp" +"EXCLUDED_FILE99" = "GeneratedFiles\\Release\\moc_SearchDialog.cpp" +"EXCLUDED_FILE100" = "GeneratedFiles\\Release\\moc_MapLabel.cpp" +"EXCLUDED_FILE101" = "GeneratedFiles\\Debug\\moc_HelpDialog.cpp" +"EXCLUDED_FILE102" = "GeneratedFiles\\Debug\\moc_StelTextureLoader.cpp" +"EXCLUDED_FILE103" = "GeneratedFiles\\Debug\\moc_StelMainScriptAPI.cpp" +"EXCLUDED_FILE104" = "GeneratedFiles\\Release\\moc_NebulaMgr.cpp" +"EXCLUDED_FILE105" = "GeneratedFiles\\qrc_guiRes.cpp" +"EXCLUDED_FILE106" = "GeneratedFiles\\Release\\moc_StelGui.cpp" +"EXCLUDED_FILE107" = "GeneratedFiles\\Debug\\moc_ShortcutsDialog.cpp" +"EXCLUDED_FILE108" = "GeneratedFiles\\Debug\\moc_MapLabel.cpp" +"EXCLUDED_FILE109" = "GeneratedFiles\\Release\\moc_DateTimeDialog.cpp" +"EXCLUDED_FILE110" = "GeneratedFiles\\qrc_mainRes.cpp" +"EXCLUDED_FILE111" = "GeneratedFiles\\Release\\moc_ScreenImageMgr.cpp" +"EXCLUDED_FILE112" = "GeneratedFiles\\Debug\\moc_StelLocationMgr.cpp" +"EXCLUDED_FILE113" = "GeneratedFiles\\Release\\moc_StelScriptSyntaxHighlighter.cpp" +"EXCLUDED_FILE114" = "GeneratedFiles\\Debug\\moc_ConfigurationDialog.cpp" +"EXCLUDED_FILE115" = "GeneratedFiles\\ui_viewDialog.h" +"EXCLUDED_FILE116" = "GeneratedFiles\\ui_addRemoveLandscapesDialog.h" +"EXCLUDED_FILE117" = "GeneratedFiles\\Debug\\moc_StelVideoMgr.cpp" +"EXCLUDED_FILE118" = "GeneratedFiles\\Debug\\moc_StelSkyLayerMgr.cpp" +"EXCLUDED_FILE119" = "GeneratedFiles\\Release\\moc_StelAppGraphicsWidget.cpp" +"EXCLUDED_FILE120" = "GeneratedFiles\\Debug\\moc_StelApp.cpp" +"EXCLUDED_FILE121" = "GeneratedFiles\\Release\\moc_HelpDialog.cpp" +"EXCLUDED_FILE122" = "GeneratedFiles\\Release\\moc_SolarSystem.cpp" +"EXCLUDED_FILE123" = "GeneratedFiles\\Debug\\moc_MeteorMgr.cpp" +"EXCLUDED_FILE124" = "GeneratedFiles\\Debug\\moc_StelSkyImageTile.cpp" +"EXCLUDED_FILE125" = "GeneratedFiles\\Release\\moc_StelSkyCultureMgr.cpp" +"EXCLUDED_FILE126" = "GeneratedFiles\\Debug\\moc_StelShortcutMgr.cpp" +"EXCLUDED_FILE127" = "GeneratedFiles\\Debug\\moc_StelShortcutGroup.cpp" +"EXCLUDED_FILE128" = "GeneratedFiles\\Debug\\moc_StelObjectMgr.cpp" +"ORIGINAL_PROJECT_FILE_PATH" = "" +"NUMBER_OF_NESTED_PROJECTS" = "0" +"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" +} diff -Nru stellarium-0.12.1/data/Info.plist stellarium-0.12.4/data/Info.plist --- stellarium-0.12.1/data/Info.plist 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/data/Info.plist 2013-08-04 06:20:27.000000000 +0000 @@ -17,7 +17,7 @@ CFBundleSignature ???? CFBundleVersion - 0.12.1 + 0.12.2 LSMinimumSystemVersion 10.6.0 NSPrincipalClass Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/data/base_locations.bin.gz and /tmp/qEvCSzZF1M/stellarium-0.12.4/data/base_locations.bin.gz differ diff -Nru stellarium-0.12.1/data/base_locations.txt stellarium-0.12.4/data/base_locations.txt --- stellarium-0.12.1/data/base_locations.txt 2013-04-20 15:29:20.000000000 +0000 +++ stellarium-0.12.4/data/base_locations.txt 2013-08-04 06:20:27.000000000 +0000 @@ -13474,7 +13474,7 @@ Tauá Ceará br N 29.4 6.00S 40.31W 407 Timizart Tizi Wazu dz N 29.4 36.80N 4.27E 332 Galapagar Madrid es N 29.4 40.59N 4.01W 865 -Camacan Bahia br N 29.4 15.42S 39.50E 247 +Camacan Bahia br N 29.4 15.42S 39.50W 247 Bologoe Tver ru N 29.4 57.87N 34.05E 182 Naqâdah Qinâ eg N 29.4 25.90N 32.73E 68 Bu Nura Ghardayah dz N 29.4 32.49N 3.72E 544 diff -Nru stellarium-0.12.1/data/default_config.ini stellarium-0.12.4/data/default_config.ini --- stellarium-0.12.1/data/default_config.ini 2013-04-19 02:26:54.000000000 +0000 +++ stellarium-0.12.4/data/default_config.ini 2013-09-07 15:50:48.000000000 +0000 @@ -1,5 +1,5 @@ [main] -version = 0.12.1 +version = 0.12.3 invert_screenshots_colors = false [plugins_load_at_startup] diff -Nru stellarium-0.12.1/data/default_shortcuts.json stellarium-0.12.4/data/default_shortcuts.json --- stellarium-0.12.1/data/default_shortcuts.json 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/data/default_shortcuts.json 2013-09-07 15:50:48.000000000 +0000 @@ -152,15 +152,16 @@ }, "actionShow_Nebulas": { - "text": "Nebulas", - "primaryKey": "N", + "text": "Deep-sky objects", + "primaryKey": "D", + "altKey": "N", "checkable": "1", "autorepeat": "0", "global": "1" }, "actionShow_DSS": { - "text": "Nebulas background images", + "text": "Deep-sky objects background images", "primaryKey": "I", "checkable": "1", "autorepeat": "0", @@ -843,7 +844,17 @@ { "text" : "Pulsars configuration window", "primaryKey" : "", - "checkable" : "1" + "checkable" : "1", + "autorepeat" : "0", + "global" : "0" + }, + "actionShow_Pulsars": + { + "text" : "Show pulsars", + "primaryKey" : "Ctrl+Alt+P", + "checkable" : "1", + "autorepeat" : "0", + "global" : "0" } } }, @@ -860,6 +871,19 @@ } } }, + "PluginNovae" : + { + "pluginId" : "Novae", + "actions" : + { + "actionShow_Novae_ConfigDialog": + { + "text" : "Bright Novae configuration window", + "primaryKey" : "", + "checkable": "1" + } + } + }, "PluginQuasars" : { "pluginId" : "Quasars", @@ -869,7 +893,17 @@ { "text" : "Quasars configuration window", "primaryKey" : "", - "checkable" : "1" + "checkable" : "1", + "autorepeat" : "0", + "global" : "0" + }, + "actionShow_Quasars": + { + "text" : "Show quasars", + "primaryKey" : "Ctrl+Alt+Q", + "checkable" : "1", + "autorepeat" : "0", + "global" : "0" } } }, @@ -922,6 +956,30 @@ "primaryKey": "Ctrl+B", "checkable": true }, + "actionShow_Telescope_Increment": + { + "text": "Select next telescope", + "primaryKey": "Shift+PgUp", + "checkable": true + }, + "actionShow_Telescope_Decrement": + { + "text": "Select previous telescope", + "primaryKey": "Shift+PgDown", + "checkable": true + }, + "actionShow_Ocular_Increment": + { + "text": "Select next eyepiece", + "primaryKey": "Ctrl+PgUp", + "checkable": true + }, + "actionShow_Ocular_Decrement": + { + "text": "Select previous eyepiece", + "primaryKey": "Ctrl+PgDown", + "checkable": true + }, "actionOpen_Oculars_Configuration": { "text": "Oculars plugin configuration", Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/data/gui/checkbox-partial.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/data/gui/checkbox-partial.png differ diff -Nru stellarium-0.12.1/data/gui/guiRes.qrc stellarium-0.12.4/data/gui/guiRes.qrc --- stellarium-0.12.1/data/gui/guiRes.qrc 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/data/gui/guiRes.qrc 2013-08-04 06:20:27.000000000 +0000 @@ -135,5 +135,7 @@ tabicon-plugins.png nv_filesave.png backspace.png + checkbox-partial.png + nv_checkbox-partial.png diff -Nru stellarium-0.12.1/data/gui/nightStyle.css stellarium-0.12.4/data/gui/nightStyle.css --- stellarium-0.12.1/data/gui/nightStyle.css 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/data/gui/nightStyle.css 2013-08-04 06:20:27.000000000 +0000 @@ -538,6 +538,10 @@ image: url(:/graphicGui/nv_checkbox-checked.png); } +QCheckBox::indicator:indeterminate { + image: url(:/graphicGui/nv_checkbox-partial.png); +} + QCheckBox::indicator:unchecked { image: url(:/graphicGui/nv_checkbox-unchecked.png); } @@ -550,10 +554,21 @@ image: url(:/graphicGui/nv_checkbox-unchecked.png); } +QListWidget::indicator, QListView::indicator { + width: 16px; + height: 16px; + margin: 0px; + background: none; +} + QListWidget::indicator:checked, QListView::indicator:checked { image: url(:/graphicGui/nv_checkbox-checked.png); } +QListWidget::indicator:indeterminate, QListView::indicator:indeterminate { + image: url(:/graphicGui/nv_checkbox-partial.png); +} + QListWidget::indicator:unchecked, QListView::indicator:unchecked { image: url(:/graphicGui/nv_checkbox-unchecked.png); } diff -Nru stellarium-0.12.1/data/gui/normalStyle.css stellarium-0.12.4/data/gui/normalStyle.css --- stellarium-0.12.1/data/gui/normalStyle.css 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/data/gui/normalStyle.css 2013-08-04 06:20:27.000000000 +0000 @@ -550,6 +550,10 @@ image: url(:/graphicGui/checkbox-checked.png); } +QCheckBox::indicator:indeterminate { + image: url(:/graphicGui/checkbox-partial.png); +} + QCheckBox::indicator:unchecked { image: url(:/graphicGui/checkbox-unchecked.png); } @@ -566,10 +570,21 @@ image: url(:/graphicGui/checkbox-checked.png); } +QListWidget::indicator:indeterminate, QListView::indicator:indeterminate { + image: url(:/graphicGui/checkbox-partial.png); +} + QListWidget::indicator:unchecked, QListView::indicator:unchecked { image: url(:/graphicGui/checkbox-unchecked.png); } +QListWidget::indicator, QListView::indicator { + width: 16px; + height: 16px; + margin: 0px; + background: none; +} + QRadioButton { color: rgb(3, 3, 3); background: none; Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/data/gui/nv_checkbox-partial.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/data/gui/nv_checkbox-partial.png differ diff -Nru stellarium-0.12.1/data/ssystem.ini stellarium-0.12.4/data/ssystem.ini --- stellarium-0.12.1/data/ssystem.ini 2013-04-08 16:56:48.000000000 +0000 +++ stellarium-0.12.4/data/ssystem.ini 2013-09-07 15:50:48.000000000 +0000 @@ -1,1659 +1,1684 @@ [sun] -name = Sun -parent = none -radius = 696000. -halo = false -color = 1.0,0.98,0.97 -tex_map = sun.png -tex_halo = NULL -coord_func = sun_special -lighting = false -albedo = -1. -rot_periode = 654.61 -rot_obliquity = 7.25 -rot_equator_ascending_node = 196.13 -type = star +name=Sun +parent=none +radius=696000. +halo=false +color=1.0, 0.98, 0.97 +tex_map=sun.png +tex_halo=NULL +coord_func=sun_special +lighting=false +albedo=-1. +rot_periode=654.61 +rot_obliquity=7.25 +rot_equator_ascending_node=196.13 +type=star [mercury] -name = Mercury -parent = Sun -radius = 2439.7 -halo = true -color = 1.0,0.98,0.96 -tex_map = mercury.png -tex_halo = star16x16.png -coord_func = mercury_special -lighting = true -albedo = 0.06 -rot_periode = 1407.509405 -rot_rotation_offset = 291.20 -rot_pole_ra = 281.001 -rot_pole_de = 61.45 -#rot_obliquity = 7.01 -#rot_equator_ascending_node = 48.42 -orbit_visualization_period = 87.97 -type = planet +name=Mercury +parent=Sun +radius=2439.7 +halo=true +color=1.0, 0.98, 0.96 +tex_map=mercury.png +tex_halo=star16x16.png +coord_func=mercury_special +lighting=true +albedo=0.06 +rot_periode=1407.509405 +rot_rotation_offset=291.20 +rot_pole_ra=281.001 +rot_pole_de=61.45 +%23rot_obliquity=7.01 +%23rot_equator_ascending_node=48.42 +orbit_visualization_period=87.97 +type=planet [venus] -name = Venus -parent = Sun -radius = 6051.8 -halo = true -color = 1.0,1.0,0.9 -tex_map = venus.png -tex_halo = star16x16.png -coord_func = venus_special -lighting = true -albedo = 0.77 -rot_periode = -5832.479839 -rot_rotation_offset = 137.45 -rot_pole_ra = 272.76 -rot_pole_de = 67.16 -#rot_obliquity = 178.78 -#rot_equator_ascending_node = 300.22 -orbit_visualization_period = 224.70 -atmosphere = 1 -type = planet +name=Venus +parent=Sun +radius=6051.8 +halo=true +color=1.0, 1.0, 0.9 +tex_map=venus.png +tex_halo=star16x16.png +coord_func=venus_special +lighting=true +albedo=0.77 +rot_periode=-5832.479839 +rot_rotation_offset=137.45 +rot_pole_ra=272.76 +rot_pole_de=67.16 +%23rot_obliquity=178.78 +%23rot_equator_ascending_node=300.22 +orbit_visualization_period=224.70 +atmosphere=1 +type=planet [earth] -name = Earth -parent = Sun -radius = 6378.14 -oblateness = 0.00335364 -halo = true -color = 0.7,0.8,1.0 -tex_map = earth_cmap.png -tex_halo = star16x16.png -coord_func = earth_special -lighting = true -albedo = 0.3 -rot_periode = 23.9344694 -rot_rotation_offset = 280.5 -#rot_obliquity = -23.438855 -rot_obliquity = -23.4392803055555555556 -rot_epoch = 2451545.0 -rot_precession_rate = 1.39639 #degrees/j.century (annual rate 50.27 arcseconds) -orbit_visualization_period = 365.256363004 -atmosphere = 1 -landscape = guereins -type = planet +name=Earth +parent=Sun +radius=6378.14 +oblateness=0.00335364 +halo=true +color=0.7, 0.8, 1.0 +tex_map=earth_cmap.png +tex_halo=star16x16.png +coord_func=earth_special +lighting=true +albedo=0.3 +rot_periode=23.9344694 +rot_rotation_offset=280.5 +%23rot_obliquity=-23.438855 +rot_obliquity=-23.4392803055555555556 +rot_epoch=2451545.0 +rot_precession_rate=1.39639 #degrees/j.century (annual rate 50.27 arcseconds) +orbit_visualization_period=365.256363004 +atmosphere=1 +landscape=guereins +type=planet [moon] -name = Moon -parent = Earth -radius = 1737.4 -halo = false -color = 1.0,0.98,0.96 -tex_map = moon.png -tex_halo = NULL -coord_func = lunar_special -lighting = true -albedo = 0.12 -rot_periode = 655.7198811 -rot_rotation_offset = 38 -rot_obliquity = 23.45 -rot_equator_ascending_node = 0 -landscape = moon -orbit_visualization_period = 27.321582 -type = moon +name=Moon +parent=Earth +radius=1737.4 +halo=false +color=1.0, 0.98, 0.96 +tex_map=moon.png +tex_halo=NULL +coord_func=lunar_special +lighting=true +albedo=0.12 +rot_periode=655.7198811 +rot_rotation_offset=38 +rot_obliquity=23.45 +rot_equator_ascending_node=0 +landscape=moon +orbit_visualization_period=27.321582 +type=moon [mars] -name = Mars -parent = Sun -radius = 3397 -oblateness = 0.0064763 -halo = true -color = 1.0,0.84,0.68 -tex_map = mars.png -tex_halo = star16x16.png -coord_func = mars_special -lighting = true -albedo = 0.150 -rot_periode = 24.622962 -rot_rotation_offset = 136.005 -#rot_obliquity = 26.72 -#rot_equator_ascending_node = 82.91 -rot_pole_ra = 317.6725 -rot_pole_de = 52.88212 -orbit_visualization_period = 686.971 -atmosphere = 1 -landscape = mars -type = planet +name=Mars +parent=Sun +radius=3397 +oblateness=0.0064763 +halo=true +color=1.0, 0.84, 0.68 +tex_map=mars.png +tex_halo=star16x16.png +coord_func=mars_special +lighting=true +albedo=0.150 +rot_periode=24.622962 +rot_rotation_offset=136.005 +%23rot_obliquity=26.72 +%23rot_equator_ascending_node=82.91 +rot_pole_ra=317.6725 +rot_pole_de=52.88212 +orbit_visualization_period=686.971 +atmosphere=1 +landscape=mars +type=planet [phobos] -name = Phobos -parent = Mars -radius = 11.1 -halo = true -color = 1.,1.,1. -tex_map = phobos.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 7.653843687 -rot_rotation_offset = 318.9 -rot_obliquity = 0.6 -#rot_equator_ascending_node = 186.6 -coord_func = phobos_special -type = moon +name=Phobos +parent=Mars +radius=11.1 +halo=true +color=1., 1., 1. +tex_map=phobos.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=7.653843687 +rot_rotation_offset=318.9 +rot_obliquity=0.6 +%23rot_equator_ascending_node=186.6 +coord_func=phobos_special +type=moon +orbit_visualization_period=0.319 [deimos] -name = Deimos -parent = Mars -radius = 6.2 -halo = true -color = 1.,1.,1. -tex_map = deimos.png -tex_halo = star16x16.png -lighting = true -albedo = 0.21 -rot_periode = 30.29857807 -rot_rotation_offset = 318.9 -rot_obliquity = 0.6 -#rot_equator_ascending_node = 186.6 -coord_func = deimos_special -type = moon +name=Deimos +parent=Mars +radius=6.2 +halo=true +color=1., 1., 1. +tex_map=deimos.png +tex_halo=star16x16.png +lighting=true +albedo=0.21 +rot_periode=30.29857807 +rot_rotation_offset=318.9 +rot_obliquity=0.6 +%23rot_equator_ascending_node=186.6 +coord_func=deimos_special +type=moon +orbit_visualization_period=1.263 [jupiter] -name = Jupiter -parent = Sun -radius = 71492 -oblateness = 0.064874 -halo = true -color = 1.0,0.97,0.89 -tex_map = jupiter.png #texture courtesy of Björn Jónsson -tex_halo = star16x16.png -coord_func = jupiter_special -lighting = true -albedo = 0.51 -rot_periode = 9.92491 -rot_rotation_offset = 310 -#rot_obliquity = 2.222461 -#rot_equator_ascending_node = -22.203 -rot_pole_ra = 268.05 -rot_pole_de = 64.49 -orbit_visualization_period = 4331.87 -atmosphere = 1 -type = planet +name=Jupiter +parent=Sun +radius=71492 +oblateness=0.064874 +halo=true +color=1.0, 0.97, 0.89 +tex_map=jupiter.png #texture courtesy of Bj\xf6rn J\xf3nsson +tex_halo=star16x16.png +coord_func=jupiter_special +lighting=true +albedo=0.51 +rot_periode=9.92491 +rot_rotation_offset=310 +%23rot_obliquity=2.222461 +%23rot_equator_ascending_node=-22.203 +rot_pole_ra=268.05 +rot_pole_de=64.49 +orbit_visualization_period=4331.87 +atmosphere=1 +type=planet [io] -name = Io -parent = Jupiter -radius = 1821.3 -halo = true -color = 1.,.8,.7 -tex_map = io.png -tex_halo = star16x16.png -lighting = true -albedo = 0.61 -rot_periode = 42.45930719 -rot_rotation_offset = 220.8 -rot_obliquity = 0.0 -coord_func = io_special -atmosphere = 1 -orbit_visualization_period = 1.769 -type = moon +name=Io +parent=Jupiter +radius=1821.3 +halo=true +color=1., .8, .7 +tex_map=io.png +tex_halo=star16x16.png +lighting=true +albedo=0.61 +rot_periode=42.45930719 +rot_rotation_offset=220.8 +rot_obliquity=0.0 +coord_func=io_special +atmosphere=1 +orbit_visualization_period=1.769 +type=moon [europa] -name = Europa -parent = Jupiter -radius = 1565. -halo = true -color = 1.,1.,1. -tex_map = europa.png -tex_halo = star16x16.png -lighting = true -albedo = 0.64 -rot_obliquity = 0.0 -rot_periode = 85.22834590 -rot_rotation_offset = 56.2 -coord_func = europa_special -orbit_visualization_period = 3.551 -atmosphere = 1 -type = moon +name=Europa +parent=Jupiter +radius=1565. +halo=true +color=1., 1., 1. +tex_map=europa.png +tex_halo=star16x16.png +lighting=true +albedo=0.64 +rot_obliquity=0.0 +rot_periode=85.22834590 +rot_rotation_offset=56.2 +coord_func=europa_special +orbit_visualization_period=3.551 +atmosphere=1 +type=moon [ganymede] -name = Ganymede -parent = Jupiter -radius = 2634. -halo = true -color = 1.,1.,1. -tex_map = ganymede.png -tex_halo = star16x16.png -lighting = true -albedo = 0.42 -rot_periode = 171.7092749 -rot_rotation_offset = 262.1 -rot_obliquity = 0.1 -#rot_equator_ascending_node = 161.6 -coord_func = ganymede_special -orbit_visualization_period = 7.155 -atmosphere = 1 -type = moon +name=Ganymede +parent=Jupiter +radius=2634. +halo=true +color=1., 1., 1. +tex_map=ganymede.png +tex_halo=star16x16.png +lighting=true +albedo=0.42 +rot_periode=171.7092749 +rot_rotation_offset=262.1 +rot_obliquity=0.1 +%23rot_equator_ascending_node=161.6 +coord_func=ganymede_special +orbit_visualization_period=7.155 +atmosphere=1 +type=moon [callisto] -name = Callisto -parent = Jupiter -radius = 2403. -halo = true -color = 1.,1.,1. -tex_map = callisto.png -tex_halo = star16x16.png -lighting = true -albedo = 0.20 -rot_periode = 400.5364314 -rot_rotation_offset = 120.1 -rot_obliquity = 0.4 -#rot_equator_ascending_node = 160.6 -coord_func = calisto_special -orbit_visualization_period = 16.689 -atmosphere = 1 -type = moon +name=Callisto +parent=Jupiter +radius=2403. +halo=true +color=1., 1., 1. +tex_map=callisto.png +tex_halo=star16x16.png +lighting=true +albedo=0.20 +rot_periode=400.5364314 +rot_rotation_offset=120.1 +rot_obliquity=0.4 +%23rot_equator_ascending_node=160.6 +coord_func=calisto_special +orbit_visualization_period=16.689 +atmosphere=1 +type=moon [amalthea] -name = Amalthea -parent = Jupiter -radius = 73 -halo = true -color = 1.,0.9,0.75 -tex_map = amalthea.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 0.5016370462116355 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 0.5016370462116355 -orbit_visualization_period = 0.5016370462116355 -orbit_SemiMajorAxis = 181994.8658358799 -orbit_Eccentricity = 0.006175744402949701 -orbit_Inclination = 0.3864576103404582 -orbit_AscendingNode = 141.5521520794674 -orbit_LongOfPericenter = 245.4222355150120000 -orbit_MeanLongitude = 224.7924893552550000 -type = moon +name=Amalthea +parent=Jupiter +radius=73 +halo=true +color=1., 0.9, 0.75 +tex_map=amalthea.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=0.5016370462116355 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=0.5016370462116355 +orbit_visualization_period=0.5016370462116355 +orbit_SemiMajorAxis=181994.8658358799 +orbit_Eccentricity=0.006175744402949701 +orbit_Inclination=0.3864576103404582 +orbit_AscendingNode=141.5521520794674 +orbit_LongOfPericenter=245.4222355150120000 +orbit_MeanLongitude=224.7924893552550000 +type=moon [himalia] -name = Himalia -parent = Jupiter -radius = 85 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.03 -rot_periode = 0.4 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 248.3161934941932 -orbit_visualization_period = 248.3161934941932 -orbit_SemiMajorAxis = 11388576.13393731 -orbit_Eccentricity = 0.1341186732710830 -orbit_Inclination = 29.52734924407240 -orbit_AscendingNode = 62.74369092219344 -orbit_LongOfPericenter = 48.3391873600156000 -orbit_MeanLongitude = 202.0757439998000000 -type = moon +name=Himalia +parent=Jupiter +radius=85 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.03 +rot_periode=0.4 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=248.3161934941932 +orbit_visualization_period=248.3161934941932 +orbit_SemiMajorAxis=11388576.13393731 +orbit_Eccentricity=0.1341186732710830 +orbit_Inclination=29.52734924407240 +orbit_AscendingNode=62.74369092219344 +orbit_LongOfPericenter=48.3391873600156000 +orbit_MeanLongitude=202.0757439998000000 +type=moon [elara] -name = Elara -parent = Jupiter -radius = 40 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.03 -rot_periode = 0.5 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 258.8836449322499 -orbit_visualization_period = 258.8836449322499 -orbit_SemiMajorAxis = 11709431.51919092 -orbit_Eccentricity = 0.1961747274882456 -orbit_Inclination = 31.98511468770062 -orbit_Ascendingnode = 108.1879658680286 -orbit_LongOfPericenter = 271.5797601368340000 -orbit_MeanLongitude = 172.2385623581720000 -type = moon +name=Elara +parent=Jupiter +radius=40 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.03 +rot_periode=0.5 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=258.8836449322499 +orbit_visualization_period=258.8836449322499 +orbit_SemiMajorAxis=11709431.51919092 +orbit_Eccentricity=0.1961747274882456 +orbit_Inclination=31.98511468770062 +orbit_Ascendingnode=108.1879658680286 +orbit_LongOfPericenter=271.5797601368340000 +orbit_MeanLongitude=172.2385623581720000 +type=moon [pasiphae] -name = Pasiphae -parent = Jupiter -radius = 40 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.03 -rot_periode = 709.0532625178348 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 709.0532625178348 -orbit_visualization_period = 709.0532625178348 -orbit_SemiMajorAxis = 22921971.82698924 -orbit_Eccentricity = 0.2932152942598935 -orbit_Inclination = 142.0571683364765 -orbit_AscendingNode = 345.6392561172470 -orbit_LongOfPericenter = 185.9358722739560000 -orbit_MeanLongitude = 155.7385593991940000 -type = moon +name=Pasiphae +parent=Jupiter +radius=40 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.03 +rot_periode=709.0532625178348 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=709.0532625178348 +orbit_visualization_period=709.0532625178348 +orbit_SemiMajorAxis=22921971.82698924 +orbit_Eccentricity=0.2932152942598935 +orbit_Inclination=142.0571683364765 +orbit_AscendingNode=345.6392561172470 +orbit_LongOfPericenter=185.9358722739560000 +orbit_MeanLongitude=155.7385593991940000 +type=moon [sinope] -name = Sinope -parent = Jupiter -radius = 40 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.03 -rot_periode = 778.6442493765837 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 778.6442493765837 -orbit_visualization_period = 778.6442493765837 -orbit_SemiMajorAxis = 24398256.25007371 -orbit_Eccentricity = 0.1823445283881716 -orbit_Inclination = 153.0924984377859 -orbit_AscendingNode = 337.3608948461959 -orbit_LongOfPericenter = 334.0923761708530000 -orbit_MeanLongitude = 187.6932736301600000 -type = moon +name=Sinope +parent=Jupiter +radius=40 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.03 +rot_periode=778.6442493765837 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=778.6442493765837 +orbit_visualization_period=778.6442493765837 +orbit_SemiMajorAxis=24398256.25007371 +orbit_Eccentricity=0.1823445283881716 +orbit_Inclination=153.0924984377859 +orbit_AscendingNode=337.3608948461959 +orbit_LongOfPericenter=334.0923761708530000 +orbit_MeanLongitude=187.6932736301600000 +type=moon [lysithea] -name = Lysithea -parent = Jupiter -radius = 12 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.03 -rot_periode = 259.0469768771512 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 259.0469768771512 -orbit_visualization_period = 259.0469768771512 -orbit_SemiMajorAxis = 11714356.05630203 -orbit_Eccentricity = 0.1281232102397132 -orbit_Inclination = 24.59040357245339 -orbit_AscendingNode = 0.2875682490706584 -orbit_LongOfPericenter = 78.9389828310578000 -orbit_MeanLongitude = 337.5492383800380000 -type = moon +name=Lysithea +parent=Jupiter +radius=12 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.03 +rot_periode=259.0469768771512 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=259.0469768771512 +orbit_visualization_period=259.0469768771512 +orbit_SemiMajorAxis=11714356.05630203 +orbit_Eccentricity=0.1281232102397132 +orbit_Inclination=24.59040357245339 +orbit_AscendingNode=0.2875682490706584 +orbit_LongOfPericenter=78.9389828310578000 +orbit_MeanLongitude=337.5492383800380000 +type=moon [carme] -name = Carme -parent = Jupiter -radius = 15 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.03 -rot_periode = 691.6548924754876 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 691.6548924754876 -orbit_visualization_period = 691.6548924754876 -orbit_SemiMajorAxis = 22545456.68297467 -orbit_Eccentricity = 0.2602970868062183 -orbit_Inclination = 168.2000198365060 -orbit_AscendingNode = 157.3089190745055 -orbit_LongOfPericenter = 249.8596440195790000 -orbit_MeanLongitude = 168.7753954572220000 -type = moon +name=Carme +parent=Jupiter +radius=15 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.03 +rot_periode=691.6548924754876 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=691.6548924754876 +orbit_visualization_period=691.6548924754876 +orbit_SemiMajorAxis=22545456.68297467 +orbit_Eccentricity=0.2602970868062183 +orbit_Inclination=168.2000198365060 +orbit_AscendingNode=157.3089190745055 +orbit_LongOfPericenter=249.8596440195790000 +orbit_MeanLongitude=168.7753954572220000 +type=moon [ananke] -name = Ananke -parent = Jupiter -radius = 15 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.03 -rot_periode = 648.6406641467003 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 648.6406641467003 -orbit_visualization_period = 648.6406641467003 -orbit_SemiMajorAxis = 21600750.92227203 -orbit_Eccentricity = 0.2167681894364261 -orbit_Inclination = 148.5711484137670 -orbit_AscendingNode = 44.39093600694746 -orbit_LongOfPericenter = 140.3109688567360000 -orbit_MeanLongitude = 14.7478795145449000 -type = moon +name=Ananke +parent=Jupiter +radius=15 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.03 +rot_periode=648.6406641467003 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=648.6406641467003 +orbit_visualization_period=648.6406641467003 +orbit_SemiMajorAxis=21600750.92227203 +orbit_Eccentricity=0.2167681894364261 +orbit_Inclination=148.5711484137670 +orbit_AscendingNode=44.39093600694746 +orbit_LongOfPericenter=140.3109688567360000 +orbit_MeanLongitude=14.7478795145449000 +type=moon [leda] -name = Leda -parent = Jupiter -radius = 5 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.03 -rot_periode = 242.2566769525344 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 242.2566769525344 -orbit_visualization_period = 242.2566769525344 -orbit_SemiMajorAxis = 11202541.76637748 -orbit_Eccentricity = 0.1849972068029340 -orbit_Inclination = 28.26096889279179 -orbit_AscendingNode = 205.5729208452909 -orbit_LongOfPericenter = 133.1912542293990000 -orbit_MeanLongitude = 276.4502233853120000 -type = moon +name=Leda +parent=Jupiter +radius=5 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.03 +rot_periode=242.2566769525344 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=242.2566769525344 +orbit_visualization_period=242.2566769525344 +orbit_SemiMajorAxis=11202541.76637748 +orbit_Eccentricity=0.1849972068029340 +orbit_Inclination=28.26096889279179 +orbit_AscendingNode=205.5729208452909 +orbit_LongOfPericenter=133.1912542293990000 +orbit_MeanLongitude=276.4502233853120000 +type=moon [thebe] -name = Thebe -parent = Jupiter -radius = 5 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.07 -rot_periode = 0.6777043648601361 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 0.6777043648601361 -orbit_visualization_period = 0.6777043648601361 -orbit_SemiMajorAxis = 222412.7038632125 -orbit_Eccentricity = 0.01927638586266499 -orbit_Inclination = 1.088672216784552 -orbit_AscendingNode = 138.9957928276344 -orbit_LongOfPericenter = 210.7720658394820000 -orbit_MeanLongitude = 170.4877537965110000 -type = moon +name=Thebe +parent=Jupiter +radius=5 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.07 +rot_periode=0.6777043648601361 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=0.6777043648601361 +orbit_visualization_period=0.6777043648601361 +orbit_SemiMajorAxis=222412.7038632125 +orbit_Eccentricity=0.01927638586266499 +orbit_Inclination=1.088672216784552 +orbit_AscendingNode=138.9957928276344 +orbit_LongOfPericenter=210.7720658394820000 +orbit_MeanLongitude=170.4877537965110000 +type=moon [adrastea] -name = Adrastea -parent = Jupiter -radius = 10 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.07 -rot_periode = 0.3023760117035458 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 0.3023760117035458 -orbit_visualization_period = 0.3023760117035458 -orbit_SemiMajorAxis = 129866.6459712491 -orbit_Eccentricity = 0.006543120249224196 -orbit_Inclination = 0.06166936906340893 -orbit_AscendingNode = 253.6924110934923 -orbit_LongOfPericenter = 249.4662007624690000 -orbit_MeanLongitude = 252.4809048448870000 -type = moon +name=Adrastea +parent=Jupiter +radius=10 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.07 +rot_periode=0.3023760117035458 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=0.3023760117035458 +orbit_visualization_period=0.3023760117035458 +orbit_SemiMajorAxis=129866.6459712491 +orbit_Eccentricity=0.006543120249224196 +orbit_Inclination=0.06166936906340893 +orbit_AscendingNode=253.6924110934923 +orbit_LongOfPericenter=249.4662007624690000 +orbit_MeanLongitude=252.4809048448870000 +type=moon [metis] -name = Metis -parent = Jupiter -radius = 20 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.07 -rot_periode = 0.2992264694514691 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 0.2992264694514691 -orbit_visualization_period = 0.2992264694514691 -orbit_SemiMajorAxis = 128963.2809817095 -orbit_Eccentricity = 0.007934699878209682 -orbit_Inclination = 0.06061013894618508 -orbit_AscendingNode = 99.25512108544794 -orbit_LongOfPericenter = 114.5010069923130000 -orbit_MeanLongitude = 113.3620494967750000 -type = moon +name=Metis +parent=Jupiter +radius=20 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.07 +rot_periode=0.2992264694514691 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=0.2992264694514691 +orbit_visualization_period=0.2992264694514691 +orbit_SemiMajorAxis=128963.2809817095 +orbit_Eccentricity=0.007934699878209682 +orbit_Inclination=0.06061013894618508 +orbit_AscendingNode=99.25512108544794 +orbit_LongOfPericenter=114.5010069923130000 +orbit_MeanLongitude=113.3620494967750000 +type=moon [saturn] -name = Saturn -parent = Sun -radius = 60268 -oblateness = 0.097962 -halo = true -color = 1.0,0.96,0.89 -tex_map = saturn.png #texture courtesy of Björn Jónsson -tex_halo = star16x16.png -coord_func = saturn_special -lighting = true -rings = true -ring_outer_size = 140390 -ring_inner_size = 74510 -tex_ring = saturn_rings_radial.png #texture courtesy of Björn Jónsson -albedo = 0.50 -rot_periode = 10.65622 -rot_rotation_offset = 358.922 -rot_pole_ra = 40.5908 -rot_pole_de = 83.537 -#rot_obliquity = 28.049 -#rot_equator_ascending_node = 169.5291 -lighting = true -orbit_visualization_period = 10760 -atmosphere = 1 -landscape = saturn -type = planet +name=Saturn +parent=Sun +radius=60268 +oblateness=0.097962 +halo=true +color=1.0, 0.96, 0.89 +tex_map=saturn.png #texture courtesy of Bj\xf6rn J\xf3nsson +tex_halo=star16x16.png +coord_func=saturn_special +lighting=true +rings=true +ring_outer_size=140390 +ring_inner_size=74510 +tex_ring=saturn_rings_radial.png #texture courtesy of Bj\xf6rn J\xf3nsson +albedo=0.50 +rot_periode=10.65622 +rot_rotation_offset=358.922 +rot_pole_ra=40.5908 +rot_pole_de=83.537 +%23rot_obliquity=28.049 +%23rot_equator_ascending_node=169.5291 +orbit_visualization_period=10760 +atmosphere=1 +landscape=saturn +type=planet [mimas] -name = Mimas -parent = Saturn -radius = 198.6 -halo = true -color = 0.75,0.63,0.58 -tex_map = mimas.png -tex_halo = star16x16.png -lighting = true -albedo = 0.5 -rot_periode = 22.61812344 -rot_rotation_offset = 190.7 -rot_obliquity = 1.5 -#rot_equator_ascending_node = 137.8 -coord_func = mimas_special -type = moon +name=Mimas +parent=Saturn +radius=198.6 +halo=true +color=0.75, 0.63, 0.58 +tex_map=mimas.png +tex_halo=star16x16.png +lighting=true +albedo=0.5 +rot_periode=22.61812344 +rot_rotation_offset=190.7 +rot_obliquity=1.5 +%23rot_equator_ascending_node=137.8 +coord_func=mimas_special +type=moon +orbit_visualization_period=0.9424218 [enceladus] -name = Enceladus -parent = Saturn -radius = 249.4 -halo = true -color = 1.,0.9,0.75 -tex_map = enceladus.png -tex_halo = star16x16.png -lighting = true -albedo = 0.99 -rot_periode = 32.88523401 -rot_rotation_offset = 322.9 -rot_obliquity = 0.0 -coord_func = enceladus_special -type = moon +name=Enceladus +parent=Saturn +radius=249.4 +halo=true +color=1., 0.9, 0.75 +tex_map=enceladus.png +tex_halo=star16x16.png +lighting=true +albedo=0.99 +rot_periode=32.88523401 +rot_rotation_offset=322.9 +rot_obliquity=0.0 +coord_func=enceladus_special +type=moon +orbit_visualization_period=1.370218 [tethys] -name = Tethys -parent = Saturn -radius = 529.8 -halo = true -color = 1.,0.9,0.75 -tex_map = tethys.png -tex_halo = star16x16.png -lighting = true -albedo = 0.9 -rot_periode = 45.30726146 -rot_rotation_offset = 330.6 -rot_obliquity = 0.0 -coord_func = tethys_special -type = moon +name=Tethys +parent=Saturn +radius=529.8 +halo=true +color=1., 0.9, 0.75 +tex_map=tethys.png +tex_halo=star16x16.png +lighting=true +albedo=0.9 +rot_periode=45.30726146 +rot_rotation_offset=330.6 +rot_obliquity=0.0 +coord_func=tethys_special +type=moon +orbit_visualization_period=1.888 [dione] -name = Dione -parent = Saturn -radius = 560. -halo = true -color = 1.0,1.0,1.0 -tex_map = dione.png -tex_halo = star16x16.png -lighting = true -albedo = 0.7 -rot_periode = 65.68597326 -rot_rotation_offset = 317.1 -rot_obliquity = 0.0 -coord_func = dione_special -type = moon +name=Dione +parent=Saturn +radius=560. +halo=true +color=1.0, 1.0, 1.0 +tex_map=dione.png +tex_halo=star16x16.png +lighting=true +albedo=0.7 +rot_periode=65.68597326 +rot_rotation_offset=317.1 +rot_obliquity=0.0 +coord_func=dione_special +type=moon +orbit_visualization_period=2.736915 [rhea] -name = Rhea -parent = Saturn -radius = 764. -halo = true -color = 1.,0.9,0.75 -tex_map = rhea.png -tex_halo = star16x16.png -lighting = true -albedo = 0.7 -rot_periode = 108.4200630 -rot_rotation_offset = 195.0 -rot_obliquity = 0.0 -coord_func = rhea_special -type = moon +name=Rhea +parent=Saturn +radius=764. +halo=true +color=1., 0.9, 0.75 +tex_map=rhea.png +tex_halo=star16x16.png +lighting=true +albedo=0.7 +rot_periode=108.4200630 +rot_rotation_offset=195.0 +rot_obliquity=0.0 +coord_func=rhea_special +type=moon +orbit_visualization_period=4.518 [titan] -name = Titan -parent = Saturn -radius = 2575. -halo = true -color = 1.0,0.8,0.5 -tex_map = titan.png -tex_halo = star16x16.png -lighting = true -albedo = 0.21 -rot_periode = 382.6907418 -rot_rotation_offset = 318.9 -rot_obliquity = 0.6 -#rot_equator_ascending_node = 186.6 -coord_func = titan_special -atmosphere = 1 -type = moon +name=Titan +parent=Saturn +radius=2575. +halo=true +color=1.0, 0.8, 0.5 +tex_map=titan.png +tex_halo=star16x16.png +lighting=true +albedo=0.21 +rot_periode=382.6907418 +rot_rotation_offset=318.9 +rot_obliquity=0.6 +%23rot_equator_ascending_node=186.6 +coord_func=titan_special +atmosphere=1 +type=moon +orbit_visualization_period=15.945421 [hyperion] -name = Hyperion -parent = Saturn -radius = 141.5 -halo = true -color = 1.,0.9,0.75 -tex_map = hyperion.png -tex_halo = star16x16.png -lighting = true -albedo = 0.3 -#rot_periode = ??? -rot_rotation_offset = 318.9 -rot_obliquity = 61. -#rot_equator_ascending_node = 145 -#RotationPeriod = 120 -#PrecessionRate = 51.43 -coord_func = hyperion_special -type = moon +name=Hyperion +parent=Saturn +radius=141.5 +halo=true +color=1., 0.9, 0.75 +tex_map=hyperion.png +tex_halo=star16x16.png +lighting=true +albedo=0.3 +%23rot_periode=??? +rot_rotation_offset=318.9 +rot_obliquity=61. +%23rot_equator_ascending_node=145 +%23RotationPeriod=120 +%23PrecessionRate=51.43 +coord_func=hyperion_special +type=moon +orbit_visualization_period=21.276609 [iapetus] -name = Iapetus -parent = Saturn -radius = 718. -halo = true -color = 1.,0.9,0.75 -tex_map = iapetus.png -tex_halo = star16x16.png -lighting = true -albedo = 0.2 -rot_periode = 1903.940390 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -#rot_equator_ascending_node = 213.7 -coord_func = iapetus_special -type = moon +name=Iapetus +parent=Saturn +radius=718. +halo=true +color=1., 0.9, 0.75 +tex_map=iapetus.png +tex_halo=star16x16.png +lighting=true +albedo=0.2 +rot_periode=1903.940390 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +%23rot_equator_ascending_node=213.7 +coord_func=iapetus_special +type=moon +orbit_visualization_period=79.33 [uranus] -name = Uranus -parent = Sun -radius = 25559 -oblateness = 0.022927 -halo = true -color = 0.75,0.9,1.0 -tex_map = uranus.png -tex_halo = star16x16.png -coord_func = uranus_special -lighting = true -albedo = 0.66 -rings = true -ring_outer_size = 97700 -ring_inner_size = 26840 -tex_ring = uranus_rings.png #texture from Celestia -rot_periode = -17.24 -rot_rotation_offset = 331.18 -# values from gust86: -#rot_obliquity = 97.802249927257015 -#rot_equator_ascending_node = 167.648649851261355 -rot_pole_ra = 257.43 -rot_pole_de = -15.10 -orbit_visualization_period = 30685 -atmosphere = 1 -type = planet +name=Uranus +parent=Sun +radius=25559 +oblateness=0.022927 +halo=true +color=0.75, 0.9, 1.0 +tex_map=uranus.png +tex_halo=star16x16.png +coord_func=uranus_special +lighting=true +albedo=0.66 +rings=true +ring_outer_size=97700 +ring_inner_size=26840 +tex_ring=uranus_rings.png #texture from Celestia +rot_periode=-17.24 +rot_rotation_offset=331.18 +%23rot_obliquity=97.802249927257015 +%23rot_equator_ascending_node=167.648649851261355 +rot_pole_ra=257.43 +rot_pole_de=-15.10 +orbit_visualization_period=30685 +atmosphere=1 +type=planet [miranda] -name = Miranda -parent = Uranus -radius = 235.8 -halo = true -color = 1.,0.9,0.75 -tex_map = miranda.png -tex_halo = star16x16.png -lighting = true -albedo = 0.32 -rot_periode = 33.92350158 -rot_rotation_offset = 195.0 -rot_obliquity = 0.0 -coord_func = miranda_special -type = moon +name=Miranda +parent=Uranus +radius=235.8 +halo=true +color=1., 0.9, 0.75 +tex_map=miranda.png +tex_halo=star16x16.png +lighting=true +albedo=0.32 +rot_periode=33.92350158 +rot_rotation_offset=195.0 +rot_obliquity=0.0 +coord_func=miranda_special +type=moon +orbit_visualization_period=1.413 [ariel] -name = Ariel -parent = Uranus -radius = 578.9 -halo = true -color = 1.,0.9,0.75 -tex_map = ariel.png -tex_halo = star16x16.png -lighting = true -albedo = 0.39 -rot_periode = 60.4890929200618 -rot_rotation_offset = 195.0 -rot_obliquity = 0.0 -coord_func = ariel_special -type = moon +name=Ariel +parent=Uranus +radius=578.9 +halo=true +color=1., 0.9, 0.75 +tex_map=ariel.png +tex_halo=star16x16.png +lighting=true +albedo=0.39 +rot_periode=60.4890929200618 +rot_rotation_offset=195.0 +rot_obliquity=0.0 +coord_func=ariel_special +type=moon +orbit_visualization_period=2.520 [umbriel] -name = Umbriel -parent = Uranus -radius = 584.7 -halo = true -color = 1.,0.9,0.75 -tex_map = umbriel.png -tex_halo = star16x16.png -lighting = true -albedo = 0.21 -rot_periode = 99.46022991 -rot_rotation_offset = 195.0 -rot_obliquity = 0.0 -coord_func = umbriel_special -type = moon +name=Umbriel +parent=Uranus +radius=584.7 +halo=true +color=1., 0.9, 0.75 +tex_map=umbriel.png +tex_halo=star16x16.png +lighting=true +albedo=0.21 +rot_periode=99.46022991 +rot_rotation_offset=195.0 +rot_obliquity=0.0 +coord_func=umbriel_special +type=moon +orbit_visualization_period=4.144 [titania] -name = Titania -parent = Uranus -radius = 788.9 -halo = true -color = 1.,0.9,0.75 -tex_map = titania.png -tex_halo = star16x16.png -lighting = true -albedo = 0.27 -rot_periode = 208.9407710 -rot_rotation_offset = 195.0 -rot_obliquity = 0.0 -coord_func = titania_special -type = moon +name=Titania +parent=Uranus +radius=788.9 +halo=true +color=1., 0.9, 0.75 +tex_map=titania.png +tex_halo=star16x16.png +lighting=true +albedo=0.27 +rot_periode=208.9407710 +rot_rotation_offset=195.0 +rot_obliquity=0.0 +coord_func=titania_special +type=moon +orbit_visualization_period=8.706 [oberon] -name = Oberon -parent = Uranus -radius = 761.4 -halo = true -color = 1.,0.9,0.75 -tex_map = oberon.png -tex_halo = star16x16.png -lighting = true -albedo = 0.23 -rot_periode = 323.1175675 -rot_rotation_offset = 195.0 -rot_obliquity = 0.0 -coord_func = oberon_special -type = moon +name=Oberon +parent=Uranus +radius=761.4 +halo=true +color=1., 0.9, 0.75 +tex_map=oberon.png +tex_halo=star16x16.png +lighting=true +albedo=0.23 +rot_periode=323.1175675 +rot_rotation_offset=195.0 +rot_obliquity=0.0 +coord_func=oberon_special +type=moon +orbit_visualization_period=13.463 [neptune] -name = Neptune -parent = Sun -radius = 24764 -oblateness = 0.017081 -halo = true -color = 0.65,0.85,1.0 -tex_map = neptune.png -tex_halo = star16x16.png -coord_func = neptune_special -lighting = true -albedo = 0.62 -rings = true -ring_outer_size = 62932 -ring_inner_size = 40900 -tex_ring = neptune_rings.png #texture from Celestia -rot_periode = 16.11 -rot_rotation_offset = 228.65 -rot_pole_ra = 299.347 -rot_pole_de = 42.95 -orbit_visualization_period = 60189 -atmosphere = 1 -type = planet +name=Neptune +parent=Sun +radius=24764 +oblateness=0.017081 +halo=true +color=0.65, 0.85, 1.0 +tex_map=neptune.png +tex_halo=star16x16.png +coord_func=neptune_special +lighting=true +albedo=0.62 +rings=true +ring_outer_size=62932 +ring_inner_size=40900 +tex_ring=neptune_rings.png #texture from Celestia +rot_periode=16.11 +rot_rotation_offset=228.65 +rot_pole_ra=299.347 +rot_pole_de=42.95 +orbit_visualization_period=60189 +atmosphere=1 +type=planet [triton] -name = Triton -parent = Neptune -radius = 1352.6 -halo = true -color = 1.,1.,1. -tex_map = triton.png -tex_halo = star16x16.png -lighting = true -albedo = 0.7 -rot_periode = 5.877035896764472 -rot_rotation_offset = 213.3 -rot_obliquity = 1.0 -rot_equator_ascending_node = 287.6 -coord_func = ell_orbit -orbit_Epoch = 2454619.500 -orbit_Period = 5.877047441783914 -orbit_SemiMajorAxis = 354764.9656070134 -orbit_Eccentricity = 0.00002183768753212363 -orbit_Inclination = 156.8142264816462 -orbit_AscendingNode = 182.2457333272747 -orbit_LongOfPericenter = 287.0335999 -orbit_MeanLongitude = 300.6850407 -orbit_visualization_period = 5.877047441783914 -type = moon +name=Triton +parent=Neptune +radius=1352.6 +halo=true +color=1., 1., 1. +tex_map=triton.png +tex_halo=star16x16.png +lighting=true +albedo=0.7 +rot_periode=5.877035896764472 +rot_rotation_offset=213.3 +rot_obliquity=1.0 +rot_equator_ascending_node=287.6 +coord_func=ell_orbit +orbit_Epoch=2454619.500 +orbit_Period=5.877047441783914 +orbit_SemiMajorAxis=354764.9656070134 +orbit_Eccentricity=0.00002183768753212363 +orbit_Inclination=156.8142264816462 +orbit_AscendingNode=182.2457333272747 +orbit_LongOfPericenter=287.0335999 +orbit_MeanLongitude=300.6850407 +orbit_visualization_period=5.877047441783914 +type=moon [nereid] -name = Nereid -parent = Neptune -radius = 170 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.2 -rot_periode = 360.4819063927587 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 360.4819063927587 -orbit_visualization_period = 360.4819063927587 -orbit_SemiMajorAxis = 5517300.895540984 -orbit_Eccentricity = 0.7473678781920542 -orbit_Inclination = 28.46630994726174 -orbit_AscendingNode = 215.1788464851371 -orbit_LongOfPericenter = 233.0325802 -orbit_MeanLongitude = 282.2538878 -type = moon +name=Nereid +parent=Neptune +radius=170 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.2 +rot_periode=360.4819063927587 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=360.4819063927587 +orbit_visualization_period=360.4819063927587 +orbit_SemiMajorAxis=5517300.895540984 +orbit_Eccentricity=0.7473678781920542 +orbit_Inclination=28.46630994726174 +orbit_AscendingNode=215.1788464851371 +orbit_LongOfPericenter=233.0325802 +orbit_MeanLongitude=282.2538878 +type=moon [naiad] -name = Naiad -parent = Neptune -radius = 170 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 0.2952080157587180 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 0.2952080157587180 -orbit_visualization_period = 0.2952080157587180 -orbit_SemiMajorAxis = 48293.62282849867 -orbit_Eccentricity = 0.001713269683018113 -orbit_Inclination = 4.188510303034086 -orbit_AscendingNode = 171.8967736635123 -orbit_LongOfPericenter = 224.2441011 -orbit_MeanLongitude = 263.8597893 -type = moon +name=Naiad +parent=Neptune +radius=170 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=0.2952080157587180 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=0.2952080157587180 +orbit_visualization_period=0.2952080157587180 +orbit_SemiMajorAxis=48293.62282849867 +orbit_Eccentricity=0.001713269683018113 +orbit_Inclination=4.188510303034086 +orbit_AscendingNode=171.8967736635123 +orbit_LongOfPericenter=224.2441011 +orbit_MeanLongitude=263.8597893 +type=moon [thalassa] -name = Thalassa -parent = Neptune -radius = 40 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 0.3122939125149857 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 0.3122939125149857 -orbit_visualization_period = 0.3122939125149857 -orbit_SemiMajorAxis = 50139.50414033412 -orbit_Eccentricity = 0.001233476673632672 -orbit_Inclination = 0.3939461706648650 -orbit_AscendingNode = 8.252449171590964 -orbit_LongOfPericenter = 88.83462928 -orbit_MeanLongitude = 95.38740788 -type = moon +name=Thalassa +parent=Neptune +radius=40 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=0.3122939125149857 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=0.3122939125149857 +orbit_visualization_period=0.3122939125149857 +orbit_SemiMajorAxis=50139.50414033412 +orbit_Eccentricity=0.001233476673632672 +orbit_Inclination=0.3939461706648650 +orbit_AscendingNode=8.252449171590964 +orbit_LongOfPericenter=88.83462928 +orbit_MeanLongitude=95.38740788 +type=moon [despina] -name = Despina -parent = Neptune -radius = 74 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 0.3354528211477725 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 0.3354528211477725 -orbit_visualization_period = 0.3354528211477725 -orbit_SemiMajorAxis = 52588.64584972781 -orbit_Eccentricity = 0.001272032273930335 -orbit_Inclination = 0.5113748544074094 -orbit_AscendingNode = 16.63627320068509 -orbit_LongOfPericenter = 151.8881808 -orbit_MeanLongitude = 143.7191234 -type = moon +name=Despina +parent=Neptune +radius=74 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=0.3354528211477725 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=0.3354528211477725 +orbit_visualization_period=0.3354528211477725 +orbit_SemiMajorAxis=52588.64584972781 +orbit_Eccentricity=0.001272032273930335 +orbit_Inclination=0.5113748544074094 +orbit_AscendingNode=16.63627320068509 +orbit_LongOfPericenter=151.8881808 +orbit_MeanLongitude=143.7191234 +type=moon [galatea] -name = Galatea -parent = Neptune -radius = 79 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 0.4294734314535237 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 0.4294734314535237 -orbit_visualization_period = 0.4294734314535237 -orbit_SemiMajorAxis = 62005.26343616215 -orbit_Eccentricity = 0.0009319587984705302 -orbit_Inclination = 0.5752509266760514 -orbit_AscendingNode = 8.642606900770915 -orbit_LongOfPericenter = 62.03770344 -orbit_MeanLongitude = 62.60684554 -type = moon +name=Galatea +parent=Neptune +radius=79 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=0.4294734314535237 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=0.4294734314535237 +orbit_visualization_period=0.4294734314535237 +orbit_SemiMajorAxis=62005.26343616215 +orbit_Eccentricity=0.0009319587984705302 +orbit_Inclination=0.5752509266760514 +orbit_AscendingNode=8.642606900770915 +orbit_LongOfPericenter=62.03770344 +orbit_MeanLongitude=62.60684554 +type=moon [larissa] -name = Larissa -parent = Neptune -radius = 79 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 0.5553035150611498 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 0.5553035150611498 -orbit_visualization_period = 0.5553035150611498 -orbit_SemiMajorAxis = 73590.98861163890 -orbit_Eccentricity = 0.001628627055845952 -orbit_Inclination = 0.3672114864338289 -orbit_AscendingNode = 12.97300037402120 -orbit_LongOfPericenter = 342.2125629 -orbit_MeanLongitude = 38.69785092 -type = moon +name=Larissa +parent=Neptune +radius=79 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=0.5553035150611498 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=0.5553035150611498 +orbit_visualization_period=0.5553035150611498 +orbit_SemiMajorAxis=73590.98861163890 +orbit_Eccentricity=0.001628627055845952 +orbit_Inclination=0.3672114864338289 +orbit_AscendingNode=12.97300037402120 +orbit_LongOfPericenter=342.2125629 +orbit_MeanLongitude=38.69785092 +type=moon [proteus] -name = Proteus -parent = Neptune -radius = 208 -halo = true -color = 1.,0.9,0.75 -tex_map = proteus.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 1.122852570617394 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 1.122852570617394 -orbit_visualization_period = 1.122852570617394 -orbit_SemiMajorAxis = 117675.5347599977 -orbit_Eccentricity = 0.0002692747866371301 -orbit_Inclination = 1.100351508385464 -orbit_AscendingNode = 8.601516584903857 -orbit_LongOfPericenter = 271.9733987 -orbit_MeanLongitude = 67.98677168 -type = moon +name=Proteus +parent=Neptune +radius=208 +halo=true +color=1., 0.9, 0.75 +tex_map=proteus.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=1.122852570617394 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=1.122852570617394 +orbit_visualization_period=1.122852570617394 +orbit_SemiMajorAxis=117675.5347599977 +orbit_Eccentricity=0.0002692747866371301 +orbit_Inclination=1.100351508385464 +orbit_AscendingNode=8.601516584903857 +orbit_LongOfPericenter=271.9733987 +orbit_MeanLongitude=67.98677168 +type=moon [halimede] -name = Halimede -parent = Neptune -radius = 62 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 1875.169478522967 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 1875.169478522967 -orbit_visualization_period = 1875.169478522967 -orbit_SemiMajorAxis = 16563980.32137450 -orbit_Eccentricity = 0.2619064927013259 -orbit_Inclination = 139.1947079371791 -orbit_AscendingNode = 188.1838751463620 -orbit_LongOfPericenter = 336.4277167 -orbit_MeanLongitude = 76.5585497 -type = moon +name=Halimede +parent=Neptune +radius=62 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=1875.169478522967 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=1875.169478522967 +orbit_visualization_period=1875.169478522967 +orbit_SemiMajorAxis=16563980.32137450 +orbit_Eccentricity=0.2619064927013259 +orbit_Inclination=139.1947079371791 +orbit_AscendingNode=188.1838751463620 +orbit_LongOfPericenter=336.4277167 +orbit_MeanLongitude=76.5585497 +type=moon [psamathe] -name = Psamathe -parent = Neptune -radius = 40 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 9130.624091904599 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 9130.624091904599 -orbit_visualization_period = 9130.624091904599 -orbit_SemiMajorAxis = 47585137.76667986 -orbit_Eccentricity = 0.2226171984343604 -orbit_Inclination = 119.8213439712103 -orbit_AscendingNode = 312.6542992791928 -orbit_LongOfPericenter = 122.424815 -orbit_MeanLongitude = 45.2205867 -type = moon +name=Psamathe +parent=Neptune +radius=40 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=9130.624091904599 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=9130.624091904599 +orbit_visualization_period=9130.624091904599 +orbit_SemiMajorAxis=47585137.76667986 +orbit_Eccentricity=0.2226171984343604 +orbit_Inclination=119.8213439712103 +orbit_AscendingNode=312.6542992791928 +orbit_LongOfPericenter=122.424815 +orbit_MeanLongitude=45.2205867 +type=moon [sao] -name = Sao -parent = Neptune -radius = 44 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 2908.415786162766 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 2908.415786162766 -orbit_visualization_period = 2908.415786162766 -orbit_SemiMajorAxis = 22194328.90318039 -orbit_Eccentricity = 0.1428543008978792 -orbit_Inclination = 25.87467519239580 -orbit_AscendingNode = 47.24035407294561 -orbit_LongOfPericenter = 97.97933806 -orbit_MeanLongitude = 131.3325862 -type = moon +name=Sao +parent=Neptune +radius=44 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=2908.415786162766 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=2908.415786162766 +orbit_visualization_period=2908.415786162766 +orbit_SemiMajorAxis=22194328.90318039 +orbit_Eccentricity=0.1428543008978792 +orbit_Inclination=25.87467519239580 +orbit_AscendingNode=47.24035407294561 +orbit_LongOfPericenter=97.97933806 +orbit_MeanLongitude=131.3325862 +type=moon [laomedeia] -name = Laomedeia -parent = Neptune -radius = 42 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 3185.068758279590 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 3185.068758279590 -orbit_visualization_period = 3185.068758279590 -orbit_SemiMajorAxis = 23580349.09459848 -orbit_Eccentricity = 0.3845786604193581 -orbit_Inclination = 9.744680906468446 -orbit_AscendingNode = 33.54920843735481 -orbit_LongOfPericenter = 159.9138961 -orbit_MeanLongitude = 305.1617125 -type = moon +name=Laomedeia +parent=Neptune +radius=42 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=3185.068758279590 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=3185.068758279590 +orbit_visualization_period=3185.068758279590 +orbit_SemiMajorAxis=23580349.09459848 +orbit_Eccentricity=0.3845786604193581 +orbit_Inclination=9.744680906468446 +orbit_AscendingNode=33.54920843735481 +orbit_LongOfPericenter=159.9138961 +orbit_MeanLongitude=305.1617125 +type=moon [neso] -name = Neso -parent = Neptune -radius = 60 -halo = true -color = 1.,0.9,0.75 -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.06 -rot_periode = 9358.591084432848 -rot_rotation_offset = 14.9 -rot_obliquity = 15.5 -rot_equator_ascending_node = 213.7 -coord_func = ell_orbit -orbit_Epoch = 2454619.50000 -orbit_Period = 9358.591084432848 -orbit_visualization_period = 9358.591084432848 -orbit_SemiMajorAxis = 48373926.07254116 -orbit_Eccentricity = 0.6299942939512408 -orbit_Inclination = 111.8841686447457 -orbit_AscendingNode = 23.02370632501001 -orbit_LongOfPericenter = 107.4960759 -orbit_MeanLongitude = 74.4524916 -type = moon +name=Neso +parent=Neptune +radius=60 +halo=true +color=1., 0.9, 0.75 +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.06 +rot_periode=9358.591084432848 +rot_rotation_offset=14.9 +rot_obliquity=15.5 +rot_equator_ascending_node=213.7 +coord_func=ell_orbit +orbit_Epoch=2454619.50000 +orbit_Period=9358.591084432848 +orbit_visualization_period=9358.591084432848 +orbit_SemiMajorAxis=48373926.07254116 +orbit_Eccentricity=0.6299942939512408 +orbit_Inclination=111.8841686447457 +orbit_AscendingNode=23.02370632501001 +orbit_LongOfPericenter=107.4960759 +orbit_MeanLongitude=74.4524916 +type=moon [pluto] -name = Pluto -parent = Sun -radius = 1195. -halo = true -color = 1.0,0.92,0.85 -tex_map = pluto.png -tex_halo = star16x16.png -coord_func = pluto_special -lighting = true -albedo = 0.55 -rot_periode = -153.293904 -rot_rotation_offset = 320.75 -#rot_obliquity = -115.60 -#rot_equator_ascending_node = 228.34 -rot_pole_ra = 313.02 -rot_pole_de = 9.09 -orbit_visualization_period = 90797 -type = plutoid +name=Pluto +parent=Sun +radius=1195. +halo=true +color=1.0, 0.92, 0.85 +tex_map=pluto.png +tex_halo=star16x16.png +coord_func=pluto_special +lighting=true +albedo=0.55 +rot_periode=-153.293904 +rot_rotation_offset=320.75 +%23rot_obliquity=-115.60 +%23rot_equator_ascending_node=228.34 +rot_pole_ra=313.02 +rot_pole_de=9.09 +orbit_visualization_period=90797 +type=plutoid [charon] -name = Charon -parent = Pluto -radius = 593. -halo = true -color = 1.,1.,1. -tex_map = charon.png -tex_halo = star16x16.png -lighting = true -albedo = 0.35 -rot_periode = -153.293904 -rot_rotation_offset = 213.3 -rot_obliquity = 1.0 -#rot_equator_ascending_node = 287.6 -coord_func = ell_orbit -orbit_Epoch = 2451545.0 -orbit_Period = -6.387246 -orbit_visualization_period = 6.387246 -orbit_SemiMajorAxis = 19636 -orbit_Eccentricity = 0.0002 -orbit_Inclination = 0.0048 -orbit_AscendingNode = 93.5582 -orbit_LongOfPericenter = 227.3188 -orbit_MeanLongitude = 320.7583 -type = moon +name=Charon +parent=Pluto +radius=593. +halo=true +color=1., 1., 1. +tex_map=charon.png +tex_halo=star16x16.png +lighting=true +albedo=0.35 +rot_periode=-153.293904 +rot_rotation_offset=213.3 +rot_obliquity=1.0 +%23rot_equator_ascending_node=287.6 +coord_func=ell_orbit +orbit_Epoch=2451545.0 +orbit_Period=-6.387246 +orbit_visualization_period=6.387246 +orbit_SemiMajorAxis=19636 +orbit_Eccentricity=0.0002 +orbit_Inclination=0.0048 +orbit_AscendingNode=93.5582 +orbit_LongOfPericenter=227.3188 +orbit_MeanLongitude=320.7583 +type=moon [nix] -name = Nix -parent = Pluto -radius = 92 -halo = true -color = 1.,1.,1. -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.195 -rot_periode = 25.560828309 -rot_rotation_offset = 0.0 -rot_obliquity = 1.0 -coord_func = ell_orbit -orbit_Epoch = 2455767.5 -orbit_Period = -25.560828309 -orbit_visualization_period = 25.560828309 -orbit_SemiMajorAxis = 48708 -orbit_Eccentricity = 0.016255202 -orbit_Inclination = 0.195 -orbit_AscendingNode = 227.561028688 -orbit_LongOfPericenter = 274.964880646 -type = moon +name=Nix +parent=Pluto +radius=92 +halo=true +color=1., 1., 1. +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.195 +rot_periode=25.560828309 +rot_rotation_offset=0.0 +rot_obliquity=1.0 +coord_func=ell_orbit +orbit_Epoch=2455767.5 +orbit_Period=-25.560828309 +orbit_visualization_period=25.560828309 +orbit_SemiMajorAxis=48708 +orbit_Eccentricity=0.016255202 +orbit_Inclination=0.195 +orbit_AscendingNode=227.561028688 +orbit_LongOfPericenter=274.964880646 +type=moon [hydra] -name = Hydra (moon) -parent = Pluto -radius = 114 -halo = true -color = 1.,1.,1. -tex_map = lune.png -tex_halo = star16x16.png -lighting = true -albedo = 0.195 -rot_periode = 38.502879281 -rot_rotation_offset = 0.0 -rot_obliquity = 1.0 -coord_func = ell_orbit -orbit_Epoch = 2455767.5 -orbit_Period = -38.502879281 -orbit_visualization_period = 38.502879281 -orbit_SemiMajorAxis = 64749 -orbit_Eccentricity = 0.004288704 -orbit_Inclination = 0.212 -orbit_AscendingNode = 227.388734431 -orbit_LongOfPericenter = 375.299780216 -type = moon +name=Hydra (moon) +parent=Pluto +radius=114 +halo=true +color=1., 1., 1. +tex_map=lune.png +tex_halo=star16x16.png +lighting=true +albedo=0.195 +rot_periode=38.502879281 +rot_rotation_offset=0.0 +rot_obliquity=1.0 +coord_func=ell_orbit +orbit_Epoch=2455767.5 +orbit_Period=-38.502879281 +orbit_visualization_period=38.502879281 +orbit_SemiMajorAxis=64749 +orbit_Eccentricity=0.004288704 +orbit_Inclination=0.212 +orbit_AscendingNode=227.388734431 +orbit_LongOfPericenter=375.299780216 +type=moon [solar_system_observer] -name = Solar System Observer -parent = Sun -radius = 1. -halo = false -color = 0.,0.,0. -tex_map = lune.png -tex_halo = star16x16.png -lighting = false -albedo = 0. -coord_func = ell_orbit -orbit_Epoch = 2451545.0 -orbit_Period = 700000000000 -orbit_SemiMajorAxis = 7000000000 -orbit_Eccentricity = 0 -orbit_Inclination = 90 -orbit_AscendingNode = 0 -orbit_LongOfPericenter = 0 -orbit_MeanLongitude = 90 -rot_obliquity = 90 -hidden = true +name=Solar System Observer +parent=Sun +radius=1. +halo=false +color=0., 0., 0. +tex_map=lune.png +tex_halo=star16x16.png +lighting=false +albedo=0. +coord_func=ell_orbit +orbit_Epoch=2451545.0 +orbit_Period=700000000000 +orbit_SemiMajorAxis=7000000000 +orbit_Eccentricity=0 +orbit_Inclination=90 +orbit_AscendingNode=0 +orbit_LongOfPericenter=0 +orbit_MeanLongitude=90 +rot_obliquity=90 +hidden=true [1ceres] -name = Ceres -minor_planet_number = 1 -parent = Sun -radius = 470 -oblateness = 0.0 -albedo = 0.113 -lighting = true -orbit_visualization_period = 1680.15 -halo = true -color = 1.0,1.0,1.0 -tex_halo = star16x16.png -tex_map = nomap.png -coord_func = comet_orbit -orbit_Epoch = 2454200.5 -orbit_MeanAnomaly = 215.80100 -orbit_SemiMajorAxis = 2.7659565 -orbit_Eccentricity = 0.0797602 -orbit_ArgOfPericenter = 73.15069 -orbit_AscendingNode = 80.40696 -orbit_Inclination = 10.58671 -type = asteroid +name=Ceres +minor_planet_number=1 +parent=Sun +radius=470 +oblateness=0.0 +albedo=0.113 +lighting=true +orbit_visualization_period=1680.15 +halo=true +color=1.0, 1.0, 1.0 +tex_halo=star16x16.png +tex_map=nomap.png +coord_func=comet_orbit +orbit_Epoch=2455400.5 +orbit_MeanAnomaly=113.41048 +orbit_SemiMajorAxis=2.7653485 +orbit_Eccentricity=0.0791382 +orbit_ArgOfPericenter=72.58976 +orbit_AscendingNode=80.39321 +orbit_Inclination=10.58682 +type=asteroid +orbit_MeanMotion=0.21432817 [2pallas] -name = Pallas -minor_planet_number = 2 -parent = Sun -radius = 220 -oblateness = 0.0 -albedo = 0.159 -lighting = true -orbit_visualization_period = 1686.333 -halo = true -color = 1.0,1.0,1.0 -tex_halo = star16x16.png -tex_map = nomap.png -coord_func = comet_orbit -orbit_Epoch = 2454200.5 -orbit_MeanAnomaly = 199.72616 -orbit_SemiMajorAxis = 2.7716684 -orbit_Eccentricity = 0.2307589 -orbit_ArgOfPericenter = 310.34481 -orbit_AscendingNode = 173.13579 -orbit_Inclination = 34.84182 -type = asteroid +name=Pallas +minor_planet_number=2 +parent=Sun +radius=220 +oblateness=0.0 +albedo=0.159 +lighting=true +orbit_visualization_period=1686.333 +halo=true +color=1.0, 1.0, 1.0 +tex_halo=star16x16.png +tex_map=nomap.png +coord_func=comet_orbit +orbit_Epoch=2455400.5 +orbit_MeanAnomaly=96.14829 +orbit_SemiMajorAxis=2.7721533 +orbit_Eccentricity=0.2309995 +orbit_ArgOfPericenter=310.1509 +orbit_AscendingNode=173.12949 +orbit_Inclination=34.84091 +type=asteroid +orbit_MeanMotion=0.2135395 [3juno] -name = Juno -minor_planet_number = 3 -parent = Sun -radius = 130 -oblateness = 0.0 -albedo = 0.238 -lighting = true -orbit_visualization_period = 1591.93 -halo = true -color = 1.0,1.0,1.0 -tex_halo = star16x16.png -tex_map = nomap.png -coord_func = comet_orbit -orbit_Epoch = 2454200.5 -orbit_MeanAnomaly = 121.22421 -orbit_SemiMajorAxis = 2.6678842 -orbit_Eccentricity = 0.2580231 -orbit_ArgOfPericenter = 247.84192 -orbit_AscendingNode = 170.12007 -orbit_Inclination = 12.97036 -type = asteroid +name=Juno +minor_planet_number=3 +parent=Sun +radius=130 +oblateness=0.0 +albedo=0.238 +lighting=true +orbit_visualization_period=1591.93 +halo=true +color=1.0, 1.0, 1.0 +tex_halo=star16x16.png +tex_map=nomap.png +coord_func=comet_orbit +orbit_Epoch=2455400.5 +orbit_MeanAnomaly=32.09611 +orbit_SemiMajorAxis=2.6700913 +orbit_Eccentricity=0.2549812 +orbit_ArgOfPericenter=248.10804 +orbit_AscendingNode=169.91138 +orbit_Inclination=12.98211 +type=asteroid +orbit_MeanMotion=0.22589931 [4vesta] -name = Vesta -minor_planet_number = 4 -parent = Sun -radius = 280 -oblateness = 0.0 -albedo = 0.423 -lighting = true -orbit_visualization_period = 1325.46 -halo = true -color = 1.0,1.0,1.0 -tex_halo = star16x16.png -tex_map = nomap.png -coord_func = comet_orbit -orbit_Epoch = 2454200.5 -orbit_MeanAnomaly = 341.59209 -orbit_SemiMajorAxis = 2.3619563 -orbit_Eccentricity = 0.0893657 -orbit_ArgOfPericenter = 150.18003 -orbit_AscendingNode = 103.91841 -orbit_Inclination = 7.13380 -type = asteroid +name=Vesta +minor_planet_number=4 +parent=Sun +radius=280 +oblateness=0.0 +albedo=0.423 +lighting=true +orbit_visualization_period=1325.46 +halo=true +color=1.0, 1.0, 1.0 +tex_halo=star16x16.png +tex_map=nomap.png +coord_func=comet_orbit +orbit_Epoch=2455400.5 +orbit_MeanAnomaly=307.80111 +orbit_SemiMajorAxis=2.3619124 +orbit_Eccentricity=0.0886225 +orbit_ArgOfPericenter=149.83731 +orbit_AscendingNode=103.9097 +orbit_Inclination=7.13407 +type=asteroid +orbit_MeanMotion=0.27152411 [136199eris] -name = Eris -minor_planet_number = 136199 -parent = Sun -radius = 1300 -oblateness = 0.0 -albedo = 0.689 -lighting = true -orbit_visualization_period = 204376.01809 -halo = true -color = 1.0,1.0,1.0 -rot_periode = 8 -tex_halo = star16x16.png -tex_map = nomap.png -coord_func = comet_orbit -orbit_Epoch = 2454800.5 -orbit_MeanAnomaly = 198.858225 -orbit_SemiMajorAxis = 67.902798 -orbit_Eccentricity = 0.4361532 -orbit_ArgOfPericenter = 151.51961 -orbit_AscendingNode = 35.95741 -orbit_Inclination = 44.022944 -type = plutoid +name=Eris +minor_planet_number=136199 +parent=Sun +radius=1300 +oblateness=0.0 +albedo=0.689 +lighting=true +orbit_visualization_period=204376.01809 +halo=true +color=1.0, 1.0, 1.0 +rot_periode=8 +tex_halo=star16x16.png +tex_map=nomap.png +coord_func=comet_orbit +orbit_Epoch=2456400.5 +orbit_MeanAnomaly=203.20723 +orbit_SemiMajorAxis=67.9581234 +orbit_Eccentricity=0.4370786 +orbit_ArgOfPericenter=150.80388 +orbit_AscendingNode=36.03101 +orbit_Inclination=43.88507 +type=plutoid +orbit_MeanMotion=0.00175931 [90377sedna] -name = Sedna -parent = Sun -orbit_Inclination = 11.9279 -coord_func = comet_orbit -orbit_Eccentricity = 0.859311 -orbit_ArgOfPericenter = 310.9214 -orbit_Epoch = 2456000.5 -absolute_magnitude = 1.6 -slope_parameter = 0.15 -lighting = true -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 144.3803 -orbit_MeanMotion = 7.8e-05 -orbit_MeanAnomaly = 358.1959 -minor_planet_number = 90377 -orbit_SemiMajorAxis = 542.4247 -albedo = 0.32 -radius = 1643 -type = plutoid +name=Sedna +parent=Sun +orbit_Inclination=11.92838 +coord_func=comet_orbit +orbit_Eccentricity=0.859663 +orbit_ArgOfPericenter=311.00604 +orbit_Epoch=2456400.5 +orbit_visualization_period=4614318.98 +absolute_magnitude=1.6 +slope_parameter=0.15 +lighting=true +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=144.46837 +orbit_MeanMotion=7.785e-05 +orbit_MeanAnomaly=358.22539 +minor_planet_number=90377 +orbit_SemiMajorAxis=543.2019341 +albedo=0.32 +radius=1643 +type=plutoid [50000quaoar] -name = Quaoar -parent = Sun -orbit_Inclination = 7.9956 -coord_func = comet_orbit -orbit_Eccentricity = 0.037889 -orbit_ArgOfPericenter = 161.6862 -orbit_Epoch = 2456000.5 -absolute_magnitude = 2.6 -slope_parameter = 0.15 -lighting = true -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 189.026 -orbit_MeanMotion = 0.0034688 -orbit_MeanAnomaly = 276.4486 -minor_planet_number = 50000 -orbit_SemiMajorAxis = 43.2202 -albedo = 0.16 -radius = 1037 -type = plutoid +name=Quaoar +parent=Sun +orbit_Inclination=7.99306 +coord_func=comet_orbit +orbit_Eccentricity=0.0364151 +orbit_ArgOfPericenter=162.95152 +orbit_Epoch=2456400.5 +orbit_visualization_period=103783.57 +absolute_magnitude=2.6 +slope_parameter=0.15 +lighting=true +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=188.9599 +orbit_MeanMotion=0.00347369 +orbit_MeanAnomaly=276.47478 +minor_planet_number=50000 +orbit_SemiMajorAxis=43.1792876 +albedo=0.16 +radius=1037 +type=plutoid [90482orcus] -name = Orcus -parent = Sun -orbit_Inclination = 20.5493 -coord_func = comet_orbit -orbit_Eccentricity = 0.224276 -orbit_ArgOfPericenter = 73.6374 -orbit_Epoch = 2456000.5 -absolute_magnitude = 2.3 -slope_parameter = 0.15 -lighting = true -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 268.4595 -orbit_MeanMotion = 0.0040039 -orbit_MeanAnomaly = 168.1352 -minor_planet_number = 90482 -orbit_SemiMajorAxis = 39.27754 -albedo = 0.25 -radius = 1190 -type = plutoid +name=Orcus +parent=Sun +orbit_Inclination=20.54376 +coord_func=comet_orbit +orbit_Eccentricity=0.2214769 +orbit_ArgOfPericenter=73.74117 +orbit_Epoch=2456400.5 +orbit_visualization_period=89911.42 +absolute_magnitude=2.3 +slope_parameter=0.15 +lighting=true +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=268.42323 +orbit_MeanMotion=0.00399016 +orbit_MeanAnomaly=169.68515 +minor_planet_number=90482 +orbit_SemiMajorAxis=39.367894 +albedo=0.25 +radius=1190 +type=plutoid [136108haumea] -name = Haumea -parent = Sun -orbit_Inclination = 28.202 -coord_func = comet_orbit -orbit_Eccentricity = 0.197432 -orbit_ArgOfPericenter = 240.585 -orbit_Epoch = 2456000.5 -absolute_magnitude = 0.2 -slope_parameter = 0.15 -lighting = true -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 121.9004 -orbit_MeanMotion = 0.0034967 -orbit_MeanAnomaly = 205.216 -minor_planet_number = 136108 -orbit_SemiMajorAxis = 42.98956 -albedo = 0.73 -radius = 3130 -type = plutoid +name=Haumea +parent=Sun +orbit_Inclination=28.19413 +coord_func=comet_orbit +orbit_Eccentricity=0.1952589 +orbit_ArgOfPericenter=240.67751 +orbit_Epoch=2456400.5 +orbit_visualization_period=102953.93 +absolute_magnitude=0.2 +slope_parameter=0.15 +lighting=true +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=121.81883 +orbit_MeanMotion=0.00348843 +orbit_MeanAnomaly=206.48086 +minor_planet_number=136108 +orbit_SemiMajorAxis=43.0575741 +albedo=0.73 +radius=3130 +type=plutoid [136472makemake] -name = Makemake -parent = Sun -orbit_Inclination = 28.99795761254687 -coord_func = comet_orbit -orbit_Eccentricity = 0.1566358723166362 -orbit_ArgOfPericenter = 295.8208634497294 -orbit_Epoch = 2454135.5 -absolute_magnitude = -0.4 -slope_parameter = 0.15 -lighting = true -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 79.59590003989989 -orbit_MeanMotion = 0.003198605 -orbit_MeanAnomaly = 148.7993929490911 -minor_planet_number = 136472 -orbit_SemiMajorAxis = 45.62073490995235 -albedo = 0.78 -radius = 1400 -type = plutoid +name=Makemake +parent=Sun +orbit_Inclination=29.01305 +coord_func=comet_orbit +orbit_Eccentricity=0.1599426 +orbit_ArgOfPericenter=297.07714 +orbit_Epoch=2456400.5 +orbit_visualization_period=112549.05 +absolute_magnitude=-0.4 +slope_parameter=0.15 +lighting=true +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=79.28738 +orbit_MeanMotion=0.00320549 +orbit_MeanAnomaly=154.55764 +minor_planet_number=136472 +orbit_SemiMajorAxis=45.5553868 +albedo=0.78 +radius=1400 +type=plutoid [20000varuna] -parent = Sun -orbit_Inclination = 17.1431 -coord_func = comet_orbit -orbit_Eccentricity = 0.054294 -orbit_ArgOfPericenter = 272.5375 -name = Varuna -orbit_Epoch = 2456200.5 -absolute_magnitude = 3.6 -slope_parameter = 0.15 -lighting = true -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 97.2614 -orbit_MeanMotion = 0.003477 -orbit_MeanAnomaly = 98.8487 -minor_planet_number = 20000 -orbit_SemiMajorAxis = 43.15171 -albedo = 0.15 -radius = 654 -type = plutoid +parent=Sun +orbit_Inclination=17.13924 +coord_func=comet_orbit +orbit_Eccentricity=0.0534195 +orbit_ArgOfPericenter=273.28837 +orbit_visualization_period=103536.97 +name=Varuna +orbit_Epoch=2456400.5 +absolute_magnitude=3.6 +slope_parameter=0.15 +lighting=true +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=97.25714 +orbit_MeanMotion=0.00347282 +orbit_MeanAnomaly=98.87781 +minor_planet_number=20000 +orbit_SemiMajorAxis=43.1865207 +albedo=0.15 +radius=654 +type=plutoid [2250882007or10] -parent = Sun -orbit_Inclination = 30.8118 -coord_func = comet_orbit -orbit_Eccentricity = 0.502036 -orbit_ArgOfPericenter = 206.7698 -name = 2007 OR10 -orbit_Epoch = 2456200.5 -absolute_magnitude = 2 -slope_parameter = 0.15 -lighting = true -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 336.8394 -orbit_MeanMotion = 0.0017991 -orbit_MeanAnomaly = 102.6175 -minor_planet_number = 225088 -orbit_SemiMajorAxis = 66.95198 -albedo = 0.19 -radius = 1367 -type = plutoid - -[c2011l4(panstarrs)] -parent = Sun -orbit_Inclination = 84.2073 -coord_func = comet_orbit -orbit_Eccentricity = 1.000032 -orbit_ArgOfPericenter = 333.6514 -absolute_magnitude = 5.5 -name = C/2011 L4 (PANSTARRS) -slope_parameter = 4 -lighting = false -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 65.6659 -albedo = 1 -radius = 5 -orbit_PericenterDistance = 0.301545 -type = comet -orbit_TimeAtPericenter = 2456361.66969907 - -[c2012s1(ison)] -parent = Sun -orbit_Inclination = 61.8916 -coord_func = comet_orbit -orbit_Eccentricity = 1.000004 -orbit_ArgOfPericenter = 345.5129 -absolute_magnitude = 7 -name = C/2012 S1 (ISON) -slope_parameter = 3.2 -lighting = false -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 295.7319 -albedo = 1 -radius = 5 -orbit_PericenterDistance = 0.012499 -type = comet -orbit_TimeAtPericenter = 2456625.29388889 +parent=Sun +orbit_Inclination=30.8118 +coord_func=comet_orbit +orbit_Eccentricity=0.502036 +orbit_ArgOfPericenter=206.7698 +orbit_visualization_period=200098.38 +name=2007 OR10 +orbit_Epoch=2456200.5 +absolute_magnitude=2 +slope_parameter=0.15 +lighting=true +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=336.8394 +orbit_MeanMotion=0.0017991 +orbit_MeanAnomaly=102.6175 +minor_planet_number=225088 +orbit_SemiMajorAxis=66.95198 +albedo=0.19 +radius=1367 +type=plutoid + +[c2011l4%28panstarrs%29] +parent=Sun +orbit_Inclination=84.2075 +coord_func=comet_orbit +orbit_Eccentricity=1.000024 +orbit_ArgOfPericenter=333.6538 +absolute_magnitude=5.5 +name=C/2011 L4 (PANSTARRS) +slope_parameter=4 +lighting=false +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=65.6677 +albedo=1 +radius=5 +orbit_PericenterDistance=0.301581 +type=comet +orbit_TimeAtPericenter=2456361.66769676 + +[c2012s1%28ison%29] +parent=Sun +orbit_Inclination=62.3584 +coord_func=comet_orbit +orbit_Eccentricity=1.000003 +orbit_ArgOfPericenter=345.5612 +absolute_magnitude=7 +name=C/2012 S1 (ISON) +slope_parameter=3.2 +lighting=false +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=295.6582 +albedo=1 +radius=5 +orbit_PericenterDistance=0.012445 +type=comet +orbit_TimeAtPericenter=2456625.26819444 [2012da14] -parent = Sun -orbit_Inclination = 11.6062 -coord_func = comet_orbit -orbit_Eccentricity = 0.089672 -orbit_ArgOfPericenter = 195.606 -absolute_magnitude = 24.4 -name = 2012 DA14 -orbit_Epoch = 2456400.5 -slope_parameter = 0.15 -lighting = true -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 146.9959 -orbit_MeanMotion = 1.1351258 -orbit_MeanAnomaly = 231.0252 -orbit_SemiMajorAxis = 0.910137 -albedo = 0.15 -radius = 1 -type = asteroid - -[c2012f6(lemmon)] -parent = Sun -orbit_Inclination = 82.6078 -coord_func = comet_orbit -orbit_Eccentricity = 0.998533 -orbit_ArgOfPericenter = 304.9875 -absolute_magnitude = 10 -name = C/2012 F6 (Lemmon) -slope_parameter = 4 -lighting = false -tex_map = nomap.png -color = 1.0, 1.0, 1.0 -orbit_AscendingNode = 332.7146 -albedo = 1 -radius = 5 -orbit_PericenterDistance = 0.731244 -type = comet -orbit_TimeAtPericenter = 2456376.0137963 +parent=Sun +orbit_Inclination=11.6062 +coord_func=comet_orbit +orbit_Eccentricity=0.089672 +orbit_ArgOfPericenter=195.606 +absolute_magnitude=24.4 +name=2012 DA14 +orbit_Epoch=2456400.5 +slope_parameter=0.15 +lighting=true +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=146.9959 +orbit_MeanMotion=1.1351258 +orbit_MeanAnomaly=231.0252 +orbit_SemiMajorAxis=0.910137 +albedo=0.15 +radius=1 +type=asteroid + +[c2012f6%28lemmon%29] +parent=Sun +orbit_Inclination=82.6088 +coord_func=comet_orbit +orbit_Eccentricity=0.998498 +orbit_ArgOfPericenter=304.9867 +absolute_magnitude=10 +name=C/2012 F6 (Lemmon) +slope_parameter=4 +lighting=false +tex_map=nomap.png +color=1.0, 1.0, 1.0 +orbit_AscendingNode=332.7154 +albedo=1 +radius=5 +orbit_PericenterDistance=0.731235 +type=comet +orbit_TimeAtPericenter=2456376.01369213 diff -Nru stellarium-0.12.1/data/stellarium.desktop stellarium-0.12.4/data/stellarium.desktop --- stellarium-0.12.1/data/stellarium.desktop 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/data/stellarium.desktop 2013-08-04 06:20:27.000000000 +0000 @@ -3,6 +3,7 @@ Type=Application Name=Stellarium GenericName=Desktop planetarium +GenericName[es]=Planetario de escritorio GenericName[ru]=ÐаÑтольный планетарий Exec=stellarium Icon=stellarium @@ -10,8 +11,10 @@ Terminal=false Categories=Astronomy;Education;Science; Comment=Planetarium +Comment[es]=Planetario Comment[fr]=Planétarium Comment[ru]=Планетарий +Keywords=astronomy;planetarium; Actions=Window;Fullscreen;Safemode; diff -Nru stellarium-0.12.1/debian/changelog stellarium-0.12.4/debian/changelog --- stellarium-0.12.1/debian/changelog 2013-06-26 08:04:17.000000000 +0000 +++ stellarium-0.12.4/debian/changelog 2013-09-28 20:10:55.000000000 +0000 @@ -1,3 +1,26 @@ +stellarium (0.12.4-1) unstable; urgency=low + + * Imported Upstream version 0.12.4 + + -- Tomasz Buchert Sat, 28 Sep 2013 22:10:41 +0200 + +stellarium (0.12.3-1) unstable; urgency=low + + * Imported Upstream version 0.12.3 + + -- Tomasz Buchert Mon, 09 Sep 2013 11:37:58 +0200 + +stellarium (0.12.2-1) unstable; urgency=low + + * Imported Upstream version 0.12.2 + * Added dependency to phonon (to enable video/sound) + * Fixed VCS links + * Removed unused lintian tag (embedded-library glee) + * Dropped obsolete patch + * Update copyright + + -- Tomasz Buchert Sun, 04 Aug 2013 15:06:55 +0200 + stellarium (0.12.1-4) unstable; urgency=low * Update dependency from ttf-dejavu-core to fonts-dejavu-core diff -Nru stellarium-0.12.1/debian/control stellarium-0.12.4/debian/control --- stellarium-0.12.1/debian/control 2013-05-27 11:29:28.000000000 +0000 +++ stellarium-0.12.4/debian/control 2013-09-09 09:30:27.000000000 +0000 @@ -3,11 +3,12 @@ Priority: optional Maintainer: Tomasz Buchert Build-Depends: debhelper (>= 9), cmake (>= 2.6.0), doxygen, - libqt4-dev (>= 4:4.6.0), libqt4-opengl-dev (>= 4:4.6.0), zlib1g-dev + libqt4-dev (>= 4:4.6.0), libqt4-opengl-dev (>= 4:4.6.0), zlib1g-dev, + libphonon-dev (>= 4:4.6.0) Standards-Version: 3.9.4 Homepage: http://www.stellarium.org -Vcs-Git: git://git.debian.org/git/collab-maint/stellarium.git -Vcs-Browser: http://git.debian.org/?p=collab-maint/stellarium.git +Vcs-Git: git://anonscm.debian.org/collab-maint/stellarium.git +Vcs-Browser: http://anonscm.debian.org/git/collab-maint/stellarium.git Package: stellarium Architecture: any diff -Nru stellarium-0.12.1/debian/copyright stellarium-0.12.4/debian/copyright --- stellarium-0.12.1/debian/copyright 2012-05-18 11:09:12.000000000 +0000 +++ stellarium-0.12.4/debian/copyright 2013-09-09 09:30:27.000000000 +0000 @@ -70,6 +70,58 @@ 1998 _Sky & Telescope_, "To the Visual Limits". The basic sources are available on the Sky and Telescope web site. (code "offered as-is and without support.") + 1.4 The Delta-T calculations + For implementation of calculate values of Delta-T we used next sources: + [1] Delta-T webpage by Rob van Gent: http://www.staff.science.uu.nl/~gent0113/deltat/deltat.htm + [2] "Five Millennium Canon of Solar Eclipses", Espenak and Meeus + http://eclipse.gsfc.nasa.gov/SEhelp/deltatpoly2004.html + [3] "On the system of astronomical constants", Clemence, G. M., + Astronomical Journal, Vol. 53, p. 169 + http://adsabs.harvard.edu/abs/1948AJ.....53..169C + [4] "The Rotation of the Earth, and the Secular Accelerations of the Sun, Moon and Planets", + Spencer Jones, Monthly Notices of the Royal Astronomical Society, 99 (1939), 541-558 + http://adsabs.harvard.edu/abs/1939MNRAS..99..541S + [5] "Polynomial approximations for the correction delta T E.T.-U.T. in the period 1800-1975", + Schmadel, L. D.; Zech, G., Acta Astronomica, vol. 29, no. 1, 1979, p. 101-104. + http://adsabs.harvard.edu/abs/1979AcA....29..101S + [6] "ELP 2000-85 and the dynamic time-universal time relation", Borkowski, K. M., + Astronomy and Astrophysics (ISSN 0004-6361), vol. 205, no. 1-2, Oct. 1988, p. L8-L10. + http://adsabs.harvard.edu/abs/1988A&A...205L...8B + [7] "Empirical Transformations from U.T. to E.T. for the Period 1800-1988", + Schmadel, L. D.; Zech, G., Astronomische Nachrichten 309, 219-221 + http://adsabs.harvard.edu/abs/1988AN....309..219S + [8] "Historical values of the Earth's clock error DeltaT and the calculation of eclipses", + Morrison, L. V.; Stephenson, F. R., Journal for the History of Astronomy (ISSN 0021-8286), + Vol. 35, Part 3, No. 120, p. 327 - 336 (2004) + http://adsabs.harvard.edu/abs/2004JHA....35..327M + [9] "Addendum: Historical values of the Earth's clock error", Morrison, L. V.; Stephenson, F. R., + Journal for the History of Astronomy (ISSN 0021-8286), Vol. 36, Part 3, No. 124, p. 339 (2005) + http://adsabs.harvard.edu/abs/2005JHA....36..339M + [10] "Polynomial approximations to Delta T, 1620-2000 AD", Meeus, J.; Simons, L., + Journal of the British Astronomical Association, vol.110, no.6, 323 + http://adsabs.harvard.edu/abs/2000JBAA..110..323M + [11] "Einstein's Theory of Relativity Confirmed by Ancient Solar Eclipses", Henriksson G., + http://adsabs.harvard.edu/abs/2009ASPC..409..166H + [12] "Canon of Solar Eclipses" by Mucke & Meeus (1983) + [13] "The accelerations of the earth and moon from early astronomical observations", + Muller P. M., Stephenson F. R., + http://adsabs.harvard.edu/abs/1975grhe.conf..459M + [14] "Pre-Telescopic Astronomical Observations", Stephenson F. R., + http://adsabs.harvard.edu/abs/1978tfer.conf....5S + [15] "Long-term changes in the rotation of the earth - 700 B.C. to A.D. 1980", + Stephenson F. R., Morrison L. V., + Philosophical Transactions, Series A (ISSN 0080-4614), vol. 313, no. 1524, Nov. 27, 1984, p. 47-70. + http://adsabs.harvard.edu/abs/1984RSPTA.313...47S + [16] "Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD 1990", + Stephenson F. R., Morrison L. V., + Philosophical Transactions: Physical Sciences and Engineering, Volume 351, Issue 1695, pp. 165-202 + http://adsabs.harvard.edu/abs/1995RSPTA.351..165S + [17] "Historical Eclipses and Earth's Rotation" by F. R. Stephenson (1997) + http://ebooks.cambridge.org/ebook.jsf?bid=CBO9780511525186 + [18] "Astronomical Algorithms" by J. Meeus (2nd ed., 1998) + [19] "Astronomy on the Personal Computer" by O. Montenbruck & T. Pfleger (4nd ed., 2000) + [20] "Calendrical Calculations" by E. M. Reingold & N. Dershowitz (2nd ed., 2001) + [21] DeltaT webpage by V. Reijs: http://www.iol.ie/~geniet/eng/DeltaTeval.htm . 2. Included source code 2.1 Some computation of the sideral time (sideral_time.h/c) and pluto @@ -128,6 +180,12 @@ estimated from r or b magnitude. When there is no b- or v- magnitude, the color B-V is estimated from the other magnitudes. Also proper motions of faint stars are neglected at all. + 3.8 Stellarium's Catalog of Variable Stars based on General Catalog of Variable + Stars (GCVS) version 2013Apr. + http://www.sai.msu.su/gcvs/gcvs/ + Samus N.N., Durlevich O.V., Kazarovets E V., Kireeva N.N., Pastukhova E.N., + Zharova A.V., et al., General Catalogue of Variable Stars (Samus+ 2007-2012) + http://cdsarc.u-strasbg.fr/viz-bin/Cat?cat=B%2Fgcvs& . 4. Graphics 4.1 All graphics are copyrighted by the Stellarium's Team (GPL) except @@ -136,8 +194,9 @@ Observatory) using data from the MODIS instrument aboard the Terra satellite (Public Domain). See chapter 10.1 for full credits. - 4.4 Moon texture map is Courtesy USGS Astrogeology Research Program, - http://astrogeology.usgs.gov. (Public Domain, DFSG-free) + 4.4 Moon texture map was combined from maps by USGS Astrogeology Research Program, + http://astrogeology.usgs.gov (Public Domain, DFSG-free) and by Lunar + surface textures from Celestia, based on Clementine data (Public Domain). 4.5a Jupiter map, Saturn map and ring textures created by Björn Jónsson: "All the planetary maps available on these pages are publicly available. You do not need a special permission to use them but if @@ -169,25 +228,56 @@ http://home.att.net/~hermperez/default.htm License: "Feel free to use these images, if you use them in a commercial setting please attribute the source." - 4.9 Images of M8, M20, M33, NGC253, NGC1499, NGC2244, IC343 from + 4.9 Images of M8, M33, NGC253, NGC1499, NGC2244, IC343 from Jean-Pierre Bousquet 4.10 Images of M1, M15, M16, M27, M42, M57, M97, NGC6946 from Stephane Dumont 4.11 Images of M17, M44, NGC856, NGC884 from Maxime Spano 4.12 Constellation art, GUI buttons, logo created by Johan Meuris (Jomejome) (jomejome at users.sourceforge.net) - http://users.pandora.be/jomejom/ + http://www.johanmeuris.eu/ License: released under the Free Art License (http://artlibre.org/licence.php/lalgb.html) + Icon created by Johan Meuris + License: Creative Commons Attribution-ShareAlike 3.0 Unported 4.13 The "earth-clouds" texture includes imagery owned by NASA. - See NASA's Visible Earth project at http://visibleearth.nasa.gov/ - License: 1. The imagery is free of licensing fees - 2. NASA requires that they be provided a credit as the owners - of the imagery + See NASA's Visible Earth project at http://visibleearth.nasa.gov/ + License: 1. The imagery is free of licensing fees + 2. NASA requires that they be provided a credit as the owners + of the imagery The cloud texturing was taken from Celestia (GPL), http://www.shatters.net/celestia/ 4.14 The folder icon derived from the Tango Desktop Project, used under the terms of the Creative Commons Attribution Share-Alike license. + 4.15 Images of NGC281, NGC5139, NGC6543, NGC6960, NGC7023, NGC7317, NGC7318, + NGC7319, NGC7320, NGC7331, IC4601, IC4592 + from Andrey Kuznetsov, Kepler Observatory + http://kepler-observatorium.ru + License: Creative Commons Attribution 3.0 Unported + 4.16 Images of NGC891, NGC1333, NGC2903, NGC3185, NGC3187, NGC3189, NGC3190, + NGC3193, NGC3718, NGC3729, NGC4490, NGC5981, NGC5982, NGC5985, NGC7129 + from Oleg Bryzgalov + http://olegbr.astroclub.kiev.ua/ + License: Creative Commons Attribution 3.0 Unported + 4.17 Image of eta Carinae + from Georg Zotti + http://www.waa.at/ + License: Creative Commons Attribution 3.0 Unported + 4.18 Images of IC1805, IC1848, NGC6888 + from Steve Tuttle + http://www.stuttle1.com/ + 4.19 Images of IC2944, IC4628, M20, M21, M47 + from Trevor Gerdes + http://sarcasmogerdes.dyndns.org/ + 4.20 Images of IC2118, NGC1532 + from users of Ice In Space + http://www.iceinspace.com.au/ + 4.21 Image of IC5146 from James A Weier + 4.22 Images of SMC, LMC (Magellanic Clouds) and rho Oph from Albert Van Donkelaar + 4.23 Images of NGC55, NGC300, NGC1365, NGC3628, NGC4945, NGC5128, NGC6726, + NGC6744, NGC6752, NGC6822, NGC7293 + from Philip Montgomery + http://www.kenthurst.bigpondhosting.com/ . -------------------------------------------------------------------------------- 9. LICENSE @@ -297,4 +387,4 @@ listed in each image caption. Ownership of images and video by parties other than JPL and NASA is noted in the caption material with each image. - --- + --- \ No newline at end of file diff -Nru stellarium-0.12.1/debian/lintian-overrides stellarium-0.12.4/debian/lintian-overrides --- stellarium-0.12.1/debian/lintian-overrides 2012-05-18 11:17:36.000000000 +0000 +++ stellarium-0.12.4/debian/lintian-overrides 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -# Stellarium needs a customized version of GLee library. -# It's not clear whether the changes will enter upstream release. -stellarium: embedded-library usr/bin/stellarium: glee diff -Nru stellarium-0.12.1/debian/patches/kfreebsd-man-fix.patch stellarium-0.12.4/debian/patches/kfreebsd-man-fix.patch --- stellarium-0.12.1/debian/patches/kfreebsd-man-fix.patch 2013-06-26 07:59:08.000000000 +0000 +++ stellarium-0.12.4/debian/patches/kfreebsd-man-fix.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -Description: (Temporary) fix for build problems on kFreeBSD - Manual pages are incorrectly installed in /usr/man. The reason - for that is that the stellarium's build system detects the system - as FreeBSD and uses its standard paths which are slightly - different than those on Debian. - A fix for that landed in stellarium's trunk. Here I backport it. - . - stellarium (0.12.1-3) unstable; urgency=low - . - * Upload back to unstable, again (no changes) -Author: Tomasz Buchert - ---- -The information above should follow the Patch Tagging Guidelines, please -checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here -are templates for supplementary fields that you might want to add: - -Origin: upstream, http://bazaar.launchpad.net/~stellarium/stellarium/trunk/revision/6092 -Forwarded: http://bazaar.launchpad.net/~stellarium/stellarium/trunk/revision/6092 - ---- stellarium-0.12.1.orig/doc/CMakeLists.txt -+++ stellarium-0.12.1/doc/CMakeLists.txt -@@ -24,11 +24,11 @@ ADD_CUSTOM_COMMAND( - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 - ) - --IF(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)") -+IF(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|NetBSD|OpenBSD)" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "kFreeBSD") - INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 DESTINATION man/man1) --ELSE(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)") -+ELSE(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|NetBSD|OpenBSD)" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "kFreeBSD") - INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 DESTINATION share/man/man1) --ENDIF(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)") -+ENDIF(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|NetBSD|OpenBSD)" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "kFreeBSD") - - ENDIF(UNIX AND NOT WIN32) - diff -Nru stellarium-0.12.1/debian/patches/series stellarium-0.12.4/debian/patches/series --- stellarium-0.12.1/debian/patches/series 2013-06-26 07:50:50.000000000 +0000 +++ stellarium-0.12.4/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -kfreebsd-man-fix.patch diff -Nru stellarium-0.12.1/doc/CMakeLists.txt stellarium-0.12.4/doc/CMakeLists.txt --- stellarium-0.12.1/doc/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/doc/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -24,11 +24,11 @@ DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 ) -IF(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)") +IF(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|NetBSD|OpenBSD)" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "kFreeBSD") INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 DESTINATION man/man1) -ELSE(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)") +ELSE(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|NetBSD|OpenBSD)" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "kFreeBSD") INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/stellarium.1 DESTINATION share/man/man1) -ENDIF(CMAKE_SYSTEM_NAME MATCHES "(FreeBSD|NetBSD|OpenBSD)") +ENDIF(${CMAKE_SYSTEM_NAME} MATCHES "(FreeBSD|NetBSD|OpenBSD)" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "kFreeBSD") ENDIF(UNIX AND NOT WIN32) diff -Nru stellarium-0.12.1/doc/codingConventions.doxygen stellarium-0.12.4/doc/codingConventions.doxygen --- stellarium-0.12.1/doc/codingConventions.doxygen 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/doc/codingConventions.doxygen 2013-09-07 15:50:48.000000000 +0000 @@ -24,28 +24,47 @@ The increasing number of contributors require that we clearly define coding rules and guidelines. Although for historical reasons the current code of Stellarium does not always comply to these rules, they should now be respected for any addition or modification of the code. @section stylistic_conventions_sec Stylistic Conventions -
    -
  • Source code should use ASCII character set. Characters such as 'è' or 'ö' are not portable when hard-coded. Gettext translated strings should be used for such characters. -
  • Variable names and comments should be in English. -
  • Class names are nouns, in mixed-case, with an initial upper-case -letter and the first letter of each subsequent word capitalized (e.g. CoreFactory). -
  • Method names are verbs or nouns in mixed-case, starting with a lower-case letter (e.g. update() or addElement()). -
  • Methods that return a value should take the form getSize(). -
  • The names of local variables should be in mixed case, starting with a lower-case letter (e.g. packetSize). This also applies to the formal parameters of methods. Do not use names starting with underscore. -
  • The names of macro or static const should be all upper-case words, separated by underscore: + - Source code should use the ASCII character set. Characters such as 'è' + or 'ö' are not portable when hard-coded. Gettext translated strings should + be used for text using such characters. + - Variable names and comments should be in English. + - Class names are nouns, in mixed-case, with an initial upper-case letter and + the first letter of each subsequent word capitalized (e.g. @c CoreFactory). + - Method names are verbs or nouns in mixed-case, starting with a lower-case + letter (e.g. @c update() or @c addElement()). + - Names of methods that return a value should start with a suitable verb, + such as @c getSize(). + - For methods, only names of Qt signals should be in passive voice + (@c valueChanged()). Names of Qt slots should use active verbs to avoid + confusion with signals: + @code + // BAD: + void buttonBoomClicked(); // Causes an explosion. + // BETTER: + void handleButtonBoom(); // Connected to buttonBoom::clicked(). + // EVEN BETTER: + void explode(); // Connected to buttonBoom::clicked(). + @endcode + The only exception is names of slots that use Qt's automatic connections to + controls in .ui files. (See @c QMetaObject::connectSlotsByName().) + - The names of local variables should be in mixed case, starting with + a lower-case letter (e.g. @c packetSize). This also applies to the formal + parameters of methods. Do not use names starting with underscore. + - The names of macro or static const should be all upper-case words, separated by underscore: @code #define MIN_WIDTH 3 static const QString VERSION = "0.10.1"; @endcode -
  • Indentation should be done with tabs, not spaces. This allows each developers to use his favorite indent size without changing the code. -
  • When wrapping lines from long function calls, where the wrapped line does not start at the same level of indentation as the start of the function call, tab up to the start of the function call, and then use spaces to the opening parenthesis. -@verbatim + - Indentation should be done with tabs, not spaces. This allows developers + to use their favorite indent size without changing the code. + - When wrapping lines from long function calls, where the wrapped line does not start at the same level of indentation as the start of the function call, tab up to the start of the function call, and then use spaces to the opening parenthesis. + @verbatim [--tab-][--tab-][--tab-]someFunction(param, ... [--tab-][--tab-][--tab-][ spaces ]moreparams, ...); -@endverbatim -This method will handle different tab widths gracefully. -
  • Use the following layout for braces: - @code + @endverbatim + This method will handle different tab widths gracefully. + - Use the following layout for braces: + @verbatim void MyClass::myMethod(int x) { if (x>10) @@ -53,15 +72,13 @@ cout << "You won." << endl; } } - @endcode -
  • Use blank lines as follows: -
      -
    • 1 between methods, before (block or single line) comment -
    • 1 between logical sections of a method -
    • 2 between sections of a source file -
    -
  • @em enums should follow the %Qt conventions. i.e. CamelCase with First letter capitalization for both enum type and enum values. Document with doxygen. The //!\< tag can be used to add descriptions on the same line as an enum value, e.g. -@verbatim + @endverbatim + - Use blank lines as follows: + - 1 between methods, before (block or single line) comment + - 1 between logical sections of a method + - 2 between sections of a source file + - @c enums should follow the %Qt conventions. i.e. CamelCase with First letter capitalization for both enum type and enum values. Document with doxygen. The //!\< tag can be used to add descriptions on the same line as an enum value, e.g. + @verbatim //! @enum EnumName Here is a description of the enum enum EnumName { @@ -71,12 +88,14 @@ }; @endverbatim -
  • You can use the astyle program to format your code according to these conventions. Use the following options: + - You can use the astyle program + to format your code according to these conventions. Use the following options: @verbatim astyle --style=ansi -tU source.cpp @endverbatim -Note that this command will replace the file source.cpp with the re-formatted one, and create a backup of the original with the .orig suffix. Also note that the -U option (used to un-pad parenthesis) is only available recent version of astyle. -
+Note that this command will replace the file source.cpp with the re-formatted one, and create a backup of the original with the .orig suffix. Also note that the -U option (used to un-pad +parenthesis) may not be available in older versions of @c astyle. + @section file_names_sec File Names @@ -115,24 +134,26 @@ @section cpp_code C/C++ Code Use C++ replacement for C functions and %Qt replacements for C++ functions/STL wherever possible. -
    -
  • Use QString instead of @c std::string or char * -
  • Use QIODevice instead of C file managment with @c fopen() -
  • Pass objects as references when needed instead of using pointers. -
  • Include standard headers the C++ way, it is more portable: + - Use QString + instead of @c std::string or char * + - Use QIODevice + instead of C file managment with @c fopen() + - Pass objects as references when needed instead of using pointers. + - Include standard headers the C++ way, it is more portable: @code #include // Bad #include // Good #include // Good @endcode -
  • Use Qt containers instead of STL ones. They are easier to use, allow for the foreach keyword. Only if speed is really critical, use STL containers such as @c std::vector or @c std::map, they are extremely efficient. Documentation is there. -
  • Avoid public global function and variable. Encapsulate them in classes or namespaces as static members/variable. -
  • Avoid using C macro, use static const variables instead. It is safer because it is type safe. + - Use Qt containers instead of STL ones. They are easier to use, allow for the foreach keyword. Only if speed is really critical, use STL containers such as @c std::vector or @c std::map, they are extremely efficient. Documentation is there. + - Avoid public global functions and variables. Encapsulate them in classes or namespaces as static members/variables. + - Avoid using C macros, use static const variables instead. + It is safer because it is type safe. @code #define RADIUS 12 // Bad static const int RADIUS = 12; // Good @endcode -
  • Use stdc++ math functions instead of C ones. There are more portable and are also overrided for float, thus may be faster. + - Use stdc++ math functions instead of C ones. There are more portable and are also overrided for float, thus may be faster. @code double cosLat = cos(lat); // Bad double cosLat = std::cos(lat); // Good @@ -141,15 +162,21 @@ @section translation_sec Translatable Strings and Console Output -Translatable strings are translated using the StelTranslator class, which is a C++ wrapper around gettext. A string literal can be marked for translation in with two different macros, q_() and N_(), and you need to pick one for the appropriate purpose: - - The q_() macro takes a string in English and returns the translation as a QString using the current global language. This also allows calling q_() with a QString parameter to return a translation. - - When a string literal needs to be marked for translation without returning a translation, use the N_() macro. It returns the original string. +Translatable strings are translated using the StelTranslator class, which is +a C++ wrapper around gettext. +A string literal can be marked for translation in with two different macros, +@c q_() or @c N_() , and you need to pick one for the appropriate purpose: + - The @c q_() macro takes a string in English and returns the translation as + a QString using the current global language. This also allows calling @c q_() + with a QString parameter to return a translation. + - When a string literal needs to be marked for translation without returning + a translation, use the @c N_() macro. It returns the original string. Several guidelines: - Translatable text in sources or data files should be written in English, encoded in ASCII or UTF-8 if needed. - Translatable strings should be modified only if really necessary. Any modification to one of them means that all the translators for all the langages will have to re-translate the new string. This also means that new strings should be chosen carefully, to avoid the need to modify them later. - - Do not concatenate strings, use QString::arg() instead. Concatenated strings are very hard (or even impossible) to translate. + - Do not concatenate strings, use @c QString::arg() instead. Concatenated strings are very hard (or even impossible) to translate. @code text << q_("Distance: ") << distance << q_("AU"); // Bad text = q_("Distance: %1AU").arg(distance); // Good @@ -177,7 +204,7 @@ // TRANSLATORS: Message displayed when an error occurs. QString errorMessage(q_("Loading failed.")); @endcode - - User-visible strings in %Qt .ui files (used for GUI windows) are marked for translation, unless the "translate" flag is unchecked. Note that these strings are actually extracted from the files generated by the .ui file compiler (uic) during compilation, and not from the .ui files themselves, so translation comments in the .ui files will be ignored. + - User-visible strings in %Qt .ui files (used for GUI windows) are marked for translation, unless the "translate" flag is unchecked. Note that these strings are actually extracted from the files generated by the .ui file compiler (@c uic) during compilation, and not from the .ui files themselves, so translation comments in the .ui files will be ignored. - When creating a .ui file with a new QWidget, %Qt Designer/Qt Creator sets the widget's @c windowTitle property to "Form", which then appears in translation templates and puzzles translators. It needs to be manually reset to an empty string. - Stellarium also supports gettext contexts for the cases when identical English strings are used in different places with different meanings and therefore need to have different translations. Contexts are short strings used to indicate the difference both to the program and the people making the translations. - In .ui files, for every property that holds a user-visible string, there's a "disambiguation" sub-property that can be used to indicate the context. It will be extracted together with the message (see above). diff -Nru stellarium-0.12.1/doc/plugIns.doxygen stellarium-0.12.4/doc/plugIns.doxygen --- stellarium-0.12.1/doc/plugIns.doxygen 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/doc/plugIns.doxygen 2013-08-04 06:20:27.000000000 +0000 @@ -52,10 +52,10 @@ A plugin can interact with the users in many ways, not limited to: - painting directly on the viewport like other StelModules (see the examples below); - - defining QActions triggered with keyboard shortcut combinations with StelGui::addGuiActions(); + - defining QActions triggered with keyboard shortcut combinations with StelGui::addGuiActions(); - buttons (StelButton) added to the bottom button bar (BottomStelBar; see the examples below); - windows (subclasses of StelDialog) that can be designed with %Qt's UI editor (see the examples and the configuration windows of the official plugins); - - custom controls displayed anywhere on the screen based on any of the classes that inherit QGraphicsItem (see the documentation of Qt's Graphics View Framework). To get a base widget to work on, use StelGui::getSkyGui(). + - custom controls displayed anywhere on the screen based on any of the classes that inherit QGraphicsItem (see the documentation of Qt's Graphics View Framework). To get a base widget to work on, use StelGui::getSkyGui(). Plugin developers - please note that classes used in plugins must inherit code from the core which is published under the GNU GPL. If you distribute a binary plugin, you must do so under the terms of the same GNU General Public License that Stellarium uses (as of August 2011, this is GNU GPL "version 2 or any later version"). No sneaky closed-source shenanigans now. diff -Nru stellarium-0.12.1/doc/scripting.doxygen stellarium-0.12.4/doc/scripting.doxygen --- stellarium-0.12.1/doc/scripting.doxygen 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/doc/scripting.doxygen 2013-08-04 06:20:27.000000000 +0000 @@ -27,7 +27,7 @@ @section intro_scripts Introduction Since version 0.10.1, Stellarium includes a scripting feature based on the -Qt Scripting Engine. +Qt Scripting Engine. This makes it possible to write small programs within Stellarium to produce presentations, set up custom configurations, and to automate repetitive tasks. Prior to version 0.10.0, Stellarium used a different scripting engine diff -Nru stellarium-0.12.1/doc/stellarium.pod.cmake stellarium-0.12.4/doc/stellarium.pod.cmake --- stellarium-0.12.1/doc/stellarium.pod.cmake 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/doc/stellarium.pod.cmake 2013-08-04 06:20:27.000000000 +0000 @@ -183,9 +183,9 @@ =head1 AUTHOR -Fabien Chéreau, Rob Spearman, Johan Meuris, Matthew Gates, +Fabien Chereau, Rob Spearman, Johan Meuris, Matthew Gates, Johannes Gajdosik, Nigel Kerr, Andras Mohari, Bogdan Marinov, -Timothy Reaves, Mike Storm, Diego Marcos, Guillaume Chéreau, +Timothy Reaves, Mike Storm, Diego Marcos, Guillaume Chereau, Alexander Wolf, Georg Zotti x14817 diff -Nru stellarium-0.12.1/landscapes/CMakeLists.txt stellarium-0.12.4/landscapes/CMakeLists.txt --- stellarium-0.12.1/landscapes/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/landscapes/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -5,4 +5,7 @@ ADD_SUBDIRECTORY( ocean ) ADD_SUBDIRECTORY( garching ) ADD_SUBDIRECTORY( mars ) +ADD_SUBDIRECTORY( jupiter ) ADD_SUBDIRECTORY( saturn ) +ADD_SUBDIRECTORY( uranus ) +ADD_SUBDIRECTORY( neptune ) \ No newline at end of file diff -Nru stellarium-0.12.1/landscapes/garching/CMakeLists.txt stellarium-0.12.4/landscapes/garching/CMakeLists.txt --- stellarium-0.12.1/landscapes/garching/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/landscapes/garching/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -4,8 +4,8 @@ # install landscape.ini INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/garching ) -# install textures -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/garching FILES_MATCHING PATTERN "*.png" ) - -# install descriptions -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/garching FILES_MATCHING PATTERN "description.*.utf8" ) +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/garching + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/garching/description.uk.utf8 stellarium-0.12.4/landscapes/garching/description.uk.utf8 --- stellarium-0.12.1/landscapes/garching/description.uk.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/garching/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,2 @@ +

    Òархінґ

    +

    Краєвид навколо центру ЄвропейÑької Південної ОбÑерваторії, Òархінґ-під-Мюнхеном, Ðімеччина. diff -Nru stellarium-0.12.1/landscapes/guereins/CMakeLists.txt stellarium-0.12.4/landscapes/guereins/CMakeLists.txt --- stellarium-0.12.1/landscapes/guereins/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/landscapes/guereins/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -4,8 +4,8 @@ # install landscape.ini INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/guereins ) -# install textures -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/guereins FILES_MATCHING PATTERN "*.png" ) - -# install descriptions -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/guereins FILES_MATCHING PATTERN "description.*.utf8" ) +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/guereins + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/guereins/description.uk.utf8 stellarium-0.12.4/landscapes/guereins/description.uk.utf8 --- stellarium-0.12.1/landscapes/guereins/description.uk.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/guereins/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,3 @@ +

    Герен

    +

    Герен — невеличке французьке Ñелище у долині річки Сона, 50 км на північ від Ліона. Ðа захід від Ñелища розташовано невиÑокі гори Божоле, у Ñких вироблÑÑŽÑ‚ÑŒ відоме вино. Це також міÑце Ð½Ð°Ñ€Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ Stellarium. :) + diff -Nru stellarium-0.12.1/landscapes/hurricane/CMakeLists.txt stellarium-0.12.4/landscapes/hurricane/CMakeLists.txt --- stellarium-0.12.1/landscapes/hurricane/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/landscapes/hurricane/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -4,8 +4,8 @@ # install landscape.ini INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/hurricane ) -# install textures -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/hurricane FILES_MATCHING PATTERN "*.png" ) - -# install descriptions -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/hurricane FILES_MATCHING PATTERN "description.*.utf8" ) +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/hurricane + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/hurricane/description.uk.utf8 stellarium-0.12.4/landscapes/hurricane/description.uk.utf8 --- stellarium-0.12.1/landscapes/hurricane/description.uk.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/hurricane/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,4 @@ +

    Гаррікейн

    +

    Оновлений краєвид Харрікейн-рідж у ОлімпійÑькому національному парку, штат Вашингтон. Південніше можна знайти кращий краєвид, але з гіршими умовами оÑвітленнÑ. + + diff -Nru stellarium-0.12.1/landscapes/jupiter/CMakeLists.txt stellarium-0.12.4/landscapes/jupiter/CMakeLists.txt --- stellarium-0.12.1/landscapes/jupiter/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/jupiter/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,11 @@ + +########### install files ############### + +# install landscape.ini +INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/jupiter ) + +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/jupiter + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/jupiter/description.en.utf8 stellarium-0.12.4/landscapes/jupiter/description.en.utf8 --- stellarium-0.12.1/landscapes/jupiter/description.en.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/jupiter/description.en.utf8 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,3 @@ +

    Jupiter

    +

    Simple Jupiter gas surface ("top of atmosphere") + diff -Nru stellarium-0.12.1/landscapes/jupiter/description.fr.utf8 stellarium-0.12.4/landscapes/jupiter/description.fr.utf8 --- stellarium-0.12.1/landscapes/jupiter/description.fr.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/jupiter/description.fr.utf8 2013-09-23 06:20:13.000000000 +0000 @@ -0,0 +1,2 @@ +

    Jupiter

    +

    La surface gazeuse de Jupiter (limite supérieure de l'atmosphère)

    \ No newline at end of file diff -Nru stellarium-0.12.1/landscapes/jupiter/description.pt_BR.utf8 stellarium-0.12.4/landscapes/jupiter/description.pt_BR.utf8 --- stellarium-0.12.1/landscapes/jupiter/description.pt_BR.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/jupiter/description.pt_BR.utf8 2013-09-13 10:51:45.000000000 +0000 @@ -0,0 +1,3 @@ +

    Júpiter

    +

    Simples superfície de gás de Júpiter (“topo da atmosferaâ€) + diff -Nru stellarium-0.12.1/landscapes/jupiter/description.ru.utf8 stellarium-0.12.4/landscapes/jupiter/description.ru.utf8 --- stellarium-0.12.1/landscapes/jupiter/description.ru.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/jupiter/description.ru.utf8 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,2 @@ +

    Юпитер

    +

    ПроÑто Ð³Ð°Ð·Ð¾Ð²Ð°Ñ Ð¿Ð¾Ð²ÐµÑ€Ñ…Ð½Ð¾ÑÑ‚ÑŒ Юпитера ("верхних Ñлоев атмоÑферы") Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/landscapes/jupiter/jupiter-256.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/landscapes/jupiter/jupiter-256.png differ diff -Nru stellarium-0.12.1/landscapes/jupiter/landscape.ini stellarium-0.12.4/landscapes/jupiter/landscape.ini --- stellarium-0.12.1/landscapes/jupiter/landscape.ini 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/jupiter/landscape.ini 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,13 @@ +[landscape] +name = Jupiter +author = Alexander Wolf +description = Simple Jupiter gas surface ("top of atmosphere") +type = spherical +maptex = jupiter-256.png + +[location] +planet = Jupiter +latitude = +8d16'27" +longitude = +16d26'18"E +altitude = 1 + diff -Nru stellarium-0.12.1/landscapes/mars/CMakeLists.txt stellarium-0.12.4/landscapes/mars/CMakeLists.txt --- stellarium-0.12.1/landscapes/mars/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/landscapes/mars/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -4,8 +4,8 @@ # install landscape.ini INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/mars ) -# install texture -INSTALL (FILES mars.png DESTINATION share/${PACKAGE}/landscapes/mars ) - -# install descriptions -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/mars FILES_MATCHING PATTERN "description.*.utf8" ) +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/mars + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/mars/description.uk.utf8 stellarium-0.12.4/landscapes/mars/description.uk.utf8 --- stellarium-0.12.1/landscapes/mars/description.uk.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/mars/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,5 @@ +

    МарÑ

    +

    Панорамна камера марÑоходу NASA «Spirit» зробити Ñотні знімків, поєднаних у цей панорамний краєвид навколо міÑÑ†Ñ Ð´Ð¾Ñліджень на пагорбі Газбанда. Знімки було зроблено протÑгом 583-586 днів міÑÑ–Ñ— (24-27 ÑÐµÑ€Ð¿Ð½Ñ 2005 року), невдовзі піÑÐ»Ñ Ñ‚Ð¾Ð³Ð¾, Ñк марÑохід доÑÑг Ð³Ñ€ÐµÐ±ÐµÐ½Ñ Ð¿Ð°Ð³Ð¾Ñ€Ð±Ð° Газбанда у кратері ГуÑєва на МарÑÑ–. + + + diff -Nru stellarium-0.12.1/landscapes/moon/CMakeLists.txt stellarium-0.12.4/landscapes/moon/CMakeLists.txt --- stellarium-0.12.1/landscapes/moon/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/landscapes/moon/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -4,8 +4,8 @@ # install landscape.ini INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/moon ) -# install texture -INSTALL (FILES apollo17.png DESTINATION share/${PACKAGE}/landscapes/moon ) - -# install descriptions -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/moon FILES_MATCHING PATTERN "description.*.utf8" ) +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/moon + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/moon/description.uk.utf8 stellarium-0.12.4/landscapes/moon/description.uk.utf8 --- stellarium-0.12.1/landscapes/moon/description.uk.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/moon/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,2 @@ +

    МіÑÑць

    +

    Фотографії виконано під Ñ‡Ð°Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¸ «Ðполлон» diff -Nru stellarium-0.12.1/landscapes/neptune/CMakeLists.txt stellarium-0.12.4/landscapes/neptune/CMakeLists.txt --- stellarium-0.12.1/landscapes/neptune/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/neptune/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,11 @@ + +########### install files ############### + +# install landscape.ini +INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/neptune ) + +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/neptune + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/neptune/description.en.utf8 stellarium-0.12.4/landscapes/neptune/description.en.utf8 --- stellarium-0.12.1/landscapes/neptune/description.en.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/neptune/description.en.utf8 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,3 @@ +

    Neptune

    +

    Simple Neptune gas surface ("top of atmosphere") + diff -Nru stellarium-0.12.1/landscapes/neptune/description.fr.utf8 stellarium-0.12.4/landscapes/neptune/description.fr.utf8 --- stellarium-0.12.1/landscapes/neptune/description.fr.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/neptune/description.fr.utf8 2013-09-23 06:20:13.000000000 +0000 @@ -0,0 +1,2 @@ +

    Neptune

    +

    La surface gazeuse de Neptune (limite supérieure de l'atmosphère)

    \ No newline at end of file diff -Nru stellarium-0.12.1/landscapes/neptune/description.pt_BR.utf8 stellarium-0.12.4/landscapes/neptune/description.pt_BR.utf8 --- stellarium-0.12.1/landscapes/neptune/description.pt_BR.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/neptune/description.pt_BR.utf8 2013-09-13 10:51:45.000000000 +0000 @@ -0,0 +1,3 @@ +

    Netuno

    +

    Simples superfície de gás de Netuno (“topo da atmosferaâ€) + diff -Nru stellarium-0.12.1/landscapes/neptune/description.ru.utf8 stellarium-0.12.4/landscapes/neptune/description.ru.utf8 --- stellarium-0.12.1/landscapes/neptune/description.ru.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/neptune/description.ru.utf8 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,2 @@ +

    Ðептун

    +

    ПроÑто Ð³Ð°Ð·Ð¾Ð²Ð°Ñ Ð¿Ð¾Ð²ÐµÑ€Ñ…Ð½Ð¾ÑÑ‚ÑŒ Ðептуна ("верхних Ñлоев атмоÑферы") diff -Nru stellarium-0.12.1/landscapes/neptune/landscape.ini stellarium-0.12.4/landscapes/neptune/landscape.ini --- stellarium-0.12.1/landscapes/neptune/landscape.ini 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/neptune/landscape.ini 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,13 @@ +[landscape] +name = Neptune +author = Alexander Wolf +description = Simple Neptune gas surface ("top of atmosphere") +type = spherical +maptex = neptune-256.png + +[location] +planet = Neptune +latitude = +8d16'27" +longitude = +16d26'18"E +altitude = 1 + Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/landscapes/neptune/neptune-256.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/landscapes/neptune/neptune-256.png differ diff -Nru stellarium-0.12.1/landscapes/ocean/CMakeLists.txt stellarium-0.12.4/landscapes/ocean/CMakeLists.txt --- stellarium-0.12.1/landscapes/ocean/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/landscapes/ocean/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -4,8 +4,8 @@ # install landscape.ini INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/ocean ) -# install textures -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/ocean FILES_MATCHING PATTERN "*.png" ) - -# install descriptions -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/ocean FILES_MATCHING PATTERN "description.*.utf8" ) +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/ocean + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/ocean/description.uk.utf8 stellarium-0.12.4/landscapes/ocean/description.uk.utf8 --- stellarium-0.12.1/landscapes/ocean/description.uk.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/ocean/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,2 @@ +

    Океан

    +

    Створено за допомогою програми Terragen. diff -Nru stellarium-0.12.1/landscapes/saturn/CMakeLists.txt stellarium-0.12.4/landscapes/saturn/CMakeLists.txt --- stellarium-0.12.1/landscapes/saturn/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/landscapes/saturn/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -4,8 +4,8 @@ # install landscape.ini INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/saturn ) -# install texture -INSTALL (FILES saturn-256.png DESTINATION share/${PACKAGE}/landscapes/saturn ) - -# install descriptions -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/saturn FILES_MATCHING PATTERN "description.*.utf8" ) +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/saturn + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/saturn/description.fr.utf8 stellarium-0.12.4/landscapes/saturn/description.fr.utf8 --- stellarium-0.12.1/landscapes/saturn/description.fr.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/landscapes/saturn/description.fr.utf8 2013-09-23 06:20:13.000000000 +0000 @@ -1,2 +1,2 @@

    Saturn

    -

    La surface gazeuse de Saturne (« sommet de l'atmosphère ») \ No newline at end of file +

    La surface gazeuse de Saturne (limite supérieure de l'atmosphère)

    \ No newline at end of file diff -Nru stellarium-0.12.1/landscapes/saturn/description.uk.utf8 stellarium-0.12.4/landscapes/saturn/description.uk.utf8 --- stellarium-0.12.1/landscapes/saturn/description.uk.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/saturn/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,3 @@ +

    Сатурн

    +

    ПроÑта газова Ð¿Ð¾Ð²ÐµÑ€Ñ…Ð½Ñ Ð¡Ð°Ñ‚ÑƒÑ€Ð½Ð° («верхній шар атмоÑфери») + diff -Nru stellarium-0.12.1/landscapes/trees/CMakeLists.txt stellarium-0.12.4/landscapes/trees/CMakeLists.txt --- stellarium-0.12.1/landscapes/trees/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/landscapes/trees/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -4,8 +4,8 @@ # install landscape.ini INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/trees ) -# install texture -INSTALL (FILES trees_512.png DESTINATION share/${PACKAGE}/landscapes/trees ) - -# install descriptions -INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/trees FILES_MATCHING PATTERN "description.*.utf8" ) +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/trees + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/trees/description.uk.utf8 stellarium-0.12.4/landscapes/trees/description.uk.utf8 --- stellarium-0.12.1/landscapes/trees/description.uk.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/trees/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,2 @@ +

    Дерева

    +

    Дерева у парку Òрінлейк, Сіетл diff -Nru stellarium-0.12.1/landscapes/uranus/CMakeLists.txt stellarium-0.12.4/landscapes/uranus/CMakeLists.txt --- stellarium-0.12.1/landscapes/uranus/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/uranus/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,11 @@ + +########### install files ############### + +# install landscape.ini +INSTALL (FILES landscape.ini DESTINATION share/${PACKAGE}/landscapes/uranus ) + +# install textures and descriptions +INSTALL (DIRECTORY ./ DESTINATION share/${PACKAGE}/landscapes/uranus + FILES_MATCHING PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/landscapes/uranus/description.en.utf8 stellarium-0.12.4/landscapes/uranus/description.en.utf8 --- stellarium-0.12.1/landscapes/uranus/description.en.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/uranus/description.en.utf8 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,3 @@ +

    Uranus

    +

    Simple Uranus gas surface ("top of atmosphere") + diff -Nru stellarium-0.12.1/landscapes/uranus/description.fr.utf8 stellarium-0.12.4/landscapes/uranus/description.fr.utf8 --- stellarium-0.12.1/landscapes/uranus/description.fr.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/uranus/description.fr.utf8 2013-09-23 06:20:13.000000000 +0000 @@ -0,0 +1,2 @@ +

    Uranus

    +

    La surface gazeuse d'Uranus (limite supérieure de l'atmosphère)

    diff -Nru stellarium-0.12.1/landscapes/uranus/description.pt_BR.utf8 stellarium-0.12.4/landscapes/uranus/description.pt_BR.utf8 --- stellarium-0.12.1/landscapes/uranus/description.pt_BR.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/uranus/description.pt_BR.utf8 2013-09-13 10:51:45.000000000 +0000 @@ -0,0 +1,3 @@ +

    Urano

    +

    Simples superfície de gás de Urano (“topo da atmosferaâ€) + diff -Nru stellarium-0.12.1/landscapes/uranus/description.ru.utf8 stellarium-0.12.4/landscapes/uranus/description.ru.utf8 --- stellarium-0.12.1/landscapes/uranus/description.ru.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/uranus/description.ru.utf8 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,2 @@ +

    Уран

    +

    ПроÑто Ð³Ð°Ð·Ð¾Ð²Ð°Ñ Ð¿Ð¾Ð²ÐµÑ€Ñ…Ð½Ð¾ÑÑ‚ÑŒ Урана ("верхних Ñлоев атмоÑферы") diff -Nru stellarium-0.12.1/landscapes/uranus/landscape.ini stellarium-0.12.4/landscapes/uranus/landscape.ini --- stellarium-0.12.1/landscapes/uranus/landscape.ini 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/landscapes/uranus/landscape.ini 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,13 @@ +[landscape] +name = Uranus +author = Alexander Wolf +description = Simple Uranus gas surface ("top of atmosphere") +type = spherical +maptex = uranus-256.png + +[location] +planet = Uranus +latitude = +8d16'27" +longitude = +16d26'18"E +altitude = 1 + Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/landscapes/uranus/uranus-256.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/landscapes/uranus/uranus-256.png differ diff -Nru stellarium-0.12.1/nebulae/default/CMakeLists.txt stellarium-0.12.4/nebulae/default/CMakeLists.txt --- stellarium-0.12.1/nebulae/default/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/nebulae/default/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -9,4 +9,5 @@ # install textures of DSO INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/nebulae/default - FILES_MATCHING PATTERN "*.png" ) \ No newline at end of file + FILES_MATCHING PATTERN "*.png" + PATTERN "CMakeFiles" EXCLUDE ) \ No newline at end of file diff -Nru stellarium-0.12.1/nebulae/default/ngc2000names.dat stellarium-0.12.4/nebulae/default/ngc2000names.dat --- stellarium-0.12.1/nebulae/default/ngc2000names.dat 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/nebulae/default/ngc2000names.dat 2013-09-07 15:50:48.000000000 +0000 @@ -398,3 +398,15 @@ _("Needle galaxy") 4565 _("Pearl cluster") 3766 _("S Normae cluster") 6087 +_("Spiral cluster") 1039 +_("Starfish cluster") 1912 +_("Surfboard galaxy") 3556 +_("Vacuum Cleaner galaxy") 3992 +_("Blowdryer galaxy") 4321 +_("Coddington's nebula") I2574 +_("ε Ori nebula") 1990 +_("Fath 703") 5892 +_("Fleming's Triangular nebula") 6979 +_("Graff's cluster") I4756 +_("Lost galaxy") 4526 +_("White Eyed Pea") I4593 diff -Nru stellarium-0.12.1/plugins/AngleMeasure/src/AngleMeasure.cpp stellarium-0.12.4/plugins/AngleMeasure/src/AngleMeasure.cpp --- stellarium-0.12.1/plugins/AngleMeasure/src/AngleMeasure.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/AngleMeasure/src/AngleMeasure.cpp 2013-09-23 06:20:13.000000000 +0000 @@ -80,7 +80,7 @@ if (!conf->contains("AngleMeasure/angle_format_dms")) { // Create the "AngleMeasure" section and set default parameters - conf->setValue("AngleMeasure/angle_format_dms", true); + conf->setValue("AngleMeasure/angle_format_dms", false); conf->setValue("AngleMeasure/text_color", "0,0.5,1"); conf->setValue("AngleMeasure/line_color", "0,0.5,1"); } diff -Nru stellarium-0.12.1/plugins/CMakeLists.txt stellarium-0.12.4/plugins/CMakeLists.txt --- stellarium-0.12.1/plugins/CMakeLists.txt 2013-04-16 14:07:01.000000000 +0000 +++ stellarium-0.12.4/plugins/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -52,6 +52,9 @@ IF (USE_PLUGIN_SUPERNOVAE) ADD_SUBDIRECTORY( Supernovae ) ENDIF() +IF (USE_PLUGIN_NOVAE) + ADD_SUBDIRECTORY( Novae ) +ENDIF() IF (USE_PLUGIN_QUASARS) ADD_SUBDIRECTORY( Quasars ) ENDIF() diff -Nru stellarium-0.12.1/plugins/Exoplanets/CMakeLists.txt stellarium-0.12.4/plugins/Exoplanets/CMakeLists.txt --- stellarium-0.12.1/plugins/Exoplanets/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -1,6 +1,6 @@ SET(EXOPLANETS_PLUGIN_MAJOR "0") SET(EXOPLANETS_PLUGIN_MINOR "1") -SET(EXOPLANETS_PLUGIN_PATCH "5") +SET(EXOPLANETS_PLUGIN_PATCH "11") SET(EXOPLANETS_VERSION "${EXOPLANETS_PLUGIN_MAJOR}.${EXOPLANETS_PLUGIN_MINOR}.${EXOPLANETS_PLUGIN_PATCH}") IF(APPLE) diff -Nru stellarium-0.12.1/plugins/Exoplanets/Doxyfile stellarium-0.12.4/plugins/Exoplanets/Doxyfile --- stellarium-0.12.1/plugins/Exoplanets/Doxyfile 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/Doxyfile 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,1800 @@ +# Doxyfile 1.8.0 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" "). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or sequence of words) that should +# identify the project. Note that if you do not use Doxywizard you need +# to put quotes around the project name if it contains spaces. + +PROJECT_NAME = "Stellarium Exoplanets Plug-in" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer +# a quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is +# included in the documentation. The maximum height of the logo should not +# exceed 55 pixels and the maximum width should not exceed 200 pixels. +# Doxygen will copy the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful if your file system +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = YES + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding +# "class=itcl::class" will allow you to use the command class in the +# itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this +# tag. The format is ext=language, where ext is a file extension, and language +# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, +# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make +# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C +# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions +# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all +# comments according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you +# can mix doxygen, HTML, and XML commands with Markdown formatting. +# Disable only in case of backward compatibilities issues. + +MARKDOWN_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also makes the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and +# unions are shown inside the group in which they are included (e.g. using +# @ingroup) instead of on a separate page (for HTML and Man pages) or +# section (for LaTeX and RTF). + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and +# unions with only public data fields will be shown inline in the documentation +# of the scope in which they are defined (i.e. file, namespace, or group +# documentation), provided this scope is documented. If set to NO (the default), +# structs, classes, and unions are shown on a separate page (for HTML and Man +# pages) or section (for LaTeX and RTF). + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penalty. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will roughly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +SYMBOL_CACHE_SIZE = 0 + +# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be +# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given +# their name and scope. Since this can be an expensive process and often the +# same symbol appear multiple times in the code, doxygen keeps a cache of +# pre-resolved symbols. If the cache is too small doxygen will become slower. +# If the cache is too large, memory is wasted. The cache size is given by this +# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespaces are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen +# will list include files with double quotes in the documentation +# rather than with sharp brackets. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen +# will sort the (brief and detailed) documentation of class members so that +# constructors and destructors are listed first. If set to NO (the default) +# the constructors will appear in the respective orders defined by +# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to +# do proper type resolution of all parameters of a function it will reject a +# match between the prototype and the implementation of a member function even +# if there is only one candidate or it is obvious which candidate to choose +# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen +# will still accept a match between prototype and implementation in such cases. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or macro consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and macros in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. The create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. +# You can optionally specify a file name after the option, if omitted +# DoxygenLayout.xml will be used as the name of the layout file. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files +# containing the references data. This must be a list of .bib files. The +# .bib extension is automatically appended if omitted. Using this command +# requires the bibtex tool to be installed. See also +# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style +# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this +# feature you need bibtex and perl available in the search path. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# The WARN_NO_PARAMDOC option can be enabled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = ./src ./src/gui + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh +# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py +# *.f90 *.f *.for *.vhd *.vhdl + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty or if +# non of the patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) +# and it is also possible to disable source filtering for a specific pattern +# using *.ext= (so without naming a filter). This option only has effect when +# FILTER_SOURCE_FILES is enabled. + +FILTER_SOURCE_PATTERNS = + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. Note that when using a custom header you are responsible +# for the proper inclusion of any scripts and style sheets that doxygen +# needs, which is dependent on the configuration options used. +# It is advised to generate a default header using "doxygen -w html +# header.html footer.html stylesheet.css YourConfigFile" and then modify +# that header. Note that the header is subject to change so you typically +# have to redo this when upgrading to a newer version of doxygen or when +# changing the value of configuration settings such as GENERATE_TREEVIEW! + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# style sheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that +# the files will be copied as-is; there are no commands or markers available. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. +# Doxygen will adjust the colors in the style sheet and background images +# according to this color. Hue is specified as an angle on a colorwheel, +# see http://en.wikipedia.org/wiki/Hue for more information. +# For instance the value 0 represents red, 60 is yellow, 120 is green, +# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. +# The allowed range is 0 to 359. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of +# the colors in the HTML output. For a value of 0 the output will use +# grayscales only. A value of 255 will produce the most vivid colors. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to +# the luminance component of the colors in the HTML output. Values below +# 100 gradually make the output lighter, whereas values above 100 make +# the output darker. The value divided by 100 is the actual gamma applied, +# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, +# and 100 does not change the gamma. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting +# this to NO can help when comparing the output of multiple runs. + +HTML_TIMESTAMP = YES + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated +# that can be used as input for Qt's qhelpgenerator to generate a +# Qt Compressed Help (.qch) of the generated HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to +# add. For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see +# +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's +# filter section matches. +# +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files +# will be generated, which together with the HTML files, form an Eclipse help +# plugin. To install this plugin and make it available under the help contents +# menu in Eclipse, the contents of the directory containing the HTML and XML +# files needs to be copied into the plugins directory of eclipse. The name of +# the directory within the plugins directory should be the same as +# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before +# the help appears. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have +# this name. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) +# at top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. Since the tabs have the same information as the +# navigation tree you can set this option to NO if you already set +# GENERATE_TREEVIEW to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. +# Since the tree basically has the same information as the tab index you +# could consider to set DISABLE_INDEX to NO when enabling this option. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values +# (range [0,1..20]) that doxygen will group on one line in the generated HTML +# documentation. Note that a value of 0 will completely suppress the enum +# values from appearing in the overview section. + +ENUM_VALUES_PER_LINE = 4 + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open +# links to external symbols imported via tag files in a separate window. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are +# not supported properly for IE 6.0, but are supported on all modern browsers. +# Note that when changing this option you need to delete any form_*.png files +# in the HTML output before the changes have effect. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax +# (see http://www.mathjax.org) which uses client side Javascript for the +# rendering instead of using prerendered bitmaps. Use this if you do not +# have LaTeX installed or if you want to formulas look prettier in the HTML +# output. When enabled you may also need to install MathJax separately and +# configure the path to it using the MATHJAX_RELPATH option. + +USE_MATHJAX = NO + +# When MathJax is enabled you need to specify the location relative to the +# HTML output directory using the MATHJAX_RELPATH option. The destination +# directory should contain the MathJax.js script. For instance, if the mathjax +# directory is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to +# the MathJax Content Delivery Network so you can quickly see the result without +# installing MathJax. +# However, it is strongly recommended to install a local +# copy of MathJax from http://www.mathjax.org before deployment. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension +# names that should be enabled during MathJax rendering. + +MATHJAX_EXTENSIONS = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box +# for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using +# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets +# (GENERATE_DOCSET) there is already a search function so this one should +# typically be disabled. For large projects the javascript based search engine +# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a PHP enabled web server instead of at the web client +# using Javascript. Doxygen will generate the search PHP script and index +# file to put on the web server. The advantage of the server +# based approach is that it scales better to large projects and allows +# full text search. The disadvantages are that it is more difficult to setup +# and does not have live searching capabilities. + +SERVER_BASED_SEARCH = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. +# Note that when enabling USE_PDFLATEX this option is only used for +# generating bitmaps for formulas in the HTML output, but not in the +# Makefile that is written to the output directory. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for +# the generated latex document. The footer should contain everything after +# the last chapter. If it is left blank doxygen will generate a +# standard footer. Notice: only use this tag if you know what you are doing! + +LATEX_FOOTER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include +# source code with syntax highlighting in the LaTeX output. +# Note that which sources are shown also depends on other settings +# such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See +# http://en.wikipedia.org/wiki/BibTeX for more info. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load style sheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# pointed to by INCLUDE_PATH will be searched when a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition that +# overrules the definition found in the source code. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all references to function-like macros +# that are alone on a line, have an all uppercase name, and do not end with a +# semicolon, because these will confuse the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. For each +# tag file the location of the external documentation should be added. The +# format of a tag file without this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths +# or URLs. Note that each tag file must have a unique name (where the name does +# NOT include the path). If a tag file is not located in the directory in which +# doxygen is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option also works with HAVE_DOT disabled, but it is recommended to +# install and use dot, since it yields more powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is +# allowed to run in parallel. When set to 0 (the default) doxygen will +# base this on the number of processors available in the system. You can set it +# explicitly to a value larger than 0 to get control over the balance +# between CPU load and processing speed. + +DOT_NUM_THREADS = 0 + +# By default doxygen will use the Helvetica font for all dot files that +# doxygen generates. When you want a differently looking font you can specify +# the font name using DOT_FONTNAME. You need to make sure dot is able to find +# the font, which can be done by putting it in a standard location or by setting +# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. + +DOT_FONTNAME = Helvetica + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the Helvetica font. +# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to +# set the path where dot can find it. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside +# the class node. If there are many fields or methods and many nodes the +# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS +# threshold limits the number of items for each type to make the size more +# managable. Set this to 0 for no limit. Note that the threshold may be +# exceeded by 50% before the limit is enforced. + +UML_LIMIT_NUM_FIELDS = 10 + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will generate a graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are svg, png, jpg, or gif. +# If left blank png will be used. If you choose svg you need to set +# HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible in IE 9+ (other browsers do not have this requirement). + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# Note that this requires a modern browser other than Internet Explorer. +# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you +# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible. Older versions of IE do not have SVG support. + +INTERACTIVE_SVG = NO + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the +# \mscfile command). + +MSCFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff -Nru stellarium-0.12.1/plugins/Exoplanets/resources/exoplanets.json stellarium-0.12.4/plugins/Exoplanets/resources/exoplanets.json --- stellarium-0.12.1/plugins/Exoplanets/resources/exoplanets.json 2013-04-14 08:17:17.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/resources/exoplanets.json 2013-09-13 10:51:45.000000000 +0000 @@ -201,6 +201,40 @@ "RA": "10h23m28.0s", "DE": "+00d54m08s" }, + "2M 0103(AB)": + { + "exoplanets": + [ + { + "mass": 13.0, + "semiAxis": 84.0, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 47.2, + "stype": "M", + "smass": 0.4, + "RA": "01h03m36.0s", + "DE": "-55d15m56s" + }, + "2M 0122-2439": + { + "exoplanets": + [ + { + "mass": 13.0, + "semiAxis": 52.0, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 36.0, + "stype": "M3.5", + "smass": 0.4, + "RA": "01h22m51.0s", + "DE": "-24d36m51s" + }, "2M 044144": { "exoplanets": @@ -673,19 +707,22 @@ "exoplanets": [ { - "mass": 2.9, - "period": 182.0, - "semiAxis": 0.3, + "mass": 3.2, + "period": 181.4, + "semiAxis": 0.7, + "eccentricity": 0.027, "angleDistance": 0.006593, "discovered": 2003, "planetName": "b" } ], - "distance": 45.5, + "distance": 45.9, "stype": "K0 III", - "smetal": -0.085, + "smass": 1.4, + "smetal": -0.03, "Vmag": 4.21, - "effectiveTemp": 4580.0, + "sradius": 11.0, + "effectiveTemp": 4665.0, "RA": "23h15m53.0s", "DE": "-09d05m15s" }, @@ -731,6 +768,29 @@ "RA": "02h42m50.0s", "DE": "+49d35m13s" }, + "BD+15 2940": + { + "exoplanets": + [ + { + "mass": 1.11, + "period": 137.48, + "semiAxis": 0.539, + "eccentricity": 0.26, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 585.0, + "stype": "K0", + "smass": 1.1, + "smetal": 0.28, + "Vmag": 9.19, + "sradius": 14.7, + "effectiveTemp": 4796.0, + "RA": "16h00m23.0s", + "DE": "+15d32m49s" + }, "BD+20 274": { "exoplanets": @@ -1029,8 +1089,8 @@ "exoplanets": [ { - "mass": 2.49, - "radius": 1.39, + "mass": 2.33, + "radius": 1.43, "period": 2.994325, "semiAxis": 0.04351, "eccentricity": 0.0, @@ -1159,7 +1219,7 @@ "exoplanets": [ { - "mass": 2.45, + "mass": 2.43, "radius": 1.02, "period": 3.768125, "semiAxis": 0.0461, @@ -1206,14 +1266,63 @@ "RA": "19h27m07.0s", "DE": "+01d23m02s" }, + "CoRoT-25": + { + "exoplanets": + [ + { + "mass": 0.27, + "radius": 1.08, + "period": 4.86069, + "semiAxis": 0.0578, + "inclination": 84.5, + "discovered": 2012, + "planetName": "b" + } + ], + "distance": 1000.0, + "stype": "G0V", + "smass": 1.09, + "smetal": -0.01, + "Vmag": 15.0, + "sradius": 1.19, + "effectiveTemp": 6040.0, + "RA": "18h42m31.0s", + "DE": "+06d30m50s" + }, + "CoRoT-26": + { + "exoplanets": + [ + { + "mass": 0.52, + "radius": 1.26, + "period": 4.20474, + "semiAxis": 0.0526, + "eccentricity": 0.0, + "inclination": 86.8, + "discovered": 2012, + "planetName": "a" + } + ], + "distance": 1670.0, + "stype": "G8IV", + "smass": 1.09, + "smetal": 0.01, + "Vmag": 15.76, + "sradius": 1.79, + "effectiveTemp": 5590.0, + "RA": "18h39m00.0s", + "DE": "+06d58m12s" + }, "CoRoT-3": { "exoplanets": [ { - "mass": 21.66, + "mass": 21.77, "radius": 1.01, - "period": 4.2568, + "period": 4.2567994, "semiAxis": 0.057, "eccentricity": 0.0, "inclination": 85.9, @@ -1262,7 +1371,7 @@ [ { "mass": 0.467, - "radius": 1.388, + "radius": 1.33, "period": 4.0378962, "semiAxis": 0.04947, "eccentricity": 0.09, @@ -1311,8 +1420,8 @@ "exoplanets": [ { - "mass": 0.0151, - "radius": 0.15, + "mass": 0.023, + "radius": 0.141, "period": 0.853585, "semiAxis": 0.0172, "eccentricity": 0.0, @@ -1373,8 +1482,8 @@ [ { "mass": 0.84, - "radius": 1.05, - "period": 95.2738, + "radius": 0.94, + "period": 95.273804, "semiAxis": 0.407, "eccentricity": 0.11, "inclination": 89.9, @@ -1577,6 +1686,28 @@ "RA": "08h40m59.0s", "DE": "-23d27m23s" }, + "GJ 328": + { + "exoplanets": + [ + { + "mass": 2.3, + "period": 4100.0, + "semiAxis": 4.5, + "eccentricity": 0.37, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 19.8, + "stype": "K7", + "smass": 0.69, + "smetal": 0.0, + "Vmag": 9.98, + "effectiveTemp": 3900.0, + "RA": "08h55m08.0s", + "DE": "+01d32m56s" + }, "GJ 3470": { "exoplanets": @@ -1682,6 +1813,26 @@ "RA": "11h42m11.0s", "DE": "+26d42m23s" }, + "GJ 504": + { + "exoplanets": + [ + { + "mass": 4.0, + "semiAxis": 43.5, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 17.56, + "stype": "GOV", + "smass": 1.22, + "smetal": 0.28, + "Vmag": 5.22, + "effectiveTemp": 6234.0, + "RA": "13h16m47.0s", + "DE": "+09d25m27s" + }, "GJ 667C": { "exoplanets": @@ -1703,6 +1854,39 @@ "angleDistance": 0.018289, "discovered": 2011, "planetName": "c" + }, + { + "mass": 0.0218, + "period": 106.4, + "semiAxis": 0.3035, + "eccentricity": 0.68, + "angleDistance": 0.044371, + "discovered": 2012, + "planetName": "d" + }, + { + "mass": 0.0085, + "period": 62.24, + "semiAxis": 0.213, + "eccentricity": 0.02, + "discovered": 2013, + "planetName": "e" + }, + { + "mass": 0.0085, + "period": 39.026, + "semiAxis": 0.156, + "eccentricity": 0.03, + "discovered": 2013, + "planetName": "f" + }, + { + "mass": 0.0145, + "period": 256.2, + "semiAxis": 0.549, + "eccentricity": 0.08, + "discovered": 2013, + "planetName": "g" } ], "distance": 6.84, @@ -1737,6 +1921,52 @@ "RA": "17h28m40.0s", "DE": "-46d53m43s" }, + "GJ 676A": + { + "exoplanets": + [ + { + "mass": 4.95, + "period": 1050.3, + "semiAxis": 1.8, + "eccentricity": 0.328, + "angleDistance": 0.109422, + "discovered": 2009, + "planetName": "b" + }, + { + "mass": 3.0, + "period": 4400.0, + "semiAxis": 5.2, + "eccentricity": 0.2, + "discovered": 2012, + "planetName": "c" + }, + { + "mass": 0.014, + "period": 3.6, + "semiAxis": 0.0413, + "eccentricity": 0.15, + "discovered": 2012, + "planetName": "d" + }, + { + "mass": 0.036, + "period": 35.37, + "semiAxis": 0.187, + "eccentricity": 0.24, + "discovered": 2012, + "planetName": "e" + } + ], + "distance": 16.45, + "stype": "M0V", + "smass": 0.71, + "smetal": 0.23, + "Vmag": 9.59, + "RA": "17h30m11.0s", + "DE": "-51d38m13s" + }, "GJ 832": { "exoplanets": @@ -1758,6 +1988,36 @@ "RA": "21h33m34.0s", "DE": "-49d00m32s" }, + "GJ 849": + { + "exoplanets": + [ + { + "mass": 0.9, + "period": 1914.0, + "semiAxis": 2.35, + "eccentricity": 0.012, + "angleDistance": 0.267045, + "discovered": 2006, + "planetName": "b" + }, + { + "mass": 0.77, + "period": 7049.0, + "eccentricity": 0.218, + "discovered": 2013, + "planetName": "c" + } + ], + "distance": 9.1, + "stype": "M3.5V", + "smass": 0.49, + "smetal": 0.22, + "Vmag": 10.37, + "sradius": 0.52, + "RA": "22h09m40.0s", + "DE": "-04d38m27s" + }, "GQ Lup": { "exoplanets": @@ -1796,46 +2056,33 @@ "RA": "16h21m55.0s", "DE": "-20d43m07s" }, - "Gj 849": - { - "exoplanets": - [ - { - "mass": 0.99, - "period": 1852.0, - "semiAxis": 2.35, - "eccentricity": 0.04, - "angleDistance": 0.267045, - "discovered": 2006, - "planetName": "b" - } - ], - "distance": 8.8, - "stype": "M3.5", - "smass": 0.49, - "smetal": 0.16, - "Vmag": 10.42, - "sradius": 0.52, - "RA": "22h09m40.0s", - "DE": "-04d38m27s" - }, "Gl 163": { "exoplanets": [ { - "mass": 0.354, - "period": 0.63, - "semiAxis": 0.06067, + "mass": 0.0334, + "period": 8.633, + "semiAxis": 0.06069, + "eccentricity": 0.0106, "discovered": 2012, "planetName": "b" }, { - "mass": 0.226, - "period": 25.631, - "semiAxis": 0.12536, + "mass": 0.02285, + "period": 25.645, + "semiAxis": 0.1254, + "eccentricity": 0.094, "discovered": 2012, "planetName": "c" + }, + { + "mass": 0.06945, + "period": 600.895, + "semiAxis": 1.02689, + "eccentricity": 0.399, + "discovered": 2013, + "planetName": "d" } ], "distance": 15.0, @@ -1895,7 +2142,7 @@ "mass": 0.019, "period": 66.64, "semiAxis": 0.22, - "eccentricity": 0.25, + "eccentricity": 0.205, "angleDistance": 0.035427, "discovered": 2007, "planetName": "d" @@ -1932,6 +2179,14 @@ "angleDistance": 0.109768, "discovered": 2009, "planetName": "b" + }, + { + "mass": 0.03, + "period": 4.4762, + "semiAxis": 0.043, + "eccentricity": 0.2, + "discovered": 2013, + "planetName": "c" } ], "distance": 10.34, @@ -2513,7 +2768,7 @@ "RA": "03h13m45.0s", "DE": "+25d11m51s" }, - "HAT-P-27-WASP-4": + "HAT-P-27-WASP-40": { "exoplanets": [ @@ -2617,7 +2872,7 @@ "RA": "13h44m23.0s", "DE": "+48d01m43s" }, - "HAT-P-30-WASP-5": + "HAT-P-30-WASP-51": { "exoplanets": [ @@ -2915,44 +3170,178 @@ "RA": "19h49m17.0s", "DE": "+04d40m21s" }, - "HAT-P-5": + "HAT-P-42": { "exoplanets": [ { - "mass": 1.06, - "radius": 1.252, - "period": 2.788491, - "semiAxis": 0.04079, + "mass": 0.975, + "radius": 1.277, + "period": 4.641876, + "semiAxis": 0.0575, "eccentricity": 0.0, - "inclination": 86.75, - "angleDistance": 0.00012, - "discovered": 2007, + "inclination": 85.9, + "discovered": 2012, "planetName": "b" } ], - "distance": 340.0, - "smass": 1.163, - "smetal": 0.24, - "Vmag": 12.0, - "sradius": 1.137, - "effectiveTemp": 5960.0, - "RA": "18h17m37.0s", - "DE": "+36d37m18s" + "distance": 447.0, + "smass": 1.179, + "smetal": 0.27, + "Vmag": 12.17, + "sradius": 1.528, + "effectiveTemp": 5743.0, + "RA": "09h01m23.0s", + "DE": "+06d05m50s" }, - "HAT-P-6": + "HAT-P-43": { "exoplanets": [ { - "mass": 1.057, - "radius": 1.33, - "period": 3.853003, - "semiAxis": 0.05235, + "mass": 0.66, + "radius": 1.283, + "period": 3.332688, + "semiAxis": 0.0443, "eccentricity": 0.0, - "inclination": 85.51, - "angleDistance": 0.000262, - "discovered": 2007, + "inclination": 88.7, + "discovered": 2012, + "planetName": "b" + } + ], + "distance": 543.0, + "smass": 1.048, + "smetal": 0.23, + "Vmag": 13.36, + "sradius": 1.104, + "effectiveTemp": 5645.0, + "RA": "08h35m42.0s", + "DE": "+10d12m24s" + }, + "HAT-P-44": + { + "exoplanets": + [ + { + "mass": 0.392, + "radius": 1.28, + "period": 4.301217, + "semiAxis": 0.0507, + "eccentricity": 0.072, + "inclination": 89.0, + "discovered": 2013, + "planetName": "b" + }, + { + "mass": 1.6, + "period": 219.9, + "semiAxis": 0.699, + "discovered": 2013, + "planetName": "c" + } + ], + "distance": 374.0, + "smass": 0.939, + "smetal": 0.33, + "Vmag": 13.212, + "sradius": 0.979, + "effectiveTemp": 5295.0, + "RA": "14h12m35.0s", + "DE": "+47d00m53s" + }, + "HAT-P-45": + { + "exoplanets": + [ + { + "mass": 0.892, + "radius": 1.426, + "period": 3.128992, + "semiAxis": 0.0452, + "eccentricity": 0.049, + "inclination": 87.8, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 305.0, + "smass": 1.259, + "smetal": 0.07, + "Vmag": 12.794, + "sradius": 1.319, + "effectiveTemp": 6330.0, + "RA": "18h17m30.0s", + "DE": "-03d22m52s" + }, + "HAT-P-46": + { + "exoplanets": + [ + { + "mass": 0.493, + "radius": 1.284, + "period": 4.463129, + "semiAxis": 0.0577, + "eccentricity": 0.123, + "inclination": 85.5, + "discovered": 2013, + "planetName": "b" + }, + { + "mass": 2.0, + "period": 77.7, + "semiAxis": 0.387, + "discovered": 2013, + "planetName": "c" + } + ], + "distance": 296.0, + "smass": 1.284, + "smetal": 0.3, + "Vmag": 11.936, + "sradius": 1.396, + "effectiveTemp": 6120.0, + "RA": "18h01m47.0s", + "DE": "-02d58m15s" + }, + "HAT-P-5": + { + "exoplanets": + [ + { + "mass": 1.06, + "radius": 1.252, + "period": 2.788491, + "semiAxis": 0.04079, + "eccentricity": 0.0, + "inclination": 86.75, + "angleDistance": 0.00012, + "discovered": 2007, + "planetName": "b" + } + ], + "distance": 340.0, + "smass": 1.163, + "smetal": 0.24, + "Vmag": 12.0, + "sradius": 1.137, + "effectiveTemp": 5960.0, + "RA": "18h17m37.0s", + "DE": "+36d37m18s" + }, + "HAT-P-6": + { + "exoplanets": + [ + { + "mass": 1.057, + "radius": 1.33, + "period": 3.853003, + "semiAxis": 0.05235, + "eccentricity": 0.0, + "inclination": 85.51, + "angleDistance": 0.000262, + "discovered": 2007, "planetName": "b" } ], @@ -3066,6 +3455,54 @@ "RA": "11h42m06.0s", "DE": "-23d21m17s" }, + "HATS-2": + { + "exoplanets": + [ + { + "mass": 1.345, + "radius": 1.168, + "period": 1.354133, + "semiAxis": 0.023, + "eccentricity": 0.0, + "inclination": 87.2, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 360.0, + "stype": "K", + "smass": 0.882, + "smetal": 0.15, + "Vmag": 13.562, + "sradius": 0.898, + "effectiveTemp": 5227.0, + "RA": "11h46m57.4s", + "DE": "-22d33m47s" + }, + "HATS-3": + { + "exoplanets": + [ + { + "mass": 1.071, + "radius": 1.381, + "period": 3.547851, + "semiAxis": 0.0485, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 453.0, + "stype": "F", + "smass": 1.209, + "smetal": -0.157, + "Vmag": 11.44, + "sradius": 1.404, + "effectiveTemp": 6351.0, + "RA": "20h49m50.0s", + "DE": "-24d25m44s" + }, "HD 100655": { "exoplanets": @@ -4025,6 +4462,14 @@ "angleDistance": 0.004632, "discovered": 2004, "planetName": "b" + }, + { + "mass": 0.2, + "period": 318.0, + "semiAxis": 0.93, + "eccentricity": 0.0, + "discovered": 2013, + "planetName": "c" } ], "distance": 38.0, @@ -4117,6 +4562,29 @@ "RA": "01h54m56.0s", "DE": "-67d38m50s" }, + "HD 120084": + { + "exoplanets": + [ + { + "mass": 4.5, + "period": 2082.0, + "semiAxis": 4.3, + "eccentricity": 0.66, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 97.7, + "stype": "G7 III", + "smass": 2.39, + "smetal": 0.09, + "Vmag": 5.91, + "sradius": 9.12, + "effectiveTemp": 4892.0, + "RA": "13h42m52.0s", + "DE": "+78d03m42s" + }, "HD 121504": { "exoplanets": @@ -8001,6 +8469,28 @@ "RA": "19h32m04.0s", "DE": "+16d28m27s" }, + "HD 233604": + { + "exoplanets": + [ + { + "mass": 6.575, + "period": 192.0, + "semiAxis": 0.747, + "eccentricity": 0.05, + "discovered": 2013, + "planetName": "b" + } + ], + "stype": "K5", + "smass": 1.5, + "smetal": -0.36, + "Vmag": 10.41, + "sradius": 10.9, + "effectiveTemp": 4791.0, + "RA": "09h09m49.0s", + "DE": "+53d34m05s" + }, "HD 23596": { "exoplanets": @@ -8304,6 +8794,28 @@ "RA": "05h23m22.0s", "DE": "-02d16m39s" }, + "HD 2952": + { + "exoplanets": + [ + { + "mass": 1.6, + "semiAxis": 1.2, + "eccentricity": 0.129, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 115.2, + "stype": "K0III", + "smass": 2.54, + "smetal": 0.0, + "Vmag": 5.83, + "sradius": 12.02, + "effectiveTemp": 4844.0, + "RA": "00h33m10.0s", + "DE": "+54d53m42s" + }, "HD 30177": { "exoplanets": @@ -8594,6 +9106,14 @@ "angleDistance": 0.025818, "discovered": 2003, "planetName": "b" + }, + { + "mass": 0.09, + "period": 31.0, + "semiAxis": 0.186, + "eccentricity": 0.04, + "discovered": 2013, + "planetName": "c" } ], "distance": 11.0, @@ -9002,6 +9522,37 @@ "RA": "00h43m13.0s", "DE": "-37d58m57s" }, + "HD 41248": + { + "exoplanets": + [ + { + "mass": 0.0387, + "period": 18.357, + "semiAxis": 0.137, + "eccentricity": 0.15, + "discovered": 2013, + "planetName": "b" + }, + { + "mass": 0.0271, + "period": 25.648, + "semiAxis": 0.172, + "eccentricity": 0.0, + "discovered": 2013, + "planetName": "c" + } + ], + "distance": 52.38, + "stype": "G2V", + "smass": 0.92, + "smetal": -0.43, + "Vmag": 8.82, + "sradius": 0.78, + "effectiveTemp": 5713.0, + "RA": "06h00m33.0s", + "DE": "-56d09m43s" + }, "HD 4203": { "exoplanets": @@ -9489,6 +10040,14 @@ "angleDistance": 0.017857, "discovered": 2000, "planetName": "b" + }, + { + "mass": 0.35, + "period": 59.9, + "semiAxis": 0.316, + "eccentricity": 0.05, + "discovered": 2013, + "planetName": "c" } ], "distance": 28.0, @@ -9733,9 +10292,10 @@ "planetName": "b" }, { - "mass": 2.24, + "mass": 0.17, "period": 5542.0, - "eccentricity": 0.15, + "semiAxis": 0.54, + "eccentricity": 0.02, "discovered": 2011, "planetName": "c" } @@ -10239,14 +10799,14 @@ } ], "distance": 40.75, - "stype": "KOV", + "stype": "K0IV", "smass": 0.93, "smetal": 0.35, "Vmag": 8.63, "sradius": 0.88, "effectiveTemp": 5370.0, - "RA": "09h01m00.0s", - "DE": "-24d28m23s" + "RA": "09h01m12.0s", + "DE": "-25d31m37s" }, "HD 7924": { @@ -10398,19 +10958,21 @@ "exoplanets": [ { - "mass": 1.75, - "period": 441.2, + "mass": 4.8, + "period": 442.4, "semiAxis": 1.19, - "eccentricity": 0.219, + "eccentricity": 0.203, + "inclination": 19.4, "angleDistance": 0.043336, "discovered": 2003, "planetName": "b" }, { - "mass": 2.01, - "period": 219.0, + "mass": 4.78, + "period": 219.3, "semiAxis": 0.746, - "eccentricity": 0.359, + "eccentricity": 0.425, + "inclination": 19.4, "angleDistance": 0.027167, "discovered": 2003, "planetName": "c" @@ -10486,6 +11048,14 @@ "angleDistance": 0.044759, "discovered": 2009, "planetName": "b" + }, + { + "mass": 0.2, + "period": 3700.0, + "semiAxis": 4.23, + "eccentricity": 0.0, + "discovered": 2013, + "planetName": "c" } ], "distance": 33.96, @@ -10724,6 +11294,14 @@ "angleDistance": 0.022, "discovered": 2000, "planetName": "b" + }, + { + "mass": 3.2, + "period": 85.2, + "semiAxis": 0.44, + "eccentricity": 0.0, + "discovered": 2013, + "planetName": "c" } ], "distance": 40.0, @@ -10772,6 +11350,14 @@ "angleDistance": 0.029555, "discovered": 2000, "planetName": "b" + }, + { + "mass": 0.9, + "period": 162.0, + "semiAxis": 0.6, + "eccentricity": 0.04, + "discovered": 2013, + "planetName": "c" } ], "distance": 32.82, @@ -10869,6 +11455,24 @@ "RA": "01h33m20.0s", "DE": "+29d15m55s" }, + "HD 95086": + { + "exoplanets": + [ + { + "mass": 4.5, + "semiAxis": 56.0, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 90.4, + "stype": "A8III", + "smass": 1.6, + "Vmag": 7.36, + "RA": "10h57m03.0s", + "DE": "-68d40m02s" + }, "HD 95089": { "exoplanets": @@ -11018,11 +11622,12 @@ "exoplanets": [ { - "mass": 0.02, - "radius": 0.262, - "period": 9.4957, - "semiAxis": 0.0797, - "eccentricity": 0.13, + "mass": 0.025, + "radius": 0.21, + "period": 9.4909, + "semiAxis": 0.0796, + "eccentricity": 0.064, + "inclination": 89.45, "angleDistance": 0.003777, "discovered": 2010, "planetName": "b" @@ -11347,6 +11952,27 @@ "RA": "11h44m41.0s", "DE": "+30d57m33s" }, + "HIP 63242": + { + "exoplanets": + [ + { + "mass": 9.18, + "period": 124.6, + "semiAxis": 0.565, + "eccentricity": 0.23, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 135.0, + "stype": "G8III", + "smass": 1.54, + "smetal": -0.31, + "Vmag": 6.86, + "RA": "12h57m32.0s", + "DE": "-65d38m47s" + }, "HIP 70849": { "exoplanets": @@ -11394,15 +12020,31 @@ "RA": "15h24m55.0s", "DE": "+58d57m57s" }, - "HIP 78530": + "HIP 77900": { "exoplanets": [ { - "mass": 23.04, - "semiAxis": 710.0, - "angleDistance": 4.530951, - "discovered": 2011, + "mass": 20.0, + "semiAxis": 3200.0, + "discovered": 2013, + "planetName": "b" + } + ], + "stype": "B6", + "effectiveTemp": 13700.0, + "RA": "15h54m30.0s", + "DE": "-27d20m19s" + }, + "HIP 78530": + { + "exoplanets": + [ + { + "mass": 23.04, + "semiAxis": 710.0, + "angleDistance": 4.530951, + "discovered": 2011, "planetName": "b" } ], @@ -11457,6 +12099,34 @@ "RA": "21h44m31.0s", "DE": "+14d46m19s" }, + "HR 228": + { + "exoplanets": + [ + { + "mass": 2.37, + "period": 360.2, + "semiAxis": 1.19, + "eccentricity": 0.13, + "discovered": 2012, + "planetName": "b" + }, + { + "mass": 2.37, + "period": 2732.0, + "semiAxis": 4.6, + "eccentricity": 0.23, + "discovered": 2012, + "planetName": "c" + } + ], + "stype": "K0III", + "smass": 1.7, + "smetal": 0.01, + "Vmag": 5.893, + "RA": "00h49m14.0s", + "DE": "-24d08m12s" + }, "HR 810": { "exoplanets": @@ -11626,6 +12296,29 @@ "RA": "09h54m34.0s", "DE": "+40d23m17s" }, + "KELT-6": + { + "exoplanets": + [ + { + "mass": 0.43, + "radius": 1.19, + "period": 7.845631, + "semiAxis": 0.079, + "eccentricity": 0.22, + "discovered": 2013, + "planetName": "b" + } + ], + "stype": "F", + "smass": 1.2, + "smetal": -0.28, + "Vmag": 10.38, + "sradius": 1.58, + "effectiveTemp": 6102.0, + "RA": "13h03m56.0s", + "DE": "+30d38m24s" + }, "KIC 10905746": { "exoplanets": @@ -11670,26 +12363,24 @@ "RA": "19h23m52.0s", "DE": "+51d30m17s" }, - "KIC 4862625 A": + "KIC 4862625(AB)": { "exoplanets": [ { - "radius": 0.49, - "period": 138.0, - "semiAxis": 0.56, - "eccentricity": 0.1, + "mass": 0.53, + "radius": 0.55, + "period": 138.506, + "semiAxis": 0.634, + "eccentricity": 0.0539, "inclination": 90.0, "discovered": 2012, "planetName": "b" } ], - "stype": "F8IV", - "smass": 1.14, - "smetal": -0.15, - "Vmag": 14.0, - "sradius": 1.59, - "effectiveTemp": 6200.0, + "stype": "F+M", + "smass": 1.93, + "sradius": 1.7, "RA": "19h52m52.0s", "DE": "+39d57m18s" }, @@ -11714,6 +12405,29 @@ "RA": "18h57m06.0s", "DE": "+41d32m06s" }, + "KIC 8435766": + { + "exoplanets": + [ + { + "mass": 0.025, + "radius": 0.101, + "period": 0.35500745, + "semiAxis": 0.01, + "inclination": 81.0, + "discovered": 2013, + "planetName": "b" + } + ], + "stype": "G", + "smass": 0.84, + "smetal": -0.08, + "Vmag": 12.0, + "sradius": 0.73, + "effectiveTemp": 5143.0, + "RA": "19h34m58.0s", + "DE": "+44d26m54s" + }, "KIC 8852719": { "exoplanets": @@ -11734,25 +12448,28 @@ "RA": "19h15m53.0s", "DE": "+44d37m28s" }, - "KOI-13": + "KOI-127": { "exoplanets": [ { - "mass": 12.1, - "radius": 1.83, - "period": 1.7637, - "discovered": 2011, + "mass": 0.43, + "radius": 0.96, + "period": 3.57878087, + "semiAxis": 0.04501, + "inclination": 88.0, + "discovered": 2013, "planetName": "b" } ], - "smass": 2.05, - "smetal": -0.14, - "Vmag": 10.0, - "sradius": 2.55, - "effectiveTemp": 8500.0, - "RA": "19h07m53.0s", - "DE": "+46d52m06s" + "distance": 570.0, + "stype": "B", + "smass": 0.95, + "smetal": 0.2, + "sradius": 0.99, + "effectiveTemp": 5520.0, + "RA": "19h18m26.0s", + "DE": "+44d20m44s" }, "KOI-135": { @@ -11780,6 +12497,58 @@ "RA": "19h00m58.0s", "DE": "+46d40m06s" }, + "KOI-142": + { + "exoplanets": + [ + { + "mass": 0.0055264, + "radius": 0.37647, + "period": 10.9542, + "eccentricity": 0.05611, + "inclination": 0.962, + "discovered": 2013, + "planetName": "b" + }, + { + "mass": 0.679135, + "period": 22.3383, + "eccentricity": 0.05628, + "inclination": 3.7, + "discovered": 2013, + "planetName": "c" + } + ], + "distance": 385.0, + "stype": "B", + "smass": 1.022, + "smetal": 0.37, + "Vmag": 5.183, + "sradius": 0.961, + "effectiveTemp": 5513.0, + "RA": "19h24m36.0s", + "DE": "+40d40m10s" + }, + "KOI-1843": + { + "exoplanets": + [ + { + "mass": 0.001, + "radius": 0.052, + "period": 0.1768913, + "inclination": 72.0, + "discovered": 2013, + "planetName": "b" + } + ], + "smass": 0.46, + "smetal": 0.0, + "sradius": 0.45, + "effectiveTemp": 3584.0, + "RA": "19h00m03.0s", + "DE": "+40d13m15s" + }, "KOI-196": { "exoplanets": @@ -11811,18 +12580,23 @@ "exoplanets": [ { - "mass": 0.44, - "radius": 0.79, - "period": 7.34, - "semiAxis": 0.075, + "mass": 0.68, + "radius": 1.32, + "period": 7.340718, + "semiAxis": 0.084, + "eccentricity": 0.287, + "inclination": 85.55, "discovered": 2012, "planetName": "b" } ], - "smetal": 0.15, - "Vmag": 15.0, - "sradius": 0.76, - "effectiveTemp": 5774.0, + "distance": 1330.0, + "stype": "F8V", + "smass": 1.4, + "smetal": 0.34, + "Vmag": 14.23, + "sradius": 1.51, + "effectiveTemp": 6050.0, "RA": "19h32m22.0s", "DE": "+41d21m20s" }, @@ -11911,9 +12685,9 @@ "distance": 333.0, "stype": "M", "smass": 0.59, - "smetal": 0.13, + "smetal": 0.08, "Vmag": 16.88, - "sradius": 0.55, + "sradius": 0.49, "effectiveTemp": 3820.0, "RA": "19h31m30.0s", "DE": "+41d03m51s" @@ -12139,6 +12913,31 @@ "RA": "19h17m05.0s", "DE": "+42d36m15s" }, + "KOI-889": + { + "exoplanets": + [ + { + "mass": 9.9, + "radius": 1.03, + "period": 8.884924, + "semiAxis": 0.08, + "eccentricity": 0.569, + "inclination": 89.1, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 1140.0, + "stype": "G8V", + "smass": 0.88, + "smetal": -0.07, + "Vmag": 15.0, + "sradius": 0.88, + "effectiveTemp": 5330.0, + "RA": "19h24m33.0s", + "DE": "+36d34m39s" + }, "KOI-94": { "exoplanets": @@ -12291,6 +13090,26 @@ "RA": "19h48m28.0s", "DE": "+41d54m33s" }, + "Kepler-13": + { + "exoplanets": + [ + { + "mass": 12.1, + "radius": 1.83, + "period": 1.7637, + "discovered": 2011, + "planetName": "b" + } + ], + "smass": 2.05, + "smetal": -0.14, + "Vmag": 10.0, + "sradius": 2.55, + "effectiveTemp": 8500.0, + "RA": "19h07m53.0s", + "DE": "+46d52m06s" + }, "Kepler-14": { "exoplanets": @@ -12968,13 +13787,51 @@ "planetName": "c" } ], - "smass": 1.071, + "smass": 1.113, "Vmag": 12.0, - "sradius": 1.626, - "effectiveTemp": 5911.0, + "sradius": 1.66, + "effectiveTemp": 5900.0, "RA": "19h25m00.0s", "DE": "+49d13m55s" }, + "Kepler-37": + { + "exoplanets": + [ + { + "radius": 0.027, + "period": 13.367308, + "semiAxis": 0.1003, + "inclination": 88.63, + "discovered": 2013, + "planetName": "a" + }, + { + "radius": 0.0662, + "period": 21.301886, + "semiAxis": 0.1368, + "inclination": 89.07, + "discovered": 2013, + "planetName": "a" + }, + { + "radius": 0.177, + "period": 39.792187, + "semiAxis": 0.2076, + "inclination": 89.335, + "discovered": 2013, + "planetName": "a" + } + ], + "distance": 66.0, + "smass": 0.803, + "smetal": -0.32, + "Vmag": 9.77, + "sradius": 0.77, + "effectiveTemp": 5417.0, + "RA": "18h58m23.1s", + "DE": "+44d31m05s" + }, "Kepler-38A": { "exoplanets": @@ -13406,64 +14263,249 @@ "planetName": "c" } ], - "smass": 1.04, - "Vmag": 14.8, - "sradius": 0.94, - "effectiveTemp": 6074.0, - "RA": "19h08m09.0s", - "DE": "+46d38m24s" + "smass": 1.04, + "Vmag": 14.8, + "sradius": 0.94, + "effectiveTemp": 6074.0, + "RA": "19h08m09.0s", + "DE": "+46d38m24s" + }, + "Kepler-6": + { + "exoplanets": + [ + { + "mass": 0.669, + "radius": 1.323, + "period": 3.234723, + "semiAxis": 0.04567, + "eccentricity": 0.0, + "inclination": 86.8, + "discovered": 2010, + "planetName": "b" + } + ], + "smass": 1.209, + "smetal": 0.34, + "sradius": 1.391, + "effectiveTemp": 5647.0, + "RA": "19h47m21.0s", + "DE": "+48d14m24s" + }, + "Kepler-60": + { + "exoplanets": + [ + { + "radius": 0.2, + "period": 7.1316185, + "discovered": 2012, + "planetName": "b" + }, + { + "radius": 0.22, + "period": 8.9193459, + "discovered": 2012, + "planetName": "c" + }, + { + "radius": 0.23, + "period": 11.9016171, + "discovered": 2012, + "planetName": "d" + } + ], + "smass": 1.1, + "Vmag": 14.5, + "sradius": 1.5, + "effectiveTemp": 5915.0, + "RA": "19h15m51.0s", + "DE": "+42d15m54s" + }, + "Kepler-61": + { + "exoplanets": + [ + { + "radius": 0.192, + "period": 59.87756, + "semiAxis": 0.27, + "eccentricity": 0.25, + "inclination": 89.8, + "discovered": 2012, + "planetName": "b" + } + ], + "stype": "K7V", + "smass": 0.635, + "smetal": 0.03, + "Vmag": 15.0, + "sradius": 0.62, + "effectiveTemp": 4017.0, + "RA": "19h41m13.0s", + "DE": "+42d28m31s" + }, + "Kepler-62": + { + "exoplanets": + [ + { + "mass": 0.028, + "radius": 0.117, + "period": 5.714932, + "semiAxis": 0.0553, + "inclination": 89.2, + "discovered": 2013, + "planetName": "b" + }, + { + "mass": 0.0126, + "radius": 0.048, + "period": 12.4417, + "semiAxis": 0.0929, + "inclination": 89.7, + "discovered": 2013, + "planetName": "c" + }, + { + "mass": 0.044, + "radius": 0.174, + "period": 18.16406, + "semiAxis": 0.12, + "inclination": 89.7, + "discovered": 2013, + "planetName": "d" + }, + { + "mass": 0.113, + "radius": 0.144, + "period": 122.3874, + "semiAxis": 0.427, + "inclination": 89.98, + "discovered": 2013, + "planetName": "e" + }, + { + "mass": 0.11, + "radius": 0.126, + "period": 267.291, + "semiAxis": 0.718, + "inclination": 89.9, + "discovered": 2013, + "planetName": "f" + } + ], + "stype": "K2V", + "smass": 0.69, + "smetal": -0.21, + "Vmag": 14.0, + "sradius": 0.63, + "effectiveTemp": 4869.0, + "RA": "18h52m51.0s", + "DE": "+45d20m60s" + }, + "TYC 3550-458-1": + { + "exoplanets": + [ + { + "radius": 0.545, + "period": 9.4341505, + "semiAxis": 0.08, + "inclination": 87.806, + "discovered": 2013, + "planetName": "a" + } + ], + "distance": 200.0, + "smass": 0.984, + "smetal": 0.05, + "Vmag": 12.02, + "sradius": 0.901, + "effectiveTemp": 5576.0, + "RA": "19h16m54.0s", + "DE": "+49d32m54s" + }, + "Kepler-65": + { + "exoplanets": + [ + { + "radius": 0.127, + "period": 2.15491, + "semiAxis": 0.035, + "discovered": 2013, + "planetName": "b" + }, + { + "radius": 0.23, + "period": 5.859944, + "semiAxis": 0.068, + "discovered": 2013, + "planetName": "c" + }, + { + "radius": 0.135, + "period": 8.13123, + "semiAxis": 0.084, + "discovered": 2013, + "planetName": "d" + } + ], + "stype": "B", + "smass": 1.25, + "smetal": 0.17, + "Vmag": 11.6, + "sradius": 1.41, + "effectiveTemp": 6211.0, + "RA": "19h14m45.0s", + "DE": "+41d09m04s" }, - "Kepler-6": + "Kepler-66": { "exoplanets": [ { - "mass": 0.669, - "radius": 1.323, - "period": 3.234723, - "semiAxis": 0.04567, - "eccentricity": 0.0, - "inclination": 86.8, - "discovered": 2010, + "mass": 0.31, + "radius": 0.25, + "period": 17.815815, + "semiAxis": 0.1352, + "discovered": 2013, "planetName": "b" } ], - "smass": 1.209, - "smetal": 0.34, - "sradius": 1.391, - "effectiveTemp": 5647.0, - "RA": "19h47m21.0s", - "DE": "+48d14m24s" + "distance": 1107.0, + "stype": "GOV", + "smass": 1.038, + "smetal": 0.012, + "Vmag": 15.3, + "sradius": 0.966, + "effectiveTemp": 5962.0, + "RA": "19h35m56.0s", + "DE": "+46d41m16s" }, - "Kepler-60": + "Kepler-67": { "exoplanets": [ { - "radius": 0.2, - "period": 7.1316185, - "discovered": 2012, + "mass": 0.31, + "radius": 0.26, + "period": 15.7259, + "semiAxis": 0.1171, + "discovered": 2013, "planetName": "b" - }, - { - "radius": 0.22, - "period": 8.9193459, - "discovered": 2012, - "planetName": "c" - }, - { - "radius": 0.23, - "period": 11.9016171, - "discovered": 2012, - "planetName": "d" } ], - "smass": 1.1, - "Vmag": 14.5, - "sradius": 1.5, - "effectiveTemp": 5915.0, - "RA": "19h15m51.0s", - "DE": "+42d15m54s" + "distance": 1107.0, + "stype": "G9V", + "smass": 0.865, + "smetal": 0.012, + "Vmag": 16.4, + "sradius": 0.778, + "effectiveTemp": 5331.0, + "RA": "19h36m37.0s", + "DE": "+46d09m59s" }, "Kepler-68": { @@ -13502,9 +14544,39 @@ "smetal": 0.12, "sradius": 1.243, "effectiveTemp": 5793.0, - "RA": "14h24m08.0s", + "RA": "19h24m08.0s", "DE": "+49d02m25s" }, + "Kepler-69": + { + "exoplanets": + [ + { + "radius": 0.2, + "period": 13.722341, + "semiAxis": 0.094, + "inclination": 89.62, + "discovered": 2013, + "planetName": "b" + }, + { + "radius": 0.153, + "period": 242.4613, + "semiAxis": 0.64, + "inclination": 89.85, + "discovered": 2013, + "planetName": "c" + } + ], + "stype": "G4V", + "smass": 0.81, + "smetal": -0.29, + "Vmag": 13.7, + "sradius": 0.93, + "effectiveTemp": 5638.0, + "RA": "19h33m03.0s", + "DE": "+44d52m08s" + }, "Kepler-7": { "exoplanets": @@ -13527,6 +14599,28 @@ "RA": "19h14m20.0s", "DE": "+41d05m23s" }, + "Kepler-76": + { + "exoplanets": + [ + { + "mass": 1.96, + "radius": 1.25, + "period": 1.54492875, + "semiAxis": 0.028, + "inclination": 78.0, + "discovered": 2013, + "planetName": "b" + } + ], + "smass": 1.2, + "smetal": -0.1, + "Vmag": 14.0, + "sradius": 1.12, + "effectiveTemp": 6300.0, + "RA": "19h36m46.0s", + "DE": "+39d37m08s" + }, "Kepler-8": { "exoplanets": @@ -13611,7 +14705,7 @@ "RA": "04h39m18.0s", "DE": "+22d21m03s" }, - "MOA-2007-BLG-19": + "MOA-2007-BLG-192-L": { "exoplanets": [ @@ -13629,7 +14723,7 @@ "RA": "18h08m04.0s", "DE": "-27d09m00s" }, - "MOA-2007-BLG-40": + "MOA-2007-BLG-400-L": { "exoplanets": [ @@ -13646,7 +14740,7 @@ "RA": "18h09m42.0s", "DE": "-29d13m27s" }, - "MOA-2008-BLG-31": + "MOA-2008-BLG-310-L": { "exoplanets": [ @@ -13663,7 +14757,7 @@ "RA": "17h54m14.0s", "DE": "-34d46m41s" }, - "MOA-2009-BLG-26": + "MOA-2009-BLG-266L": { "exoplanets": [ @@ -13681,7 +14775,7 @@ "RA": "17h48m06.0s", "DE": "-35d00m19s" }, - "MOA-2009-BLG-31": + "MOA-2009-BLG-319": { "exoplanets": [ @@ -13699,7 +14793,7 @@ "RA": "18h06m58.0s", "DE": "-26d49m11s" }, - "MOA-2009-BLG-38": + "MOA-2009-BLG-387L": { "exoplanets": [ @@ -13718,7 +14812,7 @@ "RA": "17h53m51.0s", "DE": "-33d59m25s" }, - "MOA-2010-BLG-47": + "MOA-2010-BLG-477L": { "exoplanets": [ @@ -13736,7 +14830,7 @@ "RA": "18h06m07.0s", "DE": "-31d27m16s" }, - "MOA-2011-BLG-29": + "MOA-2011-BLG-293L": { "exoplanets": [ @@ -13860,6 +14954,22 @@ "RA": "13h38m48.0s", "DE": "-02d01m49s" }, + "OGL-2012-BLG-0406L": + { + "exoplanets": + [ + { + "mass": 3.9, + "semiAxis": 3.9, + "discovered": 2013, + "planetName": "a" + } + ], + "distance": 5100.0, + "smass": 0.59, + "RA": "17h53m18.0s", + "DE": "-30d28m16s" + }, "OGLE-05-071L": { "exoplanets": @@ -13944,7 +15054,7 @@ "RA": "17h52m35.0s", "DE": "-30d05m16s" }, - "OGLE-2007-BLG-3": + "OGLE-2007-BLG-368L": { "exoplanets": [ @@ -13961,7 +15071,41 @@ "RA": "17h56m26.0s", "DE": "-32d14m15s" }, - "OGLE-2012-BLG-0": + "OGLE-2009-BLG-151_MOA-2009-232": + { + "exoplanets": + [ + { + "mass": 7.5, + "semiAxis": 0.31, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 390.0, + "smass": 0.018, + "Vmag": 15.84, + "RA": "17h54m22.0s", + "DE": "-29d03m21s" + }, + "OGLE-2011-BLG-0420": + { + "exoplanets": + [ + { + "mass": 9.4, + "semiAxis": 0.19, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 1990.0, + "smass": 0.025, + "Vmag": 14.7, + "RA": "17h50m56.0s", + "DE": "-29d49m30s" + }, + "OGLE-2012-BLG-0026L": { "exoplanets": [ @@ -13983,6 +15127,22 @@ "RA": "17h34m19.0s", "DE": "-27d08m34s" }, + "OGLE-2012-BLG-0358L": + { + "exoplanets": + [ + { + "mass": 1.85, + "semiAxis": 0.87, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 1760.0, + "smass": 0.022, + "RA": "17h42m47.0s", + "DE": "-24d15m40s" + }, "OGLE-TR-10": { "exoplanets": @@ -14213,6 +15373,28 @@ "RA": "16h22m25.0s", "DE": "-24d05m14s" }, + "POTS-1": + { + "exoplanets": + [ + { + "mass": 2.31, + "radius": 0.941, + "period": 16062960.0, + "semiAxis": 0.03734, + "inclination": 88.06, + "discovered": 2013, + "planetName": "b" + } + ], + "stype": "K5", + "smass": 0.695, + "smetal": -0.03, + "Vmag": 17.94, + "effectiveTemp": 4400.0, + "RA": "13h34m26.0s", + "DE": "-66d34m52s" + }, "PSR 1257 12": { "exoplanets": @@ -14223,7 +15405,7 @@ "semiAxis": 0.19, "eccentricity": 0.0, "angleDistance": 0.00038, - "discovered": 1992, + "discovered": 0, "planetName": "b" }, { @@ -14233,7 +15415,7 @@ "eccentricity": 0.0186, "inclination": 53.0, "angleDistance": 0.00072, - "discovered": 1992, + "discovered": 0, "planetName": "c" }, { @@ -14243,11 +15425,11 @@ "eccentricity": 0.0252, "inclination": 47.0, "angleDistance": 0.00092, - "discovered": 1992, + "discovered": 0, "planetName": "d" } ], - "distance": 500.0, + "distance": 710.0, "RA": "13h00m04.0s", "DE": "+12d40m56s" }, @@ -14279,7 +15461,7 @@ "period": 36525.0, "semiAxis": 23.0, "angleDistance": 0.006053, - "discovered": 1994, + "discovered": 2003, "planetName": "b" } ], @@ -14334,10 +15516,10 @@ { "mass": 1.09, "radius": 1.164, - "period": 1.420033, + "period": 1.4200246, "semiAxis": 0.02343, "eccentricity": 0.0, - "inclination": 83.47, + "inclination": 84.52, "discovered": 2010, "planetName": "b" } @@ -14600,6 +15782,54 @@ "RA": "20h20m53.0s", "DE": "+59d26m57s" }, + "USco1602-2401": + { + "exoplanets": + [ + { + "mass": 47.0, + "semiAxis": 1000.0, + "discovered": 2013, + "planetName": "b" + } + ], + "stype": "K4", + "effectiveTemp": 4550.0, + "RA": "16h02m51.0s", + "DE": "-24d01m50s" + }, + "USco1610-1913": + { + "exoplanets": + [ + { + "mass": 20.0, + "semiAxis": 840.0, + "discovered": 2013, + "planetName": "b" + } + ], + "stype": "K7", + "effectiveTemp": 4140.0, + "RA": "16h10m32.0s", + "DE": "-19d13m09s" + }, + "USco1612-1800": + { + "exoplanets": + [ + { + "mass": 26.0, + "semiAxis": 430.0, + "discovered": 2013, + "planetName": "b" + } + ], + "stype": "M3", + "effectiveTemp": 3410.0, + "RA": "16h12m49.0s", + "DE": "-18d00m50s" + }, "UScoCTIO 108": { "exoplanets": @@ -14710,7 +15940,7 @@ "RA": "23h15m58.0s", "DE": "+31d27m46s" }, - "WASP-11-HAT-P-1": + "WASP-11-HAT-P-10": { "exoplanets": [ @@ -15404,11 +16634,11 @@ [ { "mass": 1.1215, - "radius": 1.363, + "radius": 1.395, "period": 1.33823187, - "semiAxis": 0.02312, + "semiAxis": 0.0235, "eccentricity": 0.0, - "inclination": 88.8, + "inclination": 88.52, "angleDistance": 7.7e-05, "discovered": 2007, "planetName": "b" @@ -15844,6 +17074,29 @@ "RA": "06h17m21.0s", "DE": "-38d19m24s" }, + "WASP-65": + { + "exoplanets": + [ + { + "mass": 1.55, + "radius": 1.112, + "period": 2.3114243, + "semiAxis": 0.0334, + "inclination": 88.8, + "discovered": 2011, + "planetName": "b" + } + ], + "distance": 310.0, + "stype": "G6", + "smass": 0.93, + "smetal": -0.07, + "Vmag": 11.9, + "effectiveTemp": 5600.0, + "RA": "08h53m18.0s", + "DE": "+08d31m23s" + }, "WASP-66": { "exoplanets": @@ -15946,6 +17199,52 @@ "RA": "01h57m03.0s", "DE": "+00d45m32s" }, + "WASP-72": + { + "exoplanets": + [ + { + "mass": 1.5461, + "radius": 1.27, + "period": 2.2167421, + "semiAxis": 0.03708, + "discovered": 2013, + "planetName": "b" + } + ], + "stype": "F7", + "smass": 1.386, + "smetal": -0.06, + "Vmag": 9.6, + "sradius": 1.98, + "effectiveTemp": 6250.0, + "RA": "02h44m10.0s", + "DE": "-30d10m09s" + }, + "WASP-75": + { + "exoplanets": + [ + { + "mass": 1.07, + "radius": 1.27, + "period": 2.484193, + "semiAxis": 0.0375, + "eccentricity": 0.0, + "inclination": 82.0, + "discovered": 2013, + "planetName": "a" + } + ], + "distance": 260.0, + "stype": "F9", + "smass": 1.14, + "smetal": 0.07, + "Vmag": 11.45, + "effectiveTemp": 6100.0, + "RA": "22h49m33.0s", + "DE": "-10d40m32s" + }, "WASP-77A": { "exoplanets": @@ -16293,7 +17592,7 @@ "exoplanets": [ { - "mass": 8.0, + "mass": 7.0, "period": 7300.0, "semiAxis": 8.5, "eccentricity": 0.17, @@ -16438,7 +17737,7 @@ [ { "mass": 12.8, - "semiAxis": 56.0, + "semiAxis": 55.0, "discovered": 2012, "planetName": "b" } @@ -16584,6 +17883,29 @@ "RA": "17h59m02.0s", "DE": "-09d46m25s" }, + "ω Ser": + { + "exoplanets": + [ + { + "mass": 1.7, + "period": 277.02, + "semiAxis": 1.1, + "eccentricity": 0.106, + "discovered": 2013, + "planetName": "b" + } + ], + "distance": 80.6, + "stype": "G8 III", + "smass": 2.17, + "smetal": -0.24, + "Vmag": 5.21, + "sradius": 12.3, + "effectiveTemp": 4770.0, + "RA": "15h50m18.0s", + "DE": "+02d11m47s" + }, "ο CrB": { "exoplanets": @@ -16604,8 +17926,8 @@ "Vmag": 5.51, "sradius": 10.4, "effectiveTemp": 4749.0, - "RA": "15h34m42.0s", - "DE": "+26d42m53s" + "RA": "15h20m8.4s", + "DE": "29d36m57.9s" }, "ο UMa": { @@ -16659,15 +17981,21 @@ "exoplanets": [ { - "mass": 18.1, - "period": 305.0, + "mass": 20.6, + "period": 305.5, + "semiAxis": 1.17, + "eccentricity": 0.031, "discovered": 2004, "planetName": "b" } ], - "distance": 92.25, + "distance": 98.4, "stype": "K2III", + "smass": 2.3, + "smetal": 0.14, "Vmag": 4.4, + "sradius": 26.8, + "effectiveTemp": 4388.0, "RA": "07h11m08.0s", "DE": "+30d14m43s" }, diff -Nru stellarium-0.12.1/plugins/Exoplanets/src/Exoplanet.cpp stellarium-0.12.4/plugins/Exoplanets/src/Exoplanet.cpp --- stellarium-0.12.1/plugins/Exoplanets/src/Exoplanet.cpp 2013-04-14 08:13:52.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/src/Exoplanet.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -25,6 +25,7 @@ #include "StelTranslator.hpp" #include "StelModuleMgr.hpp" #include "StelSkyDrawer.hpp" +#include "StelLocaleMgr.hpp" #include "renderer/StelRenderer.hpp" #include "renderer/StelTextureNew.hpp" @@ -49,16 +50,10 @@ stype = map.value("stype").toString(); smass = map.value("smass").toFloat(); smetal = map.value("smetal").toFloat(); - if (map.contains("Vmag")) - { - Vmag = map.value("Vmag").toFloat(); - } - else - { - Vmag = 99; - } + Vmag = map.value("Vmag", 99.f).toFloat(); sradius = map.value("sradius").toFloat(); effectiveTemp = map.value("effectiveTemp").toInt(); + hasHabitableExoplanets = map.value("hasHP", false).toBool(); if (map.contains("exoplanets")) { @@ -67,39 +62,14 @@ QVariantMap exoplanetMap = expl.toMap(); exoplanetData p; if (exoplanetMap.contains("planetName")) p.planetName = exoplanetMap.value("planetName").toString(); - if (exoplanetMap.contains("period")) - p.period = exoplanetMap.value("period").toFloat(); - else - p.period = -1.f; - if (exoplanetMap.contains("mass")) - p.mass = exoplanetMap.value("mass").toFloat(); - else - p.mass = -1.f; - if (exoplanetMap.contains("radius")) - p.radius = exoplanetMap.value("radius").toFloat(); - else - p.radius = -1.f; - if (exoplanetMap.contains("semiAxis")) - p.semiAxis = exoplanetMap.value("semiAxis").toFloat(); - else - p.semiAxis = -1.f; - if (exoplanetMap.contains("eccentricity")) - p.eccentricity = exoplanetMap.value("eccentricity").toFloat(); - else - p.eccentricity = -1.f; - if (exoplanetMap.contains("inclination")) - p.inclination = exoplanetMap.value("inclination").toFloat(); - else - p.inclination = -1.f; - if (exoplanetMap.contains("angleDistance")) - p.angleDistance = exoplanetMap.value("angleDistance").toFloat(); - else - p.angleDistance = -1.f; - if (exoplanetMap.contains("discovered")) - p.discovered = exoplanetMap.value("discovered").toInt(); - else - p.discovered = 0; - + p.period = exoplanetMap.value("period", -1.f).toFloat(); + p.mass = exoplanetMap.value("mass", -1.f).toFloat(); + p.radius = exoplanetMap.value("radius", -1.f).toFloat(); + p.semiAxis = exoplanetMap.value("semiAxis", -1.f).toFloat(); + p.eccentricity = exoplanetMap.value("eccentricity", -1.f).toFloat(); + p.inclination = exoplanetMap.value("inclination", -1.f).toFloat(); + p.angleDistance = exoplanetMap.value("angleDistance", -1.f).toFloat(); + p.discovered = exoplanetMap.value("discovered", 0).toInt(); exoplanets.append(p); } } @@ -125,6 +95,7 @@ map["Vmag"] = Vmag; map["sradius"] = sradius; map["effectiveTemp"] = effectiveTemp; + map["hasHP"] = hasHabitableExoplanets; QVariantList exoplanetList; foreach(const exoplanetData &p, exoplanets) { @@ -157,19 +128,27 @@ } } +QString Exoplanet::getNameI18n(void) const +{ + // Use SkyTranslator for translation star names + StelTranslator trans = StelApp::getInstance().getLocaleMgr().getSkyTranslator(); + return trans.qtranslate(designation); +} + QString Exoplanet::getInfoString(const StelCore* core, const InfoStringGroup& flags) const { QString str; QTextStream oss(&str); if (flags&Name) - { - oss << "

    " << designation << "

    "; + { + + oss << "

    " << getNameI18n() << "

    "; } if (flags&Magnitude) { - if (Vmag<99) + if (Vmag<99 && !GETSTELMODULE(Exoplanets)->getDisplayMode()) { if (core->getSkyDrawer()->getFlagHasAtmosphere()) { @@ -371,15 +350,15 @@ discovery.append(p.discovered); } } - qSort(discovery.begin(),discovery.end()); - if (discovery.at(0)<=year && discovery.at(0)>0) + qSort(discovery.begin(),discovery.end()); + if (!discovery.isEmpty()) { - return true; - } - else - { - return false; + if (discovery.at(0)<=year && discovery.at(0)>0) + { + return true; + } } + return false; } void Exoplanet::update(double deltaTime) @@ -429,7 +408,7 @@ else { renderer->drawTexturedRect(win[0] - 5, win[1] - 5, 10, 10); - renderer->drawText(TextParams(XYZ, projector, designation).shift(shift, shift).useGravity()); + renderer->drawText(TextParams(XYZ, projector, getNameI18n()).shift(shift, shift).useGravity()); } } } diff -Nru stellarium-0.12.1/plugins/Exoplanets/src/Exoplanet.hpp stellarium-0.12.4/plugins/Exoplanets/src/Exoplanet.hpp --- stellarium-0.12.1/plugins/Exoplanets/src/Exoplanet.hpp 2013-04-14 08:14:02.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/src/Exoplanet.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -82,10 +82,7 @@ //! Get the angular size of pulsar virtual double getAngularSize(const StelCore* core) const; //! Get the localized name of pulsar - virtual QString getNameI18n(void) const - { - return designation; - } + virtual QString getNameI18n(void) const; //! Get the english name virtual QString getEnglishName(void) const { @@ -115,6 +112,7 @@ float Vmag; //! Visual magnitude of star float sradius; //! Radius of star in Rsun int effectiveTemp; //! Effective temperature of star in K + bool hasHabitableExoplanets; //! Has potential habitable exoplanets QList exoplanets; //! List of exoplanets LinearFader labelsFader; diff -Nru stellarium-0.12.1/plugins/Exoplanets/src/Exoplanets.cpp stellarium-0.12.4/plugins/Exoplanets/src/Exoplanets.cpp --- stellarium-0.12.1/plugins/Exoplanets/src/Exoplanets.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/src/Exoplanets.cpp 2013-09-13 10:51:45.000000000 +0000 @@ -51,6 +51,7 @@ #include #include #include +#include #define CATALOG_FORMAT_VERSION 1 /* Version of format of catalog */ @@ -103,6 +104,8 @@ */ Exoplanets::~Exoplanets() { + StelApp::getInstance().getStelObjectMgr().unSelect(); + delete exoplanetsConfigDialog; if (GlowIcon) @@ -117,8 +120,7 @@ { ep.clear(); if(NULL != texPointer) {delete texPointer;} - if(NULL != markerTexture) {delete markerTexture;} - texPointer = markerTexture = NULL; + if(NULL != markerTexture) {delete markerTexture;} } void Exoplanets::update(double) //deltaTime @@ -142,6 +144,8 @@ */ void Exoplanets::init() { + upgradeConfigIni(); + try { StelFileMgr::makeSureDirExistsAndIsWritable(StelFileMgr::getUserDir()+"/modules/Exoplanets"); @@ -165,9 +169,8 @@ OnIcon = new QPixmap(":/Exoplanets/btExoplanets-on.png"); OffIcon = new QPixmap(":/Exoplanets/btExoplanets-off.png"); - gui->getGuiAction("actionShow_Exoplanets")->setChecked(flagShowExoplanets); - toolbarButton = new StelButton(NULL, *OnIcon, *OffIcon, *GlowIcon, gui->getGuiAction("actionShow_Exoplanets")); - gui->getButtonBar()->addButton(toolbarButton, "065-pluginsGroup"); + setFlagShowExoplanets(getEnableAtStartup()); + setFlagShowExoplanetsButton(flagShowExoplanetsButton); connect(gui->getGuiAction("actionShow_Exoplanets_ConfigDialog"), SIGNAL(toggled(bool)), exoplanetsConfigDialog, SLOT(setVisible(bool))); connect(exoplanetsConfigDialog, SIGNAL(visibleChanged(bool)), gui->getGuiAction("actionShow_Exoplanets_ConfigDialog"), SLOT(setChecked(bool))); @@ -189,18 +192,18 @@ // If the json file does not already exist, create it from the resource in the Qt resource if(QFileInfo(jsonCatalogPath).exists()) { - if (getJsonFileVersion() < CATALOG_FORMAT_VERSION) + if (!checkJsonFileFormat() || getJsonFileFormatVersion()getEnglishName().toUpper() == englishName) + if (eps->getEnglishName().toUpper() == englishName.toUpper()) return qSharedPointerCast(eps); } @@ -317,59 +320,89 @@ foreach(const ExoplanetP& eps, ep) { - if (eps->getNameI18n().toUpper() == nameI18n) + if (eps->getNameI18n().toUpper() == nameI18n.toUpper()) return qSharedPointerCast(eps); } return NULL; } -QStringList Exoplanets::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem) const +QStringList Exoplanets::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { - QStringList result; + QStringList result; if (!flagShowExoplanets) return result; - if (maxNbItem==0) return result; - - QString objw = objPrefix.toUpper(); + if (maxNbItem==0) + return result; + QString epsn; + bool find; foreach(const ExoplanetP& eps, ep) { - if (eps->getNameI18n().toUpper().left(objw.length()) == objw) + epsn = eps->getNameI18n(); + find = false; + if (useStartOfWords) + { + if (epsn.toUpper().left(objPrefix.length()) == objPrefix.toUpper()) + find = true; + } + else { - result << eps->getNameI18n().toUpper(); + if (epsn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << epsn; } } result.sort(); - if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); - return result; + if (result.size()>maxNbItem) + result.erase(result.begin()+maxNbItem, result.end()); + + return result; } -QStringList Exoplanets::listMatchingObjects(const QString& objPrefix, int maxNbItem) const +QStringList Exoplanets::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (!flagShowExoplanets) return result; - if (maxNbItem==0) return result; - - QString objw = objPrefix.toUpper(); + if (maxNbItem==0) + return result; + QString epsn; + bool find; foreach(const ExoplanetP& eps, ep) { - if (eps->getEnglishName().toUpper().left(objw.length()) == objw) + epsn = eps->getNameI18n(); + find = false; + if (useStartOfWords) { - result << eps->getEnglishName().toUpper(); + if (epsn.toUpper().left(objPrefix.length()) == objPrefix.toUpper()) + find = true; + } + else + { + if (epsn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << epsn; } } result.sort(); - if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); - return result; + if (result.size()>maxNbItem) + result.erase(result.begin()+maxNbItem, result.end()); + + return result; } @@ -404,11 +437,11 @@ QFile src(":/Exoplanets/exoplanets.json"); if (!src.copy(jsonCatalogPath)) { - qWarning() << "Exoplanets::restoreDefaultJsonFile cannot copy json resource to " + jsonCatalogPath; + qWarning() << "Exoplanets::restoreDefaultJsonFile cannot copy json resource to " + QDir::toNativeSeparators(jsonCatalogPath); } else { - qDebug() << "Exoplanets::init copied default exoplanets.json to " << jsonCatalogPath; + qDebug() << "Exoplanets::init copied default exoplanets.json to " << QDir::toNativeSeparators(jsonCatalogPath); // The resource is read only, and the new file inherits this... make sure the new file // is writable by the Stellarium process so that updates can be done. QFile dest(jsonCatalogPath); @@ -477,7 +510,7 @@ QVariantMap map; QFile jsonFile(path); if (!jsonFile.open(QIODevice::ReadOnly)) - qWarning() << "Exoplanets::loadEPMap cannot open " << path; + qWarning() << "Exoplanets::loadEPMap cannot open " << QDir::toNativeSeparators(path); else map = StelJsonParser::parse(jsonFile.readAll()).toMap(); @@ -504,28 +537,53 @@ } } -int Exoplanets::getJsonFileVersion(void) +int Exoplanets::getJsonFileFormatVersion(void) { int jsonVersion = -1; QFile jsonEPCatalogFile(jsonCatalogPath); if (!jsonEPCatalogFile.open(QIODevice::ReadOnly)) { - qWarning() << "Exoplanets::init cannot open " << jsonCatalogPath; + qWarning() << "Exoplanets::getJsonFileFormatVersion() cannot open " << QDir::toNativeSeparators(jsonCatalogPath); return jsonVersion; } QVariantMap map; map = StelJsonParser::parse(&jsonEPCatalogFile).toMap(); + jsonEPCatalogFile.close(); if (map.contains("version")) { jsonVersion = map.value("version").toInt(); } - jsonEPCatalogFile.close(); - qDebug() << "Exoplanets::getJsonFileVersion() version from file:" << jsonVersion; + qDebug() << "Exoplanets::getJsonFileFormatVersion() version of format from file:" << jsonVersion; return jsonVersion; } +bool Exoplanets::checkJsonFileFormat() +{ + QFile jsonEPCatalogFile(jsonCatalogPath); + if (!jsonEPCatalogFile.open(QIODevice::ReadOnly)) + { + qWarning() << "Exoplanets::checkJsonFileFormat(): cannot open " << QDir::toNativeSeparators(jsonCatalogPath); + return false; + } + + QVariantMap map; + try + { + map = StelJsonParser::parse(&jsonEPCatalogFile).toMap(); + jsonEPCatalogFile.close(); + } + catch (std::runtime_error& e) + { + qDebug() << "Exoplanets::checkJsonFileFormat(): file format is wrong!"; + qDebug() << "Exoplanets::checkJsonFileFormat() error:" << e.what(); + return false; + } + + return true; +} + ExoplanetP Exoplanets::getByID(const QString& id) { foreach(const ExoplanetP& eps, ep) @@ -564,10 +622,11 @@ conf->setValue("distribution_enabled", false); conf->setValue("timeline_enabled", false); - conf->setValue("updates_enabled", true); - conf->setValue("flag_show_exoplanets", false); + conf->setValue("enable_at_startup", false); + conf->setValue("updates_enabled", true); conf->setValue("url", "http://stellarium.org/json/exoplanets.json"); conf->setValue("update_frequency_hours", 72); + conf->setValue("flag_show_exoplanets_button", true); conf->endGroup(); } @@ -580,8 +639,9 @@ lastUpdate = QDateTime::fromString(conf->value("last_update", "2012-05-24T12:00:00").toString(), Qt::ISODate); updatesEnabled = conf->value("updates_enabled", true).toBool(); distributionEnabled = conf->value("distribution_enabled", false).toBool(); - timelineEnabled = conf->value("timeline_enabled", false).toBool(); - flagShowExoplanets = conf->value("flag_show_exoplanets", false).toBool(); + timelineEnabled = conf->value("timeline_enabled", false).toBool(); + enableAtStartup = conf->value("enable_at_startup", false).toBool(); + flagShowExoplanetsButton = conf->value("flag_show_exoplanets_button", true).toBool(); conf->endGroup(); } @@ -595,7 +655,8 @@ conf->setValue("updates_enabled", updatesEnabled ); conf->setValue("distribution_enabled", distributionEnabled); conf->setValue("timeline_enabled", timelineEnabled); - conf->setValue("flag_show_exoplanets", flagShowExoplanets); + conf->setValue("enable_at_startup", enableAtStartup); + conf->setValue("flag_show_exoplanets_button", flagShowExoplanetsButton); conf->endGroup(); } @@ -627,32 +688,23 @@ lastUpdate = QDateTime::currentDateTime(); conf->setValue("Exoplanets/last_update", lastUpdate.toString(Qt::ISODate)); - emit(jsonUpdateComplete()); - updateState = Exoplanets::Updating; - emit(updateStateChanged(updateState)); - updateFile.clear(); if (progressBar==NULL) progressBar = StelApp::getInstance().getGui()->addProgressBar(); progressBar->setValue(0); - progressBar->setMaximum(updateUrl.size()); - progressBar->setVisible(true); + progressBar->setMaximum(100); progressBar->setFormat("Update exoplanets"); + progressBar->setVisible(true); QNetworkRequest request; request.setUrl(QUrl(updateUrl)); request.setRawHeader("User-Agent", QString("Mozilla/5.0 (Stellarium Exoplanets Plugin %1; http://stellarium.org/)").arg(EXOPLANETS_PLUGIN_VERSION).toUtf8()); downloadMgr->get(request); - progressBar->setValue(100); - delete progressBar; - progressBar = NULL; - - updateState = CompleteUpdates; - + updateState = Exoplanets::CompleteUpdates; emit(updateStateChanged(updateState)); emit(jsonUpdateComplete()); } @@ -686,7 +738,11 @@ } if (progressBar) + { progressBar->setValue(100); + delete progressBar; + progressBar = NULL; + } } void Exoplanets::displayMessage(const QString& message, const QString hexColor) @@ -702,3 +758,32 @@ GETSTELMODULE(LabelMgr)->deleteLabel(i); } } + +void Exoplanets::upgradeConfigIni(void) +{ + // Upgrade settings for Exoplanets plugin + if (conf->contains("Exoplanets/flag_show_exoplanets")) + { + bool b = conf->value("Exoplanets/flag_show_exoplanets", false).toBool(); + if (!conf->contains("Exoplanets/enable_at_startup")) + conf->setValue("Exoplanets/enable_at_startup", b); + conf->remove("Exoplanets/flag_show_exoplanets"); + } +} + +// Define whether the button toggling exoplanets should be visible +void Exoplanets::setFlagShowExoplanetsButton(bool b) +{ + StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); + if (b==true) { + if (toolbarButton==NULL) { + // Create the exoplanets button + gui->getGuiAction("actionShow_Exoplanets")->setChecked(flagShowExoplanets); + toolbarButton = new StelButton(NULL, *OnIcon, *OffIcon, *GlowIcon, gui->getGuiAction("actionShow_Exoplanets")); + } + gui->getButtonBar()->addButton(toolbarButton, "065-pluginsGroup"); + } else { + gui->getButtonBar()->hideButton("actionShow_Exoplanets"); + } + flagShowExoplanetsButton = b; +} diff -Nru stellarium-0.12.1/plugins/Exoplanets/src/Exoplanets.hpp stellarium-0.12.4/plugins/Exoplanets/src/Exoplanets.hpp --- stellarium-0.12.1/plugins/Exoplanets/src/Exoplanets.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/src/Exoplanets.hpp 2013-09-13 10:51:45.000000000 +0000 @@ -88,14 +88,16 @@ //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; virtual QStringList listAllObjects(bool inEnglish) const; @@ -129,9 +131,13 @@ bool getDisplayMode(void) {return distributionEnabled;} void setDisplayMode(bool b) {distributionEnabled=b;} + bool getTimelineMode(void) {return timelineEnabled;} void setTimelineMode(bool b) {timelineEnabled=b;} + void setEnableAtStartup(bool b) { enableAtStartup=b; } + bool getEnableAtStartup(void) { return enableAtStartup; } + //! get the date and time the TLE elements were updated QDateTime getLastUpdate(void) {return lastUpdate;} @@ -160,6 +166,10 @@ void setFlagShowExoplanets(bool b) { flagShowExoplanets=b; } bool getFlagShowExoplanets(void) { return flagShowExoplanets; } + //! Define whether the button toggling exoplanets should be visible + void setFlagShowExoplanetsButton(bool b); + bool getFlagShowExoplanetsButton(void) { return flagShowExoplanetsButton; } + //! Display a message. This is used for plugin-specific warnings and such void displayMessage(const QString& message, const QString hexColor="#999999"); void messageTimeout(void); @@ -171,6 +181,9 @@ // if existing, delete Satellites section in main config.ini, then create with default values void restoreDefaultConfigIni(void); + // Upgrade config.ini: rename old key settings to new + void upgradeConfigIni(void); + //! replace the json file with the default from the compiled-in resource void restoreDefaultJsonFile(void); @@ -182,9 +195,13 @@ //! @return true on OK, false on failure bool backupJsonFile(bool deleteOriginal=false); - //! Get the version of catalog format from the "version" value in the exoplanets.json file + //! Get the version of catalog format from the "version of the format" value in the exoplanets.json file //! @return version string, e.g. "1" - int getJsonFileVersion(void); + int getJsonFileFormatVersion(void); + + //! Check format of the catalog of exoplanets + //! @return valid boolean, e.g. "true" + bool checkJsonFileFormat(void); //! parse JSON file and load exoplanets to map QVariantMap loadEPMap(QString path=QString()); @@ -201,8 +218,7 @@ // variables and functions for the updater UpdateState updateState; QNetworkAccessManager* downloadMgr; - QString updateUrl; - QString updateFile; + QString updateUrl; QTimer* updateTimer; QTimer* messageTimer; QList messageIDs; @@ -211,12 +227,14 @@ int updateFrequencyHours; bool distributionEnabled; bool timelineEnabled; + bool enableAtStartup; QSettings* conf; // GUI ExoplanetsDialog* exoplanetsConfigDialog; bool flagShowExoplanets; + bool flagShowExoplanetsButton; QPixmap* OnIcon; QPixmap* OffIcon; QPixmap* GlowIcon; diff -Nru stellarium-0.12.1/plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp stellarium-0.12.4/plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp --- stellarium-0.12.1/plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -60,6 +60,7 @@ ui->retranslateUi(dialog); refreshUpdateValues(); setAboutHtml(); + setInfoHtml(); } } @@ -72,8 +73,12 @@ this, SLOT(retranslate())); // Settings tab / updates group + ui->displayAtStartupCheckBox->setChecked(GETSTELMODULE(Exoplanets)->getEnableAtStartup()); + connect(ui->displayAtStartupCheckBox, SIGNAL(stateChanged(int)), this, SLOT(setDisplayAtStartupEnabled(int))); ui->displayModeCheckBox->setChecked(GETSTELMODULE(Exoplanets)->getDisplayMode()); connect(ui->displayModeCheckBox, SIGNAL(stateChanged(int)), this, SLOT(setDistributionEnabled(int))); + ui->displayShowExoplanetsButton->setChecked(GETSTELMODULE(Exoplanets)->getFlagShowExoplanetsButton()); + connect(ui->displayShowExoplanetsButton, SIGNAL(stateChanged(int)), this, SLOT(setDisplayShowExoplanetsButton(int))); ui->timelineModeCheckBox->setChecked(GETSTELMODULE(Exoplanets)->getTimelineMode()); connect(ui->timelineModeCheckBox, SIGNAL(stateChanged(int)), this, SLOT(setTimelineEnabled(int))); connect(ui->internetUpdatesCheckbox, SIGNAL(stateChanged(int)), this, SLOT(setUpdatesEnabled(int))); @@ -94,11 +99,13 @@ connect(ui->restoreDefaultsButton, SIGNAL(clicked()), this, SLOT(restoreDefaults())); connect(ui->saveSettingsButton, SIGNAL(clicked()), this, SLOT(saveSettings())); - // About tab + // About & Info tabs setAboutHtml(); + setInfoHtml(); StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); Q_ASSERT(gui); ui->aboutTextBrowser->document()->setDefaultStyleSheet(QString(gui->getStelStyle().htmlStyleSheet)); + ui->infoTextBrowser->document()->setDefaultStyleSheet(QString(gui->getStelStyle().htmlStyleSheet)); updateGuiFromSettings(); @@ -111,7 +118,7 @@ html += "" + q_("Version") + ":" + EXOPLANETS_PLUGIN_VERSION + ""; html += "" + q_("Author") + ":Alexander Wolf <alex.v.wolf@gmail.com>"; - html += "

    " + QString(q_("This plugin plots the position of stars with exoplanets. Exoplanets data is derived from \"%1The Extrasolar Planets Encyclopaedia%2\"")).arg("").arg("") + "

    "; + html += "

    " + QString(q_("This plugin plots the position of stars with exoplanets. Exoplanets data is derived from \"%1The Extrasolar Planets Encyclopaedia%2\"")).arg("").arg("") + ".

    "; html += "

    " + q_("Links") + "

    "; html += "

    " + QString(q_("Support is provided via the Launchpad website. Be sure to put \"%1\" in the subject when posting.")).arg("Exoplanets plugin") + "

    "; @@ -133,6 +140,37 @@ ui->aboutTextBrowser->setHtml(html); } +void ExoplanetsDialog::setInfoHtml(void) +{ + QString html = ""; + html += "

    " + q_("General professional Web sites relevant to extrasolar planets") + "

      "; + html += QString("
    • %2
    • ").arg("http://codementum.org/exoplanets/").arg(q_("Exoplanets: an interactive version of XKCD 1071")); + html += QString("
    • %2
    • ").arg("http://www.cfa.harvard.edu/HEK/").arg(q_("HEK (The Hunt for Exomoons with Kepler)")); + html += QString("
    • %2
    • ").arg("http://www.univie.ac.at/adg/schwarz/multiple.html").arg(q_("Exoplanets in binaries and multiple systems (Richard Schwarz)")); + html += QString("
    • %2
    • ").arg("http://www.iau.org/public/naming/#exoplanets").arg(q_("Naming exoplanets (IAU)")); + html += QString("
    • %2 (%3)
    • ").arg("http://voparis-exoplanet.obspm.fr/people.html").arg(q_("Some Astronomers and Groups active in extrasolar planets studies")).arg(q_("update: 16 April 2012")); + html += QString("
    • %2
    • ").arg("http://exoplanets.org/").arg(q_("The Exoplanet Data Explorer")); + html += QString("
    • %2
    • ").arg("http://www.phys.unsw.edu.au/~cgt/planet/AAPS_Home.html").arg(q_("The Anglo-Australian Planet Search")); + html += QString("
    • %2
    • ").arg("http://www.exoplanets.ch/").arg(q_("Geneva Extrasolar Planet Search Programmes")); + html += QString("
    • %2
    • ").arg("http://olbin.jpl.nasa.gov/").arg(q_("OLBIN (Optical Long-Baseline Interferometry News)")); + html += QString("
    • %2
    • ").arg("http://exep.jpl.nasa.gov/").arg(q_("NASA's Exoplanet Exploration Program")); + html += QString("
    • %2
    • ").arg("http://www.astro.psu.edu/users/alex/pulsar_planets.htm").arg(q_("Pulsar planets")); + html += QString("
    • %2
    • ").arg("http://exoplanetarchive.ipac.caltech.edu/").arg(q_("The NASA Exoplanet Archive")); + html += QString("
    • %2
    • ").arg("http://www.dtm.ciw.edu/boss/c53index.html").arg(q_("IAU Comission 53: Extrasolar Planets")); + html += QString("
    • %2
    • ").arg("http://www.exomol.com/").arg(q_("ExoMol")); + html += QString("
    • %2
    • ").arg("http://www.hzgallery.org/").arg(q_("The Habitable Zone Gallery")); + html += QString("
    • %2
    • ").arg("http://planetquest.jpl.nasa.gov/").arg(q_("PlanetQuest - The Search for Another Earth")); + html += QString("
    • %2
    • ").arg("http://www.openexoplanetcatalogue.com/").arg(q_("Open Exoplanet Catalogue")); + html += QString("
    • %2
    • ").arg("http://phl.upr.edu/projects/habitable-exoplanets-catalog").arg(q_("The Habitable Exoplanets Catalog")); + html += "
    "; + + StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); + Q_ASSERT(gui); + QString htmlStyleSheet(gui->getStelStyle().htmlStyleSheet); + ui->infoTextBrowser->document()->setDefaultStyleSheet(htmlStyleSheet); + ui->infoTextBrowser->setHtml(html); +} + void ExoplanetsDialog::refreshUpdateValues(void) { ui->lastUpdateDateTimeEdit->setDateTime(GETSTELMODULE(Exoplanets)->getLastUpdate()); @@ -169,6 +207,18 @@ GETSTELMODULE(Exoplanets)->setTimelineMode(b); } +void ExoplanetsDialog::setDisplayAtStartupEnabled(int checkState) +{ + bool b = checkState != Qt::Unchecked; + GETSTELMODULE(Exoplanets)->setEnableAtStartup(b); +} + +void ExoplanetsDialog::setDisplayShowExoplanetsButton(int checkState) +{ + bool b = checkState != Qt::Unchecked; + GETSTELMODULE(Exoplanets)->setFlagShowExoplanetsButton(b); +} + void ExoplanetsDialog::setUpdatesEnabled(int checkState) { bool b = checkState != Qt::Unchecked; diff -Nru stellarium-0.12.1/plugins/Exoplanets/src/gui/ExoplanetsDialog.hpp stellarium-0.12.4/plugins/Exoplanets/src/gui/ExoplanetsDialog.hpp --- stellarium-0.12.1/plugins/Exoplanets/src/gui/ExoplanetsDialog.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/src/gui/ExoplanetsDialog.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -49,6 +49,8 @@ void setUpdatesEnabled(int checkState); void setDistributionEnabled(int checkState); void setTimelineEnabled(int checkState); + void setDisplayAtStartupEnabled(int checkState); + void setDisplayShowExoplanetsButton(int checkState); void updateStateReceiver(Exoplanets::UpdateState state); void updateCompleteReceiver(); void restoreDefaults(void); @@ -58,6 +60,7 @@ private: Ui_exoplanetsDialog* ui; void setAboutHtml(void); + void setInfoHtml(void); void updateGuiFromSettings(void); QTimer* updateTimer; diff -Nru stellarium-0.12.1/plugins/Exoplanets/src/gui/exoplanetsDialog.ui stellarium-0.12.4/plugins/Exoplanets/src/gui/exoplanetsDialog.ui --- stellarium-0.12.1/plugins/Exoplanets/src/gui/exoplanetsDialog.ui 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/src/gui/exoplanetsDialog.ui 2013-09-07 15:50:48.000000000 +0000 @@ -7,7 +7,7 @@ 0 0 528 - 451 + 441 @@ -125,6 +125,9 @@ + + 0 + false @@ -229,7 +232,7 @@ - Display mode for exoplanets + Settings for exoplanets @@ -252,6 +255,20 @@ + + + + Enable display at startup + + + + + + + Show exoplanets button on toolbar + + + @@ -300,11 +317,31 @@ + + + Info + + + + 9 + + + + + true + + + true + + + + + About - + 9 diff -Nru stellarium-0.12.1/plugins/Exoplanets/util/exoplanets.pl stellarium-0.12.4/plugins/Exoplanets/util/exoplanets.pl --- stellarium-0.12.1/plugins/Exoplanets/util/exoplanets.pl 2013-04-14 08:17:17.000000000 +0000 +++ stellarium-0.12.4/plugins/Exoplanets/util/exoplanets.pl 2013-09-13 10:51:45.000000000 +0000 @@ -1,5 +1,29 @@ #!/usr/bin/perl +# +# Tool for generate catalog of exoplanets +# +# Copyright (C) 2013 Alexander Wolf +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +# + use DBI(); use LWP::UserAgent(); @@ -10,6 +34,7 @@ $URL = "http://exoplanet.eu/catalog/csv/"; $CSV = "./exoplanets.csv"; +$HCSV = "./"; $JSON = "./exoplanets.json"; $CATALOG_FORMAT_VERSION = 1; @@ -20,7 +45,7 @@ $dbpass = "exoplanet"; $UA = LWP::UserAgent->new(keep_alive => 1, timeout => 360); -$UA->agent("Mozilla/5.0 (Stellarium Exoplanets Catalog Updater 0.2; http://stellarium.org/)"); +$UA->agent("Mozilla/5.0 (Stellarium Exoplanets Catalog Updater 0.4; http://stellarium.org/)"); $request = HTTP::Request->new('GET', $URL); $responce = $UA->request($request); @@ -71,12 +96,24 @@ ($aname,$pmass,$pradius,$pperiod,$psemiax,$pecc,$pincl,$angdist,$psl,$discovered,$updated,$pomega,$pt,$dtype,$mol,$starname,$sRA,$sDec,$sVmag,$sImag,$sHmag,$sJmag,$sKmag,$sdist,$smetal,$smass,$sradius,$sstype,$sage,$sefftemp) = split(",", $currdata); - ($hour,$min,$sec) = split(":",$sRA); + ($hour,$mint,$sect) = split(":",$sRA); + ($deg,$min,$sec) = split(":",$sDec); # fixed bug in raw data $sec =~ s/-//gi; - $outRA = $hour."h".$min."m".$sec."s"; - - ($deg,$min,$sec) = split(":",$sDec); + # fixed bug for Kepler-68 + if ($starname =~ m/kepler-68/gi) { + $hour = 19; + } + # fixed bug for omi CrB + if ($starname =~ m/omi\s+CrB/gi) { + $hour = 15; $mint = 20; $sect = 8.4; + $deg = 29; $min = 36; $sec = 57.9; + } + + $sec =~ s/-//gi; + $sect =~ s/-//gi; + + $outRA = $hour."h".$mint."m".$sect."s"; $outDE = $deg."d".$min."m".$sec."s"; $sname = $starname; @@ -109,8 +146,9 @@ $sname =~ s/^chi/χ/gi; $sname =~ s/^psi/ψ/gi; $sname =~ s/^omega/ω/gi; + $sname =~ s/^ome/ω/gi; - if (($sRA ne '00:00:00.0') && ($sDec ne '+00:00:00.0')) { + if (($sRA ne '00:00:00.0') && ($sDec ne '+00:00:00.0') && ($sname ne '')) { # check star $sth = $dbh->prepare(q{SELECT sid FROM stars WHERE ra_coord=? AND dec_coord=?}); $sth->execute($outRA, $outDE); diff -Nru stellarium-0.12.1/plugins/HelloStelModule/src/HelloStelModule.cpp stellarium-0.12.4/plugins/HelloStelModule/src/HelloStelModule.cpp --- stellarium-0.12.1/plugins/HelloStelModule/src/HelloStelModule.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/HelloStelModule/src/HelloStelModule.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "StelProjector.hpp" diff -Nru stellarium-0.12.1/plugins/HelloStelModule/src/HelloStelModule.hpp stellarium-0.12.4/plugins/HelloStelModule/src/HelloStelModule.hpp --- stellarium-0.12.1/plugins/HelloStelModule/src/HelloStelModule.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/HelloStelModule/src/HelloStelModule.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef HELLOSTELMODULE_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/LogBook.cpp stellarium-0.12.4/plugins/LogBook/src/LogBook.cpp --- stellarium-0.12.1/plugins/LogBook/src/LogBook.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/LogBook.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "LogBook.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/LogBook.hpp stellarium-0.12.4/plugins/LogBook/src/LogBook.hpp --- stellarium-0.12.1/plugins/LogBook/src/LogBook.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/LogBook.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef LOGBOOK_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/LogBookCommon.hpp stellarium-0.12.4/plugins/LogBook/src/LogBookCommon.hpp --- stellarium-0.12.1/plugins/LogBook/src/LogBookCommon.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/LogBookCommon.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef LOGBOOKCOMMON_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/LogBookConfigDialog.cpp stellarium-0.12.4/plugins/LogBook/src/gui/LogBookConfigDialog.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/LogBookConfigDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/LogBookConfigDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "LogBook.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/LogBookConfigDialog.hpp stellarium-0.12.4/plugins/LogBook/src/gui/LogBookConfigDialog.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/LogBookConfigDialog.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/LogBookConfigDialog.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _LOGBOOKCONFIGDIALOG_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/ObservationsDialog.cpp stellarium-0.12.4/plugins/LogBook/src/gui/ObservationsDialog.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/ObservationsDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/ObservationsDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "ObservationsDialog.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/ObservationsDialog.hpp stellarium-0.12.4/plugins/LogBook/src/gui/ObservationsDialog.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/ObservationsDialog.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/ObservationsDialog.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _OBSERVATIONSDIALOG_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/SessionsDialog.cpp stellarium-0.12.4/plugins/LogBook/src/gui/SessionsDialog.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/SessionsDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/SessionsDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "SessionsDialog.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/SessionsDialog.hpp stellarium-0.12.4/plugins/LogBook/src/gui/SessionsDialog.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/SessionsDialog.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/SessionsDialog.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _SESSIONSDIALOG_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/StelDialogLogBook.cpp stellarium-0.12.4/plugins/LogBook/src/gui/StelDialogLogBook.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/StelDialogLogBook.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/StelDialogLogBook.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/StelDialogLogBook.hpp stellarium-0.12.4/plugins/LogBook/src/gui/StelDialogLogBook.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/StelDialogLogBook.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/StelDialogLogBook.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _STELDIALOGLOGBOOK_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/TargetsDialog.cpp stellarium-0.12.4/plugins/LogBook/src/gui/TargetsDialog.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/TargetsDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/TargetsDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "TargetsDialog.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/TargetsDialog.hpp stellarium-0.12.4/plugins/LogBook/src/gui/TargetsDialog.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/TargetsDialog.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/TargetsDialog.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _TARGETSDIALOG_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/BarlowsDataMapper.cpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/BarlowsDataMapper.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/BarlowsDataMapper.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/BarlowsDataMapper.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "BarlowsDataMapper.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/BarlowsDataMapper.hpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/BarlowsDataMapper.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/BarlowsDataMapper.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/BarlowsDataMapper.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _BARLOWSDATAMAPPER_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/FiltersDataMapper.cpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/FiltersDataMapper.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/FiltersDataMapper.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/FiltersDataMapper.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "FiltersDataMapper.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/FiltersDataMapper.hpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/FiltersDataMapper.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/FiltersDataMapper.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/FiltersDataMapper.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _FILTERSDATAMAPPER_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/ImagersDataMapper.cpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/ImagersDataMapper.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/ImagersDataMapper.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/ImagersDataMapper.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "ImagersDataMapper.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/ImagersDataMapper.hpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/ImagersDataMapper.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/ImagersDataMapper.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/ImagersDataMapper.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _IMAGERSDATAMAPPER_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/ObserversDataMapper.cpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/ObserversDataMapper.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/ObserversDataMapper.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/ObserversDataMapper.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "ObserversDataMapper.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/ObserversDataMapper.hpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/ObserversDataMapper.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/ObserversDataMapper.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/ObserversDataMapper.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _OBSERVERSDATAMAPPER_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/OcularsDataMapper.cpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/OcularsDataMapper.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/OcularsDataMapper.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/OcularsDataMapper.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "OcularsDataMapper.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/OcularsDataMapper.hpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/OcularsDataMapper.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/OcularsDataMapper.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/OcularsDataMapper.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _OCULARSDATAMAPPER_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/OpticsDataMapper.cpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/OpticsDataMapper.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/OpticsDataMapper.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/OpticsDataMapper.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software -* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "OpticsDataMapper.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/OpticsDataMapper.hpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/OpticsDataMapper.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/OpticsDataMapper.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/OpticsDataMapper.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _OPTICSDATAMAPPER_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/SitesDataMapper.cpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/SitesDataMapper.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/SitesDataMapper.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/SitesDataMapper.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "SitesDataMapper.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/SitesDataMapper.hpp stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/SitesDataMapper.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/dataMappers/SitesDataMapper.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/dataMappers/SitesDataMapper.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _SITESDATAMAPPER_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/validators/LimitingDoubleValidator.cpp stellarium-0.12.4/plugins/LogBook/src/gui/validators/LimitingDoubleValidator.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/validators/LimitingDoubleValidator.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/validators/LimitingDoubleValidator.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "LimitingDoubleValidator.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/validators/LimitingDoubleValidator.hpp stellarium-0.12.4/plugins/LogBook/src/gui/validators/LimitingDoubleValidator.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/validators/LimitingDoubleValidator.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/validators/LimitingDoubleValidator.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _LIMITINGDOUBLEVALIDATOR_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/validators/LimitingIntValidator.cpp stellarium-0.12.4/plugins/LogBook/src/gui/validators/LimitingIntValidator.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/validators/LimitingIntValidator.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/validators/LimitingIntValidator.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "LimitingIntValidator.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/validators/LimitingIntValidator.hpp stellarium-0.12.4/plugins/LogBook/src/gui/validators/LimitingIntValidator.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/validators/LimitingIntValidator.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/validators/LimitingIntValidator.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _LIMITINGINTVALIDATOR_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/validators/NonEmptyStringValidator.cpp stellarium-0.12.4/plugins/LogBook/src/gui/validators/NonEmptyStringValidator.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/validators/NonEmptyStringValidator.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/validators/NonEmptyStringValidator.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "NonEmptyStringValidator.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/validators/NonEmptyStringValidator.hpp stellarium-0.12.4/plugins/LogBook/src/gui/validators/NonEmptyStringValidator.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/validators/NonEmptyStringValidator.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/validators/NonEmptyStringValidator.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _NONEMPTYSTRINGVALIDATOR_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/widgets/LogBookTextEdit.cpp stellarium-0.12.4/plugins/LogBook/src/gui/widgets/LogBookTextEdit.cpp --- stellarium-0.12.1/plugins/LogBook/src/gui/widgets/LogBookTextEdit.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/widgets/LogBookTextEdit.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "LogBookTextEdit.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/gui/widgets/LogBookTextEdit.hpp stellarium-0.12.4/plugins/LogBook/src/gui/widgets/LogBookTextEdit.hpp --- stellarium-0.12.1/plugins/LogBook/src/gui/widgets/LogBookTextEdit.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/gui/widgets/LogBookTextEdit.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _LOGBOOKTEXTEDIT_HPP_ diff -Nru stellarium-0.12.1/plugins/LogBook/src/models/FieldConcatModel.cpp stellarium-0.12.4/plugins/LogBook/src/models/FieldConcatModel.cpp --- stellarium-0.12.1/plugins/LogBook/src/models/FieldConcatModel.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/models/FieldConcatModel.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "FieldConcatModel.hpp" diff -Nru stellarium-0.12.1/plugins/LogBook/src/models/FieldConcatModel.hpp stellarium-0.12.4/plugins/LogBook/src/models/FieldConcatModel.hpp --- stellarium-0.12.1/plugins/LogBook/src/models/FieldConcatModel.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/LogBook/src/models/FieldConcatModel.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _FIELDCONCATMODEL_HPP_ diff -Nru stellarium-0.12.1/plugins/Novae/CMakeLists.txt stellarium-0.12.4/plugins/Novae/CMakeLists.txt --- stellarium-0.12.1/plugins/Novae/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,13 @@ +SET(NOVAE_VERSION "0.1.0") + +IF(APPLE) + SET(CMAKE_INSTALL_PREFIX $ENV{HOME}/Library/Application\ Support/Stellarium) +ElSE(APPLE) + SET(CMAKE_INSTALL_PREFIX $ENV{HOME}/.stellarium) +ENDIF(APPLE) + +ADD_DEFINITIONS(-DNOVAE_PLUGIN_VERSION="${NOVAE_VERSION}") + +ADD_SUBDIRECTORY( src ) + +INSTALL(FILES DESTINATION "modules/Novae") diff -Nru stellarium-0.12.1/plugins/Novae/COPYING stellarium-0.12.4/plugins/Novae/COPYING --- stellarium-0.12.1/plugins/Novae/COPYING 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/COPYING 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff -Nru stellarium-0.12.1/plugins/Novae/Doxyfile stellarium-0.12.4/plugins/Novae/Doxyfile --- stellarium-0.12.1/plugins/Novae/Doxyfile 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/Doxyfile 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,1800 @@ +# Doxyfile 1.8.0 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" "). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or sequence of words) that should +# identify the project. Note that if you do not use Doxywizard you need +# to put quotes around the project name if it contains spaces. + +PROJECT_NAME = "Stellarium Bright Novae Plug-in" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer +# a quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is +# included in the documentation. The maximum height of the logo should not +# exceed 55 pixels and the maximum width should not exceed 200 pixels. +# Doxygen will copy the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful if your file system +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = YES + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding +# "class=itcl::class" will allow you to use the command class in the +# itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this +# tag. The format is ext=language, where ext is a file extension, and language +# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, +# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make +# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C +# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions +# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all +# comments according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you +# can mix doxygen, HTML, and XML commands with Markdown formatting. +# Disable only in case of backward compatibilities issues. + +MARKDOWN_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also makes the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and +# unions are shown inside the group in which they are included (e.g. using +# @ingroup) instead of on a separate page (for HTML and Man pages) or +# section (for LaTeX and RTF). + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and +# unions with only public data fields will be shown inline in the documentation +# of the scope in which they are defined (i.e. file, namespace, or group +# documentation), provided this scope is documented. If set to NO (the default), +# structs, classes, and unions are shown on a separate page (for HTML and Man +# pages) or section (for LaTeX and RTF). + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penalty. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will roughly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +SYMBOL_CACHE_SIZE = 0 + +# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be +# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given +# their name and scope. Since this can be an expensive process and often the +# same symbol appear multiple times in the code, doxygen keeps a cache of +# pre-resolved symbols. If the cache is too small doxygen will become slower. +# If the cache is too large, memory is wasted. The cache size is given by this +# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespaces are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen +# will list include files with double quotes in the documentation +# rather than with sharp brackets. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen +# will sort the (brief and detailed) documentation of class members so that +# constructors and destructors are listed first. If set to NO (the default) +# the constructors will appear in the respective orders defined by +# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to +# do proper type resolution of all parameters of a function it will reject a +# match between the prototype and the implementation of a member function even +# if there is only one candidate or it is obvious which candidate to choose +# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen +# will still accept a match between prototype and implementation in such cases. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or macro consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and macros in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. The create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. +# You can optionally specify a file name after the option, if omitted +# DoxygenLayout.xml will be used as the name of the layout file. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files +# containing the references data. This must be a list of .bib files. The +# .bib extension is automatically appended if omitted. Using this command +# requires the bibtex tool to be installed. See also +# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style +# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this +# feature you need bibtex and perl available in the search path. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# The WARN_NO_PARAMDOC option can be enabled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = ./src ./src/gui + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh +# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py +# *.f90 *.f *.for *.vhd *.vhdl + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty or if +# non of the patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) +# and it is also possible to disable source filtering for a specific pattern +# using *.ext= (so without naming a filter). This option only has effect when +# FILTER_SOURCE_FILES is enabled. + +FILTER_SOURCE_PATTERNS = + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. Note that when using a custom header you are responsible +# for the proper inclusion of any scripts and style sheets that doxygen +# needs, which is dependent on the configuration options used. +# It is advised to generate a default header using "doxygen -w html +# header.html footer.html stylesheet.css YourConfigFile" and then modify +# that header. Note that the header is subject to change so you typically +# have to redo this when upgrading to a newer version of doxygen or when +# changing the value of configuration settings such as GENERATE_TREEVIEW! + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# style sheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that +# the files will be copied as-is; there are no commands or markers available. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. +# Doxygen will adjust the colors in the style sheet and background images +# according to this color. Hue is specified as an angle on a colorwheel, +# see http://en.wikipedia.org/wiki/Hue for more information. +# For instance the value 0 represents red, 60 is yellow, 120 is green, +# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. +# The allowed range is 0 to 359. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of +# the colors in the HTML output. For a value of 0 the output will use +# grayscales only. A value of 255 will produce the most vivid colors. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to +# the luminance component of the colors in the HTML output. Values below +# 100 gradually make the output lighter, whereas values above 100 make +# the output darker. The value divided by 100 is the actual gamma applied, +# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, +# and 100 does not change the gamma. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting +# this to NO can help when comparing the output of multiple runs. + +HTML_TIMESTAMP = YES + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated +# that can be used as input for Qt's qhelpgenerator to generate a +# Qt Compressed Help (.qch) of the generated HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to +# add. For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see +# +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's +# filter section matches. +# +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files +# will be generated, which together with the HTML files, form an Eclipse help +# plugin. To install this plugin and make it available under the help contents +# menu in Eclipse, the contents of the directory containing the HTML and XML +# files needs to be copied into the plugins directory of eclipse. The name of +# the directory within the plugins directory should be the same as +# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before +# the help appears. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have +# this name. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) +# at top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. Since the tabs have the same information as the +# navigation tree you can set this option to NO if you already set +# GENERATE_TREEVIEW to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. +# Since the tree basically has the same information as the tab index you +# could consider to set DISABLE_INDEX to NO when enabling this option. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values +# (range [0,1..20]) that doxygen will group on one line in the generated HTML +# documentation. Note that a value of 0 will completely suppress the enum +# values from appearing in the overview section. + +ENUM_VALUES_PER_LINE = 4 + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open +# links to external symbols imported via tag files in a separate window. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are +# not supported properly for IE 6.0, but are supported on all modern browsers. +# Note that when changing this option you need to delete any form_*.png files +# in the HTML output before the changes have effect. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax +# (see http://www.mathjax.org) which uses client side Javascript for the +# rendering instead of using prerendered bitmaps. Use this if you do not +# have LaTeX installed or if you want to formulas look prettier in the HTML +# output. When enabled you may also need to install MathJax separately and +# configure the path to it using the MATHJAX_RELPATH option. + +USE_MATHJAX = NO + +# When MathJax is enabled you need to specify the location relative to the +# HTML output directory using the MATHJAX_RELPATH option. The destination +# directory should contain the MathJax.js script. For instance, if the mathjax +# directory is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to +# the MathJax Content Delivery Network so you can quickly see the result without +# installing MathJax. +# However, it is strongly recommended to install a local +# copy of MathJax from http://www.mathjax.org before deployment. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension +# names that should be enabled during MathJax rendering. + +MATHJAX_EXTENSIONS = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box +# for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using +# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets +# (GENERATE_DOCSET) there is already a search function so this one should +# typically be disabled. For large projects the javascript based search engine +# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a PHP enabled web server instead of at the web client +# using Javascript. Doxygen will generate the search PHP script and index +# file to put on the web server. The advantage of the server +# based approach is that it scales better to large projects and allows +# full text search. The disadvantages are that it is more difficult to setup +# and does not have live searching capabilities. + +SERVER_BASED_SEARCH = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. +# Note that when enabling USE_PDFLATEX this option is only used for +# generating bitmaps for formulas in the HTML output, but not in the +# Makefile that is written to the output directory. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for +# the generated latex document. The footer should contain everything after +# the last chapter. If it is left blank doxygen will generate a +# standard footer. Notice: only use this tag if you know what you are doing! + +LATEX_FOOTER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include +# source code with syntax highlighting in the LaTeX output. +# Note that which sources are shown also depends on other settings +# such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See +# http://en.wikipedia.org/wiki/BibTeX for more info. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load style sheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# pointed to by INCLUDE_PATH will be searched when a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition that +# overrules the definition found in the source code. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all references to function-like macros +# that are alone on a line, have an all uppercase name, and do not end with a +# semicolon, because these will confuse the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. For each +# tag file the location of the external documentation should be added. The +# format of a tag file without this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths +# or URLs. Note that each tag file must have a unique name (where the name does +# NOT include the path). If a tag file is not located in the directory in which +# doxygen is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option also works with HAVE_DOT disabled, but it is recommended to +# install and use dot, since it yields more powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is +# allowed to run in parallel. When set to 0 (the default) doxygen will +# base this on the number of processors available in the system. You can set it +# explicitly to a value larger than 0 to get control over the balance +# between CPU load and processing speed. + +DOT_NUM_THREADS = 0 + +# By default doxygen will use the Helvetica font for all dot files that +# doxygen generates. When you want a differently looking font you can specify +# the font name using DOT_FONTNAME. You need to make sure dot is able to find +# the font, which can be done by putting it in a standard location or by setting +# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. + +DOT_FONTNAME = Helvetica + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the Helvetica font. +# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to +# set the path where dot can find it. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside +# the class node. If there are many fields or methods and many nodes the +# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS +# threshold limits the number of items for each type to make the size more +# managable. Set this to 0 for no limit. Note that the threshold may be +# exceeded by 50% before the limit is enforced. + +UML_LIMIT_NUM_FIELDS = 10 + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will generate a graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are svg, png, jpg, or gif. +# If left blank png will be used. If you choose svg you need to set +# HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible in IE 9+ (other browsers do not have this requirement). + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# Note that this requires a modern browser other than Internet Explorer. +# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you +# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible. Older versions of IE do not have SVG support. + +INTERACTIVE_SVG = NO + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the +# \mscfile command). + +MSCFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff -Nru stellarium-0.12.1/plugins/Novae/resources/Novae.qrc stellarium-0.12.4/plugins/Novae/resources/Novae.qrc --- stellarium-0.12.1/plugins/Novae/resources/Novae.qrc 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/resources/Novae.qrc 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,5 @@ + + + novae.json + + diff -Nru stellarium-0.12.1/plugins/Novae/resources/novae.json stellarium-0.12.4/plugins/Novae/resources/novae.json --- stellarium-0.12.1/plugins/Novae/resources/novae.json 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/resources/novae.json 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,565 @@ +{ + "version": "1", + "shortName": "List of bright novae in the Milky Way galaxy", + "nova": + { + "T Aur": + { + "name": "Nova Aurigae 1892", + "type": "NB+EA", + "maxMagnitude": 4.1, + "minMagnitude": 15.5, + "peakJD": 2412088, + "m2": 80, + "m3": 84, + "m6": 96, + "m9": 6300, + "RA": "05h31m59.1s", + "Dec": "30d26m46s" + }, + "V1059 Sgr": + { + "name": "Nova Sagittarii 1898", + "type": "NA", + "maxMagnitude": 4.5, + "minMagnitude": 16.5, + "peakJD": 2414360, + "RA": "19h01m50.6s", + "Dec": "13d09m42s" + }, + "V0606 Aql": + { + "name": "Nova Aquilae 1899", + "type": "NA", + "maxMagnitude": 5.5, + "minMagnitude": 17.3, + "peakJD": 2414754, + "RA": "19h20m24.3s", + "Dec": "-00d08m02s" + }, + "GK Per": + { + "name": "Nova Persei 1901", + "type": "NA+XP", + "distance": 1.5, + "maxMagnitude": 0.2, + "minMagnitude": 14, + "peakJD": 2415439, + "m2": 6, + "m3": 13, + "m6": 179, + "m9": 444, + "RA": "03h31m12s", + "Dec": "43d54m15s" + }, + "DM Gem": + { + "name": "Nova Geminorum 1903", + "type": "NA", + "maxMagnitude": 4.8, + "minMagnitude": 16.5, + "peakJD": 2416179, + "RA": "06h44m12.1s", + "Dec": "29d56m42s" + }, + "V0604 Aql": + { + "name": "Nova Aquilae 1905", + "type": "NA", + "maxMagnitude": 7.6, + "minMagnitude": 18, + "peakJD": 2417072, + "RA": "19h02m06.2s", + "Dec": "-04d26m45s" + }, + "DI Lac": + { + "name": "Nova Lacertae 1910", + "type": "NA", + "maxMagnitude": 4.3, + "minMagnitude": 14.91, + "peakJD": 2419000.5, + "RA": "22h35m48.6s", + "Dec": "52d43m00s" + }, + "V0603 Aql": + { + "name": "Nova Aquilae 1918", + "type": "NA+E+X", + "maxMagnitude": -1.4, + "minMagnitude": 12.03, + "peakJD": 2421755, + "m2": 5, + "m3": 12, + "m6": 149, + "m9": 743, + "RA": "18h48m54.6s", + "Dec": "00d35m03s" + }, + "HR Lyr": + { + "name": "Nova Lyrae 1919", + "type": "NA", + "maxMagnitude": 6.5, + "minMagnitude": 15.8, + "peakJD": 2422299, + "RA": "18h53m24.9s", + "Dec": "29d13m38s" + }, + "V0849 Oph": + { + "name": "Nova Ophiuchi 1919", + "type": "NB", + "maxMagnitude": 7.2, + "minMagnitude": 17.5, + "peakJD": 2422268, + "m2": 140, + "m3": 270, + "m6": 2010, + "RA": "18h14m07.3s", + "Dec": "11d36m43s" + }, + "V0476 Cyg": + { + "name": "Nova Cygni 1920", + "type": "NA", + "maxMagnitude": 2.0, + "minMagnitude": 17.09, + "peakJD": 2422561, + "m2": 6, + "m3": 16, + "m6": 43, + "m9": 1076, + "RA": "19h58m24.5s", + "Dec": "53d37m07s" + }, + "RR Pic": + { + "name": "Nova Pictoris 1925", + "type": "NB", + "maxMagnitude": 1.2, + "minMagnitude": 12.52, + "peakJD": 2424310, + "m2": 73, + "m3": 122, + "m6": 1008, + "m9": 5805, + "RA": "06h35m36.1s", + "Dec": "-62d38m24s" + }, + "EL Aql": + { + "name": "Nova Aquilae 1927", + "type": "NA", + "maxMagnitude": 5.5, + "minMagnitude": 19, + "peakJD": 2425043, + "RA": "18h56m02s", + "Dec": "-03d19m20s" + }, + "XX Tau": + { + "name": "Nova Tauri 1927", + "type": "NA", + "maxMagnitude": 6, + "minMagnitude": 16.5, + "peakJD": 2425154, + "RA": "05h19m24.4s", + "Dec": "16d43m00s" + }, + "DQ Her": + { + "name": "Nova Herculis 1934", + "type": "NB+EA", + "maxMagnitude": 1.3, + "minMagnitude": 18.08, + "peakJD": 2427794, + "m2": 76, + "m3": 100, + "m6": 645, + "m9": 2010, + "distance": 0.3162, + "RA": "18h07m30.2s", + "Dec": "45d51m32s" + }, + "CP Lac": + { + "name": "Nova Lacertae 1936", + "type": "NA", + "maxMagnitude": 2.1, + "minMagnitude": 16.6, + "peakJD": 2428340, + "m2": 5, + "m3": 9, + "m6": 78, + "m9": 436, + "RA": "22h15m41.1s", + "Dec": "55d37m02s" + }, + "V0368 Aql": + { + "name": "Nova Aquilae 1936", + "type": "NA", + "maxMagnitude": 5, + "minMagnitude": 15.7, + "peakJD": 2428438.4, + "RA": "19h26m34.4s", + "Dec": "07d36m14s" + }, + "BT Mon": + { + "name": "Nova Monocerotis 1939", + "type": "NA+EA", + "maxMagnitude": 4, + "minMagnitude": 18.7, + "peakJD": 2429503, + "m2": 118, + "m3": 182, + "m6": 610, + "RA": "06h43m47.2s", + "Dec": "-02d01m13s" + }, + "V0450 Cyg": + { + "name": "Nova Cygni 1942", + "type": "NB", + "maxMagnitude": 7, + "minMagnitude": 17, + "peakJD": 2430510, + "RA": "20h58m47.6s", + "Dec": "35d56m30s" + }, + "CP Pup": + { + "name": "Nova Puppis 1942", + "type": "NA", + "maxMagnitude": 0.5, + "minMagnitude": 17, + "peakJD": 2430675, + "m2": 4, + "m3": 8, + "m6": 114, + "m9": 748, + "distance": 3.72, + "RA": "08h11m46.1s", + "Dec": "35d21m05s" + }, + "V0500 Aql": + { + "name": "Nova Aquilae 1943", + "type": "NA", + "maxMagnitude": 6.1, + "minMagnitude": 17.8, + "peakJD": 2430845, + "RA": "19h52m28s", + "Dec": "08d28m47s" + }, + "V0528 Aql": + { + "name": "Nova Aquilae 1945", + "type": "NA", + "maxMagnitude": 7.2, + "minMagnitude": 18.1, + "peakJD": 2431695, + "m2": 16, + "m3": 38, + "m6": 119, + "RA": "19h19m19.1s", + "Dec": "00d37m53s" + }, + "CT Ser": + { + "name": "Nova Serpentis 1948", + "type": "NA", + "maxMagnitude": 6, + "minMagnitude": 16.6, + "peakJD": 2432600, + "RA": "15h45m39.1s", + "Dec": "14d22m32s" + }, + "V0465 Cyg": + { + "name": "Nova Cygni 1948", + "type": "NB", + "maxMagnitude": 7.3, + "minMagnitude": 17.9, + "peakJD": 2432704, + "RA": "19h52m37.9s", + "Dec": "36d33m52s" + }, + "DK Lac": + { + "name": "Nova Lacertae 1950", + "type": "NA", + "maxMagnitude": 5, + "minMagnitude": 15.5, + "peakJD": 2433304, + "m2": 55, + "m3": 202, + "m6": 488, + "RA": "22h49m47s", + "Dec": "53d17m20s" + }, + "RW UMi": + { + "name": "Nova Ursae Minoris 1956", + "type": "NA", + "maxMagnitude": 6, + "minMagnitude": 21, + "peakJD": 2435741, + "RA": "16h47m54.8s", + "Dec": "77d02m12s" + }, + "V0446 Her": + { + "name": "Nova Herculis 1960", + "type": "NA", + "maxMagnitude": 2.8, + "minMagnitude": 18.8, + "peakJD": 2436997, + "m2": 20, + "m3": 42, + "m6": 197, + "m9": 997, + "RA": "18h57m21.6s", + "Dec": "13d14m29s" + }, + "V0533 Her": + { + "name": "Nova Herculis 1963", + "type": "NA", + "maxMagnitude": 3, + "minMagnitude": 16.2, + "peakJD": 2438060, + "m2": 30, + "m3": 43, + "m6": 238, + "m9": 688, + "RA": "18h14m20.5s", + "Dec": "41d51m23s" + }, + "QZ Aur": + { + "name": "Nova Aurigae 1964", + "type": "NA+E", + "maxMagnitude": 6, + "minMagnitude": 18, + "peakJD": 2438440, + "RA": "05h28m34.1s", + "Dec": "33d18m22s" + }, + "HR Del": + { + "name": "Nova Delphini 1967", + "type": "NB", + "maxMagnitude": 3.7, + "minMagnitude": 12.4, + "peakJD": 2439838, + "m2": 167, + "m3": 231, + "m6": 1387, + "RA": "20h42m20.4s", + "Dec": "19d09m39s" + }, + "LV Vul": + { + "name": "Nova Vulpeculae 1968", + "type": "NA", + "maxMagnitude": 5.17, + "minMagnitude": 16.9, + "peakJD": 2439964, + "m2": 20, + "m3": 38, + "m6": 280, + "m9": 784, + "RA": "19h48m00.7s", + "Dec": "27d10m20s" + }, + "FH Ser": + { + "name": "Nova Serpentis 1970", + "type": "NA", + "maxMagnitude": 4.39, + "minMagnitude": 16, + "peakJD": 2440636, + "m2": 49, + "m3": 62, + "m6": 410, + "m9": 1666, + "RA": "18h30m47s", + "Dec": "02d36m52s" + }, + "V1229 Aql": + { + "name": "Nova Aquilae 1970", + "type": "NA", + "maxMagnitude": 6.7, + "minMagnitude": 18, + "peakJD": 2440687, + "m2": 18, + "m3": 32, + "m6": 56, + "RA": "19h24m44.6s", + "Dec": "04d14m48s" + }, + "V1330 Cyg": + { + "name": "Nova Cygni 1970", + "type": "NA", + "maxMagnitude": 7.5, + "minMagnitude": 18.1, + "peakJD": 2440722, + "m2": 161, + "m3": 217, + "RA": "20h52m44.8s", + "Dec": "35d59m28s" + }, + "IV Cep": + { + "name": "Nova Cephei 1971", + "type": "NA", + "maxMagnitude": 7, + "minMagnitude": 19.3, + "peakJD": 2441139, + "RA": "22h04m37s", + "Dec": "53d30m24s" + }, + "V0373 Sct": + { + "name": "Nova Scuti 1975", + "type": "NA", + "maxMagnitude": 6, + "minMagnitude": 18.5, + "peakJD": 2442541, + "m2": 47, + "m3": 79, + "m6": 237, + "m9": 700, + "RA": "18h55m26.8s", + "Dec": "-07d43m05s" + }, + "V1500 Cyg": + { + "name": "Nova Cygni 1975", + "type": "NA", + "maxMagnitude": 1.69, + "minMagnitude": 21, + "peakJD": 2442655, + "m2": 2, + "m3": 4, + "m6": 32, + "m9": 263, + "distance": 6.36, + "RA": "21h11m36.6s", + "Dec": "48d09m02s" + }, + "NQ Vul": + { + "name": "Nova Vulpeculae 1976", + "type": "NB", + "maxMagnitude": 6.01, + "minMagnitude": 18, + "peakJD": 2443085, + "RA": "19h29m14.8s", + "Dec": "20d28m00s" + }, + "HS Sge": + { + "name": "Nova Sagittae 1977", + "type": "NA", + "maxMagnitude": 7.2, + "minMagnitude": 20, + "peakJD": 2443151, + "m2": 15, + "m3": 21, + "m6": 537, + "RA": "19h39m22.1s", + "Dec": "18d07m55s" + }, + "V1668 Cyg": + { + "name": "Nova Cygni 1978", + "type": "NA", + "maxMagnitude": 6, + "minMagnitude": 20, + "peakJD": 2443764, + "m2": 11, + "m3": 26, + "m6": 219, + "m9": 948, + "RA": "21h42m35.3s", + "Dec": "44d01m55s" + }, + "V1370 Aql": + { + "name": "Nova Cygni 1978", + "type": "NA", + "maxMagnitude": 6, + "minMagnitude": 20, + "peakJD": 2443764, + "m2": 15, + "m3": 28, + "m6": 199, + "RA": "21h42m35.3s", + "Dec": "44d01m55s" + }, + "OS And": + { + "name": "Nova Andromedae 1986", + "type": "NA", + "maxMagnitude": 6.3, + "minMagnitude": 18, + "peakJD": 2446772, + "m2": 11, + "m3": 23, + "m6": 199, + "m9": 770, + "RA": "23h12m06s", + "Dec": "47d28m20s" + }, + "V0445 Pup": + { + "name": "Nova Puppis 2000", + "type": "NC:", + "maxMagnitude": 8.6, + "minMagnitude": 14, + "peakJD": 2451869, + "m2": 215, + "m3": 240, + "RA": "07h37m56.9s", + "Dec": "-25d56m59s" + }, + "V1280 Sco": + { + "name": "Nova Scorpii 2007", + "type": "NA", + "maxMagnitude": 3.8, + "minMagnitude": 20, + "peakJD": 2454148, + "RA": "16h57m41.2s", + "Dec": "-32d20m36s" + }, + "KT Eri": + { + "name": "Nova Eridani 2009", + "type": "NA", + "maxMagnitude": 7.34, + "minMagnitude": 15, + "peakJD": 2455155, + "RA": "04h47m54.2s", + "Dec": "-10d10m43s" + }, + "PNV J20233073+2046041": + { + "name": "Nova Delphini 2013", + "type": "NA", + "maxMagnitude": 4.3, + "minMagnitude": 16.9, + "peakJD": 2456521, + "m2": 8, + "m3": 20, + "RA": "20h23m30.68s", + "Dec": "20d46m03.8s" + } + } +} diff -Nru stellarium-0.12.1/plugins/Novae/src/CMakeLists.txt stellarium-0.12.4/plugins/Novae/src/CMakeLists.txt --- stellarium-0.12.1/plugins/Novae/src/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/src/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,57 @@ +INCLUDE_DIRECTORIES( + . + gui + ${CMAKE_BINARY_DIR}/plugins/Novae/src + ${CMAKE_BINARY_DIR}/plugins/Novae/src/gui +) + +LINK_DIRECTORIES(${BUILD_DIR}/src) + +SET(Novae_SRCS + Novae.hpp + Novae.cpp + Nova.hpp + Nova.cpp + gui/NovaeDialog.hpp + gui/NovaeDialog.cpp +) + +SET(NovaeDialog_UIS + gui/novaeDialog.ui +) + +QT4_WRAP_UI(NovaeDialog_UIS_H ${NovaeDialog_UIS}) + +SET(Novae_RES ../resources/Novae.qrc) +QT4_ADD_RESOURCES(Novae_RES_CXX ${Novae_RES}) + +SET(extLinkerOption ${QT_LIBRARIES} ${JPEG_LIBRARIES} ${PNG_LIBRARIES} ${OPENGL_LIBRARIES} ${ICONV_LIBRARIES} ${INTL_LIBRARIES}) + +############### For building the dynamic library ###################### +IF(BUILD_DYNAMIC_PLUGINS) + ADD_LIBRARY(Novae MODULE ${Novae_SRCS} ${Novae_RES_CXX} ${NovaeDialog_UIS_H}) + IF(APPLE) + FIND_LIBRARY(OPENGL_LIBRARY OpenGL) + MARK_AS_ADVANCED(OPENGL_LIBRARY) + SET_TARGET_PROPERTIES(Novae PROPERTIES LINK_FLAGS "-undefined dynamic_lookup" SUFFIX ".dylib") + ENDIF() + + IF(WIN32) + SET_TARGET_PROPERTIES(Novae PROPERTIES LINK_FLAGS "-Wl,--enable-runtime-pseudo-reloc -Wl,--allow-multiple-definition" ) + SET(StelMain stelMain) + ELSE(WIN32) + SET(StelMain ) + ENDIF(WIN32) + + TARGET_LINK_LIBRARIES(Novae ${StelMain} ${extLinkerOption}) + INSTALL(TARGETS Novae DESTINATION "modules/Novae") +ENDIF() + +############### For building the static library ###################### +IF(BUILD_STATIC_PLUGINS) + ADD_LIBRARY(Novae-static STATIC ${Novae_SRCS} ${Novae_RES_CXX} ${NovaeDialog_UIS_H}) + SET_TARGET_PROPERTIES(Novae-static PROPERTIES OUTPUT_NAME "Novae") + TARGET_LINK_LIBRARIES(Novae-static ${extLinkerOption}) + SET_TARGET_PROPERTIES(Novae-static PROPERTIES COMPILE_FLAGS "-DQT_STATICPLUGIN") + ADD_DEPENDENCIES(AllStaticPlugins Novae-static) +ENDIF() diff -Nru stellarium-0.12.1/plugins/Novae/src/Nova.cpp stellarium-0.12.4/plugins/Novae/src/Nova.cpp --- stellarium-0.12.1/plugins/Novae/src/Nova.cpp 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/src/Nova.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,335 @@ +/* + * Copyright (C) 2013 Alexander Wolf + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. + */ + +#include "Nova.hpp" +#include "StelObject.hpp" +#include "StelApp.hpp" +#include "StelCore.hpp" +#include "StelUtils.hpp" +#include "StelTranslator.hpp" +#include "StelModuleMgr.hpp" +#include "StelSkyDrawer.hpp" +#include "StarMgr.hpp" +#include "StelRenderer.hpp" +#include "StelLocaleMgr.hpp" + +#include +#include +#include +#include +#include +#include + +Nova::Nova(const QVariantMap& map) + : initialized(false) +{ + // return initialized if the mandatory fields are not present + if (!map.contains("designation")) + return; + + designation = map.value("designation").toString(); + novaName = map.value("name").toString(); + novaType = map.value("type").toString(); + maxMagnitude = map.value("maxMagnitude").toFloat(); + minMagnitude = map.value("minMagnitude", 21).toFloat(); + peakJD = map.value("peakJD").toDouble(); + m2 = map.value("m2", -1).toInt(); + m3 = map.value("m3", -1).toInt(); + m6 = map.value("m6", -1).toInt(); + m9 = map.value("m9", -1).toInt(); + RA = StelUtils::getDecAngle(map.value("RA").toString()); + Dec = StelUtils::getDecAngle(map.value("Dec").toString()); + distance = map.value("distance").toDouble(); + + initialized = true; +} + +Nova::~Nova() +{ + // +} + +QVariantMap Nova::getMap(void) +{ + QVariantMap map; + map["designation"] = designation; + map["name"] = novaName; + map["type"] = novaType; + map["maxMagnitude"] = maxMagnitude; + map["minMagnitude"] = minMagnitude; + map["peakJD"] = peakJD; + map["m2"] = m2; + map["m3"] = m3; + map["m6"] = m6; + map["m9"] = m9; + map["RA"] = RA; + map["Dec"] = Dec; + map["distance"] = distance; + + return map; +} + +float Nova::getSelectPriority(const StelCore* core) const +{ + //Same as StarWrapper::getSelectPriority() + return getVMagnitude(core, false); +} + +QString Nova::getEnglishName() const +{ + return novaName; +} + +QString Nova::getNameI18n() const +{ + return novaName; +} + +QString Nova::getDesignation() const +{ + return designation; +} + +QString Nova::getMaxBrightnessDate(const double JD) const +{ + return StelApp::getInstance().getLocaleMgr().getPrintableDateLocal(JD); +} + +QString Nova::getInfoString(const StelCore* core, const InfoStringGroup& flags) const +{ + QString str; + QTextStream oss(&str); + double mag = getVMagnitude(core, false); + + if (flags&Name) + { + QString name = novaName.isEmpty() ? QString("

    %1

    ").arg(designation) : QString("

    %1 (%2)

    ").arg(novaName).arg(designation); + oss << name; + } + + if (flags&Extra1) + oss << q_("Type: %1 (%2)").arg(q_("nova")).arg(novaType) << "
    "; + + if (flags&Magnitude) + { + if (core->getSkyDrawer()->getFlagHasAtmosphere()) + oss << q_("Magnitude: %1 (extincted to: %2)").arg(QString::number(getVMagnitude(core, false), 'f', 2), + QString::number(getVMagnitude(core, true), 'f', 2)) << "
    "; + else + oss << q_("Magnitude: %1").arg(mag, 0, 'f', 2) << "
    "; + } + + // Ra/Dec etc. + oss << getPositionInfoString(core, flags); + + if (flags&Extra1) + { + oss << q_("Maximum brightness: %1").arg(getMaxBrightnessDate(peakJD)) << "
    "; + if (distance>0) + oss << q_("Distance: %1 Light Years").arg(distance*1000) << "
    "; + } + + postProcessInfoString(str, flags); + return str; +} + +Vec3f Nova::getInfoColor(void) const +{ + return StelApp::getInstance().getVisionModeNight() ? Vec3f(0.6, 0.0, 0.0) : Vec3f(1.0, 1.0, 1.0); +} + +float Nova::getVMagnitude(const StelCore* core, bool withExtinction) const +{ + float extinctionMag=0.0; // track magnitude loss + if (withExtinction && core->getSkyDrawer()->getFlagHasAtmosphere()) + { + Vec3d altAz=getAltAzPosApparent(core); + altAz.normalize(); + core->getSkyDrawer()->getExtinction().forward(&altAz[2], &extinctionMag); + } + + // OK, start from minimal brightness + double vmag = minMagnitude; + double currentJD = core->getJDay(); + double deltaJD = std::abs(peakJD-currentJD); + + // Fill "default" values for mX + int t2; + if (m2 < 0) + { + // m2 is unset, check type of nova + if (novaType.contains("NA", Qt::CaseSensitive)) + t2 = 10; // Ok, "fast" nova + + if (novaType.contains("NB", Qt::CaseSensitive)) + t2 = 80; // Ok, "slow" nova + + if (novaType.contains("NC", Qt::CaseSensitive)) + t2 = 200; // Ok, "very slow" nova + } + else + t2 = m2; + + int t3; + if (m3 < 0) + { + // m3 is unset, check type of nova + if (novaType.contains("NA", Qt::CaseSensitive)) + t3 = 30; // Ok, "fast" nova + + if (novaType.contains("NB", Qt::CaseSensitive)) + t3 = 160; // Ok, "slow" nova + + if (novaType.contains("NC", Qt::CaseSensitive)) + t3 = 300; // Ok, "very slow" nova + } + else + t3 = m3; + + int t6; + if (m6 < 0) + { + // m3 is unset, check type of nova + if (novaType.contains("NA", Qt::CaseSensitive)) + t6 = 100; // Ok, "fast" nova + + if (novaType.contains("NB", Qt::CaseSensitive)) + t6 = 300; // Ok, "slow" nova + + if (novaType.contains("NC", Qt::CaseSensitive)) + t6 = 1200; // Ok, "very slow" nova + } + else + t6 = m6; + + int t9; + if (m9 < 0) + { + // m3 is unset, check type of nova + if (novaType.contains("NA", Qt::CaseSensitive)) + t9 = 400; // Ok, "fast" nova + + if (novaType.contains("NB", Qt::CaseSensitive)) + t9 = 1000; // Ok, "slow" nova + + if (novaType.contains("NC", Qt::CaseSensitive)) + t9 = 3000; // Ok, "very slow" nova + } + else + t9 = m9; + + // Calculate light curve + if (peakJD<=currentJD) + { + float step; + float d2 = maxMagnitude+2.f; + float d3 = maxMagnitude+3.f; + float d6 = maxMagnitude+6.f; + + if (deltaJD>0 && deltaJD<=t2) + { + step = 2.f/t2; + vmag = maxMagnitude + step*deltaJD; + } + + if (deltaJD>t2 && deltaJD<=t3) + { + step = 3.f/t3; + vmag = d2 + step*(deltaJD-t2); + } + + if (deltaJD>t3 && deltaJD<=t6) + { + step = 6.f/t6; + vmag = d3 + step*(deltaJD-t3); + } + + if (deltaJD>t6 && deltaJD<=t9) + { + step = 9.f/t9; + vmag = d6 + step*(deltaJD-t6); + } + + if (deltaJD>t9) + vmag = minMagnitude; + + } + else + { + int dt = 3; + if (deltaJD<=dt) + { + float step = (minMagnitude - maxMagnitude)/dt; // 3 days for outburst + vmag = maxMagnitude + step*deltaJD; + } + } + + if (vmag>minMagnitude) + vmag = minMagnitude; + + return vmag + extinctionMag; +} + +double Nova::getAngularSize(const StelCore*) const +{ + return 0.00001; +} + +void Nova::update(double deltaTime) +{ + labelsFader.update((int)(deltaTime*1000)); +} + +void Nova::draw(StelCore* core, StelRenderer* renderer, StelProjectorP projector) +{ + StelSkyDrawer* sd = core->getSkyDrawer(); + StarMgr* smgr = GETSTELMODULE(StarMgr); // It's need for checking displaying of labels for stars + + Vec3f color = Vec3f(1.f,1.f,1.f); + if (StelApp::getInstance().getVisionModeNight()) + color = StelUtils::getNightColor(color); + + float rcMag[2], size, shift; + double mag; + + StelUtils::spheToRect(RA, Dec, XYZ); + mag = getVMagnitude(core, true); + sd->preDrawPointSource(); + float mlimit = sd->getLimitMagnitude(); + + if (mag <= mlimit) + { + sd->computeRCMag(mag, rcMag); + const Vec3f XYZf(XYZ[0], XYZ[1], XYZ[2]); + Vec3f win; + if(sd->pointSourceVisible(&(*projector), XYZf, rcMag, false, win)) + { + sd->drawPointSource(win, rcMag, color); + } + renderer->setGlobalColor(color[0], color[1], color[2], 1); + size = getAngularSize(NULL)*M_PI/180.*projector->getPixelPerRadAtCenter(); + shift = 6.f + size/1.8f; + if (labelsFader.getInterstate()<=0.f && (mag+5.f)getFlagLabels()) + { + QString name = novaName.isEmpty() ? designation : novaName; + renderer->drawText(TextParams(XYZ, projector, name).shift(shift, shift).useGravity()); + } + } + + sd->postDrawPointSource(projector); +} diff -Nru stellarium-0.12.1/plugins/Novae/src/Nova.hpp stellarium-0.12.4/plugins/Novae/src/Nova.hpp --- stellarium-0.12.1/plugins/Novae/src/Nova.hpp 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/src/Nova.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,101 @@ +/* + * Copyright (C) 2013 Alexander Wolf + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. + */ + +#ifndef _NOVA_HPP_ +#define _NOVA_HPP_ 1 + +#include +#include +#include +#include +#include +#include + +#include "StelObject.hpp" +#include "StelFader.hpp" +#include "StelProjectorType.hpp" + + +//! @class Nova +//! A Nova object represents one nova on the sky. +//! Details about the novae are passed using a QVariant which contains +//! a map of data from the json file. + +class Nova : public StelObject +{ + friend class Novae; +public: + //! @param id The official designation for a nova, e.g. "........" + Nova(const QVariantMap& map); + ~Nova(); + + //! Get a QVariantMap which describes the nova. Could be used to + //! create a duplicate. + QVariantMap getMap(void); + + virtual QString getType(void) const + { + return "Nova"; + } + virtual float getSelectPriority(const StelCore* core) const; + + //! Get an HTML string to describe the object + //! @param core A pointer to the core + //! @flags a set of flags with information types to include. + virtual QString getInfoString(const StelCore* core, const InfoStringGroup& flags) const; + virtual Vec3f getInfoColor(void) const; + virtual Vec3d getJ2000EquatorialPos(const StelCore*) const + { + return XYZ; + } + virtual float getVMagnitude(const StelCore* core, bool withExtinction=false) const; + virtual double getAngularSize(const StelCore* core) const; + virtual QString getNameI18n(void) const; + virtual QString getEnglishName(void) const; + QString getDesignation(void) const; + + void update(double deltaTime); + +private: + bool initialized; + + Vec3d XYZ; // holds J2000 position + + void draw(StelCore* core, class StelRenderer* renderer, StelProjectorP projector); + + // Nova + QString designation; //! The ID of the nova + QString novaName; //! Name of the nova + QString novaType; //! Type of the nova + float maxMagnitude; //! Maximal visual magnitude + float minMagnitude; //! Minimal visual magnitude + double peakJD; //! Julian Day of max. vis. mag. + int m2; //! Time to decline by 2mag from maximum + int m3; //! Time to decline by 3mag from maximum + int m6; //! Time to decline by 6mag from maximum + int m9; //! Time to decline by 9mag from maximum + double RA; //! R.A. for the nova + double Dec; //! Dec. for the nova + double distance; //! Distance to nova (10^3 ly) + + LinearFader labelsFader; + + QString getMaxBrightnessDate(const double JD) const; +}; + +#endif // _NOVA_HPP_ diff -Nru stellarium-0.12.1/plugins/Novae/src/Novae.cpp stellarium-0.12.4/plugins/Novae/src/Novae.cpp --- stellarium-0.12.1/plugins/Novae/src/Novae.cpp 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/src/Novae.cpp 2013-09-13 10:51:45.000000000 +0000 @@ -0,0 +1,719 @@ +/* + * Copyright (C) 2013 Alexander Wolf + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. + */ + +#include "StelProjector.hpp" +#include "StelApp.hpp" +#include "StelCore.hpp" +#include "StelGui.hpp" +#include "StelGuiItems.hpp" +#include "StelLocaleMgr.hpp" +#include "StelModuleMgr.hpp" +#include "StelObjectMgr.hpp" +#include "StelJsonParser.hpp" +#include "StelFileMgr.hpp" +#include "StelUtils.hpp" +#include "StelTranslator.hpp" +#include "LabelMgr.hpp" +#include "Nova.hpp" +#include "Novae.hpp" +#include "renderer/StelRenderer.hpp" +#include "renderer/StelTextureNew.hpp" +#include "NovaeDialog.hpp" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define CATALOG_FORMAT_VERSION 1 /* Version of format of catalog */ + +/* + This method is the one called automatically by the StelModuleMgr just + after loading the dynamic library +*/ +StelModule* NovaeStelPluginInterface::getStelModule() const +{ + return new Novae(); +} + +StelPluginInfo NovaeStelPluginInterface::getPluginInfo() const +{ + Q_INIT_RESOURCE(Novae); + + StelPluginInfo info; + info.id = "Novae"; + info.displayedName = N_("Bright Novae"); + info.authors = "Alexander Wolf"; + info.contact = "alex.v.wolf@gmail.com"; + info.description = N_("A plugin that shows some bright novae in the Milky Way galaxy."); + return info; +} + +Q_EXPORT_PLUGIN2(Novae, NovaeStelPluginInterface) + + +/* + Constructor +*/ +Novae::Novae() + : texPointer(NULL) + , progressBar(NULL) +{ + setObjectName("Novae"); + configDialog = new NovaeDialog(); + conf = StelApp::getInstance().getSettings(); + font.setPixelSize(conf->value("gui/base_font_size", 13).toInt()); +} + +/* + Destructor +*/ +Novae::~Novae() +{ + delete configDialog; +} + +void Novae::deinit() +{ + if(NULL != texPointer) + { + delete texPointer; + } +} + +/* + Reimplementation of the getCallOrder method +*/ +double Novae::getCallOrder(StelModuleActionName actionName) const +{ + if (actionName==StelModule::ActionDraw) + return StelApp::getInstance().getModuleMgr().getModule("ConstellationMgr")->getCallOrder(actionName)+10.; + return 0; +} + + +/* + Init our module +*/ +void Novae::init() +{ + try + { + StelFileMgr::makeSureDirExistsAndIsWritable(StelFileMgr::getUserDir()+"/modules/Novae"); + + // If no settings in the main config file, create with defaults + if (!conf->childGroups().contains("Novae")) + { + qDebug() << "Novae::init no Novae section exists in main config file - creating with defaults"; + restoreDefaultConfigIni(); + } + + // populate settings from main config file. + readSettingsFromConfig(); + + novaeJsonPath = StelFileMgr::findFile("modules/Novae", (StelFileMgr::Flags)(StelFileMgr::Directory|StelFileMgr::Writable)) + "/novae.json"; + // key bindings and other actions + StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); + + connect(gui->getGuiAction("actionShow_Novae_ConfigDialog"), SIGNAL(toggled(bool)), configDialog, SLOT(setVisible(bool))); + connect(configDialog, SIGNAL(visibleChanged(bool)), gui->getGuiAction("actionShow_Novae_ConfigDialog"), SLOT(setChecked(bool))); + } + catch (std::runtime_error &e) + { + qWarning() << "Novas::init error: " << e.what(); + return; + } + + // A timer for hiding alert messages + messageTimer = new QTimer(this); + messageTimer->setSingleShot(true); // recurring check for update + messageTimer->setInterval(9000); // 6 seconds should be enough time + messageTimer->stop(); + connect(messageTimer, SIGNAL(timeout()), this, SLOT(messageTimeout())); + + // If the json file does not already exist, create it from the resource in the Qt resource + if(QFileInfo(novaeJsonPath).exists()) + { + if (!checkJsonFileFormat() || getJsonFileVersion()setSingleShot(false); // recurring check for update + updateTimer->setInterval(13000); // check once every 13 seconds to see if it is time for an update + connect(updateTimer, SIGNAL(timeout()), this, SLOT(checkForUpdate())); + updateTimer->start(); + + GETSTELMODULE(StelObjectMgr)->registerStelObjectMgr(this); +} + +/* + Draw our module. This should print name of first Nova in the main window +*/ +void Novae::draw(StelCore* core, StelRenderer* renderer) +{ + StelProjectorP prj = core->getProjection(StelCore::FrameJ2000); + renderer->setFont(font); + + foreach (const NovaP& n, nova) + { + if (n && n->initialized) + { + n->draw(core, renderer, prj); + } + } + + if (GETSTELMODULE(StelObjectMgr)->getFlagSelectedObjectPointer()) + { + drawPointer(core, renderer, prj); + } +} + +void Novae::drawPointer(StelCore* core, StelRenderer* renderer, StelProjectorP projector) +{ + const QList newSelected = GETSTELMODULE(StelObjectMgr)->getSelectedObject("Nova"); + if (!newSelected.empty()) + { + const StelObjectP obj = newSelected[0]; + Vec3d pos=obj->getJ2000EquatorialPos(core); + + Vec3d screenpos; + // Compute 2D pos and return if outside screen + if (!projector->project(pos, screenpos)) + { + return; + } + + const Vec3f& c(obj->getInfoColor()); + renderer->setGlobalColor(c[0],c[1],c[2]); + if(NULL == texPointer) + { + texPointer = renderer->createTexture("textures/pointeur2.png"); + } + texPointer->bind(); + renderer->setBlendMode(BlendMode_Alpha); + renderer->drawTexturedRect(screenpos[0] - 13.0f, screenpos[1] - 13.0f, 26.0f, 26.0f, + StelApp::getInstance().getTotalRunTime() * 40.0f); + } +} + +QList Novae::searchAround(const Vec3d& av, double limitFov, const StelCore*) const +{ + QList result; + + Vec3d v(av); + v.normalize(); + double cosLimFov = cos(limitFov * M_PI/180.); + Vec3d equPos; + + foreach(const NovaP& n, nova) + { + if (n->initialized) + { + equPos = n->XYZ; + equPos.normalize(); + if (equPos[0]*v[0] + equPos[1]*v[1] + equPos[2]*v[2]>=cosLimFov) + { + result.append(qSharedPointerCast(n)); + } + } + } + + return result; +} + +StelObjectP Novae::searchByName(const QString& englishName) const +{ + foreach(const NovaP& n, nova) + { + if (n->getEnglishName().toUpper() == englishName.toUpper() || n->getDesignation().toUpper() == englishName.toUpper()) + return qSharedPointerCast(n); + } + + return NULL; +} + +StelObjectP Novae::searchByNameI18n(const QString& nameI18n) const +{ + foreach(const NovaP& n, nova) + { + if (n->getNameI18n().toUpper() == nameI18n.toUpper() || n->getDesignation().toUpper() == nameI18n.toUpper()) + return qSharedPointerCast(n); + } + + return NULL; +} + +QStringList Novae::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const +{ + QStringList result; + if (maxNbItem==0) + return result; + + QString sn; + bool find; + foreach(const NovaP& n, nova) + { + sn = n->getNameI18n(); + find = false; + if (useStartOfWords) + { + if (objPrefix.toUpper()==sn.toUpper().left(objPrefix.length())) + find = true; + } + else + { + if (sn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << sn; + } + } + + result.sort(); + if (result.size()>maxNbItem) + result.erase(result.begin()+maxNbItem, result.end()); + + return result; +} + +QStringList Novae::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const +{ + QStringList result; + if (maxNbItem==0) + return result; + + QString sn; + bool find; + foreach(const NovaP& n, nova) + { + sn = n->getEnglishName(); + find = false; + if (useStartOfWords) + { + if (objPrefix.toUpper()==sn.toUpper().left(objPrefix.length())) + find = true; + } + else + { + if (sn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << sn; + } + + sn = n->getDesignation(); + find = false; + if (useStartOfWords) + { + if (objPrefix.toUpper()==sn.toUpper().left(objPrefix.length())) + find = true; + } + else + { + if (sn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << sn; + } + } + + result.sort(); + if (result.size()>maxNbItem) + result.erase(result.begin()+maxNbItem, result.end()); + + return result; +} + +QStringList Novae::listAllObjects(bool inEnglish) const +{ + QStringList result; + if (inEnglish) + { + foreach (const NovaP& n, nova) + { + result << n->getEnglishName(); + } + } + else + { + foreach (const NovaP& n, nova) + { + result << n->getNameI18n(); + } + } + return result; +} + +/* + Replace the JSON file with the default from the compiled-in resource +*/ +void Novae::restoreDefaultJsonFile(void) +{ + if (QFileInfo(novaeJsonPath).exists()) + backupJsonFile(true); + + QFile src(":/Novae/novae.json"); + if (!src.copy(novaeJsonPath)) + { + qWarning() << "Novae::restoreDefaultJsonFile cannot copy json resource to " + QDir::toNativeSeparators(novaeJsonPath); + } + else + { + qDebug() << "Novae::init copied default novae.json to " << QDir::toNativeSeparators(novaeJsonPath); + // The resource is read only, and the new file inherits this... make sure the new file + // is writable by the Stellarium process so that updates can be done. + QFile dest(novaeJsonPath); + dest.setPermissions(dest.permissions() | QFile::WriteOwner); + + // Make sure that in the case where an online update has previously been done, but + // the json file has been manually removed, that an update is schreduled in a timely + // manner + conf->remove("Novae/last_update"); + lastUpdate = QDateTime::fromString("2012-05-24T12:00:00", Qt::ISODate); + } +} + +/* + Creates a backup of the novae.json file called novae.json.old +*/ +bool Novae::backupJsonFile(bool deleteOriginal) +{ + QFile old(novaeJsonPath); + if (!old.exists()) + { + qWarning() << "Novae::backupJsonFile no file to backup"; + return false; + } + + QString backupPath = novaeJsonPath + ".old"; + if (QFileInfo(backupPath).exists()) + QFile(backupPath).remove(); + + if (old.copy(backupPath)) + { + if (deleteOriginal) + { + if (!old.remove()) + { + qWarning() << "Novae::backupJsonFile WARNING - could not remove old novae.json file"; + return false; + } + } + } + else + { + qWarning() << "Novae::backupJsonFile WARNING - failed to copy novae.json to novae.json.old"; + return false; + } + + return true; +} + +/* + Read the JSON file and create list of novae. +*/ +void Novae::readJsonFile(void) +{ + setNovaeMap(loadNovaeMap()); +} + +/* + Parse JSON file and load novae to map +*/ +QVariantMap Novae::loadNovaeMap(QString path) +{ + if (path.isEmpty()) + path = novaeJsonPath; + + QVariantMap map; + QFile jsonFile(path); + if (!jsonFile.open(QIODevice::ReadOnly)) + qWarning() << "Novae::loadNovaeMap cannot open " << QDir::toNativeSeparators(path); + else + map = StelJsonParser::parse(jsonFile.readAll()).toMap(); + + jsonFile.close(); + return map; +} + +/* + Set items for list of struct from data map +*/ +void Novae::setNovaeMap(const QVariantMap& map) +{ + nova.clear(); + novalist.clear(); + QVariantMap novaeMap = map.value("nova").toMap(); + foreach(QString novaeKey, novaeMap.keys()) + { + QVariantMap novaeData = novaeMap.value(novaeKey).toMap(); + novaeData["designation"] = QString("%1").arg(novaeKey); + + novalist.insert(novaeData.value("designation").toString(), novaeData.value("peakJD").toDouble()); + + NovaP n(new Nova(novaeData)); + if (n->initialized) + nova.append(n); + + } +} + +int Novae::getJsonFileVersion(void) +{ + int jsonVersion = -1; + QFile novaeJsonFile(novaeJsonPath); + if (!novaeJsonFile.open(QIODevice::ReadOnly)) + { + qWarning() << "Novae::init cannot open " << QDir::toNativeSeparators(novaeJsonPath); + return jsonVersion; + } + + QVariantMap map; + map = StelJsonParser::parse(&novaeJsonFile).toMap(); + if (map.contains("version")) + { + jsonVersion = map.value("version").toInt(); + } + + novaeJsonFile.close(); + qDebug() << "Novae::getJsonFileVersion() version from file:" << jsonVersion; + return jsonVersion; +} + +bool Novae::checkJsonFileFormat() +{ + QFile novaeJsonFile(novaeJsonPath); + if (!novaeJsonFile.open(QIODevice::ReadOnly)) + { + qWarning() << "Novae::checkJsonFileFormat(): cannot open " << QDir::toNativeSeparators(novaeJsonPath); + return false; + } + + QVariantMap map; + try + { + map = StelJsonParser::parse(&novaeJsonFile).toMap(); + novaeJsonFile.close(); + } + catch (std::runtime_error& e) + { + qDebug() << "Novae::checkJsonFileFormat(): file format is wrong!"; + qDebug() << "Novae::checkJsonFileFormat() error:" << e.what(); + return false; + } + + return true; +} + +NovaP Novae::getByID(const QString& id) +{ + foreach(const NovaP& n, nova) + { + if (n->initialized && n->designation == id) + return n; + } + return NovaP(); +} + +bool Novae::configureGui(bool show) +{ + if (show) + { + StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); + gui->getGuiAction("actionShow_Novae_ConfigDialog")->setChecked(true); + } + + return true; +} + +void Novae::restoreDefaults(void) +{ + restoreDefaultConfigIni(); + restoreDefaultJsonFile(); + readJsonFile(); + readSettingsFromConfig(); +} + +void Novae::restoreDefaultConfigIni(void) +{ + conf->beginGroup("Novae"); + + // delete all existing Novae settings... + conf->remove(""); + + conf->setValue("updates_enabled", true); + conf->setValue("url", "http://stellarium.org/json/novae.json"); + conf->setValue("update_frequency_days", 100); + conf->endGroup(); +} + +void Novae::readSettingsFromConfig(void) +{ + conf->beginGroup("Novae"); + + updateUrl = conf->value("url", "http://stellarium.org/json/novae.json").toString(); + updateFrequencyDays = conf->value("update_frequency_days", 100).toInt(); + lastUpdate = QDateTime::fromString(conf->value("last_update", "2013-08-28T12:00:00").toString(), Qt::ISODate); + updatesEnabled = conf->value("updates_enabled", true).toBool(); + + conf->endGroup(); +} + +void Novae::saveSettingsToConfig(void) +{ + conf->beginGroup("Novae"); + + conf->setValue("url", updateUrl); + conf->setValue("update_frequency_days", updateFrequencyDays); + conf->setValue("updates_enabled", updatesEnabled ); + + conf->endGroup(); +} + +int Novae::getSecondsToUpdate(void) +{ + QDateTime nextUpdate = lastUpdate.addSecs(updateFrequencyDays * 3600 * 24); + return QDateTime::currentDateTime().secsTo(nextUpdate); +} + +void Novae::checkForUpdate(void) +{ + if (updatesEnabled && lastUpdate.addSecs(updateFrequencyDays * 3600 * 24) <= QDateTime::currentDateTime()) + updateJSON(); +} + +void Novae::updateJSON(void) +{ + if (updateState==Novae::Updating) + { + qWarning() << "Novae: already updating... will not start again current update is complete."; + return; + } + else + { + qDebug() << "Novae: starting update..."; + } + + lastUpdate = QDateTime::currentDateTime(); + conf->setValue("Novae/last_update", lastUpdate.toString(Qt::ISODate)); + + updateState = Novae::Updating; + emit(updateStateChanged(updateState)); + + if (progressBar==NULL) + progressBar = StelApp::getInstance().getGui()->addProgressBar(); + + progressBar->setValue(0); + progressBar->setMaximum(100); + progressBar->setFormat("Update novae"); + progressBar->setVisible(true); + + QNetworkRequest request; + request.setUrl(QUrl(updateUrl)); + request.setRawHeader("User-Agent", QString("Mozilla/5.0 (Stellarium Bright Novae Plugin %1; http://stellarium.org/)").arg(NOVAE_PLUGIN_VERSION).toUtf8()); + downloadMgr->get(request); + + updateState = Novae::CompleteUpdates; + emit(updateStateChanged(updateState)); + emit(jsonUpdateComplete()); +} + +void Novae::updateDownloadComplete(QNetworkReply* reply) +{ + // check the download worked, and save the data to file if this is the case. + if (reply->error() != QNetworkReply::NoError) + { + qWarning() << "Novae::updateDownloadComplete FAILED to download" << reply->url() << " Error: " << reply->errorString(); + } + else + { + // download completed successfully. + try + { + QString jsonFilePath = StelFileMgr::findFile("modules/Novae", StelFileMgr::Flags(StelFileMgr::Writable|StelFileMgr::Directory)) + "/novae.json"; + QFile jsonFile(jsonFilePath); + if (jsonFile.exists()) + jsonFile.remove(); + + jsonFile.open(QIODevice::WriteOnly | QIODevice::Text); + jsonFile.write(reply->readAll()); + jsonFile.close(); + } + catch (std::runtime_error &e) + { + qWarning() << "Novae::updateDownloadComplete: cannot write JSON data to file:" << e.what(); + } + + } + + if (progressBar) + { + progressBar->setValue(100); + delete progressBar; + progressBar = NULL; + } +} + +void Novae::displayMessage(const QString& message, const QString hexColor) +{ + messageIDs << GETSTELMODULE(LabelMgr)->labelScreen(message, 30, 30 + (20*messageIDs.count()), true, 16, hexColor); + messageTimer->start(); +} + +void Novae::messageTimeout(void) +{ + foreach(int i, messageIDs) + { + GETSTELMODULE(LabelMgr)->deleteLabel(i); + } +} + diff -Nru stellarium-0.12.1/plugins/Novae/src/Novae.hpp stellarium-0.12.4/plugins/Novae/src/Novae.hpp --- stellarium-0.12.1/plugins/Novae/src/Novae.hpp 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/src/Novae.hpp 2013-09-13 10:51:45.000000000 +0000 @@ -0,0 +1,255 @@ +/* + * Copyright (C) 2013 Alexander Wolf + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. + */ + +#ifndef _NOVAE_HPP_ +#define _NOVAE_HPP_ + +#include "StelObjectModule.hpp" +#include "StelObject.hpp" +#include "StelFader.hpp" +#include "Nova.hpp" +#include +#include +#include +#include +#include +#include + +class QNetworkAccessManager; +class QNetworkReply; +class QProgressBar; +class QSettings; +class QTimer; +class NovaeDialog; + +typedef QSharedPointer NovaP; + +/*! @mainpage notitle +@section overview Plugin Overview + +The %Bright Novae plugin displays the positions some bright +novae in the Milky Way galaxy. + +@section ncat Bright Novae Catalog +The novae catalog is stored on the disk in [JSON](http://www.json.org/) +format, in a file named "novae.json". A default copy is embedded in the +plug-in at compile time. A working copy is kept in the user data directory. + +@section config Configuration +The plug-ins' configuration data is stored in Stellarium's main configuration +file. +*/ + +//! @class Novae +//! Main class of the %Bright Novae plugin. +//! @author Alexander Wolf +class Novae : public StelObjectModule +{ + Q_OBJECT +public: + //! @enum UpdateState + //! Used for keeping for track of the download/update status + enum UpdateState { + Updating, //!< Update in progress + CompleteNoUpdates, //!< Update completed, there we no updates + CompleteUpdates, //!< Update completed, there were updates + DownloadError, //!< Error during download phase + OtherError //!< Other error + }; + + Novae(); + virtual ~Novae(); + + /////////////////////////////////////////////////////////////////////////// + // Methods defined in the StelModule class + virtual void init(); + virtual void deinit(); + virtual void update(double) {;} + virtual void draw(StelCore* core, class StelRenderer* renderer); + virtual void drawPointer(StelCore* core, class StelRenderer* renderer, StelProjectorP projector); + virtual double getCallOrder(StelModuleActionName actionName) const; + + /////////////////////////////////////////////////////////////////////////// + // Methods defined in StelObjectManager class + //! Used to get a list of objects which are near to some position. + //! @param v a vector representing the position in th sky around which to search for nebulae. + //! @param limitFov the field of view around the position v in which to search for satellites. + //! @param core the StelCore to use for computations. + //! @return an list containing the satellites located inside the limitFov circle around position v. + virtual QList searchAround(const Vec3d& v, double limitFov, const StelCore* core) const; + + //! Return the matching satellite object's pointer if exists or NULL. + //! @param nameI18n The case in-sensistive satellite name + virtual StelObjectP searchByNameI18n(const QString& nameI18n) const; + + //! Return the matching satellite if exists or NULL. + //! @param name The case in-sensistive standard program name + virtual StelObjectP searchByName(const QString& name) const; + + //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. + //! @param objPrefix the case insensitive first letters of the searched object + //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names + //! @return a list of matching object name by order of relevance, or an empty list if nothing match + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; + //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. + //! @param objPrefix the case insensitive first letters of the searched object + //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names + //! @return a list of matching object name by order of relevance, or an empty list if nothing match + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; + virtual QStringList listAllObjects(bool inEnglish) const; + virtual QString getName() const { return "Bright Novae"; } + + //! get a nova object by identifier + NovaP getByID(const QString& id); + + //! Implement this to tell the main Stellarium GUI that there is a GUI element to configure this + //! plugin. + virtual bool configureGui(bool show=true); + + //! Set up the plugin with default values. This means clearing out the Pulsars section in the + //! main config.ini (if one already exists), and populating it with default values. It also + //! creates the default novae.json file from the resource embedded in the plugin lib/dll file. + void restoreDefaults(void); + + //! Read (or re-read) settings from the main config file. This will be called from init and also + //! when restoring defaults (i.e. from the configuration dialog / restore defaults button). + void readSettingsFromConfig(void); + + //! Save the settings to the main configuration file. + void saveSettingsToConfig(void); + + //! Get whether or not the plugin will try to update catalog data from the internet + //! @return true if updates are set to be done, false otherwise + bool getUpdatesEnabled(void) {return updatesEnabled;} + //! Set whether or not the plugin will try to update catalog data from the internet + //! @param b if true, updates will be enabled, else they will be disabled + void setUpdatesEnabled(bool b) {updatesEnabled=b;} + + //! Get the date and time the novae were updated + QDateTime getLastUpdate(void) {return lastUpdate;} + + //! Get the update frequency in days + int getUpdateFrequencyDays(void) {return updateFrequencyDays;} + void setUpdateFrequencyDays(int days) {updateFrequencyDays = days;} + + //! Get the number of seconds till the next update + int getSecondsToUpdate(void); + + //! Get the current updateState + UpdateState getUpdateState(void) {return updateState;} + +signals: + //! @param state the new update state. + void updateStateChanged(Novae::UpdateState state); + + //! Emitted after a JSON update has run. + void jsonUpdateComplete(void); + +public slots: + // FIXME: Add functions for scripting support + + //! Download JSON from web recources described in the module section of the + //! module.ini file and update the local JSON file. + void updateJSON(void); + + //! Display a message. This is used for plugin-specific warnings and such + void displayMessage(const QString& message, const QString hexColor="#999999"); + void messageTimeout(void); + +private: + // Font used for displaying our text + QFont font; + + // if existing, delete Satellites section in main config.ini, then create with default values + void restoreDefaultConfigIni(void); + + //! Replace the JSON file with the default from the compiled-in resource + void restoreDefaultJsonFile(void); + + //! Read the JSON file and create list of novae. + void readJsonFile(void); + + //! Creates a backup of the novae.json file called novae.json.old + //! @param deleteOriginal if true, the original file is removed, else not + //! @return true on OK, false on failure + bool backupJsonFile(bool deleteOriginal=false); + + //! Get the version from the "version" value in the novae.json file + //! @return version string, e.g. "1" + int getJsonFileVersion(void); + + //! Check format of the catalog of novae + //! @return valid boolean, e.g. "true" + bool checkJsonFileFormat(void); + + //! Parse JSON file and load novae to map + QVariantMap loadNovaeMap(QString path=QString()); + + //! Set items for list of struct from data map + void setNovaeMap(const QVariantMap& map); + + QString novaeJsonPath; + + class StelTextureNew* texPointer; + QList nova; + QHash novalist; + + // variables and functions for the updater + UpdateState updateState; + QNetworkAccessManager* downloadMgr; + QString updateUrl; + QProgressBar* progressBar; + QTimer* updateTimer; + QTimer* messageTimer; + QList messageIDs; + bool updatesEnabled; + QDateTime lastUpdate; + int updateFrequencyDays; + + QSettings* conf; + + // GUI + NovaeDialog* configDialog; + +private slots: + //! Check to see if an update is required. This is called periodically by a timer + //! if the last update was longer than updateFrequencyHours ago then the update is + //! done. + void checkForUpdate(void); + void updateDownloadComplete(QNetworkReply* reply); + +}; + + +#include "fixx11h.h" +#include +#include "StelPluginInterface.hpp" + +//! This class is used by Qt to manage a plug-in interface +class NovaeStelPluginInterface : public QObject, public StelPluginInterface +{ + Q_OBJECT + Q_INTERFACES(StelPluginInterface) +public: + virtual StelModule* getStelModule() const; + virtual StelPluginInfo getPluginInfo() const; +}; + +#endif /*_NOVAE_HPP_*/ diff -Nru stellarium-0.12.1/plugins/Novae/src/gui/NovaeDialog.cpp stellarium-0.12.4/plugins/Novae/src/gui/NovaeDialog.cpp --- stellarium-0.12.1/plugins/Novae/src/gui/NovaeDialog.cpp 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/src/gui/NovaeDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,227 @@ +/* + * Stellarium Novae Plug-in GUI + * + * Copyright (C) 2013 Alexander Wolf + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. +*/ + +#include +#include +#include +#include +#include + +#include "StelApp.hpp" +#include "ui_novaeDialog.h" +#include "NovaeDialog.hpp" +#include "Novae.hpp" +#include "StelModuleMgr.hpp" +#include "StelObjectMgr.hpp" +#include "StelMovementMgr.hpp" +#include "StelStyle.hpp" +#include "StelGui.hpp" +#include "StelMainGraphicsView.hpp" +#include "StelFileMgr.hpp" +#include "StelTranslator.hpp" + +NovaeDialog::NovaeDialog() : updateTimer(NULL) +{ + ui = new Ui_novaeDialog; +} + +NovaeDialog::~NovaeDialog() +{ + if (updateTimer) + { + updateTimer->stop(); + delete updateTimer; + updateTimer = NULL; + } + delete ui; +} + +void NovaeDialog::retranslate() +{ + if (dialog) + { + ui->retranslateUi(dialog); + refreshUpdateValues(); + setAboutHtml(); + } +} + +// Initialize the dialog widgets and connect the signals/slots +void NovaeDialog::createDialogContent() +{ + ui->setupUi(dialog); + ui->tabs->setCurrentIndex(0); + connect(&StelApp::getInstance(), SIGNAL(languageChanged()), + this, SLOT(retranslate())); + + // Settings tab / updates group + connect(ui->internetUpdatesCheckbox, SIGNAL(stateChanged(int)), this, SLOT(setUpdatesEnabled(int))); + connect(ui->updateButton, SIGNAL(clicked()), this, SLOT(updateJSON())); + connect(GETSTELMODULE(Novae), SIGNAL(updateStateChanged(Novae::UpdateState)), this, SLOT(updateStateReceiver(Novae::UpdateState))); + connect(GETSTELMODULE(Novae), SIGNAL(jsonUpdateComplete(void)), this, SLOT(updateCompleteReceiver(void))); + connect(ui->updateFrequencySpinBox, SIGNAL(valueChanged(int)), this, SLOT(setUpdateValues(int))); + refreshUpdateValues(); // fetch values for last updated and so on + // if the state didn't change, setUpdatesEnabled will not be called, so we force it + setUpdatesEnabled(ui->internetUpdatesCheckbox->checkState()); + + updateTimer = new QTimer(this); + connect(updateTimer, SIGNAL(timeout()), this, SLOT(refreshUpdateValues())); + updateTimer->start(7000); + + connect(ui->closeStelWindow, SIGNAL(clicked()), this, SLOT(close())); + + connect(ui->restoreDefaultsButton, SIGNAL(clicked()), this, SLOT(restoreDefaults())); + connect(ui->saveSettingsButton, SIGNAL(clicked()), this, SLOT(saveSettings())); + + // About tab + setAboutHtml(); + StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); + Q_ASSERT(gui); + ui->aboutTextBrowser->document()->setDefaultStyleSheet(QString(gui->getStelStyle().htmlStyleSheet)); + + updateGuiFromSettings(); + +} + +void NovaeDialog::setAboutHtml(void) +{ + QString html = ""; + html += "

    " + q_("Bright Novae Plug-in") + "

    "; + html += ""; + html += ""; + html += "
    " + q_("Version") + ":" + NOVAE_PLUGIN_VERSION + "
    " + q_("Author") + ":Alexander Wolf <alex.v.wolf@gmail.com>
    "; + + html += "

    " + q_("A plugin that shows some bright novae in the Milky Way galaxy."); + html += " " + q_("You can find novae via search tool by entering designation of nova or its common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg').") + "

    "; + + html += "

    " + q_("Light curves") + "

    "; + html += q_("This plugin uses a very simple model for calculation of light curves for novae stars.") + " "; + html += q_("This model is based on time for decay by %1 magnitudes from the maximum value, where %1 is 2, 3, 6 and 9.").arg("N") + " "; + html += q_("If a nova has no values for decay of magnitude then this plugin will use generalized values for it."); + html += "

    "; + + html += "

    " + q_("Links") + "

    "; + html += "

    " + QString(q_("Support is provided via the Launchpad website. Be sure to put \"%1\" in the subject when posting.")).arg("Bright Novae plugin") + "

    "; + html += "

      "; + // TRANSLATORS: The numbers contain the opening and closing tag of an HTML link + html += "
    • " + QString(q_("If you have a question, you can %1get an answer here%2").arg("")).arg("") + "
    • "; + // TRANSLATORS: The numbers contain the opening and closing tag of an HTML link + html += "
    • " + QString(q_("Bug reports can be made %1here%2.")).arg("").arg("") + "
    • "; + // TRANSLATORS: The numbers contain the opening and closing tag of an HTML link + html += "
    • " + q_("If you would like to make a feature request, you can create a bug report, and set the severity to \"wishlist\".") + "
    • "; + // TRANSLATORS: The numbers contain the opening and closing tag of an HTML link + html += "
    • " + q_("If you want to read full information about this plugin, its history and catalog format, you can %1get info here%2.").arg("").arg("") + "
    • "; + html += "

    "; + + StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); + Q_ASSERT(gui); + QString htmlStyleSheet(gui->getStelStyle().htmlStyleSheet); + ui->aboutTextBrowser->document()->setDefaultStyleSheet(htmlStyleSheet); + + ui->aboutTextBrowser->setHtml(html); +} + +void NovaeDialog::refreshUpdateValues(void) +{ + ui->lastUpdateDateTimeEdit->setDateTime(GETSTELMODULE(Novae)->getLastUpdate()); + ui->updateFrequencySpinBox->setValue(GETSTELMODULE(Novae)->getUpdateFrequencyDays()); + int secondsToUpdate = GETSTELMODULE(Novae)->getSecondsToUpdate(); + ui->internetUpdatesCheckbox->setChecked(GETSTELMODULE(Novae)->getUpdatesEnabled()); + if (!GETSTELMODULE(Novae)->getUpdatesEnabled()) + ui->nextUpdateLabel->setText(q_("Internet updates disabled")); + else if (GETSTELMODULE(Novae)->getUpdateState() == Novae::Updating) + ui->nextUpdateLabel->setText(q_("Updating now...")); + else if (secondsToUpdate <= 60) + ui->nextUpdateLabel->setText(q_("Next update: < 1 minute")); + else if (secondsToUpdate < 3600) + ui->nextUpdateLabel->setText(QString(q_("Next update: %1 minutes")).arg((secondsToUpdate/60)+1)); + else if (secondsToUpdate < 86400) + ui->nextUpdateLabel->setText(QString(q_("Next update: %1 hours")).arg((secondsToUpdate/3600)+1)); + else + ui->nextUpdateLabel->setText(QString(q_("Next update: %1 days")).arg((secondsToUpdate/86400)+1)); +} + +void NovaeDialog::setUpdateValues(int days) +{ + GETSTELMODULE(Novae)->setUpdateFrequencyDays(days); + refreshUpdateValues(); +} + +void NovaeDialog::setUpdatesEnabled(int checkState) +{ + bool b = checkState != Qt::Unchecked; + GETSTELMODULE(Novae)->setUpdatesEnabled(b); + ui->updateFrequencySpinBox->setEnabled(b); + if(b) + ui->updateButton->setText(q_("Update now")); + else + ui->updateButton->setText(q_("Update from files")); + + refreshUpdateValues(); +} + +void NovaeDialog::updateStateReceiver(Novae::UpdateState state) +{ + //qDebug() << "NovaeDialog::updateStateReceiver got a signal"; + if (state==Novae::Updating) + ui->nextUpdateLabel->setText(q_("Updating now...")); + else if (state==Novae::DownloadError || state==Novae::OtherError) + { + ui->nextUpdateLabel->setText(q_("Update error")); + updateTimer->start(); // make sure message is displayed for a while... + } +} + +void NovaeDialog::updateCompleteReceiver(void) +{ + ui->nextUpdateLabel->setText(QString(q_("Novae is updated"))); + // display the status for another full interval before refreshing status + updateTimer->start(); + ui->lastUpdateDateTimeEdit->setDateTime(GETSTELMODULE(Novae)->getLastUpdate()); + QTimer *timer = new QTimer(this); + connect(timer, SIGNAL(timeout()), this, SLOT(refreshUpdateValues())); +} + +void NovaeDialog::restoreDefaults(void) +{ + qDebug() << "Novae::restoreDefaults"; + GETSTELMODULE(Novae)->restoreDefaults(); + GETSTELMODULE(Novae)->readSettingsFromConfig(); + updateGuiFromSettings(); +} + +void NovaeDialog::updateGuiFromSettings(void) +{ + ui->internetUpdatesCheckbox->setChecked(GETSTELMODULE(Novae)->getUpdatesEnabled()); + refreshUpdateValues(); +} + +void NovaeDialog::saveSettings(void) +{ + GETSTELMODULE(Novae)->saveSettingsToConfig(); +} + +void NovaeDialog::updateJSON(void) +{ + if(GETSTELMODULE(Novae)->getUpdatesEnabled()) + { + GETSTELMODULE(Novae)->updateJSON(); + } +} diff -Nru stellarium-0.12.1/plugins/Novae/src/gui/NovaeDialog.hpp stellarium-0.12.4/plugins/Novae/src/gui/NovaeDialog.hpp --- stellarium-0.12.1/plugins/Novae/src/gui/NovaeDialog.hpp 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/src/gui/NovaeDialog.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,64 @@ +/* + * Stellarium Novae Plug-in GUI + * + * Copyright (C) 2013 Alexander Wolf + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. +*/ + +#ifndef _NOVAEDIALOG_HPP_ +#define _NOVAEDIALOG_HPP_ + +#include +#include "StelDialog.hpp" +#include "Novae.hpp" + +class Ui_novaeDialog; +class QTimer; + +class NovaeDialog : public StelDialog +{ + Q_OBJECT + +public: + NovaeDialog(); + ~NovaeDialog(); + +protected: + //! Initialize the dialog widgets and connect the signals/slots + void createDialogContent(); + +public slots: + void retranslate(); + void refreshUpdateValues(void); + +private slots: + void setUpdateValues(int days); + void setUpdatesEnabled(int checkState); + void updateStateReceiver(Novae::UpdateState state); + void updateCompleteReceiver(); + void restoreDefaults(void); + void saveSettings(void); + void updateJSON(void); + +private: + Ui_novaeDialog* ui; + void setAboutHtml(void); + void updateGuiFromSettings(void); + QTimer* updateTimer; + +}; + +#endif // _NOVAEDIALOG_HPP_ diff -Nru stellarium-0.12.1/plugins/Novae/src/gui/novaeDialog.ui stellarium-0.12.4/plugins/Novae/src/gui/novaeDialog.ui --- stellarium-0.12.1/plugins/Novae/src/gui/novaeDialog.ui 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Novae/src/gui/novaeDialog.ui 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,311 @@ + + + novaeDialog + + + + 0 + 0 + 537 + 465 + + + + Bright Novae Configuration + + + + 0 + + + 0 + + + + + + 0 + 0 + + + + + 530 + 25 + + + + + 16777215 + 25 + + + + Qt::NoFocus + + + false + + + QFrame::StyledPanel + + + + 0 + + + 0 + + + 0 + + + 4 + + + 0 + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Bright Novae Plug-in Configuration + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 16 + 16 + + + + + 16 + 16 + + + + Qt::NoFocus + + + + + + + + + + + + + 0 + + + false + + + + Settings + + + + + + Update catalog from Internet + + + true + + + false + + + + + + Update from Internet sources + + + + + + + + + Last update: + + + + + + + false + + + false + + + QAbstractSpinBox::NoButtons + + + + + + + Update frequency (days): + + + + + + + 1 + + + 9999 + + + 1 + + + + + + + [next update info] + + + + + + + Qt::Horizontal + + + + 17 + 20 + + + + + + + + Update now + + + + + + + + + + + + Qt::Vertical + + + + 20 + 120 + + + + + + + + + + + 0 + 0 + + + + Restore default settings + + + + + + + + 0 + 0 + + + + Save settings as default + + + + + + + + + + About + + + + 9 + + + + + true + + + true + + + + + + + + + + + + BarFrame + QFrame +
    Dialog.hpp
    + 1 +
    +
    + + +
    diff -Nru stellarium-0.12.1/plugins/Observability/CMakeLists.txt stellarium-0.12.4/plugins/Observability/CMakeLists.txt --- stellarium-0.12.1/plugins/Observability/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Observability/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,4 +1,4 @@ -SET(OBSERVABILITY_VERSION "1.1.0") +SET(OBSERVABILITY_VERSION "1.1.1") IF(APPLE) SET(CMAKE_INSTALL_PREFIX $ENV{HOME}/Library/Application\ Support/Stellarium) diff -Nru stellarium-0.12.1/plugins/Observability/src/Observability.cpp stellarium-0.12.4/plugins/Observability/src/Observability.cpp --- stellarium-0.12.1/plugins/Observability/src/Observability.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Observability/src/Observability.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include @@ -156,7 +156,11 @@ conf->endGroup(); ///////////////////////////////// - + // Apply format for date from main settings + if (conf->value("localization/date_display_format", "system_default").toString() == "ddmmyyyy") + setDateFormat(true); + else + setDateFormat(false); // Dummy initial values for parameters and data vectors: mylat = 1000.; mylon = 1000.; @@ -188,14 +192,6 @@ yearJD[i] = 0.0; }; - - // Set names of the months: - QString mons[12]={qc_("Jan", "short month name"), qc_("Feb", "short month name"), qc_("Mar", "short month name"), qc_("Apr", "short month name"), qc_("May", "short month name"), qc_("Jun", "short month name"), qc_("Jul", "short month name"), qc_("Aug", "short month name"), qc_("Sep", "short month name"), qc_("Oct", "short month name"), qc_("Nov", "short month name"), qc_("Dec", "short month name")}; - - for (int i=0;i<12;i++) { - months[i]=mons[i]; - }; - } Observability::~Observability() @@ -209,6 +205,45 @@ delete configDialog; } +void Observability::updateMessageText() +{ + // Set names of the months: + QString mons[12]={qc_("Jan", "short month name"), qc_("Feb", "short month name"), qc_("Mar", "short month name"), qc_("Apr", "short month name"), qc_("May", "short month name"), qc_("Jun", "short month name"), qc_("Jul", "short month name"), qc_("Aug", "short month name"), qc_("Sep", "short month name"), qc_("Oct", "short month name"), qc_("Nov", "short month name"), qc_("Dec", "short month name")}; + + for (int i=0;i<12;i++) { + months[i]=mons[i]; + }; + + msgH = q_("h"); + msgM = q_("m"); + msgS = q_("s"); + msgSetsAt = q_("Sets at %1 (in %2)"); + msgRoseAt = q_("Rose at %1 (%2 ago)"); + msgSetAt = q_("Set at %1 (%2 ago)"); + msgRisesAt = q_("Rises at %1 (in %2)"); + msgCircumpolar = q_("Circumpolar."); + msgNoRise = q_("No rise."); + msgCulminatesAt = q_("Culminates at %1 (in %2) at %3 deg."); + msgCulminatedAt = q_("Culminated at %1 (%2 ago) at %3 deg."); + msgSrcNotObs = q_("Source is not observable."); + msgNoACRise = q_("No Acronychal nor Cosmical rise/set."); + msgGreatElong = q_("Greatest elongation: "); + msgLargSSep = q_("Largest Sun separation: "); + msgAtDeg = q_(" (at %1 deg.)"); + msgNone = q_("None"); + msgAcroRise = q_("Acronychal rise/set"); + msgNoAcroRise = q_("No Acronychal rise/set."); + msgCosmRise = q_("Cosmical rise/set"); + msgNoCosmRise = q_("No Cosmical rise/set."); + msgWholeYear = q_("Observable during the whole year."); + msgNotObs = q_("Not observable at dark night."); + msgAboveHoriz = q_("Nights above horizon: "); + msgToday = q_("TODAY:"); + msgThisYear = q_("THIS YEAR:"); + msgPrevFullMoon = q_("Previous Full Moon: %1 %2 at %3:%4. "); + msgNextFullMoon = q_("Next Full Moon: %1 %2 at %3:%4. "); +} + double Observability::getCallOrder(StelModuleActionName actionName) const { if (actionName==StelModule::ActionDraw) @@ -238,6 +273,9 @@ { qWarning() << "WARNING: unable create toolbar button for Observability plugin (or load gonfig GUI). " << e.what(); }; + + updateMessageText(); + connect(&StelApp::getInstance(), SIGNAL(languageChanged()), this, SLOT(updateMessageText())); } ///////////////////////////////////////////// @@ -496,8 +534,8 @@ double2hms(TFrac*Rise,d2,m2,s2); // Strings with time spans for rise/set/transit: - RS1 = (d1==0)?"":QString("%1%2 ").arg(d1).arg(q_("h")); RS1 += (m1==0)?"":QString("%1%2 ").arg(m1).arg(q_("m")); RS1 += QString("%1%2").arg(s1).arg(q_("s")); - RS2 = (d2==0)?"":QString("%1%2 ").arg(d2).arg(q_("h")); RS2 += (m2==0)?"":QString("%1%2 ").arg(m2).arg(q_("m")); RS2 += QString("%1%2").arg(s2).arg(q_("s")); + RS1 = (d1==0)?"":QString("%1%2 ").arg(d1).arg(msgH); RS1 += (m1==0)?"":QString("%1%2 ").arg(m1).arg(msgM); RS1 += QString("%1%2").arg(s1).arg(msgS); + RS2 = (d2==0)?"":QString("%1%2 ").arg(d2).arg(msgH); RS2 += (m2==0)?"":QString("%1%2 ").arg(m2).arg(msgM); RS2 += QString("%1%2").arg(s2).arg(msgS); if (raised) { double2hms(toUnsignedRA(currLocalT+TFrac*Set+12.),ephHour,ephMinute,ephSecond); @@ -506,8 +544,10 @@ double2hms(toUnsignedRA(currLocalT-TFrac*Rise+12.),ephHour,ephMinute,ephSecond); // Local time for rise. RiseTime = QString("%1:%2").arg(ephHour).arg(ephMinute,2,10,QLatin1Char('0')); - RS1 = q_("Sets at %1 (in %2)").arg(SetTime).arg(RS1); - RS2 = q_("Rose at %1 (%2 ago)").arg(RiseTime).arg(RS2); + //RS1 = q_("Sets at %1 (in %2)").arg(SetTime).arg(RS1); + //RS2 = q_("Rose at %1 (%2 ago)").arg(RiseTime).arg(RS2); + RS1 = msgSetsAt.arg(SetTime).arg(RS1); + RS2 = msgRoseAt.arg(RiseTime).arg(RS2); } else { @@ -517,12 +557,14 @@ double2hms(toUnsignedRA(currLocalT+TFrac*Rise+12.),ephHour,ephMinute,ephSecond); RiseTime = QString("%1:%2").arg(ephHour).arg(ephMinute,2,10,QLatin1Char('0')); - RS1 = q_("Set at %1 (%2 ago)").arg(SetTime).arg(RS1); - RS2 = q_("Rises at %1 (in %2)").arg(RiseTime).arg(RS2); + //RS1 = q_("Set at %1 (%2 ago)").arg(SetTime).arg(RS1); + //RS2 = q_("Rises at %1 (in %2)").arg(RiseTime).arg(RS2); + RS1 = msgSetAt.arg(SetTime).arg(RS1); + RS2 = msgRisesAt.arg(RiseTime).arg(RS2); }; } else { // The source is either circumpolar or never rises: - (alti>RefracHoriz)? RS1 = q_("Circumpolar."): RS1 = q_("No rise."); + (alti>RefracHoriz)? RS1 = msgCircumpolar: RS1 = msgNoRise; RS2 = ""; }; @@ -539,16 +581,20 @@ double2hms(TFrac*currH,dc,mc,sc); // String with the time span for culmination: - Cul = (dc==0)?"":QString("%1%2 ").arg(dc).arg(q_("h")); Cul += (mc==0)?"":QString("%1%2 ").arg(mc).arg(q_("m")); Cul += QString("%1%2").arg(sc).arg(q_("s")); + Cul = (dc==0)?"":QString("%1%2 ").arg(dc).arg(msgH); Cul += (mc==0)?"":QString("%1%2 ").arg(mc).arg(msgM); Cul += QString("%1%2").arg(sc).arg(msgS); if (transit==false) { double2hms(toUnsignedRA(currLocalT+TFrac*currH+12.),ephHour,ephMinute,ephSecond); // Local time at transit. CulmTime = QString("%1:%2").arg(ephHour).arg(ephMinute,2,10,QLatin1Char('0')); - Cul = q_("Culminates at %1 (in %2) at %3 deg.").arg(CulmTime).arg(Cul).arg(altiAtCulmi,0,'f',1);} - else { + //Cul = q_("Culminates at %1 (in %2) at %3 deg.").arg(CulmTime).arg(Cul).arg(altiAtCulmi,0,'f',1); + Cul = msgCulminatesAt.arg(CulmTime).arg(Cul).arg(altiAtCulmi,0,'f',1); + } + else + { double2hms(toUnsignedRA(currLocalT-TFrac*currH+12.),ephHour,ephMinute,ephSecond); CulmTime = QString("%1:%2").arg(ephHour).arg(ephMinute,2,10,QLatin1Char('0')); - Cul = q_("Culminated at %1 (%2 ago) at %3 deg.").arg(CulmTime).arg(Cul).arg(altiAtCulmi,0,'f',1); + //Cul = q_("Culminated at %1 (%2 ago) at %3 deg.").arg(CulmTime).arg(Cul).arg(altiAtCulmi,0,'f',1); + Cul = msgCulminatedAt.arg(CulmTime).arg(Cul).arg(altiAtCulmi,0,'f',1); }; }; @@ -589,8 +635,10 @@ bestNight=""; ObsRange = ""; if (culmAlt>=halfpi-RefracHoriz) { // Source cannot be seen. - ObsRange = q_("Source is not observable."); - AcroCos = q_("No Acronychal nor Cosmical rise/set."); + //ObsRange = q_("Source is not observable."); + //AcroCos = q_("No Acronychal nor Cosmical rise/set."); + ObsRange = msgSrcNotObs; + AcroCos = msgNoACRise; } else { // Source can be seen. @@ -607,13 +655,16 @@ if (selName=="Mercury" || selName=="Venus") { - bestNight = q_("Greatest elongation: "); + //bestNight = q_("Greatest elongation: "); + bestNight = msgGreatElong; } else { - bestNight = q_("Largest Sun separation: "); + //bestNight = q_("Largest Sun separation: "); + bestNight = msgLargSSep; }; - bestNight = bestNight + CalenDate(selday) + q_(" (at %1 deg.)").arg(deltaPhs*Rad2Deg,0,'f',1); + //bestNight = bestNight + CalenDate(selday) + q_(" (at %1 deg.)").arg(deltaPhs*Rad2Deg,0,'f',1); + bestNight = bestNight + CalenDate(selday) + msgAtDeg.arg(deltaPhs*Rad2Deg,0,'f',1); }; /////////////////////////////// @@ -625,14 +676,16 @@ QString AcroRiseStr, AcroSetStr; QString CosmRiseStr, CosmSetStr; - AcroRiseStr = (selRise>0)?CalenDate(selRise):q_("None"); - AcroSetStr = (selSet>0)?CalenDate(selSet):q_("None"); + AcroRiseStr = (selRise>0)?CalenDate(selRise):msgNone; + AcroSetStr = (selSet>0)?CalenDate(selSet):msgNone; - CosmRiseStr = (selRise2>0)?CalenDate(selRise2):q_("None"); - CosmSetStr = (selSet2>0)?CalenDate(selSet2):q_("None"); + CosmRiseStr = (selRise2>0)?CalenDate(selRise2):msgNone; + CosmSetStr = (selSet2>0)?CalenDate(selSet2):msgNone; - AcroCos = (Acro==3 || Acro==1)?QString("%1: %2/%3.").arg(q_("Acronychal rise/set")).arg(AcroRiseStr).arg(AcroSetStr):q_("No Acronychal rise/set."); - AcroCos += (Acro==3 || Acro==2)?QString(" %1: %2/%3.").arg(q_("Cosmical rise/set")).arg(CosmRiseStr).arg(CosmSetStr):QString(" %1").arg(q_("No Cosmical rise/set.")); + //AcroCos = (Acro==3 || Acro==1)?QString("%1: %2/%3.").arg(q_("Acronychal rise/set")).arg(AcroRiseStr).arg(AcroSetStr):q_("No Acronychal rise/set."); + //AcroCos += (Acro==3 || Acro==2)?QString(" %1: %2/%3.").arg(q_("Cosmical rise/set")).arg(CosmRiseStr).arg(CosmSetStr):QString(" %1").arg(q_("No Cosmical rise/set.")); + AcroCos = (Acro==3 || Acro==1)?QString("%1: %2/%3.").arg(msgAcroRise).arg(AcroRiseStr).arg(AcroSetStr):msgNoAcroRise; + AcroCos += (Acro==3 || Acro==2)?QString(" %1: %2/%3.").arg(msgCosmRise).arg(CosmRiseStr).arg(CosmSetStr):QString(" %1").arg(msgNoCosmRise); }; @@ -678,16 +731,19 @@ { if (atLeastOne) { // The whole year is good. - ObsRange = q_("Observable during the whole year."); + //ObsRange = q_("Observable during the whole year."); + ObsRange = msgWholeYear; } else { - ObsRange = q_("Not observable at dark night."); + //ObsRange = q_("Not observable at dark night."); + ObsRange = msgNotObs; }; } else { - ObsRange = QString("%1 %2").arg(q_("Nights above horizon: ")).arg(dateRange); + //ObsRange = QString("%1 %2").arg(q_("Nights above horizon: ")).arg(dateRange); + ObsRange = QString("%1 %2").arg(msgAboveHoriz).arg(dateRange); }; }; // Comes from show_Good_Nights==True" @@ -704,7 +760,8 @@ if (show_Today) { - renderer->drawText(TextParams(xLine, yLine,q_("TODAY:"))); + //renderer->drawText(TextParams(xLine, yLine,q_("TODAY:"))); + renderer->drawText(TextParams(xLine, yLine,msgToday)); renderer->drawText(TextParams(xLine+fontSize, yLine-spacing, RS2)); renderer->drawText(TextParams(xLine+fontSize, yLine-spacing*2, RS1)); renderer->drawText(TextParams(xLine+fontSize, yLine-spacing*3, Cul)); @@ -713,7 +770,8 @@ if ((isMoon && show_FullMoon) || (!isSun && !isMoon && show_Year)) { - renderer->drawText(TextParams(xLine,yLine,q_("THIS YEAR:"))); + //renderer->drawText(TextParams(xLine,yLine,q_("THIS YEAR:"))); + renderer->drawText(TextParams(xLine,yLine,msgThisYear)); if (show_Best_Night || show_FullMoon) { yLine -= spacing; @@ -787,7 +845,6 @@ hfloat = std::abs(hfloat); double ffrac = std::modf(hfloat,&f1); double ffrac2 = std::modf(60.*ffrac,&f2); - //FIXME: ffrac2 is unused variable; need fix ffrac2 = std::modf(3600.*(ffrac-f2/60.),&f3); h1 = (int)f1 ; h2 = (int)std::abs(f2+0.0*ffrac2) ; h3 = (int)std::abs(f3); } @@ -814,7 +871,14 @@ { int day,month,year; StelUtils::getDateFromJulianDay(yearJD[selday],&year,&month,&day); - return QString("%1 %2").arg(day).arg(months[month-1]); + + QString r; + if (getDateFormat()) + r = QString("%1 %2").arg(day).arg(months[month-1]); + else + r = QString("%1 %2").arg(months[month-1]).arg(day); + + return r; } ////////////////////////////////////////////// @@ -838,11 +902,17 @@ } if (month1==month2) { - range = QString("%1 - %2 %3").arg(day1).arg(day2).arg(months[month1-1]); + if (getDateFormat()) + range = QString("%1 - %2 %3").arg(day1).arg(day2).arg(months[month1-1]); + else + range = QString("%3 %1 - %2").arg(day1).arg(day2).arg(months[month1-1]); } else { - range = QString("%1 %2 - %3 %4").arg(day1).arg(months[month1-1]).arg(day2).arg(months[month2-1]); + if (getDateFormat()) + range = QString("%1 %2 - %3 %4").arg(day1).arg(months[month1-1]).arg(day2).arg(months[month2-1]); + else + range = QString("%1 %2 - %3 %4").arg(months[month1-1]).arg(day1).arg(months[month2-1]).arg(day2); } return range; @@ -1447,12 +1517,18 @@ double LocalTMoon = 24.*modf(LocalPrev,&intMoon); StelUtils::getDateFromJulianDay(intMoon,&fullYear,&fullMonth,&fullDay); double2hms(toUnsignedRA(LocalTMoon),fullHour,fullMinute,fullSecond); - bestNight = q_("Previous Full Moon: %1 %2 at %3:%4. ").arg(months[fullMonth-1]).arg(fullDay).arg(fullHour).arg(fullMinute,2,10,QLatin1Char('0')); + if (getDateFormat()) + bestNight = msgPrevFullMoon.arg(fullDay).arg(months[fullMonth-1]).arg(fullHour).arg(fullMinute,2,10,QLatin1Char('0')); + else + bestNight = msgPrevFullMoon.arg(months[fullMonth-1]).arg(fullDay).arg(fullHour).arg(fullMinute,2,10,QLatin1Char('0')); LocalTMoon = 24.*modf(LocalNext,&intMoon); StelUtils::getDateFromJulianDay(intMoon,&fullYear,&fullMonth,&fullDay); double2hms(toUnsignedRA(LocalTMoon),fullHour,fullMinute,fullSecond); - bestNight += q_("Next Full Moon: %1 %2 at %3:%4. ").arg(months[fullMonth-1]).arg(fullDay).arg(fullHour).arg(fullMinute,2,10,QLatin1Char('0')); + if (getDateFormat()) + bestNight += msgNextFullMoon.arg(fullDay).arg(months[fullMonth-1]).arg(fullHour).arg(fullMinute,2,10,QLatin1Char('0')); + else + bestNight += msgNextFullMoon.arg(months[fullMonth-1]).arg(fullDay).arg(fullHour).arg(fullMinute,2,10,QLatin1Char('0')); ObsRange = ""; AcroCos = ""; diff -Nru stellarium-0.12.1/plugins/Observability/src/Observability.hpp stellarium-0.12.4/plugins/Observability/src/Observability.hpp --- stellarium-0.12.1/plugins/Observability/src/Observability.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Observability/src/Observability.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef OBSERVABILITY_HPP_ #define OBSERVABILITY_HPP_ @@ -95,6 +95,9 @@ //! Set whether observability will execute or not: void enableObservability(bool b); +private slots: + void updateMessageText(); + private: @@ -103,6 +106,8 @@ QByteArray normalStyleSheet; QByteArray nightStyleSheet; + void setDateFormat(bool b) { dmyFormat=b; } + bool getDateFormat(void) { return dmyFormat; } //! Computes the Hour Angle (culmination=0h) in absolute value (from 0h to 12h). //! @param latitude latitude of the observer (in radians). @@ -243,6 +248,9 @@ //! Just the names of the months. QString months[12]; +//! Using for storage date format [i18n] + bool dmyFormat; + //! Equatorial and local coordinates of currently-selected source. Vec3d EquPos, LocPos; @@ -263,6 +271,9 @@ QPixmap* GlowIcon; StelButton* toolbarButton; + QString msgSetsAt, msgRoseAt, msgSetAt, msgRisesAt, msgCircumpolar, msgNoRise, msgCulminatesAt, msgCulminatedAt, msgH, msgM, msgS; + QString msgSrcNotObs, msgNoACRise, msgGreatElong, msgLargSSep, msgAtDeg, msgNone, msgAcroRise, msgNoAcroRise, msgCosmRise, msgNoCosmRise; + QString msgWholeYear, msgNotObs, msgAboveHoriz, msgToday, msgThisYear, msgPrevFullMoon, msgNextFullMoon; }; diff -Nru stellarium-0.12.1/plugins/Oculars/CMakeLists.txt stellarium-0.12.4/plugins/Oculars/CMakeLists.txt --- stellarium-0.12.1/plugins/Oculars/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -1,6 +1,6 @@ SET(OCULARS_STELMODULE_MAJOR "1") SET(OCULARS_STELMODULE_MINOR "0") -SET(OCULARS_STELMODULE_PATCH "1") +SET(OCULARS_STELMODULE_PATCH "5") SET(OCULARS_VERSION "${OCULARS_STELMODULE_MAJOR}.${OCULARS_STELMODULE_MINOR}.${OCULARS_STELMODULE_PATCH}") IF(APPLE) diff -Nru stellarium-0.12.1/plugins/Oculars/resources/default_ocular.ini stellarium-0.12.4/plugins/Oculars/resources/default_ocular.ini --- stellarium-0.12.1/plugins/Oculars/resources/default_ocular.ini 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/resources/default_ocular.ini 2013-09-07 15:50:48.000000000 +0000 @@ -6,6 +6,7 @@ telescope_count=2 enable_control_panel=true use_decimal_degrees=false +limit_stellar_magnitude=true lens_count=3 [ocular] diff -Nru stellarium-0.12.1/plugins/Oculars/src/CCD.cpp stellarium-0.12.4/plugins/Oculars/src/CCD.cpp --- stellarium-0.12.1/plugins/Oculars/src/CCD.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/src/CCD.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -18,6 +18,7 @@ #include "CCD.hpp" #include "Telescope.hpp" +#include "Lens.hpp" #include #include @@ -140,15 +141,17 @@ m_pixelHeight = height; } -double CCD::getActualFOVx(Telescope *telescope) const +double CCD::getActualFOVx(Telescope *telescope, Lens *lens) const { - double FOVx = RADIAN_TO_DEGREES * this->chipHeight() / telescope->focalLength(); + const double lens_multipler = (lens != NULL ? lens->multipler() : 1.0f); + double FOVx = RADIAN_TO_DEGREES * this->chipHeight() / (telescope->focalLength() * lens_multipler); return FOVx; } -double CCD::getActualFOVy(Telescope *telescope) const +double CCD::getActualFOVy(Telescope *telescope, Lens *lens) const { - double FOVy = RADIAN_TO_DEGREES * this->chipWidth() / telescope->focalLength(); + const double lens_multipler = (lens != NULL ? lens->multipler() : 1.0f); + double FOVy = RADIAN_TO_DEGREES * this->chipWidth() / (telescope->focalLength() * lens_multipler); return FOVy; } diff -Nru stellarium-0.12.1/plugins/Oculars/src/CCD.hpp stellarium-0.12.4/plugins/Oculars/src/CCD.hpp --- stellarium-0.12.1/plugins/Oculars/src/CCD.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/src/CCD.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -24,6 +24,7 @@ #include class Telescope; +class Lens; class CCD : public QObject { @@ -62,8 +63,8 @@ * The formula for this calculation comes from the Yerkes observatory. * fov degrees = 2PI/360degrees * chipDimension mm / telescope FL mm */ - double getActualFOVx(Telescope *telescope) const; - double getActualFOVy(Telescope *telescope) const; + double getActualFOVx(Telescope *telescope, Lens *lens) const; + double getActualFOVy(Telescope *telescope, Lens *lens) const; QMap propertyMap(); private: QString m_name; diff -Nru stellarium-0.12.1/plugins/Oculars/src/Oculars.cpp stellarium-0.12.4/plugins/Oculars/src/Oculars.cpp --- stellarium-0.12.1/plugins/Oculars/src/Oculars.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/src/Oculars.cpp 2013-09-13 10:51:45.000000000 +0000 @@ -49,6 +49,7 @@ #include #include #include +#include #include @@ -79,7 +80,7 @@ StelPluginInfo info; info.id = "Oculars"; info.displayedName = N_("Oculars"); - info.authors = "Timothy Reaves, Bogdan Marinov"; + info.authors = "Timothy Reaves, Bogdan Marinov, Pawel Stolowski"; info.contact = "treaves@silverfieldstech.com"; info.description = N_("Shows the sky as if looking through a telescope eyepiece. (Only magnification and field of view are simulated.) It can also show a sensor frame and a Telrad sight."); return info; @@ -535,6 +536,7 @@ enableGuiPanel(guiPanelEnabled); setFlagDecimalDegrees(settings->value("use_decimal_degrees", false).toBool()); + setFlagLimitMagnitude(settings->value("limit_stellar_magnitude", true).toBool()); } catch (std::runtime_error& e) { qWarning() << "WARNING: unable to locate ocular.ini file or create a default one for Ocular plugin: " << e.what(); ready = false; @@ -610,11 +612,12 @@ void Oculars::setScreenFOVForCCD() { + Lens *lens = selectedLensIndex >=0 ? lense[selectedLensIndex] : NULL; if (selectedCCDIndex > -1 && selectedTelescopeIndex > -1) { StelCore *core = StelApp::getInstance().getCore(); StelMovementMgr *movementManager = core->getMovementMgr(); - double actualFOVx = ccds[selectedCCDIndex]->getActualFOVx(telescopes[selectedTelescopeIndex]); - double actualFOVy = ccds[selectedCCDIndex]->getActualFOVy(telescopes[selectedTelescopeIndex]); + double actualFOVx = ccds[selectedCCDIndex]->getActualFOVx(telescopes[selectedTelescopeIndex], lens); + double actualFOVy = ccds[selectedCCDIndex]->getActualFOVy(telescopes[selectedTelescopeIndex], lens); if (actualFOVx < actualFOVy) { actualFOVx = actualFOVy; } @@ -856,10 +859,13 @@ void Oculars::decrementLensIndex() { - selectedLensIndex++; + selectedLensIndex--; if (selectedLensIndex == lense.count()) { selectedLensIndex = -1; } + if (selectedLensIndex == -2) { + selectedLensIndex = lense.count() - 1; + } emit(selectedLensChanged()); } @@ -1024,6 +1030,8 @@ { QMenu* submenu = addTelescopeSubmenu(popup); popup->addMenu(submenu); + submenu = addLensSubmenu(popup); + popup->addMenu(submenu); popup->addSeparator(); } } @@ -1268,10 +1276,10 @@ pxmapOnIcon = new QPixmap(":/ocular/bt_ocular_on.png"); pxmapOffIcon = new QPixmap(":/ocular/bt_ocular_off.png"); toolbarButton = new StelButton(NULL, - *pxmapOnIcon, - *pxmapOffIcon, - *pxmapGlow, - actionShowOcular); + *pxmapOnIcon, + *pxmapOffIcon, + *pxmapGlow, + actionShowOcular); gui->getButtonBar()->addButton(toolbarButton, "065-pluginsGroup"); } catch (std::runtime_error& e) { qWarning() << "WARNING: unable create toolbar button for Oculars plugin: " << e.what(); @@ -1301,6 +1309,22 @@ connect(ocularDialog, SIGNAL(visibleChanged(bool)), actionConfiguration, SLOT(setChecked(bool))); + // Select next telescope via keyboard + actionTelescopeIncrement = shMgr->getGuiAction("actionShow_Telescope_Increment"); + connect(actionTelescopeIncrement, SIGNAL(toggled(bool)), this, SLOT(incrementTelescopeIndex())); + + // Select previous telescope via keyboard + actionTelescopeDecrement = shMgr->getGuiAction("actionShow_Telescope_Decrement"); + connect(actionTelescopeDecrement, SIGNAL(toggled(bool)), this, SLOT(decrementTelescopeIndex())); + + // Select next eyepiece via keyboard + actionOcularIncrement = shMgr->getGuiAction("actionShow_Ocular_Increment"); + connect(actionOcularIncrement, SIGNAL(toggled(bool)), this, SLOT(incrementOcularIndex())); + + // Select previous eyepiece via keyboard + actionOcularDecrement = shMgr->getGuiAction("actionShow_Ocular_Decrement"); + connect(actionOcularDecrement, SIGNAL(toggled(bool)), this, SLOT(decrementOcularIndex())); + connect(this, SIGNAL(selectedCCDChanged()), this, SLOT(instrumentChanged())); connect(this, SIGNAL(selectedCCDChanged()), this, SLOT(setScreenFOVForCCD())); connect(this, SIGNAL(selectedOcularChanged()), this, SLOT(instrumentChanged())); @@ -1335,6 +1359,7 @@ { StelCore *core = StelApp::getInstance().getCore(); StelProjector::StelProjectorParams params = core->getCurrentStelProjectorParams(); + Lens *lens = selectedLensIndex >=0 ? lense[selectedLensIndex] : NULL; renderer->setBlendMode(BlendMode_None); @@ -1350,8 +1375,8 @@ if (ccd) { renderer->setGlobalColor(0.77f, 0.14f, 0.16f, 0.5f); Telescope *telescope = telescopes[selectedTelescopeIndex]; - const double ccdXRatio = ccd->getActualFOVx(telescope) / screenFOV; - const double ccdYRatio = ccd->getActualFOVy(telescope) / screenFOV; + const double ccdXRatio = ccd->getActualFOVx(telescope, lens) / screenFOV; + const double ccdYRatio = ccd->getActualFOVy(telescope, lens) / screenFOV; // As the FOV is based on the narrow aspect of the screen, we need to calculate // height & width based soley off of that dimension. int aspectIndex = 2; @@ -1565,7 +1590,7 @@ } else { - lensNumberLabel = QString (q_("Lens: none")); //FIXME + lensNumberLabel = QString (q_("Lens: none")); } renderer->drawText(TextParams(xPosition, yPosition, lensNumberLabel)); yPosition-=lineHeight; @@ -1607,8 +1632,8 @@ // The CCD if (flagShowCCD) { QString ccdSensorLabel, ccdInfoLabel; - double fovX = ((int)(ccd->getActualFOVx(telescope) * 1000.0)) / 1000.0; - double fovY = ((int)(ccd->getActualFOVy(telescope) * 1000.0)) / 1000.0; + double fovX = ((int)(ccd->getActualFOVx(telescope, lens) * 1000.0)) / 1000.0; + double fovY = ((int)(ccd->getActualFOVy(telescope, lens) * 1000.0)) / 1000.0; ccdInfoLabel = QString(q_("Dimensions: %1")).arg(getDimensionsString(fovX, fovY)); QString name = ccd->name(); @@ -1660,13 +1685,13 @@ qWarning() << "Oculars::validateIniFile cannot copy default_ocular.ini resource to [non-existing] " + ocularIniPath; } else { - qDebug() << "Oculars::validateIniFile copied default_ocular.ini to " << ocularIniPath; + qDebug() << "Oculars::validateIniFile copied default_ocular.ini to " << QDir::toNativeSeparators(ocularIniPath); // The resource is read only, and the new file inherits this, so set write-able. QFile dest(ocularIniPath); dest.setPermissions(dest.permissions() | QFile::WriteOwner); } } else { - qDebug() << "Oculars::validateIniFile ocular.ini exists at: " << ocularIniPath << ". Checking version..."; + qDebug() << "Oculars::validateIniFile ocular.ini exists at: " << QDir::toNativeSeparators(ocularIniPath) << ". Checking version..."; QSettings settings(ocularIniPath, QSettings::IniFormat); double ocularsVersion = settings.value("oculars_version", "0.0").toDouble(); qWarning() << "Oculars::validateIniFile found existing ini file version " << ocularsVersion; @@ -1681,14 +1706,14 @@ // Rename the old one, and copy over a new one QFile oldFile(ocularIniPath); if (!oldFile.rename(ocularIniPath + ".old")) { - qWarning() << "Oculars::validateIniFile cannot move ocular.ini resource to ocular.ini.old at path " + ocularIniPath; + qWarning() << "Oculars::validateIniFile cannot move ocular.ini resource to ocular.ini.old at path " + QDir::toNativeSeparators(ocularIniPath); } else { - qWarning() << "Oculars::validateIniFile ocular.ini resource renamed to ocular.ini.old at path " + ocularIniPath; + qWarning() << "Oculars::validateIniFile ocular.ini resource renamed to ocular.ini.old at path " + QDir::toNativeSeparators(ocularIniPath); QFile src(":/ocular/default_ocular.ini"); if (!src.copy(ocularIniPath)) { - qWarning() << "Oculars::validateIniFile cannot copy default_ocular.ini resource to [non-existing] " + ocularIniPath; + qWarning() << "Oculars::validateIniFile cannot copy default_ocular.ini resource to [non-existing] " + QDir::toNativeSeparators(ocularIniPath); } else { - qDebug() << "Oculars::validateIniFile copied default_ocular.ini to " << ocularIniPath; + qDebug() << "Oculars::validateIniFile copied default_ocular.ini to " << QDir::toNativeSeparators(ocularIniPath); // The resource is read only, and the new file inherits this... make sure the new file // is writable by the Stellarium process so that updates can be done. QFile dest(ocularIniPath); @@ -1705,6 +1730,7 @@ StelCore *core = StelApp::getInstance().getCore(); StelMovementMgr *movementManager = core->getMovementMgr(); GridLinesMgr *gridManager = (GridLinesMgr *)StelApp::getInstance().getModuleMgr().getModule("GridLinesMgr"); + StelSkyDrawer *skyManager = core->getSkyDrawer(); gridManager->setFlagAzimuthalGrid(flagAzimuthalGrid); gridManager->setFlagGalacticGrid(flagGalacticGrid); @@ -1716,6 +1742,11 @@ gridManager->setFlagMeridianLine(flagMeridianLine); gridManager->setFlagHorizonLine(flagHorizonLine); gridManager->setFlagGalacticPlaneLine(flagGalacticPlaneLine); + skyManager->setFlagLuminanceAdaptation(flagAdaptation); + skyManager->setFlagStarMagnitudeLimit(flagLimitStars); + skyManager->setFlagNebulaMagnitudeLimit(flagLimitDSOs); + skyManager->setCustomStarMagnitudeLimit(magLimitStars); + skyManager->setCustomNebulaMagnitudeLimit(magLimitDSOs); movementManager->setFlagTracking(false); movementManager->setFlagEnableZoomKeys(true); movementManager->setFlagEnableMouseNavigation(true); @@ -1749,6 +1780,14 @@ flagMeridianLine = gridManager->getFlagMeridianLine(); flagHorizonLine = gridManager->getFlagHorizonLine(); flagGalacticPlaneLine = gridManager->getFlagGalacticPlaneLine(); + + StelSkyDrawer *skyManager = StelApp::getInstance().getCore()->getSkyDrawer(); + // Current state + flagAdaptation = skyManager->getFlagLuminanceAdaptation(); + flagLimitStars = skyManager->getFlagStarMagnitudeLimit(); + flagLimitDSOs = skyManager->getFlagNebulaMagnitudeLimit(); + magLimitStars = skyManager->getCustomStarMagnitudeLimit(); + magLimitDSOs = skyManager->getCustomNebulaMagnitudeLimit(); } // set new state @@ -1766,6 +1805,8 @@ GridLinesMgr *gridManager = (GridLinesMgr *)StelApp::getInstance().getModuleMgr().getModule("GridLinesMgr"); + StelSkyDrawer *skyManager = core->getSkyDrawer(); + gridManager->setFlagAzimuthalGrid(false); gridManager->setFlagGalacticGrid(false); gridManager->setFlagEquatorGrid(false); @@ -1776,6 +1817,7 @@ gridManager->setFlagMeridianLine(false); gridManager->setFlagHorizonLine(false); gridManager->setFlagGalacticPlaneLine(false); + skyManager->setFlagLuminanceAdaptation(false); movementManager->setFlagTracking(true); movementManager->setFlagEnableZoomKeys(false); @@ -1800,11 +1842,25 @@ } else { - if (selectedLensIndex >= 0) - lens = lense[selectedLensIndex]; + if (selectedLensIndex >= 0) + lens = lense[selectedLensIndex]; + telescope = telescopes[selectedTelescopeIndex]; core->setFlipHorz(telescope->isHFlipped()); - core->setFlipVert(telescope->isVFlipped()); + core->setFlipVert(telescope->isVFlipped()); + } + + // Limit stars and DSOs if it enable and it's telescope + eyepiece combination + if (getFlagLimitMagnitude() && !ocular->isBinoculars()) + { + // Simplified calculation of the penetrating power of the telescope + // TODO: need improvements? + double limitMag = 2.1 + 5*std::log10(telescope->diameter()); + + skyManager->setFlagStarMagnitudeLimit(true); + skyManager->setFlagNebulaMagnitudeLimit(true); + skyManager->setCustomStarMagnitudeLimit(limitMag); + skyManager->setCustomNebulaMagnitudeLimit(limitMag); } double actualFOV = ocular->actualFOV(telescope, lens); @@ -1908,6 +1964,18 @@ return flagDecimalDegrees; } +void Oculars::setFlagLimitMagnitude(const bool b) +{ + flagLimitMagnitude = b; + settings->setValue("limit_stellar_magnitude", b); + settings->sync(); +} + +bool Oculars::getFlagLimitMagnitude() const +{ + return flagLimitMagnitude; +} + QString Oculars::getDimensionsString(double fovX, double fovY) const { QString stringFovX, stringFovY; diff -Nru stellarium-0.12.1/plugins/Oculars/src/Oculars.hpp stellarium-0.12.4/plugins/Oculars/src/Oculars.hpp --- stellarium-0.12.1/plugins/Oculars/src/Oculars.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/src/Oculars.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -116,6 +116,9 @@ void setFlagDecimalDegrees(const bool b); bool getFlagDecimalDegrees(void) const; + void setFlagLimitMagnitude(const bool b); + bool getFlagLimitMagnitude(void) const; + signals: void selectedCCDChanged(); void selectedOcularChanged(); @@ -127,7 +130,7 @@ void instrumentChanged(); void determineMaxEyepieceAngle(); void setRequireSelection(bool state); - void setScaleImageCircle(bool state); + void setScaleImageCircle(bool state); void setScreenFOVForCCD(); void retranslateGui(); void setStelStyle(const QString& style); @@ -194,11 +197,11 @@ int selectedTelescopeIndex; //!< index of the current telescope, in the range of -1:telescopes.count(). -1 means none is selected. int selectedLensIndex; //!< index of the current lens, in the range of -1:lense.count(). -1 means no lens is selected - QFont font; //!< The font used for drawing labels. - bool flagShowCCD; //!< flag used to track f we are in CCD mode. + QFont font; //!< The font used for drawing labels. + bool flagShowCCD; //!< flag used to track f we are in CCD mode. bool flagShowOculars; //!< flag used to track if we are in ocular mode. bool flagShowCrosshairs; //!< flag used to track in crosshairs should be rendered in the ocular view. - bool flagShowTelrad; //!< If true, display the Telrad overlay. + bool flagShowTelrad; //!< If true, display the Telrad overlay. int usageMessageLabelID; //!< the id of the label showing the usage message. -1 means it's not displayed. bool flagAzimuthalGrid; //!< Flag to track if AzimuthalGrid was displayed at activation. @@ -211,10 +214,17 @@ bool flagMeridianLine; //!< Flag to track if MeridianLine was displayed at activation. bool flagHorizonLine; //!< Flag to track if HorizonLine was displayed at activation. bool flagGalacticPlaneLine; //!< Flag to track if GalacticPlaneLine was displayed at activation. + bool flagAdaptation; //!< Flag to track if adaptationCheckbox was enabled at activation. + + bool flagLimitStars; //!< Flag to track limit magnitude for stars + float magLimitStars; //!< Value of limited magnitude for stars + bool flagLimitDSOs; //!< Flag to track limit magnitude for DSOs + float magLimitDSOs; //!< Value of limited magnitude for DSOs double ccdRotationAngle; //!< The angle to rotate the CCD bounding box. */ double maxEyepieceAngle; //!< The maximum aFOV of any eyepiece. bool requireSelection; //!< Read from the ini file, whether an object is required to be selected to zoom in. + bool flagLimitMagnitude; //!< Read from the ini file, whether a magnitude is required to be limited. bool useMaxEyepieceAngle; //!< Read from the ini file, whether to scale the mask based aFOV. //! Display the GUI control panel bool guiPanelEnabled; @@ -241,6 +251,10 @@ QAction* actionShowTelrad; QAction* actionConfiguration; QAction* actionMenu; + QAction* actionTelescopeIncrement; + QAction* actionTelescopeDecrement; + QAction* actionOcularIncrement; + QAction* actionOcularDecrement; class OcularsGuiPanel* guiPanel; diff -Nru stellarium-0.12.1/plugins/Oculars/src/gui/OcularDialog.cpp stellarium-0.12.4/plugins/Oculars/src/gui/OcularDialog.cpp --- stellarium-0.12.1/plugins/Oculars/src/gui/OcularDialog.cpp 2013-04-20 11:52:21.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/src/gui/OcularDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -141,7 +141,7 @@ void OcularDialog::deleteSelectedOcular() { if (ocularTableModel->rowCount() == 1) { - qDebug() << "Can not delete the last entry."; + qDebug() << "Cannot delete the last entry."; } else { ocularTableModel->removeRows(ui->ocularListView->currentIndex().row(), 1); ui->ocularListView->setCurrentIndex(ocularTableModel->index(0, 1)); @@ -152,7 +152,7 @@ void OcularDialog::deleteSelectedTelescope() { if (telescopeTableModel->rowCount() == 1) { - qDebug() << "Can not delete the last entry."; + qDebug() << "Cannot delete the last entry."; } else { telescopeTableModel->removeRows(ui->telescopeListView->currentIndex().row(), 1); ui->telescopeListView->setCurrentIndex(telescopeTableModel->index(0, 1)); @@ -307,9 +307,10 @@ { bool requireSelection = (state == Qt::Checked); bool requireSelectionToZoom = Oculars::appSettings()->value("require_selection_to_zoom", 1.0).toBool(); - if (requireSelection != requireSelectionToZoom) { + if (requireSelection != requireSelectionToZoom) + { Oculars::appSettings()->setValue("require_selection_to_zoom", requireSelection); - Oculars::appSettings()->sync();\ + Oculars::appSettings()->sync(); emit(requireSelectionChanged(requireSelection)); } } @@ -318,7 +319,8 @@ { bool shouldScale = (state == Qt::Checked); bool useMaxImageCircle = Oculars::appSettings()->value("use_max_exit_circle",01.0).toBool(); - if (shouldScale != useMaxImageCircle) { + if (shouldScale != useMaxImageCircle) + { Oculars::appSettings()->setValue("use_max_exit_circle", shouldScale); Oculars::appSettings()->sync(); emit(scaleImageCircleChanged(shouldScale)); @@ -345,6 +347,7 @@ connect(ui->closeStelWindow, SIGNAL(clicked()), this, SLOT(close())); connect(ui->scaleImageCircleCheckBox, SIGNAL(stateChanged(int)), this, SLOT(scaleImageCircleStateChanged(int))); connect(ui->requireSelectionCheckBox, SIGNAL(stateChanged(int)), this, SLOT(requireSelectionStateChanged(int))); + connect(ui->limitStellarMagnitudeCheckBox, SIGNAL(clicked(bool)), plugin, SLOT(setFlagLimitMagnitude(bool))); connect(ui->checkBoxControlPanel, SIGNAL(clicked(bool)), plugin, SLOT(enableGuiPanel(bool))); connect(ui->checkBoxDecimalDegrees, SIGNAL(clicked(bool)), plugin, SLOT(setFlagDecimalDegrees(bool))); @@ -471,6 +474,9 @@ if (Oculars::appSettings()->value("use_max_exit_circle", 0.0).toBool()) { ui->scaleImageCircleCheckBox->setCheckState(Qt::Checked); } + if (Oculars::appSettings()->value("limit_stellar_magnitude", true).toBool()) { + ui->limitStellarMagnitudeCheckBox->setCheckState(Qt::Checked); + } if (Oculars::appSettings()->value("enable_control_panel", false).toBool()) { ui->checkBoxControlPanel->setChecked(true); @@ -491,7 +497,7 @@ html += "

    " + q_("Oculars Plug-in") + "

    "; html += ""; - html += ""; + html += ""; html += "
    " + q_("Version") + ":" + OCULARS_PLUGIN_VERSION + "
    " + q_("Authors") + ":Timothy Reaves <treaves@silverfieldstech.com>
    Bogdan Marinov
    " + q_("Authors") + ":Timothy Reaves <treaves@silverfieldstech.com>
    Bogdan Marinov
    Pawel Stolowski (" + q_("Barlow lens feature") + ")
    "; //Overview diff -Nru stellarium-0.12.1/plugins/Oculars/src/gui/OcularsGuiPanel.cpp stellarium-0.12.4/plugins/Oculars/src/gui/OcularsGuiPanel.cpp --- stellarium-0.12.1/plugins/Oculars/src/gui/OcularsGuiPanel.cpp 2013-04-20 12:07:54.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/src/gui/OcularsGuiPanel.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -577,11 +577,6 @@ void OcularsGuiPanel::updateLensControls() { - if (ocularsPlugin->flagShowCCD) - { - setLensControlsVisible(false); - return; - } int index = ocularsPlugin->selectedOcularIndex; //Ocular* ocular = ocularsPlugin->oculars[index]; @@ -611,7 +606,7 @@ } fieldLensName->setPlainText(fullName); fieldLensMultipler->setPlainText(multiplerString); - fieldOcularFl->setToolTip(q_("Multiplicity of lens")); + fieldOcularFl->setToolTip(q_("Focal length of eyepiece")); qreal posX = 0.; qreal posY = 0.; @@ -651,7 +646,7 @@ //Get the name int index = ocularsPlugin->selectedCCDIndex; - CCD* ccd = ocularsPlugin->ccds[index]; + CCD* ccd = ocularsPlugin->ccds[index]; Q_ASSERT(ccd); QString name = ccd->name(); QString fullName; @@ -665,6 +660,8 @@ } fieldCcdName->setPlainText(fullName); + Lens *lens = ocularsPlugin->selectedLens(); + qreal posX = 0.; qreal posY = 0.; qreal widgetWidth = 0.; @@ -693,8 +690,8 @@ index = ocularsPlugin->selectedTelescopeIndex; Telescope* telescope = ocularsPlugin->telescopes[index]; Q_ASSERT(telescope); - double fovX = ((int)(ccd->getActualFOVx(telescope) * 1000.0)) / 1000.0; - double fovY = ((int)(ccd->getActualFOVy(telescope) * 1000.0)) / 1000.0; + double fovX = ((int)(ccd->getActualFOVx(telescope, lens) * 1000.0)) / 1000.0; + double fovY = ((int)(ccd->getActualFOVy(telescope, lens) * 1000.0)) / 1000.0; QString dimensionsLabel = QString(q_("Dimensions: %1")).arg(ocularsPlugin->getDimensionsString(fovX, fovY)); fieldCcdDimensions->setPlainText(dimensionsLabel); fieldCcdDimensions->setPos(posX, posY); @@ -782,14 +779,16 @@ posY += fieldTelescopeName->boundingRect().height(); widgetHeight += fieldTelescopeName->boundingRect().height(); + Lens *lens = ocularsPlugin->selectedLens(); + if (ocularsPlugin->flagShowCCD) { int index = ocularsPlugin->selectedCCDIndex; CCD* ccd = ocularsPlugin->ccds[index]; Q_ASSERT(ccd); - double fovX = ((int)(ccd->getActualFOVx(telescope) * 1000.0)) / 1000.0; - double fovY = ((int)(ccd->getActualFOVy(telescope) * 1000.0)) / 1000.0; + double fovX = ((int)(ccd->getActualFOVx(telescope, lens) * 1000.0)) / 1000.0; + double fovY = ((int)(ccd->getActualFOVy(telescope, lens) * 1000.0)) / 1000.0; QString dimensionsLabel = QString(q_("Dimensions: %1")).arg(ocularsPlugin->getDimensionsString(fovX, fovY)); fieldCcdDimensions->setPlainText(dimensionsLabel); @@ -802,8 +801,6 @@ int index = ocularsPlugin->selectedOcularIndex; Ocular* ocular = ocularsPlugin->oculars[index]; Q_ASSERT(ocular); - - Lens *lens = ocularsPlugin->selectedLens(); if (ocular->isBinoculars()) { diff -Nru stellarium-0.12.1/plugins/Oculars/src/gui/PropertyBasedTableModel.cpp stellarium-0.12.4/plugins/Oculars/src/gui/PropertyBasedTableModel.cpp --- stellarium-0.12.1/plugins/Oculars/src/gui/PropertyBasedTableModel.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/src/gui/PropertyBasedTableModel.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2012 Stellarium Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. + */ + #include "PropertyBasedTableModel.hpp" #include diff -Nru stellarium-0.12.1/plugins/Oculars/src/gui/PropertyBasedTableModel.hpp stellarium-0.12.4/plugins/Oculars/src/gui/PropertyBasedTableModel.hpp --- stellarium-0.12.1/plugins/Oculars/src/gui/PropertyBasedTableModel.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/src/gui/PropertyBasedTableModel.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -1,3 +1,21 @@ +/* + * Copyright (C) 2012 Stellarium Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. + */ + #ifndef PROPERTYBASEDTABLEMODEL_H #define PROPERTYBASEDTABLEMODEL_H diff -Nru stellarium-0.12.1/plugins/Oculars/src/gui/ocularDialog.ui stellarium-0.12.4/plugins/Oculars/src/gui/ocularDialog.ui --- stellarium-0.12.1/plugins/Oculars/src/gui/ocularDialog.ui 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Oculars/src/gui/ocularDialog.ui 2013-09-07 15:50:48.000000000 +0000 @@ -6,8 +6,8 @@ 0 0 - 659 - 379 + 653 + 383 @@ -20,16 +20,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -138,16 +129,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -166,16 +148,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -184,16 +157,7 @@ Ocular view - - 0 - - - 0 - - - 0 - - + 0 @@ -210,6 +174,16 @@
    + + + + Apply limits stellar magnitude for different apertures of telescopes + + + Limit stellar magnitude + + + @@ -219,16 +193,7 @@ Key mappings - - 0 - - - 0 - - - 0 - - + 0 @@ -301,16 +266,7 @@ Interface - - 0 - - - 0 - - - 0 - - + 0 @@ -383,16 +339,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -518,16 +465,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -694,16 +632,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -829,16 +758,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -870,7 +790,7 @@ - Multiplicity: + Multiplier: @@ -974,16 +894,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -1106,16 +1017,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -1371,16 +1273,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -1491,16 +1384,7 @@ 0 - - 0 - - - 0 - - - 0 - - + 0 @@ -1588,16 +1472,7 @@ About - - 0 - - - 0 - - - 0 - - + 0 diff -Nru stellarium-0.12.1/plugins/Pulsars/CMakeLists.txt stellarium-0.12.4/plugins/Pulsars/CMakeLists.txt --- stellarium-0.12.1/plugins/Pulsars/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Pulsars/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,6 +1,6 @@ SET(PSR_MAJOR "0") SET(PSR_MINOR "2") -SET(PSR_PATCH "2") +SET(PSR_PATCH "7") SET(PSR_VERSION "${PSR_MAJOR}.${PSR_MINOR}.${PSR_PATCH}") IF(APPLE) diff -Nru stellarium-0.12.1/plugins/Pulsars/Doxyfile stellarium-0.12.4/plugins/Pulsars/Doxyfile --- stellarium-0.12.1/plugins/Pulsars/Doxyfile 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Pulsars/Doxyfile 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,1800 @@ +# Doxyfile 1.8.0 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" "). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or sequence of words) that should +# identify the project. Note that if you do not use Doxywizard you need +# to put quotes around the project name if it contains spaces. + +PROJECT_NAME = "Stellarium Pulsars Plug-in" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer +# a quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is +# included in the documentation. The maximum height of the logo should not +# exceed 55 pixels and the maximum width should not exceed 200 pixels. +# Doxygen will copy the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful if your file system +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = YES + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding +# "class=itcl::class" will allow you to use the command class in the +# itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this +# tag. The format is ext=language, where ext is a file extension, and language +# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, +# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make +# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C +# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions +# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all +# comments according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you +# can mix doxygen, HTML, and XML commands with Markdown formatting. +# Disable only in case of backward compatibilities issues. + +MARKDOWN_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also makes the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and +# unions are shown inside the group in which they are included (e.g. using +# @ingroup) instead of on a separate page (for HTML and Man pages) or +# section (for LaTeX and RTF). + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and +# unions with only public data fields will be shown inline in the documentation +# of the scope in which they are defined (i.e. file, namespace, or group +# documentation), provided this scope is documented. If set to NO (the default), +# structs, classes, and unions are shown on a separate page (for HTML and Man +# pages) or section (for LaTeX and RTF). + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penalty. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will roughly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +SYMBOL_CACHE_SIZE = 0 + +# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be +# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given +# their name and scope. Since this can be an expensive process and often the +# same symbol appear multiple times in the code, doxygen keeps a cache of +# pre-resolved symbols. If the cache is too small doxygen will become slower. +# If the cache is too large, memory is wasted. The cache size is given by this +# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespaces are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen +# will list include files with double quotes in the documentation +# rather than with sharp brackets. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen +# will sort the (brief and detailed) documentation of class members so that +# constructors and destructors are listed first. If set to NO (the default) +# the constructors will appear in the respective orders defined by +# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to +# do proper type resolution of all parameters of a function it will reject a +# match between the prototype and the implementation of a member function even +# if there is only one candidate or it is obvious which candidate to choose +# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen +# will still accept a match between prototype and implementation in such cases. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or macro consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and macros in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. The create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. +# You can optionally specify a file name after the option, if omitted +# DoxygenLayout.xml will be used as the name of the layout file. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files +# containing the references data. This must be a list of .bib files. The +# .bib extension is automatically appended if omitted. Using this command +# requires the bibtex tool to be installed. See also +# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style +# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this +# feature you need bibtex and perl available in the search path. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# The WARN_NO_PARAMDOC option can be enabled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = ./src ./src/gui + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh +# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py +# *.f90 *.f *.for *.vhd *.vhdl + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty or if +# non of the patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) +# and it is also possible to disable source filtering for a specific pattern +# using *.ext= (so without naming a filter). This option only has effect when +# FILTER_SOURCE_FILES is enabled. + +FILTER_SOURCE_PATTERNS = + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. Note that when using a custom header you are responsible +# for the proper inclusion of any scripts and style sheets that doxygen +# needs, which is dependent on the configuration options used. +# It is advised to generate a default header using "doxygen -w html +# header.html footer.html stylesheet.css YourConfigFile" and then modify +# that header. Note that the header is subject to change so you typically +# have to redo this when upgrading to a newer version of doxygen or when +# changing the value of configuration settings such as GENERATE_TREEVIEW! + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# style sheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that +# the files will be copied as-is; there are no commands or markers available. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. +# Doxygen will adjust the colors in the style sheet and background images +# according to this color. Hue is specified as an angle on a colorwheel, +# see http://en.wikipedia.org/wiki/Hue for more information. +# For instance the value 0 represents red, 60 is yellow, 120 is green, +# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. +# The allowed range is 0 to 359. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of +# the colors in the HTML output. For a value of 0 the output will use +# grayscales only. A value of 255 will produce the most vivid colors. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to +# the luminance component of the colors in the HTML output. Values below +# 100 gradually make the output lighter, whereas values above 100 make +# the output darker. The value divided by 100 is the actual gamma applied, +# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, +# and 100 does not change the gamma. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting +# this to NO can help when comparing the output of multiple runs. + +HTML_TIMESTAMP = YES + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated +# that can be used as input for Qt's qhelpgenerator to generate a +# Qt Compressed Help (.qch) of the generated HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to +# add. For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see +# +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's +# filter section matches. +# +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files +# will be generated, which together with the HTML files, form an Eclipse help +# plugin. To install this plugin and make it available under the help contents +# menu in Eclipse, the contents of the directory containing the HTML and XML +# files needs to be copied into the plugins directory of eclipse. The name of +# the directory within the plugins directory should be the same as +# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before +# the help appears. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have +# this name. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) +# at top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. Since the tabs have the same information as the +# navigation tree you can set this option to NO if you already set +# GENERATE_TREEVIEW to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. +# Since the tree basically has the same information as the tab index you +# could consider to set DISABLE_INDEX to NO when enabling this option. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values +# (range [0,1..20]) that doxygen will group on one line in the generated HTML +# documentation. Note that a value of 0 will completely suppress the enum +# values from appearing in the overview section. + +ENUM_VALUES_PER_LINE = 4 + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open +# links to external symbols imported via tag files in a separate window. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are +# not supported properly for IE 6.0, but are supported on all modern browsers. +# Note that when changing this option you need to delete any form_*.png files +# in the HTML output before the changes have effect. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax +# (see http://www.mathjax.org) which uses client side Javascript for the +# rendering instead of using prerendered bitmaps. Use this if you do not +# have LaTeX installed or if you want to formulas look prettier in the HTML +# output. When enabled you may also need to install MathJax separately and +# configure the path to it using the MATHJAX_RELPATH option. + +USE_MATHJAX = NO + +# When MathJax is enabled you need to specify the location relative to the +# HTML output directory using the MATHJAX_RELPATH option. The destination +# directory should contain the MathJax.js script. For instance, if the mathjax +# directory is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to +# the MathJax Content Delivery Network so you can quickly see the result without +# installing MathJax. +# However, it is strongly recommended to install a local +# copy of MathJax from http://www.mathjax.org before deployment. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension +# names that should be enabled during MathJax rendering. + +MATHJAX_EXTENSIONS = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box +# for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using +# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets +# (GENERATE_DOCSET) there is already a search function so this one should +# typically be disabled. For large projects the javascript based search engine +# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a PHP enabled web server instead of at the web client +# using Javascript. Doxygen will generate the search PHP script and index +# file to put on the web server. The advantage of the server +# based approach is that it scales better to large projects and allows +# full text search. The disadvantages are that it is more difficult to setup +# and does not have live searching capabilities. + +SERVER_BASED_SEARCH = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. +# Note that when enabling USE_PDFLATEX this option is only used for +# generating bitmaps for formulas in the HTML output, but not in the +# Makefile that is written to the output directory. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for +# the generated latex document. The footer should contain everything after +# the last chapter. If it is left blank doxygen will generate a +# standard footer. Notice: only use this tag if you know what you are doing! + +LATEX_FOOTER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include +# source code with syntax highlighting in the LaTeX output. +# Note that which sources are shown also depends on other settings +# such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See +# http://en.wikipedia.org/wiki/BibTeX for more info. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load style sheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# pointed to by INCLUDE_PATH will be searched when a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition that +# overrules the definition found in the source code. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all references to function-like macros +# that are alone on a line, have an all uppercase name, and do not end with a +# semicolon, because these will confuse the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. For each +# tag file the location of the external documentation should be added. The +# format of a tag file without this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths +# or URLs. Note that each tag file must have a unique name (where the name does +# NOT include the path). If a tag file is not located in the directory in which +# doxygen is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option also works with HAVE_DOT disabled, but it is recommended to +# install and use dot, since it yields more powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is +# allowed to run in parallel. When set to 0 (the default) doxygen will +# base this on the number of processors available in the system. You can set it +# explicitly to a value larger than 0 to get control over the balance +# between CPU load and processing speed. + +DOT_NUM_THREADS = 0 + +# By default doxygen will use the Helvetica font for all dot files that +# doxygen generates. When you want a differently looking font you can specify +# the font name using DOT_FONTNAME. You need to make sure dot is able to find +# the font, which can be done by putting it in a standard location or by setting +# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. + +DOT_FONTNAME = Helvetica + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the Helvetica font. +# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to +# set the path where dot can find it. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside +# the class node. If there are many fields or methods and many nodes the +# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS +# threshold limits the number of items for each type to make the size more +# managable. Set this to 0 for no limit. Note that the threshold may be +# exceeded by 50% before the limit is enforced. + +UML_LIMIT_NUM_FIELDS = 10 + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will generate a graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are svg, png, jpg, or gif. +# If left blank png will be used. If you choose svg you need to set +# HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible in IE 9+ (other browsers do not have this requirement). + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# Note that this requires a modern browser other than Internet Explorer. +# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you +# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible. Older versions of IE do not have SVG support. + +INTERACTIVE_SVG = NO + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the +# \mscfile command). + +MSCFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff -Nru stellarium-0.12.1/plugins/Pulsars/resources/Pulsars.qrc stellarium-0.12.4/plugins/Pulsars/resources/Pulsars.qrc --- stellarium-0.12.1/plugins/Pulsars/resources/Pulsars.qrc 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Pulsars/resources/Pulsars.qrc 2013-08-04 06:20:27.000000000 +0000 @@ -2,5 +2,7 @@ pulsars.json pulsar.png + btPulsars-off.png + btPulsars-on.png Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/plugins/Pulsars/resources/btPulsars-off.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/plugins/Pulsars/resources/btPulsars-off.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/plugins/Pulsars/resources/btPulsars-on.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/plugins/Pulsars/resources/btPulsars-on.png differ diff -Nru stellarium-0.12.1/plugins/Pulsars/src/Pulsars.cpp stellarium-0.12.4/plugins/Pulsars/src/Pulsars.cpp --- stellarium-0.12.1/plugins/Pulsars/src/Pulsars.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Pulsars/src/Pulsars.cpp 2013-09-13 10:51:45.000000000 +0000 @@ -49,6 +49,7 @@ #include #include #include +#include #define CATALOG_FORMAT_VERSION 2 /* Version of format of catalog */ @@ -83,6 +84,11 @@ Pulsars::Pulsars() : texPointer(NULL) , markerTexture(NULL) + , flagShowPulsars(false) + , OnIcon(NULL) + , OffIcon(NULL) + , GlowIcon(NULL) + , toolbarButton(NULL) , progressBar(NULL) { setObjectName("Pulsars"); @@ -97,6 +103,13 @@ Pulsars::~Pulsars() { delete configDialog; + + if (GlowIcon) + delete GlowIcon; + if (OnIcon) + delete OnIcon; + if (OffIcon) + delete OffIcon; } void Pulsars::deinit() @@ -128,6 +141,8 @@ */ void Pulsars::init() { + upgradeConfigIni(); + try { StelFileMgr::makeSureDirExistsAndIsWritable(StelFileMgr::getUserDir()+"/modules/Pulsars"); @@ -147,8 +162,16 @@ // key bindings and other actions StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); + GlowIcon = new QPixmap(":/graphicsGui/glow32x32.png"); + OnIcon = new QPixmap(":/Pulsars/btPulsars-on.png"); + OffIcon = new QPixmap(":/Pulsars/btPulsars-off.png"); + + setFlagShowPulsars(getEnableAtStartup()); + setFlagShowPulsarsButton(flagShowPulsarsButton); + connect(gui->getGuiAction("actionShow_Pulsars_ConfigDialog"), SIGNAL(toggled(bool)), configDialog, SLOT(setVisible(bool))); connect(configDialog, SIGNAL(visibleChanged(bool)), gui->getGuiAction("actionShow_Pulsars_ConfigDialog"), SLOT(setChecked(bool))); + connect(gui->getGuiAction("actionShow_Pulsars"), SIGNAL(toggled(bool)), this, SLOT(setFlagShowPulsars(bool))); } catch (std::runtime_error &e) { @@ -166,18 +189,18 @@ // If the json file does not already exist, create it from the resource in the Qt resource if(QFileInfo(jsonCatalogPath).exists()) { - if (getJsonFileVersion() < CATALOG_FORMAT_VERSION) + if (!checkJsonFileFormat() || getJsonFileFormatVersion()getProjection(StelCore::FrameJ2000); renderer->setFont(font); @@ -252,6 +278,9 @@ { QList result; + if (!flagShowPulsars) + return result; + Vec3d v(av); v.normalize(); double cosLimFov = cos(limitFov * M_PI/180.); @@ -275,10 +304,12 @@ StelObjectP Pulsars::searchByName(const QString& englishName) const { - QString objw = englishName.toUpper(); + if (!flagShowPulsars) + return NULL; + foreach(const PulsarP& pulsar, psr) { - if (pulsar->getEnglishName().toUpper() == englishName) + if (pulsar->getEnglishName().toUpper() == englishName.toUpper()) return qSharedPointerCast(pulsar); } @@ -287,55 +318,90 @@ StelObjectP Pulsars::searchByNameI18n(const QString& nameI18n) const { - QString objw = nameI18n.toUpper(); + if (!flagShowPulsars) + return NULL; foreach(const PulsarP& pulsar, psr) { - if (pulsar->getNameI18n().toUpper() == nameI18n) + if (pulsar->getNameI18n().toUpper() == nameI18n.toUpper()) return qSharedPointerCast(pulsar); } return NULL; } -QStringList Pulsars::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem) const +QStringList Pulsars::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; - if (maxNbItem==0) return result; + if (!flagShowPulsars) + return result; - QString objw = objPrefix.toUpper(); + if (maxNbItem==0) + return result; + QString psrn; + bool find; foreach(const PulsarP& pulsar, psr) { - if (pulsar->getNameI18n().toUpper().left(objw.length()) == objw) + psrn = pulsar->getNameI18n(); + find = false; + if (useStartOfWords) + { + if (psrn.toUpper().left(objPrefix.length()) == objPrefix.toUpper()) + find = true; + } + else { - result << pulsar->getNameI18n().toUpper(); + if (psrn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << psrn; } } result.sort(); - if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); + if (result.size()>maxNbItem) + result.erase(result.begin()+maxNbItem, result.end()); return result; } -QStringList Pulsars::listMatchingObjects(const QString& objPrefix, int maxNbItem) const +QStringList Pulsars::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; - if (maxNbItem==0) return result; + if (!flagShowPulsars) + return result; - QString objw = objPrefix.toUpper(); + if (maxNbItem==0) + return result; + QString psrn; + bool find; foreach(const PulsarP& pulsar, psr) { - if (pulsar->getEnglishName().toUpper().left(objw.length()) == objw) + psrn = pulsar->getEnglishName(); + find = false; + if (useStartOfWords) + { + if (psrn.toUpper().left(objPrefix.length()) == objPrefix.toUpper()) + find = true; + } + else { - result << pulsar->getEnglishName().toUpper(); + if (psrn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << psrn; } } result.sort(); - if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); + if (result.size()>maxNbItem) + result.erase(result.begin()+maxNbItem, result.end()); return result; } @@ -371,11 +437,11 @@ QFile src(":/Pulsars/pulsars.json"); if (!src.copy(jsonCatalogPath)) { - qWarning() << "Pulsars::restoreDefaultJsonFile cannot copy json resource to " + jsonCatalogPath; + qWarning() << "Pulsars::restoreDefaultJsonFile cannot copy json resource to " + QDir::toNativeSeparators(jsonCatalogPath); } else { - qDebug() << "Pulsars::init copied default pulsars.json to " << jsonCatalogPath; + qDebug() << "Pulsars::init copied default pulsars.json to " << QDir::toNativeSeparators(jsonCatalogPath); // The resource is read only, and the new file inherits this... make sure the new file // is writable by the Stellarium process so that updates can be done. QFile dest(jsonCatalogPath); @@ -444,7 +510,7 @@ QVariantMap map; QFile jsonFile(path); if (!jsonFile.open(QIODevice::ReadOnly)) - qWarning() << "Pulsars::loadPSRMap cannot open " << path; + qWarning() << "Pulsars::loadPSRMap cannot open " << QDir::toNativeSeparators(path); else map = StelJsonParser::parse(jsonFile.readAll()).toMap(); @@ -471,13 +537,13 @@ } } -int Pulsars::getJsonFileVersion(void) +int Pulsars::getJsonFileFormatVersion(void) { int jsonVersion = -1; QFile jsonPSRCatalogFile(jsonCatalogPath); if (!jsonPSRCatalogFile.open(QIODevice::ReadOnly)) { - qWarning() << "Pulsars::init cannot open " << jsonCatalogPath; + qWarning() << "Pulsars::init cannot open " << QDir::toNativeSeparators(jsonCatalogPath); return jsonVersion; } @@ -489,10 +555,35 @@ } jsonPSRCatalogFile.close(); - qDebug() << "Pulsars::getJsonFileVersion() version from file:" << jsonVersion; + qDebug() << "Pulsars::getJsonFileFormatVersion() version of format from file:" << jsonVersion; return jsonVersion; } +bool Pulsars::checkJsonFileFormat() +{ + QFile jsonPSRCatalogFile(jsonCatalogPath); + if (!jsonPSRCatalogFile.open(QIODevice::ReadOnly)) + { + qWarning() << "Pulsars::checkJsonFileFormat(): cannot open " << QDir::toNativeSeparators(jsonCatalogPath); + return false; + } + + QVariantMap map; + try + { + map = StelJsonParser::parse(&jsonPSRCatalogFile).toMap(); + jsonPSRCatalogFile.close(); + } + catch (std::runtime_error& e) + { + qDebug() << "Pulsars::checkJsonFileFormat(): file format is wrong!"; + qDebug() << "Pulsars::checkJsonFileFormat() error:" << e.what(); + return false; + } + + return true; +} + PulsarP Pulsars::getByID(const QString& id) { foreach(const PulsarP& pulsar, psr) @@ -530,9 +621,11 @@ conf->remove(""); conf->setValue("distribution_enabled", false); - conf->setValue("updates_enabled", true); + conf->setValue("enable_at_startup", false); + conf->setValue("updates_enabled", true); conf->setValue("url", "http://stellarium.org/json/pulsars.json"); conf->setValue("update_frequency_days", 100); + conf->setValue("flag_show_pulsars_button", true); conf->endGroup(); } @@ -545,6 +638,8 @@ lastUpdate = QDateTime::fromString(conf->value("last_update", "2012-05-24T12:00:00").toString(), Qt::ISODate); updatesEnabled = conf->value("updates_enabled", true).toBool(); distributionEnabled = conf->value("distribution_enabled", false).toBool(); + enableAtStartup = conf->value("enable_at_startup", false).toBool(); + flagShowPulsarsButton = conf->value("flag_show_pulsars_button", true).toBool(); conf->endGroup(); } @@ -557,6 +652,8 @@ conf->setValue("update_frequency_days", updateFrequencyDays); conf->setValue("updates_enabled", updatesEnabled ); conf->setValue("distribution_enabled", distributionEnabled); + conf->setValue("enable_at_startup", enableAtStartup); + conf->setValue("flag_show_pulsars_button", flagShowPulsarsButton); conf->endGroup(); } @@ -588,32 +685,23 @@ lastUpdate = QDateTime::currentDateTime(); conf->setValue("Pulsars/last_update", lastUpdate.toString(Qt::ISODate)); - emit(jsonUpdateComplete()); - updateState = Pulsars::Updating; - - emit(updateStateChanged(updateState)); - updateFile.clear(); + emit(updateStateChanged(updateState)); if (progressBar==NULL) progressBar = StelApp::getInstance().getGui()->addProgressBar(); progressBar->setValue(0); - progressBar->setMaximum(updateUrl.size()); - progressBar->setVisible(true); + progressBar->setMaximum(100); progressBar->setFormat("Update pulsars"); + progressBar->setVisible(true); QNetworkRequest request; request.setUrl(QUrl(updateUrl)); request.setRawHeader("User-Agent", QString("Mozilla/5.0 (Stellarium Pulsars Plugin %1; http://stellarium.org/)").arg(PULSARS_PLUGIN_VERSION).toUtf8()); downloadMgr->get(request); - progressBar->setValue(100); - delete progressBar; - progressBar = NULL; - - updateState = CompleteUpdates; - + updateState = Pulsars::CompleteUpdates; emit(updateStateChanged(updateState)); emit(jsonUpdateComplete()); } @@ -647,7 +735,11 @@ } if (progressBar) + { progressBar->setValue(100); + delete progressBar; + progressBar = NULL; + } } void Pulsars::displayMessage(const QString& message, const QString hexColor) @@ -663,3 +755,32 @@ GETSTELMODULE(LabelMgr)->deleteLabel(i); } } + +void Pulsars::upgradeConfigIni(void) +{ + // Upgrade settings for Pulsars plugin + if (conf->contains("Pulsars/flag_show_pulsars")) + { + bool b = conf->value("Pulsars/flag_show_pulsars", false).toBool(); + if (!conf->contains("Pulsars/enable_at_startup")) + conf->setValue("Pulsars/enable_at_startup", b); + conf->remove("Pulsars/flag_show_pulsars"); + } +} + +// Define whether the button toggling pulsars should be visible +void Pulsars::setFlagShowPulsarsButton(bool b) +{ + StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); + if (b==true) { + if (toolbarButton==NULL) { + // Create the pulsars button + gui->getGuiAction("actionShow_Pulsars")->setChecked(flagShowPulsars); + toolbarButton = new StelButton(NULL, *OnIcon, *OffIcon, *GlowIcon, gui->getGuiAction("actionShow_Pulsars")); + } + gui->getButtonBar()->addButton(toolbarButton, "065-pluginsGroup"); + } else { + gui->getButtonBar()->hideButton("actionShow_Pulsars"); + } + flagShowPulsarsButton = b; +} diff -Nru stellarium-0.12.1/plugins/Pulsars/src/Pulsars.hpp stellarium-0.12.4/plugins/Pulsars/src/Pulsars.hpp --- stellarium-0.12.1/plugins/Pulsars/src/Pulsars.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Pulsars/src/Pulsars.hpp 2013-09-13 10:51:45.000000000 +0000 @@ -34,6 +34,8 @@ class QProgressBar; class QSettings; class QTimer; +class QPixmap; +class StelButton; class PulsarsDialog; @@ -86,13 +88,15 @@ //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; virtual QStringList listAllObjects(bool inEnglish) const; virtual QString getName() const { return "Pulsars"; } @@ -125,6 +129,9 @@ bool getDisplayMode(void) {return distributionEnabled;} void setDisplayMode(bool b) {distributionEnabled=b;} + void setEnableAtStartup(bool b) { enableAtStartup=b; } + bool getEnableAtStartup(void) { return enableAtStartup; } + //! get the date and time the TLE elements were updated QDateTime getLastUpdate(void) {return lastUpdate;} @@ -150,10 +157,18 @@ //! module.ini file and update the local JSON file. void updateJSON(void); + void setFlagShowPulsars(bool b) { flagShowPulsars=b; } + bool getFlagShowPulsars(void) { return flagShowPulsars; } + //! Display a message. This is used for plugin-specific warnings and such void displayMessage(const QString& message, const QString hexColor="#999999"); void messageTimeout(void); + //! Define whether the button toggling pulsars should be visible + void setFlagShowPulsarsButton(bool b); + bool getFlagShowPulsarsButton(void) { return flagShowPulsarsButton; } + + private: // Font used for displaying our text QFont font; @@ -161,6 +176,9 @@ // if existing, delete Satellites section in main config.ini, then create with default values void restoreDefaultConfigIni(void); + // Upgrade config.ini: rename old key settings to new + void upgradeConfigIni(void); + //! replace the json file with the default from the compiled-in resource void restoreDefaultJsonFile(void); @@ -172,9 +190,13 @@ //! @return true on OK, false on failure bool backupJsonFile(bool deleteOriginal=false); - //! Get the version from the "version" value in the pulsars.json file + //! Get the version from the "version of the format" value in the pulsars.json file //! @return version string, e.g. "2" - int getJsonFileVersion(void); + int getJsonFileFormatVersion(void); + + //! Check format of the catalog of pulsars + //! @return valid boolean, e.g. "true" + bool checkJsonFileFormat(void); //! parse JSON file and load pulsars to map QVariantMap loadPSRMap(QString path=QString()); @@ -191,9 +213,7 @@ // variables and functions for the updater UpdateState updateState; QNetworkAccessManager* downloadMgr; - QString updateUrl; - QString updateFile; - QProgressBar* progressBar; + QString updateUrl; QTimer* updateTimer; QTimer* messageTimer; QList messageIDs; @@ -201,11 +221,20 @@ QDateTime lastUpdate; int updateFrequencyDays; bool distributionEnabled; + bool enableAtStartup; QSettings* conf; // GUI PulsarsDialog* configDialog; + bool flagShowPulsars; + bool flagShowPulsarsButton; + QPixmap* OnIcon; + QPixmap* OffIcon; + QPixmap* GlowIcon; + StelButton* toolbarButton; + QProgressBar* progressBar; + private slots: //! check to see if an update is required. This is called periodically by a timer diff -Nru stellarium-0.12.1/plugins/Pulsars/src/gui/PulsarsDialog.cpp stellarium-0.12.4/plugins/Pulsars/src/gui/PulsarsDialog.cpp --- stellarium-0.12.1/plugins/Pulsars/src/gui/PulsarsDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Pulsars/src/gui/PulsarsDialog.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -74,6 +74,10 @@ // Settings tab / updates group ui->displayModeCheckBox->setChecked(GETSTELMODULE(Pulsars)->getDisplayMode()); connect(ui->displayModeCheckBox, SIGNAL(stateChanged(int)), this, SLOT(setDistributionEnabled(int))); + ui->displayAtStartupCheckBox->setChecked(GETSTELMODULE(Pulsars)->getEnableAtStartup()); + connect(ui->displayAtStartupCheckBox, SIGNAL(stateChanged(int)), this, SLOT(setDisplayAtStartupEnabled(int))); + ui->displayShowPulsarsButton->setChecked(GETSTELMODULE(Pulsars)->getFlagShowPulsarsButton()); + connect(ui->displayShowPulsarsButton, SIGNAL(stateChanged(int)), this, SLOT(setDisplayShowPulsarsButton(int))); connect(ui->internetUpdatesCheckbox, SIGNAL(stateChanged(int)), this, SLOT(setUpdatesEnabled(int))); connect(ui->updateButton, SIGNAL(clicked()), this, SLOT(updateJSON())); connect(GETSTELMODULE(Pulsars), SIGNAL(updateStateChanged(Pulsars::UpdateState)), this, SLOT(updateStateReceiver(Pulsars::UpdateState))); @@ -195,6 +199,18 @@ GETSTELMODULE(Pulsars)->setDisplayMode(b); } +void PulsarsDialog::setDisplayAtStartupEnabled(int checkState) +{ + bool b = checkState != Qt::Unchecked; + GETSTELMODULE(Pulsars)->setEnableAtStartup(b); +} + +void PulsarsDialog::setDisplayShowPulsarsButton(int checkState) +{ + bool b = checkState != Qt::Unchecked; + GETSTELMODULE(Pulsars)->setFlagShowPulsarsButton(b); +} + void PulsarsDialog::updateStateReceiver(Pulsars::UpdateState state) { //qDebug() << "PulsarsDialog::updateStateReceiver got a signal"; diff -Nru stellarium-0.12.1/plugins/Pulsars/src/gui/PulsarsDialog.hpp stellarium-0.12.4/plugins/Pulsars/src/gui/PulsarsDialog.hpp --- stellarium-0.12.1/plugins/Pulsars/src/gui/PulsarsDialog.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Pulsars/src/gui/PulsarsDialog.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -48,6 +48,8 @@ void setUpdateValues(int days); void setUpdatesEnabled(int checkState); void setDistributionEnabled(int checkState); + void setDisplayAtStartupEnabled(int checkState); + void setDisplayShowPulsarsButton(int checkState); void updateStateReceiver(Pulsars::UpdateState state); void updateCompleteReceiver(); void restoreDefaults(void); diff -Nru stellarium-0.12.1/plugins/Pulsars/src/gui/pulsarsDialog.ui stellarium-0.12.4/plugins/Pulsars/src/gui/pulsarsDialog.ui --- stellarium-0.12.1/plugins/Pulsars/src/gui/pulsarsDialog.ui 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Pulsars/src/gui/pulsarsDialog.ui 2013-08-04 06:20:27.000000000 +0000 @@ -6,8 +6,8 @@ 0 0 - 539 - 467 + 531 + 459 @@ -229,7 +229,7 @@ - Display mode for pulsars + Settings for pulsars true @@ -245,6 +245,20 @@ + + + + Enable display at startup + + + + + + + Show pulsars button on toolbar + + + diff -Nru stellarium-0.12.1/plugins/Pulsars/util/psrcat2json.pl stellarium-0.12.4/plugins/Pulsars/util/psrcat2json.pl --- stellarium-0.12.1/plugins/Pulsars/util/psrcat2json.pl 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Pulsars/util/psrcat2json.pl 2013-09-07 15:50:48.000000000 +0000 @@ -1,4 +1,30 @@ #!/usr/bin/perl -w + +# +# Tool for generate catalog of pulsars +# +# Copyright (C) 2012 Alexander Wolf +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +# + + # # read psrcat.db from ATNF Pulsar Catalogue and convert to JSON # URL: http://www.atnf.csiro.au/research/pulsar/psrcat/download.html @@ -9,7 +35,7 @@ $JSON = "./pulsars.json"; $FORMAT = 2; -$CATVER = 1.44; +$CATVER = 1.46; open (PSRCAT, "<$PSRCAT"); @catalog = ; @@ -66,13 +92,19 @@ if ($lines[$j] =~ /^RAJ(\s+)([\d\-\+\:\.]+)/) { ($hour,$min,$sec) = split(":",$2); + $min += 0; + if ($min<10) { $min = "0".$min; } $sec += 0; + if ($sec<10) { $sec = "0".$sec; } $outRA = $hour."h".$min."m".$sec."s"; } if ($lines[$j] =~ /^DECJ(\s+)([\d\-\+\:\.]+)/) { ($deg,$min,$sec) = split(":",$2); + $min += 0; + if ($min<10) { $min = "0".$min; } $sec += 0; + if ($sec<10) { $sec = "0".$sec; } $outDE = $deg."d".$min."m".$sec."s"; } diff -Nru stellarium-0.12.1/plugins/Quasars/CMakeLists.txt stellarium-0.12.4/plugins/Quasars/CMakeLists.txt --- stellarium-0.12.1/plugins/Quasars/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Quasars/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,6 +1,6 @@ SET(QUASARS_PLUGIN_MAJOR "0") SET(QUASARS_PLUGIN_MINOR "1") -SET(QUASARS_PLUGIN_PATCH "5") +SET(QUASARS_PLUGIN_PATCH "10") SET(QUASARS_VERSION "${QUASARS_PLUGIN_MAJOR}.${QUASARS_PLUGIN_MINOR}.${QUASARS_PLUGIN_PATCH}") IF(APPLE) diff -Nru stellarium-0.12.1/plugins/Quasars/Doxyfile stellarium-0.12.4/plugins/Quasars/Doxyfile --- stellarium-0.12.1/plugins/Quasars/Doxyfile 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Quasars/Doxyfile 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,1800 @@ +# Doxyfile 1.8.0 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" "). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or sequence of words) that should +# identify the project. Note that if you do not use Doxywizard you need +# to put quotes around the project name if it contains spaces. + +PROJECT_NAME = "Stellarium Quasars Plug-in" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer +# a quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is +# included in the documentation. The maximum height of the logo should not +# exceed 55 pixels and the maximum width should not exceed 200 pixels. +# Doxygen will copy the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful if your file system +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = YES + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding +# "class=itcl::class" will allow you to use the command class in the +# itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this +# tag. The format is ext=language, where ext is a file extension, and language +# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, +# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make +# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C +# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions +# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all +# comments according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you +# can mix doxygen, HTML, and XML commands with Markdown formatting. +# Disable only in case of backward compatibilities issues. + +MARKDOWN_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also makes the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and +# unions are shown inside the group in which they are included (e.g. using +# @ingroup) instead of on a separate page (for HTML and Man pages) or +# section (for LaTeX and RTF). + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and +# unions with only public data fields will be shown inline in the documentation +# of the scope in which they are defined (i.e. file, namespace, or group +# documentation), provided this scope is documented. If set to NO (the default), +# structs, classes, and unions are shown on a separate page (for HTML and Man +# pages) or section (for LaTeX and RTF). + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penalty. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will roughly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +SYMBOL_CACHE_SIZE = 0 + +# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be +# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given +# their name and scope. Since this can be an expensive process and often the +# same symbol appear multiple times in the code, doxygen keeps a cache of +# pre-resolved symbols. If the cache is too small doxygen will become slower. +# If the cache is too large, memory is wasted. The cache size is given by this +# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespaces are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen +# will list include files with double quotes in the documentation +# rather than with sharp brackets. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen +# will sort the (brief and detailed) documentation of class members so that +# constructors and destructors are listed first. If set to NO (the default) +# the constructors will appear in the respective orders defined by +# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to +# do proper type resolution of all parameters of a function it will reject a +# match between the prototype and the implementation of a member function even +# if there is only one candidate or it is obvious which candidate to choose +# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen +# will still accept a match between prototype and implementation in such cases. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or macro consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and macros in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. The create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. +# You can optionally specify a file name after the option, if omitted +# DoxygenLayout.xml will be used as the name of the layout file. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files +# containing the references data. This must be a list of .bib files. The +# .bib extension is automatically appended if omitted. Using this command +# requires the bibtex tool to be installed. See also +# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style +# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this +# feature you need bibtex and perl available in the search path. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# The WARN_NO_PARAMDOC option can be enabled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = ./src ./src/gui + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh +# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py +# *.f90 *.f *.for *.vhd *.vhdl + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty or if +# non of the patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) +# and it is also possible to disable source filtering for a specific pattern +# using *.ext= (so without naming a filter). This option only has effect when +# FILTER_SOURCE_FILES is enabled. + +FILTER_SOURCE_PATTERNS = + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. Note that when using a custom header you are responsible +# for the proper inclusion of any scripts and style sheets that doxygen +# needs, which is dependent on the configuration options used. +# It is advised to generate a default header using "doxygen -w html +# header.html footer.html stylesheet.css YourConfigFile" and then modify +# that header. Note that the header is subject to change so you typically +# have to redo this when upgrading to a newer version of doxygen or when +# changing the value of configuration settings such as GENERATE_TREEVIEW! + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# style sheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that +# the files will be copied as-is; there are no commands or markers available. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. +# Doxygen will adjust the colors in the style sheet and background images +# according to this color. Hue is specified as an angle on a colorwheel, +# see http://en.wikipedia.org/wiki/Hue for more information. +# For instance the value 0 represents red, 60 is yellow, 120 is green, +# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. +# The allowed range is 0 to 359. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of +# the colors in the HTML output. For a value of 0 the output will use +# grayscales only. A value of 255 will produce the most vivid colors. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to +# the luminance component of the colors in the HTML output. Values below +# 100 gradually make the output lighter, whereas values above 100 make +# the output darker. The value divided by 100 is the actual gamma applied, +# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, +# and 100 does not change the gamma. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting +# this to NO can help when comparing the output of multiple runs. + +HTML_TIMESTAMP = YES + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated +# that can be used as input for Qt's qhelpgenerator to generate a +# Qt Compressed Help (.qch) of the generated HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to +# add. For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see +# +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's +# filter section matches. +# +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files +# will be generated, which together with the HTML files, form an Eclipse help +# plugin. To install this plugin and make it available under the help contents +# menu in Eclipse, the contents of the directory containing the HTML and XML +# files needs to be copied into the plugins directory of eclipse. The name of +# the directory within the plugins directory should be the same as +# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before +# the help appears. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have +# this name. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) +# at top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. Since the tabs have the same information as the +# navigation tree you can set this option to NO if you already set +# GENERATE_TREEVIEW to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. +# Since the tree basically has the same information as the tab index you +# could consider to set DISABLE_INDEX to NO when enabling this option. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values +# (range [0,1..20]) that doxygen will group on one line in the generated HTML +# documentation. Note that a value of 0 will completely suppress the enum +# values from appearing in the overview section. + +ENUM_VALUES_PER_LINE = 4 + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open +# links to external symbols imported via tag files in a separate window. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are +# not supported properly for IE 6.0, but are supported on all modern browsers. +# Note that when changing this option you need to delete any form_*.png files +# in the HTML output before the changes have effect. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax +# (see http://www.mathjax.org) which uses client side Javascript for the +# rendering instead of using prerendered bitmaps. Use this if you do not +# have LaTeX installed or if you want to formulas look prettier in the HTML +# output. When enabled you may also need to install MathJax separately and +# configure the path to it using the MATHJAX_RELPATH option. + +USE_MATHJAX = NO + +# When MathJax is enabled you need to specify the location relative to the +# HTML output directory using the MATHJAX_RELPATH option. The destination +# directory should contain the MathJax.js script. For instance, if the mathjax +# directory is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to +# the MathJax Content Delivery Network so you can quickly see the result without +# installing MathJax. +# However, it is strongly recommended to install a local +# copy of MathJax from http://www.mathjax.org before deployment. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension +# names that should be enabled during MathJax rendering. + +MATHJAX_EXTENSIONS = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box +# for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using +# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets +# (GENERATE_DOCSET) there is already a search function so this one should +# typically be disabled. For large projects the javascript based search engine +# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a PHP enabled web server instead of at the web client +# using Javascript. Doxygen will generate the search PHP script and index +# file to put on the web server. The advantage of the server +# based approach is that it scales better to large projects and allows +# full text search. The disadvantages are that it is more difficult to setup +# and does not have live searching capabilities. + +SERVER_BASED_SEARCH = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. +# Note that when enabling USE_PDFLATEX this option is only used for +# generating bitmaps for formulas in the HTML output, but not in the +# Makefile that is written to the output directory. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for +# the generated latex document. The footer should contain everything after +# the last chapter. If it is left blank doxygen will generate a +# standard footer. Notice: only use this tag if you know what you are doing! + +LATEX_FOOTER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include +# source code with syntax highlighting in the LaTeX output. +# Note that which sources are shown also depends on other settings +# such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See +# http://en.wikipedia.org/wiki/BibTeX for more info. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load style sheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# pointed to by INCLUDE_PATH will be searched when a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition that +# overrules the definition found in the source code. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all references to function-like macros +# that are alone on a line, have an all uppercase name, and do not end with a +# semicolon, because these will confuse the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. For each +# tag file the location of the external documentation should be added. The +# format of a tag file without this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths +# or URLs. Note that each tag file must have a unique name (where the name does +# NOT include the path). If a tag file is not located in the directory in which +# doxygen is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option also works with HAVE_DOT disabled, but it is recommended to +# install and use dot, since it yields more powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is +# allowed to run in parallel. When set to 0 (the default) doxygen will +# base this on the number of processors available in the system. You can set it +# explicitly to a value larger than 0 to get control over the balance +# between CPU load and processing speed. + +DOT_NUM_THREADS = 0 + +# By default doxygen will use the Helvetica font for all dot files that +# doxygen generates. When you want a differently looking font you can specify +# the font name using DOT_FONTNAME. You need to make sure dot is able to find +# the font, which can be done by putting it in a standard location or by setting +# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. + +DOT_FONTNAME = Helvetica + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the Helvetica font. +# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to +# set the path where dot can find it. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside +# the class node. If there are many fields or methods and many nodes the +# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS +# threshold limits the number of items for each type to make the size more +# managable. Set this to 0 for no limit. Note that the threshold may be +# exceeded by 50% before the limit is enforced. + +UML_LIMIT_NUM_FIELDS = 10 + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will generate a graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are svg, png, jpg, or gif. +# If left blank png will be used. If you choose svg you need to set +# HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible in IE 9+ (other browsers do not have this requirement). + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# Note that this requires a modern browser other than Internet Explorer. +# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you +# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible. Older versions of IE do not have SVG support. + +INTERACTIVE_SVG = NO + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the +# \mscfile command). + +MSCFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff -Nru stellarium-0.12.1/plugins/Quasars/resources/Quasars.qrc stellarium-0.12.4/plugins/Quasars/resources/Quasars.qrc --- stellarium-0.12.1/plugins/Quasars/resources/Quasars.qrc 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Quasars/resources/Quasars.qrc 2013-08-04 06:20:27.000000000 +0000 @@ -2,5 +2,7 @@ quasar.png quasars.json + btQuasars-on.png + btQuasars-off.png Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/plugins/Quasars/resources/btQuasars-off.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/plugins/Quasars/resources/btQuasars-off.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/plugins/Quasars/resources/btQuasars-on.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/plugins/Quasars/resources/btQuasars-on.png differ diff -Nru stellarium-0.12.1/plugins/Quasars/src/Quasars.cpp stellarium-0.12.4/plugins/Quasars/src/Quasars.cpp --- stellarium-0.12.1/plugins/Quasars/src/Quasars.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Quasars/src/Quasars.cpp 2013-09-13 10:51:45.000000000 +0000 @@ -49,6 +49,7 @@ #include #include #include +#include #define CATALOG_FORMAT_VERSION 1 /* Version of format of catalog */ @@ -83,6 +84,11 @@ Quasars::Quasars() : texPointer(NULL) , markerTexture(NULL) + , flagShowQuasars(false) + , OnIcon(NULL) + , OffIcon(NULL) + , GlowIcon(NULL) + , toolbarButton(NULL) , progressBar(NULL) { setObjectName("Quasars"); @@ -97,6 +103,13 @@ Quasars::~Quasars() { delete configDialog; + + if (GlowIcon) + delete GlowIcon; + if (OnIcon) + delete OnIcon; + if (OffIcon) + delete OffIcon; } void Quasars::deinit() @@ -123,6 +136,8 @@ */ void Quasars::init() { + upgradeConfigIni(); + try { StelFileMgr::makeSureDirExistsAndIsWritable(StelFileMgr::getUserDir()+"/modules/Quasars"); @@ -142,8 +157,16 @@ // key bindings and other actions StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); + GlowIcon = new QPixmap(":/graphicsGui/glow32x32.png"); + OnIcon = new QPixmap(":/Quasars/btQuasars-on.png"); + OffIcon = new QPixmap(":/Quasars/btQuasars-off.png"); + + setFlagShowQuasars(getEnableAtStartup()); + setFlagShowQuasarsButton(flagShowQuasarsButton); + connect(gui->getGuiAction("actionShow_Quasars_ConfigDialog"), SIGNAL(toggled(bool)), configDialog, SLOT(setVisible(bool))); connect(configDialog, SIGNAL(visibleChanged(bool)), gui->getGuiAction("actionShow_Quasars_ConfigDialog"), SLOT(setChecked(bool))); + connect(gui->getGuiAction("actionShow_Quasars"), SIGNAL(toggled(bool)), this, SLOT(setFlagShowQuasars(bool))); } catch (std::runtime_error &e) { @@ -161,18 +184,18 @@ // If the json file does not already exist, create it from the resource in the Qt resource if(QFileInfo(catalogJsonPath).exists()) { - if (getJsonFileVersion() < CATALOG_FORMAT_VERSION) + if (!checkJsonFileFormat() || getJsonFileFormatVersion()getProjection(StelCore::FrameJ2000); renderer->setFont(font); @@ -248,6 +274,9 @@ { QList result; + if (!flagShowQuasars) + return result; + Vec3d v(av); v.normalize(); double cosLimFov = cos(limitFov * M_PI/180.); @@ -271,10 +300,12 @@ StelObjectP Quasars::searchByName(const QString& englishName) const { - QString objw = englishName.toUpper(); + if (!flagShowQuasars) + return NULL; + foreach(const QuasarP& quasar, QSO) { - if (quasar->getEnglishName().toUpper() == englishName) + if (quasar->getEnglishName().toUpper() == englishName.toUpper()) return qSharedPointerCast(quasar); } @@ -283,55 +314,90 @@ StelObjectP Quasars::searchByNameI18n(const QString& nameI18n) const { - QString objw = nameI18n.toUpper(); + if (!flagShowQuasars) + return NULL; foreach(const QuasarP& quasar, QSO) { - if (quasar->getNameI18n().toUpper() == nameI18n) + if (quasar->getNameI18n().toUpper() == nameI18n.toUpper()) return qSharedPointerCast(quasar); } return NULL; } -QStringList Quasars::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem) const +QStringList Quasars::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; - if (maxNbItem==0) return result; + if (!flagShowQuasars) + return result; - QString objw = objPrefix.toUpper(); + if (maxNbItem==0) + return result; + QString qson; + bool find; foreach(const QuasarP& quasar, QSO) { - if (quasar->getNameI18n().toUpper().left(objw.length()) == objw) + qson = quasar->getNameI18n(); + find = false; + if (useStartOfWords) + { + if (qson.toUpper().left(objPrefix.length()) == objPrefix.toUpper()) + find = true; + } + else { - result << quasar->getNameI18n().toUpper(); + if (qson.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << qson; } } result.sort(); - if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); + if (result.size()>maxNbItem) + result.erase(result.begin()+maxNbItem, result.end()); return result; } -QStringList Quasars::listMatchingObjects(const QString& objPrefix, int maxNbItem) const +QStringList Quasars::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; - if (maxNbItem==0) return result; + if (!flagShowQuasars) + return result; - QString objw = objPrefix.toUpper(); + if (maxNbItem==0) + return result; + QString qson; + bool find; foreach(const QuasarP& quasar, QSO) { - if (quasar->getEnglishName().toUpper().left(objw.length()) == objw) + qson = quasar->getEnglishName(); + find = false; + if (useStartOfWords) + { + if (qson.toUpper().left(objPrefix.length()) == objPrefix.toUpper()) + find = true; + } + else { - result << quasar->getEnglishName().toUpper(); + if (qson.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << qson; } } result.sort(); - if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); + if (result.size()>maxNbItem) + result.erase(result.begin()+maxNbItem, result.end()); return result; } @@ -368,11 +434,11 @@ QFile src(":/Quasars/quasars.json"); if (!src.copy(catalogJsonPath)) { - qWarning() << "Quasars::restoreDefaultJsonFile cannot copy json resource to " + catalogJsonPath; + qWarning() << "Quasars::restoreDefaultJsonFile cannot copy json resource to " + QDir::toNativeSeparators(catalogJsonPath); } else { - qDebug() << "Quasars::init copied default catalog.json to " << catalogJsonPath; + qDebug() << "Quasars::init copied default catalog.json to " << QDir::toNativeSeparators(catalogJsonPath); // The resource is read only, and the new file inherits this... make sure the new file // is writable by the Stellarium process so that updates can be done. QFile dest(catalogJsonPath); @@ -442,7 +508,7 @@ QVariantMap map; QFile jsonFile(path); if (!jsonFile.open(QIODevice::ReadOnly)) - qWarning() << "Quasars::loadQSOMap cannot open " << path; + qWarning() << "Quasars::loadQSOMap cannot open " << QDir::toNativeSeparators(path); else map = StelJsonParser::parse(jsonFile.readAll()).toMap(); @@ -469,13 +535,13 @@ } } -int Quasars::getJsonFileVersion(void) +int Quasars::getJsonFileFormatVersion(void) { int jsonVersion = -1; QFile catalogJsonFile(catalogJsonPath); if (!catalogJsonFile.open(QIODevice::ReadOnly)) { - qWarning() << "Quasars::init cannot open " << catalogJsonPath; + qWarning() << "Quasars::init cannot open " << QDir::toNativeSeparators(catalogJsonPath); return jsonVersion; } @@ -487,10 +553,35 @@ } catalogJsonFile.close(); - qDebug() << "Quasars::getJsonFileVersion() version from file:" << jsonVersion; + qDebug() << "Quasars::getJsonFileFormatVersion() version of format from file:" << jsonVersion; return jsonVersion; } +bool Quasars::checkJsonFileFormat() +{ + QFile catalogJsonFile(catalogJsonPath); + if (!catalogJsonFile.open(QIODevice::ReadOnly)) + { + qWarning() << "Quasars::checkJsonFileFormat(): cannot open " << QDir::toNativeSeparators(catalogJsonPath); + return false; + } + + QVariantMap map; + try + { + map = StelJsonParser::parse(&catalogJsonFile).toMap(); + catalogJsonFile.close(); + } + catch (std::runtime_error& e) + { + qDebug() << "Quasars::checkJsonFileFormat(): file format is wrong!"; + qDebug() << "Quasars::checkJsonFileFormat() error:" << e.what(); + return false; + } + + return true; +} + QuasarP Quasars::getByID(const QString& id) { foreach(const QuasarP& quasar, QSO) @@ -528,9 +619,11 @@ conf->remove(""); conf->setValue("distribution_enabled", false); - conf->setValue("updates_enabled", true); + conf->setValue("enable_at_startup", false); + conf->setValue("updates_enabled", true); conf->setValue("url", "http://stellarium.org/json/quasars.json"); conf->setValue("update_frequency_days", 100); + conf->setValue("flag_show_quasars_button", true); conf->endGroup(); } @@ -543,6 +636,8 @@ lastUpdate = QDateTime::fromString(conf->value("last_update", "2012-05-24T12:00:00").toString(), Qt::ISODate); updatesEnabled = conf->value("updates_enabled", true).toBool(); distributionEnabled = conf->value("distribution_enabled", false).toBool(); + enableAtStartup = conf->value("enable_at_startup", false).toBool(); + flagShowQuasarsButton = conf->value("flag_show_quasars_button", true).toBool(); conf->endGroup(); } @@ -555,6 +650,8 @@ conf->setValue("update_frequency_days", updateFrequencyDays); conf->setValue("updates_enabled", updatesEnabled ); conf->setValue("distribution_enabled", distributionEnabled); + conf->setValue("enable_at_startup", enableAtStartup); + conf->setValue("flag_show_quasars_button", flagShowQuasarsButton); conf->endGroup(); } @@ -586,32 +683,23 @@ lastUpdate = QDateTime::currentDateTime(); conf->setValue("Quasars/last_update", lastUpdate.toString(Qt::ISODate)); - emit(jsonUpdateComplete()); - updateState = Quasars::Updating; - - emit(updateStateChanged(updateState)); - updateFile.clear(); + emit(updateStateChanged(updateState)); if (progressBar==NULL) progressBar = StelApp::getInstance().getGui()->addProgressBar(); progressBar->setValue(0); - progressBar->setMaximum(updateUrl.size()); - progressBar->setVisible(true); + progressBar->setMaximum(100); progressBar->setFormat("Update quasars"); + progressBar->setVisible(true); QNetworkRequest request; request.setUrl(QUrl(updateUrl)); request.setRawHeader("User-Agent", QString("Mozilla/5.0 (Stellarium Quasars Plugin %1; http://stellarium.org/)").arg(QUASARS_PLUGIN_VERSION).toUtf8()); downloadMgr->get(request); - progressBar->setValue(100); - delete progressBar; - progressBar = NULL; - - updateState = CompleteUpdates; - + updateState = Quasars::CompleteUpdates; emit(updateStateChanged(updateState)); emit(jsonUpdateComplete()); } @@ -645,7 +733,11 @@ } if (progressBar) + { progressBar->setValue(100); + delete progressBar; + progressBar = NULL; + } } void Quasars::displayMessage(const QString& message, const QString hexColor) @@ -661,3 +753,32 @@ GETSTELMODULE(LabelMgr)->deleteLabel(i); } } + +void Quasars::upgradeConfigIni(void) +{ + // Upgrade settings for Quasars plugin + if (conf->contains("Quasars/flag_show_quasars")) + { + bool b = conf->value("Quasars/flag_show_quasars", false).toBool(); + if (!conf->contains("Quasars/enable_at_startup")) + conf->setValue("Quasars/enable_at_startup", b); + conf->remove("Quasars/flag_show_quasars"); + } +} + +// Define whether the button toggling quasars should be visible +void Quasars::setFlagShowQuasarsButton(bool b) +{ + StelGui* gui = dynamic_cast(StelApp::getInstance().getGui()); + if (b==true) { + if (toolbarButton==NULL) { + // Create the quasars button + gui->getGuiAction("actionShow_Quasars")->setChecked(flagShowQuasars); + toolbarButton = new StelButton(NULL, *OnIcon, *OffIcon, *GlowIcon, gui->getGuiAction("actionShow_Quasars")); + } + gui->getButtonBar()->addButton(toolbarButton, "065-pluginsGroup"); + } else { + gui->getButtonBar()->hideButton("actionShow_Quasars"); + } + flagShowQuasarsButton = b; +} diff -Nru stellarium-0.12.1/plugins/Quasars/src/Quasars.hpp stellarium-0.12.4/plugins/Quasars/src/Quasars.hpp --- stellarium-0.12.1/plugins/Quasars/src/Quasars.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Quasars/src/Quasars.hpp 2013-09-13 10:51:45.000000000 +0000 @@ -34,6 +34,8 @@ class QProgressBar; class QSettings; class QTimer; +class QPixmap; +class StelButton; class QuasarsDialog; typedef QSharedPointer QuasarP; @@ -85,14 +87,16 @@ //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; virtual QStringList listAllObjects(bool inEnglish) const; virtual QString getName() const { return "Quasars"; } @@ -125,6 +129,8 @@ bool getDisplayMode(void) {return distributionEnabled;} void setDisplayMode(bool b) {distributionEnabled=b;} + void setEnableAtStartup(bool b) { enableAtStartup=b; } + bool getEnableAtStartup(void) { return enableAtStartup; } //! get the date and time the TLE elements were updated QDateTime getLastUpdate(void) {return lastUpdate;} @@ -151,6 +157,13 @@ //! module.ini file and update the local JSON file. void updateJSON(void); + void setFlagShowQuasars(bool b) { flagShowQuasars=b; } + bool getFlagShowQuasars(void) { return flagShowQuasars; } + + //! Define whether the button toggling quasars should be visible + void setFlagShowQuasarsButton(bool b); + bool getFlagShowQuasarsButton(void) { return flagShowQuasarsButton; } + //! Display a message. This is used for plugin-specific warnings and such void displayMessage(const QString& message, const QString hexColor="#999999"); void messageTimeout(void); @@ -162,6 +175,9 @@ // if existing, delete Satellites section in main config.ini, then create with default values void restoreDefaultConfigIni(void); + // Upgrade config.ini: rename old key settings to new + void upgradeConfigIni(void); + //! replace the json file with the default from the compiled-in resource void restoreDefaultJsonFile(void); @@ -173,9 +189,13 @@ //! @return true on OK, false on failure bool backupJsonFile(bool deleteOriginal=false); - //! Get the version from the "version" value in the catalog.json file - //! @return version string, e.g. "0.2.1" - int getJsonFileVersion(void); + //! Get the version from the "version of the format" value in the catalog.json file + //! @return version string, e.g. "1" + int getJsonFileFormatVersion(void); + + //! Check format of the catalog of quasars + //! @return valid boolean, e.g. "true" + bool checkJsonFileFormat(void); //! parse JSON file and load quasars to map QVariantMap loadQSOMap(QString path=QString()); @@ -192,9 +212,7 @@ // variables and functions for the updater UpdateState updateState; QNetworkAccessManager* downloadMgr; - QString updateUrl; - QString updateFile; - QProgressBar* progressBar; + QString updateUrl; QTimer* updateTimer; QTimer* messageTimer; QList messageIDs; @@ -202,11 +220,19 @@ QDateTime lastUpdate; int updateFrequencyDays; bool distributionEnabled; + bool enableAtStartup; QSettings* conf; // GUI QuasarsDialog* configDialog; + bool flagShowQuasars; + bool flagShowQuasarsButton; + QPixmap* OnIcon; + QPixmap* OffIcon; + QPixmap* GlowIcon; + StelButton* toolbarButton; + QProgressBar* progressBar; private slots: //! check to see if an update is required. This is called periodically by a timer diff -Nru stellarium-0.12.1/plugins/Quasars/src/gui/QuasarsDialog.cpp stellarium-0.12.4/plugins/Quasars/src/gui/QuasarsDialog.cpp --- stellarium-0.12.1/plugins/Quasars/src/gui/QuasarsDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Quasars/src/gui/QuasarsDialog.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -74,6 +74,10 @@ // Settings tab / updates group ui->displayModeCheckBox->setChecked(GETSTELMODULE(Quasars)->getDisplayMode()); connect(ui->displayModeCheckBox, SIGNAL(stateChanged(int)), this, SLOT(setDistributionEnabled(int))); + ui->displayAtStartupCheckBox->setChecked(GETSTELMODULE(Quasars)->getEnableAtStartup()); + connect(ui->displayAtStartupCheckBox, SIGNAL(stateChanged(int)), this, SLOT(setDisplayAtStartupEnabled(int))); + ui->displayShowQuasarsButton->setChecked(GETSTELMODULE(Quasars)->getFlagShowQuasarsButton()); + connect(ui->displayShowQuasarsButton, SIGNAL(stateChanged(int)), this, SLOT(setDisplayShowQuasarsButton(int))); connect(ui->internetUpdatesCheckbox, SIGNAL(stateChanged(int)), this, SLOT(setUpdatesEnabled(int))); connect(ui->updateButton, SIGNAL(clicked()), this, SLOT(updateJSON())); connect(GETSTELMODULE(Quasars), SIGNAL(updateStateChanged(Quasars::UpdateState)), this, SLOT(updateStateReceiver(Quasars::UpdateState))); @@ -181,6 +185,18 @@ GETSTELMODULE(Quasars)->setDisplayMode(b); } +void QuasarsDialog::setDisplayAtStartupEnabled(int checkState) +{ + bool b = checkState != Qt::Unchecked; + GETSTELMODULE(Quasars)->setEnableAtStartup(b); +} + +void QuasarsDialog::setDisplayShowQuasarsButton(int checkState) +{ + bool b = checkState != Qt::Unchecked; + GETSTELMODULE(Quasars)->setFlagShowQuasarsButton(b); +} + void QuasarsDialog::updateStateReceiver(Quasars::UpdateState state) { //qDebug() << "QuasarsDialog::updateStateReceiver got a signal"; diff -Nru stellarium-0.12.1/plugins/Quasars/src/gui/QuasarsDialog.hpp stellarium-0.12.4/plugins/Quasars/src/gui/QuasarsDialog.hpp --- stellarium-0.12.1/plugins/Quasars/src/gui/QuasarsDialog.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Quasars/src/gui/QuasarsDialog.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -48,6 +48,8 @@ void setUpdateValues(int days); void setUpdatesEnabled(int checkState); void setDistributionEnabled(int checkState); + void setDisplayAtStartupEnabled(int checkState); + void setDisplayShowQuasarsButton(int checkState); void updateStateReceiver(Quasars::UpdateState state); void updateCompleteReceiver(); void restoreDefaults(void); diff -Nru stellarium-0.12.1/plugins/Quasars/src/gui/quasarsDialog.ui stellarium-0.12.4/plugins/Quasars/src/gui/quasarsDialog.ui --- stellarium-0.12.1/plugins/Quasars/src/gui/quasarsDialog.ui 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Quasars/src/gui/quasarsDialog.ui 2013-08-04 06:20:27.000000000 +0000 @@ -6,8 +6,8 @@ 0 0 - 537 - 465 + 529 + 457 @@ -229,7 +229,7 @@ - Display mode for quasars + Settings for quasars true @@ -245,6 +245,20 @@ + + + + Enable display at startup + + + + + + + Show quasars button on toolbar + + + diff -Nru stellarium-0.12.1/plugins/Quasars/util/tsv2json.pl stellarium-0.12.4/plugins/Quasars/util/tsv2json.pl --- stellarium-0.12.1/plugins/Quasars/util/tsv2json.pl 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Quasars/util/tsv2json.pl 2013-09-07 15:50:48.000000000 +0000 @@ -1,4 +1,29 @@ #!/usr/bin/perl + +# +# Tool for generate catalog of quasars +# +# Copyright (C) 2012 Alexander Wolf +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +# + # # read quasars.tsv from VizieR and convert to JSON # diff -Nru stellarium-0.12.1/plugins/Satellites/CMakeLists.txt stellarium-0.12.4/plugins/Satellites/CMakeLists.txt --- stellarium-0.12.1/plugins/Satellites/CMakeLists.txt 2013-04-16 11:33:35.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,7 +1,7 @@ # WARNING! Update also the version number in resources/satellites.json, # otherwise the local copy of that file will be overwritten every time # Stellarium starts. (Less of a problem if it manages to get one update.) -SET(SATELLITES_VERSION "0.7.4") +SET(SATELLITES_VERSION "0.8.1") SET(CMAKE_INSTALL_PREFIX $ENV{HOME}/.stellarium) diff -Nru stellarium-0.12.1/plugins/Satellites/ChangeLog stellarium-0.12.4/plugins/Satellites/ChangeLog --- stellarium-0.12.1/plugins/Satellites/ChangeLog 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/ChangeLog 2013-08-04 06:20:27.000000000 +0000 @@ -1,3 +1,21 @@ +0.8.0 [2013-05-31] +Some class interface cleanup. +Satellites list management: +- improved multiple selection handling and operations (toggling display and +orbit flags, etc.) +- editable satellite groups; adding custom groups +- localization of default satellite group names and satellite descriptions +- list entry indicates hint color +Update management: +- automatic adding of new satellites on update from selected update sources; +by default, only new naked-eye satellites are auto-added +- automatic removal of satellites if they are no longer listed in the update +sources +- "user-defined" flag protecting satellites from update/removal + +WARNING! There have been changes to the config.ini section format, but they are +backwards-compatible. + 0.7.3 Use editable keybindings diff -Nru stellarium-0.12.1/plugins/Satellites/Doxyfile stellarium-0.12.4/plugins/Satellites/Doxyfile --- stellarium-0.12.1/plugins/Satellites/Doxyfile 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/Doxyfile 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,1800 @@ +# Doxyfile 1.8.0 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" "). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or sequence of words) that should +# identify the project. Note that if you do not use Doxywizard you need +# to put quotes around the project name if it contains spaces. + +PROJECT_NAME = "Stellarium Satellites Plug-in" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer +# a quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is +# included in the documentation. The maximum height of the logo should not +# exceed 55 pixels and the maximum width should not exceed 200 pixels. +# Doxygen will copy the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful if your file system +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = YES + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding +# "class=itcl::class" will allow you to use the command class in the +# itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this +# tag. The format is ext=language, where ext is a file extension, and language +# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, +# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make +# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C +# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions +# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all +# comments according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you +# can mix doxygen, HTML, and XML commands with Markdown formatting. +# Disable only in case of backward compatibilities issues. + +MARKDOWN_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also makes the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and +# unions are shown inside the group in which they are included (e.g. using +# @ingroup) instead of on a separate page (for HTML and Man pages) or +# section (for LaTeX and RTF). + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and +# unions with only public data fields will be shown inline in the documentation +# of the scope in which they are defined (i.e. file, namespace, or group +# documentation), provided this scope is documented. If set to NO (the default), +# structs, classes, and unions are shown on a separate page (for HTML and Man +# pages) or section (for LaTeX and RTF). + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penalty. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will roughly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +SYMBOL_CACHE_SIZE = 0 + +# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be +# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given +# their name and scope. Since this can be an expensive process and often the +# same symbol appear multiple times in the code, doxygen keeps a cache of +# pre-resolved symbols. If the cache is too small doxygen will become slower. +# If the cache is too large, memory is wasted. The cache size is given by this +# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespaces are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen +# will list include files with double quotes in the documentation +# rather than with sharp brackets. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen +# will sort the (brief and detailed) documentation of class members so that +# constructors and destructors are listed first. If set to NO (the default) +# the constructors will appear in the respective orders defined by +# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to +# do proper type resolution of all parameters of a function it will reject a +# match between the prototype and the implementation of a member function even +# if there is only one candidate or it is obvious which candidate to choose +# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen +# will still accept a match between prototype and implementation in such cases. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or macro consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and macros in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. The create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. +# You can optionally specify a file name after the option, if omitted +# DoxygenLayout.xml will be used as the name of the layout file. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files +# containing the references data. This must be a list of .bib files. The +# .bib extension is automatically appended if omitted. Using this command +# requires the bibtex tool to be installed. See also +# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style +# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this +# feature you need bibtex and perl available in the search path. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# The WARN_NO_PARAMDOC option can be enabled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = ./src ./src/gui + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh +# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py +# *.f90 *.f *.for *.vhd *.vhdl + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty or if +# non of the patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) +# and it is also possible to disable source filtering for a specific pattern +# using *.ext= (so without naming a filter). This option only has effect when +# FILTER_SOURCE_FILES is enabled. + +FILTER_SOURCE_PATTERNS = + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. Note that when using a custom header you are responsible +# for the proper inclusion of any scripts and style sheets that doxygen +# needs, which is dependent on the configuration options used. +# It is advised to generate a default header using "doxygen -w html +# header.html footer.html stylesheet.css YourConfigFile" and then modify +# that header. Note that the header is subject to change so you typically +# have to redo this when upgrading to a newer version of doxygen or when +# changing the value of configuration settings such as GENERATE_TREEVIEW! + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# style sheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that +# the files will be copied as-is; there are no commands or markers available. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. +# Doxygen will adjust the colors in the style sheet and background images +# according to this color. Hue is specified as an angle on a colorwheel, +# see http://en.wikipedia.org/wiki/Hue for more information. +# For instance the value 0 represents red, 60 is yellow, 120 is green, +# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. +# The allowed range is 0 to 359. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of +# the colors in the HTML output. For a value of 0 the output will use +# grayscales only. A value of 255 will produce the most vivid colors. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to +# the luminance component of the colors in the HTML output. Values below +# 100 gradually make the output lighter, whereas values above 100 make +# the output darker. The value divided by 100 is the actual gamma applied, +# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, +# and 100 does not change the gamma. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting +# this to NO can help when comparing the output of multiple runs. + +HTML_TIMESTAMP = YES + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated +# that can be used as input for Qt's qhelpgenerator to generate a +# Qt Compressed Help (.qch) of the generated HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to +# add. For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see +# +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's +# filter section matches. +# +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files +# will be generated, which together with the HTML files, form an Eclipse help +# plugin. To install this plugin and make it available under the help contents +# menu in Eclipse, the contents of the directory containing the HTML and XML +# files needs to be copied into the plugins directory of eclipse. The name of +# the directory within the plugins directory should be the same as +# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before +# the help appears. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have +# this name. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) +# at top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. Since the tabs have the same information as the +# navigation tree you can set this option to NO if you already set +# GENERATE_TREEVIEW to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. +# Since the tree basically has the same information as the tab index you +# could consider to set DISABLE_INDEX to NO when enabling this option. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values +# (range [0,1..20]) that doxygen will group on one line in the generated HTML +# documentation. Note that a value of 0 will completely suppress the enum +# values from appearing in the overview section. + +ENUM_VALUES_PER_LINE = 4 + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open +# links to external symbols imported via tag files in a separate window. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are +# not supported properly for IE 6.0, but are supported on all modern browsers. +# Note that when changing this option you need to delete any form_*.png files +# in the HTML output before the changes have effect. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax +# (see http://www.mathjax.org) which uses client side Javascript for the +# rendering instead of using prerendered bitmaps. Use this if you do not +# have LaTeX installed or if you want to formulas look prettier in the HTML +# output. When enabled you may also need to install MathJax separately and +# configure the path to it using the MATHJAX_RELPATH option. + +USE_MATHJAX = NO + +# When MathJax is enabled you need to specify the location relative to the +# HTML output directory using the MATHJAX_RELPATH option. The destination +# directory should contain the MathJax.js script. For instance, if the mathjax +# directory is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to +# the MathJax Content Delivery Network so you can quickly see the result without +# installing MathJax. +# However, it is strongly recommended to install a local +# copy of MathJax from http://www.mathjax.org before deployment. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension +# names that should be enabled during MathJax rendering. + +MATHJAX_EXTENSIONS = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box +# for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using +# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets +# (GENERATE_DOCSET) there is already a search function so this one should +# typically be disabled. For large projects the javascript based search engine +# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a PHP enabled web server instead of at the web client +# using Javascript. Doxygen will generate the search PHP script and index +# file to put on the web server. The advantage of the server +# based approach is that it scales better to large projects and allows +# full text search. The disadvantages are that it is more difficult to setup +# and does not have live searching capabilities. + +SERVER_BASED_SEARCH = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. +# Note that when enabling USE_PDFLATEX this option is only used for +# generating bitmaps for formulas in the HTML output, but not in the +# Makefile that is written to the output directory. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for +# the generated latex document. The footer should contain everything after +# the last chapter. If it is left blank doxygen will generate a +# standard footer. Notice: only use this tag if you know what you are doing! + +LATEX_FOOTER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include +# source code with syntax highlighting in the LaTeX output. +# Note that which sources are shown also depends on other settings +# such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See +# http://en.wikipedia.org/wiki/BibTeX for more info. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load style sheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# pointed to by INCLUDE_PATH will be searched when a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition that +# overrules the definition found in the source code. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all references to function-like macros +# that are alone on a line, have an all uppercase name, and do not end with a +# semicolon, because these will confuse the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. For each +# tag file the location of the external documentation should be added. The +# format of a tag file without this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths +# or URLs. Note that each tag file must have a unique name (where the name does +# NOT include the path). If a tag file is not located in the directory in which +# doxygen is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option also works with HAVE_DOT disabled, but it is recommended to +# install and use dot, since it yields more powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is +# allowed to run in parallel. When set to 0 (the default) doxygen will +# base this on the number of processors available in the system. You can set it +# explicitly to a value larger than 0 to get control over the balance +# between CPU load and processing speed. + +DOT_NUM_THREADS = 0 + +# By default doxygen will use the Helvetica font for all dot files that +# doxygen generates. When you want a differently looking font you can specify +# the font name using DOT_FONTNAME. You need to make sure dot is able to find +# the font, which can be done by putting it in a standard location or by setting +# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. + +DOT_FONTNAME = Helvetica + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the Helvetica font. +# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to +# set the path where dot can find it. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside +# the class node. If there are many fields or methods and many nodes the +# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS +# threshold limits the number of items for each type to make the size more +# managable. Set this to 0 for no limit. Note that the threshold may be +# exceeded by 50% before the limit is enforced. + +UML_LIMIT_NUM_FIELDS = 10 + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will generate a graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are svg, png, jpg, or gif. +# If left blank png will be used. If you choose svg you need to set +# HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible in IE 9+ (other browsers do not have this requirement). + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# Note that this requires a modern browser other than Internet Explorer. +# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you +# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible. Older versions of IE do not have SVG support. + +INTERACTIVE_SVG = NO + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the +# \mscfile command). + +MSCFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff -Nru stellarium-0.12.1/plugins/Satellites/README stellarium-0.12.4/plugins/Satellites/README --- stellarium-0.12.1/plugins/Satellites/README 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/README 2013-08-04 06:20:27.000000000 +0000 @@ -18,6 +18,26 @@ TODO ==== +Things originally planned for 0.8.0 that didn't get finished: ++ Fixing the main configuration file subkey format ++ Editable satellite descriptions ++ TLE set validation/parsing with regular expressions (I have partial. --BM) ++ GUI for manual addition of satellites, including TLE entry ++ GUI for manual addition of comm frequences ++ Reuse of downloaded update files for the current mechanism of satellite adding + - Option to download fresh files ++ Move the current satellite import from the GUI to the core class (makes easier +plug-in GUI porting) + ++ extracting orbit epoch from TLE and adding an option to hide satellites +outside a range around the epoch ++ GUI: color-picker control ++ picking default and individual hint color (and orbit color? was that +a separate thing?) ++? option which info fields to display (or at least, just for the "extra" fields) ++? re-organize configuration file options? (group flags with a "flag_" prefix?) + +Matthew's notes: + Rendering of the actual satellite, not just a hint/label - calculation of brightness, eclipse etc. - iridium flares? diff -Nru stellarium-0.12.1/plugins/Satellites/resources/satellites.json stellarium-0.12.4/plugins/Satellites/resources/satellites.json --- stellarium-0.12.1/plugins/Satellites/resources/satellites.json 2013-04-16 11:34:08.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/resources/satellites.json 2013-08-04 06:20:27.000000000 +0000 @@ -1,5 +1,5 @@ { - "creator": "Satellites plugin version 0.7.4 (updated)", + "creator": "Satellites plugin version 0.8.1 (updated)", "hintColor": [0.4, 0.4, 0.4], "satellites": { @@ -6225,7 +6225,7 @@ "28922": { "comms": [], - "groups": ["experimental", "navigation"], + "groups": ["navigation"], "lastUpdated": "2013-04-16T18:04:28", "name": "GIOVE-A", "orbitVisible": false, @@ -7087,7 +7087,7 @@ "32781": { "comms": [], - "groups": ["experimental", "navigation"], + "groups": ["navigation"], "lastUpdated": "2013-04-16T18:04:28", "name": "GIOVE-B", "orbitVisible": false, @@ -8471,7 +8471,7 @@ "37846": { "comms": [], - "groups": ["experimental", "navigation"], + "groups": ["navigation"], "lastUpdated": "2013-04-16T18:04:28", "name": "GALILEO-PFM (GSAT0101)", "orbitVisible": false, @@ -8482,7 +8482,7 @@ "37847": { "comms": [], - "groups": ["experimental", "navigation"], + "groups": ["navigation"], "lastUpdated": "2013-04-16T18:04:28", "name": "GALILEO-FM2 (GSAT0102)", "orbitVisible": false, @@ -8724,7 +8724,7 @@ "38857": { "comms": [], - "groups": ["experimental", "navigation"], + "groups": ["navigation"], "lastUpdated": "2013-04-16T18:17:22", "name": "GALILEO-FM3 (GSAT0103)", "orbitVisible": false, @@ -8735,7 +8735,7 @@ "38858": { "comms": [], - "groups": ["experimental", "navigation"], + "groups": ["navigation"], "lastUpdated": "2013-04-16T18:17:22", "name": "GALILEO-FM4 (GSAT0104)", "orbitVisible": false, diff -Nru stellarium-0.12.1/plugins/Satellites/src/CMakeLists.txt stellarium-0.12.4/plugins/Satellites/src/CMakeLists.txt --- stellarium-0.12.1/plugins/Satellites/src/CMakeLists.txt 2013-04-16 14:08:04.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -28,6 +28,10 @@ Satellite.cpp Satellites.hpp Satellites.cpp + SatellitesListModel.hpp + SatellitesListModel.cpp + SatellitesListFilterModel.hpp + SatellitesListFilterModel.cpp gui/SatellitesDialog.hpp gui/SatellitesDialog.cpp gui/SatellitesImportDialog.hpp diff -Nru stellarium-0.12.1/plugins/Satellites/src/Satellite.cpp stellarium-0.12.4/plugins/Satellites/src/Satellite.cpp --- stellarium-0.12.1/plugins/Satellites/src/Satellite.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/Satellite.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -53,7 +53,15 @@ Satellite::Satellite(const QString& identifier, const QVariantMap& map) - : initialized(false), visible(true), newlyAdded(false), orbitValid(false), hintColor(0.0,0.0,0.0), lastUpdated(), pSatWrapper(NULL) + : initialized(false), + displayed(true), + orbitDisplayed(false), + userDefined(false), + newlyAdded(false), + orbitValid(false), + hintColor(0.0,0.0,0.0), + lastUpdated(), + pSatWrapper(NULL) { // return initialized if the mandatory fields are not present if (identifier.isEmpty()) @@ -68,28 +76,29 @@ if (name.isEmpty()) return; - if (map.contains("description")) description = map.value("description").toString(); - if (map.contains("visible")) visible = map.value("visible").toBool(); - if (map.contains("orbitVisible")) orbitVisible = map.value("orbitVisible").toBool(); - - if (map.contains("hintColor")) - { - if (map.value("hintColor").toList().count() == 3) - { - hintColor[0] = map.value("hintColor").toList().at(0).toDouble(); - hintColor[1] = map.value("hintColor").toList().at(1).toDouble(); - hintColor[2] = map.value("hintColor").toList().at(2).toDouble(); - } + // If there are no such keys, these will be initialized with the default + // values given them above. + description = map.value("description", description).toString().trimmed(); + displayed = map.value("visible", displayed).toBool(); + orbitDisplayed = map.value("orbitVisible", orbitDisplayed).toBool(); + userDefined = map.value("userDefined", userDefined).toBool(); + + // Satellite hint color + QVariantList list = map.value("hintColor", QVariantList()).toList(); + if (list.count() == 3) + { + hintColor[0] = list.at(0).toDouble(); + hintColor[1] = list.at(1).toDouble(); + hintColor[2] = list.at(2).toDouble(); } - - if (map.contains("orbitColor")) - { - if (map.value("orbitColor").toList().count() == 3) - { - orbitColorNormal[0] = map.value("orbitColor").toList().at(0).toDouble(); - orbitColorNormal[1] = map.value("orbitColor").toList().at(1).toDouble(); - orbitColorNormal[2] = map.value("orbitColor").toList().at(2).toDouble(); - } + + // Satellite orbit section color + list = map.value("orbitColor", QVariantList()).toList(); + if (list.count() == 3) + { + orbitColorNormal[0] = list.at(0).toDouble(); + orbitColorNormal[1] = list.at(1).toDouble(); + orbitColorNormal[2] = list.at(2).toDouble(); } else { @@ -113,7 +122,7 @@ foreach(const QVariant &comm, map.value("comms").toList()) { QVariantMap commMap = comm.toMap(); - commLink c; + CommLink c; if (commMap.contains("frequency")) c.frequency = commMap.value("frequency").toDouble(); if (commMap.contains("modulation")) c.modulation = commMap.value("modulation").toString(); if (commMap.contains("description")) c.description = commMap.value("description").toString(); @@ -121,26 +130,23 @@ } } - if (map.contains("groups")) + QVariantList groupList = map.value("groups", QVariantList()).toList(); + if (!groupList.isEmpty()) { - foreach(const QVariant &group, map.value("groups").toList()) - { - if (!groupIDs.contains(group.toString())) - groupIDs << group.toString(); - } + foreach(const QVariant& group, groupList) + groups.insert(group.toString()); } + // TODO: Somewhere here - some kind of TLE validation. QString line1 = map.value("tle1").toString(); QString line2 = map.value("tle2").toString(); setNewTleElements(line1, line2); - internationalDesignator = extractInternationalDesignator(line1); - StelUtils::getJDFromDate(&jdLaunchYearJan1, extractLaunchYear(line1), 1, 1, 0, 0, 0); + // This also sets the international designator and launch year. + + QString dateString = map.value("lastUpdated").toString(); + if (!dateString.isEmpty()) + lastUpdated = QDateTime::fromString(dateString, Qt::ISODate); - if (map.contains("lastUpdated")) - { - lastUpdated = QDateTime::fromString(map.value("lastUpdated").toString(), - Qt::ISODate); - } orbitValid = true; initialized = true; @@ -170,18 +176,20 @@ map["tle1"] = tleElements.first.data(); map["tle2"] = tleElements.second.data(); - if (!description.isEmpty() && description!="") + if (!description.isEmpty()) map["description"] = description; - map["visible"] = visible; - map["orbitVisible"] = orbitVisible; + map["visible"] = displayed; + map["orbitVisible"] = orbitDisplayed; + if (userDefined) + map.insert("userDefined", userDefined); QVariantList col, orbitCol; col << roundToDp(hintColor[0],3) << roundToDp(hintColor[1], 3) << roundToDp(hintColor[2], 3); orbitCol << roundToDp(orbitColorNormal[0], 3) << roundToDp(orbitColorNormal[1], 3) << roundToDp(orbitColorNormal[2],3); map["hintColor"] = col; map["orbitColor"] = orbitCol; QVariantList commList; - foreach(const commLink &c, comms) + foreach(const CommLink &c, comms) { QVariantMap commMap; commMap["frequency"] = c.frequency; @@ -191,7 +199,7 @@ } map["comms"] = commList; QVariantList groupList; - foreach(const QString &g, groupIDs) + foreach(const QString &g, groups) { groupList << g; } @@ -220,7 +228,7 @@ { oss << "

    " << name << "

    "; if (!description.isEmpty()) - oss << description << "
    "; + oss << q_(description) << "
    "; } if (flags & CatalogNumber) @@ -308,7 +316,7 @@ if (flags&Extra2 && comms.size() > 0) { - foreach(const commLink &c, comms) + foreach(const CommLink &c, comms) { double dop = getDoppler(c.frequency); double ddop = dop; @@ -381,6 +389,8 @@ pSatWrapper = new gSatWrapper(id, tle1, tle2); orbitPoints.clear(); + + parseInternationalDesignator(tle1); } void Satellite::update(double) @@ -416,7 +426,7 @@ visibility = pSatWrapper->getVisibilityPredict(); // Compute orbit points to draw orbit line. - if (orbitVisible) computeOrbitPoints(); + if (orbitDisplayed) computeOrbitPoints(); } } @@ -433,54 +443,72 @@ orbitPoints.clear(); } -QString Satellite::extractInternationalDesignator(const QString& tle1) +SatFlags Satellite::getFlags() { - QString result; - if (tle1.isEmpty()) - return result; - - // The designator is encoded as the 3rd group on the first line - QString rawString = tle1.split(' ').at(2); - if (rawString.isEmpty()) - return result; - - //TODO: Use a regular expression? - bool ok; - int year = rawString.left(2).toInt(&ok); - if (!ok) - return result; - - // Y2K bug :) I wonder what NORAD will do in 2057. :) - if (year < 57) - year += 2000; + // There's also a faster, but less readable way: treating them as uint. + SatFlags flags; + if (displayed) + flags |= SatDisplayed; else - year += 1900; - - result = QString::number(year) + "-" + rawString.right(4); - return result; + flags |= SatNotDisplayed; + if (orbitDisplayed) + flags |= SatOrbit; + if (userDefined) + flags |= SatUser; + if (newlyAdded) + flags |= SatNew; + if (!orbitValid) + flags |= SatError; + return flags; } -int Satellite::extractLaunchYear(const QString& tle1) +void Satellite::setFlags(const SatFlags& flags) { - if (tle1.isEmpty()) - return 1957; + displayed = flags.testFlag(SatDisplayed); + orbitDisplayed = flags.testFlag(SatOrbit); + userDefined = flags.testFlag(SatUser); +} - // The designator is encoded as the 3rd group on the first line - QString rawString = tle1.split(' ').at(2); - if (rawString.isEmpty()) - return 1957; +void Satellite::parseInternationalDesignator(const QString& tle1) +{ + Q_ASSERT(!tle1.isEmpty()); + + // The designator is encoded as columns 10-17 on the first line. + QString rawString = tle1.mid(9, 8); //TODO: Use a regular expression? bool ok; int year = rawString.left(2).toInt(&ok); - if (!ok) - return 1957; + if (!rawString.isEmpty() && ok) + { + // Y2K bug :) I wonder what NORAD will do in 2057. :) + if (year < 57) + year += 2000; + else + year += 1900; + internationalDesignator = QString::number(year) + "-" + rawString.right(4); + } + else + year = 1957; + + StelUtils::getJDFromDate(&jdLaunchYearJan1, year, 1, 1, 0, 0, 0); + //qDebug() << rawString << internationalDesignator << year; +} - // Y2K bug :) I wonder what NORAD will do in 2057. :) - if (year < 57) - return year + 2000; +bool Satellite::operator <(const Satellite& another) const +{ + // If interface strings are used, you'll need QString::localeAwareCompare() + int comp = name.compare(another.name); + if (comp < 0) + return true; + if (comp > 0) + return false; + + // If the names are the same, compare IDs, i.e. NORAD numbers. + if (id < another.id) + return true; else - return year + 1900; + return false; } void Satellite::draw(const StelCore* core, StelRenderer* renderer, @@ -504,7 +532,7 @@ } renderer->drawTexturedRect(xy[0] - 11, xy[1] - 11, 22, 22); - if (orbitVisible && Satellite::orbitLinesFlag) {drawOrbit(renderer, projector);} + if (orbitDisplayed && Satellite::orbitLinesFlag) {drawOrbit(renderer, projector);} } } @@ -659,3 +687,18 @@ } } + +bool operator <(const SatelliteP& left, const SatelliteP& right) +{ + if (left.isNull()) + { + if (right.isNull()) + return false; + else + return true; + } + if (right.isNull()) + return false; // No sense to check the left one now + + return ((*left) < (*right)); +} diff -Nru stellarium-0.12.1/plugins/Satellites/src/Satellite.hpp stellarium-0.12.4/plugins/Satellites/src/Satellite.hpp --- stellarium-0.12.1/plugins/Satellites/src/Satellite.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/Satellite.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -20,12 +20,13 @@ #ifndef _SATELLITE_HPP_ #define _SATELLITE_HPP_ 1 -#include -#include -#include +#include #include #include -#include +#include +#include +#include +#include #include "StelObject.hpp" #include "StelSphereGeometry.hpp" @@ -36,21 +37,58 @@ class StelLocation; +//! Radio communication channel properties. typedef struct { - double frequency; - QString modulation; - QString description; -} commLink; + double frequency; //!< Channel frequency in MHz. + QString modulation; //!< Signal modulation mode. + QString description; //!< Channel description. +} CommLink; + +//! Description of the data roles used in SatellitesListModel. +enum SatelliteDataRole { + SatIdRole = Qt::UserRole, + SatDescriptionRole, + SatFlagsRole, + SatGroupsRole, + FirstLineRole, + SecondLineRole +}; + +//! Type for sets of satellite group IDs. +typedef QSet GroupSet; + +//! Flag type reflecting internal flags of Satellite. +enum SatFlag +{ + SatNoFlags = 0x0, + SatDisplayed = 0x1, + SatNotDisplayed = 0x2, + SatUser = 0x4, + SatOrbit = 0x8, + SatNew = 0x10, + SatError = 0x20 +}; +typedef QFlags SatFlags; +Q_DECLARE_OPERATORS_FOR_FLAGS(SatFlags) + +// Allows the type to be used by QVariant +Q_DECLARE_METATYPE(GroupSet) +Q_DECLARE_METATYPE(SatFlags) //! @class Satellite -//! A Satellite object represents one satellite in Earth orbit. -//! Details about the satellite are passed using a QVariant which contains -//! a map of data from the json file. +//! A representation of a satellite in Earth orbit. +//! Details about the satellite are passed with a JSON-representation structure +//! that contains a @ref satcat "satellite catalog" entry. +//! +//! Thanks to operator<() overloading, container classes (QList, QMap, etc) +//! with Satellite or SatelliteP objects can be sorted by satellite name/ID. class Satellite : public StelObject { friend class Satellites; friend class SatellitesDialog; + friend class SatellitesListModel; + public: //! \param identifier unique identifier (currently the Catalog Number) //! \param data a QMap which contains the details of the satellite @@ -70,7 +108,7 @@ //! Get an HTML string to describe the object //! @param core A pointer to the core - //! @flags a set of flags with information types to include. + //! @param flags a set of flags with information types to include. //! Supported types for Satellite objects: //! - Name: designation in large type with the description underneath //! - RaDecJ2000, RaDecOfDate, HourAngle, AltAzi @@ -109,11 +147,18 @@ void setNew() {newlyAdded = true;} bool isNew() const {return newlyAdded;} - static QString extractInternationalDesignator(const QString& tle1); - static int extractLaunchYear(const QString& tle1); - -public: - void enableDrawOrbit(bool b); + //! Get internal flags as a single value. + SatFlags getFlags(); + //! Sets the internal flags in one operation (only display flags)! + void setFlags(const SatFlags& flags); + + //! Parse TLE line to extract International Designator and launch year. + //! Sets #internationalDesignator and #jdLaunchYearJan1. + void parseInternationalDesignator(const QString& tle1); + + //! Needed for sorting lists (if this ever happens...). + //! Compares #name fields. If equal, #id fields, which can't be. + bool operator<(const Satellite& another) const; private: //draw orbits methods @@ -126,31 +171,45 @@ private: bool initialized; - bool visible; - bool orbitVisible; // draw orbit enabled/disabled + //! Flag indicating whether the satellite should be displayed. + //! Should not be confused with the pedicted visibility of the + //! actual satellite to the observer. + bool displayed; + //! Flag indicating whether an orbit section should be displayed. + bool orbitDisplayed; // draw orbit enabled/disabled + //! Flag indicating that the satellite is user-defined. + //! This means that its TLE set shouldn't be updated and the satellite + //! itself shouldn't be removed if auto-remove is enabled. + bool userDefined; + //! Flag indicating that the satellite was added during the current session. bool newlyAdded; bool orbitValid; //! Identifier of the satellite, must be unique within the list. - //! Currently, the Satellite Catalog Number is used. It is contained in both - //! numbered lines of TLE sets. + //! Currently, the Satellite Catalog Number/NORAD Number is used, + //! as it is unique and it is contained in both lines of TLE sets. QString id; //! Human-readable name of the satellite. //! Usually the string in the "Title line" of TLE sets. QString name; //! Longer description of the satellite. QString description; - //! International Designator / COSPAR designation / NSSDC ID + //! International Designator / COSPAR designation / NSSDC ID. QString internationalDesignator; - //! JD for Jan 1st of launch year, extracted from TLE (will be for 1957-1-1 if extraction fails). Used to hide objects before launch year. + //! Julian date of Jan 1st of the launch year. + //! Used to hide satellites before their launch date. + //! Extracted from TLE set with parseInternationalDesignator(). + //! It defaults to 1 Jan 1957 if extraction fails. double jdLaunchYearJan1; - //! Contains the J2000 position + //! Contains the J2000 position. Vec3d XYZ; QPair< QByteArray, QByteArray > tleElements; double height, range, rangeRate; - QList comms; + QList comms; Vec3f hintColor; - QStringList groupIDs; + //! Identifiers of the groups to which the satellite belongs. + //! See @ref groups. + GroupSet groups; QDateTime lastUpdated; static SphericalCap viewportHalfspace; @@ -160,6 +219,8 @@ static int orbitLineFadeSegments; static int orbitLineSegmentDuration; //measured in seconds static bool orbitLinesFlag; + //! Mask controlling which info display flags should be honored. + static StelObject::InfoStringGroupFlags flagsMask; void draw(const StelCore* core, class StelRenderer* renderer, StelProjectorP projector, class StelTextureNew* hintTexture); @@ -180,8 +241,10 @@ double lastEpochCompForOrbit; //measured in Julian Days double epochTime; //measured in Julian Days QList orbitPoints; //orbit points represented by ElAzPos vectors - }; +typedef QSharedPointer SatelliteP; +bool operator<(const SatelliteP& left, const SatelliteP& right); + #endif // _SATELLITE_HPP_ diff -Nru stellarium-0.12.1/plugins/Satellites/src/Satellites.cpp stellarium-0.12.4/plugins/Satellites/src/Satellites.cpp --- stellarium-0.12.1/plugins/Satellites/src/Satellites.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/Satellites.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -29,6 +29,7 @@ #include "StelIniParser.hpp" #include "Satellites.hpp" #include "Satellite.hpp" +#include "SatellitesListModel.hpp" #include "Planet.hpp" #include "SolarSystem.hpp" #include "StelJsonParser.hpp" @@ -48,6 +49,7 @@ #include #include #include +#include StelModule* SatellitesStelPluginInterface::getStelModule() const { @@ -62,7 +64,7 @@ StelPluginInfo info; info.id = "Satellites"; info.displayedName = N_("Satellites"); - info.authors = "Matthew Gates, Jose Luis Canales"; + info.authors = "Matthew Gates, Jose Luis Canales, Bogdan Marinov"; info.contact = "http://stellarium.org/"; info.description = N_("Prediction of artificial satellite positions in Earth orbit based on NORAD TLE data"); return info; @@ -71,7 +73,8 @@ Q_EXPORT_PLUGIN2(Satellites, SatellitesStelPluginInterface) Satellites::Satellites() - : hintTexture(NULL) + : satelliteListModel(0), + hintTexture(NULL) , texPointer(NULL) , pxmapGlow(NULL) , pxmapOnIcon(NULL) @@ -117,19 +120,24 @@ try { - StelFileMgr::makeSureDirExistsAndIsWritable(StelFileMgr::getUserDir()+"/modules/Satellites"); + // TODO: Compatibility with installation-dir modules? --BM + // It seems that the original code couldn't handle them either. + QString dirPath = StelFileMgr::getUserDir() + "/modules/Satellites"; + // TODO: Ideally, this should return a QDir object + StelFileMgr::makeSureDirExistsAndIsWritable(dirPath); + dataDir.setPath(dirPath); // If no settings in the main config file, create with defaults if (!conf->childGroups().contains("Satellites")) { - qDebug() << "Stellites::init no Satellites section exists in main config file - creating with defaults"; - restoreDefaultConfigIni(); + //qDebug() << "Stellites: created section in config file."; + restoreDefaultSettings(); } // populate settings from main config file. - readSettingsFromConfig(); + loadSettings(); - satellitesJsonPath = StelFileMgr::findFile("modules/Satellites", (StelFileMgr::Flags)(StelFileMgr::Directory|StelFileMgr::Writable)) + "/satellites.json"; + catalogPath = dataDir.absoluteFilePath("satellites.json"); // Load and find resources used in the plugin @@ -162,31 +170,32 @@ messageTimer->setSingleShot(true); // recurring check for update messageTimer->setInterval(9000); // 6 seconds should be enough time messageTimer->stop(); - connect(messageTimer, SIGNAL(timeout()), this, SLOT(messageTimeout())); + connect(messageTimer, SIGNAL(timeout()), this, SLOT(hideMessages())); // If the json file does not already exist, create it from the resource in the QT resource - if(QFileInfo(satellitesJsonPath).exists()) + if(QFileInfo(catalogPath).exists()) { - if (getJsonFileVersion() != SATELLITES_PLUGIN_VERSION) + if (readCatalogVersion() != SATELLITES_PLUGIN_VERSION) { displayMessage(q_("The old satellites.json file is no longer compatible - using default file"), "#bb0000"); - restoreDefaultJsonFile(); + restoreDefaultCatalog(); } } else { - qDebug() << "Satellites::init satellites.json does not exist - copying default file to " << satellitesJsonPath; - restoreDefaultJsonFile(); + qDebug() << "Satellites::init satellites.json does not exist - copying default file to " << QDir::toNativeSeparators(catalogPath); + restoreDefaultCatalog(); } - qDebug() << "Satellites::init using satellite.json file: " << satellitesJsonPath; + qDebug() << "Satellites: loading catalog file:" << QDir::toNativeSeparators(catalogPath); // create satellites according to content os satellites.json file - readJsonFile(); + loadCatalog(); // Set up download manager and the update schedule downloadMgr = new QNetworkAccessManager(this); - connect(downloadMgr, SIGNAL(finished(QNetworkReply*)), this, SLOT(updateDownloadComplete(QNetworkReply*))); + connect(downloadMgr, SIGNAL(finished(QNetworkReply*)), + this, SLOT(saveDownloadedUpdate(QNetworkReply*))); updateState = CompleteNoUpdates; updateTimer = new QTimer(this); updateTimer->setSingleShot(false); // recurring check for update @@ -198,7 +207,10 @@ GETSTELMODULE(StelObjectMgr)->registerStelObjectMgr(this); // Handle changes to the observer location: - connect(StelApp::getInstance().getCore(), SIGNAL(locationChanged(StelLocation)), this, SLOT(observerLocationChanged(StelLocation))); + connect(StelApp::getInstance().getCore(), + SIGNAL(locationChanged(StelLocation)), + this, + SLOT(updateObserverLocation(StelLocation))); //Load the module's custom style sheets QFile styleSheetFile; @@ -218,16 +230,16 @@ connect(&StelApp::getInstance(), SIGNAL(colorSchemeChanged(const QString&)), this, SLOT(setStelStyle(const QString&))); } -bool Satellites::backupJsonFile(bool deleteOriginal) +bool Satellites::backupCatalog(bool deleteOriginal) { - QFile old(satellitesJsonPath); + QFile old(catalogPath); if (!old.exists()) { qWarning() << "Satellites::backupJsonFile no file to backup"; return false; } - QString backupPath = satellitesJsonPath + ".old"; + QString backupPath = catalogPath + ".old"; if (QFileInfo(backupPath).exists()) QFile(backupPath).remove(); @@ -237,14 +249,15 @@ { if (!old.remove()) { - qWarning() << "Satellites::backupJsonFile WARNING - could not remove old satellites.json file"; + qWarning() << "Satellites: WARNING: unable to remove old catalog file!"; return false; } } } else { - qWarning() << "Satellites::backupJsonFile WARNING - failed to copy satellites.json to satellites.json.old"; + qWarning() << "Satellites: WARNING: failed to back up catalog file as" + << QDir::toNativeSeparators(backupPath); return false; } @@ -298,7 +311,7 @@ foreach(const SatelliteP& sat, satellites) { - if (sat->initialized && sat->visible) + if (sat->initialized && sat->displayed) { equPos = sat->XYZ; equPos.normalize(); @@ -324,7 +337,7 @@ foreach(const SatelliteP& sat, satellites) { - if (sat->initialized && sat->visible) + if (sat->initialized && sat->displayed) { if (sat->getNameI18n().toUpper() == nameI18n) return qSharedPointerCast(sat); @@ -347,7 +360,7 @@ foreach(const SatelliteP& sat, satellites) { - if (sat->initialized && sat->visible) + if (sat->initialized && sat->displayed) { if (sat->getEnglishName().toUpper() == englishName) return qSharedPointerCast(sat); @@ -374,7 +387,7 @@ foreach(const SatelliteP& sat, satellites) { - if (sat->initialized && sat->visible) + if (sat->initialized && sat->displayed) { if (sat->getCatalogNumberString() == numberString) return qSharedPointerCast(sat); @@ -385,7 +398,7 @@ return StelObjectP(); } -QStringList Satellites::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem) const +QStringList Satellites::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (!hintFader || StelApp::getInstance().getCore()->getCurrentLocation().planetName != earth->getEnglishName()) @@ -404,11 +417,28 @@ if (ok) numberPrefix = numberString; } + bool find; foreach(const SatelliteP& sat, satellites) { - if (sat->initialized && sat->visible) + if (sat->initialized && sat->displayed) { - if (sat->getNameI18n().toUpper().left(objw.length()) == objw) + find = false; + if (useStartOfWords) + { + if (sat->getNameI18n().toUpper().left(objw.length()) == objw) + { + find = true; + } + } + else + { + if (sat->getNameI18n().toUpper().contains(objw, Qt::CaseInsensitive)) + { + find = true; + } + } + + if (find) { result << sat->getNameI18n().toUpper(); } @@ -425,7 +455,7 @@ return result; } -QStringList Satellites::listMatchingObjects(const QString& objPrefix, int maxNbItem) const +QStringList Satellites::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (!hintFader || StelApp::getInstance().getCore()->getCurrentLocation().planetName != earth->getEnglishName()) @@ -444,17 +474,33 @@ if (ok) numberPrefix = numberString; } + bool find; foreach(const SatelliteP& sat, satellites) { - if (sat->initialized && sat->visible) + if (sat->initialized && sat->displayed) { - if (sat->getEnglishName().toUpper().left(objw.length()) == objw) + find = false; + if (useStartOfWords) + { + if (sat->getEnglishName().toUpper().left(objw.length()) == objw) + { + find = true; + } + } + else + { + if (sat->getEnglishName().toUpper().contains(objw, Qt::CaseInsensitive)) + { + find = true; + } + } + if (find) { result << sat->getEnglishName().toUpper(); } - else if (!numberPrefix.isEmpty() && sat->getCatalogNumberString().left(numberPrefix.length()) == numberPrefix) + else if (find==false && !numberPrefix.isEmpty() && sat->getCatalogNumberString().left(numberPrefix.length()) == numberPrefix) { - result << QString("NORAD %1").arg(sat->getCatalogNumberString()); + result << QString("NORAD %1").arg(sat->getCatalogNumberString()); } } } @@ -498,13 +544,13 @@ void Satellites::restoreDefaults(void) { - restoreDefaultConfigIni(); - restoreDefaultJsonFile(); - readJsonFile(); - readSettingsFromConfig(); + restoreDefaultSettings(); + restoreDefaultCatalog(); + loadCatalog(); + loadSettings(); } -void Satellites::restoreDefaultConfigIni(void) +void Satellites::restoreDefaultSettings() { QSettings* conf = StelApp::getInstance().getSettings(); conf->beginGroup("Satellites"); @@ -515,43 +561,49 @@ conf->setValue("show_satellite_hints", false); conf->setValue("show_satellite_labels", true); conf->setValue("updates_enabled", true); + conf->setValue("auto_add_enabled", true); + conf->setValue("auto_remove_enabled", true); conf->setValue("hint_color", "0.0,0.4,0.6"); conf->setValue("hint_font_size", 10); - conf->setValue("tle_url0", "http://celestrak.com/NORAD/elements/noaa.txt"); - conf->setValue("tle_url1", "http://celestrak.com/NORAD/elements/goes.txt"); - conf->setValue("tle_url2", "http://celestrak.com/NORAD/elements/gps-ops.txt"); - conf->setValue("tle_url3", "http://celestrak.com/NORAD/elements/galileo.txt"); - conf->setValue("tle_url4", "http://celestrak.com/NORAD/elements/visual.txt"); - conf->setValue("tle_url5", "http://celestrak.com/NORAD/elements/amateur.txt"); - conf->setValue("tle_url6", "http://celestrak.com/NORAD/elements/iridium.txt"); - conf->setValue("tle_url7", "http://celestrak.com/NORAD/elements/geo.txt"); - conf->setValue("tle_url8", "http://celestrak.com/NORAD/elements/tle-new.txt"); - conf->setValue("tle_url9", "http://celestrak.com/NORAD/elements/science.txt"); - //TODO: Better? See http://doc.qt.nokia.com/4.7/qsettings.html#beginWriteArray --BM conf->setValue("update_frequency_hours", 72); conf->setValue("orbit_line_flag", true); conf->setValue("orbit_line_segments", 90); conf->setValue("orbit_fade_segments", 5); conf->setValue("orbit_segment_duration", 20); - conf->endGroup(); + + conf->endGroup(); // saveTleSources() opens it for itself + + // TLE update sources + QStringList urls; + urls << "1,http://celestrak.com/NORAD/elements/visual.txt" // Auto-add ON! + << "http://celestrak.com/NORAD/elements/tle-new.txt" + << "http://celestrak.com/NORAD/elements/science.txt" + << "http://celestrak.com/NORAD/elements/noaa.txt" + << "http://celestrak.com/NORAD/elements/goes.txt" + << "http://celestrak.com/NORAD/elements/amateur.txt" + << "http://celestrak.com/NORAD/elements/gps-ops.txt" + << "http://celestrak.com/NORAD/elements/galileo.txt" + << "http://celestrak.com/NORAD/elements/iridium.txt" + << "http://celestrak.com/NORAD/elements/geo.txt"; + saveTleSources(urls); } -void Satellites::restoreDefaultJsonFile(void) +void Satellites::restoreDefaultCatalog() { - if (QFileInfo(satellitesJsonPath).exists()) - backupJsonFile(true); + if (QFileInfo(catalogPath).exists()) + backupCatalog(true); QFile src(":/satellites/satellites.json"); - if (!src.copy(satellitesJsonPath)) + if (!src.copy(catalogPath)) { - qWarning() << "Satellites::restoreDefaultJsonFile cannot copy json resource to " + satellitesJsonPath; + qWarning() << "Satellites::restoreDefaultJsonFile cannot copy json resource to " + QDir::toNativeSeparators(catalogPath); } else { - qDebug() << "Satellites::init copied default satellites.json to " << satellitesJsonPath; + qDebug() << "Satellites::init copied default satellites.json to " << QDir::toNativeSeparators(catalogPath); // The resource is read only, and the new file inherits this... make sure the new file // is writable by the Stellarium process so that updates can be done. - QFile dest(satellitesJsonPath); + QFile dest(catalogPath); dest.setPermissions(dest.permissions() | QFile::WriteOwner); // Make sure that in the case where an online update has previously been done, but @@ -563,24 +615,59 @@ } } -void Satellites::readSettingsFromConfig(void) +void Satellites::loadSettings() { QSettings* conf = StelApp::getInstance().getSettings(); conf->beginGroup("Satellites"); - // populate updateUrls from tle_url? keys - QRegExp keyRE("^tle_url\\d+$"); + // Load update sources list... updateUrls.clear(); + + // Backward compatibility: try to detect and read an old-stlye array. + // TODO: Assume that the user hasn't modified their conf in a stupid way? +// if (conf->contains("tle_url0")) // This can skip some operations... + QRegExp keyRE("^tle_url\\d+$"); + QStringList urls; foreach(const QString& key, conf->childKeys()) { if (keyRE.exactMatch(key)) { - QString s = conf->value(key, "").toString(); - if (!s.isEmpty() && s!="") - updateUrls << s; + QString url = conf->value(key).toString(); + conf->remove(key); // Delete old-style keys + if (url.isEmpty()) + continue; + // NOTE: This URL is also hardcoded in restoreDefaultSettings(). + if (url == "http://celestrak.com/NORAD/elements/visual.txt") + url.prepend("1,"); // Same as in the new default configuration + urls << url; + } + } + // If any have been read, save them in the new format. + if (!urls.isEmpty()) + { + conf->endGroup(); + setTleSources(urls); + conf->beginGroup("Satellites"); + } + else + { + int size = conf->beginReadArray("tle_sources"); + for (int i = 0; i < size; i++) + { + conf->setArrayIndex(i); + QString url = conf->value("url").toString(); + if (!url.isEmpty()) + { + if (conf->value("add_new").toBool()) + url.prepend("1,"); + updateUrls.append(url); + } } + conf->endArray(); } - + + // NOTE: Providing default values AND using restoreDefaultSettings() to create the section seems redundant. --BM + // updater related settings... updateFrequencyHours = conf->value("update_frequency_hours", 72).toInt(); // last update default is the first Towell Day. <3 DA @@ -588,6 +675,8 @@ setFlagHints(conf->value("show_satellite_hints", false).toBool()); Satellite::showLabels = conf->value("show_satellite_labels", true).toBool(); updatesEnabled = conf->value("updates_enabled", true).toBool(); + autoAddEnabled = conf->value("auto_add_enabled", true).toBool(); + autoRemoveEnabled = conf->value("auto_remove_enabled", true).toBool(); // Get a font for labels labelFont.setPixelSize(conf->value("hint_font_size", 10).toInt()); @@ -601,33 +690,18 @@ conf->endGroup(); } -void Satellites::saveSettingsToConfig(void) +void Satellites::saveSettings() { QSettings* conf = StelApp::getInstance().getSettings(); conf->beginGroup("Satellites"); - // update tle urls... first clear the existing ones in the file - QRegExp keyRE("^tle_url\\d+$"); - foreach(const QString& key, conf->childKeys()) - { - if (keyRE.exactMatch(key)) - conf->remove(key); - } - - - // populate updateUrls from tle_url? keys - int n=0; - foreach(const QString& url, updateUrls) - { - QString key = QString("tle_url%1").arg(n++); - conf->setValue(key, url); - } - // updater related settings... conf->setValue("update_frequency_hours", updateFrequencyHours); conf->setValue("show_satellite_hints", getFlagHints()); conf->setValue("show_satellite_labels", Satellite::showLabels); conf->setValue("updates_enabled", updatesEnabled ); + conf->setValue("auto_add_enabled", autoAddEnabled); + conf->setValue("auto_remove_enabled", autoRemoveEnabled); // Get a font for labels conf->setValue("hint_font_size", labelFont.pixelSize()); @@ -639,20 +713,23 @@ conf->setValue("orbit_segment_duration", Satellite::orbitLineSegmentDuration); conf->endGroup(); + + // Update sources... + saveTleSources(updateUrls); } -void Satellites::readJsonFile(void) +void Satellites::loadCatalog() { - setTleMap(loadTleMap()); + setDataMap(loadDataMap()); } -const QString Satellites::getJsonFileVersion(void) +const QString Satellites::readCatalogVersion() { QString jsonVersion("unknown"); - QFile satelliteJsonFile(satellitesJsonPath); + QFile satelliteJsonFile(catalogPath); if (!satelliteJsonFile.open(QIODevice::ReadOnly)) { - qWarning() << "Satellites::init cannot open " << satellitesJsonPath; + qWarning() << "Satellites::init cannot open " << QDir::toNativeSeparators(catalogPath); return jsonVersion; } @@ -669,14 +746,14 @@ } satelliteJsonFile.close(); - qDebug() << "Satellites::getJsonFileVersion() version from file:" << jsonVersion; + //qDebug() << "Satellites: catalog version from file:" << jsonVersion; return jsonVersion; } -bool Satellites::saveTleMap(const QVariantMap& map, QString path) +bool Satellites::saveDataMap(const QVariantMap& map, QString path) { if (path.isEmpty()) - path = satellitesJsonPath; + path = catalogPath; QFile jsonFile(path); StelJsonParser parser; @@ -686,27 +763,27 @@ if (!jsonFile.open(QIODevice::WriteOnly)) { - qWarning() << "Satellites::saveTleMap() cannot open for writing:" << path; + qWarning() << "Satellites::saveTleMap() cannot open for writing:" << QDir::toNativeSeparators(path); return false; } else { - qDebug() << "Satellites::saveTleMap() writing to:" << path; + qDebug() << "Satellites::saveTleMap() writing to:" << QDir::toNativeSeparators(path); parser.write(map, &jsonFile); jsonFile.close(); return true; } } -QVariantMap Satellites::loadTleMap(QString path) +QVariantMap Satellites::loadDataMap(QString path) { if (path.isEmpty()) - path = satellitesJsonPath; + path = catalogPath; QVariantMap map; QFile jsonFile(path); if (!jsonFile.open(QIODevice::ReadOnly)) - qWarning() << "Satellites::loadTleMap cannot open " << path; + qWarning() << "Satellites::loadTleMap cannot open " << QDir::toNativeSeparators(path); else map = StelJsonParser::parse(&jsonFile).toMap(); @@ -714,7 +791,7 @@ return map; } -void Satellites::setTleMap(const QVariantMap& map) +void Satellites::setDataMap(const QVariantMap& map) { int numReadOk = 0; QVariantList defaultHintColorMap; @@ -726,7 +803,11 @@ defaultHintColor.set(defaultHintColorMap.at(0).toDouble(), defaultHintColorMap.at(1).toDouble(), defaultHintColorMap.at(2).toDouble()); } + if (satelliteListModel) + satelliteListModel->beginSatellitesChange(); + satellites.clear(); + groups.clear(); QVariantMap satMap = map.value("satellites").toMap(); foreach(const QString& satId, satMap.keys()) { @@ -742,12 +823,17 @@ if (sat->initialized) { satellites.append(sat); + groups.unite(sat->groups); numReadOk++; } } + qSort(satellites); + + if (satelliteListModel) + satelliteListModel->endSatellitesChange(); } -QVariantMap Satellites::getTleMap(void) +QVariantMap Satellites::createDataMap(void) { QVariantMap map; QVariantList defHintCol; @@ -775,23 +861,33 @@ return map; } -QStringList Satellites::getGroups(void) const +void Satellites::markLastUpdate() +{ + lastUpdate = QDateTime::currentDateTime(); + QSettings* conf = StelApp::getInstance().getSettings(); + conf->setValue("Satellites/last_update", + lastUpdate.toString(Qt::ISODate)); +} + +QSet Satellites::getGroups() const { - QStringList groups; - foreach (const SatelliteP& sat, satellites) - { - if (sat->initialized) - { - foreach(const QString& group, sat->groupIDs) - { - if (!groups.contains(group)) - groups << group; - } - } - } return groups; } +QStringList Satellites::getGroupIdList() const +{ + QStringList groupList(groups.values()); + groupList.sort(); + return groupList; +} + +void Satellites::addGroup(const QString& groupId) +{ + if (groupId.isEmpty()) + return; + groups.insert(groupId); +} + QHash Satellites::getSatellites(const QString& group, Status vis) { QHash result; @@ -800,11 +896,11 @@ { if (sat->initialized) { - if ((group.isEmpty() || sat->groupIDs.contains(group)) && ! result.contains(sat->id)) + if ((group.isEmpty() || sat->groups.contains(group)) && ! result.contains(sat->id)) { if (vis==Both || - (vis==Visible && sat->visible) || - (vis==NotVisible && !sat->visible) || + (vis==Visible && sat->displayed) || + (vis==NotVisible && !sat->displayed) || (vis==OrbitError && !sat->orbitValid) || (vis==NewlyAdded && sat->isNew())) result.insert(sat->id, sat->name); @@ -814,7 +910,14 @@ return result; } -SatelliteP Satellites::getByID(const QString& id) +SatellitesListModel* Satellites::getSatellitesListModel() +{ + if (!satelliteListModel) + satelliteListModel = new SatellitesListModel(&satellites, this); + return satelliteListModel; +} + +SatelliteP Satellites::getById(const QString& id) { foreach(const SatelliteP& sat, satellites) { @@ -824,7 +927,7 @@ return SatelliteP(); } -QStringList Satellites::getAllIDs() +QStringList Satellites::listAllIds() { QStringList result; foreach(const SatelliteP& sat, satellites) @@ -835,41 +938,61 @@ return result; } +bool Satellites::add(const TleData& tleData) +{ + //TODO: Duplicates check!!! --BM + + // More validation? + if (tleData.id.isEmpty() || + tleData.name.isEmpty() || + tleData.first.isEmpty() || + tleData.second.isEmpty()) + return false; + + QVariantList hintColor; + hintColor << defaultHintColor[0] + << defaultHintColor[1] + << defaultHintColor[2]; + + QVariantMap satProperties; + satProperties.insert("name", tleData.name); + satProperties.insert("tle1", tleData.first); + satProperties.insert("tle2", tleData.second); + satProperties.insert("hintColor", hintColor); + //TODO: Decide if newly added satellites are visible by default --BM + satProperties.insert("visible", true); + satProperties.insert("orbitVisible", false); + + SatelliteP sat(new Satellite(tleData.id, satProperties)); + if (sat->initialized) + { + qDebug() << "Satellite added:" << tleData.id << tleData.name; + satellites.append(sat); + sat->setNew(); + return true; + } + return false; +} + void Satellites::add(const TleDataList& newSatellites) { - int numAdded = 0; - QVariantList defaultHintColorMap; - defaultHintColorMap << defaultHintColor[0] << defaultHintColor[1] - << defaultHintColor[2]; + if (satelliteListModel) + satelliteListModel->beginSatellitesChange(); + int numAdded = 0; foreach (const TleData& tleSet, newSatellites) { - //TODO: Duplicates check? --BM - - if (tleSet.id.isEmpty() || - tleSet.name.isEmpty() || - tleSet.first.isEmpty() || - tleSet.second.isEmpty()) - continue; - - QVariantMap satProperties; - satProperties.insert("name", tleSet.name); - satProperties.insert("tle1", tleSet.first); - satProperties.insert("tle2", tleSet.second); - satProperties.insert("hintColor", defaultHintColorMap); - //TODO: Decide if newly added satellites are visible by default --BM - satProperties.insert("visible", true); - satProperties.insert("orbitVisible", false); - - SatelliteP sat(new Satellite(tleSet.id, satProperties)); - if (sat->initialized) + if (add(tleSet)) { - qDebug() << "Satellites: added" << tleSet.id << tleSet.name; - satellites.append(sat); - sat->setNew(); numAdded++; } } + if (numAdded > 0) + qSort(satellites); + + if (satelliteListModel) + satelliteListModel->endSatellitesChange(); + qDebug() << "Satellites: " << newSatellites.count() << "satellites proposed for addition, " << numAdded << " added, " @@ -878,6 +1001,9 @@ void Satellites::remove(const QStringList& idList) { + if (satelliteListModel) + satelliteListModel->beginSatellitesChange(); + StelObjectMgr* objMgr = GETSTELMODULE(StelObjectMgr); int numRemoved = 0; for (int i = 0; i < satellites.size(); i++) @@ -895,6 +1021,10 @@ numRemoved++; } } + // As the satellite list is kept sorted, no need for re-sorting. + + if (satelliteListModel) + satelliteListModel->endSatellitesChange(); qDebug() << "Satellites: " << idList.count() << "satellites proposed for removal, " @@ -911,69 +1041,143 @@ void Satellites::setTleSources(QStringList tleSources) { updateUrls = tleSources; + saveTleSources(updateUrls); +} + +void Satellites::saveTleSources(const QStringList& urls) +{ QSettings* conf = StelApp::getInstance().getSettings(); conf->beginGroup("Satellites"); // clear old source list - QRegExp keyRE("^tle_url\\d+$"); - foreach(const QString& key, conf->childKeys()) - { - if (keyRE.exactMatch(key)) - conf->remove(key); - } + conf->remove("tle_sources"); - // set the new sources list - int i=0; - foreach (const QString& url, updateUrls) + int index = 0; + conf->beginWriteArray("tle_sources"); + foreach (QString url, urls) { - conf->setValue(QString("tle_url%1").arg(i++), url); + conf->setArrayIndex(index++); + if (url.startsWith("1,")) + { + conf->setValue("add_new", true); + url.remove(0, 2); + } + else if (url.startsWith("0,")) + url.remove(0, 2); + conf->setValue("url", url); } + conf->endArray(); conf->endGroup(); } -bool Satellites::getFlagLabels(void) +bool Satellites::getFlagLabels() { return Satellite::showLabels; } +void Satellites::enableInternetUpdates(bool enabled) +{ + if (enabled != updatesEnabled) + { + updatesEnabled = enabled; + emit settingsChanged(); + } +} + +void Satellites::enableAutoAdd(bool enabled) +{ + if (autoAddEnabled != enabled) + { + autoAddEnabled = enabled; + emit settingsChanged(); + } +} + +void Satellites::enableAutoRemove(bool enabled) +{ + if (autoRemoveEnabled != enabled) + { + autoRemoveEnabled = enabled; + emit settingsChanged(); + } +} + +void Satellites::setFlagHints(bool b) +{ + if (hintFader != b) + { + hintFader = b; + emit settingsChanged(); + } +} + void Satellites::setFlagLabels(bool b) { - Satellite::showLabels = b; + if (Satellite::showLabels != b) + { + Satellite::showLabels = b; + emit settingsChanged(); + } +} + +void Satellites::setLabelFontSize(int size) +{ + if (labelFont.pixelSize() != size) + { + labelFont.setPixelSize(size); + emit settingsChanged(); + } +} + +void Satellites::setUpdateFrequencyHours(int hours) +{ + if (updateFrequencyHours != hours) + { + updateFrequencyHours = hours; + emit settingsChanged(); + } } void Satellites::checkForUpdate(void) { - if (updatesEnabled && lastUpdate.addSecs(updateFrequencyHours * 3600) <= QDateTime::currentDateTime()) - updateTLEs(); + if (updatesEnabled && updateState != Updating + && lastUpdate.addSecs(updateFrequencyHours * 3600) <= QDateTime::currentDateTime()) + updateFromOnlineSources(); } -void Satellites::updateTLEs(void) +void Satellites::updateFromOnlineSources() { if (updateState==Satellites::Updating) { - qWarning() << "Satellites: already updating... will not start again current update is complete."; + qWarning() << "Satellites: Internet update already in progress!"; return; } else { - qDebug() << "Satellites: starting update..."; + qDebug() << "Satellites: starting Internet update..."; } - lastUpdate = QDateTime::currentDateTime(); - QSettings* conf = StelApp::getInstance().getSettings(); - conf->setValue("Satellites/last_update", lastUpdate.toString(Qt::ISODate)); + // Setting lastUpdate should be done only when the update is finished. -BM - if (updateUrls.size() == 0) + // TODO: Perhaps tie the emptyness of updateUrls to updatesEnabled... --BM + if (updateUrls.isEmpty()) { - qWarning() << "Satellites::updateTLEs no update URLs are defined... nothing to do."; - emit(tleUpdateComplete(0,satellites.count(),satellites.count())); + qWarning() << "Satellites: update failed." + << "No update sources are defined!"; + + // Prevent from re-entering this method on the next check: + markLastUpdate(); + // TODO: Do something saner, such as disabling internet updates, + // or stopping the timer. --BM + emit updateStateChanged(OtherError); + emit tleUpdateComplete(0, satellites.count(), 0, 0); return; } updateState = Satellites::Updating; emit(updateStateChanged(updateState)); - updateFiles.clear(); + updateSources.clear(); numberDownloadsComplete = 0; if (progressBar==NULL) @@ -984,53 +1188,111 @@ progressBar->setVisible(true); progressBar->setFormat("TLE download %v/%m"); - // set off the downloads - for(int i=0; iget(QNetworkRequest(QUrl(updateUrls.at(i)))); + TleSource source; + source.file = 0; + source.addNew = false; + if (url.startsWith("1,")) + { + // Also prevents inconsistent behavior if the user toggles the flag + // while an update is in progress. + source.addNew = autoAddEnabled; + url.remove(0, 2); + } + else if (url.startsWith("0,")) + url.remove(0, 2); + + source.url.setUrl(url); + if (source.url.isValid()) + { + updateSources.append(source); + downloadMgr->get(QNetworkRequest(source.url)); + } } } -void Satellites::updateDownloadComplete(QNetworkReply* reply) +void Satellites::saveDownloadedUpdate(QNetworkReply* reply) { // check the download worked, and save the data to file if this is the case. if (reply->error() != QNetworkReply::NoError) { - qWarning() << "Satellites::updateDownloadComplete FAILED to download" << reply->url() << " Error: " << reply->errorString(); + qWarning() << "Satellites: FAILED to download" + << reply->url().toString(QUrl::RemoveUserInfo) + << "Error:" << reply->errorString(); } else { // download completed successfully. - try + QString name = QString("tle%1.txt").arg(numberDownloadsComplete); + QString path = dataDir.absoluteFilePath(name); + // QFile as a child object to the plugin to ease memory management + QFile* tmpFile = new QFile(path, this); + if (tmpFile->exists()) + tmpFile->remove(); + + if (tmpFile->open(QIODevice::WriteOnly | QIODevice::Text)) { - QString partialName = QString("tle%1.txt").arg(numberDownloadsComplete); - QString tleTmpFilePath = StelFileMgr::findFile("modules/Satellites", StelFileMgr::Flags(StelFileMgr::Writable|StelFileMgr::Directory)) + "/" + partialName; - QFile tmpFile(tleTmpFilePath); - if (tmpFile.exists()) - tmpFile.remove(); - - tmpFile.open(QIODevice::WriteOnly | QIODevice::Text); - tmpFile.write(reply->readAll()); - tmpFile.close(); - updateFiles << tleTmpFilePath; + tmpFile->write(reply->readAll()); + tmpFile->close(); + + // The reply URL can be different form the requested one... + QUrl url = reply->request().url(); + for (int i = 0; i < updateSources.count(); i++) + { + if (updateSources[i].url == url) + { + updateSources[i].file = tmpFile; + tmpFile = 0; + break; + } + } + if (tmpFile) // Something strange just happened... + delete tmpFile; // ...so we have to clean. } - catch (std::runtime_error &e) + else { - qWarning() << "Satellites::updateDownloadComplete: cannot write TLE data to file:" << e.what(); + qWarning() << "Satellites: cannot save update file:" + << tmpFile->error() + << tmpFile->errorString(); } } numberDownloadsComplete++; if (progressBar) progressBar->setValue(numberDownloadsComplete); - // all downloads are complete... do the update. - if (numberDownloadsComplete >= updateUrls.size()) + // Check if all files have been downloaded. + // TODO: It's better to keep track of the network requests themselves. --BM + if (numberDownloadsComplete < updateSources.size()) + return; + + if (progressBar) { - updateFromFiles(updateFiles, true); + delete progressBar; + progressBar = 0; } + + // All files have been downloaded, finish the update + TleDataHash newData; + for (int i = 0; i < updateSources.count(); i++) + { + if (!updateSources[i].file) + continue; + if (updateSources[i].file->open(QFile::ReadOnly|QFile::Text)) + { + parseTleFile(*updateSources[i].file, + newData, + updateSources[i].addNew); + updateSources[i].file->close(); + delete updateSources[i].file; + updateSources[i].file = 0; + } + } + updateSources.clear(); + updateSatellites(newData); } -void Satellites::observerLocationChanged(StelLocation) +void Satellites::updateObserverLocation(StelLocation) { recalculateOrbitLines(); } @@ -1040,7 +1302,7 @@ Satellite::orbitLinesFlag = b; } -bool Satellites::getOrbitLinesFlag(void) +bool Satellites::getOrbitLinesFlag() { return Satellite::orbitLinesFlag; } @@ -1049,7 +1311,7 @@ { foreach(const SatelliteP& sat, satellites) { - if (sat->initialized && sat->visible && sat->orbitVisible) + if (sat->initialized && sat->displayed && sat->orbitDisplayed) sat->recalculateOrbitLines(); } } @@ -1060,7 +1322,7 @@ messageTimer->start(); } -void Satellites::messageTimeout(void) +void Satellites::hideMessages() { foreach(const int& id, messageIDs) { @@ -1068,23 +1330,15 @@ } } -void Satellites::saveTleData(QString path) +void Satellites::saveCatalog(QString path) { - saveTleMap(getTleMap(), path); + saveDataMap(createDataMap(), path); } void Satellites::updateFromFiles(QStringList paths, bool deleteFiles) { // Container for the new data. TleDataHash newTleSets; - - if (progressBar) - { - progressBar->setValue(0); - progressBar->setMaximum(paths.size() + 1); - progressBar->setFormat("TLE updating %v/%m"); - } - foreach(const QString& tleFilePath, paths) { QFile tleFile(tleFilePath); @@ -1095,27 +1349,57 @@ if (deleteFiles) tleFile.remove(); - - if (progressBar) - progressBar->setValue(progressBar->value() + 1); } } + updateSatellites(newTleSets); +} + +void Satellites::updateSatellites(TleDataHash& newTleSets) +{ + // Save the update time. + // One of the reasons it's here is that lastUpdate is used below. + markLastUpdate(); + + if (newTleSets.isEmpty()) + { + qWarning() << "Satellites: update files contain no TLE sets!"; + updateState = OtherError; + emit(updateStateChanged(updateState)); + return; + } + + if (satelliteListModel) + satelliteListModel->beginSatellitesChange(); + // Right, we should now have a map of all the elements we downloaded. For each satellite // which this module is managing, see if it exists with an updated element, and update it if so... - int numUpdated = 0; - int totalSats = 0; - int numMissing = 0; + int sourceCount = newTleSets.count(); // newTleSets is modified below + int updatedCount = 0; + int totalCount = 0; + int addedCount = 0; + int missingCount = 0; // Also the number of removed sats, if any. + QStringList toBeRemoved; foreach(const SatelliteP& sat, satellites) { - totalSats++; + totalCount++; + + // Satellites marked as "user-defined" are protected from updates and + // removal. + if (sat->userDefined) + { + qDebug() << "Satellite ignored (user-protected):" + << sat->id << sat->name; + continue; + } + QString id = sat->id; - if (newTleSets.contains(id)) + TleData newTle = newTleSets.take(id); + if (!newTle.name.isEmpty()) { - TleData newTle = newTleSets.value(id); - if (sat->tleElements.first != newTle.first || - sat->tleElements.second != newTle.second || - sat->name != newTle.name) + if (sat->tleElements.first != newTle.first || + sat->tleElements.second != newTle.second || + sat->name != newTle.name) { // We have updated TLE elements for this satellite sat->setNewTleElements(newTle.first, newTle.second); @@ -1125,41 +1409,66 @@ // we reset this to "now" when we started the update. sat->lastUpdated = lastUpdate; - numUpdated++; + updatedCount++; } } else { - qWarning() << "Satellites: could not update orbital elements for" - << sat->name - << sat->id - << ": no entry found in the source TLE lists."; - numMissing++; + if (autoRemoveEnabled) + toBeRemoved.append(sat->id); + else + qWarning() << "Satellites:" << sat->id << sat->name + << "is missing in the update lists."; + missingCount++; } } - - if (numUpdated>0) + + // Only those not in the loaded collection have remained + // (autoAddEnabled is not checked, because it's already in the flags) + QHash::const_iterator i; + for (i = newTleSets.begin(); i != newTleSets.end(); ++i) { - saveTleMap(getTleMap()); + if (i.value().addThis) + { + // Add the satellite... + if (add(i.value())) + addedCount++; + } } - - delete progressBar; - progressBar = NULL; - - qDebug() << "Satellites: updated" << numUpdated << "/" << totalSats - << "satellites. Update URLs contained" << newTleSets.size() << "objects. " - << "There were" << numMissing << "satellies missing from the update URLs"; - - if (numUpdated==0) - updateState = CompleteNoUpdates; - else + if (addedCount) + qSort(satellites); + + if (autoRemoveEnabled && !toBeRemoved.isEmpty()) + { + qWarning() << "Satellites: purging objects that were not updated..."; + remove(toBeRemoved); + } + + if (updatedCount > 0 || + (autoRemoveEnabled && missingCount > 0)) + { + saveDataMap(createDataMap()); updateState = CompleteUpdates; + } + else + updateState = CompleteNoUpdates; + + if (satelliteListModel) + satelliteListModel->endSatellitesChange(); + + qDebug() << "Satellites: update finished." + << updatedCount << "/" << totalCount << "updated," + << addedCount << "added," + << missingCount << "missing or removed." + << sourceCount << "source entries parsed."; emit(updateStateChanged(updateState)); - emit(tleUpdateComplete(numUpdated, totalSats, numMissing)); + emit(tleUpdateComplete(updatedCount, totalCount, addedCount, missingCount)); } -void Satellites::parseTleFile(QFile& openFile, TleDataHash& tleList) +void Satellites::parseTleFile(QFile& openFile, + TleDataHash& tleList, + bool addFlagValue) { if (!openFile.isOpen() || !openFile.isReadable()) return; @@ -1175,14 +1484,18 @@ { // New entry in the list, so reset all fields lastData = TleData(); + lastData.addThis = addFlagValue; //TODO: We need to think of some kind of ecaping these //characters in the JSON parser. --BM + // The thing in square brackets after the name is actually + // Celestrak's "status code". Parse automatically? --BM line.replace(QRegExp("\\s*\\[([^\\]])*\\]\\s*$"),""); // remove things in square brackets lastData.name = line; } else { + // TODO: Yet another place suitable for a standard TLE regex. --BM if (QRegExp("^1 .*").exactMatch(line)) lastData.first = line; else if (QRegExp("^2 .*").exactMatch(line)) @@ -1200,13 +1513,19 @@ if (!lastData.name.isEmpty() && !lastData.first.isEmpty()) { - //TODO: This overwrites duplicates. Display warning? --BM - tleList.insert(id, lastData); + // Some satellites can be listed in multiple files, + // and only some of those files may be marked for adding, + // so try to preserve the flag - if it's set, + // feel free to overwrite the existing value. + // If not, overwrite only if it's not in the list already. + // NOTE: Second case overwrite may need to check which TLE set is newer. + if (lastData.addThis || !tleList.contains(id)) + tleList.insert(id, lastData); // Overwrite if necessary } //TODO: Error warnings? --BM } else - qDebug() << "Satellites: unprocessed line " << lineNumber << " in file " << openFile.fileName(); + qDebug() << "Satellites: unprocessed line " << lineNumber << " in file " << QDir::toNativeSeparators(openFile.fileName()); } } } @@ -1220,7 +1539,7 @@ foreach(const SatelliteP& sat, satellites) { - if (sat->initialized && sat->visible) + if (sat->initialized && sat->displayed) sat->update(deltaTime); } } @@ -1246,7 +1565,7 @@ Satellite::viewportHalfspace = prj->getBoundingCap(); foreach (const SatelliteP& sat, satellites) { - if (sat && sat->initialized && sat->visible) + if (sat && sat->initialized && sat->displayed) { sat->draw(core, renderer, prj, hintTexture); } @@ -1301,4 +1620,42 @@ } } - +void Satellites::translations() +{ +#if 0 + // Satellite groups + // TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites + N_("visual"); + // TRANSLATORS: Satellite group: Scientific satellites + N_("scientific"); + // TRANSLATORS: Satellite group: Communication satellites + N_("communications"); + // TRANSLATORS: Satellite group: Navigation satellites + N_("navigation"); + // TRANSLATORS: Satellite group: Amateur radio (ham) satellites + N_("amateur"); + // TRANSLATORS: Satellite group: Weather (meteorological) satellites + N_("weather"); + // TRANSLATORS: Satellite group: Satellites in geostationary orbit + N_("geostationary"); + // TRANSLATORS: Satellite group: Satellites that are no longer functioning + N_("non-operational"); + // TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) + N_("gps"); + // TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) + N_("iridium"); + + /* For copy/paste: + // TRANSLATORS: Satellite group: + N_(""); + */ + + + // Satellite descriptions - bright and/or famous objects + // Just A FEW objects please! (I'm looking at you, Alex!) + // TRANSLATORS: Satellite description. "Hubble" is a person's name. + N_("The Hubble Space Telescope"); + // TRANSLATORS: Satellite description. + N_("The International Space Station"); +#endif +} diff -Nru stellarium-0.12.1/plugins/Satellites/src/Satellites.hpp stellarium-0.12.4/plugins/Satellites/src/Satellites.hpp --- stellarium-0.12.1/plugins/Satellites/src/Satellites.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/Satellites.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -28,7 +28,8 @@ #include #include -#include +#include +#include #include class StelButton; @@ -39,9 +40,9 @@ class QProgressBar; class QSettings; class QTimer; -class SatellitesDialog; -typedef QSharedPointer SatelliteP; +class SatellitesDialog; +class SatellitesListModel; //! Data structure containing unvalidated TLE set as read from a TLE list file. struct TleData @@ -52,18 +53,86 @@ QString name; QString first; QString second; + //! Flag indicating whether this satellite should be added. + //! See Satellites::autoAddEnabled. + bool addThis; }; typedef QList TleDataList; typedef QHash TleDataHash ; +//! TLE update source, used only internally for now. +struct TleSource +{ + //! URL from where the source list should be downloaded. + QUrl url; + //! The downloaded file, location set after finishing download. + //! In the future may be a QTemporaryFile object. + QFile* file; + //! Flag indicating whether new satellites in this list should be added. + //! See Satellites::autoAddEnabled. + bool addNew; +}; + +typedef QList TleSourceList; + + +/*! @mainpage notitle +@section overview Plugin Overview + +The %Satellites plugin displays the positions of artifical satellites in Earth +orbit based on a catalog of orbital data. + +The Satellites class is the main class of the plug-in. It manages a collection +of Satellite objects and takes care of loading, saving and updating the +satellite catalog. It allows automatic updates from online sources and manages +a list of update file URLs. + +To calculate satellite positions, the plugin uses an implementation of +the SGP4/SDP4 algorithms (J.L. Canales' gsat library). + +@section satprop Satellite Properties + +@subsection ident Name and identifiers +Each satellite has a name. It's displayed as a label of the satellite hint and in the list of satellites. Names are not unique though, so they are used only +for presentation purposes. + +In the @ref satcat satellites are uniquely identified by their NORAD number, which is encoded in TLEs. + +@subsection groups Grouping +A satellite can belong to one or more groups such as "amateur", "geostationary" or "navigation". They have no other function but to help the user organize the satellite collection. + +Group names are arbitrary strings defined in the @ref satcat for each satellite and are more similar to the concept of "tags" than a hierarchical grouping. A satellite may not belong to any group at all. + +By convention, group names are in lowercase. The GUI translates some of the groups used in the default catalog. + +@section satcat Satellite Catalog +The satellite catalog is stored on the disk in [JSON](http://www.json.org/) +format, in a file named "satellites.json". A default copy is embedded in the +plug-in at compile time. A working copy is kept in the user data directory. + +@section config Configuration +The plug-ins' configuration data is stored in Stellarium's main configuration +file. +*/ + + //! @class Satellites -//! Satellites in low Earth orbit require different orbital calculations from planets, the moon -//! and so on. This plugin implements the SGP4/SDP4 algorithms in Stellarium, allowing accurate -//! prediction of the position of artificial satellites. +//! Main class of the %Satellites plugin. +//! @author Matthew Gates +//! @author Bogdan Marinov class Satellites : public StelObjectModule { Q_OBJECT + Q_PROPERTY(bool autoAddEnabled + READ isAutoAddEnabled + WRITE enableAutoAdd + NOTIFY settingsChanged) + Q_PROPERTY(bool autoRemoveEnabled + READ isAutoRemoveEnabled + WRITE enableAutoRemove + NOTIFY settingsChanged) + public: //! @enum UpdateState //! Used for keeping track of the download/update status @@ -76,6 +145,7 @@ OtherError //!< Other error }; + //! Flags used to filter the satellites list according to their status. enum Status { Visible, @@ -124,14 +194,16 @@ //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; virtual QStringList listAllObjects(bool inEnglish) const; @@ -146,30 +218,38 @@ //! creates the default satellites.json file from the resource embedded in the plugin lib/dll file. void restoreDefaults(void); - //! Read (or re-read) settings from the main config file. This will be called from init and also - //! when restoring defaults (i.e. from the configuration dialog / restore defaults button). - void readSettingsFromConfig(void); - - //! Save the settings to the main configuration file. - void saveSettingsToConfig(void); - - //! Get a list of satellite group names. A Satellite may be long to one or more group - //! e.g. "amateur" and "navigation". Group names are arbitrary strings defined in the - //! json file. Think of them like tags. A satellite may not belong to any group at all. - QStringList getGroups(void) const; + //! Read (or re-read) the plugin's settings from the configuration file. + //! This will be called from init() and also when restoring defaults + //! (i.e. from the configuration dialog / restore defaults button). + void loadSettings(); + + //! Save the plugin's settings to the main configuration file. + void saveSettings(); + + //! Get the groups used in the currently loaded satellite collection. + //! See @ref groups for details. Use getGroupIdList() if you need a list. + QSet getGroups() const; + //! Get a sorted list of group names. + //! See @ref groups for details. Use getGroups() if you don't need a list. + QStringList getGroupIdList() const; + //! Add this group to the global list. + void addGroup(const QString& groupId); //! get satellite objects filtered by group. If an empty string is used for the //! group name, return all satallites QHash getSatellites(const QString& group=QString(), Status vis=Both); + //! Get a model representing the list of satellites. + SatellitesListModel* getSatellitesListModel(); - //! get a satellite object by identifier - SatelliteP getByID(const QString& id); + //! Get a satellite object by its identifier (i.e. NORAD number). + SatelliteP getById(const QString& id); //! Returns a list of all satellite IDs. - QStringList getAllIDs(); + QStringList listAllIds(); - //! Add the given satellites. + //! Add to the current collection the satellites described by the data list. //! The changes are not saved to file. + //! Calls add(TleData). void add(const TleDataList& newSatellites); //! Remove the selected satellites. @@ -179,16 +259,12 @@ //! get whether or not the plugin will try to update TLE data from the internet //! @return true if updates are set to be done, false otherwise bool getUpdatesEnabled(void) {return updatesEnabled;} - //! set whether or not the plugin will try to update TLE data from the internet - //! @param b if true, updates will be enabled, else they will be disabled - void setUpdatesEnabled(bool b) {updatesEnabled=b;} //! get the date and time the TLE elements were updated QDateTime getLastUpdate(void) {return lastUpdate;} //! get the update frequency in hours int getUpdateFrequencyHours(void) {return updateFrequencyHours;} - void setUpdateFrequencyHours(int hours) {updateFrequencyHours = hours;} //! get the number of seconds till the next update int getSecondsToUpdate(void); @@ -200,31 +276,78 @@ UpdateState getUpdateState(void) {return updateState;} //! Get a list of URLs which are sources of TLE data. + //! @returns a list of URL strings, some with prefixes - see #updateUrls + //! for details. QStringList getTleSources(void) {return updateUrls;} //! Set the list of URLs which are sources of TLE data. + //! In addition to replacing the current list of sources, it also + //! saves them to the configuration file. Allows marking sources for + //! auto-addition by adding a prefix to the URL string. + //! @see updateUrls + //! @param tleSources a list of valid URLs (http://, ftp://, file://), + //! allowed prefixes are "0,", "1," or no prefix. void setTleSources(QStringList tleSources); + //! Saves the current list of update URLs to the configuration file. + void saveTleSources(const QStringList& urls); + //! Returns the module-specific style sheet. //! The main StelStyle instance should be passed. + // TODO: Plugin-specific styles are no longer necessary? const StelStyle getModuleStyleSheet(const StelStyle& style); //! Reads update file(s) in celestrak's .txt format, and updates //! the TLE elements for exisiting satellites from them. - //! emits signals updateStateChanged and tleUpdateComplete + //! Indirectly emits signals updateStateChanged() and tleUpdateComplete(), + //! as it calls updateSatellites(). + //! See updateFromOnlineSources() for the other kind of update operation. //! @param paths a list of paths to update files //! @param deleteFiles if set, the update files are deleted after //! they are used, else they are left alone void updateFromFiles(QStringList paths, bool deleteFiles=false); + //! Updates the loaded satellite collection from the provided data. + //! Worker function called by updateFromFiles() and saveDownloadedUpdate(). + //! (Respecitvely, user-initiated update from file(s) and user- or auto- + //! initiated update from online source(s).) + //! Emits updateStateChanged() and tleUpdateComplete(). + //! @note Instead of splitting this method off updateFromFiles() and passing + //! the auto-add flag through data structures, another possiblity was to + //! modify updateFromFiles to use the same prefix trick (adding "1," + //! to file paths). I decided against it because I thought it would be more + //! complex. :) --BM + //! @param[in,out] newTleSets a hash with satellite IDs as keys; it's + //! modified by the method! + void updateSatellites(TleDataHash& newTleSets); + //! Reads a TLE list from a file to the supplied hash. //! If an entry with the same ID exists in the given hash, its contents //! are overwritten with the new values. //! \param openFile a reference to an \b open file. - //! \param tleList a hash with satellite IDs (catalog numbers) as keys. - static void parseTleFile(QFile& openFile, TleDataHash& tleList); + //! @param[in,out] tleList a hash with satellite IDs as keys. + //! @param[in] addFlagValue value to be set to TleData::addThis for all. + //! @todo If this can accept a QIODevice, it will be able to read directly + //! QNetworkReply-s... --BM + static void parseTleFile(QFile& openFile, + TleDataHash& tleList, + bool addFlagValue = false); + + bool getFlagHints() {return hintFader;} + //! get the label font size. + //! @return the pixel size of the font + int getLabelFontSize() {return labelFont.pixelSize();} + bool getFlagLabels(); + //! Get the current status of the orbit line rendering flag. + bool getOrbitLinesFlag(); + bool isAutoAddEnabled() const { return autoAddEnabled; } + bool isAutoRemoveEnabled() const { return autoRemoveEnabled; } signals: + //! Emitted when some of the plugin settings have been changed. + //! Used to communicate with the configuration window. + void settingsChanged(); + //! emitted when the update status changes, e.g. when //! an update starts, completes and so on. Note that //! on completion of an update, tleUpdateComplete is also @@ -232,31 +355,61 @@ //! @param state the new update state. void updateStateChanged(Satellites::UpdateState state); - //! emitted after a TLE update has run. - //! @param updates the number of satellites updated. - //! @param total the total number of satellites in the JSON data. - //! @param the number of satellites in the JSON data but not found in update data - void tleUpdateComplete(int updates, int total, int missing); - + //! Emitted after an update has run. + //! @param updated the number of updated satellites; + //! @param total the total number of satellites in the catalog; + //! @param added the number of newly added satellites; + //! @param missing the number of satellites that were not found in the + //! update source(s) (and were removed, if autoRemoveEnabled is set). + void tleUpdateComplete(int updated, int total, int added, int missing); public slots: - void setFlagHints(bool b) {hintFader=b;} - bool getFlagHints(void) {return hintFader;} - - //! get the label font size - //! @return the pixel size of the font - int getLabelFontSize(void) {return labelFont.pixelSize();} - //! set the label font size - //! @param size the pixel size of the font - void setLabelFontSize(int size) {labelFont.setPixelSize(size);} - - bool getFlagLabels(void); + // FIXME: Put back the getter functions - for scripts? --BM + + //! Set whether the plugin will try to download updates from the Internet. + //! Emits settingsChanged() if the value changes. + //! @param b if true, updates will be enabled, else they will be disabled. + void enableInternetUpdates(bool enabled = true); + + //! Emits settingsChanged() if the value changes. + void enableAutoAdd(bool enabled = true); + + //! Emits settingsChanged() if the value changes. + void enableAutoRemove(bool enabled = true); + + //! Set whether satellite position hints (icons) should be displayed. + //! Note that hint visibility also applies to satellite labels. + //! Emits settingsChanged() if the value changes. + void setFlagHints(bool b); + + //! Set whether text labels should be displayed next to satellite hints. + //! Emits settingsChanged() if the value changes. + //! @todo Decide how to sync with "actionShow_Satellite_Labels". void setFlagLabels(bool b); - - //! Download TLEs from web recources described in the module section of the - //! module.ini file and update the TLE values for any satellites for which - //! there is new TLE data. - void updateTLEs(void); + + //! set the label font size. + //! @param size the pixel size of the font + //! Emits settingsChanged() if the value changes. + void setLabelFontSize(int size); + + //! Set the Internet update frequency. + //! Emits settingsChanged() if the value changes. + void setUpdateFrequencyHours(int hours); + + //! Start an Internet update. + //! This method starts the process of an Internet update: it tries to + //! download TLE lists from online recources and then use them to + //! update the orbital data (and names, etc.) of the included satellites. + //! This only initialized the download. The rest of the work is done by + //! saveDownloadedUpdate() and updateSatellites(). + //! Update sources are described in updateUrls (see for accessor details). + //! If autoAddEnabled is true when this function is called, new satellites + //! in the chosen update sources will be added during the update. + //! If autoRemoveEnabled is true when this function is called, any existing + //! satellite that can't be found in the downloaded update lists will be + //! removed. + //! See updateFromFiles() for the other type of update operation. + void updateFromOnlineSources(); //! Choose whether or not to draw orbit lines. Each satellite has its own setting //! as well, but this can be used to turn on/off all those satellites which elect to @@ -264,75 +417,138 @@ //! @param b - true to turn on orbit lines, false to turn off void setOrbitLinesFlag(bool b); - //! Get the current status of the orbit line rendering flag - bool getOrbitLinesFlag(void); - void recalculateOrbitLines(void); - //! Display a message. This is used for plugin-specific warnings and such + //! Display a message on the screen for a few seconds. + //! This is used for plugin-specific warnings and such. void displayMessage(const QString& message, const QString hexColor="#999999"); - void messageTimeout(void); + //! Hide all messages. + void hideMessages(); - //! Save the current TLE data to the default json file location. - void saveTleData(QString path=QString()); + //! Save the current satellite catalog to disk. + void saveCatalog(QString path=QString()); private slots: void setStelStyle(const QString& section); private: - //! if existing, delete Satellites section in main config.ini, then create with default values - void restoreDefaultConfigIni(void); - - //! replace the json file with the default from the compiled-in resource - void restoreDefaultJsonFile(void); - - //! read the json file and create the satellites. Removes existing satellites first if there are any + //! Add to the current collection the satellite described by the data. + //! @warning Use only in other methods! Does not update satelliteListModel! + //! @todo This probably could be done easier if Satellite had a constructor + //! accepting TleData... --BM + //! @returns true if the addition was successful. + bool add(const TleData& tleData); + + //! Delete Satellites section in main config.ini, then create with default values. + void restoreDefaultSettings(); + //! Replace the catalog file with the default one. + void restoreDefaultCatalog(); + //! Load the satellites from the catalog file. + //! Removes existing satellites first if there are any. //! this will be done once at init, and also if the defaults are reset. - void readJsonFile(void); - + void loadCatalog(); //! Creates a backup of the satellites.json file called satellites.json.old //! @param deleteOriginal if true, the original file is removed, else not //! @return true on OK, false on failure - bool backupJsonFile(bool deleteOriginal=false); - - //! Get the version from the "creator" value in the satellites.json file + bool backupCatalog(bool deleteOriginal=false); + //! Read the version number from the "creator" value in the catalog file. //! @return version string, e.g. "0.6.1" - const QString getJsonFileVersion(void); + const QString readCatalogVersion(); - bool saveTleMap(const QVariantMap& map, QString path=QString()); - QVariantMap loadTleMap(QString path=QString()); - void setTleMap(const QVariantMap& map); - //! Generates a QMap that contains all the data on satellites. - QVariantMap getTleMap(); - - QString satellitesJsonPath; + //! Save a structure representing a satellite catalog to a JSON file. + //! If no path is specified, catalogPath is used. + //! @see createDataMap() + bool saveDataMap(const QVariantMap& map, QString path=QString()); + //! Load a structure representing a satellite catalog from a JSON file. + //! If no path is specified, catalogPath is used. + QVariantMap loadDataMap(QString path=QString()); + //! Parse a satellite catalog structure into internal satellite data. + void setDataMap(const QVariantMap& map); + //! Make a satellite catalog structure from current satellite data. + //! @return a representation of a JSON file. + QVariantMap createDataMap(); + + //! Sets lastUpdate to the current date/time and saves it to the settings. + void markLastUpdate(); + + //! A fake method for strings marked for translation. + //! Use it instead of translations.h for N_() strings, except perhaps for + //! keyboard action descriptions. (It's better for them to be in a single + //! place.) + static void translations(); + + //! Path to the satellite catalog file. + QString catalogPath; + //! Plug-in data directory. + //! Intialized by init(). Contains the catalog file (satellites.json), + //! temporary TLE lists downloaded during an online update, or whatever + //! other modifiable files the plug-in needs. + QDir dataDir; + QList satellites; + SatellitesListModel* satelliteListModel; + + //! Union of the groups used by all loaded satellites - see @ref groups. + //! For simplicity, it can only grow until the plug-in is unloaded - + //! a group is not removed even if there are no more satellites tagged with + //! it. + QSet groups; + LinearFader hintFader; class StelTextureNew* hintTexture; class StelTextureNew* texPointer; + + //! @name Bottom toolbar button + //@{ QPixmap* pxmapGlow; QPixmap* pxmapOnIcon; QPixmap* pxmapOffIcon; - StelButton* toolbarButton; + StelButton* toolbarButton; + //@} + // FIXME: Possible bug with the Solar System recreated by the SSEditor. QSharedPointer earth; Vec3f defaultHintColor; Vec3f defaultOrbitColor; QFont labelFont; - // variables and functions for the updater + //! @name Updater module + //@{ UpdateState updateState; QNetworkAccessManager* downloadMgr; + //! List of TLE source lists for automatic updates. + //! Use getTleSources() to get the value, setTleSources() to set it (and + //! save it to configuration). + //! URLs prefixed with "1," indicate that satellites from this source will + //! be auto-added if autoAddEnabled is true. URLs prefixed with "0," or + //! without a prefix are used only to update existing satellites. This + //! system was introduced to avoid using a custom type as a parameter in + //! setTleSources(), which in turn allows it to be used in scripts. QStringList updateUrls; - QStringList updateFiles; + //! Temporary stores update URLs and files during an online update. + //! In use only between updateFromOnlineSources() and the final call to + //! saveDownloadedUpdate(). @b DO @b NOT use elsewhere! + //! As a side effect it prevents problems if the user calls + //! setTleSources() while an update is in progress. + TleSourceList updateSources; QProgressBar* progressBar; - int currentUpdateUrlIdx; int numberDownloadsComplete; QTimer* updateTimer; - QTimer* messageTimer; - QList messageIDs; + //! Flag enabling automatic Internet updates. bool updatesEnabled; + //! Flag enabling the automatic addition of new satellites on update. + //! This will apply only for the selected update sources. + bool autoAddEnabled; + //! Flag enabling the automatic removal of missing satellites on update. + bool autoRemoveEnabled; QDateTime lastUpdate; int updateFrequencyHours; + //@} + + //! @name Screen message infrastructure + //@{ + QTimer* messageTimer; + QList messageIDs; + //@} // GUI SatellitesDialog* configDialog; @@ -344,8 +560,16 @@ //! if the last update was longer than updateFrequencyHours ago then the update is //! done. void checkForUpdate(void); - void updateDownloadComplete(QNetworkReply* reply); - void observerLocationChanged(StelLocation loc); + //! Save the downloaded file and finish the update if it's the last one. + //! Calls updateSatellites() and indirectly emits updateStateChanged() + //! and updateFinished(). + //! Ends the update process started with updateFromOnlineSources(). + //! @todo I've kept the previous behaviour, which was to save the update to + //! temporary files and then read them. If we give up on the idea to + //! re-use them later when adding manually satellites, parseTleFile() + //! can be modified to read directly form QNetworkReply-s. --BM + void saveDownloadedUpdate(QNetworkReply* reply); + void updateObserverLocation(StelLocation loc); }; diff -Nru stellarium-0.12.1/plugins/Satellites/src/SatellitesListFilterModel.cpp stellarium-0.12.4/plugins/Satellites/src/SatellitesListFilterModel.cpp --- stellarium-0.12.1/plugins/Satellites/src/SatellitesListFilterModel.cpp 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/SatellitesListFilterModel.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,80 @@ +/* + * Copyright (C) 2013 Bogdan Marinov + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#include "SatellitesListFilterModel.hpp" + +SatellitesListFilterModel::SatellitesListFilterModel(QObject *parent) : + QSortFilterProxyModel(parent), + filterFlag(SatNoFlags) +{ +} + +void SatellitesListFilterModel::setFilterFlag(const SatFlag& flag) +{ + filterFlag = flag; + invalidateFilter(); +} + +void SatellitesListFilterModel::setFilterGroup(const QString& groupId) +{ + filterGroup = groupId; + invalidateFilter(); +} + +void SatellitesListFilterModel::setSecondaryFilters(const QString& groupId, + const SatFlag& flag) +{ + filterFlag = flag; + filterGroup = groupId; + invalidateFilter(); +} + + +bool SatellitesListFilterModel::filterAcceptsRow(int source_row, const QModelIndex& source_parent) const +{ + QModelIndex index = sourceModel()->index(source_row, 0, source_parent); + + // Check flag + // TODO: find out if the NoFlags trick actually works + QVariant data = index.data(SatFlagsRole); + SatFlags flags = data.value(); + if (!(flags & filterFlag).testFlag(filterFlag)) + return false; + + // Check group + if (!filterGroup.isEmpty()) + { + data = index.data(SatGroupsRole); + QSet groups = data.value(); + if (!groups.contains(filterGroup)) + return false; + } + + // Check name + if (index.data(Qt::DisplayRole).toString().contains(filterRegExp())) + return true; + + // Check ID + data = index.data(Qt::UserRole); + QString id = data.toString(); + if (id.contains(filterRegExp())) + return true; + + // TODO: Possible check for "NORAD NNNN". + return false; +} diff -Nru stellarium-0.12.1/plugins/Satellites/src/SatellitesListFilterModel.hpp stellarium-0.12.4/plugins/Satellites/src/SatellitesListFilterModel.hpp --- stellarium-0.12.1/plugins/Satellites/src/SatellitesListFilterModel.hpp 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/SatellitesListFilterModel.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,73 @@ +/* + * Copyright (C) 2013 Bogdan Marinov + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#ifndef SATELLITESLISTFILTERMODEL_HPP +#define SATELLITESLISTFILTERMODEL_HPP + +#include + +#include "Satellite.hpp" // for the flags + +//! Custom proxy model allowing filtering by satellite group and flag. +class SatellitesListFilterModel : public QSortFilterProxyModel +{ + Q_OBJECT + + //! Only satellites with this flag raised will be returned. + //! Use Satellite::NoFlags for no filtering. + //! Setting the flag with setFilterFlag() or setSecondaryFilters() + //! will cause the model to be re-filtered. + Q_PROPERTY(SatFlag filterFlag + READ getFilterFlag + WRITE setFilterFlag) + + //! Only satellites belonging to this group will be returned. + //! Use an empty group ID for no filtering. + //! Setting the group with setFilterGroup() or setSecondaryFilters() + //! will cause the model to be re-filtered. + Q_PROPERTY(QString filterGroup + READ getFilterGroup + WRITE setFilterGroup) + +public: + SatellitesListFilterModel(QObject *parent = 0); + + SatFlag getFilterFlag() const { return filterFlag; } + void setFilterFlag(const SatFlag& flag); + + QString getFilterGroup() const { return filterGroup; } + void setFilterGroup(const QString& groupId); + + void setSecondaryFilters(const QString& groupId, + const SatFlag& flag); + +signals: + +public slots: + +protected: + //! Reimplementation of the filtering method. + bool filterAcceptsRow(int source_row, + const QModelIndex& source_parent) const; + +private: + SatFlag filterFlag; + QString filterGroup; +}; + +#endif // SATELLITESLISTFILTERMODEL_HPP diff -Nru stellarium-0.12.1/plugins/Satellites/src/SatellitesListModel.cpp stellarium-0.12.4/plugins/Satellites/src/SatellitesListModel.cpp --- stellarium-0.12.1/plugins/Satellites/src/SatellitesListModel.cpp 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/SatellitesListModel.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,151 @@ +/* + * Copyright (C) 2013 Bogdan Marinov + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#include "SatellitesListModel.hpp" + +#include +#include + +SatellitesListModel::SatellitesListModel(QList* satellites, + QObject* parent) : + QAbstractTableModel(parent), + satelliteList(0), + coloredNames(true) +{ + Q_ASSERT(satellites); + + satelliteList = satellites; +} + +void SatellitesListModel::setSatelliteList(QList* satellites) +{ + if (!satellites) + return; + + beginResetModel(); + satelliteList = satellites; + endResetModel(); +} + +Qt::ItemFlags SatellitesListModel::flags(const QModelIndex& index) const +{ + if (!index.isValid()) + return Qt::ItemIsEnabled; + + return QAbstractItemModel::flags(index); + //TODO: If you decide to make it a table, boolean columns must be checkable. +} + +QVariant SatellitesListModel::data(const QModelIndex& index, int role) const +{ + if (!index.isValid() || index.row() < 0 || + index.row() >= satelliteList->size()) + return QVariant(); + + SatelliteP sat = satelliteList->at(index.row()); + switch (role) + { + case Qt::DisplayRole: + return (sat->name); + + case Qt::ForegroundRole: + if (coloredNames) + { + const Vec3f& c = sat->hintColor; + return QBrush(QColor::fromRgbF(c[0],c[1],c[2])); + } + else + break; + + case Qt::UserRole: + return (sat->id); + + case SatDescriptionRole: + return (sat->description); + + case SatFlagsRole: + return (QVariant::fromValue(sat->getFlags())); + + case SatGroupsRole: + return (QVariant::fromValue(sat->groups)); + + case FirstLineRole: + return (sat->tleElements.first); + + case SecondLineRole: + return (sat->tleElements.second); + + default: + break; + } + return QVariant(); +} + +bool SatellitesListModel::setData(const QModelIndex& index, + const QVariant& value, + int role) +{ + if (!index.isValid() || index.row() < 0 || + index.row() >= satelliteList->size()) + return false; + + SatelliteP sat = satelliteList->at(index.row()); + switch (role) + { + case SatGroupsRole: + sat->groups = value.value(); + return true; + + case SatFlagsRole: + sat->setFlags(value.value()); + return true; + + default: + return false; + } + + return false; +} + +int SatellitesListModel::rowCount(const QModelIndex& parent) const +{ + Q_UNUSED(parent); + return satelliteList->count(); +} + +int SatellitesListModel::columnCount(const QModelIndex& parent) const +{ + Q_UNUSED(parent); + return 1; + //TODO: For now... +} + +void SatellitesListModel::beginSatellitesChange() +{ + beginResetModel(); +} + +void SatellitesListModel::endSatellitesChange() +{ + endResetModel(); +} + +void SatellitesListModel::enableColoredNames(bool enable) +{ + coloredNames = enable; +} diff -Nru stellarium-0.12.1/plugins/Satellites/src/SatellitesListModel.hpp stellarium-0.12.4/plugins/Satellites/src/SatellitesListModel.hpp --- stellarium-0.12.1/plugins/Satellites/src/SatellitesListModel.hpp 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/SatellitesListModel.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,87 @@ +/* + * Copyright (C) 2013 Bogdan Marinov + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#ifndef SATELLITESLISTMODEL_HPP +#define SATELLITESLISTMODEL_HPP + +#include +#include +#include + +#include "Satellite.hpp" + +//! A model encapsulating a satellite list. +//! Used for GUI presentation purposes. +//! +//! It can show satellite names in their hint colors. This behavior can be +//! toggled with enableColoredNames(), e.g. to honor night mode. +//! +//! @warning The model keeps a pointer to the satellite list, not a copy, +//! so every time that list is modified outside the model (i.e. satellites are +//! added or removed), you need to call beginSatellitesChange() and +//! endSatellitesChange(). +//! +//! @todo Decide whether to use a table model with multiple columns (current), +//! or a list model dumping everything through data(). Both require enums - for +//! column numbers or data roles. +class SatellitesListModel : public QAbstractTableModel +{ + Q_OBJECT +public: + SatellitesListModel(QList* satellites, QObject *parent = 0); + + void setSatelliteList(QList* satellites); + + //! @name Reimplemented model handling methods. + //@{ + Qt::ItemFlags flags(const QModelIndex& index) const; + QVariant data(const QModelIndex& index, int role) const; + bool setData(const QModelIndex& index, const QVariant& value, int role); + int rowCount(const QModelIndex& parent) const; + int columnCount(const QModelIndex& parent) const; + //@} + +signals: + +public slots: + //! Tell the model that its internal data structure is about to be modified. + //! This should be called every time when the underlying data structure is + //! about to be modified outside the model! (That is, when satellites are + //! about to be added or removed.) Otherwise views that use this + //! model won't work correctly. + void beginSatellitesChange(); + //! Tell the model that its internal data has been modified. + //! Don't call this without calling beginSatellitesChange() first! + //! This should be called every time when the underlying data structure has + //! been modified outside the model! (That is, when satellites have been + //! added or removed.) Otherwise views that use this model won't work + //! correctly. + void endSatellitesChange(); + void enableColoredNames(bool enable = true); + +private: + //! Pointer to the external data object represented by the model. + //! Call updateSatellitesData() every time that data is modified outside + //! the model! + QList* satelliteList; + + //! Enabled by default. + bool coloredNames; +}; + +#endif // SATELLITESLISTMODEL_HPP diff -Nru stellarium-0.12.1/plugins/Satellites/src/gSatWrapper.hpp stellarium-0.12.4/plugins/Satellites/src/gSatWrapper.hpp --- stellarium-0.12.1/plugins/Satellites/src/gSatWrapper.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/gSatWrapper.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -42,6 +42,7 @@ #define RADAR_NIGHT 3 #define NOT_VISIBLE 4 +//! Wrapper allowing compatibility between gsat and Stellarium/Qt. class gSatWrapper { @@ -52,7 +53,6 @@ // Operation updateEpoch //! @brief This operation update Epoch timestamp for gSatTEME object //! from Stellarium Julian Date. - //! @return void void updateEpoch(); void setEpoch(double ai_julianDaysEpoch); @@ -75,10 +75,10 @@ //! Altitude: Coord[2] measured in Km.\n Vec3d getSubPoint(); - // Operation getAltAz + // Operation getAltAz //! @brief This operation compute the coordinates in StelCore::FrameAltAz - //! @return Vect3d Vector with coordinates (Meassured in Km) - //! @ref + //! @return Vect3d Vector with coordinates (meassured in km) + //! @par References //! Orbital Coordinate Systems, Part II //! Dr. T.S. Kelso //! http://www.celestrak.com/columns/v02n02/ @@ -105,7 +105,7 @@ //! 2 if VISIBLE //! 3 if RADAR_NIGHt //! 3 if NOT_VISIBLE - //! @ref + //! @par References //! Fundamentals of Astrodynamis and Applications (Third Edition) pg 898 //! David A. Vallado int getVisibilityPredict(); @@ -118,8 +118,7 @@ //! This position can be asumed as observer position in TEME framework without an appreciable error. //! ECI axis (IJK) are parallel to StelCore::EquinoxEQ Framework but centered in the earth centre //! instead the observer position. - //! @details - //! References: + //! @par References //! Orbital Coordinate Systems, Part II //! Dr. T.S. Kelso //! http://www.celestrak.com/columns/v02n02/ diff -Nru stellarium-0.12.1/plugins/Satellites/src/gsatellite/sgp4ext.cpp stellarium-0.12.4/plugins/Satellites/src/gsatellite/sgp4ext.cpp --- stellarium-0.12.1/plugins/Satellites/src/gsatellite/sgp4ext.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/gsatellite/sgp4ext.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -24,6 +24,7 @@ * ---------------------------------------------------------------- */ #include "sgp4ext.h" +#include "StelUtils.hpp" double sgn @@ -184,38 +185,6 @@ return undefined; } // end angle - -/* ----------------------------------------------------------------------------- -* -* function asinh -* -* this function evaluates the inverse hyperbolic sine function. -* -* author : david vallado 719-573-2600 1 mar 2001 -* -* inputs description range / units -* xval - angle value any real -* -* outputs : -* arcsinh - result any real -* -* locals : -* none. -* -* coupling : -* none. -* -* --------------------------------------------------------------------------- */ - -double asinh - ( - double xval - ) - { - return log( xval + sqrt( xval*xval + 1.0 ) ); - } // end asinh - - /* ----------------------------------------------------------------------------- * * function newtonnu @@ -286,7 +255,7 @@ if ((ecc > 1.0 ) && (fabs(nu)+0.00001 < M_PI-acos(1.0 /ecc))) { sine= ( sqrt( ecc*ecc-1.0 ) * sin(nu) ) / ( 1.0 + ecc*cos(nu) ); - e0 = asinh( sine ); + e0 = StelUtils::asinh( sine ); m = ecc*sinh(e0) - e0; } } diff -Nru stellarium-0.12.1/plugins/Satellites/src/gui/SatellitesDialog.cpp stellarium-0.12.4/plugins/Satellites/src/gui/SatellitesDialog.cpp --- stellarium-0.12.1/plugins/Satellites/src/gui/SatellitesDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/gui/SatellitesDialog.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -30,6 +30,8 @@ #include "ui_satellitesDialog.h" #include "SatellitesDialog.hpp" #include "SatellitesImportDialog.hpp" +#include "SatellitesListModel.hpp" +#include "SatellitesListFilterModel.hpp" #include "Satellites.hpp" #include "StelModuleMgr.hpp" #include "StelObjectMgr.hpp" @@ -43,12 +45,10 @@ SatellitesDialog::SatellitesDialog() : updateTimer(0), importWindow(0), - satellitesModel(0), - filterProxyModel(0) + filterModel(0), + checkStateRole(Qt::UserRole) { ui = new Ui_satellitesDialog; - - satellitesModel = new QStandardItemModel(this); } SatellitesDialog::~SatellitesDialog() @@ -74,13 +74,9 @@ if (dialog) { ui->retranslateUi(dialog); - refreshUpdateValues(); - setAboutHtml(); - // This may be a problem if we add group name translations, as the - // sorting order may be different. --BM - int index = ui->groupsCombo->currentIndex(); - populateGroupsList(); - ui->groupsCombo->setCurrentIndex(index); + updateSettingsPage(); // For the button; also calls updateCountdown() + populateAboutPage(); + populateFilterMenu(); } } @@ -89,60 +85,98 @@ { ui->setupUi(dialog); ui->tabs->setCurrentIndex(0); + ui->labelAutoAdd->setVisible(false); + connect(ui->closeStelWindow, SIGNAL(clicked()), this, SLOT(close())); connect(&StelApp::getInstance(), SIGNAL(languageChanged()), - this, SLOT(retranslate())); + this, SLOT(retranslate())); + Satellites* plugin = GETSTELMODULE(Satellites); // Settings tab / updates group - connect(ui->internetUpdatesCheckbox, SIGNAL(stateChanged(int)), this, SLOT(setUpdatesEnabled(int))); + // These controls are refreshed by updateSettingsPage(), which in + // turn is triggered by setting any of these values. Because + // clicked() is issued only by user input, there's no endless loop. + connect(ui->internetUpdatesCheckbox, SIGNAL(clicked(bool)), + plugin, SLOT(enableInternetUpdates(bool))); + connect(ui->checkBoxAutoAdd, SIGNAL(clicked(bool)), + plugin, SLOT(enableAutoAdd(bool))); + connect(ui->checkBoxAutoRemove, SIGNAL(clicked(bool)), + plugin, SLOT(enableAutoRemove(bool))); + connect(ui->updateFrequencySpinBox, SIGNAL(valueChanged(int)), + plugin, SLOT(setUpdateFrequencyHours(int))); connect(ui->updateButton, SIGNAL(clicked()), this, SLOT(updateTLEs())); - connect(GETSTELMODULE(Satellites), SIGNAL(updateStateChanged(Satellites::UpdateState)), this, SLOT(updateStateReceiver(Satellites::UpdateState))); - connect(GETSTELMODULE(Satellites), SIGNAL(tleUpdateComplete(int, int, int)), this, SLOT(updateCompleteReceiver(int, int, int))); - connect(ui->updateFrequencySpinBox, SIGNAL(valueChanged(int)), this, SLOT(setUpdateValues(int))); - refreshUpdateValues(); // fetch values for last updated and so on - // if the state didn't change, setUpdatesEnabled will not be called, so we force it - setUpdatesEnabled(ui->internetUpdatesCheckbox->checkState()); + connect(ui->jumpToSourcesButton, SIGNAL(clicked()), + this, SLOT(jumpToSourcesTab())); + connect(plugin, SIGNAL(updateStateChanged(Satellites::UpdateState)), + this, SLOT(showUpdateState(Satellites::UpdateState))); + connect(plugin, SIGNAL(tleUpdateComplete(int, int, int, int)), + this, SLOT(showUpdateCompleted(int, int, int, int))); updateTimer = new QTimer(this); - connect(updateTimer, SIGNAL(timeout()), this, SLOT(refreshUpdateValues())); + connect(updateTimer, SIGNAL(timeout()), this, SLOT(updateCountdown())); updateTimer->start(7000); - connect(ui->closeStelWindow, SIGNAL(clicked()), this, SLOT(close())); - // Settings tab / General settings group - connect(ui->labelsGroup, SIGNAL(toggled(bool)), dynamic_cast(StelApp::getInstance().getGui())->getGuiAction("actionShow_Satellite_Labels"), SLOT(setChecked(bool))); - connect(ui->fontSizeSpinBox, SIGNAL(valueChanged(int)), GETSTELMODULE(Satellites), SLOT(setLabelFontSize(int))); - connect(ui->restoreDefaultsButton, SIGNAL(clicked()), this, SLOT(restoreDefaults())); - connect(ui->saveSettingsButton, SIGNAL(clicked()), this, SLOT(saveSettings())); + // This does call Satellites::setFlagLabels() indirectly. + QAction* action = dynamic_cast(StelApp::getInstance().getGui())->getGuiAction("actionShow_Satellite_Labels"); + connect(ui->labelsGroup, SIGNAL(clicked(bool)), + action, SLOT(setChecked(bool))); + connect(ui->fontSizeSpinBox, SIGNAL(valueChanged(int)), + plugin, SLOT(setLabelFontSize(int))); + connect(ui->restoreDefaultsButton, SIGNAL(clicked()), + this, SLOT(restoreDefaults())); + connect(ui->saveSettingsButton, SIGNAL(clicked()), + this, SLOT(saveSettings())); // Settings tab / orbit lines group - ui->orbitLinesGroup->setChecked(GETSTELMODULE(Satellites)->getOrbitLinesFlag()); - ui->orbitSegmentsSpin->setValue(Satellite::orbitLineSegments); - ui->orbitFadeSpin->setValue(Satellite::orbitLineFadeSegments); - ui->orbitDurationSpin->setValue(Satellite::orbitLineSegmentDuration); - - connect(ui->orbitLinesGroup, SIGNAL(toggled(bool)), GETSTELMODULE(Satellites), SLOT(setOrbitLinesFlag(bool))); + connect(ui->orbitLinesGroup, SIGNAL(clicked(bool)), + plugin, SLOT(setOrbitLinesFlag(bool))); connect(ui->orbitSegmentsSpin, SIGNAL(valueChanged(int)), this, SLOT(setOrbitParams())); connect(ui->orbitFadeSpin, SIGNAL(valueChanged(int)), this, SLOT(setOrbitParams())); connect(ui->orbitDurationSpin, SIGNAL(valueChanged(int)), this, SLOT(setOrbitParams())); - + + // Settings tab - populate all values + updateSettingsPage(); // Satellites tab - filterProxyModel = new QSortFilterProxyModel(this); - filterProxyModel->setSourceModel(satellitesModel); - filterProxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive); - ui->satellitesList->setModel(filterProxyModel); + filterModel = new SatellitesListFilterModel(this); + filterModel->setSourceModel(GETSTELMODULE(Satellites)->getSatellitesListModel()); + filterModel->setFilterCaseSensitivity(Qt::CaseInsensitive); + ui->satellitesList->setModel(filterModel); connect(ui->lineEditSearch, SIGNAL(textEdited(QString)), - filterProxyModel, SLOT(setFilterWildcard(QString))); + filterModel, SLOT(setFilterWildcard(QString))); QItemSelectionModel* selectionModel = ui->satellitesList->selectionModel(); - connect(selectionModel, SIGNAL(currentRowChanged(QModelIndex,QModelIndex)), - this, SLOT(updateSelectedInfo(QModelIndex,QModelIndex))); + connect(selectionModel, + SIGNAL(selectionChanged(QItemSelection,QItemSelection)), + this, + SLOT(updateSatelliteData())); connect(ui->satellitesList, SIGNAL(doubleClicked(QModelIndex)), - this, SLOT(handleDoubleClick(QModelIndex))); - connect(ui->groupsCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(listSatelliteGroup(int))); + this, SLOT(trackSatellite(QModelIndex))); + + // Two-state input, three-state display + connect(ui->displayedCheckbox, SIGNAL(clicked(bool)), + ui->displayedCheckbox, SLOT(setChecked(bool))); + connect(ui->orbitCheckbox, SIGNAL(clicked(bool)), + ui->orbitCheckbox, SLOT(setChecked(bool))); + connect(ui->userCheckBox, SIGNAL(clicked(bool)), + ui->userCheckBox, SLOT(setChecked(bool))); + + // Because the previous signals and slots were connected first, + // they will be executed before these. + connect(ui->displayedCheckbox, SIGNAL(clicked()), + this, SLOT(setFlags())); + connect(ui->orbitCheckbox, SIGNAL(clicked()), + this, SLOT(setFlags())); + connect(ui->userCheckBox, SIGNAL(clicked()), + this, SLOT(setFlags())); + + connect(ui->groupsListWidget, SIGNAL(itemChanged(QListWidgetItem*)), + this, SLOT(handleGroupChanges(QListWidgetItem*))); + + connect(ui->groupFilterCombo, SIGNAL(currentIndexChanged(int)), + this, SLOT(filterListByGroup(int))); connect(ui->saveSatellitesButton, SIGNAL(clicked()), this, SLOT(saveSatellites())); connect(ui->removeSatellitesButton, SIGNAL(clicked()), this, SLOT(removeSatellites())); - connectSatelliteGuiForm(); importWindow = new SatellitesImportDialog(); connect(ui->addSatellitesButton, SIGNAL(clicked()), @@ -152,141 +186,199 @@ // Sources tab connect(ui->sourceList, SIGNAL(currentTextChanged(const QString&)), ui->sourceEdit, SLOT(setText(const QString&))); - connect(ui->sourceEdit, SIGNAL(editingFinished()), this, SLOT(sourceEditingDone())); + connect(ui->sourceList, SIGNAL(itemChanged(QListWidgetItem*)), + this, SLOT(saveSourceList())); + connect(ui->sourceEdit, SIGNAL(editingFinished()), + this, SLOT(saveEditedSource())); connect(ui->deleteSourceButton, SIGNAL(clicked()), this, SLOT(deleteSourceRow())); connect(ui->addSourceButton, SIGNAL(clicked()), this, SLOT(addSourceRow())); + connect(plugin, SIGNAL(settingsChanged()), + this, SLOT(toggleCheckableSources())); // About tab - setAboutHtml(); - - updateGuiFromSettings(); + populateAboutPage(); + populateFilterMenu(); + populateSourcesList(); } -void SatellitesDialog::listSatelliteGroup(int index) +void SatellitesDialog::filterListByGroup(int index) { + if (index < 0) + return; + + QString groupId = ui->groupFilterCombo->itemData(index).toString(); + if (groupId == "all") + filterModel->setSecondaryFilters(QString(), SatNoFlags); + else if (groupId == "[displayed]") + filterModel->setSecondaryFilters(QString(), SatDisplayed); + else if (groupId == "[undisplayed]") + filterModel->setSecondaryFilters(QString(), SatNotDisplayed); + else if (groupId == "[newlyadded]") + filterModel->setSecondaryFilters(QString(), SatNew); + else if (groupId == "[orbiterror]") + filterModel->setSecondaryFilters(QString(), SatError); + else + { + filterModel->setSecondaryFilters(groupId, SatNoFlags); + } + + if (ui->satellitesList->model()->rowCount() <= 0) + return; + QItemSelectionModel* selectionModel = ui->satellitesList->selectionModel(); - QModelIndexList selectedIndexes = selectionModel->selectedRows(); - QVariantList prevMultiSelection; - foreach (const QModelIndex& index, selectedIndexes) + QModelIndex first; + if (selectionModel->hasSelection()) { - prevMultiSelection << index.data(Qt::UserRole); + first = selectionModel->selectedRows().first(); } + else + { + // Scroll to the top + first = ui->satellitesList->model()->index(0, 0); + } + selectionModel->setCurrentIndex(first, QItemSelectionModel::NoUpdate); + ui->satellitesList->scrollTo(first); +} - satellitesModel->clear(); +void SatellitesDialog::updateSatelliteData() +{ + // NOTE: This was probably going to be used for editing satellites? + satelliteModified = false; + + QModelIndexList selection = ui->satellitesList->selectionModel()->selectedIndexes(); + if (selection.isEmpty()) + return; // TODO: Clear the fields? + + enableSatelliteDataForm(false); - QHash satellites; - Satellites* plugin = GETSTELMODULE(Satellites); - QString selectedGroup = ui->groupsCombo->itemData(index).toString(); - if (selectedGroup == "all") - satellites = plugin->getSatellites(); - else if (selectedGroup == "visible") - satellites = plugin->getSatellites(QString(), Satellites::Visible); - else if (selectedGroup == "notvisible") - satellites = plugin->getSatellites(QString(), Satellites::NotVisible); - else if (selectedGroup == "newlyadded") - satellites = plugin->getSatellites(QString(), Satellites::NewlyAdded); - else if (selectedGroup == "orbiterror") - satellites = plugin->getSatellites(QString(), Satellites::OrbitError); + if (selection.count() > 1) + { + ui->nameEdit->clear(); + ui->noradNumberEdit->clear(); + ui->descriptionTextEdit->clear(); + ui->tleFirstLineEdit->clear(); + ui->tleSecondLineEdit->clear(); + } else - satellites = plugin->getSatellites(ui->groupsCombo->currentText()); + { + QModelIndex& index = selection.first(); + ui->nameEdit->setText(index.data(Qt::DisplayRole).toString()); + ui->noradNumberEdit->setText(index.data(Qt::UserRole).toString()); + // NOTE: Description is deliberately displayed untranslated! + ui->descriptionTextEdit->setText(index.data(SatDescriptionRole).toString()); + ui->tleFirstLineEdit->setText(index.data(FirstLineRole).toString()); + ui->tleFirstLineEdit->setCursorPosition(0); + ui->tleSecondLineEdit->setText(index.data(SecondLineRole).toString()); + ui->tleSecondLineEdit->setCursorPosition(0); + } + + // TODO: Fix the comms button... +// ui->commsButton->setEnabled(sat->comms.count()>0); - //satellitesModel->->setSortingEnabled(false); - QHashIterator i(satellites); - while (i.hasNext()) - { - i.next(); - QStandardItem* item = new QStandardItem(i.value()); - item->setData(i.key(), Qt::UserRole); - item->setEditable(false); - satellitesModel->appendRow(item); + // Things that are cumulative in a multi-selection + GroupSet globalGroups = GETSTELMODULE(Satellites)->getGroups(); + GroupSet groupsUsedBySome; + GroupSet groupsUsedByAll = globalGroups; + ui->displayedCheckbox->setChecked(false); + ui->orbitCheckbox->setChecked(false); + ui->userCheckBox->setChecked(false); + + for (int i = 0; i < selection.size(); i++) + { + const QModelIndex& index = selection.at(i); - // If a previously selected item is still in the list after the update, select it - if (prevMultiSelection.contains(i.key())) + // "Displayed" checkbox + SatFlags flags = index.data(SatFlagsRole).value(); + if (flags.testFlag(SatDisplayed)) { - QModelIndex index = filterProxyModel->mapFromSource(item->index()); - //QModelIndex index = item->index(); - selectionModel->select(index, QItemSelectionModel::SelectCurrent); + if (!ui->displayedCheckbox->isChecked()) + { + if (i == 0) + ui->displayedCheckbox->setChecked(true); + else + ui->displayedCheckbox->setCheckState(Qt::PartiallyChecked); + } } - } - // Sort the main list (don't sort the filter model directly, - // or the displayed list will be scrambled on emptying the filter). - satellitesModel->sort(0); - - if (selectionModel->hasSelection()) - { - //TODO: This is stupid... - for (int row = 0; row < ui->satellitesList->model()->rowCount(); row++) + else + if (ui->displayedCheckbox->isChecked()) + ui->displayedCheckbox->setCheckState(Qt::PartiallyChecked); + + // "Orbit" box + if (flags.testFlag(SatOrbit)) { - QModelIndex index = ui->satellitesList->model()->index(row, 0); - if (selectionModel->isSelected(index)) + if (!ui->orbitCheckbox->isChecked()) { - ui->satellitesList->scrollTo(index, QAbstractItemView::PositionAtTop); - break; + if (i == 0) + ui->orbitCheckbox->setChecked(true); + else + ui->orbitCheckbox->setCheckState(Qt::PartiallyChecked); } } + else + if (ui->orbitCheckbox->isChecked()) + ui->orbitCheckbox->setCheckState(Qt::PartiallyChecked); + + // User ("do not update") box + if (flags.testFlag(SatUser)) + { + if (!ui->userCheckBox->isChecked()) + { + if (i == 0) + ui->userCheckBox->setChecked(true); + else + ui->userCheckBox->setCheckState(Qt::PartiallyChecked); + } + } + else + if (ui->userCheckBox->isChecked()) + ui->userCheckBox->setCheckState(Qt::PartiallyChecked); + + + // Accumulating groups + GroupSet groups = index.data(SatGroupsRole).value(); + groupsUsedBySome.unite(groups); + groupsUsedByAll.intersect(groups); } - else if (ui->satellitesList->model()->rowCount() > 0) - { - // If there are any items in the listbox, scroll to the top - QModelIndex index = ui->satellitesList->model()->index(0, 0); - selectionModel->setCurrentIndex(index, QItemSelectionModel::NoUpdate); - ui->satellitesList->scrollTo(index, QAbstractItemView::PositionAtTop); - } -} - -void SatellitesDialog::reloadSatellitesList() -{ - listSatelliteGroup(ui->groupsCombo->currentIndex()); -} - -void SatellitesDialog::updateSelectedInfo(const QModelIndex& curItem, - const QModelIndex& prevItem) -{ - Q_UNUSED(prevItem); - if (!curItem.isValid()) - return; - QString id = curItem.data(Qt::UserRole).toString(); - if (id.isEmpty()) - return; - - satelliteModified = false; - - SatelliteP sat = GETSTELMODULE(Satellites)->getByID(id); - if (sat.isNull()) - return; - - if (!sat->initialized) - return; - - disconnectSatelliteGuiForm(); - ui->idLineEdit->setText(sat->name); - ui->lineEditCatalogNumber->setText(sat->id); - ui->descriptionTextEdit->setText(sat->description); - ui->groupsTextEdit->setText(sat->groupIDs.join(", ")); - QString tleStr = QString("%1\n%2").arg(sat->tleElements.first.data()).arg(sat->tleElements.second.data()); - ui->tleTextEdit->setText(tleStr); - ui->visibleCheckbox->setChecked(sat->visible); - ui->orbitCheckbox->setChecked(sat->orbitVisible); - ui->commsButton->setEnabled(sat->comms.count()>0); - connectSatelliteGuiForm(); + // Repopulate the group selector + // Nice list of checkable, translated groups that allows adding new groups + ui->groupsListWidget->blockSignals(true); + ui->groupsListWidget->clear(); + foreach (const QString& group, globalGroups) + { + QListWidgetItem* item = new QListWidgetItem(q_(group), + ui->groupsListWidget); + item->setData(Qt::UserRole, group); + Qt::CheckState state = Qt::Unchecked; + if (groupsUsedByAll.contains(group)) + state = Qt::Checked; + else if (groupsUsedBySome.contains(group)) + state = Qt::PartiallyChecked; + item->setData(Qt::CheckStateRole, state); + } + ui->groupsListWidget->sortItems(); + addSpecialGroupItem(); // Add the "Add new..." line + ui->groupsListWidget->blockSignals(false); + + enableSatelliteDataForm(true); } void SatellitesDialog::saveSatellites(void) { - GETSTELMODULE(Satellites)->saveTleData(); + GETSTELMODULE(Satellites)->saveCatalog(); } -void SatellitesDialog::setAboutHtml(void) +void SatellitesDialog::populateAboutPage() { QString jsonFileName("satellites.json"); QString oldJsonFileName("satellites.json.old"); QString html = ""; html += "

    " + q_("Stellarium Satellites Plugin") + "

    "; html += ""; - html += ""; - html += "
    " + q_("Version") + "" + SATELLITES_PLUGIN_VERSION + "
    " + q_("Authors") + "Matthew Gates <matthewg42@gmail.com>
    Jose Luis Canales <jlcanales.gasco@gmail.com>
    "; + html += "" + q_("Authors") + "Matthew Gates <matthewg42@gmail.com>"; + html += "Jose Luis Canales <jlcanales.gasco@gmail.com>"; + html += "Bogdan Marinov <bogdan.marinov84@gmail.com>"; html += "

    " + q_("The Satellites plugin predicts the positions of artificial satellites in Earth orbit.") + "

    "; @@ -339,46 +431,34 @@ ui->aboutTextBrowser->setHtml(html); } -void SatellitesDialog::refreshUpdateValues(void) +void SatellitesDialog::jumpToSourcesTab() { - ui->lastUpdateDateTimeEdit->setDateTime(GETSTELMODULE(Satellites)->getLastUpdate()); - ui->updateFrequencySpinBox->setValue(GETSTELMODULE(Satellites)->getUpdateFrequencyHours()); - int secondsToUpdate = GETSTELMODULE(Satellites)->getSecondsToUpdate(); - ui->internetUpdatesCheckbox->setChecked(GETSTELMODULE(Satellites)->getUpdatesEnabled()); - if (!GETSTELMODULE(Satellites)->getUpdatesEnabled()) - ui->nextUpdateLabel->setText(q_("Internet updates disabled")); - else if (GETSTELMODULE(Satellites)->getUpdateState() == Satellites::Updating) - ui->nextUpdateLabel->setText(q_("Updating now...")); - else if (secondsToUpdate <= 60) - ui->nextUpdateLabel->setText(q_("Next update: < 1 minute")); - else if (secondsToUpdate < 3600) - ui->nextUpdateLabel->setText(QString(q_("Next update: %1 minutes")).arg((secondsToUpdate/60)+1)); - else - ui->nextUpdateLabel->setText(QString(q_("Next update: %1 hours")).arg((secondsToUpdate/3600)+1)); + ui->tabs->setCurrentWidget(ui->sourcesTab); } -void SatellitesDialog::setUpdateValues(int hours) +void SatellitesDialog::updateCountdown() { - GETSTELMODULE(Satellites)->setUpdateFrequencyHours(hours); - refreshUpdateValues(); -} - -void SatellitesDialog::setUpdatesEnabled(int checkState) -{ - bool b = checkState != Qt::Unchecked; - GETSTELMODULE(Satellites)->setUpdatesEnabled(b); - ui->updateFrequencySpinBox->setEnabled(b); - if(b) - ui->updateButton->setText(q_("Update now")); + Satellites* plugin = GETSTELMODULE(Satellites); + bool updatesEnabled = plugin->getUpdatesEnabled(); + + if (!updatesEnabled) + ui->nextUpdateLabel->setText(q_("Internet updates disabled")); + else if (plugin->getUpdateState() == Satellites::Updating) + ui->nextUpdateLabel->setText(q_("Updating now...")); else - ui->updateButton->setText(q_("Update from files")); - - refreshUpdateValues(); + { + int secondsToUpdate = plugin->getSecondsToUpdate(); + if (secondsToUpdate <= 60) + ui->nextUpdateLabel->setText(q_("Next update: < 1 minute")); + else if (secondsToUpdate < 3600) + ui->nextUpdateLabel->setText(QString(q_("Next update: %1 minutes")).arg((secondsToUpdate/60)+1)); + else + ui->nextUpdateLabel->setText(QString(q_("Next update: %1 hours")).arg((secondsToUpdate/3600)+1)); + } } -void SatellitesDialog::updateStateReceiver(Satellites::UpdateState state) +void SatellitesDialog::showUpdateState(Satellites::UpdateState state) { - //qDebug() << "SatellitesDialog::updateStateReceiver got a signal"; if (state==Satellites::Updating) ui->nextUpdateLabel->setText(q_("Updating now...")); else if (state==Satellites::DownloadError || state==Satellites::OtherError) @@ -388,17 +468,26 @@ } } -void SatellitesDialog::updateCompleteReceiver(int numUpdated, int total, int missing) +void SatellitesDialog::showUpdateCompleted(int updated, + int total, + int added, + int missing) { - ui->nextUpdateLabel->setText(QString(q_("Updated %1/%2 satellite(s); %3 missing")).arg(numUpdated).arg(total).arg(missing)); + Satellites* plugin = GETSTELMODULE(Satellites); + QString message; + if (plugin->isAutoRemoveEnabled()) + message = q_("Updated %1/%2 satellite(s); %3 added; %4 removed"); + else + message = q_("Updated %1/%2 satellite(s); %3 added; %4 missing"); + ui->nextUpdateLabel->setText(message.arg(updated).arg(total).arg(added).arg(missing)); // display the status for another full interval before refreshing status updateTimer->start(); - ui->lastUpdateDateTimeEdit->setDateTime(GETSTELMODULE(Satellites)->getLastUpdate()); - QTimer *timer = new QTimer(this); - connect(timer, SIGNAL(timeout()), this, SLOT(refreshUpdateValues())); + ui->lastUpdateDateTimeEdit->setDateTime(plugin->getLastUpdate()); + QTimer *timer = new QTimer(this); // FIXME: What's the point of this? --BM + connect(timer, SIGNAL(timeout()), this, SLOT(updateCountdown())); } -void SatellitesDialog::sourceEditingDone(void) +void SatellitesDialog::saveEditedSource() { // don't update the currently selected item in the source list if the text is empty or not a valid URL. QString u = ui->sourceEdit->text(); @@ -414,15 +503,16 @@ return; } + // Changes to item data (text or check state) are connected to + // saveSourceList(), so there's no need to call it explicitly. if (ui->sourceList->currentItem()!=NULL) ui->sourceList->currentItem()->setText(u); else if (ui->sourceList->findItems(u, Qt::MatchExactly).count() <= 0) { - QListWidgetItem* i = new QListWidgetItem(u, ui->sourceList); + QListWidgetItem* i = new QListWidgetItem(u, ui->sourceList);; + i->setData(checkStateRole, Qt::Unchecked); i->setSelected(true); } - - saveSourceList(); } void SatellitesDialog::saveSourceList(void) @@ -430,7 +520,10 @@ QStringList allSources; for(int i=0; isourceList->count(); i++) { - allSources << ui->sourceList->item(i)->text(); + QString url = ui->sourceList->item(i)->text(); + if (ui->sourceList->item(i)->data(checkStateRole) == Qt::Checked) + url.prepend("1,"); + allSources << url; } GETSTELMODULE(Satellites)->setTleSources(allSources); } @@ -452,51 +545,189 @@ ui->sourceEdit->setFocus(); } +void SatellitesDialog::toggleCheckableSources() +{ + QListWidget* list = ui->sourceList; + if (list->count() < 1) + return; // Saves effort checking it on every step + + bool enabled = ui->checkBoxAutoAdd->isChecked(); // proxy :) + if (!enabled == list->item(0)->data(Qt::CheckStateRole).isNull()) + return; // Nothing to do + + ui->sourceList->blockSignals(true); // Prevents saving the list... + for (int row = 0; row < list->count(); row++) + { + QListWidgetItem* item = list->item(row); + if (enabled) + { + item->setData(Qt::CheckStateRole, item->data(Qt::UserRole)); + } + else + { + item->setData(Qt::UserRole, item->data(Qt::CheckStateRole)); + item->setData(Qt::CheckStateRole, QVariant()); + } + } + ui->sourceList->blockSignals(false); + + checkStateRole = enabled ? Qt::CheckStateRole : Qt::UserRole; +} + void SatellitesDialog::restoreDefaults(void) { qDebug() << "Satellites::restoreDefaults"; GETSTELMODULE(Satellites)->restoreDefaults(); - GETSTELMODULE(Satellites)->readSettingsFromConfig(); - updateGuiFromSettings(); + GETSTELMODULE(Satellites)->loadSettings(); + updateSettingsPage(); + populateFilterMenu(); + populateSourcesList(); } -void SatellitesDialog::updateGuiFromSettings(void) +void SatellitesDialog::updateSettingsPage() { - ui->internetUpdatesCheckbox->setChecked(GETSTELMODULE(Satellites)->getUpdatesEnabled()); - refreshUpdateValues(); - - ui->labelsGroup->setChecked(GETSTELMODULE(Satellites)->getFlagLabels()); - ui->fontSizeSpinBox->setValue(GETSTELMODULE(Satellites)->getLabelFontSize()); + Satellites* plugin = GETSTELMODULE(Satellites); + + // Update stuff + bool updatesEnabled = plugin->getUpdatesEnabled(); + ui->internetUpdatesCheckbox->setChecked(updatesEnabled); + if(updatesEnabled) + ui->updateButton->setText(q_("Update now")); + else + ui->updateButton->setText(q_("Update from files")); + ui->checkBoxAutoAdd->setChecked(plugin->isAutoAddEnabled()); + ui->checkBoxAutoRemove->setChecked(plugin->isAutoRemoveEnabled()); + ui->lastUpdateDateTimeEdit->setDateTime(plugin->getLastUpdate()); + ui->updateFrequencySpinBox->setValue(plugin->getUpdateFrequencyHours()); + + updateCountdown(); + + // Presentation stuff + ui->labelsGroup->setChecked(plugin->getFlagLabels()); + ui->fontSizeSpinBox->setValue(plugin->getLabelFontSize()); - ui->orbitLinesGroup->setChecked(GETSTELMODULE(Satellites)->getOrbitLinesFlag()); + ui->orbitLinesGroup->setChecked(plugin->getOrbitLinesFlag()); ui->orbitSegmentsSpin->setValue(Satellite::orbitLineSegments); ui->orbitFadeSpin->setValue(Satellite::orbitLineFadeSegments); ui->orbitDurationSpin->setValue(Satellite::orbitLineSegmentDuration); +} - populateGroupsList(); - ui->satellitesList->clearSelection(); - ui->groupsCombo->setCurrentIndex(0); +void SatellitesDialog::populateFilterMenu() +{ + // Save current selection, if any... + QString selectedId; + int index = ui->groupFilterCombo->currentIndex(); + if (ui->groupFilterCombo->count() > 0 && index >= 0) + { + selectedId = ui->groupFilterCombo->itemData(index).toString(); + } + + // Prevent the list from re-filtering + ui->groupFilterCombo->blockSignals(true); + + // Populate with group names/IDs + ui->groupFilterCombo->clear(); + foreach (const QString& group, GETSTELMODULE(Satellites)->getGroupIdList()) + { + ui->groupFilterCombo->addItem(q_(group), group); + } + ui->groupFilterCombo->model()->sort(0); + + // Add special groups - their IDs deliberately use JSON-incompatible chars. + ui->groupFilterCombo->insertItem(0, q_("[orbit calculation error]"), QVariant("[orbiterror]")); + ui->groupFilterCombo->insertItem(0, q_("[all newly added]"), QVariant("[newlyadded]")); + ui->groupFilterCombo->insertItem(0, q_("[all not displayed]"), QVariant("[undisplayed]")); + ui->groupFilterCombo->insertItem(0, q_("[all displayed]"), QVariant("[displayed]")); + ui->groupFilterCombo->insertItem(0, q_("[all]"), QVariant("all")); + + // Restore current selection + index = 0; + if (!selectedId.isEmpty()) + { + index = ui->groupFilterCombo->findData(selectedId); + if (index < 0) + index = 0; + } + ui->groupFilterCombo->setCurrentIndex(index); + ui->groupFilterCombo->blockSignals(false); +} +void SatellitesDialog::populateSourcesList() +{ + ui->sourceList->blockSignals(true); ui->sourceList->clear(); - ui->sourceList->addItems(GETSTELMODULE(Satellites)->getTleSources()); + + Satellites* plugin = GETSTELMODULE(Satellites); + QStringList urls = plugin->getTleSources(); + checkStateRole = plugin->isAutoAddEnabled() ? Qt::CheckStateRole + : Qt::UserRole; + foreach (QString url, urls) + { + bool checked = false; + if (url.startsWith("1,")) + { + checked = true; + url.remove(0, 2); + } + else if (url.startsWith("0,")) + url.remove(0, 2); + QListWidgetItem* item = new QListWidgetItem(url, ui->sourceList); + item->setData(checkStateRole, checked ? Qt::Checked : Qt::Unchecked); + } + ui->sourceList->blockSignals(false); + if (ui->sourceList->count() > 0) ui->sourceList->setCurrentRow(0); } -void SatellitesDialog::populateGroupsList() +void SatellitesDialog::addSpecialGroupItem() +{ + if (ui->groupsListWidget->count() == 0) + return; + + // TRANSLATORS: Displayed in the satellite group selection box. + QListWidgetItem* item = new QListWidgetItem(q_("New group...")); + item->setFlags(Qt::ItemIsEnabled|Qt::ItemIsEditable|Qt::ItemIsSelectable); + QFont font = ui->groupsListWidget->item(0)->font(); + font.setItalic(true); + item->setFont(font); + ui->groupsListWidget->insertItem(0, item); +} + +void SatellitesDialog::setGroups() { - ui->groupsCombo->clear(); - ui->groupsCombo->addItems(GETSTELMODULE(Satellites)->getGroups()); - ui->groupsCombo->insertItem(0, q_("[orbit calculation error]"), QVariant("orbiterror")); - ui->groupsCombo->insertItem(0, q_("[all newly added]"), QVariant("newlyadded")); - ui->groupsCombo->insertItem(0, q_("[all not displayed]"), QVariant("notvisible")); - ui->groupsCombo->insertItem(0, q_("[all displayed]"), QVariant("visible")); - ui->groupsCombo->insertItem(0, q_("[all]"), QVariant("all")); + QModelIndexList selection = ui->satellitesList->selectionModel()->selectedIndexes(); + if (selection.isEmpty()) + return; + + // Let's determine what to add or remove + // (partially checked groups are not modified) + GroupSet groupsToAdd; + GroupSet groupsToRemove; + for (int row = 0; row < ui->groupsListWidget->count(); row++) + { + QListWidgetItem* item = ui->groupsListWidget->item(row); + if (item->flags().testFlag(Qt::ItemIsEditable)) + continue; + if (item->checkState() == Qt::Checked) + groupsToAdd.insert(item->data(Qt::UserRole).toString()); + else if (item->checkState() == Qt::Unchecked) + groupsToRemove.insert(item->data(Qt::UserRole).toString()); + } + for (int i = 0; i < selection.count(); i++) + { + const QModelIndex& index = selection.at(i); + GroupSet groups = index.data(SatGroupsRole).value(); + groups.subtract(groupsToRemove); + groups.unite(groupsToAdd); + QVariant newGroups = QVariant::fromValue(groups); + ui->satellitesList->model()->setData(index, newGroups, SatGroupsRole); + } } void SatellitesDialog::saveSettings(void) { - GETSTELMODULE(Satellites)->saveSettingsToConfig(); - GETSTELMODULE(Satellites)->saveTleData(); + GETSTELMODULE(Satellites)->saveSettings(); + GETSTELMODULE(Satellites)->saveCatalog(); } void SatellitesDialog::addSatellites(const TleDataList& newSatellites) @@ -505,11 +736,12 @@ saveSatellites(); // Trigger re-loading the list to display the new satellites - int index = ui->groupsCombo->findData(QVariant("newlyadded")); - if (ui->groupsCombo->currentIndex() == index) - listSatelliteGroup(index); + int index = ui->groupFilterCombo->findData(QVariant("[newlyadded]")); + // TODO: Unnecessary once the model can handle changes? --BM + if (ui->groupFilterCombo->currentIndex() == index) + filterListByGroup(index); else - ui->groupsCombo->setCurrentIndex(index); //Triggers the same operation + ui->groupFilterCombo->setCurrentIndex(index); //Triggers the same operation // Select the satellites that were added just now QItemSelectionModel* selectionModel = ui->satellitesList->selectionModel(); @@ -548,45 +780,73 @@ if (!idList.isEmpty()) { GETSTELMODULE(Satellites)->remove(idList); - reloadSatellitesList(); saveSatellites(); } } -void SatellitesDialog::setDisplayFlag(bool display) +void SatellitesDialog::setFlags() { QItemSelectionModel* selectionModel = ui->satellitesList->selectionModel(); - QModelIndexList selectedIndexes = selectionModel->selectedRows(); - foreach (const QModelIndex& index, selectedIndexes) + QModelIndexList selection = selectionModel->selectedIndexes(); + for (int row = 0; row < selection.count(); row++) { - QString id = index.data(Qt::UserRole).toString(); - SatelliteP sat = GETSTELMODULE(Satellites)->getByID(id); - if (sat) - sat->visible = display; + const QModelIndex& index = selection.at(row); + SatFlags flags = index.data(SatFlagsRole).value(); + + // If a checkbox is partially checked, the respective flag is not + // changed. + if (ui->displayedCheckbox->isChecked()) + flags |= SatDisplayed; + else if (ui->displayedCheckbox->checkState() == Qt::Unchecked) + flags &= ~SatDisplayed; + + if (ui->orbitCheckbox->isChecked()) + flags |= SatOrbit; + else if (ui->orbitCheckbox->checkState() == Qt::Unchecked) + flags &= ~SatOrbit; + + if (ui->userCheckBox->isChecked()) + flags |= SatUser; + else if (ui->userCheckBox->checkState() == Qt::Unchecked) + flags &= ~SatUser; + + QVariant value = QVariant::fromValue(flags); + ui->satellitesList->model()->setData(index, value, SatFlagsRole); } - reloadSatellitesList(); } -void SatellitesDialog::setOrbitFlag(bool display) +void SatellitesDialog::handleGroupChanges(QListWidgetItem* item) { - QItemSelectionModel* selectionModel = ui->satellitesList->selectionModel(); - QModelIndexList selectedIndexes = selectionModel->selectedRows(); - foreach (const QModelIndex& index, selectedIndexes) - { - QString id = index.data(Qt::UserRole).toString(); - SatelliteP sat = GETSTELMODULE(Satellites)->getByID(id); - if (sat) - sat->orbitVisible = display; + ui->groupsListWidget->blockSignals(true); + Qt::ItemFlags flags = item->flags(); + if (flags.testFlag(Qt::ItemIsEditable)) + { + // Harmonize the item with the rest... + flags ^= Qt::ItemIsEditable; + item->setFlags(flags | Qt::ItemIsUserCheckable | Qt::ItemIsTristate); + item->setCheckState(Qt::Checked); + QString groupId = item->text().trimmed(); + item->setData(Qt::UserRole, groupId); + QFont font = item->font(); + font.setItalic(false); + item->setFont(font); + + // ...and add a new one in its place. + addSpecialGroupItem(); + + GETSTELMODULE(Satellites)->addGroup(groupId); + populateFilterMenu(); } - reloadSatellitesList(); + ui->groupsListWidget->blockSignals(false); + setGroups(); } -void SatellitesDialog::handleDoubleClick(const QModelIndex& index) +void SatellitesDialog::trackSatellite(const QModelIndex& index) { Satellites* SatellitesMgr = GETSTELMODULE(Satellites); Q_ASSERT(SatellitesMgr); QString id = index.data(Qt::UserRole).toString(); - SatelliteP sat = SatellitesMgr->getByID(id); + SatelliteP sat = SatellitesMgr->getById(id); if (sat.isNull()) return; @@ -594,7 +854,7 @@ return; // Turn on Satellite rendering if it is not already on - sat->visible = true; + sat->displayed = true; // If Satellites are not currently displayed, make them visible. if (!SatellitesMgr->getFlagHints()) @@ -626,7 +886,7 @@ { if(GETSTELMODULE(Satellites)->getUpdatesEnabled()) { - GETSTELMODULE(Satellites)->updateTLEs(); + GETSTELMODULE(Satellites)->updateFromOnlineSources(); } else { @@ -638,16 +898,10 @@ } } -void SatellitesDialog::connectSatelliteGuiForm(void) -{ - // make sure we don't connect more than once - disconnectSatelliteGuiForm(); - connect(ui->visibleCheckbox, SIGNAL(clicked(bool)), this, SLOT(setDisplayFlag(bool))); - connect(ui->orbitCheckbox, SIGNAL(clicked(bool)), this, SLOT(setOrbitFlag(bool))); -} - -void SatellitesDialog::disconnectSatelliteGuiForm(void) +void SatellitesDialog::enableSatelliteDataForm(bool enabled) { - disconnect(ui->visibleCheckbox, SIGNAL(clicked(bool)), this, SLOT(setDisplayFlag(bool))); - disconnect(ui->orbitCheckbox, SIGNAL(clicked(bool)), this, SLOT(setOrbitFlag(bool))); + // NOTE: I'm still not sure if this is necessary, if the right signals are used to trigger changes...--BM + ui->displayedCheckbox->blockSignals(!enabled); + ui->orbitCheckbox->blockSignals(!enabled); + ui->userCheckBox->blockSignals(!enabled); } diff -Nru stellarium-0.12.1/plugins/Satellites/src/gui/SatellitesDialog.hpp stellarium-0.12.4/plugins/Satellites/src/gui/SatellitesDialog.hpp --- stellarium-0.12.1/plugins/Satellites/src/gui/SatellitesDialog.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/gui/SatellitesDialog.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -27,12 +27,17 @@ #include "Satellites.hpp" class Ui_satellitesDialog; +class QCheckBox; class QListWidgetItem; class QSortFilterProxyModel; class QStandardItemModel; class QTimer; + class SatellitesImportDialog; +class SatellitesListFilterModel; +//! Main configuration window of the %Satellites plugin. +//! @todo Save sources list on check/uncheck. class SatellitesDialog : public StelDialog { Q_OBJECT @@ -47,50 +52,80 @@ public slots: void retranslate(); - void refreshUpdateValues(void); private slots: - //! Populates the satellites list, filtering it according to group. + void jumpToSourcesTab(); + //! Update the countdown to the next update. + void updateCountdown(); + //! Filter the satellites list according to the selected (pseudo)group. //! @param index selection index of the groups drop-down list. - //! @todo Rework to use a proper model and filtering via a proxy model? - void listSatelliteGroup(int index); - //! Populates the satellites list with the currently selected group. - void reloadSatellitesList(); - void updateSelectedInfo(const QModelIndex& cur, const QModelIndex& prev); + void filterListByGroup(int index); + //! Populate the satellite data fields from the selected satellite(s). + //! @note The previous version used data only from the @em current item + //! in the list, not the whole selection. (Qt makes a difference between + //! "@em the current" and "@em a selected" item - a selection can contain + //! multiple items.) + void updateSatelliteData(); void saveSatellites(void); - void setUpdateValues(int hours); - void setUpdatesEnabled(int checkState); - void updateStateReceiver(Satellites::UpdateState state); - void updateCompleteReceiver(int numUpdated, int total, int missing); - void sourceEditingDone(void); + void showUpdateState(Satellites::UpdateState state); + void showUpdateCompleted(int updated, int total, int added, int missing); + + //! @name Sources Tab + //@{ + void saveEditedSource(); void saveSourceList(void); void deleteSourceRow(void); void addSourceRow(void); + //! Toggle between modes in the Sources list. + //! If automatic adding is enabled, items in the list become checkable. + void toggleCheckableSources(); + //@} + void restoreDefaults(void); void saveSettings(void); void addSatellites(const TleDataList& newSatellites); void removeSatellites(); - void setDisplayFlag(bool display); - void setOrbitFlag(bool display); - void handleDoubleClick(const QModelIndex & index); + //! Apply the "Displayed" and "Orbit" boxes to the selected satellite(s). + void setFlags(); + //! Find out if a group is added or toggled in the group selector. + void handleGroupChanges(QListWidgetItem* item); + //! Display, select and start tracking the double clicked satellite. + void trackSatellite(const QModelIndex & index); void setOrbitParams(void); void updateTLEs(void); private: - void connectSatelliteGuiForm(void); - void disconnectSatelliteGuiForm(void); - + //! @todo find out if this is really necessary... --BM + void enableSatelliteDataForm(bool enabled); + void populateAboutPage(); + //! Update the Settings tab with values from the plug-in. + //! Calls updateCountdown(). Connected to Satellites::settingsChanged(). + void updateSettingsPage(); + //! Populates the satellite groups filtering menu on the %Satellites tab. + //! Preserves the current item, if it's still in the new list. + void populateFilterMenu(); + //! Populates the list of sources on the Sources tab. + void populateSourcesList(); + //! Add the special "New group..." editable item to the group selector. + //! Unlike the other items, which can only be checked/unchecked, this one + //! can be edited. Saving the edit will add a new group with the specified + //! name. + //! Called by updateSatelliteData() and handleGroupChanges(). + void addSpecialGroupItem(); + //! Applies the changes in the group selector to the selected satellites. + void setGroups(); + Ui_satellitesDialog* ui; bool satelliteModified; - void setAboutHtml(void); - void updateGuiFromSettings(void); - void populateGroupsList(); + QTimer* updateTimer; SatellitesImportDialog* importWindow; - QStandardItemModel* satellitesModel; - QSortFilterProxyModel* filterProxyModel; + SatellitesListFilterModel* filterModel; + + //! Makes sure that newly added source lines are as checkable as the rest. + Qt::ItemDataRole checkStateRole; }; #endif // _SATELLITESDIALOG_HPP_ diff -Nru stellarium-0.12.1/plugins/Satellites/src/gui/SatellitesImportDialog.cpp stellarium-0.12.4/plugins/Satellites/src/gui/SatellitesImportDialog.cpp --- stellarium-0.12.1/plugins/Satellites/src/gui/SatellitesImportDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/gui/SatellitesImportDialog.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -33,6 +33,7 @@ #include #include #include +#include SatellitesImportDialog::SatellitesImportDialog() : downloadMgr(0), @@ -195,7 +196,7 @@ // Then, see if there was an error... if (networkReply->error() != QNetworkReply::NoError) { - qWarning() << "Satellites: failed to download" << url + qWarning() << "Satellites: failed to download " << url << networkReply->errorString(); return; } @@ -334,14 +335,14 @@ else { qDebug() << "Satellites: cannot open file" - << sourceFiles[f]->fileName(); + << QDir::toNativeSeparators(sourceFiles[f]->fileName()); } } // Clear the disk... qDeleteAll(sourceFiles); sourceFiles.clear(); - QStringList existingIDs = satMgr->getAllIDs(); + QStringList existingIDs = satMgr->listAllIds(); QHashIterator i(newSatellites); while (i.hasNext()) { diff -Nru stellarium-0.12.1/plugins/Satellites/src/gui/satellitesDialog.ui stellarium-0.12.4/plugins/Satellites/src/gui/satellitesDialog.ui --- stellarium-0.12.1/plugins/Satellites/src/gui/satellitesDialog.ui 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/src/gui/satellitesDialog.ui 2013-08-04 06:20:27.000000000 +0000 @@ -6,7 +6,7 @@ 0 0 - 528 + 530 494 @@ -139,96 +139,129 @@ - Update TLE lists from Internet sources + Updates - - true - - - false - - + 0 - + + + + [next update info] + + + Qt::AlignCenter + + + + + + + 1 + + + 9999 + + + 1 + + + + - Update from Internet sources + Update satellite data from Internet sources - - - - + + + + Last update: + + + + + + + Qt::Horizontal + + + + 17 + 20 + + + + + + + + false + + + false + + + QAbstractSpinBox::NoButtons + + + + + + + + + + 0 + 0 + + - Last update: + On update, add all new satellites from the selected source(s) - - + + false - - false - - - QAbstractSpinBox::NoButtons - - - - - - - Update frequency (hours): - - - - - - - 1 - - - 9999 - - - 1 - - - - - - - [next update info] - - - - - - - Qt::Horizontal - - - - 17 - 20 - - - - - - - Update now + ... + + + + + 0 + 0 + + + + Update now + + + + + + + On update, remove the satellites that are no longer listed in the update sources + + + + + + + Update frequency (hours): + + + @@ -247,14 +280,14 @@ 0 - + Label font size (pixels): - + @@ -436,46 +469,100 @@ - + + + Double-click a satellite to start tracking it. + QAbstractItemView::ExtendedSelection - + - + + + + 0 + 0 + + - Display the selected satellite(s) + Add more satellites - - Displayed + + + + + + + 0 + 0 + - + + Remove the selected satellites + + + + + + false + + + 0 + 0 + + + + + + + true + - + + + true + + + + 0 + 0 + + - Display orbit line(s) for the selected satellite(s) + Save changes - Orbit - - - false + + + + + Qt::Horizontal + + + + 40 + 20 + + + + @@ -489,10 +576,13 @@ Name: + + nameEdit + - + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -510,10 +600,13 @@ Catalog number: + + noradNumberEdit + - + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter @@ -525,6 +618,46 @@
    + + + + + Display the selected satellite(s) + + + Displayed + + + false + + + + + + + Display orbit line(s) for the selected satellite(s) + + + Orbit + + + false + + + + + + + Do not update (or remove on update) the selected satellite(s) + + + Do not update + + + + + + 0 @@ -538,11 +671,6 @@ - - - Bitstream Vera Sans - - true @@ -563,23 +691,11 @@ - - - - 0 - 20 - + + + QAbstractItemView::CurrentChanged|QAbstractItemView::SelectedClicked - - - Bitstream Vera Sans - 10 - - - - Comma separated list of groups - - + true @@ -592,121 +708,32 @@ 0 - + - TLE data: + TLE set: - - - - 0 - 20 - - - - - Bitstream Vera Sans Mono - 8 - - - - NORAD two line element orbit data - - - Qt::ScrollBarAlwaysOn - - - QTextEdit::NoWrap + + + false true - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - 0 - 0 - - - - Remove the selected satellites - - - - - - - - 0 - 0 - - - - Add more satellites - - - - - - + + false - - - 0 - 0 - - - - - - + true - - - - true - - - - 0 - 0 - - - - Save changes - - - - - - @@ -729,6 +756,16 @@ + + + Satellites in the marked source lists will be automatically added on the next update if they are not already in the collection. + + + true + + + + @@ -799,9 +836,12 @@ tabs internetUpdatesCheckbox + checkBoxAutoAdd + jumpToSourcesButton + checkBoxAutoRemove + updateButton lastUpdateDateTimeEdit updateFrequencySpinBox - updateButton labelsGroup fontSizeSpinBox orbitLinesGroup @@ -810,18 +850,20 @@ orbitFadeSpin restoreDefaultsButton saveSettingsButton - groupsCombo + groupFilterCombo lineEditSearch satellitesList - visibleCheckbox + nameEdit + noradNumberEdit + displayedCheckbox orbitCheckbox - idLineEdit - lineEditCatalogNumber + userCheckBox descriptionTextEdit - groupsTextEdit - tleTextEdit - removeSatellitesButton + groupsListWidget + tleFirstLineEdit + tleSecondLineEdit addSatellitesButton + removeSatellitesButton commsButton saveSatellitesButton sourceList @@ -831,5 +873,38 @@ aboutTextBrowser - + + + checkBoxAutoAdd + toggled(bool) + jumpToSourcesButton + setEnabled(bool) + + + 213 + 97 + + + 458 + 103 + + + + + checkBoxAutoAdd + toggled(bool) + labelAutoAdd + setVisible(bool) + + + 220 + 96 + + + 263 + 436 + + + + diff -Nru stellarium-0.12.1/plugins/Satellites/util/add_new_from_tle_file.pl stellarium-0.12.4/plugins/Satellites/util/add_new_from_tle_file.pl --- stellarium-0.12.1/plugins/Satellites/util/add_new_from_tle_file.pl 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/util/add_new_from_tle_file.pl 2013-08-04 06:20:27.000000000 +0000 @@ -5,6 +5,13 @@ # satellites.json, and if not, outputs appropriately formatted JSON entries. # The new satellites are added to the groups passed as parameters. +# SUGGESTION: Instead of striping the Celestrak status code (the char in [] +# sometimes added after the name), use it to set the "non-operation" group +# instead of arbitrarily adding it to all sats from certain sources +# (see download_tle_find_new.sh) +# Key from Celestrak.com: [+] = Operational, [-] = Nonoperational, +# for others see at the bottom of http://celestrak.com/NORAD/elements/master.asp + #my $groups = "\"scientific\", \"weather\", \"non-operational\""; map { s/^/"/; s/$/"/; } @ARGV; my $groups = join(", ", @ARGV); diff -Nru stellarium-0.12.1/plugins/Satellites/util/download_tle_find_new.sh stellarium-0.12.4/plugins/Satellites/util/download_tle_find_new.sh --- stellarium-0.12.1/plugins/Satellites/util/download_tle_find_new.sh 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Satellites/util/download_tle_find_new.sh 2013-08-04 06:20:27.000000000 +0000 @@ -8,10 +8,14 @@ # The other part of keeping satellites.json up to date - removing satellites # that no longer exist in the lists - you will have to do manually, too. +# TRANSLATION WARNING: Group names are translatable. The strings are marked for +# translation in Satellites::translations(), so if you change a group name here, +# you need to also change it in that function. + rm -f new.json GET "http://celestrak.com/NORAD/elements/goes.txt" | ./add_new_from_tle_file.pl scientific >> new.json -GET "http://celestrak.com/NORAD/elements/galileo.txt" | ./add_new_from_tle_file.pl experimental navigation >> new.json +GET "http://celestrak.com/NORAD/elements/galileo.txt" | ./add_new_from_tle_file.pl navigation >> new.json GET "http://celestrak.com/NORAD/elements/noaa.txt" | ./add_new_from_tle_file.pl scientific weather non-operational >> new.json GET "http://celestrak.com/NORAD/elements/gps-ops.txt" | ./add_new_from_tle_file.pl gps navigation >> new.json GET "http://celestrak.com/NORAD/elements/amateur.txt" | ./add_new_from_tle_file.pl amateur >> new.json diff -Nru stellarium-0.12.1/plugins/SimpleDrawLine/src/SimpleDrawLine.cpp stellarium-0.12.4/plugins/SimpleDrawLine/src/SimpleDrawLine.cpp --- stellarium-0.12.1/plugins/SimpleDrawLine/src/SimpleDrawLine.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/SimpleDrawLine/src/SimpleDrawLine.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "StelProjector.hpp" diff -Nru stellarium-0.12.1/plugins/SimpleDrawLine/src/SimpleDrawLine.hpp stellarium-0.12.4/plugins/SimpleDrawLine/src/SimpleDrawLine.hpp --- stellarium-0.12.1/plugins/SimpleDrawLine/src/SimpleDrawLine.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/SimpleDrawLine/src/SimpleDrawLine.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef SIMPLEDRAWLINE_HPP_ diff -Nru stellarium-0.12.1/plugins/SolarSystemEditor/CMakeLists.txt stellarium-0.12.4/plugins/SolarSystemEditor/CMakeLists.txt --- stellarium-0.12.1/plugins/SolarSystemEditor/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/SolarSystemEditor/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,7 +1,7 @@ SET(SOLARSYSTEMEDITOR_MAJOR "0") SET(SOLARSYSTEMEDITOR_MINOR "1") -SET(SOLARSYSTEMEDITOR_PATCH "2") +SET(SOLARSYSTEMEDITOR_PATCH "3") SET(SOLARSYSTEMEDITOR_VERSION "${SOLARSYSTEMEDITOR_MAJOR}.${SOLARSYSTEMEDITOR_MINOR}.${SOLARSYSTEMEDITOR_PATCH}") IF(APPLE) diff -Nru stellarium-0.12.1/plugins/SolarSystemEditor/src/SolarSystemEditor.cpp stellarium-0.12.4/plugins/SolarSystemEditor/src/SolarSystemEditor.cpp --- stellarium-0.12.1/plugins/SolarSystemEditor/src/SolarSystemEditor.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/SolarSystemEditor/src/SolarSystemEditor.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -95,7 +95,7 @@ else { //TODO: Better error message - qDebug() << "Something is horribly wrong:" << StelFileMgr::getInstallationDir(); + qDebug() << "Something is horribly wrong:" << QDir::toNativeSeparators(StelFileMgr::getInstallationDir()); return; } @@ -196,12 +196,12 @@ QDir userDataDirectory(StelFileMgr::getUserDir()); if (!userDataDirectory.exists()) { - qDebug() << "Unable to find user data directory:" << userDataDirectory.absolutePath(); + qDebug() << "Unable to find user data directory:" << QDir::toNativeSeparators(userDataDirectory.absolutePath()); return false; } if (!userDataDirectory.exists("data") && !userDataDirectory.mkdir("data")) { - qDebug() << "Unable to create a \"data\" subdirectory in" << userDataDirectory.absolutePath(); + qDebug() << "Unable to create a \"data\" subdirectory in" << QDir::toNativeSeparators(userDataDirectory.absolutePath()); return false; } @@ -213,7 +213,7 @@ if (QFile::exists(defaultSolarSystemFilePath)) { - qDebug() << "Trying to copy ssystem.ini to" << customSolarSystemFilePath; + qDebug() << "Trying to copy ssystem.ini to" << QDir::toNativeSeparators(customSolarSystemFilePath); return QFile::copy(defaultSolarSystemFilePath, customSolarSystemFilePath); } else @@ -229,7 +229,7 @@ { if (!QFile::remove((customSolarSystemFilePath))) { - qWarning() << "Unable to delete" << customSolarSystemFilePath + qWarning() << "Unable to delete" << QDir::toNativeSeparators(customSolarSystemFilePath) << endl << "Please remove the file manually."; return false; } @@ -280,7 +280,7 @@ QSettings settings(filePath, QSettings::IniFormat); if (settings.status() != QSettings::NoError) { - qWarning() << filePath << "is not a valid configuration file."; + qWarning() << QDir::toNativeSeparators(filePath) << "is not a valid configuration file."; return false; } @@ -370,7 +370,7 @@ //Make sure that the file exists if (!QFile::exists(customSolarSystemFilePath)) { - qDebug() << "Can't remove" << name << "to ssystem.ini: Unable to find" << customSolarSystemFilePath; + qDebug() << "Can't remove" << name << "to ssystem.ini: Unable to find" << QDir::toNativeSeparators(customSolarSystemFilePath); return false; } @@ -378,7 +378,7 @@ QSettings settings(customSolarSystemFilePath, QSettings::IniFormat); if (settings.status() != QSettings::NoError) { - qDebug() << "Error opening ssystem.ini:" << customSolarSystemFilePath; + qDebug() << "Error opening ssystem.ini:" << QDir::toNativeSeparators(customSolarSystemFilePath); return false; } @@ -986,7 +986,7 @@ if (!QFile::exists(filePath)) { - qDebug() << "Can't find" << filePath; + qDebug() << "Can't find" << QDir::toNativeSeparators(filePath); return objectList; } @@ -1026,7 +1026,7 @@ } else { - qDebug() << "Unable to open for reading" << filePath; + qDebug() << "Unable to open for reading" << QDir::toNativeSeparators(filePath); qDebug() << "File error:" << mpcElementsFile.errorString(); return objectList; } @@ -1040,7 +1040,7 @@ if (!QFile::exists(filePath)) { - qDebug() << "Can't find" << filePath; + qDebug() << "Can't find" << QDir::toNativeSeparators(filePath); return objectList; } @@ -1080,7 +1080,7 @@ } else { - qDebug() << "Unable to open for reading" << filePath; + qDebug() << "Unable to open for reading" << QDir::toNativeSeparators(filePath); qDebug() << "File error:" << mpcElementsFile.errorString(); return objectList; } @@ -1094,7 +1094,7 @@ if (!QFile::exists(filePath)) { - qDebug() << "Can't find" << filePath; + qDebug() << "Can't find" << QDir::toNativeSeparators(filePath); return objectList; } @@ -1139,7 +1139,7 @@ } else { - qDebug() << "Unable to open for reading" << filePath; + qDebug() << "Unable to open for reading" << QDir::toNativeSeparators(filePath); qDebug() << "File error:" << xEphemElementsFile.errorString(); return objectList; } @@ -1157,7 +1157,7 @@ //Check if the configuration file exists if (!QFile::exists(customSolarSystemFilePath)) { - qDebug() << "Can't append object data to ssystem.ini: Unable to find" << customSolarSystemFilePath; + qDebug() << "Can't append object data to ssystem.ini: Unable to find" << QDir::toNativeSeparators(customSolarSystemFilePath); return false; } @@ -1168,7 +1168,7 @@ QSettings * solarSystemSettings = new QSettings(customSolarSystemFilePath, QSettings::IniFormat); if (solarSystemSettings->status() != QSettings::NoError) { - qDebug() << "Error opening ssystem.ini:" << customSolarSystemFilePath; + qDebug() << "Error opening ssystem.ini:" << QDir::toNativeSeparators(customSolarSystemFilePath); return false; } foreach (SsoElements object, objectList) @@ -1234,7 +1234,7 @@ } else { - qDebug() << "Unable to open for writing" << customSolarSystemFilePath; + qDebug() << "Unable to open for writing" << QDir::toNativeSeparators(customSolarSystemFilePath); return false; } } @@ -1264,14 +1264,14 @@ //Check if the configuration file exists if (!QFile::exists(customSolarSystemFilePath)) { - qDebug() << "Can't update ssystem.ini: Unable to find" << customSolarSystemFilePath; + qDebug() << "Can't update ssystem.ini: Unable to find" << QDir::toNativeSeparators(customSolarSystemFilePath); return false; } QSettings solarSystem(customSolarSystemFilePath, QSettings::IniFormat); if (solarSystem.status() != QSettings::NoError) { - qDebug() << "Error opening ssystem.ini:" << customSolarSystemFilePath; + qDebug() << "Error opening ssystem.ini:" << QDir::toNativeSeparators(customSolarSystemFilePath); return false; } QStringList existingSections = solarSystem.childGroups(); diff -Nru stellarium-0.12.1/plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp stellarium-0.12.4/plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp --- stellarium-0.12.1/plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -45,6 +45,7 @@ #include #include #include +#include MpcImportWindow::MpcImportWindow() : downloadReply(0), @@ -970,9 +971,15 @@ //Initialize with hard-coded values bookmarks[MpcMinorPlanets].insert("MPC's list of bright minor planets at opposition in 2011", "http://www.minorplanetcenter.net/iau/Ephemerides/Bright/2011/Soft00Bright.txt"); + bookmarks[MpcMinorPlanets].insert("MPC's list of bright minor planets at opposition in 2013", "http://www.minorplanetcenter.net/iau/Ephemerides/Bright/2013/Soft00Bright.txt"); + bookmarks[MpcMinorPlanets].insert("MPC's list of observable distant minor planets", "http://www.minorplanetcenter.net/iau/Ephemerides/Distant/Soft00Distant.txt"); bookmarks[MpcMinorPlanets].insert("MPCORB: near-Earth asteroids (NEAs)", "http://www.minorplanetcenter.net/iau/MPCORB/NEA.txt"); bookmarks[MpcMinorPlanets].insert("MPCORB: potentially hazardous asteroids (PHAs)", "http://www.minorplanetcenter.net/iau/MPCORB/PHA.txt"); + bookmarks[MpcMinorPlanets].insert("MPCORB: TNOs, Centaurs and SDOs", "http://www.minorplanetcenter.net/iau/MPCORB/Distant.txt"); + bookmarks[MpcMinorPlanets].insert("MPCORB: other unusual objects", "http://www.minorplanetcenter.net/iau/MPCORB/Unusual.txt"); + bookmarks[MpcMinorPlanets].insert("MPCORB: orbits from the latest DOU MPEC", "http://www.minorplanetcenter.net/iau/MPCORB/DAILY.DAT"); bookmarks[MpcComets].insert("MPC's list of observable comets", "http://www.minorplanetcenter.net/iau/Ephemerides/Comets/Soft00Cmt.txt"); + bookmarks[MpcComets].insert("MPCORB: comets", "http://www.minorplanetcenter.net/iau/MPCORB/CometEls.txt"); //Try to save them to a file saveBookmarks(); @@ -1027,12 +1034,12 @@ StelJsonParser::write(jsonRoot, &bookmarksFile); bookmarksFile.close(); - qDebug() << "Bookmarks file saved to" << bookmarksFilePath; + qDebug() << "Bookmarks file saved to" << QDir::toNativeSeparators(bookmarksFilePath); return; } else { - qDebug() << "Unable to write bookmarks file to" << bookmarksFilePath; + qDebug() << "Unable to write bookmarks file to" << QDir::toNativeSeparators(bookmarksFilePath); } } catch (std::exception & e) diff -Nru stellarium-0.12.1/plugins/Supernovae/CMakeLists.txt stellarium-0.12.4/plugins/Supernovae/CMakeLists.txt --- stellarium-0.12.1/plugins/Supernovae/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Supernovae/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -1,6 +1,6 @@ SET(SNE_MAJOR "0") SET(SNE_MINOR "2") -SET(SNE_PATCH "12") +SET(SNE_PATCH "16") SET(SNE_VERSION "${SNE_MAJOR}.${SNE_MINOR}.${SNE_PATCH}") IF(APPLE) diff -Nru stellarium-0.12.1/plugins/Supernovae/Doxyfile stellarium-0.12.4/plugins/Supernovae/Doxyfile --- stellarium-0.12.1/plugins/Supernovae/Doxyfile 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/plugins/Supernovae/Doxyfile 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,1800 @@ +# Doxyfile 1.8.0 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" "). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or sequence of words) that should +# identify the project. Note that if you do not use Doxywizard you need +# to put quotes around the project name if it contains spaces. + +PROJECT_NAME = "Stellarium Historical Supernovae Plug-in" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer +# a quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is +# included in the documentation. The maximum height of the logo should not +# exceed 55 pixels and the maximum width should not exceed 200 pixels. +# Doxygen will copy the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful if your file system +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = YES + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding +# "class=itcl::class" will allow you to use the command class in the +# itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this +# tag. The format is ext=language, where ext is a file extension, and language +# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, +# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make +# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C +# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions +# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all +# comments according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you +# can mix doxygen, HTML, and XML commands with Markdown formatting. +# Disable only in case of backward compatibilities issues. + +MARKDOWN_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also makes the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and +# unions are shown inside the group in which they are included (e.g. using +# @ingroup) instead of on a separate page (for HTML and Man pages) or +# section (for LaTeX and RTF). + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and +# unions with only public data fields will be shown inline in the documentation +# of the scope in which they are defined (i.e. file, namespace, or group +# documentation), provided this scope is documented. If set to NO (the default), +# structs, classes, and unions are shown on a separate page (for HTML and Man +# pages) or section (for LaTeX and RTF). + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penalty. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will roughly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +SYMBOL_CACHE_SIZE = 0 + +# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be +# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given +# their name and scope. Since this can be an expensive process and often the +# same symbol appear multiple times in the code, doxygen keeps a cache of +# pre-resolved symbols. If the cache is too small doxygen will become slower. +# If the cache is too large, memory is wasted. The cache size is given by this +# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespaces are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen +# will list include files with double quotes in the documentation +# rather than with sharp brackets. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen +# will sort the (brief and detailed) documentation of class members so that +# constructors and destructors are listed first. If set to NO (the default) +# the constructors will appear in the respective orders defined by +# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to +# do proper type resolution of all parameters of a function it will reject a +# match between the prototype and the implementation of a member function even +# if there is only one candidate or it is obvious which candidate to choose +# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen +# will still accept a match between prototype and implementation in such cases. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or macro consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and macros in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. The create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. +# You can optionally specify a file name after the option, if omitted +# DoxygenLayout.xml will be used as the name of the layout file. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files +# containing the references data. This must be a list of .bib files. The +# .bib extension is automatically appended if omitted. Using this command +# requires the bibtex tool to be installed. See also +# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style +# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this +# feature you need bibtex and perl available in the search path. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# The WARN_NO_PARAMDOC option can be enabled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = ./src ./src/gui + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh +# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py +# *.f90 *.f *.for *.vhd *.vhdl + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty or if +# non of the patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) +# and it is also possible to disable source filtering for a specific pattern +# using *.ext= (so without naming a filter). This option only has effect when +# FILTER_SOURCE_FILES is enabled. + +FILTER_SOURCE_PATTERNS = + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. Note that when using a custom header you are responsible +# for the proper inclusion of any scripts and style sheets that doxygen +# needs, which is dependent on the configuration options used. +# It is advised to generate a default header using "doxygen -w html +# header.html footer.html stylesheet.css YourConfigFile" and then modify +# that header. Note that the header is subject to change so you typically +# have to redo this when upgrading to a newer version of doxygen or when +# changing the value of configuration settings such as GENERATE_TREEVIEW! + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# style sheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that +# the files will be copied as-is; there are no commands or markers available. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. +# Doxygen will adjust the colors in the style sheet and background images +# according to this color. Hue is specified as an angle on a colorwheel, +# see http://en.wikipedia.org/wiki/Hue for more information. +# For instance the value 0 represents red, 60 is yellow, 120 is green, +# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. +# The allowed range is 0 to 359. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of +# the colors in the HTML output. For a value of 0 the output will use +# grayscales only. A value of 255 will produce the most vivid colors. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to +# the luminance component of the colors in the HTML output. Values below +# 100 gradually make the output lighter, whereas values above 100 make +# the output darker. The value divided by 100 is the actual gamma applied, +# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, +# and 100 does not change the gamma. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting +# this to NO can help when comparing the output of multiple runs. + +HTML_TIMESTAMP = YES + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated +# that can be used as input for Qt's qhelpgenerator to generate a +# Qt Compressed Help (.qch) of the generated HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to +# add. For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see +# +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's +# filter section matches. +# +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files +# will be generated, which together with the HTML files, form an Eclipse help +# plugin. To install this plugin and make it available under the help contents +# menu in Eclipse, the contents of the directory containing the HTML and XML +# files needs to be copied into the plugins directory of eclipse. The name of +# the directory within the plugins directory should be the same as +# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before +# the help appears. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have +# this name. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) +# at top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. Since the tabs have the same information as the +# navigation tree you can set this option to NO if you already set +# GENERATE_TREEVIEW to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. +# Since the tree basically has the same information as the tab index you +# could consider to set DISABLE_INDEX to NO when enabling this option. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values +# (range [0,1..20]) that doxygen will group on one line in the generated HTML +# documentation. Note that a value of 0 will completely suppress the enum +# values from appearing in the overview section. + +ENUM_VALUES_PER_LINE = 4 + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open +# links to external symbols imported via tag files in a separate window. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are +# not supported properly for IE 6.0, but are supported on all modern browsers. +# Note that when changing this option you need to delete any form_*.png files +# in the HTML output before the changes have effect. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax +# (see http://www.mathjax.org) which uses client side Javascript for the +# rendering instead of using prerendered bitmaps. Use this if you do not +# have LaTeX installed or if you want to formulas look prettier in the HTML +# output. When enabled you may also need to install MathJax separately and +# configure the path to it using the MATHJAX_RELPATH option. + +USE_MATHJAX = NO + +# When MathJax is enabled you need to specify the location relative to the +# HTML output directory using the MATHJAX_RELPATH option. The destination +# directory should contain the MathJax.js script. For instance, if the mathjax +# directory is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to +# the MathJax Content Delivery Network so you can quickly see the result without +# installing MathJax. +# However, it is strongly recommended to install a local +# copy of MathJax from http://www.mathjax.org before deployment. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension +# names that should be enabled during MathJax rendering. + +MATHJAX_EXTENSIONS = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box +# for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using +# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets +# (GENERATE_DOCSET) there is already a search function so this one should +# typically be disabled. For large projects the javascript based search engine +# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a PHP enabled web server instead of at the web client +# using Javascript. Doxygen will generate the search PHP script and index +# file to put on the web server. The advantage of the server +# based approach is that it scales better to large projects and allows +# full text search. The disadvantages are that it is more difficult to setup +# and does not have live searching capabilities. + +SERVER_BASED_SEARCH = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. +# Note that when enabling USE_PDFLATEX this option is only used for +# generating bitmaps for formulas in the HTML output, but not in the +# Makefile that is written to the output directory. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for +# the generated latex document. The footer should contain everything after +# the last chapter. If it is left blank doxygen will generate a +# standard footer. Notice: only use this tag if you know what you are doing! + +LATEX_FOOTER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include +# source code with syntax highlighting in the LaTeX output. +# Note that which sources are shown also depends on other settings +# such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See +# http://en.wikipedia.org/wiki/BibTeX for more info. + +LATEX_BIB_STYLE = plain + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load style sheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# pointed to by INCLUDE_PATH will be searched when a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition that +# overrules the definition found in the source code. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all references to function-like macros +# that are alone on a line, have an all uppercase name, and do not end with a +# semicolon, because these will confuse the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. For each +# tag file the location of the external documentation should be added. The +# format of a tag file without this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths +# or URLs. Note that each tag file must have a unique name (where the name does +# NOT include the path). If a tag file is not located in the directory in which +# doxygen is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option also works with HAVE_DOT disabled, but it is recommended to +# install and use dot, since it yields more powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is +# allowed to run in parallel. When set to 0 (the default) doxygen will +# base this on the number of processors available in the system. You can set it +# explicitly to a value larger than 0 to get control over the balance +# between CPU load and processing speed. + +DOT_NUM_THREADS = 0 + +# By default doxygen will use the Helvetica font for all dot files that +# doxygen generates. When you want a differently looking font you can specify +# the font name using DOT_FONTNAME. You need to make sure dot is able to find +# the font, which can be done by putting it in a standard location or by setting +# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. + +DOT_FONTNAME = Helvetica + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the Helvetica font. +# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to +# set the path where dot can find it. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside +# the class node. If there are many fields or methods and many nodes the +# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS +# threshold limits the number of items for each type to make the size more +# managable. Set this to 0 for no limit. Note that the threshold may be +# exceeded by 50% before the limit is enforced. + +UML_LIMIT_NUM_FIELDS = 10 + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will generate a graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are svg, png, jpg, or gif. +# If left blank png will be used. If you choose svg you need to set +# HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible in IE 9+ (other browsers do not have this requirement). + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# Note that this requires a modern browser other than Internet Explorer. +# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you +# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files +# visible. Older versions of IE do not have SVG support. + +INTERACTIVE_SVG = NO + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the +# \mscfile command). + +MSCFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff -Nru stellarium-0.12.1/plugins/Supernovae/resources/supernovae.json stellarium-0.12.4/plugins/Supernovae/resources/supernovae.json --- stellarium-0.12.1/plugins/Supernovae/resources/supernovae.json 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Supernovae/resources/supernovae.json 2013-09-07 15:50:48.000000000 +0000 @@ -1,6 +1,7 @@ { "version": "1", - "shortName": "Historical supernovaes data with brightness over 10 magnitude", + "limit": 12.0, + "shortName": "Bright historical supernovae data", "supernova": { "185A": @@ -123,10 +124,178 @@ "2011fe": { "type": "Ia", - "maxMagnitude": 9.9, + "maxMagnitude": 10.06, "peakJD": 2455817, "alpha": "14h03m5.81s", "delta": "+54d16m25.4s" + }, + "1920A": + { + "type": "II", + "maxMagnitude": 11.7, + "peakJD": 2422676, + "alpha": "08h35m15.75s", + "delta": "+28d28m31.3s" + }, + "1921C": + { + "type": "I", + "maxMagnitude": 11.0, + "peakJD": 2423035, + "alpha": "10h18m24.01s", + "delta": "+41d21m32.1s" + }, + "1960F": + { + "type": "Ia", + "maxMagnitude": 11.6, + "peakJD": 2437046, + "alpha": "12h31m42.06s", + "delta": "+03d56m47.9s" + }, + "1960R": + { + "type": "I", + "maxMagnitude": 12.0, + "peakJD": 2437288, + "alpha": "12h25m24.85s", + "delta": "+18d09m19.6s" + }, + "1961H": + { + "type": "Ia", + "maxMagnitude": 11.8, + "peakJD": 2437428, + "alpha": "12h36m27.32s", + "delta": "+11d26m24.9s" + }, + "1962M": + { + "type": "II", + "maxMagnitude": 11.5, + "peakJD": 2437995, + "alpha": "03h18m15.45s", + "delta": "-66d32m20.7s" + }, + "1966J": + { + "type": "I", + "maxMagnitude": 11.3, + "peakJD": 2439462, + "alpha": "10h19m45.49s", + "delta": "+45d30m14.4s" + }, + "1968L": + { + "type": "IIP", + "maxMagnitude": 11.9, + "peakJD": 2440050, + "alpha": "13h37m00.51s", + "delta": "-29d51m59.0s" + }, + "1970G": + { + "type": "IIL", + "maxMagnitude": 11.4, + "peakJD": 2440798, + "alpha": "14h03m00.83s", + "delta": "+54d14m32.8s" + }, + "1971I": + { + "type": "Ia", + "maxMagnitude": 11.9, + "peakJD": 2441101, + "alpha": "13h15m49.60s", + "delta": "+41d59m15.0s" + }, + "1979C": + { + "type": "IIL", + "maxMagnitude": 11.6, + "peakJD": 2443979, + "alpha": "12h22m58.63s", + "delta": "+15d47m51.7s" + }, + "1980K": + { + "type": "IIL", + "maxMagnitude": 11.6, + "peakJD": 2444544, + "alpha": "20h35m30.07s", + "delta": "+60d06m23.8s" + }, + "1981B": + { + "type": "Ia", + "maxMagnitude": 12.0, + "peakJD": 2444673, + "alpha": "12h34m29.62s", + "delta": "+02d11m59.6s" + }, + "1983N": + { + "type": "Ib", + "maxMagnitude": 11.4, + "peakJD": 2445533, + "alpha": "13h36m51.24s", + "delta": "-29d54m02.7s" + }, + "1989B": + { + "type": "Ia", + "maxMagnitude": 11.9, + "peakJD": 2447564, + "alpha": "11h20m13.94s", + "delta": "-69d16m11.0s" + }, + "1991T": + { + "type": "IaPec", + "maxMagnitude": 11.6, + "peakJD": 2448373, + "alpha": "12h34m10.21s", + "delta": "+02d39m56.6s" + }, + "1993J": + { + "type": "IIb", + "maxMagnitude": 10.8, + "peakJD": 2449077, + "alpha": "09h55m25.00s", + "delta": "+69d01m12.9s" + }, + "1994D": + { + "type": "Ia", + "maxMagnitude": 11.8, + "peakJD": 2449443, + "alpha": "12h34m02.45s", + "delta": "+07d42m04.7s" + }, + "1998bu": + { + "type": "Ia", + "maxMagnitude": 11.9, + "peakJD": 2450955, + "alpha": "10h46m46.03s", + "delta": "+11d50m07.1s" + }, + "2004dj": + { + "type": "IIP", + "maxMagnitude": 11.3, + "peakJD": 2453218, + "alpha": "07h37m17.02s", + "delta": "+65d35m57.8s" + }, + "2013aa": + { + "type": "Ia", + "maxMagnitude": 11.9, + "peakJD": 2456337, + "alpha": "14h32m33.88s", + "delta": "-44d13m27.8s" } } } diff -Nru stellarium-0.12.1/plugins/Supernovae/src/Supernova.cpp stellarium-0.12.4/plugins/Supernovae/src/Supernova.cpp --- stellarium-0.12.1/plugins/Supernovae/src/Supernova.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Supernovae/src/Supernova.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -24,7 +24,9 @@ #include "StelTranslator.hpp" #include "StelModuleMgr.hpp" #include "StelSkyDrawer.hpp" +#include "StarMgr.hpp" #include "StelRenderer.hpp" +#include "StelLocaleMgr.hpp" #include #include @@ -78,6 +80,29 @@ return getVMagnitude(core, false); } +QString Supernova::getNameI18n(void) const +{ + QString name = designation; + if (note.size()!=0) + name = QString("%1 (%2)").arg(name).arg(q_(note)); + + return name; +} + +QString Supernova::getEnglishName(void) const +{ + QString name = designation; + if (note.size()!=0) + name = QString("%1 (%2)").arg(name).arg(note); + + return name; +} + +QString Supernova::getMaxBrightnessDate(const double JD) const +{ + return StelApp::getInstance().getLocaleMgr().getPrintableDateLocal(JD); +} + QString Supernova::getInfoString(const StelCore* core, const InfoStringGroup& flags) const { QString str; @@ -111,6 +136,7 @@ if (flags&Extra1) { oss << q_("Type of supernova: %1").arg(sntype) << "
    "; + oss << q_("Maximum brightness: %1").arg(getMaxBrightnessDate(peakJD)) << "
    "; if (distance>0) oss << q_("Distance: %1 Light Years").arg(distance*1000) << "
    "; } @@ -203,6 +229,7 @@ void Supernova::draw(StelCore* core, StelRenderer* renderer, StelProjectorP projector) { StelSkyDrawer* sd = core->getSkyDrawer(); + StarMgr* smgr = GETSTELMODULE(StarMgr); // It's need for checking displaying of labels for stars Vec3f color = Vec3f(1.f,1.f,1.f); if (StelApp::getInstance().getVisionModeNight()) @@ -214,8 +241,9 @@ StelUtils::spheToRect(snra, snde, XYZ); mag = getVMagnitude(core, true); sd->preDrawPointSource(); + float mlimit = sd->getLimitMagnitude(); - if (mag <= sd->getLimitMagnitude()) + if (mag <= mlimit) { sd->computeRCMag(mag, rcMag); const Vec3f XYZf(XYZ[0], XYZ[1], XYZ[2]); @@ -227,7 +255,7 @@ renderer->setGlobalColor(color[0], color[1], color[2], 1); size = getAngularSize(NULL)*M_PI/180.*projector->getPixelPerRadAtCenter(); shift = 6.f + size/1.8f; - if (labelsFader.getInterstate()<=0.f) + if (labelsFader.getInterstate()<=0.f && (mag+5.f)getFlagLabels()) { renderer->drawText(TextParams(XYZ, projector, designation).shift(shift, shift).useGravity()); } diff -Nru stellarium-0.12.1/plugins/Supernovae/src/Supernova.hpp stellarium-0.12.4/plugins/Supernovae/src/Supernova.hpp --- stellarium-0.12.1/plugins/Supernovae/src/Supernova.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Supernovae/src/Supernova.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -65,14 +65,8 @@ } virtual float getVMagnitude(const StelCore* core, bool withExtinction=false) const; virtual double getAngularSize(const StelCore* core) const; - virtual QString getNameI18n(void) const - { - return designation; - } - virtual QString getEnglishName(void) const - { - return designation; - } + virtual QString getNameI18n(void) const; + virtual QString getEnglishName(void) const; void update(double deltaTime); @@ -94,6 +88,8 @@ double distance; //! Distance to supernova (10^3 ly) LinearFader labelsFader; + + QString getMaxBrightnessDate(const double JD) const; }; #endif // _SUPERNOVA_HPP_ diff -Nru stellarium-0.12.1/plugins/Supernovae/src/Supernovae.cpp stellarium-0.12.4/plugins/Supernovae/src/Supernovae.cpp --- stellarium-0.12.1/plugins/Supernovae/src/Supernovae.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Supernovae/src/Supernovae.cpp 2013-09-13 10:51:45.000000000 +0000 @@ -50,6 +50,7 @@ #include #include #include +#include #define CATALOG_FORMAT_VERSION 1 /* Version of format of catalog */ @@ -71,7 +72,7 @@ info.displayedName = N_("Historical Supernovae"); info.authors = "Alexander Wolf"; info.contact = "alex.v.wolf@gmail.com"; - info.description = N_("A plugin that shows some historical supernovae brighter than 10 visual magnitude."); + info.description = N_("This plugin allows you to see some bright historical supernovae."); return info; } @@ -160,18 +161,18 @@ // If the json file does not already exist, create it from the resource in the Qt resource if(QFileInfo(sneJsonPath).exists()) { - if (getJsonFileVersion() < CATALOG_FORMAT_VERSION) + if (!checkJsonFileFormat() || getJsonFileVersion()getEnglishName().toUpper() == englishName) + if (sn->getEnglishName().toUpper() == englishName.toUpper()) return qSharedPointerCast(sn); } @@ -277,55 +277,81 @@ StelObjectP Supernovae::searchByNameI18n(const QString& nameI18n) const { - QString objw = nameI18n.toUpper(); - foreach(const SupernovaP& sn, snstar) { - if (sn->getNameI18n().toUpper() == nameI18n) + if (sn->getNameI18n().toUpper() == nameI18n.toUpper()) return qSharedPointerCast(sn); } return NULL; } -QStringList Supernovae::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem) const +QStringList Supernovae::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; - if (maxNbItem==0) return result; - - QString objw = objPrefix.toUpper(); + if (maxNbItem==0) + return result; + QString snn; + bool find; foreach(const SupernovaP& sn, snstar) { - if (sn->getNameI18n().toUpper().left(objw.length()) == objw) + snn = sn->getNameI18n(); + find = false; + if (useStartOfWords) + { + if (objPrefix.toUpper()==snn.toUpper().left(objPrefix.length())) + find = true; + } + else { - result << sn->getNameI18n().toUpper(); + if (snn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << snn; } } result.sort(); - if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); + if (result.size()>maxNbItem) + result.erase(result.begin()+maxNbItem, result.end()); return result; } -QStringList Supernovae::listMatchingObjects(const QString& objPrefix, int maxNbItem) const +QStringList Supernovae::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; - if (maxNbItem==0) return result; - - QString objw = objPrefix.toUpper(); + if (maxNbItem==0) + return result; + QString snn; + bool find; foreach(const SupernovaP& sn, snstar) { - if (sn->getEnglishName().toUpper().left(objw.length()) == objw) + snn = sn->getEnglishName(); + find = false; + if (useStartOfWords) { - result << sn->getEnglishName().toUpper(); + if (objPrefix.toUpper()==snn.toUpper().left(objPrefix.length())) + find = true; + } + else + { + if (snn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << snn; } } result.sort(); - if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); + if (result.size()>maxNbItem) + result.erase(result.begin()+maxNbItem, result.end()); return result; } @@ -361,11 +387,11 @@ QFile src(":/Supernovae/supernovae.json"); if (!src.copy(sneJsonPath)) { - qWarning() << "Supernovae::restoreDefaultJsonFile cannot copy json resource to " + sneJsonPath; + qWarning() << "Supernovae::restoreDefaultJsonFile cannot copy json resource to " + QDir::toNativeSeparators(sneJsonPath); } else { - qDebug() << "Supernovae::init copied default supernovae.json to " << sneJsonPath; + qDebug() << "Supernovae::init copied default supernovae.json to " << QDir::toNativeSeparators(sneJsonPath); // The resource is read only, and the new file inherits this... make sure the new file // is writable by the Stellarium process so that updates can be done. QFile dest(sneJsonPath); @@ -434,7 +460,7 @@ QVariantMap map; QFile jsonFile(path); if (!jsonFile.open(QIODevice::ReadOnly)) - qWarning() << "Supernovae::loadSNeMap cannot open " << path; + qWarning() << "Supernovae::loadSNeMap cannot open " << QDir::toNativeSeparators(path); else map = StelJsonParser::parse(jsonFile.readAll()).toMap(); @@ -470,7 +496,7 @@ QFile sneJsonFile(sneJsonPath); if (!sneJsonFile.open(QIODevice::ReadOnly)) { - qWarning() << "Supernovae::init cannot open " << sneJsonPath; + qWarning() << "Supernovae::init cannot open " << QDir::toNativeSeparators(sneJsonPath); return jsonVersion; } @@ -486,6 +512,52 @@ return jsonVersion; } +bool Supernovae::checkJsonFileFormat() +{ + QFile sneJsonFile(sneJsonPath); + if (!sneJsonFile.open(QIODevice::ReadOnly)) + { + qWarning() << "Supernovae::checkJsonFileFormat(): cannot open " << QDir::toNativeSeparators(sneJsonPath); + return false; + } + + QVariantMap map; + try + { + map = StelJsonParser::parse(&sneJsonFile).toMap(); + sneJsonFile.close(); + } + catch (std::runtime_error& e) + { + qDebug() << "Supernovae::checkJsonFileFormat(): file format is wrong!"; + qDebug() << "Supernovae::checkJsonFileFormat() error:" << e.what(); + return false; + } + + return true; +} + +float Supernovae::getLowerLimitBrightness() +{ + float lowerLimit = 10.f; + QFile sneJsonFile(sneJsonPath); + if (!sneJsonFile.open(QIODevice::ReadOnly)) + { + qWarning() << "Supernovae::init cannot open " << QDir::toNativeSeparators(sneJsonPath); + return lowerLimit; + } + + QVariantMap map; + map = StelJsonParser::parse(&sneJsonFile).toMap(); + if (map.contains("limit")) + { + lowerLimit = map.value("limit").toFloat(); + } + + sneJsonFile.close(); + return lowerLimit; +} + SupernovaP Supernovae::getByID(const QString& id) { foreach(const SupernovaP& sn, snstar) @@ -578,32 +650,23 @@ lastUpdate = QDateTime::currentDateTime(); conf->setValue("Supernovae/last_update", lastUpdate.toString(Qt::ISODate)); - emit(jsonUpdateComplete()); - updateState = Supernovae::Updating; - emit(updateStateChanged(updateState)); - updateFile.clear(); if (progressBar==NULL) progressBar = StelApp::getInstance().getGui()->addProgressBar(); progressBar->setValue(0); - progressBar->setMaximum(updateUrl.size()); - progressBar->setVisible(true); + progressBar->setMaximum(100); progressBar->setFormat("Update historical supernovae"); + progressBar->setVisible(true); QNetworkRequest request; request.setUrl(QUrl(updateUrl)); request.setRawHeader("User-Agent", QString("Mozilla/5.0 (Stellarium Historical Supernovae Plugin %1; http://stellarium.org/)").arg(SUPERNOVAE_PLUGIN_VERSION).toUtf8()); downloadMgr->get(request); - progressBar->setValue(100); - delete progressBar; - progressBar = NULL; - - updateState = CompleteUpdates; - + updateState = Supernovae::CompleteUpdates; emit(updateStateChanged(updateState)); emit(jsonUpdateComplete()); } @@ -637,7 +700,11 @@ } if (progressBar) + { progressBar->setValue(100); + delete progressBar; + progressBar = NULL; + } } void Supernovae::displayMessage(const QString& message, const QString hexColor) diff -Nru stellarium-0.12.1/plugins/Supernovae/src/Supernovae.hpp stellarium-0.12.4/plugins/Supernovae/src/Supernovae.hpp --- stellarium-0.12.1/plugins/Supernovae/src/Supernovae.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Supernovae/src/Supernovae.hpp 2013-09-13 10:51:45.000000000 +0000 @@ -39,7 +39,25 @@ typedef QSharedPointer SupernovaP; -//! This is an example of a plug-in which can be dynamically loaded into stellarium +/*! @mainpage notitle +@section overview Plugin Overview + +The %Supernovae plugin displays the positions some historical +supernovae brighter than 10 visual magnitude. + +@section sncat Supernovae Catalog +The supernovae catalog is stored on the disk in [JSON](http://www.json.org/) +format, in a file named "supernovae.json". A default copy is embedded in the +plug-in at compile time. A working copy is kept in the user data directory. + +@section config Configuration +The plug-ins' configuration data is stored in Stellarium's main configuration +file. +*/ + +//! @class Supernovae +//! Main class of the %Historical Supernovae plugin. +//! @author Alexander Wolf class Supernovae : public StelObjectModule { Q_OBJECT @@ -86,13 +104,15 @@ //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; virtual QStringList listAllObjects(bool inEnglish) const; virtual QString getName() const { return "Historical Supernovae"; } @@ -115,37 +135,42 @@ //! Save the settings to the main configuration file. void saveSettingsToConfig(void); - //! get whether or not the plugin will try to update catalog data from the internet + //! Get whether or not the plugin will try to update catalog data from the internet //! @return true if updates are set to be done, false otherwise bool getUpdatesEnabled(void) {return updatesEnabled;} - //! set whether or not the plugin will try to update catalog data from the internet + //! Set whether or not the plugin will try to update catalog data from the internet //! @param b if true, updates will be enabled, else they will be disabled void setUpdatesEnabled(bool b) {updatesEnabled=b;} - //! get the date and time the supernovae were updated + //! Get the date and time the supernovae were updated QDateTime getLastUpdate(void) {return lastUpdate;} - //! get the update frequency in days + //! Get the update frequency in days int getUpdateFrequencyDays(void) {return updateFrequencyDays;} void setUpdateFrequencyDays(int days) {updateFrequencyDays = days;} - //! get the number of seconds till the next update + //! Get the number of seconds till the next update int getSecondsToUpdate(void); //! Get the current updateState UpdateState getUpdateState(void) {return updateState;} - //! get list of supernovae + //! Get list of supernovae QString getSupernovaeList(); + //! Get lower limit of brightness for displayed supernovae + float getLowerLimitBrightness(); + signals: //! @param state the new update state. void updateStateChanged(Supernovae::UpdateState state); - //! emitted after a JSON update has run. + //! Emitted after a JSON update has run. void jsonUpdateComplete(void); public slots: + // FIXME: Add functions for scripting support + //! Download JSON from web recources described in the module section of the //! module.ini file and update the local JSON file. void updateJSON(void); @@ -161,10 +186,10 @@ // if existing, delete Satellites section in main config.ini, then create with default values void restoreDefaultConfigIni(void); - //! replace the json file with the default from the compiled-in resource + //! Replace the JSON file with the default from the compiled-in resource void restoreDefaultJsonFile(void); - //! read the json file and create list of supernovae. + //! Read the JSON file and create list of supernovae. void readJsonFile(void); //! Creates a backup of the supernovae.json file called supernovae.json.old @@ -176,10 +201,14 @@ //! @return version string, e.g. "1" int getJsonFileVersion(void); - //! parse JSON file and load supernovaes to map + //! Check format of the catalog of supernovae + //! @return valid boolean, e.g. "true" + bool checkJsonFileFormat(void); + + //! Parse JSON file and load supernovaes to map QVariantMap loadSNeMap(QString path=QString()); - //! set items for list of struct from data map + //! Set items for list of struct from data map void setSNeMap(const QVariantMap& map); QString sneJsonPath; @@ -191,8 +220,7 @@ // variables and functions for the updater UpdateState updateState; QNetworkAccessManager* downloadMgr; - QString updateUrl; - QString updateFile; + QString updateUrl; QProgressBar* progressBar; QTimer* updateTimer; QTimer* messageTimer; @@ -207,7 +235,7 @@ SupernovaeDialog* configDialog; private slots: - //! check to see if an update is required. This is called periodically by a timer + //! Check to see if an update is required. This is called periodically by a timer //! if the last update was longer than updateFrequencyHours ago then the update is //! done. void checkForUpdate(void); diff -Nru stellarium-0.12.1/plugins/Supernovae/src/gui/SupernovaeDialog.cpp stellarium-0.12.4/plugins/Supernovae/src/gui/SupernovaeDialog.cpp --- stellarium-0.12.1/plugins/Supernovae/src/gui/SupernovaeDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/Supernovae/src/gui/SupernovaeDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -108,9 +108,9 @@ html += "" + q_("Author") + ":Alexander Wolf <alex.v.wolf@gmail.com>"; html += ""; - html += "

    " + q_("A plugin that shows some historical supernovae brighter than visual magnitude 10: "); + html += "

    " + q_("This plugin allows you to see some bright historical supernovae: "); html += GETSTELMODULE(Supernovae)->getSupernovaeList(); - html += ".

    "; + html += ". " + q_("All those supernovae are brighter %1 at peak of brightness.").arg(QString::number(GETSTELMODULE(Supernovae)->getLowerLimitBrightness(), 'f', 2) + "m") + "

    "; html += "

    " + q_("Light curves") + "

    "; html += "

    " + QString(q_("This plugin implements a simple model of light curves for different supernovae. Typical views of light curves for type I and type II supernova can be seen %1here%2 (right scale in days), and this model is used for this plugin.")).arg("").arg("") + "

    "; diff -Nru stellarium-0.12.1/plugins/TelescopeControl/CMakeLists.txt stellarium-0.12.4/plugins/TelescopeControl/CMakeLists.txt --- stellarium-0.12.1/plugins/TelescopeControl/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/TelescopeControl/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -3,7 +3,7 @@ # otherwise the local copy will be overwritten each time Stellarium is started. SET(TELESCOPE_CONTROL_MAJOR "0") SET(TELESCOPE_CONTROL_MINOR "2") -SET(TELESCOPE_CONTROL_PATCH "4") +SET(TELESCOPE_CONTROL_PATCH "5") SET(TELESCOPE_CONTROL_VERSION "${TELESCOPE_CONTROL_MAJOR}.${TELESCOPE_CONTROL_MINOR}.${TELESCOPE_CONTROL_PATCH}") IF(APPLE) diff -Nru stellarium-0.12.1/plugins/TelescopeControl/resources/device_models.json stellarium-0.12.4/plugins/TelescopeControl/resources/device_models.json --- stellarium-0.12.1/plugins/TelescopeControl/resources/device_models.json 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/TelescopeControl/resources/device_models.json 2013-08-04 06:20:27.000000000 +0000 @@ -1,5 +1,5 @@ { - "version": "0.2.4", + "version": "0.2.5", "list" : [ { diff -Nru stellarium-0.12.1/plugins/TelescopeControl/src/TelescopeControl.cpp stellarium-0.12.4/plugins/TelescopeControl/src/TelescopeControl.cpp --- stellarium-0.12.1/plugins/TelescopeControl/src/TelescopeControl.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/TelescopeControl/src/TelescopeControl.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -57,6 +57,7 @@ #include #include #include +#include #include @@ -391,18 +392,31 @@ return 0; } -QStringList TelescopeControl::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem) const +QStringList TelescopeControl::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; - if (maxNbItem==0) return result; + if (maxNbItem==0) + return result; - QString objw = objPrefix.toUpper(); + QString tn; + bool find; foreach (const TelescopeClientP& telescope, telescopeClients) { - QString constw = telescope->getNameI18n().mid(0, objw.size()).toUpper(); - if (constw==objw) + tn = telescope->getNameI18n(); + find = false; + if (useStartOfWords) + { + if (objPrefix.toUpper()==tn.mid(0, objPrefix.size()).toUpper()) + find = true; + } + else { - result << telescope->getNameI18n(); + if (tn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << tn; } } result.sort(); @@ -413,18 +427,31 @@ return result; } -QStringList TelescopeControl::listMatchingObjects(const QString& objPrefix, int maxNbItem) const +QStringList TelescopeControl::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; - if (maxNbItem==0) return result; + if (maxNbItem==0) + return result; - QString objw = objPrefix.toUpper(); + QString tn; + bool find; foreach (const TelescopeClientP& telescope, telescopeClients) { - QString constw = telescope->getEnglishName().mid(0, objw.size()).toUpper(); - if (constw==objw) + QString tn = telescope->getEnglishName(); + find = false; + if (useStartOfWords) { - result << telescope->getEnglishName(); + if (objPrefix.toUpper()==tn.mid(0, objPrefix.size()).toUpper()) + find = true; + } + else + { + if (tn.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << tn; } } result.sort(); @@ -704,7 +731,7 @@ QFile telescopesJsonFile(telescopesJsonPath); if(!telescopesJsonFile.open(QFile::WriteOnly|QFile::Text)) { - qWarning() << "TelescopeControl: Telescopes can not be saved. A file can not be open for writing:" << telescopesJsonPath; + qWarning() << "TelescopeControl: Telescopes can not be saved. A file can not be open for writing:" << QDir::toNativeSeparators(telescopesJsonPath); return; } @@ -732,7 +759,7 @@ if(!QFileInfo(telescopesJsonPath).exists()) { - qWarning() << "TelescopeControl::loadTelescopes(): No telescopes loaded. File is missing:" << telescopesJsonPath; + qWarning() << "TelescopeControl::loadTelescopes(): No telescopes loaded. File is missing:" << QDir::toNativeSeparators(telescopesJsonPath); telescopeDescriptions = result; return; } @@ -743,7 +770,7 @@ if(!telescopesJsonFile.open(QFile::ReadOnly)) { - qWarning() << "TelescopeControl: No telescopes loaded. Can't open for reading" << telescopesJsonPath; + qWarning() << "TelescopeControl: No telescopes loaded. Can't open for reading" << QDir::toNativeSeparators(telescopesJsonPath); telescopeDescriptions = result; return; } @@ -766,7 +793,7 @@ QString newName = telescopesJsonPath + ".backup." + QDateTime::currentDateTime().toString("yyyy-MM-dd-hh-mm-ss"); if(telescopesJsonFile.rename(newName)) { - qWarning() << "TelescopeControl: The existing version of telescopes.json is obsolete. Backing it up as" << newName; + qWarning() << "TelescopeControl: The existing version of telescopes.json is obsolete. Backing it up as " << QDir::toNativeSeparators(newName); qWarning() << "TelescopeControl: A blank telescopes.json file will have to be created."; telescopeDescriptions = result; return; @@ -1244,7 +1271,7 @@ } catch (std::runtime_error& e) { - qDebug() << "TelescopeControl: Error starting telescope server: Can't find executable:" << serverExecutablePath; + qDebug() << "TelescopeControl: Error starting telescope server: Can't find executable:" << QDir::toNativeSeparators(serverExecutablePath); return false; } @@ -1262,7 +1289,7 @@ if(useTelescopeServerLogs) serverArguments << QString(StelFileMgr::getUserDir() + "/log_TelescopeServer" + slotName + ".txt"); - qDebug() << "TelescopeControl: Starting tellescope server at slot" << slotName << "with path" << serverExecutablePath << "and arguments" << serverArguments.join(" "); + qDebug() << "TelescopeControl: Starting tellescope server at slot" << slotName << "with path" << QDir::toNativeSeparators(serverExecutablePath) << "and arguments" << serverArguments.join(" "); //Starting the new process telescopeServerProcess.insert(slotNumber, new QProcess()); @@ -1391,7 +1418,7 @@ { if(!restoreDeviceModelsListTo(deviceModelsJsonPath)) { - qWarning() << "TelescopeControl: Unable to find" << deviceModelsJsonPath; + qWarning() << "TelescopeControl: Unable to find " << QDir::toNativeSeparators(deviceModelsJsonPath); useDefaultList = true; } } @@ -1400,7 +1427,7 @@ QFile deviceModelsJsonFile(deviceModelsJsonPath); if(!deviceModelsJsonFile.open(QFile::ReadOnly)) { - qWarning() << "TelescopeControl: Can't open for reading" << deviceModelsJsonPath; + qWarning() << "TelescopeControl: Can't open for reading " << QDir::toNativeSeparators(deviceModelsJsonPath); useDefaultList = true; } else @@ -1415,7 +1442,7 @@ QString newName = deviceModelsJsonPath + ".backup." + QDateTime::currentDateTime().toString("yyyy-MM-dd-hh-mm-ss"); if(deviceModelsJsonFile.rename(newName)) { - qWarning() << "TelescopeControl: The existing version of device_models.json is obsolete. Backing it up as" << newName; + qWarning() << "TelescopeControl: The existing version of device_models.json is obsolete. Backing it up as " << QDir::toNativeSeparators(newName); if(!restoreDeviceModelsListTo(deviceModelsJsonPath)) { useDefaultList = true; @@ -1558,13 +1585,13 @@ QFile defaultFile(":/telescopeControl/device_models.json"); if (!defaultFile.copy(deviceModelsListPath)) { - qWarning() << "TelescopeControl: Unable to copy the default device models list to" << deviceModelsListPath; + qWarning() << "TelescopeControl: Unable to copy the default device models list to" << QDir::toNativeSeparators(deviceModelsListPath); return false; } QFile newCopy(deviceModelsListPath); newCopy.setPermissions(newCopy.permissions() | QFile::WriteOwner); - qDebug() << "TelescopeControl: The default device models list has been copied to" << deviceModelsListPath; + qDebug() << "TelescopeControl: The default device models list has been copied to" << QDir::toNativeSeparators(deviceModelsListPath); return true; } @@ -1579,14 +1606,14 @@ QDir newServerDirectory(newPath); if(!newServerDirectory.exists()) { - qWarning() << "TelescopeControl: Can't find such a directory:" << newPath; + qWarning() << "TelescopeControl: Can't find such a directory: " << QDir::toNativeSeparators(newPath); return false; } QList telescopeServerExecutables = newServerDirectory.entryInfoList(QStringList("TelescopeServer*"), (QDir::Files|QDir::Executable|QDir::CaseSensitive), QDir::Name); if(telescopeServerExecutables.isEmpty()) { qWarning() << "TelescopeControl: No telescope server executables found in" - << serverExecutablesDirectoryPath; + << QDir::toNativeSeparators(serverExecutablesDirectoryPath); return false; } @@ -1626,7 +1653,7 @@ if (!logFile->open(QFile::WriteOnly|QFile::Text|QFile::Truncate|QFile::Unbuffered)) { qWarning() << "TelescopeControl: Unable to create a log file for slot" - << slot << ":" << filePath; + << slot << ":" << QDir::toNativeSeparators(filePath); telescopeServerLogFiles.insert(slot, logFile); telescopeServerLogStreams.insert(slot, new QTextStream(new QFile())); } diff -Nru stellarium-0.12.1/plugins/TelescopeControl/src/TelescopeControl.hpp stellarium-0.12.4/plugins/TelescopeControl/src/TelescopeControl.hpp --- stellarium-0.12.1/plugins/TelescopeControl/src/TelescopeControl.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/TelescopeControl/src/TelescopeControl.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -85,8 +85,18 @@ virtual QList searchAround(const Vec3d& v, double limitFov, const StelCore* core) const; virtual StelObjectP searchByNameI18n(const QString& nameI18n) const; virtual StelObjectP searchByName(const QString& name) const; - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const; - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const; + //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. + //! @param objPrefix the case insensitive first letters of the searched object + //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names + //! @return a list of matching object name by order of relevance, or an empty list if nothing match + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; + //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. + //! @param objPrefix the case insensitive first letters of the searched object + //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names + //! @return a list of matching object name by order of relevance, or an empty list if nothing match + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; // empty as its not celestial objects virtual QStringList listAllObjects(bool inEnglish) const { Q_UNUSED(inEnglish) return QStringList(); } virtual QString getName() const { return "Telescope Control"; } diff -Nru stellarium-0.12.1/plugins/TelescopeControl/src/clients/TelescopeClient.cpp stellarium-0.12.4/plugins/TelescopeControl/src/clients/TelescopeClient.cpp --- stellarium-0.12.1/plugins/TelescopeControl/src/clients/TelescopeClient.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/TelescopeControl/src/clients/TelescopeClient.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -145,15 +145,18 @@ { // At the moment this can't be done in a platform-independent way with Qt // (QDateTime and QTime don't support microsecond precision) + qint64 t; + StelCore *core = StelApp::getInstance().getCore(); #ifdef Q_OS_WIN32 FILETIME file_time; GetSystemTimeAsFileTime(&file_time); - return (*((__int64*)(&file_time))/10) - 86400000000LL*134774; + t = (*((__int64*)(&file_time))/10) - 86400000000LL*134774; #else struct timeval tv; gettimeofday(&tv,0); - return tv.tv_sec * 1000000LL + tv.tv_usec; + t = tv.tv_sec * 1000000LL + tv.tv_usec; #endif + return t - core->getDeltaT(StelUtils::getJDFromSystem())*1000000; // Delta T anti-correction } TelescopeTCP::TelescopeTCP(const QString &name, const QString ¶ms, Equinox eq) : diff -Nru stellarium-0.12.1/plugins/TelescopeControl/src/servers/Socket.cpp stellarium-0.12.4/plugins/TelescopeControl/src/servers/Socket.cpp --- stellarium-0.12.1/plugins/TelescopeControl/src/servers/Socket.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/TelescopeControl/src/servers/Socket.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -23,6 +23,9 @@ */ #include "Socket.hpp" +#include "StelCore.hpp" +#include "StelApp.hpp" +#include "StelUtils.hpp" #ifdef Q_OS_WIN32 #include // GetSystemTimeAsFileTime @@ -32,6 +35,8 @@ long long int GetNow(void) { + long long int t; + StelCore *core = StelApp::getInstance().getCore(); #ifdef Q_OS_WIN32 union { @@ -39,12 +44,13 @@ __int64 t; } tmp; GetSystemTimeAsFileTime(&tmp.file_time); - return (tmp.t/10) - 86400000000LL*(369*365+89); + t = (tmp.t/10) - 86400000000LL*(369*365+89); #else struct timeval tv; gettimeofday(&tv, 0); - return tv.tv_sec * 1000000LL + tv.tv_usec; + t = tv.tv_sec * 1000000LL + tv.tv_usec; #endif + return t - core->getDeltaT(StelUtils::getJDFromSystem())*1000000; // Delta T anti-correction } void Socket::hangup(void) diff -Nru stellarium-0.12.1/plugins/TextUserInterface/src/TextUserInterface.cpp stellarium-0.12.4/plugins/TextUserInterface/src/TextUserInterface.cpp --- stellarium-0.12.1/plugins/TextUserInterface/src/TextUserInterface.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/plugins/TextUserInterface/src/TextUserInterface.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -60,6 +60,7 @@ #include #include #include +#include #ifdef DISABLE_SCRIPTING #include "QSettings" // WTF? #endif @@ -825,7 +826,7 @@ void TextUserInterface::shutDown() { QSettings* conf = StelApp::getInstance().getSettings(); - QString shutdownCmd = conf->value("tui/admin_shutdown_cmd", "").toString(); + QString shutdownCmd = QDir::fromNativeSeparators(conf->value("tui/admin_shutdown_cmd", "").toString()); int err; if (!(err = QProcess::execute(shutdownCmd))) { qDebug() << "[TextUserInterface] shutdown error, QProcess::execute():" << err; diff -Nru stellarium-0.12.1/po/stellarium/POTFILES.in stellarium-0.12.4/po/stellarium/POTFILES.in --- stellarium-0.12.1/po/stellarium/POTFILES.in 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/POTFILES.in 2013-09-07 15:50:48.000000000 +0000 @@ -84,6 +84,10 @@ plugins/Supernovae/src/Supernova.cpp plugins/Supernovae/src/gui/SupernovaeDialog.cpp plugins/Supernovae/src/ui_supernovaeDialog.h +plugins/Novae/src/Novae.cpp +plugins/Novae/src/Nova.cpp +plugins/Novae/src/gui/NovaeDialog.cpp +plugins/Novae/src/ui_novaeDialog.h plugins/Quasars/src/Quasars.cpp plugins/Quasars/src/Quasar.cpp plugins/Quasars/src/gui/QuasarsDialog.cpp diff -Nru stellarium-0.12.1/po/stellarium/aa.po stellarium-0.12.4/po/stellarium/aa.po --- stellarium-0.12.1/po/stellarium/aa.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/aa.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:05+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Afar \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:09+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:43+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/ab.po stellarium-0.12.4/po/stellarium/ab.po --- stellarium-0.12.1/po/stellarium/ab.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ab.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:06+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Abkhazian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:09+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:43+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/ae.po stellarium-0.12.4/po/stellarium/ae.po --- stellarium-0.12.1/po/stellarium/ae.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ae.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Avestan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:45+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/af.po stellarium-0.12.4/po/stellarium/af.po --- stellarium-0.12.1/po/stellarium/af.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/af.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-01-07 10:27+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:44+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridiaan" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptiek" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ewenaar" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horison" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Outeur : " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Ligging: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipe: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Omvang: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Grootte: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Heelal" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Oop tros" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Bolvormige tros" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebula" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetêre nebula" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Tros verbind met nebulariteit" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Onbekende" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Ongedokumenteerde tipe" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolute Grootte: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Afstand: %1AE (%2km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Afstand: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Ooglopende deursnit: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Fase hoek: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Verlenging: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Belig: %1%" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "ster" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektrum Tipe: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Afstand: %1 Ligjare" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallaks: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Ruimtetuig" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Fout" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -655,52 +747,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Kies skermskoot vouer" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Aanvangs Oogveld: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Rigting van aanvangsoogpunt Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Outeurs" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontak" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Outeur" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lisensie" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Loop skrip: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Loop skrip: [geen]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -708,16 +801,16 @@ "Klaar nuwe sterkatalogusse afgelaai!\n" "Begin Stellarium weer om hulle te vertoon." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Alle beskikbare ster-katalogusse is geïnstalleer." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Kry katalogus %1 of %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -726,7 +819,7 @@ "Aflaai %1...\n" "(Jy kan hierdie venster toemaak.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -737,7 +830,7 @@ "Stertelling: %2 Miljoen\n" "Grootte reeks: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -746,11 +839,11 @@ "Fout met aflaai %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verifieer legger integriteit..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -760,115 +853,123 @@ "Leêr is beskadig." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1038,49 +1139,53 @@ msgid "OSX Developer: %1" msgstr "OSX Ontwikkelaar: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Skrip konsole venster" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Vensters" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Ruimte" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Geen beskrywing" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Geen verskietende sterre" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normale tempo" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standaard Perseide tempo" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Buitengewoon Leonid tempo" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Hoogste tempo ooit (1966 Leonids)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nuwe posisie" @@ -1187,19 +1292,19 @@ msgid "starchart" msgstr "sterre kaart" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universiteit Strasbourg (Frankryk)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard Universiteit (VSA)" @@ -1215,30 +1320,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Die stelsel ondersteun nie OpenGL nie." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Son" @@ -1255,12 +1366,12 @@ msgstr "Aarde" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Maan" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1358,7 +1469,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturnus" @@ -1656,239 +1767,268 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreaans" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Noors" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesies" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Westers" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Bome" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Oseaan" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Landskap toer" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Sluimerskerm" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiac" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1898,1502 +2038,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Verenigde Arabiese Emirate" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigue en Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albanië" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenië" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Nederlandse Antilles" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktika" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentinië" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikanse Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Oostenryk" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australië" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaijan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia en Herzegowina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "België" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgarye" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivië" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazilië" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouveteiland" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Belarus" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kokos Eilande" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Demokratiese Republief van die Kongo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Sentraal-Afrikaanse Republiek" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republiek van die Kongo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Switserland" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Ivoorkus" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cook Eilande" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kameroen" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombië" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serwië en Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kaap Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Kersfees Eiland" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Ciprus" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Tjeggiese Republiek" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Duitsland" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Denemarke" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominika" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominikaanse Republiek" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algerië" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egipte" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Wes-Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spanje" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Ethiopië" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandeilande" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronesië" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Faroe Eilande" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Frankryk" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Verenigde Koninkryk" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgië" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Frans-Guinee" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Groenland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambië" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Ekwatoriaal Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Griekeland" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Gautemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Kroatië" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haïti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hongarye" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesië" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ierland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Indië" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Britse Indiese Oseaan Gebied" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Ysland" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italië" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordanië" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts en Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Demokratiese Volksrepubliek van Korea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Republiek van Korea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Koeweit" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberië" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lithuanië" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Morokko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshall EIlande" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolië" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mosambiek" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibië" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk Eiland" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigerië" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Nederland" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Noorweë" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nieu-Seeland" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Fillipyne" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Pole" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romenië" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudi Arabië" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Solomon Eilande" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tajikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Oos-Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisië" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turkye" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad en Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzanië" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Verenigde State" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Viëtnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis en Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Suid-Afrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambië" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Datum en Tyd" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Voeg 1 siderale dag by" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Voeg 1 siderale week by" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Plus 1 solar dag" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Plus 1 solar uur" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Plus 1 solar week" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Vertraag die skrip uitvoer tempo" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Verminder Tyd Spoed" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Vertraag tyd tempo ('n bietjie)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Versnel die skrip uitvoer tempo" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Versnel Tyd Spoed" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Verhoog die tyd tempo ('n bietjie)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Stel tyd tot hede" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Kies die normale skrip uitvoer tempo" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Stel normale tydstempo" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Stel tydstempo na nul" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Verwyder 1 siderale dag" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Verwyder 1 siderale week" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Minus 1 solar dag" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Minus 1 solar huur" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Minus 1 solar week" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Vertoon Opsies" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Draai toneel horisontaal" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Volskerm stelsel" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfeer" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimutale rooster" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Kardinale punte" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Konstellasie kuns" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Konstellasie grense" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Konstellasie byskrifte" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Konstellasie lyne" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Agtergrondbeelde vir nebula" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptiese lyn" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekwatoriale lyn" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekwatoriale rooster" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekwatoriale J2000 rooster" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Mis" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Heelal rooster" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Grond" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horison lyn" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridiaanse lyn" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebula" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Nag stelsel" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Planeet merkers" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planetêre bane" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planetêre paaie" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Sterre" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Draai toneel vertikaal" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Allerlei" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Verberg horisontale keusebalk outomaties" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Verberg vertikale keusebalk outomaties" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Verlaat" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Stoor skermvangs" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Skakel tussen ekwatoriale en azimutale montering" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Skakel sigbaarheid van GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Navigasie en Seleksie" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Sentreer op gekose voorwerp" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Kies as tuisplaneet die huidige planeet" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Volg voorwerp" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zoem in op geselekteerde voorwerp" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zoem uit" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Hoekmeting" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Kompasmerke" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okulêre beeld" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Okulêre opskiet keuselys" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Satelliete konfigurasie venster" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Sateliet wenke" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satelliet merkers" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Skuif 'n teleskoop 'n gegewe stel koördinate" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skripte" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Konfigurasievenster" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Datum/Tyd venster" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Help venster" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Plek venster" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Soekvenster" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Lug en oogpunt keuse venster" @@ -3419,7 +3595,7 @@ msgstr "Herfris" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Ligging" @@ -3435,10 +3611,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Skrap" @@ -3447,7 +3623,7 @@ msgstr "Voeg by ly" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Breedtegraad:" @@ -3460,12 +3636,12 @@ "byvoorbeeld: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Lengtegraad" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Hoogte:" @@ -3489,363 +3665,407 @@ msgid "Planet:" msgstr "Planeet" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Vind Voorwerp" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Vind Voorwerp of Posisie" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Voorwerp" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posisie" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Lyste" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Bediener:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Keuses" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Lyste" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Keuses" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Bekyk" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Lug" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Merke" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landskap" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Sterreleer" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Byskrifte en merkers" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planete" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planete en satelliete" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Vertoon planete" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Wys planeet merkers" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Wys wentelbane van planete" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simuleer spoed van lig" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Skaal Maan" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Vertoon atmosfeer" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Lig besoeddeling" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "druk, temperatuur, afsterf koëffisient" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refraksie/Afsterf verstellings..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolute skaal" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relatiewe skaal" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Flikker" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Verdoof dowwe sterre wanneer 'n baie helder voorwerp sigbaar is" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dinamiese oogaanpassing" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Verskietende Sterre" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Konstellasies" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Wys lyne" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Wys byskrifte" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Wys grense" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Wys kuns" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Kuns helderheid" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Hemelsfeer" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Wys ekwatoriale lyn" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Wys horison lyn" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projeksie" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Voeg by/verwyder landskappe..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Vertoon grond" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Vertoon mis" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Gebruik geassosieerde planeet en posisie" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Gebruik hierdie landskap by verstek" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Gebruik hierdie hemelruim kultuur as verstek" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Sigbaar" @@ -3900,7 +4120,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Sigrigting wanneer Stellarium laai" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Kies voorwerp inligting" @@ -3916,11 +4136,8 @@ msgid "Display no information" msgstr "Vertoon geen inligting" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Geen" @@ -4062,7 +4279,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Laai datum en tyd" @@ -4074,19 +4291,23 @@ msgid "Other:" msgstr "Ander:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "gebruik huidige" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Laai Stellarium by stelsel datum en tyd" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Stelsel datum en tyd" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4094,23 +4315,23 @@ "Stel die simulasie tyd na die volgende keer van hierdie tyd van die dag " "wanneer Stellarium laai" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Stelsel datum by:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetarium opsies" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4118,51 +4339,51 @@ "Sferiese spieëldistorsie word gebruik wanneer Stellarium op 'n sferiese " "spieël geprojekteer word vir lae koste planetarium stelsels." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Sferiese spieëldistorsie" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Maskeer alles buite 'n sentrale sirkel in die hoof venster" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Skyf sigpoort" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Verberg ander konstellasies wanneer een gekliek word" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Kies een konstellasie" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Belyn byskrifte met die horison" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Swaartekrag byskrifte" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Skakel vertikale en horisontale beeld ruil knoppe." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Wys ruil knoppe" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4170,92 +4391,98 @@ "Wanneer geaktiveer, sal die \"outomatiese zoem uit\" sleutel ook die " "aanvanklike sigrigting bepaal" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Auto zoem uit keer terug na die aanvanklike sigrigting" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Skermskote" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Skermskoot vouer" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Omgekeerde kleure" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Stêr katalogus opdaterings" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Kliek hier om te begin aflaai" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Laai hierdie lêer af om meer sterre te sien" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Begin die aflaai weer" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Probeer weer" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Stop die aflaai. Jy kan dit altyd later hervat." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Kanselleer" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Maak die venster toe wannneer die skrip loop" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Laai die gekose skrip" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stop 'n lopende skrip" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Laai wanneer rekenaar aangeskakel word" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "vprm" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Hoof" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informasie" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigasie" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Gereedskap" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Byvoegings" @@ -4431,12 +4658,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Vertoon kompasrigtingmerkers op die horison" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okulêre" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4446,164 +4673,164 @@ "vergroting en sigs-veld word gesimuleer.) Kan ook 'n sensorraam en Telrad-" "sig wys." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskoop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskoop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Vergrooting: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensies: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskoop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Vorige teleskoop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Volgende teleskoop" @@ -4675,64 +4902,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotasie: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Vergroting verskaf deur hierdie vêrkykers" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Weergawe" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4740,7 +4972,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4751,14 +4983,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4767,191 +4999,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Algemeen" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Oogstukke" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Byvoeg" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Naam:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Vêrkykers" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensors" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskope" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Deursneë" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelliete" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4959,119 +5200,179 @@ "Voorspelling van kunsmatige satelliet posisies in Aard omwenteling gebaseer " "op NORAD TLE data" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Die ou satellites.json lêer is nie meer versoenbaar nie - gebruik die " "verstek lêer" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Die satelliet is sigbaar." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Die sateliet is nie sigbaar nie." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Notas vir gebruikers" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Satelliete en hul wentelbane word slegs aangedui wanneer die waarnemer op " "Aarde is." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5079,25 +5380,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5105,17 +5406,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Nuwe satelliete word bygevoeg" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5123,11 +5424,11 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Tegniese notas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5135,31 +5436,33 @@ "Liggings word bereken deur die SGP4 & SDP4 metodes, met NORAD TLE data as " "die invoer data te gebruik. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Sien %1hierdie dokument%2 vir besonderhede." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5167,338 +5470,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Indien U vrae het kan %1antwoorde hier%2 gevind word" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Probleme kan %1hier%2 gerapporteer word." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internet opdatterings uitgestel" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Besig met opdattering..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[Alles nuut bygevoeg]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[alles]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5534,11 +5880,11 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskoop kontrole" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5546,12 +5892,12 @@ "Hierdie invoegsel stel Stellarium in staat om \"slew\" opdragte na 'n " "teleskoop op 'n gerekenariseerde montering te stuur ('n \"GoTo telescope\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Skuif teleskoop #%1 na die geselekteerde voorwerp" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Skuif teleskoop #%1 na die punt tans in die middel van die skerm" @@ -5937,62 +6283,62 @@ "die wyse waarop die tyd en datum op die onderste balk vertoon word." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6146,7 +6492,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6164,7 +6510,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6180,154 +6526,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Tekswerksvlak" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "Invoegsel implimentasie van 0.9.x reeks Tekswerksvlak" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Taal" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6363,22 +6709,22 @@ "aanlyn databasis doen. Dit is nog in aanbou." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6548,36 +6894,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Historiese Supernovas" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Tipe supernova: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6595,7 +6948,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6609,14 +6962,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6624,8 +6977,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6643,29 +6997,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6681,51 +7112,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6845,11 +7286,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6857,137 +7298,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AE" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6995,49 +7440,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7053,185 +7587,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7651,6 +8179,12 @@ #~ msgid "Correct for light travel time: " #~ msgstr "Korrigeer vir reistyd van lig: " +#~ msgid "Nebulas background images" +#~ msgstr "Agtergrondbeelde vir nebula" + +#~ msgid "Nebulas" +#~ msgstr "Nebula" + #~ msgid "Form" #~ msgstr "Vorm" diff -Nru stellarium-0.12.1/po/stellarium/ak.po stellarium-0.12.4/po/stellarium/ak.po --- stellarium-0.12.1/po/stellarium/ak.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ak.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Akan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:44+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/am.po stellarium-0.12.4/po/stellarium/am.po --- stellarium-0.12.1/po/stellarium/am.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/am.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:02+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Amharic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:44+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/an.po stellarium-0.12.4/po/stellarium/an.po --- stellarium-0.12.1/po/stellarium/an.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/an.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:03+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Aragonese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:44+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/ar.po stellarium-0.12.4/po/stellarium/ar.po --- stellarium-0.12.1/po/stellarium/ar.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ar.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-03 19:05+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-11 11:51+0000\n" "Last-Translator: Khalid AlAjaji \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 04:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "خط الزوال" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "الخط الكسوÙÙŠ" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "خط الاستواء" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "الأÙÙ‚" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "المستوى المجرÙّي" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "المؤلÙ: ‎ " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "الموقع‎: †" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 متر" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "كوكب: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "‎النوع:‎ %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "‎القدر‎: %1 (منطÙيء إلى : %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "‎القدر:‎ %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "‎الحجم:‎ %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "مجرة" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "عنقود نجمي Ù…Ùتوح" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "عنقود كروي" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "سديم" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "سديم كوكبي" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "سديم معتم" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "عنقود مرتبط بـسديم" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "غير معروÙ" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "نوع غير موثَق" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "‎القدر المطلق:‎ %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "‎الكسوÙي‎(الحالي‎): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "‎زاوية الميل على المدار‎(الحالية للأرض‎): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "‎‎المساÙة‎: ‎%1 وحدة Ùلكية (‎%2 كم‎)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "‎المساÙة‎‎: %1 وحدة Ùلكية" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "‎القطر الظاهري‎: %1, مع الحلقات‎: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "القطر الظاهري‎: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "‎الدورة النجمية‎: %1‎يوم‎ (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "‎اليوم النجمي‎: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "‎اليوم الشمسي المتوسط‎: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "‎زاوية الطور‎: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "‎الاستطالة‎: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "‎الطور‎: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "‎الإضاءة‎:%1%" @@ -204,7 +204,7 @@ msgstr "‎التسمية الاصطلاحية المؤقتة: ‎%1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "نجم" @@ -219,48 +219,123 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "‎القدر الظاهري‎: %1 (بسبب الانطÙاء‎)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "نجم متغيّÙر ثائر" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "نجم متغيّÙر نابض" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "نجم متغيّÙر دوار" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "نجم متغيّÙر مدمّÙر" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "نظام ثنائي كسوÙÙŠ" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "نجم متغيّÙر" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "نجم ثنائي" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "‎النوع:‎ %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "‎القدر‎: %1 (منطÙيء إلى‎: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "‎القدر‎: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "‎نطاق قدر اللمعان:‎ %1%2%3 (‎النظام الÙوتومتري:‎%4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "‎نطاق قدر اللمعان:‎ %1%2%3/%4 (‎النظام الÙوتومتري:‎%5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "‎النوع الطيÙÙŠ:‎ %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "‎المساÙة‎: %1 سنة ضوئية" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "‎اختلا٠المنظر:‎ %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "‎زمن اللمعان الأدنى باليوم اليولياني:‎%1‎ JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "‎زمن اللمعان الأعلى باليوم اليولياني:‎%1‎ JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "‎الدورة:‎%1‎ يوماً" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "‎وقت اللمعان الأدنى التالي:‎%1‎ UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "‎وقت اللمعان الأعلى التالي:‎%1‎ UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "‎مدة الكسوÙ:‎%1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "‎وقت الشروق:‎%1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "السÙينة الÙضائية" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "التصحيح غير Ù…Ùعّل. لاتستخدم هذا الخيار إلا عندما تعلم معنى إلغاء التصحيح." -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -271,7 +346,7 @@ "ÙÙŠ مقالته \"نظرية آينشتاين النسبية تؤكدها الكسوÙات التاريخية القديمة\" (%1). " "لمزيد من المعلومات انظر %2هنـــــا%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -280,7 +355,7 @@ "هذه المعادلة المبنية على الملاحظات نشرها G. M. Clemence ÙÙŠ مقالته \"عن نظام " "الثوابت الÙلكية\" (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -292,7 +367,7 @@ "من قبل Spencer Jones Ù€ (%1) Ù€ واستخدمها Jean Meeus ÙÙŠ كتابه \" الصيغ " "الÙلكية للآلات الحاسبة\". واستعملت ÙÙŠ برنامج الحاسب SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -302,7 +377,7 @@ "& Meeuse سنة (1983) ÙÙŠ Astronomical Ephemeris ÙˆÙÙŠ Canon of " "Solar Eclipses" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -313,7 +388,7 @@ "601 قبل الميلاد حتى 1649 Ù… ÙÙŠ Ùترات ÙŠÙصل بينها 5 Ùˆ 10 أيام. Ù†Ùس العلاقات " "تضمنتها جداول سيزيجي (1973) لـ Goldstine ." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -324,7 +399,7 @@ "accelerations of the earth and moon from early astronomical " "observations Ù€ (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -333,7 +408,7 @@ "هذه المعادلة نشرها F. R. Stephenson ÙÙŠ المقالة Pre-Telescopic " "Astronomical Observations Ù€ (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -346,7 +421,7 @@ "U.T. in the period 1800-1975 Ù€ (%1) كما تواÙÙ‚ مع البيانات التي نشرها " "Brouwer سنة (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -355,7 +430,7 @@ "هذه الخوارزمية تبناها P. Bretagnon & L. Simon's ÙÙŠ \"برامج حسابات الكواكب من " "-4000 حتى +2800\" Ù€(1986) ÙˆÙÙŠ برنامج القبة الÙلكية RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -365,11 +440,11 @@ "هذه الصيغة نشرها F. R. Stephenson Ùˆ L. V. Morrison ÙÙŠ المقالة \"التغيرات " "طويلة المدى ÙÙŠ دوران الأرض - 700 قبل الميلاد حتى 1980 Ù…\" (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "هذه الخوارزمية مستخدمة ÙÙŠ البرنامج الحاسوبي Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -378,7 +453,7 @@ "هذه الخوارزمية نشرها F. Espenak ÙÙŠ \"لائحة بالكسوÙات الشمسية من 1986 إلى " "2035\" ÙˆÙÙŠ \"لائحة بالخسوÙات القمرية من 1986 إلى 2035\" (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -387,7 +462,7 @@ "هذه الصيغة تحصّل عليها (%1) K.M. Borkowski من تحليل سجلات 31 كسوÙا شمسياً " "بين سنة 2137 قبل الميلاد وسنة 1715 Ù…." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -399,7 +474,7 @@ "مقالتهما \"Empirical Transformations from U.T. to E.T. for the Period 1800-" "1988\" Ù€(%1) كتوÙيق للبيانات المعطاة من قبل Stephenson & Morrison Ù€(1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -409,7 +484,7 @@ "نظرية ELP 2000-85 القمرية ÙÙŠ \"جداول وبرامج القمر من 4000 قبل الميلاد حتى " "8000 Ù…\" (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -419,7 +494,7 @@ "هذه المعادلة نشرها F. R. Stephenson Ùˆ L. V. Morrison ÙÙŠ المقالة \" التذبذبات " "طويلة المدى ÙÙŠ دوران الأرض: 700 قبل الميلاد حتى 1900 Ù…\" (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -428,7 +503,7 @@ "نشر F. R. Stephenson هذه الصيغة ÙÙŠ كتابه \"الكسوÙات التاريخية ودوران الأرض\" " "(%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -438,7 +513,7 @@ "الاستخدام للسنين 1620 - 2000 ويتضمن نسخة معدلة من (1997) Chapront, Chapront-" "Touze & Francou للتواريخ خارج نطاق 1620..2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -447,7 +522,7 @@ "مجموعة JPL Solar System Dynamics Group التابعة لناسا تستخدم هذه الصيغة ÙÙŠ " "موقعها التÙاعلي %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -456,7 +531,7 @@ "متعددة الحدود هذه نشرها J. Meeus and L. Simons ÙÙŠ مقالتهما \"متعددة حدود " "تقريبية لدلتا تي، 1620 - 2000 Ù…\" (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -466,7 +541,7 @@ "الشخصي\" (2000) تحوي متعددة حدود بسيطة من الترتيب الثالث لتوÙيق البيانات من " "الماضي القريب." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -478,7 +553,7 @@ "التقاويم\" (2002). وهي مبنية على \"خوارزميات Ùلكية\" (طبعة 1991) لـ Jean " "Meeus." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -488,7 +563,7 @@ "هذا الحل المهم نشره L. V. Morrison and F. R. Stephenson ÙÙŠ المقالة \"القيم " "التاريخية لخطأ الساعة الأرضية %1T وحسابات الكسوÙات\" (%2) مع زيادات ÙÙŠ (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -500,7 +575,7 @@ "صيغة لـ %1T باستخدام استمثال مبسط مع دالة تربيعية وجيب تمامية. ينبني هذا " "على دورة محتملة كما وصÙها Stephenson ÙÙŠ (%2). للاستزادة %3هنـــــا%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -515,26 +590,48 @@ "5000 سنة: من -1900 حتى +3000\" (2006). وهذه الصيغة مستخدمة أيضاً ÙÙŠ برنامج " "التقويم الÙلكي للشمس والقمر والكواكب SOLEX." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "مستخدم اÙتراضياً" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"هذا الحل بواسطة B. Banjevic, مبني على Stephenson & Morrison -1984 , " +"نشر ÙÙŠ المقالة Ancient eclipses and dating the fall of Babylonسنة " +"%1." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"هذا الحل وضعه س. إسلام Ùˆ Ù…. صادق Ùˆ Ù…. س. قريشي مبنياً على Meeus & Simons " +"2000 ØŒ ونشر ÙÙŠ المقالة العلمية Error Minimization of Polynomial " +"Approximation of DeltaT %1 ØŒ وعدّل من قبل سنا إسلام ÙÙŠ 2013Ù…." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "هذه صيغة رباعية لحساب %1T بمعاملات معرّÙØ© من قبل المستخدم." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "خطأ" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "القيم خارج نطاق هذه الحقبة ليس لها معنى" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -542,20 +639,21 @@ "متوسط الخطأ أقل من ثانية واحدة، والحد الأقصى للخطأ 1.9 ثانية والقيم خارج " "نطاق هذه الحقبة لامعنى لها" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "هذا الحل يعطي أصÙاراً للقيم خارج نطاق الحقبة الزمنية." -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "بدقة نموذجية تساوي ثانية واحدة وبقيم صÙرية خارج نطاق الحقبة" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "صالح للاستخدام ÙÙŠ الحقبة بين سنة %1 Ùˆ %2ØŒ %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "صالح للاستخدام ÙÙŠ الحقبة بين سنة %1 Ùˆ %2." @@ -721,52 +819,53 @@ msgid "Found" msgstr "الاسم موجود" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "أختر مجلد Ø­Ùظ لقطة الشاشة" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "حقل الرؤية عند بدء البرنامج: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "اتجاه الرؤية عند بدء البرنامج سمت/ارتÙاع: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" -msgstr "

    المؤلÙون" +msgstr "

    المؤلÙون

    " -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "

    للمراسلة" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "

    المؤلÙ" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "

    الرخصة" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "البرنامج النصي الشغَال‎: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "البرنامج النصي الشغَال‎: [لايوجد]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -774,16 +873,16 @@ "أنتهى تحميل أدلة النجوم الجديدة\n" "أعد تشغيل برنامج ستيللاريوم لرؤيتها.â€" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "لقد تمت إضاÙØ© جميع أدلة النجوم المتاحة" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "اجلب الدليل %1 من %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -792,7 +891,7 @@ "جاري التحميل %1 ...â€\n" "(تستطيع إغلاق هذه الناÙذة)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -803,7 +902,7 @@ "عدد النجوم: %2 مليون\n" "نطاق قدر لمعان النجوم: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -812,11 +911,11 @@ "خطأ ÙÙŠ تحميل %1‎:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "جاري التأكد من صحة الملÙ...â€" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -826,115 +925,123 @@ "المل٠Ùاسد" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "خوارزمية حساب" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "بدون تصحيح" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "إسلام، صادق وقريشي 2008ØŒ 2013" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "%1T معادلة مخصّصة لـ" @@ -1106,49 +1213,53 @@ msgid "OSX Developer: %1" msgstr "مطور نظام %1 :OSX" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "ناÙذة شاشة السكريبت" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "النواÙØ°" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Ù…Ùتاح المساÙØ©" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "â€%1 متر" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "لا يوجد وصÙ" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "لا يوجد شهب" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "المعدل الطبيعي للشهب" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "المعدل القياسي للبرشاويات" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "معدّل تساقط الشهب" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "المعدل الاستثنائي للأسديات" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "المعدل الأعلى (الأسديات لعام 1966)â€" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "موقع جديد" @@ -1254,19 +1365,19 @@ msgid "starchart" msgstr "وضع خرائط النجوم" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "خطأ ÙÙŠ البحث ÙÙŠ قاعدة معلومات Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "البحث ÙÙŠ قاعدة معلومات Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "جامعة ستراسبورج - Ùرنسا" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "جامعة هارÙارد - الولايات المتحدة" @@ -1280,32 +1391,40 @@ #: src/gui/ShortcutsDialog.cpp:501 src/ui_shortcutsDialog.h:199 msgid "Alternative shortcut" -msgstr "الختصار البديل" +msgstr "الاختصار البديل" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "معادلة مخصّصة لـ %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "مثال لمعادلة حساب %1T تبدو كالتالي:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "where" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "السنة" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "(OpenGL)هذا النظام لا يدعم مكتبة الرسومات المÙتوحة" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"الجهاز لديك لايدعم الحد الأدنى المطلوب من نظام الرسومات OpenGL 1.2 لتشغيل " +"ستيللاريوم. الرجاء تحديث برنامج مشغل بطاقة الشاشة (الدرايÙر لكارت الشاشة)." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "الشمس" @@ -1322,12 +1441,12 @@ msgstr "الأرض" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "القمر‎â€" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "المريخ" @@ -1425,7 +1544,7 @@ msgstr "ميتس" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "زحل" @@ -1723,204 +1842,233 @@ msgstr "إنيويت" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "الهندي الÙيدي" + +#: src/translations.h:171 msgid "Korean" msgstr "الكوري" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "لاكوتا" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "الماوري" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "الناÙاهو" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "النرويجي" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "البولونيزي" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "السامي" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "توبي - جواراني" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "تونغان" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "الغربي" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "جيرين" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "أشجار" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "مرتÙع الإعصار" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "المحيط" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "جارشينج" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "

    جولة ÙÙŠ مناظر الرصد" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "

    خسو٠قمري جزئي" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "

    خسو٠قمري كلّي" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "

    شاشة توقÙ" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "

    كسو٠الشمس 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "

    سكريبت البداية" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "

    البروج" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "

    الشروق والغروب الثلاثي للشمس ÙÙŠ عطارد" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "

    الكسو٠المزدوج من ديموس ÙÙŠ 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "

    الكسو٠المزدوج من ديموس ÙÙŠ 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "

    كسو٠من جبل أوليمبوس على المريخ 10 يناير 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "

    احتجاب الأرض والمشتري عام 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 عبورات وكسوÙين من ديموس 2027 Ù…" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "

    حاÙظ شاشة - النظام الشمسي" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "

    رحلة عبر الكوكبات" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "

    الشمس كما تظهر من سطح الكواكب المختلÙØ©" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "

    Ø£Ùضل المناظر للأرض من الأجرام الأخرى" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "

    عبور الزهرة" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "

    الأناليما" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "جولة ÙÙŠ التراثات الÙلكية" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "أحداث كوكب الأرض الÙلكية كما تبدو من عطارد" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "أحداث كوكب الأرض الÙلكية كما تبدو من الزهرة" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "أحداث كوكب الأرض الÙلكية كما تبدو من المريخ" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "الاستطالة العظمى وسطوع الأرض كما تبدو من المريخ" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "الاستطالة العظمى للأرض والمريخ كما تبدو من المشتري" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "

    استعرض كل مناظر الرصد المثبتة" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "استعرض كل تراث Ùلكي تضمنه البرنامج" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "

    مثال يعرض خسو٠قمري جزئي" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "

    مثال يعرض خسو٠قمري كلّي" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "

    جولة لانهائية بطيئة تستعرض أجراماً سماوية عشوائياً" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" "

    مثال يستعرض الكسو٠الكلّي للشمس عام 2009 ÙÙŠ رانغبور بنغلاديش" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "

    سكريبت ÙŠÙÙ†Ùّذ تلقائياً عند بدء البرنامج" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1929,7 +2077,7 @@ "

    هذا السكريبت يعرض كوكبات البروج. ويعني ذلك الكوكبات التي تقع على " "المسار الذي تقطعه الشمس ÙÙŠ الكرة السماوية خلال سنة." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1937,7 +2085,7 @@ "

    بسبب بعض الشذوذات ÙÙŠ مدار عطارد ودورانه تشرق الشمس وتغيب ÙÙŠ بع " "مناطقه 3 مرات مختلÙØ© ÙÙŠ اليوم الواحد." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1945,7 +2093,7 @@ "

    قبل أن يحدث الكسو٠بسبب المريخ بوقت قصير يأتي Ùوبوس من الخل٠" "ويتسبب ÙÙŠ كسو٠أول للشمس. يحدث بين كوكبتي العقرب والقوس ÙÙŠ 26 إبريل 2017" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1953,11 +2101,11 @@ "

    قبل أن يحدث الكسو٠بسبب المريخ بوقت قصير يأتي Ùوبوس من الخل٠" "ويتسبب ÙÙŠ كسو٠أول للشمس. يحدث بين كوكبتي الثور والتوأمين ÙÙŠ 23 يوليه 2031" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "قمر Ùوبوس يكس٠الشمس من جبل أولمبس ÙÙŠ 10 يناير 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1966,7 +2114,7 @@ "حجب Ùوبوس للأرض أمر شائع وكذلك حجبه للمشتري، ولكن حجب الإثنين ÙÙŠ Ù†Ùس اليوم " "أمر نادر. هذا أحد الأحداث ÙÙŠ 1-23-2048ØŒ بالسرعة الحقيقية." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1980,37 +2128,36 @@ "كليا بينما يعبر Ùوبوس بالظلام بين المريخ وديموس. عندما يتجلى Ùوبوس عن المريخ " "يكون مكسوÙا جزئيا ومعتم بظل المريخ ثم يتعيد ضياءه." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" -msgstr "" -"

    حاÙظ للشاشة لحوادث مختلÙØ© ÙÙŠ النظام الشمسي، مجموعها 171 حادثة." +"Screensaver of various happenings in the Solar System. 187 events in all!" +msgstr "حاÙظ للشاشة يعرض 187 حدثاً من الأحداث الÙلكية ÙÙŠ النظام الشمسي" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "جولة ÙÙŠ كوكبات التراث الÙلكي الغربي" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "انظر إلى الشمس من الكواكب الكبرى وبلوتو" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "اÙضل مناظر الأرض من أجرام النظام الشمسي الأخرى خلال القرن الواحد والعشرين" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "عبور الزهرة كما شوهد ÙÙŠ سيدني استراليا 6 يونيه 2012Ù…." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "عرض لظاهرة الاناليما - مسار الشمس السنوي ÙÙŠ السماء" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2018,1468 +2165,1506 @@ "لمعان المستعر العظيم الذي رصده تايخو براهي ÙÙŠ 1572. يجب تÙعيل إضاÙØ© " "المستعرات العظيمة." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" +"الاستطالة العظمى وسطوع الأرض كما تبدو من المريخ من سنة 2000 إلى سنة 3000 Ù…" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" +"الاستطالة العظمى للأرض كما تبدو من المشتري من سنة 2000 إلى سنة 3000 Ù…" + +#: src/translations.h:287 msgid "Andorra" msgstr "أندورا" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "الأمارات العربية المتحدة" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Ø£Ùغانستان" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "[جزر أنتيغوا وباربودا" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "جزر أنجويللا" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "ألبانيا" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "أرمينيا" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "جزر الأنتيل الهولندية" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "أنجولا" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "أنتاركتيكا - القارة المتجمدة الجنوبية" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "الأرجنتين" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "ساموا الأمريكية" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "النمسا" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "أستراليا" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "أروبا" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "أذربيجان" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "البوسنة والهرسك" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "بربادوس" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "بنغلادش" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "بلجيكا" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "بوركينا Ùاسو" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "بلغاريا" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "البحرين" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "بورندي" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "بينين" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "برمودا" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "بروناي دار السلام" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "بوليÙيا" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "البرازيل" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "الباهاما" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "بهوتان" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "جزيرة بوÙيت" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "بوتسوانا" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "بيلاروسيا" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "بيليز" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "كندا" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "جزيرة كوكوس" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "جمهورية الكونغو الديموقراطية" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Ø£Ùريقيا الوسطى" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "جمهورية الكونغو" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "سويسرا" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "ساحل العاج" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "جزيرة كوك" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "تشيلي" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "الكاميرون" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "الصين" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "كولومبيا" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "كوستاريكا" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "الصرب والجبل الأسود" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "كوبا" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "كيب Ùيردي" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "جزيرة الكريسمس" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "قبرص" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "جمهورية التشيك" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "ألمانيا" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "جيبوتي" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "الدانمارك" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "الدومينيك" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "جمهورية الدومينيك" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "الجزائر" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "الإكوادور" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "إستونيا" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "مصر" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "الصحراء الغربية" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "أرتيريا" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "أسبانيا" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "أثيوبيا" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Ùنلندا" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Ùيجي" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "جزر الÙولكلاند" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "ميكرونيجا" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "جزر الÙارو" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Ùرنسا" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "الجابون" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "المملكة المتحدة" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "جرانادا" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "جورجيا" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "غويانا الÙرنسية" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "غانا" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "جبل طارق" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "جرينلاند" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "جامبيا" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "جويانا" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "الجواديلوب" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "جويانا الإستوائية" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "اليونان" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "جورجيا الجنوبية وجزر الساندويتش" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "جواتيمالا" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "جوام" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "غينيا بيساو" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "جويانا" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "هونج كونج" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "جزر هرد ومكدونالد" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "هندوراس" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "كرواتيا" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "هايتي" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "المجر" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "أندونيسيا" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "إيرلندا" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "إسرائيل" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "الهند" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "مقاطعة المحيط الهندي البريطانية" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "العراق" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "إيران" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ايسلندا" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "إيطاليا" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "جامايكا" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "الأردن" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "اليابان" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "كينيا" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "قرغيزستان" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "كمبوديا" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "كيريباتي" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "القمر" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "سانت كتس ونيÙس" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "جمهورية كوريا الديموقراطية" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "كوريا" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "الكويت" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "جزر الكايمان" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "كازاخستان" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "لاو" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "لبنان" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "سانت لوتشيا" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "ليشتنستين" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "سريلانكا" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "ليبريا" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ليسوتو" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "ليتوانيا" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "لوكسمبورج" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "لاتÙيا" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "ليبيا" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "المغرب" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "موناكو" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "مولدوÙا" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "مدغشقر" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "جزر المارشال" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "مقدونيا" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "مالي" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "ميانمار" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "منغوليا" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "ماو" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "جزر ماريانا الشمالية" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "المارتينيك" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "موريتانيا" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "مونتيسيرات" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "مالطا" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "موريشيوس" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "المالديÙ" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "ملاوي" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "المكسيك" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "ماليزيا" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "موزمبيق" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "ناميبيا" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "نيو كالدونيا" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "النيجر" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "جزر النورÙولك" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "نيجيريا" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "نيكاراجوا" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "هولندا" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "النرويج" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "نيبال" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "ناورو" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "نيو" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "نيوزيلاندا" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "عمان" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "بنما" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "بيرو" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "بولونيزا الÙرنسية" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "بابوا نيو جويانا" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "الÙلبين" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "باكستان" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "بولندا" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "سانت بيير وميكويلون" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "بيتكايرن" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "بورتو ريكو" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Ùلسطين" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "البرتغال" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "بالاو" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "باراغواي" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "قطر" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "ريونيون" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "رومانيا" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "صربيا" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "الإتحاد الروسي" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "رواندا" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "السعودية" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "جزر سولومن" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "سيشل" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "السودان" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "السويد" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "سنغاÙورة" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "سانت هيلينا" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "سلوÙينيا" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "سÙالبارد وجان مايين" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "سلوÙاكيا" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "سيراليون" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "سان مارينو" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "السنغال" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "الصومال" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "سورينام" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "ساو توم وبرينسيب" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "السلÙادور" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "سوريا" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "سوازيلاند" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "الترك وجزر كايكوس" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "تشاد" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "المقاطعات الÙرنسية الجنوبية" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "توجو" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "تايلاند" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "طاجيكستان" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "توكيلاو" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "تيمور الشرقية" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "تركمانستان" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "تونس" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "تونغا" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "تركيا" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "ترينيداد وتوباجو" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "توÙالو" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "تايوان" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "تنزانيا" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "أوكرانيا" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "أوغندا" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "جزر الولايات المتحدة البعيدة" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "الولايات المتحدة" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "الأوروغواي" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "أزبكستان" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "الÙاتيكان" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "سانت Ùنسنت والجرينادين" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Ùنزويلا" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "جزر Ùرجن البريطانية" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "جزر Ùرجن - الولايات المتحدة" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Ùيتنام" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Ùانواتو" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "واليس ÙˆÙوتونا" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "ساموا" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "اليمن" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "مايوت" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "يوغوسلاÙيا" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "جنوب Ø£Ùريقيا" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "زامبيا" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "زمبابوي" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "التاريخ والوقت" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "أض٠يوماً نجمياً واحداً" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "أض٠شهراً نجمياً واحداً" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "أض٠أسبوعاً نجمياً واحداً" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "أض٠سنة نجمية واحدة" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "أض٠قرناً نجمياً" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "أض٠يوماً شمسياً واحداً" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "أض٠ساعة شمسية واحدة" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "أض٠أسبوعاً شمسياً واحداً" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "أض٠شهراً اقترانياً واحداً" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "أض٠شهراً تنÙّينيّاً واحداً" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "أض٠شهراً حضيضيّاً واحداً" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "أض٠شهراً مدارياً واحداً" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "أض٠سنة تنينية واحدة" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "أض٠سنة استوائية متوسطة واحدة" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "أض٠قرناً استوائياً متوسطاً" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "بطيء معدل التنÙيذ" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "قلّÙÙ„ من سرعة الزمن" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "قلّÙÙ„ من سرعة الزمن قليلاً" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "سرّÙع معدل التنÙيذ" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "زد من سرعة الزمن" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "زد من سرعة الزمن قليلاً" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "جمّÙد تنÙيذ السكريبت" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "استأنÙ٠تنÙيذ السكريبت" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "â€Ø§Ø³ØªØ®Ø¯Ù… الوقت الحالي‎â€" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "اجعل سرعة التنÙيذ طبيعية" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "اضبط على السرعة الطبيعية للزمن" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "أوق٠الزمن" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "أوق٠تنÙيذ السكريبت" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "اطرح يوماً نجمياً واحداً" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "إطرح شهراً نجمياً واحداً" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "اطرح أسبوعاً نجمياً واحداً" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "إطرح سنة نجمية واحدة" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "اطرح قرناً نجمياً" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "اطرح يوماً شمسياً واحداً" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "اطرح ساعة شمسية واحدة" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "اطرح أسبوعاً شمسياً واحداً" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "اطرح شهراً اقترانياً واحداً" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "اطرح شهراً تنÙّينيّاً واحداً" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "اطرح شهراً حضيضيّاً واحداً" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "اطرح شهراً مداريّاً واحداً" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "اطرح سنة تنينية واحدة" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "اطرح سنة استوائية متوسطة واحدة" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "اطرح قرناً استوائياً متوسطاً" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "اختيارات العرض" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "اقلب المنظر اÙقيا" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "نَسَق الشاشة الكاملة" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "الغلا٠الجوي" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "الشبكة السمتية" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "الجهات الاربع" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "رسومات المجموعات النجمية" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "حدود المجموعات النجمية" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "أسماء المجموعات النجمية" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "خطوط المجموعات النجمية" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "صور السدم الخلÙية" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "صور خلÙية لأجرام الÙضاء السحيق" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "شبكة 2000 الكسوÙية" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "الخط الكسوÙÙŠ" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "خط الاستواء" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "الشبكة الاستوائية" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "شبكة 2000 الاستوائية" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "الضباب" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "شبكة الإحداثيات المجرية" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "المستوى المجرÙّي" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "الأرض" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "خط الأÙÙ‚" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "خط الزوال" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "السدم" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "أجرام الÙضاء السحيق" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "نَسَق الرؤية الليلية" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "أسماء الكواكب" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "مدارات الكواكب" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "مسار الكوكب" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "النجوم" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "أسماء النجوم" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "اقلب المنظر عموديا" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "منوعات" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "إخÙاء تلقائي لشريط الأدوات الأÙقي" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "إخÙاء تلقائي لشريط الأدوات العمودي" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "عد إلى مكانك" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "خروج" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "انسخ معلومات الجسم المختار إلى الحاÙظة" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "احÙظ لقطة الشاشة" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "حوّÙÙ„ بين نظام حامل التلسكوب السمتي والإستوائي" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "إظهار وإخÙاء شريط الأدوات الرئيس والجانبي" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "التنقل والاختيار" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "اجعل الجرم المختار ÙÙŠ المركز‎" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "اجعل كوكب الراصد هو الكوكب المختار" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "تعقب الجرم" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "قرّÙب الجرم المختار" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "بعّÙد الجرم المختار" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "قياس البعد الزاوي" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "درجات البوصلة" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "أظهر الكواكب الخارجية" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "ناÙذة إعدادات الكواكب الخارجية" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "بيانات الرصد" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "ناÙذة إعدادات تطبيق الرصد" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "إعدادات ميزة العدسات العينية" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "منظر العدسة العينية" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "أظهر الشعرتين المتقاطعتين" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "القائمة المنبثقة للعدسات" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "إطار مستشعر الصورة" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "دوائر أداة تلراد للتوجيه" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "اختر التلسكوب التالي" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "اختر العدسة العينية التالية" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "اختر التلسكوب السابق" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "اختر العدسة العينية السابقة" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "أظهر النجوم النابضة" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "ناÙذة إعدادات النجوم النابضة" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "أظهر الكوازارات" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "ناÙذة إعدادات الكوازارات" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "ناÙذة ضبط إعدادات الأقمار الصناعية" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "عرض الأقمار الصناعية" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "أسماء الأقمار الصناعية" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "ناÙذة إعدادات المستعرات الموثقة تاريخياً" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "ناÙذة إعدادات المستعرات اللامعة" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "حرّÙÙƒ التلسكوب إلى إحداثيات معيَّنة" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "أظهر إحصائيات مولّÙد الرسومات" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "البرامج النصيةâ€" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Ù†ÙØ° سكربت مناظر الرصد من ملÙ" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "أظهر وكبر القمر" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "ناÙذة ضبط الإعدادات" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "ناÙذة التاريخ/الوقت" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "ناÙذة المساعدة" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "ناÙذة الموقع" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "ناÙذة البحث" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "ناÙذة الاختصارات" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "ناÙذة خيارات العرض والسماء" @@ -3505,7 +3690,7 @@ msgstr "تحديث" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "الموقع" @@ -3521,10 +3706,10 @@ msgid "Return to default" msgstr "عد إلى الموقع الأصلي" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "احذÙ" @@ -3533,7 +3718,7 @@ msgstr "أض٠إلى القائمة" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "خط العرض" @@ -3546,12 +3731,12 @@ "مثلاً:â€" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "خط الطول" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "الارتÙاع" @@ -3575,363 +3760,409 @@ msgid "Planet:" msgstr "الكوكب" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "ابحث عن جرم" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "ابحث باسم الجرم أو بالإحداثيات" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "استخدم Ù…Ùتاح TAB للتنقل بين العناصر المطابقة لحرو٠البحث" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "أيوتا" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "ألÙا" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "بيتا" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "جاما" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "دلتا" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "إبسلون" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "زيتا" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "إيتا" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "ثيتا" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "كابا" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "لامدا" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "ميو" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "نيو" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ساي" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "أوميكرون" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "باي" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "رو" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "سيجما" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "تاو" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "أبسيلون" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "ÙÙŠ" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "كاي" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "بساي" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "أوميجا" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "الحرو٠الإغريقية لتسميات باير للنجوم" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "اسم الجرم" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "الميل / المطلع المستقيم (J2000)" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "الإحداثيات" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "بعض الأجرام لايمكن البحث عنها إلا بعد تÙعيل الإضاÙØ© الخاصة بها" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "الأسماء بالإنجليزية" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "ابحث ÙÙŠ القائمة" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "القوائم" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "على الشبكة SIMBAD قاعدة معلومات" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "SIMBAD وسّÙع البحث ليشمل قاعدة معلومات" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "الخادم" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "خيارات البحث" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "استخدم التكملة التلقائية من بداية الكلمات Ùقط" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "الخيارات" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "الأسماء بالإنجليزية" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "ابحث ÙÙŠ القائمة" - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "القوائم" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "العرض" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "السماء" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "التوسيمات" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "منظر الرصد الطبيعي" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "التراث الÙلكي" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "الأسماء والعلامات" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "الكواكب" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"أسماء وعلامات الأجرام السماوية السحيقة (الحشود النجمية، المجرّات، السدم)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "أجرام الÙضاء السحيق" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "الكواكب Ùˆ التوابع" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "أظهر الكواكب" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "أظهر علامات الكواكب" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "أظهر مدارات الكواكب" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "قم بمحاكاة سرعة الضوء" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "كبّÙر الحجم الظاهري للقمر" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "تغيير منظر الرصد تلقائياً عندما يتغير الكوكب" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "اختيار منظر الرصد تلقائياً" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "أظهر الغلا٠الجوي" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "التلوث الضوئي:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "الضغط، الحرارة، معامل الانطÙاء" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "إعدادات الانكسار/الانطÙاء" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "المقياس المطلق" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "المقياس النسبي" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "سطوع درب التبّانة" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "التلألؤ" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "تعتيم النجوم الباهتة عندما تكون الأجرام اللامعة منظورة" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "تكي٠العين الديناميكي" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "وابل الشهب" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "معدل عدد الشهب السمتي كل ساعة" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "شهاب/ساعة" +msgstr "المعدل السمتي ÙÙŠ الساعة" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "حد القدر (للعين المجردة أو بالمنظار الثنائي)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "تحديد قدر السطوع" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "النجوم حتى قدر سطوع" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "تحديد النجوم الظاهرة حسب مقاديرها" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "السدم حتى قدر سطوع" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"تحديد عرض الجرام السحيقة (الحشود النجمية والمجرات والسدم) حسب مقاديرها" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "المجموعات النجمية" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "أظهر الخطوط" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "أظهر الأسماء" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "أظهر الحدود" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "أظهر الرسومات" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "سطوع الرسومات:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "الكرة السماوية" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "أظهر خط الاستواء" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "أظهر خط الزوال" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "أظهر خط الأÙÙ‚" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "أظهر الخط الكسوÙÙŠ" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "أظهر خط المستوى المجرÙّي" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "الإسقاط" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "أضÙ/احذ٠مناظر الرصد الطبيعية" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "أظهر سطح الأرض" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "أظهر الضباب" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "استخدم الكوكب Ùˆ الموقع للمنظر الطبيعي ليكون هو مكان الراصد" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "اجعل هذا المشهد الطبيعي هو الاÙتراضي" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "استخدم إعدادات السطوع للمنظر الأرضي" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "اجعل التراث الÙلكي الحالي هو الاÙتراضي" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "مرئي" @@ -3986,7 +4217,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "اتجاه الرؤية عند التشغيل" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "معلومات الجرم المختار" @@ -4002,11 +4233,8 @@ msgid "Display no information" msgstr "لاتظهر أي معلومات" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "لاتظهر أي معلومات" @@ -4077,7 +4305,7 @@ #: src/ui_configurationDialog.h:1029 msgid "Longitude/Latitude (J2000)" -msgstr "خط اطول/خط العرض (2000)" +msgstr "(خط الطول/خط العرض (2000" #: src/ui_configurationDialog.h:1031 msgid "Topocentric equatorial coordinates" @@ -4148,7 +4376,7 @@ msgstr "ثوانÙ" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "تاريخ ووقت البدء" @@ -4160,41 +4388,45 @@ msgid "Other:" msgstr "أخرى:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "استخدم التاريخ والوقت المحليين الحاليين" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "إستخدام القيمة الحالية" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "ابدأ البرنامج باستخدام وقت وتاريخ النظام" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "وقت Ùˆ تاريخ النظام" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "يضبط محاكاة الوقت لمثل هذه اللحظة من اليوم عندما يبدأ ستيللاريوم" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "تاريخ النظام عند:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "تصحيح الوقت" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "حرّÙر المعادلة" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "خيارات عرض القبة السماوية" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4202,51 +4434,51 @@ "يستعمل تشوه المرآة الكروية عند عرض ستيللاريوم على مرآة كروية مستخدمة ÙÙŠ " "أنظمة القبب السماوية المنخÙضة التكلÙØ©" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "تشوه المرآة الكروية" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "لاتظهر اي شيء خارج دائرة مركزية ÙÙŠ المشهد الرئيسي" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "عرض على شكل قرص" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "إخÙاء المجموعات النجمية الاخرى عند النقر على أحدها" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "اختر مجموعة نجمية واحدة" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "اجعل الأسماء موازية للأÙÙ‚" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "اجعل الأسماء موازية للأÙÙ‚ الأقرب" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "إظهار وإخÙاء عرض خلÙية السديم" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "أظهر زر خلÙية السديم" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "إزرار قلب المشهد عمودياً وأÙقياً.â€" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "أظهر أزرار قلب المشهد ÙÙŠ شريط التحكم" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4254,92 +4486,99 @@ "عندما يكون \" زر التصغير الذاتي\" ممكناً Ùسو٠يضبط الاتجاه الأولي للمشهد " "أيضاً" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "التصغير الذاتي يعود إلى الاتجاه الأولي للمشهد" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"عرض الظل على الكواكب والأقمار (لهذه الميزة تحتاج OpenGL version 2 أو أحدث)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "ارسم الظل الشمسي" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "لقطات الشاشة" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "مجلد لقطة الشاشة" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "عكس الألوان" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "تحديثات دليل النجوم" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "اضغط هنا لبدء التحميل" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "حمّÙÙ„ هذا المل٠لإظهار نجوم اكثر ايضاً" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "ابدأ التحميل من جديد" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "أعد المحاولة" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "أوق٠التحميل. تستطيع دائماً أن تبدأ مجدداً ÙÙŠ وقت لاحق." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "إلغاء" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "أغلق الناÙذة عندما يبدأ السكريبت ÙÙŠ العمل" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "شغّÙÙ„ السكريبت المختار" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "أوق٠السكريبت الشغَّال" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "حمّÙÙ„ عند بدء التشغيل" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "اضبط الإعدادات" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "الرئيسي" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "معلومات" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "التنقل" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "الأدوات" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "الإضاÙات" @@ -4514,12 +4753,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "

    يعرض درجات البوصلة بموازاة الأÙÙ‚" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "العدسة العينية" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4529,164 +4768,164 @@ "(المحاكاة هي للتكبير وحقل الرؤية Ùقط.) ويمكن أيضاً محاكاة إطار مستشعر " "الكاميرا ومنظر التوجيه من خلال أداة Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "الرجاء اختيار جرم قبل التحول إلى المنظر عبر العدسة العينية." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&العدسة السابقة" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&العدسة التالية" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "اختر &العدسة" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "أظهار الشعرتين" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "إعدادات العدسات العينية" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "إظهار إطار مستشعر الكاميرا" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "إظهار دوائر التلراد" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&المستشعر السابق" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&المستشعر التالي" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&اختر المستشعر" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "تدوير المستشعر" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&إعادة التدوير للوضع الأصلي" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "العدسة العينية #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "العدسة العينية #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "طول العدسة البؤري: %1 مم" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "حقل الرؤية الظاهري للعدسة: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "العدسة #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "العدسة #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "العدسة: لايوجد" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "التلسكوب #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "التلسكوب #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "التكبير: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "حقل الرؤية: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "الأبعاد: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "المستشعر #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "المستشعر #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&العدسة" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&العدسة السابقة" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&العدسة التالية" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&التلسكوب" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&التلسكوب السابق" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&التلسكوب التالي" @@ -4758,65 +4997,70 @@ msgid "Apparent field of view of the ocular" msgstr "حقل الرؤية الظاهري للعدسة" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "التكبير: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "العدسة: لايوجد" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "التكبير: لاينطبق" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "تكبير العدسة" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "البعد البؤري للعدسة العينية" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "التدوير: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "التكبير المتاح بواسطة المنظار الثنائي" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "حقل الرؤية الÙعلي المتاح بواسطة هذا المنظار الثنائي" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "التكبير الذي تعطيه هذه العدسة مع العدسة العينية وهذا التلسكوب" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "حقل الرؤية الحقيقي الذي تعطيه هذه العدسة مع العدسة العينية وهذا التلسكوب" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "

    إضاÙØ© العدسة العينية" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" -msgstr "الإصدار" +msgstr "

    الإصدار

    " + +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "ميزة عدسة بارلو" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "

    تعريÙ" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4829,7 +5073,7 @@ "الرقمية. عند أول استخدام، سيضي٠لك التطبيق نماذج من العدسات العينية " "والمستشعرات ليسهل لك البداية." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4845,7 +5089,7 @@ "استخدام هذا الخيار ربما لايكون الشاشة مستغلة كما يجب بكاملها لتوضيح المشهد، " "لذلك أنصح بعدم استخدامه إلا عند الحاجة." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4855,7 +5099,7 @@ "أردت أن يكون الاتجاه إلى الشمال، ولم أستطع ذلك. حالياً الاتجاه هو لأعلى " "الشاشة." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4869,121 +5113,129 @@ "2.0%1 Ùˆ 4.0%1 تساعدك ÙÙŠ توقع مايمكن رؤيته بالعين المجردة من خلال كاش٠" "التلراد أو مايشابهه من الأدوات." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" "

    إذا وجدت مشاكل ÙÙŠ هذا التطبيق، تÙضل بإخباري. أرجو لك المتعة." -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "

    Ù…Ùاتيح الاختصار" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" "

    Ù…Ùاتيح الاختصار الخاصة بهذا التطبيق يمكن تحديدها تحت علامة " "التبويب \"عام\"" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[لم يعرّ٠أي Ù…Ùتاح]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "إظهار وإخÙاء المشهد الدائري من خلال العدسة العينية" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Ùتح قائمة التنقّل المنبثقة" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "ÙعّÙÙ„ Ùقط عند اختيار جرم سماوي" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "عدّل حجم دائرة المشهد" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "تطبيق الحد من عرض النجوم حسب قدر اللمعان ÙˆÙتحة عدسة التلسكوب." + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "تحديد عرض النجوم حسب قدر اللمعان" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Ù…Ùاتيح الأوامر" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "تÙعيل المشهد عبر العدسة العينية" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Ùتح قائمة الخيارات المنبثقة" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "واجهة الاستخدام" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "لوحة تحكم ظاهرة على الشاشة" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "استخدم الدرجات والدقائق لحقل الرؤية الخاص بالمستشعر" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "عام" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "العدسات العينية" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "أضÙ" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "الاسم" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "حقل الرؤية الظاهري" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "الطول البؤري" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "النسبة البؤرية" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "المنظار الثنائي" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "العدسات" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "التكبير:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "مضاع٠التكبير" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -4991,74 +5243,75 @@ "قيمة التكبير أكبر من 1 تزيد الطول البؤري (عدسات بارلو)ØŒ وقيمة التكبير أقل من " "1 تنقص من الطول البؤري (عدسات شابلي)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "المستشعرات" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "الدقة س (بكسل)" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "الدقة ص (بكسل)" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "عرض الشريحة (مم)" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "طول الشريحة (مم)" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "عرض البكسل (ميكرون)" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "طول البكسل (ميكرون)" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "التلسكوبات" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "القطر" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "قلب المشهد Ø£Ùقياً" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "قلب المشهد رأسياً" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "عن" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "الأقمار الصناعية" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5066,7 +5319,7 @@ "

    تحديد مواقع الأقمار الصناعية ÙÙŠ مدارها على الأرض بناءاً على " "بيانات NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" @@ -5074,81 +5327,141 @@ "satellites.json \n" "لم يعد متواÙقاً مع البرنامج - سو٠يستخدم المل٠الاÙتراضي" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "الأقمار الصناعية المرئية" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "الأقمار الصناعية العلمية" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "أقمار الاتصالات" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "أقمار الملاحة" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "الأقمار التي تبث لهواة الراديو" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "أقمار الطقس" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "الأقمار ذات المدار الثابت" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "الأقمار المتوقÙØ© عن العمل" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "أقمار نظام تحديد الموقع" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "أقمار إيريديوم" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "تلسكوب هابل" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "المحطة الÙضائية الدولية" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "‎رقم الدليل‎" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "‎التصني٠العالمي‎" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "قمر صناعي" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "‎البعد عن الراصد بالكيلومترات: ‎%1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "‎معدل تغير السرعة كم/Ø«: ‎%1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "‎الارتÙاع بالكيلومتر: ‎%1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "‎ إحداثيات الموقع الأرضي تحت القمر مباشرة - الطول/العرض: ‎%1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "‎TEME الإحداثيات بالكيلومتر حسب: ‎%1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "‎TEME السرعة كم/Ø« حسب:‎%1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "القمر الصناعي والراصد ÙÙŠ ضوء الشمس" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "القمر الصناعي ممكن أن يرى" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "القمر الصناعي ÙÙŠ ظل الأرض" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "القمر الصناعي لايمكن رؤيته" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 ‎ميجا هرتز ‎(%2%3 ‎كيلوهرتز ‎)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "

    ميزة الأقمار الصناعية الإضاÙية لبرنامج ستيللاريوم" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5156,18 +5469,18 @@ "

    ميزة الأقمار الصناعية تتنبأ بموقع القمر الصناعي ÙÙŠ مداره حول " "الأرض." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "

    ملاحظات للمستخدمين" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "

    الأقمار الصناعية ومداراتها تظهر Ùقط عندما يكون الراصد على كوكب " "الأرض." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5177,7 +5490,7 @@ "قصير، أيام معدودة أو أسابيع أو على الأكثر شهر ÙÙŠ الماضي والمستقبل. توقع أن " "تجد تنبؤات غريبة جداً خارج نطاق هذا الوقت." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5186,7 +5499,7 @@ "وللحصول على بيانات ناÙعة، يلزمك تحديث بيانات TLE بصÙØ© متكررة." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5197,7 +5510,7 @@ "الاÙتراضي %3. المل٠القديم سيحÙظ بنسخة احتياطية اسمها %4. وستجده على مسار " "معلومات المستخدم، تحت \"modules/Satellites/\"

    " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5206,11 +5519,11 @@ "ناقصة أو غير موجودة أو Ùيها بعض الأخطاء." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "

    تحديث بيانات TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5220,7 +5533,7 @@ "من مصادرها ÙÙŠ الإنترنت. والوقت الاÙتراضي لتحديث هذه البيانات هو بعد مرور 72 " "ساعة على آخر تحديث. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5231,7 +5544,7 @@ "حاسبك الشخصي. يجب أن يكون تنسيق المل٠مثل التحديثات الموجودة على Celestrak " "(انظر %1 كمثال على ذلك)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5239,11 +5552,11 @@ "

    ملاحظة:إذا كان اسم القمر الصناعي ÙÙŠ بيانات التحديث يحتوي " "أي عبارة بين قوسين مربعين Ùسو٠تحذ٠هذه المعلومة قبل استخدام البيانات." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "

    إضاÙØ© أقمار صناعية جديدة" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5255,11 +5568,11 @@ "علامة التبويب \"الأقمار الصناعية\" واضغط على زر \"+\". اختر الأقمار الصناعية " "التي تريد إضاÙتها واضغط على زر \"أضÙ\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "

    ملاحظات تقنية" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5267,7 +5580,7 @@ "

    يتم حساب الموقع باستخدام طريقة SGP4 & SDP4 وباستخدام بيانات NORAD " "TLE كمدخلات. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5276,24 +5589,26 @@ "Spacetrack Report # 3 (ويحتوي على Spacetrack Report #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "

    انظر %1هذه الوثيقة%2 للتÙاصيل." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "

    روابط" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5303,31 +5618,34 @@ "وضع \"%1\" ÙÙŠ رأس الموضوع عند التبليغ عن عطل أو عند تحرير السؤال." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "

    إذا كان لديك سؤال يمكنك %1الحصول على جواب هنا%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "

    تستطيع التبليغ عن أخطاء البرنامج %1هنا%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5335,309 +5653,353 @@ "

    إذا رغبت ÙÙŠ طلب ميزة جديدة، يمكنك التبليغ عن مشكلة وتحديد " "المستوى (severity) بكلمة \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "التحديث عبر الإنترنت غير Ù…Ùعَّل" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "التحديث يتم حالياً..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "التحديث التالي: أقل من دقيقة" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "التحديث التالي: %1 دقيقة" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "التحديث التالي: %1 ساعة" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "حدّÙØ« البيانات الآن" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "حدّÙØ« من الملÙات" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "حصل خطأ ÙÙŠ التحديث" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "تم تحديث %1 من %2 من الأقمار الصناعية؛ Ùˆ %3 Ù…Ùقودة" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "%1%2 قمراً صناعياً تم تحديثها؛ %3 تم إزاتها Ùˆ %4 تم إضاÙتها" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "%1%2 قمراً صناعياً تم تحديثها؛ %3 تم إضاÙتها Ùˆ %4 Ù…Ùقودة." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[مصدر جديد]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "حدّÙØ« البيانات الآن" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "حدّÙØ« من الملÙات" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[خطأ ÙÙŠ حساب المدار]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[ كل المضاÙØ© حديثاً]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[كل التي لاتظهر ÙÙŠ البرنامج]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[كل التي تظهر ÙÙŠ البرنامج]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[الكل]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "مجموعة جديدة..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "TLE اختر مل٠التحديث" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "... جاري تنزيل البيانات" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "ستيلاريوم يقوم بتنزيل البيانات من مصدر التحديثات. الرجاء الانتظار" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "TLE اختر ملÙات مصدر" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "... معالجة المعلومات" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "لم يتمكن ستيللاريوم من تنزيل البيانات. حاول مرة أخرى لاحقاً." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "رقم الدليل: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "إعدادات الأقمار الصناعية" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "من مصادر الإنترنت TLE حدث قوائم" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "التحديثات" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "حدّÙØ« من مصادر الإنترنت" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "حدث بيانات الأقمار الصناعية من مصادر شبكة الإنترنت" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "آخر تحديث" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "حين التحديث، أض٠كل الأقمار الجديدة من المصادر المختارة" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"حين التحديث، أزل كل الأقمار الصناعية التي لم تعد موجودة ÙÙŠ قوائم مصادر " +"التحديث" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "حدّÙØ« البيانات كل (ساعة)" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "الأسماء" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "حجم الخط لاسم القمر الصناعي (بكسل)" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "خطوط المدارات" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "عدد القطع المستخدمة لرسم خط المدار" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "عدد قطع الخطوط" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "مدة كل قطعة بالثواني" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "طول القطعة" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "عدد القطع المستخدمة لرسم نهاية خط المدار" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "طول نهاية الخط" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "استرجع الإعدادات الأصلية" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "احÙظ الإعدادات الحالية كإÙتراضية" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "الضبط" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "أنقر نقرة مزدوجة على القمر الصناعي للبدء ÙÙŠ متابعته" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "أض٠أقمار صناعية" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "أزل القمر الصناعي المختار" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "احÙظ التغييرات" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "رقم الدليل:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "أجعل الأقمار المختارة من التي تظهر ÙÙŠ البرنامج" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "أظهر ÙÙŠ البرنامج" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "أظهر خط المدار للأقمار المختارة" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "المدار" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "رقم الدليل:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "لاتحدث الأقمار الصناعية المختارة أو أزلها وقت التحديث" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "لاتحدث" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "الوصÙ" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "المجموعة" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "قائمة مجموعات منسَّقة بالÙواصل" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "بيانات TLE" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "بيانات العاصر المدارية على شكل سطرين من NORAD" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "أزل القمر الصناعي المختار" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "أض٠أقمار صناعية" - -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "احÙظ التغييرات" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"علّÙÙ… على المصدر لإضاÙØ© الأقمار الصناعية الموجودة Ùيه تلقائياً إذا لم تكن " +"موجودة أصلاً ÙÙŠ مجموعة الأقمار." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" "أدخل أو عدل رابط مصدر البيانات. التغييرات تحÙظ بالضغط على زر الإدخال Enter" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "أض٠مصدراً جديداً" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "استبعد المصدر المختار" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "المصادر" @@ -5673,11 +6035,11 @@ msgid "Discard" msgstr "أهمل هذه القائمة" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "التحكم بالمقراب (التلسكوب)â€" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5685,12 +6047,12 @@ "

    هذا البرنامج الإضاÙÙŠ يتيح لستيلاريوم إرسال أوامر لتحريك التلسكوب " "على الحامل المحوسب." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "حرّÙÙƒ التلسكوب #%1 إلى الجرم المختار" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "حرّÙÙƒ التلسكوب #%1 إلى النقطة ÙÙŠ مركز الشاشة" @@ -6088,62 +6450,62 @@ "الشريط السÙلي." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "يناير" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Ùبراير" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "مارس" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "إبريل" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "مايو" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "يونية" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "يولية" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "أغسطس" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "سبتمبر" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "أكتوبر" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "نوÙمبر" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "ديسمبر" @@ -6300,7 +6662,7 @@ msgstr "هذه الخيارات تحدد كي٠يكون عرض الوقت والتاريخ ÙÙŠ الشريط السÙلي" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "تنسيق عرض الوقت" @@ -6318,7 +6680,7 @@ msgstr "24 ساعة" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "تنسيق عرض التاريخ" @@ -6334,11 +6696,11 @@ msgid "mm-dd-yyyy" msgstr "Ø´ Ø´ - ÙŠ ÙŠ - س س س س" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "واجهة المستخدم النصية" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6346,144 +6708,144 @@ "

    برنامج إضاÙÙŠ يطبّÙÙ‚ الواجهة النصية المستخدمة ÙÙŠ سلسلة الاصدارات " "0.9 ØŒ المستخدمة ÙÙŠ أنظمة صالات القبب الÙلكية." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "جرم النظام الشمسي" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "التاريخ والوقت الحاليين" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "ضبط المنطقة الزمنية" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Ù…Ùاتيح الأيام" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "الضبط المسبق للتاريخ والوقت عند بدء البرنامج" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "استخدم تاريخ ووقت النظام عند البدء" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "استخدم التاريخ والوقت المضبوطين مسبقاً عند البدء" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "Ø´ Ø´ ÙŠ ÙŠ س س س س" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ÙŠ ÙŠ Ø´ Ø´ س س س س" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "س س س س Ø´ Ø´ ÙŠ ÙŠ" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12 ساعة" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24 ساعة" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "اللغة" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "أظهر النجوم" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "الألوان" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "أسماء السدم" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "علامات السدم" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "خط المستوى المجرÙّي" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "التأثيرات" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "التقريب والتبعيد اليدوي" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "مضاع٠درجات قدر اللمعان" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "سطوع درب التبانة:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "تكرار اسم السديم:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "مدة التقريب والتبعيد:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "مهلة إخÙاء المؤشر" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "إمكانية ضبط موقع منظر الرصد" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "تشغيل البرنامج النصي (السكريبت) المحلي" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "وق٠تشغيل البرنامج النصي" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "برنامج نصي موجود على سي دي أو دي ÙÙŠ دي" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "الإدارة" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "حمÙّل الإعدادات الاÙتراضية" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "احÙظ الإعدادات الحالية" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "أوق٠تشغيل البرنامج" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[لايوجد طرÙية لواجهة المستخدم النصية]" @@ -6519,16 +6881,16 @@ "المتوÙرة على الشبكة. لازال تحت التطوير." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "استÙسر من موقع مركز الكويكبات %1" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "ستحصل على تنيجة Ùقط عندما يكون الاستÙسار ناجحاً." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6536,7 +6898,7 @@ "يمكن تحديد المذنبات والكويكبات بأرقامها، أو أسمائها الإنجليزية أو الاسم " "المعطى وقت الاكتشاÙ." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6719,40 +7081,47 @@ msgid "Solar System" msgstr "النظام الشمسي" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "المستعرات الموثقة تاريخياً" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"

    تطبيق إضاÙÙŠ يعرض بعض المستعرات الموثقة تاريخياً بقدر لمعان بصري " -"أعظم من القدر العاشر." +"

    هذه الإضاÙØ© تتيح لك الاطلاع على بعض المستعرات العظمى اللامعة " +"الموثقة تاريخياً." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "مستعر عظيم" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "نوع المستعر: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "‎تاريخ اللمعان الأقصى‎: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "

    إضاÙØ© المستعرات الموثقة تاريخياً" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " msgstr "" -"

    تطبيق إضاÙÙŠ يعرض بعض المستعرات الموثقة تاريخياً والتي يزيد " -"لمعانها عن القدر العاشر:

    " +"هذه الإضاÙØ© تتيح لك الاطلاع على بعض المستعرات العظمى اللامعة الموثقة " +"تاريخياً: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." +msgstr "كل هذه المستعرات العظمى تكون أكثر لمعاناً بـ %1 عند أقصى لمعان." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "

    منحنيات السطوع" @@ -6765,7 +7134,7 @@ "plugin." msgstr "" "

    هذا التطبيق يستخدم نموذجاً مبسطاً لمنحنيات السطوع للمستعرات " -"النختلÙØ©. يمكن الاطلاع على النماذج المعتادة لمنحنيات السطوع %1على هذا " +"المختلÙØ©. يمكن الاطلاع على النماذج المعتادة لمنحنيات السطوع %1على هذا " "الرابط%2 (الإحداثي الأيمن بالأيام). هذا هو النموذج المستعمل ÙÙŠ هذا التطبيق." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:118 @@ -6773,7 +7142,7 @@ msgstr "

    شكر" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "

    نشكر الأشخاص التالية أسماؤهم لمساهماتهم وتعليقاتهم القيمة" @@ -6789,14 +7158,14 @@ "والتجريبية" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "ÙÙŠ روسيا" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6806,8 +7175,9 @@ "الدليل تجدها %1هنا%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "االتحديث التالي: %1 يوماً" @@ -6825,29 +7195,116 @@ msgstr "إعدادات تطبيق \"المستعرات الموثّقة تاريخياً\" الإضاÙÙŠ" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "حدّث الدليل من الإنترنت" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "حدّÙØ« من مصادر الإنترنت" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "حدّث كل (بالأيام)" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[معلومات التحديث القادم]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "المستعرات اللامعة" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "

    إضاÙØ© تعرض بعض المستعرات اللامعة ÙÙŠ مجرة درب التبانة." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "‎النوع‎: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "مستعر" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "إضاÙØ© المستعرات اللامعة" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"

    يمكنك البحث عن المستعرات بواسطة اسمها العام أو الاسم المخصص " +"الرسمي مثلاً: Nova Cygni 1975 أو 'V1500 Cyg" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"

    هذه الإضاÙØ© تستخدم نموذجاً بسيطاً لحساب منحنى الضوء للنجوم " +"المستعرة." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"

    هذا النموذج يعتمد على تناقص اللمعان بمقدار %1 من القيمة العظمى، " +"حيث %1 تكون 2، 3، 6 و 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"

    إذا لم يكن هناك قيمة معروÙØ© لتناقص اللمعان Ùإن هذه الإضاÙØ© تستخدم " +"قيمة عامة لها." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"

    إذا أردت معرÙØ© المزيد عن هذه الإضاÙØ© وتاريخها وطريقة تنسيق الدليل " +"Ùيها يمكنك %1 الحصول على المعلومات هنا %2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "تم تحديث المستعرات" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "إعدادات المستعرات اللامعة" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "إعدادات إضاÙØ© المستعرات اللامعة" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "الكوازارات" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6866,11 +7323,11 @@ msgid "Z (redshift): %1" msgstr "‎ Z (الإزاحة الحمراء‎): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "إضاÙØ© الكوازارات" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6880,40 +7337,50 @@ "السادس عشر. مجموعة من الكوازارات تم استخلاصها من \"Quasars and Active " "Galactic Nuclei\" الطبعة الثالثة عشر." -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "الكوازارات محدّثة" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "إعدادات الكوازارات" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "إعدادات تطبيق الكوازارات الإضاÙÙŠ" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "نَسَق العرض للكوازارات" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "إعدادات الكوازارات" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "ارسم كل الكوازارات بدون أسماء" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "ÙعÙّل عرض توزيع الكوازارات" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "ÙعّÙÙ„ العرض وقت بدء البرنامج" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "أظهر زر الكوازارات على شريط المهام" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "النجوم النابضة" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7041,11 +7508,11 @@ "نجم نيوتروني منعزل مع انبعاث أشعة سينية حرارية ولكن من دون انبعاث موجات " "راديوية محسوسة" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "إضاÙØ© النجوم النابضة" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7055,67 +7522,71 @@ "بيانات النجوم النابضة مستقاة من \"Manchester, R. N., Hobbs, G. B., Teoh, A. " "& Hobbs, M., Astron. J., 129, 1993-2006 (2005) (%1astro-ph/0412641%2)\"" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "ملحوظة" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "النجوم النابضة يبدأ اسمها التعريÙÙŠ بـ \"PSR\"" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "شكر" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "مرصد Pushchino Radio Astronomy Observatory للÙلك الراديوي" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "مرصد Nancay Radioastronomical Observatory للÙلك الراديوي" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "ÙÙŠ Ùرنسا" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "النجوم النابضة محدّثة" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "إعدادات النجوم النابضة" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "إعدادات تطبيق النجوم النابضة الإضاÙÙŠ" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "نَسَق العرض للنجوم النابضة" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "إعدادات النجوم النابضة" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "ارسم كل النجوم النابضة بدون أسماء" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Ùعّل عرض توزيع النجوم النابضة" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "أظهر زر النجوم النابضة على شريط المهام" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "الكواكب الخارجية" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7124,71 +7595,71 @@ "بيانات الكواكب الخارجية مشتقة من موسوعة الكواكب خارج المجموعة الشمسية على " "موقع exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "مقدار المعدنية" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "الكتلة" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "نص٠القطر" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "‎الحرارة الÙعلية: ‎%1‎ كلÙÙ†" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "كوكب خارجي" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "الÙترة" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "أيّام" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "المشتري" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "نص٠المحور الأكبر" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "وحدة Ùلكية" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "الشذوذ المداري" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "الميل" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "البعد الزاوي" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "سنة الاكتشاÙ" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "

    تطبيق الكواكب الخارجية الإضاÙÙŠ" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7198,7 +7669,7 @@ "الكواكب الخارجية مشتقة من \"%1موسوعة الكواكب خارج المجموعة الشمسية%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7207,42 +7678,138 @@ "

    تستطيع الحصول غلى معلومات كاملة عن هذا التطبيق الإضاÙÙŠ وتاريخه " "وتنسيق بيانات الدليل %1هنا%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "مواقع الإنترنت المتخصصة ذات العلاقة بالكواكب الخارجية" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanets: نسخة تÙاعلية من XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" +"HEK اختصار The Hunt for Exomoons with Kepler - اقتناص الأقمار الخارجية " +"بواسطة كبلر" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" +"الكواكب الخارجية ÙÙŠ النظم الشمسية الثنائية والمتعددة (ريتشارد شوارتز)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "تسمية الكواكب الخارجية (الاتحاد الÙلكي العالمي)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "بعض الÙلكيين والمجموعات النشطة ÙÙŠ دراسات الكواكب الخارجية" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "التحديث: 16 إبريل 2012 Ù…" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "مستكش٠بيانات الكواكب الخارجية" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "عملية البحث الإنجليزية-الاسترالية عن الكواكب" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "برامج جني٠للبحث عن الكواكب خارج النظام الشمسي" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN اختصار Optical Long-Baseline Interferometry News" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "برنامج ناسا لاستكشا٠الكواكب الخارجية" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "كواكب النجوم النابضة" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "أرشي٠ناسا للكواكب الخارجية" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" +"IAU Comission 53: لجنة عمل رقم 53 ÙÙŠ الاتحاد العالمي الÙلكي المتخصصة " +"بالكواكب الخارجية" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" +"ExoMol - قاعدة بيانات للجزيئات الصالحة للتصني٠الطيÙÙŠ ومحاكاة الغلا٠الجوي " +"للكواكب الخارجية" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "معرض المنطقة القابلة للعيش" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - البحث عن كوكب مشابه للأرض" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "الدليل المÙتوح للكواكب الخارجية" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "دليل الكواكب الخارجية القابلة للحياة" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "الكواكب الخارجية تم تحديثها" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "إعدادات الكواكب الخارجية" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "إعدادات تطبيق الكواكب الخارجية" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "حدّث بيانات الكواكب الخارجية من الإنترنت" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "نسق عرض الكواكب الخارجية" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "إعدادات الكواكب الخارجية" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "ارسم جميع النظم الشمسية من دون الأسماء" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "ÙعّÙÙ„ عرض توزيع الكواكب الخارجية" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "اعرض الكواكب الخارجية من وقت اكتشاÙها" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "ÙعّÙÙ„ التسلسل التاريخي لاكتشا٠الكواكب الخارجية" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "أظهر زر الكواكب الخارجية على شريط المهام" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "معلومات" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "بيانات الرصد" @@ -7265,185 +7832,179 @@ "الشمس. تجد شرحاً للمعلومات التي يظهرها هذا التطبيق تحت علامة التبويب - عن - " "ÙÙŠ ناÙذة الإعدادات." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "يناير" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Ùبراير" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "مارس" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "إبريل" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "مايو" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "يونيه" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "يوليه" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "أغسطس" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "سبتمبر" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "أكتوبر" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "نوÙمبر" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "ديسمبر" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "س" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "د" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "Ø«" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "يغيب الساعة %1 (بعد %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "طلع الساعة %1 (منذ %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "غاب الساعة %1 (منذ %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "يطلع الساعة %1 (بعد %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "أبدي الظهور" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "لايطلع أبداً" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "يتوسط الساعة %1 (بعد %2) على ارتÙاع %3 درجة" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "توسط الساعة %1 (منذ %2) على ارتÙاع %3 درجة" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "لايمكن رصد هذا الجرم" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "لايوجد للجرم طلوع وغياب مواÙÙ‚ للشمس ولا مقابل للشمس" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "â€Ø§Ù„استطالة العظمى:†" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "â€Ø§Ù„بعد الزاوي الأعظم عن الشمس:†" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " ‎(زاوية %1 درجة)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "â€Ø§Ù„طلوع والغياب المقابل للشمسâ€" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "لايوجد طلوع وغياب مقابل للشمس" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "â€Ø§Ù„طلوع والغياب المواÙÙ‚ للشمسâ€" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "لايوجد طلوع أو غياب مواÙÙ‚ للشمس" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "يمكن رصده طوال السنة" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "لايمكن رصده ÙÙŠ الليالي المظلمة." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "â€Ø§Ù„ليالي التي يكون Ùيها الجرم Ùوق الأÙÙ‚:†" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "هذا اليوم:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "هذه السنة:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "â€Ø§Ù„بدر التام السابق:†%1 %2 الساعة %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "â€Ø§Ù„بدر التام اللاحق:†%1 %2 الساعة %3:%4. " @@ -7920,6 +8481,12 @@ #~ msgid "When a Script is Running" #~ msgstr "ÙÙŠ حالة تنÙيذ برنامج نصي (سكريبت)â€" +#~ msgid "Nebulas" +#~ msgstr "السدم" + +#~ msgid "Nebulas background images" +#~ msgstr "صور السدم الخلÙية" + #~ msgid "Hourly zenith rate:" #~ msgstr "المعدل السمتي لعدد الشهب ÙÙŠ الساعة" @@ -7980,6 +8547,22 @@ #~ "

    الدعم يتم عن طريق موقع Launchpad. تأكد من كتابة \"Satellites " #~ "plugin\" ÙÙŠ عنوان الموضوع." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "تم تحديث %1 من %2 من الأقمار الصناعية؛ Ùˆ %3 Ù…Ùقودة" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "من مصادر الإنترنت TLE حدث قوائم" + +#~ msgid "Comma separated list of groups" +#~ msgstr "قائمة مجموعات منسَّقة بالÙواصل" + +#~ msgid "TLE data:" +#~ msgstr "بيانات TLE" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "بيانات العاصر المدارية على شكل سطرين من NORAD" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -8113,6 +8696,12 @@ #~ msgid "Custom Info Settings" #~ msgstr "اختر المعلومات التي تريد إظهارها" +#~ msgid "Display mode for quasars" +#~ msgstr "نَسَق العرض للكوازارات" + +#~ msgid "Display mode for pulsars" +#~ msgstr "نَسَق العرض للنجوم النابضة" + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "

    كسو٠خماسي من ديموس 2027" @@ -8139,6 +8728,11 @@ #~ "المريخ بالشمس ÙˆÙوبوس كسوÙاً كلياً وبعدها يتجلى Ùوبوس من الشمس ويعبر ÙÙŠ ظل " #~ "المريخ ويخÙت نوره." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "

    حاÙظ للشاشة لحوادث مختلÙØ© ÙÙŠ النظام الشمسي، مجموعها 171 حادثة." + #~ msgid "A tour via western constellations." #~ msgstr "

    رحلة ÙÙŠ الكوكبات النجمية للتراث الغربي" @@ -8168,6 +8762,20 @@ #~ "

    وميض الاستعار العظيم الذي رصده تايكو براهي سنة 1572. تحتاج تÙعيل " #~ "تطبيق المستعرات الموثقة تاريخياً لرؤية هذا العرض." +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "

    تطبيق إضاÙÙŠ يعرض بعض المستعرات الموثقة تاريخياً بقدر لمعان بصري " +#~ "أعظم من القدر العاشر." + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "

    تطبيق إضاÙÙŠ يعرض بعض المستعرات الموثقة تاريخياً والتي يزيد " +#~ "لمعانها عن القدر العاشر:

    " + #~ msgid "Sun altitude at twilight" #~ msgstr "ارتÙاع الشمس وقت الشÙÙ‚" diff -Nru stellarium-0.12.1/po/stellarium/as.po stellarium-0.12.4/po/stellarium/as.po --- stellarium-0.12.1/po/stellarium/as.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/as.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Assamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:44+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/ast.po stellarium-0.12.4/po/stellarium/ast.po --- stellarium-0.12.1/po/stellarium/ast.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ast.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,76 +7,76 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-01-07 10:15+0000\n" -"Last-Translator: Alexander Wolf \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-07-29 23:06+0000\n" +"Last-Translator: ivarela \n" "Language-Team: Asturian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:44+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridianu" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Eclíptica" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ecuador" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizonte" #: src/core/modules/GridLinesMgr.cpp:580 msgid "Galactic Plane" -msgstr "" +msgstr "Planu Galácticu" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Allugamientu: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipu: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitú: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Tamañu: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxa" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Cúmulu abiertu" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Cúmulu globular" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebulosa planetaria" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Cúmulu asociáu con nebulosidá" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Desconocíu" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Tipu non documentáu" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitú Absoluta: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distancia: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diámetru aparente: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Tipu espectral: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distancia: %1 años lluz" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaxe: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -657,52 +749,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Seleiciona'l direutoriu pa captures de pantalla" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Campu de visión d'aniciu: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Puntu de vista al aniciu Az/Alt: %1 %2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autores" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contautu" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Llicencia" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Script corriendo: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Script corriendo: [nengún]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -710,16 +803,16 @@ "¡Finó la descarga de los catálogos nuevos d'estrelles!\n" "Reanicia Stellarium p'amosalos." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Obtener catálogu %1 de %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -728,7 +821,7 @@ "Descargando %1...\n" "(Pues zarrar esta ventana)." -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -739,7 +832,7 @@ "Cuenta d'estrelles: %2 Millones\n" "Rangu de Magnitú: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -748,11 +841,11 @@ "Fallu descargando %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verificando la integridá del ficheru..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -762,118 +855,126 @@ "El ficheru ta corruptu." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" -msgstr "" +msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" -msgstr "" +msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" -msgstr "" +msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" -msgstr "" +msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" -msgstr "" +msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" -msgstr "" +msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" -msgstr "" +msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" -msgstr "" +msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" -msgstr "" +msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" -msgstr "" +msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" -msgstr "" +msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" -msgstr "" +msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" -msgstr "" +msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" -msgstr "" +msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" -msgstr "" +msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" -msgstr "" +msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" -msgstr "" +msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -msgstr "" +msgstr "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" -msgstr "" +msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" -msgstr "" +msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" -msgstr "" +msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" -msgstr "" +msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" -msgstr "" +msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" -msgstr "" +msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" -msgstr "" +msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" -msgstr "" +msgstr "Ecuación personalizada de %1T" #: src/gui/HelpDialog.cpp:147 msgid "Stellarium Help" @@ -1037,49 +1138,53 @@ msgid "OSX Developer: %1" msgstr "Desendolcador d'OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Ventana de consola de scripts" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Ventanes" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Espaciu" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ensin descripción" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Ensin estrelles fugaces" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Tasa normal" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Tasa normal de les Perseides" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Tasa esceicional de les Leónides" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Tasa máxima algamada (1996 Leónides)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Allugamientu Nuevu" @@ -1184,19 +1289,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1212,30 +1317,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Esti sistema nun permite OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sol" @@ -1252,12 +1363,12 @@ msgstr "Tierra" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Lluna" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marte" @@ -1355,7 +1466,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturnu" @@ -1625,7 +1736,7 @@ #. TRANSLATORS: Type of object #: src/translations.h:159 msgid "moon" -msgstr "" +msgstr "lluna" #. TRANSLATORS: Type of object #: src/translations.h:161 @@ -1653,239 +1764,268 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Coreanu" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maorí" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navayu" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Nórdicu" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinesiu" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupí-guaraní" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Occidental" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" -msgstr "" +msgstr "Ãrboles" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Huracán" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" -msgstr "Océano" +msgstr "Océanu" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Salvapantallas" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiacu" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1895,1502 +2035,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Emiratos Ãrabes Xuníos" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistán" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua y Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguila" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Antilles Holandeses" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antártida" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Arxentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa Americana" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaixán" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" -msgstr "" +msgstr "Bosnia and Herzegowina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" -msgstr "" +msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" -msgstr "" +msgstr "Bélxica" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" -msgstr "" +msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" -msgstr "" +msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" -msgstr "" +msgstr "Baḥréin" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" -msgstr "" +msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" -msgstr "" +msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" -msgstr "" +msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" -msgstr "" +msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" -msgstr "" +msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" -msgstr "" +msgstr "Brazil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" -msgstr "" +msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" -msgstr "" +msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" -msgstr "" +msgstr "Bouvet Island" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" -msgstr "" +msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" -msgstr "" +msgstr "Belarus" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" -msgstr "" +msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" -msgstr "" +msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" -msgstr "" +msgstr "Cocos Islands" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" -msgstr "" +msgstr "Democratic Republic of the Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" -msgstr "" +msgstr "Central African Republic" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" -msgstr "" +msgstr "Switzerland" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" -msgstr "" +msgstr "Cote d'Ivoire" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" -msgstr "" +msgstr "Cook Islands" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" -msgstr "" +msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" -msgstr "" +msgstr "Cameroon" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" -msgstr "" +msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" -msgstr "" +msgstr "Colombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" -msgstr "" +msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" -msgstr "" +msgstr "Serbia and Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" -msgstr "" +msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" -msgstr "" +msgstr "Cape Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" -msgstr "" +msgstr "Christmas Island" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" -msgstr "" +msgstr "Cyprus" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" -msgstr "" +msgstr "Czech Republic" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" -msgstr "" +msgstr "Germany" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" -msgstr "" +msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" -msgstr "" +msgstr "Denmark" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" -msgstr "" +msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" -msgstr "" +msgstr "Dominican Republic" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" -msgstr "" +msgstr "Algeria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" -msgstr "" +msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" -msgstr "" +msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" -msgstr "" +msgstr "Egypt" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" -msgstr "" +msgstr "Western Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" -msgstr "" +msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" -msgstr "" +msgstr "Spain" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" -msgstr "" +msgstr "Ethiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" -msgstr "" +msgstr "Finland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" -msgstr "" +msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" -msgstr "" +msgstr "Falkland Islands" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" -msgstr "" +msgstr "Micronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" -msgstr "" +msgstr "Faroe Islands" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" -msgstr "" +msgstr "France" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" -msgstr "" +msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" -msgstr "" +msgstr "United Kingdom" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" -msgstr "" +msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" -msgstr "" +msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" -msgstr "" +msgstr "French Guiana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" -msgstr "" +msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" -msgstr "" +msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" -msgstr "" +msgstr "Greenland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" -msgstr "" +msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" -msgstr "" +msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" -msgstr "" +msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" -msgstr "" +msgstr "Equatorial Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" -msgstr "" +msgstr "Greece" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" -msgstr "" +msgstr "South Georgia and the South Sandwich Islands" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" -msgstr "" +msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" -msgstr "" +msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" -msgstr "" +msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" -msgstr "" +msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" -msgstr "" +msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" -msgstr "" +msgstr "Heard Island and McDonald Islands" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" -msgstr "" +msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" -msgstr "" +msgstr "Croatia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" -msgstr "" +msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" -msgstr "" +msgstr "Hungary" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" -msgstr "" +msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" -msgstr "" +msgstr "Ireland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" -msgstr "" +msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" -msgstr "" +msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" -msgstr "" +msgstr "British Indian Ocean Territory" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" -msgstr "" +msgstr "Iraq" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" -msgstr "" +msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" -msgstr "" +msgstr "Iceland" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" -msgstr "" +msgstr "Italy" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" -msgstr "" +msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" -msgstr "" +msgstr "Jordan" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" -msgstr "" +msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" -msgstr "" +msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" -msgstr "" +msgstr "Kyrgyzstan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" -msgstr "" +msgstr "Cambodia" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" -msgstr "" +msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" -msgstr "" +msgstr "Comoros" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" -msgstr "" +msgstr "Saint Kitts and Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" -msgstr "" +msgstr "Democratic People's Republic of Korea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" -msgstr "" +msgstr "Republic of Korea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" -msgstr "" +msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" -msgstr "" +msgstr "Cayman Islands" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" -msgstr "" +msgstr "Kazakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" -msgstr "" +msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" -msgstr "" +msgstr "Lebanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" -msgstr "" +msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" -msgstr "" +msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" -msgstr "" +msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" -msgstr "" +msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" -msgstr "" +msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" -msgstr "" +msgstr "Lithuania" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" -msgstr "" +msgstr "Luxembourg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" -msgstr "" +msgstr "Latvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" -msgstr "" +msgstr "Libyan Arab Jamahiriya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" -msgstr "" +msgstr "Morocco" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" -msgstr "" +msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" -msgstr "" +msgstr "Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" -msgstr "" +msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" -msgstr "" +msgstr "Marshall Islands" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" -msgstr "" +msgstr "Macedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" -msgstr "" +msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" -msgstr "" +msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" -msgstr "" +msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" -msgstr "" +msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" -msgstr "" +msgstr "Northern Mariana Islands" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" -msgstr "" +msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" -msgstr "" +msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" -msgstr "" +msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" -msgstr "" +msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" -msgstr "" +msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" -msgstr "" +msgstr "Maldives" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" -msgstr "" +msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" -msgstr "" +msgstr "Mexico" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" -msgstr "" +msgstr "Malaysia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" -msgstr "" +msgstr "Mozambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" -msgstr "" +msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" -msgstr "" +msgstr "New Caledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" -msgstr "" +msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" -msgstr "" +msgstr "Norfolk Island" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" -msgstr "" +msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" -msgstr "" +msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" -msgstr "" +msgstr "Netherlands" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" -msgstr "" +msgstr "Norway" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" -msgstr "" +msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" -msgstr "" +msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" -msgstr "" +msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" -msgstr "" +msgstr "New Zealand" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" -msgstr "" +msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" -msgstr "" +msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" -msgstr "" +msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" -msgstr "" +msgstr "French Polynesia" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" -msgstr "" +msgstr "Papua New Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" -msgstr "" +msgstr "Philippines" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" -msgstr "" +msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" -msgstr "" +msgstr "Poland" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" -msgstr "" +msgstr "Saint Pierre and Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" -msgstr "" +msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" -msgstr "" +msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" -msgstr "" +msgstr "Palestinian Territories" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" -msgstr "" +msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" -msgstr "" +msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" -msgstr "" +msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" -msgstr "" +msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" -msgstr "" +msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" -msgstr "" +msgstr "Romania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" -msgstr "" +msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" -msgstr "" +msgstr "Russian Federation" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" -msgstr "" +msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" -msgstr "" +msgstr "Saudi Arabia" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" -msgstr "" +msgstr "Solomon Islands" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" -msgstr "" +msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" -msgstr "" +msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" -msgstr "" +msgstr "Sweden" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" -msgstr "" +msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" -msgstr "" +msgstr "Saint Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" -msgstr "" +msgstr "Slovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" -msgstr "" +msgstr "Svalbard and Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" -msgstr "" +msgstr "Slovakia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" -msgstr "" +msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" -msgstr "" +msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" -msgstr "" +msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" -msgstr "" +msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" -msgstr "" +msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" -msgstr "" +msgstr "Sao Tome and Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" -msgstr "" +msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" -msgstr "" +msgstr "Syrian Arab Republic" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" -msgstr "" +msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" -msgstr "" +msgstr "Turks and Caicos Islands" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" -msgstr "" +msgstr "Chad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" -msgstr "" +msgstr "French Southern Territories" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" -msgstr "" +msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" -msgstr "" +msgstr "Thailand" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" -msgstr "" +msgstr "Tajikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" -msgstr "" +msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" -msgstr "" +msgstr "East Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" -msgstr "" +msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" -msgstr "" +msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" -msgstr "" +msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" -msgstr "" +msgstr "Turkey" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" -msgstr "" +msgstr "Trinidad and Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" -msgstr "" +msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" -msgstr "" +msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" -msgstr "" +msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" -msgstr "" +msgstr "Ukraine" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" -msgstr "" +msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" -msgstr "" +msgstr "United States Minor Outlying Islands" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" -msgstr "" +msgstr "United States" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" -msgstr "" +msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" -msgstr "" +msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" -msgstr "" +msgstr "Vatican City State" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" -msgstr "" +msgstr "Saint Vincent and the Grenadines" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" -msgstr "" +msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" -msgstr "" +msgstr "British Virgin Islands" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" -msgstr "" +msgstr "United States Virgin Islands" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" -msgstr "" +msgstr "Viet Nam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" -msgstr "" +msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" -msgstr "" +msgstr "Wallis and Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" -msgstr "" +msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" -msgstr "" +msgstr "Yemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" -msgstr "" +msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" -msgstr "" +msgstr "Yugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" -msgstr "" +msgstr "South Africa" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" -msgstr "" +msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" -msgstr "" +msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data y hora" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Añedir 1 día sideral" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Añedir 1 selmana sideral" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Añedir 1 día solar" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Añedir 1 hora solar" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Añedir 1 selmana solar" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Ralentiza la velocidá del script que ta corriendo" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Amenorgar velocidá del tiempu" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Amenorgar la velocidá del tiempu (un poco)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Acelera la velocidá del script que ta corriendo" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Aumentar velocidá del tiempu" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Aumentar la velocidá del tiempu (un poco)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Afitar data y hora actual" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Afita la velocidá normal del script que ta corriendo" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" -msgstr "Afitar ritmu normal de tiempo" +msgstr "Afitar ritmu normal de tiempu" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Afitar ritmu de tiempu a cero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Restar 1 día sideral" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Restar 1 selmana sideral" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Restar 1 día solar" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Restar 1 hora solar" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Restar 1 selmana solar" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Opciones de visualización" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Invertir vista horizontalmente" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Mou pantalla completa" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmósfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Cuadrícula Azimutal" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Puntos cardinales" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Figures de constelaciones" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Llendes de constelaciones" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Nomes de constelaciones" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Llinies de constelaciones" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Imáxenes de fondu de nebuloses" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Llinia Eclíptica" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Llinia Ecuatorial" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Cuadrícula Ecuatorial" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Cuadrícula Ecuatorial J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Borrina" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Cuadrícula Galáctica" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Suelu" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Llinia Meridiana" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebuloses" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Mou nocherniegu" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" -msgstr "" +msgstr "Etiquetes de planetes" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Órbites de planetes" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Rastros de planetes" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Estrelles" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Invertir vista verticalmente" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Dellos" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Anubrir automáticamente la barra horizontal de botones" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Anubrir automáticamente la barra vertical de botones" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Colar" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Guardar la captura de pantalla" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Alternar ente montura ecuatorial y azimutal" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Cambiar la visibilidá de la GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Movimientu y Seleición" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centrar nel oxetu seleicionáu" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Afitar el planeta seleicionáu como aniciu" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Siguir oxetu" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Facer zoom nel oxetu seleicionáu" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Alloñar zoom" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Midida d'ángulos" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Marques de brúxula" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Vista ocular" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Menú flotante d'oculares" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Configuración de la ventana de satélites" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Posiciones de satélites" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Etiquetes de satélites" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Mover el telescopiu a les coordenaes definíes" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripts" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Ventana de configuración" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Ventana de data/hora" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Ventana d'ayuda" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Ventana d'allugamientu" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Ventana de gueta" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Ventana d'opciones del cielu y de vista" @@ -3416,7 +3592,7 @@ msgstr "Refrescar" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Allugamientu" @@ -3432,10 +3608,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Esborrar" @@ -3444,7 +3620,7 @@ msgstr "Amestar a la llista" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Llatitú:" @@ -3457,12 +3633,12 @@ "+1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Llonxitú:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitú:" @@ -3486,364 +3662,408 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Guetar Oxetu" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" +msgstr "Atopar Oxetu o Posición" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alpha" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" -msgstr "" +msgstr "Oxetu" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" +msgstr "Posición" + +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "nomes en Inglés" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Llistes" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" -msgstr "" +msgstr "Sirvidor:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Opciones" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Opciones" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Ver" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Cielu" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Marques" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Paisaxe" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Mitoloxía" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etiquetes y Marcadores" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" -msgstr "PlaneteS" +msgstr "Planetes" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planetes y satélites" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Amosar planetes" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Amosar marcadores de planetes" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Amosar órbites planetaries" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simular velocidá de la lluz" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Lluna a Escala" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Amosar atmósfera" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Escala absoluta:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Escala relativa:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Brillu" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Escurecer les estrelles débiles cuando un oxetu mui rellumante ye visible" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adaptación visual dinámica" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Estrelles a la Fuga" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" +msgstr "ZHR:" + +#: src/ui_viewDialog.h:1253 +msgid "1000" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "ConstelacioneS" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Amosar llinies" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Amosar etiquetes" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Amosar llendes" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Amosar figures" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Esfera Celeste" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Proyeición" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Amestar/desaniciar paisaxes..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Amosar suelu" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Amosar borrina" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Usar posición y planeta asociáu" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Usar esti paisaxe como predetermináu" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Usar esta cultura estelar como predeterminada" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visible" @@ -3853,7 +4073,7 @@ #: src/ui_configurationDialog.h:975 msgid "Program language" -msgstr "Idioma del programa" +msgstr "Llingua del programa" #: src/ui_configurationDialog.h:976 msgid "Default options" @@ -3898,7 +4118,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "La direición de la vista de Stellarium al aniciar" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Información del oxetu seleicionáu" @@ -3914,11 +4134,8 @@ msgid "Display no information" msgstr "Nun amosar información" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Nengún" @@ -3956,7 +4173,7 @@ #: src/ui_configurationDialog.h:1017 msgid "Altitude/Azimuth" -msgstr "" +msgstr "Altitú/Azimut" #: src/ui_configurationDialog.h:1018 msgid "Visual magnitude" @@ -3973,7 +4190,7 @@ #: src/ui_configurationDialog.h:1021 #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:269 msgid "Name" -msgstr "" +msgstr "Nome" #: src/ui_configurationDialog.h:1023 msgid "Geocentric equatorial coordinates, equinox of date" @@ -4053,14 +4270,14 @@ #: src/ui_configurationDialog.h:1061 msgid "Mouse cursor timeout:" -msgstr "" +msgstr "Duración del cursor del mur:" #: src/ui_configurationDialog.h:1063 msgid "seconds" -msgstr "" +msgstr "segundos" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Data y hora nel aniciu" @@ -4072,19 +4289,23 @@ msgid "Other:" msgstr "Otru:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "usar actual" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Aniciar Stellarium cola hora y data del sistema" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Data y hora del sistema" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4092,23 +4313,23 @@ "Afitar l'horariu de simulación a la siguiente instancia d'esta hora del día " "cuando Stellarium anicia" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Data del sistema en:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Opciones del planetariu" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4116,51 +4337,51 @@ "Úsase una distorsión d'espeyu esféricu cuando se proyeuta Stellarium nun " "espeyu esféricu de sistemes planetarios de baxu costu." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" -msgstr "Distorisión d'espeyu esféricu" +msgstr "Distorsión d'espeyu esféricu" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Anubrir tolo que tea fuera del círculu central na vista principal" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Ventana de discu" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Anubrir otres constelaciones cuando seleicione una" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Seleicionar una constelación" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Alliniar etiquetes col horizonte" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Etiquetes de gravedá" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Intercambiar los botones de xiru d'imaxe vertical y horizontal." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Amosar los botones de xiru" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4168,93 +4389,99 @@ "Al activalo, la tecla de \"Alloñar zoom automáticamente\" tamién volverá a " "la direición de la vista d'aniciu" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" "Alloñar zoom automáticamente vuelve a la direición de la vista d'aniciu" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Captures de pantalla" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Direutoriu de captures de pantalla" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Invertir colores" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Anovamientos de catálogos d'estrelles" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Calca equí pa entamar a descargar" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Descarga esti ficheru pa ver entá más estrelles" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Reaniciar la descarga" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Reintentar" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Parar la descarga. Pues reaniciala llueu si quies" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Desaniciar" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Zarrar ventana cuando s'execute un script" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Executar el script seleicionáu" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Parar un srcipt que ta corriendo" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Cargar al aniciu" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "configurar" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Principal" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" -msgstr "" +msgstr "Información" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navegación" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Ferramientes" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Plugins" @@ -4391,7 +4618,7 @@ #: src/ui_scriptConsole.h:378 msgid "..." -msgstr "" +msgstr "..." #: plugins/AngleMeasure/src/AngleMeasure.cpp:56 msgid "Angle Measure" @@ -4424,176 +4651,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Amuesa les marques de brúxula a lo llargo l'horizonte" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculares" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4665,64 +4892,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4730,7 +4962,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4741,14 +4973,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4757,191 +4989,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satélites" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4949,117 +5190,177 @@ "Predicción de la posición de los satélites artificiales n'órbita terrestre " "según la base de datos NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "El ficheru satellites.json yá nun ye compatible - usando'l ficheru por " "defeutu." -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5067,25 +5368,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5093,17 +5394,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5111,41 +5412,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5153,338 +5456,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5520,11 +5866,11 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Control de Telescopiu" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5532,12 +5878,12 @@ "Esti plug-in manda mensaxes \"slew\" a un telescopiu nun computerizáu (un " "telescopiu \"GoTo\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Mover telescopiu #%1 al oxetu seleicionáu" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Mover telescopiu #%1 al puntu nel centru de la pantalla" @@ -5708,7 +6054,7 @@ #: plugins/TelescopeControl/src/ui_slewDialog.h:297 msgid "&HMS" -msgstr "" +msgstr "&HMS" #: plugins/TelescopeControl/src/ui_slewDialog.h:299 msgid "Degrees-minutes-seconds format" @@ -5716,7 +6062,7 @@ #: plugins/TelescopeControl/src/ui_slewDialog.h:301 msgid "&DMS" -msgstr "" +msgstr "&DMS" #: plugins/TelescopeControl/src/ui_slewDialog.h:303 msgid "Decimal degrees" @@ -5724,7 +6070,7 @@ #: plugins/TelescopeControl/src/ui_slewDialog.h:305 msgid "D&ecimal" -msgstr "" +msgstr "D&ecimal" #: plugins/TelescopeControl/src/ui_slewDialog.h:306 msgid "&Slew" @@ -5854,7 +6200,7 @@ #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:516 msgid "OK" -msgstr "" +msgstr "OK" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:394 msgid "Telescopes Controlled" @@ -5878,7 +6224,7 @@ #: plugins/TelescopeControl/src/ui_telescopeDialog.h:409 msgid "GUI" -msgstr "" +msgstr "GUI" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:410 msgid "Show telescope labels" @@ -5894,7 +6240,7 @@ #: plugins/TelescopeControl/src/ui_telescopeDialog.h:413 msgid "Files" -msgstr "" +msgstr "Ficheros" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:414 msgid "Log telescope driver messages to files" @@ -5923,112 +6269,112 @@ "hora na barra d'abaxo." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" -msgstr "" +msgstr "Xineru" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" -msgstr "" +msgstr "Febreru" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" -msgstr "" +msgstr "Marzu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" -msgstr "" +msgstr "Abril" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" -msgstr "" +msgstr "Mayu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" -msgstr "" +msgstr "Xunu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" -msgstr "" +msgstr "Xunetu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" -msgstr "" +msgstr "Agostu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" -msgstr "" +msgstr "Setiembre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" -msgstr "" +msgstr "Ochobre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" -msgstr "" +msgstr "Payares" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" -msgstr "" +msgstr "Avientu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:265 msgid "First week" -msgstr "" +msgstr "Primer selmana" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:266 msgid "Second week" -msgstr "" +msgstr "Segunda selmana" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:267 msgid "Third week" -msgstr "" +msgstr "Tercer selmana" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:268 msgid "Fourth week" -msgstr "" +msgstr "Cuarta selmana" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:269 msgid "Last week" -msgstr "" +msgstr "Cabera selmana" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:278 msgid "Sunday" -msgstr "" +msgstr "Domingu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:279 msgid "Monday" -msgstr "" +msgstr "Llunes" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:280 msgid "Tuesday" -msgstr "" +msgstr "Martes" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:281 msgid "Wednesday" -msgstr "" +msgstr "Miércoles" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:282 msgid "Thursday" -msgstr "" +msgstr "Xueves" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:283 msgid "Friday" -msgstr "" +msgstr "Vienres" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:284 msgid "Saturday" -msgstr "" +msgstr "Sábadu" #: plugins/TimeZoneConfiguration/src/gui/TimeZoneConfigurationWindow.cpp:104 msgid "Time Zone plug-in" @@ -6073,7 +6419,7 @@ #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:458 #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:462 msgid "Day:" -msgstr "" +msgstr "Día:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:459 #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:463 @@ -6083,7 +6429,7 @@ #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:460 #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:464 msgid "Date:" -msgstr "" +msgstr "Data:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:461 msgid "Daylight saving time end" @@ -6132,7 +6478,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6143,34 +6489,34 @@ #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:398 msgid "12-hour format" -msgstr "" +msgstr "Formatu 12-hores" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:399 msgid "24-hour format" -msgstr "" +msgstr "Formatu 24-hores" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" -msgstr "" +msgstr "Formatu de data" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:402 msgid "yyyy-mm-dd (ISO 8601)" -msgstr "" +msgstr "aaaa-mm-dd (ISO 8601)" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:403 msgid "dd-mm-yyyy" -msgstr "" +msgstr "dd-mm-aaaa" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:404 msgid "mm-dd-yyyy" -msgstr "" +msgstr "mm-dd-aaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Interfaz d'Usuariu de Testu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6178,154 +6524,154 @@ "Implementación del plugin d'Interfaz d'Usuariu de Testu serie 0.9.x, " "emplegáu en planetarios" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" -msgstr "" +msgstr "sistema" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" -msgstr "" +msgstr "mmddaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" -msgstr "" +msgstr "ddmmaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" -msgstr "" +msgstr "aaaammdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" -msgstr "" +msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" -msgstr "" +msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" -msgstr "" +msgstr "Llingua" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" -msgstr "" +msgstr "Amosar estrelles" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" -msgstr "" +msgstr "Colores" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" -msgstr "" +msgstr "Nomes nebuloses" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" -msgstr "" +msgstr "Efeutos" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" -msgstr "" +msgstr "Zoom manual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" -msgstr "" +msgstr "script CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" -msgstr "" +msgstr "Alministración" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" #: plugins/TextUserInterface/src/TuiNodeBool.cpp:72 msgid "On" -msgstr "" +msgstr "On" #: plugins/TextUserInterface/src/TuiNodeBool.cpp:73 msgid "Off" -msgstr "" +msgstr "Off" #: plugins/TextUserInterface/src/TuiNodeColor.cpp:109 #, qt-format @@ -6351,22 +6697,22 @@ "desendolque." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6378,7 +6724,7 @@ #. TRANSLATORS: Appears as the text of hyperlinks linking to websites. :) #: plugins/SolarSystemEditor/src/gui/SolarSystemManagerWindow.cpp:88 msgid "website" -msgstr "" +msgstr "páxina web" #. TRANSLATORS: IAU = International Astronomical Union #: plugins/SolarSystemEditor/src/gui/SolarSystemManagerWindow.cpp:92 @@ -6396,23 +6742,23 @@ #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:512 msgid "Import data" -msgstr "" +msgstr "Importar datos" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:514 msgid "Select the type" -msgstr "" +msgstr "Seleicionar el tipu" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:515 msgid "Asteroids" -msgstr "" +msgstr "Asteroides" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:516 msgid "Comets" -msgstr "" +msgstr "Cometes" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:517 msgid "Select the source" -msgstr "" +msgstr "Seleicionar la fonte" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:518 msgid "Download a list of objects from the Internet" @@ -6535,36 +6881,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6582,7 +6935,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6596,14 +6949,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6611,8 +6964,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6630,29 +6984,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6668,51 +7099,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6832,11 +7273,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6844,137 +7285,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" -msgstr "" +msgstr "Periodu" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" -msgstr "" +msgstr "díes" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6982,49 +7427,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7040,188 +7574,182 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" -msgstr "" +msgstr "Xin" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" -msgstr "" +msgstr "Feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" -msgstr "" +msgstr "Mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" -msgstr "" +msgstr "Abr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" -msgstr "" +msgstr "May" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" -msgstr "" +msgstr "Xun" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" -msgstr "" +msgstr "Xnt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" -msgstr "" +msgstr "Ago" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" -msgstr "" +msgstr "Set" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" -msgstr "" +msgstr "Och" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" -msgstr "" +msgstr "Pay" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" -msgstr "" +msgstr "Avi" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" -msgstr "" +msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" -msgstr "" +msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" -msgstr "" +msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." -msgstr "" +msgstr "Circumpolar." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" -msgstr "" +msgstr "GUEI:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" -msgstr "" +msgstr "ESTI AÑU:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " -msgstr "" +msgstr "Lluna llena anterior: %1 %2 a les %3%4 " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " -msgstr "" +msgstr "Siguiente lluna llena: %1 %2 a les %3:%4. " #: plugins/Observability/src/gui/ObservabilityDialog.cpp:97 msgid "Observability Plug-in" @@ -7425,9 +7953,15 @@ #~ msgid "When a Script is Running" #~ msgstr "Cuando ta corriendo un Script" +#~ msgid "Nebulas background images" +#~ msgstr "Imáxenes de fondu de nebuloses" + #~ msgid "Planets labels" #~ msgstr "Etiquetes de plantetes" +#~ msgid "Nebulas" +#~ msgstr "Nebuloses" + #~ msgid "Set Location " #~ msgstr "Afitar Allugamientu " diff -Nru stellarium-0.12.1/po/stellarium/av.po stellarium-0.12.4/po/stellarium/av.po --- stellarium-0.12.1/po/stellarium/av.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/av.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Avaric \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:45+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/az.po stellarium-0.12.4/po/stellarium/az.po --- stellarium-0.12.1/po/stellarium/az.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/az.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-02-22 07:51+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-19 08:08+0000\n" "Last-Translator: Nadir Teymurov \n" "Language-Team: Azerbaijani \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:11+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:45+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptik" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Ãœfüq" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Qalaktik DairÉ™" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Müəllif: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Mövqe: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tip: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Ulduz ölçüsü: %1 (SolmuÅŸ: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Ulduz ölçüsü: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Böyüklük: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Qalaktika" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Açıq ulduz topası" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kürəşəkilli ulduz topası" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Dumanlıq" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetar dumanlıq" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "Qara Dumanlıq" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Dumanlıqla É™laqÉ™dÉ™ olan ulduz topası" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "NamÉ™lum" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "SÉ™nÉ™dləşmÉ™miÅŸ tip" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolyut ulduz ölçüsü: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Ekliptika Toposentri (tarixdÉ™n): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Ekliptikanın É™yilmÉ™si (tarixdÉ™n, Yer üçün): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "MÉ™safÉ™: %1 a.v. (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "MÉ™safÉ™: %1 a.v." -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "GörünÉ™n diametr: %1, halqaları ilÉ™: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "GörünÉ™n diametr: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Ulduz dövrü: %1 gün (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Ulduz günü: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Orta günəş günü: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Fazanın Bucağı: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elonqasiya: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Faza: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "İşıqlanır: %1%" @@ -204,7 +204,7 @@ msgstr "MüvÉ™qqÉ™ti iÅŸarÉ™: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "ulduz" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "GörünÉ™n ulduz ölçüsü: %1 (itmÉ™ ilÉ™)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "erüptif dÉ™yiÅŸÉ™n ulduz" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "fırlanan dÉ™yiÅŸÉ™n ulduz" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "kataklizmik dÉ™yiÅŸÉ™n ulduz" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "dÉ™yiÅŸÉ™n ulduz" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "qoÅŸa ulduz" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Ulduz ölçüsü: %1 (SolmuÅŸ: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Ulduz ölçüsü: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektral Tip: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "MÉ™safÉ™: %1 işıq ili" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallaks: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Period %1 gün" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Kosmik GÉ™mi" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "SÉ™hv" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -595,7 +687,7 @@ #: src/core/StelObject.cpp:111 #, qt-format msgid "Galactic longitude/latitude: %1/%2" -msgstr "" +msgstr "Qalaktik en dairÉ™si/uzunluq dairÉ™si: %1/%2" #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:124 #: src/core/StelObject.cpp:127 @@ -637,52 +729,53 @@ msgid "Found" msgstr "Tapıldı" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Ekran görüntülÉ™rinin qovluÄŸunu seçin" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "BaÅŸlanğıc görünüş sahÉ™si: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "BaÅŸlanğıc görmÉ™ istiqamÉ™ti Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "MüəlliflÉ™r" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "ÆlaqÉ™" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Müəllif" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lisenziya" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Ä°ÅŸlÉ™yÉ™n script: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Ä°ÅŸlÉ™yÉ™n script: [yox]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -690,16 +783,16 @@ "Yeni ulduz kataloqların yüklÉ™nmÉ™sı bitdi!\n" "Stellariumu yenidÉ™n açın." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Bütün mövcud ulduz kataloqları yüklÉ™nib." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "%2-dÉ™n %1 kataloqu yüklÉ™." -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -708,7 +801,7 @@ "YüklÉ™nir %1...\n" "(Bu pÉ™ncÉ™rÉ™ni baÄŸlaya bilÉ™rsiniz.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -719,7 +812,7 @@ "Ulduzların sayı: %2 Million\n" "Ulduz ölçüsü: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -728,11 +821,11 @@ "EndirmÉ™dÉ™ sÉ™hv %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Faylların bütövlüyünün yoxlanması..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -742,115 +835,123 @@ "Fayl pozqundu." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1009,49 +1110,53 @@ msgid "OSX Developer: %1" msgstr "OSX Yaradıcısı: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Skript konsol pÉ™ncÉ™rÉ™si" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "MS Windows" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "BoÅŸluq" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "TÉ™svir yoxtu" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Meteorsuz" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normal temp" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "PerseidlÉ™rin standart tempi" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "LeonidlÉ™rin xüsusi tempi" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Maksimal (1966 LeonidlÉ™r)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Yeni mövqe" @@ -1154,19 +1259,19 @@ msgid "starchart" msgstr "ulduz xÉ™ritÉ™si" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad axtarış xÉ™tası" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad axtarış" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Strasburq Universiteti (Fransa)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard Universiteti (ABÅž)" @@ -1182,30 +1287,36 @@ msgid "Alternative shortcut" msgstr "Laternativ qısa yol" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" -msgstr "" +msgstr "harda" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" -msgstr "" +msgstr "il" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Bu sistem OpenGL-i dÉ™stÉ™klÉ™mir." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Günəş" @@ -1222,12 +1333,12 @@ msgstr "Yer" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Ay" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1325,7 +1436,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1623,239 +1734,268 @@ msgstr "Eskimos" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreya" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navaxo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Skandinaviya" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polineziya" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "QÉ™rbi" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Qeren" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "AÄŸaclar" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Tufan" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Okean" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "MÉ™nzÉ™rÉ™ Turu" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Natamam Ay Tutulması" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Tam Ay Tutulması" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Screensaver" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Günəş Tutulması 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "BaÅŸlanğıc skripti" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiak" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "MerkuridÉ™ günəşin üçqat doÄŸması vÉ™ batması" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Deymosda 2017-ci ildÉ™ ikiqat batma" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Deymosda 2031-ci ildÉ™ ikiqat batma" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Solar System Screensaver" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Bürc Turu" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Günəş baÅŸqa planetlÉ™rdÉ™n göründüyü kimi" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Veneranın Tranziti" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Yarınçıq ay tutulmasını göstÉ™rÉ™n skript" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Bütöv ay tutulmasını göstÉ™rÉ™n skript" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1865,1502 +2005,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." -msgstr "" +msgstr "QÉ™rbi bürclÉ™r üzrÉ™ tur" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "BirləşmiÅŸ ÆrÉ™b ÆmirliklÉ™ri" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Æfqanıstan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antiqa vÉ™ Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anquilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albaniya" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ErmÉ™nistan" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Holland AntillÉ™ri" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Anqola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktika" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikan Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Avstriya" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Avstraliya" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "AzÉ™rbaycan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosniya vÉ™ Hersegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "BanqladeÅŸ" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belçika" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bolqarıstan" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahreyn" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Bruney DarüssÉ™lam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Boliviya" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Braziliya" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahama" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Butan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Buvet Adası" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botsvana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Belarusiya" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Beliz" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kokos Adaları" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Kongo Demokratik Respublikası" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "MÉ™rkÉ™zi Afrika Respublikası" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Kongo Respublikası" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Ä°sveçrÉ™" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Kot Divuar" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Kuk Adaları" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Çili" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Çin" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolumbiya" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Kosta Rika" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbiya vÉ™ Monteneqro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kape Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Kristmas Adası" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Kipr" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Çex Respublikası" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Almaniya" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Cibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Danemarka" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominika" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominikan Respublikası" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "ÆlcÉ™zair" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekvador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estoniya" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Misir" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "QÉ™rbi Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritreya" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Ä°spaniya" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Efiopiya" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlandiya" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fici" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falkland Adaları" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikroneziya" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Faro Adaları" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Fransa" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Qabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "BirləşmiÅŸ Krallıq" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Qrenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Gürcüstan" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Fransız Gvineyası" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Qana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Qrinlandiya" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Qambiya" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Qvineya" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Qvadelupa" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Ekvatoral Qvineya" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Yunanıstan" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "CÉ™nubi Corciya vÉ™ CÉ™nubi Sendviç Adaları" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Qvatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Quam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Qvineya-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Quyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Honq Konq" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Herd Adası vÉ™ MakDonald Adaları" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Qonduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Xırvatıstan" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Qaiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Macarıstan" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Ä°ndoneziya" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ä°rlandiya" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Ä°srail" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Hindistan" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Britaniya Hind Okeanı SahÉ™si" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ä°raq" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Ä°ran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Ä°slandiya" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Ä°taliya" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Yamayka" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Ä°ordaniya" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Yaponiya" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Keniya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Qırğızıstan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komor" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Sent Kitts vÉ™ Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Åžimali Koreya" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Koreya Respublikası" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Küveyt" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kayman Adaları" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Qazaxstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Livan" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "MüqÉ™ddÉ™s Lusiya" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "LixtenÅŸteyn" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Åžri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberiya" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesoto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litva" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Lüksemburq" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latviya" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Liviya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "MÉ™rakeÅŸ" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldaviya" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madaqaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "MarÅŸal Adaları" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedoniya" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Monqolustan" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Makau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Åžimali Mariana Adaları" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinik" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mavritaniya" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Monserat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mavritaniya" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldiv Adaları" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malavi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Meksika" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malayziya" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibiya" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Yeni Kaledoniya" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk Adaları" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeriya" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nikaraqua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Hollandiya" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norveç" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Yeni Zelandiya" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Fransız Polineziyası" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Yeni Qvineya" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filippin" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "PolÅŸa" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Sent Pyer vÉ™ Miqelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitkairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Riko" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "FÉ™lÉ™stin" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portuqaliya" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraqvay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Reunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Rumıniya" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbiya" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Rusiya Federasiyası" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "SÉ™udi ÆrÉ™bistan" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Solomon Adaları" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "SeyÅŸel Adaları" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Ä°sveç" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Sinqapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "MüqÉ™ddÉ™s Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Sloveniya" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard vÉ™ Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovakiya" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Seneqal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somali" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tome vÉ™ Prinsip" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Siriya" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Svaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Türk vÉ™ Kaykos Adaları" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Çad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "CÉ™nubi Fransız SahÉ™lÉ™ri" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Toqo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Tayland" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tacikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelo" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Şərqi Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "TürkmÉ™nistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunis" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonqa" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "TürkiyÉ™" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad vÉ™ Tobaqo" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Tayvan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzaniya" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukrayna" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uqanda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "BirləşmiÅŸ Åžtatlar yanı Kiçik Adalar" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "ABÅž" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruqvay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "ÖzbÉ™kistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikan ŞəhÉ™r HökümÉ™ti" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Sent Vinsent vÉ™ QrenadinlÉ™r" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venesuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Britaniya Vircin Adaları" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "BirləşmiÅŸ Åžtatlar Vircin Adaları" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vyetnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Vallis vÉ™ Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayot" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Yuqoslaviya" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "CÉ™nubi Afrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambiya" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabve" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Tarix vÉ™ Vaxt" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "1 ulduz günü É™lavÉ™ et" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "1 ulduz ayı É™lavÉ™ et" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "1 ulduz hÉ™ftÉ™si É™lavÉ™ et" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "1 ulduz ili É™lavÉ™ et" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "1 günəş günü É™lavÉ™ et" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "1 günəş saatı É™lavÉ™ et" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "1 günəş hÉ™ftÉ™si É™lavÉ™ et" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "1 sinodik ay É™lavÉ™ et" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "1 drakonik ay É™lavÉ™ et" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "1 anomalistik ay É™lavÉ™ et" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Orta tropik ay É™lavÉ™ et" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "1 drakonik il É™lavÉ™ et" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Orta tropik il É™lavÉ™ et" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Skripti yavaşıtmax" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Vaxt sürÉ™tini azalt" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Vaxt sürÉ™tini azalt (azca)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Skripti tezləşdir" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Vaxt sürÉ™tini çoxalt" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Vaxt sürÉ™tini çoxalt (azca)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Skripti dayandır" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Skripti davam et" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Ä°ndiki vaxt" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Skriptin normal tempi" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Normal vaxt sürÉ™ti" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Vaxtı dayandırmaq" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Skripti dayandırmaq" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "1 ulduz günü çıxmaq" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "1 ulduz ayı çıxmaq" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "1 ulduz hÉ™ftÉ™sini çıxmaq" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "1 ulduz ili çıxmaq" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "1 günəş günü çıxmaq" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "1 günəş saatı çıxmaq" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "1 günəş hÉ™ftÉ™si çıxmaq" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Sinodik ay çıxmaq" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Drakonik ay çıxmaq" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Anomalistik ay çıxmaq" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Orta tropik ay çıxmaq" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Drakonik il çıxmaq" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Orta tropik il çıxmaq" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Görüntü seçimlÉ™ri" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "ÃœfqiyÉ™ çevir" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Bütün ekrana" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfer" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimutal ÅŸÉ™bÉ™kÉ™" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Dünyanın cÉ™hÉ™tlÉ™ri" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "BürclÉ™rin ÅŸÉ™killÉ™ri" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "BürclÉ™rin sÉ™rhÉ™dlÉ™ri" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "BürclÉ™rin adları" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "BürclÉ™rin xÉ™tlÉ™ri" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Dumanlıqların arxa ÅŸÉ™killÉ™ri" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Uzaq kosmos obyektlÉ™rinin ÅŸÉ™killÉ™ri" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptik J2000 ÅŸÉ™bÉ™kÉ™" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika xÉ™tti" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekvator xÉ™tti" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatorial ÅŸÉ™bÉ™kÉ™" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatorial J2000 ÅŸÉ™bÉ™kÉ™" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Duman" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Qalaktik ÅŸÉ™bÉ™kÉ™" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Qalaktik sahÉ™" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Torpaq" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Ãœfüq xÉ™tti" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridian xÉ™tti" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Dumanlıqlar" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Uzaq kosmos obyektlÉ™ri" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "GecÉ™ ÅŸÉ™raiti" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "PlanetlÉ™rin adları" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "PlanetlÉ™rin orbitlÉ™ri" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "PlanetlÉ™rin izlÉ™ri" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Ulduzlar" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Ulduzların adları" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Vertikala çevir" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "MüxtÉ™lif" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Ãœfqi panelin avtomatik gizlÉ™nmÉ™si" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Vertikal panelin avtomatik gizlÉ™nmÉ™si" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "EvÉ™ get" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Çıxış" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "SeçilÉ™n obyekt barÉ™dÉ™ mÉ™lumatı buferÉ™ köçür" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Ekran görüntüsünü qeyd et" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Azimutal vÉ™ ekvatorial arasında seçim" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Paneli göstÉ™r" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "HÉ™rÉ™kÉ™t vÉ™ seçim" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "SeçilÉ™n obyekti mÉ™rkÉ™zləşdir" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "SeçilÉ™n planeti ev planeti et" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Obyekti izlÉ™" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "YaxınlaÅŸdır" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "UzaqlaÅŸdır" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Bucaq ölçmÉ™" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Kompas" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "EkzoplanetlÉ™ri göstÉ™r" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "\"EkzoplanetlÉ™r\" É™lavÉ™sinin seçənÉ™klÉ™ri" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "MüşahidÉ™ ÅŸÉ™raiti" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "\"MüşahidÉ™ ÅŸÉ™raiti\" É™lavÉ™sinin seçənÉ™klÉ™ri" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Okulyarlar É™lavÉ™sinin konfiqurasiyası" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okulyar görüntü" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "XÉ™tti göstÉ™r" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Okulyarların kontekst menyusu" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Sensorun kadrı" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad niÅŸanı" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "NövbÉ™ti teleskopu seç" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "NövbÉ™ti okulyarı seç" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "ÆvvÉ™lki teleskopu seç" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "ÆvvÉ™lki okulyarı seç" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Pulsarları göstÉ™r" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "\"Pulsarlar\" É™lavÉ™sinin seçənÉ™klÉ™ri" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Kvazarları göstÉ™r" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "\"Kvazarlar\" É™lavÉ™sinin seçənÉ™klÉ™ri" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "PeyklÉ™rin konfiqurasiyası pÉ™ncÉ™rÉ™si" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Yerin süni peyklÉ™ri" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "PeyklÉ™rin adları" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "\"Tarixi ifrat yeni ulduzlar\" É™lavÉ™sinin seçənÉ™klÉ™ri" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Teleskopu göstÉ™rilÉ™n koordinatlara yönÉ™ltmÉ™k" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "SkriptlÉ™r" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Ayı göstÉ™r vÉ™ böyüt" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Konfiqurasiya" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Tarix/Vaxt" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "MÉ™lumat" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Mövqe" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Axtarış" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Qısayollar" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "SÉ™manın vÉ™ müşahidÉ™nin seçənÉ™klÉ™ri" @@ -3386,7 +3562,7 @@ msgstr "YenilÉ™" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Mövqe" @@ -3402,10 +3578,10 @@ msgid "Return to default" msgstr "Æsasa qayıt" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Sil" @@ -3414,7 +3590,7 @@ msgstr "Siyahıya É™lavÉ™ et" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "En dairÉ™si:" @@ -3425,12 +3601,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Uzunluq dairÉ™si:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "YüksÉ™klik:" @@ -3454,363 +3630,407 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Obyekti tap" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Obyekti ya mövqeni tap" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "yota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alpha" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "qamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mü" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nü" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "xi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omeqa" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Bayer iÅŸarÉ™lÉ™ri üçün yunan hÉ™rflÉ™ri" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Obyekt" -#: src/ui_searchDialogGui.h:622 -msgid "RA/Dec (J2000):" -msgstr "Qalxma/EnmÉ™ (J2000):" +#: src/ui_searchDialogGui.h:644 +msgid "RA/Dec (J2000):" +msgstr "Qalxma/EnmÉ™ (J2000):" + +#: src/ui_searchDialogGui.h:645 +msgid "Position" +msgstr "Mövqe" + +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "Ä°ngiliscÉ™ adlar" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Siyahıda axtar..." -#: src/ui_searchDialogGui.h:623 -msgid "Position" -msgstr "Mövqe" +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Siyahılar" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "SÄ°MBAD onlayn astronomik bazası" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Axtarışı SÄ°MBAD ilÉ™ geniÅŸlÉ™ndirmÉ™k" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Axtarış seçənÉ™klÉ™ri" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "SeçənÉ™klÉ™r" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "Ä°ngiliscÉ™ adlar" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Siyahıda axtar..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Siyahılar" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "GöstÉ™r" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "SÉ™ma" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Ä°ÅŸarÉ™lÉ™r" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "MÉ™nzÉ™rÉ™" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Ulduzlar barÉ™dÉ™ mÉ™lumatlar" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Adlar vÉ™ markerlÉ™r" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planetler" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "PlanetlÉ™r vÉ™ peyklÉ™r" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "PlanetlÉ™ri göstÉ™r" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "PlanetlÉ™rin adlarını göstÉ™r" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "PlanetlÉ™rin orbitlÉ™rini göstÉ™r" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "İşıq sürÉ™tini modelləşdir" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Ayın miqyasdırılması" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Atmosferi göstÉ™r" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "İşıq çirklÉ™ndirmÉ™si:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "tÉ™zyiq, temperatur, itmÉ™ koeffisienti" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refraksiya/Ä°tmÉ™ seçənÉ™klÉ™ri..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolyut böyüdülmÉ™:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Nisbi böyüdülmÉ™:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Süd Yolun parlaqlığı" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Parıldama:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Çox parlaq obyektin fonunda zÉ™if ulduzları gizlÉ™tmÉ™k" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Gözün dinamik adaptasiyası" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Meteorlar" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "BürclÉ™r" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "XÉ™tlÉ™ri göstÉ™r" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Adları göstÉ™r" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "SÉ™rhÉ™dlÉ™ri göstÉ™r" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "ŞəkillÉ™ri göstÉ™r" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "ŞəkillÉ™rin parlaqlığı:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "SÉ™ma kürÉ™si" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Ekvatorial xÉ™tti göstÉ™r" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Meridian xÉ™tti göstÉ™r" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Ãœfüq xÉ™ttini göstÉ™r" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Ekliptika xÉ™ttini göstÉ™r" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Qalaktik dairÉ™nin xÉ™ttini göstÉ™r" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Proyeksiya" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "MÉ™nzÉ™rÉ™lÉ™ri É™lavÉ™ et/sil..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Yeri göstÉ™r" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Dumanı göstÉ™r" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "BaÄŸlı planeti vÉ™ mövüeni iÅŸlÉ™t" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Bu mÉ™nzÉ™rÉ™ni É™sas kimi iÅŸlÉ™t" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Bu ulduzlar barÉ™dÉ™ mÉ™lumatı É™sas kimi iÅŸlÉ™t" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "GörünÉ™n" @@ -3863,7 +4083,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Stellarium açılanda baxışın istiqamÉ™ti" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "SeçilÉ™n obyekt barÉ™dÉ™ mÉ™lumat" @@ -3879,11 +4099,8 @@ msgid "Display no information" msgstr "MÉ™lumat göstÉ™rmÉ™" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Yox" @@ -4027,7 +4244,7 @@ msgstr "saniyÉ™lÉ™r" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "BaÅŸlanğıc tarix vÉ™ vaxt" @@ -4039,182 +4256,192 @@ msgid "Other:" msgstr "DigÉ™r:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "mövcud olanı iÅŸlÉ™t" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Stellariumu sistemin saati vÉ™ vaxtı ilÉ™ baÅŸlamaq" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Sistemin tarixi vÉ™ vaxtı" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Sistem vaxtı:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Saat düzÉ™liÅŸi" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetariumun parametrlÉ™ri" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Sferik güzgü distorsiyası" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Diski görüntü" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "TÉ™k bürcü seç" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Qravitasiya etiketlÉ™ri" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Dumanlıqların arxa ÅŸÉ™killÉ™rinin düymÉ™sini göstÉ™r" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "ÇevrilmiÅŸ düymÉ™lÉ™ri göstÉ™r" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Avtomatik kiçildmÉ™ É™vvÉ™lki görüntü istiqamÉ™tinÉ™ qaytarır" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Günəş kölgÉ™lÉ™rinin vizuallaÅŸdırılması" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Ekran GörüntülÉ™ri" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Ekran görüntülÉ™rin yerləşdiyi yer" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "RÉ™nglÉ™ri çevirmÉ™k" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Ulduz kataloqların yeniliklÉ™ri" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "YüklÉ™mÉ™k üçün bura bas" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Daha çox ulduz görmÉ™k üçün bu faylı yüklÉ™yin" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "YüklÉ™mÉ™ni tÉ™zdÉ™n baÅŸla" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "YenidÉ™n" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "YüklÉ™mÉ™ni dayandır. Siz onu sonra da baÅŸlaya bilÉ™rsiz" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Ä°mtina" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Skript iÅŸlÉ™yÉ™ndÉ™ pÉ™ncÉ™rÉ™ni baÄŸla" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "SeçilÉ™n skripti baÅŸlamaq" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Aktiv skripti dayandır" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Açılışda yüklÉ™" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "qurmaq" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Æsas" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "MÉ™lumat" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Naviqasiya" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "AlÉ™tlÉ™r" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "ÆlavÉ™lÉ™r" @@ -4382,176 +4609,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okulyarlar" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Okulyar rejiminÉ™ keçmÉ™k üçün obyekti seçin" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "ÆvvÉ™lki okulyar" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "Sonrakı okulyar" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Okulyarı seç" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Okulyarların konfiqurasiyası" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okulyar #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okulyar #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Okulyarın FM: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Okulyarın görünÉ™n görünüş sahÉ™si: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "BöyüdülmÉ™: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Görünüş sahÉ™si: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "ÖlçülÉ™r: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&ÆvvÉ™lki teleskop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Sonrakı teleskop" @@ -4623,64 +4850,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Okulyarlar ÆlavÉ™si" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Buraxılış" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "XülasÉ™" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4688,7 +4920,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4699,14 +4931,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4715,305 +4947,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Ä°sti düymÉ™lÉ™r" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Görüntü" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Ãœmumi" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okulyarlar" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "ÆlavÉ™ et" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Ad:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "GörünmÉ™ görünüş sahÉ™si" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Fokal mÉ™safÉ™:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binokular" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensorlar" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskoplar" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diametr:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Haqqında" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "PeyklÉ™r" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "vizual" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navigasiya" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "hÉ™vÉ™skar" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "hava" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "gps" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Kataloq #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "YüksÉ™klik (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Peyk görünür." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Peyk kölgÉ™dÉ™dir." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Peyk görünmür" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "PeyklÉ™r ÆlavÉ™si" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Ä°stifadəçilÉ™r üçün ÅŸÉ™rhlÉ™r" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5021,25 +5322,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "TLE mÉ™lumatların yenilÉ™nmÉ™si" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5047,17 +5348,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Yeni peyklÉ™rin É™lvÉ™ edilmÉ™si" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5065,41 +5366,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Texniki ÅŸÉ™rhlÉ™r" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "LinklÉ™r" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5107,338 +5410,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "YenilÉ™nir..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "YenilÉ™" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Fayldan yenilÉ™" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "YenilÉ™mÉ™ xÉ™tası" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[yeni mÉ™nbÉ™]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "YenilÉ™" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Fayldan yenilÉ™" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "PeyklÉ™r É™lavÉ™sinin seçənÉ™klÉ™ri" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Son yenilÉ™mÉ™:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "EtiketlÉ™r" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "OrbitlÉ™rin xÉ™tlÉ™ri" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" -msgstr "SeçənÉ™klÉ™r" +msgstr "Nizamlamalar" + +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Sputniki izlÉ™mÉ™k üçün üzÉ™rinÉ™ 2 dÉ™fÉ™ basın" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Daha çox peyklÉ™r É™lavÉ™ et" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "DÉ™yiÅŸikliklÉ™ri qeyd et" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Kataloqda nömrÉ™si:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Orbit" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Kataloqda nömrÉ™si:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Ä°zahat:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Qruplar:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE mÉ™lumat:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Daha çox peyklÉ™r É™lavÉ™ et" - -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "DÉ™yiÅŸikliklÉ™ri qeyd et" - -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "MÉ™nbÉ™lÉ™r" @@ -5474,22 +5820,22 @@ msgid "Discard" msgstr "RÉ™dd etmÉ™k" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskopun idarÉ™ etmÉ™si" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "Bu plaqin Stellariumdan teleskopa komandalar yollamaq imkan verir" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5872,62 +6218,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Yanvar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Fevral" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Mart" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Aprel" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "May" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Ä°yun" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Ä°yul" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Avqust" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Sentyabr" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Oktyabr" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Noyabr" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Dekabr" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6099,7 +6445,7 @@ msgstr "24-saat formatı" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Tarixin göstÉ™rmÉ™ formatı" @@ -6115,154 +6461,154 @@ msgid "mm-dd-yyyy" msgstr "aa-gg-iiii" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Ä°stifadəçinin yazı interfeysi" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Günəş Sisteminin É™sası" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Cari tarix/vaxt" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Vaxt zonasını göstÉ™r" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "sistem" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "aaggiiii" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ggaaiiii" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "iiiiaagg" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12s" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24s" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Dil" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Ulduzları göstÉ™r" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "RÉ™nglÉ™r" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Dumanlıqların adları" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Dumanlıqların niÅŸanları" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Qalaktik dairÉ™ xÉ™tti" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "EffektlÉ™r" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Manual böyütmÉ™" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Süd Yolun inetnsivliyi" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Ä°nzibatçılıq" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Söndür" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6295,22 +6641,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6479,36 +6825,43 @@ msgid "Solar System" msgstr "Günəş Sistemi" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Tarixi Ä°frat yeni ulduzlar" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Supernova tipi: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "\"Tarixi Ä°frat yeni ulduzlar\" É™lavÉ™si" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6526,7 +6879,7 @@ msgstr "TəşəkkürlÉ™r" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6540,14 +6893,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "Rusiyada" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6555,8 +6908,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6574,29 +6928,106 @@ msgstr "\"Tarixi ifrat yeni ulduzlar\" É™lavÉ™sinin seçənÉ™klÉ™ri" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kvazarlar" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6612,51 +7043,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Kvazarlar ÆlavÉ™si" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Kvazarlazrın konfiqurasiyası" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsarlar" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6776,11 +7217,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Pulsarlar ÆlavÉ™si" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6788,137 +7229,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Qeyd" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "TəşəkkürlÉ™r" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodurov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "Fransada" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsarlar yenilÉ™nir" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Pulsarlarin konfiqurasiyası" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Pulsarlar É™lavÉ™sinin seçənÉ™klÉ™ri" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "EkzoplanetlÉ™r" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metallikliyi" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Çəkisi" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Radius" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Effektiv temperatur: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Ekzoplanet" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "MüddÉ™t" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "günlÉ™r" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Yup." -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "a.v." -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Ekssentrisitet" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "ÆyilmÉ™" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Bucaq mÉ™safÉ™si" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Açılış ili" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "EkzoplanetlÉ™r É™lavÉ™si" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6926,49 +7371,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "EkzoplanetlÉ™r yenilÉ™nir" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "EkzoplanetlÉ™rin konfiqurasiyası" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "EkzoplanetlÉ™r É™lavÉ™sinin seçənÉ™klÉ™ri" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "MÉ™lumat" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "MüşahidÉ™ ÅŸÉ™raitinin analizi" @@ -6984,185 +7518,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Yan" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Fev" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Apr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "May" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Ä°yn" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Ä°yl" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Avq" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Sen" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Okt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Noy" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Dek" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "s" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "d" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "PolarÉ™traf." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Qalxmır." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "GünəşdÉ™n maksimal uzaqlıq: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (%1 dÉ™rÉ™cÉ™dÉ™)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Bütöv il É™rzindÉ™ müşahidÉ™ olunur." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "GecÉ™ vaxtı müşahidÉ™ olunmur." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "BUGÃœN:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "BU Ä°L:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7463,6 +7991,9 @@ #~ msgid "F7" #~ msgstr "F7" +#~ msgid "Nebulas background images" +#~ msgstr "Dumanlıqların arxa ÅŸÉ™killÉ™ri" + #~ msgid ":" #~ msgstr ":" @@ -7490,6 +8021,9 @@ #~ msgid "0 deg." #~ msgstr "0 dÉ™r." +#~ msgid "Nebulas" +#~ msgstr "Dumanlıqlar" + #~ msgid "Angle Measure Plugin" #~ msgstr "Bucaq ÖlçmÉ™ É™lavÉ™si" @@ -7523,6 +8057,9 @@ #~ msgid "Edit Alternative Shortcut" #~ msgstr "Alternativ qısa yolu düzÉ™lt" +#~ msgid "TLE data:" +#~ msgstr "TLE mÉ™lumat:" + #~ msgid "Historical Supernovae Plugin" #~ msgstr "\"Tarixi ifrat yeni ulduzlar\" É™lavÉ™si" diff -Nru stellarium-0.12.1/po/stellarium/ba.po stellarium-0.12.4/po/stellarium/ba.po --- stellarium-0.12.1/po/stellarium/ba.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ba.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:09+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bashkir \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:11+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:45+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/be.po stellarium-0.12.4/po/stellarium/be.po --- stellarium-0.12.1/po/stellarium/be.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/be.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,31 +7,31 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-18 23:57+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-10 20:06+0000\n" "Last-Translator: 375gnu \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-20 05:08+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:45+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: be\n" "X-Poedit-SourceCharset: utf-8\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "ÐœÑрыдыÑн" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Экліптыка" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Экватар" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Гарызонт" @@ -39,46 +39,46 @@ msgid "Galactic Plane" msgstr "ÒалÑÐºÑ‚Ñ‹Ñ‡Ð½Ð°Ñ Ð¿Ð»Ð¾ÑкаÑьць" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Стваральнік: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "МеÑца: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 м" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "ПлÑнÑта: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Тып: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "ВелічынÑ: %1 (згаÑла да: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "ВелічынÑ: %1" @@ -88,114 +88,114 @@ msgid "Size: %1" msgstr "Памер: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "ÒалÑктыка" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Ðдкрытае Ñкопішча" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Шарападобнае Ñкопішча" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "ТуманнаÑьць" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "ПлÑнÑÑ‚Ð°Ñ€Ð½Ð°Ñ Ñ‚ÑƒÐ¼Ð°Ð½Ð½Ð°Ñьць" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Ð¦Ñ‘Ð¼Ð½Ð°Ñ Ñ‚ÑƒÐ¼Ð°Ð½Ð½Ð°Ñьць" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Скопішча, зьвÑзанае з туманнаÑьцю" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ÐевÑдомы" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "ÐезадакумÑнтаваны тып" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "ÐбÑÐ°Ð»ÑŽÑ‚Ð½Ð°Ñ Ð²ÐµÐ»Ñ–Ñ‡Ñ‹Ð½Ñ: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Ð­ÐºÐ»Ñ–Ð¿Ñ‚Ñ‹Ñ‡Ð½Ñ‹Ñ Ñ‚Ð¾Ð¿Ð°Ñ†ÑÐ½Ñ‚Ñ€Ñ‹Ñ‡Ð½Ñ‹Ñ (даты): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Ðахіленьне (даты, Ð´Ð»Ñ Ð—Ñмлі): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "ÐдлеглаÑьць: %1 а.а. (%2 км)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "ÐдлеглаÑьць: %1 аÑÑ‚Ñ€. адз." -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Бачны дыÑмÑÑ‚Ñ€: %1, з колцамі: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Бачны дыÑмÑтар: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Зоркавы пÑрыÑд: %1 дзён (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Зоркавы дзень: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "СÑÑ€Ñдні Ñонечны дзень: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Фазавы вугал: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "ЭланґацыÑ: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Фаза: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "ÐÑьветлены: %1%" @@ -206,7 +206,7 @@ msgstr "ЧаÑовае абазначÑньне: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "зорка" @@ -221,48 +221,124 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Ð‘Ð°Ñ‡Ð½Ð°Ñ Ð²ÐµÐ»Ñ–Ñ‡Ñ‹Ð½Ñ: %1 (паводле згаÑлаÑьці)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "ÑÑ€ÑƒÐ¿Ñ‚Ñ‹ÑžÐ½Ð°Ñ Ð·ÑŒÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð¾Ñ€ÐºÐ°" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "пульÑÑƒÑŽÑ‡Ð°Ñ Ð·ÑŒÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð¾Ñ€ÐºÐ°" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "Ð°Ð²Ð°Ñ€Ð°Ñ‡Ð°Ð»ÑŒÐ½Ð°Ñ Ð·ÑŒÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð¾Ñ€ÐºÐ°" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "ÐºÐ°Ñ‚Ð°ÐºÐ»Ñ–Ð·ÑŒÐ¼Ñ–Ñ‡Ð½Ð°Ñ Ð·ÑŒÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð¾Ñ€ÐºÐ°" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "Ð·Ð°Ñ†ÑŒÐ¼ÐµÐ½Ð½Ð°Ñ Ð¿Ð°Ð´Ð²Ð¾Ð¹Ð½Ð°Ñ ÑÑ‹ÑÑ‚Ñма" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "Ð·ÑŒÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð¾Ñ€ÐºÐ°" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "Ð¿Ð°Ð´Ð²Ð¾Ð¹Ð½Ð°Ñ Ð·Ð¾Ñ€ÐºÐ°" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Тып: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "ВелічынÑ: %1 (згаÑла да: %2. Б-Б: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "ВелічынÑ: %1 (Б-Б: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Прамежак велічынь: %1%2%3 (ФотамÑÑ‚Ñ€Ñ‹Ñ‡Ð½Ð°Ñ ÑÑ‹ÑÑ‚Ñма: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" +"Прамежак велічынь: %1%2%3/%4 (ФотамÑÑ‚Ñ€Ñ‹Ñ‡Ð½Ð°Ñ ÑÑ‹ÑÑ‚Ñма: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "СпÑктральны тып: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "ÐдлеглаÑьць: %1 Ñьв. гадоў" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ПаралÑкÑ: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Эпоха мінімуму: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Эпоха макÑымуму: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "ПÑрыÑд: %1 дзён" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "ÐаÑтупны мінімум блÑÑку: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "ÐаÑтупны макÑымум блÑÑку: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "ПрацÑглаÑьць зацьменьнÑ: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Ð§Ð°Ñ ÑƒÐ·Ñ‹Ñ…Ð¾Ð´Ð¶Ð°Ð½ÑŒÐ½Ñ: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "КаÑьмічны карабель" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "Выпраўленьне абÑзьдзейненае. ВыкарыÑтоўвай толькі калі ведаеш што робіш!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -274,7 +350,7 @@ "Ðйнштайна, Ð¿Ð°Ñ†ÑŒÐ²ÐµÑ€Ð´Ð¶Ð°Ð½Ð°Ñ Ð´Ð°ÑžÐ½Ñ–Ð¼Ñ– зацьменнÑмі Сонца (%1). Болей зьвеÑтак " "глÑдзі %2тут%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -283,7 +359,7 @@ "ГÑÑ‚Ð°Ñ ÑÐ¼Ð¿Ñ–Ñ€Ñ‹Ñ‡Ð½Ð°Ñ Ñ„Ð¾Ñ€Ð¼ÑƒÐ»Ð° была Ð°Ð¿ÑƒÐ±Ð»Ñ–ÐºÐ°Ð²Ð°Ð½Ð°Ñ Ð”Ð¶.Ðœ. КлемÑнÑам у артыкуле " "Ðаконт ÑÑ‹ÑÑ‚Ñмы аÑтранамічных канÑтантаў (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -297,7 +373,7 @@ "калькулÑтараў. ТакÑама Ñна выкарыÑтоўваецца Ñž кампутарнай праґраме " "SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -307,7 +383,7 @@ "ÑÑ„ÑмÑрыдамі іКанонам Ñонечных зацьменьнÑÑž, напіÑаных Муке й " "ÐœÑÑ‘Ñам (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -318,7 +394,7 @@ "з 5-ці Ñ– 10-ці дзённымі прамежкамі ад 601 г. да н.Ñ. да 1649 г. н.Ñ. Ð¢Ð°ÐºÑ–Ñ Ð¶ " "дачыненьні былі нÑÑўна прынÑÑ‚Ñ‹Ñ Ñыґізійных табліцах ÒалдÑтайна (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -328,7 +404,7 @@ "ГÑÑ‚Ñ‹ раўнаньне было апублікаванае П.Ðœ. Мюлерам Ñ– Ф.Р. СтÑÑ„ÑнÑанам у артыкуле " "ПаÑкарÑньні ЗÑмлі й МеÑÑца ад першых аÑтранамічных назіраньнÑÑž (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -337,7 +413,7 @@ "ГÑÑ‚Ñ‹ раўнаньне было апублікаванае Ф.Р. СтÑÑ„ÑнÑанам у артыкуле " "ÐÑÑ‚Ñ€Ð°Ð½Ð°Ð¼Ñ–Ñ‡Ð½Ñ‹Ñ Ð½Ð°Ð·Ñ–Ñ€Ð°Ð½ÑŒÐ½Ñ– да Ñпохі Ñ‚ÑлеÑкопаў (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -350,7 +426,7 @@ "ÐŸÐ°Ð»Ñ–Ð½Ð°Ð¼Ñ–Ð½Ð°Ð»ÑŒÐ½Ð°Ñ Ð°Ð¿Ñ€Ð°ÐºÑÑ‹Ð¼Ð°Ñ†Ñ‹Ñ Ð¿Ð°Ð¿Ñ€Ð°Ð²Ð°Ðº дÑльты T E.T.-U.T. у пÑрыÑд 1800-" "1975 (%1) Ñк апракÑÑ‹Ð¼Ð°Ñ†Ñ‹Ñ Ð´Ð°Ð½ÑŒÐ½ÑÑž, апублікаваных БраўÑрам (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -359,7 +435,7 @@ "ГÑÑ‚Ñ‹ альґарытм быў прынÑÑ‚Ñ‹ ПлÑнÑтарнымі праґрамамі й табліцамі ад -4000 " "да +2800 (1986) Ñ– кампутарнай праґрамай RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -370,11 +446,11 @@ "артыкуле ДоўгачаÑÐ¾Ð²Ñ‹Ñ Ð·ÑŒÐ¼ÐµÐ½Ñ‹ аварачÑÐ½ÑŒÐ½Ñ Ð—Ñмлі ад 700 г. да н.Ñ. да 1980 " "г. н.Ñ. (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "ГÑÑ‚Ñ‹ альґарытм выкарыÑтоўваецца Ñž праґраме-плÑнÑтару Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -384,7 +460,7 @@ "каноне Ñонечных зацьменьнÑÑž 1986-2035 (1987) іПÑцідзеÑÑцігадовым " "каноне меÑÑчных зацьменьнÑÑž 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -393,7 +469,7 @@ "ГÑÑ‚Ð°Ñ Ñ„Ð¾Ñ€Ð¼ÑƒÐ»Ð° была Ð°Ñ‚Ñ€Ñ‹Ð¼Ð°Ð½Ð°Ñ Ðš.Ðœ. БаркоўÑкім (%1) з аналізу 31 запіÑу аб " "Ñонечных зацьменьнÑÑž, што адбываліÑÑ Ð¼Ñ–Ð¶ 2137 г. да н.Ñ. Ñ– 1715 г. н.Ñ." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -405,7 +481,7 @@ "ЗÑхам у артыкуле Ð­Ð¼Ð¿Ñ–Ñ€Ñ‹Ñ‡Ð½Ñ‹Ñ Ð¿ÐµÑ€Ð°Ñ‚Ð²Ð°Ñ€Ñньні з U.T. у E.T. Ð´Ð»Ñ Ð¿ÑрыÑду 1800-" "1988 (%1) Ñк апракÑÑ‹Ð¼Ð°Ñ†Ñ‹Ñ Ð´Ð°Ð½ÑŒÐ½ÑÑž СтÑÑ„ÑнÑана й МорыÑана (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -415,7 +491,7 @@ "вÑÑ€ÑÑ–Ñ– меÑÑчнай Ñ‚Ñорыі ELP 2000-85 у іхнай кнізе МеÑÑÑ‡Ð½Ñ‹Ñ Ñ‚Ð°Ð±Ð»Ñ–Ñ†Ñ‹ й " "праґрамы ад 4000 г. да н.Ñ. да 8000 г. н.Ñ. (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -426,7 +502,7 @@ "артыкуле ДоўгачаÑÐ¾Ð²Ñ‹Ñ Ñ„Ð»ÑŽÐ½ÐºÑ‚ÑƒÐ°Ñ†Ñ‹Ñ– аварачÑÐ½ÑŒÐ½Ñ Ð—Ñмлі: ад 700 г. да н.Ñ. " "да 1990 г. н.Ñ. (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -435,7 +511,7 @@ "Ф.Р. СтÑÑ„ÑнÑан апублікаваў гÑтую формулу Ñž Ñваёй кнізе ГіÑÑ‚Ð°Ñ€Ñ‹Ñ‡Ð½Ñ‹Ñ " "зацьменьні й аварачÑньне ЗÑмлі (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -445,7 +521,7 @@ "ўжываецца. Табліцы Ð´Ð»Ñ 1620—2000 гг., улучае варыÑнт Шапрона, Шапронам-Ð¢ÑƒÐ·Ñ " "й Франку (1997) Ð´Ð»Ñ Ð³Ð°Ð´Ð°Ñž па-за абÑÑгам 1620—2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -455,7 +531,7 @@ "выкарыÑтоўвае гÑтую формулу на Ñваёй інтÑрактыўнай Ñтаронцы %1Гарызонты " "ЛРР%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -464,7 +540,7 @@ "ГÑÑ‚Ñ‹ паліном быў апублікаваны Ж. ÐœÑÑ‘Ñам Ñ– Л. СіманÑам у артыкуле " "Палінамінальнае набліжÑньне да дÑльта T, 1620-2000 н.Ñ. (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -474,7 +550,7 @@ "МантÑнбрука й Т. Пфлеґера ўтрымлівае проÑÑ‚Ñ‹ паліном 3-га парадку Ð´Ð»Ñ " "нÑдаўнÑй мінуўшчыны." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -486,7 +562,7 @@ "табліцах (2002). Яна базуецца на ÐÑтранамічных альґарытмах " "Жана ÐœÑÑ‘Ñа (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -497,7 +573,7 @@ "артыкуле ГіÑÑ‚Ð°Ñ€Ñ‹Ñ‡Ð½Ñ‹Ñ Ð·Ð½Ð°Ñ‡Ñньні памылкі зÑмнога гадзіньніка %1T Ñ– разьлік " "зацьменьнÑÑž (%2) з дадаткам у (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -510,7 +586,7 @@ "вывеў формулу %1T. Яна базуецца на магчымай пÑрыÑдычнаÑьці, апіÑанай " "СтÑÑ„ÑнÑанам (%2). Болей зьвеÑтак глÑдзі %3тут%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -526,11 +602,34 @@ "(2006). ГÑÑ‚Ð°Ñ Ñ„Ð¾Ñ€Ð¼ÑƒÐ»Ð° такÑама выкарыÑтоўваецца Ñž праґраме разьліку Ñонечных, " "меÑÑчных Ñ– плÑнÑтарных ÑÑ„ÑмÑрыд SOLEX." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Прадвызначанае." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"РашÑньне Б. Баньевіча, заÑнаванае на рашÑньні СтÑÑ„ÑнÑана й МорыÑана (1984), " +"было апублікаванае Ñž артыкуле em>Ð¡Ñ‚Ð°Ñ€Ð°Ð¶Ñ‹Ñ‚Ð½Ñ‹Ñ Ð·Ð°Ñ†ÑŒÐ¼ÐµÐ½ÑŒÐ½Ñ– й датаваньне " +"Ð¿Ð°Ð´Ð·ÐµÐ½ÑŒÐ½Ñ Ð‘Ð°Ð±Ñ–Ð»Ñ‘Ð½Ñƒ (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"ГÑÑ‚Ñ‹ разьвÑзак С. ІÑлама, Ðœ. Садзіка й Ðœ. С. КурÑшы, заÑнаваны на разьвÑзку " +"ÐœÑÑ‘Ñа й СаманÑа (200), быў апублікаваны Ñž артыкуе ÐœÑ–Ð½Ñ–Ð¼Ñ–Ð·Ð°Ñ†Ñ‹Ñ Ð¿Ð°Ð¼Ñ‹Ð»ÐºÑ– " +"палінінальнай апракÑымацыі дÑльтаT (%1) Ñ– перагледжаны Санам ІÑламам у " +"2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -539,15 +638,15 @@ "ГÑта — ÐºÐ²Ð°Ð´Ñ€Ð°Ñ‚Ñ‹Ñ‡Ð½Ð°Ñ Ñ„Ð¾Ñ€Ð¼ÑƒÐ»Ð° разьліку %1T з каÑфіцыентамі, вызначанымі " "карыÑтальнікам." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Памылка" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "зь нÑзначнымі велічынÑмі па-за гÑтым прамежкам" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -555,22 +654,23 @@ "Ñа значнай памылкай, меншай за ÑÑкунду, найбольшай памылкай 1,9 Ñ Ñ– " "нÑзначнымі велічынÑмі па-за гÑтым прамежкам" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "з нулÑвымі значÑньнÑмі па-за гÑтым прамежкам" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "з тыповай 1-ÑÑкунднай дакладнаÑьцю й нулÑвымі значÑньнÑмі па-за гÑтым " "прамежкам" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "ДыÑпазон, дапушчальны да выкарыÑтаньнÑ: гады ад %1 да %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "ДыÑпазон, дапушчальны да выкарыÑтаньнÑ: гады ад %1 да %2." @@ -740,52 +840,53 @@ msgid "Found" msgstr "Ðдшукана" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Выберы каталёґ Ð´Ð»Ñ Ð·Ð´Ñ‹Ð¼ÐºÐ°Ñž Ñкрана" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Пачатковае поле зроку: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Пачатковы напрамак аглÑду, азімут/вышынÑ: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Стваральнікі" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Кантакт" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Стваральнік" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ЛіцÑнзіÑ" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Выконваецца ÑцÑнар: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Выконваецца ÑцÑнар: [ніÑкі]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -793,16 +894,16 @@ "ÐÐ¾Ð²Ñ‹Ñ ÐºÐ°Ñ‚Ð°Ð»Ñ‘Ò‘Ñ– зорак загружаныÑ!\n" "ПеразапуÑьці Stellarium, каб адлюÑтраваць Ñ–Ñ…." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "УÑе анÑÑžÐ½Ñ‹Ñ ÐºÐ°Ñ‚Ð°Ð»Ñ‘Ò‘Ñ– зорак былі ÑžÑталÑваныÑ." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Загрузка каталёґу %1 з %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -811,7 +912,7 @@ "Загрузка %1…\n" "(ГÑтае вакно можна закрыць.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -822,7 +923,7 @@ "КолькаÑьць зорак: %2 млн\n" "ДыÑпазон велічынÑÑž: %3 — %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -831,11 +932,11 @@ "Ðе атрымалаÑÑ Ð·Ð°Ð³Ñ€ÑƒÐ·Ñ–Ñ†ÑŒ %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "ПравÑраецца ÑуцÑльнаÑць файла…" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -845,115 +946,123 @@ "Файл пашкоджаны." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Ðльґарытм" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Без выпраўлÑньнÑ" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Шох (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "КлемÑÐ½Ñ (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "ÐœÐС (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "ÐÑÑ‚Ñ€Ð°Ð½Ð°Ð¼Ñ–Ñ‡Ð½Ñ‹Ñ ÑÑ„ÑмÑрыды (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Такерман (1962, 1964) Ñ– ÒалдÑтайн (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Мюлер Ñ– СтÑÑ„ÑнÑан (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "СтÑÑ„ÑнÑан (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "ШмадÑль Ñ– ЗÑÑ… (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "МорыÑан Ñ– СтÑÑ„ÑнÑан (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "СтÑÑ„ÑнÑан Ñ– МорыÑан (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "СтÑÑ„ÑнÑан Ñ– ГульдÑн (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "ЭÑпÑнак (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "БаркоўÑкі (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "ШмадÑль Ñ– ЗÑÑ… (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Шапрон-Ð¢ÑƒÐ·Ñ Ñ– Шапрон (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "СтÑÑ„ÑнÑан Ñ– МорыÑан (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "СтÑÑ„ÑнÑан (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "ÐœÑÑ‘Ñ (1998) (з Шапронам, Шапронам-Ð¢ÑƒÐ·Ñ Ñ– Франку (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "Гарызонты ЛРР" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "ÐœÑÑ‘Ñ Ñ– Ð¡Ñ‹Ð¼Ð°Ð½Ñ (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "МонтÑнбрук Ñ– Пфлеґер (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "РÑйнґальд Ñ– ДÑршовіц (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "МорыÑан Ñ– СтÑÑ„ÑнÑан (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "ЭÑпÑнак Ñ– ÐœÑÑ‘Ñ (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Р'ÐµÐ¹Ñ (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Баньевіч (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "ІÑлам, Садзік Ñ– КурÑшы (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Сваё раўнаньне %1T" @@ -1126,49 +1235,53 @@ msgid "OSX Developer: %1" msgstr "РаÑпрацоўнік Ð´Ð»Ñ OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Вакно канÑолі ÑцÑнароў" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Вокны" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Прабел" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1 м" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Без апіÑаньнÑ" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "БÑзь зьнічак" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "ÐÐ°Ñ€Ð¼Ð°Ð»ÑŒÐ½Ð°Ñ Ñ‡Ð°ÑьцінÑ" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Ð—Ð²Ñ‹Ñ‡Ð°Ð¹Ð½Ð°Ñ Ñ‡Ð°ÑÑŒÑ†Ñ–Ð½Ñ ÐŸÑÑ€ÑÑідаў" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "ЧаÑÑŒÑ†Ñ–Ð½Ñ Ð¼ÑÑ‚Ñорнага шторму" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Ð’Ñ‹ÐºÐ»ÑŽÑ‡Ð½Ð°Ñ Ñ‡Ð°ÑÑŒÑ†Ñ–Ð½Ñ Ð›ÐµÐ°Ð½Ñ–Ð´Ð°Ñž" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "ÐÐ°Ð¹Ð±Ð¾Ð»ÑŒÑˆÐ°Ñ ÐºÐ°Ð»Ñ– (Леаніды Ñž 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Ðовае меÑца" @@ -1273,19 +1386,19 @@ msgid "starchart" msgstr "Ð·Ð¾Ñ€Ð½Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð°" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Памылка пошуку Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Пошук Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "УнівÑÑ€ÑÑ‹Ñ‚ÑÑ‚ СтраÑбуру (ФранцыÑ)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Гарвардзкі ўнівÑÑ€ÑÑ‹Ñ‚ÑÑ‚ (ЗШÐ)" @@ -1301,30 +1414,38 @@ msgid "Alternative shortcut" msgstr "ÐльтÑрнатыўны Ñкарот" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Сваё раўнаньне Ð´Ð»Ñ %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Тыповае раўнаньне Ð´Ð»Ñ Ñ€Ð°Ð·ÑŒÐ»Ñ–ÐºÑƒ %1T выглÑдае Ñк:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "дзе" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "год" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "ГÑÑ‚Ð°Ñ ÑÑ‹ÑÑ‚Ñма не падтрымлівае OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Ð¢Ð²Ð°Ñ Ð¿Ð»Ñтформа не падтрымлівае найменшую патрÑбную вÑÑ€ÑÑ–ÑŽ OpenGL: 1.2. Калі " +"лаÑка, абнаві драйвÑры ґрафічнае карткі." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Сонца" @@ -1341,12 +1462,12 @@ msgstr "ЗÑмлÑ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "МеÑÑц" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "МарÑ" @@ -1444,7 +1565,7 @@ msgstr "ÐœÑÑ‚Ñ‹Ñ" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Сатурн" @@ -1742,193 +1863,222 @@ msgstr "ІнуіцкіÑ" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "ІндыйÑÐºÐ°Ñ Ð²ÐµÐ´Ñ‹Ñ‡Ð½Ð°Ñ" + +#: src/translations.h:171 msgid "Korean" msgstr "КарÑйÑкіÑ" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Лакота" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Маоры" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Ðаваха" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "СкандынаўÑкіÑ" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "ПалінÑзійÑкіÑ" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "СаамÑкіÑ" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" -msgstr "Тупі-Гуарані" +msgstr "Тупі-Òуарані" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Тонґа" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "ЗаходніÑ" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "ÒерÑн" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "ДрÑвы" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Ураган" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "ÐкіÑн" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Òархінґ" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Тур па краÑвідах" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "ЧаÑтковае зацьменьне МеÑÑца" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Поўнае зацьменьне МеÑÑца" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "ЗаÑьцерагальнік Ñкрана" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Сонечнае зацьменьне 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Пачатковы ÑцÑнар" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "ЗадыÑк" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Патройны ўзыход Ñ– захад на ÐœÑркурыі" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Падвойнае зацьменьне на ДÑймаÑе Ñž 2017 годзе" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Падвойнае зацьменьне на ДÑймаÑе Ñž 2031 годзе" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Зацьменьне на гары Ðлімп 10 ÑÑ‚ÑƒÐ´Ð·ÐµÐ½Ñ 2068 года" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Пакрыцьцё ЗÑмлі й ЮпітÑра Ñž 2048 годзе" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "Тры транзыты й два зацьменьні на ДÑймаÑе Ñž 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "ЗаÑьцерагальнік Ñкрану Â«Ð¡Ð¾Ð½ÐµÑ‡Ð½Ð°Ñ ÑÑ‹ÑÑ‚Ñма»" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "ÐглÑд Ñузор'ÑÑž" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Сонца, бачнае з розных плÑнÑÑ‚" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "ÐÐ°Ð¹Ð»ÐµÐ¿ÑˆÑ‹Ñ Ð²Ñ–Ð´Ñ‹ ЗÑмлі зь іншых каÑьмічных целаў" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Транзыт Ð’ÑнÑры" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Ðналема" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "ÐглÑд зорных культур" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Падзеі на ЗÑмлі, Ð±Ð°Ñ‡Ð½Ñ‹Ñ Ð· ÐœÑркурыÑ" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Падзеі на ЗÑмлі, Ð±Ð°Ñ‡Ð½Ñ‹Ñ Ð· Ð’ÑнÑры" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Падзеі на ЗÑмлі, Ð±Ð°Ñ‡Ð½Ñ‹Ñ Ð· МарÑа" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "ÐÐ°Ð¹Ð±Ð¾Ð»ÑŒÑˆÑ‹Ñ Ñланґацыі й ÑркаÑьці ЗÑмлі, Ð±Ð°Ñ‡Ð½Ñ‹Ñ Ð· МарÑа" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "ÐÐ°Ð¹Ð±Ð¾Ð»ÑŒÑˆÑ‹Ñ Ñланґацыі ЗÑмлі й МарÑа, Ð±Ð°Ñ‡Ð½Ñ‹Ñ Ð· ЮпітÑра" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "ÐглÑд уÑÑ–Ñ… уÑталÑваных краÑвідаў." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "ÐглÑд кожнае ÑžÑталÑванае культуры." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "СцÑнар, Ñкі паказвае чаÑтковае зацьменьне МеÑÑца." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "СцÑнар, Ñкі паказвае поўнае зацьменьне МеÑÑца." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Павольны бÑÑконцы тур па небе, паказвае адвольнае аб'екты." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1936,11 +2086,11 @@ "СцÑнар, Ñкі паказвае поўнае Ñонечнае зацьменьне, Ñкое было Ñž 2009 годзе " "(меÑца — Ранґпур, БанґлÑдÑш)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "СцÑнар, Ñкі аўтаматычна запуÑкаецца на пачатку працы." -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1949,7 +2099,7 @@ "ГÑÑ‚Ñ‹ ÑцÑнар паказвае Ñузор'Ñ– ЗадыÑку, г.зн. Ñузор'Ñ–, ÑÐºÑ–Ñ Ð»Ñжаць уздоўж " "лініі, Ñкую за год акрÑÑьлівае Сонца на нÑбеÑным купале." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1957,7 +2107,7 @@ "Праз аÑабліваÑьцÑÑž арбіты ÐœÑÑ€ÐºÑƒÑ€Ñ‹Ñ Ð¹ аварачÑÐ½ÑŒÐ½Ñ Ñž пÑўных меÑцах Сонца будзе " "ўзыходзіць Ñ– заходзіць тры разы за адзін мÑркурыÑнÑкі дзень." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1965,7 +2115,7 @@ "Перад тым Ñк ÐœÐ°Ñ€Ñ Ð·Ð°Ñ†ÑŒÐ¼Ñ–Ñ†ÑŒ Сонца, Ð¤Ð¾Ð±Ð°Ñ Ð²Ñ‹Ð¹Ð´Ð·Ðµ з-за МарÑа й зацьміць Сонца " "першым. ГÑта адбудзецца між Скарпіёнам Ñ– Стральцом 26 краÑавіка 2017 года." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1973,12 +2123,12 @@ "Перад тым Ñк ÐœÐ°Ñ€Ñ Ð·Ð°Ñ†ÑŒÐ¼Ñ–Ñ†ÑŒ Сонца, Ð¤Ð¾Ð±Ð°Ñ Ð²Ñ‹Ð¹Ð´Ð·Ðµ з-за МарÑа й зацьміць Сонца " "першым. ГÑта адбудзецца між ЦÑльцом Ñ– БлізьнÑтамі 23 Ð»Ñ–Ð¿ÐµÐ½Ñ 2031 года." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Зацьменьне Сонца ФобаÑам, назіранае з гары Ðлімп 10 ÑÑ‚ÑƒÐ´Ð·ÐµÐ½Ñ 2068 года." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1989,7 +2139,7 @@ "такіх пакрыцьцÑÑž адбудзецца 23 ÑÑ‚ÑƒÐ´Ð·ÐµÐ½Ñ 2048 года. Паказана Ñž Ñапраўднай " "хуткаÑьці." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2004,33 +2154,33 @@ "цемры між МарÑам Ñ– ДÑймаÑам. Калі Ð¤Ð¾Ð±Ð°Ñ Ð·ÑŒÑўлÑецца з-за МарÑа, ён уÑÑ‘ ÑÑˆÑ‡Ñ " "зацьмёны ценем МарÑа Ñ– будзе аÑьветлены пазьней." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"ЗаÑьцерагальнік Ñкрану з разнаÑтайнымі (171 штука!) падзеÑмі Ñž Сонечнай " -"ÑÑ‹ÑÑ‚Ñме." +"ЗаÑьцерагальнік Ñкрану з рознымі падзеÑмі Сонечнай ÑÑ‹ÑÑ‚Ñмы. 187 падзей " +"агулам." -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "ÐглÑд заходніх Ñузор'ÑÑž." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Як выглÑдае Сонца зь вÑлікіх плÑнÑÑ‚ Сонечнай ÑÑ‹ÑÑ‚Ñмы й Плютона." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "ÐÐ°Ð¹Ð»ÐµÐ¿ÑˆÑ‹Ñ Ð²Ñ–Ð´Ñ‹ ЗÑмлі зь іншых аб'ектаў Сонечнай ÑÑ‹ÑÑ‚Ñмы Ñž 21 Ñтагодзьдзі." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "Транзыт Ð’ÑнÑры, Ñк ён быў бачны Ñž аўÑтралійÑкім СыднÑÑ– 6 чÑÑ€Ð²ÐµÐ½Ñ 2012 года." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." @@ -2038,7 +2188,7 @@ "ГÑÑ‚Ñ‹ ÑцÑнар паказвае аналему — шлÑÑ…, Ñкім праходзіць Сонца па небе на " "працÑгу года." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2046,1468 +2196,1504 @@ "УÑпышка звышновай, назіранай Тыха Браге Ñž 1572 годзе. МуÑіш задзейнічаць " "дадатак «ЗвышновыÑ»." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "ÐÐ°Ð¹Ð±Ð¾Ð»ÑŒÑˆÑ‹Ñ Ñланґацыі й ÑркаÑьці ЗÑмлі, Ð±Ð°Ñ‡Ð½Ñ‹Ñ Ð· МарÑа, 2000-3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "ÐÐ°Ð¹Ð±Ð¾Ð»ÑŒÑˆÑ‹Ñ Ñланґацыі ЗÑмлі, Ð±Ð°Ñ‡Ð½Ñ‹Ñ Ð· ЮпітÑра, 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Ðндора" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Ðб'ÑÐ´Ð½Ð°Ð½Ñ‹Ñ ÐрабÑÐºÑ–Ñ Ð­Ð¼Ñ–Ñ€Ð°Ñ‚Ñ‹" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ÐўганіÑтан" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Ðнтыґуа й Барбуда" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "ÐнґільÑ" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "ÐльбаніÑ" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ÐрменіÑ" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "ÐідÑрлÑÐ½Ð´Ð·ÐºÑ–Ñ ÐнтыльÑÐºÑ–Ñ Ð°Ñтравы" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Ðнґола" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Ðнтарктыда" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Ðрґентына" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "ÐмÑрыканÑкае Самоа" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ÐÑžÑтрыÑ" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ÐÑžÑтраліÑ" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Ðруба" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "ÐзÑрбайджан" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "БоÑÑŒÐ½Ñ–Ñ Ð¹ Герцаґавіна" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "БарбадаÑ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "БанґлÑдÑш" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "БÑльґіÑ" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркіна-ФаÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "БаўгарыÑ" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "БахрÑйн" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Бурундзі" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "БÑнін" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "БÑÑ€Ð¼ÑƒÐ´Ð·ÐºÑ–Ñ Ð°Ñтравы" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "БрунÑй" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "БалівіÑ" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "БразыліÑ" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "БагамÑÐºÑ–Ñ Ð°Ñтравы" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "ВоÑтраў БувÑ" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "БатÑвана" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "БеларуÑÑŒ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "БÑліз" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Канада" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "КакоÑÐ°Ð²Ñ‹Ñ Ð°Ñтравы" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "ДÑÐ¼Ð°ÐºÑ€Ð°Ñ‚Ñ‹Ñ‡Ð½Ð°Ñ Ñ€ÑÑпубліка Конґа" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "ЦÑнтральна-ÐфрыканÑÐºÐ°Ñ Ð ÑÑпубліка" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "РÑÑпубліка Конґа" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "ШвайцарыÑ" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Кот д'Івуар" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "ÐÑтравы Кука" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Чылі" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "КамÑрун" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Кітай" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "КалюмбіÑ" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "КоÑта-Рыка" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "СÑÑ€Ð±Ñ–Ñ Ð¹ ЧарнагорыÑ" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Куба" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Каба-Ð’ÑрдÑ" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "ВоÑтраў РаÑтва" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Кіпр" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ЧÑÑÐºÐ°Ñ Ð ÑÑпубліка" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "ÐÑмеччына" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Джыбуці" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "ДаніÑ" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Дамініка" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "ДамініканÑÐºÐ°Ñ Ð ÑÑпубліка" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ðльжыр" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Эквадор" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "ЭÑтоніÑ" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Эґіпет" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "ЗаходнÑÑ Ð¡Ð°Ñ…Ð°Ñ€Ð°" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "ЭрытрÑÑ" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "ГішпаніÑ" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "ЭтыёпіÑ" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ФінлÑндыÑ" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Фіджы" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ФолклÑÐ½Ð´Ð·ÐºÑ–Ñ Ð°Ñтравы" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "МікранÑзіÑ" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "ФарÑÑ€ÑÐºÑ–Ñ Ð°Ñтравы" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "ФранцыÑ" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Òабон" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Ð’ÑлікабрытаніÑ" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "ÒÑ€Ñнада" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ГрузіÑ" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "ФранцуÑÐºÐ°Ñ ÒвіÑна" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Гана" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Òібральтар" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "ÒÑ€ÑнлÑндыÑ" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "ÒамбіÑ" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "ÒвінÑÑ" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "ÒвадÑлюпа" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "ЭкватарыÑÐ»ÑŒÐ½Ð°Ñ ÒвінÑÑ" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "ГрÑцыÑ" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "ÐŸÐ°ÑžÐ´Ð½Ñ‘Ð²Ð°Ñ ÒÐµÐ¾Ñ€Ò‘Ñ–Ñ Ð¹ ÐŸÐ°ÑžÐ´Ð½Ñ‘Ð²Ñ‹Ñ Ð¡ÑÐ½Ð´Ð²Ñ–Ñ‡Ð°Ð²Ñ‹Ñ Ð°Ñтравы" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "ÒватÑмала" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Òуам" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "ÒвінÑÑ-БіÑаў" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "ÒаÑна" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Ганконґ" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "ВоÑтраў Герд Ñ– ÐÑтравы Макдоналд" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ГандураÑ" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "ХарватыÑ" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Гаіці" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Вугоршчына" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "ІнданÑзіÑ" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ІрлÑндыÑ" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Ізраіль" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ІндыÑ" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "БрытанÑÐºÐ°Ñ Ñ‚ÑÑ€Ñ‹Ñ‚Ð¾Ñ€Ñ‹Ñ Ñž ІндыйÑкім акіÑне" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ірак" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Іран" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ІÑьлÑндыÑ" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ІталіÑ" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Ямайка" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "ЯрданіÑ" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "ЯпоніÑ" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "КеніÑ" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "КыргыÑтан" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Камбоджа" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Кірыбаці" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "КаморÑÐºÑ–Ñ Ð°Ñтравы" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "СÑн-ÐšÑ–Ñ‚Ñ Ñ– ÐÑвіÑ" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "КарÑйÑÐºÐ°Ñ Ðародна-ДÑÐ¼Ð°ÐºÑ€Ð°Ñ‚Ñ‹Ñ‡Ð½Ð°Ñ Ð ÑÑпубліка" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "РÑÑпубліка КарÑÑ" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "КувÑйт" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Кайманавы аÑтравы" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "КазахÑтан" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Лао" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Лібан" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "СÑн-ЛюÑÑ–Ñ" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "ЛіхтÑнштайн" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Шры-Ланка" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "ЛібÑрыÑ" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ЛеÑота" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Летува" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ЛюкÑÑмбурґ" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "ЛатвіÑ" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "ЛівійÑÐºÐ°Ñ ÐрабÑÐºÐ°Ñ Ð”Ð¶Ð°Ð¼Ð°Ñ…Ñ–Ñ€Ñ‹Ñ" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Марока" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Манака" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Малдова" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "МадаґаÑкар" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Маршалавы аÑтравы" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "МакедоніÑ" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Малі" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Ðœ'Ñнма" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "МанголіÑ" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Макао" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "ÐŸÐ°ÑžÐ½Ð¾Ñ‡Ð½Ñ‹Ñ ÐœÐ°Ñ€Ñ‹ÑнÑÐºÑ–Ñ Ð°Ñтравы" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Мартыніка" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "МаўрытаніÑ" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "МанÑÑрат" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Мальта" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Маўрыкій" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "МальдыўÑÐºÑ–Ñ Ð°Ñтравы" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Малаві" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "ÐœÑкÑыка" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "МалайзіÑ" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Мазамбік" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "ÐамібіÑ" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "ÐÐ¾Ð²Ð°Ñ ÐšÐ°Ð»ÐµÐ´Ð¾Ð½Ñ–Ñ" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Ðіґер" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "ВоÑтраў Ðорфалк" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "ÐіґерыÑ" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Ðікараґуа" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "ÐідÑрлÑнды" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "ÐарвÑгіÑ" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "ÐÑпал" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Ðауру" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Ðіуе" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "ÐÐ¾Ð²Ð°Ñ Ð—ÑлÑндыÑ" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Ðман" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Панама" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "ПÑру" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "ФранцуÑÐºÐ°Ñ ÐŸÐ°Ð»Ñ–Ð½ÑзіÑ" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Папуа–ÐÐ¾Ð²Ð°Ñ ÒвінÑÑ" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Філіпіны" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ПакіÑтан" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Польшча" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "СÑн-П'ер Ñ– Мікелён" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "ÐÑтравы Піткейрн" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "ПуÑрта-Рыка" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "ПалеÑтынÑÐºÑ–Ñ Ñ‚Ñрыторыі" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "ПартуґаліÑ" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Палау" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Параґвай" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Катар" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "РÑюньён" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "РумыніÑ" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "СÑрбіÑ" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "РаÑійÑÐºÐ°Ñ Ð¤ÑдÑрацыÑ" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Руанда" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "СаудаўÑÐºÐ°Ñ ÐрабіÑ" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Саламонавы ÐÑтравы" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "СÑйшÑльÑÐºÑ–Ñ Ð°Ñтравы" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Судан" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ШвÑцыÑ" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Сынґапур" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "ВоÑтраў СьвÑтой Ðлены" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "СлавеніÑ" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "ÐÑтравы Свальбард Ñ– Ян Маен" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "СлавакіÑ" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Сьера-ЛеонÑ" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Сан-Марына" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "СÑнÑґал" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Самалі" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Сурынам" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Сан-Ð¢Ð°Ð¼Ñ Ð¹ ПрынÑыпі" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Сальвадор" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "СірыйÑÐºÐ°Ñ ÐрабÑÐºÐ°Ñ Ð ÑÑпубліка" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "СвазілÑнд" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "ÐÑтравы ТÑÑ€ÐºÑ Ñ– КÑйкаÑ" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Чад" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "ФранцуÑÐºÑ–Ñ Ð¿Ð°ÑžÐ´Ð½Ñ‘Ð²Ñ‹Ñ Ñ‚Ñрыторыі" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Тоґа" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "ТайлÑнд" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ТаджыкіÑтан" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Такелау" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "УÑходні Тымор" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ТуркмÑніÑтан" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ТуніÑ" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Тонґа" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "ТурцыÑ" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Трынідад Ñ– Табаґа" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Тувалу" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Тайвань" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "ТанзаніÑ" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Украіна" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Уґанда" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Ð—ÑŒÐ½ÐµÑˆÐ½Ñ–Ñ ÐœÐ°Ð»Ñ‹Ñ ÐÑтравы (ЗШÐ)" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Ð—Ð»ÑƒÑ‡Ð°Ð½Ñ‹Ñ Ð¨Ñ‚Ð°Ñ‚Ñ‹ ÐмÑрыкі" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Уруґвай" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "УзбÑкіÑтан" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Ватыкан" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "СÑн-ВінÑÑнт Ñ– ÒÑ€Ñнадзіны" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Ð’ÑнÑÑуÑла" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "БрытанÑÐºÑ–Ñ Ð’Ñ–Ñ€Ò‘Ñ–Ð½ÑÐºÑ–Ñ Ð°Ñтравы" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "ВірґінÑÐºÑ–Ñ Ð°Ñтравы ЗШÐ" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Віетнам" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Вануату" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "ÐÑтравы Ð£Ð¾Ð»Ñ–Ñ Ñ– Футуна" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Самоа" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "ЕмÑн" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Маёт" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ЮгаÑлавіÑ" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "ÐŸÐ°ÑžÐ´Ð½Ñ‘Ð²Ð°Ñ Ðфрыка" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "ЗамбіÑ" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "ЗымбабвÑ" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Дата й чаÑ" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Ðаперад на 1 зоркавы дзень" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Дадаць 1 зорны меÑÑц" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Ðаперад на 1 зоркавы тыдзень" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Дадаць 1 зорны год" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Дадаць 1 зоркавае Ñтагодзьдзе" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Ðаперад на 1 Ñонечны дзень" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Ðаперад на 1 Ñонечную гадзіну" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Ðаперад на 1 Ñонечны тыдзень" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Дадаць 1 Ñынадычны меÑÑц" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Дадаць 1 драканічны меÑÑц" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Дадаць 1 анамаліÑтычны меÑÑц" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Дадаць 1 ÑÑÑ€Ñдні трапічны меÑÑц" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Дадаць 1 драканічны год" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Дадаць 1 ÑÑÑ€Ñдні трапічны год" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Дадаць 1 ÑÑÑ€ÑднÑе трапічнае Ñтагодзьдзе" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Запаволіць хуткаÑьць ÑцÑнара" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Зьменшыць хуткаÑьць чаÑу" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Зьменшыць хуткаÑьць чаÑу (крыху)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "ПаÑкорыць хуткаÑьць ÑцÑнара" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "ПавÑлічыць хуткаÑьць чаÑу" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "ПавÑлічыць хуткаÑьць чаÑу (крыху)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Прыпыніць выконваньне ÑцÑнара" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "ПрацÑгнуць выконваньне ÑцÑнара" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Вернуцца да цÑперашнÑга чаÑу" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Вернуць хуткаÑьць да нармальнай" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "ÐÐ°Ñ€Ð¼Ð°Ð»ÑŒÐ½Ð°Ñ Ñ…ÑƒÑ‚ÐºÐ°Ñьць чаÑу" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Зрабіць хуткаÑьць чаÑу нулÑвой" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Спыніць працу ÑцÑнара" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Ðазад на 1 зоркавы дзень" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "ÐднÑць 1 зорны меÑÑц" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Ðазад на 1 зоркавы тыдзень" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "ÐднÑць 1 зорны год" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "ÐднÑць 1 зорнае Ñтагодзьдзе" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Ðазад на 1 Ñонечны дзень" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Ðазад на 1 Ñонечную гадзіну" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Ðазад на 1 Ñонечны тыдзень" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "ÐднÑць 1 Ñынадычны меÑÑц" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "ÐднÑць 1 драканічны меÑÑц" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "ÐднÑць 1 анамаліÑтычны меÑÑц" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "ÐднÑць 1 ÑÑÑ€Ñдні трапічны меÑÑц" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "ÐднÑць 1 драканічны год" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "ÐднÑць 1 ÑÑÑ€Ñдні трапічны год" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "ÐднÑць 1 ÑÑÑ€ÑднÑе трапічнае Ñтагодзьдзе" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "ÐаÑтройкі адлюÑтраваньнÑ" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Перакуліць ÑцÑну гарызантальна" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "ПоўнаÑкранны Ñ€Ñжым" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "ÐтмаÑÑ„Ñра" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "ÐÐ·Ñ–Ð¼ÑƒÑ‚Ð°Ð»ÑŒÐ½Ð°Ñ Ñетка" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Бакі Ñьвету" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Ð’Ñ‹Ñвы Ñузор'ÑÑž" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Межы Ñузор'ÑÑž" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Ðазвы Ñузор'ÑÑž" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Лініі Ñузор'ÑÑž" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Ð¤Ð¾Ð½Ð°Ð²Ñ‹Ñ Ð²Ñ–Ð´Ð°Ñ€Ñ‹ÑÑ‹ туманнаÑьцÑÑž" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "ВідарыÑÑ‹ аÑноведзі аб'ектаў глыбокага коÑмаÑу" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ð­ÐºÐ»Ñ–Ð¿Ñ‚Ñ‹Ñ‡Ð½Ð°Ñ Ñетка J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ð›Ñ–Ð½Ñ–Ñ Ñкліптыкі" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ð›Ñ–Ð½Ñ–Ñ Ñкватару" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "ЭкватарыÑÐ»ÑŒÐ½Ð°Ñ Ñетка" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "ЭкватарыÑÐ»ÑŒÐ½Ð°Ñ Ñетка J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Туман" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "ÒалÑÐºÑ‚Ñ‹Ñ‡Ð½Ð°Ñ Ñетка" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "ÒалÑÐºÑ‚Ñ‹Ñ‡Ð½Ð°Ñ Ð¿Ð»Ð¾ÑкаÑьць" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "ЗÑмлÑ" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Ð›Ñ–Ð½Ñ–Ñ Ð³Ð°Ñ€Ñ‹Ð·Ð¾Ð½Ñ‚Ñƒ" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Ð›Ñ–Ð½Ñ–Ñ Ð¼ÑрыдыÑну" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "ТуманнаÑьці" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Ðб'екты глыбокага коÑмаÑу" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Ðачны Ñ€Ñжым" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Ðазвы плÑнÑÑ‚" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Ðрбіты плÑнÑтаў" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "СьлÑды плÑнÑтаў" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Зоркі" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Ðазвы зорак" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Перакуліць ÑцÑну вÑртыкальна" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Рознае" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Ðўтаматычна хаваць гарызантальную панÑль кнопак" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Ðўтаматычна хаваць вÑртыкальную панÑль кнопак" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Дахаты" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "ВыйÑьці" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "СкапіÑваць зьвеÑткі аб вылучаным аб'екце Ñž абменьнік" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Захаваць здымак Ñкрану" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Пераключыцца між ÑкватарыÑльным Ñ– азімутальным мацаваньнем" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Пераключыць бачнаÑьць ÒІК" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Рух Ñ– вылучÑньне" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "ПерайÑьці да вылучанага аб'екту" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Зрабіць выбраную плÑнÑту «хатнÑй»" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Сачыць за аб'ектам" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Ðаблізіць вылучаны аб'ект" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Ðддаліць" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Мераньне вуглоÑž" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "РыÑкі компаÑа" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Паказваць ÑкзаплÑнÑÑ‚Ñ‹" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Вакно наÑтаўленьнÑÑž ÑкзаплÑнÑÑ‚" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "ÐазіральнаÑьць" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Вакно наÑтаўленьнÑÑž «ÐазіральнаÑьці»" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "ÐаÑтаўленьні дадатку «ÐкулÑр»" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "ПраглÑд праз акулÑÑ€" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Паказваць перакрыжаваньні" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "УÑплыўное мÑню акулÑра" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Рамка ÑÑнÑару відарыÑаў" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "ПрыцÑл Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Выберы наÑтупны Ñ‚ÑлеÑкоп" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Выберы наÑтупны акулÑÑ€" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Выберы папÑÑ€Ñдні Ñ‚ÑлеÑкоп" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Выберы папÑÑ€Ñдні акулÑÑ€" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Паказваць пульÑары" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Вакно наÑтаўленьнÑÑž пульÑараў" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Паказваць квазары" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Вакно наÑтаўленьнÑÑž квазараў" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Вакно наÑтаўленьнÑÑž Ñпадарожнікаў" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Ðамінкі Ñпадарожнікаў" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "ПодпіÑÑ‹ Ñпадарожнікаў" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Вакно наÑтаўленьнÑÑž гіÑтарычных звышновых" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Вакно наÑтаўленьнÑÑž Ñркіх новых" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Павернуць Ñ‚ÑлеÑкоп на Ð·Ð°Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ ÐºÐ°Ð°Ñ€Ð´Ñ‹Ð½Ð°Ñ‚Ñ‹" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Паказваць ÑтатыÑтыку будаўніка" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "СцÑнары" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Выканаць ÑцÑнар краÑвідаў з файла" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Паказваць Ñ– павÑлічваць МеÑÑц" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Вакно наÑтаўленьнÑÑž" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Вакно выбару даты/чаÑу" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Вакно даведкі" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Вакно выбару меÑца" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Вакно пошуку" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Вакно Ñкаротаў" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Вакно выбораў неба й праглÑду" @@ -3533,7 +3719,7 @@ msgstr "Ðбнавіць" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "МеÑца" @@ -3549,10 +3735,10 @@ msgid "Return to default" msgstr "Вернуцца да прадвызначанага" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Выдаліць" @@ -3561,7 +3747,7 @@ msgstr "Дадаць да ÑьпіÑу" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Шырата:" @@ -3574,12 +3760,12 @@ "12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Даўгата:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "ВышынÑ:" @@ -3603,363 +3789,412 @@ msgid "Planet:" msgstr "ПлÑнÑта:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Шукаць аб'ект" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Шукаць аб'ект ці Ñтановішча" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Выбіраць Ð°Ð´ÐºÑƒÐºÐ°Ð½Ñ‹Ñ ÑлемÑнты клÑвішай tab" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "ёта" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "альфа" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "бÑта" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "ґама" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "дÑльта" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "ÑпÑылÑн" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "зÑта" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "Ñта" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "Ñ‚Ñта" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "капа" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "лÑмбда" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "мю" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ню" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "кÑÑ–" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "амікрон" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "пі" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ро" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "Ñіґма" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "тау" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "іпÑылÑн" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "Ñ„Ñ–" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "Ñ…Ñ–" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "пÑÑ–" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "амÑга" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "ГрÑÑ†ÐºÑ–Ñ Ð»Ñ–Ñ‚Ð°Ñ€Ñ‹ Ð´Ð»Ñ Ð°Ð±Ð°Ð·Ð½Ð°Ñ‡ÑньнÑÑž Баера" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Ðб'ект" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "Пр. узых./Схіленьне (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Становішча" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"ÐÐµÐºÐ°Ñ‚Ð¾Ñ€Ñ‹Ñ Ð°Ð±'екты можна адшукаць паÑÑŒÐ»Ñ Ð°ÐºÑ‚Ñ‹Ð²Ð°Ð²Ð°Ð½ÑŒÐ½Ñ Ð°Ð´Ð¿Ð°Ð²ÐµÐ´Ð½Ñ‹Ñ… дадаткаў" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "назвы ангельÑкай" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Шукаць у ÑьпіÑе…" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "СьпіÑÑ‹" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Ð¡ÐµÑ†Ñ–ÑžÐ½Ð°Ñ Ð°ÑÑ‚Ñ€Ð°Ð½Ð°Ð¼Ñ–Ñ‡Ð½Ð°Ñ Ð±Ð°Ð·Ð° SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Пашыраны пошук па SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "СÑрвÑÑ€:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "ÐаÑтройкі пошуку" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "ВыкарыÑтоўваць аўтазапаўненьне толькі Ñž пачатку Ñловаў" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "ÐаÑтройкі" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "назвы ангельÑкай" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Шукаць у ÑьпіÑе…" - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "СьпіÑÑ‹" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Від" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Ðеба" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "ПазначÑньне" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "КраÑвід" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Ð—Ð¾Ñ€Ð½Ñ‹Ñ Ð²ÐµÐ´Ñ‹" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "ПодпіÑÑ‹ й пазнакі" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "ПлÑнÑÑ‚Ñ‹" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"ÐадпіÑÑ‹ й пазнакі Ð´Ð»Ñ Ð°Ð±'ектаў глыбокага коÑмаÑу (Ñкопішчы зорак, ґалÑктыкі " +"й туманнаÑьці)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "ÐГК" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "ПлÑнÑÑ‚Ñ‹ й Ñпадарожнікі" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Паказваць плÑнÑÑ‚Ñ‹" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Паказваць пазнакі плÑнÑÑ‚" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Паказваць арбіты плÑнÑÑ‚" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Удаваць хуткаÑьць ÑьвÑтла" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "ПавÑлічваць МеÑÑц" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Ðўтаматычна мÑнÑць краÑвід пры зьмене плÑнÑÑ‚Ñ‹" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Ðўтаматычна выбіраць краÑвід" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Паказваць атмаÑÑ„Ñру" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "ЗаÑьветленьне:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "ціÑк, Ñ‚ÑмпÑратура, каÑфіцыент паглынаньнÑ" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "ÐаÑтройкі пераламленьнÑ/паглынаньнÑ" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "ÐбÑалютны памер:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "ÐдноÑны памер:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "ЯркаÑьць Млечнага шлÑху:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Мігценьне:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "ЗацÑмнÑць ÑÐ»Ð°Ð±Ñ‹Ñ Ð·Ð¾Ñ€ÐºÑ–, калі бачны вельмі Ñркі аб'ект" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Ð”Ñ‹Ð½Ð°Ð¼Ñ–Ñ‡Ð½Ð°Ñ Ð°Ð´Ð°Ð¿Ñ‚Ð°Ñ†Ñ‹Ñ Ð²Ð¾ÐºÐ°" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Зьнічкі" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "ЧаÑÑŒÑ†Ñ–Ð½Ñ Ð·ÑŒÐ½Ñ–Ñ‡Ð°Ðº за гадзіну" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "ЧЗГ:" +msgstr "ЗЧГ:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Ðбмежаваць велічыні (Ð´Ð»Ñ Ð½Ñўзброенага вока/біноклÑ)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Ðбмежаваць велічыні" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Зоркі да велічыні" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Ðбмежаваньне велічыні зорак" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "ТуманнаÑьці да велічыні" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Ðбмежаваньне велічыні аб'ектаў глыбокага коÑмаÑу (Ñкопішчаў зорак, ґалÑктык " +"Ñ– туманнаÑьцÑÑž)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Сузор'Ñ–" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Паказваць лініі" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Паказваць назвы" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Паказваць межы" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Паказваць выÑвы" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "ЯркаÑьць выÑваў:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ÐÑбеÑÐ½Ð°Ñ ÑÑ„Ñра" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Паказваць лінію Ñкватару" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Паказваць лінію мÑрыдыÑну" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Паказваць лінію гарызонту" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Паказваць лінію Ñкліптыкі" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Паказваць лінію плоÑкаÑьці ÒалÑктыкі" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "ПраекцыÑ" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Дадаць/выдаліць краÑвіды…" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Паказваць зÑмлю" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Паказваць туман" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Ужываць Ð°Ð´Ð¿Ð°Ð²ÐµÐ´Ð½Ñ‹Ñ Ð¿Ð»ÑнÑту й меÑца" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Ужываць гÑÑ‚Ñ‹ краÑвід Ñк прадвызначаны" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Ужываць наÑтройкі ÑркаÑьці да краÑвідаў" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Ужываць гÑтую культуру Ñк прадвызначаную" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Бачны" @@ -4014,7 +4249,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Ðапрамак праглÑду пры запуÑку Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "ЗьвеÑткі аб вылучаным аб'екце" @@ -4030,11 +4265,8 @@ msgid "Display no information" msgstr "Ðе адлюÑтроўваць ніÑкіх зьвеÑтак" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ðічога" @@ -4177,7 +4409,7 @@ msgstr "Ñекунды" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "ÐŸÐ°Ñ‡Ð°Ñ‚ÐºÐ¾Ð²Ñ‹Ñ Ð´Ð°Ñ‚Ð° й чаÑ" @@ -4189,19 +4421,23 @@ msgid "Other:" msgstr "ІншыÑ:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "ВыкарыÑтоўваць мÑÑÑ†Ð¾Ð²Ñ‹Ñ Ð´Ð°Ñ‚Ñƒ й чаÑ" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "ужыць бÑгучыÑ" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Ужываць ÑÑ‹ÑÑ‚ÑÐ¼Ð½Ñ‹Ñ Ð´Ð°Ñ‚Ñƒ й Ñ‡Ð°Ñ Ð½Ð° пачатку працы Stellarium" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "СыÑÑ‚ÑÐ¼Ð½Ñ‹Ñ Ð´Ð°Ñ‚Ð° й чаÑ" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4209,23 +4445,23 @@ "Удаваць карціну пры чаÑе днÑ, калі запушчаны Stellarium, але Ñž зададзены " "дзень" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "СыÑÑ‚ÑÐ¼Ð½Ð°Ñ Ð´Ð°Ñ‚Ð°:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "ВыпраўлÑньне чаÑу" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Правіць раўнаньне" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "ÐаÑтройкі плÑнÑтарыÑ" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4233,51 +4469,51 @@ "СкажÑньне ÑÑ„Ñрычнага люÑтра ужываецца, калі Stellarium праектуе на ÑÑ„Ñрычнае " "люÑтра танных плÑнÑтарыÑÑž." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "СкажÑньне ÑÑ„Ñрычнага люÑтра" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Хаваць уÑÑ‘ па-за цÑнтральным колам галоўнага аглÑду" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Круглае глÑдзельнае вакно" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Хаваць Ñ–Ð½ÑˆÑ‹Ñ Ñузор'Ñ–, калі пÑтрыкаеш па нейкім" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Выбіраць аÑобнае Ñузор'е" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Раўнаваць назвы па лініі далÑглÑду" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "ПрыцÑгваць назвы" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Паказваць ці не фон туманнаÑьцÑÑž." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Паказваць ґузік фону туманнаÑьцÑÑž" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Пераключыць ґузікі Ð¿ÐµÑ€Ð°ÐºÑƒÐ»ÑŒÐ²Ð°Ð½ÑŒÐ½Ñ Ð²Ñ–Ð´Ð°Ñ€Ñ‹Ñа." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Паказваць ґузік перакульваньнÑ" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4285,92 +4521,100 @@ "Калі задзейнічана, клÑвіша Ð°ÑžÑ‚Ð°Ð°Ð´Ð´Ð°Ð»ÐµÐ½ÑŒÐ½Ñ Ñ‚Ð°ÐºÑама верне пачатковы напрамак " "аглÑду" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "«Ðўтааддаленьне» вÑртае пачатковы напрамак аглÑду" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Паказваць ÑÐ¾Ð½ÐµÑ‡Ð½Ñ‹Ñ Ñ†ÐµÐ½Ñ– на плÑнÑтах Ñ– меÑÑцах (гÑÑ‚Ð°Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ‹Ñ Ð¿Ð°Ñ‚Ñ€Ð°Ð±ÑƒÐµ OpenGL " +"вÑÑ€ÑÑ–Ñ– 2 ці большай)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "ÐдлюÑтроўваць ÑÐ¾Ð½ÐµÑ‡Ð½Ñ‹Ñ Ñ†ÐµÐ½Ñ–" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Здымкі Ñкрана" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Каталёґ Ð´Ð»Ñ Ð·Ð´Ñ‹Ð¼ÐºÐ°Ñž Ñкрана" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "ІнвÑртаваць колеры" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Ðбнаўленьні каталёґу зорак" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "ПÑтрыкні Ñюды, каб пачаць загрузку" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Загрузі гÑÑ‚Ñ‹ файл, каб убачыць ÑÑˆÑ‡Ñ Ð±Ð¾Ð»ÐµÐ¹ зорак" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Пачаць загрузку наноў" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Ізноў" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Спыніць загрузку. Яе заўжды можна пачаць наноў паÑьлÑ." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Ðдмена" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Закрыць выкно, калі выконваецца ÑцÑнар" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Выканаць вылучаны ÑцÑнар" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Спыніць ÑцÑнар, Ñкі выконваецца" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Загружаць на пачатку працы" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "наÑтавіць" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "ГалоўныÑ" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ЗьвеÑткі" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "ÐавіґацыÑ" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "ІнÑтрумÑнты" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Дадаткі" @@ -4545,12 +4789,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Паказвае рыÑкі компаÑа уздоўж гарызонту" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "ÐкулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4559,164 +4803,164 @@ "Паказвае неба нібы праз акулÑÑ€ Ñ‚ÑлеÑкопа. (Ð£Ð´Ð°Ð²Ð°Ð½Ñ‹Ñ Ñ‚Ð¾Ð»ÑŒÐºÑ– павелічÑньне й " "поле зроку.) ТакÑама можа паказваць рамку ÑÑнÑара Ñ– прыцÑл Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Вылучы, калі лаÑка, аб'ект, а паÑÑŒÐ»Ñ Ð¿ÐµÑ€Ð°ÐºÐ»ÑŽÑ‡Ð°Ð¹ÑÑ Ð½Ð° Ñ€Ñжым акулÑра." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&ПапÑÑ€Ñдні акулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&ÐаÑтупны акулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Выбраць &акулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "&Перакрыжаваньне" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "ÐаÑтавіць «&ÐкулÑр»" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Укл./выкл. &ПЗС" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Укл./выкл. &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&ПапÑÑ€ÑднÑÑ ÐŸÐ—Ð¡" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&ÐаÑÑ‚ÑƒÐ¿Ð½Ð°Ñ ÐŸÐ—Ð¡" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Выбраць ПЗС" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "Паве&рнуць ПЗС" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Вернуць паварот" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "ÐкулÑÑ€ â„–%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "ÐкулÑÑ€ â„–%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "ФД акулÑра: %1мм" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "бПЗ акулÑра: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Лінза #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Лінза #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Лінза: нÑма" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "ТÑлеÑкоп â„–%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "ТÑлеÑкоп â„–%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "ПавелічÑньне: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "ПЗ: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Вымеры: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "СÑнÑар â„–%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "СÑнÑар â„–%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Лінза" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&ПапÑÑ€ÑднÑÑ Ð»Ñ–Ð½Ð·Ð°" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&ÐаÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð»Ñ–Ð½Ð·Ð°" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&ТÑлеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&ПапÑÑ€Ñдні Ñ‚ÑлеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&ÐаÑтупны Ñ‚ÑлеÑкоп" @@ -4788,68 +5032,73 @@ msgid "Apparent field of view of the ocular" msgstr "Бачнае полю зроку акулÑра" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "МножнаÑьць: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Лінза: нÑма" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "МножнаÑьць: Ð/Ð" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "КратнаÑьць лінзы" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "ФокуÑÐ½Ð°Ñ Ð´Ð°ÑžÐ¶Ñ‹Ð½Ñ Ð°ÐºÑƒÐ»Ñра" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Паварот: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "ПавелічÑньне, Ñкое забÑÑьпечваецца гÑтым біноклем" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Сапраўднае поле зроку, Ñкое забÑÑьпечваецца гÑтым біноклем" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" "ПавелічÑньне, Ñкое забÑÑьпечваецца ÑпалучÑньнем гÑÑ‚Ñ‹Ñ… акулÑра/лінзы " "Барлоў/Ñ‚ÑлеÑкопа" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Сапраўднае поле зроку, Ñкое забÑÑьпечваецца ÑпалучÑньнем гÑÑ‚Ñ‹Ñ… " "акулÑра/лінзы/Ñ‚ÑлеÑкопа" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Дадатак «ÐкулÑр»" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Ð’ÑÑ€ÑÑ–Ñ" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "ÐÑабліваÑьці лінзы Барлоў" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "ÐглÑд" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4861,7 +5110,7 @@ "такÑама ÑÑнÑары ПЗС. Пры першым запуÑку праґрамы будуць Ð´Ð°Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ Ð½ÐµÐºÐ°Ð»ÑŒÐºÑ– " "прыкладаў." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4878,7 +5127,7 @@ "Ð·Ð½Ð°Ñ‡Ð½Ð°Ñ Ñ‡Ð°Ñтка Ñкрану будзе змарнаванаÑ. Таму Ñ Ð½Ñ Ñ€Ð°ÑŽ задзейнічаць Ñго, " "апрача Ñытуацый, калі Ñно Ñапраўды табе патрÑбна." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4888,7 +5137,7 @@ "ўраўнаваным на поўнач. Мне гÑта не ўдалоÑÑ, таму Ñно ўраўнаванае зь верхам " "Ñкрану." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4901,118 +5150,126 @@ "акружыны на 0,5%1, 2,0%1, Ñ– 4,0%1, ÑÐºÑ–Ñ Ð´Ð°Ð¿Ð°Ð¼Ð¾Ð³ÑƒÑ†ÑŒ пабачыць тое, што можна " "пабачыць нÑўзброеным вокам праз Telrad ці падобны шукальнік." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Калі напаткаеш Ð½ÐµÐ¹ÐºÑ–Ñ Ð¿Ñ€Ð°Ð±Ð»ÐµÐ¼Ñ‹, паведамі мне. ЦешÑÑ!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "«ГарачыÑ» клÑвішы" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "Ð“Ð°Ñ€Ð°Ñ‡Ñ‹Ñ ÐºÐ»Ñвішы гÑтага дадатку можна зьмÑнÑць на ўкладцы «ÐÑноўныÑ»." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[клÑвіша Ð½Ñ Ð²Ñ‹Ð·Ð½Ð°Ñ‡Ð°Ð½Ð°Ñ]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Уключае/выключае праглÑд праз акулÑÑ€." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Ðдкрые уÑплыўное навіґацыйнае мÑню." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Задзейнічаць толькі калі вылучаны аб'ект" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "ЗьмÑненьне памеру акружыны відарыÑа" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "Ужыць абмежаваньне зоркавай велічыні Ð´Ð»Ñ Ñ€Ð¾Ð·Ð½Ñ‹Ñ… апÑртур Ñ‚ÑлеÑкопаў" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Ðбмежаваць зоркавую велічыню" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "ÐаÑтаўленьні клÑвішаў" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "ПраглÑд праз акулÑÑ€:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "УÑплыўное мÑню:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "ІнтÑрфÑйÑ" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "ÐšÑ–Ñ€Ð¾ÑžÐ½Ð°Ñ Ð¿Ð°Ð½Ñль на Ñкране" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Паказваць ПЗ ПЗС у ґрадуÑах Ñ– мінутах" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "ÐÑноўныÑ" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "ÐкулÑÑ€" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Дадаць" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Ðазва:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "бПЗ:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "ФокуÑÐ½Ð°Ñ Ð´Ð°ÑžÐ¶Ñ‹Ð½Ñ:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "ДыÑфраґма:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Бінокль" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Лінзы" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "КратнаÑьць:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Множнік:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5020,74 +5277,75 @@ "ЗначÑньні кратнаÑьці >1 павÑлічваюць фокуÑную даўжыню (лінза Барлоў). " "ЗначÑньні кратнаÑьці <1 зьмÑншаюць фокуÑную даўжыню (лінза ШÑплі)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "СÑнÑары" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Разрозьненьне x (пкÑ):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Разрозьненьне y (пкÑ):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Ð¨Ñ‹Ñ€Ñ‹Ð½Ñ Ñ‡Ñ‹Ð¿Ð° (мм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Ð’Ñ‹ÑˆÑ‹Ð½Ñ Ñ‡Ñ‹Ð¿Ð° (мм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Ð¨Ñ‹Ñ€Ñ‹Ð½Ñ Ð¿Ñ–ÐºÑÑÐ»Ñ (мкм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Ð’Ñ‹ÑˆÑ‹Ð½Ñ Ð¿Ñ–ÐºÑÑÐ»Ñ (мкм)" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "ТÑлеÑкопы" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "ДыÑмÑтар:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Перакул па гарызанталі" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Перакул па вÑртыкалі" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Пра" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Спадарожнікі" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5095,88 +5353,148 @@ "Прадказваньне Ñтановішча штучных Ñпадарожнікаў на арбіце ЗÑмлі паводле " "зьвеÑтак NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Стары файл satellites.json болей не падтрымліваецца, выкарыÑтаны " "прадвызначаны" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "бачныÑ" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "навуковыÑ" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "ÑувÑзі" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "навіґацыйныÑ" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "аматарÑкіÑ" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "мÑÑ‚ÑаралÑґічныÑ" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "ґеаÑтацыÑнарныÑ" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "нÑдзейныÑ" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "GPS" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "Iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "КаÑьмічны Ñ‚ÑлеÑкоп Габла" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "ÐœÑ–Ð¶Ð½Ð°Ñ€Ð¾Ð´Ð½Ð°Ñ ÐºÐ°ÑÑŒÐ¼Ñ–Ñ‡Ð½Ð°Ñ ÑтанцыÑ" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "â„– у каталёґу" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Міжнародае абазначÑньне" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "штучны Ñпадарожнік" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "ÐдлеглаÑьць да Ñпадарожніка (км): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "ЗьмÑненьне адлеглаÑьці (км/Ñ): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Ð’Ñ‹ÑˆÑ‹Ð½Ñ (км): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Падпункт (Шыр./Даўг.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Каардынаты TEME (км): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "ХуткаÑьць TEME (км/Ñ): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Спадарожнік Ñ– назіральнік знаходзÑцца Ñž Ñонечных промнÑÑ…." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Спадарожнік бачны." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Спадарожнік у ценю." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Спадарожнік Ð½Ñ Ð±Ð°Ñ‡Ð½Ñ‹" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 МГц (%2%3 кГц)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Дададак Stellarium «Спадарожнікі»" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5184,18 +5502,18 @@ "Дадатак «Спадарожнікі» прадказвае Ñтановішчы штучных Ñпадарожнікаў на арбіце " "ЗÑмлі." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Ðататкі Ð´Ð»Ñ ÐºÐ°Ñ€Ñ‹Ñтальнікаў" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Спадарожнікі й Ñ–Ñ…Ð½Ñ‹Ñ Ð°Ñ€Ð±Ñ–Ñ‚Ñ‹ паказваюцца толькі калі назіральнік знаходзіцца " "на ЗÑмлі." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5205,7 +5523,7 @@ "дзён, тыднÑÑž, магчыма, меÑÑца Ñž мінулае ці будучыню). Па-за гÑтым прамежкам " "можна пабачыць Ñ€Ð¾Ð·Ð½Ñ‹Ñ Ð½ÐµÐ¿Ð°Ñ€Ð°Ð·ÑƒÐ¼ÐµÐ½ÑŒÐ½Ñ–." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5215,7 +5533,7 @@ "абнаўлÑць зьвеÑткі TLE." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5226,7 +5544,7 @@ "прадвызначаны файл «%3». Стары файл будзе захаваны Ñк %4. Яго можна знайÑьці " "Ñž каталёґу даньнÑÑž карыÑтальніка Ñž «modules/Satellites/»." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5235,11 +5553,11 @@ "нÑÑкончаныÑ, адÑÑƒÑ‚Ð½Ñ‹Ñ Ñ†Ñ– з памылкамі." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Ðбнаўленьні зьвеÑтак TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5249,7 +5567,7 @@ "крыніц Ñ–, калі не зададзена іншае, ён робіць гÑта калі Ñ–ÑÐ½Ð¾ÑžÐ½Ñ‹Ñ Ð·ÑŒÐ²ÐµÑткі " "ÑтарÑÐ¹ÑˆÑ‹Ñ Ð·Ð° 72 гадзіны. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5260,7 +5578,7 @@ "файла. ГÑÑ‚Ñ‹ файл муÑіць мець такі ж фармат, Ñк абнаўленьні Celestrak (гл. " "прыклады Ñž %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5268,11 +5586,11 @@ "Заўвага: калі назва Ñпадарожніка Ñž абнаўленьнÑÑ… мае нешта Ñž " "квадратных дужках у канцы, Ñно будзе выдалена перад выкарыÑтаньнем зьвеÑтак." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Дадаваньне новых Ñпадарожнікаў" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5284,11 +5602,11 @@ "закладку «Спадарожнікі» Ñ– націÑьні ґузік «+». Вылучы Ñпадарожнікі, ÑÐºÑ–Ñ " "жадаеш дадаць Ñ– націÑьні ґузік «дадаць»." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "ТÑÑ…Ð½Ñ–Ñ‡Ð½Ñ‹Ñ Ð½Ð°Ñ‚Ð°Ñ‚ÐºÑ–" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5296,7 +5614,7 @@ "Становішчы разьлічваюцца паводле мÑтадаў SGP4 Ñ– SDP4, выкарыÑтоўваюцчы " "зьвеÑткі NORAD TLE Ñк крыніцу. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5305,24 +5623,26 @@ "перагледжаным дакладам аб каÑьмічных шлÑхах â„–3 (Ñкі ўключае даклад â„–6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "ГлÑдзі %1гÑÑ‚Ñ‹ дакумÑнт%2 Ð´Ð·ÐµÐ»Ñ Ð¿Ð°Ð´Ñ€Ð°Ð±ÑзнаÑьцÑÑž." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "СпаÑылкі" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5332,31 +5652,34 @@ "Ñ‚Ñму паведамленьнÑ." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Калі маеш пытаньні, можна %1атрымаць адказ тут%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Паведамленьні пра хібы можна рабіць %1тут%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5364,120 +5687,140 @@ "Калі жадаеш прапанаваць нейкую функцыю, можна Ñтварыць паведамленьне аб " "хібе, Ñ– задаць Ñе важнаÑьць Ñк «wishlist»." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Ðбнаўленьне празь Сеціва абÑзьдзейнена" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Ðдбываецца абнаўленьне…" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "ÐаÑтупнае абнаўленьне: < 1 хвіліну" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "ÐаÑтупнае абнаўленьне: %1 хвілін" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "ÐаÑтупнае абнаўленьне: %1 гадзін" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Ðбнавіць зараз" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Ðбнавіць з файлаў" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Памылка абнаўленьнÑ" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Ðбноўлена %1/%2 Ñпадарожнікаў; %3 адÑутныÑ" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Спадарожнікаў абноўлена: %1/%2; дададзена: %3; выдалена: %4" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Спадарожнікаў абноўлена: %1/%2; дададзена: %3; адÑутнічаюць: %4" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[Ð½Ð¾Ð²Ð°Ñ ÐºÑ€Ñ‹Ð½Ñ–Ñ†Ð°]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Ðбнавіць зараз" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Ðбнавіць з файлаў" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[памылка вылічÑÐ½ÑŒÐ½Ñ Ð°Ñ€Ð±Ñ–Ñ‚Ñ‹]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[уÑе новадададзеныÑ]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[уÑе не паказаныÑ]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[уÑе паказаныÑ]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[уÑе]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "ÐÐ¾Ð²Ð°Ñ Ò‘Ñ€ÑƒÐ¿Ð°â€¦" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Выберы файл з абнаўленьнÑмі TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Загрузка зьвеÑтак…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5485,175 +5828,199 @@ "Stellarium загружае зьвеÑткі Ñпадарожнікаў з крыніц абнаўленьнÑÑž. Пачакай, " "калі лаÑка…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Выберы выточны файл TLE…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Ðпрацоўваньне зьвеÑтак…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Ðемагчыма загрузіць зьвеÑткі. ПаÑпрабуй пазьней." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Ðумар у каталёґу: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "ÐаÑтаўленьні Ñпадарожнікаў" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Ðбнавіць ÑьпіÑÑ‹ TLE з крыніц у Сеціве" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Ðбнаўленьні" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Ðбнавіць з крыніц у Сеціве" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Ðбнавіць ÑьпіÑÑ‹ Ñпадарожнікаў з крыніц у Сеціве" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "ÐпошнÑе абнаўленьне:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "пры абнаўленьні дадаваць уÑе Ð½Ð¾Ð²Ñ‹Ñ Ñпадарожнікі з вылучаных крыніц" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Пры абнаўленьні выдалÑць Ñпадарожнікі, Ñкі болей не наÑÑžÐ½Ñ‹Ñ Ñž крыніцах " +"абнаўленьнÑ" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "ЧаÑÑŒÑ†Ñ–Ð½Ñ Ð°Ð±Ð½Ð°ÑžÐ»ÐµÐ½ÑŒÐ½ÑÑž (у гадзінах):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Ðазвы" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Кеґль назваў (у пікÑÑлÑÑ…):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Лініі арбіт" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "КолькаÑьць адрÑзкаў, Ñкімі рыÑуецца лініÑ" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "КолькаÑьць адрÑзкаў:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "ПрацÑглаÑьць аднаго адрÑзку Ñž ÑÑкундах" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Ð”Ð°ÑžÐ¶Ñ‹Ð½Ñ Ð°Ð´Ñ€Ñзка (Ñ):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "КолькаÑьць адрÑзкаў, Ñкімі рыÑуецца кожны канец лініі" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Ð”Ð°ÑžÐ¶Ñ‹Ð½Ñ Ð·ÑŒÐ½Ñ–ÐºÐ½ÐµÐ½ÑŒÐ½Ñ:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Ðднавіць Ð¿Ñ€Ð°Ð´Ð²Ñ‹Ð·Ð½Ð°Ñ‡Ð°Ð½Ñ‹Ñ Ð½Ð°Ñтройкі" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Зрабіць наÑтройкі прадвызначанымі" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "ÐаÑтройкі" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Двойчы пÑтрыкні Ñпадарожнік каб пачаць Ñго адÑочваць." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Дадаць болей Ñпадарожнікаў" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Выдаліць Ð²Ñ‹Ð»ÑƒÑ‡Ð°Ð½Ñ‹Ñ Ñпадарожнікі" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Захаваць зьмены" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Ðумар у каталёґу:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Паказаць Ð²Ñ‹Ð»ÑƒÑ‡Ð°Ð½Ñ‹Ñ Ñпадарожнікі" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Паказаны" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Паказваць лініі арбіт Ð´Ð»Ñ Ð²Ñ‹Ð»ÑƒÑ‡Ð°Ð½Ñ‹Ñ… Ñпадарожнікаў" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Ðрбіта" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Ðумар у каталёґу:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "Ðе абнаўлÑць (ці не выдалÑць пры абнаўленьні) Ð²Ñ‹Ð»ÑƒÑ‡Ð°Ð½Ñ‹Ñ Ñпадарожнікі" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Ðе абнаўлÑць" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "ÐпіÑаньне:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Òрупы:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Ð¡ÑŒÐ¿Ñ–Ñ Ò‘Ñ€ÑƒÐ¿Ð°Ñž, падзелены коÑкамі" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "ЗьвеÑткі TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "ÐÑ€Ð±Ñ–Ñ‚Ð°Ð»ÑŒÐ½Ñ‹Ñ Ð·ÑŒÐ²ÐµÑткі NORAD з двухлінейных ÑлемÑнтаў" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Выдаліць Ð²Ñ‹Ð»ÑƒÑ‡Ð°Ð½Ñ‹Ñ Ñпадарожнікі" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Дадаць болей Ñпадарожнікаў" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Ðабор TLE:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Захаваць зьмены" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Спадарожнікі Ñž пазначаных крынічных ÑьпіÑах будуць аўтаматычна Ð´Ð°Ð´Ð°Ð´Ð·ÐµÐ½Ñ‹Ñ " +"пры наÑтупным абнаўленьні, калі Ñны ÑÑˆÑ‡Ñ Ð½Ðµ Ñž калекцыі." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5661,15 +6028,15 @@ "УвÑдзі ці папраў URL вылучанай крыніцы. Зьмены будуць Ð·Ð°Ñ…Ð°Ð²Ð°Ð½Ñ‹Ñ Ð¿Ð° " "націÑканьні Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Дадаць новую крыніцу" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Прыбраць выбраную крыніцу" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Крыніцы" @@ -5705,11 +6072,11 @@ msgid "Discard" msgstr "Ðдкінуць" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Кіраваньне Ñ‚ÑлеÑкопам" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5717,12 +6084,12 @@ "ГÑÑ‚Ñ‹ дадатак дазвалÑе Stellarium паÑылаць загады паварочвацца Ñ‚ÑлеÑкопу, " "падлучанага да кампутара («ПерайÑьці да Ñ‚ÑлеÑкопа»)" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Павернуць Ñ‚ÑлеÑкоп â„–%1 да вылучанага аб'екту" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -6126,62 +6493,62 @@ "паказваць Ñ‡Ð°Ñ Ñ– дату Ñž ніжнÑй панÑлі." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Студзень" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Люты" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Сакавік" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "КраÑавік" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Травень" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "ЧÑрвень" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Ліпень" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Жнівень" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "ВераÑень" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "КаÑтрычнік" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "ЛіÑтапад" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Сьнежань" @@ -6342,7 +6709,7 @@ "ГÑÑ‚Ñ‹Ñ Ð½Ð°Ñтройкі вызначаюць Ñк будуць Ð¿Ð°ÐºÐ°Ð·Ð°Ð½Ñ‹Ñ Ð´Ð°Ñ‚Ð° й Ñ‡Ð°Ñ Ð½Ð° ніжнÑй панÑлі." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Фармат паказу чаÑу" @@ -6360,7 +6727,7 @@ msgstr "24-гадзінавы фармат" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Фармат паказу даты" @@ -6376,11 +6743,11 @@ msgid "mm-dd-yyyy" msgstr "мм-дд-гггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "ТÑкÑтавы інтÑрфÑÐ¹Ñ ÐºÐ°Ñ€Ñ‹Ñтальніка" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6388,144 +6755,144 @@ "Дадатак Ñ€Ñалізуе Ñ‚ÑкÑтавы інтÑрфÑÐ¹Ñ ÐºÐ°Ñ€Ñ‹Ñтальніка (ТІК) галіны 0.9.x, Ñкі " "выкарыÑтоўваецца Ñž ÑÑ‹ÑÑ‚Ñмах плÑнÑтарыÑÑž" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Цела Сонечнай ÑÑ‹ÑÑ‚Ñмы" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "БÑÐ³ÑƒÑ‡Ñ‹Ñ Ð´Ð°Ñ‚Ð°/чаÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Задаць чаÑавую зону" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "КлÑвішы днÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Пачатковы набор даты/чаÑу" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "ÑÑ‹ÑÑ‚Ñмны" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "прадвызначаны" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "ммддгггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ддммгггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "ггггммдд" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12 г" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24 г" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Мова" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Паказваць зоркі" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Колеры" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Ðазвы туманнаÑьцÑÑž" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Ðамінкі туманнаÑьцÑÑž" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Ð›Ñ–Ð½Ñ–Ñ Ò‘Ð°Ð»Ñктычнай плоÑкаÑьці" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "ЭфÑкты" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Ручное набліжÑньне" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Множнік зьмÑÐ½ÐµÐ½ÑŒÐ½Ñ Ð²ÐµÐ»Ñ–Ñ‡Ñ‹Ð½Ñ–" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "ЯркаÑьць Млечнага шлÑху:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "ЧаÑÑŒÑ†Ñ–Ð½Ñ Ð¿Ð¾Ð´Ð¿Ñ–Ñаў туманнаÑьцÑÑž:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "ПрацÑглаÑьць павелічÑньнÑ:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Затрымка курÑора:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "ВызначÑньне краÑвіду вызначае й меÑца" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Выканаць мÑÑцовы ÑцÑнар" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Спыніць ÑцÑнар, Ñкі выконваецца" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "СцÑнар на CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Кіраваньне" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Загрузіць Ð¿Ñ€Ð°Ð´Ð²Ñ‹Ð·Ð½Ð°Ñ‡Ð°Ð½Ñ‹Ñ Ð½Ð°Ñтаўленьні" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Захаваць цÑÐ¿ÐµÑ€Ð°ÑˆÐ½Ñ–Ñ Ð½Ð°Ñтаўленьні" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Спыніць працу" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[нÑма вузла ТІК]" @@ -6561,16 +6928,16 @@ "пошук у Ñгонай Ñеціўнай базе. ДагÑтуль у раÑпрацоўцы." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Запытваньне ЦМП %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Калі запыт будзе ўдалы, то будзе вернуты толькі адзін вынік." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6578,7 +6945,7 @@ "І камÑÑ‚Ñ‹, Ñ– аÑÑ‚Ñроіды можна вызначаць паводле іхнага нумару, назвы на " "ангельÑкай мове ці ўмоўнага абазначÑньнÑ." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6765,40 +7132,45 @@ msgid "Solar System" msgstr "Ð¡Ð¾Ð½ÐµÑ‡Ð½Ð°Ñ ÑÑ‹ÑÑ‚Ñма" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "ГіÑÑ‚Ð°Ñ€Ñ‹Ñ‡Ð½Ñ‹Ñ Ð·Ð²Ñ‹ÑˆÐ½Ð¾Ð²Ñ‹Ñ" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Дадатак, Ñкі паказвае Ð½ÐµÐºÐ°Ñ‚Ð¾Ñ€Ñ‹Ñ Ð³Ñ–ÑÑ‚Ð°Ñ€Ñ‹Ñ‡Ð½Ñ‹Ñ Ð·Ð²Ñ‹ÑˆÐ½Ð¾Ð²Ñ‹Ñ, ÑрчÑÐ¹ÑˆÑ‹Ñ Ð·Ð° 10 бачную " -"велічыню." +"ГÑÑ‚Ñ‹ дадатак дазвалÑе назіраць за некаторымі гіÑтарычнымі звышновымі." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "звышноваÑ" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Тып звышновай: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "ÐÐ°Ð¹Ð±Ð¾Ð»ÑŒÑˆÐ°Ñ ÑркаÑьць: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Дадатак гіÑтарычных звышновых" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " msgstr "" -"Дадатак, Ñкі паказвае Ð½ÐµÐºÐ°Ñ‚Ð¾Ñ€Ñ‹Ñ ÐºÐ¾Ð»Ñ–ÑˆÐ½Ñ–Ñ Ð·Ð²Ñ‹ÑˆÐ½Ð¾Ð²Ñ‹Ñ, ÑрчÑÐ¹ÑˆÑ‹Ñ Ð·Ð° 10 бачную " -"велічыню: " +"ГÑÑ‚Ñ‹ дадатак дазвалÑе назіраць за некаторымі гіÑтарычнымі звышновымі: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." +msgstr "УÑе гÑÑ‚Ñ‹Ñ Ð·Ð²Ñ‹ÑˆÐ½Ð¾Ð²Ñ‹Ñ ÑрчÑÐ¹ÑˆÑ‹Ñ Ð·Ð° %1 на піку ÑркаÑьці." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "ÐšÑ€Ñ‹Ð²Ñ‹Ñ ÑвÑцільнаÑць" @@ -6820,7 +7192,7 @@ msgstr "ПадзÑкі" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "Мы ўдзÑÑ‡Ð½Ñ‹Ñ Ð½Ð°Ñтупным людзÑм за іхны ўнёÑак Ñ– ÐºÐ°ÑˆÑ‚Ð¾ÑžÐ½Ñ‹Ñ Ð·Ð°ÑžÐ²Ð°Ð³Ñ–:" @@ -6834,14 +7206,14 @@ msgstr "ІнÑтытуту Ñ‚ÑарÑтычнай Ñ– ÑкÑпÑрымÑнтальнай фізыкі" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "у РаÑеі" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6851,8 +7223,9 @@ "каталёґу, то зьвеÑткі %1можна атрымаць тут%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "ÐаÑтупнае абнаўленьне: %1 дзён" @@ -6870,29 +7243,117 @@ msgstr "ÐаÑтаўленьні дадатку «ГіÑÑ‚Ð°Ñ€Ñ‹Ñ‡Ð½Ñ‹Ñ Ð·Ð²Ñ‹ÑˆÐ½Ð¾Ð²Ñ‹Ñ»" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Ðбнавіць каталёґ зь Сеціва" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Ðбнавіць з крыніц у Сеціве" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "ЧаÑÑŒÑ†Ñ–Ð½Ñ Ð°Ð±Ð½Ð°ÑžÐ»ÐµÐ½ÑŒÐ½ÑÑž (у днÑÑ…):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[наÑтупнае абнаўленьне]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Ð¯Ñ€ÐºÑ–Ñ Ð½Ð¾Ð²Ñ‹Ñ" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" +"Дадатак, Ñкі паказвае Ð½ÐµÐºÐ°Ñ‚Ð¾Ñ€Ñ‹Ñ ÑÑ€ÐºÑ–Ñ Ð½Ð¾Ð²Ñ‹Ñ Ñž ґалÑктыцы «Млечны шлÑх»." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Тып: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "новаÑ" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Дадатак Ñркіх новых" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"ÐÐ¾Ð²Ñ‹Ñ Ð¼Ð¾Ð¶Ð½Ð° шукаць з дапамогай прылады пошуку, уводзÑчы абазначÑньне ці " +"агульнавÑдомае Ñ–Ð¼Ñ (напр., «Nova Cygni 1975» або «V1500 Cyg»)." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"ГÑÑ‚Ñ‹ дадатак выкарыÑтоўвае вельмі проÑтую мадÑль Ð´Ð»Ñ Ñ€Ð°Ð·ÑŒÐ»Ñ–ÐºÑƒ крывых " +"ÑркаÑьці новых зорак." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"ГÑÑ‚Ð°Ñ Ð¼Ð°Ð´Ñль базуецца на чаÑе зьмÑншÑÐ½ÑŒÐ½Ñ Ð½Ð° %1 ÑркаÑьці ад найбольшага " +"значÑньнÑ, дзе %1 — гÑта 2, 3, 6 Ñ– 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Калі Ð½Ð¾Ð²Ð°Ñ Ð½Ñ Ð¼Ð°Ðµ значÑньнÑÑž зьмÑншÑÐ½ÑŒÐ½Ñ ÑркаÑьці, то гÑÑ‚Ñ‹ дадатак будзе " +"выкарыÑтоўваць абагульненае значÑньне." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Калі жадаеш прачытаць уÑе зьвеÑткі пра дадатак, Ñгоную гіÑторыю й фармат " +"каталёґу, то зьвеÑткі %1можна атрымаць тут%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "ÐÐ¾Ð²Ñ‹Ñ Ð°Ð±Ð½Ð¾ÑžÐ»ÐµÐ½Ñ‹Ñ" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "ÐаÑтаўленьні Ñркіх новых" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "ÐаÑтаўленьні дадатку Â«Ð¯Ñ€ÐºÑ–Ñ Ð½Ð¾Ð²Ñ‹Ñ»" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Квазары" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6911,11 +7372,11 @@ msgid "Z (redshift): %1" msgstr "Z (чырвоны зрух): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Дадатак «Квазары»" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6925,40 +7386,50 @@ "велічыню. Каталёґ квазараў ўзÑÑ‚Ñ‹ з 13-га Ð²Ñ‹Ð´Ð°Ð½ÑŒÐ½Ñ Â«ÐšÐ²Ð°Ð·Ð°Ñ€Ð°Ñž Ñ– актыўных Ñдраў " "ґалÑктык» («Quasars and Active Galactic Nuclei»)." -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Квазары абноўленыÑ" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "ÐаÑтаўленьні квазараў" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "ÐаÑтаўленьні дадатку «Квазары»" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "РÑжым паказу квазараў" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "ÐаÑтройкі квазараў" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "РыÑаваць уÑе квазары без пазнак" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Задзейнічаць паказ Ñ€Ð°Ð·ÑŒÐ¼ÐµÑ€ÐºÐ°Ð²Ð°Ð½ÑŒÐ½Ñ ÐºÐ²Ð°Ð·Ð°Ñ€Ð°Ñž" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Паказваць на пачатку працы" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Паказваць ґузік квазараў на панÑлі прылад" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "ПульÑары" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7087,11 +7558,11 @@ "ізалÑÐ²Ð°Ð½Ð°Ñ Ð½ÑÑžÑ‚Ñ€Ð¾Ð½Ð½Ð°Ñ Ð·Ð¾Ñ€ÐºÐ° з пульÑуючым цеплавым ронтґенаўÑкім " "выпраменьваньнем, але без выÑўленага радыё-выпраменьваньнÑ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Дадатак «ПульÑары»" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7103,67 +7574,71 @@ "Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Заўвага" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "вызначнікі пульÑараў маюць прÑÑ„Ñ–ÐºÑ Â«PSR»" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "ПадзÑкі" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Уладзімер Самадураў" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "ПушчынÑÐºÐ°Ñ Ñ€Ð°Ð´Ñ‹Ñ‘Ð°ÑÑ‚Ñ€Ð°Ð½Ð°Ð¼Ñ–Ñ‡Ð½Ð°Ñ Ð°Ð±ÑÑрваторыÑ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Мацей СÑрылак" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "РадыёаÑÑ‚Ñ€Ð°Ð½Ð°Ð¼Ñ–Ñ‡Ð½Ð°Ñ Ð°Ð±ÑÑÑ€Ð²Ð°Ñ‚Ð¾Ñ€Ñ‹Ñ ÐанÑÑ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "у Францыі" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "ПульÑары абноўленыÑ" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "ÐаÑтаўленьні пульÑараў" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "ÐаÑтаўленьні дадатку «ПульÑары»" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "РÑжым паказу пульÑараў" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "ÐаÑтройкі пульÑараў" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "РыÑаваць уÑе пульÑары без пазнак" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Задзейнічаць паказ Ñ€Ð°Ð·ÑŒÐ¼ÐµÑ€ÐºÐ°Ð²Ð°Ð½ÑŒÐ½Ñ Ð¿ÑƒÐ»ÑŒÑараў" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Паказваць ґузік пульÑараў на панÑлі прылад" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "ЭкзаплÑнÑÑ‚Ñ‹" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7172,71 +7647,71 @@ "ÑкзаплÑнÑÑ‚Ñ‹ атрымоўваюцца з «ЭнцыклÑпÑдыі пазаÑонечных плÑнÑт» («Extrasolar " "Planets Encyclopaedia») на exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "ÐœÑталічнаÑьць" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "МаÑа" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "РадыюÑ" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "ЭфÑÐºÑ‚Ñ‹ÑžÐ½Ð°Ñ Ñ‚ÑмпÑратура: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "ЭкзаплÑнÑта" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "ПÑрыÑд" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "дзён" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Юп" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Ð’ÑÐ»Ñ–ÐºÐ°Ñ Ð¿Ð°ÑžÐ²Ð¾ÑÑŒ" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "а.а." -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "ЭкÑцÑнтрыÑÑ‹Ñ‚ÑÑ‚" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Ðахіл" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Ð’ÑƒÐ³Ð»Ð°Ð²Ð°Ñ Ð°Ð´Ð»ÐµÐ³Ð»Ð°Ñьць" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Год адкрыцьцÑ" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Дадатак «ЭкзаплÑнÑты»" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7246,7 +7721,7 @@ "ÑкзаплÑнÑÑ‚Ñ‹ атрымоўваюцца з «%1ЭнцыклÑпÑдыі пазаÑонечных плÑнÑÑ‚%2»" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7255,42 +7730,132 @@ "Калі жадаеш прачытаць уÑе зьвеÑткі пра дадатак, Ñгоную гіÑторыю й фармат " "каталёґу, то Ñ–Ñ… %1можна атрымаць тут%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" +"ÐÑÐ½Ð¾ÑžÐ½Ñ‹Ñ Ð¿Ñ€Ð°Ñ„ÑÑÑ–Ð¹Ð½Ñ‹Ñ ÑÐµÑ†Ñ–ÑžÐ½Ñ‹Ñ Ð¿Ð»Ñцоўкі, зьвÑÐ·Ð°Ð½Ñ‹Ñ Ð· пазаÑонечнымі плÑнÑтамі" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "ЭкзаплÑнÑÑ‚Ñ‹: інтÑÑ€Ð°ÐºÑ‚Ñ‹ÑžÐ½Ð°Ñ Ð²ÑÑ€ÑÑ–Ñ XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (ПалÑваньне на ÑкзамеÑÑцы з Кеплерам)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "ЭкзаплÑнÑÑ‚Ñ‹ Ñž падвойных Ñ– кратных ÑÑ‹ÑÑ‚Ñмах (Рычард Шварц)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Ðазываньне ÑкзаплÑнÑтаў (ÐœÐС)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "ÐÐµÐºÐ°Ñ‚Ð¾Ñ€Ñ‹Ñ Ð°Ñтраномы й ґрупы, што займаюцца вывучÑньнем ÑкзаплÑнÑÑ‚" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "абноўлена: 16 краÑавіка 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "ДаÑьледнік даньнÑÑž ÑкзаплÑнÑÑ‚" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "Ðнґла-аўÑтралійÑкі пошук плÑнÑÑ‚" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "ЖÑнÑÑžÑÐºÑ–Ñ Ð¿Ñ€Ð°Ò‘Ñ€Ð°Ð¼Ñ‹ пошуку пазаÑонечных плÑнÑÑ‚" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Ðавіны аптычнага інтÑрфÑромÑтра з доўгай базай)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "Праґрама даÑÑŒÐ»ÐµÐ´Ð°Ð²Ð°Ð½ÑŒÐ½Ñ ÑкзаплÑнÑÑ‚ NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "ПлÑнÑÑ‚Ñ‹ пульÑараў" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "Ðрхіў ÑкзаплÑнÑÑ‚ NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "КаміÑÑ–Ñ 53 ÐœÐС: пазаÑÐ¾Ð½ÐµÑ‡Ð½Ñ‹Ñ Ð¿Ð»ÑнÑÑ‚Ñ‹" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ЭкзаМол" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "ÒалерÑÑ Ð·Ð¾Ð½, прыдатных Ð´Ð»Ñ Ð¶Ñ‹Ð»ÑŒÐ»Ñ" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest — пошук іншай ЗÑмлі" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Каталёґ адкрытых ÑкзаплÑнÑÑ‚" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "Каталёґ прыдатных Ð´Ð»Ñ Ð¶Ñ‹Ð»ÑŒÐ»Ñ ÑкзаплÑнÑÑ‚" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "ЭкзаплÑнÑÑ‚Ñ‹ абноўленыÑ" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "ÐаÑтаўленьні ÑкзаплÑнÑÑ‚" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "ÐаÑтаўленьні дадатку «ЭкзаплÑнÑты»" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Ðбнавіць зьвеÑткі пра ÑкзаплÑнÑÑ‚Ñ‹ зь Сеціва" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "РÑжым паказу ÑкзаплÑнÑÑ‚" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "ÐаÑтройкі ÑкзаплÑнÑÑ‚" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Паказаць уÑе ÑÑ‹ÑÑ‚Ñмы з ÑкзаплÑнÑтамі бÑз назваў" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Задзейнічаць паказ Ñ€Ð°Ð·ÑŒÐ¼ÐµÑ€ÐºÐ°Ð²Ð°Ð½ÑŒÐ½Ñ ÑкзаплÑнÑÑ‚" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Паказваць ÑкзаплÑнÑÑ‚Ñ‹ ад чаÑу іхнага адкрыцьцÑ" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Паказваць Ñ‡Ð°Ñ Ð°Ð´ÐºÑ€Ñ‹Ñ†ÑŒÑ†Ñ ÑкзаплÑнÑÑ‚" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Паказваць ґузік ÑкзаплÑнÑÑ‚ на панÑлі прылад" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "ЗьвеÑткі" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Ðналіз назіральнаÑьці" @@ -7313,185 +7878,179 @@ "ÑÐºÑ–Ñ Ð¿Ð°ÐºÐ°Ð·Ð²Ð°ÑŽÑ†Ñ†Ð° гÑтым ÑцÑнаром, пададзенае на ўкладцы «Пра» вакна " "наÑтаўленьнÑÑž" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Сту" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Лют" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Сак" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Кра" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Тра" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "ЧÑÑ€" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Ліп" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Жні" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Вер" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "КаÑ" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "ЛіÑ" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Сьн" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "г" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "хв" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "Ñ" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Заходзіць у %1 (праз %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Узышло Ñž %1 (%2 таму)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Зайшло Ñž %1 (%2 таму)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Узыходзіць у %1 (праз %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "КалÑпалÑрнае." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Ðе ўзыходзіць." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Кульмінуе Ñž %1 (праз %2) ÐºÐ°Ð»Ñ %3°." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Кульмінавала Ñž %1 (%2 таму) ÐºÐ°Ð»Ñ %3°." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Цела неназіральнае." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "ÐÑ Ð¼Ð°Ðµ ані акранічнага, ані каÑьмічнага ўзыходу/захаду." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "ÐÐ°Ð¹Ð±Ð¾Ð»ÑŒÑˆÐ°Ñ ÑлÑнґацыÑ: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Ðайбольшае аддаленьне ад Сонца: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (ÐºÐ°Ð»Ñ %1°)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Ðкранічны ўзыход/захад" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "ÐÑма акранічнага ўзыходу/захаду." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "КаÑьмічны ўзыход/захад" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "ÐÑма каÑьмічнага ўзыходу/захаду." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Ðазіральнае ўвеÑÑŒ год." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Ðеназіральнае цёмнай ноччу." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Ðочы па-над гарызонтам: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "СÐÐЬÐЯ:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "СÐЛЕТÐ:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "ПапÑÑ€ÑднÑÑ Ð¿Ð¾ÑžÐ½Ñ: %1 %2 у %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "ÐаÑÑ‚ÑƒÐ¿Ð½Ð°Ñ Ð¿Ð¾ÑžÐ½Ñ: %1 %2 у %3:%4. " @@ -7898,6 +8457,9 @@ #~ msgid "Altitude (m): " #~ msgstr "Ð’Ñ‹ÑˆÑ‹Ð½Ñ (м): " +#~ msgid "Nebulas" +#~ msgstr "ТуманнаÑьці" + #~ msgid "Magnitude Sizing Multiplier: " #~ msgstr "Множнік зьмÑÐ½ÐµÐ½ÑŒÐ½Ñ ÑркаÑьці: " @@ -7919,6 +8481,9 @@ #~ msgid "Load Default Configuration: " #~ msgstr "Загрузіць Ð¿Ñ€Ð°Ð´Ð²Ñ‹Ð·Ð½Ð°Ñ‡Ð°Ð½Ñ‹Ñ Ð½Ð°Ñтаўленьні: " +#~ msgid "Nebulas background images" +#~ msgstr "Ð¤Ð¾Ð½Ð°Ð²Ñ‹Ñ Ð²Ñ–Ð´Ð°Ñ€Ñ‹ÑÑ‹ туманнаÑьцÑÑž" + #~ msgid "Form" #~ msgstr "Форма" @@ -8024,6 +8589,22 @@ #~ "Падтрымка ажыцьцÑўлÑецца праз плÑцоўку Launchpad. Ðе забудзь дадаць " #~ "«Satellites plugin» у Ñ‚Ñму паведамленьнÑ." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Ðбноўлена %1/%2 Ñпадарожнікаў; %3 адÑутныÑ" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Ðбнавіць ÑьпіÑÑ‹ TLE з крыніц у Сеціве" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Ð¡ÑŒÐ¿Ñ–Ñ Ò‘Ñ€ÑƒÐ¿Ð°Ñž, падзелены коÑкамі" + +#~ msgid "TLE data:" +#~ msgstr "ЗьвеÑткі TLE:" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "ÐÑ€Ð±Ñ–Ñ‚Ð°Ð»ÑŒÐ½Ñ‹Ñ Ð·ÑŒÐ²ÐµÑткі NORAD з двухлінейных ÑлемÑнтаў" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -8169,10 +8750,30 @@ #~ msgid "Display the hour angle + DE (of date)" #~ msgstr "Паказваць гадзінавы вугал Ñ– Ñхіленьне (даты)" +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Дадатак, Ñкі паказвае Ð½ÐµÐºÐ°Ñ‚Ð¾Ñ€Ñ‹Ñ Ð³Ñ–ÑÑ‚Ð°Ñ€Ñ‹Ñ‡Ð½Ñ‹Ñ Ð·Ð²Ñ‹ÑˆÐ½Ð¾Ð²Ñ‹Ñ, ÑрчÑÐ¹ÑˆÑ‹Ñ Ð·Ð° 10 бачную " +#~ "велічыню." + +#~ msgid "Display mode for quasars" +#~ msgstr "РÑжым паказу квазараў" + +#~ msgid "Display mode for pulsars" +#~ msgstr "РÑжым паказу пульÑараў" + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "ПÑціразовае зацьменьне на ДÑмаÑе Ñž 2027 годзе" #~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Дадатак, Ñкі паказвае Ð½ÐµÐºÐ°Ñ‚Ð¾Ñ€Ñ‹Ñ ÐºÐ¾Ð»Ñ–ÑˆÐ½Ñ–Ñ Ð·Ð²Ñ‹ÑˆÐ½Ð¾Ð²Ñ‹Ñ, ÑрчÑÐ¹ÑˆÑ‹Ñ Ð·Ð° 10 бачную " +#~ "велічыню: " + +#~ msgid "" #~ "Phobos races ahead of Mars and eclipses the sun, passes thru it and then " #~ "retrogrades back towards the sun and just partially eclipses it (only seen " #~ "in the SH) again, then Mars totally eclipses the sun and Phobos, and then as " @@ -8196,6 +8797,12 @@ #~ msgid "Phobos Eclipses the sun as seen from Olympus Mons Jan 10, 2068." #~ msgstr "Зацьменьне Сонца ФобаÑам, бачнае з гары Ðлімп 10 ÑÑ‚ÑƒÐ´Ð·ÐµÐ½Ñ 2068 года." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "ЗаÑьцерагальнік Ñкрану з разнаÑтайнымі (171 штука!) падзеÑмі Ñž Сонечнай " +#~ "ÑÑ‹ÑÑ‚Ñме." + #~ msgid "A tour via western constellations." #~ msgstr "ÐглÑд заходніх Ñузор'ÑÑž." diff -Nru stellarium-0.12.1/po/stellarium/bg.po stellarium-0.12.4/po/stellarium/bg.po --- stellarium-0.12.1/po/stellarium/bg.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/bg.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-19 11:24+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-07-25 13:11+0000\n" "Last-Translator: Bogdan Marinov \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-20 05:09+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Меридиан" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Еклиптика" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Екватор" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Хоризонт" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "ГалактичеÑка равнина" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Ðвтор: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "МеÑтоположение: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Планета: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Вид: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Величина: %1 (Ñ ÐµÐºÑтинкциÑ: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Величина: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Размер: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Галактика" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "РазÑеÑн куп" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Кълбовиден куп" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "МъглÑвина" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Планетарна мъглÑвина" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Тъмна мъглÑвина" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Куп, Ñвързан Ñ Ð¼ÑŠÐ³Ð»Ñвина" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ÐÑма данни" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Ðедокументиран" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "ÐбÑолютна величина: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "РазÑтоÑние: %1 а.е. (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "РазÑтоÑние: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Ъглов диаметър: %1, Ñ Ð¿Ñ€ÑŠÑтените: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Видим диаметър: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" -msgstr "" +msgstr "Звезден ден: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Фаза: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "ОÑветени: %1%" @@ -204,7 +204,7 @@ msgstr "Временно означение: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "звезда" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "еруптивна променлива" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "пулÑираща променлива" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "затъмнително двойна звезда" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "двойна звезда" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "двойна звезда" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Величина: %1 (Ñ ÐµÐºÑтинкциÑ: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Величина: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Спектрален тип: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "РазÑтоÑние: %1 Ñветлинни години" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ПаралакÑ: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Период: %1 дни" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "КоÑмичеÑки апарат" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Грешка" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -656,52 +748,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Избиране на Ð´Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð° Ñнимки на екрана" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Зрителен ъгъл (FOV) при Ñтартиране: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "ПоÑока на наблюдение при Ñтартиране (Ðз/ВиÑ): %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Ðвтори" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "За контакт" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Ðвтор" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Лиценз" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "ИзпълнÑван Ñкрипт: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "ИзпълнÑван Ñкрипт: [нÑма]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -709,16 +802,16 @@ "ИзтеглÑнето на нови каталози приключи!\n" "Stellarium Ñ‚Ñ€Ñбва да бъде реÑтартиран, за да Ñе покажат." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Ð’Ñички налични звездни каталози Ñа инÑталирани." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "СвалÑне на каталог %1 от %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -727,7 +820,7 @@ "Ð˜Ð·Ñ‚ÐµÐ³Ð»Ñ Ñе %1...\n" "(Този прозорец може да бъде затворен.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -738,7 +831,7 @@ "Брой звезди: %2 милиона\n" "Величини: между %3 и %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -747,11 +840,11 @@ "Грешка при ÑвалÑнето на %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Проверка на целоÑтта на файла..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -761,115 +854,123 @@ "Файлът е повреден." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Ðлгоритъм за" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1039,49 +1140,53 @@ msgid "OSX Developer: %1" msgstr "Разработчик за OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Скриптова конзола" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Прозорци" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Интервал" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "ÐÑма опиÑание" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "ÐÑма падащи звезди" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Ðормална чеÑтота" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Обичайна чеÑтота за ПерÑеидите" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Изключителна чеÑтота на Леонидите" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Ðай-виÑоката доÑтигната чеÑтота (Леонидите през 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Ðово ÐœÑÑто" @@ -1182,21 +1287,21 @@ #: src/gui/ScriptConsole.cpp:78 msgid "starchart" -msgstr "" +msgstr "небеÑен атлаÑ" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1212,30 +1317,36 @@ msgid "Alternative shortcut" msgstr "Ðлтернативна комбинациÑ" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "СиÑтемата не поддържа OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Слънце" @@ -1252,12 +1363,12 @@ msgstr "ЗемÑ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Луна" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "МарÑ" @@ -1355,7 +1466,7 @@ msgstr "Метида" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Сатурн" @@ -1653,203 +1764,232 @@ msgstr "ЕÑкимоÑка" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "КорейÑка" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "ЛакотÑка" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "МаорÑка" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Ðавахо" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Ðорвежка" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "ПолинезийÑка" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Сами" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Тупи-гуарани" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Западна" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Герен" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Дървета" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Хърикейн" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Океан" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Гархинг" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Обиколка на пейзажите" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "ЧаÑтично лунно затъмнение" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Пълно лунно затъмнение" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "СкрийнÑейвър" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Слънчево затъмнение 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Скрипт при Ñтартиране" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Зодиак" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Троен изгрев и залез на Меркурий" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Двойно затъмнение, 2017 на ДеймоÑ" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Двойно затъмнение, 2031 на ДеймоÑ" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Затъмнение, 2068 на ÐžÐ»Ð¸Ð¼Ð¿ÑƒÑ ÐœÐ¾Ð½Ñ" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Ð¡ÑŠÐ±Ð¸Ñ‚Ð¸Ñ Ð¸Ð· Слънчевата ÑиÑтема" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Обиколка на ÑъзвездиÑта" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Слънцето от различни планети" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Ðай-добрите изгледи към ЗемÑта" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Транзит на Венера" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Ðналема" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Обиколка на културите" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Оглеждане на вÑеки инÑталиран пейзаж" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "ДемонÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð° чаÑтично лунно затъмнение" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "ДемонÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð° пълно лунно затъмнение" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Безкрайна, бавна разходка из небето Ñпираща Ñе на Ñлучайни обекти." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Скрипт който Ñе изпълнÑва автоматично при Ñтартиране на програмата" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1859,7 +1999,7 @@ "на линиÑта коÑто Слънцето изпиÑва върху небеÑната Ñфера в продължение на " "една година." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1868,32 +2008,32 @@ "определени меÑта Ñлънцето изгрÑва и залÑзва по три пъти за един меркурианÑки " "ден." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Слънчево затъмнение, причинено от ФобоÑ, както Ñе вижда от планината ÐžÐ»Ð¸Ð¼Ð¿ÑƒÑ " "ÐœÐ¾Ð½Ñ Ð½Ð° МарÑ, 10 Ñнуари 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1903,37 +2043,36 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"СкрийнÑейвър Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ð¸ ÑÑŠÐ±Ð¸Ñ‚Ð¸Ñ Ð² Слънчевата ÑиÑтема. Общо 171 ÑвлениÑ!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Разходка из Ñъвременните ÑъзвездиÑ." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Поглед към Слънцето от вÑÑка планета от Слънчевата ÑиÑтема и Плутон." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" "ДемонÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð° аналемата - пътÑÑ‚ на Слънцето по небето през годината." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -1941,1468 +2080,1504 @@ "БлÑÑъкът на Ñвръхновата, наблюдавана от Тихо Брахе през 1572 г. ТрÑбва да е " "включена приÑтавката \"Свръхнови\"." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Ðндора" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Обединени арабÑки емирÑтва" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ÐфганиÑтан" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Ðнтигуа и Барбуда" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Ðнгила" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "ÐлбаниÑ" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ÐрмениÑ" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "ХоландÑки Ðнтили" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Ðнгола" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Ðнтарктика" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Ðржентина" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "ÐмериканÑка Самоа" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ÐвÑтриÑ" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ÐвÑтралиÑ" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Ðруба" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Ðзърбайджан" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "БоÑна и Херцеговина" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "БарбадоÑ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Бангладеш" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "БелгиÑ" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркина ФаÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "БългариÑ" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Бахрейн" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Бурунди" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Бенин" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Бермуда" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Бруней" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "БоливиÑ" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "БразилиÑ" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Бахами" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "о-ви Буве" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "БотÑвана" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "БеларуÑ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Белиз" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Канада" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "КокоÑови оÑтрови" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Демократична република Конго" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "ЦентралноафриканÑка република" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Република Конго" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "ШвейцариÑ" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Кот д'Ивоар" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "о-ви Кук" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Чили" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Камерун" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Китай" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "КолумбиÑ" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "КоÑта Рика" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Ð¡ÑŠÑ€Ð±Ð¸Ñ Ð¸ Черна гора" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Куба" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Кабо Верде" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "о-в РождеÑтво" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Кипър" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ЧехиÑ" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "ГерманиÑ" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Джибути" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "ДаниÑ" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Доминика" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "ДоминиканÑка република" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ðлжир" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Еквадор" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "ЕÑтониÑ" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Египет" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Западна Сахара" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "ЕритреÑ" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "ИÑпаниÑ" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "ЕтиопиÑ" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ФинландиÑ" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Фиджи" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ФолклендÑки о-ви" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "МикронезиÑ" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "ФаройÑки о-ви" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "ФранциÑ" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Габон" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Обединеното кралÑтво" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Гренада" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ГрузиÑ" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "ФренÑка Гана" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Гана" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Гибралтар" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "ГренландиÑ" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "ГамбиÑ" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "ГвинеÑ" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Гваделупа" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Екваториална ГвинеÑ" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "ГърциÑ" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Южна Ð”Ð¶Ð¾Ñ€Ð´Ð¶Ð¸Ñ Ð¸ Южни Сандвичеви о-ви" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Гватемала" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Гуам" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "ГвинеÑ-БиÑау" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Гвиана" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Хонконг" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "О-ви Хърд и МакДоналд" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ХондураÑ" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "ХърватÑка" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Хаити" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "УнгариÑ" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "ИндонезиÑ" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ИрландиÑ" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Израел" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ИндиÑ" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "БританÑка индоокеанÑка териториÑ" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ирак" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Иран" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ИÑландиÑ" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ИталиÑ" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Ямайка" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Йордан" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "ЯпониÑ" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "КениÑ" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "КиргизÑтан" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Камбоджа" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Кирибати" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "КоморÑки о-ви" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Св. ÐšÐ¸Ñ‚Ñ Ð¸ ÐевиÑ" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Северна КореÑ" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "КореÑ" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Кувейт" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "КайманÑки о-ви" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "КазахÑтан" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "ЛаоÑки" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Ливан" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Св. ЛучиÑ" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Лихтенщайн" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Шри Ланка" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "ЛибериÑ" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ЛеÑото" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Литва" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ЛюкÑембург" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "ЛатвиÑ" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "ЛибиÑ" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Мароко" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Монако" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Молдова" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "МадагаÑкар" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Маршалови о-ви" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "МакедониÑ" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Мали" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Мианмар" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "МонголиÑ" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Макао" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Северни МарианÑки о-ви" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Мартиника" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "МавританиÑ" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "МонÑерат" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Малта" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "О-в Мавриций" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Малдиви" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Малави" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "МекÑико" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "МалайзиÑ" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Мозамбик" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "ÐамибиÑ" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Ðова КаледониÑ" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Ðигер" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "о-в Ðорфолк" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "ÐигериÑ" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Ðикарагуа" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "ХоландиÑ" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Ðоруей" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Ðепал" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Ðауру" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Ðиуе" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Ðова ЗеландиÑ" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Оман" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Панама" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Перу" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "ФренÑка ПолинезиÑ" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Папуа Ðова ГвинеÑ" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Филипини" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ПакиÑтан" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Полша" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Сен Пиер и Микелон" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Питкеърн" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Пуерто Рико" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "ПалеÑтинÑки територии" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "ПортугалиÑ" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Палау" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Парагвай" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Катар" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "ОÑтров Реюнион" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "РумъниÑ" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "СърбиÑ" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "РуÑка федерациÑ" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Руанда" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "СаудитÑка ÐрабиÑ" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Соломонови о-ви" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "СейшелÑки о-ви" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Судан" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ШвециÑ" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Сингапур" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Св. Елена" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "СловениÑ" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Сволборд и Йан Майен" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "СловакиÑ" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Сиера Леоне" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Сан Марино" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Сенегал" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "СомалиÑ" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Суринам" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Сао Томе и Принцип" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Салвадор" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "СириÑ" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Свазиленд" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "о-ви Ð¢ÑŠÑ€ÐºÑ Ð¸ КайкоÑ" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Чад" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "ФренÑки южни територии" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Того" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Тайланд" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ТаджикиÑтан" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Токелау" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Източен Тимор" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ТуркмениÑтан" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ТуниÑ" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Тонга" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "ТурциÑ" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Тринидад и Тобаго" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Тувалу" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Тайван" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "ТанзаниÑ" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Украйна" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Уганда" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Малки далечни оÑтрови на СÐЩ" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "СÐЩ" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Уругвай" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "УзбекиÑтан" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Ватикана" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Сейнт ВинÑент и Гренадини" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Венецуела" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "ВирджиÑнки о-ви (Брит.)" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "ВирджинÑки о-ви (СÐЩ)" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Виетнам" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Вануату" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "О-ви Ð£Ð¾Ð»Ð¸Ñ Ð¸ Футуна" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Самоа" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Йемен" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Майот" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ЮгоÑлавиÑ" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Южна Ðфрика" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "ЗамбиÑ" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Зимбабве" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Дата и чаÑ" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "ДобавÑне на 1 звезден ден" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "ДобавÑне на 1 звездна Ñедмица" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "ДобавÑне на 1 ден" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "ДобавÑне на 1 чаÑ" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "ДобавÑне на 1 Ñедмица" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "ЗабавÑне на изпълнението на Ñкрипта" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "ЗабавÑне на времето" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "ЗабавÑне на времето (малко)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "УÑкорÑване на изпълнението на Ñкрипта" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "УÑкорÑване на времето" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "УÑкорÑване на времето (малко)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Продължаване на изпълнението на Ñкрипт" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "УеднаквÑване Ñ Ñ‚ÐµÐºÑƒÑ‰Ð¾Ñ‚Ð¾ време" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "ИзпълнÑване на Ñкрипта Ñ Ð½Ð¾Ñ€Ð¼Ð°Ð»Ð½Ð° ÑкороÑÑ‚" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Ðормално протичане на времето" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Спиране на времето" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Изваждане на 1 звезден ден" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Изваждане на 1 звездна Ñедмица" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Изваждане на 1 ден" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Изваждане на 1 чаÑ" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Изваждане на 1 Ñедмица" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "ÐаÑтройки на показваното" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Обръщане на Ñцената по хоризонтала" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "ЦÑл екран" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "ÐтмоÑфера" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Ðзимутна мрежа" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "ПоÑоки на Ñвета" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "ИлюÑтрации на ÑъзвездиÑта" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Граници на ÑъзвездиÑта" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "ÐадпиÑи на ÑъзвездиÑта" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Фигури на ÑъзвездиÑта" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Ð˜Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð½Ð° мъглÑвини" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ð›Ð¸Ð½Ð¸Ñ Ð½Ð° еклиптиката" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ð›Ð¸Ð½Ð¸Ñ Ð½Ð° екватора" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Екваториална мрежа" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Екваториална мрежа (J2000)" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Мъгла" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "ГалактичеÑка мрежа" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "ГалактичеÑка равнина" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Земна повърхноÑÑ‚" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Ð›Ð¸Ð½Ð¸Ñ Ð½Ð° хоризонта" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Ð›Ð¸Ð½Ð¸Ñ Ð½Ð° меридиана на наблюдателÑ" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "МъглÑвини" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Ðощен режим" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Етикети на планетите" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Орбити на планетите" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Следи от планетите" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Звезди" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Етикети на звездите" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Обръщане на Ñцената по вертикала" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Други" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Ðвтоматично Ñкриване на хоризонталната лента Ñ Ð±ÑƒÑ‚Ð¾Ð½Ð¸" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Ðвтоматично Ñкриване на вертикалната лента Ñ Ð±ÑƒÑ‚Ð¾Ð½Ð¸" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Изход" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Копиране на информациÑта за Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "ЗапиÑване на Ñнимка на екрана" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "СмÑна между екваториално и азимутно окачване" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Скриване/показване на Ð²Ð¸Ð·ÑƒÐ°Ð»Ð½Ð¸Ñ Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Придвижване и избиране на обекти" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Центриране на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Задаване на избраната планета като отправна планета" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Следване на обект" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Увеличаване на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "ÐамалÑване" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Ъгломер" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "КомпаÑна Ñкала" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "ÐаÑтройки на \"Екзопланети\"" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "ВидимоÑÑ‚" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "ÐаÑтройки на \"ВидимоÑÑ‚\"" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "ÐаÑтройки на приÑтавката ОкулÑри" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Изглед през окулÑÑ€" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Меню на ОкулÑри" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Прицел Телрад" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "ÐаÑтройки на \"ПулÑари\"" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "ÐаÑтройки на \"Квазари\"" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "ÐаÑтройки на \"Спътници\"" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Маркери за Ñпътниците" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Етикети на Ñпътниците" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "ÐаÑтройки на \"ИÑторичеÑки Ñвръхнови\"" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "ÐаÑочване на телеÑкоп към зададени координати" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Скриптове" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "ПуÑкане от файл на Ñкрипта Ñ Ð¿ÐµÐ¹Ð·Ð°Ð¶Ð¸" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Покзване и увеличаване на Луната" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "ÐаÑтройки" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Дата/време" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Помощ" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "МеÑтоположение" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "ТърÑене" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "УправлÑващи клавиши" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Ðебе и наÑтройки на изгледа" @@ -3428,7 +3603,7 @@ msgstr "ОпреÑнÑване" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "МеÑтоположение" @@ -3444,10 +3619,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Изтриване" @@ -3456,7 +3631,7 @@ msgstr "ДобавÑне към ÑпиÑъка" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Ширина:" @@ -3469,12 +3644,12 @@ "<дмÑ>, например: +1д 12м 8Ñ" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Дължина:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "ВиÑочина:" @@ -3498,363 +3673,407 @@ msgid "Planet:" msgstr "Планета:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Ðамиране на обект" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Ðамиране на обект или координати" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "йота" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "алфа" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "бета" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "гама" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "делта" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "епÑилон" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "зета" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "ета" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "тета" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "капа" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "ламбда" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "мю" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ню" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "кÑи" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "омикрон" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "пи" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ро" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "Ñигма" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "тау" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ипÑилон" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "фи" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "хи" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "пÑи" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "омега" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Гръцки букви за Байерови означениÑ" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Обект" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "Рект/Дек (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Координати" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "СпиÑъци" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Онлайн аÑтрономичеÑка база данни SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "РазширÑване на Ñ‚ÑŠÑ€Ñенето ÑÑŠÑ SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Сървър:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "ÐаÑтройки" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "СпиÑъци" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "ÐаÑтройки" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Изглед" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Ðебе" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "ОзначениÑ" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Пейзаж" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Култура" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "ÐадпиÑи и показатели" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Планети" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Планети и Ñпътници" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Показване на планети" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Маркиране на планетите" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Показване на орбити на планети" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Симулиране на ÑкороÑтта на Ñветлината" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Увеличена Луна" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Показване на атмоÑфера" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Светлинно замърÑÑване:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "налÑгане, температура, коефициент на екÑтинкциÑ" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Ð ÐµÑ„Ñ€Ð°ÐºÑ†Ð¸Ñ Ð¸ екÑтинкциÑ..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "ÐбÑолютен мащаб:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "ОтноÑителен мащаб:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "ЯркоÑÑ‚ на ÐœÐ»ÐµÑ‡Ð½Ð¸Ñ Ð¿ÑŠÑ‚:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Блещукане:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "ЗатъмнÑване на бледите звезди когато е видим много Ñрък обект" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "ПроменÑща Ñе Ð°Ð´Ð°Ð¿Ñ‚Ð°Ñ†Ð¸Ñ Ð½Ð° зрението" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Падащи звезди" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Зенитно чаÑово чиÑло" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "ЧеÑтота:" +msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Скриване на обекти под зададената ÑркоÑÑ‚" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Минимална величина" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Само звезди по-Ñрки от дадената величина" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Само мъглÑвини по-Ñрки от дадената величина" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "СъзвездиÑ" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Показване на линии" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Показване на надпиÑи" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Показване на граници" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Показване на илюÑтрации" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "ЯркоÑÑ‚ на илюÑтрациите:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ÐебеÑна Ñфера" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Показване на линиÑта на небеÑÐ½Ð¸Ñ ÐµÐºÐ²Ð°Ñ‚Ð¾Ñ€" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Показване на линиÑта на меридиана на наблюдателÑ" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Показване на линиÑта на хоризонта" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Показване на линиÑта на еклиптиката" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Показване на линиÑта на галактичеÑката равнина" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "ПроекциÑ" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "ДобавÑне/премахване на пейзажи..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Показване на земÑ" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Показване на мъгла" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Използване на планетата и меÑтоположението на пейзажа" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Пейзаж по подразбиране" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Използване на ÑъзвездиÑта на тази култура по подразбиране" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Показване" @@ -3910,7 +4129,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "ПоÑоката, в коÑто \"гледа\" Stellarium при Ñтартиране" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° избран обект" @@ -3926,11 +4145,8 @@ msgid "Display no information" msgstr "Ðе показва информациÑ" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ðикаква" @@ -4074,7 +4290,7 @@ msgstr "Ñекунди" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Дата и Ñ‡Ð°Ñ Ð¿Ñ€Ð¸ Ñтартиране" @@ -4086,42 +4302,46 @@ msgid "Other:" msgstr "Други:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "въвеждане на текущите" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Стелариум започва Ñ Ð´Ð°Ñ‚Ð°Ñ‚Ð° и чаÑа на ÑиÑÑ‚ÐµÐ¼Ð½Ð¸Ñ Ñ‡Ð°Ñовник" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "СиÑтемна дата и чаÑ" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" "СимулациÑта на Стелариум започва на ÑиÑтемната дата, но в Ð·Ð°Ð´Ð°Ð´ÐµÐ½Ð¸Ñ Ñ‡Ð°Ñ" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "СиÑтемна дата в:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Поправка на времето" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "ÐаÑтройки за планетариум" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4129,54 +4349,54 @@ "ИзкривÑване на картината за прожектиране на Стелариум върху Ñферично " "огледало в ниÑкобюджетен планетариум." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "ИзкривÑване за Ñферично огледало" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Закриване на вÑичко извън Ñ†ÐµÐ½Ñ‚Ñ€Ð°Ð»Ð½Ð¸Ñ ÐºÑ€ÑŠÐ³ в оÑÐ½Ð¾Ð²Ð½Ð¸Ñ Ð¸Ð·Ð³Ð»ÐµÐ´" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Кръгло зрително поле" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "При щракване в/у едно Ñъзвездие вÑички други Ñе Ñкриват" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Избиране на отделно Ñъзвездие" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" "Вертикалната Ð¾Ñ Ð½Ð° надпиÑите Ñочи към центъра на екрана (към зенита при " "проектиране върху купол)" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Ð“Ñ€Ð°Ð²Ð¸Ñ‚Ð°Ñ†Ð¸Ñ Ð·Ð° етикетите" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Ð”Ð¾Ð±Ð°Ð²Ñ Ð±ÑƒÑ‚Ð¾Ð½ контролиращ фоновите Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð½Ð° мъглÑвините" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Бутон за изображениÑта на мъглÑвини" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" "Показване на бутони за обръщане на картината по хоризонтала и вертикала" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Показване на бутони за обръщане" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4184,92 +4404,98 @@ "Ðко тази Ð¾Ð¿Ñ†Ð¸Ñ Ðµ включена, клавишът за \"автоматично намалÑване\" ще връща и " "първоначалната поÑока на наблюдение" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Ðвтоматичното намалÑване връща първоначалната поÑока" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Сенки на планети и Ñпътници" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Снимки на екрана" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð° запиÑване" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Обръщане на цветовете" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "ОбновÑване на звездните каталози" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Щракнете тук за изтеглÑне" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Свалете този файл за още повече звезди" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Започване на изтеглÑнето наново" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Повторен опит" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Спиране на изтеглÑнето. ПоÑле може да бъде започнато наново." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Отказ" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "ЗатварÑне на този прозорец" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "ИзпълнÑване на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ñкрипт" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Спиране на изпълнÑван Ñкрипт" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Зареждане при Ñтартиране" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "наÑтройки" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Главни" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ИнформациÑ" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Контрол" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "ИнÑтрументи" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "ПриÑтавки" @@ -4445,12 +4671,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Показва делениÑта на компаÑа по хоризонта вмеÑто четирите поÑоки." -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "ОкулÑри" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4460,164 +4686,164 @@ "увеличението и Ð·Ñ€Ð¸Ñ‚ÐµÐ»Ð½Ð¸Ñ ÑŠÐ³ÑŠÐ».) Може да показва и размера на Ñензор и прицел " "тип Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "ÐœÐ¾Ð»Ñ Ð¸Ð·Ð±ÐµÑ€ÐµÑ‚Ðµ обект преди да включите окулÑÑ€." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&P: Предишен окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&N: Следващ окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "&O: Избор на окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "&C: Мерна мрежа" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "&O: ÐаÑтройка на ОкулÑри" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "&C: Рамка на CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "&T: Прицел Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "ОкулÑÑ€ â„–%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "ОкулÑÑ€ â„–%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "ФР на окулÑра: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "aFOV на окулÑра: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "ТелеÑкоп â„–%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "ТелеÑкоп â„–%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Увеличение: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Зрит. ъгъл: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Размери: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Сензор â„–%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Сензор â„–%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&T: ТелеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&P: Предишен телеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&N: Следващ телеÑкоп" @@ -4689,64 +4915,69 @@ msgid "Apparent field of view of the ocular" msgstr "Видим зрителен ъгъл на окулÑра" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Множител: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Завъртане: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Увеличението предоÑтавено от този бинокъл" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "СъщинÑки зрителен ъгъл на този бинокъл" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "ВерÑиÑ" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Обобщено" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4754,7 +4985,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4765,14 +4996,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4781,118 +5012,126 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Бързи клавиши" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Включване Ñамо ако има избран обект" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "ПромÑна на размера на Ð·Ñ€Ð¸Ñ‚ÐµÐ»Ð½Ð¸Ñ ÐºÑ€ÑŠÐ³" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Контролни клавиши" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Включване на окулÑÑ€:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "ОтварÑне на изÑкачащо меню за управление:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "ИнтерфейÑ" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Контролен панел" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Общи" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "ОкулÑри" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "ДобавÑне" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Име:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "ФокуÑна дължина:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Бинокъл" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Множител:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -4900,74 +5139,75 @@ "Множител >1 увеличава фокуÑната дължина (леща на Барлоу). Множител <1 " "намалÑва фокуÑната дължина (леща на Шепли)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Сензори" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Ширина на чипа (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "ВиÑочина на чипа (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Ширина на пикÑела (микрони):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "ВиÑочина на пикÑела (микрони):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "ТелеÑкопи" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Диаметър:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Хоризонтално обръщане" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Вертикално обръщане" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "За приÑтавката" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Спътници" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4975,88 +5215,148 @@ "ПредÑказване на положениÑта на изкуÑтвени Ñпътници в орбита около ЗемÑта въз " "оÑнова на данни във формата TLE на NORAD." -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Файлът satellites.json е в оÑтарÑл формат и ще бъде заменен Ñ Ð¿Ñ€Ð¸Ð¼ÐµÑ€ÐµÐ½ файл " "в Ð½Ð¾Ð²Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚." -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Ðомер на ÐОРÐД" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Международен индекÑ" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "изкуÑтвен Ñпътник" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "РазÑтоÑние (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "ПромÑна в разÑтоÑнието (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "ВиÑочина (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Ðаземна точка (Шир./Дъл.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Координати в TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "СкороÑÑ‚ в TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "И Ñпътникът, и наблюдателÑÑ‚ Ñа на Ñлънце." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Спътникът е видим." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Спътникът е в затъмнение." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Спътникът не е видим." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "ПриÑтавка за Stellarium \"Спътници\"" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5064,17 +5364,17 @@ "ПриÑтавката \"Спътници\" (Satellites) Ñлужи за предÑказване на позициите на " "изкуÑтвени Ñпътници в орбита около ЗемÑта." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Бележки за потребителите" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Спътниците и техните орбити Ñе показват Ñамо когато наблюдателÑÑ‚ е на ЗемÑта." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5084,7 +5384,7 @@ "най-много меÑец преди и Ñлед ÑÐµÐ³Ð°ÑˆÐ½Ð¸Ñ Ð¼Ð¾Ð¼ÐµÐ½Ñ‚). Очаквайте Ñтранни резултати " "ако използвате дати извън този Ñрок." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5094,7 +5394,7 @@ "редовно." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5106,7 +5406,7 @@ "файлове могат да бъдат намерени в директориÑта за потребителÑки данни, в " "поддиректориÑта \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5115,11 +5415,11 @@ "може да липÑват, да Ñа недовършени или да не работÑÑ‚ добре." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "ОбновÑване на ÑпиÑъците от TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5129,7 +5429,7 @@ "Интернет, и по оригиналните наÑтройки това ще Ñтава ако текущите ÑпиÑъци Ñа " "по-Ñтари от 72 чаÑа. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5140,7 +5440,7 @@ "файл на Ð²Ð°ÑˆÐ¸Ñ ÐºÐ¾Ð¼Ð¿ÑŽÑ‚ÑŠÑ€. Файлът Ñ‚Ñ€Ñбва да бъде в ÑÑŠÑ‰Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ като " "обновÑваниÑта на Celestrak (вижте например %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5149,11 +5449,11 @@ "Ñи нещо заградено в квадратни Ñкоби, то ще бъде махнато при зареждането на " "ÑпиÑъка." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "ДобавÑне на нови Ñпътници" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5161,11 +5461,11 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "ТехничеÑки забележки" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5173,7 +5473,7 @@ "Позициите Ñе изчиÑлÑват по методите SGP4 и SDP4, използвайки данни във " "формата TLE на NORAD за изходни данни. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5183,24 +5483,26 @@ "Spacetrack Report #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Вижте %1този документ%2 за подробноÑти." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Връзки" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5208,31 +5510,34 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Ðко имате въпроÑи, можете да получите отговор %1тук%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Бъгове могат да бъдат докладвани %1тук%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5240,120 +5545,140 @@ "Ðко иÑкате да поиÑкате добавÑнето на функциÑ, можете да го докладвате като " "бъг (\"Report a bug\"), като в полето \"Severity\" изберете \"Wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "ОбновÑването по Интернет е изключено" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Тече обновÑване..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Следващо обновÑване: < 1 минута" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Следващо обновÑване: %1 минути" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Следващо обновÑване: %1 чаÑа" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 +msgid "Update error" +msgstr "Грешка при обновÑване" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 +msgid "[new source]" +msgstr "[нов източник]" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 #: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 msgid "Update now" msgstr "ОбновÑване Ñега" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 msgid "Update from files" msgstr "ОбновÑване от файлове" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 -msgid "Update error" -msgstr "Грешка при обновÑване" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 -#, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Обновени Ñа %1/%2 Ñпътник(а); %3 липÑват" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 -msgid "[new source]" -msgstr "[нов източник]" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[грешка при изчиÑлÑване]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[вÑички новодобавени]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[вÑички непоказвани]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[вÑички показвани]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[вÑички]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Избор на файл Ñ TLE за обновÑване" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "ИзтеглÑÑ‚ Ñе данни..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5361,175 +5686,195 @@ "Stellarium Ð¸Ð·Ñ‚ÐµÐ³Ð»Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° Ñпътниците от източниците на обновÑваниÑ. " "ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹Ñ‚Ðµ..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Изберете файл(ове), Ñъдържащ(и) TLE..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Обработват Ñе данни..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "ИзтеглÑнето на данни бе неуÑпешно, Ð¼Ð¾Ð»Ñ Ð¾Ð¿Ð¸Ñ‚Ð°Ð¹Ñ‚Ðµ по-къÑно." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Каталожен номер: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð½Ð° Спътници" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "ОбновÑване на ÑпиÑъците Ñ TLE от източници в Интернет" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "ОбновÑване от онлайн източници" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "ПоÑледно обновÑване:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "ЧеÑтота на обновÑване (чаÑа):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Етикети" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Размер на шрифта на етикетите (пикÑели):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Орбитални линии" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Брой Ñегменти, използвани да Ñе изчертае линиÑта" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Брой Ñегменти:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "ПродължителноÑÑ‚ на един Ñегмент в Ñекунди" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Дължина на Ñегмента (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Брой Ñегменти, използвани да Ñе изчертае вÑеки край на линиÑта" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Брой угаÑващи:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Оригинални наÑтройки" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Запазване на наÑтройките" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "ÐаÑтройки" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "ДобавÑне на още Ñпътници" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Премахване на избраните Ñпътници" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Запазване на промените" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Ðомер в каталога:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Показване на избраните Ñпътник или Ñпътници" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Показван" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Показване на чаÑÑ‚ от орбитата на избраните Ñпътник или Ñпътници" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Орбита" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Ðомер в каталога:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "ОпиÑание:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Групи:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "СпиÑъкт от групи, разделени ÑÑŠÑ Ð·Ð°Ð¿ÐµÑ‚Ð°Ð¸" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE данни:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Данни за орбиталните елементи в Ð´Ð²ÑƒÑ€ÐµÐ´Ð¾Ð²Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ на NORAD" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Премахване на избраните Ñпътници" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "ДобавÑне на още Ñпътници" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Запазване на промените" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5537,15 +5882,15 @@ "Въвеждане или редактиране на URL адреÑа на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ðº. Промените Ñе " "запазват Ñ Ð½Ð°Ñ‚Ð¸Ñкане на Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "ДобавÑне на нов източник" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Премахване на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¸Ð·Ñ‚Ð¾Ñ‡Ð½Ð¸Ðº" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Източници" @@ -5581,11 +5926,11 @@ msgid "Discard" msgstr "ОтхвърлÑне" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Контрол на телеÑкоп" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5594,12 +5939,12 @@ "(\"slew\") към телеÑкоп на компютъризирано окачване (Ñ‚.нар. \"GoTo\" " "телеÑкоп)." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "ÐаÑочване на телеÑкоп â„–%1 към Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "ÐаÑочване на телеÑкоп â„–%1 към Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ Ñ†ÐµÐ½Ñ‚ÑŠÑ€ на екрана" @@ -5997,62 +6342,62 @@ "промÑна на начина на изпиÑване на датата и чаÑа в долната лента." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Ñнуари" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "февруари" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "март" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "април" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "май" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "юни" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "юли" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "авгуÑÑ‚" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Ñептември" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "октомври" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "ноември" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "декември" @@ -6212,7 +6557,7 @@ "лентата на дъното на екрана." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Формат за показване на времето" @@ -6230,7 +6575,7 @@ msgstr "24-чаÑов формат" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Формат за показване на датата" @@ -6246,11 +6591,11 @@ msgid "mm-dd-yyyy" msgstr "мм-дд-гггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "ТекÑтов интерфейÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6258,144 +6603,144 @@ "Ð˜Ð¼Ð¿Ð»ÐµÐ¼ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ ÐºÐ°Ñ‚Ð¾ приÑтавка на текÑÑ‚Ð¾Ð²Ð¸Ñ Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ (TUI) от верÑиите 0.9.*, " "предназначен за използване в планетариум." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "ТÑло от Слънчевата ÑиÑтема" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Текущи дата и чаÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Задаване на чаÑова зона" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "ÑиÑтемното" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "заданено" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "ммддгг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ддммгггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "гггггммдд" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12-чаÑов формат" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24-чаÑов формат" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Език" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Показване на звезди" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Цветове" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Имена на мъглÑвини" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Маркери на мъглÑвини" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Ð›Ð¸Ð½Ð¸Ñ Ð½Ð° галактичеÑката равнина" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Ефекти" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Ръчно увеличение" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Множител за мащабиране на величините" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "ЯркоÑÑ‚ на ÐœÐ»ÐµÑ‡Ð½Ð¸Ñ Ð¿ÑŠÑ‚:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "ЧеÑтота на етикетите на мъглÑвини:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "ПродължителноÑÑ‚ на приближаването:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Задаването на пейзаж задава и положение" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Стартиране на локален Ñкрипт" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Спиране на Ñкрипт" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Скрипт на CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Управление" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Зареждане на първоначалните наÑтройки" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Запазване на текущите наÑтройки" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Изключване" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6431,16 +6776,16 @@ "база данни. Ð’Ñе още в разработка." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Ðко запитването е уÑпешно ще върне Ñамо един резултат." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6448,7 +6793,7 @@ "И кометите, и аÑтероидите могат да бъдат определÑни Ñ Ñ‚ÐµÑ…Ð½Ð¸Ñ Ð½Ð¾Ð¼ÐµÑ€, име (на " "английÑки) или предварително означение." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6631,37 +6976,43 @@ msgid "Solar System" msgstr "Слънчева ÑиÑтема" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "ИÑторичеÑки Ñвръхнови" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"ПриÑтавка, показваща иÑторичеÑки Ñвръхнови, по-Ñрки от 10та видима величина." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "Ñвръхнова" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Тип Ñвръхнова: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "ИÑторичеÑки Ñвръхнови" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6679,7 +7030,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6693,14 +7044,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6708,8 +7059,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6727,29 +7079,106 @@ msgstr "ÐаÑтройки на приÑтавката ИÑторичеÑки Ñвръхнови" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "ОбновÑване от онлайн източници" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "ЧеÑтота на обновÑване (дни):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Квазари" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6768,51 +7197,61 @@ msgid "Z (redshift): %1" msgstr "Z (червено отмеÑтване): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "ÐаÑтройки на приÑтавката Квазари" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "ПулÑари" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6932,11 +7371,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6944,67 +7383,71 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "ЗапиÑка" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "ÐаÑтройки на приÑтавката ПулÑари" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Екзопланети" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7012,71 +7455,71 @@ "ПриÑтавката показва позициите на звезди Ñ ÐµÐºÐ·Ð¾Ð¿Ð»Ð°Ð½ÐµÑ‚Ð¸. Данните Ñа изведени " "от Ñайта 'Extrasolar Planets Encyclopaedia', намиращ Ñе на Ð°Ð´Ñ€ÐµÑ exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "МаÑа" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "РадиуÑ" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Екзопланета" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Период" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "дни" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "ÐЕ" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Година на откриване" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7084,49 +7527,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "ÐаÑтройки на приÑтавката Екзопланети" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Ðнализ на видимоÑтта" @@ -7149,185 +7681,179 @@ "rise/set.

    An explanation of the quantities shown by this script is " "given in the 'About' tab of the configuration window" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Ñну" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "фев" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "мар" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "апр" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "май" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "юни" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "юли" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "авг" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Ñеп" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "окт" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "ное" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "дек" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "ч" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "м" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "Ñ" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "ЗалÑзва в %1 (Ñлед %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Ð˜Ð·Ð³Ñ€Ñ Ð² %1 (преди %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Залезе в %1 (преди %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "ИзгрÑва в %1 (Ñлед %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Кулминира в %1 (Ñлед %2), доÑтигайки %3°." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Кулминира в %1 (преди %2), доÑтигайки %3°." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Обектът не е видим." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Ðощи над хоризонта: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "ДÐЕС:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "ТÐЗИ ГОДИÐÐ:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Предишно пълнолуние: %2 %1 в %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Следващо пълнолуние: %2 %1 в %3:%4. " @@ -7656,6 +8182,9 @@ #~ msgid "Zoom Duration: " #~ msgstr "ПродължителноÑÑ‚ на увеличението: " +#~ msgid "Nebulas" +#~ msgstr "МъглÑвини" + #~ msgid "Light Pollution Luminance: " #~ msgstr "ЯркоÑÑ‚ при Ñветлинен Ñмог: " @@ -7743,6 +8272,9 @@ #~ msgid "Maximum Magnitude to Label: " #~ msgstr "МакÑимална величина за именуване: " +#~ msgid "Nebulas background images" +#~ msgstr "Ð˜Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð½Ð° мъглÑвини" + #~ msgid "Planets labels" #~ msgstr "Етикети на планетите" @@ -7828,6 +8360,22 @@ #~ "Помощ за потребителите Ñе предлага чрез Ñайта Launchpad. ÐœÐ¾Ð»Ñ Ñлагайте " #~ "\"Satellites plugin\" в заглавието, когато оÑтавÑте Ñъобщение." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Обновени Ñа %1/%2 Ñпътник(а); %3 липÑват" + +#~ msgid "TLE data:" +#~ msgstr "TLE данни:" + +#~ msgid "Comma separated list of groups" +#~ msgstr "СпиÑъкт от групи, разделени ÑÑŠÑ Ð·Ð°Ð¿ÐµÑ‚Ð°Ð¸" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Данни за орбиталните елементи в Ð´Ð²ÑƒÑ€ÐµÐ´Ð¾Ð²Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ на NORAD" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "ОбновÑване на ÑпиÑъците Ñ TLE от източници в Интернет" + #~ msgid "Crosshairs" #~ msgstr "Прицел" @@ -7849,3 +8397,21 @@ #, qt-format #~ msgid "Type of pulsar: %1" #~ msgstr "Тип пулÑар: %1" + +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "СкрийнÑейвър Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ð¸ ÑÑŠÐ±Ð¸Ñ‚Ð¸Ñ Ð² Слънчевата ÑиÑтема. Общо 171 ÑвлениÑ!" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "ПриÑтавка, показваща иÑторичеÑки Ñвръхнови, по-Ñрки от 10та видима величина." + +#~ msgid "" +#~ "Flash of supernova which was observed by Tycho Brahe in 1572 year. For demos " +#~ "need enable plugin for supernovae." +#~ msgstr "" +#~ "Пламък на Ñвръхнова, наблюдаван от Тихо Брахе през 1572 година. За " +#~ "демонÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ðµ необходимо да Ñе добави приÑтавката “ИÑторичеÑки Ñвръхнови“." diff -Nru stellarium-0.12.1/po/stellarium/bh.po stellarium-0.12.4/po/stellarium/bh.po --- stellarium-0.12.1/po/stellarium/bh.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/bh.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:10+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bihari \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:11+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:45+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/bi.po stellarium-0.12.4/po/stellarium/bi.po --- stellarium-0.12.1/po/stellarium/bi.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/bi.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bislama \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:11+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:45+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/bn.po stellarium-0.12.4/po/stellarium/bn.po --- stellarium-0.12.1/po/stellarium/bn.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/bn.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,30 +7,30 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-13 04:14+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-12 03:14+0000\n" "Last-Translator: Tanmoy Saha \n" "Language-Team: Tanmoy Saha\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:11+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:45+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: bn\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "মূলমধà§à¦¯ রেখা" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "সৌরপথ" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "নিরকà§à¦·à¦°à§‡à¦–া" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "দিগনà§à¦¤" @@ -38,46 +38,46 @@ msgid "Galactic Plane" msgstr "নকà§à¦·à¦¤à§à¦°à¦²à§‹à¦•à§€à§Ÿ সমতল" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "লেখক: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "অবসà§à¦¥à¦¾à¦¨: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "গà§à¦°à¦¹ " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "ধরন: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "ঔজà§à¦œà§à¦¬à¦²à§à¦¯: %1 (extincted to: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "ঔজà§à¦œà§à¦¬à¦²à§à¦¯: %1" @@ -87,114 +87,114 @@ msgid "Size: %1" msgstr "আকার: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "ছায়াপথ" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "মà§à¦•à§à¦¤ তারকা গà§à¦šà§à¦›" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "সংবদà§à¦§ গোলাকার তারকা গà§à¦šà§à¦›" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "নীহারিকা" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "গà§à¦°à¦¹à¦°à§‚পী নীহারিকা" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "কৃষà§à¦£ নিহারীকা" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "নীহারিকা সংলগà§à¦¨ তারকা গà§à¦šà§à¦›" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "অজানা" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "নথিভà§à¦•à§à¦¤ না করা জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦¸à¦®à§‚হ" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "পরম ঔজà§à¦œà§à¦¬à¦²à§à¦¯: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "সà§à¦¥à¦¾à¦¨ কেনà§à¦¦à§à¦°à¦¿à¦• সৌরতলীয় অবসà§à¦¥à¦¾à¦¨ (তারিখে): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "অকà§à¦·à§‡à¦° তীরà§à¦¯à¦•à¦¤à¦¾ (তারিখে, পৃথিবীর): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "দূরতà§à¦¬ : %1 জà§à¦¯à§‹à¦¤à¦¿à¦°à§à¦¬à§ˆà¦œà§à¦žà¦¾à¦¨à¦¿à¦• à¦à¦•à¦• (%2 কিমি)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "দূরতà§à¦¬ : %1 জà§à¦¯à§‹à¦¤à¦¿à¦°à§à¦¬à§ˆà¦œà§à¦žà¦¾à¦¨à¦¿à¦• à¦à¦•à¦•" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "অাপাত বà§à¦¯à¦¾à¦¸ : %1, বলয় সহ: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "আপাত বà§à¦¯à¦¾à¦¸ : %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "পà§à¦°à¦¦à¦•à§à¦·à¦¿à¦£ কাল: %1 দিন (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "নকà§à¦·à¦¤à§à¦° দিবস: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "গড় সৌর দিবস: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "দশা কোন : %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "দà§à¦°à¦¾à¦˜à¦¨ বা সূরà§à¦¯à§‡à¦° সাথে কৌনিক দূরতà§à¦¬ : %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "দশা : %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "দীপà§à¦¤à¦¿ : %1%" @@ -205,7 +205,7 @@ msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• অসà§à¦¥à¦¾à§Ÿà§€ নাম: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "তারা" @@ -220,47 +220,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "অাপাত ঔজà§à¦œà§à¦¬à¦²à§à¦¯ : %1 (by extinction)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "উতà§à¦•à§à¦·à§‡à¦ªà¦œà¦¾à¦¤ বিষম ঔজà§à¦œà§à¦¬à¦²à§à¦¯à§‡à¦° নকà§à¦·à¦¤à§à¦°" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "সà§à¦ªà¦¨à§à¦¦à¦¨à¦œà¦¾à¦¤ বিষম ঔজà§à¦œà§à¦¬à¦²à§à¦¯à§‡à¦° নকà§à¦·à¦¤à§à¦°" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "আবরà§à¦¤à¦¨à¦œà¦¨à¦¿à¦¤ বিষম ঔজà§à¦œà§à¦¬à¦²à§à¦¯à§‡à¦° নকà§à¦·à¦¤à§à¦°" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "বিসà§à¦«à§‹à¦°à¦£ যোগà§à¦¯ বিষম ঔজà§à¦œà§à¦¬à¦²à§à¦¯à§‡à¦° নকà§à¦·à¦¤à§à¦°" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "গà§à¦°à¦¹à¦£ যোগà§à¦¯ দà§à¦¬à§ˆà¦¤ নকà§à¦·à¦¤à§à¦°" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "বিষম ঔজà§à¦œà§à¦¬à¦²à§à¦¯à§‡à¦° নকà§à¦·à¦¤à§à¦°" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "দà§à¦¬à§ˆà¦¤ নকà§à¦·à¦¤à§à¦°" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "ধরন : %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "ঔজà§à¦œà§à¦¬à¦²à§à¦¯ : %1 (extincted to: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "ঔজà§à¦œà§à¦¬à¦²à§à¦¯ : %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° সীমা : %1%2%3 (আলোকমিতি বà§à¦¯à¦¬à¦¸à§à¦¥à¦¾à¦¯à¦¼ : %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "ঔজà§à¦¬à¦²à§à¦¯à§‡à¦° পরিসীমা:%1%2%3/%4 (ফটোমেটà§à¦°à¦¿à¦• সিসà§à¦Ÿà§‡à¦®: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "বরà§à¦£à¦¾à¦²à§€à¦° পà§à¦°à¦•à§ƒà¦¤à¦¿ : %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "দূরতà§à¦¬ : %1 আলোকবরà§à¦·" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "লমà§à¦¬à¦£ : %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "সরà§à¦¬à¦¨à¦¿à¦®à§à¦¨ ঔজà§à¦œà§à¦¬à¦²à§à¦¯à§‡à¦° দশা : %1 জà§à¦²à¦¿à¦¯à¦¼à¦¾à¦¨ দিন" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "সরà§à¦¬à§‹à¦šà§à¦š ঔজà§à¦œà§à¦¬à¦²à§à¦¯à§‡à¦° দশা : %1 জà§à¦²à¦¿à¦¯à¦¼à¦¾à¦¨ দিন" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "পরà§à¦¯à¦¾à¦¯à¦¼à¦•à¦¾à¦² : %1 দিন" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "পরবরà§à¦¤à§€ সরà§à¦¬à¦¨à¦¿à¦®à§à¦¨ ঔজà§à¦œà§à¦¬à¦²à§à¦¯ : %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "পরবরà§à¦¤à§€ সরà§à¦¬à§‹à¦šà§à¦š ঔজà§à¦œà§à¦¬à¦²à§à¦¯ : %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "গà§à¦°à¦¹à¦£à§‡à¦° সময়কাল : %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "উদয় : %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "মহাকাশ যান" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "সংশোধন নিসà§à¦•à§à¦°à¦¿à¦¯à¦¼ করা আছে । সমà§à¦¯à¦• ধারণা থাকলে তবেই সকà§à¦°à¦¿à¦¯à¦¼ করà§à¦¨ ।" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -271,7 +346,7 @@ "পà§à¦°à¦¬à¦¨à§à¦§ Einstein's Theory of Relativity Confirmed by Ancient Solar " "Eclipses (%1) বà§à¦¯à¦¬à¦¹à¦¾à¦° করেছেন । বিসà§à¦¤à¦¾à¦°à¦¿à¦¤ তথà§à¦¯ %2à¦à¦–ানে%3 দেখà§à¦¨ ।" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -280,7 +355,7 @@ "à¦à¦‡ বিখà§à¦¯à¦¾à¦¤ সূতà§à¦°à¦Ÿà¦¿ G. M. Clemence তাà¦à¦° পà§à¦°à¦¬à¦¨à§à¦§ On the system of " "astronomical constants (%1) ঠপà§à¦°à¦•à¦¾à¦¶ করেন ।" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -292,7 +367,7 @@ "পরবরà§à¦¤à§€ পরà§à¦¯à¦¬à§‡à¦•à§à¦·à¦£à§‡à¦° উপর ভিতà§à¦¤à¦¿ করে তৈরী à¦à¦¬à¦‚ Jean Meeus তাà¦à¦° পà§à¦°à¦¬à¦¨à§à¦§ " "Astronomical Formulae for Calculators ঠà¦à¦Ÿà¦¿ বà§à¦¯à¦¬à¦¹à¦¾à¦° করেছেন ।" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -302,7 +377,7 @@ "দà§à¦¬à¦¾à¦°à¦¾ জà§à¦¯à§‹à¦¤à¦¿à¦°à§à¦¬à§ˆà¦œà§à¦žà¦¾à¦¨à¦¿à¦• পঞà§à¦œà¦¿à¦•à¦¾ ও Canon of Solar Eclipses " "ঠগৃহীত হয়েছে ।" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -314,7 +389,7 @@ "ছকে দেওয়া আছে । à¦à¦‡ à¦à¦•à¦‡ সমà§à¦ªà¦°à§à¦• Goldstine (১৯৭৩) সৃষà§à¦Ÿ syzygy ছকেও গৃহিত " "হয়েছে ।" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -325,7 +400,7 @@ "moon from early astronomical observations (%1) নামক পà§à¦°à¦¬à¦¨à§à¦§à§‡ à¦à¦‡ " "সমীকরনটি পà§à¦°à¦•à¦¾à¦¶ করেন ।" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -334,7 +409,7 @@ "P. M. Muller à¦à¦¬à¦‚ F. R. Stephenson Pre-Telescopic Astronomical " "Observations (%1) নামক পà§à¦°à¦¬à¦¨à§à¦§à§‡ à¦à¦‡ সমীকরনটি পà§à¦°à¦•à¦¾à¦¶ করেন ।" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -347,7 +422,7 @@ "correction delta T E.T.-U.T. in the period 1800-1975 (%1) নামক পà§à¦°à¦¬à¦¨à§à¦§à§‡ " "পà§à¦°à¦•à¦¾à¦¶ করেন à¦à¦¬à¦‚ Brouwer (১৯৫২) করà§à¦¤à§ƒà¦• যথোপযà§à¦•à§à¦¤ à¦à¦•à¦Ÿà¦¿ তালিকা পà§à¦°à¦•à¦¾à¦¶à¦¿à¦¤ হয় ।" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -357,7 +432,7 @@ "Tables from -4000 to +2800 (১৯৮৬) ও RedShift নামক কমà§à¦ªà¦¿à¦‰à¦Ÿà¦¾à¦° পà§à¦°à§‹à¦—à§à¦°à¦¾à¦®à§‡ " "গৃহিত হয়েছে ।" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -368,12 +443,12 @@ "rotation of the earth - 700 B.C. to A.D. 1980 (%1) নামক পà§à¦°à¦¬à¦¨à§à¦§à§‡ à¦à¦‡ " "সূতà§à¦°à¦Ÿà¦¿ পà§à¦°à¦•à¦¾à¦¶ করেন ।" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" "গà§à¦°à¦¹à¦®à¦£à§à¦¡à¦²à§€à¦° নকশা পà§à¦°à§‹à¦—à§à¦°à¦¾à¦®à§‡à¦° সাহাযà§à¦¯ ৭ ঠà¦à¦‡ কারà§à¦¯à¦ªà§à¦°à¦¨à¦¾à¦²à§€à¦Ÿà¦¿ বà§à¦¯à¦¬à¦¹à§ƒà¦¤ হয়েছে ।" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -383,7 +458,7 @@ "Year Canon of Lunar Eclipses: 1986-2035 (১৯৮৯) য় F. Espenak à¦à¦‡ " "কারà§à¦¯à¦ªà§à¦°à¦¨à¦¾à¦²à§€à¦Ÿà¦¿à¦° উদà§à¦­à¦¾à¦¬à¦¨ করে যান ।" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -392,7 +467,7 @@ "à¦à¦‡ সূতà§à¦°à¦Ÿà¦¿ K.M. Borkowski (%1) ২১৩৭ খà§à¦°à§€à¦·à§à¦Ÿà¦ªà§‚রà§à¦¬à¦¾à¦¬à§à¦¦ থেকে ১৭১৫ খà§à¦°à§€à¦·à§à¦Ÿà¦¾à¦¬à§à¦¦ " "পরà§à¦¯à¦¨à§à¦¤ ঘটা সূরà§à¦¯à¦—à§à¦°à¦¹à¦£à¦—à§à¦²à¦¿à¦° মধà§à¦¯à§‡à¦° ৩১টির সংগৃহিত তথà§à¦¯ থেকে তৈরী করেছেন ।" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -405,7 +480,7 @@ "পà§à¦°à¦¬à¦¨à§à¦§à§‡ পà§à¦°à¦•à¦¾à¦¶ করেন à¦à¦¬à¦‚ Stephenson à¦à¦¬à¦‚ Morrison (১৯৮৪) করà§à¦¤à§ƒà¦• যথোপযà§à¦•à§à¦¤ " "à¦à¦•à¦Ÿà¦¿ তালিকা পà§à¦°à¦•à¦¾à¦¶à¦¿à¦¤ হয় ।" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -415,7 +490,7 @@ "Programs from 4000 B.C. to A.D. 8000 (১৯৯১) à¦à¦° চনà§à¦¦à§à¦° সংকà§à¦°à¦¾à¦¨à§à¦¤ ELP " "2000-85 উপপাদà§à¦¯à§‡à¦° কà§à¦·à§à¦¦à§à¦° সংসà§à¦•à¦°à¦£à§‡ গৃহিত হয়েছে ।" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -426,7 +501,7 @@ "the Earth's Rotation: 700 BC to AD 1990 (%1) নামক পà§à¦°à¦¬à¦¨à§à¦§à§‡ à¦à¦‡ সূতà§à¦°à¦Ÿà¦¿ " "পà§à¦°à¦•à¦¾à¦¶ করেন ।" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -435,7 +510,7 @@ "F. R. Stephenson তাà¦à¦° বই Historical Eclipses and Earth's Rotation " "(%1) য় à¦à¦‡ সূতà§à¦°à¦Ÿà¦¿ পà§à¦°à¦•à¦¾à¦¶ করেন ।" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -446,7 +521,7 @@ "Chapront, Chapront-Touze à¦à¦¬à¦‚ Francou (১৯৯৭) à¦à¦° অপেকà§à¦·à¦• অনà§à¦¤à¦°à§à¦­à§‚কà§à¦¤ করা হয়ে " "থাকে ।" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -455,7 +530,7 @@ "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "তার ওয়েবসাইট %1JPL Horizons%2 ঠà¦à¦‡ সূতà§à¦° বà§à¦¯à¦¬à¦¹à¦¾à¦° করে ।" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -464,7 +539,7 @@ "à¦à¦‡ বহà§à¦ªà¦¦à§€ সমীকরনটি J. Meeus à¦à¦¬à¦‚ L. Simons তাà¦à¦¦à§‡à¦° পà§à¦°à¦¬à¦¨à§à¦§ Polynomial " "approximations to Delta T, 1620-2000 AD (%1) ঠপà§à¦°à¦•à¦¾à¦¶ করেন ।" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -474,7 +549,7 @@ "Computer (২০০০) à¦à¦° ৪রà§à¦¥ সংসà§à¦•à¦°à¦£ নিকট অতীত সংকà§à¦°à¦¾à¦¨à§à¦¤ তথà§à¦¯à§‹à¦ªà¦¯à§‹à¦—ী ৩য় ঘাতের " "বহà§à¦ªà¦¦à§€ সমীকরনটি পà§à¦°à¦¦à¦¾à¦¨ করেন ।" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -486,7 +561,7 @@ "Tabulations (২০০২) ঠপà§à¦°à¦•à¦¾à¦¶ করেন । যদিও à¦à¦Ÿà¦¿à¦° ভিতà§à¦¤à¦¿ Jean Meeus à¦à¦° " "Astronomical Algorithms (১৯৯১) ।" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -497,7 +572,7 @@ "the Earth's clock error %1T and the calculation of eclipses (%2) ঠà¦à¦‡ " "গà§à¦°à§à¦¤à§à¦¬à¦ªà§‚রà§à¦£ সমাধানটি পà§à¦°à¦•à¦¾à¦¶ করেন (%3) ঠà¦à¦•à¦Ÿà¦¿ সংযোজন সমেত ।" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -510,7 +585,7 @@ "করেন । à¦à¦Ÿà¦¿ Stephenson (%2) বিবৃত à¦à¦•à¦Ÿà¦¿ সমà§à¦­à¦¾à¦¬à§à¦¯ পরà§à¦¯à¦¾à§Ÿà¦¬à§ƒà¦¤à§à¦¤à¦¿à¦° উপর ভিতà§à¦¤à¦¿ করে " "নিরà§à¦®à¦¿à¦¤ । আরও তথà§à¦¯à§‡à¦° জনà§à¦¯ %3à¦à¦–ানে%4 দেখà§à¦¨ ।" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -525,11 +600,30 @@ "পà§à¦°à¦¾à¦ªà§à¦¤ মানের ছকের সাহাযà§à¦¯à§‡ নিরà§à¦£à¦¿à¦¤ । à¦à¦›à¦¾à§œà¦¾à¦“ à¦à¦Ÿà¦¿ SOLEX নামক সৌরজগত à¦à¦¬à¦‚ তার " "গà§à¦°à¦¹ উপগà§à¦°à¦¹à§‡à¦° পঞà§à¦œà¦¿à¦•à¦¾ নিরà§à¦£à§Ÿà§‡à¦° পà§à¦°à§‹à¦—à§à¦°à¦¾à¦®à§‡ বà§à¦¯à¦¬à¦¹à¦¾à¦° করা হয়েছে ।" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• সূচনা হিসেবে বà§à¦¯à¦¬à¦¹à¦¾à¦° করে ।" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Stephenson à¦à¦¬à¦‚ Morrison (১৯৮৪) à¦à¦° উপর ভিতà§à¦¤à¦¿ করে B. Banjevic à¦à¦° à¦à¦‡ সমাধানটি " +"Ancient eclipses and dating the fall of Babylon (%1) পà§à¦°à¦¬à¦¨à§à¦§à§‡ " +"পà§à¦°à¦•à¦¾à¦¶à¦¿à¦¤ হয় ।" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -537,15 +631,15 @@ msgstr "" "à¦à¦Ÿà¦¿ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦•à¦¾à¦°à§€ দà§à¦¬à¦¾à¦°à¦¾ পà§à¦°à¦¦à¦¤à§à¦¤ সহগ যà§à¦•à§à¦¤ %1T নিরà§à¦£à§Ÿ করার দà§à¦¬à¦¿à¦˜à¦¾à¦¤ সমীকরন" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "তà§à¦°à§à¦Ÿà¦¿" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "à¦à¦‡ সীমার বাইরে অরà§à¦¥à¦¹à§€à¦¨ মান সমেত" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -553,20 +647,21 @@ "গড়ে সরà§à¦¬à¦¨à¦¿à¦®à§à¦¨ à¦à¦• সেকেনà§à¦¡ ও সরà§à¦¬à§‹à¦šà§à¦š ১.৯ সেকেনà§à¦¡ তà§à¦°à§à¦Ÿà¦¿ à¦à¦¬à¦‚ à¦à¦‡ সীমার বাইরে " "অরà§à¦¥à¦¹à§€à¦¨ মান সমেত" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "à¦à¦‡ সীমার বাইরে ০ মান যà§à¦•à§à¦¤" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "à¦à¦‡ সীমার বাইরে সà§à¦¬à¦¿à¦§à¦¾à¦œà¦¨à¦• ১ সেকেনà§à¦¡ নিরà§à¦­à§‚লতা à¦à¦¬à¦‚ ০ মান যà§à¦•à§à¦¤" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦¿à¦• সীমা : %1 থেকে %2, %3 বছরের মধà§à¦¯à§‡ ।" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦¿à¦• সীমা : %1 থেকে %2 বছরের মধà§à¦¯à§‡ ।" @@ -731,52 +826,53 @@ msgid "Found" msgstr "খà§à¦à¦œà§‡ পাওয়া গেছে" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "সà§à¦•à§à¦°à§€à¦¨à¦¶à¦Ÿ ডিরেকà§à¦Ÿà¦°à¦¿ নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• দৃষà§à¦Ÿà¦¿à¦¸à§€à¦®à¦¾ : %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "দিগংশ / উনà§à¦¨à¦¤à¦¿-à¦à¦° পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• দিক : %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "লেখকবৃনà§à¦¦" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "যোগাযোগ" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "লেখক" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "অনà§à¦®à§‹à¦¦à¦¨" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "চলমান সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ : " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "চলমান সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ : [কিছà§à¦‡ না]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -784,16 +880,16 @@ "নতà§à¦¨ তারকাসূচি সংগà§à¦°à¦¹ করা সমà§à¦ªà§‚রà§à¦£ হয়েছে !\n" "à¦à¦¦à§‡à¦° দেখার জনà§à¦¯ Stellarium নতà§à¦¨ করে চালৠকরà§à¦¨ ।" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "সমসà§à¦¤ উপলবà§à¦§ তারকাসূচি ইনসà§à¦Ÿà¦² করা হয়ে গেছে ।" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "%1 থেকে %2 সূচিগà§à¦²à¦¿ সংগà§à¦°à¦¹ করà§à¦¨" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -802,7 +898,7 @@ "সংগà§à¦°à¦¹ করা হচà§à¦›à§‡ %1...\n" "(à¦à¦‡ উইনà§à¦¡à§‹à¦Ÿà¦¿ বনà§à¦§ করা যেতে পারে)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -813,7 +909,7 @@ "তারকা সংখà§à¦¯à¦¾ : %2 মিলিয়ন\n" "ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° সীমা : %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -822,11 +918,11 @@ "ডাউনলোডে তà§à¦°à§à¦Ÿà¦¿ হয়েছে %1 :\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "ফাইলের অখণà§à¦¡à¦¤à¦¾ পরীকà§à¦·à¦¾ করা হচà§à¦›à§‡..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -836,115 +932,123 @@ "ফাইলটি নষà§à¦Ÿ হয়ে গেছে ।" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "à¦à¦° কারà§à¦¯à¦ªà§à¦°à¦¨à¦¾à¦²à§€" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "সংশোধন ছাড়া" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (১৯৩১)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (১৯৪৮)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (১৯৫২)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "জà§à¦¯à§‹à¦¤à¦¿à¦°à§à¦¬à§ˆà¦œà§à¦žà¦¾à¦¨à¦¿à¦• পঞà§à¦œà¦¿à¦•à¦¾ (১৯৬০)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (১৯৬২, ১৯৬৪) à¦à¦¬à¦‚ Goldstine (১৯৭৩)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller à¦à¦¬à¦‚ Stephenson (১৯৭৫)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (১৯৭৮)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel à¦à¦¬à¦‚ Zech (১৯৭৯)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison à¦à¦¬à¦‚ Stephenson (১৯৮২)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson à¦à¦¬à¦‚ Morrison (১৯৮৪)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson à¦à¦¬à¦‚ Houlden (১৯৮৬)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (১৯৮৭, ১৯৮৯)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (১৯৮৮)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel à¦à¦¬à¦‚ Zech (১৯৮৮)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze à¦à¦¬à¦‚ Chapront (১৯৯১)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson à¦à¦¬à¦‚ Morrison (১৯৯৫)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (১৯৯৭)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (১৯৯৮) (Chapront, Chapront-Touze à¦à¦¬à¦‚ Francou (১৯৯৭) সহ)" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus à¦à¦¬à¦‚ Simons (২০০০)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck à¦à¦¬à¦‚ Pfleger (২০০০)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold à¦à¦¬à¦‚ Dershowitz (২০০২, ২০০৭)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison à¦à¦¬à¦‚ Stephenson (২০০৪, ২০০৫)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak à¦à¦¬à¦‚ Meeus (২০০৬)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (২০০৬)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (২০০৬)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "ইসলাম, সাদিক à¦à¦¬à¦‚ কোরেশী (২০০৮, ২০১৩)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "%1T নিরà§à¦£à§Ÿà§‡à¦° পছনà§à¦¦à¦¸à¦‡ সমীকরন" @@ -1114,49 +1218,53 @@ msgid "OSX Developer: %1" msgstr "OSX পà§à¦°à¦¸à§à¦¤à§à¦¤à¦•à¦¾à¦°à¦• : %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ কনসোল উইনà§à¦¡à§‹ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "উইনà§à¦¡à§‹à¦¸à¦®à§‚হ নিরà§à¦¬à¦¾à¦šà¦¨à§‡à¦° সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦—à§à¦²à¦¿" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "কোন বরà§à¦£à¦¨à¦¾ নেই" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "কোন উলà§à¦•à¦¾ দেখা যাবে না" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "সà§à¦¬à¦¾à¦­à¦¾à¦¬à¦¿à¦• হার" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "পà§à¦°à¦®à¦¾à¦£ হার" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "উলà§à¦•à¦¾ à¦à¦¡à¦¼à§‡à¦° হার" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "সিংহরাশি থেকে বরà§à¦·à¦¿à¦¤ উলà§à¦•à¦¾à¦¬à§ƒà¦·à§à¦Ÿà¦¿à¦° বà§à¦¯à¦¤à¦¿à¦•à§à¦°à¦®à§€ হার" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "সরà§à¦¬à¦•à¦¾à¦²à§‡à¦° সরà§à¦¬à§‹à¦šà§à¦š হার (১৯৬৬ সিংহরাশি থেকে)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "নতà§à¦¨ অবসà§à¦¥à¦¾à¦¨" @@ -1260,19 +1368,19 @@ msgid "starchart" msgstr "নকà§à¦·à¦¤à§à¦° তালিকা" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "সিমবাড-ঠঅনà§à¦¸à¦¨à§à¦§à¦¾à¦¨à§‡ তà§à¦°à§à¦Ÿà¦¿" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "সিমবাডে অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "সà§à¦Ÿà§à¦°à¦¸à¦¬à§à¦°à§à¦— বিশà§à¦¬à¦¬à¦¿à¦¦à§à¦¯à¦¾à¦²à¦¯à¦¼ (ফà§à¦°à¦¾à¦¨à§à¦¸)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "হারà§à¦­à¦¾à¦¡ বিশà§à¦¬à¦¬à¦¿à¦¦à§à¦¯à¦¾à¦²à¦¯à¦¼ (আমেরিকা)" @@ -1288,30 +1396,38 @@ msgid "Alternative shortcut" msgstr "সহজ পনà§à¦¥à¦¾à¦Ÿà¦¿à¦° বিকলà§à¦ª" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "%1T নিরà§à¦£à§Ÿà§‡à¦° পছনà§à¦¦à¦¸à¦‡ সমীকরন" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "%1T নিরà§à¦£à§Ÿà§‡à¦° à¦à¦•à¦Ÿà¦¿ সহজ সরল সমীকরনের রূপ:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "যেখানে" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "বছর" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "à¦à¦‡ সিসà§à¦Ÿà§‡à¦® OpenGL সমরà§à¦¥à¦¨ করে না ।" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"আপনার পà§à¦²à§à¦¯à¦¾à¦Ÿà¦«à¦°à§à¦® নà§à¦¯à§‚নতম পà§à¦°à§Ÿà§‹à¦œà¦¨à§€à§Ÿ OpenGL 1.2 সমরà§à¦¥à¦¨ করে না. গà§à¦°à¦¾à¦«à¦¿à¦•à§à¦¸ " +"কারà§à¦¡à§‡à¦° জনà§à¦¯ ডà§à¦°à¦¾à¦‡à¦­à¦¾à¦° আপগà§à¦°à§‡à¦¡ করà§à¦¨." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "সূরà§à¦¯" @@ -1328,12 +1444,12 @@ msgstr "পৃথিবী" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "চনà§à¦¦à§à¦°" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "মঙà§à¦—ল" @@ -1431,7 +1547,7 @@ msgstr "মেতিস (Metis)" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "শনি" @@ -1729,204 +1845,233 @@ msgstr "ইনà§à¦‡à¦Ÿà¦¿à§Ÿ" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "বৈদিক ভারতীয়" + +#: src/translations.h:171 msgid "Korean" msgstr "কোরীয়ান" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "লাকোটিয়ান" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "মাওরী" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "নাভাজো" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "নর দেশীয়" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "পলিনেশীয়" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "সামী" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "তাপী-গà§à§Ÿà¦¾à¦°à¦¾à¦¨à§€" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "টোংগা" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "পশà§à¦šà¦¿à¦®à§€" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "গà§à§Ÿà§‡à¦°à§‡à¦‡à¦¨" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "জঙà§à¦—ল" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "হà§à¦¯à¦°à¦¿à¦•à§‡à¦¨" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "সমà§à¦¦à§à¦°" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "গারচিং" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "ভূমিরূপ পরিভà§à¦°à¦®à¦£" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "খনà§à¦¡à¦—à§à¦°à¦¾à¦¸ চনà§à¦¦à§à¦°à¦—à§à¦°à¦¹à¦£" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "পূরà§à¦£à¦—à§à¦°à¦¾à¦¸ চনà§à¦¦à§à¦°à¦—à§à¦°à¦¹à¦£" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "সà§à¦•à§à¦°à§€à¦¨à¦¸à§‡à¦­à¦¾à¦° (Screensaver)" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "২০০৯ à¦à¦° সূরà§à¦¯à¦—à§à¦°à¦¹à¦£" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "রাশিচকà§à¦°" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "বà§à¦§à§‡à¦° à¦à¦• দিনে তিনটি সূরà§à¦¯à§‹à¦¦à§Ÿ ঔ সূরà§à¦¯à¦¾à¦¸à§à¦¤" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "ডিমোস থেকে ২০১৭ à¦à¦° দà§à¦¬à§ˆà¦¤ গà§à¦°à¦¹à¦¨" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "ডিমোস থেকে ২০৩১ à¦à¦° দà§à¦¬à§ˆà¦¤ গà§à¦°à¦¹à¦¨" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "মঙà§à¦—লের অলিমà§à¦ªà¦¾à¦¸ পরà§à¦¬à¦¤ থেকে ১০ই জানà§à§Ÿà¦¾à¦°à¦¿, ২০৬৮ à¦à¦° ফোবসের সূরà§à¦¯à¦—à§à¦°à¦¹à¦¨" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "২০৪৮ সাল : পৃথিবী ও বৃহসà§à¦ªà¦¤à¦¿à¦° সমাপতন" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "ডিমোস থেকে ২০২৭ à¦à¦° ২টি গà§à¦°à¦¹à¦¨ ও ৩টি সরণ" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "সৌরজগত সà§à¦•à§à¦°à¦¿à¦¨à¦¸à§‡à¦­à¦¾à¦°" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "তারামণà§à¦¡à¦² গà§à¦²à¦¿ ঘà§à¦°à§‡ ঘà§à¦°à§‡ পরà§à¦¯à¦¬à§‡à¦•à§à¦·à¦£" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "অনà§à¦¯à¦¾à¦¨à§à¦¯ গà§à¦°à¦¹à¦—à§à¦²à¦¿ থেকে সূরà§à¦¯ দরà§à¦¶à¦¨" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "অনà§à¦¯à¦¾à¦¨à§à¦¯ গà§à¦°à¦¹ উপগà§à¦°à¦¹ ও গà§à¦°à¦¹à¦¾à¦¨à§ থেকে পৃথিবীর সেরা দৃশà§à¦¯" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "শà§à¦•à§à¦°à§‡à¦° সরণ" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "সূরà§à¦¯à¦¾à§Ÿà¦£" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "মহাকাশ সমà§à¦ªà¦°à§à¦•à¦¿à¦¤ নানা সংসà§à¦•à§ƒà¦¤à¦¿à¦—à§à¦²à¦¿ ঘà§à¦°à§‡ ঘà§à¦°à§‡ দেখা" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "বà§à¦§ থেকে পৃথিবীর ঘটনাবলী" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "শà§à¦•à§à¦° থেকে পৃথিবীর ঘটনাবলী" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "মঙà§à¦—ল থেকে পৃথিবীর ঘটনাবলী" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "সবকটি ভূমিরূপ ঘà§à¦°à§‡ দেখà§à¦¨ ।" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "সমসà§à¦¤ মহাকাশ সমà§à¦ªà¦°à§à¦•à¦¿à¦¤ সংসà§à¦•à§ƒà¦¤à¦¿à¦—à§à¦²à¦¿ ঘà§à¦°à§‡ দেখà§à¦¨ ।" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "খনà§à¦¡à¦—à§à¦°à¦¾à¦¸ চনà§à¦¦à§à¦°à¦—à§à¦°à¦¹à¦£ দেখানোর সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ ।" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "পূরà§à¦£à¦—à§à¦°à¦¾à¦¸ চনà§à¦¦à§à¦°à¦—à§à¦°à¦¹à¦£ দেখানোর সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ ।" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "à¦à¦•à¦Ÿà¦¿ অলস, অসীম মহাকাশ ভà§à¦°à¦®à¦£ ।" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" "২০০৯ à¦à¦° পূরà§à¦£à¦—à§à¦°à¦¾à¦¸ সূরà§à¦¯à¦—à§à¦°à¦¹à¦£ দেখানোর সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ । (বাংলাদেশের রংপà§à¦° থেকে)" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à§‡ সà§à¦¬à¦¯à¦¼à¦‚কà§à¦°à¦¿à¦¯à¦¼à¦°à§‚পে সঞà§à¦šà¦¾à¦²à¦¿à¦¤ সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1935,7 +2080,7 @@ "à¦à¦‡ সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿà¦Ÿà¦¾ রাশিচকà§à¦°à¦—à§à¦²à¦¿ দেখায় মানে সেই সমসà§à¦¤ নকà§à¦·à¦¤à§à¦°à¦®à¦¨à§à¦¡à¦²à¦—à§à¦²à¦¿ যারা " "বাতà§à¦¸à¦°à¦¿à¦• সৌরপথে পড়ে ।" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1943,7 +2088,7 @@ "ককà§à¦·à¦ªà¦¥ à¦à¦¬à¦‚ আবরà§à¦¤à¦¨à§‡ অদà§à¦­à§‚ত বিশিষà§à¦Ÿà¦¤à¦¾à¦° জনà§à¦¯ বà§à¦§à§‡ মাà¦à§‡ মাà¦à§‡ à¦à¦• দিনে তিনবার " "সূরà§à¦¯à§‹à¦¦à§Ÿ ও সূরà§à¦¯à¦¾à¦¸à§à¦¤ হয় ।" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1951,7 +2096,7 @@ "২৬ শে à¦à¦ªà§à¦°à¦¿à¦², ২০১৭ সাল : বৃশà§à¦šà¦¿à¦• ও ধনৠমনà§à¦¡à¦²à§‡à¦° মাà¦à§‡ মঙà§à¦—লের সূরà§à¦¯à¦•à§‡ গà§à¦°à¦¾à¦¸ " "করার আগেই তার পিছন থেকে ফোবস à¦à¦¸à§‡ সূরà§à¦¯à¦•à§‡ পà§à¦°à¦¥à¦®à§‡ গà§à¦°à¦¾à¦¸ করে ফেলে ।" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1959,13 +2104,13 @@ "২৩ শে à¦à¦ªà§à¦°à¦¿à¦², ২০৩১ সাল : বৃশà§à¦šà¦¿à¦• ও ধনৠমনà§à¦¡à¦²à§‡à¦° মাà¦à§‡ মঙà§à¦—লের সূরà§à¦¯à¦•à§‡ গà§à¦°à¦¾à¦¸ " "করার আগেই তার পিছন থেকে ফোবস à¦à¦¸à§‡ সূরà§à¦¯à¦•à§‡ পà§à¦°à¦¥à¦®à§‡ গà§à¦°à¦¾à¦¸ করে ফেলে ।" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "১০ই জানà§à§Ÿà¦¾à¦°à¦¿, ২০৬৮ সালে মঙà§à¦—লের অলিমà§à¦ªà¦¾à¦¸ পরà§à¦¬à¦¤ থেকে ফোবসের সূরà§à¦¯à¦—à§à¦°à¦¹à¦¨ দেখা " "য়ায ।" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1974,7 +2119,7 @@ "ফোবোস-পৃথিবী সমাপতন ও ফোবোস-বৃহসà§à¦ªà¦¤à¦¿ সমাপতন খà§à¦¬à¦‡ সাধারণ বà§à¦¯à¦¾à¦ªà¦¾à¦° । তবে à¦à¦•à¦¸à¦¾à¦¥à§‡ " "à¦à¦•à¦‡ দিনে দà§à¦Ÿà§‹ ঘটা খà§à¦¬à¦‡ দà§à¦°à§à¦²à¦­, যার à¦à¦•à¦Ÿà¦¾ ২৩/০১/২০৪৮ তে হবে ।" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1988,37 +2133,37 @@ "সূরà§à¦¯à§‡à¦° পূরà§à¦£ গà§à¦°à¦¹à¦£ ঘটায় ও ফোবোস মঙà§à¦—লের ছায়ায় ঢাকা পড়ে যায় । ফোবসের " "নিষà§à¦•à§à¦°à¦®à¦£à§‡à¦° পরও তা মঙà§à¦—লের ছায়ায় আরও কিছৠসময় অনà§à¦œà§à¦œà§à¦¬à¦² হয়ে থাকে ।" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" -msgstr "সৌরজগতে ঘটমান ১৭১টি বিশিষà§à¦Ÿ ঘটনা নিয়ে সà§à¦•à§à¦°à¦¿à¦¨à¦¸à§‡à¦­à¦¾à¦° ।" +"Screensaver of various happenings in the Solar System. 187 events in all!" +msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "পশà§à¦šà¦¿à¦®à§€ সংসà§à¦•à§ƒà¦¤à¦¿à¦° তারামনà§à¦¡à¦²à¦—à§à¦²à¦¿à¦° à¦à¦•à¦Ÿà¦¿ ভà§à¦°à¦®à¦£ মাতà§à¦° ।" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "সৌরজগতের বড় গà§à¦°à¦¹à¦—à§à¦²à¦¿ ও পà§à¦²à§à¦Ÿà§‹ থেকে সূরà§à¦¯ দরà§à¦¶à¦£ ।" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "সৌরজগতের অনà§à¦¯à¦¾à¦¨à§à¦¯ বসà§à¦¤à§à¦—à§à¦²à¦¿ থেকে à¦à¦•à¦¬à¦¿à¦‚শ শতাবà§à¦¦à§€à¦° দৃশà§à¦¯à¦®à¦¾à¦¨ পৃথিবীর শà§à¦°à§‡à¦·à§à¦  " "দৃশà§à¦¯à¦—à§à¦²à¦¿ ।" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "৬ই জà§à¦¨, ২০১২ সালে অসà§à¦Ÿà§à¦°à§‡à¦²à¦¿à§Ÿà¦¾à¦° সিডনি থেকে দৃশà§à¦¯ সà§à¦•à§à¦°à§‡à¦° সরণ ।" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "à¦à¦‡ সà§à¦•à§à¦°à¦¿à¦ªà¦Ÿà¦¿ সূরà§à¦¯à¦¾à§Ÿà¦£ দেখায় - বছর জà§à§œà§‡ সূরà§à¦¯à§‡à¦° পরিকà§à¦°à¦®à¦£ পথ ।" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2026,1468 +2171,1504 @@ "১৫৭২ সালে টাইকো বà§à¦°à¦¾à¦¹à§‡à¦° দেখা অতিনোভা বিসà§à¦«à§‹à¦°à¦£à¦Ÿà¦¿ দেখায় । তবে অতিনোভা " "পà§à¦²à¦¾à¦—ইনটি সকà§à¦°à¦¿à§Ÿ থাকতে হবে ।" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "অà§à¦¯à¦¾à¦¨à§à¦¡à§‹à¦°à¦¾ (Andorra)" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "সংযà§à¦•à§à¦¤ আরব আমিরশাহী" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "আফগানিসà§à¦¤à¦¾à¦¨" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "অà§à¦¯à¦¾à¦¨à§à¦Ÿà¦¿à¦—à§à§Ÿà¦¾ à¦à¦¬à¦‚ বারà§à¦¬à§à¦¡à¦¾" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "অà§à¦¯à¦¾à¦™à§à¦—িলা" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "আলবেনিয়া" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "আরà§à¦®à§‡à¦¨à¦¿à§Ÿà¦¾" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "নেদারলà§à¦¯à¦¾à¦¨à§à¦¡à¦¸ অà§à¦¯à¦¾à¦¨à§à¦Ÿà§‡à¦²à¦¿à¦¸" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "অà§à¦¯à¦¾à¦™à§à¦—োলা" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "আনà§à¦Ÿà¦¾à¦°à§à¦Ÿà¦¿à¦•à¦¾" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "আরà§à¦œà§‡à¦¨à§à¦Ÿà¦¿à¦¨à¦¾" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "আমেরিকান সামোয়া" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "অসà§à¦Ÿà§à¦°à¦¿à§Ÿà¦¾" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "অসà§à¦Ÿà§à¦°à§‡à¦²à¦¿à§Ÿà¦¾" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "আরà§à¦¬à¦¾" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "আজারবাইজান" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "বসনিয়া à¦à¦¬à¦‚ হà§à¦¯à¦¾à¦¤à¦œà¦¾à¦—োভীণা" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "বারà§à¦¬à¦¾à¦¡à§‹à¦¸" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "বাংলাদেশ" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "বেলজিয়াম" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "বারকিনা ফাসো" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "বà§à¦²à¦—েরিয়া" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "বাহরীন" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "বà§à¦°à§à¦¨à§à¦¡à¦¿" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "বেনিন" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "বারà§à¦®à§à¦¡à¦¾" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "বà§à¦°à§à¦¨à§‡à¦‡ দারà§à¦¸à§â€Œà¦¸à¦¾à¦²à¦¾à¦®" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "বলিভিয়া" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "বà§à¦°à¦¾à¦œà¦¿à¦²" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "বাহামা দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "ভà§à¦Ÿà¦¾à¦¨" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "বà§à¦­à§‡à¦Ÿ দà§à¦¬à§€à¦ª" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "বটসোয়ানা" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "বেলারà§à¦¸" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "বেলিজ" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "কানাডা" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "কোকো দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "কঙà§à¦—োর গনতনà§à¦¤à§à¦°à§€ পà§à¦°à¦œà¦¾à¦¤à¦¨à§à¦¤à§à¦°" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "কেনà§à¦¦à§à¦°à§€à§Ÿ আফà§à¦°à¦¿à¦•à¦¾à¦¨ পà§à¦°à¦œà¦¾à¦¤à¦¨à§à¦¤à§à¦°" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "কঙà§à¦—ো পà§à¦°à¦œà¦¾à¦¤à¦¨à§à¦¤à§à¦°" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "সà§à¦‡à¦œà¦¾à¦°à¦²à§à¦¯à¦¾à¦£à§à¦¡" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "আইভরি কোসà§à¦Ÿ" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "কà§à¦• দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "চিলি" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "কà§à¦¯à¦¾à¦®à§‡à¦°à§à¦¨" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "চীন" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "কলোমà§à¦¬à¦¿à§Ÿà¦¾" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "কোসà§à¦Ÿà¦¾ রিকা" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "সারà§à¦¬à¦¿à§Ÿà¦¾ à¦à¦¬à¦‚ মনà§à¦Ÿà¦¿à¦¨à¦¿à¦—à§à¦°à§‹" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "কিউবা" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "কেপ ভারà§à¦¦à§‡" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "কà§à¦°à¦¿à¦¸à§à¦Ÿà¦®à¦¾à¦¸ দà§à¦¬à§€à¦ª" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "সাইপà§à¦°à¦¾à¦¸" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "চেক পà§à¦°à¦œà¦¾à¦¤à¦¨à§à¦¤à§à¦°" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "জারà§à¦®à¦¾à¦¨à§€" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "জিবà§à¦¤à¦¿" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "ডেনমারà§à¦•" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "ডোমিনিকা" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "ডমিনিকান পà§à¦°à¦œà¦¾à¦¤à¦¨à§à¦¤à§à¦°" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "আলজেরিয়া" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "ইকà§à§Ÿà§‡à¦¡à§‹à¦°" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "à¦à¦¸à§à¦¤à§‹à¦¨à¦¿à§Ÿà¦¾" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "মিশর" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "পশà§à¦šà¦¿à¦® সাহারা" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "ইরিটà§à¦°à¦¿à§Ÿà¦¾" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "সà§à¦ªà§‡à¦¨" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "ইথিওপিয়া" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ফিনলà§à¦¯à¦¾à¦¨à§à¦¡" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "ফিজি" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ফকলà§à¦¯à¦¾à¦¨à§à¦¡ দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "মাইকà§à¦°à§‹à¦¨à§‡à¦¶à¦¿à§Ÿà¦¾" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "ফà§à¦¯à¦¾à¦°à§‹ দà§à¦¬à§€à¦ªà¦ªà§‚ঞà§à¦œ" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "ফà§à¦°à¦¾à¦¨à§à¦¸" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "গà§à¦¯à¦¾à¦¬à¦¨" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "যà§à¦•à§à¦¤à¦°à¦¾à¦œà§à¦¯" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "গà§à¦°à§‡à¦¨à¦¾à¦¡à¦¾" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "জরà§à¦œà¦¿à§Ÿà¦¾" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "ফেঞà§à¦š গায়ানা" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "ঘানা" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "জিবà§à¦°à¦¾à¦²à§à¦Ÿà¦¾à¦°" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "গà§à¦°à§€à¦¨à¦²à§à¦¯à¦¾à¦¨à§à¦¡" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "জামবিয়া" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "গিনি" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "গà§à§Ÿà¦¾à¦¡à§à¦²à§à¦ª" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "ইকà§à§Ÿà§‡à¦Ÿà¦°à¦¿à§Ÿà¦¾à¦² গিনি" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "গà§à¦°à§€à¦¸" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "দকà§à¦·à¦¿à¦£ জরà§à¦œà¦¿à§Ÿà¦¾ à¦à¦¬à¦‚ দকà§à¦·à¦¿à¦£ সà§à¦¯à¦¾à¦¨à§à¦¡à¦‰à¦‡à¦š দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "গà§à§Ÿà¦¾à¦Ÿà§‡à¦®à¦¾à¦²à¦¾" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "গà§à§Ÿà¦¾à¦®" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "গিনি-বিসাউ" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "গায়ানা" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "হং কং" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "হারà§à¦¡ দà§à¦¬à§€à¦ª ও মà§à¦¯à¦¾à¦•à¦¡à§‹à¦¨à¦¾à¦²à§à¦¡ দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "হণà§à¦¡à§à¦°à¦¾à¦¸" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "কà§à¦°à§‹à§Ÿà§‡à¦¶à¦¿à§Ÿà¦¾" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "হাইতি" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "হাঙà§à¦—েরী" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "ইনà§à¦¦à§‹à¦¨à§‡à¦¶à¦¿à§Ÿà¦¾" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "আয়ারলà§à¦¯à¦¾à¦¨à§à¦¡" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "ইজরায়েল" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ভারত" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "বà§à¦°à¦¿à¦Ÿà¦¿à¦¶ ভারত মহাসাগরীয় ভূখনà§à¦¡" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "ইরাক" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "ইরান" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "আইসলà§à¦¯à¦¾à¦¨à§à¦¡" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ইটালি" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "জামাইকা" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "জরà§à¦¡à¦¨" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "জাপান" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "কেনিয়া" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "কিরà§à¦—িজসà§à¦¤à¦¾à¦¨" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "কমà§à¦¬à§‹à¦¡à¦¿à§Ÿà¦¾" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "কিরিবাটি" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "কমোরোস" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "সেইনà§à¦Ÿ কিটস à¦à¦¨à§à¦¡ নেভিস" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "জনগণতানà§à¦¤à§à¦°à¦¿à¦• কোরিয়া পà§à¦°à¦œà¦¾à¦¤à¦¨à§à¦¤à§à¦°" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "কোরিয়া পà§à¦°à¦œà¦¾à¦¤à¦¨à§à¦¤à§à¦°" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "কà§à§Ÿà§‡à¦¤" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "কেমà§à¦¯à¦¾à¦¨ দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "কাজাখসà§à¦¤à¦¾à¦¨" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "লাও" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "লেবানন" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "সেনà§à¦Ÿ লà§à¦¸à¦¿à§Ÿà¦¾" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "লিখটেনসà§à¦Ÿà¦¾à¦‡à¦¨" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "শà§à¦°à§€ লঙà§à¦•à¦¾" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "লাইবিরিয়া" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "লেসোথো" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "লিথà§à§Ÿà§‡à¦¨à¦¿à§Ÿà¦¾" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "লà§à¦•à§à¦¸à§‡à¦®à¦¬à¦°à§à¦—" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "লাতভিয়া" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "লিবিয়ান আরব জামাহিরিয়া" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "মরকà§à¦•à§‹" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "মোনাকো" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "মলডোভা" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "মাদাগাসà§à¦•à¦¾à¦°" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "মারà§à¦¶à¦¾à¦² দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "মà§à¦¯à¦¾à¦¸à¦¿à¦¡à§‹à¦¨à¦¿à§Ÿà¦¾" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "মালি" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "মায়ানমার" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "মোঙà§à¦—োলিয়া" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "মà§à¦¯à¦¾à¦•à¦¾à¦“" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "উতà§à¦¤à¦° মারিয়ানা দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "মারà§à¦Ÿà¦¿à¦¨à¦¿à¦•à§" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "মরিটানিয়া" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "মনà§à¦Ÿà¦¸à§‡à¦°à¦¾à¦Ÿ" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "মালà§à¦Ÿà¦¾" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "মরিশাস" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "মালদà§à¦¬à§€à¦ª" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "মালায়ি" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "মেকà§à¦¸à¦¿à¦•à§‹" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "মালয়েশিয়া" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "মোজামà§à¦¬à¦¿à¦•" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "নামিবিয়া" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "নিউ কà§à¦¯à¦¾à¦²à¦¿à¦¡à§‹à¦¨à¦¿à§Ÿà¦¾" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "নিজের" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "নরফোক দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "নাইজেরিয়া" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "নিকারাগà§à§Ÿà¦¾" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "নেদারলà§à¦¯à¦¾à¦¨à§à¦¡à¦¸" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "নরওয়ে" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "নেপাল" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "নাউরà§" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "নিউয়ে" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "নিউ জিলà§à¦¯à¦¾à¦£à§à¦¡" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "ওমান" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "পানামা" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "পেরà§" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "ফেঞà§à¦š পলিনেশিয়া" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "পাপà§à§Ÿà¦¾ নিউ গিনি" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "ফিলিপিনস" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "পাকিসà§à¦¤à¦¾à¦¨" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "পোলà§à¦¯à¦¾à¦¨à§à¦¡" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "সেনà§à¦Ÿ পিয়ের à¦à¦¬à¦‚ মিকেলন" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "পিটকà§à¦¯à¦¾à¦‡à¦°à§à¦¨" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "পোরà§à¦Ÿà§‹ রিকো" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "পà§à¦¯à¦¾à¦²à¦¿à¦¸à§à¦¤à§‡à¦¨à¦¿à§Ÿà¦¾à¦¨ আঞà§à¦šà¦²" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "পরà§à¦¤à§à¦—াল" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "পালাউ" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "পà§à¦¯à¦¾à¦°à¦¾à¦—à§à§Ÿà§‡" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "কাতার" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "রিইউনিয়ন" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "রোমানিয়া" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "সারà§à¦¬à¦¿à§Ÿà¦¾" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "রà§à¦¶ ফেডারেশন" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "রোয়ানà§à¦¡à¦¾" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "সৌদি আরব" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "সলোমন দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "সেশিলস" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "সà§à¦¦à¦¾à¦¨" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "সà§à¦‡à¦¡à§‡à¦¨" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "সিঙà§à¦—াপà§à¦°" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "সেনà§à¦Ÿ হেলেনা" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "সà§à¦²à§‹à¦­à§‡à¦¨à¦¿à§Ÿà¦¾" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "সà§à¦­à§à¦¯à¦¾à¦²à¦¬à¦¾à¦°à§à¦¡ ও জান মেয়েন" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "সà§à¦²à§‹à¦­à¦¾à¦•à¦¿à§Ÿà¦¾" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "সিয়েরা লিওন" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "সান মারিনো" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "সেনেগল" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "সোমালিয়া" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "সà§à¦°à¦¿à¦¨à¦¾à¦®" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "সাও টোম à¦à¦¬à¦‚ পà§à¦°à¦¿à¦¨à§à¦¸à¦¿à¦ªà§‡" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "à¦à¦² সালভাডোর" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "সিরিয় আরব পà§à¦°à¦œà¦¾à¦¤à¦¨à§à¦¤à§à¦°" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "সোয়াজিলà§à¦¯à¦¾à¦¨à§à¦¡" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "টারà§à¦•à¦¸ à¦à¦¬à¦‚ কাইকোস দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "চাদ" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "ফà§à¦°à§‡à¦žà§à¦š সাউদারà§à¦¨ অঞà§à¦šà¦²" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "টোগো" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "থাইলà§à¦¯à¦¾à¦¨à§à¦¡" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "তাজাকিসà§à¦¤à¦¾à¦¨" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "টোকালাউ" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "পূরà§à¦¬ তিমূর" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "তà§à¦°à§à¦•à¦®à§‡à¦¨à¦¿à¦¸à§à¦¤à¦¾à¦¨" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "টিউনিসিয়া" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "টোংগা" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "তà§à¦°à¦¸à§à¦•" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "তà§à¦°à¦¿à¦¨à¦¿à¦¦à¦¾à¦¦ à¦à¦¬à¦‚ টোবাগো" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "টà§à¦­à¦¾à¦²à§" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "তাইওয়ান" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "তানজানিয়া" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "ইউকà§à¦°à§‡à¦¨" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "উগানà§à¦¡à¦¾" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "যà§à¦•à§à¦¤à¦°à¦¾à¦·à§à¦Ÿà§à¦°à§‡à¦° পà§à¦°à¦¾à¦¨à§à¦¤à¦¬à¦°à§à¦¤à§€ কà§à¦·à§à¦¦à§à¦° দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "মারà§à¦•à¦¿à¦¨ যà§à¦•à§à¦¤à¦°à¦¾à¦·à§à¦Ÿà§à¦°" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "উরà§à¦—à§à§Ÿà§‡" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "উজবেকিসà§à¦¤à¦¾à¦¨" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "ভà§à¦¯à¦¾à¦Ÿà¦¿à¦•à§‡à¦¨ সিটি রাজà§à¦¯" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "সেইনà§à¦Ÿ ভিনসেনà§à¦Ÿ ও গà§à¦°à¦¾à¦¨à¦¾à¦¡à¦¾à¦‡à¦¨à§à¦¸" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "ভেনিজà§à§Ÿà§‡à¦²à¦¾" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "বà§à¦°à¦¿à¦Ÿà¦¿à¦¶ ভারà§à¦œà¦¿à¦¨ দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "যà§à¦•à§à¦¤à¦°à¦¾à¦·à§à¦Ÿà§à¦° ভারà§à¦œà¦¿à¦¨ দà§à¦¬à§€à¦ªà¦ªà§à¦žà§à¦œ" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "ভিয়েতনাম" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "ভানà§à§Ÿà¦¾à¦¤à§" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "ওয়ালিস à¦à¦¬à¦‚ ফà§à¦Ÿà§à¦¨à¦¾" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "সামোয়া" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "ইয়েমেন" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "মায়োট" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "যà§à¦—োসà§à¦²à¦¾à¦­à¦¿à§Ÿà¦¾" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "দকà§à¦·à¦¿à¦£ আফà§à¦°à¦¿à¦•à¦¾" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "জামà§à¦¬à¦¿à§Ÿà¦¾" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "জিমà§à¦¬à¦¾à¦¬à§‹à§Ÿà§‡" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "তারিখ ও সময় বà§à¦¯à¦¬à¦¹à¦¾à¦°à§‡à¦° সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦—à§à¦²à¦¿" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "à¦à¦• (নকà§à¦·à¦¤à§à¦°)দিবস সময় বৃদà§à¦§à¦¿ করে" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "à¦à¦• (নকà§à¦·à¦¤à§à¦°)মাস সময় বৃদà§à¦§à¦¿ করে" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "à¦à¦• (নকà§à¦·à¦¤à§à¦°)সপà§à¦¤à¦¾à¦¹ সময় বৃদà§à¦§à¦¿ করে" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "à¦à¦• (নকà§à¦·à¦¤à§à¦°)বছর সময় বৃদà§à¦§à¦¿ করে" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "à¦à¦• (নকà§à¦·à¦¤à§à¦°)শতাবà§à¦¦à§€ বৃদà§à¦§à¦¿ করে" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "à¦à¦• (সৌর)দিবস সময় বৃদà§à¦§à¦¿ করে" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "à¦à¦• (সৌর)ঘনà§à¦Ÿà¦¾ সময় বৃদà§à¦§à¦¿ করে" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "à¦à¦• (সৌর)সপà§à¦¤à¦¾à¦¹ সময় বৃদà§à¦§à¦¿ করে" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "à¦à¦• (চনà§à¦¦à§à¦°à¦•à¦²à¦¾)মাস বৃদà§à¦§à¦¿ করে" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "à¦à¦• (চনà§à¦¦à§à¦°à¦¾à§Ÿà¦£)মাস বৃদà§à¦§à¦¿ করে" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "à¦à¦• (আনোমালিসà§à¦Ÿà¦¿à¦• বা চাà¦à¦¦à§‡à¦° দূরতà§à¦¬ নিরà§à¦­à¦°)মাস বৃদà§à¦§à¦¿ করে" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "à¦à¦• (কà§à¦°à¦¾à¦¨à§à¦¤à¦¿à¦¬à§ƒà¦¤à§à¦¤à§€à¦“)মাস বৃদà§à¦§à¦¿ করে" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "à¦à¦• (চনà§à¦¦à§à¦°à¦¾à§Ÿà¦£)বছর বৃদà§à¦§à¦¿ করে" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "à¦à¦• (কà§à¦°à¦¾à¦à¦¨à§à¦¤à¦¿à¦¬à§ƒà¦¤à§à¦¤à§€à¦“)বছর বৃদà§à¦§à¦¿ করে" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "à¦à¦• (কà§à¦°à¦¾à¦¨à§à¦¤à¦¿à¦¬à§ƒà¦¤à§à¦¤à§€à¦“)মাস বৃদà§à¦§à¦¿ করে" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿà§‡à¦° গতি হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "সময়ের গতিহà§à¦°à¦¾à¦¸" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "সময়ের গতি হà§à¦°à¦¾à¦¸ করে(সামানà§à¦¯)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿà§‡à¦° গতি বৃদà§à¦§à¦¿ করে" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "সময়ের গতিবৃদà§à¦§à¦¿" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "সময়ের গতি বৃদà§à¦§à¦¿ করে(সামানà§à¦¯)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ চালনায় সà§à¦¥à¦—িত করে" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ চালনা পà§à¦¨à¦ƒà¦¸à§à¦¥à¦¾à¦ªà¦¨ করে" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "বরà§à¦¤à¦®à¦¾à¦¨ সময় নিরà§à¦¬à¦¾à¦šà¦¨" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿà§‡à¦° গতি সà§à¦¬à¦¾à¦­à¦¾à¦¬à¦¿à¦• করে" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "সময়ের সà§à¦¬à¦¾à¦­à¦¾à¦¬à¦¿à¦• গতি" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "সময় থামায় !" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ চালনা বনà§à¦§ করে" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "à¦à¦• (নকà§à¦·à¦¤à§à¦°)দিবস সময় হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "à¦à¦• (নকà§à¦·à¦¤à§à¦°)মাস সময় হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "à¦à¦• (নকà§à¦·à¦¤à§à¦°)সপà§à¦¤à¦¾à¦¹ সময় হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "à¦à¦• (নকà§à¦·à¦¤à§à¦°)বছর সময় হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "à¦à¦• (নকà§à¦·à¦¤à§à¦°)বছর সময় হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "à¦à¦• (সৌর)দিবস সময় হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "à¦à¦• (সৌর)ঘনà§à¦Ÿà¦¾ সময় হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "à¦à¦• (সৌর)সপà§à¦¤à¦¾à¦¹ সময় হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "à¦à¦• (চনà§à¦¦à§à¦°à¦•à¦²à¦¾)মাস হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "à¦à¦• (চনà§à¦¦à§à¦°à¦¾à§Ÿà¦£)মাস হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "à¦à¦• (আনোমালিসà§à¦Ÿà¦¿à¦• বা চাà¦à¦¦à§‡à¦° দূরতà§à¦¬ নিরà§à¦­à¦°)মাস হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "à¦à¦• (কà§à¦°à¦¾à¦à¦¨à§à¦¤à¦¿à¦¬à§ƒà¦¤à§à¦¤à§€à¦“)মাস হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "à¦à¦• (চনà§à¦¦à§à¦°à¦¾à§Ÿà¦£)বছর হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "à¦à¦• (কà§à¦°à¦¾à¦à¦¨à§à¦¤à¦¿à¦¬à§ƒà¦¤à§à¦¤à§€à¦“)বছর হà§à¦°à¦¾à¦¸ করে" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "à¦à¦• (কà§à¦°à¦¾à¦à¦¨à§à¦¤à¦¿à¦¬à§ƒà¦¤à§à¦¤à§€à¦“)শতাবà§à¦¦à§€ হà§à¦°à¦¾à¦¸ করে" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "পà§à¦°à¦¦à¦°à§à¦¶à¦£ বিকলà§à¦ªà§‡à¦° সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦—à§à¦²à¦¿" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "অনà§à¦­à§‚মিকভাবে সà§à¦•à§à¦°à¦¿à¦¨ ঘোরানো" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "সà§à¦•à§à¦°à¦¿à¦¨ জà§à¦¡à¦¼à§‡ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ মোড" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "বায়à§à¦®à¦¨à§à¦¡à¦² পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "দিগংশিক ছক পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "দিকচিহà§à¦¨ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "নকà§à¦·à¦¤à§à¦°à¦®à¦¨à§à¦¡à¦²à§€à¦° চিতà§à¦°à¦¾à¦¬à¦²à§€ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "নকà§à¦·à¦¤à§à¦°à¦®à¦¨à§à¦¡à¦²à§€à¦° সীমারেখা পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "নকà§à¦·à¦¤à§à¦°à¦®à¦¨à§à¦¡à¦²à§€à¦° নামসমূহ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "নকà§à¦·à¦¤à§à¦°à¦®à¦¨à§à¦¡à¦²à§€à¦° রেখাসমূহ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "নীহারিকার পশà§à¦šà¦¾à¦¦à§à¦ªà¦Ÿ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "সৌরপথীয় J2000 ছক" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "সৌরপথ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "নিরকà§à¦·à¦°à§‡à¦–া পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "নিরকà§à¦·à§€à§Ÿ ছক পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "ইকà§à¦¯à¦¼à§‡à¦Ÿà§‹à¦°à¦¿à¦¯à¦¼à¦¾à¦² J2000 ছক পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "কà§à¦¯à¦¼à¦¾à¦¶à¦¾ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "নকà§à¦·à¦¤à§à¦°à¦²à§Œà¦•à¦¿à¦• ছক পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "নকà§à¦·à¦¤à§à¦°à¦²à§Œà¦•à¦¿à¦• সমতল পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "ভূমি পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "দিগনà§à¦¤à¦°à§‡à¦–া পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "মূলমধà§à¦¯à¦°à§‡à¦–া পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "নীহারিকা পà§à¦°à¦¦à¦°à§à¦¶à¦¨" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "নাইট মোড" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "গà§à¦°à¦¹à§‡à¦° নাম পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "গà§à¦°à¦¹à§‡à¦° ককà§à¦·à¦ªà¦¥ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "গà§à¦°à¦¹à§‡à¦° গমনপথ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "নকà§à¦·à¦¤à§à¦° পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "নকà§à¦·à¦¤à§à¦°à§‡à¦° নাম পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "উলমà§à¦¬à¦­à¦¾à¦¬à§‡ সà§à¦•à§à¦°à¦¿à¦¨ ঘোরানো" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "অনà§à¦¯à¦¾à¦¨à§à¦¯ সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦—à§à¦²à¦¿" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "সà§à¦¬à¦¯à¦¼à¦‚কà§à¦°à¦¿à§Ÿ ভাবে নিচের সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦—à§à¦²à¦¿ অদৃশà§à¦¯ করে" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "সà§à¦¬à¦¯à¦¼à¦‚কà§à¦°à¦¿à§Ÿà¦­à¦¾à¦¬à§‡ পাশের সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦—à§à¦²à¦¿ অদৃশà§à¦¯ করে" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "আপন সà§à¦¥à¦¾à¦¨à§‡ ফিরà§à¦¨" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "পà§à¦°à¦¸à§à¦¥à¦¾à¦¨" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "কà§à¦²à¦¿à¦ªà¦¬à§‹à¦°à§à¦¡à§‡ নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦° তথà§à¦¯ নকল করে" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "সà§à¦•à§à¦°à¦¿à¦¨à§‡à¦° ছবি সংরকà§à¦·à¦£ করে" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "নিরকà§à¦·à§€à¦¯à¦¼ à¦à¦¬à¦‚ দিগংশিক দৃষà§à¦Ÿà¦¿à¦° মধà§à¦¯à§‡ অদলবদল করে" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "GUI-à¦à¦° দৃশà§à¦¯à¦®à¦¾à¦¨à¦¤à¦¾ পরিবরà§à¦¤à¦¨ করে" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "চালনা à¦à¦¬à¦‚ নিরà§à¦¬à¦¾à¦šà¦¨à§‡à¦° সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦—à§à¦²à¦¿" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦Ÿà¦¿ কেনà§à¦¦à§à¦°à§‡ আনে" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ গà§à¦°à¦¹à¦Ÿà¦¿ বাড়ি হিসাবে নিরà§à¦¬à¦¾à¦šà¦¨ করে" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦Ÿà¦¿à¦•à§‡ অনà§à¦¸à¦°à¦£ করে" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦Ÿà¦¿ কাছ থেকে পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করে" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "দূর থেকে পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করে" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "কোনের পরিমাপ" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "দিক নিরà§à¦¦à§‡à¦¶" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "বহিরà§à¦—à§à¦°à¦¹à¦—à§à¦²à¦¿ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করà§à¦¨" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "বহিরà§à¦—à§à¦°à¦¹ বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸ উইনà§à¦¡à§‹" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "দৃশà§à¦¯à¦®à¦¾à¦¨à¦¤à¦¾" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "দৃশà§à¦¯à¦®à¦¾à¦¨à¦¤à¦¾ বিনà§à¦¯à¦¾à¦¸ উইনà§à¦¡à§‹" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "'দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸' পà§à¦²à¦¾à¦—ইন বিনà§à¦¯à¦¾à¦¸ করà§à¦¨" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ দরà§à¦¶à¦£" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "লকà§à¦· সà§à¦¥à¦¿à¦° করার কà§à¦°à¦¸ দেখান" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ পপআপ মেনà§" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "ছবি সংবেদকের ফà§à¦°à§‡à¦®" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "দূরবীনের জনà§à¦¯ পà§à¦°à¦¤à¦¿à¦«à¦²à¦• দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦°" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "পরবরà§à¦¤à§€ দূরবীন নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "পরবরà§à¦¤à§€ লেনà§à¦¸ নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "পূরà§à¦¬à¦¬à¦°à§à¦¤à§€ দূরবীন নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "পূরà§à¦¬à¦¬à¦°à§à¦¤à§€ লেনà§à¦¸ নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "পালসারগà§à¦²à¦¿ দেখান" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "পালসার বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸ উইনà§à¦¡à§‹" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "কোয়াসারগà§à¦²à¦¿ দেখান" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "কোয়াসার বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸ উইনà§à¦¡à§‹" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "উপগà§à¦°à¦¹ বিনà§à¦¯à¦¾à¦¸ উইনà§à¦¡à§‹ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "কৃতà§à¦°à¦¿à¦® উপগà§à¦°à¦¹ পà§à¦°à¦¦à¦°à§à¦¶à¦£" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "উপগà§à¦°à¦¹à§‡à¦° নাম" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "à¦à¦¤à¦¿à¦¹à¦¾à¦¸à¦¿à¦• অতিনোভার বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "দূরবীনে পà§à¦°à¦¦à¦¤à§à¦¤ সà§à¦¥à¦¾à¦¨à¦¾à¦™à§à¦•à§‡à¦° দিকে তাক করে" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "বিভিনà§à¦¨ উপসà§à¦¥à¦¾à¦ªà¦¨ পরিসংখà§à¦¯à¦¾à¦¨à¦° পরিসংখà§à¦¯à¦¾à¦¨ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿà¦¸à¦®à§‚হ" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "ফাইল থেকে ভà§à¦®à¦¿à¦°à§‚প সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ চালান" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "চাà¦à¦¦ কাছ থেকে দেখান" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "বিনà§à¦¯à¦¾à¦¸ উইনà§à¦¡à§‹ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "তারিখ/সময় উইনà§à¦¡à§‹ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "সাহাযà§à¦¯à¦•à¦¾à¦°à§€ উইনà§à¦¡à§‹ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "সà§à¦¥à¦¾à¦¨ নিরà§à¦¬à¦¾à¦šà¦¨ উইনà§à¦¡à§‹ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ উইনà§à¦¡à§‹ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "সহজ পনà§à¦¥à¦¾à¦—à§à¦²à¦¿à¦° উইনà§à¦¡à§‹ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "আকাশ à¦à¦¬à¦‚ পà§à¦°à§‡à¦•à§à¦·à¦¾à¦ªà¦Ÿ বিকলà§à¦ª উইনà§à¦¡à§‹ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" @@ -3513,7 +3694,7 @@ msgstr "সতেজ করন" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "অবসà§à¦¥à¦¾à¦¨" @@ -3529,10 +3710,10 @@ msgid "Return to default" msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• সূচনা বিনà§à¦¯à¦¾à¦¸à§‡ ফিরে আসà§à¦¨" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "মà§à¦›à§‡ ফেলà§à¦¨" @@ -3541,7 +3722,7 @@ msgstr "তালিকায় যোগ করà§à¦¨" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "অকà§à¦·à¦¾à¦‚শ:" @@ -3554,12 +3735,12 @@ "উদাহরণ:+1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "দà§à¦°à¦¾à¦˜à¦¿à¦®à¦¾à¦‚শ:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "উচà§à¦šà¦¤à¦¾:" @@ -3583,363 +3764,411 @@ msgid "Planet:" msgstr "গà§à¦°à¦¹ :" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦• অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ করà§à¦¨" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦• বা তার অবসà§à¦¥à¦¾à¦¨ অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ করà§à¦¨" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "আয়োটা (iota)" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "আলফা (α)" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "বিটা (β)" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "গামা (γ)" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "ডেলà§à¦Ÿà¦¾ (δ)" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "à¦à¦ªà¦¸à¦¾à¦‡à¦²à¦¨ (δ)" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "জিটা (ζ)" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "ইটা (η)" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "থিটা (θ)" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "কাপà§à¦ªà¦¾ (κ)" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "লà§à¦¯à¦¾à¦®à§à¦¬à¦¡à¦¾ (λ)" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "মিউ (μ)" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "নিউ (ν)" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "জাই (ξ)" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "ওমিকà§à¦°à¦¨ (ο)" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "পাই (Ï€)" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "রো (Ï)" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "সিগমা (σ)" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "টাও (Ï„)" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "à¦à¦ªà¦¸à¦¾à¦‡à¦²à¦¨ (Ï‚)" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "ফাই (φ)" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "কাই (χ)" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "শাই (ψ)" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "ওমেগা (ω)" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "নামের জনà§à¦¯ গà§à¦°à§€à¦• অকà§à¦·à¦°" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "লকà§à¦·à§à¦¯à¦¬à¦¸à§à¦¤à§" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "বিষà§à¦¬à¦¾à¦‚শ / বিষà§à¦¬à¦²à¦®à§à¦¬ (J2000):" -#: src/ui_searchDialogGui.h:623 -msgid "Position" -msgstr "অবসà§à¦¥à¦¾à¦¨" +#: src/ui_searchDialogGui.h:645 +msgid "Position" +msgstr "অবসà§à¦¥à¦¾à¦¨" + +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "কিছৠকিছৠবসà§à¦¤à§ তার পà§à¦²à¦¾à¦—ইন সকà§à¦°à¦¿à¦¯à¦¼ করার পর পাওয়া যাবে" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "ইংরাজী নাম" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "তালিকায় খোà¦à¦œà¦¾ হচà§à¦›à§‡..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "তালিকা" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "অন ​​লাইন SIMBAD জà§à¦¯à§‹à¦¤à¦¿à¦°à§à¦¬à¦¿à¦¦à§à¦¯à¦¾ ডাটাবেস" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "SIMBAD-ঠবিসà§à¦¤à§ƒà¦¤ অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "সারà§à¦­à¦¾à¦° :" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "বিকলà§à¦ªà¦¸à¦®à§‚হ" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "ইংরাজী নাম" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "তালিকায় খোà¦à¦œà¦¾ হচà§à¦›à§‡..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "তালিকা" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "দরà§à¦¶à¦¨ বিকলà§à¦ª" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "আকাশ" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "চিহà§à¦¨" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "ভূমিরূপ" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "মহাকাশ সমà§à¦ªà¦°à§à¦•à§€à§Ÿ নানা সংসà§à¦•à§ƒà¦¤à¦¿" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "নাম à¦à¦¬à¦‚ চিহà§à¦¨" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "গà§à¦°à¦¹" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"গভীর আকাশের জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦¸à¦®à§‚হ (তারকাগà§à¦šà§à¦›, নকà§à¦·à¦¤à§à¦°à¦²à§‹à¦• à¦à¦¬à¦‚ নীহারিকা) à¦à¦° নাম " +"পà§à¦°à¦¦à¦°à§à¦¶à¦£" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "গà§à¦°à¦¹ à¦à¦¬à¦‚ উপগà§à¦°à¦¹" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "গà§à¦°à¦¹à¦—à§à¦²à¦¿ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করà§à¦¨" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "গà§à¦°à¦¹à§‡à¦° অবসà§à¦¥à¦¾à¦¨ চিহà§à¦¨à¦¿à¦¤ করà§à¦¨" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "গà§à¦°à¦¹à§‡à¦° ককà§à¦·à¦ªà¦¥ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করà§à¦¨" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "আলোর গতি অনà§à¦•à¦°à¦£ করà§à¦¨" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "চাà¦à¦¦à§‡à¦° মাপ" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "বায়à§à¦®à¦¨à§à¦¡à¦² পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করà§à¦¨" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "আলোক দূষন :" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "চাপ, তাপমাতà§à¦°à¦¾, বিলà§à¦ªà§à¦¤à¦¿à¦° গà§à¦£à¦¾à¦™à§à¦•" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "পà§à¦°à¦¤à¦¿à¦¸à¦°à¦£ / বিলà§à¦ªà§à¦¤à¦¿ পà§à¦°à¦¦à¦°à§à¦¶à¦¿à¦¤ হওয়ার বিনà§à¦¯à¦¼à¦¾à¦¸ ..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "পরম মান :" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "আপেকà§à¦·à¦¿à¦• মান :" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "ছায়াপথের ঔজà§à¦œà§à¦¬à¦²à¦¤à¦¾:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "তারার à¦à¦¿à¦•à¦®à¦¿à¦•:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "খà§à¦¬à¦‡ উজà§à¦œà§à¦¬à¦² জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦° সানà§à¦¯à¦¿à¦§à§à¦¯à§‡ নিসà§à¦ªà§à¦°à¦­ তারার অসà§à¦ªà¦·à§à¦Ÿ হওয়া" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "ডাইনামিক চকà§à¦·à§ অভিযোজন" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "উলà§à¦•à¦¾" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "পà§à¦°à¦¤à¦¿ ঘণà§à¦Ÿà¦¾à¦¯à¦¼ পরমোনà§à¦¨à¦¤à¦¿à¦° হার" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "ZHR:" +msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "১০০০" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "ঔজà§à¦œà§à¦¬à¦²à¦¤à¦¾à¦° সীমা (বাইনাকà§à¦²à¦¾à¦° রা খালি চোখে দেখার জনà§à¦¯)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "সীমিত ঔজà§à¦œà§à¦¬à¦²à¦¤à¦¾" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "তারার ঔজà§à¦œà§à¦¬à¦²à¦¤à¦¾à¦° মান" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "নকà§à¦·à¦¤à§à¦° সমূহের ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° সীমা নিয়নà§à¦¤à§à¦°à¦£" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "নিহারীকার ঔজà§à¦œà§à¦¬à¦²à¦¤à¦¾à¦° মান" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"গভীর আকাশের জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦• (তারকাগà§à¦šà§à¦›, নকà§à¦·à¦¤à§à¦°à¦²à§‹à¦•, নীহারিকা) সমূহের " +"ঔà§à¦œà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° সীমা নিয়নà§à¦¤à§à¦°à¦£" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "তারামণà§à¦¡à¦²" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "রেখাগà§à¦²à¦¿ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করà§à¦¨" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "নাম পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করà§à¦¨" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "সীমানাগà§à¦²à¦¿ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করà§à¦¨" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "তারামণà§à¦¡à¦²à§‡à¦° কালà§à¦ªà¦¨à¦¿à¦• চিতà§à¦°à¦—à§à¦²à¦¿ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করà§à¦¨" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "চিতà§à¦°à¦—à§à¦²à¦¿à¦° উজà§à¦œà§à¦¬à¦²à¦¤à¦¾:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "খগোল" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "নিরকà§à¦·à¦°à§‡à¦–া পà§à¦°à¦¦à¦°à§à¦¶à¦£" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "বিষà§à¦¬à¦°à§‡à¦–া পà§à¦°à¦¦à¦°à§à¦¶à¦£" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "দিগনà§à¦¤à¦°à§‡à¦–া পà§à¦°à¦¦à¦°à§à¦¶à¦£" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "সৌরপথ পà§à¦°à¦¦à¦°à§à¦¶à¦£" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "মহাজাগতিক সমতল রেখা পà§à¦°à¦¦à¦°à§à¦¶à¦£" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "অভিকà§à¦·à§‡à¦ªà¦¨" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "ভূমিরূপ যোগ/মà§à¦›à§‡ ফেলà§à¦¨" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "ভূমি পà§à¦°à¦¦à¦°à§à¦¶à¦£ করà§à¦¨" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "কà§à§Ÿà¦¾à¦¶à¦¾ পà§à¦°à¦¦à¦°à§à¦¶à¦£ করà§à¦¨" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "ভূমিরূপের সাথে যà§à¦•à§à¦¤ গà§à¦°à¦¹ à¦à¦¬à¦‚ অবসà§à¦¥à¦¾à¦¨ বà§à¦¯à¦¬à¦¹à¦¾à¦° করà§à¦¨" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• সূচনা হিসেবে à¦à¦‡ ভূমিরূপ বà§à¦¯à¦¬à¦¹à¦¾à¦° করà§à¦¨" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• সূচনা হিসেবে à¦à¦‡ মহাকাশ সংসà§à¦•à§ƒà¦¤à¦¿à¦° বà§à¦¯à¦¬à¦¹à¦¾à¦° করà§à¦¨" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "দৃশà§à¦¯à¦®à¦¾à¦¨" @@ -3996,7 +4225,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Stellarium শà§à¦°à§à¦° সময় আপনার দৃষà§à¦Ÿà¦¿à¦¸à§€à¦®à¦¾à¦° দিক" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦Ÿà¦¿à¦° সমà§à¦ªà¦°à§à¦•à§‡ তথà§à¦¯" @@ -4012,11 +4241,8 @@ msgid "Display no information" msgstr "কোন তথà§à¦¯ দেখাবেন না" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "কোনটি না" @@ -4159,7 +4385,7 @@ msgstr "সেকেনà§à¦¡" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "শà§à¦°à§à¦° তারিখ à¦à¦¬à¦‚ সময়" @@ -4171,41 +4397,45 @@ msgid "Other:" msgstr "অনà§à¦¯à¦¾à¦¨à§à¦¯ :" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "বরà§à¦¤à¦®à¦¾à¦¨ সà§à¦¥à¦¾à¦¨à§€à¦¯à¦¼ তারিখ à¦à¦¬à¦‚ সময় বà§à¦¯à¦¬à¦¹à¦¾à¦° করà§à¦¨" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "বরà§à¦¤à¦®à¦¾à¦¨à¦Ÿà¦¿à¦•à§‡ বà§à¦¯à¦¬à¦¹à¦¾à¦° করà§à¦¨" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "সিসà§à¦Ÿà§‡à¦®à§‡à¦° তারিখ à¦à¦¬à¦‚ সময়ে Stellarium আরমà§à¦­ করà§à¦¨" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "সিসà§à¦Ÿà§‡à¦®à§‡à¦° তারিখ à¦à¦¬à¦‚ সময়" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "আজকের à¦à¦‡ সময়কে পরের Stellarium আরমà§à¦­à§‡à¦° সময় হিসাবে নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "সিসà§à¦Ÿà§‡à¦®à§‡à¦° তারিখ :" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "সময় সংশোধন" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "সমীকরণ সমà§à¦ªà¦¾à¦¦à¦¨à¦¾ করà§à¦¨" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "গà§à¦°à¦¹à¦®à¦£à§à¦¡à¦²à§€à¦° নকশা বিকলà§à¦ª" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4213,51 +4443,51 @@ "কম খরচের গà§à¦°à¦¹à¦®à¦£à§à¦¡à¦²à§€à¦° নকশা সিসà§à¦Ÿà§‡à¦®à§‡ বà§à¦¯à¦¬à¦¹à§ƒà¦¤ গোলীয় দরà§à¦ªà¦£à§‡ অভিকà§à¦·à§‡à¦ªà¦¨à§‡à¦° জনà§à¦¯ " "'গোলীয় পà§à¦°à¦¤à¦¿à¦¬à¦¿à¦®à§à¦¬ বিকৃতি' বà§à¦¯à¦¬à¦¹à§ƒà¦¤ হয় ।" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "গোলীয় পà§à¦°à¦¤à¦¿à¦¬à¦¿à¦®à§à¦¬ বিকৃতি" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "পà§à¦°à¦§à¦¾à¦¨ দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦°à§‡à¦° à¦à¦•à¦Ÿà¦¿ কেনà§à¦¦à§à¦°à¦¿à¦¯à¦¼ বৃতà§à¦¤à§‡à¦° বাইরের সব ঢেকে দেন" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "ডিসà§à¦• ভিউপোরà§à¦Ÿ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "আপনি যখন à¦à¦•à¦Ÿà¦¿ নকà§à¦·à¦¤à§à¦°à¦ªà§à¦žà§à¦œà§‡ কà§à¦²à¦¿à¦• করেন তখন অনà§à¦¯à¦¾à¦¨à§à¦¯à¦—à§à¦²à¦¿ লà§à¦•à¦¾à¦¨à§‹" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "à¦à¦•à¦Ÿà¦¿ নকà§à¦·à¦¤à§à¦°à¦®à¦¨à§à¦¡à¦² নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ করন" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "দিগনà§à¦¤à§‡à¦° সঙà§à¦—ে নাম বিনà§à¦¯à¦¸à§à¦¤à¦•à¦°à¦¨" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "মাধà§à¦¯à¦¾à¦•à¦°à§à¦·à¦¨à¦¾à¦§à§€à¦¨ নাম পà§à¦°à¦¦à¦°à§à¦¶à¦¨" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "নীহারিকার পশà§à¦šà¦¾à¦¦à¦ªà¦¦ অদলবদল করà§à¦¨ ।" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "নীহারিকার পশà§à¦šà¦¾à¦¦à¦ªà¦¦ সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦Ÿà¦¿ দেখান" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "উলà§à¦²à¦®à§à¦¬ à¦à¦¬à¦‚ অনà§à¦­à§‚মিক ছবি উলà§à¦Ÿà¦¾à¦¨à§‹à¦° সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦° অদলবদল করà§à¦¨ ।" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "সà§à¦•à§à¦°à¦¿à¦¨ উলà§à¦Ÿà¦¾à¦¨à§‹à¦° সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦Ÿà¦¿ দেখান" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4265,93 +4495,101 @@ "যখন \"সà§à¦¬à¦¯à¦¼à¦‚কà§à¦°à¦¿à¦¯à¦¼à¦­à¦¾à¦¬à§‡ দূরে পà§à¦°à¦¦à¦°à§à¦¶à¦¨\" সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦° সকà§à¦°à¦¿à¦¯à¦¼ তখন তা পà§à¦°à¦¾à¦¥à¦®à¦¿à¦• " "দিকবিনà§à¦¯à¦¾à¦¸à¦“ ঠিক করে দেয়" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "সà§à¦¬à¦¯à¦¼à¦‚কà§à¦°à¦¿à¦¯à¦¼à¦­à¦¾à¦¬à§‡ দূরে পà§à¦°à¦¦à¦°à§à¦¶à¦¨ থেকে পà§à¦°à¦¾à¦¥à¦®à¦¿à¦• দিকবিনà§à¦¯à¦¾à¦¸à§‡ ফিরানো" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"গà§à¦°à¦¹ ও উপগà§à¦°à¦¹ সমূহের উপর সৌরছায়া পà§à¦°à¦¦à¦°à§à¦¶à¦£ (à¦à¦° জনà§à¦¯ OpenGL সংসà§à¦•à¦°à¦£ ২ বা তার " +"বেশি পà§à¦°à¦¯à¦¼à§‹à¦œà¦¨)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "সৌরছায়া উপসà§à¦¥à¦¾à¦ªà¦¨" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "সà§à¦•à§à¦°à§€à¦¨à¦¶à¦Ÿà¦¸à¦®à§‚হ" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "সà§à¦•à§à¦°à¦¿à¦¨à¦¶à¦Ÿ ডিরেকà§à¦Ÿà¦°à§€" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "রং বিপরীত করà§à¦¨" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "নকà§à¦·à¦¤à§à¦° তালিকার সংশোধনগà§à¦²à¦¿" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "সংগà§à¦°à¦¹ শà§à¦°à§ করতে à¦à¦–ানে কà§à¦²à¦¿à¦• করà§à¦¨" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "আরো বেশি নকà§à¦·à¦¤à§à¦° দেখতে à¦à¦‡ ফাইল গà§à¦²à¦¿à¦•à§‡ সংগà§à¦°à¦¹ করà§à¦¨ ।" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "নতà§à¦¨ করে সংগà§à¦°à¦¹ করà§à¦¨" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "পà§à¦¨à¦°à¦¾à¦¯à¦¼ চেষà§à¦Ÿà¦¾ করà§à¦¨" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" "সংগà§à¦°à¦¹ থামান । যে কোন সময়ে নতà§à¦¨ করে আপনি à¦à¦Ÿà¦¿à¦•à§‡ অাবার সংগà§à¦°à¦¹ করতে পারেন ।" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "বাতিল করà§à¦¨" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ সঞà§à¦šà¦¾à¦²à¦¨à§‡à¦° সময় হয় উইনà§à¦¡à§‹ বনà§à¦§ করà§à¦¨" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿà¦Ÿà¦¿ চালান" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "চলমান সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿà¦Ÿà¦¿ থামান" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "শà§à¦°à§à¦° সময় চালৠকরা হোক" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "বিনà§à¦¯à¦¾à¦¸" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "পà§à¦°à¦§à¦¾à¦¨" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "তথà§à¦¯à¦¾à¦¦à¦¿" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "দিক নিরà§à¦£à¦¯à¦¼" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "যনà§à¦¤à§à¦°à¦¾à¦¦à¦¿" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "পà§à¦²à¦¾à¦—ইন" @@ -4527,12 +4765,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "দিগনà§à¦¤ বরাবর কমà§à¦ªà¦¾à¦¸ ভারবহন চিহà§à¦¨ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করে ।" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4542,164 +4780,164 @@ "à¦à¦¬à¦‚ দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦° পরিবরà§à¦¤à¦¨ করা যায় ।)তাছাড়া à¦à¦Ÿà¦¿ à¦à¦•à¦Ÿà¦¿ সংবেদক ফà§à¦°à§‡à¦® à¦à¦¬à¦‚ à¦à¦•à¦Ÿà¦¿ " "দূরবীনের জনà§à¦¯ পà§à¦°à¦¤à¦¿à¦«à¦²à¦• দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦° পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করতে পারে ।" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "দূরবীন দরà§à¦¶à¦¨ করতে আগে কোন à¦à¦•à¦Ÿà¦¿ জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦• নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&পূরà§à¦¬à¦¬à¦°à§à¦¤à§€ দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&পরবরà§à¦¤à§€ দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "&দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "&লকà§à¦· সà§à¦¥à¦¿à¦° করার কà§à¦°à¦¸à¦Ÿà¦¿ অদলবদল করà§à¦¨" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "'দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸' বিনà§à¦¯à¦¾à¦¸ করà§à¦¨" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "অদলবদল &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "অদলবদল &দূরবীনের জনà§à¦¯ পà§à¦°à¦¤à¦¿à¦«à¦²à¦• দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦°" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&পূরà§à¦¬à¦¬à¦°à§à¦¤à§€ CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&পরবরà§à¦¤à§€ CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "CCD &নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "CCD &ঘোরান" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&ঘূরà§à¦£à¦¨ পà§à¦¨à¦ƒà¦¸à§à¦¥à¦¾à¦ªà¦¨ করà§à¦¨" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "লেনà§à¦¸ #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "লেনà§à¦¸ #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "লেনà§à¦¸: কিছৠনেই" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "দূরবীন #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "দূরবীন #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "বরà§à¦§à¦¿à¦¤à¦•à¦°à¦£: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "দৃষà§à¦Ÿà¦¿à¦¸à§€à¦®à¦¾: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "মাতà§à¦°à¦¾: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "সংবেদক #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "সংবেদক #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&লেনà§à¦¸" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&পূরà§à¦¬à¦¬à¦°à§à¦¤à§€ লেনà§à¦¸" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&পরবরà§à¦¤à§€ লেনà§à¦¸" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&দূরবীন" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&পূরà§à¦¬à¦¬à¦°à§à¦¤à§€ দূরবীন" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&পরবরà§à¦¤à§€ দূরবীন" @@ -4771,65 +5009,70 @@ msgid "Apparent field of view of the ocular" msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸à§‡à¦° আপাত দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦°" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "বিবরà§à¦§à¦•à¦¤à¦¾: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "লেনà§à¦¸: কিছৠনেই" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "বিবরà§à¦§à¦•à¦¤à¦¾: নেই" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "লেনà§à¦¸à§‡à¦° বিবরà§à¦§à¦•à¦¤à¦¾" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "অভিনেতà§à¦°à§‡à¦° ফোকাস দূরতà§à¦¬" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "ঘূরà§à¦£à¦¨: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "à¦à¦‡ দূরবীন দà§à¦¬à¦¾à¦°à¦¾ পà§à¦°à¦¾à¦ªà§à¦¤ বরà§à¦§à¦¿à¦¤à¦•à¦°à¦¨" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "à¦à¦‡ দূরবীন দà§à¦¬à¦¾à¦°à¦¾ পà§à¦°à¦¾à¦ªà§à¦¤ আসল দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦°" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "à¦à¦‡ দূরবীন, লেনà§à¦¸ বা দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ দà§à¦¬à¦¾à¦°à¦¾ পà§à¦°à¦¾à¦ªà§à¦¤ বরà§à¦§à¦¿à¦¤à¦•à¦°à¦¨" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "à¦à¦‡ দূরবীন, লেনà§à¦¸ বা দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ দà§à¦¬à¦¾à¦°à¦¾ পà§à¦°à¦¾à¦ªà§à¦¤ আসল দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦°" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ পà§à¦²à¦¾à¦—ইন" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "সংসà§à¦•à¦°à¦£" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "সারসংকà§à¦·à§‡à¦ª" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4840,7 +5083,7 @@ "বিনà§à¦¯à¦¾à¦¸ ডায়ালগটির সাহাযà§à¦¯à§‡ অভিনেতà§à¦°, দূরবীন à¦à¦®à¦¨à¦•à¦¿ সিসিডি সংবেদকও সংযোগ, " "পরিবরà§à¦¤à¦¨ বা মà§à¦›à§‡ ফেলা যায় । পà§à¦°à¦¥à¦®à¦¬à¦¾à¦° বà§à¦¯à¦¬à¦¹à¦¾à¦°à§‡à¦° সময় কিছৠনমà§à¦¨à¦¾ তৈরী হয়ে যাবে ।" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4855,7 +5098,7 @@ "দূরবীন আলাদা আলাদা দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦° সৃষà§à¦Ÿà¦¿ করে । তবে à¦à¦¤à§‡ আকাশের à¦à¦•à¦Ÿà¦¿ কà§à¦·à§à¦¦à§à¦° " "অংশই কেবলমাতà§à¦° দেখা সমà§à¦­à¦¬ তাই à¦à¦•à¦¾à¦¨à§à¦¤ দরকার মনে হলে তবেই বà§à¦¯à¦¬à¦¹à¦¾à¦° করà§à¦¨ ।" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4865,7 +5108,7 @@ "অামি à¦à¦Ÿà¦¿à¦° উতà§à¦¤à¦° দিকে পà§à¦°à¦¾à¦¨à§à¦¤à¦¿à¦•à¦°à¦¨ চেয়েছিলাম । কিনà§à¦¤à§ সেটা করা সমà§à¦­à¦¬ হয়ে ওঠে " "নি । বরà§à¦¤à¦®à¦¾à¦¨à§‡ à¦à¦Ÿà¦¿ সà§à¦•à§à¦°à¦¿à¦¨à§‡ লমà§à¦¬à¦¾à¦²à¦®à§à¦¬à¦¿ ভাবে থাকে ।" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4878,118 +5121,126 @@ "(বা সমতà§à¦²à§à¦¯) দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦°à§‡ তিনটি ০.৫ %1, ২.০ %1 ও ৪.০ %1 বà§à¦¯à¦¾à¦¸à§‡à¦° " "সমকেনà§à¦¦à§à¦°à¦¿à¦• বৃতà§à¦¤à§‡à¦° দà§à¦¬à¦¾à¦°à¦¾ পরà§à¦¯à¦¬à§‡à¦•à§à¦·à¦£à§‡ সাহাযà§à¦¯ করে ।" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "কোন সমসà§à¦¯à¦¾ খà§à¦à¦œà§‡ পেলে অামাকে জানান । পà§à¦²à¦¾à¦—ইনটির অাননà§à¦¦ উপভোগ করà§à¦¨ ।" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "চটজলদি কাজের সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "à¦à¦‡ পà§à¦²à¦¾à¦—ইনের সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦—à§à¦²à¦¿à¦° নাম সাধারন টà§à¦¯à¦¾à¦¬à§‡ সংশোধন করতে পারেন ।" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[কোন বোতামের নাম উলà§à¦²à§‡à¦– করা নেই]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ শà§à¦°à§ বা বনà§à¦§ করà§à¦¨ ।" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "পপ আপ নেভিগেশন মেনৠখà§à¦²à§à¦¨ ।" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "কোন জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦• নিরà§à¦¬à¦¾à¦šà¦¨ করা থাকলে তবেই সকà§à¦°à¦¿à§Ÿ হবে" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "ছবির বৃতà§à¦¤à¦¿à§Ÿ দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦° মাপ করা হবে" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦° বিনà§à¦¯à¦¾à¦¸" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ অদলবদল" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "পপ আপ নেভিগেশন মেনৠখà§à¦²à§à¦¨ :" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "ইনà§à¦Ÿà¦¾à¦°à¦«à§‡à¦¸" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "সà§à¦•à§à¦°à¦¿à¦¨à§‡ নিয়নà§à¦¤à§à¦°à¦£ পà§à¦¯à¦¾à¦¨à§‡à¦²" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "CCD à¦à¦° দৃষà§à¦Ÿà¦¿à¦¸à§€à¦®à¦¾ পরিমাপের à¦à¦•à¦• হিসাবে ডিগà§à¦°à¦¿ ও মিনিট বà§à¦¯à¦¬à¦¹à¦¾à¦° করà§à¦¨" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "সারà§à¦¬à¦œà¦¨à§€à¦¨" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "অভিনেতà§à¦°" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "যোগ করà§à¦¨" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "নাম" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "অাপাত দৃষà§à¦Ÿà¦¿à¦¸à§€à¦®à¦¾ :" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "ফোকাস দূরতà§à¦¬ :" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "কà§à¦·à§‡à¦¤à§à¦° বনà§à¦§ :" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "দূরবীনগà§à¦²à¦¿" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "লেনà§à¦¸ সমূহ" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "বিবরà§à¦§à¦•à¦¤à¦¾:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "গà§à¦£à¦•:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -4997,74 +5248,75 @@ "বিবরà§à¦§à¦•à¦¤à¦¾à¦° মান >১ হলে (Barlow লেনà§à¦¸) ফোকাস দূরতà§à¦¬ বাড়ে à¦à¦¬à¦‚ বিবরà§à¦§à¦•à¦¤à¦¾à¦° মান " "<১হলে (Shapley লেনà§à¦¸) ফোকাস দূরতà§à¦¬ কমে ।" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "সংবেদকগà§à¦²à¦¿" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "রেজোলিউশন X (পিকà§à¦¸à§‡à¦²) :" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "রেজোলিউশন y (পিকà§à¦¸à§‡à¦²) :" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "চীপের পà§à¦°à¦¸à§à¦¥ (মিলিমিটার):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "চীপের উচà§à¦šà¦¤à¦¾ (মিলিমিটার):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "পিকà§à¦¸à§‡à¦²à§‡à¦° পà§à¦°à¦¸à§à¦¥ (মাইকà§à¦°à¦¨):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "পিকà§à¦¸à§‡à¦²à§‡à¦° উচà§à¦šà¦¤à¦¾ (মাইকà§à¦°à¦¨):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "দূরবীন" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "বà§à¦¯à¦¾à¦¸" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "আনà§à¦­à§‚মিকভাবে উলà§à¦Ÿà¦¾à¦¨à§‹" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "উলà§à¦²à¦®à§à¦¬à¦­à¦¾à¦¬à§‡ উলà§à¦Ÿà¦¾à¦¨à§‹" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "পরিচিতি" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "উপগà§à¦°à¦¹" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5072,104 +5324,164 @@ "NORAD TLE তথà§à¦¯à§‡à¦° উপর ভিতà§à¦¤à¦¿ করে পৃথিবীর কৃতà§à¦°à¦¿à¦® উপগà§à¦°à¦¹à¦—à§à¦²à¦¿à¦° অবসà§à¦¥à¦¾à¦¨à§‡à¦° " "ভবিষà§à¦¯à¦¦à§à¦¬à¦¾à¦£à§€ করে" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "পà§à¦°à§‹à¦¨à§‹ satellites.json ফাইলটি উপযà§à¦•à§à¦¤ বা সামঞà§à¦œà¦¸à§à¦¯à¦ªà§‚রà§à¦£ নয় তাই পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• " "সূচনা ফাইল বà§à¦¯à¦¬à¦¹à¦¾à¦° করà§à¦¨" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "দৃষিà§à¦Ÿà¦—োচর" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "বিজà§à¦žà¦¾à¦¨à¦¸à¦‚কà§à¦°à¦¾à¦¨à§à¦¤" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "যোগাযোগসংকà§à¦°à¦¾à¦¨à§à¦¤" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "মারà§à¦—দরà§à¦¶à§€" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "রেডিও" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "আবহাওয়া" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "ভà§à¦¸à¦®à¦²à¦¯à¦¼" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "অকেজো" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "জিপিà¦à¦¸" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "ইরিডিয়াম" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "হাবল সà§à¦ªà§‡à¦¸ টেলিসà§à¦•à§‹à¦ª" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "আনà§à¦¤à¦°à§à¦œà¦¾à¦¤à¦¿à¦• মহাকাশ কেনà§à¦¦à§à¦°" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "তালিকা #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "আনà§à¦¤à¦°à§à¦œà¦¾à¦¤à¦¿à¦• ডেজিগনেটর" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "কৃতà§à¦°à¦¿à¦® উপগà§à¦°à¦¹" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "পালà§à¦²à¦¾ (কিমি): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "পালà§à¦²à¦¾à¦° হার (কিমি/সেকেনà§à¦¡): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "উচà§à¦šà¦¤à¦¾ (কিমি): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "উপবিনà§à¦¦à§ (অকà§à¦·à¦¾à¦‚শ/দà§à¦°à¦¾à¦˜à¦¿à¦®à¦¾à¦‚শ): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME সà§à¦¥à¦¾à¦¨à¦¾à¦™à§à¦• (কিমি): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME বেগ (কিমি/সেকেনà§à¦¡): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "উপগà§à¦°à¦¹ à¦à¦¬à¦‚ পরà§à¦¯à¦¬à§‡à¦•à§à¦·à¦• উভয়েই রোদে আছে ।" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "উপগà§à¦°à¦¹ দৃশà§à¦¯à¦®à¦¾à¦¨" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "উপগà§à¦°à¦¹à§‡à¦° গà§à¦°à¦¹à¦£" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "উপগà§à¦°à¦¹ অদৃশà§à¦¯" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 মেগাহারà§à¦œ (%2%3 কিলোহারà§à¦œ)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Stellarium উপগà§à¦°à¦¹ পà§à¦²à¦¾à¦—ইন" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" "উপগà§à¦°à¦¹ পà§à¦²à¦¾à¦—ইন পৃথিবীর কৃতà§à¦°à¦¿à¦® উপগà§à¦°à¦¹à¦—à§à¦²à¦¿à¦° অবসà§à¦¥à¦¾à¦¨à§‡à¦° ভবিষà§à¦¯à¦¦à§à¦¬à¦¾à¦£à§€ করে" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦•à¦¾à¦°à§€à¦° জনà§à¦¯ টোটকা" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "শà§à¦§à§à¦®à¦¾à¦¤à§à¦° পৃথিবী থেকে উপগà§à¦°à¦¹ ও তাদের ককà§à¦·à¦ªà¦¥ দেখান হবে ।" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5179,7 +5491,7 @@ "সপà§à¦¤à¦¾à¦¹ বা কখনও à¦à¦•à¦Ÿà¦¿ মাস অনà§à¦¯à¦¾à¦¯à¦¼à§€ আগà§à¦ªà¦¾à¦›à§ হতে পারে) । à¦à¦‡ পালà§à¦²à¦¾à¦° বাইরের " "তারিখের জনà§à¦¯ খà§à¦¬à¦‡ অদà§à¦­à§à¦¤ মান পাওয়া যায় ।" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5189,7 +5501,7 @@ "সংশোধন করা পà§à¦°à¦¯à¦¼à§‹à¦œà¦¨ ।" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5200,7 +5512,7 @@ "ফাইল পà§à¦°à¦¤à§à¦¯à¦¾à¦¬à¦°à§à¦¤à¦¨ করে । পà§à¦°à§‹à¦¨à§‹ ফাইলটি %4 হিসাবে সংরকà§à¦·à¦¿à¦¤ হয়ে যায় । যা " "\"modules/Satellites/\"à¦à¦° ভিতরে user data directory তে পাওয়া যাবে ।" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5209,11 +5521,11 @@ "অনà§à¦ªà¦¸à§à¦¥à¦¿à¦¤ বা তà§à¦°à§à¦Ÿà¦¿à¦ªà§‚রà§à¦£ ।" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "TLE তথà§à¦¯à§‡à¦° সংশোধনগà§à¦²à¦¿" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5223,7 +5535,7 @@ "সà§à¦¬à¦¯à¦¼à¦‚কà§à¦°à¦¿à¦¯à¦¼à¦­à¦¾à¦¬à§‡ নিজে থেকে তথà§à¦¯ সংগà§à¦°à¦¹ করতে শà§à¦°à§ করে দেয় যদি তা 72 ঘনà§à¦Ÿà¦¾à¦° " "অধিক পà§à¦°à¦¾à¦¨à§‹ হয়ে যায় । " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5234,7 +5546,7 @@ "আপনার কমà§à¦ªà¦¿à¦‰à¦Ÿà¦¾à¦°à§‡à¦° à¦à¦•à¦Ÿà¦¿ ফাইল থেকেও তথà§à¦¯ সংশোধন করতে পারেন । à¦à¦‡ ফইলটি অবশà§à¦¯à¦‡ " "সেলেসটà§à¦°à§à¦¯à¦¾à¦• সংশোধন বিনà§à¦¯à¦¼à¦¾à¦¸à§‡ থাকতে হবে । (উদাহরণের জনà§à¦¯ %1 দেখà§à¦¨) ।" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5242,11 +5554,11 @@ "বি:দà§à¦°:যদি সংশোধন তথà§à¦¯à§‡à¦° কোন à¦à¦•à¦Ÿà¦¿ উপগà§à¦°à¦¹à§‡à¦° নামের শেষে ৩য় বনà§à¦§à¦¨à§€à¦° " "মধà§à¦¯à§‡ কিছৠথেকে থাকে, তবে তথà§à¦¯ বà§à¦¯à¦¬à¦¹à¦¾à¦° করার পূরà§à¦¬à§‡ সেটি মà§à¦›à§‡ ফেলা হবে" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "নতà§à¦¨ উপগà§à¦°à¦¹ যোগ করà§à¦¨" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5259,18 +5571,18 @@ "২.উপগà§à¦°à¦¹ টà§à¦¯à¦¾à¦¬à§‡ যান, + বোতামে কà§à¦²à¦¿à¦• করà§à¦¨, যে উপগà§à¦°à¦¹ (গà§à¦²à¦¿) যোগ করতে ইচà§à¦›à§à¦• " "সেগà§à¦²à¦¿ নিরà§à¦¬à¦¾à¦šà¦£ করà§à¦¨ । শেষে \"add\" বোতামে কà§à¦²à¦¿à¦• করà§à¦¨" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "পà§à¦°à¦¯à§à¦•à§à¦¤à¦¿ সংকà§à¦°à¦¾à¦¨à§à¦¤ টিপà§à¦ªà¦¨à§€" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" "à¦à¦–ানে SGP4 & SDP4 পদà§à¦§à¦¤à¦¿ ও NORAD TLE তথà§à¦¯ বà§à¦¯à¦¬à¦¹à¦¾à¦° করে অবসà§à¦¥à¦¾à¦¨ গণনা করা হয় । " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5279,24 +5591,26 @@ "Spacetrack Report #6) অনà§à¦¸à¦¾à¦°à§‡ Jose Luis লিখেছেন " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "বিশদ জানতে %1à¦à¦‡ নথি%2 দেখà§à¦¨ ।" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "সংযোগগà§à¦²à¦¿" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5306,31 +5620,34 @@ "কিছৠপোসà§à¦Ÿ করার সময় বিষয় হিসাবে \"%1\" নিরà§à¦¬à¦¾à¦šà¦£ করতে ভà§à¦²à¦¬à§‡à¦¨ না ।" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "ঠবà§à¦¯à¦¾à¦ªà¦¾à¦°à§‡ আপনার সব পà§à¦°à¦¶à§à¦¨à§‡à¦° %1উতà§à¦¤à¦° à¦à¦–ানে পাবেন%2 ।" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "বাগ পà§à¦°à¦¤à¦¿à¦¬à§‡à¦¦à¦¨ %1à¦à¦–ানে%2 করা যাবে ।" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5338,120 +5655,140 @@ "যদি নতà§à¦¨ কিছà§à¦° অনà§à¦°à§‹à¦§ করতে চান, তবে আপনি à¦à¦•à¦Ÿà¦¿ বাগ পà§à¦°à¦¤à¦¿à¦¬à§‡à¦¦à¦¨à¦•à¦°à¦¤à§‡ পারেন à¦à¦¬à¦‚ " "\"ইচà§à¦›à¦¾à¦¤à¦¾à¦²à¦¿à¦•à¦¾à§Ÿ\" à¦à¦° উতকনà§à¦ à¦¾à¦“ নিরà§à¦§à¦¾à¦°à¦£ করতে পারেন ।" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "ইনà§à¦Ÿà¦¾à¦°à¦¨à§‡à¦Ÿà§‡à¦° মাধà§à¦¯à¦®à§‡ সংশোধন বà§à¦¯à¦¬à¦¸à§à¦¥à¦¾ নিষà§à¦•à§à¦°à¦¿à§Ÿ করা আছে" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "à¦à¦–নই সংশোধন করà§à¦¨..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "পরবরà§à¦¤à§€ সংশোধন: < ১ মিনিট" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "পরবরà§à¦¤à§€ সংশোধন: %1 মিনিট" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#, qt-format +msgid "Next update: %1 hours" +msgstr "পরবরà§à¦¤à§€ সংশোধন: %1 ঘনà§à¦Ÿà¦¾" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 +msgid "Update error" +msgstr "সংশোধনে তà§à¦°à§à¦Ÿà¦¿" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Next update: %1 hours" -msgstr "পরবরà§à¦¤à§€ সংশোধন: %1 ঘনà§à¦Ÿà¦¾" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 +msgid "[new source]" +msgstr "[নতà§à¦¨ উতà§à¦¸]" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 #: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 msgid "Update now" msgstr "à¦à¦–নই সংশোধন করà§à¦¨" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 msgid "Update from files" msgstr "ফাইলগà§à¦²à¦¿ থেকে সংশোধন করà§à¦¨" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 -msgid "Update error" -msgstr "সংশোধনে তà§à¦°à§à¦Ÿà¦¿" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 -#, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "সংশোধন করা %1/%2 উপগà§à¦°à¦¹ (গà§à¦²à¦¿); %3 নেই" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 -msgid "[new source]" -msgstr "[নতà§à¦¨ উতà§à¦¸]" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[ককà§à¦·à¦ªà¦¥ গণনার তà§à¦°à§à¦Ÿà¦¿]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[সব নতà§à¦¨ অনà§à¦¤à¦°à§à¦­à§‚কà§à¦¤à¦¿ গà§à¦²à¦¿]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[সব অদৃশà§à¦¯à¦—à§à¦²à¦¿]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[সব পà§à¦°à¦¦à¦°à§à¦¶à¦¿à¦¤ গà§à¦²à¦¿]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[সব]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "নতà§à¦¨ গà§à¦°à§à¦ª" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "TLE সংশোধন ফাইল নিরà§à¦¬à¦¾à¦šà¦£ করà§à¦¨" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "তথà§à¦¯ সংগà§à¦°à¦¹ করা হচà§à¦›à§‡..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5459,175 +5796,195 @@ "Stellarium সংশোধন উতà§à¦¸ থেকে উপগà§à¦°à¦¹ সংকà§à¦°à¦¾à¦¨à§à¦¤ তথà§à¦¯ সংগà§à¦°à¦¹ করছে । তাই à¦à¦•à¦Ÿà§ " "অপেকà§à¦·à¦¾ করà§à¦¨..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "TLE উতà§à¦¸ ফাইল (গà§à¦²à¦¿) নিরà§à¦¬à¦¾à¦šà¦£ করà§à¦¨..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "তথà§à¦¯ পà§à¦°à¦•à§à¦°à¦¿à¦¯à¦¼à¦¾à¦•à¦°à¦£ করা হচà§à¦›à§‡..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "কোন তথà§à¦¯ সংগà§à¦°à¦¹ করা যায় নি, পরে আবার চেষà§à¦Ÿà¦¾ করà§à¦¨ ।" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "তালিকা সংখà§à¦¯à¦¾ : %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "উপগà§à¦°à¦¹ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "ইনà§à¦Ÿà¦¾à¦°à¦¨à§‡à¦Ÿ উতà§à¦¸à¦—à§à¦²à¦¿ থেকে TLE তালিকা সংশোধন করà§à¦¨ ।" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "আপডেট" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "ইনà§à¦Ÿà¦¾à¦°à¦¨à§‡à¦Ÿ উতà§à¦¸à¦—à§à¦²à¦¿ থেকে সংশোধন করà§à¦¨ ।" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "সরà§à¦¬à¦¶à§‡à¦· সংশোধন :" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "পà§à¦¨à¦ƒà¦¸à¦‚শোধন (ঘনà§à¦Ÿà¦¾):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "নামগà§à¦²à¦¿" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "নামের হরফের আকার" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "ককà§à¦·à¦ªà¦¥à§‡à¦° রেখা" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "রেখা আà¦à¦•à¦¤à§‡ যত সংখà§à¦¯à¦• খনà§à¦¡à§‡à¦° দরকার" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "খনà§à¦¡à§‡à¦° সংখà§à¦¯à¦¾ :" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "সেকেনà§à¦¡à§‡ পরিমিত à¦à¦•à¦Ÿà¦¿ খনà§à¦¡à§‡à¦° সà§à¦¥à¦¿à¦¤à¦¿à¦•à¦¾à¦²" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "খনà§à¦¡à§‡à¦° দৈরà§à¦˜à§à¦¯ (সেকেনà§à¦¡) :" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "রেখার পà§à¦°à¦¤à¦¿à¦Ÿà¦¿ পà§à¦°à¦¾à¦¨à§à¦¤ আà¦à¦•à¦¾à¦¤à§‡ যত সংখà§à¦¯à¦• খনà§à¦¡à§‡à¦° দরকার" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "বিলীন হতà§à¦¤à¦¯à¦¼à¦¾à¦° সময় :" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• সূচনার বৈশিষà§à¦Ÿ বিনà§à¦¯à¦¾à¦¸ পà§à¦¨à¦ƒà¦¸à§à¦¥à¦¾à¦ªà¦¨ করà§à¦¨" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "বৈশিষà§à¦Ÿ বিনà§à¦¯à¦¾à¦¸ পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• সূচনা বিনà§à¦¯à¦¾à¦¸ হিসাবে সংরকà§à¦·à¦¨ করà§à¦¨" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "বিনà§à¦¯à¦¾à¦¸" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "টà§à¦°à§à¦¯à¦¾à¦•à¦¿à¦‚ শà§à¦°à§ করতে à¦à¦•à¦Ÿà¦¿ সà§à¦¯à¦¾à¦Ÿà§‡à¦²à¦¾à¦‡à¦Ÿ ঠদà§à¦‡à¦¬à¦¾à¦° কà§à¦²à¦¿à¦• করà§à¦¨." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "আরও উপগà§à¦°à¦¹ যোগ করà§à¦¨" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ উপগà§à¦°à¦¹à¦—à§à¦²à¦¿ মà§à¦›à§à¦¨" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "পরিবরà§à¦¤à¦¨à¦—à§à¦²à¦¿ সংরকà§à¦·à¦¨ করà§à¦¨" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "তালিকা সংখà§à¦¯à¦¾ :" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ উপগà§à¦°à¦¹ (গà§à¦²à¦¿) দেখান" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "দরà§à¦¶à¦¿à¦¤" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ উপগà§à¦°à¦¹à§‡à¦° (গà§à¦²à¦¿) ককà§à¦·à¦ªà¦¥à§‡à¦° রেখা (গà§à¦²à¦¿) দেখান" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "ককà§à¦·à¦ªà¦¥" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "তালিকা সংখà§à¦¯à¦¾ :" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "বিবরণ :" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "গোষà§à¦ à§€à¦¸à¦®à§‚হ :" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "কমা বিভাজিত গোষà§à¦ à§€à¦¸à¦®à§‚হের তালিকা" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE তথà§à¦¯ :" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORAD দà§à¦¬à¦¿à¦°à§‡à¦– ককà§à¦·à¦ªà¦¥ তথà§à¦¯" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ উপগà§à¦°à¦¹à¦—à§à¦²à¦¿ মà§à¦›à§à¦¨" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "আরও উপগà§à¦°à¦¹ যোগ করà§à¦¨" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "পরিবরà§à¦¤à¦¨à¦—à§à¦²à¦¿ সংরকà§à¦·à¦¨ করà§à¦¨" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5635,15 +5992,15 @@ "লিখà§à¦¨ অথবা নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ উতসের URL সমà§à¦ªà¦¾à¦¦à¦¨ করà§à¦¨ । Enter কী চেপে পরিবরà§à¦¤à¦¨à¦—à§à¦²à¦¿ " "সংরকà§à¦·à¦¨ করà§à¦¨ ।" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "নতà§à¦¨ উতà§à¦¸ যোগ করà§à¦¨" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ উতà§à¦¸à¦—à§à¦²à¦¿ মà§à¦›à§à¦¨" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "উতà§à¦¸à¦—à§à¦²à¦¿" @@ -5679,11 +6036,11 @@ msgid "Discard" msgstr "বাতিল" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "দূরবীন নিয়নà§à¦¤à§à¦°à¦£" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5691,12 +6048,12 @@ "à¦à¦‡ পà§à¦²à¦¾à¦—ইন Stellarium কে à¦à¦•à¦Ÿà¦¿ কমà§à¦ªà¦¿à¦‰à¦Ÿà¦¾à¦°à¦¾à¦‡à¦œà¦¡ মাউনà§à¦Ÿ (a \"GoTo " "telescope\")দূরবীনে \"ঘোরানোর আদেশ\" পাঠাতে মঞà§à¦œà§à¦° করে ।" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "দূরবীন #%1 নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦° দিকে তাক করে" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "দূরবীন #%1 সà§à¦•à§à¦°à¦¿à¦¨à§‡à¦° কেনà§à¦¦à§à¦°à§‡à¦° দিকে তাক করে" @@ -6100,62 +6457,62 @@ "পà§à¦°à¦¾à¦¦à§‡à¦¶à¦¿à¦• সময় অঞà§à¦šà¦²à§‡à¦° পরিবরà§à¦¤à¦¨ মঞà§à¦œà§à¦° করে ।" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "জানà§à§Ÿà¦¾à¦°à§€" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "ফেবà§à¦°à§à§Ÿà¦¾à¦°à§€" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "মারà§à¦š" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "à¦à¦ªà§à¦°à¦¿à¦²" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "মে" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "জà§à¦¨" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "জà§à¦²à¦¾à¦‡" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "আগষà§à¦Ÿ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "সেপà§à¦Ÿà§‡à¦®à§à¦¬à¦°" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "অকà§à¦Ÿà§‹à¦¬à¦°" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "নভেমà§à¦¬à¦°" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "ডিসেমà§à¦¬à¦°" @@ -6312,7 +6669,7 @@ msgstr "সময় ও তারিখ নীচের বারে পà§à¦°à¦¦à¦°à§à¦¶à¦¿à¦¤ হওয়ার বিনà§à¦¯à¦¼à¦¾à¦¸" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "সময় পà§à¦°à¦¦à¦°à§à¦¶à¦¨à§‡à¦° বিনà§à¦¯à¦¾à¦¸" @@ -6330,7 +6687,7 @@ msgstr "২৪ ঘনà§à¦Ÿà¦¾à¦° বিনà§à¦¯à¦¾à¦¸" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "তারিখ পà§à¦°à¦¦à¦°à§à¦¶à¦¨à§‡à¦° বিনà§à¦¯à¦¾à¦¸" @@ -6346,11 +6703,11 @@ msgid "mm-dd-yyyy" msgstr "মাস-দিন-বছর" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "টেকà§à¦¸à¦Ÿ ইউজার ইনà§à¦Ÿà¦¾à¦°à¦«à§‡à¦¸" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6358,144 +6715,144 @@ "0.9.x সিরিজে শà§à¦°à§ টেকà§à¦¸à¦Ÿ ইউজার ইনà§à¦Ÿà¦¾à¦°à¦«à§‡à¦¸ (TUI) পà§à¦²à¦¾à¦—ইন যা সাধারণত " "গà§à¦°à¦¹à¦®à¦£à§à¦¡à¦²à§€à¦° নকশা সিসà§à¦Ÿà§‡à¦®à§‡ বà§à¦¯à¦¬à¦¹à§ƒà¦¤ হয় ।" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "সৌরমনà§à¦¡à¦²à§€à§Ÿ জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "বরà§à¦¤à¦®à¦¾à¦¨ তারিখ / সময়" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "সময় অঞà§à¦šà¦² নিরà§à¦§à¦¾à¦°à¦£ করà§à¦¨" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "দিন নিরà§à¦¦à§‡à¦¶à¦•" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à¦•à¦¾à¦²à§‡ তারিখ /সময় পূরà§à¦¬à¦¨à¦¿à¦°à§à¦§à¦¾à¦°à¦£" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "সিসà§à¦Ÿà§‡à¦®" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "পূরà§à¦¬à¦¨à¦¿à¦°à§à¦§à¦¾à¦°à¦£" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "yyyymmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "১২ ঘনà§à¦Ÿà¦¾" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "২৪ ঘনà§à¦Ÿà¦¾" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "ভাষা" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "নকà§à¦·à¦¤à§à¦° দেখান" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "রঙ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "নীহারিকার নাম" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "নীহারিকার সূতà§à¦° সংকেত" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "মহাজাগতিক সমতল রেখা" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "আরোপিত পà§à¦°à¦­à¦¾à¦¬" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "হাতেহাতে কাছেদূরে করা" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° মাতà§à¦°à¦¾à¦° গà§à¦£à¦•" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "ছায়াপথের তীবà§à¦°à¦¤à¦¾ :" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "নীহারিকার নাম পà§à¦°à¦¦à¦°à§à¦¶à¦£à§‡à¦° ঘনতà§à¦¬ :" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "কাছেদূরের সময়কাল :" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "কারà§à¦¸à¦¾à¦°à§‡à¦° সময়সীমা :" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "ভূমিরূপ নিরà§à¦§à¦¾à¦°à¦£ সà§à¦¥à¦¾à¦¨ ঠিক করে দেয়" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "সà§à¦¥à¦¾à¦¨à§€à¦¯à¦¼ সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ চালান" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "চলমান সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿà¦Ÿà¦¿ বনà§à¦§ করà§à¦¨" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD / DVD পà§à¦°à¦¯à¦¼à§‹à¦— সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "পà§à¦°à¦¶à¦¾à¦¸à¦¨" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "পà§à¦°à¦¾à¦°à¦®à§à¦­à¦¿à¦• সূচনা বিনà§à¦¯à¦¾à¦¸ আমদানি করà§à¦¨" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "বরà§à¦¤à¦®à¦¾à¦¨ বিনà§à¦¯à¦¾à¦¸ সংরকà§à¦·à¦£ করà§à¦¨" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "কাজ বনà§à¦§" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[কোন TUI নোড নেই]" @@ -6531,16 +6888,16 @@ "সংগà§à¦°à¦¹ করতে পারেন । à¦à¦–নও বিশদ কাজ চলছে ।" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ করà§à¦¨ MPCà¦à¦° %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "কোন অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨ সফল হলে শà§à¦§à§à¦®à¦¾à¦¤à§à¦° à¦à¦•à¦Ÿà¦¿ ফলাফল দেখাবে ।" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6548,7 +6905,7 @@ "ধূমকেতৠà¦à¦¬à¦‚ গà§à¦°à¦¹à¦¾à¦£à§ উভয়কেই তাদের সংখà§à¦¯à¦¾, নাম (ইংরাজীতে) বা ডাক নাম দিয়ে " "চিহà§à¦¨à¦¿à¦¤ করা যাবে ।" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6735,40 +7092,43 @@ msgid "Solar System" msgstr "সৌরজগত" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "à¦à¦¤à¦¿à¦¹à¦¾à¦¸à¦¿à¦• অতিনোভা" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"à¦à¦‡ পà§à¦²à¦¾à¦—ইন ১০ ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° বেশি ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° কিছৠà¦à¦¤à¦¿à¦¹à¦¾à¦¸à¦¿à¦• অতিনোভা নিরà§à¦¦à§‡à¦¶ " -"করে ।" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "অতিনোভা" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "অতিনোভার ধরণ : %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "à¦à¦¤à¦¿à¦¹à¦¾à¦¸à¦¿à¦• অতিনোভা পà§à¦²à¦¾à¦—ইন" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"à¦à¦‡ পà§à¦²à¦¾à¦—ইন ১০ ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° বেশি ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° কিছৠà¦à¦¤à¦¿à¦¹à¦¾à¦¸à¦¿à¦• অতিনোভা নিরà§à¦¦à§‡à¦¶ " -"করে : " #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "অালোক লেখচিতà§à¦°" @@ -6789,7 +7149,7 @@ msgstr "কৃতজà§à¦žà¦¤à¦¾ সà§à¦¬à§€à¦•à¦¾à¦°" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6804,14 +7164,14 @@ msgstr "ইনসà§à¦Ÿà¦¿à¦Ÿà¦¿à¦‰à¦Ÿ ফর থিওরিটিকà§à¦¯à¦¾à¦² অà§à¦¯à¦¾à¦¨à§à¦¡ à¦à¦•à§à¦¸à¦ªà§‡à¦°à¦¿à¦®à§‡à¦¨à§à¦Ÿà¦¾à¦² ফিজিকà§à¦¸" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr ", রাশিয়া" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6819,8 +7179,9 @@ msgstr "à¦à¦‡ পà§à¦²à¦¾à¦—ইন সমà§à¦¬à¦¨à§à¦§à§‡ পà§à¦°à§‹ তথà§à¦¯à§‡à¦° জনà§à¦¯ %1à¦à¦–ানে%2 যান ।" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "পরবরà§à¦¤à§€ সংশোধন : %1 দিন" @@ -6838,29 +7199,106 @@ msgstr "à¦à¦¤à¦¿à¦¹à¦¾à¦¸à¦¿à¦• অতিনোভা পà§à¦²à¦¾à¦—ইনের বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "ইনà§à¦Ÿà¦¾à¦°à¦¨à§‡à¦Ÿ থেকে তালিকা সংশোধন" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "ইনà§à¦Ÿà¦¾à¦°à¦¨à§‡à¦Ÿ উতà§à¦¸à¦—à§à¦²à¦¿ থেকে সংশোধন করà§à¦¨ ।" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "সংশোধনের হার (দিন):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[পরবরà§à¦¤à§€ সংশোধন তথà§à¦¯]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "কোয়াসার" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6879,11 +7317,11 @@ msgid "Z (redshift): %1" msgstr "Z (লোহিত সরন): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "কোয়াসার পà§à¦²à¦¾à¦—ইন" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6893,40 +7331,50 @@ "করে ।à¦à¦•à¦Ÿà¦¿ তালিকা 'Quasars and Active Galactic Nuclei' (13th Ed.) থেকে নেওয়া " "হয়েছে ।" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "ভেরন+ ২০১০" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "কোয়াসার তথà§à¦¯ সংশোধিত করা হয়েছে" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "কোয়াসার বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "কোয়াসার পà§à¦²à¦¾à¦—ইনের বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "কোয়াসার পà§à¦°à¦¦à¦°à§à¦¶à¦¨ মোড" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "কোয়াসার সমূহের বৈশিষà§à¦Ÿà¦¾à¦¬à¦²à§€ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "নাম না দেখিয়ে সমসà§à¦¤ কোয়াসার গà§à¦²à¦¿ দেখান" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "কোয়াসারদের বণà§à¦Ÿà¦¨ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ সকà§à¦°à¦¿à§Ÿ করà§à¦¨" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "শà§à¦°à§ থেকেই পà§à¦°à¦¦à¦°à§à¦¶à¦¨ চালà§" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "টà§à¦²à¦¬à¦¾à¦°à§‡ কোয়াসার বিকলà§à¦ª পà§à¦°à¦¦à¦°à§à¦¶à¦£" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "পালসার" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7051,11 +7499,11 @@ "উষà§à¦£à¦¤à¦¾ জনিত সৃষà§à¦Ÿ সà§à¦ªà¦¨à§à¦¦à¦¿à¦¤ à¦à¦•à§à¦¸-রশà§à¦®à¦¿ বিচà§à¦›à§à¦°à¦£ সহ কোন à¦à¦• নিঃসঙà§à¦— নিউটà§à¦°à¦¨ " "নকà§à¦·à¦¤à§à¦° যার কোন বেতার তরঙà§à¦—ে সà§à¦ªà¦¨à§à¦¦à¦¿à¦¤ বিচà§à¦›à§à¦°à¦£ দেখা যায় না ।" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "পালসার পà§à¦²à¦¾à¦—ইন" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7066,67 +7514,71 @@ "B., Teoh, A. & Hobbs, M., Astron. J., ১২৯, ১৯৯৩-২০০৬ (২০০৫) (%1astro-" "ph/0412641%2)) থেকে নেওয়া হয়েছে ।" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "টোটকা" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "পালসারদের অাগে অবশà§à¦¯à¦‡ ' PSR' শবà§à¦¦à¦Ÿà¦¿ থাকতে হবে" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "কৃতজà§à¦žà¦¤à¦¾ সà§à¦¬à§€à¦•à¦¾à¦°" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "ভà§à¦²à¦¾à¦¦à¦¿à¦®à¦¿à¦° সামোডাউরভ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "পà§à¦¸à¦šà¦¿à¦¨à§‹ বেতার জà§à¦¯à§‹à¦¤à¦¿à¦°à§à¦¬à¦¿à¦œà§à¦žà¦¾à¦¨ মানমনà§à¦¦à¦¿à¦°" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "মাসিà¦à¦œ সেরিলà§à¦¯à¦¾à¦•" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "নà§à¦¯à¦¾à¦¨à§à¦¸à¦¿ বেতার জà§à¦¯à§‹à¦¤à¦¿à¦°à§à¦¬à¦¿à¦œà§à¦žà¦¾à¦¨ মানমনà§à¦¦à¦¿à¦°" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr ", ফà§à¦°à¦¾à¦¨à§à¦¸" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "পালসার তথà§à¦¯ সংশোধিত করা হয়েছে" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "পালসার বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "পালসার পà§à¦²à¦¾à¦—ইনের বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "পালসার পà§à¦°à¦¦à¦°à§à¦¶à¦¨ মোড" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "পালসার সমূহের বৈশিষà§à¦Ÿà¦¾à¦¬à¦²à§€ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "নাম না দেখিয়ে সমসà§à¦¤ পালসার গà§à¦²à¦¿ দেখান" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "পলসারদের বণà§à¦Ÿà¦¨ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ সকà§à¦°à¦¿à§Ÿ করà§à¦¨" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "টà§à¦²à¦¬à¦¾à¦°à§‡ পালসার বিকলà§à¦ª পà§à¦°à¦¦à¦°à§à¦¶à¦£" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "বহিরà§à¦—à§à¦°à¦¹" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7134,71 +7586,71 @@ "à¦à¦‡ পà§à¦²à¦¾à¦—ইন বহিরà§à¦—à§à¦°à¦¹ যà§à¦•à§à¦¤ তারাদের অবসà§à¦¥à¦¾à¦¨ নিরà§à¦¦à§‡à¦¶ করে । বহিরà§à¦—à§à¦°à¦¹ সমà§à¦ªà¦°à§à¦•à§‡ " "সমসà§à¦¤ তথà§à¦¯ exoplanet.eu -ঠপà§à¦°à¦¾à¦ªà§à¦¤ 'বহিরà§à¦—à§à¦°à¦¹ বিশà§à¦¬à¦•à§‹à¦·' থেকে নেওয়া হয়েছে ।" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "ধাতà§à¦®à¦¯à¦¼à¦¤à¦¾" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "ভর" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "বà§à¦¯à¦¾à¦¸à¦¾à¦°à§à¦§" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "কারà§à¦¯à¦•à¦° তাপমাতà§à¦°à¦¾ : %1 কেলভিন" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "বহিরà§à¦—à§à¦°à¦¹" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "পরà§à¦¯à¦¾à§Ÿà¦•à¦¾à¦²" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "দিন" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "বৃহসà§à¦ªà¦¤à¦¿" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "পà§à¦°à¦§à¦¾à¦¨ অকà§à¦·" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "জà§à¦¯à§‹à¦¤à¦¿à¦°à§à¦¬à§ˆà¦œà§à¦žà¦¾à¦¨à¦¿à¦• à¦à¦•à¦•" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "উতà§à¦•à§‡à¦¨à§à¦¦à§à¦°à¦¤à¦¾" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "তীরà§à¦¯à¦•à¦¤à¦¾" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "কৌনিক দূরতà§à¦¬" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "আবিষà§à¦•à¦¾à¦°à§‡à¦° সাল" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "বহিরà§à¦—à§à¦°à¦¹ পà§à¦²à¦¾à¦—ইন" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7208,7 +7660,7 @@ "সমসà§à¦¤ তথà§à¦¯ %1বহিরà§à¦—à§à¦°à¦¹ বিশà§à¦¬à¦•à§‹à¦·%2 থেকে নেওয়া হয়েছে ।" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7216,42 +7668,131 @@ msgstr "" "à¦à¦‡ পà§à¦²à¦¾à¦—ইন, তার ইতিহাস ও তালিকার format সমà§à¦¬à¦¨à§à¦§à§‡ বিশদ তথà§à¦¯ %1à¦à¦–ানে%2 পাবেন ।" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "অসৌর গà§à¦°à¦¹ পà§à¦°à¦¾à¦¸à¦™à§à¦—িক সাধারণ পেশাদার ওয়েব সাইট" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "অসৌর গà§à¦°à¦¹ গবেষণায় কিছৠজà§à¦¯à§‹à¦¤à¦¿à¦°à§à¦¬à¦¿à¦œà§à¦žà¦¾à¦¨à§€à¦°à¦¾ à¦à¦¬à¦‚ সকà§à¦°à¦¿à¦¯à¦¼ গোষà§à¦ à§€" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "à¦à¦‚লো-অসà§à¦Ÿà§à¦°à§‡à¦²à¦¿à¦¯à¦¼à¦¾à¦¨ গà§à¦°à¦¹ অনà§à¦¸à¦¨à§à¦§à¦¾à¦¨" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "বহিরà§à¦—à§à¦°à¦¹à¦—à§à¦²à¦¿à¦° তথà§à¦¯ সংশোধিত হয়েছে" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "বহিরà§à¦—à§à¦°à¦¹ বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "বহিরà§à¦—à§à¦°à¦¹ পà§à¦²à¦¾à¦—ইনের বৈশিষà§à¦Ÿà§à¦¯ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "বহিরà§à¦—à§à¦°à¦¹à¦—à§à¦²à¦¿à¦° তথà§à¦¯ ইনà§à¦Ÿà¦¾à¦°à¦¨à§‡à¦Ÿ থেকে সংশোধন করà§à¦¨" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "বহির গà§à¦°à¦¹ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ মোড" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "বহির গà§à¦°à¦¹ সমূহের বৈশিষà§à¦Ÿà¦¾à¦¬à¦²à§€ বিনà§à¦¯à¦¾à¦¸" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "নাম না দেখিয়ে সমসà§à¦¤ বহির গà§à¦°à¦¹à¦—à§à¦²à¦¿ দেখান" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "বহির গà§à¦°à¦¹à¦¦à§‡à¦° বণà§à¦Ÿà¦¨ পà§à¦°à¦¦à¦°à§à¦¶à¦¨ সকà§à¦°à¦¿à§Ÿ করà§à¦¨" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "আবিসà§à¦•à¦¾à¦°à§‡à¦° সময়ের পরে বহির গà§à¦°à¦¹à¦—à§à¦²à¦¿ দেখান" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "বহির গà§à¦°à¦¹ আবিসà§à¦•à¦¾à¦°à§‡à¦° সময়সূচি সকà§à¦°à¦¿à§Ÿ করà§à¦¨" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "টà§à¦²à¦¬à¦¾à¦°à§‡ বহির গà§à¦°à¦¹ বিকলà§à¦ª পà§à¦°à¦¦à¦°à§à¦¶à¦£" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "তথà§à¦¯" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "দৃশà§à¦¯à¦®à¦¾à¦¨à¦¤à¦¾ বিচার" @@ -7273,186 +7814,180 @@ "অসà§à¦¤à§‡à¦° দিনকà§à¦·à¦¨à¦“ à¦à¦‡ পà§à¦²à¦¾à¦—ইন থেকে জানা যায় ।

    à¦à¦‡ সমà§à¦ªà¦°à§à¦•à¦¿à¦¤ কিছৠসংজà§à¦žà¦¾ " "বিনà§à¦¯à¦¾à¦¸ উইনà§à¦¡à§‹à¦° পরিচিতি বিভাগে পাবেন ।" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "জানà§à§Ÿà¦¾à¦°à¦¿" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "ফেবà§à¦°à§à§Ÿà¦¾à¦°à§€" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "মারà§à¦š" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "à¦à¦ªà§à¦°à¦¿à¦²" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "মে" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "জà§à¦¨" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "জà§à¦²à¦¾à¦‡" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "আগষà§à¦Ÿ" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "সেপà§à¦Ÿà§‡à¦®à§à¦¬à¦°" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "অকà§à¦Ÿà§‹à¦¬à¦°" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "নভেমà§à¦¬à¦°" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "ডিসেমà§à¦¬à¦°" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "অসà§à¦¤: %1 (%2 পরে)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "উদয়: %1 (%2 পরে)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "অসà§à¦¤: %1 (%2 আগে)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "উদয়: %1 (%2 পরে)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "মেরৠপরিবৃতà§à¦¤à§‡ অবসà§à¦¥à¦¿à¦¤" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "উদিত হবে না ।" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "%1 à¦à¦° সময়ে (%2 পরে) %3 দিগংশে মধà§à¦¯à¦—গনে থাকবে ।" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "%1 à¦à¦° সময়ে (%2 আগে) %3 দিগংশে মধà§à¦¯à¦—গনে থাকবে ।" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦Ÿà¦¿ পরà§à¦¯à¦¬à§‡à¦•à§à¦·à¦£ যোগà§à¦¯ নয় ।" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" "সূরà§à¦¯à¦¦à¦¯à¦¼ বা সূরà§à¦¯à¦¾à¦¸à§à¦¤à§‡à¦° সময় নিরà§à¦¬à¦¾à¦šà¦¿à¦¤ জà§à¦¯à§‹à¦¤à¦¿à¦·à§à¦•à¦Ÿà¦¿ উদিত বা অসà§à¦¤à¦®à¦¿à¦¤ হবে না ।" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "সরà§à¦¬à§‹à¦šà§à¦š অবসà§à¦¥à¦¾à¦¨ (দà§à¦°à¦¾à¦˜à¦¨) বা সূরà§à¦¯à§‡à¦° সাথে কৌনিক দূরতà§à¦¬: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "সূরà§à¦¯ থেকে সরà§à¦¬à§‹à¦šà§à¦š চà§à¦¯à§‚তি: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (%1 ডিগà§à¦°à¦¿)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "সূরà§à¦¯à¦¾à¦¸à§à¦¤à§‡ উদয়/সূরà§à¦¯à¦¦à§Ÿà§‡ অসà§à¦¤" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "সূরà§à¦¯à¦¾à¦¸à§à¦¤à§‡ উদিত বা সূরà§à¦¯à¦¦à§Ÿà§‡ অসà§à¦¤à¦®à¦¿à¦¤ হবে না ।" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "সূরà§à¦¯à§‹à¦¦à§Ÿà§‡ উদয়/সূরà§à¦¯à¦¾à¦¸à§à¦¤à§‡ অসà§à¦¤" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "সূরà§à¦¯à¦¦à§Ÿà§‡ উদিত বা সূরà§à¦¯à¦¾à¦¸à§à¦¤à§‡ অসà§à¦¤à¦®à¦¿à¦¤ হবে না ।" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "সারা বছর ধরে দৃশà§à¦¯à¦®à¦¾à¦¨ ।" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "রাতে দৃশà§à¦¯à¦®à¦¾à¦¨ নয় ।" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "দিগনà§à¦¤à§‡à¦° উপরে দৃশà§à¦¯à¦®à¦¾à¦¨à¦¤à¦¾à¦° রাতগà§à¦²à¦¿: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "আজ:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "à¦à¦‡ বছর:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "পূরà§à¦¬à¦¬à¦°à§à¦¤à§€ পূরà§à¦£à¦¿à¦®à¦¾: %1 %2 at %3:%4 । " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "পরবরà§à¦¤à§€ পূরà§à¦£à¦¿à¦®à¦¾: %1 %2 at %3:%4 । " @@ -7832,6 +8367,12 @@ #~ msgid "Obliquity (of date): %1" #~ msgstr "ভূঅকà§à¦·à§‡à¦° তীরà§à¦¯à¦•à¦¤à¦¾ ( তারিখে ): %1" +#~ msgid "Nebulas" +#~ msgstr "নীহারিকা পà§à¦°à¦¦à¦°à§à¦¶à¦¨" + +#~ msgid "Nebulas background images" +#~ msgstr "নীহারিকার পশà§à¦šà¦¾à¦¦à§à¦ªà¦Ÿ পà§à¦°à¦¦à¦°à§à¦¶à¦¨" + #~ msgid "Hourly zenith rate:" #~ msgstr "পà§à¦°à¦¤à¦¿ ঘণà§à¦Ÿà¦¾à¦¯à¦¼ পরমোনà§à¦¨à¦¤à¦¿à¦° হার:" @@ -7842,6 +8383,12 @@ #~ "Launchpad ওয়েবসাইটের মাধà§à¦¯à¦®à§‡ সমরà§à¦¥à¦¨ বà§à¦¯à¦¬à¦¸à§à¦¥à¦¾ উপলবà§à¦§ আছে ।তবে ঠবà§à¦¯à¦¾à¦ªà¦¾à¦°à§‡ " #~ "কিছৠপোসà§à¦Ÿ করার সময় বিষয় হিসাবে \"উপগà§à¦°à¦¹ পà§à¦²à¦¾à¦—ইন\" নিরà§à¦¬à¦¾à¦šà¦£ করতে ভà§à¦²à¦¬à§‡à¦¨ না ।" +#~ msgid "Comma separated list of groups" +#~ msgstr "কমা বিভাজিত গোষà§à¦ à§€à¦¸à¦®à§‚হের তালিকা" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORAD দà§à¦¬à¦¿à¦°à§‡à¦– ককà§à¦·à¦ªà¦¥ তথà§à¦¯" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -7995,12 +8542,46 @@ #~ msgid "Actual field of view provided by this ocular/telescope combination" #~ msgstr "à¦à¦‡ দূরবীন বা দূরবীন দরà§à¦¶à¦¨ বিনà§à¦¯à¦¾à¦¸ দà§à¦¬à¦¾à¦°à¦¾ পà§à¦°à¦¾à¦ªà§à¦¤ আসল দৃষà§à¦Ÿà¦¿à¦•à§à¦·à§‡à¦¤à§à¦°" +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "সংশোধন করা %1/%2 উপগà§à¦°à¦¹ (গà§à¦²à¦¿); %3 নেই" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "ইনà§à¦Ÿà¦¾à¦°à¦¨à§‡à¦Ÿ উতà§à¦¸à¦—à§à¦²à¦¿ থেকে TLE তালিকা সংশোধন করà§à¦¨ ।" + +#~ msgid "TLE data:" +#~ msgstr "TLE তথà§à¦¯ :" + #~ msgid "Form" #~ msgstr "তৈরী করà§à¦¨" +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "à¦à¦‡ পà§à¦²à¦¾à¦—ইন ১০ ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° বেশি ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° কিছৠà¦à¦¤à¦¿à¦¹à¦¾à¦¸à¦¿à¦• অতিনোভা নিরà§à¦¦à§‡à¦¶ " +#~ "করে ।" + #~ msgid "Finished downloading all star catalogs!" #~ msgstr "সব তারকাসূচি সংগà§à¦°à¦¹ সমà§à¦ªà§‚রà§à¦£ হয়েছে" +#~ msgid "Display mode for quasars" +#~ msgstr "কোয়াসার পà§à¦°à¦¦à¦°à§à¦¶à¦¨ মোড" + +#~ msgid "Display mode for pulsars" +#~ msgstr "পালসার পà§à¦°à¦¦à¦°à§à¦¶à¦¨ মোড" + +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "সৌরজগতে ঘটমান ১৭১টি বিশিষà§à¦Ÿ ঘটনা নিয়ে সà§à¦•à§à¦°à¦¿à¦¨à¦¸à§‡à¦­à¦¾à¦° ।" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "à¦à¦‡ পà§à¦²à¦¾à¦—ইন ১০ ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° বেশি ঔজà§à¦œà§à¦¬à¦²à§à¦¯à¦¤à¦¾à¦° কিছৠà¦à¦¤à¦¿à¦¹à¦¾à¦¸à¦¿à¦• অতিনোভা নিরà§à¦¦à§‡à¦¶ " +#~ "করে : " + #~ msgid "When a Script is Running" #~ msgstr "à¦à¦•à¦Ÿà¦¿ সà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ চলার সময় বà§à¦¯à¦¬à¦¹à§ƒà¦¤ সহজ বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦—à§à¦²à¦¿" diff -Nru stellarium-0.12.1/po/stellarium/bo.po stellarium-0.12.4/po/stellarium/bo.po --- stellarium-0.12.1/po/stellarium/bo.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/bo.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2010-01-28 20:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tibetan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:20+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/br.po stellarium-0.12.4/po/stellarium/br.po --- stellarium-0.12.1/po/stellarium/br.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/br.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: Jérémy Ar Floc'h \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-02-15 10:47+0000\n" "Last-Translator: Guybrush88 \n" "Language-Team: Breton \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:11+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Keider" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Dremmwel" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Aozer : " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Lec'hiadur : " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planedenn : " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Seurt : %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Meurez : %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Ment : %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaksienn" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Druilhad digor" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Druilhad boulek" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nivlenn" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nivlenn blanedennel" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Druilhad kenstaget d'ur nivlennad" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Dianav" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "N'eo teuliaet ar seurt" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Meurez dizave : %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Pellder : %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Treuzkiz hañvalat : %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -646,52 +738,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Diuzañ ar c'havlec'h evit an tapadennoù-skramm" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Maezienn wel d'al loc'hañ : %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Tu ar gwel Azimut/Uhelder d'al loc'hañ : %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Aozerien" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Darempred" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Aozer" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lañvaz" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "O seveniñ skript : " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "O seveniñ skript : [netra]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -699,16 +792,16 @@ "Echu eo pellgargañ ar c'hatalog stered nevez !\n" "Adloc'hit Stellarium evit diskwel anezhañ." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Adtapout ar c'hatalog %1 diwar %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -717,7 +810,7 @@ "O pellgargañ %1...\n" "(Gallout a rit serriñ ar prenestr-mañ)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -728,7 +821,7 @@ "Niver a stered : %2 Million\n" "Meurezioù : %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -737,11 +830,11 @@ "Fazi o pellgargañ %1 :\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "O wiriekaat anterinder ar restr..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -751,115 +844,123 @@ "Siek eo ar restr." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1026,49 +1127,53 @@ msgid "OSX Developer: %1" msgstr "Diorroer OSX : %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Prenestr skript" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Prenistri" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Esaouiñ" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Deskrivadur ebet" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Steredenn-dared ebet" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Frekañs reizh" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Lec'hiadur nevez" @@ -1171,19 +1276,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1199,30 +1304,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Diembreget eo OpenGL gant ar reizhiad-mañ." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "heol" @@ -1239,12 +1350,12 @@ msgstr "Douar" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Loar" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Meurzh" @@ -1342,7 +1453,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Sadorn" @@ -1640,239 +1751,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1882,1502 +2022,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Deiziad & eur" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Ouzhpennañ 1 deiz sterennel" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Ouzhpennañ 1 sizhun sterennel" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Ouzhpennañ 1 deiz heol" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Ouzhpennañ 1 eur heol" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Ouzhpennañ 1 sizhun heol" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Gorrekaat tizh seveniñ ar skript" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Gorrekaat an amzer" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Gorrekaat an amzer (un tammig)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Buanaat tizh seveniñ ar skript" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Buanaat an amzer" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Buanaat an amzer (un tammig)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Distreiñ d'an eur a-vremañ" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Seveniñ ar skript d'an tizh reizh" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Termeniñ tizh an amzer reizh" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Termeniñ tizh an amzer da zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Lemel 1 deiz sterennel" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Lemel 1 sizhun sterennel" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Lemel 1 deiz heol" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Lemel 1 eur heol" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Lemel 1 sizhun heol" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Diskouez dibarzhioù" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Melezour a-blaen" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Skramm leun" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Aergelc'h" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Kael-azimut" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Ar pevar avel" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Tresadennoù ar steredegoù" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Harzoù ar steredegoù" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Anvioù ar steredegoù" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Linennoù ar steredegoù" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Skeudenn an nivlennoù e drekleur" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Linenn an ekliptik" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Linenn kehederel" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Kael-gehederel" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Kael-gehederel J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Latar" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Kael-c'halaksienn" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Leur (douar)" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Linenn hedredel" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nivlennoù" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Mod noz" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Kelc'htroioù ar planedennoù" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stered" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Melezour a-sonn" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Liesseurt" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Emguzhat ar varrenn vouton a-blaen" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Emguzhat ar varrenn vouton a-sonn" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Kuitaat" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Enrollañ tapadenn-skramm" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Kemmañ ar plaen kehederel/azimutel" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "(Di)Gweredekaat ar c'hetal grafek" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Luskad ha diuzad" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Kreizañ war an elfenn diuzet" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Termeniñ ar blanedenn diuzet evel planedenn kêr" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Heuliañ an elfenn" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zoomañ war an elfenn diuzet" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Dizoumañ" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skriptoù" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Prenestr kefluniañ" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Prenestr deiziad/eur" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Prenestr skoazell" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Prenestr lec'hiadur" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Prenestr klask" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Prenestr kefluniañ an oabl hag ar gweled" @@ -3403,7 +3579,7 @@ msgstr "Adkargañ" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Lec'hiadur" @@ -3419,10 +3595,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Dilemel" @@ -3431,7 +3607,7 @@ msgstr "Ouzhpennañ d'ar roll" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Ledred :" @@ -3442,12 +3618,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Hedred :" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Uhelder :" @@ -3471,363 +3647,407 @@ msgid "Planet:" msgstr "Planedenn :" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Klask elfenn" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Dibarzhioù" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Dibarzhioù" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Gwelet" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Oabl" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Gweledva" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planedennoù" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planedennoù hag adplanedennoù" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Diskouez planedennoù" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Diskouez an aergelc'h" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Stered-dared" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Steredegoù" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Diskouez al linennoù" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Diskouez an anvioù" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Diskouez an harzoù" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Diskouez an tresadennoù" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Sferenn oabl" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Banndres" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Diskouez al leur (douar)" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Diskouez al latar" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Implijout ar planedennoù ha lec'hiadurioù keñveriet" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Implijout ar gweledva-mañ dre ziouer" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Gwelus" @@ -3877,7 +4097,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3893,11 +4113,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4039,7 +4256,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4051,182 +4268,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Lec'hiadur ar gantenn" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Kuzhat ar steredegoù all pa glikit war unan" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Diuzañ ur steredeg hepken" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Tapadennoù-skramm" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Teuliad an tapadennoù-skramm" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Eilpennañ al livioù" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Hizivadennoù ar c'hatalog stered" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klikit amañ evit kregiñ gant ar pellgargañ" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Pellgargañ ar restr-mañ evit gwelet muioc'h a stered c'hoazh" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Adloc'hañ pellgargañ" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Klask en-dro" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Paouezañ pellgargañ. Gallout a rit adloc'hañ anezhañ diwezhatoc'h" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Nullañ" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Serriñ ar prenestr pa vez ar skript o seveniñ" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Seveniñ ar skript diuzet" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Paouez ar skript diuzet" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Kargañ d'al loc'hañ" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "kefluniañ" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Pennañ" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Merdeiñ" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Binvioù" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Enlugelladoù" @@ -4394,176 +4621,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4635,64 +4862,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4700,7 +4932,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4711,14 +4943,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4727,305 +4959,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5033,25 +5334,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5059,17 +5360,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5077,41 +5378,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5119,338 +5422,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5486,22 +5832,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Kontroll Teleskop" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5884,62 +6230,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6093,7 +6439,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6111,7 +6457,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6127,154 +6473,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6307,22 +6653,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6491,36 +6837,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6538,7 +6891,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6552,14 +6905,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6567,8 +6920,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6586,29 +6940,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6624,51 +7055,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6788,11 +7229,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6800,137 +7241,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6938,49 +7383,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6996,185 +7530,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7579,6 +8107,12 @@ #~ msgid "When a Script is Running" #~ msgstr "Pa vez ur skript o seveniñ" +#~ msgid "Nebulas" +#~ msgstr "Nivlennoù" + +#~ msgid "Nebulas background images" +#~ msgstr "Skeudenn an nivlennoù e drekleur" + #~ msgid "Planets labels" #~ msgstr "Anvioù ar planedennoù" diff -Nru stellarium-0.12.1/po/stellarium/bs.po stellarium-0.12.4/po/stellarium/bs.po --- stellarium-0.12.1/po/stellarium/bs.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/bs.po 2013-09-23 06:20:13.000000000 +0000 @@ -4,29 +4,29 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-04-07 19:25+0000\n" -"Last-Translator: Kenan DerviÅ¡ević \n" +"Last-Translator: Kenan DerviÅ¡ević \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:11+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridijan" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizont" @@ -34,46 +34,46 @@ msgid "Galactic Plane" msgstr "GalaktiÄka ravan" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Lokacija: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tip: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "VeliÄina: %1 (neaktivno do: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "VeliÄina: %1" @@ -83,114 +83,114 @@ msgid "Size: %1" msgstr "VeliÄina: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaksija" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Otvoreni zvjezdani skup" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Loptasti zvjezdani skup" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Maglica" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetarna maglica" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Tamna maglina" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Zvjezdani skup povezan sa maglicom" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Nepoznato" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Nedokumentirana vrsta" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Apsolutna veliÄina: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "EkliptiÄki topocentriÄni (za datum): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "UkoÅ¡enost (na datum, za Zemlju): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Udaljenost: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Udaljenost: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Vidljivi preÄnik: %1, s prstenima: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Prividni preÄnik: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Zvjezdani period: %1 dana (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Zvjezdani dan: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "ProsjeÄni solarni dan: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Fazni ugao: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Istezanje: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Faza: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Osvjetljenje: %1%" @@ -201,7 +201,7 @@ msgstr "Privremena oznaka: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "zvijezda" @@ -216,47 +216,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Vidljiva veliÄina: %1 (po neaktivnosti)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "dvostruka zvijezda" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "VeliÄina: %1 (neaktivno do: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "VeliÄina: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektralna vrsta: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Udaljenost: %1 svjestlosnih godina" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaksa: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Svemirski brod" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -264,14 +339,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -280,14 +355,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -295,7 +370,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -303,14 +378,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -319,14 +394,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -334,25 +409,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -361,14 +436,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -376,42 +451,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -419,7 +494,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -427,7 +502,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -436,7 +511,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -446,45 +521,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "GreÅ¡ka" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -651,52 +743,53 @@ msgid "Found" msgstr "PronaÄ‘eno" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Odaberi direktorij za slike ekrana" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "PoÄetni ugao pogleda: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "PoÄetni smjer azimuta/visine pogleda: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autori" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licenca" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Skripta koja se izvodi: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Skripta koja se izvodi: [nijedna]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -704,16 +797,16 @@ "ZavrÅ¡eno preuzimanje novih kataloga sa zvijezdama!\n" "Ponovo pokrenite Stellarium za njihov prikaz." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Svi dostupni katalozi zvijezda su instalirani." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Dobavi katalog %1 od %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -722,7 +815,7 @@ "Skidam %1...\n" "(Možete zatvoriti ovaj prozor.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -733,7 +826,7 @@ "Broj zvijezda: %2 miliona\n" "Opseg magnitude: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -742,11 +835,11 @@ "GreÅ¡ka pri preuzimanju %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Provjera ispravnosti datoteke..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -756,115 +849,123 @@ "Datoteka je oÅ¡tećena." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1035,49 +1136,53 @@ msgid "OSX Developer: %1" msgstr "OSX programer: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Konzola skripte" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Prozori" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Svemir" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Bez opisa" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Bez padajućih zvijezda" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normalna uÄestalost" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standarna Perseids uÄestalost" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Izuzetna Leonidova uÄestalost" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Najveća uÄestalost ikada (1966 Leonids)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nova lokacija" @@ -1180,19 +1285,19 @@ msgid "starchart" msgstr "mapa zvijezda" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "GreÅ¡ku u pretrazi Simbada" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Pretraga Simbada" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Univerzitetu u Starzburu (Francuska)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard University (USA)" @@ -1208,30 +1313,36 @@ msgid "Alternative shortcut" msgstr "Dodatna preÄica" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Sistem ne podržava OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sunce" @@ -1248,12 +1359,12 @@ msgstr "Zemlja" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Mjesec" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1351,7 +1462,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1649,193 +1760,222 @@ msgstr "Eskimski" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korejski" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navaho" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Nordijski" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinezijski" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Zapadni" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Drveće" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Uragan" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Okean" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Pregled pejzaža" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "DjelimiÄno pomraÄenje Mjeseca" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Potpuno pomraÄenje Mjeseca" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "ÄŒuvar ekrana" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "PomraÄenje Sunca 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Startup skripta" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Horoskop" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Merkur trostruki izlazak i zalazak sunca" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Dvostruko pomraÄenje sa Deimosa 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Dvostruko pomraÄenje sa Deimosa 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "PomraÄenje sa Olympus Monsa Jan 10 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Screensaver Solarni sistem" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "VodiÄ kroz sazvijezÄ‘a" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Sunce s drugih planeta" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Najbolji pogled na zemlju s drugih tijela" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Pronalaz Venere" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Razgledajte svaki od instaliranih pejzaža." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skripta koja prikazuje djelimiÄno pomraÄenje Mjeseca." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skripta koja prikazuje potpuno pomraÄenje Mjeseca." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Spori, beskonaÄni pregled neba s prikazom sluÄajnih objekata." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1843,11 +1983,11 @@ "Skripta koja demonstrira potpuno pomraÄenje Sunca koje se desilo 2009. " "godine (lokacija=Rangpur, BangladeÅ¡)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skripta koja se automatski pokreće prilikom startanja programa" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1856,36 +1996,36 @@ "Ova skripta prikazuje sazviježđa iz horoskopa. To su sazviježđa koja leže " "duž linije koju pravi Sunce na nebeskom svodu tokom cijele godine." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1895,1502 +2035,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "VodiÄ kroz zapadna sazvijezÄ‘a." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Pogled na Sunce sa velikih planeta SunÄevog sistema i sa Plutona." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andora" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Ujedinjeni Arapski Emirati" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua i Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguila" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albanija" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenija" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Holandski Antili" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Anktarktik" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "AmeriÄka Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austrija" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australija" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbejdžan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosna i Hercegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "BangladeÅ¡" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgija" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bugarska" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrein" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Sultanat Brunej" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivija" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahami" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Butan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Ostrvo Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Bocvana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Bjelorusija" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Beliz" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kokosova Ostrva" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Demokratska Republika Kongo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "CentralnoafriÄka Republka" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republika Kongo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Å vicarska" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Obala SlonovaÄe" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Kukova Ostrva" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "ÄŒile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Kina" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolumbija" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Kostarika" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Srbija i Crna Gora" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kejp Verd" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Božićno Ostrvo" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Kipar" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ÄŒeÅ¡ka Republika" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "NjemaÄka" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Džibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Danska" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominika" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominikanska Republika" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Alžir" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekvador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonija" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egipat" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Zapadna Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritreja" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Å panija" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopija" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finska" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fidži" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandska Ostrva" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronezija" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Farska Ostrva" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Francuska" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Ujedinjeno Kraljevstvo" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Gruzija" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Francuska Gvajana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Gana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grenland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambija" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Gvineja" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Gvadalupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Ekvatorijalna Gvineja" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "GrÄka" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Južna Džordžija i Južna SendviÄka Ostrva" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Gvatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Gvineja Bisau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Gvajana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard ostrvo i McDonaldova ostrva" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Hrvatska" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "MaÄ‘arska" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonezija" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irska" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Izrael" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Indija" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Britanske teritorije u Indijskom okeanu" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Island" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italija" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamajka" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordan" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenija" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodža" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komori" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Sveti Kits i Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Demokratska Narodna Republika Koreja" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Republika Koreja" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuvajt" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kajmanska Ostrva" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazahstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Sveta Lucija" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "LihtenÅ¡tajn" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Å ri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberija" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesoto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litvanija" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luksemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latvija" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libija" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maroko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavija" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "MarÅ¡alova Ostrva" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedonija" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Mijanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolija" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Makau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Ostrva Sjeverna Marijana" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinik" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritanija" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Monserat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauricijus" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldivi" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malavi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Meksiko" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malezija" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibija" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nova Kaledonija" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Ostrvo Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigerija" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nikaragva" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Holandija" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "NorveÅ¡ka" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Novi Zeland" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peur" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Francuska Polinezija" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Nova Gvineja" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipini" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Poljska" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Sveti Pijer i Mikelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Porto Riko" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palestinske Teritorije" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paragvaj" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Katar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Reunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Rumunija" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Srbija" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Ruska Federacija" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudijska Arabija" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Solomonska Ostrva" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "SejÅ¡eli" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Å vedska" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Sveta Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenija" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard i Jan Mejn" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "SlovaÄka" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sijera Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalija" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tome i Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Sirija" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Svaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks i Caicos Ostrva" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "ÄŒad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Francuske Južne Teritorije" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Tajland" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadžikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "IstoÄni Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunis" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turska" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad i Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Tajvan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzanija" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukrajina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Mala PacifiÄka Ostrva Sjedinjenih AmeriÄkih Država" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Sjedinjene AmeriÄke Države" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Urugvaj" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikan" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Sveti Vinsent i Grenadini" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venecuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Britanska DjeviÄanska ostrva" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "AmeriÄka DjeviÄanska ostrva" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vijetnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Valis i Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Majote" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoslavija" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Južna Afrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambija" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabve" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Datum i vrijeme" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Dodaj 1 sideriÄki dan" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Dodaj 1 zvjezdani mjesec" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Dodaj jednu sideriÄku sedmicu" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Dodaj 1 zvjezdanu godinu" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Dodaj 1 zvjezdano stoljeće" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Dodaj 1 solarni dan" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Dodaj 1 solarni sat" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Dodaj jednu solarnu sedmicu" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Dodaj 1 sinodiÄki mjesec" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Dodaj 1 drakonski mjesec" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Dodaj 1 anomalistiÄki mjesec" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Dodaj 1 prosjeÄni tropski mjesec" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Dodaj 1 drakonsku godinu" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Dodaj 1 prosjeÄnu tropsku godinu" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Dodaj 1 prosjeÄno tropsko stoljeće" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Uspori izvrÅ¡avanje skripte" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Smanji brzinu vremena" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Uspori vrijeme (malo)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Ubrzaj izvrÅ¡avanje skripte" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Povećaj brzinu vremena" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Ubrzaj vrijeme (malo)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pauziraj izvrÅ¡avanje skripte" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Nastavi izvrÅ¡avanje skripte" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Postavi vrijeme na trenutno" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Normalno izvrÅ¡avanje skripte" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Postavi normalni protok vremena" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Postavi protok vremena na nulu" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Zaustavi izvrÅ¡avanje skripte" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Oduzmi 1 sideriÄki dan" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Oduzmi 1 zvjezdani mjesec" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Oduzmi jednu sideriÄku sedmicu" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Oduzmi 1 zvjezdanu godinu" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Oduzmi 1 zvjezdano stoljeće" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Oduzmi 1 solarni dan" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Oduzmi 1 solarni sat" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Oduzmi jednu solarnu sedmicu" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Oduzmi 1 sinodiÄki mjesec" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Oduzmi 1 drakonski mjesec" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Oduzmi 1 anomalistiÄki mjesec" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Oduzmi 1 prosjeÄni tropski mjesec" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Oduzmi 1 drakonsku godinu" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Oduzmi 1 prosjeÄnu tropsku godinu" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Oduzmi 1 prosjeÄno tropsko stoljeće" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Opcije prikaza" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Okreni po horizontali" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Prikaz na cijelom ekranu" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimutna linija" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Strane svijeta" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Slike sazviježđa" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Granice sazviježđa" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Nazivi sazviježđa" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Linije sazviježđa" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Pozadinska slika maglice" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "EkliptiÄka J2000 mreža" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekvatorijalna linija" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatorijalna mreža" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatorijalna mreža J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Magla" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "GalaktiÄka mreža" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "GalaktiÄka ravan" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Tlo" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Linija horizonta" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridijanska linija" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Maglice" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Noćni mod" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Natpisi planeta" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Orbite planeta" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Tragovi planete" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Zvijezde" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Nazivi zvijezda" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Okreni po vertikali" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Razno" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Automatski sakrij horizontalnu traku sa dugmadima" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Automatski sakrij vertikalnu traku sa dugmadima" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Nazad na poÄetnu" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "IzaÄ‘i" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Kopiraj informacije o oznaÄenom objektu u memoriju" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Snimi sliku ekrana" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Preklopi izmeÄ‘u ekvatorijalne i azimutalne glave" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "UkljuÄi/iskljuÄi grafiÄki interfejs" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Pomak i odabir" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centriraj odabrani objekat" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Postavi odabrani planet za matiÄni" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Prati objekat" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Uvećaj prema odabranom objektu" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Umanji" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Mjerna jedinica ugla" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Oznake kompasa" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Prikaži egzoplanete" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Konfiguracijski prozor Egzoplaneta" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Vidljivost" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Konfiguracijski prozor vidljivosti" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Konfiguracija plugina za okulare" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Pogled okulara" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Prikaži križiće" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Meni za okulare" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Okvir senzora slike" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telradov vidokrug" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Konfiguracijski prozor pulsara" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Konfiguracijski prozor kvazara" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Konfiguracijski prozor satelita" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Savjeti za setelite" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Natpisi za satelite" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Konfiguracijski prozor Historijskih supernovi" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Pomjeri teleskop na dati set koordinata" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skripte" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Pokreni skriptu za pejzaže iz datoteke" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Prikaži i uvećaj Mjesec" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "PodeÅ¡avanja" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Datum/vrijeme" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Pomoć" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Položaj" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Pretraga" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Prozor preÄica" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Nebo i pogled" @@ -3416,7 +3592,7 @@ msgstr "Osvježi" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Lokacija" @@ -3432,10 +3608,10 @@ msgid "Return to default" msgstr "Vrati na poÄetno" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "ObriÅ¡i" @@ -3444,7 +3620,7 @@ msgstr "Dodaj na listu" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Geografska Å¡irina:" @@ -3457,12 +3633,12 @@ "na primjer: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Geografska dužina:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Visina:" @@ -3486,364 +3662,408 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "PronaÄ‘i objekat" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "NaÄ‘i objekat ili poziciju" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "jota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gama" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kapa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mi" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ni" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ipsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "hi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "GrÄka slova sa Bayerovim oznakama" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekat" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Položaj" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "imena na engleskom" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Pretraži u listi.." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Liste" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Online astronomska baza podataka SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "ProÅ¡iri pretragu pomoću SIMBAD-a" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Opcije" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "imena na engleskom" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Pretraži u listi.." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Liste" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Pogled" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Nebo" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Oznake" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Pejzaž" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Nazivi zvijezda" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Nazivi i oznake" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planete" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planete i sateliti" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Prikaži planete" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Prikaži oznake planeta" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Prikaži orbite planeta" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simuliraj brzinu svjetlosti" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Skaliraj Mjesec" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Prikaži atmosferu" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Svjetlosna zagaÄ‘enost:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "pritisak, temperatura, koeficijent eksitacije" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Postavke prelamanja/priguÅ¡ivanja..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Apsolutna skala:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relativna skala:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Treperenje:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Zatamni slabo vidljive zvijezde kada je vidljiv jako svijetal objekat" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "DinamiÄko privikavanje oka" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Zvijezde padalice" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Sazviježđa" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Prikaži linije" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Prikaži nazive" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Prikaži granice" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Prikaži slike" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Svjetlina slika sazviježđa:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Nebeska sfera" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Prikaži liniju ekvatora" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Prikaži meridijansku liniju" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Prikaži liniju horizonta" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Prikaži ekliptiÄku liniju" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Prikaži liniju galaktiÄke ravni" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projekcija" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Dodaj/ukloni pejzaže..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Prikaži tlo" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Prikaži maglu" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Koristi pridruženi planet i položaj" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Koristi ovaj krajolik kao poÄetni" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Koristi ovu kulturu kao poÄetnu" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Vidljiv" @@ -3898,7 +4118,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "OdrediÅ¡te koje tražite kada pokrenete Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informacije o odabranom objektu" @@ -3914,11 +4134,8 @@ msgid "Display no information" msgstr "Ne prikazuj informacije" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "NiÅ¡ta" @@ -4060,7 +4277,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "PoÄetni datum i vrijeme" @@ -4073,19 +4290,23 @@ msgid "Other:" msgstr "Ostalo:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "koristi trenutno" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Pokreni Stellarium sa sistemskim datumom i vremenom" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Sistemski datum i vrijeme" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4093,23 +4314,23 @@ "Postavlja simulirano vrijeme na sljedeću pojavu tog vremena kada se " "Stellarium pokrene" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Sistemski datum u:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Postavke planetarija" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4117,51 +4338,51 @@ "IzobliÄenje sfernog ogledala koristi se pri projekciji Stellariuma na sferno " "ogledalo kod jeftinih planetarijskih sistema." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "IzobliÄenje sfernog ogledala" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Prekriva sve izvan srediÅ¡njeg kruga glavnog prikaza" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Kružni pogled" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Sakrij ostala sazviježđa kada odaberem jedno" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Odaberi jedno sazviježđe" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Poravnaj nazive s horizontom" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Oznake gravitacije" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "KontroliÅ¡ite prikaz pozadina za nebule." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Prikaži dugme za pozadinu nebule" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Preklopi dugmad za vertikalno i horizontalno okretanje." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Prikaži dugmad za rotiranje" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4169,92 +4390,98 @@ "Kada je omogućeno, \"Automatsko umanjivanje\" će postaviti i poÄetni smjer " "pogleda" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatsko umanjivanje vraća na poÄetni smjer pogleda" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Iscrtaj solarne sjenke" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Slike ekrana" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Direktorij slika ekrana" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Izokreni boje" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Ažuriranja kataloga zvijezda" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Pritisnite ovdje da zapoÄnete preuzimanje" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Preuzmite ovu datoteku kako biste vidjeli joÅ¡ viÅ¡e zvijezda" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Ponovo pokreni preuzimanje" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "PokuÅ¡aj ponovo" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Prekini preuzimanje. Uvijek ga možete pokrenuti ponovo kasnije" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Odustani" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Zatvori prozor kad se skripta izvodi" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Pokreni odabranu skriptu" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Zaustavi trenutno pokrenutu skriptu" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "UÄitaj pri pokretanju" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "prilagodi" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Glavni" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informacija" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigacija" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Alati" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Plugini" @@ -4430,12 +4657,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Prikazuje oznake kompasa na horizontu" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okulari" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4445,166 +4672,166 @@ "samo vidokrug i uvećanje). TakoÄ‘er je moguće prikazati okvir senzora i " "Telradov vidokrug." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" "Molimo vas da odaberete objekat prije nego se prebacite na pregled pomoću " "okulara." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Prethodni okular" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Sljedeći okular" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Odaberite &okular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "(De)aktiviraj &niÅ¡an" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Konfiguracija &okulara" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "(De)aktiviraj &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "(De)aktiviraj &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Prethodni CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Sljedeći CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Odaberi CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Rotiraj CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Resetuj rotaciju" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Okular FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Okular aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Uvećanje: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimenzije: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Senzor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Senzor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Prethodni teleskop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Sljedeći teleskop" @@ -4676,64 +4903,69 @@ msgid "Apparent field of view of the ocular" msgstr "Vidljivi vidokrug okulara" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotacija: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Uvećanje omogućeno ovim dvogledima" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Stvarno polje vidokruga pomoću ovih dvogleda" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Plugin okulari" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Verzija" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Pregled" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4741,7 +4973,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4752,14 +4984,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4768,191 +5000,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Ako naiÄ‘ete na probleme, molim vas da me kontaktirate. Uživajte!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "PreÄice" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[preÄica nije definisana]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Otvara iskaÄući navigacijski meni." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Omogućite samo ako je odabran objekat" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Skaliranje kruga slike" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Mapiranje tipki" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "De(aktiviraj) prikaz okulara:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Otvori iskaÄući navigacijski meni:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interfejs" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Kontrolna ploÄa na stranici" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Koristi stepene i minute za FOV u CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Općenito" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okulari" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Dodaj" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Ime:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "ŽariÅ¡na dužina:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Kraj polja:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Dvogledi" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Senzori" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "x rezolucija (pikseli):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "y rezolucija (pikseli)." -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Å irina Äipa (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Visina Äipa (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Å irina piksela (mikroni):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Visina piksela (mikroni):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskopi" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "PreÄnik:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Horizontalno okretanje" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Vertikalno okretanje" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Informacije" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Sateliti" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4960,106 +5201,166 @@ "Pretpostavka pozicije umjetnih satelita u Zemljinoj orbiti na osnovu NORAD " "TLE podataka" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Stara satellites.json datoteka viÅ¡e nije kompatibilna - koristim poÄetnu " "datoteku" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Katalog #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Internacionalna odrednica" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "vjeÅ¡taÄki satelit" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Domet (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Brzina dometa (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Visina (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "TaÄka (geog. Å¡ir./geog. duž.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME koordinate (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME brzina (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Satelit i posmatraÄ su izloženi sunÄevoj svjetlosti." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satelit je vidljiv." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Satelit je u fazi pomraÄenja." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satelit nije vidljiv" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Stellarium Satellites plugin" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" "Plugin za satelite predviÄ‘a položaje umjetnih satelita u Zemljinoj orbiti." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Napomene za korisnike" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Sateliti i njihove orbite su prikazane u odnosu na posmatraÄa koji se nalazi " "na Zemlji." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5069,7 +5370,7 @@ "dani, sedmice ili možda jedan mjesec unazad ili unaprijed). OÄekujte veoma " "Äudne podatke ako koristite datume izvan ovog opsega." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5079,7 +5380,7 @@ "potrebno redovno ažurirati." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5090,7 +5391,7 @@ "Stara datoteke će biti pohranjena kao %4. Možete je pronaći folderu s " "korisniÄkim podacima, pod \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5099,11 +5400,11 @@ "nedostaju u potpunosti ili sadrže greÅ¡ke." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Ažuriranje TLE podataka" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5112,7 +5413,7 @@ "Plugin za satelite može automatski preuzeti TLE podatke sa interneta. To će " "se desiti automatski ako su postojeći podaci stariji od 72 sata. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5123,7 +5424,7 @@ "datoteke na vaÅ¡em raÄunaru. Ova datoteka mora biti u istom formatu kao i " "Celestrak nadogradnje (primjer možete pogledati ovdje: %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5132,11 +5433,11 @@ "sadržavao bilo Å¡ta unutar uglastih zagrada, to će biti uklonjeno prije nego " "se podaci budu poÄeli koristiti." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Dodajem nove satelite" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5148,11 +5449,11 @@ "i kliknite na dugme '+'. Odaberite satelite koje želite dodati i kliknite na " "dugme za dodavanje." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "TehniÄke napomene" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5160,7 +5461,7 @@ "Pozicije se raÄunaju pomoću SGP4 i SDP4 metoda koristeći se NORAD TLE " "podacima. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5169,24 +5470,26 @@ "Spacetrack izvjeÅ¡taja #3 (ukljuÄujući i Spacetrack izvjeÅ¡taj #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Pogledajte %1ovaj dokument%2 za detaljnije informacije." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Linkovi" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5194,31 +5497,34 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Ako imate pitanje, %1odgovor možete dobiti ovdje%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "GreÅ¡ke možete prijaviti %1ovdje%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5226,295 +5532,335 @@ "Ako želite da poÅ¡aljete zahtjev za nove mogućnosti, možete kreirati " "izvjeÅ¡taj o greÅ¡ki i ozbiljnost tog izvjeÅ¡taja postaviti na \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internet nadogradnje su onemogućene" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Ažuriram sada..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Sljedeće ažuriranje: <1 minute" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Sljedeće ažuriranje: %1 minuta" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#, qt-format +msgid "Next update: %1 hours" +msgstr "Sljedeće ažuriranje: %1 sati" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 +msgid "Update error" +msgstr "GreÅ¡ka pri ažuriranju" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Next update: %1 hours" -msgstr "Sljedeće ažuriranje: %1 sati" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 +msgid "[new source]" +msgstr "[novi izvor]" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 #: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 msgid "Update now" msgstr "Ažuriraj odmah" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 msgid "Update from files" msgstr "Ažuriraj iz datoteke" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 -msgid "Update error" -msgstr "GreÅ¡ka pri ažuriranju" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 -#, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Ažurirano %1/%2 satelita; %3 nedostaje" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 -msgid "[new source]" -msgstr "[novi izvor]" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[greÅ¡ka u proraÄunu orbite]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[nedavno dodano]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[sve nije prikazano]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[sve prikazano]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[sve]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Odaberite TLE datoteku za ažuriranje" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Preuzimam podatke..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "Stellarium preuzima podatke za satelite. Molimo va da saÄekate..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Odaberite TLE izvorne datoteke..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Procesiram podatke..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Nema podataka za preuzimanje. PokuÅ¡ajte kasnije." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Katalog broj: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Konfiguracija satelita" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Ažuriraj TLE listu iz internet izvora" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Ažuriraj iz internet izvora" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Posljednje ažuriranje:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Frekvencija ažuriranja (sati):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Natpisi" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "VeliÄina fonta za natpise (pikseli):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Orbitalne linije" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Broj segmenata koji će se koristiti za iscrtavanje linije" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Broj segmenata:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Trajanje jednog segmenta u sekundama" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Dužina segmenta (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" "Broj segmenata koji će se koristiti za iscrtavanje svakog od krajeva linije" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Dužina izblijeÄ‘ivanja:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Vrati poÄetne postavke" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "SaÄuvaj postavke kao poÄetne" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Postavke" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Dodaj joÅ¡ satelita" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Ukloni odabrane satelite" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "SaÄuvaj promjene" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Katalog broj:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Prikaži odabrane satelite" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Prikazano" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Prikaži orbitalne linije za odabrane satelite" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Orbita" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Katalog broj:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Opis:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Grupe:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Lista grupa odvojenih zarezima" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE podaci:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORAD-ovi dvolinijski podaci o orbitama" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Ukloni odabrane satelite" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Dodaj joÅ¡ satelita" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "SaÄuvaj promjene" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5522,15 +5868,15 @@ "Unesite ili uredite URL odabranog izvora. Promjene će biti saÄuvan nakon Å¡to " "pritisnete tipku Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Dodaj novi izvor" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Ukloni oznaÄeni izvor" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Izvori" @@ -5566,11 +5912,11 @@ msgid "Discard" msgstr "Odbaci" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Upravljanje teleskopom" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5578,12 +5924,12 @@ "Ovaj plugin omogućava Stellariumu da Å¡alje \"mnoÅ¡tvo\" komandi motorizovanom " "teleskopu (tzv. \"GoTo teleskop\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Pomjeri teleskop #%1 na zadani objekat" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Pomjeri teleskop #%1 na taÄku koja je trenutno u centru ekrana" @@ -5989,62 +6335,62 @@ "datuma i vremena u donjoj traci." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Januar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Februar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Mart" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "April" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Maj" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Juni" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Juli" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "August" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Septembar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Oktobar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Novembar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Decembar" @@ -6205,7 +6551,7 @@ "Ove postavke kontroliÅ¡u prikaz vremena i datuma u traci na dnu ekrana." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Format prikaza datuma" @@ -6223,7 +6569,7 @@ msgstr "24-satni format" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Format prikaza datuma" @@ -6239,11 +6585,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-yyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "KorisniÄki tekst interfejs" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6251,144 +6597,144 @@ "Implementacija plugina 0.9.x serije korisniÄkog tekst interfejsa (TUI), " "koriÅ¡tena u planetarijumskim sistemima" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Tijelo SunÄevog sistema" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Trenutni datum/vrijeme" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Postavi vremensku zonu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Dnevni kljuÄevi" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "PoÄetna postavka datuma/vremena" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "sistem" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "postavka" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "yyyymmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Jezik" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Prikaži zvijezde" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Boje" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Nazivi maglica" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Savjeti o maglicama" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Linija galaktiÄke ravni" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efekti" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "RuÄno uvećanje" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Množilac skaliranja dimenzija" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intenzitet MlijeÄnog puta:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Frekvencija natpisa maglica:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Trajanje uvećanja:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Vrijeme prikaza kursora:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Postavljanje pejzaža postavlja i lokaciju" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Pokreni lokalnu skriptu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Zaustavi pokrenutu skriptu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD skripta" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administracija" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "UÄitaj poÄetne postavke" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "SaÄuvaj trenutne postavke" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Ugasi" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[nema TUI Ävora]" @@ -6424,16 +6770,16 @@ "JoÅ¡ je u fazi izrade." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "PoÅ¡alji upit za MPC %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Bit će vraćen samo jedan rezultat ako upit bude uspjeÅ¡an." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6441,7 +6787,7 @@ "Komete i asteroide je moguće identificirati pomoću njihovog broja, imena (na " "engleskom jeziku) ili privremene oznake." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6630,36 +6976,43 @@ msgid "Solar System" msgstr "SunÄev sistem" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Historijske supernove" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Vrsta supernove: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Plugin Historijske supernove" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Svijetle krivulje" @@ -6677,7 +7030,7 @@ msgstr "Priznanja" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6693,14 +7046,14 @@ msgstr "Institu za teorijsku i eksperimentalnu fiziku" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "u Rusiji" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6708,8 +7061,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Sljedeće ažuriranje za: %1 dana" @@ -6727,29 +7081,106 @@ msgstr "Konfiguracija plugina Historijske supernove" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Ažuriraj katalog sa interneta" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Ažuriraj iz internet izvora" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "UÄestanost ažuriranja (dani):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[sljedeće ažuriranje]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kvazari" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6768,51 +7199,61 @@ msgid "Z (redshift): %1" msgstr "Z (redshift): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Plugin Kvazari" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Kvazari su ažurirani" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Konfiguracija kvazara" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Konfiguracija plugina Kvazari" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Mod prikaza za kvazare" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Crtaj sve kvazare bez natpisa" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Omogući prikaz distribucije za kvazare" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsari" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6932,11 +7373,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Plugin Pulsari" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6944,137 +7385,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Napomena" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "identifikatori pulsara imaju prefiks 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Zasluge" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino radioastronomska opservatorija" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Nancay radioastronomska opservatorija" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "u Francuskoj" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsari su ažurirani" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Konfiguracija pulsara" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Konfiguracija plugina Pulsari" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Mod za prikaz pulsara" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Nacrtaj sve pulsare bez natpisa" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Omogući prikaz distribucije pulsara" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Egzoplanete" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metalnost" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Težina" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "PreÄnik" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Efektivna temperatura: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Egzoplaneta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Period" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dana" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Sporedna osa" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Ekscentricitet" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Nagib" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Ugaona udaljenost" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Godina otkrića" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Plugin Egzoplanete" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7082,49 +7527,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Egzoplanete su ažurirane" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Konfiguracija egzoplaneta" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Konfiguracija plugina Egzoplanete" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Ažuriraj podatke o egzoplanetama sa interneta" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Mod prikaza za egzoplanete" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Nacrtaj sve sisteme sa egzoplanetama bez natpisa" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Omogući prikaz distribucije egzoplaneta" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Prikaži egzoplanete od datuma njihovog otkrića" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Omogući vremensku osu otkrića za egzoplanete" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Analiza vidljivosti" @@ -7140,185 +7674,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "jan." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "feb." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "mar." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "apr." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "maj" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "jun." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "jul." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "avg." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "sep." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "okt." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "nov." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "dek." -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Postavljeno %1 (u %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "IzaÅ¡lo %1 (prije %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "ZaÅ¡lo %1 (prije %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Izlazi %1 (u %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Cirkumpolarno." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Bez izlaska." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "NajvisoÄija taÄka u %1 (prije %2) pod %3 stepeni." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "NajvisoÄija taÄka u %1 (prije %2) pod %3 stepeni." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Izvor nije osmotriv." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Nema ahroniÄkog i kosmiÄko izlaska/zalaska." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Najveće produženje: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Najveća SunÄeva udaljenost: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (na %1 step.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "AhroniÄki izlazak/zalazak" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Nema ahroniÄkog izlaska/zalaska." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "KosmiÄki izlazak/zalazak." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Nema kosmiÄkog izlaska/zalaska." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Vidljivo tokom cijele godine." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Nije vidljivo tokom tamnih noći." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Noći iznad horizonta: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "DANAS:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "OVE GODINE:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Prethodni pun Mjesec: %1 %2 at %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Sljedeći pun Mjesec: %1 %2 u %3:%4. " @@ -7710,6 +8238,12 @@ #~ msgid "Update me via Internet: " #~ msgstr "Nadogradi me putem interneta: " +#~ msgid "Nebulas background images" +#~ msgstr "Pozadinska slika maglice" + +#~ msgid "Nebulas" +#~ msgstr "Maglice" + #~ msgid "Planets labels" #~ msgstr "Nazivi planeta" @@ -7793,6 +8327,13 @@ #~ msgid "Hydra" #~ msgstr "Hydra" +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORAD-ovi dvolinijski podaci o orbitama" + +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Ažurirano %1/%2 satelita; %3 nedostaje" + #~ msgid "" #~ "Support is provided via the Launchpad website. Be sure to put \"Satellites " #~ "plugin\" in the subject when posting." @@ -7800,6 +8341,15 @@ #~ "PodrÅ¡ka se pruža preko Launchpad web stranice. Ne zaboravite upisati " #~ "\"Satellites plugin\" kao naslov prilikom slanja poruke." +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Ažuriraj TLE listu iz internet izvora" + +#~ msgid "TLE data:" +#~ msgstr "TLE podaci:" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Lista grupa odvojenih zarezima" + #~ msgid "Crosshairs" #~ msgstr "NiÅ¡ani" @@ -7944,6 +8494,12 @@ #~ msgid "A tour via western constellations." #~ msgstr "VodiÄ kroz zapadna sazvijezÄ‘a." +#~ msgid "Display mode for quasars" +#~ msgstr "Mod prikaza za kvazare" + +#~ msgid "Display mode for pulsars" +#~ msgstr "Mod za prikaz pulsara" + #~ msgid "0 deg." #~ msgstr "0 step." diff -Nru stellarium-0.12.1/po/stellarium/ca.po stellarium-0.12.4/po/stellarium/ca.po --- stellarium-0.12.1/po/stellarium/ca.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ca.po 2013-09-23 06:20:13.000000000 +0000 @@ -10,29 +10,29 @@ msgstr "" "Project-Id-Version: ca\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-14 21:33+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-12 16:41+0000\n" "Last-Translator: Daniel Alomar i Claramonte \n" "Language-Team: Català \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:12+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-13 04:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridià" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Eclíptica" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Equador" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horitzó" @@ -40,46 +40,46 @@ msgid "Galactic Plane" msgstr "Plà galàctic" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor/a: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Ubicació: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipus %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitud: %1 (extincted to: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitud: %1" @@ -89,114 +89,114 @@ msgid "Size: %1" msgstr "Mida: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galàxia" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Cúmul obert" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Cúmul globular" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebulosa planetària" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Nebulosa fosca" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Cúmul associat amb nebulosa" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Desconegut" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Tipus no documentat" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitud absoluta: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Eclíptica Topocéntrica (de la data): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Obliqüitat (de la data, per a la Terra): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distància: %1UA (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distància: %1UA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diàmetre aparent: %1, amb anells: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diàmetre aparent: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Període sideral: %1 dies (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Dia sideral: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Dia solar mitjà: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Angle de fase: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongació: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Il·luminat: %1%" @@ -207,7 +207,7 @@ msgstr "Nomenament provisional: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "estrella" @@ -222,48 +222,123 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnitud aparent: %1 (per extinció)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "Estel variable eruptiva" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "Estel variable pulsant" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "Estel variable rotatiu" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "Estel variable cataclísmica" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "Sistema binari eclipsant" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "Estel variable" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "estel doble" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Tipus %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitud: %1 (extints: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitud: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Rang de la magnitud: %1%2%3 (Sistema fotomètric: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Rang de magnitud: %1%2%3/%4 (Sistema fotomètric: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Tipus espectral: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distància: %1 anys llum" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paral·laxi %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Època de llum mínima: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Època de llum màxima: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Període: %1 dies" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Següent mínim de llum: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Següent màxim de llum: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Duració de l'eclipsi: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Hora de sortida: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Nau espaial" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "La correcció està desactivada. Fer servir només si saps que estas fent!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -275,7 +350,7 @@ "Relativity Confirmed by Ancient Solar Eclipses (%1). Veure més " "informació %2aquí%3" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -284,7 +359,7 @@ "Aquesta equació empírica va ser publicada per G. M . Clemente a l'article " "On the system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -297,7 +372,7 @@ "Jean Meeus al seu Astronomical Formulae for Calculators. També va " "ser adoptada per el programari de PC SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -307,7 +382,7 @@ "(1952) que va ser adoptada a Astronomical Ephemeris i a Canon " "of Solar Eclipses per Mucke i Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -319,7 +394,7 @@ "mateixa relació va ser adoptada de manera implícita a les taules syzygy de " "Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -330,7 +405,7 @@ "l'article The accelerations of the earth and moon from early " "astronomical observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -339,7 +414,7 @@ "Aquesta equació va ser publicada per F. R. Stephenson a l'article Pre-" "Telescopic Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -353,7 +428,7 @@ "period 1800-1975 (%1) tal com es pot comprovar a les dades publicades " "per Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -363,7 +438,7 @@ "4000 to +2800 de P. Breetagnon i L. Simon (1986) i per el programari " "de PC RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -374,12 +449,12 @@ "ser article Long-term changes in the rotation of the earth - 700 B.C. to " "A.D. 1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" "Aquest aalgoritme es fa servir al programari de planetari de PC Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -389,7 +464,7 @@ "Canon of Solar Eclipses: 1986-2035 (1987) i en el seu Fifty Year " "Canon of Lunar Eclipses: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -398,7 +473,7 @@ "Aquesta fórmula va ser obtinguda per K.M. Borkowski (%1) del anàlisi de les " "dades recavades de 31 eclipsis solars datats entre el 2137 aC i el 1751 dC." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -411,7 +486,7 @@ "the Period 1800-1988 (%1) i les dades s'ajusten als valors " "proporcionats per Stephenson i Morrison (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -421,7 +496,7 @@ "versió curta del la teoria lunar ELP 2000-85 al seu Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -432,7 +507,7 @@ "l'article Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD " "1990 (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -441,7 +516,7 @@ "F. R. Stepenson va publicar aquesta fórmula al seu llibre Historical " "Eclipses and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -451,7 +526,7 @@ "utilitzat. Taula per 1620..2000, i inclou una variant de Chapront, Chapront-" "Touze i Francou (1997) per dades fora de 1620..2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -461,7 +536,7 @@ "Laboratory) de la NASA fa servir aquesta fórmula al seu web interactiu %1JPL " "Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -470,7 +545,7 @@ "Aquest polinomi va ser publicat per J. Meeus i L. Simon al seu article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -480,7 +555,7 @@ "Personal Computer (2000) proporciona polinòmics simples de 3è ordre " "quadrant les dades del passat recent." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -492,7 +567,7 @@ "Tabulations (2002). Es basat en Astronomical Algorithms (1991) " "de Jean Meeus." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -503,7 +578,7 @@ "Stephenson al seu article Historical values of the Earth's clock error " "%1T and the calculation of eclipses (%2) amb apèndix a (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -516,7 +591,7 @@ "amb un cosinus i la funció quadrada. Això es basa en una periodicitat " "possible descrit per Stephenson (%2). Veure més informació %3aquí%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -532,11 +607,34 @@ "fórmula s'utilitza també a les efemèrides solar, lunar i planetària del " "programari SOLEX." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Fet servir per omissió." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Aquesta solució de B. Banjevic, basada a la de Stephenson i Morrison (1984), " +"va ser publicada a l'article Ancient eclipses and dating the fall of " +"Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Aquesta solució de S. Islam, M- Sadiq i M. S. Qureshi, basada en Meeus i " +"Simons (2000), va ser publicada a l'article Error Minimization of " +"Polynomial Approximation of DeltaT (%1) i revisada per Sana Islam al " +"2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -545,15 +643,15 @@ "Aquesta es una fórmula quadràtica per el càlcul de %1T amb coeficients " "definits per l'usuari." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Error" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "amb valors sense sentit fora d'aquest rang" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -561,21 +659,22 @@ "amb una mitjana d'error de menys d'un segon, màx. 1.9s d'error, i els valors " "sense sentit fora d'aquest rang" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "amb valors zero fora d'aquest rang" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "amb un típic 1-segon de precisió i els valors zero fora d'aquest rang" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "El rang vàlid d'ús: entre anys %1 i %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "El rang vàlid d'ús: entre els anys %1 i %2." @@ -746,52 +845,53 @@ msgid "Found" msgstr "Trobat" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" -msgstr "Sel·leccioni carpeta per guardar la captura de pantalla" +msgstr "Selecciona la carpeta per les captures de pantalles" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Camp de visió inicial: %1/%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Direcció de la vista inicial Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autors" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contacte" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Llicència" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Executant script: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Executant script: [cap]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -799,16 +899,16 @@ "Finalitzada la descàrrega del nous catàlegs estel·lars!\n" "Reinicia Stellarium per poder fer-los servir." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Tots els catàlegs estelars han sigut instal·lats" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Obtenint catàleg %1 de %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -817,7 +917,7 @@ "Descarregant %1...\n" "(pots tancat aquesta finestra.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -828,7 +928,7 @@ "Nombre d'estels: %2 Milions\n" "Rang de magnitud: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -837,11 +937,11 @@ "Error descarregant %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verificant integritat del fitxer..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -851,115 +951,123 @@ "El fitxer està corrupte." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritme de" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Sense correció" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "UAI (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Efemèrides astronòmiques (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) i Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller i Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel i Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison i Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson i Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson i Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel i Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze i Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson i Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (aamb Chapront, Chapront-Touze i Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus i Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck i Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold i Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison i Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak i Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq i Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Equació personalitzada per %1T" @@ -1131,49 +1239,53 @@ msgid "OSX Developer: %1" msgstr "Desenvolupador OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Consola del script" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Finestres" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Espai" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Sense descripció" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Sense estels fugaços" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Ràtio normal" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Ràtio de Perseides estàndard" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Rati de la tempesta de meteors" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Ràtio de Leònides excepcional" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Ràtio mes gran (Leònides del 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nova localització" @@ -1215,12 +1327,12 @@ #: src/gui/AddRemoveLandscapesDialog.cpp:159 #, qt-format msgid "Landscape \"%1\" has been removed successfully." -msgstr "El paisatge \"%1\" ha estat el·liminat satisfactòriament" +msgstr "El paisatge \"%1\" ha estat eliminat satisfactòriament" #: src/gui/AddRemoveLandscapesDialog.cpp:170 #: src/gui/AddRemoveLandscapesDialog.cpp:240 msgid "The selected landscape could not be (completely) removed." -msgstr "El paisatge sel·leccionat no pot ser el·liminat (completament)" +msgstr "El paisatge seleccionat no pot ser eliminat (completament)" #. TRANSLATORS: MiB = mebibytes (IEC 60027-2 standard for 2^20 bytes) #: src/gui/AddRemoveLandscapesDialog.cpp:193 @@ -1239,8 +1351,7 @@ "The selected file is not a ZIP archive or does not contain a Stellarium " "landscape." msgstr "" -"El fitxer sel·leccionat no es un arxiu ZIP o no conté un paisatge de " -"Stellarium" +"El fitxer seleccionat no es un arxiu ZIP o no conté un paisatge de Stellarium" #. TRANSLATORS: The parameter is the duplicate name or identifier. #: src/gui/AddRemoveLandscapesDialog.cpp:232 @@ -1252,7 +1363,7 @@ #: src/gui/AddRemoveLandscapesDialog.cpp:243 #, qt-format msgid "You can remove it manually by deleting the following directory: %1" -msgstr "Pots el·liminar-lo manualment esborrant el següent directori: %1" +msgstr "Pots eliminar-lo manualment esborrant el següent directori: %1" #: src/gui/ScriptConsole.cpp:73 msgid "quickrun..." @@ -1278,19 +1389,19 @@ msgid "starchart" msgstr "mapa d'estels" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Error de cerca Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Cerca Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universitat d'Estrasburg (França)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Universitat de Harvard (Estats Units)" @@ -1306,30 +1417,38 @@ msgid "Alternative shortcut" msgstr "Drecera alternativa" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Equació personalitzada per %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Una equació típica per al càlcul del %1T es veu així:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "on" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "any" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Aquest sistema no suporta OpenGL" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"La plataforma no suporta els requeriment mínim de OpenGL 1.2. Si us plau, " +"actualitza el controlador de la targeta gràfica." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sol" @@ -1346,12 +1465,12 @@ msgstr "Terra" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Lluna" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mart" @@ -1449,7 +1568,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1747,193 +1866,222 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Vèdica Ãndia" + +#: src/translations.h:171 msgid "Korean" msgstr "Coreà" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maorí" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navaho" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Nòrdic" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinèsica" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongà" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Occidental" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guéreins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Arbres" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Huracà" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Oceà" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Recorregut de Paisatges" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Eclipsi Parcial de Lluna" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Eclipsi Total de Lluna" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Protector de pantalla" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Eclipsi Solar del 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Script d'inici" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodíac" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Triple sortida i posta de Mercuri" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Doble eclipsi des de Deimos al 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Doble eclipsi des de Deimos al 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Eclipsi des de la lluna Olympus el 10 de gener de 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Ocultació de la Terra i Jupiter al 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 Trànsits i 2 Eclipsis de Deimos 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Protector de pantalles del Sistema Sola" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Gira per les Constel·lacions" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "El Sol des de diferents planetes" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Les millors vistes de la terra des de altres cossos" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Transis de Venus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analema" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Volta per les Cultures del Cel" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Events de la Terra des de Mercuri" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Events de la Terra des de Venus" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Events de la Terra des de Mart" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Elongació més gran i Brillantor des de Mart" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Majors elongacions de la Terra i Mart des de Jupiter" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Fer una ullada a cadascun dels paisatges instal·lats" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Veure cada una de les cultures del cel instal·lades." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Script per mostrar un eclipsi parcial de lluna" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Script per mostrar un eclipsi total de lluna" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Una volta lenta i infinita pel cel, mirant objectes aleatòriament" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1941,11 +2089,11 @@ "Script que mostra l'eclipsi total de Sol que va succeir al 2009 " "(localització=Rangpur, Bangla Desh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Script que s'executa automàticament al inici" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1955,7 +2103,7 @@ "constel·lacions que es troben al llarg de la línia que traça el Sol sobre " "l'esfera celeste durant el transcurs d'un any." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1963,7 +2111,7 @@ "A causa de les peculiaritats en l'òrbita de Mercuri i la rotació, en certs " "llocs el sol sortirà i es pondrà 3 cops en un dia de Mercuri." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1971,7 +2119,7 @@ "Just abans que Mart eclipsi el Sol, Fobos surt per darrere i l'eclipsa " "primer. Té lloc entre Escorpí i Sagitari el 26 d'abril de 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1979,12 +2127,12 @@ "Just abans que Mart eclipsi el Sol, Fobos surt per darrere i l'eclipsa " "primer. Té lloc entre Taure i Bessons el 23 de juliol de 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Fobos eclipsant al Sol vist des del Mont Olimp el 10 de gener del 2068" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1994,7 +2142,7 @@ "Però ocultacions de tots dos en el mateix dia són molt rares. Aquí n'hi ha " "un que succeirà a terme 1/23/2048. A la velocitat real." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2010,33 +2158,33 @@ "Deimos. Quan Fobos sorgeix de Mart encara està eclipsada i atenuat a " "l'ombra de Mart, sortint a la llum més tard." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Estalvi de pantalla de diversos esdeveniments en el Sistema Solar. 171 " +"Salvapantalles de diversos esdeveniments en el Sistema Solar. 187 " "esdeveniments en total!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Un tour per les constel·lacions occidentals" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Mirar al Sol des de els planetes gegants del Sistema Solar i Plutó" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "Les millors vistes de la Terra des d'altres cossos del Sistema Solar en el " "segle 21." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "Trànsit de Venus vist des de Sydney, Australia el 6 de juny de 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." @@ -2044,7 +2192,7 @@ "Una demostració del analema - el camí que fa el Sol creuant el cel durant " "l'any." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2052,1468 +2200,1504 @@ "Flaix de la supernova observada per Tycho Brahe al 1572. El plugin " "Supernovae ha d'estar activat." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "Elongació més gran i Brillantor des de Mart 2000-3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "Elongació més gran i Brillantor des de Jupiter 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Unió dels Emirats Àrabs" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua i Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albània" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armènia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Antilles Holandeses" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antàrtida" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa Americana" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Àustria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Austràlia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaidjan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bòsnia i Hercegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangla Desh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Bèlgica" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgària" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei (Negara Brunei Darussalam)" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolívia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahames" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Illa Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Bielorússia" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canadà" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Illes Cocos" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "República Democràtica del Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "República Centreafricana" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "República del Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Suïssa" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Costa d'ivori" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Illes Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Xile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Camerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Xina" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colòmbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Sèrbia i Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Cap verd" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Illa Christmas" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Xipre" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "República Txeca" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Alemanya" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Dinamarca" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "República dominicana" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algèria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Equador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estònia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egipte" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Sàhara occidental" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Espanya" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiòpia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlàndia" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Illes Malvines" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronèsia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Illes Fèroe" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "França" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Regne Unit" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Geòrgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guaiana francesa" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Groenlàndia" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gàmbia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadalupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Guinea equatorial" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grècia" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Illes Geòrgia del Sud i Sandwich del Sud" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Illes Heard i McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Hondures" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Croàcia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haití" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hongria" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonèsia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlanda" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Ãndia" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Territori britànic de l'oceà Ãndic" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Iraq" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islàndia" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Itàlia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordània" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japó" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirguizistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Cambodja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comores" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Christopher i Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Corea del nord" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "República de Corea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Illes Caimà" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Líban" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Libèria" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lituània" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Letònia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Líbia" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marroc" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Mònaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldàvia" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Illes Marshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedònia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Birmània" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongòlia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Illes Marianes del nord" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinica" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritània" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Maurici" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldives" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malaui" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mèxic" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malàisia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Moçambic" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namíbia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nova Caledònia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Níger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Illes Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigèria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Holanda" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Noruega" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nova Zelanda" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panamà" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Perú" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinèsia francesa" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Nova Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipines" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polònia" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint-Pierre i Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Illes Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Territoris palestins" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguai" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Illa de la Reunió" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Sèrbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Rússia" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Aràbia saudita" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Illes Salomó" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Suècia" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Santa Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Eslovènia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard i Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Eslovàquia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somàlia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "São Tomé i Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Síria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swazilàndia" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Illes Turks i Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Txad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Territoris francesos del sud" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Tailàndia" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadjikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Timor oriental" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunísia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turquia" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinitat i Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzània" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ucraïna" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Illes perifèriques menors dels Estats Units" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Estats units" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguai" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Ciutat estat del Vaticà" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent i les Grenadines" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Veneçuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Illes verges britàniques" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Illes verges americanes" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis i Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Iemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Iugoslàvia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Sud-àfrica" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zàmbia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data i hora" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Afegeix 1 dia sideral" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Afegeix 1 mes sideral" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Afegeix 1 setmana sideral" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Afegeix 1 any sideral" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Afegir un segle sideral" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Afegeix 1 dia solar" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Afegeix 1 hora solar" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Agefeix 1 setmana solar" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Afegir un mes sinòdic" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Afegir un mes draconic" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Afegir un mes anomalísti" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Afegir un mes tropical mitjà" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Afegir un any draconic" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Afegir un any tropical mitjà" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Afegir 1 segle tropicà mitjà" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Reduir la ràtio d'execució de l'script" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Disminueix la velocitat del temps" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Reduir velocitat del temps (una mica)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Accelerar la ràtio d'execució de l'script" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Incrementa la velocitat del temps" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Augmentar velocitat del temps (una mica)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pausa l'execució de l'script" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Continua l'execucio de l'script" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Estableix hora actual" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Establir la ràtio normal d'execució de l'script" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Estableix ràtio normal del temps" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Estableix ràtio del temps a zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Atura la execució del script" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Resta 1 dia sideral" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Resta 1 mes sideral" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Resta 1 setmana sideral" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Resta 1 any sideral" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Restar 1 segle sideral" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Resta 1 dia solar" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Resta 1 hora solar" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Resta 1 setmana solar" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Resta un mes sinòdic" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Resta un mes draconic" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Resta un mes anomalístic" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Resta un mes tropical mitjà" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Resta un any draconic" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Resta una any tropical mitjà" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Restar 1 segle tropicà mitjà" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Opcions de visualització" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Volteja escena horitzontalment" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Mode pantalla completa" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Graella azimutal" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Punts cardinals" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Dibuix de les constel·lacions" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Límits de les constel·lacions" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Etiquetes de les constel·lacions" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Línies de les constel·lacions" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Imatges de nebuloses de fons" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Imatges de fons de l'objectes de l'espai profund" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Graella eclíptica J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Línia de l'eclíptica" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Línia de l'equador" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Graella equatorial" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Graella equatorial J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Boira" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Graella galàctica" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Plà galàctic" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Terra" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "línia d'horitzó" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Línia del meridià" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebuloses" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Objectes de l'Espai Profund" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Mode nocturn" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Etiquetes de planetes" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Ã’rbites dels planetes" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Traça del planeta" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Estels" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Etiquetes dels estels" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Volteja escena verticalment" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Miscel·lània" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Ocultar automàticament la barra de botons horitzontal" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Ocultar automàticament la barra de botons vertical" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Ves a casa" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Sortir" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Copia la informació del objecte seleccionat al portapapers" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Desa la captura de pantalla" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Commuta entre muntura equatorial i azimutal" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Commuta la visibilitat de la IUG" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" -msgstr "Moviment i sel·lecció" +msgstr "Moviment i selecció" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centra en l'objecte seleccionat" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Estableix planeta seleccionat com a planeta casa" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Segueix objecte" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Apropat a l'objecte seleccionat" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Redueix el zoom" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Mesura d'angles" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Marques de la brúixola" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Mostra exoplanetes" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Finestra de configuració per exoplanetes" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observabilitat" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Finestra de configuració per l'observabilitat" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Configuració del connector d'oculars" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Vista d'ocular" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Mostra els cursors" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Menú emergent d'oculars" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Marc del sensor d'imatge" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Punt de mira Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Selecciona el telescopi següent" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Selecciona l'ocular següent" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Selecciona el telescopi previ" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Selecciona l'ocular previ" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Mostra els pulsars" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Finestra de configuració de púlsars" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Mostra els quasars" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Finestra de configuració de quàsars" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Finestra de configuració dels satèl.lits" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Suggeriments dels satèl.lits" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Etiquetes dels satèl.lits" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Finestra de configuració de l'historia de les supernoves" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Finestras de configuració de Noves Brillants" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Moure telescopi al grup de coordenades donades" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Mostrar estadístiques de la renderització" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripts" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Executar seqüencia d'ordres de paisatges des d'un arxiu" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Mostra i fes zoom de La Lluna" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Finestra de configuració" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Finestra data/hora" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Finestra d'ajuda" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Finestra d'ubicació" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Finestra de cerca" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Finestra de dreceres" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Finestra d'opcions de visualització i del cel" @@ -3539,7 +3723,7 @@ msgstr "Refresca" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Ubicació" @@ -3555,10 +3739,10 @@ msgid "Return to default" msgstr "Tornar als valors predeterminats" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Suprimeix" @@ -3567,7 +3751,7 @@ msgstr "Afegeix a la llista" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitud:" @@ -3580,12 +3764,12 @@ "exemple +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitud:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitud:" @@ -3609,363 +3793,413 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Cerca l'objecte" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Troba objecte o posició" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Fes servir la tecla tabulador per seleccionar dels elements trobats" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "èpsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ni" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "òmicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ípsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "khi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Lletres gregues per les designacions de Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objecte" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "AR/DEC (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posició" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Alguns objectes podran ser trobats després de l'activació dels respectius " +"connectors" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "noms en Angles" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Cerca a la llista..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Llistes" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Base de dades astronòmica en línia SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Cerca estesa amb SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Servidor:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Opcions de cerca" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "Fes servir autocompletat de les inicials de les paraules" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Opcions" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "noms en Angles" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Cerca a la llista..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Llistes" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Visualització" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Cel" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Marcadors" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Paisatge" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Mitologia" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etiquetes i Marcadors" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planetes" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Etiquetes i marques per objectes de l'espai profund (cúmuls estelars, " +"galàxies i nebuloses" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "OEP" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planetes i satèl·lits" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Mostre els planetes" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Mostra les marques dels planetes" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Mostra les orbites dels planetes" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simula velocitat de la llum" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Escala de la Lluna" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Canviar automàticament el paisatge quan es canvia de planeta" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Seleciona automàticament el paisatge" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Mostra atmosfera" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Pol·lució lumínica:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "pressió, temperatura, coeficient d'extinció" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Ajustaments refracció/Extinció..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Escala absoluta:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Escala relativa:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Brillantor de la Via Làctia" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Centelleig:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Atenuar estels febles quan un objecte molt brillant sigui visible" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adaptació de l'ull dinàmica" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Estels fugaços" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Tasa horari zenital" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "THZ:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Magnituds límit (sense ajut/observadors amb binocular)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Magnituds Límit" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Estrelles fins magnitud" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Limit de la magnitud dels estels" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Nebuloses fins magnitud" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Limita la magnitud dels objectes de l'espai profund (cúmuls estelars, " +"galàxies i nebuloses)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Constel·lacions" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Mostra línies" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Mostra etiquetes" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Mostra els contorns" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Mostra dibuixos:" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Brillantor dels dibuixos de les constel·lacions" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Esfera celeste" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Mostra la línia del equador" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Mostra la línia del meridià" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Mostra la línia de l'horitzó" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Mostra la línia de la eclíptica" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Mostra la línia del plànol Galàctic" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projecció" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." -msgstr "Afegir/El·liminar paisatges..." +msgstr "Afegir/Eliminar paisatges..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Commuta terra" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Mostra la boira" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Fer servir el planeta i posició associat" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Fes servir aquest paisatge per omissió" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Utilitzeu els ajustos de brillantor de paisatges" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Fes servir aquesta cultura del cel per omissió" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visible" @@ -4020,9 +4254,9 @@ msgid "The direction you're looking when Stellarium starts" msgstr "La direcció de la vista quan arrenca Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" -msgstr "Informació del objecte sel·lecionat" +msgstr "Informació del objecte selecionat" #: src/ui_configurationDialog.h:994 msgid "Display all information available" @@ -4036,11 +4270,8 @@ msgid "Display no information" msgstr "No mostris cap informació" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Cap" @@ -4182,7 +4413,7 @@ msgstr "segons" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Data i hora a l'arrancada" @@ -4194,19 +4425,23 @@ msgid "Other:" msgstr "Altres:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Utilitza data i hora local actual" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "Fes servir l'actual" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Iniciar Stellarium amb la data i hora del sistema" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Data i hora del sistema" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4214,23 +4449,23 @@ "Estableix l'hora de simulació a la propera instància d'aquesta hora del dia " "quan Stellarium arrenqui" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Data del sistema:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Correciò temporal" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Editar equació" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Opcions de planetari" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4238,51 +4473,51 @@ "La distorsió de mirall esfèrica es fa servir quan projectem Stellarium en un " "mirall esfèric, com a planetari de baix cost." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Distorsió de mirall esfèrica" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Oculta-ho tot fora del cercle central a la vista principal." -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Vista de disc" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Oculta la resta de constel·lacions quan facis clic en una" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Selecciona constel·lació individual" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Alinea etiquetes amb l'horitzó" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Etiquetes de gravetat" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Alternar fons de pantalla de les nebuloses." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Mostra el botó nebulosa de fons" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Botons per invertir la imatge vertical i horitzontal." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Mostra botons d'inversió" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4290,98 +4525,106 @@ "Quan està actiu, la tecla \"l'allunyament automàtic\" també establirà la " "direcció inicial de la vista" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "L'allunyament automàtic torna a la direcció inicial de la vista" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Mostrar ombres solars als planetes i llunes (Per aquesta funcionalitat " +"necesites OpenGL versió 2 o superior)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Renderitza les ombres solars" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Captura de pantalla" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Carpeta de captura de pantalla" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Invertir colors" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Actualització de catàlegs estel·lars" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Fes clic aquí per començar la descàrrega" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Descarrega aquest fitxer per veure encara més estels" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Reinicia la descàrrega" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Reintenta" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Atura la descàrrega. Sempre es pot reiniciar després" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cancel·lar" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Tanca la finestra quan s'executi l'script" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" -msgstr "Executa l'script sel·leccionat" +msgstr "Executa l'script seleccionat" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Atura un script que estigui corrent" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Carregar a l'engegada" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "configura" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Principal" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informació" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navegació" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Eines" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Connectors" #: src/ui_addRemoveLandscapesDialog.h:266 msgid "Add/Remove Landscapes" -msgstr "Afegir/El·liminar paisatges" +msgstr "Afegir/Eliminar paisatges" #: src/ui_addRemoveLandscapesDialog.h:268 msgid "Add a new landscape" @@ -4397,7 +4640,7 @@ #: src/ui_addRemoveLandscapesDialog.h:273 msgid "Remove an installed landscape" -msgstr "El·limina un paisatge instal·lat" +msgstr "Elimina un paisatge instal·lat" #: src/ui_addRemoveLandscapesDialog.h:275 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:407 @@ -4410,8 +4653,8 @@ "WARNING: Removing the selected landscape means deleting its files. This " "operation is irreversible." msgstr "" -"ATENCIÓ: El·liminar el paisatge sel·leccionat significa esborrar els " -"fitxers. Aquesta operació es irreversible." +"ATENCIÓ: Eliminar el paisatge seleccionat significa esborrar els fitxers. " +"Aquesta operació es irreversible." #: src/ui_shortcutsDialog.h:196 msgid "Keyboard Shortcuts" @@ -4551,12 +4794,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "La brúixola apareix amb senyals a l'horitzó" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculars" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4566,165 +4809,165 @@ "(Només l'ampliació i el camp visual son simulats.) També pot mostrar un " "sensor de fotograma i una marca Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" "Seleccioneu un objecte abans de canviar a la vista ocular, si us plau" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "Ocular &anterior" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "Ocular &següent" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Selecciona &ocular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Commuta el punt de mira" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "&Configura els oculars" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Habilita el &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Commuta el &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "CCD &anterior" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "CCD &següent" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Selecciona un CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Gira el CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Restableix el gir" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Ocular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Ocular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "DF de l'ocular: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "CDVa de l'ocular: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Lents #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Lents #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Lents: cap" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Telescopi #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Telescopi #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Aument: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "CDV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensions: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Lents" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "Lents %prèvies" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "Lents &següents" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Telescopi" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "Telescopi &anterior" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "Telescopi &següent" @@ -4796,66 +5039,71 @@ msgid "Apparent field of view of the ocular" msgstr "Camp de visió aparent de l'ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Multiplicitat: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Lent: Cap" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Multiplicitat: N/D" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Multiplicitat de la lent" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Longitud focal de l'ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Gir: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Augment proporcionat per aquests binoculars" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Camp de visió real proporcionat per aquests binoculars" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "Augment previst per aquesta combinació ocular/lent/telescopi" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Camp de visió actual proporcionat per aquest combinació de " "ocular/lent/telescopi" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Connector d'oculars" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versió" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Característiques de la lent Barlow" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Vista general" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4868,7 +5116,7 @@ "primera vegada que s'executa l'aplicació, aquesta omplirà algunes mostres " "per que tingui d'exemple." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4886,7 +5134,7 @@ "amb la imatge escalada, una bona part de la pantalla es pot desaprofitar. " "Per tant, et recomano que ho deixis desactivat, llevat que ho necessitis." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4896,7 +5144,7 @@ "alineat cap al Nord. He estat incapaç de fer-ho. Així que actualment " "s'alinea amb la part superior de la pantalla." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4909,120 +5157,129 @@ "2,0% 1, i 4,0%1, i això ajuda a veure el que es pot esperar per veure a ull " "nu a través del cercador Telrad (o similar)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Si trobeu qualsevol problema, si us plau feu-m'ho saber. Disfruteu!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Tecles de drecera" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" "Les combinacions de tecles del connector es poden editar a la pestanya " "General." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[Sense clau definida]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Activa/desactiva la superposició ocular." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Obre el menú emergent de navegació." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Habilita només si hi ha un objecte seleccionat" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Canvia l'escala del cercle d'imatge" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" +"Aplicar límits de magnituds estelar per diferents apertures de telescopis" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Límit de magnitud estel · lar" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Dreceres de teclat" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Commuta la vista ocular" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Obre el menú emergent de navegació" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interfície" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Panell de control en pantalla" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Utilitzeu graus i minuts per FOV de la CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Opcions generals" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Oculars" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Afegeix" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nom:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "CDVa" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Distància focal:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Camp d'aturada:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binoculars" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Lents" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Multiplicitat:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Multiplicador:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5030,74 +5287,75 @@ "Valors de multiplicador >1 amplia la llargada focal (lent Barlow). Valors de " "multiplicador <1 redueix la llargada focal (lent Shapley)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensors" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Resolució x (píxels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Resolució y (píxels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Amplada del xip (mm)" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Alçada del xip (mm)" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Amplada del píxel (micres)" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Alçada del píxel (micres)" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Telescopis" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diàmetre:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Capgira horitzontalment" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Capgira veticalment" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Quant a..." -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satèl·lits" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5105,87 +5363,147 @@ "Predicció de la posició dels satèl lits artificials en òrbita terrestre " "sobre la base de dades de NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "L'arxiu satellites.json ja no és compatible - fent servir l'arxiu per defecte" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "visual" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "científic" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "comunicacions" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navegació" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amateur" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "meteo" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geostacionaris" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "no operatius" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "gps" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Telescopi Espacial Hubble" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "La Estació Espacial Internacional" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Catàleg #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Designador internacional" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "Satèl·lit artificial" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Rang (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Rati del interval (km/s):%1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitud (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Subpunt (Lat./Long.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Coordenades TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "Velocitat TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "El satèl·lit i l'observador són a la llum del sol." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "El satèl·lit es visible." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "El satèl·lit es troba eclipsat." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "El satèl·lit no es visible." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Afegits de satèl·lits de Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5193,18 +5511,18 @@ "El connector de satèl·lit prediu la posició de satèl·lits artificials en " "òrbita a la Terra." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Notes per els usuaris" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Els satèl·lits i les seves òrbites son només mostrats quan l'observador es a " "la Terra." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5214,7 +5532,7 @@ "l'ordre de dies, setmanes o potser u mes en el passat i el futur). Us podeu " "trobar coses molt rares si mireu en dates fora d'aquest rang." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5224,7 +5542,7 @@ "regularment." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5236,7 +5554,7 @@ "Aquest pot ser trobat en la carpeta de dades de usuari, dins " "\"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5245,11 +5563,11 @@ "característiques estan incompletes, absents o plenes d'errors." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Actualitzacions de dades TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5259,7 +5577,7 @@ "d'Internet, i per defecte ho farà si les dades existents són més antigues de " "72 hores. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5270,7 +5588,7 @@ "partir d'un fitxer en el vostre ordinador. Aquest fitxer ha d'estar en el " "mateix format que les actualitzacions Celestrak (veieu %1 com a exemple)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5279,11 +5597,11 @@ "part entre parèntesi al final, serà esborrat abans de que les dades siguin " "utilitzades." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Afegint nous satèl·lits" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5296,11 +5614,11 @@ "Selecciona el satèl·lit(s) que desitges afegir i selecciona el botó " "\"afegir\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Notes tècniques" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5308,7 +5626,7 @@ "Les posicions es calculen fent servir els mètodes SGP4 i SDP4, fent servir " "dades NORAD TLE com entrada. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5317,24 +5635,26 @@ "l'informe revisat Spacetrack (incloent l'informe Spacetrack #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Veieu %1aquest document%2 per obtenir més detalls." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Enllaços" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5344,31 +5664,34 @@ "vos de posar \"%1\" en l'assumpte al enviar el missatge." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Si teniu una pregunta, podeu %1obtenir una resposta aquí%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Podeu informar d'un error %1aquí%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5376,120 +5699,140 @@ "Si vol demanar noves funcionalitats, pots crear un informe de fallada, i " "establir la severitat a \"wishlist\" (desig)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Actualitzacions per Internet deshabilitades" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Actualitzant ara..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Propera actualització: < 1 minut" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Propera actualització: %1 minuts" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Propera actualització: %1 hores" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Actualitza ara" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Actualitza a partir de fitxers" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Error en l'actualització" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Actualitzat %1/%2 satèl·lit(s); %3 afegits; %4 eliminats" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Actualitzats %1/%2 satèl·lits; %3 no trobats" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Actualitzat %1/%2 satèl·lit(s); %3 afegits; %4 desapareguts" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[nova font]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Actualitza ara" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Actualitza a partir de fitxers" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[error de càlcul orbital]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[recentment afegits]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[tots els no mostrats]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[tots els mostrats]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[tots]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Grup nou..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Seleccioneu el fitxer d'actualització TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "S'estan descarregant les dades..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5497,175 +5840,202 @@ "Stellarium està descarregant dades de satèl·lits des de la font " "d'actualització. Espereu, si us plau..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Seleccioneu el(s) fitxer(s) d'origen TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "S'estan processant les dades..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "No s'han pogut descarregar les dades. Torneu-ho a provar més tard." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Nombre del catàleg: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Configuració de satèl·lits" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Actualitza les llistes TLE a través d'Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Actualitzacions" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Actualitzar des d'Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Actualitza les dades dels satèl·lits fent servir fonts d'Internet" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Última actualització:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" +"En l'actualització, afegiu tots els nous satèl·lits de la font " +"seleccionada(s)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"En l'actualització, tregui els satèl·lits que ja no apareixen en les fonts " +"d'actualització" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Freqüència d'actualització (hores)" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Etiquetes" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Mida de la font de les etiquetes (píxels):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Línies orbitals" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Nombre de segments emprats per dibuixar la línia" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Nombre de segments:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Duració d'un únic segment en segons" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Longitud del segment (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Nombre de segments emprats per dibuixar cada final de línia" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Longitud de l'esvaïment" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Restableix la configuració predterminada" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Desa la configuració com a predterminada" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Configuració" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Feu doble clic a un satèl·lit per iniciar el seguiment." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Afegeix més satèl·lits" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Elimina els satèl·lits seleccionats" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Desa els canvis" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Nombre de catàleg:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Mostra els satèl·lit(s) seleccionat(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Mostrats" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Mostra les línies orbitals dels satèl·lits seleccionats" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Ã’rbita" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Nombre de catàleg:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" +"No actualitzar (o eliminar en l'actualització) del satèl·lit seleccionat(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "No actualitzar" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Descripció:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Grups:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Llista de grups separats per comes" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Dades TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORAD dos línies de dades d'orbita" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Elimina els satèl·lits seleccionats" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Afegeix més satèl·lits" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Estableix TLE:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Desa els canvis" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Els satèl·lits en les llistes de la font seleccionada s'afegiran " +"automàticament a la propera actualització si no es troben en la col·lecció." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5673,15 +6043,15 @@ "Introduïu o editeu la URL de la font seleccionada. Els canvis es desen " "prement la tecla 'Retorn'." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Afegeix nova font" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Elimina la font seleccionada" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Fonts" @@ -5717,11 +6087,11 @@ msgid "Discard" msgstr "Descarta" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Control de Telescopi" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5729,12 +6099,12 @@ "Aquest connector permet a Stellarium enviar comandes \"slew\" a un telescopi " "amb muntura informatitzada (a \"GoTo telescope\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" -msgstr "Moure telescopi #%1 a l'objecte sel·leccionat" +msgstr "Moure telescopi #%1 a l'objecte seleccionat" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Moure telescopi #%1 al punt que es troba al centre de la pantalla" @@ -6140,62 +6510,62 @@ "canviar la manera com l'hora i la data es mostren a la barra inferior" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Gener" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Febrer" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Març" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Abril" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Maig" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Juny" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Juliol" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Agost" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Setembre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Octubre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Novembre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Desembre" @@ -6356,7 +6726,7 @@ "barra inferior." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Format de l'hora" @@ -6374,7 +6744,7 @@ msgstr "Format de 24 hores" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Format de la data" @@ -6390,11 +6760,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-aaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Text de la interfície d'usuari" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6402,144 +6772,144 @@ "Plugin d'aplicació de la sèrie 0.9.x interfície d'usuari (IU), utilitzats en " "sistemes de planetari" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Cos del Sistema Solar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Data/hora actual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Estableix el fus horari" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Tecles dels dies" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Data/Hora prefixada al inici" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "sistema" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "preestablert" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "aaaammdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Idioma" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Mostra els estels" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Colors" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Noms de nebuloses" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Consells de nebulosa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Línia del pla galàctic" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efectes" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Zoom manual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Multiplicador de l'escala de magnitud" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intensitat de la Via Làctica" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Freqüència de les etiquetes de les nebuloses:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Duració del zoom:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Temps d'espera del cursor:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Establir el paisatge estableix la ubicació" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Executa un script local" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Atura l'execució de l'script" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "script CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administració" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Carrega la configuració per defecte" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Desa la configuració actual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Apaga" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[no hi ha node TIU]" @@ -6575,16 +6945,16 @@ "Menors i fer cerques a la base de dades en línia. Es un treball en progrés." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Consulta el %1 de l'MPC:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Només es retornarà un resultat si la consulta té èxit." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6592,7 +6962,7 @@ "Tant els cometes com els asteroides poden ser identificats pel seu nombre, " "nom (en anglès) o designació provisional." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6782,40 +7152,46 @@ msgid "Solar System" msgstr "Sistema solar" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Sopernoves històriques" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Un connector que mostra algunes de les supernoves històriques més brillants " -"que la magnitud visual 10." +"Aquest connector us permet veure algunes supernoves històriques brillants." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Tipus de supernova: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Brillantor màxim: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Connector de les Supernoves Històriques" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" +"Aquest connector us permet veure algunes supernoves històriques brillant: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Un connector que mostra algunes de les supernoves històriques més brillants " -"que la magnitud visual 10: " +"Totes aquestes supernoves són un %1 més brillants al pic de brillantor" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Corbes de llum" @@ -6837,7 +7213,7 @@ msgstr "Agraïments" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6853,14 +7229,14 @@ msgstr "Institut de Física Teòrica i Experimental" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "a Rússia" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6870,8 +7246,9 @@ "el format del catàleg, podeu obtenir la informació %1ací%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Propera actualització: %1 dies" @@ -6889,29 +7266,119 @@ msgstr "Configuració del Connector de Supernoves Històriques" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Actualitza el catàleg des d'Internet" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Actualitzar des d'Internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Freqüència d'actualització (dies):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[informació de la propera actualització]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Noves Brillants" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" +"Un connector que mostra algunes noves brillants a la galàxia de la Via " +"Làctia." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Tipus: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Connector Noves Brillants" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"Vostè pot trobar les noves a través de l'eina de cerca mitjançant la " +"introducció de designació nova o el seu nom comú (per exemple, 'Nova Cygni " +"1975' o 'V1500 Cyg')." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"Aquest connector utilitza un model molt senzill per al càlcul de les corbes " +"de llum d'estrelles noves." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Aquest model es basa en el temps de decaïment d'%1 de magnitud des de el " +"valor màxim, on %1 és 2, 3, 6 i 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Si una nova no té valors per el decaïment de magnitud, llavors aquest " +"connector utilitzar valors generalitzats per a això." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Si vols llegir tota la informació sobre aquest connector, la seva història i " +"format del catàleg, pots %1 trobar informació aquí%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Noves s'actualitza" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Configuració de Noves Brillants" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Configuració del connector Noves Brillants" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quàsars" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6930,11 +7397,11 @@ msgid "Z (redshift): %1" msgstr "Z (desplaçament al vermell): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Connector de Quàsars" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6944,40 +7411,50 @@ "brillants que la magnitud visual 16. Un catàleg de quàsars compilats de " "\"Quasars and Active Galactic Nuclei\" (13th Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Quàsars està actualitzat" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Configuració de Quàsars" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Configuració del Connector de Quàsars" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Mode de visualització dels quàsars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Ajustos per quàsars" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Traçar tots els quàsars sense etiquetes" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Activar la visualització de la distribució de quàsars" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Activar quadre a l'inici" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Mostrar el botó dels quàsars a la barra d'eines" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Púlsars" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7104,11 +7581,11 @@ "estrella de neutrons aïllada amb emissió de raigs X tèrmics polsats, però " "sense emissions de ràdio detectables" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Connector de Púlsars" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7119,67 +7596,71 @@ "(Manchester, R. N., Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, " "1993-2006 (2005) (%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Informació" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "els identificadors dels púlsars tenen el prefix \"PSR\"" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Reconeixement" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino Radio Astronomy Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Nancay Radioastronomical Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "a França" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Els púlsars està actualitzat" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Configuració dels Púlsars" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Connector de Configuració dels Púlsars" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Mode de visualització de púlsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Ajustos per púlsars" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Traça tots els púlsars sense etiquetes" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Activar la visualització de la distribució dels púlsars" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Mostrar el botó dels púlsars a la barra d'eines" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplanetes" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7188,71 +7669,71 @@ "dades dels exoplanetes es deriven de la 'Extrasolar Planets Encyclopaedia' a " "exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metal·licitat" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Massa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Radi" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Temperatura efectiva: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplaneta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Període" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dies" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Júp" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Eix semimajor" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "UA" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Excentricitat" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inclinació" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Distància Angular" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Any del descobriment" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Connector per Exoplanetes" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7263,7 +7744,7 @@ "Encyclopaedia %2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7272,42 +7753,134 @@ "Per veure la informació completa sobre aquest connector, la seva història i " "el format del catàleg pots %1 obtenir la informació aquí%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" +"Llocs web professionals generals corresponents a planetes extrasolars" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanetes: una versió interactiva de XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" +"HEK (The Hunt for Exomoons with Kepler - La Caça de Exollunes amb Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Exoplanetes en sistemes binaris i múltiples (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Noms d'exoplanetes (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" +"Alguns astrònoms i grups actius en els estudis de planetes extrasolars" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "actualitzat: 16 abril 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "L'Explorador de Dades d'Exoplanetes" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "El Cercador de Planetes Anglo-Australià" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Programa de Recerca de planetes extrasolar de Ginebra" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Optical Long-Baseline Interferometry News)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "NASA's Progrma d'Exploració d'Exoplanetes" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Planetes Pulsar" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "L'Arxiu d'Exoplanetes de la NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "Comissió IAU 53: Planetes extrasolars" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "La Galeria de la Zona Habitable" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - La Recerca per a una Altra Terra" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Obrir el Catàleg d'Exoplanetes" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "Catàleg de d'Exoplanetes Habitables" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Exoplanetes està actualitzat" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Configuració d'exoplanetes" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Configuració del connector d'exoplanetes" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Actualitzar les dades dels exoplanetes des d'Internet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Mode de visualització d'exoplanetes" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Ajustos per exoplanetes" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Traçar tots els sistemes amb exoplanetes sense etiquetes" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Activar la visualització de la distribució d'exoplanetes" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Mostra exoplanetes des del seu descobriment" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Habilitació de la línia de temps de descobriment d'exoplanetes" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Mostrar el botó dels exoplanetes a la barra d'eines" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Info" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Anàlisi d'observabilitat" @@ -7330,185 +7903,179 @@ "
    Una explicació de les quantitats indicades per aquesta seqüencia " "d'ordres es dóna a la pestanya 'Quant a' de la finestra de configuració" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "gen" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "abr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "mai" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "jun" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "jul" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "ago" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "set" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "oct" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Dec" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Posta a %1 (en %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Ha sortit a %1 (fa %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "S'ha amagat a %1 (fa %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Surt a %1 (en %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Circumpolar." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "No surt" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Culmina a %1 (en %2) a %3 graus." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Va culminar a %1 (fa %2) a %3 graus." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "La font no és observable." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Sense sortida/posta còsmica o anacrònica" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Màxima elongació: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Major separació del Sol: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (a %1 graus)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Sortida/posta anacrònica" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Sense sortida/posta anacrònica" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Sortida/posta còsmica" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Sense sortida/posta còsmica" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Observable durant tot l'any." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "No és observable en la nit fosca." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Nits per sobre de l'horitzó: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "AVUI:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "AQUEST ANY:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Anterior Lluna Plena: %1 %2 at %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Propera Lluna Plena: %1 %2 at %3:%4. " @@ -7707,7 +8274,7 @@ #: plugins/Observability/src/ui_ObservabilityDialog.h:360 msgid "Observability Plug-in Configuration" -msgstr "Configuració del connector de observabilitat" +msgstr "Configuració del Connector de observabilitat" #: plugins/Observability/src/ui_ObservabilityDialog.h:362 msgid "Showing Options" @@ -7942,6 +8509,9 @@ #~ msgid "Form" #~ msgstr "Format" +#~ msgid "Nebulas" +#~ msgstr "Nebuloses" + #~ msgid "10000" #~ msgstr "10000" @@ -7975,6 +8545,9 @@ #~ msgid "Constellation Lines" #~ msgstr "Línies de les Constel·lacions" +#~ msgid "Nebulas background images" +#~ msgstr "Imatges de nebuloses de fons" + #~ msgid "Planets labels" #~ msgstr "Etiquetes de planetes" @@ -8059,6 +8632,12 @@ #~ msgstr "" #~ "Camp de visió real proporcionat per aquesta combinació d'ocular/telescopi" +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Actualitza les llistes TLE a través d'Internet" + +#~ msgid "TLE data:" +#~ msgstr "Dades TLE:" + #, qt-format #~ msgid "Type of pulsar: %1" #~ msgstr "Tipus du púlsar: %1" @@ -8070,6 +8649,13 @@ #~ msgid "Distance: %1 kpc (%2 ly)" #~ msgstr "Distància: %1 kpc (%2 ly)" +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Actualitzats %1/%2 satèl·lits; %3 no trobats" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Llista de grups separats per comes" + #~ msgid "An object's name" #~ msgstr "El nom d'un objecte" @@ -8146,6 +8732,9 @@ #~ msgid "Display a derived class-specific extra fields" #~ msgstr "Mostra una classe específica derivada de camps addicionals" +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORAD dos línies de dades d'orbita" + #~ msgid "SNR association" #~ msgstr "Associació SNR" @@ -8220,6 +8809,12 @@ #~ msgstr "" #~ "Phobos Eclipsa el Sol, vist des de la Muntanya Olimp el 10 de Gener de 2068." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Estalvi de pantalla de diversos esdeveniments en el Sistema Solar. 171 " +#~ "esdeveniments en total!" + #~ msgid "A tour via western constellations." #~ msgstr "Un recorregut a través de les constel·lacions occidentals." @@ -8293,6 +8888,26 @@ #~ msgid "Edit Alternative Shortcut" #~ msgstr "Edita drecera alternativa" +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Un connector que mostra algunes de les supernoves històriques més brillants " +#~ "que la magnitud visual 10: " + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Un connector que mostra algunes de les supernoves històriques més brillants " +#~ "que la magnitud visual 10." + +#~ msgid "Display mode for quasars" +#~ msgstr "Mode de visualització dels quàsars" + +#~ msgid "Display mode for pulsars" +#~ msgstr "Mode de visualització de púlsars" + #~ msgid "Sun altitude at twilight" #~ msgstr "Altitud del Sol al crepuscle" diff -Nru stellarium-0.12.1/po/stellarium/ce.po stellarium-0.12.4/po/stellarium/ce.po --- stellarium-0.12.1/po/stellarium/ce.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ce.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:12+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chechen \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:12+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/ckb.po stellarium-0.12.4/po/stellarium/ckb.po --- stellarium-0.12.1/po/stellarium/ckb.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ckb.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-01-25 14:21+0000\n" "Last-Translator: daniel \n" "Language-Team: Kurdish (Sorani) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "نیوەڕۆ" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "%" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ù‡ÛŽÚµÛŒ یەکسان" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "ئاسۆ" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "شوێن(ناوچە) " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 Ù…" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "هەسارە: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "قەبارە: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "گەردوون" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Ù¾Û•ÚµÛ•(تەم Ùˆ Ù…Ú˜ÛŒ نێوان ئەستێرەکان)" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "نه‌ناسراو" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "هه‌ڵه‌" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "نووسەران" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "په‌یوه‌ندی" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "نوسەر" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "مۆڵه‌ت" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "په‌نجه‌ره‌كان" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "په‌سن نییه‌" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "ئه‌ندۆرا" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ئه‌Ùغانستان" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "ئه‌لبانیا" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ئه‌رمینیا" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "ئه‌نگۆلا" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "ئه‌نتاركتیكا" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "ئه‌رجه‌نتین" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "نه‌مسا" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ئوستورالیا" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "ئازه‌رباینجان" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "باربادۆس" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "به‌نگلادیش" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "به‌لجیكا" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "بولغاریا" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "به‌حره‌ین" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "بوروندی" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "به‌نین" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "به‌رمۆدا" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "بۆلیڤیا" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "به‌ڕازیل" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "به‌هاماس" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "بهوتان" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "بۆتسوانا" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "بێلارۆس" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "بێلایز" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "كه‌نه‌دا" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "كۆماری ÙƒÛ†Ù†Ú¯Û†" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "چیلی" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "كامیرۆن" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "چین" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "كۆڵۆمبیا" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "كۆستاریكا" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "كوبا" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "قوبروس" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "كۆماری چیك" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "جیبۆتی" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "دانیمارك" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "دۆمه‌نیكا" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "كۆماری دۆمه‌نیكان" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "جه‌زائیر" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "ئێكوادۆر" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "میسر" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "كرواتیا" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "كه‌مبۆدیا" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "لاوی" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "پورتوگال" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "چاد" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/cs.po stellarium-0.12.4/po/stellarium/cs.po --- stellarium-0.12.1/po/stellarium/cs.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/cs.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-03 20:24+0000\n" -"Last-Translator: ZbynÄ›k Schwarz \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-28 10:06+0000\n" +"Last-Translator: Martin ÄŒudek \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:12+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Rovník" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizont" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Galaktická rovina" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " -msgstr "Místo: " +msgstr "UmístÄ›ní: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Typ: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnituda: %1 (Absorbováno do: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnituda: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Velikost: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxie" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "OtevÅ™ená hvÄ›zdokupa" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kulová hvÄ›zdokupa" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Mlhovina" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetární mlhovina" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Temná mlhovina" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "HvÄ›zdokupa spojovaná s mlhovinou" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" -msgstr "Neznámý" +msgstr "Není známo" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Nedokumentovaný typ" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolutní magnituda: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" -msgstr "Ekliptická topocentrická (k datu: %1/%2" +msgstr "Ekliptická topocentrická (k datu): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Zkosení (k datu, pro Zemi): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Vzdálenost: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Vzdálenost: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" -msgstr "Zdánlivý průmÄ›r: %1, s kruhy: %2" +msgstr "Zdánlivý průmÄ›r: %1, s prstenci: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Zdánlivý průmÄ›r: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" -msgstr "Doba obÄ›hu: %1 dní (%2 a)" +msgstr "Siderická doba obÄ›hu : %1 dní (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Sidereální den: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" -msgstr "Průmerný solární den: %1" +msgstr "StÅ™ední sluneÄní den: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Úhel fáze: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" -msgstr "Prodloužení: %1" +msgstr "Elongace: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fáze: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "OsvÄ›tleno: %1%" @@ -204,7 +204,7 @@ msgstr "PÅ™edběžné oznaÄení: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "hvÄ›zda" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Zdánlivá magnituda: %1 (podle absorpce)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "eruptivní promÄ›nná hvÄ›zda" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "pulsující promÄ›nná hvÄ›zda" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "rotující promÄ›nná hvÄ›zda" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "kataklyzmická promÄ›nná hvÄ›zda" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "zastiňující binární systém" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "promÄ›nná hvÄ›zda" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "dvojitá hvÄ›zda" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Typ: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnituda %1 (absorbováno do: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnituda: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Rozsah magnitudy: %1%2%3 (Fotometrický systém: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Rozsah magnitudy: %1%2%3/%4 (Fotometrický systém: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektrální třída: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Vzdálenost: %1 ly" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaxa: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Epocha minimálního svÄ›tla: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Epocha maximálního svÄ›tla: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Oběžná dráha: %1 dní" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Další minimum svÄ›tla: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Další maximum svÄ›tla: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Doba trvání zatmÄ›ní: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Doba svítání: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Kosmická loÄ" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "Oprava je zakázána. Používejte pouze tehdy, pokud víte, co dÄ›láte!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -270,7 +345,7 @@ "Henrikssonem ve Älánku Einstein's Theory of Relativity Confirmed by " "Ancient Solar Eclipses (%1). Další informace si pÅ™eÄtÄ›te %2zde%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -279,7 +354,7 @@ "Tuto empirickou rovnici publikoval G. M. Clemence ve Älánku On the " "system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -287,12 +362,12 @@ "Astronomical Formulae for Calculators. It was also adopted in the " "PC program SunTracker Pro." msgstr "" -"Tento vzorec je založen na pozorovací studii Slunce, MÄ›síce a planet po roce " -"1650 od Spencera Jonese (%1), který byl použit Jenanem Meeusem v jeho knize " -"Astronomical Formulae for Calculators. Byl také použit v aplikaci " +"Tento vzorec je založen na studii pozorování Slunce, MÄ›síce a planet po roce " +"1650 od Spencera Jonese (%1) a použil ho Jean Meeus ve své knize " +"Astronomical Formulae for Calculators. Byl použit také v aplikaci " "SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -300,20 +375,20 @@ msgstr "" "Toto je mírnÄ› upravená verze vzorce IAU (1952), který byl použit v " "Astronomical Ephemeris a v Canon of Solar Eclipses od " -"autorů Mucke a Meeus (1983)." +"autorů Muckeho a Meeuse (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " "relation was also implicitly adopted in the syzygy tables of Goldstine " "(1973)." msgstr "" -"Tabulky Tuckermanova (1962, 1964) seznamu pozic Slunce, MÄ›síce a planet v " -"5ti- a 10ti-denních intervalech od 601 pÅ™. n. l. do 1649 n. l. Stejný vztah " +"Tabulky Tuckermanova (1962, 1964) seznamu pozic Slunce, MÄ›síce a planet v 5- " +"a 10denních intervalech od r. 601 pÅ™. n. l. do r. 1649 n. l. Stejný vztah " "byl nepřímo zahrnut v tabulkách syzygy od Goldstina (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -324,7 +399,7 @@ "accelerations of the earth and moon from early astronomical " "observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -333,7 +408,7 @@ "Tuto rovnici publikoval F. R. Stephenson ve Älánku Pre-Telescopic " "Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -346,7 +421,7 @@ "approximations for the correction delta T E.T.-U.T. in the period 1800-" "1975 (%1) použitím dat publikovaných Brouwerem (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -356,7 +431,7 @@ "Programs and Tables from -4000 to +2800 (1986) a v aplikaci pro " "planetária RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -367,11 +442,11 @@ "Long-term changes in the rotation of the earth - 700 B.C. to A.D. " "1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "Tento algoritmus je použit v aplikaci pro planetária Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -381,7 +456,7 @@ "of Solar Eclipses: 1986-2035 (1987) a Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -390,7 +465,7 @@ "Tento vzorec získal K.M. Borkowski (%1) z analýzy 31 záznamů zatmÄ›ní Slunce " "v období 2137 pÅ™. n. l. a 1715 n. l." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -403,7 +478,7 @@ "1988 (%1) jako úpravu dat z hodnot získaných od Stephensona & Morrisona " "(1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -413,7 +488,7 @@ "lunární teorie ELP 2000-85 v jejich knize Lunar Tables and Programs from " "4000 B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -423,7 +498,7 @@ "Tento vzorec publikovali F. R. Stephenson a L. V. Morrison v Älánku Long-" "Term Fluctuations in the Earth's Rotation: 700 BC to AD 1990 (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -432,7 +507,7 @@ "F. R. Stephenson tento vzorec publikoval ve své knize Historical " "Eclipses and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -442,7 +517,7 @@ "používaný. Tabulka pro léta 1620-2000 a obsahuje variantu od autorů " "Chapront, Chapront-Touze a Francou (1997) pro data mimo tento rozsah." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -451,7 +526,7 @@ "Skupina dynamiky SluneÄní soustavy z LaboratoÅ™e pohonového proudu NASA tento " "vzorec používá na své interaktivní stránce %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -460,7 +535,7 @@ "Tento polynom publikovali J. Meeus a L. Simons v Älánku Polynomial " "approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -470,7 +545,7 @@ "Montenbruck a T. Pfleger udává jednoduchou polynomickou regresi 3. řádu pro " "nedávnou minulost." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -482,7 +557,7 @@ "Tabulations (2002). Je založena na knize Astronomical " "Algorithms (1991) od Jeana Meeuse." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -493,7 +568,7 @@ "Historical values of the Earth's clock error %1T and the calculation of " "eclipses (%2) s dodatkem v (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -506,7 +581,7 @@ "funkcí. Toto je založeno na možné pravidelnosti jak popisuje Stephenson " "(%2). Další informace %3zde%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -515,18 +590,41 @@ "Solar Eclipses: -1900 to +3000 (2006). This formula is also used in the " "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -"Toto Å™eÅ¡ení od . Espenaka and J. Meeuse, založené na výzkumu Morrisona a " +"Toto Å™eÅ¡ení od F. Espenaka and J. Meeuse, založené na výzkumu Morrisona a " "Stephensona (2004) a polynomické regresi tabulkových hodnot pro období 1600-" "2000, je použito pro %1Stránku o zatmÄ›ních od NASA%2 a v jejich knize " "Five Millennium Canon of Solar Eclipses: -1900 to +3000 (2006). " "Tento vzorec je také použit v programu pro solární, lunární a planetární " "efemeridy SOLEX" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "StandardnÄ› použito." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Toto Å™eÅ¡ení od B. Banjevice, založené na Å™eÅ¡ení od Stephensona & Morrisona " +"(1984), bylo vydáno ve Älánku Ancient eclipses and dating the fall of " +"Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Toto Å™eÅ¡ení od S. Islama, M. Sadiqa a M. S. Qureshiho, založeném na Å™eÅ¡ení " +"od Meeuse & Simonse (2000), bylo publikováno v Älánku Error " +"Minimization of Polynomial Approximation of DeltaT (%1) a revidováno S. " +"Islamem v roce 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -535,15 +633,15 @@ "Toto je kvadratický vzorec pro výpoÄet %1T pomocí koeficientů zadaných " "uživatelem." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Chyba" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "s nesmyslnými hodnotami mimo tento rozsah" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -551,21 +649,22 @@ "s průmÄ›rnou chybou menší než jedna sekunda. max. chyba 1.9s a nesmyslnými " "hodnotami mimo tento rozsah" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "s nulovými hodnotami mimo tento rozsah" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "s typickou 1 vteÅ™inovou pÅ™esností a nulovými hodnotami mimo tento rozsah" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Platný rozsah použití: mezi roky %1 a %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Platný rozsah použití: mezi roky %1 a %2." @@ -732,52 +831,53 @@ msgid "Found" msgstr "Nalezeno" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Vybrat složku pro screenshoty" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Šíře zorného pole pÅ™i spuÅ¡tÄ›ní: %1/%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "SmÄ›r pohledu pÅ™i spuÅ¡tÄ›ní (azimut/výška): %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "AutoÅ™i" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licence" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Běžící skript: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Běžící skript: [žádný]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -785,16 +885,16 @@ "Stahování nových katalogů vÄ›zd dokonÄeno!\n" "Aby se zobrazily, je nutno restartovat Stellarium." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "VÅ¡echny dostupné katalogy jsou nainstalovány." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Získán katalog %1 z %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -803,7 +903,7 @@ "Stahování %1...\n" "(Můžete zavřít toto okno.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -814,7 +914,7 @@ "PoÄet hvÄ›zd: %2 Milionů\n" "Rozsah magnitud: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -823,11 +923,11 @@ "Chyba pÅ™i stahování %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Kotrolování integrity souboru..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -837,116 +937,124 @@ "Soubor je poÅ¡kozen." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritmus" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Bez opravy" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) a Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller a Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel a Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison a Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson a Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson a Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel a Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze a Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson a Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" "Meeus (1998) (spolu s Chaprontem, Chapront-Touzem & Francouem (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus a Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck a Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold a Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison a Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak a Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq a Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Vlastní rovnice %1T" @@ -1118,65 +1226,69 @@ msgid "OSX Developer: %1" msgstr "OSX vývojář: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Konzolové okno skriptu" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Windows" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Mezerník" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Bez popisu" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Žádné padající hvÄ›zdy" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normální Äetnost" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standardní Äetnost Perseid" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "ÄŒetnost meteorického deÅ¡tÄ›" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "VyjímeÄná Äetnost Leonid" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Nejvyšší Äetnost vůbec (Leonidy 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nové umístÄ›ní" #: src/gui/AddRemoveLandscapesDialog.cpp:112 msgid "Select a ZIP archive that contains a Stellarium landscape" -msgstr "Vyberte archiv ZIP, který obsahuje terény pro Stellarium" +msgstr "Vyberte archiv ZIP, který obsahuje krajiny pro Stellarium" #. TRANSLATORS: This string is displayed in the "Files of type:" drop-down list in the standard file selection dialog. #: src/gui/AddRemoveLandscapesDialog.cpp:114 msgid "ZIP archives" -msgstr "ZIP archivy" +msgstr "Archivy ZIP" #: src/gui/AddRemoveLandscapesDialog.cpp:132 #, qt-format msgid "Landscape \"%1\" has been installed successfully." -msgstr "Terén \"%1\" byl úspěšnÄ› nainstalován." +msgstr "Krajina \"%1\" byla úspěšnÄ› nainstalována." #: src/gui/AddRemoveLandscapesDialog.cpp:133 #: src/gui/AddRemoveLandscapesDialog.cpp:160 @@ -1263,19 +1375,19 @@ msgid "starchart" msgstr "hvÄ›zdná obloha" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Chyba vyhledávání v Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Vyhledávání v Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Univerzita ve Å trasburku (Francie)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvardova univerzita (USA)" @@ -1291,30 +1403,38 @@ msgid "Alternative shortcut" msgstr "Alternativní zkratka" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Vlastní rovnice pro %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Typická rovnice pro výpoÄet %1T vypadá takto:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "kde" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "rok" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Tento systém nemá podporu OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"VaÅ¡e platforma nepodporuje minimální požadované OpenGL 1.2. Prosím " +"aktualizujte své grafické ovladaÄe." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Slunce" @@ -1331,12 +1451,12 @@ msgstr "ZemÄ›" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "MÄ›síc" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1434,7 +1554,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1713,7 +1833,7 @@ #: src/translations.h:165 msgid "Arabic" -msgstr "ArabÅ¡tina" +msgstr "Arabská" #: src/translations.h:166 msgid "Aztec" @@ -1732,214 +1852,243 @@ msgstr "Inuitská" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Indickovédská" + +#: src/translations.h:171 msgid "Korean" msgstr "Korejská" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakotská" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maorská" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajská" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Severská" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynéská" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sámská (Laponská)" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "TongÅ¡tina" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Západní" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Stromy" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurikán" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Oceán" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Prohlídka povrchu" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "ČásteÄné zatmÄ›ní MÄ›síce" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Úplné zatmÄ›ní MÄ›síce" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "SpoÅ™iÄ obrazovky" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "ZatmÄ›ní Slunce 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "SpouÅ¡tÄ›cí skript" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "ZvÄ›rokruh" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Trojitý východ a západ Slunce na Merkuru" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Dvojité zatmÄ›ní na Delmos v 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Dvojité zatmÄ›ní na Delmos v 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Dvojité zatmÄ›ní na Olympus Mons 10. led 2031" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Zákryt ZÄ›me a Jupitera v 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 pÅ™echody a 2 zatmÄ›ní z Deimosu 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "SluneÄní soustava - spoÅ™iÄ obrazovky" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Prohlídky souhvÄ›zdí" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Slunce na jiných planetách" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Nejlepší pohledy na Zemi z jiných tÄ›les" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "PÅ™echod VenuÅ¡e" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analema" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Prohlídka kultury nebes" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Události ZemÄ› z Merkuru" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Události ZemÄ› z VenuÅ¡e" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Události ZemÄ› z Marsu" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "NejvÄ›tší elongace a jasy ZemÄ› z Marsu" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "NejvÄ›tší elongace a jasy ZemÄ› z Jupiteru" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." -msgstr "Porozhlédnout se po každém nainstalovaném povrchu." +msgstr "RozhlédnÄ›te se po každé nainstalované krajinÄ›." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." -msgstr "Prohlédnout si každou nainstalovanou kulturu nebes." +msgstr "ProhlédnÄ›te si každou nainstalovanou kulturu nebes." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skript pro ukázku ÄásteÄného zatmÄ›ní mÄ›síce." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skript pro ukázku úplného zatmÄ›ní mÄ›síce." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Pomalá, nekoneÄná prohlídka oblohy, pozorování náhodných objektů." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -"Skript pro ukázku úplného zatmÄ›ní MÄ›síce, které se stalo v roce 2009 " +"Skript pro ukázku úplného zatmÄ›ní MÄ›síce, ke kterému doÅ¡lo v roce 2009 " "(umístÄ›ní=Rangpur, Bangladéš)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skript, který je automaticky spuÅ¡tÄ›n pÅ™i startu." -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -"Tento skript zobrazuje postavení ZvÄ›rokruhu. To znamená ta postavení, která " -"leží podél Äáry kterou Slunce sleduje po celé hvÄ›zdné obloze v průbÄ›hu roku." +"Tento skript zobrazuje postavení ZvÄ›rokruhu. To znamená postavení ležící " +"podél Äáry, kterou Slunce sleduje po celé hvÄ›zdné obloze v průbÄ›hu roku." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1947,7 +2096,7 @@ "Díky výstÅ™ednostem rotace a oběžné dráhy Merkuru na nÄ›kterých místech za " "jeho jeden den zapadá i vychází Slunce až tÅ™ikrát." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1955,7 +2104,7 @@ "Než může Mars Slunce zastínit, Phobos vyskoÄí a zakryje ho jako první. " "Odehrává se mezi souhvÄ›zdím Å korpióna a StÅ™elce 26. dubna 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1963,21 +2112,22 @@ "Než může Mars Slunce zastínit, Phobos vyskoÄí a zakryje ho jako první. " "Odehrává se mezi souhvÄ›zdím Býka a Blíženců 26. Äervence 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." -msgstr "Phobos zastiňující Slunce, zobrazené z Olympus Mons 10. ledna, 2068." +msgstr "" +"Phobos zastiňující Slunce, pozorováno z Olympus Mons 10. ledna, 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -"Zakrytí ZemÄ› mÄ›sícem Phobus jsou běžná, tak jako zakrytí Jupitera. Ale " +"Zakrytí ZemÄ› mÄ›sícem Phobos jsou běžná, stejnÄ› jako zakrytí Jupitera. Ale " "zakrytí obou ve stejný den jsou velmi vzácná. Zde jedno probíhá ve skuteÄné " "rychlosti 21. ledna 2048." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1992,1507 +2142,1542 @@ "projde temnotou mezi Marsem a Deimosem. Když se Phobos vynoří z Marsu, je " "stále zastínÄ›n jeho stínem a pozdÄ›ji je znovu osvÄ›tlen." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"SpoÅ™iÄ obrazovky s různými událostmi ve sluneÄní soustavÄ›. Celkem 171 " -"událostí!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Prohlídka západních souhvÄ›zdí." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." -msgstr "Pohled na Slunce z vlekých planet sluneÄní soustavy a Pluta." +msgstr "Pohled na Slunce z velkých planet sluneÄní soustavy a Pluta." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." -msgstr "Nejlepší pohledy na Zemi z jiných tÄ›les sluneÄní soustavy" +msgstr "" +"Nejlepší pohledy na Zemi z jiných tÄ›les sluneÄní soustavy ve 21. století." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "PÅ™echod VenuÅ¡e, jak byl vidÄ›n ze Sydney v Austrálii dne 6. Äervna 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "Ukázka analemy - dráhy Slunce po obloze bÄ›hem roku." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -"Záblesk supernovy, jenž zpozoroval Tycho Brahe v roce 1572. Musí být povolen " -"zásuvný modul Supernov." +"Záblesk supernovy, který zpozoroval Tycho Brahe v roce 1572. Musí být " +"povolen zásuvný modul Supernov." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "NejvÄ›tší elongace a jasy ZemÄ› z Marsu v letech 2000-3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "NejvÄ›tší elongace a jasy ZemÄ› z Jupiteru v letech 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Spojené arabské emiráty" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghánistán" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua a Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albánie" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Arménie" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Holandské Antily" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktida" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Americká Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Rakousko" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Austrálie" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbajdžán" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosna a Hercegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladéš" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgie" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulharsko" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrajn" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermudy" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Sultanát Brunej" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolívie" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazílie" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamy" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhútán" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvetův ostrov" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "BÄ›lorusko" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kokosové ostrovy" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Demokratická republika Kongo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "StÅ™edoafrická republika" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Konžská republika" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Å výcarsko" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "PobÅ™eží slonoviny" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cookovy ostrovy" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Čína" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolumbie" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Kostarika" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Srbsko a ÄŒerná hora" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kapverdy" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "VánoÄní ostrov" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Kypr" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ÄŒeská republika" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "NÄ›mecko" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Džibutsko" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Dánsko" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominikánská republika" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Alžírsko" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekvádor" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonsko" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egypt" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Západní Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Å panÄ›lsko" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopie" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finsko" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fidži" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandy" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronésie" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Faerské ostrovy" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Francie" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Spojené království" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Francouzská Guyana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grónsko" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambie" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Rovníková Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Řecko" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Jižní Georgie a Jižní Sandwichovy ostrovy" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Ostrovy Heard a McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Chorvatsko" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "MaÄarsko" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonésie" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irsko" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Izrael" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Indie" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Britské indickooceánské území" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irák" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Ãrán" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Island" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Itálie" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamajka" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordánsko" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japonsko" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Keňa" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kyrgyzstán" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodža" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komorské ostrovy" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Sv. KryÅ¡tof a Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Korejská lidovÄ› demokratická republika" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Korejská republika" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuvajt" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kajmanské ostrovy" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazachstán" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Svatá Lucie" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "LichtenÅ¡tejnsko" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Srí Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Libérie" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litva" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Lucembursko" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "LotyÅ¡sko" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libyjská arabská džamáhíríje" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maroko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavsko" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshallovy ostrovy" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedonie" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolsko" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Severní Mariany" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinik" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauretánie" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauricius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maledivy" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexiko" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malajsie" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mosambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibie" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nová Kaledonie" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk (ostrov)" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigérie" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nikaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Nizozemí" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norsko" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepál" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nový Zéland" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Omán" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Francouzská Polynésie" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua-Nová Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipíny" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pákistán" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polsko" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Svatý Petr a Mikelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairnovy ostrovy" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Portoriko" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palestinská teritoria" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugalsko" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Katar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Rumunsko" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Sbrsko" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Ruská federace" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saúdská Arábie" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Å alamounovy ostrovy" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychely" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Súdán" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Å védsko" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Sv. Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovinsko" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Å picberky a Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovensko" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somálsko" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Svatý Tomáš a Princův ostrov" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syrská arabská republika" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Svazijsko" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks a Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "ÄŒad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Francouzská jižní území" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thajsko" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tádžikistán" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Východní Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistán" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisko" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turecko" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad a Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzánie" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukrajina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Menší odlehlé ostrovy Spojených států amerických" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Spojené státy" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistán" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikán" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Svatý Vincent a Grenadiny" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Britské panenské ostrovy" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Americké Panenské ostrovy" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis a Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoslávie" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Jižní Afrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambie" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Datum a Äas" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "PÅ™idat 1 siderický den" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "PÅ™idat 1 hvÄ›zdný mÄ›síc" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "PÅ™idat 1 siderický týden" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "PÅ™idat 1 hvÄ›zdný rok" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "PÅ™idat 1 siderické století" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "PÅ™idat 1 sluneÄní den" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "PÅ™idat 1 sluneÄní hodinu" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "PÅ™idat 1 sluneÄní týden" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "PÅ™idat 1 synodický mÄ›síc" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "PÅ™idat 1 drakonický mÄ›síc" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "PÅ™idat 1 anomalistický mÄ›síc" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "PÅ™idat 1 průmÄ›rný tropický mÄ›síc" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "PÅ™idat 1 drakonický rok" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "PÅ™idat1 průmÄ›rný tropický rok" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "PÅ™idat 1 stÅ™ední tropické století" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Znížit rychlost bÄ›hu skriptu" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Zpomalit Äas" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "DrobnÄ› znížit rychlost plynutí Äasu" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Zvýšit rychlost bÄ›hu skriptu" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Zrychlit Äas" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "DrobnÄ› zvýšit rychlost plynutí Äasu" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pozastavit spuÅ¡tÄ›ní skriptu" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "PokraÄovat ve spouÅ¡tÄ›ní skriptu" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Nastavit Äas na teÄ" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Nastavit běžnou rychlost bÄ›hu skriptu" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Nastavit normální rychlost Äasu" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Nastavit rychlost Äasu na nulu" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Zastavit spouÅ¡tÄ›ní skriptu" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Odebrat 1 siderický den" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Odebrat 1 hvÄ›zdný mÄ›síc" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Odebrat 1 siderický týden" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Odebrat 1 hvÄ›zdný rok" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "OdeÄíst 1 siderické století" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Odebrat 1 sluneÄní den" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Odebrat 1 sluneÄní hodinu" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Odebrat 1 sluneÄní týden" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "OdeÄíst 1 synodický mÄ›síc" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "OdeÄíst 1 drakonický mÄ›síc" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "OdeÄíst 1 anomalistický mÄ›síc" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "OdeÄíst 1 průmÄ›rný tropický mÄ›síc" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "OdeÄíst 1 drakonický rok" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "OdeÄíst 1 průmÄ›rný tropický rok" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "OdeÄíst 1 stÅ™ední tropické století" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Možnosti zobrazení" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "PÅ™evrátit obraz vodorovnÄ›" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Režim celá obrazovka" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosféra" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Mřížka azimutů" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "SvÄ›tové strany" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Kresby souhvÄ›zdí" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Hranice souhvÄ›zdí" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Popisy souhvÄ›zdí" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Tvary souhvÄ›zdí" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Obrázky pozadí mlhovin" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Obrázky pozadí objektů hlubokého vesmíru" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptická síť J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Dráha Slunce (ekliptika)" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Rovník" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatoriální mřížka" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatoriální mřížka J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Mlha" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktické souÅ™adnice" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galaktická rovina" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Horizont" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horizont" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Poledník" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Mlhoviny" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Objekty hlubokého vesmíru" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "NoÄní režim" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Názvy planet" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Dráhy planet" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Dráhy planet" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "HvÄ›zdy" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Jmenovky hvÄ›zd" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "PÅ™evrátit obraz svisle" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Různé" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Automaticky schovávat horizontální nástrojovou liÅ¡tu" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Automaticky schovávat vertikální nástrojovou liÅ¡tu" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "PÅ™ejít na domov" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "UkonÄit" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Kopírovat vybrané informace do schránky" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Uložit snímek obrazovky" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "PÅ™epnout mezi ekvatoriální a azimutální montáží" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "PÅ™epnout viditelnost GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Pohyb a VýbÄ›r" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Zaměřit na vybraný objekt" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Nastavit vybranou planetu jako domovskou" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Sledovat objekt" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "PÅ™iblížit daný objekt" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Oddálit" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Měření úhlů" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "ZnaÄky kompasu" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Zobrazit exoplanety" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Okno nastavení exoplanet" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Pozorovatelnost" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Okno nastavení pozorovatelnosti" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Nastavení zásuvného modulu okulárů" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okulárové zobrazení" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Zobrazit zaměřovaÄe" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Vyskakovací menu okulárů" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Rám senzorů obrázku" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "ZaměřovaÄ Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Vybrat další teleskop" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Zvolit další okulár" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Vybrat pÅ™edchozí teleskop" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Zvolit pÅ™edchozí okulár" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Zobrazit pulsary" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Okno nastavení pulsarů" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Zobrazit kvasary" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Okno nastavení kvasarů" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Okno nastavení satelitů" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Popisy satelitů" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Názvy satelitů" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Okno nastavení historických supernov" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "KonfiguraÄní okno jasných nov" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Posunout dalekohled na dané souÅ™adnice" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Zobrazit statistiky vykreslovaÄe" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skripty" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Spustit skript krajiny ze souboru" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Zobrazit a pÅ™iblížit MÄ›síc" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Nastavení" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Datum/Äas" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Okno nápovÄ›dy" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Poloha" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Vyhledávání" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Okno zkratek" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Nastavení oblohy a pohledu" @@ -3518,7 +3703,7 @@ msgstr "Obnovit" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Poloha" @@ -3534,10 +3719,10 @@ msgid "Return to default" msgstr "Návrat na výchozí" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Odstranit" @@ -3546,7 +3731,7 @@ msgstr "PÅ™idat do seznamu" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "ZemÄ›pisná šířka:" @@ -3559,12 +3744,12 @@ "vteÅ™iny (dms), například: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "ZemÄ›pisná délka:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "NadmoÅ™ská výška :" @@ -3588,363 +3773,410 @@ msgid "Planet:" msgstr "Planeta" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Najít objekt" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Nalézt objekt Äi pozici" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Užijte klávesu tab pro výbÄ›r nalezených pÅ™edmÄ›tů" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "ióta" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gama" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zéta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "éta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "théta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mí" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ný" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksí" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pí" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ró" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ypsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fí" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chí" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psí" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Řecká písmena pro Bayerovo oznaÄení" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekt" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Poloha" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"NÄ›které objekty mohou být nalezeny po aktivaci odpovídajících zásuvných " +"modulů" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "názvy v angliÄtinÄ›" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Hledat v seznamu..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Seznamy" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Online astronomická databáze SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Rozšířit hledání pomocí SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Možnosti vyhledávání" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Možnosti" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "názvy v angliÄtinÄ›" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Hledat v seznamu..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Seznamy" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Pohled" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Obloha" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "OznaÄení" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Krajina" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "HvÄ›zdná mytologie" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "OznaÄení a ukazatele" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planety" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Jmenovky a znaÄky pro vesmírné objekty (hvÄ›zdokupy, galaxie a mlhoviny)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "OHV" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planety a mÄ›síce" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Zobrazit planety" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Zobraz ukazatele planet" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Zobrazit orbity planet" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulovat rychlost svÄ›tla" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "ZvÄ›tÅ¡ení MÄ›síce" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Automatická zmÄ›na krajiny, když pozmÄ›nÄ›na planeta" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Automatický výbÄ›r krajiny" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Zobraz atmosféru" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "SvÄ›telné zneÄiÅ¡tÄ›ní" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "tlak, teplota, extinkÄní keoficient" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Nastavení refrakce/extinkce..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolutní stupnice" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relativní stupnice" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Jas MléÄné Dráhy" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Mihotání:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Zeslabit slabé hvÄ›zdy, když je vidÄ›t velmi jasný objekt" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamické pÅ™izpůsobení zraku" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Padající hvÄ›zdy" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Zenitová hodinová frekvence" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "ZHF:" +msgstr "ZHR:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Omezit magnitudy (pro pozorovatele s dalekohledem/používající oÄi)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Omezit magnitudy" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "HvÄ›zdy na magnitudu" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Omezit magnitudu hvÄ›zd" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Mlhoviny na magnitudu" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "Omezit magnitudu vesmírných objektů (hvÄ›zdokupy, galaxie a mlhoviny)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "SouhvÄ›zdí" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Zobraz Äáry" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Zobrazit popisy" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Zobraz hranice" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Zobraz kresby" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Jas obrazců:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Nebeská sféra" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Zobrazit rovníkovou Äáru" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Zobrazit poledníkovou Äáru" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Zobrazit Äáru obzoru" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Zobrazit ekliptickou Äáru" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Zobrazit Äáru galaktické roviny" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projekce" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "PÅ™idat/odstranit terény..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Zobraz terén" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Zobraz mlhu" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Použít pÅ™iÅ™azené planety a pozici" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Použít tento terén jako pÅ™edvolený" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Použít tuto kulturu jako pÅ™edvolenou" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Viditelný" @@ -3999,7 +4231,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "SmÄ›r kterým se díváte když se spustí Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Údaje o oznaÄeném objektu" @@ -4015,11 +4247,8 @@ msgid "Display no information" msgstr "Nezobrazovat žádné informace" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Nic" @@ -4161,7 +4390,7 @@ msgstr "sekundy" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Datum a Äas pÅ™i spuÅ¡tÄ›ní" @@ -4173,19 +4402,23 @@ msgid "Other:" msgstr "Jiné:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Použít souÄasný místní Äas a datum" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "použít aktuální" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Spustí Stellarium se systémovým Äasem" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Systémový Äas" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4193,23 +4426,23 @@ "PÅ™i spuÅ¡tÄ›ní Stellaria nastaví datum a Äas na nejbližší příští výskyt tohoto " "Äasu" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Systémové datum v:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Oprava Äasu" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Upravit rovnici" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Nastavení planetaria" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4217,52 +4450,52 @@ "ZakÅ™ivení sférického zrcadla se používá pÅ™i projekci Stellaria na sférických " "zrcadlech nízkorozpoÄtových systémů planetárií." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "ZakÅ™ivení sférického zrcadla" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Schová vÅ¡echno mimo prostÅ™ední okrouhlé zorné pole" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Okrouhlé zorné pole" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Po vybrání jednoho souhvÄ›zdí ostatní skrýt" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Vybrat konkrétní souhvÄ›zdí" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Zarovnat popisky k horizontu" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Zarovnat popisky" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "PÅ™epnout zobrazení pozadí mlhovin." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Zobrazit tlaÄítko pozadí mlhoviny" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" "Zobrazí nebo schová tlaÄidla vertikálního a horizontálního pÅ™evrácení obrazu" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Zobrazit pÅ™evracecí tlaÄítka" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4270,92 +4503,100 @@ "Pokud je to povoleno, tlaÄítko automatického oddálení rovněž nastaví " "poÄáteÄní smÄ›r zorného pole." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatické oddálení vrací zorné pole do výchozího smÄ›ru" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Zobrazit sluneÄní stíny na planetách a mÄ›sících (tato funkce vyžaduje OpenGL " +"verze 2 a vyšší)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Vykreslit sluneÄní stíny" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Snímky obrazovky" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Složka screenshotů" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Inverzní barvy" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Aktualizace katalogů hvÄ›zd" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "KliknÄ›te zde pro zaÄátek stahování" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "StáhnÄ›te tento soubor a uvidíte více hvÄ›zd" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Restartovat stahování" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Zkusit znovu" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Zastavit stahování. Můžete jej spustit znovu pozdÄ›ji" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Storno" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Zavřít okno pÅ™i bÄ›hu skriptu" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Spustit vybraný skript" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Zastavit bežící skript" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "NaÄti pÅ™i startu" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "nastavit" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Hlavní" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informace" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigace" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Nástroje" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Zásuvné moduly" @@ -4530,12 +4771,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Zobrazí stupnici azimutu kompasu po obzoru" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okuláry" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4544,164 +4785,164 @@ "Zobrazí oblohu jako pohledem skrz okulár teleskopu. (Simulováno je pouze " "zvÄ›tÅ¡ení a zorné pole.) Může také zobrazit rám senzorů a zaměřovaÄ Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Zvolte prosím objekt pÅ™edtím, než pÅ™ejdete na okulárové zobrazení." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&PÅ™edchozí okulár" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Další okulár" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Vybrat &okulár" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "PÅ™epnout &zaměřovaÄ" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Nastavit &okuláry" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Zapnout &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Zapnout &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&PÅ™edchozí CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Další CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Vybrat CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&OtoÄit CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Resetovat otoÄení" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okulár #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okulár #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "OV okuláru: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "zZP okuláru: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "ÄŒoÄka #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "ÄŒoÄka #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "ÄŒoÄka: žádná" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "ZvÄ›tÅ¡ení: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Zorné pole: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "RozmÄ›ry: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Senzor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Senzor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "ÄŒ&oÄka" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&PÅ™edchozí ÄoÄka" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&Další ÄoÄka" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Dalekohled" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&PÅ™edchozí dalekohled" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Následující dalekohled" @@ -4773,65 +5014,70 @@ msgid "Apparent field of view of the ocular" msgstr "Zdánlivé zorné pole okuláru" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Násobnost: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "ÄŒoÄka: žádná" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Násobnost: N/A" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Násobnost ÄoÄky" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Ohnisková vzdálenost okuláru" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "OtoÄení: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "ZvÄ›tÅ¡ení poskytnuté tímto dalekohledem" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "SkuteÄné zorné pole poskytnuté tímto dalekohledem" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "ZvÄ›tÅ¡ení poskytované touto kombinací okuláru/ÄoÄky/teleskopu" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "SouÄasné zorné pole poskytované touto kombinací okuláru/ÄoÄky/teleskopu" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Zásuvný modul Okuláry" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Verze" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Funkce Barlowovy ÄoÄky" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "PÅ™ehled" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4843,7 +5089,7 @@ "okulárů a teleskopů a také senzorů CCD. PÅ™i prvním spuÅ¡tÄ›ní aplikace zobrazí " "nÄ›které příklady, které Vám pomohou zaÄít." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4860,7 +5106,7 @@ "je, že pÅ™i zmenÅ¡ení obrazu může být velká Äást ztracena. Proto je doporuÄeno " "toto nechat vypnuté, pokud to opravdu nepotÅ™ebujete." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4870,7 +5116,7 @@ "sever. Tak to ale nelze. Takže v souÄasnosti je zaměřen na horní Äást " "obrazovky." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4883,118 +5129,126 @@ "2.0%1 a 4.0%1, což Vám pomůže zjistit, co uvidíte pouhým okem skrz hledáÄek " "Telrad (nebo podobný)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Pokud narazíte na jakékoliv problémy, prosím dejte nám vÄ›dÄ›t." -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Klávesové zkratky" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "Klávesové zkratky modulu můžou být upraveny v kartÄ› Obecné." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[neurÄena žádná klávesa]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "PÅ™epíná pÅ™ekryv okuláru." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "OtevÅ™e vyskakovací okno nabídky navigace." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Povolit, pouze když je zvolen objekt" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "ZmÄ›nit velikost obrazového kruhu" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "Aplikovat limity pro hvÄ›zdné magnitudy u rozliÄných objektivů" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Limitovat hvÄ›zdnou magnitudu" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Mapování kláves" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "PÅ™epnout okulárové zobrazení:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Otevřít vyskakovací menu navigace:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Rozhraní" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Kontrolní panel na obrazovce" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Požít stupnÄ› a minuty pro FOV z CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Obecné" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okuláry" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "PÅ™idat" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Název:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "zZP:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Ohnisková vzdálenost" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Clona:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Dalekohled" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "ÄŒoÄky" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Násobnost:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "ZvÄ›tÅ¡ení:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5002,74 +5256,75 @@ "Hodnoty násobnosti >1 zvÄ›tÅ¡ují ohniskovou vzdálenost (Barlowova ÄoÄka). " "Hodnoty násobnosti <1 ji snižují (Shapleyho ÄoÄka)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Senzory" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "RozliÅ¡ení x (pixely):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "RozliÅ¡ení y (pixely):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Šířka Äipu (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Výška Äipu (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Šířka pixelu (mikron)" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Výška pixelu (mikron)" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskopy" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "PrůmÄ›r:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Vodorovné pÅ™evrácení" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Svislé pÅ™evrácení" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "O aplikaci" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Družice" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5077,103 +5332,163 @@ "PÅ™edpovÄ›zení pozice umÄ›lých družic, obíhajících okolo ZemÄ›, na základÄ› NORAD " "TLE dat" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Starý soubor satellites.json již není kompatibilní - je použit výchozí soubor" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "viditelné" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "vÄ›decké" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "komunikaÄní" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navigaÄní" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amatérské" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "meteorologické" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geostacionární" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "nefunkÄní" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "gps" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Hubblův vesmírný teleskop" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "Mezinárodní vesmírná stanice" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "ÄŒ. katalogu" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Mezinárodní oznaÄení" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "umÄ›lý satelit" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Vzdálenost (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Míra rychlosti (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Výška (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Podbod (Zem. Šíř./Délka): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "SouÅ™adnice TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "Rychlost TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Satelit a pozorovatel jsou ve sluneÄním svÄ›tle." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satelit je viditelný." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Satelit je zastínÄ›n." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satelit není viditelný" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Zásuvný modul satelitů Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "Plugin pÅ™edpovídá polohu umÄ›lých družic." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Poznámky pro uživatele" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Družice a jejich dráhy se zobrazují pouze pokud je pozorovatel na Zemi." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5183,7 +5498,7 @@ "dnů, týdnů Äi tÅ™eba mÄ›síců do minulosti a budoucnosti). Mimo tento rozsah se " "na tyto pozice nelze spolehnout." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5192,7 +5507,7 @@ "pár dnech). Je nezbytné je pravidelnÄ› aktualizovat." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5203,7 +5518,7 @@ "znovu používat výchozí soubor %3. Starý soubor bude zálohován jako %4. " "Můžete ho nalézt v uživatelské složce pod \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5212,11 +5527,11 @@ "dokonÄeny nebo mají chyby." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Aktualizace dat TLA" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5226,7 +5541,7 @@ "zdrojů a toto modul standardnÄ› provede, pokud jsou data starší vice než 72 " "hodin. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5237,7 +5552,7 @@ "VaÅ¡em poÄítaÄi. Soubor musí být ve stejném formátu jako aktualizace " "Celestrak (viz %1 pro příklad)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5245,11 +5560,11 @@ "Poznámka: pokud název satelitu v aktualizovaných datech má cokoliv na " "konci umístÄ›no v hranatých závorkách, budou pÅ™ed použitím obsah odstranÄ›n." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "PÅ™idání nových satelitů" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5261,11 +5576,11 @@ "PÅ™ejdete na kartu Satelity a kliknÄ›te na tlaÄítko '+'. Vyberte satelity, " "které si pÅ™ejete pÅ™idat a stisknÄ›te tlaÄítko \"add\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Technické poznámky" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5273,7 +5588,7 @@ "Pozice jsou vypoÄítávány pomocí metod SGP4 a SDP4 za pomoc vstupních dat " "NORAD TLE. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5282,24 +5597,26 @@ "Spacetrack #3 (zahrnuto je i hlášení Spacetrack #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Viz %1tento dokument%2 pro podrobnosti." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Odkazy" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5309,31 +5626,34 @@ "jste do názvu umístili \"%1\"." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Pokud máte otázky, můžete na nÄ› %1zde dostat odpovÄ›di%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Hlášení o chybÄ› můžete provést %1zde%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5341,310 +5661,355 @@ "Pokud chcete zažádat o novou funkci, můžete vytvoÅ™it hlášení o chybÄ› a " "vážnost nastavit na \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Aktualizace pÅ™es internet zakázány" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Probíhá aktualizace..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Další aktualizace: < 1 minuta" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Další aktualizace: %1 minut" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Další aktualizace: %1 hodin" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Aktualizovat nyni" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Aktualizovat ze souborů" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Chyba aktualizace" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Aktualizováno %1/%2 satelitů; %3 pÅ™idáno; %4 odstranÄ›no" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Aktualizováno %1/%2 satelit(ů); %3 chybí" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Aktualizováno %1/%2 satelitů; %3 pÅ™idáno; %4 chybí" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[nový zdroj]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Aktualizovat nyni" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Aktualizovat ze souborů" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[chyba výpoÄtu oběžné dráhy]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[vÅ¡echny novÄ› pÅ™idané]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[vÅ¡echny nezobrazené]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[vÅ¡echny zobrazené]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[vÅ¡echny]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Nová skupina..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Vyberte aktualizaÄní soubor TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Stahování dat..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" "Stellarium stahuje data satelitů ze zdrojů aktualizace. ÄŒekejte prosím..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Vybrat zdrojové soubory TLE..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Zpracovávání dat..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Žádná data nemohla být stáhnuta. Zkuste to znovu pozdÄ›ji." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Katalogové Äíslo: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Nastavení satelitů" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Aktualizovat seznamy TLE z internetových zdrojů" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Aktualizace" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Aktualizovat z internetových zdrojů" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Aktualizovat data satelitů z internetových zdrojů" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Poslední aktualizace:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "PÅ™i aktualizaci pÅ™idat vÅ¡echny nové satelity ze zvolených zdrojů" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"PÅ™i aktualizaci odstranit vÅ¡echny satelity, které již nejsou uvedeny ve " +"zdrojích aktualizace" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Interval aktualizací (hodiny):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Popisky" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Velikost písma popisku (v pixelech)" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Oběžné Äáry" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "PoÄet segmentů použitých pro vykreslení dráhy" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "PoÄet segementů:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Trvání jedné Äásti ve vteÅ™inách" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Délka Äásti (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "PoÄet Äástí, které byly použity k vykreslení každého konce Äáry" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Délka zeslábnutí:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Obnovit výchozí nastavení" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Uložit nastavení jako výchozí" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Nastavení" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Dvojklikem na satelit ho zaÄnete sledovat." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "PÅ™idat další satelity" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Odstranit zvolené satelity" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Uložit zmÄ›ny" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Katalogové Äíslo:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Zobrazit vybrané satelity" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Zobrazeno" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Zobrazit oběžné Äáry pro zvolené satelity" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Oběžná dráha" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Katalogové Äíslo:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" +"Neaktualizovat (nebo odstraňovat pÅ™i aktualizaci) následující satelity" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Neaktualizovat" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Popis:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Skupiny:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Čárkou oddÄ›lený seznam skupin" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE data:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORAD dvouřádkové prvky dat oběžné dráhy" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Odstranit zvolené satelity" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "PÅ™idat další satelity" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "TLE nastaveno:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Uložit zmÄ›ny" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Satelity v oznaÄeném seznamu zdrojů budou automaticky pÅ™idány pÅ™i příští " +"aktualizaci, pokud již nejsou ve sbírce." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" "Zadejte nebo upravte URL zvoleného zdroje. ZmÄ›ny uložíte stisknutím Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "PÅ™idat nový zdroj" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Odstranit vybraný zdroj" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Zdroje" @@ -5680,11 +6045,11 @@ msgid "Discard" msgstr "Zahodit" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Ovládání teleskopu" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5692,12 +6057,12 @@ "Tento zásuvný modul umožňuje Stellarium zaslat příkazy \"otoÄení\" teleskopu " "na poÄítaÄové montáží (Teleskop \"GoTo\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Posunout dalekohled #%1 na vybraný objekt" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Posunout dalekohled #%1 na bod, který je nyní ve stÅ™edu obrazovky" @@ -6102,62 +6467,62 @@ "data na spodní liÅ¡tÄ›." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Leden" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Únor" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "BÅ™ezen" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Duben" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "KvÄ›ten" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "ÄŒerven" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "ÄŒervenec" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Srpen" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Září" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Říjen" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Listopad" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Prosinec" @@ -6316,7 +6681,7 @@ "liÅ¡tÄ›." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Formát zobrazení Äasu" @@ -6334,7 +6699,7 @@ msgstr "24-hodinový formát" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Formát zobrazení data" @@ -6350,11 +6715,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-rrrr" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Textové uživatelské rozhraní" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6362,144 +6727,144 @@ "Zavedení zásuvného modulu Å™ady 0.9.x textového rozhraní (TUI), použité v " "systémech planetária" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "TÄ›leso sluneÄní soustavy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Aktální datum/Äas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Nastavit Äasové pásmo" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Klávesy dne" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "PÅ™ednastavení poÄáteÄního dne/Äasu" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "systémový" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "pÅ™edvolený" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddrrrr" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmrrrr" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "rrrrmmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Jazyk" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Zobrazit hvÄ›zdy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Barvy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Názvy mlhovin" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Náznaky mlhoviny" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Galaktická rovina" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efekty" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "RuÄní pÅ™iblížení" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Násobitel měřítka magnitudy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intenzita MléÄné Dráhy:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "ÄŒetnost jmenovek mlhoviny:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Trvání pÅ™iblížení:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "ÄŒasový limit kurzoru:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Nastavení krajiny nastaví umístÄ›ní" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Spustit místní skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Zastavit bežící skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Skript CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administrace" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "NaÄíst implicitní nastavení" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Uložit aktuální nastavení" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Vypnout" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[žádný režim TUI]" @@ -6535,16 +6900,16 @@ "jejich databázi. Vývoj stále probíhá." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Dotázat se MPC %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Pokud bude dotaz úspěšný, bude vrácen pouze jeden výsledek." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6552,7 +6917,7 @@ "Komety i asteroidy mohou být identifikovány podle jejich Äísla, názvu (v " "angliÄtinÄ›) nebo prozatímní název." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6741,40 +7106,43 @@ msgid "Solar System" msgstr "SluneÄní soustava" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Historické supernovy" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." -msgstr "" -"Zásuvný modul, který zobrazuje jisté historické supernovy se zdánlivou " -"jasností vÄ›tší než 10." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." +msgstr "Tento plugin vám umožňuje vidÄ›t nÄ›které jasné supernovy v historii." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Typ supernovy: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Maximální jasnost: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Zásuvný modul historických supernov" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "Tento plugin vám umožňuje vidÄ›t nÄ›které jasné supernovy v historii: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Zásuvný modul, který ukazuje nÄ›které historické supernovy, které mají " -"zdánlivou jasnost vyšší než 10: " #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "SvÄ›telné kÅ™ivky" @@ -6796,7 +7164,7 @@ msgstr "PodÄ›kování" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6811,14 +7179,14 @@ msgstr "Institut teoretické a experimentální fyziky" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "v Rusku" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6828,8 +7196,9 @@ "formát katalogu, můžete tak %1uÄinit zde%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Další aktualizace: za %1 dní" @@ -6847,29 +7216,106 @@ msgstr "Nastavení zásuvného modulu historických supernov" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Aktualizovat katalog z internetu" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Aktualizovat z internetových zdrojů" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "ÄŒetnost aktualizací (ve dnech):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[informace o příští aktualizaci]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Jasné novy" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "Plugin, který vám umožňuje vidÄ›t jasné novy v MléÄné dráze." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Typ: %1 (%2]" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kvasary" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6888,11 +7334,11 @@ msgid "Z (redshift): %1" msgstr "Z (rudý posuv): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Zásuvný modul kvasarů" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6902,40 +7348,50 @@ "jasností vÄ›tší než 16. Katalog kvasarů je sestaven z \"Quasars and Active " "Galactic Nuclei\" (13. vyd.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Kvasary jsou aktualizovány" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Nastavení kvasarů" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Nastavení zásuvného modulu kvasarů" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Režim zobrazení kvasarů" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Nastavení pro kvasary" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Nakreslit vÅ¡echny kvasary bez jmenovek" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Povolit zobrazení rozdÄ›lení kvasarů" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Povolit zobrazení pÅ™i spuÅ¡tÄ›ní" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Zobrazit tlaÄítko kvasarů v nástrojové liÅ¡tÄ›" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsary" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7061,11 +7517,11 @@ "isolovaná neutronová hvÄ›zda s pulsní tepelnou rentgenovou emisí ale žádnou " "zjistitelnou radiovou emisí" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Zásuvný modul pulsarů" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7076,67 +7532,71 @@ "Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Poznámka" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "identifikátory pulsarů mají pÅ™edponu 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "PodÄ›kování" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Radioastronomická observatoÅ™ PuÅ¡Äino" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Radioastronomická observatoÅ™ Nancy" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "ve Francii" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsary jsou aktualizovány" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Nastavení pulsarů" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Nastavení zásuvného modulu pulsarů" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Režim zobrazení pulsarů" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Nastavení pro pulsary" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Nakreslit vÅ¡echny pulsary bez jmenovek" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Povolit zobrazení šíření pulsarů" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Zobrazit tlaÄítko pulsarů v nástrojové liÅ¡tÄ›" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplanety" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7144,71 +7604,71 @@ "Tento modul zobrazí pozici hvÄ›zd s exoplanetami. Data exoplanet jsou " "odvozena z 'Extrasolar Planets Encyclopaedia' na exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metalicita" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Hmotnost" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "PolomÄ›r" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Efektivní teplota: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplaneta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Doba obÄ›hu" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dní" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Hlavní poloosa" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "VýstÅ™ednost" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Sklon" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Úhlová vzdálenost" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Rok objevení" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Zásuvný modul exoplanet" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7218,7 +7678,7 @@ "odvozena z \"%1The Extrasolar Planets Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7227,42 +7687,131 @@ "Pokud si chcete pÅ™eÄíst kompletní informace o tomto modulu, jeho historii a " "formátu katalogu, můžete tak %1uÄinit zde%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Pojmenování exoplanet (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "Astronomové a skupiny zabývající se studiem extrasolárních planet" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "aktualizace: 16. dubna 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Planety pulsarů" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "OteveÅ™ený katalog exoplanet" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "Katalog obyvatelných exoplanet" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Exoplanety byly aktualizovány" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Nastavení exoplanet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Nastavení zás. modulu exoplanet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Aktualizovat data exoplanet z internetu" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Režim zobrazení pro exoplanety" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Nastavení pro exoplanety" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Znázornit vÅ¡echny systémy s exoplanetami bez jmenovek" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Povolit zobrazení rozšíření exoplanet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Zobrazit exoplanety od jejich objevení" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Povolit Äasovou osu objevů exoplanet" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Zobrazit tlaÄítko exoplanet v nástrojové liÅ¡tÄ›" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Informace" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Rozbor pozorovatelnosti" @@ -7284,185 +7833,179 @@ "východu/západu.

    VysvÄ›tlení veliÄin, zobrazených tímto skriptem, je " "uvedeno v kartÄ› 'O aplikaci' v oknÄ› nastavení" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Led" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Úno" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "BÅ™e" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Dub" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "KvÄ›" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "ÄŒer" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "ÄŒvc" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Srp" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Zář" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Říj" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Lis" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Pro" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Zapadá v %1 (ve %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Východ %1 (pÅ™ed %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Západ %1 (pÅ™ed %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Vychází %1 (za %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Cirkumpolární." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Nevychází." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Kulminace %1 (ve %2) na %3 stup." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Kulminace %1 (pÅ™ed %2) na %3 stup." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Zdroj není pozorovatelný." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Žádný Akronický ani Kosmický východ/západ." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "NejvÄ›tší elongace: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "NejvÄ›tší vzdálenost od Slunce: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (na %1 atup.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Akronický východ/západ" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Žádný Akronický východ/západ." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Kosmický východ/západ." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Žádný Kosmický východ/západ." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Pozorovatelné bÄ›hem celého roku." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Nelze pozorovat za tmavé noci." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "PoÄet nocí nad horizontem: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "DNES:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "TENTO ROK:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "PÅ™edchozí úplnÄ›k: %1 %2 v %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Příští úplnÄ›k: %1 %2 v %3:%4. " @@ -7961,6 +8504,9 @@ #~ msgid "Startup direction of view: xxxx" #~ msgstr "SmÄ›r pohledu pÅ™i spuÅ¡tÄ›ní: xxxx" +#~ msgid "Nebulas background images" +#~ msgstr "Obrázky pozadí mlhovin" + #~ msgid "Planets labels" #~ msgstr "Popisky planet" @@ -8003,6 +8549,25 @@ #~ "Podpora je poskytována pÅ™es stránku Launchpad. UjistÄ›te se, že pÅ™i posílání " #~ "do pÅ™edmÄ›tu vložíte \"Satellites plugin\"." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Aktualizováno %1/%2 satelit(ů); %3 chybí" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Aktualizovat seznamy TLE z internetových zdrojů" + +#~ msgid "TLE data:" +#~ msgstr "TLE data:" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Čárkou oddÄ›lený seznam skupin" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORAD dvouřádkové prvky dat oběžné dráhy" + +#~ msgid "Nebulas" +#~ msgstr "Mlhoviny" + #~ msgid "" #~ "This plugin plots the position of various pulsars, with object information " #~ "about each one. Pulsar data is derived from 'Catalog of Pulsars' (Taylor+ " @@ -8136,6 +8701,26 @@ #~ "SN 1895B (5. Äervence), SN 1937C (21. srpna), SN 1972E (8. kvÄ›tna), SN 1987A " #~ "(24. února) a SN 2011FE (13. září)." +#~ msgid "Display mode for pulsars" +#~ msgstr "Režim zobrazení pulsarů" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Zásuvný modul, který zobrazuje jisté historické supernovy se zdánlivou " +#~ "jasností vÄ›tší než 10." + +#~ msgid "Display mode for quasars" +#~ msgstr "Režim zobrazení kvasarů" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Zásuvný modul, který ukazuje nÄ›které historické supernovy, které mají " +#~ "zdánlivou jasnost vyšší než 10: " + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "PÄ›tinásobnÄ› zatmÄ›ní na Deimos 2027" @@ -8162,6 +8747,12 @@ #~ msgid "Phobos Eclipses the sun as seen from Olympus Mons Jan 10, 2068." #~ msgstr "Phobos zastiňuje Slunce pÅ™i pozorování z Olympus Mons 10. led 2068." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "SpoÅ™iÄ obrazovky s různými událostmi ve sluneÄní soustavÄ›. Celkem 171 " +#~ "událostí!" + #~ msgid "A tour via western constellations." #~ msgstr "Prohlídka západních souhvÄ›zdí." diff -Nru stellarium-0.12.1/po/stellarium/cv.po stellarium-0.12.4/po/stellarium/cv.po --- stellarium-0.12.1/po/stellarium/cv.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/cv.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-02-08 11:30+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Chuvash \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:12+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Паллă мар" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Jănăš" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Åžyhănu" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Ðндорра" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ÐфганиÑтан" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Ðлбани" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Эрмени" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Ðнгола" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Ðргентина" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ÐвÑтри" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ÐвÑтрали" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Ðруба" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Ðзербайджан" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "БарбадоÑ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Бангладеш" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Бельги" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркина-ФаÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Болгари" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Бахрейн" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Бурунди" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Бенин" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Бруней ДаруÑÑалам" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Боливи" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Бразили" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "БотÑвана" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "БеларуÑÑŒ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Белиз" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Канада" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Вăтам Ðфрика РеÑпублики" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Конго РеÑпублики" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Чили" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Камерун" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Китай" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Колумби" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "КоÑта Рика" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Куба" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Кабо Верде" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Кипр" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Чехи" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Джибути" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Дани" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Доминика" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ðлжир" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Хорвати" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Камбоджа" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Чад" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Вырӑн" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "AnlăhÄ•:" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "VărămlăhÄ•:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Çук" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "TepÄ•r hut" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Пăрахăçла" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "ВерÑи" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "ИнтерфейÑ" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "TÄ•p" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "JacÄ•:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/cy.po stellarium-0.12.4/po/stellarium/cy.po --- stellarium-0.12.1/po/stellarium/cy.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/cy.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-01-16 06:43+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Welsh \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:20+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:56+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Gorwel" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Awdur: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Lleoliad: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planed: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Teip: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Maintioli: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Maint: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaeth" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Clwstwr agored" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nifwl" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nifwl planedol" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Anadnabyddus" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Teip anghofnodus" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Pellter: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Tryfesur ymddangosiadol: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Math o spectrwm: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Pellter: %1 Blwyddyn Golau" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Awduron" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Cyswllt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Awdur" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Trwydded" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Ffenestri" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Gofod" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Dim disgrifiad" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Haul" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Lleuad" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 +msgid "Korean" +msgstr "" + +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarctica" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Dyddiad ac Amser" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Niwl" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Sêr" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Amrywiol" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Symudiad a Detholiad" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/da.po stellarium-0.12.4/po/stellarium/da.po --- stellarium-0.12.1/po/stellarium/da.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/da.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,51 +7,51 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-04-08 01:13+0000\n" "Last-Translator: Ask Hjorth Larsen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:12+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: DENMARK\n" "X-Poedit-Language: Danish\n" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimuth gitter" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ækvatorialsk gitter" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ækvatorialsk j2000-gitter" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktisk gitter" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ækvator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horisonten" @@ -59,46 +59,46 @@ msgid "Galactic Plane" msgstr "Galakseplan" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Forfatter: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Placering: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ". %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Type: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Lysstyrke: %1" @@ -108,114 +108,114 @@ msgid "Size: %1" msgstr "Størrelse: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galakse" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Ã…ben hob" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kuglehob" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "StjernetÃ¥ge" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetarisk tÃ¥ge" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Stjernehob med nebulositet" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Ukendt" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Udokumenteret type" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolut lysstyrke: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Afstand: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Tilsyneladende diameter: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -241,47 +241,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektraltype: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Afstand: %1 lysÃ¥r" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallakse: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Rumfartøj" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -289,14 +364,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -305,14 +380,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -320,7 +395,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -328,14 +403,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -344,14 +419,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -359,25 +434,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -386,14 +461,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -401,42 +476,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -444,7 +519,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -452,7 +527,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -461,7 +536,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -471,45 +546,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -677,52 +769,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Vælg mappe til skærmbilleder" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Synsfelt ved opstart: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Synsretning ved opstart Az/Alt: %1%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Forfattere" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Ophavsmand" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licens" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Udfører skript: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Udfører skript: [intet]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -730,16 +823,16 @@ "Fuldførte hentningen af nye stjernekataloger!\n" "Genstart Stellarium for at vise dem." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Hent katalog %1 af %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -748,7 +841,7 @@ "Henter %1...\n" "(Du kan lukke dette vindue.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -759,7 +852,7 @@ "Antal stjerner: %2 millioner\n" "Interval for lysstyrke: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -768,11 +861,11 @@ "Fejl ved hentning af %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verificerer filintegritet..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -782,115 +875,123 @@ "Filen er beskadiget." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1057,49 +1158,53 @@ msgid "OSX Developer: %1" msgstr "OSX Udvikler: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Skriptkonsolvindue" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Vinduer" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Mellemrum" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ingen beskrivelse" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Ingen stjerneskud" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normal rate" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standard-perseide-rate" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Exceptionel lenoide-rate" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Højeste antal nogensinde (1966 lenoider)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Ny lokation" @@ -1204,19 +1309,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1232,30 +1337,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Dette system understøtter ikke OpenGL" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sol" @@ -1272,12 +1383,12 @@ msgstr "Jorden" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "MÃ¥nen" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1375,7 +1486,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1676,239 +1787,268 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreansk" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maorisk" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Nordisk" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesisk" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Samisk" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Vestligt" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1918,1482 +2058,1518 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Dato og tidspunkt" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Tilføj et siderisk døgn" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Tilføj en siderisk uge" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Læg 1 soldag til" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Læg 1 soltime til" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Læg 1 soluge til" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Begræns hastigheden pÃ¥ skript" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Sænk tidsraten" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Sænk tidsraten (en smugle)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Øg hastigheden pÃ¥ skript" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Øg tidsraten" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Øg tidsraten (en smugle)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Sæt tiden til nu" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Normal hastighed pÃ¥ skript" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Sæt normal tidsrate" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Sæt tidsraten til nul" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Fratræk et siderisk døgn" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Fratræk en siderisk uge" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Træk 1 soldag fra" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Træk 1 soldag fra" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Træk 1 soluge fra" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Visningsindstillinger" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Vend billedet horisontalt" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Fuld skærm" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfære" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Verdenshjørner" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Stjernebilledgrafik" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Stjernebilledomrids" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Stjernebilledernes navne" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Stjernebilledlinjer" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Baggrundsbilleder for stjernetÃ¥ger" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ækvator" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Dis" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Jord" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridianen" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "StjernetÃ¥ger" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Nattilstand" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planet kredsløb" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planetbaner" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stjerner" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Vend billedet vertikalt" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Diverse" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Skjul automatisk vandret knappanel" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Skjul automatisk lodret knappanel" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Afslut" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Gem skærmbillede" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Skift mellem ækvatorial og azimutal opstilling" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Vis eller skjul grafisk brugerflade" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Navigation og Valg" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centrér pÃ¥ det valgte objekt" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Sæt hjemplaneten til valgte planet" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Følg objekt" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zoom ind pÃ¥ det valgte objekt" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zoom ud" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "VinkelmÃ¥l" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Kompasmærker" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Satellitkonfigurationsvindue" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "satellit tips" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satellitetiketter" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Flyt et teleskop til et givet koordinatsæt" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skript" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Indstillingsvindue" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Dato-/tidsvindue" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Hjælpevindue" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Stedvindue" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Søgevindue" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Himmel- og visningsindstillinger" @@ -3419,7 +3595,7 @@ msgstr "Genindlæs" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Lokation" @@ -3435,10 +3611,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Slet" @@ -3447,7 +3623,7 @@ msgstr "Føj til listen" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Breddegrad:" @@ -3460,12 +3636,12 @@ "12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Længdegrad:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Højde:" @@ -3489,363 +3665,407 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Find objekt" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekt" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Valgmuilgheder" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Valgmuilgheder" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Vis" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Himlen" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Markeringer" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landskab" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Stjernetradition" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etiketter og markører" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planeter" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planeter og mÃ¥ner" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Vis planeter" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Vis planet markeringer" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Vis planetbaner" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simuler lyshastighed" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Skaler MÃ¥nen" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Vis atmosfære" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolut skala" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relativ skala" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Funkeling:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Dæmp falmede nÃ¥r et lyst objekt er synlig" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamisk øjetilpasning" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Stjerneskud" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Stjernebilleder" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Vis linjer" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Vis labels" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Vis grænser" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Vis stjernebilledkunst" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Himmelkuglen" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projektion" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Tilføj/fjern landskaber..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Vis jorden" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Vis dis" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Benyt tilhørende planet og position" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Benyt dette landskab som standard" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Brug denne himmelkultur som standard" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Synlig" @@ -3900,7 +4120,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Retning der vises nÃ¥r Stellarium starter" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Information for valgte objekt" @@ -3916,11 +4136,8 @@ msgid "Display no information" msgstr "Vis ingen information" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ingen" @@ -4062,7 +4279,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Dato og klokkeslæt ved opstart" @@ -4074,19 +4291,23 @@ msgid "Other:" msgstr "Andet:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "brug nuværende" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Start Stellarium med systemurets dato og klokkeslæt" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Systemets dato og tid" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4094,23 +4315,23 @@ "Indstilller simulationstiden til næste forekomst af dette klokkeslæt, nÃ¥r " "Stellarium starter." -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Systemdato kl:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Indstillinger for planetarium" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4118,51 +4339,51 @@ "Sfærisk spejlforvrængning bliver brugt nÃ¥r Stellarium projiceres til et " "sfærisk spejl til lavbudget-planetariumsystemer." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Kuglespejlsforvrængning" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Masker alt uden for en centreret cirkel i hovedsynsfeltet" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Disksynsfelt" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Skjul andre stjernebilleder nÃ¥r der vælges et" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Udvælg enkelt konstellation" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Juster etiketter vandret" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Tyngdeetiketter" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "SlÃ¥ vandret og lodret billedspejlvendingsknap til/fra." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Vis spejlvendingsknapper" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4170,92 +4391,98 @@ "Ved aktiveret, vil \"Automatisk zoom ud\" knappen ogsÃ¥ indstille den " "indledende synsretning" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatisk zoom ud retunerer ti den indledende sysnretning" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Skærmbilleder" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Skærmbilledmappe" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Inverter faver" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Opdateringer af stjernekataloger" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klik her for at starte download" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Download denne fil for at se endnu flere stjerner" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Genstart download" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Prøv igen" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Stop download, Du kan altid genstarte den senere" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Annuller" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Luk vindue nÃ¥r skript kører" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Kør de valgte skript" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stop et kørende skript" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Indlæs ved opstart" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "indstil" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Hovedindstillinger" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Information" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigation" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Værktøjer" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Tilføjelser" @@ -4425,176 +4652,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Viser et kompas med mærker langs horisonten" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4666,64 +4893,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4731,7 +4963,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4742,14 +4974,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4758,191 +4990,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satellitter" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4950,117 +5191,177 @@ "Positionsforudsigelser for kunstige satelliger i kredsløb omkring jorden, " "baseret pÃ¥ NORADs TLE-data" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Den gamle satellites.json-fil er ikke længere kompatibel - bruger " "standardfilen" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5068,25 +5369,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5094,17 +5395,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5112,41 +5413,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5154,338 +5457,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5521,22 +5867,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskopkontrol" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Flyt teleskop #%1 til det valgte objekt" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Flyt teleskop #%1 til skærmens nuværende midtpunkt" @@ -5919,62 +6265,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6128,7 +6474,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6146,7 +6492,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6162,154 +6508,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Tekstgrænseflade" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Sprog" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6345,22 +6691,22 @@ "søgninger i dens online database. Er stadig under udarbejdelse." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6529,36 +6875,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6576,7 +6929,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6590,14 +6943,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6605,8 +6958,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6624,29 +6978,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6662,51 +7093,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6826,11 +7267,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6838,137 +7279,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AE" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6976,49 +7421,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7034,185 +7568,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7575,9 +8103,15 @@ #~ msgid "Zoom Duration: " #~ msgstr "Zoom varighed " +#~ msgid "Nebulas background images" +#~ msgstr "Baggrundsbilleder for stjernetÃ¥ger" + #~ msgid "Planets labels" #~ msgstr "Planetmarkeringer" +#~ msgid "Nebulas" +#~ msgstr "StjernetÃ¥ger" + #~ msgid "/" #~ msgstr "/" diff -Nru stellarium-0.12.1/po/stellarium/de.po stellarium-0.12.4/po/stellarium/de.po --- stellarium-0.12.1/po/stellarium/de.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/de.po 2013-09-23 06:20:13.000000000 +0000 @@ -9,29 +9,29 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-14 17:44+0000\n" -"Last-Translator: wschmidt \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-14 15:25+0000\n" +"Last-Translator: gzotti \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:13+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-15 05:05+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptik" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Äquator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizont" @@ -39,46 +39,46 @@ msgid "Galactic Plane" msgstr "Galaktische Ebene" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Standort: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Typ: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Helligkeit: %1 (durch Extinktion: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Helligkeit: %1" @@ -88,114 +88,114 @@ msgid "Size: %1" msgstr "Größe: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxis" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Offener Sternhaufen" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kugelsternhaufen" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebel" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetarischer Nebel" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Dunkelwolke" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Sternhaufen in Verbindung mit einem Nebel" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Unbekannt" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Undokumentierter Typ" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolute Helligkeit: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Topozentrisch ekliptikal (zum Datum): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Schiefe der Ekliptik (zum Datum): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Entfernung: %1AE (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Entfernung: %1AE" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Gegenwärtiger Durchmesser: %1, mit Ringen: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Scheinbarer Durchmesser: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Siderische Periode: %1 Tage (%2 Jahre)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Siderischer Tag: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Mittlerer Sonnentag: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Phasenwinkel: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongation: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Phase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Erleuchtet: %1%" @@ -206,7 +206,7 @@ msgstr "Vorläufige Bezeichnung: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "Stern" @@ -221,48 +221,125 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Scheinbare Helligkeit: %1 (durch Extinktion)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "Eruptiver Veränderlicher" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "Pulsierender Veränderlicher" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "Rotationsveränderlicher" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "Kataklysmischer Veränderlicher" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "Bedeckungsveränderlicher" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "Veränderlicher Stern" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "Doppelstern" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Typ: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Helligkeit: %1 (durch Extinktion: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Helligkeit: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" +"Größenklassenbereich: %1%2%3 (Photometrisches System: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" +"Helligkeitsbereich: %1%2%3/%4 (Photometrisches System: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektraltyp: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Entfernung: %1 Lichtjahre" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallaxe: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Epoche für Minimalhelligkeit: JD %1" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Epoche für Maximalhelligkeit: JD %1" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Periode: %1 Tage" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Nächstes Minimum: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Nächstes Maximum: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Verfinsterungsdauer: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Anstiegszeit: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Raumschiff" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "Korrektur ist ausgeschaltet. Nur verwenden, wenn Sie wissen, was Sie tun!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -273,7 +350,7 @@ "seinen Artikel Einstein's Theory of Relativity Confirmed by Ancient " "Solar Eclipses (%1) verwendet. Mehr dazu %2hier%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -282,7 +359,7 @@ "Diese empirische Gleichung wurde von G. M. Clemence im Artikel On the " "system of astronomical constants veröffentlicht (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -295,7 +372,7 @@ "in seinen Astronomical Formulae for Calculators verwendet. Sie " "wurde auch im PC-Programm SunTracker Pro eingesetzt." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -305,7 +382,7 @@ "der Astronomical Ephemeris und im Canon of Solar Eclipses " "von Mucke & Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -316,7 +393,7 @@ "und Planeten in 5- und 10-Tagesintervallen von 601 v. Chr. bis 1649 n. Chr. " "Auf denselben Grundlagen beruhen die Syzygientafeln von Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -327,7 +404,7 @@ "The accelerations of the earth and moon from early astronomical " "observations publiziert (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -336,7 +413,7 @@ "Diese Gleichung wurde von F. R. Stephenson im Artikel Pre-Telescopic " "Astronomical Observations publiziert (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -349,7 +426,7 @@ "approximations for the correction delta T E.T.-U.T. in the period 1800-" "1975 (%1) als Anpassungskurve durch Daten von Brouwer (1952) publiziert." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -359,7 +436,7 @@ "to +2800 (P. Bretagnon & L. Simon 1986) und im PC Planetariumsprogramm " "RedShift übernommen." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -370,12 +447,12 @@ "Long-term changes in the rotation of the earth - 700 B.C. to A.D. " "1980 veröffentlicht (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" "Dieser Algorithmus wird im PC-Planetariumsprogramm Guide 7 verwendet." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -385,7 +462,7 @@ "Eclipses: 1986-2035 (1987) und in seinem Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989) beschrieben." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -394,7 +471,7 @@ "Die Formel wurde von K.M. Borkowski (%1) aus einer Analyse von 31 " "Sonnenfinsternisberichten aus der Zeit 2137 v. Chr. und 1715 n.Chr. erstellt." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -407,7 +484,7 @@ "1988 (%1) als Anpassungskurve durch Werte von Stephenson & Morrison " "(1984) veröffentlicht." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -417,7 +494,7 @@ "Version der Mondbahntheorie ELP 2000-85 in ihren Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991) verwendet." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -428,7 +505,7 @@ "Artikel Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD " "1990 veröffentlicht (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -437,7 +514,7 @@ "F. R. Stephenson veröffentlichte diese Formel in seinem Buch Historical " "Eclipses and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -448,7 +525,7 @@ "verwendet eine Variante von Chapront, Chapront-Touze & Francou (1997) für " "Daten außerhalb 1620..2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -458,7 +535,7 @@ "verwenden diese Formel für historische Angaben auf ihrer interaktiven " "Website %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -468,7 +545,7 @@ "Artikel Polynomial approximations to Delta T, 1620-2000 AD (%1) " "veröffentlicht." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -478,7 +555,7 @@ "Personal Computer (2000) enthält einfache Polynome dritten Grades für " "die nahe Vergangenheit." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -490,7 +567,7 @@ "Calendrical Tabulations (2002). Sie basiert auf Werten aus Jean " "Meeus' Astronomical Algorithms (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -501,7 +578,7 @@ "Artikel Historical values of the Earth's clock error %1T and the " "calculation of eclipses veröffentlicht (%2), mit einem Zusatz in (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -515,7 +592,7 @@ "Parabelfunktion. Sie basiert auf einer möglichen Periodizität wie von " "Stephenson beschrieben (%2). Näheres dazu %3hier%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -530,11 +607,34 @@ "Millennium Canon of Solar Eclipses: -1999 to +3000 (2006) verwendet, " "ebenso auch im Sonnen- Mond- und PLaneten-Ephemeridenprogramm SOLEX." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Als Vorgabe verwendet." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Diese Lösung von B. Banjevic, basierend auf Stephenson & Morrison (1984), " +"wurde im Artikel Ancient eclipses and dating the fall of Babylon " +"publiziert (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Diese Lösung von S. Islam, M. Sadiq und M. S. Qureshi, basierend auf Meeus & " +"Simons (2000), wurde in der Arbeit Error Minimization of Polynomial " +"Approximation of DeltaT (%1) veröffentlicht und 2013 begutachtet von " +"Sana Islam." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -543,15 +643,15 @@ "Platz für Ihre frei programmierbare quadratische Formel für %1T mit " "benutzerdefinerten Koeffizienten!" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Fehler" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "mit sinnlosen Werten außerhalb dieses Bereichs" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -559,22 +659,23 @@ "mit einem mittleren Fehler unter einer Sekunde, max. Fehler 1.9s, und " "sinnlosen Werten außerhalb des Bereichs" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "mit Nullwerten außerhalb dieses Bereichs" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "mit typischer Genauigkeit von 1 Sekunde und Nullwerten außerhalb dieses " "Bereichs" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Gültigkeitsbereich: Jahre %1 bis %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Gültigkeitsbereich: Jahre %1 bis %2." @@ -744,52 +845,53 @@ msgid "Found" msgstr "Gefunden" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Ordner für Bildschirmfotos auswählen" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Anfängliches Gesichtsfeld: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Anfängliche Blickrichtung in Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autoren" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Ansprechpartner" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lizenz" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Ausgeführtes Skript: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Ausgeführtes Skript: [keines]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -797,16 +899,16 @@ "Herunterladen neuer Sternkataloge beendet!\n" "Starten Sie Stellarium neu, um sie anzuzeigen." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Alle verfügbaren Sternkataloge wurden installiert." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Katalog %1 von %2 laden" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -815,7 +917,7 @@ "Lade %1...\n" "(Sie können dieses Fenster schließen.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -826,7 +928,7 @@ "Anzahl der Sterne: %2 Millionen\n" "Magnitudenspanne: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -835,11 +937,11 @@ "Fehler beim Herunterladen von %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Ãœberprüfe Dateiintegrität..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -849,115 +951,123 @@ "Datei ist beschädigt." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algorithmus für" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Ohne Korrektur" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) und Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller und Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel und Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison und Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson und Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson und Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel und Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze und Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson und Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (mit Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus und Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck und Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison und Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak und Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Benutzerdefinierte Gleichung für %1T" @@ -1129,49 +1239,53 @@ msgid "OSX Developer: %1" msgstr "OSX Entwickler: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Skript Konsolen-Fenster" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Fenster" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Leertaste" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Keine Beschreibung" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Keine Sternschnuppen" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normale Frequenz" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standard-Perseidenfrequenz" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Meteorsturmrate" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Außergewöhnliche Leonidenfrequenz" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Höchste jemals erreichte Frequenz (Leoniden 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Neuer Standort" @@ -1281,19 +1395,19 @@ msgid "starchart" msgstr "Sternkarte" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Fehler bei der Simbad-Abfrage" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad-Abfrage" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universität von Straßburg (Frankreich)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Universität Harvard (Vereinigte Staaten)" @@ -1309,30 +1423,38 @@ msgid "Alternative shortcut" msgstr "Alternative Tastenkombination" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Benutzerdefinierte Gleichung für %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Eine typische Gleichung für die Berechnung von %1T lautet:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "wobei" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "jahr" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Dieses System unterstützt kein OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Ihre Grafikkarte unterstützt OpenGL 1.2 nicht. Bitte aktualisieren Sie die " +"Treiber Ihres Grafikadapters." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sonne" @@ -1349,12 +1471,12 @@ msgstr "Erde" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Mond" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1452,7 +1574,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1750,193 +1872,222 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Indisch-Vedisch" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreanisch" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "MÄori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Altnordisch" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesisch" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Samisch" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongaische Sprache" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Westlich" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Bäume" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane Ridge" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Meer" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Landschaftstour" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Partielle Mondfinsternis" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Totale Mondfinsternis" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Bildschirmschoner" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Sonnenfinsternis 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Start-Skript" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Tierkreis" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Dreimalige Sonnenauf- und Untergänge auf Merkur" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Doppelfinsternis 2017 von Deimos" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Doppelfinsternis 2031 von Deimos" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Finsternis auf Olympus Mons 10. Januar 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Bedeckung von Erde und Jupiter, 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 Transits und 2 Finsternisse zu sehen von Deimos 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Sonnensystem-Bildschirmschoner" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Sternbildertour" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Sonne von verschienenen Planeten" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Beste Erdansichten von anderen Körpern aus" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Venustransit" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Sternführung" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Erderscheinungen von Merkur aus gesehen" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Erderscheinungen von Venus aus gesehen" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Erderscheinungen von Mars aus gesehen" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Größte Elongationen und Helligkeiten der Erde von Mars aus gesehen" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Größte Elongationen von Erde und Mars, vom Jupiter gesehen" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Ein Rundblick durch alle installierten Landschaften." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Zeige alle installierten Sternführungen" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skript zum Demonstrieren einer partiellen Mondfinsternis." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skript zum Demonstrieren einer totalen Mondfinsternis." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Endlos-Show durch zufällig angesteuerte Hmmelsobjekte." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1944,11 +2095,11 @@ "Skript zum Demonstrieren der totalen Sonnenfinsternis im Jahr 2009 (Ort= " "Rangpur, Bangladesch)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skript, das zum Programmstart ausgeführt wird." -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1957,7 +2108,7 @@ "Dieses Skript zeigt die Sternbilder des Tierkreises, das sind die " "Sternbilder entlang der scheinbaren Jahresbahn der Sonne." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1965,7 +2116,7 @@ "Wegen Besonderheiten der Merkurbahn kann die Sonne an manchen Orten dreimal " "an einem Merkurtag auf- und untergehen." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1974,7 +2125,7 @@ "Planeten hervor und geht vor der Sonne vorüber. Zu sehen auf Deimos am 26. " "April 2017 zwischen Skorpion und Schützen (im Schlangenträger)." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1983,13 +2134,13 @@ "Planeten hervor und geht vor der Sonne vorüber. Zu sehen auf Deimos am 23. " "Juli 2031 zwischen Stier und Zwillingen." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Phobos, wie er die Sonne verdeckt, von Olympus Mons aus am 10. Januar, 2068 " "gesehen." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1999,7 +2150,7 @@ "Aber Bedeckungen beider am selben Tag sind selten. Hier ist eine solche vom " "23.1.2048. In Echtzeit." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2014,35 +2165,37 @@ "zwischen Mars und Deimos passiert. Beim Ende dieses Marstransits bleibt " "Phobos vom Marsschatten verfinstert, erst später wird er wieder sichtbar." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" -msgstr "Bildschirmschoner mit insgesamt 171 Ereignissen im Sonnensystem." +"Screensaver of various happenings in the Solar System. 187 events in all!" +msgstr "" +"Bildschirmschoner mit insgesamt 187 verschiedenen Ereignissen im " +"Sonnensystem." -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Eine Tour durch die westlichen Sternbilder." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" "Einen Blick auf die Sonne von den großen Planeten des Sonnensystems und von " "Pluto aus werfen." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "Die besten Ansichten der Erde von anderen Himmelskörpern des Sonnensystems " "aus im 21. Jahrhundert." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "Venus-Transit, wie er von Sydney, Australien aus am 6. Juni 2012 gesehen " "wurde." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." @@ -2050,7 +2203,7 @@ "Eine Darstellung des Analemmas - der jährlichen Bahn der Sonne über den " "Himmel." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2058,1468 +2211,1506 @@ "Aufleuchten der Supernova, wie sie von Tycho Brahe aus im Jahr 1572 gesehen " "wurde. Die Supernovae-Erweiterung muss aktiviert sein." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" +"Größte Elongationen und Helligkeiten der Erde von Mars aus gesehen (2000-" +"3000)" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "Größte Elongationen der Erde von Jupiter aus gesehen (2000-3000)" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Vereinigte Arabische Emirate" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua und Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albanien" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenien" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Niederländische Antillen" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktis" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentinien" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikanisch-Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Österreich" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australien" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Aserbaidschan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnien und Herzegowina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesch" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgien" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgarien" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivien" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasilien" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvet-Insel" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botsuana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Weißrussland" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kokos-Inseln" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Demokratische Republik Kongo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Zentralafrikanische Republik" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republik Kongo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Schweiz" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Elfenbeinküste" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cookinseln" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolumbien" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbien und Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kap Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Weihnachtsinsel" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Zypern" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Tschechien" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Deutschland" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Dschibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Dänemark" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominikanische Republik" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algerien" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estland" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Ägypten" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Westsahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spanien" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Äthiopien" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finnland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fidschi" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandinseln" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronesien" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Färöer-Inseln" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Frankreich" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabun" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Vereinigtes Königreich" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgien" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Französisch-Guayana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grönland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Äquatorialguinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Griechenland" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Südgeorgien und die Südlichen Sandwich-Inseln" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hongkong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard- und McDonald-Inseln" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Kroatien" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Ungarn" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesien" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Indien" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Britisches Territorium im Indischen Ozean" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Island" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italien" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaika" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordanien" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgisistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodscha" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komoren" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "St. Kitts und Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Demokratische Volksrepublik Korea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Republik Korea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kaiman-Inseln" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kasachstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "St. Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litauen" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Lettland" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libyen" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marokko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldawien" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshallinseln" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Mazedonien" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolei" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Nördliche Marianen" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauretanien" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Malediven" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexiko" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaysia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mosambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Neukaledonien" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolkinsel" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Niederlande" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norwegen" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Neuseeland" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Französisch-Polynesien" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua-Neuguinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Phillippinen" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polen" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "St. Pierre und Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairninseln" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palästinensische Autonomiegebiete" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Katar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Rumänien" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbien" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Russland" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudi-Arabien" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Salomon-Inseln" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychellen" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Schweden" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "St. Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slowenien" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard und Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slowakei" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "São Tomé und Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syrien" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swasiland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks- und Caicosinseln" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Tschad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Französische Süd- und Antarktisgebiete" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailand" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadschikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Osttimor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunesien" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Türkei" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad und Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tansania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraine" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Kleinere Inselbesitzungen der Vereinigten Staaten" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Vereinigte Staaten" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Usbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikanstadt" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "St. Vincent und die Grenadinen" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Britische Jungferninseln" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Amerikanische Jungferninseln" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis und Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoslawien" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Südafrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Sambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Simbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Datum und Uhrzeit" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "1 Stunde Sternzeit vorwärts" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "1 siderischen Monat vorwärts" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "1 Woche Sternzeit vorwärts" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "1 siderisches Jahr vorwärts" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "100 siderische Jahre vorwärts" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "1 Sonnentag vorwärts" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "1 Stunde vorwärts" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "1 Woche vorwärts" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "1 Synodischen Monat vorwärts" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "1 Drakonitischen Monat vorwärts" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "1 Anomalistischen Monat vorwärts" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "1 Mittleren Tropischen Monat vorwärts" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "1 Drakonitisches Jahr vorwärts" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "1 Mittleres Tropisches Jahr vorwärts" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "1 mittleres Tropisches Jahrhundert vor" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Verlangsame die Skript-Ausführungsgeschwindigkeit" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Zeitablauf verlangsamen" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Zeitablauf ein wenig verlangsamen" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Beschleunige die Skript-Ausführungsgeschwindigkeit" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Zeitablauf beschleunigen" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Zeitablauf ein wenig beschleunigen" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Scriptausführung pausieren" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Scriptausführung fortsetzen" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Aktuelle Zeit verwenden" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Setze die normale Skript-Ausführungsgeschwindigkeit" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Normaler Zeitablauf" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Zeit anhalten" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Skript-Ausführung anhalten" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "1 Sterntag zurück" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "1 siderischen Monat zurück" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "1 Woche Sternzeit zurück" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "1 siderisches Jahr zurück" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "100 siderische Jahre zurück" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "1 Tag zurück" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "1 Stunde zurück" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "1 Woche zurück" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "1 Synodischen Monat zurück" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "1 Drakonitischen Monat zurück" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "1 Anomalistischen Monat zurück" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "1 Mittleres Tropisches Monat zurück" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "1 Drakonitisches Jahr zurück" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "1 Mittleres Tropisches Jahr zurück" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "1 mittleres Tropisches Jahrhundert zurück" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Anzeigeeinstellungen" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Horizontal spiegeln" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Vollbildmodus" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosphäre" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimutales Koordinatennetz" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Himmelsrichtungen" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Sternbildfiguren" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Sternbildgrenzen" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Sternbildbezeichnungen" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Sternbildlinien" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Hintergrundbilder der Nebel" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Deep-Sky-Objekt Hintergrundbilder" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptikales Gradnetz (J2000)" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptik" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Himmelsäquator" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Äquatoriales Koordinatennetz" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Äquatoriales Koordinatennetz (J2000)" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Bodennebel" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktisches Koordinatennetz" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galaktische Ebene" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Boden" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horizontlinie" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridian" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebel" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Deep-Sky-Objekte" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Nachtmodus" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Planetenbezeichnungen" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planetenbahnen" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planetenspuren" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Sterne" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Sternbezeichnungen" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Vertikal spiegeln" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Verschiedenes" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Horizontale Schaltflächenleiste automatisch ausblenden" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Vertikale Schaltflächenleiste automatisch ausblenden" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Zum Start gehen" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Beenden" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Kopiere ausgewählte Objektinformation in die Zwischenablage" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Bildschirmfoto speichern" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Zwischen äquatorialer und azimutaler Montierung umschalten" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Graphische Benutzeroberfläche ein/ausschalten" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Bewegung und Auswahl" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Auf ausgewähltes Objekt zentrieren" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Setze ausgewählten Planeten als Ausgangsplaneten" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Objekt verfolgen" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Ausgewähltes Objekt vergrößern" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Verkleinern" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Winkelmaß" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Kompass-Markierungen" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Zeige Exoplaneten." -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Exoplaneten-Konfigurationsfenster" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Beobachtbarkeit" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Beobachtbarkeits-Konfigurationsfenster" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Konfiguration für Okular-Erweiterung" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okularansicht" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Fadenkreuz anzeigen" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Okulares Kontextmenü" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Bildsensor-Rahmen" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad-Sucher" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Wähle nächstes Teleskop" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Wähle nächstes Okular" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Wähle vorheriges Teleskop" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Wähle vorheriges Okular" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Pulsare anzeigen" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Pulsare-Konfigurationsfenster" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Quasare anzeigen" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Quasare-Konfigurationsfenster" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Satelliten-Konfigurationsfenster" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Satelliten-Hinweise" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satelliten-Beschriftungen" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Konfiguration für Historische Supernovae" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Helle Novae Konfigurationsfenster" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Bewege ein Teleskop zu angegebenen Koordinaten" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Zeige Statistik zur Graphikdarstellung" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skripte" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Landschaften-Skript aus Datei ausführen" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Mond anzeigen und vergrößern" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Einstellungsfenster" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Datum/Zeit-Fenster" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Hilfe-Fenster" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Standortfenster" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Suchfeld" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Fenster mit Tastenkombinationen" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Himmel- und Anzeigeoptionsfenster" @@ -3545,7 +3736,7 @@ msgstr "Aktualisieren" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Standort" @@ -3561,10 +3752,10 @@ msgid "Return to default" msgstr "Rücksetzen" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Löschen" @@ -3573,7 +3764,7 @@ msgstr "Zur Liste hinzufügen" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Breitengrad:" @@ -3586,12 +3777,12 @@ "angeben." #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Längengrad:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Höhe :" @@ -3615,364 +3806,413 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Objekt suchen" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Objekt oder Position finden" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Verwende Tab-Taste zum Auswählen der gefundenen Einträge" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alpha" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ypsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Griechische Buchstaben für Bayer-Bezeichnungen" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekt" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Position" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Einige Objekte können nach Aktivierung der entsprechenden Plugins gefunden " +"werden" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "Namen in Englisch" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "In Liste suchen …" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listen" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Astronomische Online-Datenbank SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Erweiterte Suche mit SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Suchoptionen" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "Wortsuche ab Wortanfang" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Einstellungen" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "Namen in Englisch" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "In Liste suchen …" - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listen" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Ansicht" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Himmel" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Markierungen" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landschaft" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Sternsage" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Beschriftungen und Markierungen" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planeten" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Beschriftungen und Markierungen für Deep-Sky-Objekte (Sternhaufen, Galaxien " +"und Nebel)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "DSOs" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planeten und Satelliten" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Planeten anzeigen" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Planetenmarkierungen anzeigen" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Planetenbahnen anzeigen" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Lichtlaufzeiten berücksichtigen" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Mond vergrößern" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Automatische Änderung der Landschaft beim Wechsel des Planeten" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Automatische Auswahl von Landschaften" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Atmosphäre anzeigen" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Lichtverschmutzung:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "Druck, Temperatur, Extinktionskoeffizient" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refraktions-/Extinktionseinstellungen" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolute Größe:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relative Größe:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Milchstraßenhelligkeit:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Funkeln (Szintillation):" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Lichtschwache Sterne dimmen, falls ein sehr helles Objekt sichtbar ist" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamische Augenadaption" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Sternschnuppen" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Stündliche Zenitalrate" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "ZHR:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Grenzgrößenbeschränkung (für freisichtige oder Fernglasbeobachter)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Minimale Helligkeit" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Sterne bis mag" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Helligkeitsbegrenzung für Sterne" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Nebelartige bis mag" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Helligkeitsbegrenzung für Deep-Sky-Objekte (Sternhaufen, Galaxien und Nebel)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Sternbilder" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Linien anzeigen" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Beschriftungen anzeigen" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Sternbildgrenzen anzeigen" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Sternbildfiguren anzeigen" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Figurenhelligkeit:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Himmelskugel" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Äquator anzeigen" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Meridian anzeigen" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Horizont anzeigen" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Ekliptik anzeigen" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Galaktischen Äquator anzeigen" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projektion" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Ergänze/Entferne Landschaften..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Boden anzeigen" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Bodennebel darstellen" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Verwende dazugehörigen Planeten und Position" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Benutze die momentane Landschaft als Standard" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Helligkeitseinstellungen für Landschaften verwenden" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Benutze diese Sternbilddarstellung als Standardvorgabe" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Sichtbar" @@ -4028,7 +4268,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Die Richtung, in die Sie sehen, wenn Stellarium startet" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informationen über das angewählte Objekt" @@ -4044,11 +4284,8 @@ msgid "Display no information" msgstr "keine Information anzeigen" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ohne" @@ -4190,7 +4427,7 @@ msgstr "sekunden" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Datum und Uhrzeit beim Programmstart" @@ -4203,19 +4440,23 @@ msgid "Other:" msgstr "Andere:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Verwende aktuelles lokales Datum und Uhrzeit" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "Aktuelle Zeit verwenden" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Startet Stellarium mit Systemdatum und -zeit" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Systemdatum und -zeit" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4223,23 +4464,23 @@ "Setzt die von Stellarium beim Start verwendete Zeit auf das nächste " "Vorkommen dieser Tageszeit" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Systemzeit bei:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Zeitkorrektur" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Formel bearbeiten" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetariumseinstellungen" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4248,51 +4489,51 @@ "Stellarium auf einen kugelförmigen Spiegel projiziert wird (für ein " "einfaches Planetarium)." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Verzerrung für sphärische Projektion" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Alles bis auf einen zentralen Kreis in der Hauptansicht ausblenden" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Scheibenförmiges Darstellungsfeld" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Die anderen Sternbilder verbergen, wenn Sie auf eines klicken" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Einzelnes Sternbild auswählen" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Beschriftung am Horizont ausrichten" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Schwerkraftbeschriftung" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Umschalten des Anzeige von Deep-Sky-Bildern." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Zeige Schaltfläche für Deep-Sky-Bilder" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Schaltflächen für horizontale und vertikale Spiegelung vertauschen." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Spiegelungsschaltflächen anzeigen" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4300,93 +4541,101 @@ "Mit dieser Option stellt die Taste \"automatisch herauszoomen\" auch die " "anfängliche Blickrichtung ein." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" "\"Automatisch herauszoomen\" kehrt zur anfänglichen Blickrichtung zurück" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Zeigt Sonnenschatten auf Planeten und Monden an. (Dieses Feature benötigt " +"OpenGL Version 2 oder höher.)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Sternenlicht-Schatten darstellen" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Bildschirmfotos" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Bildschirmfoto-Ordner" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Farben invertieren" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Sternkatalog-Aktualisierungen" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Auf diese Schaltfläche klicken, um den Download-Vorgang zu starten" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Laden Sie diese Datei herunter, um noch mehr Sterne zu sehen" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Erneut herunterladen" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Wiederholen" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Den Download-Vorgang anhalten. Sie können diesen später wiederholen." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Abbrechen" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Fenster schließen, wenn Skript läuft" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Führe das gewählte Skript aus" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Beende ein laufendes Skript" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Beim Start laden" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "Konfigurieren" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Allgemein" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Information" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigation" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Werkzeuge" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Erweiterungen" @@ -4562,12 +4811,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Zeigt Kompass-Markierungen entlang des Horizonts" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okulare" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4577,164 +4826,164 @@ "Sichtfeld werden simuliert.) Außerdem können ein Sensor-Rahmen und ein " "Telrad-Sucher dargestellt werden." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Bitte vor Umschalten zur Okularansicht Objekt wählen" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Voriges Okular" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Nächstes Okular" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "&Okular wählen" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "&Fadenkreuz" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "&Okulare konfigurieren" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "&CCD ein/aus" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "&Telrad ein/aus" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Vorige CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Nächste CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "CCD &Wählen" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "CCD &Rotieren" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "Rotation &rücksetzen" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Okular BW: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Okular scheinb. Ges.-Fld: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" -msgstr "Linse #%1" +msgstr "Zw-Linse #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" -msgstr "Linse #%1: %2" +msgstr "Zw-Linse #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" -msgstr "Linse: ohne" +msgstr "Zwischenlinse: keine" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Vergrößerung: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Gesichtsfeld: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Abmessungen: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" -msgstr "&Linse" +msgstr "&Zwischenlinse" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" -msgstr "&Vorige Linse" +msgstr "&Vorige Zwischenlinse" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" -msgstr "&Nächste Linse" +msgstr "&Nächste Zwischenlinse" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Voriges Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Nächstes Teleskop" @@ -4748,11 +4997,11 @@ #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:207 msgid "Previous lens" -msgstr "Vorige Linse" +msgstr "Vorige Zwischenlinse" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:213 msgid "Next lens" -msgstr "Nächste Linse" +msgstr "Nächste Zwischenlinse" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:219 msgid "Previous CCD frame" @@ -4806,64 +5055,70 @@ msgid "Apparent field of view of the ocular" msgstr "Scheinbares Gesichtsfeld des Okulars" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Verlängerungsfaktor: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" -msgstr "Linse: Ohne" +msgstr "Zwischenlinse: keine" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Verlängerungsfaktor: K.A." -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Vergrößerungsfaktor der Linse" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Okularbrennweite" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Drehung: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Vergrößerung durch dieses Fernglas" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Wahres Gesichtsfeld durch dieses Fernglas" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" -msgstr "Vergrößerung durch diese Okular/Linsen/Teleskopkombination" +msgstr "Vergrößerung durch diese Okular/Zwischenlinsen/Teleskopkombination" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" -msgstr "Wahres Gesichtsfeld durch diese Okular/Linsen/Teleskopkombination" +msgstr "" +"Wahres Gesichtsfeld durch diese Okular/Zwischenlinsen/Teleskopkombination" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Okular Erweiterungsmodul" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Version" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Eigenschaften von Barlowlinsen" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Ãœbersicht" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4874,7 +5129,7 @@ "ermöglicht die Konfiguration von Teleskopen und Okularen sowie CCD-Sensoren. " "Einige Geräte sind beim ersten Programmlauf vorkonfiguriert." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4892,7 +5147,7 @@ "Bildschirms verschwendet wird. Normalerweise empfehlen wir daher diese " "Option zu deaktivieren." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4901,7 +5156,7 @@ "Sie können ein Fadenkreuz zuschalten. Es sollte eigentlich nord-orientiert " "sein, derzeit zeigt es aber nur am Bildschirm nach oben." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4914,118 +5169,126 @@ "und 4.0%1 und zeigt damit, was man freisichtig mit einem Telrad-Sucher (oder " "ähnlichem) findet." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Bei Problemen bitte ich um Kontaktaufnahme. Sonst: Viel Vergnügen!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Tastenkürzel" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "Die Tastenbelegungen lassen sich im \"Allgemein\"-Tab einstellen." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "Keine Taste definiert" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Schaltet den Okularüberzug ein/aus." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Öffnet das Popup-Navigationsmenü" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Nur aktivieren mit ausgewähltem Objekt" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Bildkreis skalieren" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "Sterngrenzhelligkeiten an Teleskopöffnung anpassen" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Sternhelligkeit begrenzen" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Tastenbelegungen" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Okularansicht ein/aus" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Öffne Pop-up-Navigationsmenü:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Schnittstelle" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Bedienfeld" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Grad und Minuten für CCD-Gesichtsfeld verwenden" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Allgemein" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okulare" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Hinzufügen" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Name:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Brennweite:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Blendenwert:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Fernglas" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" -msgstr "Objektive" +msgstr "Zwischenlinsen" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Vielfache" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Multiplikator:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5033,162 +5296,223 @@ "Werte mit Faktor >1 verlängern die Brennweite (Barlow-Linse). Werte mit " "Faktor <1 reduzieren die Brennweite (Shapley-Linse)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensoren" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Auflösung x (Pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Auflösung y (Pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Chipbreite (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Chiphöhe (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Pixelbreite (µm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Pixelhöhe (µm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskope" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Durchmesser:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Horizontal spiegeln" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Vertkal spiegeln" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Impressum" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelliten" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" "Berechnung der Positionen künstlicher Erdsatelliten aus NORAD TLE-Daten" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Das alte Format der Datei satellites.json ist nicht mehr gültig - Standard-" "Datei wird verwendet" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "freisichtig" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "Forschung" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "Kommunikation" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "Navigation" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "Amateurfunker" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "Wetter" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geostationär" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "funktionsuntüchtig" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "GPS" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "Iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Hubble Space Telescope" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "International Space Station" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Katalognummer" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Internationale Bezeichnung" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "Künstlicher Satellit" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Entfernung (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Entfernungsänderung (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Höhe (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Koord. unter Obj: (Breite/Länge): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME-Koordinaten (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME-Geschwindigkeit (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Der Satellit und der Beobachter sind im Sonnenlicht." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Der Satellit ist sichtbar." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Der Satellit ist verfinstert." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Der Satellit ist nicht sichtbar" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Stellarium Satelliten-Erweiterung" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5196,18 +5520,18 @@ "Die Satelliten-Erweiterung kann die Positionen von künstlichen Satelliten in " "der Erdumlaufbahn vorhersagen." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Hinweise für Benutzer" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Satelliten und deren Umlaufbahnen werden nur angezeigt, wenn sich der " "Beobachter auf der Erde befindet." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5217,7 +5541,7 @@ "(einige Tage, Wochen oder evtl. 1 Monat in die Vergangenheit und Zukunft). " "Außerhalb dieses Zeitrahmens sind große Abweichungen zu erwarten." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5227,7 +5551,7 @@ "regelmäßig aktualisiert werden." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5239,7 +5563,7 @@ "und befindet sich im Datenordner des Benutzers unter " "».stellarium/modules/Satellites/«." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5248,11 +5572,11 @@ "Funktionen sind fehlerhaft, unvollständig oder nicht vorhanden." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Aktualisierungen der TLE-Daten" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5262,7 +5586,7 @@ "herunterladen. In der Voreinstellung wird die Erweiterung die TLE-Daten " "aktualisieren, wenn diese älter als 72 Stunden sind. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5274,7 +5598,7 @@ "Rechner befindet. Diese Datei muss im selben Format sein, wie die Celestrak-" "Aktualisierungen (für ein Beispiel siehe %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5283,11 +5607,11 @@ "am Ende etwas in eckigen Klammern enthält, wird dieser Teil entfernt, bevor " "die Daten benutzt werden." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Neue Satelliten hinzufügen" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5300,11 +5624,11 @@ "2. Wechsle zum Satelliten-Tab und klicke die Schaltfläche '+'. \r\n" "3. Wähle den/die gewünschten Satelliten und drücke 'hinzufügen'." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Technische Hinweise" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5312,7 +5636,7 @@ "Die Positionen werden mithilfe der SGP4- & SDP4-Methoden berechnet, " "ausgehend von NORAD-TLE-Eingabedaten. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5321,24 +5645,26 @@ "korrigierten Spacetrack Report #3 (sowie Spacetrack Report #6) geschrieben. " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Weitere Details gibt es %1hier%2." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Verknüpfungen" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5348,31 +5674,34 @@ "eintragen!" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Wenn Sie Fragen haben, können Sie %1hier eine Antwort erhalten%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Fehlerberichte können %1hier%2 eingereicht werden." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5380,120 +5709,140 @@ "Wenn Sie neue Funktionen wünschen, erstellen Sie bitte einen Fehlerbericht " "und markieren Sie ihn als »wishlist«." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internet-Aktualisierungen deaktiviert" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Aktualisierung läuft …" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Nächste Aktualisierung in: < 1 Minute" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Nächste Aktualisierung in: %1 Minuten" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Nächste Aktualisierung in: %1 Stunden" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Aktualisierung mittels Dateien" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Aktualisierungsfehler" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "%1/%2 Satellit(en) aktualisiert; %3 hinzugefügt; %4 entfernt" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "%1/%2 Satellit(en) aktualisiert; %3 fehlt/fehlen" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "%1/%2 Satellit(en) aktualisiert; %3 hinzugefügt; %4 fehlen" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[neue Quelle]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Aktualisierung mittels Dateien" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[Fehler bei der Bahnberechnung]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[alle neu hinzugefügten]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[alle nicht angezeigten]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[alle angezeigten]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[alle]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Neue Gruppe..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Wählen Sie die TLE-Aktualisierungsdatei" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Daten werden heruntergeladen …" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5501,176 +5850,201 @@ "Stellarium lädt Satellitendaten von den aktualisierten Quellen herunter. " "Bitte warten …" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "TLE-Quelldatei(en) wählen …" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Daten werden verarbeitet …" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" "Es konnten keine Daten heruntergeladen werden. Bitte später erneut versuchen." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Katalognummer: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Satelliten-Konfiguration" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Internet-Aktualisierungen der TLE-Listen" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Aktualisierungen" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Aktualisierungen aus dem Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Bahndaten aus dem Internet aktualisieren" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Zuletzt aktualisiert:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" +"Beim Aktualisieren alle Bahndaten von der gewählten Quelle übernehmen" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "Beim Aktualisieren Satelliten ohne aktualisierten Eintrag entfernen" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Aktualisierungs-Rhythmus (Stunden):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Beschriftungen" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Schriftgröße der Beschriftung (Pixel):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Bahnlinien" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Anzahl der Bahnlinien-Segmente" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Anzahl der Segmente:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Dauer eines einzelnen Segments in Sekunden" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Segment-Länge (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Anzahl der Segmente am Ende jeder Bahnllinie" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Dauer des Ãœberblendens:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Standardwerte wiederherstellen" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Einstellungen als Standard speichern" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Einstellungen" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Doppelklick auf den Satelliten um ihn zu verfolgen." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Mehr Satelliten hinzufügen" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Ausgewählte Satelliten entfernen" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Änderungen speichern" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Katalognummer:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Gewählte(n) Satelliten anzeigen" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Angezeigt" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Bahnlinie(n) des/der ausgewählten Satelliten anzeigen" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Umlaufbahn" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Katalognummer:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" +"Gewählte(n) Satelliten nicht aktualisieren (oder beim Aktualisieren " +"entfernen)" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Nicht aktualisieren" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Beschreibung:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Gruppen:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Komma-getrennte Liste der Gruppen" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE-Daten:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Bahndaten nach NORAD Two Line Elements" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Ausgewählte Satelliten entfernen" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Mehr Satelliten hinzufügen" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "TLE-Eintrag:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Änderungen speichern" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Satelliten in den markierten Quellen werden gegebenenfalls automatisch bei " +"der nächsten Aktualisierung hinzugefügt." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5678,15 +6052,15 @@ "URL der gewählten Quelle eintragen/ändern. Änderungen werden mit Druck auf " "die Entertaste gespeichert." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Neue Quelle hinzufügen" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Ausgewählte Quelle entfernen" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Quellen" @@ -5722,11 +6096,11 @@ msgid "Discard" msgstr "Ignorieren" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskopsteuerung" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5734,12 +6108,12 @@ "Diese Erweiterung ermöglicht Stellarium das Absetzen von Steuerbefehlen an " "computerisierte »GoTo«-Teleskop-Montierungen." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Bewege Teleskop #%1 zu gewähltem Objekt" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Bewege Teleskop #%1 zu derzeitiger Bildschirmmitte" @@ -6143,62 +6517,62 @@ "Zeitzone sowie des Datums- und Zeitformats in der unteren Menüleiste." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Januar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Februar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "März" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "April" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Mai" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Juni" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Juli" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "August" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "September" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Oktober" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "November" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Dezember" @@ -6358,7 +6732,7 @@ "unteren Leiste." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Zeitformat" @@ -6376,7 +6750,7 @@ msgstr "24-Stunden-Format" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Datumsformat" @@ -6392,11 +6766,11 @@ msgid "mm-dd-yyyy" msgstr "mm-tt-jjjj" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Text-Befehlsschnittstelle" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6404,144 +6778,144 @@ "Implementierung der Text-Befehlsschnittstelle (TUI) aus Version 0.9.x als " "eine Erweiterung – zur Verwendung in Planetarien" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Objekt im Sonnensystem" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Aktuelle Zeit/Datum" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Zeitzone einstellen" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Tasten für Tagsteuerung" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Datum/Zeitvorgabe beim Start" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "System" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "Voreinstellung" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmttjjjj" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ttmmjjjj" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "jjjjmmtt" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12 Stunden" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24 Stunden" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Sprache" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Sterne anzeigen" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Farben" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Namen der Nebel" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Nebelmarkierungen" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Galaktischer Äquator" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Effekte" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Manuelle Vergrößerung" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Magnituden-Verstärkungsfaktor" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Helligkeit der Milchstraße:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Rhythmus der Nebelbeschriftung" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Zoom-Dauer:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Cursor aus nach Zeitablauf:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Laden einer Landschaft kann Ort verändern" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Lokales Skript ausführen" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Skript anhalten" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD-Skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Verwaltung" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Standardeinstellung laden" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Aktuelle Einstellungen speichern" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Ausschalten" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[Kein TUI-Knoten]" @@ -6577,16 +6951,16 @@ "suchen. Noch in Entwicklung." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Abfrage der MPCs %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Bei erfolgreicher Suche wird nur ein Resultat angezeigt." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6594,7 +6968,7 @@ "Sowohl Kometen als auch Asteroiden können mit ihrer Nummer, ihrem " "(englischen) Namen oder ihrer vorläufigen Bezeichnung identifiziert werden." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6784,40 +7158,46 @@ msgid "Solar System" msgstr "Sonnensystem" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Historische Supernovae" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Eine Erweiterung zur Darstellung einiger historischer Supernovae, die heller " -"als die 10. Größenordnung sind." +"Dieses Plugin erlaubt die Darstellung einiger heller historischer Supernovae." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "Supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Supernova-Typ: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Maximale Helligkeit: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Historische Supernovae-Erweiterung" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " msgstr "" -"Eine Erweiterung, die einige historische Supernovae anzeigt, die heller als " -"die 10. Größenordnung sind: " +"Dieses Plugin erlaubt die Darstellung einiger heller historischer " +"Supernovae: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." +msgstr "Alle diese Supernovae sind heller als %1 im Helligkeitsmaximum." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Lichtkurven" @@ -6839,7 +7219,7 @@ msgstr "Danksagungen" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6854,14 +7234,14 @@ msgstr "Institut für Theoretische und Experimentalphysik" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "in Russland" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6871,8 +7251,9 @@ "Katalogformat finden Sie %1hier%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Nächste Aktualisierung erfolgt in %1 Tagen." @@ -6890,29 +7271,115 @@ msgstr "Konfiguration für Historische Supernovae-Erweiterung" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Aktualisiere Katalog durch das Internet" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Aktualisierungen aus dem Internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Aktualisierungsinterval (Tage):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[nächste Aktualisierungs Information]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Helle Novae" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "Ein Plugin zur Darstellung einiger heller Novae in der Milchstraße" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Typ: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "Nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Helle Novae Plugin" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"Helle Novae können mit der Suchfunktion namentlich gefunden werden, z.B. " +"'Nova Cygni 1975' or 'V1500 Cyg'." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"Dieses Plugin verwendet ein sehr einfaches Modell für die Berechnung von " +"Lichtkurven für Novae." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Das Modell basiert auf der Abklingzeit um %1 Größenklassen vom Maximum, " +"wobei %1=2, 3, 6 und 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Bei Fehlen entsprechender Daten wird ein typischer Nova-Verlauf dargestellt." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Bei Interesse an diesem Plugin, Entwicklungsgeschichte und Katalogformat, " +"bitte %1hier%2 nachsehen." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Novae-Daten aktualisiert" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Konfiguration für Helle Novae" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Konfiguration für Helle Novae-Plugin" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quasare" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6931,11 +7398,11 @@ msgid "Z (redshift): %1" msgstr "Z (Rotverschiebung): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Quasare-Erweiterung" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6945,40 +7412,50 @@ "Größenordnung sind. Katalog der Quasare zusammengestellt aus »Quasars and " "Active Galactic Nuclei« (13. Ausgabe)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Quasare aktualisiert" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Quasare-Konfiguration" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Konfiguration für Quasare-Erweiterung" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Darstellungsweise für Quasare" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Einstellungen für Quasare" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Zeige nur Position (ohne Bezeichnung) für alle Quasare" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Aktiviert Anzeige der Quasar-Verteilung" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Beim Programmstart anzeigen" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Quasar-Schaltfläche in Toolbar zeigen" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsare" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7104,11 +7581,11 @@ "isolierter Neutronenstern mit gepulster thermischer Röntgenstrahlung, aber " "ohne meßbare Radioemission" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Pulsare-Erweiterung" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7119,67 +7596,71 @@ "B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) (%1astro-" "ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Hinweis" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "Pulsar-Bezeichner haben das Präfix 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Danksagung" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino Radio Astronomy Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Nancay Radioastronomical Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "in Frankreich" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsare aktualisiert" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Pulsare-Konfiguration" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Konfiguration für Pulsare-Erweiterung" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Darstellungsweise für Pulsare" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Einstellungen für Pulsare" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Zeige nur Position (ohne Bezeichnung) für alle Pulsare" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Aktiviert Anzeige der Pulsar-Verteilung" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Pulsar-Schaltfläche in Toolbar zeigen" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplaneten" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7188,71 +7669,71 @@ "Exoplaneten haben. Die Daten der Exoplaneten wurden aus »Extrasolar Planets " "Encyclopaedia« (exoplanet.eu) entnommen." -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metallizität" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Masse" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Radius" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Effektive Temperatur: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplanet" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Umlaufzeit" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "Tage" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jupitermassen" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Große Halbachse" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AE" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Exzentrizität" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inklination" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Winkeldistanz" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Entdeckungsjahr" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Exoplaneten-Erweiterung" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7263,7 +7744,7 @@ "Planets Encyclopaedia%2« entnommen." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7272,42 +7753,132 @@ "Weitere Informationen zu dieser Erweiterung, der Entwicklungsgeschichte und " "dem Katalogformat finden Sie %1hier%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "Allgemeine professionelle Websites zu extrasolaren Planeten" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplaneten: eine interaktive Version von XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (The Hunt for Exomoons with Kepler=Jagd auf Exomonde mit Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Exoplaneten in Doppel- und Mehrfachsternsystemen (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Benennung von Exoplaneten (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" +"Einige Astronomen und Gruppen aus dem Studienfeld extrasolarer Planeten" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "Aktualisierung: 16. April 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "The Exoplanet Data Explorer" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "The Anglo-Australian Planet Search" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Geneva Extrasolar Planet Search Programmes" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Optical Long-Baseline Interferometry News)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "NASA's Exoplanet Exploration Program" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Pulsar-Planeten" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "The NASA Exoplanet Archive" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "IAU-Komission 53: Extrasolare Planeten" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "The Habitable Zone Gallery" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - The Search for Another Earth" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Open Exoplanet Catalogue" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "The Habitable Exoplanets Catalog" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Exoplaneten wurden aktualisiert" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Exoplaneten-Konfiguration" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Konfiguration für Exoplaneten-Erweiterung" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Exoplaneten-Daten aus dem Internet aktualisieren" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Anzeigemodus für Exoplaneten" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Einstellungen für Exoplanetensysteme" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Zeige alle Exoplanetensysteme ohne Beschriftung" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Zeige Verteilung der Exoplaneten" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Zeige Exoplaneten nur nach Entdeckung an" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Darstellung der Exoplaneten nach Entdeckungsjahr ermöglichen" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Exoplanetensysteme-Schaltfläche in Toolbar zeigen" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Info" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Sichtbarkeitsanalyse" @@ -7330,185 +7901,179 @@ "und Untergänge.

    Eine Erklärung der Begriffe finden Sie im Reiter " "»Info« im Konfigurationsfenster." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Jan" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mrz" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Apr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Mai" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Jun" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Jul" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Aug" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Sep" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Okt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Dez" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Untergang um %1 (in %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Ging um %1 auf (vor %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Ging um %1 unter (vor %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Aufgang um %1 (in %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Zirkumpolar" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Kein Aufgang." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Kulmination um %1 (in %2) bei %3 Grad." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." -msgstr "Kulmination war um %1 (in %2) bei %3 Grad." +msgstr "Kulmination war um %1 (vor %2) bei %3 Grad." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Objekt nicht beobachtbar." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Kein Akronychischer oder Kosmischer Auf- bzw. Untergang." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Größte Elongation: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Größte Elongation: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (bei %1 Grad)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Akronychischer Auf-/Untergang" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Kein akronychischer Auf-/Untergang" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Kosmischer Auf-/Untergang" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Kein kosmischer Auf-/Untergang" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Das ganze Jahr beobachtbar." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Nicht beobachtbar bei dunkler Nacht." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Nächte über dem Horizont: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "HEUTE:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "HEUER:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Letzter Vollmond: %1 %2 um %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Nächster Vollmond: %1 %2 um %3:%4. " @@ -7924,6 +8489,9 @@ #~ msgid "Light pollution: " #~ msgstr "Lichtverschmutzung: " +#~ msgid "Nebulas" +#~ msgstr "Nebel" + #~ msgid "Form" #~ msgstr "Eingabefeld" @@ -7945,6 +8513,9 @@ #~ msgid "Meridian Line" #~ msgstr "Meridianlinie" +#~ msgid "Nebulas background images" +#~ msgstr "Hintergrundbilder der Nebel" + #~ msgid "Planets labels" #~ msgstr "Planetenbeschriftungen" @@ -8023,6 +8594,15 @@ #~ msgid "Hydra" #~ msgstr "Hydra" +#~ msgid "TLE data:" +#~ msgstr "TLE-Daten:" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Internet-Aktualisierungen der TLE-Listen" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Bahndaten nach NORAD Two Line Elements" + #~ msgid "" #~ "Support is provided via the Launchpad website. Be sure to put \"Satellites " #~ "plugin\" in the subject when posting." @@ -8030,6 +8610,13 @@ #~ "Wenn Sie Hilfe benötigen, wenden Sie sich an die Launchpad-Website. Bitte " #~ "schreiben Sie dabei »Satellites plugin« in die Betreffzeile Ihres Beitrags." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "%1/%2 Satellit(en) aktualisiert; %3 fehlt/fehlen" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Komma-getrennte Liste der Gruppen" + #~ msgid "Crosshairs" #~ msgstr "Fadenkreuz" @@ -8191,6 +8778,10 @@ #~ msgstr "" #~ "Phobos verfinstert die Sonne, gesehen von Olympus Mons, 10. Januar 2068." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "Bildschirmschoner mit insgesamt 171 Ereignissen im Sonnensystem." + #~ msgid "Transit of Venus as seen from Sydney Australia 6th June 2012." #~ msgstr "" #~ "Venustransit, wie er am 6. Juni 2012 über Sydney, Australien, zu sehen war." @@ -8214,9 +8805,15 @@ #~ msgstr "" #~ "Ein Blick zur Sonne von den Planeten des Sonnensystems und von Pluto aus." +#~ msgid "Display mode for pulsars" +#~ msgstr "Darstellungsweise für Pulsare" + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "Fünffach-Finsternis von Deimos gesehen, 2027" +#~ msgid "Display mode for quasars" +#~ msgstr "Darstellungsweise für Quasare" + #~ msgid "0 deg." #~ msgstr "0 Grad" @@ -8268,6 +8865,20 @@ #~ msgid "Telescope Control Plugin" #~ msgstr "Teleskopsteuerungs-Erweiterung" +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Eine Erweiterung, die einige historische Supernovae anzeigt, die heller als " +#~ "die 10. Größenordnung sind: " + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Eine Erweiterung zur Darstellung einiger historischer Supernovae, die heller " +#~ "als die 10. Größenordnung sind." + #~ msgid "Pulsars Plugin" #~ msgstr "Pulsare-Erweiterung" diff -Nru stellarium-0.12.1/po/stellarium/dv.po stellarium-0.12.4/po/stellarium/dv.po --- stellarium-0.12.1/po/stellarium/dv.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/dv.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-02-15 10:47+0000\n" "Last-Translator: Guybrush88 \n" "Language-Team: Divehi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:12+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Þ‚ÞªÞ‹Þ¦Þ‚Þ°Þ‚Þ¦" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Þ‰ÞªÞÞ¦Þ‚Þ°Þ‚Þ¨ÞŠÞªÞ‚Þ°" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Þ†Þ®Þ‚Þ°Þ“Þ¬Þ†Þ°Þ“Þ°" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Þިޔުންތެރިޔާ" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ÞÞ¦Þ‡Þ¨ÞÞ¦Þ‚Þ°ÞÞ°" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "ވިންޑޯތައް" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "ތަޕްÞÞ©Þެއްނެތް" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Þ‡Þ®Þ•Þ°Þަންތައް Þ‹Þ¦Þ‡Þ°Þ†Þ§" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "ÞÞ°Þ“Þ§ÞƒÞ°ÞÞ°" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Þ‡Þ¬Þ€Þ¬Þ‚Þ¨Þ€Þ¬Þ‚Þ° ÞÞ¬Þ“Þ¨Þ‚Þ°ÞŽ" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Þ‚ÞªÞ†ÞªÞ‚Þ°Þ‚Þ¦" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Þ’Þ«Þ‰Þ° Þ‡Þ¦Þ‡ÞªÞ“Þ°" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/el.po stellarium-0.12.4/po/stellarium/el.po --- stellarium-0.12.1/po/stellarium/el.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/el.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-04-14 15:39+0000\n" "Last-Translator: Christos Sotiropoulos \n" "Language-Team: Greek, Modern (1453-) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "ΜεσημβÏινός" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Εκλειπτική" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "ΙσημεÏινός" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "ΟÏίζοντας" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Γαλαξιακό Επίπεδο" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "ΣυγγÏαφέας: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Τοποθεσία: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 μ" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Πλανήτης: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "ΤÏπος: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Μέγεθος: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Μέγεθος: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Γαλαξίας" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Ανοιχτό σμήνος" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "ΣφαιÏικό σμήνος" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Îεφελώματα [Î]" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Πλανητικό νεφέλωμα" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Σκοτεινό Îεφέλωμα" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Σμήνος που σχετίζεται με υφή νεφελώματος" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Άγνωστο" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Άγνωστος Ï„Ïπος" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Απόλυτο μέγεθος: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Απόσταση: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Απόσταση: %1ΑΜ" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Φαινόμενη διάμετÏος: : %1, με δακτÏλιους: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Φαινόμενη διάμετÏος: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Μέση ηλιακή ημέÏα: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Γωνία Φάσης: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Αποχή: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Φάση: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "αστέÏας" @@ -219,48 +219,123 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "διπλό άστÏο" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Μέγεθος: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Φασματικός ΤÏπος: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Απόσταση: %1 Έτη Φωτός" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ΠαÏαλλαγή: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Διαστημόπλοιο" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "Η διόÏθωση έχει απενεÏγοποιηθεί. ΧÏησιμοποιείστε μόνο αν γνωÏίζετε τι κάνετε!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -272,7 +347,7 @@ "Σχετικότητας του Αϊνστάιν Επιβεβαιώθηκε από ΑÏχαίες Ηλιακές Εκλείψεις " "(%1). Για πεÏισσότεÏες πληÏοφοÏίες δείτε %2εδώ%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -281,7 +356,7 @@ "Αυτή η εμπειÏική εξίσωση δημοσιεÏθηκε από τον G. M. Clemence στο άÏθÏο " "Πάνω στο ΣÏστημα των ΑστÏονομικών Συνεχών (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -295,14 +370,14 @@ "Υιοθετήθηκε επίσης από το Ï€ÏόγÏαμμα για ηλεκτÏονικοÏÏ‚ υπολογιστές SunTracker " "Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -310,7 +385,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -318,14 +393,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -334,14 +409,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -349,25 +424,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -376,14 +451,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -391,42 +466,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -434,7 +509,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -442,7 +517,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -451,7 +526,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -461,45 +536,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Λάθος" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -667,52 +759,53 @@ msgid "Found" msgstr "Î’Ïέθηκαν" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Επιλέξτε κατάλογο για στιγμιότυπα" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Εκκίνηση FOV: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "ΑÏχική κατεÏθυνση θέασης Αζ/Υψ: %1%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "ΔημιουÏγοί" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Επικοινωνία" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "ΣυγγÏαφέας" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Άδεια χÏήσης" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "ΣενάÏιο υπό εκτέλεση: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "ΣενάÏιο υπό εκτέλεση: [Κανένα]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -720,23 +813,23 @@ "ΟλοκλήÏωση λήψης των νέων καταλόγων αστεÏιών!\n" "Επανεκκινήστε το Stellarium για να τα δείτε." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Εγκαταστάθηκαν όλοι οι διαθέσιμοι αστÏικοί κατάλογοι" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Λήψη καταλόγου %1 απο %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "Λήψη %1..." -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -747,7 +840,7 @@ "ΑÏιθμός άστÏων: %2 εκατομμÏÏια\n" "ÎŒÏια Μεγεθών: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -756,11 +849,11 @@ "Σφάλμα κατά τη λήψη του %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Έλεγχος ακεÏαιότητας αÏχείων…" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -770,115 +863,123 @@ "Το αÏχείο είναι αλλοιωμένο." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1049,49 +1150,53 @@ msgid "OSX Developer: %1" msgstr "ΠÏογÏαμματιστής OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Κονσόλα σεναÏίου" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "ΠαÏάθυÏα" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Διάστημα" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1μ" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "ΧωÏίς πεÏιγÏαφή" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "ΧωÏίς πεφταστέÏια" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Κανονικός Ïυθμός" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Κανονικός Ïυθμός διαττόντων αστέÏων ΠεÏσείδων" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Ασυνήθης Ïυθμός διαττόντων αστέÏων Λεοντίδων" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "ΥψηλότεÏος Ïυθμός στην ιστοÏία (1966 Λεοντίδες)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Îέα τοποθεσία" @@ -1199,19 +1304,19 @@ msgid "starchart" msgstr "χάÏτης αστεÏιών" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Πανεπιστήμιο του ΣτÏασβοÏÏγου (Γαλλία)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Πανεπιστήμιο Harvard (ΗΠΑ)" @@ -1227,30 +1332,36 @@ msgid "Alternative shortcut" msgstr "Εναλλακτική συντόμευση" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Το σÏστημά δεν υποστηÏίζει OpenGL" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Ήλιος" @@ -1267,12 +1378,12 @@ msgstr "Γη" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Σελήνη" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "ΆÏης" @@ -1370,7 +1481,7 @@ msgstr "Μήτις" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "ΚÏόνος" @@ -1668,239 +1779,268 @@ msgstr "Ίνουιτ (Εσκιμώος)" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "ΚοÏεάτικη" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Ινδιάνοι Λακότα" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Ινδιάνοι Îαβάχο" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Σκανδιναβική" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Πολυνήσιος" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "ΤοÏπι-ΓκουαÏάνι" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Δυτικός" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "ΔέντÏα" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Τυφώνας" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Ωκεανός" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "ΜεÏική Έκλειψη Σελήνης" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Ολική Έκλειψη Σελήνης" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "ΠÏοφÏλαξη Οθόνης" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Ηλιακή Έκλειψη" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Script Εκκίνησης" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Ζωδιακός" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "ΤÏιπλή Ανατολή και ΔÏση του ΕÏμή" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Διπλή έκλειψη από τον Δείμο το 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Διπλή έκλειψη από τον Δείμο το 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "ΠεÏιήγηση σε κάθε εγκατεστημένο τοπίο" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Script για την επίδειξη μεÏικής έκλειψης σελήνης." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Script για την επίδειξη ολικής έκλειψης σελήνης." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1910,1502 +2050,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "ΑνδόÏα" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Ηνωμένα ΑÏαβικά ΕμιÏάτα" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Αφγανιστάν" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Αντίγκουα και ΜπαÏμποÏντα" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Ανγκουίλα" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Αλβανία" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ΑÏμενία" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Ολλανδικές Αντίλλες" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Ανγκόλα" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "ΑνταÏκτική" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "ΑÏγεντινή" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "ΑμεÏικανική Σαμόα" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ΑυστÏία" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ΑυστÏαλία" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "ΑÏοÏμπα" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "ΑζεÏμπαϊτζάν" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Βοσνία-ΕÏζεγοβίνη" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "ΜπαÏμπάντος" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Μπανγκλαντές" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Βέλγιο" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "ΜποÏÏκινα Φάσο" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "ΒουλγαÏία" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "ΜπαχÏέιν" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "ΜπουÏοÏντι" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Μπενίν" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "ΒεÏμοÏδες" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "ΜπÏουνέι ÎταÏουσαλάμ" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Βολιβία" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Î’Ïαζιλία" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Μπαχάμες" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Μπουτάν" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Îήσος Μπουβέ" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Μποτσουάνα" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "ΛευκοÏωσία" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Μπελίζε" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Καναδάς" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Îήσοι Κόκος" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "ΔημοκÏατία του Κονγκό (ΖαÎÏ)" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "ΚεντÏοαφÏικανική ΔημοκÏατία" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "ΔημοκÏατία του Κογκό" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Ελβετία" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Ακτή ΕλεφαντοστοÏ" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Îήσοι Κουκ" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Χιλή" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "ΚαμεÏοÏν" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Κίνα" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Κολομβία" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Κόστα Ρίκα" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "ΣεÏβία και ΜαυÏοβοÏνιο" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "ΚοÏβα" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Κάπε ΒέÏντε" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Îήσος ΧÏιστουγέννων" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "ΚÏÏ€Ïος" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ΔημοκÏατία της Τσεχίας" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "ΓεÏμανία" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Τζιμπουτί" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Δανία" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Îτομίνικα" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Δομηνικανή ΔημοκÏατία" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "ΑλγεÏία" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "ΕκουαδόÏ" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Εσθονία" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Αίγυπτος" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Δυτική ΣαχάÏα" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "ΕÏυθÏαία" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Ισπανία" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Αιθιοπία" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Φινλανδία" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Φίτζι" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Îησιά Φώκλαντ" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "ΜικÏονησία" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Îήσοι ΦεÏόες" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Γαλλία" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Γκαμπόν" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Ηνωμένο Βασίλειο" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "ΓÏανάδα" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ΓεωÏγία" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Γαλλική Γουϊάνα" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Γκάνα" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "ΓιβÏαλτάÏ" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "ΓÏοιλανδία" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Γκάμπια" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Γουινέα" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "ΓουαδελοÏπη" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "ΙσημεÏινή Γουϊνέα" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Ελλάδα" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Îότια ΓεωÏγία και Îότιοι Îήσοι Σάντουιτς" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Γουατεμάλα" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Γκουάμ" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Γουινέα-Μπισάου" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Γουιάνα" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Χονγκ Κονγκ" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Îήσος ΧεÏντ και Îήσοι Μακντόναλντ" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ΟνδοÏÏα" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "ΚÏοατία" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Αϊτή" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "ΟυγγαÏία" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Ινδονησία" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ΙÏλανδία" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "ΙσÏαήλ" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Ινδία" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Î’Ïετανικά Εδάφη Î™Î½Î´Î¹ÎºÎ¿Ï Î©ÎºÎµÎ±Î½Î¿Ï" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "ΙÏάκ" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "ΙÏάν" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Ισλανδία" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Ιταλία" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Τζαμάικα" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "ΙοÏδανία" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Ιαπωνία" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Κένυα" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "ΚιÏγιζία" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Καμπότζη" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "ΚιÏιμπάτι" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "ΚομόÏες" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Άγιος ΧÏιστόφοÏος και Îέβις" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "ΛαοκÏατική ΔημοκÏατία της ΚοÏέας" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "ΔημοκÏατία της ΚοÏέας (Îότια ΚοÏέα)" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Κουβέιτ" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Îήσοι Καϋμάν" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Καζαχστάν" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Λάος" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Λίβανος" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Αγία Λουκία" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Λιχτενστάιν" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "ΣÏι Λάνκα" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "ΛιβεÏία" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Λεσότο" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Λιθουανία" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ΛουξεμβοÏÏγο" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Λετονία" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Λυβική ΑÏαβική ΤζαμαχιÏίγια" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "ΜαÏόκο" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Μονακό" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Μολδαβία" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "ΜαδαγασκάÏη" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Îήσοι ΜάÏσαλ" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "FYROM" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Μαλί" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "ΜιανμάÏ" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Μογγολία" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Μακάο" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Îήσοι Î’ÏŒÏειες ΜαÏιάνες" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "ΜαÏτινίκα" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "ΜαυÏιτανία" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "ΜοντσεÏάτ" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Μάλτα" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "ΜαυÏίτιος" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Μαλδίβες" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Μαλάουϊ" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Μεξικό" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Μαλαισία" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Μοζαμβίκη" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Îαμίμπια" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Îέα Καληδονία" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "ÎίγηÏας" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Îήσος ÎÏŒÏφολκ" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "ÎιγηÏία" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "ÎικαÏάγουα" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Ολλανδία" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "ÎοÏβηγία" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Îεπάλ" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "ÎαοÏÏου" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "ÎιοÏε" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Îέα Ζηλανδία" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Ομάν" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Παναμάς" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "ΠεÏοÏ" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Γαλλική Πολυνησία" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "ΠαποÏα Îέα Γουινέα" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Φιλιππίνες" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Πακιστάν" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Πολωνία" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Îήσοι Αγίου ΠέτÏου και Μιχαήλ" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "ΠίτκεÏν" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "ΠουέÏτο Ρίκο" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Παλαιστίνη" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "ΠοÏτογαλία" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Παλάου" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "ΠαÏαγουάη" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "ΚατάÏ" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Ρεγιουνιόν" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Ρουμανία" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "ΣεÏβία" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Ρωσική Ομοσπονδία" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ρουάντα" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Σαουδική ΑÏαβία" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Îήσοι Σολομώντα" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Σεϊχέλες" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Σουδάν" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Σουηδία" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "ΣιγκαποÏÏη" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Îήσος Αγίας Ελένης" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Σλοβενία" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Îήσοι ΣβάλμπαÏντ και Γιαν Μάγιεν" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Σλοβακία" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "ΣιέÏα Λεόνε" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Άγιος ΜαÏίνος" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Σενεγάλη" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Σομαλία" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "ΣουÏινάμ" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Σάο Τομέ και ΠÏίνσιπε" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Ελ ΣαλβαδόÏ" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "ΑÏαβική ΔημοκÏατία της ΣυÏίας" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Σουαζιλάνδη" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Îήσοι ΤεÏκς και Κάικος" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Τσαντ" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Γαλλικές Îότιες ΠεÏιοχές" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Τόνγκο" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Ταϊλάνδη" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Τατζικιστάν" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Τοκελάου" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Ανατολικό ΤιμοÏÏ" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ΤουÏκμενιστάν" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Τυνησία" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Τόνγκα" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "ΤουÏκία" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "ΤÏινιντάντ και Τομπάγκο" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "ΤουβαλοÏ" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Ταϊβάν" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Τανζανία" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "ΟυκÏανία" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Ουγκάντα" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Ελάσσονες Îήσοι ΗΠΑ" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Ηνωμένες Πολιτείες της ΑμεÏικής" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "ΟυÏουγουάη" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Ουζμπεκιστάν" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Πόλη του ΒατικανοÏ" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Άγιος Βικέντιος και ΓÏεναδίνες" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Βενεζουέλα" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Î’Ïετανικοί ΠαÏθένοι Îήσοι" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "ΠαÏθένοι Îήσοι, ΑμεÏικανικές" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Βιετνάμ" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Βανουάτου" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Βαλίς και ΦουτοÏνα" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Σαμόα" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Υεμένη" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Μαγιότ" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Γιουγκοσλαβία" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Îότια ΑφÏική" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Ζάμπια" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Ζιμπάμπουε" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Ημ/νία και ÏŽÏα" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "ΠÏοσθήκη 1 αστÏικής ημέÏας" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "ΠÏοσθήκη 1 αστÏικής εβδομάδας" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "ΠÏοσθήκη 1 ηλιακής ημέÏας" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "ΠÏοσθήκη 1 ηλιακής ÏŽÏας" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "ΠÏοσθήκη 1 ηλιακής εβδομάδας" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "ΕπιβÏάδυνση του ÏÏ…Î¸Î¼Î¿Ï ÎµÎºÏ„Î­Î»ÎµÏƒÎ·Ï‚ του σεναÏίου" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Μείωση ΤαχÏτητας ΧÏόνου [J]" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Μείωση ταχÏτητας χÏόνου (λίγο)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "ΕπιβÏάδυνση του ÏÏ…Î¸Î¼Î¿Ï ÎµÎºÏ„Î­Î»ÎµÏƒÎ·Ï‚ του σεναÏίου" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Άυξηση ΤαχÏτητας ΧÏόνου [L]" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "ΑÏξηση ταχÏτητας χÏόνου (λίγο)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "ΠαÏση Ï„Ïέχοντος σεναÏίου" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Συνέχιση εκτέλεσης σεναÏίου" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "ΤÏέχουσα ÏŽÏα" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Κανονικός Ïυθμός εκτέλεσης του σεναÏίου" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Κανονικός Ïυθμός χÏόνου" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Μηδενισμός ÏÏ…Î¸Î¼Î¿Ï Ï‡Ïόνου" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "ΑκÏÏωση εκτέλεσης σεναÏίου" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "ΑφαίÏεση 1 αστÏικής ημέÏας" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "ΑφαίÏεση 1 αστÏικής εβδομάδας" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "ΑφαίÏεση 1 ηλιακής ημέÏας" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "ΑφαίÏεση 1 ηλιακής ÏŽÏας" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "ΑφαίÏεση 1 ηλιακής εβδομάδας" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Επιλογές εμφάνισης" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "ΟÏιζόντια πεÏιστÏοφή" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Κατάσταση πλήÏους-οθόνης" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "ΑτμόσφαιÏα" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Αζιμουθιακό πλέγμα" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Σημεία του ΟÏίζοντα" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Καλλιτεχνική απεικόνιση αστεÏισμών" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "ÎŒÏια αστεÏισμών" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Ετικέτες αστεÏισμών" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "ΓÏαμμές αστεÏισμών" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "ΦωτογÏαφίες υποβάθÏου νεφελωμάτων" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "ΓÏαμμή Εκλειπτικής" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "ΓÏαμμή ΙσημεÏινοÏ" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Πλέγμα ΙσημεÏινοÏ" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Πλέγμα ΙσημεÏÎ¹Î½Î¿Ï J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Ομίχλη" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Γαλαξιακό πλέγμα" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Γαλαξιακό επίπεδο" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Έδαφος" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "ΓÏαμμή ΟÏίζοντα" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "ΓÏαμμή ΜεσημβÏινοÏ" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Îεφελώματα" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Κατάσταση νÏχτας" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Ετικέτες Πλανητών" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "ΤÏοχιές πλανητών" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "ΤÏοχιές πλανητών" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "ΑστέÏες" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Ετικέτες αστεÏιών" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Κάθετη πεÏιστÏοφή" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "ΔιάφοÏα" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Αυτόματη απόκÏυψη της οÏιζόντιας μπάÏας κουμπιών" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Αυτόματη απόκÏυψη της κάθετης μπάÏας κουμπιών" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Έξοδος" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "ΑντιγÏαφή επιλεγμένων πληÏοφοÏιών του αντικειμένου στο Ï€ÏόχειÏο" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Αποθήκευση στιγμιότυπου οθόνης" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Αλλαγή ανάμεσα σε ισημεÏινή και αλταζιμουθιακή στήÏιξη" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Διακόπτης οÏατότητας του GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Κίνηση και Επιλογή" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Το επιλεγμένο αντικείμενο στο κέντÏο" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "ΟÏισμός επιλεγμένου πλανήτη ως πλανήτη Ï€Ïοέλευσης" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "ΠαÏακολοÏθηση αντικειμένου" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Εστιακή μεγέθυνση επιλεγμένου αντικειμένου" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Εστιακή σμίκÏυνση επιλεγμένου αντικειμένου" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Γωνιακή ΜέτÏηση" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Σημεία Πυξίδας" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Εμφάνιση εξωπλανητών" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "ΠαÏάθυÏο ÏÏθμισης εξωπλανητών" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "οπτική εικόνα" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Οπτικά αναδυόμενα μενοÏ" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "ΠαÏάθυÏο ÏÏθμισης πάλσαÏ" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "ΠαÏάθυÏο διαμόÏφωσης δοÏυφόÏων" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Υποδείξεις δοÏυφόÏων" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Ετικέτες δοÏυφόÏων" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Μετακίνησε ένα τηλεσκόπιο στις συγκεκÏιμένες συντεταγμένες" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "ΣενάÏια" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "ΠαÏάθυÏο Ïυθμίσεων" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "ΠαÏάθυÏο ημέÏας/ÏŽÏας" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "ΠαÏάθυÏο βοήθειας" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "ΠαÏάθυÏο τοποθεσίας" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "ΠαÏάθυÏο αναζήτησης" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "ΠαÏάθυÏο συντομεÏσεων" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "ΠαÏαθυÏο επιλογών ουÏÎ±Î½Î¿Ï ÎºÎ±Î¹ θέασης" @@ -3431,7 +3607,7 @@ msgstr "Ανανέωση" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Τοποθεσία" @@ -3447,10 +3623,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "ΔιαγÏαφή" @@ -3459,7 +3635,7 @@ msgstr "ΠÏοσθήκη στη λίστα" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "ΓεωγÏαφικό πλάτος:" @@ -3472,12 +3648,12 @@ "δευτεÏόλεπτα), για παÏάδειγμα: +1μ 12λ 8δ" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "ΓεωγÏαφικό μήκος:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Ύψος :" @@ -3501,364 +3677,408 @@ msgid "Planet:" msgstr "Πλανήτης:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "ΕÏÏεση αντικειμένου" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "ΕÏÏεση Αντικειμένου ή Τοποθεσίας" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "γιώτα" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "άλφα" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "βήτα" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "γάμα" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "δέλτα" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "έψιλον" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "ζήτα" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "ήτα" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "θήτα" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "κάπα" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "λάμδα" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "μι" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "νι" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ξι" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "όμικÏον" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "πι" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "Ïο" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "σίγμα" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "ταυ" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "Ïψιλον" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "φι" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "χι" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "ψι" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "ωμέγα" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Ελληνικά γÏάμματα για την ονοματολογία Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Αντικείμενο" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Τοποθεσία" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "ονόματα στα Αγγλικά" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Λίστες" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Εκτεταμένη αναζήτηση με SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "ΕξυπηÏετητής:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Επιλογές" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "ονόματα στα Αγγλικά" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Λίστες" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Επιλογές" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "ΠÏοβολή" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "ΟυÏανός" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "ΔιακÏιτικά" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Τοπίο" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "ΠαÏάδοση του ΟυÏανοÏ" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Ετικέτες και ΔιακÏιτικά" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Πλανήτες" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Πλανήτες και δοÏυφόÏοι" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Εμφάνιση πλανητών" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Εμφάνιση διακÏιτικών πλανητών" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Εμφάνιση πλανητικών Ï„Ïοχιών" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "ΠÏοσομοίωση ταχÏτητας φωτός" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Κλιμάκωση Σελήνης" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Εμφάνιση ατμόσφαιÏας" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "ΦωτοÏÏπανση" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "πίεση, θεÏμοκÏασία, συντελεστής απόσβεσης" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Ρυθμίσεις Διάθλασης/Απόσβεσης" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Απόλυτη κλίμακα:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Σχετική κλίμακα:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Αναλαμπή:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Μείωση φωτεινότητας αμυδÏών αστέÏων όταν ένα φωτεινό αντικείμενο είναι οÏατό" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Δυναμική Ï€ÏοσαÏμογή ματιοÏ" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "ΠεφταστέÏια" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "ΑστεÏισμοί" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Εμφάνιση γÏαμμών" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Εμφάνιση ετικετών" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Εμφάνιση οÏίων" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Εμφάνιση καλλιτεχνικής εÏμηνείας" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ΟυÏάνια ΣφαίÏα" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Εμφάνιση γÏαμμής ισημεÏινοÏ" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Εμφάνιση γÏαμμής οÏίζοντα" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "ΠÏοβολή :" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "ΠÏοσθήκη/απομάκÏυνση τοπίων..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Εμφάνιση εδάφους" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Εμφάνιση ομίχλης" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "ΧÏηση υφιστάμενου πλανήτη και θέσης" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "ΧÏήση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… τοπίου ως Ï€Ïοεπιλογή" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "ΧÏήση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… Ï€Î¿Î»Î¹Ï„Î¹ÏƒÎ¼Î¿Ï Ï„Î¿Ï… ουÏÎ±Î½Î¿Ï Ï‰Ï‚ Ï€Ïοεπιλογή" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "ΟÏατό" @@ -3913,7 +4133,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Η κατεÏθυνση όταν ξεκινάει το Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Επιλεγμένες πληÏοφοÏίες αντικειμένου" @@ -3929,11 +4149,8 @@ msgid "Display no information" msgstr "Μη εμφάνιση πληÏοφοÏιών" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Κανένα" @@ -4075,7 +4292,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "ΗμεÏομηνία και ÏŽÏα εκκίνησης" @@ -4087,19 +4304,23 @@ msgid "Other:" msgstr "Άλλο:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "ΤÏέχον" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Εκκίνηση του Stellarium με την ημεÏομηνία και ÏŽÏα του συστήματος" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "ΗμεÏομηνία και ÏŽÏα συστήματος" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4107,23 +4328,23 @@ "ΟÏισμός του χÏόνου εξομοίωσης στην επόμενη χÏονική πεÏίοδο αυτής της ÏŽÏας " "της μέÏας όταν ξαναξεκινήσει το Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "ΗμεÏομηνία συστήματος:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Επιλογές πλανηταÏίου" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4131,54 +4352,54 @@ "Η παÏαμόÏφωση σφαιÏÎ¹ÎºÎ¿Ï ÎºÎ±Î¸Ïέπτη χÏησιμοποιείται κατά την Ï€Ïοβολή του " "Stellarium σε σφαιÏικοÏÏ‚ καθÏέπτες για συστήματα πλανηταÏίων Ï‡Î±Î¼Î·Î»Î¿Ï ÎºÏŒÏƒÏ„Î¿Ï…Ï‚." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "ΠαÏαμόÏφωση σφαιÏÎ¹ÎºÎ¿Ï ÎºÎ±Î¸Ïέπτη" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" "ΑπόκÏυψη των πάντων έξω από τον κεντÏικό κÏκλο του κÏÏιου Î¿Ï€Ï„Î¹ÎºÎ¿Ï Ï€ÎµÎ´Î¯Î¿Ï…" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Άποψη Δίσκου" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "ΑπόκÏυψη υπόλοιπων αστεÏισμών όταν επιλέγεται ένας" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Επιλογή ενός αστεÏισμοÏ" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "ΕυθυγÏάμμιση ετικετών με τον οÏίζοντα" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Ετικέτες \"βαÏÏτητας\"" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" "ΕνεÏγοποίηση/ΑπενεÏγοποίηση των κουμπιών οÏιζόντιας και κάθετης αντιστÏοφής " "της εικόνας" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Εμφάνιση κουμπιών αντιστÏοφής" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4186,93 +4407,99 @@ "Όταν είναι ενεÏγό, το κουμπί \"εστιακή σμίκÏυνση\" επίσης θα Ïυθμίζει την " "αÏχική κατεÏθυνση Î¿Ï€Ï„Î¹ÎºÎ¿Ï Ï€ÎµÎ´Î¯Î¿Ï…" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" "Η αυτόματη εστιακή σμίκÏυνση επιστÏέφει στην αÏχική κατεÏθυνση Î¿Ï€Ï„Î¹ÎºÎ¿Ï Ï€ÎµÎ´Î¯Î¿Ï…" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Στιγμιότυπα" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Κατάλογος φωτογÏαφιών οθόνης" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "ΑναστÏοφή χÏωμάτων" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Ανανέωση αστÏικών καταλόγων" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "ΈναÏξη λήψης" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Κατεβάστε αυτό το αÏχείο για να δείτε πεÏισσότεÏα αστέÏια" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Επανεκκίνηση λήψης" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Επανάληψη" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "ΠαÏση της λήψης. ΜποÏεί να συνεχιστεί αÏγότεÏα" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "ΆκυÏο" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Κλείσιμο παÏαθÏÏου κατά την εκτέλεση του σεναÏίου" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Εκτέλεση επιλεγμένου σεναÏίου" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Διακοπή εκτέλεσης σεναÏίου" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "ΦόÏτωση κατά την εκκινηση" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "ÏÏθμιση" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Βασικό" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ΠληÏοφοÏίες" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Πλοήγηση" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "ΕÏγαλεία" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "ΠÏόσθετα" @@ -4448,176 +4675,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Δείχνει σημεία της πυξίδας κατά μήκος του οÏίζοντα" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Οπτικά" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Τηλεσκόπιο #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Τηλεσκόπιο #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Διαστάσεις: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Τηλεσκόπιο" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&ΠÏοηγοÏμενο Τηλεσκόπιο" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Επόμενο Τηλεσκόπιο" @@ -4689,64 +4916,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "ΠεÏιστÏοφή: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Έκδοση" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Επισκόπηση" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4754,7 +4986,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4765,14 +4997,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4781,191 +5013,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Διεπαφή" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Γενικός" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "ΠÏόσθεση" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Όνομα :" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Εστιακή απόσταση:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Ανιχνευτές" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "ΟÏιζόντια Ανάλυση (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "ΚατακόÏυφη Ανάλυση (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "ΔιάμετÏος:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "ΠεÏί" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "ΔοÏυφόÏοι" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4973,119 +5214,179 @@ "ΠÏόβλεψη θέσης τεχνιτών δοÏυφόÏων σε Ï„Ïοχιά γÏÏω από την Γη βασισμένο στα " "δεδομένα του NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Το παλιό αÏχείο δοÏυφόÏων .json δεν είναι πλέον συμβατό - χÏήση του εξ " "οÏÎ¹ÏƒÎ¼Î¿Ï Î±Ïχείου" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Ο δοÏυφόÏος είναι οÏατός." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Ο δοÏυφόÏος δεν είναι οÏατός." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Σημειώσεις για τους χÏήστες" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Οι δοÏυφόÏοι και οι Ï„Ïοχιές τους είναι οÏατά μόνο όταν ο παÏατηÏητής είναι " "στη Γη" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5093,25 +5394,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5119,17 +5420,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "ΠÏοσθήκη νέων δοÏυφόÏων" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5137,41 +5438,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Τεχνικές σημειώσεις" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "ΣÏνδεσμοι" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5179,150 +5482,173 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "ΕνημέÏωση...." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Επόμενη ενημέÏωση:Î…< 1 λεπτό" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Επόμενη ενημέÏωση: %1 λεπτά" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Επόμενη ενημέÏωση: %1 ÏŽÏες" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "ΕνημέÏωσε Ï„ÏŽÏα" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "ΕνημέÏωση από αÏχεία" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Σφάλμα ενημέÏωσης" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "ΕνημέÏωσε Ï„ÏŽÏα" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "ΕνημέÏωση από αÏχεία" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Λήψη δεδομένων..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5330,189 +5656,209 @@ "Το Stellarium λαμβάνει δεδομένα από πηγές ενημεÏώσεων. ΠαÏακαλοÏμε να " "πεÏιμένετε...." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "ΕπεξεÏγασία δεδομένων...." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Τελευταία ενημέÏωση:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Ετικέτες" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Ρυθμίσεις" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "ΠÏοσθήκη δοÏυφόÏων" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "ΑπομάκÏυνση των επιλεγμένων δοÏυφόÏων" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Αποθήκευση αλλαγών" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Εμφάνιση" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Επίδειξη Ï„Ïοχιάς επιλεγμένου(ων) δοÏυφόÏου(ων)" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "ΤÏοχιά" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "ΠεÏιγÏαφή" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Ομάδες:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "ΑπομάκÏυνση των επιλεγμένων δοÏυφόÏων" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "ΠÏοσθήκη δοÏυφόÏων" - -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Αποθήκευση αλλαγών" - -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "ΠÏοσθήκη νέας πηγής" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "ΑπομάκÏυνση επιλεγμένης πηγής" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Πηγές" @@ -5548,11 +5894,11 @@ msgid "Discard" msgstr "ΠαÏάληψη" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "ΧειÏισμός Τηλεσκοπίου" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5560,12 +5906,12 @@ "Αυτό το Ï€Ïόσθετο επιτÏέπει στο Stellarium να στέλνει εντολές πεÏιστÏοφής σε " "ένα τηλεσκόπιο με Ïομποτική βάση (\"GoTo τηλεσκόπιο\")" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Μετακίνησε το τηλεσκόπιο #%1 στο επιλεγμένο αντικείμενο" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5953,62 +6299,62 @@ "και αλλάζει τον Ï„Ïόπο που εμφανίζεται η ÏŽÏα και η ημεÏομηνία στην κάτω μπάÏα" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "ΙανουάÏιος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "ΦεβÏουάÏιος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "ΜάÏτιος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "ΑπÏίλιος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Μάϊος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "ΙοÏνιος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "ΙοÏλιος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "ΑÏγουστος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "ΣεπτέμβÏιος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "ΟκτώβÏιος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "ÎοέμβÏιος" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "ΔεκέμβÏιος" @@ -6162,7 +6508,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6180,7 +6526,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6196,11 +6542,11 @@ msgid "mm-dd-yyyy" msgstr "μμ-ηη-εεεε" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Διασυνδετικό στοιχείο κειμένου χÏήστη" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6208,144 +6554,144 @@ "ΕφαÏμογή Ï€Ïόσθετου του TUI της σειÏάς 0.9.x που χÏησιμοποιείται σε συστήματα " "πλανητάÏιων" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "σÏστημα" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "μμηηεεεε" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ηημμεεεε" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "εεεεμμηη" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Γλώσσα" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "ΠÏοβολή ΑστέÏων" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Οπτικά εφέ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "ΔιαχείÏιση" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "ΤεÏματισμός λειτουÏγίας" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6382,22 +6728,22 @@ "ακόμα μία εÏγασία σε εξέλιξη." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6566,36 +6912,43 @@ msgid "Solar System" msgstr "Ηλιακό ΣÏστημα" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6613,7 +6966,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6627,14 +6980,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6642,8 +6995,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6661,29 +7015,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6699,51 +7130,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6863,11 +7304,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6875,137 +7316,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7013,49 +7458,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7071,185 +7605,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "μ" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7513,6 +8041,9 @@ #~ msgid "Calendar" #~ msgstr "ΗμεÏολόγιο" +#~ msgid "Nebulas" +#~ msgstr "Îεφελώματα" + #~ msgid "10000" #~ msgstr "10000" @@ -7534,6 +8065,9 @@ #~ msgid "Form" #~ msgstr "ΦόÏμα" +#~ msgid "Nebulas background images" +#~ msgstr "ΦωτογÏαφίες υποβάθÏου νεφελωμάτων" + #~ msgid ":" #~ msgstr ":" diff -Nru stellarium-0.12.1/po/stellarium/en.po stellarium-0.12.4/po/stellarium/en.po --- stellarium-0.12.1/po/stellarium/en.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/en.po 2013-09-23 06:20:13.000000000 +0000 @@ -6,29 +6,29 @@ msgstr "" "Project-Id-Version: stellarium 0.9.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2010-05-07 21:23+0000\n" "Last-Translator: Fabien Chéreau \n" "Language-Team: English\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:12+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -36,46 +36,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Author: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Location: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -85,114 +85,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -203,7 +203,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -218,47 +218,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -266,14 +341,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -282,14 +357,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -297,7 +372,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -305,14 +380,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -321,14 +396,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -336,25 +411,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -363,14 +438,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -378,42 +453,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -421,7 +496,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -429,7 +504,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -438,7 +513,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -448,45 +523,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -634,74 +726,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -709,18 +802,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -728,115 +821,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -995,49 +1096,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1140,19 +1245,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1168,30 +1273,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sun" @@ -1208,12 +1319,12 @@ msgstr "Earth" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Moon" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1311,7 +1422,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1609,239 +1720,268 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korean" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norse" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesian" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Western" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1851,1502 +1991,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Fog" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stars" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3372,7 +3548,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Location" @@ -3388,10 +3564,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3400,7 +3576,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3411,12 +3587,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3440,363 +3616,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planets" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3846,7 +4066,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3862,11 +4082,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4008,7 +4225,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4020,182 +4237,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cancel" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4363,176 +4590,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4604,64 +4831,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4669,7 +4901,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4680,14 +4912,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4696,305 +4928,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5002,25 +5303,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5028,17 +5329,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5046,41 +5347,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5088,338 +5391,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5455,22 +5801,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5853,62 +6199,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6062,7 +6408,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6080,7 +6426,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6096,154 +6442,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Language" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6276,22 +6622,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6460,36 +6806,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6507,7 +6860,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6521,14 +6874,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6536,8 +6889,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6555,29 +6909,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6593,51 +7024,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6757,11 +7198,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6769,137 +7210,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6907,49 +7352,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6965,185 +7499,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/en_AU.po stellarium-0.12.4/po/stellarium/en_AU.po --- stellarium-0.12.1/po/stellarium/en_AU.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/en_AU.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2011-10-11 05:34+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:56+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ecliptic" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Equator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizon" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Author: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Location: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Type: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitude: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Size: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxy" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Open cluster" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Globular cluster" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebula" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetary nebula" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Cluster associated with nebulosity" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Unknown" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Undocumented type" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolute Magnitude: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distance: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Apparent diameter: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spectral Type: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distance: %1 Light Years" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallax: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "SpaceShip" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -655,52 +747,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Select screenshot directory" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Startup FOV: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Startup direction of view Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Authors" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contact" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Author" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "License" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Running script: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Running script: [none]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -708,16 +801,16 @@ "Finished downloading new star catalogues!\n" "Restart Stellarium to display them." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Get catalog %1 of %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -726,7 +819,7 @@ "Downloading %1...\n" "(You can close this window.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -737,7 +830,7 @@ "Star count: %2 Million\n" "Magnitude range: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -746,11 +839,11 @@ "Error downloading %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verifying file integrity..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -760,115 +853,123 @@ "File is corrupt." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1036,49 +1137,53 @@ msgid "OSX Developer: %1" msgstr "OSX Developer: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Script console window" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Windows" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "No description" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "No shooting stars" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normal rate" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standard Perseids rate" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Exceptional Leonid rate" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Highest rate ever (1966 Leonids)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "New Location" @@ -1183,19 +1288,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1211,30 +1316,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "This system does not support OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sun" @@ -1251,12 +1362,12 @@ msgstr "Earth" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Moon" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1354,7 +1465,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1652,239 +1763,268 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korean" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norse" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesian" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Western" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1894,1502 +2034,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Date and Time" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Add 1 sidereal day" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Add 1 sidereal week" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Add 1 solar day" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Add 1 solar hour" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Add 1 solar week" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Slow down the script execution rate" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Decrease time speed" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Decrease time speed (a little)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Speed up the script execution rate" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Increase time speed" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Increase time speed (a little)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Set time to now" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Set the normal script execution rate" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Set normal time rate" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Set time rate to zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Subtract 1 sidereal day" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Subtract 1 sidereal week" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Subtract 1 solar day" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Subtract 1 solar hour" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Subtract 1 solar week" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Display Options" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Flip scene horizontally" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Full-screen mode" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosphere" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimuthal grid" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Cardinal points" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Constellation art" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Constellation boundaries" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Constellation labels" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Constellation lines" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Nebula background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ecliptic line" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Equator line" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Equatorial grid" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Equatorial J2000 grid" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Fog" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galactic grid" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Ground" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horizon line" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridian line" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Night mode" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planet orbits" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planet trails" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stars" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Flip scene vertically" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Miscellaneous" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Auto hide horizontal button bar" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Auto hide vertical button bar" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Quit" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Save screenshot" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Switch between equatorial and azimuthal mount" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Toggle visibility of GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Movement and Selection" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Center on selected object" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Set home planet to selected planet" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Track object" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zoom in on selected object" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zoom out" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Angle measure" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Compass marks" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Ocular view" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Oculars popup menu" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Satellites configuration window" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Satellite hints" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satellite labels" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Move a telescope to a given set of coordinates" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripts" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Configuration window" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Date/time window" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Help window" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Location window" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Search window" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Sky and viewing options window" @@ -3415,7 +3591,7 @@ msgstr "Refresh" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Location" @@ -3431,10 +3607,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Delete" @@ -3443,7 +3619,7 @@ msgstr "Add to list" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitude:" @@ -3456,12 +3632,12 @@ "+1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitude:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitude:" @@ -3485,363 +3661,407 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Find Object" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Find Object or Position" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alpha" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Greek letters for Bayer designations" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Object" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Position" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Options" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Options" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "View" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Sky" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Markings" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landscape" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Starlore" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Labels and Markers" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planets" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planets and satellites" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Show planets" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Show planet markers" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Show planet orbits" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulate light speed" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Scale Moon" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Show atmosphere" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "pressure, temperature, extinction coefficient" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refraction/Extinction settings..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolute scale:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relative scale:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Twinkle:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Dim faint stars when a very bright object is visible" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamic eye adaptation" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Shooting Stars" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Constellations" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Show lines" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Show labels" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Show boundaries" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Show art" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Celestial Sphere" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projection" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Add/remove landscapes..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Show ground" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Show fog" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Use associated planet and position" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Use this landscape as default" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Use this sky culture as default" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visible" @@ -3896,7 +4116,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "The direction you're looking when Stellarium starts" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Selected object information" @@ -3912,11 +4132,8 @@ msgid "Display no information" msgstr "Display no information" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "None" @@ -4058,7 +4275,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Startup date and time" @@ -4070,19 +4287,23 @@ msgid "Other:" msgstr "Other:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "use current" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Starts Stellarium at system clock date and time" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "System date and time" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4090,23 +4311,23 @@ "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "System date at:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetarium options" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4114,51 +4335,51 @@ "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Spheric mirror distortion" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Mask out everything outside a central circle in the main view" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Disc viewport" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Hide other constellations when you click one" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Select single constellation" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Align labels with the horizon" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Gravity labels" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Toggle vertical and horizontal image flip buttons." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Show flip buttons" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4166,92 +4387,98 @@ "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Auto zoom out returns to initial direction of view" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Screenshots" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Screenshot Directory" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Invert colors" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Star catalogue updates" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Click here to start downloading" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Download this file to view even more stars" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Restart the download" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Retry" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Stop the download. You can always restart it later" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cancel" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Close window when script runs" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Run the selected script" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stop a running script" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Load at startup" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "configure" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Main" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Information" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigation" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Tools" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Plug-ins" @@ -4426,176 +4653,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Displays compass bearing marks along the horizon" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculars" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4667,64 +4894,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4732,7 +4964,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4743,14 +4975,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4759,191 +4991,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satellites" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4951,116 +5192,176 @@ "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "The old satellites.json file is no longer compatible - using default file" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5068,25 +5369,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5094,17 +5395,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5112,41 +5413,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5154,338 +5457,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5521,11 +5867,11 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Telescope Control" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5533,12 +5879,12 @@ "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Move telescope #%1 to selected object" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5925,62 +6271,62 @@ "time and the date are displayed in the bottom bar." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6134,7 +6480,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6152,7 +6498,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6168,11 +6514,11 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Text User Interface" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6180,144 +6526,144 @@ "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Language" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6353,22 +6699,22 @@ "its online database. Still a work in progress." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6537,36 +6883,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6584,7 +6937,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6598,14 +6951,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6613,8 +6966,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6632,29 +6986,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6670,51 +7101,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6834,11 +7275,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6846,137 +7287,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6984,49 +7429,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7042,185 +7576,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7613,6 +8141,9 @@ #~ msgid "Correct for light travel time: " #~ msgstr "Correct for light travel time: " +#~ msgid "Nebulas" +#~ msgstr "Nebulas" + #~ msgid "10000" #~ msgstr "10000" @@ -7658,6 +8189,9 @@ #~ msgid "Magnitude Sizing Multiplier: " #~ msgstr "Magnitude Sizing Multiplier: " +#~ msgid "Nebulas background images" +#~ msgstr "Nebula background images" + #~ msgid "Startup FOV: XX" #~ msgstr "Startup FOV: XX" diff -Nru stellarium-0.12.1/po/stellarium/en_CA.po stellarium-0.12.4/po/stellarium/en_CA.po --- stellarium-0.12.1/po/stellarium/en_CA.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/en_CA.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2012-10-24 04:23+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-13 15:24+0000\n" "Last-Translator: gzotti \n" "Language-Team: English (Canada) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ecliptic" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Equator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizon" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Galactic Plane" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Author: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Location: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Type: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitude: %1 (extincted to: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitude: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Size: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxy" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Open cluster" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Globular cluster" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebula" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetary nebula" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "Dark Nebula" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Cluster associated with nebulosity" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Unknown" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Undocumented type" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolute Magnitude: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" -msgstr "" +msgstr "Ecliptic Topocentric (of date): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" -msgstr "" +msgstr "Obliquity (of date, for Earth): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distance: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distance: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Apparent diameter: %1, with rings: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Apparent diameter: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" -msgstr "" +msgstr "Sidereal period: %1 days (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" -msgstr "" +msgstr "Sidereal day: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" -msgstr "" +msgstr "Mean solar day: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Phase Angle: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongation: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Phase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Illuminated: %1%" @@ -204,10 +204,10 @@ msgstr "Provisional designation: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" -msgstr "" +msgstr "star" #: src/core/modules/StarWrapper.cpp:57 #, qt-format @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Apparent Magnitude: %1 (by extinction)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "eruptive variable star" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "pulsating variable star" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "rotating variable star" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "cataclysmic variable star" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "eclipsing binary system" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "variable star" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" -msgstr "" +msgstr "double star" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Type: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitude: %1 (extincted to: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitude: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Magnitude range: %1%2%3 (Photometric system: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Magnitude range: %1%2%3/%4 (Photometric system: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spectral Type: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distance: %1 Light Years" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallax: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Epoch for minimum light: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Epoch for maximum light: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Period: %1 days" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Next minimum light: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Next maximum light: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Duration of eclipse: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Rising time: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "SpaceShip" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" -msgstr "" +msgstr "Correction is disabled. Use only if you know what you are doing!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,48 +524,69 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." +msgstr "Used by default." + +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" +"This is a quadratic formula for calculation of %1T with coefficients defined " +"by the user." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Error" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" -msgstr "" +msgstr "with meaningless values outside this range" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" +"with a mean error of less than one second, max. error 1.9s, and meaningless " +"values outside this range" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" -msgstr "" +msgstr "with zero values outside this range" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" -msgstr "" +msgstr "with a typical 1-second accuracy and zero values outside this range" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." -msgstr "" +msgstr "Valid range of usage: between years %1 and %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." -msgstr "" +msgstr "Valid range of usage: between years %1 and %2." #: src/core/StelProjector.cpp:123 msgid "Maximum FOV: " @@ -655,52 +751,53 @@ msgid "Found" msgstr "Found" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Select screenshot directory" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Startup FOV: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Startup direction of view Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Authors" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contact" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Author" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "License" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Running script: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Running script: [none]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -708,16 +805,16 @@ "Finished downloading new star catalogues!\n" "Restart Stellarium to display them." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "All available star catalogs have been installed." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Get catalogue %1 of %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -726,7 +823,7 @@ "Downloading %1...\n" "(You can close this window.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -737,7 +834,7 @@ "Star count: %2 Million\n" "Magnitude range: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -746,11 +843,11 @@ "Error downloading %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verifying file integrity..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -760,115 +857,123 @@ "File is corrupted." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1038,49 +1143,53 @@ msgid "OSX Developer: %1" msgstr "OSX Developer: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Script console window" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Windows" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "No description" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "No shooting stars" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normal rate" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standard Perseids rate" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Exceptional Leonid rate" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Highest rate ever (1966 Leonids)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "New Location" @@ -1185,19 +1294,19 @@ msgid "starchart" msgstr "starchart" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad Lookup Error" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad Lookup" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "University of Strasbourg (France)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard University (USA)" @@ -1213,30 +1322,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "This system does not support OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sun" @@ -1253,12 +1368,12 @@ msgstr "Earth" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Moon" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1356,7 +1471,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1654,193 +1769,222 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korean" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norse" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesian" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Western" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Trees" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Ocean" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Landscape Tour" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Partial Lunar Eclipse" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Total Lunar Eclipse" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Screensaver" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Solar Eclipse 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Startup Script" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiac" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Mercury Triple Sunrise and Sunset" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Double eclipse from Deimos in 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Double eclipse from Deimos in 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Eclipse from Olympus Mons Jan 10 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Occultation of Earth and Jupiter 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Solar System Screensaver" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Constellations Tour" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Sun from different planets" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Earth best views from other bodies" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Transit of Venus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Look around each installed landscape." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Script to demonstrate a partial lunar eclipse." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Script to demonstrate a total lunar eclipse." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "A slow, infinite tour of the sky, looking at random objects." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1848,11 +1992,11 @@ "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Script which runs automatically at startup" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1862,7 +2006,7 @@ "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1870,7 +2014,7 @@ "Due to the quirks in Mercury's orbit and rotation, at certain spots the sun " "will rise & set 3 different times in one Mercury day." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1878,7 +2022,7 @@ "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1886,18 +2030,18 @@ "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1907,1503 +2051,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Screensaver of various happenings in the Solar System. 171 events in all!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "United Arab Emirates" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Netherlands Antilles" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarctica" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "American Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaijan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia and Herzegowina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgium" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvet Island" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Belarus" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Cocos Islands" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Central African Republic" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republic of the Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Switzerland" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Cote d'Ivoire" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cook Islands" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Cameroon" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia and Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Cape Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Christmas Island" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Cyprus" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Czech Republic" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Germany" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Denmark" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominican Republic" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algeria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egypt" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Western Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spain" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Ethiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falkland Islands" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Faroe Islands" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "France" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "United Kingdom" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "French Guiana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Greenland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Greece" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Croatia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hungary" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ireland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Iraq" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Iceland" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italy" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordan" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Cambodia" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comoros" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Democratic People's Republic of Korea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Republic of Korea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Cayman Islands" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Lebanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lithuania" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxembourg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libyan Arab Jamahiriya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Morocco" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshall Islands" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldives" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexico" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaysia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "New Caledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk Island" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Netherlands" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norway" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "New Zealand" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "French Polynesia" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua New Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Philippines" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Poland" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palestinian Territories" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Russian Federation" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudi Arabia" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Solomon Islands" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Sweden" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Saint Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovakia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syrian Arab Republic" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Chad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "French Southern Territories" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailand" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tajikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "East Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turkey" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraine" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "United States" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatican City State" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "British Virgin Islands" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "United States Virgin Islands" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Viet Nam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Yugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "South Africa" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Date and Time" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Add 1 sidereal day" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Add 1 sidereal month" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Add 1 sidereal week" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Add 1 sidereal year" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Add 1 solar day" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Add 1 solar hour" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Add 1 solar week" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Slow down the script execution rate" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Decrease time speed" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Decrease time speed (a little)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Speed up the script execution rate" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Increase time speed" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Increase time speed (a little)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pause script execution" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Resume script execution" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Set time to now" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Set the normal script execution rate" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Set normal time rate" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Set time rate to zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Stop script execution" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Subtract 1 sidereal day" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Subtract 1 sidereal month" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Subtract 1 sidereal week" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Subtract 1 sidereal year" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Subtract 1 solar day" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Subtract 1 solar hour" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Subtract 1 solar week" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Display Options" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Flip scene horizontally" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Full-screen mode" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosphere" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimuthal grid" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Cardinal points" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Constellation art" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Constellation boundaries" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Constellation labels" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Constellation lines" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Nebula background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ecliptic J2000 grid" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ecliptic line" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Equator line" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Equatorial grid" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Equatorial J2000 grid" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Fog" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galactic grid" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galactic plane" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Ground" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horizon line" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridian line" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Night mode" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Planet labels" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planet orbits" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planet trails" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stars" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Stars labels" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Flip scene vertically" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Miscellaneous" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Auto-hide horizontal button bar" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Auto-hide vertical button bar" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Go to home" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Quit" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Copy selected object information to clipboard" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Save screenshot" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Switch between equatorial and azimuthal mount" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Toggle visibility of GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Movement and Selection" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Center on selected object" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Set home planet to selected planet" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Track object" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zoom in on selected object" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zoom out" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Angle measure" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Compass marks" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Oculars plugin configuration" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Ocular view" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Oculars popup menu" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Image sensor frame" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad sight" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Satellites configuration window" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Satellite hints" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satellite labels" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Move a telescope to a given set of coordinates" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripts" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Configuration window" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Date/time window" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Help window" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Location window" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Search window" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Sky and viewing options window" @@ -3429,7 +3608,7 @@ msgstr "Refresh" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Location" @@ -3445,10 +3624,10 @@ msgid "Return to default" msgstr "Return to default" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Delete" @@ -3457,7 +3636,7 @@ msgstr "Add to list" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitude:" @@ -3470,12 +3649,12 @@ "+1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitude:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitude:" @@ -3499,363 +3678,407 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Find Object" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Find Object or Position" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alpha" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Greek letters for Bayer designations" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Object" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Position" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "On-line astronomical database SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Extend search with SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Options" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Options" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "View" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Sky" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Markings" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landscape" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Starlore" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Labels and Markers" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planets" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planets and satellites" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Show planets" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Show planet markers" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Show planet orbits" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulate light speed" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Scale Moon" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Show atmosphere" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Light pollution:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "pressure, temperature, extinction coefficient" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refraction/Extinction settings..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolute scale:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relative scale:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Twinkle:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Dim faint stars when a very bright object is visible" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamic eye adaptation" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Shooting Stars" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Constellations" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Show lines" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Show labels" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Show boundaries" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Show art" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Art brightness:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Celestial Sphere" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Show equator line" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Show meridian line" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Show horizon line" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Show ecliptic line" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Show Galactic plane line" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projection" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Add/remove landscapes..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Show ground" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Show fog" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Use associated planet and position" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Use this landscape as default" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Use this sky culture as default" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visible" @@ -3910,7 +4133,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "The direction you're looking when Stellarium starts" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Selected object information" @@ -3926,11 +4149,8 @@ msgid "Display no information" msgstr "Display no information" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "None" @@ -4072,7 +4292,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Startup date and time" @@ -4084,19 +4304,23 @@ msgid "Other:" msgstr "Other:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "use current" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Starts Stellarium at system clock date and time" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "System date and time" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4104,23 +4328,23 @@ "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "System date at:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetarium options" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4128,51 +4352,51 @@ "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Spheric mirror distortion" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Mask out everything outside a central circle in the main view" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Disc viewport" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Hide other constellations when you click one" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Select single constellation" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Align labels with the horizon" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Gravity labels" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Toggle display backgrounds of the nebulae." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Show nebula background button" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Toggle vertical and horizontal image flip buttons." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Show flip buttons" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4180,92 +4404,98 @@ "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Auto zoom out returns to initial direction of view" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Screenshots" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Screenshot Directory" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Invert colours" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Star catalogue updates" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Click here to start downloading" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Download this file to view even more stars" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Restart the download" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Retry" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Stop the download. You can always restart it later" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cancel" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Close window when script runs" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Run the selected script" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stop a running script" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Load at startup" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "configure" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Main" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Information" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigation" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Tools" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Plugins" @@ -4440,12 +4670,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Displays compass bearing marks along the horizon" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculars" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4455,164 +4685,164 @@ "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Please select an object before switching to ocular view." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Previous ocular" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Next ocular" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Select &ocular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Toggle &crosshair" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Configure &Oculars" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Toggle &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Toggle &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Previous CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Next CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Select CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Rotate CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Reset rotation" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Ocular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Ocular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Ocular FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Ocular aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Telescope #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Telescope #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Magnification: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensions: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Telescope" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Previous telescope" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Next telescope" @@ -4684,64 +4914,69 @@ msgid "Apparent field of view of the ocular" msgstr "Apparent field of view of the ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotation: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Magnification provided by these binoculars" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Actual field of view provided by these binoculars" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Version" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4749,7 +4984,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4760,14 +4995,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4776,191 +5011,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Enable only if an object is selected" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Scale image circle" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Key mappings" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Toggle ocular view:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Open pop-up navigation menu:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interface" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "On-screen control panel" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "General" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Eyepieces" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Add" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Name:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Focal length:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Field stop:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binoculars" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensors" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Resolution x (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Resolution y (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Chip width (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Chip height (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Pixel width (micron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Pixel height (micron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Telescopes" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diameter:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Horizontal flip" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Vertical flip" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satellites" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4968,87 +5212,147 @@ "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "The old satellites.json file is no longer compatible - using default file" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Range (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Range rate (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitude (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "SubPoint (Lat./Long.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME coordinates (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME velocity (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "The satellite and the observer are in sunlight." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "The satellite is visible." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "The satellite is eclipsed." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "The satellite is not visible" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Stellarium Satellites Plugin" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5056,17 +5360,17 @@ "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Notes for users" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Satellites and their orbits are only shown when the observer is on Earth." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5076,7 +5380,7 @@ "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5085,7 +5389,7 @@ "days). To get useful data out, you need to update the TLE data regularly." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5096,7 +5400,7 @@ "the default %3 file. The old file will be backed up as %4. This can be found " "in the user data directory, under \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5105,11 +5409,11 @@ "incomplete, missing or buggy." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "TLE data updates" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5119,7 +5423,7 @@ "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5130,7 +5434,7 @@ "computer. This file must be in the same format as the Celestrak updates (see " "%1 for an example)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5138,11 +5442,11 @@ "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Adding new satellites" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5150,11 +5454,11 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Technical notes" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5162,7 +5466,7 @@ "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5171,24 +5475,26 @@ "the revised Spacetrack Report #3 (including Spacetrack Report #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "See %1this document%2 for details." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Links" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5196,31 +5502,34 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "If you have a question, you can %1get an answer here%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Bug reports can be made %1here%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5228,120 +5537,140 @@ "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internet updates disabled" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Updating now..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Next update: < 1 minute" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Next update: %1 minutes" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Next update: %1 hours" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Update now" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Update from files" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Update error" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[new source]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Update now" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Update from files" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[all newly added]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[all not displayed]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[all displayed]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[all]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Select TLE Update File" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Downloading data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5349,189 +5678,209 @@ "Stellarium is downloading satellite data from the update sources. Please " "wait..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Select TLE source file(s)..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Processing data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "No data could be downloaded. Try again later." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Catalog Number: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Satellites Configuration" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Last update:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5567,11 +5916,11 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Telescope Control" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5579,12 +5928,12 @@ "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Move telescope #%1 to selected object" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5971,62 +6320,62 @@ "time and the date are displayed in the bottom bar." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6180,7 +6529,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6198,7 +6547,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6214,11 +6563,11 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Text User Interface" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6226,144 +6575,144 @@ "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Galactic plane line" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6399,22 +6748,22 @@ "its online database. Still a work in progress." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6583,36 +6932,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6630,7 +6986,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6644,14 +7000,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6659,8 +7015,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6678,29 +7035,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Update from Internet sources" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6716,51 +7150,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6880,11 +7324,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6892,137 +7336,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7030,49 +7478,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7088,185 +7625,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7665,6 +8196,9 @@ #~ msgid "Update me via Internet: " #~ msgstr "Update me via Internet: " +#~ msgid "Nebulas" +#~ msgstr "Nebulas" + #~ msgid "Form" #~ msgstr "Form" @@ -7704,6 +8238,9 @@ #~ msgid "Hourly zenith rate:" #~ msgstr "Hourly zenith rate:" +#~ msgid "Nebulas background images" +#~ msgstr "Nebula background images" + #~ msgid "Startup FOV: XX" #~ msgstr "Startup FOV: XX" @@ -7755,9 +8292,21 @@ #~ "Support is provided via the Launchpad website. Be sure to put \"Satellites " #~ "plugin\" in the subject when posting." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Updated %1/%2 satellite(s); %3 missing" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Update TLE lists from Internet sources" + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "A Quintuple eclipse from Deimos 2027" +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" + #~ msgid "Earth best views from other Solar system bodies in the 21st Century." #~ msgstr "Earth best views from other Solar system bodies in the 21st Century." diff -Nru stellarium-0.12.1/po/stellarium/en_GB.po stellarium-0.12.4/po/stellarium/en_GB.po --- stellarium-0.12.1/po/stellarium/en_GB.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/en_GB.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-16 20:24+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-10 14:15+0000\n" "Last-Translator: Andi Chandler \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-17 05:14+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:56+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ecliptic" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Equator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizon" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Galactic Plane" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Author: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Location: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Type: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitude: %1 (extincted to: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitude: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Size: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxy" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Open cluster" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Globular cluster" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebula" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetary nebula" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Dark Nebula" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Cluster associated with nebulosity" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Unknown" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Undocumented type" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolute Magnitude: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Ecliptic Topocentric (of date): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Obliquity (of date, for Earth): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distance: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distance: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Apparent diameter: %1, with rings: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Apparent diameter: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Sidereal period: %1 days (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Sidereal day: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Mean solar day: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Phase Angle: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongation: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Phase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Illuminated: %1%" @@ -204,7 +204,7 @@ msgstr "Provisional designation: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "star" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Apparent Magnitude: %1 (by extinction)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "eruptive variable star" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "pulsating variable star" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "rotating variable star" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "cataclysmic variable star" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "eclipsing binary system" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "variable star" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "double star" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Type: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitude: %1 (extincted to: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitude: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Magnitude range: %1%2%3 (Photometric system: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Magnitude range: %1%2%3/%4 (Photometric system: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spectral Type: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distance: %1 Light Years" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallax: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Epoch for minimum light: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Epoch for maximum light: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Period: %1 days" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Next minimum light: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Next maximum light: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Duration of eclipse: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Rising time: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Spaceship" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "Correction is disabled. Use only if you know what you are doing!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -270,7 +345,7 @@ "Henriksson in his article Einstein's Theory of Relativity Confirmed by " "Ancient Solar Eclipses (%1). See for more info %2here%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -279,7 +354,7 @@ "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -292,7 +367,7 @@ "Astronomical Formulae for Calculators. It was also adopted in the " "PC program SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -302,7 +377,7 @@ "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -314,7 +389,7 @@ "relation was also implicitly adopted in the syzygy tables of Goldstine " "(1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -325,7 +400,7 @@ "article The accelerations of the Earth and Moon from early astronomical " "observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -334,7 +409,7 @@ "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -347,7 +422,7 @@ "Polynomial approximations for the correction delta T E.T.-U.T. in the " "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -357,7 +432,7 @@ "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -368,11 +443,11 @@ "article Long-term changes in the rotation of the Earth - 700 B.C. to " "A.D. 1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "This algorithm is used in the PC planetarium program Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -382,7 +457,7 @@ "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -391,7 +466,7 @@ "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -404,7 +479,7 @@ "Period 1800-1988 (%1) as data fit through values given by Stephenson & " "Morrison (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -414,7 +489,7 @@ "version of the ELP 2000-85 lunar theory, presented in their Lunar Tables " "and Programs from 4000 B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -425,7 +500,7 @@ "article Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD " "1990 (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -434,7 +509,7 @@ "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -444,7 +519,7 @@ "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -453,7 +528,7 @@ "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -462,7 +537,7 @@ "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -472,7 +547,7 @@ "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -484,7 +559,7 @@ "Calendrical Tabulations (2002). It is based on Jean Meeus' " "Astronomical Algorithms (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -495,7 +570,7 @@ "in article Historical values of the Earth's clock error %1T and the " "calculation of eclipses (%2) with addendum in (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -508,7 +583,7 @@ "cosine and square function. This is based on a possible periodicy described " "by Stephenson (%2). See for more info %3here%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -523,11 +598,33 @@ "Solar Eclipses: -1900 to +3000 (2006). This formula is also used in the " "solar, lunar and planetary ephemeris program SOLEX." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Used by default." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimisation of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -536,15 +633,15 @@ "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Error" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "with meaningless values outside this range" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -552,20 +649,21 @@ "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "with zero values outside this range" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "with a typical 1-second accuracy and zero values outside this range" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Valid range of usage: between years %1 and %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Valid range of usage: between years %1 and %2." @@ -733,52 +831,53 @@ msgid "Found" msgstr "Found" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Select screenshot directory" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Startup FOV: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Startup direction of view Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Authors" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contact" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Author" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licence" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Running script: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Running script: [none]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -786,16 +885,16 @@ "Finished downloading new star catalogues!\n" "Restart Stellarium to display them." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "All available star catalogues have been installed." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Get catalogue %1 of %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -804,7 +903,7 @@ "Downloading %1...\n" "(You can close this window.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -815,7 +914,7 @@ "Star count: %2 Million\n" "Magnitude range: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -824,11 +923,11 @@ "Error downloading %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verifying file integrity..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -838,115 +937,123 @@ "File is corrupted." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algorithm of" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Without correction" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Custom equation of %1T" @@ -1118,49 +1225,53 @@ msgid "OSX Developer: %1" msgstr "OS X Developer: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Script console window" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Windows" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "No description" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "No shooting stars" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normal rate" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standard Perseids rate" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Meteor storm rate" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Exceptional Leonid rate" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Highest rate ever (1966 Leonids)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "New location" @@ -1265,19 +1376,19 @@ msgid "starchart" msgstr "starchart" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad Lookup Error" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad Lookup" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "University of Strasbourg (France)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard University (USA)" @@ -1293,30 +1404,38 @@ msgid "Alternative shortcut" msgstr "Alternative shortcut" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Custom equation for %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "A typical equation for calculation of %1T looks like:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "where" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "year" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "This system does not support OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sun" @@ -1333,12 +1452,12 @@ msgstr "Earth" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Moon" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1436,7 +1555,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1734,193 +1853,222 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Indian Vedic" + +#: src/translations.h:171 msgid "Korean" msgstr "Korean" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norse" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesian" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongan" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Western" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Trees" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Ocean" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Landscape Tour" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Partial Lunar Eclipse" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Total Lunar Eclipse" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Screensaver" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Solar Eclipse 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Startup Script" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiac" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Mercury Triple Sunrise and Sunset" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Double eclipse from Deimos in 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Double eclipse from Deimos in 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Eclipse from Olympus Mons Jan 10 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Occultation of Earth and Jupiter 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 Transits and 2 Eclipses from Deimos 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Solar System Screensaver" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Constellations Tour" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Sun from different planets" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Earth best views from other bodies" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Transit of Venus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Sky Culture Tour" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Earth Events from Mercury" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Earth Events from Venus" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Earth Events from Mars" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Earth Greatest Elongations and Brilliancies from Mars" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Earth and Mars Greatest Elongations from Jupiter" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Look around each installed landscape." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Look at each installed sky culture." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Script to demonstrate a partial lunar eclipse." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Script to demonstrate a total lunar eclipse." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "A slow, infinite tour of the sky, looking at random objects." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1928,11 +2076,11 @@ "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Script which runs automatically at startup" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1942,7 +2090,7 @@ "constellations which lie along the line which the Sun traces across the " "celestial sphere, over the course of a year." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1950,7 +2098,7 @@ "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1958,7 +2106,7 @@ "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1966,11 +2114,11 @@ "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1980,7 +2128,7 @@ "occultations of both on the same day are very rare. Here is one that takes " "place 1/23/2048. In real speed." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1996,31 +2144,31 @@ "emerges from Mars it is still eclipsed and dimmed in Mars' shadow, only to " "light up later." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "A tour of the western constellations." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Look at the Sun from big planets of Solar System and Pluto." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "Best views of Earth from other Solar System bodies in the 21st Century." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "Transit of Venus as seen from Sydney Australia, 6th June 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." @@ -2028,7 +2176,7 @@ "A demonstration of the analemma - the path of the Sun across the sky during " "the year." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2036,1468 +2184,1504 @@ "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae plug-" "in has to be enabled." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "Earth Greatest Elongations from Jupiter 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "United Arab Emirates" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Netherlands Antilles" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarctica" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "American Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaijan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia and Herzegowina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgium" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvet Island" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Belarus" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Cocos Islands" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Democratic Republic of the Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Central African Republic" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republic of the Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Switzerland" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Cote d'Ivoire" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cook Islands" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Cameroon" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia and Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Cape Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Christmas Island" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Cyprus" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Czech Republic" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Germany" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Denmark" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominican Republic" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algeria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egypt" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Western Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spain" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Ethiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falkland Islands" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Faroe Islands" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "France" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "United Kingdom" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "French Guiana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Greenland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Greece" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "South Georgia and the South Sandwich Islands" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard Island and McDonald Islands" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Croatia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hungary" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ireland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "British Indian Ocean Territory" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Iraq" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Iceland" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italy" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordan" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Cambodia" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comoros" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts and Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Democratic People's Republic of Korea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Republic of Korea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Cayman Islands" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Lebanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lithuania" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxembourg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libyan Arab Jamahiriya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Morocco" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshall Islands" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Northern Mariana Islands" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldives" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexico" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaysia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "New Caledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk Island" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Netherlands" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norway" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "New Zealand" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "French Polynesia" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua New Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Philippines" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Poland" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre and Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palestinian Territories" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Russian Federation" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudi Arabia" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Solomon Islands" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Sweden" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Saint Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard and Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovakia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tome and Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syrian Arab Republic" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Islands" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Chad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "French Southern Territories" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailand" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tajikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "East Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turkey" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad and Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraine" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "United States Minor Outlying Islands" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "United States" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatican City State" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent and the Grenadines" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "British Virgin Islands" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "United States Virgin Islands" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis and Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Yugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "South Africa" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Date and time" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Add 1 sidereal day" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Add 1 sidereal month" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Add 1 sidereal week" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Add 1 sidereal year" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Add 1 sidereal century" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Add 1 solar day" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Add 1 solar hour" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Add 1 solar week" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Add 1 synodic month" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Add 1 draconic month" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Add 1 anomalistic month" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Add 1 mean tropical month" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Add 1 draconic year" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Add 1 mean tropical year" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Add 1 mean tropical century" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Slow down the script execution rate" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Decrease time speed" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Decrease time speed (a little)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Speed up the script execution rate" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Increase time speed" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Increase time speed (a little)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pause script execution" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Resume script execution" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Set time to now" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Set the normal script execution rate" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Set normal time rate" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Set time rate to zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Stop script execution" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Subtract 1 sidereal day" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Subtract 1 sidereal month" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Subtract 1 sidereal week" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Subtract 1 sidereal year" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Subtract 1 sidereal century" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Subtract 1 solar day" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Subtract 1 solar hour" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Subtract 1 solar week" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Subtract 1 synodic month" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Subtract 1 draconic month" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Subtract 1 anomalistic month" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Subtract 1 mean tropical month" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Subtract 1 draconic year" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Subtract 1 mean tropical year" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Subtract 1 mean tropical century" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Display Options" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Flip scene horizontally" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Full-screen mode" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosphere" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimuthal grid" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Cardinal points" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Constellation art" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Constellation boundaries" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Constellation labels" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Constellation lines" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Nebulas' background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Deep-sky objects background images" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ecliptic J2000 grid" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ecliptic line" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Equator line" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Equatorial grid" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Equatorial J2000 grid" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Fog" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galactic grid" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galactic plane" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Ground" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horizon line" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridian line" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulae" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Deep-sky objects" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Night mode" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Planet labels" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planet orbits" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planet trails" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stars" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Stars labels" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Flip scene vertically" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Miscellaneous" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Auto hide horizontal button bar" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Auto hide vertical button bar" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Go to home" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Quit" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Copy selected object information to clipboard" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Save screenshot" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Switch between equatorial and azimuthal mount" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Toggle visibility of GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Movement and Selection" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centre on selected object" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Set home planet to selected planet" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Track object" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zoom in on selected object" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zoom out" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Angle measure" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Compass marks" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Show exoplanets" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Exoplanets configuration window" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observability" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Observability configuration window" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Oculars plugin configuration" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Ocular view" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Show crosshairs" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Oculars popup menu" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Image sensor frame" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad sight" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Select next telescope" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Select next eyepiece" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Select previous telescope" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Select previous eyepiece" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Show pulsars" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Pulsars configuration window" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Show quasars" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Quasars configuration window" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Satellites configuration window" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Satellite hints" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satellite labels" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Historical Supernovae configuration window" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Bright Novae configuration window" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Move telescope to a given set of coordinates" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Show renderer statistics" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripts" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Run landscapes script from file" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Show and zoom Moon" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Configuration window" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Date/time window" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Help window" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Location window" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Search window" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Shortcuts window" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Sky and viewing options window" @@ -3523,7 +3707,7 @@ msgstr "Refresh" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Location" @@ -3539,10 +3723,10 @@ msgid "Return to default" msgstr "Return to default" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Delete" @@ -3551,7 +3735,7 @@ msgstr "Add to list" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitude:" @@ -3564,12 +3748,12 @@ "+1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitude:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitude:" @@ -3593,363 +3777,409 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Find Object" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Find Object or Position" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Use tab key for select of found items" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alpha" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Greek letters for Bayer designations" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Object" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Position" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "Some objects may be found after activation respective plug-ins" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "names in English" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Search in list..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Lists" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "On-line astronomical database SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Extend search with SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Search options" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "Use autofill only from the beginning of words" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Options" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "names in English" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Search in list..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Lists" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "View" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Sky" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Markings" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landscape" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Starlore" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Labels and Markers" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planets" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "DSOs" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planets and satellites" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Show planets" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Show planet markers" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Show planet orbits" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulate light speed" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Scale Moon" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Automatic change of landscape when planet is changed" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Auto select landscapes" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Show atmosphere" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Light pollution:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "pressure, temperature, extinction coefficient" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refraction/Extinction settings..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolute scale:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relative scale:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Milky Way brightness:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Twinkle:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Dim faint stars when a very bright object is visible" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamic eye adaptation" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Shooting Stars" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Hourly zenith rate" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "ZHR:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Limit Magnitudes (for unaided/binocular observers)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Limit Magnitudes" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Limit the magnitude of stars" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Constellations" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Show lines" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Show labels" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Show boundaries" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Show art" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Art brightness:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Celestial Sphere" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Show equator line" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Show meridian line" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Show horizon line" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Show ecliptic line" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Show Galactic plane line" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projection" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Add/remove landscapes..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Show ground" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Show fog" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Use associated planet and position" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Use this landscape as default" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Use brightness settings for landscapes" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Use this sky culture as default" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visible" @@ -4004,7 +4234,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "The direction you're looking in when Stellarium starts" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Selected object information" @@ -4020,11 +4250,8 @@ msgid "Display no information" msgstr "Display no information" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "None" @@ -4166,7 +4393,7 @@ msgstr "seconds" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Startup date and time" @@ -4178,19 +4405,23 @@ msgid "Other:" msgstr "Other:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Use current local date and time" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "use current" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Starts Stellarium at system clock date and time" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "System date and time" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4198,23 +4429,23 @@ "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "System date at:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Time correction" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Edit equation" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetarium options" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4222,51 +4453,51 @@ "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Spheric mirror distortion" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Mask everything outside a central circle in the main view" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Disc viewport" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Hide other constellations when you click one" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Select single constellation" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Align labels with the horizon" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Gravity labels" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Toggle display backgrounds of the nebulae." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Show nebula background button" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Toggle vertical and horizontal image flip buttons." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Show flip buttons" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4274,92 +4505,100 @@ "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Auto zoom out returns to initial direction of view" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Display solar shadows on planets and moons (For that feature OpenGL version " +"2 or higher is needed)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Render Solar Shadows" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Screenshots" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Screenshot Directory" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Invert colours" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Star catalogue updates" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Click here to start downloading" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Download this file to view even more stars" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Restart the download" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Retry" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Stop the download. You can always restart it later" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cancel" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Close window when script runs" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Run the selected script" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stop a running script" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Load at startup" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "configure" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Main" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Information" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigation" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Tools" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Plug-ins" @@ -4534,12 +4773,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Displays compass bearing marks along the horizon" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculars" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4549,164 +4788,164 @@ "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Please select an object before switching to ocular view." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Previous ocular" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Next ocular" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Select &ocular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Toggle &crosshair" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Configure &Oculars" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Toggle &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Toggle &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Previous CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Next CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Select CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Rotate CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Reset rotation" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Ocular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Ocular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Ocular FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Ocular aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Lens #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Lens #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Lens: none" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Telescope #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Telescope #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Magnification: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensions: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Lens" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&Previous lens" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&Next lens" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Telescope" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Previous telescope" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Next telescope" @@ -4778,65 +5017,70 @@ msgid "Apparent field of view of the ocular" msgstr "Apparent field of view of the ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Multiplicity: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Lens: None" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Multiplicity: N/A" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Focal length of eyepiece" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotation: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Magnification provided by these binoculars" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Actual field of view provided by these binoculars" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "Magnification provided by this ocular/lens/telescope combination" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Actual field of view provided by this ocular/lens/telescope combination" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Oculars Plug-in" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Version" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Barlow lens feature" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Overview" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4848,7 +5092,7 @@ "and telescopes, as well as CCD Sensors. Your first time running the app " "will populate some samples to get your started." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4866,7 +5110,7 @@ "image scaled, a good deal of the screen can be wasted. Therefore I " "recommend that you leave it off, unless you feel you have a need of it." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4876,7 +5120,7 @@ "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4889,118 +5133,126 @@ "0.5%1, 2.0%1, and 4.0%1, helping you see what you would expect to see with " "the naked eye through the Telrad (or similar) finder." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "If you find any issues, please let me know. Enjoy!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Hot Keys" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "The plug-in's key bindings can be edited in the General Tab." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[no key defined]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Switches on/off the ocular overlay." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Opens the pop-up navigation menu." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Enable only if an object is selected" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Scale image circle" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "Apply limits stellar magnitude for different apertures of telescopes" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Limit stellar magnitude" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Key mappings" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Toggle ocular view:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Open pop-up navigation menu:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interface" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "On-screen control panel" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Use degrees and minutes for FOV of CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "General" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Eyepieces" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Add" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Name:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Focal length:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Field stop:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binoculars" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Lenses" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Multiplier:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5008,74 +5260,75 @@ "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensors" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Resolution x (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Resolution y (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Chip width (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Chip height (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Pixel width (micron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Pixel height (micron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Telescopes" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diameter:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Horizontal flip" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Vertical flip" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "About" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satellites" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5083,87 +5336,147 @@ "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "The old satellites.json file is no longer compatible - using default file" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "visual" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "scientific" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "communications" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navigation" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amateur" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "weather" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geostationary" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "non-operational" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "GPS" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "Iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "The Hubble Space Telescope" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "The International Space Station" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Catalog #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "International Designator" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "artificial satellite" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Range (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Range rate (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitude (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "SubPoint (Lat./Long.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME coordinates (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME velocity (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "The satellite and the observer are in sunlight." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "The satellite is visible." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "The satellite is eclipsed." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "The satellite is not visible" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Stellarium Satellites Plugin" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5171,17 +5484,17 @@ "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Notes for users" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Satellites and their orbits are only shown when the observer is on Earth." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5191,7 +5504,7 @@ "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5200,7 +5513,7 @@ "days). To get useful data out, you need to update the TLE data regularly." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5211,7 +5524,7 @@ "the default %3 file. The old file will be backed up as %4. This can be " "found in the user data directory, under \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5220,11 +5533,11 @@ "incomplete, missing or buggy." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "TLE data updates" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5234,7 +5547,7 @@ "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5245,7 +5558,7 @@ "computer. This file must be in the same format as the Celestrak updates " "(see %1 for an example)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5253,11 +5566,11 @@ "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Adding new satellites" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5269,11 +5582,11 @@ "to the Satellites tab, and click the '+' button. Select the satellite(s) you " "wish to add and select the \"add\" button." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Technical notes" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5281,7 +5594,7 @@ "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5290,24 +5603,26 @@ "the revised Spacetrack Report #3 (including Spacetrack Report #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "See %1this document%2 for details." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Links" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5317,31 +5632,34 @@ "subject when posting." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "If you have a question, you can %1get an answer here%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Bug reports can be made %1here%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5349,120 +5667,140 @@ "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internet updates disabled" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Updating now..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Next update: < 1 minute" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Next update: %1 minutes" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Next update: %1 hours" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Update now" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Update from files" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Update error" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Updated %1/%2 satellite(s); %3 added; %4 removed" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Updated %1/%2 satellite(s); %3 added; %4 missing" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[new source]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Update now" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Update from files" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[orbit calculation error]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[all newly added]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[all not displayed]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[all displayed]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[all]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "New group..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Select TLE Update File" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Downloading data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5470,175 +5808,199 @@ "Stellarium is downloading satellite data from the update sources. Please " "wait..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Select TLE source file(s)..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Processing data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "No data could be downloaded. Try again later." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Catalogue Number: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Satellites Configuration" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Updates" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Update satellite data from Internet sources" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Last update:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "On update, add all new satellites from the selected source(s)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"On update, remove the satellites that are no longer listed in the update " +"sources" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Update frequency (hours):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Labels" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Label font size (pixels):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Orbit lines" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Number of segments used to draw the line" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Number of segments:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Duration of a single segment in seconds" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Segment length (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Number of segments used to draw each end of the line" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Fade length:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Restore default settings" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Save settings as default" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Settings" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Double-click a satellite to start tracking it." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Add more satellites" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Remove the selected satellites" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Save changes" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Catalogue number:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Display the selected satellite(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Displayed" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Display orbit line(s) for the selected satellite(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Orbit" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Catalogue number:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "Do not update (or remove on update) the selected satellite(s)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Do not update" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Description:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Groups:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Comma separated list of groups" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE data:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORAD two line element orbit data" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Remove the selected satellites" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "TLE set:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5646,15 +6008,15 @@ "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Add new source" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Remove selected source" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Sources" @@ -5690,11 +6052,11 @@ msgid "Discard" msgstr "Discard" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Telescope Control" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5702,12 +6064,12 @@ "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerised mount (a \"GoTo telescope\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Move telescope #%1 to selected object" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -6111,62 +6473,62 @@ "time and the date are displayed in the bottom bar." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "January" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "February" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "March" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "April" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "May" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "June" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "July" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "August" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "September" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "October" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "November" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "December" @@ -6325,7 +6687,7 @@ "These settings control the way time and date are displayed in the bottom bar." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Time display format" @@ -6343,7 +6705,7 @@ msgstr "24-hour format" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Date display format" @@ -6359,11 +6721,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-yyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Text User Interface" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6371,144 +6733,144 @@ "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Solar System body" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Current date/time" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Set time zone" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Day keys" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Startup date/time preset" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "system" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "preset" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "yyyymmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Language" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Show stars" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Colours" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Nebula names" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Nebula hints" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Galactic plane line" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Effects" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Manual zoom" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Magnitude scaling multiplier" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Milky Way intensity:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Nebula label frequency:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Zoom duration:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Cursor timeout:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Setting landscape sets location" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Run local script" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Stop running script" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD script" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administration" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Load default configuration" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Save current configuration" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Shut down" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[no TUI node]" @@ -6544,16 +6906,16 @@ "its online database. Still a work in progress." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Query the MPC's %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Only one result will be returned if the query is successful." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6561,7 +6923,7 @@ "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6749,40 +7111,43 @@ msgid "Solar System" msgstr "Solar System" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Historical Supernovae" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." -msgstr "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." +msgstr "This plug-in allows you to see some bright historical supernovae." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Type of supernova: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Maximum brightness: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Historical Supernovae Plug-in" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " -msgstr "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "This plug-in allows you to see some bright historical supernovae: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." +msgstr "All those supernovae are brighter %1 at peak of brightness." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Light curves" @@ -6804,7 +7169,7 @@ msgstr "Acknowledgments" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6819,14 +7184,14 @@ msgstr "Institute for Theoretical and Experimental Physics" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "in Russia" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6836,8 +7201,9 @@ "format of catalogue, you can %1get info here%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Next update: %1 days" @@ -6855,29 +7221,116 @@ msgstr "Historical Supernovae Plug-in Configuration" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Update catalogue from Internet" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Update from Internet sources" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Update frequency (days):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[next update info]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Bright Novae" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "A plug-in that shows some bright novae in the Milky Way galaxy." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Type: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Bright Novae Plug-in" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"This plug-in uses a very simple model for calculation of light curves for " +"novae stars." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"If a nova has no values for decay of magnitude then this plug-in will use " +"generalised values for it." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"If you want to read full information about this plug-in, its history and " +"catalogue format, you can %1get info here%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Novae is updated" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Bright Novae Configuration" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Bright Novae Plug-in Configuration" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quasars" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6896,11 +7349,11 @@ msgid "Z (redshift): %1" msgstr "Z (redshift): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Quasars Plug-in" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6910,40 +7363,50 @@ "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Quasars is updated" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Quasars Configuration" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Quasars Plug-in Configuration" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Settings for quasars" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Plot all quasars without labels" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Enable display of distribution for quasars" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Enable display at startup" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Show quasars button on toolbar" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsars" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7068,11 +7531,11 @@ "isolated neutron star with pulsed thermal X-ray emission but no detectable " "radio emission" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Pulsars Plug-in" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7083,67 +7546,71 @@ "Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Note" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "pulsar identifiers have the prefix 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Acknowledgment" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino Radio Astronomy Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Nancay Radioastronomical Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "in France" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsars is updated" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Pulsars Configuration" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Pulsars Plug-in Configuration" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Settings for pulsars" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Plot all pulsars without labels" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Enable display of distribution for pulsars" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Show pulsars button on toolbar" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplanets" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7151,71 +7618,71 @@ "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metallicity" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Mass" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Radius" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Effective temperature: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplanet" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Period" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "days" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Semi-Major Axis" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Eccentricity" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inclination" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Angle Distance" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Discovered year" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Exoplanets Plug-in" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7225,7 +7692,7 @@ "derived from \"%1The Extrasolar Planets Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7234,42 +7701,131 @@ "If you want read full information about plugin, his history and format of " "catalogue you can %1get info here%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "General professional Web sites relevant to extrasolar planets" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanets: an interactive version of XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (The Hunt for Exomoons with Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Exoplanets in binaries and multiple systems (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Naming exoplanets (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "Some Astronomers and Groups active in extrasolar planets studies" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "update: 16 April 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "The Exoplanet Data Explorer" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "The Anglo-Australian Planet Search" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Geneva Extrasolar Planet Search Programmes" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Optical Long-Baseline Interferometry News)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "NASA's Exoplanet Exploration Programme" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Pulsar planets" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "The NASA Exoplanet Archive" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "IAU Comission 53: Extrasolar Planets" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "The Habitable Zone Gallery" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - The Search for Another Earth" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Open Exoplanet Catalogue" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "The Habitable Exoplanets Catalogue" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Exoplanets is updated" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Exoplanets Configuration" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Exoplanets Plug-in Configuration" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Update exoplanets data from Internet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Settings for exoplanets" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Plot all systems with exoplanets without labels" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Enable display of distribution for exoplanets" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Display exoplanets since their discovery" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Enable timeline discovery of exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Show exoplanets button on toolbar" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Info" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Observability analysis" @@ -7292,185 +7848,179 @@ "of the quantities shown by this script is given in the 'About' tab of the " "configuration window" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Jan" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Apr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "May" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Jun" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Jul" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Aug" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Sep" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Oct" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Dec" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Sets at %1 (in %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Rose at %1 (%2 ago)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Set at %1 (%2 ago)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Rises at %1 (in %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Circumpolar." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "No rise." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Culminates at %1 (in %2) at %3 deg." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Culminated at %1 (%2 ago) at %3 deg." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Source is not observable." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "No Acronychal nor Cosmical rise/set." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Greatest elongation: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Largest Sun separation: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (at %1 deg.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Acronychal rise/set" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "No Acronychal rise/set." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Cosmical rise/set" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "No Cosmical rise/set." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Observable during the whole year." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Not observable at dark night." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Nights above horizon: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "TODAY:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "THIS YEAR:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Previous Full Moon: %1 %2 at %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Next Full Moon: %1 %2 at %3:%4. " @@ -7922,6 +8472,9 @@ #~ msgid "Limiting Magnitude: " #~ msgstr "Limiting Magnitude: " +#~ msgid "Nebulas" +#~ msgstr "Nebulae" + #~ msgid "Form" #~ msgstr "Form" @@ -7988,6 +8541,9 @@ #~ msgid "When a Script is Running" #~ msgstr "When a script is running" +#~ msgid "Nebulas background images" +#~ msgstr "Nebulas' background images" + #~ msgid "Planets labels" #~ msgstr "Planet labels" @@ -8015,6 +8571,22 @@ #~ "Support is provided via the Launchpad website. Be sure to put \"Satellites " #~ "plugin\" in the subject when posting." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Updated %1/%2 satellite(s); %3 missing" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Update TLE lists from Internet sources" + +#~ msgid "TLE data:" +#~ msgstr "TLE data:" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Comma separated list of groups" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORAD two line element orbit data" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -8104,6 +8676,11 @@ #~ msgid "Phobos Eclipses the sun as seen from Olympus Mons Jan 10, 2068." #~ msgstr "Phobos Eclipses the sun as seen from Olympus Mons Jan 10, 2068." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" + #~ msgid "Transit of Venus as seen from Sydney Australia 6th June 2012." #~ msgstr "Transit of Venus as seen from Sydney Australia 6th June 2012." @@ -8116,6 +8693,26 @@ #~ msgid "Look at Sun from big planets of Solar system and Pluto." #~ msgstr "Look at Sun from big planets of Solar system and Pluto." +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." + +#~ msgid "Display mode for pulsars" +#~ msgstr "Display mode for pulsars" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " + +#~ msgid "Display mode for quasars" +#~ msgstr "Display mode for quasars" + #~ msgid "Sun altitude at twilight" #~ msgstr "Sun altitude at twilight" diff -Nru stellarium-0.12.1/po/stellarium/en_US.po stellarium-0.12.4/po/stellarium/en_US.po --- stellarium-0.12.1/po/stellarium/en_US.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/en_US.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 16:58+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: English (United States) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:20+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:56+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ecliptic" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Equator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizon" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Galactic Plane" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Author: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/eo.po stellarium-0.12.4/po/stellarium/eo.po --- stellarium-0.12.1/po/stellarium/eo.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/eo.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-02-15 10:52+0000\n" "Last-Translator: Guybrush88 \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:13+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptiko" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvatoro" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizonto" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "AÅ­toro: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Loko: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planedo " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipo: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitudo: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Grandeco: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaksio" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "malferma akumuligxo" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Globa akumuliÄo" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulozo" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planeda nebulozo" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "AkumuliÄx interrilati kun nebulozeco" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Nekonata" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "nekonata tipo" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absoluta Magnitudo: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distanco %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Åœajna diametro: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektra tipo: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distanco: %1 Lumjaroj" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralakso: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,67 +727,68 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "AÅ­toroj" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakto" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "AÅ­toro" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Permesilo" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Ekzekutanta programo " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Ekzekutanta programo" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Akiru katalogo %1 el %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -704,7 +797,7 @@ "ElÅutas %1...\n" "(Vi povas fermi ĉi tiun fenestron.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -712,7 +805,7 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -721,11 +814,11 @@ "ElÅuto de %1 fuÅis:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -733,115 +826,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1000,49 +1101,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Fenestroj" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Spaco" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Sen priskribo" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nova loko" @@ -1145,19 +1250,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1173,30 +1278,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Suno" @@ -1213,12 +1324,12 @@ msgstr "Tero" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Luno" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marso" @@ -1316,7 +1427,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturno" @@ -1614,239 +1725,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1856,1502 +1996,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Dato kaj horo" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Montradaj Opcioj" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Tutekrana moduso" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Etoso" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimuta Krado" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Montru konstelaciajn liniojn" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika linio" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekvatora linio" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatora Krado" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatora J2000 Krado" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Nebulo" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Tereno" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridiana linio" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulozoj" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Nokta moduso" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Steloj" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Diversaĵoj" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Fini" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Konservi ekrankopion" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Åœalti inter ekvatora kaj azimuta muntumoj." -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zomi la elektitan objekton" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Malzomi" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skriptoj" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Agordfenestro" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Helpfenestro" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Serĉfenestro" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3377,7 +3553,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Loko" @@ -3393,10 +3569,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3405,7 +3581,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3416,12 +3592,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3445,363 +3621,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planedoj" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3851,7 +4071,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3867,11 +4087,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4013,7 +4230,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4025,182 +4242,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Rezigni" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informado" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Iloj" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4368,176 +4595,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4609,64 +4836,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4674,7 +4906,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4685,14 +4917,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4701,305 +4933,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5007,25 +5308,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5033,17 +5334,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5051,41 +5352,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5093,338 +5396,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5460,22 +5806,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5858,62 +6204,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6067,7 +6413,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6085,7 +6431,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6101,154 +6447,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Lingvo" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6281,22 +6627,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6465,36 +6811,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6512,7 +6865,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6526,14 +6879,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6541,8 +6894,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6560,29 +6914,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6598,51 +7029,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6762,11 +7203,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6774,137 +7215,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6912,49 +7357,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6970,185 +7504,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7409,6 +7937,9 @@ #~ msgid "Planets labels" #~ msgstr "Planedetikedoj" +#~ msgid "Nebulas" +#~ msgstr "Nebulozoj" + #~ msgid "Planet Orbits" #~ msgstr "Planedaj Orbitoj" diff -Nru stellarium-0.12.1/po/stellarium/es.po stellarium-0.12.4/po/stellarium/es.po --- stellarium-0.12.1/po/stellarium/es.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/es.po 2013-09-23 06:20:13.000000000 +0000 @@ -9,191 +9,31 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-18 13:47+0000\n" -"Last-Translator: José A. Macas Durazo \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-19 08:48+0000\n" +"Last-Translator: Ivan Marti-Vidal \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-19 05:13+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-20 05:13+0000\n" +"X-Generator: Launchpad (build 16765)\n" "X-Poedit-Country: SPAIN\n" "X-Poedit-Language: Spanish\n" -#: src/gui/HelpDialog.cpp:183 -msgid "CTRL + Left click" -msgstr "CTRL + Clic izq." - -#: src/gui/StelGui.cpp:178 src/translations.h:672 -msgid "Script console window" -msgstr "Ventana de la consola de guiones" - -#: src/gui/AddRemoveLandscapesDialog.cpp:132 -#, qt-format -msgid "Landscape \"%1\" has been installed successfully." -msgstr "Paisaje \"%1\" ha sido instalado exitosamente." - -#: src/gui/AddRemoveLandscapesDialog.cpp:146 -#: src/gui/AddRemoveLandscapesDialog.cpp:216 -#: src/gui/AddRemoveLandscapesDialog.cpp:225 -#: src/gui/AddRemoveLandscapesDialog.cpp:233 -msgid "No landscape was installed." -msgstr "Ningún paisaje fue instalado." - -#: src/gui/AddRemoveLandscapesDialog.cpp:159 -#, qt-format -msgid "Landscape \"%1\" has been removed successfully." -msgstr "Paisaje \"%1\" ha sido eliminado exitosamente." - -#: src/gui/AddRemoveLandscapesDialog.cpp:170 -#: src/gui/AddRemoveLandscapesDialog.cpp:240 -msgid "The selected landscape could not be (completely) removed." -msgstr "El paisaje elegido podría no ser eliminado (completamente)." - -#. TRANSLATORS: Name of script -#: src/translations.h:205 -msgid "Landscape Tour" -msgstr "Recorrido por los paisajes" - -#. TRANSLATORS: Name of script -#: src/translations.h:207 -msgid "Partial Lunar Eclipse" -msgstr "Eclipse Parcial de Luna" - -#. TRANSLATORS: Name of script -#: src/translations.h:209 -msgid "Total Lunar Eclipse" -msgstr "Eclipse Total de Luna" - -#. TRANSLATORS: Name of script -#: src/translations.h:213 -msgid "Solar Eclipse 2009" -msgstr "Eclipse Solar 2009" - -#: src/translations.h:255 -msgid "A slow, infinite tour of the sky, looking at random objects." -msgstr "" -"Un lento, e infinito recorrido por el cielo, mirando objetos aleatoriamente." - -#: src/translations.h:256 -msgid "" -"Script to demonstrate a total solar eclipse which has happened in 2009 " -"(location=Rangpur, Bangladesh)." -msgstr "" -"Guión para demostrar un eclipse total de Sol que ocurrió en 2009 (ubicación: " -"Rangpur, Bangladés)." - -#: src/translations.h:258 -msgid "" -"This script displays the constellations of the Zodiac. That means the " -"constellations which lie along the line which the Sun traces across the " -"celestial sphere over the course of a year." -msgstr "" -"Este guión muestra las constelaciones del Zodíaco. Eso significa que las " -"constelaciones que se encuentran a lo largo de la línea que traza el Sol " -"alrededor de la esfera celeste durante el curso del año." - -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 -msgid "Horizon line" -msgstr "Linea del horizonte" - -#: src/ui_configurationDialog.h:1054 -msgid "Allow mouse to pan (drag) and zoom (mousewheel)" -msgstr "" -"Permitir desplazamiento (clic y arrastrar) y zoom (rueda de desplazamiento) " -"con ratón" - -#: src/ui_configurationDialog.h:1056 -msgid "Enable mouse navigation" -msgstr "Activar navegación mediante el ratón" - -#: src/ui_configurationDialog.h:1143 -msgid "Load at startup" -msgstr "Cargar al inicio" - -#: src/ui_AtmosphereDialog.h:179 -msgid "Pressure (mbar):" -msgstr "Presión (mbar):" - -#: src/ui_AtmosphereDialog.h:185 -msgid "" -"Extinction is the loss of star brightness due to Earth's atmosphere. It is " -"given in mag/airmass, where airmass is number of atmospheres light has to " -"pass. (zenith: 1; horizon: about 40)" -msgstr "" -"Extinción es la pérdida del brillo de estrella debido a la atmósfera de la " -"Tierra. Está expresado en mag/masa de aire, en donde masa de aire es el " -"número de atmósferas que la luz debe atravesar. (zenit:1; horizonte: cerca " -"de 40)" - -#: plugins/CompassMarks/src/CompassMarks.cpp:60 -msgid "Displays compass bearing marks along the horizon" -msgstr "Muestra marcas de brújula a lo largo del horizonte" - -#: plugins/Satellites/src/Satellites.cpp:172 -msgid "" -"The old satellites.json file is no longer compatible - using default file" -msgstr "" -"El archivo satellites.json viejo ya no es compatible - usando el archivo por " -"defecto" - -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 -msgid "" -"This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " -"computerized mount (a \"GoTo telescope\")." -msgstr "" -"Este complemento permite a Stellarium enviar \"montones\" de mensajes a un " -"telescopio en un montaje computarizado (un telescopio \"dirigible\")" - -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 -#, qt-format -msgid "Move telescope #%1 to selected object" -msgstr "Mover el telescopio #%1 a el objecto seleccionado" - -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 -#, qt-format -msgid "Move telescope #%1 to the point currently in the center of the screen" -msgstr "Mover el telescopio #%1 a el punto en el centro de la pantalla" - -#: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:516 -msgid "OK" -msgstr "Aceptar" - -#: plugins/Observability/src/gui/ObservabilityDialog.cpp:110 -msgid "" -"Happens when the angular separation between the Sun and the celestial object " -"are maximum. In most cases, this is equivalent to say that the Equatorial " -"longitudes of the Sun and the object differ by 180 degrees, so the Sun is in " -"opposition to the object. When an object is at its maximum possible angular " -"separation from the Sun (no matter if it is a planet or a star), it " -"culminates roughly at midnight, and on the darkest possible area of the Sky " -"at that declination. Hence, that is the 'best' night to observe a particular " -"object." -msgstr "" -"Sucede cuando la distancia angular entre el Sol y el objeto celeste es " -"máxima. En la mayoría de los casos, esto es equivalente a decir que la " -"longitud ecuatorial del Sol difiere 180 grados de la del objeto, por lo que " -"el Sol y el objeto están en oposición. Cuando el objeto está a su máxima " -"distancia angular del Sol (no importa si el objeto está fijo o es un " -"planeta), culmina aproximadamente a medianoche, y en la región más oscura " -"del cielo. Por lo tanto, la noche cuando un objeto está en oposición es la " -"\"mejor\" noche para observarlo." - -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridiano" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Eclíptica" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ecuador" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizonte" @@ -201,46 +41,46 @@ msgid "Galactic Plane" msgstr "Plano galáctico" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Ubicación: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipo: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitud: %1 (extinto a: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitud: %1" @@ -250,114 +90,114 @@ msgid "Size: %1" msgstr "Tamaño: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxia" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Cúmulo abierto" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Cúmulo globular" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebulosa planetaria" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Nebulosa Oscura" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Cúmulo asociado con nebulosidad" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Desconocido" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Tipo no documentado" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitud Absoluta: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Eclíptica Topocéntrica (de fecha): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Oblicuidad (de fecha, para Tierra): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distancia: %1ua (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distancia: %1ua" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diámetro aparente: %1, con anillos; %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diámetro aparente: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Periodo sideral: %1 días (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Día sidéreo: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Día solar medio: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Ãngulo de Fase: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongación: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Iluminado: %1%" @@ -368,7 +208,7 @@ msgstr "Designación provisional: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "estrella" @@ -383,48 +223,123 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnitud aparente: %1 (por extinción)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "estrella variable eruptiva" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "estrella pulsante variable" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "estrella variable rotante" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "estrella variable cataclísmica" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "sistema binario eclipsando" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "estrella variable" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "estrella doble" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Tipo: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitud: %1 (extintos a: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitud: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Rango de magnitud: %1%2%3 (Sistema Fotometrico: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Rango de magnitud: %1%2%3/%4 (Sistema Fotometrico: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Tipo espectral: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distancia: %1 años luz" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaje: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Época para luz mímima: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Época para luz máxima: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Período: %1 días" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Siguiente luz mínima: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Siguiente luz máxima: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Duración del eclipse: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Tiempo de ascenso: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Nave Espacial" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "La corrección está deshabilitada. ¡Úselo sólo si sabe lo que está haciendo!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -436,7 +351,7 @@ "Confirmada por Antiguos Eclipses Solares (%1). Vea más información " "%2aquí%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -445,7 +360,7 @@ "Esta ecuación empírica fue publicada por G. M. Clemence en el artículo " "En el sistema de las constantes astronómicas (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -458,7 +373,7 @@ "Meeus en su Fórmulas astronómicas para calculadoras. Fue también " "adoptada en el programa de PC SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -468,7 +383,7 @@ "fue adoptada en la Efemérides Astronómica y en el Canon de los " "Eclipses Solares por Mucke & MEeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -480,7 +395,7 @@ "misma relación fue adoptada implícitamente en las tablas de sizigias de " "Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -491,7 +406,7 @@ "artículo Las aceleraciones de la tierra y la luna desde anteriores " "observaciones astronómicas (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -500,7 +415,7 @@ "Esta ecuación fue publicada por F. R. Stephenson en el artículo " "Observaciones Astronómicas Pre-Telescópicas (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -513,7 +428,7 @@ "Aproximaciones polinomiales para la corrección delta T E.T-U.T en el " "período 1800-1975 (%1) as git through data published by Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -523,7 +438,7 @@ "4000 hasta +2800 por P. Bretagnon & L. Simon y en el programa " "planetario de PC RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -534,11 +449,11 @@ "artículo Cambios a largo plazo en la rotación de la tierra - 700 a. C. a " "1980 d. C. (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "Este algoritmo es usado en el programa planetario para PC Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -548,7 +463,7 @@ "Eclipses Solares: 1986-2035 (1987) y en su Cincuenta Años Canónicos " "de Eclipses Lunares: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -557,7 +472,7 @@ "Esta fórmula fue obtenida por K. M. Borkowski (%1) desde un análisis de 31 " "registros de eclipses solares que datan entre 2137 a. e. c. y 1715 e. c." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -570,7 +485,7 @@ "Período 1800-1988 (%1) como los datos dados por Stephenson y Morrison " "(1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -580,7 +495,7 @@ "reducida de teoría lunar ELP 2000-85 en su Tablas Lunares y Programas " "desde 4000 a. C. a 8000 d. C. (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -591,7 +506,7 @@ "artículo Fluctuaciones a Largo Plazo en la Rotación de la Tierra: 700 a. " "C. a 1990 d. C. (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -600,7 +515,7 @@ "F. R. Stephenson poblicó esta fórmula en su libro Eclipses Históricos y " "Rotación de la Tierra (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -610,7 +525,7 @@ "ampliamente. Tabla para 1620..2000, e incluye una variante de Chapront, " "Chapront-Touze y Froncou (1997) para fechas fuera de 1620..2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -619,7 +534,7 @@ "El Grupo de Dinámica del Sistema Solar del Laboratorio de Propulsión a " "Chorro de la NASA usa esta fórmula en su sitio interactivo %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -628,7 +543,7 @@ "Este polinomio fue publicado por J. Meeus y L. Simmons en el artículo " "Aproximaciones polinomiales a Delta T, 1620-2000 d. C. (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -638,7 +553,7 @@ "Computadora Personal (2000) provee datos simples de 3er orden " "polinomial que encajan para el pasado reciente." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -650,7 +565,7 @@ "Calendáricas (2002). Está basado en Algoritmos Astronómicos " "(1991) de Jean Meeus." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -661,7 +576,7 @@ "en el artículo Valores históricos de errores de reloj de la Tierra %1T y " "el cálculo de eclipses (%2) con adenda en (%3)" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -675,7 +590,7 @@ "una posible periodicidad descrita por Stephenson (%2). Véa más información " "%3aquí%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -690,11 +605,34 @@ "Solares de Cinco Milenios: -1900 a +3000 (2006). Esta fórmula también " "es usada en el programa SOLEX de efemérides solares y lunares." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Usado por defecto." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Solución por B. Banjevic, basada en Stephenson & Morrison (1984), fué " +"publicado en el artículo Ancient eclipses and dating the fall of " +"Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Esta solución por S. Islam, M. Sadiq y M. S. Qureshi, basada en Meeus y " +"Simons (2000), fué publicada en el artículo Minimización de Error de " +"Aproximación polinomial de DeltaT (%1) y revisado por Sana Islam en " +"2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -703,15 +641,15 @@ "Esta es una fórmula cuadrática para el cálculo de %1T con coeficientes " "definidos por el usuario." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Error" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "con valores sin sentido fuera de este rango" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -719,21 +657,22 @@ "con una media de error de menos de un segundo, max. 1.9s de error, y los " "valores sin sentido fuera de este rango" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "con valores cero fuera de este rango" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "con una presición típica de 1 segundo y valores cero fuera de este rango" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Rango válido de uso: entre los años %1 y %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Rango válido de uso: entre los años %1 y %2." @@ -904,52 +843,53 @@ msgid "Found" msgstr "Encontrado(s)" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Seleccione el directorio de capturas de pantalla" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Campo de visión al inicio: %1 %2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Punto de vista al inicio Az/Alt: %1 %2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autores" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contacto" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licencia" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Script en ejecución: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Ejecutando script: [ninguno]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -957,16 +897,16 @@ "¡Se terminó de descargar los nuevos catálogos de estrellas!\n" "Reinicia Stellarium para mostrarlos." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Todos los catálogos estelares disponibles han sido instalados." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Obtener catálogo %1 de %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -975,7 +915,7 @@ "Descargando %1...\n" "(Puedes cerrar esta ventana)." -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -986,7 +926,7 @@ "Conteo de estrellas: %2 millón\n" "Rango de magnitud: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -995,11 +935,11 @@ "Error descargando %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verificando integridad de archivo..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -1009,115 +949,123 @@ "El archivo está corrupto." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritmo de" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Sin corrección" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "UAI (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Efemérides Astronómicas" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) y Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller y Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel y Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison y Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson y Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson y Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel y Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze y Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson y Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (con Chapront, Chapront-Touze y Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus y Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck y Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold y Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison y Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak y Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq y Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Ecuación personalizada de %1T" @@ -1170,6 +1118,10 @@ msgid "Right click" msgstr "Clic derecho" +#: src/gui/HelpDialog.cpp:183 +msgid "CTRL + Left click" +msgstr "CTRL + Clic izq." + #: src/gui/HelpDialog.cpp:189 #, qt-format msgid "" @@ -1285,45 +1237,53 @@ msgid "OSX Developer: %1" msgstr "Desarrollador de OSX: %1" +#: src/gui/StelGui.cpp:178 src/translations.h:692 +msgid "Script console window" +msgstr "Ventana de la consola de guiones" + #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Ventanas" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Espacio" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Sin descripción" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Sin estrellas fugaces" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Ritmo normal" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Tasa normal de las Perseidas" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Tasa de tormenta de meteoros" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Tasa excepcional de las Leónidas" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Tasa máxima alcanzada (1966 Leónidas)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nueva ubicación" @@ -1336,11 +1296,23 @@ msgid "ZIP archives" msgstr "archivos ZIP" +#: src/gui/AddRemoveLandscapesDialog.cpp:132 +#, qt-format +msgid "Landscape \"%1\" has been installed successfully." +msgstr "Paisaje \"%1\" ha sido instalado exitosamente." + #: src/gui/AddRemoveLandscapesDialog.cpp:133 #: src/gui/AddRemoveLandscapesDialog.cpp:160 msgid "Success" msgstr "Éxito" +#: src/gui/AddRemoveLandscapesDialog.cpp:146 +#: src/gui/AddRemoveLandscapesDialog.cpp:216 +#: src/gui/AddRemoveLandscapesDialog.cpp:225 +#: src/gui/AddRemoveLandscapesDialog.cpp:233 +msgid "No landscape was installed." +msgstr "Ningún paisaje fue instalado." + #: src/gui/AddRemoveLandscapesDialog.cpp:147 #: src/gui/AddRemoveLandscapesDialog.cpp:171 #: src/gui/AddRemoveLandscapesDialog.cpp:220 @@ -1350,6 +1322,16 @@ msgid "Error!" msgstr "¡Error!" +#: src/gui/AddRemoveLandscapesDialog.cpp:159 +#, qt-format +msgid "Landscape \"%1\" has been removed successfully." +msgstr "Paisaje \"%1\" ha sido eliminado exitosamente." + +#: src/gui/AddRemoveLandscapesDialog.cpp:170 +#: src/gui/AddRemoveLandscapesDialog.cpp:240 +msgid "The selected landscape could not be (completely) removed." +msgstr "El paisaje elegido podría no ser eliminado (completamente)." + #. TRANSLATORS: MiB = mebibytes (IEC 60027-2 standard for 2^20 bytes) #: src/gui/AddRemoveLandscapesDialog.cpp:193 #, qt-format @@ -1406,19 +1388,19 @@ msgid "starchart" msgstr "carta estelar" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Error de Búsqueda Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Búsqueda Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universidad de Strasbourg (Francia)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Universidad de Harvard (EE. UU.)" @@ -1434,30 +1416,38 @@ msgid "Alternative shortcut" msgstr "Atajo alternativo" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Ecuación personalizada para %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Una ecuación típica para el cálculo de %1T se ve como:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "donde" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "año" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Este sistema no soporta OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Su plataforma no soporta el OpenGL 1.2 mínimo requerido. Por favor actualice " +"los controladores para el adaptador gráfico." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sol" @@ -1474,12 +1464,12 @@ msgstr "Tierra" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Luna" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marte" @@ -1577,7 +1567,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturno" @@ -1879,173 +1869,245 @@ msgstr "Esquimal" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "India Védica" + +#: src/translations.h:171 msgid "Korean" msgstr "Coreano" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maorí" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Escandinavo o Nórdico" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinesio" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami o Lapona" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupí-guaraní" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongano" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Occidental" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guéreins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Ãrboles" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Huracán" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Océano" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:206 +msgid "Landscape Tour" +msgstr "Recorrido por los paisajes" + +#. TRANSLATORS: Name of script +#: src/translations.h:208 +msgid "Partial Lunar Eclipse" +msgstr "Eclipse Parcial de Luna" + +#. TRANSLATORS: Name of script +#: src/translations.h:210 +msgid "Total Lunar Eclipse" +msgstr "Eclipse Total de Luna" + +#. TRANSLATORS: Name of script +#: src/translations.h:212 msgid "Screensaver" msgstr "Salvapantallas" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:214 +msgid "Solar Eclipse 2009" +msgstr "Eclipse Solar 2009" + +#. TRANSLATORS: Name of script +#: src/translations.h:216 msgid "Startup Script" msgstr "Guión de inicio" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodíaco" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Triple Amanecer y Atardecer de Mercurio" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Doble eclipse de Deimos en 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Doble eclipse de Deimos en 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Eclipse de Monte Olimpo 10 Ene 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Ocultación de la Tierra y Júpiter 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "Tres tránsitos y 2 eclipses de Deimos en 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Salvapantallas del Sistema Solar" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Paseo por Constelaciones" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Sol desde diferentes planetas" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Mejores vistas de la tierra desde otros cuerpos" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Tránsito de Venus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analema" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Paseo de Culturas Estelares" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Eventos planetarios de Mercurio" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Eventos planetarios de Venus" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Eventos planetarios de Marte" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Las Mejores Elongaciones y brillos de la Tierra desde Marte" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Las Mejores Elongaciones de la Tierra y Marte desde Júpiter" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." -msgstr "Mira alrededor cada paisaje instalado." +msgstr "Visualiza alrededor cada paisaje instalado." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." -msgstr "Mira cada cultura estelar instalada." +msgstr "Visualiza cada cultura estelar instalada." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Guión para demostrar un eclipse parcial de luna" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Guión para demostrar un eclipse total de luna" -#: src/translations.h:257 +#: src/translations.h:265 +msgid "A slow, infinite tour of the sky, looking at random objects." +msgstr "" +"Un lento, e infinito recorrido por el cielo, mirando objetos aleatoriamente." + +#: src/translations.h:266 +msgid "" +"Script to demonstrate a total solar eclipse which has happened in 2009 " +"(location=Rangpur, Bangladesh)." +msgstr "" +"Guión para demostrar un eclipse total de Sol que ocurrió en 2009 " +"(lugar=Rangpur, Bangladés)." + +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Guión que se ejecuta automáticamente al inicio" -#: src/translations.h:259 +#: src/translations.h:268 +msgid "" +"This script displays the constellations of the Zodiac. That means the " +"constellations which lie along the line which the Sun traces across the " +"celestial sphere over the course of a year." +msgstr "" +"Este guión muestra las constelaciones del Zodíaco. Eso significa que las " +"constelaciones que se encuentran a lo largo de la línea que traza el Sol " +"alrededor de la esfera celeste durante el curso del año." + +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -2054,7 +2116,7 @@ "ciertos lugares el sol saldrá y ocultará 3 diferentes momentos en un día de " "Mercurio" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -2063,7 +2125,7 @@ "por primera vez. Se lleva a cabo entre Escorpio y Sagitario el 26 de abril " "de 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -2071,12 +2133,12 @@ "Justo antes de que Marte eclipsa el sol, Fobos sale desde atrás y lo eclipsa " "primero. Se lleva a cabo entre el Tauro y Géminis el 23 de julio de 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Fobos eclipsando el sol como se vee desde el Monte Olimpo en 10 ene. 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -2086,7 +2148,7 @@ "ocultaciones de Júpiter. Pero las ocultaciones de ambos en el mismo día son " "muy raras. Aquí es una que toma lugar 23/1/2048. En velocidad real." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2102,33 +2164,34 @@ "emerge desde Marte aún está eclipsado y desvanecido en la sombra, sólo para " "iluminarse después." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Salvapantalla de varios sucesos en el Sistema Solar. ¡171 eventos en total!" +"Protector de pantalla de varios sucesos en el Sistema solar. ¡187 eventos en " +"total!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Un paseo de las constelaciones occidentales." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Mira al sol desde grandes planetas del Sistema solar y Plutón." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "Las mejores vistas de la tierra desde otros cuerpos del Sistema solar en el " "siglo XXI" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "Tránsito de Venus como se ve desde Sidney Australia, 6 de junio 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." @@ -2136,7 +2199,7 @@ "Una demostración del analema - la ruta del sol a través del cielo durante el " "año." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2144,1463 +2207,1505 @@ "Destello de la supernova observada por tycho Brahe en 1572. El Complemento " "de supernovas debe habilitarse." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" +"Las mejores elongaciones y brillos de la Tierra desde Marte 2000-3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "Las mejores elongaciones de la Tierra desde Júpiter 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Emiratos Ãrabes Unidos" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistán" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua y Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Antillas Holandesas" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antártida" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa Americana" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaiyán" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia y Herzegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bosnia y Herzegovina" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Bélgica" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Baréin" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benín" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermudas" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunéi" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bután" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Isla Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botsuana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Botsuana" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belice" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canadá" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Islas Cocos" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "República Democrática del Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "República Centroafricana" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "República del Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Suiza" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Costa de Marfil" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Islas Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Camerún" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia y Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Cabo Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Isla de Navidad" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Chipre" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "República Checa" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Alemania" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Yibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Dinamarca" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "República Dominicana" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Argelia" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egipto" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Sahara Occidental" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "España" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopía" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlandia" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiyi" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Islas Malvinas" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Islas Feroe" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Francia" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabón" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Reino Unido" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Granada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guayana Francesa" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Greenland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadalupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Guinea Ecuatorial" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grecia" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Islas Georgias del Sur y Sandwich del Sur" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Islas Heard y McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Croacia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haití" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hungría" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlanda" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Territorio Británico del Océano Ãndico" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Irán" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islandia" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordania" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japón" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirguistán" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Camboya" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comoras" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "San Cristóbal y Nieves" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Corea del Norte" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Corea del sur" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Islas Caimán" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazajistán" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Líbano" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Santa Lucía" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesoto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lituania" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburgo" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Letonia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libia" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marruecos" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Mónaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavia" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Islas Marshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Malí" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Birmania" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Islas Marianas del Norte" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinica" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauricio" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldivas" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malaui" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "México" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malasia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nueva Caledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Níger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Isla Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Países Bajos" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Noruega" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nueva Zelanda" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Omán" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panamá" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Perú" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinesia Francesa" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papúa Nueva Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipinas" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistán" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polonia" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "San Pedro y Miquelón" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Territorios Palestinos" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palaos" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Catar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Reunión" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Rumania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Rusia" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Arabia Saudita" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Islas Salomón" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudán" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Suecia" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Santa Elena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Eslovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard y Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Eslovaquia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leona" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Santo Tomé y Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Siria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Suazilandia" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Islas Turcas y Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Chad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Territorios Australes Franceses" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Tailandia" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tajikistán" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Timor Oriental" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistán" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Túnez" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turquía" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad y Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwán" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ucrania" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Islas Ultramarinas de Estados Unidos" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Estados Unidos" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistán" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Ciudad del Vaticano" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "San Vicente y las Granadinas" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Islas Vírgenes Británicas" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Islas Vírgenes de los Estados Unidos" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis y Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Yugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Suráfrica" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabue" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Fecha y Hora" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Añadir 1 día sidéreo" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Añandir 1 mes sideral" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Añadir 1 semana sidérea" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Añadir 1 año sideral" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Añadir 1 siglo sideral" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Añadir 1 día solar" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Añadir 1 hora solar" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Añadir 1 semana solar" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Añadir 1 mes sinódico" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Añadir 1 mes dracónico" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Agregar 1 mes anómalo" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Añadir 1 mes tropical" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Agregar 1 año dracónico" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Agregar 1 año trópico" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Añadir 1 siglo tropical medio" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Ralentiza la velocidad de ejecución del script" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Disminuir Velocidad del Tiempo [J]" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Disminuye la velocidad del tiempo (un poco)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Acelera el ratio de ejecución de scripts" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Aumentar Velocidad del Tiempo [L]" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Aumenta la velocidad del tiempo (un poco)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pausar la ejecución del guión" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Contiuar la ejecución del guión" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Establecer fecha y hora a la actual" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Establece el ratio de ejecución de scripts normal" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Establecer ritmo normal de tiempo" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Establecer ritmo de tiempo a cero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Detener ejecución del guión" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Restar 1 día sidéreo" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Restar 1 mes sideral" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Restar 1 semana sidérea" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Restar 1 año sideral" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Restar 1 siglo sideral" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Restar 1 día solar" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Restar 1 hora solar" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Restar 1 semana solar" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Quitar 1 mes sinódico" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Quitar 1 mes dracónico" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Quitar 1 mes anómalo" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Quitar 1 mes tropical" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Quitar 1 año dracónico" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Quitar 1 año tropical" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Restar 1 siglo tropical medio" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Opciones de visualización" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Invertir vista horizontalmente" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Modo pantalla completa" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmósfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Cuadrícula azimutal" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Puntos cardinales" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Figuras de constelaciones" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Límites de constelaciones" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Nombres de constelaciones" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Líneas de constelaciones" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Imágenes de fondo de nebulosas" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Imágenes de fondo de objetos del Espacio profundo" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Cuadrícula eclíptica J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Linea de la Eclíptica" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Línea del Ecuador" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Cuadrícula ecuatorial" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Cuadrícula ecuatorial J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Niebla" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Cuadrícula galáctica" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Plano galáctico" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Suelo" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 +msgid "Horizon line" +msgstr "Linea del horizonte" + +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Línea del Meridiano" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulosas" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Objetos del Espacio profundo" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Modo nocturno" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Etiqueta de planetas" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Órbitas planetarias" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Rutas de planetas" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Estrellas" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Etiquetas de estrellas" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Invertir vista verticalmente" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Miscelánea" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Ocultación automática de la barra horizontal de botones" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Ocultación automática de la barra vertical de botones" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Ir al inicio" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Salir" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Copiar la información del objeto seleccioinado al portapapeles" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Guardar captura de pantalla" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Alternar entre montura ecuatorial y azimutal" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Cambiar la visibilidad de la GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Movimiento y selección" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centrar sobre el objeto seleccionado" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Establecer el planeta seleccionado como mi casa" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Seguir objeto" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Hacer zoom sobre el objeto seleccionado" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Alejarse" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Medidor de ángulos" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Marcas de brújula" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Mostrar exoplanetas" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Ventana de configuración de exoplanetas" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observabilidad" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Ventana de configuración de observabilidad" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Configuración del complemento de oculares" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Oculares" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Mostrar retículas" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Menú emergente para oculares" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Cuadro sensor de imagen" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Mira telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Seleccionar telescopio siguiente" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Seleccionar ocular siguiente" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Seleccionar telescopio previo" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Seleccionar ocular previo" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Mostrar púlsares" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Ventana de configuración de púlsares" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Mostrar cuásares" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Ventana de configuración de Cuásares" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Configuración de satélites" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Posiciones de satélites" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Nombres de satélites" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Ventana de configuración de Supernovas Históricas" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Ventana de configuración de Novas Brillantes" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Mover el telescopio a las coordenadas definidas" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Mostrar estadísticas del renderizador" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripts" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Ejecutar guión de paisajes desde archivo" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Mostrar y acercar Luna" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Ventana de configuración" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Ventana de fecha/hora" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Ventana de ayuda" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Ventana de ubicación" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Ventana de búsqueda" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Ventana de atajos" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Ventana de opciones del cielo y de vista" @@ -3626,7 +3731,7 @@ msgstr "Actualizar" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Ubicación" @@ -3642,10 +3747,10 @@ msgid "Return to default" msgstr "Volver a los valores por defecto" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Eliminar" @@ -3654,7 +3759,7 @@ msgstr "Añadir a la lista" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitud:" @@ -3667,12 +3772,12 @@ "minutos segundos\", por ejemplo +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitud:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitud :" @@ -3696,364 +3801,414 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Encontrar Objeto" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Encontrar el objeto o la posición" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Utilice la tecla tab para seleccionar objetos encontrados" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alpha" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Letras griegas para las designaciones de Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objeto" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "AR/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posición" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Algunos objetos pueden ser encontrados después de activar sus respectivos " +"complementos" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "nombres en inglés" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Buscar en lista..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listas" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Base de datos astronómica en línea SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Extender búsqueda con SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Servidor:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Opciones de búsqueda" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "Utilizar autorelleno únicamente desde el inicio de las palabras" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" -msgstr "Opciones" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "nombres en inglés" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Buscar en lista..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listas" +msgstr "Opciones" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Vista" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Cielo" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Marcas" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Paisaje" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Leyenda estelar" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etiquetas y marcadores" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planetas" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Etiquetas y marcadores para objetos lejanos (cumulos de estrellas, galaxias " +"y nebulosas)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "OEPs" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planetas y satélites" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Mostrar planetas" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Mostrar indicadores de planetas" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Mostrar órbitas planetarias" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simular velocidad de la luz" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Luna a escala" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Cambio automático de paisaje cuando se cambia el planeta" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Seleccionar automáticamente el paisaje" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Mostrar atmósfera" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Contaminación lumínica" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "presión, temperatura, coeficiente de extinción" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Configurar Refracción/Extinción" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Escala absoluta:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Escala relativa:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Brillo de la Vía Láctea" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Centelleo:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Oscurecer las estrellas débiles cuando un objeto muy brillante está visible" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adaptación visual dinámica" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Estrellas fugaces" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Tasa horaria zenital" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "THZ" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Limitar magnitudes (para observadores de binoculares/simple vista)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Limitar magnitudes" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Magnitud de estrellas hasta" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Limitar la magnitud de las estrellas" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Magnitud de nebulosas hasta" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Limitar la magnitud de objetos lejanos (cúmulos de estrellas, galaxias y " +"nebulosas)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Constelaciones" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Mostrar líneas" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Mostrar etiquetas" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Mostrar límites" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Mostrar figuras" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Brillo de las constelaciones" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Esfera celeste" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Mostrar línea ecuatorial" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Mostrar línea meridional" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Mostrar línea de horizonte" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Mostrar línea eclíptica" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Mostrar línea de plano Galáctico" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Proyección" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Agregar/quitar paisajes..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Mostrar suelo" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Mostrar niebla" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Usar posición y planeta asociado" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Usar este paisaje como predeterminado" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Usar ajustes de brillo para paisajes" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Usar esta cultura estelar como predeterminada" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visible" @@ -4074,13 +4229,13 @@ "Save the settings you've changed this session to be the same the next time " "you start Stellarium" msgstr "" -"Salvar la configuración realizada en esta sesión para que sea la misma la " +"Guardar la configuración realizada en esta sesión para que sea la misma la " "próxima vez que inicie Stellarium" #: src/ui_configurationDialog.h:980 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:391 msgid "Save settings" -msgstr "Salvar configuración" +msgstr "Guardar configuración" #: src/ui_configurationDialog.h:982 msgid "Restore the default settings that came with Stellarium" @@ -4096,9 +4251,9 @@ "current options includes the current FOV and direction of view for use at " "next startup." msgstr "" -"Restaurar las configuraciones predeterminadas requiere el reinicio de " -"Stellarium. Guardar todas las opciones actuales incluye los FOV actuales y " -"la dirección de vista para ser utilizados en el siguiente inicio." +"Restaurar las configuraciones predeterminadas requieren el reinicio de " +"Stellarium. Guardar todas las opciones actuales incluye el CdV actual y la " +"dirección de vista para ser utilizados al siguiente inicio." #: src/ui_configurationDialog.h:987 msgid "The width of your view when Stellarium starts" @@ -4108,7 +4263,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "La dirección a la que está viendo cuando inicia Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Información del objeto seleccionado" @@ -4124,11 +4279,8 @@ msgid "Display no information" msgstr "No mostrar información" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ninguna" @@ -4249,6 +4401,16 @@ msgid "Enable keyboard navigation" msgstr "Activar navegación mediante teclado" +#: src/ui_configurationDialog.h:1054 +msgid "Allow mouse to pan (drag) and zoom (mousewheel)" +msgstr "" +"Permitir desplazamiento (clic y arrastrar) y zoom (rueda de desplazamiento) " +"con ratón" + +#: src/ui_configurationDialog.h:1056 +msgid "Enable mouse navigation" +msgstr "Activar navegación mediante el ratón" + #: src/ui_configurationDialog.h:1059 msgid "Hides the mouse cursor when inactive" msgstr "Ocultar el cursor del ratón cuando está inactivo" @@ -4262,7 +4424,7 @@ msgstr "segundos" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Fecha y hora al inicio" @@ -4274,19 +4436,23 @@ msgid "Other:" msgstr "Otras:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Usar fecha y hora local actual" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "usar actual" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Iniciar Stellarium usando la fecha y hora del sistema" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Fecha y hora de sistema" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4294,23 +4460,23 @@ "Fija el horario de simulación a la siguiente instancia de esta hora del día " "cuando inicia Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Hora del sistema en:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Corrección de tiempo" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Editar ecuación" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Opciones del planetario" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4318,51 +4484,51 @@ "Se usa una distorsión de espejo esférico cuando se proyecta Stellarium en un " "espejo esférico de sistemas de planetarios de bajo precio." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Distorsión de espejo esférico" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Ocultar todo fuera del círculo central en la vista principal" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Ventana de disco" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Ocultar las demás constelaciones cuando seleccione una" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Seleccionar una constelación" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Alinear etiquetas con el horizonte" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Etiquetas de gravedad" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Activar la muestra de fondos de las nebulosas." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Mostrar boton de fondo de nebulosas" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Intercambiar los botones de giro de imagen vertical y horizontal." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Mostrar los botones de giro" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4370,89 +4536,101 @@ "Una vez activado, la tecla de \"Alejar zoom automáticamente\" también " "volverá a la dirección de la vista inicial" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" "Alejar zoom automáticamente vuelve a la dirección de la vista inicial" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Mostrar sombras solares en planetas y lunas (para esta característica se " +"necesita OpenGL versión 2 o mayor)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Renderizar sombras solares" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Capturas de pantalla" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Directorio de capturas de pantalla" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Invertir colores" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Actualizaciones de catálogos de estrellas" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Presione aquí para empezar a descargar" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Descarga este archivo para ver aún más estrellas" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Reiniciar la descarga" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Reintentar" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Detener la descarga. Puede reiniciarla luego si desea" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cancelar" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Cerrar ventana cuando se ejecute un script" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Ejecutar script seleccionado" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Detener script en ejecución" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1149 +msgid "Load at startup" +msgstr "Cargar al inicio" + +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "configurar" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Principal" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Información" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navegación" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Herramientas" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Complementos" @@ -4510,10 +4688,25 @@ msgid "Refraction Settings" msgstr "Configuración de Refracción" +#: src/ui_AtmosphereDialog.h:179 +msgid "Pressure (mbar):" +msgstr "Presión (mbar):" + #: src/ui_AtmosphereDialog.h:180 msgid "Temperature (C):" msgstr "Temperatura (C):" +#: src/ui_AtmosphereDialog.h:185 +msgid "" +"Extinction is the loss of star brightness due to Earth's atmosphere. It is " +"given in mag/airmass, where airmass is number of atmospheres light has to " +"pass. (zenith: 1; horizon: about 40)" +msgstr "" +"Extinción es la pérdida del brillo de estrella debido a la atmósfera de la " +"Tierra. Está expresado en mag/masa de aire, en donde masa de aire es el " +"número de atmósferas que la luz debe atravesar. (zenit:1; horizonte: cerca " +"de 40)" + #: src/ui_AtmosphereDialog.h:187 msgid "Extinction Coefficient:" msgstr "Coeficiente de Extinción:" @@ -4611,12 +4804,16 @@ msgid "Compass Marks" msgstr "Marcas de Brújula" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/CompassMarks/src/CompassMarks.cpp:60 +msgid "Displays compass bearing marks along the horizon" +msgstr "Muestra marcas de brújula a lo largo del horizonte" + +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculares" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4626,165 +4823,165 @@ "telescopio (sólo se simulan el aumento y el campo de visión). También puede " "mostrar un cuadro sensor y una mira Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" "Por favor seleccione un objeto antes de cambiar a la vista por ocular." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Ocular anterior" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Ocular siguiente" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Seleccionar &ocular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Activar &retícula" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Configurar &Oculares" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Activar &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Activar &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&CCD Previo" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Siguiente CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Seleccionar CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Rotar CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Reestablecer rotación" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Ocular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Ocular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Ocular FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Ocular aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Lente #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Lente #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Lente: ninguno" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Telescopio #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Telescopio #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Aumento: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "CDV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensiones: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Lente" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "Lente &previo" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "Lente &Siguiente" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Telescopio" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Telescopio previo" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Siguiente telescopio" @@ -4856,66 +5053,71 @@ msgid "Apparent field of view of the ocular" msgstr "Campo de visión aparente del ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Multiplicidad: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Lente: Ninguno" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Multiplicidad: N/A" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Multiplicidad del lente" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Longitud focal del ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotación: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Aumento proporcionado por estos binoculares" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Campo de visión actual proporcionado por estos binoculares" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "Aumento provisto por esta combinación de ocular/lente/telescopio" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Campo de visión actual provisto por esta combinación de " "ocular/lente/telescopio" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Complemento de Oculares" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versión" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Característica de lente Barlow" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "VisioÌn general" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4928,7 +5130,7 @@ "primera vez en funcionamiento, la aplicación va a llenar algunas muestras " "para comenzar." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4944,7 +5146,7 @@ "telescopios de diferente longitud focal producirá dos círculos de salida " "distintos, cambiando el punto de vista en alguien." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4954,7 +5156,7 @@ "alineado hacia el Norte. He sido incapaz de hacerlo. Así que actualmente se " "alinea con la parte superior de la pantalla." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4967,121 +5169,130 @@ "2.0%1, y 4.0%1, ayudandole a ver como se espera que se mire a simple vista a " "través del buscador Telrad (o similar)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" "Si encuentra cualquier problema, por favor hágamelo saber. ¡Disfrútelo!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Combinaciones de teclas" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" "Las combinaciones de tecla del complemento se pueden editar en la Pestaña " "General" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[sin tecla definida]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Activa / desactiva la superposición de oculares." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Abre la ventana del menú de navegación." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Permitir sólo si un objeto es seleccionado" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Escalar el círculo de imagen" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" +"Aplicar límites de magnitud estelar para diferentes aperturas de telescopios" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Limitar magnitud estelar" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Atajos de teclado" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Activar la vista ocular:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Abrir el menú emergente de navegación:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interfaz" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Panel de control en pantalla" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Usar grados y minutos para el CDV del CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "General" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Oculares" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Añadir" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nombre:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "CDVa:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Longitud focal:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Número f:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binoculares" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Lentes" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Multiplicidad:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Multiplicador:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5089,74 +5300,75 @@ "Valores de multiplicidad >1 expanden la longitud focal (lente Balow). " "Valores de multiplicidad <1 reducen la longitud focal (lente Shapley)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensores" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Resolución x (pixeles):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Resolución y (pixeles):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Ancho del chip (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Alto del chip (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Ancho del pixel (micrones):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Alto del pixel (micrones):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Telescopios" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diámetro:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Voltear horizontalmente" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Voltear verticalmente" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Acerca de" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satélites" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5164,81 +5376,148 @@ "Predicción de la posición de los satélites artificiales en órbita terrestre " "basado en la base de datos NORAD TLE" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#: plugins/Satellites/src/Satellites.cpp:180 +msgid "" +"The old satellites.json file is no longer compatible - using default file" +msgstr "" +"El archivo satellites.json viejo ya no es compatible - usando el archivo por " +"defecto" + +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "visibles" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "científico" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "comunicaciones" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navegación" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amateur" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "clima" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geoestacionario" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "no operacional" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "gps" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "El Telescopio Espacial Hubble" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "La Estación Espacial Internacional" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "No. de catálogo" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Designación Internacional" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "satélite artificial" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Rango (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Rango de velocidad (km): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitud (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "SubPunto (Lat./Long.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Coordenadas TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "Velocidad TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "El satélite y el observador están al sol" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "El satélite está visible" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "El satélite está eclipsado" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "El satélite no está visible" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Complemento satelital de Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5246,18 +5525,18 @@ "El complemento de satelital predice las posiciones de los satélites " "artificiales en la órbita terrestre." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Notas para usuarios" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Los satélites y sus órbitas sólo aparecen cuando el observador está en la " "tierra." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5267,7 +5546,7 @@ "tiempo (del orden de días, semanas o tal vez un mes en el pasado y el " "futuro). Espere altas rarezas cuando se miren en fechas fuera de este rango." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5277,7 +5556,7 @@ "datos TLE regularmente." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5288,7 +5567,7 @@ "archivo por defecto %3. El archivo antiguo se guardará como %4. Este se " "encuentra en el directorio de datos del usuario bajo \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5297,11 +5576,11 @@ "están incompletas, inexistentes o erroneas" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Actualización de datos TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5311,7 +5590,7 @@ "locaciones en internet, y por defecto hará esto si los datos son de más de " "72 horas. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5322,7 +5601,7 @@ "en su computadora. Este archivo debe ser del mismo formato que las " "actualizaciones Celestrak (Ver %1 para ejemplo)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5331,11 +5610,11 @@ "algo entre parentesis cuadrados al final, será removido antes de que los " "datos sean utilizados." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Añadiendo nuevos satélites" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5348,11 +5627,11 @@ "en el botón '+'. Selecciones el o los satélites que desea añadir y " "seleccione el botón de \"añadir\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Notas técnicas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5360,7 +5639,7 @@ "Las posiciones son calculadas usando los métodos SGP4 y SDP4, usando datos " "NORAD TLE como entrada. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5370,24 +5649,26 @@ "#6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Véa %1este documento%2 para detalles." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Enlaces" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5397,31 +5678,34 @@ "escribir \"%1\" en el asunto al enviar el mensaje." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Si tiene preguntas, puede %1obtener una respuesta aquí%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Reportar errores %1aquí%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5429,120 +5713,140 @@ "Si a usted le gustaría solicitar una característica, puede crear un reporte " "de error, y establecer la severidad como \"wishlist\"" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Actualizaciones por internet inhabilitadas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Actualizando..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Siguiente actualización: < 1 minuto" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Siguiente actualización: %1 minutos" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Siguiente actualización: %1 horas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Actualizar" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Actualizar desde archivos" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Error de actualización" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "%1/%2 satélites actualizados; %3 añadidos; %4 eliminados" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Actualizados %1/%2 satélites; %3 no encontrados" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "%1/%2 satélites actualizados; %3 añadidos; %4 no encontrados" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[nueva fuente]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Actualizar" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Actualizar desde archivos" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[error de cálculo de órbita]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[añadidos recientemente]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[todos los no mostrados]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[todos los mostrados]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[todo]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Nuevo grupo..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Seleccione el Archivo de Actualización TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Descargando datos..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5550,175 +5854,200 @@ "Stellarium está descargando datos satelitales de las fuentes de " "actualización. Por favor espere..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Seleccione archivo(s) fuente TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Procesando datos..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Ningun dato puede ser descargado. Intente de nuevo después." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Número de Catálogo: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Configuración de Satélites" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Actualice las listas TLE desde el internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Actualizaciones" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Actualizar desde fuentes en Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Actualizar datos satelitales desde fuentes de internet" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Última actualización:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" +"Al actualizar, añadir todos los satélites nuevos de fuente(s) seleccionada(s)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Al actualizar, eliminar los satélites que ya no estén enlistados en las " +"fuentes de actualización." + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Frecuencia de actualización (horas):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Etiquetas" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Altura de fuente de la etiqueta (píxeles):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Líneas orbitales" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Número de segmentos utilizados para trazar la línea" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Número de segmentos:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Duración de un único segmento en segundos" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Longitud del segmento (seg):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Número de segmentos utilizados para trazar cada fin de la línea" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Longitud del desvanecimiento:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Reestablecer configuración por defecto" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" -msgstr "Salvar configuración como por defecto" +msgstr "Guardar configuración como por defecto" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Configuración" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Haga doble clic en un satélite para comenzar a seguirlo." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Añadir mas satélites" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Quitar los satélites seleccionados" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Guardar cambios" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Número de catálogo:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Mostrar satelite(s) seleccionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Mostrados" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Mostrar linea(s) de órbita para satélite(s) seleccionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Órbita" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Número de catálogo:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "No actualizar (o eliminar al actualizar) los satélites seleccionados" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "No actualizar" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Descripción:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Grupos:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Lista de grupos separados por coma" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Datos TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Datos de elementos orbitales NORAD de dos lineas" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Quitar los satélites seleccionados" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Añadir mas satélites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Conjunto TLE:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Guardar cambios" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Los satélites en la lista de fuentes marcadas automáticamente se añadirán en " +"la siguiente actualización si aún no están en la colección." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5726,15 +6055,15 @@ "Introduzca o edite el URL del la fuente seleccionada. Los cambios se guardan " "al presionar Intro." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Añadir fuente nueva" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Remover fuente seleccionada" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Fuentes" @@ -5770,10 +6099,28 @@ msgid "Discard" msgstr "Descartar" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Control de telescopio" +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 +msgid "" +"This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " +"computerized mount (a \"GoTo telescope\")." +msgstr "" +"Este complemento permite a Stellarium enviar \"montones\" de mensajes a un " +"telescopio en un montaje computarizado (un telescopio \"dirigible\")" + +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 +#, qt-format +msgid "Move telescope #%1 to selected object" +msgstr "Mover el telescopio #%1 a el objecto seleccionado" + +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 +#, qt-format +msgid "Move telescope #%1 to the point currently in the center of the screen" +msgstr "Mover el telescopio #%1 a el punto en el centro de la pantalla" + #: plugins/TelescopeControl/src/gui/TelescopeConfigurationDialog.cpp:150 msgid "Add New Telescope" msgstr "Añadir nuevo telescopio" @@ -6106,6 +6453,10 @@ msgid "Up to ten decimal values in degrees of arc, separated with commas" msgstr "Hasta diez valores decimales en grados de arco, separados por comas" +#: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:516 +msgid "OK" +msgstr "Aceptar" + #: plugins/TelescopeControl/src/ui_telescopeDialog.h:394 msgid "Telescopes Controlled" msgstr "Telescopios Controlados" @@ -6176,62 +6527,62 @@ "información." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Enero" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Febrero" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Marzo" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Abril" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "mayo" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Junio" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Julio" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Agosto" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Septiembre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Octubre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Noviembre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Diciembre" @@ -6391,7 +6742,7 @@ "mostrados en la barra inferior." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Formato de presentación de hora" @@ -6409,7 +6760,7 @@ msgstr "Formato de 24 horas" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Formato de fecha" @@ -6425,11 +6776,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-aaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Interfaz de usuario en modo texto" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6437,144 +6788,144 @@ "Complemento de implementación del Interfaz de Usuario en modo Texto serie " "0.9.x, utilizado en sistemas planetarios" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Cuerpo del Sistema Solar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Hora/fecha actual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Establecer zona horaria" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Días clave" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Establecer hora/fecha de inicio" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "sistema" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "prestablecer" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "aaaammdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Idioma" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Mostrar estrellas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Colores" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Nombres de nebulosas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Indicadores de nebulosa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Línea del plano galáctico" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efectos" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Zoom manual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Multiplicador de magnitud de escala" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intensidad de la vía lactea" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Frecuencia de la etiqueta de nebulosa:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Duración del zoom:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Temporizador del cursor:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Establecer el paisaje determina la ubicación" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Ejecutar script local" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Dejar de ejecutar el script" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Script en CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administración" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Cargar configuración por defecto" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Guardar la configuración actual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Apagar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[sin nodo IUT]" @@ -6611,16 +6962,16 @@ "proceso." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Consultar el MPC %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Sólo un resultado será devuelto si la consulta es exitosa." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6628,7 +6979,7 @@ "Ambos cometas y asteroides pueden ser identificados con su número, nombre " "(en inglés) o su designación provisional." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6818,40 +7169,45 @@ msgid "Solar System" msgstr "Sistema Solar" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Supernovas Históricas" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Un complemento que muestra algunas supernovas históricas más brillantes que " -"una magnitud visual de 10." +"Este complemento permite ver algunas supernovas históricas brillantes." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Tipo de supernova: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Brillo máximo: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Complemento de Supernovas Históricas" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " msgstr "" -"Un complemento que muestra algunas supernovas históricas más brillantes que " -"una magnitud visual de 10: " +"Este complemento permite ver algunas supernovas históricas brillantes: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." +msgstr "Todas estas supernovas son brillantes a su pico %1 de brillo." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Curvas de luz" @@ -6873,7 +7229,7 @@ msgstr "Agradecimientos" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6889,14 +7245,14 @@ msgstr "Instituto para Física Teórica y Experimental" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "en Russia" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6906,8 +7262,9 @@ "historia y su formato de catálogo, puede %1obtener información aquí%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Siguiente actualización: %1 días" @@ -6925,29 +7282,118 @@ msgstr "Configuración del complemento de Supernovas Históricas" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Actualizar catálogo desde Internet" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Actualizar desde fuentes en Internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Frecuencia de actualización (días):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[información de la siguiente actualización]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Novas Brillantes" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" +"Un complemento que muestra algunas novas brillantes en la galaxia Vía Láctea." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Tipo: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Complemento de Novas Brillantes" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"Puede encontrar novas a través de la herramienta de búsqueda introduciendo " +"la designación de la nova o su nombre común (e.g. 'Nova Cygni 1975' ó 'V1500 " +"Cyg')." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"Este complemento usa un modelo muy simple para el cálculo de curvas de luz " +"para las estrellas novas." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Este modelo se basa en tiempo para decaimiento de magnitudes %1 desde el " +"valor máximo, donde %1 es 2, 3, 6, y 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Si una nova no tiene valores para el decaimiento de magnitud entonces este " +"complemento usará valores generalizados para éste." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Si quiere leer la información completa acerca de este complemento, su " +"historia y su formato de catálogo, puede %1obtener información aquí%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Novas actualizadas" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Configuración de Novas Brillantes" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Configuración de Complemento de Novas Brillantes" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quásares" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6966,11 +7412,11 @@ msgid "Z (redshift): %1" msgstr "Z (desplazamiento al rojo): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Complemento de Cuásares" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6980,40 +7426,50 @@ "brillantes que una magnitud visual de 16. Un catálogo de cuásares compilado " "de \"Quasars and Active Galactic Nuclei\" (13th Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Cuásares actualizados" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Configuración de Cuásares" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Configuración del Complemento de Cuásares" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Modo de vista para cuásares" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Ajustes para cuásares" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Trazar todos los cuásares sin etiquetas" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Activar la vista de dispersión de cuásares" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Habilitar muestra al inicio" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Mostrar el botón de cuásares en la barra de herramientas" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Púlsares" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7140,11 +7596,11 @@ "estrella de neutrones con emisión pulsada térmica de rayos X pero sin " "emisión de radio detectable" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Complemento de Púlsares" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7155,67 +7611,71 @@ "Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Nota" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "los identificadores de púlsar tienen el prefijo 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Agradecimiento" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Observatorio de Radio Astronomía de Pushchino" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Observatorio Radioastronómico de Nancay" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "en Francia" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Los púlsares están actualizados" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Configuración de Púlsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Configuración del Complemento de Púlsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Modo de vista para púlsares" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Ajustes para púlsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Trazar todos los cuásares sin etiquetas" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Activar la vista de dispersión de púlsares" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Mostrar el botón de púlsares en la barra de herramientas" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplanetas" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7224,71 +7684,71 @@ "de los exoplanetas derivan de 'Extrasolar Planets Encyclopaedia' en " "exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metalicidad" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Masa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Radio" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Temperatura efectiva: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplaneta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Periodo" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "días" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Júp" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Eje Semi-Mayor" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "UA" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Excentricidad" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inclinación" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Distancia Angular" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Año de descubrimiento" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Complemento de Exoplanetas" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7298,7 +7758,7 @@ "de los exoplanetas derivan de \"%1The Extrasolar Planets Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7307,42 +7767,133 @@ "Si quiere leer la información completa acerca de este complemento, su " "historia y su formato de catálogo puede %1obtener información aquí%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" +"Sitios web profesionales generales relevantes a planetas extrasolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanetas: una versión interactiva de XKCD No. 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK ( La cacería de exolunas con Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Exoplanetas en sistemas binarios y múltiples (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Nombrar exoplanetas (UAI)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" +"Algunos astrónomos y grupos activos al estudio de planetas extrasolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "actualización: 16 abril 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "El Explorador de Datos de Exoplanetas" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "El Buscador de Planetas Angloaustraliano" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Programas de Búsqueda de Planetas Extrasolares de Ginebra" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Noticias de Interferometría Óptica de Larga Línea de Base)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "Programa de Exploración de Exoplanetas de la NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Planetas púlsar" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "El Archivo de Exoplanetas de la NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "Comisión UAI 53: Planetas Extrasolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "La Galería de la Zona Habitable" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - La Búsqueda para Otra Tierra" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Catálogo Abierto de Exoplanetas" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "El Catálogo de Exoplanetas Habitables" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Exoplanetas actualizados" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Configuración de Exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Configuración del Complemento de Exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Actualizar datos de exoplanetas desde Internet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Modo de visualización para exoplanetas" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Configuración para exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Trazar todos los sistemas con exoplanetas sin etiquetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Activar la visualización de la distribución de exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Muestra exoplanetas desde su descubrimiento" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Activar la línea del tiempo de descubrimiento de exoplanetas" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Mostrar botón de exoplanetas en la barra de herramientas" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Info" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Análisis de observabilidad" @@ -7366,185 +7917,179 @@ "configuración de este complemento se da una explicación de la información " "mostrada." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "ene." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "feb." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "mar." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "abr." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "mayo" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "jun." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "jul." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "ago." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "sept." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "oct." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "nov." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "dic." -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Ocaso a %1 (en %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Salió a %1 (hace %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Se ocultó a %1 (hace %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Sale a %1 (en %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Circumpolar." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Sin salida." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Culmina a %1 (en %2) a %3 grad." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Culminó a %1 (hace %2) a %3 grad." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "La fuente no es observable." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Sin salida/ocaso cósmico ni acrónico" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Elongación máxima: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Máxima separación del Sol: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (a %1 grad.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Salida/ocaso acrónico" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Sin salida/ocaso acrónico" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Salida/ocaso cósmico" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Sin salida/ocaso cósmico" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Observable durante todo el año." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "No es observable en la noche oscura." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Noches sobre el horizonte " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "HOY:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "ESTE AÑO:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Luna Llena anterior: %1 %2 a %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Siguiente Luna Llena: %1 %2 a %3:%4. " @@ -7660,6 +8205,26 @@ msgid "Largest Sun separation:" msgstr "Máxima separación del Sol:" +#: plugins/Observability/src/gui/ObservabilityDialog.cpp:110 +msgid "" +"Happens when the angular separation between the Sun and the celestial object " +"are maximum. In most cases, this is equivalent to say that the Equatorial " +"longitudes of the Sun and the object differ by 180 degrees, so the Sun is in " +"opposition to the object. When an object is at its maximum possible angular " +"separation from the Sun (no matter if it is a planet or a star), it " +"culminates roughly at midnight, and on the darkest possible area of the Sky " +"at that declination. Hence, that is the 'best' night to observe a particular " +"object." +msgstr "" +"Sucede cuando la distancia angular entre el Sol y el objeto celeste es " +"máxima. En la mayoría de los casos, esto es equivalente a decir que la " +"longitud ecuatorial del Sol difiere 180 grados de la del objeto, por lo que " +"el Sol y el objeto están en oposición. Cuando el objeto está a su máxima " +"distancia angular del Sol (no importa si el objeto está fijo o es un " +"planeta), culmina aproximadamente a medianoche, y en la región más oscura " +"del cielo. Por lo tanto, la noche cuando un objeto está en oposición es la " +"\"mejor\" noche para observarlo." + #: plugins/Observability/src/gui/ObservabilityDialog.cpp:111 msgid "Nights with source above horizon:" msgstr "Noches con la fuente sobre el horizonte:" @@ -7918,6 +8483,9 @@ #~ msgid "Planet Trails" #~ msgstr "Recorrido de los planetas" +#~ msgid "Nebulas" +#~ msgstr "Nebulosas" + #~ msgid "10" #~ msgstr "10" @@ -7966,6 +8534,9 @@ #~ msgid "Startup direction of view: xxxx" #~ msgstr "Dirección de la vista al inicio: xxxx" +#~ msgid "Nebulas background images" +#~ msgstr "Imágenes de fondo de nebulosas" + #~ msgid "Sky Language: " #~ msgstr "Lenguaje Estelar " @@ -8061,6 +8632,12 @@ #~ msgstr "" #~ "Campo de visión actual proporcionado por esa combinación de ocular/telescopio" +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Actualice las listas TLE desde el internet" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Lista de grupos separados por coma" + #~ msgid "" #~ "Support is provided via the Launchpad website. Be sure to put \"Satellites " #~ "plugin\" in the subject when posting." @@ -8068,6 +8645,13 @@ #~ "El soporte se provee a través del sitio web de Lunchpad. Asegúrese escribir " #~ "\"Complemento satelital\" en el asunto del mensaje." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Actualizados %1/%2 satélites; %3 no encontrados" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Datos de elementos orbitales NORAD de dos lineas" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -8135,6 +8719,9 @@ #~ msgid "millisecond pulsar" #~ msgstr "púlsar milisegundo" +#~ msgid "TLE data:" +#~ msgstr "Datos TLE:" + #, qt-format #~ msgid "Obliquity (of date): %1" #~ msgstr "Oblicuidad (de fecha): %1" @@ -8208,10 +8795,30 @@ #~ msgid "Display the equatorial position (of date)" #~ msgstr "Muestra la posición ecuatorial (de fecha)" +#~ msgid "Display mode for pulsars" +#~ msgstr "Modo de vista para púlsares" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Un complemento que muestra algunas supernovas históricas más brillantes que " +#~ "una magnitud visual de 10." + +#~ msgid "Display mode for quasars" +#~ msgstr "Modo de vista para cuásares" + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "Un Quíntuple eclipse de Deimos 2027" #~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Un complemento que muestra algunas supernovas históricas más brillantes que " +#~ "una magnitud visual de 10: " + +#~ msgid "" #~ "Phobos occultations of Earth are common, as are occultations of Jupiter. But " #~ "Occultations of both on the same day are very rare. Here's one that takes " #~ "place 1/23/2048. In real speed." @@ -8236,6 +8843,11 @@ #~ "Fobos, y a como Fobos emerge desde el sol éste pasa a través de la sombra de " #~ "Marte y desaparece." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Salvapantalla de varios sucesos en el Sistema Solar. ¡171 eventos en total!" + #~ msgid "A tour via western constellations." #~ msgstr "Un paseo por las constelaciones occidentales." diff -Nru stellarium-0.12.1/po/stellarium/et.po stellarium-0.12.4/po/stellarium/et.po --- stellarium-0.12.1/po/stellarium/et.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/et.po 2013-09-23 06:20:13.000000000 +0000 @@ -9,29 +9,29 @@ msgstr "" "Project-Id-Version: po_stellarium-et\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-01-14 15:35+0000\n" "Last-Translator: Merike \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:13+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridiaan" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvaator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horisont" @@ -39,46 +39,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Asukoht: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tüüp: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Tähesuurus: %1" @@ -88,114 +88,114 @@ msgid "Size: %1" msgstr "Suurus: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaktika" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Hajusparv" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kerasparv" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Udukogu" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetaarudu" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Udukoguga täheparv" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Teadmata" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Dokumenteerimata tüüp" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absoluutne tähesuurus: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Kaugus: %1 aü" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Näiv läbimõõt: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -206,7 +206,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -221,47 +221,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektritüüp: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Kaugus: %1 valgusaastat" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallaks: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -269,14 +344,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -285,14 +360,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -300,7 +375,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -308,14 +383,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -324,14 +399,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -339,25 +414,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -366,14 +441,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -381,42 +456,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -424,7 +499,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -432,7 +507,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -441,7 +516,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -451,45 +526,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -658,52 +750,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Vali kuvatõmmiste kataloog" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Käivitamisel kasutatav vaatenurk: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Käivitamisel kasutatava vaatesuuna asimuut/kõrgus: %1 / %2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autorid" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Litsents" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Töötav skript: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Töötav skript: [puudub]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -711,16 +804,16 @@ "Uute tähekataloogide alla laadimine õnnestus!\n" "Nende kuvamiseks taaskäivita Stellarium." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Kataloogi hankimine %1 %2st" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -729,7 +822,7 @@ "Laaditakse alla %1...\n" "(Võid selle akna sulgeda.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -740,7 +833,7 @@ "Tähtede arv: %2 miljonit\n" "Tähesuuruste vahemik: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -749,11 +842,11 @@ "Viga %1 alla laadimisel:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Kontrollitakse faili terviklikkust..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -763,115 +856,123 @@ "Fail on vigane." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1038,49 +1139,53 @@ msgid "OSX Developer: %1" msgstr "OSX'i arendaja: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Skripti konsoolaken" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Aknad" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Tühik" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1 m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Kirjeldus puudub" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Keela meteoorid" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Tavaline sagedus" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Tavapärane Perseiidide sagedus" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Erandlik Leoniidide sagedus" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Kõrgeim esinenud sagedus (1966. aasta Leoniidid)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Uus asukoht" @@ -1183,19 +1288,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1211,30 +1316,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Süsteem ei toeta OpenGL'i" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Päike" @@ -1251,12 +1362,12 @@ msgstr "Maa" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Kuu" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marss" @@ -1354,7 +1465,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1652,239 +1763,268 @@ msgstr "Innuiidi" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korea" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maoori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navaho" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Põhjala" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polüneesia" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "saami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Lääne" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1894,1502 +2034,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Suurbritannia" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Prantsuse Guajaana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Gröönimaa" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Ekvatoriaal-Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Kreeka" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hongkong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Horvaatia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Ungari" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indoneesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Iirimaa" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Iisrael" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Iraak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iraan" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Island" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Itaalia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordaania" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Jaapan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Keenia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Korea Vabariik" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuveit" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kaimanisaared" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kasahstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Liibanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Libeeria" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Leedu" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luksemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Läti" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maroko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshalli saared" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedoonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Birma" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongoolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritaania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldiivid" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaisia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mosambiik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namiibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Uus-Kaledoonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Holland" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norra" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Uus-Meremaa" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peruu" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Prantsuse Polüneesia" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Paapua Uus-Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipiinid" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Kuupäev ja kellaaeg" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Lisa 1 täheööpäev" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Lisa 1 tähenädal" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Lisa 1 päikeseööpäev" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Lisa 1 päikesetund" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Lisa 1 päikesenädal" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Aeglustada skripti arvutamise kiirust" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Vähenda aja kiirust" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Vähendada aja kulgu (pisut)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Kiirendada skripti aervutamise kiirust" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Suurenda aja kiirust" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Suurendada aja kulgu (pisut)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Kasuta hetkeaega" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Tavaline skripti arvutamise kiirus" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Kasuta tavalist aja kiirust" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Peata aeg" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Lahuta 1 täheööpäev" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Lahuta 1 tähenädal" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Lahuta 1 päikeseööpäev" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Lahuta 1 päikesetund" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Lahuta 1 päikesenädal" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Vaate valikud" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Peegelda horisontaalselt" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Täisekraani vaade" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfäär" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Horisondiline koordinaatvõrk" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Ilmakaared" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Tähtkujupildid" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Tähtkujude piirid" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Tähtkujude nimed" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Tähtkujude nimikujutised" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Udukogude taustapildid" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Taevaekvaator" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatoriaalne koordinaatvõrk" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatoriaalne J2000 koordinaatvõrk" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Udu" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktikate võrgustik" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Maapind" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridiaan" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Udukogud" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Öö vaade" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planeetide orbiidid" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planeedi jäljed" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Tähed" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Peegelda vertikaalselt" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Varia" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Peida automaatselt horisontaalne nupuriba" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Peida automaatselt vertikaalne nupuriba" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Välju" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Salvesta kuvatõmmis" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Asimutaal- ja ekvatoriaalmonteeringu lülitamine" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Lülita kasutajaliidese nähtavust" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Liikumine ja valik" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Liiguta valitud taevakeha keskele" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Määra valitud planeet koduplaneediks" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Jälgi taevakeha" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Suurenda valitud taevakeha ja selle ümbrust" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Vähenda valitud taevakeha ja selle ümbrust" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skript" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Seadete aken" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Kuupäeva/kellaaja aken" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Abi aken" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Asukoha aken" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Otsinguaken" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Taeva ja vaate valikute aken" @@ -3415,7 +3591,7 @@ msgstr "Värskenda" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Asukoht" @@ -3431,10 +3607,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Kustuta" @@ -3443,7 +3619,7 @@ msgstr "Lisa nimekirja" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Laiuskraad" @@ -3456,12 +3632,12 @@ "12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Pikkuskraad" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Kõrgus" @@ -3485,363 +3661,407 @@ msgid "Planet:" msgstr "Planeet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Otsi taevakeha" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "Otsetõus/kääne (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Valikud" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Valikud" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Vaade" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Taevas" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Märgistus" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Maastik" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Tähetarkus" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Nimed ja markerid" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planeedid" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planeedid ja kaaslased" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Planeetide kuvamine" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Planeetide markerite kuvamine" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Planeetide orbiitide kuvamine" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Valguskiiruse simuleerimine" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Kuu suuruse muutmine" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Atmosfääri kuvamine" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absoluutskaala" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Suhteline skaala" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Vilkumine" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Heleda taevakeha kõrval olevad tähed muudetakse tuhmimaks" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Silma dünaamiline kohanemine" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Meteoorid" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Tähtkujud" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Joonte kuvamine" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Nimede kuvamine" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Piiride kuvamine" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Piltide kuvamine" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Taevasfäär" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projektsioon" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Maastike lisamine ja eemaldamine..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Näita maapinda" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Näita udu" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Kasuta seotud planeeti ja asukohta" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Kasuta vaikimisi seda maastikku" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Kasuta vaikimisi seda taevakultuuri" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Nähtav" @@ -3896,7 +4116,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Vaatesuund Stellariumi käivitamisel" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Valitud taevakeha teave" @@ -3912,11 +4132,8 @@ msgid "Display no information" msgstr "Ära näita teavet" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ära kuva" @@ -4058,7 +4275,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Käivitumisel kasutatav kuupäev ja kellaaeg" @@ -4070,19 +4287,23 @@ msgid "Other:" msgstr "Muu" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "kasuta praegust" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Stellarium kasutab käivitumisel süsteemi kella kuupäeva ja kellaaega" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Süsteemi kuupäev ja kellaaeg" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4090,23 +4311,23 @@ "Stellariumi käivitumisel kasutatakse simulatsiooni ajaks järgmist sama " "kellaaega" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Süsteemi kuupäev kell:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetaariumi valikud" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4114,51 +4335,51 @@ "Sfäärilist peegelmoonutust kasutatakse odavamates planetaariumites, kus " "Stellarium projekteeritakse sfäärilisele peeglile." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Sfääriline peegelmoonutus" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Kata vaade väljaspool keskset ringi" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Ãœmmargune vaateava" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Ãœhe tähtkuju klikkimisel peida teised" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Vali üks tähtkuju" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Joonda nimed horisondiga paralleelselt" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Raskusjõule alluvad nimed" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Lülita vertikaalse ja horisontaalse peegeldamisnupu kuvamist" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Peegeldamisnuppude kuvamine" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4166,92 +4387,98 @@ "Lubamisel taastab \"automaatse vähendamise\" kombinatsioon ka esialgse " "vaatesuuna" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automaatne vähendamine taastab esialgse vaatesuuna" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Kuvatõmmised" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Kuvatõmmiste kataloog" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Vastandvärvid" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Tähekataloogi uuendused" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klõpsa allalaadimiseks" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Veel suurema hulga tähtede vaatamiseks laadi see fail alla" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Taasalusta allalaadimist" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Proovi uuesti" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Peata allalaadimine. Saad seda alati taasalustada." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Loobu" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Sulge aken, kui skript töötab" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Käivita valitud skript" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Peata skript" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Laadida programmi käivitamisel" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "seadista" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Peamised" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Info" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Liikumine" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Tööriistad" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Lisandid" @@ -4421,176 +4648,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4662,64 +4889,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4727,7 +4959,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4738,14 +4970,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4754,305 +4986,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelliidid" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5060,25 +5361,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5086,17 +5387,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5104,41 +5405,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5146,338 +5449,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5513,22 +5859,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskoobi juhtimine" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5911,62 +6257,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6120,7 +6466,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6138,7 +6484,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6154,154 +6500,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Keel" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Värvid" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efektid" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6334,22 +6680,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6518,36 +6864,43 @@ msgid "Solar System" msgstr "Päikesesüsteem" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6565,7 +6918,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6579,14 +6932,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6594,8 +6947,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6613,29 +6967,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kvasarid" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6651,51 +7082,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6815,11 +7256,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6827,137 +7268,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "a.ü." -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6965,49 +7410,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7023,185 +7557,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7537,6 +8065,9 @@ #~ msgid "USB Script: " #~ msgstr "USB skript: " +#~ msgid "Nebulas" +#~ msgstr "Udukogud" + #~ msgid "Planets labels" #~ msgstr "Planeetide nimed" @@ -7579,6 +8110,9 @@ #~ msgid "Correct for light travel time: " #~ msgstr "Paranda valguse levimisaja suhtes: " +#~ msgid "Nebulas background images" +#~ msgstr "Udukogude taustapildid" + #~ msgid "Form" #~ msgstr "Vorming" diff -Nru stellarium-0.12.1/po/stellarium/eu.po stellarium-0.12.4/po/stellarium/eu.po --- stellarium-0.12.1/po/stellarium/eu.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/eu.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-02-23 14:06+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-05-02 19:50+0000\n" "Last-Translator: Asier Iturralde Sarasola \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:11+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:45+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridianoa" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekuatorea" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Zerumuga" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Galaxia-planoa" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Egilea: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Kokalekua: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Mota: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitudea: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Neurria: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxia" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Kumulu irekia" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kumulu globularra" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebulosa planetarioa" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "Nebulosa iluna" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Nebulosarekin loturiko kumulua" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Ezezaguna" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Dokumentatu gabeko mota" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitude absolutua: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Ekliptika topozentrikoa (datarena): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Zeihartasuna (datarena, Lurrarentzat): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distantzia: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distantzia: %1UA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Itxurazko diametroa: %1, eraztunekin: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Itxurazko diametroa: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Periodo siderala: %1 egun (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Egun siderala: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Batez besteko eguzki-eguna: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Fase-angelua: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongazioa: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fasea: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Argiztatuta: % %1" @@ -204,7 +204,7 @@ msgstr "Behin-behineko izendapena: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "izarra" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Itxurazko magnitudea: %1 (itzaltzearen arabera)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "izar bitarra" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitudea: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Mota espektrala: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distantzia: %1 Argi Urte" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralajea: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Espazio-ontzia" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Modu lehenetsian erabilia." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Errorea" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -655,52 +747,53 @@ msgid "Found" msgstr "Aurkitua" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Hautatu pantaila-argazkien karpeta" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Hasierako ikuseremua: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Hasierako ikuspuntua Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Egileak" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontaktua" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Egilea" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lizentzia" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Scripta exekutatzen: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Scripta exekutatzen: [bat ere ez]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -708,16 +801,16 @@ "Izar-katalogo berrien deskarga bukatu da!\n" "Berrabiarazi Stellarium bistaratzeko." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Eskuragarri zeuden izar-katalogo guztiak instalatu dira." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Eskuratu katalogoa %2tik %1" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -726,7 +819,7 @@ "%1 deskargatzen...\n" "(Leiho hau itxi dezakezu.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -737,7 +830,7 @@ "Izar kopurua: %2 Milioi\n" "Magnitude tartea: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -746,11 +839,11 @@ "Errorea %1 deskargatzean:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Fitxategiaren osotasuna egiaztatzen..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -760,115 +853,123 @@ "Fitxategia hondatuta dago." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Noren algoritmoa:" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) eta Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller eta Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel eta Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison eta Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson eta Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson eta Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel eta Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze eta Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson eta Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus eta Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck eta Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison eta Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak eta Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1040,49 +1141,53 @@ msgid "OSX Developer: %1" msgstr "OSX Garatzailea: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Script kontsola leihoa" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Leihoak" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Espazioa" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "Kopiatu testua \t %1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Azalpenik ez" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Izar iheskorrik gabe" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Abiadura arrunta" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Perseiden agertze-tasa arrunta" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Leoniden ohiz kanpoko agertze-tasa" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Inozko agertze-tasarik handiena (1966ko Leonidak)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Kokaleku berria" @@ -1188,19 +1293,19 @@ msgid "starchart" msgstr "izar-karta" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad bilaketa errorea" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad bilaketa" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Estrasburgoko Unibertsitatea (Frantzia)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard Unibertsitatea (AEB)" @@ -1216,30 +1321,36 @@ msgid "Alternative shortcut" msgstr "Lasterbide alternatiboa" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Sistema honek ez du OpenGL onartzen" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Eguzkia" @@ -1256,12 +1367,12 @@ msgstr "Lurra" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Ilargia" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marte" @@ -1359,7 +1470,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturno" @@ -1657,193 +1768,222 @@ msgstr "Inuita" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korearra" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maoria" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajoa" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Nordikoa" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinesiarra" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Samia" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarania" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Mendebaldekoa" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Zuhaitzak" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Urakana" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Ozeanoa" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Paisaien itzulia" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Ilargi-eklipse partziala" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Ilargi-eklipse osoa" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Pantaila-babeslea" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Eguzki-eklipsea 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Abioko script-a" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiakoa" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Merkurioko egunsenti eta ilunabar hirukoitza" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Eklipse bikoitza Deimos-etik 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Eklipse bikoitza Deimos-etik 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Eklipsea Olinpo menditik 2068ko urt 10" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Lurra eta Jupiterren ezkutatzea 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Eguzki-sistema pantaila-babeslea" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Konstelazioen bira" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Eguzkia planeta desberdinetatik" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Lurraren ikuspegi onenak beste gorputzetatik" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Artizarraren iragatea" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analema" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Begiratu instalatutako paisaia bakoitzaren inguruan" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Ilargi-eklipse partzial bat erakusten duen script-a" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Ilargi-eklipse oso bat erakusten duen script-a" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Zeruan zeharreko bira mugagabe eta mantsoa, ausazko objektuak ikusiz" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1851,11 +1991,11 @@ "2009an gertaturiko eguzki-eklipse oso bat erakusten duen script-a " "(kokalekua=Rangpur, Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Abioan automatikoki exekutatzen den script-a" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1865,7 +2005,7 @@ "zeruko esferan marrazten duen lerroan aurkitzen diren konstelazioak dira " "hauek." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1873,30 +2013,30 @@ "Merkurioren orbita eta errotazioaren berezitasunak direla eta zenbait " "puntutan eguzkia 3 aldiz irten eta sartzen da Merkurioko egun bakarrean." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1906,1504 +2046,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Eguzki-sistemako hainbat gertaerarekin osatutako pantaila-babeslea. 171 " -"gertaera guztira!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Arabiar Emirerri Batuak" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua eta Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Angila" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Holandarren antillak" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antartika" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikar Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaijan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia-Herzegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgika" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamak" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvet Uhartea" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Bielorrusia" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Cocos Uharteak" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Kongoko Errepublika Demokratikoa" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Afrika Erdiko Errepublika" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Kongoko Errepublika" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Suitza" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Boli Kosta" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cook Uharteak" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Txile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Txina" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolonbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia eta Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Cabo Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Christmas Uhartea" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Zipre" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Txekiar Errepublika" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Alemania" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Danimarka" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominika" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominikar Errepublika" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Aljeria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egipto" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Mendebaldeko Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Espainia" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlandia" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falkland Uharteak" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Faroe Uharteak" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Frantzia" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Erresuma Batua" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guyana Frantsesa" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Groenlandia" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Ginea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadalupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Ekuatore Ginea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grezia" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Hegoaldeko Georgiak eta Hegoaldeko Sandwich uharteak" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Ginea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard eta McDonald Uharteak" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Kroazia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hungaria" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlanda" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Indiako Ozeanoko Britainiar Lurraldea" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islandia" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaika" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordania" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japonia" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgizistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kanbodia" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komoreak" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts eta Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Koreako Herri Errepublika Demokratikoa" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Koreako Errepublika" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kaiman Uharteak" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libano" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Santa Luzia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lituania" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxenburgo" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Letonia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libiako Arabiar Jamahiriya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maroko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavia" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshall Uharteak" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Mazedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Iparraldeko Mariana Uharteak" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinika" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Maurizio" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldivak" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexiko" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaysia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambike" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Kaledonia Berria" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk Uhartea" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nikaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Herbehereak" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norvegia" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Zeelanda Berria" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinesia Frantsesa" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Ginea Berria" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipinak" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polonia" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint-Pierre eta Mikelune" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palestinako Lurraldeak" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguai" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Reunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Errumania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Errusiar Federakundea" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudi Arabia" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Salomon Uharteak" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelleak" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Suedia" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Santa Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Eslovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard eta Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Eslovakia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leona" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tome eta Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Siriako Errepublika Arabiarra" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swazilandia" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks eta Caicos Uharteak" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Txad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Hegoaldeko Frantziar Lurraldeak" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailandia" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tajikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Ekialdeko Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turkia" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad eta Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Ameriketako Estatu Batuetako itsasoz haraindiko uharteak" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Ameriketako Estatu Batuak" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguai" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikano Hiriko Estatua" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent eta Grenadinak" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Birjina Uharte Britainiarrak" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Birjina Uharte Amerikarrak" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis eta Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Hegoafrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data eta ordua" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Gehitu izar-egun bat" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Gehitu izar-hilabete bat" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Gehitu izar-aste bat" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Gehitu izar-urte bat" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Gehitu mende sideral bat" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Gehitu eguzki-egun bat" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Gehitu eguzki-ordu bat" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Gehitu eguzki-aste bat" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Gehitu ilargi-hilabete bat" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Gehitu hilabete drakoniko bat" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Gehitu hilabete anomalistiko bat" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Gehitu batez besteko hilabete tropikal bat" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Gehitu urte drakoniko bat" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Gehitu batez besteko urte tropikal bat" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Gehitu batezbesteko mende tropikal bat" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Moteldu scriptaren exekuzio-abiadura" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Mantsotu denboraren abiadura" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Mantsotu denboraren abiadura (pixka bat)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Azkartu scriptaren exekuzio-abiadura" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Azkartu denboraren abiadura" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Azkartu denboraren abiadura (pixka bat)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pausatu script-aren exekuzioa" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Berrekin script-aren exekuzioa" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Ezarri uneko data eta ordua" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Ezarri script exekuzio-abiadura normala" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Ezarri denboraren abiadura arrunta" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Ezarri denbora abiadura zerora" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Gelditu script-aren exekuzioa" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Kendu izar-egun bat" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Kendu izar-hilabete bat" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Kendu izar-aste bat" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Kendu izar-urte bat" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Kendu mende sidereal bat" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Kendu eguzki-egun bat" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Kendu eguzki-ordu bat" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Kendu eguzki-aste bat" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Kendu ilargi-hilabete bat" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Kendu hilabete drakoniko bat" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Kendu hilabete anomalistiko bat" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Kendu batez besteko hilabete tropikal bat" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Kendu urte drakoniko bat" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Kendu batez besteko urte tropikal bat" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Kendu batezbesteko mende tropikal bat" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Bistaratze aukerak" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Ikuspegia horizontalki irauli" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Pantaila osoko modua" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Sareta azimutala" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Puntu kardinalak" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Konstelazioen irudiak" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Konstelazioen mugak" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Konstelazioen etiketak" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Konstelazio lerroak" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Nebulosen atzeko irudiak" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "J2000 sareta ekliptikoa" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika lerroa" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekuatore lerroa" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Sareta ekuatoriala" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "J2000 sareta ekuatoriala" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Lainoa" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Sareta galaktikoa" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galaxia-planoa" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Lurra" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Zerumuga lerroa" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridiano lerroa" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulosak" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Gau modua" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Planeten etiketak" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planeten orbitak" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planeten arrastoak" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Izarrak" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Izarren etiketak" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Ikuspegia bertikalki irauli" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Askotarikoak" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Ezkutatu automatikoki botoi barra horizontala" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Ezkutatu automatikoki botoi barra bertikala" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Joan etxera" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Irten" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Kopiatu hautatutako objektuaren informazioa arbelera" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Gorde pantaila-argazkia" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Aldatu montura ekuatorial eta azimutalaren artean" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Txandakatu GUI-aren ikusgarritasuna" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Mugimendua eta Hautapena" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Zentratu hautatutako objektuaren gainean" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Ezarri hautatutako planeta etxeko planeta bezala" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Jarraitu objektua" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Egin zoom hautatutako objektuan" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Txikiagotu zooma" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Angelu neurgailua" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Iparrorratzaren markak" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Erakutsi exoplanetak" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Exoplanetak konfigurazio leihoa" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Behagarritasuna" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Behagarritasunaren konfigurazio-leihoa" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Okularrak pluginaren konfigurazioa" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okular ikuspegia" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Okular laster-menua" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Irudi sentsorearen markoa" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad mira" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Pulsarren konfigurazio leihoa" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Quasarrak konfigurazio leihoa" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Sateliteen konfigurazio leihoa" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Sateliteen posizioak" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Sateliteen etiketak" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Supernoba historikoen konfigurazio leihoa" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Mugitu teleskopioa koordenatu jakin batzuetara" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skript-ak" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Erakutsi eta gerturatu Ilargia" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Konfigurazio leihoa" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Data/ordua leihoa" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Laguntza leihoa" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Kokaleku leihoa" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Bilaketa leihoa" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Lasterbideak leihoa" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Zeru eta ikuspegiaren aukera leihoa" @@ -3429,7 +3603,7 @@ msgstr "Freskatu" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Kokalekua" @@ -3445,10 +3619,10 @@ msgid "Return to default" msgstr "Itzuli lehenetsira" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Ezabatu" @@ -3457,7 +3631,7 @@ msgstr "Gehitu zerrendara" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitudea:" @@ -3470,12 +3644,12 @@ "sar ditzakezu balioak, adibidez: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitudea:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitudea:" @@ -3499,363 +3673,407 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Bilatu objektua" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Bilatu objektua edo posizioa" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Bayer izendapenentzako letra grekoak" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objektua" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "IZ/Dek (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posizioa" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "izenak ingelesez" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Bilatu zerrendan..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Zerrendak" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "SIMBAD lineako datu-base astronomikoa" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Hedatu bilaketa SIMBADekin" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Zerbitzaria:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Aukerak" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "izenak ingelesez" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Bilatu zerrendan..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Zerrendak" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Ikusi" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Zerua" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Markak" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Paisaia" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Izarren kondaira" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etiketak eta markatzaileak" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planetak" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planetak eta sateliteak" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Erakutsi planetak" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Erakutsi planeten adierazleak" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Erakutsi planeten orbitak" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulatu argiaren abiadura" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Ilargia eskalan" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Erakutsi atmosfera" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Argi kutsadura:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "presioa, tenperatura, itzaltze-koefizientea" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Errefrakzio/Itzaltze ezarpenak..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Eskala absolutua:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Eskala erlatiboa:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Esne Bidearen distira:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Dirdira:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Ilundu izar ahulak oso distiratsua den objektu bat ikusgai dagoenean" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Ikusmen egokitze dinamikoa" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Izar iheskorrak" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Konstelazioak" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Erakutsi lerroak" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Erakutsi etiketak" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Erakutsi mugak" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Erakutsi irudiak" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Irudien distira:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Zeruko esfera" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Erakutsi ekuatore lerroa" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Erakutsi meridiano lerroa" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Erakutsi zerumuga lerroa" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Erakutsi ekliptika lerroa" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Erakutsi galaxia-planoaren lerroa" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Proiekzioa" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Gehitu/kendu paisaiak..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Erakutsi lurra" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Erakutsi lainoa" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Erabili lotutako planeta eta posizioa" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Erabili paisaia hau lehenetsi bezala" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Erabili zeru-kultura hau lehenetsi bezala" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Ikusgai" @@ -3910,7 +4128,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Stellarium abiaraztean ikusiko duzun ikuspegiaren norabidea" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Hautatutako objektuaren informazioa" @@ -3926,11 +4144,8 @@ msgid "Display no information" msgstr "Ez erakutsi informaziorik" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Bat ere ez" @@ -4073,7 +4288,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Hasierako data eta ordua" @@ -4085,19 +4300,23 @@ msgid "Other:" msgstr "Bestelakoa:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "unekoa erabili" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Sistemaren data eta orduarekin abiarazten du Stellarium" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Sistemaren data eta ordua" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4105,23 +4324,23 @@ "Eguneko ordu hau ezartzen du simulazio ordu bezala Stellariumen hurrengo " "saioa abiaraztean" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Sistemaren data:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetario-aukerak" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4129,51 +4348,51 @@ "Ispilu esferikoaren distortsioa erabiltzen da Stellarium planetario sistema " "merke bateko ispilu esferikoan proiektatzean." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Ispilu esferikoaren distortsioa" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Ezkutatu ikuspegi nagusiaren zentroko zirkulutik kanpo dagoen guztia" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Disko leihoa" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Konstelazio batean klikatzean ezkutatu gainerakoak" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Hautatu konstelazio bakar bat" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Lerrokatu etiketak zerumugarekin" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Grabitate etiketak" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Txandakatu nebulosen atzeko planoak bistaratzea." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Erakutsi nebulosen atzeko planoa botoia" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Txandakatu irudiak bertikalki eta horizontalki iraultzeko botoiak." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Erakutsi iraultzeko botoiak" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4181,93 +4400,99 @@ "Gaituta badago, \"zoom-a txikiagotu automatikoki\" botoiak hasierako " "ikuspegiaren norabidea ezarriko du baita" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" "Zoom txikiagotze automatikoa hasierako ikuspegiaren norabidera itzultzen da" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Errendatu eguzkiaren itzalak" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Pantaila-argazkiak" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Pantaila-argazkien direkorioa" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Alderantzikatu koloreak" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Izar-katalogoen eguneraketak" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klikatu hemen deskargatzen hasteko" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Deskargatu fitxategi hau izar gehiago ikusteko" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Berrabiarazi deskarga" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Saiatu berriro" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Gelditu deskarga. Nahi izanez gero berriz berrabiarazi dezakezu" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Utzi" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Itxi leihoa scripta exekutatzerakoan" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Exekutatu hautatutako scripta:" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Gelditu exekutatzen ari den scripta" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Abioan kargatu" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "konfiguratu" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Nagusia" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informazioa" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Nabigazioa" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Tresnak" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Pluginak" @@ -4442,12 +4667,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Iparrorratzaren markak bistaratzen ditu zerumugan" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okularrak" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4457,164 +4682,164 @@ "(Handipena eta ikuseremua soilik simulatzen dira.) Sentsore marko bat eta " "Telrad mira bat ere erakutsi ditzake." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Mesedez, hautatu objektu bat okular ikuspegira aldatu aurretik" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Aurreko okularra" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Hurrengo okularra" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Hautatu &okularra" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Txandakatu &erretikulua" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Konfiguratu &okularrak" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Txandakatu &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Txandakatu &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Aurreko CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Hurrengo CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Hautatu CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Biratu CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Berrezarri biraketa" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "#%1 okularra" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "#%1 okularra: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Okularraren foku-distantzia: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Okularraren itxurazko ikuseremua: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "#%1 teleskopioa" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "#%1 teleskopioa: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Handipena: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Ikuseremua: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimentsioak: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "#%1 sentsorea" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "#%1 sentsorea: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskopioa" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Aurreko teleskopioa" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Hurrengo teleskopioa" @@ -4686,64 +4911,69 @@ msgid "Apparent field of view of the ocular" msgstr "Okularraren itxurazko ikuseremua" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Anizkoiztasuna: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Anizkoiztasuna: E/E" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Biraketa: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Prismatiko hauek eskaintzen duten handipena" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Prismatiko hauek eskaintzen duten benetako ikuseremua" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Okularrak plugina" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Bertsioa" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Ikuspegi orokorra" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4751,7 +4981,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4762,14 +4992,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4778,191 +5008,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Arazorik izaten baduzu, mesedez jakinarazi. Gozatu!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Laster-teklak" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[teklarik ez definituta]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Nabigazio laster-menua irekitzen du." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Gaitu objektu bat hautatuta badago soilik" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Eskalatu irudiaren zirkulua" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Tekla mapatzea" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Txandakatu okular ikuspegia:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Ireki nabigazioko laster-menua:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interfazea" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Pantailako kontrol panela" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Erabili gradu eta minutuak CCDaren ikuseremuarentzat" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Orokorra" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okularrak" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Gehitu" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Izena:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "Benetako ikuseremua:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Foku-distantzia:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Prismatikoak" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sentsoreak" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "x bereizmena (pixelak):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "y bereizmena (pixelak):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Txiparen zabalera (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Txiparen altuera (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Pixelaren zabalera (mikroiak):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Pixelaren altuera (mikroiak):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskopioak" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diametroa:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Irauli horizontalki" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Irauli bertikalki" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Honi buruz" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Sateliteak" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4970,88 +5209,148 @@ "Lurraren orbitan dauden satelite artifizialen posizioaren iragarpena NORAD " "TLE datuetan oinarrituta" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "satellites.json fitxategi zaharra jada ezin da erabili - fitxategi " "lehenetsia erabiltzen" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Katalogo zbk" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Nazioarteko izendatzailea" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "satelite artifiziala" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitudea (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Azpipuntua (Lat./Long.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME koordenatuak (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME abiadura (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Satelitea eta behatzailea eguzki-argitan daude." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satelitea ikusgai dago." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Satelitea eklipsatuta dago." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satelitea ez dago ikusgai" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Stellarium Sateliteak Plugin-a" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5059,32 +5358,32 @@ "Sateliteak plugin-ak Lurraren orbitan dauden satelite artifizialen posizioa " "iragartzen du." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Erabiltzaileentzako oharrak" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Sateliteak eta beren orbitak behatzailea Lurrean dagoenean soilik erakusten " "dira." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5096,7 +5395,7 @@ "bezala gordeko da. Hau erabiltzailearen datuen direktorioan aurkitu daiteke, " "\"modules/Satellites\" pean." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5105,11 +5404,11 @@ "edo osatugabeak edo akastunak dira." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "TLE datu eguneraketak" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5118,7 +5417,7 @@ "Sateliteak pluginak automatikoki deskargatu ditzake TLE datuak Internetetik, " "eta lehenetsia dago halaxe egitea datuak 72 ordu baino zaharragoak badira. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5129,7 +5428,7 @@ "fitxategi batetik egin dezakezu eguneraketa. Fitxategi honek Celestrak " "eguneraketen formatu berean egon behar du (ikusi %1 adibidetarako)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5137,11 +5436,11 @@ "Oharra: eguneraketa datuetan satelitearen izenak parentesi zuzenen [ " "] artean zerbait badu bukaeran, ezabatua izango da datuak erabili aurretik." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Satelite berriak gehitzen" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5153,11 +5452,11 @@ "Joan Sateliteak fitxara eta klikatu '+' botoia. Hautatu gehitu nahi " "d(it)uzun satelitea(k) eta sakatu \"gehitu\" botoia." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Ohar teknikoak" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5165,31 +5464,33 @@ "Posizioak SGP4 eta SDP4 metodoak erabiliz kalkulatzen dira, NORAD TLE datuak " "erabiliz sarrera bezala. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Ikusi %1dokumentu hau%2 xehetasunetarako." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Estekak" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5197,150 +5498,173 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Galderarik baduzu, %1erantzun bat lor dezakezu hemen%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Errore-txostenak egin daitezke %1hemen%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internet bidezko eguneraketak desgaituta" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Eguneratzen..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Hurrengo eguneraketarako: < minutu 1" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Hurrengo eguneraketarako: %1 minutu" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#, qt-format +msgid "Next update: %1 hours" +msgstr "Hurrengo eguneraketarako: %1 ordu" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 +msgid "Update error" +msgstr "Eguneraketa errorea" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Next update: %1 hours" -msgstr "Hurrengo eguneraketarako: %1 ordu" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 +msgid "[new source]" +msgstr "[iturburu berria]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 #: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 msgid "Update now" msgstr "Eguneratu orain" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 msgid "Update from files" msgstr "Eguneratu fitxategietatik" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 -msgid "Update error" -msgstr "Eguneraketa errorea" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 -#, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "%1/%2 satelite eguneratua(k); %3 falta d(ir)a" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 -msgid "[new source]" -msgstr "[iturburu berria]" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[orbitaren kalkulu errorea]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[berriki gehitutako guztiak]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[bistaratu gabeko guztiak]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[bistaratutako guztiak]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[guztiak]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Hautatu TLE eguneraketa fitxategia" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Datuak deskargatzen..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5348,175 +5672,195 @@ "Stellarium sateliteen datuak deskargatzen ari da eguneraketa iturburuetatik. " "Itxaron mesedez..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Hautatu TLE iturburu fitxategia(k)..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Datuak prozesatzen..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Ezin izan da daturik deskargatu. Saiatu berriro geroago." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Katalogo zenbakia: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Sateliteaken konfigurazioa" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Eguneratu TLE zerrendak Interneteko iturburuetatik" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Eguneratu Interneteko iturburuetatik" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Azken eguneraketa:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Eguneraketa maiztasuna (orduak):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Etiketak" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Etiketen letra-tamaina" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Orbita lerroak" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Lerroa marrazteko erabilitako segmentu kopurua" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Segmentu kopurua:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Segmentu bakun baten iraupena segundutan" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Segmentuaren luzera (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Lerroaren mutur bakoitza marrazteko erabilitako segmentu kopurua" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Berrezarri ezarpen lehenetsiak" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Gorde ezarpenak lehenetsi bezala" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Ezarpenak" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Gehitu satelite gehiago" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Kendu hautatutako sateliteak" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Gorde aldaketak" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Katalogo zenbakia:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Bistaratu hautatutako satelitea(k)" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Bistaratuta" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Bistaratu hautatutako satelite(ar)en orbita lerroa(k)" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Orbita" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Katalogo zenbakia:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Deskribapena:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Taldeak:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Komaz banatutako talde zerrenda" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE datuak:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Kendu hautatutako sateliteak" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Gehitu satelite gehiago" - -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Gorde aldaketak" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5524,15 +5868,15 @@ "Sartu edo editatu hautatutako iturburuaren URL-a. Aldaketak Enter sakatuz " "gordetzen dira." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Gehitu iturburu berria" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Kendu hautatutako iturburua" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Iturburuak" @@ -5568,11 +5912,11 @@ msgid "Discard" msgstr "Baztertu" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskopioaren kontrola" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5580,12 +5924,12 @@ "Plug-in honek muntaketa konputerizatua duen teleskopio bati (\"GoTo " "teleskopioa\") \"biraketa\" komandoak bidaltzea ahalbideratzen du." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Mugitu #%1 teleskopioa hautatutako objektura" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Mugitu #%1 teleskopioa une honetan pantailaren erdian dagoen puntura" @@ -5979,62 +6323,62 @@ "modua aldatzea ahalbideratzen du." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Urtarrila" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Otsaila" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Martxoa" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Apirila" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Maiatza" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Ekaina" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Uztaila" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Abuztua" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Iraila" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Urria" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Azaroa" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Abendua" @@ -6194,7 +6538,7 @@ "kontrolatzen dute." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Ordua bistaratzeko formatua" @@ -6212,7 +6556,7 @@ msgstr "24 orduko formatua" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Dataren bistaratze formatua" @@ -6228,11 +6572,11 @@ msgid "mm-dd-yyyy" msgstr "hh-ee-uuuu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Testu bidezko erabiltzaile interfazea" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6240,144 +6584,144 @@ "Planetario sistemetan erabiltzen den 0.9.x serieko testu bidezko " "erabiltzaile interfazearen plugina." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Eguzki-sistemako gorputza" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Uneko data/ordua" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Ezarri ordu-eremua" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Abioko data/ordua aurrezarpena" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "sistema" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "aurrezarpena" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "hheeuuuu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "eehhuuuu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "uuuuhhee" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Hizkuntza" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Erakutsi izarrak" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Koloreak" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Nebulosen izenak" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Nebulosen argibideak" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Galaxia-planoaren lerroa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efektuak" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Eskuzko zooma" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Magnitudea eskalatzeko biderkatzailea" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Esne Bidearen intentsitatea:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Nebulosen etiketen maiztasuna:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Zoomaren iraupena:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Kurtsorearen denbora-muga:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Paisaia ezartzeak kokapena ezartzen du" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Exekutatu script lokala" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Gelditu exekutatzen ari den script-a" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD script-a" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Kudeaketa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Kargatu konfigurazio lehenetsia" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Gorde uneko konfigurazioa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Itzali" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[TUI nodorik ez]" @@ -6413,16 +6757,16 @@ "bere online datubasean. Oraindik bukatu gabe dago." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Kontsultatu MPC-ren %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Emaitza bakar bat itzuliko da kontsulta arrakastatsua bada." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6430,7 +6774,7 @@ "Kometak eta asteroideak beren zenbaki, ingelesezko izen edo behin-behineko " "izendapenaren bidez identifika daitezke." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6610,36 +6954,43 @@ msgid "Solar System" msgstr "Eguzki-sistema" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Supernoba historikoak" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernoba" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Supernoba mota: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Supernoba historikoak plugina" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Argi-kurbak" @@ -6657,7 +7008,7 @@ msgstr "Eskertzak" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6673,14 +7024,14 @@ msgstr "Fisika teoriko eta esperimentaleko institutua" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "Errusian" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6688,8 +7039,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Hurrengo eguneraketa: %1 egun" @@ -6707,29 +7059,106 @@ msgstr "Supernoba historikoak pluginaren konfigurazioa" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Eguneratu katalogoa internetetik" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Eguneratu Interneteko iturburuetatik" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Eguneraketen maiztasuna (egunak):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[hurrengo eguneraketaren informazioa]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quasarrak" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6745,51 +7174,61 @@ msgid "Z (redshift): %1" msgstr "Z (gorriranzko lerrakuntza): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Quasarrak plugina" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Quasarrak eguneratuta dago" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Quasarrak konfigurazioa" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Quasarrak pluginaren konfigurazioa" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Quasarren bistaratze-modua" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Trazatu quasar guztiak etiketarik gabe" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsarrak" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6909,11 +7348,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Pulsarrak plugina" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6921,67 +7360,71 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Oharra" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "pulsarren identifikatzaileek 'PSR' aurrizkia dute" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Eskertzak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino irrati-astronomia behatokia" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Nancay irrati-astronomia behatokia" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "Frantzian" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsarrak eguneratuta dago" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Pulsarren konfigurazioa" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Pulsarrak pluginaren konfigurazioa" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Pulsarren bistaratze modua" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Trazatu pulsar guztiak labelik gabe" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplanetak" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -6989,71 +7432,71 @@ "Plugin honek exoplanetak dituzten izarren posizioak marrazten ditu. " "Exoplaneten datuak exoplanet.eu-ko 'Exoplaneten enziklopedia'-tik hartu dira." -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metalikotasuna" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Masa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Erradioa" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Tenperatura efektiboa: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplaneta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Periodoa" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "egun" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "UA" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Eszentrikotasuna" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inklinazioa" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Angelu-distantzia" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Aurkitutako urtea" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Exoplanetak plugina" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7063,49 +7506,138 @@ "Exoplaneten datuak \"%1Exoplaneten enziklopedia%2\"-tik hartu dira." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Exoplanetak eguneratuta dago" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Exoplanetak konfigurazioa" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Exoplanetak pluginaren konfigurazioa" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Eguneratu exoplaneten datuak internetetik" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Exoplanetak bistaratzeko modua" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7121,185 +7653,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Urt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Ots" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Api" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Mai" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Eka" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Uzt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Abu" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Ira" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Urr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Aza" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Abe" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Zirkunpolarra." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Iturburua ez da behagarria." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Elongaziorik handiena: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Urte osoan zehar ikusgai." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Ez dago ikusgai gau ilunean." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Gauak zerumugaren gainetik: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "GAUR:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "AURTEN:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7557,6 +8083,9 @@ #~ msgid "Zoom Duration: " #~ msgstr "Zoomaren iraupena: " +#~ msgid "Nebulas" +#~ msgstr "Nebulosak" + #~ msgid "Scripts " #~ msgstr "Scriptak " @@ -7587,6 +8116,9 @@ #~ msgid "Arrow down to load list." #~ msgstr "Zerrenda kargatzeko kurtsorearen beheko gezia." +#~ msgid "Nebulas background images" +#~ msgstr "Nebulosen atzeko irudiak" + #~ msgid "Form" #~ msgstr "Inprimakia" @@ -7775,6 +8307,19 @@ #~ msgid "Solar System Body: " #~ msgstr "Eguzki Sistemako Gorputza: " +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "%1/%2 satelite eguneratua(k); %3 falta d(ir)a" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Eguneratu TLE zerrendak Interneteko iturburuetatik" + +#~ msgid "TLE data:" +#~ msgstr "TLE datuak:" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Komaz banatutako talde zerrenda" + #~ msgid "Crosshairs" #~ msgstr "Erretikulua" @@ -7877,6 +8422,9 @@ #~ msgid "Additional info (Extra 3)" #~ msgstr "Informazio gehigarria (Estra 3)" +#~ msgid "Display mode for pulsars" +#~ msgstr "Pulsarren bistaratze modua" + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "Eklipse boskoitza Deimos-etik 2027" @@ -7885,6 +8433,12 @@ #~ "Artizarraren iragatea Sydneytik (Australia) 2012ko ekainaren 6an ikusi " #~ "bezala." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Eguzki-sistemako hainbat gertaerarekin osatutako pantaila-babeslea. 171 " +#~ "gertaera guztira!" + #~ msgid "A tour via western constellations." #~ msgstr "Mendebaldeko konstelazioetan zeharreko gida bat." @@ -7942,3 +8496,6 @@ #~ msgid "Edit Alternative Shortcut" #~ msgstr "Editatu lasterbide alternatiboa" + +#~ msgid "Display mode for quasars" +#~ msgstr "Quasarren bistaratze-modua" diff -Nru stellarium-0.12.1/po/stellarium/fa.po stellarium-0.12.4/po/stellarium/fa.po --- stellarium-0.12.1/po/stellarium/fa.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/fa.po 2013-09-23 06:20:13.000000000 +0000 @@ -8,29 +8,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-11-29 16:00+0000\n" "Last-Translator: Reza Babri \n" "Language-Team: American English \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:17+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:52+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "نصÙ‌النهار" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "دایرة البروج" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "استوا" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "اÙÙ‚" @@ -38,46 +38,46 @@ msgid "Galactic Plane" msgstr "صÙحه كهكشاني" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr ": نویسنده " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr ": محل " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "ØŒ %1 متر" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr ": سیاره " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "%1 : گونه" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "%1 : قدر" @@ -87,114 +87,114 @@ msgid "Size: %1" msgstr "%1 : اندازه" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "کهکشان" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "خوشهٔ باز" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "خوشۀ کروی" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "سحابی" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "سحابی سیاره ای" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "خوشهٔ همراه با سحابی" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ناشناخته" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "گونهٔ نامستند" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "%1 : قدر مطلق" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Ùاصله: %1 واحد نجومی (%2 کیلومتر)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "واحد نجومی %1 : Ùاصله" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "ستبرای نمودی: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "روز متوسط خورشیدی: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "زاویه Ùاز: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Ùاز: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -205,7 +205,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -220,47 +220,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "%1 : گونه Ø·ÛŒÙÛŒ" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "سال نوری %1 : Ùاصله" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "\"%1 : اختلا٠منظر" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Ùضاپیما" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -268,14 +343,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -284,14 +359,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -299,7 +374,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -307,14 +382,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -323,14 +398,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -338,25 +413,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -365,14 +440,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -380,42 +455,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -423,7 +498,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -431,7 +506,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -440,7 +515,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -450,45 +525,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "خطا" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -654,52 +746,53 @@ msgid "Found" msgstr "پیدا شد" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "آدرس ( ذخیرۀ ) عکس صÙحه را انتخاب کنید ." -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "%1%2 : میدان دید هنگام راه اندازی" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "%2/%1 : جهت دید ارتÙاع/سمت هنگام راه اندازی" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "نویسندگان‌" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "تماس" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "نویسنده" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "گواهی" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr ": اسکریپت در حال اجرا " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "[هیچ] : اسکریپت در حال اجرا" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -707,16 +800,16 @@ "بارگیری ستاره‌نامه‌های جدید تمام شد!\n" "برای نمایش آنها ØŒ استلاریوم را دوباره راه انداری کنید." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "زيج همه ستارگان نصب شد" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "بارگیری ستاره‌نامهٔ %1 از %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -725,7 +818,7 @@ "... %1 در حال بارگیری\n" "(می‌توانید این پنجره را ببندید)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -736,7 +829,7 @@ "میلیون %2 : شمار ستارگان\n" "%4 - %3 : حد قدر" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -745,11 +838,11 @@ ":%1 خطا در بارگیری\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "اعتبارسنجی یک‌پارچگی پرونده..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -759,115 +852,123 @@ "پرونده خراب است." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1036,49 +1137,53 @@ msgid "OSX Developer: %1" msgstr "OSX : %1توسعه دهنده" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "پنجره Ùرمان برنامه" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "پنجره‌ها" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Ùضا" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1متر" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "بدون شرح" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "بدون شهاب" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "میزان معمول" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "میزان استاندارد بارش شهابی برساوشی" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "میزان استثنایی بارش شهابی اسدی" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "بیشترین میزان تا کنون (سال1966 بارش شهابی اسدی )" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "مکان جدید" @@ -1181,19 +1286,19 @@ msgid "starchart" msgstr "نقشه ستارگان" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "دانشگاه استارزبورگ (Ùرانسه)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "دانشگاه هاروارد (آمريكا)" @@ -1209,30 +1314,36 @@ msgid "Alternative shortcut" msgstr "میانبر جایگزین" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "این سیستم OpenGL را پشتیبانی نمی‌کند." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "خورشید" @@ -1249,12 +1360,12 @@ msgstr "زمین" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "ماه" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "مریخ" @@ -1352,7 +1463,7 @@ msgstr "ادراستيا" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "زحل" @@ -1650,239 +1761,268 @@ msgstr "اسكيمويي" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "کره‌ای‌" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "آمريكاي غربي" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "نيوزلندي" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "سرخپوستي" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "نروژي" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "اقيانوسيه" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "اسكانديناويايي" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "آمريكاي جنوبي" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "غربی" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "درختان" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "گردباد" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "اقیانوس" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "روستا" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "بازديد مناظر" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "ماه‌گرÙتگي جزئي" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "ماه‌گرÙتگي كلي" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "محاÙظ صÙحه" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "خورشيدگرÙتگي 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "متن راه اندازی" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "منطقة البروج" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "نگاهي به مناظر نصب شده" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "آسمانگردي نامحدود Ùˆ آرام با مشاهده اتÙاقي اجرام" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1892,1502 +2032,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "اندووÙرا" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "امارات متحده عربی" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "اÙغانستان" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "آلبانی" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ارمنستان" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "جزایر آنتیل هلند" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "آنگولا" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "جنوبگان" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "آرژانتین" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "ساموای آمریکا" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "اتریش" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "استرالیا" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "آذربایجان" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "بوسني Ùˆ هرزگوين" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "باربادوس" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "بنگلادش" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "بلژیک" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "بورکیناÙاسو" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "بلغارستان" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "بحرین" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "بوروندی" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "بنین" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "برمودا" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "برونئی دارالسلام" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "بولیوی" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "برزیل" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "جزایر باهاما" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "بوتان" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "جزیره‌ی بووه" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "بوتسوانا" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "روسیه‌ سÙید" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "بلیز" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "کانادا" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "جمهوری خلق Ú©Ù†Ú¯Ùˆ" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "جمهوری Ø¢Ùریقای مرکزی" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "جمهوری Ú©Ù†Ú¯Ùˆ" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "سوئیس" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "ساحل عاج" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "جزایر Ú©ÙˆÚ©" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "شیلی" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "کامرون" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "چین" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "کلمبیا" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "کاستاریکا" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "صربستان Ùˆ مونته نگرو" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "کوبا" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Ú©Ùیپ ÙˆÙرد" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "جزیرۀ کریسمس" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "قبرس" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "جمهوری Ú†Ú©" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "آلمان" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "جیبوتی" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "دانمارك" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "دومینیک" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "جمهوری دومینیکن" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "الجزاير" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "اکوادور" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "استونی" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "مصر" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "صحرای غربی" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "اریتره" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "اسپانيا" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "اتیوپی" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Ùنلاند" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Ùیجی" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "جزایر Ùالکلند" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "میکرونزی" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "جزایر Ùارو" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Ùرانسه" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "گابون" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "انگلستان" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "گرانادا" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "گرجستان" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "گویان Ùرانسه" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "غنا" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "گرينلند" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "گامبیا" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "گینه" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "گوادلوپ" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "گینه استوایی" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "يونان" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "جورجیای جنوبی Ùˆ جزایر ساندویچ جنوبی" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "گواتمالا" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "گوام" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "گینه بیسائو" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "گویان" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "هنگ‌کنگ" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "هندوراس" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "کرواسی" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "هائیتی" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "مجارستان" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "اندونزی" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ايرلند" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "اسرائیل" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "هندوستان" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "مستعمرات انگلستان در اقيانوس هند" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "عراق" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "ایران" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ايسلند" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ايتاليا" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "جامائیکا" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "اÙردن" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "ژاپن" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "كنيا" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "قرقیزستان" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "کامبوج" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "کیریباتی" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "کومور" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "سنت کیتس Ùˆ نویس" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "کره شمالی" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "کره جنوبی" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "کویت" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "جزایر Ú©Ùیمَن" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "قزاقستان" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "لبنان" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "سن لوئيس" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "لیختن‌اشتاین" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "سریلانکا" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "لیبریا" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "لسوتو" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "لیتوانی" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "لوکزامبورگ" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "لتونی" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "جماهیر عربی لیبی" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "مراكش" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "موناکو" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "مولداوی" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "ماداگاسکار" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "جزایر مارشال" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "مقدونیه" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "مالي" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "میانمار" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "مغولستان" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "ماکائو" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "جزایر ماریان شمالی" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "مارتینیک" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "موریتانی" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "مالت" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "مالدیو" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "مالاوی" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "مكزيك" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "مالزی" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "موزامبیک" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "ناميبيا" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "کالدونی جدید" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "نيجر" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "جزیرۀ نورÙولک" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "نیجریه" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "نیکاراگوئه" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "هلند" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "نروژ" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "نپال" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "زلاند نو" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "عمان" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "پاناما" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "پرو" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "پلی‌نزی Ùرانسه" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "پاپوا گینه نو" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Ùیلیپین" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "پاکستان" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "لهستان" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "سنت پیر Ùˆ ماژلان" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "پورتوریکو" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Ùلسطين" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "پرتغال" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "پاراگوئه" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "قطر" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "ریونیون" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "رومانی" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "صربستان" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Ùدراسیون روسیه" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "رواندا" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "عربستان سعودی" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "جزایر سلیمان" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "سودان" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "سوئد" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "سنگاپور" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "سنت هلن" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "اسلوونی" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "اسلواکی" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "سیرالئون" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "سن مارینو" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "سنگال" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "سومالی" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "سورینام" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "السالوادور" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "جمهوری عربی سوریه" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "سوازیلند" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "چاد" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "سرزمین‌های جنوب Ùرانسه" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "توگو" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "تایلند" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "تاجیکستان" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "تیمور شرقی" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ترکمنستان" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "تونس" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "تونگا" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "ترکیه" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "ترینیداد Ùˆ توباگو" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "تووالو" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "تایوان" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "تانزانیا" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "اوکراین" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "اوگاندا" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "جزایر Ú©ÙˆÚ†Ú© دوراÙتاده‌ی ایالات متحده" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "ایالات متحده" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "اروگوئه" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "ازبکستان" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "سن وینسنت Ùˆ گرنادین" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "ونزوئلا" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "جزایر ویرجین بریتانیا" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "جزایر ویرجین ایالات متحده" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "ویتنام" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "والیس Ùˆ Ùیوتونا" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "ساموا" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "یمن" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "یوگوسلاوی" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Ø¢Ùریقای جنوبی" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "زامبیا" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "زیمبابوه" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "تاریخ Ùˆ زمان" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Û± روز نجومی" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "اÙزودن Û± Ù‡Ùته نجومی" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "اÙزودن Û± روز خورشیدی" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "اÙزودن Û± ساعت خورشیدی" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "اÙزودن Û± Ù‡Ùته خورشیدی" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "کند کردن اجرا" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "کاهش سرعت گذر زمان" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "کاهش سرعت گذر زمان ( اندکی )" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "تند کردن اجرا" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "اÙزودن سرعت گذر زمان" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "اÙزایش سرعت گذر زمان ( اندکی )" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "زمان حال" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "اجرا با سرعت عادی" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "تنظیم سرعت معمولی گذر زمان" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "توق٠زمان" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "کاستن Û± روز نجومی" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "کاستن Û± Ù‡Ùته نجومی" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "کاستن Û± روز خورشیدی" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "کاستن Û± ساعت خورشیدی" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "کاستن Û± Ù‡Ùته خورشیدی" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "تنظیمات نمایش" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "وارونگي اÙقي منظره" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "حالت تمام صÙحه" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "جَوّ" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "شبکه سمتی" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "جهات اصلي" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "طرح هنری صورت‌ÙÙ„Ú©ÛŒ" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "مرزهای صورت‌ ÙÙ„Ú©ÛŒ" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "برچسب‌های صورت ÙÙ„Ú©ÛŒ" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "خطوط صورت ÙÙ„Ú©ÛŒ" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "تصاویر پس زمینه سحابی ها" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "دايرة البروج" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "خط استوا" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "شبکه استوایی" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "شبکه استوایی J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "گرد Ùˆ غبار ( مه )" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "شبکه کهکشانی" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "صÙحه كهكشاني" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "زمین" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "خط اÙÙ‚" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "خط نص٠النهار" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "سحابی ها" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "دید در شب" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "عنوان سياره" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "مدار سیارات" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "رد سیارات" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "ستارگان" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "وارونگي عمودي منظره" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "متÙرقه" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "پنهان شدن خودکار نوار اÙÙ‚ÛŒ" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "پنهان شدن خودکار نوار عمودی" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "خروج" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "رونوشت از اطلاعات جسم" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "ذخیره‌ی عکس صÙحه" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "تعویض مقر سمتی-ارتÙاعی با استوایی" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "پنهان/آشكار كردن رابط كاربر" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "جنباندن Ùˆ گزینش" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "مرکز قرار دادن Ø´ÛŒ انتخابی" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "تنظیم سیاره انتخاب شده به عنوان سیاره مبدا" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "دنبال کردن شیء" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "بزرگنمایی٠شیء انتخابی" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "کوچک‌نمایی" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "زاويه‌سنجي" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "علائم قطبنما" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "نماي چشمي" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "منوي چشمي" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "پنجره پيكره‌بندي ماهواره‌ها" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "نمايش ماهواره" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "نام ماهواره" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "یک تلسکوپ را به یک مختصات حرکت بده" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "برنامه‌ها" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "پیكره‌بندی" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "پنجره تاریخ/زمان" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "راهنما" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "پنجره موقعیت" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "جستجو" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "تنظیمات مشاهده Ùˆ آسمان" @@ -3413,7 +3589,7 @@ msgstr "بازسازی" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "موقعیت" @@ -3429,10 +3605,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "حذÙ" @@ -3441,7 +3617,7 @@ msgstr "اÙزودن به لیست" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "عرض جغراÙیایی:" @@ -3454,12 +3630,12 @@ "(مثال :1d 12m 8s+) وارد کنید." #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "طول جغراÙیایی:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "ارتÙاع:" @@ -3483,363 +3659,407 @@ msgid "Planet:" msgstr "سیاره:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "جستحوي اجرام" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "جستجوي جسم / موقعيت" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "ایوتا" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "آلÙا" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "بتا" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "گاما" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "دلتا" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "اپسیلون" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "زتا" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "اÙتا" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "تÙتا" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "کاپا" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "لاندا" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "مو" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "نو" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "زی" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "امیکرون" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "Ù¾ÛŒ" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "رو" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "سیگما" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "تاو" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "آپسیلون" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "ÙÛŒ" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "Ú†ÛŒ" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "پسای" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "اÙمگا" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "حرو٠يوناني براي عنوان" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "شيء" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "بعد/میل (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "موقعیت" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "پايگاه داده آنلاين نجومي SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "جستجوâ€ÙŠ گسترش داده شده با SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "سرور:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "گزینهâ€Ù‡Ø§" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "گزینهâ€Ù‡Ø§" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "نما" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "آسمان" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "نشانه‌ها" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "چشم‌انداز" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "آسمان‌شناسي" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "نام‌ها Ùˆ نشانه‌ها" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "سیارات" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "سيارات Ùˆ قمرها" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "نمایش سیارات" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "نمایش نشانگر سیارات" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "نمایش مدار سیارات" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "شبیه سازی سرعت نور" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "بزرگ‌نمايي ماه" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "نمایش جو" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "آلودگي نوري:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "ضريب جذب، دما، Ùشار" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "تنظيمات انكسار/تÙرق" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "مقياس مطلق:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "مقياس نسبي:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "سوسو:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "كاهش روشنايي ستارگان كم‌نور هنگام مشاهده اجرام بسيار نوراني" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "سازگاري چشم با حركت" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "بارش شهابي" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "صورت‌های ÙÙ„Ú©ÛŒ" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "نمایش خطوط" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "نمايش نام‌ها" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "نمایش مرزها" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "نمايش طرح هنري" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "کره سماوی" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "نگاشت" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "حذ٠/ اضاÙÙ‡ چشم‌انداز..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "نمايش چشم‌انداز" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "نمایش مه" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "به‌كاربري سياره Ùˆ موقعيت متناظر" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "چشم‌انداز پيش‌‌Ùرض" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Ùرهنگ پيش‌Ùرض آسمان" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "نمايان" @@ -3891,7 +4111,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "جهت نگاه وقتي كه stellarium بالا مي‌‌آيد" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "اطلاعات جرم انتخابي" @@ -3907,11 +4127,8 @@ msgid "Display no information" msgstr "عدم نمايش اطلاعات" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "هيچ" @@ -4053,7 +4270,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "تاريخ Ùˆ ساعت شروع" @@ -4065,92 +4282,96 @@ msgid "Other:" msgstr "دیگر:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "زمان اكنون" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "شروع برنامه در تاريخ Ùˆ زمان رايانه" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "تاريخ Ùˆ زمان رايانه" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "هنگام بالا آمدن برنامه زمان در ساعت ديگري از روز قرار مي‌گيرد." -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "ساعت در تاريخ رايانه" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "تنظیمات آسمان‌نما" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" "اعوجاج آينه‌اي كروي هنگام تصوير بر روي آينه كروي براي آسمان‌نماي ضعيÙ" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "اعوجاج آينه كروي" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "نمايش اجرام داخل يك دايره مركزي" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "نماي تلسكوپ" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "پنهان‌کردن سایر صورت‌های ÙÙ„Ú©ÛŒ هنگام کلیک‌کردن بر یکی" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "انتخاب تك صورت Ùلكي" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "همراسنا كردن نام‌ها با اÙÙ‚" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "دوران نام‌ها" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "تعويض دكمه‌هاي چرخش اÙقي Ùˆ عمودي" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "دكمه‌هاي تغيير جهت روشن" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4158,92 +4379,98 @@ "وقتی Ùعال شود، دکمه ÛŒ \"Ú©ÙˆÚ†Ú© نمایی خودکار\" جهت دید اولیه را نیز تقییر خواهد " "داد." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "برگشت به زاويه ديد٠پيش‌Ùرض" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "عكس از صÙحه" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "پوشه تصاویر" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "وارونه‌کردن رنگ‌ها" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "بروزرساني زيج ستارگان" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "درياÙت" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "برای مشاهده ستارگان بیشتر این Ùایل را درياÙت کنید" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "راه‌اندازی مجدد درياÙت" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "تلاش دوباره" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "توقÙ٠درياÙت. بعداً می‌توانید دوباره آن را درياÙت کنید." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "انصراÙ" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "بستن پنجره هنگام اجراي برنامه" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "اجراي برنامه" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "توق٠اجراي برنامه" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "بارگذاری در هنگام راه‌اندازی" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "پیکربندی" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "اصلی" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "اطلاعات" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "کاوش" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "ابزار" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "اÙزونه‌ها" @@ -4413,176 +4640,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "نمايش جهات قطبنما در امتداد اÙÙ‚" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "چشمي‌ها" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4654,64 +4881,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4719,7 +4951,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4730,14 +4962,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4746,306 +4978,375 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "ماهواره‌ها" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "پيشبيني موقعيت ماهواره‌هادر مدار زمين بر اساس داده‌هاي NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Ùايل قديمي satellites.json سازگار نيست. از Ùايل پيشÙرض استÙاده مي‌شود" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5053,25 +5354,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5079,17 +5380,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5097,41 +5398,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5139,338 +5442,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5506,11 +5852,11 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "كنترل تلسكوپ" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5518,12 +5864,12 @@ "اين اÙزونه دستورات «چرخش» را به تلسكوپ سوار شده بر پايه رايانه‌اي ارسال " "مي‌كند." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "تلسکوپ شماره‌ی %1 را به سمت جرم انتخاب شده حرکت بده" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "تلسکوپ شماره‌ی %1 را به سمت نقطه‌ی مرکز صÙحه حرکت بده" @@ -5906,62 +6252,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6115,7 +6461,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6133,7 +6479,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6149,154 +6495,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "واسط متني كاربر" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "راه‌اندازي ويرايشگر سري 0.9x متداول در سامانه‌هاي اÙلاك‌نما" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "زبان" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "خط صÙحه كهكشاني" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6329,22 +6675,22 @@ msgstr "یک رابط برای اÙزودن سیارکها Ùˆ دنباله‌دارها به برنامه" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6513,36 +6859,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6560,7 +6913,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6574,14 +6927,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6589,8 +6942,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6608,29 +6962,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6646,51 +7077,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6810,11 +7251,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6822,137 +7263,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "واحد نجومی" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6960,49 +7405,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7018,185 +7552,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "دقیقه" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7505,6 +8033,12 @@ #~ msgid "xxx" #~ msgstr "xxx" +#~ msgid "Nebulas" +#~ msgstr "سحابی ها" + +#~ msgid "Nebulas background images" +#~ msgstr "تصاویر پس زمینه سحابی ها" + #~ msgid "Day keys: " #~ msgstr "کلیدهای روز : " diff -Nru stellarium-0.12.1/po/stellarium/fi.po stellarium-0.12.4/po/stellarium/fi.po --- stellarium-0.12.1/po/stellarium/fi.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/fi.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-03 14:56+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-10 13:35+0000\n" "Last-Translator: Tuomas Teipainen \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:13+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridiaani" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvaattori" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horisontti" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Linnunradan taso" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Tekijä: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Sijainti: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeetta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tyyppi: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitudi: %1 (ekstinktiokorjattu: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitudi: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Koko: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaksi" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Avonainen tähtijoukko" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Pallomainen tähtijoukko" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Tähtisumu" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetaarinen sumu" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Pimeä sumu" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Tähtijoukko ja -sumu" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Tuntematon" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Dokumentoimaton tyyppi" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absoluuttinen magnitudi: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Ekliptikaalinen toposentrinen (nykyinen) %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Kaltevuus (nykyinen, Maalle): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Etäisyys: %1 AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Etäisyys: %1 AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Näennäinen halkaisija: %1, renkaat mukaanlukien: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Näennäinen läpimitta: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Sideerinen kiertoaika: %1 päivää (%2 vuotta)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Tähtivuorokausi: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Keskiaurinkovuorokausi: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Vaihekulma: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongaatio: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Vaihe: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Valaistuna: %1%" @@ -204,7 +204,7 @@ msgstr "Väliaikainen tunnus: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "tähti" @@ -219,48 +219,123 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Näennäinen magnitudi: %1 (ekstinktiokorjattu)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "purkautuva muuttuja" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "sykkivä muuttuja" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "pyörivä muuttuja" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "kataklysminen muuttuja" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "pimennysmuuttuja" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "muuttuva tähti" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "kaksoistähti" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Tyyppi: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitudi: %1 (ekstinktiokorjattu: %2. B–V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitudi: %1 (B–V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Magnitudiväli: %1%2%3 (Fotometrinen systeemi: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Magnitudiväli: %1%2%3/%4 (Fotometrinen systeemi: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektriluokka: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Etäisyys: %1 valovuotta" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallaksi: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Vähimmäisvalon epookki: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Enimmäisvalon epookki: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Jakso: %1 päivää" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Seuraava valominimi: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Seuraava valomaksimi: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Pimennyksen kesto: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Nousuaika: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Avaruusalus" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "Korjaus on poistettu käytöstä. Käytä vain jos tiedät mitä olet tekemässä!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -271,7 +346,7 @@ "Henrikkson artikkelissaan Einstein's Theory of Relativity Confirmed by " "Ancient Solar Eclipses (%1). Katso lisätietoa %2täältä%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -280,7 +355,7 @@ "Tämän empiirisen yhtälön julkaisi G. M. Clemence artikkelissaan On the " "system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -293,7 +368,7 @@ "teoksessaan Astronomical Formulae for Calculators. Se otettiin myös " "käyttöön PC-ohjelmaan SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -303,7 +378,7 @@ "Astronomical Ephemeris -almanakkaan, sekä Mucken & Meeuksen (1983) " "Canon of Solar Eclipses -teokseen." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -316,7 +391,7 @@ "GMT. Sama suhde otettiin epäsuorasti käyttöön myös Goldstinen (1973) " "syzygitaulukoihin." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -327,7 +402,7 @@ "The accelerations of the earth and moon from early astronomical " "observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -336,7 +411,7 @@ "Tämän yhtälön julkaisi F. R. Stephenson artikkelissaan Pre-Telescopic " "Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -349,7 +424,7 @@ "Polynomial approximations for the correction delta T E.T.-U.T. in the " "period 1800-1975 (%1)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -359,7 +434,7 @@ "Programs and Tables from -4000 to +2800 (1986), sekä PC-planetaario-" "ohjelma RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -370,11 +445,11 @@ "Long-term changes in the rotation of the earth - 700 B.C. to A.D. " "1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "Tämä algoritmi on käytössä PC-planetaario-ohjelmassa Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -384,7 +459,7 @@ "Eclipses: 1986-2035 (1987) ja Fifty Year Canon of Lunar Eclipses: " "1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -393,7 +468,7 @@ "Tämän kaavan kehitti K. M. Borkowski (%1) analysoimalla 31 " "auringonpimennystä jotka tapahtuivat vuosien 2173 eKr. ja 1715 välillä." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -405,7 +480,7 @@ "Empirical Transformations from U.T. to E.T. for the Period 1800-" "1988 (%1)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -415,7 +490,7 @@ "ELP 2000-85 -kuuteoriaan teoksessa Lunar Tables and Programs from 4000 " "B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -426,7 +501,7 @@ "Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD 1990 " "(%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -435,7 +510,7 @@ "F. R. Stephenson julkaisi tämän kaavan kirjassaan Historical Eclipses " "and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -445,7 +520,7 @@ "laajasti käytetty. Taulukko vuosille 1620-2000, sisältää myös Chaprontin, " "Chapront-Touzen & Francoun variantin tämän aikavälin ulkopuolelle." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -454,7 +529,7 @@ "JPL:n Solar System Dynamics -ryhmä käyttää tätä kaavaa interaktiivisella " "%1JPL Horizons%2 -sivustollaan." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -463,7 +538,7 @@ "Tämän polynomin julkaisivat J. Meeus ja L. Simons artikkelissaan " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -472,7 +547,7 @@ "O. Montenbruckin & T. Pflegerin teos Astronomy on the Personal " "Computer (2000) tarjoaa kolmannen asteen polynomeja lähimenneisyydelle." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -484,7 +559,7 @@ "Tabulations (2002) perustuen Jean Meeuksen teokseen Astronomical " "Algorithms (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -495,7 +570,7 @@ "artikkelissaan Historical values of the Earth's clock error %1T and the " "calculation of eclipses (%2) lisäyksin (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -508,7 +583,7 @@ "neliöfunktiolla. Tämä perustuu Stephensonin kuvailemaan mahdolliseen " "jaksollisuuteen (%2). Lisätietoa %3täällä%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -522,11 +597,33 @@ "%1NASAn pimennyssivustolla%2. Käytössä myös aurinko-, kuu-, ja " "planeettaefemeridiohjelma SOLEXissa." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Käytössä oletuksena." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Tämä B. Banjevicin Stephensoniin & Morrisoniin (1984) perustuva ratkaisu " +"julkaistiin artikkelissa Ancient eclipses and dating the fall of " +"Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Tämä S. islamin, M. Sadiqin ja M. S. Qureshin Meeusille & Simonsille " +"perustuva ratkaisu julkaistiin artikkelissa Error Minimization of " +"Polynomial Approximation of DeltaT (%1) ja Sana Islam tarkisti sen 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -535,15 +632,15 @@ "Tämä on toisen asteen kaava %1T:n laskemiseksi käyttäjän määrittelemillä " "kertoimilla." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Virhe" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "järjettömillä arvoilla tämän alueen ulkopuolella" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -551,22 +648,23 @@ "keskimääräisellä alle yhden sekunnin virheellä, max. 1.9s, ja järjettömillä " "arvoilla tämän alueen ulkopuolella" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "nolla-arvolla tämän alueen ulkopuolella" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "tyypillisellä 1 sekunnin tarkkuudella ja nolla-arvolla tämän alueen " "ulkopuolella" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Käyttökelpoinen aikaväli: vuodesta %1 vuoteen %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Käyttökelpoinen aikaväli: vuodesta %1 vuoteen %2." @@ -735,52 +833,53 @@ msgid "Found" msgstr "Löytyi" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Valitse kuvankaappaushakemisto" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Aloitusnäkökenttä: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Aloituskatselusuunta Atsim./Kork.: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Tekijät" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Yhteystieto" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Tekijä" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lisenssi" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Suorittaa komentosarjaa: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Suorittaa komentosarjaa: [ei mitään]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -788,16 +887,16 @@ "Uudet tähtiluettelot haettu!\n" "Käynnistä Stellarium uudelleen näyttääksesi ne." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Kaikki saatavilla olevat tähtiluettelot on asennettu." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Hae luettelo %1 / %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -806,7 +905,7 @@ "Haetaan %1...\n" "(Voit sulkea tämän ikkunan.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -817,7 +916,7 @@ "Tähtien määrä: %2 miljoonaa\n" "Magnitudiväli: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -826,11 +925,11 @@ "Virhe haettaessa tiedostoa %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Tarkastetaan yhteensopivuutta..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -840,115 +939,123 @@ "Tiedosto vioittunut." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritmi" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Ilman korjausta" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (Chaprontin, Chapront-Touzen & Francoun kanssa (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Käyttäjän määrittelemä %1T" @@ -1119,49 +1226,53 @@ msgid "OSX Developer: %1" msgstr "OSX-kehittäjä: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Komentosarjan hallintaikkuna" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Ikkunat" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Välilyönti" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ei kuvausta" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Ei tähdenlentoja" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normaali aktiivisuus" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Perseidien normaaliaktiivisuus" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Meteoreja tunnissa" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Poikkeuksellinen leonidien aktiivisuus" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Suurin tunnettu aktiivisuus (1966 leonidit)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Uusi sijainti" @@ -1267,19 +1378,19 @@ msgid "starchart" msgstr "tähtikartta" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad-hakuvirhe" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad-haku" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Strasbourgin yliopisto (Ranska)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvardin yliopisto (USA)" @@ -1295,30 +1406,38 @@ msgid "Alternative shortcut" msgstr "Vaihtoehtoinen pikanäppäin" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Käyttäjän määrittelemä %1T-yhtälö" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Tyypillinen yhtälö %1T:n laskemiseksi näyttää tältä." -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "jossa" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "vuosi" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Tämä järjestelmä ei tue OpenGL-ominaisuutta." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Alustasi ei tue OpenGL 1.2:n minimivaatimuksia. Ole hyvä ja päivitä " +"näytönohjaimesi ajurit." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Aurinko" @@ -1335,12 +1454,12 @@ msgstr "Maa" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Kuu" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1438,7 +1557,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturnus" @@ -1736,193 +1855,222 @@ msgstr "Inuiittien" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Intialais-Vedalainen" + +#: src/translations.h:171 msgid "Korean" msgstr "Korealainen" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakotien" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maorien" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajojen" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Muinaisnorjalainen" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesialainen" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Saamelainen" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-guaranilainen" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongalainen" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Länsimainen" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Puut" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Valtameri" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Maisemamatka" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Osittainen kuunpimennys" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Täydellinen kuunpimennys" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Näytönsäästäjä" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Auringonpimennys 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Käynnistyskomentojono" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Eläinrata" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Merkurius, kolminkertainen auringonnousu ja -lasku" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Kaksinkertainen pimennys Deimoksessa 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Kaksinkertainen pimennys Deimoksessa 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Pimennys Olympys Monsilta 10. tammikuuta 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Maan ja Jupiterin peittyminen 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 ylikulkua ja 2 pimennystä Deimoksessa 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Aurinkokuntanäytönsäästäjä" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Tähdistömatka" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Aurinko eri planeetoilta" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Parhaat näkymät Maahan eri taivaankappaleilta" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Venuksen ylikulku" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Taivaskulttuurimatka" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Maan tapahtumia merkuriuksesta" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Maan tapahtumia venuksesta" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Maan tapahtumia marsista" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Maan suurimmat elongaatiot ja kirkkaudet marsista" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Maan ja marsin suurimmat elongaatiot jupiterista" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Katso jokaista asennettua maisemaa" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Katsele jokaista asennettua taivaskulttuuria." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Komentojono esittelee osittaisen kuunpimennyksen." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Komentojono esittelee täydellisen kuunpimennyksen." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Hidas, loppumaton matka taivaalla, katsellaan satunnaisia kohteita." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1930,12 +2078,12 @@ "Komentojono esittelee täydellisen vuoden 2009 auringonpimennyksen " "(paikka=Rangpur, Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" "Komentojono joka suoritetaan automaattisesti käynnistyksen yhteydessä." -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1944,7 +2092,7 @@ "Komentojono näyttää eläinradan tähdistöt. Eläinrata tarkoittaa tähdistöjä, " "joiden poikki Aurinko kulkee taivaanpallolla vuotuisen kiertonsa aikana." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1952,7 +2100,7 @@ "Merkuriuksen radan ja pyörimisen erikoisuuksien vuoksi tietyissä kohdissa " "Aurinko nousee ja laskee 3 kertaa yhden Merkuriuksen päivän aikana." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1961,7 +2109,7 @@ "pimentää Auringon ensin. Pimennys tapahtuu Skorpionin ja Jousimiehen välillä " "26. huhtikuuta 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1970,12 +2118,12 @@ "pimentää Auringon ensin. Pimennys tapahtuu Härän ja Kaksosten välillä 23. " "heinäkuuta 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Phobos pimentää Auringon nähtynä Olympus Monsilta 10 tammikuuta 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1985,7 +2133,7 @@ "molempien peitot samana päivänä ovat harvinaisia. Tässä yksi, joka tapahtuu " "23. 1.2048. Todellisella nopeudella." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2001,39 +2149,38 @@ " Phobos tulee esiin Marsin takaa edelleen pimentyneenä, kunnes se poistuu " "Marsin varjosta." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Näytönsäästäjä aurinkokunnan erilaisista tapahtumista. Kaikkiaan 171 " -"tapahtumaa!" +"Näytönsäästäjä aurinkokunnan eri tapahtumista. Yhteensä 187 tapahtumaa!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Matka länsimaisiin tähtikuvioihin." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Katsele Aurinkoa aurinkokunnan suurilta planeetoilta ja Plutosta." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "Parhaat näkymät Maahan aurinkokunnan muilta kappaleilta 2000-luvulla." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "Venuksen ylikulku nähtynä Sydneystä, Australiasta 6. kesäkuuta 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" "Analemman esittely - kuvio, jonka Aurinko piirtää taivaalle vuoden aikana." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2041,1468 +2188,1504 @@ "Tyko Brahen vuonna 1572 havaitsema supernovan räjähdys. Supernovat-" "laajennuksen on oltava käytössä." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "Maan suurimmat elongaatiot ja kirkkaudet marsista 2000-3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "Maan suurimmat elongaatiot jupiterista 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Yhdistyneet arabiemiirikunnat" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua ja Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Alankomaiden Antillit" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Etelämanner" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentiina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikan Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Itävalta" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaidžan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia ja Herzegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgia" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasilia" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahama" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvent'nsaari" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Valko-Venäjä" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kookossaaret" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Kongon demokraattinen tasavalta" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Keski-Afrikan tasavalta" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Kongon tasavalta" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Sveitsi" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Norsunluurannikko" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cookinsaaret" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Kiinan kansantasavalta" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolumbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia ja Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kap Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Joulusaari" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Kypros" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "TÅ¡ekin tasavalta" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Saksa" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Tanska" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominikaaninen tasavalta" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algeria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Viro" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egypti" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Länsi-Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Espanja" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Suomi" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fidži" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandsaaret" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Färsaaret" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Ranska" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Yhdistynyt kuningaskunta" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Gruusia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Ranskan Guayana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grönlanti" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Päiväntasaajan Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Kreikka" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Etelä-Georgia ja Eteläiset Sandwichsaaret" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guayana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard ja McDonaldinsaaret" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Kroatia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Unkari" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlanti" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Intia" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Brittiläinen Intian valtameren alue" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islanti" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaika" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordania" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japani" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgiisia" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodža" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komorit" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts ja Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Korean demokraattinen kansantasavalta" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Korean tasavalta" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Caymansaaret" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazahstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Liettua" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marokko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavia" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshallsaaret" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Pohjois-Mariaanit" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Malediivit" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Meksiko" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malesia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mosambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Uusi-Kaledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolkinsaari" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Alankomaat" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norja" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Uusi-Seelanti" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Ranskan Polynesia" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua-Uusi-Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filippiinit" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Puola" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint-Pierre ja Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palestiinan alue" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugali" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Venäjän federaatio" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudi-Arabia" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Salomonsaaret" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychellit" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Ruotsi" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Saint Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Huippuvuoret ja Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovakia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tome ja Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syyrian arabitasavalta" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swazimaa" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks- ja Caicossaaret" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "TÅ¡ad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Ranskan eteläiset ja antarktiset alueet" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thaimaa" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadžikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Itä-Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Toga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turkki" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad ja Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Kiinan tasavalta (Taiwan)" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tansania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Yhdysvaltain pienet erillissaaret" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Yhdysvallat" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikaanivaltio" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent ja Grenadiinit" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Brittiläiset Neitsytsaaret" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Yhdysvaltain Neitsytsaaret" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis ja Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Etelä-Afrikka" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Sambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Päivays ja aika" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Lisää tähtivuorokausi" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Lisää tähtikuukausi" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Lisää tähtiviikko" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Lisää sideerinen vuosi" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Lisää 1 sideerinen vuosisata" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Lisää aurinkovuorokausi" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Lisää aurinkotunti" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Lisää aurinkoviikko" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Lisää synodinen kuukausi" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Lisää drakoninen kuukausi" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Lisää anomalistinen kuukausi" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Lisää trooppinen kuukausi" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Lisää drakoninen vuosi" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Lisää trooppinen vuosi" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Lisää 1 keskimääräinen trooppinen vuosisata" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Hidasta komentosarjan suoritusnopeutta" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Pienennä aika-askelta" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Hidasta aikaa (hiukan)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Nopeuta komentosarjan suoritusnopeutta" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Kasvata aika-askelta" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Nopeuta aikaa (hiukan)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pysäytä komentosarjan suoritus" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Jatka komentosarjan suoritusta" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Aseta aika nykyhetkeen" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Aseta komentosarjan suoritusnopeus normaaliksi" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Aseta normaali aika-askel" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Nollaa aika-askel" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Lopeta komentosarjan suoritus" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Vähennä tähtivuorokausi" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Vähennä tähtikuukausi" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Vähennä tähtiviikko" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Vähennä tähtivuosi" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Vähennä 1 sideerinen vuosisata" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Vähennä aurinkovuorokausi" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Vähennä aurinkotunti" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Vähennä aurinkoviikko" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Vähennä synodinen kuukausi" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Vähennä drakoninen kuukausi" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Vähennä anomalistinen kuukausi" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Vähennä trooppinen kuukausi" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Vähennä drakoninen vuosi" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Vähennä trooppinen vuosi" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Vähennä 1 keskimääräinen trooppinen vuosisata" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Näyttöasetukset" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Peilaa vaakasuunnassa" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Kokonäyttötila" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Ilmakehä" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Atsimutaaliasteikko" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Ilmansuunnat" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Tähdistökuvat" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Tähdistöjen rajaviivat" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Tähdistöjen nimet" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Tähdistöviivat" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Tähtisumujen taustakuvat" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Syvän taivaan kohteiden taustakuvat" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptikaalinen asteikko (J2000)" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekvaattori" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatoriaaliasteikko" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatoriaaliasteikko (J2000)" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Sumu" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktinen asteikko" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Linnunradan taso" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Maanpinta" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horisonttiviiva" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridiaaniviiva" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Tähtisumut" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Syvän taivaan kohteet" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Yötila" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Planeettojen nimet" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planeettojen radat" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planeettojen radat" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Tähdet" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Tähtien nimet" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Peilaa pystysuunnassa" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Sekalaista" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Piilota automaattisesti painikkeiden vaakapalkki" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Piilota automaattisesti painikkeiden pystypalkki" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Palaa kotiin" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Lopeta" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Kopioi valitun kohteen tiedot leikepöydälle" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Tallenna kuvankaappaus" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Vaihda ekvatoriaali- tai atsimutaalijalustan välillä" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Aseta käyttöliittymän näkyvyys" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Liikkuminen ja valinta" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Keskitä valittuun kohteeseen" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Aseta valittu planeetta kotiplaneetaksi" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Seuraa kohdetta" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Suurenna valittuun kohteeseen" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Loitonna" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Kulman mittaus" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Ilmansuuntien merkit" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Näytä eksoplaneetat" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Eksoplaneettojen asetusikkuna" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Havaittavuus" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Havaittavuuden asetusikkuna" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Okulaarit-laajennuksen asetukset" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okulaarinäkymä" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Näytä ristikko" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Okulaarit-valikko" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Kuvailmaisimen kehys" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad-näkymä" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Valitse seuraava teleskooppi" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Valitse seuraava okulaari" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Valitse edellinen teleskooppi" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Valitse edellinen okulaari" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Näytä pulsarit" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Pulsareiden asetusikkuna" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Näytä kvasaarit" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Kvasaarien asetusikkuna" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Satelliittien asetusikkuna" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Satelliittien merkit" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satelliittien nimet" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Historiallisten supernovien asetusikkuna" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Kirkkaiden novien asetusikkuna" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Suuntaa kaukoputki annetuihin koordinaatteihin" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Näytä renderoijan statistiikat" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Komentosarjat" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Suorita maisemat-komentosarja tiedostosta" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Näytä ja lähennä Kuuhun" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Asetusikkuna" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Päiväys/aika-ikkuna" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Avustusikkuna" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Paikkakunta-ikkuna" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Etsintäikkuna" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Pikanäppäimet-ikkuna" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Taivas- ja näyttöasetusten ikkuna" @@ -3528,7 +3711,7 @@ msgstr "Päivitä" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Paikkakunta" @@ -3544,10 +3727,10 @@ msgid "Return to default" msgstr "Palauta oletukset" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Poista" @@ -3556,7 +3739,7 @@ msgstr "Lisää listaan" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Leveys:" @@ -3569,12 +3752,12 @@ "sekunnit-muotoa, esimerkiksi: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Pituus:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Korkeus:" @@ -3598,363 +3781,409 @@ msgid "Planet:" msgstr "Planeetta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Etsi kohde" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Etsi kohde tai sijainti" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Käytä sarkainnäppäintä löydettyjen kohteiden valitsemiseen" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "ioota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beeta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eeta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theeta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "myy" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nyy" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksii" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pii" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rhoo" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ypsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fii" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "khii" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psii" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "oomega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Kreikkalaiset aakkoset Bayerin järjestelmään" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Kohde" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "Rekt./Dekl. (J2000)" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Sijainti" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "Joidenkin kohteiden löytyminen voi vaatia laajennoksen aktivoimista" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "Nimet englanniksi" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Hae listasta..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listat" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Tähtitieteellinen verkkotietokanta SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Laajennettu haku SIMBAD-tietokannalla" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Palvelin:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Haun asetukset" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "Käytä automaattista täyttöä sanan alusta" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Asetukset" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "Nimet englanniksi" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Hae listasta..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listat" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Näytä" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Taivas" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Merkinnät" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Maisemat" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Tähtitarusto" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Nimet ja osoittimet" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planeetat" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Syvän taivaan kohteiden nimet ja osoittimet (tähtijoukot, galaksit ja sumut)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "Syvän taivaan kohteet" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planeetat ja kuut" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Näytä planeetat" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Näytä planeettojen osoittimet" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Näytä planeettojen radat" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Jäljittele valonnopeutta" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Kuun koko" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Automaattinen maiseman vaihto planeettaa vaihdettaessa" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Valitse maisema automaattisesti" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Näytä ilmakehä" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Valosaaste:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "paine, lämpötila, ekstinktiokerroin" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refraktio/ekstinktioasetukset" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absoluuttinen mittakaava:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Suhteellinen mittakaava:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Linnunradan kirkkaus:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Tuikkiminen:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Heikennä himmeitä tähtiä, jos hyvin kirkas kohde on näkyvissä" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynaaminen silmän sopeutuminen" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Tähdenlennot" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Aktiivisuus tunnissa zeniitissä" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "ZHR:" +msgstr "Aktiivisuus tunnissa zeniitissä" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Magnitudirajoitus (paljaalla silmällä/kiikarilla havaitsijoille)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Magnitudirajoitus" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Tähdet magnitudiin" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Rajoita tähtien magnitudia" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Sumut magnitudiin" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Rajoita syvän taivaan kohteiden magnitudia (tähtijoukot, galaksit ja sumut)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Tähdistöt" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Näytä viivat" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Näytä nimet" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Näytä rajat" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Näytä kuvat" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Tähdistökuvien kirkkaus:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Taivaanpallo" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Näytä ekvaattori" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Näytä meridiaani" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Näytä horisontti" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Näytä ekliptika" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Näytä Linnunradan taso" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projektio" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Lisää/poista maisemia..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Näytä maanpinta" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Näytä sumu" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Käytä valittua planeettaa ja sijaintia" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Käytä tätä maisemaa oletuksena" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Käytä maisemien kirkkausasetusta" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Käytä tätä taivaskulttuuria oletuksena" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Näkyvä" @@ -4009,7 +4238,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Katselusuunta Stellariumin käynnistyessä" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Valitun kohteen tiedot" @@ -4025,11 +4254,8 @@ msgid "Display no information" msgstr "Älä näytä tietoja" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ei tietoja" @@ -4172,7 +4398,7 @@ msgstr "sekuntia" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Aloituspäiväys ja -aika" @@ -4184,42 +4410,46 @@ msgid "Other:" msgstr "Muu:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Käytä paikallista päivämäärää ja aikaa" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "Käytä nykyistä" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Käynnistää Stellariumin järjestelmän päiväyksellä ja ajalla" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Järjestelmän päiväys ja aika" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" "Asettaa simulaation ajan Stellariumin käynnistyspäivää seuraavaksi ajaksi" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Järjestelmän päiväys:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Ajan korjaus" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Muokkaa yhtälöä" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetaarioasetukset" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4227,51 +4457,51 @@ "Pallopeilikorjausta käytetään, kun Stellarium heijastetaan pallopeilille " "halvoissa planetaariojärjestelmissä." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Pallopeilikorjaus" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Peitä päänäkymästä kaikki keskusympyrän ulkopuolinen" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Putkinäkymä" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Piilota muut tähdistöt napsautettaessa yhtä" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Valitse yksittäinen tähdistö" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Suuntaa nimet horisontin mukaan" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "\"Gravitaationimet\"" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Tähtisumukuvat päälle" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Näytä tähtisumukuvat-painike" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Pysty- ja vaakapeilauksen painikkeet päälle/pois." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Näytä peilauspainikkeet" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4279,92 +4509,98 @@ "Kun käytössä, \"automaattinen loitonnus\"-näppäin asettaa myös " "aloituskatselusuunnan" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automaattinen loitonnus palauttaa aloituskatselusuunnan" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "Näytä planeettojen ja kuiden varjot (vaatii OpenGL2:n tai uudemman)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Mallinna kappaleiden luomat varjot" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Kuvankaappaukset" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Kuvankaappaushakemisto" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Käänteiset värit" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Tähtiluetteloiden päivitykset" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Napsauta tästä aloittaaksesi haku" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Hae tämä tiedosto näyttääkseni enemmän tähtiä" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Aloita haku uudelleen" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Yritä uudelleen" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Keskeytä haku. Voit aina aloittaa sen myöhemmin uudelleen" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Peru" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Sulje ikkuna komentosarjaa suoritettaessa" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Suorita valittu komentosarja" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Pysäytä suoritettava komentosarja" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Lataa käynnistettäessä" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "muuta asetuksia" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Pää" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Tiedot" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Siirtyminen" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Työkalut" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Laajennukset" @@ -4541,12 +4777,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Näyttää ilmansuuntien merkinnät horisontin ohessa" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okulaarit" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4556,164 +4792,164 @@ "näkökenttä on mallinnettu.) Myös kuvailmaisimen kenttä ja Telrad-näkymä " "voidaan näyttää." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Valitse kohde ennen okulaarinäkymään vaihtamista." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Edellinen okulaari" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Seuraava okulaari" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Valitse &okulaari" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Näytä &ristikko" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "&Okulaarien asetukset" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Näytä &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Näytä &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Edellinen CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Seuraava CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Valitse CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Kierrä CCD:tä" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Palauta kääntö" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okulaari %1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okulaari %1 : %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Okulaarin polttoväli: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Okulaarin näenn. näkökenttä: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Linssi #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Linssi #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Linssi: ei" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Kaukoputki %1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Kaukoputki %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Suurennus: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Näkökenttä: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Mitat: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Ilmaisin %1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Ilmaisin %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Linssi" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "%Edellinen linssi" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&Seuraava linssi" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Kaukoputki" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Edellinen kaukoputki" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Seuraava kaukoputki" @@ -4785,65 +5021,70 @@ msgid "Apparent field of view of the ocular" msgstr "Okulaarin näennäinen näkökenttä" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Kerroin: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Linssi: ei" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Kerroin: N/A" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Linssin kerroin" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Okulaarin polttoväli" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Kierto: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Näiden kiikarien antama suurennus" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Näiden kiikarien antama todellinen näkökenttä" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "Tämän okulaari/barlow/kaukoputki-yhditelmän antama suurennus" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Tämän okulaari/barlow/kaukoputki -yhdistelmän antama todellinen näkökenttä" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Okulaarit-laajennus" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versio" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Barlow-linssit" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Yhteenveto" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4855,7 +5096,7 @@ "kaukoputkia, kuten myös CCD-ilmaisimia. Ensimmäisellä käynnistyskerralla " "näytetään joitakin esimerkkejä, joilla pääset alkuun." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4873,7 +5114,7 @@ "suosittelemme jättämään mittakaavan muuttamisen pois, ellei sille ole " "tarvetta." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4883,7 +5124,7 @@ "pohjoiseen. Tätä ominaisuutta ei ole voitu toteutettaa, joten tällä hetkellä " "risitikko on suunnattu ruudun yläreunaan." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4896,118 +5137,126 @@ "0,5%1, 2,0%1, ja 4,0%1, auttaen arvioimaan miltä näyttäisi katsoa paljain " "silmin Telradin-etsimen (tai vastaavan) läpi." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Jos kohtaat ongelmia, voit ilmoittaa niistä. Nauti!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Pikanäppäimet" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "Laajennuksen näppäinkomentoja voi muokata Yleistä-välilehdellä." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[näppäintä ei ole määritelty]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Asettaa okulaarinäkymän käyttöön/pois." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Avaa pudotusvalikon navigointiin." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Käytössä vain, jos kohde on valittuna" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Muuta ympyrän kokoa" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "Magnitudirajoitus teleskooppien eri aukoille" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Rajoita magnitudia" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Näppäinmäärittelyt" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Okulaarinäkymä käyttöön" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Avaa pudotusvalikko navigointiin:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Käyttöliittymä" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Ohjauspaneeli näytöllä" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Käytä asteita ja minuutteja CCD:n näkökentälle" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Yleiset" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okulaarit" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Lisää" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nimi:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "Näenn. näkökenttä" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Polttoväli" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Kentän loppu:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Kiikarit" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Linssit" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "Kerroin:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5015,74 +5264,75 @@ "Kerroin >1 kasvattaa polttoväliä (barlow-linssi). Kerroin <1 lyhentää " "polttoväliä (shapley-linssi)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Ilmaisimet" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Resoluutio x (pikseliä):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Resoluutio y (pikseliä):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Kennon leveys (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Kennon korkeus (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Pikselin leveys (mikrometriä):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Pikselin korkeus (mikrometriä):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Kaukoputket" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Halkaisija:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Peilaa vaakasuunnassa" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Peilaa pystysuunnassa" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Tietoja" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelliitit" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5090,105 +5340,165 @@ "Ennuste tekokuiden paikoista Maan kiertoradalla pohjautuen NORAD TLE -" "tietoihin" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Vanha satellites.json-tiedosto ei ole enää yhteensopiva - käytetään " "oletustiedostoa" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "visuaalinen" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "tieteellinen" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "tietoliikenne" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navigointi" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amatööri" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "sää" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geostationaarinen" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "käytöstä poistettu" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "gps" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Hubble-avaruusteleskooppi" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "Kansainvälinen avaruusasema" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Luettelo" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Kansainvälinen tunnus" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "satelliitti" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Etäisyys (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Etäisyyden muutos (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Korkeus (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Sijainti (Lat./Long.): %1%2%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME-koordinaatit (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME-nopeus (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Satelliitti ja havaitsija ovat auringonvalossa." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satelliitti on näkyvissä." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Satelliitti on varjossa." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satelliitti ei ole näkyvissä." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Stellariumin Satelliitit-laajennus" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" "Satelliitit-laajennus ennustaa tekokuiden paikkoja Maan kiertoradalla." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Huomautuksia käyttäjille" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Satelliitit ja niiden radat näytetään vain, kun havaitsija on Maassa." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5198,7 +5508,7 @@ "kuukauden menneisyyteen ja tulevaisuuteen). Havaittaessa tämän jakson " "ulkopuolella suuria poikkeavuuksia voi ilmetä." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5208,7 +5518,7 @@ "TLE-tiedot pitää päivittää säännöllisesti." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5219,7 +5529,7 @@ "palautetaan oletus-%3-tiedosto. Vanha tiedosto varmuuskopioidaan nimellä %4. " "Se löytyy käyttäjätietojen hakemiston alihakemistosta modules/Satellites/." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5228,11 +5538,11 @@ "epätäydellisiä, voivat puuttua tai niissä voi olla vikoja." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "TLE-tietojen päivitykset" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5241,7 +5551,7 @@ "Satelliitit-laajennus voi automaattisesti hakea TLE-tietoja internetistä ja " "oletuksena lajjennus tekee tämän, jos tiedot ovat yli 72 tuntia vanhoja. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5252,7 +5562,7 @@ "olevasta tiedostosta. Tiedoston on oltava samassa muodossa kuin Celestrak-" "päivitykset (katso %1 esimerkiksi)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5260,11 +5570,11 @@ "Huomaa: jos päivitystiedoissa olevan satelliitin nimen lopussa " "hakasuluissa olevaa tekstiä, se poistetaan ennen tietojen käyttämistä." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Lisätään uusia satelliitteja" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5276,11 +5586,11 @@ "satelliitit-välilehdelle, ja napsauta '+'-painiketta. Valitse satelliitit, " "jotka haluat lisätä ja paina \"Lisää\"-painiketta." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Teknisiä huomautuksia" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5288,7 +5598,7 @@ "Paikat lasketaan SGP4- ja SDP4-menetelmillä käyttäen NORAD TLE -dataa " "syötteenä. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5297,24 +5607,26 @@ "Report #3 -julkaisun mukaan (sisältää Spcetrack Report #6:n). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Katso lisätietoja %1tästä dokumentista%2." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Linkit" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5324,31 +5636,34 @@ "\"%1\", kun lähetät viestin." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Jos sinulla on kysyttävää, vastaus %1löytyy täältä%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Virheraportteja voi tehdä %1tänne%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5356,294 +5671,336 @@ "Jos haluat ehdottaa uutta ominaisuutta, voit laatia virheraportin ja " "asetttaa sen tärkeysarvoksi \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internet-päivitykset pois käytöstä." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Päivitetään..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Seuraava päivitys: < 1 minuuttia" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Seuraava päivitys: %1 minuuttia" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Seuraava päivitys: %1 tuntia" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Päivitä nyt" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Päivitä tiedostoista" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Päivitysvirhe" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Päivitetty %1/%2 satelliitti(a); %3 puuttuu" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Päivitetty %1/%2 satelliitti(a); %3 lisätty; %4 poistettu" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Päivitetty %1/%2 satelliitti(a); %3 lisätty; %4 puuttuu" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[uusi lähde]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Päivitä nyt" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Päivitä tiedostoista" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[ratalaskentavirhe]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[kaikki äsken lisättyjä]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[kaikkia ei näytetä]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[kaikki näytetään]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[kaikki]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Uusi ryhmä..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Valitse TLE-päivitystiedosto" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Haetaan tietoja..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "Stellarium hakee satelliittien tietoja päivityslähteistä. Odota..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Valitse TLE-lähdetiedosto(t)..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Käsitellään tietoja..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Tietoja ei voitu hakea. Yritä myöhemmin uudelleen." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Luettelonumero: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Satelliittien asetukset" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Päivitä TLE-listat internetlähteistä" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Päivitykset" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Päivitä internetlähteistä" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Päivitä satelliittien tiedot internetlähteistä" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Viimeisin päivitys:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "Päivittäessä lisää kaikki uudet satelliitit valituista lähteistä" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "Päivittäessä poista satelliitit joita ei ole enää listattu lähteissä" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Päivitysväli (tuntia):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Nimet" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Nimien kirjasinkoko (pikseliä):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Radat" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Viivan piirtämiseen käytettyjen segmenttien määrä" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Segmenttien määrä:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Yhden segmentin kesto sekunneissa" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Segmenttien pituudet" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Viivan päiden piirtämiseen käytettävien segmenttien määrä" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Häivytyksen pituus" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Palauta oletusasetukset" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Tallenna asetukset oletukseksi" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Asetukset" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Tuplaklikkaa satelliittia seurataksesi sitä." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Lisää enemmän satelliitteja" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Poista valitut satelliitit" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Tallenna muutokset" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Luettelonumero:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Näytä valitut satelliitit" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Näytettävät" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Näytä valittujen satelliittien kiertoradat" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Rata" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Luettelonumero:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "Älä päivitä tai (tai poista) valittuja satelliitteja" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Älä pävitä" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Kuvaus:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Ryhmät:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Pilkulla erotettu ryhmälista" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE-data:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORADin kaksirivinen rataelementtitieto" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Poista valitut satelliitit" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Lisää enemmän satelliitteja" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "TLE-asetus:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Tallenna muutokset" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Satelliitit valituista lähteissä lisätään automaattisesti seuraavassa " +"päivityksessä ellei niitä ole jo olemassa." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5651,15 +6008,15 @@ "Mene valittuun lähteeseen tai muokkaa sen osoitetta. Muutokset tallennetaan " "painamalla Enter-näppäintä." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Lisää uusi lähde" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Poista valittu lähde" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Lähteet" @@ -5695,11 +6052,11 @@ msgid "Discard" msgstr "Hylkää" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Kaukoputken ohjaus" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5707,12 +6064,12 @@ "Tämä ohjelmalaajennus mahdollistaa Stellariumille ohjauskomentojen " "lähettämisen tietokoneistetulle kaukoputken jalustalle (\"GoTo-kaukoputki\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Suuntaa kaukoputki #%1 valittuun kohteeseen" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Suuntaa kaukoputki #%1 näytön keskellä olevaan pisteeseen" @@ -6115,62 +6472,62 @@ "päiväyksen ja kellonajan esitystavan asettamisen." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Tammikuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Helmikuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Maaliskuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Huhtikuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Toukokuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Kesäkuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Heinäkuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Elokuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Syyskuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Lokakuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Marraskuu" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Joulukuu" @@ -6328,7 +6685,7 @@ "Nämä asetukset määrittelevät, miten aika ja päivämäärä näytetään alapalkissa." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Ajan näyttömuoto" @@ -6346,7 +6703,7 @@ msgstr "24 tunnin näyttö" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Päivämäärän muoto" @@ -6362,11 +6719,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-yy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Tekstikäyttöliittymä" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6374,144 +6731,144 @@ "Laajennustoteutus 0.9.x-versioperheen tekstikäyttöliittymästä (TUI), " "käytetään planetaariosysteemeissä" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Aurinkokunnan kappale" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Nykyinen päiväys/aika" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Aseta aikavyöhyke" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Päiväysnäppäimet" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Käynnistyksen päiväys/aika-asetus" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "järjestelmä" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "etukäteen asetettu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "yyyymmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Kieli" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Näytä tähdet" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Värit" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Tähtisumujen nimet" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Tähtisumujen merkit" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Linnunradan taso" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efektit" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Koon muuttaminen käsin" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Magnitudin mittakaavakerroin" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Linnunradan kirkkaus:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Tähtisumujen nimien tiheys:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Suurennuksen kesto:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Osoittimen aikakatkaisu:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Maiseman asettaminen määrittelee sijainnin" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Suorita paikallinen komentosarja" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Keskeytä suoritettava komentosarja" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD-komentosarja" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Ylläpito" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Hae oletusasetukset" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Tallenna nykyiset asetukset" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Sammuta" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[ei TUI-solmua]" @@ -6547,16 +6904,16 @@ "hakuja verkkotietokannasta. Edelleen kehitteltävänä." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Kysely MPC:n pikkuplaneettapalvelusta %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Kyselyn onnistuessa vain yksi tulos palautetaan." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6564,7 +6921,7 @@ "Sekä komeettoja että asteroideja voidaan tunnistaa numerolla, nimellä tai " "tilapäisellä tunnuksella." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6751,40 +7108,46 @@ msgid "Solar System" msgstr "Aurinkokunta" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Historialliset supernovat" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Laajennus, joka näyttää muutamia 10 magnitudia kirkkaampia historiallisia " -"supernovia." +"Tämä laajennos mahdollistaa joidenkin kirkkaiden supernovien katselemisen." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Supernovan tyyppi: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Enimmäiskirkkaus: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Historialliset supernovat -laajennus" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" +"Tämä laajennos mahdollistaa joidenkin kirkkaiden supernovien katselemisen: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Laajennus näyttää muutamia 10 magnitudia kirkkampia historiallisia " -"supernovia: " +"Kaikki nämä supernovat ovat %1 kirkkaampia ollessaan kirkkaimmillaan." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Valokäyrät" @@ -6806,7 +7169,7 @@ msgstr "Kiitokset" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6821,14 +7184,14 @@ msgstr "Teoreettisen ja kokeellisen fysiikan instituutti" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "Venäjällä" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6838,8 +7201,9 @@ "muodosta, katso %1lisätietoja%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Seuraava päivitys: %1 päivää" @@ -6857,29 +7221,116 @@ msgstr "Historialliset supernovat -laajennuksen asetukset" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Päivitä luettelo internetistä" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Päivitä internetlähteistä" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Päivitysväli (päivää):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[seuraavan päivityksen tiedot]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Kirkkaat novat" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "Laajennos näyttää joitakin kirkkaimpia linnunradan novia." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Tyyppi: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Kirkkaat novat -laajennos" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"Voit etsiä novia hakutyökalulla syöttämällä novan designaation tai nimen " +"(esim. 'Nova Cygni 1975' tai 'V1500 Cyg')." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"Tämä laajennos käyttää hyvin yksinkertaista mallia novien valokäyrien " +"laskemiseen." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Tämä malli perustuu aikaan jona magnitudi himmenee %1 magnitudia " +"enimmäisarvosta, jossa %1 on 2, 3, 6 ja 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Jos novalla ei ole magnitudin himmentymisarvoa, laajennos käyttää sille " +"yleisiä arvoja." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Jos haluat lukea enemmän tästä laajennuksesta, sen historiasta ja luettelon " +"muodosta, katso %1lisätietoja%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Novat on päivitetty" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Kirkkaiden novien asetukset" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Kirkkaat novat -laajennuksen asetukset" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kvasaarit" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6898,11 +7349,11 @@ msgid "Z (redshift): %1" msgstr "Z (punasiirtymä): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Kvasaarit-laajennus" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6912,40 +7363,50 @@ "Luettelo kvasaareista on julkaisusta \"Quasars and Active Galactic Nuclei\" " "(13. painos)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Kvasaarit on päivitetty" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Kvasaarien asetukset" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Kvasaarit-laajennuksen asetukset" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Kvasaarien näyttäminen" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Kvasaarien asetukset" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Näytä kaikki kvasaarit ilman nimiä" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Näytä kvasaarien jakauma" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Näytä aina käynnistyessä" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Näytä kvasaarit-painike alapalkissa" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsarit" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7070,11 +7531,11 @@ "yksittäinen neutronitähti, jolla on sykkivä terminen röntgen-emissio, muttei " "havaittavaa radioemissiota" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Pulsarit-laajennus" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7085,67 +7546,71 @@ "(Manchester, R. N., Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, " "1993-2006 (2005) (%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Huomautus" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "pulsarien tunnuksissa on etuliite 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Kiitokset" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "PuÅ¡tÅ¡inon radioastronominen observatorio" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Nancayn radioastronominen observatorio" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "Ranskassa" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsarit on päivitetty" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Pulsarien asetukset" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Pulsarit-laajennuksen asetukset" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Pulsarien näyttäminen" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Pulsarien asetukset" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Näytä kaikki pulsarit ilman nimiä" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Näytä pulsarien jakauma" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Näytä pulsarit-painike alapalkissa" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Eksoplaneetat" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7154,71 +7619,71 @@ "Eksoplaneettojen tiedot ovat koottu 'Extrasolar Planets Encyclopaedia' -" "sivutolta osoitteessa exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metallisuus" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Massa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Säde" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Efektiivinen lämpötila: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Eksoplaneetta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Kiertoaika" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "päivää" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Isoakselin puolikas" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Eksentrisyys" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inklinaatio" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Kulmaetäisyys" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Löytövuosi" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Eksoplaneetat-laajennus" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7229,7 +7694,7 @@ "Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7238,43 +7703,133 @@ "Jos haluat lukea enemmän laajennuksesta, sen historiasta ja luettelon " "muodosta, katso %1lisätietoja%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "Yleisiä ammattimaisia websivustoja eksoplaneettoihin liittyen" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Eksoplaneetat: XKCD 1071:n interaktiivinen versio" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (Eksokuiden metsästys keplerillä)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" +"Eksoplaneetat kahden ja useamman tähden järjestelmissä (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Eksoplaneetoiden nimeäminen (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "Aktiivisesti eksoplaneettoja tutkivia astronomeja ja ryhmiä" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "päivitetty: 16. huhtikuuta 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "Eksoplaneetta-datan tutkija" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "Anglo-Australialainen planeettojen etsintä" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Geneven eksoplaneettojen etsinnän ohjelmia" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Optisen pitkäkantainterferometrin uutisia)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "NASA:n eksoplaneettojen etsintäohjelma" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Pulsarien planeetat" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "NASA:n eksoplaneetta-arkisto" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "IAU:n komissio 53: eksoplaneetat" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "The Habitable Zone Gallery" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - The Search for Another Earth" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Avoin eksoplaneettaluettelo" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "Elinkelpoisten eksoplaneettojen luettelo" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Eksoplaneetat on päivitetty" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Eksoplaneettojen asetukset" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Eksoplaneetat-laajennuksen asetukset" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Päivitä eksoplaneettojen tiedot internetistä" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Eksoplaneetojen näyttö" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Eksoplaneettojen asetukset" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" "Näytä kaikki kaikki eksoplaneettoja sisältävät systeemit ilman merkintöjä" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Näytä eksoplaneettojen jakauma" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Näytä eksoplaneetat niiden löytöpäivästä alkaen" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Eksoplaneettojen löytämisen aikajana" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Näytä eksoplaneetat-painike alapalkissa" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Tietoja" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Havaittavuusanalyysi" @@ -7297,185 +7852,179 @@ "mainittujen suureiden selitykset löytyvät asetusikkunan 'Tietoja'-" "välilehdeltä." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Tammi" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Helmi" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Maalis" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Huhti" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Touko" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Kesä" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Heinä" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Elo" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Syys" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Loka" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Marras" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Joulu" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Laskee %1 (%2 kuluttua)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Nousi %1 (%2 sitten)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Laski %1 (%2 sitten)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Nousee %1 (%2 kuluttua)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Sirkumpolaarinen (näkyy aina)." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Ei nouse." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Korkeimmillaan %1 (%2 kuluttua) %3 asteessa." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Korkeimmillaan %1 (%2 sitten) %3 asteessa." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Kohde ei ole havaittavissa" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Ei akronikaalista tai kosmista nousua/laskua." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Suurin elongaatio: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Suurin kulmaetäisyys Auringosta: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (%1 asteessa)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Akronikaalinen nousu/lasku" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Ei akronikaalista nousua/laskua." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Kosminen nousu/lasku" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Ei kosmista nousua/laskua." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Havaittavissa läpi vuoden." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Ei havaittavissa pimeään yöaikaan." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Yöt horisontin yläpuolella: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "TÄNÄÄN:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "TÄNÄ VUONNA:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Edellinen täysikuu: %1 %2 kello %3.%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Seuraava täysikuu: %1 %2 kello %3.%4. " @@ -7899,6 +8448,9 @@ #~ msgid "Correct for light travel time: " #~ msgstr "Korjaa valon matka-aika: " +#~ msgid "Nebulas" +#~ msgstr "Tähtisumut" + #~ msgid "Form" #~ msgstr "Muoto" @@ -7920,6 +8472,9 @@ #~ msgid "Art brightness: " #~ msgstr "Kuvien voimakkuus: " +#~ msgid "Nebulas background images" +#~ msgstr "Tähtisumujen taustakuvat" + #~ msgid ":" #~ msgstr ":" @@ -8039,6 +8594,12 @@ #~ msgstr "" #~ "Phobos pimentää auringon nähtynä Olympys Monsilta 10. tammikuuta 2068." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Näytönsäästäjä aurinkokunnan erilaisista tapahtumista. Kaikkiaan 171 " +#~ "tapahtumaa!" + #~ msgid "Look at Sun from big planets of Solar system and Pluto." #~ msgstr "Näkymä aurinkoon aurinkokuntamme isoilta planeetoilta sekä Plutosta." @@ -8049,6 +8610,16 @@ #~ "Komentosarja esittelee analemman - Auringon vuotuisen liikkeen muodostaman " #~ "kuvion taivaalla." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Päivitetty %1/%2 satelliitti(a); %3 puuttuu" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Päivitä TLE-listat internetlähteistä" + +#~ msgid "TLE data:" +#~ msgstr "TLE-data:" + #~ msgid "0 deg." #~ msgstr "0 astetta" @@ -8122,5 +8693,31 @@ #~ msgid "Actual field of view provided by this ocular/telescope combination" #~ msgstr "Tämän okulaari/kaukoputki -yhdistelmän antama todellinen näkökenttä" +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORADin kaksirivinen rataelementtitieto" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Pilkulla erotettu ryhmälista" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Laajennus, joka näyttää muutamia 10 magnitudia kirkkaampia historiallisia " +#~ "supernovia." + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Laajennus näyttää muutamia 10 magnitudia kirkkampia historiallisia " +#~ "supernovia: " + +#~ msgid "Display mode for quasars" +#~ msgstr "Kvasaarien näyttäminen" + +#~ msgid "Display mode for pulsars" +#~ msgstr "Pulsarien näyttäminen" + #~ msgid "Sun altitude at twilight" #~ msgstr "Auringon korkeus hämärän päättyessä" diff -Nru stellarium-0.12.1/po/stellarium/fil.po stellarium-0.12.4/po/stellarium/fil.po --- stellarium-0.12.1/po/stellarium/fil.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/fil.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2011-04-14 15:33+0000\n" "Last-Translator: Ron Philip Gutierrez \n" "Language-Team: Filipino \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "May-akdâ: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Kinaroroónan: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planéta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Uri: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Sukat: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxy" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Open cluster" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Globular cluster" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebula" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Hindi kilala" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Di-dokumentadong uri" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Layô: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Layô: %1 Light Year" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -651,52 +743,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Piliin ang directory para sa mga screenshot" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Mga May-Akda" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "May-akdâ" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Pahintulot" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Running script: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Pinatatakbo ang script: [wala]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -704,23 +797,23 @@ "Tapos nang i-download ang mga bagong talaan ng mga bituin!\n" "Isara at buksan muli ang Stellarium upang makita ang mga ito." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Kinukuha ang talaan %1 ng %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -728,7 +821,7 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -737,11 +830,11 @@ "Pagkakamali sa pag-download %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -751,115 +844,123 @@ "Sira ang file." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1026,49 +1127,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Mga Dungawan" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Walang paglalarawan" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Walang mga bulalakaw" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Bagong Kinaroroónan" @@ -1171,19 +1276,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1199,30 +1304,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Araw" @@ -1239,12 +1350,12 @@ msgstr "Lupa" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Buwan" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1342,7 +1453,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1640,239 +1751,268 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreano" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesian" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Kanluranin" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1882,1502 +2022,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Fetsa at Oras" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Magdagdag ng 1 sidereal day" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Magdagdag ng 1 sidereal week" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Magdagdag ng 1 solar day" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Magdagdag ng 1 solar hour" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Magdagdag ng 1 solar week" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Bawasan ang bilis ng oras" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Dagdagan ang bilis ng oras" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Itakdâ sa ngayon ang oras" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Magbáwas ng ng 1 sidereal day" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Magbáwas ng ng 1 sidereal week" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Magbáwas ng 1 solar day" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Magbáwas ng 1 solar hour" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Magbáwas ng 1 solar week" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Himpapawid" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Sining ng konstelasyon" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Hangganan ng mga konstelasyon" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Mga Guhit ng konstelasyon" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Hamog" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Lupa" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Mga Bituin" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Iba Pa" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Lumísan" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Paggalaw at Pagpilî" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Window ng mga Kaayusan" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Dungawan ng fetsa/oras" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Dungawan ng kinaroroonan" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Dungawan ng Paghahanap" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3403,7 +3579,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Kinaroroonan" @@ -3419,10 +3595,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Tanggalin" @@ -3431,7 +3607,7 @@ msgstr "Idagdag sa talaan" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitud:" @@ -3442,12 +3618,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longhitud:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3471,363 +3647,407 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Mga Papípilian" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Mga Papípilian" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Tingnan" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Langit" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Mga Planeta" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Ipakita ang mga planeta" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Kutitap:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Mga Bulalakaw" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Mga Konstelasyon" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Ipakita ang mga guhit" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Ipakita ang mga hangganan" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Ipakita ang sining" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3877,7 +4097,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3893,11 +4113,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Wala" @@ -4039,7 +4256,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4051,182 +4268,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Huwag ituloy" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Impormasyon" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4394,176 +4621,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4635,64 +4862,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4700,7 +4932,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4711,14 +4943,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4727,305 +4959,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5033,25 +5334,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5059,17 +5360,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5077,41 +5378,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5119,338 +5422,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5486,22 +5832,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5884,62 +6230,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6093,7 +6439,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6111,7 +6457,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6127,154 +6473,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Wika" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6307,22 +6653,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6491,36 +6837,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6538,7 +6891,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6552,14 +6905,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6567,8 +6920,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6586,29 +6940,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6624,51 +7055,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6788,11 +7229,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6800,137 +7241,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6938,49 +7383,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6996,185 +7530,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/fj.po stellarium-0.12.4/po/stellarium/fj.po --- stellarium-0.12.1/po/stellarium/fj.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/fj.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Fijian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:13+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/fr.po stellarium-0.12.4/po/stellarium/fr.po --- stellarium-0.12.1/po/stellarium/fr.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/fr.po 2013-09-23 06:20:13.000000000 +0000 @@ -17,29 +17,29 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-04 15:07+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-10 17:51+0000\n" "Last-Translator: Nicolas Martignoni \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:13+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Méridien" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Écliptique" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Équateur" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizon" @@ -47,46 +47,46 @@ msgid "Galactic Plane" msgstr "Plan galactique" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Auteur : " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Situation : " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planète : " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Type : %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitude : %1 (extinction à : %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitude : %1" @@ -96,114 +96,114 @@ msgid "Size: %1" msgstr "Taille : %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxie" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Amas ouvert" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Amas globulaire" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nébuleuse" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nébuleuse planétaire" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Nébuleuse obscure" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Amas associé à une nébulosité" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Inconnu" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Type non documenté" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitude absolue : %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Écliptique topocentrique (de la date) : %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Obliquité (de la date, pour la Terre) : %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distance : %1 UA (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distance : %1 UA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diamètre apparent : %1, avec anneaux : %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diamètre apparent : %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Période sidérale : %1 jours (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Jour sidéral : %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Jour solaire moyen : %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Angle de phase : %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Élongation : %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Phase : %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Illumination : %1%" @@ -214,7 +214,7 @@ msgstr "Désignation provisoire : %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "étoile" @@ -222,55 +222,132 @@ #: src/core/modules/StarWrapper.cpp:57 #, qt-format msgid "Magnitude: %1 (B-V: %2)" -msgstr "Magnitude : %1 (B-V: %2)" +msgstr "Magnitude : %1 (B-V : %2)" #: src/core/modules/StarWrapper.cpp:60 #, qt-format msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnitude apparente : %1% (par extinction)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "étoile variable éruptive" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "étoile variable pulsante" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "étoile variable par rotation" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "étoile variable cataclysmique" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "système binaire à éclipses" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "étoile variable" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "étoile double" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Type : %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitude : %1 (extinction à  : %2 ; B-V : %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitude : %1 (B-V : %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" +"Plage de magnitude : %1%2%3 (système photométrique : %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" +"Plage de magnitude : %1%2%3/%4 (système photométrique : %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Type spectral : %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distance : %1 années-lumière" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallaxe : %1″" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Époque de luminosité minimale : %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Époque de luminosité maximale : %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Période : %1 days" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Prochain minimum : %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Prochain maximum : %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Durée de l'éclipse : %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Durée du lever : %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Vaisseau spatial" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "Correction désactivée. À n'utiliser que si vous savez ce que vous faites !" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -282,7 +359,7 @@ "Relativity Confirmed by Ancient Solar Eclipses (%1). Pour plus " "d'informations, voir %2ici%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -291,7 +368,7 @@ "Cette équation empirique a été publiée par G. M. Clemence dans l'article " "On the system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -305,7 +382,7 @@ "Calculators. Elle est également utilisée dans le logiciel SunTracker " "Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -315,7 +392,7 @@ "adoptée dans l'Astronomical Ephemeris ainsi que dans le Canon " "of Solar Eclipses de Mucke & Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -327,7 +404,7 @@ "601 av. J.-C. et 1649 apr. J.-C. Les mêmes relations ont été adoptées " "implicitement dans les tables de syzygie de Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -338,7 +415,7 @@ "l'article The accelerations of the earth and moon from early " "astronomical observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -347,7 +424,7 @@ "Cette équation a été publiée par F. R. Stephenson dans l'article Pre-" "Telescopic Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -361,7 +438,7 @@ "period 1800-1975 (%1) après adaptation à l'aide de données publiées par " "Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -371,7 +448,7 @@ "Planetary Programs and Tables from -4000 to +2800 (1986) et dans le " "logiciel de planétarium RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -382,11 +459,11 @@ "l'article Long-term changes in the rotation of the earth - 700 B.C. to " "A.D. 1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "Cet algorithme est utilisé dans le logiciel de planétarium Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -396,7 +473,7 @@ "Canon of Solar Eclipses: 1986-2035 (1987) et dans son ouvrage Fifty " "Year Canon of Lunar Eclipses: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -405,7 +482,7 @@ "Cette formule a été établie par K.M. Borkowski (%1) à partir de l'analyse " "des récits de 31 éclipses de Soleil entre 2137 av. J.-C. et 1715 apr. J.-C." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -418,7 +495,7 @@ "delta T E.T.-U.T. in the period 1800-1988 (%1) après adaptation à " "l'aide de valeurs données par Stephenson & Morrison (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -428,7 +505,7 @@ "version abrégée de la théorie lunaire ELP 2000-85 dans leurs Lunar " "Tables and Programs from 4000 B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -439,7 +516,7 @@ "l'article Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD " "1990 (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -448,7 +525,7 @@ "F. R. Stephenson a publié cette formule dans son livre Historical " "Eclipses and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -459,7 +536,7 @@ "variante de Chapront, Chapront-Touzé & Francou (1997) pour les dates en " "dehors de l'intervalle 1620–2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -468,7 +545,7 @@ "Le JPL Solar System Dynamics Group du Jet Propulsion Laboratory de la NASA " "utilise cette formule pour son application web interactive %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -477,7 +554,7 @@ "Ce polynôme a été publié par J. Meeus et L. Simons dans l'article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -487,7 +564,7 @@ "O. Montenbruck & T. Pfleger dans la quatrième édition de Astronomy on " "the Personal Computer (2000)." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -499,7 +576,7 @@ "et dans leurs Calendrical Tabulations (2002). Il se fonde sur " "l'ouvrage de Jean Meeus Astronomical Algorithms (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -510,7 +587,7 @@ "Stephenson dans l'article Historical values of the Earth's clock error " "%1T and the calculation of eclipses (%2) avec un addendum dans (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -524,7 +601,7 @@ "relation est fondée sur une possible périodicité décrite par Stephenson " "(%2). Pour plus d'information, voir %3ici%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -540,11 +617,33 @@ "(2006). Elle est aussi utilisée par SOLEX, un logiciel de calcul " "d'éphémérides solaires, lunaires et planétaires." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Utilisée par défaut." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Cette équation de B. Banjevic, sur la base de Stephenson & Morrison (1984), " +"a été publiée dans l'article Ancient eclipses and dating the fall of " +"Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Cette solution de S. Islam, M. Sadiq et M. S. Qureshi, sur la base de Meeus " +"& Simons (2000), a été publiée dans l'article Error Minimization of " +"Polynomial Approximation of DeltaT (%1) et révisée en 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -553,15 +652,15 @@ "Une expression quadratique pour le calcul de %1T. Les coefficients sont " "définis par l'utilisateur." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Erreur" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "avec des valeurs erronées en dehors de cet intervalle" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -569,22 +668,23 @@ "avec une erreur moyenne inférieure à 1 seconde, erreur max. de 1.9 s, et des " "valeurs erronées en dehors de cet intervalle" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "avec des valeurs nulles en dehors de cet intervalle" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "avec une précision typique de 1 seconde et des valeurs nulles en dehors de " "cet intervalle" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Intervalle d'utilisation valide : entre les années %1 et %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Intervalle d'utilisation valide : entre les années %1 et %2." @@ -754,52 +854,53 @@ msgid "Found" msgstr "Trouvé" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Sélectionner le dossier de sauvegarde des captures d'écran" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Champ de vision au démarrage : %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Direction de la vue au démarrage (Az/Haut) : %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Auteurs" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contact" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Auteur" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licence" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Script en cours : " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Script en cours : [aucun]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -807,16 +908,16 @@ "Le téléchargement des nouveaux catalogues d'étoiles est terminé !\n" "Redémarrez Stellarium pour les afficher." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Tous les catalogues d'étoiles ont été installés." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Obtenir le catalogue %1 de %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -825,7 +926,7 @@ "Téléchargement de %1…\n" "(Vous pouvez fermer cette fenêtre.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -836,7 +937,7 @@ "Nombre d'étoiles : %2 million(s)\n" "Magnitudes : %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -845,11 +946,11 @@ "Erreur lors du téléchargement de %1 :\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Vérification de l'intégrité du fichier…" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -859,115 +960,123 @@ "Le fichier est corrompu." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algorithme pour" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Pas de correction" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touzé & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (avec Chapront, Chapront-Touzé & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Équation personnalisée de %1T" @@ -1141,49 +1250,53 @@ msgid "OSX Developer: %1" msgstr "Développeur OS X : %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Fenêtre de script" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Fenêtres" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Espace" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1 m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Aucune description" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Pas d'étoiles filantes" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Fréquence normale" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Fréquence standard des Perséides" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Taux de pluie d'étoiles filantes" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Fréquence exceptionnelle des Léonides" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Fréquence record (Léonides 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nouvel emplacement" @@ -1289,19 +1402,19 @@ msgid "starchart" msgstr "carte du ciel" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Erreur de la recherche Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Recherche Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Université de Strasbourg (France)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Université de Harvard (USA)" @@ -1317,30 +1430,38 @@ msgid "Alternative shortcut" msgstr "Raccourci alternatif" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Équation personnalisée pour %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Une équation typique pour le calcul de %1T ressemble à" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "où" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "année" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Ce système ne gère pas OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Votre ordinateur ne dispose pas de la version minimale requise OpenGL 1.2. " +"Veuillez mettre à jour les pilotes de votre carte graphique." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Soleil" @@ -1357,12 +1478,12 @@ msgstr "Terre" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Lune" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1460,7 +1581,7 @@ msgstr "Métis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturne" @@ -1758,203 +1879,232 @@ msgstr "Inuite" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Védique indienne" + +#: src/translations.h:171 msgid "Korean" msgstr "Coréenne" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Scandinave" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynésienne" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tonguienne" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Occidentale" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Arbres" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane Ridge" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Océan" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Visite des paysages" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Éclipse de Lune partielle" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Éclipse de Lune totale" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Écran de veille" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Éclipse solaire de 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Script de démarrage" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiaque" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Triple lever et coucher de Soleil sur Mercure" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Éclipse double depuis Déimos en 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Éclipse double depuis Déimos en 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Éclipse depuis Olympus Mons le 10 janvier 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Occultation de la Terre et Jupiter en 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 transits et 2 éclipses vues de Deimos en 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Écran de veille du Système solaire" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Visite des constellations" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Le Soleil depuis différentes planètes" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Meilleures vues de la Terre depuis d'autres corps célestes" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Transit de Vénus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemme" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Tour des traditions célestes" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Événements terrestres vus de Mercure" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Événements terrestres vus de Vénus" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Événements terrestres vus de Mars" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Plus grandes élongations et luminosités de la Terre vues de Mars" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Plus grandes élongations de la Terre et de Mars, vues de Jupiter" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Faire le tour des paysages installés" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Une visite de chaque tradition céleste installée" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Script pour démontrer une éclipse partielle de Lune." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Script pour faire une démonstration d'une éclipse de Lune totale." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Visite lente et infinie du ciel en regardant des objets au hasard." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "L'éclipse totale de Soleil de 2009 à Rangpur, Bangladesh." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Script s'exécutant automatiquement au démarrage" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1964,7 +2114,7 @@ "celles qui se trouvent le long de la ligne que le Soleil parcourt au cours " "d'une année sur la sphère céleste." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1973,7 +2123,7 @@ "certains points, le soleil se lèvera et se couchera 3 fois en un seul jour " "mercurien." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1982,7 +2132,7 @@ "l'éclipse en premier. A lieu entre le Scorpion et le Sagittaire le 26 avril " "2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1991,12 +2141,12 @@ "l'éclipse en premier. A lieu entre le Taureau et les Gémeaux le 23 juillet " "2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Éclipse de Soleil par Phobos, vue depuis Olympus Mons, le 10 janvier 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -2007,7 +2157,7 @@ "Jupiter le même jour sont très rares. En voici une qui a lieu le 23 janvier " "2048, en vitesse réelle." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2023,34 +2173,33 @@ "réapparaît, il est encore éclipsé par l'ombre de Mars et s'éclaire un peu " "plus tard." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Écran de veille de divers événements dans le Système solaire. 171 événements " -"au total !" +"Diaporama de divers événements du Système solaire. En tout 187 événements !" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Une visite des constallations de l'ouest" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" "Vue du Soleil depuis les grandes planètes du système solaire et depuis Pluton" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "Les plus belles vues de la Terre depuis d'autres astres du système solaire " "durant le 21e siècle." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "Transit de Vénus vu de Sydney (Australie), le 6 juin 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." @@ -2058,7 +2207,7 @@ "Une démonstration de l'analemme, le parcours du Soleil dans le ciel au cours " "de l'année." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2066,1468 +2215,1507 @@ "Flash de la supernova observée par Tycho Brahe en 1572. Le plugin Supernovae " "doit être activé." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" +"Plus grandes élongations et luminosités de la Terre vues de Mars, entre 2000 " +"et 3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" +"Plus grandes élongations de la Terre vues de Jupiter, entre 2000 et 3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorre" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Émirats Arabes Unis" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua-et-Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albanie" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Arménie" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Antilles néerlandaises" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarctique" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentine" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa américaines" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Autriche" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australie" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaïdjan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnie-Herzégovine" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbades" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgique" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgarie" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahreïn" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Bénin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermudes" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunéi Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivie" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brésil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhoutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "île Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Bélarus" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Bélize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "îles Cocos" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "République Démocratique du Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "République Centrafricaine" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "République du Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Suisse" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Côte d’Ivoire" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "îles Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chili" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Cameroun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Chine" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombie" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbie et Monténégro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Cap Vert" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "île Christmas" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Chypre" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "République tchèque" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Allemagne" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Danemark" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominique" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "République dominicaine" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algérie" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Équateur" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonie" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Égypte" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Sahara occidental" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Érythrée" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Espagne" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Éthiopie" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlande" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "îles Fidji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "îles Malouines" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronésie" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "îles Féroé" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "France" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Royaume-Uni" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenade" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Géorgie" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guyane française" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Groenland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambie" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinée" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Guinée équatoriale" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grèce" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Géorgie du Sud et ÃŽles Sandwich du Sud" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinée-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "îles Heard et McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Croatie" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haïti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hongrie" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonésie" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlande" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israël" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Inde" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Territoire britannique de l'océan Indien" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islande" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italie" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaïque" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordanie" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japon" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirghizistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Cambodge" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comores" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint-Christophe-et-Niévès" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Corée du Nord" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Corée du Sud" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Koweït" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "îles Caïman" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Liban" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Sainte-Lucie" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Libéria" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lituanie" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxembourg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Lettonie" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libye" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maroc" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavie" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "îles Marshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macédoine" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Birmanie" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolie" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "îles Mariannes du Nord" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritanie" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malte" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "île Maurice" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldives" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexique" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaisie" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibie" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nouvelle-Calédonie" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "île Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigéria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Pays-Bas" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norvège" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Népal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nouvelle-Zélande" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Pérou" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polynésie française" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papouasie-Nouvelle-Guinée" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Philippines" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Pologne" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint-Pierre-et-Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "îles Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Porto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Territoires palestiniens" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palaos" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "La Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Roumanie" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbie" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Russie" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Arabie saoudite" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "îles Salomon" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Soudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Suède" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapour" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Sainte-Hélène" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovénie" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard et île Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovaquie" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Saint-Marin" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Sénégal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalie" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tomé et Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syrie" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "îles Turques-et-Caïques" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Tchad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Terres australes et antarctiques françaises" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thaïlande" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadjikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Timor oriental" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkménistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisie" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turquie" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinité-et-Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taïwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzanie" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraine" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Ouganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "îles mineures éloignées des États-Unis" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "États-Unis" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Ouzbékistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatican" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint-Vincent-et-les-Grenadines" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Vénézuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "îles Vierges britanniques" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "ÃŽles Vierges des États-Unis" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Viêtnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis-et-Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yémen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Yougoslavie" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Afrique du Sud" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambie" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Date et heure" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Ajouter 1 jour sidéral" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Ajouter 1 mois sidéral" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Ajouter 1 semaine sidérale" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Ajouter 1 année sidérale" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Ajouter 1 siècle sidéral" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Ajouter 1 jour solaire" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Ajouter 1 heure solaire" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Ajouter 1 semaine solaire" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Ajouter 1 mois synodique" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Ajouter 1 mois draconitique" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Ajouter 1 mois anomalistique" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Ajouter 1 mois tropique moyen" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Ajouter 1 année draconitique" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Ajouter 1 année tropique moyenne" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Ajouter 1 siècle tropique moyen" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Ralentir la vitesse d'exécution du script" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Ralentir le temps" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Ralentir le temps (un peu)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Accélérer la vitesse d'exécution du script" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Accélérer le temps" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Accélérer le temps (un peu)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Suspendre l'exécution du script" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Reprendre l'exécution du script" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Revenir à l'heure actuelle" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Exécuter le script à la vitesse normale" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Vitesse réelle du temps" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Arrêter le temps" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Arrêter l'exécution du script" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Soustraire 1 jour sidéral" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Soustraire 1 mois sidéral" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Soustraire 1 semaine sidérale" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Soustraire 1 année sidérale" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Soustraire 1 siècle sidéral" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Soustraire 1 jour solaire" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Soustraire 1 heure solaire" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Soustraire 1 semaine solaire" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Soustraire 1 mois synodique" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Soustraire 1 mois draconitique" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Soustraire 1 mois anomalistique" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Soustraire 1 mois tropique moyen" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Soustraire 1 année draconitique" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Soustraire 1 année tropique moyenne" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Soustraire 1 siècle tropique moyen" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Options d'affichage" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Miroir horizontal" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Mode plein écran" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosphère" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Grille azimutale" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Points cardinaux" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Dessins des constellations" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Limites des constellations" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Noms des constellations" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Lignes des constellations" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Photos des nébuleuses" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Images des objets du ciel profond" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Grille écliptique J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ligne de l'écliptique" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ligne de l'équateur" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Grille équatoriale" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Grille équatoriale J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Brume" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Grille galactique" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Plan galactique" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Sol" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Ligne d'horizon" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Ligne méridienne" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nébuleuses" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Objets du ciel profond" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Mode nuit" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Noms des planètes" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Orbites des planètes" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Chemins des planètes" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Étoiles" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Noms des étoiles" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Miroir vertical" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Divers" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Masquer automatiquement la barre de boutons horizontale" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Masquer automatiquement la barre de boutons verticale" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Aller à la page d'accueil" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Quitter" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Copier dans le presse-papier les informations de l'objet sélectionné" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Enregistrer une capture d'écran" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Inverser la monture équatoriale/azimutale" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Afficher l'interface graphique" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Mouvement et Sélection" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centrer sur l'objet sélectionné" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Définir la planète actuelle comme planète par défaut" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Suivre l'objet" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zoom sur l'objet sélectionné" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zoom arrière" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Goniomètre" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Graduation azimutale" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Afficher les exoplanètes" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Fenêtre de configuration des exoplanètes" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observabilité" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Fenêtre de configuration de l'observabilité" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Plugin de configuration des oculaires" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Vue oculaire" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Montrez les réticules" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Menu contextuel des oculaires" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Cadre du capteur CCD" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Viseur Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Télescope suivant" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Oculaire suivant" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Télescope précédent" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Oculaire précédent" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Afficher les pulsars" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Fenêtre de configuration des pulsars" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Afficher les quasars" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Fenêtre de configuration des quasars" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Fenêtre de configuration des satellites" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Satellites" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Noms des satellites" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" -msgstr "Fenêtre de configuration des supernovae historiques" +msgstr "Configuration du plugin Supernovae historiques" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Configuration du plugin Novae" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Pointer le télescope sur des coordonnées spécifiées" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Afficher les statistiques de rendu graphique" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripts" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Lancer les scripts de paysage à partir d'un fichier" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Afficher et zoomer sur la lune" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Configuration générale" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Date et heure" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Aide" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Situation" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Recherche" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Fenêtre de raccourcis" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Affichage" @@ -3553,7 +3741,7 @@ msgstr "Actualiser" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Situation" @@ -3569,10 +3757,10 @@ msgid "Return to default" msgstr "Revenir aux paramètres par défaut" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Supprimer" @@ -3581,7 +3769,7 @@ msgstr "Ajouter à la liste" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitude :" @@ -3594,12 +3782,12 @@ "minutes, secondes), p. ex. : +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitude :" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitude :" @@ -3623,365 +3811,414 @@ msgid "Planet:" msgstr "Planète :" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Recherche d'objet" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Chercher un objet ou une position" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "La touche tab permet de sélectionner les éléments trouvés" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alpha" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "bêta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zêta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "êta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "thêta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rhô" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "oméga" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Lettres grecques pour les désignations de Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objet" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "AD/Dec (J2000) :" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Position" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Certains objets ne seront trouvés qu'après activation du plugin adéquat" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "Noms en anglais" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Chercher dans la liste..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listes" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Base de données astronomique en ligne SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Recherche élargie avec SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Serveur :" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Options de recherche" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "N'utiliser la complétion qu'à partir du début des mots" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Options" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "Noms en anglais" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Chercher dans la liste..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listes" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Affichage" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Ciel" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Repères" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Paysage" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Mythologie" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Noms et marqueurs" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planètes" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Noms et marqueurs des objets du ciel profond (amas d'étoiles, galaxies et " +"nébuleuses)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "DSOs" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planètes et satellites" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Afficher les planètes" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Afficher les noms des planètes" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Afficher les orbites des planètes" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simuler la vitesse de la lumière" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Augmenter la taille de la Lune" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Changer de paysage lorsque l'on change de planète d'observation" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Sélectionner automatiquement le paysage" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Afficher l'atmosphère" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Pollution lumineuse :" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "pression, température, coefficient d'extinction" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Paramètres de réfraction/extinction…" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Échelle absolue :" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Échelle relative :" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Luminosité de la Voie Lactée :" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Scintillement :" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Diminuer la luminosité des étoiles peu brillantes quand un objet très " "brillant est visible" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adaptation visuelle dynamique" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Étoiles filantes" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Taux horaire zénithal" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "THZ :" +msgstr "ZHR" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Limiter les magnitudes (pour observateurs à l'Å“il nu ou au jumelles)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Limiter les magnitudes" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Étoiles jusqu'à la magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Limiter la magnitude des étoiles" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Nébuleuses jusqu'à la magnitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Limiter la magnitude des objets du ciel profond (amas d'étoiles, galaxies et " +"nébuleuses)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Constellations" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Afficher les lignes" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Afficher les noms" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Afficher les limites" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Afficher les dessins" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Luminosité des dessins :" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Sphère céleste" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Afficher l'équateur" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Afficher le méridien" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Afficher la ligne d'horizon" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Afficher l'écliptique" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Afficher la ligne du plan galactique" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projection" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Ajouter/supprimer des paysages…" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Afficher le sol" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Afficher la brume" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Utiliser les planètes et positions associées" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Utiliser ce paysage par défaut" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Utiliser les réglages de luminosité pour les paysages" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Utiliser cette mythologie par défaut" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visible" @@ -4036,7 +4273,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "La direction dans laquelle vous regardez quand Stellarium démarre" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informations sur l'objet sélectionné" @@ -4052,11 +4289,8 @@ msgid "Display no information" msgstr "Ne pas afficher d'information" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Aucune" @@ -4200,7 +4434,7 @@ msgstr "secondes" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Date et heure au lancement du programme" @@ -4212,42 +4446,46 @@ msgid "Other:" msgstr "Autre :" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Utiliser l'heure locale actuelle" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "Utiliser l'heure actuelle" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" "Utiliser la date et l'heure de l'ordinateur lors du démarrage de Stellarium" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Date et heure de l'ordinateur" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "Utiliser cette heure du jour lors du démarrage de Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Cette heure du jour :" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Correction du temps" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Modifier équation" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Options du planétarium" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4255,53 +4493,53 @@ "La distorsion de miroir sphérique est utilisée lors de la projection de " "Stellarium sur un miroir sphérique de planétarium bon marché." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Distortion de miroir sphérique" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" "Tout masquer à l'extérieur d'un cercle au centre de la vue principale" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Cache circulaire" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Cacher les autres constellations quand vous en sélectionnez une" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Sélection des constellations une par une" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Aligner les noms avec l'horizon" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Noms soumis à la gravité" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Afficher le bouton d'affichage des photos des nébuleuses." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Afficher le bouton photos des nébuleuses." -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" "Afficher les boutons d'inversion verticale et horizontale de l'image." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Afficher les boutons d'inversion d'image" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4309,93 +4547,101 @@ "Une fois activée, la touche \"zoom arrière automatique\" va aussi définir le " "point de vue initial" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Le zoom arrière automatique renvoie au point de vue initial" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Afficher les ombres solaires sur les planètes et les satellites (nécessite " +"OpenGL version 2 ou supérieure)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Afficher les ombres solaires" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Captures d'écran" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Dossier des captures d'écran" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Inverser les couleurs" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" -msgstr "Mises à jour du catalogue d'étoiles" +msgstr "Catalogue d'étoiles" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Cliquez ici pour commencer le téléchargement" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Télécharger ce fichier pour voir encore plus d'étoiles" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Recommencer le téléchargement" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Réessayer" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" "Arrêter le téléchargement. Vous pouvez toujours le recommencer plus tard" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Annuler" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Fermer la fenêtre quand un script s'exécute" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Exécute le script sélectionné" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Arrête le script sélectionné" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Charger au démarrage" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "configurer" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Principal" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informations" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigation" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Outils" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Plugins" @@ -4571,12 +4817,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Affiche sur l'horizon une graduation de l'azimut" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculaires" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4586,164 +4832,164 @@ "grossissement et le champ de vision sont simulés). On peut aussi afficher un " "cadre de CCD et un pointeur Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Veuillez sélectionner un objet avant de passer à la vue oculaire." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Oculaire précédent" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Oculaire suivant" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Sélectionner l'&oculaire" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Afficher/cacher le &réticule" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Configurer les &oculaires" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Afficher/cacher la &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Afficher/cacher &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "CCD &précédente" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "CCD &suivante" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Choisir la CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Tourner la CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Réinitialiser la rotation" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Oculaire #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Oculaire #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Oculaire FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Oculaire aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Lentille n°%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Lentille n°%1 : %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Lentille : aucune" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Télescope #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Télescope #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Grossissement : %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensions: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Capteur #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Capteur #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Lentille" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "Lentille &précédente" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "Lentille &suivante" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Télescope" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "& Télescope précédent" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Télescope suivant" @@ -4815,66 +5061,71 @@ msgid "Apparent field of view of the ocular" msgstr "Champ apparent de l'oculaire" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Coeff. multiplicateur : %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Lentille : aucune" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Coeff. multiplicateur : non disp." -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Coeff. multiplicateur de la lentille" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Distance focale de l'oculaire" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotation: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Grossissement fourni par ces jumelles" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Champ de vision réel fourni par ces jumelles" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" "Grossissement fourni par cette combinaison oculaire/lentille/télescope" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Champ de vision réel fourni par cette combinaison oculaire/lentille/télescope" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Plugin pour les oculaires" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Version" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Lentille de Barlow" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Aperçu" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4887,7 +5138,7 @@ "vous lancerez cette application, cette section sera remplie avec quelques " "exemples afin que vous puissiez démarrer." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4905,7 +5156,7 @@ "l'écran peut être gaspillée. Je vous recommande donc de ne plus utiliser " "cette possibilité, à moins que vous pensiez en avoir besoin." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4915,7 +5166,7 @@ "soit au nord. Je n'ai pas réussi à le faire. Pour l'instant, il est aligné " "sur le haut de l'écran." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4928,120 +5179,129 @@ "concentriques de 0,5%1, 2,0%1 et 4,0%1 pour vous aider à voir ce que vous " "verriez à l'Å“il nu à travers une mire Telrad (ou équivalent)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" "Veuillez m'informer si vous rencontrez des problèmes. Amusez-vous bien!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Raccourcis" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" "Les raccourcis clavier du plugin peuvent être modifiés sur l'onglet général." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[aucune touche définie]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Affiche ou masque le cache de l'oculaire." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Ouvrir le menu de navigation" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Activer uniquement si un objet est sélectionné" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Changer l'échelle du cercle de l'image" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" +"Utiliser les limites de magnitudes aux différentes ouvertures des télescopes" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Limiter la magnitude" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Affectation des touches clavier" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Basculer la vue oculaire :" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Ouvrir un menu pop-up de navigation :" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interface" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Tableau de bord sur l'écran" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Utiliser les degrés et les minutes pour FOV et CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Général" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Oculaires" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Ajouter" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nom:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Distance focale :" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Limite du champ :" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Jumelles" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Lentilles" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Coeff. multiplicateur :" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Grossissement" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5050,74 +5310,75 @@ "Barlow). Les coefficients multiplicateurs <1 réduisent la distance focale " "(lentille Shapley)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Capteurs" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Résolution x (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Résolution y (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Largeur du capteur (mm) :" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Hauteur du capteur (mm) :" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Largeur pixel (micron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Hauteur pixel (micron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Télescopes" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diamètre:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Renversement horizontal" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Renversement vertical" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "À propos" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satellites" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5125,88 +5386,148 @@ "Prédiction de la position des satellites artificiels en orbite terrestre " "basée sur les données NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "L'ancien fichier satellites.json n'est plus compatible ; le fichier par " "défaut sera utilisé." -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "Visibles" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "Scientifiques" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "Communications" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "Navigation" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "Radio-amateurs" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "Météo" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "Géostationnaires" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "Non opérationnels" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "GPS" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "Iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Le télescope spatial Hubble" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "La Station spatiale internationale" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Catalogue #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Indicatif International" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "satellite artificiel" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Distance (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Évolution de la distance (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitude (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Sous-point (Lat./Long.) : %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Coordonnées TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "Vitesse TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Le satellite et l'observateur sont dans la lumière du Soleil." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Le satellite est visible." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Le satellite est éclipsé." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Le satellite n'est pas visible" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Plugin Satellites" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5214,18 +5535,18 @@ "Le plugin Satellites affiche la position des satellites artificiels en " "orbite autour de la Terre." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Notes pour les utilisateurs" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Les satellites et leurs orbites sont seulement visibles lorsque " "l'observateur est sur Terre" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5235,7 +5556,7 @@ "court (de l'ordre de quelques jours, semaines, voire mois dans le passé ou " "le futur). Attendez-vous à une large dérive au delà de ce laps de temps." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5245,7 +5566,7 @@ "données TLE régulièrement." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5257,7 +5578,7 @@ "tant que %4. Il sera placé dans le dossier des données utilisateur, dans " "\"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5266,11 +5587,11 @@ "fonctionnalités sont incomplètes, manquantes ou sujettes à dysfonctionnement." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" -msgstr "Mises à jours des données TLE" +msgstr "Mises à jour des données TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5280,7 +5601,7 @@ "partir de sources Internet, et, par défaut, le fera si les données " "existantes datent de plus de 72h. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5291,7 +5612,7 @@ "à partir d'un fichier de votre ordinateur. Ce fichier doit être au même " "format que les mises à jour Celestrak (voir %1 pour un exemple)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5300,11 +5621,11 @@ "termine par des caractères entre crochets, il sera supprimé avant " "utilisation des données." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Ajout des nouveaux satellites" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5317,11 +5638,11 @@ "cliquez sur le bouton '+'. Sélectionnez le(s) satellite(s) que vous " "souhaitez ajouter et sélectionnez le bouton \"Ajouter\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Notes techniques" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5329,7 +5650,7 @@ "Les positions sont calculées avec les méthodes SGP4 et SDP4 en se basant les " "données TLE du NORAD. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5338,24 +5659,26 @@ "rapport révisé Spacetrack n°3 (incluant le rapport Spacetrack n°6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Voir %1ce document%2 pour plus d'informations." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Liens" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5365,31 +5688,34 @@ "mettre \"%1\" dans le sujet du message." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Pour toute question, vous pouvez %1obtenir une réponse ici%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Les rapports de bogue peuvent être transmis %1ici%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5397,120 +5723,140 @@ "Si vous voulez faire une demande de fonctionnalité, vous pouvez créer un " "rapport de bug et fixer sa sévérité à \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" -msgstr "Mises à jour via Internet désactivées" +msgstr "Mise à jour via Internet désactivée" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Mise à jour en cours..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Prochaine mise à jour: < 1 minute" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Prochaine mise à jour: %1 minutes" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Prochaine mise à jour: %1 heures" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Mettre à jour maintenant" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Mettre à jour à partir de fichiers" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Erreur lors de la mise à jour" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "%1/%2 satellite(s) mis à jour ; %3 ajoutés ; %4 supprimés" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Mise à jour de %1/%2 satellite(s) effectuée ; %3 manquants" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "%1/%2 satellite(s) mis à jour ; %3 ajoutés ; %4 manquants" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[nouvelle source]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Mettre à jour maintenant" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Mettre à jour à partir de fichiers" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[erreur de calcul de l'orbite]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[satellites récemment ajoutés]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[satellites non affichés]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[satellites affichés]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[tout]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Nouveau groupe..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Sélectionnez le fichier de mise à jour TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Téléchargement des données..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5518,176 +5864,204 @@ "Stellarium télécharge les données des satellites à partir des sources de " "mise à jour. Merci de patienter ..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Sélectionnez le(s) fichier(s) source TLE ..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Traitement des données..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" "Les données n'ont pas pu être téléchargées. Veuillez réessayer plus tard." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Catalogue Numéro: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Configuration des satellites" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Mettre à jour les listes TLE à partir des sources Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Mises à jour" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Mettre à jour à partir des sources Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Mettre à jour les données des satellites à partir d'Internet" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Dernière mise à jour:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" +"Lors de la mise à jour, ajouter les satellites de la(des) source(s) " +"sélectionnée(s)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Lors de la mise à jour, supprimer les satellites non présents dans la(les) " +"source(s) sélectionnée(s)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Fréquence de mise à jour (heures):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Noms" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Taille de la police des noms (px):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Tracé des orbites" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Nombre de segments utilisés pour tracer la ligne" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Nombre de segments :" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Durée d'un segment en secondes" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Longueur de segment (s) :" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Nombre de segments utilisés pour tracer chaque extrémité de la ligne" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Durée du fondu :" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Restaurer les paramètres par défaut" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Sauvegarder ces paramètres comme paramètres par défaut" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Paramètres" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Double-cliquer sur un satellite pour le suivre." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Ajouter davantage de satellites" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Supprimer les satellites sélectionnés" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Enregistrer les modifications" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Catalogue numéro:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Afficher le ou les satellites sélectionnés" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Affiché(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Afficher les orbites des satellites sélectionnés" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Orbite" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Catalogue numéro:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" +"Ne pas mettre à jour le(s) satellite(s) sélectionné(s), ni le(s) supprimer " +"lors des mises à jour" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Ne pas mettre à jour" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Description:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Groupes:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Liste des groupes au format CSV" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Données TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Données au format TLE du NORAD" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Supprimer les satellites sélectionnés" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Ajouter davantage de satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Paramètres TLE :" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Enregistrer les modifications" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Les satellites des sources sélectionnées seront automatiquement ajoutés lors " +"de la prochaine mise à jour, s'ils ne sont pas déjà présents." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5695,15 +6069,15 @@ "Entrez ou éditez l'URL de la source sélectionnée. Les changements seront " "sauvegardés en appuyant sur Entrée." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Ajouter une source" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Supprimer la source sélectionnée" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Sources" @@ -5739,11 +6113,11 @@ msgid "Discard" msgstr "Rejeter" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Contrôle Téléscope" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5751,12 +6125,12 @@ "Ce plugin permet à Stellarium d'envoyer des commandes d'orientation à un " "télescope sur une monture pilotée par ordinateur." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Pointer le télescope â„–%1 sur l'objet sélectionné" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Pointer le télescope â„– %1 sur l'endroit situé au centre de l'écran" @@ -6170,62 +6544,62 @@ "barre inférieure." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Janvier" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Février" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Mars" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Avril" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Mai" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Juin" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Juillet" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Août" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Septembre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Octobre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Novembre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Décembre" @@ -6385,7 +6759,7 @@ "la barre du bas." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Format d'affichage de l'heure" @@ -6403,7 +6777,7 @@ msgstr "Format 24h" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Format d'affichage de la date" @@ -6419,11 +6793,11 @@ msgid "mm-dd-yyyy" msgstr "mm-jj-aaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Interface en mode texte" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6431,144 +6805,144 @@ "Implémentation en plugin de l'environnement en mode texte (TUI) des versions " "0.9.x, utilisé dans les systèmes de planétariums." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Corps du système solaire" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Date/heure actuelle" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Régler le fuseau horaire" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Touches du jour" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Pré-réglage de la date et de l'heure au démarrage" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "système" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "pré-réglage" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmjjaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "jjmmaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "aaaammjj" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Langue" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Afficher les étoiles" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Couleurs" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Noms des nébuleuses" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Emplacements des nébuleuses" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Ligne du plan galactique" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Effets" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Zoom manuel" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Facteur de luminosité" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intensité de la Voie Lactée :" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Quantité de noms de nébuleuses" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Durée du zoom:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Délai de disparition du pointeur :" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Régler le paysage change le lieu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Lancer un script local:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Arrêter le script en cours d'exécution" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Script sur CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administration" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Charger la configuration par défaut" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Sauvegarder la configuration actuelle" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Éteindre" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[pas de nÅ“ud d'interface textuelle]" @@ -6605,16 +6979,16 @@ "données en ligne. Travail toujours en cours." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Interroger le MPC %1 :" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Un seul résultat sera renvoyé si la requête est réussie." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6622,7 +6996,7 @@ "Les comètes et les astéroïdes peuvent être identifiés par leur numéro, leur " "nom (en anglais) ou par leur désignation provisoire." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6814,40 +7188,45 @@ msgid "Solar System" msgstr "Système solaire" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Supernovae historiques" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." -msgstr "" -"Plugin montrant quelques supernovae historiques de magnitude visuelle " -"inférieure à 10." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." +msgstr "Ce plugin permet de voir certaines supernovae historiques" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Type de supernova : %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Luminosité maximale : %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" -msgstr "Plugin des supernovae historiques" +msgstr "Plugin Supernovae historiques" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "Ce plugin permet de voir certaines supernovae historiques : " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Plugin montrant quelques supernovae historiques de magnitude visuelle " -"inférieure à 10 : " +"Toutes ces supernovae sont plus lumineuses que %1 à leur maximum de " +"luminosité." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Courbes de lumière" @@ -6868,7 +7247,7 @@ msgstr "Remerciements" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6884,14 +7263,14 @@ msgstr "Institut de Physique Théorique et Expérimentale" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "Russie" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6901,8 +7280,9 @@ "le format du catalogue, vous trouvez ces renseignements %1ici%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Mise à jour suivante : %1 jours" @@ -6917,32 +7297,120 @@ #: plugins/Supernovae/src/ui_supernovaeDialog.h:231 msgid "Historical Supernovae Plug-in Configuration" -msgstr "Configuration du plugin des supernovae historiques" +msgstr "Configuration du plugin Supernovae historiques" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Mise à jour du catalogue à partir d'internet" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Mettre à jour à partir des sources Internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Fréquence de mise à jour (jours) :" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[informations sur la prochaine mise à jour]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Novae lumineuses" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "Ce plugin montre quelques novae lumineuses de la Voie Lactée." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Type : %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "Nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Novae lumineuses" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"D'autres novae peuvent être trouvées à l'aide de l'outil de recherche en " +"indiquant la désignation de la nova ou son nom commun (p. ex. « Nova Cygni " +"1975 » ou « V1500 Cyg »)." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"Ce plugin utilise un modèle de calcul très simple pour les courbes de " +"lumière des novae." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Ce modèle prend en compte une diminution de %1 magnitudes à partir de la " +"valeur maximale, où %1 vaut 2, 3, 6 et 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Si une nova n'a pas de donnée pour la diminution de magnitude, le plugin " +"utilisera pour elle des valeurs génériques." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Vous pouvez obtenir des %1informations complètes%2 sur ce plugin, son " +"histoire et le format de son catalogue." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Les novae ont été mises à jour" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Configuration Novae lumineuses" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Configuration du plugin Novae lumineuses" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quasars" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6961,11 +7429,11 @@ msgid "Z (redshift): %1" msgstr "Z (décalage vers le rouge) : %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Plugin des quasars" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6975,40 +7443,50 @@ "visuelle. Catalogue de quasars compilé de « Quasar and Active Galactic " "Nuclei » (13e éd.)." -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Les quasars sont à jour" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Configuration des quasars" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Configuration du plugin des quasars" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Mode d'affichage des quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Réglages pour quasars" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Afficher tous les quasars sans nom" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Active l'affichage de la distribution pour les quasars" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Activer l'affichage au démarrage" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Afficher le bouton quasars dans la barre d'outils" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsars" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7138,11 +7616,11 @@ "étoile à neutrons isolée avec émission pulsée de rayons X thermiques mais " "sans émission radio détectable" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Plugin des pulsars" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7153,67 +7631,71 @@ "(Manchester, R. N., Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, " "1993-2006 (2005) (%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Remarque" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "les indicatifs des pulsars ont le préfixe « PSR »" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Remerciements" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Observatoire de radioastronomie de Pushchino" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Station de radioastronomie de Nançay" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "en France" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Les pulsars sont à jour" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Configuration des pulsars" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Configuration du plugin des pulsars" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Mode d'affichage pour les pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Réglages pour pulsars" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Afficher tous les pulsars sans nom" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Active l'affichage de la distribution pour les pulsars" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Afficher le bouton pulsars dans la barre d'outils" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplanètes" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7222,71 +7704,71 @@ "des exoplanètes proviennent de « Extrasolar Planets Encyclopaedia » sur " "exoplanet.eu." -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Métallicité" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Masse" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Rayon" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Température effective : %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplanète" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Période" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "jours" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Demi-grand axe" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "UA" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Excentricité" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inclinaison" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Distance angulaire" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Année de découverte" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Plugin des exoplanètes" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7297,7 +7779,7 @@ "Encyclopaedia%2 »." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7306,42 +7788,133 @@ "Si vous voulez avoir toutes les informations sur ce plugin, son histoire et " "le format du catalogue, vous pouvez trouver ces renseignements %1ici%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "Sites web professionnels sur le thème des planètes extrasolaires" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanètes : une version interactive de xkcd 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (The Hunt for Exomoons with Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" +"Exoplanètes dans des systèmes binaires et multiples (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Dénomination des exoplanètes (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" +"Quelques astronomes et groupes actifs dans l'étude des planètes extrasolaires" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "mise à jour : 16 avril 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "L'Explorateur de données des exoplanètes" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "The Anglo-Australian Planet Search" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "The Geneva Extrasolar Planet Search Programmes" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Optical Long-Baseline Interferometry News)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "NASA's Exoplanet Exploration Program" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Planètes de pulsar" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "The NASA Exoplanet Archive" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "IAU Comission 53: Extrasolar Planets" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "The Habitable Zone Gallery" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - The Search for Another Earth" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Open Exoplanet Catalogue" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "The Habitable Exoplanets Catalog" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Les exoplanètes sont à jour" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Configuration des exoplanètes" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Configuration du plugin des exoplanètes" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Mettre à jour les données des exoplanètes depuis Internet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Options d'affichage des exoplanètes" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Réglages pour exoplanètes" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Affichage de tous les systèmes avec exoplanètes, sans les noms" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Afficher la distribution des exoplanètes" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Affiche les exoplanètes à partir de leur date de découverte" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Afficher les exoplanètes selon leur date de découverte" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Afficher le bouton exoplanètes dans la barre d'outils" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Infos" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Observabilité" @@ -7365,185 +7938,179 @@ "données par ce script est offert dans l'onglet « À propos » de la fenêtre de " "configuration" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Janv" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Fév" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mars" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Avr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Mai" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Juin" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Juil" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Août" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Sept" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Oct" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Déc" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "min" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Se couche à %1 (dans %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "S'est levé à %1 (il y a %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "S'est couché à %1 (il y a %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Se lève à %1 (dans %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Circumpolaire" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Pas de lever." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Culmine à %1 (dans %2) à %3 deg." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "A culminé a %1 (il y a %2) à %3 deg." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Source non observable." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Pas de lever/coucher achronique ou cosmique." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Plus grande élongation : " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Séparation maximale au Soleil : " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (à %1 deg.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Lever/coucher achronique" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Pas de lever/coucher achronique." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Lever/coucher cosmique" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Pas de lever/coucher cosmique." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Observable durant toute l'année." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Non observable par nuit noire." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "La nuit au-dessus de l'horizon : " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "Aujourd'hui :" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "Cette année :" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Pleine lune précédente : %1 %2 à %3h%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Prochaine pleine lune : %1 %2 à %3h%4. " @@ -7884,6 +8451,9 @@ #~ msgid "80" #~ msgstr "80" +#~ msgid "Nebulas" +#~ msgstr "Nébuleuses" + #~ msgid "Art brightness: " #~ msgstr "Luminosité des dessins : " @@ -8062,6 +8632,18 @@ #~ "Le support est fourni par le site Launchpad. Assurez-vous de mettre " #~ "\"Satellites plugin\" en sujet quand vous postez." +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Mettre à jour les listes TLE à partir des sources Internet" + +#~ msgid "TLE data:" +#~ msgstr "Données TLE:" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Liste des groupes au format CSV" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Données au format TLE du NORAD" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -8185,6 +8767,12 @@ #~ msgstr "Éclipse quintuple depuis Déimos en 2027" #~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Écran de veille de divers événements dans le Système solaire. 171 événements " +#~ "au total !" + +#~ msgid "" #~ "Phobos races ahead of Mars and eclipses the sun, passes thru it and then " #~ "retrogrades back towards the sun and just partially eclipses it (only seen " #~ "in the SH) again, then Mars totally eclipses the sun and Phobos, and then as " @@ -8231,6 +8819,12 @@ #~ "Flash de la supernova que Tycho Brahe a observée en 1572. Pour les démos, il " #~ "faut activer le plug-in pour les supernovas." +#~ msgid "Display mode for quasars" +#~ msgstr "Mode d'affichage des quasars" + +#~ msgid "Display mode for pulsars" +#~ msgstr "Mode d'affichage pour les pulsars" + #~ msgid "0 deg." #~ msgstr "0 deg." @@ -8242,6 +8836,20 @@ #~ msgid "Magnification provided by this ocular/telescope combination" #~ msgstr "Grossissement apporté par cette combinaison oculaire/télescope" +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Plugin montrant quelques supernovae historiques de magnitude visuelle " +#~ "inférieure à 10." + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Plugin montrant quelques supernovae historiques de magnitude visuelle " +#~ "inférieure à 10 : " + #~ msgid "Sun altitude at twilight" #~ msgstr "Élévation du soleil au crépuscule" @@ -8320,6 +8928,9 @@ #~ msgid "Mouse cursor timeout (seconds):" #~ msgstr "Délai de disparition du pointeur de la souris (en secondes) :" +#~ msgid "Nebulas background images" +#~ msgstr "Photos des nébuleuses" + #~ msgid "glitches in period" #~ msgstr "variation de période (glitch)" @@ -8332,3 +8943,7 @@ #~ msgid "extragalactic (in MC) pulsar" #~ msgstr "pulsar extragalactique (dans MC)" + +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Mise à jour de %1/%2 satellite(s) effectuée ; %3 manquants" diff -Nru stellarium-0.12.1/po/stellarium/fy.po stellarium-0.12.4/po/stellarium/fy.po --- stellarium-0.12.1/po/stellarium/fy.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/fy.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2010-05-07 21:32+0000\n" "Last-Translator: Tregmi Mons (Imworx) \n" "Language-Team: Frisian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:13+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Acteur " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Lokaasje " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeet " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Type: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Ljochtsterkte: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Formaat: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Stjerrestelsel" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Iepen Kluster" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Globale Kluster" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Mist" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetenwolk" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Kluster geassosjieerd met mist" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Gjin data" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Type hat gjin dokumint" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Orkaan" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Skermbefeiliging" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Ferienigde Arabyske Emiraten" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua en Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albanië" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenië" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktika" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentinië" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikaansk Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Eastenryk" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australië" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbeidjan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "België" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgarije" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Baghrein" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazilië" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Wyt-Rusland" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Sintraal Afrikaanse Republyk" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Switserlân" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chili" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kameroen" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Columbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kaap Verdië" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Christmas Eilân" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Cyprus" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Tsjechyske republyk" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Dûtslân" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Denemarken" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominicaanse Republyk" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Equador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estland" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egypte" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "West Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spanje" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Ethiopië" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlân" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Faroe Eilannen" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Frankryk" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Ferienigd Keninkryk" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgië" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Frânsk Guiana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grienlân" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Equatorial Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grikelân" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Kroatië" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hongarije" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesië" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ierlân" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Yslân" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italië" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordanië" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Cambodja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comoros" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Koeweit" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kaaiman Eilannen" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazachstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laosyaansk" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litouwen" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Letland" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marokko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshall Eilânen" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedonië" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolië" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritanië" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Malediven" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexico" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Maleisië" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibië" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nij Caledonië" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk Eilân" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Noorwegen" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nij Seelân" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Frânsk Polinesië" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Nij Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filippijnen" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polen" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre en Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Roemenië" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudi-Arabië" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Solomon Eilannen" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychellen" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Zweden" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Sint Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slowenië" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slowakije" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalie" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tome en Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks en Caicos Eilânen" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Tsjaad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailân" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tajikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Oost Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisie" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turkije" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad en Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Oekraïne" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Feriene Steaten" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis en Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Joegoslaavje" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Sûd-Afrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skripts" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "Ferfarskje" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Lokaasje" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Wiskje" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Breedtegraad:" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Lingtegraad:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekt" -#: src/ui_searchDialogGui.h:622 -msgid "RA/Dec (J2000):" +#: src/ui_searchDialogGui.h:644 +msgid "RA/Dec (J2000):" +msgstr "" + +#: src/ui_searchDialogGui.h:645 +msgid "Position" +msgstr "Posysje" + +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." msgstr "" -#: src/ui_searchDialogGui.h:623 -msgid "Position" -msgstr "Posysje" +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Tsjinner:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Opsjes" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Opsjes" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Byld" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Gjint" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "Oars:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Skerm ôfbylding" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Nochris besykje" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Ôfbrekke" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Algemien" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigaasje" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Ark" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Ynstekkers" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Ynterface" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Algemien" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Tafoegje" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Namme:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Markearingen" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Ynstellings" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Feroaringen bewarje" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Werjûn" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Beskriuwing:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Feroaringen bewarje" - -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Broncodes" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "Negearje" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/ga.po stellarium-0.12.4/po/stellarium/ga.po --- stellarium-0.12.1/po/stellarium/ga.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ga.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-01-20 18:23+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Irish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Fadlíne" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Éiclipteach" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Meánchiorcal" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Léaslíne" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Author: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Location: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Rinn: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Cineál: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Méid: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Méid: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Réaltra" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Réaltbhraisle oscailte" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Réaltbhraisle chruinneogach" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Réaltnéal" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Réaltnéal pláinéadach" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Anaithnid" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Dearbhmhéid: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Fad: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "réalta" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Aicme speictreach: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Saobhdhiallas: %1" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,67 +727,68 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Údair" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Déan Teagmháil" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Údar" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Ceadúnas" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Ag rith script: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Ag rith script: [dada]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -704,7 +797,7 @@ "Ag íosluchtú %1...\n" "(Is féidir an fhuinneog seo a dhúnadh.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -712,18 +805,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -731,115 +824,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -998,49 +1099,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Fuinneoga" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Gan cur síos" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Suíomh Nua" @@ -1143,19 +1248,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1171,30 +1276,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Ní thacaíonn an córas seo le hOpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "An Ghrian" @@ -1211,12 +1322,12 @@ msgstr "Domhan" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Gealach" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Máirt" @@ -1314,7 +1425,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Satarn" @@ -1612,239 +1723,268 @@ msgstr "Ionúiteach" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Cóiréach" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maorach" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navachóis" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Lochlannach" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polainéiseach" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sáimis" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Iartharach" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1854,1502 +1994,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Aontas na nÉimíríochtaí Arabacha" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "An Afganastáin" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua agus Barbúda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "An Airméin" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Aintillí na hIsiltíre" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angóla" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "An Antartaice" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "An Airgintín" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "An Ostair" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "An Astráil" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbadós" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "An Bhanglaidéis" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "An Bheilg" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Buircíne Fasó" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "An Bhulgáir" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "An Bhairéin" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "An Bhurúin" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Beirmiúda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "An Bholaiv" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "An Bhrasaíl" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Na Bahámaí" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "An Bhotsuáin" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "An Bheilís" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Ceanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Poblacht na hAfraice Láir" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "An Eilvéis" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "An tSile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Camarún" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "An tSín" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "An Cholóim" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Cósta Ríce" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cúba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Rinn Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Oileán na Nollag" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "An Chipir" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Poblacht na Seice" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "An Ghearmáin" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "An Danmhairg" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "An Phoblacht Dhoiminiceach" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "An Ailgéir" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Eacuadór" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "An Eastóin" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "An Éigipt" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "An Eiritré" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "An Spáinn" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "An Aetóip" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "An Fhionlainn" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fidsí" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Oileáin Fháclainne" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "An Mhicrinéis" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Oileáin Fharó" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "An Fhrainc" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "An Ghabúin" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guáin na Fraince" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Gána" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Giobráltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "An Ghraonlainn" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "An Ghaimbia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "An Ghuine" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadalúip" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "An Ghuine Mheánchiorclach" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "An Ghréig" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatamala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "An Ghuáin" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Cong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Hondúras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "An Chróit" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Háítí" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "An Ungáir" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "An Indinéis" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Éire" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Iosrael" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "An India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "An Iaráic" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "An Iaráin" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "An Ãoslainn" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "An Iodáil" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Iamáice" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "An Iordáin" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "An tSeapáin" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "An Chéinia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Cireabaití" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "An Chuáit" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Oileáin Cayman" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "An Chasacstáin" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Lebanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Srí Lanca" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "An Libéir" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Leosóta" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "An Liotuáin" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Lucsamburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "An Laitvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maracó" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monacó" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Oileáin Marshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "An Mhacadóin" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mailí" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Maenmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martainíc" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "An Mháratáin" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Málta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Oileán Mhuirís" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Oileáin Mhaildíve" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "An Mhaláiv" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Meicsiceo" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "An Mhalaeisia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mósaimbíc" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "An Namaib" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "An Nua-Chaladóin" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "An Nígir" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "An Nigéir" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicearagua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "An Ãsiltír" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "An Iorua" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Neipeal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "An Nua-Shéalainn" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peiriú" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polainéis na Fraince" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Nua-Ghuine Phapua" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Na hOileáin Fhilipíneacha" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "An Phacastáin" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "An Pholainn" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Portó Ríce" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "An Phortaingéil" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Dáta agus Am" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Socraigh an t-am go dtí anois" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Roghanna Taispeána" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Lánscáileán" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmaisféar" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Teorainneacha na réaltbhuíne" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Línte i réaltbhuíonta" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Ceo" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Talamh" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Réaltnéalta" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Istoíche" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Réalta" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Rudaí Éagsúla" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Scoir" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Sábháil an Radharcscáthán" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Gluaiseacht agus Roghnúchán" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripteanna" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Fuinneog chumraíochta" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Fuinneog chabhair" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Fuinneog an chuardaigh" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3375,7 +3551,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Ãit" @@ -3391,10 +3567,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3403,7 +3579,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3414,12 +3590,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3443,363 +3619,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Pláinéid" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3849,7 +4069,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3865,11 +4085,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4011,7 +4228,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4023,182 +4240,192 @@ msgid "Other:" msgstr "Eile:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Dáta agus am an chórais" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Roghanna pláinéadlainne" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Roghnaigh réaltbhuíon amháin" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Scáilghraif" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Aisiompaigh na dathanna" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Brúigh anseo chun an t-íosluchtú a thosú" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Ãosluchtaigh an comhad seo chun tuilleadh réalta a fheiceáil" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Atosaigh an t-íosluchtú" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Atriail" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cealaigh" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Dún an fhuinneog nuair a ritheann script" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Rith an script roghnaithe" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stad script atá ag rith" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Luchtaigh ag an tús" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "cumraigh" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Príomhchlár" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Eolas" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Nascleanúint" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Uirlisí" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Breiseáin" @@ -4366,176 +4593,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4607,64 +4834,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4672,7 +4904,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4683,14 +4915,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4699,305 +4931,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5005,25 +5306,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5031,17 +5332,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5049,41 +5350,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5091,338 +5394,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5458,22 +5804,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5856,62 +6202,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6065,7 +6411,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6083,7 +6429,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6099,154 +6445,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Comhéadan" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Teanga" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6279,22 +6625,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6463,36 +6809,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6510,7 +6863,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6524,14 +6877,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6539,8 +6892,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6558,29 +6912,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6596,51 +7027,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6760,11 +7201,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6772,137 +7213,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AR" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6910,49 +7355,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6968,185 +7502,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7431,6 +7959,9 @@ #~ msgid "Hydra" #~ msgstr "an Phéist Uisce" +#~ msgid "Nebulas" +#~ msgstr "Réaltnéalta" + #~ msgid "General " #~ msgstr "Coiteann " diff -Nru stellarium-0.12.1/po/stellarium/gd.po stellarium-0.12.4/po/stellarium/gd.po --- stellarium-0.12.1/po/stellarium/gd.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/gd.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,30 +7,30 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-02-16 19:50+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-07-18 12:18+0000\n" "Last-Translator: GunChleoc \n" "Language-Team: Fòram na Gàidhlig http://www.foramnagaidhlig.net\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:13+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: gd\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meadhan-loidhne" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Crios-mheadhain" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Fàire" @@ -38,46 +38,46 @@ msgid "Galactic Plane" msgstr "Plèana reul-chriosa" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Ùghdar: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Àite: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planaid: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Seòrsa: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Meudachd: %1" @@ -87,114 +87,114 @@ msgid "Size: %1" msgstr "Meud: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Reul-chrios" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Grioglachan fosgailte" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Grioglachan cruinn" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" -msgstr "" +msgstr "Deargan-doireann" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" -msgstr "" +msgstr "Deargan-doireann planaid" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Neo-aithnichte" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Neo-clàraichte" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Meudachd absaloideach: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Claoine (an-diugh, airson na Talamhainn): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Astar: %1 AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Astar: %1 AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Tras-tomhais san lèirsinn: %1, le fàinneachan: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Tras-tomhais san lèirsinn: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Ùine nan reul: %1 latha (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Latha nan reul: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Latha grèine meadhanach: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Ceàrn mùthadh an t-solais: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Sìneadh: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Mùthadh an t-solais: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Soillsichte: %1%" @@ -205,7 +205,7 @@ msgstr "Ainm sealadach: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "rionnag" @@ -220,47 +220,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "rionnag dhùbailte" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Meudachd: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Seòrsa speictreach: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Astar: %1 bliadhna solais" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Soitheach fànais" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -268,14 +343,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -284,14 +359,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -299,7 +374,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -307,14 +382,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -323,14 +398,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -338,25 +413,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -365,14 +440,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -380,42 +455,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -423,7 +498,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -431,7 +506,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -440,7 +515,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -450,45 +525,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Mearachd" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -639,52 +731,53 @@ msgid "Found" msgstr "Chaidh a lorg" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Tagh pasgan a' ghlacaidh-sgrìn" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Raon-seallaidh tòiseachaidh: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Comhair tòiseachaidh an t-seallaidh Az/Àirde: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Ùghdaran" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Fios" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Ùghdar" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Ceadachas" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "A' ruith sgriobt: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "A' ruith sgriobt: [gun ghin]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -692,16 +785,16 @@ "Tha an luchdadh a-nuas aig catalogan nan reultan ùra dèanta!\n" "Ath-thòisich Stellarium gus an sealltainn." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Chaidh a h-uile catalog nan reul a tha ri làimh a stàladh." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Faigh catalog %1 à %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -710,7 +803,7 @@ "A' luchdadh a-nuas %1...\n" "('S urrainn dhut an uinneag seo a dhùnadh.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -721,7 +814,7 @@ "àireamh dhe reultan: %2 millean\n" "Rainse a' mheudachd: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -730,11 +823,11 @@ "Mearachd le luchdadh a-nuas %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "A' dearbhadh nam faidhlichean ..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -744,115 +837,123 @@ "Tha am faidhle coirbte." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1027,49 +1128,53 @@ msgid "OSX Developer: %1" msgstr "Leasaichear OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Uinneag consoil an sgriobt" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Uinneagan" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Gun tuairisgeul" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Gun rionnagan an earbaill" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Reat àbhaisteach" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Reat àbhaisteach aig rionnagan earballach Pherseus" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Reat anabarrach aig rionnagan earballach an Leòmhainn" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "An reat as àirde a-riamh (1966 rionnagan earballach an Leòmhainn)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Àite ùr" @@ -1175,19 +1280,19 @@ msgid "starchart" msgstr "cairt-rèile" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Mearachd leis an rannsachadh Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Rannsachadh Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Oilthigh Strasbourg (An Fhraing)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Oilthigh Harvard (SA)" @@ -1203,30 +1308,36 @@ msgid "Alternative shortcut" msgstr "Ath-ghoirid eile" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Cha chuir an t-siostam seo taic dha OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "A' Ghrian" @@ -1243,12 +1354,12 @@ msgstr "An Talamh" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "A' Ghealach" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "An Corg" @@ -1346,7 +1457,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Satarn" @@ -1644,239 +1755,268 @@ msgstr "" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Coirèanais" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "MÄori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Lochlannach" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Poilinèiseach" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sàmach" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Siarach" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Craobhan" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Cuan" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Turas crutha-thìre" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Leth-dhubhradh na gealaich" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Dubhradh na gealaich slàn" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Sàbhalaiche-sgrìn" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Dubhradh na grèine 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Sgriobt tòiseachaidh" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Grian-chrios" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Èirigh is dol fodha na grèine triplichte air Mearcar" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Dubhradh dùbailte bho Dheimos ann an 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Dubhradh dùbailte bho Dheimos ann an 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Dubhradh bho Olympus Mons Faoi 10 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Falach aig an Talamh is a' Bhliogh 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 trasnaidhean is 2 dhubhradh bho Dheimos 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Sàbhalaiche-sgrìn rian-grèine" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Cuairt nan reul-bhadan" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "A' Ghrian bho phlanaidean eadar-dhealaichte" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Na seallaidhean as fhearr air an Talamh bho bhodhaigean eile" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Trasnadh na Rìbhinne" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Thoir sùil air a h-uile cruth-tìre air a stàladh." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Sgriobt gus leth-dhubhradh na gealaich a shealltainn." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Sgriobt gus dubhradh na gealaich slàn a shealltainn." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1886,1502 +2026,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Na h-Iomaratan Arabach Aonaichte" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanastàn" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Aintìoga is Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilia" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albàinia" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Airmeinia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Eileanan Aintilia nan Tìrean ÃŒsle" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angòla" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "An Antartaig" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "An Argantain" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samotha na h-Aimeireaga" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "An Ostair" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Astràilia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Arùba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Asarbaideàn" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosna is Hearsagobhana" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladais" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "A' Bheilg" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Buirciona Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "A' Bhulgair" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bachrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundaidh" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Beinin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bearmùda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brùnaigh Dàr as-Salàm" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Boilibhia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Braisil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Na h-Eileanan Bhathama" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Butàn" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Eilean Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botsuana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "A' Bhealaruis" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "A' Bheilìs" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Na h-Eileanan Chocos" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Poblachd Dheamocratach na Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Poblachd Meadhan Afraga" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Poblachd na Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "An Eilbheis" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Côte d'Ivoire" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Eileanan Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "An t-Sile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Camarun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "An t-Sìn" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Coloimbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rìcea" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "An t-Sèirb is am Monadh Negrach" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cùba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "An Ceap Uaine" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Eilean na Nollaig" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Cìopras" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Poblachd na Seice" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "A' Ghearmailt" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Diobùtaidh" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "An Danmhairg" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Doiminicea" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "A' Phoblachd Dhoiminiceach" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Aildiria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Eacuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "An Eastoin" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "An Èiphit" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Sathara an Iar" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eartra" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "An Spàinn" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "An Itiop" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "An Fhionnlann" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fìdi" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Na h-Eileanan Fàclannach" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Na Meanbh Eileanan" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Na h-Eileanan Fàro" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "An Fhraing" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "An Rìoghachd Aonaichte" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Greanàda" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "A' Chairtbheil" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guidheàna na Frainge" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Gàna" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Diobraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "A' Ghraonlann" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "A' Ghaimbia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Gini" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadalup" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Gini Mheadhan-Chriosach" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "A' Ghreug" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Seòrsea a Deas is na h-Eileanan Sandwich a Deas" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatamala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Gini-Bioso" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guidheàna" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Eilean Heard is MhicDhòmhnaill" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Hondùras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "A' Chròthais" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haidhti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "An Ungair" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Na h-Innd Innse" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Èirinn" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Iosrael" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Na h-Innseachan" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Ranntair Breatannach Cuan nan Innseachan" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ioràc" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Ioràn" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Innis Tìle" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "An Eadailt" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Diameuga" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Iòrdan" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "An t-Seapan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Ceinia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Cìorgastan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Cambuidea" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Ciribeas" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comoros" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Naomh Crìstean is Nibheis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Sluagh-phoblachd Dheamocratach Choirèa" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Poblachd Choirèa" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Cuibhèit" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Na h-Eileanan Caimean" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Casachstàn" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Làtho" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Leabanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Naomh Lùisea" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Lichtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanca" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Libèir" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Leasoto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "An Liotuain" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Lugsamburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "An Laitbhe" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Sluagh-phoblachd Mhòr Shòisealach Arabach Libia" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Moroco" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "A' Mholdobha" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagasgar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Eileanan Mharshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "A' Mhasadon" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Màili" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Miànmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Dùthaich nam Mongol" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macàthu" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Na h-Eileanan Mairianach a Tuath" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Mairtinic" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Moratàinea" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montsarat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Na h-Eileanan Mhoiriseas" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Na h-Eileanan Maladaibh" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malabhaidh" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Meagsago" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaidhsea" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mòsaimbic" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "An Namaib" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Cailleann Nuadh" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Nìgeir" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Eilean Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigèiria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Niocaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Na Tìrean ÃŒsle" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "An Nirribhidh" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Neapàl" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Sealainn Nuadh" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Omàn" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Pearù" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Poilinèis na Frainge" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Gini Nuadh Phaputhach" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Na h-Eileanan Filipineach" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pagastàn" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "A' Phòlainn" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre is Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Peit a' Chàirn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Porto Rìceo" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "A' phalastain, Ranntair fo fhor-ghlacadh" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "A' Phortagail" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palabh" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguaidh" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Catar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romàinia" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "An t-Sèirb" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "An Co-nasgadh Ruiseach" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rubhanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Aràibia nan Sabhd" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Eileanan Sholaimh" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Na h-Eileanan Sheiseall" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudàn" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "An t-Suain" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singeapòr" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Eilean Naomh Eilidh" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "An t-Slòbhain" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard is Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "An t-Slòbhac" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Siarra Leòmhann" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Seanagal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somàilia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suranam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "São Tomé is Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "An Salbhador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Siridhea, Poblachd Arabach" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Dùthaich nan Suasaidh" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Na h-Eileanan Turcach is Caiceo" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "An t-Seàd" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Ranntairean a Deas na Frainge" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Dùthaich nan Tàidh" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Taidigeastàn" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Tìomor an Ear" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turcmanastàn" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tuinisea" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "An Tuirc" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trianaid is Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tubhalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taidh-Bhàn" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "An Tansan" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "An Ucràin" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Meanbh-Eileanan Iomallach nan Stàitean Aonaichte" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Na Stàitean Aonaichte" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguaidh" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Usbagastan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Stàit Cathair na Bhatacain" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Naomh Bhionsant agus Eileanan Greanadach" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "A' Bheiniseala" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Eileanan Breatannach na Maighdinn" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Eileanan na Maighdinn aig na Stàitean Aonaichte" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Bhiet-Nam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Uallas agus Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samotha" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "An Eaman" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "An Iùgoslabh" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Afraga a Deas" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Sàimbia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "An t-Sìombab" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Ceann-là agus àm" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Cuir latha nan reul ris" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Cuir mìos nan reul ris" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Cuir seachdain nan reul ris" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Cuir bliadhna nan reul ris" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Cuir linn nan reul ris" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Cuir latha grèine ris" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Cuir uair grèine ris" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Cuir seachdain grèine ris" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Ruith an sgriobt nas slaodaiche" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Dèan an ùine nas slaodaiche" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Dèan an ùine (beagan) nas slaodaiche" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Ruith an sgriobt nas luaithe" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Dèan an ùine nas luaithe" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Dèan an ùine (beagan) nas luaithe" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Stad an sgriobt" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Lean air an sgriobt" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Suidhich an t-àm air an-dràsta" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Suidhich luaths nan sgriobt àbhaisteach" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Suidhich luaths an ùine àbhaisteach" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Stad an ùine" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Sguir dhen sgriobt" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Thoir latha nan reul air falbh" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Thoir mìos nan reul air falbh" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Thoir seachdain nan reul air falbh" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Thoir bliadhna nan reul air falbh" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Thoir linn nan reul air falbh" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Thoir latha grèine air falbh" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Thoir uair grèine air falbh" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Thoir seachdain grèine air falbh" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Roghainnean an t-seallaidh" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Flip an sealladh gu còmhnard" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Modh làn-sgrìn" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Àile" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Griod azimuthach" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Prìomh-phuingean combaist" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Ealain nan reul-bhadan" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Crìochan nan reul-bhadan" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Leubailean nan reul-bhadan" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Loidhnichean nan reul-bhadan" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Loidhne èiclipteach" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Loidhne mheadhan-chriosach" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Griod meadhan-chriosach" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Griod meadhan-chriosach J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Ceò" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Griod reul-chriosa" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Làr" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Loidhne na fàire" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meadhan-loidhne" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Modh oidhche" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Leubailean planaid" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Reul-chuairtean nam planaidean" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Lorgan nam planaidean" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Rionnagan" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Leubailean nan rionnagan" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Flip an sealladh gu h-inghearach" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Measgaichte" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Fèin-fhalaich am bàr-putanan còmhnard" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Fèin-fhalaich am bàr-putanan inghearach" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Rach dhachaigh" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Fàg an-seo" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Sàbhail glacadh-sgrìn" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Dèan gearr-leum eadar cas meadhan-chriosach is azimuthach" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Toglaich am faic thu an eadar-aghaidh" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Gluasad is taghadh" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Meadhanaich air an oibseact a thagh thu" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Suidhich a' phlanaid a thagh thu mar phlanaid dhachaigh" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Tracaich oibseact" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Sùm an-steach dhan obseact a thagh thu" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Sùm a-mach" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Tomhas ceàrna" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Comharran na combaiste" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Seall exo-phlanaidean" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Uinneag rèiteachaidh nan exo-phlanaidean" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Sgriobtaichean" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Uinneag an rèiteachaidh" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Uinneag cinn-latha agus ama" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Uinneag na cobharach" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Uinneag an àite" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Uinneag an luirg" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Uinneag nan ath-ghoiridean" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Uinneag roghainnean an speura is an seallaidh" @@ -3407,7 +3583,7 @@ msgstr "Ath-nuadhaich" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Àite" @@ -3423,10 +3599,10 @@ msgid "Return to default" msgstr "Till dhan bhun-roghainn" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Sguab às" @@ -3435,7 +3611,7 @@ msgstr "Cuir ris an liosta" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Domhan-leud:" @@ -3448,12 +3624,12 @@ "fhòrmat dms (latha-mionaid-diog), mar eisimpleir: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Domhan-fhad:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Àirde:" @@ -3477,364 +3653,408 @@ msgid "Planet:" msgstr "Planaid:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Lorg oibseact" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Lorg oibseact no ionad" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Oibseact" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Ionad" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "ainmean sa Bheurla" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Lorg air an liosta ..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Liostaichean" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Frithealaiche:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Roghainnean" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "ainmean sa Bheurla" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Lorg air an liosta ..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Liostaichean" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Sealladh" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "An speur" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Comharran" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Cruth-tìre" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Dualchas nan reul" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Leubailean is comharran" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planaidean" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planaidean is saidealan" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Seall planaidean" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Seall comharran nam planaidean" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Seall reul-chuairtean nam planaidean" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Coltas astar an t-solais" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Sgèilich a' ghealach" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Seall an àile" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Truailleadh solais:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Sgèile absaloideach:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Sgèile dàimheach:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Lùth aig Slighe Chlann Uisnich:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Doillerich reultan laga nuair a bhios oibseact glè shoilleir ri fhaicinn" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Freagarraich dhan t-sùil gu h-innsgineach" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Rionnagan an earbaill" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Reul-bhadan" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Seall loidhnichean" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Seall leubailean" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Seall crìochan" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Seall ealain" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Lùth na h-ealaine:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Cruinne speurach" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Seall loidhne mheadhan-chriosach" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Seall am meadhan-loidhne" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Seall loidhne na fàire" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Sealladh" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Seall an làr" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Seall ceò" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Cleachd a' phlanaid is an ionad na cois" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Cleachd an cruth-tìre seo mar bhun-roghainn" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Cleachd dualchas an speur seo mar bhun-roghainn" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Ri fhaicinn" @@ -3890,7 +4110,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "An taobh a sheallas tu nuair a thòisicheas Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Fiosrachadh mu oibseactan air an taghadh" @@ -3906,11 +4126,8 @@ msgid "Display no information" msgstr "Na seall fiosrachadh" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Gun ghin" @@ -3940,11 +4157,11 @@ #: src/ui_configurationDialog.h:1013 msgid "Right ascension/Declination (J2000)" -msgstr "" +msgstr "Dìreadh deas/Dì-chlaonadh (J2000)" #: src/ui_configurationDialog.h:1015 msgid "Horizontal coordinates" -msgstr "" +msgstr "Càraid àireimh còmhnard" #: src/ui_configurationDialog.h:1017 msgid "Altitude/Azimuth" @@ -3952,7 +4169,7 @@ #: src/ui_configurationDialog.h:1018 msgid "Visual magnitude" -msgstr "" +msgstr "Meudachd lèirsinneach" #: src/ui_configurationDialog.h:1019 msgid "Absolute magnitude" @@ -3960,7 +4177,7 @@ #: src/ui_configurationDialog.h:1020 msgid "Catalog number(s)" -msgstr "" +msgstr "Àireamh(an) cataloig" #: src/ui_configurationDialog.h:1021 #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:269 @@ -3973,7 +4190,7 @@ #: src/ui_configurationDialog.h:1025 msgid "Right ascension/Declination (of date)" -msgstr "" +msgstr "Dìreadh deas/Dì-chlaonadh (aig a' cheann-latha)" #: src/ui_configurationDialog.h:1027 msgid "Galactic coordinates, equinox of J2000.0" @@ -3989,7 +4206,7 @@ #: src/ui_configurationDialog.h:1033 msgid "Hour angle/Declination" -msgstr "" +msgstr "Ceàrn uarach/Dì-chlaonadh" #: src/ui_configurationDialog.h:1034 msgid "Distance" @@ -3997,7 +4214,7 @@ #: src/ui_configurationDialog.h:1036 msgid "Angular or physical size" -msgstr "" +msgstr "Meud ceàrnach no fiosaigeach" #: src/ui_configurationDialog.h:1038 msgid "Size" @@ -4005,7 +4222,7 @@ #: src/ui_configurationDialog.h:1040 msgid "Spectral class, nebula type, etc." -msgstr "" +msgstr "Seòrsa speictreach, seòrsa deargain-doireann is msaa." #: src/ui_configurationDialog.h:1042 msgid "Additional information 1" @@ -4052,7 +4269,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Ceann-latha is àm tòiseachaidh" @@ -4064,19 +4281,23 @@ msgid "Other:" msgstr "Eile:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "cleachd am fear làithreach" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Tòisichidh seo Stellarium le ceann-latha is àm an t-siostaim" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Ceann-latha is àm an t-siostaim" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4084,23 +4305,23 @@ "Cuiridh seo àm a' choltais dhan ath bhall dhe àm an latha seo nuair a " "thòisicheas Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Ceann-latha an t-siostaim aig:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Roghainnean planetarium" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4108,55 +4329,55 @@ "Thèid fiaradh sgathain speurach a chleachdadh nuair a thèid Stellarium a " "shealltainn air sgathan speurach a bhios aig siostaman planetarium saora." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Fiaradh sgathain speurach" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" "Falaich a h-uile rud taobh a-muigh cearcaill mheadhanaich sa phrìomh-" "shealladh" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Port-seallaidh cruinn" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Falach na reul-bhadan eile nuair a nì thu briogadh air fear" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Tagh reul-bhad a-mhàin" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Leubailean iom-tharraing" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." -msgstr "" +msgstr "Toglaich cùlaibhean taisbeanaidh nan dearganan-doireann." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" -msgstr "" +msgstr "Seall putan cùlaibh nan dearganan-doireann" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" "Toglaich putanan gus flip an t-seallaidh gu inghearach no còmhnard a " "dhèanamh." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Seall putanan flipidh" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4164,94 +4385,100 @@ "Ma chuireas tu seo air, suidhichidh an iuchair \"fèin-sùmadh a-mach\" " "comhair an t-seallaidh tòiseachaidh cuideachd." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Tillidh \"fèin-sùmadh a-mach\" dhan chomhair seallaidh tòiseachaidh" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Glacaidhean-sgrìn" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Pasgan nan glacaidhean-sgrìn" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Dathan contrarra" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Ùrachaidhean air catalog nan reultan" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Briog an-seo gus tòiseachadh leis an luchdadh a-nuas" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" "Luchdaich am faidhle seo a-nuas gus tuilleadh 's a bharrachd reultan fhaicinn" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Ath-thòisich an luchadh a-nuas" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Feuch ris a-rithist" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" "Sguir dhen luchdadh a-nuas. 'S urrainn dhut ath-thòiseachadh an uairsin" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Sguir dheth" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Dùin an uinneag fhad 's a tha an sgriobt a' ruith" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Ruith an sgriobt a thagh thu" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Sguir dhe sgriobt a tha a' ruith" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Luchdaich leis an tòiseachadh" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "rèitich" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Prìomh-rèiteachadh" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Fiosrachadh" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Seòladh" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Innealan" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Plugain" @@ -4419,176 +4646,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4660,64 +4887,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Tionndadh" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Foir-shealladh" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4725,7 +4957,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4736,14 +4968,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4752,305 +4984,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Hotkeys" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Eadar-aghaidh" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Coitcheann" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Cuir ris" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Ainm:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Flip còmhnard" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Flip inghearach" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Mu dheidhinn" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Saidealan" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Àirde (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5058,25 +5359,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5084,17 +5385,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5102,41 +5403,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5144,338 +5447,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Ga ùrachadh an-dràsta ..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5511,22 +5857,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5685,7 +6031,7 @@ #: plugins/TelescopeControl/src/ui_slewDialog.h:292 msgid "&Right Ascension (J2000):" -msgstr "" +msgstr "Dì&readh deas (J2000):" #: plugins/TelescopeControl/src/ui_slewDialog.h:293 msgid "&Current object" @@ -5909,175 +6255,175 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" -msgstr "" +msgstr "Am Faoilleach" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" -msgstr "" +msgstr "An Gearran" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" -msgstr "" +msgstr "Am Màrt" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" -msgstr "" +msgstr "An Giblean" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" -msgstr "" +msgstr "An Cèitean" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" -msgstr "" +msgstr "An t-Ã’gmhios" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" -msgstr "" +msgstr "An t-Iuchar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" -msgstr "" +msgstr "An Lùnastal" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" -msgstr "" +msgstr "An t-Sultain" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" -msgstr "" +msgstr "An Dàmhair" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" -msgstr "" +msgstr "An t-Samhain" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" -msgstr "" +msgstr "An Dùbhlachd" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:265 msgid "First week" -msgstr "" +msgstr "A’ chiad seachdain" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:266 msgid "Second week" -msgstr "" +msgstr "An dàrna seachdain" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:267 msgid "Third week" -msgstr "" +msgstr "An treas seachdain" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:268 msgid "Fourth week" -msgstr "" +msgstr "An ceathramh seachdain" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:269 msgid "Last week" -msgstr "" +msgstr "An t-seachdain mu dheireadh" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:278 msgid "Sunday" -msgstr "" +msgstr "DiDòmhnaich" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:279 msgid "Monday" -msgstr "" +msgstr "DiLuain" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:280 msgid "Tuesday" -msgstr "" +msgstr "DiMàirt" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:281 msgid "Wednesday" -msgstr "" +msgstr "DiCiadain" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:282 msgid "Thursday" -msgstr "" +msgstr "DiarDaoin" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:283 msgid "Friday" -msgstr "" +msgstr "DihAoine" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:284 msgid "Saturday" -msgstr "" +msgstr "DiSathairne" #: plugins/TimeZoneConfiguration/src/gui/TimeZoneConfigurationWindow.cpp:104 msgid "Time Zone plug-in" -msgstr "" +msgstr "Plugan roinn-tìde" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:449 msgid "Define a time zone" -msgstr "" +msgstr "Mìnich roinn-tìde" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:451 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:382 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:384 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:393 msgid "Time zone" -msgstr "" +msgstr "Roinn-tìde" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:452 msgid "Timezone name:" -msgstr "" +msgstr "Ainm na roinn-tìde:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:453 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:388 msgid "Offset from UTC (hours):" -msgstr "" +msgstr "Frith-àireamh o UTC (uairean):" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:454 msgid "Daylight saving time (summer time)" -msgstr "" +msgstr "Tìde an t-samhraidh" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:455 msgid "DST timezone name:" -msgstr "" +msgstr "Ainm na roinn-tìde samhraidh:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:456 msgid "DST offset from UTC (hours):" -msgstr "" +msgstr "Frith-àireamh tìde an t-samhraidh o UTC (uairean):" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:457 msgid "Daylight saving time start" -msgstr "" +msgstr "Toiseach tìde an t-samhraidh" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:458 #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:462 msgid "Day:" -msgstr "" +msgstr "Latha:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:459 #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:463 msgid "Time of change:" -msgstr "" +msgstr "Àm an atharrachaidh:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:460 #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:464 msgid "Date:" -msgstr "" +msgstr "Ceann-latha:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:461 msgid "Daylight saving time end" -msgstr "" +msgstr "Deireadh tìde an t-samhraidh" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:465 msgid "Use this definition" -msgstr "" +msgstr "Cleachd an deifinisean seo" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:385 msgid "" @@ -6118,7 +6464,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6136,7 +6482,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6152,154 +6498,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Bodhaig an rian-grèine" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "siostam" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" -msgstr "" +msgstr "Ainmean dhearganan-doireann" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" -msgstr "" +msgstr "Gliocasan dhearganan-doireann" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" -msgstr "" +msgstr "Àireamh de leubailean deargain-doireann:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6332,22 +6678,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6516,36 +6862,43 @@ msgid "Solar System" msgstr "An rian-grèine" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6563,7 +6916,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6577,14 +6930,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6592,8 +6945,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6611,29 +6965,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6649,51 +7080,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6813,11 +7254,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6825,137 +7266,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "san Fhraing" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Rèideas" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "latha" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6963,49 +7408,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7021,185 +7555,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Faoi" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Gearr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Màrt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Gib" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Cèit" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Ã’gmh" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Iuch" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Lùn" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Sult" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Dàmh" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Samh" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Dùbh" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "u" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "d" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Oidhcheannan os cionn na fàire: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "AN-DIUGH:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "AM BLIADHNA:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7646,3 +8174,9 @@ #, qt-format #~ msgid "Galactic longitude/latitude (J2000): %1/%2" #~ msgstr "Domhan-fhad/domhan-leud reul-chriosa (J2000): %1/%2" + +#~ msgid "Nebulas background images" +#~ msgstr "Dealbhan cùlaibh nan dearganan-doireann" + +#~ msgid "Nebulas" +#~ msgstr "Dearganan-doireann" diff -Nru stellarium-0.12.1/po/stellarium/gl.po stellarium-0.12.4/po/stellarium/gl.po --- stellarium-0.12.1/po/stellarium/gl.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/gl.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-05 18:47+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-16 15:49+0000\n" "Last-Translator: Manuel Rosales Graña \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-17 04:37+0000\n" +"X-Generator: Launchpad (build 16765)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridiano" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Eclíptica" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ecuador" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizonte" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Plano Galáctico" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Localización: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipo: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitude: %1 (extinguido en: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitude: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Tamaño: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxia" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Cúmulo aberto" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Cúmulo globular" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebulosa planetaria" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Nebulosa Escura" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Cúmulo asociado con nebulosidade" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Descoñecido" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Tipo non documentado" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitude absoluta: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Eclíptica Topocéntrica (de data): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Oblicuidade (de data, para a Terra): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distancia: %1UA (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distancia: %1UA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diámetro aparente: %1, con aneis: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diámetro aparente: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Período sideral: %1 días (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Día sideral: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Significado do día solar: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Ãngulo de Fase: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongación: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Iluminado: %1%" @@ -204,7 +204,7 @@ msgstr "Nome provisional: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "estrela" @@ -219,48 +219,124 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnitude aparente: %1 (por extinción)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "estrela variable eruptiva" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "estrela variable pulsante" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "estrela variable rotatoria" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "estrela variable cataclísmica" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "sistema binario eclipsante" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "estrela variable" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "Estrela dobre" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Tipo: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitude: %1 (extinguido en: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitude: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Rango de magnitude: %1%2%3 (Sistema fotométrico: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" +"Rango de magnitude: %1%2%3/%4 (Sistema fotométrico: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Tipo espectral: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distancia: %1 anos luz" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaxe: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Época de mínima luz: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Época de máxima luz: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Periodi: %1 día(s)" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Seguinte mínimo de luz: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Seguinte máximo de luz: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Duración de eclipse %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Tempo de saída: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Nave espacial" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "A corrección está desactivada. Usar só se se sabe o que se está a facer!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -271,7 +347,7 @@ "Henriksson no seu artigo A Teoría da Relatividade de Einstein confirmada " "por antigas eclipses solares (%1). Ver máis información %2aquí%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -280,7 +356,7 @@ "Esta ecuación empírica publicouna G. M. Clemence no artigo No sistema de " "constantes astronómicas (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -293,7 +369,7 @@ "astronómicas para computadoras. Tamén foi adoptada no programa de PC " "SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -303,7 +379,7 @@ "aprobada no Eufemérides astronómicas e no Canon de eclipses " "solares de Mucke e Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -315,7 +391,7 @@ "1649 dC. A mesma relación foi tamén implicitamente adoptada nas táboas de " "sizígia Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -326,7 +402,7 @@ "aceleracións da terra e a lúa dende o inicio das observacións " "astronómicas (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -335,7 +411,7 @@ "Esta ecuación publicouna F. R. Stephenson no artigo Observacións " "Astronómicas Pretelescópicas (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -349,7 +425,7 @@ "período de 1800 a 1975 (%1) como axuste promedio dos datos publicados " "por Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -359,7 +435,7 @@ "Planetarios e Táboas dende o -4000 ó +2800 (1986) e no programa " "planetario para PC RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -370,11 +446,11 @@ "Cambios a longo prazo na rotación da terra in the rotation of the earth -" "700 aC. a 1980 dC. (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "Este algoritmo usouse no programa planetario de PC Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -384,7 +460,7 @@ "de Eclipses Solares: 1986-2035 (1987) e no seu Canon de " "Cincuenta Anos de Eclipses Lunares: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -393,7 +469,7 @@ "Esta fórmula obtívoa K.M. Borkowski (%1) a partir dunha análise de 31 " "rexistros de eclipses solares entre 2137aC. e 1715dC." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -405,7 +481,7 @@ "artigo Transformacións empíricas de U.T. a E.T. durante do período 1800-" "1988 (%1) a partir dos datos definidos por Stephenson & Morrison (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -415,7 +491,7 @@ "abreviada da teoría lunar ELP teoría 2000-85 nas súas Táboas lunares e " "Programas dende o 4000 aC ó 8000 dC (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -426,7 +502,7 @@ "Fluctuacións a longo prazo na rotación da Terra: 700 AC a 1990DC " "(%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -435,7 +511,7 @@ "F. R. Stephenson publicou esta fórmula no seu libro Eclipses históricas " "e rotación da Terra (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -445,7 +521,7 @@ "amplamente utilizado. Táboa para 1620 .. 2000, e inclúe unha variante de " "Chapront, Chapront-Touze & Francou (1997) para datas fóra 1620 .. 2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -454,7 +530,7 @@ "O Grupo de Dinámica do Sistema Solar da NASA JPL usa esta fórmula no seu web " "interactivo %1JPL Horizontes%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -463,7 +539,7 @@ "Este polinomio foi publicado por J. Meeus e L. Simons no artigo " "Aproximacións polinómicas a Delta T, 1620-2000aC (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -473,7 +549,7 @@ "ordenador persoal (2000) ofrece datos polinómicos simples de terceira " "orde dende o pasado recente," -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -485,7 +561,7 @@ "Tabulacións do calendario (2002). Baséanse en Jean Meeus " "\"Algoritmos Astronomicos (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -496,7 +572,7 @@ "artigo Valores históricos do erro do reloxo da Terra %1T e o cálculo de " "eclipses (%2) con addenda en (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -509,7 +585,7 @@ "con coseno e función cadrado. Esta baséase nunha posible periodicidade " "descrita por Stephenson (%2). Ver máis información %3aquí%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -525,11 +601,33 @@ "tamén é utilizada no program de efemérides solares, lunares e planetarias " "SOLEX." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Usado por defecto." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Esta solución foi publicada por B.Banjevic, baseada en Stephenson e Morrison " +"(1984), no artigo Antigos eclipses e data da caída de Babilonia " +"(%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Esta solución de S. Islam, M. Sadiq e M. S. Qureshi, baseada en Meeus & " +"Simons (2000), foi publicada no artigo Error Minimization of Polynomial " +"Approximation of DeltaT (%1) e revisado por Sana Islam en 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -538,15 +636,15 @@ "Trátase dunha fórmula cuadrática para calcular %1T con coeficientes " "definidos polo usuario." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Erro" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "fóra de rango con valores insignificantes" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -554,21 +652,22 @@ "cun valor medio de erro de menos de un segundo, e máximo de 1.9s, non teñen " "sentido os valores fóra deste rango" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "con valor cero está fóra de rango" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "cunha precisión de 1-segundo típico e valores cero está fóra de rango" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Rango de uso válido: entre %1 ano e %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Rango válido de uso entre os anos %1 e %2." @@ -737,52 +836,53 @@ msgid "Found" msgstr "Atopado" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Seleccionar o directorio de captura de pantalla" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Iniciar FOV: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Comezar na dirección Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autoría" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contacto" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autoría" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licenza" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Executando script: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Executando script: [ningún]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -790,16 +890,16 @@ "Rematou a descarga dos novos catálogos de estrelas!\n" "Reinicia Stellarium para poder usalos." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Instaláronse todos os catálogos de estrelas dispoñíbeis" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Cargar o catálogo %1 de %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -808,7 +908,7 @@ "Descargando %1...\n" "(Podes pechar esta xanela)." -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -819,7 +919,7 @@ "Cómputo de estrelas: %2 Millón\n" "Rango de magnitudes: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -828,11 +928,11 @@ "Erro ao descargar %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verificando a integridade do ficheiro..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -842,115 +942,123 @@ "O ficheiro está danado." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritmo de" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Sen conexión" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Efemérides astronómicas (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Ecuación personalizada de %1T" @@ -1120,49 +1228,53 @@ msgid "OSX Developer: %1" msgstr "Desenvolvedor OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Xanela de control do script" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Xanelas" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Espazo" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Sen descrición" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Sen estrelas fugaces" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Tipo normal" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Ratio de Perseidas estándar" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Ratio de meteoritos" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Ratio de Leónidas excepcional" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Ratio máis alta (Leónidas de 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nova localización" @@ -1267,19 +1379,19 @@ msgid "starchart" msgstr "gráfico de estrelas" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Erro de busca en Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Busca en Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universidade de Strasbourg (Francia)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Universidade de Harvard (USA)" @@ -1295,30 +1407,38 @@ msgid "Alternative shortcut" msgstr "Tecla rápida alternativa" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Ecuación personalizada por %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Unha ecuación típica para o cálculo de %1T parece:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "cando" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "ano" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Este sistema non admite OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"A súa plataforma non soporta o mínimo esixido OpenGL 1.2. Por favor, " +"actualice os controladores para tarxeta de vídeo." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sol" @@ -1335,12 +1455,12 @@ msgstr "Terra" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Lúa" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marte" @@ -1438,7 +1558,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturno" @@ -1736,193 +1856,222 @@ msgstr "Esquimó" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Indian Vedic" + +#: src/translations.h:171 msgid "Korean" msgstr "Coreano" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maorí" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navaxo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Noruegués" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinesio" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guaraní" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongan" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Occidental" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Ãrbores" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Furacán" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Océano" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Paseo pola paixase" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Eclipse de Lúa Parcial" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Eclipse de Lúa Total" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Protector de pantalla" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Eclipse Solar de 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Inicio do Script" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiaco" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Triple amencer e solpor de Mercurio" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Dobre eclipse dende Deimos en 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Dobre eclipse dende Deimos en 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Eclipse dende o Monte Olimpo (10-Xan-2068)" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Ocultación da Terra e Xúpite 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 tránsitos e 2 eclipses dende Deimos 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Fondo de pantalla do Sistema Solar" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Paseo polas constelacións" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "O Sol dende diferentes planetas" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "As mellores vistas da Terra dende outros corpos" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Tránsito de Venus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Unha volta por Cultura do Ceo" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Eventos da Terra dende Mercurio" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Eventos da Terra dende Venus" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Eventos da Terra dende Marte" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Maior elongación e brillo da Terra dende Marte" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Maior elongación e brillo da Terra dende Xúpiter" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Visión de contorno de cada paisaxe instalada." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Ver cada unha das Culturas do Ceo instaladas" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Script para mostrar un eclipse de lúa parcial" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Script para mostrar un eclipse de lúa total." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Un lento, infinito percorrido do ceo, vendo obxectos ó chou." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1930,11 +2079,11 @@ "Script para mostrar a eclipse solar total ocorrida en 2009 " "(localización=Rangpur, Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Script que se activa automaticamente ó comezo" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1944,7 +2093,7 @@ "as constelacións que se atopan na liña que atravesa o Sol sobre a esfera " "celeste ó longo de un ano." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1953,7 +2102,7 @@ "momentos o sol vai saír e pórse en tres veces diferentes nun só día de " "Mercurio." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1961,7 +2110,7 @@ "Pouco antes de que marte eclipse o sol, Phobos sae dende atrás e eclípsao " "primeiro. Isto ocorre entre Escorpión e Saxitario o 26 de abril de 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1969,12 +2118,12 @@ "Pouco antes de que marte eclipse o sol, Phobos sae dende atrás e eclípsao " "primeiro. Isto ocorre entre Tauro e Xéminis o 23 de xullo de 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Phobos eclipsando o Sol, visto dende o Monte Olimpo o 10 de xaneiro de 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1984,7 +2133,7 @@ "Xúpiter. Pero a ocultación de ambos o mesmo día é un feito moi raro. Aquí " "está o que ten lugar o 23/01/2048. En tempo real." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2000,40 +2149,41 @@ "Phobos emerxe de Marte segue estando eclipsado e mergullado na sombra de " "Marte, só para iluminarse máis tarde." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Fondo de pantalla de varios acontecementos no Sistema Solar. 171 en total." +"Salvapantallas de varios acontecementos no Sistema Solar. 187 eventos en " +"total!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Unha volta polas constelacións do oeste." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Vista do Sol dende os grandes planetas do Sistema Solar e Plutón." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "As mellores vistas da Terra dende outros corpos do Sistema Solar no século " "XXI" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "Tránsito de Venus visto dende Sydney, Australia, o 6 de xuño de 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" "Unha demostración do analemma - o camiño do Sol polo ceo durante o ano." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2041,1468 +2191,1504 @@ "Resplandor da supernova observada por Tycho Brahe, en 1572. O plugin de " "Supernovas ten que estar activado." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "Maior elongación e brillo da Terra dende Marte 2000-3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "Maior elongación e brillo da Terra dende Xúpiter 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Emiratos Ãrabes Unidos" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistán" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua e Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguila" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "As Antillas Holandesas" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antártida" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Arxentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa Americana" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Acerbaixán" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia e Herzegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Bélxica" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burquina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Barein" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benín" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermudas" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bután" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Illa Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Bielorrusia" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canadá" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Illas Cocos" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "República Democrática do Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "República Centroafricana" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "República do Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Suíza" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Costa de Marfíl" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Illas Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Camerún" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia e Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Cabo Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Illa de Nadal" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Chipre" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "República Checa" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Alemaña" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Xibutí" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Dinamarca" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "República Dominicana" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Alxeria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Exipto" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Sáhara Occidental" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "España" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopía" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlandia" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fixi" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Illas Malvinas" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Illas Feroe" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Franza" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabón" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Reino Unido" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Granada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Xeorxia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guaiana Francesa" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Gana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Xibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Groenlandia" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guiné" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadalupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Guiné Ecuatorial" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grecia" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Xeorxia do Sur e Illas Sándwich do Sur" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guiné-Bisau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Güiana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Illa Heard e Illas McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Croacia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haití" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hungría" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlanda" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Territorio Británico do Océano Ãndico" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Iraq" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Irán" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islandia" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Xamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Xordania" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Xapón" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Quenia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Quirguicistán" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Camboia" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comoros" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts e Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "República Democrática Popular de Corea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "República de Corea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Illas Caimán" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Cazaquistán" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Líbano" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Santa Lucía" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesoto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lituania" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburgo" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Letonia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "República Ãrabe Libia" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marrocos" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Mónaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavia" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Illas Marshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Illas Marianas do Norte" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinica" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauricio" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldivas" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "México" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malasia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nova Caledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Níxer" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Illa de Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nixeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Países Baixos" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Noruega" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nova Celanda" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Omán" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panamá" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Perú" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinesia Francesa" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papúa Nova Guiné" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipinas" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Paquistán" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polonia" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "San Pedro e Miguelón" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Porto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Territorios Palestinos" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguai" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Reunión" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romenia" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Federación Rusa" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Arabia Saudita" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Illas Salomón" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seichelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudán" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Suecia" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Santa Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Eslovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard e Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Eslovaquia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Serra Leoa" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Mariño" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "San Tomé e Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "O Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "República Ãrabe Siria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Suazilandia" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Illas Turks e Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Chad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Territorios Franceses do Sur" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Tailandia" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Taxiquistán" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Toquelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Timor Leste" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turcomenistán" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunicia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turquía" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trindade e Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwán" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ucraína" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Illas Exteriores Menores dos Estados Unidos" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Estados Unidos de América" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguai" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbequistán" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Cidade Estado do Vaticano" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "San Vicente e as Granadinas" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Illas Virxes Británicas" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Illas Virxes dos Estados Unidos" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis e Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Iemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Iugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Ãfrica do Sur" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Cimbabue" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data e hora" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Engadir 1 día sideral" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Engadir 1 mes sideral" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Engadir 1 semana sideral" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Engadir 1 ano sideral" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Engadir 1 século sideral" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Engadir 1 día solar" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Engadir 1 hora solar" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Engadir 1 semana solar" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Engadir 1 mes sinódico" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Engadir 1 mes dracónico" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Engadir 1 mes anomalístico" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Egadir mes semitropical" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Engadir 1 ano dracónico" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Engadir un ano semitropical" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Engadir 1 século tropical medio" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Demorar o nivel de execución do script" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Diminuír a velocidade do tempo" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Diminuír a velocidade do tempo (un chisco)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Acelerar o nivel de execución do script" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Aumentar a velocidade do tempo" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Aumentar a velocidade do tempo (un chisco)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pausar a execución do script" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Retomar a execución do script" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Estabelecer o tempo en arestora" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Establecer o nivel normal de execución do script" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Estabelecer avance normal do tempo" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Estabelecer a velocidade do tempo a cero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Deter a execución do script" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Restar 1 día sideral" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Resta 1 mes sideral" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Restar 1 semana sideral" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Restar 1 ano sideral" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Restar 1 século sideral" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Restar 1 dia solar" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Restar 1 hora solar" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Restar 1 semana solar" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Restar 1 mes sinódico" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Restar 1 mes dracónico" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Restar 1 mes anomalístico" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Restar 1 mes semitropical" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Restar 1 ano dracónico" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Restar 1 ano semitropical" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Restar 1 século tropical medio" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Opcións de visualización" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Inverter horizontalmente" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Modo pantalla completa" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Grella azimutal" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Puntos cardinais" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Figuras das constelacións" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Límites das constelacións" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Etiquetas das constelacións" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Liñas das constelacións" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Imaxes de nebulosas difusas" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Imaxes de fondo de obxectos do ceo profundo" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Grella eclíptica J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Liña eclíptica" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Liña ecuatorial" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Grella ecuatorial" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Grella de J2000 ecuatorial" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Néboa" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Grella galáctica" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Plano galáctico" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Chan" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Liña do horizonte" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Liña do meridiano" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulosas" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Obxectos do ceo profundo" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Modo nocturno" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Etiquetas de planetas" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Órbitas planetarias" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Trazas dos planetas" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Estrelas" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Etiquetas de estrelas" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Inverter verticalmente" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Varios" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Agochamento automático da barra horizontal" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Agochamento automático da barra vertical" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Ir ó Inicio" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Saír" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Copiar información do obxecto seleccionado ó portapapeis" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Gardar a captura de pantalla" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Escoller entre montura ecuatorial e azimutal" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Alternar a visibilidade da GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Movemento e selección" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centrar no obxecto seleccionado" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Estabelecer como fogar o planeta seleccionado" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Seguir o obxecto" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Achegar ao obxecto seleccionado" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Afastar" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Medida do ángulo" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Marcas de compás" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Amosar exoplanetas" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Fiestra de configuración de exoplanetas" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observabilidade" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Fiestra de configuración de observabilidade" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Configuración do plugin de oculares" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Vista de ocular" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Amosar punto de mira" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Menú emerxente de oculares" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Cadro de sensor de imaxe" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Vista Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Seleccionar o seguinte telescopio" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Seleccionar o seguinte ocular" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Seleccionar o anterior telescopio" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Seleccionar o anterior ocular" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Amosar púlsares" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Fiestra de configuración de Púlsares" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Amosar quásares" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Fiestra de configuración de Quásares" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Ventá de configuración de satélites" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Suxestións para satélites" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Etiquetas de satélites" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Fistra de configuración de Supernovas Históricas" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Fiestra de configuración do brillo das Novae" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Orientar o telescopio a un determinado conxunto de coordenadas" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Amosar estatísticas do renderizador" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripts" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Executar script de paisaxes dende arquivo" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Amosar a Lúa e facer zoom" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Xanela de configuración" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Xanela de data e hora" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Xanela de axuda" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Xanela de localización" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Xanela de busca" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Ventá de teclas rápidas" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Xanela de ceo e opcións de vista" @@ -3528,7 +3714,7 @@ msgstr "Actualizar" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Localización" @@ -3544,10 +3730,10 @@ msgid "Return to default" msgstr "Volver á configuración por defecto." -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Borrar" @@ -3556,7 +3742,7 @@ msgstr "Engadir á lista" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitude:" @@ -3569,12 +3755,12 @@ "+1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Lonxitude:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitude :" @@ -3598,364 +3784,413 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Buscar un obxecto" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Buscar un obxecto ou posición" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Usar a tecla tab para seleccionar os items atopados" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "épsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mi" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ni" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ipsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Letras gregas para designacións Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Obxecto" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posición" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Algúns obxectos pódense atopar despois da activación dos respectivos plugins." + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "nomes en inglés" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Buscar na lista..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listas" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Base de datos astronómica on-line SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Busca estendida con SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Servidor:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Opcións de busca" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "Usar autocompletar xa dende o inicio das palabras" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Opcións" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "nomes en inglés" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Buscar na lista..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listas" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Ver" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Ceo" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Marcadores" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Paisaxe" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Tradición estelar" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etiquetas e marcadores" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planetas" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Etiquetas e marcadores para obxectos do ceo profundo (cúmulos de estrelas, " +"galaxias e nebulosas)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "OCP" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planetas e satélites" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Amosar planetas" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Amosar etiquetas de planetas" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Amosar órbitas de planetas" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simular velocidade da luz" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Escala da Lúa" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Cambio automático de paisaxe cando cambia o planeta" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Autoseleccionar paisaxes" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Amosar atmósfera" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Polución lumínica:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "presión, temperatura, coeficiente de extinción" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refracción/Configuración de extinción..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Escala absoluta:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Escala relativa:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Brillo da Vía Láctea" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Escintileo:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Atenuar o brillo das estrelas ao lado dun obxecto moi brillante." -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adaptación dinámica do ollo" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Estrelas fugaces" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Ratio horaria cenital" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "ZHR:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" "Magnitudes límite (para observadores con binoculares / sen aparellos)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Magnitudes límite" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Estrelas a magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Límite da magnitude das estrelas" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Nebulosas a magnitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Límite da magnitude dos obxectos do ceo profundo (cúmulos de estrelas, " +"galaxias e nebulosas)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Constelacións" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Amosar liñas" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Amosar etiquetas" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Amosar límites" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Amoxar debuxos das contelaxións" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Brillo de Art" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Esfera celeste" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Amosa a liña do ecuador" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Amosa a liña do meridiano" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Amosar a liña do horizonte" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Amosar a liña eclíptica" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Amosar a liña do plano galáctico" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Proxección" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Engadir/Eliminar paisaxes..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Amosar o chan" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Amosar a néboa" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Usar planeta e posición asociados" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Usar esta paisaxe por omisión" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Usar axustes de brillo para as paisaxes" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Usar esta cultura do ceo por omisión" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visible" @@ -4008,7 +4243,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Dirección á que se apunta cando inicia Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Información do obxecto seleccionado" @@ -4024,11 +4259,8 @@ msgid "Display no information" msgstr "Non amosar información" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ningún" @@ -4170,7 +4402,7 @@ msgstr "segundos" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Data e hora de inicio" @@ -4182,19 +4414,23 @@ msgid "Other:" msgstr "Outra:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Usar data e hora local actuais" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "usar a actual" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Inicia Stellarium coa data e hora do sistema" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Data e hora do sistema" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4202,23 +4438,23 @@ "Axustar o tempo de simulación á seguinte instancia da hora do día no que se " "inicia Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Data do sistema en:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Corrección de tempo" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Editar ecuación" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Opcións de planetario" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4226,143 +4462,151 @@ "A distorsión do espello esférico úsase cando se usa Stellarium cun espello " "esférico en sistemas planetarios de baixo custo." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Distorsión do espello esférico" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Agochar todo o que esté fora do circulo central na vista principal." -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Disc viewport" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Agochar as demais constelacións cando seleccione unha" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Seleccionar unha constelación" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Aliñar etiquetas co horizonte" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Etiquetas de gravidade" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Cambiar fondos de pantalla das nebulosas" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Amosar o botón de fondo de nebulosas" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Botóns para inverter a imaxe vertical e horizontalmente." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Amosar botóns de inversión da imaxe." -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" "Cando se activa, o «autozoom» tamén estabelece a dirección de visión inicial." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "O autozoom retorna á dirección inicial de visión." -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Amosar sombras solares en planetas e lúas (Para esa característica cómpre a " +"versión 2 ou superior de OpenGL)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Renderizar sombras solares" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Capturas de pantalla" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Cartafol de capturas de pantalla" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Inverter as cores" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Actualizacións de catálogos de estrelas" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Premer aquí para comezar a descarga" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Descarga este ficheiro para ver aínda máis estrelas" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Reiniciar a descarga" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Tentar de novo" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Deter a descarga. Podela reiniciar mais adiante" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cancelar" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Pechar a xanela cando se execute un script" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Executar o script seleccionado" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Deter o script en execución" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Cargar ao comezo" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "Configurar" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Principal" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Información" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navegación" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Ferramentas" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Engadidos" @@ -4537,12 +4781,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Mostra un compás con marcas ó longo do horizonte" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculares" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4552,165 +4796,165 @@ "simularán os aumentos e o campo de visión). Tamén se pode mostrar un cadro " "para o sensor e unha vista Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" "Por favor, selecciona un obxecto antes de escoller a vista de ocular." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "Ocular &Anterior" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "Ocular &Seguinte" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Selecciona &Ocular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Cambiar &Cruz" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Configurar O&culares" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "&Cambiar CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Cambiar &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Anterior CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Seguinte CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Escolle CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Rotar CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Desfacer rotación" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Ocular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Ocular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Ocular FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "aFOV do ocular: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Lentes #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Lentes #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Lentes: non" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Telescopio #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Telescopio #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Aumento: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensións: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Lentes" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "Lentes &Previas" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "Lentes &Seguintes" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Telescopio" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "Telescopio &Anterior" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "Telescopio &Seguinte" @@ -4782,66 +5026,71 @@ msgid "Apparent field of view of the ocular" msgstr "Campo de visión aparente do ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Multiplicidade: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Lentes: non" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Multiplicidade: N/A" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Multiplicidade de lentes" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Distancia focal do ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotación: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Aumentos proporcionados por estes binoculares" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Campo de visión actual proporcionado por estes binoculares" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "Aumentos fornecidos por esta combinación de ocular/lente/telecopio" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Campo de visión actual fornecido por esta combinación de " "ocular/lente/telescopio" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Plugin para oculares" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versión" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Característica de lente Barlow" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Vista xeral" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4853,7 +5102,7 @@ "oculares e telescopios, así como sensores CCD. A primeira vez que se executa " "a aplicación pódense escoller algunhas mostras para o seu inicio." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4870,7 +5119,7 @@ "coa imaxe escalada, desperdíciase unha boa parte da pantalla. Por iso se " "recomenda non usalo a menos que haxa unha verdadeira necesidade del." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4880,7 +5129,7 @@ "ao Norte. Eu fun incapaz de facelo. Así, na actualidade, alíñase coa parte " "superior da pantalla." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4893,118 +5142,127 @@ "de 0.5%1, 2.0%1, and 4.0%1, axudando a ver o que se espera ver a simple " "vista a través do buscador Telrad (ou similar)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Se atopa calquera problema, por favor avíseme. Desfrúteo." -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Teclas rápidas" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "As conexións clave dos plugin poden ser editadas na Pestana Xeral" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[non se definiu unha tecla]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Activa/Desactiva a superposición do ocular" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Abrir o menú de navegación emerxente" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Activar só se se selecciona un obxecto" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Escalar o círculo de imaxe" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" +"Aplicar límites de magnitude estelar para distintas aperturas de telescopios" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Limitar a magnitude estelar" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Mapas de teclado" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Cambiar a vista do ocular" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Abrir o menú emerxente de navegación:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Visualización" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Panel de control na pantalla" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Usar graos e minutos para o FOV do CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Xeral" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Oculares" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Engadir" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Name:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Lonxitude focal:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Campo detido:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binoculares" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Lentes" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Multiplicidade:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Multiplicador:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5012,74 +5270,75 @@ "Valores de multiplicidade > 1 amplian a lonxitude focal (lentes Barlow). " "Valores de multiplicidade < 1 diminúen a lonxitude focal (lentes Shapley)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensores" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Resolución x (píxeles):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Resolución y (píxeles):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Largura do chip (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Altura do chip (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Largura de píxel (micrón):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Altura de píxel (micrón)" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Telescopios" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diámetro:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Disposición Horizontal" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Disposición Vertical" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Acerca de" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satélites" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5087,88 +5346,148 @@ "Predición das posicións dos satélites artificiais na órbita terrestre " "baseada nos datos NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "O vello arquivo de satélites.json non é compatible - usando o arquivo por " "defecto" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "visual" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "científico" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "comunicacións" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navegación" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "afeccionado" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "o tempo" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "xeoestacionario" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "non operativo" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "gps" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "iridio" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Telescopio Espacial Hubble" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "Estación Espacial Internacional" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Catálogo #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Deseñador internacional" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "satélite artificial" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Rango (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Ratio de rango (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitude (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "SubPunto (Lat./Lonx.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Coordenadas TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "Velocidade TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "O satélite e o observador están na luz diúrna." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "O satélite é visible." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "O satélite está eclipsado." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "O satélite non é visible." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Plugin de satélites para Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5176,18 +5495,18 @@ "O plugín de satélites predí as posicións dos satélites artificiais en órbita " "terrestre." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Notas para usuarios" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Os satélites e as súas órbitas só se mostran cando o observador está na " "Terra." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5197,7 +5516,7 @@ "orde de días, semanas ou talvez un mes tanto cara ó pasado coma cara ó " "futuro). Para datas fóra destes rangos os resultados non son fiables." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5210,7 +5529,7 @@ "days). To get useful data out, you need to update the TLE data regularly." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5226,7 +5545,7 @@ "the default %3 file. The old file will be backed up as %4. This can be " "found in the user data directory, under \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5235,11 +5554,11 @@ "incompletas, perdidas ou tñen erros." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Actualización de datos TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5249,7 +5568,7 @@ "fontes de internet, e o plugín fará isto por defecto se os datos existentes " "teñen máis de 72 horas. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5260,7 +5579,7 @@ "arquivo gardado no ordenador. Este arquivo debe ter o mesmo formato das " "actualizacións Celestrak (ver %1 para un exemplo)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5268,11 +5587,11 @@ "Nota: se o nome dun satélite na actualización de datos ten algo entre " "corchetes ó final, será eliminado antes de utilizar os datos." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Engadindo novos satélites" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5284,11 +5603,11 @@ "á pestana Satélites, e preme o botón \"+\". Selecciona o satélite (s) que " "quere engadir e preme o botón \"Add\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Notas técnicas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5296,7 +5615,7 @@ "As posicións calcúlanse usando os métodos SGP4 & SDP4, usando como datos de " "entrada NORAD TLE. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5305,24 +5624,26 @@ "informe Spacetrack #3 revisado (incluíndo o infomre Spacetrack #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Ver %1este documento%2 para máis detalles." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Ligazóns" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5332,31 +5653,34 @@ "\"%1\" no asunto ó enviar." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Se tes unha pregunta podes %1 obter resposta aquí %2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "O infome de erros pódese crear %1aquí%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5364,120 +5688,140 @@ "Para facer unha pregunta, podes crear un informe de erro e elixir a " "gravidade na \"lista de desexos\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Desactivada a actualización por Internet" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Actualizando arestora..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Próxima actualización: < 1 minuto" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Próxima actualización: %1 minutos" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Próxima actualización: %1 horas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Actualizar agora" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Actualizar dende arquivos" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Erro na actualización" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Actualizado(s) satélite(s) %1/%2 satellite(s); %3 non atopado(s)" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Actualizado(s) %1/%2 satélite(s); %3 engadido(s); %4 eliminado(s)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Actualizado(s) %1/%2 satélite(s); %3 engadido(s); %4 desaparecido(s)" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[nova fonte]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Actualizar agora" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Actualizar dende arquivos" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[erro calculado da órbita]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[engadidas as novidades]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[non se mostra todo]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[móstrase todo]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[todo]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Novo grupo..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Selecciona o arquivo de actualización TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Descargando datos" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5485,175 +5829,202 @@ "Stellarium está a descargar datos de satélites dende fontes actualizadas. " "Por favor, agarda..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Selecciona o(s) arquivo(s) fonte TLE..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Procesando datos..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Os datos non se poden descargar. Proba máis tarde." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Número de Catálogo: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Configuración de Satélites" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Listas TLE de actualización dende fontes de Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Actualizacións" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Actualizar dende fontes de Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Actualizar datos de satélites dende fontes da Internet" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Última actualización:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" +"Na actualización, engadir todos os novos satélites dende a fonte(s) " +"seleccionada(s)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Na actualización, eliminar os satélites que xa non están listados nas fontes " +"de actualización" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Frecuencia de actualización (horas):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Etiquetas" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Tamaño de letra da etiqueta (píxeles):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Liñas orbitais" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Número de segmentos usados para debuxar a liña" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Número de segmentos:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Duración dun único segmento en segundos" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Lonxitude do(s) segmento(s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Número de segmentos usados para debuxar cada final de liña" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Duración do esvaecemento" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Restablecer configuración por defecto" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Gardar como configuración por defecto" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Configuración" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Dobre click nun satélite para comezar o seguimento" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Engadir máis satélites" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Elimina os satélites seleccionados" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Gardar cambios" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Número de catálogo:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Mostra o(s) satélite(s) seleccionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Mostrado" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Mostra as liñas orbitais para o(s) satélite(s) seleccionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Órbita" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Número de catálogo:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" +"Non actualizar (ou eliminar na actualización) o(s) satélite(s) selecionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Non actualizar" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Descrición:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Grupos:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Lista de grupos separada por comas" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Datos TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Datos de órbita de elementos NORAD de dúas liñas" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Elimina os satélites seleccionados" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Engadir máis satélites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Definir TLE:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Gardar cambios" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Os atélites nas listas de orixe marcados serán automaticamente engadidos na " +"próxima actualización, si aínda non están na colección." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5661,15 +6032,15 @@ "Inserir ou editar o URL da fonte seleccionada. Os cambios gardaranse ó " "premer Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Engadir nova fonte" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Eliminar a fonte seleccionada" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Fontes" @@ -5705,11 +6076,11 @@ msgid "Discard" msgstr "Desbotar" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Control do telescopio" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5717,12 +6088,12 @@ "Este engadido permítelle a Stellarium enviar comandos \"slew\" a telescopios " "con montura computerizada (Telescopios con GoTo)" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Orientar o telescopio nº %1 ao obxecto seleccionado" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -6131,62 +6502,62 @@ "xeito como a hora e a data se amosan na barra inferior." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Xaneiro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Febreiro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Marzo" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Abril" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Maio" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Xuño" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Xullo" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Agosto" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Setembro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Outubro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Novembro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Decembro" @@ -6346,7 +6717,7 @@ "do fondo." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Formato e presentación do tempo" @@ -6364,7 +6735,7 @@ msgstr "Formato de 24 horas" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Formato de data" @@ -6380,11 +6751,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-aaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Interface de usuario de texto" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6392,144 +6763,144 @@ "Engadido para incorporar a interface de texto de usuario da serie 0.9.x, " "empregada nos sistemas dos planetarios" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Corpo do Sistema Solar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Data/hora actual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Establecer a zona horaria" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Teclas de día" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Inicio da programación de data/hora" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "sistema" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "predefinido" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "aaaammdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Idioma" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Mostrar as estrelas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Cores" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Nomes de nebulosas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Información de nebulosas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Liña do plano galáctico" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efectos" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Zoom manual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Multiplicador da escala de magnitude" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intensidade da Vía Láctea:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Frecuencia de etiquetas de nebulosas:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Duración do zoom:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Desaparición do cursor:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "A configuración da paisaxe indica o lugar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Executar un script local" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Deter o script en curso" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Script de CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administración" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Cargar a configuración por omisión" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Gardar a configuración actual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Apagar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[non hai modo texto]" @@ -6565,16 +6936,16 @@ "realizar buscas en bases de datos en liña." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Consultar o %1 do MPC:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Só se devolverá un resultado se a consulta ten éxito." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6582,7 +6953,7 @@ "Os cometas e asteroides poden ser identificados co seu número, nome (en " "inglés) ou designación provisional." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6772,40 +7143,44 @@ msgid "Solar System" msgstr "Sistema Solar" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Supernovas históricas" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." -msgstr "" -"Un plugin que mostra algunhas supernovas brillantes históricas de magnitude " -"visual maior de 10." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." +msgstr "Este plugin permite ver algunhas supernovas brillantes históricas" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Tipo de supernova: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Brillo máximo: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Plugin de Supernovas Históricas" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "Este plugin permite ver algunhas supernovas brillantes históricas " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Un plugin que mostra algunhas supernovas históricas de magnitude visual " -"maior de 10: " +"Todas estas supernovas brillan máis de %1 na súa maior intensidade de brillo." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Curvas de luz" @@ -6827,7 +7202,7 @@ msgstr "Agradecementos" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6843,14 +7218,14 @@ msgstr "Institute for Theoretical and Experimental Physics" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "en Rusia" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6860,8 +7235,9 @@ "formato do catálogo, podes %1obter información aquí%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Próxima actualización: %1 días" @@ -6879,29 +7255,117 @@ msgstr "Configuración do plugin de Supernovas Históricas" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Catálogo actualizado dende internet" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Actualizar dende fontes de Internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Frecuencia de actualización (días):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[información sobre a seguinte actualización]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Nova brillante" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" +"Un plugin que permite ver algunhas das novae brillantes da Vía Láctea" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Tipo: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Plugin de Novae brillantes" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"Podes atopar novae usando a ferramenta de busca, escribindo a designación da " +"nova ou o seu nome común (por exemplo, 'Nova Cygni 1975' ou 'V1500 Cyg)." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"Este plugin usa un modelo moi simple de cálculo para curvas de luz de " +"estrelas novae" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Este modelo baséase no tempo para a desintegración dunha magnitude %1 a " +"partir do valor máximo, sendo que 1% é 2, 3, 6 e 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Se a nova non ten valores de decadencia da magnitude entón este plugin usará " +"valores xerais para el." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Se queres ler máis información sobre este plugin, a súa historia e formato " +"de catálogo, podes %1ver información aquí%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Nova actualizada" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Configuración do brillo das novae" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Plugin de configuración do brillo das novae" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quasars" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6920,11 +7384,11 @@ msgid "Z (redshift): %1" msgstr "Z (desprazamento cara o vermello): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Plugin de Quásares" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6934,40 +7398,50 @@ "superior á magnitude visual 16. O catálogo de quásares foi recomplilado a " "partir de \"Quasars and Active Galactic Nuclei\" (13ª Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Os Quásares foron actualizados" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Configuración de Quásares" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Configuración do plugin de Quásares" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Modo de visualización de quásares" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Axustes para quasars" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Debuxa todos os quásares sen etiquetas" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Activar a visualización da distribución de quásares" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Activar ao inicio" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Amosar botón de quasars na barra de ferramentas" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Púlsars" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7093,11 +7567,11 @@ "estrela de neutróns illada con pulsos de raios X magnetotérmico, pero sen " "emisión de radio detectable" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Plugin de Púlsares" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7108,67 +7582,71 @@ "N., Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Nota" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "Os identificadores de púlsar teñen o prefixo 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Recoñecemento" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Observatorio Radioastronómico de Pushchino" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Observatorio Radioastronómico de Nancay" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "en Francia" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Actualizados os púlsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Configuración de Púlsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Configuración do plugin de Púlsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Modo de visualización para os púlsares" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Axustes para pulsars" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Debuxa todos os púlsares sen etiquetas" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Activar visualización de distribución para os púlsares" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Amosar botón de pulsars na barra de ferramentas" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplanetas" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7177,71 +7655,71 @@ "exoplanetas foron tirados da \"Extrasolar Planets Encyclopaedia' en " "explanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metalicidade" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Masa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Radio" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Temperatura efectiva: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplaneta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Periodo" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "días" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Eixe Semi-Maior" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "UA" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Excentricidade" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inclinación" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Distancia angular" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Ano de descuberta" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Plugin de exoplanetas" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7251,7 +7729,7 @@ "exoplanetas foron tirados da \"%1The Extrasolar Planets Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7260,42 +7738,133 @@ "Se queres ler a información completa sobre o plugin, a súa historia e o " "formato do catálogo, pódese acceder á información %1aquí%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" +"Webs xerais profesionais de sitios relevantes para planetas extrasolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanetas: unha versión interactiva de XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (O cazador de Exolúas con Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Exoplanetas en sistemas binarios e múltiples (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Nomeando exoplanetas (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" +"Algúns astrónomos e grupos activos en estudos de planetas extrasolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "actualización: 16 Abril 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "O Explorador de Datos de Exoplanetas" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "O Buscador de Planetas anglo-australiano" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Programas de busca de planetas extrasolares Geneva" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Optical Long-Baseline Interferometry News)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "Programa de Exploración de Exoplanetas da NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Planetas púlsar" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "Arquivo de Exoplanetas da NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "IAU Comission 53: Planetas Extrasolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "Galería da Zona Habitable" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "Busca de planetas-A busca doutra Terra" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Abrir catálogo de exoplanetas" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "Catálogo de exoplanetas habitables" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Actualizados os exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Configuración de exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Configuración do plugin de Exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Actualizar os exoplanetas dende internet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Visualizar en modo de exoplanetas" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Axustes para exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Debuxar todos os sistemas con exoplanetas e sen etiquetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Activar a visualización de distribución dos explanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Visualizar exoplanetas dende o seu descubrimento" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Activar liña de tempo de descubrimento de exoplanetas" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Amosar botón de exoplanetas na barra de ferramentas" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Información" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Análise de observabilidade" @@ -7318,185 +7887,179 @@ "Unha explicación sobre as cantidades indicadas por este script é dáse na " "lapela \"Acerca de\" da fiestra de configuración." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "xan" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "abr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "mai" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "xun" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "xul" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "ago" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "set" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "out" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "dec" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Establece como %1 (en %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Pon como %1 (%2 atrás)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Establece como %1 (%2 atrás)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Sobre o %1 (en %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Circumpolar." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Non sae." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Culmina en %1 (en %2) a %3 graos." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Culminado en %1 (%2 atrás) a %3 graos." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "A fonte non é observable." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Sen saída/posta cósmica nin acrónica." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "A maior elongación " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "A maior separación do Sol " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (a %1 grao.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Saída/posta acrónica." -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Saída/posta non acrónica." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Saída/posta cósmica" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Saída/posta non cósmica." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Observable durante todo o ano." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Non observable en noites escuras." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Noites sobre o horizonte: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "HOXE:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "ESTE ANO:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Lúa chea anterior: %1 %2 at %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Próxima lúa chea: %1 %2 at %3:%4. " @@ -7906,6 +8469,9 @@ #~ msgid "/" #~ msgstr "/" +#~ msgid "Nebulas background images" +#~ msgstr "Imaxes de nebulosas difusas" + #~ msgid "Startup FOV: XX" #~ msgstr "Comezar FOV: XX" @@ -7972,6 +8538,9 @@ #~ msgid "Update me via Internet: " #~ msgstr "Actualizar ao traves da Internet: " +#~ msgid "Nebulas" +#~ msgstr "Nebulosas" + #~ msgid "Hourly zenith rate:" #~ msgstr "Taxa horaria cenital:" @@ -8042,6 +8611,22 @@ #~ "O soporte proporciónase a través do sitio web Launchpad. Non esquecer pór " #~ "\"plugin Satellite\" no asunto ó enviar." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Actualizado(s) satélite(s) %1/%2 satellite(s); %3 non atopado(s)" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Listas TLE de actualización dende fontes de Internet" + +#~ msgid "TLE data:" +#~ msgstr "Datos TLE:" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Lista de grupos separada por comas" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Datos de órbita de elementos NORAD de dúas liñas" + #~ msgid "Plugin Key Bindings" #~ msgstr "Engadido de encapsulamento de claves" @@ -8178,6 +8763,19 @@ #~ msgid "Display the hour angle + DE (of date)" #~ msgstr "Ver o ángulo horario + DE (dunha data)" +#~ msgid "Display mode for pulsars" +#~ msgstr "Modo de visualización para os púlsares" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Un plugin que mostra algunhas supernovas brillantes históricas de magnitude " +#~ "visual maior de 10." + +#~ msgid "Display mode for quasars" +#~ msgstr "Modo de visualización de quásares" + #, qt-format #~ msgid "Galactic longitude/latitude (J2000): %1/%2" #~ msgstr "Lonxitude/latitude galáctica (J2000): %1/%2" @@ -8210,6 +8808,11 @@ #~ msgstr "" #~ "Phobos eclipsa o sol visto dende o Monte Olimpo o 10 de xaneiro de 2068" +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Fondo de pantalla de varios acontecementos no Sistema Solar. 171 en total." + #~ msgid "A tour via western constellations." #~ msgstr "Un paseo polas constelacións do oeste." @@ -8237,6 +8840,13 @@ #~ "As mellores vistas da Terra dende outros corpos do Sistema solar no século " #~ "21." +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Un plugin que mostra algunhas supernovas históricas de magnitude visual " +#~ "maior de 10: " + #~ msgid "0 deg." #~ msgstr "0 graos." diff -Nru stellarium-0.12.1/po/stellarium/gn.po stellarium-0.12.4/po/stellarium/gn.po --- stellarium-0.12.1/po/stellarium/gn.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/gn.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-12-26 14:55+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Guarani \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/gu.po stellarium-0.12.4/po/stellarium/gu.po --- stellarium-0.12.1/po/stellarium/gu.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/gu.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2010-01-28 20:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:49+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "લેખક " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "સà«â€àª¥àª¾àª¨ " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "ગà«àª°àª¹ " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "આકાશગંગા" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "નિહારિકા" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "અજà«àªžàª¾àª¤" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "પારવાનો" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "અવકાશ" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/gv.po stellarium-0.12.4/po/stellarium/gv.po --- stellarium-0.12.1/po/stellarium/gv.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/gv.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-12-26 14:15+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Manx \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Gyn fys" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Doilleid" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Enney" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/haw.po stellarium-0.12.4/po/stellarium/haw.po --- stellarium-0.12.1/po/stellarium/haw.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/haw.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium 0.8.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-09 17:21+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: English \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:49+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "La" @@ -1209,12 +1320,12 @@ msgstr "'Aina" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Mahina" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Hoku-ula" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Makulu" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 +msgid "Norse" +msgstr "" + +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesian" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Western" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "KanakÄ" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Kina" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "KelemÄnia" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Kenemaka" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ê»Alekelia" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Kepania" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Palani" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Aupuni MÅʻī Hui PÅ« Ê»Ia" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Helene" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ê»Ilelani" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Ê»IseraÊ»ela" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ʻĪnia" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ʻĪkÄlia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "IÄpana" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mekiko" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "HÅlani" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Aotearoa" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "ʻĀina Pilipino" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Ê»Amelika Hui PÅ« Ê»Ia" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Fog" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stars" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Location" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planets" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cancel" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/he.po stellarium-0.12.4/po/stellarium/he.po --- stellarium-0.12.1/po/stellarium/he.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/he.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2011-07-18 20:26+0000\n" "Last-Translator: Kiril \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:49+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "מרידי×ן" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "קו המלקה" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "קו המשווה" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "×ופק" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "מחבר: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "מיקו×: †" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 מ'" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "כוכב לכת " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "סוג: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "מגניטודה(בהירות): %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "גודל: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "גלקסיה" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "צביר פתוח" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "צביר כדורי" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "ערפילית" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "ערפילית פלנטרית" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "×¦×‘×™×¨×™× ×”×§×©×•×¨×™× ×œ×¢×™×¨×¤×•×œ" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "×œ× ×™×“×•×¢" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "סוג ×œ× ×ž×ª×•×¢×“" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "מגניטודה(בהירות) מוחלטת: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "מרחק: %1 ×™\"×" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "קוטר נר××”: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "סיווג ספקטרלי: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "מרחק: %1 שנות-×ור" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "פרלקסה: \"%1" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -653,52 +745,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "בחר תיקית תמונות מסך" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "שדה ר××™×™×” ב×יתחול: %2%1" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "כיוון הסתכלות בעת הפעלה ×זימוט/גובה: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "מחברי×" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "צור קשר" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "מחבר" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "רשיון" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "סקריפט פעיל: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "סקריפט רץ: [×ין]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -706,16 +799,16 @@ "סתיימה הורדת קטלוגי ×›×•×›×‘×™× ×—×“×©×™×!\n" "×תחל ×ת ×¡×˜×œ×¨×™×•× ×›×“×™ להציג×." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "מוריד קטלוג %1 מתוך %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -724,7 +817,7 @@ "מוריד %1...\n" "(ניתן לסגור חלון ×–×”.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -735,7 +828,7 @@ "מספר כוכבי×: %2 מיליוני×\n" "טווח מגניטודה(בהירות): %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -744,11 +837,11 @@ "שגי×ת הורדה %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "×ž×•×•×“× ×ת שלמות הקובץ..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -758,115 +851,123 @@ "הקובץ פגו×." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1025,49 +1126,53 @@ msgid "OSX Developer: %1" msgstr "מפתח OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "חלון קונסולת סקריפט" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "חלונות" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1מטר" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "×ין תי×ור" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "×œ×œ× ×›×•×›×‘×™× × ×•×¤×œ×™×" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "קצב נורמלי" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "קצב פרס××™×“×™× ×¡×˜× ×“×¨×˜×™" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "קצב לי××•× ×™×“×™× ×—×¨×™×’" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "הקצב הגבוה ביותר ××™ ×¤×¢× (הלי××•× ×™×“×™× ×©×œ 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "×ž×™×§×•× ×—×“×©" @@ -1170,19 +1275,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1198,30 +1303,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "מערכת זו ×ינו תומכת בOpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "שמש" @@ -1238,12 +1349,12 @@ msgstr "×רץ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "ירח" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "מ×די×" @@ -1341,7 +1452,7 @@ msgstr "מטיס" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "שבת××™" @@ -1639,239 +1750,268 @@ msgstr "×ינו×טי×" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "קור×נית" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "לקוטה" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "מ×ורית" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "נב×חו" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "נורדית" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "פולינזית" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "טופי-גו×רני" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "מערבית" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1881,1502 +2021,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "ת×ריך ושעה" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "הוסף ×™×•× ×›×•×›×‘×™" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "הוסף שבוע כוכבי" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "הוסף ×™×•× ×©×ž×©×™ ×חד" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "הוסף שעה שמשית ×חת" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "הוסף שבוע שמשי ×חד" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "מ×יט ×ת קצב ביצוע הסקריפט" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "×”×ט ×ת מהירות הזמן" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "×”×ט ×ת מהירות הזמן (מעט)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "מ××™×¥ ×ת קצב ביצוע הסקריפט" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "×”××¥ ×ת מהירות הזמן" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "×”××¥ ×ת מהירות הזמן (מעט)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "קבע ×ת הזמן לעכשיו" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "קבע ×ת קצב ביצוע הסקריפט לקצב נורמלי" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "קבע קצב זמן למהירות נורמלית" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "קבע ×ת קצב הזמן ל×פס" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "החסר ×™×•× ×›×•×›×‘×™" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "החסר שבוע כוכבי" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "הורד ×™×•× ×©×ž×©×™ ×חד" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "הורד שעה שמשית ×חת" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "הורד שבוע שמשי ×חד" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "×פשרויות תצוגה" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "הפוך סצנה ×ופקית" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "מצב מסך מל×" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "×טמוספירה" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "רשת ×זימוטלית" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "נקודות חשובות" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "×ומנות קבוצות כוכבי×" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "גבולות קבוצות כוכבי×" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "שמות קבוצות כוכבי×" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "קווי קבוצות כוכבי×" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "תמונות רקע של ערפיליות" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "קו המילקה" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "קו המשווה" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "רשת משוונית" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "רשת משוונית J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "ערפל" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "רשת גלקטית" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "×דמה" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "קו ×ופק" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "קו המרידי×ן" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "ערפיליות" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "מצב לילה" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "מסלולי כוכבי הלכת" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "עקבות כוכבי לכת" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "כוכבי×" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "הפוך סצנה ×נכית" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "שונות" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "×”×—×‘× ×וטומטית פס ×›×¤×ª×•×¨×™× ×ופקי" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "×”×—×‘× ×וטומטית פס ×›×¤×ª×•×¨×™× ×× ×›×™" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "יצי××”" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "שמור תמונת מסך" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "החלף בין ×›× ×” ×זימוטלית לכנה משוונית" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "הפעל / בטל ×ת נר×ות הממשק הגרפי" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "תנועה ובחירה" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "התמקד על ×”×¢×¦× ×”× ×‘×—×¨" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "קבע ×ת כוכב לכת הביתי ככוכב הלכת הנבחר" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "עקוב ×חרי העצ×" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "התמקד על ×”×¢×¦× ×”× ×‘×—×¨" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "להתרחק" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "מדידת זווית" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "שמות לוויני×" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "סקריפטי×" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "חלון קונפיגורציה" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "חלון ת×ריך/זמן" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "חלון עזרה" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "חלון מיקו×" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "חלון חיפוש" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "חלון ×פשרויות ×©×ž×™×™× ×•×ª×¦×•×’×”" @@ -3402,7 +3578,7 @@ msgstr "רענן" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "מיקו×" @@ -3418,10 +3594,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "מחק" @@ -3430,7 +3606,7 @@ msgstr "הוסף לרשימה" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "קו רוחב:" @@ -3441,12 +3617,12 @@ msgstr "ניתן להכניס ×¢×¨×›×™× ×›×ž×¢×œ×•×ª עשרוניות ×ו בפורמט dms, למשל: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "קו ×ורך:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "גובה:" @@ -3470,363 +3646,407 @@ msgid "Planet:" msgstr "כוכב לכת:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "×ž×¦× ×¢×¦×" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "עלייה ישרה/נטייה (ינו×ר2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "×פשרויות" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "×פשרויות" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "תצוגה" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "שמיי×" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "סימוני×" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "נוף" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "מורשת כוכבי×" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "תוויות וסימוני×" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "כוכבי לכת" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "כוכבי לכת וירחי×" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "הצג כוכבי לכת" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "הצג סימוני כוכבי לכת" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "הצג מסלולי כוכבי לכת" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "דמה ×ת מהירות ×”×ור" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "הר××” ×טמוספירה" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "קנה מידה מוחלט:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "קנה מידה יחסי:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "ניצנוץ:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "×¢×ž×¢× ×›×•×›×‘×™× ×§×œ×•×©×™× ×›×שר ×¢×¦× ×‘×”×™×¨ במיוחד ניר××”" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "הסתגלות עין דינמית" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "×›×•×›×‘×™× × ×•×¤×œ×™×" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "קבוצות כוכבי×" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "הצג קוי×" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "הצג שמות" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "הצג גבולות" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "הצג ×ומנות" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ספירה שמימית" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "היטל" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "הוספה / הסרה של נוף" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "הצג ×דמה" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "הצג ערפל" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "השתמש בכוכבי הלכת ×•×‘×ž×™×§×•×ž×™× ×”×§×©×•×¨×™×" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "השתמש בנוף ×–×” כברירת מחדל" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "השתמש בתרבות ×©×ž×™×™× ×–×• כברירת מחדל" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "נר××”" @@ -3879,7 +4099,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "הכיוון ×ליו ×ת/×” מסתכל/ת ב×תחול של סטלריו×" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "מידע על ×”×¢×¦× ×”× ×‘×—×¨" @@ -3895,11 +4115,8 @@ msgid "Display no information" msgstr "×ל תציג מידע" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "××£ ×חד" @@ -4041,7 +4258,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "ת×ריך ושעה בעת הפעלת התוכנה" @@ -4053,41 +4270,45 @@ msgid "Other:" msgstr "×חר:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "השתמש בנוכחי" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "התחל ×ת ×¡×˜×œ×¨×™×•× ×¢× ×ª×ריך וזמן המערכת" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "ת×ריך וזמן המערכת" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "קבע ×ת זמן ההדמייה למופע ×”×‘× ×©×œ הזמן ×‘×™×•× ×›×שר ×ž×¤×¢×™×œ×™× ×ת סטלריו×" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "ת×ריך מערכת ב:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "×פשרויות פלנטריו×" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4095,143 +4316,149 @@ "עיוותי מר××” כדורית בשימוש ×›×שר ×ž×§×¨×™× ×™× ×ת ×¡×˜×œ×¨×™×•× ×¢×œ מר××” כדורית בעבור " "מערכות ×¤×œ× ×˜×¨×™×•× ×–×•×œ×•×ª." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "עיוותי מר××” כדורית" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "הסתר כל מה שמחוץ למעגל המרכזי בתצוגה הר×שית" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "תצוגת דיסק" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "הסתר קבוצות ×›×•×›×‘×™× ×חרות ×›×שר ×œ×•×—×¦×™× ×¢×œ ×חת" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "בחר קבוצת ×›×•×›×‘×™× ×™×—×™×“×”" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "יישר תוויות ×¢× ×”×ופק" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "תוויות גרביטציה" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "×פשר / בטל כפתורי היפוך תמונה ×ופקי ו×× ×›×™" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "הצג כפתורי היפוך" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" "×›×שר מ×ופשר, מקש \"התרחקות ×וטומטית\" יקבע ×’× ×ת כיוון ההסתכלות הר×שוני" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "התרחקות ×וטומטית תחזיר ×ת כיוון ההסתכלות לכיוון הר×שוני" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "תמונות מסך" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "תיקיית תמונות מסך" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "היפוך צבעי×" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "קטלוג ×›×•×›×‘×™× ×ž×ª×¢×“×›×Ÿ" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "לחץ ×›×ן כדי להתחיל ×ת ההורדה" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "הורד קובץ ×–×”" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "התחל שנית ×ת ההורדה" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "נסה שנית" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "עצור ×ת ההורדה. תוכל להמשיכה מ×וחר יותר" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "ביטול" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "סגור חלון בעת ריצת סקריפט" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "הרץ ×ת הסקריפט הנבחר" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "עצור סקריפט שרץ" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "טען בעליית התוכנה" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "הגדר" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "ר×שי" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "מידע" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "ניווט" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "כלי×" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "תוספי×" @@ -4399,176 +4626,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "תצוגת כיווני מצפן ב×ופק" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4640,64 +4867,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4705,7 +4937,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4716,14 +4948,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4732,305 +4964,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "לוויני×" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5038,25 +5339,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5064,17 +5365,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5082,41 +5383,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5124,338 +5427,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5491,22 +5837,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "שליטה על הטלסקופ" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5889,62 +6235,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6098,7 +6444,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6116,7 +6462,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6132,154 +6478,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "ממשק טקסט" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "שפה" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6312,22 +6658,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6496,36 +6842,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6543,7 +6896,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6557,14 +6910,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6572,8 +6925,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6591,29 +6945,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6629,51 +7060,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6793,11 +7234,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6805,137 +7246,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "×™\"×" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6943,49 +7388,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7001,185 +7535,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "מ" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7518,6 +8046,12 @@ #~ msgid "Sky Culture: " #~ msgstr "×©×ž×™×™× ×œ×¤×™ תרבות: " +#~ msgid "Nebulas" +#~ msgstr "ערפיליות" + +#~ msgid "Nebulas background images" +#~ msgstr "תמונות רקע של ערפיליות" + #~ msgid "Form" #~ msgstr "טופס" diff -Nru stellarium-0.12.1/po/stellarium/hi.po stellarium-0.12.4/po/stellarium/hi.po --- stellarium-0.12.1/po/stellarium/hi.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/hi.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-01-26 14:00+0000\n" "Last-Translator: Ravi Prakash Arya \n" "Language-Team: Hindi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:49+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Madhyalagna" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Krantivritta" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Vishuva vritta" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "कà¥à¤·à¤¿à¤¤à¤¿à¤œ" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Paramesthi Mandala" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "रचेता " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "सà¥à¤¥à¤¾à¤¨à¤ƒ " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "गà¥à¤°à¤¹: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "पà¥à¤°à¤•à¤¾à¤°: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "तीवà¥à¤°à¤¤à¤¾: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "आकारः %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Paramesthi Mandala" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "खà¥à¤²à¤¾ तारा कà¥à¤‚ज" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "गोलाकार तारा कà¥à¤‚ज" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "नीहारिका" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "गà¥à¤°à¤¹à¤¾à¤•à¤¾à¤° नीहारिका" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "नीहारिका संयà¥à¤•à¥à¤¤ तारा कà¥à¤‚ज" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "अजà¥à¤žà¤¾à¤¤" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "अलिखित पà¥à¤°à¤•à¤¾à¤°" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "सà¥à¤µà¤¤à¤‚तà¥à¤° तेजसà¥à¤µà¤¿à¤¤à¤¾: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "अनà¥à¤¤à¤°: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "आभासी वà¥à¤¯à¤¾à¤¸: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "वरà¥à¤£à¤•à¥à¤°à¤®à¥€à¤¯ पà¥à¤°à¤•à¤¾à¤°: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "अंतर: %1 पà¥à¤°à¤•à¤¾à¤¶à¤µà¤°à¥à¤·" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "पैरालैकà¥à¤¸: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -641,52 +733,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "सà¥à¤•à¥à¤°à¥€à¤¨à¤¶à¥‰à¤Ÿ डायरेकà¥à¤Ÿà¤°à¥€ चà¥à¤¨à¥‡" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "पà¥à¤°à¤¾à¤°à¤‚भिक कोणीय दृषà¥à¤Ÿà¤¿à¤•à¥à¤·à¥‡à¤¤à¥à¤°: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "पà¥à¤°à¤¾à¤°à¤‚भिक दृशà¥à¤¯ दिशा à¤à¤œ/आलà¥à¤Ÿ: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "रचयिता" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "समà¥à¤ªà¤°à¥à¤• करें" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "रचयिता" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "अनà¥à¤œà¥à¤žà¤¾à¤ªà¤¤à¥à¤° (लाइसेंस)" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "सकà¥à¤°à¤¿à¤¯ सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "सकà¥à¤°à¤¿à¤¯ सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ: [कोई नहीं]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -694,16 +787,16 @@ "तारों के नठकैटालोग डाऊनलोड हो चà¥à¤•à¥‡ है!\n" "उनà¥à¤¹à¥‡à¤‚ देखने के लिठसà¥à¤Ÿà¥‡à¤²à¤¾à¤°à¤¿à¤¯à¤® पà¥à¤¨à¤ƒ शà¥à¤°à¥‚ करें" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "%2 में से %1 कैटालोग पà¥à¤°à¤¾à¤ªà¥à¤¤ करें" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -712,7 +805,7 @@ "डाउनलोड शà¥à¤°à¥‚ %1...\n" "(खिडकी बंद कर सकते है)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -723,7 +816,7 @@ "तारों की संखà¥à¤¯à¤¾: %2 Million\n" "तेजसà¥à¤µà¤¿à¤¤à¤¾ विसà¥à¤¤à¤¾à¤°: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -732,11 +825,11 @@ "%1 डाउनलोड नही हो पाया:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "फाइल की जांच हो रही है..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -746,115 +839,123 @@ "फाइल खराब है." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1013,49 +1114,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ खिडकी" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "विभिनà¥à¤¨ खिड़कियाà¤" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "सà¥à¤ªà¥‡à¤¸" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "कोई विवरण नहीं" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "कोई उलà¥à¤•à¤¾ नहीं" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "सामानà¥à¤¯ दर" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "परà¥à¤¸à¥€à¤¡ उलà¥à¤•à¤¾à¤ªà¤¾à¤¤ दर" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "असाधारण लिओनिड दर" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "अधिकतम दर (१९६६ लियोनिड)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "नया सà¥à¤¥à¤²" @@ -1158,19 +1263,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1186,30 +1291,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "यह सिसà¥à¤Ÿà¤® ओपन-जीà¤à¤² को नहीं सà¥à¤µà¥€à¤•à¤¾à¤°à¤¤à¤¾." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "सूरà¥à¤¯" @@ -1226,12 +1337,12 @@ msgstr "पृथà¥à¤µà¥€" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "चनà¥à¤¦à¥à¤°" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "मंगल" @@ -1329,7 +1440,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "शनि" @@ -1627,239 +1738,268 @@ msgstr "इनà¥à¤‡à¤Ÿ" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "कोरियन" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "लकोटा" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "माओरी" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "नावाजो" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "नॉरà¥à¤¸" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "पॉलिनेशियन" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "सामी" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "टà¥à¤ªà¥€-गà¥à¤†à¤°à¤¾à¤¨à¥€" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "पशà¥à¤šà¤¿à¤®à¥€" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1869,1502 +2009,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "तारीख और समय" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "१ नाकà¥à¤·à¤¤à¥à¤° दिन बà¥à¤¾à¤à¤" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "१ नाकà¥à¤·à¤¤à¥à¤° सपà¥à¤¤à¤¾à¤¹ बà¥à¤¾à¤à¤" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "१ सौर दिन बà¥à¤¾à¤à¤" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "१ सौर घंटा बà¥à¤¾à¤à¤" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "१ सौर सपà¥à¤¤à¤¾à¤¹ बà¥à¤¾à¤à¤" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ की कारà¥à¤¯ गती कम करें" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "समय की गती धीमी करें" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "समय की गती धीमी करें (थोड़ी)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ की कारà¥à¤¯ गती बà¥à¤¾à¤à¤‚" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "समय की गती बà¥à¤¾à¤à¤‚" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "समय की गती बà¥à¤¾à¤à¤‚ (थोड़ी)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "वरà¥à¤¤à¤®à¤¾à¤¨ समय लागू' करें" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ को साधारण गती से चलायें" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "सामानà¥à¤¯ समय की गती" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "समय की गती को शूनà¥à¤¯ करें" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "१ नाकà¥à¤·à¤¤à¥à¤° दिन घटाà¤à¤" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "१ नाकà¥à¤·à¤¤à¥à¤° सपà¥à¤¤à¤¾à¤¹ घटाà¤à¤" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "१ सौर दिन घटाà¤à¤" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "१ सौर घंटा घटाà¤à¤" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "१ सौर सपà¥à¤¤à¤¾à¤¹ घटाà¤à¤" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "कंपà¥à¤¯à¥‚टर सà¥à¤•à¥à¤°à¥€à¤¨ विकलà¥à¤ª" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "दृशà¥à¤¯ को कà¥à¤·à¤¿à¤¤à¤¿à¤œ के समांतर दिशा में पलटें" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "फà¥à¤² सà¥à¤•à¥à¤°à¥€à¤¨ मोड" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "वायà¥à¤®à¤£à¥à¤¡à¤²" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "à¤à¤œà¤¼à¤¿à¤®à¥à¤¥à¤² रेखाजाल" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "पà¥à¤°à¤®à¥à¤– दिशाà¤à¤‚" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "तारामंडल की चितà¥à¤°à¤•à¤¾à¤°à¥€" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "तारामंडल की आकृतियों की सीमाà¤à¤" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "तारामंडल की आकृतियों के नाम" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "तारामंडल की रेखाà¤à¤‚" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "निहारिकाओं के पारà¥à¤¶à¥à¤µà¤­à¥‚मी चितà¥à¤°" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "कà¥à¤°à¤¾à¤‚तिवृतà¥à¤¤" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "खगोलीय भूमधà¥à¤¯à¤°à¥‡à¤–ा" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "इकà¥à¤µà¥‡à¤Ÿà¥‹à¤°à¤¿à¤…ल रेखाजाल" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "इकà¥à¤µà¥‡à¤Ÿà¥‹à¤°à¤¿à¤…ल J२००० रेखाजाल" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "धà¥à¤‚ध" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "आकाशगांगेय रेखाजाल" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "धरती" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "मधà¥à¤¯à¤¾à¤¹à¥à¤¨ रेखा" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "निहारिकायें" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "रातà¥à¤°à¥€ उपयोगी मोड" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "गà¥à¤°à¤¹à¥‹à¤‚ की ककà¥à¤·à¤¾" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "गà¥à¤°à¤¹à¥‹à¤‚ के पदचिनà¥à¤¹" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "तारे" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "दृशà¥à¤¯ को लमà¥à¤¬à¤µà¤¤ पलटें" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "विविध" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "सोई बटन तालिका सà¥à¤µà¤¤à¤ƒ अदृशà¥à¤¯ करें" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "खड़ी बटन तालिका सà¥à¤µà¤¤à¤ƒ अदृशà¥à¤¯ करें" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "सà¥à¤Ÿà¥‡à¤²à¤¾à¤°à¤¿à¤¯à¤® बंद करें" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "सà¥à¤•à¥à¤°à¥€à¤¨à¤¶à¥‰à¤Ÿ सेव करें" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "इकà¥à¤µà¥‡à¤Ÿà¥‹à¤°à¤¿à¤…ल व à¤à¤œà¤¼à¤¿à¤®à¥à¤¥à¤² माउंट के बीच बदलें" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "GUI को दृशà¥à¤¯ / अदृशà¥à¤¯ करें" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "गतिविधि व चयन" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "चà¥à¤¨à¥€ हà¥à¤ˆ वासà¥à¤¤à¥ पर केंदà¥à¤°à¤¿à¤¤ करें" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "चà¥à¤¨à¥‡ हà¥à¤ गà¥à¤°à¤¹ को अपना गà¥à¤°à¤¹ बनाà¤à¤‚" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "वसà¥à¤¤à¥ दृशà¥à¤¯ रखें" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "चà¥à¤¨à¥€ वसà¥à¤¤à¥ को बड़ा करें" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "आकार छोटा करें" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "विनà¥à¤¯à¤¾à¤¸ खिड़की" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "तारीख/समय खिडकी" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "सहायता खिडकी" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "सà¥à¤¥à¤¾à¤¨ खिडकी" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "खोज खिडकी" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "आकाश व दृशà¥à¤¯ वà¥à¤¯à¤µà¤¸à¥à¤¥à¤¾ खिडकी" @@ -3390,7 +3566,7 @@ msgstr "ताजा करें" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "सà¥à¤¥à¤¾à¤¨" @@ -3406,10 +3582,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "मिटाà¤à¤" @@ -3418,7 +3594,7 @@ msgstr "सूचि में जोड़े" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "शर:" @@ -3430,12 +3606,12 @@ "आपने आंकड़े दशमलव डीगà¥à¤°à¥€ में दें या दिन मी. से. इस सà¥à¤µà¤°à¥à¤ª में, उदा: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "रेखांश:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "उनà¥à¤¨à¤¤à¤¾à¤‚श:" @@ -3459,363 +3635,407 @@ msgid "Planet:" msgstr "गà¥à¤°à¤¹:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "वसà¥à¤¤à¥ खोजें" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "आर ठ/ डेक (J२०००):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "परà¥à¤¯à¤¾à¤¯" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "परà¥à¤¯à¤¾à¤¯" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "दृशà¥à¤¯" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "आकाश" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "चिहà¥à¤¨à¤•" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "भूदृशà¥à¤¯" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "पारंपरिक कथाà¤à¤" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "नाम व चिहà¥à¤¨à¤•" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "गà¥à¤°à¤¹" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "गà¥à¤°à¤¹ और उपगà¥à¤°à¤¹" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "गà¥à¤°à¤¹ देखें" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "गà¥à¤°à¤¹à¥‹à¤‚ के चिनà¥à¤¹ देखें" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "गà¥à¤°à¤¹à¥‹à¤‚ की ककà¥à¤·à¤¾ देखें" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "पà¥à¤°à¤•à¤¾à¤¶ गति का अनà¥à¤­à¤µ कराà¤à¤" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "चंदà¥à¤° का आकार बà¥à¤¾à¤à¤" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "वायà¥à¤®à¤‚डल दृशà¥à¤¯ करें" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "सà¥à¤µà¤¤à¤‚तà¥à¤° अनà¥à¤ªà¤¾à¤¤:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "सापेकà¥à¤· आकारमान:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "टिमटिमाना:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "कोई पà¥à¤°à¤–र वसà¥à¤¤à¥ दृशà¥à¤¯ होने पर छोटे तारे मंद करें" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "सकà¥à¤°à¤¿à¤¯ दृषà¥à¤Ÿà¥€ समनà¥à¤µà¤¯à¤¨" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "उलà¥à¤•à¤¾à¤à¤" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "खगोलीय आकृतियाà¤" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "रेखाà¤à¤‚ देखें" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "नाम देखें" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "सीमाà¤à¤ देखें" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "चितà¥à¤°à¤•à¤²à¤¾ देखें" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "खगोल" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "पà¥à¤°à¤¦à¤°à¥à¤¶à¤¨" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "भूमि दिखाà¤à¤" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "धà¥à¤‚ध दिखाà¤à¤" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "समà¥à¤¬à¤‚धित गà¥à¤°à¤¹ व सà¥à¤¥à¤¾à¤¨ दिखाà¤à¤" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "यह भूदृशà¥à¤¯ पà¥à¤°à¤¾à¤°à¤‚भ से दिखाà¤à¤" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "यह परंपरा पà¥à¤°à¤¾à¤°à¤‚भ से दिखाà¤à¤" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "दृशà¥à¤¯" @@ -3870,7 +4090,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "सà¥à¤Ÿà¥‡à¤²à¤¾à¤°à¤¿à¤¯à¤® इस दिशा से शà¥à¤°à¥‚ करें" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "चà¥à¤¨à¥€ वसà¥à¤¤à¥ की जानकारी देखें" @@ -3886,11 +4106,8 @@ msgid "Display no information" msgstr "कोई जानकारी न दिखाà¤à¤" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "बिलकà¥à¤² नहीं" @@ -4032,7 +4249,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "पà¥à¤°à¤¾à¤°à¤®à¥à¤­à¤¿à¤• तिथि व समय" @@ -4044,41 +4261,45 @@ msgid "Other:" msgstr "अनà¥à¤¯:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "वरà¥à¤¤à¤®à¤¾à¤¨à¤•à¤¾à¤² का पà¥à¤°à¤¯à¥‹à¤— करें" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "सà¥à¤Ÿà¥‡à¤²à¤¾à¤°à¤¿à¤¯à¤® को कंपà¥à¤¯à¥‚टर के समय और तिथि के साथ शà¥à¤°à¥‚ करें" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "कंपà¥à¤¯à¥‚टर की तिथि व समय" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "अगली बार सà¥à¤Ÿà¥‡à¤²à¤¾à¤°à¤¿à¤¯à¤® की शà¥à¤°à¥à¤†à¤¤ वरà¥à¤¤à¤®à¤¾à¤¨ तिथि के इस समय से करें." -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "कमà¥à¤ªà¥‚टर तिथि का यह समय:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "ताराघर पà¥à¤°à¤¯à¥‹à¤— के विकलà¥à¤ª" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4086,51 +4307,51 @@ "गोलाकार दरà¥à¤ªà¤£ विरूपण का सà¥à¤Ÿà¥‡à¤²à¤¾à¤°à¤¿à¤¯à¤® के किसी कम लागत के तारघर में गोलाकार " "दरà¥à¤ªà¤£ के साथ पà¥à¤°à¤¦à¤°à¥à¤¶à¤¨ के लिठकिया जाता है." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "गोलाकार दरà¥à¤ªà¤£ विरूपण" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "à¤à¤• केंदà¥à¤°à¥€à¤¯ गोल छोड़ अतिरिकà¥à¤¤ सारा दृशà¥à¤¯ काला करें" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "चकती जैसा दृशà¥à¤¯à¤ªà¤Ÿà¤²" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "à¤à¤• आकृति चà¥à¤¨à¤¤à¥‡ ही दूसरी आकृतियाठअदृशà¥à¤¯ करें" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "à¤à¤• आकृति चà¥à¤¨à¥‡" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "नामों को कà¥à¤·à¤¿à¤¤à¤¿à¤œ से समांतर लिखें" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "दृशà¥à¤¯ केंदà¥à¤°à¤¿à¤¤ नाम" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "दृशà¥à¤¯ को लमà¥à¤¬à¤µà¤¤ व कà¥à¤·à¥ˆà¤¤à¤¿à¤œ रूप से पलटने वाली बटन शà¥à¤°à¥‚ / बंद करें." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "दृशà¥à¤¯ पलटने वाली बटन दिखाà¤à¤" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4138,92 +4359,98 @@ "सकà¥à¤°à¤¿à¤¯ करने पर \"सà¥à¤µà¤¤à¤ƒ बाहर ज़ूम\" कà¥à¤‚जी ही आरंभिक दृशà¥à¤¯ की दिशा भी निरà¥à¤§à¤¾à¤°à¤¿à¤¤ " "करेगी" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "सà¥à¤µà¤¤à¤ƒ बाहर ज़ूम होने पर आरंभिक दृशà¥à¤¯ की दिशा दिखेगी" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "सà¥à¤•à¥à¤°à¥€à¤¨à¤¶à¥‰à¤Ÿ" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "सà¥à¤•à¥à¤°à¥€à¤¨à¤¶à¥‰à¤Ÿ डायरेकà¥à¤Ÿà¤°à¥€" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "रंग उलà¥à¤Ÿà¥‡ करें" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "नवीनतम तारों के कटालोग" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "डाऊनलोड के लिठयहाठकà¥à¤²à¤¿à¤• करें" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "अधिक तारें देखने के लिठयह फाइल डाउनलोड करें" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "डाउनलोड पà¥à¤¨à¤ƒ शà¥à¤°à¥‚ करें" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "फिर से" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "डाउनà¥à¤²à¥‹à¤¡ सà¥à¤¥à¤—ित करें. यह बाद में शà¥à¤°à¥‚ किया जा सकता है." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "रदà¥à¤¦ करें" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ चलने पर खिडकी बंद करें" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "चà¥à¤¨à¥€ हà¥à¤ˆ सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ को चलायें" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "सà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ चलना बंद करें" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "शà¥à¤°à¥à¤†à¤¤ से इसà¥à¤¤à¥‡à¤®à¤¾à¤² करें" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "रà¥à¤šà¤¿ अनà¥à¤¸à¤¾à¤° बदलें" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "मà¥à¤–à¥à¤¯" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "जानकारी" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "भà¥à¤°à¤®à¤£" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "उपकरण" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "पà¥à¤²à¤—-इन" @@ -4391,176 +4618,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4632,64 +4859,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4697,7 +4929,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4708,14 +4940,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4724,305 +4956,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5030,25 +5331,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5056,17 +5357,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5074,41 +5375,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5116,338 +5419,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5483,22 +5829,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5881,62 +6227,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6090,7 +6436,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6108,7 +6454,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6124,154 +6470,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "भाषा" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6304,22 +6650,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6488,36 +6834,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6535,7 +6888,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6549,14 +6902,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6564,8 +6917,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6583,29 +6937,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6621,51 +7052,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6785,11 +7226,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6797,137 +7238,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6935,49 +7380,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6993,185 +7527,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7402,6 +7930,12 @@ #~ msgid "Preset Time" #~ msgstr "वरà¥à¤¤à¤®à¤¾à¤¨ समय" +#~ msgid "Nebulas" +#~ msgstr "निहारिकायें" + +#~ msgid "Nebulas background images" +#~ msgstr "निहारिकाओं के पारà¥à¤¶à¥à¤µà¤­à¥‚मी चितà¥à¤°" + #~ msgid "Planets labels" #~ msgstr "गà¥à¤°à¤¹à¥‹à¤‚ के नाम" diff -Nru stellarium-0.12.1/po/stellarium/hr.po stellarium-0.12.4/po/stellarium/hr.po --- stellarium-0.12.1/po/stellarium/hr.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/hr.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-01-07 19:49+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:53+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridijan" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizont" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Položaj: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tip: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnituda: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "VeliÄina: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaksija" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Otvoreni zvjezdani skup" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kuglasti zvjezdani skup" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Maglica" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetarna maglica" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Zvjezdani skup povezan s maglicom" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Nepoznato" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Nedokumentirani tip" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Apsolutna magnituda: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Udaljenost: %1AJ" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Prividni promjer: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektralni tip: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Udaljenost: %1 svjetlosnih godina" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaksa: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Svemirske letjelice" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -654,52 +746,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Odaberite mapu za slike zaslona" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "PoÄetni kut pogleda: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "PoÄetni smjer azimuta/visine pogleda: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autori" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licenca" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Skripta u izvoÄ‘enju: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Skripta u izvoÄ‘enju: [nema]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -707,16 +800,16 @@ "DovrÅ¡eno preuzimanje novih zvjezdanih kataloga!\n" "Ponovno pokrenite Stellarium za njihov prikaz." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Dohvati katalog %1 od %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -725,7 +818,7 @@ "Preuzimanje %1...\n" "(Možete zatvoriti ovaj prozor.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -736,7 +829,7 @@ "Broj zvijezda: %2 milijuna\n" "Raspon magnituda: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -745,11 +838,11 @@ "GreÅ¡ka pri preuzimanju %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Provjera cjelovitosti datoteke..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -759,115 +852,123 @@ "Datoteka je oÅ¡tećena." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1038,49 +1139,53 @@ msgid "OSX Developer: %1" msgstr "Razvoj za OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Konzolni prozor skripte" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Prozori" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Razmak" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Bez opisa" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Bez padajućih zvijezdi" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normalna uÄestalost" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standarna uÄestalost Perzeida" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Izuzetna uÄestalost Leonida" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Najveća uÄestalost ikada (Leonidi 1966.)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Novi položaj" @@ -1183,19 +1288,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1211,30 +1316,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Sistem ne podržava OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sunce" @@ -1251,12 +1362,12 @@ msgstr "Zemlja" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Mjesec" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1354,7 +1465,7 @@ msgstr "Metida" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1652,239 +1763,268 @@ msgstr "Eskimsko" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korejsko" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota (Sioux)" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maorska" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navaho" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Nordijsko" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinezijsko" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Saami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupí-Guaraní" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Zapadno" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Uragan" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1894,1502 +2034,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andora" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Ujedinjeni Arapski Emirati" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigva i Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Angvila" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albanija" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenija" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Nizozemski Antili" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktika" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "AmeriÄka Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austrija" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australija" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbajdžan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "BangladeÅ¡" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgija" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Datum i vrijeme" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Dodaj 1 sideriÄki dan" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Dodaj 1 sideriÄki mjesec" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Dodaj 1 solarni dan" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Dodaj 1 solarni sat" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Dodaj 1 solarni tjedan" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Smanji brzinu izvoÄ‘enja skripte" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Smanji brzinu vremena" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Uspori protok vremena (malo)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Povećaj brzinu izvoÄ‘enja skripte" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Povećaj brzinu vremena" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Ubrzaj protok vremena (malo)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Postavi vrijeme na trenutno" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Postavi normalnu brzinu izvoÄ‘enja skripte" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Postavi normalni protok vremena" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Postavi protok vremena na nula" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Oduzmi 1 sideriÄki dan" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Oduzmi 1 sideriÄki tjedan" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Oduzmi 1 solarni dan" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Oduzmi 1 solarni sat" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Oduzmi 1 solarni tjedan" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Mogućnosti prikaza" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Zrcali oko vertikalne osi" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Prikaz na punom zaslonu" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimutalna mreža" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Strane svijeta" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Prikazi zviježđa" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Granice zviježđa" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Nazivi zviježđa" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Linije zviježđa" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Pozadinske slike maglica" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekvatorijalna linija" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatorijalna mreža" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatorijalna mreža J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Magla" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "GalaktiÄka mreža" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Tlo" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "EkliptiÄki meridijan" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Maglice" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Noćni mod" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Orbite planeta" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Staze Planeta" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Zvijezde" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Zrcali oko horizontalne osi" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Razno" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Automatski sakrij horizontalnu traku sa gumbima" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Automatski sakrij vertikalnu traku sa gumbima" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "IzaÄ‘i" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Spremi sliku" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Preklopi izmeÄ‘u ekvatorijalne i azimutalne glave" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Preklopi vidljivost grafiÄkog suÄelja" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Micanje i odabir" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centriraj odabrani objekt" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Postavi matiÄni planet na odabrani planet" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Prati objekt" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Uvećaj prema odabranom objektu" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Umanji" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Kutna mjera" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Oznake kompasa" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okularni pogled" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Prozor postavki satelita" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Oznake satelita" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Pomakni teleskop na dane koordinate" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skripte" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "PodeÅ¡avanje" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Datum i vrijeme" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Pomoć" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Položaj" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Pretraga" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Nebo i pogled" @@ -3415,7 +3591,7 @@ msgstr "Osvježi" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Položaj" @@ -3431,10 +3607,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "IzbriÅ¡i" @@ -3443,7 +3619,7 @@ msgstr "Dodaj na listu" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Zemljopisna Å¡irina:" @@ -3456,12 +3632,12 @@ "na primjer: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Zemljopisna duljina:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Visina:" @@ -3485,363 +3661,407 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "PronaÄ‘i objekt" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "jota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gama" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kapa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mi" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ni" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ipsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "hi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekt" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dek (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Postavke" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Postavke" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Pogled" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Nebo" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Oznake" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Krajolik" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Zvjezdoznanstvo" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Nazivi i oznake" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planeti" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planeti i sateliti" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Pokaži planete" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Pokaži oznake planeta" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Pokaži orbite planeta" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simuliraj brzinu svjetlosti" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Skaliraj Mjesec" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Pokaži atmosferu" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Apsolutna skala:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relativna skala:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Treperenje:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Zatamni slabo vidljive zvijezde kada je vidljiv jako svijetao objekt" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "DinamiÄko privikavanje oka" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Meteori" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Zviježđa" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Pokaži linije" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Pokaži nazive" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Pokaži granice" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Pokaži prikaze" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Nebeska sfera" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projekcija" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Dodaj/ukloni krajolike..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Pokaži zemlju" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Pokaži maglu" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Koristi pridruženi planet i položaj" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Koristi ovaj krajolik kao pretpostavljen" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Koristi ovu kulturu zviježđa kao pretpostavljenu" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Vidljivo" @@ -3896,7 +4116,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Smjer prema kojem gledate pri pokretanju Stellariuma" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informacije o odabranom objektu" @@ -3912,11 +4132,8 @@ msgid "Display no information" msgstr "Ne prikazuj podatke" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "NiÅ¡ta" @@ -4058,7 +4275,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "PoÄetni datum i vrijeme" @@ -4071,19 +4288,23 @@ msgid "Other:" msgstr "Drugo:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "koristi trenutno" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Pokreni Stellarium sa sistemskim datumom i vremenom" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Sistemski datum i vrijeme" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4091,23 +4312,23 @@ "Postavlja simulirano vrijeme na sljedeću pojavu tog vremena kada se " "Stellarium pokrene" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Sistemski datum u:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Postavke planetarija" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4115,51 +4336,51 @@ "IzobliÄenje sferiÄnog zrcala koristi se pri projekciji Stellariuma na " "sferiÄno zrcalo kod jeftinih planetarijskih sustava." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "IzobliÄenje sferiÄnog zrcala" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Prekriva sve izvan srediÅ¡njeg kruga glavnog prikaza" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Kružni pogled" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Sakrij druga zviježđa kada kliknem na jedno" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Odaberi pojedinaÄno zviježđe" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Poravnaj nazive s obzorom" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Oznake gravitacije" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Preklopi gumbe za vertikalno i horizontalno zrcaljenje." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Pokaži gumbe za zrcaljenje" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4167,92 +4388,98 @@ "Kada je omogućeno, \"Automatsko umanjivanje\" će postaviti i poÄetni smjer " "pogleda" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatsko umanjivanje vraća na poÄetni smjer pogleda" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Snimke zaslona" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Mapa za snimke zaslona" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Izokreni boje" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Ažuriranja zvjezdanih kataloga" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Kliknite ovdje za poÄetak preuzimanja" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Preuzmite ovu datoteku kako biste vidjeli joÅ¡ viÅ¡e zvijezda" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Ponovo pokreni preuzimanje" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Ponovi" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Zaustavi preuzimanje. Kasnije ga možete ponovo pokrenuti" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "PoniÅ¡ti" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Zatvori prozor pri pokretanju skripte" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Pokreni odabranu skriptu" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Zaustavi skriptu u izvoÄ‘enju" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "UÄitaj pri pokretanju" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "podesi" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Glavni" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "informacije" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigacija" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Alati" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Dodaci" @@ -4422,176 +4649,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okulari" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4663,64 +4890,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4728,7 +4960,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4739,14 +4971,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4755,191 +4987,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Sateliti" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4947,117 +5188,177 @@ "PredviÄ‘anje položaja umjetnih satelita u Zemljinoj orbiti temeljeno na NORAD " "TLE podacima" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Stara satellites.json datoteka viÅ¡e nije kompatibilna - koristim " "pretpostavljenu datoteku" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5065,25 +5366,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5091,17 +5392,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5109,41 +5410,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5151,338 +5454,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5518,22 +5864,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Upravljanje teleskopom" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Pomakni teleskop #%1 na odabrani objekt" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Pomakni teleskop #%1 na toÄku u srediÅ¡tu trenutnog zaslona" @@ -5916,62 +6262,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6125,7 +6471,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6143,7 +6489,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6159,11 +6505,11 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Tekstualno korisniÄko suÄelje" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6171,144 +6517,144 @@ "Implementacija tekstualnog korisniÄkog suÄelja (TUI) serije 0.9.x koriÅ¡tenog " "u planetarijskim sustavima, u obliku dodatka." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Jezik" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6344,22 +6690,22 @@ "pretraga u njenoj bazi podataka. JoÅ¡ uvijek u izradi." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6528,36 +6874,43 @@ msgid "Solar System" msgstr "SunÄev sustav" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6575,7 +6928,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6589,14 +6942,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6604,8 +6957,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6623,29 +6977,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6661,51 +7092,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6825,11 +7266,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6837,137 +7278,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AJ" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6975,49 +7420,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7033,185 +7567,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7568,6 +8096,9 @@ #~ msgid "Zoom Duration: " #~ msgstr "Trajanje uvećavanja: " +#~ msgid "Nebulas background images" +#~ msgstr "Pozadinske slike maglica" + #~ msgid "Planets labels" #~ msgstr "Nazivi planeta" @@ -7634,6 +8165,9 @@ #~ msgid "Light Pollution Luminance: " #~ msgstr "Jakost svjetlosnog zagaÄ‘enja: " +#~ msgid "Nebulas" +#~ msgstr "Maglice" + #~ msgid "Startup direction of view: xxxx" #~ msgstr "PoÄetni smjer pogleda: xxxx" diff -Nru stellarium-0.12.1/po/stellarium/hrx.po stellarium-0.12.4/po/stellarium/hrx.po --- stellarium-0.12.1/po/stellarium/hrx.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/hrx.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-02-02 11:56+0000\n" "Last-Translator: Adriano Steffler \n" "Language-Team: Hunsrik \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "HellÉ™ft-liņņë" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Sunnë-pÃ¥n" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Middë-eatt-liņņë" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "KallÉ™ksë-plÃ¥n" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "ÇtÌ€aÊ‹Ê‹ÇŽ: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "PÇ’finnuÅ‹Å‹: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "RunndÉ™l: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Sott: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Krest: %1 (gëleʃʃt fÇŽ: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Krest: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Krest: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "KallÉ™ks" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Uffnë ʃtÉ›nnë-krupp" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kuxliģģë ʃtÉ›nnë-krupp" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "NevvluÅ‹Å‹" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "RunntliÄ·Ä· nevvluÅ‹Å‹" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Æ©tÉ›nnë-krupp mytt nevvliÄ·Ä·kÌ€et" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Unn-pÇ’kÌ€annt" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Unn-pǒʃrippnë sott" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Vajt %1 Ã…E (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Vajt: %1 AE" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Aws-sinliÄ·Ä· tikkhet: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "PÇ’liÄ·Ä·t: %1%" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "ʃtÉ›nn" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Aws-sinliÄ·Ä· krest: %1 (tørriÄ·Ä· lɛʒʒuÅ‹Å‹)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "tobbelt-ʃtÉ›nn" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Krest: %1 (gëleʃʃt fÇŽ: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Krest: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Vajt: %1 LiÄ·Ä·t-joÅ™" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ParrÇŽlakks: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "FelÇŽ" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,67 +727,68 @@ msgid "Found" msgstr "Gëfunn" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -704,7 +797,7 @@ "%1 iss rannÇŽ-gëlÃ¥d’ən-kevvë...\n" "(TÇ” kÌ€annst’dëto lÃ¥dÅ™ tsu-maɠɠë.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -715,7 +808,7 @@ "Æ©tÉ›nnë-fil: %2 mÇļon\n" "Aws-vajduÅ‹Å‹ fønn’ë krest: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -724,11 +817,11 @@ "To izz’ən felÇŽ pÇŽsiÅ™t ivvǎ’m rannÇŽ-lÃ¥dë fønn %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -738,115 +831,123 @@ "Dë fajl iss kÇŽputt." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1005,49 +1106,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "LÃ¥trë" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Platts" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1 m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ƙen pǒʃrajvuÅ‹Å‹" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Ƙen ʃtÉ›nn-ʃubbë" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1150,19 +1255,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1178,30 +1283,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sunn" @@ -1218,12 +1329,12 @@ msgstr "Eatt" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Mont" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1321,7 +1432,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1619,239 +1730,268 @@ msgstr "EsskimmÇ’" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korrěåniʃʃ" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "LÇŽkødiʃʃ" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "MawrÇ" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "NÇŽvåʃ" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Nøddiʃʃ" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "PollÇneziʃʃ" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "LÇŽponiʃʃ" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "TÇ”pi-kwarrÇŽni" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "VesstliÄ·Ä·" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guéreins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Pem" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane Ridge" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "MeÅ™" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching bei München" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1861,1502 +2001,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "PrÇŽsiļļë" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "TÃ¥x unn uÅ™-tsajt" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Enë sunnë-tÃ¥x dëpaaj-tun" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "En sunnë-ʃtunn dëpaaj-tun" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "En sunnë-vuxx dëpaaj-tun" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "DÇ tsajt lammzammÅ™ rømm-ken maɠɠë" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "DÇ tsajt lammzammÅ™ rømm-ken maɠɠë (norë n-pisssjÄ›)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "DÇ tsajt ʃnellÅ™ rømm-ken maɠɠë" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "DÇ tsajt ʃnellÅ™ rømm-ken maɠɠë (norë n-pisssjÄ›)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "DÇ tsajt fÇŽ jetts ʃtellë" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Fǎ’dÇ norrmall tsajt-taʒʒë hinn-ʃtellë" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "DÇ tsajt-taʒʒë fÇŽ null ʃtellë" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Enë sunnë-tÃ¥x app-tsijë" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "En sunnë-ʃtunn app-tsijë" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "En sunnë-vuxx app-tsijë" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "S pillt vowë-reÄ·Ä·t rømm-trejë" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Follë-pillt-modë" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Lufft" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "GëʃtÉ›nnë-pilldÇŽ" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "GëʃtÉ›nnë-krÉ›nnzë" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "GëʃtÉ›nnë-nÃ¥më" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "GëʃtÉ›nnë-liņņë" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "TusstÅ™" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "PoddÉ™m" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nevvluŋŋë" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Naxxts-modë" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "NÃ¥më fønn’ë runntlë" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "PÃ¥në fønn’ë runntlë" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Æ©triʋë fønn’ë runntlë" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Æ©tÉ›nnë" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "S pillt sɛŋŋgÉ™l-reÄ·Ä·t rømm-trejë" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Raws-ken" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "PÇ’vejuÅ‹Å‹ unn aws-suÉ É uÅ‹Å‹" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Dë keģë-ʃtannt no-ken" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Dë aws-gësuxxtnë keģë-ʃtannt Ã¥n-tsijë" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Aws-tsijë" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "ViÅ‹Å‹gÇl-mÉ›zzuÅ‹Å‹" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Ƙummbass-marrgë" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Æ©rifftë" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "LÃ¥dÅ™ fønn ʃtelluÅ‹Å‹" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "LÃ¥dÅ™ fønn tÃ¥x unn uÅ™-tsajt" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "LÃ¥dÅ™ fønn hillÉ™f" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "LÃ¥dÅ™ fønn’n pÇ’finnuÅ‹Å‹" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "LÃ¥dÅ™ fønn suÉ É uÅ‹Å‹" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3382,7 +3558,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "PÇ’finnuÅ‹Å‹" @@ -3398,10 +3574,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Aws-maɠɠë" @@ -3410,7 +3586,7 @@ msgstr "Ã…nn’ë lisst dëpaaj-tun" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3421,12 +3597,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "HeÄ·t:" @@ -3450,363 +3626,407 @@ msgid "Planet:" msgstr "RunndÉ™l:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "N keģë-ʃtannt finnë:" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "N keģë-ʃtannt orrǎ’n platts-pÇ’finnuÅ‹Å‹ finnë" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Keģë-ʃtannt" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RiÄ·Ä·t uff-hevuÅ‹Å‹/Aws-ʃiÊ‹uÅ‹Å‹ (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Platts-pÇ’finnuÅ‹Å‹" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Inn’ë lisst suɠɠë…" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Lisstë" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Aws-vÃ¥lë" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Inn’ë lisst suɠɠë…" +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Lisstë" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Aws-vÃ¥lë" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Sin" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "HimmÉ™l" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Marrgë" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Lannt-ʃafft" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Æ©tÉ›nnë-loÅ™" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "NÃ¥më unn marrgÇŽ" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Runntlë" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Runntlë unn mondë" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "DÇ runntlë tsajģë" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Dë mont fÇŽkresrë" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "DÇ lufft tsajģë" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "HelliÄ·Ä·Æ™et fømm’m MilliÄ·Ä·-veÄ·:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "FlimmruÅ‹Å‹:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Æ©tÉ›nn-ʃubbë" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "GëʃtÉ›nnë" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "DÇ liņņë tsajģë" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "DÇ nÃ¥më tsajģë" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "DÇ krÉ›nnzë tsajģë" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "DÇ pilldÇŽ tsajģë" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "HelliÄ·Ä·kÌ€et fønn’ë pilldÇŽ:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "HimmÇl-Æ™uÉ el" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Aws-ʃajnuÅ‹Å‹" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Lannt-ʃafftë dëpaaj-tun/aws-maɠɠë..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Dë krunnt tsajģë" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Dë tusstÅ™ tsajģë" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "SinliÄ·Ä·" @@ -3856,7 +4076,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3872,11 +4092,8 @@ msgid "Display no information" msgstr "Ƙen aws-Æ™unnÇft tsajģë" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ƙen aws-Æ™unnÇft" @@ -4018,7 +4235,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4030,182 +4247,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "App-ʃmajzë" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "DÄ› lÃ¥dÅ™ tsu-maɠɠë vÉ›nn’Çn ʃrifft tørriÄ·Ä·-gëlÃ¥f kippt" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "DÄ› aws-gësuxxtnë ʃrifft tørriÄ·Ä·-låʋë lozzë" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "N ʃrifft vÇ” tørriģģ’-Çn-låʋën iss ʃtill-hallë" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Ã…mm’m Ã¥n-faÅ‹Å‹k lÃ¥dë" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "Æ©tellë" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Hawpst" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Aws-Æ™unnÇft" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "LottsuÅ‹Å‹" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "FerrÇŽmÉ›nndë" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Inn-sokklë" @@ -4373,176 +4600,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4614,64 +4841,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4679,7 +4911,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4690,14 +4922,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4706,305 +4938,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5012,25 +5313,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5038,17 +5339,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5056,41 +5357,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5098,338 +5401,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5465,22 +5811,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5863,62 +6209,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "JanwÇŽ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "FebrwÇŽ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "MÉ›tts" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Çprill" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Mååj" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "JunÇ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "JulÇ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Çkusst" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "SÄ›tÉ›mmbÅ™" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "OkktovÅ™" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "No-fÉ›mmbÅ™" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Te-tsÉ›mmbÅ™" @@ -6072,7 +6418,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6090,7 +6436,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6106,154 +6452,154 @@ msgid "mm-dd-yyyy" msgstr "mm-tt-jjjj" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmttjjjj" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ttmmjjjj" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "jjjjmmtt" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12 ʃtunn" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24 ʃtunn" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Æ©prox" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "DÇ ÊƒtÉ›nnë tsajģë" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Farrvë" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "NÃ¥më fønn’ë nevvluŋŋë" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "KallÉ™ksë-plÃ¥n-liņņë" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6286,22 +6632,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6470,36 +6816,43 @@ msgid "Solar System" msgstr "Sunnë-iss-ʃtannt" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "GëʃiÄ·Ä·tliģģë ivvÇŽnajë" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "ivvÇŽnaj" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "IvvÇŽnaj-sott: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6517,7 +6870,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6531,14 +6884,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6546,8 +6899,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6565,29 +6919,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6603,51 +7034,61 @@ msgid "Z (redshift): %1" msgstr "z (app-vajÄ£uÅ‹Å‹ fǎ’dÇ rot farrÉ™p): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6767,11 +7208,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6779,137 +7220,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Aws-runntlë" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Mazzë" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Aws-runndÇl" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "tåɠë" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Æ©reÄ£uÅ‹Å‹" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "ViÅ‹Å‹gÇl-vajt" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Raws-finnuÅ‹Å‹s-joÅ™" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Aws-runnddÇl-inn-soggÇl" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6917,49 +7362,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "PÇ’obaxxtuÅ‹Å‹s-unnÇŽsuÉ É uÅ‹Å‹" @@ -6975,185 +7509,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "jannwÇŽ" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "febrwÇŽ" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "mÉ›tts" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "ÇŽprill" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "mååj" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "junÇ" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "julÇ" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "ÇŽkusst" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "sÄ›tÉ›mmbÅ™" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "okktovÅ™" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "no-fÉ›mmbÅ™" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "te-tsÉ›mmbÅ™" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "ʃ" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Ked’Çm %1 unnÇŽ (inn %2 vajdÅ™)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Izz’Çm %1 uff-kaÅ‹Å‹ (%2 tsÇ”rikk)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Izz’Çm %1 unnÇŽ-kaÅ‹Å‹ (%2 tsÇ”rikk)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Ked’Çm %1 uff (inn %2 vajdÅ™)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Ƙenë uff-kaÅ‹Å‹k." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "HAJT:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "TASSTO JOŘ:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7358,6 +7886,9 @@ #~ msgid "Obliquity (of date): %1" #~ msgstr "Æ©ifhet (fømm’m tÃ¥x): %1" +#~ msgid "Nebulas" +#~ msgstr "Nevvluŋŋë" + #~ msgid ":" #~ msgstr ":" diff -Nru stellarium-0.12.1/po/stellarium/ht.po stellarium-0.12.4/po/stellarium/ht.po --- stellarium-0.12.1/po/stellarium/ht.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ht.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-09 17:12+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Haitian; Haitian Creole \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:49+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreyen" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/hu.po stellarium-0.12.4/po/stellarium/hu.po --- stellarium-0.12.1/po/stellarium/hu.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/hu.po 2013-09-23 06:20:13.000000000 +0000 @@ -8,30 +8,30 @@ msgstr "" "Project-Id-Version: Stellarium 0.10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-02-09 09:59+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-22 05:17+0000\n" "Last-Translator: misibacsi \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:14+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-23 05:14+0000\n" +"X-Generator: Launchpad (build 16771)\n" "X-Poedit-Language: Hungarian\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridián" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "EgyenlítÅ‘" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizont" @@ -39,46 +39,46 @@ msgid "Galactic Plane" msgstr "Galaktikus sík" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "SzerzÅ‘: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Hely: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Égi objektum: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Típus: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitúdó: %1 (ennyire elhalványulva: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Fényesség: %1" @@ -88,114 +88,114 @@ msgid "Size: %1" msgstr "Méret: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxis" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Nyílthalmaz" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Gömbhalmaz" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Csillagköd" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetáris köd" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "Sötét köd" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Köd csillaghalmazzal" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Ismeretlen" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Nem dokumentált típus" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Abszolút fényesség: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Topocentrikus ekliptika (aktuális): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Ferdeség (aktuális, Föld): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Távolság: %1 CSE (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Távolság: %1 CSE" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Látszó átmérÅ‘: %1, gyűrűkkel: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Látszó átmérÅ‘: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Sziderikus periódus: %1 nap (%2 év)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Sziderikus nap: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Középnap: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Fázisszög: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongáció: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fázis: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Megvilágítva: %1%" @@ -206,7 +206,7 @@ msgstr "Ãtmeneti jelölés: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "csillag" @@ -221,62 +221,142 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Látszó magnitúdó %1 (kioltással)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "eruptív változócsillag" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "pulzáló változócsillag" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "keringÅ‘ változócsillag" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "kataklizmikus változócsillag" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "fedési kettÅ‘scsillag" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "változócsillag" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "kettÅ‘s csillag" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Típus: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitúdó: %1 (kioltva: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitúdó: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Színképtípus: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Távolság: %1 fényév" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallaxis: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "A minimális fény epocha: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "A maximális fény epocha: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Periódus: %1 nap" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "KövetkezÅ‘ minimális fény: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "KövetkezÅ‘ maximális fény: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Fogyatkozás hossza: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Kelési idÅ‘: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Å°rhajó" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" -msgstr "" +msgstr "Korrekció kikapcsolva. Csak akkor alkalmazd, ha tudod mit csinálsz." -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " "Henriksson in his article Einstein's Theory of Relativity Confirmed by " "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" +"A képletet C. Schoch hozta létre 1931-ben, és G. Henriksson használta fel " +"az Einstein's Theory of Relativity Confirmed by Ancient Solar " +"Eclipses (%1) című cikkében. További információk %2itt%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" +"Ezt a gyakorlati képletet G. M. Clemence adta meg On the system of " +"astronomical constants című cikkében (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -284,38 +364,54 @@ "Astronomical Formulae for Calculators. It was also adopted in the " "PC program SunTracker Pro." msgstr "" +"Ez a képlet a Nap, a Hold és a bolygók 1650 utáni megfigyelésein alapszik. " +"Spencer Jones (%1) adta meg, és Jean Meeus felhasználta az Astronomical " +"Formulae for Calculators című munkájában. Az eljárást az PC-re írt " +"SunTracker Pro program is használja." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" +"Az IAU 1952-es képletének kissé módosított változata, amit Mucke & Meeus " +"az 1983 Astronomical Ephemeris és a Canon of Solar " +"Eclipses című munkáikban felhasználtak." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " "relation was also implicitly adopted in the syzygy tables of Goldstine " "(1973)." msgstr "" +"Tuckerman 1962-es és 1964-es táblázatai felsorolják a Nap, a Hold és a " +"bolygók pozícióit 5 és 10 napos intervallumokban i.e. 601-tÅ‘l i.sz. 1649-" +"ig. Ugyanezt az összefüggést alkalmazta Goldstine a szembeállásokat megadó " +"táblázatában (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " "article The accelerations of the earth and moon from early astronomical " "observations (%1)." msgstr "" +"Ezt a képletet P. M. Muller és F. R. Stephenson közölte a The " +"accelerations of the earth and moon from early astronomical " +"observations című cikkében (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" +"Ezt a képletet F. R. Stephenson publikálta a Pre-Telescopic " +"Astronomical Observations című cikkében (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -323,41 +419,57 @@ "Polynomial approximations for the correction delta T E.T.-U.T. in the " "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" +"Ezt a 12-fokú polinomot L. D. Schmadel és G. Zech adta meg a Polynomial " +"approximations for the correction delta T E.T.-U.T. in the period 1800-" +"1975 (%1) című cikkében. Korszerűbb és pontosabb változatát Schmadel " +"& Zech közölte 1988-ban." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" +"Ezt az algoritmust P. Bretagnon & L. Simon közölte a Planetary Programs " +"and Tables from -4000 to +2800 (1986) című cikkében és a RedShift nevű " +"PC-s planetáriumprogram is ezt használja." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " "article Long-term changes in the rotation of the earth - 700 B.C. to " "A.D. 1980 (%1)." msgstr "" +"Ezt a képletet F. R. Stephenson és L. V. Morrison publikálta a Long-term " +"changes in the rotation of the earth - 700 B.C. to A.D. 1980 (%1) című " +"cikkében." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" +"Ezt az algoritmust használja a Guide 7 nevű PC-s planetárium-program." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" +"Ezt az algoritmust F. Espenak adta meg a Fifty Year Canon of Solar " +"Eclipses: 1986-2035 (1987) című, és a Fifty Year Canon of Lunar " +"Eclipses: 1986-2035 (1989) című cikkében." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" +"Ezt a képletet K.M. Borkowski (%1) adta meg 31 napfogyatkozás adatainak " +"elemzése után (i.e. 2137 és i.e. 1715 között)." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -365,74 +477,105 @@ "Period 1800-1988 (%1) as data fit through values given by Stephenson & " "Morrison (1984)." msgstr "" +"Ezt a 12-fokú polinomot L. D. Schmadel és G. Zech közölte az Empirical " +"Transformations from U.T. to E.T. for the Period 1800-1988 (%1) című " +"cikkében, ezek az adatok illeszkedtek legjobban a Stephenson és Morrison " +"(1984) által megadott értékekhez." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" +"Ezt a képletet M. Chapront-Touze és J. Chapront módosította az ELP 2000-85 " +"rövidített változata alapján. Cikkük Lunar Tables and Programs from 4000 " +"B.C. to A.D. 8000 (1991) címmel jelent meg." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " "article Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD " "1990 (%1)." msgstr "" +"Ezt a képletet F. R. Stephenson és L. V. Morrison a Long-Term " +"Fluctuations in the Earth's Rotation: 700 BC to AD 1990 (%1) című " +"cikkben közölték." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" +"F. R. Stephenson publikálta ezt a képletet a Historical Eclipses and " +"Earth's Rotation (%1) című könyvében." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" +"J. Meeus: Astronomical Algorithms (2nd ed., 1998), és máshol " +"alkalmazott képlet. A táblázat 1620..2000 közötti idÅ‘szakra vonatkozik, " +"Chapront, Chapront-Touze és Francou (1997) kiegészítésével az ezen kívüli " +"idÅ‘szakokra." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" +"A JPL Solar System Dynamics Group (NASA), és a Jet Propulsion Laboratory " +"használja ezt a képletet interaktív weboldalukon: %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" +"Ezt a polinomot J. Meeus és L. Simons közli a Polynomial approximations " +"to Delta T, 1620-2000 AD (%1) című cikkében." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" +"O. Montenbruck és T. Pfleger's Astronomy on the Personal Computer " +"(2000) című könyvének negyedik kiadásában adja meg. Egy egyszerűsített, 3-" +"fokú képletet is megadnak, ami jól illeszkedik a legutóbbi idÅ‘szak " +"adataihoz." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " "Calendrical Tabulations (2002). It is based on Jean Meeus' " "Astronomical Algorithms (1991)." msgstr "" +"E. M. Reingold és N. Dershowitz közli ezt a polinomot a Calendrical " +"Calculations (3rd ed. 2007), és a Calendrical Tabulations " +"(2002) című könyvükben. A képlet Jean Meeus Astronomical Algorithms " +"(1991) című munkáján alapszik." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " "in article Historical values of the Earth's clock error %1T and the " "calculation of eclipses (%2) with addendum in (%3)." msgstr "" +"Ez a fontos megoldás L. V. Morrison és F. R. Stephenson Historical " +"values of the Earth's clock error %1T and the calculation of eclipses " +"(%2) című cikkében jelent meg. Kiegészítés: (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -441,7 +584,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -451,48 +594,65 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." +msgstr "Alapértelmezés." + +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Hiba" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." -msgstr "" +msgstr "Érvényességi idÅ‘szak: %1 és %2 év között" #: src/core/StelProjector.cpp:123 msgid "Maximum FOV: " @@ -613,7 +773,7 @@ #: src/core/StelObject.cpp:111 #, qt-format msgid "Galactic longitude/latitude: %1/%2" -msgstr "" +msgstr "Galaktikus hosszúság/szélesség : %1/%2" #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:124 #: src/core/StelObject.cpp:127 @@ -655,52 +815,53 @@ msgid "Found" msgstr "ElérhetÅ‘" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Válaszd ki a rögzített képek mappáját" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Kezdeti látószög: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Kezdeti látóirány Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "SzerzÅ‘k" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kapcsolat" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "SzerzÅ‘" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licensz" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Futó szkript: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Futó szkript [nincs]:" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -708,23 +869,23 @@ "Csillag katalógusok letöltve!\n" "Indítsa újra a Stellariumot, hogy láthatóvá váljanak!" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Az összes elérhetÅ‘ csillagkatalógus sikeresen telepítve." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "A(z) %1 katalógus beszerzése %2 -ból" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "Letöltés %1..." -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -735,7 +896,7 @@ "Csillagszámláló: %2 Millió\n" "Fényintenzitási skála: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -744,11 +905,11 @@ "Hiba a letöltésben %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Az állomány épségének ellenÅ‘rzése" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -758,118 +919,126 @@ "Sérült állomány" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" -msgstr "" +msgstr "Korrekció nélkül" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" -msgstr "" +msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" -msgstr "" +msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" -msgstr "" +msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" -msgstr "" +msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" -msgstr "" +msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" -msgstr "" +msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" -msgstr "" +msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" -msgstr "" +msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" -msgstr "" +msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" -msgstr "" +msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" -msgstr "" +msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" -msgstr "" +msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" -msgstr "" +msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" -msgstr "" +msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" -msgstr "" +msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" -msgstr "" +msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" -msgstr "" +msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -msgstr "" +msgstr "Meeus (1998) (továbbá Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" -msgstr "" +msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" -msgstr "" +msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" -msgstr "" +msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" -msgstr "" +msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" -msgstr "" +msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" -msgstr "" +msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" -msgstr "" +msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" -msgstr "" +msgstr "%1T egyéni kiszámítása" #: src/gui/HelpDialog.cpp:147 msgid "Stellarium Help" @@ -1007,7 +1176,7 @@ #: src/gui/HelpDialog.cpp:315 #, qt-format msgid "Continuous Integration: %1" -msgstr "" +msgstr "Folyamatos integrálás: %1" #: src/gui/HelpDialog.cpp:316 src/gui/HelpDialog.cpp:317 #, qt-format @@ -1035,49 +1204,53 @@ msgid "OSX Developer: %1" msgstr "OSX-es fejlesztÅ‘: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Szkript konzol ablak" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Ablakok" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Szóköz" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1 m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Nincs leírás" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Nincsenek hullócsillagok" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normál gyakoriság" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Szokásos Perzeida-gyakoriság" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Meteorzáporok gyakorisága" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Rendkívüli Leonida-gyakoriság" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Az eddigi csúcs (1966-os Leonidák)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Új helyszín" @@ -1182,19 +1355,19 @@ msgid "starchart" msgstr "csillagtérkép" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad keresési hiba" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad keresés" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Strasbourgi Egyetem (Franciaország)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard University (USA)" @@ -1210,30 +1383,38 @@ msgid "Alternative shortcut" msgstr "Másodlagos gyorsbillentyű" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" -msgstr "" +msgstr "%1T egyéni kiszámítása" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" -msgstr "" +msgstr "%1T tipikus kiszámítása így néz ki:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" -msgstr "" +msgstr "ahol" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" -msgstr "" +msgstr "év" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Ez a rendszer nem támogatja az OpenGL-t." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Az ön hardvere nem támogatja a minimálisan szükséges OpenGL 1.2-t. A " +"grafikus kártya meghajtójának frissítése szükséges." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Nap" @@ -1250,12 +1431,12 @@ msgstr "Föld" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Hold" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1353,7 +1534,7 @@ msgstr "Métisz" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Szaturnusz" @@ -1651,206 +1832,235 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Indiai védikus" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreai" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" -msgstr "Navajo" +msgstr "Navahó" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norvég" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinéziai" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" -msgstr "Sami" +msgstr "Számi" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" -msgstr "" +msgstr "Tongai" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Nyugati" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Fák" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane Ridge" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Óceán" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Tájkép túra" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Részleges holdfogyatkozás" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Teljes holdfogyatkozás" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "KépernyÅ‘kímélÅ‘" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "2009-es napfogyatkozás" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Induló szkript" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiákus" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "A Merkúr háromszoros napfelkeltéje és naplementéje" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "KettÅ‘s fogyatkozás a Deimosról 2017-ben" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "KettÅ‘s fogyatkozás a Deimosról 2031-ben" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Fogyatkozás az Olympus Monsról nézve 2068. január 10-én" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "A Föld és a Jupiter együttállása 2048-ban" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" "A Deimoszról látható 2027-es háromszori áthaladás és kétszeri fogyatkozás" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Naprendszer képernyÅ‘kímélÅ‘" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Csillagkép túra" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "A Nap különbözÅ‘ bolygókról nézve" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "A Föld legjobb nézetei más objektumokról" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Vénuszátvonulás" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" -msgstr "" +msgstr "Égi kultúrák túrája" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Földi események a Merkúrról nézve" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Földi események a Vénuszról nézve" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Földi események a Marsról nézve" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "A Föld legnagyobb kitérése és fényessége a Marsról nézve" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "A Föld és a Mars legnagyobb elongációja a JupitertÅ‘l" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Mindegyik felrakott tájkép megtekintése" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." -msgstr "" +msgstr "A rendelkezésre álló égi kultúrák bemutatása." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Részleges holdfogyatkozás bemutatása" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Teljes holdfogyatkozás bemutatása" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" "Az égbolt lassú, vég nélküli bejárása, véletlenszerűen választott " "objektumokkal" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "Teljes napfogyatkozás bemutatása (2009, Rangpur, Banglades)" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Induláskor automatikusan lefutó szkript" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1859,7 +2069,7 @@ "Ez a szkript az Ãllatövi csillagképeket mutatja be, ahogy a Nap áthalad " "rajtuk az év során." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1867,7 +2077,7 @@ "A Merkúr sajátos pályája és forgása miatt a Nap bizonyos helyeken napi " "háromszor látszik felkelni és lenyugodni." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1875,7 +2085,7 @@ "Épp mielÅ‘tt a Mars eltakarná a Napot, a Phobosz elÅ‘kerül. 2017. április 26-" "án, a Skorpió és a Nyilas között." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1883,11 +2093,11 @@ "Épp mielÅ‘tt a Mars eltakarná a Napot, a Phobosz elÅ‘kerül. 2031. július 23-" "án, a Bika és az Ikrek között." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "A Phobos a Nap elÅ‘tt az Olympus Monsról nézve 2068. január 10-én." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1897,7 +2107,7 @@ "mindkettÅ‘vel egyszerre ritkán. Egy ilyen esemény 2048. január 23-án lesz. " "Tényleges sebességgel mutatva." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1912,37 +2122,35 @@ "sötétségben halad a Mars és a Deimos között. Amikor a Phobos elÅ‘tűnik a Mars " "mögül, fogyatkozásban látszik a Mars árnyéka miatt." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"KépernyÅ‘kímélÅ‘ a Naprendszer eseményeinek ábrázolásával (összesen 171 " -"esemény!)" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Nyugati csillagképek meglátogatása" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "A Nap a nagyobb bolygókról és a Plutóról nézve." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "A Föld legjobb látványa a Naprendszer égitestjeirÅ‘l a 21. században." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "Vénuszátvonulás, Sydney, Ausztrália, 2012. június 6." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "Az analemma bemutatása - a Nap útja az égbolton az év során." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -1950,1468 +2158,1505 @@ "A Tycho Brahe által megfigyelt szupernóva fellobbanása 1572-ben. (a " "\"szupernóva\" bÅ‘vítményt be kell tölteni hozzá)" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" +"A Föld legnagyobb kitérése és fényessége a Marsról nézve 2000-3000 között" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "A Föld legnagyobb kitérése a JupiterrÅ‘l nézve 2000-3000 között" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Egyesült Arab Emírségek" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganisztán" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua és Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albánia" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Örményország" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Holland Antillák" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktisz" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentína" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikai Szamoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Ausztria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Ausztrália" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbajdzsán" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosznia és Hercegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Banglades" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgium" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgária" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrein" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda-szigetek" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Szultanátus" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolívia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazília" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahama-szigetek" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhután" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvet-sziget" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Fehéroroszország" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kókusz-szigetek" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Kongói Demokratikus Köztársaság" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Közép-afrikai Köztársaság" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Kongói Köztársaság" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Svájc" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Elefántcsontpart" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cook-szigetek" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Kína" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolumbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Szerbia és Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Zöld-foki Köztársaság" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Karácsony-sziget" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Ciprus" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Cseh Köztársaság" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Németország" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Dzsibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Dánia" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominika" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominikai Köztársaság" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algéria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Észtország" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egyiptom" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Nyugat-Szahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spanyolország" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiópia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finnország" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fidzsi-szigetek" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falkland-szigetek" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronézia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Feröer-szigetek" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Franciaország" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Egyesült Királyság" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Grúzia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Francia Guyana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghána" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltár" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grönland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "EgyenlítÅ‘i-Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Görögország" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Dél-Georgia és a Dél-Sandwich-szigetek" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Bissau-Guinea" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hongkong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard-sziget és McDonald-szigetek" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Horvátország" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Magyarország" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonézia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ãrország" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Izrael" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Brit Indiai-óceáni terület" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Irán" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Izland" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Olaszország" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaika" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordánia" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japán" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgizisztán" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodzsa" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comore-szigetek" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts és Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Észak-Korea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Dél-Korea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kajmán-szigetek" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazahsztán" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Srí Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Libéria" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litvánia" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Lettország" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Líbia" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marokkó" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaszkár" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshall-szigetek" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedónia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Mianmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongólia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Makaó" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Északi Mariana-szigetek" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritánia" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Málta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldív-szigetek" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexikó" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malajzia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namíbia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Új-Kaledónia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk-sziget" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigéria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Hollandia" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norvégia" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepál" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Új-Zéland" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Omán" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Francia Polinézia" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Pápua Új-Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Fülöp-szigetek" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakisztán" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Lengyelország" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre és Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn-szigetek" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palesztin Területek" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugália" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Katar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Románia" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Szerbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Orosz Föderáció" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Szaúd-Arábia" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Salamon-szigetek" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles-szigetek" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Szudán" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Svédország" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Szingapúr" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Szent-Heléna" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Szlovénia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Spitzbergák és Jan Mayen-sziget" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Szlovákia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Szenegál" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Szomália" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "São Tomé és Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Szíriai Arab Köztársaság" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Szváziföld" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks és Caicos-szigetek" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Csád" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Francia déli és antarktiszi területek" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togó" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thaiföld" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadzsikisztán" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau-szigetek" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Kelet-Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Türkmenisztán" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunézia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Törökország" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad és Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Tajvan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzánia" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukrajna" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Az Amerikai Egyesült Ãllamok külbirtokai" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Amerikai Egyesült Ãllamok" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Ãœzbegisztán" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikán Ãllam" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent és a Grenadine-szigetek" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Brit Virgin-szigetek" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Egyesült Ãllamok Virgin-szigetek" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis és Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Szamoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoszlávia (volt)" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Dél-afrikai Köztársaság" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Dátum és idÅ‘" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "1 csillagnappal elÅ‘re" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "+1 sziderikus hónap" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "7 csillagnappal elÅ‘re" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "+1 sziderikus év" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "+1 sziderikus évszázad" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "1 szoláris nappal elÅ‘re" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "1 szoláris órával elÅ‘re" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "7 szoláris nappal elÅ‘re" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "+1 szinodikus hónap" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "+1 drakonikus hónap" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "+1 anomális hónap" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "+1 tropikus hónap" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "+1 drakonikus év" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "+1 átlagos tropikus év" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "+1 tropikus évszázad" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Lassítsa le a szkript végrehajtási sebességét" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "IdÅ‘ lassítása" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Csökkentse az idÅ‘ sebességét (egy kicsit)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Gyorsítsa fel a szkript végrehajtási sebességét" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "IdÅ‘ gyorsítása" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Növelje az idÅ‘ sebességét (egy kicsit)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Szkript végrehajtásának felfüggesztése" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Szkript végrehajtásának folytatása" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Vissza a jelenbe" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "A szkript normál végrehajtási sebességen" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Valós sebesség visszaállítása" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Az idÅ‘ráta nullára állítása" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Szkript végrehajtásának megállítása" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "1 csillagnappal vissza" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "-1 sziderikus hónap" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "7 csillagnappal vissza" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "-1 sziderikus év" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "-1 sziderikus évszázad" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "1 szoláris nappal vissza" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "1 szoláris órával vissza" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "7 szoláris nappal vissza" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "-1 szinodikus hónap" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "-1 drakonikus hónap" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "-1 anomális hónap" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "-1 tropikus hónap" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "-1 drakonikus év" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "-1 átlagos tropikus év" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "-1 tropikus évszázad" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Megjelenítés beállításai" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Kép tükrözése vízszintesen" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Teljes képernyÅ‘s mód" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Légkör" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimut háló" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Égtájak" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Csillagképek ábrái" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Csillagképek határai" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Csillagképek nevei" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Csillagképek vonalai" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Csillagködök háttérképei" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Mélyég-objektumok háttérképei" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptikus rács J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika vonala" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "EgyenlítÅ‘ vonala" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "EgyenlítÅ‘i rács" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "EgyenlítÅ‘i rács (J2000)" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Köd" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktikus hálózat" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galaktikus sík" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Felszín" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horizontvonal" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridiánvonal" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Csillagködök" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Mélyég-objektumok" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Éjszakai mód" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Bolygók neve" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Bolygópályák" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Bolygók pályája" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Csillagok" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Csillagok neve" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Kép tükrözése függÅ‘legesen" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Egyebek" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Vízszintes gombsáv automatikus elrejtése" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "FüggÅ‘leges gombsáv automatikus elrejtése" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Vissza haza" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Kilépés" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Az objektum információinak másolása vágólapra" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "KépernyÅ‘ mentése" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Váltás egyenlítÅ‘i és horizontális koordináta-rendszer közt" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "A grafikus kezelÅ‘felület láthatóságának kapcsolója" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Mozgás és kijelölés" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "A kijelölt égitest középre igazítása" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Váltás a kijelölt bolygóra" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Égitest követése" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "A kijelölt égitest nagyítása" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Kicsinyítés" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "szögmérés" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "iránytű jelzések" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Exobolygók mutatása" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Exobolygó beállító ablak" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "MegfigyelhetÅ‘ség" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "MegfigyelhetÅ‘ség beállító ablak" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Okulár bÅ‘vítmény beállításai" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "okulárnézet" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "célkereszt mutatása" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "okulár menü" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "KépérzékelÅ‘" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad nézet" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "KövetkezÅ‘ távcsÅ‘" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "ElÅ‘zÅ‘ távcsÅ‘" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Pulzárok mutatása" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Pulzár beállító ablak" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Kvazárok mutatása" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Kvazár beállító ablak" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Műhold beállító ablak" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Műhold tippek" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Műhold feliratok" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Történelmi szupernovák beállító ablaka" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "a távcsÅ‘ mozgatása koordinátára" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Szkript" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "A tájképek szkriptjének indítása" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Hold mutatása, zoom" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Beállítások ablak" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Dátum és idÅ‘ ablak" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Súgóablak" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Megfigyelési hely" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "KeresÅ‘ablak" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Rövidítések ablaka" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Az ég és a megjelenítés beállításai" @@ -3437,7 +3682,7 @@ msgstr "Frissít" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Hely" @@ -3453,10 +3698,10 @@ msgid "Return to default" msgstr "Alapbeállítás" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Törlés" @@ -3465,7 +3710,7 @@ msgstr "Hozzáadás" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Szélesség:" @@ -3478,12 +3723,12 @@ "12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Hosszúság:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Magasság:" @@ -3505,365 +3750,412 @@ #: src/ui_locationDialogGui.h:413 msgid "Planet:" -msgstr "Bolygó:" +msgstr "Égitest:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Égitest keresése" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Objektum vagy pozíció keresése" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "A Tab gombbal lehet a következÅ‘ tételre lépni" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "ióta" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "béta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epszilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zéta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "éta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mű" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nü" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "kszí" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pí" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rhó" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "szigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "üpszilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fí" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "khí" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "pszí" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Görög betűk a Bayer-jelöléshez" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objektum" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Pozíció" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Néhány objektum csak a megfelelÅ‘ beépülÅ‘ modul telepítése után látható." + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "Rövidítések" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Keresés a listában..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listák" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "SIMBAD on-line csillagászati adatbázis" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Keresés a SIMBAD-on is" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Szerver:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Keresési opciók" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Beállítások" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "Rövidítések" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Keresés a listában..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listák" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Nézet" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Ég" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Jelölések" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Tájkép" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Csillaghagyomány" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Címkék és jelölések" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Bolygók" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Feliratok és jelölések a mélyég-objektumokhoz (csillaghalmazok, galaxisok és " +"ködök)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Bolygók és holdak" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Bolygók mutatása" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Bolygók jelölése" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Bolygópályák mutatása" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Fénysebesség szimulálása" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Hold nagyítása" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "A tájkép automatikus cseréje, ha a bolygó változik" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Tájkép automatikus kiválasztása" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Légkör mutatása" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Fényszennyezés" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "nyomás, hÅ‘mérséklet, kioltás együtthatója" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "VisszaverÅ‘dési/kioltási beállítások" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Abszolút méret:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relatív méret:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" -msgstr "" +msgstr "A Tejút fényessége:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Vibrálás:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "A halvány csillagok elhalványulnak egy nagyon fényes égitest mellett" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dinamikus szem adaptálása" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Hullócsillagok" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" -msgstr "" +msgstr "Óránkénti zenit változás" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "" +msgstr "ZHR:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" -msgstr "" +msgstr "Határmagnitúdók" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Csillagképek" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Vonalak mutatása" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Címkék mutatása" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Határok mutatása" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Ãbrák mutatása" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Rajzok fényessége" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Éggömb" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "EgyenlítÅ‘ mutatása" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Meridián mutatása" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Horizont mutatása" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Ekliptika vonala" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Galaktikus sík mutatása" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Vetület" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Tájkép hozzáadása/törlése..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Felszín mutatása" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Köd mutatása" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Ugrás a tájképhez társított bolygóra és helyre" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Tájkép beállítása alapértelmezettnek" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Tájképek fényesség beállítása" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Kultúrkör beállítása alapértelmezettnek" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Látható" @@ -3917,7 +4209,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Az irány, amelybÅ‘l nézel a Stellarium indításakor" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "A kijelölt égitest adatai" @@ -3933,11 +4225,8 @@ msgid "Display no information" msgstr "Információ elrejtése" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Semmi" @@ -4072,14 +4361,14 @@ #: src/ui_configurationDialog.h:1061 msgid "Mouse cursor timeout:" -msgstr "" +msgstr "Egérkurzor mutatása:" #: src/ui_configurationDialog.h:1063 msgid "seconds" -msgstr "" +msgstr "másodperc" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Kezdeti dátum és idÅ‘" @@ -4091,19 +4380,23 @@ msgid "Other:" msgstr "Egyéb:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Helyi dátum és idÅ‘ használata" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "Jelenlegi használata" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Induláskor a rendszeridÅ‘t használja a Stellarium" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Rendszerdátum és -idÅ‘" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4111,23 +4404,23 @@ "Induláskor a Stellarium az aktuális nap megadott indÅ‘pontjára állítja az " "óráját" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Rendszerdátum ekkor:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" -msgstr "" +msgstr "IdÅ‘korrekció" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" -msgstr "" +msgstr "A képlet szerkesztése" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetáriumi beállítások" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4135,52 +4428,52 @@ "A gömbtükörtorzítás a kis költségű planetáriumokban alkalmazott gömbtükrökre " "vetítéskor használatos." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Gömbtükörtorzítás" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "A kép közepén levÅ‘ körön kívül minden ki lesz takarva" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Kör alakú látómezÅ‘" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Egyéb csillagképek elrejtése egy kattintással" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Egyedül álló csillagkép kijelölése" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "A feliratok látóhatárhoz igazítása" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Gravitációs címkék" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Ködök hátterének ki/bekapcsolása" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Ködök hátterét kapcsoló gomb" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" "Ki-be kapcsolja a képet függÅ‘legesen és vízszintesen tükrözÅ‘ gombokat." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "A képtükrözÅ‘ gombok mutatása" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4188,92 +4481,100 @@ "Ha be van jelölve, akkor az automatikus kicsinyítés alkalmazásakor visszaáll " "az eredeti látóirány is." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatikus kicsinyítéskor visszaáll az eredeti látóirány" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Ãrnyék mutatása a bolygókon és a holdakon. Ehhez az OpenGL 2-es vagy újabb " +"verziója szükséges." + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Naprendszerbeli árnyékok" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "KépernyÅ‘képek" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "A képernyÅ‘mentések könyvtára" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Színek megfordítása" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Csillag katalógus frissítések" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Kattintson ide a letöltés megkezdéséhez" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Ezen állomány letöltése, hogy még több csillagot láthassunk" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Letöltés újraindítása" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Ismételt próbálkozás" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Letöltés megállítása. Késöbb újraindítható" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Mégsem" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Ablakok bezárása szkriptek futtatása esetén" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "A kiválasztott szkript futtatása" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "A futó szkript leállítása" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Betöltés inuláskor" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "Beállítás" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Ãltalános" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Információ" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigáció" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Eszközök" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "BÅ‘vítmények" @@ -4446,12 +4747,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Iránytű jeleket rajzol a horizontnál." -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okulárok" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4461,164 +4762,164 @@ "Csak a nagyítás és a látótér nagysága állítható. Mutatja a képszenzor " "keretét és a Telradot is." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Válasszon objektumot az okulár nézetbe kapcsolás elÅ‘tt." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&ElÅ‘zÅ‘ okulár" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&KövetkezÅ‘ okulár" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "&Okulár választása" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "&Célkereszt be/ki" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "&Okulárok beállításai" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "&CCD be/ki" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "&Telrad ki/be" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&ElÅ‘zÅ‘ CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&KövetkezÅ‘ CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "CCD kivála&sztása" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "CCD fo&rgatása" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "Forgatás &reszet" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okulár #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okulár #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Okulár FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Okulár aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" -msgstr "" +msgstr "Lencse #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" -msgstr "" +msgstr "Lencse #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" -msgstr "" +msgstr "Lencse: nincs" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "TávcsÅ‘ #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "TávcsÅ‘ #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Nagyítás: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimenziók: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Szenzor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Szenzor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" -msgstr "" +msgstr "&Lencsék" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" -msgstr "" +msgstr "&ElÅ‘zÅ‘ lencse" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" -msgstr "" +msgstr "&KövetkezÅ‘ lencse" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&TávcsÅ‘" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&ElÅ‘zÅ‘ távcsÅ‘" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&KövetkezÅ‘ távcsÅ‘" @@ -4632,11 +4933,11 @@ #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:207 msgid "Previous lens" -msgstr "" +msgstr "ElÅ‘zÅ‘ lencsék" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:213 msgid "Next lens" -msgstr "" +msgstr "KövetkezÅ‘ lencsék" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:219 msgid "Previous CCD frame" @@ -4690,64 +4991,69 @@ msgid "Apparent field of view of the ocular" msgstr "Okulár látszólagos látómezeje" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" -msgstr "" +msgstr "Szorzó: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" -msgstr "" +msgstr "Lencse: nincs" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Fókusztávolság" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Elforgatás: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Binokulárok nagyítása" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Binokulárok aktuális látómezeje" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" -msgstr "" +msgstr "Az okulár/lencse/távcsÅ‘ kombináció nagyítása" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" -msgstr "" +msgstr "Az okulár/lencse/távcsÅ‘ kombináció látószöge" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Okulár bÅ‘vítmény" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Verzió" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Barlow lencse" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Ãttekintés" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4758,7 +5064,7 @@ "beállításoknál szemlencséket, távcsöveket és CCD érzékelÅ‘ket lehet " "hozzáadni és módosítani. ElsÅ‘ indítás alkalmával mintákat mutat." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4775,14 +5081,14 @@ "hogy a kép nagy része elvész, ezért azt tanácsoljuk, hogy ez a beállítás " "legyen kikapcsolva. Szükség esetén be lehet kapcsolni." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "A célkeresztet a nézetben be/ki lehet kapcsolni." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4794,292 +5100,361 @@ "Ez három koncentrikus kört rajzol (0,5%1, 2,0%1 és 4,0%1). Ez hasonló képet " "mutat, mint amit Telrad (vagy hasonló) keresÅ‘n lehetne látni szabad szemmel." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Problémák esetén kérem értesítsen!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Gyorsbillentyűk" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "A bÅ‘vítményhez rendelt nyomógombok megváltoztathatók." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "(nincs billentyű megadva)" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Az okulár nézetet kapcsolja be/ki." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "A navigációs menüt nyitja meg." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Csak ha ki van választva objektum" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Kép méretének skálázása" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Billentyűbeállítás" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Okulárnézet:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Felugró navigációs menü megnyitása:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "KezelÅ‘felület" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Beállítópanel" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Fok és perc használata a FOV és a CCD számára" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Ãltalános" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Szemlencsék" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Hozzáad" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Név:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Fókusztávolság:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binokulárok" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" -msgstr "" +msgstr "Lencsék" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Szorzó:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Szenzorok" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "X felbontás (pixel):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Y felbontás (pixel):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Csipméret (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Csipmagasság (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Pixelszélesség (mikron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Pixelmagasság (mikron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Távcsövek" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "ÃtmérÅ‘:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Vízszintes tükrözés" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "FüggÅ‘leges tükrözés" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Névjegy" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Műholdak" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "A műholdak pozícióinak becslése a NORAD TLE adatain alapulnak" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "A régi satellites.json fájl nem kompatibilis - alapértelmezés használva." -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "vizuális" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "tudományos" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "hírközlési" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navigációs" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amatÅ‘r" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "idÅ‘járási" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geostacionárius" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "üzemen kívül" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "GPS" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "Iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Hubble űrteleszkóp" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "Nemzetközi Å°rállomás" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Katalógusszám" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Nemzetközi jelölés" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "műhold" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Távolság (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Távolság változása (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Magasság (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Döféspont (Lat./Long.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME koordináták (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME sebesség (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "A műhold és a megfigyelÅ‘ napfényben van." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "A műhold látható." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "A műhold fedésben van." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "A műhold nem látható." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Műhold bÅ‘vítmény" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "A műhold bÅ‘vítmény elÅ‘rejelzi a Föld körüli műholdak pozícióját." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Megjegyzések a felhasználóknak" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "A műholdak csak földi megfigyelÅ‘ számára láthatóak." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5088,7 +5463,7 @@ "Az elÅ‘rejelzett pozíciók csak legfeljebb néhány hetes intervallumban " "érvényesek." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5097,7 +5472,7 @@ "érhetÅ‘k el." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5108,7 +5483,7 @@ "alapértelmezés szerinti %3 fájlra. A régebbi fájl elmentÅ‘dik %4 néven. Ezt a " "felhasználói mappák között lehet találni a \"modules/Satellites/\" alatt." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5117,11 +5492,11 @@ "lehetnek." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "TLE adatok frissítése" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5130,7 +5505,7 @@ "A műhold bÅ‘vítmény automatikusan le tudja tölteni a műholdak pályáinak TLE " "adatait, alapértelmezés szerint ezt 72 óránként megteszi. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5141,7 +5516,7 @@ "használható, aminek formátuma megegyezik a Celestrak update formátumával " "(példának: %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5149,11 +5524,11 @@ "Megj.: ha a műhold nevében szögletes zárójel van, az a rész ki lesz " "hagyva." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Új műholdak hozzáadása" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5165,11 +5540,11 @@ "ablakában. 2. A műholdak fülön kattints a \"+\" gombra. Válaszd ki a " "műholdat, amit hozzá akarsz adni és nyomd le a \"hozzáad\" gombot." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Technikai megjegyzés" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5177,7 +5552,7 @@ "A pozíciók számításához az SGP4 & SDP4 módszereket alkalmazzuk és a NORAD " "által megadott friss TLE adatokat. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5186,24 +5561,26 @@ "Spacetrack Report #3 alapján (ami a Spacetrack Report #6-ot is tartalmazza). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "A részletekért lásd %1ezt a dokumentumot%2." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Hivatkozások" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5211,31 +5588,34 @@ msgstr "Támogatás a Launchpad weboldalon keresztül. A téma legyen \"%1\"." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Kérdés esetén %1itt kaphatsz választ%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Hibajelentést %1itt lehet készíteni%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5243,294 +5623,338 @@ "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internetes frissítés kikapcsolva" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Frissítés..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "KövetkezÅ‘ frissítés kevesebb mint 1 perc múlva" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "KövetkezÅ‘ frissítés: %1 perc múlva" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "KövetkezÅ‘ frissítés: %1 óra múlva" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Frissítés most" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Frissítés fájlokból" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Frissítési hiba" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Frissítve: %1/%2 műhold; %3 hozzáadva; %4 eltávolítva" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "%1/%2 műhold frissítve; %3 hiányzik" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Frissítve: %1/%2 műhold; %3 hozzáadva; %4 hiányzik" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[új forrás]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Frissítés most" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Frissítés fájlokból" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[pályaszámítási hiba]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[minden új]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[összes megjelenítve]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[mind]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Új csoport..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "TLE fájl kiválasztása" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Adatok letöltése..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "A Stellarium program műholdak adatait tölti le. Kérem várjon..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "TLE fájl kiválasztása..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Adatok feldolgozása..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Nem sikerült adatokat letölteni. Próbálja késÅ‘bb." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Katalógusszám: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Műholdak beállítása" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "TLE lista frissítése" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "frissítés" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Frissítés internetrÅ‘l" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "A műholdak adatainak frissítése internetrÅ‘l" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Utolsó frissítés:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "Frissítéskor az összes új műhold hozzáadása a kiválasztott forrásból" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Frissítéskor azon műholdak eltávolítása, amik nincsenek benne a frissítési " +"listában" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Frissítési gyakoriság (óra):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Címkék" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Cimke fontmérete (pixel):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Pályák vonalai" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "A vonal rajzolásához használt szakaszok száma" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Szakaszok száma:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Szegmens hossza (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Szegmensek száma a vonal mindkét végén" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Halványodás hossza" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Alap beállítások visszaállítása" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Beállítások alapértelmezetté tétele" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Beállítások" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Dupla kattintás a műholdra követést jelent." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Műholdak hozzáadása" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Kiválasztott műholdak eltávolítása" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Változtatások mentése" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Katalógusszám:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Kiválasztott műholdak megjelenítése" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Megjelenítve" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "A kiválasztott műholdak pályáinak mutatása" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Pálya" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Katalógusszám:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "Nem kell frissíteni a kiválasztott műholdakat" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Nem kell frissíteni" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Leírás:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Csoportok:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "VesszÅ‘vel elválasztott csoportok" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "TLE adatok:" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORAD pályaelemek kétsoros adatai" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Kiválasztott műholdak eltávolítása" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Műholdak hozzáadása" - -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Változtatások mentése" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"A kiválasztott listában lévÅ‘ műholdak hozzá lesznek adva a következÅ‘ " +"frissítéskor, ha még nincsenek a készletben." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5538,15 +5962,15 @@ "A kiválasztott forrás URL-jének megadása vagy szerkesztése. Az Enter " "megnyomása elmenti a változtatást." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Új forrás hozzáadása" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Kiválasztott forrás törlése" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Források" @@ -5582,22 +6006,22 @@ msgid "Discard" msgstr "Elvetés" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "TávcsÅ‘ irányítása" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "A bÅ‘vítmény elfordítási parancsot küld a távcsÅ‘nek." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "TávcsÅ‘_#%1 mozgatása a kiválasztott objektumra" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "TávcsÅ‘_#%1 mozgatása a képernyÅ‘ közepén lévÅ‘ objektumra." @@ -5994,62 +6418,62 @@ "hogy hogyan jelenjen meg a dátum és idÅ‘ az alsó sorban." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "január" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "február" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "március" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "április" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "május" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "június" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "július" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "augusztus" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "szeptember" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "október" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "november" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "december" @@ -6207,7 +6631,7 @@ "A beállítás az alsó sávban megjelenÅ‘ dátum és idÅ‘ formátumát határozza meg." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "IdÅ‘kijelzés formátuma" @@ -6225,7 +6649,7 @@ msgstr "24-órás formátum" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "dátumkijelzés formátuma" @@ -6241,155 +6665,155 @@ msgid "mm-dd-yyyy" msgstr "hh-nn-éééé" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Szöveges interfész" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" "A planetáriumokban használt 0.9.x sorozatú Text User Interface (TUI)." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Naprendszerbeli objektum" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Pillanatnyi dátum/idÅ‘" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "IdÅ‘zóna beállítása" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Indulási dátum/idÅ‘ beállítása" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "rendszer" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "beállítás" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "hhnnéééé" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "nnhhéééé" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "ééééhhnn" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Nyelv" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Csillagok mutatása" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Színek" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Ködök neve" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Tippek ködökhöz" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Galaktikus sík vonala" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Hatások" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Kézi zoom" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Nagyítás skálájának szorzója" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Tejút erÅ‘ssége:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Köd címke gyakoriság:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Zoom idÅ‘tartama:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Kurzor kikapcsolása:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Tájképek helyszínének beállítása" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Helyi szkript futtatása" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Futó szkript megállítása" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD szkript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Adminisztráció" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Alapértelmezett konfiguráció betöltése" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Jelenlegi konfig mentése" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Kikapcsolás" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6424,16 +6848,16 @@ "keresni is lehet. Fejlesztés alatt." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Keresés az MPC-n (%1):" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Csak egy eredmény lesz, ha a keresés sikeres" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6441,7 +6865,7 @@ "Az üstökösök és aszteroidák a számukkal, az angol nevükkel vagy az átmeneti " "jelölésükkel is megadhatók." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6626,38 +7050,43 @@ msgid "Solar System" msgstr "Naprendszer" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Történelmi szupernóvák" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." -msgstr "" -"Néhány történelmi szupernóva, amik fényesebbek voltak 10 magnitúdónál." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." +msgstr "Ez a bÅ‘vítmény néhány fényes, történelmi szupernóvát mutat." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "szupernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "A szupernóva típusa: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Legnagyobb fényesség : %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Történelmi szupernóvák bÅ‘vítmény" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " -msgstr "" -"Néhány történelmi szupernóva, amik fényesebbek voltak 10 magnitúdónál: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "Ez a bÅ‘vítmény néhány fényes, történelmi szupernóvát mutat: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." +msgstr "%1-nél fényesebb szupernóvák" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6675,7 +7104,7 @@ msgstr "Köszönetnyilvánítás" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6691,14 +7120,14 @@ msgstr "Institute for Theoretical and Experimental Physics" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "Oroszország" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6708,8 +7137,9 @@ "%1itt megszerezheti%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "KövetkezÅ‘ frissítés: %1 nap múlva" @@ -6727,29 +7157,108 @@ msgstr "Történelmi szupernóvák bÅ‘vítmény beállításai" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Katalógus frissítése az internetrÅ‘l" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Frissítés internetrÅ‘l" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Frissítés gyakorisága (nap):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[következÅ‘ frissítés]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Fényes nóvák" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "Ez a bÅ‘vítmény néhány fényes nóvát mutat a Tejúton." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Típus: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "nóva" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Fényes nóvák" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"A nóvákat lehet keresni az ismert nevük vagy rövidítésük alapján (p. 'Nova " +"Cygni 1975' vagy 'V1500 Cyg')." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Nóvák listája frissítve" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Fényes nóvák beállításai" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Fényes nóvák bÅ‘vítmény beállításai" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kvazárok" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6768,11 +7277,11 @@ msgid "Z (redshift): %1" msgstr "Z (vöröseltolódás): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Kvazár bÅ‘vítmény" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6781,40 +7290,50 @@ "A kvazárok katalógusa a \"Quasars and Active Galactic Nuclei' (13th Ed.) " "alapján készült" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Kvazárok frissítve" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Kvazárok beállításai" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Kvazár bÅ‘vítmény beállítása" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Kvazárok megjelenítési módja" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Beállítások kvazárokhoz" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Minden kvazár címke nélkül" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Kvazárok eloszlásának mutatása" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Induláskor mutatja" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Kvazár gomb az eszköztáron" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulzárok" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6936,11 +7455,11 @@ "elszigetelt neutroncsillag pillanatnyi termális röntgenemisszióval, " "rádiósugárzás nélkül" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Pulzár bÅ‘vítmény" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6951,67 +7470,71 @@ "N., Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Megjegyzés" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "a pulzárazonosítók PSR-elÅ‘taggal rendelkeznek" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Köszönetnyilvánítás" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vlagyimir Szamodurov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino Radio Astronomy Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Nancay Radioastronomical Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "Franciaország" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulzárok frissítve" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Pulzárok beállításai" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Pulzár bÅ‘vítmény beállítása" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Pulzárok megjelenítése" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Beállítások pulzárokhoz" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Minden pulzár címke nélkül" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Pulzárok eloszlásának mutatása" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Pulzár gomb az eszköztáron" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exobolygók" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7020,71 +7543,71 @@ "adatainak forrása az Extrasolar Planets Encyclopaedia, az exoplanet.eu " "webhelyen." -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Fémesség" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Tömeg" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Sugár" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Effektív hÅ‘mérséklet: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exobolygó" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Periódus" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "nap" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Fél nagytengely" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "CsE" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Excentricitás - e" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inklináció" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Szögtávolság" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Felfedezés éve" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Exobolygó bÅ‘vítmény" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7094,49 +7617,138 @@ "adatai innen származnak: \"%1The Extrasolar Planets Encyclopaedia%2\"." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "A bÅ‘vítményre vonatkozó információkat le lehet tölteni %1innen%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "Exobolygókkal foglalkozó profi weboldalak" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanets: an interactive version of XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (The Hunt for Exomoons with Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Exoplanets in binaries and multiple systems (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Exobolygók elnevezései (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "frissítve: 2012. április 16." + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "The Exoplanet Data Explorer" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "The Anglo-Australian Planet Search" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Geneva Extrasolar Planet Search Programmes" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Optical Long-Baseline Interferometry News)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "NASA's Exoplanet Exploration Program" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "Lakható zóna galéria" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Exobolygók frissítve" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Exobolygók beállításai" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Exobolygó bÅ‘vítmény beállításai" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Exobolygók adatainak frissítése az internetrÅ‘l" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Exobolygók mutatása" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Beállítások exobolygókhoz" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Exobolygókkal rendelkezÅ‘ rendszerek jelzése címke nélkül" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Exobolygók eloszlása" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Exobolygók a felfedezésük alapján" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Exobolygók felfedezési sorrendben" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Exobolygó gomb az eszköztáron" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Infó" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "MegfigyelhetÅ‘ség" @@ -7158,185 +7770,179 @@ "Megadja az akronikus és kozmikus kelési/nyugvási idÅ‘ket.

    A " "mennyiségek magyarázata a konfigurációs ablakból elérhetÅ‘." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "jan" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "márc" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "ápr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "máj" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "jún" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "júl" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "aug" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "szept" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "okt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "dec" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Lenyugszik %1 (%2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Felkelt %1 (ezelÅ‘tt %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Nyugvás %1 (ezelÅ‘tt %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Kelés %1 (%2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Cirkumpoláris" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Nem kel fel." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Delelés %1 (%2 múlva) %3 foknál" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Kulminált %1 (ezelÅ‘tt %2) %3 fokkal" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "A forrás nem megfigyelhetÅ‘." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Nincs akronikus sem kozmikus kelés/nyugvás." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Legnagyobb elongáció: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Legnagyobb Naptávolság: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (%1 fok)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Akronikus kelés/nyugvás" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Nincs akronikus kelés/nyugvás" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Kozmikus kelés/nyugvás" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Nincs kozmikus kelés/nyugvás" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Egész évben megfigyelhetÅ‘." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Nem figyelhetÅ‘ meg." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Éjszakák a horizont fölött: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "Ma:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "Ebben az évben:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "ElÅ‘zÅ‘ telihold: %1 %2 %3:%4 " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "KövetkezÅ‘ telihold: %1 %2 at %3:%4. " @@ -7771,6 +8377,9 @@ #~ msgid "Form" #~ msgstr "Å°rlap" +#~ msgid "Nebulas" +#~ msgstr "Csillagködök" + #~ msgid "10" #~ msgstr "10" @@ -7813,6 +8422,9 @@ #~ msgid "Startup direction of view: xxxx" #~ msgstr "Kezdeti látóirány: xxxx" +#~ msgid "Nebulas background images" +#~ msgstr "Csillagködök háttérképei" + #~ msgid "Planets labels" #~ msgstr "Bolygó megjelölés" @@ -7851,6 +8463,24 @@ #~ msgid "Show and edit all keyboard shortcuts" #~ msgstr "Billentyűkombinációk szerkesztése" +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "KépernyÅ‘kímélÅ‘ a Naprendszer eseményeinek ábrázolásával (összesen 171 " +#~ "esemény!)" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "TLE lista frissítése" + +#~ msgid "TLE data:" +#~ msgstr "TLE adatok:" + +#~ msgid "Comma separated list of groups" +#~ msgstr "VesszÅ‘vel elválasztott csoportok" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORAD pályaelemek kétsoros adatai" + #~ msgid "Earth best views from other Solar system bodies in the 21st Century." #~ msgstr "A Föld legjobb látványa a Naprendszer objektumairól a 21. században." @@ -7901,6 +8531,28 @@ #~ msgid "Edit Alternative Shortcut" #~ msgstr "2. gyorsbillentyű szerk." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "%1/%2 műhold frissítve; %3 hiányzik" + +#~ msgid "Display mode for quasars" +#~ msgstr "Kvazárok megjelenítési módja" + +#~ msgid "Display mode for pulsars" +#~ msgstr "Pulzárok megjelenítése" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Néhány történelmi szupernóva, amik fényesebbek voltak 10 magnitúdónál: " + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Néhány történelmi szupernóva, amik fényesebbek voltak 10 magnitúdónál." + #~ msgid "Magnification provided by this ocular/telescope combination" #~ msgstr "Okulár és távcsÅ‘ kombinációjának nagyítása" diff -Nru stellarium-0.12.1/po/stellarium/hy.po stellarium-0.12.4/po/stellarium/hy.po --- stellarium-0.12.1/po/stellarium/hy.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/hy.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2011-05-28 11:53+0000\n" "Last-Translator: Serj Safarian \n" "Language-Team: Armenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:44+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-SourceCharset: iso-8859-1\n" #~ msgid "Set Location " @@ -48,19 +48,19 @@ #~ msgid "Arrow down to load list." #~ msgstr "ÕÕ¬Õ¡Ö„ Õ¶Õ¥Ö€Ö„Õ¥Ö‚Õ ÖÕ¡Õ¶Õ¯Õ¨ Õ¢Õ¥Õ¼Õ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€Ö‰" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Õ„Õ«Õ»Ö…Ö€Õ¥Õ¡Õ¯Õ¡Õ¶" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ô½Õ¡Õ¾Õ¡Ö€Õ¡Õ®Õ«Ö€" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Õ€Õ¡Õ½Õ¡Ö€Õ¡Õ¯Õ¡Õ®" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -68,46 +68,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Õ€Õ¥Õ²Õ«Õ¶Õ¡Õ¯Õ " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "ÕÕ¥Õ²Õ¡Õ¤Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 Õ´" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Õ„Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "ÕÕ¥Õ½Õ¡Õ¯Õ %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Ô±Õ½Õ¿Õ²Õ¡ÕµÕ«Õ¶ Õ´Õ¥Õ®Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ %1" @@ -117,114 +117,114 @@ msgid "Size: %1" msgstr "Õ‰Õ¡ÖƒÕ %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Ô³Õ¡Õ¬Õ¡Õ¯Õ¿Õ«Õ¯Õ¡" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Ô²Õ¡Ö Õ¡Õ½Õ¿Õ²Õ¡Õ¯Õ¸Ö‚ÕµÕ¿" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Ô³Õ¶Õ¤Õ¡Õ±Õ¥Ö‚ Õ¡Õ½Õ¿Õ²Õ¡Õ¯Õ¸Ö‚ÕµÕ¿" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Õ„Õ«Õ£Õ¡Õ´Õ¡Õ®Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Õ„Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¡ÕµÕ«Õ¶ Õ´Õ«Õ£Õ¡Õ´Õ¡Õ®Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Õ„Õ«Õ£Õ¡Õ´Õ¡Õ®Õ¸Ö‚Õ©ÕµÕ¡Õ¶ Õ°Õ¥Õ¿ Õ¯Õ¡ÕºÕ¾Õ¡Õ® Õ¡Õ½Õ¿Õ²Õ¡Õ¯Õ¸Ö‚ÕµÕ¿" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Ô±Õ¶Õ°Õ¡ÕµÕ¿" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Õ‰ÖƒÕ¡Õ½Õ¿Õ¡Õ£Ö€Õ¾Õ¡Õ® Õ¿Õ¥Õ½Õ¡Õ¯" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Ô²Õ¡ÖÕ¡Ö€Õ±Õ¡Õ¯ Õ¡Õ½Õ¿Õ²Õ¡ÕµÕ«Õ¶ Õ´Õ¥Õ®Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨Õ %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Õ€Õ¥Õ¼Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ %1Õ¡.Õ´." -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "ÕÕ¥Õ½Õ¡Õ¶Õ¥Õ¬Õ« Õ¿Ö€Õ¡Õ´Õ¡Õ£Õ«Õ®Õ¨Õ %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -235,7 +235,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -250,47 +250,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Ô¼Õ¸Ö‚Õ½Õ¡ÕºÕ¡Õ¿Õ¯Õ¥Ö€Õ¡ÕµÕ«Õ¶ Õ¤Õ¡Õ½Õ¨Õ %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Õ€Õ¥Õ¼Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨Õ %1 Õ¬Õ¸Ö‚Õ½Õ¡Õ¿Õ¡Ö€Õ«" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ÕŠÕ¡Ö€Õ¡Õ¬Õ¡Ö„Õ½Õ¨Õ %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -298,14 +373,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -314,14 +389,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -329,7 +404,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -337,14 +412,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -353,14 +428,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -368,25 +443,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -395,14 +470,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -410,42 +485,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -453,7 +528,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -461,7 +536,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -470,7 +545,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -480,45 +555,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -686,52 +778,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "ÕŠÕ¡Õ¶Õ¡Õ¯ Õ¨Õ¶Õ¿Ö€Õ¥Õ›Ö„ ÖÕ¸Ö‚ÖÕ¡Õ¤Ö€Õ«Õ¹Õ« Õ¬Õ¸Ö‚Õ½Õ¡Õ¶Õ¯Õ¡Ö€Õ« Õ°Õ¡Õ´Õ¡Ö€" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "ÕÕ¯Õ¦Õ¢Õ¶Õ¡Õ¯Õ¡Õ¶ Õ¿Õ¥Õ½Õ¡Õ¤Õ¡Õ·Õ¿Õ¨Õ %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Ô´Õ«Õ¿Õ¥Õ¬Õ¸Ö‚ Õ½Õ¦Õ¢Õ¶Õ¡Õ¯Õ¡Õ¶ Õ¸Ö‚Õ²Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨. Ô±Õ¦/Ô²Õ¡Ö€Õ±Ö€Õ¸Ö‚Õ©.Õ %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Õ€Õ¥Õ²Õ«Õ¶Õ¡Õ¯Õ¶Õ¥Ö€" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Ô¿Õ¡ÕºÕ¸Ö€Õ¤Õ¶Õ¥Ö€" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Õ€Õ¥Õ²Õ«Õ¶Õ¡Õ¯" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Ô±Ö€Õ¿Õ¸Õ¶Õ¡Õ£Õ«Ö€" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Ô³Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¾Õ¡Õ® Õ£Ö€Õ¾Õ¡Õ®Ö„Õ " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Ô³Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¾Õ¡Õ® Õ£Ö€Õ¾Õ¡Õ®Ö„Õ [Õ¹Õ¯Õ¡]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -739,16 +832,16 @@ "Ô±Õ½Õ¿Õ²Õ¥Ö€Õ« Õ¶Õ¸Ö€ Õ£Ö€Õ¡ÖÕ¸Ö‚ÖÕ¡Õ¯Õ¶Õ¥Ö€Õ« Õ¶Õ¥Ö€Õ¢Õ¥Õ¼Õ¶Õ¸Ö‚Õ´Õ¶ Õ¡Õ¾Õ¡Ö€Õ¿Õ¾Õ¥Õ›Õ¬ Õ§Ö‰\n" "ÕŽÕ¥Ö€Õ¡Õ£Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¥Õ›Ö„ StellariumÖŠÕ¨Õ Õ¤Ö€Õ¡Õ¶Ö„ ÖÕ¸Ö‚ÖÕ¡Õ¤Ö€Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€Ö‰" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "%2ÖŠÕ«ÖÕ %1 Õ£Ö€Õ¡ÖÕ¸Ö‚ÖÕ¡Õ¯Õ« Õ¨Õ¶Õ¤Õ¸Ö‚Õ¶Õ¸Ö‚Õ´" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -757,7 +850,7 @@ "Õ†Õ¥Ö€Õ¢Õ¥Õ¼Õ¶Õ¸Ö‚Õ´ %1...\n" "(Ô´Õ¸Ö‚Ö„ Õ¯Õ¡Ö€Õ¸Õ² Õ¥Ö„ ÖƒÕ¡Õ¯Õ¥Õ¬ Õ¡ÕµÕ½ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶Õ¨)Ö‰" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -768,7 +861,7 @@ "Ô±Õ½Õ¿Õ²Õ¥Ö€Õ« Ö„Õ¡Õ¶Õ¡Õ¯Õ¨Õ %2 Õ´Õ«Õ¬Õ«Õ¸Õ¶\n" "Ô±Õ½Õ¿Õ²Õ¡ÕµÕ«Õ¶ Õ´Õ¥Õ®Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ½Õ¡Õ°Õ´Õ¡Õ¶Õ¶Õ¥Ö€Õ¨Õ %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -777,11 +870,11 @@ "Õ†Õ¥Ö€Õ¢Õ¥Õ¼Õ¶Õ´Õ¡Õ¶ Õ½Õ­Õ¡Õ¬ %1Õ\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Õ†Õ·Õ¸ÖÕ¶Õ¥Ö€Õ« Õ¡Õ´Õ¢Õ¸Õ²Õ»Õ¡Õ¯Õ¡Õ¶Õ¸Ö‚Õ©ÕµÕ¡Õ¶ Õ½Õ¿Õ¸Ö‚Õ£Õ¸Ö‚Õ´..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -791,115 +884,123 @@ "Õ†Õ·Õ¸ÖÕ¨ Õ¾Õ¶Õ¡Õ½Õ¾Õ¡Õ® Õ§Ö‰" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1065,49 +1166,53 @@ msgid "OSX Developer: %1" msgstr "OSX Õ„Õ·Õ¡Õ¯Õ¸Õ²Õ %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Ô³Ö€Õ¾Õ¡Õ®Ö„Õ¶Õ¥Ö€Õ« Õ£Õ¸Õ¿Õ¸Ö‚ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "ÕŠÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶Õ¶Õ¥Ö€" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Ô²Õ¡ÖÕ¡Õ¿" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Õ†Õ¯Õ¡Ö€Õ¡Õ£Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶ Õ¹Õ¯Õ¡" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Ô±Õ¼Õ¡Õ¶Ö Õ¨Õ¶Õ¯Õ¶Õ¸Õ² Õ¡Õ½Õ¿Õ²Õ¥Ö€Õ«" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "ÕÕ¸Õ¾Õ¸Ö€Õ¡Õ¯Õ¡Õ¶ Õ¨Õ¶Õ©Õ¡ÖÖ„Õ¨" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "ÕŠÕ¥Ö€Õ½Õ¥Ö‚Õ½Õ« Õ°Õ¡Õ´Õ¡Ö€ Õ½Õ¸Õ¾Õ¸Ö€Õ¡Õ¯Õ¡Õ¶ Õ¡Õ½Õ¸Ö‚ÕºÕ¡ÕµÕ«Õ¶ Õ°Õ¸Õ½Ö„" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Ô±Õ¼ÕµÕ¸Ö‚Õ®Õ« Õ¢Õ¡ÖÕ¡Õ¼Õ«Õ¯ Õ¡Õ½Õ¸Ö‚ÕºÕ¡ÕµÕ«Õ¶ Õ°Õ¸Õ½Ö„" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Ô±Õ¼Õ¡Õ¾Õ¥Õ¬Õ¡Õ£Õ¸Ö‚ÕµÕ¶Õ¨ (1966, Ô±Õ¼ÕµÕ¸Ö‚Õ®Õ« Õ¡Õ½Õ¸Ö‚ÕºÕ¡ÕµÕ«Õ¶ Õ°Õ¸Õ½Ö„)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Õ†Õ¸Ö€ Õ¿Õ¥Õ²Õ¡Õ¤Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶" @@ -1211,19 +1316,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1239,30 +1344,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Õ€Õ¡Õ´Õ¡Õ¯Õ¡Ö€Õ£Õ¨ Õ¹Õ« Õ¡Õ»Õ¡Õ¯ÖÕ¸Ö‚Õ´ OpenGLÖ‰" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Ô±Ö€Õ¥Õ£Õ¡Õ¯" @@ -1279,12 +1390,12 @@ msgstr "ÔµÖ€Õ¯Õ«Ö€" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Ô¼Õ¸Ö‚Õ½Õ«Õ¶" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Õ€Ö€Õ¡Õ¿" @@ -1382,7 +1493,7 @@ msgstr "Õ„Õ¥Õ¿Õ«Õ½" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "ÔµÖ€Õ¥Ö‚Õ¡Õ¯" @@ -1680,239 +1791,268 @@ msgstr "Õ§Õ½Õ¯Õ«Õ´Õ¸Õ½Õ¥Ö€Õ¥Õ¶" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Ô¿Õ¸Ö€Õ¥Õ¥Ö€Õ¥Õ¶" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Ô¼Õ¡Õ¯Õ¸Õ¿Õ¡" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Õ„Õ¡Õ¸Ö€Õ«" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Õ†Õ¡Õ¾Õ¡Õ­Õ¸" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Õ†Õ¸Ö€Õ¾Õ¥Õ£Õ¥Ö€Õ¥Õ¶" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "ÕŠÕ¸Õ¬Õ«Õ¶Õ¥Õ¦Õ¥Ö€Õ¥Õ¶" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "ÕÕ¡Õ¡Õ´Õ¥Ö€Õ¥Õ¶" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "ÕÕ¸Ö‚ÕºÕ« Õ£Õ¸Ö‚Õ¡Ö€Õ¡Õ¶Õ«" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Ô±Ö€Õ¥Õ¾Õ´Õ¿ÕµÕ¡Õ¶" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1922,1502 +2062,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Ô±Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨ Ö‡ ÕªÕ¡Õ´Õ¨" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Ô±Õ¾Õ¥Õ¬Õ¡ÖÕ¶Õ¥Õ¬ 1 Õ¡Õ½Õ¿Õ²Õ¡ÕµÕ«Õ¶ Ö…Ö€" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Ô±Õ¾Õ¥Õ¬Õ¡ÖÕ¶Õ¥Õ¬ 1 Õ¡Õ½Õ¿Õ²Õ¡ÕµÕ«Õ¶ Õ·Õ¡Õ¢Õ¡Õ©" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Ô±Õ¾Õ¥Õ¬Õ¡ÖÕ¶Õ¥Õ¬ 1 Õ¡Ö€Õ¥Ö‚Õ¡ÕµÕ«Õ¶ Ö…Ö€" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Ô±Õ¾Õ¥Õ¬Õ¡ÖÕ¶Õ¥Õ¬ 1 Õ¡Ö€Õ¥Ö‚Õ¡ÕµÕ«Õ¶ ÕªÕ¡Õ´" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Ô±Õ¾Õ¥Õ¬Õ¡ÖÕ¶Õ¥Õ¬ 1 Õ¡Ö€Õ¥Ö‚Õ¡ÕµÕ«Õ¶ Õ·Õ¡Õ¢Õ¡Õ©" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Ô´Õ¡Õ¶Õ¤Õ¡Õ²Õ¥ÖÕ¶Õ¥Õ¬ Õ£Ö€Õ¾Õ¡Õ®Ö„Õ« Õ¯Õ¡Õ¿Õ¡Ö€Õ¸Ö‚Õ´Õ¨" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Ô´Õ¡Õ¶Õ¤Õ¡Õ²Õ¥ÖÕ¶Õ¥Õ¬ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ« Õ¡Ö€Õ¡Õ£Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Ô´Õ¡Õ¶Õ¤Õ¡Õ²Õ¥ÖÕ¶Õ¥Õ¬ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ« Õ¡Ö€Õ¡Õ£Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨ (Õ´Õ« ÖƒÕ¸Ö„Ö€)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Ô±Ö€Õ¡Õ£Õ¡ÖÕ¶Õ¥Õ¬ Õ£Ö€Õ¾Õ¡Õ®Ö„Õ« Õ¯Õ¡Õ¿Õ¡Ö€Õ¸Ö‚Õ´Õ¨" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Ô±Ö€Õ¡Õ£Õ¡ÖÕ¶Õ¥Õ¬ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ« Õ¨Õ¶Õ©Õ¡ÖÖ„Õ¨" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Ô±Ö€Õ¡Õ£Õ¡ÖÕ¶Õ¥Õ¬ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ« Õ¨Õ¶Õ©Õ¡ÖÖ„Õ¨ (Õ´Õ« ÖƒÕ¸Ö„Ö€)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Ô¸Õ¶Õ©Õ¡ÖÕ«Õ¯ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ¨" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "ÕÕ¸Õ¾Õ¸Ö€Õ¡Õ¯Õ¡Õ¶ Õ¡Ö€Õ¡Õ£Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨ Õ£Ö€Õ¾Õ¡Õ®Ö„Õ¨ Õ¯Õ¡Õ¿Õ¡Ö€Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ« Õ½Õ¸Õ¾Õ¸Ö€Õ¡Õ¯Õ¡Õ¶ Õ¡Ö€Õ¡Õ£Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Ô¿Õ¡Õ¶Õ£Õ¶Õ¥ÖÕ¶Õ¥Õ¬ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ¨" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Õ€Õ¡Õ¶Õ¥Õ¬ 1 Õ¡Õ½Õ¿Õ²Õ¡ÕµÕ«Õ¶ Ö…Ö€" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Õ€Õ¡Õ¶Õ¥Õ¬ 1 Õ¡Õ½Õ¿Õ²Õ¡ÕµÕ«Õ¶ Õ·Õ¡Õ¢Õ¡Õ©" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Ô±Õ¾Õ¥Õ¬Õ¡ÖÕ¶Õ¥Õ¬ 1 Õ¡Ö€Õ¥Ö‚Õ¡ÕµÕ«Õ¶ Ö…Ö€" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Õ€Õ¡Õ¶Õ¥Õ¬ 1 Õ¡Ö€Õ¥Ö‚Õ¡ÕµÕ«Õ¶ ÕªÕ¡Õ´" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Õ€Õ¡Õ¶Õ¥Õ¬ 1 Õ¡Ö€Õ¥Ö‚Õ¡ÕµÕ«Õ¶ Õ·Õ¡Õ¢Õ¡Õ©" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Õ‘Õ¸Ö‚ÖÕ¡Õ¤Ö€Õ´Õ¡Õ¶ Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€Õ¨" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Ô±Ö€Õ¿Õ¡ÖÕ¸Õ¬Õ¥Õ¬ Õ°Õ¸Ö€Õ«Õ¦Õ¸Õ¶Õ¡Õ¯Õ¡Õ¶" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Ô¼Õ«ÖÕ¸Ö‚ÖÕ¡Õ¤Ö€Õ«Õ¹ Õ¡Õ·Õ­Õ¡Õ¿Õ¡Õ¯Õ¥Ö€Õº" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Õ„Õ©Õ¶Õ¸Õ¬Õ¸Ö€Õ¿" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Ô±Õ¦Õ«Õ´Õ¸Ö‚Õ¿Õ¡ÕµÕ«Õ¶ ÖÕ¡Õ¶Ö" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Ô±Õ·Õ­Õ¡Ö€Õ°Õ« Õ¯Õ¸Õ²Õ´Õ¥Ö€" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Õ€Õ¡Õ´Õ¡Õ½Õ¿Õ¥Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« ÕºÕ¡Õ¿Õ¯Õ¥Ö€Õ¶Õ¥Ö€Õ¨" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Õ€Õ¡Õ´Õ¡Õ½Õ¿Õ¥Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ½Õ¡Õ°Õ´Õ¡Õ¶Õ¶Õ¥Ö€Õ¨" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Õ€Õ¡Õ´Õ¡Õ½Õ¿Õ¥Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ¡Õ¶Õ¾Õ¡Õ¶Õ¸Ö‚Õ´Õ¶Õ¥Ö€Õ¨" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Õ€Õ¡Õ´Õ¡Õ½Õ¿Õ¥Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ£Õ®Õ¥Ö€Õ¨" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Õ„Õ«Õ£Õ¡Õ´Õ¡Õ®Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ°Õ¥Õ¿Õ«Õ¶ Õ­Õ¸Ö€Ö„Õ¨" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ô½Õ¡Õ¾Õ¡Ö€Õ¡Õ®Õ«Ö€Õ¨" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Õ€Õ¡Õ½Õ¡Ö€Õ¡Õ¯Õ¡Õ®Õ« Õ£Õ«Õ®Õ¨" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Õ€Õ¡Õ½Õ¡Ö€Õ¡Õ¯Õ¡Õ®Õ¡ÕµÕ«Õ¶ ÖÕ¡Õ¶Ö" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Õ€Õ¡Õ½Õ¡Ö€Õ¡Õ¯Õ¡Õ®Õ¡ÕµÕ«Õ¶ ÖÕ¡Õ¶Ö J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Õ„Õ·Õ¸Ö‚Õ·" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Ô³Õ¡Õ¬Õ¡Õ¯Õ¿Õ«Õ¯Õ¡Õ¯Õ¡Õ¶ ÖÕ¡Õ¶Ö" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Ô³Õ¥Õ¿Õ«Õ¶" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Õ„Õ«Õ»Ö…Ö€Õ¥Õ¡Õ¯Õ¡Õ¶Õ« Õ£Õ«Õ®Õ¨" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Õ„Õ«Õ£Õ¡Õ´Õ¡Õ®Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Ô³Õ«Õ·Õ¥Ö€Õ¡ÕµÕ«Õ¶ Õ¡Õ·Õ­Õ¡Õ¿Õ¡Õ¯Õ¥Ö€Õº" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Õ„Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¶Õ¥Ö€Õ« Õ¸Ö‚Õ²Õ¥Õ®Õ«Ö€Õ¶Õ¥Ö€Õ¨" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Õ„Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¶Õ¥Ö€Õ« Õ°Õ¥Õ¿Ö„Õ¥Ö€Õ¨" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Ô±Õ½Õ¿Õ²Õ¥Ö€" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Ô±Ö€Õ¿Õ¡ÖÕ¸Õ¬Õ¥Õ¬ Õ¸Ö‚Õ²Õ²Õ¡Õ±Õ«Õ£" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Ô¶Õ¡Õ¶Õ¡Õ¦Õ¡Õ¶Ö„" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Õ€Õ¸Ö€Õ«Õ¦Õ¸Õ¶Õ¡Õ¯Õ¡Õ¶ Õ¾Õ¡Õ°Õ¡Õ¶Õ¡Õ¯Õ« Õ«Õ¶Ö„Õ¶Õ¡Õ©Õ¡Ö„ÖÕ¶Õ¸Ö‚Õ´" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "ÕˆÖ‚Õ²Õ²Õ¡Õ±Õ«Õ£ Õ¾Õ¡Õ°Õ¡Õ¶Õ¡Õ¯Õ« Õ«Õ¶Ö„Õ¶Õ¡Õ©Õ¡Ö„ÖÕ¶Õ¸Ö‚Õ´" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "ÔµÕ¬Ö„" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "ÕŠÕ¡Õ°Õ¥Õ¬ ÖÕ¸Ö‚ÖÕ¡Õ¤Ö€Õ«Õ¹Õ« Õ¬Õ¸Ö‚Õ½Õ¡Õ¶Õ¯Õ¡Ö€Õ¨" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Õ“Õ¸Õ­Õ¡Õ¶Õ»Õ¡Õ¿Õ¸Ö‚Õ´ Õ°Õ¡Õ½Õ¡Ö€Õ¡Õ¯Õ¡Õ®Õ¡ÕµÕ«Õ¶ Ö‡ Õ¡Õ¦Õ«Õ´Õ¸Ö‚Õ¿Õ¡ÕµÕ«Õ¶ Õ¿Õ¥Õ²Õ¡Õ¯Õ¡ÕµÕ¸Ö‚Õ´Õ¶Õ¥Ö€Õ« Õ´Õ«Õ»Õ¥Ö‚" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ£Õ¸Ö€Õ®Õ«Ö„Õ¶Õ¥Ö€Õ« Õ¾Õ¡Õ°Õ¡Õ¶Õ¡Õ¯Õ¨" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "ÕÕ¥Õ²Õ¡Õ·Õ¡Ö€ÕªÕ¸Ö‚Õ´ Õ¥Ö‚ Õ¨Õ¶Õ¿Ö€Õ¸Ö‚Õ´" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Ô¿Õ¥Õ¶Õ¿Ö€Õ¸Õ¶Õ¡ÖÕ¶Õ¥Õ¬ Õ¨Õ¶Õ¿Ö€Õ¾Õ¡Õ® Õ¡Õ¼Õ¡Ö€Õ¯Õ¡Õ¶" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Ô¿Õ¡ÕµÕ¥Õ¬ Õ¨Õ¶Õ¿Ö€Õ¾Õ¡Õ® Õ´Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¶ Õ¸Ö€ÕºÕ¥Õ½ Õ¿Õ¶Õ¡ÕµÕ«Õ¶" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Õ€Õ¥Õ¿Õ¥Ö‚Õ¥Õ¬ Õ¡Õ¼Õ¡Ö€Õ¯Õ¡ÕµÕ«Õ¶" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Ô½Õ¸Õ·Õ¸Ö€Õ¡ÖÕ¶Õ¥Õ¬ Õ¨Õ¶Õ¿Ö€Õ¾Õ¡Õ® Õ¡Õ¼Õ¡Ö€Õ¯Õ¡Õ¶" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Õ“Õ¸Ö„Ö€Õ¡ÖÕ¶Õ¥Õ¬" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Ô±Õ¶Õ¯ÕµÕ¸Ö‚Õ¶Õ¡Õ¹Õ¡Öƒ" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Ô¿Õ¸Õ²Õ´Õ¶Õ¡ÖÕ¸Ö‚ÕµÖ" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "ÕÕ¥Õ½Ö„Õ¨ Õ¡Õ¯Õ¶Õ¡ÕºÕ¡Õ¯Õ¸Ö‚ Õ´Õ«Õ»Õ¸Õ¾" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Ô±Õ¯Õ¶Õ¡ÕºÕ¡Õ¯Õ«Õ¶Õ¥Ö€Õ« Õ¥Õ¬Õ¶Õ¸Õ² Õ¨Õ¶Õ¿Ö€Õ¡ÖÕ¡Õ¶Õ¯Õ¨" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Ô±Ö€Õ¢Õ¡Õ¶ÕµÕ¡Õ¯Õ¶Õ¥Ö€Õ« Õ¯Õ¡Õ¦Õ´Õ¡Õ±Õ¥Ö‚Õ´Õ¡Õ¶ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "ÔµÖ€Õ¯Ö€Õ« Õ¡Ö€Õ°Õ¥Õ½Õ¿Õ¡Õ¯Õ¡Õ¶ ​​արբանյակները" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Ô±Ö€Õ¢Õ¡Õ¶ÕµÕ¡Õ¯Õ¶Õ¥Ö€Õ« Õ¡Õ¶Õ¾Õ¡Õ¶Õ¸Ö‚Õ´Õ¶Õ¥Ö€Õ¨" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "ÕˆÖ‚Õ²Õ²Õ¥Õ¬ Õ¡Õ½Õ¿Õ²Õ¡Õ¤Õ«Õ¿Õ¡Õ¯Õ¶ Õ¨Õ½Õ¿ Õ¶Õ·Õ¾Õ¡Õ® Õ¯Õ¸Õ¸Ö€Õ¤Õ«Õ¶Õ¡Õ¿Õ¶Õ¥Ö€Õ¶Õ¥Ö€Õ«" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Ô³Ö€Õ¾Õ¡Õ®Ö„Õ¶Õ¥Ö€" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Ô¿Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ´Õ¡Õ¶ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Ô±Õ´Õ½Õ¡Õ©Õ¾Õ«/ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ« ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Õ•Õ£Õ¶Õ¸Ö‚Õ©ÕµÕ¡Õ¶ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "ÕÕ¥Õ²Õ¡Õ¤Ö€Õ¸Ö‚Õ©ÕµÕ¡Õ¶ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "ÕˆÖ€Õ¸Õ¶Õ´Õ¡Õ¶ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "ÔµÖ€Õ¯Õ¶Ö„Õ« Õ¥Ö‚ Õ¤Õ«Õ¿Õ´Õ¡Õ¶ Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€Õ« ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶" @@ -3443,7 +3619,7 @@ msgstr "Ô¹Õ¡Ö€Õ´Õ¡ÖÕ¶Õ¥Õ¬" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "ÕÕ¥Õ²Õ¡Õ¤Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶" @@ -3459,10 +3635,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Õ‹Õ¶Õ»Õ¥Õ¬" @@ -3471,7 +3647,7 @@ msgstr "Ô±Õ¾Õ¥Õ¬Õ¡ÖÕ¶Õ¥Õ¬ ÖÕ¡Õ¶Õ¯Õ«Õ¶" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Ô¼Õ¡ÕµÕ¶Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨Õ" @@ -3484,12 +3660,12 @@ "Ö…Ö€Õ«Õ¶Õ¡Õ¯`+1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "ÔµÖ€Õ¯Õ¡ÕµÕ¶Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨Õ" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Ô²Õ¡Ö€Õ±Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨Õ" @@ -3513,363 +3689,407 @@ msgid "Planet:" msgstr "Õ„Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Ô±Õ¼Õ¡Ö€Õ¯Õ¡ÕµÕ« Õ¸Ö€Õ¸Õ¶Õ¸Ö‚Õ´" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "Õ«Õ¸Õ¿Õ¡" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "Õ¡Õ¬Ö†Õ¡" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "Õ¢Õ¥Õ¿Õ¡" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "Õ£Õ¡Õ´Õ¡" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "Õ¤Õ¥Õ¬Õ¿Õ¡" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "Õ§ÕºÕ½Õ«Õ¬Õ¸Õ¶" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "Õ±Õ¥Õ¿Õ¡" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "Õ§Õ¿Õ¡" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "Õ©Õ¥Õ¿Õ¡" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "Õ¯Õ¡ÕºÕºÕ¡" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "Õ¬Õ¡Õ´Õ¢Õ¤Õ¡" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "Õ´ÕµÕ¸Ö‚" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "Õ¶ÕµÕ¸Ö‚" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "Ö„Õ½Õ«" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "Ö…Õ´Õ«Õ¯Ö€Õ¸Õ¶" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "ÕºÕ«" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "Ö€Õ¸" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "Õ½Õ«Õ£Õ´Õ¡" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "Õ¿Õ¡Õ¸Ö‚" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "Õ«ÕºÕ½Õ«Õ¬Õ¸Õ¶" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "ÖƒÕ«" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "Õ­Õ«" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "ÖƒÕ½Õ«" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "Ö…Õ´Õ¥Õ£Õ¡" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "ÕˆÖ‚Õ²Õ²Õ¡Õ¯Õ« Õ®Õ¡Õ£Õ¸Ö‚Õ´Õ¨/Õ€Õ¡Õ¯Õ¸Ö‚Õ´Õ¨ (J2000)Õ" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Ô¸Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Ô¸Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Ô´Õ«Õ¿Õ¥Õ¬" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "ÔµÖ€Õ¯Õ«Õ¶Ö„" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Õ†Õ·Õ¡Õ¶Õ¶Õ¥Ö€" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Ô²Õ¶Õ¡ÕºÕ¡Õ¿Õ¯Õ¥Ö€" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Ô±Õ½Õ¿Õ²Õ¥Ö€ Õ£Õ«Õ¿Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "ÕŠÕ«Õ¿Õ¡Õ¯Õ¶Õ¥Ö€ Õ¥Ö‚ Õ¶Õ·Õ«Õ¹Õ¶Õ¥Ö€" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Õ„Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¶Õ¥Ö€" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Õ„Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¶Õ¥Ö€ Õ¥Ö‚ Õ¡Ö€Õ¢Õ¡Õ¶ÕµÕ¡Õ¯Õ¶Õ¥Ö€" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ´Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¶Õ¥Ö€Õ¨" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ´Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¶Õ¥Ö€Õ« Õ¶Õ·Õ«Õ¹Õ¶Õ¥Ö€Õ¨" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ´Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¶Õ¥Ö€Õ« Õ¸Ö‚Õ²Õ¥Õ®Õ«Ö€Õ¶Õ¥Ö€Õ¨" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "ÕÕ¥Ö‚Õ¡ÖÕ¶Õ¥Õ¬ Õ¬Õ¸Ö‚ÕµÕ½Õ« Õ¡Ö€Õ¡Õ£Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Ô¼Õ¸Ö‚Õ½Õ¶Õ« Õ½Õ¡Õ¶Õ²Õ¡Õ¯Õ¡Õ¾Õ¸Ö€Õ¸Ö‚Õ´" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ´Õ©Õ¶Õ¸Õ¬Õ¸Ö€Õ¿Õ¨" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Ô²Õ¡ÖÕ¡Ö€Õ±Õ¡Õ¯ Õ½Õ¡Õ¶Õ¤Õ²Õ¡Õ¯Õ" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Õ€Õ¡Ö€Õ¡Õ¢Õ¥Ö€Õ¡Õ¯Õ¡Õ¶ Õ½Õ¡Õ¶Õ¤Õ²Õ¡Õ¯Õ" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Ô±Õ¼Õ¯Õ¡ÕµÕ®Õ¸Ö‚Õ´Õ¨Õ" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Ô½Õ¬Õ¡ÖÕ¶Õ¥Õ¬ Õ¸Õ¹ ÕºÕ¡ÕµÕ®Õ¡Õ¼ Õ¡Õ½Õ¿Õ²Õ¥Ö€Õ¨Õ Õ·Õ¡Õ¿ ÕºÕ¡ÕµÕ®Õ¡Õ¼ Õ¡Õ¼Õ¡Ö€Õ¯Õ¡ Õ¿Õ¥Õ½Õ¡Õ¶Õ¥Õ¬Õ«Õ½" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Ô¶Õ£Õ¡ÕµÕ¸Ö‚Õ¶Õ¸Ö‚Õ©ÕµÕ¡Õ¶ Õ°Õ¡Ö€Õ¡Õ·Õ¡Ö€Õª Õ°Õ¡Ö€Õ´Õ¡Ö€Õ¥ÖÕ¸Ö‚Õ´" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Ô±Õ½Õ¸Ö‚ÕºÕ¶Õ¥Ö€" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Õ€Õ¡Õ´Õ¡Õ½Õ¿Õ¥Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ£Õ®Õ¥Ö€Õ¨" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ¡Õ¶Õ¾Õ¡Õ¶Õ¸Ö‚Õ´Õ¶Õ¥Ö€Õ¨" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ½Õ¡Õ°Õ´Õ¡Õ¶Õ¶Õ¥Ö€Õ¨" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ ÕºÕ¡Õ¿Õ¯Õ¥Ö€Õ¶Õ¥Ö€Õ¨" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ÔµÖ€Õ¯Õ¶Õ¡ÕµÕ«Õ¶ Õ¸Õ¬Õ¸Ö€Õ¿" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Õ†Õ¡Õ­Õ¡Õ£Õ®Õ¸Ö‚Õ´Õ¶Õ¥Ö€" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Ô±Õ¾Õ¥Õ¬Õ¡ÖÕ¶Õ¥Õ¬/Õ»Õ¶Õ»Õ¥Õ¬ Õ¢Õ¶Õ¡ÕºÕ¡Õ¿Õ¯Õ¥Ö€Õ¶Õ¥Ö€..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ£Õ¥Õ¿Õ«Õ¶Õ¨" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ´Õ·Õ¸Ö‚Õ·Õ¨" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Õ•Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¥Õ¬ Õ°Õ¡Õ´Õ¡ÕºÕ¡Õ¿Õ¡Õ½Õ­Õ¡Õ¶ Õ´Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¶ Õ¥Ö‚ Õ¤Õ«Ö€Ö„Õ¨" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Õ•Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¥Õ¬ Õ¡ÕµÕ½ Õ¢Õ¶Õ¡ÕºÕ¡Õ¿Õ¯Õ¥Ö€Õ¨ Õ¬Õ¼Õ¥Õ¬ÕµÕ¡ÕµÕ¶" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Õ•Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¥Õ¬ Õ¥Ö€Õ¯Õ¶Ö„Õ« Õ¡ÕµÕ½ Õ´Õ·Õ¡Õ¯Õ¸Ö‚ÕµÕ©Õ¨ Õ¬Õ¼Õ¥Õ¬ÕµÕ¡ÕµÕ¶" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "ÕÕ¥Õ½Õ¡Õ¶Õ¥Õ¬Õ«" @@ -3922,7 +4142,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Õ€Õ¡ÕµÕ¡ÖÖ„Õ« Õ¸Ö‚Õ²Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨Õ StellariumÖŠÕ¨ Õ£Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¥Õ¬Õ¸Ö‚ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "ÕÕ¥Õ²Õ¥Õ¯Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶ Õ¨Õ¶Õ¿Ö€Õ¾Õ¡Õ® Õ¡Õ¼Õ¡Ö€Õ¯Õ¡ÕµÕ« Õ´Õ¡Õ½Õ«Õ¶" @@ -3938,11 +4158,8 @@ msgid "Display no information" msgstr "Õ‘Õ¸Ö‚Ö Õ¹Õ¿Õ¡Õ¬ Õ¿Õ¥Õ²Õ¥Õ¯Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "ÕˆÕ¹ Õ´Õ¥Õ¯Õ¨" @@ -4084,7 +4301,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "ÕÕ¯Õ¦Õ¢Õ¶Õ¡Õ¯Õ¡Õ¶ Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¶ Õ¥Ö‚ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ¨" @@ -4096,41 +4313,45 @@ msgid "Other:" msgstr "Ô±ÕµÕ¬Õ" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "Ö…Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¥Õ¬ Õ¨Õ¶Õ©Õ¡ÖÕ«Õ¯Õ¨" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Ô³Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¥Õ¬ StellariumÖŠÕ¨ Õ¶Õ·Õ¾Õ¡Õ® Ö…Ö€Õ¨ Õ¥Ö‚ ÕªÕ¡Õ´Õ«Õ¶" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Õ€Õ¡Õ´Õ¡Õ¯Õ¡Ö€Õ£Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¶ Õ¥Ö‚ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ¨" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "Ô¿Õ¡ÕµÕ¥Õ¬ Õ°Õ¥Õ¿Õ¥Ö‚ÕµÕ¡Õ¬ Ö…Ö€Õ¾Õ¡ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Õ¨Õ StellariumÖŠÕ¨ Õ£Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Õ€Õ¡Õ´Õ¡Õ¯Õ¡Ö€Õ£Õ« Õ¡Õ´Õ½Õ¡Õ©Õ«Õ¾Õ¨Õ" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "ÕŠÕ¬Õ¡Õ¶Õ¥Õ¿Õ¡Ö€Õ«Õ¸Ö‚Õ´Õ« Õ¨Õ¶Õ¿Ö€Õ¡Õ¶Ö„Õ¶Õ¥Ö€Õ¨" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4138,51 +4359,51 @@ "Ô¿Õ¸Ö€Õ¶Õ©Õ¡Ö€Õ¤ Õ°Õ¡ÕµÕ¥Õ¬Õ¸Ö‚ Õ¡Õ²Õ¡Õ¾Õ¡Õ²Õ¸Ö‚Õ´Õ¶ Ö…Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¾Õ¸Ö‚Õ´ Õ§ Õ¸Õ¹ Õ©Õ¡Õ¶Õ¯ ÕºÕ¬Õ¡Õ¶Õ¥Õ¿Õ¡Ö€Õ«Õ¸Ö‚Õ´Õ¶Õ¥Ö€Õ« " "Õ°Õ¡Õ´Õ¡Õ¯Õ¡Ö€Õ£Õ¶Õ¥Ö€Õ¸Ö‚Õ´Õ StellariumÖŠÕ¨ Õ¯Õ¸Ö€Õ¶Õ©Õ¡Ö€Õ¤ Õ°Õ¡ÕµÕ¥Õ¬Õ¸Ö‚ Õ¾Ö€Õ¡ ÕºÖ€Õ¸ÕµÕ¥Õ¯ÖÕ¥Õ¬Õ¸Ö‚ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯Ö‰" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Ô¿Õ¸Ö€Õ¶Õ©Õ¡Ö€Õ¤ Õ°Õ¡ÕµÕ¥Õ¬Õ¸Ö‚ Õ¡Õ²Õ¡Õ¾Õ¡Õ²Õ¸Ö‚Õ´Õ¨" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Ô´Õ«Õ´Õ¡Õ¯Õ¡Õ¾Õ¸Ö€Õ¥Õ¬ Õ¡ÕµÕ¶ Õ¢Õ¸Õ¬Õ¸Ö€Õ¨, Õ«Õ¶Õ¹Õ¨ Õ£Õ¿Õ¶Õ¾Õ¸Ö‚Õ´ Õ§ Õ¯Õ¥Õ¶Õ¿Ö€Õ¸Õ¶Õ¡Õ¯Õ¡Õ¶ Õ¿Õ¥Õ½Õ¡Õ¤Õ¡Õ·Õ¿Õ«Ö Õ¤Õ¸Ö‚Ö€Õ½" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "ÕÕ¯Õ¡Õ¾Õ¡Õ¼Õ¡Õ¯Õ¡Õ±Õ¥Ö‚ Õ¿Õ¥Õ½Õ¡Õ¤Õ¡Õ·Õ¿" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Ô¹Õ¡Ö„ÖÕ¶Õ¥Õ¬ Õ°Õ¡Õ´Õ¡Õ½Õ¿Õ¥Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¨ Õ¯Õ¿Õ¿Õ¸ÖÕ« Õ¤Õ¥ÕºÖ„Õ¸Ö‚Õ´" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Ô¸Õ¶Õ¿Ö€Õ¥Õ›Ö„ Õ´Õ« Õ°Õ¡Õ´Õ¡Õ½Õ¿Õ¥Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Õ€Õ¡Õ¾Õ¡Õ½Õ¡Ö€Õ¥ÖÕ¶Õ¥Õ¬ Õ½Õ¿Õ¸Ö€Õ¡Õ£Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ¶ Õ¨Õ½Õ¿ Õ°Õ¸Ö€Õ«Õ¦Õ¸Õ¶Õ«" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "ÕˆÕ¹ Õ°Õ¸Ö€Õ«Õ¦Õ¸Õ¶Õ¡Õ¯Õ¡Õ¶ Õ½Õ¿Õ¸Ö€Õ¡Õ£Ö€Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Õ€Õ¸Ö€Õ«Õ¦Õ¸Õ¶Õ¡Õ¯Õ¡Õ¶ Õ¥Ö‚ Õ¸Ö‚Õ²Õ²Õ¡Õ±Õ«Õ£ Õ·Ö€Õ»Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€ Õ¯Õ¸Õ³Õ¡Õ¯Õ¶Õ¥Ö€Õ¨Ö‰" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ·Ö€Õ»Õ¥Õ¬Õ¸Ö‚ Õ¯Õ¸Õ³Õ¡Õ¯Õ¶Õ¥Ö€Õ¨" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4190,92 +4411,98 @@ "ÔµÕ©Õ¥ Õ´Õ«Õ¡ÖÕ¾Õ¡Õ® Õ§, Õ«Õ¶Ö„Õ¶Õ¡ÖƒÕ¸Ö„Ö€Õ¡ÖÕ´Õ¡Õ¶ Õ½Õ¿Õ¥Õ²Õ¶Õ¨ Õ¶Õ¡Õ¥Ö‚ Õ¯Õ¡ÕµÕ¸Ö‚Õ´ Õ§ Õ¤Õ«Õ¿Õ¥Õ¬Õ¸Ö‚ Õ½Õ¯Õ¦Õ¢Õ¶Õ¡Õ¯Õ¡Õ¶ " "Õ¸Ö‚Õ²Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Ô»Õ¶Ö„Õ¶Õ¡ÖƒÕ¸Ö„Ö€Õ¡ÖÕ¸Ö‚Õ´Õ¨ Õ¯Õ¡ÕµÕ¸Ö‚Õ´ Õ§ Õ¤Õ«Õ¿Õ¥Õ¬Õ¸Ö‚ Õ½Õ¯Õ¦Õ¢Õ¶Õ¡Õ¯Õ¡Õ¶ Õ¸Ö‚Õ²Õ²Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¨" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Õ‘Õ¸Ö‚ÖÕ¡Õ¤Ö€Õ«Õ¹Õ« Õ¶Õ¯Õ¡Ö€Õ¶Õ¥Ö€Õ¨" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Õ‘Õ¸Ö‚ÖÕ¡Õ¤Ö€Õ«Õ¹Õ« Õ¶Õ¯Õ¡Ö€Õ¶Õ¥Ö€Õ« ÕºÕ¡Õ¶Õ¡Õ¯Õ¨" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Õ€Õ¡Õ¯Õ¡Õ¤Õ¡Ö€Õ±Õ¥Õ¬ Õ£Õ¸Ö‚ÕµÕ¶Õ¥Ö€Õ¨" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Ô±Õ½Õ¿Õ²Õ¥Ö€Õ« Õ£Ö€Õ¡ÖÕ¸Ö‚ÖÕ¡Õ¯Õ« Õ©Õ¡Ö€Õ´Õ¡ÖÕ¸Ö‚Õ´" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Õ†Õ¥Ö€Õ¢Õ¥Õ¼Õ¶Õ¥Õ¬Õ¸Ö‚ Õ°Õ¡Õ´Õ¡Ö€ Õ¯Õ¿Õ¿Õ¡ÖÖ€Õ¥Ö„ Õ¡ÕµÕ½Õ¿Õ¥Õ²" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Õ†Õ¥Ö€Õ¢Õ¥Õ¼Õ¶Õ¥Õ›Ö„ Õ¡ÕµÕ½ Õ¶Õ·Õ¸ÖÕ¨, Õ¸Ö€ÕºÕ¥Õ½Õ¦Õ« Õ¿Õ¥Õ½Õ¶Õ¥Õ¬ Õ¡Õ¾Õ¥Õ¬Õ« Õ·Õ¡Õ¿ Õ¡Õ½Õ¿Õ²Õ¥Ö€" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "ÕŽÕ¥Ö€Õ¡Õ£Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¥Õ¬ Õ¶Õ¥Ö€Õ¢Õ¥Õ¼Õ¶Õ¸Ö‚Õ´Õ¨" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Ô¿Ö€Õ¯Õ¶Õ¥Õ¬" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Ô¿Õ¡Õ¶Õ£Õ¶Õ¥ÖÕ¶Õ¥Õ¬ Õ¶Õ¥Ö€Õ¢Õ¥Õ¼Õ¶Õ¸Ö‚Õ´Õ¨Ö‰ Ô´Õ¸Ö‚Ö„ Õ¯Õ¡Ö€Õ¸Õ² Õ¥Ö„ Õ¾Õ¥Ö€Õ¡Õ£Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¥Õ¬ Õ¡ÕµÕ¶ Õ°Õ¥Õ¿Õ¸" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Õ‰Õ¥Õ²Õ¡Ö€Õ¯Õ¥Õ¬" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Õ“Õ¡Õ¯Õ¥Õ¬ ÕºÕ¡Õ¿Õ¸Ö‚Õ°Õ¡Õ¶Õ¨ Õ£Ö€Õ¾Õ¡Õ®Ö„Õ« Õ¡Õ·Õ­Õ¡Õ¿Õ¥Õ¬Õ¸Ö‚ ÕªÕ¡Õ´Õ¡Õ¶Õ¡Õ¯" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Ô¸Õ¶Õ¿Ö€Õ¾Õ¡Õ® Õ£Ö€Õ¾Õ¡Õ®Ö„Õ« Õ£Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¸Ö‚Õ´" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Ô¿Õ¡Õ¶Õ£Õ¶Õ¥ÖÕ¶Õ¥Õ¬ Õ£Ö€Õ¾Õ¡Õ®Ö„Õ« Õ¡Õ·Õ­Õ¡Õ¿Õ¡Õ¶Ö„Õ¨" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Ô²Õ¥Õ¼Õ¶Õ¥Õ¬ Õ£Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¥Õ¬Õ«Õ½" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "Õ¯Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¥Õ¬" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Ô³Õ¬Õ­Õ¡Õ¾Õ¸Ö€" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ÕÕ¥Õ²Õ¥Õ¯Õ¡Õ¿Õ¾Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Õ†Õ¡Õ¾Õ¡Ö€Õ¯Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Ô³Õ¸Ö€Õ®Õ«Ö„Õ¶Õ¥Ö€" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Ô²Õ¡Õ²Õ¡Õ¤Õ«Ö€Õ¶Õ¥Ö€" @@ -4446,176 +4673,176 @@ msgstr "" "Ô±ÕµÕ½ Õ¢Õ¡Õ²Õ¡Õ¤Õ«Ö€Õ¨ Õ©Õ¸Ö‚ÕµÕ¬ Õ§ Õ¿Õ¡Õ¬Õ«Õ½ ÖÕ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ¯Õ¸Õ²Õ´Õ¶Õ¡ÖÕ¸Ö‚ÕµÖÕ« Õ°Õ¡Õ¿Õ¾Õ¡Õ®Õ¡Õ´Õ¡Õ½Õ¥Ö€Õ¨ Õ°Õ¸Ö€Õ«Õ¦Õ¸Õ¶Õ« Õ´Õ¸Õ¿" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Ô±Õ¯Õ¶Õ¡ÕºÕ¡Õ¯Õ«Õ¶Õ¥Ö€" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4687,64 +4914,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4752,7 +4984,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4763,14 +4995,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4779,191 +5011,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Ô±Ö€Õ¢Õ¡Õ¶ÕµÕ¡Õ¯Õ¶Õ¥Ö€" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4971,116 +5212,176 @@ "Ô±ÕµÕ½ Õ¢Õ¡Õ²Õ¡Õ¤Õ«Ö€Õ¨ Õ©Õ¸Ö‚ÕµÕ¬ Õ§ Õ¿Õ¡Õ¬Õ«Õ½ Õ¯Õ¡Õ¶Õ­Õ¡Õ¿Õ¥Õ½Õ¥Õ¬ ÔµÖ€Õ¯Ö€Õ« Õ¡Ö€Õ°Õ¥Õ½Õ¿Õ¡Õ¯Õ¡Õ¶ ​​արբանյակների Õ¤Õ«Ö€Ö„Õ¨ " "Õ«Ö€Õ¥Õ¶Ö Õ¸Ö‚Õ²Õ¥Õ®Õ«Ö€Õ¶Õ¥Ö€Õ« Õ¾Ö€Õ¡Õ NORAD TLE Õ¿Õ¾ÕµÕ¡Õ¬Õ¶Õ¥Ö€Õ¸Õ¾" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Õ€Õ«Õ¶ satellites.json Õ¶Õ·Õ¸ÖÕ¶ Õ¡ÕµÕ¬Õ¥Ö‚Õ½ Õ°Õ¡Õ´Õ¡Õ¿Õ¥Õ²Õ¥Õ¬Õ« Õ¹Õ§. Ö…Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¾Õ¸Ö‚Õ´ Õ§ Õ¬Õ¼Õ¥Õ¬ÕµÕ¡ÕµÕ¶ Õ¶Õ·Õ¸ÖÕ¨" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5088,25 +5389,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5114,17 +5415,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5132,41 +5433,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5174,338 +5477,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5541,22 +5887,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Ô±Õ½Õ¿Õ²Õ¡Õ¤Õ«Õ¿Õ¡Õ¯Õ« Õ¯Õ¡Õ¼Õ¡Õ¾Õ¡Ö€Õ¸Ö‚Õ´" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "ÕˆÖ‚Õ²Õ²Õ¥Õ¬ #%1 Õ¡Õ½Õ¿Õ²Õ¡Õ¤Õ«Õ¿Õ¡Õ¯Õ¶ Õ¤Õ¥ÕºÕ« Õ¨Õ¶Õ¿Ö€Õ¾Õ¡Õ® Õ¡Õ¼Õ¡Ö€Õ¯Õ¡" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "ÕˆÖ‚Õ²Õ²Õ¥Õ¬ #%1 Õ¡Õ½Õ¿Õ²Õ¡Õ¤Õ«Õ¿Õ¡Õ¯Õ¨ Õ¤Õ¥ÕºÕ« Õ¯Õ¥Õ¶Õ¿Ö€Õ¸Õ¶Õ¸Ö‚Õ´ Õ£Õ¿Õ¶Õ¾Õ¸Õ² Õ¯Õ¥Õ¿" @@ -5942,62 +6288,62 @@ "ÖƒÕ¸ÖƒÕ¸Õ­Õ´Õ¡Õ¶ Õ¥Õ²Õ¡Õ¶Õ¡Õ¯Õ¨Õ Õ¶Õ¥Ö€Ö„Õ¥Ö‚Õ« Õ¾Õ¡Õ°Õ¡Õ¶Õ¡Õ¯Õ¸Ö‚Õ´ ÖÕ¸Ö‚ÖÕ¡Õ¤Ö€Õ¾Õ¸Õ² Õ¡Õ´Õ½Õ¡Õ©Õ¾Õ« Õ¥Ö‚ ÕªÕ¡Õ´Õ« Õ°Õ¡Õ´Õ¡Ö€Ö‰" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6151,7 +6497,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6169,7 +6515,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6185,11 +6531,11 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Õ•Õ£Õ¿Õ¾Õ¸Õ²Õ« Õ¿Õ¥Ö„Õ½Õ¿Õ¡ÕµÕ«Õ¶ Õ´Õ«Õ»Õ¥Ö€Õ¥Õ½" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6197,144 +6543,144 @@ "Ô±ÕµÕ½ Õ¢Õ¡Õ²Õ¡Õ¤Õ«Ö€Õ¨ Õ°Õ¡Õ¶Õ¤Õ«Õ½Õ¡Õ¶Õ¸Ö‚Õ´ Õ§ Ö…Õ£Õ¿Õ¾Õ¸Õ²Õ« Õ¿Õ¥Ö„Õ½Õ¿Õ¡ÕµÕ«Õ¶ Õ´Õ«Õ»Õ¥Ö€Õ¥Õ½Õ« Õ«Ö€Õ¡Õ¯Õ¡Õ¶Õ¡ÖÕ¸Ö‚Õ´Õ¨ 0.9.x " "Õ·Õ¡Ö€Ö„Õ«Ö, Õ¸Ö€Õ¶ Ö…Õ£Õ¿Õ¡Õ£Õ¸Ö€Õ®Õ¾Õ¸Ö‚Õ´ Õ§ ÕºÕ¬Õ¡Õ¶Õ¥Õ¿Õ¡Ö€Õ«Õ¸Ö‚Õ´Õ¶Õ¥Ö€Õ¸Ö‚Õ´" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Ô¼Õ¥Õ¦Õ¸Ö‚Õ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6371,22 +6717,22 @@ "Õ£Õ¿Õ¶Õ¾Õ¸Ö‚Õ´ Õ§ Õ´Õ·Õ¡Õ¯Õ´Õ¡Õ¶ Õ¨Õ¶Õ©Õ¡ÖÖ„Õ¸Ö‚Õ´Ö‰" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6555,36 +6901,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6602,7 +6955,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6616,14 +6969,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6631,8 +6984,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6650,29 +7004,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6688,51 +7119,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6852,11 +7293,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6864,137 +7305,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "Õ¡.Õ´." -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7002,49 +7447,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7060,185 +7594,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "Ö€" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7610,9 +8138,15 @@ #~ msgid "When a Script is Running" #~ msgstr "ÔµÖ€Õ¢ Õ£Ö€Õ¾Õ¡Õ®Ö„Õ¨ Õ£Õ¸Ö€Õ®Õ¡Ö€Õ¯Õ¾Õ¡Õ® Õ§" +#~ msgid "Nebulas background images" +#~ msgstr "Õ„Õ«Õ£Õ¡Õ´Õ¡Õ®Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€Õ« Õ°Õ¥Õ¿Õ«Õ¶ Õ­Õ¸Ö€Ö„Õ¨" + #~ msgid "Planets labels" #~ msgstr "Õ„Õ¸Õ¬Õ¸Ö€Õ¡Õ¯Õ¶Õ¥Ö€Õ« ÕºÕ«Õ¿Õ¡Õ¯Õ¶Õ¥Ö€" +#~ msgid "Nebulas" +#~ msgstr "Õ„Õ«Õ£Õ¡Õ´Õ¡Õ®Õ¸Ö‚Õ©ÕµÕ¸Ö‚Õ¶Õ¶Õ¥Ö€" + #~ msgid "Set Time Zone: " #~ msgstr "Ô¿Õ¡ÕµÕ¥Õ¬ ÕªÕ¡Õ´Õ¡ÕµÕ«Õ¶ Õ£Õ¸Õ¿Õ«Õ¶Õ " diff -Nru stellarium-0.12.1/po/stellarium/ia.po stellarium-0.12.4/po/stellarium/ia.po --- stellarium-0.12.1/po/stellarium/ia.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ia.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2010-05-07 20:12+0000\n" "Last-Translator: Fabien Chéreau \n" "Language-Team: Interlingua \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:15+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:49+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Position: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Typo: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitude: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Mesura: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxia" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Incogite" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distantia: %1UA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Typo spectral: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distantia: %1 anno de lumine" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/id.po stellarium-0.12.4/po/stellarium/id.po --- stellarium-0.12.1/po/stellarium/id.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/id.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2012-10-24 04:33+0000\n" -"Last-Translator: Alexander Wolf \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-08 11:13+0000\n" +"Last-Translator: Ardian Wardhana \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:15+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:49+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekuator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Cakrawala" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Bidang Galaksi" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Pembuat: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Lokasi: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Jenis: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitudo: %1 (terekstingsi menjadi: %2" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitudo: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Ukuran: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaksi" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Gugus terbuka" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Gugus bola" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebula" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebula planeter" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "Nebula Gelap" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Gugus yang terkait dengan nebula" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Tidak diketahui" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Tipe tidak terdokumentasi" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitudo Mutlak: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Toposentris ekliptika (saat ini): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Kemiringan (saat ini, untuk Bumi): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Jarak: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Jarak: %1SA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diameter tampak: %1, dengan cincin: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diameter tampak: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Periode sideris: %1 hari (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Hari sideris: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Wakti Matahari menengah: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Sudut Fase: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongasi: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Medan sinaran: %1" @@ -204,10 +204,10 @@ msgstr "Nama sementara: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" -msgstr "" +msgstr "bintang" #: src/core/modules/StarWrapper.cpp:57 #, qt-format @@ -219,63 +219,145 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnitudo Semu: %1 (oleh ekstingsi)" -#: src/core/modules/StarWrapper.cpp:120 -msgid "double star" +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "bintang variabel eruptif" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "Bintang variabel berdenyut" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "Bintang variabel berotasi" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "sistem bintang ganda gerhana" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "Bintang variabel" + +#: src/core/modules/StarWrapper.cpp:156 +msgid "double star" +msgstr "Bintang ganda" + +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Ketik: %1,%2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" "Magnitudo: %1 (terekstingsi menjadi: %2, B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitudo: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Jangjauan magnitudo: %1%2%3 (Sistem fotometri: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Jangjauan magnitudo: %1%2%3/%4 (Sistem fotometri: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Tipe Spektral: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Jarak: %1 Tahun Cahaya" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaks: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Periode: %1 hari" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Sinar minimal berikutnya : %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Sinar maksimal berikutnya: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Durasi gerhana: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Waktu terbit: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Wahana antariksa" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" +"Pembetulan tidak dinyalakan. Gunakan hanya jika kamu mengerti apa yang kamu " +"lakukan" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " "Henriksson in his article Einstein's Theory of Relativity Confirmed by " "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" +"Formula kuno ini ditemukan C. Schoch pada 1931 dan digunakan G. Henrikson " +"pada artikelnya Teori Einstein Dibuktikan oleh Gerhana Matahari " +"Kuno (%1). Lihat keterangan lebih lanjut %2disini%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" +"Persamaan empiris ini diterbitkan oleh G.M. Clemence dalam artikel " +"Mengenai sistem konstanta astronomi (%1)" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,38 +365,51 @@ "Astronomical Formulae for Calculators. It was also adopted in the " "PC program SunTracker Pro." msgstr "" +"Formula ini didasarkan pada penelitian pengamatan Matahari, Bulan, dan " +"planet-planet oleh Spencer Jones (%1) selewat tahun 1950 dan digunakan oleh " +"Jean Meeus dalam Formula Astronomi untuk Kalkulator. Itu juga " +"digunakan dalam program PC SunTracker Pro" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" +"Ini adalah formula yang sudah sedikit dimodifikasi dari versi IAU (1952), " +"yang digunakan dalam Astronomical Ephemeris dan Canon of " +"Solar Eclipses oleh Mucke & Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " "relation was also implicitly adopted in the syzygy tables of Goldstine " "(1973)." msgstr "" +"Tabel Tuckerman (1962,1964) mendaftarkan posisi-posisi Matahari, Bulan, dan " +"planet-planet dalam selang waktu lima dan sepuluh hari dari tahun 601 SM " +"sampai tahun 1649 M. Hubungan yang sama juga digunakan secara implisit pada " +"tabel syzygy Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " "article The accelerations of the earth and moon from early astronomical " "observations (%1)." msgstr "" +"Persamaan ini diterbitkan oleh P.M. Muller dan F.R. Stephenson dalam artikel " +" Percepatan Bumi dan Bulan dari pengamatan Astronomi kuno (%1)" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -323,14 +418,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -338,25 +433,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -365,14 +460,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -380,42 +475,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -423,7 +518,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -431,7 +526,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -440,7 +535,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -450,45 +545,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Kesalahan" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -614,7 +726,7 @@ #: src/core/StelObject.cpp:111 #, qt-format msgid "Galactic longitude/latitude: %1/%2" -msgstr "" +msgstr "Bujur/lintang galaktik: %1/%2" #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:124 #: src/core/StelObject.cpp:127 @@ -656,52 +768,53 @@ msgid "Found" msgstr "Ditemukan" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Pilih direktori tangkapan layar" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Medan pandang saat mulai: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Arah pandang saat mulai Azimut/Ketinggian: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Pembuat" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontak" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Pembuat" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lisensi" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Skrip yang sedang berjalan: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Skrip yang sedang berjalan: [tidak ada]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -709,16 +822,16 @@ "Telah selesai mengunduh katalog bintang baru!\n" "Jalankan ulang Stellarium untuk menampilkannya." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Seluruh katalog bintang yang tersedia telah dipasang." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Ambil katalog %1 dari %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -727,7 +840,7 @@ "Mengunduh %1...\n" "(Anda dapat menutup jendela ini.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -738,7 +851,7 @@ "Jumlah bintang: %2 juta\n" "Kisaran magnitudo: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -747,11 +860,11 @@ "Kesalahan mengunduh %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Memverifikasi integritas berkas..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -761,115 +874,123 @@ "Berkas rusak." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" -msgstr "" +msgstr "Tanpa koreksi" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" -msgstr "" +msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" -msgstr "" +msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" -msgstr "" +msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" -msgstr "" +msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" -msgstr "" +msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" -msgstr "" +msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" -msgstr "" +msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" -msgstr "" +msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" -msgstr "" +msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" -msgstr "" +msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" -msgstr "" +msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" -msgstr "" +msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" -msgstr "" +msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" -msgstr "" +msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" -msgstr "" +msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" -msgstr "" +msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" -msgstr "" +msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -msgstr "" +msgstr "Meeus (1998) (dengan Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" -msgstr "" +msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" -msgstr "" +msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" -msgstr "" +msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" -msgstr "" +msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" -msgstr "" +msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" -msgstr "" +msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" -msgstr "" +msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1041,49 +1162,53 @@ msgid "OSX Developer: %1" msgstr "Pengembang OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Jendela konsol skrip" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Jendela" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Spasi" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Tidak ada penjelasan" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Tidak ada bintang jatuh" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Laju normal" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Laju Perseid standar" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Laju Leonid tinggi" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Laju tertinggi (Leonid 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Lokasi Baru" @@ -1187,25 +1312,25 @@ msgid "starchart" msgstr "peta bintang" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universitas Strasbourg (Perancis)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Universitas Harvard (USA)" #: src/gui/ShortcutsDialog.cpp:499 msgid "Action" -msgstr "" +msgstr "Tindakan" #: src/gui/ShortcutsDialog.cpp:500 src/ui_shortcutsDialog.h:198 msgid "Primary shortcut" @@ -1215,30 +1340,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" -msgstr "" +msgstr "tahun" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Sistem ini tidak mendukung OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Matahari" @@ -1255,12 +1386,12 @@ msgstr "Bumi" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Bulan" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1358,7 +1489,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturnus" @@ -1613,27 +1744,27 @@ #. TRANSLATORS: Type of object #: src/translations.h:153 msgid "planet" -msgstr "" +msgstr "planet" #. TRANSLATORS: Type of object #: src/translations.h:155 msgid "comet" -msgstr "" +msgstr "komet" #. TRANSLATORS: Type of object #: src/translations.h:157 msgid "asteroid" -msgstr "" +msgstr "asteroid" #. TRANSLATORS: Type of object #: src/translations.h:159 msgid "moon" -msgstr "" +msgstr "bulan" #. TRANSLATORS: Type of object #: src/translations.h:161 msgid "plutoid" -msgstr "" +msgstr "plutoid" #: src/translations.h:165 msgid "Arabic" @@ -1656,193 +1787,222 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korea" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norwegia" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinesia" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Barat" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Pepohonan" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Samudera" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Tur Pemandangan" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Gerhana Bulan Sebagian" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Gerhana Bulan Total" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Screensaver" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Gerhana Matahari 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiak" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Gerhana ganda dari Deimos pada 2007" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Gerhana ganda dari Deimos pada 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Matahari dilihat dari planet lain" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Transit Venus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemna" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Lihat seluruh pemandangan yang terpasang." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skrip untuk mendemonstrasikan gerhana Bulan sebagian." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skrip untuk mendemonstrasikan gerhana Bulan total." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Melihat-lihat langit secara acak." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1850,11 +2010,11 @@ "Skrip untuk mendemonstrasikan gerhana Matahari total pada tahun 2009 di " "Rangpur, Bangladesh." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skrip yang jalan secara otomatis saat startup." -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1863,36 +2023,36 @@ "Skrip i ni menampilkan rasi-rasi zodiak, yaitu rasi-rasi yang terletak di " "garis ekliptika pada bola langit." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1902,1502 +2062,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Uni Emirat Arab" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua dan Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Antillen Belanda" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antartika" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa Amerika" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaijan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia dan Herzegowina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgia" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahama" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Pulau Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Belarusia" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kepulauan Cocos" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Republik Demokratik Kongo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Republik Afrika Tengah" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republik Kongo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Swiss" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Pantai Gading" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Kepulauan Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Cina" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Kosta Rika" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia dan Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Tanjung Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Pulau Christmas" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Siprus" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Repulik Czech" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Jerman" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Denmark" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominika" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Republik Dominika" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Aljazair" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Mesir" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Sahara Barat" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spanyol" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Ethiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlandia" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Kepulauan Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Kepulauan Falkland" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Kepulauan Faroe" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Perancis" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Inggris Raya" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guyana Perancis" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Greenland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Guinea Khatulistiwa" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Yunani" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Kepulauan Georgia Selatan dan Sandwich Selatan" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Pulau Heard dan Kepulauan McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Kroasia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hungaria" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlandia" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Wilayah Samudra Hindia Inggris" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islandia" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaika" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Yordania" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Jepang" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kamboja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komoro" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts dan Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Republik Demokrat Rakyat Korea (Korea Utara)" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Republik Korea (Korea Selatan)" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kepulauan Cayman" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Lebanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Santa Lusia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lithuania" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luksemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maroko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Kepulauan Marshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Makau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Kepulauan Mariana Utara" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maladewa" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Meksiko" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaysia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Kaledonia Baru" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Pulau Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nikaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Belanda" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norwegia" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Selandia Baru" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinesia Perancis" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Nugini" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipina" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polandia" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre dan Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Wilayah Palestina" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Federasi Rusia" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Arab Saudi" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Kepulauan Solomon" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Swedia" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapura" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Saint Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard dan Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovakia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tome dan Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Republik Arab Suriah" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Kepulauan Turks dan Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Chad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Wilayah Perancis Selatan" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailand" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tajikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Timor Timur" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turki" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad dan Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Kepulauan Kecil Luar Amerika Serikat" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Amerika Serikat" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikan" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "St. Vincent dan The Grenadines" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Kepulauan Virgin Inggris" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Kepulauan Virgin Amerika Serikat" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis dan Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yaman" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Yugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Afrika Selatan" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Tanggal dan Waktu" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Tambah 1 hari sideris" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Tambah 1 bulan sideris" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Tambah 1 minggu sideris" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Tambah 1 tahun sideris" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Tambah 1 hari surya" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Tambah 1 jam surya" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Tambah 1 minggu surya" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Tambahkan 1 bulan sinodis" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Tambahkan 1 bulan drakonis" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Tambah 1 bulan anomalistik" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Tambah 1 bulan tropikal" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Tambah 1 tahu tropikal" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Pelankan laju eksekusi skrip" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Perlambat waktu" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Perlambat waktu (sedikit)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Percepat laju eksekusi skrip" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Percepat waktu" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Percepat waktu (sedikit)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Henti sela pelaksanaan skrip" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Lanjutkan pelaksanaan skrip" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Atur waktu ke sekarang" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Atur laju eksekusi skrip ke normal" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Atur laju waktu ke normal" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Atur kecepatan waktu ke nol" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Hentikan pelaksanaan skrip" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Kurangi 1 hari sideris" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Kurangi 1 bulan sideris" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Kurangi 1 minggu sideris" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Kurangi 1 tahun sideris" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Kurangi 1 hari surya" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Kurangi 1 jam surya" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Kurangi 1 minggu surya" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Kurangi 1 bulan sinodis" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Kurangi 1 bulan drakonis" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Kurangi 1 bulan anomalistik" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Kurangi 1 bulan tropikal" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Kurangi 1 tahun drakonis" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Kurangi 1 tahun tropikal" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Opsi Tampilan" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Balikkan pemandangan secara horizontal" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Modus layar-penuh" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfer" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Grid azimutal" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Titik mata angin" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Seni rasi bintang" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Batas rasi bintang" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Label rasi bintang" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Garis rasi bintang" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Citra latar belakang nebula" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Kisi ekliptik J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Garis ekliptika" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Garis ekuator" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Grid ekuatorial" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Grid ekuatorial J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Kabut" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Grid galaksi" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Bidang galaksi" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Tanah" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Garis cakrawala" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Garis meridian" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebula" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Modus malam" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Nama planet" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Orbit planet" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Rute Planet" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Bintang" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Nama bintang" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Balikkan pemandangan secara vertikal" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Lain-lain" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Sembunyikan otomatis barisan tombol horizontal" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Sembunyikan otomatis barisan tombol vertikal" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Kembali ke awal" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Keluar" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Salin informasi objek terpilih" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Simpan tangkapan layar" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Tukar antara puncak ekuatorial dan azimutal" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Ubah visibilitas antarmuka" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Pergerakan dan Pemilihan" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Pusatkan pada objek yang dipilih" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Atur planet rumah ke planet yang dipilih" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Lacak objek" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Perbesar pada objek yang dipilih" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Perkecil" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Ukuran sudut" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Sudut kompas" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Perlihatkan eksoplanet" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Jendela pengaturan eksoplanet" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observabilitas" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Jendela pengaturan observabilitas" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Pengaturan plugin okuler" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Penglihatan okuler" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Perlihatkan crosshair" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Menu pop-up okuler" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Frame sensor citra" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Finder Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Jendela pengatura pulsar" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Jendela pengatura quasar" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Jendela pengaturan satelit" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Saran satelit" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Nama satelit" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Jendela pengaturan supernova historis" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Gerakkan teleskop ke koordinat tertentu" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skrip" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Perlihatkan dan perbesar Bulan" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Jendela konfigurasi" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Jendela tanggal/waktu" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Jendela bantuan" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Jendela lokasi" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Jendela pencarian" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Jendela jalan pintas" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Jendela opsi langit dan pandangan" @@ -3423,7 +3619,7 @@ msgstr "Segarkan" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Lokasi" @@ -3439,10 +3635,10 @@ msgid "Return to default" msgstr "Kembali ke pengaturan awal" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Hapus" @@ -3451,7 +3647,7 @@ msgstr "Tambahkan ke daftar" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Lintang:" @@ -3464,12 +3660,12 @@ "dms, sebagai contoh: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Bujur:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Ketinggian:" @@ -3493,363 +3689,407 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Cari Objek" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Temukan Objek atau Posisi" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Abjad Yunani untuk penamaan Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objek" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posisi" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "Nama Inggris" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Cari di daftar..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Daftar" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Basis data astronomi dalam jaringan SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Pencarian lanjutan dengan SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Opsi" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "Nama Inggris" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Cari di daftar..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Daftar" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Pandangan" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Langit" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Penanda" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Lanskap" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Budaya" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Label dan Penanda" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planet" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planet dan satelit" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Tampilkan planet" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Tampilkan penanda planet" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Tampilkan orbit planet" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulasikan kecepatan cahaya" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Sesuaikan skala Bulan" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Tampilkan atmosfer" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Polusi udara:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "tekanan, temperatur, koefisien pemadaman" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Pengaturan Pembiasan/Pemadaman..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Skala mutlak:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Skala relatif:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Kelipan:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Redupkan bintang lemah saat objek yang sangat terang terlihat" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adaptasi mata dinamis" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Bintang Jatuh" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Rasi Bintang" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Tampilkan garis" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Tampilkan label" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Tampilkan batas" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Tampilkan seni" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Kecerahan gambar:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Bola Langit" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Tampilkan garis ekuator" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Tampilkan garis meridian" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Tampilkan garis cakrawala" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Tampilkan garis ekliptika" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Tampilkan garis bidang galaksi" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Proyeksi" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Pasang/hapus lanskap" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Tampilkan tanah" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Tampilkan kabut" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Gunakan hubungan antara planet dan posisinya" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Gunakan lanskap ini sebagai standar" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Gunakan budaya langit ini sebagai standar" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Tampak" @@ -3904,7 +4144,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Arah pandang anda saat Stellarium mulai" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informasi objek yang dipilih" @@ -3920,11 +4160,8 @@ msgid "Display no information" msgstr "Tampilkan tanpa informasi" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Tidak ada" @@ -4066,7 +4303,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Tanggal dan waktu saat mulai" @@ -4078,19 +4315,23 @@ msgid "Other:" msgstr "Lain:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "gunakan saat ini" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Mulai Stellarium pada tanggal dan waktu sistem" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Tanggal dan waktu sistem" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4098,23 +4339,23 @@ "Atur waktu simulasi ke yang berikutnya dari waktu hari ini saat Stellarium " "mulai" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Tanggal sistem pada:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Opsi planetarium" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4122,52 +4363,52 @@ "Distorsi cermin sferis digunakan saat memproyeksikan Stellarium ke sebuah " "cermin sferis untuk sistem planetarium berbiaya rendah." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Distorsi cermin sferis" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" "Sembunyikan semua yang berada di luar lingkaran pusat pada tampilan utama" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Batas pandang disk" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Sembunyikan rasi bintang lainnya ketika anda mengklik salah satu" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Pilih satu rasi bintang" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Sejajarkan label dengan horizon" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Label gravitasi" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Beralih tampilkan latarbelakang nebula" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Ubah tombol pembalik citra vertikal dan horizontal." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Tampilkan tombol pembalik" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4175,93 +4416,99 @@ "Ketika diaktifkan, tombol \"pengecilan otomatis\" juga akan mengatur arah " "pandang awal" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Pengecilan otomatis mengembalikan ke arah pandang awal" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Tangkapan layar" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Direktori Tangkapan Layar" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Balikkan warna" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Pemutakhiran katalog bintang" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klik di sini untuk mulai mengunduh" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Unduh berkas ini untuk melihat lebih banyak bintang" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Jalankan lagi pengunduhan" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Coba lagi" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" "Hentikan pengunduhan. Anda bisa selalu mejalankannya lagi di lain waktu" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Batal" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Tutup jendela saat skrip berjalan" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Jalankan skrip yang dipilih" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Hentikan skrip yang sedang berjalan" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Muat saat mulai" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "atur" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Utama" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informasi" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigasi" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Peralatan" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Plugin" @@ -4435,12 +4682,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Menampilkan sudut kompas pada horizon" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okuler" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4450,164 +4697,164 @@ "perbesaran dan medan pandang yang disimulasikan.) Plugin ini juga dapat " "menampilkan medan pandang sensor dan Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Pilih sebuah objek sebelum mengaktifkan tampilan okular." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Okular sebelumnya" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Okular selanjutnya" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Pilih &okular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Atur &okular" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&CCD sebelumnya" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&CCD selanjutnya" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Pilih CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Putar CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Reset putaran" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okuler #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okuler #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Panjang fokus okuler: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Medan pandang tampak okular: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Pembesaran: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Medan pandang: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensi: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Teleskop sebelumnya" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Teleskop selanjutnya" @@ -4679,64 +4926,69 @@ msgid "Apparent field of view of the ocular" msgstr "Medan pandang tampak dari okular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotasi: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Perbesaran binokular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Medan pandang sebenarnya dari binokular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versi" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Pratijau" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4744,7 +4996,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4755,14 +5007,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4771,191 +5023,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Hanya aktifkan jika sebuah objek dipilih" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interface" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Umum" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Eyepiece" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Tambah" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nama:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "Medan pandang tampak" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Panjang fokus:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binokular" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensor" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Resolusi x (piksel):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Resolusi y (piksel):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Panjang sensor (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Lebar sensor (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Lebar piksel (mikron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Panjang piksel (mikron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskop" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diameter:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelit" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4963,116 +5224,176 @@ "Prakiraan posisi satelit buatan yang mengorbit Bumi berdasarkaan data NORAD " "TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "Berkas .json satelit lamaa tidak cocok - menggunakan berkas default" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Rentang (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Ketinggian (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satelit dapat terlihat." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satelit tidak dapat dilihat" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Plugin Satelit Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" "Plugin Satelit memprediksikan posisi satelit-satelit buatan di orbit Bumi." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Catatan untuk pengguna" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5080,7 +5401,7 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5089,18 +5410,18 @@ "komplit, hilang, atau bermasalah." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5108,17 +5429,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Menambahkan satelit-satelit baru" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5126,41 +5447,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Catatan teknis" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Tautan" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5168,325 +5491,368 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" "Jika Anda mempunyai pertanyaan, Anda dapat %1mendapatkan jawaban di sini%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Pemutakhiran melalui internet tidak aktif" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Update sekarang" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Update sekarang" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[semua]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Mengunduh data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Memproses data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Tak ada data yang dapat diunduh. Coba lagi nanti." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Konfigurasi Satelit" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Jumlah segmen:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Panjang segmen (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Kembalikan pengaturan semula" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Simpan pengaturan sebagai default" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Pengaturan" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Tambahkan satelit" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Hilangkan satelit-satelit yang dipilih" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Simpan perubahan" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Tampilkan satelit yang dipilih" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Ditampilkan" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Orbit" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Deskripsi:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Kelompok:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Hilangkan satelit-satelit yang dipilih" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Tambahkan satelit" - -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Simpan perubahan" - -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5494,15 +5860,15 @@ "Masukkan atau ubah URL dari sumber yang dipilih. Perubahan disimpan dengan " "menekan Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "TAmbah sumber baru" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Hilangkan sumber yang dipilih" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Sumber" @@ -5538,11 +5904,11 @@ msgid "Discard" msgstr "Buang" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Kontrol Teleskop" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5550,12 +5916,12 @@ "Plug-in ini memungkinkan Stellarium untuk mengirimkan perintah \"slew\" ke " "teleskop GoTo." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Arahkan teleskop #%1 ke objek terpilih." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5938,62 +6304,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6147,7 +6513,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6165,7 +6531,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6181,154 +6547,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Antar Muka Teks" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Bahasa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Garis bidang galaksi" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6361,22 +6727,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6545,36 +6911,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6592,7 +6965,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6606,14 +6979,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6621,8 +6994,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6640,29 +7014,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6678,51 +7129,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6842,11 +7303,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6854,137 +7315,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "SA" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6992,49 +7457,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7050,185 +7604,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7350,7 +7898,7 @@ #: plugins/Observability/src/gui/ObservabilityDialog.cpp:112 msgid "Full Moon:" -msgstr "" +msgstr "Bulan purnama:" #: plugins/Observability/src/gui/ObservabilityDialog.cpp:112 msgid "" @@ -7363,7 +7911,7 @@ #: plugins/Observability/src/gui/ObservabilityDialog.cpp:225 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:232 msgid "deg." -msgstr "" +msgstr "derajat" #: plugins/Observability/src/ui_ObservabilityDialog.h:359 msgid "Observability Configuration" @@ -7399,7 +7947,7 @@ #: plugins/Observability/src/ui_ObservabilityDialog.h:370 msgid "Font color and size" -msgstr "" +msgstr "Warna dan ukuran font" #: plugins/Observability/src/ui_ObservabilityDialog.h:371 msgid "Red" @@ -7419,11 +7967,11 @@ #: plugins/Observability/src/ui_ObservabilityDialog.h:375 msgid "Observing conditions" -msgstr "" +msgstr "Kondisi pengamatan" #: plugins/Observability/src/ui_ObservabilityDialog.h:376 msgid "Horizon altitude: 0 deg." -msgstr "" +msgstr "Ketinggian horizon: 0 derajat" #: plugins/Observability/src/ui_ObservabilityDialog.h:377 msgid "Sun altitude at twilight: 0 deg." @@ -7522,6 +8070,9 @@ #~ msgid "10000" #~ msgstr "10000" +#~ msgid "Nebulas background images" +#~ msgstr "Citra latar belakang nebula" + #~ msgid "Day keys: " #~ msgstr "Tombol hari: " @@ -7612,6 +8163,9 @@ #~ msgid "When a Script is Running" #~ msgstr "Saat Skrip Berjalan" +#~ msgid "Nebulas" +#~ msgstr "Nebula" + #~ msgid "Planets labels" #~ msgstr "Label planet" diff -Nru stellarium-0.12.1/po/stellarium/is.po stellarium-0.12.4/po/stellarium/is.po --- stellarium-0.12.1/po/stellarium/is.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/is.po 2013-09-23 06:20:13.000000000 +0000 @@ -10,30 +10,30 @@ msgstr "" "Project-Id-Version: 20130131_stellarium_stellarium-is\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-15 02:06+0000\n" -"Last-Translator: Sveinn í Felli \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-05-17 23:23+0000\n" +"Last-Translator: Sverrir Gudmundsson \n" "Language-Team: Icelandic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-16 04:36+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:49+0000\n" +"X-Generator: Launchpad (build 16761)\n" "Language: is\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Hádegisbaugur" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Sólbaugur" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Miðbaugur" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Sjóndeildarhringur" @@ -41,46 +41,46 @@ msgid "Galactic Plane" msgstr "Flötur vetrarbrautar" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Höfundur: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Staðsetning: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Reikistjarna: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Gerð: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Birtustig: %1 (fallandi í: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Birtustig: %1" @@ -90,114 +90,114 @@ msgid "Size: %1" msgstr "Stærð: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Vetrarbraut" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Lausþyrping" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kúluþyrping" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Geimþoka" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Hringþoka" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Þyrping með þokuslæðu" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Óþekkt" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Óskráð gerð" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Reyndarbirtustig: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Möndulhalli (m.v. dagsetningu, fyrir Jörðina): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Fjarlægð: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Fjarlægð: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Sýndarþvermál: %1, með hringjum: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Sýndarþvermál: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Stjörnudagur: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Miðgildi sólardags: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Afstöðuhorn: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Ãlengd: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Birtustaða: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Upplýst: %1" @@ -208,7 +208,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "stjarna" @@ -223,48 +223,123 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Sýndarbirtustig: %1 (með ljósdeyfingu)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "myrkvatvístirni" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "breytistjarna" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "tvístirni" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Birtustig: %1 (með ljósdeyfingu: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Birtustig: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Litrófsflokkur: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Fjarlægð: %1 ljósár" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Hliðrun: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Geimskip" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "Leiðrétting er óvirk. Notist einungis ef þú veist hvað þú ert að gera!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -272,14 +347,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -288,14 +363,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -303,7 +378,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -311,14 +386,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -327,14 +402,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -342,25 +417,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -369,14 +444,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -384,42 +459,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -427,7 +502,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -435,7 +510,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -444,7 +519,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -454,45 +529,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Sjálfgefið." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Villa" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -653,52 +745,53 @@ msgid "Found" msgstr "Fannst" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Velja möppu fyrir skjámyndir" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Sjónsvið við ræsingu: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Stefna við ræsingu Ãttarh/hæð: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Höfundar" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Tengiliður" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Höfundur" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Leyfi" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Keyri skriftu: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Keyri skriftu: [engin]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -706,16 +799,16 @@ "Lauk niðurhali á nýjum stjörnuskrám!\n" "Endurræstu Stellarium til að sýna þær." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Allir tiltækir stjörnukatalógar hafa verið settir upp." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Ná í katalóg %1 af %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -724,7 +817,7 @@ "Hala niður %1...\n" "(þú mátt loka þessum glugga.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -735,7 +828,7 @@ "Fjöldi stjarna: %2 milljón\n" "Styrksvið: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -744,11 +837,11 @@ "Villa við niðurhal %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Kanna hvort skrá er rétt formuð..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -758,115 +851,123 @@ "Skráin er skemmd." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Reiknirit" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Ãn leiðréttingar" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (með Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Sérsniðin jafna %1T" @@ -1037,49 +1138,53 @@ msgid "OSX Developer: %1" msgstr "OSX hönnuður: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Skjáhermigluggi skriftunnar" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Gluggar" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Bil" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Engin lýsing" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Engin stjörnuhröp" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Venjuleg tíðni" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Venjuleg tíðni Persíta" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Óvenju há tíðni Leoníta" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Hæsta tíðni (Leonítadrífan 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Ný staðsetning" @@ -1185,19 +1290,19 @@ msgid "starchart" msgstr "stjörnukort" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Uppflettivilla í Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Uppletting í Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Háskólinn í Strasbourg (Frakklandi)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard háskóli (BNA)" @@ -1213,30 +1318,36 @@ msgid "Alternative shortcut" msgstr "Auka flýtilykill" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Sérsniðin jafna %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Algeng jafna fyrir útreikning %1T lítur svona út:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "þar sem" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "ár" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Stýrikerfið styður ekki OpenGL" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sólin" @@ -1253,12 +1364,12 @@ msgstr "Jörðin" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Tunglið" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1356,7 +1467,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Satúrnus" @@ -1654,193 +1765,222 @@ msgstr "Inúíta" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Kóresk" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakóta" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maórí" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norræn" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Pólýnesísk" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Samísk" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongósk" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Vestræn" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Tré" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Úthaf" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Ferð um landslög" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Deildarmyrkvi á tungli" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Almyrkvi á tungli" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Skjáhvíla" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Sólmyrkvi 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Ræsiskriftur" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Dýrahringurinn" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Merkúr - þrefalt sólris og sólsetur" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Tvöfaldur myrkvi frá Deimos árið 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Tvöfaldur myrkvi frá Deimos árið 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Myrkvi frá Olympus Mons 10. janúar 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Stjörnumyrkvi Jarðar og Júpíter 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 þvergöngur og 2 myrkvar frá Deimos árið 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Skjáhvíla með sólkerfinu" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Ferð um stjörnumerkin" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Sólin frá ýmsum plánetum" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Besta sýn á Jörðina frá öðrum hnöttum" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Þverganga Venusar" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Ferðalag um stjörnumerkjakerfi" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Litist um í hverju uppsettu landslagi" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Litist um í hverju uppsettu stjörnumerkjakerfi." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skrifta sem sýnir deildarmyrkva á tungli." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skrifta sem sýnir almyrkva á tungli." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Hægfara, óendanleg skoðun himinsins, beint að slembnum fyrirbærum." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1848,11 +1988,11 @@ "Skrifta sem sýnir almyrkva á sól sem átti sér stað árið 2009 " "(staður=Rangpur, Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skrifta sem keyrir sjálfkrafa í ræsingu" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1862,36 +2002,36 @@ "stjörnumerki sem liggja á línunni sem sólin fer eftir himinhvolfinu á einu " "ári." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1901,1503 +2041,1539 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" -msgstr "Skjáhvíla með ýmsum atburðum í sólkerfinu, alls 171 atburðir!" +"Screensaver of various happenings in the Solar System. 187 events in all!" +msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Kynnisferð um vestræn stjörnumerki." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "Þverganga Venusar eins og hún sást frá Sidney, Ãstralíu, þann 6. júní 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Sameinuðu arabísku furstadæmin" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antígva og Barbúda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Angvíla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albanía" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenía" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Hollensku Antillaeyjar" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angóla" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Suðurskautslandið" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentína" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Bandarísku Samóaeyjar" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austurríki" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Ãstralía" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Arúba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Aserbaídsjan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnía og Hersegóvína" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladess" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgía" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Búrkína Fasó" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Búlgaría" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Barein" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Búrúndí" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benín" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermúda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brúnei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bólivía" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasilía" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamaeyjar" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bútan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvet eyja" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botsvana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Hvíta-rússland" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belís" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kókos eyjar" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Sambandslýðveldið Kongó" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Miðafríkulýðveldið" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Lýðveldið Kongó" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Sviss" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Fílabeinsströndin" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cook-eyjar" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Síle" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerún" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Kína" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kólumbía" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Kosta Ríka" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbía og Svartfjallaland" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kúba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Grænhöfðaeyjar" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Jólaeyja" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Kýpur" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Tékkland" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Þýskaland" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djíbútí" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Danmörk" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dóminíka" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dóminíska lýðveldið" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Alsír" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekvador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Eistland" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egyptaland" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Vestur-Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Erítrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spánn" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Eþíópía" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finnland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fídjieyjar" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandseyjar (Malvinas)" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Míkrónesía" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Færeyjar" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Frakkland" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Bretland" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgía" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Franska Gvæjana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Gana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gíbraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grænland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambía" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Gínea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Gvadalúp" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Miðbaugs-Gínea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grikkland" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Suður-Georgía og Suður-Sandwich eyjar" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Gvatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Gvam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Gínea-Bissá" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Gvæjana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard-eyja og McDonald-eyjar" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Hondúras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Króatía" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haítí" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Ungverjaland" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indónesía" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ãrland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Ãsrael" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Indland" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Bresku Indlandshafseyjar" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ãrak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Ãran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Ãsland" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Ãtalía" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaíka" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jórdanía" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenía" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambódía" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kíribatí" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Kómoreyjar" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Sankti Kitts og Neviseyjar" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Sambandsalþýðulýðveldið Norður-Kórea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Suður-Kórea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kúveit" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Cayman-eyjar" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kasakstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laó" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Líbanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Sankti Lúsía" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Srí Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Líbería" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesótó" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litháen" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Lúxemborg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Lettland" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Líbýa" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marokkó" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Mónakó" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldóvía" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshall-eyjar" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedónía" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Malí" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Mjanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongólía" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Maká" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Norður-Maríanaeyjar" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martiník" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Máritanía" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Máritus" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldíveyjar" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malaví" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexíkó" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malasía" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mósambík" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibía" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nýja-Kaledónía" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Níger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolkeyja" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nígería" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Níkaragva" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Holland" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Noregur" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nárú" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nýja Sjáland" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Óman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Perú" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Franska Pólýnesía" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papúa Nýja-Gínea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filippseyjar" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Pólland" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Sankti Pierre og Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitkairn-eyja" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Ríko" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palestínska heimastjórnarsvæðið" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portúgal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palá" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paragvæ" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Katar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Rúmenía" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbía" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Rússland" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rúanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Sádí-Arabía" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Salómonseyjar" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles-eyjar" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Súdan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Svíþjóð" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapúr" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Sankti Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slóvenía" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbarði og Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slóvakía" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Síerra Leóne" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marínó" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Sómalía" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Súrínam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Saó Tóme og Prinsípe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Sýrland" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Svasíland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks og Kaikós eyjar" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Tsjad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Frönsku suðurhafshéruðin" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Tógó" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Taíland" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadsjikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tókelá" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Austur-Tímor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Túrkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Túnis" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Tyrkland" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trínidad og Tóbagó" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Túvalú" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Tævan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tansanía" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Úkraína" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Úganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Ytri-smáeyjar Bandaríkjanna" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Bandaríkin" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Úrúgvæ" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Úsbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatíkanska borgríkið" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Sankti Vincent og Grenadineeyjar" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venesúela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Bresku Jómfrúreyjar" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Bandarísku Jómfrúreyjar" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Víetnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatú" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis- og Fútúnaeyjar" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samóa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Júgóslavía" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Suður-Afríka" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Sambía" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Simbabve" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Dagur og tími" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Bæta við 1 stjörnudegi" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Bæta við 1 stjörnumánuði" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Bæta við 1 stjörnuviku" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Bæta við 1 stjörnuári" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Bæta við 1 stjörnuöld" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Bæta við 1 sólardegi" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Bæta við 1 sólarklst." -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Bæta við 1 sólarviku" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Hægja á aðgerðahraða skriftunnar" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Minnka tímahröðun" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Minnka tímahraða (lítillega)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Auka aðgerðahraða skriftunnar" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Auka tímahröðun" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Auka tímahraða (lítillega)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Gera hlé á keyrslu skriftunnar" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Halda áfram með keyrslu skriftunnar" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Velja núverandi tíma" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Setja venjulegan aðgerðahraða skriftunnar" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Eðlileg tímahröðun" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Stilla tímahröðun á núll" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Stöðva keyrslu skriftunnar" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Draga frá 1 stjörnudag" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Draga frá 1 stjörnumánuð" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Draga frá 1 stjörnuviku" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Draga frá 1 stjörnuár" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Draga frá 1 stjörnuöld" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Draga frá 1 sólardag" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Draga frá 1 sólarklst." -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Draga frá 1 sólarviku" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Skjástillingar" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Snúa við lárétt" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Heilskjár" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Lofthjúpur" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Sjónbaugshnit" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Höfuðáttir" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Myndræn stjörnumerki" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Mörk stjörnumerkja" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Merkingar stjörnumerkja" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Stjörnumerkjalínur" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Bakgrunnsmyndir geimþoka" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Sólbaugur" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Miðbaugur himins" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Miðbaugshnit" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Miðbaugshnit J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Mistur" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Vetrarbrautarhnit" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Flötur vetrarbrautar" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Jörð" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Sjóndeildarhringur" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Hádegisbaugur" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Geimþokur" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Næturhamur" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Skýringar reikistjarna" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Brautir reikistjarna" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Ferlar reikistjarna" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stjörnur" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Stjörnumerkingar" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Snúa við lóðrétt" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Ãmislegt" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Fela sjálfvirkt lárétta valstiku" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Fela sjálfvirkt lóðrétta valstiku" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Fara heim" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Hætta" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Afrita upplýsingar um valinn hlut á klippispjaldið" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Vista skjámynd" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Skipta á milli pólstillts og lóðstillts sjónaukastæðis" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Víxla sýnileika viðmótsins" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Hreyfing og val" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Hafa fyrirbærið í miðjum glugganum" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Velja reikistjörnu sem heimastjörnu" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Elta fyrirbæri" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Stækka í kringum valið fyrirbæri" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Minnkun" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Hornamæling" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Ãttavitastrik" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Birta fjarreikistjörnur" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Stillingagluggi fyrir fjarreikistjörnur" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Sýnileiki" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Stillingagluggi fyrir sýnileika" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Stillingar Oculars hjálparforrits" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Augnglersskoðun" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Sýna krossmið" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Valmynd fyrir augngler" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Rammi myndflögu" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad mið" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Stillingagluggi fyrir tifstjörnur" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Stillingagluggi fyrir kvasa" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Stillingagluggi gervitungla" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Ãbendingar vegna gervitungla" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Merkingar gervitungla" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Stillingagluggi fyrir sögulegar sprengistjörnur" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Færa sjónauka á uppgefin hnit" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Birta tölfræði myndgerðar" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skriftur" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Keyra landslagsskriftu úr skrá" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Birta og draga að tunglið" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Stillingagluggi" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Dagur/tími gluggi" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Hjálpargluggi" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Staðsetningar gluggi" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Leitargluggi" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Flýtilyklagluggi" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Himins og útsýnis gluggi" @@ -3423,7 +3599,7 @@ msgstr "Endurlesa" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Staðsetning" @@ -3439,10 +3615,10 @@ msgid "Return to default" msgstr "Endurstilla á sjálfgefið" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Eyða" @@ -3451,7 +3627,7 @@ msgstr "Bæta við lista" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Breiddargráða:" @@ -3464,12 +3640,12 @@ "dæmis +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Lengdargráða:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Hæð:" @@ -3493,363 +3669,407 @@ msgid "Planet:" msgstr "Reikistjarna:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Finna fyrirbæri" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Leita að fyrirbæri eða eftir staðsetningu" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "jóta" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "þeta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mí" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ní" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksí" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pí" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ró" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tá" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ypsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fí" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "kí" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psí" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "ómega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Grískir stafir í Bayer nafnakerfinu" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Fyrirbæri" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "Stjörnulengd/Stjörnubreidd (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Staða" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "heiti á ensku" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Leita í lista..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listar" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Stjörnufræðigagnagrunnurinn SIMBAD á vefnum" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Útvíkka leitina með SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Þjónn:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Valkostir" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "heiti á ensku" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Leita í lista..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listar" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Sýn" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Himinn" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Merkingar" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landslag" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Stjörnumerki" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Nöfn og merkingar" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Reikistjörnur" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Reikistjörnur og tungl" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Sýna reikistjörnur" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Merkja reikistjörnur" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Sýna brautir reikistjarna" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Líkja eftir ljóshraða" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Stækka tunglið" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Sýna lofthjúp" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Ljósmengun:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "þrýstingur, hitastig, ljósdeyfingarstuðull" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Stillingar ljósbrots/ljósdeyfingar" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Raunkvarði:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Afstæður kvarði:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Birtustig Vetrarbrautar:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Stjörnublik:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Dekkja daufar stjörnur þegar bjart fyrirbæri sést á himni" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Kvik aðlögun augans" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Stjörnuhröp" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Tíðni á klst. í hvirfilpunkti" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Stjörnur að birtustigi" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Geimþokur að birtustigi" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Stjörnumerki" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Sýna línur" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Sýna nöfn" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Sýna mörk" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Sýna myndskreytingar" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Birtustig myndskreytinga:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Himinhvelfing" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Birta miðbaugslínu" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Sýna hádegisbaugslínu" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Sýna sjóndeildarhringslínu" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Sýna sólbaugslínu" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Sýna vetrarbrautarlínu" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Vörpun :" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Bæta við/fjarlægja landslag..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Sýna yfirborð" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Sýna mistur" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Nota tengda reikistjörnu og stöðu" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Nota þetta landslag sem sjálfgefið" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Nota þetta stjörnumerkjakerfi sem sjálfgefið" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Sýnilegt" @@ -3904,7 +4124,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Ãttin sem horft er í við ræsingu Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Upplýsingar um valið fyrirbæri" @@ -3920,11 +4140,8 @@ msgid "Display no information" msgstr "Ekki sýna neinar upplýsingar" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Engar" @@ -4066,7 +4283,7 @@ msgstr "sekúndur" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Dagur og tími við ræsingu" @@ -4078,41 +4295,45 @@ msgid "Other:" msgstr "Annað:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "nota núverandi" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Nota kerfistíma við ræsingu" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Kerfistími" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "Setur núverandi tíma sem tíma forritsins þegar Stellarium er ræst" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Kerfisdagsetning:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Tímaleiðrétting" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Breyta jöfnu" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Stillingar stjörnuvers" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4120,51 +4341,51 @@ "Bjögun kúluspegils er notuð þegar Stellarium er varpað á kúluspegil fyrir " "einföld stjörnuver." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Bjögun kúluspegils" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Hylja allt utan miðhringsins í aðalglugganum" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Sjónarhorn eins og í kíki" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Fela önnur stjörnumerki þegar smellt er á eitt þeirra" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Veldu stakt stjörnumerki" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Samstilla nöfn við sjóndeildarhring" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Þyngdaraflstákn" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Víxla birtingu bakgrunns fyrir geimþoku" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Birta hnapp fyrir bakgrunn geimþoku" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Víxla lóðréttum og láréttum myndfletti hnöppum" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Sýna flettihnappa" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4172,92 +4393,98 @@ "Þegar stillt er á þetta stillir hnappurinn fyrir sjálfvirka minnkun einnig " "upphaflega sjónstefnu" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Sjálfvirk minnkun færir sjónlínuna í upphaflega stefnu" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Myndgera skugga frá sól" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Skjámyndir" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Mappa skjámynda" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Snúa við litum" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Uppfærsla stjörnuskráa" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Smelltu hér til að hefja niðurhal" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Hala þessari skrá niður til að sjá enn fleiri stjörnur" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Endurræsa niðurhalið" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Reyna aftur" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Stöðva niðurhal. Þú getur alltaf endurræst það síðar" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Hætta við" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Loka glugga á meðan skriftan er keyrð" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Keyra valda skriftu" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stöðva skriftu sem er í keyrslu" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Hlaða inn við ræsingu" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "stilla" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Aðal" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Upplýsingar" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Leiðarstýring" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Ãhöld" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Ãforrit" @@ -4434,176 +4661,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Birtir áttavitastrik á sjóndeildarhringnum" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Augngler" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Fyrra augngler" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Næsta augngler" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "&Velja augngler" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Víxla krossmiði af/á" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Stilla &Oculars" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Víxla &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Víxla &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Fyrri CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Næsta CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Velja CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Snúa CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Núllstilla snúning" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Augngler #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Augngler #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Augnglers FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Augnglers aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Linsa #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Linsa #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Linsa: engin" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Sjónauki #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Sjónauki #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Stækkun: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Málsetning: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Myndflaga #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Myndflaga #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Linsa" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&Fyrri linsa" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&Næsta linsa" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Sjónauki" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Fyrri sjónauki" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Næsti sjónauki" @@ -4675,64 +4902,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Linsa: engin" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Snúningur: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Hjálparforrit augnglerja (Oculars)" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Útgáfa" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Yfirlit" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4740,7 +4972,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4751,14 +4983,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4767,306 +4999,375 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Flýtilyklar" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "(engir lyklar skilgreindir)" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Lyklavörpun" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Viðmót" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Stjórnborð á skjá" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Almennt" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Augngler" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Bæta við" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Heiti:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Brennivídd:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Handsjónaukar" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Linsur" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Skynjarar" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Upplausn x (mynddílar):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Upplausn y (mynddílar):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Breidd myndflögu (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Hæð myndflögu (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Breidd mynddíla (míkron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Hæð mynddíla (míkron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Sjónaukar" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Þvermál:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Spegla lárétt" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Spegla lóðrétt" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Um hugbúnað" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Gervitungl" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "Spár um stöðu gervitungla á jarðbraut, byggt á NORAD TLE gögnum" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Gamla satellites.json skráin er ekki lengur samhæfð - nota sjálfgefna skrá" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "gervitungl" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Hæð (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME hnit (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME hraði (km/sek): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Athugasemdir fyrir notendur" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5074,25 +5375,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5100,17 +5401,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5118,41 +5419,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Tenglar" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5160,338 +5463,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Uppfæri núna..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Næsta uppfærsla: < 1 mínúta" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Næsta uppfærsla: %1 mínútur" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Næsta uppfærsla: %1 klukkustundir" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Uppfæra núna" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Uppfæra úr skrám" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Uppfærsluvilla" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Uppfæra núna" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Uppfæra úr skrám" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Næ í gögn..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Vinn með gögn..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Stillingagluggi gervitungla" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Uppfært af internetinu" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Síðast uppfært:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Uppfæra tíðni (klst):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Merkingar" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Stillingar" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Vista breytingar" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Sýna valda gervihnetti" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Sýndir" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Sýna brautir valinna gervihnatta" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Lýsing:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Vista breytingar" - -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Uppruni" @@ -5527,11 +5873,11 @@ msgid "Discard" msgstr "Henda" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Sjónaukastýring" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5539,12 +5885,12 @@ "Þessi viðbót gerir Stellarium kleift að senda hreyfiskipanir til sjónauka á " "tölvustýrðu sjónaukastæði (einnig nefndir \"GoTo\" sjónaukar)." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Færa sjónauka #%1 á valið fyrirbæri" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Færa sjónauka #%1 á punktinn sem núna er á miðjum skjánum" @@ -5930,62 +6276,62 @@ "dagsetning eru birt í valstikunni neðst á skjánum." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "janúar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "febrúar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "mars" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "apríl" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "maí" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "júní" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "júlí" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "ágúst" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "september" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "október" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "nóvember" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "desember" @@ -6139,7 +6485,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Birtingasnið tíma" @@ -6157,7 +6503,7 @@ msgstr "24 klst. snið" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Birtingasnið dagsetninga" @@ -6173,11 +6519,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-áááá" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Textaviðmót" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6185,144 +6531,144 @@ "Útfærsla textaviðmóts - textaviðmót (TUI) eins og notað var fyrir viðbætur í " "útgáfum 0.9.x, ennþá notað í stórum stjörnuhvolfum" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Núverandi dagur/tími" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Setja tímabelti" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Dagalyklar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "kerfi" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "forgildi" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "yyyymmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Tungumál" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Sýna stjörnur" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Litir" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Nöfn stjörnuþoka" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Vísbendingar um stjörnuþokur" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Lýna fyrir vetrarbrautarflöt" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Sjónhverfingar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Handvirkur aðdráttur" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Ljósstyrkur Vetrarbrautar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Tímamörk bendils:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Stillingar landslags ráða staðsetningu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Keyra staðværa skriftu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Hætta að keyra skriftu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD skrifta" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Stjórnun" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Lesa inn sjálfgefnar stillingar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Vista þessar stillingar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Slökkva" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6358,22 +6704,22 @@ "framkvæmt leitir í gagnagrunni þess á netinu. Þessi hluti er enn í vinnslu." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Senda fyrirspurn til MPC %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6542,36 +6888,43 @@ msgid "Solar System" msgstr "Sólkerfi" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Sögulegar sprengistjörnur" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "sprengistjörnur" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Tegund sprengistjörnu: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6589,7 +6942,7 @@ msgstr "Þakkir" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6603,14 +6956,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "í Rússlandi" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6618,8 +6971,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6637,29 +6991,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Uppfært af internetinu" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kvasar" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6678,51 +7109,61 @@ msgid "Z (redshift): %1" msgstr "Z (rauðvik): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsars" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6844,11 +7285,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Tifstjörnuviðbót (Pulsars)" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6859,137 +7300,141 @@ "Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Athugasemd" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "auðkenni tifstjarna eru með forskeytið 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Þakkir" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino Radio Astronomy Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Station de radioastronomie de Nançay" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "í Frakklandi" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsars er uppfært" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Stillingar Pulsars" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Fjarreikistjörnur" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Málmslikja" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Massi" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Radíus" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Raunhitastig: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Fjarreikistjarna" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Umferðartími" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dagar" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Hálfur langás (umferðarbrautar)" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "Stjörnufræðieiningar" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Miðskekkja" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Möndulhalli" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Uppgötvunarár" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Fjarreikistjörnuviðbót (Exoplanets)" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6997,49 +7442,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Exoplanets er uppfært" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Stillingar Exoplanets" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7055,185 +7589,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "jan" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "apr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "maí" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "jún" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "júl" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "ágú" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "sep" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "okt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "nóv" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "des" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "klst" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "mín" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "sek" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Sest kl. %1 (eftir %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Reis kl. %1 (fyrir %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Settist kl. %1 (fyrir %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Rís kl. %1 (eftir %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Pólhverf." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Ekkert ris." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Verður hæst kl. %1 (eftir %2) í %3 gráðum" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Varð hæst kl. %1 (fyrir %2) í %3 gráðum" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Nætur ofan sjóndeildarhrings: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "à DAG:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "à ÞESSU ÃRI:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Fyrra fullt tungl: %1 %2 kl. %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Næsta fullt tungl: %1 %2 kl. %3:%4. " @@ -7611,6 +8139,9 @@ #~ msgid "Twinkling: " #~ msgstr "Stjörnublik " +#~ msgid "Nebulas" +#~ msgstr "Geimþokur" + #~ msgid ":" #~ msgstr ":" @@ -7665,6 +8196,9 @@ #~ msgid "Startup direction of view: xxxx" #~ msgstr "Stefna við ræsingu: xxxx" +#~ msgid "Nebulas background images" +#~ msgstr "Bakgrunnsmyndir geimþoka" + #~ msgid "xxx" #~ msgstr "xxx" @@ -7783,3 +8317,7 @@ #~ msgid "Object's size" #~ msgstr "Stærð fyrirbæris" + +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "Skjáhvíla með ýmsum atburðum í sólkerfinu, alls 171 atburðir!" diff -Nru stellarium-0.12.1/po/stellarium/it.po stellarium-0.12.4/po/stellarium/it.po --- stellarium-0.12.1/po/stellarium/it.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/it.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-16 11:06+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-05-28 11:40+0000\n" "Last-Translator: Guybrush88 \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-17 05:14+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridiano" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Eclittica" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Equatore" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Orizzonte" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Piano galattico" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autore: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Posizione: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Pianeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipo: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitudine: %1 (estinta a: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitudine: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Dimensione: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galassia" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Ammasso aperto" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Ammasso globulare" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebulosa planetaria" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Nebulosa oscura" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Ammasso associato con nebulosità" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Sconosciuto" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Tipo non documentato" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitudine assoluta: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Eclittica topocentrica (alla data): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Obliquità (alla data, per la Terra): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distanza: %1UA (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distanza: %1 UA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diametro apparente: %1, con anelli: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diametro apparente: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Periodo siderale: %1 giorni (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Giorno siderale: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Giorno solare medio: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Angolo di fase: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongazione: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Illuminato: %1%" @@ -204,7 +204,7 @@ msgstr "Designazione provvisoria: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "stella" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnitudine apparente: %1 (per estinzione)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "stella variabile pulsante" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "stella variabile rotante" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "stella variabile" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "stella doppia" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Tipo: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitudine: %1 (estinto a: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitudine: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Classe spettrale: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distanza: %1 anni luce" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallasse: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Periodo: %1 giorni" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Durata dell'eclissi: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Tempo di salita: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Veicolo Spaziale" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "La correzione è disabilitata. Usala solo se sai cosa stai facendo!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,16 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" +"Formula empirica pubblicata da G. M. Clarence nell'articolo On the " +"system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -282,38 +359,54 @@ "Astronomical Formulae for Calculators. It was also adopted in the " "PC program SunTracker Pro." msgstr "" +"Formula basata su osservazioni del Sole, della Luna e dei pianeti condotte a " +"partire dal 1650 e recensite da Spencer Jones (%1). Questa formula è " +"applicata da Jean Meeus in Astronomical Formulae for Calculators ed " +"è utilizzata nel simulatore spaziale SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" +"Versione leggermente modificata della formula IAU (1952) utilizzata in " +"Astronomical Ephemeris e in Canon of Solar Eclipses di " +"Mucke e Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " "relation was also implicitly adopted in the syzygy tables of Goldstine " "(1973)." msgstr "" +"Le tabelle di Tuckerman (1962, 1964) indicano la posizione del Sole, della " +"Luna e dei pianeti a intervalli di 5 e 10 giorni dall'anno 601 AC al 1649 " +"DC. La stessa relazione è usata implicitamente nelle sizigie di Goldstine " +"(1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " "article The accelerations of the earth and moon from early astronomical " "observations (%1)." msgstr "" +"Equazione pubblicata da P. M. Muller e F. R. Stephenson nell'articolo " +"The accelerations of the earth and moon from early astronomical " +"observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" +"Equazione pubblicata da F. R. Stephenson nell'articolo Pre-Telescopic " +"Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -321,41 +414,54 @@ "Polynomial approximations for the correction delta T E.T.-U.T. in the " "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" +"Equazione polinomiale di dodicesimo grado pubblicata da L. D. Schmadel e G. " +"Zech in Polynomial approximations for the correction delta T E.T.-U.T. " +"in the period 1800-1975 (%1) e basata sull'interpolazione di dati " +"pubblicati da Brouwer (1952); resa in seguito obsoleta dagli stessi autori " +"(1988)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" +"Algoritmo utilizzato da P. Bretagnon e L. Simon in Planetary Programs " +"and Tables from -4000 to +2800 (1986) e nel simulatore spaziale " +"RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " "article Long-term changes in the rotation of the earth - 700 B.C. to " "A.D. 1980 (%1)." msgstr "" +"Formula pubblicata da F. R. Stephenson e L. V. Morrison nell'articolo " +"Long-term changes in the rotation of the earth - 700 B.C. to A.D. " +"1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." -msgstr "" +msgstr "Algoritmo utilizzato nel simulatore spaziale Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" +"Formula ricavata da K. M. Borkowski (%1) dall'analisi di 31 eclissi solari " +"tra il 2137 AC e il 1715 DC." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -363,58 +469,69 @@ "Period 1800-1988 (%1) as data fit through values given by Stephenson & " "Morrison (1984)." msgstr "" +"Equazione polinomiale di dodicesimo grado pubblicata da L. D. Schmadel e G. " +"Zech in Empirical Transformations from U.T. to E.T. for the Period 1800-" +"1988 (%1) e basata sull'interpolazione di valori pubblicati da " +"Stephenson e Morrison (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " "article Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD " "1990 (%1)." msgstr "" +"Equazione pubblicata da F. R. Stephenson e L. V. Morrison nell'articolo " +"Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD 1990 " +"(%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" +"Formula pubblicata da F. R. Stephenson in Historical Eclipses and " +"Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" +"Coefficienti polinomiali pubblicati da J. Meeus e L. Simons nell'articolo " +"Polynomial approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +539,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +547,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +556,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,48 +566,69 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Utilizzata come predefinita." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Errore" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" -msgstr "" +msgstr "senza significato fisico al di fuori di questo intervallo" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" +"con un errore medio inferiore a 1 secondo d'arco, un errore massimo di 1.9s, " +"e senza significato fisico al di fuori di questo invervallo" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" -msgstr "" +msgstr "con valori nulli al di fuori di questo invervallo" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" +"con un'incertezza tipica di 1 secondo d'arco e con valori nulli al di fuori " +"di questo intervallo" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." -msgstr "" +msgstr "Intervallo di validità: dall'anno %1 al %2." #: src/core/StelProjector.cpp:123 msgid "Maximum FOV: " @@ -658,52 +796,53 @@ msgid "Found" msgstr "Trovato" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Selezionare la cartella delle schermate" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "FOV di partenza: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Direzione di partenza della visualizzazione Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autori" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contatto" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autore" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licenza" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Script in esecuzione: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Script in esecuzione: [nessuno]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -711,16 +850,16 @@ "Lo scaricamento dei nuovi cataloghi di stelle è completato!\n" "Riavviare Stellarium per visualizzarli." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Tutti i cataloghi stellari disponibili sono stati installati." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Ricezione del catalogo %1 di %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -729,7 +868,7 @@ "Scaricamento di %1 ...\n" "(È possibile chiudere questa finestra.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -740,7 +879,7 @@ "Numero di stelle: %2 Million\n" "Intervallo di magnitudine: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -749,11 +888,11 @@ "Errore nello scaricamento di %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verifica dell'integrità del file..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -763,115 +902,123 @@ "Il file è danneggiato." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritmo di" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Senza correzione" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" -msgstr "" +msgstr "Tuckerman (1962, 1964) e Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (con Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "Orizzonti JPL" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Equazione personalizzata di %1T" @@ -1043,49 +1190,53 @@ msgid "OSX Developer: %1" msgstr "Sviluppatore OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Finestra dell'interfaccia a riga di comando dello script" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Finestre" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Spazio" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Nessuna descrizione" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Nessuna stella cadente" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Frequenza normale" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Frequenza standard delle Perseidi" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Frequenza eccezionale di Leonidi" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Frequenza maggiore di sempre (Leonidi, 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nuova Posizione" @@ -1191,19 +1342,19 @@ msgid "starchart" msgstr "carta stellare" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Errore nella ricerca Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Ricerca Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Università di Strasburgo (Francia)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Università di Harvard (Stati Uniti d'America)" @@ -1219,30 +1370,36 @@ msgid "Alternative shortcut" msgstr "Scorciatoia alternativa" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Equazione personalizzata per %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "dove" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "anno" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Questo sistema non supporta OpenGL" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sole" @@ -1259,12 +1416,12 @@ msgstr "Terra" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Luna" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marte" @@ -1362,7 +1519,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturno" @@ -1660,193 +1817,222 @@ msgstr "Eschimese" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Coreano" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Lappone" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinesiano" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongan" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Occidentale" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Alberi" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Uragano" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Oceano" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Tour Panorama" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Eclissi lunare parziale" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Eclissi lunare totale" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Screensaver" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Solar Eclipse 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Startup Script" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiac" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Tre albe e tramonti di Mercurio" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Doppia eclissi da Deimos nel 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Doppia eclissi da Deimos nel 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Eclissi dal Monte Olympus del 10 gennaio 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Occultamento di Terra e Giove nel 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Salvaschermo del sistema solare" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Giro delle costellazioni" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Il sole visto da diversi pianeti" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Migliori visuali della terra dagli altri corpi celesti" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Transito di Venere" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Guarda intorno ad ogni panorama installato." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Script per mostrare una parziale eclissi lunare." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Script per dimostrare un'eclissi lunare totale." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Un lento, infinito tour del cielo, con oggetti scelti casualmente." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1854,11 +2040,11 @@ "Script per mostrare una eclissi solare totale che è accaduta nel 2009 " "(posizione=Rangpur, Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Script che viene eseguito automaticamente all'avvio" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1868,7 +2054,7 @@ "che giacciono intorno alla linea che il Sole traccia attraverso la sfera " "celeste nel corso dell'anno." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1877,7 +2063,7 @@ "determinati punti il sole sorge e tramonta tre volte in un giorno di " "Mercurio." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1885,7 +2071,7 @@ "Appena prima che Marte eclissi il sole, Phobos spunta da dietro e lo eclissa " "per primo: ciò avviene fra Scorpione e Sagittario il 26 aprile 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1893,12 +2079,12 @@ "Appena prima che Marte eclissi il sole, Phobos spunta da dietro e lo eclissa " "per primo: ciò avviene fra Toro e Gemelli il 23 luglio 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Phobos sta eclissando il Sole, visto dal Monte Olimpo il 10 Gennaio 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1908,7 +2094,7 @@ "di Giove. Ma le occultazioni di entrambi lo stesso giorno sono molto rare. " "Ecco quella che si svolge il 23/01/2048. In velocità reale." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1918,33 +2104,31 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Salvaschermo di svariati avvenimenti nel Sistema Solare: 171 eventi in " -"totale!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Un tour delle costellazioni occidentali." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Guarda il Sole dai grandi pianeti del Sistema Solare e Plutone." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "La vista migliore della Terra da altri corpi del sistema solare nel 21 ° " "secolo." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "Transito di Venere, visto da Sydney (Australia) il 6 Giugno 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." @@ -1952,7 +2136,7 @@ "Una dimostrazione dell'analemma - il percorso del Sole nel cielo durante " "l'anno." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -1960,1468 +2144,1504 @@ "Lampo della supernova osservata da Tycho Brahe nel 1572. Il plugin " "Supernovae deve essere abilitato." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Emirati Arabi Uniti" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua e Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Antille Olandesi" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antartide" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa Americana" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaigian" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia-Erzegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgio" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrein" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Sultanato del Brunei" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasile" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Isola di Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Bielorussia" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Isole Cocos" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Repubblica Democratica del Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Repubblica Centrafricana" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Repubblica del Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Svizzera" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Costa d'Avorio" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Isole di Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Cile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Camerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Cina" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia e Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Capo Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Isola di Natale" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Cipro" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Repubblica Ceca" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Germania" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Gibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Danimarca" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Repubblica Dominicana" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algeria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egitto" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Sahara occidentale" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spagna" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlandia" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Figi" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Isole Falkland" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Isole Faroe" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Francia" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Regno Unito" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Granada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guyana Francese" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibilterra" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Groenlandia" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadalupa" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Guinea Equatoriale" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grecia" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Georgia del Sud e isole Sandwich meridionali" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Isole Heard e McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Croazia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Ungheria" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlanda" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israele" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Territorio britannico dell'Oceano Indiano" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Iraq" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islanda" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Giamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Giordania" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Giappone" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirghizistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Cambogia" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Isole Comore" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts e Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Repubblica Democratica Popolare di Corea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Repubblica di Corea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Isole Cayman" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakistan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libano" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Santa Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesoto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lituania" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Lussemburgo" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Lettonia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Jamahiriya Araba Libica" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marocco" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Principato di Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavia" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Isole Marshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Birmania" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Isole Marianne settentrionali" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinica" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldive" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Messico" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malesia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambico" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nuova Caledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Isola di Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Olanda" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norvegia" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nuova Zelanda" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Perù" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinesia Francese" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Nuova Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filippine" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polonia" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "San Pierre e Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Isole Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Porto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Territori Palestinesi" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portogallo" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Federazione Russa" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Arabia Saudita" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Isole Salomone" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Svezia" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Sant'Elena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard e Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovacchia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "San Tome e Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Repubblica Araba della Siria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Isole Turks e Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Ciad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Territori francesi meridionali" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Tailandia" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tagikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Timor Orientale" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turchia" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad e Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ucraina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Isole Minori Esterne degli Stati Uniti" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Stati Uniti" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Città del Vaticano" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent e Grenadine" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Isole Vergini Britanniche" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Isole Vergini degli Stati Uniti" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis e Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Sudafrica" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbawe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data e ora" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Aggiungi 1 giorno siderale" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Aggiungi 1 mese siderale" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Aggiungi 1 settimana siderale" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Aggiungi 1 anno siderale" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Aggiungi 1 secolo siderale" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Aggiungi 1 giorno solare" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Aggiungi 1 ora solare" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Aggiungi 1 settimana solare" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Aggiungi 1 mese sinodico" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Aggiungi 1 mese draconico" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Aggiungi 1 mese anomalistico" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Aggiungi 1 mese tropicale medio" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Aggiungi un anno draconico" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Aggiungi un anno tropicale medio" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Rallenta la velocità di esecuzione dello script" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Diminuisci la velocità del tempo" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Riduci la velocità del tempo (un po')" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Aumenta la velocità di esecuzione dello script" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Aumenta la velocità del tempo" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Aumenta la velocità del tempo (un po')" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Interrompi l'esecuzione dello script" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Riprendi l'esecuzione dello script" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Imposta l'ora attuale" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Imposta la normale velocità di esecuzione dello script" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Velocità del tempo normale" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Impoasta la velocità del tempo a zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Ferma l'esecuzione dello script" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Sottrai 1 giorno siderale" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Sottrai 1 mese siderale" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Sottrai 1 settimana siderale" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Sottrai 1 anno siderale" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Sottrai 1 secolo siderale" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Sottrai 1 giorno solare" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Sottrai 1 ora solare" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Sottrai 1 settimana solare" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Sottrai 1 mese sinodico" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Sottrai 1 mese draconico" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Sottrai 1 mese anomalistico" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Sottrai 1 mese tropicale medio" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Sottrai 1 anno draconico" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Sottrai 1 anno tropicale medio" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Mostra Opzioni" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Capovolgi la visuale orizzontalmente" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Modalità schermo intero" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Griglia coordinate Azimuthali" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Punti Cardinali" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Figure delle costellazioni" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Confini delle costellazioni" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Nomi delle costellazioni" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Linee delle costellazioni" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Immagini di sfondo delle nebulose" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Griglia ellittica J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Eclittica" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Equatore Celeste" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Griglia equatoriale" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Griglia equatoriale (J2000)" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Nebbia" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Griglia galattica" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Piano galattico" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Orizzonte" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Linea dell'orizzonte" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridiano Locale" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulose" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Modalità notturna" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Etichette del pianeta" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Orbite pianeti" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Orbite dei pianeti" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stelle" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Nomi delle stelle" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Capovolgi la visuale verticalmente" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Varie" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Nascondi automaticamente la barra orizzontale dei comandi" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Nascondi automaticamente la barra verticale dei comandi" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Torna a casa" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Esci" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Copia le informazioni selezionate sull'oggetto negli appunti" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Salva schermata" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Scambia tra montatura equatoriale e azimutale" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Mostra/nascondi interfaccia utente" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Movimento e Selezione" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centra l'oggetto selezionato" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Imposta il pianeta selezionato come luogo di osservazione" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Segui l'oggetto" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Ingrandisci l'oggetto selezionato" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Riduci l'ingrandimento" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Misura angolo" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Punti cardinali" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Mostra gli esopianeti" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Finestra di configurazione degli esopianeti" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Osservabilità" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Finestra di configurazione dell'osservabilità" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Configurazione del plugin Oculari" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Visione oculare" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Visualizza mirino" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Menù dell'oculare" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Area sensore d'immagine" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Vista Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Mostra le pulsar" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Finestra di configurazione delle pulsar" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Mostra i quasar" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Finestra di configurazione delle quasar" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Finestra configurazione satelliti" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Consigli satellite" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Etichette satelliti" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Finestra di configurazione delle supernovae storiche" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Punta il telescopio date le coordinate" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Mostra statistiche di rendering" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Script" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Esegui lo script degli sfondi da file" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Visualizza e modifica ingrandimento della luna" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Finestra di configurazione" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Finestra data/ora" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Finestra di aiuto" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Finestra della posizione" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Finestra di ricerca" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Finestra scorciatoie" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Finestra delle opzioni del cielo e della visualizzazione" @@ -3447,7 +3667,7 @@ msgstr "Aggiorna" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Località" @@ -3463,10 +3683,10 @@ msgid "Return to default" msgstr "Ritornare alle impostazioni predefinite" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Cancella" @@ -3475,7 +3695,7 @@ msgstr "Aggiungi alla lista" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitudine:" @@ -3488,12 +3708,12 @@ "+1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitudine:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitudine:" @@ -3517,363 +3737,407 @@ msgid "Planet:" msgstr "Pianeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Trova oggetto" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Trova Oggetto o Posizione" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "cappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Lettere greche per le designazioni Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Oggetto" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "A.R./Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posizione" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "nomi in inglese" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Cerca nell'elenco ..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Elenchi" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Database astronomico on-line SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Estendi la ricerca con SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Opzioni" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "nomi in inglese" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Cerca nell'elenco ..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Elenchi" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Visualizza" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Cielo" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Indicatori" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Paesaggio" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Tradizioni" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etichette e Indicatori" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Pianeti" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Pianeti e satelliti" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Mostra pianeti" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Mostra indicatori dei pianeti" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Mostra orbite dei pianeti" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simula la velocità della luce" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Mostra la Luna in scala" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Mostra atmosfera" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Inquinamento luminoso:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "pressione, temperatura, coefficiente di estinzione" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Impostazioni di Rifrazione e Estinzione" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Scala assoluta:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Scala relativa:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Luminosità della Via Lattea:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Scintillìo:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Oscura le stelle deboli quando è visibile un oggetto molto luminoso" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adattamento dinamico dell'occhio" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Stelle Cadenti" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "ZHR:" +msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Magnitudini limite" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Costellazioni" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Mostra linee" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Mostra etichette" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Mostra confini" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Mostra figure" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Luminosità dell'arte:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Sfera Celeste" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Mostra la linea dell'equatore" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Mostra la linea del meridiano" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Mostra la linea dell'orizzonte" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Mostra l'eclittica" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Mostra l'equatore galattico" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Proiezione" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Aggiungi/Rimuovi panorami..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Mostra orizzonte" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Mostra nebbia" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Usa pianeta e posizione associati" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Usa questo paesaggio come predefinito" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Utilizza questa cultura del cielo come predefinita" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visibile" @@ -3928,7 +4192,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "La direzione della visuale quando Stellarium si avvia" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informazioni sull'oggetto selezionato" @@ -3944,11 +4208,8 @@ msgid "Display no information" msgstr "Non mostrare informazioni" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Nessuna" @@ -4092,7 +4353,7 @@ msgstr "secondi" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Data e ora di avvio" @@ -4104,19 +4365,23 @@ msgid "Other:" msgstr "Altro:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "usa l'attuale" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Avvia Stellarium con data e ora di sistema" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Data e ora di sistema" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4124,23 +4389,23 @@ "Imposta l'ora di simulazione a quest'ora del giorno in primo luogo quando " "Stellarium parte" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Data di sistema a:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Correzione temporale" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Modifica equazione" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Opzioni Planetario" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4148,53 +4413,53 @@ "La distorsione a specchio sferico è usata quando si proietta Stellarium su " "di uno specchio sferico per planetari a basso costo" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Distorsione a specchio sferico" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" "Nascondi tutto al di fuori di un cerchio centrale nella visuale principale" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Finestra del disco" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Nasconde le altre costellazioni quando ne selezioni una" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Seleziona una singola costellazione" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Allinea etichette con l'orizzonte" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Etichette di gravità" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Attivare la visualizzazione delle origini delle nebulose." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Pulsante di visualizzazione delle origini delle nebulose" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" "Scambia i pulsanti per il ribaltamento verticale e orizzontale dell'immagine." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Mostra i pulsanti di ribaltamento" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4202,92 +4467,98 @@ "Quando abilitato, il tasto \"auto zoom out\" imposta anche la direzione " "iniziale di visualizzazione" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Auto zoom out riporta alla direzione iniziale di visualizzazione" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Rappresenta ombre solari" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Screenshot" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Cartella delle Screenshot" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Inverti colori" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Aggiornamenti dei cataloghi stellari" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Clicca qui per iniziare il download" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Scarica questo file per vedere ancora più stelle" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Riprendi il download" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Ritenta" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Ferma il download. Potrai riprenderlo più tardi" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Annulla" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Chiudi la finestra durante l'esecuzione dello script" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Esegui lo script selezionato" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Ferma lo script in esecuzione" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Carica all'avvio" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "configura" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Principale" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informazioni" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigazione" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Strumenti" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Plugins" @@ -4463,12 +4734,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Visualizza la bussola lungo l'orizzonte" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculari" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4478,164 +4749,164 @@ "(Sono simulati solo l'ingrandimento e il campo visivo.) Può anche mostrare " "l'area di un sensore e una vista Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Selezionare un oggetto prima di passare alla vista oculare" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "Oculare &precedente" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Prossimo oculare" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Seleziona &oculare" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Attiva/disattiva mirino a &croce" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Configura &oculari" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Attiva/disattiva &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Attiva/disattiva &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "CCD &precedente" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Prossimo CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Seleziona CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Ruota CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Azzera rotazione" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Oculare #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Oculare #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Lungh. foc. oc.: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Campo app. oc.: %1 mm" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Lente #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Lente #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Lente: nessuna" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Telescopio #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Telescopio #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Magnificazione: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensioni: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensore #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensore #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Lente" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "Lente &precedente" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "Lente &successiva" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Telescopio" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "Telescopio &precedente" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Prossimo telescopio" @@ -4707,64 +4978,69 @@ msgid "Apparent field of view of the ocular" msgstr "Campo visivo apparente dell'oculare" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Molteplicità: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Lente: nessuna" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Molteplicità: N/D" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Molteplicità di lenti" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotazione: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Ingrandimento fornito dai binocoli" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Campo visivo effettivo fornito dai binocoli" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Plugin degli Oculari" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versione" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Panoramica" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4775,7 +5051,7 @@ "configurazione può essere utilizzata per aggiungere, modificare o eliminare " "oculari e telescopi, così come i sensori CCD." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4794,7 +5070,7 @@ "andare sprecata: si raccomanda pertanto di lasciare questa opzione " "disabilitata, a meno che non sia necessaria." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4804,7 +5080,7 @@ "desiderato farlo allineare al Nord, ma non ha raggiunto questo risultato e " "pertanto il reticolo risulta allineato alla parte superiore dello schermo." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4818,192 +5094,201 @@ "simile a quella che si potrebbe ottenere a occhio nudo attraverso un " "cannocchiale Telrad (o simili)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "In caso di problemi, prego contattarmi. Buon divertimento!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Tasti rapidi" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" "La chiave di blocco dei plugin può essere modificata nella scheda Generale." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[nessun tasto definito]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Attiva/disattiva la sovrapposizione dell'oculare." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Apri il menu di navigazione" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Abilita solo se un oggetto è selezionato" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Scala il cerchio dell'immagine" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Mappature dei tasti" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Attiva/disattiva vista oculare:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Apri il menu contestuale di navigazione:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interfaccia" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Pannello di controllo on-screen" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Usa gradi e minuti per il FOV del CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Generale" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Oculari" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Aggiungi" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nome:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Lunghezza focale" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Interruzione del campo:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binocoli" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Lenti" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensori" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Risoluzione x (pixel):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Risoluzione y (pixel):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Larghezza del chip (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Altezza del chip (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Larghezza del pixel (micron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Altezza del pixel (micron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Telescopi:" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diametro:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Ribaltamento orizzontale" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Ribaltamento verticale" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Informazioni" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelliti" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5011,88 +5296,148 @@ "Predizione delle posizioni di un satellite artificiale basate sui dati NORAD " "TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Il vecchio file saellites.json non è più compatibile - in uso il file di " "default" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "N° del catalogo" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Designante internazionale" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "satellite artificiale" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Intervallo (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Rapporto dell'intervallo (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitudine (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Sottopunto (Lat./Long.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Coordinate TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "Velocità TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Il satellite e l'osservatore sono alla luce del sole" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Il satellite è visibile." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Il satellite è eclissato." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Il satellite non è visibile" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Plugin dei satelliti di Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5100,18 +5445,18 @@ "Il plugin Satellites calcola la posizione di satelliti artificiali in orbita " "terrestre." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Note per gli utenti" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "I satelliti e le loro orbite sono visualizzati solamente quando " "l'osservatore è sulla Terra." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5122,7 +5467,7 @@ "Aspettatevi molte stranezze quando si guarda in date fuori da questo " "intervallo." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5132,7 +5477,7 @@ "aggiornare regolarmente i dati TLE." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5143,7 +5488,7 @@ "file di default %3. Il vecchio file sarà salvato col nome %4. Questo file si " "può trovare nella cartella dei dati utente, sotto \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5152,11 +5497,11 @@ "sono incomplete, mancanti o non del tutto funzionanti." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Aggiornamenti dei dati TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5166,7 +5511,7 @@ "per default, il plugin scaricherà nuovi dati quando i dati correnti saranno " "più vecchi di 72 ore. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5177,7 +5522,7 @@ "all'aggiornamento da un file sul tuo computer. Il file deve avere lo stesso " "formato degli aggiornamenti Celestrak (vedi come esempio %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5186,11 +5531,11 @@ "qualcosa fra parentesi quadre alla fine, verrà rimosso prima di utilizzare i " "dati." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Aggiunta di nuovi satelliti in corso" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5202,11 +5547,11 @@ "2. Aprire la scheda Satelliti e fare clic sul pulsante \"+\". Selezionare " "il/i satellite/i da aggiungere e selezionare il pulsante \"aggiungi\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Note tecniche" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5214,7 +5559,7 @@ "Le posizioni sono calcolate usando i modelli SGP4 & SDP4, usando come input " "dati NORAD TLE. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5223,24 +5568,26 @@ "sullo Spacetrack Report #3 rivisto (incluso lo Spacetrack Report #6) " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Consulta %1questo documento%2 per i dettagli" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Collegamenti" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5250,31 +5597,34 @@ "nell'oggetto del post." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Se hai una domanda, puoi %1ottenere una risposta qui%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "È possibile segnalare bug %1qui%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5282,120 +5632,140 @@ "Se vuoi richiedere una nuova funzionalità, puoi creare un bug report e " "scegliere la severity \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Aggiornamenti tramite internet disattivati" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Aggiornando ora..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Prossimo aggiornamento: < 1 minuto" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Prossimo aggiornamento: %1 minuti" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Prossimo aggiornamento: %1 ore" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Aggiorna dai file" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Errore dell'aggiornamento" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Aggiornato/i %1/%2 satellite/i; %3 sono mancanti" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 +msgid "[new source]" +msgstr "[nuova fonte]" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Aggiorna adesso" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 -msgid "[new source]" -msgstr "[nuova fonte]" +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Aggiorna dai file" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[errore di calcolazione dell'orbita]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[tutti quelli aggiunti recentemente]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[tutti quelli non mostrati]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[tutti quelli mostrati]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[tutti]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Scegli il file di aggiornamento TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Scaricamento dei dati in corso..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5403,175 +5773,195 @@ "Stellarium sta scaricando i dati dei satelliti dalle sorgenti di " "aggiornamento. Per favore, attendere..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Seleziona i file sorgenti TLE..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Elaborazione dati in corso..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Non è stato possibile scaricare i dati. Riprovare più tardi." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Catalogo numero: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Configurazione dei satelliti" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Aggiorna gli elenchi TLE da fonti su internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Aggiorna da fonti su internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Frequenza di aggiornamento (ore):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Etichette" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Dimensione del carattere dell'etichetta (pixel):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Linee orbitali" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Numero di segmenti utilizzati per disegnare la linea" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Numero di segmenti:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Durata di un singolo segmento in secondi" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Lunghezza del segmento (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Numero di segmenti usati per disegnare gli estremi della linea" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Lunghezza fade:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Ripristina le impostazioni predefinite" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Salva le impostazioni come predefinite" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Impostazioni" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Aggiungi altri satelliti" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Rimuovi i satelliti selezionati" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Salva i cambiamenti" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Numero del catalogo:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Mostra il/i satellite/i selezionato/i" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Visualizzato/i" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Mostra la linea dell'orbita per i satelliti selezionati" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Orbita" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Numero del catalogo:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Descrizione:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Gruppi:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Lista dei gruppi, separati da virgole" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Dati TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Dati dell'orbita del'elemento basati sul sistema Norad" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Rimuovi i satelliti selezionati" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Aggiungi altri satelliti" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Salva i cambiamenti" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5579,15 +5969,15 @@ "Inserisci o modifica l'URL della sorgente selezionata. Le modifiche sono " "salvate premendo Invio." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Aggiungi na nuova fonte" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Rimuovi la fonte selezionata" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Fonti" @@ -5623,11 +6013,11 @@ msgid "Discard" msgstr "Scarta" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Controllo telescopio" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5636,12 +6026,12 @@ "tipo \"slew\") ad un telescopio con montatura computerizzata (un telescopio " "\"go to\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Sposta il telescopio #%1 per l'oggetto selezionato" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Muovi il telescopio #%1 al punto corrente al centro dello schermo" @@ -6048,62 +6438,62 @@ "cambia il modo in cui ora e data sono indicati nella barra inferiore." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Gennaio" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Febbraio" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Marzo" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Aprile" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Maggio" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Giugno" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Luglio" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Agosto" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Settembre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Ottobre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Novembre" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Dicembre" @@ -6265,7 +6655,7 @@ "nella barra inferiore." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Formato dell'ora" @@ -6283,7 +6673,7 @@ msgstr "formato di 24 ore" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Formato di visualizzazione della data" @@ -6299,11 +6689,11 @@ msgid "mm-dd-yyyy" msgstr "mm-gg-aaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Interfaccia utente testuale" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6311,144 +6701,144 @@ "Implementazione plug-in dell'interfaccia utente testuale (TUI) della serie " "0.9.x, usata nei sistemi per planetario" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Corpo del Sistema Solare" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Data/ora corrente" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Imposta fuso orario" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Tasti data" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Data/orario di avvio preimpostati" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "sistema" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "preimpostata" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmggaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ggmmaaaa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "aaaammgg" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12 ore" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24 ore" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Lingua" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Visualizza le stelle" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Colori" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Nomi delle nebulose" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Suggerimenti per nebulose" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Linea del piano galattico" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Effetti" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Zoom manuale" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Moltiplicatore di scala magnitudine" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intensità della Via Lattea:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Frequenza etichette delle nebulose:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Durata dello zoom:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Timeout del cursore:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "La scelta del paesaggio seleziona la località" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Esegui script locale" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Interrompi lo script in esecuzione" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Script CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Amministrazione" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Carica la configurazione di default" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Salva la configurazione corrente" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Arresta" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[nessun nodo TUI]" @@ -6484,16 +6874,16 @@ "nel suo database online. Ancora in fase di implementazione." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Interroga il servizio %1 dell'MPC" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Se la ricerca ha successo, solo un risultato verrà restituito." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6501,7 +6891,7 @@ "Sia le comete che gli asteroidi possono essere identificati col loro numero, " "nome (in inglese) o designazione provvisoria." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6691,40 +7081,43 @@ msgid "Solar System" msgstr "Sistema Solare" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Supernovae storiche" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Plugin che mostra alcune storiche supernovae più luminose della magnitudine " -"visuale 10" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Tipo di supernova: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Plugin delle Supernovae storiche" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Un plugin che mostra alcune storiche supernovae di luminosità superiore alla " -"magnitudo 10: " #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Curvatura della luce" @@ -6746,7 +7139,7 @@ msgstr "Riconoscimenti" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "Ringraziamo le seguenti persone per il loro contributo e i commenti:" @@ -6760,14 +7153,14 @@ msgstr "Istituto per la Fisica Teorica e Sperimentale" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "in Russia" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6777,8 +7170,9 @@ "catalogo, possono %1essere trovate qui%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Prossimo aggiornamento: %1 giorni" @@ -6796,29 +7190,106 @@ msgstr "Configurazione del plugin delle Supernovae storiche" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Aggiorna il catalogo da Internet" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Aggiorna da fonti su internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Frequenza di aggiornamento (giorni):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[informazioni sul prossimo aggiornamento]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quasar" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6837,11 +7308,11 @@ msgid "Z (redshift): %1" msgstr "Z (redshift): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Plugin di Quasars" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6851,40 +7322,50 @@ "16. Catalogo di quasar compilato da \"Quasars and Active Galactic Nuclei\" " "(13th Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Quasars è aggiornato" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Configurazione di Quasars" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Configurazione dei plugin di Quasars" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Modalità visualizzazione per quasar" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Mostra tutte le quasar senza i nomi" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Attiva visualizzazione di distribuzione per quasar" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsar" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7012,11 +7493,11 @@ "stella di neutroni isolata con emissione termica pulsante di raggi X ma " "nessuna emissione radio rilevabile" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Plugin delle pulsar" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7027,67 +7508,71 @@ "(Manchester, R. N., Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, " "1993-2006 (2005) (%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Nota" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "Le pulsar si identificano con il prefisso 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Riconoscimento" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Osservatorio Radioastronomico di Pushchino" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Osservatorio radioastronomico di Nancay" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "in Francia" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsars è aggiornato" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Configurazione delle pulsar" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Configurazione dei plugin di Pulsars" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Modalità visualizzazione per pulsar" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Mostra tutte le quasar senza i nomi" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Attiva la visualizzazione della distribuzione per pulsar" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Esopianeti" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7096,71 +7581,71 @@ "degli esopianeti sono ricavati dalla 'Enciclopedia dei Pianeti Extrasolari' " "in exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metallicità" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Massa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Raggio" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Temperatura effettiva: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Esopianeta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Periodo" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "giorni" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Semiasse Maggiore" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "U.A." -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Eccentricità" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inclinazione" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Distanza angolare" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Anno del rilevamento" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Plugin degli esopianeti" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7170,7 +7655,7 @@ "esopianeti sono derivati dalla \"%1The Extrasolar Planets Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7179,42 +7664,131 @@ "Informazioni complete su questo plugin, sulla sua storia e sul formato del " "catalogo, possono %1essere trovate qui%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Esopianeti aggiornati" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Configurazione degli esopianeti" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Configurazione del pugin degli esopianeti" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Aggiorna i dati degli esopianeti da Internet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Modalità di visualizzazione degli esopianeti" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Analisi dell'osservabilità" @@ -7238,185 +7812,179 @@ "contenute in questo testo è contenuta nella scheda \"Informazioni\" della " "finestra di configurazione." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Gen" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Apr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Mag" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Giu" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Lug" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Ago" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Set" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Ott" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Dec" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Tramontato a %1 (in %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "E' sorto alle %1 (%2 fa)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "E' tramontato alle %1 (%2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Sorge alle %1 (%2 fa)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Circumpolare." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Non sorge." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Raggiunge il culmine a %1 (in %2) a %3 gr." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Ha raggiunto il culmine a %1 (%2 fa) a %3 gr." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "La sorgente non è osservabile." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Non c'è alba/tramonto Acronico o Cosmico." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Elongazione massima: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Massima separazione dal Sole: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (a %1 gr.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Alba/tramonto Acronico" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Non c'è alba/tramonto Acronico." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Alba/tramonto Cosmico" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Non c'è alba/tramonto Cosmico" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Osservabile durante l'intero anno." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Non osservabile nel cuore della notte." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Notti al di sopra dell'orizzonte: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "OGGI:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "QUEST'ANNO:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Luna piena precedente: %1 %2 alle %3:%4 " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Prossima Luna piena: %1 %2 at %3:%4. " @@ -7819,6 +8387,9 @@ #~ msgid "Other" #~ msgstr "Altro" +#~ msgid "Nebulas" +#~ msgstr "Nebulose" + #~ msgid "Sky Time At Start-up: " #~ msgstr "Ora celeste all'avvio: " @@ -7849,6 +8420,9 @@ #~ msgid "Form" #~ msgstr "Modulo" +#~ msgid "Nebulas background images" +#~ msgstr "Immagini di sfondo delle nebulose" + #~ msgid "Hourly zenith rate:" #~ msgstr "Frequenza oraria allo Zenith:" @@ -7943,6 +8517,16 @@ #~ msgid "Crosshairs" #~ msgstr "Mirino" +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Aggiornato/i %1/%2 satellite/i; %3 sono mancanti" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Aggiorna gli elenchi TLE da fonti su internet" + +#~ msgid "TLE data:" +#~ msgstr "Dati TLE:" + #~ msgid "Magnification provided by this ocular/telescope combination" #~ msgstr "Ingrandimento fornito da questa combinazione oculare/telescopio" @@ -7957,6 +8541,9 @@ #~ "Viene fornito supporto tramite il sito web di Launchpad. Assicurati di " #~ "mettere \"Satellites plugin\" nell'oggetto dei post." +#~ msgid "Comma separated list of groups" +#~ msgstr "Lista dei gruppi, separati da virgole" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -8019,6 +8606,13 @@ #~ msgid "The alt-azimuthal coordinates" #~ msgstr "Coordinate altazimutali" +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Plugin che mostra alcune storiche supernovae più luminose della magnitudine " +#~ "visuale 10" + #~ msgid "Additional info (Extra 2)" #~ msgstr "Info aggiuntive (Extra 2)" @@ -8031,6 +8625,15 @@ #~ msgid "Plugin Key Bindings" #~ msgstr "Chiave blocco plugin" +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Dati dell'orbita del'elemento basati sul sistema Norad" + +#~ msgid "Display mode for quasars" +#~ msgstr "Modalità visualizzazione per quasar" + +#~ msgid "Display mode for pulsars" +#~ msgstr "Modalità visualizzazione per pulsar" + #, qt-format #~ msgid "Obliquity (of date): %1" #~ msgstr "Inclinazione assiale (alla data): %1" @@ -8039,6 +8642,12 @@ #~ msgstr "Quintupla eclissi da Deimos nel 2027" #~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Salvaschermo di svariati avvenimenti nel Sistema Solare: 171 eventi in " +#~ "totale!" + +#~ msgid "" #~ "Phobos races ahead of Mars and eclipses the sun, passes thru it and then " #~ "retrogrades back towards the sun and just partially eclipses it (only seen " #~ "in the SH) again, then Mars totally eclipses the sun and Phobos, and then as " @@ -8077,6 +8686,13 @@ #~ "Questo script mostra l'analemma - il percorso del Sole attraverso il cielo " #~ "durante l'anno." +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Un plugin che mostra alcune storiche supernovae di luminosità superiore alla " +#~ "magnitudo 10: " + #~ msgid "A tour via western constellations." #~ msgstr "Un giro per le costellazioni occidentali." diff -Nru stellarium-0.12.1/po/stellarium/ja.po stellarium-0.12.4/po/stellarium/ja.po --- stellarium-0.12.1/po/stellarium/ja.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ja.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-02-28 17:23+0000\n" -"Last-Translator: Shushi Kurose \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-07-13 01:31+0000\n" +"Last-Translator: Kaori YOKOZAWA \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:15+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "å­åˆç·š" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "黄é“" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "天ã®èµ¤é“" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "地平線" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "銀河é¢" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "作者: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "場所: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "惑星: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "種類: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" -msgstr "" +msgstr "等級: %1 (大気減光時: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "等級: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "大ãã•: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "銀河系" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "散開星団" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "çƒçŠ¶æ˜Ÿå›£" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "星雲" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "惑星状星雲" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "星雲を伴ã†æ˜Ÿå›£" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ä¸æ˜Ž" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "未登録" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "絶対等級: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "è·é›¢: %1天文å˜ä½ (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "è·é›¢: %1天文å˜ä½" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "視直径: %1, リングをå«ã‚€: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "見ã‹ã‘ã®ç›´å¾„: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" -msgstr "" +msgstr "æ’星周期: %1æ—¥ (%2ユリウス年)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" -msgstr "" +msgstr "æ’星日: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" -msgstr "" +msgstr "å¹³å‡å¤ªé™½æ—¥: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "ä½ç›¸è§’: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "離角: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "ä½ç›¸: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "照度: %1%" @@ -204,10 +204,10 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" -msgstr "" +msgstr "æ’星" #: src/core/modules/StarWrapper.cpp:57 #, qt-format @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "爆発変光星" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "脈動変光星" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "回転変光星" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "激変星" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "食変光星" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "変光星" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" -msgstr "" +msgstr "二é‡æ˜Ÿ" + +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "種類: %1ã€%2" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "等級: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "等級ã®ç¯„囲: %1%2%3 (測光システム: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "表é¢æ¸©åº¦ã«ã‚ˆã‚‹åˆ†é¡ž: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "è·é›¢: %1 光年" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "両眼視差: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "変光周期: %1 æ—¥" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "宇宙船" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "エラー" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -592,23 +684,23 @@ #: src/core/StelObject.cpp:96 #, qt-format msgid "RA/DE (J2000): %1/%2" -msgstr "赤経/赤緯(J2000): %1/%2" +msgstr "赤経/赤緯 (J2000): %1/%2" #: src/core/StelObject.cpp:103 #, qt-format msgid "RA/DE (of date): %1/%2" -msgstr "赤経/赤緯(日付): %1/%2" +msgstr "赤経/赤緯 (瞬時): %1/%2" #: src/core/StelObject.cpp:111 #, qt-format msgid "Galactic longitude/latitude: %1/%2" -msgstr "" +msgstr "銀経/銀緯: %1/%2" #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:124 #: src/core/StelObject.cpp:127 #, qt-format msgid "Hour angle/DE: %1/%2" -msgstr "時角: %1/%2" +msgstr "時角/赤緯: %1/%2" #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:140 msgid "(geometric)" @@ -644,52 +736,53 @@ msgid "Found" msgstr "見ã¤ã‹ã‚Šã¾ã—ãŸ" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "スクリーンショットをä¿å­˜ã™ã‚‹ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠž" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "起動時ã®è¦–野: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "起動時ã®æ–¹ä½: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "作者" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "連絡先" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "作者" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ライセンス" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "実行中ã®ã‚¹ã‚¯ãƒªãƒ—ト: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "実行中ã®ã‚¹ã‚¯ãƒªãƒ—ト: [ãªã—]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -697,16 +790,16 @@ "æ–°ã—ã„星表ã®ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ãŒçµ‚了ã—ã¾ã—ãŸï¼\n" "表示ã™ã‚‹ã«ã¯ Stellarium ã‚’å†èµ·å‹•ã—ã¦ãã ã•ã„。" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "利用å¯èƒ½ãªã™ã¹ã¦ã®æ˜Ÿè¡¨ãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¾ã—ãŸã€‚" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "カタログã®å–å¾— %1 / %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -715,7 +808,7 @@ "ダウンロード中 %1...\n" "(ã“ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‰ã˜ã¦ã‚‚構ã„ã¾ã›ã‚“)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -726,7 +819,7 @@ "星ã®æ•°: %2 Million\n" "等級: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -735,11 +828,11 @@ "ダウンロード中ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—㟠%1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "ファイルã®æ•´åˆæ€§ã‚’確èªã—ã¦ã„ã¾ã™..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -749,115 +842,123 @@ "ファイルãŒç ´æã—ã¦ã„ã¾ã™ã€‚" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" -msgstr "" +msgstr "補正ãªã—" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1020,49 +1121,53 @@ msgid "OSX Developer: %1" msgstr "OSX 開発者: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "スクリプトコンソール画é¢" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "ウィンドウ" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" -msgstr "宇宙" +msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "説明ãŒã‚ã‚Šã¾ã›ã‚“" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "æµã‚Œæ˜Ÿã‚’表示ã—ãªã„" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "通常" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "通常ã®ãƒšãƒ«ã‚»ã‚¦ã‚¹æµæ˜Ÿç¾¤" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "ã—ã—座æµæ˜Ÿç¾¤ã®å¤šã„ã¨ã" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "1966å¹´ã®ã—ã—座æµæ˜Ÿç¾¤" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "æ–°ã—ã„場所" @@ -1165,19 +1270,19 @@ msgid "starchart" msgstr "星座表" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "ストラスブール大学(フランス)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "ãƒãƒ¼ãƒãƒ¼ãƒ‰å¤§å­¦(アメリカ)" @@ -1193,30 +1298,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "ã“ã®ã‚·ã‚¹ãƒ†ãƒ ã¯ Open GL ã«å¯¾å¿œã—ã¦ã„ã¾ã›ã‚“." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "太陽" @@ -1233,12 +1344,12 @@ msgstr "地çƒ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "月" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "ç«æ˜Ÿ" @@ -1336,7 +1447,7 @@ msgstr "メティス" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "土星" @@ -1420,7 +1531,7 @@ #. TRANSLATORS: Moon of Pluto (III) #: src/translations.h:84 msgid "Hydra (moon)" -msgstr "" +msgstr "ヒドラ (衛星)" #: src/translations.h:85 msgid "Eris" @@ -1490,17 +1601,17 @@ #. TRANSLATORS: TNO/Asteroid (50000) Quaoar #: src/translations.h:104 msgid "Quaoar" -msgstr "" +msgstr "クワオアー" #. TRANSLATORS: TNO/Asteroid (90482) Orcus #: src/translations.h:106 msgid "Orcus" -msgstr "" +msgstr "オルクス" #. TRANSLATORS: TNO/Asteroid (136108) Haumea #: src/translations.h:108 msgid "Haumea" -msgstr "" +msgstr "ãƒã‚¦ãƒ¡ã‚¢" #. TRANSLATORS: Asteroid (5) Astraea #: src/translations.h:111 @@ -1555,12 +1666,12 @@ #. TRANSLATORS: Asteroid (20000) Varuna #: src/translations.h:133 msgid "Varuna" -msgstr "" +msgstr "ヴァルナ" #. TRANSLATORS: Asteroid (136472) Makemake #: src/translations.h:135 msgid "Makemake" -msgstr "" +msgstr "マケマケ" #. TRANSLATORS: Name of supernova SN 1572A and script name #: src/translations.h:138 @@ -1634,239 +1745,268 @@ msgstr "イヌイット" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "ヴェーダ" + +#: src/translations.h:171 msgid "Korean" msgstr "韓国" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "ラコタ" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "マオリ" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "ナãƒãƒ›" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "北欧" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "ãƒãƒªãƒã‚·ã‚¢" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "サーミ" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" -msgstr "トゥピ・グアラニー語" +msgstr "トゥピ・グアラニー" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" -msgstr "" +msgstr "トンガ" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "西洋" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "ゲラン" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "木々" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "ãƒãƒªã‚±ãƒ¼ãƒ³" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "æµ·" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "ガーヒンク" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "風景ツアー" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "部分月食" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "皆既月食" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "スクリーンセーãƒãƒ¼" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "2009å¹´ã®æ—¥é£Ÿ" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" -msgstr "" +msgstr "スタートアップスクリプト" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "太陽系スクリーンセーãƒãƒ¼" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "星座ツアー" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "アナレンマ" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "部分月食をデモンストレーションã™ã‚‹ã‚¹ã‚¯ãƒªãƒ—ト" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "皆既月食をデモンストレーションã™ã‚‹ã‚¹ã‚¯ãƒªãƒ—ト" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "2009å¹´ã«èµ·ã“ã£ãŸçš†æ—¢æ—¥é£Ÿã‚’デモンストレーションã™ã‚‹ã‚¹ã‚¯ãƒªãƒ—ト (ä½ç½®=ランプル, ãƒãƒ³ã‚°ãƒ©ãƒ‡ã‚£ãƒƒã‚·ãƒ¥)" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "起動時ã«è‡ªå‹•å®Ÿè¡Œã™ã‚‹ã‚¹ã‚¯ãƒªãƒ—ト" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1876,1502 +2016,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "アンドラ公国" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "アラブ首長国連邦" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "アフガニスタン" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "アンティグア・ãƒãƒ¼ãƒ–ーダ" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "アンギラ" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "アルãƒãƒ‹ã‚¢å…±å’Œå›½" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "アルメニア" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "オランダ領アンãƒãƒ«" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "アンゴラ" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "å—極" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "アルゼンãƒãƒ³" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" -msgstr "米国領サモア" +msgstr "アメリカ領サモア" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "オーストリア" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "オーストラリア" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" -msgstr "" +msgstr "アルãƒ" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "アゼルãƒã‚¤ã‚¸ãƒ£ãƒ³å…±å’Œå›½" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "ボスニア・ヘルツェゴビナ" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "ãƒãƒ«ãƒãƒ‰ã‚¹" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "ãƒãƒ³ã‚°ãƒ©ãƒ‡ã‚·ãƒ¥" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "ベルギー" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "ブルキナファソ" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "ブルガリア" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "ãƒãƒ¼ãƒ¬ãƒ¼ãƒ³" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "ブルンジ" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "ベナン共和国" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "ãƒãƒŸãƒ¥ãƒ¼ãƒ€è«¸å³¶" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "ブルãƒã‚¤ãƒ»ãƒ€ãƒ«ã‚µãƒ©ãƒ¼ãƒ å›½" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "ボリビア" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "ブラジル" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "ãƒãƒãƒž" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "ブータン王国" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "ブーベ島" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "ボツワナ" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "ベラルーシ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "ベリーズ" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "カナダ" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" -msgstr "" +msgstr "ココス諸島" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "コンゴ民主共和国" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "中央アフリカ共和国" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "コンゴ共和国" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "スイス" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" -msgstr "" +msgstr "コートジボワール" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "クック諸島" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "ãƒãƒª" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "カメルーン" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "中国" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "コロンビア" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "コスタリカ" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "セルビア・モンテãƒã‚°ãƒ­" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "キューãƒ" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "カーボベルデ" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "クリスマス島" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "キプロス" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ãƒã‚§ã‚³" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "ドイツ" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "ジブãƒ" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "デンマーク" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "ドミニカ国" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "ドミニカ共和国" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "アルジェリア" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "エクアドル" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "エストニア" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "エジプト" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "西サãƒãƒ©" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "エリトリア" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "スペイン" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "エãƒã‚ªãƒ”ã‚¢" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "フィンランド" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "フィジー" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "フォークランド諸島" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "ミクロãƒã‚·ã‚¢" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "フェロー諸島" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "フランス" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "ガボン" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "イギリス" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "グレナダ" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ジョージア州" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" -msgstr "ä»é ˜ã‚®ã‚¢ãƒŠ" +msgstr "フランス領ギアナ" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "ガーナ" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "ジブラルタル" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "グリーンランド" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "ガンビア" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "ギニア" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "グアドループ" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "赤é“ギニア共和国" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "ギリシャ" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" -msgstr "" +msgstr "サウスジョージア・サウスサンドウィッãƒè«¸å³¶" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "グアテマラ" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "グアム" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" -msgstr "" +msgstr "ギニアビサウ" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "ガイアナ" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "香港" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ホンジュラス" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "クロアãƒã‚¢" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "ãƒã‚¤ãƒ" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "ãƒãƒ³ã‚¬ãƒªãƒ¼" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "インドãƒã‚·ã‚¢" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "アイルランド" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "イスラエル" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "インド" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" -msgstr "英国領インド洋地域" +msgstr "イギリス領インド洋地域" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "イラク" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "イラン" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "アイスランド" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "イタリア" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "ジャマイカ" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "ヨルダン" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "日本" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "ケニア" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "キルギスタン共和国" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "カンボジア王国" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "キリãƒã‚¹" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "コモロ・イスラム連邦共和国" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "セントクリストファー・ãƒã‚¤ãƒ“ス" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "北æœé®® (æœé®®æ°‘主主義人民共和国)" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "韓国 (大韓民国)" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "クウェート" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "ケイマン諸島" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "カザフスタン" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" -msgstr "" +msgstr "ラオス" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "レãƒãƒŽãƒ³" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "セントルシア" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "リヒテンシュタイン公国" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "スリランカ" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "リベリア" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "レソト" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "リトアニア" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ルクセンブルク" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "ラトビア" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "社会主義人民リビア・アラブ国" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "モロッコ" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "モナコ" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" -msgstr "" +msgstr "モルドãƒ" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "マダガスカル" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "マーシャル諸島" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "マケドニア" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "マリ" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "ミャンマー" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "モンゴル" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" -msgstr "" +msgstr "マカオ" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" -msgstr "" +msgstr "北マリアナ諸島" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "マルティニーク" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "モーリタニア" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "モントセラト(英国統治)" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "マルタ" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "モーリシャス" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "モルジブ" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "マラウイ" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "メキシコ" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "マレーシア" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "モザンビーク" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "ナミビア" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "ニューカレドニア" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "ニジェール" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "ノーフォーク島" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "ナイジェリア" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "ニカラグア" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "オランダ" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "ノルウェー" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "ãƒãƒ‘ール" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "ナウル共和国" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "ニウエ" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "ニュージーランド" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "オマーン国" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "パナマ" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "ペルー" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "ä»é ˜ãƒãƒªãƒã‚·ã‚¢" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "パプアニューギニア" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "フィリピン" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "パキスタン" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "ãƒãƒ¼ãƒ©ãƒ³ãƒ‰" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "サンピェール島・ミクロン島" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "ピトケアン島" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "プエルトリコ" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" -msgstr "" +msgstr "パレスãƒãƒŠè‡ªæ²»åŒº" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "ãƒãƒ«ãƒˆã‚¬ãƒ«" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "パラオ" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "パラグアイ" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "カタール" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" -msgstr "" +msgstr "レユニオン" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "ルーマニア" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" -msgstr "" +msgstr "セルビア" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "ロシア連邦" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "ルワンダ" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "サウジアラビア" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "ソロモン諸島" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "セーシェル" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "スーダン" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "スウェーデン" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "シンガãƒãƒ¼ãƒ«" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "セントヘレナ島" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "スロベニア" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "スãƒãƒ¼ãƒ«ãƒãƒ«è«¸å³¶ãƒ»ãƒ¤ãƒ³ãƒžã‚¤ã‚¨ãƒ³å³¶" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "スロãƒã‚­ã‚¢" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "シエラレオãƒ" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "サンマリノ共和国" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "ã‚»ãƒã‚¬ãƒ«" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "ソマリア" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "スリナム共和国" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "サントメ・プリンシペ民主共和国" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "エルサルãƒãƒ‰ãƒ«" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "シリア・アラブ共和国" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "スワジランド" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "タークス諸島・カイコス諸島" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "ãƒãƒ£ãƒ‰" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "フランス領極å—諸島" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "トーゴ" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "タイ" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "タジキスタン共和国" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" -msgstr "" +msgstr "トケラウ" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "æ±ãƒãƒ¢ãƒ¼ãƒ«" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "トルクメニスタン" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ãƒãƒ¥ãƒ‹ã‚¸ã‚¢" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "トンガ王国" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "トルコ" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "トリニダード・トãƒã‚´" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "ツãƒãƒ«" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "å°æ¹¾" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "タンザニア" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "ウクライナ" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "ウガンダ" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "アメリカåˆè¡†å›½å¤–諸島" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" -msgstr "" +msgstr "アメリカåˆè¡†å›½" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "ウルグアイ" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "ウズベキスタン" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" -msgstr "" +msgstr "ãƒãƒã‚«ãƒ³å¸‚国" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "ベãƒã‚ºã‚¨ãƒ©" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" -msgstr "" +msgstr "イギリス領ヴァージン諸島" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" -msgstr "" +msgstr "アメリカ領ヴァージン諸島" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "ベトナム社会主義共和国" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "ãƒãƒŒã‚¢ãƒ„" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "ワリス・フテュナ諸島" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "サモア" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "イエメン" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "マヨット海外準県" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ユーゴスラビア" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "å—アフリカ" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "ザンビア" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "ジンãƒãƒ–エ" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "日付ã¨æ™‚刻" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" -msgstr "æ’星時ã§ä¸€æ—¥é€²ã‚€" +msgstr "æ’星時ã§1日進む" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" -msgstr "" +msgstr "æ’星時ã§1ヶ月進む" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" -msgstr "æ’星時ã§ä¸€é€±é–“進む" +msgstr "æ’星時ã§1週間進む" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" -msgstr "" +msgstr "æ’星時ã§1年進む" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" -msgstr "" +msgstr "æ’星時ã§1世紀進む" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" -msgstr "太陽時ã§ä¸€æ—¥é€²ã‚€" +msgstr "太陽時ã§1日進む" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "太陽時ã§ä¸€æ™‚間進む" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" -msgstr "太陽時ã§ä¸€é€±é–“進む" +msgstr "太陽時ã§1週間進む" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" -msgstr "スクリプトã®å®Ÿè¡Œãƒ¬ãƒ¼ãƒˆã‚’é…ã‚ã‚‹" +msgstr "スクリプトã®å®Ÿè¡Œé€Ÿåº¦ã‚’é…ãã™ã‚‹" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "時間を戻ã™" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "時間を戻㙠(å°‘ã—)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" -msgstr "スクリプトã®ã‚®ãƒ­ãƒãƒ³ãƒ¬ãƒ¼ãƒˆã‚’æ—©ã‚ã‚‹" +msgstr "スクリプトã®å®Ÿè¡Œé€Ÿåº¦ã‚’速ã‚ã‚‹" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "時間を進ã‚ã‚‹" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "時間を進ã‚ã‚‹ (å°‘ã—)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" -msgstr "" +msgstr "スクリプトã®å®Ÿè¡Œã‚’休止ã™ã‚‹" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" -msgstr "" +msgstr "スクリプトã®å®Ÿè¡Œã‚’å†é–‹ã™ã‚‹" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "ç¾åœ¨æ™‚刻ã«è¨­å®š" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" -msgstr "スクリプトã®ã‚®ãƒ­ãƒãƒ³ãƒ¬ãƒ¼ãƒˆã«ã™ã‚‹" +msgstr "標準ã®ã‚¹ã‚¯ãƒªãƒ—ト実行速度を設定ã™ã‚‹" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "標準ã®æ™‚é–“ã®é€²ã¿ã«ã™ã‚‹" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "時間ã®é€²ã¿ã‚’æ­¢ã‚ã‚‹" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" -msgstr "" +msgstr "スクリプトã®å®Ÿè¡Œã‚’åœæ­¢ã™ã‚‹" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" -msgstr "æ’星時ã§ä¸€æ—¥æˆ»ã‚‹" +msgstr "æ’星時ã§1日戻る" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" -msgstr "" +msgstr "æ’星時ã§1ヶ月戻る" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" -msgstr "æ’星時ã§ä¸€é€±é–“戻る" +msgstr "æ’星時ã§1週間戻る" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" -msgstr "" +msgstr "æ’星時ã§1年戻る" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" -msgstr "" +msgstr "æ’星時ã§1世紀戻る" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" -msgstr "太陽時ã§ä¸€æ—¥æˆ»ã‚‹" +msgstr "太陽時ã§1日戻る" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" -msgstr "太陽時ã§ä¸€æ™‚間戻る" +msgstr "太陽時ã§1時間戻る" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" -msgstr "太陽時ã§ä¸€é€±é–“戻る" +msgstr "太陽時ã§1週間戻る" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "ç”»é¢è¨­å®š" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "å·¦å³ã®åˆ‡ã‚Šæ›¿ãˆ" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "全画é¢è¡¨ç¤º" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "大気" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" -msgstr "æ–¹ä½è§’ã®è¡¨ç¤º" +msgstr "æ–¹ä½è§’" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "æ–¹ä½" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "星座絵" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "星座ã®å¢ƒç•Œç·š" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "星座å" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "星座線" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "星雲ã®èƒŒæ™¯" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "黄経/黄緯 (J2000)" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "黄é“ç·š" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "天ã®èµ¤é“" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "赤経/赤緯" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "赤経/赤緯 (J2000)" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "ã‚‚ã‚„" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "銀河角" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "銀河é¢" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "地表" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "地平線" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "å­åˆç·š" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "星雲" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "夜間照明" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" -msgstr "" +msgstr "惑星å" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "惑星軌é“" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "惑星ã®è¶³è·¡" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "æ’星" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" -msgstr "" +msgstr "æ’星å" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "上下ã®åˆ‡ã‚Šæ›¿ãˆ" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "ãã®ä»–" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "横メニューを自動ã§éš ã™" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "縦メニューを自動ã§éš ã™" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "終了" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "é¸æŠžã•ã‚ŒãŸå¤©ä½“ã®æƒ…報をクリップボードã«ã‚³ãƒ”ー" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "スクリーンショットをä¿å­˜" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "赤é“å„€ã€çµŒç·¯å°" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "GUI 表示ã®åˆ‡ã‚Šæ›¿ãˆ" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "å‹•ãã¨é¸æŠž" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "天体を画é¢ä¸­å¿ƒã¸" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "é¸æŠžã—ãŸæƒ‘星をæ¯æ˜Ÿã¨ã™ã‚‹" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "天体を追尾" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "é¸æŠžã•ã‚ŒãŸå¤©ä½“ã«ã‚ºãƒ¼ãƒ ã‚¤ãƒ³" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "ズームアウト" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "角度測定" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "æ–¹ä½ç£é‡ã®ãƒžãƒ¼ã‚¯" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" -msgstr "" +msgstr "太陽系外惑星を表示" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "パルサーを表示" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "クエーサーを表示" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "衛星設定ウィンドウ" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "衛星ラベル" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "スクリプト" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "設定画é¢" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "日付/時刻" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "ヘルプ画é¢" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "ç¾åœ¨ä½ç½®" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "検索画é¢" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "ショートカット画é¢" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "空ã¨è¡¨ç¤ºã®è¨­å®š" @@ -3397,7 +3573,7 @@ msgstr "æ›´æ–°" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "観測場所" @@ -3413,10 +3589,10 @@ msgid "Return to default" msgstr "デフォルトã«æˆ»ã™" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "削除" @@ -3425,7 +3601,7 @@ msgstr "リストã«è¿½åŠ ã™ã‚‹" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "緯度:" @@ -3436,12 +3612,12 @@ msgstr "10進法ã§ã®åº¦æ•°ã€ã¾ãŸã¯dmså½¢å¼ã‚’使用ã—ã¦å€¤ã‚’入れるã“ã¨ãŒã§ãã¾ã™ã€‚例 +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "経度:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "高度:" @@ -3465,363 +3641,407 @@ msgid "Planet:" msgstr "惑星:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "天体を検索" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "天体ã¾ãŸã¯ä½ç½®ã‚’検索" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "イオタ" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "アルファ" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "ベータ" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "ガンマ" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "デルタ" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "エプシロン" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "ゼータ" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "エータ" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "シータ" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "カッパ" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "ラムダ" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "ミュー" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ニュー" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "クサイ" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "オミクロン" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "パイ" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ロー" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "シグマ" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "タウ" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ウプシロン" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "ファイ" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "カイ" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "プシー" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "オメガ" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "天体" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "赤経/赤緯 (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "ä½ç½®" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "オプション" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "オプション" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "表示" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "空" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "表示方法" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "背景" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "星ã®æ–‡åŒ–" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "åå‰ã¨ãƒžãƒ¼ã‚«ãƒ¼" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "惑星" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "深宇宙天体 (星団ã€éŠ€æ²³ã€æ˜Ÿé›²) ã®åå‰ã¨ãƒžãƒ¼ã‚«ãƒ¼" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "惑星ã¨è¡›æ˜Ÿ" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "惑星を表示" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "惑星マーカーを表示" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "惑星ã®è»Œé“を表示" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "å…‰ã®åˆ°é”時間ã®äºˆæ¸¬" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "月を拡大" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "大気を表示" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "光害:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "圧力, 温度, å¸å…‰åº¦" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "屈折/å¸å…‰ã®è¨­å®š..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "絶対等級:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "相対値:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" -msgstr "" +msgstr "天ã®å·ã®æ˜Žã‚‹ã•:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "ã¾ãŸãŸã:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "éžå¸¸ã«æ˜Žã‚‹ã„天体ãŒã‚ã‚‹å ´åˆã€æš—ã„天体を見ãˆã«ããã™ã‚‹" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "明暗ã®å†ç¾" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "æµã‚Œæ˜Ÿ" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" -msgstr "" +msgstr "天頂出ç¾æ•°" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" -msgstr "" +msgstr "等級ã®åˆ¶é™" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "æ’星ã®ç­‰ç´šã‚’制é™ã™ã‚‹" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "深宇宙天体 (星団ã€éŠ€æ²³ã€æ˜Ÿé›²) ã®ç­‰ç´šã‚’制é™ã™ã‚‹" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "星座" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "星座線ã®è¡¨ç¤º" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "åå‰ã®è¡¨ç¤º" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "星座ã®å¢ƒç•Œç·š" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "星座絵ã®è¡¨ç¤º" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "星座絵ã®æ˜Žã‚‹ã•:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "天çƒ" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" -msgstr "" +msgstr "天ã®èµ¤é“を表示" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" -msgstr "" +msgstr "å­åˆç·šã‚’表示" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" -msgstr "" +msgstr "地平線を表示" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" -msgstr "" +msgstr "黄é“を表示" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "銀河é¢ã®ç·šã‚’表示" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "投影法" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "背景ã®è¿½åŠ /削除..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "地表を表示" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "霧を表示" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "関連ã™ã‚‹æƒ‘星ã¨ä½ç½®ã‚’使ã†" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "ã“ã®å ´æ‰€ã‚’デフォルトã«è¨­å®š" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "ã“ã®æ˜Ÿã®æ–‡åŒ–をデフォルトã«è¨­å®š" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "表示" @@ -3872,7 +4092,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Stellarium 起動時ã®è¦–点ã®æ–¹å‘" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "é¸æŠžã•ã‚ŒãŸå¤©ä½“ã®æƒ…å ±" @@ -3888,11 +4108,8 @@ msgid "Display no information" msgstr "情報を表示ã—ãªã„" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "ãªã—" @@ -3902,11 +4119,11 @@ #: src/ui_configurationDialog.h:1004 msgid "Short" -msgstr "短ã„" +msgstr "ç°¡æ½”ã«" #: src/ui_configurationDialog.h:1006 msgid "Display user settings information" -msgstr "" +msgstr "ユーザーãŒè¨­å®šã—ãŸæƒ…報を表示" #: src/ui_configurationDialog.h:1008 msgid "Customized" @@ -3914,19 +4131,19 @@ #: src/ui_configurationDialog.h:1009 msgid "Displayed fields" -msgstr "" +msgstr "表示ã™ã‚‹é …ç›®" #: src/ui_configurationDialog.h:1011 msgid "Geocentric equatorial coordinates, equinox of J2000.0" -msgstr "" +msgstr "J2000.0分点ã«ã‚ˆã‚‹èµ¤é“座標" #: src/ui_configurationDialog.h:1013 msgid "Right ascension/Declination (J2000)" -msgstr "" +msgstr "赤経/赤緯 (J2000)" #: src/ui_configurationDialog.h:1015 msgid "Horizontal coordinates" -msgstr "" +msgstr "地平座標" #: src/ui_configurationDialog.h:1017 msgid "Altitude/Azimuth" @@ -3934,36 +4151,36 @@ #: src/ui_configurationDialog.h:1018 msgid "Visual magnitude" -msgstr "" +msgstr "実視等級" #: src/ui_configurationDialog.h:1019 msgid "Absolute magnitude" -msgstr "" +msgstr "絶対等級" #: src/ui_configurationDialog.h:1020 msgid "Catalog number(s)" -msgstr "" +msgstr "カタログ番å·" #: src/ui_configurationDialog.h:1021 #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:269 msgid "Name" -msgstr "" +msgstr "åå‰" #: src/ui_configurationDialog.h:1023 msgid "Geocentric equatorial coordinates, equinox of date" -msgstr "" +msgstr "瞬時分点ã«ã‚ˆã‚‹èµ¤é“座標" #: src/ui_configurationDialog.h:1025 msgid "Right ascension/Declination (of date)" -msgstr "" +msgstr "赤経/赤緯 (瞬時)" #: src/ui_configurationDialog.h:1027 msgid "Galactic coordinates, equinox of J2000.0" -msgstr "" +msgstr "J2000.0分点ã«ã‚ˆã‚‹éŠ€æ²³åº§æ¨™" #: src/ui_configurationDialog.h:1029 msgid "Longitude/Latitude (J2000)" -msgstr "" +msgstr "銀経/銀緯 (J2000)" #: src/ui_configurationDialog.h:1031 msgid "Topocentric equatorial coordinates" @@ -3971,7 +4188,7 @@ #: src/ui_configurationDialog.h:1033 msgid "Hour angle/Declination" -msgstr "" +msgstr "時角/赤緯" #: src/ui_configurationDialog.h:1034 msgid "Distance" @@ -3979,27 +4196,27 @@ #: src/ui_configurationDialog.h:1036 msgid "Angular or physical size" -msgstr "" +msgstr "角度ã¾ãŸã¯å®Ÿéš›ã®å¤§ãã•" #: src/ui_configurationDialog.h:1038 msgid "Size" -msgstr "" +msgstr "大ãã•" #: src/ui_configurationDialog.h:1040 msgid "Spectral class, nebula type, etc." -msgstr "" +msgstr "スペクトル型ã€æ˜Ÿé›²ã®ç¨®é¡žãªã©" #: src/ui_configurationDialog.h:1042 msgid "Additional information 1" -msgstr "" +msgstr "追加情報1" #: src/ui_configurationDialog.h:1046 msgid "Additional information 2" -msgstr "" +msgstr "追加情報2" #: src/ui_configurationDialog.h:1047 msgid "Additional information 3" -msgstr "" +msgstr "追加情報3" #: src/ui_configurationDialog.h:1048 msgid "Control" @@ -4023,18 +4240,18 @@ #: src/ui_configurationDialog.h:1059 msgid "Hides the mouse cursor when inactive" -msgstr "マウスカーソルを時間ã¨å…±ã«æ¶ˆã™" +msgstr "æ“作ãŒãªã„時マウスカーソルを消ã™ã¾ã§ã®ç§’æ•°" #: src/ui_configurationDialog.h:1061 msgid "Mouse cursor timeout:" -msgstr "" +msgstr "カーソルを消ã™ã¾ã§ã®æ™‚é–“:" #: src/ui_configurationDialog.h:1063 msgid "seconds" msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "起動時ã®æ—¥ä»˜ã¨æ™‚刻" @@ -4046,182 +4263,192 @@ msgid "Other:" msgstr "ãã®ä»–:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "ç¾åœ¨ã®è¨­å®šã‚’使用" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Stellarium をシステム時計ã®æ—¥ä»˜ã¨æ™‚刻ã§èµ·å‹•ã™ã‚‹" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "システムã®æ—¥ä»˜ã¨æ™‚刻" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "次ã®èµ·å‹•ã‹ã‚‰ã“ã®æ™‚é–“ã§å›ºå®šã—ã¦è¡¨ç¤ºã‚’開始ã™ã‚‹ã€‚" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "システムã®æ—¥ä»˜:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" -msgstr "" +msgstr "自転速度補正" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "プラãƒã‚¿ãƒªã‚¦ãƒ è¨­å®š" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "çƒé¢ã¸æŠ•å½±ã™ã‚‹æ™‚ã«çƒé¢åŠ¹æžœã‚’出ã™ã€‚" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "çƒé¢é¡åŠ¹æžœ" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "望é é¡ãªã©ã§è¦—ã„ãŸã¨ãã®ã‚ˆã†ã«å††å½¢ã®ç¸ã‚’表示ã™ã‚‹" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "表示領域を円形ã«" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "星座ã®é¸æŠžæ™‚ã«ä»–ã‚’éš ã™" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "一ã¤ã®æ˜Ÿåº§ã‚’é¸æŠž" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "表示を地平線ã¨å¹³è¡Œã«ã™ã‚‹" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "é‡åŠ›è¡¨ç¤º" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." -msgstr "" +msgstr "星雲ã®èƒŒæ™¯ã®è¡¨ç¤ºã‚’切り替ãˆã‚‹" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "星雲ã®èƒŒæ™¯ãƒœã‚¿ãƒ³ã‚’表示" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "上下左å³åˆ‡ã‚Šæ›¿ãˆãƒœã‚¿ãƒ³ã‚’下ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã¸è¡¨ç¤ºã™ã‚‹" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "上下左å³åˆ‡ã‚Šæ›¿ãˆãƒœã‚¿ãƒ³ã‚’表示" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "\"自動ズームアウト\"ボタンを押ã™ã¨ã€èµ·å‹•æ™‚ã®è¦–野ã¨æ–¹ä½ã¸æˆ»ã‚Šã¾ã™" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "自動視点ã€å…ƒã®æ–¹ä½ã«æˆ»ã™" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "惑星ã¨æœˆã«å¤ªé™½ã®å½±ã‚’æã (OpenGLãƒãƒ¼ã‚¸ãƒ§ãƒ³2以é™ãŒå¿…è¦)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "太陽ã®å½±ã‚’æç”»" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "スクリーンショット" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "ä¿å­˜å…ˆ" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "色ã®å転" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "星表ã®ã‚¢ãƒƒãƒ—デート" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "クリックã™ã‚‹ã¨ãƒ€ã‚¦ãƒ³ãƒ­ãƒ¼ãƒ‰ã‚’開始ã—ã¾ã™" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "多ãã®æ˜Ÿã‚’表示ã™ã‚‹ãŸã‚ファイルをダウンロード" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "ダウンロードをå†é–‹" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "å†è©¦è¡Œ" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "ダウンロードをåœæ­¢ã—ã¾ã™ã€‚後ã§ã„ã¤ã§ã‚‚å†é–‹ã§ãã¾ã™ã€‚" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "キャンセル" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "スクリプトã®å®Ÿè¡Œæ™‚ã«ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‰ã˜ã‚‹" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "é¸æŠžã—ãŸã‚¹ã‚¯ãƒªãƒ—トを実行" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "実行中ã®ã‚¹ã‚¯ãƒªãƒ—トをåœæ­¢" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "起動時ã«å®Ÿè¡Œ" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "設定" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "メイン" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "情報" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "ナビゲーション" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "ツール" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "プラグイン" @@ -4304,15 +4531,15 @@ #: src/ui_scriptConsole.h:341 msgid "Script console" -msgstr "" +msgstr "スクリプトコンソール" #: src/ui_scriptConsole.h:344 msgid "load script from file" -msgstr "" +msgstr "ファイルã‹ã‚‰ã‚¹ã‚¯ãƒªãƒ—トを読ã¿è¾¼ã‚€" #: src/ui_scriptConsole.h:348 msgid "save script to file" -msgstr "" +msgstr "ファイルã«ã‚¹ã‚¯ãƒªãƒ—トをä¿å­˜ã™ã‚‹" #: src/ui_scriptConsole.h:352 msgid "clear script" @@ -4332,15 +4559,15 @@ #: src/ui_scriptConsole.h:365 msgid "run script" -msgstr "" +msgstr "スクリプトを実行ã™ã‚‹" #: src/ui_scriptConsole.h:369 msgid "stop script" -msgstr "" +msgstr "スクリプトをåœæ­¢ã™ã‚‹" #: src/ui_scriptConsole.h:372 msgid "Script" -msgstr "" +msgstr "スクリプト" #: src/ui_scriptConsole.h:373 msgid "Output" @@ -4389,176 +4616,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "接眼レンズ" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4630,64 +4857,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "回転: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4695,7 +4927,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4706,14 +4938,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4722,305 +4954,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "アイピース" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "åŒçœ¼é¡" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "望é é¡" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "直径:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "衛星" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "å¤ã„satellites.jsonファイルã¨ã¯äº’æ›æ€§ãŒã‚ã‚Šã¾ã›ã‚“ - デフォルトファイルを使用ã—ã¾ã™" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "高度(km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5028,25 +5329,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5054,17 +5355,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5072,41 +5373,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "リンク" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5114,338 +5417,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "ラベル" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" -msgstr "説明:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" -msgstr "グループ:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" +msgstr "説明:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "グループ:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "天体" @@ -5481,22 +5827,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "望é é¡ã®ã‚¬ã‚¤ãƒ‰" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5879,62 +6225,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "1 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "2 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "3 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "4 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "5 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "6 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "7 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "8 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "9 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "10 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "11 月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "12 月" @@ -6088,7 +6434,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6106,7 +6452,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6122,154 +6468,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "テキストユーザーインターフェース" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "言語" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "星雲å" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "星雲ã®ãƒ’ント" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "銀河é¢ã®ç·š" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" -msgstr "" +msgstr "天ã®å·ã®æ˜Žã‚‹ã•:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" -msgstr "" +msgstr "実行中ã®ã‚¹ã‚¯ãƒªãƒ—トをåœæ­¢" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" -msgstr "" +msgstr "CD/DVDスクリプト" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6302,22 +6648,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6486,36 +6832,43 @@ msgid "Solar System" msgstr "太陽系" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "æ­´å²çš„ãªè¶…新星" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "超新星" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "超新星ã®ç¨®é¡ž: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6533,7 +6886,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6547,14 +6900,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6562,8 +6915,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6581,29 +6935,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "クエーサー" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6619,51 +7050,61 @@ msgid "Z (redshift): %1" msgstr "Z (赤方å移): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "パルサー" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6783,11 +7224,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6795,137 +7236,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "天文å˜ä½" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6933,49 +7378,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6991,185 +7525,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7484,6 +8012,9 @@ #~ msgid "Calendar" #~ msgstr "カレンダー" +#~ msgid "Nebulas" +#~ msgstr "星雲" + #~ msgid ":" #~ msgstr ":" @@ -7520,6 +8051,9 @@ #~ msgid "Form" #~ msgstr "フォーム" +#~ msgid "Nebulas background images" +#~ msgstr "星雲ã®èƒŒæ™¯" + #~ msgid "xxx" #~ msgstr "xxx" diff -Nru stellarium-0.12.1/po/stellarium/ka.po stellarium-0.12.4/po/stellarium/ka.po --- stellarium-0.12.1/po/stellarium/ka.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ka.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,31 +7,31 @@ msgstr "" "Project-Id-Version: Stellarium 0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2011-05-09 01:51+0000\n" "Last-Translator: George Machitidze \n" "Language-Team: Georgian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:13+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: GEORGIA\n" "X-Poedit-Language: Georgian\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "მერიდიáƒáƒœáƒ˜" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "ელიფსური" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "ეკვáƒáƒ¢áƒáƒ áƒ˜" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -39,46 +39,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "áƒáƒ•áƒ¢áƒáƒ áƒ˜: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "მდებáƒáƒ áƒ”áƒáƒ‘áƒ: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 მ" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "პლáƒáƒœáƒ”ტáƒ: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "ტიპი: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "მáƒáƒ’ნიტუდáƒ: %1" @@ -88,114 +88,114 @@ msgid "Size: %1" msgstr "ზáƒáƒ›áƒ: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "გáƒáƒšáƒáƒ¥áƒ¢áƒ˜áƒ™áƒ" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "ღირგრáƒáƒ•áƒ" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "ვáƒáƒ áƒ¡áƒ™áƒ•áƒšáƒáƒ•áƒ—რსფერული გრáƒáƒ•áƒ" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "ნისლეული" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "პლáƒáƒœáƒ”ტáƒáƒ áƒ£áƒšáƒ˜ ნისლეული" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "ნისლეულთáƒáƒœ დáƒáƒ™áƒáƒ•áƒ¨áƒ˜áƒ áƒ”ბული გრáƒáƒ•áƒ" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "უცნáƒáƒ‘იáƒ" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "áƒáƒ áƒáƒ“áƒáƒ™áƒ£áƒ›áƒ”ნტირებული ტიპი" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "áƒáƒ‘სáƒáƒšáƒ£áƒ¢áƒ£áƒ áƒ˜ მáƒáƒ’ნიტუდáƒ: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "მáƒáƒœáƒ«áƒ˜áƒšáƒ˜: %1áƒáƒ”" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "ხილული დიáƒáƒ›áƒ”ტრი: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -206,7 +206,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -221,47 +221,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "სპექტრული ტიპი: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "მáƒáƒœáƒ«áƒ˜áƒšáƒ˜: %1 სინáƒáƒ—ლის წელი" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "პáƒáƒ áƒáƒšáƒáƒ¥áƒ¡áƒ˜: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -269,14 +344,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -285,14 +360,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -300,7 +375,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -308,14 +383,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -324,14 +399,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -339,25 +414,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -366,14 +441,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -381,42 +456,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -424,7 +499,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -432,7 +507,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -441,7 +516,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -451,45 +526,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -652,52 +744,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "ეკრáƒáƒœáƒ—რáƒáƒœáƒáƒ‘ეჭდების დáƒáƒ¡áƒ¢áƒ˜áƒ¡ áƒáƒ áƒ©áƒ”ვáƒ" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "ხედვის სáƒáƒ¬áƒ§áƒ˜áƒ¡áƒ˜ áƒáƒ áƒ”: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "ხედვის სáƒáƒ¬áƒ§áƒ˜áƒ¡áƒ˜ მიმáƒáƒ áƒ—ულებრáƒáƒ–იმუტი/სიმáƒáƒ¦áƒšáƒ”: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "áƒáƒ•áƒ¢áƒáƒ áƒ”ბი" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "კáƒáƒœáƒ¢áƒáƒ¥áƒ¢áƒ˜" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "áƒáƒ•áƒ¢áƒáƒ áƒ˜" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ლიცენზიáƒ" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "მუშრსცენáƒáƒ áƒ˜: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "მუშრსცენáƒáƒ áƒ˜: [áƒáƒ áƒáƒ]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -705,16 +798,16 @@ "ვáƒáƒ áƒ¡áƒ™áƒ•áƒšáƒáƒ•áƒ—რáƒáƒ®áƒáƒšáƒ˜ კáƒáƒ¢áƒáƒšáƒáƒ’ების გáƒáƒ›áƒáƒ¢áƒ•áƒ˜áƒ áƒ—ვრდáƒáƒ¡áƒ áƒ£áƒšáƒ“áƒ!\n" "ხელáƒáƒ®áƒšáƒ გáƒáƒ®áƒ¡áƒ”ნით პრáƒáƒ’რáƒáƒ›áƒ Stellarium მáƒáƒ— სáƒáƒ©áƒ•áƒ”ნებლáƒáƒ“." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "%1 კáƒáƒ¢áƒáƒšáƒáƒ’ის მიღებáƒ, სულ %2-დáƒáƒœ" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -723,7 +816,7 @@ "იტვირთებრ%1...\n" "(შეგიძლიáƒáƒ— დáƒáƒ®áƒ£áƒ áƒáƒ— ეს სáƒáƒ áƒ™áƒ›áƒ”ლი.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -731,7 +824,7 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -740,11 +833,11 @@ "შეცდáƒáƒ›áƒ %1 ჩáƒáƒ›áƒáƒ¢áƒ•áƒ˜áƒ áƒ—ვისáƒáƒ¡:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "ფáƒáƒ˜áƒšáƒ˜áƒ¡ მთლიáƒáƒœáƒáƒ‘ის შემáƒáƒ¬áƒ›áƒ”ბáƒ..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -754,115 +847,123 @@ "ფáƒáƒ˜áƒšáƒ˜ დáƒáƒ–იáƒáƒœáƒ”ბულიáƒ." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1025,49 +1126,53 @@ msgid "OSX Developer: %1" msgstr "OSX პრáƒáƒ’რáƒáƒ›áƒ˜áƒ¡áƒ¢áƒ˜: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "სკრიპტის კáƒáƒœáƒ¡áƒáƒšáƒ˜áƒ¡ ფáƒáƒœáƒ¯áƒáƒ áƒ" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "სáƒáƒ áƒ™áƒ›áƒšáƒ”ბი" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "კáƒáƒ¡áƒ›áƒáƒ¡áƒ˜" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "áƒáƒ¦áƒ¬áƒ”რილáƒáƒ‘ის გáƒáƒ áƒ”შე" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "მეტეáƒáƒ áƒ”ბი áƒáƒ áƒáƒ" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "ჩვეულებრივი სვლáƒ" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "პერსეიდების სტáƒáƒœáƒ“áƒáƒ áƒ¢áƒ£áƒšáƒ˜ ნáƒáƒ™áƒáƒ“ი" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "ლეáƒáƒœáƒ˜áƒ“ების გáƒáƒœáƒ¡áƒáƒ™áƒ£áƒ—რებული ნáƒáƒ™áƒáƒ“ი" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "მáƒáƒ¥áƒ¡áƒ˜áƒ›áƒáƒšáƒ£áƒ áƒ˜ ნáƒáƒ™áƒáƒ“ი (1966 ლეáƒáƒœáƒ˜áƒ“ები)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "áƒáƒ®áƒáƒšáƒ˜ áƒáƒ“გილმდებáƒáƒ áƒ”áƒáƒ‘áƒ" @@ -1170,19 +1275,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1198,30 +1303,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "áƒáƒ› სისტემისთვის OpenGL მიუღებელიáƒ." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "მზე" @@ -1238,12 +1349,12 @@ msgstr "დედáƒáƒ›áƒ˜áƒ¬áƒ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "მთვáƒáƒ áƒ”" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "მáƒáƒ áƒ¡áƒ˜" @@ -1341,7 +1452,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "სáƒáƒ¢áƒ£áƒ áƒœáƒ˜" @@ -1639,239 +1750,268 @@ msgstr "ესკიმáƒáƒ¡áƒ£áƒ áƒ˜" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "კáƒáƒ áƒ”ული" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "ლáƒáƒ™áƒáƒ¢áƒ" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "მáƒáƒáƒ áƒ˜" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "ნáƒáƒ•áƒáƒ®áƒ" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "ნáƒáƒ áƒ•áƒ”გიული" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "პáƒáƒšáƒ˜áƒœáƒ”ზიური" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "სáƒáƒ›áƒ˜" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "ტუპი-გუáƒáƒ áƒáƒœáƒ˜" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "დáƒáƒ¡áƒáƒ•áƒšáƒ”თის" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1881,1502 +2021,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "თáƒáƒ áƒ˜áƒ¦áƒ˜ დრდრáƒ" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "1 ვáƒáƒ áƒ¡áƒ™áƒ•áƒšáƒáƒ•áƒ£áƒ áƒ˜ დღის დáƒáƒ›áƒáƒ¢áƒ”ბáƒ" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "1 ვáƒáƒ áƒ¡áƒ™áƒ•áƒšáƒáƒ•áƒ£áƒ áƒ˜ კვირის დáƒáƒ›áƒáƒ¢áƒ”ბáƒ" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "1 მზის დღის დáƒáƒ›áƒáƒ¢áƒ”ბáƒ" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "1 მზის სáƒáƒáƒ—ის დáƒáƒ›áƒáƒ¢áƒ”ბáƒ" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "1 მზის კვირის დáƒáƒ›áƒáƒ¢áƒ”ბáƒ" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "სკრიპტის შესრულების სიხშირის შემცირებáƒ" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "დრáƒáƒ˜áƒ¡ შენელებáƒ/უკუსვლáƒ" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "დრáƒáƒ˜áƒ¡ სიჩქáƒáƒ áƒ˜áƒ¡ შემცირებáƒ" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "სკრიპტის შესრულების სიხშირის გáƒáƒ–რდáƒ" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "დრáƒáƒ˜áƒ¡ დáƒáƒ©áƒ¥áƒáƒ áƒ”ბáƒ" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "დრáƒáƒ˜áƒ¡ სიჩქáƒáƒ áƒ˜áƒ¡ გáƒáƒ–რდáƒ" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "მიმდინáƒáƒ áƒ” დრáƒáƒ˜áƒ¡ მითითებáƒ" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "სკრიპტის შესრულების სიხშირის ნáƒáƒ áƒ›áƒáƒšáƒ˜áƒ–ებáƒ" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "დრáƒáƒ˜áƒ¡ ნáƒáƒ áƒ›áƒáƒšáƒ£áƒ áƒ˜ სვლáƒ" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "დრáƒáƒ˜áƒ¡ სიჩქáƒáƒ áƒ˜áƒ¡ გáƒáƒœáƒ£áƒšáƒ”ბáƒ" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "1 ვáƒáƒ áƒ¡áƒ™áƒ•áƒšáƒáƒ•áƒ£áƒ áƒ˜ დღის გáƒáƒ›áƒáƒ™áƒšáƒ”ბáƒ" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "1 ვáƒáƒ áƒ¡áƒ™áƒ•áƒšáƒáƒ•áƒ£áƒ áƒ˜ კვირის გáƒáƒ›áƒáƒ™áƒšáƒ”ბáƒ" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "1 მზის დღის გáƒáƒ›áƒáƒ™áƒšáƒ”ბáƒ" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "1 მზის სáƒáƒáƒ—ის გáƒáƒ›áƒáƒ™áƒšáƒ”ბáƒ" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "1 მზის კვირის გáƒáƒ›áƒáƒ™áƒšáƒ”ბáƒ" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "ჩვენების პáƒáƒ áƒáƒ›áƒ”ტრები" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "გáƒáƒœáƒ˜áƒ•áƒ˜ დáƒáƒ¡áƒáƒ áƒ™áƒ•áƒ" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "სრული ეკრáƒáƒœáƒ˜áƒ¡ რეჟიმი" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "áƒáƒ¢áƒ›áƒáƒ¡áƒ¤áƒ”რáƒ" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "áƒáƒ–იმუტური ბáƒáƒ“ე" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "ქვეყნის მხáƒáƒ áƒ”ები" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "ხáƒáƒ›áƒšáƒ—რნáƒáƒ®áƒáƒ¢áƒ”ბი" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "ხáƒáƒ›áƒšáƒ—რსáƒáƒ–ღვრები" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "ხáƒáƒ›áƒšáƒ—რწáƒáƒ áƒ¬áƒ”რები" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "ხáƒáƒ›áƒšáƒ—რხáƒáƒ–ები" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "ნისლეულთრფáƒáƒœáƒ”ბის ნáƒáƒ®áƒáƒ¢áƒ”ბი" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "ეკლიპტიკის ხáƒáƒ–ი" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "ეკვáƒáƒ¢áƒáƒ áƒ˜áƒ¡ ხáƒáƒ–ი" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "ეკვáƒáƒ¢áƒáƒ áƒ£áƒšáƒ˜ ბáƒáƒ“ე" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "ეკვáƒáƒ¢áƒáƒ áƒ£áƒšáƒ˜ J2000 ბáƒáƒ“ე" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "ნისლი" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "გáƒáƒšáƒáƒ¥áƒ¢áƒ˜áƒ™áƒ£áƒ áƒ˜ ბáƒáƒ“ე" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "მიწáƒ" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "მერიდიáƒáƒœáƒ˜áƒ¡ ხáƒáƒ–ი" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "ნისლეულები" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "ღáƒáƒ›áƒ˜áƒ¡ რეჟიმი" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "პლáƒáƒœáƒ”ტების áƒáƒ áƒ‘იტები" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "პლáƒáƒœáƒ”ტების კვáƒáƒšáƒ˜" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "ვáƒáƒ áƒ¡áƒ™áƒ•áƒšáƒáƒ•áƒ”ბი" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "სცენის მáƒáƒ áƒ—áƒáƒ‘ული áƒáƒ›áƒáƒ¢áƒ áƒ˜áƒáƒšáƒ”ბáƒ" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "სხვáƒáƒ“áƒáƒ¡áƒ®áƒ•áƒ" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "ღილáƒáƒ™áƒ”ბის გáƒáƒœáƒ˜áƒ•áƒ˜ პáƒáƒœáƒ”ლის თვითდáƒáƒ›áƒáƒšáƒ•áƒ" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "ღილáƒáƒ™áƒ”ბის მáƒáƒ áƒ—áƒáƒ‘ული პáƒáƒœáƒ”ლის თვითდáƒáƒ›áƒáƒšáƒ•áƒ" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "დáƒáƒ¡áƒ áƒ£áƒšáƒ”ბáƒ" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "áƒáƒœáƒáƒ‘ეჭდის შენáƒáƒ®áƒ•áƒ" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "გáƒáƒ“áƒáƒ áƒ—ვრეკვáƒáƒ¢áƒáƒ áƒ£áƒš დრáƒáƒ–იმუტურ ხედებს შáƒáƒ áƒ˜áƒ¡" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "ინტერფეისის ხილვáƒáƒ“áƒáƒ‘ის გáƒáƒ“áƒáƒ áƒ—ვáƒ" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "მáƒáƒ«áƒ áƒáƒáƒ‘რდრმáƒáƒœáƒ˜áƒ¨áƒ•áƒœáƒ" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "ცენტრირებრშერჩეულ áƒáƒ‘იექტზე" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "შერჩეული პლáƒáƒœáƒ”ტის სáƒáƒ™áƒ£áƒ—áƒáƒ  პლáƒáƒœáƒ”ტáƒáƒ“ მითითებáƒ" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "áƒáƒ‘იექტის თვáƒáƒšáƒ›áƒ˜áƒ“ევნებáƒ" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "შერჩეული áƒáƒ‘იექტის მáƒáƒáƒ®áƒšáƒáƒ”ბáƒ" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "დáƒáƒ¨áƒáƒ áƒ”ბáƒ" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "სცენáƒáƒ áƒ”ბი" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡ სáƒáƒ áƒ™áƒ›áƒ”ლი" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "თáƒáƒ áƒ˜áƒ¦áƒ˜áƒ¡áƒ დრდრáƒáƒ˜áƒ¡ სáƒáƒ áƒ™áƒ›áƒ”ლი" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "დáƒáƒ®áƒ›áƒáƒ áƒ”ბის სáƒáƒ áƒ™áƒ›áƒ”ლი" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "მდებáƒáƒ áƒ”áƒáƒ‘ის სáƒáƒ áƒ™áƒ›áƒ”ლი" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "ძიების სáƒáƒ áƒ™áƒ›áƒ”ლი" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "ცისრდრჩვენების პáƒáƒ áƒáƒ›áƒ”ტრების სáƒáƒ áƒ™áƒ›áƒ”ლი" @@ -3402,7 +3578,7 @@ msgstr "გáƒáƒœáƒáƒ®áƒšáƒ”ბáƒ" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "áƒáƒ“გილი" @@ -3418,10 +3594,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "წáƒáƒ¨áƒšáƒ" @@ -3430,7 +3606,7 @@ msgstr "სიáƒáƒ¨áƒ˜ დáƒáƒ›áƒáƒ¢áƒ”ბáƒ" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "გáƒáƒœáƒ”დი:" @@ -3443,12 +3619,12 @@ "+1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "გრძედი:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "სიმáƒáƒ¦áƒšáƒ” :" @@ -3472,363 +3648,407 @@ msgid "Planet:" msgstr "პლáƒáƒœáƒ”ტáƒ:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "áƒáƒ‘იექტის პáƒáƒ•áƒœáƒ" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "რáƒáƒ“/გრáƒáƒ“ (J200)" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "პáƒáƒ áƒáƒ›áƒ”ტრები" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "პáƒáƒ áƒáƒ›áƒ”ტრები" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "ხედი" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "ცáƒ" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "ნიშნულები" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "პეიზáƒáƒŸáƒ˜" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "ცáƒáƒ“ნრვáƒáƒ áƒ¡áƒ™áƒ•áƒšáƒáƒ•áƒ”ბის შესáƒáƒ®áƒ”ბ" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "წáƒáƒ áƒ¬áƒ”რები დრნიშნები" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "პლáƒáƒœáƒ”ტები" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "პლáƒáƒœáƒ”ტები დრთáƒáƒœáƒáƒ›áƒ’ზáƒáƒ•áƒ áƒ”ბი" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "პლáƒáƒœáƒ”ტების ჩვენებáƒ" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "პლáƒáƒœáƒ”ტების ნიშნულების ჩვენებáƒ" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "პლáƒáƒœáƒ”ტáƒáƒ—რáƒáƒ áƒ‘იტების ჩვენებáƒ" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "სინáƒáƒ—ლის სიჩქáƒáƒ áƒ˜áƒ¡ სიმულáƒáƒªáƒ˜áƒ" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "მთვáƒáƒ áƒ˜áƒ¡ მáƒáƒ¡áƒ¨áƒ¢áƒáƒ‘ი" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "áƒáƒ¢áƒ›áƒáƒ¡áƒ¤áƒ”რáƒáƒ¡ ჩვენებáƒ" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "áƒáƒ‘სáƒáƒšáƒ£áƒ¢áƒ£áƒ áƒ˜ მáƒáƒ¡áƒ¨áƒ¢áƒáƒ‘ი:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "ფáƒáƒ áƒ“áƒáƒ‘ითი მáƒáƒ¡áƒ¨áƒ¢áƒáƒ‘ი:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "ციმციმი:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "მცირე ვáƒáƒ áƒ™áƒ•áƒšáƒáƒ•áƒ”ბის ჩáƒáƒ›áƒ£áƒ¥áƒ”ბრნáƒáƒ—ელი áƒáƒ‘იექტის მáƒáƒ®áƒšáƒáƒ‘ლáƒáƒ“" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "თვáƒáƒšáƒ˜áƒ¡ დინáƒáƒ›áƒ˜áƒ™áƒ£áƒ áƒ˜ áƒáƒ“áƒáƒžáƒ¢áƒáƒªáƒ˜áƒ" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "მეტეáƒáƒ áƒ”ბი" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "ხáƒáƒ›áƒšáƒ”ბი" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "ხáƒáƒ–ების ჩვენებáƒ" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "წáƒáƒ áƒ¬áƒ”რების ჩვენებáƒ" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "სáƒáƒ–ღვრების ჩვენებáƒ" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "ნáƒáƒ®áƒáƒ¢áƒ”ბის ჩვენებáƒ" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ციური სფერáƒ" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "პრáƒáƒ”ქციáƒ" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "მიწის ჩვენებáƒ" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "ნისლის ჩვენებáƒ" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "შეáƒáƒ‘áƒáƒ›áƒ˜áƒ¡áƒ˜ პლáƒáƒœáƒ”ტით დრპáƒáƒ–იციით სáƒáƒ áƒ’ებლáƒáƒ‘áƒ" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "áƒáƒ› პეიზáƒáƒŸáƒ˜áƒ¡ ნáƒáƒ’ულისხმებáƒáƒ“ გáƒáƒ›áƒáƒ§áƒ”ნებáƒ" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "áƒáƒ› ციური კულტურის ნáƒáƒ’ულისხმებáƒáƒ“ გáƒáƒ›áƒáƒ§áƒ”ნებáƒ" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "ხილული" @@ -3883,7 +4103,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "ხედვის მიმáƒáƒ áƒ—ულებრStellarium პრáƒáƒ’რáƒáƒ›áƒ˜áƒ¡ გáƒáƒ®áƒ¡áƒœáƒ˜áƒ¡áƒáƒ¡" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "შერჩეული áƒáƒ‘იექტის მáƒáƒœáƒáƒªáƒ”მები" @@ -3899,11 +4119,8 @@ msgid "Display no information" msgstr "ინფáƒáƒ áƒ›áƒáƒªáƒ˜áƒ˜áƒ¡ ჩვენების გáƒáƒ áƒ”შე" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "áƒáƒ áƒ" @@ -4045,7 +4262,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "დáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ áƒ˜áƒ¦áƒ˜ დრდრáƒ" @@ -4057,41 +4274,45 @@ msgid "Other:" msgstr "სხვáƒ:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "áƒáƒ áƒ¡áƒ”ბულის გáƒáƒ›áƒáƒ§áƒ”ნებáƒ" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Stellarium-ის დáƒáƒ¬áƒ§áƒ”ბრსისტემური თáƒáƒ áƒ˜áƒ¦áƒ˜áƒ—რდრდრáƒáƒ˜áƒ—" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "დáƒáƒ¬áƒ§áƒ”ბის თáƒáƒ áƒ˜áƒ¦áƒ˜ დრდრáƒ" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "მიუთითებს სიმულáƒáƒªáƒ˜áƒ˜áƒ¡ დრáƒáƒ¡ Stellariumის შემდეგი გáƒáƒ®áƒ¡áƒœáƒ˜áƒ¡áƒáƒ¡" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "სისტემური თáƒáƒ áƒ˜áƒ¦áƒ˜:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "პლáƒáƒœáƒ”ტáƒáƒ áƒ˜áƒ£áƒ›áƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრები" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4099,51 +4320,51 @@ "სფერული სáƒáƒ áƒ™áƒ˜áƒ¡ ეფექტი გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნებრსფერულ სáƒáƒ áƒ™áƒ”ზე პრáƒáƒ”ქციისáƒáƒ¡ დáƒáƒ‘áƒáƒšáƒ˜ ხáƒáƒ áƒ˜áƒ¡áƒ®áƒ˜áƒ¡ " "პლáƒáƒœáƒ”ტáƒáƒ áƒ˜áƒ£áƒ›áƒ”ბში." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "სფერული სáƒáƒ áƒ™áƒ˜áƒ¡ ეფექტი" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "ყველáƒáƒ¤áƒ áƒ˜áƒ¡ შენიღბვრმთáƒáƒ•áƒáƒ áƒ˜ ხედის ცენტრáƒáƒšáƒ£áƒ áƒ˜ წრის გáƒáƒ áƒ”თ" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "დისკáƒáƒ¡áƒ”ბრი ხედი" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "სხვრხáƒáƒ›áƒšáƒ”ბის დáƒáƒ›áƒáƒšáƒ•áƒ ერთერთის დáƒáƒ¬áƒ™áƒáƒžáƒ•áƒ˜áƒ¡áƒáƒ¡" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "ცáƒáƒšáƒ™áƒ”ული ხáƒáƒ›áƒšáƒ˜áƒ¡ შერჩევáƒ" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "წáƒáƒ áƒ¬áƒ”რების ჰáƒáƒ áƒ˜áƒ–áƒáƒœáƒ¢áƒ–ე გáƒáƒœáƒ—áƒáƒ•áƒ¡áƒ”ბáƒ" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "გრáƒáƒ•áƒ˜áƒ¢áƒáƒªáƒ˜áƒ˜áƒ¡ წáƒáƒ áƒ¬áƒ”რები" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "მáƒáƒ áƒ—áƒáƒ‘ული დრგáƒáƒœáƒ˜áƒ•áƒ˜ áƒáƒ áƒ”კვლის ღილáƒáƒ™áƒ”ბის გáƒáƒ“áƒáƒ áƒ—ვáƒ." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "áƒáƒ áƒ”კვლის ღილáƒáƒ™áƒ”ბის ჩვენებáƒ" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4151,92 +4372,98 @@ "რáƒáƒªáƒ ჩáƒáƒ áƒ—ულიáƒ, ღილáƒáƒ™áƒ˜ \"თვითმáƒáƒ¡áƒ¨áƒ¢áƒáƒ‘ირებáƒ\" áƒáƒ¡áƒ”ვე მიუთითებს ხედვის სáƒáƒ¬áƒ§áƒ˜áƒ¡ " "მიმáƒáƒ áƒ—ულებáƒáƒ¡" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "თვითმáƒáƒ¡áƒ¨áƒ¢áƒáƒ‘ირებრხედვის სáƒáƒ¬áƒ§áƒ˜áƒ¡ მიმáƒáƒ áƒ—ულებáƒáƒ–ე დáƒáƒ’áƒáƒ‘რუნებთ" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "ეკრáƒáƒœáƒ˜áƒ¡ áƒáƒœáƒáƒ‘ეჭდები" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "ეკრáƒáƒœáƒ—რáƒáƒœáƒáƒ‘ეჭდების დáƒáƒ¡áƒ¢áƒ" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "ფერების ინვერსიáƒ" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "ვáƒáƒ áƒ¡áƒ™áƒ•áƒšáƒáƒ•áƒ—რკáƒáƒ¢áƒáƒšáƒáƒ’ის გáƒáƒœáƒáƒ®áƒšáƒ”ბáƒ" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "დáƒáƒ¬áƒ™áƒáƒžáƒ”თ ჩáƒáƒ›áƒáƒ¢áƒ•áƒ˜áƒ áƒ—ვის დáƒáƒ¡áƒáƒ¬áƒ§áƒ”ბáƒáƒ“" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "áƒáƒ› ფáƒáƒ˜áƒšáƒ˜áƒ¡ ჩáƒáƒ›áƒáƒ¢áƒ•áƒ˜áƒ áƒ—ვრსხვრვáƒáƒ áƒ¡áƒ™áƒ•áƒšáƒáƒ•áƒ”ბის სáƒáƒ©áƒ•áƒ”ნებლáƒáƒ“" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "ჩáƒáƒ›áƒáƒ¢áƒ•áƒ˜áƒ áƒ—ვის გáƒáƒœáƒáƒ®áƒšáƒ”ბáƒ" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "ხელáƒáƒ®áƒšáƒ" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "ჩáƒáƒ›áƒáƒ¢áƒ•áƒ˜áƒ áƒ—ვის შეჩერებáƒ. ყáƒáƒ•áƒ”ლთვის შეგიძლიáƒáƒ— მისი გáƒáƒœáƒáƒ®áƒšáƒ”ბáƒ" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "გáƒáƒ£áƒ¥áƒ›áƒ”ბáƒ" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "სáƒáƒ áƒ™áƒ›áƒšáƒ˜áƒ¡ დáƒáƒ®áƒ£áƒ áƒ•áƒ სცენáƒáƒ áƒ˜áƒ¡ შესრულებისáƒáƒ¡" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "შერჩეული სცენáƒáƒ áƒ˜áƒ¡ შესრულებáƒ" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "შერჩეული სცენáƒáƒ áƒ˜áƒ¡ შეჩერებáƒ" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "გáƒáƒ¨áƒ•áƒ”ბისთáƒáƒœáƒáƒ•áƒ” ჩáƒáƒ¢áƒ•áƒ˜áƒ áƒ—ვáƒ" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "áƒáƒ¬áƒ§áƒáƒ‘áƒ" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "ძირითáƒáƒ“ი" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ინფáƒáƒ áƒ›áƒáƒªáƒ˜áƒ" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "ნáƒáƒ•áƒ˜áƒ’áƒáƒªáƒ˜áƒ" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "სáƒáƒ›áƒáƒ áƒ¯áƒ•áƒ”ბი" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "მáƒáƒ“ულები" @@ -4404,176 +4631,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4645,64 +4872,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4710,7 +4942,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4721,14 +4953,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4737,305 +4969,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5043,25 +5344,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5069,17 +5370,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5087,41 +5388,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5129,338 +5432,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5496,22 +5842,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "ტელესკáƒáƒžáƒ˜áƒ¡ კáƒáƒœáƒ¢áƒ áƒáƒšáƒ˜" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5894,62 +6240,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6103,7 +6449,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6121,7 +6467,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6137,154 +6483,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "ენáƒ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6317,22 +6663,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6501,36 +6847,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6548,7 +6901,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6562,14 +6915,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6577,8 +6930,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6596,29 +6950,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6634,51 +7065,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6798,11 +7239,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6810,137 +7251,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6948,49 +7393,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7006,185 +7540,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7562,6 +8090,12 @@ #~ msgid "Set UI Locale: " #~ msgstr "UI ლáƒáƒ™áƒáƒšáƒ˜áƒ¡ მითითებრ" +#~ msgid "Nebulas" +#~ msgstr "ნისლეულები" + +#~ msgid "Nebulas background images" +#~ msgstr "ნისლეულთრფáƒáƒœáƒ”ბის ნáƒáƒ®áƒáƒ¢áƒ”ბი" + #~ msgid "Form" #~ msgstr "ფáƒáƒ áƒ›áƒ" diff -Nru stellarium-0.12.1/po/stellarium/kg.po stellarium-0.12.4/po/stellarium/kg.po --- stellarium-0.12.1/po/stellarium/kg.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/kg.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-02-08 11:49+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Kongo \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:15+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "dianzenza" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "mpitakani" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "luwawanu" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/kk.po stellarium-0.12.4/po/stellarium/kk.po --- stellarium-0.12.1/po/stellarium/kk.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/kk.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-09 17:54+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Kazakh \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:15+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Экватор" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Орыны: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Өлшемі: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Галактика" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Беймәлім" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Ðвторы" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Контакт" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Ðвтор" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ЛицензиÑ" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Терезелер" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "ÐнықтамаÑÑ‹ жоқ" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Күн" @@ -1209,12 +1320,12 @@ msgstr "Жер" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Ðй" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "МарÑ" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Сатурн" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Корей" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Маори" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Ðавахо" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Ð‘Ð°Ñ‚Ñ‹Ñ Ó©Ð»ÐºÐµÑÑ–" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Дауыл" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Мұхит" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "ЭкранСақтаушыÑÑ‹" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Ðндорра" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "ÐнгильÑ" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "ÐлбаниÑ" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "ÐидерландиÑның Ðнтиль ар-Ñ‹" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Ðнтарктида" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Ð¨Ñ‹Ò“Ñ‹Ñ Ð¡Ð°Ð¼Ð¾Ð°" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ÐуÑтриÑ" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ÐвÑтралиÑ" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Ðруба аралдары" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Әзірбайжан" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "БельгиÑ" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркина ФаÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Бенин" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Бруней ДаруÑÑалам" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "БразилиÑ" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Багам аралдары" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Буве аралдары" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "БелоруÑÑŒ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "ÐšÐ¾ÐºÐ¾Ñ Ð°Ñ€-Ñ‹" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Конго Демократикалық РеÑпубликаÑÑ‹" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Конго РеÑпубликаÑÑ‹" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "ШвецариÑ" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Кот-д'Ивуар" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Кук аралдары" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Чили" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Қытай" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "КолумбиÑ" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "КоÑта Рика" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Ð¡ÐµÑ€Ð±Ð¸Ñ Ð¼ÐµÐ½ ЧерногориÑ" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "РождеÑтво аралы" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ЧехиÑ" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Доминика" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ðлжир" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Экуадор" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "МыÑÑ‹Ñ€" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Ð‘Ð°Ñ‚Ñ‹Ñ Ð¡Ð°Ñ…Ð°Ñ€Ð°" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Фолкленд (Мальвин) ар-Ñ‹" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Фарер аралдары" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "ФранциÑ" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Габон" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "ҰлыбританиÑ" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Гренада" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ГүржіÑтан" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "ФранциÑның ГвианаÑÑ‹" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Гваделупа" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "ОңтүÑтік Ð“ÐµÐ¾Ñ€Ð³Ð¸Ñ Ð¶Ó™Ð½Ðµ ОңтүÑтік Сандвич ар-Ñ‹" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "ГвинеÑ-БиÑау" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Гонконг" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Хеард пен Макдональд аралдары" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "ИндонезиÑ" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ҮндіÑтан" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "БританиÑның Үнді мұхиттағы жері" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Иран" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ИталиÑ" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Хордан" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "ЖапониÑ" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "ҚырғызÑтан" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Камбоджа" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Комор аралдары" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Сент-ÐšÐ¸Ñ‚Ñ Ð¶Ó™Ð½Ðµ ÐевиÑ" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Корей Халық ДемократиÑлық РеÑпубликаÑÑ‹" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "ÐšÐ¾Ñ€ÐµÑ Ð ÐµÑпубликаÑÑ‹" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Кайман аралдары" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Лао" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Сент-ЛюÑиÑ" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Лихтенштейн" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Ð›Ð¸Ð²Ð¸Ñ Ðраб ЖамахириÑÑÑ‹" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Молдова" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "МадагаÑкар" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Маршалл аралдары" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "МьÑнмалық" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "МонғолиÑ" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "СолтүÑтік Марианна Ðралдары" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "МонÑеррат" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Мальдив аралдары" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "МекÑика" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Ðигер" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Ðорфолк аралы" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "ÐидерландиÑ" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Ðауру" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "ÐиуÑ" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Жаңа ЗеландиÑ" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Оман" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinezia franceză" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ПәкіÑтан" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Сен-Пьер және Микелон" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "ПиткÑрн аралдары" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Парагвай" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Реюньион" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "СербиÑ" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "РеÑей ФедерациÑÑÑ‹" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Соломон аралдары" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Сейшел аралдары" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Әулие Елена ар." -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Шпицберген мен Ян Майен" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Съера-Леоне" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Сан-Марино" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Суринам" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Сан-Томе және ПринÑипи" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Ð¡Ð¸Ñ€Ð¸Ñ Ðраб РеÑпубликаÑÑ‹" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Ð¢ÐµÑ€ÐºÑ Ð¶Ó™Ð½Ðµ ÐšÐ°Ð¹ÐºÐ¾Ñ Ð°Ñ€Ð°Ð»Ð´Ð°Ñ€Ñ‹" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "ФранциÑның ÑолтүÑтік аймақтары" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ТәжікÑтан" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Токелау" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Ð¨Ñ‹Ò“Ñ‹Ñ Ð¢Ð¸Ð¼Ð¾Ñ€" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ТүрікменÑтан" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Тонга" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Тувалу" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Тайван" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "ÐҚШ шағын Ñыртқы аралдары" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Құрама Штаттар" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Сент-ВинÑент және Гренадин" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Виргин аралдары, ҰлыбританиÑ" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Вьетнам" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Ð£Ð¾Ð»Ð»Ð¸Ñ Ð¶Ó™Ð½Ðµ Футуна" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Майотта" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "ОңтүÑтік Ðфрика" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Күн мен уақыт" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "КөрÑету параметрлері" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Тұман" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Жұлдыздар" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "БаÑқалар" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "ÐлыÑтау" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "Баптаулар" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Орыны" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Өшіру" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Ендігі:" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Бойлығы:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Объект" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "ОрналаÑуы" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Сервер:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "ОпциÑлар" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "ОпциÑлар" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Түрі" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Көлденең" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Мәлімет" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Тіл" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/kn.po stellarium-0.12.4/po/stellarium/kn.po --- stellarium-0.12.1/po/stellarium/kn.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/kn.po 2013-09-23 06:20:13.000000000 +0000 @@ -6,30 +6,30 @@ msgid "" msgstr "" "Project-Id-Version: stellarium\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2012-01-26 05:28+0000\n" -"Last-Translator: Ajju Bengalooru \n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-06-13 18:04+0000\n" +"Last-Translator: N.SHANKARAPPA \n" "Language-Team: Kannada \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:15+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "ಮೆರಿಡಿಯನà³" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "ಸಮಭಾಜವೃತà³à²¤" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "ಕà³à²·à²¿à²¤à²¿à²œ" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " -msgstr "ಕೃತಿಕಾರ: " +msgstr "ಕೃತಿಕಾರ : " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " -msgstr "ಸà³à²¥à²³ " +msgstr "ಸà³à²¥à²³ : " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ",%1 ಮೀ" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " -msgstr "ಗà³à²°à²¹: " +msgstr "ಗà³à²°à²¹ : " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "ಮಾದರಿ: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "ಪರಿಮಾಣ: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "ಗಾತà³à²°: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "ಆಕಾಶಗಂಗೆ" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "ತೆರೆದ ತಾರಾಗà³à²šà³à²›" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "ಗೋಳ ಗà³à²šà³à²›" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "ನೀಹಾರಿಕೆ" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "ಗà³à²°à²¹à²¸à²¦à³ƒà²¶ ನೀಹಾರಿಕೆ" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "ಮಸà³à²•à²¿à²¨ ಜೊತೆ ಸಂಗತವಾಗಿರà³à²µ ಕà³à²‚ಚ" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ಅಪರಿಚಿತ" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "ನೋಂದಣಿಗೊಳà³à²³à²¦ ಪà³à²°à²­à³‡à²§" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "ಪರಿಪೂರà³à²£ ಪರಿಮಾಣ: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "ಅಂತರ: %1 AU (%2 KM)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "ದೂರ: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "ತೋರಿಕೆಯ ವà³à²¯à²¾à²¸: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "ವರà³à²£à²ªà²‚ಕà³à²¤à²¿ ಪà³à²°à²­à³‡à²§ :%1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "ದೂರ: %1 ಜà³à²¯à³‹à²¤à²¿à²°à³à²µà²°à³à²·à²—ಳà³" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ಸà³à²¥à²¾à²¨à²ªà²²à³à²²à²Ÿà²¦à²¿à²‚ದ ಉಂಟಾದ ಬದಲಾವಣೆ: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "ಅಂತರಿಕà³à²·à²¨à³Œà²•à³†" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "ತೆರೆಚಿತà³à²°à²¦ ಕೈಪಿಡಿಯನà³à²¨à³ ಆಯà³à²•à³†à²®à²¾à²¡à²¿" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "ಲೇಖಕರà³" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "ಸಂಪರà³à²• ವಿಳಾಸ" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "ಕರà³à²¤à³ƒ" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ಪರವಾನಗಿ" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1003,49 +1104,53 @@ msgid "OSX Developer: %1" msgstr "OSX ನಿರà³à²®à²¾à²£à²•à²°à³à²¤à²°à³: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "ವಿಂಡೋಸà³" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "ಅಂತರಿಕà³à²·" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "ವಿವರಣೆ ಲಭà³à²¯à²µà²¿à²²à³à²²" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "ಯಾವà³à²¦à³‡ ಉಲà³à²•à³†à²—ಳಿಲà³à²²" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "ಹೊಸ ಸà³à²¥à²³" @@ -1149,19 +1254,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1177,30 +1282,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "ಈ ಗಣಕಯಂತà³à²°à²µà³ OpenGL ಅನà³à²¨à³ ಬೆಂಬಲಿಸà³à²µà³à²¦à²¿à²²à³à²²." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "ಸೂರà³à²¯" @@ -1217,12 +1328,12 @@ msgstr "ಭೂಮಿ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "ಚಂದà³à²°" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "ಮಂಗಳ" @@ -1264,7 +1375,7 @@ #: src/translations.h:48 msgid "Ganymede" -msgstr "ಗà³à²¯à²¨à²¿à²®à³†à²¡à³" +msgstr "ಗà³à²¯à²¾à²¨à²¿à²®à³†à²¡à³" #: src/translations.h:49 msgid "Callisto" @@ -1320,7 +1431,7 @@ msgstr "ಮೇತಿಸà³" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "ಶನಿ" @@ -1334,7 +1445,7 @@ #: src/translations.h:65 msgid "Tethys" -msgstr "ಟೆತಿಸà³" +msgstr "ತೆಥಿಸà³" #: src/translations.h:66 msgid "Dione" @@ -1342,11 +1453,11 @@ #: src/translations.h:67 msgid "Rhea" -msgstr "ರà³à²¹à²¿à²¯" +msgstr "ರಿಯಾ" #: src/translations.h:68 msgid "Titan" -msgstr "ಟೈಟನà³" +msgstr "ಟೈಟಾನà³" #: src/translations.h:69 msgid "Hyperion" @@ -1390,7 +1501,7 @@ #: src/translations.h:79 msgid "Pluto" -msgstr "ಪà³à²²à³à²Ÿà³Š" +msgstr "ಪà³à²²à³à²Ÿà³‹" #: src/translations.h:80 msgid "Charon" @@ -1558,19 +1669,19 @@ #: src/translations.h:143 msgid "N" -msgstr "ಉ" +msgstr "ಬಡಗಣ (ಉತà³à²¤à²°)" #: src/translations.h:144 msgid "S" -msgstr "ದ" +msgstr "ತೆಂಕಣ (ದಕà³à²·à²¿à²£)" #: src/translations.h:145 msgid "E" -msgstr "ಪೂ" +msgstr "ಮೂಡಣ (ಪೂರà³à²µ)" #: src/translations.h:146 msgid "W" -msgstr "ಪ" +msgstr "ಪಡà³à²µà²£ (ಪಶà³à²šà²¿à²®)" #. TRANSLATORS: Type of object #: src/translations.h:153 @@ -1618,239 +1729,268 @@ msgstr "ಇನà³à²µà²¿à²Ÿà³" #: src/translations.h:170 -msgid "Korean" -msgstr "ಕೋರಿಯನà³" +msgid "Indian Vedic" +msgstr "" #: src/translations.h:171 +msgid "Korean" +msgstr "ಕೊರಿಯನà³" + +#: src/translations.h:172 msgid "Lakota" msgstr "ಲಕೊಟಾ" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "ಮವೋರಿ" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "ನವಾಹೊ" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "ನೋರà³à²¸à³" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" -msgstr "ಪೋಲಿನೇಸಿಯ" +msgstr "ಪಾಲಿನೇಸಿಯ" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "ಸಮಿ" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "ಟà³à²ªà²¿-ಗà³à²°à²¾à²¨à²¿" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" -msgstr "ವೆಸà³à²Ÿà²°à³à²¨à³" +msgstr "ಪಾಶà³à²šà²¾à²¤à³à²¯" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1860,1502 +2000,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "ದಿನಾಂಕ ಹಾಗೠಸಮಯ" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "೧ ಸೌರ ದಿನ ಸೇರಿಸà³" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "೧ ಸೌರ ಘಂಟೆ ಸೇರಿಸà³" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "೧ ಸೌರ ವಾರ ಸೇರಿಸà³" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "ಕಾಲದ ವೇಗವನà³à²¨à³ ನಿಧಾನಿಸà³" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "ಕಾಲದ ವೇಗವನà³à²¨à³ ಹೆಚà³à²šà²¿à²¸à³" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "ಈಗ ಕಾಲವನà³à²¨à³ ಗೊತà³à²¤à³à²ªà²¡à²¿à²¸à²¿" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "ಕಾಲದ ವೇಗವನà³à²¨à³ ಸಾಮಾನà³à²¯à²—ೊಳಿಸà³" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "೧ ಸೌರ ದಿನ ಕಳೆ" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "೧ ಸೌರ ಘಂಟೆ ಕಳೆ" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "೧ ಸೌರ ವಾರ ಕಳೆ" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "ದರà³à²¶à²•à²¦ ಆಯà³à²•à³†à²—ಳà³" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "ಪರದೆಯನà³à²¨à³ ಸಮತಲದ ದಿಕà³à²•à²¿à²—ೆ ತಿರà³à²—ಿಸà³" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "ಪೂರà³à²£ ಪರದೆ" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" -msgstr "ವಾತಾವರಣ" +msgstr "ವಾಯà³à²®à²‚ಡಲ" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "ದಿಗಾಂಶ ಜಾಲ" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "ತಾರಾಗಣದ ಚಿತà³à²°à²•à²²à³†" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "ತಾರಾಗಣದ ಪರಿಮಿತಿ" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "ತಾರಾಗಣದ ಗà³à²°à³à²¤à³" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "ತಾರಾಗಣ ರೇಖೆ" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "ಸಮಭಾಜಕ ವà³à²°à²¤à³à²¤" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "ಸಮಭಾಜಕ ವà³à²°à²¤à³à²¤à²¦ ಜಾಲ" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" -msgstr "ಮಂಜà³" +msgstr "ಮಂಜà³/ಕಾವಳ" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "ಭೂಮಿ" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "ಮಧà³à²¯ ರೇಖೆ" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "ನೀಹಾರಿಕೆಗಳà³" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "ಇರà³à²³à²¿à²—ೆ ಹೊಂದಿಕೆಯಾಗà³à²µ ರೀತಿ" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "ಗà³à²°à²¹ ಕಕà³à²·à³†" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "ಗà³à²°à²¹ ಜಾಡà³" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" -msgstr "ನಕà³à²·à²¤à³à²°à²—ಳà³" +msgstr "ತಾರೆಗಳà³" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "ಪರದೆಯನà³à²¨à³ ನೇರ ದಿಕà³à²•à²¿à²—ೆ ತಿರà³à²—ಿಸà³" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "ಇತರೆ" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "ನಿರà³à²—ಮಿಸà³" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "ಚಲನೆ ಮತà³à²¤à³ ಆಯà³à²•à³†" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "ಆಯà³à²•à³†à²¯à³ ವಸà³à²¤à³à²µà²¿à²¨ ಮೇಲೆ ಕೇಂದà³à²°à³€à²•à²°à²¿à²¸à³" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "ಆಯà³à²•à³†à²¯ ವಸà³à²¤à³à²µà²¨à³à²¨à³ ಹಿಂಬಾಲಿಸà³" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "ಚಿಕà³à²•à²¦à²¾à²—ಿಸà³" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "ದಿನಾಂಕ/ಸಮಯದ ಪà³à²Ÿ" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "ಸಹಾಯದ ಪà³à²Ÿ" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "ಸà³à²¥à²³ ಪà³à²Ÿ" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "ಹà³à²¡à³à²•à²¾à²Ÿà²¦ ಪà³à²Ÿ" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "ಆಕಾಶ ಮತà³à²¤à³ ನೋಟದ ಆಯà³à²•à³†à²¯ ಕಿಂಡಿ" @@ -3381,7 +3557,7 @@ msgstr "ನವೀಕರಿಸà³" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "ಸà³à²¥à²³" @@ -3397,10 +3573,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "ಅಳಿಸಿಹಾಕà³" @@ -3409,7 +3585,7 @@ msgstr "ಪಟà³à²Ÿà²¿à²—ೆ ಸೇರಿಸಿ" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "ಅಕà³à²·à²¾à²‚ಶ:" @@ -3420,12 +3596,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "ರೇಖಾಂಶ:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "ಎತà³à²¤à²°(ಸಮà³à²¦à³à²° ಮಟà³à²Ÿà²¦à²¿à²‚ದ):" @@ -3449,369 +3625,413 @@ msgid "Planet:" msgstr "ಗà³à²°à²¹:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "ವಸà³à²¤à³à²—ಳನà³à²¨à³ ಹà³à²¡à³à²•à³" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "ಆಯà³à²•à³†à²—ಳà³" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "ಆಯà³à²•à³†à²—ಳà³" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "ವೀಕà³à²·à²£à³†" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "ಆಕಾಶ" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "ಭೂದೃಶà³à²¯" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "ಹೆಸರà³à²—ಳೠಮತà³à²¤à³ ಸೂಚಕ" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "ಗà³à²°à²¹à²—ಳà³" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "ಗà³à²°à²¹à²—ಳೠಮತà³à²¤à³ ಉಪಗà³à²°à²¹à²—ಳà³" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "ಗà³à²°à²¹à²—ಳನà³à²¨à³ ತೋರಿಸà³" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "ಗà³à²°à²¹ ಸೂಚಕ" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "ಗà³à²°à²¹à²—ಳ ಕಕà³à²·à³†à²¯à²¨à³à²¨à³ ತೋರಿಸà³" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "ಬೆಳಕಿನ ವೇಗವನà³à²¨à³ ಅನà³à²•à²°à²¿à²¸à³" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "ವತಾವರಣವನà³à²¨à³ ತೋರಿಸà³" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "ಪೂರà³à²£ ಪà³à²°à²®à²¾à²£:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "ಸಾಪೇಕà³à²· ಪà³à²°à²®à²¾à²£:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "ಹೊಳೆಯà³à²µà²¿à²•à³†:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "ಪà³à²°à²•à²¾à²¶à²®à²¾à²¨à²µà²¾à²¦ ವಸà³à²¤à³à²—ಳ ಇರà³à²µà²¿à²•à³†à²¯à²²à³à²²à²¿ ಚಿಕà³à²• ನಕà³à²·à²¤à³à²°à²—ಳನà³à²¨à³ ಮಂಕಾಗಿಸà³" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "ಉಲà³à²•à³†" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "ತಾರಾಪà³à²‚ಜ" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "ಗೆರೆಗಳನà³à²¨à³ ತೋರಿಸà³" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "ಹೆಸರà³à²—ಳನà³à²¨à³ ತೋರಿಸà³" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "ಗಡಿರೆಖೆಯನà³à²¨à³ ತೋರಿಸà³" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "ಚಿತà³à²°à²—ಳನà³à²¨à³ ತೋರಿಸà³" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ಖಗೋಳ" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "ಪà³à²°à²•à³à²·à³‡à²ª" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "ಭೂದೃಶà³à²¯à²—ಳನà³à²¨à³ ಸೇರಿಸà³/ತೆಗೆದà³à²¹à²¾à²•à³..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "ನೆಲವನà³à²¨à³‚ ತೋರಿಸà³" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "ಮಂಜನà³à²¨à³ ತೋರಿಸà³" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "ಜೊತೆಗಿನ ಗà³à²°à²¹ ಮತà³à²¤à³ ಸà³à²¥à²³à²µà²¨à³à²¨à³ ಉಪಯೋಗಿಸà³" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "ಗೋಚರ" #: src/ui_configurationDialog.h:973 msgid "Configuration" -msgstr "ಸಂರಚನೆ" +msgstr "ಸಂವಿನà³à²¯à²¾à²¸ (ಕಾನà³'ಫಿಗರೇಷನà³)" #: src/ui_configurationDialog.h:975 msgid "Program language" @@ -3855,7 +4075,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "ಆಯà³à²•à³†à²¯ ವಸà³à²¤à³à²µà²¿à²¨ ವಿಷಯಗಳà³" @@ -3871,11 +4091,8 @@ msgid "Display no information" msgstr "ಯಾವà³à²¦à³‡ ವಿಷಯವನà³à²¨à³‚ ತೋರಿಸಬೇಡ" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "ಯಾವà³à²¦à³‚ ಇಲà³à²²" @@ -4017,7 +4234,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4029,182 +4246,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "ಒಂದೇ ತಾರಗà³à²šà³à²šà²µà²¨à³à²¨à³ ಆರಿಸಿರಿ" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "ಹೆಸರà³à²—ಳನà³à²¨à³ ದಿಗಂತಕà³à²•à³† ಹೊಂದಿಸà³" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "ಮರà³à²ªà³à²°à²¯à²¤à³à²¨à²¿à²¸à²¿" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "ರದà³à²¦à³à²—ೊಳಿಸà³" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "ಪà³à²°à²®à³à²–" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ಮಾಹಿತಿ" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "ಸಾಧನಗಳà³" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "ಪà³à²²à²—ಿನà³â€Œà²—ಳà³" @@ -4372,176 +4599,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4613,64 +4840,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4678,7 +4910,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4689,14 +4921,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4705,305 +4937,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5011,25 +5312,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5037,17 +5338,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5055,41 +5356,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5097,338 +5400,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5464,22 +5810,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5796,7 +6142,7 @@ #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:516 msgid "OK" -msgstr "" +msgstr "ಓ.ಕೆ/ಸರಿ" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:394 msgid "Telescopes Controlled" @@ -5866,62 +6212,62 @@ "ಮಾಡಿಕೊಡà³à²¤à³à²¤à²¦à³†." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6075,7 +6421,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6093,7 +6439,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6109,154 +6455,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "ಪಠà³à²¯ ಬಳಕೆದಾರರ ಮಾಧà³à²¯à²®" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "ಭಾಷೆ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6289,22 +6635,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6473,36 +6819,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6520,7 +6873,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6534,14 +6887,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6549,8 +6902,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6568,29 +6922,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6606,51 +7037,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6770,11 +7211,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6782,137 +7223,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" -msgstr "" +msgstr "ಖಗೋಳ ಮಾನ (AU)" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6920,49 +7365,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6978,185 +7512,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" -msgstr "" +msgstr "ಎಂ" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7360,9 +7888,6 @@ #~ msgid "Date & Time" #~ msgstr "ದಿನಾಂಕ ಹಾಗೠಸಮಯ" -#~ msgid "Stars " -#~ msgstr "ನಕà³à²·à²¤à³à²°à²—ಳೠ" - #~ msgid "Colors " #~ msgstr "ಬಣà³à²£à²—ಳೠ" @@ -7372,21 +7897,12 @@ #~ msgid "Set Time " #~ msgstr "ವೇಳೆಯನà³à²¨à³ ನಿಗದಿಗೊಳಿಸೠ" -#~ msgid "Effects " -#~ msgstr "ಪರಿಣಾಮ " - -#~ msgid "Administration " -#~ msgstr "ಕಾರà³à²¯ ನಿರà³à²µà²¹à²£à³† " - #~ msgid "Latitude: " #~ msgstr "ಅಕà³à²·à²¾à²‚ಶ: " #~ msgid "Longitude: " #~ msgstr "ರೇಖಾಂಶ: " -#~ msgid "Solar System Body: " -#~ msgstr "ಸೌರವà³à²¯à³‚ಹದ ಕಾಯಕ: " - #~ msgid "Sky Time: " #~ msgstr "ಆಕಾಶ ವೇಳೆ: " @@ -7408,24 +7924,9 @@ #~ msgid "Twinkling: " #~ msgstr "ಮಿನà³à²—à³à²µà²¿à²•à³†: " -#~ msgid "Constellation Lines" -#~ msgstr "ತಾರಾಗಣ ರೇಖೆ" - -#~ msgid "Constellation Names" -#~ msgstr "ತಾರಾಗಣದ ಹೆಸರà³à²—ಳà³" - -#~ msgid "Constellation Art Intensity" -#~ msgstr "ತಾರಾಗಣದ ಚಿತà³à²°à²•à²²à³†à²¯ ತೀಕà³à²·à³à²£à²¤à³†" - #~ msgid "Planet Names" #~ msgstr "ಗà³à²°à²¹à²¦ ಹೆಸರà³à²—ಳà³" -#~ msgid "Planet Trails" -#~ msgstr "ಗà³à²°à²¹à²¦ ಜಾಡà³" - -#~ msgid "Equator Line" -#~ msgstr "ಭೂಮಧà³à²¯ ರೇಖೆ" - #~ msgid "Nebula Circles" #~ msgstr "ನೀಹಾರಿಕಾ ವೃತà³à²¤à²—ಳà³" @@ -7447,11 +7948,8 @@ #~ msgid "Set UI Locale: " #~ msgstr "ಭಾಷಾ ಆಯà³à²•à³†: " -#~ msgid "Meridian Line" -#~ msgstr "ಮಧà³à²¯ ರೇಖೆ" - -#~ msgid "Scripts " -#~ msgstr "ಲಿಪಿ " +#~ msgid "Nebulas" +#~ msgstr "ನೀಹಾರಿಕೆಗಳà³" #~ msgid "Set Time Zone: " #~ msgstr "ವಲಯದ ವೇಳೆ ನಿಯಮಿಸಿ: " @@ -7474,18 +7972,6 @@ #~ msgid "Limiting Magnitude: " #~ msgstr "ಪರಿಮಾಣದ ಸೀಮೆ: " -#~ msgid "Cardinal Points" -#~ msgstr "ಮೂಲಾಂಕ ಬಿಂದà³à²—ಳà³" - -#~ msgid "Zoom Duration: " -#~ msgstr "ದೊಡà³à²¡à²¦à²¾à²—ಿ ಇರಬೇಕಾದ ವೇಳೆ: " - -#~ msgid "CD/DVD Script: " -#~ msgstr "ಸಿಡಿ/ಡಿವಿಡಿ ಲಿಪಿ: " - -#~ msgid "Local Script: " -#~ msgstr "ಸà³à²¥à²³à³€à²¯ ಲಿಪಿ: " - #~ msgid "Select and exit to run." #~ msgstr "ನಿರà³à²µà²¹à²¿à²¸à²²à³ ಅಯà³à²•à³† ಮಾಡಿ ನಿರà³à²—ಮಿಸಿ." @@ -7495,24 +7981,12 @@ #~ msgid "Altitude (m): " #~ msgstr "ಎತà³à²¤à²° (ಮೀ): " -#~ msgid "Constellation Boundaries" -#~ msgstr "ತಾರಾಗಣದ ಗಡಿ" - -#~ msgid "Planet Orbits" -#~ msgstr "ಗà³à²°à²¹à²•à²•à³à²·à³†à²—ಳà³" - #~ msgid "Nebula Names" #~ msgstr "ನೀಹಾರಿಕೆಯ ಹೆಸರà³à²—ಳà³" #~ msgid "Object Sizing Rule: " #~ msgstr "ವಸà³à²¤à³à²µà²¿à²¨ ಗಾತà³à²° ನಿಯಮ: " -#~ msgid "Magnitude Scaling Multiplier: " -#~ msgstr "ಪರಿಮಾಣ ಗà³à²£à²¿à²¤à²¾à²‚ಕ " - -#~ msgid "USB Script: " -#~ msgstr "ಯà³.ಎಸà³.ಬಿ. ಲಿಪಿ: " - #~ msgid "Correct for light travel time: " #~ msgstr "ಜà³à²¯à³‹à²¤à²¿à²°à³ ಪà³à²°à²¯à²¾à²£à²¦ ಸಮಯಕà³à²•à³† ವಜಾ: " @@ -7525,24 +7999,12 @@ #~ msgid "Planets labels" #~ msgstr "ಗà³à²°à²¹à²—ಳ ಹೆಸರà³" -#~ msgid "Day keys: " -#~ msgstr "ದಿನದ ಕೀಲಿ: " - #~ msgid ":" #~ msgstr ":" #~ msgid "/" #~ msgstr "/" -#~ msgid "Ecliptic Line" -#~ msgstr "ಗà³à²°à²¹à²£ ರೇಖೆ" - -#~ msgid "Equatorial Grid" -#~ msgstr "ಸಮಭಾಜಕ ಜಾಲ" - -#~ msgid "Azimuthal Grid" -#~ msgstr "ದಿಗಂಶ ಜಾಲ" - #~ msgid "Light pollution: " #~ msgstr "ಬೆಳಕಿನ ಮಾಲಿನà³à²¯: " @@ -7567,5 +8029,97 @@ #~ msgid "Other" #~ msgstr "ಇತರೆ" +#~ msgid "Equatorial Grid" +#~ msgstr "ಸಮಭಾಜಕ ರೇಖಾಪಟà³à²Ÿà²¿" + +#~ msgid "Azimuthal Grid" +#~ msgstr "ಅà²à²¿à²®à²¥à²²à³ ರೇಖಾಪಟà³à²Ÿà²¿" + +#~ msgid "Equator Line" +#~ msgstr "ಸಮಭಾಜಕ ರೇಖೆ" + +#~ msgid "Ecliptic Line" +#~ msgstr "ಕà³à²°à²¾à²‚ತಿ ರೇಖೆ (ವೃತà³à²¤)" + +#~ msgid "Cardinal Points" +#~ msgstr "ದಿಶಾ ಬಿಂದà³à²—ಳà³" + +#~ msgid "Stars " +#~ msgstr "ತಾರೆಗಳೠ" + +#~ msgid "Effects " +#~ msgstr "ಪರಿಣಾಮಗಳೠ" + +#~ msgid "Scripts " +#~ msgstr "ಕà³à²°à²¿à²¯à²¾à²¬à²°à²¹ (ಸà³à²•à³à²°à²¿à²ªà³à²Ÿà³) " + +#~ msgid "Administration " +#~ msgstr "ಆಡಳಿತ " + +#~ msgid "Solar System Body: " +#~ msgstr "ಸೌರವà³à²¯à³‚ಹದ ಕಾಯ : " + +#~ msgid "Day keys: " +#~ msgstr "ದಿನದ ಕೀಲಿಗಳà³: " + #~ msgid "Sidereal" -#~ msgstr "ಸà³à²¥à²¿à²° ನಕà³à²·à²¤à³à²° ಪà³à²‚ಜ" +#~ msgstr "ನಾಕà³à²·à²¤à³à²°à²¿à²•" + +#~ msgid "Star Value Multiplier: " +#~ msgstr "ತಾರಾ ಮೌಲà³à²¯ ಗà³à²£à²• " + +#~ msgid "Maximum Magnitude to Label: " +#~ msgstr "ಗರಿಷà³à²¤ ಕಾಂತಿಮಾನ ಪಟà³à²Ÿà²¿ (ಲೇಬಲà³) " + +#~ msgid "Constellation Lines" +#~ msgstr "ತಾರಾಪà³à²‚ಜ ರೇಖೆ" + +#~ msgid "Constellation Names" +#~ msgstr "ತಾರಾಪà³à²‚ಜ ಹೆಸರà³à²—ಳà³" + +#~ msgid "Constellation Art Intensity" +#~ msgstr "ತಾರಾಪà³à²‚ಜದ ಚಿತà³à²°à²•à²²à³†à²¯ ತೀಕà³à²·à³à²£à²¤à³†" + +#~ msgid "Constellation Boundaries" +#~ msgstr "ತಾರಾಪà³à²‚ಜದ ಮೇರೆಗಳà³" + +#~ msgid "Planet Orbits" +#~ msgstr "ಗà³à²°à²¹ ಕಕà³à²·à³†à²—ಳà³" + +#~ msgid "Planet Trails" +#~ msgstr "ಗà³à²°à²¹à²¦ ಜಾಡà³à²—ಳà³" + +#~ msgid "Meridian Line" +#~ msgstr "ಅಹà³à²¨à²¿à²• ರೇಖೆ (ಮೆರಿಡಿಯನà³)" + +#~ msgid "Magnitude Scaling Multiplier: " +#~ msgstr "ಕಾಂತಿಮಾನ ಮಾಪನ ಗà³à²£à²• " + +#~ msgid "Maximum Nebula Magnitude to Label: " +#~ msgstr "ಗರಿಷà³à²Ÿ ನೀಹಾರಿಕ ಕಾಂತಿಮಾನ -ಪಟà³à²Ÿà²¿ (ಲೇಬಲà³) ಮಾಡಲೠ" + +#~ msgid "Zoom Duration: " +#~ msgstr "à²à³‚ಮಿಸà³à²µ ಕಾಲ : " + +#~ msgid "Cursor Timeout: " +#~ msgstr "ಮಿಣà³à²• (ಕರà³à²¸à²°à³) ಕಾಲಾಂತ " + +#~ msgid "Local Script: " +#~ msgstr "ಸà³à²¥à²³à³€à²¯ ಕà³à²°à²¿à²¯à²¾ ಬರಹ : " + +#~ msgid "CD/DVD Script: " +#~ msgstr "ಸಿಡಿ/ಡಿವಿಡಿ ಕà³à²°à²¿à²¯à²¾à²¬à²°à²¹ " + +#~ msgid "Load Default Configuration: " +#~ msgstr "ಚಾಲà³à²¤à²¿à²¸à³à²¥à²¿à²¤à²¿ ಸಂವಿನà³à²¯à²¾à²¸ ಪೂರಣಗೊಳಿಸೠ( ಲೋಡೠಡಿಪಾಲà³à²Ÿà³ ಕಾನà³'ಫಿಗರೇಷನà³) " + +#~ msgid "Save Current Configuration as Default: " +#~ msgstr "" +#~ "ಚಾಲà³à²¤à²¿ ಸಂವಿನà³à²¯à²¾à²¸à²µà²¨à³à²¨à³ ( ಕರೆಂಟೠಕಾನà³'ಫ಼ಿಗರೇಷನà³) ಚಾಲà³à²¤à²¿à²¸à³à²¥à²¿à²¤à²¿à²¯à²¾à²—ಿ (ಡಿಫಾಲà³à²Ÿà³) " +#~ "ಉಳಿಸೠ" + +#~ msgid "Hydra" +#~ msgstr "ಅಜಗರ (ಹೈಡà³à²°à²¾)" + +#~ msgid "USB Script: " +#~ msgstr "ಯà³.ಎಸà³.ಬಿ. ಕà³à²°à²¿à²¯à²¾à²¬à²°à²¹ (ಸà³à²•à³à²°à²¿à²ªà³à²Ÿà³): " diff -Nru stellarium-0.12.1/po/stellarium/ko.po stellarium-0.12.4/po/stellarium/ko.po --- stellarium-0.12.1/po/stellarium/ko.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ko.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-01-13 06:42+0000\n" -"Last-Translator: Juho Kim \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-28 04:14+0000\n" +"Last-Translator: LEE E. S. \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:16+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "ìžì˜¤ì„ " -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "황ë„" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "ì ë„" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "지í‰ì„ " @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "ì€í•˜ë©´" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "ì €ìž: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "위치: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "행성: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "유형: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" -msgstr "" +msgstr "등급: %1 (멸종한: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "등급: %1" @@ -86,125 +86,125 @@ msgid "Size: %1" msgstr "í¬ê¸°: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "ì€í•˜" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "산개성단" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "구ìƒì„±ë‹¨" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "성운" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "행성ìƒì„±ìš´" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "ì•”í‘성운" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "성운과 ê´€ë ¨ëœ ì„±ë‹¨" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ì•Œ 수 ì—†ìŒ" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "ìžë£Œ 없는 유형" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "절대등급: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" -msgstr "" +msgstr "황ë„지ì : %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" -msgstr "" +msgstr "í™©ë„ ê²½ì‚¬: %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "거리: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "거리: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "ì‹œì§ê²½: %1, 고리 í¬í•¨: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "ì‹œì§ê²½: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "항성주기: %1ì¼ (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "항성ì¼: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "í‰ê· íƒœì–‘ì¼: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "위ìƒê°: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "ì´ê°: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "위ìƒ: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" -msgstr "" +msgstr "비추는: %1%" #: src/core/modules/MinorPlanet.cpp:201 #, qt-format msgid "Provisional designation: %1" -msgstr "" +msgstr "ì¼ì‹œì ì¸ 지명: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "항성" @@ -217,64 +217,141 @@ #: src/core/modules/StarWrapper.cpp:60 #, qt-format msgid "Apparent Magnitude: %1 (by extinction)" -msgstr "" +msgstr "절대 등급: %1 (by extinction)" + +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "í­ë°œì„± 변광성" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "맥ë™ì„± 변광성" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "회전성 변광성" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "격변성 변광성" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "ì‹ ì´ì¤‘성" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "변광성" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" -msgstr "" +msgstr "ìŒì„±" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "형태: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" -msgstr "" +msgstr "등급: %1 (extincted to: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" -msgstr "" +msgstr "등급: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "등급 범위: %1%2%3 (Photometric system: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "등급 범위: %1%2%3/%4 (Photometric system: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "스펙트럼형: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "거리: %1 ê´‘ë…„" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "시차: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "최소 ì¡°ëª…ì„ ìœ„í•œ 기준 ì‹œì : %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "최대 ì¡°ëª…ì„ ìœ„í•œ 기준 ì‹œì : %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "주기: %1 ì¼" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "ë‹¤ìŒ ìµœì†Œ 조명: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "ë‹¤ìŒ ìµœëŒ€ 조명: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "ì‹ì˜ 기간: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "떠오르는 시간: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "우주선" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" -msgstr "" +msgstr "ë³´ì •(수정)ì´ ë¹„í™œì„±í™”ë©ë‹ˆë‹¤. ë‹¹ì‹ ì´ ë¬´ì—‡ì„하는지 알고있는 경우ì—만 사용하십시오!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " "Henriksson in his article Einstein's Theory of Relativity Confirmed by " "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" +"ì´ ì—­ì‚¬ì ì¸ ê³µì‹ì€ 1931ë…„ C. Schochì´ ë°œê²¬í–ˆìœ¼ë©° G. Henriksson ë…¼ë¬¸ì— ì‚¬ìš©ë˜ì—ˆìŠµë‹ˆë‹¤. ì•„ì¸ìŠˆíƒ€ì¸ì˜ ìƒëŒ€ì„± " +"ì´ë¡ ì´ 고대 ì¼ì‹í˜„ìƒì— ì˜í•´ ì¦ëª…ë˜ì—ˆìŠµë‹ˆë‹¤. (%1). ë” ë§Žì€ ì •ë³´ëŠ” %2여기%3ì„ ì°¸ê³ í•˜ì‹­ì‹œì˜¤." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." -msgstr "" +msgstr "경험방정ì‹ì€ G. M. Clemenceì˜ ë…¼ë¬¸ì— ë°œí‘œëœê²ƒìž…니다 천문ìƒìˆ˜ 시스템(%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -282,38 +359,48 @@ "Astronomical Formulae for Calculators. It was also adopted in the " "PC program SunTracker Pro." msgstr "" +"ì´ ê³µì‹ì€ Spencer Jones (%1)ì— ì˜í•´ 태양, 달, í–‰ì„±ì˜ ê³¼ê±°-1650ë…„ 관측 ì—°êµ¬ì˜ ê¸°ë°˜ì´ ë˜ì—ˆìŠµë‹ˆë‹¤. Jean " +"Meeusê°€ ê·¸ì˜ ê³„ì‚°ê¸°ë¥¼ 위한 ì²œë¬¸í•™ì  ê³µì‹ì— 사용ë˜ì—ˆìŠµë‹ˆë‹¤. ì´ê²ƒì€ ë˜í•œ SunTracker Proë¼ëŠ” 컴퓨터 " +"í”„ë¡œê·¸ëž¨ì— ì±„íƒë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" +"ì´ê²ƒì€ Mucke & Meeus (1983)ì— ì˜í•´ 천체력과 ì¼ì‹íŽ¸ëžŒì— 채íƒëœ ê³µì‹ìœ¼ë¡œ IAU (1952-" +"국제천문연맹)ì—ì„œ 약간 수정한 버젼입니다." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " "relation was also implicitly adopted in the syzygy tables of Goldstine " "(1973)." msgstr "" +"Tuckerman (1962, 1964) 표는 기ì›ì „ 601년부터 서기 1649년까지 5ë…„ê³¼ 10ë…„ 간격으로 태양, 달, í–‰ì„±ì˜ ìœ„ì¹˜ë¥¼ " +"목ë¡í™”합니다. ë™ì¼ê´€ê³„는 Goldstine (1973)ì˜ syzygy í‘œì— ì•”ë¬µì ìœ¼ë¡œ 채íƒë˜ì–´ì¡ŒìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " "article The accelerations of the earth and moon from early astronomical " "observations (%1)." msgstr "" +"ì´ ë°©ì •ì‹ì€ P. M. Muller 와 F. R. Stephensonì˜ ì´ˆê¸° 천문학 관측으로부터 지구와 ë‹¬ì˜ " +"ê°€ì†ë„(%1) ë…¼ë¬¸ì— ë°œí‘œëœê²ƒìž…니다." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" +"ì´ ë°©ì •ì‹ì€ F. R. Stephenson ì˜ Pre-Telescopic 천문학 관측(%1) ë…¼ë¬¸ì— ë°œí‘œë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -321,41 +408,52 @@ "Polynomial approximations for the correction delta T E.T.-U.T. in the " "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" +"ì´ 12ì°¨ 다항ì‹( Schmadel & Zech (1988)ì— ì˜í•´ í기ë¨)ì€ Brouwer(1952)ì— ì˜í•´ ë°œí‘œëœ ë°ì´í„°ë¥¼ ì´ìš©í•´ " +"L. D. Schmadelê³¼ G. Zechì´ 1800-1975 ê¸°ê°„ì•ˆì— ë³´ì • delta T E.T.-U.T. 를 위한 다항 근사치 " +"ë…¼ë¬¸ì— ë°œí‘œë˜ì—ˆìŠµë‹ˆë‹¤. (%1)" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" +"ì´ ì•Œê³ ë¦¬ì¦˜ì€ P. Bretagnon & L. Simon'sì˜ í–‰ì„± 프로그램과 -4000ì—ì„œ +2800까지 í‘œ 그리고 " +"컴퓨터 플ë¼ë„¤íƒ€ë¦¬ì›€ í”„ë¡œê·¸ëž¨ì¸ ResShiftì— ì±„íƒë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " "article Long-term changes in the rotation of the earth - 700 B.C. to " "A.D. 1980 (%1)." msgstr "" +"ì´ ë°©ì •ì‹ì€ F. R. Stephensonê³¼ L. V. Morrison 기ì›ì „ 700년부터 서기 1980까지 ì§€êµ¬ì˜ íšŒì „ì˜ " +"장주기 변화(%1) ë…¼ë¬¸ì— ë°œí‘œë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." -msgstr "" +msgstr "ì´ ì•Œê³ ë¦¬ì¦˜ì€ ì»´í“¨í„° 플ë¼ë„¤íƒ€ë¦¬ì›€ 프로그램 Guide 7ì— ì‚¬ìš©ë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" +"ì´ ì•Œê³ ë¦¬ì¦˜ì€ F. Espenakì˜ 50ë…„ ì¼ì‹íŽ¸ëžŒ:1986-2035와 50ë…„ ì›”ì‹íŽ¸ëžŒ:1986-" +"2035(1989)ì— ì£¼ì–´ì¡ŒìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" +"ì´ ë°©ì •ì‹ì€ 기ì›ì „ 2137년부터 서기 1713ë…„ê¹Œì§€ì˜ 31ê°œ ì¼ì‹ê¸°ë¡ ë°ì´í„°ë¥¼ 분ì„í•œ K.M. Borkowski (%1)ì— ì˜í•´ " +"통용ë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -363,58 +461,64 @@ "Period 1800-1988 (%1) as data fit through values given by Stephenson & " "Morrison (1984)." msgstr "" +"ì´ 12ì°¨ 다항방정ì‹ì€ Stephenson & Morrison (1984)ì— ì˜í•´ 주어진 ë°ì´í„°ë¥¼ ì´ìš©í•˜ì—¬ L. D. Schmadelê³¼ " +"G. Zechê°€ 1800-1988ë…„ 기간ë™ì•ˆ U.Tì—ì„œ E.T.ê¹Œì§€ì˜ ê²½í—˜ì  ë³€í™˜(%1)ì˜ ë…¼ë¬¸ì— ë°œí‘œë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" +"ì´ ê³µì‹ì€ M. Chapront-Touze & J. Chaprontì˜ ê¸°ì›ì „ 4000년부터 서기 8000ë…„ê¹Œì§€ì˜ ë‹¬ì˜ í‘œì™€ " +"프로그램(1991)ì˜ ELP 2000-85 ë‹¬ì˜ ì´ë¡ ì˜ ìš”ì•½ë²„ì ¼ì— ì±„íƒë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " "article Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD " "1990 (%1)." msgstr "" +"ì´ ë°©ì •ì‹ì€ F. R. Stephensonê³¼ L. V. Morrisonì˜ ê¸°ì›ì „ 700년부터 서기 1990년까지 ì§€êµ¬ì˜ íšŒì „ì•ˆì˜ " +"장주기 파ë™(%1) ë…¼ë¬¸ì— ë°œí‘œë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." -msgstr "" +msgstr "F. R. Stephensonì€ ê·¸ì˜ ì±… ê³¼ê±°ì˜ ì¼ì‹ê³¼ 지구 회전(%1)ì— ë°œí‘œí•˜ì˜€ìŠµë‹ˆë‹¤." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +526,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +534,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +543,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,48 +553,65 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." +msgstr "기본ì ìœ¼ë¡œ 사용" + +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" -msgstr "" +msgstr "ì—러" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" -msgstr "" +msgstr "ì´ ë²”ìœ„ë¥¼ 벗어나는 ì˜ë¯¸ì—†ëŠ” ê°’" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" -msgstr "" +msgstr "ì´ ë²”ìœ„ë¥¼ 벗어나는 0ì¸ ê°’" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." -msgstr "" +msgstr "ì‚¬ìš©ì˜ ìœ íš¨ë²”ìœ„: ë…„ %1ê³¼ %2, %3 사ì´" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." -msgstr "" +msgstr "ì‚¬ìš©ì˜ ìœ íš¨ë²”ìœ„: ë…„ %1ê³¼ %2 사ì´" #: src/core/StelProjector.cpp:123 msgid "Maximum FOV: " @@ -600,7 +721,7 @@ #: src/core/StelObject.cpp:111 #, qt-format msgid "Galactic longitude/latitude: %1/%2" -msgstr "" +msgstr "ì€ê²½/ì€ìœ„: %1/%2" #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:124 #: src/core/StelObject.cpp:127 @@ -624,11 +745,11 @@ #: src/core/SimbadSearcher.cpp:55 msgid "Network error" -msgstr "" +msgstr "ë„¤íŠ¸ì›Œí¬ ì˜¤ë¥˜" #: src/core/SimbadSearcher.cpp:92 src/core/SimbadSearcher.cpp:104 msgid "Error parsing position" -msgstr "" +msgstr "êµ¬ë¬¸ë¶„ì„ ì˜¤ë¥˜ 위치" #: src/core/SimbadSearcher.cpp:130 msgid "Querying" @@ -636,58 +757,59 @@ #: src/core/SimbadSearcher.cpp:134 msgid "Not found" -msgstr "" +msgstr "ì°¾ì„ ìˆ˜ ì—†ìŒ" #: src/core/SimbadSearcher.cpp:134 msgid "Found" -msgstr "" +msgstr "ì°¾ìŒ" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "스í¬ë¦°ìƒ· 경로 ì„ íƒ" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "시작시 í™”ê°: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "시작시 시야 ë°©í–¥ 방위/ê³ ë„: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "저작ìž" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "ì—°ë½ì²˜" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "작성ìž" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ë¼ì´ì„ ìŠ¤" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "실행 ì¤‘ì¸ ìŠ¤í¬ë¦½íŠ¸: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "실행 ì¤‘ì¸ ìŠ¤í¬ë¦½íŠ¸: [ì—†ìŒ]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -695,16 +817,16 @@ "새 별 목ë¡ì„ ëª¨ë‘ ë‚´ë ¤ë°›ì•˜ìŠµë‹ˆë‹¤!\n" "ë‚´ë ¤ë°›ì€ ë³„ì„ í‘œì‹œí•˜ë ¤ë©´ 스텔ë¼ë¦¬ì›€ì„ 재시작하세요." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "사용할 수 있는 모든 별 카탈로그가 설치ë˜ì—ˆìŠµë‹ˆë‹¤." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" -msgstr "%2 중 %1ì˜ ëª©ë¡ì„ ë°›ìŒ" +msgstr "%2ê°œ 중 %1번 ëª©ë¡ ë°›ê¸°" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -713,7 +835,7 @@ "내려받는 중... %1\n" "(ì°½ì„ ë‹«ì•„ë„ ë©ë‹ˆë‹¤.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -724,7 +846,7 @@ "별 갯수: %2 100만\n" "ê´‘ë„ ë²”ìœ„: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -733,11 +855,11 @@ "%1ì„ ë‚´ë ¤ë°›ëŠ” 중 오류 ë°œìƒ:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "íŒŒì¼ ë¬´ê²°ì„± 검사 중..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -747,118 +869,126 @@ "파ì¼ì´ ì†ìƒë˜ì—ˆìŠµë‹ˆë‹¤." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" -msgstr "" +msgstr "알고리즘ì˜" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" -msgstr "" +msgstr "ë³´ì • ì—†ì´" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" -msgstr "" +msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" -msgstr "" +msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" -msgstr "" +msgstr "국제천문연맹(1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" -msgstr "" +msgstr "천문력(1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" -msgstr "" +msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" -msgstr "" +msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" -msgstr "" +msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" -msgstr "" +msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" -msgstr "" +msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" -msgstr "" +msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" -msgstr "" +msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" -msgstr "" +msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" -msgstr "" +msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" -msgstr "" +msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" -msgstr "" +msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" -msgstr "" +msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" -msgstr "" +msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -msgstr "" +msgstr "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" -msgstr "" +msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" -msgstr "" +msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" -msgstr "" +msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" -msgstr "" +msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" -msgstr "" +msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" -msgstr "" +msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" -msgstr "" +msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" -msgstr "" +msgstr "%1Tì˜ ì‚¬ìš©ìž ì •ì˜ ë°©ì •ì‹" #: src/gui/HelpDialog.cpp:147 msgid "Stellarium Help" @@ -917,7 +1047,7 @@ msgid "" "Below are listed only the actions with assigned keys. Further actions may be " "available via the \"%1\" button." -msgstr "" +msgstr "아래는 키가 ì§€ì •ëœ ë™ìž‘만 표시ë©ë‹ˆë‹¤. ë” ë§Žì€ ë™ìž‘ì€ \"%1\" ë²„íŠ¼ì„ ëˆŒëŸ¬ 사용할 수 있습니다." #: src/gui/HelpDialog.cpp:245 msgid "" @@ -991,7 +1121,7 @@ #: src/gui/HelpDialog.cpp:315 #, qt-format msgid "Continuous Integration: %1" -msgstr "" +msgstr "ì—°ì†ì ì¸ 통합: %1" #: src/gui/HelpDialog.cpp:316 src/gui/HelpDialog.cpp:317 #, qt-format @@ -1000,7 +1130,7 @@ #: src/gui/HelpDialog.cpp:318 msgid "Past Developers" -msgstr "" +msgstr "과거 개발ìžë“¤" #: src/gui/HelpDialog.cpp:319 msgid "" @@ -1018,49 +1148,53 @@ msgid "OSX Developer: %1" msgstr "OSX 개발ìž: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "스í¬ë¦½íŠ¸ 콘솔 ì°½" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "ì°½" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "스페ì´ìŠ¤" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "설명 ì—†ìŒ" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "유성 ì—†ìŒ" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "ì •ìƒ ì†ë„" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "표준 페르세우스 유성우 빈ë„수" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "유성í­í’ 비율" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "예외ì ì¸ 사ìžìžë¦¬ 유성우 빈ë„수" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "ì‚¬ìƒ ìµœê³  빈ë„수 (1996ë…„ 사ìžìžë¦¬ 유성우)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "새 위치" @@ -1141,80 +1275,86 @@ #: src/gui/ScriptConsole.cpp:73 msgid "quickrun..." -msgstr "" +msgstr "빠른실행..." #: src/gui/ScriptConsole.cpp:74 msgid "selected text" -msgstr "" +msgstr "ì„ íƒëœ í…스트" #: src/gui/ScriptConsole.cpp:75 msgid "clear text" -msgstr "" +msgstr "ì¼ë°˜ í…스트" #: src/gui/ScriptConsole.cpp:76 msgid "clear images" -msgstr "" +msgstr "ì¼ë°˜ ì´ë¯¸ì§€" #: src/gui/ScriptConsole.cpp:77 msgid "natural" -msgstr "" +msgstr "Tìžì—°ì˜" #: src/gui/ScriptConsole.cpp:78 msgid "starchart" -msgstr "" +msgstr "스타 챠트" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad 검색 오류" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad 검색" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "스트ë¼ìŠ¤ë¶€ë¥´ ëŒ€í•™êµ (프랑스)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "하버드 ëŒ€í•™êµ (미국)" #: src/gui/ShortcutsDialog.cpp:499 msgid "Action" -msgstr "" +msgstr "ìž‘ë™" #: src/gui/ShortcutsDialog.cpp:500 src/ui_shortcutsDialog.h:198 msgid "Primary shortcut" -msgstr "" +msgstr "초기 단축키" #: src/gui/ShortcutsDialog.cpp:501 src/ui_shortcutsDialog.h:199 msgid "Alternative shortcut" -msgstr "" +msgstr "대안 단축키" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" -msgstr "" +msgstr "%1T를 위한 ì‚¬ìš©ìž ë°©ì •ì‹" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" -msgstr "" +msgstr "어디서" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" -msgstr "" +msgstr "ë…„" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "ì´ ì‹œìŠ¤í…œì€ OpenGLì„ ì§€ì›í•˜ì§€ 않습니다." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "태양" @@ -1231,12 +1371,12 @@ msgstr "지구" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "달" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "화성" @@ -1286,39 +1426,39 @@ #: src/translations.h:50 msgid "Amalthea" -msgstr "" +msgstr "ì•„ë§í…Œì´ì•„" #: src/translations.h:51 msgid "Himalia" -msgstr "" +msgstr "히ë§ë¦¬ì•„" #: src/translations.h:52 msgid "Elara" -msgstr "" +msgstr "ì—˜ë¼ë¼" #: src/translations.h:53 msgid "Pasiphae" -msgstr "" +msgstr "파시파ì—" #: src/translations.h:54 msgid "Sinope" -msgstr "" +msgstr "시노페" #: src/translations.h:55 msgid "Lysithea" -msgstr "" +msgstr "리시티" #: src/translations.h:56 msgid "Carme" -msgstr "" +msgstr "ì¹´ë©”" #: src/translations.h:57 msgid "Ananke" -msgstr "" +msgstr "아난케" #: src/translations.h:58 msgid "Leda" -msgstr "" +msgstr "레다" #: src/translations.h:59 msgid "Thebe" @@ -1326,15 +1466,15 @@ #: src/translations.h:60 msgid "Adrastea" -msgstr "" +msgstr "ì•„ë“œë¼ìŠ¤í‹°" #. TRANSLATORS: Asteroid (9) Metis #: src/translations.h:61 src/translations.h:119 msgid "Metis" -msgstr "" +msgstr "메티스" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "토성" @@ -1388,19 +1528,19 @@ #: src/translations.h:75 msgid "Ariel" -msgstr "" +msgstr "아리엘" #: src/translations.h:76 msgid "Umbriel" -msgstr "" +msgstr "움브리엘" #: src/translations.h:77 msgid "Titania" -msgstr "" +msgstr "타ì´íƒ€ë‹ˆì•„" #: src/translations.h:78 msgid "Oberon" -msgstr "" +msgstr "오베론" #: src/translations.h:79 msgid "Pluto" @@ -1413,12 +1553,12 @@ #. TRANSLATORS: Moon of Pluto (II) #: src/translations.h:82 msgid "Nix" -msgstr "" +msgstr "닉스" #. TRANSLATORS: Moon of Pluto (III) #: src/translations.h:84 msgid "Hydra (moon)" -msgstr "" +msgstr "히드ë¼(위성)" #: src/translations.h:85 msgid "Eris" @@ -1430,51 +1570,51 @@ #: src/translations.h:87 msgid "Nereid" -msgstr "" +msgstr "네레ì´ë“œ" #: src/translations.h:88 msgid "Naiad" -msgstr "" +msgstr "나ì´ì•„스" #: src/translations.h:89 msgid "Thalassa" -msgstr "" +msgstr "탈ë¼ì‚¬" #: src/translations.h:90 msgid "Despina" -msgstr "" +msgstr "ë°ìŠ¤í”¼ë‚˜" #: src/translations.h:91 msgid "Galatea" -msgstr "" +msgstr "ê°ˆë¼í‹°ì–´" #: src/translations.h:92 msgid "Larissa" -msgstr "" +msgstr "ë¼ë¦¬ì‚¬" #: src/translations.h:93 msgid "Proteus" -msgstr "" +msgstr "프로우투스" #: src/translations.h:94 msgid "Halimede" -msgstr "" +msgstr "할리메ë°" #: src/translations.h:95 msgid "Psamathe" -msgstr "" +msgstr "프사마테" #: src/translations.h:96 msgid "Sao" -msgstr "" +msgstr "사오" #: src/translations.h:97 msgid "Laomedeia" -msgstr "" +msgstr "ë¼ì˜¤ë©”ë°ì´ì•„" #: src/translations.h:98 msgid "Neso" -msgstr "" +msgstr "네소" #: src/translations.h:99 msgid "Solar System Observer" @@ -1483,62 +1623,62 @@ #. TRANSLATORS: TNO/Asteroid (90377) Sedna #: src/translations.h:102 msgid "Sedna" -msgstr "" +msgstr "세드나" #. TRANSLATORS: TNO/Asteroid (50000) Quaoar #: src/translations.h:104 msgid "Quaoar" -msgstr "" +msgstr "퀘ì´ì‚¬" #. TRANSLATORS: TNO/Asteroid (90482) Orcus #: src/translations.h:106 msgid "Orcus" -msgstr "" +msgstr "오르쿠스" #. TRANSLATORS: TNO/Asteroid (136108) Haumea #: src/translations.h:108 msgid "Haumea" -msgstr "" +msgstr "하우메아" #. TRANSLATORS: Asteroid (5) Astraea #: src/translations.h:111 msgid "Astraea" -msgstr "" +msgstr "아스트ë¼ì´ì•„" #. TRANSLATORS: Asteroid (6) Hebe #: src/translations.h:113 msgid "Hebe" -msgstr "" +msgstr "헤베" #. TRANSLATORS: Asteroid (7) Iris #: src/translations.h:115 msgid "Iris" -msgstr "" +msgstr "ì•„ì´ë¦¬ìŠ¤" #. TRANSLATORS: Asteroid (8) Flora #: src/translations.h:117 msgid "Flora" -msgstr "" +msgstr "플로ë¼" #. TRANSLATORS: Asteroid (10) Hygiea #: src/translations.h:121 msgid "Hygiea" -msgstr "" +msgstr "휴기ì—ì•„" #. TRANSLATORS: Asteroid (1221) Amor #: src/translations.h:123 msgid "Amor" -msgstr "" +msgstr "아모르" #. TRANSLATORS: Asteroid (99942) Apophis #: src/translations.h:125 msgid "Apophis" -msgstr "" +msgstr "ì•„í¬í”¼ìŠ¤" #. TRANSLATORS: Asteroid (2060) Chiron #: src/translations.h:127 msgid "Chiron" -msgstr "" +msgstr "키론" #. TRANSLATORS: Asteroid (433) Eros #: src/translations.h:129 @@ -1548,17 +1688,17 @@ #. TRANSLATORS: Asteroid (624) Hektor #: src/translations.h:131 msgid "Hektor" -msgstr "" +msgstr "헥토르" #. TRANSLATORS: Asteroid (20000) Varuna #: src/translations.h:133 msgid "Varuna" -msgstr "" +msgstr "바루나" #. TRANSLATORS: Asteroid (136472) Makemake #: src/translations.h:135 msgid "Makemake" -msgstr "" +msgstr "마케마케" #. TRANSLATORS: Name of supernova SN 1572A and script name #: src/translations.h:138 @@ -1589,27 +1729,27 @@ #. TRANSLATORS: Type of object #: src/translations.h:153 msgid "planet" -msgstr "" +msgstr "행성" #. TRANSLATORS: Type of object #: src/translations.h:155 msgid "comet" -msgstr "" +msgstr "혜성" #. TRANSLATORS: Type of object #: src/translations.h:157 msgid "asteroid" -msgstr "" +msgstr "소행성" #. TRANSLATORS: Type of object #: src/translations.h:159 msgid "moon" -msgstr "" +msgstr "달" #. TRANSLATORS: Type of object #: src/translations.h:161 msgid "plutoid" -msgstr "" +msgstr "플루토ì´ë“œ(명왕성)" #: src/translations.h:165 msgid "Arabic" @@ -1632,239 +1772,268 @@ msgstr "ì´ë‰´ìž‡" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "ì¸ë„ì˜ ë² ë‹¤" + +#: src/translations.h:171 msgid "Korean" msgstr "한국" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "ë¼ì½”타 ì¸ë””ì–¸" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "마오리" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "나바호" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "고대 스칸디나비아" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "í´ë¦¬ë„¤ì‹œì•„" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "스칸디나비아" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "투피-ê³¼ë¼ë‹ˆ" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" -msgstr "" +msgstr "통가" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "서양" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" -msgstr "" +msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "나무" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "허리케ì¸" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "바다" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "가르íž" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" -msgstr "" +msgstr "í’ê²½ 여행" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" -msgstr "" +msgstr "부분월ì‹" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" -msgstr "" +msgstr "개기ì¼ì‹" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" -msgstr "" +msgstr "화면 보호기" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" -msgstr "" +msgstr "ì¼ì‹ 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" -msgstr "" +msgstr "시작 스í¬ë¦½íŠ¸" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" -msgstr "" +msgstr "황ë„12ê¶" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" -msgstr "" +msgstr "수성 삼중 ì¼ì¶œê³¼ ì¼ëª°" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" -msgstr "" +msgstr "2017ë…„ì— ë°ì´ëª¨ìŠ¤ì—ì„œ ì´ì¤‘ì‹" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" -msgstr "" +msgstr "2031ë…„ì— ë°ì´ëª¨ìŠ¤ì—ì„œ ì´ì¤‘ì‹" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" -msgstr "" +msgstr "2068ë…„ 1ì›” 10ì¼ ì˜¬ë¦¼í‘¸ìŠ¤ ì‚°ì—ì„œ ì‹" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" -msgstr "" +msgstr "2048ë…„ 지구와 ëª©ì„±ì˜ ì—„í" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" -msgstr "" +msgstr "ë°ì´ëª¨ìŠ¤ 2027ì—ì„œ 3ë²ˆì˜ ìžì˜¤ì„  통과와 2ë²ˆì˜ ì‹" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" -msgstr "" +msgstr "태양계 화면보호기" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" -msgstr "" +msgstr "별ìžë¦¬ 여행" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" -msgstr "" +msgstr "다른 í–‰ì„±ë“¤ì˜ íƒœì–‘" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" -msgstr "" +msgstr "다른 천체ì—ì„œ ë°”ë¼ë³¸ ì§€êµ¬ì˜ ê°€ìž¥ ì¢‹ì€ ëª¨ìŠµ" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" -msgstr "" +msgstr "ê¸ˆì„±ì˜ í†µê³¼" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" -msgstr "" +msgstr "아날렘마" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" -msgstr "" +msgstr "하늘문화 여행" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "수성으로부터 지구 ì´ë²¤íŠ¸(현ìƒ)" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "금성으로부터 지구 ì´ë²¤íŠ¸(현ìƒ)" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "화성으로부터 지구 ì´ë²¤íŠ¸(현ìƒ)" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "지구 최대ì´ê°ê³¼ í™”ì„±ì˜ ê´‘íœ˜(환하고 아름답게 빛남)" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "목성ì—ì„œ 지구와 í™”ì„±ì˜ ìµœëŒ€ì´ê°" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." -msgstr "" +msgstr "ê°ê° ì„¤ì¹˜ëœ í’경주위를 보세요." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." -msgstr "" +msgstr "ê°ê° ì„¤ì¹˜ëœ í•˜ëŠ˜ 문화를 살펴보세요." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." -msgstr "" +msgstr "부분월ì‹ì„ 설명하는 스í¬ë¦½íŠ¸" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." -msgstr "" +msgstr "개기월ì‹ì„ 설명하는 스í¬ë¦½íŠ¸" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." -msgstr "" +msgstr "í•˜ëŠ˜ì˜ ëŠë¦¬ê³ , 무한한 여행, ìž„ì˜ì˜ 천체를 찾고 있습니다." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." -msgstr "" +msgstr "2009ë…„ì— ì¼ì–´ë‚œ 개기ì¼ì‹ì„ 설명하는 스í¬ë¦½íŠ¸ (위치=Rangpur, Bangladesh)" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" -msgstr "" +msgstr "í”„ë¡œê·¸ëž¨ì„ ì‹œìž‘í•  ë•Œ ìžë™ìœ¼ë¡œ 실행하는 스í¬ë¦½íŠ¸" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1874,1502 +2043,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." -msgstr "" +msgstr "서양별ìžë¦¬ì˜ 여행" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." -msgstr "" +msgstr "íƒœì–‘ê³„ì˜ ê±°ëŒ€í–‰ì„±ê³¼ 명왕성ì—ì„œ íƒœì–‘ì„ ë°”ë¼ë³´ì„¸ìš”" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "화성 2000-3000ì—ì„œì˜ ì§€êµ¬ìµœëŒ€ì´ê°ê³¼ 광휘" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "목성 2000-3000ì—ì„œì˜ ì§€êµ¬ìµœëŒ€ì´ê°" + +#: src/translations.h:287 msgid "Andorra" -msgstr "" +msgstr "안ë„ë¼" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" -msgstr "" +msgstr "ì•„ëžì—미리트연합" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" -msgstr "" +msgstr "아프카니스탄" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" -msgstr "" +msgstr "앤티가 바부다" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" -msgstr "" +msgstr "앙골ë¼" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" -msgstr "" +msgstr "알바니아" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" -msgstr "" +msgstr "아르메니아" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" -msgstr "" +msgstr "네ëœëž€ë“œë ¹ 안틸 ì œë„" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" -msgstr "" +msgstr "앙골ë¼" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" -msgstr "" +msgstr "남극 대륙" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" -msgstr "" +msgstr "아르헨티나" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" -msgstr "" +msgstr "미국령 사모아" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" -msgstr "" +msgstr "오스트리아" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" -msgstr "" +msgstr "오스트레ì¼ë¦¬ì•„" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" -msgstr "" +msgstr "아루바" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" -msgstr "" +msgstr "아제르바ì´ìž”" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" -msgstr "" +msgstr "보스니아와 헤르체고비나" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" -msgstr "" +msgstr "바베ì´ë„스" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" -msgstr "" +msgstr "방글ë¼ë°ì‹œ" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" -msgstr "" +msgstr "벨기ì—" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" -msgstr "" +msgstr "부르키나파소" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" -msgstr "" +msgstr "불가리아" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" -msgstr "" +msgstr "바레ì¸" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" -msgstr "" +msgstr "부룬디" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" -msgstr "" +msgstr "베냉" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" -msgstr "" +msgstr "버뮤다 ì œë„" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" -msgstr "" +msgstr "ë¸Œë£¨ë‚˜ì´ ì™•êµ­" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" -msgstr "" +msgstr "볼리비아" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" -msgstr "" +msgstr "브ë¼ì§ˆ" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" -msgstr "" +msgstr "바하마제ë„" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" -msgstr "" +msgstr "부탄" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" -msgstr "" +msgstr "부베 섬" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" -msgstr "" +msgstr "보츠와나" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" -msgstr "" +msgstr "벨ë¼ë£¨ìŠ¤" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" -msgstr "" +msgstr "벨리제" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" -msgstr "" +msgstr "ìºë‚˜ë‹¤" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" -msgstr "" +msgstr "코코스 ì œë„" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" -msgstr "" +msgstr "콩고 민주 공화국" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" -msgstr "" +msgstr "중앙아프리카공화국" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" -msgstr "" +msgstr "콩고 공화국" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" -msgstr "" +msgstr "스위스" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" -msgstr "" +msgstr "코트디부아르" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" -msgstr "" +msgstr "ì¿¡ ì œë„" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" -msgstr "" +msgstr "ì¹ ë ˆ" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" -msgstr "" +msgstr "카메룬" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" -msgstr "" +msgstr "중국" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" -msgstr "" +msgstr "콜롬비아" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" -msgstr "" +msgstr "코스타리카" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" -msgstr "" +msgstr "세르비아와 몬테니그로" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" -msgstr "" +msgstr "ì¿ ë°”" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" -msgstr "" +msgstr "카보베르ë°" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" -msgstr "" +msgstr "í¬ë¦¬ìŠ¤ë§ˆìŠ¤ 섬" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" -msgstr "" +msgstr "키프로스" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" -msgstr "" +msgstr "ì²´ì½” 공화국" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" -msgstr "" +msgstr "ë…ì¼" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" -msgstr "" +msgstr "지부티" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" -msgstr "" +msgstr "ë´ë§ˆí¬" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" -msgstr "" +msgstr "ë„미니카" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" -msgstr "" +msgstr "ë„미니카공화국" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" -msgstr "" +msgstr "알제리" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" -msgstr "" +msgstr "ì—ì½°ë„르" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" -msgstr "" +msgstr "ì—스토니아" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" -msgstr "" +msgstr "ì´ì§‘트" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" -msgstr "" +msgstr "서부 사하ë¼" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" -msgstr "" +msgstr "ì—리트레아" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" -msgstr "" +msgstr "스페ì¸" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" -msgstr "" +msgstr "ì—티오피아" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" -msgstr "" +msgstr "핀란드" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" -msgstr "" +msgstr "피지" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" -msgstr "" +msgstr "í¬í´ëžœë“œ ì œë„" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" -msgstr "" +msgstr "미í¬ë¡œë„¤ì‹œì•„" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" -msgstr "" +msgstr "페로 ì œë„" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" -msgstr "" +msgstr "프랑스" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" -msgstr "" +msgstr "가봉" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" -msgstr "" +msgstr "ì˜êµ­" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" -msgstr "" +msgstr "그레나다" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" -msgstr "" +msgstr "조지아" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" -msgstr "" +msgstr "프랑스령 기아나" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" -msgstr "" +msgstr "가나" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" -msgstr "" +msgstr "지브롤터" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" -msgstr "" +msgstr "그린란드" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" -msgstr "" +msgstr "잠비아" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" -msgstr "" +msgstr "기니" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" -msgstr "" +msgstr "과들루프" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" -msgstr "" +msgstr "ì ë„ 기니" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" -msgstr "" +msgstr "그리스" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" -msgstr "" +msgstr "사우스 조지아와 사우스 샌드위치 ì œë„" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" -msgstr "" +msgstr "과테ë§ë¼" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" -msgstr "" +msgstr "ê´Œ" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" -msgstr "" +msgstr "기니비사우" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" -msgstr "" +msgstr "ê°€ì´ì•„나" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" -msgstr "" +msgstr "í™ì½©" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" -msgstr "" +msgstr "허드 ì œë„와 맥ë„ë„ë“œ ì œë„" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" -msgstr "" +msgstr "온ë‘ë¼ìŠ¤" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" -msgstr "" +msgstr "í¬ë¡œì•„í‹°ì•„" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" -msgstr "" +msgstr "ì•„ì´í‹°" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" -msgstr "" +msgstr "í—가리" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" -msgstr "" +msgstr "ì¸ë„네시아" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" -msgstr "" +msgstr "ì•„ì¼ëžœë“œ" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" -msgstr "" +msgstr "ì´ìŠ¤ë¼ì—˜" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" -msgstr "" +msgstr "ì¸ë„" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" -msgstr "" +msgstr "ì˜êµ­ë ¹ ì¸ë„ì–‘ ì‹ë¯¼ì§€" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" -msgstr "" +msgstr "ì´ë¼í¬" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" -msgstr "" +msgstr "ì´ëž€" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" -msgstr "" +msgstr "ì•„ì´ìŠ¬ëž€ë“œ" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" -msgstr "" +msgstr "ì´íƒˆë¦¬ì•„" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" -msgstr "" +msgstr "ìžë©”ì´ì¹´" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" -msgstr "" +msgstr "요르단" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" -msgstr "" +msgstr "ì¼ë³¸" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" -msgstr "" +msgstr "ì¼€ëƒ" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" -msgstr "" +msgstr "키르기스스탄" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" -msgstr "" +msgstr "캄보디아" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" -msgstr "" +msgstr "키리바시" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" -msgstr "" +msgstr "코모로" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" -msgstr "" +msgstr "세ì¸íŠ¸ 키츠 네비스" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" -msgstr "" +msgstr "ë¶í•œ" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" -msgstr "" +msgstr "대한민국" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" -msgstr "" +msgstr "쿠웨ì´íŠ¸" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" -msgstr "" +msgstr "ì¼€ì´ë§¨ ì œë„" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" -msgstr "" +msgstr "ì¹´ìží스탄" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" -msgstr "" +msgstr "ë¼ì˜¤ìŠ¤" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" -msgstr "" +msgstr "레바논" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" -msgstr "" +msgstr "세ì¸íŠ¸ë£¨ì‹œì•„" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" -msgstr "" +msgstr "리히í…슈타ì¸" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" -msgstr "" +msgstr "스리랑카" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" -msgstr "" +msgstr "ë¼ì´ë² ë¦¬ì•„" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" -msgstr "" +msgstr "레소토" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" -msgstr "" +msgstr "리투아니아" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" -msgstr "" +msgstr "룩셈부르í¬" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" -msgstr "" +msgstr "ë¼íŠ¸ë¹„ì•„" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" -msgstr "" +msgstr "리비아" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" -msgstr "" +msgstr "모로코" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" -msgstr "" +msgstr "모나코" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" -msgstr "" +msgstr "몰ë„ë°”" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" -msgstr "" +msgstr "마다가스카르" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" -msgstr "" +msgstr "마셜 ì œë„" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" -msgstr "" +msgstr "마케ë„니아" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" -msgstr "" +msgstr "ë§ë¦¬" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" -msgstr "" +msgstr "미얀마" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" -msgstr "" +msgstr "몽골" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" -msgstr "" +msgstr "마카오" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" -msgstr "" +msgstr "ë¶ë§ˆë¦¬ì•„나제ë„" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" -msgstr "" +msgstr "마르티니í¬" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" -msgstr "" +msgstr "모리타니" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" -msgstr "" +msgstr "몬트세랫" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" -msgstr "" +msgstr "몰타" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" -msgstr "" +msgstr "모리셔스" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" -msgstr "" +msgstr "몰디브" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" -msgstr "" +msgstr "ë§ë¼ìœ„" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" -msgstr "" +msgstr "멕시코" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" -msgstr "" +msgstr "ë§ë ˆì´ì‹œì•„" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" -msgstr "" +msgstr "모잠비í¬" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" -msgstr "" +msgstr "나미비아" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" -msgstr "" +msgstr "뉴칼레ë„니아" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" -msgstr "" +msgstr "니제르" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" -msgstr "" +msgstr "ë…¸í½ ì œë„" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" -msgstr "" +msgstr "나ì´ì§€ë¦¬ì•„" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" -msgstr "" +msgstr "니카ë¼ê³¼" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" -msgstr "" +msgstr "네ëœëž€ë“œ" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" -msgstr "" +msgstr "노르웨ì´" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" -msgstr "" +msgstr "네팔" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" -msgstr "" +msgstr "나우루" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" -msgstr "" +msgstr "니우ì—섬" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" -msgstr "" +msgstr "뉴질랜드" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" -msgstr "" +msgstr "오만" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" -msgstr "" +msgstr "파나마" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" -msgstr "" +msgstr "페루" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" -msgstr "" +msgstr "프랑스령 í´ë¦¬ë„¤ì‹œì•„" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" -msgstr "" +msgstr "파푸아뉴기니" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" -msgstr "" +msgstr "필리핀" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" -msgstr "" +msgstr "파키스탄" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" -msgstr "" +msgstr "í´ëž€ë“œ" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" -msgstr "" +msgstr "ìƒ íŽ˜ì—르미켈론" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" -msgstr "" +msgstr "í•ì¼€ì–¸ ì œë„" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" -msgstr "" +msgstr "푸ì—르토리코" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" -msgstr "" +msgstr "íŒ”ë ˆìŠ¤íƒ€ì¸ ì§€êµ¬" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" -msgstr "" +msgstr "í¬ë¥´íˆ¬ê°ˆ" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" -msgstr "" +msgstr "팔ë¼ìš°" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" -msgstr "" +msgstr "파ë¼ê³¼ì´" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" -msgstr "" +msgstr "카타르" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" -msgstr "" +msgstr "레위니옹" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" -msgstr "" +msgstr "루마니아" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" -msgstr "" +msgstr "세르비아" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" -msgstr "" +msgstr "러시아 ì—°ë°©" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" -msgstr "" +msgstr "르완다" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" -msgstr "" +msgstr "사우디아ë¼ë¹„ì•„" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" -msgstr "" +msgstr "솔로몬 ì œë„" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" -msgstr "" +msgstr "세ì´ì…¸" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" -msgstr "" +msgstr "수단" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" -msgstr "" +msgstr "스웨ë´" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" -msgstr "" +msgstr "싱가í¬ë¥´" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" -msgstr "" +msgstr "세ì¸íŠ¸ 헬레나" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" -msgstr "" +msgstr "슬로베니아" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" -msgstr "" +msgstr "스발바르 얀마옌 ì œë„" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" -msgstr "" +msgstr "슬로바키아" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" -msgstr "" +msgstr "ì‹œì—ë¼ë¦¬ì˜¨" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" -msgstr "" +msgstr "산마리노" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" -msgstr "" +msgstr "세네갈" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" -msgstr "" +msgstr "소ë§ë¦¬ì•„" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" -msgstr "" +msgstr "수리남" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" -msgstr "" +msgstr "ìƒíˆ¬ë©” 프린시페" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" -msgstr "" +msgstr "엘살바ë„르" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" -msgstr "" +msgstr "시리아" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" -msgstr "" +msgstr "스와질란드" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" -msgstr "" +msgstr "íˆ¬ë¥´í¬ ì¹´ì´ì½”스 섬" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" -msgstr "" +msgstr "차드" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" -msgstr "" +msgstr "프랑스령 남부 ì˜í† " -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" -msgstr "" +msgstr "토고" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" -msgstr "" +msgstr "태국" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" -msgstr "" +msgstr "타지키스탄" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" -msgstr "" +msgstr "토켈ë¼ìš° ì œë„" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" -msgstr "" +msgstr "ë™í‹°ëª¨ë¥´" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" -msgstr "" +msgstr "투르í¬ë©”니스탄" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" -msgstr "" +msgstr "튀니지" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" -msgstr "" +msgstr "통가" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" -msgstr "" +msgstr "터키" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" -msgstr "" +msgstr "트리니다드토바고" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" -msgstr "" +msgstr "투발루" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" -msgstr "" +msgstr "타ì´ì™„" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" -msgstr "" +msgstr "탄ìžë‹ˆì•„" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" -msgstr "" +msgstr "ìš°í¬ë¼ì´ë‚˜" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" -msgstr "" +msgstr "우간다" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" -msgstr "" +msgstr "미국령 소군ë„" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" -msgstr "" +msgstr "미국" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" -msgstr "" +msgstr "우루과ì´" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" -msgstr "" +msgstr "우즈베키스탄" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" -msgstr "" +msgstr "바티칸 시국" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" -msgstr "" +msgstr "세ì¸íŠ¸ 빈센트 그레나딘" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" -msgstr "" +msgstr "베네수엘ë¼" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" -msgstr "" +msgstr "ì˜êµ­ë ¹ 버진 ì œë„" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" -msgstr "" +msgstr "미국령 버진 ì•„ì¼ëžœë“œ" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" -msgstr "" +msgstr "베트남" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" -msgstr "" +msgstr "바누아투" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" -msgstr "" +msgstr "월리스푸투나제ë„" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" -msgstr "" +msgstr "사모아 ì œë„" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" -msgstr "" +msgstr "예멘" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" -msgstr "" +msgstr "마요트" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" -msgstr "" +msgstr "유고슬ë¼ë¹„ì•„" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" -msgstr "" +msgstr "남아프리카공화국" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" -msgstr "" +msgstr "잠비아" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" -msgstr "" +msgstr "ì§ë°”브웨" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "날짜 ë° ì‹œê°„" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "1 í•­ì„±ì¼ ë”하기" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" -msgstr "" +msgstr "1 항성월 추가" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "1 항성주 ë”하기" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" -msgstr "" +msgstr "1 항성년 추가" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" -msgstr "" +msgstr "1 항성세기 추가" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "1 íƒœì–‘ì¼ ë”하기" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "1 태양시 ë”하기" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "1 태양주 ë”하기" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" -msgstr "" +msgstr "1 ì‚­ë§ì›” 추가" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" -msgstr "" +msgstr "1 êµì ì›” 추가" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" -msgstr "" +msgstr "1 ê·¼ì ì›” 추가" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" -msgstr "" +msgstr "1 í‰ê· íšŒê¸°ì›” 추가" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" -msgstr "" +msgstr "1 êµì ë…„ 추가" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" -msgstr "" +msgstr "1 í‰ê· íšŒê¸°ë…„ 추가" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" -msgstr "" +msgstr "1 í‰ê· íšŒê¸°ì„¸ê¸° 추가" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "스í¬ë¦½íŠ¸ 실행 ì†ë„를 ëŠë¦¬ê²Œ" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "시간 빠르기 ê°ì†Œ" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "시간 빠르기 ê°ì†Œ (약간)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "스í¬ë¦½íŠ¸ 실행 ì†ë„를 빠르게" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "시간 빠르기 ì¦ê°€" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "시간 빠르기 ì¦ê°€ (약간)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" -msgstr "" +msgstr "ì¼ì‹œì •ì§€ 스í¬ë¦½íŠ¸ 실행" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" -msgstr "" +msgstr "다시 시작 스í¬ë¦½íŠ¸ 실행" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "현재 ì‹œê°ìœ¼ë¡œ 설정" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "스í¬ë¦½íŠ¸ 실행 ì†ë„를 보통으로" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "ì •ìƒ ì†ë„ë¡œ" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "시간 멈춤" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" -msgstr "" +msgstr "정지 스í¬ë¦½íŠ¸ 실행" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "1 í•­ì„±ì¼ ë¹¼ê¸°" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" -msgstr "" +msgstr "1 항성월 빼기" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "1 항성주 빼기" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" -msgstr "" +msgstr "1 항성년 빼기" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" -msgstr "" +msgstr "1 항성세기 빼기" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "1 íƒœì–‘ì¼ ë¹¼ê¸°" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "1 태양시 빼기" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "1 태양주 빼기" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" -msgstr "" +msgstr "1 ì‚­ë§ì›” 빼기" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" -msgstr "" +msgstr "1 êµì ì›” 빼기" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" -msgstr "" +msgstr "1 ê·¼ì ì›” 빼기" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" -msgstr "" +msgstr "1 í‰ê· ë¶„ì ì›” 빼기" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" -msgstr "" +msgstr "1 êµì ë…„ 빼기" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" -msgstr "" +msgstr "1 í‰ê· ë¶„ì ë…„ 빼기" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" -msgstr "" +msgstr "1 í‰ê· ë¶„ì ì„¸ê¸° 빼기" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "화면 표시 설정" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "ìˆ˜í‰ ë°˜ì „" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "ì „ì²´ 화면 모드" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "대기" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "방위 격ìž" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "방위기ì " -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "별ìžë¦¬ 그림" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "별ìžë¦¬ 경계선" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "별ìžë¦¬ ì´ë¦„í‘œ" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "별ìžë¦¬ ì„ " -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "성운 ë°°ê²½ 그림" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "ë”¥ìŠ¤ì¹´ì´ ì²œì²´ ë°°ê²½ì´ë¯¸ì§€" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" -msgstr "" +msgstr "í™©ë„ J2000 격ìž" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "황ë„" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "ì ë„" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "ì ìœ„ 격ìž" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "J2000 ì ìœ„ 격ìž" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "안개" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "성운 눈금" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "ì€í•˜ë©´" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "지면" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "수í‰ì„ " -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "ìžì˜¤ì„ " -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "성운" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "ë”¥ìŠ¤ì¹´ì´ ì²œì²´" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "야간 모드" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "행성 ë¼ë²¨" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "행성 궤ë„" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "행성 궤ì " -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "별" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" -msgstr "" +msgstr "별 ì´ë¦„" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "ìˆ˜ì§ ë°˜ì „" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "기타" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "ìˆ˜í‰ ë‹¨ì¶” 막대 ìžë™ 숨기기" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "ìˆ˜ì§ ë‹¨ì¶” 막대 ìžë™ 숨기기" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" -msgstr "" +msgstr "Home으로 ê°" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "종료" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" -msgstr "" +msgstr "í´ë¦½ë³´ë“œì— ì„ íƒëœ ì²œì²´ì˜ ì •ë³´ê°€ 복사ë¨" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "스í¬ë¦°ìƒ· 저장" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "ì ë„ì˜/경위대 전환" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "GUI 켜고 ë„기" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "ì´ë™ ë° ì„ íƒ" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "ì„ íƒí•œ 천체로 ì´ë™" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "ì„ íƒëœ í–‰ì„±ì„ ëª¨í–‰ì„±ìœ¼ë¡œ 설정" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "천체 추ì " -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "ì„ íƒí•œ 천체 확대" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "축소" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" -msgstr "" +msgstr "ê°ë„ 측정" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" -msgstr "" +msgstr "나침반 표시" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" -msgstr "" +msgstr "외계 행성 보기" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" -msgstr "" +msgstr "외계행성 구성창" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" -msgstr "" +msgstr "관측" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" -msgstr "" +msgstr "관측 구성창" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" -msgstr "" +msgstr "접안부 í”ŒëŸ¬ê·¸ì¸ êµ¬ì„±" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" -msgstr "" +msgstr "접안부 시야" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" -msgstr "" +msgstr "ì‹­ìžì„  ë³´ìž„" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" -msgstr "" +msgstr "접안부 íŒì—… 메뉴" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" -msgstr "" +msgstr "ì´ë¯¸ì§€ 센서 프레임" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" -msgstr "" +msgstr "í…”ë¼ë“œ 시야" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "ë‹¤ìŒ ì²œì²´ë§ì›ê²½ì„ ì„ íƒí•˜ê¸°" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "ë‹¤ì´ ì ‘ì•ˆë Œì¦ˆë¥¼ ì„ íƒí•˜ê¸°" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "ì´ì „ 천체ë§ì›ê²½ì„ ì„ íƒí•˜ê¸°" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "ì´ì „ 접안렌즈 ì„ íƒí•˜ê¸°" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "펄사 보여주기" + +#: src/translations.h:658 msgid "Pulsars configuration window" -msgstr "" +msgstr "펄사 구성창" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "퀘ì´ì‚¬ 보여주기" + +#: src/translations.h:662 msgid "Quasars configuration window" -msgstr "" +msgstr "퀘ì´ì‚¬ 구성창" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" -msgstr "" +msgstr "ì¸ê³µìœ„성 구성창" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" -msgstr "" +msgstr "ì¸ê³µìœ„성 힌트" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" -msgstr "" +msgstr "ì¸ê³µìœ„성 ì´ë¦„í‘œ" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" -msgstr "" +msgstr "역대 초신성 구성창" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "ë°ì€ 신성 구성창" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" -msgstr "" +msgstr "주어진 좌표로 ë§ì›ê²½ì„ 움ì§ì´ê¸°" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" -msgstr "" +msgstr "ë Œë”러 통계 보여주기" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "스í¬ë¦½íŠ¸" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" -msgstr "" +msgstr "í™”ì¼ë¡œë¶€í„° í’ê²½ 스í¬ë¦½íŠ¸ 실행하기" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" -msgstr "" +msgstr "보여주고 달 확대하기" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "설정 ì°½" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "날짜/시간 ì°½" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "ë„ì›€ë§ ì°½" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "위치 ì°½" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "검색 ì°½" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" -msgstr "" +msgstr "단축키 ì°½" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "하늘과 보기 설정 ì°½" @@ -3388,14 +3593,14 @@ #: src/ui_helpDialogGui.h:291 src/ui_configurationDialog.h:1057 msgid "Edit keyboard shortcuts..." -msgstr "" +msgstr "키보드 단축키 편집..." #: src/ui_helpDialogGui.h:292 msgid "Refresh" msgstr "새로 고침" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "위치" @@ -3411,10 +3616,10 @@ msgid "Return to default" msgstr "기본값으로 ì´ë™" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "ì‚­ì œ" @@ -3423,7 +3628,7 @@ msgstr "목ë¡ì— 추가" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "위ë„:" @@ -3434,12 +3639,12 @@ msgstr "소수ì ì„ 사용하거나 dms 형ì‹ì„ 사용할 수 있습니다. 예) +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "ê²½ë„:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "ê³ ë„:" @@ -3463,363 +3668,407 @@ msgid "Planet:" msgstr "행성:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "천체 찾기" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" -msgstr "" +msgstr "천체 ë˜ëŠ” 위치 찾기" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "ë°œê²¬ëœ ì•„ì´í…œì˜ ì„ íƒì„ 위해 Tab 키를 사용하세요" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" -msgstr "" +msgstr "ì´ì˜¤íƒ€(iota)" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "알파" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "베타" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "ê°ë§ˆ" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "ë¸íƒ€" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "엡실론" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "제타" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "ì—타" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "쎄타" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "카파" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "람다" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "뮤" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "누" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "í¬ì‚¬ì´" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "오미í¬ë¡ " -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "파ì´" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "로우" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "시그마" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "타우" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ì›ì‹œë¡ " -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "파ì´" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "ì¹´ì´" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "프사ì´" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "오메가" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" -msgstr "" +msgstr "ë°”ì´ì—˜ ì§€ì •ì„ ìœ„í•œ 그리스 문ìž" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "개체" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "ì ê²½/ì ìœ„ (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "위치" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "ëª‡ëª‡ì˜ ì²œì²´ëŠ” ê°ê°ì˜ 플러그-ì¸ í™œì„±í™” ì´í›„ì— ë°œê²¬ë  ìˆ˜ 있ìŒ" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "ì˜ì–´ ì´ë¦„" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "ëª©ë¡ ì°¾ê¸°..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "목ë¡" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "온ë¼ì¸ 천문학 ë°ì´í„°ë² ì´ìŠ¤ SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" -msgstr "" +msgstr "SIMBAD와 함께 확장 검색" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "서버:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "검색 옵션" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "ë‹¨ì–´ì˜ ì²˜ìŒë¶€í„° ìžë™ 완성 사용" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "설정" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "" - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "보기" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "하늘" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "표지" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "í’ê²½" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "하늘 문화" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "ì´ë¦„표와 표지" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "행성" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "딥스카ì´(성단, ì€í•˜, 성운) 천체를 위한 ì´ë¦„표와 마커" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "ë”¥ìŠ¤ì¹´ì´ ì²œì²´" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "행성과 위성" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "행성 보기" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "행성 표지 보기" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "행성 ê¶¤ë„ ë³´ê¸°" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "ê´‘ì† ì‹œë®¬ë ˆì´ì…˜" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "달 확대" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "í–‰ì„±ì´ ë³€í™”ë  ë•Œ ìžë™ìœ¼ë¡œ í’ê²½ì´ ë³€í•©ë‹ˆë‹¤" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "ìžë™ ì„ íƒëœ í’ê²½" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "대기 보기" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "빛공해:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "대기압, 온ë„, 소광계수" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "êµ´ì ˆ/소광 설정..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "절대 í¬ê¸°:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "ìƒëŒ€ í¬ê¸°:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" -msgstr "" +msgstr "ì€í•˜ìˆ˜ ë°ê¸°:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "깜박임:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "매우 ë°ì€ 천체가 ë³´ì¼ ë•Œ ì–´ë‘ìš´ ë³„ì„ í¬ë¯¸í•˜ê²Œ 합니다" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "명암순ì‘" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "유성" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" -msgstr "" +msgstr "천정ì—ì„œì˜ ì‹œê°„ë‹¹ í‰ê·  유성 낙하개수" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "" +msgstr "천정ì—ì„œì˜ ì‹œê°„ë‹¹ í‰ê·  유성 낙하개수" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" -msgstr "" +msgstr "한계등급(육안 관측ìžì™€ ìŒì•ˆê²½ 관측ìžë¥¼ 위한)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" -msgstr "" +msgstr "한계등급" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "ë³„ì˜ í•œê³„ë“±ê¸‰" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "딥스카ì´(성단, ì€í•˜, 성운) ì²œì²´ì˜ í•œê³„ 등급" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "별ìžë¦¬" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "ì„  보기" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "ì´ë¦„í‘œ 보기" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "경계선 보기" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "그림 보기" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "그림 ë°ê¸°:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "천구" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "ì ë„ 보기" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "ìžì˜¤ì„  보기" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "지í‰ì„  보기" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "í™©ë„ ë³´ê¸°" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "ì€í•˜ë©´ 보기" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "투ì˜" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "í’ê²½ 추가/ì‚­ì œ..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "지면 보기" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "안개 보기" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "ê´€ë ¨ëœ í–‰ì„±ê³¼ 위치로 ì´ë™" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "ì´ í’ê²½ì„ ê¸°ë³¸ê°’ìœ¼ë¡œ 사용" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "ì´ í•˜ëŠ˜ 문화를 기본값으로 사용" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "표시하기" @@ -3860,8 +4109,7 @@ "current options includes the current FOV and direction of view for use at " "next startup." msgstr "" -"기본값 ë³µì› ì„¤ì •ì€ ìŠ¤í…”ë¼ë¦¬ì›€ì„ 재시작해야 합니다. 다ìŒë²ˆì— 시작시 사용하기 위해 í˜„ìž¬ì˜ í™”ê°ê³¼ 시야 ë°©í–¥ì„ í¬í•¨í•œ 모든 현재 ì„¤ì •ì„ " -"저장하세요." +"기본값 ë³µì› ì„¤ì •ì€ ìŠ¤í…”ë¼ë¦¬ì›€ì„ 재시작해야 합니다. 모든 설정 ì €ìž¥ì€ í™”ê°ê³¼ 시야 ë°©í–¥ì„ í¬í•¨í•˜ì—¬ 다ìŒì— í”„ë¡œê·¸ëž¨ì„ ì‹œìž‘í•  ë•Œ ë°˜ì˜í•©ë‹ˆë‹¤." #: src/ui_configurationDialog.h:987 msgid "The width of your view when Stellarium starts" @@ -3871,7 +4119,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "스텔ë¼ë¦¬ì›€ì„ 시작할 ë•Œì˜ ì‹œì•¼ ë°©í–¥" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "ì„ íƒí•œ 천체 ì •ë³´" @@ -3887,11 +4135,8 @@ msgid "Display no information" msgstr "ì •ë³´ ë³´ì´ì§€ ì•ŠìŒ" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "ì—†ìŒ" @@ -3913,92 +4158,92 @@ #: src/ui_configurationDialog.h:1009 msgid "Displayed fields" -msgstr "" +msgstr "í‘œì‹œëœ ì˜ì—­" #: src/ui_configurationDialog.h:1011 msgid "Geocentric equatorial coordinates, equinox of J2000.0" -msgstr "" +msgstr "지구중심 ì ë„좌표계, J2000.0 분ì " #: src/ui_configurationDialog.h:1013 msgid "Right ascension/Declination (J2000)" -msgstr "" +msgstr "ì ê²½/ì ìœ„(J2000)" #: src/ui_configurationDialog.h:1015 msgid "Horizontal coordinates" -msgstr "" +msgstr "지í‰ì¢Œí‘œê³„" #: src/ui_configurationDialog.h:1017 msgid "Altitude/Azimuth" -msgstr "" +msgstr "위ë„/ê²½ë„" #: src/ui_configurationDialog.h:1018 msgid "Visual magnitude" -msgstr "" +msgstr "겉보기등급" #: src/ui_configurationDialog.h:1019 msgid "Absolute magnitude" -msgstr "" +msgstr "절대등급" #: src/ui_configurationDialog.h:1020 msgid "Catalog number(s)" -msgstr "" +msgstr "카달로그 번호" #: src/ui_configurationDialog.h:1021 #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:269 msgid "Name" -msgstr "" +msgstr "ì´ë¦„" #: src/ui_configurationDialog.h:1023 msgid "Geocentric equatorial coordinates, equinox of date" -msgstr "" +msgstr "지구중심 ì ë„좌표계, ë‚ ì§œì˜ ë¶„ì (춘분)" #: src/ui_configurationDialog.h:1025 msgid "Right ascension/Declination (of date)" -msgstr "" +msgstr "ì ê²½/ì ìœ„(날짜ì˜)" #: src/ui_configurationDialog.h:1027 msgid "Galactic coordinates, equinox of J2000.0" -msgstr "" +msgstr "ì€í•˜ì¢Œí‘œê³„, J2000.0 분ì " #: src/ui_configurationDialog.h:1029 msgid "Longitude/Latitude (J2000)" -msgstr "" +msgstr "ê²½ë„/위ë„(J2000)" #: src/ui_configurationDialog.h:1031 msgid "Topocentric equatorial coordinates" -msgstr "" +msgstr "관측ìžì¤‘심 ì ë„ 좌표계" #: src/ui_configurationDialog.h:1033 msgid "Hour angle/Declination" -msgstr "" +msgstr "시간ê°/ ì ìœ„" #: src/ui_configurationDialog.h:1034 msgid "Distance" -msgstr "" +msgstr "거리" #: src/ui_configurationDialog.h:1036 msgid "Angular or physical size" -msgstr "" +msgstr "ê°ì§€ë¦„ ë˜ëŠ” ë¬¼ë¦¬ì  í¬ê¸°" #: src/ui_configurationDialog.h:1038 msgid "Size" -msgstr "" +msgstr "í¬ê¸°" #: src/ui_configurationDialog.h:1040 msgid "Spectral class, nebula type, etc." -msgstr "" +msgstr "스펙트럼 등급, 성운 형태, etc." #: src/ui_configurationDialog.h:1042 msgid "Additional information 1" -msgstr "" +msgstr "추가 ì •ë³´ 1" #: src/ui_configurationDialog.h:1046 msgid "Additional information 2" -msgstr "" +msgstr "추가 ì •ë³´ 2" #: src/ui_configurationDialog.h:1047 msgid "Additional information 3" -msgstr "" +msgstr "추가 ì •ë³´ 3" #: src/ui_configurationDialog.h:1048 msgid "Control" @@ -4026,14 +4271,14 @@ #: src/ui_configurationDialog.h:1061 msgid "Mouse cursor timeout:" -msgstr "" +msgstr "마우스 커서 타임아웃:" #: src/ui_configurationDialog.h:1063 msgid "seconds" -msgstr "" +msgstr "ì´ˆ" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "시작시 날짜 ë° ì‹œê°" @@ -4045,182 +4290,192 @@ msgid "Other:" msgstr "기타:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "현재 지방ì¼ê³¼ 지방시 사용하기" + +#: src/ui_configurationDialog.h:1073 msgid "use current" -msgstr "현재 ì„¤ì •ì„ ìœ ì§€" +msgstr "현재 설정 유지" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "시스템 날짜 ë° ì‹œê°ìœ¼ë¡œ 스텔ë¼ë¦¬ì›€ì„ 시작합니다." -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "시스템 날짜 ë° ì‹œê°" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "스텔ë¼ë¦¬ì›€ì„ 시작할 ë•Œ 시뮬레ì´ì…˜ ì‹œê°ì„ 다ìŒì˜ ì‹œê°ìœ¼ë¡œ 맞춥니다." -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "ì‹œê° ì§€ì •:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" -msgstr "" +msgstr "시간 ë³´ì •" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" -msgstr "" +msgstr "ì‹ íŽ¸ì§‘" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "플ë¼ë„¤íƒ€ë¦¬ì›€ 설정" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "구면경 ì™œê³¡ì€ ì €ê°€í˜• 플ë¼ë„¤íƒ€ë¦¬ì›€ 시스템ì—ì„œ êµ¬ë©´ê²½ì— ìŠ¤í…”ë¼ë¦¬ì›€ì„ 투ì˜í•  ë•Œ 사용합니다." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "구면경 왜곡" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "화면 ì¤‘ì‹¬ì˜ ì› ë°”ê¹¥ìª½ì— ìžˆëŠ” 모든 ê²ƒì„ í‘œì‹œí•˜ì§€ 않습니다" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "ì›í˜• ë·°í¬íŠ¸" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "별ìžë¦¬ë¥¼ í´ë¦­í•  ë•Œì— ë‹¤ë¥¸ 별ìžë¦¬ ê°ì¶”기" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "í•˜ë‚˜ì˜ ë³„ìžë¦¬ ì„ íƒ" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "수í‰ìœ¼ë¡œ ì´ë¦„표를 정렬합니다" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "중력 ì´ë¦„í‘œ" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." -msgstr "" +msgstr "ì„±ìš´ì˜ ë””ìŠ¤í”Œë ˆì´ ë°°ê²½ì„ ì „í™˜í•˜ê¸°" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" -msgstr "" +msgstr "성운 ë°°ê²½ 버튼 보여주기" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "수ì§ê³¼ ìˆ˜í‰ í™”ë©´ 반전 단추를 켜고 ë•ë‹ˆë‹¤." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "반전 단추 보기" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "활성화ë˜ë©´ \"ìžë™ 축소\" 키를 ëˆŒë €ì„ ë•Œ 초기 시야 ë°©í–¥ìœ¼ë¡œë„ ëŒì•„갑니다" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "ìžë™ 축소 키로 초기 시야 방향으로 ëŒì•„가기" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "행성과 달 ìœ„ì— íƒœì–‘ ê·¸ë¦¼ìž í‘œì‹œí•˜ê¸°(OpenGL 버젼 2 ì´ìƒ 요구ë¨)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" -msgstr "" +msgstr "íƒœì–‘ê·¸ë¦¼ìž í‘œí˜„í•˜ê¸°" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "스í¬ë¦°ìƒ·" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "스í¬ë¦°ìƒ· 경로" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "색 반전" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "별 ëª©ë¡ ì—…ë°ì´íŠ¸" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "내려받으려면 í´ë¦­í•˜ì„¸ìš”." -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "ë” ë§Žì€ ë³„ì„ ë³¼ 수 있게 íŒŒì¼ ë‚´ë ¤ë°›ê¸°" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "내려받기 재기ë™" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "다시 ì‹œë„" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "내려받기 중단. ì´í›„ 언제ë¼ë„ 다시 ë°›ì„ ìˆ˜ 있습니다." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "취소" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "스í¬ë¦½íŠ¸ 실행 ì¤‘ì— ì°½ 닫기" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "ì„ íƒí•œ 스í¬ë¦½íŠ¸ 실행" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "실행 ì¤‘ì¸ ìŠ¤í¬ë¦½íŠ¸ 정지" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "시작시 불러오기" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "설정" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "주 설정" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ì •ë³´" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "íƒìƒ‰" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "ë„구" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "플러그ì¸" @@ -4258,19 +4513,19 @@ #: src/ui_shortcutsDialog.h:196 msgid "Keyboard Shortcuts" -msgstr "" +msgstr "키보드 단축키" #: src/ui_shortcutsDialog.h:200 msgid "Restore Defaults" -msgstr "" +msgstr "초기설정으로 ë³µì›" #: src/ui_shortcutsDialog.h:201 msgid "Apply" -msgstr "" +msgstr "ì ìš©" #: src/ui_AtmosphereDialog.h:176 msgid "Atmosphere Details" -msgstr "" +msgstr "대기 세부정보" #: src/ui_AtmosphereDialog.h:178 msgid "Refraction Settings" @@ -4290,403 +4545,410 @@ "given in mag/airmass, where airmass is number of atmospheres light has to " "pass. (zenith: 1; horizon: about 40)" msgstr "" +"ê°ê´‘ì€ ì§€êµ¬ ëŒ€ê¸°ì— ì˜í•´ ë³„ì˜ ë°ê¸°ê°€ ê°ì†Œë˜ëŠ” 것ì´ë‹¤. ì´ê²ƒì€ 등급/대기량으로 주어진다. ëŒ€ê¸°ëŸ‰ì€ ë¹›ì´ í†µê³¼í•˜ëŠ” ëŒ€ê¸°ì˜ ìˆ«ìžì´ë‹¤. " +"(천정:1, 수í‰ì„ :약 40)" #: src/ui_AtmosphereDialog.h:187 msgid "Extinction Coefficient:" -msgstr "" +msgstr "ê°ê´‘ 계수:" #: src/ui_AtmosphereDialog.h:189 msgid "" "Use about 0.12 for superb mountaintops, 0.2 for good rural landscape, 0.35 " "for murky conditions." -msgstr "" +msgstr "멋진 산꼭대기ì—서는 약 0.12, ì¢‹ì€ ì‹œê³¨ í’ê²½ì—서는 0.2, ì–´ë‘ìš´ ìƒíƒœì—서는 0.35를 사용하기" #: src/ui_scriptConsole.h:341 msgid "Script console" -msgstr "" +msgstr "스í¬ë¦½íŠ¸ 콘솔" #: src/ui_scriptConsole.h:344 msgid "load script from file" -msgstr "" +msgstr "í™”ì¼ë¡œë¶€í„° 스í¬ë¦½íŠ¸ ì½ì–´ì˜¤ê¸°" #: src/ui_scriptConsole.h:348 msgid "save script to file" -msgstr "" +msgstr "í™”ì¼ë¡œ 스í¬ë¦½íŠ¸ 저장하기" #: src/ui_scriptConsole.h:352 msgid "clear script" -msgstr "" +msgstr "스í¬ë¦½íŠ¸ 지우기" #: src/ui_scriptConsole.h:356 msgid "pre-process script using SSC preprocessor" -msgstr "" +msgstr "SSC 사전프로세서를 ì´ìš©í•œ 사전-프로세서 스í¬ë¦½íŠ¸" #: src/ui_scriptConsole.h:359 msgid "pre-process script using STS preprocessor" -msgstr "" +msgstr "STS 사전프로세서를 ì´ìš©í•œ 사전-프로세서 스í¬ë¦½íŠ¸" #: src/ui_scriptConsole.h:362 msgid "quickly load and run a utility script" -msgstr "" +msgstr "빠르게 ì½ê³ , 유틸리티 스í¬ë¦½íŠ¸ 실행하기" #: src/ui_scriptConsole.h:365 msgid "run script" -msgstr "" +msgstr "스í¬ë¦½íŠ¸ 실행하기" #: src/ui_scriptConsole.h:369 msgid "stop script" -msgstr "" +msgstr "스í¬ë¦½íŠ¸ 멈추기" #: src/ui_scriptConsole.h:372 msgid "Script" -msgstr "" +msgstr "스í¬ë¦½íŠ¸" #: src/ui_scriptConsole.h:373 msgid "Output" -msgstr "" +msgstr "출력" #: src/ui_scriptConsole.h:375 msgid "Cursor position" -msgstr "" +msgstr "커서 위치" #: src/ui_scriptConsole.h:377 msgid "Include dir:" -msgstr "" +msgstr "dir(디렉토리) í¬í•¨í•˜ê¸°:" #: src/ui_scriptConsole.h:378 msgid "..." -msgstr "" +msgstr "..." #: plugins/AngleMeasure/src/AngleMeasure.cpp:56 msgid "Angle Measure" -msgstr "" +msgstr "ê°ë„ 측정" #: plugins/AngleMeasure/src/AngleMeasure.cpp:59 msgid "Provides an angle measurement tool" -msgstr "" +msgstr "ê°ë„ 측정 ë„구 제공" #. TRANSLATORS: instructions for using the AngleMeasure plugin. #: plugins/AngleMeasure/src/AngleMeasure.cpp:307 msgid "The Angle Measure is enabled:" -msgstr "" +msgstr "ê°ë„ ì¸¡ì •ì´ ê°€ëŠ¥í•©ë‹ˆë‹¤:" #. TRANSLATORS: instructions for using the AngleMeasure plugin. #: plugins/AngleMeasure/src/AngleMeasure.cpp:309 msgid "Drag with the left button to measure, left-click to clear." -msgstr "" +msgstr "측정하기 위해 마우스 왼쪽 ë²„íŠ¼ì„ ë“œëž˜ê·¸, 지우기 위해선 왼쪽 í´ë¦­" #. TRANSLATORS: instructions for using the AngleMeasure plugin. #: plugins/AngleMeasure/src/AngleMeasure.cpp:311 msgid "Right-clicking changes the end point only." -msgstr "" +msgstr "마우스 오른쪽 버튼 í´ë¦­ë§Œìœ¼ë¡œ ë지ì ì„ 변경합니다." #: plugins/CompassMarks/src/CompassMarks.cpp:57 msgid "Compass Marks" -msgstr "" +msgstr "나침반 표시" #: plugins/CompassMarks/src/CompassMarks.cpp:60 msgid "Displays compass bearing marks along the horizon" -msgstr "" +msgstr "수í‰ì„ ì„ ë”°ë¼ ë‚˜ì¹¨ë°˜ 방위 표시를 나타냅니다." -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" -msgstr "" +msgstr "접안부(접안경)" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." -msgstr "" +msgstr "접안부 시야로 전환하기 ì „ì— ì²œì²´ë¥¼ ì„ íƒí•´ì£¼ì„¸ìš”." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" -msgstr "" +msgstr "&ì´ì „ 접안부" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" -msgstr "" +msgstr "&ë‹¤ìŒ ì ‘ì•ˆë¶€" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" -msgstr "" +msgstr "ì„ íƒëœ &접안부" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" -msgstr "" +msgstr "On/Off 전환 &ì‹­ìžì„ " -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" -msgstr "" +msgstr "구성 &접안부" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" -msgstr "" +msgstr "On/Off 전환 &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" -msgstr "" +msgstr "On/Off 전환 &í…”ë¼ë“œ" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" -msgstr "" +msgstr "&ì´ì „ CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" -msgstr "" +msgstr "&ë‹¤ìŒ CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" -msgstr "" +msgstr "&ì„ íƒëœ CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" -msgstr "" +msgstr "&CCD 회전" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" -msgstr "" +msgstr "&회전 재설정" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" -msgstr "" +msgstr "접안부 #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" -msgstr "" +msgstr "접안부 #%1:%2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" -msgstr "" +msgstr "접안부 FL:%1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" -msgstr "" +msgstr "접안부 aFOV(시야ê°):%1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" -msgstr "" +msgstr "렌즈 #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" -msgstr "" +msgstr "렌즈 #%1:%2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" -msgstr "" +msgstr "렌즈: ì—†ìŒ" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" -msgstr "" +msgstr "천체ë§ì›ê²½ #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" -msgstr "" +msgstr "천체ë§ì›ê²½ #%1:%2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" -msgstr "" +msgstr "등급:%1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" -msgstr "" +msgstr "FOV(시야ê°):%1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" -msgstr "" +msgstr "범위:%1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" -msgstr "" +msgstr "센서 #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" -msgstr "" +msgstr "센서 #%1:%2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" -msgstr "" +msgstr "&렌즈" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" -msgstr "" +msgstr "&ì´ì „ 렌즈" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" -msgstr "" +msgstr "&ë‹¤ìŒ ë Œì¦ˆ" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" -msgstr "" +msgstr "&천체ë§ì›ê²½" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" -msgstr "" +msgstr "&ì´ì „ 천체ë§ì›ê²½" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" -msgstr "" +msgstr "&ë‹¤ìŒ ì²œì²´ë§ì›ê²½" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:195 msgid "Previous ocular" -msgstr "" +msgstr "ì´ì „ 접안부" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:201 msgid "Next ocular" -msgstr "" +msgstr "ë‹¤ìŒ ì ‘ì•ˆë¶€" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:207 msgid "Previous lens" -msgstr "" +msgstr "ì´ì „ 렌즈" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:213 msgid "Next lens" -msgstr "" +msgstr "ë‹¤ìŒ ë Œì¦ˆ" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:219 msgid "Previous CCD frame" -msgstr "" +msgstr "ì´ì „ CCD 프레임" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:225 msgid "Next CCD frame" -msgstr "" +msgstr "ë‹¤ìŒ CCD 프레임" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:231 msgid "Previous telescope" -msgstr "" +msgstr "ì´ì „ 천체ë§ì›ê²½" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:237 msgid "Next telescope" -msgstr "" +msgstr "ë‹¤ìŒ ì²œì²´ë§ì›ê²½" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:270 msgid "Rotate the sensor frame 15 degrees counterclockwise" -msgstr "" +msgstr "ì„¼ì„œí”„ë ˆìž„ì„ 15ë„ ë°˜ì‹œê³„ë°©í–¥ìœ¼ë¡œ 회전하기" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:283 msgid "Rotate the sensor frame 5 degrees counterclockwise" -msgstr "" +msgstr "ì„¼ì„œí”„ë ˆìž„ì„ 5ë„ ë°˜ì‹œê³„ë°©í–¥ìœ¼ë¡œ 회전하기" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:296 msgid "Rotate the sensor frame 1 degree counterclockwise" -msgstr "" +msgstr "ì„¼ì„œí”„ë ˆìž„ì„ 1ë„ ë°˜ì‹œê³„ë°©í–¥ìœ¼ë¡œ 회전하기" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:309 msgid "Reset the sensor frame rotation" -msgstr "" +msgstr "센서 프레임 회전 재설정하기" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:322 msgid "Rotate the sensor frame 1 degree clockwise" -msgstr "" +msgstr "ì„¼ì„œí”„ë ˆìž„ì„ 1ë„ ì‹œê³„ë°©í–¥ìœ¼ë¡œ 회전하기" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:335 msgid "Rotate the sensor frame 5 degrees clockwise" -msgstr "" +msgstr "ì„¼ì„œí”„ë ˆìž„ì„ 5ë„ ì‹œê³„ë°©í–¥ìœ¼ë¡œ 회전하기" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:348 msgid "Rotate the sensor frame 15 degrees clockwise" -msgstr "" +msgstr "ì„¼ì„œí”„ë ˆìž„ì„ 15ë„ ì‹œê³„ë°©í–¥ìœ¼ë¡œ 회전하기" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:552 msgid "Effective focal length of the ocular" -msgstr "" +msgstr "ì ‘ì•ˆë¶€ì˜ ìœ íš¨ ì´ˆì ê¸¸ì´" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:563 msgid "Apparent field of view of the ocular" -msgstr "" +msgstr "ì ‘ì•ˆë¶€ì˜ ê²‰ë³´ê¸° 시야ê°" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" -msgstr "" +msgstr "다양성:%1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" -msgstr "" +msgstr "렌즈: ì—†ìŒ" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" -msgstr "" +msgstr "다양성: 사용할수 ì—†ìŒ" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "ì ‘ì•ˆë Œì¦ˆì˜ ì´ˆì ê¸¸ì´" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" -msgstr "" +msgstr "회전:%1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" -msgstr "" +msgstr "ì´ ìŒì•ˆê²½ì— 제공하는 배율" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" -msgstr "" +msgstr "ì´ ìŒì•ˆê²½ì— 제공하는 실제 시야ê°" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" -msgstr "" +msgstr "ì´ ì ‘ì•ˆë¶€/렌즈/천체ë§ì›ê²½ ì¡°í•©ì— ì œê³µí•˜ëŠ” 배율" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" -msgstr "" +msgstr "ì´ ì ‘ì•ˆë¶€/렌즈/천체ë§ì›ê²½ ì¡°í•©ì— ì œê³µí•˜ëŠ” 실제 시야ê°" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" -msgstr "" +msgstr "접안부 플러그 ì¸" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" -msgstr "" +msgstr "버전" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "바로우 렌즈 특징" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" -msgstr "" +msgstr "ì „ì²´ 보기" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4694,7 +4956,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4705,14 +4967,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4721,305 +4983,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" -msgstr "" +msgstr "ë‹¹ì‹ ì´ ì–´ë– í•œ ì´ìŠˆë¥¼ 발견했다면 즉시 알려주세요." -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" -msgstr "" +msgstr "í•« 키(í”„ë¡œê·¸ëž¨ì„ ìˆœê°„ì ìœ¼ë¡œ 바꾸는 키)" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." -msgstr "" +msgstr "플러그-ì¸ í‚¤ 묶ìŒì€ ì¼ë°˜ì ì¸ 탭ì—ì„œ 편집할 수 있습니다." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" -msgstr "" +msgstr "[ì„¤ì •ëœ í‚¤ê°€ 없습니다]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." -msgstr "" +msgstr "접안부 중첨 스위치 on/off" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." -msgstr "" +msgstr "íŒì—… íƒìƒ‰ 메뉴 열기" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" -msgstr "" +msgstr "천체가 ì„ íƒë˜ì–´ì§„ 경우ì—만 사용" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" -msgstr "" +msgstr "눈금 ì´ë¯¸ì§€ ì›" + +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "ë§ì›ê²½ì˜ 다른 êµ¬ê²½ì„ ìœ„í•´ 한계 성운 ë“±ê¸‰ì„ ì ìš©í•˜ì„¸ìš”." + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "한계 성운 등급" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" -msgstr "" +msgstr "키 매핑" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" -msgstr "" +msgstr "On/Off 전환 접안부 시야:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" -msgstr "" +msgstr "íŒì—… íƒìƒ‰ 메뉴 열기:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" -msgstr "" +msgstr "ì¸í„°íŽ˜ì´ìŠ¤" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" -msgstr "" +msgstr "On-스í¬ë¦° 컨트롤 패ë„" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" -msgstr "" +msgstr "CCD FOV(시야ê°)ì„ ìœ„í•œ ê°ë„/ê°ë¶„ ì´ìš©í•˜ê¸°" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" -msgstr "" +msgstr "ì¼ë°˜ 사항" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" -msgstr "" +msgstr "접안렌즈" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" -msgstr "" +msgstr "추가" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" -msgstr "" +msgstr "ì´ë¦„:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" -msgstr "" +msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" -msgstr "" +msgstr "ì´ˆì  ê±°ë¦¬:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" -msgstr "" +msgstr "시야 조리개:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" -msgstr "" +msgstr "ìŒì•ˆê²½" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" -msgstr "" +msgstr "렌즈" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "배율기:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" -msgstr "" +msgstr "센서" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" -msgstr "" +msgstr "í•´ìƒë„ x (픽셀):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" -msgstr "" +msgstr "í•´ìƒë„ y (픽셀):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" -msgstr "" +msgstr "칩 í­(mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" -msgstr "" +msgstr "칩 ë†’ì´ (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" -msgstr "" +msgstr "픽셀 í­ (마ì´í¬ë¡ ):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" -msgstr "" +msgstr "픽셀 ë†’ì´ (마ì´í¬ë¡ ):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" -msgstr "" +msgstr "천체ë§ì›ê²½" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" -msgstr "" +msgstr "ì§ê²½:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" -msgstr "" +msgstr "ìˆ˜í‰ ë’¤ì§‘ê¸°" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" -msgstr "" +msgstr "ìˆ˜ì§ ë’¤ì§‘ê¸°" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" -msgstr "" +msgstr "ì •ë³´" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" -msgstr "" +msgstr "ì¸ê³µìœ„성" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "ë³´ì´ëŠ”" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "과학" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "통신" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "í•´ì–‘" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "아마츄어" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "기ìƒ" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "정지" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "비작ë™" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "GPS" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "ì´ë¦¬ë“" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "허블우주ë§ì›ê²½" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "국제우주정거장" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" -msgstr "" +msgstr "카달로그 #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" -msgstr "" +msgstr "êµ­ì œì‹ë³„부호" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" -msgstr "" +msgstr "ì¸ê³µìœ„성" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" -msgstr "" +msgstr "범위 (km):%1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" -msgstr "" +msgstr "범위 비율 (km/s):%1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" -msgstr "" +msgstr "ê³ ë„ (km):%1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" -msgstr "" +msgstr "서브í¬ì¸íŠ¸(위ë„/ê²½ë„):%1%2%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" -msgstr "" +msgstr "지구중심관성좌표계 좌표 (km):%1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" -msgstr "" +msgstr "지구중심관성좌표계 ì†ë„ (km/s):%1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." -msgstr "" +msgstr "ì¸ê³µìœ„성과 관측ìžê°€ íƒœì–‘ë¹›ì— ìžˆìŠµë‹ˆë‹¤." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." -msgstr "" +msgstr "ì¸ê³µìœ„ì„±ì´ ê´€ì¸¡ë©ë‹ˆë‹¤." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." -msgstr "" +msgstr "ì¸ê³µìœ„ì„±ì´ ê°€ë ¤ì¡ŒìŠµë‹ˆë‹¤." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" -msgstr "" +msgstr "ì¸ê³µìœ„ì„±ì´ ë³´ì´ì§€ 않습니다." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" -msgstr "" +msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" -msgstr "" +msgstr "Stellarium ì¸ê³µìœ„성 플러그ì¸" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" -msgstr "" +msgstr "사용ìžë¥¼ 위한 주ì˜ì‚¬í•­" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5027,25 +5358,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" -msgstr "" +msgstr "TLE ë°ì´í„° ì—…ë°ì´íŠ¸" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5053,17 +5384,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" -msgstr "" +msgstr "새로운 ì¸ê³µìœ„성 추가하기" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5071,41 +5402,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" -msgstr "" +msgstr "기술노트" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." -msgstr "" +msgstr "ì„¸ë¶€ì‚¬í•­ì„ ìœ„í•´ %2 ì´ ë¬¸ì„œë¥¼ %1 보세요" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" -msgstr "" +msgstr "ë§í¬" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5113,448 +5446,491 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" -msgstr "" +msgstr "ì¸í„°ë„· ì—…ë°ì´íŠ¸ë¥¼ í•  수 없습니다." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." -msgstr "" +msgstr "지금 ì—…ë°ì´íŠ¸ì¤‘입니다." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" -msgstr "" +msgstr "ë‹¤ìŒ ì—…ë°ì´íŠ¸: 1분 미만" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" -msgstr "" +msgstr "ë‹¤ìŒ ì—…ë°ì´íŠ¸:%1 분" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" +msgstr "ë‹¤ìŒ ì—…ë°ì´íŠ¸ :%1 시간" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" -msgstr "" +msgstr "ì—…ë°ì´íŠ¸ ì—러" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "%1%2 ì¸ê³µìœ„ì„±ì´ ì—…ë°ì´íŠ¸ë˜ì—ˆìŠµë‹ˆë‹¤;%3 추가ë˜ì—ˆìŠµë‹ˆë‹¤;%4 제거ë˜ì—ˆìŠµë‹ˆë‹¤." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "%1%2 ì¸ê³µìœ„ì„±ì´ ì—…ë°ì´íŠ¸ë˜ì—ˆìŠµë‹ˆë‹¤; %3추가ë˜ì—ˆìŠµë‹ˆë‹¤; %4 사ë¼ì¡ŒìŠµë‹ˆë‹¤." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" -msgstr "" +msgstr "[새로운 소스]" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "지금 ì—…ë°ì´íŠ¸" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "파ì¼ì—ì„œ ì—…ë°ì´íŠ¸" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" -msgstr "" +msgstr "[ê¶¤ë„ ê³„ì‚° ì—러]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" -msgstr "" +msgstr "[새로 추가]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" -msgstr "" +msgstr "[ëª¨ë‘ í‘œì‹œë˜ì§€ 않았습니다]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" -msgstr "" +msgstr "[ëª¨ë‘ í‘œì‹œë˜ì—ˆìŠµë‹ˆë‹¤]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" -msgstr "" +msgstr "[전부]" + +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "새 그룹..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" -msgstr "" +msgstr "TLE ì—…ë°ì´íŠ¸ 파ì¼ì„ ì„ íƒí•˜ì„¸ìš”" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." -msgstr "" +msgstr "ë°ì´í„°ë¥¼ 다운로드중입니다" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." -msgstr "" +msgstr "Stellariumì´ ì—…ë°ì´íŠ¸ 소스로부터 ì¸ê³µìœ„성 ë°ì´í„°ë¥¼ 다운로드중입니다. 잠시만 기다려주세요..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." -msgstr "" +msgstr "TLE 소스파ì¼ì„ ì„ íƒí•˜ì„¸ìš”." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." -msgstr "" +msgstr "ë°ì´í„° 처리..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." -msgstr "" +msgstr "ë°ì´í„°ë¥¼ 다운로드할 수 없습니다. ë‚˜ì¤‘ì— ë‹¤ì‹œ ì‹œë„하세요." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" -msgstr "" +msgstr "카탈로그 번호:%1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" -msgstr "" +msgstr "ì¸ê³µìœ„성 배치" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "ì—…ë°ì´íŠ¸" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "ì¸í„°ë„· 소스로부터 ì¸ê³µìœ„성 ë°ì´í„°ë¥¼ ì—…ë°ì´íŠ¸" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" -msgstr "" +msgstr "마지막 ì—…ë°ì´íŠ¸:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "ì—…ë°ì´íŠ¸ ì¤‘ì— ì„ íƒí•œ 소스ì—ì„œ 새로운 ìœ„ì„±ì„ ì¶”ê°€í•˜ì„¸ìš”." + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "ì—…ë°ì´íŠ¸ ì¤‘ì— ë”ì´ìƒ ì—…ë°ì´íŠ¸ ì†ŒìŠ¤ì— ë‚˜ì—´ë˜ì§€ ì•Šì€ ì¸ê³µìœ„ì„±ì„ ì œê±°í•˜ì„¸ìš”." -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" -msgstr "" +msgstr "주파수 ì—…ë°ì´íŠ¸(시간)" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" -msgstr "" +msgstr "ì´ë¦„í‘œ" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" -msgstr "" +msgstr "ì´ë¦„ í°íŠ¸ í¬ê¸°(픽셀):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" -msgstr "" +msgstr "궤ë„ì„ " -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" -msgstr "" +msgstr "ì„ ì„ ê·¸ë¦¬ëŠ”ë° ì‚¬ìš©í•˜ëŠ” 세그먼트 수" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" -msgstr "" +msgstr "세그먼트 수:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" -msgstr "" +msgstr "ì´ˆë‹¨ìœ„ì˜ ë‹¨ì¼ ì„¸ê·¸ë¨¼íŠ¸ì˜ ì§€ì†ì‹œê°„" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" -msgstr "" +msgstr "세í¬ë¨¼íŠ¸ 길ì´(s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" -msgstr "" +msgstr "ì¤„ì˜ ì–‘ìª½ ëì„ ê·¸ë¦¬ëŠ”ë° ì‚¬ìš©ë˜ëŠ” 세그먼트 수" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" -msgstr "" +msgstr "ì‹ í˜¸ì˜ ê°•ë„ê°€ 변하는 길ì´:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" -msgstr "" +msgstr "기본 설정 ë³µì›" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" -msgstr "" +msgstr "기본값으로 설정 저장" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" -msgstr "" +msgstr "설정" + +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "추ì ì„ 시작하려는 ì¸ê³µìœ„ì„±ì„ ë”블í´ë¦­" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "ì¸ê³µìœ„ì„±ì„ ë” ì¶”ê°€í•˜ì„¸ìš”." + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "ì„ íƒëœ ìœ„ì„±ì„ ì œê±°í•˜ì„¸ìš”." + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "변경사항 저장" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "카달로그 번호:" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" -msgstr "" +msgstr "ì„ íƒëœ ìœ„ì„±ì„ í‘œì‹œí•˜ê¸°" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" -msgstr "" +msgstr "표시" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" -msgstr "" +msgstr "ì„ íƒëœ ìœ„ì„±ì˜ ê¶¤ë„ì„  보기" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" -msgstr "" +msgstr "궤ë„" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "ì—…ë°ì´íŠ¸ 하지 마세요" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" -msgstr "" +msgstr "설명:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "" +msgstr "그룹:" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "TLE set:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" -msgstr "" +msgstr "새로운 소스 추가하기" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" -msgstr "" +msgstr "ì„ íƒëœ 소스 제거하기" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" -msgstr "" +msgstr "소스" #: plugins/Satellites/src/ui_satellitesImportDialog.h:212 msgid "More Satellites" -msgstr "" +msgstr "ë” ë§Žì€ ìœ„ì„±" #: plugins/Satellites/src/ui_satellitesImportDialog.h:214 msgid "Get data from update sources" -msgstr "" +msgstr "ì—…ë°ì´íŠ¸ 소스로부터 ì–»ì€ ë°ì´í„°" #: plugins/Satellites/src/ui_satellitesImportDialog.h:215 #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:525 msgid "Abort download" -msgstr "" +msgstr "다운로드 í¬ê¸°" #: plugins/Satellites/src/ui_satellitesImportDialog.h:216 msgid "New satellites" -msgstr "" +msgstr "새로운 ì¸ê³µìœ„성" #: plugins/Satellites/src/ui_satellitesImportDialog.h:217 #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:534 msgid "Mark all" -msgstr "" +msgstr "ëª¨ë‘ í‘œì‹œ" #: plugins/Satellites/src/ui_satellitesImportDialog.h:218 #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:535 msgid "Mark none" -msgstr "" +msgstr "ëª¨ë‘ í‘œì‹œí•˜ì§€ 않기" #: plugins/Satellites/src/ui_satellitesImportDialog.h:219 #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:536 msgid "Discard" -msgstr "" +msgstr "무시" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "ë§ì›ê²½ 제어" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" -msgstr "" +msgstr "ì„ íƒëœ 천체로 #%1 천체ë§ì›ê²½ ì´ë™í•˜ê¸°" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" -msgstr "" +msgstr "화면 ì¤‘ì•™ì˜ í˜„ìž¬ í¬ì¸íŠ¸ë¡œ #%1 천체ë§ì›ê²½ ì´ë™í•˜ê¸°" #: plugins/TelescopeControl/src/gui/TelescopeConfigurationDialog.cpp:150 msgid "Add New Telescope" -msgstr "" +msgstr "새로운 천체ë§ì›ê²½ 추가하기" #: plugins/TelescopeControl/src/gui/TelescopeConfigurationDialog.cpp:160 msgid "Configure Telescope" -msgstr "" +msgstr "천체ë§ì›ê²½ 구성" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:56 msgid "N/A" -msgstr "" +msgstr "해당없ìŒ" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:57 msgid "Starting" -msgstr "" +msgstr "시작중" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:58 msgid "Connecting" -msgstr "" +msgstr "연결중" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:59 msgid "Connected" -msgstr "" +msgstr "ì—°ê²°ë¨" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:60 msgid "Disconnected" -msgstr "" +msgstr "ì—°ê²° ëŠê¹€" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:61 msgid "Stopped" -msgstr "" +msgstr "멈춤" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:238 msgid "Telescope Control plug-in" -msgstr "" +msgstr "천체ë§ì›ê²½ 컨트럴 플러그-ì¸" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:239 #: plugins/TimeZoneConfiguration/src/gui/TimeZoneConfigurationWindow.cpp:105 #: plugins/SolarSystemEditor/src/gui/SolarSystemManagerWindow.cpp:97 #, qt-format msgid "Version %1" -msgstr "" +msgstr "버전 %1" #. TRANSLATORS: Symbol for "number" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:265 msgid "#" -msgstr "" +msgstr "#" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:267 msgid "Status" -msgstr "" +msgstr "ìƒíƒœ" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:268 msgid "Type" -msgstr "" +msgstr "종류" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:284 #, qt-format @@ -5577,160 +5953,160 @@ #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:296 #, qt-format msgid "Press the \"%1\" button to set up a new telescope connection." -msgstr "" +msgstr "새로운 천체ë§ì›ê²½ ì—°ê²°ì„ ì„¤ì •í•˜ë ¤ë©´ \"%1\" ë²„íŠ¼ì„ ëˆ„ë¥´ì„¸ìš”." #. TRANSLATORS: Telescope connection type #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:310 msgid "local, Stellarium" -msgstr "" +msgstr "지역, 스텔ë¼ë¦¬ì›€" #. TRANSLATORS: Telescope connection type #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:314 msgid "local, external" -msgstr "" +msgstr "지역, 외부" #. TRANSLATORS: Telescope connection type #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:318 msgid "remote, unknown" -msgstr "" +msgstr "ì›ê²©, 잘 알려지지 ì•Šì€" #. TRANSLATORS: Telescope connection type #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:322 msgid "virtual" -msgstr "" +msgstr "ê°€ìƒ" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:744 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:395 msgid "Start" -msgstr "" +msgstr "시작" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:745 msgid "Start the selected local telescope" -msgstr "" +msgstr "ì„ íƒëœ ì§€ì—­ì˜ ì²œì²´ë§ì›ê²½ì„ 시작하세요." #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:750 msgid "Stop" -msgstr "" +msgstr "멈춤" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:751 msgid "Stop the selected local telescope" -msgstr "" +msgstr "ì„ íƒëœ ì§€ì—­ì˜ ì²œì²´ë§ì›ê²½ì„ 정지하세요." #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:756 msgid "Connect" -msgstr "" +msgstr "ì—°ê²°" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:757 msgid "Connect to the selected telescope" -msgstr "" +msgstr "ì„ íƒëœ 천체ë§ì›ê²½ì„ 연결하세요." #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:762 msgid "Disconnect" -msgstr "" +msgstr "ì—°ê²° í•´ì œ" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:763 msgid "Disconnect from the selected telescope" -msgstr "" +msgstr "ì„ íƒëœ 천체ë§ì›ê²½ìœ¼ë¡œë¶€í„° ì ‘ì†ì„ 해제하세요." #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:784 msgid "Select a directory" -msgstr "" +msgstr "디렉토리 ì„ íƒ" #: plugins/TelescopeControl/src/ui_slewDialog.h:287 msgid "Slew telescope to" -msgstr "" +msgstr "천체ë§ì›ê²½ 회전(ì´ë™)하기" #: plugins/TelescopeControl/src/ui_slewDialog.h:289 msgid "There are no active devices." -msgstr "" +msgstr "í™œì„±í™”ëœ ìž¥ì¹˜ê°€ 없습니다." #: plugins/TelescopeControl/src/ui_slewDialog.h:290 msgid "Slew telescope to coordinates" -msgstr "" +msgstr "좌표로 천체ë§ì›ê²½ì„ 회전(ì´ë™)하세요." #: plugins/TelescopeControl/src/ui_slewDialog.h:291 msgid "De&clination (J2000):" -msgstr "" +msgstr "&ì ìœ„(J2000):" #: plugins/TelescopeControl/src/ui_slewDialog.h:292 msgid "&Right Ascension (J2000):" -msgstr "" +msgstr "&ì ê²½(J2000):" #: plugins/TelescopeControl/src/ui_slewDialog.h:293 msgid "&Current object" -msgstr "" +msgstr "&현재 천체" #: plugins/TelescopeControl/src/ui_slewDialog.h:295 msgid "Hours-minutes-seconds format" -msgstr "" +msgstr "시간-분-ì´ˆ 형태" #: plugins/TelescopeControl/src/ui_slewDialog.h:297 msgid "&HMS" -msgstr "" +msgstr "&HMS(시간-분-ì´ˆ)" #: plugins/TelescopeControl/src/ui_slewDialog.h:299 msgid "Degrees-minutes-seconds format" -msgstr "" +msgstr "ë„-분-ì´ˆ 형태" #: plugins/TelescopeControl/src/ui_slewDialog.h:301 msgid "&DMS" -msgstr "" +msgstr "&DMS(ë„-분-ì´ˆ)" #: plugins/TelescopeControl/src/ui_slewDialog.h:303 msgid "Decimal degrees" -msgstr "" +msgstr "소수ì " #: plugins/TelescopeControl/src/ui_slewDialog.h:305 msgid "D&ecimal" -msgstr "" +msgstr "&소수ì " #: plugins/TelescopeControl/src/ui_slewDialog.h:306 msgid "&Slew" -msgstr "" +msgstr "&회전(ì´ë™)" #: plugins/TelescopeControl/src/ui_slewDialog.h:307 msgid "Configure &telescopes..." -msgstr "" +msgstr "&천체ë§ì›ê²½ 구성하기" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:471 msgid "Telescope Configuration" -msgstr "" +msgstr "천체ë§ì›ê²½ 구성" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:473 msgid "Telescope controlled by:" -msgstr "" +msgstr "ì œì–´ëœ ì²œì²´ë§ì›ê²½:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:475 msgid "" "A telescope connected to this computer via a serial port and controlled " "directly by Stellarium." -msgstr "" +msgstr "천체ë§ì›ê²½ì´ 시리얼í¬íŠ¸ë¡œ ì´ ì»´í“¨í„°ì™€ ì—°ê²°ë˜ì—ˆìœ¼ë©° 스텔ë¼ë¦¬ì›€ì— ì˜í•´ 곧바로 제어ë©ë‹ˆë‹¤." #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:477 msgid "Stellarium, directly through a serial port" -msgstr "" +msgstr "스텔ë¼ë¦¬ì›€, 시리얼í¬íŠ¸ë¥¼ 통해 곧바로" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:479 msgid "" "A telescope controlled by an external application, either at this computer " "or at a remote machine." -msgstr "" +msgstr "천체ë§ì›ê²½ì´ ì´ ì»´í“¨í„°ë‚˜ ì›ê²©ìž¥ì¹˜ì¸ 외부 ì‘ìš©í”„ë¡œê·¸ëž¨ì„ í†µí•´ 제어ë©ë‹ˆë‹¤." #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:481 msgid "External software or a remote computer" -msgstr "" +msgstr "외부 소프트웨어 ë˜ëŠ” ì›ê²© 컴퓨터" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:482 msgid "Nothing, just simulate one (a moving reticle)" -msgstr "" +msgstr "ì•„ë¬´ê²ƒë„ ì—†ìŠµë‹ˆë‹¤. 단지 (움ì§ì´ëŠ” ì‹­ìžì„ )ì„ ì¡°ì¢…í•©ë‹ˆë‹¤." #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:483 msgid "Telescope properties" -msgstr "" +msgstr "천체ë§ì›ê²½ 등ë¡" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:485 msgid "Connection delay:" -msgstr "" +msgstr "ì ‘ì† ì§€ì—°:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:487 msgid "" @@ -5741,15 +6117,15 @@ #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:490 msgid "Coordinate system:" -msgstr "" +msgstr "좌표 시스템:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:491 msgid "J2000 (default)" -msgstr "" +msgstr "J2000 (기본값)" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:492 msgid "Equinox of the date (JNow)" -msgstr "" +msgstr "춘분날짜(JNow)" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:494 msgid "" @@ -5759,27 +6135,27 @@ #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:496 msgid "Start/connect at startup" -msgstr "" +msgstr "시작/시작시 ì—°ê²°" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:497 msgid "Device settings" -msgstr "" +msgstr "장치 설정" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:498 msgid "Serial port:" -msgstr "" +msgstr "시리얼 í¬íŠ¸:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:499 msgid "Device model:" -msgstr "" +msgstr "기기 모ë¸:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:500 msgid "Connection settings" -msgstr "" +msgstr "ì ‘ì† ì„¤ì •" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:501 msgid "Host:" -msgstr "" +msgstr "호스트:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:503 msgid "" @@ -5788,23 +6164,23 @@ #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:505 msgid "TCP port:" -msgstr "" +msgstr "TCP í¬íŠ¸:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:506 msgid "User interface settings" -msgstr "" +msgstr "ì‚¬ìš©ìž ì¸í„°íŽ˜ì´ìŠ¤ 세팅" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:508 msgid "Show circles with fixed angular size around the telescope reticle" -msgstr "" +msgstr "천체 ë§ì›ê²½ ì‹­ìžì„  ì£¼ìœ„ì— ê³ ì • ëœ ê°ë„ì˜ í¬ê¸°ë¥¼ 가지고 ë™ê·¸ë¼ë¯¸ 표시" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:510 msgid "Use field of view indicators" -msgstr "" +msgstr "시야ê°(FOV) 지시기를 사용" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:511 msgid "Circle size(s):" -msgstr "" +msgstr "ì› í¬ê¸°(s):" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:513 msgid "Up to ten decimal values in degrees of arc, separated with commas" @@ -5816,59 +6192,59 @@ #: plugins/TelescopeControl/src/ui_telescopeDialog.h:394 msgid "Telescopes Controlled" -msgstr "" +msgstr "천체ë§ì›ê²½ 제어" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:397 msgid "Configure the selected telescope" -msgstr "" +msgstr "ì„ íƒëœ 천체ë§ì›ê²½ 설정" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:399 msgid "Configure" -msgstr "" +msgstr "설정" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:401 msgid "Add a new telescope" -msgstr "" +msgstr "새로운 천체ë§ì›ê²½ 추가" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:405 msgid "Remove the selected telescope" -msgstr "" +msgstr "ì„ íƒëœ 천체ë§ì›ê²½ì„ 제거" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:409 msgid "GUI" -msgstr "" +msgstr "GUI" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:410 msgid "Show telescope labels" -msgstr "" +msgstr "천체ë§ì›ê²½ ë¼ë²¨ 표시" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:411 msgid "Show telescope reticles" -msgstr "" +msgstr "천체ë§ì›ê²½ ì‹­ìžì„  표시" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:412 msgid "Show field of view indicators" -msgstr "" +msgstr "시야ê°(FOV) 표시기 표시" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:413 msgid "Files" -msgstr "" +msgstr "파ì¼" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:414 msgid "Log telescope driver messages to files" -msgstr "" +msgstr "파ì¼ì— 천체ë§ì›ê²½ ë“œë¼ì´ë²„ 메세지를 기ë¡" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:415 msgid "Use telescope server executables (override built-in drivers)" -msgstr "" +msgstr "천체ë§ì›ê²½ 서버 실행파ì¼ì„ 사용 (ë“œë¼ì´ë²„ 내장 무시)" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:416 msgid "Executables directory:" -msgstr "" +msgstr "ì‹¤í–‰íŒŒì¼ ë””ë ‰í† ë¦¬:" #: plugins/TimeZoneConfiguration/src/TimeZoneConfiguration.cpp:41 msgid "Time Zone" -msgstr "" +msgstr "시간대" #: plugins/TimeZoneConfiguration/src/TimeZoneConfiguration.cpp:44 msgid "" @@ -5878,175 +6254,175 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" -msgstr "" +msgstr "1ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" -msgstr "" +msgstr "2ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" -msgstr "" +msgstr "3ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" -msgstr "" +msgstr "4ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" -msgstr "" +msgstr "5ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" -msgstr "" +msgstr "6ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" -msgstr "" +msgstr "7ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" -msgstr "" +msgstr "8ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" -msgstr "" +msgstr "9ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" -msgstr "" +msgstr "10ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" -msgstr "" +msgstr "11ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" -msgstr "" +msgstr "12ì›”" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:265 msgid "First week" -msgstr "" +msgstr "첫째 주" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:266 msgid "Second week" -msgstr "" +msgstr "둘째 주" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:267 msgid "Third week" -msgstr "" +msgstr "셋째 주" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:268 msgid "Fourth week" -msgstr "" +msgstr "넷째 주" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:269 msgid "Last week" -msgstr "" +msgstr "마지막 주" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:278 msgid "Sunday" -msgstr "" +msgstr "ì¼ìš”ì¼" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:279 msgid "Monday" -msgstr "" +msgstr "월요ì¼" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:280 msgid "Tuesday" -msgstr "" +msgstr "화요ì¼" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:281 msgid "Wednesday" -msgstr "" +msgstr "수요ì¼" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:282 msgid "Thursday" -msgstr "" +msgstr "목요ì¼" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:283 msgid "Friday" -msgstr "" +msgstr "금요ì¼" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:284 msgid "Saturday" -msgstr "" +msgstr "토요ì¼" #: plugins/TimeZoneConfiguration/src/gui/TimeZoneConfigurationWindow.cpp:104 msgid "Time Zone plug-in" -msgstr "" +msgstr "시간대 플러그-ì¸" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:449 msgid "Define a time zone" -msgstr "" +msgstr "시간대 ì •ì˜" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:451 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:382 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:384 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:393 msgid "Time zone" -msgstr "" +msgstr "시간대" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:452 msgid "Timezone name:" -msgstr "" +msgstr "시간대 ì´ë¦„:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:453 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:388 msgid "Offset from UTC (hours):" -msgstr "" +msgstr "UTC ì—ì„œ 치우침(hours):" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:454 msgid "Daylight saving time (summer time)" -msgstr "" +msgstr "ì¼ê´‘절략시간(ì¸ë¨¸íƒ€ìž„)" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:455 msgid "DST timezone name:" -msgstr "" +msgstr "DST 시간대 ì´ë¦„:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:456 msgid "DST offset from UTC (hours):" -msgstr "" +msgstr "UTCì—ì„œ DST 치우침(시간):" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:457 msgid "Daylight saving time start" -msgstr "" +msgstr "ì¼ê´‘ 절약시간 시작" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:458 #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:462 msgid "Day:" -msgstr "" +msgstr "ì¼:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:459 #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:463 msgid "Time of change:" -msgstr "" +msgstr "변경시간:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:460 #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:464 msgid "Date:" -msgstr "" +msgstr "날짜:" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:461 msgid "Daylight saving time end" -msgstr "" +msgstr "ì¼ê´‘절약시간 종료" #: plugins/TimeZoneConfiguration/src/ui_defineTimeZone.h:465 msgid "Use this definition" -msgstr "" +msgstr "ì´ ì •ì˜ë¥¼ 사용" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:385 msgid "" @@ -6058,38 +6434,38 @@ #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:386 msgid "Use system settings (default)" -msgstr "" +msgstr "시스템 설정 사용 (기본값)" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:387 msgid "Universal Coordinated Time (UTC)" -msgstr "" +msgstr "표준시(UTC)" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:389 msgid "(offset = local time - UTC time)" -msgstr "" +msgstr "(옵셋 = 지방시 - 표준시)" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:390 msgid "User-defined:" -msgstr "" +msgstr "ì‚¬ìš©ìž ì •ì˜" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:392 msgid "Any changes will take effect the next time Stellarium is started." -msgstr "" +msgstr "ë³€ê²½ëœ ì‚¬í•­ì´ ì ìš©ë˜ë ¤ë©´ 스텔ë¼ë¦¬ì›€ì„ 다시 시작하세요." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:394 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:405 msgid "Display formats" -msgstr "" +msgstr "í˜•ì‹ í‘œì‹œ" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:395 msgid "" "These settings control the way time and date are displayed in the bottom bar." -msgstr "" +msgstr "ì´ëŸ¬í•œ ì„¸íŒ…ì€ ì‹œê°„ê³¼ 날짜를 ì•„ëž˜í‘œì‹œì¤„ì— ë‚˜íƒ€ë‚´ëŠ” ë°©ì‹ìœ¼ë¡œ 제어ë©ë‹ˆë‹¤." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" -msgstr "" +msgstr "시간 표시 형ì‹" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:397 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:401 @@ -6098,200 +6474,200 @@ #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:398 msgid "12-hour format" -msgstr "" +msgstr "12-시간 형ì‹" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:399 msgid "24-hour format" -msgstr "" +msgstr "24-시간 형ì‹" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" -msgstr "" +msgstr "날짜 표시 형ì‹" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:402 msgid "yyyy-mm-dd (ISO 8601)" -msgstr "" +msgstr "ë…„-ì›”-ì¼(ISO 8601" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:403 msgid "dd-mm-yyyy" -msgstr "" +msgstr "ì¼-ì›”-ë…„" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:404 msgid "mm-dd-yyyy" -msgstr "" +msgstr "ì›”-ì¼-ë…„" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" -msgstr "" +msgstr "í…스트 ì‚¬ìš©ìž ì¸í„°íŽ˜ì´ìŠ¤" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" -msgstr "" +msgstr "태양계 본체" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" -msgstr "" +msgstr "현재 날짜/시간" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" -msgstr "" +msgstr "시간대 설정" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" -msgstr "" +msgstr "날짜 키" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" -msgstr "" +msgstr "시작 날짜/시간 미리 설정" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" -msgstr "" +msgstr "시스템" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" -msgstr "" +msgstr "사전 설정" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" -msgstr "" +msgstr "ì›”ì¼ë…„" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" -msgstr "" +msgstr "ì¼ì›”ë…„" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" -msgstr "" +msgstr "ë…„ì›”ì¼" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" -msgstr "" +msgstr "12ì‹œ" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" -msgstr "" +msgstr "24ì‹œ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "언어" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" -msgstr "" +msgstr "별 ë³´ì´ê¸°" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" -msgstr "" +msgstr "색ìƒ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" -msgstr "" +msgstr "성운 ì´ë¦„" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" -msgstr "" +msgstr "성운 힌트" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "ì€í•˜ë©´" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" -msgstr "" +msgstr "효과" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" -msgstr "" +msgstr "ìˆ˜ë™ í™•ëŒ€/축소" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" -msgstr "" +msgstr "등급 ì¡°ì • 배율" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" -msgstr "" +msgstr "ì€í•˜ìˆ˜ ê°•ë„:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" -msgstr "" +msgstr "성운 ë¼ë²¨ 주파수:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" -msgstr "" +msgstr "줌 시간:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" -msgstr "" +msgstr "커서 제한시간:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" -msgstr "" +msgstr "í’ê²½ 설정 위치를 설정" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" -msgstr "" +msgstr "로컬 스í¬ë¦½íŠ¸ 실행" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" -msgstr "" +msgstr "실행ë˜ê³  있는 스í¬ë¦½íŠ¸ 정지" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" -msgstr "" +msgstr "CD/DVD 스í¬ë¦½íŠ¸" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" -msgstr "" +msgstr "관리" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" -msgstr "" +msgstr "기본값 구성 ì½ê¸°" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" -msgstr "" +msgstr "현재 구성 저장" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" -msgstr "" +msgstr "컴퓨터 ë„기" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" -msgstr "" +msgstr "TUI 노드 ì—†ìŒ" #: plugins/TextUserInterface/src/TuiNodeBool.cpp:72 msgid "On" -msgstr "" +msgstr "켜ì§" #: plugins/TextUserInterface/src/TuiNodeBool.cpp:73 msgid "Off" -msgstr "" +msgstr "ë„기" #: plugins/TextUserInterface/src/TuiNodeColor.cpp:109 #, qt-format msgid "error, unknown color part \"%1\"" -msgstr "" +msgstr "오류, 잘알려지지 ì•Šì€ ì»¬ëŸ¬ 부분 \"%1\"" #: plugins/TextUserInterface/src/TuiNodeActivate.cpp:48 msgid " [RETURN to activate]" -msgstr "" +msgstr " [활성화 복귀]" #: plugins/SolarSystemEditor/src/SolarSystemEditor.cpp:56 msgid "Solar System Editor" -msgstr "" +msgstr "태양계 편집기" #: plugins/SolarSystemEditor/src/SolarSystemEditor.cpp:59 msgid "" @@ -6301,22 +6677,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" -msgstr "" +msgstr "MPS'sì˜ %1 조회:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." -msgstr "" +msgstr "쿼리가 성공하면 í•˜ë‚˜ì˜ ê²°ê³¼ë§Œì´ ë°˜í™˜ë©ë‹ˆë‹¤." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6328,7 +6704,7 @@ #. TRANSLATORS: Appears as the text of hyperlinks linking to websites. :) #: plugins/SolarSystemEditor/src/gui/SolarSystemManagerWindow.cpp:88 msgid "website" -msgstr "" +msgstr "웹사ì´íŠ¸" #. TRANSLATORS: IAU = International Astronomical Union #: plugins/SolarSystemEditor/src/gui/SolarSystemManagerWindow.cpp:92 @@ -6342,64 +6718,64 @@ #: plugins/SolarSystemEditor/src/gui/SolarSystemManagerWindow.cpp:96 msgid "Solar System Editor plug-in" -msgstr "" +msgstr "태양계 편집기 플러그-ì¸" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:512 msgid "Import data" -msgstr "" +msgstr "중요 ìžë£Œ" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:514 msgid "Select the type" -msgstr "" +msgstr "타입 ì„ íƒ" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:515 msgid "Asteroids" -msgstr "" +msgstr "소행성" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:516 msgid "Comets" -msgstr "" +msgstr "혜성" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:517 msgid "Select the source" -msgstr "" +msgstr "소스 ì„ íƒ" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:518 msgid "Download a list of objects from the Internet" -msgstr "" +msgstr "ì¸í„°ë„·ìœ¼ë¡œë¶€í„° 천체 ëª©ë¡ ë‹¤ìš´ë¡œë“œí•˜ê¸°" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:519 msgid "Select a source from the list:" -msgstr "" +msgstr "목ë¡ì—ì„œ 소스 ì„ íƒ" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:520 msgid "Or enter a URL:" -msgstr "" +msgstr "ë˜ëŠ” URL ìž…ë ¥:" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:521 msgid "Add this URL to the bookmarks list" -msgstr "" +msgstr "ì¦ê²¨ì°¾ê¸° 목ë¡ì— ì´ URL 추가" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:522 msgid "Bookmark title:" -msgstr "" +msgstr "ì¦ê²¨ì°¾ê¸° 제목:" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:523 msgid "A file containing a list of objects" -msgstr "" +msgstr "ì²œì²´ì˜ ëª©ë¡ì„ í¬í•¨í•˜ëŠ” 파ì¼" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:524 msgid "Get orbital elements" -msgstr "" +msgstr "궤ë„요소 íšë“" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:527 #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:528 msgid "Online search" -msgstr "" +msgstr "온ë¼ì¸ íƒìƒ‰" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:529 msgid "Objects found" -msgstr "" +msgstr "천체 발견" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:530 msgid "" @@ -6412,28 +6788,28 @@ #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:531 msgid "Overwrite existing objects" -msgstr "" +msgstr "기존 ì²œì²´ì— ë®ì–´ì“°ê¸°" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:532 msgid "Update existing objects" -msgstr "" +msgstr "기존 ì²œì²´ì— ì—…ë°ì´íŠ¸" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:533 msgid "Update only the orbital elements" -msgstr "" +msgstr "ì „ìš© 궤ë„요소 ì—…ë°ì´íŠ¸" #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:537 msgid "Add objects" -msgstr "" +msgstr "천체 추가" #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:294 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:305 msgid "Solar System objects" -msgstr "" +msgstr "태양계 천체" #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:296 msgid "Warning" -msgstr "" +msgstr "경고" #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:297 msgid "" @@ -6449,11 +6825,11 @@ #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:299 msgid "Reset to defaults" -msgstr "" +msgstr "기본값 ë³µì›" #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:300 msgid "Copy/replace the Solar System file" -msgstr "" +msgstr "태양계 íŒŒì¼ ë³µì‚¬/대체" #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:301 msgid "" @@ -6463,60 +6839,67 @@ #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:302 msgid "Copy the Solar System file..." -msgstr "" +msgstr "태양계 íŒŒì¼ ë³µì‚¬í•˜ê¸°..." #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:303 msgid "Replace the Solar System file..." -msgstr "" +msgstr "태양계 íŒŒì¼ ëŒ€ì²´í•˜ê¸°..." #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:304 msgid "Configuration file" -msgstr "" +msgstr "구성 파ì¼" #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:307 msgid "Add new Solar System objects" -msgstr "" +msgstr "새로운 태양계 천체 추가" #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:308 msgid "Import orbital elements in MPC format..." -msgstr "" +msgstr "MPC 형ì‹ì•ˆì˜ 중요 ê¶¤ë„ ìš”ì†Œ" #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:309 msgid "Solar System" -msgstr "" +msgstr "태양계" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" -msgstr "" +msgstr "역사ì ì¸ 초신성" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." -msgstr "" +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." +msgstr "ì´ í”ŒëŸ¬ê·¸ì¸ì€ 역사ì ìœ¼ë¡œ ëª‡ê°œì˜ ë°ì€ ì´ˆì‹ ì„±ì„ ë³¼ 수 있습니다." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" -msgstr "" +msgstr "초신성" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" -msgstr "" +msgstr "ì´ˆì‹ ì„±ì˜ í˜•íƒœ:%1" + +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "최대 ë°ê¸°:%1" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" -msgstr "" +msgstr "역사ì ì¸ 초신성 플러그-ì¸" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " -msgstr "" +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "ì´ í”ŒëŸ¬ê·¸ì¸ì€ 역사ì ìœ¼ë¡œ ëª‡ê°œì˜ ë°ì€ ì´ˆì‹ ì„±ì„ ë³¼ 수 있습니다: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." +msgstr "모든 ì´ˆì‹ ì„±ì˜ ë°ê¸°ì˜ 최대 ë°ê¸°ëŠ” %1입니다." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" -msgstr "" +msgstr "ë¹›ì˜ ê³¡ì„ " #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:116 #, qt-format @@ -6529,31 +6912,31 @@ #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:118 msgid "Acknowledgments" -msgstr "" +msgstr "ê°ì‚¬" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:121 msgid "Sergei Blinnikov" -msgstr "" +msgstr "ì„¸ë¥´ê²Œì´ ë¸”ë¦¬ë‹ˆì½”ë¸Œ" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:123 msgid "Institute for Theoretical and Experimental Physics" -msgstr "" +msgstr "ì´ë¡  ë° ì‹¤í—˜ 물리학 연구소" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" -msgstr "" +msgstr "러시아ì—ì„œ" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6561,48 +6944,126 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" -msgstr "" +msgstr "ë‹¤ìŒ ì—…ë°ì´íŠ¸:%1 ì¼" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:199 msgid "Historical supernovae is updated" -msgstr "" +msgstr "역사ì ì¸ ì´ˆì‹ ì„±ì´ ì—…ë°ì´íŠ¸ë˜ì—ˆìŠµë‹ˆë‹¤." #: plugins/Supernovae/src/ui_supernovaeDialog.h:230 msgid "Historical Supernovae Configuration" -msgstr "" +msgstr "역사ì ì¸ 초신성 구성" #: plugins/Supernovae/src/ui_supernovaeDialog.h:231 msgid "Historical Supernovae Plug-in Configuration" -msgstr "" +msgstr "역사ì ì¸ 초신성 플러그-ì¸ êµ¬ì„±" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" -msgstr "" +msgstr "ì¸í„°ë„·ìœ¼ë¡œë¶€í„° 카달로그 ì—…ë°ì´íŠ¸" + +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "ì¸í„°ë„· 소스로부터 ì—…ë°ì´íŠ¸" #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" -msgstr "" +msgstr "ì—…ë°ì´íŠ¸ 주기(ì¼):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" +msgstr "[ë‹¤ìŒ ì—…ë°ì´íŠ¸ ì •ë³´]" + +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "신성 ë°ê¸°" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "ì€í•˜ê³„ì˜ ì¼ë¶€ ë°ì€ ì‹ ì„±ì„ ë³´ê¸°ìœ„í•´ 플러그ì¸." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "형태:%1(%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "신성" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "ë°ì€ 신성 플러그-ì¸" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 -msgid "Quasars" +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "ì‹ ì„±ì´ ì—…ë°ì´íŠ¸ë˜ì—ˆìŠµë‹ˆë‹¤." + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "ë°ì€ 신성 구성" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "ë°ì€ 신성 플러그-ì¸ êµ¬ì„±" + +#: plugins/Quasars/src/Quasars.cpp:71 +msgid "Quasars" +msgstr "퀘ì´ì‚¬" + +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6611,58 +7072,68 @@ #: plugins/Quasars/src/Quasar.cpp:92 msgid "quasar" -msgstr "" +msgstr "퀘ì´ì‚¬" #: plugins/Quasars/src/Quasar.cpp:134 #, qt-format msgid "Z (redshift): %1" -msgstr "" +msgstr "Z(ì ìƒ‰íŽ¸ì´):%1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" -msgstr "" +msgstr "퀘ì´ì‚¬ 플러그-ì¸" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" -msgstr "" +msgstr "ë² ë¡ + 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" -msgstr "" +msgstr "퀘ì´ì‚¬ê°€ ì—…ë°ì´íŠ¸ë˜ì—ˆìŠµë‹ˆë‹¤." -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" -msgstr "" +msgstr "퀘ì´ì‚¬ 구성" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" -msgstr "" +msgstr "퀘ì´ì‚¬ 플러그-ì¸ êµ¬ì„±" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "퀘ì´ì‚¬ì— 대한 설정" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" -msgstr "" +msgstr "ë¼ë²¨ ì—†ì´ ëª¨ë“  퀘ì´ì‚¬ 표시" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" -msgstr "" +msgstr "퀘ì´ì‚¬ì— 대한 분표 표시 활성화" + +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "시작시 표시 가능" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "툴바ì—ì„œ 퀘ì´ìŠ¤ 버튼 보기" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" -msgstr "" +msgstr "펄사" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6670,53 +7141,53 @@ #: plugins/Pulsars/src/Pulsar.cpp:125 msgid "pulsar" -msgstr "" +msgstr "펄사" #. TRANSLATORS: Unit of measure for period - seconds #: plugins/Pulsars/src/Pulsar.cpp:136 #, qt-format msgid "Barycentric period: %1 s" -msgstr "" +msgstr "ì¤‘ì‹¬ê¶¤ë„ ì£¼ê¸°:%1s" #: plugins/Pulsars/src/Pulsar.cpp:140 #, qt-format msgid "Time derivative of barycentric period: %1" -msgstr "" +msgstr "ì¤‘ì‹¬ê¶¤ë„ ì£¼ê¸°ì˜ ì‹œê°„ ë„함수:%1" #: plugins/Pulsars/src/Pulsar.cpp:145 msgid "Dispersion measure:" -msgstr "" +msgstr "분광 측정:" #. TRANSLATORS: Unit of measure for distance - centimeters #: plugins/Pulsars/src/Pulsar.cpp:148 msgid "cm" -msgstr "" +msgstr "cm" #. TRANSLATORS: Unit of measure for distance - parsecs #: plugins/Pulsars/src/Pulsar.cpp:151 msgid "pc" -msgstr "" +msgstr "파섹(pc)" #: plugins/Pulsars/src/Pulsar.cpp:157 #, qt-format msgid "Spin down energy loss rate: %1 ergs/s" -msgstr "" +msgstr "회전 ì €í•˜ì— ë”°ë¥¸ ì—너지 ì†ì‹¤ 비율:%1 ergs/s" #: plugins/Pulsars/src/Pulsar.cpp:161 #, qt-format msgid "Binary period of pulsar: %1 days" -msgstr "" +msgstr "íŽ„ì‚¬ì˜ ì´ì§„ 주기:%1 ì¼" #: plugins/Pulsars/src/Pulsar.cpp:165 #, qt-format msgid "Eccentricity: %1" -msgstr "" +msgstr "ì´ì‹¬ë¥ :%1" #. TRANSLATORS: Unit of measure for annual parallax - milliarcseconds #: plugins/Pulsars/src/Pulsar.cpp:170 #, qt-format msgid "Annual parallax: %1 mas" -msgstr "" +msgstr "ì—°ê°„ 시차:%1 mas" #: plugins/Pulsars/src/Pulsar.cpp:174 #, qt-format @@ -6782,11 +7253,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6794,137 +7265,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6932,49 +7407,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6990,185 +7554,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "M" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7211,7 +7769,7 @@ #: plugins/Observability/src/gui/ObservabilityDialog.cpp:152 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:232 msgid "Horizon altitude:" -msgstr "" +msgstr "수í‰ì„  ê³ ë„:" #: plugins/Observability/src/gui/ObservabilityDialog.cpp:106 msgid "" @@ -7221,7 +7779,7 @@ #: plugins/Observability/src/gui/ObservabilityDialog.cpp:108 msgid "Today ephemeris:" -msgstr "" +msgstr "ì˜¤ëŠ˜ì˜ ì²œì²´ë ¥:" #: plugins/Observability/src/gui/ObservabilityDialog.cpp:108 msgid "" @@ -7233,7 +7791,7 @@ #: plugins/Observability/src/gui/ObservabilityDialog.cpp:109 msgid "Acronychal/Cosmical rise/set:" -msgstr "" +msgstr "ì €ë…ì˜/우주ì ì¸ ì¼ì¶œ/ì¼ëª°:" #: plugins/Observability/src/gui/ObservabilityDialog.cpp:109 msgid "" @@ -7250,7 +7808,7 @@ #: plugins/Observability/src/gui/ObservabilityDialog.cpp:110 msgid "Largest Sun separation:" -msgstr "" +msgstr "가장 í° íƒœì–‘ 분리:" #: plugins/Observability/src/gui/ObservabilityDialog.cpp:110 msgid "" @@ -7266,7 +7824,7 @@ #: plugins/Observability/src/gui/ObservabilityDialog.cpp:111 msgid "Nights with source above horizon:" -msgstr "" +msgstr "수í‰ì„  위 ê´‘ì›ì„ 지닌 ë°¤:" #: plugins/Observability/src/gui/ObservabilityDialog.cpp:111 msgid "" @@ -7290,36 +7848,36 @@ #: plugins/Observability/src/gui/ObservabilityDialog.cpp:112 msgid "Full Moon:" -msgstr "" +msgstr "보름달:" #: plugins/Observability/src/gui/ObservabilityDialog.cpp:112 msgid "" "When the Moon is selected, the program can compute the exact closest dates " "of the Moon's opposition to the Sun." -msgstr "" +msgstr "ë‹¬ì´ ì„ íƒë˜ì—ˆì„ë•Œ, í”„ë¡œê·¸ëž¨ì€ íƒœì–‘ì—ì„œ ë‹¬ì˜ ë°˜ëŒ€íŽ¸ì˜ ì •í™•í•˜ê³  가까운 날짜를 계산할 수 있습니다." #: plugins/Observability/src/gui/ObservabilityDialog.cpp:148 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:152 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:225 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:232 msgid "deg." -msgstr "" +msgstr "ë„." #: plugins/Observability/src/ui_ObservabilityDialog.h:359 msgid "Observability Configuration" -msgstr "" +msgstr "관측 구성" #: plugins/Observability/src/ui_ObservabilityDialog.h:360 msgid "Observability Plug-in Configuration" -msgstr "" +msgstr "관측 플러그-ì¸ êµ¬ì„±" #: plugins/Observability/src/ui_ObservabilityDialog.h:362 msgid "Showing Options" -msgstr "" +msgstr "옵션 ë³´ì´ê¸°" #: plugins/Observability/src/ui_ObservabilityDialog.h:363 msgid "Today's ephemeris (rise, set, and transit times)" -msgstr "" +msgstr "ì˜¤ëŠ˜ì˜ ì²œì²´ë ¥(ì¼ì¶œ, ì¼ëª°, ìžì˜¤ì„  통과 시간)" #: plugins/Observability/src/ui_ObservabilityDialog.h:364 msgid "Dates of Acronychal and Cosmical rise/set" @@ -7335,39 +7893,39 @@ #: plugins/Observability/src/ui_ObservabilityDialog.h:367 msgid "Dates of previous and next Full Moon" -msgstr "" +msgstr "ì´ì „ê³¼ ë‹¤ìŒ ë³´ë¦„ë‹¬ì˜ ë‚ ì§œ" #: plugins/Observability/src/ui_ObservabilityDialog.h:370 msgid "Font color and size" -msgstr "" +msgstr "글꼴 색ìƒê³¼ í¬ê¸°" #: plugins/Observability/src/ui_ObservabilityDialog.h:371 msgid "Red" -msgstr "" +msgstr "빨간색" #: plugins/Observability/src/ui_ObservabilityDialog.h:372 msgid "Green" -msgstr "" +msgstr "녹색" #: plugins/Observability/src/ui_ObservabilityDialog.h:373 msgid "Blue" -msgstr "" +msgstr "파란색" #: plugins/Observability/src/ui_ObservabilityDialog.h:374 msgid "Font Size" -msgstr "" +msgstr "글꼴 í¬ê¸°" #: plugins/Observability/src/ui_ObservabilityDialog.h:375 msgid "Observing conditions" -msgstr "" +msgstr "관측ìƒíƒœ" #: plugins/Observability/src/ui_ObservabilityDialog.h:376 msgid "Horizon altitude: 0 deg." -msgstr "" +msgstr "수í‰ì„  ê³ ë„: 0ë„." #: plugins/Observability/src/ui_ObservabilityDialog.h:377 msgid "Sun altitude at twilight: 0 deg." -msgstr "" +msgstr "박명ì—ì„œ 태양고ë„: 0ë„." #~ msgid "Equatorial Grid" #~ msgstr "ì ìœ„ 격ìž" @@ -7516,6 +8074,9 @@ #~ msgid "Light Pollution Luminance: " #~ msgstr "광공해 ë°ê¸°: " +#~ msgid "Nebulas" +#~ msgstr "성운" + #~ msgid "Correct for light travel time: " #~ msgstr "ë¹›ì˜ ì—¬í–‰ ì‹œê°„ì— ë§žê²Œ 고치세요: " @@ -7564,6 +8125,9 @@ #~ msgid "Startup direction of view: xxxx" #~ msgstr "시작시 시야 ë°©í–¥: xxxx" +#~ msgid "Nebulas background images" +#~ msgstr "성운 ë°°ê²½ 그림" + #~ msgid "Get catalog x of y" #~ msgstr "y ì˜ x ëª©ë¡ ê°€ì ¸ì˜¤ê¸°" diff -Nru stellarium-0.12.1/po/stellarium/ky.po stellarium-0.12.4/po/stellarium/ky.po --- stellarium-0.12.1/po/stellarium/ky.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ky.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-04-10 13:40+0000\n" -"Last-Translator: Chynggyz Jumaliev \n" +"Last-Translator: ballpen \n" "Language-Team: Kirghiz \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:15+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Меридиан" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Эклиптика" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Экватор" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Горизонт" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Галактиканын тегиздиги" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Ðвтор: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Жайгашкан жери: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 м" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "ПланетаÑÑ‹: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Түр: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Жылдыздык чоңдук: %1 (%2 чейин бошоңдогон)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Жылдыздык чоңдук: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Өлчөм: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Галактика" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Чачынды жылдыз чогулушу" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Шардык жылдыз чогулушу" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Жыбыраган калың жылдыз" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Планетарийлик жыбыраган калың жылдыз" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Жылдыз чогулушу, жыбыраган калың жылдыз менен байланышкан" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "БелгиÑиз" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Документтелбеген түр" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Ðакта жылдыздык чоңдук: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Ðралык: %1 а. б. (%2 км)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Ðралык: %1 а.б." -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Көрүнүүчү диаметр: %1, шакектери менен: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Көрүнүүчү диаметр: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Фазалык бурч: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "ЭлонгациÑ: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Фаза: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Жарык кылынган: %1%" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,48 +219,123 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Көрүнүүчү жылдыздык чоңдук: %1 (бошоңдогон)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" "Жылдыздык чоңдук: %1 (%2. B-V: %3 чейин бошоңдогон)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Жылдыздык чоңдук: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Спектрдик түр: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Ðралык: %1 жарыктык жыл" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ПараллакÑ:%1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "КоÑмоÑтук аппарат" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -268,14 +343,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -284,14 +359,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -299,7 +374,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -307,14 +382,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -323,14 +398,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -338,25 +413,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -365,14 +440,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -380,42 +455,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -423,7 +498,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -431,7 +506,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -440,7 +515,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -450,45 +525,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Ката" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -655,52 +747,53 @@ msgid "Found" msgstr "Табылды" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Экран Ñүрөттөрүнүн каталогун тандаңыз" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Ðлгачкы көрүнүп турган мейкин: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Ðлгачкы кароонун багыты азимут/бийиктик: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Ðвторлор" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Кербайланыш" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Ðвтор" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ЛицензиÑ" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Жүргүзүлгөн Ñценарий: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Жүргүзүлгөн Ñценарий: [жок]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -708,16 +801,16 @@ "Жылдыздардын жаңы каталогу жүктөлүп бүттү!\n" "Ðларды көрÑÓ©Ñ‚Ò¯Ò¯ үчүн Stellarium'ду кайта жүргүзүңүз." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Бүт колго жетердик жылдыз каталогдору орнотулду." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "%2 каталогдун %1 жүктөлүп жатат" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -726,7 +819,7 @@ "Жүктөө %1...\n" "(Сиз бул терезени жапÑаңыз болот.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -737,7 +830,7 @@ "Жылдыздардын Ñаны: %2 миллион\n" "Жылдыздык чоңдугунун диапазону: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -746,11 +839,11 @@ "Жүктөп алуу учурундагы ката %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Файлдын бүтүндүгүн текшерүү..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -760,115 +853,123 @@ "Файл бузук." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1037,49 +1138,53 @@ msgid "OSX Developer: %1" msgstr "OSX-иштетүүчүÑÒ¯: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Сценарий конÑолунун терезеÑи" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Терезелер" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Боштук" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1м" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "БаÑндама жок" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "МетеорлорÑуз" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Кадимкидей жүрүш" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "ПерÑеиддердин Ñтандарттуу жүрүшү" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Леонид үчүн көрүнүктүү" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "МакÑималдуу (Леониддер, 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Жаңы жайгашкан жери" @@ -1184,19 +1289,19 @@ msgid "starchart" msgstr "жылдыз картаÑÑ‹" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad издөөÑүнүн катаÑÑ‹" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad издөөÑÒ¯" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "СтраÑбург универÑитети (ФранциÑ)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Гарвард универÑитети (ÐКШ)" @@ -1212,30 +1317,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Бул ÑиÑтема OpenGL'ди колдобойт." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Күн" @@ -1252,12 +1363,12 @@ msgstr "Жер" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Ðй" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "МарÑ" @@ -1355,7 +1466,7 @@ msgstr "Метида" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Сатурн" @@ -1653,193 +1764,222 @@ msgstr "ЭÑкимоÑ" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Корей" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Лакота" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Маори" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Ðавахо" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "СкандинавиÑ" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Полинезий" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Саам" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Тупи-гуарани" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Батыштык" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Герен" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Бактар" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Бороон" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Океан" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Гархинг" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Ландшафттар боюнча тур" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Жарым-жылтай ай тутулууÑу" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Толук ай тутулууÑу" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Экран Ñактагыч" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Күн тутулуу 2009-ж." #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Башталгыч Ñценарий" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Зодиак" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Ðналемма" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "ÐÑ€ бир орнотулган ландшафтты тегерете карап чыгыңыз." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Жарым-жартылай ай тутулууÑун көрÑÓ©Ñ‚Ò¯Ò¯ үчүн Ñценарий." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Толук ай тутулууÑун көрÑÓ©Ñ‚Ò¯Ò¯ үчүн Ñценарий." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "ÐÑмандагы кокуÑтук объекттерди көрÑөткөн чекÑиз жай Ñейили." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1847,11 +1987,11 @@ "2009 жылы болгон күн тутулууÑун көрÑÓ©Ñ‚Ò¯Ò¯ үчүн Ñценарий (жер - Рангпур, " "Бангладеш)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Башында автоматтуу түрдө жүргүзүлүүчү Ñценарий" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1859,36 +1999,36 @@ msgstr "" "Бир жылдын ичинде Зодиактын Ñызыгынан өткөн күндү бул Ñценарий көрÑÓ©Ñ‚Ó©Ñ‚." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1898,1502 +2038,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Ðндорра" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Бириккен Ðраб Эмираттары" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ОоганÑтан" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Ðнтигуа жана Барбуда" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "ÐнгильÑ" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "ÐлбаниÑ" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ÐрмениÑ" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Ðидерланддардын Ðнтилдери" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Ðнгола" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Ðнтарктида" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Ðргентина" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Ðмерикалык Самоа" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ÐвÑтриÑ" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ÐвÑтралиÑ" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Ðруба" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Ðзербайжан" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "БоÑÐ½Ð¸Ñ Ð¶Ð°Ð½Ð° Герцеговина" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "БарбадоÑ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Бангладеш" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "БельгиÑ" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркина ФаÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "БолгариÑ" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Бахрейн" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Бурунди" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Бенин" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Бермуддар" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Бруней ДаруÑÑалам" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "БоливиÑ" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "БразилиÑ" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Багамалар" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Буве аралы" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "БотÑвана" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "БеларуÑÑŒ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Белиз" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Канада" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "ÐšÐ¾ÐºÐ¾Ñ Ð°Ñ€Ð°Ð»Ð´Ð°Ñ€Ñ‹" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "ДемократиÑлык Конго РеÑпубликаÑÑ‹" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Борбордук-Ðфрика РеÑпубликаÑÑ‹" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Конго РеÑпубликаÑÑ‹" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "ШвейцариÑ" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Пил Сөөгүнүн жÑÑги" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Куктун аралдары" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Чили" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Камерун" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Кытай" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "КолумбиÑ" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "КоÑта-Рика" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Ð¡ÐµÑ€Ð±Ð¸Ñ Ð¶Ð°Ð½Ð° ЧерногориÑ" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Куба" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Кабо-Верде" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "РождеÑтво аралы" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Кипр" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Чех РеÑпубликаÑÑ‹" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "ГерманиÑ" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Джибути" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "ДаниÑ" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Доминика" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Доминикан РеÑпубликаÑÑ‹" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ðлжир" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Эквадор" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "ЭÑтониÑ" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Египет" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Батыш Сахара" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "ЭритреÑ" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "ИÑпаниÑ" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "ЭфиопиÑ" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ФинлÑндиÑ" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Фиджи" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Фолкленд аралдары" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "МикронезиÑ" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Фарер аралдары" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "ФранциÑ" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Габон" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Улуу БританиÑ" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Гренада" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ГрузиÑ" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Француз ГвинеÑÑÑ‹" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Гана" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Гибралтар" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "ГренландиÑ" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "ГамбиÑ" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "ГвинеÑ" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Гваделупа" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Экваториалдык ГвинеÑ" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "ГрециÑ" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Түштүк Ð”Ð¶Ð¾Ñ€Ð´Ð¶Ð¸Ñ Ð¶Ð°Ð½Ð° Түштүк Сандвичевдер Ðралдары" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Гватемала" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Гуам" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "ГвинеÑ-БиÑÑау" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Гвиана" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Гонконг" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Херд жана Макдональд аралдары" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ГондураÑ" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "ХорватиÑ" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Гаити" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "ВенгриÑ" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "ИндонезиÑ" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ИрландиÑ" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Израиль" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ИндиÑ" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Ð˜Ð½Ð´Ð¸Ñ Ð¾ÐºÐµÐ°Ð½Ñ‹Ð½Ð´Ð°Ð³Ñ‹ Британдык территориÑÑÑ‹" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ирак" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Иран" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ИÑландиÑ" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ИталиÑ" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Ямайка" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "ИорданиÑ" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "ЯпониÑ" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "КениÑ" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Кыргыз РеÑпубликаÑÑ‹" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Камбоджа" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Кирибати" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Комор аралдары" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Сент-ÐšÐ¸Ñ‚Ñ Ð¶Ð°Ð½Ð° ÐевиÑ" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Корей Элдик ДемократиÑлык РеÑпубликаÑÑ‹" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "ÐšÐ¾Ñ€ÐµÑ Ð ÐµÑпубликаÑÑ‹" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Кувейт" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Кайманов аралдары" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "КазакÑтан" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "ЛаоÑ" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Ливан" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Санта ЛючиÑ" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Лихтенштейн" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Шри-Ланка" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "ЛибериÑ" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ЛеÑото" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Литва" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ЛюкÑембург" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "ЛатвиÑ" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Ливий Ðраб ЖамахириÑÑÑ‹" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Марокко" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Монако" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "МолдавиÑ" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "МадагаÑкар" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Маршаллов аралдары" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "МакедониÑ" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Мали" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Бирма" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "МонголиÑ" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Макао" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Түндүк Мариан аралдары" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Мартиника" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "МавританиÑ" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "МонтÑеррат" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Мальта" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "МавтритиÑ" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Мальдивалар" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Малави" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "МекÑика" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "МалайзиÑ" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Мозамбик" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "ÐамибиÑ" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Жаңы КаледониÑ" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Ðигер" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Ðорфолк аралы" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "ÐигериÑ" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Ðикарагуа" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Ðидерланддар" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "ÐорвегиÑ" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Ðепал" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Ðауру" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "ÐиуÑ" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Жаңы ЗеландиÑ" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Оман" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Панама" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Перу" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Француз ПолинезиÑÑÑ‹" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Папуа-Жаңы ГвинеÑ" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Филиппиндер" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ПакиÑтан" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Польша" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Сен-Пьер жана Микелон" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "ПиткÑрн" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "ПуÑрто-Рико" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "ПалеÑтиналык автономиÑ" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "ПортугалиÑ" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Палау" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Парагвай" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Катар" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Реюньон" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "РумыниÑ" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "СербиÑ" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "ОруÑÐ¸Ñ Ð¤ÐµÐ´ÐµÑ€Ð°Ñ†Ð¸ÑÑÑ‹" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Руанда" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Сауд ÐравиÑÑÑ‹" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Соломонов Ðралдары" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Сейшель аралдары" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Судан" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ШвециÑ" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Сингапур" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "ÐžÐ»ÑƒÑ Ð•Ð»ÐµÐ½Ð°Ð½Ñ‹Ð½ аралы" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "СловениÑ" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Свальбард жана Ян-Майен" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "СловакиÑ" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Сьерра-Леоне" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Сан-Марино" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Сенегал" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Сомали" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Суринам" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Сан-Томе жана ПринÑили" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Сальвадор" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "СириÑ" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Свазиленд" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Ð¢Ñ‘Ñ€ÐºÑ Ð¶Ð°Ð½Ð° КайкоÑ" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Чад" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Француз Түштүк ТерриториÑлары" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Того" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Таиланд" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ТажикÑтан" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Токелау" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Чыгыш Тимор" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ТүркмөнÑтан" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ТуниÑ" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Тонга" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "ТүркиÑ" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Тринидад жана Тобаго" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Тувалу" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Тайвань" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "ТанзаниÑ" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Украина" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Уганда" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "ÐКШнын тышкы кичи аралдары" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Ðмерика Кошмо Штаттары" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Уругвай" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "ӨзбекÑтан" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Ватикан" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Сент-ВинÑент жана Гренадиндер" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "ВенеÑуÑла" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Британдык Виргин аралдары" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "ÐКШнын Виргин аралдары" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Вьетнам" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Вануату" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Ð£Ð¾Ð»Ð»Ð¸Ñ Ð¶Ð°Ð½Ð° Футуна" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Самоа" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Йемен" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Майотта" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ЮгоÑлавиÑ" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Түштүк-Ðфрика РеÑпубликаÑÑ‹" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "ЗамбиÑ" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Зимбабве" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Дата жана убакыт" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "1 жылдыздуу күндү кошуу" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "1 жылдыздуу айды кошуу" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "1 жылдыздуу жуманы кошуу" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "1 жылдыздуу жылды кошуу" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "1 ачык күндү кошуу" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "1 ачык Ñаатты кошуу" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "1 ачык жуманы кошуу" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Сценарийдин аткарылууÑун баÑаңдатуу" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Убакыттын жүрүшүн баÑаңдатуу" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Убакыттын өтүшүн баÑаңдатуу (кичине)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Сценарийдин аткарылууÑун ылдамдатуу" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Убакыттын жүрүшүн тездетүү" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Убакыттын өтүшүн ылдамдатуу (кичине)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Сценарийдин аткарылууÑун бир азга токтотуу" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Сценарийдин аткарылууÑун улантуу" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Кезектеги убакыт" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Сценарийдин аткарылууÑу үчүн кадимкидей ылдамдыкты коюу" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Убакыттын кадимкидей жүрүшү" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Убакытты токтотуу" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Сценарийдин иштөөÑүн токтотуу" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "1 жылдыздуу күндү кемитүү" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "1 жылдыздуу айды кемитүү" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "1 жылдыздуу жуманы кемитүү" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "1 жылдыздуу жылды кемитүү" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "1 ачык күндү кемитүү" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "1 ачык Ñаатты кемитүү" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "1 ачык жуманы кемитүү" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "КөрÑÓ©Ñ‚Ò¯Ò¯ параметрлери" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Горизонталь боюнча чагылтуу" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Толук Ñкран режими" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "ÐтмоÑфера" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Ðзимуттук тор" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Дүйнө тараптары" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Топ жылдыздардын Ñүрөттөрү" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Топ жылдыздардын чек аралары" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Топ жылдыздардын аттары" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Топ жылдыздардын Ñызыктары" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Жыбыраган калың жылдыздардын фондук Ñүрөттөрү" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Эклиптикалык тор J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Эклиптиканын Ñызыгы" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Экватордун Ñызыгы" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Экватордук тор" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Экватордук тор J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Чаң-түтүн" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Галактикалык тор" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Галактиканын тегиздиги" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Кыртыш" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Горизонттун Ñызыгы" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Меридиандын Ñызыгы" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Жыбыраган калың жылдыздар" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Түнкү режим" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Планеталардын аттары" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Планеталардын орбиталары" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Планеталардын издери" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Жылдыздар" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Жылдыздардын аттары" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Вертикаль боюнча чагылтуу" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Калгандар" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Горизонталдуу панелди авто жашыруу" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Вертикалдуу панелди авто жашыруу" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Чыгуу" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Тандалган объектт жөнүндө маалыматты алмашуу буферине көчүрүү" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Экрандын Ñүрөтүн Ñактоо" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Экватордук жана азимуттук чыгуунун араÑынан которуу" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "ÐÑпап панелин көрÑÓ©Ñ‚Ò¯Ò¯" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Ташуу жана тандоо" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Тандалган объектти борборлотуу" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Тандалган планетаны үйдүк кылуу" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Объектти көзөмөлдөө" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Тандалган объектти чоңойнтуу" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "ÐлыÑтатуу" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Бурч ченөөч" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "КомпаÑ" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Экзопланеталарды көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "\"Экзопланеталар\" плагинин ыраÑтоо терезеÑи" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Плагиндин конфигурациÑÑÑ‹" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "ОкулÑÑ€ көрүнүшү" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "ОкулÑрлардын контекÑттик менюÑу" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "СенÑордун кадры" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad'дын көрүнүп турган мейкини" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "\"ПульÑарлар\" плагинин ыраÑтоо терезеÑи" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "\"Квазарлар\" плагинин ыраÑтоо терезеÑи" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "\"Жолдоштор\" плагинин ыраÑтоо терезеÑи" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Жердин жаÑалма жолдоштору" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Жолдоштордун аттары" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "\"Тарыхый Ñуперновалар\" плагинин ыраÑтоо терезеÑи" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "КөрÑөтүлгөн координаттар боюнча телеÑкопту каратуу" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Сценарийлер" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "ЫраÑтоо терезеÑи" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Дата/убакыт терезеÑи" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Жардам терезеÑи" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Жайгашкан жеринин терезеÑи" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Издөө терезеÑи" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "ÐÑман жана байкоонун ыраÑтоо терезеÑи" @@ -3419,7 +3595,7 @@ msgstr "Жаңыртуу" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Жайгашкан жери" @@ -3435,10 +3611,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Өчүрүү" @@ -3447,7 +3623,7 @@ msgstr "Тизмеге кошуу" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Кеңдиги:" @@ -3460,12 +3636,12 @@ "колдонуп, миÑалы: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Узундугу:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Бийиктиги:" @@ -3489,363 +3665,407 @@ msgid "Planet:" msgstr "ПланетаÑÑ‹:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Объектти издөө" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Объект же турган жерди табуу" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "йота" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "альфа" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "бета" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "гамма" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "дельта" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "ÑпÑилон" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "дзета" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "Ñта" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "тета" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "каппа" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "лÑмбда" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "мю" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ню" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "кÑи" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "омикрон" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "пи" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ро" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "Ñигма" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "тау" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ипÑилон" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "фи" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "хи" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "пÑи" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "омега" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Байер белгилөөлөрү үчүн грек тамгалары" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Объект" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "Тик чыгуу/Эңкейүү (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Турган жер" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "англиÑче аттар" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Тизмеден издөө..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Тизмелер" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "SIMBAD онлайн аÑтрономиÑлык маалымат базаÑÑ‹" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Издөөнү SIMBAD менен кеңейтүү" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Сервер:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Параметрлер" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "англиÑче аттар" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Тизмеден издөө..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Тизмелер" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Параметрлер" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Көрүнүш" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "ÐÑман" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Белгилөөлөр" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Ландшафт" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Жылдыздар жөнүндөгү билим" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Ðттар жана маркерлер" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Планеталар" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Планеталар жана жолдоштор" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Планеталарды көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Планеталардын белгилерин көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Планеталардын орбиталарын көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Жарыктын ылдамдыгын моделдөө" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Ðйды маÑштабдоо" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "ÐтмоÑфераны көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Жарыктык булганыш:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "баÑым, температура, ÑкÑтинкциÑнын коÑфициенти" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "РефракциÑнын/ÑкÑтинкциÑнын ыраÑтоолору..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "ÐбÑолюттук чоңойтуу:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Салыштырмалуу чоңойтуу:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Жылтылдоо:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Сезгичтиктин динамикалык адаптациÑÑÑ‹" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Метеорлор" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Топ жылдыздар" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Сызыктарды көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Ðттарды көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Чек араларды көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Сүрөттөрдү көрÑÓ©Ñ‚Ò¯Ò¯" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Сүрөттөрдүн ачык Ñ‚Ò¯Ñтүүлүгү:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ÐÑман ÑфераÑÑ‹" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Экватордун Ñызыгын көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Меридиандын Ñызыгын көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Горизонттун Ñызыгын көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Эклиптиканын Ñызыгын көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Галактика тегиздигинин Ñызыгын көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "ПроекциÑ" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Ландшафттарды кошуу/өчүрүү..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Кыртышты көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Чаң-түтүндү көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Туура келүүчү планетаны жана турган жерди колдонуу" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Бул ландшафтты жарыÑÐ»Ð°Ð½Ð±Ð°Ñ Ñ‚Ò¯Ñ€Ò¯Ð½Ð´Ó© колдонуу" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Бул аÑман маданиÑтын жарыÑÐ»Ð°Ð½Ð±Ð°Ñ Ñ‚Ò¯Ñ€Ò¯Ð½Ð´Ó© колдонуу" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Көрүнүүчү" @@ -3898,7 +4118,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Stellarium'ду жүргүзүү учурундагы караштын багыты" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Тандалган объект жөнүндөгү маалымат" @@ -3914,11 +4134,8 @@ msgid "Display no information" msgstr "Маалыматты көрÑөтпөө" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Өчүк" @@ -4062,7 +4279,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Ðлгачкы дата жана убакыт" @@ -4074,182 +4291,192 @@ msgid "Other:" msgstr "Башка:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "кезектегини колдонуу" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "СиÑтемалык Ñаат датаÑÑ‹ жана убактыÑында Stellarium'ду жүргүзүү" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "СиÑтемалык дата жана убакыт" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "СиÑтемалык дата:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Планетарийдин параметрлери" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Сфералык күзгү бурмаланышы" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "ДиÑк ÑÑ‹Ñктуу терезе" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Бирөөнү клик кылганда башка топ жылдыздарды жашыруу" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Жеке топ жылдызды тандоо" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Ðттарды горизонт боюнча тегиздөө" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Объекттердин горизонталдуу ÑÐ¼ÐµÑ Ð°Ñ‚Ñ‚Ð°Ñ€Ñ‹" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Жыбыраган калың жылдыз фондорун көрÑөтүүгө которуу." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Жыбыраган калың жылдыздын фон баÑкычын көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Вертикалдуу жана горизонталдуу оодарууга которгон баÑкычтар." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Оодаруу баÑкычтарын көрÑÓ©Ñ‚Ò¯Ò¯" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Ðвтоматтык алыÑтатуу көрүнүштүн баштапкы багытына кайттырат" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Экран Ñүрөттөрү" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Экран Ñүрөтүнүн директориÑÑÑ‹" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Өңдөрдү теÑкерилетүү" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Жылдыз каталогунун жаңыртуулары" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Жүктөөнү башташ үчүн бул жерди баÑыңыз" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Ðндан бетер көбүрөөк жылдыздарды көрүш үчүн ушу файлды жүктөп алыңыз" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Жүктөөнү кайта баштоо" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Кайталоо" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Жүктөлүүнүн токтолушу. Сиз дайыма кечирÑÑк кайта жүргүзө алаÑыз" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Жокко чыгаруу" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Сценарий жүргүзүлгөндө терезени жабуу" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Тандалган Ñценарийди жүргүзүү" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Жүргүзүлгөн Ñценарийди токтотуу" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Башында жүктөө" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "ыраÑтоо" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Башкы" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Маалымат" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "ÐавигациÑ" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "ÐÑпаптар" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Плагиндер" @@ -4419,176 +4646,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "ОкулÑрдар" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "ОкулÑÑ€ көрүнүшүнө которуу алдында объектти тандаңыз." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Мурунку окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Кийинки окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "&ОкулÑрды тандоо" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "&Ðйкашманы которуу" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "&ОкулÑрдарды ыраÑтоо" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "&CCD которуу" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "&Telrad которуу" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Ðбалкы CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Кийинки CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "CCD &тандоо" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "CCD &айлантуу" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Ðйланууну түшүрүү" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "ОкулÑÑ€ #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "ОкулÑÑ€ #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "ОкулÑÑ€ ФÐ: %1 мм" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "ОкулÑÑ€ кКТМ: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "ТелеÑкоп #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "ТелеÑкоп #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Чоңоюу: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "КТМ: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Чендер: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "СенÑор #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "СенÑор #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&ТелеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Ðбалкы телеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Кийинки телеÑкоп" @@ -4660,64 +4887,69 @@ msgid "Apparent field of view of the ocular" msgstr "ОкулÑрдын көрүнүүчү көрүнүп турган мейкин" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Ðйлануу: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Чоңойтуу бул дүрбү менен камÑыз кылынган" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "ОкулÑрлар плагини" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "ВерÑиÑ" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "БаÑндоо" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4725,7 +4957,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4736,14 +4968,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4752,306 +4984,375 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" "Эгер Ñиз кандайдыр бир Ñуроо тапÑаңыз, мага билдирип коюңуз. Жыргаңыз!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "ЫÑык клавишалар" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[клавиша аныкталган жок]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Калкуучу Ð½Ð°Ð²Ð¸Ð³Ð°Ñ†Ð¸Ñ Ð¼ÐµÐ½ÑŽÑун ачат." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Объект тандалганда гана колдонуу" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Тегеректен Ñүрөттү маÑштабтоо" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Клавиштик айкалыштары" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "ОкулÑÑ€ көрүнүшүнө которуу:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Калкыган Ð½Ð°Ð²Ð¸Ð³Ð°Ñ†Ð¸Ñ Ð¼ÐµÐ½ÑŽÑун ачуу:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "ИнтерфейÑ" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Экрандык башкаруу панели" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Жалпы" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "ОкулÑрлар" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Кошуу" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "ÐÑ‚Ñ‹:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "кКТМ:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Ð¤Ð¾ÐºÑƒÑ Ð°Ñ€Ð°Ð»Ñ‹Ð³Ñ‹:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Мейкин диафрагмаÑÑ‹:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Дүрбү" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "СенÑорлор" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "X чечим (пикÑельдер):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Y чечим (пикÑельдер):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Чип туураÑÑ‹ (мм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Чип бийиктиги (мм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "ПикÑель туураÑÑ‹ (микрон):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "ПикÑель бийиктиги (микрон):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "ТелеÑкоптор" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Диаметр:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Горизонталдуу оодарыш" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Вертикалдуу оодарыш" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Жолдоштор" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Каталог" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Эл аралык белгилөө" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "ÐлыÑтык (км): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "ÐлыÑтык ылдамдыгы (Ñ/км): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Бийиктик (км): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Субпукнт (Кең./Узун.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME координаттары (км): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME ылдамдыгы (Ñ/км): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Жолдош жана байкоочу күндүн жарыгында." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Жолдош көрүнүп турат." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Жолдош көлөкөдө." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Жолдош көрүнгөн жок." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 МГц (%2%3 кГц)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Stellarium жолдоштор плагини" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Колдонуучуларга өзгөчө маалымат" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5059,25 +5360,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "TLE маалыматынын жаңыртуулары" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5085,17 +5386,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Жаңы жолдошторду кошумчалоо" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5103,41 +5404,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Техникалык өзгөчө маалыматтар" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "%1Ушу документ%2ти детальдар үчүн карап көрүңүз." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Шилтемелер" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5145,150 +5448,173 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Эгер Ñизде Ñуроо бар болÑо, Ñиз %1бул жерден жооп ала алаÑыз%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Баг маалымдоону %1бул жер%2ден кылÑа болот." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Интернет жаңыртуулары колдонулбайт" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Ðзыр жаңыртылуу..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Кийинки жаңыртуу: %1 мүнөт" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Кийинки жаңыртуу: %1 мүнөт" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#, qt-format +msgid "Next update: %1 hours" +msgstr "Кийинки жаңыртуу: %1 Ñаат" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 +msgid "Update error" +msgstr "Жаңыртуу катаÑÑ‹" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Next update: %1 hours" -msgstr "Кийинки жаңыртуу: %1 Ñаат" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 +msgid "[new source]" +msgstr "[жаңы булак]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 #: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 msgid "Update now" msgstr "Ðзыр жаңыртуу" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 msgid "Update from files" msgstr "Файлдардан жаңыртуу" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 -msgid "Update error" -msgstr "Жаңыртуу катаÑÑ‹" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 -#, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "%1/%2 жолдош(тор) жаңыртылды; %3 жетишпейт" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 -msgid "[new source]" -msgstr "[жаңы булак]" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[орбитаны ÑÑептөө катаÑÑ‹]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[баардык жаңы кошулгандар]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[баардык көрÑөтүлбөгөндөр]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[баардык көрÑөтүлгөндөр]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[баары]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "TLE жаңыртуу файлын тандоо" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Маалымат жүктөө..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5296,190 +5622,210 @@ "Жаңыртуу булактарынан Stellarium жолдош маалыматын жүктөп жатат. Күтө " "туруңуз..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "TLE булак файл(дар)ын тандоо..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Маалымат иштетүү..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" "Маалымат жүктөп алууга мүмкүн ÑмеÑ. КечирÑÑк дагы аракет кылып көрүңүз." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Каталог номери: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Жолдоштор ыраÑтооÑу" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "TLE тизмеÑин интернет булактардан жаңыртуу" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Интернет булактардан жаңыртуу" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Соңку жаңыртуу:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Жаңыртуу жыштыгы (Ñаат):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Ðттар" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Ðттардын шрифт өлчөмү (пикÑель):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Орбита Ñызыктары" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Сегменттер Ñаны:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Жеке Ñегменттин Ñекундадагы Ñозулгандыгы" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Сегмент узундугу (Ñ):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Жоюлуш аралыгы:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "ЖарыÑÐ»Ð°Ð½Ð±Ð°Ñ Ñ‹Ñ€Ð°Ñтоолорду калыбына келтирүү" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "ЫраÑтоолорду жарыÑланбаÑча Ñактоо" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "ЫраÑтоолор" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Көбүрөөк жолдоштордон кошуу" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Тандалган жолдошторду алуу" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Өзгөрүүлөрдү Ñактоо" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Каталог номери:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Тандалган жолдош(тор)ду көрÑÓ©Ñ‚Ò¯Ò¯" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "КөрÑөтүлүп турат" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Тандалган жолдош(тор) үчүн орбита Ñызык(тар)ын көрÑÓ©Ñ‚Ò¯Ò¯" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Орбита" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Каталог номери:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "БаÑндама:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Топтор:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Үтүр менен бөлүнгөн топтор тизмеÑи" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE маалыматы:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORAD орбита маалыматынын Ñки жолдуу Ñлементи" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Тандалган жолдошторду алуу" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Көбүрөөк жолдоштордон кошуу" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Өзгөрүүлөрдү Ñактоо" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Жаңы булак кошуу" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Тандалган булакты алуу" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Булактар" @@ -5515,22 +5861,22 @@ msgid "Discard" msgstr "Түшүрүү" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "ТелеÑкопту башкаруу" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "#%1 телеÑкопту тандалган объектке которуу" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "#%1 телеÑкопун кезектеги Ñкрандын борборундагы орунга которуу" @@ -5917,62 +6263,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Үчтүн айы" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Бирдин айы" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Жалган куран" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Чын куран" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Бугу" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Кулжа" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Теке" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Баш оона" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "ÐÑк оона" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Тогуздун айы" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Жетинин айы" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Бештин айы" @@ -6126,7 +6472,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Убакыт көрÑÓ©Ñ‚Ò¯Ò¯ форматы" @@ -6144,7 +6490,7 @@ msgstr "24-Ñаат форматы" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Дата көрÑÓ©Ñ‚Ò¯Ò¯ форматы" @@ -6160,154 +6506,154 @@ msgid "mm-dd-yyyy" msgstr "аа-кк-жжжж" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Колдонуучунун текÑÑ‚ интерфейÑи" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Күн ÑиÑтемаÑынын телоÑу" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Кезектеги дата/убакыт" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Сааттык алкагын белгилөө" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Ðлгачкы дата/убакыт преÑети" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "ÑиÑтема" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "преÑет" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "ааккжжжж" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ккаажжжж" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "жжжжаакк" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12Ñ" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24Ñ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Тил" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Жылдыздарды көрÑÓ©Ñ‚Ò¯Ò¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Өңдөр" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Жыбыраган калың жылдыз аттары" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Галактика тегиздигинин Ñызыгы" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Эффекттер" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Кол чоңойтуу" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Чоңдук көбөйтүүчүÑÒ¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Саманчы жолунун күчөгөндүгү:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Жыбыраган калың жылдыздардын аттарынын жыштыгы:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Чоңойтуунун улангандыгы:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "КурÑор күтүү убагы:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Жайгашкан жерин ландшафттан коюу" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Локалдык Ñценарийди аткартуу" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Сценарийди токтотуу" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD Ñценарийи" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Башкаруу" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "ЖарыÑÐ»Ð°Ð½Ð±Ð°Ñ Ñ‹Ñ€Ð°Ñтоону жүктөө" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Кезектеги ыраÑтоону Ñактоо" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Өчүрүү" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[TUI түйүнү ÑмеÑ]" @@ -6340,22 +6686,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "MPC'ден Ñуроо %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6524,36 +6870,43 @@ msgid "Solar System" msgstr "Күн ÑиÑтемаÑÑ‹" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Тарыхый Ñупернова" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "Ñупернова" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Супернова түрү: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Тарыхый Ñупернова плагини" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Жарык ийрилери" @@ -6571,7 +6924,7 @@ msgstr "Ðлкыштар" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6585,14 +6938,14 @@ msgstr "ТеориÑлык жана ÑкÑперименталдык физика үчүн инÑтитут" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "ОруÑиÑда" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6600,8 +6953,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Кийинки жаңыртуу: %1 күн" @@ -6619,29 +6973,106 @@ msgstr "Тарыхый Ñупернова плагининин ыраÑтооÑу" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Каталогту интернеттен жаңыртуу" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Интернет булактардан жаңыртуу" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Жаңыртуу жыштыгы (күн):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[кийинки жаңыртуу информациÑÑÑ‹]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Квазарлар" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6657,51 +7088,61 @@ msgid "Z (redshift): %1" msgstr "Z (кызыл жылыш): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Квазарлар плагини" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Верон ж. б. 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Квазарлар жаңыртылды" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Квазарлар ыраÑтооÑу" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Квазарлар плагининин ыраÑтооÑу" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Квазарлар үчүн көрÑÓ©Ñ‚Ò¯Ò¯ режими" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Квазарлар бөлүштүрүүÑүнүн көрÑÓ©Ñ‚Ò¯Ò¯Ñүн колдонуу" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "ПульÑарлар" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6821,11 +7262,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "ПульÑарлар плагини" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6833,137 +7274,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Өзгөчө маалымат" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Ðлкыш" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Владимир Самодуров" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "РадиоаÑтрономиÑлык Пущин обÑерваториÑÑÑ‹" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "РадиоаÑтрономиÑлык ÐанÑе обÑерваториÑÑÑ‹" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "ФранциÑда" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "ПульÑарлар жаңыртылды" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "ПульÑарлар ыраÑтооÑу" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "ПульÑарлар плагининин ыраÑтооÑу" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "ПульÑарлар үчүн көрÑÓ©Ñ‚Ò¯Ò¯ режими" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Экзопланеталар" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Металлдуулук" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "МаÑÑа" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "РадиуÑ" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Эффективдүү температура: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Экзопланета" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "күндөр" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Юп." -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "а. б." -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "ЭкÑцентриÑитет" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Эңкейиш" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Бурч аралыгы" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Экзопланеталар плагини" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6971,7 +7416,7 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -6980,42 +7425,131 @@ "Эгер Ñиз плагин жөнүндө толук маалымат окуңуз келÑе, анын тарыхын жана " "каталог форматын Ñиз %1бул жерден алÑаңыз болот%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Экзопланеталар жаңыртылды" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Экзопланеталар ыраÑтооÑу" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Экзопланеталар плагининин ыраÑтооÑу" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Экзопланеталар маалыматын интернеттен жаңыртуу" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7031,185 +7565,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7469,6 +7997,9 @@ #~ msgid "Object's size" #~ msgstr "Объект чени" +#~ msgid "Display mode for pulsars" +#~ msgstr "ПульÑарлар үчүн көрÑÓ©Ñ‚Ò¯Ò¯ режими" + #~ msgid "Other" #~ msgstr "Башка" @@ -7517,14 +8048,39 @@ #~ msgid "Additional info (Extra 3)" #~ msgstr "Кошумча Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ (Сап 3)" +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "%1/%2 жолдош(тор) жаңыртылды; %3 жетишпейт" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "TLE тизмеÑин интернет булактардан жаңыртуу" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Үтүр менен бөлүнгөн топтор тизмеÑи" + +#~ msgid "TLE data:" +#~ msgstr "TLE маалыматы:" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORAD орбита маалыматынын Ñки жолдуу Ñлементи" + #~ msgid "Form" #~ msgstr "Форма" +#~ msgid "Display mode for quasars" +#~ msgstr "Квазарлар үчүн көрÑÓ©Ñ‚Ò¯Ò¯ режими" + #~ msgid "Plugin Key Bindings" #~ msgstr "Плагиндин клавиштик айкалыштары" +#~ msgid "Nebulas" +#~ msgstr "Жыбыраган калың жылдыздар" + #~ msgid "Crosshairs" #~ msgstr "Ðйкашма" #~ msgid "F7" #~ msgstr "F7" + +#~ msgid "Nebulas background images" +#~ msgstr "Жыбыраган калың жылдыздардын фондук Ñүрөттөрү" diff -Nru stellarium-0.12.1/po/stellarium/la.po stellarium-0.12.4/po/stellarium/la.po --- stellarium-0.12.1/po/stellarium/la.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/la.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-08-23 12:07+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:16+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Eclipticae" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Auctor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Ignotum" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Erratum" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Auctores" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Conferre" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Auctore" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licentia" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Fenestrae" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sol" @@ -1209,12 +1320,12 @@ msgstr "Terra" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Luna" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1312,7 +1423,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturnus" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Coreana" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maoriana" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Occidentalis" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Oceanus" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiacus" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afgania" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa Americana" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Germania" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algeria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Francia" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Britannia" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Mundus graminis" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lingua Laotiana" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Lusitania" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelauana" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvaluana" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosphaera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Nebula" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulae" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stellas" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Desistere" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Delere" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Optiones" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Optiones" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Videre" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Nullus" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Abrogare" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigatio" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Instrumenta" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Extrae" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versio" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Generalis" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Addere" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nomen:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Accommodanda" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" -msgstr "Descriptio:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" +msgstr "Descriptio:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Lingua" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administratio" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7368,3 +7896,6 @@ #~ msgid "Other" #~ msgstr "Altera" + +#~ msgid "Nebulas" +#~ msgstr "Nebulae" diff -Nru stellarium-0.12.1/po/stellarium/lb.po stellarium-0.12.4/po/stellarium/lb.po --- stellarium-0.12.1/po/stellarium/lb.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/lb.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:42+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Luxembourgish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:16+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptik" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/lo.po stellarium-0.12.4/po/stellarium/lo.po --- stellarium-0.12.1/po/stellarium/lo.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/lo.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-12-26 14:33+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Lao \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:16+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:50+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ບà»à»ˆàº®àº¹à»‰" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "ຜິດພາດ" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "ທີ່ຕິດຕà»à»ˆà»ˆ" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ລິຂະສິດ" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "à»àº­àº‡à»‚ດຣາ" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "ສະຫະລັດອາຣັບ ເອມິເຣດ" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ອາຟàºàº²àº™àº´àºªàº–ານ" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "à»àº­àº‡àºàº§àº´àº¥àº²" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "ອານບາເນàº" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ອາເມເນàº" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "ເນເທີà»àº¥àº™ à»àº­àº™àº•àºµà»€àº¥àºª" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "à»àº­àº‡à»‚àºàº¥àº²" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "à»àº­àº™àº•àº²àº•àº´àºàº²" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "ອາເຈນຕິນາ" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "ອາເມລິàºàº² ຊາມົວ" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ອອສເຕຣàº" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ອອສເຕຣເລàº" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "ອາຣູບາ" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "ອາເຊີໄບຈັນ" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "ບາເບໂດສ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "ບັງàºàº²àº¥àº²à»€àº”ສ" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "ເບລຢຽມ" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "ເບີàºàºµàº™àº²àºŸàº²à»‚ຊ" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "ບັງàºàº²à»€àº£àº" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "ບາເຣນ" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "ບູຣັນດີ" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "ເບນີນ" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "ເບີມິວດາ" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "ບຣູໄນ" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "ໂບລິເວàº" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "ບຣາຊີວ" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "ບາຮາມາສ" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "ບູຕານ" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "ເàºàº²àº°àºšàº¹à»€àº§àº”" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "ບອສວານາ" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "ເບລາຣຸສ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "ເບລີສ" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "àºàº²àº™àº²àº”າ" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "ສາທາລະນະລັດອາຟຣິàºàº²àºàº²àº‡" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "ສະວີດເຊີà»àº¥àº™" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "à»àº¹à»ˆà»€àºàº²àº°àº„ຸàº" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "ຊີລີ" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "ຄາມາຣູນ" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "ຈີນ" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "ໂຄລີມເບàº" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "ຄອສຕາຣິàºàº²" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "ຄິວບາ" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "ເຄບເວີດ" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "ເàºàº²àº°àº„ີສມາສ" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "ໄຊປັຣສ" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ສາທາລະນະລັດເຊັàº" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "ເຢàºàº¥àº°àº¡àº±àº™" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "ເຈບູຕິ" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "ເດັນມາàº" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "ໂດມິນິàºàº²" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "ສາທາລະນະລັດ ໂດມີນີàºàº²" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "à»àº­àº¥àºˆàºµà»€àº¥àº" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "ເອຄົວດà»" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "ເອສໂຕເນàº" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "ອີຢິບ" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "ຊາຮາຣາຕາເວັນຕົàº" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "ເອຣິດເຣàº" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "ສະເປນ" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "ເອທິໂອເປàº" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ຟິນà»àº¥àº™" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "ຟີຈິ" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "à»àº¹à»ˆà»€àºàº²àº°àºŸàº²à»‚ຣ" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "àºàº¥àº±à»ˆàº‡à»€àºªàº”" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "àºàº²àºšàº­àº™" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "ລາດສະອານາຈັàºàº­àº±àº‡àºàº´àº”" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "àºàº£àºµàº™àº²àº”າ" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ຈà»à»€àºˆàº" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "àºàº¥àº±à»ˆàº‡àºàº´àº§àº­àº²àº™àº²" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "ຮານາ" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "àºàºµàºšàº£àº­àº™àº•àº²" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "àºàº£àºµàº™à»àº¥àº™" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "àºàº³à»€àºšàº" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "àºàº´à»€àº™àº" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "àºàº»àº§à»€àº”ລູບ" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "ເອຄົວໂຕຣຽວ ຄິວເນàº" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "ເàºàº£àº±àº" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "àºàº»àº§à»€àº•àº¡àº²àº¥àº²" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "àºàº§àº¡" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "àºàº§àºàº­àº²àº™àº²" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "ຮົງàºàº»àº‡" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ຮອນດູຣັສ" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "ໂຄຣເອເຊàº" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "ໄຮຕິ" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "ຮົງàºàº²àº¥àºµ" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "ອິນໂດເນເຊàº" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ໄອà»àº¥àº™" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "ອີສຣາເອລ" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ອິນເດàº" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "ມົນທົນມະຫາສະà»àº¸àº”ອິນເດàºàº­àº±àº‡àºàº´àº”" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "ອີຣັàº" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ໄອສà»àº¥àº™" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ອິຕາລີ" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "ຈາໄມàºàº²" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "ຈà»à»àº”ນ" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "àºàºµà»ˆàº›àº¸à»ˆàº™" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "ເຄນຢາ" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "àºàºµàºàº´àºªàº–ານ" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "àºàº³àº›àº¹à»€àºˆàº" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "ຄິຣິບາດ" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "ໂຄໂມໂຣສ" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "ຄູເວດ" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "à»àº¹à»ˆà»€àºàº²àº°à»€àº„ເມນ" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "àºàº²àºŠàº±àºàºªàº–ານ" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "ເລບານອນ" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "ເຊນ ລູເຊàº" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "à»àº¥àºà»€àº—ັນສຕີນ" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "ສີລັງàºàº²" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "ລີເບີເຣàº" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ເລໂຊໂທ" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "ລີທົວເນàº" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ລຸàºàºŠàº³àºšàº§àº" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "ລັດເວàº" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "ລີບຢັນອາຣັບ ຈາມາຮິຣາàºàº²" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "ໂມລັອàºà»‚àº" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "ໂມໂນໂຄ" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "ມາດາàºàº²àºªàºàº²" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "à»àº¹à»ˆà»€àºàº²àº°àº¡àº²à»àºŠàº§" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "ມາລີ" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "ພະມ້າ" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "ມົງໂàºàº™" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "à»àº¹à»ˆà»€àºàº²àº°àº¡àº²à»€àº£àºàº™àº²à»€à»œàº·àº­" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "ມາຕີນິàº" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "ມà»àº£àº´à»€àº•à»€àº™àº" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "ມອນເຊີຣັດ" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "ມອນຕາ" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "ມà»àº£àº´àºŠàº½àº”" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "ມາວດີບ" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "ມາລາວີ" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "à»àº¡àº±àºàºŠàº´à»‚àº" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "ມາເລເຊàº" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "ໂມຊຳບິàº" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "ນາມີເບàº" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "ນິວຄາເລໂດເນàº" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "ໄນເàºàºµ" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "à»àº¹à»ˆà»€àºàº²àº°àº™à»à»‚ຟàº" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "ໄນຈີເຣàº" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "ນີàºàº²àº£àº²àºàº§àº" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "ເນເທີà»àº¥àº™" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "ນà»à»€àº§" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "ເນປານ" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "ນາອູຣູ" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "ນີອູເອ" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "ນິວຊີà»àº¥àº™" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "ໂອມານ" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "ປານາມາ" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "ເປຣູ" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "àºàº¥àº±à»ˆàº‡à»‚ປລີເນເຊàº" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "ປາປົວນິວàºàº´à»€àº™àº" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "ຟີລິບປິນ" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ປາàºàº´àºªàº–ານ" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "ໂປà»àº¥àº™" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "ພິດà»àº„ນ" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "ເປີໂຕຣິໂàº" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "ໂປຕຸເàºàºª" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "ປາເລົາ" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "ປາຣາàºàº§àº" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "àºàº²àº•àº²" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "ໂຣມາເນàº" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "ເຊີເບàº" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "ສະຫະພັນລັດເຊàº" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "ຣະວັນດາ" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "ຊາອຸດິອາຣາເບàº" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "à»àº¹à»ˆà»€àºàº²àº° ໂສໂລມອນ" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "ເຊເຊລ" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "ສຸດານ" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ສະວີເດັນ" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "ສິງàºàº°à»‚ປ" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "ສະໂລເວເນàº" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "ສະໂລວາເàºàº" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "ເຊàºàº£àº²àº¥àºµàº­àº­àº™" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "ຊັນມາຣິໂນ" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "ເຊເນàºàº±àº¥" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "ໂສມາເລàº" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "ສູລິມາເມ" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "à»àº­àº§àºªàº°àº§àº²àº”à»" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "ສາທາລະນະລັດ ອາຣັບຊີເຣàº" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "ສະວາຊີà»àº¥àº™" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "ຊາດ" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "ດິນà»àº”ນທາງໃຕ້ຂອງàºàº¥àº±à»ˆàº‡à»€àºªàº”" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "ໂຕໂàº" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "ໄທ" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ທານິàºàº´àºªàº–ານ" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "ໂຕເàºà»€àº¥àº»àº²" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ເຕີàºà»€àº¡àº™àº´àºªàº–ານ" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ຕູນິເຊàº" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "ຕອງàºàº²" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "ຕຸຣະàºàºµ" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "ຕູວາລູ" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "ຢູເຄຣນ" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "ອູàºàº²àº™àº”າ" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "à»àº¹à»ˆà»€àºàº²àº°àº¥àº­àºšàº™àº­àºàºªàº°àº«àº°àº¥àº±àº”ອາເມລິàºàº²" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "ສະຫະລັດ ອາເມລິàºàº²" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "ອຸລາàºàº§àº" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "ອຸເບàºàº´àºªàº°àº–ານ" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "ເວເນຊິເອລາ" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "ຫວຽດນາມ" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "ວານູເອຕູ" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "ຊາມົວ" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "ເຢເມນ" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "ມາຢອດ" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "ອາຟຣິàºàº²à»ƒàº•à»‰" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "ຊຳເບàº" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "ຊິມບັບເວ" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/lt.po stellarium-0.12.4/po/stellarium/lt.po --- stellarium-0.12.1/po/stellarium/lt.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/lt.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,76 +7,76 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2011-11-10 13:25+0000\n" -"Last-Translator: Vaidotas \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-27 21:37+0000\n" +"Last-Translator: Ieva \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:16+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Dienovidinis" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Pusiaujas" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizontas" #: src/core/modules/GridLinesMgr.cpp:580 msgid "Galactic Plane" -msgstr "" +msgstr "Galaktikos plokÅ¡tuma" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autorius: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Vieta: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipas: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" -msgstr "" +msgstr "RyÅ¡kis %1 (po ekstincijos: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "RyÅ¡kis: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Dydis: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaktika" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Atviras spieÄius" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kamuolinis spieÄius" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Ūkas" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "PlanetiÅ¡kasis Å«kas" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "Tamsusis Å«kas" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "SpieÄius susietas su Å«ku" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Nežinomas" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "NeapraÅ¡ytas tipas" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absoliutinis ryÅ¡kis: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" -msgstr "" +msgstr "Nuotolis: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Nuotolis: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Regimasis skersmuo: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,10 +204,10 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" -msgstr "" +msgstr "žvaigždÄ—" #: src/core/modules/StarWrapper.cpp:57 #, qt-format @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "kintamoji žvaigždÄ—" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" +msgstr "dvinarÄ— žvaigždÄ—" + +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "SpektrinÄ— klasÄ—: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Nuotolis: %1 Å¡viesmeÄiai" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaksas: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "ErdvÄ—laivis" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -656,52 +748,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Nurodykite katalogÄ… ekrano nuotraukoms" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Pradinis apžvalgos laukas: %1 %2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "PradinÄ— Az/Alt vaizdo kryptis: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autoriai" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Susisiekite" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autorius" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licencija" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Vykdomas scenarijus: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Vykdomas scenarijus: [nÄ—ra]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -709,16 +802,16 @@ "Naujų žvaigždžių katalogų siuntimas baigtas.\n" "NorÄ—dami juos pamatyti, paleiskite Stellarium iÅ¡ naujo." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Parsiųsti katalogÄ… %1 iÅ¡ %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -727,7 +820,7 @@ "SiunÄiama %1...\n" "(JÅ«s galite uždaryti šį langÄ….)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -738,7 +831,7 @@ "Žvaigždžių skaiÄius: %2 milijonai\n" "RyÅ¡kio intervalas: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -747,11 +840,11 @@ "Klaida siunÄiant %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Tikrinamas failų vientisumas..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -761,115 +854,123 @@ "Failas sugadintas." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -904,7 +1005,7 @@ #: src/gui/HelpDialog.cpp:168 msgid "CTRL + Up/Down" -msgstr "Vald + aukÅ¡tyn/žemyn" +msgstr "Ctrl + aukÅ¡tyn/žemyn" #: src/gui/HelpDialog.cpp:171 msgid "Select object" @@ -924,7 +1025,7 @@ #: src/gui/HelpDialog.cpp:183 msgid "CTRL + Left click" -msgstr "Vald + kairiojo pelÄ—s klaviÅ¡o spustelÄ—jimas" +msgstr "Ctrl + kairiojo pelÄ—s klaviÅ¡o spustelÄ—jimas" #: src/gui/HelpDialog.cpp:189 #, qt-format @@ -932,6 +1033,8 @@ "Below are listed only the actions with assigned keys. Further actions may be " "available via the \"%1\" button." msgstr "" +"Žemiau iÅ¡vardinti tik veiksmai su priskirtais sparÄiaisiais klaviÅ¡ais. Kiti " +"veiksmai gali bÅ«ti pasiekiami klaviÅ¡u \"%1\"." #: src/gui/HelpDialog.cpp:245 msgid "" @@ -1037,49 +1140,53 @@ msgid "OSX Developer: %1" msgstr "OSX programuotojas: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Scenarijaus pulto langas" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Langai" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Kosmosas" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Be apraÅ¡ymo" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "NÄ—ra krintanÄių žvaigždžių" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normalus dažnis" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" -msgstr "Standartinis Perseido" +msgstr "Standartinis Perseidų" + +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" -msgstr "Nepaprastas Leonido" +msgstr "Nepaprastas Leonidų" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" -msgstr "Didžiausias dažnis (1966 Leonido)" +msgstr "Didžiausias dažnis (1966 m. Leonidų)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nauja vietovÄ—" @@ -1183,58 +1290,64 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" #: src/gui/ShortcutsDialog.cpp:499 msgid "Action" -msgstr "" +msgstr "Veiksmas" #: src/gui/ShortcutsDialog.cpp:500 src/ui_shortcutsDialog.h:198 msgid "Primary shortcut" -msgstr "" +msgstr "PagrindinÄ— kombinacija" #: src/gui/ShortcutsDialog.cpp:501 src/ui_shortcutsDialog.h:199 msgid "Alternative shortcut" -msgstr "" +msgstr "Alternatyvi kombinacija" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Å i sistema nepalaiko OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "SaulÄ—" @@ -1251,12 +1364,12 @@ msgstr "ŽemÄ—" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "MÄ—nulis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marsas" @@ -1290,7 +1403,7 @@ #: src/translations.h:46 msgid "Io" -msgstr "Ija" +msgstr "Ijo" #: src/translations.h:47 msgid "Europa" @@ -1354,7 +1467,7 @@ msgstr "MetidÄ—" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturnas" @@ -1609,31 +1722,31 @@ #. TRANSLATORS: Type of object #: src/translations.h:153 msgid "planet" -msgstr "" +msgstr "planeta" #. TRANSLATORS: Type of object #: src/translations.h:155 msgid "comet" -msgstr "" +msgstr "kometa" #. TRANSLATORS: Type of object #: src/translations.h:157 msgid "asteroid" -msgstr "" +msgstr "asteroidas" #. TRANSLATORS: Type of object #: src/translations.h:159 msgid "moon" -msgstr "" +msgstr "palydovas" #. TRANSLATORS: Type of object #: src/translations.h:161 msgid "plutoid" -msgstr "" +msgstr "plutoidas" #: src/translations.h:165 msgid "Arabic" -msgstr "" +msgstr "Arabų" #: src/translations.h:166 msgid "Aztec" @@ -1641,250 +1754,279 @@ #: src/translations.h:167 msgid "Chinese" -msgstr "kinieÄių" +msgstr "Kinų" #: src/translations.h:168 msgid "Egyptian" -msgstr "egiptieÄių" +msgstr "EgiptieÄių" #: src/translations.h:169 msgid "Inuit" -msgstr "inuitų" +msgstr "Inuitų" #: src/translations.h:170 -msgid "Korean" -msgstr "korÄ—jieÄių" +msgid "Indian Vedic" +msgstr "Indų Vedų" #: src/translations.h:171 -msgid "Lakota" -msgstr "lakotų" +msgid "Korean" +msgstr "KorÄ—jieÄių" #: src/translations.h:172 +msgid "Lakota" +msgstr "Lakotų" + +#: src/translations.h:173 msgid "Maori" msgstr "Maorių" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" -msgstr "navajų" +msgstr "Navahų" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" -msgstr "Norvegijos" +msgstr "Norvegų" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" -msgstr "polinezieÄių" +msgstr "PolinezieÄių" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Samių" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" -msgstr "" +msgstr "TongieÄių" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" -msgstr "vakarieÄių" +msgstr "VakarieÄių" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" -msgstr "" +msgstr "Medžiai" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" -msgstr "" +msgstr "Vandenynas" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1894,1502 +2036,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data ir laikas" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "PridÄ—ti 1 žvaigždinÄ™ dienÄ…" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" -msgstr "" +msgstr "PridÄ—ti 1 žvaigždinį mÄ—nesį" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "PridÄ—ti 1 žvaigždinÄ™ savaitÄ™" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" -msgstr "" +msgstr "PridÄ—ti 1 žvaigždinius metus" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" -msgstr "" +msgstr "PridÄ—ti 1 žvaigždinį amžių" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "PridÄ—ti 1 saulinÄ™ dienÄ…" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "PridÄ—ti 1 saulinÄ™ valandÄ…" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "PridÄ—ti 1 saulinÄ™ savaitÄ™" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "SulÄ—tinti scenarijaus vykdymÄ…" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "SulÄ—tinti laiko tÄ—kmÄ—s greitį" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Sumažinti laiko greitį (Å¡iek tiek)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Pagreitinti scenarijaus vykdymÄ…" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Padidinti laiko tÄ—kmÄ—s greitį" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Padidinti laiko greitį (Å¡iek tiek)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Naudoti Å¡io momento laikÄ…" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Nustatyti normalų scenarijaus vykdymo greitį" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Nustatyti normalų laiko tÄ—kmÄ—s greitį" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Nustatyti laiko tÄ—kmÄ™ lygiÄ… nuliui" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Atimti 1 žvaigždinÄ™ dienÄ…" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" -msgstr "" +msgstr "Atimti 1 žvaigždinį mÄ—nesį" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Atimti 1 žvaigždinÄ™ savaitÄ™" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" -msgstr "" +msgstr "Atimti 1 žvaigždinius metus" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" -msgstr "" +msgstr "Atimti 1 žvaigždinį amžių" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Atimti 1 saulinÄ™ dienÄ…" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Atimti 1 saulinÄ™ valandÄ…" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Atimti 1 saulinÄ™ savaitÄ™" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Vaizdo nustatymai" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Horizontalusis atspindys" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Viso ekrano režimas" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimutinis tinklelis" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Pasaulio kryptys" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Žvaigždynų pieÅ¡iniai" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Žvaigždynų ribos" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Žvaigždynų pavadinimai" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Žvaigždynų kontÅ«rai" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Ūkų fono paveikslai" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" -msgstr "" +msgstr "Ekliptinis J2000 tinklelis" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptikos linija" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Pusiaujo linija" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" -msgstr "Ekvatorinis tinklelis" +msgstr "Pusiaujinis tinklelis" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" -msgstr "Ekvatorinis J2000 tinklelis" +msgstr "Pusiaujinis J2000 tinklelis" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" -msgstr "RÅ«kÄ…" +msgstr "RÅ«kas" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktikos tinklelis" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" -msgstr "" +msgstr "Galaktikos plokÅ¡tuma" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "ŽemÄ—" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horizonto linija" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Dienovidinio linija" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Ūkai" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Nakties režimas" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" -msgstr "" +msgstr "Planetų pavadinimai" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planetų orbitos" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planetų pÄ—dsakai" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "ŽvaigždÄ—s" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" -msgstr "" +msgstr "Žvaigždžių pavadinimai" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Vertikalusis atspindys" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Ä®vairÅ«s" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "AutomatiÅ¡kai slÄ—pti horizontaliÄ… mygtukų juostÄ…" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "AutomatiÅ¡kai slÄ—pti vertikaliÄ… mygtukų juostÄ…" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" -msgstr "" +msgstr "Grįžti į pradžiÄ…" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "IÅ¡eiti" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" -msgstr "" +msgstr "Nukopijuoti pažymÄ—to objekto informacijÄ…" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "IÅ¡saugoti ekrano nuotraukÄ…" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" -msgstr "Persijungti tarp ekvatorinio ir azimutinio pririÅ¡imo" +msgstr "Persijungti tarp pusiaujinio ir azimutinio pririÅ¡imo" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Perjungti vartotojo sÄ…sajos matomumÄ…" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Slinkimas ir parinkimas" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centruoti pažymÄ—tÄ… objektÄ…" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "ParinktÄ… planetÄ… nustatyti namų planeta" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Sekti objektÄ…" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Priartinti pažymÄ—tÄ… objektÄ…" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Atitraukti" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Kampo matavimas" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Kompaso žymos" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" -msgstr "" +msgstr "Rodyti egzoplanetas" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okuliaro vaizdas" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" -msgstr "" +msgstr "Rodyti taikiklio kryželį" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" -msgstr "" +msgstr "Okuliarų meniu" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" +msgstr "Telrad taikiklis" + +#: src/translations.h:651 +msgid "Select next telescope" msgstr "" -#: src/translations.h:642 +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Rodyti pulsarus" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Rodyti kvazarus" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Palydovų konfigÅ«racijos langas" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Palydovų užuominos" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Palydovų pavadinimai" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Pasukti teleskopÄ… į nurodytas koordinates" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scenarijai" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Nustatymų langas" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Datos/laiko langas" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Žinyno langas" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "VietovÄ—s langas" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "PaieÅ¡kos langas" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" -msgstr "" +msgstr "SparÄiųjų klavišų langas" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Dangaus ir peržiÅ«ros nustatymų langas" @@ -3408,14 +3586,14 @@ #: src/ui_helpDialogGui.h:291 src/ui_configurationDialog.h:1057 msgid "Edit keyboard shortcuts..." -msgstr "" +msgstr "Redaguoti sparÄiuosius klaviÅ¡us..." #: src/ui_helpDialogGui.h:292 msgid "Refresh" msgstr "Atnaujinti" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "VietovÄ—" @@ -3431,10 +3609,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "PaÅ¡alinti" @@ -3443,7 +3621,7 @@ msgstr "PridÄ—ti į sÄ…raÅ¡Ä…" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Platuma:" @@ -3456,12 +3634,12 @@ "12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Ilguma:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "AukÅ¡tis:" @@ -3485,363 +3663,407 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Objekto paieÅ¡ka" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" +msgstr "Rasti objektÄ… ar koordinates" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" -msgstr "" +msgstr "jota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" -msgstr "" +msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" -msgstr "" +msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" -msgstr "" +msgstr "gama" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" -msgstr "" +msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" -msgstr "" +msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" -msgstr "" +msgstr "dzeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" -msgstr "" +msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" -msgstr "" +msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" -msgstr "" +msgstr "kapa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" -msgstr "" +msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" -msgstr "" +msgstr "miu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" -msgstr "" +msgstr "niu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" -msgstr "" +msgstr "ksi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" -msgstr "" +msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" -msgstr "" +msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" -msgstr "" +msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" -msgstr "" +msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" -msgstr "" +msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" -msgstr "" +msgstr "ipsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" -msgstr "" +msgstr "fi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" -msgstr "" +msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" -msgstr "" +msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" -msgstr "" +msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" -msgstr "" +msgstr "Graikų abÄ—cÄ—lÄ— Bajerio žymÄ—jimui" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" -msgstr "" +msgstr "Objektas" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" +msgstr "KoordinatÄ—s" + +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "pavadinimai angliÅ¡kai" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "IeÅ¡koti sÄ…raÅ¡e..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "SÄ…raÅ¡ai" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" -msgstr "" +msgstr "InternetinÄ— astronominių duomenų bazÄ— SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" -msgstr "" +msgstr "IÅ¡plÄ—sti paieÅ¡kÄ… su SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" -msgstr "" - -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Nustatymai" +msgstr "Serveris:" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Nustatymai" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Vaizdas" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Dangus" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "ŽymÄ—s" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "KraÅ¡tovaizdis" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Žvaigždynų folkloras" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Pavadinimai ir žymekliai" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planetos" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planetos ir palydovai" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Rodyti planetas" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Rodyti planetų užuominas" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Rodyti planetų orbitas" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Imituoti Å¡viesos greitį" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "MÄ—nulio mastelis" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Rodyti atmosferÄ…" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" -msgstr "" +msgstr "Å viesos tarÅ¡a:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" -msgstr "" +msgstr "slÄ—gis, temperatÅ«ra, ekstinkcijos koeficientas" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." -msgstr "" +msgstr "Refrakcijos/ekstinkcijos nustatymai..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absoliutinis mastelis:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Santykinis mastelis:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" -msgstr "" +msgstr "PaukÅ¡Äių tako ryÅ¡kumas:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "MirgÄ—jimas:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Pritemdyti neryÅ¡kias žvaigždes, kai matomas labai ryÅ¡kus objektas." -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "DinamiÅ¡kas akių prisitaikymas" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "KrintanÄios žvaigždÄ—s" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" -msgstr "" +msgstr "Ribojimas pagal ryÅ¡kį" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Žvaigždynai" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Rodyti kontÅ«rus" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Rodyti pavadinimus" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Rodyti ribas" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Rodyti pieÅ¡inius" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" -msgstr "" +msgstr "PieÅ¡inių ryÅ¡kumas:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Dangaus sfera" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projekcija" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "PridÄ—ti/paÅ¡alinti kraÅ¡tovaizdžius..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Rodyti žemÄ™" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Rodyti rÅ«kÄ…" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Naudoti susijusiÄ… planetÄ… ir pozicijÄ…" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Naudoti šį kraÅ¡tovaizdį kaip numatytÄ…jį" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Naudoti Å¡iÄ… dangaus kultÅ«rÄ… kaip numatytÄ…jÄ…" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Matomas" @@ -3896,7 +4118,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Kryptis, kuria žiÅ«rite paleidÄ™ programÄ…" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informacija apie parinktÄ… objektÄ…" @@ -3912,11 +4134,8 @@ msgid "Display no information" msgstr "Informacijos nerodyti" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Nieko" @@ -3934,11 +4153,11 @@ #: src/ui_configurationDialog.h:1008 msgid "Customized" -msgstr "" +msgstr "Kaip nurodyta" #: src/ui_configurationDialog.h:1009 msgid "Displayed fields" -msgstr "" +msgstr "Rodoma informacija" #: src/ui_configurationDialog.h:1011 msgid "Geocentric equatorial coordinates, equinox of J2000.0" @@ -3946,32 +4165,32 @@ #: src/ui_configurationDialog.h:1013 msgid "Right ascension/Declination (J2000)" -msgstr "" +msgstr "Rektascensija/Deklinacija (J2000)" #: src/ui_configurationDialog.h:1015 msgid "Horizontal coordinates" -msgstr "" +msgstr "HorizontinÄ—s koordinatÄ—s" #: src/ui_configurationDialog.h:1017 msgid "Altitude/Azimuth" -msgstr "" +msgstr "AukÅ¡tis/Azimutas" #: src/ui_configurationDialog.h:1018 msgid "Visual magnitude" -msgstr "" +msgstr "Regimasis ryÅ¡kis" #: src/ui_configurationDialog.h:1019 msgid "Absolute magnitude" -msgstr "" +msgstr "Absoliutinis ryÅ¡kis" #: src/ui_configurationDialog.h:1020 msgid "Catalog number(s)" -msgstr "" +msgstr "Katalogo numeris(-iai)" #: src/ui_configurationDialog.h:1021 #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:269 msgid "Name" -msgstr "" +msgstr "Pavadinimas" #: src/ui_configurationDialog.h:1023 msgid "Geocentric equatorial coordinates, equinox of date" @@ -3987,43 +4206,43 @@ #: src/ui_configurationDialog.h:1029 msgid "Longitude/Latitude (J2000)" -msgstr "" +msgstr "Ilguma/Platuma (J2000)" #: src/ui_configurationDialog.h:1031 msgid "Topocentric equatorial coordinates" -msgstr "" +msgstr "TopocentrinÄ—s pusiaujinÄ—s koordinatÄ—s" #: src/ui_configurationDialog.h:1033 msgid "Hour angle/Declination" -msgstr "" +msgstr "Valandinis kampas/Deklinacija" #: src/ui_configurationDialog.h:1034 msgid "Distance" -msgstr "" +msgstr "Nuotolis" #: src/ui_configurationDialog.h:1036 msgid "Angular or physical size" -msgstr "" +msgstr "Kampinis arba fizinis dydis" #: src/ui_configurationDialog.h:1038 msgid "Size" -msgstr "" +msgstr "Dydis" #: src/ui_configurationDialog.h:1040 msgid "Spectral class, nebula type, etc." -msgstr "" +msgstr "SpektrinÄ— klasÄ—, Å«ko tipas ir t.t." #: src/ui_configurationDialog.h:1042 msgid "Additional information 1" -msgstr "" +msgstr "Papildoma informacija 1" #: src/ui_configurationDialog.h:1046 msgid "Additional information 2" -msgstr "" +msgstr "Papildoma informacija 2" #: src/ui_configurationDialog.h:1047 msgid "Additional information 3" -msgstr "" +msgstr "Papildoma informacija 3" #: src/ui_configurationDialog.h:1048 msgid "Control" @@ -4039,7 +4258,7 @@ #: src/ui_configurationDialog.h:1054 msgid "Allow mouse to pan (drag) and zoom (mousewheel)" -msgstr "Ä®jungti slinkimÄ… ir mastelio keitima pele" +msgstr "Ä®jungti slinkimÄ… ir mastelio keitimÄ… pele" #: src/ui_configurationDialog.h:1056 msgid "Enable mouse navigation" @@ -4051,14 +4270,14 @@ #: src/ui_configurationDialog.h:1061 msgid "Mouse cursor timeout:" -msgstr "" +msgstr "PaslÄ—pti pelÄ—s žymeklį už:" #: src/ui_configurationDialog.h:1063 msgid "seconds" msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Data ir laikas paleidus programÄ…" @@ -4070,19 +4289,23 @@ msgid "Other:" msgstr "Kita:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "naudoti dabartinį" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Paleidžia Stellarium pagal sistemos laikrodžio datÄ… ir laikÄ…" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Sistemos data ir laikas" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4090,23 +4313,23 @@ "Paleidžiant Stellarium simuliacijos laikas nustatomas į kitÄ… Å¡ios dienos " "laikÄ…." -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Sistemos laikas nuo:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" -msgstr "" +msgstr "Laiko korekcija" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetariumo parinktys" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4114,51 +4337,51 @@ "Sferinio veidrodžio iÅ¡kreipimas naudojamas projektuojant Stellarium vaizdÄ… " "ant sferinio veidrodžio pigiose planetariumų sistemose." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Sferinio veidrodžio iÅ¡kreipimas" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Pagrindiniame vaizde paslÄ—pti viskÄ… už centrinio apskritimo ribų" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Diskinis vaizdas" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "PažymÄ—jus žvaigždynÄ… paslÄ—pti kitus" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Parinkti vienÄ… žvaigždynÄ…" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Lygiuoti užraÅ¡us su horizontu" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Lygiuoti antraÅ¡tes pagal horizontÄ…" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" -msgstr "" +msgstr "Rodyti Å«kų paveikslų mygtukÄ…" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Apkeisti vertikalaus ir horizontalaus atspindžio mygtukus." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Rodyti atspindžio keitimo mygtukus" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4166,92 +4389,98 @@ "Kai įjungta, \"automatinio atitolinimo\" klaviÅ¡as kartu nustatys ir pradinÄ™ " "vaizdo kryptį" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatinis atitolinimas gražins pradinÄ™ vaizdo kryptį" -#: src/ui_configurationDialog.h:1113 -msgid "Render Solar Shadows" +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1119 +msgid "Render Solar Shadows" +msgstr "Rodyti Å¡eÅ¡Ä—lius nuo SaulÄ—s" + +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Ekrano nuotraukos" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Ekrano nuotraukų katalogas" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Invertuoti spalvas" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Žvaigždžių katalogo atnaujinimai" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "SpragtelÄ—kite norÄ—dami pradÄ—ti siuntimÄ…" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "NorÄ—dami matyti dar daugiau žvaigždžių atsisiųskite šį failÄ…" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Siųsti iÅ¡ naujo" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Bandyti vÄ—l" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Sustabdyti siuntimÄ…. Jį galÄ—site pakartoti vÄ—liau" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "AtÅ¡aukti" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Veikiant scenarijui užverti langÄ…" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Vykdyti pasirinktÄ… scenarijų" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Sustabdyti vykdomÄ… scenarijų" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Ä®kelti paleidimo metu" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "konfigÅ«ruoti" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Pagrindinis" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informacija" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigacija" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "PriemonÄ—s" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Papildiniai" @@ -4291,31 +4520,31 @@ #: src/ui_shortcutsDialog.h:196 msgid "Keyboard Shortcuts" -msgstr "" +msgstr "Spartieji klaviÅ¡ai" #: src/ui_shortcutsDialog.h:200 msgid "Restore Defaults" -msgstr "" +msgstr "Atstatyti pradinius nustatymus" #: src/ui_shortcutsDialog.h:201 msgid "Apply" -msgstr "" +msgstr "Taikyti" #: src/ui_AtmosphereDialog.h:176 msgid "Atmosphere Details" -msgstr "" +msgstr "Atmosferos nustatymai" #: src/ui_AtmosphereDialog.h:178 msgid "Refraction Settings" -msgstr "" +msgstr "Refrakcijos nustatymai" #: src/ui_AtmosphereDialog.h:179 msgid "Pressure (mbar):" -msgstr "" +msgstr "SlÄ—gis (mbar):" #: src/ui_AtmosphereDialog.h:180 msgid "Temperature (C):" -msgstr "" +msgstr "TemperatÅ«ra (C):" #: src/ui_AtmosphereDialog.h:185 msgid "" @@ -4323,10 +4552,14 @@ "given in mag/airmass, where airmass is number of atmospheres light has to " "pass. (zenith: 1; horizon: about 40)" msgstr "" +"Ekstinkcija (sugertis) yra Å¡viesulio spindesio susilpnÄ—jimas dÄ—l ŽemÄ—s " +"atmosferos. Ji skaiÄiuojama ryÅ¡kį dalinant iÅ¡ oro masių, kur oro masÄ—s yra " +"atmosferų skaiÄius, kurias tenka praeiti Å¡viesai (zenite: 1, horizonte: apie " +"40)." #: src/ui_AtmosphereDialog.h:187 msgid "Extinction Coefficient:" -msgstr "" +msgstr "Ekstinkcijos koeficientas:" #: src/ui_AtmosphereDialog.h:189 msgid "" @@ -4421,176 +4654,179 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Rodo kompaso žymas palei horizontÄ…" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okuliarai" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" +"Rodo dangų taip, kaip jis atrodytų pro teleskopo okuliarÄ… (simuliuojamas tik " +"didinimas ir regÄ—jimo laukas). Taip pat gali rodyti sensoriaus rÄ—melį ir " +"Telrad taikiklį." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4662,64 +4898,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4727,7 +4968,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4738,14 +4979,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4754,191 +4995,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Palydovai" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4946,116 +5196,176 @@ "Dirbtinių palydovų padÄ—ties ŽemÄ—s orbitoje prognozÄ— pasitelkus NORAD TLE " "duomenis" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Senas satellites.json failas nebesuderinamas - naudojame numatytÄ…jį failÄ…." -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5063,25 +5373,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5089,17 +5399,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5107,41 +5417,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5149,338 +5461,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 +#, qt-format +msgid "Next update: %1 minutes" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#, qt-format +msgid "Next update: %1 hours" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 +msgid "Update error" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Next update: %1 minutes" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Next update: %1 hours" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 +msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 #: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 msgid "Update now" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 msgid "Update from files" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 -msgid "Update error" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 -#, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 -msgid "[new source]" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5516,11 +5871,11 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskopo valdymas" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5528,12 +5883,12 @@ "Å is papildinys leidžia Stellarium nusiųsti \"pasisukimo\" komandas " "teleskopui ant kompiuterizuoto stovo (\"Eiti į teleskopÄ…\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Pasukti teleskopÄ… #%1 į pasirinktÄ… objektÄ…" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Pasukti teleskopÄ… #%1 į centrinį ekrano taÅ¡kÄ…" @@ -5919,62 +6274,62 @@ "juostoje." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6128,7 +6483,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6146,7 +6501,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6162,155 +6517,155 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "TekstinÄ— vartotojo sÄ…saja" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" "0.9.x versijų TekstinÄ—s vartotojo sÄ…sajos (TUI) įgyvendinimas papildiniu." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" -msgstr "" +msgstr "SaulÄ—s sistemos kÅ«nas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Kalba" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6346,22 +6701,22 @@ "paieÅ¡kÄ… jos internetinÄ—je duomenų bazÄ—je. Vis dar kuriamas." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6474,7 +6829,7 @@ #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:294 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:305 msgid "Solar System objects" -msgstr "" +msgstr "SaulÄ—s sistemos objektai" #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:296 msgid "Warning" @@ -6528,38 +6883,45 @@ #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:309 msgid "Solar System" -msgstr "" +msgstr "SaulÄ—s sistema" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" -msgstr "" +msgstr "IstorinÄ—s supernovos" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" -msgstr "" +msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6577,7 +6939,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6591,14 +6953,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6606,8 +6968,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6625,97 +6988,188 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 -msgid "Quasars" +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:71 +msgid "Quasars" +msgstr "Kvazarai" + +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " "(13th Ed.) (Veron+ 2010) =2010A&A...518A..10V" msgstr "" +"Rodo kai kuriuos kvazarus, ryÅ¡kesnius nei 16 regimojo ryÅ¡kio. Kvazarų " +"katalogas surinktas iÅ¡ 'Kvazarai ir aktyvÅ«s galaktikų branduoliai' ('Quasars " +"and Active Galactic Nuclei' ) (13 leidimas) (Veron+ 2010) " +"=2010A&A...518A..10V" #: plugins/Quasars/src/Quasar.cpp:92 msgid "quasar" -msgstr "" +msgstr "kvazaras" #: plugins/Quasars/src/Quasar.cpp:134 #, qt-format msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 -msgid "Pulsars" +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 +msgid "Pulsars" +msgstr "Pulsarai" + +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." -msgstr "" +msgstr "Rodo įvairius pulsarus, su informacija apie kiekvienÄ… iÅ¡ jų." #: plugins/Pulsars/src/Pulsar.cpp:125 msgid "pulsar" -msgstr "" +msgstr "pulsaras" #. TRANSLATORS: Unit of measure for period - seconds #: plugins/Pulsars/src/Pulsar.cpp:136 @@ -6827,11 +7281,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6839,137 +7293,144 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 -msgid "Exoplanets" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:73 +msgid "Exoplanets" +msgstr "Egzoplanetos" + +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" +"Rodo žvaigždžių su egzoplanetomis padÄ—tis. Duomenys apie egzoplanetas paimti " +"iÅ¡ 'Egzoplanetų enciklopedijos' ('Extrasolar Planets Encyclopaedia') " +"tinklapyje exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "av" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6977,49 +7438,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7035,185 +7585,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" -msgstr "" +msgstr "Å IANDIEN:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" -msgstr "" +msgstr "Å IEMET:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7384,23 +7928,23 @@ #: plugins/Observability/src/ui_ObservabilityDialog.h:370 msgid "Font color and size" -msgstr "" +msgstr "Å rifto spalva ir dydis" #: plugins/Observability/src/ui_ObservabilityDialog.h:371 msgid "Red" -msgstr "" +msgstr "Raudona" #: plugins/Observability/src/ui_ObservabilityDialog.h:372 msgid "Green" -msgstr "" +msgstr "Žalia" #: plugins/Observability/src/ui_ObservabilityDialog.h:373 msgid "Blue" -msgstr "" +msgstr "MÄ—lyna" #: plugins/Observability/src/ui_ObservabilityDialog.h:374 msgid "Font Size" -msgstr "" +msgstr "Å rifto dydis" #: plugins/Observability/src/ui_ObservabilityDialog.h:375 msgid "Observing conditions" @@ -7606,6 +8150,9 @@ #~ msgid "Limiting Magnitude: " #~ msgstr "Ribojantis ryÅ¡kis: " +#~ msgid "Nebulas" +#~ msgstr "Ūkai" + #~ msgid "Form" #~ msgstr "Forma" @@ -7654,6 +8201,9 @@ #~ msgid "Startup direction of view: xxxx" #~ msgstr "PradinÄ— vaizdo kryptis: xxxx" +#~ msgid "Nebulas background images" +#~ msgstr "Ūkų fono paveikslai" + #~ msgid "Planets labels" #~ msgstr "Planetų antraÅ¡tÄ—s" @@ -7680,3 +8230,9 @@ #~ msgid "Plugin Key Bindings" #~ msgstr "Papildinių klavišų saistymas" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Rodo kai kurias istorines supernovas, ryÅ¡kesnes nei 10 regimojo ryÅ¡kio." diff -Nru stellarium-0.12.1/po/stellarium/lv.po stellarium-0.12.4/po/stellarium/lv.po --- stellarium-0.12.1/po/stellarium/lv.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/lv.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2012-10-13 19:37+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-09 04:15+0000\n" "Last-Translator: KÄrlis Goba \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:16+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "MeridiÄns" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvators" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizonts" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Galaktikas ekvatora plakne" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autors: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "AtraÅ¡anÄs vieta: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "PlanÄ“ta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tips: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Zvaigžņlielums: %1 (ar ekstinkciju: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Zvaigžņlielums: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "IzmÄ“rs: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaktika" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Vaļēja kopa" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Lodveida kopa" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "MiglÄjs" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "PlanetÄrais miglÄjs" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Cluster associated with nebulosity" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "NezinÄms" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "NedokumentÄ“ts tips" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "AbsolÅ«tais zvaigžņlielums: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "EkliptiskÄs topocentriskÄs koordinÄtes (datumÄ): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Ekliptikas slÄ«pums (datumÄ, Zemei): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "AttÄlums: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "AttÄlums: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Å Ä·ietamais diametrs: %1, ar gredzeniem: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Redzamais diametrs: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Sideriskais periods: %1 dienas (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "SideriskÄ diena: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "VidÄ“jÄ Saules diena: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "FÄzes leņķis: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "ElongÄcija: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "FÄze: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "ApgaismotÄ daļa: %1%" @@ -204,10 +204,10 @@ msgstr "Pagaidu nosaukums: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" -msgstr "" +msgstr "zvaigzne" #: src/core/modules/StarWrapper.cpp:57 #, qt-format @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Å Ä·ietamais zvaigžņlielums: %1 (ar ekstinkciju)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "pulsÄ“joÅ¡a maiņzvaigzne" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "rotÄ“joÅ¡a maiņzvaigzne" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "kataklizsmiska maiņzvaigzne" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "maiņzvaigzne" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Tips: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Zvaigžņlielums: %1 (ar ekstinkciju: %2. B-V: %3" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Zvaigžņlielums: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Zvaigžņlielums: %1%2%3 (FotometriskÄ sistÄ“ma: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Zvaigžņlielums: %1%2%3/%4 (FotometriskÄ sistÄ“ma: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektra klase: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "AttÄlums: %1 gaismas gadi" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralakse: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Periods: %1 dienas" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Uzlec: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Kļūda" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -652,52 +744,53 @@ msgid "Found" msgstr "Atrasts" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "IzvÄ“lÄ“ties ekrÄnattÄ“lu direktoriju" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "SÄkotnÄ“jais redzes leņķis (FOV): %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "SÄkotnÄ“jais skata virziens az./augst.: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autori" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakts" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autors" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licence" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Darbina skriptu: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Darbina skriptu: [tukÅ¡s]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -705,16 +798,16 @@ "Jaunu zvaigžņu katalogu ielÄde pabeigta!\n" "PÄrstartÄ“jiet Stellarium, lai tos lietotu." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Visi pieejamie zvaigžņu katalogi ir uzstÄdÄ«ti." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "IegÅ«st katalogu %1 no %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -723,7 +816,7 @@ "LejupielÄdÄ“ %1...\n" "(Varat aizvÄ“rt Å¡o logu.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -734,7 +827,7 @@ "Zvaigžņu skaits: %2 miljoni\n" "Zvaigžņlieluma diapazons: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -743,11 +836,11 @@ "Kļūda lejupielÄdÄ“jot %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "PÄrbauda faila pareizumu..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -757,115 +850,123 @@ "Fails ir bojÄts." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1024,49 +1125,53 @@ msgid "OSX Developer: %1" msgstr "OSX izstrÄdÄtÄjs: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Skriptu konsoles logs" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Logi" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Atstarpe" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Bez apraksta" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Nav meteoru" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "NormÄlÄ intensitÄte" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standarta PerseÄ«du intensitÄte" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Ä€rkÄrtÄ“ja LeonÄ«du intensitÄte" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "VisaugstÄkÄ intensitÄte (1966. gada LeonÄ«das)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Jauna atraÅ¡anÄs vieta" @@ -1169,19 +1274,19 @@ msgid "starchart" msgstr "zvaigžņu karte" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad meklÄ“juma kļūda" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "MeklÄ“t Simbad datubÄzÄ“" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "StrazbÅ«ras UniversitÄte (Francija)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "HÄrvarda UniversitÄte (ASV)" @@ -1197,30 +1302,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Å Ä« sistÄ“ma neatbalsta OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Saule" @@ -1237,12 +1348,12 @@ msgstr "Zeme" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "MÄ“ness" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marss" @@ -1340,7 +1451,7 @@ msgstr "MetÄ«da" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturns" @@ -1638,193 +1749,222 @@ msgstr "Inuitu" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "KorejieÅ¡u" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakotu" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maoru" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navahu" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "SkandinÄvu" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "PolinÄ“zieÅ¡u" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "SÄmu" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Rietumu" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Koki" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "ViesuļvÄ“tra" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "OkeÄns" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Daļējs MÄ“ness aptumsums" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Pilns MÄ“ness aptumsums" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "EkrÄnsaudzÄ“tÄjs" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "2009. gada Saules aptumsums" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "PalaiÅ¡anas skripts" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiaks" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Merkura trÄ«skÄrÅ¡ais saullÄ“kts un saulriets" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Dubultais aptumsums uz Deimosa 2017. gadÄ" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Dubultais aptumsums no Deimosa 2031. gadÄ" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Aptumsums no Olimpa kalna 2068. gada 10. janvÄrÄ«" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Zemes un Jupitera okultÄcija 2048. gadÄ" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Saules sistÄ“mas ekrÄnsaudzÄ“tÄjs" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "ZvaigznÄju ekskursija" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Skats uz Sauli no dažÄdÄm planÄ“tÄm" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "LabÄkie skati uz Zemi no citiem debess Ä·ermeņiem" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "VenÄ“ras tranzÄ«ts" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Visu instalÄ“to ainavu apskats." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skripts, kurÅ¡ demonstrÄ“ daļēju MÄ“ness aptumsumu." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skripts, kurÅ¡ demonstrÄ“ pilnu MÄ“ness aptumsumu." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "LÄ“na, bezgalÄ«ga ekskursija pa debesÄ«m, apmeklÄ“jot nejauÅ¡us objektus." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1832,11 +1972,11 @@ "Skripts, kurÅ¡ demonstrÄ“ pilnu Saules aptumsumu 2009. gadÄ (RangpÅ«ra, " "BangladeÅ¡a)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skripts, kurÅ¡ darbojas automÄtiski programmas palaiÅ¡anas laikÄ" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1845,7 +1985,7 @@ "Å is skripts attÄ“lo Zodiaka zvaigznÄjus, t.i. zvaigznÄjus, kuri atrodas tuvu " "riņķim, kuru Saule veic debesÄ«s gada laikÄ." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1853,7 +1993,7 @@ "Merkura Ä«patnÄ“jÄs orbÄ«tas un rotÄcijas dēļ noteiktÄs vietÄs Saule lec un " "riet 3 reizes vienÄ Merkura dienÄ." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1862,7 +2002,7 @@ "Sauli pirmais. Aptumsums notiek starp Skorpiona un StrÄ“lnieka zvaigznÄjiem " "2017. gada 26. aprÄ«lÄ«." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1871,18 +2011,18 @@ "Sauli pirmais. Aptumsums notiek starp VÄ“rÅ¡a un Dvīņu zvaigznÄjiem 2031. gada " "23. jÅ«lijÄ." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1892,1502 +2032,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andora" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Apvienotie ArÄbu EmirÄti" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "AfganistÄna" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigva un Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Angilja" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "AlbÄnija" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ArmÄ“nija" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "NÄ«derlandes Antiļu salas" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "AntarktÄ«da" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "ArgentÄ«na" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikas Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austrija" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "AustrÄlija" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "AzerbaidžÄna" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnija un Hercegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbadosa" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "BangladeÅ¡a" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Beļģija" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkinafaso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "BulgÄrija" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahreina" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benina" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermudu salas" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Bruneja" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "BolÄ«vija" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "BrazÄ«lija" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "ButÄna" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "BuvÄ“ Sala" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botsvana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Baltkrievija" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Beliza" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "KanÄda" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kokosu salas" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Kongo DemokrÄtiskÄ Republika" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "CentrÄlÄfrikas Republika" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Kongo Republika" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Å veice" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Ziloņkaula krasts" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Kuka salas" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Čīle" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "KamerÅ«na" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Ķīna" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolumbija" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Kostarika" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbija un Melnkalne" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kaboverde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "ZiemsvÄ“tku sala" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Kipra" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ÄŒehijas Republika" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "VÄcija" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Džibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "DÄnija" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "DominikÄnas Republika" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Alžīrija" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekvadora" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Igaunija" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Ä’Ä£ipte" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "RietumsahÄra" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritreja" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "SpÄnija" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopija" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Somija" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fidži" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Folklenda salas" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "MikronÄ“zija" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "FÄ“ru salas" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Francija" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabona" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "ApvienotÄ Karaliste" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "GrenÄda" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Gruzija" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "FranÄu GviÄna" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Gana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "GibraltÄrs" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grenlande" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambija" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Gvineja" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Gvadelupa" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "EkvatoriÄlÄ Gvineja" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "GrieÄ·ija" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Gvatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guama" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Gvineja-Bisava" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "GajÄna" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Honkonga" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Hondurasa" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "HorvÄtija" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "UngÄrija" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "IndonÄ“zija" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Īrija" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "IzraÄ“la" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Indija" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "IrÄka" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "IrÄna" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islande" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ItÄlija" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaika" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "JordÄnija" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "JapÄna" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenija" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "KirgizstÄna" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodža" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuveita" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kaimanu salas" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "KazahstÄna" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laosa" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "LibÄna" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "LihtenÅ¡teina" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Å rilanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "LibÄ“rija" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesoto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lietuva" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luksemburga" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latvija" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maroka" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskara" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "MaÄ·edonija" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Mjanma" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolija" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Makao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Meksika" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaizija" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambika" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "NamÄ«bija" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Jaunkaledonija" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "NÄ«derlande" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "NorvÄ“Ä£ija" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "NepÄla" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "JaunzÄ“lande" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "OmÄna" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua-Jaungvineja" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "FilipÄ«nas" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "PakistÄna" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polija" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puertoriko" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "PortugÄle" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Katara" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "RumÄnija" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbija" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Krievijas FederÄcija" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "SudÄna" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Zviedrija" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "SingapÅ«ra" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Sv. HelÄ“nas sala" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "SlovÄ“nija" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "SvalbÄra un Jana Majena sala" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "SlovÄkija" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "SenegÄla" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "SomÄlija" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinama" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Santome un Prinsipi" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "SÄ«rija" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Svazilenda" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "ÄŒada" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Taizeme" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "TadžikistÄna" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Austrumtimora" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "TurkmenistÄna" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisija" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turcija" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidada un Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "TaivÄna" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "TanzÄnija" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Amerikas SavienotÄs Valstis" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Urugvaja" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "UzbekistÄna" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "VenecuÄ“la" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vjetnama" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemena" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "DienvidÄfrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabve" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Datums un laiks" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Pievienot 1 siderisko dienu" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Pievienot 1 siderisko mÄ“nesi" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Pievienot 1 siderisko nedēļu" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Pievienot 1 siderisko gadu" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Pievienot 1 Saules laika dienu" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Pievienot 1 Saules laika stundu" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Pievienot 1 Saules laika nedēļu" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Pievienot 1 sinodisko mÄ“nesi" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "SamazinÄt skripta izpildes Ätrumu" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "PalÄ“ninÄt laika plÅ«dumu" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "PalÄ“ninÄt laika plÅ«dumu (nedaudz)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "PalielinÄt skripta izpildes Ätrumu" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "PaÄtrinÄt laika plÅ«dumu" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "PaÄtrinÄt laika plÅ«dumu (nedaudz)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "PÄrtraukt skripta izpildi" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "TurpinÄt skripta izpildi" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "PaÅ¡reizÄ“jais laiks" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "NormÄls skripta izpildes Ätrums" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "NormÄls laika plÅ«dums" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "ApturÄ“t laika plÅ«dumu" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "ApturÄ“t skripta izpildi" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Atņemt 1 siderisko dienu" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Atņemt 1 siderisko mÄ“nesi" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Atņemt 1 siderisko nedēļu" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Atņemt 1 siderisko gadu" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Atņemt 1 Saules laika dienu" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Atņemt 1 Saules laika stundu" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Atņemt 1 Saules laika nedēļu" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Atņemt 1 sinodisko mÄ“nesi" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "AttÄ“lojuma iestatÄ«jumi" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "ApvÄ“rst attÄ“lu horizontÄli" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "PilnekrÄna režīms" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "AtmosfÄ“ra" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "AzimutÄlais tÄ«kls" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Debespuses" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "ZvaigznÄju zÄ«mÄ“jumi" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "ZvaigznÄju robežas" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "ZvaigznÄju nosaukumi" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "ZvaigznÄju lÄ«nijas" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "MiglÄju fona attÄ“li" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptikas J2000 koordinÄtu tÄ«kls" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptikas plakne" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "EkvatoriÄlÄ plakne" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "EkvatoriÄlais tÄ«kls" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "EkvatoriÄlais tÄ«kls J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "DÅ«maka" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktiskais tÄ«kls" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galaktikas ekvatora plakne" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "ApvÄrsnis" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horizonta lÄ«nija" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "MeridinÄna lÄ«nija" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "MiglÄji" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Nakts režīms" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "PlanÄ“tu nosaukumi" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "PlanÄ“tu orbÄ«tas" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "PlanÄ“tu trajektoriju pÄ“das" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Zvaigznes" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Zvaigžņu nosaukumi" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "ApvÄ“rst attÄ“lu vertikÄli" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "DažÄdi" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "AutomÄtiski paslÄ“pt horizontÄlo pogu joslu" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "AutomÄtiski paslÄ“pt vertikÄlo pogu joslu" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Iziet" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "NokopÄ“t iezÄ«mÄ“tÄ objekta informÄciju starpliktuvÄ“" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "SaglabÄt ekrÄnattÄ“lu" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "PÄrslÄ“gties starp ekvatoriÄlo un azimutÄlo montÄ“jumu" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "PÄrslÄ“gt vizuÄlÄs saskarnes attÄ“loÅ¡anu" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "PÄrvietoÅ¡anÄs un iezÄ«mÄ“Å¡ana" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "CentrÄ“t iezÄ«mÄ“to objektu" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "UzstÄdÄ«t iezÄ«mÄ“to planÄ“tu kÄ mÄjas planÄ“tu" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Sekot objektam" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "PietuvinÄt iezÄ«mÄ“to objektu" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "AttÄlinÄt" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "ParÄdÄ«t eksoplanÄ“tas" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "EksoplanÄ“tu konfigurÄcijas logs" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "PulsÄru konfigurÄcijas logs" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "KvazÄru konfigurÄcijas logs" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Pavadoņu konfigurÄcijas logs" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Pavadoņu nosaukumi" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "VÄ“sturisko supernovu konfigurÄcijas logs" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skripti" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Programmas iestatÄ«jumi" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Datums un laiks" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "PalÄ«dzÄ«ba" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "AtraÅ¡anÄs vieta" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "MeklÄ“Å¡ana" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Debess un attÄ“lojuma iestatÄ«jumi" @@ -3413,7 +3589,7 @@ msgstr "AtsvaidzinÄt" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "AtraÅ¡anÄs vieta" @@ -3429,10 +3605,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "IzdzÄ“st" @@ -3441,7 +3617,7 @@ msgstr "Pievienot sarakstam" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Platums:" @@ -3454,12 +3630,12 @@ "piemÄ“ram, +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Garums:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Augstums" @@ -3483,363 +3659,407 @@ msgid "Planet:" msgstr "PlanÄ“ta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "MeklÄ“t objektu" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "MeklÄ“t objektu vai pozÄ«ciju" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "jota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "bÄ“ta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilons" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zÄ“ta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "Ä“ta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "tÄ“ta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kapa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mÄ«" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nÄ«" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksÄ«" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikrons" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pÄ«" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ipsilons" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fÄ«" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "hÄ«" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psÄ«" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekts" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "PozÄ«cija" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "nosaukumi angļu valodÄ" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "MeklÄ“t sarakstÄ..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Saraksti" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "TieÅ¡saistes astronomiskÄ datubÄze SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Serveris:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "IestatÄ«jumi" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "nosaukumi angļu valodÄ" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "MeklÄ“t sarakstÄ..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Saraksti" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Skats" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Debesis" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "ApzÄ«mÄ“jumi" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Ainava" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Zvaigžņu folklora" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Nosaukumi un apzÄ«mÄ“jumi" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "PlanÄ“tas" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "PlanÄ“tas un pavadoņi" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "AttÄ“lot planÄ“tas" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "AttÄ“lot planÄ“tu apzÄ«mÄ“jumus" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "AttÄ“lot planÄ“tu orbÄ«tas" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "ModelÄ“t gaismas Ätrumu" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "MÄ“rogot MÄ“nesi" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "AttÄ“lot atmosfÄ“ru" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Gaismas piesÄrņojums:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "spiediens, temperatÅ«ra, ekstinkcijas koeficients" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refrakcijas/ekstinkcijas iestatÄ«jumi..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "AbsolÅ«tais mÄ“rogs:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "RelatÄ«vais mÄ“rogs:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "MirgoÅ¡ana:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "AptumÅ¡ot vÄjas zvaigznes blakus spožam objektam" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "DinamiskÄ acs pielÄgoÅ¡anÄs" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Meteori" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "ZvaigznÄji" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "AttÄ“lot lÄ«nijas" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "AttÄ“lot nosaukumus" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "AttÄ“lot robežas" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "AttÄ“lot zÄ«mÄ“jumus" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "ZÄ«mÄ“jumu spilgtums" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Debess sfÄ“ra" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "RÄdÄ«t ekvatora lÄ«niju" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "RÄdÄ«t meridiÄna lÄ«niju" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "RÄdÄ«t horizonta lÄ«niju" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "RÄdÄ«t ekliptikas lÄ«niju" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "RÄdÄ«t Galaktikas plaknes lÄ«niju" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projekcija" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Pievienot/noņemt ainavas..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "RÄdÄ«t zemi" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "AttÄ“lot miglu" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "UzstÄdÄ«t ainavu kÄ noklusÄ“to" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Redzams" @@ -3889,7 +4109,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "InformÄcija par iezÄ«mÄ“to objektu" @@ -3905,11 +4125,8 @@ msgid "Display no information" msgstr "NeattÄ“lot informÄciju" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Nav" @@ -4051,7 +4268,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Programmas sÄkotnÄ“jais datums un laiks" @@ -4063,182 +4280,192 @@ msgid "Other:" msgstr "Cits:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "izmantot paÅ¡reizÄ“jo" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "SistÄ“mas datums un laiks" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "SistÄ“mas datums plkst." -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "PlanetÄrija iestatÄ«jumi" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "SfÄ“riskÄ spoguļa aberÄcija" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Diska skatvieta" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "IzvÄ“lÄ“ties vienu zvaigznÄju" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Pagriezt nosaukumus" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "ApmainÄ«t vietÄm vertikÄlÄs un horizontÄlÄs attÄ“la apvÄ“rÅ¡anas pogas" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "ParÄdÄ«t attÄ“la apvÄ“rÅ¡anas pogas" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "EkrÄnattÄ“li" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "EkrÄnattÄ“lu direktorija" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "InvertÄ“t krÄsas" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Zvaigžņu katalogu jauninÄjumi" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "LejupielÄdÄ“jiet Å¡o failu, lai redzÄ“tu vÄ“l vairÄk zvaigžņu" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Atcelt" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "IelÄdÄ“t programmas sÄkumÄ" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "iestatÄ«t" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Galvenie" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "InformÄcija" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "NavigÄcija" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "RÄ«ki" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Spraudņi" @@ -4409,176 +4636,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "IestatÄ«t &okulÄrus" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4650,64 +4877,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4715,7 +4947,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4726,14 +4958,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4742,305 +4974,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "ApvÄ“rst horizontÄli" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "ApvÄ“rst vertikÄli" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5048,25 +5349,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5074,17 +5375,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5092,41 +5393,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5134,338 +5437,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Nosaukumi" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" -msgstr "AttÄ“lot iezÄ«mÄ“tos pavadoņus" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" -msgstr "AttÄ“lot iezÄ«mÄ“to pavadoņu orbÄ«tas" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Noņemt iezÄ«mÄ“tos pavadoņus" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" +msgstr "AttÄ“lot iezÄ«mÄ“tos pavadoņus" + +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" +msgstr "AttÄ“lot iezÄ«mÄ“to pavadoņu orbÄ«tas" + +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Noņemt iezÄ«mÄ“tos pavadoņus" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Noņemt iezÄ«mÄ“to avotu" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5501,22 +5847,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "PÄrvietot teleskopu #%1 uz iezÄ«mÄ“to objektu" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5899,62 +6245,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6108,7 +6454,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6126,7 +6472,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6142,154 +6488,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Valoda" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Galaktikas ekvatora plaknes lÄ«nija" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6322,22 +6668,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6506,40 +6852,43 @@ msgid "Solar System" msgstr "Saules SistÄ“ma" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "VÄ“sturiskÄs supernovas" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Spraudnis, kurÅ¡ attÄ“lo vairÄkas vÄ“sturiskÄs supernovas, kuru redzamais " -"zvaigžņlielums ir mazÄks par 10." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Supernovas tips: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "VÄ“sturisko supernovu spraudnis" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Spraudnis, kurÅ¡ attÄ“lo vairÄkas vÄ“sturiskÄs supernovas, kuru redzamais " -"zvaigžņlielums ir mazÄks par 10: " #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6557,7 +6906,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6571,14 +6920,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6586,8 +6935,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6605,29 +6955,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6643,51 +7070,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6807,11 +7244,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6819,137 +7256,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "EksoplanÄ“tas" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Masa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "RÄdiuss" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "EfektÄ«vÄ temperatÅ«ra: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "EksoplanÄ“ta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Periods" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dienas" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU (astr.vien.)" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "EkscentricitÄte" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "InklinÄcija" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6957,49 +7398,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7015,185 +7545,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7602,6 +8126,12 @@ #~ msgid "Obliquity (of date): %1" #~ msgstr "SlÄ«pums (datumam): %1" +#~ msgid "Nebulas" +#~ msgstr "MiglÄji" + +#~ msgid "Nebulas background images" +#~ msgstr "MiglÄju fona attÄ“li" + #~ msgid "Hourly zenith rate:" #~ msgstr "ZenÄ«ta intensitÄte stundÄ" @@ -7678,6 +8208,20 @@ #~ "Supernovas uzliesmojums, kuru 1572. gadÄ novÄ“roja Tiho Brahe. Lai vÄ“rotu " #~ "demonstrÄciju, ir jÄieslÄ“dz supernovu spraudnis." +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Spraudnis, kurÅ¡ attÄ“lo vairÄkas vÄ“sturiskÄs supernovas, kuru redzamais " +#~ "zvaigžņlielums ir mazÄks par 10." + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Spraudnis, kurÅ¡ attÄ“lo vairÄkas vÄ“sturiskÄs supernovas, kuru redzamais " +#~ "zvaigžņlielums ir mazÄks par 10: " + #~ msgid "Other" #~ msgstr "Citi iestatÄ«jumi" diff -Nru stellarium-0.12.1/po/stellarium/mi.po stellarium-0.12.4/po/stellarium/mi.po --- stellarium-0.12.1/po/stellarium/mi.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/mi.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-12-26 14:05+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Maori \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:16+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "weherua" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "KÄore i mohiotia" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "PÅhÄ“hÄ“" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Raihana" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Matapihi" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Tama-nui-te-RÄ" @@ -1209,12 +1320,12 @@ msgstr "Papa-tÅ«-Ä-nuku" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "TÅ«-mata-uenga" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Rongo" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Reo KÅrea" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Reo MÄori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Nanahi" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Ä€natÅra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Te Kotahitanga o NgÄ Ariki ArÄpia" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "AwhekenetÄna" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "NgÄ Moutere Nehe me Papura" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Ä€nakuira" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Arapaina" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Ä€menia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "AnatÄ«a o HÅrana" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Anakora" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Te KÅpakatanga ki te Tonga" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Ä€ketina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "HÄmoa Amerikana" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Atiria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Ahitereiria" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Arupa" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "AhapaiÄna" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "PÄpatohe" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "PÄkaratÄ“hi" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Pehiamu" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Pekina Whaho" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "PurukÄria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "PÄreina" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Puruniti" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "PÄ“nina" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "PÄmura" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Purunai Taruharama" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Poriwia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Parahi" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "PÄhama" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "PutÄna" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Motu Puwei" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Potiwana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "PÄ“raruha" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "PÄ“rihi" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "KÄnata" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Whenua o Awherika PÅ«" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Huiterangi" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Kuki Airani" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Hiri" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "KamerÅ«na" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Haina" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "KorÅmopia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Koto Rika" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "HÄ“pia me MonotenÄ“ro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kupa" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "KÅ«rae KÄkÄriki" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Motu Kirihimete" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Haipara" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Whenua o TaikarowÄkia" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Tiamana" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "TÄ«pÅ«ti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Tenemaka" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Tominika" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Whenua o Tominika" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Aratiria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekuatoa" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Etonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Īhipa" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Hahara ki te Uru" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritereia" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Peina" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Hinerangi" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "WhÄ«tÄ«" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "NgÄ Motu o Wharo" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "WÄ«wÄ«" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Kaponi" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Te Hononga o Ingarangi" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "KerenÄra" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "HÅria" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Kiana o WÄ«wÄ«" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "KÄna" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "KÄmaka" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "WhenuakÄkÄriki" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Kamopia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "KÄ«ni" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Kuarerupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Kini ki te Pae o te Ao" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "KÄrihi" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Kuatamara" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Kuama" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Kaiana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hongipua" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honotura" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "KoroÄtia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hanekari" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "InitonÄ«hia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Airana" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Iharaira" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Īnia" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Rohe Peretania o te Moana Iniani" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "IrÄki" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Tiorangi" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Itari" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Hamaika" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Horano" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "HÄpana" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "KehitÄna" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "KamopÅtia" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiripati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komorohi" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Hato Kere me Newihi" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "KÅ«weiti" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "NgÄ Moutere Keimana" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "KatatÄnga" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Repanona" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Hato RÅ«iha" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Rikitaina" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Hiri RÄnaka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Raipiria" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Teroto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "RehuÄnia" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "RakapuÅ" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "RÄwhia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Ripia" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marako" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "MarakÄhaka" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "NgÄ Moutere MÄhara" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "MÄri" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "PÄ“ma" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "MonokÅria" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "NgÄ Motu Mariana ki te Raki" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "MÄtiniki" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "MauritÄnia" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Manetera" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "MÄrata" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Marihi" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "MaratÄ«wi" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Marawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mehiko" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Mareia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mohapiki" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namipia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Kanaki" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "NgÄika" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Te Moutere NÅpoke" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "NgÄitiria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "NikarÄhua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "HÅrana" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Nowei" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Neporo" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Aotearoa" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Omana" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Porinihia WÄ«wÄ«" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Niu KÄ«ni" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Piripini" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "PakitÄne" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "PÅrana" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Hato PÄ“tera me Mikarona" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "NgÄ Motu o PitikÄ“ne" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Peta Riko" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Potukara" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "PÄrao" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Parakai" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "KatÄ" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romeinia" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "RÅ«hia" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "RÄwana" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Hauti Arapia" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "NgÄ Motu Horomona" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Heikere" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "HÅ«tÄne" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Huitene" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Hingapoa" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Hato HÄ“rena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Horowinia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "HarapÄ me Hana Matena" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "HorowÄkia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Te Araone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Hana Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Henekara" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "HÅ«mÄrie" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Hurinamo" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Hao Tome me Pirihipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Te Whakaora (EtÄwatoa)" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Hiria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Warirangi" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "NgÄ Motu Koru-KÄkoa" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "KÄta" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "NgÄ Rohe WÄ«wÄ« ki te Tonga" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Toko" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Taiwhenua" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "TahikitÄna" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokerau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "TukumanatÄnga" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunihia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Korukoru" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Tirinaki-TÅpako" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "TÅ«waru" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwana" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukareina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "UkÄnga" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "NgÄ Moutere KÄiti o Wahotata" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Te Hononga o Amerika" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Urukoi" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uhipeketane" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "PenehÅ«era" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "WhitinÄmu" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "WhenuatÅ«" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "WÄrihi me Whutuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "HÄmoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Īemene" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Maiota" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Awherika ki te Tonga" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "TÄmipia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Timuwawe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "pihao" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "weherua" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/mk.po stellarium-0.12.4/po/stellarium/mk.po --- stellarium-0.12.1/po/stellarium/mk.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/mk.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-01-11 10:05+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Macedonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:16+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Меридијан" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Еклиптичен" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Екватор" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Хоризонт" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Ðвтор: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Локација: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 м" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Планета: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Тип: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Магнитуда: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Големина: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "ГалакÑија" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Отворено јато" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Затворено јато" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Маглина" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Планетарна магнина" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Јато придружено Ñо маглина" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Ðепознато" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Ðедокументиран тип" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "ÐпÑолутна магнитуда: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "ОддалеченоÑÑ‚: %1ае" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Привиден дијаметар: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Спектрален Тип: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "ОддалеченоÑÑ‚: %1 ÑветлинÑки години" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ПаралакÑа: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -655,52 +747,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Одбери папка за Ñлика од екранот" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Почетно видно поле: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Почетна наÑока на видикот ази/виÑ: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Ðвтори" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Контакт" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Ðвтор" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Лиценца" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Работна Ñкрипта: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Работна Ñкрипта: [ниедна]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -708,16 +801,16 @@ "Завршив Ñо превземање на нови ѕвездени каталози! \n" "Повторно Ñтартувај го Стелариум за да Ñе прикажат." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Земи каталог %1 од %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -726,7 +819,7 @@ "Превземам %1...\n" "(Можеш да го затвориш овој прозорец.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -734,7 +827,7 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -743,11 +836,11 @@ "Грешка при превземањето %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Проверувам интегритет на датотеки..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -757,115 +850,123 @@ "Датотеката е корумпирана." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1030,49 +1131,53 @@ msgid "OSX Developer: %1" msgstr "OSX развивач: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Прозорец за Ñкриптна конзола" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Прозорци" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Празно меÑто" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1м" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ðема опиÑ" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Ðема ѕвезди кои паѓаат" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Ðормална Ñтапка" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Стандардна Ñтапка на ПерÑеиди" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "ОÑобено јака Ñтапка на Леониди" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "ÐајвиÑока Ñтапка на Ñите времиња (1966 Леониди)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Ðова локација" @@ -1175,19 +1280,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1203,30 +1308,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Овој ÑиÑтем не поддржува OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Сонце" @@ -1243,12 +1354,12 @@ msgstr "Земја" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "МеÑечина" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "МарÑ" @@ -1346,7 +1457,7 @@ msgstr "МетиÑ" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Сатурн" @@ -1644,239 +1755,268 @@ msgstr "ИнуитÑки" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "КорејÑки" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Лакота" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Маори" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Ðавахо" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "ÐордиÑки" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "ПолинезиÑки" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Тупи-Гуарани" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Западни" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Ураган" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1886,1502 +2026,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Ðндора" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Обединети ÐрабÑки Емирати" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ÐфганиÑтан" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Ðнтигва и Барбуда" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Ðнгила" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Ðлбанија" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Ðрменија" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "ХоландÑки Ðнтили" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Ðнгола" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Ðнтарктик" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Ðргентина" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Ðмерички Самоа" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ÐвÑтрија" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ÐвÑтралија" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Ðруба" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Ðзербејџан" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "БарбадоÑ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Бангладеш" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Белгија" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркина ФаÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Бугарија" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Бахреин" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Бурунди" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Бенин" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Бермуда" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Брунеи ДаруÑалам" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Боливија" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Бразил" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Бахами" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "ОÑтров Буве" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Боцвана" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "БелоруÑија" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Белизе" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Канада" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "КокоÑови оÑтрови" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "ДемократÑка Република Конго" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Централно ÐфроканÑка Република" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Република Конго" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Швајцарија" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Брег на Слоновата КоÑка" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Кук оÑтрови" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Чиле" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Камерун" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Кина" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Колумбија" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "КоÑта Рика" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Србија и Црна Гора" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Куба" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Капе Верде" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "ВелигденÑки ОÑтрови" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Кипар" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Чешка република" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Германија" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Ðибути" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "ДанÑка" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Доминика" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "ДоминиканÑка Република" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ðлжир" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Еквадор" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "ЕÑтонија" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Египет" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Западна Сахара" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Еритреја" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Шпанија" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Етиопија" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ФинÑка" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Фиџи" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ФокландÑки оÑтрови" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Микронезија" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "ФарÑки оÑтрови" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Франција" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Габон" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Велика Британија" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Гренада" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Грузија" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "ФранцуÑка Гвинеја" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Гана" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Гибралтар" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Гренланд" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Гамбија" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Гвинеја" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Гваделупе" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "ЕкваторÑка Гвинеја" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Грција" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Јужна Ðорџија и Јужните Сендвич оÑтрови" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Гватемала" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Гуам" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Гвинеја-БиÑау" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Гвајана" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Хонг Конг" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "ХердÑки оÑтрови и МекДоналд оÑтрови" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ХондураÑ" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "ХрватÑка" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Хаити" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Унгарија" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Индонезија" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ИрÑка" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Израел" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Индија" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "БританÑко-индиÑка ОкеанÑка Територија" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ирак" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Иран" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ИÑланд" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Италија" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Јамајка" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Јордан" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Јапонија" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Кениа" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "КиргиÑтан" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Камбоџа" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Кирибати" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "КоморÑки оÑтрови" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Свет ÐšÐ¸Ñ‚Ñ Ð¸ ÐевиÑ" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "ДемократÑка Ðародна Република Кореја" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Република Кореја" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Кувајт" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "КајманÑки оÑтрови" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "КазакÑтан" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "ЛаоÑ" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Либан" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Света Луција" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Лихтенштајн" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Шри Ланка" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Либерија" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ЛеÑото" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Литванија" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ЛукÑембург" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Латвија" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "ЛибиÑка ÐрапÑка Ðамахирија" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Мароко" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Монако" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Молдавија" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "МадагаÑкар" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Маршалови оÑтрови" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Македонија" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Мали" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Мјанмар" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Монголија" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Макао" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Северни МаријанÑки оÑтрови" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Мартиник" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Мавританија" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "МонÑерат" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Малта" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "МаурициуÑ" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "МалдивÑки оÑтрови" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Малави" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "МекÑико" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Малезија" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Мозамбик" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Ðамибија" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Ðова Каледонија" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Ðигер" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Ðорфолшки оÑтров" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Ðигерија" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Ðикарагва" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Холандија" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Ðорвешка" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Ðепал" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Ðауру" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Ðиуе" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Ðов Зеланд" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Оман" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Панама" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Перу" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "ФранцуÑка Полинезија" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Папуа Ðова Гвинеја" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Филипини" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ПакиÑтан" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "ПолÑка" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Свети Пјер и Микелон" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Питкерн" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Пуерто Рико" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Португалија" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Палау" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Парагвај" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Катар" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Реунион" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Романија" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Србија" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "РуÑка федерација" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Руанда" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "СаудиÑка Ðрабија" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "СоломонÑки оÑтрови" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Сејшели" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Судан" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ШведÑка" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Сингапур" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Света Елена" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Словенија" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Свалбард и Јан Мајен" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Словачка" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Сиера Леоне" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Сан Марино" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Сенгал" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Сомалија" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Суринам" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Сао Томе и Принципе" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Ел Салвадор" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "СиријÑка ÐрапÑка Република" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Свазиленд" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Ð¢ÑƒÑ€ÐºÑ Ð¸ ÐšÐ°Ð¸ÐºÐ¾Ñ Ð¾Ñтрови" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Чад" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "ФранцуÑки Јужни Територии" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Того" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Тајланд" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ТаџикиÑтан" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Токелау" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "ИÑточен Тимор" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ТуркмениÑтан" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ТуниÑ" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Тонга" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Турција" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Тринидад и Тобаго" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Тувалу" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Тајван" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Танзанија" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Украина" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Уганда" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "СÐД мали оÑтрови" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Соединетите ÐмериканÑки Држави" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Уругвај" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "УзбекиÑтан" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Ватикан" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Свет ВинÑент и Гренадините" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Венецуела" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "БританÑки девÑтвени оÑтрови" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "СÐД девÑтвени оÑтрови" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Виетнам" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Вануату" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Ð’Ð°Ð»Ð¸Ñ Ð¸ Футуна" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Самоа" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Јемен" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Мајоте" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ЈугоÑлавија" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Јужна Ðфрика" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Замбија" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Зимбабве" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Датум и време" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Додај 1 Ñидерички ден" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Додај 1 Ñидеричка недела" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Додај 1 Ñончев ден" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Додај 1 Ñончев чаÑ" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Додај 1 Ñончева недела" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Забави ја Ñтапката на извршување на Ñкриптата" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Ðамали брзина на време" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Ðамали брзина на време (малку)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Забрзај ја Ñтапката на извршување на Ñкриптата" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Зголеми брзина на време" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Зголеми брзина на време (малку)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "ПоÑтави време како Ñегашното" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "ПоÑтави ја нормалната Ñтапка на извршување на Ñкриптата" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "ПоÑтави нормална брзина на време" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "ПоÑтави временÑка Ñтапка на нула" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Одземи 1 Ñидерички ден" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Одземи 1 Ñидеричка недела" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Одземи 1 Ñончев ден" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Одземи 1 Ñончев чаÑ" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Одземи 1 Ñончева недела" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "МожноÑти на приказ" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Префрли ја Ñцената хоризонтално" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Режим на цел екран" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "ÐтмоÑфера" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Ðзимутална мрежа" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Кардинални точки" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Цртежи на Ñоѕвездија" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Граници на Ñоѕвездија" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Имиња на Ñоѕвездија" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Линии на Ñоѕвездија" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "ПозадинÑки Ñлики на маглини" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Еклиптичка линија" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Екваторијална линија" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Екваторијална мрежа" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Екваторијална J2000 мрежа" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Магла" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Тло" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "МеридијанÑка линија" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Маглини" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Ðоќен режим" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Ѕвезди" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Префрли ја Ñцената вертикално" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Разно" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "ÐвтоматÑки Ñокри ја хоризонталната лента Ñо копчиња" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "ÐвтоматÑки Ñокри ја вертикалната лента Ñо копчиња" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Излези" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Сними Ñлика од екранот" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Префрли помеѓу екваторијална и азимутална монтажа" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Движење и избор" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Центрирај на одбраниот објект" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Одбраната планета поÑтави ја како домашна" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Следи го објектот" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Зголеми го одбраниот објект" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Ðамали" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Скрипти" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "КонфигурациÑки прозорец" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Прозорец за датум / време" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Прозорец за помош" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Прозорец за локација" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Прозорец за пребаување" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Прозорец за можноÑти за приказ и небо" @@ -3407,7 +3583,7 @@ msgstr "ОÑвежи" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Локација" @@ -3423,10 +3599,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Избриши" @@ -3435,7 +3611,7 @@ msgstr "Додади на лиÑта" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Ширина:" @@ -3448,12 +3624,12 @@ "облик, како на пример: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Должина:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "ВиÑина:" @@ -3477,363 +3653,407 @@ msgid "Planet:" msgstr "Планета:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Пронајди објект" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "РектаÑцензија/Деклинација (Ј2000)" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Опции" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Опции" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Поглед" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Ðебо" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Ознаки" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "ПејÑаж" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "ÐÑтромитологија" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Ознаки и обележувачи" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Планети" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Планети и Ñателити" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Прикажи планети" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Прикажи обележувачи на планети" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Прикажи планетарни орбити" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Симулирај брзина на Ñветлина" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Прикажи ја МеÑечината во размер" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Прикажи атмоÑфера" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "ÐпÑолутна Ñкала:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Релативна Ñкала:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Треперење:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Затемни ги бледите ѕвезди кога е видлив многу Ñветол објект" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Динамичко прилагодување на окото" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Ѕвезди кои паѓаат" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Соѕвездија" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Прикажи линии" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Прикажи имиња" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Прикажи граници" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Прикажи цртежи" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ÐебеÑна Ñфера" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Проекција" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Прикажи тло" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Прикажи магла" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "КориÑти здружена планета и позиција" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "КориÑти го овој пејÑаж како почетен" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "КориÑти ја оваа небеÑна култура како почетна" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Видливо" @@ -3888,7 +4108,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "ÐаÑока на гледање кога Ñе Ñтартува Стелариум" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Информација за избраниот објект" @@ -3904,11 +4124,8 @@ msgid "Display no information" msgstr "Ðе прикажувај информации" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ðишто" @@ -4052,7 +4269,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Датум и време при Ñтартување" @@ -4064,19 +4281,23 @@ msgid "Other:" msgstr "Друго:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "кориÑти го моменталното" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Стартувај го Стелариум Ñпоред ÑиÑтемÑкиот датум и време" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "СиÑтемÑки датум и време" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4084,23 +4305,23 @@ "ПоÑтави го ÑимулациÑкото време Ñледниот пат кога ќе Ñе Ñтартува Стелариум " "како овој дел од денот" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "СиÑтемÑки датум на:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "ПланератиумÑки опции" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4108,52 +4329,52 @@ "Сферно огледална диÑторзија Ñе кориÑти кога Стелариум Ñе проектира на Ñферно " "огледало за ефтини планетариумÑки ÑÑтеми." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Сферна огледална диÑторзија" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "МаÑкирај ÑÑ Ð½Ð°Ð´Ð²Ð¾Ñ€ од централниот круг во главниот поглед" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "ДиÑк прозорец" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Сокри ги другите Ñоѕвездија кога ќе кликнеш на некое" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Избери едно Ñоѕвездие" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Порамнување на имињата Ñо хоризонтот" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "ГравитациÑки имиња" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" "Смени помеѓу копчињата за вертикално и хоризонтално превртување Ñлика" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Прикажи ги копчињата за превртување" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4161,93 +4382,99 @@ "Кога е овозможено, \"автоматÑкото намалување (zoom out)\" иÑто така ќе ја " "поÑтави почетната наÑока на гледање" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" "ÐвтоматÑкото намалување (zoom out) враќа на почетната наÑока на гледање" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Слики од екранот" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Именик Ñо Ñлики од екранот" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Инвертирај бои" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Ðова верзија на ѕвезден каталог" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Кликни тука да започне преземањето" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Преземи ја оваа датотека за поглед на уште повеќе ѕвезди" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "РеÑтартирај го превземањето" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Обиди Ñе повторно" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Запри го преземањето. Подоцна Ñекогаш може да Ñе реÑтартира" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Откажи" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Затвори го прозорецот кога Ñкриптата Ñе извршува" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Изврши ја избраната Ñкрипта" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Запри извршување на Ñкрипта" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Вчитај при Ñтартување" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Главно" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Информација" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Ðавигација" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Ðлатки" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Приклучоци" @@ -4415,176 +4642,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4656,64 +4883,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4721,7 +4953,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4732,14 +4964,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4748,305 +4980,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5054,25 +5355,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5080,17 +5381,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5098,41 +5399,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5140,338 +5443,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5507,22 +5853,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "ТелеÑкопÑко управување" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5905,62 +6251,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6114,7 +6460,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6132,7 +6478,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6148,154 +6494,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Јазици" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6328,22 +6674,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6512,36 +6858,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6559,7 +6912,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6573,14 +6926,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6588,8 +6941,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6607,29 +6961,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6645,51 +7076,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6809,11 +7250,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6821,137 +7262,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6959,49 +7404,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7017,185 +7551,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7591,6 +8119,12 @@ #~ msgid "When a Script is Running" #~ msgstr "Кога Ñкрипта работи" +#~ msgid "Nebulas" +#~ msgstr "Маглини" + +#~ msgid "Nebulas background images" +#~ msgstr "ПозадинÑки Ñлики на маглини" + #~ msgid "Planets labels" #~ msgstr "Имиња на планети" diff -Nru stellarium-0.12.1/po/stellarium/ml.po stellarium-0.12.4/po/stellarium/ml.po --- stellarium-0.12.1/po/stellarium/ml.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ml.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-12-20 17:38+0000\n" "Last-Translator: Noble P Abraham \n" "Language-Team: Malayalam \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:16+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "മേരീഡിയനàµâ€" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "à´•àµà´°à´¾à´¨àµà´¤à´¿à´µàµƒà´¤àµà´¤à´‚" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "ഭൂമധàµà´¯à´°àµ‡à´–" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "à´šà´•àµà´°à´µà´¾à´³à´‚" @@ -37,47 +37,47 @@ msgid "Galactic Plane" msgstr "താരാപഥതലം" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "ലേഖകനàµâ€ " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "à´¸àµà´¥à´¾à´¨à´‚: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "à´—àµà´°à´¹à´‚: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "തരം: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" "ദൃശàµà´¯à´•à´¾à´¨àµà´¤à´¿à´®à´¾à´¨à´‚: %1 (à´Žà´•àµà´¸àµà´±àµà´±à´¿à´™àµà´·à´¨àµâ€ കാരണം %2 ആയിരികàµà´•àµà´¨àµà´¨àµ)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "കാനàµà´¤à´¿à´®à´¾à´¨à´‚: %1" @@ -87,114 +87,114 @@ msgid "Size: %1" msgstr "വലിപàµà´ªà´‚: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "താരാപഥം" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "à´¤àµà´±à´¨àµà´¨ താരവàµà´¯àµ‚ഹം" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "ഗോളീയ താരവàµà´¯àµ‚ഹം" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "നീഹാരിക" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "à´—àµà´°à´¹ നീഹാരിക" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "നീഹാരികയàµà´®à´¾à´¯à´¿ ചേരàµâ€à´¨àµà´¨ നകàµà´·à´¤àµà´°à´•àµà´•àµ‚à´Ÿàµà´Ÿà´‚" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "à´…à´œàµà´žà´¾à´¤à´‚" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "രേഖപàµà´ªàµ†à´Ÿàµà´¤àµà´¤à´¾à´¤àµà´¤ തരം" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "കേവല കാനàµà´¤à´¿à´®à´¾à´¨à´‚: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "ദൂരം: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "ദൂരം: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "ദൃശàµà´¯ à´µàµà´¯à´¾à´¸à´‚: %1, വലയങàµà´™à´³àµ† കണകàµà´•à´¿à´²àµ†à´Ÿàµà´¤àµà´¤à´¾à´²àµâ€: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "ദൃശàµà´¯ à´µàµà´¯à´¾à´¸à´‚: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "നാകàµà´·à´¤àµà´°à´¦à´¿à´¨à´‚: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -205,7 +205,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -220,47 +220,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "വരàµâ€à´£à´°à´¾à´œà´¿ ഗണം: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "ദൂരം: %1 à´ªàµà´°à´•à´¾à´¶ വരàµâ€à´·à´™àµà´™à´³àµâ€" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ദൃഗàµâ€Œà´­àµà´°à´‚ശം: %1" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "ആകാശകപàµà´ªà´²àµâ€" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -268,14 +343,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -284,14 +359,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -299,7 +374,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -307,14 +382,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -323,14 +398,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -338,25 +413,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -365,14 +440,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -380,42 +455,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -423,7 +498,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -431,7 +506,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -440,7 +515,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -450,45 +525,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "പിഴവàµ" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -649,52 +741,53 @@ msgid "Found" msgstr "ലഭàµà´¯à´®à´¾à´£àµ" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "à´¸àµà´•àµà´°àµ€à´¨àµâ€à´·àµ‹à´Ÿàµà´Ÿà´¿à´¨àµà´³àµà´³ ഡയറകàµà´Ÿà´±à´¿ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "à´¤àµà´Ÿà´•àµà´•à´¤àµà´¤à´¿à´²àµ† FOV: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "à´¤àµà´Ÿà´•àµà´•à´¤àµà´¤à´¿à´²àµ† വീകàµà´·à´£ ദിശ Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "രചയിതാകàµà´•à´³àµâ€" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "വിലാസം" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "രചയിതാവàµ" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "à´…à´¨àµà´®à´¤à´¿à´ªà´¤àµà´°à´‚" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´šàµà´šàµà´•àµŠà´£àµà´Ÿà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨ à´¸àµà´•àµà´°à´¿à´ªàµà´±àµà´±àµ: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´šàµà´šàµà´•àµŠà´£àµà´Ÿà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨ à´¸àµà´•àµà´°à´¿à´ªàµà´±àµà´±àµ: [ശൂനàµà´¯à´‚]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -703,16 +796,16 @@ "പൂരàµâ€à´¤àµà´¤àµ€à´•à´°à´¿à´šàµà´šà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ!\n" "à´…à´µ à´ªàµà´°à´¦à´°àµâ€à´¶à´¿à´ªàµà´ªà´¿à´•àµà´•àµà´µà´¾à´¨àµâ€ à´¸àµà´±àµà´±àµ†à´²àµà´²àµ‡à´±à´¿à´¯à´‚ റീസàµà´±àµà´±à´¾à´°àµâ€à´Ÿàµà´Ÿàµ ചെയàµà´¯àµà´•." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "ലഭàµà´¯à´®à´¾à´¯ നകàµà´·à´¤àµà´° കാറàµà´±à´²àµ‹à´—àµà´•à´³àµâ€ ഇനàµâ€à´¸àµà´±àµà´±à´¾à´³àµâ€ ചെയàµà´¤à´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "കാറàµà´±à´²àµ‹à´—ൠലഭàµà´¯à´®à´¾à´•àµà´•àµà´¨àµà´¨àµ %1 of %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -721,7 +814,7 @@ "%1 ഡൌണàµâ€à´²àµ‹à´¡àµ ചെയàµà´¤àµà´•àµŠà´£àµà´Ÿà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ...\n" "(à´ˆ ജാലകം à´…à´Ÿà´•àµà´•àµà´¨àµà´¨à´¤à´¿à´¨àµ à´•àµà´´à´ªàµà´ªà´®à´¿à´²àµà´².)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -732,7 +825,7 @@ "നകàµà´·à´¤àµà´°à´™àµà´™à´³àµà´Ÿàµ† à´Žà´£àµà´£à´‚: %2 മിലàµà´¯à´£àµâ€\n" "കാനàµà´¤à´¿à´®à´¾à´¨ പരിധി: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -741,11 +834,11 @@ "%1 ഡൌണàµâ€à´²àµ‹à´¡àµ ചെയàµà´¯àµà´¨àµà´¨à´¤à´¿à´²àµâ€ പിഴവàµ:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "à´ªàµà´°à´®à´¾à´£à´¤àµà´¤à´¿à´¨àµà´±àµ† സാധàµà´¤ പരിശോധിചàµà´šàµà´•àµŠà´£àµà´Ÿà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -755,115 +848,123 @@ "à´ªàµà´°à´®à´¾à´£à´‚ à´¦àµà´·à´¿à´šàµà´šà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1027,49 +1128,53 @@ msgid "OSX Developer: %1" msgstr "OSX രചയിതാവൠ: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "ജാലകങàµà´™à´³àµâ€" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "വിശദീകരണം ലഭàµà´¯à´®à´²àµà´²" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "കൊളàµà´³à´¿à´®àµ€à´¨àµà´•à´³àµâ€ ഇലàµà´²" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "സാധാരണ നിരകàµà´•àµ" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "ശരാശരി Perseids നിരകàµà´•àµ" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "അസാധാരണ ലിയനോയിഡൠനിരകàµà´•àµ" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "à´à´±àµà´±à´µàµà´‚ കൂടിയ നിരകàµà´•àµ (1966 ലെ ലിയനോയിഡൠ)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "à´ªàµà´¤à´¿à´¯ à´¸àµà´¥à´¾à´¨à´‚" @@ -1172,19 +1277,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "à´¸àµà´Ÿàµà´°à´¾à´¸àµà´¬àµŒà´°àµâ€à´—ൠസർവàµà´µà´•à´²à´¾à´¶à´¾à´² (à´«àµà´°à´¾àµ»à´¸àµ)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "ഹാരàµâ€à´µà´¾à´°àµâ€à´¡àµ സർവàµà´µà´•à´²à´¾à´¶à´¾à´² (à´¯àµ.à´Žà´¸àµâ€Œ.à´Ž)" @@ -1200,30 +1305,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "à´ˆ സിസàµà´±àµà´±à´‚ OpenGL പിനàµà´¤à´¾à´™àµà´™àµà´¨àµà´¨à´¿à´²àµà´²" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "സൂരàµà´¯à´¨àµâ€" @@ -1240,12 +1351,12 @@ msgstr "ഭൂമി" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "à´šà´¨àµà´¦àµà´°à´¨àµâ€" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "ചൊവàµà´µ" @@ -1343,7 +1454,7 @@ msgstr "മെറàµà´±à´¿à´¸àµ" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "ശനി" @@ -1641,239 +1752,268 @@ msgstr "à´§àµà´°àµà´µàµà´µà´ªàµà´°à´¦àµ‡à´¶ ഭാഷ" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "കൊറിയനàµâ€" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "ലകàµà´•àµ‹à´Ÿàµà´Ÿ" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "മാവോരി" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "നവാജോ" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "നോഴàµà´¸àµ" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "പോളിനേഷàµà´¯à´¨àµâ€" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "സമി" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "à´¤àµà´ªà´¿-à´—àµà´µà´±à´¾à´¨à´¿" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "പാശàµà´šà´¾à´¤àµà´¯à´‚" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "à´—àµà´¯àµ‚റൈൻസàµ" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "à´šàµà´´à´²à´¿à´•àµà´•à´¾à´±àµà´±àµ" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "സമàµà´¦àµà´°à´‚" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "ഗാരàµâ€à´¹à´¿à´‚à´—àµ" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "സമàµà´ªàµ‚ർണàµà´£à´šà´¨àµà´¦àµà´°à´—àµà´°à´¹à´£à´‚" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "à´¸àµâ€Œà´•àµà´°àµ€à´¨àµâ€à´¸àµ‡à´µà´°àµâ€" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "സൂരàµà´¯à´—àµà´°à´¹à´£à´‚ 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "രാശിചകàµà´°à´‚" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1883,1502 +2023,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "à´…à´¨àµâ€à´¡àµ‹à´±à´¾" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "à´¯àµà´£àµˆà´±àµà´±à´¡àµ അറബൠഎമിറേറàµà´±àµà´¸àµ" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "à´…à´«àµà´—ാനിസàµà´¥à´¾à´¨àµâ€" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "ആനàµà´±à´¿à´—àµà´µà´¾ ആനàµâ€à´¡àµ ബാരàµâ€à´¬àµà´¡" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "ആനàµâ€à´—àµà´µà´¿à´²" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "à´…à´²àµâ€à´¬àµ‡à´¨à´¿à´¯" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "à´…à´°àµâ€à´®àµ‡à´¨à´¿à´¯" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "നെതരàµâ€à´²à´¨àµâ€à´¡àµà´¸àµ ആനàµà´±à´¿à´²à´¸àµ" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "അംഗോള" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "à´…à´¨àµà´±à´¾à´°àµâ€à´Ÿàµà´Ÿà´¿à´•àµà´•" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "à´…à´°àµâ€à´œà´¨àµà´±àµ€à´¨" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "അമേരികàµà´•à´¨àµâ€ സമോവ" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "à´“à´¸àµâ€Œà´Ÿàµà´°à´¿à´¯" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "à´“à´¸àµâ€Œà´Ÿàµà´°àµ‡à´²à´¿à´¯" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "അറൂബ" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "അസ‌രàµâ€à´¬àµˆà´œà´¾à´¨àµâ€" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "ബോസàµà´¨à´¿à´¯ ആനàµà´±àµ ഹെർസെഗോവിന" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "ബാരàµâ€à´¬à´¾à´¡àµ‹à´¸àµ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "ബംഗàµà´³à´¾à´¦àµ‡à´¶àµ" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "ബെൽജിയം" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "ബർകàµà´•à´¿à´¨à´¾ ഫാസോ" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "ബളàµâ€à´—േറിയ" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "ബഹറിനàµâ€" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "ബറàµà´£àµà´Ÿà´¿" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "ബെനിനàµâ€" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "ബെർമàµà´¡" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "à´¬àµà´°àµ‚ണെയൠദാറàµà´¸àµà´¸à´²à´¾à´‚" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "ബൊളീവിയ" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "à´¬àµà´°à´¸àµ€àµ½" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "ബഹാമാസàµ" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "ഭൂടàµà´Ÿà´¾à´¨àµâ€" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "ബോടàµà´¸àµà´µà´¾à´¨" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "ബെലാറസàµ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "ബെലീസàµ" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "കാനഡ" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "കൊകോസൠദàµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "ഡെമോകàµà´°à´¾à´±àµà´±à´¿à´•àµ റിപബàµà´²à´¿à´•àµ ഓഫൠകോംഗോ" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "മദàµà´§àµà´¯ ആഫàµà´°à´¿à´•àµà´•àµ» റിപàµà´ªà´¬àµà´²à´¿à´•àµà´•àµ" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "റിപബàµà´²à´¿à´•àµ ഓഫൠദി കോംഗോ" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "à´¸àµà´µà´¿à´±àµà´±àµà´¸â€Œà´°àµâ€à´²à´¾à´¨àµâ€à´¡àµ" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "കോടàµà´Ÿàµ‡ ഡെലàµâ€â€à´µàµ‹à´¯à´¿à´°àµâ€" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "à´•àµà´•àµà´•àµ à´¦àµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "ചിലി" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "കാമറൂൺ" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "ചൈന" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "കൊളംബിയ‌" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "കോസàµà´±àµà´± റീകàµà´•" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "സെരàµâ€à´¬à´¿à´¯à´¯àµà´‚ മോണàµà´Ÿà´¿à´¨àµ†à´—àµà´°àµ‹à´¯àµà´‚" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "à´•àµà´¯àµ‚à´¬" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "കേപൠവെരàµâ€à´¡àµ†" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "à´•àµà´°à´¿à´¸àµà´¤àµà´®à´¸àµ à´¦àµà´µàµ€à´ªàµ" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "സൈപàµà´°à´¸àµà´¸àµ" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ചെകàµà´•àµâ€Œ റിപàµà´ªà´¬àµà´²à´¿à´•àµà´•àµâ€Œ" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "ജ‌രàµâ€à´®àµà´®à´¨à´¿" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "ജിബൌടàµà´Ÿà´¿" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "ഡെനàµà´®à´¾àµ¼à´•àµà´•àµ" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "‌ഡൊമിനികàµà´•" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "‌ഡൊമിനികàµà´•à´¨àµâ€ റിപബàµà´²à´¿à´•àµà´•àµ" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "à´…à´³àµâ€à´œàµ€à´°à´¿à´¯" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "ഇകàµà´•àµà´µà´¡àµ‹à´°àµâ€" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "à´Žà´¸àµà´±àµà´±àµ‹à´£à´¿à´¯" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "ഈജിപàµà´¤àµ" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "പശàµà´šà´¿à´® സഹാറ" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "എറിടàµà´°à´¿à´¯" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "à´¸àµà´ªàµ†à´¯à´¿à´¨àµâ€" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "à´Žà´¤àµà´¯àµ‹à´ªàµà´¯" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "à´«à´¿à´¨àµâ€à´²à´¾à´¨àµà´±àµ" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "ഫിജി" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ഫാകàµâ€Œà´²à´¾à´¨àµâ€à´¡àµ à´¦àµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "മൈകàµà´°àµ‹à´£àµ‡à´·àµà´¯" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "ഫാറോ à´¦àµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "à´«àµà´°à´¾à´¨àµâ€à´¸àµ" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "ഗാബോണàµâ€" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "à´¯àµà´£àµˆà´±àµà´±à´¡àµ à´•à´¿à´™àµà´¡à´‚" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "à´—àµà´°à´¨à´¾à´¡" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ജോരàµâ€à´œà´¿à´¯" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "à´«àµà´°à´žàµà´šàµ ഗയാന" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "ഘാന" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "ജിബàµà´°à´¾à´³àµâ€à´Ÿàµà´Ÿà´°àµâ€" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "à´—àµà´°àµ€à´¨àµâ€à´²à´¾à´¨àµâ€à´¡àµ" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "ഗാംബിയ" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "ഗിനി" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "à´—àµà´µà´¾à´¡àµ†à´²àµ‹à´ªàµ" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "ഇകàµà´µà´±àµà´±àµ‹à´±à´¿à´¯àµ½ ഗിനി" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "à´—àµà´°àµ€à´¸àµ" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "തെകàµà´•à´¨àµâ€ ജോരàµâ€à´œà´¿à´¯à´¯àµà´‚ തെകàµà´•à´¨àµâ€ സാനàµâ€à´¡àµâ€Œà´µà´¿à´šàµà´šàµà´‚ à´¦àµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "à´—àµà´µà´¾à´Ÿàµà´Ÿà´¿à´®à´¾à´²" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "à´—àµà´µà´¾à´‚" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "ഗിനി-ബിസൗ" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "ഗയാന" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "ഹോങàµà´•àµ‹à´™àµ" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "ഹെരàµâ€à´¡àµ à´¦àµà´µàµ€à´ªàµà´‚ മകàµà´¡àµŠà´£à´¾à´³àµâ€à´¡àµ à´¦àµà´µàµ€à´ªàµà´•à´³àµà´‚" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ഹോണàµà´Ÿàµà´±à´¾à´¸àµ" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "à´•àµà´°àµ‹à´¯àµ‡à´·àµà´¯" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "ഹെയàµâ€Œà´±àµà´±à´¿" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "ഹംഗറി" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "ഇനàµâ€à´¡àµ‹à´¨àµ‡à´·àµà´¯" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "അയർലണàµà´Ÿàµ" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "ഇസàµà´°à´¯àµ‡àµ½" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ഇനàµà´¤àµà´¯" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "à´¬àµà´°à´¿à´Ÿàµà´Ÿàµ€à´·àµ ഇനàµà´¤àµà´¯à´¨àµâ€ മഹാസമàµà´¦àµà´° à´ªàµà´°à´¦àµ‡à´¶à´‚" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "ഇറാഖàµâ€Œ" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "ഇറാൻ" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "à´à´¸àµâ€Œà´²à´¾à´¨àµà´±àµ" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ഇറàµà´±à´²à´¿â€Œ" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "ജമൈകàµà´•" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "ജോരàµâ€à´¦à´¾à´¨àµâ€" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "ജപàµà´ªà´¾àµ»" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "കെ നി à´¯" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "കിർഗàµà´—à´¿à´¸àµà´¥à´¾àµ»" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "കംബോഡിയ" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "കിരീബാസàµ" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "കൊമോറസàµ" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "സെയàµà´¨àµà´±àµ à´•à´¿à´±àµà´±àµà´¸àµ നീവസàµ" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "ഡെമോകàµà´°à´¾à´±àµà´±à´¿à´•àµ പീപàµà´ªà´¿à´³àµâ€à´¸àµ റിപàµà´ªà´¬àµà´²à´¿à´•àµ ഓഫൠകൊറിയ" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "റിപàµà´ªà´¬àµà´²à´¿à´•àµ ഓഫൠകൊറിയ" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "à´•àµà´µàµˆà´±àµà´±àµâ€Œ" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "കേയàµà´®à´¾à´¨àµâ€ à´¦àµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "ഖസാഖàµâ€Œà´¸àµà´¥à´¾àµ»" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "ലാവോ" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "ലെബനോണàµâ€" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "സെയàµà´¨àµà´±àµ ലൂസിയ" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "ലികàµà´±àµà´±àµ»â€Œà´¸àµà´±àµà´±àµˆàµ»" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "à´¶àµà´°àµ€à´²à´™àµà´•" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "ലൈബീരിയ" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ലെസോതàµà´¤àµ‹" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "ലിതàµà´µà´¾à´¨à´¿à´¯" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ലകàµà´¸à´‚ബർഗàµ" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "ലാതàµâ€Œà´µà´¿à´¯" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "ലിബിയനàµâ€ അറബൠജമാഹിരിയ" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "മൊറോകàµà´•àµŠ" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "മൊണാകàµà´•àµ‹" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "മൊൾഡോവ" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "മഡഗാസàµà´•à´°àµâ€" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "മാരàµâ€à´·à´²àµâ€ à´¦àµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "മാസിഡോണിയ" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "മാലി" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "à´®àµà´¯à´¾à´¨àµà´®à´¾àµ¼" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "മംഗോളിയ" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "മകàµà´•àµŒ" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "വടകàµà´•à´¨àµâ€ മരിയാന à´¦àµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "മാരàµà´Ÿàµà´Ÿà´¿à´¨à´¿à´•àµà´•àµ" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "മൌറിറàµà´±à´¾à´¨à´¿à´¯" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "മോണàµà´Ÿàµà´¸àµ†à´±à´¾à´±àµà´±àµ" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "മാളàµâ€à´Ÿàµà´Ÿ" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "മൗറീഷàµà´¯à´¸àµ" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "മാലിദàµà´µàµ€à´ªàµ" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "മലാവി" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "മെകàµà´¸à´¿à´•àµà´•àµ‹" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "മലേഷàµà´¯" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "മൊസാംബികàµà´•àµ" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "നമീബീയ" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "à´¨àµà´¯àµ‚ സലേഡോണിയ" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "നൈഗ‌രàµâ€" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "നോരàµâ€à´«àµ‹à´•àµà´•àµ à´¦àµà´µàµ€à´ªàµàµ" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "നൈജീരിയ" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "നികàµà´•à´°à´¾à´—àµà´µ" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "നെഥരàµâ€à´²à´¨àµâ€à´¡àµà´¸àµ" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "നോർവെ" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "നേപàµà´ªà´¾à´³àµâ€" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "നൌറàµ" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "നിയൂ" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "à´¨àµà´¯àµ‚സീലൻഡàµ" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "ഒമാനàµâ€" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "പനാമ" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "പെറàµ" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "à´«àµà´°à´žàµà´šàµ പോളിനേഷàµà´¯" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "പാപàµà´µ à´¨àµà´¯àµ‚ ഗിനി" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "ഫിലിപàµà´ªàµ€à´¨àµâ€à´¸àµ" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "പാകàµà´•à´¿à´¸àµà´¥à´¾à´¨àµâ€" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "പോളണàµà´Ÿàµ" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "സെയിനàµà´±àµ പിയറി ആനàµâ€à´¡àµ മികàµà´µà´¿à´²à´£àµâ€" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "പിറàµà´±àµà´•àµ‡à´°àµâ€à´£àµâ€" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "à´ªàµà´¯àµ‚à´°àµâ€à´Ÿàµà´Ÿàµ‹ റികോ" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "പാലസàµà´¤àµ€à´¨à´¿à´¯à´¨àµâ€ à´ªàµà´°à´¦àµ‡à´¶à´™àµà´™à´³àµâ€" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "പോ‌രàµâ€à´šàµà´šàµà´—à´²àµâ€" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "പോളൌ" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "പരാഗàµà´µàµ†" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "à´–à´¤àµà´¤â€Œà´°àµâ€â€" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "റീയൂണിയനàµâ€" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "റൊമാനിയ" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "സെർബിയ" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "റഷàµà´¯à´¨àµâ€ ഫെഡറേഷനàµâ€" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "à´±àµà´µà´¾à´£àµà´Ÿ" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "സൗദി അറേബàµà´¯" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "സോളമൻ à´¦àµà´µàµ€à´ªàµà´•àµ¾" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "സെയàµâ€Œà´·àµ†àµ½à´¸àµ" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "à´¸àµà´¡à´¾àµ»" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "à´¸àµà´µàµ€à´¡àµ»" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "സിംഗപàµà´ªàµ‚ർ" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "സെയിനàµà´±àµ ഹെലേന" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "à´¸àµà´²àµŠà´µàµ€à´¨àµà´¯" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "à´¸àµà´µà´¾à´²àµâ€à´¬à´¾à´°àµâ€à´¡àµà´‚ യാനàµâ€ മായെനàµà´‚" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "à´¸àµà´²àµ‹à´µà´¾à´•àµà´¯" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "സിയേറ ലിയോണàµâ€" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "സാനàµâ€ മരീനൊ" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "സെനെഗൽ" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "സോമാലിയ" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "à´¸àµà´°à´¿à´¨à´¾à´‚" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "സാവോ ടോം ആൻഡൠപàµà´°à´¿àµ»à´¸à´¿à´ªàµà´ªàµ†" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "എൽ സാൽവദോർ" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "സിറിയനàµâ€ അറബൠറിപàµà´ªà´¬àµà´²à´¿à´•àµ" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "à´¸àµà´µà´¾à´¸à´¿à´²à´¾à´¨àµà´±àµ" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "ടർകàµà´¸àµ-കൈകോസൠദàµà´µàµ€à´ªàµà´•àµ¾" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "ഛാഡàµ" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "à´«àµà´°à´žàµà´šàµ തെകàµà´•à´¨àµâ€ à´ªàµà´°à´¦àµ‡à´¶à´™àµà´™à´³àµâ€" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "ടോഗോ" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "തായàµâ€Œà´²à´¾à´¨àµà´±àµ" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "താജികàµà´•à´¿à´¸àµà´¥à´¾à´¨àµâ€" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "ടോകàµâ€Œà´²à´µàµ" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "à´•à´¿à´´à´•àµà´•àµ» ടിമോർ" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "à´¤àµàµ¼à´•àµâ€Œà´®àµ†à´¨à´¿à´¸àµà´¥à´¾àµ»" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "à´Ÿàµà´£àµ€à´·àµà´¯" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "ടോങàµà´•" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "à´¤àµàµ¼à´•àµà´•à´¿" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "à´Ÿàµà´°à´¿à´¨à´¿à´¡à´¾à´¡àµ ആനàµâ€à´¡àµ ടോബാഗോ" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "à´Ÿàµà´µà´¾à´²àµ" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "തായàµâ€Œà´µà´¾àµ»" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "ടാനàµâ€à´¸à´¾à´¨à´¿à´¯" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "à´¯àµà´•àµà´°àµ†à´¯à´¿àµ»" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "ഉഗാണàµà´Ÿ" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "à´¯àµà´£àµˆà´±àµà´±à´¡àµ à´¸àµà´±àµà´±àµ‡à´±àµà´±àµà´¸àµ മൈനരàµâ€ ഔടàµà´Ÿàµà´²à´¯à´¿à´™àµ à´¦àµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "à´¯àµà´£àµˆà´±àµà´±à´¡àµ à´¸àµà´±àµà´±àµ‡à´±àµà´±àµà´¸àµ" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "ഉറàµà´—àµà´µàµ‡" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "ഉസàµà´¬àµ†à´•àµà´•à´¿à´¸àµà´¥à´¾àµ»" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "വതàµà´¤à´¿à´•àµà´•à´¾àµ» നഗരം" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "സെയàµà´¨àµà´±àµ വിൻസനàµà´±àµ ആനàµà´±àµ à´—àµà´°à´¨à´¡àµ€àµ»à´¸àµ" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "വെനിസàµà´µàµ‡à´²" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "à´¬àµà´°à´¿à´Ÿàµà´Ÿàµ€à´·àµ വിരàµâ€à´œà´¿à´¨àµâ€ à´¦àµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "à´¯àµà´£àµˆà´±àµà´±à´¡àµ à´¸àµà´±àµà´±àµ‡à´±àµà´±àµà´¸àµ വിരàµâ€à´œà´¿à´¨àµâ€ à´¦àµà´µàµ€à´ªàµà´•à´³àµâ€" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "വിയറàµà´±àµà´¨à´¾à´‚" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "വാനàµà´µà´¾à´Ÿàµà´Ÿàµ" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "വോളിസൠആനàµà´±àµ à´«àµà´Ÿàµà´Ÿà´¾à´¨" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "സമോവ" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "യെമൻ" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "മയോടàµà´Ÿàµ†" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "à´¯àµà´—ോസàµà´²à´¾à´µà´¿à´¯" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "ദകàµà´·à´¿à´£à´¾à´«àµà´°à´¿à´•àµà´•â€Œ" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "സാംബിയ" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "സിംബാബàµâ€Œà´µàµ†" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "തീയതിയàµà´‚ സമയവàµà´‚" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "1 സൈഡീരിയലàµâ€ ദിവസം കൂടàµà´Ÿàµà´•" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "1 നാകàµà´·à´¤àµà´°à´®à´¾à´¸à´‚ കൂടàµà´Ÿàµà´•" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "1 സൈഡീരിയലàµâ€ ആഴàµà´š കൂടàµà´Ÿàµà´•" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "1 നാകàµà´·à´¤àµà´°à´µàµ¼à´·à´‚ കൂടàµà´Ÿàµà´•" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "1 സൗരദിനം കൂടàµà´Ÿàµà´•" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "1 സൗരമണികàµà´•àµ‚à´°àµâ€ കൂടàµà´Ÿàµà´•" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "1 സൗരആഴàµà´š കൂടàµà´Ÿàµà´•" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "1 സാവനമാസം കൂടàµà´Ÿàµà´•" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "സമയവേഗത à´•àµà´±à´¯àµà´•àµà´•àµà´•" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "സമയവേഗത à´•àµà´±à´¯àµà´•àµà´•àµà´• (ചെറàµà´¤à´¾à´¯à´¿)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "സമയവേഗത കൂടàµà´Ÿàµà´•" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "സമയവേഗത കൂടàµà´Ÿàµà´• (ചെറàµà´¤à´¾à´¯à´¿)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "സമയം നിലവിലെ സമയമാകàµà´•àµà´•" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "സമയവേഗത സാധാരണ നിലയിലാകàµà´•àµà´•" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "സമയവേഗതയിലെ നിരകàµà´•àµ പൂജàµà´¯à´®à´¾à´•àµà´•àµà´•" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "1 സൈഡീരിയലàµâ€ ദിവസം à´•àµà´±à´¯àµà´•àµà´•àµà´•" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "1 സൈഡീരിയലàµâ€ ആഴàµà´š à´•àµà´±à´¯àµà´•àµà´•àµà´•" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "1 സൗരദിനം à´•àµà´±à´¯àµà´•àµà´•àµà´•" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "1 സൗരമണികàµà´•àµ‚à´°àµâ€ à´•àµà´±à´¯àµà´•àµà´•àµà´•" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "1 സൗരആഴàµà´š à´•àµà´±à´¯àµà´•àµà´•àµà´•" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "à´ªàµà´°à´¦à´°àµâ€à´¶àµà´¨ à´à´šàµà´›àµ€à´•à´™àµà´™à´³àµâ€" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "തിരശàµà´¶àµ€à´² തിരശàµà´šàµ€à´¨à´¦à´¿à´¶à´¯à´¿à´²àµâ€ വിപരീതമാകàµà´•àµà´•" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "à´«àµà´³àµâ€-à´¸àµà´•àµà´°àµ€à´¨àµâ€ മോഡàµ" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "à´…à´¨àµà´¤à´°àµ€à´•àµà´·à´‚" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "à´…à´—àµà´°à´•àµ‹à´Ÿà´¿ വരകളàµâ€" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "ദിശാ സൂചകങàµà´™à´³àµâ€" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "നകàµà´·à´¤àµà´°à´°à´¾à´¶à´¿à´¯àµà´Ÿàµ† കലാരൂപം" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "നകàµà´·à´¤àµà´°à´°à´¾à´¶à´¿à´¯àµà´Ÿàµ† അതിരàµà´•à´³àµâ€" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "നകàµà´·à´¤àµà´°à´°à´¾à´¶à´¿à´¯àµà´Ÿàµ† ലേബലàµâ€" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "നകàµà´·à´¤àµà´°à´°à´¾à´¶à´¿à´¯àµà´Ÿàµ† രേഖകളàµâ€" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "നെബàµà´²à´•à´³àµà´Ÿàµ† à´šà´¿à´¤àµà´°à´™àµà´™à´³àµâ€" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "à´•àµà´°à´¾à´¨àµà´¤à´¿à´µàµƒà´¤àµà´¤ രേഖ" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "ഭൂമധàµà´¯à´°àµ‡à´–" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "ഭൂമധàµà´¯à´°àµ‡à´–ാപരമായ വരകളàµâ€" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "മൂടലàµâ€ മഞàµà´žàµ" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "ആകാശഗംഗ വരകളàµâ€" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "ആകാശഗംഗ തലം" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "ഭൗമോപരിതലം" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "à´šà´•àµà´°à´µà´¾à´³à´‚ രേഖ" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "ഉചàµà´šà´¸àµà´¥à´¾à´¨ രേഖ" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "നെബàµà´²à´•à´³àµâ€" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "രാതàµà´°à´¿à´¦àµƒà´¶àµà´¯à´‚" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "à´—àµà´°à´¹à´™àµà´™à´³àµà´Ÿàµ† പേരൠകാണികàµà´•àµà´•" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "à´—àµà´°à´¹ à´ªàµà´°à´¦à´•àµà´·à´¿à´£à´ªà´¥à´‚" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "നകàµà´·à´¤àµà´°à´™àµà´™à´³àµâ€" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "ആകാശ à´•àµà´°à´®àµ€à´•à´°à´£ ജാലകം [F4]" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "മറàµà´±àµà´³àµà´³à´µ" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "വിലങàµà´™à´¨àµ†à´¯àµà´³àµà´³ ബടàµà´Ÿà´£àµâ€ ബാരàµâ€ തനിയെ മറയàµà´•àµà´•àµà´•" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "à´•àµà´¤àµà´¤à´¨àµ†à´¯àµà´³àµà´³ ബടàµà´Ÿà´£àµâ€ ബാരàµâ€ തനിയെ മറയàµà´•àµà´•àµà´•" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "à´ªàµà´±à´¤àµà´¤àµ à´•à´Ÿà´•àµà´•àµà´•" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "à´¸àµà´•àµà´°àµ€à´¨àµâ€ ഷോടàµà´Ÿàµ സംരകàµà´·à´¿à´•àµà´•àµà´•" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "ഭൂമധàµà´¯à´°àµ‡à´–à´¾/à´…à´—àµà´°à´•àµ‹à´Ÿà´¿ രീതിയിലേകàµà´•àµ‹ മാറàµà´•" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "ചലനവàµà´‚ തെരഞàµà´žàµ†à´Ÿàµà´ªàµà´ªàµà´‚" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ വസàµà´¤àµà´µà´¿à´¨àµ† മധàµà´¯à´¤àµà´¤à´¿à´²à´¾à´•àµà´•à´¿ à´ªàµà´°à´¦à´°àµâ€à´¶à´¿à´ªàµà´ªà´¿à´•àµà´•àµà´•" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ à´—àµà´°à´¹à´¤àµà´¤àµ† à´¸àµà´µà´—àµà´°à´¹à´®à´¾à´¯à´¿ à´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•àµà´•" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "വസàµà´¤àµà´µà´¿à´¨àµ† പിനàµà´¤àµà´Ÿà´°àµà´•" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ വസàµà´¤àµà´µà´¿à´¨àµ† കേനàµà´¦àµà´°àµ€à´•à´°à´¿à´šàµà´šàµ വലàµà´¤à´¾à´•àµà´•à´¿ കാണികàµà´•àµà´•" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "വലàµà´¤à´¾à´•àµà´•àµà´•" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹-à´•àµà´°à´®àµ€à´•à´°à´£ ജാലകം" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹à´™àµà´™à´³àµà´Ÿàµ† സൂചകങàµà´™à´³àµâ€" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹à´™àµà´™à´³àµà´Ÿàµ† പേരàµà´•à´³àµâ€" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "à´¸àµà´•àµà´°à´¿à´ªàµà´±àµà´±àµà´•à´³àµâ€" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "à´•àµà´°à´®àµ€à´•à´°à´£ ജാലകം" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "തീയതി/സമയ ജാലകം" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "സഹായ ജാലകം" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "à´¸àµà´¥à´¾à´¨ ജാലകം" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "തെരചàµà´šà´¿à´²àµâ€ ജാലകം" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "ആകാശ-ദൃശàµà´¯ à´•àµà´°à´®àµ€à´•à´°à´£ ജാലകം" @@ -3404,7 +3580,7 @@ msgstr "à´ªàµà´¨à´°àµâ€à´µà´¿à´¨àµà´¯à´¸à´¿à´•àµà´•àµà´•" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "à´¸àµà´¥à´²à´‚" @@ -3420,10 +3596,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "മായàµà´•àµà´•àµà´•" @@ -3432,7 +3608,7 @@ msgstr "പടàµà´Ÿà´¿à´•à´¯à´¿à´²àµ‡à´•àµà´•àµ ചേരàµâ€à´•àµà´•àµà´•" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "à´…à´•àµà´·à´¾à´‚ശം:" @@ -3445,12 +3621,12 @@ "8s) നലàµâ€à´•à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "രേഖാംശം:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "സമàµà´¦àµà´°à´¨à´¿à´°à´ªàµà´ªà´¿à´²àµâ€ നിനàµà´¨àµà´³àµà´³ ഉയരം:" @@ -3474,365 +3650,409 @@ msgid "Planet:" msgstr "à´—àµà´°à´¹à´‚:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "വസàµà´¤àµà´µà´¿à´¨àµ† തെരയàµà´•" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "വസàµà´¤àµà´µàµ‹ à´¸àµà´¥à´¾à´¨à´®àµ‹ à´•à´£àµà´Ÿàµ†à´¤àµà´¤àµà´•" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "അയോടàµà´Ÿ" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "ആലàµâ€à´«" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "ബീറàµà´±" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "ഗാമàµà´®à´¾" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "ഡെലàµâ€à´±àµà´±" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "à´Žà´ªàµà´¸à´¿à´²àµ‹à´£àµâ€" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "സീറàµà´±" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "ഈറàµà´±" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "തീറàµà´±" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "കാപàµà´ª" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "ലാംഡ" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "à´®àµà´¯àµ" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "à´¨àµà´¯àµ" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "à´•àµà´¸àµˆ" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "ഒമൈകàµà´°àµ‹à´£àµâ€" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "പൈ" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "റോ" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "സിഗàµà´®" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "ടോ" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "à´…à´ªàµà´¸à´¿à´²àµ‹à´£àµâ€" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "ഫൈ" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "ചൈ" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "à´ªàµà´¸àµˆ" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "ഒമേഗ" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "വസàµà´¤àµ" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 -msgid "Position" -msgstr "à´¸àµà´¥à´¾à´¨à´‚" +#: src/ui_searchDialogGui.h:645 +msgid "Position" +msgstr "à´¸àµà´¥à´¾à´¨à´‚" + +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "പടàµà´Ÿà´¿à´•à´•à´³àµâ€" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "സെരàµâ€à´µà´°àµâ€:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "à´à´šàµà´›à´¿à´•à´™àµà´™à´³àµâ€" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "പടàµà´Ÿà´¿à´•à´•à´³àµâ€" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "à´à´šàµà´›à´¿à´•à´™àµà´™à´³àµâ€" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "ദൃശàµà´¯à´‚" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "ആകാശം" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "രേഖപàµà´ªàµ†à´Ÿàµà´¤àµà´¤à´²àµà´•à´³àµâ€" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "à´ªàµà´°à´•àµƒà´¤à´¿à´¦àµƒà´¶àµà´¯à´‚" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "à´¸àµà´±àµà´±à´¾à´°àµâ€à´²àµ‹à´±àµ†" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "പേരàµà´•àµà´±à´¿à´•à´³àµà´‚ രേഖപàµà´ªàµ†à´Ÿàµà´¤àµà´¤à´²àµà´•à´³àµà´‚" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "à´—àµà´°à´¹à´™àµà´™à´³àµâ€" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "à´—àµà´°à´¹à´™àµà´™à´³àµà´‚ ഉപഗàµà´°à´¹à´™àµà´™à´³àµà´‚" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "à´—àµà´°à´¹à´™àµà´™à´³àµ† കാണികàµà´•àµà´•" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "à´—àµà´°à´¹à´™àµà´™à´³àµà´Ÿàµ† അടയാളങàµà´™à´³àµâ€ കാണികàµà´•àµà´•" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "à´—àµà´°à´¹à´™àµà´™à´³àµà´Ÿàµ† à´ªàµà´°à´¦à´•àµà´·à´¿à´£à´ªà´¥à´‚ കാണികàµà´•àµà´•" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "à´ªàµà´°à´•à´¾à´¶à´µàµ‡à´—തയെ à´…à´¨àµà´•à´°à´¿à´•àµà´•àµà´•" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "à´šà´¨àµà´¦àµà´°à´¨àµ† à´…à´¨àµà´ªà´¾à´¤à´¤àµà´¤à´¿à´²à´¾à´•àµà´•àµà´•" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "à´…à´¨àµà´¤à´°àµ€à´•àµà´·à´‚ കാണികàµà´•àµà´•" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "à´ªàµà´°à´•à´¾à´¶ മലിനീകരണം:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "മരàµâ€à´¦àµà´¦à´‚, താപനില, extinction coefficient" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "അപവരàµâ€à´¤àµà´¤à´¨à´‚/Extinction à´•àµà´°à´®àµ€à´•à´°à´£à´™àµà´™à´³àµâ€..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "കേവല à´…à´¨àµà´ªà´¾à´¤à´‚:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "താരതമàµà´¯ à´…à´¨àµà´ªà´¾à´¤à´‚:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "മിനàµà´¨à´¿à´¤à´¿à´³à´™àµà´™àµà´•:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "തീവàµà´°à´¤à´¯àµà´³àµà´³ വസàµà´¤àµà´•àµà´•à´³àµâ€ ദൃശàµà´¯à´®à´¾à´•àµà´®àµà´ªàµ‹à´³àµâ€ à´¦àµà´¯àµ‹à´¤à´¿ à´•àµà´±à´žàµà´ž നകàµà´·à´¤àµà´°à´™àµà´™à´³àµ† " "മങàµà´™à´¿à´ªàµà´ªà´¿à´•àµà´•àµà´•" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "à´•à´£àµà´£à´¿à´¨àµà´±àµ† à´¸àµà´µà´­à´¾à´µà´¤àµà´¤à´¿à´¨àµà´±àµ† à´…à´¨àµà´°àµ‚പീകരണം" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "കൊളàµà´³à´¿à´®àµ€à´¨àµâ€" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "നകàµà´·à´¤àµà´°à´°à´¾à´¶à´¿à´•à´³àµâ€" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "വരകളàµâ€ കാണികàµà´•àµà´•" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "à´•àµà´±à´¿à´®à´¾à´¨à´‚ കാടàµà´Ÿàµà´•" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "അതിരàµà´•à´³àµâ€ കാടàµà´Ÿàµà´•" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "കലാരൂപങàµà´™à´³àµâ€ കാണികàµà´•àµà´•" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "കലാരൂപതàµà´¤à´¿à´¨àµà´±àµ† തിളകàµà´•à´‚" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ഖഗോളം" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "à´ªàµà´°à´•àµà´·àµ‡à´ªà´£à´‚" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "à´ªàµà´°à´•àµƒà´¤à´¿à´¦àµƒà´¶àµà´¯à´™àµà´™à´³àµâ€ ചേരàµâ€à´•àµà´•àµà´•/ഒഴിവാകàµà´•àµà´•" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "ഭൗമോപരിതലം കാടàµà´Ÿàµà´•" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "പൊടിപടലം, മഞàµà´žàµ കാണികàµà´•àµà´•" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "ബനàµà´§à´ªàµà´ªàµ†à´Ÿàµà´Ÿ à´—àµà´°à´¹à´µàµà´‚ à´¸àµà´¥à´¾à´¨à´µàµà´‚ ഉപയോഗികàµà´•àµà´•" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "à´ˆ à´ªàµà´°à´•àµƒà´¤à´¿à´¦àµƒà´¶àµà´¯à´‚ à´¸àµà´µà´¤à´µàµ‡à´¯à´¾à´¯à´¿ ഉപയോഗികàµà´•àµà´•" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "à´ˆ ആകാശസംസàµà´•à´¾à´°à´‚ à´¸àµà´µà´¤à´µàµ‡à´¯à´¾à´¯à´¿ ഉപയോഗികàµà´•àµà´•" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "ദൃശàµà´¯à´®à´¾à´¯à´¤àµàµ" @@ -3890,7 +4110,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "à´¸àµà´±àµà´±àµ†à´²àµà´²àµ‡à´±à´¿à´¯ ആരംഭികàµà´•àµà´®àµà´ªàµ‹à´³àµâ€ നിങàµà´™à´³àµâ€ നോകàµà´•àµà´¨àµà´¨ ദിശ" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ വസàµà´¤àµà´µà´¿à´¨àµà´±àµ† വിവരങàµà´™à´³àµâ€" @@ -3906,11 +4126,8 @@ msgid "Display no information" msgstr "വിവരങàµà´™à´³àµŠà´¨àµà´¨àµà´‚ à´ªàµà´°à´¦à´°àµâ€à´¶à´¿à´ªàµà´ªà´¿à´•àµà´•àµ‡à´£àµà´Ÿ" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "à´’à´¨àµà´¨àµà´®à´¿à´²àµà´²" @@ -4053,7 +4270,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "ആരംഭ തിയàµà´¯à´¤à´¿à´¯àµà´‚ സമയവàµà´‚" @@ -4066,19 +4283,23 @@ msgid "Other:" msgstr "മറàµà´±àµà´³àµà´³à´µ:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "നിലവിലàµà´³àµà´³à´¤àµ ഉപയോഗികàµà´•àµà´•" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "സിസàµà´±àµà´±à´‚ തീയതിയിലàµà´‚ സമയതàµà´¤à´¿à´²àµà´‚ à´¸àµà´±àµà´±àµ†à´²àµà´²àµ‡à´±à´¿à´¯à´‚ à´¤àµà´Ÿà´™àµà´™àµà´•" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "സിസàµà´±àµà´±à´‚ തീയതിയàµà´‚ സമയവàµà´‚" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4086,165 +4307,171 @@ "à´…à´¨àµà´•à´°à´£à´¤àµà´¤à´¿à´¨àµà´±àµ† സമയം à´¸àµà´±àµà´±àµ†à´²àµà´²àµ‡à´±à´¿à´¯à´‚ ആരംഭികàµà´•àµà´®àµà´ªàµ‹à´´àµà´³àµà´³ ദിവസതàµà´¤à´¿à´²àµ† സമയതàµà´¤àµ‹à´Ÿàµ " "തൊടàµà´Ÿà´Ÿàµà´¤àµà´¤ നിലയിലാകàµà´•àµà´¨àµà´¨àµ" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "സിസàµà´±àµà´±à´‚ തീയàµà´¯à´¤à´¿ :" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "à´ªàµà´²à´¾à´¨àµ†à´±àµà´±àµ‡à´±à´¿à´¯à´‚ à´à´šàµà´›àµ€à´•à´™àµà´™à´³àµâ€" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "à´’à´¨àµà´¨à´¿à´²àµâ€ à´•àµà´²à´¿à´•àµ ചെയàµà´¤à´¾à´²àµâ€ മറàµà´±àµà´³àµà´³ നകàµà´·à´¤àµà´°à´°à´¾à´¶à´¿à´•à´³àµâ€ മറയàµà´•àµà´•àµà´•" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "ഒരൠനകàµà´·à´¤àµà´°à´°à´¾à´¶à´¿ മാതàµà´°à´‚ തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "ലേബലàµà´•à´³àµâ€ à´šà´•àµà´°à´µà´¾à´³à´¤àµà´¤àµ‹à´Ÿà´Ÿàµà´ªàµà´ªà´¿à´šàµà´šàµ നിരàµâ€à´¤àµà´¤àµà´•" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "à´—àµà´°àµà´¤àµà´µà´¾à´•à´°àµâ€à´·à´£ ലേബലàµà´•à´³àµâ€" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "à´¸àµà´•àµà´°àµ€à´¨àµâ€à´·àµ‹à´Ÿàµà´Ÿàµà´•à´³àµâ€" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "à´¸àµà´•àµà´°àµ€à´¨àµâ€à´·àµ‹à´Ÿàµà´Ÿàµà´•à´³àµâ€ സേവൠചെയàµà´¯àµ‡à´£àµà´Ÿà´¯à´¿à´Ÿà´‚" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "നെഗറàµà´±àµ€à´µàµ നിറങàµà´™à´³àµâ€" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "നകàµà´·à´¤àµà´° കാറàµà´±à´²àµ‹à´—ിലെ à´ªàµà´¤à´¿à´¯ മാറàµà´±à´™àµà´™à´³àµâ€" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "ഡൌണàµâ€à´²àµ‹à´¡àµ ചെയàµà´¯à´¾à´¨àµâ€ ഇവിടെ ഞെകàµà´•àµà´•" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "കൂടàµà´¤à´²àµâ€ നകàµà´·à´¤àµà´°à´™àµà´™à´³àµâ€à´•àµà´•à´¾à´¯à´¿ ഇതൠഡൌണàµâ€à´²àµ‹à´¡àµ ചെയàµà´¯àµà´•" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "ഡൌണàµâ€à´²àµ‹à´¡àµ à´ªàµà´¨à´°à´¾à´°à´‚à´­à´¿à´•àµà´•àµà´•" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "വീണàµà´Ÿàµà´‚ à´¶àµà´°à´®à´¿à´•àµà´•àµà´•" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" "ഡൌണàµâ€à´²àµ‹à´¡àµ നിരàµâ€à´¤àµà´¤à´¿ വയàµà´•àµà´•àµà´•. താങàµà´•à´³àµâ€à´•àµà´•àµ പിനàµà´¨àµ€à´Ÿàµ à´ªàµà´¨à´°à´¾à´°à´‚à´­à´¿à´•àµà´•à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "വേണàµà´Ÿ" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "à´¸àµà´•àµà´°à´¿à´ªàµà´±àµà´±àµ à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´•àµà´•àµà´¨àµà´ªàµ‹à´³àµâ€ ജാലകം à´…à´Ÿà´•àµà´•àµà´•" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ à´¸àµà´•àµà´°à´¿à´ªàµà´±àµà´±àµ à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´ªàµà´ªà´¿à´•àµà´•àµà´•" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "à´¸àµà´•àµà´°à´¿à´ªàµà´±àµà´±àµ നിരàµâ€à´¤àµà´¤à´¿à´µà´•àµà´•àµà´•." -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "ആരംഭതàµà´¤à´¿à´²àµâ€ ലോഡൠചെയàµà´¯àµà´•" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "à´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•àµà´•" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "à´ªàµà´°à´§à´¾à´¨à´ªàµà´ªàµ†à´Ÿàµà´Ÿ" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "വിവരം" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "നാവിഗേഷനàµâ€" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "ഉപകരണങàµà´™à´³àµâ€" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "à´ªàµà´²à´—à´¿à´¨àµà´•à´³àµâ€" @@ -4414,176 +4641,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "ഒരൠവസàµà´¤àµ തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ ശേഷമേ ocular à´µàµà´¯àµ‚ വിലേകàµà´•àµ മാറാവൂ" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "ടെലിസàµà´•àµ‹à´ªàµà´ªàµ #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "ടെലിസàµà´•àµ‹à´ªàµà´ªàµ #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "& ടെലിസàµà´•àµ‹à´ªàµà´ªàµ" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "& à´®àµà´¨àµâ€à´ªà´¤àµà´¤àµ† ടെലിസàµà´•àµ‹à´ªàµà´ªàµ" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "& à´…à´Ÿàµà´¤àµà´¤ ടെലിസàµà´•àµ‹à´ªàµà´ªàµ" @@ -4655,64 +4882,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "പതിപàµà´ªàµ" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4720,7 +4952,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4731,14 +4963,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4747,276 +4979,345 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "ദൃശàµà´¯à´¤à´²à´‚" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "സാധാരണമായ" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "à´à´ªàµ€à´¸àµà´•à´³àµâ€" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "ചേരàµâ€à´•àµà´•àµà´•" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "പേരàµ:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "ഫോകàµà´•à´²àµâ€ ലെങàµà´¤àµà´¤àµ" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "ബൈനോകàµà´•àµà´²à´±àµà´•à´³àµâ€" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "സെനàµâ€à´¸à´±àµà´•à´³àµâ€" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "ടെലിസàµà´•àµ‹à´ªàµà´ªàµà´•à´³àµâ€" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "à´µàµà´¯à´¾à´¸à´‚:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "കൃതàµà´°à´¿à´® ഉപഗàµà´°à´¹à´™àµà´™à´³àµâ€" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "പരിധി (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "പരിധി നിരകàµà´•àµ (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "ഉയരം (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹à´µàµà´‚ വീകàµà´·à´¿à´•àµà´•àµà´¨àµà´¨à´¯à´¾à´³àµà´‚ സൂരàµà´¯à´ªàµà´°à´•à´¾à´¶à´¤àµà´¤à´¿à´²à´¾à´£àµ." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹à´‚ ദൃശàµà´¯à´®à´¾à´£àµ." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹à´‚ മറയàµà´•àµà´•à´ªàµà´ªàµ†à´Ÿàµà´Ÿà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹à´‚ ദൃശàµà´¯à´®à´²àµà´²." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "à´¸àµà´±àµà´±àµ†à´²àµà´²àµ‡à´±à´¿à´¯à´‚ കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹-à´ªàµà´²à´—àµà´—à´¿à´¨àµâ€" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5024,32 +5325,32 @@ "കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹-à´ªàµà´²à´—àµà´—à´¿à´¨àµâ€ ഭൂമിയെ à´šàµà´±à´±àµà´¨àµà´¨ കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹à´™àµà´™à´³àµà´Ÿàµ† പാത " "കാണികàµà´•àµà´¨àµà´¨àµ." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "ഉപയോകàµà´¤à´¾à´•àµà´•à´³àµâ€à´•àµà´•àµà´³àµà´³ à´•àµà´±à´¿à´ªàµà´ªàµà´•à´³àµâ€" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "വീകàµà´·à´¿à´•àµà´•àµà´¨àµà´¨à´¯à´¾à´³àµâ€ ഭൂമിയിലാണെങàµà´•à´¿à´²àµâ€ മാതàµà´°à´®àµ‡, കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹à´™àµà´™à´³àµà´‚ അവയàµà´Ÿàµ† " "പാതയàµà´‚ കാണികàµà´•àµà´•à´¯àµà´³àµà´³àµ‚." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5057,25 +5358,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5083,17 +5384,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹à´™àµà´™à´³àµ† ചേരàµâ€à´•àµà´•àµà´•." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5101,41 +5402,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "സാങàµà´•àµ‡à´¤à´¿à´•à´®à´¾à´¯ à´•àµà´±à´¿à´ªàµà´ªàµà´•à´³àµâ€" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "à´ªàµà´±à´¤àµà´¤àµ‡à´•àµà´•àµà´³àµà´³ à´•à´£àµà´£à´¿à´•à´³àµâ€" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5143,338 +5446,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "ഇനàµà´±à´°àµâ€à´¨àµ†à´±àµà´±àµ വഴിയàµà´³àµà´³ à´ªàµà´¤àµà´•àµà´•à´²àµâ€ ഇലàµà´²à´¾à´¤à´¾à´•àµà´•à´¿à´¯à´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "à´ªàµà´¤àµà´•àµà´•à´¿à´•àµà´•àµŠà´£àµà´Ÿà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "ഉടനàµâ€ à´ªàµà´¤àµà´•àµà´•àµà´•" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "à´ªàµà´°à´®à´¾à´£à´™àµà´™à´³à´¿à´²àµâ€ നിനàµà´¨àµà´‚ à´ªàµà´¤àµà´•àµà´•àµà´•" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "à´ªàµà´¤àµà´•àµà´•àµà´¨àµà´¨à´¤à´¿à´²àµâ€ പിശകàµ" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "ഉടനàµâ€ à´ªàµà´¤àµà´•àµà´•àµà´•" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "à´ªàµà´°à´®à´¾à´£à´™àµà´™à´³à´¿à´²àµâ€ നിനàµà´¨àµà´‚ à´ªàµà´¤àµà´•àµà´•àµà´•" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "കൃതàµà´°à´¿à´®àµ‹à´ªà´—àµà´°à´¹à´™àµà´™à´³àµà´Ÿàµ† à´•àµà´°à´®àµ€à´•à´°à´£à´™àµà´™à´³àµâ€" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "ഇനàµà´±à´°àµâ€à´¨àµ†à´±àµà´±à´¿à´²àµâ€ നിനàµà´¨àµà´‚ à´ªàµà´¤àµà´•àµà´•àµà´•" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "à´à´±àµà´±à´µàµà´‚ à´’à´Ÿàµà´µà´¿à´²àµâ€ à´ªàµà´¤àµà´•àµà´•à´¿à´¯à´¤àµ:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "ലേബലàµà´•à´³àµâ€" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "à´ªàµà´°à´¦à´•àµà´·à´¿à´£à´ªà´¾à´¤-രേഖകളàµâ€" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "à´•àµà´°à´®àµ€à´•à´°à´£à´™àµà´™à´³àµâ€" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" -msgstr "à´ªàµà´°à´¦à´•àµà´·à´¿à´£à´ªà´¾à´¤" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "മാറàµà´±à´™àµà´™à´³àµâ€ സംരകàµà´·à´¿à´•àµà´•àµà´•" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" -msgstr "വിവരണം:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" +msgstr "à´ªàµà´°à´¦à´•àµà´·à´¿à´£à´ªà´¾à´¤" + +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" +msgstr "വിവരണം:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "മാറàµà´±à´™àµà´™à´³àµâ€ സംരകàµà´·à´¿à´•àµà´•àµà´•" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "à´ªàµà´¤à´¿à´¯ à´¸àµà´°àµ‹à´¤à´¸àµà´¸àµ ചേരàµâ€à´•àµà´•àµà´•" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "തിരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ à´¸àµà´°àµ‹à´¤à´¸àµà´¸àµ നീകàµà´•à´‚ ചെയàµà´¯àµà´•" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "à´¸àµà´°àµ‹à´¤à´¸àµà´¸àµà´•à´³àµâ€â€" @@ -5510,22 +5856,22 @@ msgid "Discard" msgstr "നിരാകരികàµà´•àµà´•" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "ദൂരദരàµâ€à´¶à´¿à´¨à´¿ നിയനàµà´¤àµà´°à´£à´‚" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5908,62 +6254,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "ജനàµà´µà´°à´¿" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "ഫെബàµà´°àµà´µà´°à´¿" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "മാരàµâ€à´šàµà´šàµ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "à´à´ªàµà´°à´¿à´²àµâ€" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "മെയàµ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "ജൂണàµâ€" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "ജൂലൈ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "ആഗസàµà´±àµà´±àµ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "സെപàµà´¤à´‚ബ‌രàµâ€" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "à´’à´•àµà´Ÿàµ‹à´¬à´°àµâ€" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "നവംബ‌രàµâ€" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "ഡിസംബ‌രàµâ€" @@ -6118,7 +6464,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "സമയം കാണികàµà´•àµ‡à´£àµà´Ÿ രീതി" @@ -6136,7 +6482,7 @@ msgstr "24 മണികàµà´•àµ‚à´°àµâ€ രീതി" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "തീയതി കാണികàµà´•àµà´¨àµà´¨ രീതി" @@ -6152,154 +6498,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "ടെകàµà´¸àµà´±àµà´±àµâ€Œ യൂസരàµâ€ ഇനàµà´±à´°àµâ€à´«àµ‡à´¸àµ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "സൌരയൂഥ വസàµà´¤àµ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "ഇപàµà´ªàµ‹à´´à´¤àµà´¤àµ† തീയതി/സമയം" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "സമയമേഖല സെറàµà´±àµ ചെയàµà´¯àµà´•" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "ആരംഭതàµà´¤à´¿à´²àµ† തീയതി/സമയം നിശàµà´šà´¯à´¿à´šàµà´šà´¤àµ" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "സിസàµà´±àµà´±à´‚" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "നിശàµà´šà´¯à´¿à´šàµà´šà´¤àµ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "ഭാഷ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "നകàµà´·à´¤àµà´°à´™àµà´™à´³àµâ€ കാണികàµà´•àµà´•" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "നിറങàµà´™à´³àµâ€" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "നീഹാരികകളàµà´Ÿàµ† പേരàµà´•à´³àµâ€" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "നീഹാരികകളàµà´Ÿàµ† സൂചനകളàµâ€" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "ആകാശഗംഗ-തലതàµà´¤à´¿à´²àµ† രേഖ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "à´ªàµà´°à´­à´¾à´µà´™àµà´™à´³àµâ€" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "ആകാശഗംഗ - തീവàµà´°à´¤ :" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "à´ªàµà´°à´•àµƒà´¤à´¿à´¦àµƒà´¶àµà´¯à´‚ സെറàµà´±àµ ചെയàµà´¯àµà´¨àµà´¨à´¤àµ‹à´ŸàµŠà´ªàµà´ªà´‚ à´¸àµà´¥à´²à´µàµà´‚ സെറàµà´±àµ ചെയàµà´¯àµà´¨àµà´¨àµ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "മേലàµâ€à´¨àµ‹à´Ÿàµà´Ÿà´‚" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "à´¸àµà´µà´¤à´µàµ‡à´¯àµà´³àµà´³ à´•àµà´°à´®àµ€à´•à´°à´£à´™àµà´™à´³àµâ€ ആരംഭികàµà´•àµà´•" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "ഇപàµà´ªàµ‹à´´àµà´³àµà´³ à´•àµà´°à´®àµ€à´•à´°à´£à´™àµà´™à´³àµâ€ സൂകàµà´·à´¿à´•àµà´•àµà´•" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "à´…à´Ÿà´¯àµà´•àµà´•àµà´•" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6332,22 +6678,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6516,36 +6862,43 @@ msgid "Solar System" msgstr "സൌരയൂഥം" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "à´šà´°à´¿à´¤àµà´°à´ªà´°à´®à´¾à´¯ സൂപàµà´ªà´°àµâ€à´¨àµ‹à´µà´•à´³àµâ€" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6563,7 +6916,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6577,14 +6930,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6592,8 +6945,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6611,29 +6965,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "ഇനàµà´±à´°àµâ€à´¨àµ†à´±àµà´±à´¿à´²àµâ€ നിനàµà´¨àµà´‚ à´ªàµà´¤àµà´•àµà´•àµà´•" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6649,51 +7080,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6813,11 +7254,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6825,137 +7266,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6963,49 +7408,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7021,185 +7555,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7646,5 +8174,11 @@ #~ msgid "Object Sizing Rule: " #~ msgstr "വസàµà´¤àµà´µà´¿à´¨àµà´±àµ† വലിപàµà´ªà´‚ മാറàµà´±àµà´¨àµà´¨à´¤à´¿à´¨àµà´³àµà´³ നിയമം: " +#~ msgid "Nebulas" +#~ msgstr "നെബàµà´²à´•à´³àµâ€" + #~ msgid "When a Script is Running" #~ msgstr "ഒരൠസàµà´•àµà´°à´¿à´ªàµà´±àµà´±àµ à´ªàµà´°à´µà´°àµâ€à´¤àµà´¤à´¿à´šàµà´šàµ കൊണàµà´Ÿà´¿à´°à´¿à´•àµà´•àµà´®àµà´ªàµ‹à´³àµâ€" + +#~ msgid "Nebulas background images" +#~ msgstr "നെബàµà´²à´•à´³àµà´Ÿàµ† à´šà´¿à´¤àµà´°à´™àµà´™à´³àµâ€" diff -Nru stellarium-0.12.1/po/stellarium/mn.po stellarium-0.12.4/po/stellarium/mn.po --- stellarium-0.12.1/po/stellarium/mn.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/mn.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-09 09:20+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Mongolian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:17+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:52+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ÐœÑдÑгдÑхгүй" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Ðлдаа" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Зохиогчид" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Харьцах хүн" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Зохиогч" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Лиценз" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 +msgid "Lakota" +msgstr "" + +#: src/translations.h:173 msgid "Maori" msgstr "Маори" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Өрнөд" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "ДÑлгÑц гамнагч" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Ðндорра" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Ðрабын ÐÑгдÑÑн Эмират" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ÐфганÑтан" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Ðнгол" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Ðлбани" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Ðрмени" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Ðидерландын Ðнтилын арлууд" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Ðнгол" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Ðнтарктид" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Ðргентин" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Ðмерикийн Самоа" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ÐвÑтри" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ÐвÑтрали" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Ðруб" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Ðзербайжан" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "БарбадоÑ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Бангладеш" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Белги" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркина ФаÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Болгар" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Бахрейн" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Бурунди" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Бенин" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Бермуд" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Бруней" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Боливи" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Бразил" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Багамийн арлууд" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "БотÑван" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "БеларуÑ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Белиз" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Канад" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Төв Ðфрикийн Бүгд Ðайрамдах УлÑ" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Швейцарь" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Кот-д'Ивуар" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Кукийн арлууд" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Чили" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Камерун" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Ð¥Ñтад" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Колумб" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "КоÑта Рика" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Ð¡Ð¾Ð»Ð¾Ð½Ð³Ð¾Ñ Ð°Ñ€Ð´ улÑ" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Куб" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "КÑйп Ð’Ñрде" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "КриÑÑ‚Ð¼Ð°Ñ Ð¸Ñланд" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Кипр" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Чех" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Герман" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Джибут" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Дани" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Доминик" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Доминик ард улÑ" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ðлжир" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Эквадор" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "ЭÑтони" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Египет" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Баруун Ñахар" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "ЭритреÑ" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "ИÑпани" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Этиоп" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Финланд" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Фиджи" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Фолклендын арлууд" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Микронези" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Фарерын арлууд" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Франц" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Габон" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Их Британи" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Гренада" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Гурж" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Франц гана" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Гана" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Гибралтар" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Греенланд" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Гамби" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Гвиней" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Гваделупа" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Экваторын Гвиней" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Грек" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Өмнөд георги ба өмнөд завÑрын арлууд" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Гватемал" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Гуам" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Гайана" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Хонг Конг" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ХондураÑ" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Хорват" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Гаити" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Унгар" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Индонез" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ирланд" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Израйл" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ЭнÑÑ‚Ñ…Ñг" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Британий ÑнÑÑ‚Ñ…Ñгийн далайн нутаг" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ирак" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Иран" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ИÑланд" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Итали" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Ямайка" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Иордан" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Япон" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Кениа" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Киргиз" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Камбож" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Кирибати" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "КоморÑк" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Кувейт" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Кайманы арлууд" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "КазакÑтан" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Лао" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Либони" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Санта лучиа" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Лейхтенштайн" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Шриланк" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Либери" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ЛеÑото" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Литва" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ЛюкÑембург" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Латви" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Морокко" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Монако" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "МадагаÑкар" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Маршалын арлууд" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Македони" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Мали" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "ÐœÑнмар" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Монгол" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Макау" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Хойд марианы арлууд" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Мартиник" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Мавритани" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "МонтÑеррат" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Малта" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Маврик" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Мальдивын арлууд" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Малави" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "МекÑик" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Малайз" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Мозамбик" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Ðамиби" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Ð¨Ð¸Ð½Ñ ÐºÐ°Ð»Ð´ÐµÐ½Ð¸" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Ðегр" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Ðорфолкын арлууд" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Ðигер" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Ðикрагуа" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Ðидерланд" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Ðорвеги" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Ðепал" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Ðауру" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Ðиу" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Ð¨Ð¸Ð½Ñ Ð·ÐµÐ»Ð°Ð½Ð´" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Оман" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Панама" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Перу" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Францын Полинези" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Папуа Ð¨Ð¸Ð½Ñ Ð“Ð²Ð¸Ð½ÐµÐ¹" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Флиппен" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ПакиÑтан" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Польш" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "ПуÑрто Рико" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Португаль" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Палау" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Прагвай" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Катар" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Румын" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Серби" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "ОроÑын холбооны улÑ" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Руанда" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Саудын Ðраб" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Соломоны арлууд" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Сейшелийн арлууд" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Судан" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Швед" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Сингапур" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "СÑйнт Хелена" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Словени" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Сьерра-Леоне" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Сан марино" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Сенегал" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Сомали" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Суринам" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Эл Ñалвадор" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Свазиленд" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Чад" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Францын өмнөд Ð±Ò¯Ñ Ð½ÑƒÑ‚Ð°Ð³" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Того" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Тайланд" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ТажикÑтан" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Токелау" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Зүүн Тимор" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ТуркменÑтан" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ТуниÑ" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Тонга" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Турк" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Тринидад болон Табаго" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Тували" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Тайвань" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Танзани" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Украйн" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Уганда" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Ðмерикын нÑгдÑÑн улÑ" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Уругвай" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "УзбекиÑтан" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "ВенеÑуÑль" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Вануату" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Самоа" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "ИемÑн" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ЮгоÑлав" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Өмнөд африк" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Замби" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Зимбаб" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "ДÑлгÑцийн тохируулга" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Төрөл бvрийн" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "ДууÑгах" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "ЖижигрүүлÑÑ…" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Тохируулгын цонх" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "ШинÑчил" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Байрлал" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "УÑтгах" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Объект" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Ðжлын байр" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Сервер:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Параметрууд" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Параметрууд" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Харах" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "ТÑнгÑÑ€" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Ð¥ÑвтÑÑ Ñ…ÑлбÑÑ€" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "ҮзÑгддÑг" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ðлга" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "БуÑад:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Дахин оролдох" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Цуцал" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ÐœÑдÑÑлÑл" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Ðавигаци" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Багаж" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Өргөтгөлүүд" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Хувилбар" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Залгах Ñ…ÑÑÑг" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Ерөнхий" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "ÐÑмÑÑ…" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "ÐÑÑ€:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Сензорууд" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "ХолбооÑууд" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Сүүлийн шинÑчлÑл:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "ÐÑршилүүд" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Тохиргоо" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" -msgstr "Тодорхойлолт:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" +msgstr "Тодорхойлолт:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "Ð¥ÑÑ€ÑгÑÑхгүй" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Хулгана Ñарын" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "ҮхÑÑ€ Ñарын" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Бар Ñарын" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Туулай Ñарын" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Луу Ñарын" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Могой Ñарын" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Морь Ñарын" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Ðаймдугаар Ñар" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "ЕÑдүгÑÑÑ€ Ñар" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "10-Ñ€ Ñар" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "11-Ñ€ Ñар" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "12-Ñ€ Ñар" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Ð¥Ñлнүүд" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Өнгүүд" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Ðөлөө" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Удирдлага" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "ООÐ" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/mo.po stellarium-0.12.4/po/stellarium/mo.po --- stellarium-0.12.1/po/stellarium/mo.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/mo.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:21+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Moldavian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:17+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:52+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/mr.po stellarium-0.12.4/po/stellarium/mr.po --- stellarium-0.12.1/po/stellarium/mr.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/mr.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-11-09 18:09+0000\n" "Last-Translator: nyogi \n" "Language-Team: Marathi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:16+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "मधà¥à¤¯à¤¾à¤¨à¥à¤¹à¤µà¥ƒà¤¤à¥à¤¤" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "कà¥à¤°à¤¾à¤‚तीवृतà¥à¤¤" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "विषà¥à¤µà¤µà¥ƒà¤¤à¥à¤¤" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "कà¥à¤·à¤¿à¤¤à¤¿à¤œ" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "दिरà¥à¤˜à¤¿à¤•à¤¾ पà¥à¤°à¤¤à¤²" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "लेखक: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "सà¥à¤¥à¤¾à¤¨: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "गà¥à¤°à¤¹: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "पà¥à¤°à¤•à¤¾à¤°: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "पà¥à¤°à¤¤: %1 (परà¥à¤¯à¤‚त: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "पà¥à¤°à¤¤: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "आकार: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "दीरà¥à¤˜à¤¿à¤•à¤¾" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "खà¥à¤²à¤¾ तारकागà¥à¤šà¥à¤›" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "बंदिसà¥à¤¤ तारकागà¥à¤šà¥à¤›" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "तेजोमेघ" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "गà¥à¤°à¤¹à¤¾à¤¨à¥à¤µà¤°à¥à¤¤à¥€ तेजोमेघ" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "तेजोमेघाशी संबधित तारकागà¥à¤šà¥à¤›" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "अजà¥à¤žà¤¾à¤¤" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "नोंद न à¤à¤¾à¤²à¥‡à¤²à¤¾ पà¥à¤°à¤•à¤¾à¤°" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "निरपेकà¥à¤· पà¥à¤°à¤¤: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "(या दिनांकाची पृथà¥à¤µà¥€à¤šà¥€ ) तिरà¥à¤¯à¤•à¤¤à¤¾: %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "अंतर: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "अंतर: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "भासमान वà¥à¤¯à¤¾à¤¸ r: %1, वरà¥à¤¤à¥‚ळाचा: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "भासमान वà¥à¤¯à¤¾à¤¸: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "नाकà¥à¤·à¤¤à¥à¤° कालावधी : %1 दिवस (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "नाकà¥à¤·à¤¤à¥à¤° दिन : %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "सरासरी सौरà¥à¤¯ दिन: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "कला कोन: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "दिरà¥à¤˜à¤¿à¤•à¤°à¤£: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "पà¥à¤°à¤¾à¤µà¤¸à¥à¤¥à¤¾ : %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "पà¥à¤°à¤•à¤¾à¤¶à¤¿à¤¤: %1%" @@ -204,7 +204,7 @@ msgstr "असà¥à¤¥à¤¯à¥€ पदनाम : %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "भासमान पà¥à¤°à¤¤: %1 (by extinction)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "पà¥à¤°à¤¤ : %1 (परà¥à¤¯à¤‚त: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "पà¥à¤°à¤¤ : %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "वरà¥à¤£à¤ªà¤Ÿà¤¾à¤šà¤¾ पà¥à¤°à¤•à¤¾à¤°: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "अंतर: %1 पà¥à¤°à¤•à¤¾à¤¶ वरà¥à¤·à¥‡" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "पराशय: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "अवकाशयान" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "तà¥à¤°à¥à¤Ÿà¥€" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -655,52 +747,53 @@ msgid "Found" msgstr "सापडले" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "पटलचितà¥à¤° संचिका निवडा" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "सà¥à¤°à¥ होतांनाचे दृषà¥à¤Ÿà¥€à¤•à¥à¤·à¥‡à¤¤à¥à¤°: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "सà¥à¤°à¥ होतांनाचà¥à¤¯à¤¾ दिगंश/उनà¥à¤¨à¥à¤¤à¤¾à¤‚शची दिशा: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "लेखक" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "संपरà¥à¤•" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "लेखक" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "परवाना" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€ सà¥à¤°à¥‚: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€ सà¥à¤°à¥: [नाही]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -708,16 +801,16 @@ "नवीन तारकासà¥à¤šà¥€ डाउनलोड à¤à¤¾à¤²à¥€ आहे!\n" "ती पाहणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ सà¥à¤Ÿà¥‡à¤²à¥‡à¤°à¥€à¤…म पà¥à¤¨à¥à¤¹à¤¾ सà¥à¤°à¥ करा." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "उपलबà¥à¤¦à¥à¤§ सरà¥à¤µ तारकासंच पà¥à¤°à¤¸à¥à¤¥à¤¾à¤ªà¤¿à¤¤ केले आहेत" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "%2 पैकी %1 वी सूची मिळवा" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -726,7 +819,7 @@ "%1... उतरवून घेतले जात आहेत\n" "(तà¥à¤®à¥à¤¹à¥€ ही खिडकी बंद करू शकता.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -737,7 +830,7 @@ "à¤à¤•à¥à¤£ तारे: %2 Million\n" "पà¥à¤°à¤•à¤¾à¤¶à¤ªà¥à¤°à¤¤ आवक : %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -746,11 +839,11 @@ "%1:\n" "उतरवून घेणà¥à¤¯à¤¾à¤¤ तृटी%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "फाइलची à¤à¤•à¤¾à¤¤à¥à¤®à¤¤à¤¾ तपासली जात आहे...." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -760,115 +853,123 @@ " उतरवून घेणà¥à¤¯à¤¾à¤¤ तृटीफाइल खराब आहे." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1040,49 +1141,53 @@ msgid "OSX Developer: %1" msgstr "ओ à¤à¤¸à¥ à¤à¤•à¥à¤¸à¥ विकासक: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€ नियंतà¥à¤°à¤• खिडकी" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "खिडकà¥à¤¯à¤¾" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "सà¥à¤ªà¥‡à¤¸" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "टिपणी नाही" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "उलà¥à¤•à¤¾à¤µà¤°à¥à¤·à¤¾à¤µ नाही" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "सामानà¥à¤¯ वेग" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "ययाती तारकासमूहातून होणाऱà¥à¤¯à¤¾ उलà¥à¤•à¤¾à¤µà¤°à¥à¤·à¤¾à¤µà¤¾à¤šà¤¾ वेग" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "सिंह राशीतून होणा-या असाधारण उलà¥à¤•à¤¾à¤µà¤°à¥à¤·à¤¾à¤µà¤¾à¤šà¤¾ वेग" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "उचà¥à¤šà¤¤à¤® वेग (1966 सिंह रास)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "नविन सà¥à¤¥à¤¾à¤¨" @@ -1185,19 +1290,19 @@ msgid "starchart" msgstr "तारकाचितà¥à¤°" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "सिमबॅड देखभाल तृटी" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "सिमबॅड देखभाल" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "सà¥à¤Ÿà¤¾à¤°à¤¬à¥‹à¤°à¥à¤— विशà¥à¤µà¤µà¤¿à¤¦à¥à¤¯à¤¾à¤²à¤¯ (फà¥à¤°à¤¾à¤¨à¥à¤¸)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "हावरà¥à¤¡ विशà¥à¤µà¤µà¤¿à¤¦à¥à¤¯à¤¾à¤²à¤¯ (अमेरिका)" @@ -1213,30 +1318,36 @@ msgid "Alternative shortcut" msgstr "परà¥à¤¯à¤¾à¤¯à¥€ दà¥à¤µà¤¾" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "हा संगणक ओपनजीà¤à¤² कारà¥à¤¯à¤ªà¥à¤°à¤£à¤¾à¤²à¥€à¤¶à¥€ सà¥à¤¸à¤‚गत नाही." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "सूरà¥à¤¯" @@ -1253,12 +1364,12 @@ msgstr "पृथà¥à¤µà¥€" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "चंदà¥à¤°" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "मंगळ" @@ -1356,7 +1467,7 @@ msgstr "मेटिस" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "शनी" @@ -1654,211 +1765,240 @@ msgstr "इनà¥à¤¯à¥à¤Ÿ" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "कोरियन" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "लॅकोटा" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "माओरी" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "नावाहो" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "नॉरà¥à¤¸" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "पॉलीनेशिअन" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "सामी" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "टà¥à¤ªà¥€-गà¥à¤µà¤¾à¤°à¤¾à¤¨à¥€" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "पाशà¥à¤šà¤¿à¤®à¤¾à¤¤à¥à¤¯" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "गà¥à¤¯à¥à¤°à¥‡à¤¨à¥à¤¸" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "à¤à¤¾à¤¡à¥‡" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "वादळे" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "समà¥à¤¦à¥à¤°" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "गारà¥à¤šà¤¿à¤‚ग" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "देखावà¥à¤¯à¤¾à¤‚ची भेट" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "खंडगà¥à¤°à¤¾à¤¸à¤¾ चंदà¥à¤°à¤—à¥à¤°à¤¹à¤£" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "खगà¥à¤°à¤¾à¤¸ चंदà¥à¤°à¤—à¥à¤°à¤¹à¤£" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "सà¥à¤•à¥à¤°à¥€à¤¨à¤¸à¥‡à¤µà¤°" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "सूरà¥à¤¯à¤—à¥à¤°à¤¹à¤£ २००९" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€ सà¥à¤°à¥" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "राशीचकà¥à¤°" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "बà¥à¤§ सूरà¥à¤¯à¥‹à¤¦à¤¯-सà¥à¤°à¥à¤¯à¤¾à¤¸à¥à¤¤" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "२०१७ चे डिमोस चे दà¥à¤¹à¥‡à¤°à¥€ गà¥à¤°à¤¹à¤£" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "२०३१ मधिल डिमॉसवरून दिसणारे दà¥à¤¹à¥‡à¤°à¥€ गà¥à¤°à¤¹à¤£" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "१० जानेवारी २०६८ ला ऑलिंपस मोनà¥à¤¸ वरà¥à¤¨ दिसणारे गà¥à¤°à¤¹à¤£" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "2048 मधील पृथà¥à¤µà¥€ आणि गà¥à¤°à¥‚ यांची पिधानयà¥à¤¤à¥€" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "सूरà¥à¤¯à¤®à¤¾à¤²à¤¾ सà¥à¤•à¥à¤°à¤¿à¤¨à¤¸à¥‡à¤µà¥à¤¹à¤°" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "तारकापूज यातà¥à¤°à¤¾" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "विविध गà¥à¤°à¤¹à¤¾à¤‚वरून सà¥à¤°à¥à¤¯ दरà¥à¤¶à¤¨" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "इतर ठिकाणाहून पृथà¥à¤µà¥€ दरà¥à¤¶à¤¨" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "शà¥à¤•à¥à¤°à¤¾à¤šà¥‡ अधिकà¥à¤°à¤®à¤£" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "संसà¥à¤¥à¤¾à¤ªà¤¿à¤¤ केलेले सरà¥à¤µ देखावे पहा." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "खंडगà¥à¤°à¤¾à¤¸ चंदà¥à¤°à¤—à¥à¤°à¤¹à¤£ दरà¥à¤¶à¤µà¤£à¤¾à¤°à¥€ आजà¥à¤žà¤¾à¤µà¤²à¥€" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "खगà¥à¤°à¤¾à¤¸ चंदà¥à¤°à¤—à¥à¤°à¤¹à¤£ दरà¥à¤¶à¤µà¤£à¤¾à¤°à¥€ आजà¥à¤žà¤¾à¤µà¤²à¥€" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "अवकाशातील यदृचà¥à¤›à¤¾ भेट," -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" "२००९ साली à¤à¤¾à¤²à¥‡à¤²à¥‡ सूरà¥à¤¯à¤—à¥à¤°à¤¹à¤£ दरà¥à¤¶à¤µà¤£à¤¾à¤°à¥€ आजà¥à¤žà¤¾à¤µà¤²à¥€ (ठिकाण = रंगपूर, बांगलादेश)" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "सà¥à¤°à¥ होतांना सà¥à¤µà¤¯à¤‚चलितरीतà¥à¤¯à¤¾ सà¥à¤°à¥ होणारॊ आजà¥à¤žà¤¾à¤µà¤²à¥€" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "ही आजà¥à¤žà¤¾à¤µà¤²à¥€ सà¥à¤°à¥à¤¯ वरà¥à¤·à¤­à¤¾à¤°à¤¾à¤¤ जà¥à¤¯à¤¾ राशींमधून फिरतो ते दरà¥à¤¶à¤µà¥€à¤¤à¥‡." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1866,30 +2006,30 @@ "बà¥à¤§à¤¾à¤šà¥à¤¯à¤¾ सà¥à¤µà¤¾à¤‚ग आणि सà¥à¤°à¥à¤¯à¤ªà¤°à¤¿à¤­à¤®à¤£ ककà¥à¤·à¥‡à¤¤ विकà¥à¤·à¤¿à¤ªà¥à¤¤à¤ªà¤£à¤¾ असलà¥à¤¯à¤¾à¤¨à¥‡ ठराविक " "ठिकाणाहून à¤à¤•à¤¾ दिवसात ३ वेगवेगळà¥à¤¯à¤¾à¤µà¥‡à¤³à¥€ सà¥à¤°à¥à¤¯à¥‹à¤¦à¤¯ -सà¥à¤°à¥à¤¯à¤¾à¤¸à¥à¤¤ होतो." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1899,1502 +2039,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "अॅंडोरा" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "संयà¥à¤•à¥à¤¤ अरब अमिराती" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "अफ़गणिसà¥à¤¤à¤¾à¤¨" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "अॅंटिगà¥à¤µà¤¾ आणी बारà¥à¤¬à¥à¤¡à¤¾" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "अॅंगà¥à¤µà¤¿à¤²à¤¾" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "अलà¥à¤¬à¥‡à¤¨à¤¿à¤¯à¤¾" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "अमेरीका" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "नेदरलैंडà¥à¤¸ à¤à¤‚टीलेस" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "अंगोला" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "अंटारà¥à¤•à¥à¤Ÿà¤¿à¤•à¤¾" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "अरà¥à¤œà¥‡à¤‚रà¥à¤Ÿà¤¿à¤¨à¤¾" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "अमेरिकन सॅमोआ" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ऑसà¥à¤Ÿà¥à¤°à¤¿à¤¯à¤¾" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ऑसà¥à¤Ÿà¥à¤°à¥‡à¤²à¤¿à¤¯à¤¾" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "अरà¥à¤¬à¤¾" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "अà¤à¤°à¤¬à¥ˆà¤œà¤¾à¤¨" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "बोसà¥à¤¨à¤¿à¤¯à¤¾ आणि हरà¥à¤à¥‡à¤—ोविना" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "बारà¥à¤¬à¤¾à¤¡à¥‹à¤¸" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "बांगलादेश" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "बेलà¥à¤œà¤¿à¤¯à¤®" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "बà¥à¤°à¥à¤•à¤¿à¤¨à¥‹ फासो" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "बलà¥à¤—ेरिया" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "बाहारिन" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "बà¥à¤°à¥à¤‚डी" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "बेनिन" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "बरà¥à¤®à¥à¤¡à¤¾" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "बà¥à¤°à¥à¤¨à¥‹à¤‡ दारà¥à¤¸à¤²à¤¾à¤®" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "बोलिवà¥à¤¹à¥€à¤¯à¤¾" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "बà¥à¤°à¤¾à¤à¤¿à¤²" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "बहामाजà¥" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "भूतान" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "बोवà¥à¤¹à¥‡ आयलॅंड" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "बोसà¥à¤µà¤¾à¤¨à¤¾" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "बेलारूस" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "बेलिà¤" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "कॅनडा" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "कोकोज बेटे" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "डेमोकà¥à¤°à¤¿à¤Ÿà¥€à¤• रिपबà¥à¤²à¤¿à¤• ऑफ कॉनà¥à¤—ो" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "केंदà¥à¤°à¥€à¤¯ आफà¥à¤°à¤¿à¤•à¥€ गणराजà¥à¤¯" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "रिपबà¥à¤²à¤¿à¤• ऑफ कॉंगो" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "सà¥à¤µà¥€à¤°à¥à¤¤à¥à¤à¥‡à¤²à¥…ंड" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "कोट द लवà¥à¤¹à¥‹à¤°à¥‡" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "कà¥à¤• बेट" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "चिली" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "कॅमेरून" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "चीन" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "कोलंबिया" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "कोसà¥à¤Ÿà¤¾à¤°à¤¿à¤•à¤¾" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "सरà¥à¤¬à¤¿à¤¯à¤¾ आणी मॉंटेनेगोरो" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "कà¥à¤¯à¥à¤¬à¤¾" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "केप वरà¥à¤¦" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "कà¥à¤°à¤¿à¤¸à¤®à¤¸ बेट" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "सायपà¥à¤°à¤¸" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "à¤à¥‡à¤• पà¥à¤°à¤œà¤¾à¤¸à¤¤à¥à¤¤à¤¾à¤•" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "जरà¥à¤®à¤¨à¥€" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "दिजीबौटी" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "डेनà¥à¤®à¤¾à¤°à¥à¤•" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "डोमिनिका" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "डॉमिनिकन रिपबà¥à¤²à¤¿à¤•" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "अलà¥à¤œà¤¿à¤°à¤¿à¤¯à¤¾" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "इकà¥à¤µà¥‡à¤¡à¥‹à¤°" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "ईसà¥à¤Ÿà¥‹à¤¨à¤¿à¤¯à¤¾" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "ईजिपà¥à¤¤" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "पशà¥à¤šà¤¿à¤®à¥€ सहारा" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "इरीटà¥à¤°à¤¿à¤¯à¤¾" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "सà¥à¤ªà¥‡à¤¨" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "इथिओपिया" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "फिनà¥à¤²à¤‚ड" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "फिजी" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "फालà¥à¤•à¤²à¥…नà¥à¤¡ बेटे" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "मिकà¥à¤°à¥‹à¤¨à¥‡à¤¸à¤¿à¤†" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "फेरो आयलॅंडसà¥" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "फ़à¥à¤°à¤¾à¤¨à¥à¤¸" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "गॅबन" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "यà¥à¤¨à¤¾à¤¯à¤Ÿà¥‡à¤¡ किंगडम" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "गà¥à¤°à¥‡à¤¨à¥‡à¤¡à¤¾" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "जॉरà¥à¤œà¤¿à¤¯à¤¾" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "फà¥à¤°à¥‡à¤‚च गियाना" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "घाना" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "जिबà¥à¤°à¤¾à¤²à¥à¤Ÿà¤°" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "गà¥à¤°à¥€à¤¨à¤²à¥ˆà¤‚ड" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "गैमबिया" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "गिनी" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "गà¥à¤µà¤¾à¤¡à¥‡à¤²à¥‹à¤ª" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "इकà¥à¤µà¥‡à¤Ÿà¥‹à¤°à¤¿à¤¯à¤² गिनी" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "गà¥à¤°à¤¿à¤¸" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "दकà¥à¤·à¤¿à¤£ जारà¥à¤œà¤¿à¤¯à¤¾ आणि दकà¥à¤·à¤¿à¤£ सैंडविच दà¥à¤µà¥€à¤ª" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "गà¥à¤µà¤¾à¤Ÿà¥‡à¤®à¤¾à¤²à¤¾" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "गà¥à¤†à¤®" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "गिनी-बिसाव" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "गियाना" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "हॉंगकॉंग" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "हरà¥à¤¡ आयलॅंड आणि मॅकडोनालà¥à¤¡ आयलॅंडसà¥" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "होनà¥à¤¡à¤¾à¤°à¤¸" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "कà¥à¤°à¥‹à¤†à¤Ÿà¤¿à¤¯à¤¾" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "हैती" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "हंगेरी" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "इंडोनेशिया" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "आयरà¥à¤²à¤‚ड" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "इसà¥à¤°à¤¾à¤¯à¤²" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "भारत" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "बà¥à¤°à¤¿à¤Ÿà¤¿à¤¶ ईंडियन ओशन टेरिटोरी" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "ईराक" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "ईराण" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "आइसलà¤à¤¡" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ईटली" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "जमैका" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "जॉरà¥à¤¡à¤¨" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "जपान" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "केनिया" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "किरगिà¤à¤¸à¥à¤¤à¤¾à¤¨" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "कंबोडिया" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "किरिबाती" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "कॉमोरोस" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "सेंट किटसॠआणी नेवà¥à¤¹à¤¿à¤¸" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "डेमोकà¥à¤°à¥…टिक पिपलà¥à¤¸ रिपबà¥à¤²à¤¿à¤• ऑफ कोरिया" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "रिपबà¥à¤²à¤¿à¤• ऑफ कोरिया" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "कà¥à¤µà¥‡à¤¤" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "केमन बेट" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "कà¤à¤¾à¤•à¤¿à¤¸à¥à¤¤à¤¾à¤¨" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "लाओ" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "लेबेनॉन" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "सेंट लà¥à¤¸à¤¿à¤†" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "लिचेंसà¥à¤Ÿà¤¾à¤‡à¤¨" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "शà¥à¤°à¥€à¤²à¤‚का" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "लायबेरिया" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "लेसोथो" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "लूथेनिया" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "लकà¥à¤à¥‡à¤‚बरà¥à¤—" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "लॅटिवा" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "लिबियन अरब जमाहिरिया" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "मोरोकà¥à¤•à¥‹" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "मोनाको" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "मालडोवा" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "मादागासà¥à¤•à¤°" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "मारà¥à¤¶à¤² बेटे" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "मसिडोनिया" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "माली" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "मà¥à¤¯à¤¾à¤¨à¤®à¤¾à¤°" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "मंगोलिया" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "मकाऊ" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "उतà¥à¤¤à¤°à¥€ मारीआना बेटे" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "मारà¥à¤Ÿà¥€à¤¨à¥€à¤•" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "मौरितानिया" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "मॉनà¥à¤Ÿà¤¸à¥‡à¤°à¤¾à¤Ÿ" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "मालà¥à¤Ÿà¤¾" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "मॉरिशस" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "मालदिवà¥à¤¹à¤œà¥" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "मालवी" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "मेकà¥à¤¸à¤¿à¤•à¥‹" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "मलेशिया" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "मोà¤à¤¾à¤‚बिक" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "नामिबिया" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "नà¥à¤¯à¥‚ कॅलिडोनिया" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "नायगर" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "नॉरà¥à¤«à¥‹à¤• बेट" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "नायजेरिया" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "निकारागà¥à¤µà¤¾" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "नेदरलà¤à¤¡à¥à¤¸" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "नॉरà¥à¤µà¥‡" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "नेपाल" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "नौरà¥" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "निउई" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "नà¥à¤¯à¥‚à¤à¤¿à¤²à¤‚ड" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "ओमान" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "पनामा" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "पेरू" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "फà¥à¤°à¥‡à¤š पॉलिनेशिया" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "पापà¥à¤† नà¥à¤¯à¥‚ गिनी" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "फिलिपिनà¥à¤¸" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "पाकिसà¥à¤¤à¤¾à¤¨" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "पोलंड" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "संत पीयरे आणि मीकेलोन" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "पिटकेरà¥à¤¨" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "पोरà¥à¤Ÿà¥‹ रिका" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "पॅलेसà¥à¤Ÿà¤¾à¤‡à¤¨ पà¥à¤°à¤¦à¥‡à¤¶" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "पोरà¥à¤¤à¥à¤—ाल" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "पालाउ" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "पेरूगà¥à¤µà¥‡" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "कतार" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "रियूनियन" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "रूमानिया" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "सरà¥à¤¬à¤¿à¤¯à¤¾" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "रशियन संघराजà¥à¤¯" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "रवांडा" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "सौदी अरेबिया" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "सोलोमोन बेटे" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "सेशेलà¥à¤¸" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "सà¥à¤¦à¤¾à¤¨" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "सà¥à¤µà¥€à¤¡à¤¨" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "सिंगापूर" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "सेंट हेलेना" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "सà¥à¤²à¥‹à¤µà¥à¤¹à¥‡à¤¨à¤¿à¤¯à¤¾" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "सà¥à¤µà¤¾à¤²à¤¬à¤¾à¤°à¥à¤¡ आणि जन मेयेन" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "सà¥à¤²à¥‹à¤µà¥à¤¹à¤¾à¤•à¤¿à¤¯à¤¾" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "सिरीया लिओन" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "सॅन मॅरिनो" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "सेनेगल" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "सोमालिया" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "सà¥à¤°à¥€à¤¨à¥‡à¤®" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "साओ टोम व पà¥à¤°à¤¿à¤‚सिपी" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "à¤à¤² सॅलà¥à¤µà¤¾à¤¡à¥‹à¤°" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "सिरियन अरब रिपबà¥à¤²à¤¿à¤•" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "सà¥à¤µà¤¾à¤à¥€à¤²à¥…नà¥à¤¡" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "टरà¥à¤•à¥à¤¸ आणि केईकोस बेटे" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "चॅड" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "फà¥à¤°à¥‡à¤‚च सदरà¥à¤¨ टेरिटरीजà¥" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "टोगो" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "थायलंड" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ताजिकिसà¥à¤¤à¤¾à¤¨" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "टोकेलाव" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "ईसà¥à¤Ÿ तिमोर" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "तà¥à¤°à¥à¤•à¤®à¥‡à¤¨à¤¿à¤¸à¥à¤¤à¤¾à¤¨" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "टà¥à¤¯à¥‚नीशिया" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "टोंगा" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "टरà¥à¤•à¥€" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "तà¥à¤°à¤¿à¤¨à¤¿à¤¦à¤¾à¤¦ अॅंड टोबॅगो" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "तà¥à¤µà¥à¤¹à¤¾à¤²à¥" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "तैवान" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "टांà¤à¤¾à¤¨à¤¿à¤¯à¤¾" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "यà¥à¤•à¥à¤°à¥‡à¤¨" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "यà¥à¤—ांडा" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "यà¥à¤¨à¤¾à¤‡à¤Ÿà¥‡à¤¡ सà¥à¤Ÿà¥‡à¤Ÿà¥à¤¸ माइनर आउटलेइंग दà¥à¤µà¥€à¤ª" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "अमेरिकेची संयà¥à¤•à¥à¤¤ संसà¥à¤¥à¤¾à¤¨à¥‡" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "उरूगà¥à¤µà¥‡" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "उजबेकिसà¥à¤¤à¤¾à¤¨" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "वà¥à¤¹à¥…टिकन सिटी सà¥à¤Ÿà¥‡à¤Ÿ" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "सैंट विनà¥à¤¸à¤¨à¥à¤Ÿ आणि गà¥à¤°à¥‡à¤¨à¤¾à¤¡à¤¾à¤‡à¤‚स" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "वà¥à¤¹à¥‡à¤¨à¥‡à¤à¥à¤à¤²à¤¾" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "बà¥à¤°à¤¿à¤Ÿà¤¿à¤¶ वà¥à¤¹à¤°à¥à¤œà¤¿à¤¨ आयलॅंडसà¥" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "यूनाइटेड सà¥à¤Ÿà¥‡à¤Ÿ वरà¥à¤œà¤¿à¤¨ दà¥à¤µà¥€à¤ª" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "वà¥à¤¹à¤¿à¤à¤Ÿà¤¨à¤¾à¤®" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "वà¥à¤¹à¤¾à¤¨à¤¾à¤Ÿà¥‚" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "वॅलिस आणि फà¥à¤Ÿà¥‚ना" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "सॅमोआ" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "येमेन" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "मायोट" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "यà¥à¤—ोसà¥à¤²à¤¾à¤µà¥à¤¹à¥€à¤¯à¤¾" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "दकà¥à¤·à¤¿à¤£ अफà¥à¤°à¥€à¤•à¤¾" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "à¤à¤¾à¤‚बिया" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "à¤à¤¿à¤‚बांबà¥à¤¬à¥‡" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "दिनांक आणि वेळ" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "१ नकà¥à¤·à¤¤à¥à¤° दिवस वाढवा" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "१ नाकà¥à¤·à¤¤à¥à¤° महिना वाढवा" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "१ नकà¥à¤·à¤¤à¥à¤° आठवडा वाढवा" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "१ नाकà¥à¤·à¤¤à¥à¤° वरà¥à¤· वाढवा" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "१ सौर दिवस वाढवा" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "१ सौरतास वाढवा" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "१ सौर आठवडा वाढवा" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "1 सांवासिक महिना वाढवा" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "1 डà¥à¤°à¤¾à¤•à¥‹à¤¨à¤¿à¤• महिना वाढवा" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "1 अâ€à¥…नोमॅलिसà¥à¤Ÿà¤¿à¤• महिना वाढवा" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ वेग कमी करा" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "वेळेचा वेग कमी करा" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "वेळ वेग वाढवा (थोडा)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ वेग वाढवा" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "वेळेचा वेग जासà¥à¤¤ करा" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "वेळ वेग कमी करा (थोडा)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€à¤‚चे अंमलबजावणी थोपवा" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€à¤‚चे अंमलबजावणी सà¥à¤°à¥ करा" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "सधà¥à¤¯à¤¾à¤šà¥à¤¯à¤¾ वेळेशी सà¥à¤¸à¤‚गत करा" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€ पà¥à¤°à¤•à¥à¤°à¤¿à¤¯à¤¾ वेग सामानà¥à¤¯ ठेवा" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "वेळेचा वेग सामानà¥à¤¯ ठेवा" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "वेळेचा वेग शà¥à¤¨à¥à¤¯ करा" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€à¤šà¥€ कारà¥à¤¯à¤µà¤¾à¤¹à¥€ थांबवा" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "१ नकà¥à¤·à¤¤à¥à¤° दिवस कमी करा" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "१ नाकà¥à¤·à¤¤à¥à¤° महिना कमी करा" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "१ नकà¥à¤·à¤¤à¥à¤° आठवडा कमी करा" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "१ नाकà¥à¤·à¤¤à¥à¤° वरà¥à¤· कमी करा" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "१ सौर दिवस कमी करा" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "१ सौरतास कमी करा" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "१ सौर आठवडा कमी करा" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "१ सांवासिक महिना वजा करा" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "१ डà¥à¤°à¤¾à¤•à¥‹à¤¨à¤¿à¤• महिना वजा करा." -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "१ अâ€à¥…नमलिसà¥à¤Ÿà¤¿à¤• महिना वजा करा" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "१ सरासरी आयनिक महिना वजा करा" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "१ डà¥à¤°à¤¾à¤•à¥‹à¤¨à¤¿à¤• वरà¥à¤· वजा करा" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "१ सरासरी आयनिक महिना वजा करा" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "पटल परà¥à¤¯à¤¾à¤¯" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "देखावà¥à¤¯à¤¾à¤šà¥€ आडवी बाजू पालट" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "पà¥à¤°à¥à¤£ पटल सà¥à¤¥à¤¿à¤¤à¥€" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "वातावरण" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "दिगंश" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "पà¥à¤°à¤®à¤¾à¤£à¤• बिंदू" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "तारकापà¥à¤‚जाचे चितà¥à¤°" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "तारकापà¥à¤‚ज सीमा" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "तारकापà¥à¤‚ज नावे" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "तारकापà¥à¤‚जाची आकृती" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "तेजोमेघ पारà¥à¤¶à¥à¤µà¤šà¤¿à¤¤à¥à¤°à¥‡" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "कà¥à¤°à¤¾à¤‚तीवृतà¥à¤¤ J2000 जालीका" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "अयनवृतà¥à¤¤" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "विषà¥à¤µà¥ƒà¤¤à¥à¤¤ रेषा" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "विषà¥à¤µà¤¾à¤‚श" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "विषà¥à¤µà¤¾à¤‚श J2000 जाळी" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "धà¥à¤•à¥‡" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "दिरà¥à¤˜à¥€à¤•à¤¾ जाल" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "दिरà¥à¤˜à¤¿à¤•à¤¾ पà¥à¤°à¤¤à¤²" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "जमीन" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "kshitij rekha" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "मधà¥à¤¯à¤¾à¤¨à¤µà¥ƒà¤¤à¥à¤¤ रेषा" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "तेजोमेघ" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "रातà¥à¤° सà¥à¤¥à¤¿à¤¤à¥€" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "गà¥à¤°à¤¹à¤¾à¤‚ची नावे" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "गà¥à¤°à¤¹ ककà¥à¤·à¤¾" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "गà¥à¤°à¤¹à¤¾à¤šà¥‡ माग" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "तारे" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "तारे नामनोरà¥à¤¦à¥‡à¤¶" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "देखावà¥à¤¯à¤¾à¤šà¥€ उभी बाजू पालट" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "इतर" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "आडवी कळ पटà¥à¤Ÿà¥€ सà¥à¤µà¤¤:हून लपवा" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "उभी कळ पटà¥à¤Ÿà¥€ सà¥à¤µà¤¤:हून लपवा" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "मूल सà¥à¤¥à¤¾à¤¨" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "बाहेर पडा" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "निवडलेला मजकूर कà¥à¤²à¤¿à¤ªà¤¬à¥‹à¤°à¥à¤¡à¤µà¤° घà¥à¤¯à¤¾" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "पटलचितà¥à¤° साठवून ठेवा" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "विषà¥à¤µà¤¾à¤‚श व दिगंश आरोपण यात बदल करा" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "पडदà¥à¤¯à¤¾à¤µà¤°à¥€à¤² आकृतà¥à¥Ÿà¤¾à¤‚ची दृषà¥à¤¯à¤®à¤¾à¤¨à¤¤à¤¾ बदला" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "हालचाल आणि निवड" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "निवडलेले लकà¥à¤·à¥à¤¯ मधोमध आणा" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "निवडलेला गà¥à¤°à¤¹ गृह मà¥à¤¹à¤£à¥‚न निशà¥à¤šà¤¿à¤¤ करा" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "लकà¥à¤·à¥à¤¯à¤¾à¤šà¤¾ मागोवा घà¥à¤¯à¤¾" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "निवडलेले लकà¥à¤·à¤¾à¤šà¤¾ आकार मोठा करा( निकटन)" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "आकार छोटा करा(दà¥à¤°à¤¾à¤µà¤²à¥‹à¤•à¤¨)" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "अंश मापन" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "होकायंतà¥à¤° माग" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "बहिसà¥à¤¥à¤—à¥à¤°à¤¹ दरà¥à¤¶à¤µà¤¾" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "बहिसà¥à¤¥à¤—à¥à¤°à¤¹ संरचना खिडकी" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "नेतà¥à¤°à¤¿à¤•à¥‡à¤¤à¤²à¥‡ दृषà¥à¤¯" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "संरचना खिडकी" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "दिनांक/वेळ खिडकी" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "सहायà¥à¤¯ खिडकी" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "सà¥à¤¥à¤¾à¤¨ खिडकी" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "शोध खिडकी" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "आकाश आणि निरिकà¥à¤·à¤£ परà¥à¤¯à¤¾à¤¯ खिडकी" @@ -3420,7 +3596,7 @@ msgstr "ताजातवाना करा" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "सà¥à¤¥à¤¾à¤¨" @@ -3436,10 +3612,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "रदà¥à¤¦" @@ -3448,7 +3624,7 @@ msgstr "यादीत वाढवा" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "अकà¥à¤·à¤¾à¤‚श" @@ -3461,12 +3637,12 @@ "सà¥à¤¦à¥à¤§à¤¾ भरू शकता उदा :+1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "रेखांश" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "उनà¥à¤¨à¤¤à¤¾à¤‚श" @@ -3490,363 +3666,407 @@ msgid "Planet:" msgstr "गà¥à¤°à¤¹:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "आकाशसà¥à¤¥ वसà¥à¤¤à¥‚चा शोध" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "ठिकाण किंवा वसà¥à¤¤à¥‚ शोधा" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "आयोटा" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "अलà¥à¤«à¤¾" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "बिटा" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "गॅमा" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "डेलà¥à¤Ÿà¤¾" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "इपà¥à¤¸à¤¿à¤²à¥‰à¤¨" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "à¤à¤¿à¤Ÿà¤¾" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "ईटा" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "थिटा" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "कापà¥à¤ªà¤¾" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "लà¤à¤¬à¤¡à¤¾" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "मà¥à¤¯à¥" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "नà¥à¤¯à¥" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "ओमिकà¥à¤°à¥‰à¤¨" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "पाय" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "-हो" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "सिगà¥à¤®à¤¾" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "टाउ" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "उपà¥à¤¸à¤¿à¤²à¥‰à¤¨" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "फाय" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "ची" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "ओमेगा" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "बायà¥à¤° पदासाठी गà¥à¤°à¤¿à¤• अदà¥à¤¯à¤¾à¤•à¥à¤·à¤°à¥‡" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "वसà¥à¤¤à¥‚" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000)" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "सà¥à¤¥à¤¾à¤¨" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "SIMBAD चà¥à¤¯à¤¾ सहायà¥à¤¯à¤¾à¤¨à¥‡ अधिकचा शोध" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "सरà¥à¤µà¥à¤¹à¤° :" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "परà¥à¤¯à¤¾à¤¯" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "परà¥à¤¯à¤¾à¤¯" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "पहा" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "आकाश" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "खाणाखà¥à¤£à¤¾" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "देखावा" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "ता-यांबदà¥à¤¦à¤²à¤šà¥à¤¯à¤¾ कथा" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "नावे आणि दरà¥à¤¶à¤•" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "गà¥à¤°à¤¹" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "गà¥à¤°à¤¹ व उपगà¥à¤°à¤¹" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "गà¥à¤°à¤¹ दरà¥à¤¶à¤µà¤¾" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "गà¥à¤°à¤¹ दरà¥à¤¶à¤• दाखवा" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "गà¥à¤°à¤¹à¤•à¤•à¥à¤·à¤¾ दरà¥à¤¶à¤µà¤¾" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "पà¥à¤°à¤•à¤¾à¤¶à¤¿à¤¯ गतीचे सादृशीकरण" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "चंदà¥à¤° लहान/मोठा करा" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "वातावरण दरà¥à¤¶à¤µà¤¾" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "पà¥à¤°à¤•à¤¾à¤¶ पà¥à¤°à¤¦à¥à¤·à¤£" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "दाब, तापमान, विलोप गà¥à¤£à¤¾à¤‚क" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "पà¥à¤°à¤¾à¤µà¤°à¥à¤¤à¤¨/ विलोप मांडणी" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "निरपेकà¥à¤· माप:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "सापेकà¥à¤· माप:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "लà¥à¤•à¤²à¥à¤•:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "आकाशसà¥à¤¥ वसà¥à¤¤à¥‚ पà¥à¤°à¤–र असतांना पà¥à¤¸à¤Ÿ तारे मंद करा" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "नेतà¥à¤° अनà¥à¤•à¥à¤²à¤¨" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "उलà¥à¤•à¤¾" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "तारकापà¥à¤‚ज" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "आकृती दाखवा" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "नावे दाखवा" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "सीमा दरà¥à¤¶à¤µà¤¾" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "चितà¥à¤° दरà¥à¤¶à¤µà¤¾" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "खगोल" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "पà¥à¤°à¤•à¥à¤·à¥‡à¤ª" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "परिसरचितà¥à¤°à¥‡ घà¥à¤¯à¤¾/सोडा" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "जमीन दरà¥à¤¶à¤µà¤¾" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "धà¥à¤•à¥‡ दाखवा" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "संबंधीत गà¥à¤°à¤¹ व सà¥à¤¥à¤¾à¤¨à¥‡ वापरा" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "हा देखावा मà¥à¤³ देखावा मà¥à¤¹à¤£à¥‚न वापरा" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "ही अवकाशपदà¥à¤§à¤¤ मूळ मà¥à¤¹à¤£à¥‚न वापरा" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "दृशà¥à¤¯à¤®à¤¾à¤¨" @@ -3901,7 +4121,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "सà¥à¤Ÿà¥‡à¤²à¤¾à¤°à¤¿à¤…म सà¥à¤°à¥ होतांनाची तà¥à¤®à¤šà¥à¤¯à¤¾ बघणà¥à¤¯à¤¾à¤šà¥€ दिशा" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "निवडलेलà¥à¤¯à¤¾ वसà¥à¤¤à¥‚ची माहिती" @@ -3917,11 +4137,8 @@ msgid "Display no information" msgstr "माहिती दरà¥à¤¶à¤µà¥‚ नका" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "माहिती नाही" @@ -4065,7 +4282,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "सूरॠहोतांनाचा दिनांक व वेळ" @@ -4077,19 +4294,23 @@ msgid "Other:" msgstr "इतर:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "सधà¥à¤¯à¤¾à¤šà¥€ वापरा" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "सà¥à¤Ÿà¥‡à¤²à¤°à¥€à¤…म सà¥à¤°à¥ करतांना संगणकाची दिनांक व वेळ वापरा" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "संगणकाची दिनांक व वेळ" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4097,23 +4318,23 @@ "पà¥à¤¢à¥€à¤² वेळेस सà¥à¤Ÿà¥‡à¤²à¤¾à¤°à¥€à¤…म चालू होतांना या दिवसाचà¥à¤¯à¤¾ याच वेळेचा " "वापरसादृशीकरणासाठी केला जाइल" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "संगणकाचा दिनांक:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "तारांगण परà¥à¤¯à¤¾à¤¯" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4121,143 +4342,149 @@ "कमी खरà¥à¤šà¤¾à¤šà¥à¤¯à¤¾ वकà¥à¤° आरशावरील तारांगणा पदà¥à¤§à¤¤à¥€à¤¤ सà¥à¤Ÿà¥‡à¤²à¤¾à¤°à¥€à¤…मचà¥à¤¯à¤¾ " "पà¥à¤°à¤•à¥à¤·à¥‡à¤ªà¤£à¤¾à¤¸à¤¾à¤ à¥€à¤µà¤•à¥à¤° आरसा विचरण वापरले जाते." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "वकà¥à¤° आरसा विचरण" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "मà¥à¤–à¥à¤¯ दृषà¥à¤¯à¤¾à¤®à¤§à¥à¤¯à¥‡ मधà¥à¤¯ वरà¥à¤¤à¥‚ळाबाहेरील सरà¥à¤µ à¤à¤¾à¤•à¤²à¥‡ जाईल" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "वरà¥à¤¤à¥‚ळ दृषà¥à¤¯à¤ªà¤¦à¥à¤§à¤¤" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "à¤à¤•à¤¾à¤µà¤° कà¥à¤²à¤¿à¤• केलà¥à¤¯à¤¾à¤µà¤° इतर तारकापà¥à¤‚ज लपवा" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "à¤à¤•à¤š तारकापà¥à¤‚ज निवडा" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "नावे कà¥à¤·à¤¿à¤¤à¤¿à¤œ पातळीशी जà¥à¤³à¤µà¥‚न घà¥à¤¯à¤¾" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "गà¥à¤°à¥à¤¤à¥à¤µà¥€à¤¯ नावे" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "चितà¥à¤°à¤¾à¤šà¥€ उभी किंवा आडवी पलट कळ" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "पलट कळ दरà¥à¤¶à¤µà¤¾" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" "सकà¥à¤°à¤¿à¤¯ असेल तेवà¥à¤¹à¤¾ \"auto zoom out\" कळ, पà¥à¤°à¤¾à¤°à¤‚भीक दृषà¥à¤Ÿà¥€ दिशापणनिशà¥à¤šà¤¿à¤¤ करेल" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "सà¥à¤µà¤šà¤¾à¤²à¥€à¤¤ दà¥à¤°à¤¾à¤µà¤²à¥‹à¤•à¤¨ दृशà¥à¤¯à¤¾à¤šà¥à¤¯à¤¾ मà¥à¤³ दिशेला परत येइल" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "पटलचितà¥à¤°" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "पटलचितà¥à¤° संचिका" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "रंग पालट" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "तारकासूची आदà¥à¤¯à¤¯à¤¾à¤µà¤¤" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "उतरवून घेणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ येथे कà¥à¤²à¤¿à¤• करा" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "आणखी जासà¥à¤¤ तारे पाहणà¥à¤¯à¤¾à¤¸à¤¾à¤ à¥€ ही संचिका उतरवून घà¥à¤¯à¤¾" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "उतरवून घेणà¥à¤¯à¤¾à¤šà¥‡ कारà¥à¤¯ पà¥à¤¨à¥à¤¹à¤¾ सà¥à¤°à¥ करा" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "पà¥à¤¨à¥à¤¹à¤¾ पà¥à¤°à¤¯à¤¤à¥à¤¨ करा" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "उतरवून घेणà¥à¤¯à¤¾à¤šà¥‡ कारà¥à¤¯ थांबवा, तà¥à¤®à¥à¤¹à¥€ ते नंतर ते कधीही करू शकता" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "रदà¥à¤¦" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "आजà¥à¤žà¤¾à¤µà¤²à¥€ सà¥à¤°à¥ असतांना खिडकी बंद करा" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "निवडलेली आजà¥à¤žà¤¾à¤µà¤²à¥€ चालू करा" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "चालू असलेली आजà¥à¤žà¤¾à¤µà¤²à¥€ थांबवा" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "सà¥à¤°à¥à¤µà¤¾à¤¤à¥€à¤šà¥à¤¯à¤¾ वेळी भरेल" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "संरचीत" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "मà¥à¤–à¥à¤¯" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "निरà¥à¤¦à¥‡à¤¶à¤¨" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "साधने" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "जोड-साधने" @@ -4425,176 +4652,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4666,64 +4893,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4731,7 +4963,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4742,14 +4974,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4758,305 +4990,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "उपगà¥à¤°à¤¹" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5064,25 +5365,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5090,17 +5391,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5108,41 +5409,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5150,338 +5453,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5517,22 +5863,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "दà¥à¤°à¤¦à¤°à¥à¤¶à¥€ नियंतà¥à¤°à¤•" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5915,62 +6261,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6124,7 +6470,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6142,7 +6488,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6158,154 +6504,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "शबà¥à¤¦ वाà¥à¤ªà¤°à¤•à¤°à¥à¤¤à¤¾ फलक" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6338,22 +6684,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6522,36 +6868,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6569,7 +6922,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6583,14 +6936,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6598,8 +6951,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6617,29 +6971,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6655,51 +7086,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6819,11 +7260,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6831,137 +7272,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6969,49 +7414,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7027,185 +7561,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7535,6 +8063,12 @@ #~ msgid "Set UI Locale: " #~ msgstr "UI Locale निशà¥à¤šà¤¿à¤¤ करा: " +#~ msgid "Nebulas" +#~ msgstr "तेजोमेघ" + +#~ msgid "Nebulas background images" +#~ msgstr "तेजोमेघ पारà¥à¤¶à¥à¤µà¤šà¤¿à¤¤à¥à¤°à¥‡" + #~ msgid "Planets labels" #~ msgstr "गà¥à¤°à¤¹à¤¾à¤‚ची नावे" diff -Nru stellarium-0.12.1/po/stellarium/ms.po stellarium-0.12.4/po/stellarium/ms.po --- stellarium-0.12.1/po/stellarium/ms.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ms.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-03 13:38+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-13 02:51+0000\n" "Last-Translator: abuyop \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:17+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-14 04:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptik" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Khatulistiwa" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizon" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Satah Galaksi" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Pengarang: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Lokasi: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Jenis: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitud: %1 (pupus pada: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitud: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Saiz: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaksi" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Gugusan bintang terbuka" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "gugusan bintang kelompok" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebula" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebula planetari" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Nebula Gelap" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Gugusan bintang dengan gas nebulasiti" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Tidak diketahui" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Jenis yang tidak didokumentasi" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitud Mutlak: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Toposentrik Ekliptik (tarikh): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Keserongan (tarikh, untuk Bumi): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Jarak: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Jarak: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diameter ketara: %1, dengan gelang: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diameter ketara: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Tempoh ikut bintang: %1 hari (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "hari ikut bintang: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Min hari suria: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Sudut Fasa: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Pemanjangan: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fasa: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Disinari: %1%" @@ -204,7 +204,7 @@ msgstr "Penentuan sementara: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "bintang" @@ -219,48 +219,123 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnitude Ketara: %1 (oleh kepupusan)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "bintang berubah letusan" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "bintang berubah berpulsar" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "bintang berubah berputar" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "bintang berubah kataklismik" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "sistem dedua gerhana" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "bintang berubah" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "bintang dubel" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Jenis: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitud: %1 (pupus pada: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitud: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Julat magnitud: %1%2%3 (Sistem fotometrik: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Julat magnitud: %1%2%3/%4 (Sistem fotometrik: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Jenis Spektrum: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Jarak: %1 Tahun Cahaya" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaks: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Epok untuk cahaya minimum: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Epok untuk cahaya maksimum: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Tempoh: %1 hari" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Cahaya minimum berikutnya: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Cahaya maksimum berikutnya: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Tempoh masa gerhana: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Masa terbit: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Kapal Angkasa" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "Pembetulan dilumpuhkan. Hanya guna jika anda tahu apa yang anda buat!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -272,7 +347,7 @@ "Relativity Confirmed by Ancient Solar Eclipses (%1). Untuk maklumat " "lanjut rujuk %2disini%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -281,7 +356,7 @@ "Persamaan empirik ini telah diterbitkan oleh G.M. Clemence di dalam sebuah " "artikel On the system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -294,7 +369,7 @@ "Jean Meeus di dalam Astronomical Formulae for Calculators. ia juga " "telah digunapakai dalam Program PC SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -304,7 +379,7 @@ "telah digunapakai di dalam Astronomical Ephemeris dan juga di dalam " "Canon of Solar Eclipses oleh Mucke & Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -316,7 +391,7 @@ "Perkaitan yang serupa juga telah digunapakai di dalam jadual syzygy " "Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -327,7 +402,7 @@ "dalam sebuah artikel The accelerations of the earth and moon from early " "astronomical observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -336,7 +411,7 @@ "Persamaan ini telah diterbitkan oleh F. R. Stephenson di dalam sebuah " "artikel Pre-Telescopic Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -350,7 +425,7 @@ "in the period 1800-1975 (%1) kerana ia sepadan dengan data yang " "diterbitkan oleh Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -360,7 +435,7 @@ "from -4000 to +2800 oleh P. Bretagnon & L. Simon (1986) dan di dalam " "program planetrium PC RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -371,12 +446,12 @@ "dalam sebuah artikel Long-term changes in the rotation of the earth - " "700 B.C. to A.D. 1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" "Algoritma ini telah digunakan di dalam PC planetarium program Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -386,7 +461,7 @@ "of Solar Eclipses: 1986-2035 (1987) dan dalam Fifty Year Canon of " "Lunar Eclipses: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -395,7 +470,7 @@ "Formula ini telah diperoleh oleh K.M. Borkowski (%1) melalui satu analisis " "31 rekod gerhana matahari bermula dari 2137 SM sehingga 1715 M." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -408,7 +483,7 @@ "to E.T. for the Period 1800-1988 (%1) kerana data tersebut sepadan " "dengan nilai yang disediakan oleh Stephenson & Morrison (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -418,7 +493,7 @@ "versi pendek teori bulan ELP 2000-85 di dalam Lunar Tables and Programs " "from 4000 B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -429,7 +504,7 @@ "dalam sebuah artikel Long-Term Fluctuations in the Earth's Rotation: 700 " "BC to AD 1990 (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -438,7 +513,7 @@ "F. R. Stephenson telah menerbitkan formula ini di dalam bukunya " "Historical Eclipses and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -449,7 +524,7 @@ "variasi Chapront, Chapront-Touze & Francou (1997) bagi tarikh diluar dari " "tahun 1620..2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -459,7 +534,7 @@ "menggunakan formula ini di dalam laman sesawang interaktif mereka iaitu " "%1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -468,7 +543,7 @@ "Polinome ini telah diterbitkan oleh J. Meeus dan L. Simons di dalam sebuah " "artikel Polynomial approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -478,7 +553,7 @@ "Montenbruck & T. Pfleger's (2000) menyediakan data polinomial tertib-ke3 " "yang sepadan dengan yang terdahulu." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -490,7 +565,7 @@ "Calendrical Tabulations (2002) mereka. Ia berasaskan " "padaAstronomical Algorithms oleh Jean Meeus (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -502,7 +577,7 @@ "error %1T and the calculation of eclipses (%2) dengan penambahan di " "dalamnya (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -515,7 +590,7 @@ "dengan fungsi kosinus dan kuasa dua. Ia berasaskan kemungkinan berkala yang " "diterangkan oleh Stephenson (%2). Maklumat lanjut boleh dirujuk %3disini%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -531,11 +606,34 @@ "mereka. Formula ini juga digunakan untuk program SOLEX efemeris suria, bulan " "dan planet." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Digunakan sebagai lalai." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Penyelesaian ini oleh B. Banjevic, berdasarkan Stephenson & Morrison (1984), " +"telah diterbitkan dalam artikel Ancient eclipses and dating the fall of " +"Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Penyelesaian ini oleh S. Islam, M. Sadiq dan M. S. Qureshi, berdasarkan pada " +"Meeus & Simons (2000), telah diterbitkan dalam artikel Error " +"Minimization of Polynomial Approximation of DeltaT (%1) dan " +"diperbaharui oleh Sana Islam pada 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -544,15 +642,15 @@ "Ini merupakan formula kuadratik untuk pengiraan %1T dengan pemalar yang " "ditakrif oleh pengguna." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Ralat" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "dengan nilai tanpa makna diluar julat ini" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -560,20 +658,21 @@ "dengan ralat min bagi kurang dari satu saat, ralat maksimum 1.9s, dan nilai " "tanpa makna diluar julat ini" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "dengan nilai sifar diluar julat ini" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "dengan ketepatan biasa 1-saat dan nilai sifar diluar julat ini" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Julat sah penggunaan: diantara tahun %1 hingga %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Julat sah penggunaan: diantara tahun %1 hingga %2." @@ -742,52 +841,53 @@ msgid "Found" msgstr "Temui" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "pilih direktori skrin yang dirakam" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Permulaan FOV: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Arah permulaan bagi paparan Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Pengarang" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Hubungi" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Pengarang" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lesen" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Skrip yang digunakan " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Skrip yang digunakan" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -795,16 +895,16 @@ "Katalog bintang baru sudah selesai dimuat turun!/n\n" "Tutup dan buka semula Stellarium untuk paparkannya." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Semua katalog bintang yang tersedia telah dipasang." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Dapatkan katalog %1 dari %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -813,7 +913,7 @@ "Memuat turun %1.../n\n" "(Anda boleh tutup tetingkap ini.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -824,7 +924,7 @@ "Kiraan bintang: %2 juta\n" "Jarak Magnitud: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -833,11 +933,11 @@ "Ralat memuat turun %1:/n\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Mengesahkan Integriti fail..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -847,115 +947,123 @@ "fail telah rosak." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritma" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Tanpa pembetulan" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Efemeris Astronomi (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (bersama Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "Ufuk JPL" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Persamaan suai %1T" @@ -1128,49 +1236,53 @@ msgid "OSX Developer: %1" msgstr "Pembangun OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Tetingkap konsol skrip" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Tetingkap" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "ruang" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Tiada keterangan" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Tiada tahi bintang" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Kadar Normal" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Kadar Persei Piawai" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Kadar ribut meteor" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Kadar Leonid khas" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Kadar yang tertingi (1966 Leonids)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Lokasi Baru" @@ -1275,19 +1387,19 @@ msgid "starchart" msgstr "peta bintang" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Ralat Carian Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Carian Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universiti Strasbourg (Perancis)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Universiti Harvad (AS)" @@ -1303,30 +1415,38 @@ msgid "Alternative shortcut" msgstr "Pintasan Gantian" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Persamaan suai untuk %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Persamaan tipikal bagi persamaan %1T yang kelihatan seperti:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "dimana" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "tahun" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Sistem ini tidak menyokong OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Platform anda tidak menyokong keperluan minimum OpenGL 1.2. Sila tatar " +"pemacu kad grafik anda." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Matahari" @@ -1343,12 +1463,12 @@ msgstr "Bumi" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Bulan" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marikh" @@ -1446,7 +1566,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Zuhal" @@ -1744,193 +1864,222 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Veda India" + +#: src/translations.h:171 msgid "Korean" msgstr "Korea" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norse" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinesia" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongan" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Barat" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Pepohon" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Ribut Taufan" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Lautan" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "mengenal lanskap" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "gerhana bulan separa" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "gerhana bulan penuh" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Penyelamat Skrin" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "gerhana matahari 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Skrip Permulaan" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiak" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Terbit & Terbenam Matahari Tripel Utarid" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Gerhana Dubel melalui Deimos pada 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Gerhana Dubel melalui Deimos pada 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Gerhana dari Gunung Olympus 10 Jan 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Penghijaban Bumi dan Musytari 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 Lintasan dan 2 Gerhana dari Deimos 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Penyelamat Skrin Sistem Suria" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Jelajah Buruj" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Matahari dari planet yang berlainan" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Pandangan terbaik bumi dari jasad lain" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Pertukaran Venus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analema" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Lawatan Peribudaya Langit" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Peristiwa Bumi menerusi Utarid" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Peristiwa Bumi menerusi Zuhrah" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Peristiwa Bumi menerusi Marikh" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Pemanjangan dan Penonjolan Terhebat Bumi dari Marikh" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Pemanjangan Terhebat Bumi dan Marikh dari Musytari" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "lihat lanskap yang tersedia" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Lihat setiap peribudaya langit yang dipasang." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "skrip untuk demonstrasi gerhana bulan separa" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "skrip untuk demonstrasi gerhana bulan penuh" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "melihat objek langit secara random" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1938,11 +2087,11 @@ "skrip untuk demonstrasi gerhana matahari penuh yang berlaku pada 2009 di " "Rangpur, Bangladesh" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "skrip supaya mula dengan automatik pada startup" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1951,7 +2100,7 @@ "skrip ini memaparkan buruj buruj zodiak. Buruj zodiak ialah 12 buruj yang " "dilalui oleh orbit matahari dalam masa setahun" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1960,7 +2109,7 @@ "matahari akan terbit & terbenam pada 3 masa yang berlainan dalam satu hari " "Utarid." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1968,7 +2117,7 @@ "Sebelum Marikh melindungi matahari, Phobos timbul dari belakang dan " "melindunginya dahulu. Ia berlaku diantara Kala dan Kaus pada 26 April, 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1977,13 +2126,13 @@ "melindunginya dahulu. Ia berlaku diantara Lembu Jantan dan Jauza pada 22 " "Julai, 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Phobos mengelilingi Matahari sepertimana dilihat melalui Olympus Mons pada " "Jan 10, 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1994,7 +2143,7 @@ "jarang berlaku. Peristiwa ini berlaku pada 1/23/2048. Dalam kelajuan yang " "sebenar." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2010,40 +2159,40 @@ "Marikh dengan Deimos. Bila Phobos muncul dari Marikh ia masih digerhana dan " "kelihatan kabur di sebalik bayang Marikh, dan akan dicerahkan kemudian nanti." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Penyelamat skrin pelbagai kejadian berlaku dalam Sistem Suria. Terdapat 171 " -"peristiwa didalamnya!" +"Penyelamat skrin pelbagai peristiwa yang berlaku dalam Sistem Suria. 187 " +"peristiwa kesemuanya!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Lawatan ke buruj barat" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Melihat Matahari daripada planet besar Sistem Suria dan Pluto." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "Pandangan terbaik Bumi dari jasad Sistem Suria lain dalam Abad ke 21." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "Lintasan Zuhrah sebagaimana dilihat dari Sydney Australia, 6 Jun 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" "Demonstrasi analemma - laluan Matahari merentasi langit sepanjang tahun." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2051,1468 +2200,1504 @@ "Pancaran supernova yang dicerap oleh Tycho Brahe pada tahun 1572. Pemalam " "Supernovae mesti dibenarkan." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "Pemanjangan dan Penonjolan Terhebat Bumi dari Marikh 2000-3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "Pemanjangan Terhebat Bumi dari Musytari 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Emiriah Arab Bersatu" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua dan Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Netherlands Antilles" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antartika" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa Amerika" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaijan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia dan Herzegowina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgium" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Pulau Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Belarus" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kepulauan Coco" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Republik Demokratik Kongo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Republik Afrika Tengah" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republik Kongo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Switzerland" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Cote d'Ivoire" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Kepulauan Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Cameroon" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia dan Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Cape Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Pulau Christmas" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Cyprus" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Republik Czech" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Jerman" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Denmark" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Republik Dominica" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algeria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Mesir" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Sahara Barat" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Sepanyol" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Ethiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Kepulauan Falkland" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Kepulauan Faroe" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Perancis" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "United Kingdom" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guyana Perancis" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Greenland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Guinea Khatulistiwa" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Yunani" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Kepulauan Georgia Selatan dan Sandwich Selatan" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Kepulauan Heard dan Kepulauan McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Croatia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hungary" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ireland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Wilayah British Indian Ocean" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Iraq" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Iceland" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Itali" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordan" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Jepun" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kyrgyzstan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kemboja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comoros" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts dan Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Republik Demokratik Rakyat Korea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Republik Korea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kepulauan Cayman" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Lubnan" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lithuania" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxembourg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Jamahiriya Arab Libya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maghribi" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Kepulauan Marshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Kepulauan Mariana Utara" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldives" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexico" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaysia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "New Caledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Kepulauan Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Belanda" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norway" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "New Zealand" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinesia Perancis" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua New Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipina" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Poland" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre dan Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Wilayah Palastin" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugis" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Persekutuan Rusia" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Arab Saudi" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Kepulauan Solomon" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Sweden" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapura" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Saint Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard dan Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovakia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Siera Leon" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tome dan Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Republik Arab Syria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Kepulauan Turks dan Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Chad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Wilayah Selatan Perancis" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailand" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tajikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Timor Timur" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turki" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad dan Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraine" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Kepulauan Luar Minor Amerika Syarikat" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Amerika Syarikat" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Negara Bandar Vatican" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent dan Grenadines" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Kepulauan Virgin Britain" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Kepulauan Virgin Amerika Syarikat" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Viet Nam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis dan Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yaman" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Yugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Afrika Selatan" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Tarikh dan Masa" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Tambah 1 hari ikut bintang" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Tambah 1 bulan ikut bintang" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Tambah 1 minggu ikut bintang" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Tambah 1 tahun ikut bintang" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Tambah 1 abad ikut bintang" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Tambah 1 hari solar" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Tambah 1 jam solar" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Tambah 1 minggu solar" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Tambah 1 bulan qamari" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Tambah 1 bulan drakonik" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Tambah 1 bulan anomali" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Tambah 1 bulan min tropika" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Tambah 1 tahun drakonik" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Tambah 1 tahun min tropika" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Tambah 1 abad tropika min" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Lambatkan kadar perlakuan skrip" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Kurangkan kelajuan masa" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Kurangkan kelajuan masa (sedikit)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Lajukan kadar perlakuan skrip" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Cepatkan kelajuan masa" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Tingkatkan kelajuan masa (sedikit)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Jeda pelakuan skrip" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Sambung semula pelakuan skrip" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Tetapkan masa sekarang" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Tetapkan kadar perlakuan skrip normal" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Tetapkan kadar normal masa" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Tetapkan kadar masa kepada kosong" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Henti pelakuan skrip" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Tolak 1 hari ikut bintang" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Tolak 1 bulan tolak bintang" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Tolak 1 minggu ikut bintang" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Tolak 1 tahun ikut bintang" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Tolak 1 abad ikut bintang" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Tolak 1 hari solar" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Tolak 1 jam solar" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Tolah 1 minggu solar" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Tolak 1 bulan qamari" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Tolak 1 bulan drakonik" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Tolak 1 bulan anomali" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Tolak 1 bulan min tropika" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Tolak 1 tahun drakonik" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Tolak 1 tahun min tropika" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Tolak 1 abad tropika min" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Pilihan Paparan" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Kalih pandangan secara mendatar" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Mod Skrin penuh" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Grid azimut" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Titil Kardinal" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Seni Buruj" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Sempadan Buruj" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Label Buruj" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Garis Buruj" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Imej latar belakang nebula" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Imej latar belakang objek samawi" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Grid Ekliptik J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Garis Ekliptik" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Garis khatulistiwa" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Grid Khatulistiwa" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Grid khatulistiwa J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Kabus" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Grid Galaksi" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Satah galaktik" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Tanah" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Garis horizon" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Garis Meridian" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebula" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Objek samawi" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Mod Malam" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Label planet" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Orbit planet" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Jejak planet" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Bintang" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Label bintang" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Kalih pandangan secara menegak" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Pelbagai" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Sembunyi secara automatik butang palang melintang" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Sembunyi secara automatik butang palang menengak" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Pergi ke rumah" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Keluar" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "salin informasi objek" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Simpan cekupan skrin" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Tukar diantara peletakan khatulistiwa dan azimut" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Togol ketampakan GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Pergerakan dan Pilihan" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Tengahkan objek pilihan" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Tetapkan planet rumah kepada planet pilihan" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Jejak objek" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zum ke dalam objek yang dipilih" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zum keluar" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Ukuran sudut" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Tanda kompas" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Papar exoplanet" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Tetingkap konfigurasi eksoplanet" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Ketercerapan" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Tetingkap konfigurasi ketercerapan" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Konfigurasi pemalam okular" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Paparan okular" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Papar rerambut silang" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Menu timbul okular" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Bingkai penderia imej" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Pandangan telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Pilih teleskop berikutnya" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Pilih kanta mata berikutnya" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Pilih teleskop terdahulu" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Pilih kanta mata terdahulu" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Papar pulsar" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Tetingkap konfigurasi pulsar" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Papar kuasar" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Tetingkap konfigurasi Kuasar" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Tetingkap konfigurasi satelit" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Pembayang satelit" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Label satelit" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Tetingkap konfigurasi Supernova bersejarah" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Tetingkap konfigurasi Nova cerah" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Alih teleskop ke kedudukan koordinat yang diberikan" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Papar statistik penerap" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skrip" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Jalankan skrip landskap dari fail" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Papar dan zum Bulan" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Tetingkap Konfigurasi" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Tetingkap tarikh/masa" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Tetingkap Bantuan" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Tetingkap lokasi" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Tetingkap Gelintar" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Tetingkap pintasan" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Tetingkap pilihan pandangan dan langit" @@ -3538,7 +3723,7 @@ msgstr "Segar Semula" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Lokasi" @@ -3554,10 +3739,10 @@ msgid "Return to default" msgstr "Kembali ke lalai" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Padam" @@ -3566,7 +3751,7 @@ msgstr "Tambah dalam senarai" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitud:" @@ -3579,12 +3764,12 @@ "contoh: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitud:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitud:" @@ -3608,363 +3793,408 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Cari Objek" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Cari Objek atau Kedudukan" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Guna kekunci tab untuk pilih item yang ditemui" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gama" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kapa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "pi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Huruf Greek untuk Gelaran Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objek" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Kedudukan" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "Sesetengah objek akan timbul selepas pengaktifan pemalam berkaitan" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "nama dalam bahasa Inggeris" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Gelintar dalam senarai..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Senarai" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Pangkalan data astronomi atas-talian SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Lanjutkan gelintar dengan SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Pelayan:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Pilihan gelintar" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "Guna isian-sendiri hanya dari permulaan perkataan" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Pilihan" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "nama dalam bahasa Inggeris" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Gelintar dalam senarai..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Senarai" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Papar" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Langit" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Penanda" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landskap" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Peribudaya Bintang" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Label dan Penanda" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planet" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Label dan penanda untuk objek samawi (gugusan bintang, bima sakti dan nebula)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "DSO" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planet dan satelit" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Papar planet" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Papar penanda planet" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Papar orbit planet" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulasikan kelajuan cahaya" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Skalakan Bulan" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Ubah lanskap secara automatik bila planet berubah" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Pilih lanskap secara automatik" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Papar atmsofera" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Pencemaran cahaya:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "tekanan, suhu, pemalar kepupusan" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Tetapan Pembiasan/Kepupusan" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Skala Mutlak:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Skala Relatif:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Kecerahan Bima Sakti" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Kerlipan:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Malapkan bintang samar bila objek yang sangat cerah kelihatan" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Penyesuaian mata secara dinamik" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Tahi Bintang" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Kadar zenit sejam" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "ZHR:" +msgstr "ZHR" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Had Magnitud (untuk pemerhati tanpa alat/binokular)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Had Magnitud" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Bintang ke magnitud" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Had magnitud bintang" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Nebula ke magnitud" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "Had magnitud objek samawi (gugusan bintang, bima sakti dan nebula)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Buruj" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Papar garisan" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Papar label" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Papar sempadan" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Papar seni" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Kecerahan seni:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Sfera Cakerawala" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Papar garis khatulistiwa" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Papar garis meridian" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Papar garis ufuk" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Papar garis ekliptik" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Papar garis satah Galaksi" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Unjuran" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Tambah/buang lanskap..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Papar Tanah" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Papar kabus" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Guna kedudukan dan planet yang berkaitan" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Guna lanskap ini sebagai lalai" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Guna tetapan kecerahan untuk lanskap" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Guna budaya langit inisebagai lalai" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Tampak" @@ -4019,7 +4249,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Arah anda melihat bila Stellarium dimulakan" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Maklumat objek yang dipilih" @@ -4035,11 +4265,8 @@ msgid "Display no information" msgstr "Jangan paparkan maklumat" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Tiada" @@ -4182,7 +4409,7 @@ msgstr "saat" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Tarikh dan masa permulaan" @@ -4194,19 +4421,23 @@ msgid "Other:" msgstr "Lain-lain:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Guna tarikh dan masa setempat" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "guna yang semasa" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Mulakan Stellarium menggunakan tarikh dan masa sistem" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Tarikh dan masa sistem" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4214,23 +4445,23 @@ "Tetapkan masa simulasi pada tika seterusnya pada masa hari ini bila " "Stellarium dimulakan" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Tarikh sistem pada:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Pembetulan masa" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Sunting persamaan" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Pilihan Planetarium" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4238,51 +4469,51 @@ "Herotan cermin bersfera digunakan apabila Stellarium diunjurkan kepada " "cermin bersfera untuk sistem planetarium berkos rendah." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Herotan cermin bersfera" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Bukakan semuanya diluar pusat bulatan pada paparan utama" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Port pandang cakera" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Sembunyi buruj lain bila anda klikkannya" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Pilih satu buruj" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Jajar label dengan ufuk" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Label graviti" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Togol latar belakang paparan nebula." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Papar butang latar belakang nebula" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Togol butang kalih imej menegak dan melintang." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Papar butang kalih" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4290,92 +4521,100 @@ "Bila dibenarkan, kekunci \"zum keluar automatik\" juga akan ditetapkan pada " "arah pandangan asal" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Zum keluar secara automatik dikembalikan kepada arah paparan asal" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Papar bayang suria pada planet dan bulan (Bagi fitur yang memerlukan OpenGL " +"versi 2 atau lebih tinggi)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Terap Bayang Suria" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Cekupan skrin" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Direktori Cekupan skrin" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Warna songsang" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Kemaskini katalog bintang" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klik disini untuk memulakan muat turun" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Muat turun fail ini untuk paparkan lebih banyak bintang" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Mula semula muat turun" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Cuba lagi" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Henti muat turun. anda boleh mula semula kemudiannya" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Batal" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Tutup tetingkap ini bila skrip dijalankan" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Jalankan skrip yang dipilih" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Henti skrip yang dijalankan" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Muat pada permulaan" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "konfigur" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Utama" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Maklumat" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigasi" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Alatan" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Pemalam" @@ -4550,12 +4789,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Papar tanda bering kompas sepanjang ufuk" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okular" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4565,164 +4804,164 @@ "dan medan paparan disimulasikan). Ia boleh paparkan bingkai penderia dan " "pandangan Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Sila pilih objek sebelum menukar ke paparan okular" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "Okular &terdahulu" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "Okular &berikutnya" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Pilih o&kular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Togol reramb&ut silang" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Konfigur &Okular" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Togol &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Togol Tel&rad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "CCD &Terdahulu" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "CCD &Berikutnya" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Pilih CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "P&utar CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "T&etap semula putaran" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "JF Ocular: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "aFOV Ocular: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Kanta #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Kanta #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Kanta: tiada" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Pembesaran: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensi: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Penderia #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Penderia #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "K&anta" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "Kanta t&erdahulu" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "Kanta &berikutnya" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "Teleskop &terdahulu" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "Teleskop &berikutnya" @@ -4794,66 +5033,71 @@ msgid "Apparent field of view of the ocular" msgstr "Medan tampan paparan bagi okular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Kegandaan: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Kanta: Tiada" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Kegandaan: T/B" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Kepelbagaian kanta" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Jarak fokus kanta mata" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Putaran: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "pembesaran yang disediakan oleh binokular ini" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Medan sebenar bagi paparan yang disediakan oleh binokular ini" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "Pembesaran disediakan oleh gabungan okular/kanta/teleskop ini" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Medan sebenar pandangan yang disediakan oleh gabungan okular/kanta/teleskop " "ini" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Pemalam Okular" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versi" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Fitur kanta Barlow" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Selayang Pandang" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4865,7 +5109,7 @@ "padam kanta mata dan teleskop, dan juga Penderia CCD. Kali pertama anda " "jalankan aplikasi ini akan populasikan beberapa sampel untuk permulaan anda." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4883,7 +5127,7 @@ "terskala, iaitu sebahagian kawasan skrin dibazirkan. Maka, saya cadangkan " "anda biarkannya dimatikan, kecuali anda memerlukannya." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4893,7 +5137,7 @@ "dijajarkan ke Utara. Malangnya, saya tidak dapat membuatnya. Buat masa ini, " "ia dijajar ke bahagian atas skrin." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4906,118 +5150,126 @@ "membantu and melihat apa yang anda jangka dengan mata kasar melalui pencari " "(serupa dengannya) Telrad." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Jika anda temui sebarang isu, sila beritahu saya. Nikmatilah!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Kekunci Panas" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "Pengikatan kekunci pemalam boleh disunting dalam Tab Am." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[tiada kekunci ditakrif]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Hidup/Matikan tindihan atas okular" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Buka menu navigasi timbul" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Hanya dibenarkan jika objek dipilih" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Skalakan bulatan imej" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "Laksana had magnitud najam untuk bukaan teleskop yang berbeza" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Had magnitud najam" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Pemetaan kekunci" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Togol paparan okular:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Buka menu pandu arah timbul:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Antaramuka" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Panel kawalan atas-skrin" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Guna darjah dan minit untuk FOV CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Am" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Kanta mata" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Tambah" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nama:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Jarak fokus:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Hentian medan:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binokular" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Kanta" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Gandaan:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Pendarab:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5025,74 +5277,75 @@ "Nilai kepelbagaian >1 panjangkan jarak fokus (kanta Barlow). Nilai " "kepelbagaian <1 kurangkan jarak fokus (kanta Shapley)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Penderia" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Resolusi x (piksel):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Resolusi y (piksel):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Lebar cip (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Tinggi cip (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Lebar piksel (mikron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Tinggi piksel (mikron):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskop" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diameter:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Kalih melintang" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Kalih menegak" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Perihal" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelit" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5100,102 +5353,162 @@ "Ramalan kedudukan satelit tiruan didalam orbit Bumi yang berpandukan data " "TLE NORAD" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "Fail satelit.json lama tidak lagi serasi - menggunakan fail lalai" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "visual" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "saintifik" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "komunikasi" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navigasi" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amatur" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "cuaca" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geopegun" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "tidak-berfungsi" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "gps" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Teleskop Angkasa Hubble" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "Stesen Angkasa Antarabangsa" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Katalog #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Pereka Antarabangsa" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "satelit tiruan" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Julat (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Kadar julat (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitud (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Sub-Titik (Lat./Long.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Koordinat EME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "Kelajuan TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Satelit dan pemerhati dalam sinaran matahari." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satelit kelihatan." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Satelit bergerak secara elips." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satelit tidak kelihatan" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Pemalam Satelit Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" "Pemalam Satelit meramal kedudukan satelit buatan manusia dalam orbit Bumi." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Nota untuk pengguna" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "Satelit dan orbitnya hanya dipaparkan bila pemerhati berada di Bumi." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5205,7 +5518,7 @@ "minggu atau mungkin bulan pada masa lepas atau masa akan datang). Jangkakan " "perkara pelik berlaku bila melihat tarikh diluar julat ini." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5215,7 +5528,7 @@ "secara kerap." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5226,7 +5539,7 @@ "kembalikan ke fail %3 lalai. Fail lama akan disandar sebagai %4. Ia boleh " "ditemui dalam direktori data pengguna, dibawah \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5235,11 +5548,11 @@ "lengkap, hilang atau mengandungi pepijat." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Kemaskini data TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5249,7 +5562,7 @@ "Internet, dan secara lalai pemalam akan lakukan ini jika data sedia ada " "berusia lebih dari 72 jam. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5260,7 +5573,7 @@ "pada komputer anda. Fail ini mestilah mempunyai format yang sama denga " "kemaskini Celestrak (rujuk %1 sebagai contoh)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5268,11 +5581,11 @@ "Perhatian: jika nama satelit dalam data kemaskini mempunyai tanda " "kurungan dipenghujungnya, ia akan dibuang sebelum data digunakan." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Menambah satelit baru" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5284,11 +5597,11 @@ "Satelit, dan klik butang '+'. Kemudian pilih satelit yang anda ingin tambah " "dan pilih butang \"tambah\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Nota teknikal" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5296,7 +5609,7 @@ "Kedudukan dikira menggunakan kaedah SGP4 & SDP4, menggunakan data TLE NORAD " "sebagai input. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5305,24 +5618,26 @@ "Spacetrack revisi #3 (termasuklah Laporan Spacetrack #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Rujuk %1 dokumen ini %2 untuk perincian." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Pautan" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5332,31 +5647,34 @@ "\"%1\" dalam tajuk bila mengepos." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Jika anda mempunyai soalan, anda boleh %1dapatkan jawapan disini%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Laporan boleh dibuat %1disini%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5364,120 +5682,140 @@ "Jika anda hendak meminta fitur, anda boleh cipta laporan pepijat, dan " "tetapkan keutamaan ke \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Kemaskini Internet dilumpuhkan" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Mengemaskini sekarang..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Kemaskini Berikutnya: < 1 minit" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Kemaskini Berikutnya: %1 minit" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Kemaskini Berikutnya: %1 jam" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Kemaskini sekarang" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Kemaskini dari fail" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Ralat kemaskini" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "%1/%2 satelit dikemaskini; %3 ditambah; %4 dibuang" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Kemaskini %1/%2 satelit; %3 hilang" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "%1/%2 satelit dikemaskini; %3 ditambah; %4 hilang" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[sumber baru]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Kemaskini sekarang" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Kemaskini dari fail" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[ralat pengiraan orbit]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[semua terbaru ditambah]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[semua tidak dipaparkan]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[semua dipaparkan]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[semua]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Kumpulan baru..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Pilih Fail Kemaskini TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Memuat turun data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5485,175 +5823,198 @@ "Stellarium sedang memuat turun data satelit dari sumber kemaskini. Tunggu " "sebentar..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Pilih fail sumber TLE..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Memproses data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Tiada data dapat dimuat turun. Sila cuba lagi nanti." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Nombor Katalog: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Konfigurasi Satelit" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Kemaskini senarai TLE dari sumber Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Kemaskini" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Kemaskini dari sumber Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Kemaskini data satelit dari sumber Internet" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Terakhir dikemaskini:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "Semasa kemaskini, tambah semua satelit dari sumber terpilih" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Semasa kemaskini, satelit yang tiada lagi tersenarai dalam sumber kemaskini" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Kekerapan kemaskini (jam):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Label" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Saiz fon label (piksel):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Garis orbit" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Bilangan segmen digunakan untuk melukis garisan" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Bilangan segmen:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Jangkamasa segmen tunggal dalam saat" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Panjang segmen (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Bilangan segmen yang digunakan untuk lukis setiap hujung garisan" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Panjang lenyap:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Pulih tetapan lalai" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Simpan tetapan sebagai lalai" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Tetapan" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Dwi-klik satelit untuk mula menjejaknya." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Tambah lagi satelit" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Buang satelit terpilih" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Simpan perubahan" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Nombor katalog:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Papar satelit pilihan" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Dipaparkan" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Papar garis orbit untuk satelit pilihan" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Orbit" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Nombor katalog:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "Jangan kemaskini (atau buang semasa kemaskini) satelit terpilih" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Jangan kemaskini" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Keterangan:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Kumpulan:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Tanda koma pisahkan senarai kumpulan" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Data TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Data orbit unsur dua baris NORAD" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Buang satelit terpilih" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Tambah lagi satelit" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Set TLE:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Simpan perubahan" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Satelit dalam senarai sumber bertanda akan ditambah secara automatik semasa " +"kemaskini berikutnya jika ia tiada dalam koleksi." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5661,15 +6022,15 @@ "Masuk atau sunting URL bagi sumber terpilih. Perubahan disimpan dengan " "menekan Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Tambah sumber baru" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Buang sumber terpilih" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Sumber" @@ -5705,11 +6066,11 @@ msgid "Discard" msgstr "Singkir" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Kawal Teleskop" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5717,12 +6078,12 @@ "Pemalam ini membenarkan Stellarium menghantar perintah \"pusing\" ke " "teleskop melalui lekapan berkomputer (\"Pergi Ke teleskop\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Alih teleskop #%1 ke objek pilihan" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -6127,62 +6488,62 @@ "cara masa dan tarikh dipaparkan pada palang yang berada dibahagian bawah." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Januari" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Februari" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Mac" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "April" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Mei" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Jun" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Julai" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Ogos" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "September" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Oktober" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "November" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Disember" @@ -6342,7 +6703,7 @@ "Tetapan ini mengawal cara masa dan tarikh dipaparkan pada palang bawah." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Format paparan masa" @@ -6360,7 +6721,7 @@ msgstr "Format 24-jam" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Format paparan tarikh" @@ -6376,11 +6737,11 @@ msgid "mm-dd-yyyy" msgstr "bb-hh-tttt" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Antaramuka Teks Pengguna" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6388,144 +6749,144 @@ "Perlaksanaan pemalam bagi Antaramuka Teks Pengguna 0.9.x (TUI), yang " "digunakan didalam sistem planetarium" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Jasad Sistem Matahari" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Tarikh/masa semasa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Tetapkan zon waktu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Kunci hari" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Praset masa/tarikh permulaan" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "sistem" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "praset" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "bbhhtttt" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "hhbbtttt" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "ttttbbhh" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12j" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24j" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Bahasa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Papar bintang" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Warna" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Nama Nebula" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Pembayang Nebula" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Garis satah galaktik" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Kesan" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Zum manual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Pendarab penskalaan magnitud" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Keamatan Bima Sakti:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Kekerapan label Nebula:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Tempoh zum:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Had masa tamat kursor:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Menetapkan lokasi set lanskap" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Jalankan skrip setempat" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Henti menjalankan skrip" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Skrip CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Pentadbiran" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Muat konfigurasi lalai" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Simpan konfigurasi semasa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Matikan" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[tiada nod TUI]" @@ -6562,16 +6923,16 @@ "didalam proses pembinaan." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Tanya MPC %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Hanya satu keputusan akan dikembalikan jika pertanyaan berjaya." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6579,7 +6940,7 @@ "Kedua-dua komet dan asteroid boleh kenalpasti mengikut nombor, nama (dalam " "bahasa Inggeris) atau penentuan sementaranya." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6768,40 +7129,47 @@ msgid "Solar System" msgstr "Sistem Suria" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Supernova Bersejarah" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Pemalam yang memaparkan beberapa supernova bersejarah yang mana kecerahannya " -"lebih dari magnitud visual 10." +"Pemalam ini membolehkan anda lihat beberapa supernova bersejarah yang terang." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Jenis supernova: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Kecerahan maksimum: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Pemalam Supernova Bersejarah" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" +"Pemalam ini membolehkan anda melihat beberapa supernova bersejarah yang " +"terang: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Merupakan pemalam yang memaparkan beberapa supernova bersejarah yang lebih " -"terang dari magnitud visual 10: " +"Semua supernova tersebut adalah lebih cerah %1 pada puncak kecerahan." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Lengkung Cahaya" @@ -6822,7 +7190,7 @@ msgstr "Penghargaan" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6837,14 +7205,14 @@ msgstr "Institut Fizik Teori dan Eksperimen" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "di Rusia" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6854,8 +7222,9 @@ "format katalog, anda boleh %1dapatkan maklumat disini%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Kemaskini berikutnya: %1 hari" @@ -6873,29 +7242,116 @@ msgstr "Konfigurasi Pemalam Supernova Bersejarah" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Kemaskini katalog dari Internet" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Kemaskini dari sumber Internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Kekerapan kemaskini (hari):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[maklumat kemaskini berikutnya]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Nova Terang" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "Pemalam yang menunjukkan beberapa nova terang dalam bima Sakti." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Jenis: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Pemalam Nova Terang" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"Anda boleh cari nova melalui alat gelintar dengan memasukkan julukan nova " +"atau nama umumnya (cth. 'Nova Cygni 1975' atau 'V1500 Cyg')." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"Pemalam ini gunakan model sangat ringkas untuk pengiraan lengkuk cahaya bagi " +"bintang nova." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Modil ini berasaskan masa untuk susut sebanyak %1 magnitud dari nilai " +"maksimum, yang mana %1 adalah 2, 3, 6 dan 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Jika nova tidak mempunyai nilai untuk susutan magnitud maka pemalam ini akan " +"gunakan nilai diperumum baginya." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Jika anda mahu baca maklumat lengkap mengenai pemalam ini, sejarahnya dan " +"format katalog, anda boleh %1dapatkan maklumat disini%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Nova telah dikemaskini" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Konfigurasi Nova Cerah" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Konfigurasi Pemalam Nova Cerah" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quasar" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6914,11 +7370,11 @@ msgid "Z (redshift): %1" msgstr "Z (anjakan merah): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Pemalam Kuasar" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6928,40 +7384,50 @@ "dari magnitud visual 16. Katalog quasar dikompil dari \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Kuasar telah dikemaskinikan" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Konfigurasi Kuasar" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Konfigurasi Pemalam Kuasar" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Mod paparan untuk kuasar" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Tetapan untuk kuasar" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Plot semua kuasar tanpa label" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Benarkan paparan agihan untuk kuasar" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Benarkan paparan semasa permulaan" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Papar butang kuasa pada palang alat" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "pulsar" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7090,11 +7556,11 @@ "Bintang neutron terasing dengan pemancaran Sinar-X terma tetapi tanpa " "pemancara radio yang boleh dikesan" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Pemalam Pulsar" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7105,67 +7571,71 @@ "Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Nota" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "Pengenalpasti pulsar mempunyai awalan 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Penghargaan" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Balai Cerap Radio Astronomi Pushchino" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Balai Cerap Radioastronomi Nancay" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "di Perancis" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsar dikemaskini" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Konfigurasi Pulsar" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Konfigurasi Pemalam Pulsar" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Mod paparan untuk pulsar" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Tetapan untuk pulsar" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Plot semua pulsar tanpa label" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Benarkan paparan distribusi untuk pulsar" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Papar butang pulsar pada palang alat" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Eksoplanet" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7173,71 +7643,71 @@ "Pemalam ini memplot kedudukan bintang bersama exoplanetnya. Data exoplanet " "diperoleh dari 'Extrasolar Planets Encyclopaedia' di exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Kelogaman" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Jisim" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Jejari" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Suhu efektif: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Eksoplanet" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Tempoh" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "hari" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Paksi Semi-Major" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Ketakpusatan" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Kecondongan" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Jarak Sudut" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Tahun ditemui" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Pemalam Eksoplanet" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7247,7 +7717,7 @@ "diambil dari \"%1The Extrasolar Planets Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7256,42 +7726,133 @@ "Jika anda hendak baca maklumat penuh mengenai pemalam, sejarahnya dan format " "katalog, anda boleh %1dapatkan maklumat disini%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" +"Laman Sesawang profesional umum yang berkaitan dengan planet ekstra-solar" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanet: merupakan versi interaktif XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (The Hunt for Exomoons with Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Exolanet dalam sistem binari dan berbilang (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Exoplanet bernama (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" +"Sesetengah Ahli Astronomi dan Kumpulan aktif dalam kajian planet luar suria" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "kemaskini: 16 April 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "Penjelajah Data Exoplanet" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "Pencarian Planet Anglo-Australia" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Program Pencarian Planet Luar Suria Geneva" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Optical Long-Baseline Interferometry News)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "Program Penjelajahan Exoplanet NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Planet pulsar" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "Arkib Exoplanet NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "IAU Comission 53: Planet Luar Suria" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "Galeri Zon Sesuai Didiami" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - Pencarian Bumi Lain" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Buka Katalog Exoplanet" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "Katalog Exoplanet Boleh Didiami" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Eksopanet telah dikemaskini" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Konfigurasi Eksoplanet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Konfigurasi Pemalam Eksoplanet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Kemaskini data eksoplanet dari Internet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Papar mod untuk exoplanet" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Tetapan untuk exoplanet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Plot semua sistem dengan exoplanet tanpa label" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Benarkan paparan distribusi exoplanet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Papar exoplanet semenjak penemuan mereka" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Benarkan penemuan garis masa exoplanet" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Tunjuk butang exoplanet pada palang alat" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Maklumat" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Analisis ketercerapan" @@ -7314,185 +7875,179 @@ "Kosmos. Satu penerangan kuantiti juga dipaparkan oleh skrip ini dinyatakan " "dalam tab 'Perihal' dalam tetingkap konfigurasi." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Jan" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mac" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Apr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Mei" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Jun" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Jul" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Ogs" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Sep" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Okt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Dis" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "j" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Terbenam pada %1 (pada %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Terbit pada %1 (%2 yang lalu)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Terbenam pada %1 (%2 yang lalu)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Terbit pada %1 (dalam %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Keliling kutub." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Tiada terbit." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Berakhir pada %1 (dalam %2) pada %3 darj." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Berakhir pada %1 (%2 yang lalu) pada %3 darj." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Sumber tidak boleh dicerap." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Tiada terbit/terbenam Akronik ataupun Kosmos." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Pemanjangan terhebat: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Pemisahan Matahari yang terbesar: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (pada %1 darj.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Terbit/terbenam akronik" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Tiada terbit/terbenam akronik." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Terbit/terbenam kosmik" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Tiada terbit/terbenam kosmik." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Boleh dicerap sepanjang tahun." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Tidak boleh dicerap pada waktu malam." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Malam diatas ufuk: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "HARI INI:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "TAHUN INI:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Bulan Purnama Terdahulu: %1 %2 pada %3: %4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Bulan Purnama Berikutnya: %1 %2 pada %3: %4. " @@ -7839,9 +8394,15 @@ #~ msgid "Update me via Internet: " #~ msgstr "Kemaskini saya melalui Internet: " +#~ msgid "Nebulas background images" +#~ msgstr "Imej latar belakang nebula" + #~ msgid "Planets labels" #~ msgstr "Label planet" +#~ msgid "Nebulas" +#~ msgstr "Nebula" + #~ msgid ":" #~ msgstr ":" @@ -8018,6 +8579,16 @@ #~ msgid "Hydra" #~ msgstr "Hydra" +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Kemaskini %1/%2 satelit; %3 hilang" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Kemaskini senarai TLE dari sumber Internet" + +#~ msgid "TLE data:" +#~ msgstr "Data TLE:" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -8036,6 +8607,9 @@ #~ msgid "Crosshairs" #~ msgstr "Rerambut Silang" +#~ msgid "Comma separated list of groups" +#~ msgstr "Tanda koma pisahkan senarai kumpulan" + #~ msgid "Magnification provided by this ocular/telescope combination" #~ msgstr "Pembesaran yang disediakan oleh gabungan okular/teleskopik" @@ -8050,6 +8624,9 @@ #~ "Sokongan disediakan melalui laman sesawang Launchpad. Pastikan menulis " #~ "\"Satellites plugin\" dalam subjek bila mengepos." +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Data orbit unsur dua baris NORAD" + #~ msgid "" #~ "This plugin plots the position of various pulsars, with object information " #~ "about each one. Pulsar data is derived from 'Catalog of Pulsars' (Taylor+ " @@ -8168,6 +8745,19 @@ #~ msgid "Display a derived class-specific extra fields" #~ msgstr "Papar medan tambahan spesifik-kelas terpacu" +#~ msgid "Display mode for pulsars" +#~ msgstr "Mod paparan untuk pulsar" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Pemalam yang memaparkan beberapa supernova bersejarah yang mana kecerahannya " +#~ "lebih dari magnitud visual 10." + +#~ msgid "Display mode for quasars" +#~ msgstr "Mod paparan untuk kuasar" + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "Gerhana Kuintupel melalui Deimos 2027" @@ -8211,6 +8801,12 @@ #~ "matahari dan Phobos, seterusnya Phobos terbit dari matahari dan melepas " #~ "bayang-bayang Marikh dan semakin kabur." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Penyelamat skrin pelbagai kejadian berlaku dalam Sistem Suria. Terdapat 171 " +#~ "peristiwa didalamnya!" + #~ msgid "A tour via western constellations." #~ msgstr "Jelajah melalui buruj barat." @@ -8224,6 +8820,13 @@ #~ "Ledakan supernova yang telah diperhati oleh Tycho Brahe pada tahun 1572. " #~ "Demo perlu benarkan pemalam untuk supernovae." +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Merupakan pemalam yang memaparkan beberapa supernova bersejarah yang lebih " +#~ "terang dari magnitud visual 10: " + #~ msgid "0 deg." #~ msgstr "0 darj." diff -Nru stellarium-0.12.1/po/stellarium/mt.po stellarium-0.12.4/po/stellarium/mt.po --- stellarium-0.12.1/po/stellarium/mt.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/mt.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-12-26 14:10+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Maltese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:17+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:51+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Awtur: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Mhux magħruf" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Å»ball" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kuntatt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Awtur" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "LiÄ‹enzja" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Bla deskrizzjoni" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Ix-Xemx" @@ -1209,12 +1320,12 @@ msgstr "Id-Dinja" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Il-Qamar" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marte" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturnu" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 +msgid "Norse" +msgstr "" + +#: src/translations.h:176 msgid "Polynesian" msgstr "Tal-Polinesja" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Tal-Punent" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "ÄŠpar" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "L-Art" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stilel" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Għażliet u settings" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Lokalità" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Pjaneti" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "IkkanÄ‹ella" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informazzjoni" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Lingwa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "UA" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/nan.po stellarium-0.12.4/po/stellarium/nan.po --- stellarium-0.12.1/po/stellarium/nan.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/nan.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-12-26 13:45+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Min Nan Chinese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:57+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "未知" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "ç„¡æè¿°" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/nb.po stellarium-0.12.4/po/stellarium/nb.po --- stellarium-0.12.1/po/stellarium/nb.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/nb.po 2013-09-23 06:20:13.000000000 +0000 @@ -8,31 +8,31 @@ msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-08 12:14+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-06-12 12:23+0000\n" "Last-Translator: FreewareTips \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:17+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:52+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: NORWAY\n" "X-Poedit-Language: Norwegian\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptikken" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horisont" @@ -40,46 +40,46 @@ msgid "Galactic Plane" msgstr "Galaktisk plan" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Utvikler: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Sted: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Type: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitude: %1 (med ekstinksjon: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitude: %1" @@ -89,114 +89,114 @@ msgid "Size: %1" msgstr "Størrelse: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galakse" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Ã…pen stjernehop" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kulehop" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "StjernetÃ¥ke" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetarisk tÃ¥ke" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Mørk tÃ¥ke" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Stjernehop assosiert med en tÃ¥ke" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Ukjent" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Udokumentert type" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolutt magnitude: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Ekliptisk toposentrisk (d.d.): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Aksehelning (d.d., for jorden): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Avstand: %1AE (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Avstand: %1AE" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Tilsynelatende diameter: %1, med ringer: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Tilsynelatende diameter: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Siderisk omløpstid: %1 døgn (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Stjernedøgn: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Middelsoldag: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Fasevinkel: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongasjon: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Opplyst: %1%" @@ -207,7 +207,7 @@ msgstr "Overgangsnavn: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "Stjerne" @@ -222,47 +222,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Tilsynelat. magnitude: %1 (med ekstinksjon)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "Eruptiv variabel stjerne" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "Pulserende variabel stjerne" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "Roterende variabel stjerne" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "Kataklysmisk variabel stjerne" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "Formørkelses-binærsystem" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "Variabel stjerne" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "Dobbelstjerne" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Type: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitude: %1 (med ekstinksjon: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitude: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "MagnitudeomrÃ¥de: %1%2%3 (Fotometrisk system: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektraltype: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Avstand: %1 lysÃ¥r" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallakse: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Epoke for minimumlys: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Epoke for maksimumlys: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Periode: %1 dager" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Neste minimumlys: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Neste maksimumlys: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Formørkelsesvarighet: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Oppgangstid: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Romskip" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "Korrigering er deaktivert. Bruk kun hvis du vet hva du gjør!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -270,14 +345,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -286,14 +361,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -301,7 +376,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -309,14 +384,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -325,14 +400,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -340,25 +415,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -367,14 +442,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -382,42 +457,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -425,7 +500,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -433,7 +508,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -442,7 +517,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -457,11 +532,27 @@ "Solar Eclipses: -1900 to +3000 (2006). Denne formelen er ogsÃ¥ brukt i " "sol-, mÃ¥ne- og planet-efemerideprogrammet SOLEX." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Brukes som standard." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -470,34 +561,35 @@ "Dette er en kvadratisk formel for beregning av %1T med koeffisienter " "definert av brukeren." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Feil" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Gyldig bruksomrÃ¥de: Mellom Ã¥r %1 og %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Gyldig bruksomrÃ¥de: Mellom Ã¥r %1 og %2." @@ -666,52 +758,53 @@ msgid "Found" msgstr "Funnet" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Velg skjermbildemappe" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Synsfelt ved oppstart: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Visningsretning ved oppstart Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Utviklere" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Utvikler" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lisens" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Kjører skript: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Kjører skript: [ingen]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -719,16 +812,16 @@ "Stjernekatalogene er ferdig nedlastet!\n" "Start Stellarium pÃ¥ nytt for Ã¥ vise de." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Alle tilgjengelige stjernekataloger er installert." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Hent katalog %1 av %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -737,7 +830,7 @@ "Laster ned %1...\n" "(Du kan lukke dette vinduet)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -748,7 +841,7 @@ "Antall stjerner: %2 Millioner\n" "MagnitudeomrÃ¥de: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -757,11 +850,11 @@ "Feil ved nedlasting av %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verifiserer filintegritet..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -771,115 +864,123 @@ "Filen er skadet!" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritme for" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Uten korrigering" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (med Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Egendefinert ligning for %1T" @@ -1049,49 +1150,53 @@ msgid "OSX Developer: %1" msgstr "OSX-utvikler: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Skript-konsollvindu" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Vinduer" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Mellomrom" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ingen beskrivelse" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Ingen stjerneskudd" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normal rate" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standard Perseiderate" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Eksepsjonell Leoniderate" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Høyeste rate noensinne (1966 Leonider)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nytt sted" @@ -1196,19 +1301,19 @@ msgid "starchart" msgstr "stjernekart" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad søkefeil" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad-oppslag" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universitetet i Strasbourg (Frankrike)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard University (USA)" @@ -1224,30 +1329,36 @@ msgid "Alternative shortcut" msgstr "Alternativ snarvei" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Egendefinert ligning for %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "En typisk ligning for beregning av %1T ser slik ut:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "hvor" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "Ã¥r" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Datamaskinen din støtter ikke OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Solen" @@ -1264,12 +1375,12 @@ msgstr "Jorden" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "MÃ¥nen" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1367,7 +1478,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1669,194 +1780,223 @@ msgstr "Inuittisk" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Indisk vedisk" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreansk" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota (indianere)" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo (indianere)" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norrøn" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesisk" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Samisk" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongansk" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Vestlig" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guéreins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Trær" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane Ridge" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Hav" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Landskapstur" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Delvis mÃ¥neformørkelse" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Total mÃ¥neformørkelse" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Skjermbeskytter" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Solformørkelse 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Oppstartsskript" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Dyrekretsen" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Trippel soloppgang/-nedgang pÃ¥ Merkur" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Dobbel formørkelse fra Deimos i 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Dobbel formørkelse fra Deimos i 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Formørkelse fra Olympus Mons 10. jan. 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Okkultasjon av jorden og Jupiter 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 transitter og 2 formørkelser fra Deimos 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Solsystem-skjermbeskytter" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Stjernebildetur" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Solen fra forskjellige planeter" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Beste jordutsikt fra andre legemer" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Venuspassasje" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Himmelkultur-tur" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Se deg rundt i hvert installerte landskap." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Se pÃ¥ hver installerte himmelkultur." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skript til Ã¥ demonstrere en delvis mÃ¥neformørkelse." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skript til Ã¥ demonstrere en total mÃ¥neformørkelse." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" "En sakte, uendelig rundtur pÃ¥ himmelen for Ã¥ se pÃ¥ tilfeldige objekter." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1864,11 +2004,11 @@ "Skript for Ã¥ demonstrere en total solformørkelse som skjedde i 2009 (sted = " "Rangpur, Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skript som kjøres automatisk ved oppstart" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1878,7 +2018,7 @@ "som ligger langs linjen som solen følger over himmelhvelvingen i løpet av et " "Ã¥r." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1886,7 +2026,7 @@ "PÃ¥ grunn av særegenheter i Merkurs bane og rotasjon vil solen pÃ¥ visse " "steder stige opp og gÃ¥ ned 3 ganger pÃ¥ en Merkurdag." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1894,7 +2034,7 @@ "Like før Mars formørker solen, smetter Phobos ut bakfra og formørker den " "først. Finner sted mellom Skorpionen og Skytten 26. april 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1902,11 +2042,11 @@ "Like før Mars formørker solen, smetter Phobos ut bakfra og formørker den " "først. Finner sted mellom Tyren og Tvillingene 23. juli 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "Phobos formørker solen, sett fra Olympus Mons 10. januar 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1916,7 +2056,7 @@ "Jupiter. Men okkultasjoner av begge pÃ¥ samme dag er svært sjeldne. Her er en " "som finner sted 23/1/2048. I virkelig hastighet." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1932,39 +2072,38 @@ "den fremdeles formørket og nedtonet i Mars sin skygge, bare for Ã¥ lyse opp " "senere." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Skjermbeskytter med diverse hendelser i solsystemet. 171 begivenheter i alt!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "En tur gjennom vestlige stjernebilder." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Se pÃ¥ solen fra solsystemets store planeter og Pluto." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "De beste utsiktene over jorden fra andre himmellegemer i solsystemet i det " "21. Ã¥rhundre." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "Venuspassasjen som sett fra Sydney i Australia den 6. juni 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" "En demonstrasjon av analemmaet - solens bane over himmelen i løpet av Ã¥ret." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -1972,1468 +2111,1504 @@ "Glimt av supernovaen observert av Tycho Brahe i 1572. Supernova-tillegget mÃ¥ " "være aktivert." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "De forente arabiske emirater" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua og Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "De nederlandske Antillene" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktika" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikansk Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Østerrike" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Aserbajdsjan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia-Hercegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgia" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvetøya" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Hviterussland" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kokosøyene" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Den demokratiske republikken Kongo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Den sentralafrikanske republikk" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republikken Kongo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Sveits" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Elfenbenskysten" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cookøyene" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Kina" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia og Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kapp Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Christmasøya" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Kypros" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Tsjekkia" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Tyskland" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Danmark" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Den dominikanske republikk" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algerie" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estland" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egypt" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Vest-Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spania" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandsøyene" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronesia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Færøyene" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Frankrike" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Storbritannia" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Fransk Guyana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grønland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Ekvatorial-Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Hellas" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Sør-Georgia og Sør-Sandwichøyene" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard- og McDonaldøyene" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Kroatia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Ungarn" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Det britiske territoriet i Indiahavet" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Island" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordan" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgisistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodsja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komorene" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts og Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Nord-Korea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Sør-Korea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Caymanøyene" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kasakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litauen" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxembourg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marokko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshalløyene" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Burma" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Nord-Marianene" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldivene" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexico" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaysia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mosambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Ny-Caledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolkøya" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Nederland" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norge" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "New Zealand" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Fransk Polynesia" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Ny-Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filippinene" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polen" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint-Pierre og Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairnøyene" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "De palestinske territoriene" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Russland" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudi-Arabia" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Salomonøyene" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychellene" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Sverige" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "St. Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard og Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovakia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "São Tomé og Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks- og Caicosøyene" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Tsjad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "De franske sørterritorier" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailand" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadsjikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Øst-Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Tyrkia" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad og Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "USAs ytre småøyer" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "USA" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Usbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikanstaten" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent og Grenadinene" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "De britiske Jomfruøyene" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "De amerikanske Jomfruøyene" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis- og Futunaøyene" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Sør-Afrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Dato og klokkeslett" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Legg til 1 stjernedøgn" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Legg til 1 siderisk mÃ¥ned" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Legg til 1 stjerneuke" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Legg til 1 siderisk Ã¥r" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Legg til 1 siderisk Ã¥rhundre" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Legg til 1 soldøgn" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Legg til 1 soltime" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Legg til 1 soluke" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Legg til 1 synodisk mÃ¥ned" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Legg til 1 drakonisk mÃ¥ned" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Legg til 1 anomalistisk mÃ¥ned" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Legg til 1 tropisk mÃ¥ned" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Legg til 1 drakonisk Ã¥r" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Legg til 1 tropisk Ã¥r" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Legg til 1 tropisk Ã¥rhundre" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Reduser kjørehastigheten for skript" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Reduser tidshastighet" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Reduser tidshastigheten (litt)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Øk kjørehastigheten for skript" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Øk tidshastighet" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Øk tidshastigheten (litt)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Stopp skriptkjøring midlertidig" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Gjenoppta skriptkjøring" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Sett tid til nÃ¥" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Velg vanlig kjørehastighet for skript" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Normal tidshastighet" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Sett tidshastighet til null" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Stopp skriptkjøring" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Trekk fra 1 stjernedøgn" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Trekk fra 1 siderisk mÃ¥ned" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Trekk fra 1 stjerneuke" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Trekk fra 1 siderisk Ã¥r" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Trekk fra 1 siderisk Ã¥rhundre" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Trekk fra 1 soldøgn" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Trekk fra 1 soltime" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Trekk fra 1 soluke" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Trekk fra 1 synodisk mÃ¥ned" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Trekk fra 1 drakonisk mÃ¥ned" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Trekk fra 1 anomalistisk mÃ¥ned" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Trekk fra 1 tropisk mÃ¥ned" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Trekk fra 1 drakonisk Ã¥r" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Trekk fra 1 tropisk Ã¥r" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Trekk fra 1 tropisk Ã¥rhundre" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Visningsalternativer" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Speilvend horisontalt" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Fullskjermmodus" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfære" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Asimutnett" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Himmelretninger" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Stjernebildekunst" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Stjernebildegrenser" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Stjernebildenavn" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Stjernebildelinjer" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Bakgrunnsbilder for stjernetÃ¥ker" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptisk J2000-nett" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptikken" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekvatorlinje" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatorialt nett" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatorialt J2000-nett" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Dis" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktisk nett" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galaktisk plan" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Landskap" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horisontlinje" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridianlinje" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "StjernetÃ¥ker" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Nattmodus" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Planetnavn" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planetbaner" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planetspor" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stjerner" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "StjernepÃ¥skrifter" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Speilvend vertikalt" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Diverse" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Skjul horisontale knappelinje automatisk" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Skjul vertikale knappelinje automatisk" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "GÃ¥ tilbake til opprinnelig sted" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Avslutt" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Kopier valgte objektinformasjon til utklippstavle" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Lagre skjermbilde" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Skift mellom ekvatorial- og asimutmontering" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Grafisk brukerflate av/pÃ¥" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Bevegelse og valg" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Sentrer pÃ¥ valgt objekt" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Bruk valgte planet som hjemmeplanet" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Følg objekt" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zoom inn pÃ¥ valgte objekt" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zoom ut" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "VinkelmÃ¥l" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Kompassmarkeringer" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Vis eksoplaneter" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Innstillingsvindu for eksoplaneter" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observerbarhet" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Innstillingsvindu for observerbarhet" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Innstilling av programtillegg for okularer" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okularvisning" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Vis trÃ¥dkors" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Oppsprettsmeny for okularer" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Bildesensorramme" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad-sikte" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Vis pulsarer" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Innstillingsvindu for pulsarer" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Vis kvasarer" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Innstillingsvindu for kvasarer" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Innstillingsvindu for satellitter" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Satellitt-hint" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satellitt-påskrifter" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Innstillingsvindu for historiske supernovaer" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Beveg et teleskop til et gitt sett av koordinater" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Vis opptegningsstatistikk" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skript" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Kjør landskapskript fra fil" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Vis og zoom månen" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Innstillinger" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Dato/Klokkeslett" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Hjelp" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Stedsvalg" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Søk" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Snarveivindu" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Himmel- og visningsalternativer" @@ -3459,7 +3634,7 @@ msgstr "Gjenoppfrisk" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Sted" @@ -3475,10 +3650,10 @@ msgid "Return to default" msgstr "Returner til standard" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Slett" @@ -3487,7 +3662,7 @@ msgstr "Legg til på liste" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Breddegrad:" @@ -3500,12 +3675,12 @@ "12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Lengdegrad:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Høyde:" @@ -3529,365 +3704,413 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Finn objekt" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Finn objekt eller posisjon" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "my" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ny" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ypsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "khi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Greske bokstaver for Bayer-betegnelser" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekt" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posisjon" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "navn på engelsk" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Søk i liste..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Lister" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Den nettbaserte astronomidatabasen SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Utvid søket med SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Alternativer" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "navn på engelsk" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Søk i liste..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Lister" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Visning" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Himmel" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Markeringer" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landskap" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Stjernemyter" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Påskrifter og markører" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planeter" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Påskrifter og markeringer for deep-sky-objekter (stjernehoper, galakser og " +"stjernetåker)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planeter og satellitter" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Vis planeter" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Vis planetmarkører" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Vis planetbaner" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simuler lyshastighet" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Forstørr månen" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Vis atmosfære" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Lysforurensning:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "trykk, temperatur, ekstinksjonskoeffisient" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Still inn refraksjon/ekstinksjon" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolutt skala:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relativ skala:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Lysstyrke på Melkeveien:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Blinke:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Demp svake stjerner når et veldig lyst objekt er synlig" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamisk øyetilpasning" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Meteorer" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Timerate i senit" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "ZHR:" +msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" "Høyeste magnitudeverdier (for observatører med kikkert eller uten " "hjelpemiddel)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Grensemagnituder" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Stjerner til magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Begrens magnituden til stjerner" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Stjernetåker til magnitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Begrens magnituden til deep-sky-objekter (stjernehoper, galakser og " +"stjernetåker)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Stjernebilder" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Vis linjer" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Vis navn" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Vis grenser" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Vis kunst" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Lysstyrke på kunst:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Himmelhvelving" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Vis ekvatorlinje" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Vis meridianlinje" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Vis horisontlinje" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Vis ekliptikken" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Vis linje for det galaktiske plan" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projeksjon" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Legg til/fjern landskaper..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Vis landskap" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Vis dis" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Bruk tilhørende planet og posisjon" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Bruk dette landskapet som standard" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Bruk denne himmelkulturen som standard" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Synlig" @@ -3942,7 +4165,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Retningen du ser når Stellarium starter" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Velg objektinformasjon" @@ -3958,11 +4181,8 @@ msgid "Display no information" msgstr "Ikke vis informasjon" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ingen" @@ -4104,7 +4324,7 @@ msgstr "sekunder" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Dato og klokkeslett ved oppstart" @@ -4116,19 +4336,23 @@ msgid "Other:" msgstr "Annet:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "Bruk gjeldende" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Start Stellarium med systemets dato og klokkeslett" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Systemets tid og dato" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4136,23 +4360,23 @@ "Setter simuleringstiden til neste forekomst av dette tidspunktet på dagen " "når Stellarium starter." -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Systemdato kl.:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Tidskorrigering" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Rediger ligning" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetarium-alternativer" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4160,51 +4384,51 @@ "Sfærisk speilforvrengning brukes når man projiserer Stellarium på et sfærisk " "speil for enkle planetariumsystemer." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Sfærisk speilforvrengning" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Masker bort alt utenfor en sentral sirkel i hovedvisningen" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Linseformet visningsfelt" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Skjul andre stjernebilder når du velger ett" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Velg ett stjernebilde" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Juster påskrifter etter horisonten" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Gravitasjonspåskrifter" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Slå av/på visning av bakgrunnsbilder for stjernetåker." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Vis knapp for stjernetåkebakgrunn" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Vis eller skjul vertikale og horisontale bildespeilvendingsknapper." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Vis speilvendingsknapper" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4212,92 +4436,100 @@ "Når aktivert, vil tasten \"automatisk utzooming\" også stille inn den " "opprinnelige visningsretningen." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatisk utzooming returnerer til opprinnelig visningsretning" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Vis solskygger på planeter og måner (For denne funksjonen trengs OpenGL " +"versjon 2 eller høyere)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Gjengi solskygger" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Skjermbilder" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Skjermbildemappe" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Inverter farger" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Oppdateringer av stjernekataloger" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klikk her for å starte nedlasting" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Last ned denne filen for å vise enda flere stjerner" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Start nedlastingen på nytt" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Prøv på nytt" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Stopp nedlastingen. Du kan alltids starte den på nytt senere" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Avbryt" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Lukk vindu når skript kjører" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Kjør det valgte skriptet" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stopp et kjørende skript" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Last ved oppstart" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "Still inn" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Generelt" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informasjon" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigering" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Verktøy" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Programtillegg" @@ -4472,12 +4704,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Viser kompassmarkeringer langs horisonten" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okularer" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4486,164 +4718,164 @@ "Viser himmelen som gjennom et teleskop-okular. (Bare forstørrelse og " "synsfelt er simulert). Det kan også vise en sensorramme og et Telrad-sikte." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Velg et objekt før du skifter til okularvisning." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Forrige okular" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Neste okular" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Velg &okular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Slå på/av &trådkors" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Still inn &okularer" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Slå på/av &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Slå på/av &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Forrige CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Neste CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Velg CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Roter CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Tilbakestill rotasjon" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Okular - br.vidde: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Okular - tils.lat. synsf.: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Linse #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Linse #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Linse: Ingen" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Forstørrelse: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Synsfelt: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensjoner: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Linse" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&Forrige linse" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&Neste linse" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Forrige teleskop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Neste teleskop" @@ -4715,64 +4947,69 @@ msgid "Apparent field of view of the ocular" msgstr "Okularets tilsynelatende synsfelt" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Multiplikator: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Linse: Ingen" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Multiplikator: Ingen disp." -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Multiplikator til linse" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Okularets brennvidde" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotasjon: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Forstørrelse gitt av denne kikkerten" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Faktisk synsfelt gitt av denne kikkerten" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "Forstørrelse gitt av denne okular/linse/teleskop-kombinasjonen" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "Faktisk synsfelt gitt av denne okular/linse/teleskop-kombinasjonen" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Programtillegg for okularer" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versjon" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Barlowlinsefunksjon" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Oversikt" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4784,7 +5021,7 @@ "okularer og teleskoper samt CCD-sensorer. Ved første gangs kjøring vil det " "fylles ut noen eksempler for å komme igang." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4802,7 +5039,7 @@ "Det anbefales derfor at alternativet er deaktivert så sant du ikke har behov " "for det." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4811,7 +5048,7 @@ "Du kan slå av/på et trådkors i visningen. Ideelt skulle dette vært justert " "mot nord. Nå er det bare justert mot toppen av skjermen." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4824,118 +5061,126 @@ "og 4,0%1, for å hjelpe deg med å se det du ville forventet å se med det " "blotte øyet gjennom Telrad-søkeren (eller lignende)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Hvis du finner noen problemer, vennligst gi beskjed. God fornøyelse!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Hurtigtaster" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "Programtilleggets tastesnarveier kan redigeres i Generelt-fanen." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[ingen tast definert]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Slår på/av okularvisningen." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Åpner oppsprettsmenyen for navigering." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Aktiver bare hvis et objekt er valgt" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Skaler bildesirkel" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Tastetilordninger" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Slå på/av okularvisning:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Åpne oppsprettsmeny for navigering:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Grensesnitt" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Skjermbasert kontrollpanel" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Bruk grader og minutter for CCD-synsfelt" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Generelt" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okularer" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Legg til" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Navn:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "Tilsynelat. synsfelt:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Brennvidde:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Feltstopp:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Kikkert" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Linser" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "Multiplikator:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -4943,74 +5188,75 @@ "Multiplikator >1 utvider brennvidden (Barlowlinse). Multiplikator <1 " "reduserer brennvidden (Shapleylinse)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensorer" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Oppløsning x (piksler):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Oppløsning y (piksler):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Brikkebredde (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Brikkehøyde (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Pikselbredde (mikrometer):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Pikselhøyde (mikrometer):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskoper" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diameter:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Horisontal speilvending" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Vertikal speilvending" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Info" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satellitter" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5018,88 +5264,148 @@ "Forutsigelse av posisjoner til kunstige satellitter i jordbane basert på " "NORAD TLE-data" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Den gamle satellites.json-filen er ikke lenger kompatibel - bruker " "standardfil" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "visuell" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "vitenskapelig" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "kommunikasjon" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navigering" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amatørradio" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "vær" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geostasjonær" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "ikke-operativ" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "gps" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Hubble-teleskopet" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "Den internasjonale romstasjonen" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Katalognr." -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Internasjonal betegnelse" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "kunstig satellitt" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Avstand (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Avstandsrate (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Høyde (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Underpunkt (Bredde-/Lengdegrad): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME koordinater (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME hastighet (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Satellitten og observatøren er i sollys." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satellitten er synlig." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Satellitten er overskygget." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satellitten er ikke synlig." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Satellittprogramtillegg for Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5107,16 +5413,16 @@ "Satellittprogramtillegget forutsier posisjonene til kunstige satellitter i " "bane rundt jorden." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Merknader til brukere" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "Satellitter og deres baner vises kun når observatøren er på jorden." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5127,7 +5433,7 @@ "fremtiden). Forvent store avvik når man ser på datoer utenfor dette " "tidsområdet." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5136,7 +5442,7 @@ "dager). For å få nyttige data ut, må du oppdatere TLE-dataene regelmessig." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5147,7 +5453,7 @@ "tilbake til standardfilen %3. Den gamle filen vil bli sikkerhetskopiert som " "%4. Denne filen finnes i brukerdata-mappen, under \"modules/Satellittes/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5156,11 +5462,11 @@ "ufullstendige, mangler eller kan inneholde feil." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Oppdateringer for TLE-data" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5170,7 +5476,7 @@ "internettkilder, og programtillegget vil som standard gjøre dette hvis de " "eksisterende dataene er mer enn 72 timer gamle. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5181,7 +5487,7 @@ "datamaskinen din. Denne filen må være i samme format som Celestrak-" "oppdateringene (se %1 for et eksempel)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5189,11 +5495,11 @@ "Merk: hvis navnet på en satellitt i oppdatering av data har noe i " "hakeparenteser på slutten, vil det bli fjernet før dataene blir brukt." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Legge til nye satellitter" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5205,11 +5511,11 @@ "2. Gå til satellitter-fanen, og klikk knappen '+'. Velg satellitten(e) du " "vil legge til og klikk knappen \"Legg til\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Tekniske merknader" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5217,7 +5523,7 @@ "Posisjoner er beregnet ved bruk av metodene SGP4 & SDP4, ved å bruke NORAD " "TLE-data som inndata. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5226,24 +5532,26 @@ "revidert Spacetrack Report #3 (inkludert Spacetrack Report #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Se %1dette dokumentet%2 for detaljer." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Lenker" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5253,31 +5561,34 @@ "du poster." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Hvis du har noen spørsmål, kan du %1få svar her%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Feilrapporteringer kan gjøres %1her%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5285,294 +5596,338 @@ "Hvis du ønsker å sende en forespørsel om en ny funksjon, da kan du opprette " "en feilrapport, og angi alvorlighetsgraden til \"ønskeliste\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internett-oppdatering deaktivert" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Oppdaterer..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Neste oppdatering: < 1 minutt" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Neste oppdatering: %1 minutter" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Neste oppdatering: %1 timer" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Oppdater nå" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Oppdater fra filer" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Feil ved oppdatering" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Oppdatert %1/%2 satellitt(er); %3 lagt til; %4 fjernet" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Oppdaterte %1/%2 satellitt(er); %3 mangler" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Oppdatert %1/%2 satellitt(er); %3 lagt til; %4 mangler" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[ny kilde]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Oppdater nå" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Oppdater fra filer" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[feil ved baneberegning]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[alle nylig tillagte]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[alle ikke vist]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[alle vist]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[alle]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Ny gruppe..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Velg TLE-oppdateringsfil" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Laster ned data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "Stellarium laster ned satellittdata fra oppdateringskildene. Vent..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Velg TLE-kildefil(er)..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Bearbeider data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Ingen data kan lastes ned. Prøv igjen senere." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Katalognummer: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Satellittinnstillinger" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Oppdater TLE-lister fra internettkilder" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Oppdateringer" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Oppdater fra internettkilder" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Oppdater satellittdata fra internettkilder" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Siste oppdatering:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "Ved oppdatering, legg til alle nye satellitter fra valgte kilde(r)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Ved oppdatering, fjern satellittene som ikke lenger er listet i " +"oppdateringskildene" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Oppdateringsfrekvens (timer):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Påskrifter" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Skriftstørrelse på påskrift (piksler):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Banelinjer" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Antall segmenter brukt for å tegne linjen" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Antall segmenter:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Varigheten av et enkelt segment i sekunder" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Segmentlengde (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Antall segmenter brukt for å tegne hver ende av linjen" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Uttoningslengde:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Gjenopprett standardinnstillinger" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Lagre innstillinger som standard" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Innstillinger" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Dobbeltklikk en satellitt for å starte å spore den." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Legg til flere satellitter" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Fjern de valgte satellittene" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Lagre endringer" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Katalognummer:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Vis valgte satellitt(er)" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Vist" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Vis banelinje(r) for valgte satellitt(er)" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Bane" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Katalognummer:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "Ikke oppdater (eller fjern ved oppdatering) valgte satellitt(er)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Ikke oppdater" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Beskrivelse:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Grupper:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Kommaseparert liste av grupper" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE-data:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORAD - tolinjers elementbanedata" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Fjern de valgte satellittene" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Legg til flere satellitter" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "TLE-parametre:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Lagre endringer" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Satellitter i de merkede kildelistene blir automatisk lagt til ved den neste " +"oppdateringen hvis de ikke allerede er i samlingen." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5580,15 +5935,15 @@ "Angi eller redigere nettadressen til den valgte kilden. Endringene lagres " "ved å trykke Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Legg til ny kilde" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Fjern valgte kilde" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Kilder" @@ -5624,11 +5979,11 @@ msgid "Discard" msgstr "Forkast" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskopkontroll" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5636,12 +5991,12 @@ "Dette programtillegget gjør det mulig for Stellarium å sende styrekommandoer " "til et teleskop som er tilkoblet en datamaskin (et såkalt \"GoTo\"-teleskop)." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Beveg teleskop #%1 til valgte objekt" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Beveg teleskop #%1 til det punktet som nå er i midten av skjermen" @@ -6043,62 +6398,62 @@ "datoen vises på i bunnlinjen." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Januar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Februar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Mars" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "April" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Mai" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Juni" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Juli" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "August" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "September" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Oktober" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "November" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Desember" @@ -6256,7 +6611,7 @@ "Disse innstillingene styrer hvordan klokkeslett og dato vises i bunnlinjen." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Tidsvisningsformat" @@ -6274,7 +6629,7 @@ msgstr "24-timers format" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Datovisningsformat" @@ -6290,11 +6645,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-åååå" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Tekst-brukergrensesnitt" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6302,144 +6657,144 @@ "Programtillegg-implementering av 0.9.x-seriens brukergrensesnitt i " "tekstmodus (TUI), brukt i planetarium-systemer" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Solsystemlegeme" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Gjeldende dato/klokkeslett" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Still inn tidssone" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Dagtaster" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Forhåndsinnstilt dato/klokkeslett for oppstart" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "system" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "forhåndsinnstilt" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddåååå" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmåååå" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "ååååmmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12t" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24t" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Språk" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Vis stjerner" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Farger" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Stjernetåkenavn" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Stjernetåke-hint" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Linje for det galaktiske plan" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Effekter" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Manuell zoom" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Magnitude - skaleringsmultiplikator" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Melkevei-intensitet:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Påskriftfrekvens for tåker:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Zoom-varighet:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Tidsavbrudd for markør:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Still inn plassering for landskapssett" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Kjør lokalt skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Stopp kjørende skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD-skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administrering" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Last standardinnstillinger" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Lagre gjeldende innstillinger" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Slå av" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[ingen TUI node]" @@ -6475,16 +6830,16 @@ "i dets nettbaserte database. Fortsatt under utvikling." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Søk i MPC %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Bare ett resultat vil bli returnert hvis søket er vellykket." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6492,7 +6847,7 @@ "Både kometer og asteroider kan identifiseres med deres nummer, navn (på " "engelsk) eller provisorisk betegnelse." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6681,40 +7036,43 @@ msgid "Solar System" msgstr "Solsystem" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Historiske supernovaer" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Et programtillegg som viser noen historiske supernovaer lysere enn visuell " -"magnitude 10." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "Supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Supernovatype: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Programtillegg for historiske supernovaer" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Et programtillegg som viser noen historiske supernovaer lysere enn visuell " -"magnitude 10: " #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Lyskurver" @@ -6736,7 +7094,7 @@ msgstr "Anerkjennelse" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6751,14 +7109,14 @@ msgstr "Institutt for teoretisk og eksperimentell fysikk" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "i Russland" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6768,8 +7126,9 @@ "historikk og katalogformat, kan du %1få informasjon her%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Neste oppdatering: %1 dager" @@ -6787,29 +7146,106 @@ msgstr "Innstilling av programtillegg for historiske supernovaer" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Oppdater katalog fra internett" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Oppdater fra internettkilder" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Oppdateringsfrekvens (dager):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[informasjon om neste oppdatering]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kvasarer" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6828,11 +7264,11 @@ msgid "Z (redshift): %1" msgstr "Z (rødforskyvning): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Programtillegg for kvasarer" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6842,40 +7278,50 @@ "visuell magnitude 16. En kvasarkatalog utarbeidet fra \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Kvasarer er oppdatert" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Innstilling for kvasarer" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Innstilling av programtillegg for kvasarer" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Visningsmodus for kvasarer" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Innstillinger for kvasarer" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Plott alle kvasarer uten påskrifter" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Aktiver visning av kvasar-distribusjon" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Aktiver visning ved oppstart" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Vis kvasar-knapp på verktøylinje" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsarer" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7001,11 +7447,11 @@ "isolert nøytronstjerne med pulset termisk røntgenstråling, men ingen " "registrerbar radioemisjon" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Programtillegg for pulsarer" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7016,67 +7462,71 @@ "Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Merknad" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "Pulsaridentifikatorer har prefikset 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Anerkjennelse" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino Radioastronomiobservatorie" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Nancay Radioastronomiobservatorie" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "i Frankrike" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsarer er oppdaterte" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Pulsarinnstilling" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Innstilling av programtillegg for pulsarer" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Visningsmodus for pulsarer" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Innstillinger for pulsarer" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Plott alle pulsarer uten påskrifter" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Aktiver visning av pulsar-distribusjon" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Vis pulsar-knapp på verktøylinje" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Eksoplaneter" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7085,71 +7535,71 @@ "Eksoplanetdata er hentet fra 'Extrasolar Planets Encyclopaedia' på " "exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metallisitet" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Masse" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Radius" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Effektiv temperatur: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Eksoplanet" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Periode" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dager" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Store halvakse" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AE" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Eksentrisitet" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inklinasjon" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Vinkelavstand" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Oppdagelsesår" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Programtillegg for eksoplaneter" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7159,7 +7609,7 @@ "Eksoplanetdata er hentet fra \"%1The Extrasolar Planets Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7168,42 +7618,131 @@ "Hvis du vil lese fullstendig informasjon om dette programtillegget, dets " "historikk og katalogformat, kan du %1få informasjon her%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Eksoplaneter er oppdaterte" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Innstilling for eksoplaneter" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Innstilling av programtillegg for eksoplaneter" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Oppdater eksoplanetdata fra internett" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Visningsmodus for eksoplaneter" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Innstillinger for eksoplaneter" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Plott alle systemer med eksoplaneter uten påskrifter" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Aktiver distribusjonsvisning for eksoplaneter" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Vis eksoplaneter siden deres oppdagelse" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Aktiver tidslinje for eksoplaneters oppdagelse" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Vis eksoplaneter-knapp på verktøylinje" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Observerbarhetsanalyse" @@ -7225,185 +7764,179 @@ "dagene for akronisk og kosmisk oppgang/nedgang.

    En forklaring av " "parametrene er gitt i fanen 'Info' i innstillingsvinduet." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Jan" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Apr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Mai" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Jun" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Jul" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Aug" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Sep" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Okt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Des" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "t" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Går ned kl. %1 (om %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Steg opp kl. %1 (%2 siden)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Gått ned kl. %1 (%2 siden)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Stiger opp kl. %1 (om %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Sirkumpolar." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Ingen oppgang." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Kulminerer kl. %1 (om %2) ved %3 grd." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Kulminerte kl. %1 (%2 siden) ved %3 grd." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Objekt er ikke observerbart." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Ingen akronisk eller kosmisk oppgang/nedgang." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Største elongasjon: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Største separasjon til solen: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (ved %1 grd.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Akronisk oppgang/nedgang" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Ingen akronisk oppgang/nedgang." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Kosmisk oppgang/nedgang" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Ingen kosmisk oppgang/nedgang." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Observerbar gjennom hele året." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Ikke observerbar på mørke natten." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Netter over horisonten: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "I DAG:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "DETTE ÅRET:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Forrige fullmåne: %1 %2 kl. %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Neste fullmåne: %1 %2 kl. %3:%4. " @@ -7767,12 +8300,18 @@ #~ msgid "144000" #~ msgstr "144000" +#~ msgid "Nebulas" +#~ msgstr "Stjernetåker" + #~ msgid "10000" #~ msgstr "10000" #~ msgid "Light pollution: " #~ msgstr "Lysforurensing: " +#~ msgid "Nebulas background images" +#~ msgstr "Bakgrunnsbilder for stjernetåker" + #~ msgid ":" #~ msgstr ":" @@ -7925,6 +8464,13 @@ #~ msgid "Zoom Duration: " #~ msgstr "Trinn for skalering " +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Oppdaterte %1/%2 satellitt(er); %3 mangler" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Kommaseparert liste av grupper" + #~ msgid "" #~ "Support is provided via the Launchpad website. Be sure to put \"Satellites " #~ "plugin\" in the subject when posting." @@ -7932,6 +8478,15 @@ #~ "Støtte gis via Launchpad-nettstedet. Pass på å sette \"Satellites plugin\" i " #~ "emnefeltet når du poster." +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Oppdater TLE-lister fra internettkilder" + +#~ msgid "TLE data:" +#~ msgstr "TLE-data:" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORAD - tolinjers elementbanedata" + #~ msgid "Form" #~ msgstr "Skjema" @@ -8065,6 +8620,19 @@ #~ msgid "Additional info (Extra 3)" #~ msgstr "Tilleggsinformasjon 3" +#~ msgid "Display mode for pulsars" +#~ msgstr "Visningsmodus for pulsarer" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Et programtillegg som viser noen historiske supernovaer lysere enn visuell " +#~ "magnitude 10." + +#~ msgid "Display mode for quasars" +#~ msgstr "Visningsmodus for kvasarer" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -8080,9 +8648,21 @@ #~ "(5. juli), SN 1937C (21. august), SN 1972E (8. mai), SN 1987A (24. februar) " #~ "og SN 2011FE (13. september)." +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Et programtillegg som viser noen historiske supernovaer lysere enn visuell " +#~ "magnitude 10: " + #~ msgid "A tour via western constellations." #~ msgstr "En tur gjennom vestlige stjernebilder." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Skjermbeskytter med diverse hendelser i solsystemet. 171 begivenheter i alt!" + #~ msgid "Look at Sun from big planets of Solar system and Pluto." #~ msgstr "Se på solen fra solsystemets store planeter og Pluto." diff -Nru stellarium-0.12.1/po/stellarium/nl.po stellarium-0.12.4/po/stellarium/nl.po --- stellarium-0.12.1/po/stellarium/nl.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/nl.po 2013-09-23 06:20:13.000000000 +0000 @@ -8,31 +8,31 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-11 08:58+0000\n" -"Last-Translator: Alexander Wolf \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-07-24 09:39+0000\n" +"Last-Translator: Peter Eijlander \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:12+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:47+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: NETHERLANDS\n" "X-Poedit-Language: Dutch\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridiaan" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ecliptica" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Evenaar" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizon" @@ -40,46 +40,46 @@ msgid "Galactic Plane" msgstr "Vlak van de Melkweg" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Auteur: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Locatie: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Type: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Helderheid: %1 (verzwakt tot: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Helderheid: %1" @@ -89,114 +89,114 @@ msgid "Size: %1" msgstr "Grootte: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Sterrenstelsel" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Open sterrenhoop" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Bolvormige sterrenhoop" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nevel" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetaire nevel" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Donkere nevel" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "sterrenhoop geassocieerd met neveligheid" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Onbekend" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Ongedocumenteerd type" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolute helderheid: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Afstand: %1 AE (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Afstand: %1AE" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Schijnbare diameter: %1, met ringen: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Schijnbare diameter: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" -msgstr "" +msgstr "Siderische rotatieperiode: %1 dagen (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" -msgstr "" +msgstr "Siderische dag %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" -msgstr "" +msgstr "Middelbare zonnedag %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Verlicht: %1%" @@ -207,7 +207,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "ster" @@ -222,48 +222,123 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Schijnbare helderheid %1 (door dimming)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "dubbelster" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Helderheid: %1 (gedimd tot: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Helderheid: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spectraaltype: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Afstand: %1 lichtjaar" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallax: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "RuimteSchip" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "Correctie is uitgeschakeld. Gebruik dit alleen als je weet wat je doet!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -275,7 +350,7 @@ "Confirmed by Ancient Solar Eclipses (%1). Kijk %2hier%3 voor meer " "informatie." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -284,7 +359,7 @@ "Deze empirische vergelijking is gepubliceerd door G. M. Clemence in het " "artikel On the system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -297,7 +372,7 @@ "in zijn Astronomical Formulae for Calculators. Deze formule is ook " "gebruikt in het PC-programma SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -307,7 +382,7 @@ "is gebruikt in de Astronomical Ephemeris en in de Canon of " "Solar Eclipses door Mucke en Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -315,7 +390,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -326,7 +401,7 @@ "het artikel The accelerations of the earth and moon from early " "astronomical observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -335,7 +410,7 @@ "Deze vergelijking is gepubliceerd door F. R. Stephenson in het artikel " "Pre-Telescopic Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -349,7 +424,7 @@ "in the period 1800-1975 (%1), door gegevens te fitten die gepubliceerd " "waren door Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -359,7 +434,7 @@ "Tables from -4000 to +2800 (1986) van P. Bretagnon en L. Simon, en " "gebruikt in het PC-planetariumprogramma RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -367,25 +442,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -394,14 +469,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -409,7 +484,7 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -418,35 +493,35 @@ "F. R. Stephenson publiceerde deze formule in zijn boek Historische " "eclipsen en rotatie van de aarde (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -454,7 +529,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -462,7 +537,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -471,7 +546,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -481,11 +556,27 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Wordt standaard gebruikt." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -494,15 +585,15 @@ "Dit is een kwadratische formule voor de berekening van %1T, waarvan de " "coëfficiënten bepaald zijn door de gebruiker." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Fout" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "met betekenisloze waarden buiten dit gebied" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -510,22 +601,23 @@ "met een gemiddelde fout van minder dan één seconde, maximale fout 1.9s, en " "betekenisloze waarden buiten dit gebied" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "met nul-waarden buiten dit gebied" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "met een nauwkeurigheid van ongeveer 1 seconde, en nul-waarden buiten dit " "gebied" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Geldig gebruiksinterval: tussen jaar %1 en %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Geldig gebruiksinterval: tussen jaar %1 en %2." @@ -694,52 +786,53 @@ msgid "Found" msgstr "Gevonden" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Selecteer screenshot folder" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Gezichtsveld bij opstarten: %1 %2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Hor/Vert weergave bij opstarten: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Auteurs" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contact" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Auteur" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licentie" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Draaiende script: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Draaiende script: [geen]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -747,16 +840,16 @@ "Klaar met het downloaden van nieuwe ster catalogi!\n" "Herstart Stellarium om ze weer te geven." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Alle beschikbare sterrencatalogi werden geïnstalleerd." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Verkrijg catalogus %1 van %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -765,7 +858,7 @@ "Downloaden %1...\n" "(U kunt dit venster sluiten.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -776,7 +869,7 @@ "Aantal sterren: %2 miljoen\n" "Magnitudebereik: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -785,11 +878,11 @@ "Fout bij het downloaden van %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Bestandsintegriteit verifiëren..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -799,115 +892,123 @@ "Bestand is corrupt." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritme van" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Zonder correctie" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) en Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller en Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel en Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison en Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson en Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson en Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel en Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze en Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson en Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (met Chapront, Chapront-Touze en Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus en Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck en Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold en Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison en Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak en Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Aangepaste vergelijking voor %1T" @@ -1075,49 +1176,53 @@ msgid "OSX Developer: %1" msgstr "OSX Ontwikkelaar: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Script console venster" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Vensters" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Spatie" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Geen beschrijving" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Geen vallende sterren" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normale snelheid" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Normaal Perseïden aantal" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Buitengewoon Leoniden aantal" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Hoogste aantal ooit (1966 Leoniden)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nieuwe Locatie" @@ -1222,19 +1327,19 @@ msgid "starchart" msgstr "sterrenkaart" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universiteit van Straatsburg (Frankrijk)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard Universiteit (VS)" @@ -1250,32 +1355,38 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Aangepaste vergelijking voor %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" "Een gebruikelijke vergelijking voor het berekenen van %1T ziet er als volgt " "uit:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "waarin" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "jaar" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Dit systeem heeft geen ondersteuning voor OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Zon" @@ -1292,12 +1403,12 @@ msgstr "Aarde" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Maan" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1395,7 +1506,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturnus" @@ -1693,194 +1804,223 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreaans" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Noors" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesisch" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Westers" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Bomen" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Orkaan" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Oceaan" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Landschaps Toer" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Gedeeltelijke Maansverduistering" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Volledige Maansverduistering" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Schermbeveiliging" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Zonsverduistering 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Opstart Script" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Dierenriem" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Zonnestelsel-schermbeveiliging" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Tour langs sterrenstelsels" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Zon vanaf verschillende planeten" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Kijk rond in elk geïnstalleerd landschap." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Script om een gedeeltelijke maansverduistering te demonstreren." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Script om een volledige maansverduistering te demonstreren." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" "Een trage, oneindige toer van de hemel, kijkend op willekeurige objecten." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1888,11 +2028,11 @@ "Script om een volledige zonsverduistering, die gebeurd is in 2009, te " "demonstreren (locatie=Rangpur, Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Script dat automatisch wordt uitgevoerd bij het opstarten" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1902,36 +2042,36 @@ "sterrenbeelden die liggen langs de lijn die de Zon volgt over de hemelbol " "gedurende de loop van een jaar." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1941,1502 +2081,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Verenigde Arabische Emiraten" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua en Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albanië" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenië" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Nederlandse Antillen" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarctica" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentinië" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikaans-Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Oostenrijk" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australië" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbeidzjan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia en Herzegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "België" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgarije" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrein" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivië" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazilië" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahama's" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvet Eiland" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Wit-Rusland" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Cocoseilanden" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Democratische Republiek Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Centraal Afrikaanse Republiek" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republiek Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Zwitserland" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Ivoorkust" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cookeilanden" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chili" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kameroen" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Columbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Servië en Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kaapverdië" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Kersteiland" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Cyprus" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Tsjechië" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Duitsland" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Denemarken" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominicaanse Republiek" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algerije" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estland" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egypte" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Westelijke Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spanje" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Ethiopië" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandeilanden" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronesië" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Faeröer Eilanden" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Frankrijk" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Verenigd Koninkrijk" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgië" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Frans-Guyana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Groenland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinee" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Equatoriaal-Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Griekenland" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Zuid-Georgia en de Zuidelijke Sandwicheilanden" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinee-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heardeiland en McDonaldeilanden" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Kroatië" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haïti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hongarije" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesië" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ierland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israël" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Brits Indische Oceaanterritorium" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "IJsland" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italië" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordanië" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgizië" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Cambodja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comoren" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts en Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Noord-Korea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Zuid-Korea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Koeweit" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kaaimaneilanden" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazachstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litouwen" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Letland" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libië" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marokko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavië" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshalleilanden" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedonië" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolië" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Noordelijke Marianen" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritanië" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldiven" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexico" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Maleisië" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibië" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nieuw-Caledonië" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Nederland" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Noorwegen" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nieuw-Zeeland" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Frans-Polynesië" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papoea-Nieuw-Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipijnen" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polen" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint-Pierre en Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palestijnse Gebieden" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Roemenië" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Servië" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Rusland" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saoedi-Arabië" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Salomonseilanden" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychellen" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Soedan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Zweden" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Sint-Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenië" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Spitsbergen en Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slowakije" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalië" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tomé en Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syrië" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks- en Caicoseilanden" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Tsjaad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Franse Zuidelijke en Antarctische Gebieden" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailand" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadzjikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Oost-Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunesië" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turkije" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad en Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Oekraïne" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Oeganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Kleine afgelegen eilanden van de Verenigde Staten" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Verenigde Staten" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Oezbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vaticaanstad" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent en de Grenadines" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Britse Maagdeneilanden" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Amerikaanse Maagdeneilanden" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis en Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Joegoslavië" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Zuid-Afrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Datum en tijd" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Voeg 1 siderische dag toe" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Voeg 1 siderische week toe" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Voeg 1 zonnedag toe" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Voeg 1 zonneuur toe" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Voeg 1 zonneweek toe" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Vertraag de script uitvoering" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Vertraag tijd" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Verlaag tijd snelheid (een beetje)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Versnel de script uitvoering" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Versnel tijd" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Verhoog tijd snelheid (een beetje)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pauzeer uitvoeren van script" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Hervat uitvoeren van script" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Stel tijd in op nu" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Zet de normale snelheid van script uitvoering" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Stel normale tijdssnelheid in" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Zet tijdsverloop op nul" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Stop uitvoeren van script" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Trek 1 siderische dag af" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Trek 1 siderische week af" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Trek 1 zonnedag af" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Trek 1 zonneuur af" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Trek 1 zonneweek af" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Weergaveopties" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Horizontaal spiegelen" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Volledig scherm modus" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfeer" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimutaal raster" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Windstreken" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Sterrenbeeldkunst" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Sterrenbeeldgrenzen" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Sterrenbeeldlabels" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Sterrenbeeldlijnen" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Achtergrondafbeeldingen van nevels" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ecliptica" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Evenaar" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Equatoriaal raster" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Equatoriaal J2000 raster" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Mist" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galactisch raster" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Vlak van de Melkweg" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Grond" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horizon lijn" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridaan" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nevels" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Nachtmodus" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Planeetnamen" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planeetbanen" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "pad van de planeet" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Sterren" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Verticaal spiegelen" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Diversen" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Horizontale knoppenbalk automatisch verbergen" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Verticale knoppenbalk automatisch verbergen" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Afsluiten" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Kopieer geselecteerde object informatie naar het plakbord" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Schermafbeelding opslaan" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Wissel tussen equatoriale en azimutale montering" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Zichtbaarheid van de GUI aan-/uitzetten" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Beweging en selectie" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centreer op het geselecteerde object" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Stel de thuisplaneet in op de geselecteerde planeet" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Object volgen" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zoom in op het geselecteerde object" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Uitzoomen" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Meting van hoeken" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Kompasstreken" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Toon exoplaneten" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Configuratiescherm exoplaneten" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Waarneembaarheid" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Configuratiescherm waarneembaarheid" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Oculair zicht" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Oculaire popup menu" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Configuratievenster van de satellieten" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Satelliet tips" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satelliet labels" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Beweeg een telescoop naar een gegeven verzameling van coördinaten" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripts" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Configuratiescherm" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Datum/tijd venster" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Help venster" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Locatievenster" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Zoekvenster" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Ruimte- en projectieinstellingen" @@ -3462,7 +3638,7 @@ msgstr "Vernieuw" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Locatie" @@ -3478,10 +3654,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Verwijderen" @@ -3490,7 +3666,7 @@ msgstr "Aan lijst toevoegen" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Breedtegraad:" @@ -3503,12 +3679,12 @@ "seconden formaat, bijvoorbeeld: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Lengtegraad:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Hoogte:" @@ -3532,363 +3708,407 @@ msgid "Planet:" msgstr "Planeet" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Object zoeken" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Zoek Object of Positie" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ypsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Griekse letters voor Bayer benamingen" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Object" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Positie" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Zoek in lijst..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Lijsten" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Online astronomische database SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Uitgebreid zoeken met SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Opties" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Zoek in lijst..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Lijsten" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Opties" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Beeld" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Hemel" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Markeringen" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landschap" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Verhalen over de sterren" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Labels en markeringen" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planeten" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planeten en satellieten" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Toon planeten" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Toon planeetmarkeringen" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Toon planeetbanen" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simuleer de lichtsnelheid" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Maan op visuele formaat" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Toon atmosfeer" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Lichtpollutie" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "druk, temperatuur, extinctie coëfficiënt" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refractie/Extinctie instelllingen..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolute schaal:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relatieve schaal:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Helderheid Melkweg:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Fonkelen:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Dim zwakke sterren als een zeer helder object in beeld is" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamische oogaanpassing" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Vallende sterren" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Sterrenbeelden" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Toon lijnen" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Toon labels" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Toon grenzen" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Toon beelden" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Helderheid beelden" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "hemelgewelf" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projectie" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Installeer/verwijder landschappen..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Toon grond" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Toon mist" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Gebruik de geassocieerde planeet en positie" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Gebruik dit landschap als standaard" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Gebruik deze ruimtevariatie als standaard" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Zichtbaar" @@ -3943,7 +4163,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "De richting waar u naar kijkt als Stellarium opstart" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informatie over geselecteerde object" @@ -3959,11 +4179,8 @@ msgid "Display no information" msgstr "Toon geen informatie" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Geen" @@ -4105,7 +4322,7 @@ msgstr "seconden" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Opstart datum en tijd" @@ -4117,19 +4334,23 @@ msgid "Other:" msgstr "Overige:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "gebruik huidige" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Start Stellarium op met de systeemdatum en -tijd" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Systeemdatum en -tijd" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4137,23 +4358,23 @@ "Stelt het tijdstip van deze simulatie in voor de volgende keer dat " "Stellarium opgestart wordt" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Systeemdatum op:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetariumopties" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4162,51 +4383,51 @@ "bolvormige spiegel wordt geprojecteerd om zo een goedkoop planetariumsysteem " "te krijgen." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Bolvormige spiegelvervorming" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Verberg alles buiten een centrale cirkel in het hoofdscherm" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Schijfvormig kijkvenster" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Verberg andere sterrenbeelden als u op één ervan klikt" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Kies een sterrenbeeld uit" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Lijn labels uit met de horizon" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Zwaartekrachtlabels" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Draai de verticale en horizontale omspiegel-knoppen om." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Toon spiegelknoppen" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4214,92 +4435,98 @@ "Als dit aan staat zal de \"automatische uitzoomen\" toets ook de initiële " "kijkrichting instellen" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatisch uitzoomen keert terug naar de initiële kijkrichting" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Screenshots" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Screenshot Folder" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Inverteer kleuren" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Ster catalogi updates" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klik hier om het downloaden te starten" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Download dit bestand om zelfs meer sterren te zien" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Herstart de download" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Opnieuw proberen" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Stop de download. U kunt het altijd later herstarten" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Annuleren" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Sluit venster wanneer het script draait" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Draai het geselecteerd script" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stop een draaiend script" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Laden bij opstarten" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "instellen" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Algemeen" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informatie" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigatie" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Tools" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Plug-ins" @@ -4474,176 +4701,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Toont peilingsstreken van het kompas langs de horizon" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculairen" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Oculair #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Oculair #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Brandpuntsafstand oculair: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Schijnbaar beeldveld oculair: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Telescoop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Telescoop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Vergroting: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Beeldveld: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Afmetingen: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Telescoop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Vorige telescoop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Volgende telescoop" @@ -4715,64 +4942,69 @@ msgid "Apparent field of view of the ocular" msgstr "Schijnbaar beeldveld van het oculair" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotatie: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Vergroting met deze oculairs" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Beeldveld met deze oculairs" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versie" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Overzicht" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4780,7 +5012,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4791,14 +5023,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4807,191 +5039,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interface:" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Algemeen" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Oculairs" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Toevoegen" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Naam:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "Schijnbaar beeldveld" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Brandpuntsafstand:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Verrekijker" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Lenzen" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensoren" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diameter:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satellieten" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4999,117 +5240,177 @@ "Voorspelling van de posities van artificiële satellieten in een baan om de " "Aarde gebaseerd op NORAD TLE data" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Het oude satellieten.json bestand is niet langer compatibel - het standaard " "bestand word gebruikt" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Afstand (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "De satelliet is zichtbaar." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "De satelliet is verduisterd." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "De satelliet is niet zichtbaar" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5117,25 +5418,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5143,17 +5444,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5161,41 +5462,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Links" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5203,338 +5506,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Indien u een vraag heeft kunt u %1hier een antwoord krijgen%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internet updates zijn uitgeschakeld" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Nu updaten" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Nu updaten" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Downloaden van data..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Er kon geen data gedownload worden. Probeer het later opnieuw." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Laatste update:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Labels" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Standaardwaarden herstellen" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Voorkeuren" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Voeg meer satellieten toe" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Wijzigingen opslaan" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Zichtbaar" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Baan" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Omschrijving:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Groepen:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Voeg meer satellieten toe" - -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Wijzigingen opslaan" - -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5570,11 +5916,11 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Telescoop Controle" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5582,12 +5928,12 @@ "Deze plug-in stelt Stellarium in staat om \"draai\" commando's door te geven " "een telescoop op een elektronische voet (een \"GaNaar telescoop\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Beweeg telescoop #%1 naar het geselecteerde object" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5976,62 +6322,62 @@ "onderste balk te veranderen." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Januari" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Februari" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Maart" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "April" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Mei" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Juni" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Juli" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Augustus" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "September" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Oktober" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "November" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "December" @@ -6185,7 +6531,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6203,7 +6549,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6219,11 +6565,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-jjjj" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Tekst Gebruikersinterface" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6231,144 +6577,144 @@ "Plug-in implementatie van 0.9.x reeks Tekst Gebruiksinterface (TGI), " "gebruikt in planetarium systemen" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddjjjj" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmjjjj" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "jjjjmmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Taal" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Toon sterren" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Kleuren" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Lijn vlak van de Melkweg" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Effecten" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Afsluiten" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6405,22 +6751,22 @@ "uitvoering." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6589,36 +6935,43 @@ msgid "Solar System" msgstr "Zonnestelsel" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6636,7 +6989,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6650,14 +7003,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6665,8 +7018,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6684,29 +7038,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6722,51 +7153,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6886,11 +7327,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6898,137 +7339,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Massa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Straal" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AE" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Excentriciteit" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inclinatie" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7036,49 +7481,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7094,185 +7628,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7599,6 +8127,9 @@ #~ msgid "Sidereal" #~ msgstr "Siderisch" +#~ msgid "Nebulas" +#~ msgstr "Nevels" + #~ msgid "Form" #~ msgstr "Vorm" @@ -7653,6 +8184,9 @@ #~ msgid "Startup direction of view: xxxx" #~ msgstr "Opstartwaarden viewport: xxxx" +#~ msgid "Nebulas background images" +#~ msgstr "Achtergrondafbeeldingen van nevels" + #~ msgid "Planets labels" #~ msgstr "Planeten labels" diff -Nru stellarium-0.12.1/po/stellarium/nn.po stellarium-0.12.4/po/stellarium/nn.po --- stellarium-0.12.1/po/stellarium/nn.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/nn.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-11-24 19:42+0000\n" "Last-Translator: Alexander Mackinnon Jansen \n" "Language-Team: Norwegian Nynorsk \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:17+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:52+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptikken" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horisont" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Galaktisk plan" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Forfattar: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Stad: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Type: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitude: %1 (med ekstinksjon: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitude: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Størrelse: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galakse" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Open stjernehop" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kulehop" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Stjernetåke" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetarisk tåke" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Stjernehop assosiert med ei tåke" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Ukjend" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Udokumentert type" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolutt magnitude: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Ekliptisk toposentrisk (d.d.): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Aksehelling (d.d., for jorden): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Avstand: %1AE (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Avstand: %1AE" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Tilsynelatande diameter: %1, med ringar: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Tilsynelatande diameter: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Siderisk omløpstid: %1 døgn (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Stjernedøgn: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Middelsoldag: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Fasevinkel: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Forlenging: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Opplyst: %1%" @@ -204,7 +204,7 @@ msgstr "Overgangsnamn: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Tilsynelat. magnitude: %1 (med ekstinksjon)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitude: %1 (med ekstinksjon: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitude: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektraltype: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Avstand: %1 lysår" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallakse: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Romskip" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Feil" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -656,52 +748,53 @@ msgid "Found" msgstr "Funnen" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Vel katalog der skjermbilete skal verte lagra" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Synsfelt ved oppstart: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Visningsretning ved oppstart Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Forfattarar" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Forfattar" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lisens" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Køyrer skript: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Køyrer skript: [ingen]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -709,16 +802,16 @@ "Stjernekatalogane er ferdig nedlasta!\n" "Start Stellarium på nytt for å vise dei." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Alle tilgjengelege stjernekatalogar er installerte." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Hent katalog %1 av %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -727,7 +820,7 @@ "Lastar ned %1\n" "(Du kan lukke dette vindauget)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -738,7 +831,7 @@ "Antall stjerner: %2 Millioner\n" "Magnitudeområde: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -747,11 +840,11 @@ "Feil ved nedlasting av %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verifiserer filintegritet..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -761,115 +854,123 @@ "Feil i fila." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1040,49 +1141,53 @@ msgid "OSX Developer: %1" msgstr "OSX-utviklar: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Skript-konsollvindauge" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Vindauge" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Mellomrom" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Inga skildring" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Ingen stjerneskot" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normal rate" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standard Perseiderate" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Eksepsjonell Leoniderate" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Høgste rate nokonsinne (Leonidane i 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Ny stad" @@ -1188,19 +1293,19 @@ msgid "starchart" msgstr "stjernekart" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad søkefeil" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad-oppslag" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universitetet i Strasbourg (Frankrike)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard University (USA)" @@ -1216,30 +1321,36 @@ msgid "Alternative shortcut" msgstr "Alternativ snarveg" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Dette systemet stør ikkje OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sola" @@ -1256,12 +1367,12 @@ msgstr "Jorda" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Månen" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1359,7 +1470,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1657,194 +1768,223 @@ msgstr "Inuitt" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreansk" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norrøn" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesisk" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Samisk" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Vestleg" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guéreins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Trær" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane Ridge" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Hav" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Landskapstur" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Delvis månemørking" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Total månemørking" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Skjermsparar" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Solmørking 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Oppstartsskript" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Dyrekrinsen" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Trippel soloppgang/-nedgang på Merkur" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Dobbel formørking frå Deimos i 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Dobbel formørking frå Deimos i 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Formørking fra Olympus Mons 10. jan. 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Okkultasjon av jorda og Jupiter 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Solsystem-skjermbeskyttar" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Stjernebilettur" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Sola frå ymse planetar" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Beste jordutsikt fra andre legem" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Venuspassasje" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Sjå deg rundt i kvart installerte landskap." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skript for å demonstrere ei delvis måneformørking." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skript for å demonstrere ei total måneformørking." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" "Ein sakte, uendeleg rundtur på himmelen for å sjå på tilfeldige objekt." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1852,11 +1992,11 @@ "Skript for å demonstrere ei total solformørking som henede i 2009 (stad = " "Rangpur, Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skript som køyrest automatisk ved oppstart" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1865,7 +2005,7 @@ "Dette skriptet viser stjernebileta i dyrekrinsen. Det vil seie stjernebileta " "som ligg langs linja som sola følger over himmelkvelvinga i laupet av eit år." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1873,7 +2013,7 @@ "Grunna særeigenskapene i banen og krinsinga til Merkur enkelte stader vil " "sola stige og gå ned tre gonger på ein Merkurdag." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1881,7 +2021,7 @@ "Rett før Mars formørker sola smett Phobos ut bakfrå og formørker henne " "først. Mellom Skorpionen og Skytten den 26. april 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1889,11 +2029,11 @@ "Rett før Mars formørker sola smett Phobos ut bakfrå og formørker henne " "først. Mellom Tyren og Tvillingane den 23. juli 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "Phobos dekk føre sola som sett frå Olympus Mons 10. januar 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1903,7 +2043,7 @@ "formørkingane same dag er veldig sjeldan. Her er ein den 23/1/2048. I " "sanntid." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1913,38 +2053,38 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" -msgstr "Skjermvernar med ymse hendingar i solsystemet. 171 hendingar i alt!" +"Screensaver of various happenings in the Solar System. 187 events in all!" +msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Ein tur gjennom vestlege stjernebilete." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Sjå på sola frå store planetar i solsystemet og Pluto." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "Dei beste syna av jorda frå andre himmellekam i solsystemet i det 21. " "hundreåret." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "Venuspassasja som sett frå Sydney i Australia den 6. juni 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" "Ein demonstrasjon av analemmaet - Sola sin bane på himmelen i laupet av året." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -1952,1468 +2092,1504 @@ "Glimt frå supernovaen som vart observert av Tycho Brage i 1572. Supernova-" "tillegget må vere på." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Dei sameinte arabiske emirata" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua og Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Dei nederlandske Antillane" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktika" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikansk Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austerrike" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Aserbajdsjan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnia-Hercegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgia" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvetøya" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Kviterussland" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kokosøyane" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Kongo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Den sentralafrikanske republikken" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republikken Kongo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Sveits" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Elfenbeinskysten" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cookøyane" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Kina" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia og Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kapp Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Christmasøya" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Kypros" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Tsjekkia" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Tyskland" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Danmark" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Den dominikanske republikken" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algerie" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estland" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egypt" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Vest-Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spania" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandsøyane" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronesiaføderasjonen" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Færøyane" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Frankrike" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Storbritannia" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Fransk Guyana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grønland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Ekvatorial-Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Hellas" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Sør-Georgia og Sør-Sandwichøyane" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard- og McDonaldøyane" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Kroatia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Ungarn" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Det britiske territoriet i Indiahavet" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Island" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordan" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgisistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodsja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komorane" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts og Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Nord-Korea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Sør-Korea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Caymanøyane" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kasakhstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litauen" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxembourg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Latvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marokko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshalløyane" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Nord-Marianane" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldivane" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexico" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaysia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mosambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Ny-Caledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolkøya" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Nederland" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Noreg" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "New Zealand" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Fransk Polynesia" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Ny-Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filippinane" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polen" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint-Pierre og Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairnøyane" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Dei palestinske territoria" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romania" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Russland" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudi-Arabia" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Salomonøyane" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychellane" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Sverige" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "St. Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard og Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovakia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "São Tomé og Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks- og Caicosøyane" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Tsjad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Dei franske sørterritoria" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailand" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadsjikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Aust-Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Tyrkia" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad og Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "USAs ytre småøyar" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "USA" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Usbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikanstaten" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent og Grenadinane" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Dei britiske Jomfruøyane" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Dei amerikanske Jomfruøyane" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis- og Futunaøyane" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Sør-Afrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Dato og tid" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Legg til 1 stjernedøgn" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Legg til 1 siderisk månad" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Legg til 1 stjerneveke" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Legg til 1 siderisk år" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Legg til 1 soldøgn" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Legg til 1 soltime" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Legg til 1 solveke" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Legg til 1 synodisk månad" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Legg til 1 drakonisk månad" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Legg til 1 anomalistisk månad" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Legg til 1 tropisk månad" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Legg til 1 drakonisk år" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Legg til 1 tropisk år" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Mink køyresnøggleiken for skript" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Reduser tidshastighet" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Reduser tidshastigheten (litt)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Auk køyresnøggleiken for skript" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Øk tidshastighet" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Auk tidsrata (litt)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Stopp skriptkjøring midlertideg" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Gjenoppta skriptkøyring" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Sett tida til no" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Vel vanleg køyresnøggleik for skript" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Normal tidshastighet" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Sett tidsrata til null" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Stopp skriptkøyring" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Trekk frå 1 stjernedøgn" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Trekk frå 1 siderisk månad" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Trekk frå 1 stjerneveke" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Trekk frå 1 siderisk år" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Trekk frå 1 soldøgn" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Trekk frå 1 soltime" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Trekk frå 1 solveke" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Trekk frå 1 synodisk månad" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Trekk frå 1 drakonisk månad" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Trekk frå 1 anomalistisk månad" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Trekk frå 1 tropisk månad" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Trekk frå 1 drakonisk år" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Trekk frå 1 tropisk år" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Visningsval" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Speilvend horisontalt" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Fullskjerm-modus" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfære" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Asimutnett" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Himmelretningar" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Stjernebilete - grafikk" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Stjernebiletegrenser" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Namn på stjernebilete" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Stjernebiletelinjer" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Bakgrunnsbilete for stjernetåker" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptisk J2000-nett" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptisk line" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekvatorline" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatorialt nett" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatorialt J2000-nett" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Tåke" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktisk nett" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galaktisk plan" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Horisont" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horisontlinje" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridianline" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Stjernetåker" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Nattmodus" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Planetnamn" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planetveg" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planetspor" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stjerner" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Stjernepåskrifter" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Speilvend vertikalt" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Ymse" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Skjul den horisontale knappelinja automatisk" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Skjul den vertikale knappelinja automatisk" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Gå attende til opprinneleg stad" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Avslutt" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Kopier valde objektinformasjon til utklippstavle" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Lagra skjermbilete" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Skift mellom ekvatorial- og asimutmontering" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Grafisk brukarflate av/på" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Navigering og val" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Sentrer på valde objekt" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Set heimeplanet til den valde planeten." -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Føl objekt" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zoom inn på på valde objekt" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zoom ut" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Vinkelmål" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Kompassmarkeringar" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Vis eksoplanetar" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Innstillingsvindu for eksoplanetar" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observerbarheit" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Innstillingsvindu for observerbarheit" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Innstilling av programtillegg for okular" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okularvisnig" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Vis trådkross" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Oppsprettsmeny for okular" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Biletsensorrame" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad-sikte" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Innstillingsvindauge for pulsarar" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Innstillingsvindauge for kvasarar" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Innstillingsvindauge for satellittar" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Satellitt-hint" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satellitt-påskriftar" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Innstillingsvindauge for historiske supernovaar" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Flytt eit teleskop til eit gitt sett koordinat" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skript" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Køyr landskapskript fra fil" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Vis og skalér månen" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Innstillingar" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Dato/tidsvindauge" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Hjelpevindauge" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Stedsvalg" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Søkevindauge" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Snarvegsvindauge" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Himmel- og visningsalternativer" @@ -3439,7 +3615,7 @@ msgstr "Oppdater" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Sted" @@ -3455,10 +3631,10 @@ msgid "Return to default" msgstr "Still attende til standard" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Slett" @@ -3467,7 +3643,7 @@ msgstr "Legg til i liste" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Breiddegrad:" @@ -3479,12 +3655,12 @@ "Bruk desimalgradar eller formatet grader, minutt, sekund; f.eks. +1g 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Lengdegrad:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Høgde:" @@ -3508,363 +3684,407 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Finn objekt" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Finn objekt eller posisjon" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "my" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ny" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ypsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "khi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Greske bokstavar for Bayer-nemningar" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekt" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posisjon" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "namn på engelsk" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Søk i liste..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Lister" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Den nettbaserte astronomidatabasa SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Utvid søket med SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Tenar:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Innstillingar" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "namn på engelsk" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Søk i liste..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Lister" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Syn" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Himmel" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Merke" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landskap" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Stjernemytar" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Påskrifter og merke" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planetar" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planetar og satelittar" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Vis planetar" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Vis planetmerke" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Vis planetbanar" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulér lysfart" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Skaler måne" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Vis atmosfære" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Ljosureining" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "trykk, temperatur, ekstinksjonskoeffisient" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Still inn refraksjon/ekstinksjon" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolutt skala:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relativ skala:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Blinking:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Demp svake stjerner når eit veldig ljost objekt er synleg" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamisk augnetilpassing" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Stjerneskot" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Stjernebilete" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Vis liner" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Vis etikettar" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Vis grenser" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Vis kunst" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Ljosstyrke på kunst:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Himmelkvelv" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Vis ekvatorlinje" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Vis meridianlinje" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Vis horisontlinje" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Vis ekliptikken" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Vis linje for det galaktiske planet" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projeksjon" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Legg til/fjern landskap..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Vis horisont" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Vis tåke" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Bruk planeten og posisjonen som høyrer til" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Nytt dette landskapet som standard" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Bruk denne himmelkulturen som standard" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Synleg" @@ -3919,7 +4139,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Retninga du ser når Stellarium starter" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informasjon om det valde objektet" @@ -3935,11 +4155,8 @@ msgid "Display no information" msgstr "Ikkje vis informasjon" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ingen" @@ -4081,7 +4298,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Dato og klokkeslett ved oppstart" @@ -4093,19 +4310,23 @@ msgid "Other:" msgstr "Anna:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "bruk gjeldande" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Start Stellarium med systemdato og -klokkeslett" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Systemdato og -tid" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4113,23 +4334,23 @@ "Set den simulerte tida til neste forekomst av dette tidspunktet på dagen når " "Stellarium startar." -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Systemdato klokka:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetariealternativ" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4137,51 +4358,51 @@ "Sfærisk speglforvrenging brukast når ein viser Stellarium på ein sfærisk " "spegl for billige planetariumsystem." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Sfærisk speilforvrenging" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Masker vekk alt utanfor ein sentral sirkel i hovudvisinga" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Linseforma visingsfelt" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Skjul andre stjernebilete når du velger eitt" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Velg eitt stjernebilde" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Juster merke etter horisonten" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Tyngdekraftsmerke" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Slå av/på visning av bakgrunnsbilet for stjernetåker." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Vis knapp for stjernetåkebakgrunn" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Vis eller skjul loddrette og vassrette biletspeilvendingsknappar." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Vis speglvendingsknapper" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4189,92 +4410,98 @@ "Når på vil tasten «gå ut automatisk» òg velje den opprinnelege " "visingsretninga" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatisk utgåing går attende til den opprinnelege visingsretninga" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Gjengi solskyggar" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Skjermbilete" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Skjermbiletmappe" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Vend om fargane" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Oppdateringar av stjernekatalogar" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klikk her for å starte nedlasting" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Last ned denne fila for å vise endå fleire stjernar" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Start nedlastinga på nytt" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Prøv att" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Stopp nedlastinga. Du kan alltids starte han på nytt seinare" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Avbryt" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Lukk vindu når skript køyrer" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Køyr det valde skriptet" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stopp eit køyrande skript" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Last ved oppstart" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "still inn" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Hovudval" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informasjon" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigasjon" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Verktøy" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Programtillegg" @@ -4449,12 +4676,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Viser kompassmarkeringar langs horisonten" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okular" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4463,164 +4690,164 @@ "Viaer himmelen som gjennom eit teleskopokular. (Berre forstørring og " "synsfelt er simulert). Det kan òg vise ei sensorrame og et Telrad-sikte." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Velg eit objekt før du skifter til okularvising." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Forrige okular" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Neste okular" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Velj &okular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Slå på/av &trådkors" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Still inn &okular" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Slå på/av &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Slå på/av &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Førre CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Neste CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Vel CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Roter CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Tilbakestill rotasjon" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Okular - br.vidde: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Okular - tils.lat. synsf.: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Forstørring: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Synsfelt: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Mål: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Førre teleskop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Neste teleskop" @@ -4692,64 +4919,69 @@ msgid "Apparent field of view of the ocular" msgstr "Tilsynelatande synsområde på okularet" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotering: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Forstørring som leverast av disse kikkertane" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Eigentleg synsfelt som blir tilboden av desse kikkertane" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Programtillegg for okular" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versjon" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Oversyn" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4761,7 +4993,7 @@ "slette okular og teleskop samt CCD-sensorar. Ved førstegongskjøringa vil det " "fyllast ut nokre eksempel for å kome igang." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4778,7 +5010,7 @@ "vert mykje av skjermen bortkasta. Difor tilrår eg at du har han av viss du " "ikkje synes du trenger den." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4788,7 +5020,7 @@ "justert mot Nord. Dette har eg ikkje klart. Derfor er det justert mot " "toppen av skjermen." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4801,191 +5033,200 @@ "2,0%1 og 4,0%1, for å hjelpe deg med å sjå det du hadde venta å sjå med det " "blotte auget gjennom Telradfinnaren (eller liknande finnar)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Viss du finn problem, ver snill å fortelle meg. Nyt!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Snøggtastar" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "Tastatursnarvegane i tillegget kan endrast i Generelt-fana." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[ingen tast definert]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Slår på/av okularvisinga." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Opnar oppsprettsmenyen for navigering." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Aktiver berre viss eit objekt er vald" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Skaler biletsirkel" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Tastetilordningar" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Slå på/av okularvising:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Opne oppsprettsmeny for navigering:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Grensesnitt" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Skjermbasert kontrollpanel" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Bruk gradar og minutt for CCD-synsfelt" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Generelt" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okular" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Legg til" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Namn:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "Tilsynelat. synsfelt:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Brennvidde:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Feltstopp:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Kikkertar" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensorar" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Oppløysing x (piksler):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Oppløysing y (piksler):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Brikkebreidd (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Brikkehøgd (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Pikselbreidd (mikrometer):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Pikselhøgd (mikrometer):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskop" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diameter:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Vassrett speglvending" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Loddrett speglvending" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Om" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satellittar" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4993,88 +5234,148 @@ "Føresyning av posisjonar til kunstige satellittar i jordbane basert på NORAD " "TLE-data" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Den gamle satellites.json-fila er ikkje lenger kompatibel - bruker " "standardfila" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Katalognr." -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Internasjonal betegning" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Avstand (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Avstandsrate (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Høgd (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Underpunkt (Breidde-/Lengdegrad): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME-koordinat (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME-hastigheit (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Satellitten og observatøren er i sollys." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satellitten er synleg." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Satellitten er formørka." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satellitten er ikkje synleg." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Satellittprogramtillegg for Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5082,17 +5383,17 @@ "Satellittprogramtillegget føreseier posisjonane til kunstige satellittar i " "bane rundt jorda." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Merknadar til brukarar" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Satellittar og banane deira visast berre når observatøren er på jorda." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5103,7 +5404,7 @@ "framtida). Forvent store avvik når ein ser på datoar utanfor dette " "tidsområdet." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5112,7 +5413,7 @@ "få nyttige data ut, må du oppdatere TLE-dataane regelmessig." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5123,7 +5424,7 @@ "tilbake til standardfila %3. Den gamle fila vil bli sikkerhetskopiert som " "%4. Denne filen finnest i brukerdata-mappa, under «modules/Satellittes/»." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5132,11 +5433,11 @@ "ufulleinde, manglar eller kan innehalde feil." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Oppdateringar for TLE-data" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5146,7 +5447,7 @@ "internettkjelder, og programtillegget vil som standard gjere dette viss dei " "eksisterande dataa er meir enn 72 timar gamle. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5157,7 +5458,7 @@ "datamaskina di. Denne fila må vere i same format som Celestrak-" "oppdateringane (sjå %1 for et eksempel)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5165,11 +5466,11 @@ "Merk: viss namnet på ei satellitt i oppdateringa av data har noko i " "hakeparentesar på slutten, vil det bli fjerna før dataane blir brukt." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Å legge til nye satellittar" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5181,11 +5482,11 @@ "2. Gå til satellittar-fana, og klikk +-knappen. Vel satellitten(/ane) du vil " "legge til og klikk knappen «Legg til»." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Tekniske merknadar" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5193,7 +5494,7 @@ "Posisjonar er rekna ved bruk av metodane SGP4 & SDP4, ved å bruke NORAD TLE-" "data som inndata. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5202,24 +5503,26 @@ "revidert Spacetrack Report #3 (inkludert Spacetrack Report #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Sjå %1dette dokumentet%2 for detaljer." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Lenker" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5229,31 +5532,34 @@ "du postar." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Viss du har nokre spurnadar, kan du %1få svar her%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Feilrapporteringer kan gjerast %1her%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5261,294 +5567,334 @@ "Viss du vil sende ein førespurnad om ein ny funksjon, da kan du opprette ein " "feilrapport, og angi alvorsgraden til «ønskeliste»." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internett-oppdatering deaktivert" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Oppdaterar..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Neste oppdatering: < 1 minutt" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Neste oppdatering: %1 minutt" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Neste oppdatering: %1 timar" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 +msgid "Update error" +msgstr "Feil ved oppdatering" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 +msgid "[new source]" +msgstr "[ny kjelde]" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 #: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 msgid "Update now" msgstr "Oppdater no" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 msgid "Update from files" msgstr "Oppdater frå filer" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 -msgid "Update error" -msgstr "Feil ved oppdatering" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 -#, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Oppdaterte %1/%2 satellitt(ar); %3 manglar" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 -msgid "[new source]" -msgstr "[ny kjelde]" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[feil ved banerekning]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[alle nylig tillaga]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[alle ikkje vist]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[alle vist]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[alle]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Vel TLE-oppdateringsfil" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Lastar ned data…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "Stellarium lastar ned satellittdata frå oppdateringskjeldene. Vent…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Velg TLE-kildefil(er)..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Arbeider med data…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Ingen data kan lastes ned. Prøv att seinare." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Katalognummer: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Satellittoppsett" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Oppdater TLE-lister frå internettkjelder" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Oppdater frå internettkjelder" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Siste oppdatering:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Oppdateringsfrekvens (timar):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Merkelappar" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Skriftstorleil på merkelapp (piksler):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Banelinjer" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Tal på delar brukt for å tegne linja" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Tal på delar:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Varigheita av eit enkeltsegment i sekund" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Segmentlengd (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Tal på segment brukt for å tegne kvar ende av linja" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Uttoningslengd:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Gjenopprett standardval" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Lagra val som standard" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Innstillingar" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Legg til fleire satellittar" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Fjern dei valde satellittane" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Lagre endringar" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Katalognummer:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Vis valde satellitt(ar)" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Vist" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Vis banelinje(/ar) for valde satellitt(ar)" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Bane" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Katalognummer:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Skildring:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Grupper:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Kommaseparert liste av grupper" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE-data:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORAD - tolinjers elementbanedata" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Fjern dei valde satellittane" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Legg til fleire satellittar" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Lagre endringar" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5556,15 +5902,15 @@ "Angi eller redigere nettadressa til den valde kjelda. Endringane vert lagra " "ved å trykke Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Legg til ny kjelde" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Fjern valde kilde" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Kjelder" @@ -5600,11 +5946,11 @@ msgid "Discard" msgstr "Forkast" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskopkontroll" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5613,12 +5959,12 @@ "til eit teleskop som er tilkopla ein datamaskin (eit såkalla «GoTo»-" "teleskop)." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Beveg teleskop #%1 til valde objekt" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Beveg teleskop #%1 til det punktet som no er i midten av skjermen" @@ -6020,62 +6366,62 @@ "datoen visast i botnlinja." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Januar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Februar" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Mars" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "April" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Mai" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Juni" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Juli" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "August" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "September" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Oktober" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "November" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Desember" @@ -6232,7 +6578,7 @@ msgstr "Disse vala styrar korleis klokkeslett og dato visast i botnlinja." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Tidsvisningsformat" @@ -6250,7 +6596,7 @@ msgstr "24-timars-format" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Datovisnigsformat" @@ -6266,11 +6612,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-åååå" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Tekst-brukargrensesnitt" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6278,144 +6624,144 @@ "Programtillegg-implementering av brukargrensesnittet i tekstmodusen (TUI) i " "0.9.x-serien, brukt i planetarium-system" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Solsystemlekam" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Gjeldande dato/klokkeslett" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Still inn tidssone" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Dagtastar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Forhåndsinnstilt dato/klokkeslett for oppstart" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "system" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "førehandsinnstilt" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddåååå" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmåååå" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "ååååmmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12t" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24t" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Språk" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Vis stjerner" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Fargar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Stjernetåkenamn" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Stjernetåkehint" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Line for det galaktiske planet" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Effektar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Manuell forstørring" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Magnitude - skaleringsmultiplikator" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Melkevei-intensitet:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Påskriftfrekvens for tåker:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Forstørringsvarigheit:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Tidsavbrudd for musepeikar:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Still inn plassering for landskapssett" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Køyr lokalt skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Stopp køyrande skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD-skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administrering" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Last standardinnstillingar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Lagre gjeldende innstillingar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Avslutt" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[ingen TUI node]" @@ -6451,16 +6797,16 @@ "i den nettbaserte databasa deira. Framleis under utvikling." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Søk i MPC %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Berre eitt resultat vil bli returnert viss søket er vellukka." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6468,7 +6814,7 @@ "Både kometar og asteroidar kan identifiserast med nummera, namna (på " "engelsk) eller den provisoriske nemninga deira." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6657,40 +7003,43 @@ msgid "Solar System" msgstr "Solsystem" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Historiske supernovaer" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Eit programtillegg som visar nokre historiske supernovaer lysare enn visuell " -"storleik 10." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Supernovatype: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Programtillegg for historiske supernovaer" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Eit programtillegg som viser noen historiske supernovaer lysare enn visuell " -"storleik 10: " #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Lyskurver" @@ -6712,7 +7061,7 @@ msgstr "Anerkjenning" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6727,14 +7076,14 @@ msgstr "Institutt for teoretisk og eksperimentell fysikk" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "i Russland" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6744,8 +7093,9 @@ "historikk og katalogformat, kan du %1få informasjon her%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Neste oppdatering: %1 dagar" @@ -6763,29 +7113,106 @@ msgstr "Innstilling av programtillegg for historiske supernovaar" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Oppdater katalog frå internett" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Oppdater frå internettkjelder" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Oppdateringsfrekvens (dagar):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[informasjon om neste oppdatering]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kvasarar" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6804,11 +7231,11 @@ msgid "Z (redshift): %1" msgstr "Z (raudforskuving): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Programtillegg for kvasarar" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6818,40 +7245,50 @@ "storleik 16. Ein kvasarkatalog utarbeidt frå «Quasars and Active Galactic " "Nuclei» (13. utgåve)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Kvasarar er oppdatert" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Innstillingar for kvasarar" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Innstillingar for programtillegg for kvasarar" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Visningsmodus for kvasarer" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Vis alle kvasarane uten påskrifter" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Aktiver vising av kvasarfordeling" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsarar" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6977,11 +7414,11 @@ "isolert nøytronstjerne med pulser temperert røntgenutslepp men ingen merkbar " "radioutslepp" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Programtillegg for pulsarar" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6992,67 +7429,71 @@ "Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Merk" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "Pulsaridentifikatorer har prefikset «PSR»" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Anerkjennelse" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino Radioastronomiobservatorium" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Nancay Radioastronomiske Observatorie" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "i Frankrike" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsarar er oppdaterte" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Pulsarinnstilling" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Innstilling av programtillegg for pulsarer" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Visingsmodus for pulsarar" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Plott alle pulsarar utan merke" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Slå på vising av pulsar-fordeling" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Eksoplanetar" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7061,71 +7502,71 @@ "Eksoplanetdata er henta frå «Extrasolar Planets Encyclopaedia» på " "exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metallisitet" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Masse" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Radius" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Effektiv temperatur: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Eksoplanet" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Periode" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dagar" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Store halvakse" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AE" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Eksentrisitet" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Helling" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Vinkelavstand" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Oppdagingsår" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Programtillegg for eksoplanetar" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7135,7 +7576,7 @@ "Eksoplanetdata er henta frå «%1The Extrasolar Planets Encyclopaedia%2»" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7144,42 +7585,131 @@ "Viss du vil lese fullstendig informasjon om tillegg, historie og " "katalogformat kan du %1få informasjon her%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Eksoplanetar er oppdaterte" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Innstilling for eksoplanetar" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Innstilling av programtillegg for eksoplanetar" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Oppdater eksoplanetdata fra internett" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Visingsmodus for eksoplanetar" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Plott alle system med eksoplanetar utan merkelappar" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Tillét vising av fordeling for eksoplanetar" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Vis eksoplanetar sia dei vart oppdagne" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Tillét tidslineoppdaging av eksoplanetar" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Observerbarheitsanalyse" @@ -7201,185 +7731,179 @@ "dagane for akronisk og kosmisk oppgang/nedgang.

    Ei forklaring av " "parametra er gitt i fana «Info» i innstillingsvindauget." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Jan." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Apr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Mai" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Jun" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Jul" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Aug" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Sep" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Okt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Des" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "t" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "GÃ¥r ned kl. %1 (om %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Steig opp kl. %1 (%2 sia)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Gjekk ned kl. %1 (%2 sia)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Stig opp kl. %1 (om %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Sirkumpolar." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Ingen oppgang." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Kulminerer kl. %1 (om %2) ved %3 grd." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Kulminerte kl. %1 (%2 siden) ved %3 grd." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Objektet er ikkje observerbart." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Ingen akronisk eller kosmisk oppgang/nedgang." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Største elongasjon: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Største solskilnad: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (ved %1 grd.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Akronisk oppgang/nedgang" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Ingen akronisk oppgang/nedgang." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Kosmisk oppgang/nedgang" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Ingen kosmisk oppgang/nedgang." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Observerbar gjennom hele Ã¥ret." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Ikkje observerbar pÃ¥ mørk natt." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Netter over horisonten: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "I DAG:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "DETTE Ã…RET:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Forrige fullmÃ¥ne: %1 %2 kl. %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Neste fullmÃ¥ne: %1 %2 kl. %3:%4. " @@ -7814,6 +8338,9 @@ #~ msgid "Magnitude Scaling Multiplier: " #~ msgstr "Faktor for forstørring: " +#~ msgid "Nebulas" +#~ msgstr "StjernetÃ¥ker" + #~ msgid "Form" #~ msgstr "Form" @@ -7823,6 +8350,9 @@ #~ msgid "Correct for light travel time: " #~ msgstr "Korriger for lysfart: " +#~ msgid "Nebulas background images" +#~ msgstr "Bakgrunnsbilete for stjernetÃ¥ker" + #~ msgid "Planets labels" #~ msgstr "Planetnamn" @@ -7874,6 +8404,10 @@ #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "Femdobbel formørking frÃ¥ Deimos i 2027" +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "Skjermvernar med ymse hendingar i solsystemet. 171 hendingar i alt!" + #~ msgid ":" #~ msgstr ":" @@ -7893,6 +8427,42 @@ #~ msgid "Magnification provided by this ocular/telescope combination" #~ msgstr "Forstørring som blir tilboden av denne okular/teleskop-kombinasjonen" +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Oppdaterte %1/%2 satellitt(ar); %3 manglar" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Oppdater TLE-lister frÃ¥ internettkjelder" + +#~ msgid "TLE data:" +#~ msgstr "TLE-data:" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Kommaseparert liste av grupper" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORAD - tolinjers elementbanedata" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Eit programtillegg som viser noen historiske supernovaer lysare enn visuell " +#~ "storleik 10: " + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Eit programtillegg som visar nokre historiske supernovaer lysare enn visuell " +#~ "storleik 10." + +#~ msgid "Display mode for quasars" +#~ msgstr "Visningsmodus for kvasarer" + +#~ msgid "Display mode for pulsars" +#~ msgstr "Visingsmodus for pulsarar" + #~ msgid "0 deg." #~ msgstr "0 grd." diff -Nru stellarium-0.12.1/po/stellarium/oc.po stellarium-0.12.4/po/stellarium/oc.po --- stellarium-0.12.1/po/stellarium/oc.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/oc.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-11-04 11:41+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:17+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:52+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ecliptic" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Eqüator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Orizont" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Plan galactic" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor : " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Emplaçament : " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta : " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipe : %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitud : %1 (atudament a : %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitud : %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Talha : %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxia" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Molon dobèrt" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Molon globular" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebulosa planetària" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Molon associat a una nebulositat" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Desconegut" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Tipe pas documentat" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitud absoluta : %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Obliquitat (de la data, per la Tèrra) : %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distància : %1 UA (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distància : %1 UA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diamètre aparent : %1, amb anèls : %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diamètre aparent : %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Periòde sideral : %1 jorns (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Jorn sideral : %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Jorn solar mejan : %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Angle de fasa : %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongacion : %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fasa : %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Illuminacion : %1%" @@ -204,7 +204,7 @@ msgstr "Designacion provisòria : %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnitud aparenta : %1% (per atudament)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitud : %1 (atudament a  : %2 ; B-V : %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitud : %1 (B-V : %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Tipe espectral : %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distància : %1 annadas-lutz" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallax : %1″" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Vaissèl espacial" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autors" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contacte" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licéncia" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data e ora" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Opcions d'afichatge" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Estelas" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/os.po stellarium-0.12.4/po/stellarium/os.po --- stellarium-0.12.1/po/stellarium/os.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/os.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:22+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ossetian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:17+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:52+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/pa.po stellarium-0.12.4/po/stellarium/pa.po --- stellarium-0.12.1/po/stellarium/pa.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/pa.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Punjabi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:17+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:52+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/pl.po stellarium-0.12.4/po/stellarium/pl.po --- stellarium-0.12.1/po/stellarium/pl.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/pl.po 2013-09-23 06:20:13.000000000 +0000 @@ -9,31 +9,31 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-21 00:56+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-17 03:21+0000\n" "Last-Translator: pp/bs \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-21 04:36+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:52+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: SPAIN\n" "X-Poedit-Language: Spanish\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "PoÅ‚udnik niebieski" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptyka" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Równik" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horyzont" @@ -41,47 +41,47 @@ msgid "Galactic Plane" msgstr "PÅ‚aszczyzna Galaktyki" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Lokalizacja: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Typ: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" "Wielkość gwiazdowa: %1 (po uwzglÄ™dnieniu ekstynkcji: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Wielkość gwiazdowa: %1" @@ -91,114 +91,114 @@ msgid "Size: %1" msgstr "Rozmiar: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaktyka" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Gromada otwarta" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Gromada kulista" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "MgÅ‚awica" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "MgÅ‚awica planetarna" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Ciemna mgÅ‚awica" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Gromada powiÄ…zana z obszarem mgÅ‚awicowym" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Nieznany" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Typ nieudokumentowany" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolutna wielkość gwiazdowa: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "OdlegÅ‚ość: %1 j.a. (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "OdlegÅ‚ość: %1 j.a." -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Obserwowana Å›rednica: %1, z pierÅ›cieniami: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Åšrednica widoma: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Okres gwiazdowy: %1 dni (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "DzieÅ„ gwiazdowy: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "KÄ…t fazowy: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongacja: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Faza: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "OÅ›wietlone: %1%" @@ -209,7 +209,7 @@ msgstr "Oznaczenie tymczasowe: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "gwiazda" @@ -225,49 +225,125 @@ msgstr "" "Obserwowana wielkość gwiazdowa: %1 (po uwzglÄ™dnieniu ekstynkcji)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "gwiazda zmienna" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "gwiazda podwójna" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Typ: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" "Wielkość gwiazdowa: %1 (po uwzglÄ™dnieniu ekstynkcji: %2. B-V: " "%3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Wielkość gwiazdowa: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" +"Zakres wielkoÅ›ci gwiazdowej: %1%2%3 (system fotometryczny: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Typ widmowy: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "OdlegÅ‚ość: %1 lat Å›wietlnych" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaksa: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Okres: %1 dni" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Duration of eclipse: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Statek kosmiczny" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "Korekcja jest wyÅ‚Ä…czona. Używaj tylko gdy wiesz co robisz!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -279,7 +355,7 @@ "Confirmed by Ancient Solar Eclipses (%1). WiÄ™cej informacji można " "znaleźć %2tutaj%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -288,7 +364,7 @@ "To empiryczne równanie zostaÅ‚o przedstawione przez G. M. Clemence'a w " "artykule On the system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -301,7 +377,7 @@ "Astronomical Formulae for Calculators. ZostaÅ‚a też przyjÄ™ta w " "programie komputerowym SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -311,7 +387,7 @@ "przyjÄ™ta w Astronomical Ephemeris oraz w Canon of Solar " "Eclipses autorstwa Muckego i Meeusa (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -319,7 +395,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -330,7 +406,7 @@ "artykule The accelerations of the earth and moon from early astronomical " "observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -339,7 +415,7 @@ "To równanie zostaÅ‚o przedstawione przez F. R. Stephensona w artykule Pre-" "Telescopic Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -347,8 +423,13 @@ "Polynomial approximations for the correction delta T E.T.-U.T. in the " "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" +"To równanie wielomianowe 12. stopnia (przestarzaÅ‚e i zastÄ…pione przez " +"Schmadela i Zecha (1988)) zostaÅ‚o przedstawione przez L. D. Schmadela i G. " +"Zecha w artykule Polynomial approximations for the correction delta T " +"E.T.-U.T. in the period 1800-1975 (%1) jako dopasowanie do danych " +"przedstawionych przez Brouwera (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -358,7 +439,7 @@ "to +2800 P. Bretagnona & L. Simona (1986) oraz w programie komputerowym " "RedShift - symulatorze planetarium." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -369,13 +450,13 @@ "artykule Long-term changes in the rotation of the earth - 700 B.C. to " "A.D. 1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" "Ten algorytm jest używany w programie komputerowym Guide 7 - symulatorze " "planetarium." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -385,7 +466,7 @@ "Eclipses: 1986-2035 (1987) oraz w Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -394,7 +475,7 @@ "TÄ™ formuÅ‚Ä™ otrzymaÅ‚ K.M. Borkowski (%1) analizujÄ…c dane dotyczÄ…ce 31 zaćmieÅ„ " "SÅ‚oÅ„ca pomiÄ™dzy 2137 r. p.n.e. i 1715 r. n.e." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -402,8 +483,12 @@ "Period 1800-1988 (%1) as data fit through values given by Stephenson & " "Morrison (1984)." msgstr "" +"To równanie wielomianowe 12. stopnia zostaÅ‚o przedstawione przez L. D. " +"Schmadela i G. Zecha w artykule Empirical Transformations from U.T. to " +"E.T. for the Period 1800-1988 (%1) jako dopasowanie do wartoÅ›ci " +"podanych przez Stephensona i Morrisona (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -413,7 +498,7 @@ "skróconej wersji teorii księżycowej ELP 2000-85 w Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -424,7 +509,7 @@ "Morrisona w artykule Long-Term Fluctuations in the Earth's Rotation: 700 " "BC to AD 1990 (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -433,7 +518,7 @@ "F. R. Stephenson przedstawiÅ‚ tÄ™ formuÅ‚Ä™ w swojej książce Historical " "Eclipses and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -443,14 +528,17 @@ "powszechnie używane. Tabele na lata 1620..2000, a także wariant Chapronta, " "Chapront-Touze i Francou (1997) dla dat poza latami 1620..2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" +"JPL Solar System Dynamics Group, bÄ™dÄ…ca częściÄ… NASA Jet Propulsion " +"Laboratory, używa tego wzoru na swojej interaktywnej stronie WWW %1JPL " +"Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -459,30 +547,40 @@ "Ten wielomian zostaÅ‚ przedstawiony przez J. Meeusa i L. Simonsa w artykule " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" +"Czwarte wydanie książki O. Montenbrucka i T. Pflegera Astronomy on the " +"Personal Computer (2000) podaje proste wielomiany 3. stopnia dopasowane " +"do danych z niedawnej przeszÅ‚oÅ›ci." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " "Calendrical Tabulations (2002). It is based on Jean Meeus' " "Astronomical Algorithms (1991)." msgstr "" +"E. M. Reingold i N. Dershowitz przedstawiajÄ… to dopasowanie wielomianowe w " +"Calendrical Calculations (wyd. 3, 2007) oraz w Calendrical " +"Tabulations (2002). Jest ono oparte na Astronomical Algorithms " +"Jeana Meeusa (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " "in article Historical values of the Earth's clock error %1T and the " "calculation of eclipses (%2) with addendum in (%3)." msgstr "" +"To istotne rozwiÄ…zanie zostaÅ‚o przedstawione przez L. V. Morrisona i F. R. " +"Stephensona w artykule Historical values of the Earth's clock error %1T " +"and the calculation of eclipses (%2) z suplementem w (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -491,7 +589,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -500,12 +598,41 @@ "Solar Eclipses: -1900 to +3000 (2006). This formula is also used in the " "solar, lunar and planetary ephemeris program SOLEX." msgstr "" +"RozwiÄ…zanie F. Espenaka i J. Meeusa, na podstawie: Morrison & Stephenson " +"(2004) oraz wartoÅ›ci tabelarycznych dopasowania wielomianowego dla lat 1600-" +"2000, używane na stronie %1NASA Eclipse Web Site%2 oraz w Five " +"Millennium Canon of Solar Eclipses: -1900 to +3000 (2006). Ta formuÅ‚a " +"jest również używana w programie SOLEX, wyliczajÄ…cym czas zaćmieÅ„ SÅ‚oÅ„ca, " +"Księżyca i planet." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Używane domyÅ›lnie." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"To rozwiÄ…zanie B. Banjevicia, oparte na pracy Stephensona i Morrisona " +"(1984), zostaÅ‚o przedstawione w artykule Ancient eclipses and dating the " +"fall of Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"To rozwiÄ…zanie S. Islama, M. Sadiqa i M. S. Qureshi'ego, oparte na pracy " +"Meeusa & Simonsa (2000), zostaÅ‚o przedstawione w artykule Error " +"Minimization of Polynomial Approximation of DeltaT (%1) i zrewidowane " +"przez SanÄ™ Islama w 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -514,15 +641,15 @@ "To jest równanie kwadratowe do obliczania %1T ze współczynnikami okreÅ›lanymi " "przez użytkownika." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "BÅ‚Ä…d" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "z bezsensownymi wartoÅ›ciami poza tym zakresem" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -530,21 +657,22 @@ "ze Å›rednim bÅ‚Ä™dem poniżej jednej sekundy, maks. bÅ‚Ä™dem 1,9 s i bezsensownymi " "wartoÅ›ciami poza tym zakresem" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "z wartoÅ›ciami zerowymi poza tym zakresem" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "z typowÄ… dokÅ‚adnoÅ›ciÄ… do 1 sekundy i wartoÅ›ciami zerowymi poza tym zakresem" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Dopuszczalny zakres: miÄ™dzy latami %1 a %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Dopuszczalny zakres: miÄ™dzy latami %1 a %2." @@ -715,52 +843,53 @@ msgid "Found" msgstr "Znaleziono" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Wybierz katalog zrzutu ekranu" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "PoczÄ…tkowe pole widzenia: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "PoczÄ…tkowy kierunek widzenia Az/Wys: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autorzy" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licencja" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Uruchomiony skrypt: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Uruchomiony skrypt: [brak]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -768,16 +897,16 @@ "ZakoÅ„czono pobieranie nowych katalogów gwiazd!\n" "Uruchom ponownie Stellarium aby je wyÅ›wietlić." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Zainstalowano wszystkie dostÄ™pne katalogi gwiazd." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Pobierz katalog %1 z %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -786,7 +915,7 @@ "Pobieranie %1...\n" "(Można zamknąć to okno.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -797,7 +926,7 @@ "Liczba gwiazd: %2 mln\n" "Zakres jasnoÅ›ci: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -806,11 +935,11 @@ "BÅ‚Ä…d przy pobieraniu %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Sprawdzanie integralnoÅ›ci pliku..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -820,115 +949,123 @@ "Plik jest uszkodzony." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algorytm" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Bez korekcji" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" -msgstr "" +msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" -msgstr "" +msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomiczne efemerydy (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) i Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller i Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" -msgstr "" +msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel i Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison i Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson i Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson i Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" -msgstr "" +msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" -msgstr "" +msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" -msgstr "" +msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" -msgstr "" +msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" -msgstr "" +msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" -msgstr "" +msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (z Chaprontem, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" -msgstr "" +msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" -msgstr "" +msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" -msgstr "" +msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" -msgstr "" +msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" -msgstr "" +msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" -msgstr "" +msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "WÅ‚asne równanie %1T" @@ -1103,49 +1240,53 @@ msgid "OSX Developer: %1" msgstr "Programista OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Okno konsoli skryptu" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Okna" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Spacja" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Brak opisu" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "WyÅ‚Ä…cz meteory" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normalna intensywność" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Typowa aktywność Perseidów" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Wysoka aktywność Leonidów" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Najwyższa zarejestrowana aktywność (Leonidy, 1966 r.)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nowe poÅ‚ożenie" @@ -1251,19 +1392,19 @@ msgid "starchart" msgstr "mapa nieba" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "BÅ‚Ä…d podczas wyszukiwania w bazie Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Wyszukiwanie w bazie Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Uniwersytet w Strasburgu (Francja)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Uniwersytet Harvarda (USA)" @@ -1279,30 +1420,38 @@ msgid "Alternative shortcut" msgstr "Skrót alternatywny" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "WÅ‚asne równanie dla %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" -msgstr "" +msgstr "Typowe równanie sÅ‚użące do obliczania %1T wyglÄ…da nastÄ™pujÄ…co:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "gdzie" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "rok" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Ten system nie obsÅ‚uguje OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Twoja platforma nie obsÅ‚uguje OpenGL (wymagana jest obsÅ‚uga wersji 1.2 lub " +"nowszej). ProszÄ™ zaktualizować sterowniki karty graficznej." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "SÅ‚oÅ„ce" @@ -1319,12 +1468,12 @@ msgstr "Ziemia" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Księżyc" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1422,7 +1571,7 @@ msgstr "Metys" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1723,193 +1872,222 @@ msgstr "eskimoska" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "wedyjska (Indie)" + +#: src/translations.h:171 msgid "Korean" msgstr "koreaÅ„ska" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "maoryska" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Nawaho" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "nordycka" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "polinezyjska" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "zachodnia" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Drzewa" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Huragan" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Ocean" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "PrzeglÄ…d krajobrazów" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Częściowe zaćmienie Księżyca" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "CaÅ‚kowite zaćmienie Księżyca" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Wygaszacz ekranu" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Zaćmienie SÅ‚oÅ„ca 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Skrypt startowy" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiak" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Trzykrotny wschód i zachód SÅ‚oÅ„ca na Merkurym" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Podwójne zaćmienie z Deimosa w 2017 r." #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Podwójne zaćmienie z Deimosa w 2031 r." #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Zaćmienie z Olympus Mons 10 stycznia 2068 r." #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Zakrycie Ziemi i Jowisza w 2048 r." #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 tranzyty i 2 zaćmienia z Deimosa w 2027 r." #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Wygaszacz ekranu UkÅ‚ad SÅ‚oneczny" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Wycieczka po gwiazdozbiorach" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "SÅ‚oÅ„ce z różnych planet" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Najlepsze widoki Ziemi z innych ciaÅ‚ niebieskich" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Tranzyt Wenus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Wycieczka przedstawiajÄ…ca kultury nieba" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "PrzeglÄ…d wszystkich zainstalowanych krajobrazów." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Spojrzenie na wszystkie kultury nieba." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skrypt demonstrujÄ…cy częściowe zaćmienie Księżyca." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skrypt demonstrujÄ…cy caÅ‚kowite zaćmienie Księżyca." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Powolny niekoÅ„czÄ…cy siÄ™ przeglÄ…d losowo wybranych ciaÅ‚ niebieskich." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1917,11 +2095,11 @@ "Skrypt demonstrujÄ…cy caÅ‚kowite zaćmienie SÅ‚oÅ„ca, które miaÅ‚o miejsce w 2009 " "r. (lokalizacja=Rangpur, Bangladesz)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skrypt uruchamiany automatycznie po starcie programu" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1930,7 +2108,7 @@ "Ten skrypt pokazuje gwiazdozbiory Zodiaku. Leżą one wzdÅ‚uż linii, którÄ… " "SÅ‚oÅ„ce wÄ™druje przez sferÄ™ niebieskÄ… w ciÄ…gu roku." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1939,7 +2117,7 @@ "osi, w pewnych miejscach SÅ‚oÅ„ce wschodzi i zachodzi trzykrotnie w ciÄ…gu " "jednego merkuriaÅ„skiego dnia." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1948,7 +2126,7 @@ "sam wywoÅ‚uje zaćmienie. Zjawisko zachodzi pomiÄ™dzy gwiazdozbiorami Skorpiona " "i Strzelca 26 kwietnia 2017 r." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1957,12 +2135,12 @@ "zaćmiewa go. Zjawisko zachodzi pomiÄ™dzy gwiazdozbiorami Byka i BliźniÄ…t 23 " "lipca 2031 r." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Phobos zaćmiewajÄ…cy SÅ‚oÅ„ce, widziany z Olympus Mons 10 stycznia 2068 r." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1972,7 +2150,7 @@ "Jowisza. Jednakże bardzo rzadko oba te zjawiska wystÄ™pujÄ… tego samego dnia. " "Oto taka sytuacja, majÄ…ca miejsce 23 stycznia 2048 r. PrÄ™dkość rzeczywista." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1988,38 +2166,36 @@ "siÄ™ z Marsa, jest nadal zaćmiony i przyciemniony w cieniu Marsa, by na " "koniec ulec rozjaÅ›nieniu." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Wygaszacz ekranu przedstawiajÄ…cy różne zdarzenia w UkÅ‚adzie SÅ‚onecznym. W " -"sumie 171 zjawisk!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Podróż po gwiazdozbiorach w ukÅ‚adzie wg kultury zachodniej." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" "Spojrzenie na SÅ‚oÅ„ce z dużych planet UkÅ‚adu SÅ‚onecznego oraz z Plutona." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "Najlepsze widoki Ziemi z innych ciaÅ‚ UkÅ‚adu SÅ‚onecznego w XXI wieku." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "Tranzyt Wenus widziany z Sydney (Australia) 6 czerwca 2012 r." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "Demonstracja analemmy - drogi SÅ‚oÅ„ca na niebie w ciÄ…gu roku." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2027,1468 +2203,1504 @@ "BÅ‚ysk supernowej obserwowanej przez Tycho Brahe w 1572 r. Wtyczka Supernowe " "musi być wÅ‚Ä…czona." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andora" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Zjednoczone Emiraty Arabskie" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua i Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Antyle Holenderskie" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktyka" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentyna" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "AmerykaÅ„skie Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbejdżan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "BoÅ›nia i Hercegowina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesz" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgia" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "BuÅ‚garia" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermudy" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Boliwia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazylia" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamy" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Wyspa Bouveta" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "BiaÅ‚oruÅ›" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Wyspy Kokosowe" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Demokratyczna Republika Kongo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Republika ÅšrodkowoafrykaÅ„ska" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republika Kongo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Szwajcaria" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Wybrzeże KoÅ›ci SÅ‚oniowej" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Wyspy Cooka" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Chiny" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolumbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Kostaryka" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbia i Czarnogóra" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Zielony PrzylÄ…dek" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Wyspa Bożego Narodzenia" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Cypr" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Czechy" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Niemcy" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Dżibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Dania" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominika" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Republika Dominikany" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algieria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekwador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egipt" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Sahara Zachodnia" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Erytrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Hiszpania" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlandia" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fidżi" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandy" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronezja" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Wyspy Owcze" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Francja" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Wielka Brytania" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Gruzja" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Gujana Francuska" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grenlandia" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Gwinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Gwadelupa" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Gwinea Równikowa" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grecja" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Georgia PoÅ‚udniowa i Sandwich PoÅ‚udniowy" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Gwatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Gwinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Gujana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hongkong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Wyspy Heard i McDonalda" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Chorwacja" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "WÄ™gry" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonezja" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlandia" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Izrael" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Indie" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Brytyjskie Terytorium Oceanu Indyjskiego" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islandia" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "WÅ‚ochy" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamajka" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordania" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japonia" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodża" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komory" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts i Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "KoreaÅ„ska Republika Ludowo-Demokratyczna" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Republika Korei" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwejt" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kajmany" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazachstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Liban" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litwa" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luksemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Åotwa" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libia" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maroko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "MoÅ‚dawia" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Wyspy Marshalla" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Birma (Myanmar)" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Makau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Mariany Północne" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martynika" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauretania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Malediwy" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Meksyk" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malezja" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nowa Kaledonia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk, Wyspa" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nikaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Holandia" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norwegia" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nowa Zelandia" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinezja Francuska" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua-Nowa Gwinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipiny" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polska" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint-Pierre i Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Portoryko" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Terytoria PalestyÅ„skie" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugalia" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paragwaj" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Katar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Reunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Rumunia" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Federacja Rosyjska" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Arabia Saudyjska" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Wyspy Salomona" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seszele" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Szwecja" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "ÅšwiÄ™ta Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "SÅ‚owenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard i Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "SÅ‚owacja" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Wyspy ÅšwiÄ™tego Tomasza i Książęca" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Salwador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Suazi" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks i Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Czad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Francuskie Terytoria PoÅ‚udniowe i Antarktyczne" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Tajlandia" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadżykistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Timor Wschodni" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunezja" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turcja" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trynidad i Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Tajwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Dalekie Wyspy Mniejsze Stanów Zjednoczonych" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Stany Zjednoczone" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Urugwaj" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Watykan" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent i Grenandyny" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Wenezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Brytyjskie Wyspy Dziewicze" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Wyspy Dziewicze Stanów Zjednoczonych" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Wietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis i Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Majotta" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "JugosÅ‚awia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Republika PoÅ‚udniowej Afryki" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data i godzina" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Dodaj 1 dzieÅ„ gwiazdowy" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Dodaj 1 miesiÄ…c gwiazdowy" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Dodaj 1 tydzieÅ„ gwiazdowy" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Dodaj 1 rok gwiazdowy" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Dodaj 1 stulecie gwiazdowe" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Dodaj 1 dzieÅ„ sÅ‚oneczny" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Dodaj 1 godzinÄ™ sÅ‚onecznÄ…" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Dodaj 1 tydzieÅ„ sÅ‚oneczny" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Dodaj 1 miesiÄ…c synodyczny" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Dodaj 1 miesiÄ…c smoczy" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Dodaj 1 miesiÄ…c anomalistyczny" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Dodaj 1 Å›redni miesiÄ…c zwrotnikowy" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Dodaj 1 rok smoczy" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Dodaj 1 Å›redni rok zwrotnikowy" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Dodaj 1 Å›rednie stulecie zwrotnikowe" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Spowolnij wykonywanie skryptu" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Zmniejsz tempo upÅ‚ywu czasu" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Zmniejsz tempo upÅ‚ywu czasu (nieznacznie)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Przyspiesz wykonywanie skryptu" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "ZwiÄ™ksz tempo upÅ‚ywu czasu" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "ZwiÄ™ksz tempo upÅ‚ywu czasu (nieznacznie)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Wstrzymaj dziaÅ‚anie skryptu" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Wznów dziaÅ‚anie skryptu" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Ustaw czas na chwilÄ™ obecnÄ…" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Ustaw normalnÄ… prÄ™dkość wykonywania skryptu" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Ustaw normalnÄ… prÄ™dkość upÅ‚ywu czasu" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Ustaw prÄ™dkość upÅ‚ywu czasu na zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Zatrzymaj dziaÅ‚anie skryptu" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Odejmij 1 dzieÅ„ gwiazdowy" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Odejmij 1 miesiÄ…c gwiazdowy" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Odejmij 1 tydzieÅ„ gwiazdowy" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Odejmij 1 rok gwiazdowy" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Odejmij 1 stulecie gwiazdowe" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Odejmij 1 dzieÅ„ sÅ‚oneczny" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Odejmij 1 godzinÄ™ sÅ‚onecznÄ…" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Odejmij 1 tydzieÅ„ sÅ‚oneczny" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Odejmij 1 miesiÄ…c synodyczny" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Odejmij 1 miesiÄ…c smoczy" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Odejmij 1 miesiÄ…c anomalistyczny" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Odejmij 1 Å›redni miesiÄ…c zwrotnikowy" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Odejmij 1 rok smoczy" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Odejmij 1 Å›redni rok zwrotnikowy" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Odejmij 1 Å›rednie stulecie zwrotnikowe" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Ustawienia wyÅ›wietlania" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Obróć obraz w poziomie" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Tryb peÅ‚noekranowy" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Siatka azymutalna" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Punkty kardynalne" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Rysunki gwiazdozbiorów" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Granice gwiazdozbiorów" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Nazwy gwiazdozbiorów" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Linie gwiazdozbiorów" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "ZdjÄ™cia mgÅ‚awic" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Siatka ekliptyki J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptyka" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Równik niebieski" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Siatka równikowa" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Siatka równikowa J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "MgÅ‚a" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Siatka współrzÄ™dnych galaktycznych" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "PÅ‚aszczyzna Galaktyki" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Ziemia" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Linia horyzontu" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "PoÅ‚udnik niebieski" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "MgÅ‚awice" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Tryb nocny" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Etykiety planet" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Orbity planet" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Åšlady planet" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Gwiazdy" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Etykiety gwiazd" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Obróć obraz w pionie" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Różne" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Automatyczne ukrywanie poziomego paska przycisków" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Automatyczne ukrywanie pionowego paska przycisków" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Przejdź do punktu poczÄ…tkowego." -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "ZakoÅ„cz" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Skopiuj informacje o wybranym obiekcie do schowka" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Zapisz zrzut ekranu" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "PrzeÅ‚Ä…cz miÄ™dzy montażem paralaktycznym i azymutalnym" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "WÅ‚Ä…czanie/wyÅ‚Ä…czanie wyÅ›wietlania graficznego interfejsu użytkownika" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Przesuwanie i wybór" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "WyÅ›rodkuj na wybranym obiekcie" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Ustaw wybranÄ… planetÄ™ jako planetÄ™ poczÄ…tkowÄ…" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Åšledź obiekt" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Przybliż wybrany obiekt" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Oddal" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Miernik kÄ…tów" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Znaczniki kompasu" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Pokaż egzoplanety" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Okno konfiguracji wtyczki Egzoplanety" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Obserwowalność" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Okno konfiguracji wtyczki Obserwowalność" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Konfiguracja wtyczki Okulary" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Widok w okularze" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Pokaż krzyżyk celownika" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Okienko menu soczewek" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Ramka czujnika obrazu" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Celownik Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Wybierz nastÄ™pny teleskop" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Wybierz nastÄ™pny okular" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Wybierz poprzedni teleskop" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Wybierz poprzedni okular" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Pokaż pulsary" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Okno konfiguracji wtyczki Pulsary" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Pokaż kwazary" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Okno konfiguracji wtyczki Kwazary" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Okno konfiguracji wtyczki Satelity" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Oznaczenia satelitów" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Oznaczenia satelitów" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Okno konfiguracji wtyczki Historyczne supernowe" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Ustaw teleskop na punkt o okreÅ›lonych współrzÄ™dnych" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Pokaż statystyki renderowania." #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skrypty" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Uruchom skrypt krajobrazów z pliku" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Pokaż i przybliż Księżyc" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Okno konfiguracji" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Okno daty/czasu" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Okno pomocy" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Okno lokalizacji" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Okno wyszukiwania" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Okno skrótów" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Okno ustawieÅ„ widoku i nieba" @@ -3514,7 +3726,7 @@ msgstr "OdÅ›wież" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Lokalizacja" @@ -3530,10 +3742,10 @@ msgid "Return to default" msgstr "Powrót do ustawienia domyÅ›lnego" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "UsuÅ„" @@ -3542,7 +3754,7 @@ msgstr "Dodaj do listy" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Szerokość geograficzna:" @@ -3555,12 +3767,12 @@ "dms (stopnie, minuty, sekundy), np. +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "DÅ‚ugość geograficzna:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Wysokość:" @@ -3584,365 +3796,415 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Znajdź obiekt" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Znajdź obiekt lub poÅ‚ożenie" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Używaj klawisza Tab do wybierania spoÅ›ród znalezionych pozycji" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "jotta" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "dzeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "my" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ny" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ypsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Używaj greckich liter w oznaczeniach Bayera" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Obiekt" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "PoÅ‚ożenie" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Niektóre obiekty mogÄ… zostać znalezione dopiero po uaktywnieniu odpowiednich " +"wtyczek." + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "nazwy angielskie" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Szukaj na liÅ›cie..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listy" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Internetowa astronomiczna baza danych SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Rozszerz wyszukiwanie za pomocÄ… SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Serwer:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Opcje wyszukiwania" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "Używaj autouzupeÅ‚niania tylko od poczÄ…tku słów" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Opcje" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "nazwy angielskie" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Szukaj na liÅ›cie..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listy" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Widok" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Niebo" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Znaczniki" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Krajobraz" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Historie gwiazdozbiorów" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etykiety i znaczniki" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planety" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Etykiety i znaczniki obiektów gÅ‚Ä™bokiego nieba (gromady gwiazd, galaktyki i " +"mgÅ‚awice)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planety i satelity" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Pokaż planety" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Pokaż znaczniki planet" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Pokaż orbity planet" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Symuluj prÄ™dkość Å›wiatÅ‚a" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Skaluj obraz Księżyca" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Automatyczna zmiana krajobrazu po zmianie planety" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Automatyczny wybór krajobrazów" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Pokaż atmosferÄ™" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "ZaÅ›wietlenie nieba:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "ciÅ›nienie, temperatura, współczynnik wygaszania" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Ustawienia refrakcji/ekstynkcji..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Skala bezwzglÄ™dna:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Skala wzglÄ™dna:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Jasność Drogi Mlecznej:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Migotanie:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Przygaszaj sÅ‚abe gwiazdy, jeÅ›li widać bardzo jasny obiekt" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamiczna adaptacja oka" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Meteory" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" "Graniczne wielkoÅ›ci gwiazdowe (dla obserwacji nieuzbrojonym okiem/przez " "lornetkÄ™)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Graniczne wielkoÅ›ci gwiazdowe" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Gwiazdy do wielkoÅ›ci gwiazdowej" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Ogranicz jasność gwiazd" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "MgÅ‚awice do wielkoÅ›ci gwiazdowej" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Ogranicz jasność obiektów gÅ‚Ä™bokiego nieba (gromad gwiazd, galaktyk i " +"mgÅ‚awic)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Gwiazdozbiory" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Pokaż linie" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Pokaż etykiety" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Pokaż granice gwiazdozbiorów" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Pokaż rysunki" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Jasność rysunków:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Sfera niebieska" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Pokaż równik niebieski" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Pokaż poÅ‚udnik niebieski" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Pokaż liniÄ™ horyzontu" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Pokaż liniÄ™ ekliptyki" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Pokaż liniÄ™ pÅ‚aszczyzny Galaktyki" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Odwzorowanie" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Dodaj/usuÅ„ krajobrazy..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Pokaż ziemiÄ™" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Pokaż mgÅ‚Ä™" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Użyj powiÄ…zanej planety oraz pozycji" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Użyj tego krajobrazu jako domyÅ›lnego" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Użyj tej kultury nieba jako domyÅ›lnej" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Widoczny" @@ -3997,7 +4259,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Kierunek widzenia ustawiany przy uruchamianiu Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informacje o wybranym obiekcie" @@ -4013,11 +4275,8 @@ msgid "Display no information" msgstr "Nie wyÅ›wietlaj informacji" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Brak" @@ -4161,7 +4420,7 @@ msgstr "sekund" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "PoczÄ…tkowy czas i data" @@ -4174,42 +4433,46 @@ msgid "Other:" msgstr "Inne:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Używaj bieżącej lokalnej daty i czasu" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "użyj bieżącego" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Uruchom Stellarium z datÄ… i godzinÄ… systemowÄ…" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Data i czas systemowy" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" "Ustawia czas symulacji na porÄ™ doby najbliższÄ… porze startu Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Data systemowa:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Korekcja czasu" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Edytuj równanie" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Opcje planetarium" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4217,53 +4480,53 @@ "ZnieksztaÅ‚cenie zwierciadÅ‚a kulistego jest używane przy rzutowaniu obrazu na " "kopuÅ‚Ä™ poprzez zwierciadÅ‚o kuliste. Stosowane w taÅ„szych planetariach." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "ZnieksztaÅ‚cenie zwierciadÅ‚a sferycznego" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Zakryj wszystko poza koÅ‚em w centrum widoku" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "OkrÄ…gÅ‚e pole widzenia" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Po klikniÄ™ciu jednego z gwiazdozbiorów ukryj pozostaÅ‚e" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Wybierz pojedynczy gwiazdozbiór" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Umieszczaj etykiety równolegle do horyzontu" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Kierunek etykiet zgodny z grawitacjÄ…" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "WÅ‚Ä…czanie/wyÅ‚Ä…czanie wyÅ›wietlania tÅ‚a mgÅ‚awicy." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Pokaż przycisk tÅ‚a mgÅ‚awicy." -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" "WÅ‚Ä…czanie/wyÅ‚Ä…czanie wyÅ›wietlanie przycisków odwracania obrazu w pionie i w " "poziomie." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Pokaż przyciski odwracania obrazu" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4271,92 +4534,100 @@ "Klawisz automatycznego oddalania bÄ™dzie również przywracaÅ‚ poczÄ…tkowy " "kierunek patrzenia." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatyczne oddalanie przywraca poczÄ…tkowy kierunek patrzenia" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"WyÅ›wietlaj cienie sÅ‚oneczne na planetach i księżycach (funkcja ta wymaga " +"OpenGL w wersji 2 lub wyższej)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Rysuj cienie sÅ‚oneczne" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Zrzuty ekranu" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Katalog zrzutów ekranu" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Odwróć kolory" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Aktualizacje katalogu gwiazd" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Kliknij tutaj aby rozpocząć pobieranie" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Pobierz ten plik, aby wyÅ›wietlić jeszcze wiÄ™cej gwiazd" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Rozpocznij pobieranie od nowa" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Spróbuj ponownie" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Zatrzymaj pobieranie. Zawsze możesz je wznowić." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Anuluj" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Zamknij okno podczas dziaÅ‚ania skryptu" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Uruchom wybrany skrypt" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Zatrzymaj dziaÅ‚ajÄ…cy skrypt" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "ZaÅ‚aduj przy uruchomieniu programu" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "konfiguruj" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Główne" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informacje" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Nawigacja" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "NarzÄ™dzia" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Wtyczki" @@ -4534,12 +4805,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "WyÅ›wietla podziaÅ‚kÄ™ kompasu wzdÅ‚uż horyzontu" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okulary" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4549,164 +4820,164 @@ "sÄ… jedynie powiÄ™kszenie i pole widzenia). Możliwe jest też wyÅ›wietlanie " "ramki czujnika i celownika Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Wybierz obiekt zanim wÅ‚Ä…czysz widok przez okular." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Poprzedni okular" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&NastÄ™pny okular" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Wybierz &okular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "WÅ‚Ä…cz/wyÅ‚Ä…cz krzyżyk celownika" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Konfiguruj &okulary" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "WÅ‚Ä…cz/wyÅ‚Ä…cz &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "WÅ‚Ä…cz/wyÅ‚Ä…cz &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Poprzednie CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&NastÄ™pne CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Wybierz CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Obróć CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Przywróć pozycjÄ™ sprzed obrotu" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okular nr %1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okular nr %1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Ogniskowa okularu: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Pozorne pole widzenia okularu: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Soczewka nr %1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Soczewka nr %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Soczewka: brak" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop nr %1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Telescope nr %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "PowiÄ™kszenie: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Pole widzenia: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Wymiary: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Czujnik nr %1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Czujnik nr %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "S%oczewka" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&Poprzednia soczewka" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&NastÄ™pna soczewka" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Poprzedni teleskop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&NastÄ™pny teleslop" @@ -4787,67 +5058,72 @@ msgid "Apparent field of view of the ocular" msgstr "Pozorne pole widzenia okularu" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Zwielokrotnienie: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Soczewka: Brak" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Zwielokrotnienie: n.d." -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Zwielokrotnienie soczewek" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Ogniskowa okularu" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Obrót: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "PowiÄ™kszenie przez tÄ™ lornetkÄ™" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Rzeczywiste pole widzenia tej lornetki" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" "PowiÄ™kszenie zapewniane przez tÄ™ kombinacjÄ™: okular/soczewka/teleskop" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Rzeczywiste pole widzenia zapewniane przez tÄ™ kombinacjÄ™: " "okular/soczewka/teleskop" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Wtyczka Okulary" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Wersja" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "PrzeglÄ…d" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4859,7 +5135,7 @@ "teleskopów, jak również sensorów CCD. Podczas pierwszego uruchomienia " "zostanie tutaj umieszczonych kilka przykÅ‚adowych ustawieÅ„." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4877,7 +5153,7 @@ "jest pozostawienie tej opcji wyÅ‚Ä…czonej i wÅ‚Ä…czanie jej tylko wtedy, gdy " "jest to potrzebne." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4888,7 +5164,7 @@ "udaÅ‚o mi siÄ™ jednak tego osiÄ…gnąć, dlatego obecnie jest on wyrównany do " "górnej krawÄ™dzi ekranu." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4901,120 +5177,128 @@ "trzy współosiowe okrÄ™gi: 0.5%1, 2.0%1 i 4.0%1, które odpowiadajÄ… temu, co " "można zobaczyć goÅ‚ym okiem przez celownik Telrad (lub podobny)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" "JeÅ›li natkniesz siÄ™ na jakieÅ› problemy, poinformuj mnie o nich. MiÅ‚ego " "korzystania z programu!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Skróty klawiaturowe" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "Skróty klawiaturowe tej wtyczki można modyfikować na karcie Ogólne." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[nie okreÅ›lono klawisza]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "WÅ‚Ä…cza/wyÅ‚Ä…cza nakÅ‚adkÄ™ okularu." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Otwiera menu nawigacji." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "WÅ‚Ä…czaj tylko wtedy, gdy zaznaczono jakiÅ› obiekt" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Skaluj okrÄ…gÅ‚e pole obrazu" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Przypisanie klawiszy" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "WÅ‚Ä…cz/wyÅ‚Ä…cz widok przez okular:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Otwórz menu nawigacji:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interfejs" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "WyÅ›wietlaj panel sterowania" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Używaj minut i sekund do pomiaru pola widzenia sensora CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Ogólne" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okulary" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Dodaj" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nazwa:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Ogniskowa:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Lornetka" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Soczewki" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Zwielokrotnienie:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5022,74 +5306,75 @@ "WartoÅ›ci zwielokrotnienia >1 wydÅ‚użajÄ… ogniskowÄ… (soczewka Barlowa). " "WartoÅ›ci zwielokrotnienia <1 skracajÄ… ogniskowÄ… (soczewka Shapleya)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Czujniki" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Rozdzielczość x (pikseli):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Rozdzielczość y (pikseli):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Szerokość ukÅ‚adu (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Wysokość ukÅ‚adu (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Åšrednica piksela (w mikronach):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Wysokość piksela (w mikronach):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskopy" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Åšrednica:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Odwrócenie w poziomie" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Odwrócenie w pionie" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Informacje o wtyczce" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelity" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5097,106 +5382,166 @@ "Przewidywanie poÅ‚ożenia sztucznych satelitów Ziemi na podstawie danych NORAD " "TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Stary plik satelites.json nie jest zgodny z bieżącÄ… wersjÄ… programu - " "zostanie użyty plik domyÅ›lny" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "widoczne goÅ‚ym okiem" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "naukowe" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "komunikacyjne" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "nawigacyjne" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amatorskie" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "meteorologiczne" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geostacjonarne" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "niedziaÅ‚ajÄ…ce" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "GPS" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "Iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Kosmiczny Teleskop Hubble'a" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "MiÄ™dzynarodowa Stacja Kosmiczna" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Nr katalogowy" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Oznaczenie miÄ™dzynarodowe" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "sztuczny satelita" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "OdlegÅ‚ość (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Tempo oddalania siÄ™ (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Wysokość (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "WspółrzÄ™dne TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "PrÄ™dkość TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Satelita i obserwator sÄ… w Å›wietle SÅ‚oÅ„ca." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satelita jest widoczny." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Satelita jest w cieniu." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satelita jest niewidoczny." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Wtyczka Satelity do programu Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" "Wtyczka Satelity przewiduje pozycje sztucznych satelitów na orbicie Ziemi." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Uwagi dla użytkowników" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Satelity i ich orbity sÄ… pokazywane tylko wtedy, gdy punkt obserwacji " "znajduje siÄ™ na Ziemi." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5207,7 +5552,7 @@ "odniesienia). Przy bardziej odlegÅ‚ych datach należy siÄ™ spodziewać znacznych " "rozbieżnoÅ›ci." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5217,7 +5562,7 @@ "aktualizować dane TLE." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5229,7 +5574,7 @@ "nazwÄ… %4. Można jÄ… znaleźć w katalogu danych użytkownika, w podkatalogu " "\"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5238,11 +5583,11 @@ "być niepeÅ‚ne lub zawierać bÅ‚Ä™dy." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Aktualizacje danych TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5252,7 +5597,7 @@ "domyÅ›lnymi ustawieniami nowe dane zostanÄ… pobrane jeÅ›li dane istniejÄ…ce sÄ… " "starsze niż 72 godziny. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5263,7 +5608,7 @@ "aktualizacjÄ™ z pliku na swoim komputerze. Plik musi być w takim samym " "formacie jak aktualizacje Celestrak (zob. przykÅ‚ad %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5272,11 +5617,11 @@ "jakiekolwiek dopiski w nawiasach kwadratowych, zostanÄ… one usuniÄ™te przed " "użyciem danych." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Dodawanie nowych satelitów" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5288,18 +5633,18 @@ "Przejdź na kartÄ™ Satelity i kliknij przycisk '+'. Wybierz satelity, które " "chcesz dodać, i naciÅ›nij przycisk \"dodaj\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Uwagi techniczne" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" "PoÅ‚ożenia sÄ… obliczane metodami SGP4 i SDP4, przy użyciu danych TLE NORAD. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5309,24 +5654,26 @@ "report No. 6) " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Szczegóły sÄ… w %1tym dokumencie%2." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "ÅÄ…cza" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5336,31 +5683,34 @@ "wypowiedź wpisz w temacie \"%1\"." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "JeÅ›li masz jakieÅ› pytanie, %1tutaj możesz uzyskać odpowiedź%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "BÅ‚Ä™dy można zgÅ‚aszać %1tutaj%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5369,294 +5719,340 @@ "bÅ‚Ä™dach i ustawić parametr \"severity\" (\"istotność\") na \"wishlist\" " "(\"lista życzeÅ„\")." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Aktualizacje przez Internet wyÅ‚Ä…czone" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Trwa aktualizacja..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "NastÄ™pna aktualizacja: < 1 min." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "NastÄ™pna aktualizacja: %1 min." - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "NastÄ™pna aktualizacja: %1 godz." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Zaktualizuj teraz" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Zaktualizuj z plików" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "BÅ‚Ä…d podczas aktualizowania" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Zaktualizowano %1/%2 satelitów; dodano %3; usuniÄ™to %4" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Zaktualizowane satelity: %1/%2; brak %3" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Zaktualizowano %1/%2 satelitów; dodano %3; brak %4" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[nowe źródÅ‚o]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Zaktualizuj teraz" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Zaktualizuj z plików" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[bÅ‚Ä…d obliczania orbity]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[wszystkie ostatnio dodane]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[żadne nie wyÅ›wietlane]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[wszystkie wyÅ›wietlane]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[wszystkie]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Nowa grupa..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Wybierz plik aktualizacji TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Pobieranie danych..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "Stellarium pobiera aktualne dane satelitów. ProszÄ™ czekać..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Wybierz plik(i) źródÅ‚owy(-e) TLE..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Przetwarzanie danych..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Pobieranie danych nie powiodÅ‚o siÄ™. Spróbuj ponownie później." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Numer katalogowy: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Konfiguracja Satelitów" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Aktualizuj listy TLE przez Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Aktualizacje" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Aktualizuj przez Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Aktualizuj dane satelitów z Internetu" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Ostatnia aktualizacja:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" +"Podczas aktualizacji dodawaj wszystkie nowe satelity z wybranych źródeÅ‚" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Podczas aktualizacji usuwaj satelity, które nie sÄ… już wymienione w źródÅ‚ach" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "CzÄ™stotliwość aktualizacji (godz.):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Podpisy" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Rozmiar czcionki etykiet (w pikselach):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Orbity" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Liczba odcinków używanych do narysowania linii" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Liczba odcinków:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Czas trwania pojedynczego odcinka (w sekundach)" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "DÅ‚ugość odcinka (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Liczba odcinków używanych do rysowania koÅ„ców linii" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "DÅ‚ugość zaniku:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Przywróć ustawienia domyÅ›lne" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Zapisz ustawienia jako domyÅ›lne" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Ustawienia" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Dwukrotnie kliknij satelitÄ™, aby rozpocząć Å›ledzenie go." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Dodaj wiÄ™cej satelitów" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "UsuÅ„ wybrane satelity" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Zapisz zmiany" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Numer katalogowy:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "WyÅ›wietl wybrane satelity" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "WyÅ›wietlane" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "WyÅ›wietlaj orbity wybranych satelitów" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Orbita" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Numer katalogowy:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" +"Nie aktualizuj (ani nie usuwaj podczas aktualizacji) wybranych satelitów." -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Nie aktualizuj" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Opis:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Grupy:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Lista grup, oddzielonych przecinkami" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Dane TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Dwuwierszowe dane elementów orbitalnych NORAD" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "UsuÅ„ wybrane satelity" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Dodaj wiÄ™cej satelitów" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Zapisz zmiany" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Satelity wymienione na wybranych listach źródÅ‚owych bÄ™dÄ… automatycznie " +"dodawane przy kolejnej aktualizacji jeÅ›li jeszcze nie znajdujÄ… siÄ™ w " +"kolekcji." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5664,15 +6060,15 @@ "Wprowadź lub zmieÅ„ adres URL wybranego źródÅ‚a. NaciÅ›niÄ™cie Enter zapisuje " "zmiany." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Dodaj nowe źródÅ‚o" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "UsuÅ„ wybrane źródÅ‚o" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "ŹródÅ‚a" @@ -5708,11 +6104,11 @@ msgid "Discard" msgstr "Porzuć" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Sterowanie teleskopem" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5720,12 +6116,12 @@ "Ta wtyczka umożliwia automatyczne ustawianie teleskopu z montażem sterowanym " "komputerowo (teleskopu z systemem \"GoTo\") na wybrany obiekt." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Ustaw teleskop nr %1 na wybrany obiekt" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -6132,62 +6528,62 @@ "zmianÄ™ sposobu wyÅ›wietlania czasu i daty na pasku dolnym." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "styczeÅ„" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "luty" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "marzec" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "kwiecieÅ„" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "maj" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "czerwiec" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "lipiec" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "sierpieÅ„" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "wrzesieÅ„" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "październik" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "listopad" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "grudzieÅ„" @@ -6347,7 +6743,7 @@ "Te ustawienia wpÅ‚ywajÄ… na sposób wyÅ›wietlania czasu i daty na dolnym pasku." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Format wyÅ›wietlania czasu" @@ -6365,7 +6761,7 @@ msgstr "Format 24-godzinny" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Format wyÅ›wietlania daty" @@ -6381,11 +6777,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-rrrr" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Tekstowy interfejs użytkownika" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6393,144 +6789,144 @@ "Tekstowy interfejs użytkownika (taki jak w wersjach 0.9.x) w postaci " "wtyczki; używany w systemach planetariów." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "CiaÅ‚o UkÅ‚adu SÅ‚onecznego" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Bieżąca data/czas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Ustaw strefÄ™ czasowÄ…" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Ustawienie poczÄ…tkowego czasu/daty" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "systemowy" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "konkretny" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddrrrr" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmrrrr" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "rrrrmmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12-godz." #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24-godz." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "JÄ™zyk" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Pokaż gwiazdy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Kolory" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Nazwy mgÅ‚awic" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Oznaczenia mgÅ‚awic" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Linia pÅ‚aszczyzny Galaktyki" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efekty" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "RÄ™czny zoom" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Mnożnik wielkoÅ›ci gwiazdowej" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intensywność Drogi Mlecznej:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "CzÄ™stość etykiet mgÅ‚awic:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Limit czasu kursora:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Ustawiaj lokalizacjÄ™ po wybraniu krajobrazu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Uruchom skrypt lokalny" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Zatrzymaj skrypt lokalny" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Skrypt na CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administracja" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "ZaÅ‚aduj konfiguracjÄ™ domyÅ›lnÄ…" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Zapisz bieżącÄ… konfiguracjÄ™" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "WyÅ‚Ä…cz" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[brak wÄ™zÅ‚a TUI]" @@ -6566,16 +6962,16 @@ "jej internetowej bazy danych. Prace nad interfejsem wciąż trwajÄ…." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Wyszukaj informacje w %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "W odpowiedzi na zapytanie zostanie zwrócony najwyżej jeden wynik." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6583,7 +6979,7 @@ "Można podawać numery, nazwy (angielskie) lub tymczasowe oznaczenia zarówno " "komet, jak i asteroid." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6772,40 +7168,43 @@ msgid "Solar System" msgstr "UkÅ‚ad SÅ‚oneczny" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Supernowe historyczne" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Wtyczka wyÅ›wietlajÄ…ca niektóre historyczne supernowe jaÅ›niejsze niż 10 " -"obserwowanej wielkoÅ›ci gwiazdowej." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernowa" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Typ supernowej: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Wtyczka Historyczne supernowe" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Wtyczka wyÅ›wietlajÄ…ca niektóre historyczne supernowe jaÅ›niejsze niż 10. " -"obserwowanej wielkoÅ›ci gwiazdowej. " #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Krzywe blasku" @@ -6827,7 +7226,7 @@ msgstr "PodziÄ™kowania" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6842,14 +7241,14 @@ msgstr "Instytut Fizyki Teoretycznej i Eksperymentalnej" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "w Rosji" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6859,8 +7258,9 @@ "formacie katalogu, to %1znajdziesz je tutaj%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "NastÄ™pna aktualizacji: %1 dni" @@ -6878,29 +7278,106 @@ msgstr "Konfiguracja wtyczki Historyczne supernowe" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Zaktualizuj katalog korzystajÄ…c z Internetu" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Aktualizuj przez Internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "CzÄ™stotliwość aktualizacji (dni):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[informacja o nastÄ™pnej aktualizacji]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kwazary" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6919,11 +7396,11 @@ msgid "Z (redshift): %1" msgstr "Z (przesuniÄ™cie ku czerwieni): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Wtyczka Kwazary" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6933,40 +7410,50 @@ "obserwowanej wielkoÅ›ci gwiazdowej. Katalog kwazarów sporzÄ…dzony na podstawie " "\"Quasars and Active Galactic Nuclei\" (wyd. 13)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Zaktualizowano kwazary" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Konfiguracja Kwazarów" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Konfiguracja wtyczki Kwazary" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Tryb wyÅ›wietlania kwazarów" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Ustawienia kwazarów" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Rysuj wszystkie kwazary bez etykiet" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "WÅ‚Ä…cz wyÅ›wietlanie rozkÅ‚adu kwazarów" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "WÅ‚Ä…cz wyÅ›wietlanie przy uruchomieniu programu" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Pokaż przycisk kwazarów na pasku narzÄ™dzi" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsary" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7094,11 +7581,11 @@ "izolowana gwiazda neutronowa z emisjÄ… impulsów cieplnego promieniowania " "rentgenowskiego, lecz bez wykrywalnej emisji radiowej" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Wtyczka Pulsary" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7109,67 +7596,71 @@ "Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Uwaga" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "oznaczenia pulsarów zaczynajÄ… siÄ™ od liter \"PSR\"" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "PodziÄ™kowanie" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "PuszczyÅ„skie Obserwatorium Radioastronomiczne" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Obserwatorium Radioastronomiczne w Nancay" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "we Francji" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulsary zaktualizowane" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Konfiguracja Pulsarów" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Konfiguracja wtyczki Pulsary" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Tryb wyÅ›wietlania pulsarów" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Ustawienia pulsarów" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Rysuj wszystkie pulsary bez etykiet" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "WÅ‚Ä…cz wyÅ›wietlanie rozkÅ‚adu pulsarów" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Pokaż przycisk pulsarów na pasku narzÄ™dzi" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Egzoplanety" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7178,71 +7669,71 @@ "pochodzÄ… z \"Encyklopedii PozasÅ‚onecznych UkÅ‚adów Planetarnych\" dostÄ™pnej " "pod adresem exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Zawartość metali" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Masa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "PromieÅ„" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Temperatura efektywna: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Egzoplaneta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Okres orbitalny" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dni" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "PółoÅ› wielka" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "J.A." -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "MimoÅ›ród" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Nachylenie" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "OdlegÅ‚ość kÄ…towa" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Rok odkrycia" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Wtyczka Egzoplanety" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7252,7 +7743,7 @@ "pochodzÄ… ze strony \"%1The Extrasolar Planets Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7261,42 +7752,132 @@ "PeÅ‚ne informacje na temat wtyczki, jej historii i formatu katalogu można " "znaleźć %1tutaj%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "Ogólne profesjonalne strony WWW na temat planet pozasÅ‚onecznych" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Egzoplanety: interaktywna wersja XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Egzoplanety w ukÅ‚adach podwójnych i wielokrotnych (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" +"Niektórzy astronomowie i grupy zajmujÄ…ce siÄ™ badaniem planet pozasÅ‚onecznych" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "aktualizacji: 16 kwietnia 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Zaktualizowano egzoplanety" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Konfiguracja Egzoplanet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Konfiguracja wtyczki Egzoplanety" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Aktualizuj dane na temat egzoplanet z Internetu" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Tryb wyÅ›wietlania egzoplanet" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Ustawienia egzoplanet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Rysuj wszystkie ukÅ‚ady z egzoplanetami bez etykiet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "WÅ‚Ä…cz wyÅ›wietlanie rozkÅ‚adu dla egzoplanet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "WyÅ›wietlaj egzoplanety od momentu ich odkrycia" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "WÅ‚Ä…cz odkrywanie egzoplanet zgodnie z osiÄ… czasu" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Pokaż przycisk egzoplanet na pasku narzÄ™dzi" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Analiza obserwowalnoÅ›ci" @@ -7312,185 +7893,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Sty" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Lut" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Kwi" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Maj" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Cze" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Lip" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Sie" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Wrz" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Paź" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Lis" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Gru" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Zachodzi o %1 (za %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "WzeszÅ‚o o %1 (%2 temu)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "ZaszÅ‚o o %1 (%2 temu)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Wschodzi o %1 (za %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "OkoÅ‚obiegunowy." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Nie wschodzi." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Obserwacja źródÅ‚a jest niemożliwa." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "NajwiÄ™ksza elongacja: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Akroniczny wschód/zachód" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Obserwowalne przez caÅ‚y rok." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Nieobserwowalne w czasie ciemnych nocy." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Noce nad horyzontem: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "DZISIAJ:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "TEGO ROKU:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Poprzednia peÅ‚nia Księżyca: %1 %2 o %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "NastÄ™pna peÅ‚nia Księżyca: %1 %2 o %3:%4. " @@ -7829,6 +8404,9 @@ #~ msgid "Art brightness: " #~ msgstr "Jasność rysunków: " +#~ msgid "Nebulas" +#~ msgstr "MgÅ‚awice" + #~ msgid "10" #~ msgstr "10" @@ -7943,6 +8521,9 @@ #~ msgid "When a Script is Running" #~ msgstr "Podczas wykonywania skryptu" +#~ msgid "Nebulas background images" +#~ msgstr "ZdjÄ™cia mgÅ‚awic" + #~ msgid "Preset Time" #~ msgstr "Czas ustawiony" @@ -7985,6 +8566,13 @@ #~ "Pomoc techniczna jest zapewniana poprzez stronÄ™ WWW Launchpad. WysyÅ‚ajÄ…c " #~ "zapytanie koniecznie wpisz w polu tematu \"Satellites plugin\"." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Zaktualizowane satelity: %1/%2; brak %3" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Lista grup, oddzielonych przecinkami" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -8000,6 +8588,15 @@ #~ "sierpnia), SN 1895B (5 lipca), SN 1937C (21 sierpnia), SN 1972E (8 maja), SN " #~ "1987A (24 lutego) oraz SN 2011FE (13 wrzeÅ›nia)." +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Aktualizuj listy TLE przez Internet" + +#~ msgid "TLE data:" +#~ msgstr "Dane TLE:" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Dwuwierszowe dane elementów orbitalnych NORAD" + #~ msgid "Crosshairs" #~ msgstr "Krzyżyk celownika" @@ -8074,6 +8671,19 @@ #~ msgid "Additional info (Extra 3)" #~ msgstr "Dodatkowa informacja (Extra 3)" +#~ msgid "Display mode for pulsars" +#~ msgstr "Tryb wyÅ›wietlania pulsarów" + +#~ msgid "Display mode for quasars" +#~ msgstr "Tryb wyÅ›wietlania kwazarów" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Wtyczka wyÅ›wietlajÄ…ca niektóre historyczne supernowe jaÅ›niejsze niż 10 " +#~ "obserwowanej wielkoÅ›ci gwiazdowej." + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "PiÄ™ciokrotne zaćmienie z Deimosa w 2027 r." @@ -8100,10 +8710,23 @@ #~ "RozbÅ‚ysk supernowej obserwowany przez Tycho Brahe w 1572 r. Demonstracje " #~ "wymagajÄ… wÅ‚Ä…czenia wtyczki pokazujÄ…cej supernowe." +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Wtyczka wyÅ›wietlajÄ…ca niektóre historyczne supernowe jaÅ›niejsze niż 10. " +#~ "obserwowanej wielkoÅ›ci gwiazdowej. " + #~ msgid "Phobos Eclipses the sun as seen from Olympus Mons Jan 10, 2068." #~ msgstr "" #~ "Zaćmienie SÅ‚oÅ„ca przez Phobosa widziane z Olympus Mons 10 stycznia 2068 r." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Wygaszacz ekranu przedstawiajÄ…cy różne zdarzenia w UkÅ‚adzie SÅ‚onecznym. W " +#~ "sumie 171 zjawisk!" + #~ msgid "A tour via western constellations." #~ msgstr "Wycieczka przez zachodnie gwiazdozbiory." diff -Nru stellarium-0.12.1/po/stellarium/pt.po stellarium-0.12.4/po/stellarium/pt.po --- stellarium-0.12.1/po/stellarium/pt.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/pt.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-03-19 15:12+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-11 08:39+0000\n" "Last-Translator: Tiago S. \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-12 04:52+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" -msgstr "Meridiano" +msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" -msgstr "Eclíptica" +msgstr "Elíptica" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Equador" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizonte" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Plano galáctico" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Localização: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipo: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitude: %1 (extincto para: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitude: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Tamanho: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galáxia" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" -msgstr "Enxame aberto" +msgstr "Aglom. Aberto" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Enxame globular" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebulosa Planetária" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Nebulosa Escura" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Enxame associado a nebulosidade" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Desconhecido" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Tipo não documentado" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitude Absoluta: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Eclíptica/Topocêntrica (da data): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Obliquidade (da data, para a Terra): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distância: %1 UA (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distância: %1UA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diâmetro aparente: %1, com anéis: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diâmetro aparente: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Período sideral: %1 dias (%2 anos julianos)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Dia sideral: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Dia solar médio: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Ângulo de fase: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongação: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Iluminado: %1%" @@ -204,7 +204,7 @@ msgstr "Denominação provisória: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "estrela" @@ -219,49 +219,125 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnitude aparente: %1 (por extincção)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "estrela variável eruptiva" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "estrela variável pulsante" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "estrela variável rotativa" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "estrela variável cataclísmica" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "sistema binário eclipsante" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "estrela variável" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "estrela dupla" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Tipo: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitude: %1 (extincto para: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitude: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Alcance da magnitude: %1%2%3 (sistema fotométrico: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" +"Alcance da magnitude: %1%2%3/%4 (sistema fotométrico: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Tipo Espectral: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distância: %1 Anos-Luz" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaxe: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Época de luminosidade mínima: %1 dias julianos" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Época de luminosidade máxima: %1 dias julianos" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Período: %1 dias" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Próxima iluminação mínima: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Próxima iluminação máxima: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Duração do eclipse: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Tempo de ascensão: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Espaçonave" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "A correção de tempo está desactivada. Utilize esta opção somente tiver a " "certeza!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -273,7 +349,7 @@ "Ancient Solar Eclipses (%1). Informações adicionais podem ser obtidas " "%2aqui%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -282,7 +358,7 @@ "Esta equação empírica foi publicada por G. M. Clemence no artigo On the " "system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -295,7 +371,7 @@ "Jean Meeus nas suas Astronomical Formulae for Calculators. Também " "foi adoptada no programa para computador SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -305,7 +381,7 @@ "adoptada nas Astronomical Ephemerides e no Canon of Solar " "Eclipses por Mucke e Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -317,7 +393,7 @@ "mesma relação também foi implicitamente adoptada nas tabelas de conjunção de " "Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -328,7 +404,7 @@ "The accelerations of the earth and moon from early astronomical " "observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -337,7 +413,7 @@ "Esta equação foi publicada por F. R. Stephenson no artigo Pre-Telescopic " "Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -351,7 +427,7 @@ "period 1800-1975 (%1) como adaptação por meio de informações publicadas " "por Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -361,7 +437,7 @@ "to +2800 (1986) de P. Bretagnon e L. Simon (1986) e no programa de " "planetário para computador RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -372,12 +448,12 @@ "Long-term changes in the rotation of the earth - 700 B.C. to A.D. " "1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" "Este algoritmo é utilizado no programa de planetário para computador Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -387,7 +463,7 @@ "Solar Eclipses: 1986-2035 (1987) e no seu Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -397,7 +473,7 @@ "registros de trinta e um eclipses solares, datados entre 2137 a.C. e 1715 " "d.C." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -410,7 +486,7 @@ "for the Period 1800-1988 (%1) como uma adaptação de informações por " "meio dos valores oferecidos por Stephenson e Morrison (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -420,7 +496,7 @@ "abreviada da teoria lunar ELP 2000-85 nas suas Lunar Tables and Programs " "from 4000 B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -431,7 +507,7 @@ "Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD 1990 " "(%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -440,7 +516,7 @@ "F. R. Stephenson publicou esta fórmula no seu livro Historical Eclipses " "and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -451,7 +527,7 @@ "variante de Chapront, Chapront-Touze e Francou (1997) para datas fora do " "período 1620-2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -460,7 +536,7 @@ "O JPL Solar System Dynamics Group do Laboratório de Propulsão a Jato da NASA " "utiliza esta fórmula no seu website interativo %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -469,7 +545,7 @@ "Este polinómio foi publicado por J. Meeus e L. Simons no artigo " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -479,7 +555,7 @@ "Montenbruck e T. Pfleger, oferece adaptações de dados polinomiais de " "terceira ordem simples para o passado recente." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -491,7 +567,7 @@ "Calendrical Tabulations (2002). Foram baseadas em Astronomical " "Algorithms (1991), de Jean Meeus." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -502,7 +578,7 @@ "no artigo Historical values of the Earth's clock error %1T and the " "calculation of eclipses (%2) com um adendo em (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -516,7 +592,7 @@ "fundamentada numa possível periodicidade descrita por Stephenson (%2). " "Informações adicionais podem ser obtidas %3aqui%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -532,11 +608,34 @@ "(2006). Esta fórmula também é empregada no SOLEX, um programa de efemérides " "solares, lunares e planetárias." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Utilizada por padrão." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"

    Esta solução de B. Banjevic, baseada em Stephenson e " +"Morrison (1984), foi publicada no artigo Ancient eclipses and dating the " +"fall of Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"

    Esta solução de S. Islam, M. Sadiq e M. S. Qureshi, " +"baseada em Meeus e Simons (2000), foi publicada no artigo Error " +"Minimization of Polynomial Approximation of DeltaT (%1) e foi revistada " +"por Sana Islam em 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -545,15 +644,15 @@ "Esta é uma fórmula quadrática para calcular o %1T com coeficientes definidos " "pelo utilizador." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Erro" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "com valores insignificantes fora desse período" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -561,22 +660,23 @@ "com um erro médio de menos de 1 segundo, um erro máximo de 1,9 segundos, e " "valores insignificantes fora desse período" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "com valores não mensuráveis fora desse período" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "com uma precisão característica de 1 segundo e valores não mensuráveis fora " "desse período" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Período de utilização válido: entre os anos de %1 e %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Período de utilização válido: entre os anos de %1 e %2." @@ -745,52 +845,53 @@ msgid "Found" msgstr "Encontrado" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Seleccione o directório para as capturas do ecrã" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "FOV Inicial: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Direcção inicial de visualização Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autores" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contacto" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licença" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "A executar \"script\": " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "A executar \"script\": [nenhum]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -798,16 +899,16 @@ "Terminou a transferência de novos catálogos!\n" "Reinicie o Stellarium para exibir as estrelas." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Todos os catálogos estelares disponíveis foram instalados." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Obter catálogo %1 de %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -816,7 +917,7 @@ "Transferindo %1...\n" "(Pode fechar esta janela.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -827,7 +928,7 @@ "Estrelas: %2 Milhões\n" "Magnitude: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -836,11 +937,11 @@ "Erro ao transferir %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "A verificar a integridade dos ficheiros..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -850,115 +951,123 @@ "O ficheiro está danificado." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritmo do" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Sem correção" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) e Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq e Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Equação personalizada do %1T" @@ -1130,49 +1239,53 @@ msgid "OSX Developer: %1" msgstr "Programador OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Janela da consola do \"script\"" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Janelas" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Espaço" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Sem descrição" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Sem estrelas cadentes" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Frequência normal" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Frequência normal das Perseidas" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Taxa de chuva de meteoros" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" -msgstr "Frequência excepcional das Leónidas" +msgstr "Taxa de Leônidâs excepcionais" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Frequência mais elevada (Leónidas de 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nova Localização" @@ -1193,7 +1306,7 @@ #: src/gui/AddRemoveLandscapesDialog.cpp:133 #: src/gui/AddRemoveLandscapesDialog.cpp:160 msgid "Success" -msgstr "Successo" +msgstr "Concluída com êxito" #: src/gui/AddRemoveLandscapesDialog.cpp:146 #: src/gui/AddRemoveLandscapesDialog.cpp:216 @@ -1277,19 +1390,19 @@ msgid "starchart" msgstr "carta celeste" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Erro de pesquisa no Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Pesquisa no Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universidade de Estrasburgo (França)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Universidade de Harvard (EUA)" @@ -1305,30 +1418,38 @@ msgid "Alternative shortcut" msgstr "Atalho alternativo" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Equação personalizada para o %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Uma equação típica para o cálculo do %1T deve parecer-se com:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "onde" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "ano" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Este sistema não suporta OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"A sua plataforma não suporta o requisito mínimo OpenGL 1.2. Por favor, " +"actualize os drivers da placa de vídeo." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sol" @@ -1345,12 +1466,12 @@ msgstr "Terra" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Lua" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marte" @@ -1448,7 +1569,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturno" @@ -1746,194 +1867,223 @@ msgstr "Inuíte" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Vedico Indiano" + +#: src/translations.h:171 msgid "Korean" msgstr "Coreano" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Nórdico" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinésio" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tonganesa" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Ocidental" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guéreins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Ãrvores" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Oceano" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Visita Guiada" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Eclipse Parcial Lunar" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Eclipse Total Lunar" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Proteção de ecrã" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Eclipse Solar 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Script de Arranque" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodíaco" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Nascer e pôr do Sol mercuriano triplo" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Eclipse Duplo de Deimos em 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Eclipse Duplo de Deimos em 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Eclipse do Monte Olimpo em Jan 10 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Ocultação da Terra e de Júpiter em 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "Três trânsitos e dois eclipses de Deimos em 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Protetor de Ecrã com o Sistema Solar" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Excursão pelas Constelações" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "O Sol visto de diferentes planetas" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "As melhores vistas da Terra a partir de outros corpos celestes" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Trânsito de Vénus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analema" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" -msgstr "" +msgstr "Excursão pelas culturas do céu" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Eventos da Terra a partir de Mercúrio" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Eventos da Terra a partir de Vénus" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Eventos da Terra a partir de Marte" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Maiores elongações e brilhos da Terra a partir de Marte" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Maiores elongações da Terra e de Marte a partir de Júpiter" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Visualizar cada uma das paisagens instaladas." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." -msgstr "" +msgstr "Observar cada cultura do céu instalada" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Demonstração um eclipse lunar parcial." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Demonstração de um eclipse lunar total." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" "Uma excursão lenta e infinita pelo céu, olhando para objetos aleatórios." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1941,11 +2091,11 @@ "Demonstração de um eclipse solar total que ocorreu em 2009 (local: Rangpur, " "no Bangladeche)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Esta apresentação é executada automaticamente ao iniciar." -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1955,7 +2105,7 @@ "constelações que se encontram ao longo da linha que o Sol percorre na esfera " "celeste no decorrer de um ano." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1964,7 +2114,7 @@ "pontos, o Sol nascerá e pôr-se-á em três diferentes horários num dia " "mercuriano." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1972,7 +2122,7 @@ "Pouco antes de Marte eclipsar o Sol, Fobos sai de trás e o eclipsa primeiro. " "Ocorre entre Escorpião e Sagitário em 26 de abril de 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1980,13 +2130,13 @@ "Pouco antes de Marte eclipsar o Sol, Fobos sai de trás e o eclipsa primeiro. " "Ocorre entre Touro e Gêmeos em 23 de julho de 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Fobos eclipsa o Sol, como seria visto do Monte Olimpo, em 10 de janeiro de " "2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1996,7 +2146,7 @@ "Júpiter. Entretanto, as ocultações de ambos os planetas no mesmo dia são " "muito raras. Eis uma que ocorre em 23 de janeiro de 2048, em velocidade real." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2012,35 +2162,35 @@ "Quando Fobos emerge de Marte, ele ainda está eclipsado e escurecido na " "sombra de Marte, ficando iluminado apenas mais tarde." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Protector de ecrã com vários acontecimentos do sistema solar. São 171 " -"eventos no total!" +"Protecção de ecrã com vários acontecimentos no sistema solar. Ao todo são " +"187 eventos!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Uma excursão pelas constelações ocidentais." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" "Olhe para o Sol a partir de grandes planetas do sistema solar e de Plutão." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "As melhores vistas da Terra a partir de outros corpos celestes no século XXI." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "O trânsito de Vénus, como o visto de Sidney, Austrália, em 06 de junho de " "2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." @@ -2048,7 +2198,7 @@ "Demonstração do analema – o caminho que o Sol percorre no céu no decorrer do " "ano." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2056,1469 +2206,1508 @@ "Lampejo da supernova que foi observada por Tycho Brahe no ano de 1572. O " "complemento de Supernovas deve estar activado." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" +"Maiores elongações e brilhos da Terra a partir de Marte, do ano 2000 ao ano " +"3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" +"Maiores elongações da Terra a partir de Júpiter, do ano 2000 ao ano 3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Emirados Ãrabes Unidos" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afeganistão" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antígua e Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguila" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albânia" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Arménia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Antilhas Neerlandesas" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antárctida" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa Americana" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Ãustria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Austrália" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaijão" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bósnia e Herzegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Bélgica" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgária" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermudas" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolívia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Butão" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Ilha Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botsuana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Bielorrússia" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canadá" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Ilhas Cocos" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "República Democrática do Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "República Centro-Africana" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "República do Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Suíça" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Costa do Marfim" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Ilhas Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Camarões" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colômbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Sérvia e Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Cabo Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Ilha do Natal" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Chipre" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "República Checa" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Alemanha" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Dinamarca" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "República Dominicana" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Argélia" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Equador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estónia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egipto" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Sahara Ocidental" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritreia" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Espanha" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiópia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlândia" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Ilhas Falkland" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronésia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Ilhas Faroé" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "França" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabão" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Reino Unido" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Granada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Geórgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guiana Francesa" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Gana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Gronelândia" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gâmbia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guiné" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadalupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Guiné Equatorial" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grécia" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Geórgia do Sul e Ilhas Sandwich do Sul" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guiné-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guiana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Ilha Heard e Ilhas McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Croácia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hungria" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonésia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlanda" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Ãndia" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Território Britânico do Oceano Ãndico" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Iraque" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Irão" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islândia" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Itália" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordânia" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japão" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Quénia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Quirguistão" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Camboja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Quiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comores" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "São Cristóvão e Neves" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "República Democrática Popular da Coreia" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "República da Coreia" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Koweit" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Ilhas Caimão" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Cazaquistão" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Líbano" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Santa Lúcia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Libéria" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesoto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lituânia" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburgo" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Letónia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Líbia" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marrocos" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Mónaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldávia" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagáscar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Ilhas Marshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedónia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongólia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Ilhas Marianas do Norte" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinica" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritânia" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Maurício" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldivas" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "México" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malásia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Moçambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namíbia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nova Caledónia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Níger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Ilha Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigéria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicarágua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Países Baixos" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Noruega" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nova Zelândia" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Omã" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panamá" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinésia Francesa" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua-Nova Guiné" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipinas" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Paquistão" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polónia" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "São Pedro e Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Porto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Territórios Palestinianos" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguai" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Reunião" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Roménia" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Sérvia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Federação Russa" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Arábia Saudita" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Ilhas Salomão" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seicheles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudão" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Suécia" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapura" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Santa Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Eslovénia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard e Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Eslováquia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Serra Leoa" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somália" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "São Tomé e Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "República Ãrabe da Síria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Suazilândia" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Ilhas Turks e Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Chade" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Territórios Franceses do Sul" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Tailândia" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tajiquistão" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Timor-Leste" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turcomenistão" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunísia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turquia" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad e Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzânia" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ucrânia" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Ilhas Menores Distantes dos Estados Unidos" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Estados Unidos" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguai" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbequistão" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Estado da Cidade do Vaticano" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "São Vicente e Granadinas" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Ilhas Virgens Britânicas" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Ilhas Virgens dos Estados Unidos da América" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietname" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis e Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Iémen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoslávia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Ãfrica do Sul" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zâmbia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data e Hora" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Adicionar 1 dia sideral" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Avançar um mês sideral" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Adicionar 1 semana sideral" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Avançar um ano sideral" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Avançar um século sideral" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Adicionar 1 dia solar" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Adicionar 1 hora solar" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Adicionar 1 semana solar" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Avançar um mês sinódico" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Avançar um mês draconiano" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Avançar um mês anomalístico" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Avançar um mês trópico médio" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Avançar um ano draconiano" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Avançar um ano trópico médio" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Avançar um século trópico médio" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Reduzir a velocidade de execução do \"script\"" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Diminuir a velocidade do tempo" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Diminuir a velocidade do tempo (um pouco)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Aumentar a velocidade de execução do \"script\"" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Aumentar a velocidade do tempo" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Aumentar a velocidade do tempo (um pouco)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pausar a execução de apresentações" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Retomar a execução de apresentações" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Definir a hora actual" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Velocidade normal de execução do \"script\"" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Velocidade do tempo normal" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Velocidade do tempo: zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Parar a execução de apresentações" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Retirar 1 dia sideral" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Retroceder um mês sideral" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Retirar 1 semana sideral" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Retroceder um ano sideral" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Retroceder um século sideral" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Retirar 1 dia solar" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Retirar 1 hora solar" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Retirar 1 semana solar" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Retroceder um mês sinódico" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Retroceder um mês draconiano" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Retroceder um mês anomalístico" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Retroceder um mês trópico médio" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Retroceder um ano draconiano" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Retroceder um ano trópico médio" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Retroceder um século trópico médio" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Opções de Exibição" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Inverter horizontalmente" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Modo de ecrã completo" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Grelha azimutal" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Pontos cardeais" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Arte da constelação" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Limites de constelação" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Campos da constelação" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Linhas da constelação" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Imagens de fundo das nebulas" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Imagens de fundo do céu profundo" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Grade eclíptica J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Linha eclítica" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Linha do equador" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Grelha Equatorial" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Grelha equatorial J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Nevoeiro" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Grelha galáctica" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Plano galáctico" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Superfície" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Linha do horizonte" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Linha do meridiano" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Objectos do céu profundo" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Modo nocturno" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Identificações dos planetas" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Órbitas planetárias" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Rastos dos planetas" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Estrelas" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Rótulos das estrelas" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Inverter verticalmente" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Diversos" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Ocultar automaticamente barra de botões horizontal" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Ocultar automaticamente barra de botões vertical" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Voltar para o lugar de origem" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Fechar" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" "Copiar a informação do objeto selecionado para a área de transferência" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Gravar captura de ecrã" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Trocar entre equatorial e azimutal" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Alternar a visibilidade da interface gráfica" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Movimentação e Selecção" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centrar no objecto seleccionado" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Definir o planeta seleccionado como base" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Acompanhar objecto" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Ampliar no objecto seleccionado" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Reduzir" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Medição do ângulo" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Marcas de compasso" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Exibir exoplanetas" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Janela de configuração de exoplanetas" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observabilidade" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Janela de configuração de observabilidade" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Configuração do complemento de oculares" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Visualização ocular" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Exibir retículos" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Menu de pop-up das oculares" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Moldura do sensor de imagem" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Mira Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Seleccionar o telescópio seguinte" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Seleccionar a ócular seguinte" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Seleccionar o telescópio anterior" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Seleccionar a ócular anterior" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Mostrar pulsares" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Janela de configuração de pulsares" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Mostrar quasares" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Janela de configuração de quasares" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Janela de configuração do satélite" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Ajuda dos satélites" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Campos do satélite" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Janela de configuração de Supernovas históricas" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Janela de configuração de Novas Brilhantes" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Mover o telescópio para as coordenadas especificadas" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Mostrar estatísticas do renderizador" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "\"Scripts\"" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Executar apresentação de paisagens a partir de um ficheiro" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Exibir e ampliar a Lua" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Janela de configuração" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Janela de data/hora" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Janela de ajuda" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Janela de localização" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Janela de pesquisa" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Janela de atalhos" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Céu e a ver a janela de opções" @@ -3544,7 +3733,7 @@ msgstr "Actualizar" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Localização" @@ -3560,10 +3749,10 @@ msgid "Return to default" msgstr "Voltar ao padrão" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Apagar" @@ -3572,7 +3761,7 @@ msgstr "Adicionar à lista" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitude:" @@ -3585,12 +3774,12 @@ "12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitude:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitude:" @@ -3614,365 +3803,415 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Procurar Objecto" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Localizar Objecto ou Posição" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Use TAB para selecionar objetos localizados" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gama" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "épsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "ómicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "ómega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Letras gregas para as designações de Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objeto" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posição" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Alguns objetos podem ser encontrados após a activação dos respectivos " +"complementos" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "Nomes em inglês" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Procurar na lista…" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listas" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Banco de dados astronómicos na rede SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Ampliar a pesquisa com o SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Servidor:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Opções de busca" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "Use autopreenchimento apenas no início das palavras" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Opções" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "Nomes em inglês" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Procurar na lista…" - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listas" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Ver" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Céu" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Marcadores" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Paisagem" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Mitologia" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etiquetas e Marcadores" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planetas" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Rótulos e marcadores de objetos do céu profundo (aglomerados estelares, " +"galáxias e nebulosas)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "OCPs" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planetas e satélites" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Mostrar planetas" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Mostrar marcadores dos planetas" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Mostrar órbitas dos planetas" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simular velocidade luz" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Ver a Lua à escala" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Troca automática de paisagem quando mudar o planeta" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Selecionar paisagem automaticamente" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Mostrar a atmosfera" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Poluição luminosa:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "Pressão, temperatura, coeficiente de extinção" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Configurações de refração/extinção..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Escala absoluta:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Escala relativa:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Brilho da Via Láctea:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Cintilação:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Diminuir intensidade das estrelas quando um objecto muito brilhante está " "visível" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adaptação dinâmica do olho" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Estrelas Cadentes" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Taxa horária zenital" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "THZ:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Limitar as magnitudes (para observadores a olho nú/com binóculo)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Limitar as Magnitudes" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Estrelas para a magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Limita a magnitude das estrelas" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Nebulosas para a magnitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Limita a magnitude dos objetos do céu profundo (aglomerados estelares, " +"galáxias e nebulosas)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Constelações" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Mostrar linhas" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Mostrar o texto" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Mostrar limites" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Mostrar arte" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Brilho das imagens:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Esfera Celestial" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Mostrar linha do Equador" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Mostrar linha meridiana" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Mostrar linha do horizonte" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Mostrar linha eclíptica" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Mostrar linha do plano galáctico" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projecção" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Adicionar/remover paisagens..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Mostrar superfície" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Mostrar neoeiro" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Utilizar o planeta e posição associados" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Utilizar esta paisagem como padrão" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Utilizar as configurações de luminosidade para paisagens" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Utilizar esta cultura como padrão" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visível" @@ -4027,7 +4266,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "A direcção em que está a olhar ao iniciar o Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informação do objecto seleccionado" @@ -4043,11 +4282,8 @@ msgid "Display no information" msgstr "Ocultar informações" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Nenhuma" @@ -4189,7 +4425,7 @@ msgstr "segundos" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Data e hora iniciais" @@ -4201,19 +4437,23 @@ msgid "Other:" msgstr "Outras:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Utiliza a data e a hora local actual" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "utilizar actual" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Iniciar Stellarium com data e hora do sistema" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Data e hora do sistema" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4221,23 +4461,23 @@ "Ao iniciar o Stellarium, simula a hora da próxima instância para esta hora " "do dia" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Data do sistema em:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Correção temporal" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Editar a equação" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Opções de planetário" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4245,53 +4485,53 @@ "A distorção esférica do espelho é usada quando se projecta o Stellarium num " "espelho esférico em sistemas planetários de baixo custo." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Distorção esférica do espelho" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" "Esconder tudo o que estiver fora do círculo central (na visualização " "principal)" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Posição do disco" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Ocultar outras constelações quando clicar numa" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Seleccionar uma constelação" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Alinha os campos com o horizonte" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Campos de gravidade" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Alternar a exibição das imagens de fundo de nebulosas" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Mostrar o botão das imagens de fundo de nebulosas" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Alternar botões de inversão da imagem" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Mostrar botões de inversão da imagem" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4299,92 +4539,100 @@ "Quando activo, a tecla de \"redução automática\" também muda a direcção " "inicial de visualização" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "A redução automática devolve a direcção inicial da visualização" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Exibe as sombras solares nos planetas e nas luas (o OpenGL versão 2 ou mais " +"recente é necessário para este recurso)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Renderizar sombras solares" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Capturas de ecrã" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Directório das capturas de ecrã" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Inverter cores" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Actualizações dos catálogos de estrelas" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Clique aqui para iniciar a transferência" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Transferir este ficheiro para ver ainda mais estrelas" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Reiniciar a transferência" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Tentar novamente" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Parar a transferência. Pode recomeçá-la mais tarde" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cancelar" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Fechar janela quando o \"script\" terminar" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Executar o \"script\" seleccionado" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Parar o \"script\" em execução" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Carregar ao iniciar" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "configurar" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Principal" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informação" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navegação" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Ferramentas" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "\"Plug-ins\"" @@ -4562,12 +4810,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Exibe as marcas do compasso no horizonte" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculares" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4577,165 +4825,165 @@ "telescópio. (Apenas a ampliação e o campo de visão são simulados). Também " "pode exibir uma estrutura do sensor e uma mira Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" "Por favor, seleccione um outro objecto antes de mudar para a visão ocular." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "Ocular &anterior" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "Ocular &seguinte" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Seleccionar &ocular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Alternar &retículo" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Configurar &oculares" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Alternar &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Alternar &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "CCD &anterior" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "CCD &seguinte" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Seleccionar CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Girar CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Redefinir rotação" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Ocular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Ocular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Distância focal da ocular: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Campo de visão aparente da ocular: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Lente nº%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Lente nº%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Lente: nenhuma" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Telescópio nº %1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Telescópio nº %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Ampliação: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Campo de visão: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensões: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor nº %1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor nº %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Lente" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&Lente anterior" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&Lente seguinte" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Telescópio" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "Telescópio &anterior" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "Telescópio &seguinte" @@ -4807,65 +5055,70 @@ msgid "Apparent field of view of the ocular" msgstr "Campo de visão aparente da ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Multiplicidade: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Lente: nenhuma" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Multiplicidade: nada disponível" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Multiplicidade da lente" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Distância focal da ócular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotação: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Ampliação fornecida por este binóculo" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Campo de visão real fornecido por este binóculo" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "Ampliação oferecida por esta combinação de ocular/lente/telescópio" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Campo de visão real oferecido por esta combinação de ocular/lente/telescópio" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Complemento de oculares" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versão" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Recurso lentes Barlow" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Visão geral" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4878,7 +5131,7 @@ "primeira vez que executar o aplicativo, ele preencherá alguns exemplos para " "que comece a utilizá-lo." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4897,7 +5150,7 @@ "Por esse motivo, recomendo que deixe essa opção desativada, a menos que " "tenha necessidade dela." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4907,7 +5160,7 @@ "se, de preferência, alinhado com o Norte. Fui incapaz de fazê-lo. Assim, por " "enquanto, ele alinha-se com a parte superior da tela." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4921,120 +5174,130 @@ "supostamente conseguiria ver a olho nu através do localizador Telrad (ou " "similar)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Se encontrar quaisquer problemas, por favor, avise. Divirta-se!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Teclas de Atalho" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" "As combinações de teclas do complemento podem ser editadas no separador " "Geral." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[nenhuma tecla definida]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Activa/desatciva a sobreposição da ocular." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Abre o menu de navegação instantâneo." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Activar somente se um objeto estiver selecionado" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Aumentar a escala do círculo da imagem" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" +"Aplica limitações à magnitude estelar para diferentes aberturas de " +"telescópios" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Limitar magnitude estelar" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Mapeamentos de teclas" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Alternar visão ocular:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Abrir menu de navegação instantâneo:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interface" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Painel de controle na tela" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Utilizar graus e minutos para o campo de visão do CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Geral" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Oculares" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Adicionar" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nome:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "Campo de visão aparente:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Distância focal:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Paragem de campo:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binóculo" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Lentes" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Multiplicidade:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Multiplicador:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5043,74 +5306,75 @@ "Barlow). Valores da multiplicidade menores que 1 diminuem a distância focal " "(lentes Shapley)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensores" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Resolução x (em píxeis):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Resolução y (em píxeis):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Largura do circuito (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Altura do circuito (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Largura do píxel (em mícrons):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Altura do píxel (em mícrons):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Telescópios" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diâmetro:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Inversão horizontal" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Inversão vertical" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Sobre..." -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satélites" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5118,88 +5382,148 @@ "Uma previsão das posições dum satélite artificial na órbita da Terra com " "base nos dados da NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "O ficheiro \"satellites.json\" já não é compatível - a utilizar o ficheiro " "omisso" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "visual" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "científico" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "de comunicação" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "navegação" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amador" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "meteorológico" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geoestacionário" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "não operacional" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "de posicionamento global (GPS)" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "Iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "O Telescópio Espacial Hubble" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "A Estação Espacial Internacional" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Catálogo nº" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Designador internacional" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "satélite artificial" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Distância (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Taxa de distanciamento (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitude (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Subponto (Latitude/Longitude): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Coordenadas TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "Velocidade TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "O satélite e o observador estão na luz do sol." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "O satélite está visível." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "O satélite está eclipsado." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "O satélite não está visível." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Complemento de satélites do Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5207,18 +5531,18 @@ "O complemento de satélites prevê as posições de satélites artificiais na " "órbita da Terra." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Notas para os usuários" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Os satélites e as suas órbitas são mostrados apenas se o observador estiver " "na Terra." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5228,7 +5552,7 @@ "(da ordem de dias, semanas ou talvez um mês para o passado e para o futuro). " "Conte com previsões pouco válidas quando observar em datas fora dessa faixa." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5238,7 +5562,7 @@ "os dados TLE regularmente." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5251,7 +5575,7 @@ "encontrado-lo no directório que contém os dados do utilizador, em " "“modules/Satellites/â€." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5260,11 +5584,11 @@ "desenvolvimento. Alguns recursos estão incompletos, ausentes ou com falhas." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Atualizações dos dados do TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5274,7 +5598,7 @@ "partir de fontes na Internet, e, por padrão, ele fará isso se os dados " "existentes tiverem mais de 72 horas. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5285,7 +5609,7 @@ "partir de um ficheiro no seu computador. Ele deve estar no mesmo formato das " "actualizações do Celestrak (veja, a título de exemplo, o arquivo %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5294,11 +5618,11 @@ "algo entre colchetes no final, ele será removido antes de os dados serem " "utilizados." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "A adicionar novos satélites..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5311,11 +5635,11 @@ "botão ‘+’. Selecione o(s) satélite(s) que deseja adicionar e carregue no " "botão “Adicionarâ€." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Notas técnicas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5323,7 +5647,7 @@ "As posições são calculadas utilizando os métodos SGP4 e SDP4, utilizando " "dados do NORAD TLE como fonte. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5333,24 +5657,26 @@ "Spacetrack Report N#6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Veja %1este documento%2 para detalhes." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Hiperligações" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5360,31 +5686,34 @@ "como assunto ao fazer a sua pergunta." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Se tiver uma pergunta, pode %1obter uma resposta aqui%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Relatórios de erros podem ser feitos %1aqui%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5392,120 +5721,143 @@ "Se deseja fazer um pedido para adicionar um recurso, você pode criar um " "relatório de erro, e definir a sua gravidade para “wishlistâ€." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Actualizações a partir da Internet desactivadas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "A actualizar agora…" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Próxima actualização: < 1 minuto" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Próxima actualização: %1 minutos" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Próxima actualização: %1 horas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Actualizar agora" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Actualizar a partir de ficheiros" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Erro de actualização" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" +"Foram actualizados %1/%2 satélite(s); %3 foram adicionados; %4 foram " +"removidos" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Actualizado(s) %1 de %2 satélite(s); faltam %3" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" +"Foram actualizados %1/%2 satélite(s); %3 foram adicionados; %4 estão em falta" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[nova fonte]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Actualizar agora" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Actualizar a partir de ficheiros" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[erro de cálculo da órbita]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[todos os adicionados recentemente]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[todos que não são exibidos]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[todos que são exibidos]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[todos]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Novo grupo..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Selecione o ficheiro de actualização do TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "A descarregar os dados..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5513,176 +5865,203 @@ "O Stellarium está a descarregar dados de satélites das fontes de " "actualização. Por favor, aguarde…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Selecione o(s) ficheiro(s) fonte do TLE…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "A processar dados…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Não foi possível descarregar os dados. Tente de novo mais tarde." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Número do catálogo: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Configuração de satélites" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Actualizar as listas TLE a partir de fontes da Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Actualizações" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Actualizar a partir de fontes da Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Actualizar os dados dos satélites de fontes web" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Última actualização:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" +"Ao actualizar, adicionar todos os novos satélites da(s) fonte(s) " +"seleccionada(s)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Ao actualizar, remover os satélites que não estão listados nas fontes de " +"actualização" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Frequência de actualização (em horas):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Rótulos" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Tamanho da fonte dos rótulos (em píxeis):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Linhas das órbitas" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Número de segmentos utilizados para compôr a linha" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Número de segmentos:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Duração de um segmento simples, em segundos" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Duração do segmento (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Número de segmentos utilizados para compôr cada fim de linha" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Duração do desvanecimento:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Restaurar as configurações padrão" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Guardar as configurações como padrão" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Definições" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Faça um duplo click num satélite para começar a segui-lo." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Adiciona mais satélites" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Remove os satélites selecionados" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Gravar as alterações" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Número do catálogo:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Exibe o(s) satélite(s) selecionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Apresentado" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" "Exibe a(s) linha(s) da(s) órbita(s) para o(s) satélite(s) selecionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Órbita" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Número do catálogo:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" +"Não actualizar (ou remover ao actualizar) o(s) satélite(s) seleccionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Não actualizar" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Descrição:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Grupos:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Lista de grupos separada por vírgula" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Dados do TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Informações orbitais do NORAD com elementos de duas linhas" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Remove os satélites selecionados" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Adiciona mais satélites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Conjunto de elementos de duas linhas:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Gravar as alterações" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Os satélites contidos nas listas da fonte marcada serão automaticamente " +"adicionados na próxima actualização se eles ainda não estiverem na colecção." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5690,15 +6069,15 @@ "Insira ou edite a URL da fonte selecionada. As alterações serão gravadas ao " "pressionar Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Adicionar uma nova fonte" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Remover a fonte selecionada" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Fontes" @@ -5734,11 +6113,11 @@ msgid "Discard" msgstr "Descartar" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Controlo do telescópio" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5746,12 +6125,12 @@ "Este \"plug-in\" permite que o Stellarium envie os comandos \"slew\" para um " "telescópio numa montagem computorizada (\"Ir para telescópio\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Mover telescópio #%1 para o objecto seleccionado" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Mover o telescópio #%1 to para o local no centro do ecrã" @@ -6160,62 +6539,62 @@ "zona horária e o modo como as horas e a data são exibidas na barra inferior." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Janeiro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Fevereiro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Março" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Abril" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Maio" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Junho" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Julho" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Agosto" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Setembro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Outubro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Novembro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Dezembro" @@ -6377,7 +6756,7 @@ "barra inferior." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Formato de exibição da hora" @@ -6395,7 +6774,7 @@ msgstr "Formato de 24 horas" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Formato de exibição da data" @@ -6411,11 +6790,11 @@ msgid "mm-dd-yyyy" msgstr "MM-DD-AAAA" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Interface de Utilizador em Texto" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6423,144 +6802,144 @@ "Uma implementação do \"plug-in\" da interface de texto (TUI), utilizado nos " "sistemas planetários." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Corpo do sistema solar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Data e hora actuais" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Definir o fuso horário" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Chaves de dias" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Predefinir a data e a hora a serem utilizadas ao iniciar" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "sistema" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "hora predefinida" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "MMDDAAAA" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "DDMMAAAA" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "AAAAMMDD" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Língua" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Mostrar Estrelas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Cores" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Rótulos das nebulosas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Indicações de nebulosas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Linha do plano galáctico" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efeitos" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Ampliação manual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Multiplicador da escala de magnitude" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intensidade da Via Láctea:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Frequência dos rótulos das nebulosas:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Duração da ampliação:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Tempo limite para o ponteiro ser ocultado:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Ao definir a paisagem é definida a localização" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Executar uma apresentação local" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Parar de executar a apresentação" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Apresentação de CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administração" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Carregar a configuração padrão" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Guardar a configuração actual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Encerrar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[nenhum nodo de interface textual]" @@ -6596,16 +6975,16 @@ "pesquisas nas bases de dados. Em desenvolvimento..." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Consultar o %1 do MPC:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Apenas um resultado será mostrado se a consulta for bem sucedida." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6613,7 +6992,7 @@ "Tanto os cometas quanto os asteróides podem ser identificados pelo seu " "número, nome (em inglês) ou designação provisória." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6801,40 +7180,47 @@ msgid "Solar System" msgstr "Sistema Solar" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Supernovas históricas" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Um complemento que mostra algumas supernovas históricas com magnitude visual " -"maior do que 10." +"Este complemento permite visualizar algumas supernovas históricas brilhantes." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Tipo de Supernova: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Brilho máximo: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Complemento de Supernovas históricas" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" +"Este complemento permite visualizar algumas supernovas históricas " +"brilhantes: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Um complemento que mostra algumas Supernovas históricas com magnitude visual " -"maior do que 10: " +"Todas estas supernovas são mais brilhantes do que %1 no pico de luminosidade." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Curvas de luz" @@ -6856,7 +7242,7 @@ msgstr "Agradecimentos" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6872,14 +7258,14 @@ msgstr "Instituto de Física Teórica e Experimental" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "na Rússia" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6889,8 +7275,9 @@ "o formato do catálogo, pode %1obtê-las aqui%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Próxima actualização: %1 dias" @@ -6908,29 +7295,117 @@ msgstr "Configuração do Complemento de Supernovas Históricas" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Actualizar catálogo a partir da Internet" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Actualizar a partir de fontes da Internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Frequência de actualização (em dias):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[informações sobre a próxima actualização]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Novas Brilhantes" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "Um complemento que mostra algumas novas brilhantes na Via Láctea." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Tipo: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Complemento de Novas Brilhantes" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"Pode encontrar Novas através da ferramenta de pesquisa, escrevendo a " +"designação da Nova ou o seu nome comum (por exemplo, “Nova Cygni 1975†ou " +"“V1500 Cygâ€)." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"Este complemento utiliza um modelo muito simples para calcular as curvas de " +"luz para as estrelas novas." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Este modelo baseia-se no tempo de decaimento de %1 magnitudes a partir do " +"valor máximo, em que %1 é 2, 3, 6 e 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Caso uma Nova não tenha valores para decaimento de magnitudes, este " +"complemento utilizará valores generalizados para ela." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Se quiser as informações completas sobre este complemento, a sua história e " +"o formato de catálogo, poderá %1obter informações aqui%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "As Novas estão actualizadas" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Configuração de Novas Brilhantes" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Complemento de Configuração de Novas Brilhantes" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quasares" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6949,11 +7424,11 @@ msgid "Z (redshift): %1" msgstr "z (desvio para o vermelho): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Complemento de Quasares" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6963,40 +7438,50 @@ "visual maior do que 16. O catálogo de quasares foi compilado a partir da " "obra “Quasars and Active Galactic Nuclei†(13th Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Os quasares estão actualizados" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Configuração de Quasares" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Configuração do Complemento de Quasares" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Modo de exibição dos quasares" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Configurações de quasares" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Mostar todos os quasares sem os rótulos" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Activar a exibição da distribuição de quasares" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Ativar visualização ao iniciar" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Mostrar o botão de quasares na barra de ferramentas" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsares" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7126,11 +7611,11 @@ "estrela de neutrões isolada com emissão de raios X térmicos pulsados, mas " "sem emissões de rádio detectáveis" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Complemento de pulsares" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7141,67 +7626,71 @@ "(Manchester, R. N., Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, " "1993-2006 (2005) (%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Nota" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "os identificadores dos pulsares têm o prefixo “PSRâ€" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Agradecimentos" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Observatório Radio-Astronómico Pushchino" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Observatório Radio-Astronómico Nançay" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "em França" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Os pulsares estão actualizados" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Configuração dos Pulsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Complemento de Configuração dos Pulsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Modo de exibição dos pulsares" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Configurações de pulsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Mostrar todos os pulsares sem os rótulos" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Activar a exibição da distribuição dos pulsares" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Mostrar o botão de pulsares na barra de ferramentas" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplanetas" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7210,71 +7699,71 @@ "sobre os exoplanetas provêm da “Extrasolar Planets Encyclopaediaâ€, " "disponível no sítio exoplanet.eu." -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metalicidade" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Massa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Raio" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Temperatura efectiva: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplaneta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Período" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dias" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Semi-Eixo Maior" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Excentricidade" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inclinação" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Distância angular" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Ano de descoberta" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Complemento de Exoplanetas" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7284,7 +7773,7 @@ "sobre os exoplanetas provêm da “%1The Extrasolar Planets Encyclopaedia%2â€" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7293,42 +7782,133 @@ "Se quiser ler as informações completas sobre o complemento, sua história e o " "formato do catálogo, você pode %1obter informações aqui%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "Sites profissionais e relevantes sobre planetas extrasolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanetas: uma versão interativa de XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "CEK (Caça a Exoluas com Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Exoplanetas em múltiplos e/ou binários sistemas" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Nomeação de Exoplanetas (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" +"Alguns astrônomos e grupos ativos dedicados à estudos de planetas " +"extrasolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "Atualização: 16 de Abril de 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "Explorador de arquivos de Exoplanetas" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "Procura de Planetas Anglo-Australiano" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Programas de busca a planetas Extrasolares de Geneva" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "(NILB) Notícias de Interferometria de longo baseamento" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "Programa de exploração de Exoplanetas da NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Planetas Pulsares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "Arquivos de Exoplanetas da NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "Comício IAU 53: Planetas extrasolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "Galeria de Zonas Habitáveis" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "Jornada Planetária: busca por outra Terra" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Abrir catálogo de exoplanetas" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "Catálogo de exoplanetas habitáveis" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Os exoplanetas estão actualizados" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Configuração de Exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Configuração do Complemento de Exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Actualizar os dados dos exoplanetas a partir da Internet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Modo de exibição dos exoplanetas" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Configurações de exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Mostrar todos os sistemas com exoplanetas sem os rótulos" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Activar a exibição da distribuição dos exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Mostrar os exoplanetas desde a sua descoberta" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Activar a cronologia das descobertas dos exoplanetas" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Mostrar o botão de exoplanetas na barra de ferramentas" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Informação" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Análise de observabilidade" @@ -7351,185 +7931,179 @@ "cósmico.

    Uma explicação sobre as quantidades indicadas por este " "complemento é oferecida no separador “Sobre†da janela de configuração." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Jan" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "Fev" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "Mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "Abr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "Mai" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "Jun" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "Jul" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Ago" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Set" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "Out" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "Nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "Dez" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Pôr-se-á às %1 (em %2)." -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Nasceu às %1 (%2 antes)." -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Pôs-se às %1 (%2 antes)." -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Nascerá às %1 (em %2)." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Circumpolar." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Sem nascer." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Culminará às %1 (em %2) em %3 graus." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Culminou às %1 (%2 antes) em %3 graus." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Não é possível observar a fonte." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Sem nascer e sem pôr acrónico nem cósmico." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Maior elongação: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Maior separação do Sol: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (em %1 graus)." -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Nascer e pôr acrónico" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Sem nascer e sem pôr acrônico." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Nascer e pôr cósmico" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Sem nascer e sem pôr cósmico." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Observável durante todo o ano." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Não observável em noites escuras." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Noites em que está acima do horizonte: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "HOJE:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "ESTE ANO:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Lua Cheia Anterior: %2 %1 às %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Lua Cheia Seguinte: %2 %1 às %3:%4. " @@ -7945,6 +8519,12 @@ #~ msgid "When a Script is Running" #~ msgstr "Se estiver a executar um \"script\"" +#~ msgid "Nebulas background images" +#~ msgstr "Imagens de fundo das nebulas" + +#~ msgid "Nebulas" +#~ msgstr "Nebulas" + #~ msgid "Set Time " #~ msgstr "Definir Hora " @@ -8064,6 +8644,48 @@ #~ msgid "Crosshairs" #~ msgstr "Retículos" +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Protector de ecrã com vários acontecimentos do sistema solar. São 171 " +#~ "eventos no total!" + +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Actualizado(s) %1 de %2 satélite(s); faltam %3" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Actualizar as listas TLE a partir de fontes da Internet" + +#~ msgid "TLE data:" +#~ msgstr "Dados do TLE:" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Lista de grupos separada por vírgula" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Informações orbitais do NORAD com elementos de duas linhas" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Um complemento que mostra algumas supernovas históricas com magnitude visual " +#~ "maior do que 10." + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Um complemento que mostra algumas Supernovas históricas com magnitude visual " +#~ "maior do que 10: " + +#~ msgid "Display mode for quasars" +#~ msgstr "Modo de exibição dos quasares" + +#~ msgid "Display mode for pulsars" +#~ msgstr "Modo de exibição dos pulsares" + #~ msgid "F7" #~ msgstr "F7" diff -Nru stellarium-0.12.1/po/stellarium/pt_BR.po stellarium-0.12.4/po/stellarium/pt_BR.po --- stellarium-0.12.1/po/stellarium/pt_BR.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/pt_BR.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-03 19:30+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-10 13:58+0000\n" "Last-Translator: Adriano Steffler \n" "Language-Team: Portuguese (Brazil) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:20+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:56+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridiano" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Eclíptica" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Equador" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizonte" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Plano galáctico" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Localização: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tipo: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitude: %1 (extinta para: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitude: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Grandeza: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "galáxia" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "aglomerado de estrelas aberto" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "aglomerado globular" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "nebulosa planetária" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Nebulosa escura" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "aglomerado associado a nebulosidade" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "desconhecido" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "tipo não documentado" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitude absoluta: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Eclíptica/Topocêntrica (da data): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Obliquidade (da data, para a Terra): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distância: %1 UA (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distância: %1 UA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diâmetro aparente: %1, com os anéis: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diâmetro aparente: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Período sideral: %1 dias (%2 anos julianos)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Dia sideral: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Dia solar médio: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Ângulo de fase: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongação: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fase: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Iluminado: %1%" @@ -204,7 +204,7 @@ msgstr "Denominação provisória: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "estrela" @@ -219,49 +219,125 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnitude aparente: %1 (por extinção)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "estrela variável eruptiva" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "estrela variável pulsante" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "estrela variável rotacional" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "estrela variável cataclísmica" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "sistema binário eclipsante" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "estrela variável" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "estrela dupla" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Tipo: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitude: %1 (extinta para: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitude: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Alcance da magnitude: %1%2%3 (sistema fotométrico: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" +"Alcance da magnitude: %1%2%3/%4 (sistema fotométrico: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Tipo espectral: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distância: %1 anos-luz" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaxe: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Época de luminosidade mínima: %1 dias julianos" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Época de luminosidade máxima: %1 dias julianos" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Período: %1 dias" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Próxima iluminação mínima: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Próxima iluminação máxima: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Duração do eclipse: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Tempo de ascensão: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Espaçonave" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "

    A correção de tempo está desativada. Somente utilize " "esta opção se você souber o que está fazendo!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -273,7 +349,7 @@ "Relativity Confirmed by Ancient Solar Eclipses (%1). Informações " "adicionais podem ser obtidas %2aqui%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -282,7 +358,7 @@ "

    Esta equação empírica foi publicada por G. M. Clemence " "no artigo On the system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -296,7 +372,7 @@ "Calculators. Ela também foi adotada no programa para computador " "SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -306,7 +382,7 @@ "IAU (1952), que foi adotada nas Astronomical Ephemerides e no " "Canon of Solar Eclipses por Mucke e Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -318,7 +394,7 @@ "a.C. a 1649 d.C. A mesma relação também foi tacitamente adotada nas tabelas " "de conjunção de Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -329,7 +405,7 @@ "Stephenson no artigo The accelerations of the earth and moon from early " "astronomical observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -338,7 +414,7 @@ "

    Esta equação foi publicada por F. R. Stephenson no " "artigo Pre-Telescopic Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -352,7 +428,7 @@ "correction delta T E.T.-U.T. in the period 1800-1975 (%1) como " "adaptação por meio de informações publicadas por Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -362,7 +438,7 @@ "and Tables from -4000 to +2800 (1986) de P. Bretagnon e L. Simon (1986) " "e no programa de planetário para computador RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -373,13 +449,13 @@ "Morrison no artigo Long-term changes in the rotation of the earth - 700 " "B.C. to A.D. 1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" "

    Este algoritmo é utilizado no programa de planetário " "para computador Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -389,7 +465,7 @@ "Fifty Year Canon of Solar Eclipses: 1986-2035 (1987) e no seu " "Fifty Year Canon of Lunar Eclipses: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -399,7 +475,7 @@ "partir de uma análise dos registros de trinta e um eclipses solares, datados " "entre 2137 a.C. e 1715 d.C." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -413,7 +489,7 @@ "uma adaptação de informações por meio dos valores oferecidos por Stephenson " "e Morrison (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -423,7 +499,7 @@ "Chapront na versão abreviada da teoria lunar ELP 2000-85 nas suas Lunar " "Tables and Programs from 4000 B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -434,7 +510,7 @@ "Morrison no artigo Long-Term Fluctuations in the Earth's Rotation: 700 " "BC to AD 1990 (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -443,7 +519,7 @@ "

    F. R. Stephenson publicou esta fórmula no seu livro " "Historical Eclipses and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -454,7 +530,7 @@ "2000, e inclui uma variante de Chapront, Chapront-Touze e Francou (1997) " "para datas fora do período 1620-2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -464,7 +540,7 @@ "Propulsão a Jato da NASA utiliza esta fórmula em seu sítio interativo %1JPL " "Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -473,7 +549,7 @@ "

    Este polinômio foi publicado por J. Meeus e L. Simons " "no artigo Polynomial approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -483,7 +559,7 @@ "Computer (2000), de O. Montenbruck e T. Pfleger, oferece adaptações de " "informações polinomiais de terceira ordem simples para o passado recente." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -495,7 +571,7 @@ "(3rd ed., 2007) e no seu Calendrical Tabulations (2002). Elas foram " "baseadas no Astronomical Algorithms (1991), de Jean Meeus." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -507,7 +583,7 @@ "clock error %1T and the calculation of eclipses (%2) com um adendo em " "(%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -521,7 +597,7 @@ "Ela é fundamentada numa possível periodicidade descrita por Stephenson (%2). " "Informações adicionais podem ser obtidas %3aqui%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -530,18 +606,41 @@ "Solar Eclipses: -1900 to +3000 (2006). This formula is also used in the " "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -"Esta solução, obtida por F. Espenak e J. Meeus, com base em Morrison e " -"Stephenson (2004) e uma adaptação polinomial por meio de valores tabelados " -"para o ano de 1600 a 2000, é utilizada para o %1sítio de eclipses da NASA%2 " -"e no seu Five Millennium Canon of Solar Eclipses: -1900 to +3000 " -"(2006). Esta fórmula também é empregada no SOLEX, um programa de efemérides " -"solares, lunares e planetárias." +"

    Esta solução, obtida por F. Espenak e J. Meeus, com " +"base em Morrison e Stephenson (2004) e uma adaptação polinomial por meio de " +"valores tabelados para o ano de 1600 a 2000, é utilizada para o %1sítio de " +"eclipses da NASA%2 e no seu Five Millennium Canon of Solar Eclipses: -" +"1900 to +3000 (2006). Esta fórmula também é empregada no SOLEX, um " +"programa de efemérides solares, lunares e planetárias." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Utilizada por padrão." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"

    Esta solução de B. Banjevic, baseada em Stephenson e " +"Morrison (1984), foi publicada no artigo Ancient eclipses and dating the " +"fall of Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"

    Esta solução de S. Islam, M. Sadiq e M. S. Qureshi, " +"baseada em Meeus e Simons (2000), foi publicada no artigo Error " +"Minimization of Polynomial Approximation of DeltaT (%1) e foi " +"revisitada por Sana Islam em 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -550,15 +649,15 @@ "

    Esta é uma fórmula quadrática para calcular o %1T com " "coeficientes definidos pelo usuário." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Erro" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "com valores insignificantes fora desse período" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -566,22 +665,23 @@ "com um erro médio de menos de 1 segundo, um erro máximo de 1,9 segundos, e " "valores insignificantes fora desse período" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "com valores não mensuráveis fora desse período" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "com uma precisão característica de 1 segundo e valores não mensuráveis fora " "desse período" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Período de utilização válido: entre os anos de %1 e %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Período de utilização válido: entre os anos de %1 e %2." @@ -754,52 +854,53 @@ msgid "Found" msgstr "Encontrado" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Selecione o diretório em que serão armazenadas as capturas de tela" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Campo de visão ao iniciar: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Direção de visualização azimute/altura ao iniciar: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autores" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contato" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licença" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Executando apresentação: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Executando apresentação: [nenhuma]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -807,16 +908,16 @@ "A obtenção de novos catálogos estelares foi concluída!\n" "Reinicie o Stellarium para exibi-los." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Todos os catálogos estelares disponíveis foram instalados." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Obter catálogo %1 de %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -825,7 +926,7 @@ "Baixando %1…\n" "(Você pode fechar esta janela.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -836,7 +937,7 @@ "Contagem de estrelas: %2 milhões\n" "Alcance da magnitude: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -845,11 +946,11 @@ "Ocorreu um erro ao baixar %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verificando a integridade do arquivo…" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -859,115 +960,123 @@ "O arquivo está corrompido." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritmo do" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Sem correção" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) e Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller e Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel e Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison e Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson e Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson e Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel e Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze e Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson e Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (com Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus e Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck e Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold e Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison e Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak e Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq e Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Equação personalizada do %1T" @@ -1139,49 +1248,53 @@ msgid "OSX Developer: %1" msgstr "Desenvolvedor para OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Janela de console de apresentação" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Janelas" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Barra de espaço" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1 m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Nenhuma descrição" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Sem estrelas cadentes" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Taxa normal" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Taxa padrão de Perseidas" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Taxa de chuva de meteoros" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Taxa excepcional de Leonídeos" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Maior taxa já ocorrida (Leonídeos em 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nova localização" @@ -1286,19 +1399,19 @@ msgid "starchart" msgstr "carta celeste" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Erro de pesquisa no Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Pesquisa no Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universidade de Estrasburgo (França)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Universidade de Harvard (EUA)" @@ -1314,30 +1427,38 @@ msgid "Alternative shortcut" msgstr "Atalho alternativo" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Equação personalizada para o %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Uma equação típica para o cálculo do %1T se parece com:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "em que" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "ano" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Este sistema não suporta o OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"A sua plataforma não suporta o OpenGL 1.2 minimamente requerido. Por favor, " +"atualize os draiveres da placa de vídeo." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sol" @@ -1354,12 +1475,12 @@ msgstr "Terra" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Lua" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marte" @@ -1457,7 +1578,7 @@ msgstr "Métis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturno" @@ -1755,197 +1876,226 @@ msgstr "Inuíte" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Indiana védica" + +#: src/translations.h:171 msgid "Korean" msgstr "Coreana" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lacota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navaja" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Nórdica" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinésia" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Lapônica" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tonganesa" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Ocidental" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guéreins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Ãrvores" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hurricane Ridge" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Oceano" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Amostra de paisagens" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Eclipse lunar parcial" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Eclipse lunar total" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Proteção de tela" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Eclipse solar de 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Apresentação de início" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodíaco" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Nascer e pôr do Sol mercuriano triplo" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Eclipse duplo de Deimos em 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Eclipse duplo de Deimos em 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Eclipse do Monte Olimpo em 10 de janeiro de 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Ocultação da Terra e de Júpiter em 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "Três trânsitos e dois eclipses de Deimos em 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Protetor de tela do sistema solar" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Excursão pelas constelações" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "O Sol a partir de diferentes planetas" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "As melhores vistas da Terra a partir de outros corpos celestes" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Trânsito de Vênus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analema" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Excursão pelas culturas do céu" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Eventos da Terra a partir de Mercúrio" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Eventos da Terra a partir de Vênus" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Eventos da Terra a partir de Marte" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Maiores elongações e brilhos da Terra a partir de Marte" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Maiores elongações da Terra e de Marte a partir de Júpiter" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "

    Visualiza cada uma das paisagens instaladas." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "Observe cada cultura do céu instalada." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" "

    Apresentação que demonstra um eclipse lunar parcial." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" "

    Apresentação que demonstra um eclipse lunar total." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" "

    Uma excursão lenta e infinita pelo céu, olhando para " "objetos aleatórios." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1953,13 +2103,13 @@ "

    Uma apresentação que demonstra um eclipse solar total " "que ocorreu em 2009 (local: Rangpur, no Bangladeche)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" "

    Uma apresentação que é executada automaticamente ao " "iniciar." -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1969,7 +2119,7 @@ "representa as constelações que se encontram ao longo da linha que o Sol " "percorre na esfera celeste no decorrer de um ano." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1978,7 +2128,7 @@ "Mercúrio, em certos pontos, o Sol nascerá e pôr-se-á em três diferentes " "horários em um dia mercuriano." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1987,7 +2137,7 @@ "e o eclipsa primeiro. Ocorre entre Escorpião e Sagitário em 26 de abril de " "2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1995,13 +2145,13 @@ "

    Pouco antes de Marte eclipsar o Sol, Fobos sai de trás " "e o eclipsa primeiro. Ocorre entre Touro e Gêmeos em 23 de julho de 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "

    Fobos eclipsa o Sol, como visto do Monte Olimpo, em 10 " "de janeiro de 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -2012,7 +2162,7 @@ "planetas no mesmo dia são muito raras. Eis uma que ocorre em 23 de janeiro " "de 2048, em velocidade real." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2028,37 +2178,37 @@ "entre Marte e Deimos. Quando Fobos emerge de Marte, ele ainda está eclipsado " "e escurecido na sombra de Marte, ficando iluminado apenas mais tarde." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"

    Protetor de tela com vários acontecimentos no sistema " -"solar. São 171 eventos no total!" +"Protetor de tela com vários acontecimentos no sistema solar. São, ao todo, " +"187 eventos!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "

    Uma excursão pelas constelações ocidentais." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" "

    Olhe para o Sol a partir de grandes planetas do sistema " "solar e de Plutão." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "

    As melhores vistas da Terra a partir de outros corpos " "celestes no século XXI." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "

    O trânsito de Vênus, como visto de Sidnei, na " "Austrália, em 06 de junho de 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." @@ -2066,7 +2216,7 @@ "

    Uma demonstração do analema – o caminho que o Sol " "percorre no céu no decorrer do ano." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2074,1469 +2224,1508 @@ "

    Lampejo da supernova que foi observada por Tycho Brahe " "no ano de 1572. O complemento de supernovas deve estar ativado." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" +"Maiores elongações e brilhos da Terra a partir de Marte, do ano 2000 ao ano " +"3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" +"Maiores elongações da Terra a partir de Júpiter, do ano 2000 ao ano 3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Emirados Ãrabes Unidos" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afeganistão" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antígua e Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilha" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albânia" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armênia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Antilhas Holandesas" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antártida" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Samoa Americana" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Ãustria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Austrália" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaijão" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bósnia e Herzegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladeche" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Bélgica" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burquina Fasso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgária" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Barém" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benim" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermudas" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolívia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasil" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Baamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Butão" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Ilha Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botsuana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Bielorrússia" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Canadá" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Ilhas Cocos" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "República Democrática do Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "República Centro-Africana" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "República do Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Suíça" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Costa do Marfim" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Ilhas Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Camarões" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colômbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Sérvia e Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Cabo Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Ilha do Natal" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Chipre" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "República Checa" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Alemanha" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Jibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Dinamarca" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "República Dominicana" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Argélia" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Equador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estônia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egito" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Saara Ocidental" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritreia" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Espanha" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiópia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlândia" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Ilhas Malvinas" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Micronésia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Ilhas Faroé" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "França" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabão" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Reino Unido" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Granada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Geórgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Guiana Francesa" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Gana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Groenlândia" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gâmbia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guiné" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadalupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Guiné Equatorial" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grécia" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Ilhas Geórgia do Sul e Sanduíche do Sul" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guiné-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guiana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hongue Congue" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Ilha Heard e Ilhas McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Croácia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Hungria" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonésia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irlanda" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Ãndia" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Território Britânico do Oceano Ãndico" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Iraque" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Irã" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Islândia" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Itália" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordânia" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japão" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Quênia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Quirguistão" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Camboja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Quiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Comores" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "São Cristóvão e Neves" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Coreia do Norte" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Coreia do Sul" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Quaite" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Ilhas Caimã" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Cazaquistão" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Líbano" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Santa Lúcia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Listenstaine" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Seri-Lanca" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Libéria" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesoto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Lituânia" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburgo" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Letônia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Líbia" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marrocos" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Mônaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldávia" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagáscar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Ilhas Marechal" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedônia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Mianmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongólia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Ilhas Marianas Setentrionais" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinica" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritânia" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Monserrate" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Maurício" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldivas" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Maláui" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "México" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malásia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Moçambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namíbia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nova Caledônia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Níger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Ilha de Norfolque" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigéria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicarágua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Países Baixos" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Noruega" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niuê" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nova Zelândia" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Omã" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panamá" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Polinésia Francesa" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Nova Guiné" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipinas" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Paquistão" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polônia" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "São Pedro e Miquelão" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Ilhas Picárnia" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Porto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Territórios Palestinos" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguai" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Catar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Reunião" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romênia" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Sérvia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Rússia" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Arábia Saudita" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Ilhas Salomão" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seicheles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudão" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Suécia" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapura" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Santa Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Eslovênia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard e Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Eslováquia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Serra Leoa" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "São Marinho" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somália" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Suriname" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "São Tomé e Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Síria" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Suazilândia" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Ilhas Turcas e Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Chade" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Territórios Austrais Franceses" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Tailândia" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadjiquistão" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Toquelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Timor-Leste" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turcomenistão" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunísia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turquia" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trindade e Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiuã" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzânia" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ucrânia" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Ilhas Menores Distantes dos Estados Unidos" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Estados Unidos da América" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguai" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbequistão" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vaticano" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "São Vicente e Granadinas" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Ilhas Virgens Britânicas" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Ilhas Virgens dos Estados Unidos" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnã" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis e Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Iêmen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Maiote" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Iugoslávia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Ãfrica do Sul" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zâmbia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbábue" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data e hora" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Avançar um dia sideral" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Avançar um mês sideral" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Avançar uma semana sideral" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Avançar um ano sideral" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Avançar um século sideral" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Avançar um dia solar" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Avançar uma hora solar" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Avançar uma semana solar" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Avançar um mês sinódico" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Avançar um mês draconiano" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Avançar um mês anomalístico" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Avançar um mês trópico médio" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Avançar um ano draconiano" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Avançar um ano trópico médio" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Avançar um século trópico médio" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Desacelerar a taxa de execução de apresentações" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Diminuir a velocidade do tempo" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Diminuir a velocidade do tempo (um pouco)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Acelerar a taxa de execução de apresentações" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Aumentar a velocidade do tempo" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Aumentar a velocidade do tempo (um pouco)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pausar a execução de apresentações" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Retomar a execução de apresentações" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Definir o tempo para a hora atual" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Definir a taxa normal de execução de apresentações" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Definir a taxa normal de tempo" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Definir a taxa de tempo para zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Para a execução de apresentações" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Retroceder um dia sideral" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Retroceder um mês sideral" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Retroceder uma semana sideral" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Retroceder um ano sideral" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Retroceder um século sideral" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Retroceder um dia solar" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Retroceder uma hora solar" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Retroceder uma semana solar" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Retroceder um mês sinódico" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Retroceder um mês draconiano" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Retroceder um mês anomalístico" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Retroceder um mês trópico médio" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Retroceder um ano draconiano" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Retroceder um ano trópico médio" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Retroceder um século trópico médio" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Opções de exibição" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Inverter a imagem horizontalmente" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Modo de tela cheia" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfera" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Grade azimutal" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Pontos cardeais" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Imagens das constelações" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Limites das constelações" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Rótulos das constelações" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Linhas das constelações" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Imagens de fundo das nebulosas" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Imagens de fundo do céu profundo" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Grade eclíptica J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Linha eclíptica" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Linha do Equador" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Grade equatorial" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Grade equatorial J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Névoa" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Grade galáctica" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Plano galáctico" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Superfície" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Linha do horizonte" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Linha meridiana" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulosas" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Objetos do céu profundo" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Modo noturno" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Rótulos dos planetas" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Órbitas dos planetas" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Rastros dos planetas" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Estrelas" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Rótulos das estrelas" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Inverter a imagem verticalmente" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Miscelânea" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Auto-ocultar a barra de botões horizontal" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Auto-ocultar a barra de botões vertical" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Voltar para o lugar de origem" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Sair" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" "Copia a informação do objeto selecionado para a área de transferência" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Salvar captura de tela" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Alternar entre montagem equatorial e azimutal" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Alternar a visibilidade da interface gráfica do usuário" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Movimento e seleção" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centrar no objeto selecionado" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Definir o planeta selecionado como o padrão" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Seguir objeto" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Aproximar objeto selecionado" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Afastar" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Medição angular" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Marcações da bússola" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Exibir exoplanetas" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Janela de configuração de exoplanetas" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observabilidade" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Janela de configuração de observabilidade" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Configuração do complemento de oculares" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Visão ocular" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Exibir retículos" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Menu instantâneo para as oculares" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Moldura de sensor de imagem" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Mira Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Selecionar o telescópio seguinte" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Selecionar a ocular seguinte" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Selecionar o telescópio anterior" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Selecionar a ocular anterior" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Exibir pulsares" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Janela de configuração de pulsares" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Exibir quasares" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Janela de configuração de quasares" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Janela de configuração de satélites" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Indicações de satélites" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Rótulos dos satélites" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Janela de configuração de supernovas históricas" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Janela de configuração de novas brilhantes" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Mover o telescópio para um dado conjunto de coordenadas" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Mostrar estatísticas do renderizador" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Apresentações" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Executar apresentação de paisagens a partir de um arquivo" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Exibir e ampliar a Lua" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Janela de configuração" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Janela de data e hora" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Janela de ajuda" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Janela de localização" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Janela de pesquisa" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Janela de atalhos" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Janela de opções do céu e de visualização" @@ -3562,7 +3751,7 @@ msgstr "Atualizar" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Localização" @@ -3578,10 +3767,10 @@ msgid "Return to default" msgstr "Retornar para o padrão" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Excluir" @@ -3590,7 +3779,7 @@ msgstr "Adicionar à lista" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitude:" @@ -3603,12 +3792,12 @@ "exemplo: +1g 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitude:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitude:" @@ -3632,364 +3821,414 @@ msgid "Planet:" msgstr "Planeta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Encontrar objeto" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Encontrar objeto ou posição" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "Utilizar a tecla de tabulação para a seleção de itens encontrados" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gama" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "épsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "capa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mi" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ni" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "csi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "ómicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rô" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ípsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "ômega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Letras gregas para as designações de Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objeto" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "Ascensão reta/Declinação (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Posição" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Alguns objetos podem ser encontrados após a ativação dos respectivos " +"complementos" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "Nomes em inglês" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Pesquisar na lista…" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listas" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Banco de dados astronômicos na rede SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Ampliar a pesquisa com o SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Servidor:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Opções de pesquisa" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "Utilizar o autopreenchimento a partir do começo de palavras" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Opções" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "Nomes em inglês" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Pesquisar na lista…" - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listas" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Visualização" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Céu" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Marcações" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Paisagem" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Cultura estelar" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Rótulos e marcadores" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planetas" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Rótulos e marcadores de objetos do céu profundo (aglomerados estelares, " +"galáxias e nebulosas)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "OCPs" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planetas e satélites" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Exibir planetas" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Exibir marcadores dos planetas" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Exibir órbitas dos planetas" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simular velocidade da luz" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Aumentar escala da Lua" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Alteração automática de paisagem quando o planeta é mudado" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Selecionar paisagens automaticamente" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Exibir a atmosfera" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Poluição luminosa:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "Pressão, temperatura e coeficiente de extinção" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Configurações de refração e extinção…" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Escala absoluta:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Escala relativa:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Brilho da Via Láctea:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Cintilação:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Ofusca estrelas fracas quando um objeto muito brilhante estiver visível" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adaptação dinâmica do olho" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Estrelas cadentes" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Taxa horária zenital" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "THZ:" +msgstr "THZ" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" -msgstr "Limitar as magnitudes (para observadores a olho nu/com binóculo)" +msgstr "Limita as magnitudes (para observadores a olho nu/com binóculo)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" -msgstr "Limitar as magnitudes" +msgstr "Limitação de magnitudes" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Estrelas até a magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Limita a magnitude das estrelas" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Nebulosas até a magnitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Limita a magnitude dos objetos do céu profundo (aglomerados estelares, " +"galáxias e nebulosas)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Constelações" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Exibir linhas" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Exibir rótulos" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Exibir limites" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Exibir imagens" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Brilho das imagens:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Esfera celeste" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Exibir a linha do Equador" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Exibir a linha meridiana" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Exibir a linha do horizonte" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Exibir a linha eclíptica" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Exibir a linha do plano galáctico" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projeção" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Adicionar/remover paisagens…" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Exibir superfície" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Exibir névoa" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Utilizar planeta e posição associados" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Utilizar esta paisagem como padrão" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "Utilizar as configurações de luminosidade para as paisagens" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Utilizar esta cultura do céu como padrão" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Visível" @@ -4046,7 +4285,7 @@ msgstr "" "A direção para a qual você estará olhando quando o Stellarium iniciar" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informações sobre o objeto selecionado" @@ -4062,11 +4301,8 @@ msgid "Display no information" msgstr "Não exibe nenhuma informação" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Nenhuma informação" @@ -4209,7 +4445,7 @@ msgstr "segundos" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Data e hora a serem utilizadas ao iniciar" @@ -4221,19 +4457,23 @@ msgid "Other:" msgstr "Outra:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Utiliza a data e a hora local atual" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "Utilizar a data e a hora atuais" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Inicia o Stellarium com a data e a hora do relógio do sistema" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Data e hora do sistema" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4241,23 +4481,23 @@ "Define o horário da simulação para a próxima ocorrência desse horário do dia " "quando o Stellarium iniciar" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Data do sistema em:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Correção de tempo" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Edita a equação" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Opções de planetário" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4265,52 +4505,52 @@ "A distorção de espelho esférico é utilizada quando se projeta o Stellarium " "em um espelho esférico para sistemas de planetário de baixo custo" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Distorção de espelho esférico" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" "Oculta tudo o que estiver fora de um círculo central na visão principal" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Visão em disco" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Oculta as outras constelações quando você clica em uma delas" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Selecionar uma única constelação" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Alinha os rótulos com o horizonte" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Rótulos atrativos" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Alterna a exibição das imagens de fundo das nebulosas" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Exibir o botão das imagens de fundo das nebulosas" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Alterna entre os botões de giro vertical e horizontal de imagem" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Exibir os botões de girar" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4318,92 +4558,100 @@ "Quando ativada, o tecla de “reduzir zum automaticamente†também definirá a " "direção de visualização inicial" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Redução automática do zum retorna à direção de visualização inicial" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Exibe as sombras solares nos planetas e nas luas (o OpenGL versão 2 ou mais " +"recente é necessário para esse recurso)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Renderizar as sombras solares" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Capturas de tela" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Diretório das capturas de tela" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Inverter cores" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Atualizações do catálogo estelar" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Clique aqui para começar a baixar" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Baixe este arquivo para ver ainda mais estrelas" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Tentar baixar novamente" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Tentar novamente" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Para de baixar o arquivo. Você poderá reiniciar mais tarde" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Cancelar" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Fechar a janela quando a apresentação for executada" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Executa a apresentação selecionada" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Para uma apresentação em execução" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Carregar ao iniciar" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "Configurar" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Principal" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informações" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navegação" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Ferramentas" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Complementos" @@ -4583,12 +4831,12 @@ "

    Exibe uma bússola que possui marcações ao longo do " "horizonte." -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculares" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4598,164 +4846,164 @@ "ocular de um telescópio. (Apenas a magnificação e o campo de visão são " "simulados). Ele também pode exibir uma estrutura de sensor e uma mira Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Por favor, selecione um objeto antes de mudar para a visão ocular." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "Ocular &anterior" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "Ocular &seguinte" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Selecionar &ocular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Alternar &retículo" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Configurar &oculares" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Alternar &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Alternar &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "CCD &anterior" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "CCD &seguinte" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "S&elecionar CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Girar CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Redefinir giro" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Ocular nº %1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Ocular nº %1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Distância focal da ocular: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Campo de visão aparente da ocular: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Lente nº%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Lente nº%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Lente: nenhuma" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Telescópio nº %1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Telescópio nº %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Magnificação: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Campo de visão: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Dimensões: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor nº %1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor nº %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Lente" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&Lente anterior" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&Lente seguinte" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Telescópio" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "Telescópio &anterior" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "Telescópio &seguinte" @@ -4827,66 +5075,71 @@ msgid "Apparent field of view of the ocular" msgstr "Campo de visão aparente da ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Multiplicidade: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Lente: nenhuma" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Multiplicidade: nada disponível" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Multiplicidade da lente" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Distância focal da ocular" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotação: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Magnificação fornecida por este binóculo" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Campo de visão real fornecido por este binóculo" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" "Magnificação oferecida por esta combinação de ocular/lente/telescópio" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Campo de visão real oferecido por esta combinação de ocular/lente/telescópio" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Complemento de oculares" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Versão" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Recurso de lentes Barlow" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Visão geral" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4899,7 +5152,7 @@ "como sensores CCD. Na primeira vez que você for executar o aplicativo, ele " "preencherá alguns exemplos para que você possa começar a utilizá-lo." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4918,7 +5171,7 @@ "motivo, eu recomendo que você deixe essa opção desativada, a menos que você " "achar que tem necessidade dela." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4929,7 +5182,7 @@ "incapaz de fazê-lo. Assim, por enquanto, ele se alinha com a parte superior " "da tela." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4943,122 +5196,132 @@ "que supostamente enxergaria a olho nu através do localizador Telrad (ou " "similar)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" "

    Se você encontrar quaisquer problemas, por favor, me " "avise. Divirta-se!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Teclas de atalho" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" "

    As combinações de teclas do complemento podem ser " "editadas na aba Geral." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[nenhuma tecla definida]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Ativa/desativa a sobreposição da ocular." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Abre o menu de navegação instantâneo." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Ativar somente se um objeto estiver selecionado" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Aumentar a escala do círculo da imagem" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" +"Aplica limitações à magnitude estelar para diferentes aberturas de " +"telescópios" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Limitar a magnitude estelar" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Mapeamentos de teclas" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Alternar visão ocular:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Abrir menu de navegação instantâneo:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Interface" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Painel de controle na tela" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "Utilizar graus e minutos para o campo de visão do CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Geral" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Oculares" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Adicionar" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Nome:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "Campo de visão aparente:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Distância focal:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Paragem de campo:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binóculo" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Lentes" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "Multiplicidade:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Multiplicador:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5067,74 +5330,75 @@ "Barlow). Valores da multiplicidade menores que 1 reduzem a distância focal " "(lentes Shapley)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensores" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Resolução x (em píxeis):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Resolução y (em píxeis):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Largura do chipe (em milímetros):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Altura do chipe (em milímetros):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Largura do píxel (em mícrons):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Altura do píxel (em mícrons):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Telescópios" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diâmetro:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Inversão horizontal" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Inversão vertical" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Sobre" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satélites" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5142,88 +5406,148 @@ "

    Predição do posicionamento de satélites artificiais na " "órbita da Terra com base nos dados do NORAD TLE." -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "O arquivo “satellites.json†antigo não é mais compatível – utilizando o " "arquivo padrão" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "visual" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "científico" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "de comunicação" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "de navegação" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "amador" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "meteorológico" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "geoestacionário" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "não operacional" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "de posicionamento global" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "Iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "O Telescópio Espacial Hubble" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "A Estação Espacial Internacional" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Catálogo nº" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Designador internacional" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "satélite artificial" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Distância (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Taxa de distanciamento (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Altitude (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Subponto (Latitude/Longitude): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Coordenadas TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "Velocidade TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "O satélite e o observador estão na luz do sol." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "O satélite está visível" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "O satélite está eclipsado." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "O satélite não está visível." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Complemento de satélites do Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5231,18 +5555,18 @@ "

    O complemento de satélites prevê as posições de " "satélites artificiais na órbita da Terra." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Notas para os usuários" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "

    Os satélites e as suas órbitas são exibidos somente se " "o observador estiver na Terra." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5253,7 +5577,7 @@ "passado e para o futuro). Espere uma grande estranheza quando estiver " "observando em datas fora dessa faixa." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5263,7 +5587,7 @@ "você precisa atualizar os dados TLE regularmente." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5276,7 +5600,7 @@ "“%4â€. Ele poderá ser encontrado no diretório que contém os dados do usuário, " "em “modules/Satellites/â€." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5285,11 +5609,11 @@ "desenvolvimento. Alguns recursos estão incompletos, ausentes ou com erros." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Atualizações dos dados do TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5299,7 +5623,7 @@ "dados do TLE a partir de fontes na Internet, e, por padrão, ele fará isso se " "os dados existentes tiverem mais de 72 horas. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5311,7 +5635,7 @@ "mesmo formato das atualizações do Celestrak (veja, a título de exemplo, o " "arquivo %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5320,11 +5644,11 @@ "de atualização tiver qualquer coisa entre colchetes no final, ele será " "removido antes de os dados serem utilizados." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Adicionando novos satélites" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5337,11 +5661,11 @@ "no botão ‘+’. Selecione o(s) satélite(s) que você deseja adicionar e clique " "no botão “Adicionarâ€." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Notas técnicas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5349,7 +5673,7 @@ "

    As posições são calculadas utilizando os métodos SGP4 e " "SDP4, utilizando dados do NORAD TLE como entrada. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5359,24 +5683,26 @@ "Spacetrack Report N#6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Veja %1este documento%2 para detalhes." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Linques" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5386,11 +5712,12 @@ "de colocar “%1†como assunto ao postar a sua pergunta." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" @@ -5398,21 +5725,23 @@ "resposta aqui%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Relatórios de erros podem ser feitos %1aqui%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5421,120 +5750,142 @@ "recurso, você pode criar um relatório de erro, e definir a sua gravidade " "para “wishlistâ€." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Atualizações a partir da Internet desativadas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Atualizando agora…" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Próxima atualização: < 1 minuto" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Próxima atualização: %1 minutos" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Próxima atualização: %1 horas" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Atualizar agora" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Atualizar a partir de arquivos" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Erro de atualização" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Atualizado(s) %1 de %2 satélite(s); faltando %3" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" +"Foram atualizados %1/%2 satélite(s); %3 foram adicionados; %4 foram removidos" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" +"Foram atualizados %1/%2 satélite(s); %3 foram adicionados; %4 estão faltando" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[nova fonte]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Atualizar agora" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Atualizar a partir de arquivos" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[erro de cálculo da órbita]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[todos os adicionados recentemente]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[todos que não são exibidos]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[todos que são exibidos]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[todos]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Novo grupo…" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Selecione o arquivo de atualização do TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Baixando dados…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5542,176 +5893,203 @@ "

    O Stellarium está baixando dados de satélites das " "fontes de atualização. Por favor, aguarde…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Selecione o(s) arquivo(s) fonte do TLE…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Processando dados…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Não foi possível baixar dados. Tente novamente mais tarde." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Número do catálogo: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Configuração de satélites" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Atualizar as listas TLE a partir de fontes da Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Atualizações" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Atualizar a partir de fontes da Internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Atualizar os dados dos satélites de fontes na rede mundial" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Última atualização:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" +"Ao atualizar, adicionar todos os novos satélites da(s) fonte(s) " +"selecionada(s)" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Ao atualizar, remover os satélites que não estão mais listados nas fontes de " +"atualização" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Frequência de atualização (em horas):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Rótulos" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Tamanho da fonte dos rótulos (em píxeis):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Linhas das órbitas" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Número de segmentos utilizados para compor a linha" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Número de segmentos:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Duração de um segmento simples, em segundos" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Duração do segmento (em segundos):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Número de segmentos utilizados para compor cada fim da linha" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Duração do desvanecimento:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Restaurar as configurações padrão" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Salvar as configurações como padrão" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Configurações" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Dê um duplo clique em um satélite para começar a segui-lo." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Adiciona mais satélites" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Remove os satélites selecionados" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Salva as alterações" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Número do catálogo:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Exibe o(s) satélite(s) selecionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Exibidos" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" "Exibe a(s) linha(s) da(s) órbita(s) para o(s) satélite(s) selecionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Órbita" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Número do catálogo:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" +"Não atualizar (ou remover ao atualizar) o(s) satélite(s) selecionado(s)" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Não atualizar" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Descrição:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Grupos:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Lista de grupos separada por vírgula" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Dados do TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Informações orbitais do NORAD com elementos de duas linhas" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Remove os satélites selecionados" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Adiciona mais satélites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Conjunto de elementos de duas linhas:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Salva as alterações" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Os satélites contidos nas listas da fonte marcada serão automaticamente " +"adicionados na próxima atualização se eles ainda não estiverem no acervo." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5719,15 +6097,15 @@ "Insira ou edite a URL da fonte selecionada. As alterações serão salvas ao " "pressionar Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Adiciona uma nova fonte" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Remove a fonte selecionada" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Fontes" @@ -5763,11 +6141,11 @@ msgid "Discard" msgstr "Descartar" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Controle de telescópio" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5776,12 +6154,12 @@ "de viragem para um telescópio em uma montagem computadorizada (um telescópio " "GoTo)." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Mover o telescópio nº %1 para o objeto selecionado" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -6195,62 +6573,62 @@ "inferior." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Janeiro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Fevereiro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Março" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Abril" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Maio" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Junho" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Julho" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Agosto" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Setembro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Outubro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Novembro" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Dezembro" @@ -6412,7 +6790,7 @@ "data são exibidas na barra inferior." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Formato de exibição da hora" @@ -6430,7 +6808,7 @@ msgstr "Formato de 24 horas" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Formato de exibição da data" @@ -6446,11 +6824,11 @@ msgid "mm-dd-yyyy" msgstr "MM-DD-AAAA" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Interface textual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6458,144 +6836,144 @@ "

    Implementação do complemento das séries 0.9.x da " "interface textual (TUI), utilizada em sistemas de planetário." -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Corpo do sistema solar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Data e hora atuais" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Definir o fuso horário" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Chaves de dias" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Predefinir a data e a hora a serem utilizadas ao iniciar" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "Hora do sistema" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "Hora predefinida" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "MMDDAAAA" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "DDMMAAAA" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "AAAAMMDD" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Idioma" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Exibir estrelas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Cores" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Rótulos das nebulosas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Indicações de nebulosas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Linha do plano galáctico" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efeitos" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Zum manual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Multiplicador da escala de magnitude" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intensidade da Via Láctea:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Frequência dos rótulos das nebulosas:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Duração do zum:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Tempo limite para o cursor ser ocultado:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Ao definir a paisagem é definida a localização" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Executar uma apresentação local" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Parar de executar uma apresentação" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Apresentação de CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administração" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Carregar a configuração padrão" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Salvar a configuração atual" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Desligar" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[nenhum nodo de interface textual]" @@ -6632,18 +7010,18 @@ "interface é ainda um trabalho em desenvolvimento." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Consultar o %1 do MPC:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" "

    Apenas um resultado será retornado se a consulta for " "bem sucedida." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6651,7 +7029,7 @@ "Tanto os cometas quanto os asteroides podem ser identificados pelo seu " "número, nome (em inglês) ou designação provisória." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6753,12 +7131,12 @@ "Solar System configuration.
    Note that adding a large number of objects " "may cause Stellarium to run slowly." msgstr "" -"Marque os objetos que você quer que sejam importados. Em itálico " -"estão listados os nomes que correspondem aos nomes de objetos já carregados. " -"Em negrito estão listados os nomes que correspondem aos nomes de " -"objetos herdados da configuração padrão do sistema solar do " -"Stellarium.
    Note-se que a adição de um grande número de objetos pode " -"fazer com que o Stellarium seja executado lentamente." +"

    Marque os objetos que você quer que sejam importados. " +"Em itálico estão listados os nomes que correspondem aos nomes de " +"objetos já carregados. Em negrito estão listados os nomes que " +"correspondem aos nomes de objetos herdados da configuração padrão do sistema " +"solar do Stellarium.
    Note-se que a adição de um grande número de objetos " +"pode fazer com que o Stellarium seja executado lentamente." #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:531 msgid "Overwrite existing objects" @@ -6844,40 +7222,47 @@ msgid "Solar System" msgstr "Sistema solar" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Supernovas históricas" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"

    Um complemento que mostra algumas supernovas históricas " -"com magnitude visual maior do que 10." +"Este complemento permite visualizar algumas supernovas históricas brilhantes." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Tipo de supernova: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "Brilho máximo: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Complemento de supernovas históricas" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" +"Este complemento permite visualizar algumas supernovas históricas " +"brilhantes: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"

    Um complemento que mostra algumas supernovas históricas " -"com magnitude visual maior do que 10: " +"Todas estas supernovas são mais brilhantes do que %1 no pico de luminosidade." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Curvas de luz" @@ -6900,7 +7285,7 @@ msgstr "Agradecimentos" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6916,14 +7301,14 @@ msgstr "Instituto de Física Teórica e Experimental" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "na Rússia" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6934,8 +7319,9 @@ "informações aqui%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Próxima atualização: %1 dias" @@ -6953,29 +7339,118 @@ msgstr "Configuração do complemento de supernovas históricas" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Atualizar catáogo a partir da Internet" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Atualizar a partir de fontes da Internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Frequência de atualização (em dias):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[informações sobre a próxima atualização]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Novas brilhantes" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" +"Um complemento que mostra algumas novas brilhantes na galáxia Via Láctea." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Tipo: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "nova" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Complemento de novas brilhantes" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"Você pode encontrar novas por meio da ferramenta de pesquisa, digitando a " +"designação da nova ou o seu nome comum (por exemplo, “Nova Cygni 1975†ou " +"“V1500 Cygâ€)." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"Este complemento utiliza um modelo muito simples para calcular as curvas de " +"luz para as estrelas novas." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Este modelo baseia-se no tempo de decaimento de %1 magnitudes a partir do " +"valor máximo, em que %1 é 2, 3, 6 e 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Caso uma nova não tenha valores para decaimento de magnitudes, então este " +"complemento utilizará valores generalizados para ela." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Se você quiser ler as informações completas sobre este complemento, a sua " +"história e o formato de catálogo, você poderá %1obter informações aqui%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "As novas estão atualizadas" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "Configuração de novas brilhantes" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "Complemento de configuração de novas brilhantes" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Quasares" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6995,11 +7470,11 @@ msgid "Z (redshift): %1" msgstr "z (desvio para o vermelho): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Complemento de quasares" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -7009,40 +7484,50 @@ "quasares com magnitude visual maior do que 16. O catálogo de quasares foi " "compilado a partir da obra “Quasars and Active Galactic Nuclei†(13th Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Os quasares estão atualizados" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Configuração de quasares" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Configuração do complemento de quasares" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Modo de exibição dos quasares" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Configurações dos quasares" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Exibir todos os quasares sem os rótulos" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Ativar a exibição da distribuição dos quasares" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Ativar a exibição ao iniciar" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Exibir o botão dos quasares na barra de ferramentas" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulsares" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7172,11 +7657,11 @@ "estrela de nêutrons isolada com emissão de raios X térmicos pulsados, mas " "sem emissão de rádio detectável" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Complemento de pulsares" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7187,67 +7672,71 @@ "Pulsar Catalogue†(Manchester, R. N., Hobbs, G. B., Teoh, A. & Hobbs, M., " "Astron. J., 129, 1993-2006 (2005) (%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Observação" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "os identificadores dos pulsares têm o prefixo “PSRâ€" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "Agradecimentos" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "

    Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Observatório radioastronômico Pushchino" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "

    Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Observatório radioastronômico Nançay" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "na França" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Os pulsares estão atualizados" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Configuração dos pulsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Complemento de configuração dos pulsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Modo de exibição dos pulsares" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Configurações dos pulsares" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Exibir todos os pulsares sem os rótulos" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Ativar a exibição da distribuição dos pulsares" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Exibir o botão dos pulsares na barra de ferramentas" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplanetas" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7256,71 +7745,71 @@ "exoplanetas. Os dados sobre os exoplanetas provêm da “Extrasolar Planets " "Encyclopaediaâ€, disponível no sítio exoplanet.eu." -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metalicidade" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Massa" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Raio" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Temperatura efetiva: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplaneta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Período" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dias" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Semi-eixo maior" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "UA" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Excentricidade" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Inclinação" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Distância angular" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Ano da descoberta" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Complemento de exoplanetas" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7331,7 +7820,7 @@ "Planets Encyclopaedia%2â€" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7341,42 +7830,133 @@ "complemento, sua história e o formato do catálogo, você pode %1obter " "informações aqui%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" +"Sítios da rede profissionais gerais relevantes para planetas extrassolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanetas: uma versão interativa do XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (A Caçada a Exoluas com o Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Exoplanetas em sistemas binários e múltiplos (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Nomeando exoplanetas (UAI)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" +"Alguns astrônomos e grupos ativos em estudos de planetas extrassolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "atualização: 16 de abril de 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "O Explorador de Dados de Exoplanetas" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "A procura anglo-australiana de planetas" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Programas de Geneva para procura por planetas extrassolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Notícias de Interferometria óptica de longa linha de base)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "Programa de Exploração de Exoplanetas da NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Planetas de pulsar" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "O Arquivo de Exoplanetas da NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "Comissão 53 do UAI: Planetas extrassolares" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "A Galeria de Zonas Habitáveis" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - A Procura por Outra Terra" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "O Catálogo de Exoplanetas Aberto" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "O Catálogo de Exoplanetas Habitáveis" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Os exoplanetas estão atualizados" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Configuração de exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Configuração do complemento de exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Atualizar os dados sobre os exoplanetas a partir da Internet" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Modo de exibição para os exoplanetas" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Configurações dos exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Exibir todos os sistemas com exoplanetas sem os rótulos" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Ativar a exibição da distribuição dos exoplanetas" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Exibir os exoplanetas desde a sua descoberta" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Ativar a cronologia das descobertas dos exoplanetas" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Exibir o botão dos exoplanetas na barra de ferramentas" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Informações" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Análise de observabilidade" @@ -7399,185 +7979,179 @@ "cósmico.

    Uma explicação sobre as quantidades indicadas por este " "complemento é oferecida no aba “Sobre†da janela de configuração." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "de janeiro" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "de fevereiro" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "de março" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "de abril" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "de maio" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "de junho" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "de julho" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "de agosto" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "de setembro" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "de outubro" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "de novembro" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "de dezembro" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Pôr-se-á às %1 (em %2)." -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Nasceu às %1 (%2 atrás)." -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Pôs-se às %1 (%2 atrás)." -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Nascerá às %1 (em %2)." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Circumpolar." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Sem nascer." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Culminará às %1 (em %2) em %3 graus." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Culminou às %1 (%2 atrás) em %3 graus." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Não é possível observar a fonte." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Sem nascer e sem pôr acrônico nem cósmico." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Maior elongação: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Maior separação do Sol: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (em %1 graus)." -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Nascer e pôr acrônico" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Sem nascer e sem pôr acrônico." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Nascer e pôr cósmico" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Sem nascer e sem pôr cósmico." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Observável durante o ano inteiro." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Não observável em noite escura." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Noites em que está acima do horizonte: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "HOJE:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "ESTE ANO:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Lua cheia anterior: %2 %1 às %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Lua cheia seguinte: %2 %1 às %3:%4. " @@ -7958,9 +8532,15 @@ #~ msgid "/" #~ msgstr "/" +#~ msgid "Nebulas background images" +#~ msgstr "Imagens de fundo das nebulosas" + #~ msgid "xxx" #~ msgstr "xxx" +#~ msgid "Nebulas" +#~ msgstr "Nebulosas" + #~ msgid "Set Location " #~ msgstr "Definir a localização " @@ -8074,6 +8654,22 @@ #~ msgid "Day keys: " #~ msgstr "Chaves de dias: " +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Atualizado(s) %1 de %2 satélite(s); faltando %3" + +#~ msgid "Comma separated list of groups" +#~ msgstr "Lista de grupos separada por vírgula" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Informações orbitais do NORAD com elementos de duas linhas" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Atualizar as listas TLE a partir de fontes da Internet" + +#~ msgid "TLE data:" +#~ msgstr "Dados do TLE:" + #~ msgid "Crosshairs" #~ msgstr "Retículos" @@ -8263,6 +8859,12 @@ #~ "É fornecido auxílio no sítio do Launchpad. Assegure-se de colocar " #~ "“Satellites plugin†como assunto ao postar a sua pergunta." +#~ msgid "Display mode for pulsars" +#~ msgstr "Modo de exibição dos pulsares" + +#~ msgid "Display mode for quasars" +#~ msgstr "Modo de exibição dos quasares" + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "Eclipse quíntuplo de Deimos em 2027" @@ -8299,6 +8901,12 @@ #~ "totalmente o Sol e Fobos, e depois, quando Fobos emerge do Sol, ele passa " #~ "através da sombra de Marte e escurece." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "

    Protetor de tela com vários acontecimentos no sistema " +#~ "solar. São 171 eventos no total!" + #~ msgid "A tour via western constellations." #~ msgstr "

    Uma excursão pelas constelações ocidentais." @@ -8332,6 +8940,20 @@ #~ "no ano de 1572. Para demonstrações, é necessário ativar o complemento de " #~ "supernovas." +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "

    Um complemento que mostra algumas supernovas históricas " +#~ "com magnitude visual maior do que 10." + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "

    Um complemento que mostra algumas supernovas históricas " +#~ "com magnitude visual maior do que 10: " + #, qt-format #~ msgid "Galactic longitude/latitude (J2000): %1/%2" #~ msgstr "Latitude/Longitude galáctica (J2000): %1/%2" diff -Nru stellarium-0.12.1/po/stellarium/ro.po stellarium-0.12.4/po/stellarium/ro.po --- stellarium-0.12.1/po/stellarium/ro.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ro.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,30 +7,30 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2012-09-11 18:15+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-07-22 13:50+0000\n" "Last-Translator: Gaman Gabriel \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:53+0000\n" +"X-Generator: Launchpad (build 16761)\n" "100 > 19) || ((n % 100 == 0) && (n != 0))) ? 2: 1))\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ecliptică" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ecuator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Orizont" @@ -38,46 +38,46 @@ msgid "Galactic Plane" msgstr "Plan galactic" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "LocaÈ›ie: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planetă: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tip: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" -msgstr "" +msgstr "Magnitudine: %1 (extins spre: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitudine: %1" @@ -87,117 +87,117 @@ msgid "Size: %1" msgstr "Mărime: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxie" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Roi deschis" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Roi globular" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebuloasă" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebuloasă planetară" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "Nebuloasă întunecată" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" -msgstr "Roi difuz" +msgstr "Roi asociat cu nebulozitate" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Necunoscut(ă)" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Tip nedocumentat" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnitudine absolută: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" -msgstr "" +msgstr "Ecliptica topocentrică (la data): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" -msgstr "" +msgstr "Oblicitate (a datei, pentru Pământ): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" -msgstr "" +msgstr "Distanţă: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distanță: %1UA" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" -msgstr "" +msgstr "Diametru aparent: %1, cu inele: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diametru aparent: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" -msgstr "" +msgstr "Perioadă siderală: %1 zile (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" -msgstr "" +msgstr "Ziuă siderală: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" -msgstr "" +msgstr "Ziua solară medie: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" -msgstr "" +msgstr "Unghiul fazei: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" -msgstr "" +msgstr "ElongaÅ£ie: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" -msgstr "" +msgstr "Fază: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" -msgstr "" +msgstr "Iluminare: %1%" #: src/core/modules/MinorPlanet.cpp:201 #, qt-format @@ -205,10 +205,10 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" -msgstr "" +msgstr "stea" #: src/core/modules/StarWrapper.cpp:57 #, qt-format @@ -218,64 +218,145 @@ #: src/core/modules/StarWrapper.cpp:60 #, qt-format msgid "Apparent Magnitude: %1 (by extinction)" -msgstr "" +msgstr "Magnitudine Aparentă: %1 (de stingere)" + +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "steauă variabilă eruptivă" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "steauă variabilă pulsatilă" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "steauă variabilă rotativă" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "steauă variabilă cataclismică" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "sistem binar eclipsat" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "steauă variabilă" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" -msgstr "" +msgstr "steauă dublă" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Tip: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" -msgstr "" +msgstr "Magnitudine: %1 (extins spre: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" -msgstr "" +msgstr "Magnitudine: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Câmp de magnitudine: %1%2%3 (Sistem fotometric: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Câmp de magnitudine: %1%2%3/%4 (Sistem fotometric: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Tip spectral: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "DistanÈ›a: %1 ani lumină" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaxa: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Perioada de luminozitate minimă: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Perioada de luminozitate maximă: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Perioada: %1 zile" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Următorul minim al luminozităţii : %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Următorul maxim al luminozităţii : %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Durata eclipsei: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Timpul răsăritului: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" -msgstr "" +msgstr "Navă SpaÅ£ială" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" -msgstr "" +msgstr "CorecÅ£ia este dezactivată. Utilizează doar dacă ÅŸtii ce faci!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " "Henriksson in his article Einstein's Theory of Relativity Confirmed by " "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" +"Această formulă istorică a fost obÅ£inută de C. Schoch în 1931 ÅŸi a fost " +"folosită de G. Henriksson în articolul său Teoria Relativităţii " +"Confirmată a lui Einstein de Eclipsele Solare Antice (%1). Vezi pentru " +"mai multe informaÅ£ii %2here%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" +"Această ecuaÅ£ie empirică a fost publicată de G. M. Clemence în articolul " +"Pe sistemul constantelor astronomice (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -284,37 +365,48 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" +"Aceasta este o versiune uÅŸor modificată a formulei IAU (1952) care a fost " +"adoptată în Efermide Astronomice ÅŸi în Canonul Eclipselor " +"Solare de Mucke & Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " "relation was also implicitly adopted in the syzygy tables of Goldstine " "(1973)." msgstr "" +"Tablele lui Tuckerman (1962, 1964) listează poziÅ£iile Soarelui, Lunii ÅŸi " +"planetelor la interval de 5 ÅŸi 10 zile de la 601 BCE spre 1649 CE. AcelaÅŸi " +"raport a fost adoptat în tablele syzygy ale lui Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " "article The accelerations of the earth and moon from early astronomical " "observations (%1)." msgstr "" +"Această ecuaÅ£ie a fost publicată de P. M. Muller ÅŸi F. R. Stephenson în " +"articolul AcceleraÅ£iile Pământului ÅŸi ale Lunii din observaÅ£iile " +"astronomice timpurii (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" +"Această ecuaÅ£ie a fost publicată de F. R. Stephenson în articolul " +"ObservaÅ£ii Astronomice Pre-Telescopice (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -323,40 +415,44 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " "article Long-term changes in the rotation of the earth - 700 B.C. to " "A.D. 1980 (%1)." msgstr "" +"Această formulă a fost publicată de F. R. Stephenson ÅŸi L. V. Morrison în " +"articolul Schimbări pe termen lung în rotaÅ£ia Pământului - 700 B.C. to " +"A.D. 1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" +"Acest algoritm este folosit in programul de planetariu Guide 7 pentru PC." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -365,14 +461,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -380,42 +476,44 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" +"F. R. Stephenson a publicat această formulă în cartea sa Eclipse " +"Istorice ÅŸi RotaÅ£ia Pământului (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -423,7 +521,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -431,7 +529,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -440,7 +538,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -450,45 +548,64 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." +msgstr "Folosit ca implicit." + +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Eroare" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" -msgstr "" +msgstr "cu valori lipsite de sens în afara acestui interval" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" +"cu o eroare medie de mai puÅ£in de o secundă, eroare maximă 1.9s, ÅŸi valori " +"lipsite de sens în afara acestui interval" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" -msgstr "" +msgstr "cu valori de zero în afara acestui interval" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -614,7 +731,7 @@ #: src/core/StelObject.cpp:111 #, qt-format msgid "Galactic longitude/latitude: %1/%2" -msgstr "" +msgstr "Latitudine/Longitudine galactică: %1/%2" #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:124 #: src/core/StelObject.cpp:127 @@ -624,11 +741,11 @@ #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:140 msgid "(geometric)" -msgstr "" +msgstr "(geometric)" #: src/core/StelObject.cpp:124 src/core/StelObject.cpp:146 msgid "(apparent)" -msgstr "" +msgstr "(aparent)" #: src/core/StelObject.cpp:140 src/core/StelObject.cpp:146 #: src/core/StelObject.cpp:149 @@ -638,7 +755,7 @@ #: src/core/SimbadSearcher.cpp:55 msgid "Network error" -msgstr "Eroare de retea" +msgstr "Eroare de reÅ£ea" #: src/core/SimbadSearcher.cpp:92 src/core/SimbadSearcher.cpp:104 msgid "Error parsing position" @@ -656,52 +773,53 @@ msgid "Found" msgstr "Găsit" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Directorul pentru capturi de imagine:" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Câmpul vizual la pornirea programului: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "DirecÈ›ia de privire la pornirea programului Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autori" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Contact" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licență" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Rulează scriptul: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Se rulează scriptul: [niciunul]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -709,16 +827,16 @@ "S-a finalizat descărcarea noilor cataloage de stele!\n" "ReporniÈ›i Stellarium pentru a le vizualiza." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." -msgstr "" +msgstr "Toate cataloagele stelare disponibile au fost instalate." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Se obÈ›ine catalogul %1 din %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -727,7 +845,7 @@ "Se descarcă %1...\n" "(PuteÈ›i închide această fereastră.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -738,7 +856,7 @@ "Numărul de stele: %2 milioane\n" "Diapazonul magnitudinii: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -747,11 +865,11 @@ "Eroare la descărcarea %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Se verifică integritatea fiÈ™ierelor..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -761,115 +879,123 @@ "FiÈ™ierul este deteriorat." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" -msgstr "" +msgstr "Algoritmul" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" -msgstr "" +msgstr "Fără corecÅ£ie" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" -msgstr "" +msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" -msgstr "" +msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" -msgstr "" +msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" -msgstr "" +msgstr "Efermide Astronomice (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" -msgstr "" +msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" -msgstr "" +msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" -msgstr "" +msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" -msgstr "" +msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" -msgstr "" +msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" -msgstr "" +msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" -msgstr "" +msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" -msgstr "" +msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" -msgstr "" +msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" -msgstr "" +msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" -msgstr "" +msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" -msgstr "" +msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" -msgstr "" +msgstr "Stephenson (1997" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" -msgstr "" +msgstr "Meeus (1998) (cu Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" -msgstr "" +msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" -msgstr "" +msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" -msgstr "" +msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" -msgstr "" +msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" -msgstr "" +msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" -msgstr "" +msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" -msgstr "" +msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -904,7 +1030,7 @@ #: src/gui/HelpDialog.cpp:168 msgid "CTRL + Up/Down" -msgstr "CTRL + Up/Down" +msgstr "CTRL + Sus/Jos" #: src/gui/HelpDialog.cpp:171 msgid "Select object" @@ -1011,7 +1137,7 @@ #: src/gui/HelpDialog.cpp:315 #, qt-format msgid "Continuous Integration: %1" -msgstr "" +msgstr "Integrare continuă: %1" #: src/gui/HelpDialog.cpp:316 src/gui/HelpDialog.cpp:317 #, qt-format @@ -1020,13 +1146,15 @@ #: src/gui/HelpDialog.cpp:318 msgid "Past Developers" -msgstr "" +msgstr "Dezvoltatori anteriori" #: src/gui/HelpDialog.cpp:319 msgid "" "Several people have made significant contributions, but are no longer " "active. Their work has made a big difference to the project:" msgstr "" +"Multe persoane au făcut contribuÅ£ii semnificative, dar nu mai sunt activi. " +"Munca lor a făcut o mare diferenţă la proiect:" #: src/gui/HelpDialog.cpp:320 #, qt-format @@ -1038,49 +1166,53 @@ msgid "OSX Developer: %1" msgstr "Dezvoltator pentru OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Fereastra de consolă a scriptului" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" -msgstr "Ferestre" +msgstr "Windows" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "SpaÈ›iu" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Fără descriere" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Fără stele căzătoare" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Rată normală" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Rata Perseidelor standard" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Rata Leonidelor excepÈ›ională" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Cea mai mare rată (Curentul Leonidelor 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "LocaÈ›ie nouă" @@ -1162,11 +1294,11 @@ #: src/gui/ScriptConsole.cpp:73 msgid "quickrun..." -msgstr "" +msgstr "rulare rapidă..." #: src/gui/ScriptConsole.cpp:74 msgid "selected text" -msgstr "" +msgstr "text selectat" #: src/gui/ScriptConsole.cpp:75 msgid "clear text" @@ -1174,68 +1306,74 @@ #: src/gui/ScriptConsole.cpp:76 msgid "clear images" -msgstr "" +msgstr "curăţă imaginile" #: src/gui/ScriptConsole.cpp:77 msgid "natural" -msgstr "" +msgstr "natural" #: src/gui/ScriptConsole.cpp:78 msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" -msgstr "" +msgstr "Universitatea Strasbourg (FranÅ£a)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" -msgstr "" +msgstr "Universitatea Harvard (USA)" #: src/gui/ShortcutsDialog.cpp:499 msgid "Action" -msgstr "" +msgstr "AcÈ›iune" #: src/gui/ShortcutsDialog.cpp:500 src/ui_shortcutsDialog.h:198 msgid "Primary shortcut" -msgstr "" +msgstr "Scurtătură primară" #: src/gui/ShortcutsDialog.cpp:501 src/ui_shortcutsDialog.h:199 msgid "Alternative shortcut" -msgstr "" +msgstr "Scurtătură alternativă" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" -msgstr "" +msgstr "unde" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" -msgstr "" +msgstr "an" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." -msgstr "Acest sistem nu susÈ›ine OpenGL." +msgstr "Acest sistem nu suportă OpenGL." + +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Soarele" @@ -1252,12 +1390,12 @@ msgstr "Pamântul" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Luna" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Marte" @@ -1307,47 +1445,47 @@ #: src/translations.h:50 msgid "Amalthea" -msgstr "" +msgstr "Amalthea" #: src/translations.h:51 msgid "Himalia" -msgstr "" +msgstr "Himalia" #: src/translations.h:52 msgid "Elara" -msgstr "" +msgstr "Elara" #: src/translations.h:53 msgid "Pasiphae" -msgstr "" +msgstr "Pasiphae" #: src/translations.h:54 msgid "Sinope" -msgstr "" +msgstr "Sinope" #: src/translations.h:55 msgid "Lysithea" -msgstr "" +msgstr "Lysithea" #: src/translations.h:56 msgid "Carme" -msgstr "" +msgstr "Carme" #: src/translations.h:57 msgid "Ananke" -msgstr "" +msgstr "Ananke" #: src/translations.h:58 msgid "Leda" -msgstr "" +msgstr "Leda" #: src/translations.h:59 msgid "Thebe" -msgstr "" +msgstr "Thebe" #: src/translations.h:60 msgid "Adrastea" -msgstr "" +msgstr "Adrastea" #. TRANSLATORS: Asteroid (9) Metis #: src/translations.h:61 src/translations.h:119 @@ -1355,7 +1493,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1365,7 +1503,7 @@ #: src/translations.h:64 msgid "Enceladus" -msgstr "Encelad" +msgstr "Enceladus" #: src/translations.h:65 msgid "Tethys" @@ -1389,7 +1527,7 @@ #: src/translations.h:70 msgid "Iapetus" -msgstr "Iapet" +msgstr "Iapetus" #: src/translations.h:71 msgid "Phoebe" @@ -1401,7 +1539,7 @@ #: src/translations.h:73 msgid "Uranus" -msgstr "Uran" +msgstr "Uranus" #: src/translations.h:74 msgid "Miranda" @@ -1429,17 +1567,17 @@ #: src/translations.h:80 msgid "Charon" -msgstr "Șaron" +msgstr "Charon" #. TRANSLATORS: Moon of Pluto (II) #: src/translations.h:82 msgid "Nix" -msgstr "" +msgstr "Nix" #. TRANSLATORS: Moon of Pluto (III) #: src/translations.h:84 msgid "Hydra (moon)" -msgstr "" +msgstr "Hydra (lună)" #: src/translations.h:85 msgid "Eris" @@ -1447,55 +1585,55 @@ #: src/translations.h:86 msgid "Triton" -msgstr "" +msgstr "Triton" #: src/translations.h:87 msgid "Nereid" -msgstr "" +msgstr "Nereid" #: src/translations.h:88 msgid "Naiad" -msgstr "" +msgstr "Naiad" #: src/translations.h:89 msgid "Thalassa" -msgstr "" +msgstr "Thalassa" #: src/translations.h:90 msgid "Despina" -msgstr "" +msgstr "Despina" #: src/translations.h:91 msgid "Galatea" -msgstr "" +msgstr "Galatea" #: src/translations.h:92 msgid "Larissa" -msgstr "" +msgstr "Larissa" #: src/translations.h:93 msgid "Proteus" -msgstr "" +msgstr "Proteus" #: src/translations.h:94 msgid "Halimede" -msgstr "" +msgstr "Halimede" #: src/translations.h:95 msgid "Psamathe" -msgstr "" +msgstr "Psamathe" #: src/translations.h:96 msgid "Sao" -msgstr "" +msgstr "Sao" #: src/translations.h:97 msgid "Laomedeia" -msgstr "" +msgstr "Laomedeia" #: src/translations.h:98 msgid "Neso" -msgstr "" +msgstr "Neso" #: src/translations.h:99 msgid "Solar System Observer" @@ -1504,22 +1642,22 @@ #. TRANSLATORS: TNO/Asteroid (90377) Sedna #: src/translations.h:102 msgid "Sedna" -msgstr "" +msgstr "Sedna" #. TRANSLATORS: TNO/Asteroid (50000) Quaoar #: src/translations.h:104 msgid "Quaoar" -msgstr "" +msgstr "Quaoar" #. TRANSLATORS: TNO/Asteroid (90482) Orcus #: src/translations.h:106 msgid "Orcus" -msgstr "" +msgstr "Orcus" #. TRANSLATORS: TNO/Asteroid (136108) Haumea #: src/translations.h:108 msgid "Haumea" -msgstr "" +msgstr "Haumea" #. TRANSLATORS: Asteroid (5) Astraea #: src/translations.h:111 @@ -1554,12 +1692,12 @@ #. TRANSLATORS: Asteroid (99942) Apophis #: src/translations.h:125 msgid "Apophis" -msgstr "Apofis" +msgstr "Apophis" #. TRANSLATORS: Asteroid (2060) Chiron #: src/translations.h:127 msgid "Chiron" -msgstr "Șiron" +msgstr "Chiron" #. TRANSLATORS: Asteroid (433) Eros #: src/translations.h:129 @@ -1574,22 +1712,22 @@ #. TRANSLATORS: Asteroid (20000) Varuna #: src/translations.h:133 msgid "Varuna" -msgstr "" +msgstr "Varuna" #. TRANSLATORS: Asteroid (136472) Makemake #: src/translations.h:135 msgid "Makemake" -msgstr "" +msgstr "Makemake" #. TRANSLATORS: Name of supernova SN 1572A and script name #: src/translations.h:138 msgid "Tycho's Supernova" -msgstr "" +msgstr "Supernova lui Tycho" #. TRANSLATORS: Name of supernova SN 1604A #: src/translations.h:140 msgid "Kepler's Supernova" -msgstr "" +msgstr "Supernova lui Kepler" #: src/translations.h:143 msgid "N" @@ -1610,35 +1748,35 @@ #. TRANSLATORS: Type of object #: src/translations.h:153 msgid "planet" -msgstr "" +msgstr "planetă" #. TRANSLATORS: Type of object #: src/translations.h:155 msgid "comet" -msgstr "" +msgstr "cometă" #. TRANSLATORS: Type of object #: src/translations.h:157 msgid "asteroid" -msgstr "" +msgstr "asteroid" #. TRANSLATORS: Type of object #: src/translations.h:159 msgid "moon" -msgstr "" +msgstr "lună" #. TRANSLATORS: Type of object #: src/translations.h:161 msgid "plutoid" -msgstr "" +msgstr "plutoid" #: src/translations.h:165 msgid "Arabic" -msgstr "" +msgstr "Arabă" #: src/translations.h:166 msgid "Aztec" -msgstr "AÈ›tecă" +msgstr "Aztecă" #: src/translations.h:167 msgid "Chinese" @@ -1653,239 +1791,270 @@ msgstr "Inuită" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Indian Vedic" + +#: src/translations.h:171 msgid "Korean" msgstr "Coreană" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakotă" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norvegiană" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polineziană" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Samită" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" -msgstr "" +msgstr "Tongan" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Occidentală" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" -msgstr "" +msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" -msgstr "" +msgstr "Copaci" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" -msgstr "" +msgstr "Uragan" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" -msgstr "" +msgstr "Ocean" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" -msgstr "" +msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" -msgstr "" +msgstr "Turul Peisajelor" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" -msgstr "" +msgstr "Eclipsă ParÅ£ială de Lună" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" -msgstr "" +msgstr "Eclipsă Totală de Lună" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" -msgstr "" +msgstr "Protector de ecran" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" -msgstr "" +msgstr "Eclipsă Solară 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" -msgstr "" +msgstr "Semn zodiacal" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" -msgstr "" +msgstr "Mercur - Răsărit ÅŸi Apus Triplu" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" -msgstr "" +msgstr "Eclipsa dublă de la Deimos în 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" -msgstr "" +msgstr "Eclipsa dublă de la Deimos în 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" -msgstr "" +msgstr "Eclipsa de la Olympus Mons - 10 Ian 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" -msgstr "" +msgstr "OcultaÅ£ia Pământ-Jupiter 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" -msgstr "" +msgstr "3 Tranzite ÅŸi 2 Eclipse de la Deimos 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" -msgstr "" +msgstr "Sistemul Solar - Protector de ecran" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" -msgstr "" +msgstr "Turul ConstelaÅ£iilor" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" -msgstr "" +msgstr "Soarele de pe alte planente" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" -msgstr "" +msgstr "Cele mai bune vederi ale Pământului de pe alte corpuri" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" -msgstr "" +msgstr "Tranzitul lui Venus" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" -msgstr "" +msgstr "Analemma" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. -#: src/translations.h:250 -msgid "Look around each installed landscape." +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" msgstr "" -#. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 -msgid "Look at each installed sky culture." +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" msgstr "" -#: src/translations.h:253 -msgid "Script to demonstrate a partial lunar eclipse." +#. TRANSLATORS: Name and description of script +#: src/translations.h:250 +msgid "Earth Events from Mars" msgstr "" -#: src/translations.h:254 -msgid "Script to demonstrate a total lunar eclipse." -msgstr "" +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Cele mai mari elongaÅ£ii ÅŸi străluciri ale Pământului de pe Marte" -#: src/translations.h:255 -msgid "A slow, infinite tour of the sky, looking at random objects." +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" msgstr "" -#: src/translations.h:256 -msgid "" -"Script to demonstrate a total solar eclipse which has happened in 2009 " -"(location=Rangpur, Bangladesh)." -msgstr "" +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 +msgid "Look around each installed landscape." +msgstr "Uită-te în jurul fiecărui peisaj instalat." -#: src/translations.h:257 -msgid "Script which runs automatically at startup" +#. TRANSLATORS: Description of the sky culture tour script. +#: src/translations.h:262 +msgid "Look at each installed sky culture." +msgstr "Uită-te la fiecare cult celest instalat." + +#: src/translations.h:263 +msgid "Script to demonstrate a partial lunar eclipse." +msgstr "Script pentru a demonstra o eclipsă parÅ£ială de lună." + +#: src/translations.h:264 +msgid "Script to demonstrate a total lunar eclipse." +msgstr "Script pentru a demonstra o eclipsă totală de lună." + +#: src/translations.h:265 +msgid "A slow, infinite tour of the sky, looking at random objects." +msgstr "Un încet, infinit tur al cerului, privind obiectele aleator." + +#: src/translations.h:266 +msgid "" +"Script to demonstrate a total solar eclipse which has happened in 2009 " +"(location=Rangpur, Bangladesh)." msgstr "" +"Script pentru a demonstra o eclipsă totală de soare care s-a petrecut în " +"2009 (locaÅ£ia=Rangpur, Bangladesh)." + +#: src/translations.h:267 +msgid "Script which runs automatically at startup" +msgstr "Script care rulează automat la pornire" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1895,1502 +2064,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." -msgstr "" +msgstr "Un tur al constelaÅ£iilor vestice." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." -msgstr "" +msgstr "Tranzitul lui Venus văzut de la Sydney, Australia, 6 iunie 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 -msgid "Andorra" +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" msgstr "" -#: src/translations.h:277 -msgid "United Arab Emirates" +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" msgstr "" -#: src/translations.h:278 +#: src/translations.h:287 +msgid "Andorra" +msgstr "Andorra" + +#: src/translations.h:288 +msgid "United Arab Emirates" +msgstr "Emiratele Arabe Unite" + +#: src/translations.h:289 msgid "Afghanistan" -msgstr "" +msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" -msgstr "" +msgstr "Antigua È™i Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" -msgstr "" +msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" -msgstr "" +msgstr "Albania" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" -msgstr "" +msgstr "Armenia" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" -msgstr "" +msgstr "Antilele Olandeze" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" -msgstr "" +msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" -msgstr "" +msgstr "Antarctica" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" -msgstr "" +msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" -msgstr "" +msgstr "Samoa americană" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" -msgstr "" +msgstr "Austria" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" -msgstr "" +msgstr "Australia" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" -msgstr "" +msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" -msgstr "" +msgstr "Azerbaidjan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" -msgstr "" +msgstr "Bosnia ÅŸi HerÅ£egovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" -msgstr "" +msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" -msgstr "" +msgstr "BangladeÈ™" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" -msgstr "" +msgstr "Belgia" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" -msgstr "" +msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" -msgstr "" +msgstr "Bulgaria" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" -msgstr "" +msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" -msgstr "" +msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" -msgstr "" +msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" -msgstr "" +msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" -msgstr "" +msgstr "Brunei Darussalam" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" -msgstr "" +msgstr "Bolivia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" -msgstr "" +msgstr "Brazilia" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" -msgstr "" +msgstr "Insulele Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" -msgstr "" +msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" -msgstr "" +msgstr "Insula Bouvet" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" -msgstr "" +msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" -msgstr "" +msgstr "Belarus" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" -msgstr "" +msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" -msgstr "" +msgstr "Canada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" -msgstr "" +msgstr "Insulele Cocos" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" -msgstr "" +msgstr "Republica Democrată Congo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" -msgstr "" +msgstr "Republica Central Africană" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" -msgstr "" +msgstr "Republica Congo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" -msgstr "" +msgstr "ElveÅ£ia" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" -msgstr "" +msgstr "Coasta de Azur" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" -msgstr "" +msgstr "Insulele Cook" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" -msgstr "" +msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" -msgstr "" +msgstr "Camerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" -msgstr "" +msgstr "China" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" -msgstr "" +msgstr "Columbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" -msgstr "" +msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" -msgstr "" +msgstr "Serbia ÅŸi Muntenegru" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" -msgstr "" +msgstr "Cuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" -msgstr "" +msgstr "Capul Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" -msgstr "" +msgstr "Insula Crăciunului" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" -msgstr "" +msgstr "Cipru" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" -msgstr "" +msgstr "Republica Cehă" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" -msgstr "" +msgstr "Germania" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" -msgstr "" +msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" -msgstr "" +msgstr "Danemarca" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" -msgstr "" +msgstr "Dominica" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" -msgstr "" +msgstr "Republica Dominicană" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" -msgstr "" +msgstr "Algeria" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" -msgstr "" +msgstr "Ecuador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" -msgstr "" +msgstr "Estonia" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" -msgstr "" +msgstr "Egipt" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" -msgstr "" +msgstr "Sahara Occidentală" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" -msgstr "" +msgstr "Eritreea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" -msgstr "" +msgstr "Spania" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" -msgstr "" +msgstr "Etiopia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" -msgstr "" +msgstr "Finlanda" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" -msgstr "" +msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" -msgstr "" +msgstr "Insulele Falkland" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" -msgstr "" +msgstr "Micronezia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" -msgstr "" +msgstr "Insulele Feroe" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" -msgstr "" +msgstr "FranÈ›a" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" -msgstr "" +msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" -msgstr "" +msgstr "Marea Britanie" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" -msgstr "" +msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" -msgstr "" +msgstr "Georgia" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" -msgstr "" +msgstr "Guiana Franceză" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" -msgstr "" +msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" -msgstr "" +msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" -msgstr "" +msgstr "Groenlanda" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" -msgstr "" +msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" -msgstr "" +msgstr "Guineea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" -msgstr "" +msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" -msgstr "" +msgstr "Guineea Ecuatorială" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" -msgstr "" +msgstr "Grecia" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" -msgstr "" +msgstr "Georgia de Sud È™i Insulele Sandwich de Sud" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" -msgstr "" +msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" -msgstr "" +msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" -msgstr "" +msgstr "Guineea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" -msgstr "" +msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" -msgstr "" +msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" -msgstr "" +msgstr "Insula Heard ÅŸi Insulele McDonald" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" -msgstr "" +msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" -msgstr "" +msgstr "CroaÈ›ia" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" -msgstr "" +msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" -msgstr "" +msgstr "Ungaria" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" -msgstr "" +msgstr "Indonezia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" -msgstr "" +msgstr "Irlanda" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" -msgstr "" +msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" -msgstr "" +msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" -msgstr "" +msgstr "Teritoriile Britanice din Oceanul Indian" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" -msgstr "" +msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" -msgstr "" +msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" -msgstr "" +msgstr "Islanda" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" -msgstr "" +msgstr "Italia" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" -msgstr "" +msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" -msgstr "" +msgstr "Iordania" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" -msgstr "" +msgstr "Japonia" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" -msgstr "" +msgstr "Kenia" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" -msgstr "" +msgstr "Kârgâzstan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" -msgstr "" +msgstr "Cambodgia" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" -msgstr "" +msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" -msgstr "" +msgstr "Comore" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" -msgstr "" +msgstr "SfinÈ›ii Kitts È™i Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" -msgstr "" +msgstr "Republica populară democrată Coreea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" -msgstr "" +msgstr "Republica Coreea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" -msgstr "" +msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" -msgstr "" +msgstr "Insulele Cayman" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" -msgstr "" +msgstr "Kazahstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" -msgstr "" +msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" -msgstr "" +msgstr "Liban" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" -msgstr "" +msgstr "Sfânta Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" -msgstr "" +msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" -msgstr "" +msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" -msgstr "" +msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" -msgstr "" +msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" -msgstr "" +msgstr "Lituania" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" -msgstr "" +msgstr "Luxemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" -msgstr "" +msgstr "Latvia" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" -msgstr "" +msgstr "Jamahiriya Arabă Libiană" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" -msgstr "" +msgstr "Morocco" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" -msgstr "" +msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" -msgstr "" +msgstr "Republica Moldova" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" -msgstr "" +msgstr "Madagascar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" -msgstr "" +msgstr "Insulele Marshall" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" -msgstr "" +msgstr "Macedonia" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" -msgstr "" +msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" -msgstr "" +msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" -msgstr "" +msgstr "Mongolia" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" -msgstr "" +msgstr "Macau" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" -msgstr "" +msgstr "Insulele Mariane de Nord" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" -msgstr "" +msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" -msgstr "" +msgstr "Mauritania" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" -msgstr "" +msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" -msgstr "" +msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" -msgstr "" +msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" -msgstr "" +msgstr "Insulele Maldive" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" -msgstr "" +msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" -msgstr "" +msgstr "Mexic" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" -msgstr "" +msgstr "Malaezia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" -msgstr "" +msgstr "Mozambic" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" -msgstr "" +msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" -msgstr "" +msgstr "Noua Caledonie" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" -msgstr "" +msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" -msgstr "" +msgstr "Insula Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" -msgstr "" +msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" -msgstr "" +msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" -msgstr "" +msgstr "Olanda" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" -msgstr "" +msgstr "Norvegia" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" -msgstr "" +msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" -msgstr "" +msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" -msgstr "" +msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" -msgstr "" +msgstr "Noua Zeelandă" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" -msgstr "" +msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" -msgstr "" +msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" -msgstr "" +msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" -msgstr "" +msgstr "Polinezia franceză" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" -msgstr "" +msgstr "Papua Noua Guinee" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" -msgstr "" +msgstr "Filipine" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" -msgstr "" +msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" -msgstr "" +msgstr "Polonia" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" -msgstr "" +msgstr "SfinÈ›ii Pierre È™i Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" -msgstr "" +msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" -msgstr "" +msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" -msgstr "" +msgstr "Teritoriile Palestiniene" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" -msgstr "" +msgstr "Portugalia" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" -msgstr "" +msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" -msgstr "" +msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" -msgstr "" +msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" -msgstr "" +msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" -msgstr "" +msgstr "România" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" -msgstr "" +msgstr "Serbia" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" -msgstr "" +msgstr "FederaÈ›ia Rusă" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" -msgstr "" +msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" -msgstr "" +msgstr "Arabia Saudită" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" -msgstr "" +msgstr "Insulele Solomon" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" -msgstr "" +msgstr "Seychelles" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" -msgstr "" +msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" -msgstr "" +msgstr "Suedia" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" -msgstr "" +msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" -msgstr "" +msgstr "Sfânta Elena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" -msgstr "" +msgstr "Slovenia" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" -msgstr "" +msgstr "Svalbard È™i Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" -msgstr "" +msgstr "Slovacia" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" -msgstr "" +msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" -msgstr "" +msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" -msgstr "" +msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" -msgstr "" +msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" -msgstr "" +msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" -msgstr "" +msgstr "São Tomé È™i Príncipe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" -msgstr "" +msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" -msgstr "" +msgstr "Republica Arabă Siriană" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" -msgstr "" +msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" -msgstr "" +msgstr "Insulele Turks È™i Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" -msgstr "" +msgstr "Ciad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" -msgstr "" +msgstr "Teritoriile Franceze de Sud" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" -msgstr "" +msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" -msgstr "" +msgstr "Tailanda" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" -msgstr "" +msgstr "Tadjikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" -msgstr "" +msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" -msgstr "" +msgstr "Timorul de Est" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" -msgstr "" +msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" -msgstr "" +msgstr "Tunisia" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" -msgstr "" +msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" -msgstr "" +msgstr "Turcia" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" -msgstr "" +msgstr "Trinidad È™i Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" -msgstr "" +msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" -msgstr "" +msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" -msgstr "" +msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" -msgstr "" +msgstr "Ucraina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" -msgstr "" +msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" -msgstr "" +msgstr "Insulele de Coastă ale Statelor Unite" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" -msgstr "" +msgstr "Statele Unite" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" -msgstr "" +msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" -msgstr "" +msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" -msgstr "" +msgstr "Vatican" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" -msgstr "" +msgstr "SfinÈ›ii Vincent È™i Grenadines" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" -msgstr "" +msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" -msgstr "" +msgstr "Insulele Virgine Britanice" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" -msgstr "" +msgstr "Insulele Virgine (SUA)" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" -msgstr "" +msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" -msgstr "" +msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" -msgstr "" +msgstr "Wallis È™i Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" -msgstr "" +msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" -msgstr "" +msgstr "Yemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" -msgstr "" +msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" -msgstr "" +msgstr "Iugoslavia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" -msgstr "" +msgstr "Africa de Sud" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" -msgstr "" +msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" -msgstr "" +msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Dată È™i oră" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Adaugă o zi siderală" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" -msgstr "" +msgstr "Adaugă o lună siderală" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Adaugă o săptămână siderală" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" -msgstr "" +msgstr "Adaugă un an sideral" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Adaugă o zi solară" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Adaugă o oră solară" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Adaugă o săptămână solară" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" -msgstr "" +msgstr "Adaugă o lună sinodică" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" -msgstr "" +msgstr "Adaugă o lună draconică" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" -msgstr "" +msgstr "Adaugă o lună anomalistică" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" -msgstr "" +msgstr "Adaugă o lună tropicală medie" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" -msgstr "" +msgstr "Adaugă un an draconic" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" -msgstr "" +msgstr "Adaugă un an tropical mediu" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "ÃŽncetineÈ™te viteza de execuÈ›ie a scriptului" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Scade viteza ceasului" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "MicÈ™orează viteza scurgerii timpului (puÈ›in)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "MăreÈ™te viteza de execuÈ›ie a scriptului" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "MăreÈ™te viteza ceasului" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "MăreÈ™te videza scurgerii timpului (puÈ›in)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" -msgstr "" +msgstr "Pauzează executarea scriptului" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" -msgstr "" +msgstr "Continuă executarea scriptului" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Setează timpul prezent" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "StabileÈ™te viteza normală de execuÈ›ie a scriptului" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Setează rata ceasului" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "StabileÈ™te rata timpului la zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" -msgstr "" +msgstr "OpreÅŸte executarea scriptului" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Scade o zi siderală" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" -msgstr "" +msgstr "Scade o lună siderală" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Scade o săptămână siderală" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" -msgstr "" +msgstr "Scade un an sideral" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Scade o zi solară" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Scade o oră solară" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Scade o săptămână solară" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" -msgstr "" +msgstr "Scade o lună sinodică" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" -msgstr "" +msgstr "Scade o lună draconică" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" -msgstr "" +msgstr "Scade o lună anomalistică" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" -msgstr "" +msgstr "Scade o lună tropicală medie" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" -msgstr "" +msgstr "Scade un an draconic" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" -msgstr "" +msgstr "Scade un an tropical mediu" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "OpÈ›iuni de afiÈ™are" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Imagine în oglindă" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Mod pe tot ecranul" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosferă" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Grilă azimutală" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Punctele cardinale" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Reprezentarea artistică a constelaÈ›iilor" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Limitele constelaÈ›iilor" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Numele constelaÈ›iilor" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Liniile constelaÈ›iilor" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Imaginile de fundal ale nebuloaselor" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" -msgstr "" +msgstr "Grila Ecliptic J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ecliptica" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ecuatorul" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Grilă ecuatorială" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Grilă ecuatorială J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Ceață" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Grilă galactică" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" -msgstr "" +msgstr "Plan galactic" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Pământ" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" -msgstr "" +msgstr "Linia orizontului" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridianul" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebuloase" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Mod de noapte" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" -msgstr "" +msgstr "Etichetele planetelor" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Orbitele planetelor" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Traseul planetei" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stelele" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" -msgstr "" +msgstr "Etichetele stelelor" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Imagine răsturnată" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Diverse" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Ascunde automat bara orizontală cu butoane" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Ascunde automat bara verticală cu butoane" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" -msgstr "" +msgstr "Acasă" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "IeÈ™ire" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" -msgstr "" +msgstr "Copiază informaÅ£iile obiectului selectat în clipboard" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Salvează captura de ecran" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Schimbă între montura ecuatorială È™i azimutală" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Schimbă vizibilitatea interfeÈ›ei grafice" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Deplasare È™i selectare" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centrează pe obiectul selectat" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Setează ca referință planeta selectată" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "UrmăreÈ™te obiectul" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "MăreÈ™te obiectul selectat" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "MicÈ™orează" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Măsura unghiului" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Marcajele busolei" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" -msgstr "" +msgstr "Arată exoplanetele" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" -msgstr "" +msgstr "Fereastra de configurare a exoplanetelor" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" -msgstr "" +msgstr "Observabilitate" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" -msgstr "" +msgstr "Fereastra de configurare a observabilităţii" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" -msgstr "" +msgstr "ConfiguraÅ£ia plugin-ului Oculare" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Vizualizarea prin ocular" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" -msgstr "" +msgstr "Arată cursorul" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" -msgstr "" +msgstr "Cadrul senzorului de imagine" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" +msgstr "Vederea Telrad" + +#: src/translations.h:651 +msgid "Select next telescope" msgstr "" -#: src/translations.h:642 +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" +msgstr "Fereastra de configurare a pulsarilor" + +#: src/translations.h:661 +msgid "Show quasars" msgstr "" -#: src/translations.h:645 +#: src/translations.h:662 msgid "Quasars configuration window" -msgstr "" +msgstr "Fereastra de configurare a quasarilor" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Fereastra de configurare a sateliÈ›ilor" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Sugestii despre sateliÈ›i" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Denumirile sateliÈ›ilor" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" +msgstr "Fereastra de configurare a Supernovelor Istorice" + +#: src/translations.h:673 +msgid "Bright Novae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Deplasează un telescop către un set dat de coordonate" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Scripturi" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" -msgstr "" +msgstr "Rulează scriptul peisajului din fiÅŸier" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" -msgstr "" +msgstr "Arată ÅŸi măreÅŸte Luna" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Fereastră de configurare" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "OpÈ›iuni dată/oră" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Fereastra de ajutor" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "OpÈ›iuni locaÈ›ie" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Fereastră de căutare" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" -msgstr "" +msgstr "Fereastra scurtăturilor" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "OpÈ›iuni de vizualizare" @@ -3409,14 +3614,14 @@ #: src/ui_helpDialogGui.h:291 src/ui_configurationDialog.h:1057 msgid "Edit keyboard shortcuts..." -msgstr "" +msgstr "Editează scurtăturile tastaturii..." #: src/ui_helpDialogGui.h:292 msgid "Refresh" msgstr "Reactualizare" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "LocaÈ›ie" @@ -3430,12 +3635,12 @@ #: src/ui_locationDialogGui.h:395 msgid "Return to default" -msgstr "" +msgstr "ÃŽntoarcere la implicit" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Șterge" @@ -3444,7 +3649,7 @@ msgstr "Adaugă la listă" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitudine:" @@ -3457,12 +3662,12 @@ "ex.: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitudine:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Altitudine:" @@ -3486,365 +3691,409 @@ msgid "Planet:" msgstr "Planetă:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Căutare obiect" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" +msgstr "Caută obiect sau poziÅ£ie" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" -msgstr "" +msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" -msgstr "" +msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" -msgstr "" +msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" -msgstr "" +msgstr "gama" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" -msgstr "" +msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" -msgstr "" +msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" -msgstr "" +msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" -msgstr "" +msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" -msgstr "" +msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" -msgstr "" +msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" -msgstr "" +msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" -msgstr "" +msgstr "miu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" -msgstr "" +msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" -msgstr "" +msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" -msgstr "" +msgstr "omicron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" -msgstr "" +msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" -msgstr "" +msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" -msgstr "" +msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" -msgstr "" +msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" -msgstr "" +msgstr "upsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" -msgstr "" +msgstr "fi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" -msgstr "" +msgstr "ci" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" -msgstr "" +msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" -msgstr "" +msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" -msgstr "" +msgstr "Litere greceÅŸti pentru denumirile Bayer" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" -msgstr "" +msgstr "Obiect" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "Ascensie/DeclinaÈ›ie (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" +msgstr "PoziÈ›ie" + +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "denumiri în engleză" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Caută în listă..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Liste" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" -msgstr "" +msgstr "Baza de date online SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" +msgstr "Extinde căutarea cu SIMBAD" + +#: src/ui_searchDialogGui.h:654 +msgid "Server:" +msgstr "Server:" + +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:626 -msgid "Server:" +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "OpÈ›iuni" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "" - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Vizualizare" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Cer" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Marcheri:" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Peisaj" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Mitologie stelară" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etichete È™i marcheri" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planete" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planete È™i sateliÈ›i" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "AfiÈ™ează planetele" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "AfiÈ™ează marcherii planetelor" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "AfiÈ™ează orbitele planetelor" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulează viteza luminii" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Redimensionează Luna" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Arată atmosfera" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" -msgstr "" +msgstr "Poluare luminoasă:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" -msgstr "" +msgstr "presiune, temperatură, coeficient de extincÅ£ie" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." -msgstr "" +msgstr "Setările refracÅ£iei/extincÅ£iei..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Scară absolută:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Scară relativă:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Sclipire:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Reduce luminozitatea stelelor slabe atunci când este vizibil un obiect " "foarte strălucitor" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adaptare oculară dinamică" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Stele căzătoare" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "ConstelaÈ›ii" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "AfiÈ™ează linii" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "AfiÈ™ează etichete" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "AfiÈ™ează limite" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "AfiÈ™ează reprezentările artistice" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" -msgstr "" +msgstr "Luminozitatea desenului:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Sfera cerească" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" -msgstr "" +msgstr "Arată linia ecuatorului" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" -msgstr "" +msgstr "Arată linia meridianului" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" -msgstr "" +msgstr "Arată linia orizontului" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" -msgstr "" +msgstr "Arată linia eclipticii" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" -msgstr "" +msgstr "Arată linia planului galactic" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "ProiecÈ›ie" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Adaugă/elimină peisaje..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "AfiÈ™ează terenul" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "FoloseÈ™te ceaÈ›a" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "FoloseÈ™te planeta È™i poziÈ›ia asociate" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "FoloseÈ™te acest peisaj ca implicit" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "FoloseÈ™te această reprezentare autohtonă ca implicită" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Vizibil" @@ -3899,7 +4148,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "DirecÈ›ia de vizualizare la pornirea Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "InformaÈ›ii despre obiectul selectat" @@ -3915,11 +4164,8 @@ msgid "Display no information" msgstr "Nu arăta informaÈ›ii" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Nimic" @@ -3933,100 +4179,100 @@ #: src/ui_configurationDialog.h:1006 msgid "Display user settings information" -msgstr "" +msgstr "AfiÅŸează informaÅ£iile despre setările utilizatorului" #: src/ui_configurationDialog.h:1008 msgid "Customized" -msgstr "" +msgstr "Personalizat" #: src/ui_configurationDialog.h:1009 msgid "Displayed fields" -msgstr "" +msgstr "Câmpuri afiÅŸate" #: src/ui_configurationDialog.h:1011 msgid "Geocentric equatorial coordinates, equinox of J2000.0" -msgstr "" +msgstr "Coordonate ecuatoriale geocentrice, echinocÅ£iul J2000.0" #: src/ui_configurationDialog.h:1013 msgid "Right ascension/Declination (J2000)" -msgstr "" +msgstr "Ascensiune dreaptă/DeclinaÅ£ie (J2000)" #: src/ui_configurationDialog.h:1015 msgid "Horizontal coordinates" -msgstr "" +msgstr "Coordonate orizontale" #: src/ui_configurationDialog.h:1017 msgid "Altitude/Azimuth" -msgstr "" +msgstr "Altitudine/Azimut" #: src/ui_configurationDialog.h:1018 msgid "Visual magnitude" -msgstr "" +msgstr "Magnitudine vizuală" #: src/ui_configurationDialog.h:1019 msgid "Absolute magnitude" -msgstr "" +msgstr "Magnitudine absolută" #: src/ui_configurationDialog.h:1020 msgid "Catalog number(s)" -msgstr "" +msgstr "Numărul(ele) catalogului" #: src/ui_configurationDialog.h:1021 #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:269 msgid "Name" -msgstr "" +msgstr "Nume" #: src/ui_configurationDialog.h:1023 msgid "Geocentric equatorial coordinates, equinox of date" -msgstr "" +msgstr "Coordonate ecuatoriale geocentrice, echinocÅ£iul datei" #: src/ui_configurationDialog.h:1025 msgid "Right ascension/Declination (of date)" -msgstr "" +msgstr "Ascensiunea dreaptă/DeclinaÅ£ia (la data)" #: src/ui_configurationDialog.h:1027 msgid "Galactic coordinates, equinox of J2000.0" -msgstr "" +msgstr "Coordonate galactice, echinocÅ£iul J2000.0" #: src/ui_configurationDialog.h:1029 msgid "Longitude/Latitude (J2000)" -msgstr "" +msgstr "Longitudine/Latitudine (J2000)" #: src/ui_configurationDialog.h:1031 msgid "Topocentric equatorial coordinates" -msgstr "" +msgstr "Coordonate ecuatoriale topocentrice" #: src/ui_configurationDialog.h:1033 msgid "Hour angle/Declination" -msgstr "" +msgstr "Ora unghiului/DeclinaÅ£ia" #: src/ui_configurationDialog.h:1034 msgid "Distance" -msgstr "" +msgstr "Distanță" #: src/ui_configurationDialog.h:1036 msgid "Angular or physical size" -msgstr "" +msgstr "Mărime unghiulară sau fizică" #: src/ui_configurationDialog.h:1038 msgid "Size" -msgstr "" +msgstr "Mărime" #: src/ui_configurationDialog.h:1040 msgid "Spectral class, nebula type, etc." -msgstr "" +msgstr "Clasa spectrală, tipul nebuloasei, etc." #: src/ui_configurationDialog.h:1042 msgid "Additional information 1" -msgstr "" +msgstr "InformaÅ£ii suplimentare 1" #: src/ui_configurationDialog.h:1046 msgid "Additional information 2" -msgstr "" +msgstr "InformaÅ£ii suplimentare 2" #: src/ui_configurationDialog.h:1047 msgid "Additional information 3" -msgstr "" +msgstr "InformaÅ£ii suplimentare 3" #: src/ui_configurationDialog.h:1048 msgid "Control" @@ -4063,7 +4309,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Data È™i ora la pornirea programului" @@ -4075,41 +4321,45 @@ msgid "Other:" msgstr "Altele:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "foloseÈ™te actualul" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "PorneÈ™te Stellarium cu data È™i ora de sistem" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Data È™i ora sistemului" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "StabileÈ™te acest moment pentru pornirea viitoare a Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Data de sistem la:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "OpÈ›iuni planetarium" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4118,52 +4368,52 @@ "proiectează imagini pe o oglindă sferică pentru sisteme de planetariu cu " "cost scăzut." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Distorsiune tip oglindă sferică" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" "Ascunde tot ce e în afara cercului central din zona principală de vizualizare" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Fereastră tip disc" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Ascunde celelalte constelaÈ›ii când executaÈ›i click pe una" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Selectează o singură constelaÈ›ie" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Aliniază etichetele la linia orizontului" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Etichete gravitaÈ›ionale" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." -msgstr "" +msgstr "Comută la afiÅŸarea fundalurilor nebuloaselor." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" -msgstr "" +msgstr "Arată butonul fundalurilor nebuloasei" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Buton comutare mod telescop" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "AfiÅŸează butoanele pentru mod telescop" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4171,92 +4421,98 @@ "Atunci când opÈ›iunea „auto micÈ™orare†este activă, aceasta va stabili È™i " "direcÈ›ia de vizualizare iniÈ›ială" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Auto micÈ™orarea conduce la direcÈ›ia de vizualizare iniÈ›ială" -#: src/ui_configurationDialog.h:1113 -msgid "Render Solar Shadows" +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1119 +msgid "Render Solar Shadows" +msgstr "Redă Umbrele Solare" + +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Capturi de ecran" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Directorul pentru capturi de ecran" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Inversează culorile" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Actualizări la catalogul de stele" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Click aici pentru a începe descărcarea" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "DescărcaÈ›i acest fiÈ™ier pentru a vedea È™i mai multe stele" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "ÃŽncepe descărcarea din nou" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Reîncearcă" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "OpreÈ™te descărcarea. Poate fi restartată mai târziu" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Anulează" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Inchide fereastra la rularea scriptului" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Rulează scriptul selectat" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "OpreÈ™te scriptul activ" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "ÃŽncarcă la pornire" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "configurează" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Principal" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "InformaÈ›ii" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigare" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Instrumente" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Extensii" @@ -4296,31 +4552,31 @@ #: src/ui_shortcutsDialog.h:196 msgid "Keyboard Shortcuts" -msgstr "" +msgstr "Scurtături de tastatură" #: src/ui_shortcutsDialog.h:200 msgid "Restore Defaults" -msgstr "" +msgstr "Restaurează implicitele" #: src/ui_shortcutsDialog.h:201 msgid "Apply" -msgstr "" +msgstr "Aplică" #: src/ui_AtmosphereDialog.h:176 msgid "Atmosphere Details" -msgstr "" +msgstr "Detaliile atmosferei" #: src/ui_AtmosphereDialog.h:178 msgid "Refraction Settings" -msgstr "" +msgstr "Setările refracÅ£iei" #: src/ui_AtmosphereDialog.h:179 msgid "Pressure (mbar):" -msgstr "" +msgstr "Presiune (mbar):" #: src/ui_AtmosphereDialog.h:180 msgid "Temperature (C):" -msgstr "" +msgstr "Temperatura (C):" #: src/ui_AtmosphereDialog.h:185 msgid "" @@ -4331,29 +4587,31 @@ #: src/ui_AtmosphereDialog.h:187 msgid "Extinction Coefficient:" -msgstr "" +msgstr "Coeficient de extincÅ£ie:" #: src/ui_AtmosphereDialog.h:189 msgid "" "Use about 0.12 for superb mountaintops, 0.2 for good rural landscape, 0.35 " "for murky conditions." msgstr "" +"Utilizează 0.12 pentru munÅ£i superbi, 0.2 pentru peisaje rurale frumoase, " +"0.35 pentru condiÅ£ii întunecate." #: src/ui_scriptConsole.h:341 msgid "Script console" -msgstr "" +msgstr "Consola scriptului" #: src/ui_scriptConsole.h:344 msgid "load script from file" -msgstr "" +msgstr "încarcă script din fiÅŸier" #: src/ui_scriptConsole.h:348 msgid "save script to file" -msgstr "" +msgstr "salvează scriptul în fiÅŸier" #: src/ui_scriptConsole.h:352 msgid "clear script" -msgstr "" +msgstr "curăţă scriptul" #: src/ui_scriptConsole.h:356 msgid "pre-process script using SSC preprocessor" @@ -4369,23 +4627,23 @@ #: src/ui_scriptConsole.h:365 msgid "run script" -msgstr "" +msgstr "rulează script" #: src/ui_scriptConsole.h:369 msgid "stop script" -msgstr "" +msgstr "opreÅŸte script" #: src/ui_scriptConsole.h:372 msgid "Script" -msgstr "" +msgstr "Script" #: src/ui_scriptConsole.h:373 msgid "Output" -msgstr "" +msgstr "IeÈ™ire" #: src/ui_scriptConsole.h:375 msgid "Cursor position" -msgstr "" +msgstr "PoziÈ›ia cursorului" #: src/ui_scriptConsole.h:377 msgid "Include dir:" @@ -4393,7 +4651,7 @@ #: src/ui_scriptConsole.h:378 msgid "..." -msgstr "" +msgstr "..." #: plugins/AngleMeasure/src/AngleMeasure.cpp:56 msgid "Angle Measure" @@ -4406,7 +4664,7 @@ #. TRANSLATORS: instructions for using the AngleMeasure plugin. #: plugins/AngleMeasure/src/AngleMeasure.cpp:307 msgid "The Angle Measure is enabled:" -msgstr "" +msgstr "Măsurătorul Unghiului este activat:" #. TRANSLATORS: instructions for using the AngleMeasure plugin. #: plugins/AngleMeasure/src/AngleMeasure.cpp:309 @@ -4426,186 +4684,187 @@ msgid "Displays compass bearing marks along the horizon" msgstr "AfiÈ™ează direcÈ›ia după busolă de-a lungul orizontului" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oculare" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" +"Te rugăm să selectezi un obiect înainte de comutarea la vederea ocular." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" -msgstr "" +msgstr "&Ocularul anterior" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" -msgstr "" +msgstr "&Ocularul următor" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" -msgstr "" +msgstr "Selectează &ocular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" -msgstr "" +msgstr "Comută &cursor" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" -msgstr "" +msgstr "Configurează &Oculare" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" -msgstr "" +msgstr "Comută &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" -msgstr "" +msgstr "Comută &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" -msgstr "" +msgstr "&CCD anterior" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" -msgstr "" +msgstr "&CCD următor" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" -msgstr "" +msgstr "&Selectează CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" -msgstr "" +msgstr "&RoteÅŸte CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" -msgstr "" +msgstr "&Resetează rotaÅ£ia" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" -msgstr "" +msgstr "Ocular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" -msgstr "" +msgstr "Ocular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" -msgstr "" +msgstr "Ocular FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" -msgstr "" +msgstr "Ocular aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" -msgstr "" +msgstr "Telescop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" -msgstr "" +msgstr "Telescop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" -msgstr "" +msgstr "MagnificaÅ£ie: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" -msgstr "" +msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" -msgstr "" +msgstr "Dimensiuni: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" -msgstr "" +msgstr "Senzor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" -msgstr "" +msgstr "Senzor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" -msgstr "" +msgstr "&Telescop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" -msgstr "" +msgstr "&Telescop anterior" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" -msgstr "" +msgstr "&Telescop următor" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:195 msgid "Previous ocular" -msgstr "" +msgstr "Ocular anterior" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:201 msgid "Next ocular" -msgstr "" +msgstr "Ocular următor" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:207 msgid "Previous lens" @@ -4617,114 +4876,119 @@ #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:219 msgid "Previous CCD frame" -msgstr "" +msgstr "Cadru CCD anterior" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:225 msgid "Next CCD frame" -msgstr "" +msgstr "Cadru CCD următor" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:231 msgid "Previous telescope" -msgstr "" +msgstr "Telescop anterior" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:237 msgid "Next telescope" -msgstr "" +msgstr "Telescop următor" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:270 msgid "Rotate the sensor frame 15 degrees counterclockwise" -msgstr "" +msgstr "RoteÅŸte cadrul senzorului la 15 grade invers acelor de ceasornic" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:283 msgid "Rotate the sensor frame 5 degrees counterclockwise" -msgstr "" +msgstr "RoteÅŸte cadrul senzorului la 5 grade invers acelor de ceasornic" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:296 msgid "Rotate the sensor frame 1 degree counterclockwise" -msgstr "" +msgstr "RoteÅŸte cadrul senzorului la 1 grad invers acelor de ceasornic" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:309 msgid "Reset the sensor frame rotation" -msgstr "" +msgstr "Resetează rotaÅ£ia cadrului senzorului" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:322 msgid "Rotate the sensor frame 1 degree clockwise" -msgstr "" +msgstr "RoteÅŸte cadrul senzorului la un grad în sensul acelor de ceasornic" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:335 msgid "Rotate the sensor frame 5 degrees clockwise" -msgstr "" +msgstr "RoteÅŸte cadrul senzorului la 5 grade în sensul acelor de ceasornic" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:348 msgid "Rotate the sensor frame 15 degrees clockwise" -msgstr "" +msgstr "RoteÅŸte cadrul senzorului la 15 grade în sensul acelor de ceasornic" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:552 msgid "Effective focal length of the ocular" -msgstr "" +msgstr "DistanÅ£a focală efectivă a ocularului" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:563 msgid "Apparent field of view of the ocular" -msgstr "" +msgstr "Câmpul aparent al ocularului" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" -msgstr "" +msgstr "RotaÈ›ie: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" -msgstr "" +msgstr "MagnificaÅ£ie asigurată de aceste binocluri" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" -msgstr "" +msgstr "Câmpul actual asigurat de aceste binoculare" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" -msgstr "" +msgstr "Plugin Oculare" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" +msgstr "Versiune" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" -msgstr "" +msgstr "Sumar" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4732,7 +4996,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4743,14 +5007,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4759,191 +5023,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" -msgstr "" +msgstr "Taste rapide" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" -msgstr "" +msgstr "Activează doar dacă obiectul este selectat" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" -msgstr "" +msgstr "Comută vederea ocularului:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" -msgstr "" +msgstr "Interfață" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" -msgstr "" +msgstr "Panou de control pe ecran" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" -msgstr "" +msgstr "FoloseÅŸte grade ÅŸi minute pentru FOV-ul CDD-ului" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" -msgstr "" +msgstr "General" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" -msgstr "" +msgstr "Oculare" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" -msgstr "" +msgstr "Adaugă" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" -msgstr "" +msgstr "Nume:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" -msgstr "" +msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" -msgstr "" +msgstr "DistanÈ›a focală:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" -msgstr "" +msgstr "Câmpul de oprire:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" -msgstr "" +msgstr "Binocluri" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" -msgstr "" +msgstr "Senzori" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" -msgstr "" +msgstr "RezoluÅ£ie x (pixeli)" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" -msgstr "" +msgstr "RezoluÅ£ie y (pixeli)" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" -msgstr "" +msgstr "ÃŽnălÅ£imea cipului (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" -msgstr "" +msgstr "Lăţimea pixelului (microni):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" -msgstr "" +msgstr "ÃŽnălÅ£imea pixelului (microni):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" -msgstr "" +msgstr "Telescoape" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" -msgstr "" +msgstr "Diametru:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" -msgstr "" +msgstr "ÃŽntoarcere orizontală" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" -msgstr "" +msgstr "ÃŽntoarcere verticală" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" -msgstr "" +msgstr "Despre" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "SateliÈ›i" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4951,117 +5224,181 @@ "Calculele poziÈ›iilor sateliÈ›ilor artificiali de pe orbita Pământului, bazate " "pe date TLE de la NORAD" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "FiÈ™ierul vechi „satellites.json†nu mai este compatibil - se va utiliza " "fiÈ™ierul implicit" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 -msgid "Catalog #" +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 +msgid "Catalog #" +msgstr "Catalog #" + +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" -msgstr "" +msgstr "Rază (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" -msgstr "" +msgstr "Rata razei (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" -msgstr "" +msgstr "Altitudine (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" -msgstr "" +msgstr "Subpunct (Lat./Long.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" -msgstr "" +msgstr "Coordonate TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" -msgstr "" +msgstr "Viteza TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." -msgstr "" +msgstr "SateliÅ£ii ÅŸi observatorul sunt în lumină solară." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." -msgstr "" +msgstr "SateliÅ£ii sunt vizibili." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." -msgstr "" +msgstr "Satelitul este eclipsat." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" -msgstr "" +msgstr "Satelitul nu este vizibil" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" -msgstr "" +msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" -msgstr "" +msgstr "Plugin SateliÅ£i" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" +"Plugin-ul SateliÅ£i prezice poziÅ£iile sateliÅ£ilor artificiali în orbita " +"Pământului." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" -msgstr "" +msgstr "Note pentru utilizatori" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" +"SateliÅ£ii ÅŸi orbitele lor sunt afiÅŸate doar atunci când observatorul este pe " +"Pământ." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5069,43 +5406,46 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" -msgstr "" +msgstr "Actualizări de date TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " "computer. This file must be in the same format as the Celestrak updates " "(see %1 for an example)." msgstr "" +"Dacă dezactivezi actualizările prin Internet, poate ai vrea să actualizezi " +"printr-un fiÅŸier de pe calcualtorul tău. FiÅŸierul trebuie să fie în acelaÅŸi " +"format ca ÅŸi actualizările Celestrak (vezi %1 pentru un exemplu)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" -msgstr "" +msgstr "Adăugare de noi sateliÅ£i" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5113,41 +5453,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" -msgstr "" +msgstr "Note tehnice" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." -msgstr "" +msgstr "Vezi %1acest document%2 pentru detalii." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" -msgstr "" +msgstr "Legături" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5155,348 +5497,393 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" -msgstr "" +msgstr "Dacă ai o întrebare, poÅ£i %1primi răspuns aici%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." -msgstr "" +msgstr "Raportările de bug pot fi făcute %1aici%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" -msgstr "" +msgstr "Actualizările prin internet dezactivate" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." -msgstr "" +msgstr "Actualizare..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" -msgstr "" +msgstr "Următoarea actualizare: < 1 minut" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" -msgstr "" +msgstr "Următoarea actualizare: %1 minute" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" +msgstr "Următoarea actualizare: %1 ore" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" +msgstr "Eroare la actualizare" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" -msgstr "" +msgstr "[sursă nouă]" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Actualizează acum" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Actualizare din fiÅŸiere" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" -msgstr "" +msgstr "[eroare de calcul al orbitei]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" -msgstr "" +msgstr "[toate afişăte]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" +msgstr "[toate]" + +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" -msgstr "" +msgstr "Selectează fiÅŸierul de actualizare TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." -msgstr "" +msgstr "Datele se descarcă..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" +"Stellarium descarcă date de sateliÅ£i din sursele de actualizare. Te rugăm să " +"aÅŸtepÅ£i..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." -msgstr "" +msgstr "Selectează sursa fiÅŸierului TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." -msgstr "" +msgstr "Se procesează datele..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." -msgstr "" +msgstr "Nu s-a putut descărca date. ÃŽncercă mai târziu." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" -msgstr "" +msgstr "Numărul catalogului: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" -msgstr "" +msgstr "Configurarea sateliÅ£ilor" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" +msgstr "Ultima actualizare:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 -msgid "Update frequency (hours):" +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 +msgid "Update frequency (hours):" +msgstr "FrecvenÅ£a actualizării (ore):" + +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" -msgstr "" +msgstr "Etichete" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" -msgstr "" +msgstr "Liniile orbitelor" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" -msgstr "" +msgstr "Numărul segmentelor:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" -msgstr "" +msgstr "DuraÅ£ia unui singur segment în secunde" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" -msgstr "" +msgstr "Lungimea segmentului (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" -msgstr "" +msgstr "Restaurează setările implicite" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" -msgstr "" +msgstr "Salvează setările ca implicite" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" -msgstr "" +msgstr "Setări" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" -msgstr "" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Adaugă mai mulÅ£i sateliÅ£i" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" -msgstr "" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Åžterge sateliÅ£ii selectaÅ£i" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" -msgstr "" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Salvează modificările" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" -msgstr "" +msgstr "Numărul catalogului:" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" -msgstr "" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" +msgstr "AfiÅŸează sateliÅ£ii selectaÅ£i" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" -msgstr "" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" +msgstr "AfiÈ™at" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" +msgstr "Orbita" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" +msgstr "Descriere:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "Grupuri:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" -msgstr "" +msgstr "Adaugă sursă nouă" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" -msgstr "" +msgstr "Åžterge sursa selectată" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" -msgstr "" +msgstr "Surse" #: plugins/Satellites/src/ui_satellitesImportDialog.h:212 msgid "More Satellites" -msgstr "" +msgstr "Mai mulÅ£i sateliÅ£i" #: plugins/Satellites/src/ui_satellitesImportDialog.h:214 msgid "Get data from update sources" -msgstr "" +msgstr "Preia date de la sursele de actualizări" #: plugins/Satellites/src/ui_satellitesImportDialog.h:215 #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:525 @@ -5505,12 +5892,12 @@ #: plugins/Satellites/src/ui_satellitesImportDialog.h:216 msgid "New satellites" -msgstr "" +msgstr "SateliÅ£i noi" #: plugins/Satellites/src/ui_satellitesImportDialog.h:217 #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:534 msgid "Mark all" -msgstr "" +msgstr "Marchează tot" #: plugins/Satellites/src/ui_satellitesImportDialog.h:218 #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:535 @@ -5520,13 +5907,13 @@ #: plugins/Satellites/src/ui_satellitesImportDialog.h:219 #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:536 msgid "Discard" -msgstr "" +msgstr "Renunță" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Controlul telescopului" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5534,12 +5921,12 @@ "Acest modul permite Stellarium să transmită comenzi de ghidare unui telescop " "pe o montură computerizată (un „telescop GoToâ€)." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Deplasează telescopul #%1 către obiectul selectat" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5547,35 +5934,35 @@ #: plugins/TelescopeControl/src/gui/TelescopeConfigurationDialog.cpp:150 msgid "Add New Telescope" -msgstr "" +msgstr "Adaugă un telescop nou" #: plugins/TelescopeControl/src/gui/TelescopeConfigurationDialog.cpp:160 msgid "Configure Telescope" -msgstr "" +msgstr "Configurează telescopul" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:56 msgid "N/A" -msgstr "" +msgstr "N/A" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:57 msgid "Starting" -msgstr "" +msgstr "Se începe" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:58 msgid "Connecting" -msgstr "" +msgstr "Se conectează" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:59 msgid "Connected" -msgstr "" +msgstr "Conectat" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:60 msgid "Disconnected" -msgstr "" +msgstr "Deconectat" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:61 msgid "Stopped" -msgstr "" +msgstr "Oprit" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:238 msgid "Telescope Control plug-in" @@ -5586,20 +5973,20 @@ #: plugins/SolarSystemEditor/src/gui/SolarSystemManagerWindow.cpp:97 #, qt-format msgid "Version %1" -msgstr "" +msgstr "Versiunea %1" #. TRANSLATORS: Symbol for "number" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:265 msgid "#" -msgstr "" +msgstr "#" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:267 msgid "Status" -msgstr "" +msgstr "Stare" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:268 msgid "Type" -msgstr "" +msgstr "Tip" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:284 #, qt-format @@ -5627,12 +6014,12 @@ #. TRANSLATORS: Telescope connection type #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:310 msgid "local, Stellarium" -msgstr "" +msgstr "local, Stellarium" #. TRANSLATORS: Telescope connection type #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:314 msgid "local, external" -msgstr "" +msgstr "local, extern" #. TRANSLATORS: Telescope connection type #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:318 @@ -5642,44 +6029,44 @@ #. TRANSLATORS: Telescope connection type #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:322 msgid "virtual" -msgstr "" +msgstr "virtual" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:744 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:395 msgid "Start" -msgstr "" +msgstr "PorneÈ™te" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:745 msgid "Start the selected local telescope" -msgstr "" +msgstr "PorneÅŸte telescopul local selectat" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:750 msgid "Stop" -msgstr "" +msgstr "OpreÈ™te" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:751 msgid "Stop the selected local telescope" -msgstr "" +msgstr "OpreÅŸte telescopul local selectat" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:756 msgid "Connect" -msgstr "" +msgstr "Conectează" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:757 msgid "Connect to the selected telescope" -msgstr "" +msgstr "Conectează-te la telescopul selectat" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:762 msgid "Disconnect" -msgstr "" +msgstr "Deconectează" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:763 msgid "Disconnect from the selected telescope" -msgstr "" +msgstr "Deconectează-te de la telescopul selectat" #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:784 msgid "Select a directory" -msgstr "" +msgstr "AlegeÈ›i un dosar" #: plugins/TelescopeControl/src/ui_slewDialog.h:287 msgid "Slew telescope to" @@ -5687,7 +6074,7 @@ #: plugins/TelescopeControl/src/ui_slewDialog.h:289 msgid "There are no active devices." -msgstr "" +msgstr "Nu sunt dispozitive active." #: plugins/TelescopeControl/src/ui_slewDialog.h:290 msgid "Slew telescope to coordinates" @@ -5695,39 +6082,39 @@ #: plugins/TelescopeControl/src/ui_slewDialog.h:291 msgid "De&clination (J2000):" -msgstr "" +msgstr "De&clinaÅ£ie (J2000):" #: plugins/TelescopeControl/src/ui_slewDialog.h:292 msgid "&Right Ascension (J2000):" -msgstr "" +msgstr "&Ascensiune dreaptă (J2000):" #: plugins/TelescopeControl/src/ui_slewDialog.h:293 msgid "&Current object" -msgstr "" +msgstr "&Obiect curent" #: plugins/TelescopeControl/src/ui_slewDialog.h:295 msgid "Hours-minutes-seconds format" -msgstr "" +msgstr "Format ore-secunde-minute" #: plugins/TelescopeControl/src/ui_slewDialog.h:297 msgid "&HMS" -msgstr "" +msgstr "&HMS" #: plugins/TelescopeControl/src/ui_slewDialog.h:299 msgid "Degrees-minutes-seconds format" -msgstr "" +msgstr "Format grade-minute-secunde" #: plugins/TelescopeControl/src/ui_slewDialog.h:301 msgid "&DMS" -msgstr "" +msgstr "&DMS" #: plugins/TelescopeControl/src/ui_slewDialog.h:303 msgid "Decimal degrees" -msgstr "" +msgstr "Grade decimale" #: plugins/TelescopeControl/src/ui_slewDialog.h:305 msgid "D&ecimal" -msgstr "" +msgstr "D&ecimal" #: plugins/TelescopeControl/src/ui_slewDialog.h:306 msgid "&Slew" @@ -5735,15 +6122,15 @@ #: plugins/TelescopeControl/src/ui_slewDialog.h:307 msgid "Configure &telescopes..." -msgstr "" +msgstr "Configurează &telescoape..." #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:471 msgid "Telescope Configuration" -msgstr "" +msgstr "Configurarea telescopului" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:473 msgid "Telescope controlled by:" -msgstr "" +msgstr "Telescop controlat de:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:475 msgid "" @@ -5753,7 +6140,7 @@ #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:477 msgid "Stellarium, directly through a serial port" -msgstr "" +msgstr "Stellarium, conectat direct prin port serial" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:479 msgid "" @@ -5771,11 +6158,11 @@ #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:483 msgid "Telescope properties" -msgstr "" +msgstr "Proprietăţile telescopului" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:485 msgid "Connection delay:" -msgstr "" +msgstr "ÃŽntârzierea conexiunii:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:487 msgid "" @@ -5790,7 +6177,7 @@ #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:491 msgid "J2000 (default)" -msgstr "" +msgstr "J2000 (implicit)" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:492 msgid "Equinox of the date (JNow)" @@ -5808,23 +6195,23 @@ #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:497 msgid "Device settings" -msgstr "" +msgstr "Setările dispozitivului" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:498 msgid "Serial port:" -msgstr "" +msgstr "Port serial:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:499 msgid "Device model:" -msgstr "" +msgstr "Model dispozitiv:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:500 msgid "Connection settings" -msgstr "" +msgstr "Setările conexiunii" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:501 msgid "Host:" -msgstr "" +msgstr "Gazdă:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:503 msgid "" @@ -5833,11 +6220,11 @@ #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:505 msgid "TCP port:" -msgstr "" +msgstr "Port TCP:" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:506 msgid "User interface settings" -msgstr "" +msgstr "Setările interfeÅ£ei utilizatorului" #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:508 msgid "Show circles with fixed angular size around the telescope reticle" @@ -5865,27 +6252,27 @@ #: plugins/TelescopeControl/src/ui_telescopeDialog.h:397 msgid "Configure the selected telescope" -msgstr "" +msgstr "Configurează telescopul selectat" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:399 msgid "Configure" -msgstr "" +msgstr "Configurează" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:401 msgid "Add a new telescope" -msgstr "" +msgstr "Adaugă un telescop nou" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:405 msgid "Remove the selected telescope" -msgstr "" +msgstr "Åžterge telescopul selectat" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:409 msgid "GUI" -msgstr "" +msgstr "GUI" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:410 msgid "Show telescope labels" -msgstr "" +msgstr "Arată etichetele telescopului" #: plugins/TelescopeControl/src/ui_telescopeDialog.h:411 msgid "Show telescope reticles" @@ -5926,62 +6313,62 @@ "modului de afiÈ™are a orei È™i datei pe bara de jos." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6135,7 +6522,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6153,7 +6540,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6169,11 +6556,11 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "InterfaÈ›a textuală a utilizatorului" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6181,144 +6568,144 @@ "Implementarea modulului interfeÈ›ei textuale a utilizatorului (ITU) de " "versiunea 0.9.x, utilizate în sisteme planetarium" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Limba" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6355,22 +6742,22 @@ "finalizată." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6539,36 +6926,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6586,7 +6980,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6600,14 +6994,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6615,8 +7009,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6634,29 +7029,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Actualizare din surse de internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6672,51 +7144,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6836,11 +7318,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6848,137 +7330,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "u.a." -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6986,49 +7472,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7044,185 +7619,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7373,7 +7942,7 @@ #: plugins/Observability/src/ui_ObservabilityDialog.h:363 msgid "Today's ephemeris (rise, set, and transit times)" -msgstr "" +msgstr "Efermidele de astăzi (răsărit, apus, timpuri de tranzit)" #: plugins/Observability/src/ui_ObservabilityDialog.h:364 msgid "Dates of Acronychal and Cosmical rise/set" @@ -7393,23 +7962,23 @@ #: plugins/Observability/src/ui_ObservabilityDialog.h:370 msgid "Font color and size" -msgstr "" +msgstr "Culoarea ÅŸi dimensiunea fontului" #: plugins/Observability/src/ui_ObservabilityDialog.h:371 msgid "Red" -msgstr "" +msgstr "RoÈ™u" #: plugins/Observability/src/ui_ObservabilityDialog.h:372 msgid "Green" -msgstr "" +msgstr "Verde" #: plugins/Observability/src/ui_ObservabilityDialog.h:373 msgid "Blue" -msgstr "" +msgstr "Albastru" #: plugins/Observability/src/ui_ObservabilityDialog.h:374 msgid "Font Size" -msgstr "" +msgstr "Dimensiunea fontului" #: plugins/Observability/src/ui_ObservabilityDialog.h:375 msgid "Observing conditions" @@ -7483,6 +8052,12 @@ #~ msgid "Correct for light travel time: " #~ msgstr "Corectează pentru timpul de călătorie al luminii: " +#~ msgid "Nebulas background images" +#~ msgstr "Imaginile de fundal ale nebuloaselor" + +#~ msgid "Nebulas" +#~ msgstr "Nebuloase" + #~ msgid ":" #~ msgstr ":" @@ -7689,3 +8264,98 @@ #~ msgid "Plugin Key Bindings" #~ msgstr "CombinaÈ›iile de taste utilizate în cadrul modulelor" + +#~ msgid "Show and edit all keyboard shortcuts" +#~ msgstr "Arată ÅŸi editează toate scurtăturile tastaturii" + +#, qt-format +#~ msgid "Galactic longitude/latitude (J2000): %1/%2" +#~ msgstr "Longitudine/Latitudine galactică (J2000): %1/%2" + +#~ msgid "F7" +#~ msgstr "F7" + +#~ msgid "0 deg." +#~ msgstr "0 grade" + +#~ msgid "Sun altitude at twilight" +#~ msgstr "Altitudinea Soarelui la crepuscul" + +#~ msgid "A Quintuple eclipse from Deimos 2027" +#~ msgstr "O eclipsă cvintuplă de pe Deimos 2027" + +#~ msgid "Transit of Venus as seen from Sydney Australia 6th June 2012." +#~ msgstr "Tranzitul lui Venus văzut din Sydney, Australia, 6 iunie 2012." + +#~ msgid "Angle Measure Plugin" +#~ msgstr "Plugin de măsurare a ungiului" + +#~ msgid "Compass Marks Plugin" +#~ msgstr "Pluginul punctelor cardinale" + +#~ msgid "Exoplanets Plugin" +#~ msgstr "Pluginul exoplanetelor" + +#~ msgid "Oculars Plugin" +#~ msgstr "Plugin al ocularelor" + +#~ msgid "Observability analysis Plugin" +#~ msgstr "Plugin de analiză a observabilităţii" + +#~ msgid "Historical Supernovae Plugin" +#~ msgstr "Plugin al supernovelor istorice" + +#~ msgid "Satellites Plugin" +#~ msgstr "Plugin al sateliÅ£ilor" + +#~ msgid "Telescope Control Plugin" +#~ msgstr "Plugin de control al telescopului" + +#~ msgid "Edit Primary Shortcut" +#~ msgstr "Editează scurtătura primară" + +#~ msgid "Edit Alternative Shortcut" +#~ msgstr "Editează scurtătura alternativă" + +#~ msgid "Magnification provided by this ocular/telescope combination" +#~ msgstr "MagnificaÅ£ie asigurată de această combinaÅ£ie ocular/telescop" + +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "ActualizaÅ£i %1/%2 satelit(Å£i); %3 lipsă" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Actualizează listele TLE din surse de internet" + +#~ msgid "TLE data:" +#~ msgstr "Date TLE:" + +#~ msgid "Phobos Eclipses the sun as seen from Olympus Mons Jan 10, 2068." +#~ msgstr "" +#~ "Phobos eclipsând Soarele, aÅŸa cum s-ar vedea de pe Olympus Mons , 10 Ian, " +#~ "2068." + +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Protector de ecran cu diverse evenimente în Sistemul Solar. 171 evenimente " +#~ "în total!" + +#~ msgid "A tour via western constellations." +#~ msgstr "Un tur în constelaÅ£iile vestice." + +#~ msgid "" +#~ "Flash of supernova which was observed by Tycho Brahe in 1572 year. For demos " +#~ "need enable plugin for supernovae." +#~ msgstr "" +#~ "Strălucirea supernovei care a fost observată de Tycho Brahe în anul 1572. " +#~ "Pentru demo-uri, pluginul pentru supernove necesită activat." + +#~ msgid "Quasars Plugin" +#~ msgstr "Plugin Quasari" + +#~ msgid "Pulsars Plugin" +#~ msgstr "Plugin Pulsari" + +#~ msgid "Actual field of view provided by this ocular/telescope combination" +#~ msgstr "Câmpul de vedere actual asigurat de combinaÅ£ia ocular/telescop." diff -Nru stellarium-0.12.1/po/stellarium/ru.po stellarium-0.12.4/po/stellarium/ru.po --- stellarium-0.12.1/po/stellarium/ru.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ru.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-03 14:24+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-14 20:59+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-15 05:06+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Меридиан" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Эклиптика" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Экватор" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Горизонт" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "ПлоÑкоÑÑ‚ÑŒ Галактики" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Ðвтор: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "МеÑтоположение: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 м" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Планета: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Тип: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Ð—Ð²Ñ‘Ð·Ð´Ð½Ð°Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð°: %1 (оÑлаблена до %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Ð—Ð²Ñ‘Ð·Ð´Ð½Ð°Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð°: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Размер: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Галактика" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "РаÑÑеÑнное звёздное Ñкопление" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Шаровое звёздное Ñкопление" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "ТуманноÑÑ‚ÑŒ" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "ÐŸÐ»Ð°Ð½ÐµÑ‚Ð°Ñ€Ð½Ð°Ñ Ñ‚ÑƒÐ¼Ð°Ð½Ð½Ð¾ÑÑ‚ÑŒ" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Ð¢Ñ‘Ð¼Ð½Ð°Ñ Ñ‚ÑƒÐ¼Ð°Ð½Ð½Ð¾ÑÑ‚ÑŒ" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Звёздное Ñкопление, ÑвÑзанное Ñ Ñ‚ÑƒÐ¼Ð°Ð½Ð½Ð¾Ñтью" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ÐеизвеÑтно" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Ðедокументированный тип" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "ÐбÑÐ¾Ð»ÑŽÑ‚Ð½Ð°Ñ Ð·Ð²Ñ‘Ð·Ð´Ð½Ð°Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð°: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "ЭклиптичеÑкие топоцентр. координаты (по дате): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Ðаклонение Ñклиптики (по дате, Ð´Ð»Ñ Ð—ÐµÐ¼Ð»Ð¸): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "РаÑÑтоÑние: %1 а.е. (%2 км)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "РаÑÑтоÑние: %1 а.е." -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Видимый диаметр: %1, Ñ ÐºÐ¾Ð»ÑŒÑ†Ð°Ð¼Ð¸: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Видимый диаметр: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Звёздный период обращениÑ: %1 дней (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Звёздные Ñутки: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Средние Ñолнечные Ñутки: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Фазовый угол: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "ЭлонгациÑ: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Фаза: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "ОÑвещено: %1%" @@ -204,7 +204,7 @@ msgstr "Временное обозначение: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "звезда" @@ -219,49 +219,127 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Ð’Ð¸Ð´Ð¸Ð¼Ð°Ñ Ð·Ð²Ñ‘Ð·Ð´Ð½Ð°Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð°: %1 (оÑлабленнаÑ)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "ÑÑ€ÑƒÐ¿Ñ‚Ð¸Ð²Ð½Ð°Ñ Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð°" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "пульÑÐ¸Ñ€ÑƒÑ‰Ð°Ñ Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð°" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "вращающаÑÑÑ Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð°" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "катаклизмичеÑÐºÐ°Ñ Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð°" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "затменно-Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð°" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "Ð¿ÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð°" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "Ð´Ð²Ð¾Ð¹Ð½Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð°" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Тип: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" "Ð—Ð²Ñ‘Ð·Ð´Ð½Ð°Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð°: %1 (оÑлаблена до %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Ð—Ð²Ñ‘Ð·Ð´Ð½Ð°Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð°: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" +"Диапазон звёздных величин: %1%2%3 (ФотометричеÑÐºÐ°Ñ ÑиÑтема: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" +"Диапазон звёздных величин: %1%2%3/%4 (ФотометричеÑÐºÐ°Ñ ÑиÑтема: " +"%5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Спектральный клаÑÑ: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "РаÑÑтоÑние: %1 Ñв. лет" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ПараллакÑ: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Эпоха минимума: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Эпоха макÑимума: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Период: %1 дней" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Следующий минимум блеÑка: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Следующий макÑимум блеÑка: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "ПродолжительноÑÑ‚ÑŒ затмениÑ: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð½Ð°Ñ€Ð°ÑтаниÑ: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Планетолёт" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "ÐšÐ¾Ñ€Ñ€ÐµÐºÑ†Ð¸Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°. ИÑпользуйте только еÑли вы знаете, что вы делаете!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -273,7 +351,7 @@ "Эйнштейна подтверждена древними Ñолнечными затмениÑми (%1). ПодробноÑти " "Ñмотрите %2здеÑÑŒ%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -282,7 +360,7 @@ "Это ÑмпиричеÑкое уравнение было опубликовано Г. Ðœ. КлеменÑом в Ñтатье О " "ÑиÑтеме аÑтрономичеÑких конÑтант (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -290,12 +368,12 @@ "Astronomical Formulae for Calculators. It was also adopted in the " "PC program SunTracker Pro." msgstr "" -"Эта формула оÑнована на изучении поÑÑ‚-1650 наблюдений Солнца, Луны и планет " -"СпенÑером ДжонÑом (%1) и иÑпользована Жаном МеёÑом в его книге " -"ÐÑтрономичеÑкие формулы Ð´Ð»Ñ ÐºÐ°Ð»ÑŒÐºÑƒÐ»Ñторов. Кроме того Ñта формула " -"иÑпользуетÑÑ Ð² компьютерной программе SunTracker Pro." +"Эта формула оÑнована на изучении СпенÑером ДжонÑом (%1) наблюдений Солнца, " +"Луны и планет, проиÑходивших поÑле 1650 г., и иÑпользована Жаном МеёÑом в " +"его книге ÐÑтрономичеÑкие формулы Ð´Ð»Ñ ÐºÐ°Ð»ÑŒÐºÑƒÐ»Ñторов. Кроме того Ñта " +"формула иÑпользуетÑÑ Ð² компьютерной программе SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -305,7 +383,7 @@ "ÐÑтрономичеÑких Ñфемеридах и в Каноне Ñолнечных затмений " "Муке и МеёÑа (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -316,7 +394,7 @@ "5 - и 10-дневных интервалах от 601 г. до н.Ñ. по 1649 г. н.Ñ. Это же " "Ñоотношение было также неÑвно принÑто в таблице Ñизигий Голдштейна (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -326,7 +404,7 @@ "Это уравнение было опубликовано П. Ðœ. Мюллером и Ф. Р. СтивенÑоном в Ñтатье " "УÑкорение Земли и Луны из ранних аÑтрономичеÑких наблюдений (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -335,7 +413,7 @@ "Это уравнение было опубликовано Ф. Р. СтивенÑоном в Ñтатье " "ДотелеÑкопичеÑкие аÑтрономичеÑкие Ð½Ð°Ð±Ð»ÑŽÐ´ÐµÐ½Ð¸Ñ (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -348,7 +426,7 @@ "аппрокÑÐ¸Ð¼Ð°Ñ†Ð¸Ñ Ð´Ð»Ñ ÐºÐ¾Ñ€Ñ€ÐµÐºÑ†Ð¸Ð¸ дельта T E.T.-U.T. за период 1800-1975 г.г. " "(%1) как аппрокÑÐ¸Ð¼Ð°Ñ†Ð¸Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ…, опубликованным Броувером (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -358,7 +436,7 @@ "Планетные программы и таблицы Ñ -4000 по +2800 годы (1986) и в " "компьютерной программе-планетарии RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -369,12 +447,12 @@ "ДолгоÑрочные Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð²Ñ€Ð°Ñ‰ÐµÐ½Ð¸Ñ Ð—ÐµÐ¼Ð»Ð¸ Ñ 700 г. до н.Ñ. до 1980 г. " "н.Ñ. (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" "Этот алгоритм иÑпользуетÑÑ Ð² компьютерной программе-планетарии Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -384,7 +462,7 @@ "Ñолнечных затмений: 1986-2035 (1987) и его ПÑтидеÑÑтилетнем каноне " "лунных затмений: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -394,7 +472,7 @@ "Ñолнечном затмении за период между 2137 годом до нашей Ñры и 1715 годом " "нашей Ñры." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -407,7 +485,7 @@ "г.г. (%1) как аппрокÑÐ¸Ð¼Ð°Ñ†Ð¸Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ…, приведённых СтивенÑоном и МорриÑом " "(1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -417,7 +495,7 @@ "верÑии лунной теории ELP 2000-85 в их книге Лунные таблицы и программы Ñ " "4000 г. до н.Ñ. до 8000 г. н.Ñ. (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -428,7 +506,7 @@ "Ñтатье ДолгоÑрочные флуктуации во вращении Земли: Ñ 700 г. до н.Ñ. до " "1990 г. н.Ñ. (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -437,7 +515,7 @@ "Ф. Р. СтивенÑон опубликовал Ñту формулу в Ñвоей книге ИÑторичеÑкие " "Ð·Ð°Ñ‚Ð¼ÐµÐ½Ð¸Ñ Ð¸ вращение Земли (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -448,7 +526,7 @@ "Шапрон, Шапрон-Таузи и Франко (1997) Ð´Ð»Ñ Ð´Ð°Ñ‚ за пределами диапазона " "1620..2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -457,7 +535,7 @@ "Группа Динамики Солнечной СиÑтемы Лаборатории Реактивного Ð”Ð²Ð¸Ð¶ÐµÐ½Ð¸Ñ (JPL) " "NASA иÑпользует Ñут формулу на их интерактивном вебÑайте %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -466,7 +544,7 @@ "Этот полином был опубликован Ж. МеёÑом и Л. СимонÑом в Ñтатье " "Полиномиальное приближение к дельта T, 1620-2000 Ð.Э. (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -476,7 +554,7 @@ "перÑональном компьютере (2000) предÑтавлен проÑтой полином 3-го " "порÑдка, подходÑщий Ð´Ð»Ñ Ð½ÐµÐ´Ð°Ð²Ð½ÐµÐ³Ð¾ прошлого." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -488,7 +566,7 @@ "(2002). Он оÑнован на данных из книги Жана МеёÑа ÐÑтрономичеÑкие " "алгоритмы (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -499,7 +577,7 @@ "Ñтатье ИÑторичеÑкие Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ¸ земных чаÑов %1T и раÑчёт " "затмений (%2) Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñмм в (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -512,7 +590,7 @@ "коÑинуÑом и квадратным уравнением. Это уравнение оÑновано на возможной " "периодичноÑти, опиÑанной СтивенÑоном (%2). Подробнее Ñмотрите %3здеÑÑŒ%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -528,11 +606,34 @@ "иÑпользуетÑÑ Ð´Ð»Ñ Ñ€Ð°Ñчёта Ñолнечных, лунных и планетных Ñфемерид в программе " "SOLEX." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "ИÑпользуетÑÑ Ð¿Ð¾ умолчанию." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Это решение Б. Банжевича, оÑнованное на работе СтивенÑона и МорриÑона " +"(1984), было опубликовано в Ñтатье Древние Ð·Ð°Ñ‚Ð¼ÐµÐ½Ð¸Ñ Ð¸ датировка Ð¿Ð°Ð´ÐµÐ½Ð¸Ñ " +"Вавилона (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Это решение С. ИÑлама, Ðœ. Садика и Ðœ. С. Куреши, оÑнованное на МеёÑе и " +"СимонÑе (2000), было опубликовано в Ñтатье ÐœÐ¸Ð½Ð¸Ð¼Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ¸ в " +"полиноминальном приближении Ð´Ð»Ñ Ð´ÐµÐ»ÑŒÑ‚Ð° Т (%1) и переÑмотрено Саной " +"ИÑламом в 2013 году." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -541,15 +642,15 @@ "Это ÐºÐ²Ð°Ð´Ñ€Ð°Ñ‚Ð¸Ñ‡Ð½Ð°Ñ Ñ„Ð¾Ñ€Ð¼ÑƒÐ»Ð° Ð´Ð»Ñ Ð²Ñ‹Ñ‡Ð¸ÑÐ»ÐµÐ½Ð¸Ñ %1T Ñ ÐºÐ¾Ñффициентами, заданными " "пользователем." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Ошибка" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "Ñ Ð±ÐµÑÑмыÑленным Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð²Ð½Ðµ Ñтого диапазона" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -557,21 +658,22 @@ "Ñо Ñредней ошибкой менее Ñекунды, макÑимальной ошибкой в 1,9 Ñек и " "беÑÑмыÑленным Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð²Ð½Ðµ Ñтого диапазона" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "Ñ Ð½ÑƒÐ»ÐµÐ²Ñ‹Ð¼ значением вне Ñтого диапазона" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "Ñ Ñ‚Ð¸Ð¿Ð¸Ñ‡Ð½Ð¾Ð¹ 1-Ñекундной точноÑтью и нулевым значением вне Ñтого диапазона" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "ДопуÑтимый диапазон применениÑ: между %1 и %2 годами, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "ДопуÑтимый диапазон применениÑ: между %1 и %2 годами." @@ -739,52 +841,53 @@ msgid "Found" msgstr "Ðайдено Ñовпадение" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Выберите папку Ð´Ð»Ñ Ñнимков Ñкрана" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Ðачальное поле зрениÑ: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Ðачальное направление обзора аз/выÑ: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Ðвторы" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "ÐžÐ±Ñ€Ð°Ñ‚Ð½Ð°Ñ ÑвÑзь" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Ðвтор" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ЛицензиÑ" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Запущенный Ñценарий: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Запущенный Ñценарий: [нет]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -792,16 +895,16 @@ "Загрузка новых каталогов звёзд завершена.\n" "ПерезапуÑтите Stellarium Ð´Ð»Ñ Ð¸Ñ… отображениÑ." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Ð’Ñе доÑтупные звёздные каталоги уÑтановлены." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Получение каталога %1 из %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -810,7 +913,7 @@ "Загрузка %1...\n" "(Ð’Ñ‹ можете закрыть Ñто окно.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -821,7 +924,7 @@ "КоличеÑтво звёзд: %2 миллиона\n" "Диапазон звёздных величин: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -830,11 +933,11 @@ "Ошибка при загрузке %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Проверка целоÑтноÑти файлов..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -844,115 +947,123 @@ "Файл повреждён." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Ðлгоритм" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Без коррекции" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Шох (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "ÐšÐ»ÐµÐ¼ÐµÐ½Ñ (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "ÐœÐС (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "ÐÑтрономичеÑкие Эфемериды (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Тукерман (1962, 1964) и Голдштейн (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Мюллер и СтивенÑон (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "СтивенÑон (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Шмадель и Зах (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "МорриÑон и СтивенÑон (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "СтивенÑон и МорриÑон (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "СтивенÑон и Холден (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "ЭÑпенак (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "БорковÑки (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Шмадель и Зах (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Шапрон-Таузи и Шапрон (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "СтивенÑон и МорриÑон (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "СтивенÑон (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "ÐœÐµÑ‘Ñ (1998) (Ñ Ð¨Ð°Ð¿Ñ€Ð¾Ð½, Шапрон-Таузи и Франку (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "ÐœÐµÑ‘Ñ Ð¸ Ð¡Ð¸Ð¼Ð¾Ð½Ñ (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Монтенбрук и Пфлегер (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Рейнгольд и Дершовиц (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "МорриÑон и СтивенÑон (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "ЭÑпенак и ÐœÐµÑ‘Ñ (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Ð ÑŒÐµÐ¹Ñ (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Банжевич (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "ИÑлам, Садик и Куреши (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "ПользовательÑкое уравнение %1T" @@ -1122,49 +1233,53 @@ msgid "OSX Developer: %1" msgstr "OSX-разработчик: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Окно конÑоли Ñценариев" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Окна" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Пробел" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1 м" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ðет опиÑаниÑ" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Без метеоров" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Ðормальный ход" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Стандартный поток ПерÑеид" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Метеорный ливень" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "ВыдающееÑÑ Ð´Ð»Ñ Ð›ÐµÐ¾Ð½Ð¸Ð´" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "МакÑимальный (Леониды, 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Ðовое меÑтоположение" @@ -1268,19 +1383,19 @@ msgid "starchart" msgstr "Ð·Ð²Ñ‘Ð·Ð´Ð½Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð°" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Ошибка поиÑка SIMBAD" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "ПоиÑк SIMBAD" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "УниверÑитет СтраÑбурга (ФранциÑ)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "ГарвардÑкий универÑитет (СШÐ)" @@ -1296,30 +1411,38 @@ msgid "Alternative shortcut" msgstr "Ðльтернативное Ñокращение" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "ПользовательÑкое уравнение Ð´Ð»Ñ %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Типичное уравнение Ð´Ð»Ñ Ð²Ñ‹Ñ‡Ð¸ÑÐ»ÐµÐ½Ð¸Ñ %1T выглÑдит так:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "где" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "год" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Эта ÑиÑтема не поддерживает OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Ваша платформа не поддерживает минимально необходимый OpenGL 1.2. " +"ПожалуйÑта, обновите драйверы Ð´Ð»Ñ Ð²Ð¸Ð´ÐµÐ¾ÐºÐ°Ñ€Ñ‚Ñ‹." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Солнце" @@ -1336,12 +1459,12 @@ msgstr "ЗемлÑ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Луна" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "МарÑ" @@ -1439,7 +1562,7 @@ msgstr "Метида" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Сатурн" @@ -1737,194 +1860,223 @@ msgstr "ЭÑкимоÑÑкаÑ" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "ИндийÑÐºÐ°Ñ Ð²ÐµÐ´Ð¸Ñ‡ÐµÑкаÑ" + +#: src/translations.h:171 msgid "Korean" msgstr "КорейÑкаÑ" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Лакота" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Маори" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Ðавахо" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "СкандинавÑкаÑ" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "ПолинезийÑкаÑ" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "СаамÑкаÑ" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Тупи-гуарани" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "ТонганÑкаÑ" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "ЗападнаÑ" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Герен" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "ДеревьÑ" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Ураган" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Океан" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Гархинг" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Тур по ландшафтам" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "ЧаÑтное лунное затмение" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Полное лунное затмение" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Хранитель Ñкрана" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Солнечное затмение 2009 г." #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Стартовый Ñценарий" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Зодиак" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Тройной воÑход и закат на Меркурии" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Двойное затмение на ДеймоÑе в 2017 году" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Двойное затмение на ДеймоÑе в 2031 году" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Затмение 10 ÑÐ½Ð²Ð°Ñ€Ñ 2068 года Ñ Ð³Ð¾Ñ€Ñ‹ Олимп" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Покрытие Земли и Юпитера в 2048 году" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 Ð¿Ñ€Ð¾Ñ…Ð¾Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¸ 2 Ð·Ð°Ñ‚Ð¼ÐµÐ½Ð¸Ñ Ñ Ð”ÐµÐ¹Ð¼Ð¾Ñа в 2027 году" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Ð¡Ð¾Ð±Ñ‹Ñ‚Ð¸Ñ Ð¡Ð¾Ð»Ð½ÐµÑ‡Ð½Ð¾Ð¹ ÑиÑтемы" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Тур по ÑозвездиÑм" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Солнце Ñ Ñ€Ð°Ð·Ð½Ñ‹Ñ… планет" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Лучшие виды Земли Ñ Ð´Ñ€ÑƒÐ³Ð¸Ñ… тел" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Прохождение Венеры" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Ðналемма" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Тур по культурам неба" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Ð¡Ð¾Ð±Ñ‹Ñ‚Ð¸Ñ Ð—ÐµÐ¼Ð»Ð¸ Ñ ÐœÐµÑ€ÐºÑƒÑ€Ð¸Ñ" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Ð¡Ð¾Ð±Ñ‹Ñ‚Ð¸Ñ Ð—ÐµÐ¼Ð»Ð¸ Ñ Ð’ÐµÐ½ÐµÑ€Ñ‹" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Ð¡Ð¾Ð±Ñ‹Ñ‚Ð¸Ñ Ð—ÐµÐ¼Ð»Ð¸ Ñ ÐœÐ°Ñ€Ñа" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Ðаибольшие Ñлонгации и ÑркоÑÑ‚ÑŒ Земли Ñ ÐœÐ°Ñ€Ñа" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Ðаибольшие Ñлонгации Земли и МарÑа Ñ Ð®Ð¿Ð¸Ñ‚ÐµÑ€Ð°" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "ПоÑмотрите вокруг каждого уÑтановленного ландшафта." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "ПоÑмотрите каждую уÑтановленную культуру неба." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Сценарий Ð´Ð»Ñ Ð´ÐµÐ¼Ð¾Ð½Ñтрации чаÑтного лунного затмениÑ." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Сценарий Ð´Ð»Ñ Ð´ÐµÐ¼Ð¾Ð½Ñтрации полного лунного затмениÑ." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" "МедленнаÑ, беÑÐºÐ¾Ð½ÐµÑ‡Ð½Ð°Ñ ÑкÑкурÑÐ¸Ñ Ð¿Ð¾ небу Ñ Ð¿Ñ€Ð¾Ñмотром Ñлучайных объектов." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1932,11 +2084,11 @@ "Сценарий Ð´Ð»Ñ Ð´ÐµÐ¼Ð¾Ð½Ñтрации полного Ñолнечного затмениÑ, которое произошло в " "2009 году (меÑто - Рангпур, Бангладеш)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Сценарий, который запуÑкаетÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑки при запуÑке" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1945,7 +2097,7 @@ "Этот Ñценарий демонÑтрирует Зодиак - линию Ñозвездий, через которые Солнце " "проходит по небеÑной Ñфере в течении года." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1954,7 +2106,7 @@ "определенных меÑтах на планете Солнце воÑходит и заходит три раза в течении " "меркурианÑкого днÑ." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1963,7 +2115,7 @@ "затмевает Солнце первым. ДейÑтвие проиÑходит между Скорпионом и Стрельцом 26 " "Ð°Ð¿Ñ€ÐµÐ»Ñ 2017 года." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1972,11 +2124,11 @@ "затмевает Солнце первым. ДейÑтвие проиÑходит между Тельцом и Близнецами 23 " "Ð¸ÑŽÐ»Ñ 2031 года." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "Вид Ð·Ð°Ñ‚Ð¼ÐµÐ½Ð¸Ñ Ð¡Ð¾Ð»Ð½Ñ†Ð° ФобоÑом Ñ Ð³Ð¾Ñ€Ñ‹ Олимп 10 ÑÐ½Ð²Ð°Ñ€Ñ 2068 года." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1986,7 +2138,7 @@ "Ð¿Ð¾ÐºÑ€Ñ‹Ñ‚Ð¸Ñ Ð¾Ð±Ð¾Ð¸Ñ… планет в один и тот же день очень редки. Вот одно из таких " "покрытий в режиме реального времени, которое произойдёт 23 ÑÐ½Ð²Ð°Ñ€Ñ 2048 года." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2002,39 +2154,39 @@ "Ñ Ð´Ð¸Ñка МарÑа он вÑÑ‘ ещё оказываетÑÑ Ð² тени планеты и только ÑпуÑÑ‚Ñ " "некоторое Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð½ попадает на Ñвет." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Хранитель Ñкрана Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼Ð¸ ÑобытиÑми в Солнечной ÑиÑтеме. Ð’Ñего 171 " -"Ñобытие!" +"Хранитель Ñкрана Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼Ð¸ ÑобытиÑми в Солнечной ÑиÑтеме. Ð’Ñего 187 " +"Ñобытий!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "ЭкÑкурÑÐ¸Ñ Ð¿Ð¾ западным ÑозвездиÑм." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Вид Солнца на больших планетах Солнечной ÑиÑтемы и Плутоне." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "Лучшие в 21-м веке виды Земли Ñ Ð´Ñ€ÑƒÐ³Ð¸Ñ… тел Солнечной ÑиÑтемы." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "Прохождение Венеры, каким оно было видно 6 Ð¸ÑŽÐ½Ñ 2012 года из СиднеÑ, " "ÐвÑтралиÑ." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "ДемонÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð°Ð½Ð°Ð»ÐµÐ¼Ð¼Ñ‹ - пути Солнца по небу в течение года." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2042,1468 +2194,1504 @@ "Ð’Ñпышка Ñверхновой, которую наблюдал Тихо Браге в 1572 году. Плагин " "\"ИÑторичеÑкие Ñверхновые\" должен быть включён." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "Ðаибольшие Ñлонгации и ÑркоÑÑ‚ÑŒ Земли Ñ ÐœÐ°Ñ€Ñа в 2000-3000 годах." + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "Ðаибольшие Ñлонгации Земли Ñ Ð®Ð¿Ð¸Ñ‚ÐµÑ€Ð° в 2000-3000 годах." + +#: src/translations.h:287 msgid "Andorra" msgstr "Ðндорра" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Объединенные ÐрабÑкие Эмираты" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ÐфганиÑтан" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Ðнтигуа и Барбуда" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "ÐнгильÑ" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "ÐлбаниÑ" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ÐрмениÑ" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "ÐидерландÑкие Ðнтилы" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Ðнгола" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Ðнтарктида" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Ðргентина" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "ÐмериканÑкие Самоа" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ÐвÑтриÑ" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ÐвÑтралиÑ" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Ðруба" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Ðзербайджан" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "БоÑÐ½Ð¸Ñ Ð¸ Герцеговина" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "БарбадоÑ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Бангладеш" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "БельгиÑ" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркина ФаÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "БолгариÑ" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Бахрейн" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Бурунди" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Бенин" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Бермуды" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Бруней ДаруÑÑалам" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "БоливиÑ" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "БразилиÑ" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Багамы" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "ОÑтров Буве" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "БотÑвана" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "БеларуÑÑŒ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Белиз" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Канада" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "КокоÑовые оÑтрова" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "ДемократичеÑÐºÐ°Ñ Ð ÐµÑпублика Конго" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Центрально-ÐфриканÑÐºÐ°Ñ Ð ÐµÑпублика" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "РеÑпублика Конго" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "ШвейцариÑ" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Берег Слоновой КоÑти" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "ОÑтрова Кука" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Чили" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Камерун" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Китай" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "КолумбиÑ" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "КоÑта-Рика" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Ð¡ÐµÑ€Ð±Ð¸Ñ Ð¸ ЧерногориÑ" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Куба" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Кабо-Верде" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "ОÑтров РождеÑтва" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Кипр" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ЧешÑÐºÐ°Ñ Ñ€ÐµÑпублика" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "ГерманиÑ" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Джибути" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "ДаниÑ" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Доминика" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "ДоминиканÑÐºÐ°Ñ Ñ€ÐµÑпублика" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ðлжир" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Эквадор" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "ЭÑтониÑ" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Египет" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Ð—Ð°Ð¿Ð°Ð´Ð½Ð°Ñ Ð¡Ð°Ñ…Ð°Ñ€Ð°" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "ЭритреÑ" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "ИÑпаниÑ" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "ЭфиопиÑ" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ФинлÑндиÑ" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Фиджи" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ФолклендÑкие оÑтрова" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "МикронезиÑ" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "ФарерÑкие оÑтрова" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "ФранциÑ" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Габон" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "ВеликобританиÑ" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Гренада" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ГрузиÑ" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "ФранцузÑÐºÐ°Ñ Ð“Ð²Ð¸Ð½ÐµÑ" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Гана" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Гибралтар" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "ГренландиÑ" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "ГамбиÑ" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "ГвинеÑ" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Гваделупа" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Ð­ÐºÐ²Ð°Ñ‚Ð¾Ñ€Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ Ð“Ð²Ð¸Ð½ÐµÑ" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "ГрециÑ" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Ð®Ð¶Ð½Ð°Ñ Ð”Ð¶Ð¾Ñ€Ð´Ð¶Ð¸Ñ Ð¸ Южные Сандвичевы ОÑтрова" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Гватемала" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Гуам" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "ГвинеÑ-БиÑÑау" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Гвиана" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Гонконг" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "ОÑтрова Херд и Макдональд" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ГондураÑ" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "ХорватиÑ" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Гаити" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "ВенгриÑ" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "ИндонезиÑ" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ИрландиÑ" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Израиль" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ИндиÑ" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "БританÑкие территории в ИндийÑком океане" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ирак" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Иран" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ИÑландиÑ" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ИталиÑ" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Ямайка" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "ИорданиÑ" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "ЯпониÑ" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "КениÑ" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "КыргызÑтан" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Камбоджа" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Кирибати" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "КоморÑкие ОÑтрова" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Сен-ÐšÐ¸Ñ‚Ñ Ð¸ ÐевиÑ" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "КорейÑÐºÐ°Ñ Ðародно-ДемократичеÑÐºÐ°Ñ Ð ÐµÑпублика" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "РеÑпублика КореÑ" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Кувейт" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Каймановы оÑтрова" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "КазахÑтан" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "ЛаоÑ" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Ливан" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Санта ЛючиÑ" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Лихтенштейн" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Шри-Ланка" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "ЛибериÑ" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ЛеÑото" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Литва" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ЛюкÑембург" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "ЛатвиÑ" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "ЛивийÑÐºÐ°Ñ ÐрабÑÐºÐ°Ñ Ð”Ð¶Ð°Ð¼Ð°Ñ…Ð¸Ñ€Ð¸Ñ" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Марокко" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Монако" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "МолдавиÑ" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "МадагаÑкар" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Маршалловы оÑтрова" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "МакедониÑ" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Мали" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Бирма" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "МонголиÑ" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Макао" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Северные МарианÑкие оÑтрова" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Мартиника" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "МавританиÑ" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "МонÑеррат" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Мальта" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "МавтритиÑ" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Мальдивы" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Малави" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "МекÑика" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "МалайзиÑ" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Мозамбик" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "ÐамибиÑ" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "ÐÐ¾Ð²Ð°Ñ ÐšÐ°Ð»ÐµÐ´Ð¾Ð½Ð¸Ñ" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Ðигер" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "ОÑтров Ðорфолк" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "ÐигериÑ" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Ðикарагуа" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Ðидерланды" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "ÐорвегиÑ" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Ðепал" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Ðауру" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "ÐиуÑ" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "ÐÐ¾Ð²Ð°Ñ Ð—ÐµÐ»Ð°Ð½Ð´Ð¸Ñ" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Оман" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Панама" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Перу" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "ФранцузÑÐºÐ°Ñ ÐŸÐ¾Ð»Ð¸Ð½ÐµÐ·Ð¸Ñ" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Папуа-ÐÐ¾Ð²Ð°Ñ Ð“Ð²Ð¸Ð½ÐµÑ" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Филиппины" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ПакиÑтан" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Польша" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Сен-Пьер и Микелон" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "ПиткÑрн" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "ПуÑрто-Рико" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "ПалеÑтинÑÐºÐ°Ñ Ð°Ð²Ñ‚Ð¾Ð½Ð¾Ð¼Ð¸Ñ" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "ПортугалиÑ" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Палау" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Парагвай" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Катар" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Реюньон" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "РумыниÑ" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "СербиÑ" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "РоÑÑийÑÐºÐ°Ñ Ð¤ÐµÐ´ÐµÑ€Ð°Ñ†Ð¸Ñ" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Руанда" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "СаудовÑÐºÐ°Ñ ÐравиÑ" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Соломоновы оÑтрова" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "СейшельÑкие оÑтрова" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Судан" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ШвециÑ" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Сингапур" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "ОÑтров СвÑтой Елены" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "СловениÑ" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Свальбард и Ян-Майен" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "СловакиÑ" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Сьерра-Леоне" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Сан-Марино" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Сенегал" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Сомали" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Суринам" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Сан-Томе и ПринÑили" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Сальвадор" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "СириÑ" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Свазиленд" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Ð¢Ñ‘Ñ€ÐºÑ Ð¸ КайкоÑ" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Чад" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "ФранцузÑкие Южные Территории" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Того" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Таиланд" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ТаджикиÑтан" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Токелау" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "ВоÑточный Тимор" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ТуркмениÑтан" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ТуниÑ" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Тонга" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "ТурциÑ" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Тринидад и Тобаго" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Тувалу" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Тайвань" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "ТанзаниÑ" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Украина" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Уганда" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Внешние малые оÑтрова СШÐ" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Соединенные Штаты Ðмерики" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Уругвай" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "УзбекиÑтан" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Ватикан" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Сент-ВинÑент и Гренадины" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "ВенеÑуÑла" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "БританÑкие ВиргинÑкие оÑтрова" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "ВиргинÑкие оÑтрова СШÐ" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Вьетнам" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Вануту" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Ð£Ð¾Ð»Ð»Ð¸Ñ Ð¸ Футуна" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Самоа" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Йемен" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Майотта" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ЮгоÑлавиÑ" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Южно-ÐфриканÑÐºÐ°Ñ Ð ÐµÑпублика" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "ЗамбиÑ" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Зимбабве" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Дата и времÑ" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Добавить 1 звёздный день" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Добавить 1 звёздный меÑÑц" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Добавить 1 звёздную неделю" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Добавить 1 звёздный год" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Добавить 1 звёздное Ñтолетие" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Добавить 1 Ñолнечный день" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Добавить 1 Ñолнечный чаÑ" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Добавить 1 Ñолнечную неделю" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Добавить лунный меÑÑц" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Добавить драконичеÑкий меÑÑц" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Добавить аномалиÑтичеÑкий меÑÑц" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Добавить Ñредний тропичеÑкий меÑÑц" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Добавить драконичеÑкий год" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Добавить Ñредний тропичеÑкий год" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Добавить 1 Ñредее тропичеÑкое Ñтолетие" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Замедлить выполнение ÑценариÑ" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Замедлить ход времени" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Замедлить течение времени (Ñлегка)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "УÑкорить выполнение ÑценариÑ" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "УÑкорить ход времени" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "УÑкорить течение времени (Ñлегка)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "ПриоÑтановить выполнение ÑценариÑ" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Продолжить выполнение ÑценариÑ" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Текущее времÑ" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "УÑтановить нормальную ÑкороÑÑ‚ÑŒ Ð´Ð»Ñ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ ÑценариÑ" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Ðормальный ход времени" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "ОÑтановка времени" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "ОÑтановить работу ÑценариÑ" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "ВычеÑÑ‚ÑŒ 1 звёздный день" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "ВычеÑÑ‚ÑŒ 1 звёздный меÑÑц" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "ВычеÑÑ‚ÑŒ 1 звёздную неделю" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "ВычеÑÑ‚ÑŒ 1 звёздный год" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "ВычеÑÑ‚ÑŒ 1 звёздное Ñтолетие" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "ВычеÑÑ‚ÑŒ 1 Ñолнечный день" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "ВычеÑÑ‚ÑŒ 1 Ñолнечный чаÑ" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "ВычеÑÑ‚ÑŒ 1 Ñолнечную неделю" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "ВычеÑÑ‚ÑŒ лунный меÑÑц" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "ВычеÑÑ‚ÑŒ драконичеÑкий меÑÑц" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "ВычеÑÑ‚ÑŒ аномалиÑтичеÑкий меÑÑц" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "ВычеÑÑ‚ÑŒ Ñредний тропичеÑкий меÑÑц" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "ВычеÑÑ‚ÑŒ драконичеÑкий год" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "ВычеÑÑ‚ÑŒ Ñредний тропичеÑкий год" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "ВычеÑÑ‚ÑŒ 1 Ñредее тропичеÑкое Ñтолетие" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Параметры отображениÑ" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Отразить по горизонтали" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "ПолноÑкранный режим" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "ÐтмоÑфера" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "ÐÐ·Ð¸Ð¼ÑƒÑ‚Ð°Ð»ÑŒÐ½Ð°Ñ Ñетка" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Стороны Ñвета" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Ð˜Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñозвездий" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Границы Ñозвездий" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "ÐÐ°Ð·Ð²Ð°Ð½Ð¸Ñ Ñозвездий" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Линии Ñозвездий" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Фоновые Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ‚ÑƒÐ¼Ð°Ð½Ð½Ð¾Ñтей" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Фоновые Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¾Ð±ÑŠÐµÐºÑ‚Ð¾Ð² глубокого коÑмоÑа" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "ЭклиптичеÑÐºÐ°Ñ Ñетка J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ð›Ð¸Ð½Ð¸Ñ Ñклиптики" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ð›Ð¸Ð½Ð¸Ñ Ñкватора" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ð­ÐºÐ²Ð°Ñ‚Ð¾Ñ€Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ Ñетка" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ð­ÐºÐ²Ð°Ñ‚Ð¾Ñ€Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ Ñетка J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Дымка" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "ГалактичеÑÐºÐ°Ñ Ñетка" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "ПлоÑкоÑÑ‚ÑŒ Галактики" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "ЗемлÑ" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Ð›Ð¸Ð½Ð¸Ñ Ð³Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Ð›Ð¸Ð½Ð¸Ñ Ð¼ÐµÑ€Ð¸Ð´Ð¸Ð°Ð½Ð°" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "ТуманноÑти" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Объекты глубокого коÑмоÑа" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Ðочной режим" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "ÐÐ°Ð·Ð²Ð°Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½ÐµÑ‚" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Орбиты планет" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Следы планет" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Звёзды" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "ÐÐ°Ð·Ð²Ð°Ð½Ð¸Ñ Ð·Ð²Ñ‘Ð·Ð´" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Отразить по вертикали" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Прочее" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "ÐвтоÑкрытие горизонтальной панели" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "ÐвтоÑкрытие вертикальной панели" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Перейти к дому" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Выход" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Копирование информации о выбранном объекте в буфер обмена" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Сохранить Ñнимок Ñкрана" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Переключение между Ñкваториальным и азимутальным воÑхождением" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Отобразить панель инÑтрументов" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Перемещение и выбор" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Центрировать выбранный объект" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Сделать выбранную планету домашней" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Следить за объектом" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Увеличить выбранный объект" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Отдалить" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Угломер" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "КомпаÑ" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Показать Ñкзопланеты" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Окно наÑтройки плагина \"Экзопланеты\"" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "УÑÐ»Ð¾Ð²Ð¸Ñ Ð²Ð¸Ð´Ð¸Ð¼Ð¾Ñти" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Окно наÑтройки плагина \"УÑÐ»Ð¾Ð²Ð¸Ñ Ð²Ð¸Ð´Ð¸Ð¼Ð¾Ñти\"" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¿Ð»Ð°Ð³Ð¸Ð½Ð°" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Вид в окулÑÑ€" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Показать перекреÑтиÑ" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "КонтекÑтное меню окулÑров" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Кадр ÑенÑора" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Поле Ð·Ñ€ÐµÐ½Ð¸Ñ Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Выбрать Ñледующий телеÑкоп" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Выбрать Ñледующий окулÑÑ€" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Выбрать предыдущий телеÑкоп" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Выбрать предыдущий окулÑÑ€" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Показать пульÑары" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Окно наÑтройки плагина \"ПульÑары\"" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Показать квазары" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Окно наÑтройки плагина \"Квазары\"" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Окно наÑтройки плагина \"Спутники\"" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "ИÑкуÑÑтвенные Ñпутники Земли" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "ÐÐ°Ð·Ð²Ð°Ð½Ð¸Ñ Ñпутников" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Окно наÑтройки плагина \"ИÑторичеÑкие Ñверхновые\"" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Окно наÑтройки плагина \"Яркие новые\"" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "ÐавеÑти телеÑкоп по указанным координатам" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Показать ÑтатиÑтику визуализации" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Сценарии" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Выполнить Ñценарий пейзажей из файла" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Показать и маÑштабировать Луну" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Окно наÑтройки" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Окно даты/времени" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Окно Ñправки" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Окно меÑтоположениÑ" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Окно поиÑка" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Окно клавиатурных Ñокращений" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Окно наÑтроек неба и наблюдениÑ" @@ -3529,7 +3717,7 @@ msgstr "Обновить" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "МеÑто" @@ -3545,10 +3733,10 @@ msgid "Return to default" msgstr "ВернутÑÑ Ðº началу" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Удалить" @@ -3557,7 +3745,7 @@ msgstr "Добавить в ÑпиÑок" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Широта:" @@ -3570,12 +3758,12 @@ "например, +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Долгота:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Ð’Ñ‹Ñота:" @@ -3599,365 +3787,414 @@ msgid "Planet:" msgstr "Планета:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "ПоиÑк объекта" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Ðайти объект или меÑтоположение" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "ИÑпользуйте клавишу табулÑции Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð° найденных Ñлементов" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "йота" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "альфа" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "бета" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "гамма" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "дельта" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "ÑпÑилон" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "дзета" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "Ñта" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "Ñ‚Ñта" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "каппа" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "лÑмбда" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "мю" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ню" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "кÑи" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "омикрон" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "пи" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ро" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "Ñигма" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "тау" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ипÑилон" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "фи" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "хи" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "пÑи" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "омега" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "ГречеÑкие буквы Ð´Ð»Ñ Ð¾Ð±Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ð¹ Байера" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Объект" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "ПрÑм. воÑÑ…./Склон. (J2000.0)" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "МеÑтоположение" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Ðекоторые объекты могут быть найдены поÑле активации ÑоответÑтвующих плагинов" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "английÑкие названиÑ" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "ПоиÑк по ÑпиÑку..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "СпиÑки" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "ÐžÐ½Ð»Ð°Ð¹Ð½Ð¾Ð²Ð°Ñ Ð°ÑтрономичеÑÐºÐ°Ñ Ð±Ð°Ð·Ð° данных SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "РаÑширить поиÑк Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Сервер:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Параметры поиÑка" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "ИÑпользовать Ð°Ð²Ñ‚Ð¾Ð·Ð°Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ от начала Ñлов" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Параметры" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "английÑкие названиÑ" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "ПоиÑк по ÑпиÑку..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "СпиÑки" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Вид" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Ðебо" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "ОбозначениÑ" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Ландшафт" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Ð—Ð½Ð°Ð½Ð¸Ñ Ð¾ звёздах" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "ÐÐ°Ð·Ð²Ð°Ð½Ð¸Ñ Ð¸ маркеры" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Планеты" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"ÐÐ°Ð·Ð²Ð°Ð½Ð¸Ñ Ð¸ маркеры Ð´Ð»Ñ Ð¾Ð±ÑŠÐµÐºÑ‚Ð¾Ð² глубокого коÑмоÑа (звездных Ñкоплений, " +"галактик и туманноÑтей)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "ОГК" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Планеты и Ñпутники" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Показывать планеты" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Показывать метки планет" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Показывать орбиты планет" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Моделировать ÑкороÑÑ‚ÑŒ Ñвета" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "МаÑштабирование Луны" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "ÐвтоматичеÑки изменÑÑ‚ÑŒ ландшафт когда изменÑетÑÑ Ð¿Ð»Ð°Ð½ÐµÑ‚Ð°" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Ðвтовыбор ландшафтов" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Показать атмоÑферу" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "ЗаÑветка:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "давление, температура, коÑффициент ÑкÑтинкции" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "ÐаÑтройки рефракции/ÑкÑтинкции..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "ÐбÑолютное увеличение:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "ОтноÑительное увеличение:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "ЯркоÑÑ‚ÑŒ Млечного пути:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Мерцание:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Приглушать неÑркие звёзды на фоне очень Ñркого объекта" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "ДинамичеÑÐºÐ°Ñ Ð°Ð´Ð°Ð¿Ñ‚Ð°Ñ†Ð¸Ñ Ñ‡ÑƒÐ²ÑтвительноÑти" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Метеоры" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "КоличеÑтво метеоров в чаÑ" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "ZHR:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" "Предельные звёздные величины (Ð´Ð»Ñ Ð½Ð°Ð±Ð»ÑŽÐ´ÐµÐ½Ð¸Ð¹ в бинокль или невооруженным " "глазом)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Предельные звёздные величины" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Звёзды до звёздной величины" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "ÐŸÑ€ÐµÐ´ÐµÐ»ÑŒÐ½Ð°Ñ Ð·Ð²Ñ‘Ð·Ð´Ð½Ð°Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð° звёзд" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "ТуманноÑти до звёздной величины" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"ÐŸÑ€ÐµÐ´ÐµÐ»ÑŒÐ½Ð°Ñ Ð·Ð²Ñ‘Ð·Ð´Ð½Ð°Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð° объектов глубокого коÑмоÑа (звездных Ñкоплений, " +"галактик и туманноÑтей)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "СозвездиÑ" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Показывать линии" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Показывать названиÑ" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Показать границы" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Показывать изображениÑ" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "ЯркоÑÑ‚ÑŒ изображений:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ÐебеÑÐ½Ð°Ñ Ñфера" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Показать линию Ñкватора" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Показать линию меридиана" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Показать линию горизонта" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Показать линию Ñклиптики" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Показать линию плоÑкоÑти Галактики" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "ПроекциÑ" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Добавление/Удаление ландшафтов..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Показывать землю" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Показать дымку" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "ИÑпользовать ÑоответÑтвующую планету и положение" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "ИÑпользовать Ñтот ландшафт по умолчанию" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "ИÑпользовать наÑтройки ÑркоÑти Ð´Ð»Ñ Ð»Ð°Ð½Ð´ÑˆÐ°Ñ„Ñ‚Ð¾Ð²" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "ИÑпользовать Ñту культуру неба по умолчанию" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Видимое" @@ -4010,7 +4247,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Ðаправление взглÑда при Ñтарте Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ выбранном объекте" @@ -4026,11 +4263,8 @@ msgid "Display no information" msgstr "Ðе отображать информации" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Отключена" @@ -4173,7 +4407,7 @@ msgstr "Ñекунды" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Ðачальные дата и времÑ" @@ -4185,41 +4419,45 @@ msgid "Other:" msgstr "Другой:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "ИÑпользовать текущую меÑтную дату и времÑ" + +#: src/ui_configurationDialog.h:1073 msgid "use current" -msgstr "иÑпользовать текущий" +msgstr "иÑпользовать текущие" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "ЗапуÑтить Stellarium в указанный день и времÑ" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "СиÑтемные дата и времÑ" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "УÑтановить Ñледующее Ð²Ñ€ÐµÐ¼Ñ Ð´Ð½Ñ Ð¿Ñ€Ð¸ запуÑке Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "СиÑÑ‚ÐµÐ¼Ð½Ð°Ñ Ð´Ð°Ñ‚Ð°:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "ÐšÐ¾Ñ€Ñ€ÐµÐºÑ†Ð¸Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð¸" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Редактирование уравнениÑ" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Параметры планетариÑ" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4227,51 +4465,51 @@ "ИÑкажение ÑферичеÑкого зеркала иÑпользуетÑÑ Ð¿Ñ€Ð¸ проецировании Stellarium на " "ÑферичеÑкое зеркало в недорогих ÑиÑтемах планетариев." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "ИÑкажение ÑферичеÑкого зеркала" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "МаÑкировать вÑÑ‘ вне центрального круга Ð¿Ð¾Ð»Ñ Ð·Ñ€ÐµÐ½Ð¸Ñ" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "ДиÑковое поле зрениÑ" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "СпрÑтать ÑÐ¾Ð·Ð²ÐµÐ·Ð´Ð¸Ñ Ð¿Ñ€Ð¸ клике" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Поштучный выбор Ñозвездий" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Выравнивать подпиÑи по горизонту" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Ðегоризонтальные подпиÑи объектов" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Переключение Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ„Ð¾Ð½Ð¾Ð²Ñ‹Ñ… изображений туманноÑтей." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Показывать кнопку фона туманноÑтей" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Кнопки Ð¿ÐµÑ€ÐµÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ð¿ÐµÑ€ÐµÐ²Ð¾Ñ€Ð¾Ñ‚Ð° по вертикали/горизонтали" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" -msgstr "Показать копки переворота" +msgstr "Показать кнопки переворота" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4279,93 +4517,101 @@ "ЕÑли выбрано, клавиша Ð°Ð²Ñ‚Ð¾Ð¾Ñ‚Ð´Ð°Ð»ÐµÐ½Ð¸Ñ Ñ‚Ð°ÐºÐ¶Ðµ уÑтанавливает первоначальное " "направление наблюдениÑ" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" "ÐвтоматичеÑкое отдаление уÑтанавливает первоначальное направление наблюдениÑ" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Показывать Ñолнечные тени на планетах и лунах (Ð”Ð»Ñ Ñтой функции необходим " +"OpenGL верÑии 2 или выше)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Ð’Ð¸Ð·ÑƒÐ°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ñолнечных теней" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Снимки Ñкрана" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Папка Ñнимков Ñкрана" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Обратить цвета" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "ÐžÐ±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ð° звёзд" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Ðажми тут Ð´Ð»Ñ Ð½Ð°Ñ‡Ð°Ð»Ð° закачки" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Загрузите Ñтот файл, чтобы видеть больше звёзд" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "ПерезапуÑтить закачку" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Повторить" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "ОÑтановка закачки. Ð’Ñ‹ можете запуÑтить ее позже" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Отмена" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Закрыть окно во Ð²Ñ€ÐµÐ¼Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ ÑценариÑ" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "ЗапуÑк выбранного ÑценариÑ" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "ОÑтановить выполнение ÑценариÑ" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Загрузить при запуÑке" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "наÑтроить" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "ОÑновнаÑ" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ИнформациÑ" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "ÐавигациÑ" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "СервиÑ" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Плагины" @@ -4542,12 +4788,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Этот плагин позволÑет показывать румбы компаÑа у горизонта" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "ОкулÑры" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4557,164 +4803,164 @@ "телеÑкопа (моделируетÑÑ Ð¿Ð¾Ð»Ðµ Ð·Ñ€ÐµÐ½Ð¸Ñ Ð¸ увеличение). Дополнительно Ñтот плагин " "может показать размер кадра ÑенÑора и градуÑные круги Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Выберите объект до Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ð²Ð¸Ð´Ð° через окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Предыдущий окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Следующий окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Выбрать &окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Перключить пере&креÑтие" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "ÐаÑтройка &окулÑров" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Переключить &ПЗС" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Переключить &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&ÐŸÑ€ÐµÐ´Ñ‹Ð´ÑƒÑ‰Ð°Ñ ÐŸÐ—Ð¡" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Ð¡Ð»ÐµÐ´ÑƒÑŽÑ‰Ð°Ñ ÐŸÐ—Ð¡" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Выбрать ПЗС" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "По&вернуть ПЗС" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&СброÑить поворот" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "ОкулÑÑ€ #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "ОкулÑÑ€ #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "ФР окулÑра: %1 мм" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Видимое ПЗ окулÑра: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Линза #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Линза #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Линза: нет" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "ТелеÑкоп #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "ТелеÑкоп #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Увеличение: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Поле зрениÑ: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Размеры: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "СенÑор #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "СенÑор #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Линза" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&ÐŸÑ€ÐµÐ´Ñ‹Ð´ÑƒÑ‰Ð°Ñ Ð»Ð¸Ð½Ð·Ð°" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&Ð¡Ð»ÐµÐ´ÑƒÑŽÑ‰Ð°Ñ Ð»Ð¸Ð½Ð·Ð°" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&ТелеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Предыдущий телеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Следующий телеÑкоп" @@ -4786,65 +5032,70 @@ msgid "Apparent field of view of the ocular" msgstr "Видимое поле Ð·Ñ€ÐµÐ½Ð¸Ñ Ð¾ÐºÑƒÐ»Ñра" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "КратноÑÑ‚ÑŒ: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Линза: нет" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "КратноÑÑ‚ÑŒ: н/д" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "КратноÑÑ‚ÑŒ линзы" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "ФокуÑное раÑÑтоÑние окулÑра" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Поворот: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Увеличение, даваемое Ñтим биноклем" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Ðктуальное поле зрениÑ, даваемое биноклем" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "Увеличение определÑетÑÑ ÐºÐ¾Ð¼Ð±Ð¸Ð½Ð°Ñ†Ð¸ÐµÐ¹ окулÑра/линзы/телекÑкопа" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "ФактичеÑкое поле Ð·Ñ€ÐµÐ½Ð¸Ñ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÑетÑÑ ÐºÐ¾Ð¼Ð±Ð¸Ð½Ð°Ñ†Ð¸ÐµÐ¹ окулÑра/линзы/телекÑкопа" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Плагин ОкулÑры" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "ВерÑиÑ" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Ð¤ÑƒÐ½ÐºÑ†Ð¸Ñ Ð»Ð¸Ð½Ð·Ñ‹ Барлоу" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Обзор" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4857,7 +5108,7 @@ "и ПЗС-матриц. При первом запуÑке будут добавлены неÑколько раÑпроÑтраненных " "окулÑров, телÑкопов и цифровых приемников Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ плагина." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4876,7 +5127,7 @@ "рекомендую вам оÑтавить его, еÑли вы чувÑтвуете, что у Ð²Ð°Ñ ÐµÑÑ‚ÑŒ в Ñтом " "потребноÑÑ‚ÑŒ." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4886,7 +5137,7 @@ "хотел бы Ñделать выравнивание по Ñеверу. У Ð¼ÐµÐ½Ñ Ð½Ðµ получилоÑÑŒ Ñто Ñделать и " "в наÑтоÑщее Ð²Ñ€ÐµÐ¼Ñ Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ðµ рабоатет по верхней чаÑти Ñкрана." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4900,120 +5151,129 @@ "вы ожидали бы увидеть невооруженным глазом через иÑкатель Telrad (или " "аналогичный)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" "ЕÑли вы обнаружите какие-либо ошибки, пожалуйÑта, дайте мне знать. " "ÐаÑлаждайтеÑÑŒ!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "ГорÑчие клавиши" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "ГорÑчие клавиши можно изменить в закладке Общие." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[клавиша не определена]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Включает/выключает вид в окулÑÑ€." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Открывает вÑплывающее навигационное меню." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Включить, только еÑли объект выбран" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "МаÑштабировать изображение по кругу" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" +"Применить ограничение звездной величины Ð´Ð»Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ñ‹Ñ… апертур телеÑкопов" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Ограничивать звёздную величину" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "ПривÑзка клавиш" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Включение режима окулÑра:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Открыть вÑплывающее навигационное меню:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Внешний вид" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Ð­ÐºÑ€Ð°Ð½Ð½Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ управлениÑ" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "ИÑпользовать градуÑÑ‹ и минуты Ð´Ð»Ñ Ð¿Ð¾Ð»Ñ Ð·Ñ€ÐµÐ½Ð¸Ñ ÑенÑора" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "ОÑновные" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "ОкулÑры" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Добавить" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Ðазвание:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "Видимое поле зрениÑ:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "ФокуÑ:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "ÐŸÐ¾Ð»ÐµÐ²Ð°Ñ Ð´Ð¸Ð°Ñ„Ñ€Ð°Ð³Ð¼Ð°:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Бинокль" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Линзы" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "КратноÑÑ‚ÑŒ:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "Множитель:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5021,74 +5281,75 @@ "Значение кратноÑти >1 увеличивает фокуÑное раÑÑтоÑние (линза Барлоу). " "Значение кратноÑти <1 уменьшает фокуÑное раÑÑтоÑние (линза ШÑпли)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "СенÑоры" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Разрешение по x (пкÑ):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Разрешение по y (пкÑ):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Ширина чипа (мм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Ð’Ñ‹Ñота чипа (мм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Ширина пикÑÐµÐ»Ñ (мкм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Ð’Ñ‹Ñота пикÑÐµÐ»Ñ (мкм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "ТелеÑкопы" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Диаметр:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Горизонтальное отражение" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Вертикальное отражение" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "О плагине" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Спутники" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5096,106 +5357,166 @@ "Этот плагин позволÑет прогнозировать позиции иÑкуÑÑтвенных Ñпутников Земли " "на их орбитах на оÑнове данных NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Старый файл satellites.json более не ÑовмеÑтим - иÑпользуетÑÑ Ñ„Ð°Ð¹Ð» по " "умолчанию" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "визуальные" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "научные" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "коммуникационные" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "навигационные" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "любительÑкие" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "метеоÑпутники" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "геоÑтационарные" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "нерабочие" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "gps" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "иридиумы" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "КоÑмичеÑкий телеÑкоп им. Э. Хаббла" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "ÐœÐµÐ¶Ð´ÑƒÐ½Ð°Ñ€Ð¾Ð´Ð½Ð°Ñ ÐºÐ¾ÑмичеÑÐºÐ°Ñ ÑтанциÑ" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Каталожный â„–" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Международное обозначение" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "иÑкуÑÑтвенный Ñпутник" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "ДиÑÑ‚Ð°Ð½Ñ†Ð¸Ñ Ð´Ð¾ ИСЗ (км): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "СкороÑÑ‚ÑŒ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð´Ð¸Ñтанции (км/Ñ): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Ð’Ñ‹Ñота (км): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Подпункт (Шир./Долг.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Координаты TEME (км): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "СкороÑÑ‚ÑŒ TEME (км/Ñ): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "ИСЗ и наблюдатель в Ñолнечных лучах." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "ИСЗ видим." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "ИСЗ в тени." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "ИСЗ невидим" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 МГц (%2%3 кГц)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Плагин Спутники" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" "Плагин Спутники предвычиÑлÑет положение иÑкуÑтвенных Ñпутников Земли." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "ÐŸÑ€Ð¸Ð¼ÐµÑ‡Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÐµÐ¹" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Спутники и их орбиты отображаютÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ð´Ð»Ñ Ð½Ð°Ð±Ð»ÑŽÐ´Ð°Ñ‚ÐµÐ»Ñ, находÑщегоÑÑ Ð½Ð° " "Земле." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5206,7 +5527,7 @@ "меÑÑца в будущее и прошлое). Вне указанного временного диапазона Ð´Ð»Ñ " "Ñпутников можно ожидать ÑтранноÑтей Ñ Ð¸Ñ… меÑтоположением." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5216,7 +5537,7 @@ "необходимо регулÑрно обновлÑÑ‚ÑŒ данные TLE." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5228,7 +5549,7 @@ "найден в каталоге пользовательÑких данных в подкаталоге " "\"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5237,11 +5558,11 @@ "неполные, потерÑнные или Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°Ð¼Ð¸." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Обновление данных TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5250,7 +5571,7 @@ "Плагин Спутники может автоматичеÑки загружать TLE из интернета и по " "умолчанию плагин будет делать Ñто Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ… Ñтарше 72 чаÑов. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5261,7 +5582,7 @@ "вашем компьютере. Этот файл должен быть в формате обновлений Celestrak'а " "(Ñм. %1 Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð¼ÐµÑ€Ð°)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5269,11 +5590,11 @@ "Примечание: еÑли название Ñпутника в файле обновлений заключено в " "квадратных Ñкобках, то Ñтот Ñпутник будет удален перед добавлением данных." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Добавление новых Ñпутников" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5285,11 +5606,11 @@ "Ñпутников. 2. Перейдите на вкладку Ñпутники и нажмите кнопку \"+\". Выберите " "Ñпутник или Ñпутники, которые хотите добавить, и нажмите кнопку \"Добавить\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "ТехничеÑкие примечаниÑ" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5297,7 +5618,7 @@ "Метоположение раÑÑчитываютÑÑ Ñ Ð¸Ñпользованием методов SGP4 и SDP4, Ð´Ð»Ñ " "которых входными данными ÑвлÑÑŽÑ‚ÑÑ Ð´Ð²ÑƒÑтрочные Ñлементы орбит NORAD. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5306,24 +5627,26 @@ "отчётом #3 Spacetrack (Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ 6-й отчёт Spacetrack). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Смотри %1Ñтот документ%2 Ð´Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð´Ñ€Ð¾Ð±Ð½Ð¾Ñтей." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "СÑылки" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5333,31 +5656,34 @@ "\"%1\" в тему при отправке." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "ЕÑли у Ð²Ð°Ñ ÐµÑÑ‚ÑŒ вопроÑ, то получить ответ можно %1здеÑÑŒ%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Сообщить об ошибке можно %1здеÑÑŒ%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5365,120 +5691,140 @@ "ЕÑли вы хотите Ñделать Ð·Ð°Ð¿Ñ€Ð¾Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ функционала, то вы можете Ñоздать отчет " "об ошибке и уÑтановить Ñтепень важноÑти на «wishlist»." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Обновление через интернет выключено" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "ОбновлÑетÑÑ..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Следующее обновление через: менее минуты" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Следующее обновление через: %1 м." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Следующее обновление через: %1 ч." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Обновить ÑейчаÑ" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Обновить из файлов" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Ошибка обновлениÑ" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Обновлено %1/%2 Ñпутников; %3 утерÑно" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Обновлено %1/%2 Ñпутников; %3 добавлено; %4 удалено" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Обновлено %1/%2 Ñпутников; %3 добавлено; %4 потерÑно" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[новый иÑточник]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Обновить ÑейчаÑ" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Обновить из файлов" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[ошибка в раÑчёте орбиты]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[вÑе вновь добавленные]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[вÑе не отображаемые]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[вÑе отображаемые]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[вÑе]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "ÐÐ¾Ð²Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð°..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Выберите файла Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Загрузка данных..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5486,175 +5832,198 @@ "Stellarium загружает данные о Ñпутниках из иÑточников обновлений. Подождите " "..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Выберите иÑходные файлы Ñ TLE..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Обработка данных..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Ðет данных Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸. Попробуйте позднее." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Каталожный номер: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "ÐаÑтройка плагина Спутники" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Обновление через интернет ÑпиÑка иÑточников TLE" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "ОбновлениÑ" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Обновление через интернет" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Обновить данные Ñпутников из интернет-иÑточников" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "ПоÑледнее обновление:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "При обновлении добавить новые Ñпутники из выбранных иÑточников" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"При обновлении удалить Ñпутники не ÑоÑтоÑщие в ÑпиÑке обновлÑемых иÑточников" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "ЧаÑтота обновлений (в чаÑах):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "ÐазваниÑ" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Размер шрифта названий ИСЗ (пкÑ):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Линии орбит" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "ЧиÑло Ñегментов Ð´Ð»Ñ Ð¿Ð¾ÑÑ‚Ñ€Ð¾ÐµÐ½Ð¸Ñ Ð»Ð¸Ð½Ð¸Ð¸ орбиты" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "ЧиÑло Ñегментов:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "ПродолжительноÑÑ‚ÑŒ видимоÑти одного Ñегмента в Ñекундах" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Длина Ñегмента (Ñ):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "ЧиÑло Ñегментов Ð´Ð»Ñ Ñ€Ð¸ÑÐ¾Ð²Ð°Ð½Ð¸Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ ÐºÑ€Ð°Ñ Ð»Ð¸Ð½Ð¸Ð¸" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Длина:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Первоначальные наÑтройки" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Сохранить наÑтройки" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "ÐаÑтройки" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Дважды щелкните по Ñпутнику чтобы начать его отÑлеживать." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Добавить больше Ñпутников" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Удалить выделенные Ñпутники" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Сохранить изменениÑ" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Ðомер в каталоге:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Отображать выделенные ИСЗ" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "ОтображаетÑÑ" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Показывать линию орбиты Ð´Ð»Ñ Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð¾Ð³Ð¾ Ñпутника" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Орбита" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Ðомер в каталоге:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "Ðе обновлÑÑ‚ÑŒ (или удалить при обновлении) выбранные Ñпутники" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Ðе обновлÑÑ‚ÑŒ" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "ОпиÑание:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Группы:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "СпиÑок групп, перечиÑленных через запÑтую" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Данные TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "ДвухÑтрочные Ñлементы орбит NORAD" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Удалить выделенные Ñпутники" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Добавить больше Ñпутников" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Ðабор TLE:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Сохранить изменениÑ" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Спутники из отмеченных ÑпиÑков иÑточников будут автоматичеÑки добавлены при " +"Ñледующем обновлении еÑли они уже не в коллекции." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5662,15 +6031,15 @@ "Введите или измените Ð°Ð´Ñ€ÐµÑ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð¾Ð³Ð¾ иÑточника. Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ ÑохранÑÑŽÑ‚ÑÑ Ð¿Ð¾ " "нажатию ввода." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Добавить новый иÑточник" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Удалить выделенный иÑточник" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "ИÑточники" @@ -5706,11 +6075,11 @@ msgid "Discard" msgstr "Отклонить" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Управление телеÑкопом" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5718,12 +6087,12 @@ "Этот плагин позволÑет Stellarium'у управлÑÑ‚ÑŒ телеÑкопами Ñ " "компьютеризированными монтировками (\"GoTo телеÑкоп\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "ÐавеÑти телеÑкоп #%1 на выбранный объект" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "ÐавеÑти телеÑкоп #%1 на точку, находÑщуюÑÑ ÑÐµÐ¹Ñ‡Ð°Ñ Ð² центре Ñкрана" @@ -6127,62 +6496,62 @@ "Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð¸ и даты, отображаемых в нижней панели." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "ÑнварÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "февралÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "марта" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "апрелÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "маÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "июнÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "июлÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "авгуÑта" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "ÑентÑбрÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "октÑбрÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "ноÑбрÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "декабрÑ" @@ -6341,7 +6710,7 @@ "Эти наÑтройки управлÑÑŽÑ‚ ÑпоÑобом Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð´Ð°Ñ‚Ñ‹ и времени в нижней панели." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Формат Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð¸" @@ -6359,7 +6728,7 @@ msgstr "24-чаÑовой формат" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Формат Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð´Ð°Ñ‚Ñ‹" @@ -6375,11 +6744,11 @@ msgid "mm-dd-yyyy" msgstr "мм-дд-гггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "ТекÑтовый Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6387,144 +6756,144 @@ "Этот плагин ÑвлÑетÑÑ Ñ€ÐµÐ°Ð»Ð¸Ð·Ð°Ñ†Ð¸ÐµÐ¹ текÑтового интерфейÑа Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ (TUI) из " "Ñерии 0.9.x, который иÑпользуетÑÑ Ð² планетариÑÑ…" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Тело Солнечной ÑиÑтемы" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Ð¢ÐµÐºÑƒÑ‰Ð°Ñ Ð´Ð°Ñ‚Ð° и времÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "УÑтановить чаÑовой поÑÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Клавиши днÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "ПредуÑтановленное Ð²Ñ€ÐµÐ¼Ñ Ð¸ дата" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "ÑиÑтемное" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "предуÑтановленное" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "ммддгггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ддммгггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "ггггммдд" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12-чаÑовой" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24-чаÑовой" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Язык" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Показывать звёзды" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Цвета" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "ÐÐ°Ð·Ð²Ð°Ð½Ð¸Ñ Ñ‚ÑƒÐ¼Ð°Ð½Ð½Ð¾Ñтей" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Метки туманноÑтей" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Ð›Ð¸Ð½Ð¸Ñ Ð¿Ð»Ð¾ÑкоÑти Галактики" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Эффекты" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Ручное маÑштабирование" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Множитель звёздной величины" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "ИнтенÑивноÑÑ‚ÑŒ Млечного пути:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "ЧаÑтота названий туманноÑтей:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Увеличить продолжительноÑÑ‚ÑŒ:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ ÐºÑƒÑ€Ñора:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "УÑтановить меÑтоположение из ландшафта" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Выполнить локальный Ñценарий" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "ОÑтановить Ñценарий" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Сценарий Ñ CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "ÐдминиÑтрирование" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Загрузить наÑтройки" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Сохранить наÑтройки" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Завершить работу" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[не узел TUI]" @@ -6561,16 +6930,16 @@ "процеÑÑе разработки." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Ð—Ð°Ð¿Ñ€Ð¾Ñ Ñƒ ÑервиÑа %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Только один результат будет возвращен, еÑли Ð·Ð°Ð¿Ñ€Ð¾Ñ ÑƒÑпешен." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6578,7 +6947,7 @@ "Ð’Ñе кометы и аÑтероиды могут быть идентифицированы по их номерам, названиÑм " "(на английÑком Ñзыке) или временным обозначениÑм." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6767,40 +7136,45 @@ msgid "Solar System" msgstr "Ð¡Ð¾Ð»Ð½ÐµÑ‡Ð½Ð°Ñ ÑиÑтема" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "ИÑторичеÑкие Ñверхновые" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Этот плагин позволÑет увидеть некоторые иÑторичеÑкие Ñверхновые Ñрче 10 " -"звёздной величины." +"Этот плагин позволÑет увидеть некоторые Ñркие иÑторичеÑкие Ñверхновые." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "ÑверхноваÑ" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Тип Ñверхновой: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "МакÑимум ÑркоÑти: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Плагин ИÑторичеÑкие Ñверхновые" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " msgstr "" -"Этот плагин показывает неÑколько Ñрких иÑторичеÑких Ñверхновых, которые Ñрче " -"10 звёздной величины: " +"Этот плагин позволÑет увидеть некоторые Ñркие иÑторичеÑкие Ñверхновые: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." +msgstr "Ð’Ñе Ñти Ñверхновые Ñрче %1 на пике ÑркоÑти." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Кривые блеÑка" @@ -6812,16 +7186,16 @@ "can be seen %1here%2 (right scale in days), and this model is used for this " "plugin." msgstr "" -"Этот модуль реализует проÑтую модель кривых блеÑка различных Ñверхновых. " +"Этот плагин реализует проÑтую модель кривых блеÑка различных Ñверхновых. " "Типичный вид кривых блеÑка Ñверхновых типа I и типа II можно увидеть " -"%1здеÑÑŒ%2 (Ð¿Ñ€Ð°Ð²Ð°Ñ ÑˆÐºÐ°Ð»Ð° в днÑÑ…) и Ñта модель иÑпользуетÑÑ Ð² Ñтом плагине." +"%1здеÑÑŒ%2 (Ð¿Ñ€Ð°Ð²Ð°Ñ ÑˆÐºÐ°Ð»Ð° в днÑÑ…) и Ð´Ð°Ð½Ð½Ð°Ñ Ð¼Ð¾Ð´ÐµÐ»ÑŒ иÑпользуетÑÑ Ð² Ñтом плагине." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:118 msgid "Acknowledgments" msgstr "БлагодарноÑти" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6836,14 +7210,14 @@ msgstr "ИнÑтитут теоретичеÑкой и ÑкÑпериментальное физики" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "в РоÑÑии" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6853,8 +7227,9 @@ "%1здеÑÑŒ%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "Следующее обновление через: %1 д." @@ -6872,29 +7247,118 @@ msgstr "ÐаÑтройка плагина ИÑторичеÑкие Ñверхновые" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Обновление каталога через интернет" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Обновление через интернет" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "ЧаÑтота обновлений (в днÑÑ…):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[Ñледующее обновление]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "Яркие новые" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" +"Плагин, который показывает неÑколько Ñрких новых звезд в Млечном Пути." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Тип: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "новаÑ" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Плагин Яркие новые" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"Ð’Ñ‹ можете найти новые звезды Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ инÑтрумента поиÑка, Ð²Ð²ÐµÐ´Ñ Ð¾Ð±Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ðµ " +"новой или её общее название (например, \"Nova Cygni 1975\" или \"V1500 " +"Cyg\")." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"Этот плагин иÑпользует очень проÑтую модель Ð´Ð»Ñ Ñ€Ð°Ñчета кривых блеÑка Ð´Ð»Ñ " +"новых звезд." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Эта модель оÑнована на времени Ð´Ð»Ñ Ð·Ð°Ñ‚ÑƒÑ…Ð°Ð½Ð¸Ñ Ð½Ð° %1 величин от макÑимального " +"значениÑ, где %1 2, 3, 6 и 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"ЕÑли Ð½Ð¾Ð²Ð°Ñ Ð½Ðµ имеет значений Ð´Ð»Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½ Ð·Ð°Ñ‚ÑƒÑ…Ð°Ð½Ð¸Ñ Ð·Ð²Ñ‘Ð·Ð´Ð½Ñ‹Ñ… величин, то Ñтот " +"плагин будет иÑпользовать обобщенные Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð½Ð¸Ñ…." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Получить полную информацию о плагине, его иÑтории и формате каталога можно " +"%1здеÑÑŒ%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Ðовые обновлÑÑŽÑ‚ÑÑ" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "ÐаÑтройка Ñрких новых" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "ÐаÑтройка плагина Яркие новые" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Квазары" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6913,11 +7377,11 @@ msgid "Z (redshift): %1" msgstr "Z (краÑное Ñмещение): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Плагин Квазары" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6927,40 +7391,50 @@ "квазаров ÑоÑтавлен из 13-й редакции каталога \"Квазары и активные Ñдра " "галактик''." -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Верон и др. 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Квазары обновлÑÑŽÑ‚ÑÑ" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "ÐаÑтройка квазаров" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "ÐаÑтройка плагина Квазары" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Режим Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ ÐºÐ²Ð°Ð·Ð°Ñ€Ð¾Ð²" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "ÐаÑтройки Ð´Ð»Ñ ÐºÐ²Ð°Ð·Ð°Ñ€Ð¾Ð²" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Показать вÑе квазары без названий" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Включить отображение раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ ÐºÐ²Ð°Ð·Ð°Ñ€Ð¾Ð²" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Включить отображение при запуÑке" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Показать кнопку квазаров на панели инÑтрументов" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "ПульÑары" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7090,11 +7564,11 @@ "Ð¸Ð·Ð¾Ð»Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð½Ð°Ñ Ð½ÐµÐ¹Ñ‚Ñ€Ð¾Ð½Ð½Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð° Ñ Ð¸Ð¼Ð¿ÑƒÐ»ÑŒÑами теплового рентгеновÑкого " "Ð¸Ð·Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð±ÐµÐ· радиоизлучениÑ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Плагин ПульÑары" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7105,67 +7579,71 @@ "N., Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Примечание" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "идентификаторы пульÑаров имеют Ð¿Ñ€ÐµÑ„Ð¸ÐºÑ 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "ПризнательноÑÑ‚ÑŒ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Владимир Самодуров" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "ПущинÑÐºÐ°Ñ Ñ€Ð°Ð´Ð¸Ð¾Ð°ÑтрономичеÑÐºÐ°Ñ Ð¾Ð±ÑерваториÑ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "РадиоаÑтрономичеÑÐºÐ°Ñ Ð¾Ð±ÑÐµÑ€Ð²Ð°Ñ‚Ð¾Ñ€Ð¸Ñ ÐанÑе" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "во Франции" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "ПульÑары обновлÑÑŽÑ‚ÑÑ" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "ÐаÑтройка пульÑаров" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" -msgstr "ÐаÑтройка плагина пульÑары" +msgstr "ÐаÑтройка плагина ПульÑары" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Режим Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¿ÑƒÐ»ÑŒÑаров" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "ÐаÑтройки Ð´Ð»Ñ Ð¿ÑƒÐ»ÑŒÑаров" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Показать вÑе пульÑары без названий" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Включить отображение раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ð¿ÑƒÐ»ÑŒÑаров" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Показать кнопку пульÑаров на панели инÑтрументов" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Экзопланеты" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7174,71 +7652,71 @@ "Ñкзопланет оÑнован на данных из \"Энциклопедии внеÑолнечных планет\" Ñ " "exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "МеталличноÑÑ‚ÑŒ" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "МаÑÑа" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "РадиуÑ" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Ð­Ñ„Ñ„ÐµÐºÑ‚Ð¸Ð²Ð½Ð°Ñ Ñ‚ÐµÐ¼Ð¿ÐµÑ€Ð°Ñ‚ÑƒÑ€Ð°: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Экзопланета" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Период" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "дней" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Юп." -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Ð‘Ð¾Ð»ÑŒÑˆÐ°Ñ Ð¿Ð¾Ð»ÑƒÐ¾ÑÑŒ орбиты" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "а. е." -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "ЭкÑцентриÑитет" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Ðаклон орбиты" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Угловое раÑÑтоÑние" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Год открытиÑ" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Плагин Экзопланеты" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7248,7 +7726,7 @@ "Ñкзопланет оÑнован на данных из \"%1Энциклопедии внеÑолнечных планет%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7257,42 +7735,132 @@ "Получить полную информацию о плагине, его иÑторию и формат каталога можно " "%1здеÑÑŒ%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" +"ОÑновные профеÑÑиональные веб-Ñайты, имеющие отношение к Ñкзопланетам" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Экзопланеты: Ð¸Ð½Ñ‚ÐµÑ€Ð°ÐºÑ‚Ð¸Ð²Ð½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (Охота за Ñкзолунами Ñ ÐšÐµÐ¿Ð»ÐµÑ€Ð¾Ð¼)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Экзопланеты в двойных и кратных ÑиÑтемах (Ричард Шварц)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Именование Ñкзопланет (ÐœÐС)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "Ðекоторые аÑтрономы и группы, иÑÑледующие Ñкзопланеты" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "обновлено: 16 Ð°Ð¿Ñ€ÐµÐ»Ñ 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "ИÑÑледователь данных Ñкзопланет" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "Ðнгло-авÑтралийÑкий поиÑк планет" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "ЖеневÑкие программы поиÑка внеÑолнечных планет" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (ÐовоÑти оптичеÑкого интерферометра Ñ Ð´Ð»Ð¸Ð½Ð½Ð¾Ð¹ базой)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "Программа иÑÑÐ»ÐµÐ´Ð¾Ð²Ð°Ð½Ð¸Ñ Ñкзопланет NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Планеты у пульÑаров" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "Ðрхив Ñкзопланет NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "КомиÑÑÐ¸Ñ 53 ÐœÐС: ВнеÑолнечные планеты" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ЭкзоМол" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "Ð“Ð°Ð»ÐµÑ€ÐµÑ Ð¾Ð±Ð¸Ñ‚Ð°ÐµÐ¼Ñ‹Ñ… зон" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - ПоиÑк других земель" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Открытый каталог Ñкзопланет" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "Каталог обитаемых Ñкзопланет" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Экзопланеты обновлÑÑŽÑ‚ÑÑ" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "ÐаÑтройка Ñкзопланет" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "ÐаÑтройка плагина Экзопланеты" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Обновить данные Ñкзопланет через интернет" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Режим Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñкзопланет" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "ÐаÑтройки Ð´Ð»Ñ Ñкзопланет" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Показать вÑе ÑиÑтемы Ñ Ñкзопланетами без названий" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Включить отображение раÑÐ¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ñкзопланет" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Показывать Ñкзопланеты Ñ Ð¼Ð¾Ð¼ÐµÐ½Ñ‚Ð° их открытиÑ" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Включить Ñроки Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ð¸Ñ Ñкзопланет" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Показать кнопку Ñкзопланет на панели инÑтрументов" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "ИнформациÑ" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Ðнализ уÑловий видимоÑти" @@ -7315,185 +7883,179 @@ "закатов.

    ОбъÑÑнение показываемых величин изложено во вкладке 'О " "плагине' окна конфигурации." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Ñнв." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "фев." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "мар." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "апр." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "маÑ" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "июн." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "июл." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "авг." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "Ñен." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "окт." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "ноÑ." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "дек." -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "ч" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "м" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "Ñ" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Закат в %1 (через %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "ВоÑход в %1 (%2 назад)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Закат в %1 (%2 назад)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "ВоÑход в %1 (через %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "ПриполÑрное." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Ðе воÑходит." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "ÐšÑƒÐ»ÑŒÐ¼Ð¸Ð½Ð°Ñ†Ð¸Ñ Ð² %1 (через %2) на выÑоте %3 град." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Кульминировало в %1 (%2 назад) на выÑоте %3 град." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "ИÑточник не наблюдаем." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Ðет ни акроничеÑкого, ни коÑмичеÑкого воÑхода и заката." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "ÐÐ°Ð¸Ð±Ð¾Ð»ÑŒÑˆÐ°Ñ ÑлонгациÑ: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Ðаибольшее удаление от Солнца: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (на %1 град.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "ÐкроничеÑкий воÑход/закат" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Ðет акроничеÑкого воÑхода и заката." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "КоÑмичеÑкий воÑход/закат" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Ðет коÑмичеÑкого воÑхода и заката." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "ÐаблюдаетÑÑ Ð² течение вÑего года." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "Ðе наблюдаемо в тёмное Ð²Ñ€ÐµÐ¼Ñ Ð½Ð¾Ñ‡Ð¸." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Ðочи над горизонтом: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "СЕГОДÐЯ:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "ЭТОТ ГОД:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Предыдущее полнолуние: %1 %2 в %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "Следующее полнолуние: %1 %2 в %3:%4. " @@ -7885,6 +8447,9 @@ #~ msgid "Landscape: " #~ msgstr "Ландшафт: " +#~ msgid "Nebulas" +#~ msgstr "ТуманноÑти" + #~ msgid "10" #~ msgstr "10" @@ -7912,6 +8477,9 @@ #~ msgid "Hourly zenith rate:" #~ msgstr "ЧиÑло метеоров в чаÑ" +#~ msgid "Nebulas background images" +#~ msgstr "Фоновые Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ‚ÑƒÐ¼Ð°Ð½Ð½Ð¾Ñтей" + #~ msgid "Light pollution: " #~ msgstr "Световое загрÑзнение: " @@ -8034,6 +8602,16 @@ #~ "июлÑ), SN 1937C (21 авгуÑта), SN 1972E (8 маÑ), SN 1987A (24 февралÑ) и SN " #~ "2011FE (13 ÑентÑбрÑ)." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Обновлено %1/%2 Ñпутников; %3 утерÑно" + +#~ msgid "Comma separated list of groups" +#~ msgstr "СпиÑок групп, перечиÑленных через запÑтую" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Обновление через интернет ÑпиÑка иÑточников TLE" + #~ msgid "" #~ "Support is provided via the Launchpad website. Be sure to put \"Satellites " #~ "plugin\" in the subject when posting." @@ -8041,6 +8619,12 @@ #~ "Поддержка предоÑтавлÑетÑÑ Ñ‡ÐµÑ€ÐµÐ· вебÑайт Launchpad. Ðе забудьте напиÑать " #~ "\"Satellites plugin\" в теме при отправке." +#~ msgid "TLE data:" +#~ msgstr "Данные TLE:" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "ДвухÑтрочные Ñлементы орбит NORAD" + #~ msgid "Crosshairs" #~ msgstr "ПерекреÑтие" @@ -8173,6 +8757,26 @@ #~ msgid "Object's size" #~ msgstr "Размер объекта" +#~ msgid "Display mode for pulsars" +#~ msgstr "Режим Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¿ÑƒÐ»ÑŒÑаров" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Этот плагин позволÑет увидеть некоторые иÑторичеÑкие Ñверхновые Ñрче 10 " +#~ "звёздной величины." + +#~ msgid "Display mode for quasars" +#~ msgstr "Режим Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ ÐºÐ²Ð°Ð·Ð°Ñ€Ð¾Ð²" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Этот плагин показывает неÑколько Ñрких иÑторичеÑких Ñверхновых, которые Ñрче " +#~ "10 звёздной величины: " + #~ msgid "" #~ "Phobos races ahead of Mars and eclipses the sun, passes thru it and then " #~ "retrogrades back towards the sun and just partially eclipses it (only seen " @@ -8198,6 +8802,12 @@ #~ "Затмение Солнца ФобоÑом, каким оно будет видно Ñ Ð³Ð¾Ñ€Ñ‹ Олимп 10 ÑÐ½Ð²Ð°Ñ€Ñ 2068 " #~ "года." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Хранитель Ñкрана Ñ Ñ€Ð°Ð·Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼Ð¸ ÑобытиÑми в Солнечной ÑиÑтеме. Ð’Ñего 171 " +#~ "Ñобытие!" + #~ msgid "A tour via western constellations." #~ msgstr "Тур по западным ÑозвездиÑм." diff -Nru stellarium-0.12.1/po/stellarium/sah.po stellarium-0.12.4/po/stellarium/sah.po --- stellarium-0.12.1/po/stellarium/sah.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/sah.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-07-08 03:00+0000\n" -"Last-Translator: Chynggyz Jumaliev \n" +"Last-Translator: ballpen \n" "Language-Team: Yakut \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:53+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses
    (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "ТелеÑкоп #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "ТелеÑкоп #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&ТелеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/sco.po stellarium-0.12.4/po/stellarium/sco.po --- stellarium-0.12.1/po/stellarium/sco.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/sco.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-01-16 06:46+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Scots \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:53+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Author: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Location: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Type: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Size: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxy" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Globular cluster" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Unkent" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Distance: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spectral Type: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Distans: %1 Light Years" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallax: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Liecence" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Sauf screenshot" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zoom oot" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/se.po stellarium-0.12.4/po/stellarium/se.po --- stellarium-0.12.1/po/stellarium/se.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/se.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2011-02-05 18:19+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Northern Sami \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Beaivváš" @@ -1209,12 +1320,12 @@ msgstr "Eana" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturnus" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/si.po stellarium-0.12.4/po/stellarium/si.po --- stellarium-0.12.1/po/stellarium/si.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/si.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,31 +7,31 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-03-03 23:08+0000\n" "Last-Translator: Dileepa Rajapaksa(දිලීප රà·à¶¢à¶´à¶šà·Šà·‚) \n" "Language-Team: Sinhalese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:53+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: SRI LANKA\n" "X-Poedit-Language: Estonian\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "මධ්â€à¶ºà·„්නය" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "ක්â€à¶»à·à¶±à·Šà¶­à·’ වලය" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "සමකය" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "ක්ෂිතිජය" @@ -39,46 +39,46 @@ msgid "Galactic Plane" msgstr "මණ්දà·à¶šà·’ණි තලය" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "කර්තෘ: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "ස්ථà·à¶±à¶º: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "ග්â€à¶»à·„ලà·à¶šà¶º " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "වර්ගය: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "දීප්තතà·à·€à¶º: %1 ( %2 දී à·à·”න්â€à¶º වේ)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "දීප්තතà·à·€à¶º: %1" @@ -88,114 +88,114 @@ msgid "Size: %1" msgstr "ප්â€à¶»à¶¸à·à¶«à¶º: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "චක්â€à¶»à·à·€à·à¶§à¶º" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "විවෘත තරු පොකුර" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "ගà·à¶½à·“ය තරු පොකුර" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "නිහà·à¶»à·’කà·à·€" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "ග්â€à¶»à·„ලà·à¶šà¶¸à¶º නිහà·à¶»à·’කà·à·€" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "අදුරු නිහà·à¶»à·’කà·à·€" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "තරු පොකුර නිස෠නිහà·à¶»à·’කà·à·€ ආලà·à¶šà¶¸à¶­à·Š වේ" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "නොදන්නà·" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "සොයà·à¶œà·™à¶± නොමà·à¶­" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "නිරපේක්ෂ දීප්ත විà·à·à¶½à¶­à·Šà·€à¶º: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "දුර: %1ආ.වර්ෂ (%2 කි.මි)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "දුර: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "à·ƒà·à¶´à·šà¶šà·Šà·‚ විà·à·Šà¶šà¶¸à·Šà¶·à¶º: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "කලà·à·€:%1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -206,7 +206,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "තà·à¶»à¶šà·à·€" @@ -221,47 +221,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "දෘà·à·Šâ€à¶º දීප්ති විà·à·à¶½à¶­à·Šà·€à¶º:%1" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "ද්විත්ව තà·à¶»à¶šà·à·€" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "වර්ණà·à·€à¶½à·’ක වර්ගය: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "දුර: ආලà·à¶š වර්ෂ %1" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "අසම්පà·à¶­à¶º: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "අභ්â€à¶ºà·€à¶šà·à· යà·à¶±à¶º" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -269,14 +344,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -285,14 +360,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -300,7 +375,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -308,14 +383,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -324,14 +399,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -339,25 +414,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -366,14 +441,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -381,42 +456,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -424,7 +499,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -432,7 +507,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -441,7 +516,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -451,45 +526,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "දà·à·‚ය" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -644,52 +736,53 @@ msgid "Found" msgstr "ගà·à¶½à¶´à·“ම් හමුවිය" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "ස්ක්â€à¶»à·“න්ෂොට් දà·à¶¸à·’ය යුතු ස්ථà·à¶±à¶º" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "ආරම්භයේදී FOV: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "ආරම්භයේදී උද්දිගංà·à¶º: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "කතෘවරුන්" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "සම්බන්ධවීමට" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "කර්තෘ" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "බලපත්â€à¶»à¶º" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "ස්ක්â€à¶»à·’ප්ටු ක්â€à¶»à·’යà·à¶­à·Šà¶¸à¶š කිරීම " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "කිසිදු ස්ක්â€à¶»à·’ප්ට්ටුවක් ක්â€à¶»à·’යà·à¶­à·Šà¶¸à¶š නොවේ" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -697,16 +790,16 @@ "තරු සූචි බà·à¶œà¶­ කොට අවසන්!\n" "ඒව෠බලà·à¶œà·à¶±à·“ම සදහ෠Stellarium ප්â€à¶»à¶­à·’පණගන්වන්න." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "සියළු තරු නà·à¶¸à·à·€à¶½à·’ ස්ථà·à¶´à¶±à¶º කර ඇත" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "සූචි %2 න් %1 à·€à·à¶±à·Šà¶± ලබ෠ගන්න." -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -715,7 +808,7 @@ "බà·à¶œà¶­à¶šà¶»à¶¸à·’න් %1...\n" "(ඔබට මෙම කවුළුව වස෠දà·à¶¸à·’ය à·„à·à¶šà·’ ය.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -726,7 +819,7 @@ "තරු ගණන: %2 Million\n" "දීප්තතà·à·€à¶º: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -735,11 +828,11 @@ "බà·à¶œà¶­à¶šà·’රීමේ ගà·à¶§à·…ුවක් %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "ගොනුව පරීක්ෂ෠කරමින්..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -749,115 +842,123 @@ "ගොනුව විකෘති වී ඇත" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1020,49 +1121,53 @@ msgid "OSX Developer: %1" msgstr "OSX නිර්මà·à¶«à¶šà¶»à·”: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "ස්ක්â€à¶»à·’ප්ටුවේ ප්â€à¶»à¶­à·’චà·à¶» කවුලුව" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "කවුළු" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "ස්පේස් බොත්තම" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "විස්තර නොමà·à¶­" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "උල්කà·à¶´à·à¶­ නොමà·à¶­" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "à·ƒà·à¶¸à·à¶±à·Šâ€à¶ºà¶º වේගය" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "සම්මත පර්සීඩ්ස් අගය" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "විකල්ප ලියොනීඩ්ස් අගය" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "à·€à·à¶»à·Šà¶­à·à¶œà¶­ à·€à·à¶©à·’ම අගය (1966 ලියොනිඩ්ස්)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "නව ස්ථà·à¶±à¶ºà¶šà·Š" @@ -1166,19 +1271,19 @@ msgid "starchart" msgstr "තරු සිතියම" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Strasbourg විà·à·Šà·€ විද්â€à¶ºà·à¶½à¶º (ප්â€à¶»à¶‚à·à¶º)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard විà·à·Šà·€ විද්â€à¶ºà·à¶½à¶º (ඇමරිකà·à¶±à·” එක්සත් ජනපදය )" @@ -1194,30 +1299,36 @@ msgid "Alternative shortcut" msgstr "විකල්ප කෙටිමං" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "මෙම පද්ධතිය OpenGL සදහ෠සහය නොදක්වයි." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "සූර්යයà·" @@ -1234,12 +1345,12 @@ msgstr "පෘථිවිය" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "චන්ද්â€à¶»à¶ºà·" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "අගහරු" @@ -1337,7 +1448,7 @@ msgstr "මෙටිස්" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "සෙනසුරු" @@ -1635,239 +1746,268 @@ msgstr "ඉනුයිට් (එස්කිමà·)" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "කොරියà·à¶±à·”" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "ලකà·à¶§à·" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "මඕරි" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "නවà·à¶ºà·" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "නà·à¶»à·Šà·ƒà·Š" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "පොලිනීසියà·à¶±à·”" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "සමී" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "ටුපි ගුවà·à¶»à¶±à·’" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "අපරදිග" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "රුක්ෂ" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "à·ƒà·à¶© කුණà·à¶§à·”à·€" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "සයුර" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "අර්ධ චන්ද්â€à¶» ග්â€à¶»à·„ණය" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "පූර්ණ චන්ද්â€à¶» ග්â€à¶»à·„ණය" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "තිරආවරකය" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "සූර්යය ග්â€à¶»à·„ණය 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "රà·à·à·’චක්â€à¶»à¶º" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "සිකුරු සංක්â€à¶»à·à¶±à·Šà¶­à·’ය" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1877,1502 +2017,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "සිකුරු සංක්â€à¶»à·à¶±à·Šà¶­à·’ය 2012 ජුනි 6,ඕස්ට්â€à¶»à·šà¶½à·’යà·à·€à·š සිඩ්නි නගරයේ සිට" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "එක්සත් අරà·à¶¶à·’ එමිර් රà·à¶¢à·Šâ€à¶ºà¶º" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ඇෆ්ගනිස්ථà·à¶±à¶º" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "ඇන්ටිගුව෠සහ බà·à¶»à·Šà¶¶à¶©à·" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "බà·à¶¶à¶©à·à·ƒà¶º" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "බංගලà·à¶¯à·šà·‚ය" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "බෙල්ජියම" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "බල්ගේරියà·à·€" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "බහරේනය" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "බෙනින්" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "බර්මියුඩà·à·€" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "බ්â€à¶»à·ƒà·“ලය" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "භුතà·à¶±à¶º" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "කà·à¶±à¶©à·à·€" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "චීනය" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "දිනය සහ වේලà·à·€" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "එක් ආවර්ත දිනයක් එක් කරන්න" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "එක් ආවර්ත සතියක් එක් කරන්න" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "එක් සූර්ය දිනයක් එක් කරන්න" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "එක් සූර්ය පà·à¶ºà¶šà·Š එක් කරන්න" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "එක් සූර්ය සතියක් එක් කරන්න" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "ස්ක්â€à¶»à·’ප්ටුව ක්â€à¶»à·’ය෠කරන වේගය අඩු කරන්න" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "කà·à¶½ වේගය අඩු කරන්න" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "කà·à¶½ වේගය අඩු කරන්න (මදක්)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "ස්ක්â€à¶»à·’ප්ටුව ක්â€à¶»à·’ය෠කරන වේගය à·€à·à¶©à·’ කරන්න" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "කà·à¶½ වේගය à·€à·à¶©à·’ කරන්න" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "කà·à¶½ වේගය à·€à·à¶©à·’ කරන්න (මදක්)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "කà·à¶½à¶º දà·à¶±à·Š වේලà·à·€ කරන්න" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "ස්ක්â€à¶»à·’ප්ටුව à·ƒà·à¶¸à·à¶±à·Šâ€à¶º වේගයෙන් ක්â€à¶»à·’යà·à¶šà¶»à·€à¶±à·Šà¶±" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "à·ƒà·à¶¸à·à¶±à·Šâ€à¶º කà·à¶½ වේගය" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "කà·à¶½à·€à·šà¶œ අගය බින්දුව කරන්න" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "එක් ආවර්ත දිනයක් අඩු කරන්න" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "එක් ආවර්ත සතියක් අඩු කරන්න" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "එක් සූර්ය දිනයක් අඩු කරන්න" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "එක් සූර්ය පà·à¶ºà¶šà·Š අඩු කරන්න" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "එක් සූර්ය සතියක් අඩු කරන්න" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "අහස පෙනෙන ආකà·à¶»à¶º වෙනස් කිරීම" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "හරස් අතට හරවන්න" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "සම්පූර්ණ තිර මà·à¶¯à·’ලිය" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "à·€à·à¶ºà·”ගà·à¶½à¶º" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "උද්දිගං෠දà·à¶½" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "දිග්භà·à¶œ" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "රà·à·à·’ රූප" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "රà·à·à·’ මà·à¶ºà·’ම්" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "රà·à·à·’ ලේබල" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "රà·à·à·’ රේඛà·" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "නිහà·à¶»à·’ක෠පසුබිම් ඡà·à¶ºà·à¶»à·–ප" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "ක්â€à¶»à·à¶±à·Šà¶­à·’ය" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "සමකය" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "සමක දà·à¶½" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "සමක J2000 දà·à¶½" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "මීදුම" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "මණ්දà·à¶šà·’ණි දà·à¶½" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "පොළොව" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "ක්ෂිතිජ රේඛà·à·€" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "මධ්â€à¶ºà·à¶± රේඛà·à·€" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "නිහà·à¶»à·’කà·" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "රà·à¶­à·Šâ€à¶»à·“ මà·à¶¯à·’ලිය" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "ග්â€à¶»à·„වස්තුවේ කක්ෂය" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "ග්â€à¶»à·„ලà·à¶š ගමන්මඟ" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "තරු" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "දික් අතට හරවන්න" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "වෙනත්" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "තිරස් බොත්තම් පෙල ස්වයංක්â€à¶»à·“යව හංගන්න" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "සිරස් බොත්තම් පෙල ස්වයංක්â€à¶»à·“යව හංගන්න" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "පිටවීම" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "ස්ක්â€à¶»à·“න්ෂොට් ගොනුව සුරකින්න" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "සමක හ෠උද්දිගං෠රà·à¶³à·€à·”ම් අතර මà·à¶»à·” වෙන්න" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "අතුරු මුහුණත සඟවන්න" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "එහ෠මෙහ෠කිරීම සහ තේරීම" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "තේරූ වස්තුව තිරය මà·à¶¯à¶§ කරන්න" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "තà·à¶»à·à¶œà¶­à·Š ග්â€à¶»à·„ලà·à¶šà¶º මව් ග්â€à¶»à·„ලොව කරන්න" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "වස්තුව හඹ෠යන්න" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "තà·à¶»à·à¶œà¶­à·Š වස්තුව මත සූම් කරන්න" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "තà·à¶»à·à¶œà¶­à·Š වස්තුව මත සූම් අවුට් කරන්න" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "කà·à¶« මිනුම" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "මà·à¶½à·’ම෠සලකුණු" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "ආක්ෂිකව දà·à¶šà·Šà·€à·“ම" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "ආක්ෂිය මෙනුව" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "චන්ද්â€à¶»à·’ක෠සà·à¶šà·ƒà·”ම් කවුළුව" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "චන්ද්â€à¶»à·’ක෠ඉඟි" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "චන්ද්â€à¶»à·’ක෠ලේබල" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "දෙන ලද ඛන්ඩà·à¶‚ක වෙත දුරේක්ෂය චලනය කරන්න" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "ස්ක්â€à¶»à·’ප්ටු" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "à·ƒà·à¶šà·ƒà·”ම් කවුළුව" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "දිනය/වේලà·à·€ කවුළුව" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "උදව් කවුළුව" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "ස්ථà·à¶±à¶º කවුළුව" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "සෙවුම් කවුළුව" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "අහස සහ දර්à·à¶« à·ƒà·à¶šà·ƒà·”ම් කවුළුව" @@ -3398,7 +3574,7 @@ msgstr "Refresh" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "ස්ථà·à¶±à¶º" @@ -3414,10 +3590,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "මකන්න" @@ -3426,7 +3602,7 @@ msgstr "ලà·à¶ºà·’ස්තුවට ඇතුලත් කරන්න" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "අක්ෂà·à¶‚à·:" @@ -3438,12 +3614,12 @@ "ඔබට අගයන් දà·à¶¸à·ƒà·Šà¶®à·à¶± වලින් à·„à· dms ආකà·à¶»à¶ºà·™à¶±à·Š ඇතුලත් කල à·„à·à¶šà·’ය, උදà·à·„රණ: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "දේෂà·à¶‚à·:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "උස:" @@ -3467,363 +3643,407 @@ msgid "Planet:" msgstr "ග්â€à¶»à·„ලොව" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "සොයන්න" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "වස්තුවක් හ෠ස්ථà·à¶±à¶ºà¶šà·Š සොයන්න" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "අයà·à¶§à·" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "ඇල්ෆà·" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "බීටà·" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "ගà·à¶¸à·" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "ඩෙල්ටà·" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "එප්සයිලà·à¶±à·Š" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zසීටà·" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "ඊටà·" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "තිටà·" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "කà·à¶´à·" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "ලà·à¶¸à·Šà¶©à·" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "මියු" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "නියු" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ක්සි" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "ඔමික්â€à¶»à·à¶±à·Š" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "පයි" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "රà·" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "සිග්මà·" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "ටà·" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "උප්සයිලà·à¶±à·Š" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "ෆි" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "චි" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "ප්සි" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "ඔමෙගà·" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "බේයර් නà·à¶¸à¶šà¶»à¶«à¶º සඳහ෠ග්â€à¶»à·“ක අකුරු" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "වස්තුව" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "පිහිටීම" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "විකල්ප" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "විකල්ප" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "දසුන" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "අහස" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "සලකුණු කිරීම්" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "භූතලය" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "තරුකතà·" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "ලේබල් හ෠සලකුණු" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "ග්â€à¶»à·„ලà·à¶š" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "ග්â€à¶»à·„යින් සහ උපග්â€à¶»à·„යින්" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "ග්â€à¶»à·„ලà·à¶š පෙන්වන්න" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "ග්â€à¶»à·„ලà·à¶š සලකුණු පෙන්වන්න" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "ග්â€à¶»à·„ලà·à¶š කක්ෂයන් පෙන්වන්න" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "ආලà·à¶šà¶ºà·š වේගය ප්â€à¶»à¶­à·’නිර්මà·à¶«à¶º කරන්න" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "චන්ද්â€à¶»à¶ºà· පරිමà·à¶«à¶šà¶»à¶«à¶º කරන්න" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "à·€à·à¶ºà·”ගà·à¶½à¶º පෙන්වන්න" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "පීඩනය, උෂ්නත්වය, නෂ්ට සංගුණකය" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "වර්තන / නෂ්ට à·ƒà·à¶šà·ƒà·”ම්..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "නිරපේක්ෂ මිනුම:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "à·ƒà·à¶´à·šà¶šà·Šà·‚ මිනුම" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "බà·à¶¶à¶½à·“ම:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "දීප්ත වස්තූන් මතුවන විට අදීප්ත වස්තු අදුරු කරන්න" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "ඇස අඳුරට හුරු කරන්න" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "උල්කà·à¶´à·à¶­" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "තරුරටà·" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "රේඛ෠පෙන්වන්න" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "ලේබල පෙන්වන්න" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "සීමà·à·€à¶±à·Š පෙන්වන්න" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "රà·à·à·’රූප පෙන්වන්න" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ඛගà·à¶½à¶º" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "ප්â€à¶»à¶šà·Šà·à·šà¶´à¶«à¶º" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "ග්â€à¶»à·„ලà·à¶šà·à¶œà·à¶» පසුබිම් එකතු කරන්න / ඉවත්කරන්න..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "පොළව පෙන්වන්න" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "මීදුම පෙන්වන්න" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "සම්බන්ධිත ග්â€à¶»à·„ලà·à¶š හ෠ස්ථà·à¶± භà·à·€à·’ත෠කරන්න" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "à·ƒà·à¶¸à·à¶±à·Šâ€à¶º භà·à·€à·’තය සදහ෠මේ භූතලය යොදà·à¶œà¶±à·Šà¶±" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "මෙම අහස් කත෠සà·à¶¸à·à¶±à·Šâ€à¶º à·ƒà·à¶šà·ƒà·”ම ලෙස භà·à·€à·’ත෠කරන්න" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "දෘà·à·Šâ€à¶ºà¶¸à·à¶±" @@ -3877,7 +4097,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Stellarium විවෟත වන විට ඔබ බලන දිà·à·à·€" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "තà·à¶»à·à¶œà¶­à·Š වස්තුවේ තොරතුරු" @@ -3893,11 +4113,8 @@ msgid "Display no information" msgstr "තොරතුරු සඟවන්න" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "කිසිවක් එපà·" @@ -4039,7 +4256,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "විවෘත වන විට දවස හ෠වේලà·à·€" @@ -4051,41 +4268,45 @@ msgid "Other:" msgstr "වෙනත්:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "දà·à¶±à·Š පවත්න෠දිනය හ෠වේලà·à·€ භà·à·€à·’ත෠කරන්න" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Stellarium පරිගණකයේ දිනය හ෠වේලà·à·€à·™à¶±à·Š විවෘත කරන්න" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "පරිගණකයේ දිනය හ෠වේලà·à·€" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "නà·à·€à¶­ පණගà·à¶±à·Šà·€à·™à¶± විට Stellarium à·„à·’ වේලà·à·€ ඊළඟ දිනය සකසයි" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "පරිගණකයේ වේලà·à·€:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "ග්â€à¶»à·„ලà·à¶šà·à¶œà·à¶» à·ƒà·à¶šà·ƒà·”ම්" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4093,51 +4314,51 @@ "කුඩ෠ප්â€à¶»à¶¸à·à¶«à¶ºà·š ග්â€à¶»à·„ලà·à¶šà·à¶œà·à¶» සදහ෠Stellarium ගà·à¶½à·à¶šà·à¶» තිරයකට ප්â€à¶»à¶šà·Šà·à·šà¶´à¶«à¶º " "කිරීමට Spheric mirror distortion භà·à·€à·’ත෠කරයි." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "ගà·à¶½à¶ºà¶šà·Š ආකà·à¶»à¶ºà·™à¶±à·Š දිස්වනවà·à¶šà·Š මෙන් සකසන්න" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "මධ්â€à¶ºà¶ºà·š වෘතයෙන් පිටත සියල්ල සඟවන්න" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "වෘතà·à¶šà·à¶» කවුලුවක් තුලින් පෙන්වන්න" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "එකක් තà·à¶»à¶± විට අනෙක් තà·à¶»à¶šà· රà·à·à·’ නොපෙන්වන්න" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "එක් තà·à¶»à¶šà· රà·à·à·’යක් තà·à¶»à¶±à·Šà¶±" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "ලේබල පොළොවට සමà·à¶±à·Šà¶­à¶»à·€ සකසන්න" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "ලේබල ගුරුත්වà·à¶šà¶»à·Šà·‚ණයට අනුව සකසන්න" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "සිරස් සහ තිරසි රූප අනෙක් පස ගà·à¶±à·Šà·€à·”ම" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "අනෙක් පස හරවන බොත්තම්" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4145,92 +4366,98 @@ "\"ස්වයංක්â€à¶»à·“ය ඈත් වීම\" යතුර ක්â€à¶»à·’යà·à¶­à·Šà¶¸à¶šà·€ පවතින විට එය ප්â€à¶»à·à¶»à¶¸à·Šà¶·à¶š බලන දිà·à·à·€à¶¯ " "වෙනස් කරයි" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "ස්වයංක්â€à¶»à·“ය ඈත්වීම නà·à·€à¶­ ප්â€à¶»à·à¶»à¶¸à·Šà¶·à¶š බලන දිà·à·à·€à¶§ පà·à¶¸à·’ණේ" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "තිරපිටපත්" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "තිරපිටපත් නà·à¶¸à·à·€à¶½à·’ය" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "වර්ණ ඉන්වර්ට් කිරීම" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "යà·à·€à¶­à·Šà¶šà·à¶½ කරන ලද තà·à¶»à¶šà· සූචි" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "බà·à¶œà¶­ කිරීම් ආරම්භ කිරීමට මෙය ක්ලික් කරන්න" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "තව තරු දකින්නට මෙම ගොනුව බà·à¶œà¶­à¶šà¶»à¶±à·Šà¶±" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "නà·à·€à¶­à¶­à·Š බà·à¶œà¶­à¶šà¶»à¶±à·Šà¶±" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "නà·à·€à¶­ උත්සහ කරන්න" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "බà·à¶œà¶­à¶šà·’රීම නවත්වන්න. ඔබට පසුව එය පණගà·à¶±à·Šà·€à·’ය à·„à·à¶šà·’ ය." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "අවලංගු කරන්න" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "ස්ක්â€à¶»à·’ප්ටුව ක්â€à¶»à·’යà·à¶­à·Šà¶¸à¶š වන අවස්ථà·à·€à·šà¶¯à·“ කවුළුව වසන්න" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "තà·à¶»à·à¶œà¶­à·Š ස්ක්â€à¶»à·’ප්ටුව ක්â€à¶»à·’යà·à¶­à·Šà¶¸à¶š කරන්න" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "ස්ක්â€à¶»à·’ප්ටුව ක්â€à¶»à·’යà·à¶­à·Šà¶¸à¶š වීම නවත්වන්න" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "ආරම්භයේදී පණගන්වන්න" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "à·ƒà·à¶šà·ƒà·”ම්" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "ප්â€à¶»à¶°à·à¶±" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "යà·à¶­à·Šâ€à¶»à¶«à¶º" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "මෙවලම්" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "ප්ලගින" @@ -4405,176 +4632,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "ක්ෂිතිජය අසල මà·à¶½à·’ම෠සලකුණු පෙන්වන්න" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "ආක්ෂික" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4646,64 +4873,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4711,7 +4943,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4722,14 +4954,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4738,305 +4970,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "චන්ද්â€à¶»à·’කà·" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "NORAD TLE දත්ත අනුව චන්ද්â€à¶»à·’ක෠පිහිටන ස්ථà·à¶± පිළිබඳ අනà·à·€à·à¶šà·’" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "පà·à¶»à¶«à·’ satellites.json ගොනුව ක්â€à¶»à·’ය෠නොකරයි. පෙරනිමි ගොනුව භà·à·€à·’ත෠වේ." -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5044,25 +5345,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5070,17 +5371,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5088,41 +5389,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5130,338 +5433,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5497,22 +5843,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "දුරේක්ෂ පà·à¶½à¶šà¶º" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "මෙම ප්ලගිනයෙන් ස්ටෙලà·à¶»à·’යම් හරහ෠දුරේක්ෂයක් ක්â€à¶»à·’ය෠කරවිය à·„à·à¶šà·’ ය." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "දුරේක්ෂය #%1 ක් තේරූ වස්තුව දෙසට චලනය කරන්න" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "දුරේක්ෂය #%1 ක් තිරයේ මà·à¶¯à¶§ චලනය කරන්න" @@ -5895,62 +6241,62 @@ msgstr "මේ මගින් වේල෠කලà·à¶´à¶º වෙනස් කල à·„à·à¶šà·’ ය." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6104,7 +6450,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6122,7 +6468,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6138,11 +6484,11 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Text User Interface" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6150,144 +6496,144 @@ "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6320,22 +6666,22 @@ msgstr "ස්ටෙලà·à¶»à·’යම් වෙත ධූමකේතු සහ ග්â€à¶»à·„ක ඇතුල්කල à·„à·à¶šà·’ අතුරු මුහුණතකි." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6504,36 +6850,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6551,7 +6904,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6565,14 +6918,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6580,8 +6933,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6599,29 +6953,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6637,51 +7068,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6801,11 +7242,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6813,137 +7254,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6951,49 +7396,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7009,185 +7543,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7541,9 +8069,15 @@ #~ msgid "Ecliptic Line" #~ msgstr "ක්â€à¶»à·à¶±à·Šà¶­à·’වලය" +#~ msgid "Nebulas background images" +#~ msgstr "නිහà·à¶»à·’ක෠පසුබිම් ඡà·à¶ºà·à¶»à·–ප" + #~ msgid "Planets labels" #~ msgstr "ග්â€à¶»à·„ලà·à¶š ලේබල" +#~ msgid "Nebulas" +#~ msgstr "නිහà·à¶»à·’කà·" + #~ msgid ":" #~ msgstr ":" diff -Nru stellarium-0.12.1/po/stellarium/sk.po stellarium-0.12.4/po/stellarium/sk.po --- stellarium-0.12.1/po/stellarium/sk.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/sk.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-05 15:15+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-26 09:56+0000\n" "Last-Translator: Pavol GajdoÅ¡ \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridián" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Rovník" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizont" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Galaktická rovina" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Umiestnenie: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planéta: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Typ: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitúda: %1 (extinkcia %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitúda: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Uhlový priemer: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaxia" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Otvorená hviezdokopa" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Guľová hviezdokopa" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Hmlovina" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetárna hmlovina" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Tmavá hmlovina" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Hviezdokopa s hmlovinou" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Neznáme" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Nedokumentovaný typ" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolútna magnitúda: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Ekliptika voÄi stredu Zeme (k dátumu): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Sklon (k dátumu, pre Zem): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "VzdialenosÅ¥: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "VzdialenosÅ¥: %1 AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Uhlový priemer: %1, s prstencami: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Uhlový priemer: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Siderická perióda: %1 dní (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Siderický deň: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Stredný slneÄný deň: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Fázový uhol: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongácia: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fáza: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Osvetlených: %1%" @@ -204,7 +204,7 @@ msgstr "Predbežné oznaÄenie: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "hviezda" @@ -219,47 +219,125 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Zdanlivá magnitúda: %1 (s extinkciou)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "Eruptívna premenná hviezda" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "Pulzujúca premenná hviezda" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "Rotujúca premenná hviezda" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "Kataklizmatická premenná hviezda" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "Zákrytová dvojhviezda" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "Premenná hviezda" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "dvojhviezda" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Typ: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitúda: %1 (extinkcia: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitúda: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" +"Rozsah jasnosti (magnitúdy): %1%2%3 (Fotometrický systém: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" +"Rozsah jasnosti (magnitúdy): %1%2%3/%4 (Fotometrický systém: " +"%5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektrálny typ: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "VzdialenosÅ¥: %1 svetelných rokov" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaxa: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Obdobie minima: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Obdobie maxima: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Perióda: %1 dní" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Nasledujúce minimum: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Nasledujúce maximum: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Trvanie zákrytu: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "ÄŒas východu: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Kozmická loÄ" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "Korekcie sú blokované. Používaj len keÄ vieÅ¡, Äo robíš!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -270,7 +348,7 @@ "Henrikssonom v jeho Älánku Einsteinova teória relativity potvrdená " "pomocou starodávnych slneÄných zatmení (%1). Viac informácii %2tu%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -279,7 +357,7 @@ "Túto empirickú rovnicu publikoval G. M. Clemence v Älánku O sústave " "astronomických konÅ¡tánt (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -291,7 +369,7 @@ "1650 Spencerom Jonesom (%1) a použitý Jeanom Meeusom v jeho Asronomické " "vzorce pre kalkulaÄky. Bol využitý v PC programe SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -301,7 +379,7 @@ "Astronomických efemeridoch a v Pravidlo zatmení Slnka " "Mucke a Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -312,7 +390,7 @@ "v 5- a 10-dňových intervaloch od 601 p.n.l. do 1649 n.l. Rovnaký vzÅ¥ah bol " "implicitne prijatý v Goldstinových tabuľkách (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -323,7 +401,7 @@ "Zrýchľovanie Zeme a Mesiaca od poÄiatku astronomických pozorovaní " "(%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -332,7 +410,7 @@ "Túto rovnicu publikoval F. R. Stephenson v Älánku Astronomické " "pozorovania pred vynálezom Äalekohľadu (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -345,7 +423,7 @@ "Polynomické aproximácie pre korekciu delta T E.T.-U.T. v období 1800-" "1975 (%1) ako fitovanie cez dáta Brouwera (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -355,7 +433,7 @@ "Planetárne programy atabuľky od -4000 do +2800 (1986) a z PC " "planetária RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -365,11 +443,11 @@ "Túto rovnicu publikovali F. R. Stephenson a L. V. Morrison v Älánku " "Dlhodobé zmeny rotácie Zeme - 700 pr. n. l. až 1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "Algoritmus použitý v PC planetáriu Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -379,7 +457,7 @@ "slneÄnýh zatmení: 1986-2035 (1987) a v jeho PäťdesiatroÄnom súhrne " "lunárnych zatmení: 1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -388,7 +466,7 @@ "Tento vzÅ¥ah bol získaný K.M. Borkowskim (%1) z analýzy 31 solárnych zatmení " "medzi 2137 p.n.l. a 1715 n.l." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -400,7 +478,7 @@ "Älánku Empirické transformácie z U.T. do E.T. v období 1800-1988 " "(%1) ako fitovanie hodnôt od Stephensona a Morrisona (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -410,7 +488,7 @@ "ELP 2000-85 mesaÄnej teórii v ich Lunárne tabuľky a programy od 4000 " "p.n.l. do 8000 n.l. (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -420,7 +498,7 @@ "Túto rovnicu publikovali F. R. Stephenson a L. V. Morrison v Älánku " "Dlhodobé odchýlky rotácie Zeme: 700 pr. n. l. až 1990 (%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -429,7 +507,7 @@ "F. R. Stephenson publikoval tento vzorec vo svojej knižke Historické " "zatmenia a rotácia Zeme (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -439,7 +517,7 @@ "používaný. Tabuľka od 1600 do 2000 a zahŕňa variant Chapront, Chapront-Touze " "a Francou (1997) pre dátumy mimo 1620 do 2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -448,7 +526,7 @@ "JPL Solar System Dynamics Group NASA Jet Propulsion Laboratory použila tento " "vzÅ¥ah na ich interaktívnej webstránke %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -457,7 +535,7 @@ "Tento polynóm bol publikovaný J. Meeusom a L. Simonsom v Älánku " "Polynomiálne aproximácie pre Delta T, 1620-2000 n.l. (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -467,7 +545,7 @@ "poÄítaÄi (2000) poskytuje jednoduchý kubický polynóm na fitovanie dát z " "nedávnej minulosti." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -479,7 +557,7 @@ "kalendárnych tabuliek (2002). Je založený na Astronomických " "algoritmoch (1991) Jeana Meeusa." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -490,7 +568,7 @@ "Stephensonom v Älánku Historické hodnoty chyby zemských hodín %1T a " "výpoÄet zatmení (%2) s dodatkom v (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -503,7 +581,7 @@ "mocninou. Je zaloÄení na možnej periodicite opísanej v Stephenson (%2). Viac " "informácií %3tu%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -517,11 +595,34 @@ "použité pre %1NASA Eclipse Web Site%2 a v ich PäťtisícroÄnom pravidle " "solárnych zatmení: -1900 do +3000" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Použité v predvolenom nastavení." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"RieÅ¡enie B. Banjevica, založené na Stephenson a Morrison (1984), bolo " +"publikované v Älánku Ancient eclipses and dating the fall of " +"Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Toto rieÅ¡enie od S. Islama, M. Sadiqa a M. S. Qureshiho, založenom na " +"rieÅ¡ení od Meeuse & Simonsa (2000), bolo publikované v Älánku Error " +"Minimization of Polynomial Approximation of DeltaT (%1) a revidované S. " +"Islamem v roku 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -530,15 +631,15 @@ "To je kvadratická rovnica pre výpoÄet %1T s koeficientami definovanými " "užívateľom." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Chyba" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "s nezmyselnou hodnotou mimo rozsahu" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -546,20 +647,21 @@ "so strednou chybou menÅ¡ou ako 1 sekunda, max. chyba 1,9 s, a nezmyselná " "hodnota mimo rozsahu" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "s nulovou hodnotou mimo rozsahu" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "s typickou presnosÅ¥ou 1 sekunda a nulová hodnota mimo rozsahu" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Prijateľný rozsah použitia: medzi rokmi %1 a %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Prijateľný rozsah použitia: medzi rokmi %1 a %2." @@ -727,52 +829,53 @@ msgid "Found" msgstr "Nájdené" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "VybraÅ¥ adresár pre snímky obrazovky" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Šírka zorného poľa pri spustení: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Smer pohľadu pri spustení (azimut/výška): %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autori" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licencia" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Spustený skript: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Spustený skript: [žiaden]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -780,16 +883,16 @@ "SÅ¥ahovanie nových katalógov hviezd je dokonÄené!\n" "ReÅ¡tartujte Stellarium pre ich zobrazenie." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "VÅ¡etky dostupné hviezdne katalógy sú nainÅ¡talované." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "StiahnuÅ¥ katalóg %1 z %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -798,7 +901,7 @@ "SÅ¥ahuje sa %1...\n" "(Toto okno môžete zatvoriÅ¥)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -809,7 +912,7 @@ "PoÄet hviezd: %2 miliónov\n" "Rozsah magnitúd: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -818,11 +921,11 @@ "Chyba pri sÅ¥ahovaní %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Kontroluje sa celistvosÅ¥ súboru..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -832,115 +935,123 @@ "Súbor je poÅ¡kodený." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritmus" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Bez korekcie" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomické efemeridy (1960) [Astronomical Ephemeris]" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) a Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller a Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel a Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison a Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson a Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson a Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel a Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze a Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson a Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (s Chapront, Chapront-Touze a Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus a Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck a Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold a Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison a Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak a Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq a Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Užívateľská rovnica %1T" @@ -1112,49 +1223,53 @@ msgid "OSX Developer: %1" msgstr "Vývoj pre OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Konzolové okno skriptu" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Okná" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Medzerník" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Bez popisu" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Žiadne meteory" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normálna frekvencia" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Bežná frekvencia Perzeíd" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Intenzita meteorického roja" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Mimoriadna aktivita Leoníd" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "NajvyÅ¡Å¡ia zaznamenaná aktivita (Leonidy 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Nové Umiestnenie" @@ -1258,19 +1373,19 @@ msgid "starchart" msgstr "hviezdna mapka" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Chyba Äítania zo Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Vyhľadanie v Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Univerzita v Å trasburgu (Francúzsko)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvardova univerzita (USA)" @@ -1286,30 +1401,38 @@ msgid "Alternative shortcut" msgstr "Alternatívna skratka" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Užívateľská rovnica pre %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Typická rovnica pre výpoÄet %1T vyzerá takto:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "kde" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "rok" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Tento systém nepodporuje OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"VaÅ¡a platforma nepodporuje minimálnu požadovanú verziu OpenGL1.2. " +"Aktualizujte, prosím, ovládaÄ grafickej karty." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Slnko" @@ -1326,12 +1449,12 @@ msgstr "Zem" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Mesiac" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1429,7 +1552,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1727,193 +1850,222 @@ msgstr "Inuitská" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Indiánsko-védske" + +#: src/translations.h:171 msgid "Korean" msgstr "Kórejská" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Indiánska - kmeň Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maorská" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navaho" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Å kandinávska" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynézska" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Laponská (Saami)" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongan" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Západná" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Stromy" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Hrebeň Hurricane" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Oceán" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Prehliadka terénov" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "ÄŒiastoÄné zatmenie Mesiaca" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Úplné zatmenie Mesiaca" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Å etriÄ obrazovky" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Zatmenie Slnka 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Skript pri spustení" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zvieratník" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Trojitý východ a západ Slnka na Merkúre" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Dvojité zatmenie na Deimose v r. 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Dvojité zatmenie na Deimose v r. 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Zatmenie na Olympus Mons 10. januára 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Zákryt Zeme a Jupitera v r. 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 prechody a 2 zatmenia z Deimosu v r. 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "SporiÄ obrazovky so SlneÄnou sústavou" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Prehliadka súhvezdí" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Slnko z ostatných planét" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "NajlepÅ¡ie pohľady na Zem z iných telies" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Prechod VenuÅ¡e" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analema" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Prehliadka nebeskej kultúry" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Úkazy Zeme z Merkúra" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Úkazy Zeme z VenuÅ¡e" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Úkazy Zeme z Marsu" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "NajväÄÅ¡ie elongácie a jasy Zeme z Marsu" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "NajväÄÅ¡ie elongácie Zeme a Marsu z Jupitera" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Rozhliadnutie okolo každého nainÅ¡talovaného terénu." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "PrehliadnuÅ¥ každú nainÅ¡talovanú nebeskú kultúru" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skript na demonÅ¡trovanie ÄiastoÄného zatmenia Mesiaca." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skript na demonÅ¡trovanie úplného zatmenia Mesiaca." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Pomalá, nekoneÄná prehliadka náhodných objektov na oblohe." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1921,11 +2073,11 @@ "Skript na demonÅ¡trovanie úplného zatmenia Slnka, ktoré nastalo v roku 2009 " "(poloha=Rangpur, Bangladéš)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skript, ktorý sa vykoná pri spustení programu" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1935,7 +2087,7 @@ "ktoré ležia pozdĺž Äiary, po ktorej sa pohybuje Slnko cez nebeskú sféru " "poÄas roka." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1944,7 +2096,7 @@ "niektorých miestach pozorovaÅ¥ východ a západ Slnka trikrát za jeden deň na " "Merkúre." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1952,7 +2104,7 @@ "Tesne pred zákrytom Slnka Marsom vyjde najprv Fobos a zakryje ho prvý. Úkaz " "nastane medzi Å korpiónom a Strelcom 26. apríla 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1960,13 +2112,13 @@ "Tesne pred zákrytom Slnka Marsom vyjde najprv Fobos a zakryje ho prvý. Úkaz " "nastane medzi Býkom a Blížencami 23. júla 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "Mesiac Fobos prechádza pred Slnkom pri pohľade z hory Olympus Mons 10. " "januára 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1976,7 +2128,7 @@ "zákryt oboch telies v rovnaký deň je vzácny úkaz. Takto bude prebiehaÅ¥ " "dvojitý zákryt 21. januára 2048. Zobrazenie prebieha reálnou rýchlosÅ¥ou." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1991,40 +2143,38 @@ "Marsom a Deimosom. KeÄ Fobos opäť vyjde spoza Marsu, stále je eÅ¡te zatienený " "Marsom, ale po chvíli ho zaleje slneÄný svit." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"SporiÄ obrazovky zobrazuje rôzne úkazy v SlneÄnej sústave. Celkove 171 " -"úkazov!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Prechádza súhvezdiami západnej kultúry." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Pohľad na Slnko z veľkých planét SlneÄnej sústavy a z Pluta." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "NajlepÅ¡ie pohľady na Zem z iných telies SlneÄnej sústavy v priebehu 21. " "storoÄia." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "Prechod VenuÅ¡e pri pohľade z austrálskeho mesta Sydney, 6. júna 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "Ukážka analemy - dráhy Slnka na oblohe poÄas roka." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2032,1468 +2182,1504 @@ "Záblesk supernovy, ktorú pozoroval Tycho Brahe v roku 1572. Musí byÅ¥ zapnutý " "modul Supernovy." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "NajväÄÅ¡ie elongácie a jasnosti Zeme z Marsu v rokoch 2000-3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "NajväÄÅ¡ie elongácie Zeme z Jupitera v rokoch 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Spojené arabské emiráty" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua a Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albánsko" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Arménsko" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Holandské Antily" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktída" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentína" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Americká Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Rakúsko" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Austrália" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbajdžan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosna a Hercegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladéš" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgicko" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulharsko" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrajn" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermudy" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunej" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolívia" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brazília" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamy" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhután" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvetov ostrov" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Bielorusko" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kokosové ostrovy" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Konžská demokratická republika" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Stredoafrická republika" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Konžská republika" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Å vajÄiarsko" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Pobrežie Slonoviny" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cookove ostrovy" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "ÄŒile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Čína" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolumbia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Kostarika" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Srbsko a ÄŒierna Hora" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kapverdy" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "VianoÄný ostrov" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Cyprus" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ÄŒeská republika" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Nemecko" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Džibutsko" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Dánsko" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominika" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominikánska republika" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Alžírsko" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekvádor" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estónsko" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egypt" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Západná Sahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Å panielsko" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiópia" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Fínsko" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fidži" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandské ostrovy" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronézia" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Faerské ostrovy" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Francúzsko" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabun" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Spojené kráľovstvo" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Gruzínsko" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Francúzska Guyana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltár" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grónsko" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Rovníková Guinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grécko" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Južná Georgia a Južné Sandwichove ostrovy" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hongkong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heardov ostrov" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Chorvátsko" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "MaÄarsko" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonézia" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ãrsko" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Izrael" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "India" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Britské indickooceánske územie" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Irán" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Island" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Taliansko" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamajka" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordánsko" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japonsko" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Keňa" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgizsko" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodža" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komory" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Svätý KriÅ¡tof a Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Kórejská ľudovodemokratická republika" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Kórejská republika" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuvajt" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Kajmanie ostrovy" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazachstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Svätá Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "LichtenÅ¡tajnsko" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Srí Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Libéria" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litva" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxembursko" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "LotyÅ¡sko" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Líbya" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Maroko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavsko" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshallove ostrovy" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Macedónsko" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Mjanmarsko" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongolsko" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Severné Mariány" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinik" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauritánia" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Maurícius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldivy" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexiko" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malajzia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namíbia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nová Kaledónia" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigéria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nikaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Holandsko" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Nórsko" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepál" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nový Zéland" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Omán" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Francúzska Polynézia" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua-Nová Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipíny" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Poľsko" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre a Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairnove ostrovy" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Portoriko" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palestínske okupované územia" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugalsko" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguaj" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Katar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Rumunsko" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Srbsko" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Ruská federácia" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudská Arábia" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Å alamúnove ostrovy" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychely" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudán" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Å védsko" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Svätá Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovinsko" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard a Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovensko" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Maríno" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somálsko" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Svätý Tomáš a Princov ostrov" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Salvádor" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Sýrska arabská republika" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Svazijsko" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Ostrovy Turks a Caicos" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "ÄŒad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Francúzske južné a antarktické územia" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thajsko" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadžikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Východný Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkménsko" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisko" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turecko" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad a Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzánia" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukrajina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "MenÅ¡ie odľahlé ostrovy USA" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Spojené Å¡táty" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguaj" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikánsky mestský Å¡tát" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Svätý Vincent a Grenadíny" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Britské Panenské ostrovy" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Americké Panenské ostrovy" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis a Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Juhoslávia" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Južná Afrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Dátum a Äas" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "PridaÅ¥ hviezdny deň" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "PridaÅ¥ hviezdny mesiac" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "PridaÅ¥ hviezdny týždeň" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "PridaÅ¥ hviezdny rok" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "PripoÄítaÅ¥ 1 siderické storoÄie" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "PridaÅ¥ deň" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "PridaÅ¥ hodinu" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "PridaÅ¥ týždeň" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "PripoÄítaj 1 synodický mesiac" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "PripoÄítaj 1 drakonický mesiac" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "PripoÄítaj 1 anomalistický mesiac" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "PripoÄítaj 1 stredný tropický mesiac" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "PripoÄítaj 1 drakonický mesiac" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "PripoÄítaj 1 stredný tropický rok" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "PripoÄítaÅ¥ 1 stredné tropické storoÄie" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "ZnížiÅ¥ rýchlosÅ¥ skriptu" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "SpomaliÅ¥ plynutie Äasu" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Mierne znížiÅ¥ rýchlosÅ¥ plynutia Äasu" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "ZvýšiÅ¥ rýchlosÅ¥ skriptu" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "ZrýchliÅ¥ plynutie Äasu" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Mierne zvýšiÅ¥ rýchlosÅ¥ plynutia Äasu" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "PozastaviÅ¥ vykonávanie skriptu" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "PokraÄovaÅ¥ vo vykonávaní skriptu" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "NastaviÅ¥ aktuálny Äas" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "NastaviÅ¥ bežnú rýchlosÅ¥ behu skriptu" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "NastaviÅ¥ skutoÄnú rýchlosÅ¥ Äasu" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "NastaviÅ¥ rýchlosÅ¥ Äasu na nulu" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "ZastaviÅ¥ vykonávanie skriptu" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "UbraÅ¥ hviezdny deň" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "UbraÅ¥ hviezdny mesiac" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "UbraÅ¥ hviezdny týždeň" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "UbraÅ¥ hviezdny rok" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "OdpoÄítaÅ¥ 1 siderické storoÄie" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "UbraÅ¥ deň" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "UbraÅ¥ hodinu" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "UbraÅ¥ týždeň" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "OdpoÄítaj 1 synodický mesiac" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "OdpoÄítaj 1 drakonický mesiac" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "OdpoÄítaj 1 anomalistický mesiac" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "OdpoÄítaj 1 stredný tropický mesiac" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "OdpoÄítaj 1 drakonický rok" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "OdpoÄítaj 1 stredný tropický rok" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "OdpoÄítaÅ¥ 1 stredné tropické storoÄie" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Možnosti zobrazenia" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "ZrkadliÅ¥ horizontálne" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Celoobrazovkový režim" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosféra" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimutálna mriežka" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Svetové strany" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Obrázky súhvezdí" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Hranice súhvezdí" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Názvy súhvezdí" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "ÄŒiary súhvezdí" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Obrázky Deep-Sky objektov" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Obrázky pozadia objektov hlbokého vesmíru" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptická sieÅ¥ J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Rovník" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatoriálna sieÅ¥" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatoriálna sieÅ¥ (epocha J2000)" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Hmla" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktická mriežka" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galaktická rovina" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Terén" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Hranica obzoru" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "MIestny poludník" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Deep-Sky objekty" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Objekty hlbokého vesmíru" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "NoÄný režim" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "OznaÄenia planét" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Obežné dráhy planét" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Stopy planét" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Hviezdy" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Menovky hviezd" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "ZrkadliÅ¥ vertikálne" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Rôzne" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Automaticky skrývaÅ¥ vodorovný panel tlaÄidiel" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Automaticky skrývaÅ¥ zvislý panel tlaÄidiel" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Návrat domov" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "UkonÄiÅ¥" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "SkopírovaÅ¥ informácie o vybranom objekte do schránky" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "UložiÅ¥ snímku obrazovky" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Prepnúť medzi paralaktickou a azimutálnou montážou" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "ZobraziÅ¥/skryÅ¥ GUI" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Pohyb a výber" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "ZacieliÅ¥ na oznaÄený objekt" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Presunúť sa na vybratú planétu" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "SledovaÅ¥ objekt" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "PriblížiÅ¥ oznaÄený objekt" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "ZmenÅ¡iÅ¥" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Uhlomer" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "ZnaÄky kompasu" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "ZobraziÅ¥ exoplanéty" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Okno nastavení exoplanét" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "PozorovateľnosÅ¥" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Okno nastavení pozorovateľnosti objektov" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Nastavenie modulu okuláre" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okulárové zobrazenie" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Zobraz zameriavací kríž" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Ponuka okulárov" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Rám obrazového snímaÄa" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "ZameriavaÄ Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "VybraÅ¥ Äalší teleskop" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Vyber Äalší okulár" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "VybraÅ¥ predchádzajúci teleskop" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Vyber predchádzajúci okulár" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Zobraz pulzary" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Okno nastavení pulzarov" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Zobraz kvazary" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Okno nastavení kvazarov" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Okno konfigurácie satelitov" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Stopy satelitov" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Popisky satelitov" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Okno nastavení historických supernov" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "NaviesÅ¥ Äalekohľad na stanovené súradnice" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "ZobraziÅ¥ obnovovaciu frekvenciu obrazu" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skripty" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "SpustiÅ¥ skript s terénmi z tohto súboru" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "ZobraziÅ¥ a zväÄÅ¡iÅ¥ Mesiac" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Nastavenia" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Dátum a Äas" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Pomocník" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Zemepisná poloha" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Vyhľadávanie" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Okno klávesových skratiek" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Zobrazovanie objektov, a vlastnosti zobrazovania" @@ -3519,7 +3705,7 @@ msgstr "ObnoviÅ¥" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Zemepisná poloha" @@ -3535,10 +3721,10 @@ msgid "Return to default" msgstr "Východzie hodnoty" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "VymazaÅ¥" @@ -3547,7 +3733,7 @@ msgstr "PridaÅ¥ do zoznamu" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Zemepisná šírka:" @@ -3559,12 +3745,12 @@ "Hodnoty môžete zadaÅ¥ v stupňoch, alebo vo formáte DMS, napríklad: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Zemepisná dĺžka:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Nadmorská výška:" @@ -3588,363 +3774,409 @@ msgid "Planet:" msgstr "Planéta:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "VyhľadaÅ¥ objekt" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "NájsÅ¥ objekt alebo polohu" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "ióta" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gama" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilón" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "éta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "théta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mí" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ní" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksí" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pí" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ró" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ypsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fí" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chí" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psí" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Grécke písmená Bayerovho oznaÄenia" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekt" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Poloha" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "Niektoré objekty budú nájdené až po aktivácií prísluÅ¡ného modulu" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "mená v slovenÄine" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "HľadaÅ¥ v zozname..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Zoznamy" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "On-line astronomická databáza SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Rozšírenie hľadania so SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Možnosti hľadania" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Možnosti" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "mená v slovenÄine" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "HľadaÅ¥ v zozname..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Zoznamy" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Zobrazovanie" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Obloha" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Mapa" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Terén" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Mytológia" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Názvy a znaÄky" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planéty" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Názvy a znaÄky pre vesmírne objekty (hviezdokopy, galaxie a hmloviny)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "OHV" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planéty a obežnice" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "ZobraziÅ¥ planéty" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "ZobraziÅ¥ znaÄky planét" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "ZobraziÅ¥ dráhy planét" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "SimulovaÅ¥ rýchlosÅ¥ svetla" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "ZväÄÅ¡iÅ¥ Mesiac" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Automatická zmena terénu pri zmene planéty" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Automatický výber terénu" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "ZobraziÅ¥ atmosféru" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Svetelné zneÄistenie:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "tlak, teplota, faktor extinkcie" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Nastavenie refrakcie/extinkcie" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolútna stupnica:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relatívna stupnica:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Jas MlieÄnej cesty" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Mihotanie:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "ZoslabiÅ¥ slabé hviezdy ak je viditeľný veľmi jasný objekt" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Adaptácia oÄí" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Meteory" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Hodinová zenitová rýchlosÅ¥" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "ZHR:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Limitná magnitúda (pre voľné oko/binokulár)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Limitná magnitúda" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Hviezdy do magnitúdy" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Limitná jasnosÅ¥ hviezd" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "Hmloviny do magnitúdy" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Limitná jasnosÅ¥ vesmírnych objektov (hviezdokopy, galaxie a hmloviny)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Súhvezdia" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "ZobraziÅ¥ Äiary" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "ZobraziÅ¥ názvy" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "ZobraziÅ¥ hranice" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "ZobraziÅ¥ kresby" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Jas kresieb:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Nebeská klenba" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Zobrazenie rovníka" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "ZobraziÅ¥ poludníkovú Äiaru" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Zobrazenie obzoru" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Zobrazenie ekliptiky" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Zobrazenie galaktického rovníka" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projekcia" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "PridaÅ¥/odstrániÅ¥ terény..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "ZobraziÅ¥ terén" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "ZobraziÅ¥ hmlovinu" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "PoužiÅ¥ vybratú planétu a zemepisnú polohu" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "PoužiÅ¥ tento terén ako predvolený" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "PoužiÅ¥ túto kultúru ako predvolenú" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Viditeľný" @@ -3998,7 +4230,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Smer, ktorým sa pozeráte pri spustení Stellaria" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informácie o vybranom objekte" @@ -4014,11 +4246,8 @@ msgid "Display no information" msgstr "NezobrazovaÅ¥ informácie" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Žiadne" @@ -4160,7 +4389,7 @@ msgstr "sekundy" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Dátum a Äas pri spustení" @@ -4172,19 +4401,23 @@ msgid "Other:" msgstr "Iný:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "PoužiÅ¥ súÄasný miestny Äas a dátum" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "použiÅ¥ súÄasný" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Spustí Stellarium s aktuálnym systémovým Äasom" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Systémový Äas" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4192,23 +4425,23 @@ "Stellarium sa spustí s dátumom a Äasom najbližšieho nasledujúceho výskytu " "tohoto Äasu." -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Systémový dátum o:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "ÄŒasová korekcia" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Úprava rovnice" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Nastavenia pre planetárium" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4216,51 +4449,51 @@ "Tento režim sa využíva, keÄ sa Stellarium premieta prostredníctvom " "sférického (guľového) zrkadla v nízkonákladových planetáriách." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Skreslenie sférického zrkadla" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Schová vÅ¡etko mimo stredného okrúhleho zorného poľa." -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Kruhové zorné pole" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "SkryÅ¥ ostatné súhvezdia, keÄ kliknete na jedno z nich" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "VybraÅ¥ jediné súhvezdie" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Zarovná názvy s obzorom" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "OrientovaÅ¥ názvy" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Prepnúť zobrazenie pozadí hmlovín." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Zobrazit tlaÄidlo pozadia hmloviny" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "ZobraziÅ¥ tlaÄidlá horizontálneho a vertikálneho prevrátenia obrazu" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "ZobraziÅ¥ tlaÄidlá prevrátenia" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4268,92 +4501,100 @@ "KeÄ je táto možnosÅ¥ zapnutá, použitie klávesy na automatické oddialenie " "pohľadu zároveň nastaví poÄiatoÄný smer pohľadu." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatické oddialenie nastaví poÄiatoÄný smer pohľadu" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"ZobraziÅ¥ slneÄný tieň na planetách a mesiacoch (táto funkcia vyžaduje OpenGL " +"verziu 2 alebo vyÅ¡Å¡iu)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "ZobraziÅ¥ slneÄné tiene" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Zachytené obrazovky" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Adresár snímkov obrazovky" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "InvertovaÅ¥ farby" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Aktualizácia katalógu hviezd" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Kliknite tu pre Å¡tart sÅ¥ahovania" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Stiahnite tento súbor a uvidíte viac hviezd" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "ReÅ¡tartovaÅ¥ sÅ¥ahovanie" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "SkúsiÅ¥ znovu" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "ZruÅ¡iÅ¥ sÅ¥ahovanie. Neskôr ho môžete kedykoľvek reÅ¡tartovaÅ¥" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "ZruÅ¡iÅ¥" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "ZatvoriÅ¥ okno keÄ je skript spustený" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "SpustiÅ¥ vybratý skript" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "ZastaviÅ¥ spustený skript" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "NahraÅ¥ pri spustení" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "nastaviÅ¥" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Hlavné" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informácie" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigácia" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Ostatné" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Moduly" @@ -4529,12 +4770,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Zobrazenie znaÄiek azimutu pozdĺž horizontu" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okuláre" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4544,164 +4785,164 @@ "sa len zväÄÅ¡enie a zorné pole.) Dokáže zobraziÅ¥ aj obrazový snímaÄ a " "hľadáÄik Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Pred zapnutím okulárového zobrazenia vyberte objekt." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Predchádzajúci okulár" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&ÄŽalší okulár" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "VybraÅ¥ &okulár" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "PÅ™epnout &zaměřovaÄ" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "NastaviÅ¥ &okuláry" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Prepnúť &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "Prepnúť hľadáÄik &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Predchádzajúce CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Nasledujúce CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&VybraÅ¥ CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&OtoÄiÅ¥ CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&ResetovaÅ¥ otoÄenie" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okulár #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okulár #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Okulár FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Okulár aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Å oÅ¡ovky #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Å oÅ¡ovky #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Å oÅ¡ovky: žiadne" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "ZväÄÅ¡enie: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Zorné pole: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Rozmery: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Senzor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "SnímaÄ #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "Å &oÅ¡ovka" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&Predchádzajúca Å¡oÅ¡ovka" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&Nasledujúca Å¡oÅ¡ovka" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Predchádzajúci teleskop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Nasledujúci teleskop" @@ -4773,65 +5014,70 @@ msgid "Apparent field of view of the ocular" msgstr "Zdanlivé zorné pole okuláru" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "NásobnosÅ¥: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Å oÅ¡ovka: žiadna" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "NásobnosÅ¥: N/A" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "NásobnosÅ¥ Å¡oÅ¡ovky" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "Ohnisková vzdialenosÅ¥ okulára" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "OtoÄenie: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "ZväÄÅ¡enie týchto binokulárov" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Aktuálne zorné pole týchto binokulárov" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "ZväÄÅ¡enie poskytnuté touto kombináciou okulára/Å¡oÅ¡ovky/teleskopu" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "Aktuálne zorné pole poskytnuté touto kombináciou okulára/Å¡oÅ¡ovky/teleskopu" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Modul okuláre" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Verzia" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Funkcia Barlowej Å¡oÅ¡ovky" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "Prehľad" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4843,7 +5089,7 @@ "teleskopy, ako aj snímaÄe CCD. Pri prvom spustení aplikácie bude k " "dispozícii niekoľko ukážok, ktoré vám pomôžu zaÄaÅ¥ pracovaÅ¥." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4860,7 +5106,7 @@ "zväÄÅ¡enie obrazu zbytoÄne zaberá veľkú ÄasÅ¥ obrazovky. OdporúÄame preto " "zväÄÅ¡enie nepoužívaÅ¥, pokiaľ nie je potrebné." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4869,7 +5115,7 @@ "Zameriavací kríž môžete prepínaÅ¥. V ideálnom prípade sa mal kríž orientovaÅ¥ " "na sever. Nebolo to možné, preto sa orientuje voÄi hornej hrane obrazovky." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4882,118 +5128,126 @@ "0,5%1, 2,0%1 a 4,0%1, takže ľahÅ¡ie porovnáte, Äo by ste videli voľným okom " "cez hľadáÄik Telrad (alebo podobný)." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "Ak nájdete nejaké chyby, prosím dajte mi vedieÅ¥." -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Klávesové skratky" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "Priradenie kláves v module môžete nastaviÅ¥ na záložke Hlavné." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[nenastavená žiadná klávesa]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Zapne/vypne okulárovú vrstvu." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Zobrazí vyskakovaciu ponuku navigácie." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "PovoliÅ¥, len ak je vybraný nejaký objekt" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "ZmeniÅ¥ mierku obrazového kruhu" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Priradenie klávesov" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Prepnúť zobrazenie okulára:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "OtvoriÅ¥ vyskakovacie navigaÄné menu:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Rozhranie" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Ovládací panel na obrazovke" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "PoužiÅ¥ stupne a minúty v nastavení zorného poľa a CCD" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "VÅ¡eobecný" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okuláre" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "PridaÅ¥" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Názov:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "zZP:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Hĺbka zaostrenia:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Clona:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Binokuláre" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Å oÅ¡ovky" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "NásobnosÅ¥:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "ZväÄÅ¡enie:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5001,74 +5255,75 @@ "Hodnoty násobnosti >1 predĺžujú ohniskovú vzdialenosÅ¥ (Barlowova Å¡oÅ¡ovka). " "Hodnoty násobnosti <1 zmenÅ¡ujú ohniskovú vzdialenosÅ¥ (Shapleyova Å¡oÅ¡ovka)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "SnímaÄe" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Rozlíšenie x (v pixeloch):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Rozlíšenie y (v pixeloch):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Šírka Äipu (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "Výška Äipu (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Šířka pixelu (mikron)" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "Výška pixelu (mikron)" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskopy" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Priemer:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Horizontálne preklopenie" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Vertikálne preklopenie" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "O module" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelity" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5076,88 +5331,148 @@ "PredpoveÄ polohy umelých satelitov na obežnej dráhe Zeme podľa údajov TLE " "veliteľstva NORAD" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Súbor satellites.json z predchádzajúcich verzií nie je kompatibilný - " "použije sa predvolený súbor" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "Viditeľné" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "Vedecké" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "KomunikaÄné" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "NavigaÄné" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "Amatérske" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "Meterologické" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "Geostacionárne" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "NefunkÄné" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "GPS" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "Iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "Hubblov vesmírny teleskop" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "Medzinárodná vesmírna stanica" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "ÄŒ. katalógu" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Medzinárodný identifikátor" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "umelá družica" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "VzdialenosÅ¥ (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Približovanie/vzÄaľovanie (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Výška (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Podbod (Zem. šír./dĺžka): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Súradnice TEME (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "RýchlosÅ¥ TEME (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Satelit a pozorovateľ sú v slneÄnom svetle." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satelit je viditeľný." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Družica je v zákryte." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satelit nie je viditeľný" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Modul satelity pre Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5165,18 +5480,18 @@ "Zásuvný modul Satelity predpovedá pozície umelých satelitov na obežnej dráhe " "Zeme." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Poznámky pre používateľov" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Satelity a ich obežné dráhy sa zobrazujú, len ak sa pozorovateľ nachádza na " "Zemi." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5186,7 +5501,7 @@ "prípadne aj mesiac do minulosti a budúcnosti). OÄakávajte zvláštne výsledky " "pri dátumoch mimo tohto rozsahu." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5196,7 +5511,7 @@ "elementy (TLE)." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5207,7 +5522,7 @@ "súbor %3. Pôvodný súbor sa uloží pod názvom %4, ktorý sa nachádza v adresári " "údajov programu v podadresári \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5216,11 +5531,11 @@ "chýbajúce alebo chybné." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Aktualizácie údajov TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5230,7 +5545,7 @@ "zdrojov a predvolene tak vykoná, ak sú existujúce údaje starÅ¡ie ako 72 " "hodín. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5241,7 +5556,7 @@ "na svojom poÄítaÄi. Tento súbor musí byÅ¥ v rovnakom formáte ako " "aktualizácie, ktoré poskytuje Celestrak (ako príklad si pozrite %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5249,11 +5564,11 @@ "Poznámka: Ak názov satelitu v aktualizaÄných údajoch obsahuje na " "konci Äokoľvek v hranatých zátvorkách, pred použitím údajov sa to odstráni." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Pridanie nových satelitov" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5266,11 +5581,11 @@ "'+'. Vyberte satelity (resp. satelit), ktoré si prajete pridaÅ¥, a zvoľte " "tlaÄidlo PridaÅ¥." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Technické poznámky" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5278,7 +5593,7 @@ "Pozície sa vypoÄítavajú pomocou metód SGP4 a SDP4 s použitím údajov TLE " "veliteľstva NORAD ako vstupu. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5287,24 +5602,26 @@ "dokumentu Spacetrack Report #3 (vrátane Spacetrack Report #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "ViÄ %1tento dokument%2 pre podrobnosti." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Linky" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5314,31 +5631,34 @@ "sa uistite, že ste do predmetu vložili \"%1\"." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Ak máte otázku, odpoveÄ môžete %1získaÅ¥ tu%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Chyby môžete ohlásiÅ¥ %1tu%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5346,295 +5666,338 @@ "Ak chcete požiadaÅ¥ o novú funkciu, môžete vytvoriÅ¥ hlásenie o chybe a " "vážnosÅ¥ (severity) nastaviÅ¥ na \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internetové aktualizácie vypnuté" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Aktualizujem..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "ÄŽalÅ¡ia aktualizácia: < 1 minúta" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "ÄŽalÅ¡ia aktualizácia: %1 minút" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "ÄŽalÅ¡ia aktualizácia: %1 hodín" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "AktualizovaÅ¥ teraz" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "AktualizovaÅ¥ zo súborov" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Chyba aktualizácie" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Aktualizovaných %1/%2 satelitov; %3 chýbajú" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Aktualizovaných %1/%2 satelitov; %3 pridaných; %4 odstranených" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Aktualizovaných %1/%2 satelitov; %3 pridaných; %4 chýbajú" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[nový zdroj]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "AktualizovaÅ¥ teraz" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "AktualizovaÅ¥ zo súborov" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[chyba výpoÄtu obežnej dráhy]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[vÅ¡etky novo vložené]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[vÅ¡etky nezobrazené]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[vÅ¡etky zobrazené]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[vÅ¡etky]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Nová skupina..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Vyberte súbor s novými TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "SÅ¥ahujem dáta..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" "Stellarium sÅ¥ahuje dáta satelitov z aktualizaÄných zdrojov. ÄŒakajte prosím..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Vyberte súbor(y) so zdrojovými TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Spracúvam dáta..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Žiadne dáta sa nepodarilo stiahnuÅ¥. Skúste neskôr." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Katalóg Äíslo: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Nastavenia satelitov" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Aktualizácia zoznamov TLE z internetových zdrojov" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "Aktualizácie" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "AktualizovaÅ¥ z internetových zdrojov" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Aktualizuj dáta o satelitoch z internetu" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Posledná aktualizácia:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "Pri aktualizácii pridaÅ¥ vÅ¡etky nové satelity zo zvolených zdrojov" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Pri aktualizácii odstrániÅ¥ satelity, ktoré už nie sú v zdrojoch aktualizácie" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "Frekvencia aktualizácií (v hodinách):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Å títky" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "VeľkosÅ¥ písma popisiek (v pixeloch):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "ÄŒiary obežných dráh" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "PoÄet segmentov použitých na vykreslenie Äiary" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "PoÄet segementov:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Trvanie jedného segmentu v sekundách" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Dĺžka segmentu (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "PoÄet segmentov použitých na vykreslenie konca Äiary" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Dĺžka dosvitu:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "ObnoviÅ¥ pôvodné nastavenia" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "UložiÅ¥ nastavenia jako základné" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Nastavenia" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Dvojklikom na satelit ho zaÄnete sledovaÅ¥." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "PridaÅ¥ viac satelitov" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "OdstrániÅ¥ vybraté satelity" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "UložiÅ¥ zmeny" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Katalógové Äíslo:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "ZobraziÅ¥ vybratý/é satelit/y" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Zobrazené" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "ZobraziÅ¥ Äiary obežných dráh pre vybraté satelity" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Obežná dráha" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Katalógové Äíslo:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "Neaktualizuj (alebo neodstraňuj) vybrané satelity" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Neaktualizuj" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Opis:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Skupiny:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "ÄŒiarkami oddelený zoznam skupín" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Údaje TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "Dvojriadkové orbitálne elementy NORAD" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "OdstrániÅ¥ vybraté satelity" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "PridaÅ¥ viac satelitov" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Nastavenie TLE:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "UložiÅ¥ zmeny" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Satelity v oznaÄenom zdrojovom zozname budú automaticky pridané pri ÄalÅ¡ej " +"aktualizácii, pokiaľ už nie sú v kolekcii." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5642,15 +6005,15 @@ "Vložte alebo upravte adresu URL vybraného zdroja. Zmeny sa uložia stlaÄením " "klávesu Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "PridaÅ¥ nový zdroj" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "OdstrániÅ¥ vybraný zdroj" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Zdroje" @@ -5686,11 +6049,11 @@ msgid "Discard" msgstr "OdstrániÅ¥" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Ovládanie teleskopu" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5698,12 +6061,12 @@ "Tento zásuvný modul umožňuje programu Stellarium vyslaÅ¥ príkazy na navedenie " "Äalekohľadu vybaveného motorickým ovládaním (\"Äalekohľad GoTo\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "NaviesÅ¥ Äalekohľad #%1 na vybraný objekt" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "NaviesÅ¥ Äalekohľad #%1 na aktuálne nastavený stred obrazovky" @@ -6110,62 +6473,62 @@ "zmeniÅ¥ spôsob, akým je v stavovom riadku zobrazovaný Äas a dátum." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "január" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "február" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "marec" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "apríl" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "máj" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "jún" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "júl" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "august" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "september" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "október" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "november" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "december" @@ -6325,7 +6688,7 @@ "Tieto nastavenia ovládajú spôsob zobrazenia Äasu a dátumu v stavovom riadku." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Formát zobrazenia Äasu" @@ -6343,7 +6706,7 @@ msgstr "24-hodinový formát" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Formát zobrazenia dátumu" @@ -6359,11 +6722,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-rrrr" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Textové rozhranie" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6371,144 +6734,144 @@ "Implementácia modulu textového rozhrania z verzií 0.9.x, používaných v " "planetáriových systémoch" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Teleso slneÄnej sústavy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Aktuálny dátum/Äas" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "NastaviÅ¥ Äasové pásmo" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Klávesy dňa" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Prednastavenie poÄiatoÄného dňa/Äasu" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "systém" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "predvolený" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddrrrr" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmrrrr" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "rrrrmmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Jazyk" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "ZobraziÅ¥ hviezdy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Farby" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Názvy hmlovín" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Náznaky hmlovín" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Galaktická rovina" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Efekty" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "RuÄné priblíženie" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Faktor násobenia jasnosti" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Intenzita MlieÄnej Cesty:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "Frekvencia menovky hmlovín:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Trvanie priblíženia" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "ÄŒas skrytia kurzora:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Zmena terénu zmení aj polohu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "SpustiÅ¥ lokálny skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "ZastaviÅ¥ bežiaci skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD skript" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administrácia" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "NaÄítaÅ¥ základné nastavenia" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "UložiÅ¥ aktuálne nastavenie" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Vypnúť" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[žiaden režim TUI]" @@ -6544,16 +6907,16 @@ "vyhľadávaÅ¥ v ich online databáze. Zatiaľ ide o experimentálnu funkciu." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Dopyt do MPC: %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Pri úspeÅ¡nom dopyte sa zobrazí iba jeden výsledok." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6561,7 +6924,7 @@ "Kométy a asteroidy môžu byÅ¥ identifikované podľa ich Äísla, názvu (v " "angliÄtine) alebo doÄasného názvu." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6748,40 +7111,43 @@ msgid "Solar System" msgstr "SlneÄná sústava" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Historické supernovy" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Modul, ktorý zobrazuje niektoré historické supernovy jasnejÅ¡ie ako 10. " -"vizuálna magnitúda." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "supernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Typ supernovy: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Modul historické supernovy" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Modul zobrazuje niektoré historické supernovy jasnejÅ¡ie ako 10. vizuálna " -"magnitúda: " #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Svetelné krivky" @@ -6802,7 +7168,7 @@ msgstr "PoÄakovanie" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "ÄŽakujeme následujúcim ľuÄom za ich príspevky a užitoÄné komentáre:" @@ -6816,14 +7182,14 @@ msgstr "InÅ¡titút teoretickej a experimentálnej fyziky" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "v Rusku" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6833,8 +7199,9 @@ "katalógu, nájdete ho na %1tejto adrese%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "ÄŽalÅ¡ia aktualizácia: %1 dní" @@ -6852,29 +7219,106 @@ msgstr "Nastavenie modulu historické supernovy" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "AktualizovaÅ¥ katalóg z internetu" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "AktualizovaÅ¥ z internetových zdrojov" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "Frekvencia aktualizácií (v dňoch):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[informácia o nasledujúcej aktualizácii]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Typ: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kvazary" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6893,11 +7337,11 @@ msgid "Z (redshift): %1" msgstr "Z (Äervený posun): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Modul Kvazary" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6907,40 +7351,50 @@ "vizuálna magnitúda. Katalóg kvazarov je prevzatý z práce \"Quasars and " "Active Galactic Nuclei\" (13th Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Kvazary sú aktualizované" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Nastavenia kvazarov" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Nastavenia modulu Kvazary" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Režim zobrazenia kvazarov" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Nastavenia kvazarov" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "ZobraziÅ¥ vÅ¡etky kvazary bez popisiek" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Zapnúť zobrazenie distribúcie kvazarov" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "PovoliÅ¥ zobrazenie pri Å¡tarte" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Zobraz tlaÄidlo kvazary na liÅ¡te" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Pulzary" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7065,11 +7519,11 @@ "Izolovaná neutrónová hviezda s pulznou tepelnou rentgenovou emisiou ale bez " "detekovateľnej rádiovej emisie" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Modul Pulzary" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7080,67 +7534,71 @@ "(Manchester, R. N., Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, " "1993-2006 (2005) (%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Poznámka" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "identifikátory pulzarov majú predponu 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "PoÄakovanie" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Rádioastronomické observatórium PuÅ¡Äino" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Rádioastronomické observatórium Nancy" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "vo Francúzsku" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Pulzary sú aktualizované" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Nastavenia pulzarov" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Nastavenia modulu Pulzary" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Režim zobrazenia pulzarov" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Nastavenia pulzarov" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "ZobraziÅ¥ vÅ¡etky pulzary bez menoviek" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Zapnúť zobrazovanie distribúcie pulzarov" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Zobraz tlaÄidlo pulzary na liÅ¡te" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Exoplanéty" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7148,71 +7606,71 @@ "Tento modul zobrazuje polohu hviezd s exoplanétami. Údaje o exoplanétach sú " "odvodené z Encyklopédie exoplanét na adrese exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "Metalicita" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "HmotnosÅ¥" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "Polomer" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Efektívna teplota: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Exoplanéta" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" -msgstr "Obdobie" +msgstr "Perióda" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "dní" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Jup" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Hlavná poloos" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Excentricita" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Sklon" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Uhlová vzdialenosÅ¥" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Rok objavenia" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Modul Exoplanéty" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7222,7 +7680,7 @@ "\"%1The Extrasolar Planets Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7231,42 +7689,131 @@ "Ak si chcete priÄítaÅ¥ kompletné informácie o tomto module, jeho histórii a " "formáte katalógov môžete tak %1urobiÅ¥ tu%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "VÅ¡eobecné profesionálne stránky týkajúce sa extrasolárnych planét" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Exoplanéty: interaktívna verzia XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "HEK (hľadanie exoplanét sondou Kepler)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Exoplanéty v dvoj- a viacnásobných sústavách (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "Pomenovanie exoplanét (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "Niektorí astronómovia a skupiny zapojené do výskumu exoplanét" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "aktualizácia: 16. apríl 2012" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "Prieskumník údajov o exoplanétach" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "Anglo-austrálska prehliadka planét" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "Ženevské programy hľadania exoplanét" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (novinky o optickej interferometrii s dlhou základňou)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "Program prieskumu exoplanét v NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Planéty pri pulzaroch" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "Archív exoplanét v NASA" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "Komisia IAU 53: extrasolárne planéty" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "Galéria obývateľnej zóny" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest - hľadanie druhej Zeme" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Otvorený katalóg exoplanét" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "Katalóg obývateľných exoplanét" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Exoplanéty sú aktualizované" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "Nastavenia exoplanét" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "Nastavenia modulu Exoplanéty" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "AktualizovaÅ¥ dáta exoplanét z internetu" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Režim zobrazenia exoplanét" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Nastavenia exoplanét" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "ZobraziÅ¥ vÅ¡etky sústavy s exoplanétami bez popisky" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "ZobraziÅ¥ rozloženie exoplanét" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "ZobraziÅ¥ exoplanéty od ich objavu" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "ZobraziÅ¥ Äasovú os objavov exoplanét" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Zobraz tlaÄidlo exoplanéty na liÅ¡te" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "Informácie" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "PozorovateľnosÅ¥" @@ -7288,185 +7835,179 @@ "a kozmikálneho východu/západu.

    Vysvetlenie údajov vypoÄítaných týmto " "skriptom nájdete v záložke \"Informácie\" v okne nastavení." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "jan" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "feb" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "mar" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "apr" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "máj" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "jún" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "júl" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "aug" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "sep" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "okt" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "nov" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "dec" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "h" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "s" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Zapadá o %1 (za %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Východ %1 (pred %2)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Západ %1 (pred %2)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Vychádza %1 (za %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "Cirkumpolárne." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Nevychádza." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "Kulminuje o %1 (%2) vo výške %3 st." -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "Kulminácia nastala o %1 (pred %2) vo výške %3 st." -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Zdroj nie je pozorovateľný." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Žiaden akronychálny ani kozmikálny východ/západ." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "NajväÄÅ¡ia elongácia: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "NajväÄÅ¡ia odchýlka od Slnka: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (na %1 stup.)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Akronychálny východ/západ" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Nenastáva akronychálny východ/západ." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "Kozmikálny východ/západ" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Nenastáva kozmikálny východ/západ." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "Pozorovateľné behom celého roku." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "PoÄas tmavej noci nie je pozorovateľný." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "PoÄet nocí nad horizontom: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "DNES:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "TENTO ROK:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Predchádzajúci spln Mesiaca: %1 %2 o %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "ÄŽalší spln Mesiaca: %1 %2 o %3:%4. " @@ -7879,6 +8420,12 @@ #~ msgid "Startup direction of view: xxxx" #~ msgstr "Smer pohľadu pri spustení: xxxx" +#~ msgid "Nebulas background images" +#~ msgstr "Obrázky Deep-Sky objektov" + +#~ msgid "Nebulas" +#~ msgstr "Deep-Sky objekty" + #~ msgid "Planets labels" #~ msgstr "Popisky planét" @@ -7986,6 +8533,9 @@ #~ msgid "Obliquity (of date): %1" #~ msgstr "Sklon ekliptiky (pre dátum): %1" +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Aktualizácia zoznamov TLE z internetových zdrojov" + #~ msgid "The hour angle" #~ msgstr "Hodinový uhol" @@ -8053,6 +8603,12 @@ #~ msgid "Phobos Eclipses the sun as seen from Olympus Mons Jan 10, 2068." #~ msgstr "Fobos zakryje Slnko pri pohľade z Olympus Mons 10. januára 2068." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "SporiÄ obrazovky zobrazuje rôzne úkazy v SlneÄnej sústave. Celkove 171 " +#~ "úkazov!" + #~ msgid "A tour via western constellations." #~ msgstr "Prehliadka súhvezdí známych v západnej civilizácii." @@ -8072,12 +8628,22 @@ #~ msgid "Crosshairs" #~ msgstr "Nitkový kríž" +#~ msgid "Display mode for quasars" +#~ msgstr "Režim zobrazenia kvazarov" + +#~ msgid "Display mode for pulsars" +#~ msgstr "Režim zobrazenia pulzarov" + #~ msgid "0 deg." #~ msgstr "0 stup." #~ msgid "Sun altitude at twilight" #~ msgstr "Výška Slnka poÄas súmraku" +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Aktualizovaných %1/%2 satelitov; %3 chýbajú" + #~ msgid "F7" #~ msgstr "F7" @@ -8100,6 +8666,15 @@ #~ msgid "Actual field of view provided by this ocular/telescope combination" #~ msgstr "SkutoÄné zorné pole pri použití týchto okulárov a teleskopov" +#~ msgid "Comma separated list of groups" +#~ msgstr "ÄŒiarkami oddelený zoznam skupín" + +#~ msgid "TLE data:" +#~ msgstr "Údaje TLE:" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "Dvojriadkové orbitálne elementy NORAD" + #~ msgid "Angle Measure Plugin" #~ msgstr "Modul uhlomer" @@ -8129,3 +8704,17 @@ #~ msgid "Telescope Control Plugin" #~ msgstr "Modul ovládanie Äalekohľadu" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Modul, ktorý zobrazuje niektoré historické supernovy jasnejÅ¡ie ako 10. " +#~ "vizuálna magnitúda." + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Modul zobrazuje niektoré historické supernovy jasnejÅ¡ie ako 10. vizuálna " +#~ "magnitúda: " diff -Nru stellarium-0.12.1/po/stellarium/sl.po stellarium-0.12.4/po/stellarium/sl.po --- stellarium-0.12.1/po/stellarium/sl.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/sl.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2010-11-30 12:06+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Avtor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Kraj: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tip: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnituda: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Velikost: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaksija" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Razsuta kopica" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Kroglasta kopica" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Meglica" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetarna meglica" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Kopica z meglico" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Neznano" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Nedokumentirani tip" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolutna magnituda: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Oddaljenost: %1 a.e." -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Navidezni premer: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektralni tip: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Oddaljenost: %1 svetlobnih let" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaksa: %1" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -654,52 +746,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Izberi mapo za posnetek zaslona" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Zorno polje ob zagonu: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "ZaÄetni pogled je v smeri Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Avtorji" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Stik" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Avtor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licenca" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Program, ki se izvaja: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Noben program se ne izvaja" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -707,16 +800,16 @@ "Prenos novih zvezdnih katalogov je konÄan!\n" "Za aktiviranje ponovno zaženi Stellarium." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Naloži katalog %1 od %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -725,7 +818,7 @@ "PrenaÅ¡am %1...\n" "(To okno lahko zapreÅ¡.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -736,7 +829,7 @@ "Å tevilo zvezd: %2 milijon(ov)\n" "Razpon magnitud: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -745,11 +838,11 @@ "Napaka med prenosom %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Preverjam celovitost datoteke..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -759,115 +852,123 @@ "Datoteka je poÅ¡kodovana." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1033,49 +1134,53 @@ msgid "OSX Developer: %1" msgstr "Razvijalec za Mac OS X: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Okno za vnos programskih vrstic" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Okna" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Presledek" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ni opisa" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Brez utrinkov" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "PovpreÄna pogostnost" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "PovpreÄna pogostnost Perzeidov" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Izjemna pogostnost Leonidov" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Maksimalna pogostnost (1966 Leonidi)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Izberi kraj" @@ -1178,19 +1283,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1206,30 +1311,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Na tem sistemu OpenGL ni podprt." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sonce" @@ -1246,12 +1357,12 @@ msgstr "Zemlja" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Luna" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1349,7 +1460,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1647,239 +1758,268 @@ msgstr "Inuiti" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korejci" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navaho" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Severnjaki" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinezijci" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Zahodnjaki" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1889,1502 +2029,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Datum in Äas" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Dodaj 1 zvezdni dan" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Dodaj 1 zvezdni teden" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Dodaj 1 dan" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Dodaj 1 uro" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Dodaj 1 teden" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "UpoÄasni izvajanje programa" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "UpoÄasni tok Äasa" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "UpoÄasni tok Äasa (malce)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "PospeÅ¡i izvajanje programa" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "PospeÅ¡i tok Äasa" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "PospeÅ¡i tok Äasa (malce)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Nastavi trenutni Äas" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "ObiÄajno hitro izvajanje programa" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Nastavi navadni tok Äasa" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Ustavi tok Äasa" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "OdÅ¡tej 1 zvezdni dan" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "OdÅ¡tej 1 zvezdni teden" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "OdÅ¡tej 1 dan" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "OdÅ¡tej 1 uro" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "OdÅ¡tej 1 teden" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Nastavitve prikaza" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Zrcali prizoriÅ¡Äe vodoravno" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Celozaslonski naÄin" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "OzraÄje" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimutna mreža" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Glavne strani neba" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Risbe ozvezdij" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Meje ozvezdij" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Imena ozvezdij" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "ÄŒrte ozvezdij" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Slike meglic" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptika" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekvator" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatorialna mreža" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatorialna mreža za epoho 2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Megla" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "GalaktiÄna mreža" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Tla" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Poldnevnik" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Meglice" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "NoÄni naÄin" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Orbite planetov" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Poti planeta" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Zvezde" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Zrcali prizoriÅ¡Äe navpiÄno" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Razno" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Samodejno skrij vrstico gumbov" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Samodejno skrij stolpec gumbov" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "KonÄaj" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Shrani posnetek zaslona" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Preklopi med ekvatorialnim in azimutnim podstavkom" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Preklopi vidnost uporabniÅ¡kega vmesnika" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Gibanje in izbira" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Usredini izbrani objekt" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Postavi izbrani planet za izhodiÅ¡Änega" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Sledi objektu" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "PoveÄaj prikaz okoli izbranega objekta" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "ZmanjÅ¡aj poveÄavo prikaza" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Programi" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Okno za nastavitve" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Okno za nastavljanje datuma in Äasa" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Okno za pomoÄ" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Okno za natavljanje kraja" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Okno za iskanje" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Okno za izbiro možnosti v zvezi z nebom in pogledom" @@ -3410,7 +3586,7 @@ msgstr "Osveži" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Kraj" @@ -3426,10 +3602,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "IzbriÅ¡i" @@ -3438,7 +3614,7 @@ msgstr "Dodaj k seznamu" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Zemljepisna Å¡irina:" @@ -3451,12 +3627,12 @@ "primer: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Zemljepisna dolžina:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Nadmorska viÅ¡ina:" @@ -3480,365 +3656,409 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Najdi objekt" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/DE (za epoho 2000): %1/%2" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Možnosti" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Možnosti" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Pogled" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Nebo" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "OznaÄbe" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Ozadje" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" "Nebesna \r\n" "znamenja" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Oznake in oznaÄbe" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planeti" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planeti in sateliti" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Prikaži planete" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Prikaži oznaÄbe za planete" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Prikaži navidezne poti planetov" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "UpoÅ¡tevaj svetlobno hitrost" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Prikaži pravo Lunino meno" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Prikaži ozraÄje" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolutna lestvica:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relativna lestvica:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Mežikanje:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Zatemni Å¡ibke zvezde, ko se pojavi svetel objekt" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "DinamiÄna oÄesna prilagoditev" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Utrinki" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Ozvezdja" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Prikaži Ärte" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Prikaži oznake" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Prikaži meje" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Prikaži risbe" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Nebesna krogla" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projekcija" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Prikaži tla" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Prikaži meglo" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Uporabi pridruženi planet in položaj" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Privzemi ozadje" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Privzemi nebesna znamenja" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Viden" @@ -3893,7 +4113,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Smer pogleda, ko se Stellarium zažene" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Informacija o izbranem objektu" @@ -3909,11 +4129,8 @@ msgid "Display no information" msgstr "Ne prikaži informacij" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "NiÄ" @@ -4056,7 +4273,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "ZaÄetni datum in Äas" @@ -4068,41 +4285,45 @@ msgid "Other:" msgstr "Nastavi" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "uporabi trenutne vrednosti" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Zažene Stellarium s sistemskim datumom in Äasom" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Sistemski datum in Äas" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "Nastavi Äas simulacije tistega dne ko ponovno zaženeÅ¡ Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Sistemski Äas ob:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Možnosti za planetarij" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4110,144 +4331,150 @@ "PopaÄenje sferiÄnega ogledala se uporabi, kadar Stellarium v cenenih " "planetarijskih sistemih projicira sliko na sferiÄno ogledalo." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "PopaÄenje sferiÄnega ogledala" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Zakrij vse izven osrednjega kroga v glavnem pogledu" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Krožno glediÅ¡Äe" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Skrij ostala ozvezdja ko izbereÅ¡ enega" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Izberi eno samo ozvezdje" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Poravnaj oznake z obzorjem" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Pritegnjene oznake" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Zamenjaj gumba za vodoravno in navpiÄno zrcaljenje slike" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Prikaži gumba za zrcaljenje" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" "Tipka \"samodejno poveÄevanje prikaza\" bo tudi povrnila zaÄetno smer pogleda" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" "Tipka \"samodejno zmanjÅ¡evanje prikaza\" bo povrnila zaÄetno smer pogleda" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Posnetki zaslona" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Imenik posnetkov zaslona" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Preobrni barve" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Posodobitve zvezdnih katalogov" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klikni tu, da zaÄneÅ¡ nalaganje" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Naloži to datoteko, da boÅ¡ videl Å¡e veÄ zvezd" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Ponovi nalaganje" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Poskusi ponovno" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Prekini nalaganje, kasneje lahko nadaljujeÅ¡." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "PrekliÄi" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Zapri okno med izvajanjem programa" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Zaženi izbrani program" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Prekini izvajanje programa" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Naloži ob zagonu" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "nastavi" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Glavno" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Nadzor" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Orodja" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "VtiÄniki" @@ -4415,176 +4642,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4656,64 +4883,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4721,7 +4953,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4732,14 +4964,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4748,305 +4980,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5054,25 +5355,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5080,17 +5381,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5098,41 +5399,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5140,338 +5443,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5507,22 +5853,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Nadzor teleskopa" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5905,62 +6251,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6114,7 +6460,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6132,7 +6478,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6148,154 +6494,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6328,22 +6674,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6512,36 +6858,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6559,7 +6912,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6573,14 +6926,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6588,8 +6941,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6607,29 +6961,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6645,51 +7076,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6809,11 +7250,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6821,137 +7262,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AE" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6959,49 +7404,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7017,185 +7551,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7576,6 +8104,12 @@ #~ msgid "Landscape: " #~ msgstr "Ozadje " +#~ msgid "Nebulas background images" +#~ msgstr "Slike meglic" + +#~ msgid "Nebulas" +#~ msgstr "Meglice" + #~ msgid "/" #~ msgstr "/" diff -Nru stellarium-0.12.1/po/stellarium/sm.po stellarium-0.12.4/po/stellarium/sm.po --- stellarium-0.12.1/po/stellarium/sm.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/sm.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:24+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Samoan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:19+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/sq.po stellarium-0.12.4/po/stellarium/sq.po --- stellarium-0.12.1/po/stellarium/sq.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/sq.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium 0.10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-01-25 07:00+0000\n" "Last-Translator: Weisson Ang \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:10+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:44+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridian" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptik" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekuator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizonti" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Plani i Galaktikës" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autori: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Vendndodhja: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeti: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Lloji: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnituda: %1 (i shuar në: %2" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnituda: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Masa: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaktikë" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Grumbull i hapur" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Grumbull globular" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulozë" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Nebulozë planetare" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "I panjohur" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Lloj i padokumentuar" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Magnituda Absolute: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Distanca: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Largësia: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Diametri i dukshëm: %1, me unaza: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Diametri i dukshëm: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Këndi i Periudhës: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Shtrirja: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Periudha: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "I Ndriçuar: %1%" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Magnituda e Dukshme: %1 (nga shuarja)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Lloji Spektral: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Largësia: %1 Vite Dritë" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaksi: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -656,52 +748,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Cakto dosje pamjesh ekrani" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "FEP në Nisje: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Drejtimi i pamjes në nisje Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autorët" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakti" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Liçensë" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Duke xhiruar skriptin: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Duke xhiruar skriptin: [asnjë]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -709,16 +802,16 @@ "Katalogët e rinj u shkarkuan!\n" "Rinis Stellarium për t'i shfaqur." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Merr katalogun %1 nga %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -727,7 +820,7 @@ "Duke shkarkuar %1...\n" "(Mund ta mbyllësh këtë dritare.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -738,7 +831,7 @@ "Numër yjesh: %2 Milion\n" "Shkalla e magnitudës: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -747,11 +840,11 @@ "Gabim shkarkimi i %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Kontroll tërësie skedari..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -761,115 +854,123 @@ "Skedari është i prishur." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1039,49 +1140,53 @@ msgid "OSX Developer: %1" msgstr "Zhvillues OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Dritarja e konsolës së skriptit" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Dritare" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Pa përshkrim" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Pa yje që bien" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Sasi normale" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Sasi standarde Perseidësh" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Sasi e veçantë Leonidësh" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Sasia më e madhe ndonjëherë (Leonidët, 1966)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Vendndodhje e Re" @@ -1187,19 +1292,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1215,30 +1320,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Ky sistem nuk përdor OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Diell" @@ -1255,12 +1366,12 @@ msgstr "Tokë" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Hënë" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1358,7 +1469,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1656,239 +1767,268 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korean" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norvegjez" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinezian" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Perëndimor" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Uragan" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Ocean" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Ruajtës ekrani" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiak" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1898,1502 +2038,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Data dhe Ora" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Shto 1 ditë siderale" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Shto 1 javë siderale" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Shto 1 ditë diellore" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Shto 1 orë diellore" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Shto 1 javë diellore" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Ngadalëso shkallën e ekzekutimit të skriptit" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Zvogëlo shpejtësinë e kohës" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Ule shpejtësinë e kohës (pak)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Shpejto shkallën e ekzekutimit të skriptit" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Zmadho shpejtësinë e kohës" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Rrite shpejtësinë e kohës (pak)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Vendos orën e tanishme" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Vendos shkallën e ekzekutimit të skriptit tek normalja" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Shpejtësi normale e kohës" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Ritmi i kohës në zero" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Hiq 1 ditë siderale" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Hiq 1 javë siderale" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Hiq 1 ditë diellore" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Hiq 1 orë diellore" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Hiq 1 javë diellore" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Mundësi Pamjeje" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Rrotullo skenën horizontalisht" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Ekran i plotë" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosferë" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Rrjetë Azimutale" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Pika referimi" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Art yjësie" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Kufij yjësie" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Etiketa yjësie" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Vija yjësie" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Imazhe sfondi nebulozash" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Vijë ekliptike" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Vijë ekuatoriale" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Rrjetë Ekuatoriale" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Rrjetë Ekuatoriale J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Mjegull" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Rrjet galaktik" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Truall" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Vijë meridiani" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebuloza" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Pamje nate" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Orbita planetesh" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Rrugë planetesh" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Yje" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Rrotullo skenën vertikalisht" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Të Ndryshme" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Fshih automatikisht butonat horizontalë" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Fshih automatikisht butonat vertikale" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Dil" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Ruaj pamje ekrani" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Zgjidh midis ekuatoriales dhe azimutales" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Shfaq pamjen grafike" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Zhvendosja dhe Zgjedhja" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Qendërzo objektin e zgjedhur" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Cakto shtëpinë në planetin e caktuar" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Ndiq objektin" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zmadho objektin e zgjedhur" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zvogëlo" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Matje këndi" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Tregues kompasi" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Pamje okulari" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Dritare konfigurimi satelitësh" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Informatë sateliti" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Etiketë sateliti" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Lëviz një teleskop në setin e dhënë të koordinatave" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skripte" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Konfiguro" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Data/Ora" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Ndihmë" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Cakto vendndodhjen" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Kërko" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Qielli dhe Mundësi Pamjeje" @@ -3419,7 +3595,7 @@ msgstr "Rifresko" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Vendndodhja" @@ -3435,10 +3611,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Fshi" @@ -3447,7 +3623,7 @@ msgstr "Shto në listë" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Gjerësia:" @@ -3460,12 +3636,12 @@ "p.sh.: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Gjatësia:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Lartësia:" @@ -3489,363 +3665,407 @@ msgid "Planet:" msgstr "Planeti:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Gjej Objektin" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Mundësitë" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Mundësitë" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Pamja" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Qielli" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Shënjimet" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Panorama" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Kultura Yjore" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etiketa dhe Shënjues" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planete" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planetë dhe satelitë" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Shfaq planetët" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Shfaq shënjues planetësh" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Shfaq orbita planeti" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulo shpejtësinë e dritës" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Përshkallëzo Hënën" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Shfaq atmosferën" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Shkalla absolute:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Shkalla relative:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Vezullit:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Zbeh yjet kur shfaqet një objekt shumë i shndritshëm" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Përshtatje dinamike syu" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Meteorë" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Yjësitë" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Shfaq vijat" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Shfaq etiketat" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Shfaq kufinjtë" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Shfaq artin" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Sfera Qiellore" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projeksioni" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Shto/hiq peizazhe..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Shfaq truallin" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Shfaq mjegullën" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Përdor planetin e caktuar dhe pozicionin" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Përdor këtë pamje si të përzgjedhur" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Përdor këtë kulturë qielli si të përzgjedhur" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "I dukshëm" @@ -3900,7 +4120,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Drejtimi i pamjes kur nis Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Të dhënat e objektit të zgjedhur" @@ -3916,11 +4136,8 @@ msgid "Display no information" msgstr "Mos shfaq të dhëna" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Asgjë" @@ -4062,7 +4279,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Data dhe ora në nisje" @@ -4074,41 +4291,45 @@ msgid "Other:" msgstr "Tjetër:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "përdor të tanishmen" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Nis Stellarium sipas datës dhe orës së sistemit" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Data dhe ora e sistemit" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "Cakton orën e simulimit për ditën që vjen kur nis Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Data e sistemit më:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Mundësitë e Planetarium" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4116,51 +4337,51 @@ "Shformimi i pasqyrës sferike përdoret kur projektohet Stellarium mbi një " "pasqyrë sferike për sisteme planetariumesh me kosto të ulët." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Shformim pasqyre sferike" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Fshih gjithçka jashtë një rrethi qëndror në pamjen kryesore" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Pamje disku" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Fshih konstelacionet e tjera kur klikon një" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Zgjidh konstelacion më vete" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Etiketa paralele me horizontin" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Etiketa gravitacionale" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Aktivizo butonat e rrotullimit vertikal dhe horizontal për imazhet." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Shfaq butonat e zhvendosjes" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4168,92 +4389,98 @@ "Kur aktivizohet, tasti \"auto zvogëlim\" do të caktojë drejtimin fillestar " "të pamjes gjithashtu" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Zvogëlimi automatik të kthen në drejtimin fillestar të pamjes" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Foto ekrani" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Dosja e pamjeve të ekranit" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Kthe ngjyrat" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Përditësime katalogu yjesh" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Kliko këtu për të filluar shkarkimin" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Shkarko këtë skedar për të parë më shumë yjex" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Rinis shkarkimin" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Riprovo" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Ndal shkarkimin. Mund ta rinisësh më vonë" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Anuloje" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Mbyll dritaren kur xhiron skripti" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Xhiro skriptin e zgjedhur" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Ndalo një skript që xhiron" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Ngarkoje në nisje" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "konfiguro" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Kreu" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Eksplorimi" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Vegla" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Pluginat" @@ -4423,176 +4650,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Shfaq tregues kushinete kompasi gjatë horizontit" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okularë" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4664,64 +4891,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4729,7 +4961,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4740,14 +4972,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4756,191 +4988,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelitë" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4948,117 +5189,177 @@ "Parashikimi i pozicionit të satelitëve artificialë në orbitën e Tokës " "mbështetur në të dhënat e NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Skedari i vjetër satellites.json është i papajtueshëm - po përdor skedarin e " "parazgjedhur" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5066,25 +5367,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5092,17 +5393,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5110,41 +5411,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5152,338 +5455,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5519,11 +5865,11 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Kontroll Teleskopi" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5531,12 +5877,12 @@ "Kjo shtojcë lejon Stellarium t'i dërgojë komanda \"kthyese\" një teleskopi " "me një montim të kompjuterizuar (një teleskop \"GoTo\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Lëviz teleskopin #%1 në objektin e zgjedhur" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Lëviz teleskopin #%1 në pikën që ndodhet në qendër të ekranit" @@ -5922,62 +6268,62 @@ "shfaqet ora dhe data në shiritin në fund." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6131,7 +6477,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6149,7 +6495,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6165,11 +6511,11 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Ndërfaqe Tesktuale Përdoruesi" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6177,144 +6523,144 @@ "Zbatim shtojce i serisë 0.9.x për Ndërfaqen Tekstuale të Përdoruesit (TUI), " "përdorur në sisteme planetarësh" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6350,22 +6696,22 @@ "kërkojë në databazën e saj. Një punë ende në progres." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6534,36 +6880,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6581,7 +6934,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6595,14 +6948,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6610,8 +6963,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6629,29 +6983,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6667,51 +7098,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6831,11 +7272,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6843,137 +7284,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6981,49 +7426,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7039,185 +7573,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7616,6 +8144,12 @@ #~ msgid "Set UI Locale: " #~ msgstr "Cakto gjuhën e ndërfaqes: " +#~ msgid "Nebulas" +#~ msgstr "Nebuloza" + +#~ msgid "Nebulas background images" +#~ msgstr "Imazhe sfondi nebulozash" + #~ msgid "Form" #~ msgstr "Forma" diff -Nru stellarium-0.12.1/po/stellarium/sr.po stellarium-0.12.4/po/stellarium/sr.po --- stellarium-0.12.1/po/stellarium/sr.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/sr.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-10-28 17:30+0000\n" "Last-Translator: Batarale \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:18+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:53+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridijan" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptika" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horizont" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "GalaktiÄka ravan" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Autor: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Mesto " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planeta " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Tip: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "VeliÄina: %1 (neaktivno do: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Red veliÄine: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "VeliÄina: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galaksija" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Otvoreno jato" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Globularno jato" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Maglina" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetarna maglina" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Jato sa maglinom" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Nepoznato" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Nedokumentovan tip" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Apsolutna magnituda: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Rastojanje: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Daljina: %1AJ" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Prividni preÄnik: %1, sa prstenovima: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Prividni preÄnik: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "SideriÄki period: %1 dana (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "SideriÄki dan: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Srednji sunÄev dan: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Fazni ugao: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongacija: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Faza: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Osvetljen: %1%" @@ -204,7 +204,7 @@ msgstr "Privremena oznaka: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Prividna magnituda: %1 (by extinction)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnituda: %1 (extincted to: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnituda: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektralni tip: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Udaljenost: %1 Svetlosna godina" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Paralaksa: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Svemirski brod" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "GreÅ¡ka" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -655,52 +747,53 @@ msgid "Found" msgstr "PronaÄ‘eno" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Izaberite screenshot fasciklu" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Почетно видно поље: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Почетни правац гледања азимуте/угаоне виÑине: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Autori" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Autor" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licenca" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Покренута Ñкрипта: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Покренута Ñкрипта: [нема]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -708,16 +801,16 @@ "Завршено преузимање нових каталога звезда!\n" "Поново покренути Стеларијум како би Ñе звезде приказале." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Сви доÑтупни каталози звезда Ñу инÑталирани." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Преузми каталог %1 од %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -726,7 +819,7 @@ "Преузимање %1...\n" "(Можете затворити овај прозор.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -737,7 +830,7 @@ "Број звезда: %2 милиона\n" "РаÑпон \"реда величине\": %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -746,11 +839,11 @@ "Грешка при преузимању %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Провера целоÑти датотеке..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -760,115 +853,123 @@ "Датотека није иÑправна." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1038,49 +1139,53 @@ msgid "OSX Developer: %1" msgstr "OSX програмер: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Прозор за конзолу Ñкрипти" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Прозори" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "ПроÑтор (Ñвемир/размак)" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ðема опиÑа" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Без звезда падалица" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Ðормалан темпо" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Стандардан ПерзидÑки темпо" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Изузетан ЛиенидÑки темпо" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Ðајвиши темпо икада (1966 Лиениди)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Ðово меÑто" @@ -1183,19 +1288,19 @@ msgid "starchart" msgstr "графикон звезда" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Грешку при погледу Simbada" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Погледај Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Универзитету у Старзбуру (ФранцуÑка)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Универзитет Харвард (СÐД)" @@ -1211,30 +1316,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Овај ÑиÑтем не подржава ОпенГЛ." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Сунце" @@ -1251,12 +1362,12 @@ msgstr "Земља" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "МеÑец" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "МарÑ" @@ -1354,7 +1465,7 @@ msgstr "Метида" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Сатурн" @@ -1652,193 +1763,222 @@ msgstr "ИнуитÑки" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "КорејÑки" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Лакота" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "МаорÑки" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Ðавахо" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "ÐÐ¾Ñ€Ñ (Ñтаро-нордијÑки)" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "ПолинезијÑки" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "СамÑки" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Тупи-Гуарани" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Западњачки" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Герен" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Дрвеће" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Ураган" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Океан" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Гархинг" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Преглед путовања" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Делимично помрачење МеÑеца" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Потпуно помрачење МеÑеца" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Чувар екрана" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Помрачење Сунца 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Покретање Ñкрипте" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Зодијак" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "ОÑврните Ñе око Ñваког инÑталираног пејзажа." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Скрипта приказује делимично помрачење МеÑеца." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Скрипта приказује потпуну помрачење МеÑеца." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Спори, беÑконачни преглед неба Ñ Ð¿Ñ€Ð¸ÐºÐ°Ð·Ð¾Ð¼ Ñлучајних објеката." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1846,11 +1986,11 @@ "Скрипта која демонÑтрира потпуно помрачење Сунца које Ñе деÑило 2009. године " "(меÑто=Рангпур, Бангладеш)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Скрипта која Ñе аутоматÑки покреће при покретању" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1859,36 +1999,36 @@ "Ова Ñкрипта приказује Ñазвежђа на Зодијака. То Ñу Ñазвежђа која леже дуж " "линије коју прави Сунце на небеÑком Ñводу током целе године." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1898,1502 +2038,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Ðндора" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Уједињени ÐрапÑки Емирати" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ÐвганиÑтан" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Ðнтигва и Барбуда" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Ðнгила" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Ðлбанија" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Јерменија" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "ХоландÑки Ðнтили" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Ðнгола" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Ðнтартик" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Ðргентина" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Ðмеричка Самоа" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ÐуÑтрија" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ÐуÑтралија" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Ðруба" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Ðзербејџан" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "БоÑна и Херцеговина" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "БарбадоÑ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Бангладеш" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Белгија" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркина ФаÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "БугарÑка" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Бахреин" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Бурунди" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Бенин" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Бермуди" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Брунеј" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Боливија" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Бразил" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Бахами" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "ОÑтрво Буве" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Боцвана" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "БелоруÑија" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Белизе" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Канада" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "КокоÑова оÑтрва" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "ДемократÑка Република Конго" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Централноафричка Република" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Република Конго" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "ШвајцарÑка" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Обала Слоноваче" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Кукова оÑтрва" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Чиле" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Камерун" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Кина" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Колумбија" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "КоÑтарика" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Србија и Црна Гора" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Куба" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "ЗеленортÑка оÑтрва" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Божићна оÑтрва" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Кипар" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Чешка" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Ðемачка" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Ðибути" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "ДанÑка" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Доминикана" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "ДоминиканÑка Република" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ðлжир" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Еквадор" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "ЕÑтонија" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Египат" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Западна Сахара" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Еритреја" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Шпанија" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Етиопија" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ФинÑка" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Фиџи" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ФокландÑка оÑтрва" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Микронезија" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "ФарÑка оÑтрва" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "ФранцуÑка" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Габон" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Велика Британија" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Гренада" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Грузија" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "ФранцуÑка Гвајана" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Гана" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Гибралтар" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Гренланд" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Гамбија" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Гвинеја" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Гвадалупе" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Екваторијална Гвинеја" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Грчка" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Јужна Ðорџија и Јужна Сендвичка оÑтрва" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Гватемала" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Гуам" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Гвинеја БиÑао" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Гвајана" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Хонг Конг" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Херд оÑтрво и Мекдоналд оÑтрва" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ХондураÑ" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "ХрватÑка" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Хаити" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "МађарÑка" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Индонезија" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ИрÑка" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Израел" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Индија" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "БританÑко територија у ИндијÑком океану" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ирак" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Иран" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ИÑланд" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Италија" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Јамајка" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Јордан" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Јапан" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Кенија" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "КиргиÑтан" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Камбоџа" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Кирибати" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Комори" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Свети ÐšÐ¸Ñ‚Ñ Ð¸ ÐевиÑ" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "ДемократÑка Ðародна Република Кореја" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Република Кореја" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Кувајт" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "КајманÑка оÑтрва" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "КазахÑтан" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "ЛаоÑ" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Либан" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Света Луција" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Лихенштајн" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Шри Ланка" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Либерија" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ЛеÑото" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Литванија" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ЛукÑембург" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Летонија" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Либија" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Мароко" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Монако" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Молдавија" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "МадагаÑкар" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "МаршалÑка оÑтрва" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Македонија" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Мали" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Мијанмар" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Монголија" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Макао" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Северна МаријанÑка оÑтрва" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Мартиник" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Мауританија" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "МонÑерат" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Малта" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "МаурицијуÑ" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Малдиви" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Малави" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "МекÑико" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Малезија" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Мозамбик" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Ðамибија" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Ðова Каледонија" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Ðигер" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "ОÑтрво Ðорфок" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Ðигерија" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Ðикарагва" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Холандија" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Ðорвешка" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Ðепал" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Ðауру" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Ðиуе" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Ðови Зеланд" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Оман" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Панама" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Перу" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "ФранцуÑка Полинезија" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Папуа Ðова Гвинеја" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Филипини" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ПакиÑтан" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "ПољÑка" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Свети Пјер и Микелон" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Питкарн" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Порторико" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "ПалеÑтинÑке територије" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Португал" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Палау" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Парагвај" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Катар" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Реунион" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Румунија" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Србија" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "РуÑка федерација" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Руанда" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "СаудијÑка Ðрабија" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "СоломонÑка оÑтрва" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Сејшели" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Судан" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ШведÑка" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Сингапур" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Света Јелена" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Словенија" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Свалбард и Јан Мајен" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Словачка" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Сиера Леоне" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Сан Марино" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Сенегал" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Сомалија" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Суринам" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Сао Томе и Принципе" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Салвадор" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Сирија" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Свазиленд" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "ОÑтрва Ð¢ÑƒÑ€ÐºÑ Ð¸ КаикоÑ" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Чад" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "ФранцуÑке јужне територије" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Того" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Тајланд" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ТаџикиÑтан" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Токелау" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "ИÑточни Тимор" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ТуркмениÑтан" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ТуниÑ" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Тонга" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "ТурÑка" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Тринидад и Тобаго" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Тувалу" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Тајван" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Танзанија" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Украина" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Уганда" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "Спољна ивична оÑтрва СÐД" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Сједињене Ðмеричке Државе" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Уругвај" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "УзбекиÑтан" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Град-држава Ватикан" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Свети ВинÑент и Гренадини" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Венецуела" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "БританÑка ДевичанÑка оÑтрва" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Сједињене Државе ДевичанÑка ОÑтрва" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Вијетнам" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Вануату" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Ð’Ð°Ð»Ð¸Ñ Ð¸ Футуна" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Самоа" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Јемен" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Мајота" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ЈугоÑлавија" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Јужноафричка република" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Замбија" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Зимбабве" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "датум и време" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Додајте 1 звездани дан" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Додај 1 звездани меÑец" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Додајте 1 звездану недељу" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Додај 1 звездану годину" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Додајте 1 Ñоларни дан" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Додајте 1 Ñоларни чаÑ" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Додајте 1 Ñоларну недељу" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "УÑпорите извршење Ñкрипте" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Смањи брзину времена" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Смањи брзину времена (мало)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Убрзајте извршење Ñкрипте" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Повећај брзину времена" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Повећај брзину времена (мало)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Прекид извршне Ñкрипте" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "ÐаÑтави извршење Ñкрипте" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "ПоÑтавите време на тренутно" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "ПодеÑите нормалну брзину извршења Ñкрипте" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "ПодеÑите на нормалан проток времена" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "ЗауÑтавите проток времена" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Одузмите 1 звездани дан" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Одузми 1 звездани меÑец" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Одузмите 1 звездану недељу" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Одузми 1 звездану годину" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Одузмите 1 Ñоларни дан" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Одузмите 1 Ñоларни чаÑ" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Одузмите 1 Ñоларну недељу" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Опције приказа" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Преокренути призор хоризонтално" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Приказ преко целог екрана" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "ÐтмоÑфера" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Ðзимутна мрежа" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Кључне тачке" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Уметнички приказ Ñазвежђа" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Границе Ñазвежђа" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Ознаке Ñазвежђа" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Линије Ñазвежђа" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "ПозадинÑке Ñлике маглина" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Еклиптичка J2000 мрежа" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Линија еклиптике" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Линија екватора" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Екваторијална мрежа" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Екваторијална J2000 мрежа" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Магла" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Галактичка мрежа" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Галактичка раван" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Тло" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Линија хоризонта" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Линија меридијана" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Маглине" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Ðоћни режим" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Ознаке планета" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Орбите планета" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Руте планета" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Звезде" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Преокренути призор вертикално" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Разно" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "ÐутоматÑко Ñакривање хоризонталне траке Ñа дугмићима" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "ÐутоматÑко Ñакривање вертикалне траке Ñа дугмићима" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "ÐапуÑти" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Сачувај информације о изабраном објекту у меморији" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Сачувај Ñнимак екрана" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Промените између екваторијалног и азимутног ноÑача" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "ВидљивоÑÑ‚ графичког интерфејÑа" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Померање и Одабирање" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Центрирајте изабрани објекат" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "ПоÑтавите изабрану планету као матичну" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Прати објекат" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Увећајте изабрани објекат" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Умањивање" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Мера угла" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Ознаке компаÑа" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "ПодеÑи додатак за окуларе" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Окуларни поглед" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "ИÑкачући изборник окулара" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Оквир Ñензора Ñлике" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Телрадов видокруг" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Прозор за подешавање Ñателита" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Ðазнаке Ñателита" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Ознаке Ñателита" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "ПремеÑти телеÑкоп на дати Ñкуп координата" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Скрипте" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Прозор за подешавања" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Прозор за датум и време" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Прозор за помоћ" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Прозор за локацију" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Прозор за претрагу" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Прозор за подешавање неба и начина гледања" @@ -3419,7 +3595,7 @@ msgstr "ОÑвежи" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "МеÑто" @@ -3435,10 +3611,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Избриши" @@ -3447,7 +3623,7 @@ msgstr "Додај у лиÑту" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "ГеографÑка ширина:" @@ -3460,12 +3636,12 @@ "пример: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "ГеографÑка дужина:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "ВиÑина:" @@ -3489,363 +3665,407 @@ msgid "Planet:" msgstr "Планета:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Ðађи објекат" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Пронађи објекат или меÑто" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "јота" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "алфа" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "бета" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "гама" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "делта" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "епÑилон" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "зета" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "ета" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "тета" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "капа" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "ламбда" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "ми" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ни" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "кÑи" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "омикрон" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "пи" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ро" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "Ñигма" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "тау" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ипÑилон" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "фи" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "хи" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "пÑи" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "омега" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Грчка Ñлова за Бајеровим ознакама" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Објекат" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "РектаÑцензија/Деклинација (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Положај" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "СпиÑкови" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "ÐÑтрономÑка база података SIMBAD на мрежи" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Прошири претрагу помоћу SIMBAD-а" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Сервер:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Опције" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "СпиÑкови" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Опције" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Приказ" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Ðебо" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Обележавање" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Пејзаж" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Приче о звездама" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Ознаке и индикатори" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Планете" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Планете и Ñателити" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Прикажи планете" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Прикажи индикаторе планета" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Прикажи орбите планета" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Симулирај брзину ÑветлоÑти" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Размера МеÑеца" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Прикажи атмоÑферу" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "СветлоÑна загађеноÑÑ‚:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "притиÑак, температура, коефицијент изумирања" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "ПоÑтавке преламања/пригушивања..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "ÐпÑолутна размера:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Релативна размера:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Светлуцање:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Затамни Ñлабо приметне звезде када је врло Ñјајан објекат видљив" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Динамичко прилагођавање ока" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Звезде падалице" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Сазвежђа" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Прикажи линије" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Прикажи ознаке" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Прикажи границе" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Прикажи уметнички приказ" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "УметноÑÑ‚ оÑветљења:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ÐебеÑка Ñфера" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Прикажи линију Екватора" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Прикажи линију меридијана" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Прикажи линију хоризонта" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Прикажи еклиптичку линију" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Прикажи линију Галактичке равни" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Пројекција" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Додај/уклони пејзаже..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Прикажи тло" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Прикажи маглу" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "КориÑтите повезану планету и позицију" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "КориÑтите овај пејзаж као почетни" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "КориÑтите ову културу неба као подразумевану" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Видљиво" @@ -3900,7 +4120,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Правац гледања када покренете Стеларијум" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Информације о изабраном објекту" @@ -3916,11 +4136,8 @@ msgid "Display no information" msgstr "Ðемој приказати информације" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ðишта" @@ -4063,7 +4280,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Почетни датум и време" @@ -4075,19 +4292,23 @@ msgid "Other:" msgstr "Друго:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "кориÑти тренутно" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Покреће Стеларијум Ñа ÑиÑтемÑким датумом и временом" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "СиÑтемÑки датум и време" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4095,23 +4316,23 @@ "ПоÑтавља опонашајуће време на Ñледећу појаву тог доба дана када Ñе покрене " "Стеларијум" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "СиÑтемÑки датум на:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Опције планетаријума" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4119,143 +4340,149 @@ "Изобличење Ñферног огледала кориÑти Ñе при пројекцији Стеларијума на Ñферно " "огледало код јефтиних планетарних ÑиÑтема." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "ДеформиÑање Ñферног огледала" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "ЗамаÑкирај Ñве ван централног круга у главном видокругу" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Кружни поглед" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Сакриј оÑтала Ñазвежђа када је једно обележено" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Изаберите једно Ñазвежђе" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Поравнајте ознаке Ñа хоризонтом" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Гравитационе ознаке" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Приказ дугмади за хоризонтално и вертикално преокретање Ñлике" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Прикажи дугмад за преокретање" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" "Када је омогућено, \"Ñамоумањивање\" биће поÑтављено на почетни Ñмер погледа" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Самоумањивање враћа на почетни Ñмер погледа" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Снимци екрана" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Директоријум Ñнимака екрана" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Изврни боје" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Ðжурирање каталога звезда" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Кликните овде да почнете преузимање" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Преузми ову датотеку како би видео још више звезда" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Поново покрените преузимање" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Покушајте опет" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "ЗауÑтавите преузимање. Можете каÑније да поново покренете преузимање" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "ОдуÑтани" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Затвори прозор док Ñе Ñкрипта извршава" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Покрени изабрану Ñкрипту" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "ЗауÑтави Ñкрипту која Ñе извршава" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Учитај приликом покретања програма" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "подеÑи" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Главно" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Informacije" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Ðавигација" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Ðлатке" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Прикључци" @@ -4431,12 +4658,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Приказује ознаке компаÑа дуж хоризонта" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Окулари" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4446,164 +4673,164 @@ "видокруг и увећање). Такође је могуће приказати оквир Ñензора и Телрадов " "видокруг." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Изаберите објекат пре прелаÑка на окуларни приказ." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Претходни окулар" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Следећи окулар" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Изабери &окулар" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "(Де)активирај &нишан" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "ПодеÑи &окулар" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "(Де)активирај &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "(Де)активирај &Телрад" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Претходни CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Следећи CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Изабери CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Окрени CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Поништи окретање" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Окулар #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Окулар #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Окулар FL: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Окулар aFOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "ТелеÑкоп #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "ТелеÑкоп #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Увећање: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Величина: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Давач #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Давач #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&ТелеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Претходни телеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Следећи телеÑкоп" @@ -4675,64 +4902,69 @@ msgid "Apparent field of view of the ocular" msgstr "Видно поље на окулару" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Окретање: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Увећање предвиђено овим двогледом" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Стварно видно поље предвиђено овим двогледом" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Издање" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4740,7 +4972,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4751,14 +4983,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4767,191 +4999,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Омогућите Ñамо ако је објекат изабран" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "Размера Ñлике круга" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "РаÑпоређивање таÑтера" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Де(активирај) приказ окулара:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Отвори иÑкачуће навигациони изборник :" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Сучеље" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Контролна табла на екрану" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Опште" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Очна Ñочива" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Додај" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Ðазив:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Жижна даљина:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Крај поља:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Двогледи" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Давачи" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Резолуција x (тачкица):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Резолуција y (тачкица):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Ширина чипа (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "ВиÑина чипа (mm):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Ширина тачкица (микрона):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "ВиÑина тачкица (микрона):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "ТелеÑкопи" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Пречник:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Водоравно преокретање" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "УÑправно преокретање" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Сателити" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -4959,105 +5200,165 @@ "Предвиђање положаја вештачких Ñателита у орбити Земље на оÑнову података " "NORAD TLE" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Стара датотека satellites.json није више компатибилна - кориÑтим " "подразумевану датотеку." -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "СпиÑак #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Међународна ознака" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Домет (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "Брзина домета (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "ВиÑина (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Подтачка (Шир./Дуж.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Координате ТЕМЕ (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "Брзина ТЕМЕ (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Сателит и поÑматрач Ñу изложени Ñунчевој ÑветлоÑти." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Сателит је видљив" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Сателит је замрачен" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Сателит није видљив" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Додати Ñателити" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" "Додатак за Ñателите предвиђа позиција вештачких Ñателита у Земљиној орбити." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Ðапомене за кориÑнике" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Сателити и њихове орбите Ñу приказане Ñамо када је поÑматрач на Земљи." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5067,7 +5368,7 @@ "дани, Ñедмице или можда меÑец у прошлоÑти и будућноÑти). Очекујте велике " "необичноÑти када Ñе гледа датуме ван овог опÑега." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5077,7 +5378,7 @@ "TLE податке ." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5088,7 +5389,7 @@ "датотеку. Стара датотека ће бити Ñачувана као %4. Можете је пронаћи у " "фаÑцикли Ñ ÐºÐ¾Ñ€Ð¸Ñничким подацима, под \"modules/Satellites/\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5097,11 +5398,11 @@ "недоÑтају или Ñадрже грешке." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "TLE ажурирање података" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5111,7 +5412,7 @@ "подразумеваном додатак ће то учинити ако Ñу поÑтојећи подаци Ñтарији од 72 " "Ñата. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5122,7 +5423,7 @@ "на вашем рачунару. Ова датотека мора бити у иÑтом формату као и Celestrak " "иÑправке (нпр. можете погледати овде: %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5131,11 +5432,11 @@ "шта унутар углаÑтих заграда, то ће бити уклоњено пре него Ñе подаци буду " "почели кориÑтити." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Додавање нових Ñателита" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5147,11 +5448,11 @@ "Ñателите и кликните на дугме '+'. Одаберите Ñателите које желите додати и " "кликните на \"Додај \" дугме." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Техничке напомене" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5159,7 +5460,7 @@ "Позиције Ñе рачунају помоћу SGP4 и SDP4 метода кориÑтећи Ñе NORAD TLE као " "улазни подаци. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5168,24 +5469,26 @@ "Spacetrack извештаја #3 (укључујући и Spacetrack извештај #6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Види %1овај документ%2 за више детаља." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Везе" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5193,31 +5496,34 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Ðко имате питање, %1 одговор можете %2 добити овде" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Извештаји о грешци могу бити %1овде%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5225,120 +5531,140 @@ "Ðко желите да пошаљете захтев за нове могућноÑти, можете направити извештај " "о грешци и озбиљноÑÑ‚ тога поÑтавити на \"wishlist\"." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Интернет иÑправке Ñу онемогућене" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Ðжурирање Ñада..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Следеће ажурирање за: < 1 минут" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Следеће ажурирање за: %1 минута" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#, qt-format +msgid "Next update: %1 hours" +msgstr "Следеће ажурирање: %1 Ñати" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 +msgid "Update error" +msgstr "Грешка при ажурирању" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Next update: %1 hours" -msgstr "Следеће ажурирање: %1 Ñати" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 +msgid "[new source]" +msgstr "[нови извор]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 #: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 msgid "Update now" msgstr "Ðжурирај Ñад" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 msgid "Update from files" msgstr "Ðжурирање из датотека" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 -msgid "Update error" -msgstr "Грешка при ажурирању" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 -#, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Ðжурирано %1/%2 Ñателита; %3 недоÑтају" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 -msgid "[new source]" -msgstr "[нови извор]" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[грешка у прорачуну орбите]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[Све ново додато]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[није Ñве приказано]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[Ñве је приказано]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[Ñве]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Изабери TLE датотеку за ажурирање" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Преузимање података..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5346,175 +5672,195 @@ "Stellarium преузима ÑателитÑке податке од извора ажурирања. Молим " "Ñачекајте..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Изабери TLE изворне датотеке..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Обрада података..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Ðема података за преузимање. Покушајте поново каÑније." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Каталошки број: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Подешавања Ñателита" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Ðжурирајте TLE лиÑте из Интернет извора" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Ðжурирање из интернет извора" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "ПоÑледња допуна:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "УчеÑталоÑÑ‚ ажурирања (Ñати):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Ознаке" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Ознака величине Ñловолика (тачкица) :" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Орбиталне линије" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Број Ñегмената који ће Ñе кориÑтити за иÑцртавање линије" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "Број Ñегмената:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "Трајање једног Ñегмента у Ñекунди" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Дужина Ñегмента (s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "Број Ñегмената коришћен за Ñваку ивицу цртања" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Дужина изблеђивања:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Враћање подразумеване поÑтавке" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Сачувај подешавања као подразумевана" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "ПоÑтавке" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Додај још Ñателита" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Уклони изабране Ñателите" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Сачувај измене" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Каталошки број:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Приказ изабраних Ñателита" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Приказан" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Приказ линије орбите за изабране Ñателите" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Орбита" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Каталошки број:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "ОпиÑ:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Групе:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "Зарезом одвојена лиÑта група" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE подаци:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "NORAD-ови дволинијÑки подаци о орбитама" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Уклони изабране Ñателите" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Додај још Ñателита" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Сачувај измене" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5522,15 +5868,15 @@ "УнеÑите или измените УРЛ изабраног извора. Промене ће бити Ñачуване тако што " "ћете притиÑнути Enter.." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Додај нови извор" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Уклони изабрани извор" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Извори" @@ -5566,11 +5912,11 @@ msgid "Discard" msgstr "Одбаци" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "ТелеÑкопÑка контрола" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5578,12 +5924,12 @@ "Овај додатак омогућава Stellarium-у да пошаље \" мноштво \" команди " "телеÑкопу Ñ ÐºÐ¾Ð¼Ð¿Ñ˜ÑƒÑ‚ÐµÑ€Ð¸Ð·Ð¾Ð²Ð°Ð½Ð¸Ð¼ ноÑачем (на \"GoTo телеÑкоп\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Помери телеÑкоп #%1 на изабрани објекат" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Помери телеÑкоп #%1 на тачку која је тренутно у Ñредишту екрана" @@ -5984,62 +6330,62 @@ "начина приказивања датума и времена у доњој траци." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Јануар" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Фебруар" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Март" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Ðприл" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Мај" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Јун" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Јул" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "ÐвгуÑÑ‚" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Септембар" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Октобар" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Ðовембар" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Децембар" @@ -6200,7 +6546,7 @@ "траци." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Приказ временÑког формата" @@ -6218,7 +6564,7 @@ msgstr "24 - чаÑовни формат" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Приказ формата датума" @@ -6234,11 +6580,11 @@ msgid "mm-dd-yyyy" msgstr "мм-дд-гггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "ТекÑтуални кориÑнички интерфејÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6246,144 +6592,144 @@ "Уметање додатка 0.9.x Ñерије кориÑничког текÑта Ñучеља (TUI), коришћена у " "планетаријумÑким ÑиÑтемима" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Тело Ñунчевог ÑиÑтема" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Тренутни датум/време" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "ПоÑтави временÑку зону" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Кључни дани" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Почетни датум/време" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "ÑиÑтем" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "унапред поÑтавити" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "ммддгггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ддммгггг" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "ггггммдд" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12Ñ" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24Ñ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Језик" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Прикажи звезде" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Боје" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Ðазив маглине" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Савети о маглини" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Линије галактичке равни" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Ефекти" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Ручно увећање" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Фактор размере вредноÑти" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "Јачина ÑветлоÑног извора млечног пута:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "УчеÑталоÑтозначене маглине:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "Трајање увећања:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Време неактивноÑти показивача:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Подешавање пејзажа поÑтавља и локацију" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Покрени локалну Ñкрипту" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "ЗауÑтави покренуту Ñкрипту" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "ЦД/ДВД- Ñкрипта" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "ÐдминиÑтрација" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Учитај подразумевана подешавања" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Сачувај тренутна подешавања" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "УгаÑи" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[нема чвора TUI]" @@ -6419,16 +6765,16 @@ "малих планета. Још је у фази израде." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Захтеви за уÑлугу %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "Само један резултат ће бити враћен ако је упит уÑпешнан." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6436,7 +6782,7 @@ "Комете и аÑтероиде је могуће идентификовати помоћу њиховог броја, имена (на " "енглеÑком) или привремене ознаке." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6624,36 +6970,43 @@ msgid "Solar System" msgstr "Сунчев ÑиÑтем" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "ИÑторијат Ñупернове" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "Ñупернова" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Тип Ñупернове: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6671,7 +7024,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6685,14 +7038,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "у РуÑији" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6700,8 +7053,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6719,29 +7073,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Ðжурирање из интернет извора" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Квазари" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6760,51 +7191,61 @@ msgid "Z (redshift): %1" msgstr "Z (redshift): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "ПулÑари" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6930,11 +7371,11 @@ "једна неутронÑка звезда Ñа променљивим гама " "зрачењем у топлотном опÑегу, али није погодна за откривање радио емиÑија" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6942,137 +7383,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Белешка" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "у ФранцуÑкој" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7080,49 +7525,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7138,185 +7672,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7532,6 +8060,9 @@ #~ msgid "Light Pollution Luminance: " #~ msgstr "ОÑветљеноÑÑ‚ ÑветлоÑног загађења: " +#~ msgid "Nebulas" +#~ msgstr "Маглине" + #~ msgid "Light pollution: " #~ msgstr "СветлоÑно загађење: " @@ -7700,6 +8231,9 @@ #~ msgid "When a Script is Running" #~ msgstr "Кад је Ñкрипта покренута" +#~ msgid "Nebulas background images" +#~ msgstr "ПозадинÑке Ñлике маглина" + #~ msgid "Planets labels" #~ msgstr "Ознаке планета" @@ -7864,10 +8398,20 @@ #~ msgid "Actual field of view provided by this ocular/telescope combination" #~ msgstr "Стварно видно поље предвиђено комбинацијом овог окулара/телеÑкопа" +#~ msgid "Comma separated list of groups" +#~ msgstr "Зарезом одвојена лиÑта група" + +#~ msgid "TLE data:" +#~ msgstr "TLE подаци:" + #~ msgid "Form" #~ msgstr "Образац" #, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Ðжурирано %1/%2 Ñателита; %3 недоÑтају" + +#, qt-format #~ msgid "Distance: %1 kpc (%2 ly)" #~ msgstr "РаÑтојање: %1 kpc (%2 Ñв.год.)" @@ -7899,6 +8443,12 @@ #~ msgid "extragalactic (in MC) pulsar" #~ msgstr "вангалактички (у MC) пулÑар" +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Ðжурирајте TLE лиÑте из Интернет извора" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "NORAD-ови дволинијÑки подаци о орбитама" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " diff -Nru stellarium-0.12.1/po/stellarium/stellarium.pot stellarium-0.12.4/po/stellarium/stellarium.pot --- stellarium-0.12.1/po/stellarium/stellarium.pot 2013-04-14 08:21:11.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/stellarium.pot 2013-09-13 10:51:45.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,19 +17,19 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1501 +1992,1537 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3372,7 +3548,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3388,10 +3564,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3400,7 +3576,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3411,12 +3587,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3440,363 +3616,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3846,7 +4066,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3862,11 +4082,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4008,7 +4225,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4020,182 +4237,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4363,176 +4590,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4604,63 +4831,68 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4668,7 +4900,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4679,14 +4911,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4695,305 +4927,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5001,25 +5302,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5027,17 +5328,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5045,41 +5346,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5087,338 +5390,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5454,22 +5800,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5852,62 +6198,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6061,7 +6407,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6079,7 +6425,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6095,154 +6441,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6275,22 +6621,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6458,36 +6804,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6505,7 +6858,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6519,14 +6872,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6534,8 +6887,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6553,29 +6907,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic " @@ -6591,51 +7022,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6755,11 +7196,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6767,137 +7208,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6905,49 +7350,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6963,185 +7497,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/su.po stellarium-0.12.4/po/stellarium/su.po --- stellarium-0.12.1/po/stellarium/su.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/su.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-03-23 06:38+0000\n" "Last-Translator: Agung Satrio Budi Prakoso \n" "Language-Team: Sundanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:19+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horison" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Padamel: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Lokasi " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/sv.po stellarium-0.12.4/po/stellarium/sv.po --- stellarium-0.12.1/po/stellarium/sv.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/sv.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-03 12:21+0000\n" -"Last-Translator: Mikael Hiort af Ornäs \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-07-21 15:57+0000\n" +"Last-Translator: Jonas Persson \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:19+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridianen" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Ekliptikan" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvatorn" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Horisont" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Galaktiska planet" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Upphovsman: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Plats: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Planet: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Typ: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Magnitud: %1 (extinktion: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Magnitud: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Storlek: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Galax" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Öppen stjärnhop" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Klotformad stjärnhop" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Nebulosa" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Planetär nebulosa" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Mörk nebulosa" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "Kluster associerat med nebulositet" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Okänd" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Odokumenterad typ" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Absolut magnitud: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Ekliptisk position (per datum): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Axellutning (per datum, för jorden): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "AvstÃ¥nd: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "AvstÃ¥nd: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Synbar diameter: %1, med ringar: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Apparent diameter: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Siderisk omloppstid: %1 dagar (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Stjärndygn: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Medelsoldygn: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Fasvinkel: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Elongation: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Fas: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Upplyst: %1%" @@ -204,7 +204,7 @@ msgstr "Provisorisk beteckning: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "stjärna" @@ -219,49 +219,124 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Synbar magnitud:: %1 (vid extinktion)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "Eruptiv variabel stjärna" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "Pulserande variabel stjärna" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "Roterande variabel stjärna" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "Kataklysmisk variabel stjärna" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "Variabel stjärna" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "dubbelstjärna" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Typ: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Magnitud: %1 (extinktion: %2. B–V-index: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Magnitud: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Magnitudintervall: %1%2%3 (Fotometriskt system: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "Magnitudintervall: %1%2%3/%4 (Fotometriskt system: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Spektralklass: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "AvstÃ¥nd: %1 ljusÃ¥r" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Parallax: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Period: %1 dagar" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Rymdskepp" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "Korrigering är inaktiverad! Använd endast om är säker pÃ¥ att du vet vad du " "gör!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -272,7 +347,7 @@ "Henriksson i artikeln Einstein's Theory of Relativity Confirmed by " "Ancient Solar Eclipses (%1). Läs mer %2här%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -281,7 +356,7 @@ "Denna empiriska ekvation publicerades av G. M. Clemence i artikeln On " "the system of astronomical constants (%1)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -294,7 +369,7 @@ "användes av Jean Meeus i boken Astronomical Formulae for " "Calculators (1988) och i datorprogrammet SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -304,7 +379,7 @@ "böckerna Astronomical Ephemeris och Canon of Solar " "Eclipses av Mucke & Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -315,7 +390,7 @@ "planeterna vid 5- och 10-dagarsintervaller frÃ¥n 601 f.v.t. till 1649 e.v.t. " "Samma förhÃ¥llande antogs även indirekt i Goldstines syzygytabeller (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -326,7 +401,7 @@ "The accelerations of the earth and moon from early astronomical " "observations (%1)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -335,7 +410,7 @@ "Denna ekvation publicerades av F. R. Stephenson i artikeln Pre-" "Telescopic Astronomical Observations (%1)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -349,7 +424,7 @@ "period 1800-1975 (%1) efter att ha prövats och anpassats m.h.a. data " "frÃ¥n Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -359,7 +434,7 @@ "Tables from -4000 to +2800 (1986) och i planetariumdatorprogrammet " "RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -370,11 +445,11 @@ "Long-term changes in the rotation of the earth - 700 B.C. to A.D. " "1980 (%1)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "Denna algoritm används i planetariumdatorprogrammet Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -384,7 +459,7 @@ "Eclipses: 1986-2035 (1987) och Fifty Year Canon of Lunar Eclipses: " "1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -393,7 +468,7 @@ "Denna formel togs fram av K.M. Borkowski (%1) utifrÃ¥n en analys av 31 " "registrerade solförmörkelser mellan 2137 f.v.t. och 1715 e.v.t." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -406,7 +481,7 @@ "Period 1800-1988 (%1) eftr att ha prövats och anpassats m.h.a. " "datavärden frÃ¥n Stephenson & Morrison (1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -416,7 +491,7 @@ "version av mÃ¥nrörelseteorin ELP2000-85, publicerad som en del av Lunar " "Tables and Programs from 4000 B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -427,7 +502,7 @@ "Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD 1990 " "(%1)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -436,7 +511,7 @@ "F. R. Stephenson publicerade denna formel i boken Historical Eclipses " "and Earth's Rotation (%1)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -446,7 +521,7 @@ "använd. Tabell för 1620-2000 och innefattar en variant av Chapront, Chapront-" "Touze & Francou (1997) för datum utanför 1620-2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -455,7 +530,7 @@ "JPL Solar System Dynamics Group vid NASA Jet Propulsion Laboratory använder " "denna formel pÃ¥ sin interaktiva webbplats %1JPL Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -464,7 +539,7 @@ "Detta polynom publicerades av J. Meeus & L. Simons i artikeln Polynomial " "approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -474,7 +549,7 @@ "Montenbruck & T. Pfleger, 2000) tillhandahÃ¥ller enkla dataanpassningar för " "tredjegradspolynom för en nära dÃ¥tid." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -486,7 +561,7 @@ "Calendrical Tabulations (2002). Den baseras pÃ¥ Jean Meeus " "Astronomical Algorithms (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -497,7 +572,7 @@ "artikeln Historical values of the Earth's clock error %1T and the " "calculation of eclipses (%2) med tillägg i (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -510,7 +585,7 @@ "med en cosinus- och andragradsfunktion. Detta är baserat pÃ¥ en möjlig " "periodicitet, som beskrivs av Stephenson (%2). Läs mer %3här%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -525,11 +600,33 @@ "Canon of Solar Eclipses: -1900 to +3000 (2006). Formeln används även i " "ett efemeridprogram för solen, mÃ¥nen och planeterna, kallat SOLEX." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "Används som standard." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Lösningen av B. Banjevic, baserad pÃ¥ Stephenson & Morrison (1984), " +"publiserad i artikeln Ancient eclipses and dating the fall of " +"Babylon (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Lösningen av S. Islam, M. Sadiq and M. S. Qureshi, baserad pÃ¥ Meeus & Simons " +"(2000), publiserad i artikeln Error Minimization of Polynomial " +"Approximation of DeltaT (%1) och uppdaterad av Sana Islam i 2013." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -538,15 +635,15 @@ "Det här är en andragradsfunktion för beräkning av %1T, där koefficienterna " "definieras av användaren." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Fel" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "med meningslösa värden utanför detta intervall" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -554,22 +651,23 @@ "med ett medelfel pÃ¥ mindre än en sekund, maximifel pÃ¥ 1,9 s och meningslösa " "värden utanför detta intervall" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "med noll och inga värden utanför detta intervall" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "med en typisk noggrannhet pÃ¥ 1 sekund samt noll och inga värden utanför " "detta intervall" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Giltigt tidsintervall: mellan Ã¥r %1 och %2, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Giltigt tidsintervall: mellan Ã¥r %1 och %2." @@ -738,52 +836,53 @@ msgid "Found" msgstr "Hittades" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Välj skärmbildskatalog" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "FOV vid start: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Visningsriktning vid start Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Upphovsmän" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Kontakt" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Upphovsman" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Licens" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Kör skript: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Kör skript: [inget]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -791,16 +890,16 @@ "Nerladdning av nya stjärnkataloger klar!\n" "Starta om Stellarium för att visa dem." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Alla tillgängliga stjærnkataloger har installerats" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Hämta katalog %1 av %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -809,7 +908,7 @@ "Hämtar %1...\n" "(Du kan stänga detta fönster.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -820,7 +919,7 @@ "Antal stjärnor: %2 miljoner\n" "Magnitud: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -829,11 +928,11 @@ "Fel vid hämtning av %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Verifierar filintegritet..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -843,115 +942,123 @@ "Filen är skadad." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Algoritm för" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Utan korrigering" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (med Chapront, Chapront-Touze & Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Anpassad ekvation av %1T" @@ -1121,49 +1228,53 @@ msgid "OSX Developer: %1" msgstr "OSX-utvecklare: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Konsolfönster för skript" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Fönster" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Mellanslag" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ingen beskrivning" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Inga stjärnfall" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normal frekvens" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standard-Perseid-mängd" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Extraordinär Leonid-mängd" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Största intensiteten nÃ¥gonsin (1966 Leonider)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Ny lokal" @@ -1268,19 +1379,19 @@ msgid "starchart" msgstr "stjärnkarta" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "SIMBAD-sökningsfel" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Sök i SIMBAD" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Universitetet i Strasbourg (Frankrike)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard University (USA)" @@ -1296,30 +1407,36 @@ msgid "Alternative shortcut" msgstr "Alternativt kortkommando" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Anpassad ekvation för %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "En typisk ekvation för beräkning av %1T ser ut sÃ¥ här:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "där" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "Ã¥r" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Detta system saknar stöd för OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sol" @@ -1336,12 +1453,12 @@ msgstr "Jorden" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "MÃ¥nen" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1439,7 +1556,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturnus" @@ -1737,195 +1854,224 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "Indisk vedisk" + +#: src/translations.h:171 msgid "Korean" msgstr "Koreanska" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navaho" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Norse" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesiska" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Samisk" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Tongansk" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Västerländsk" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Träd" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Orkan" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Ocean" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Landskapsrundtur" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Partiell mÃ¥nförmörkelse" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Total mÃ¥nförmörkelse" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Skärmsläckare" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "Solförmörkelse 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Programstartsskript" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiaken" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Merkurius soluppgÃ¥ng & solnedgÃ¥ng x3" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Dubbelförmörkelse frÃ¥n Deimos 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Dubbelförmörkelse frÃ¥n Deimos 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Förmörkelse frÃ¥n Olympus Mons 10 jan 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Ockultation av jorden och Jupiter 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "3 passager & 2 förmörkelser frÃ¥n Deimos 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Skärmsläckare – Solsystemet" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Stjärnbildsrundtur" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "Solen frÃ¥n olika planeter" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Bästa utsikt över jorden frÃ¥n andra himlakroppar" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "Venuspassage" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Analemman" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "Stjärnbildsmytologisk rundtur" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Jord händelser sett frÃ¥n Merkurius" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Jord-händelser sett frÃ¥n Venus" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Jord-händelser sett frÃ¥n Mars" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "Se dig omkring i alla installerade landskap." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "En översikt över alla installerade stjärnbildsmytologier." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Skript för att visa en partiell mÃ¥nförmörkelse." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Skript för att visa en total mÃ¥nförmörkelse." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" "En lÃ¥ngsam, oändlig rundtur pÃ¥ himlavalvet där du tittar pÃ¥ slumpmässiga " "objekt." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1933,11 +2079,11 @@ "Skript som visar en total solförmörkelse som inträffade 2009 (plats: Rangpur " "i Bangladesh)." -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Skript som körs automatiskt vid programstart" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1946,7 +2092,7 @@ "Detta skript visar stjärnbilderna i zodiaken. Det innebär att stjärnbilderna " "som ligger längs den bara som solen följer över himlavalvet under Ã¥ret." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1954,7 +2100,7 @@ "PÃ¥ grund av Merkurius speciella kretslopp och rotation kommer solen att gÃ¥ " "upp och gÃ¥ ner vid 3 olika tillfällen och platser under samma dygn." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1962,7 +2108,7 @@ "Precis innan Mars förmörkar solen tittar Phobos fram och hinner förmörka " "solen före Mars. Detta sker mellan Skorpionen och Skytten den 26 april 2017." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1970,18 +2116,18 @@ "Precis innan Mars förmörkar solen tittar Phobos fram och hinner förmörka " "solen före Mars. Detta sker mellan Oxen och Tvillingarna den 23 juli 2031." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "Phobos förmörkar solen, betraktat frÃ¥n Olympus Mons den 10 jan 2068." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1991,42 +2137,40 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Skärmsläckare med olika händelser i vÃ¥rt solsystem. 171 händelser, allt som " -"allt!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "En genomgÃ¥ng av de västerländska stjärnbilderna." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "Titta pÃ¥ solen frÃ¥n Pluto och de stora planterna i solsystemet." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "De bästa vyerna över jordklotet frÃ¥n andra kroppar i solsystemet under 2000-" "talet." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "Venuspassagen som den sÃ¥g ut frÃ¥n Sydney i Australien pÃ¥ Sveriges " "nationaldag den 6 juni 2012." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" "En förevisning av analemman, d.v.s. solens bana över himlen under ett solÃ¥r." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2034,1468 +2178,1504 @@ "Skenet frÃ¥n supernovan som Tycho Brahe observerade Ã¥r 1572. " "Supernoveinsticksmodulen mÃ¥ste vara aktiverad." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "Jordens största elongation frÃ¥n Jupiter 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Förenade Arabemiraten" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afghanistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antigua och Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Albanien" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Armenien" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Nederländska Antillerna" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktis" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Argentina" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikanska Samoa" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Österrike" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Australien" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbajdzjan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosnien och Hercegovina" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Bangladesh" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belgien" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgarien" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahrain" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivien" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brasilien" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamas" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvetön" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botswana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Vitryssland" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Kokosöarna" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Demokratiska republiken Kongo" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Centralafrikanska republiken" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Republiken Kongo" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Schweiz" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Elfenbenskusten" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cooköarna" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Chile" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Kina" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Colombia" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Costa Rica" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Serbien och Montenegro" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Kuba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Kap Verde" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Julön" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Cypern" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Tjeckien" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Tyskland" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Djibouti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Danmark" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominique" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominikanska Republiken" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Algeriet" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Equador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estland" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Egypten" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Västsahara" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritrea" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Spanien" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiopien" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finland" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falklandsöarna" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronesien" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Färöarna" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Frankrike" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "Storbritannien" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Georgien" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Franska Guyana" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Ghana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Gibraltar" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grönland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambia" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Guinea" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadeloupe" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Ekvatorialguinea" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Grekland" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Sydgeorgien och Sydsandwichöarna" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Guinea-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard- och McDonaldsöarna" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Kroatien" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Ungern" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Indonesien" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Irland" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Israel" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Indien" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Brittiska territoriet i Indiska Oceanen" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Iran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Island" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Italien" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaica" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Jordanien" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japan" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kirgizistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kambodja" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komorerna" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts och Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Nordkorea" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Sydkorea" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuwait" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Caymanöarna" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakstan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Laos" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Libanon" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "St Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Liechtenstein" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberia" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesotho" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litauen" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Luxemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Lettland" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libyen" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Marocko" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monaco" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldavien" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshallöarna" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedonien" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar (Burma)" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "Mongoliet" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Macao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Norra Marianeröarna" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinique" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Mauretanien" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldiverna" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malawi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Mexiko" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malaysia" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Moçambique" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibia" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Nya Kaledonien" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Niger" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolköarna" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nigeria" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nicaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Nederländerna" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norge" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Nya Zeeland" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Oman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Franska Polynesien" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Nya Guinea" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filippinerna" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polen" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "St Pierre och Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Puerto Rico" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Palestina" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portugal" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Qatar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Rumänien" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Serbien" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Ryssland" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Rwanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Saudiarabien" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Solomonöarna" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Seychellerna" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Sverige" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapore" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "St. Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenien" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard och Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovakien" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somalia" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "São Tomé och Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Syrien" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Swaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks- och Caicosöarna" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Tchad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Franska Sydterritorierna" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Thailand" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tadzjikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Östtimor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Turkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunisien" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Turkiet" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad och Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Taiwan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzania" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukraina" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "USA:s mindre avlägsna öar" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "USA" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Uzbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikanstaten" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent och Grenadinerna" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Brittiska Jungfruöarna" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "Amerikanska Jungfruöarna" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis och Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Jemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Jugoslavien" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Sydafrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambia" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabwe" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Datum och tid" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Lägg till ett sideriskt dygn" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Addera 1 siderisk mÃ¥nad" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Lägg till en siderisk vecka" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Addera 1 sideriskt Ã¥r" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Addera 1 sideriskt Ã¥rhundrade" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Lägg till ett soldygn" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Lägg till en soltimme" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Lägg till en solvecka" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Addera 1 synodisk mÃ¥nad" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Addera 1 drakmÃ¥nad" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Addera 1 anomalistisk mÃ¥nad" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Addera 1 genomsnittlig tropisk mÃ¥nad" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Addera 1 drakÃ¥r" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Addera 1 genomsnittligt tropiskt Ã¥r" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Addera 1 genomsnittligt tropiskt Ã¥rhundrade" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Reduser kjørehastigheten for skript" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Minska tidshastighet" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Reducera tidshastigheten (lite)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Öka uppspelningshastigheten pÃ¥ skriptet" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Öka tidshastighet" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Öka tidshastigheten (lite)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Pausa aktuellt skript" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Ã…teruppta körning av skript" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Ställ in tid till nu" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Ã…terställ skriptets uppspelningshastighet" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Ställ in normal tidsfrekvens" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "Sätt tidshastigheten till noll" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Stoppa körning av skript" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "Dra ifrÃ¥n ett sideriskt dygn" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "Subtrahera 1 siderisk mÃ¥nad" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "Dra ifrÃ¥n en siderisk vecka" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Subtrahera 1 sideriskt Ã¥r" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "Subtrahera 1 sideriskt Ã¥rhundrade" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Dra ifrÃ¥n ett soldygn" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Dra ifrÃ¥n en soltimme" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Dra ifrÃ¥n en solvecka" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "Subtrahera 1 synodisk mÃ¥nad" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "Subtrahera 1 drakmÃ¥nad" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "Subtrahera 1 anomalistisk mÃ¥nad" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "Subtrahera 1 genomsnittlig tropisk mÃ¥nad" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "Subtrahera 1 drakÃ¥r" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "Subtrahera 1 genomsnittligt tropiskt Ã¥r" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "Subtrahera 1 genomsnittligt tropiskt Ã¥rhundrade" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Visningsalternativ" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Vänd scenen horisontellt" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Helskärmsläge" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfär" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Planprojicerat rutnät (azimutisk)" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Kardinalpunkter" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Stjärnbildsgrafik" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Stjärnbildsgränser" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Stjärnbildsetiketter" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Stjärnbildslinjer" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Bakgrundsbilder av Nebulosor" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptiskt J2000-rutnät" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptisk linje" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekvatorlinje" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Konprojicerat rutnät" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatorialt J2000-net" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Dimma" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Galaktiskt rutnät" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Galaktiska planet" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "MarknivÃ¥" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Horisontlinje" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridianlinje" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Nebulosor" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Nattläge" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Planetnamn" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Planetbanor" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Planet spÃ¥r" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Stjärnor" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Stjärnetiketter" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Vänd scenen vertikalt" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Diverse" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Dölj den horisontella knappraden automatiskt" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Dölj den lodräta knappraden automatiskt" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "GÃ¥ till din hemplats" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Avsluta" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Kopierade markerad objektinformation till Urklipp" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Spara skärmbild" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Byt mellan ekvatorial och azimutal motering" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Växla synlighet för det grafiska gränssnittet" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Förflyttning och val" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Centrera pÃ¥ markerat objekt" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Ange hemplanet till markerad planet" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "SpÃ¥ra objekt" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Zooma in pÃ¥ markerat objekt" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Zooma ut" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "VinkelmÃ¥tt" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Kompassmärken" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Visa exoplaneter" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Konfigurationsfönster för exoplaneter" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "Observerbarhet" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Konfigurationsfönster för observerbarhet" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Konfiguration av okularinsticksmodulen" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Okular-vy" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Visa hÃ¥rkors" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Oculars meny" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Bildsensorruta" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad-sikte" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Välj nästa teleskop" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Välj nästa okular" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Välj tidigare teleskop" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Välj tidigare okular" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Visa pulsarer" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Konfigurationsfönster för pulsarer" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Visa kvasarer" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Konfigurationsfönster för kvasarer" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Satellitinställningsfönster" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Satellithjälp" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Satellitetiketter" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Konfigurationsfönster för historiska supernovor" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Rikta ett teleskop mot givna koordinater" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Visa renderingsstatistik" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Skript" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "Kör landskapsskript frÃ¥n fil" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Visa och zooma in mÃ¥nen" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Konfigurationsfönster" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Datum-/tidsfönster" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Hjälpfönster" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Platsfönster" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Sökfönster" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Genvägsfönstret" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Fönster för himmel och visningsalternativ" @@ -3521,7 +3701,7 @@ msgstr "Uppdatera" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Plats" @@ -3537,10 +3717,10 @@ msgid "Return to default" msgstr "Tillbaka till standard" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Ta bort" @@ -3549,7 +3729,7 @@ msgstr "Lägg till i lista" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Latitud:" @@ -3562,12 +3742,12 @@ "1 d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Longitud:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Höjd :" @@ -3591,363 +3771,407 @@ msgid "Planet:" msgstr "Planet:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Sök objekt" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Hitta objekt eller position" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gamma" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zeta" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "eta" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "theta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kappa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lambda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mu" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "nu" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "xi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "rho" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "tau" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ypsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "phi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "chi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Grekiska bokstäver för Bayers beskrivningar" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Objekt" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Position" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "engelska namn" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Sök i lista …" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listor" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Astronomiska databasen SIMBAD pÃ¥ Internet" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Utöka sökningen med SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Server:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Alternativ" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "engelska namn" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Sök i lista …" +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listor" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Alternativ" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Visa" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Himmel" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Markeringar" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Landskap" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Stjärnmytologi" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etiketter och markörer" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Planeter" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "DSOs" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Planeter och satelliter" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Visa planeter" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Visa planetmarkörer" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Visa planeters omloppsbanor" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Simulera ljushastighet" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "Ändra skala pÃ¥ mÃ¥nen" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Visa atmosfär" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Ljusförorening:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "tryck, temperatur, absorptionskoefficient" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Refraktions-/absorptionsinställningar..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Absolut skala:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Relativ skala:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "Ljusstyrka för Vintergatan:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Blinkning:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Tona ner svaga stjärnor när ljusstarka objekt är synliga" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dynamisk anpassning av ögonen" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Stjärnfall" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" +msgstr "ZHR:" + +#: src/ui_viewDialog.h:1253 +msgid "1000" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Stjärnbilder" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Visa linjer" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Visa etiketter" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Visa gränser" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Visa grafik" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "Ljusstyrka pÃ¥ konst:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Himlasfär" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Visa ekvatorlinje" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Visa meridianlinje" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Visa horisontlinje" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Visa ekliptisk linje" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Visa galaktisk planlinje" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Projektion" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Lägg till/ta bort landskap" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Visa markyta" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Visa dimma" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "Använd associerad planet och position" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Använd detta landskap som standard" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Använd denna himmelskultur som standard" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Synlig" @@ -4002,7 +4226,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Den riktning du ser när Stellarium startar" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Information om valt objekt" @@ -4018,11 +4242,8 @@ msgid "Display no information" msgstr "Visa ingen information" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ingen" @@ -4056,7 +4277,7 @@ #: src/ui_configurationDialog.h:1015 msgid "Horizontal coordinates" -msgstr "" +msgstr "Horisontella koordinater" #: src/ui_configurationDialog.h:1017 msgid "Altitude/Azimuth" @@ -4164,7 +4385,7 @@ msgstr "sekunder" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Datum och tid vid start" @@ -4176,19 +4397,23 @@ msgid "Other:" msgstr "Annat:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "använd aktuellt" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Startar Stellarium vid systemklockans datum och tid" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Systemets datum och tid" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4196,23 +4421,23 @@ "Ställer in simuleringstiden till nästa instans av den här tiden pÃ¥ dygnet " "när Stellarium startar" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Systemets datum kl:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Tidskorrigering" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Redigera ekvation" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Planetariumalternativ" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4220,51 +4445,51 @@ "Sfärisk spegel distorsion används när Stellarium projiceras pÃ¥ en sfärisk " "spegel i lÃ¥g-budjet planetarie-system." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Sfärisk spegel distorsion" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Maskera bort allting utanför en central cirkel i huvud vyn" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Skivformad vyport" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Dölj andra stjärnbilder när du klickar pÃ¥ en" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Välj enskild stjärnbild" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Rätta etiketter mot horisonten" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Gravitetsetiketter" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Växla nebulosornas visningsbakgrund." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Visa knapp för nebulosabakgrund" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Växla knappar för vertikal och horisontell bildvändning." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Visa vändningsknappar" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4272,92 +4497,98 @@ "När det aktiveras kommer knappen för \"automatisk utzoomning\" ocksÃ¥ ställa " "in riktningen för visning vid start" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Automatisk utzoomning Ã¥tervänder till visningsriktningen vid start" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Rendera solskuggor" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Skärmbilder" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Skärmbildskatalog" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Invertera färger" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Uppdateringar av stjärnkataloger" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Klicka här för att ladda ner" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Ladda ner denna fil för att visa ännu fler stjärnor" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Ladda ner pÃ¥ nytt" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Försök igen" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Stoppa nedladdningen. Du kan alltid starta om den senare" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Avbryt" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Stäng fönstret när skriptet körs" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Kör det valda skriptet" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Stoppa ett körande skript" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Laddas vid start" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "Konfigurera" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Allmänt" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Information" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Navigering" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Verktyg" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Insticksprogram" @@ -4533,12 +4764,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Visa kompassmärkningar utmed horisonten" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Okular" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4548,164 +4779,164 @@ "synsfältet är simulerat). Den kan ocksÃ¥ visa en sensorram och ett Telrad-" "sikte." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Välj ett objekt innan du byter till okularvisning." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Förra okularet" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Nästa okular" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Välj &okular" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "SlÃ¥ pÃ¥/av &hÃ¥rkors" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Ställ in &okular" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "SlÃ¥ pÃ¥/av &CCD" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "SlÃ¥ pÃ¥/av &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Förra CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Nästa CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Välj CCD" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Rotera CCD" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&Ã…terställ rotation" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Okular #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Okular #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "Okularets fokallängd: %1 mm" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Lins #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Lins #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Lins: ingen" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "Förstoring: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "MÃ¥tt: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Sensor #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Sensor #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Lins" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&FöregÃ¥ende lins" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&Nästa lins" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&FöregÃ¥ende teleskop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Nästa teleskop" @@ -4777,64 +5008,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "Multiplicitet: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Lins: Ingen" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "Multiplicitet: i.u." -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "Linsens multiplicitet" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "Rotation: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Version" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4842,7 +5078,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4853,14 +5089,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4869,191 +5105,200 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "SlÃ¥ pÃ¥/av okularvisning:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Gränsnitt" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Allmän" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Okularer" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Lägg till" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Namn:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "aFOV:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Fokallängd:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Kikare" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Sensorer" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Upplösning x (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Upplösning y (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskop" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Diameter:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Satelliter" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" @@ -5061,88 +5306,148 @@ "Prognos för positioner av artificiella satelliter i omloppsbana runt Jorden " "baserad pÃ¥ NORADs TLE-data" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "Den gamla satellites.json-filen är inte kompatibel längre - använder " "standardfilen" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "AvstÃ¥nd (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "AvstÃ¥ndsändring (km/s): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Höjd (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME koordinater (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME hastighet (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Sateliten och observatören är i solljus." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Satelliten är synlig." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Satelliten är inte synlig." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Satellitprogramtillägg för Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5150,17 +5455,17 @@ "Satellitprogramtillägget förutsäger positionerna till artificiella " "satelliter i bana runt jorden." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "kommentarer till användare" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Satelliter och deras banor visas bara om observatören befinner sig pÃ¥ jorden." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5171,7 +5476,7 @@ "den gÃ¥ngna tiden). Förvänta stora avvik när man observerar utanför denna " "tidsperioden." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5180,7 +5485,7 @@ "För att fÃ¥ användbara data, mÃ¥ste du uppdatera TLE-data ofta." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5188,7 +5493,7 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5197,11 +5502,11 @@ "ofullständiga, saknas eller kan innehÃ¥lla fel." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "Uppdateringar för TLE-data" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5211,7 +5516,7 @@ "och programtillägget har som standard att göra detta om de existerande data " "är mer än 72 timer. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5222,17 +5527,17 @@ "datamaskin. Denna filen mÃ¥ste vara i samma format som Celestrak-" "uppdateringarna (se %1 för ett exempel)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Lägger till nya satelliter" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5240,41 +5545,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "Länkar" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5282,338 +5589,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Om du har nÃ¥gra frÃ¥gor, kan du %1fÃ¥ svar här%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Felrapportering kan göras %1här%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internet-uppdatering deaktiverad" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "UppdaterAr..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Nästa uppdatering: < 1 minut" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Nästa uppdatering: %1 minuter" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "Nästa uppdatering: %1 timmar" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Uppdatera nu" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Uppdatera frÃ¥n filer" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Fel vid uppdatering" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Uppdaterade %1/%2 satellit(er); %3 saknas" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[ny källa]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Uppdatera nu" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Uppdatera frÃ¥n filer" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[alla visas inte]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[alla visas]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[alla]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Välj TLE-uppdateringsfil" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Satellitinställningar" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Uppdatera TLE-listor frÃ¥n internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Uppdatera frÃ¥n internet" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Senaste uppdatering:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Rubriker" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Ã…terställ standardinställningar" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Spara inställningar som standard" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Inställningar" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Spara ändringar" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Katalognummer:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Visa valda satellit(er)" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Visad" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Bana" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Katalognummer:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "Beskrivning:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Grupper:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE-data:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Spara ändringar" - -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Källor" @@ -5649,11 +5999,11 @@ msgid "Discard" msgstr "Förkasta" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskopkontroll" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5662,12 +6012,12 @@ "ett teleskop pÃ¥ ett fäste som anslutits till en dator (ett \"GoTo-" "teleskop\")." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "Rikta teleskop #%1 mot valt objekt" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "Rikta teleskop #%1 mot punkten i skärmens mitt" @@ -6053,62 +6403,62 @@ "av hur tid och datum visas i raden längst ner pÃ¥ skärmen." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Januari" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Februari" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Mars" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "April" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Maj" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Juni" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Juli" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "Augusti" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "September" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Oktober" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "November" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "December" @@ -6262,7 +6612,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6280,7 +6630,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Datumformat" @@ -6296,11 +6646,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-åååå" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Text User Interface" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6308,144 +6658,144 @@ "Insticksprogram för versioner ur 0,9-serien av Text User Interface (TUI), " "som används i planetariumsystem" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "system" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddåååå" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmåååå" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "ååååmmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12t" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24t" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "SprÃ¥k" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Färger" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Linje för galaxplanet" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Effekter" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Administration" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Stäng av" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[ingen TUI node]" @@ -6481,22 +6831,22 @@ "sökningar i dess onlinedatabas. Fortfarande under utveckling." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6665,36 +7015,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6712,7 +7069,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6726,14 +7083,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6741,8 +7098,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6760,29 +7118,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Uppdatera frÃ¥n internet" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6798,51 +7233,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6962,11 +7407,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6974,137 +7419,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AE" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7112,49 +7561,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7170,185 +7708,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7758,6 +8290,9 @@ #~ msgid "Mouse cursor timeout (seconds):" #~ msgstr "Tidsgräns för muspekare (sekunder):" +#~ msgid "Nebulas" +#~ msgstr "Nebulosor" + #~ msgid "Correct for light travel time: " #~ msgstr "Ta hänsyn till ljusets hastighet: " @@ -7794,6 +8329,9 @@ #~ msgid "Startup FOV: XX" #~ msgstr "FOV vid start: XX" +#~ msgid "Nebulas background images" +#~ msgstr "Bakgrundsbilder av Nebulosor" + #~ msgid "Light Pollution Luminance: " #~ msgstr "Ljusförorenings luminicens: " @@ -7826,5 +8364,21 @@ #~ msgid "Plugin Key Bindings" #~ msgstr "Tangentgenvägar för insticksprogram" +#~ msgid "TLE data:" +#~ msgstr "TLE-data:" + +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Uppdaterade %1/%2 satellit(er); %3 saknas" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Uppdatera TLE-listor frÃ¥n internet" + #~ msgid "Crosshairs" #~ msgstr "HÃ¥rkors" + +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Skärmsläckare med olika händelser i vÃ¥rt solsystem. 171 händelser, allt som " +#~ "allt!" diff -Nru stellarium-0.12.1/po/stellarium/sw.po stellarium-0.12.4/po/stellarium/sw.po --- stellarium-0.12.1/po/stellarium/sw.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/sw.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:25+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swahili \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:19+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/ta.po stellarium-0.12.4/po/stellarium/ta.po --- stellarium-0.12.1/po/stellarium/ta.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/ta.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-10-13 16:08+0000\n" "Last-Translator: à®®à¯à®°à®³à®¿ \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:19+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:54+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "உசà¯à®šà®¨à¯†à®Ÿà¯à®™à¯à®•à¯‹à®Ÿà¯" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "சூரிய வீதி" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "நிலநடà¯à®•à¯à®•à¯‹à®Ÿà¯" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "தொடà¯à®µà®¾à®©à®®à¯" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "அணà¯à®Ÿà®¤à¯ தளமà¯" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "எழà¯à®¤à®¿à®¯à®µà®°à¯ " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "இடமà¯: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "கோள௠" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "வகை: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "ஒளியளவà¯: %1 (%2 கà¯à®•à¯ அழிகà¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "பரà¯à®®à¯ˆ: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "அளவà¯: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "அணà¯à®Ÿà®®à¯" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "பரவிய விணà¯à®®à¯€à®©à¯ கொதà¯à®¤à¯" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "உரà¯à®£à¯à®Ÿà¯ˆà®¯à®¾à®© விணà¯à®®à¯€à®©à¯ கொதà¯à®¤à¯" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "வானà¯à®ªà¯à®•à¯ˆà®¯à¯à®°à¯" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "கோள௠விணà¯à®®à¯€à®©à¯ படலமà¯" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "à®®à¯à®•à®¿à®²à¯ தனà¯à®®à¯ˆ கொணà¯à®Ÿ விணà¯à®®à¯€à®©à¯ கொதà¯à®¤à¯" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "தெரியாததà¯" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "ஆவணம௠செயà¯à®¯à®ªà®Ÿà®¾à®¤ வகை" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "பூரண பரà¯à®®à¯ˆ :%1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "தொலைவà¯: %1 AU (%2 கி.மீ.)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "தொலைவà¯: %1AU (வானியல௠அலகà¯)" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "தோறà¯à®± விடà¯à®Ÿà®®à¯: %1, வளையஙà¯à®•à®³à¯à®Ÿà®©à¯: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "தோறà¯à®± நிலை விடà¯à®Ÿà®®à¯: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "மீனà¯à®µà®´à®¿à®•à¯ காலமà¯: %1 நாடà¯à®•à®³à¯ (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "உடà¯à®¨à®¾à®³à¯: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "சராசரி சூரிய நாளà¯: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "நிலைமைக௠கோணமà¯: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "நீடà¯à®Ÿà®¿à®ªà¯à®ªà¯: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "நிலைமை: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "ஒளியூடà¯à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯: %1%" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "ஒளியளவà¯: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "நிறமாலை வகை: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "தொலைவà¯: %1 ஒளி வரà¯à®Ÿà®®à¯" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "இடமாறà¯à®¤à¯‹à®±à¯à®±à®®à¯: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "விணà¯à®•à®²à®®à¯" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "பிழை" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -639,52 +731,53 @@ msgid "Found" msgstr "கிடைதà¯à®¤à®¤à¯" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "திரைபà¯à®ªà®¿à®Ÿà®¿à®ªà¯à®ªà¯ அடைவை தேரà¯à®µà¯ செயà¯à®•" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "தொடகà¯à®• பாரà¯à®µà¯ˆà®ªà¯ பà¯à®²à®®à¯: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "தொடஙà¯à®•à®³à®¿à®©à¯à®ªà¯ பொழà¯à®¤à¯ பாரà¯à®µà¯ˆ திசை திசைவிலà¯/உயரமà¯: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "படைபà¯à®ªà®¾à®³à®°à¯à®•à®³à¯" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "தொடரà¯à®ªà¯à®•à¯Šà®³à¯" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "படைபà¯à®ªà®¾à®³à®°à¯" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "உரிமமà¯" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "கà¯à®±à¯à®¨à®¿à®°à®²à¯ˆ இயகà¯à®•à¯à®•à®¿à®±à®¤à¯: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "கà¯à®±à¯à®¨à®¿à®°à®²à¯ˆ இயகà¯à®•à¯à®•à®¿à®±à®¤à¯: [எதà¯à®µà¯à®®à®¿à®²à¯à®²à¯ˆ]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -692,16 +785,16 @@ "பà¯à®¤à¯ நடà¯à®šà®¤à¯à®¤à®¿à®°à®™à¯à®•à®³à®¿à®©à¯ விவர à®à®Ÿà¯à®•à®³à¯ பதிவிறகà¯à®•à®®à¯ செயà¯à®¯à®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®µà®¿à®Ÿà¯à®Ÿà®¤à¯!\n" "அவைகளை காடà¯à®šà®¿à®•à¯à®•à¯ வைகà¯à®• மறà¯à®¤à¯Šà®Ÿà®•à¯à®•à®®à¯ செயà¯à®¯à®µà¯à®®à¯." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "இரà¯à®•à¯à®•à®•à¯‚டிய எலà¯à®²à®¾ விணà¯à®®à¯€à®©à¯ விவர à®à®Ÿà¯à®•à®³à¯à®®à¯ உளà¯à®³à¯€à®Ÿà¯ செயà¯à®¯à®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "விவர à®à®Ÿà¯à®Ÿà¯ˆ பெற௠%1 யில௠%2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -710,7 +803,7 @@ "பதிவிறகà¯à®•à®®à¯ நடைபà¯à®ªà¯†à®±à¯à®•à®¿à®±à®¤à¯ %1 \n" "(நீஙà¯à®•à®³à¯ இநà¯à®¤ சாளரதà¯à®¤à¯ˆ மூடலாமà¯)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -721,7 +814,7 @@ "நடà¯à®šà®¤à¯à®¤à®¿à®° எணà¯à®£à®¿à®•à¯à®•à¯ˆ: %2 மிலà¯à®²à®¿à®¯à®©à¯ \n" "எண௠மதிபà¯à®ªà¯ வரையறை: %3- %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -730,11 +823,11 @@ "பதிவிறகà¯à®•à®¤à¯à®¤à®¿à®²à¯ பிழை %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "கோபà¯à®ªà¯ à®’à®´à¯à®™à¯à®•à®®à¯ˆà®µà¯ பரிசோதிகà¯à®•à®ªà®Ÿà¯à®•à®¿à®±à®¤à¯..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -744,115 +837,123 @@ "கோபà¯à®ªà¯ பழà¯à®¤à¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1015,49 +1116,53 @@ msgid "OSX Developer: %1" msgstr "à®’ ச கà¯à®¸à¯(OSX) உரà¯à®µà®¾à®•à¯à®•à¯à®¨à®°à¯: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "சாளரமà¯" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "இடைவெளி" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "விவரணம௠இலà¯à®²à¯ˆ" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "எரிநடà¯à®šà®¤à¯à®¤à®¿à®°à®™à¯à®•à®³à¯ இலà¯à®²à¯ˆ" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "வழகà¯à®•à®®à®¾à®© வேகமà¯" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "பà¯à®¤à®¿à®¯ இடமà¯" @@ -1161,19 +1266,19 @@ msgid "starchart" msgstr "நடà¯à®šà®¤à¯à®¤à®¿à®° வரைபடமà¯" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1189,30 +1294,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "இநà¯à®¤ கணினி OpenGL கà¯à®•à¯ ஆதரவளà¯à®³à®¿à®ªà®¤à¯ இலà¯à®²à¯ˆ" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "சூரியனà¯" @@ -1229,12 +1340,12 @@ msgstr "பூமி" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "நிலா" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "செவà¯à®µà®¾à®¯à¯ (Mars)" @@ -1332,7 +1443,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "சனி (Saturn)" @@ -1630,193 +1741,222 @@ msgstr "" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "கொரியனà¯" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "லகோடா" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "மௌரி" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "நவாஜோ" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "வெஸà¯à®Ÿà®°à¯à®©à¯" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "மரஙà¯à®•à®³à¯" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "பà¯à®¯à®²à¯ காறà¯à®±à¯" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "சமà¯à®¤à¯à®¤à®¿à®°à®®à¯" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "பகà¯à®¤à®¿ சநà¯à®¤à®¿à®° கிரகணமà¯" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "à®®à¯à®´à¯ சநà¯à®¤à®¿à®° கிரகணமà¯" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "திரைசேமிபà¯à®ªà®¿" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "சூரிய கிரகணம௠2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "இராசி மணà¯à®Ÿà®²à®®à¯" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1824,47 +1964,47 @@ "2009ல௠நடநà¯à®¤ à®®à¯à®´à¯ சூரிய கிறகணதà¯à®¤à®¿à®©à¯ தொகà¯à®ªà¯à®ªà¯ (நடைபெறà¯à®± இடமà¯: இரஙà¯à®•à®ªà¯‚à®°à¯, " "வஙà¯à®•à®¾à®³à®¤à¯‡à®šà®®à¯)" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1874,1502 +2014,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "அனà¯à®Ÿà¯‹à®°à®¾" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "யà¯à®©à¯ˆà®Ÿà¯†à®Ÿà¯ அரபி எமிரேடà¯à®¸à¯" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ஆபà¯à®•à®¾à®©à®¿à®¸à¯à®¤à®¾à®©à¯" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "ஆனà¯à®Ÿà®¿à®•à¯à®µà®¾ மறà¯à®±à¯à®®à¯ பாரà¯à®ªà¯à®Ÿà®¾" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "à®…à®™à¯à®•à¯à®¯à¯‚லா" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "அலà¯à®ªà®¾à®©à®¿à®¯à®¾" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "à®…à®°à¯à®®à¯‡à®©à®¿à®¯à®¾" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "நெதரà¯à®²à®¾à®¨à¯à®¤à¯ அனà¯à®Ÿà®¿à®²à¯à®¸à¯" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "à®…à®™à¯à®•à¯‹à®²à®¾" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "அனà¯à®Ÿà®¾à®°à¯à®Ÿà®¿à®•à¯à®•à®¾" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "à®…à®°à¯à®œà®©à¯à®Ÿà¯ˆà®©à®¾" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "அமெரிகன௠ஸமோவா" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ஆஸà¯à®¤à¯à®¤à®¿à®°à®¿à®¯à®¾" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ஆஸà¯à®¤à¯à®¤à®¿à®°à¯‡à®²à®¿à®¯à®¾" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "அரூபா" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "அஸரà¯à®ªà¯ˆà®œà®¾à®©à¯" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "போஸà¯à®©à®¿à®¯à®¾ மறà¯à®±à¯à®®à¯ ஹெரà¯à®·à®•à¯‹à®µà®¿à®©à®¾" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "பாரà¯à®ªà¯‡à®Ÿà¯‹à®¸à¯" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "வஙà¯à®•à®¾à®³à®¤à¯‡à®šà®®à¯" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "பெலà¯à®œà®¿à®¯à®®à¯" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "பà¯à®°à¯à®•à®¿à®©à®¾ ஃபாஸோ" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "பலà¯à®•à¯‡à®°à®¿à®¯à®¾" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "பஹà¯à®°à¯ˆà®©à¯" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "பà¯à®°à¯†à®©à¯à®Ÿà®¿" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "பெனினà¯" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "பெரà¯à®®à¯à®Ÿà®¾" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "பà¯à®°à¯à®©à¯† டரà¯à®¸à¯à®šà®²à®¾à®®à¯" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "பொலிவியா" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "பிரேசிலà¯" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "பஹாமாஸà¯" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "பூடானà¯" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "போவெட௠தீவà¯" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "போடà¯à®¸à¯à®µà®¾à®©à®¾" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "பெலாரஸà¯" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "பெலிஸà¯" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "கனடா" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "கோகோஸ௠தீவà¯à®•à®³à¯" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "மதà¯à®¤à®¿à®¯ ஆபà¯à®ªà®¿à®°à®¿à®•à¯à®• கà¯à®Ÿà®¿à®¯à®°à®šà¯" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "காஙà¯à®•à¯‹ கà¯à®Ÿà®¿à®¯à®°à®šà¯" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "சà¯à®µà®¿à®Ÿà¯à®šà®°à¯à®²à®¾à®¨à¯à®¤à¯" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "கோட௠டிலà¯à®µà¯Šà®°à®¿" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "கூக௠தீவà¯" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "சிலி" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "கேமரூனà¯" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "சீனா" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "கொலமà¯à®ªà®¿à®¯à®¾" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "கோஸà¯à®Ÿà®¾ ரிகா" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "செரà¯à®ªà®¿à®¯à®¾ மறà¯à®±à¯à®®à¯ மோனà¯à®Ÿà¯‡ நெகà¯à®°à¯‹ கà¯à®Ÿà®¿à®¯à®°à®šà¯" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "கியூபா" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "காப௠வெரà¯à®Ÿà¯‡" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "கிறிஸà¯à®¤à¯à®®à®¸à¯ தீவà¯" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "சைபà¯à®°à®¸à¯" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "செக௠கà¯à®Ÿà®¿à®¯à®°à®šà¯" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "ஜெரà¯à®®à®©à®¿" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "டிஜà¯à®ªà¯Šà®Ÿà¯à®Ÿà®¿" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "டெனà¯à®®à®¾à®°à¯à®•à¯" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "டொமினிகà¯à®•à®¾" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "டொமினிகà¯à®•à®©à¯ கà¯à®Ÿà®¿à®¯à®°à®šà¯" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "அலà¯à®œà¯€à®°à®¿à®¯à®¾" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "ஈகà¯à®•à¯à®µà¯‡à®Ÿà¯‹à®°à¯" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "எஸà¯à®Ÿà¯‹à®©à®¿à®¯à®¾" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "எகிபà¯à®¤à¯" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "மேறà¯à®•à¯ சஹாரா" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "எரிடà¯à®°à®¿à®¯à®¾" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "ஸà¯à®ªà¯†à®¯à®¿à®©à¯" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "எதà¯à®¤à®¿à®¯à¯‹à®ªà¯à®ªà®¿à®¯à®¾" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ஃபினà¯à®²à®¾à®¨à¯à®¤à¯" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "ஃபிஜி" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ஃபாலà¯à®•à¯ தீவà¯" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "மிகà¯à®°à¯‹à®¨à¯‡à®·à®¿à®¯à®¾" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "ஃபரோ தீவà¯à®•à®³à¯" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "ஃபிரானà¯à®¸à¯" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "காபோனà¯" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "பிரிடிஷ௠கூடà¯à®Ÿà®°à®šà¯" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "கிரெனடா" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ஜாரà¯à®œà®¿à®¯à®¾" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "ஃபà¯à®°à¯†à®žà¯à®šà¯ கையானா" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "கஹானா" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "கிபà¯à®°à®¾à®²à¯à®Ÿà®°à¯" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "கிரீனà¯à®²à®¾à®¨à¯à®¤à¯" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "காமà¯à®ªà®¿à®¯à®¾" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "கினியா" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "கà¯à®µà®¾à®Ÿà¯†à®²à¯à®ªà¯‹à®ªà¯" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "ஈகோடோரியல௠கà¯à®¯à¯à®©à®¿à®¯à®¾" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "கிரீஸà¯" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "தெறà¯à®•à¯ ஜாரà¯à®œà®¿à®¯à®¾ மறà¯à®±à¯à®®à¯ தெறà¯à®•à¯ சானà¯à®µà®¿à®šà¯ தீவà¯à®•à®³à¯" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "கà¯à®µà®¾à®¤à®¿à®®à®¾à®²à®¾" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "கà¯à®µà®¾à®®à¯" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "கினியா-பிஸà¯à®¸à®¾à®µà¯" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "கயானா" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "ஹாங௠காஙà¯" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "ஹெரà¯à®Ÿà¯ தீவ௠மறà¯à®±à¯à®®à¯ மெக௠டொனாலà¯à®Ÿà¯ தீவà¯à®•à®³à¯" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ஹானà¯à®Ÿà¯à®°à®¾à®¸à¯" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "கà¯à®°à¯‹à®Ÿà®¿à®¯à®¾" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "ஹைதி" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "ஹஙà¯à®•à¯‡à®°à®¿" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "இநà¯à®¤à¯‹à®©à¯‡à®·à®¿à®¯à®¾" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "அயரà¯à®²à®¾à®¨à¯à®¤à¯" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "இஸà¯à®°à¯‡à®²à¯" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "இநà¯à®¤à®¿à®¯à®¾" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "பà¯à®°à®¿à®Ÿà¯à®Ÿà®¿à®·à¯ இநà¯à®¤à®¿à®¯ பெரà¯à®™à¯à®•à®Ÿà®²à¯ பிரதேசமà¯" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "ஈராகà¯" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "ஈரானà¯" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "à®à®¸à¯à®²à¯‡à®©à¯à®Ÿà¯" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "இதà¯à®¤à®¾à®²à®¿" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "ஜமைகà¯à®•à®¾" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "ஜோரà¯à®Ÿà®¾à®©à¯" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "ஜபà¯à®ªà®¾à®©à¯" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "கெனà¯à®¯à®¾" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "கிரைகிஸà¯à®¤à¯à®¤à®¾à®©à¯" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "கமà¯à®ªà¯‹à®Ÿà®¿à®¯à®¾" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "கிரிபாடà¯à®Ÿà®¿" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "கோமொரோஸà¯" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "செயினà¯à®Ÿà¯ கிடà¯à®¸à¯ மறà¯à®±à¯à®®à¯ நிவிஸà¯" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "கொரிய ஜனநாயக மகà¯à®•à®³à¯ கà¯à®Ÿà®¿à®¯à®°à®šà¯" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "கொரிய கà¯à®Ÿà®¿à®¯à®°à®šà¯" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "கà¯à®µà¯ˆà®¤à¯" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "கேயà¯à®®à®©à¯ தீவà¯" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "கஜஸà¯à®¤à®¾à®©à¯`" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "லாவோ" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "லெபனானà¯" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "செயினà¯à®Ÿà¯ லூசியா" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "லிசà¯à®Ÿà¯†à®£à¯à®¸à¯à®Ÿà¯€à®©à¯" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "இலஙà¯à®•à¯ˆ" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "லிபெரியா" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "லஸொதோ" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "லிதà¯à®¤à¯à®µà¯‡à®©à®¿à®¯à®¾" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "லகà¯à®¸à®®à¯à®ªà®°à¯à®•à¯" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "லடà¯à®µà®¿à®¯à®¾" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "லிபரியன௠அராபிய ஜமாஹிரியா" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "மொரோகà¯à®•à¯‹" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "மொனாகà¯à®•à¯‹" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "மோலà¯à®Ÿà¯‹à®µà®¾" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "மடகஸà¯à®•à®¾à®°à¯" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "மாரà¯à®·à®²à¯ தீவà¯à®•à®³à¯" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "மாசிடோ னியா" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "மாலி" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "மயானà¯à®®à®¾à®°à¯" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "மஙà¯à®•à¯‹à®²à®¿à®¯à®¾" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "மகà¯à®•à®¾à®µà¯" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "வட மரியானா தீவà¯à®•à®³à¯" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "மாரà¯à®Ÿà®¿à®©à¯€à®•à¯à®•à¯" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "மொரிசியேனியா" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "மோனà¯à®¸à®¿à®°à®¾à®Ÿà¯" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "மாலà¯à®Ÿà®¾" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "மொரீஷியஸà¯" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "மாலதà¯à®¤à¯€à®µà¯à®•à®³à¯" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "மலவி" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "மெகà¯à®šà®¿à®•à¯‹" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "மலேசியா" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "மோசாமà¯à®ªà®¿à®•à¯" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "நாமிபியா" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "நியூ கலிடோனியா" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "நைகரà¯" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "நாரà¯à®ªà¯‹à®•à¯ தீவà¯" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "நைஜீரியா" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "நிகராகà¯à®µà¯‡" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "நெதரà¯à®²à®¾à®¨à¯à®¤à¯" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "நாரà¯à®µà¯‡" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "நேபாளமà¯" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "நௌரà¯" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "நீயà¯" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "நீயூசீலாநà¯à®¤à¯" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "ஓமனà¯" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "பனாமா" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "பெரà¯" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "பிரெஞà¯à®šà¯ பொலினேஷியா" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "பாபà¯à®ªà®¾ நியூ ஜினியா" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "பிலிபà¯à®ªà¯ˆà®©à¯à®¸à¯" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "பாகிஸà¯à®¤à®¾à®©à¯" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "போலாநà¯à®¤à¯" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "செயினà¯à®Ÿà¯ பியரி மறà¯à®±à¯à®®à¯ மிகà¯à®¯à¯à®²à®©à¯" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "பிடà¯à®•à¯†à®°à¯à®¯à¯à®©à¯" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "போரà¯à®Ÿà¯à®Ÿà¯‹ ரீகà¯à®•à¯‹" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "பாலஸà¯à®¤à¯€à®© பிரதேசஙà¯à®•à®³à¯" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "போரà¯à®šà¯à®šà¯à®•à®²à¯" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "பலாவà¯" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "பராகà¯à®µà¯‡" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "கதà¯à®¤à®¾à®°à¯" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "ரியூனியனà¯" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "ரோமானியா" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "செரà¯à®ªà®¿à®¯à®¾" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "à®°à®·à¯à®¯à®©à¯ கூடà¯à®Ÿà®®à¯ˆà®ªà¯à®ªà¯" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "à®°à¯à®µà®¾à®£à¯à®Ÿà®¾" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "சவà¯à®¤à®¿ அரேபியா" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "சாலமன௠தீவà¯à®•à®³à¯" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "சேஷலà¯à®¸à¯" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "சூடானà¯" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ஸà¯à®µà¯€à®Ÿà®©à¯" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "சிஙà¯à®•à®ªà¯à®ªà¯‚à®°à¯" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "செயினà¯à®Ÿà¯ ஹெலினா" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "ஸà¯à®²à¯‹à®µà¯‡à®©à®¿à®¯à®¾" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "ஸà¯à®µà®¾à®²à¯à®ªà®¾à®°à¯à®Ÿà¯ அணà¯à®Ÿà¯ ஜன௠மேயனà¯" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "ஸà¯à®²à¯‹à®µà®¾à®•à¯à®•à®¿à®¯à®¾" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "சியரா லியோனà¯" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "சான௠மெரினோ" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "செனெகலà¯" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "சோமாலியா" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "சà¯à®°à®¿à®©à¯‡à®®à¯" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "சாவோ டோம௠அணà¯à®Ÿà¯ பிரினà¯à®šà®¿à®ªà®¿" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "எல௠சாலà¯à®µà®Ÿà®¾à®°à¯" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "சிரியன௠அரப௠கà¯à®Ÿà®¿à®¯à®°à®šà¯" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "ஸà¯à®µà®¾à®šà®¿à®²à®¾à®¨à¯à®¤à¯" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "டரà¯à®•à¯à®¸à¯ மறà¯à®±à¯à®®à¯ கைகாஸ௠தீவà¯" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "சாடà¯" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "ஃபà¯à®°à¯†à®©à¯à®šà¯ தெறà¯à®•à¯ பிரதேசஙà¯à®•à®³à¯" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "டோகோ" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "தாயà¯à®²à®¾à®¨à¯à®¤à¯" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "தஜிகிஸà¯à®¤à®¾à®©à¯" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "டொகேலா" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "கிழகà¯à®•à¯ தைமோரà¯" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "தà¯à®°à¯à®•à¯à®®à¯‡à®©à®¿à®¸à¯à®¤à®¾à®©à¯" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "தà¯à®©à¯€à®šà®¿à®¯à®¾" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "டோஙà¯à®•à®¾" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "தà¯à®°à¯à®•à¯à®•à®¿" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "டà¯à®°à®¿à®©à®¿à®Ÿà®¾à®Ÿà¯ மறà¯à®±à¯à®®à¯ டோபாகோ" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "தà¯à®µà®¾à®²à¯" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "தாயà¯à®µà®¾à®©à¯" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "தானà¯à®šà®¾à®©à®¿à®¯à®¾" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "உகà¯à®°à¯†à®¯à¯à®©à¯" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "உகாணà¯à®Ÿà®¾" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "அமெரிகà¯à®• à®à®•à¯à®•à®¿à®¯ மைனர௠அவà¯à®Ÿà¯à®²à¯‡à®¯à®¿à®™à¯ தீவà¯à®•à®³à¯" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "à®à®•à¯à®•à®¿à®¯ அமெரிகà¯à®•à®¾" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "உரà¯à®•à¯à®µà¯‡" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "உஸà¯à®ªà¯†à®•à®¿à®¸à¯à®¤à®¾à®©à¯" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "வேடிகà¯à®•à®©à¯ நகர மாநிலமà¯" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "செயà¯à®©à¯à®Ÿà¯ வினà¯à®šà¯†à®©à¯à®Ÿà¯ மறà¯à®±à¯à®®à¯ கà¯à®°à®¿à®©à®Ÿà®¿à®©à¯à®¸à¯" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "வெனிசூலா" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "பà¯à®°à®¿à®Ÿà¯€à®·à¯ விரà¯à®œà®¿à®©à¯ தீவà¯à®•à®³à¯" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "யà¯à®©à¯ˆà®Ÿà¯à®Ÿà®Ÿà¯ ஸà¯à®Ÿà¯‡à®Ÿà¯à®¸à¯ வெரà¯à®œà®¿à®©à¯ தீவà¯à®•à®³à¯" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "வியடà¯à®¨à®¾à®®à¯" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "வனாடà¯à®Ÿà¯" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "வாலிஸ௠அணà¯à®Ÿà¯ ஃபà¯à®Ÿà¯à®©à®¾" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "சமோ" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "யேமனà¯" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "மயோடà¯à®Ÿà®¿" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "யà¯à®•à¯‹à®¸à¯à®²à¯‹à®µà®¿à®µà®¾" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "தென௠ஆபà¯à®°à®¿à®•à¯à®•à®¾" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "ஜாமà¯à®ªà®¿à®¯à®¾" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "ஜிமà¯à®ªà®¾à®ªà¯‡" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "நாள௠மறà¯à®±à¯à®®à¯ நேரமà¯" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "ஒர௠மீனà¯à®µà®´à®¿ நாளை கூடà¯à®Ÿà¯" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "ஒர௠மீனà¯à®µà®´à®¿ வாரதà¯à®¤à¯ˆ கூடà¯à®Ÿà¯" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "ஒர௠சூரிய தினதà¯à®¤à¯ˆ கூடà¯à®Ÿà®µà¯à®®à¯" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "ஒர௠சூரிய மணி நேரதà¯à®¤à¯ˆ கூடà¯à®Ÿà¯" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "ஒர௠சூரிய வரதà¯à®¤à¯ˆ கூடà¯à®Ÿà®µà¯à®®à¯" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "நேர வேகதà¯à®¤à¯ˆ கà¯à®±à¯ˆà®•à¯à®•à®µà¯à®®à¯" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "நேர வேகதà¯à®¤à¯ˆ கà¯à®±à¯ˆà®•à¯à®•à®µà¯à®®à¯ (கொஞà¯à®šà®®à®¾à®•)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "நேர வேகதà¯à®¤à¯ˆ அதிகரிகà¯à®•à®µà¯à®®à¯" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "நேர வேகதà¯à®¤à¯ˆ கூடà¯à®Ÿà®µà¯à®®à¯ (கொஞà¯à®šà®®à®¾à®•)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "இபà¯à®ªà¯‹à®¤à¯ˆà®¯ நேரதà¯à®¤à®¿à®±à¯à®•à¯ அமை" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "வழகà¯à®•à®®à®¾à®© நேர வேகதà¯à®¤à®¿à®±à¯à®•à¯ அமை" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "நேர வேகதà¯à®¤à¯ˆ பூஜà¯à®œà®¿à®¯à®¤à¯à®¤à®¿à®±à¯à®•à¯ வைகà¯à®•à®µà¯à®®à¯" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "ஒர௠மீனà¯à®µà®´à®¿ நாளை கழி" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "ஒர௠மீனà¯à®µà®´à®¿ வாரதà¯à®¤à¯ˆ கழி" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "ஒர௠சூரிய தினதà¯à®¤à¯ˆ கழிகà¯à®•à®µà¯à®®à¯" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "ஒர௠சூரிய மணி நேரதà¯à®¤à¯ˆ கழி" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "ஒர௠சூரிய வாரதà¯à®¤à¯ˆ கழிகà¯à®•à®µà¯à®®à¯" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "காடà¯à®šà®¿ கà¯à®£à®™à¯à®•à®³à¯" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "கிடைமடà¯à®Ÿà®®à®¾à®• காடà¯à®šà®¿à®¯à¯ˆ திரà¯à®ªà¯à®ªà¯" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "à®®à¯à®´à¯à®¤à¯à®¤à®¿à®°à¯ˆ நிலை" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "வளிமணà¯à®Ÿà®²à®®à¯" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "திசைவில௠கடà¯à®Ÿà®®à¯" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "சிறபà¯à®ªà®¿à®¯à®²à¯à®ªà¯à®ªà¯ பà¯à®³à¯à®³à®¿à®•à®³à¯" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "விணà¯à®®à¯€à®©à¯ கà¯à®´à¯ கலை" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "விணà¯à®®à¯€à®©à¯ கà¯à®´à¯ எலà¯à®²à¯ˆà®•à®³à¯" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "விணà¯à®®à¯€à®©à¯ கà¯à®´à¯ விவரகà¯à®•à¯à®±à®¿à®ªà¯à®ªà¯à®•à®³à¯" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "நடà¯à®šà®¤à¯à®¤à®¿à®°à®•à¯à®•à¯‚டà¯à®Ÿ கோடà¯à®•à®³à¯" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "பினà¯à®©à®£à®¿ நெபà¯à®²à®¾ படஙà¯à®•à®³à¯" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "கிரகணதà¯à®¤à®¿à®±à¯à®•à¯à®°à®¿à®¯à®•à¯‹à®Ÿà¯" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "பூமதà¯à®¤à®¿à®¯ ரேகை" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "மதà¯à®¤à®¿à®¯à®•à¯‹à®Ÿà¯à®Ÿà®¿à®±à¯à®•à¯à®°à®¿à®¯ கடà¯à®Ÿà®®à¯" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "பூமதà¯à®¤à®¿à®¯ ரேகை J2000 கடà¯à®Ÿà®®à¯" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "மூட௠பனி" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "அணà¯à®Ÿ கடà¯à®Ÿà®®à¯" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "தரை" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "உசà¯à®šà®¨à¯†à®Ÿà¯à®™à¯à®•à¯‹à®Ÿà¯" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "நெபà¯à®³à®¾à®•à¯à®•à®³à¯" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "இரவ௠நிலை" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "கோள௠விவரசà¯à®šà¯€à®Ÿà¯à®Ÿà¯" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "கோளà¯à®•à®³à®¿à®©à¯ கோளபà¯à®ªà®¾à®¤à¯ˆ" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "கோளà¯à®•à®³à®¿à®©à¯ சà¯à®µà®Ÿà¯" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "நடà¯à®šà®¤à¯à®¤à®¿à®°à®™à¯à®•à®³à¯" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "செஙà¯à®•à¯à®¤à¯à®¤à®¾à®• காடà¯à®šà®¿à®¯à¯ˆ திரà¯à®ªà¯à®ªà¯" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "இதர வகை" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "வெளியேறà¯" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "திரைபà¯à®ªà®¿à®Ÿà®¿à®ªà¯à®ªà®¿à®©à¯ˆ சேமி" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "அசைவ௠மறà¯à®±à¯à®®à¯ தேரà¯à®µà¯" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "தேரà¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ பொரà¯à®³à¯ˆ மதà¯à®¤à®¿à®¯à®ªà®Ÿà¯à®¤à¯" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "தேரà¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ கோளை தொடகà¯à®• கோளாக அமை" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "பொரà¯à®³à¯ˆ பினà¯à®¤à¯Šà®Ÿà®°à¯" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "தேரà¯à®µà¯ செயà¯à®¯à®ªà¯à®ªà®Ÿà¯à®Ÿ பொரà¯à®³à¯ˆ பெரிதாகà¯à®•à¯" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "பெரிதாகà¯à®•à¯" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "கோண அளவà¯" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "திசைகà¯à®•à®¾à®Ÿà¯à®Ÿà®¿ கà¯à®±à®¿à®•à®³à¯" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "செயறà¯à®•à¯ˆà®•à¯à®•à¯‹à®³à¯ கடà¯à®Ÿà®®à¯ˆà®ªà¯à®ªà¯ ஜனà¯à®©à®²à¯" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "செயறà¯à®•à¯ˆà®•à¯à®•à¯‹à®³à¯ கà¯à®±à®¿à®ªà¯à®ªà¯à®•à®³à¯" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "செயறà¯à®•à¯ˆà®•à¯à®•à¯‹à®³à¯ விவரசà¯à®šà¯€à®Ÿà¯à®Ÿà¯à®•à®³à¯" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "ஸà¯à®•à®¿à®°à®¿à®ªà¯à®Ÿà¯à®•à®³à¯" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "வடிவமைபà¯à®šà¯à®šà®¾à®³à®°à®®à¯" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "தேதி/நேரம௠சாளரமà¯" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "உதவிசà¯à®šà®¾à®³à®°à®®à¯" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "இரà¯à®ªà¯à®ªà®¿à®Ÿà®šà¯à®šà®¾à®³à®°à®®à¯" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "தேடà¯à®¤à®²à¯ சாளரமà¯" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "வானம௠மறà¯à®±à¯à®®à¯ பாரà¯à®µà¯ˆ விரà¯à®ªà¯à®ªà®™à¯à®•à®³à¯ ஜனà¯à®©à®²à¯" @@ -3395,7 +3571,7 @@ msgstr "பà¯à®¤à¯à®ªà¯à®ªà®¿" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "இரà¯à®ªà¯à®ªà®¿à®Ÿà®®à¯" @@ -3411,10 +3587,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "நீகà¯à®•à¯" @@ -3423,7 +3599,7 @@ msgstr "படà¯à®Ÿà®¿à®¯à®²à®¿à®²à¯ சேரà¯" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "அடà¯à®šà®°à¯‡à®•à¯ˆ:" @@ -3434,12 +3610,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "தீரà¯à®•à®°à¯‡à®•à¯ˆ:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "கà¯à®¤à¯à®¤à¯à®¯à®°à®®à¯:" @@ -3463,363 +3639,407 @@ msgid "Planet:" msgstr "கோளà¯:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "பொரà¯à®³à¯ˆà®•à¯ கணà¯à®Ÿà¯à®ªà®¿à®Ÿà®¿" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "பொரà¯à®³à¯ அலà¯à®²à®¤à¯ இடதà¯à®¤à¯ˆ தேடவà¯à®®à¯" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "à®à®¯à¯‹à®Ÿà®¾" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "ஆலà¯à®ªà®¾" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "பீடà¯à®Ÿà®¾" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "காமா" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "டெலà¯à®Ÿà®¾" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "எபà¯à®šà®¿à®²à®¾à®©à¯" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "ஜெடா" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "எடா" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "தீடà¯à®Ÿà®¾" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "கபà¯à®ªà®¾" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "லாமà¯à®ªà¯à®Ÿà®¾" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "à®®à¯à®¯à¯‚" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "நியூ" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ஜை" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "ஒமிகà¯à®°à®¾à®©à¯" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "பை" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ரோ" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "சிகà¯à®®à®¾" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "டாவà¯" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "அபà¯à®šà®¿à®²à®¾à®©à¯" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "ஃபை" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "சை" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "ஒமேகா" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "பொரà¯à®³à¯" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "இடமà¯" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "படà¯à®Ÿà®¿à®¯à®²à¯à®•à®³à¯" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "விரà¯à®ªà¯à®ªà®™à¯à®•à®³à¯" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "படà¯à®Ÿà®¿à®¯à®²à¯à®•à®³à¯" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "விரà¯à®ªà¯à®ªà®™à¯à®•à®³à¯" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "பாரà¯à®µà¯ˆà®¯à®¿à®Ÿà¯" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "வானமà¯" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "கà¯à®±à®¿à®¯à®¿à®Ÿà¯à®¤à®²à¯" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "நிலகà¯à®•à®¾à®Ÿà¯à®šà®¿" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "கோளà¯à®•à®³à¯" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "கோள௠மறà¯à®±à¯à®®à¯ தà¯à®£à¯ˆà®•à¯à®•à¯‹à®³à¯" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "கோளà¯à®•à®³à¯ˆà®•à¯ காடà¯à®Ÿà¯" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "கோள௠கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà¯ˆ காடà¯à®Ÿà¯" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "கோள௠சà¯à®±à¯à®±à¯à®ªà®¾à®¤à¯ˆà®¯à¯ˆ காடà¯à®Ÿà¯" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "ஒளி வேகதà¯à®¤à¯ˆ ஒபà¯à®ªà¯à®°à¯à®µà®¾à®•à¯à®•à¯" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "நிலவின௠அளவà¯" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "வளிமணà¯à®Ÿà®²à®¤à¯à®¤à¯ˆ காடà¯à®Ÿà¯" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "ஒளி மாசà¯" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "சாரà¯à®¨à¯à®¤ அளவà¯à®•à¯‹à®²à¯" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "மினà¯à®®à®¿à®©à¯à®ªà¯à®ªà¯" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "பிரகாசமான பொரà¯à®³à¯ தெரியà¯à®®à¯ பொழà¯à®¤à¯ மஙà¯à®•à®³à®¾à®© நடà¯à®šà®¤à¯à®¤à®¿à®°à®¤à¯à®¤à¯ˆ மஙà¯à®•à®®à®¾à®•à¯à®•à®µà¯à®®à¯" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "எரிநடà¯à®šà®¤à¯à®¤à®¿à®°à®™à¯à®•à®³à¯" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "நடà¯à®šà®¤à¯à®¤à®¿à®°à®•à¯à®•à¯‚டà¯à®Ÿà®®à¯" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "கோடà¯à®•à®³à¯ˆ காடà¯à®Ÿà¯" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "அடà¯à®Ÿà®µà®£à¯ˆà®¯à¯ˆ காணà¯à®ªà®¿à®•à¯à®•à®µà¯à®®à¯" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "எலà¯à®²à¯ˆà®¯à¯ˆ காடà¯à®Ÿà¯" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "landscapeகà¯à®•à®³à¯ˆ சேரà¯/நீகà¯à®•à¯..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "நிலதà¯à®¤à¯ˆ காடà¯à®Ÿà¯" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "à®®à¯à®Ÿà¯à®ªà®©à®¿à®¯à¯ˆ காடà¯à®Ÿà¯" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "சாரà¯à®¨à¯à®¤ கிரகதà¯à®¤à¯ˆà®¯à¯à®®à¯ அதன௠இடதà¯à®¤à¯ˆà®¯à¯à®®à¯ பயனà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "பாரà¯à®•à¯à®•à®•à¯à®•à¯‚டியதà¯" @@ -3869,7 +4089,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿ பொரà¯à®³à®¿à®©à¯ விவரமà¯" @@ -3885,11 +4105,8 @@ msgid "Display no information" msgstr "தகவலà¯à®•à®³à¯ˆ காடà¯à®Ÿ வேணà¯à®Ÿà®¾à®®à¯" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "எதà¯à®µà¯à®®à®¿à®²à¯à®²à¯ˆ" @@ -4031,7 +4248,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "தொடகà¯à®•à¯ தேதி மறà¯à®±à¯à®®à¯ நேரமà¯" @@ -4043,182 +4260,192 @@ msgid "Other:" msgstr "பிற" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "நிகழ௠காலதà¯à®¤à¯ˆ உபயோகி" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "ஸà¯à®Ÿà¯†à®²à¯à®²à¯†à®°à®¿à®¯à®¤à¯à®¤à¯ˆ கணà¯à®£à®¿à®¯à®¿à®©à¯ தேதி மறà¯à®±à¯à®®à¯ நேரதà¯à®¤à®¿à®±à¯à®•à¯ தொடஙà¯à®•à®µà¯à®®à¯" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "அமைபà¯à®ªà¯ தேதி மறà¯à®±à¯à®®à¯ நேரமà¯" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "கணிணி தேதி:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "பà¯à®²à®¾à®¨à®¿à®Ÿà¯‡à®°à®¿à®¯à®®à¯ விரà¯à®ªà¯à®ªà®¤à¯à®¤à¯‡à®°à¯à®µà¯" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "ஒனà¯à®±à¯ˆ சொடà¯à®•à¯à®•à¯à®®à¯ பொழà¯à®¤à¯ மறà¯à®± விணà¯à®®à¯€à®£à¯ கூடà¯à®Ÿà®¤à¯à®¤à¯ˆ மறைகà¯à®•à®µà¯à®®à¯" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "ஒர௠விணà¯à®®à¯€à®£à¯ கூடà¯à®Ÿà®¤à¯à®¤à¯ˆ தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•à®µà¯à®®à¯" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "திரைவெடà¯à®Ÿà¯à®•à®³à¯" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "திரைவெடà¯à®Ÿà¯ கோபà¯à®ªà®•à®®à¯" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "நிறஙà¯à®•à®³à¯ˆ பà¯à®°à®Ÿà¯à®Ÿà¯" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "பதிவிறகà¯à®•à®¤à¯à®¤à¯ˆ தொடஙà¯à®• இஙà¯à®•à¯‡ சொடà¯à®•à¯à®•à®µà¯à®®à¯" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "மேலà¯à®®à¯ நிறைய நடà¯à®šà®¤à¯à®¤à®¿à®°à®¤à¯à®¤à¯ˆ பாரà¯à®•à¯à®• இநà¯à®¤ கோபà¯à®ªà¯ˆ பதிவிறகà¯à®•à®µà¯à®®à¯" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "பதிவிறகà¯à®•à®¤à¯à®¤à¯ˆ மறà¯à®¤à¯Šà®Ÿà®•à¯à®•à®®à¯ செயà¯à®¯à®µà¯à®®à¯" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "மற௠மà¯à®¯à®±à¯à®šà®¿" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "பதிவிறகà¯à®•à®¤à¯à®¤à¯ˆ நிறà¯à®¤à¯à®¤à®µà¯à®®à¯. நீஙà¯à®•à®³à¯ பிறக௠கூட மறà¯à®¤à¯Šà®Ÿà®•à¯à®•à®®à¯ செயà¯à®¯à®²à®¾à®®à¯" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "ரதà¯à®¤à¯" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "தà¯à®µà®•à¯à®• நிலையில௠à®à®±à¯à®±à®µà¯à®®à¯" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "வடிவாகà¯à®•à¯" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "à®®à¯à®•à¯à®•à®¿à®¯à®®à¯" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "உலாவலà¯" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "கரà¯à®µà®¿à®•à®³à¯" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "செரà¯à®•à®²à¯à®•à®³à¯" @@ -4386,176 +4613,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "தொலைநோகà¯à®•à®¿ #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "தொலைநோகà¯à®•à®¿ #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "உரà¯à®ªà¯à®ªà¯†à®°à¯à®•à¯à®•à®®à¯: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "அளவ௠%1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4627,64 +4854,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "சà¯à®´à®±à¯à®šà®¿: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "பதிபà¯à®ªà¯" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4692,7 +4924,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4703,14 +4935,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4719,305 +4951,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "இடைமà¯à®•à®ªà¯à®ªà¯" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "பொதà¯" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "சேரà¯" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "பெயரà¯:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "இரà¯à®•à®£à¯ நோகà¯à®•à®¿à®•à®³à¯" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "உணரிகளà¯" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "தொலைநோகà¯à®•à®¿à®•à®³à¯" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "விடà¯à®Ÿà®®à¯" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "கிடைமடà¯à®Ÿà®®à®¾à®• திரà¯à®ªà¯à®ªà¯" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "செஙà¯à®•à¯à®¤à¯à®¤à®¾à®• திரà¯à®ªà¯à®ªà¯" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "தà¯à®£à¯ˆ கோளà¯à®•à®³à¯" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "கà¯à®¤à¯à®¤à®¿à®¯à®°à®®à¯ (கி.மி.):%1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "சையரà¯à®•à¯ˆà®•à¯à®•à¯‹à®³à¯ மறைகà¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "சையரà¯à®•à¯ˆà®•à¯à®•à¯‹à®³à¯ தெனà¯à®ªà®Ÿà®µà®¿à®²à¯à®²à¯ˆ" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "பயனரà¯à®•à®³à¯à®•à¯à®•à®¾à®© கà¯à®±à®¿à®ªà¯à®ªà¯à®•à®³à¯" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5025,25 +5326,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5051,17 +5352,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "பà¯à®¤à®¿à®¯ செயறà¯à®•à¯ˆà®•à¯‹à®³à¯à®•à®³à¯ˆ சேரà¯à®¤à¯à®¤à®²à¯" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5069,41 +5370,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "தொழிலà¯à®¨à¯à®Ÿà¯à®ª கà¯à®±à®¿à®ªà¯à®ªà¯à®•à®³à¯" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "மேலà¯à®®à¯ விபரஙà¯à®•à®³à¯à®•à¯à®•à¯ இநà¯à®¤ %1 ஆவணதà¯à®¤à¯ˆà®ªà¯ %2 பாரà¯à®•à¯à®•à®µà¯à®®à¯" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "இணைபà¯à®ªà¯à®•à®³à¯" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5111,338 +5414,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "கேளà¯à®µà®¿à®•à®³à¯ இரà¯à®¨à¯à®¤à®¾à®²à¯ அதறà¯à®•à®¾à®© பதிலை %1இஙà¯à®•à¯‡%2 பெறலாமà¯" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "இனைய நிகழà¯à®¨à®¿à®²à¯ˆà®ªà®Ÿà¯à®¤à¯à®¤à®²à¯ à®®à¯à®Ÿà®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "இபà¯à®ªà¯Šà®´à¯à®¤à¯ பà¯à®¤à¯à®ªà¯à®ªà®¿à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®•à®¿à®±à®¤à¯" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "அடà¯à®¤à¯à®¤ நிகழà¯à®¨à®¿à®²à¯ˆà®ªà®Ÿà¯à®¤à¯à®¤à®²à¯:<1 நிமிடமà¯" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "அடà¯à®¤à¯à®¤ நிகழà¯à®¨à®¿à®²à¯ˆà®ªà®Ÿà¯à®¤à¯à®¤à®²à¯:%1 நிமிடமà¯" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "அடà¯à®¤à¯à®¤ நிகழà¯à®¨à®¿à®²à¯ˆà®ªà®Ÿà¯à®¤à¯à®¤à®²à¯:%1 மணிநேரஙà¯à®•à®³à¯" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "இபà¯à®ªà¯‹à®¤à¯ பà¯à®¤à¯à®ªà¯à®ªà®¿" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "கோபà¯à®ªà¯à®•à®³à®¿à®²à¯ இரà¯à®¨à¯à®¤à¯ பà¯à®¤à¯à®ªà¯à®ªà®¿" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "பà¯à®¤à¯à®ªà¯à®ªà®¿à®¤à¯à®¤à®²à¯ பிழை" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "%1/%2 செயறà¯à®•à¯ˆà®•à¯‹à®³à¯(களà¯) பà¯à®¤à¯à®ªà®¿à®•à®ªà¯à®ªà®Ÿà®©; %3 ஠காணவிலà¯à®²à¯ˆ" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[பà¯à®¤à®¿à®¯ மூலமà¯]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "இபà¯à®ªà¯‹à®¤à¯ பà¯à®¤à¯à®ªà¯à®ªà®¿" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "கோபà¯à®ªà¯à®•à®³à®¿à®²à¯ இரà¯à®¨à¯à®¤à¯ பà¯à®¤à¯à®ªà¯à®ªà®¿" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[அனைதà¯à®¤à¯à®®à¯]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "தரவà¯à®•à®³à¯ இறகà¯à®•à®ªà¯à®ªà®Ÿà¯à®•à®¿à®±à®¤à¯" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "செயறà¯à®•à¯ˆà®•à¯‹à®³à¯à®•à®³à¯ கடà¯à®Ÿà®®à¯ˆà®ªà¯à®ªà¯" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "இனைய மூலஙà¯à®•à®³à®¿à®²à¯ இரà¯à®¨à¯à®¤à¯ நிகழà¯à®¨à®¿à®²à¯ˆà®ªà®Ÿà¯à®¤à¯à®¤à¯" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "கடைசி பà¯à®¤à¯à®ªà¯à®ªà®¿à®¤à¯à®¤à®²à¯:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "விளகà¯à®•à®šà¯à®šà¯€à®Ÿà¯à®Ÿà¯à®•à®³à¯" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "பகà¯à®ªà¯à®ªà¯à®•à®³à®¿à®©à¯ எணà¯à®£à®¿à®•à¯à®•à¯ˆ:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "பகà¯à®ªà¯à®ªà®¿à®©à¯ நீளம௠(s):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "அமைவà¯à®•à®³à¯" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "மேலà¯à®®à¯ செயறà¯à®•à¯ˆà®•à¯à®•à¯‹à®³à¯à®•à®³à¯ˆ கூடà¯à®Ÿà®µà¯à®®à¯" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿ செயறà¯à®•à¯ˆà®•à¯à®•à¯‹à®³à¯ˆ நீகà¯à®•à®µà¯à®®à¯" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "மாறà¯à®±à®™à¯à®•à®³à¯ˆ சேமி" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ செயறà¯à®•à¯ˆà®•à¯‹à®³à¯(களை) காடà¯à®Ÿà¯" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "காடà¯à®Ÿà®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "சà¯à®±à¯à®±à¯à®ªà¯à®ªà®¾à®¤à¯ˆ" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "விவரணமà¯:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "கà¯à®´à¯à®•à¯à®•à®³à¯:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿ செயறà¯à®•à¯ˆà®•à¯à®•à¯‹à®³à¯ˆ நீகà¯à®•à®µà¯à®®à¯" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "மேலà¯à®®à¯ செயறà¯à®•à¯ˆà®•à¯à®•à¯‹à®³à¯à®•à®³à¯ˆ கூடà¯à®Ÿà®µà¯à®®à¯" - -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "மாறà¯à®±à®™à¯à®•à®³à¯ˆ சேமி" - -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "பà¯à®¤à®¿à®¯ மூலதà¯à®¤à¯ˆ சேரà¯à®•à¯à®•à®µà¯à®®à¯" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿ மூலஙà¯à®•à®³à¯ˆ நீகà¯à®•à®µà¯à®®à¯" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "மூலஙà¯à®•à®³à¯" @@ -5478,22 +5824,22 @@ msgid "Discard" msgstr "கைவிடà¯" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "தொலைநோகà¯à®•à®¿ கடà¯à®Ÿà¯à®ªà¯à®ªà®¾à®Ÿà¯" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤ பொரà¯à®³à®¿à®©à¯ மீத௠#%1 தொலைநோகà¯à®•à®¿à®¯à¯ˆ நகரà¯à®¤à¯à®¤à¯" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5878,62 +6224,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "ஜனவரி" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "பிபà¯à®°à®µà®°à®¿" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "மே" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "ஜூனà¯" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "ஜூலை" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "ஆகஸà¯à®Ÿà¯" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "செபà¯à®Ÿà®®à¯à®ªà®°à¯" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "அகà¯à®Ÿà¯‡à®¾à®ªà®°à¯" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "நவமà¯à®ªà®°à¯" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "டிசமà¯à®ªà®°à¯" @@ -6087,7 +6433,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6105,7 +6451,7 @@ msgstr "24-மணி வடிவமைபà¯à®ªà¯" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "தேதி காடà¯à®šà®¿ வடிவமைபà¯à®ªà¯" @@ -6121,154 +6467,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "பயனர௠உரை இடைமà¯à®•à®®à¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "தறà¯à®ªà¯‹à®¤à®¯ தேதி/நேரமà¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "நேர மணà¯à®Ÿà®²à®¤à¯à®¤à¯ˆ அமைகà¯à®•à®µà¯à®®à¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "கணினி" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "மொழி" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "நடà¯à®šà®¤à¯à®¤à®¿à®°à®™à¯à®•à®³à¯ˆ காடà¯à®Ÿà¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "வணà¯à®£à®™à¯à®•à®³à¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "நடà¯à®šà®¤à¯à®¤à®¿à®° கூடà¯à®Ÿà®¤à¯à®¤à®¿à®©à¯ பெயரà¯à®•à®³à¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "சிறபà¯à®ªà¯€à®Ÿà¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "நிரà¯à®µà®¾à®•à®®à¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "தறà¯à®ªà¯‹à®¤à®¯ கடà¯à®Ÿà®®à¯ˆà®ªà¯à®ªà¯ˆ சேமிகà¯à®•à®µà¯à®®à¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "பணி நிறà¯à®¤à¯à®¤à®®à¯" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6301,22 +6647,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6485,36 +6831,43 @@ msgid "Solar System" msgstr "சூரிய மணà¯à®Ÿà®²à®®à¯" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "பெர௠வெடà¯à®ªà¯à®ªà¯" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "பெர௠வெடà¯à®ªà¯à®ªà¯ வகை: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6532,7 +6885,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6546,14 +6899,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6561,8 +6914,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6580,29 +6934,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "இனைய மூலஙà¯à®•à®³à®¿à®²à¯ இரà¯à®¨à¯à®¤à¯ நிகழà¯à®¨à®¿à®²à¯ˆà®ªà®Ÿà¯à®¤à¯à®¤à¯" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6618,51 +7049,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6782,11 +7223,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6794,137 +7235,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6932,49 +7377,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6990,185 +7524,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7462,6 +7990,9 @@ #~ msgid "Form" #~ msgstr "படிவமà¯(Form)" +#~ msgid "Nebulas" +#~ msgstr "நெபà¯à®³à®¾à®•à¯à®•à®³à¯" + #~ msgid "Sidereal" #~ msgstr "மீனà¯à®µà®´à®¿" @@ -7480,6 +8011,9 @@ #~ msgid "Update me via Internet: " #~ msgstr "எனà¯à®©à¯ˆ இணையம௠மà¯à®²à®®à¯ நிகழà¯à®¨à®¿à®²à¯ˆà®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤ " +#~ msgid "Nebulas background images" +#~ msgstr "பினà¯à®©à®£à®¿ நெபà¯à®²à®¾ படஙà¯à®•à®³à¯" + #~ msgid "Planets labels" #~ msgstr "கிரக விவரக௠கà¯à®±à®¿à®ªà¯à®ªà¯à®•à®³à¯" @@ -7503,6 +8037,10 @@ #~ msgstr "சரிவà¯à®¤à¯à®¤à®©à¯à®®à¯ˆ (தேதியà¯à®Ÿà¯ˆà®¯à®¤à¯): %1" #, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "%1/%2 செயறà¯à®•à¯ˆà®•à¯‹à®³à¯(களà¯) பà¯à®¤à¯à®ªà®¿à®•à®ªà¯à®ªà®Ÿà®©; %3 ஠காணவிலà¯à®²à¯ˆ" + +#, qt-format #~ msgid "Distance: %1 kpc (%2 ly)" #~ msgstr "தொலைவà¯: %1 kpc (%2 ly)" diff -Nru stellarium-0.12.1/po/stellarium/te.po stellarium-0.12.4/po/stellarium/te.po --- stellarium-0.12.1/po/stellarium/te.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/te.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-01-07 10:37+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Telugu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:19+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "మేరీడియనà±" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "రచయిత " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "à°ªà±à°°à°¦à±‡à°¶à°‚: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "à°—à±à°°à°¹à°‚: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "à°°à°•à°‚: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "à°¸à±à°¥à±‚లతà±à°µà°®à±: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "పరిమాణం: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "పాలపà±à°‚à°¤" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "నకà±à°·à°¤à±à°° మేఘం నెబà±à°¯à±à°²" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "ఉదà±à°—ార నకà±à°·à°¤à±à°° మేఘం నెబà±à°¯à±à°²" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "నకà±à°·à°¤à±à°° ధూళి మేఘం" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "తెలియని" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "దూరం: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "దూరం: %1 కాంతి సంవతà±à°¸à°°à°¾à°²à±" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "రచయిత" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "లైసెనà±à°¸à±" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "విండోసà±" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "à°¸à±à°ªà±‡à°¸à±" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "వివరణ లేదà±" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "సూరà±à°¯à±à°¡à±" @@ -1209,12 +1320,12 @@ msgstr "భూమి" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "à°šà°‚à°¦à±à°°à±à°¡à±" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "à°•à±à°œà±à°¡à±" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "శని" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "కొరియనà±" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "తేది మరియౠసమయం" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "à°ªà±à°°à°¦à°°à±à°¶à°¨ ఎంపికలà±" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "పొగమంచà±" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "à°šà±à°•à±à°•à°²à±" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "ఇతరతà±à°°à°¾" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "à°¸à±à°µà°°à±‚పణపౠవిండోసà±" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "తేదీ/సమయపౠవిండోసà±" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "సహాయపౠవిండోసà±" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "వెతà±à°•à±à°¡à± విండోసà±" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "à°ªà±à°°à°¾à°‚తం" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "తొలగించà±" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "à°…à°•à±à°·à°¾à°‚శం:" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "రేఖాంశం:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "à°—à±à°°à°¹à°‚:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "ఎంపికలà±" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "ఎంపికలà±" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "ఆకాశం" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "భూదృశà±à°¯à°‚" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "à°—à±à°°à°¹à°¾à°²à±" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "à°—à±à°°à°¹à°¾à°²à± మరియౠఉపగà±à°°à°¹à°¾à°²à±" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "à°—à±à°°à°¹à°¾à°²à°¨à°¿ చూపించà±" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "à°—à±à°°à°¹à°¾à°² à°•à°•à±à°·à±à°¯à°²à°¨à°¿ చూపించà±" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "హదà±à°¦à±à°²à± చూపించà±" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "à°à°¦à±€à°•à°¾à°¦à±" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "ఇతర:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "తెరపటà±à°²à±" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "à°ªà±à°°à°§à°¾à°¨" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "పనిమà±à°Ÿà±à°²à±" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "à°ªà±à°²à°—à°¿à°¨à±à°²à±" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/tg.po stellarium-0.12.4/po/stellarium/tg.po --- stellarium-0.12.1/po/stellarium/tg.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/tg.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2013-01-07 11:03+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Tajik \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:19+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Меридиан" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Мадори Офтоб" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Экватор" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Уфуқ" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Муаллиф: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Ðндоза: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Роҳи Қаҳкашон" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ÐошиноÑ" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "Ñитора" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Хато" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Муаллиф" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "ТамоÑ" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Муаллиф" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ЛитÑензиÑ" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Офтоб" @@ -1209,12 +1320,12 @@ msgstr "Замин" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Моҳ" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Миррих" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Зуҳал" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "КореÑгӣ" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Лакота" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Маори" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Ðаваҷо" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Тӯфон" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Ðморатҳои Муттаҳидаи Ðрабӣ" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Ðнтарктика" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркина-ФаÑÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "БолғориÑ" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Баҳраин" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Бурундии" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Ҷазираҳои Бермуд" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Ҷазираҳои Буве" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "БоÑтвана" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Ҷумҳурии Демократии Конго" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Ҷумҳурии Ðфрикои Марказӣ" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Ҷумҳурии Конго" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "ШвейцариÑ" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Ҷазираҳои Кук" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Чин" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "КоломбиÑ" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Ð¡ÐµÑ€Ð±Ð¸Ñ Ð²Ð° Монтенего" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Ò·. Мавлуди ИÑо" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "РеÑпубликаи Чехӣ" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Джибути" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Денмарк" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Ҷумҳурии Доминикан" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Саҳрои Шарқӣ" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Ҷазираҳои Фолкленд" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "МикронезиÑ" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Ҷазираи Фарер" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "ФранÑиÑ" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ҶорҷиÑ" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Гуанаи ФранÑузӣ" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Ҷабалуттарик" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "ГвинеÑи Экваториалӣ" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Гуана" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Гонконг" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "ТерриториÑи Ð‘Ñ€Ð¸Ñ‚Ð°Ð½Ð¸Ñ Ð¸Ð½ УқьёнуÑии Хинд" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Ӯрдон" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "ЯпониÑ" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "КирғизÑтон" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Комбоҷа" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Кирибати" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Ҷазираҳои Камар" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Ҷумҳурии Халқии Демократии КореÑ" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Ҷумҳурии КореÑ" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Кувайт" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "ЛаоÑÓ£" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Ливан" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Сент-ЛюÑиÑ" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "ҶумҳуриÑти ЛибиÑи Ðраб" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Морокко" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Малдав" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Ҷазираҳои Маршалл" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "МакедониÑ" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Мали" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "МьÑнма" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "МонголиÑ" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Макао" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Ҷазираҳои Шимолии Маршал" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Ҷазираҳои Малдив" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Малави" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Ðаури" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Ð—ÐµÐ»Ð°Ð½Ð´Ð¸Ñ Ðав" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "ПолинезиÑи ФраÑиÑгӣ" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Папуа-ГвинеÑи Ðав" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "ПуÑрто-Рико" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Палау" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Ренион" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "РумыниÑ" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "ФедератÑиÑи РуÑиÑ" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "ÐрабиÑтони Суудӣ" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Ò·. Сейшели" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Судан" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ШвеÑиÑ" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "СÑловакиÑ" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Серра Леона" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Сомали" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Сан-Томе ва ПринÑипи" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Ðл-Салвадор" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Ҷумҳурии СуриÑи Ðраб" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Свазиланд" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Ð¢ÐµÑ€ÐºÑ Ð²Ð° КайкоÑ" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Тайланд" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Шарқи Тимор" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ТуркмениÑтон" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ТуниÑиÑ" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Тонгавӣ" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "ТанзаниÑ" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "Штатҳои Муттаҳидаи Ðмрико" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Ҷазираҳои Бритониёвӣ Виргинӣ" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Ветнам" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Йемен" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Майотта" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ЮгоÑлавиÑ" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Ðфрикои Ҷанубӣ" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Дата и времÑ" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/th.po stellarium-0.12.4/po/stellarium/th.po --- stellarium-0.12.1/po/stellarium/th.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/th.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,31 +7,31 @@ msgstr "" "Project-Id-Version: Thai for stellarium 0.8.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-12 03:30+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-12 04:02+0000\n" "Last-Translator: Worachate Boonplod \n" "Language-Team: MicKi Alone \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:19+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: THAILAND\n" "X-Poedit-Language: Thai\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "เมริเดียน" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "สุริยวิถี" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "เส้นศูนย์สูตร" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "ขอบฟ้า" @@ -39,46 +39,46 @@ msgid "Galactic Plane" msgstr "ระนาบดาราจัà¸à¸£" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "ผู้สร้าง: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "สถานที่: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 ม." -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "ดาวเคราะห์: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "ชนิด: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "โชติมาตร: %1 (จางลงไปที่: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "โชติมาตร: %1" @@ -88,114 +88,114 @@ msgid "Size: %1" msgstr "ขนาด: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "ดาราจัà¸à¸£" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "à¸à¸£à¸°à¸ˆà¸¸à¸à¸”าวเปิด" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "à¸à¸£à¸°à¸ˆà¸¸à¸à¸”าวทรงà¸à¸¥à¸¡" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "เนบิวลา" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "เนบิวลาดาวเคราะห์" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "เนบิวลามืด" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "à¸à¸£à¸°à¸ˆà¸¸à¸à¸—ี่เà¸à¸µà¹ˆà¸¢à¸§à¸‚้องà¸à¸±à¸šà¸à¸¥à¸¸à¹ˆà¸¡à¹à¸à¹Šà¸ª" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ไม่มีข้อมูล" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "ยังไม่ได้ระบุในเอà¸à¸ªà¸²à¸£" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "โชติมาตรสัมบูรณ์: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "พิà¸à¸±à¸”สุริยวิถีจาà¸à¸œà¸´à¸§à¹‚ลภ(ของวัน): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "ความเอียงของสุริยวิถี (ของวัน, สำหรับโลà¸): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "ระยะห่าง: %1 หน่วยดาราศาสตร์ (%2 à¸à¸¡.)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "ระยะห่าง: %1 หน่วยดาราศาสตร์" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "เส้นผ่านศูนย์à¸à¸¥à¸²à¸‡à¸›à¸£à¸²à¸à¸: %1, วงà¹à¸«à¸§à¸™: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "เส้นผ่านศูนย์à¸à¸¥à¸²à¸‡à¸›à¸£à¸²à¸à¸: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "คาบดาราคติ: %1 วัน (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "วันดาราคติ: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "วันสุริยคติปานà¸à¸¥à¸²à¸‡: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "มุมดิถี: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "มุมห่างจาà¸à¸”วงอาทิตย์: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "ดิถี: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "ส่วนสว่าง: %1%" @@ -206,7 +206,7 @@ msgstr "ชื่อชั่วคราว: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "ดาวฤà¸à¸©à¹Œ" @@ -221,55 +221,135 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "โชติมาตรปราà¸à¸: %1 (โดยà¸à¸²à¸£à¸ªà¸¹à¸à¸«à¸²à¸¢à¹ƒà¸™à¸šà¸£à¸£à¸¢à¸²à¸à¸²à¸¨)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "ดาวà¹à¸›à¸£à¹à¸ªà¸‡à¸›à¸°à¸—ุ" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "ดาวà¹à¸›à¸£à¹à¸ªà¸‡à¹€à¸«à¸•à¸¸à¸à¸£à¸°à¹€à¸žà¸·à¹ˆà¸­à¸¡" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "ดาวà¹à¸›à¸£à¹à¸ªà¸‡à¹€à¸«à¸•à¸¸à¸à¸²à¸£à¸«à¸¡à¸¸à¸™" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "ดาวà¹à¸›à¸£à¹à¸ªà¸‡à¸£à¸¸à¸™à¹à¸£à¸‡" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "ระบบดาวคู่อุปราคา" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "ดาวà¹à¸›à¸£à¹à¸ªà¸‡" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "ดาวคู่" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "ชนิด : %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "โชติมาตร: %1 (จางลงไปที่: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "โชติมาตร : %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "พิสัยโชติมาตร: %1%2%3 (ระบบà¸à¸²à¸£à¸§à¸±à¸”à¹à¸ªà¸‡ : %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "พิสัยโชติมาตร: %1%2%3/%4 (ระบบà¸à¸²à¸£à¸§à¸±à¸”à¹à¸ªà¸‡: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "ชนิดสเปà¸à¸•à¸£à¸±à¸¡: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "ระยะทาง: %1 ปีà¹à¸ªà¸‡" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "à¹à¸žà¸£à¸±à¸¥à¹à¸¥à¸à¸‹à¹Œ: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "จางที่สุดเมื่อ: %1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "สว่างที่สุดเมื่อ: %1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "คาบ: %1 วัน" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "จางที่สุดครั้งถัดไป: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "สว่างที่สุดครั้งถัดไป: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "สัดส่วนของช่วงเวลาอุปราคา : %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "เวลาขึ้น : %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "ยานอวà¸à¸²à¸¨" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" +"à¸à¸²à¸£à¸•à¸£à¸§à¸ˆà¹à¸à¹‰à¸–ูà¸à¸›à¸´à¸”à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™ " +"ใช้ตัวเลือà¸à¸™à¸µà¹‰à¸à¹‡à¸•à¹ˆà¸­à¹€à¸¡à¸·à¹ˆà¸­à¸„ุณทราบดีว่าà¸à¸³à¸¥à¸±à¸‡à¸—ำอะไรอยู่!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " "Henriksson in his article Einstein's Theory of Relativity Confirmed by " "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" +"สูตรนี้มาจาภC. Schoch ใน ค.ศ. 1931 ซึ่ง G. Henriksson นำมาใช้ในบทความ " +"Einstein's Theory of Relativity Confirmed by Ancient Solar Eclipses " +"(%1) สำหรับข้อมูลเพิ่มเติม ให้ดู %2ที่นี่%3" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -278,7 +358,7 @@ "สมà¸à¸²à¸£à¹€à¸­à¸¡à¸žà¸´à¸£à¸´à¸„ัลนี้เผยà¹à¸žà¸£à¹ˆà¹‚ดย G. M. Clemence ในบทความ On the system of " "astronomical constants (%1)" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -291,14 +371,17 @@ "Formulae for Calculators à¹à¸¥à¸°à¸–ูà¸à¸™à¸³à¸¡à¸²à¹ƒà¸Šà¹‰à¹ƒà¸™à¹‚ปรà¹à¸à¸£à¸¡à¸„อมพิวเตอร์ SunTracker " "Pro" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" +"สูตรนี้เป็นรุ่นที่ได้รับà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸ˆà¸²à¸à¸ªà¸¹à¸•à¸£à¸‚อง IAU (ค.ศ. 1952) ซึ่งนำมาใช้ใน " +"Astronomical Ephemeris à¹à¸¥à¸° Canon of Solar Eclipses โดย " +"Mucke & Meeus (ค.ศ. 1983)" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -306,22 +389,27 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " "article The accelerations of the earth and moon from early astronomical " "observations (%1)." msgstr "" +"สมà¸à¸²à¸£à¸™à¸µà¹‰à¹€à¸œà¸¢à¹à¸žà¸£à¹ˆà¹‚ดย P. M. Muller à¹à¸¥à¸° F. R. Stephenson ในบทความ The " +"accelerations of the earth and moon from early astronomical " +"observations (%1)" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" +"สมà¸à¸²à¸£à¸™à¸µà¹‰à¹à¸œà¸¢à¹à¸žà¸£à¹ˆà¹‚ดย F. R. Stephenson ในบทความ Pre-Telescopic Astronomical " +"Observations (%1)" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -330,40 +418,49 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" +"สูตรนี้ใช้ใน Planetary Programs and Tables from -4000 to +2800 " +"(ค.ศ. 1986) โดย P. Bretagnon & L. Simon à¹à¸¥à¸°à¹ƒà¸™à¹‚ปรà¹à¸à¸£à¸¡ RedShift" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " "article Long-term changes in the rotation of the earth - 700 B.C. to " "A.D. 1980 (%1)." msgstr "" +"สูตรนี้เผยà¹à¸žà¸£à¹ˆà¹‚ดย F. R. Stephenson à¹à¸¥à¸° L. V. Morrison ในบทความ Long-term " +"changes in the rotation of the earth - 700 B.C. to A.D. 1980 (%1)" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." -msgstr "" +msgstr "สูตรนี้ใช้ในโปรà¹à¸à¸£à¸¡ Guide 7" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" +"สูตรนี้ใช้โดย F. Espenak ใน Fifty Year Canon of Solar Eclipses: 1986-" +"2035 (ค.ศ. 1987) à¹à¸¥à¸° Fifty Year Canon of Lunar Eclipses: 1986-" +"2035 (ค.ศ. 1989)" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" +"สูตรนี้ใช้โดย K.M. Borkowski (%1) จาà¸à¸à¸²à¸£à¸§à¸´à¹€à¸„ราะห์บันทึà¸à¸ªà¸¸à¸£à¸´à¸¢à¸¸à¸›à¸£à¸²à¸„า 31 ครั้ง " +"ระหว่าง 2137 ปี à¸à¹ˆà¸­à¸™à¸„ริสต์ศัà¸à¸£à¸²à¸Š ถึง ค.ศ. 1715" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -372,65 +469,79 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" +"สูตรนี้ใช้โดย M. Chapront-Touze & J. Chapront " +"ในทฤษฎีà¸à¸²à¸£à¹€à¸„ลื่อนที่ของดวงจันทร์ ELP 2000-85 รุ่นย่อ à¹à¸¥à¸°à¹ƒà¸™ Lunar Tables " +"and Programs from 4000 B.C. to A.D. 8000 (ค.ศ. 1991)" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " "article Long-Term Fluctuations in the Earth's Rotation: 700 BC to AD " "1990 (%1)." msgstr "" +"สูตรนี้เผยà¹à¸žà¸£à¹ˆà¹‚ดย F. R. Stephenson à¹à¸¥à¸° L. V. Morrison ในบทความ Long-Term " +"Fluctuations in the Earth's Rotation: 700 BC to AD 1990 (%1)" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" +"F. R. Stephenson เผยà¹à¸žà¸£à¹ˆà¸ªà¸¹à¸•à¸£à¸™à¸µà¹‰à¹ƒà¸™à¸«à¸™à¸±à¸‡à¸ªà¸·à¸­ Historical Eclipses and Earth's " +"Rotation (%1)" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" +"JPL Solar System Dynamics Group ของ NASA Jet Propulsion Laboratory " +"ใช้สูตรนี้บนเว็บไซต์ %1JPL Horizons%2" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" +"สมà¸à¸²à¸£à¸žà¸«à¸¸à¸™à¸²à¸¡à¸—ี่เผยà¹à¸žà¸£à¹ˆà¹‚ดย J. Meeus à¹à¸¥à¸° L. Simons ในบทความ Polynomial " +"approximations to Delta T, 1620-2000 AD (%1)" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " "Calendrical Tabulations (2002). It is based on Jean Meeus' " "Astronomical Algorithms (1991)." msgstr "" +"E. M. Reingold & N. Dershowitz à¹à¸ªà¸”งสมà¸à¸²à¸£à¸žà¸«à¸¸à¸™à¸²à¸¡à¸™à¸µà¹‰à¹ƒà¸™ Calendrical " +"Calculations (3rd ed. 2007) à¹à¸¥à¸° Calendrical Tabulations (2002) " +"มีราà¸à¸à¸²à¸™à¸ˆà¸²à¸ Astronomical Algorithms (1991) ของ Jean Meeus" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -438,7 +549,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -447,7 +558,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -457,11 +568,27 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "ถูà¸à¹ƒà¸Šà¹‰à¹‚ดยปริยาย" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -469,34 +596,38 @@ msgstr "" "นี่คือสูตรà¸à¸³à¸¥à¸±à¸‡à¸ªà¸­à¸‡à¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£à¸„ำนวณ %1T โดยมีสัมประสิทธ์ตามที่ผู้ใช้à¸à¸³à¸«à¸™à¸”" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "เà¸à¸´à¸”ข้อผิดพลาด" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" -msgstr "" +msgstr "ไม่มีความหมายเมื่ออยู่นอà¸à¸Šà¹ˆà¸§à¸‡à¹€à¸§à¸¥à¸²à¸™à¸µà¹‰" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" +"ด้วยค่าผิดพลาดเฉลี่ยน้อยà¸à¸§à¹ˆà¸² 1 วินาที, ค่าผิดพลาดสูงสุด 1.9 วินาที, " +"à¹à¸¥à¸°à¹„ม่มีความหมายเมื่ออยู่นอà¸à¸Šà¹ˆà¸§à¸‡à¹€à¸§à¸¥à¸²à¸™à¸µà¹‰" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" -msgstr "" +msgstr "มีค่าเป็นศูนย์เมื่ออยู่นอà¸à¸Šà¹ˆà¸§à¸‡à¹€à¸§à¸¥à¸²à¸™à¸µà¹‰" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" +"ด้วยความà¹à¸¡à¹ˆà¸™à¸¢à¸³à¸›à¸£à¸à¸•à¸´à¸—ี่ 1 วินาที à¹à¸¥à¸°à¸¡à¸µà¸„่าเป็นศูนย์เมื่ออยู่นอà¸à¸Šà¹ˆà¸§à¸‡à¹€à¸§à¸¥à¸²à¸™à¸µà¹‰" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "ช่วงที่ใช้งานได้: ระหว่าง ค.ศ. %1 ถึง %2, %3" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "ช่วงที่ใช้งานได้: ระหว่าง ค.ศ. %1 ถึง %2" @@ -620,7 +751,7 @@ #: src/core/StelObject.cpp:111 #, qt-format msgid "Galactic longitude/latitude: %1/%2" -msgstr "" +msgstr "ลองจิจูด/ละติจูดดาราจัà¸à¸£ : %1/%2" #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:124 #: src/core/StelObject.cpp:127 @@ -662,52 +793,53 @@ msgid "Found" msgstr "พบ" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "เลือà¸à¹„ดเร็à¸à¸—อรีสำหรับเà¸à¹‡à¸šà¸ à¸²à¸žà¸«à¸™à¹‰à¸²à¸ˆà¸­" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "พื้นที่à¸à¸²à¸£à¸¡à¸­à¸‡à¹€à¸«à¹‡à¸™à¹€à¸£à¸´à¹ˆà¸¡à¸•à¹‰à¸™: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "ทิศทางà¸à¸²à¸£à¹€à¸£à¸´à¹ˆà¸¡à¸•à¹‰à¸™à¸‚องà¸à¸²à¸£à¸¡à¸­à¸‡à¸¡à¸¸à¸¡à¸—ิศ/มุมเงย: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "ผู้สร้าง" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "ติดต่อ" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "ผู้สร้าง" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "สัà¸à¸à¸²à¸­à¸™à¸¸à¸à¸²à¸•" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "สคริปต์ที่à¸à¸³à¸¥à¸±à¸‡à¸”ำเนินงานอยู่: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "สคริปต์ที่à¸à¸³à¸¥à¸±à¸‡à¸”ำเนินงานอยู่: [ไม่มี]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -715,16 +847,16 @@ "เสร็จสิ้นà¸à¸²à¸£à¸”าวน์โหลดà¹à¸„็ตตาล็อà¸à¸”าวใหม่!\n" "เริ่ม Stellarium ใหม่เพื่อà¹à¸ªà¸”ง" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "à¹à¸„็ตตาล็อà¸à¸”าวฤà¸à¸©à¹Œà¸—ี่มีอยู่ทั้งหมดได้รับà¸à¸²à¸£à¸•à¸´à¸”ตั้งà¹à¸¥à¹‰à¸§" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "รับวัตถุหรือดวงดาว %1 จาภ%2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -733,7 +865,7 @@ "à¸à¸³à¸¥à¸±à¸‡à¸”าวน์โหลด %1...\n" "(คุณสามารถปิดหน้าต่างนี้ได้)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -744,7 +876,7 @@ "จำนวนดาว: %2 ล้านดวง\n" "พิสัยโชติมาตร: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -753,11 +885,11 @@ "เà¸à¸´à¸”ข้อผิดพลาดในà¸à¸²à¸£à¸”าวน์โหลด %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¸—วนสอบบูรณภาพของà¹à¸Ÿà¹‰à¸¡à¸‚้อมูล..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -767,115 +899,124 @@ "ไฟล์เสียหาย" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" -msgstr "" +msgstr "วิธีคำนวณ" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" -msgstr "" +msgstr "ไม่มีà¸à¸²à¸£à¸›à¸£à¸±à¸šà¹à¸à¹‰" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "Astronomical Ephemeris (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) & Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller & Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel & Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison & Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson & Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson & Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel & Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze & Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson & Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" +"Meeus (ค.ศ. 1998) (à¸à¸±à¸š Chapront, Chapront-Touze & Francou (ค.ศ. 1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus & Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck & Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" -msgstr "" +msgstr "Reingold & Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison & Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak & Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Banjevic (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq & Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "สมà¸à¸²à¸£ %1T ที่à¸à¸³à¸«à¸™à¸”เอง" @@ -938,13 +1079,15 @@ "Below are listed only the actions with assigned keys. Further actions may be " "available via the \"%1\" button." msgstr "" +"ด้านล่างà¹à¸ªà¸”งเฉพาะรายà¸à¸²à¸£à¸›à¸¸à¹ˆà¸¡à¸¥à¸±à¸”ที่ได้มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ไว้ à¸à¸²à¸£à¸à¸£à¸°à¸—ำอื่น ๆ " +"อาจตั้งค่าผ่าน \"%1\"" #: src/gui/HelpDialog.cpp:245 msgid "" "The following links are external web links, and will launch your web " "browser:\n" msgstr "" -"à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­à¸™à¸µà¹‰à¸ˆà¸°à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­à¹€à¸§à¸šà¸ à¸²à¸¢à¸™à¸­à¸ à¹à¸¥à¸°à¸ˆà¸°à¹€à¸£à¸µà¸¢à¸à¹ƒà¸«à¹‰à¹€à¸šà¸£à¸²à¹€à¸‹à¸­à¸£à¹Œà¸‚องท่านทำงาน\n" +"à¸à¸²à¸£à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­à¸™à¸µà¹‰à¸ˆà¸°à¹€à¸Šà¸·à¹ˆà¸­à¸¡à¸•à¹ˆà¸­à¹€à¸§à¹‡à¸šà¸ à¸²à¸¢à¸™à¸­à¸ à¹à¸¥à¸°à¸ˆà¸°à¹€à¸£à¸µà¸¢à¸à¹ƒà¸«à¹‰à¹€à¸šà¸£à¸²à¸§à¹Œà¹€à¸‹à¸­à¸£à¹Œà¸‚องท่านทำงาน\n" #: src/gui/HelpDialog.cpp:246 msgid "The Stellarium User Guide" @@ -1044,49 +1187,53 @@ msgid "OSX Developer: %1" msgstr "นัà¸à¸žà¸±à¸’นา OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "หน้าต่างรายà¸à¸²à¸£à¸ªà¸„ริปต์" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "หน้าต่าง" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Space" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1 ม." -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "ไม่มีคำบรรยาย" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "ไม่มีดาวตà¸" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "อัตราปà¸à¸•à¸´" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "อัตราà¸à¸™à¸”าวตà¸à¹€à¸žà¸­à¸£à¹Œà¸‹à¸´à¸­à¸±à¸ªà¸¡à¸²à¸•à¸£à¸à¸²à¸™" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "อัตราเริ่มต้นของพายุà¸à¸™à¸”าวตà¸" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "อัตราà¸à¸™à¸”าวตà¸à¸ªà¸´à¸‡à¹‚ตระดับสูง" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "อัตราตà¸à¸ªà¸¹à¸‡à¸ªà¸¸à¸”เท่าที่เคยมีมา (à¸à¸™à¸”าวตà¸à¸ªà¸´à¸‡à¹‚ต ค.ศ. ๑๙๖๖)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "ตำà¹à¸«à¸™à¹ˆà¸‡à¹ƒà¸«à¸¡à¹ˆ" @@ -1190,19 +1337,19 @@ msgid "starchart" msgstr "à¹à¸œà¸™à¸—ี่ดาว" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "เà¸à¸´à¸”ข้อผิดพลาดในà¸à¸²à¸£à¸„้นหาบน Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "à¸à¸²à¸£à¸„้นหาบน Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "มหาวิทยาลัยสทราซบูร์ (à¸à¸£à¸±à¹ˆà¸‡à¹€à¸¨à¸ª)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "มหาวิทยาลัยฮาร์วาร์ด (สหรัà¸à¸­à¹€à¸¡à¸£à¸´à¸à¸²)" @@ -1218,30 +1365,38 @@ msgid "Alternative shortcut" msgstr "ปุ่มลัดรอง" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" -msgstr "" +msgstr "สมà¸à¸²à¸£à¸—ี่à¸à¸³à¸«à¸™à¸”เองสำหรับ %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" -msgstr "" +msgstr "สมà¸à¸²à¸£à¸—ี่ใช้เป็นà¹à¸šà¸šà¸­à¸¢à¹ˆà¸²à¸‡à¸ªà¸³à¸«à¸£à¸±à¸šà¸à¸²à¸£à¸„ำนวณ %1T มีลัà¸à¸©à¸“ะดังนี้:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" -msgstr "" +msgstr "เมื่อ" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "ปี" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "ระบบนี้ไม่รองรับ OpenGL" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"ระบบของคุณไม่รองรับ OpenGL 1.2 ซึ่งเป็นความต้องà¸à¸²à¸£à¸‚ั้นต่ำ " +"à¸à¸£à¸¸à¸“าปรับปรุงไดรเวอร์สำหรับà¸à¸²à¸£à¹Œà¸”à¹à¸ªà¸”งผล" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "ดวงอาทิตย์" @@ -1258,12 +1413,12 @@ msgstr "โลà¸" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "ดวงจันทร์" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "ดาวอังคาร" @@ -1361,7 +1516,7 @@ msgstr "มีทิส" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "ดาวเสาร์" @@ -1659,193 +1814,222 @@ msgstr "อินูอิท" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "อินเดีย" + +#: src/translations.h:171 msgid "Korean" msgstr "เà¸à¸²à¸«à¸¥à¸µ" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "ลาโà¸à¸•à¸²" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "เมารี" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "นาวาโฮ" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "นอเวย์" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "โพลีนีเชีย" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "เซมี" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "ทูปิ-à¸à¸§à¸²à¸£à¸²à¸™à¸´" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" -msgstr "" +msgstr "ตองà¸à¸²" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "ตะวันตà¸" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "ต้นไม้" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "เฮอร์ริเคน" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "มหาสมุทร" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "à¸à¸²à¸£à¹Œà¸Šà¸´à¸‡" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "ท่องภูมิทัศน์" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "จันทรุปราคาบางส่วน" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "จันทรุปราคาเต็มดวง" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "ภาพพัà¸à¸«à¸™à¹‰à¸²à¸ˆà¸­" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "สุริยุปราคา ค.ศ. 2009" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "สคริปต์เริ่มต้น" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "จัà¸à¸£à¸£à¸²à¸¨à¸µ" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "ดวงอาทิตย์ขึ้นà¹à¸¥à¸°à¸”วงอาทิตย์ตà¸à¸šà¸™à¸”าวพุธสามครั้ง" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "อุปราคาคู่เมื่อมองจาà¸à¸”ีมอสในปี 2017" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "อุปราคาคู่เมื่อมองจาà¸à¸”ีมอสในปี 2031" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "สุริยุปราคาจาà¸à¹‚อลิมปัสมอนส์ 10 มà¸à¸£à¸²à¸„ม ค.ศ. 2068" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "à¸à¸²à¸£à¸šà¸±à¸‡à¹‚ลà¸à¹à¸¥à¸°à¸”าวพฤหัสบดี ค.ศ. 2048" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "à¸à¸²à¸£à¸œà¹ˆà¸²à¸™à¸«à¸™à¹‰à¸² 3 ครั้ง à¹à¸¥à¸°à¸­à¸¸à¸›à¸£à¸²à¸„า 2 ครั้ง เมื่อมองจาà¸à¸”ีมอสในปี 2027" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "ภาพพัà¸à¸«à¸™à¹‰à¸²à¸ˆà¸­à¸£à¸°à¸šà¸šà¸ªà¸¸à¸£à¸´à¸¢à¸°" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "ท่องà¸à¸¥à¸¸à¹ˆà¸¡à¸”าว" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "ดวงอาทิตย์จาà¸à¸”าวเคราะห์ต่าง ๆ" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "โลà¸à¹€à¸¡à¸·à¹ˆà¸­à¸¡à¸­à¸‡à¸ˆà¸²à¸à¸§à¸±à¸•à¸–ุอื่น" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "ดาวศุà¸à¸£à¹Œà¸œà¹ˆà¸²à¸™à¸«à¸™à¹‰à¸²à¸”วงอาทิตย์" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "à¹à¸­à¸™à¸°à¹€à¸¥à¸¡à¸¡à¸²" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" -msgstr "" +msgstr "ท่องà¸à¸¥à¸¸à¹ˆà¸¡à¸”าวในà¹à¸•à¹ˆà¸¥à¸°à¸§à¸±à¸’นธรรม" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "เหตุà¸à¸²à¸£à¸“์ที่โลà¸à¹€à¸¡à¸·à¹ˆà¸­à¸¡à¸­à¸‡à¸ˆà¸²à¸à¸”าวพุธ" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "เหตุà¸à¸²à¸£à¸“์ที่โลà¸à¹€à¸¡à¸·à¹ˆà¸­à¸¡à¸­à¸‡à¸ˆà¸²à¸à¸”าวศุà¸à¸£à¹Œ" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "เหตุà¸à¸²à¸£à¸“์ที่โลà¸à¹€à¸¡à¸·à¹ˆà¸­à¸¡à¸­à¸‡à¸ˆà¸²à¸à¸”าวอังคาร" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "โลà¸à¸—ำมุมห่างจาà¸à¸”วงอาทิตย์ที่สุดà¹à¸¥à¸°à¸ªà¸§à¹ˆà¸²à¸‡à¸—ี่สุดเมื่อมองจาà¸à¸”าวอังคาร" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "โลà¸à¹à¸¥à¸°à¸”าวอังคารทำมุมห่างจาà¸à¸”วงอาทิตย์ที่สุดเมื่อมองจาà¸à¸”าวพฤหัสบดี" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "ดูà¹à¸•à¹ˆà¸¥à¸°à¸ à¸¹à¸¡à¸´à¸—ัศน์ที่ติดตั้งไว้" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." -msgstr "" +msgstr "ดูà¸à¸¥à¸¸à¹ˆà¸¡à¸”าวของà¹à¸•à¹ˆà¸¥à¸°à¸§à¸±à¸’นธรรมที่ติดตั้งไว้" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "สคริปต์à¹à¸ªà¸”งà¸à¸²à¸£à¹€à¸à¸´à¸”จันทรุปราคาบางส่วน" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "สคริปต์à¹à¸ªà¸”งà¸à¸²à¸£à¹€à¸à¸´à¸”จันทรุปราคาเต็มดวง" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "ท่องไปทั่วท้องฟ้าอย่างช้า ๆ โดยà¸à¸²à¸£à¸ªà¸¸à¹ˆà¸¡à¸«à¸²à¸§à¸±à¸•à¸–ุท้องฟ้า" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1853,11 +2037,11 @@ "สคริปต์à¹à¸ªà¸”งà¸à¸²à¸£à¹€à¸à¸´à¸”สุริยุปราคาเต็มดวงที่เà¸à¸´à¸”ขึ้นใน ค.ศ. 2009 (สถานที่=รังปุ, " "บังà¸à¸¥à¸²à¹€à¸—ศ)" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "สคริปต์ที่ทำงานโดยอัตโนมัติเมื่อเริ่มโปรà¹à¸à¸£à¸¡" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1866,7 +2050,7 @@ "สคริปต์à¹à¸ªà¸”งà¸à¸¥à¸¸à¹ˆà¸¡à¸”าวจัà¸à¸£à¸£à¸²à¸¨à¸µ " "ซึ่งเป็นà¸à¸¥à¸¸à¹ˆà¸¡à¸”าวที่อยู่ในà¹à¸™à¸§à¸—ี่ดวงอาทิตย์เคลื่อนผ่านบนทรงà¸à¸¥à¸¡à¸Ÿà¹‰à¸²à¹ƒà¸™à¸£à¸­à¸šà¸›à¸µ" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1874,7 +2058,7 @@ "วงโคจรà¹à¸¥à¸°à¸à¸²à¸£à¸«à¸¡à¸¸à¸™à¸—ี่à¹à¸›à¸¥à¸à¸‚องดาวพุธ ทำให้ที่จุดหนึ่ง จะเห็นดวงอาทิตย์ขึ้นà¹à¸¥à¸°à¸•à¸ " "3 ครั้ง ภายใน 1 วันดาวพุธ" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1883,7 +2067,7 @@ "à¹à¸¥à¸°à¸šà¸±à¸‡à¸”วงอาทิตย์à¸à¹ˆà¸­à¸™ โดยเà¸à¸´à¸”ขึ้นในวันที่ 26 เมษายน ค.ศ. 2017 " "ระหว่างà¸à¸¥à¸¸à¹ˆà¸¡à¸”าวà¹à¸¡à¸‡à¸›à¹ˆà¸­à¸‡à¸à¸±à¸šà¸à¸¥à¸¸à¹ˆà¸¡à¸”าวคนยิงธนู" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1892,13 +2076,13 @@ "à¹à¸¥à¸°à¸šà¸±à¸‡à¸”วงอาทิตย์à¸à¹ˆà¸­à¸™ โดยเà¸à¸´à¸”ขึ้นในวันที่ 23 à¸à¸£à¸à¸Žà¸²à¸„ม ค.ศ. 2031 " "ระหว่างà¸à¸¥à¸¸à¹ˆà¸¡à¸”าววัวà¸à¸±à¸šà¸à¸¥à¸¸à¹ˆà¸¡à¸”าวคนคู่" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" "โฟบอสบดบังดวงอาทิตย์เมื่อสังเà¸à¸•à¸ˆà¸²à¸à¸ à¸¹à¹€à¸‚าโอลิมปัสเมื่อวันที่ 10 มà¸à¸£à¸²à¸„ม ค.ศ. " "2068" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1908,7 +2092,7 @@ "à¹à¸•à¹ˆà¸à¸²à¸£à¸šà¸±à¸‡à¹‚ลà¸à¹à¸¥à¸°à¸”าวพฤหัสบดีในวันเดียวà¸à¸±à¸™à¹€à¸à¸´à¸”ขึ้นได้ยาà¸à¸¡à¸²à¸ " "นี่เป็นเหตุà¸à¸²à¸£à¸“์เมื่อวันที่ 23 มà¸à¸£à¸²à¸„ม ค.ศ. 2048 ตามเวลาจริง" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1924,32 +2108,32 @@ "เมื่อโฟบอสออà¸à¸ˆà¸²à¸à¸à¸²à¸£à¸œà¹ˆà¸²à¸™à¸«à¸™à¹‰à¸²à¸”าวอังคาร มันยังคงอยู่ในเงามืดของดาวอังคาร " "à¸à¹ˆà¸­à¸™à¸ˆà¸°à¸ªà¸§à¹ˆà¸²à¸‡à¸‚ึ้นมาอีà¸à¸„รั้งเมื่อออà¸à¸ˆà¸²à¸à¹€à¸‡à¸²à¸¡à¸·à¸”" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" -msgstr "ภาพพัà¸à¸«à¸™à¹‰à¸²à¸ˆà¸­ à¹à¸ªà¸”ง 171 ปราà¸à¸à¸à¸²à¸£à¸“์! ที่เà¸à¸´à¸”ขึ้นในระบบสุริยะ" +"Screensaver of various happenings in the Solar System. 187 events in all!" +msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "à¸à¸²à¸£à¸—่องไปตามà¸à¸¥à¸¸à¹ˆà¸¡à¸”าวà¹à¸šà¸šà¸•à¸°à¸§à¸±à¸™à¸•à¸" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" "มองไปที่ดวงอาทิตย์เมื่ออยู่บนดาวเคราะห์ขนาดใหà¸à¹ˆà¹ƒà¸™à¸£à¸°à¸šà¸šà¸ªà¸¸à¸£à¸´à¸¢à¸° à¹à¸¥à¸°à¸šà¸™à¸žà¸¥à¸¹à¹‚ต" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "โลà¸à¹€à¸¡à¸·à¹ˆà¸­à¸¡à¸­à¸‡à¸ˆà¸²à¸à¸§à¸±à¸•à¸–ุอื่น ๆ ในระบบสุริยะ ตลอดช่วงคริสต์ศตวรรษที่ 21" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "ดาวศุà¸à¸£à¹Œà¸œà¹ˆà¸²à¸™à¸«à¸™à¹‰à¸²à¸”วงอาทิตย์เมื่อวันที่ 6 มิถุนายน ค.ศ. 2012 สังเà¸à¸•à¸ˆà¸²à¸à¸‹à¸´à¸”นีย์ " "ออสเตรเลีย" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." @@ -1957,7 +2141,7 @@ "à¸à¸²à¸£à¹€à¸à¸´à¸”à¹à¸­à¸™à¸°à¹€à¸¥à¸¡à¸¡à¸² (analemma) " "ซึ่งเป็นเส้นทางà¸à¸²à¸£à¹€à¸„ลื่อนที่ของดวงอาทิตย์บนท้องฟ้าในรอบปี" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -1965,1468 +2149,1507 @@ "à¹à¸ªà¸‡à¸§à¸²à¸šà¸ˆà¸²à¸à¸‹à¸¹à¹€à¸›à¸­à¸£à¹Œà¹‚นวา ซึ่งทีโค บราห์ สังเà¸à¸•à¹€à¸¡à¸·à¹ˆà¸­ ค.ศ. 1572 " "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸‹à¸¹à¹€à¸›à¸­à¸£à¹Œà¹‚นวาต้องถูà¸à¹€à¸›à¸´à¸”ใช้งาน" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" +"โลà¸à¸—ำมุมห่างจาà¸à¸”วงอาทิตย์ที่สุดà¹à¸¥à¸°à¸ªà¸§à¹ˆà¸²à¸‡à¸—ี่สุดเมื่อมองจาà¸à¸”าวอังคารระหว่าง " +"ค.ศ. 2000-3000" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" +"โลà¸à¸—ำมุมห่างจาà¸à¸”วงอาทิตย์ที่สุดเมื่อมองจาà¸à¸”าวพฤหัสบดีระหว่าง ค.ศ. 2000-3000" + +#: src/translations.h:287 msgid "Andorra" msgstr "อันดอรรา" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "สหรัà¸à¸­à¸²à¸«à¸£à¸±à¸šà¹€à¸­à¸¡à¸´à¹€à¸£à¸•à¸ªà¹Œ" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "อัฟà¸à¸²à¸™à¸´à¸ªà¸–าน" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "à¹à¸­à¸™à¸•à¸´à¸à¸²à¹à¸¥à¸°à¸šà¸²à¸£ïœŽà¸šà¸¹à¸”า" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "à¹à¸­à¸‡à¸à¸§à¸´à¸¥à¸¥à¸²" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "à¹à¸­à¸¥à¹€à¸šà¹€à¸™à¸µà¸¢" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "อารเมเนีย" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "เนเธอร์à¹à¸¥à¸™à¸”์à¹à¸­à¸™à¸—ิลลิส" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "à¹à¸­à¸‡à¹‚à¸à¸¥à¸²" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "à¹à¸­à¸™à¸•à¸²à¸£à¹Œà¸à¸•à¸´à¸à¸²" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "อารเจนตินา" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "อเมริà¸à¸±à¸™à¸‹à¸²à¸¡à¸±à¸§" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ออสเตรีย" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ออสเตรเลีย" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "อารูบา" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "อาเซอรไบจาน" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "บอสเนียà¹à¸¥à¸°à¹€à¸®à¸­à¸£à¹Œà¹€à¸‹à¹‚à¸à¸§à¸µà¸™à¸²" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "บารเบโดส" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "บังà¸à¸¥à¸²à¹€à¸—ศ" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "เบลเยียม" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "บูรà¸à¸´à¸™à¸²à¸Ÿà¸²à¹‚ซ" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "บัลà¹à¸à¹€à¸£à¸µà¸¢" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "บาหเรน" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "บุรุนดี" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "เบนิน" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "เบอร์มิวดา" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "บรูไนดารุสซาลาม" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "โบลิเวีย" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "บราซิล" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "บาฮามาส" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "ภูà¸à¸²à¸™" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "เà¸à¸²à¸°à¸šà¸¹à¹€à¸§à¸•à¹Œ" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "บอตสวานา" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "เบลารุส" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "เบลีซ" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "à¹à¸„นาดา" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "หมู่เà¸à¸²à¸°à¹‚คโคส" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "สาธารณรัà¸à¸›à¸£à¸°à¸Šà¸²à¸˜à¸´à¸›à¹„ตยคองโà¸" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "สาธารณรัà¸à¹à¸­à¸Ÿà¸£à¸´à¸à¸²à¸à¸¥à¸²à¸‡" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "สาธารณรัà¸à¸„องโà¸" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "สวิตเซอรà¹à¸¥à¸™à¸”์" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "โà¸à¸•à¸”ิวัวร์" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "หมู่เà¸à¸²à¸°à¸„ุà¸" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "ชิลี" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "à¹à¸„เมอรูน" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "จีน" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "โคลอมเบีย" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "คอสตาริà¸à¸²" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "เซอร์เบียà¹à¸¥à¸°à¸¡à¸­à¸™à¹€à¸•à¹€à¸™à¹‚à¸à¸£" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "คิวบา" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "เคปเวิรด" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "เà¸à¸²à¸°à¸„ริสต์มาส" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "ไซปรัส" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "สาธารณรัà¸à¹€à¸Šà¹‡à¸" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "เยอรมนี" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "จิบูตี" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "เดนมารà¸" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "โดมินิà¸à¸²" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "สาธารณรัà¸à¹‚ดมินิà¸à¸±à¸™" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "à¹à¸­à¸¥à¸ˆà¸µà¹€à¸£à¸µà¸¢" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "เอà¸à¸§à¸²à¸”อร์" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "เอสโตเนีย" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "อียิปต์" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "เวสเทิร์นสะฮารา" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "เอริเทรีย" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "สเปน" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "เอธิโอเปย" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ฟïœà¸™à¹à¸¥à¸™à¸”" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "ฟิจิ" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "หมู่เà¸à¸²à¸°à¸Ÿà¸­à¸¥à¹Œà¸à¹à¸¥à¸™à¸”์" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "ไมโครนีเซีย" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "หมู่เà¸à¸²à¸°à¹à¸Ÿà¹‚ร" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "à¸à¸£à¸±à¹ˆà¸‡à¹€à¸¨à¸ª" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "à¸à¸²à¸šà¸­à¸‡" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "สหราชอาณาจัà¸à¸£" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "เà¸à¸£à¹€à¸™à¸”า" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "จอรเจีย" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "เฟรนชเà¸à¸µà¸¢à¸™à¸²" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "à¸à¸²à¸™à¸²" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "ยิบรอลตาร์" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "à¸à¸£à¸µà¸™à¹à¸¥à¸™à¸”์" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "à¹à¸à¸¡à¹€à¸šà¸µà¸¢" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "à¸à¸´à¸™à¸µ" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "à¸à¸§à¸²à¹€à¸”อลูป" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "อิเควทอเรียลà¸à¸´à¸™à¸µ" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "à¸à¸£à¸µà¸‹" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "เà¸à¸²à¸°à¹€à¸‹à¸²à¸—์จอร์เจียà¹à¸¥à¸°à¸«à¸¡à¸¹à¹ˆà¹€à¸à¸²à¸°à¹€à¸‹à¸²à¸—์à¹à¸‹à¸™à¸”์วิช" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "à¸à¸±à¸§à¹€à¸•à¸¡à¸²à¸¥à¸²" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "à¸à¸§à¸¡" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "à¸à¸´à¸™à¸µ-บิสเซา" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "à¸à¸²à¸¢à¸­à¸²à¸™à¸²" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "ฮองà¸à¸‡" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "เà¸à¸²à¸°à¹€à¸®à¸´à¸£à¹Œà¸”à¹à¸¥à¸°à¸«à¸¡à¸¹à¹ˆà¹€à¸à¸²à¸°à¹à¸¡à¸à¸”อนัลด์" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ฮอนดูรัส" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "โครเอเชีย" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "เฮติ" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "ฮังà¸à¸²à¸£à¸µ" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "อินโดนีเซีย" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ไอรà¹à¸¥à¸™à¸”์" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "อิสราเอล" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "อินเดีย" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "บริติชอินเดียนโอเชียนเทร์ริทอรี" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "อิรัà¸" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "อิหร่าน" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ไอซà¹à¸¥à¸™à¸”์" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "อิตาลี" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "จาเมà¸à¸²" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "จอรà¹à¸”น" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "à¸à¸µà¹ˆà¸›à¸¸ïœ…น" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "เคนยา" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "คีรà¸à¸µà¸‹à¸ªà¸–าน" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "à¸à¸±à¸¡à¸žà¸¹à¸Šà¸²" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "คิริบาส" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "คอโมโรส" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "เซนต์คิตส์à¹à¸¥à¸°à¹€à¸™à¸§à¸´à¸ª" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "สาธารณรัà¸à¸›à¸£à¸°à¸Šà¸²à¸˜à¸´à¸›à¹„ตยประชาชนเà¸à¸²à¸«à¸¥à¸µ" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "สาธารณรัà¸à¹€à¸à¸²à¸«à¸¥à¸µ" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "คูเวต" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "หมู่เà¸à¸²à¸°à¹€à¸„ย์à¹à¸¡à¸™" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "คาซัคสถาน" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "ลาว" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "เลบานอน" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "เซนต์ลูเซีย" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "ลิà¸à¹€à¸•à¸™à¸ªà¹„ตน์" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "ศรีลังà¸à¸²" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "ไลบีเรีย" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "เลโซโท" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "ลิทัวเนีย" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ลัà¸à¹€à¸‹à¸¡à¹€à¸šà¸´à¸£ïœŽà¸" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "ลัตเวีย" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "ลิเบีย" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "โมร็อà¸à¹‚à¸" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "โมนาโà¸" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "มอลโดวา" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "มาดาà¸à¸±à¸ªà¸à¸²à¸£ïœŽ" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "หมู่เà¸à¸²à¸°à¸¡à¸²à¸£à¹Œà¹à¸Šà¸¥à¸¥à¹Œ" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "มาซิโดเนีย" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "มาลี" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "พมา" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "มองโà¸à¹€à¸¥à¸µà¸¢" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "มาเà¸à¹Šà¸²" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "หมู่เà¸à¸²à¸°à¸™à¸­à¸£à¹Œà¹€à¸—ิร์นมาเรียนา" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "มาร์ตินีà¸" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "มอริเตเนีย" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "มอนต์เซอร์รัต" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "มอลตา" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "มอริเชียส" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "มัลดีฟส์" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "มาลาวี" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "เม็à¸à¸‹à¸´à¹‚à¸" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "มาเลเซีย" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "โมซัมบิà¸" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "นามิเบีย" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "นิวà¹à¸„ลิโดเนีย" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "ไนเจอร์" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "เà¸à¸²à¸°à¸™à¸­à¸£à¹Œà¸Ÿà¸­à¸¥à¹Œà¸" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "ไนจีเรีย" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "นิà¸à¸²à¸£à¸²à¸à¸±à¸§" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "เนเธอรà¹à¸¥à¸™à¸”์" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "นอรเวย์" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "เนปาล" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "นาอูรู" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "นีอูเอ" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "นิวซีà¹à¸¥à¸™à¸”์" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "โอมาน" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "ปานามา" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "เปรู" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "เฟรนช์โปลินีเซีย" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "ปาปïœà¸§à¸™à¸´à¸§à¸à¸´à¸™à¸µ" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "ฟïœà¸¥à¸´à¸›à¸›ïœà¸™à¸ªïœŽ" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ปาà¸à¸µà¸ªà¸–าน" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "โปà¹à¸¥à¸™à¸”์" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "à¹à¸‹à¸‡à¸›à¸µà¹à¸¢à¸£à¹Œà¹à¸¥à¸°à¸¡à¸µà¹€à¸à¸­à¸¥à¸‡" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "หมู่เà¸à¸²à¸°à¸žà¸´à¸•à¹à¸„ร์น" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "เปอร์โตริโà¸" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "ดินà¹à¸”นปาเลสไตน์" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "โปรตุเà¸à¸ª" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "ปาเลา" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "ปาราà¸à¸§à¸±à¸¢" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "à¸à¸²à¸•à¸²à¸£à¹Œ" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "เรอูนียง" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "โรมาเนีย" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "เซอร์เบีย" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "สหพันธรัà¸à¸£à¸±à¸ªà¹€à¸‹à¸µà¸¢" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "รวันดา" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "ซาอุดีอาระเบีย" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "หมู่เà¸à¸²à¸°à¹‚ซโลมอน" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "เซเชลส์" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "ซูดาน" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "สวีเดน" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "สิงคโปร์" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "เซนต์เฮเลนา" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "สโลวีเนีย" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "สฟาลบาร์à¹à¸¥à¸°à¸¢à¸²à¸™à¹„มเอน" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "สโลวาเà¸à¸µà¸¢" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "เซียรราลีโอน" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "ซานมารีโน" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "เซเนà¸à¸±à¸¥" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "โซมาเลีย" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "ซูรินาเม" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "เซาตูเมà¹à¸¥à¸°à¸›à¸£à¸´à¸™à¸‹à¸´à¸›à¸µ" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "เอลซัลวาดอร์" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "สาธารณรัà¸à¸­à¸²à¸«à¸£à¸±à¸šà¸‹à¸µà¹€à¸£à¸µà¸¢" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "สวาซิà¹à¸¥à¸™à¸”์" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "หมู่เà¸à¸²à¸°à¹€à¸•à¸´à¸à¸ªà¹Œà¹à¸¥à¸°à¸«à¸¡à¸¹à¹ˆà¹€à¸à¸²à¸°à¹€à¸„คอส" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "ชาด" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "เฟรนช์เซาเทิร์นเทร์ริทอรีส์" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "โตโà¸" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "ไทย" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ทาจิà¸à¸´à¸ªà¸–าน" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "โตเà¸à¹€à¸¥à¸²" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "ติมอร์ตะวันออà¸" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "เติรà¸à¹€à¸¡à¸™à¸´à¸ªà¸–าน" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ตูนิเซีย" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "ตองà¸à¸²" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "ตุรà¸à¸µ" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "ตรินิà¹à¸”ดà¹à¸¥à¸°à¹‚ตเบโà¸" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "ตูวาลู" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "ไต้หวัน" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "à¹à¸—นซาเนีย" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "ยูเครน" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "ยูà¸à¸±à¸™à¸”า" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "เà¸à¸²à¸°à¹€à¸¥à¹‡à¸à¸£à¸­à¸šà¸™à¸­à¸à¸‚องสหรัà¸à¸­à¹€à¸¡à¸£à¸´à¸à¸²" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "สหรัà¸à¸­à¹€à¸¡à¸£à¸´à¸à¸²" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "อุรุà¸à¸§à¸±à¸¢" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "อุซเบà¸à¸´à¸ªà¸–าน" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "นครรัà¸à¸§à¸²à¸•à¸´à¸à¸±à¸™" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "เซนต์วินเซนต์à¹à¸¥à¸°à¹€à¸à¸£à¸™à¸²à¸”ีนส์" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "เวเนซุเอลา" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "หมู่เà¸à¸²à¸°à¸šà¸£à¸´à¸•à¸´à¸Šà¹€à¸§à¸­à¸£à¹Œà¸ˆà¸´à¸™" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "หมู่เà¸à¸²à¸°à¹€à¸§à¸­à¸£à¹Œà¸ˆà¸´à¸™à¸‚องสหรัà¸à¸­à¹€à¸¡à¸£à¸´à¸à¸²" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "เวียดนาม" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "วานูอาตู" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "วาลลิสà¹à¸¥à¸°à¸Ÿà¸¸à¸•à¸¹à¸™à¸²" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "ซามัว" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "เยเมน" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "มายอต" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ยูโà¸à¸ªà¸¥à¸²à¹€à¸§à¸µà¸¢" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "à¹à¸­à¸Ÿà¸£à¸´à¸à¸²à¹ƒà¸•à¹‰" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "à¹à¸‹à¸¡à¹€à¸šà¸µà¸¢" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "ซิมบับเว" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "วันที่ à¹à¸¥à¸° เวลา" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "เพิ่ม ๑ วันดาราคติ" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "เพิ่ม 1 เดือนดาราคติ" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "เพิ่ม ๑ สัปดาห์ดาราคติ" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "เพิ่ม 1 ปีดาราคติ" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "เพิ่ม 1 ศตวรรษดาราคติ" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "เพิ่ม ๑ วันสุริยะ" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "เพิ่ม ๑ ชั่วโมงสุริยะ" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "เพิ่ม ๑ สัปดาห์สุริยะ" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "เพิ่ม 1 เดือนดิถี" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "เพิ่ม 1 เดือนราหู" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "เพิ่ม 1 เดือนจุดใà¸à¸¥à¹‰" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "เพิ่ม 1 เดือนฤดูà¸à¸²à¸¥à¹€à¸‰à¸¥à¸µà¹ˆà¸¢" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "เพิ่ม 1 ปีราหู" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "เพิ่ม 1 ปีฤดูà¸à¸²à¸¥à¹€à¸‰à¸¥à¸µà¹ˆà¸¢" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "เพิ่ม 1 ศตวรรษฤดูà¸à¸²à¸¥à¹€à¸‰à¸¥à¸µà¹ˆà¸¢" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "ลดอัตราà¸à¸²à¸£à¸›à¸£à¸°à¸¡à¸§à¸¥à¸œà¸¥à¸ªà¸„ริปต์" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "เวลาถอยหลัง" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "เวลาถอยหลัง (เล็à¸à¸™à¹‰à¸­à¸¢)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "เพิ่มอัตราà¸à¸²à¸£à¸›à¸£à¸°à¸¡à¸§à¸¥à¸œà¸¥à¸ªà¸„ริปต์" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "เวลาเดินหน้า" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "เวลาเดินหน้า (เล็à¸à¸™à¹‰à¸­à¸¢)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "หยุดสคริปต์ชั่วคราว" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "ให้สคริปต์ทำงานต่อ" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "à¸à¸¥à¸±à¸šà¸ªà¸¹à¹ˆà¹€à¸§à¸¥à¸²à¸›à¸±à¸ˆà¸ˆà¸¸à¸šà¸±à¸™" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "ตั้งอัตราà¸à¸²à¸£à¸›à¸£à¸°à¸¡à¸§à¸¥à¸œà¸¥à¸ªà¸„ริปต์เป็นอัตราปà¸à¸•à¸´" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "ปรับเวลาเดินตามปà¸à¸•à¸´" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "ตั้งอัตราเวลาไปที่ศูนย์" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "หยุดสคริปต์" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "ลบ ๑ วันดาราคติ" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "ลด 1 เดือนดาราคติ" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "ลบ ๑ สัปดาห์ดาราคติ" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "ลด 1 ปีดาราคติ" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "ลบ 1 ศตวรรษดาราคติ" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "ลบ ๑ วันสุริยะ" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "ลบ ๑ ชั่วโมงสุริยะ" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "ลบ ๑ สัปดาห์สุริยะ" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "ลบ 1 เดือนดิถี" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "ลบ 1 เดือนราหู" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "ลบ 1 เดือนจุดใà¸à¸¥à¹‰" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "ลบ 1 เดือนฤดูà¸à¸²à¸¥à¹€à¸‰à¸¥à¸µà¹ˆà¸¢" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "ลบ 1 เดือนราหู" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "ลบ 1 ปีฤดูà¸à¸²à¸¥à¹€à¸‰à¸¥à¸µà¹ˆà¸¢" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "ลบ 1 ศตวรรษฤดูà¸à¸²à¸¥à¹€à¸‰à¸¥à¸µà¹ˆà¸¢" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "ตัวเลือà¸à¸à¸²à¸£à¹à¸ªà¸”งผล" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "à¸à¸¥à¸±à¸šà¸ à¸²à¸žà¹ƒà¸™à¹à¸™à¸§à¸™à¸­à¸™" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "โหมดเต็มจอ" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "บรรยาà¸à¸²à¸¨" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "เส้นพิà¸à¸±à¸”ภาคทิศ" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "ทิศทั้งสี่" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "ภาพà¸à¸¥à¸¸à¹ˆà¸¡à¸”าว" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "ขอบเขตของà¸à¸¥à¸¸à¹ˆà¸¡à¸”าว" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "ชื่อà¸à¸¥à¸¸à¹ˆà¸¡à¸”าว" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "เส้นà¸à¸¥à¸¸à¹ˆà¸¡à¸”าว" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "ภาพพื้นหลังของเนบิวลา" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "ภาพฉาà¸à¸«à¸¥à¸±à¸‡à¸‚องวัตถุท้องฟ้าห้วงลึà¸" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "à¸à¸£à¸´à¸”สุริยวิถี J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "เส้นสุริยวิถี" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "เส้นศูนย์สูตร" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "à¸à¸£à¸´à¸”ศูนย์สูตร" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "à¸à¸£à¸´à¸”ศูนย์สูตร J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "หมอà¸" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "à¸à¸£à¸´à¸”à¸à¸²à¹à¸¥à¹‡à¸à¸‹à¸µ" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "ระนาบดาราจัà¸à¸£" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "พื้น" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "เส้นขอบฟ้า" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "เส้นเมริเดียน" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "เนบิวลา" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "วัตถุท้องฟ้าห้วงลึà¸" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "โหมดà¸à¸¥à¸²à¸‡à¸„ืน" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "ชื่อดาวเคราะห์" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "วงโคจรดาวเคราะห์" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "รอยà¸à¸²à¸£à¹€à¸„ลื่อนที่ของดาวเคราะห์" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "ดาวฤà¸à¸©à¹Œ" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "ป้ายชื่อดาวฤà¸à¸©à¹Œ" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "à¸à¸¥à¸±à¸šà¸ à¸²à¸žà¹ƒà¸™à¹à¸™à¸§à¸•à¸±à¹‰à¸‡" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "จิปาถะ" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "ซ่อนà¹à¸–บà¹à¸™à¸§à¸™à¸­à¸™à¹‚ดยอัตโนมัติ" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "ซ่อนà¹à¸–บà¹à¸™à¸§à¸•à¸±à¹‰à¸‡à¹‚ดยอัตโนมัติ" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "ไปที่ตำà¹à¸«à¸™à¹ˆà¸‡à¹€à¸£à¸´à¹ˆà¸¡à¸•à¹‰à¸™" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "ออà¸" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "คัดลอà¸à¸‚้อมูลของวัตถุที่เลือà¸à¹„ปยังคลิปบอร์ด" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "บันทึà¸à¸ à¸²à¸žà¸«à¸™à¹‰à¸²à¸ˆà¸­" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "สลับระหว่างà¹à¸™à¸§à¹€à¸Šà¸´à¸‡à¸¨à¸¹à¸™à¸¢à¹Œà¸ªà¸¹à¸•à¸£à¸à¸±à¸šà¸ à¸²à¸„ทิศ" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "สลับà¸à¸²à¸£à¹à¸ªà¸”งส่วนต่อประสานà¸à¸£à¸²à¸Ÿà¸´à¸à¸à¸±à¸šà¸œà¸¹à¹‰à¹ƒà¸Šà¹‰" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "à¸à¸²à¸£à¹€à¸„ลื่อนไหวà¹à¸¥à¸°à¸à¸²à¸£à¹€à¸¥à¸·à¸­à¸" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "ทำให้วัตถุที่เลือà¸à¸¡à¸²à¸­à¸¢à¸¹à¹ˆà¸à¸¥à¸²à¸‡à¸ˆà¸­" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "à¸à¸³à¸«à¸™à¸”ดาวเคราะห์ที่เลือà¸à¹ƒà¸«à¹‰à¹€à¸›à¹‡à¸™à¸”าวเคราะห์บ้าน" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "ติดตามวัตถุ" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "ขยายวัตถุที่เลือà¸" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "ย่อ" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "วัดมุม" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "ขีดà¹à¸ªà¸”งมุมทิศ" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "à¹à¸ªà¸”งดาวเคราะห์นอà¸à¸£à¸°à¸šà¸š" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "หน้าต่างà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าดาวเคราะห์นอà¸à¸£à¸°à¸šà¸š" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "ความสามารถในà¸à¸²à¸£à¸ªà¸±à¸‡à¹€à¸à¸•" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "หน้าต่างตั้งค่าความสามารถในà¸à¸²à¸£à¸ªà¸±à¸‡à¹€à¸à¸•" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¹€à¸¥à¸™à¸ªà¹Œà¹ƒà¸à¸¥à¹‰à¸•à¸²" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "มุมมองเลนส์ใà¸à¸¥à¹‰à¸•à¸²" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "à¹à¸ªà¸”งสายใยเล็ง" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "รายà¸à¸²à¸£à¹€à¸¥à¸·à¸­à¸à¹à¸šà¸šà¸œà¸¸à¸”ขึ้นของเลนส์ใà¸à¸¥à¹‰à¸•à¸²" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "เฟรมเซนเซอร์ภาพ" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "วง Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "เลือà¸à¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์ถัดไป" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "เลือà¸à¹€à¸¥à¸™à¸ªà¹Œà¹ƒà¸à¸¥à¹‰à¸•à¸²à¸–ัดไป" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "เลือà¸à¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "เลือà¸à¹€à¸¥à¸™à¸ªà¹Œà¹ƒà¸à¸¥à¹‰à¸•à¸²à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "à¹à¸ªà¸”งพัลซาร์" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "หน้าต่างà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าพัลซาร์" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "à¹à¸ªà¸”งเควซาร์" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "หน้าต่างà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าเควซาร์" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "หน้าต่างà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าดาวเทียม" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "ดาวเทียม" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "ชื่อดาวเทียม" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "หน้าต่างà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าซูเปอร์โนวาในประวัติศาสตร์" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "หันà¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์ไปยังพิà¸à¸±à¸”ที่à¸à¸³à¸«à¸™à¸”" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" -msgstr "" +msgstr "à¹à¸ªà¸”งสถิติà¸à¸²à¸£à¹€à¸£à¸™à¹€à¸”อร์" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "สคริปต์" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "เปิดใช้งานสคริปต์ภูมิทัศน์จาà¸à¹à¸Ÿà¹‰à¸¡" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "à¹à¸ªà¸”งà¹à¸¥à¸°à¸‹à¸¹à¸¡à¹„ปที่ดวงจันทร์" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "หน้าต่างà¸à¸²à¸£à¸›à¸£à¸±à¸šà¹à¸•à¹ˆà¸‡" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "หน้าต่าง วัน/เวลา" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "หน้าต่างวิธีใช้" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "หน้าต่างที่ตั้ง" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "หน้าต่างà¸à¸²à¸£à¸„้นหา" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "หน้าต่างปุ่มลัด" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "หน้าต่างท้องฟ้าà¹à¸¥à¸°à¸à¸²à¸£à¸¡à¸­à¸‡à¹€à¸«à¹‡à¸™" @@ -3452,7 +3675,7 @@ msgstr "เรียà¸à¹ƒà¸«à¸¡à¹ˆ" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่ตั้ง" @@ -3468,10 +3691,10 @@ msgid "Return to default" msgstr "à¸à¸¥à¸±à¸šà¹„ปค่าปริยาย" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "ลบทิ้ง" @@ -3480,7 +3703,7 @@ msgstr "เพิ่มไปยังรายà¸à¸²à¸£" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "ละติจูด:" @@ -3493,12 +3716,12 @@ "8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "ลองจิจูด:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "ระดับความสูง:" @@ -3522,363 +3745,409 @@ msgid "Planet:" msgstr "ดาวเคราะห์:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "ค้นหาวัตถุท้องฟ้า" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "ค้นหาวัตถุหรือตำà¹à¸«à¸™à¹ˆà¸‡" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "ไอโอตา" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "à¹à¸­à¸¥à¸Ÿà¸²" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "บีตา" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "à¹à¸à¸¡à¸¡à¸²" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "เดลตา" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "เอปไซลอน" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "ซีตา" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "อีตา" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "ทีตา" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "à¹à¸„ปปา" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "à¹à¸¥à¸¡à¸šà¹Œà¸”า" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "มิว" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "นิว" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ไซ" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "โอไมครอน" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "พาย" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "โร" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "ซิà¸à¸¡à¸²" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "เทา" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "อิปไซลอน" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "ฟาย" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "ไค" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "ซาย" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "โอเมà¸à¸²" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "อัà¸à¸©à¸£à¸à¸£à¸µà¸à¸ªà¸³à¸«à¸£à¸±à¸šà¸£à¸°à¸šà¸šà¸‚องเบเยอร์" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "วัตถุ" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "ไรต์à¹à¸­à¸ªà¹€à¸‹à¸™à¸Šà¸±à¸™/เดคลิเนชัน (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "ตำà¹à¸«à¸™à¹ˆà¸‡" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "บางวัตถุจะค้นหาได้เมื่อเปิดใช้งานโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸™à¸±à¹‰à¸™à¹à¸¥à¹‰à¸§" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "ชื่อในภาษาอังà¸à¸¤à¸©" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "ค้นหาในรายà¸à¸²à¸£..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "รายà¸à¸²à¸£" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "à¸à¸²à¸™à¸‚้อมูลดาราศาสตร์ออนไลน์ SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "ครอบคลุมà¸à¸²à¸£à¸„้นหาใน SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "เซิร์ฟเวอร์:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "ตัวเลือà¸" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "ชื่อในภาษาอังà¸à¸¤à¸©" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "ค้นหาในรายà¸à¸²à¸£..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "รายà¸à¸²à¸£" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "มุมมอง" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "ท้องฟ้า" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "เครื่องหมาย" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "ภูมิทัศน์" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "ตำนานดาว" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "ชื่อ à¹à¸¥à¸° เครื่องหมาย" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "ดาวเคราะห์" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"ป้ายชื่อà¹à¸¥à¸°à¸•à¸±à¸§à¸šà¹ˆà¸‡à¸Šà¸µà¹‰à¸§à¸±à¸•à¸–ุท้องฟ้าห้วงลึภ(à¸à¸£à¸°à¸ˆà¸¸à¸à¸”าว, ดาราจัà¸à¸£ à¹à¸¥à¸°à¹€à¸™à¸šà¸´à¸§à¸¥à¸²)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "วัตถุท้องฟ้าห้วงลึà¸" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "ดาวเคราะห์à¹à¸¥à¸°à¸šà¸£à¸´à¸§à¸²à¸£" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "à¹à¸ªà¸”งดาวเคราะห์" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "à¹à¸ªà¸”งตัวบ่งชี้ดาวเคราะห์" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "à¹à¸ªà¸”งวงโคจรของดาวเคราะห์" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "จำลองตามความเร็วà¹à¸ªà¸‡" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "ขยายขนาดดวงจันทร์" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "à¹à¸ªà¸”งบรรยาà¸à¸²à¸¨" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "มลพิษทางà¹à¸ªà¸‡:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "ความà¸à¸”อาà¸à¸²à¸¨, อุณหภูมิ, สัมประสิทธิ์à¸à¸²à¸£à¸ªà¸¹à¸à¸«à¸²à¸¢" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าà¸à¸²à¸£à¸«à¸±à¸à¹€à¸«/à¸à¸²à¸£à¸ªà¸¹à¸à¸«à¸²à¸¢..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "อัตราส่วนจริง:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "อัตราส่วนสัมพัทธ์" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "ความสว่างของทางช้างเผือà¸:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "à¸à¸°à¸žà¸£à¸´à¸šà¹à¸ªà¸‡:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "ลดà¹à¸ªà¸‡à¸‚องดาวที่สว่างน้อย เมื่อมีวัตถุที่สว่างมาà¸à¸­à¸¢à¸¹à¹ˆà¹ƒà¸™à¹€à¸‚ตà¸à¸²à¸£à¸¡à¸­à¸‡à¹€à¸«à¹‡à¸™" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "ปรับดวงตาตามสภาพของท้องฟ้า" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "ดาวตà¸" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" -msgstr "" +msgstr "อัตราตà¸à¸£à¸²à¸¢à¸Šà¸±à¹ˆà¸§à¹‚มงที่จุดเหนือศีรษะ" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" +msgstr "ZHR:" + +#: src/ui_viewDialog.h:1253 +msgid "1000" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" -msgstr "" +msgstr "ขอบเขตโชติมาตร (สำหรับผู้ที่สังเà¸à¸•à¸”้วยตาเปล่า/à¸à¸¥à¹‰à¸­à¸‡à¸ªà¸­à¸‡à¸•à¸²)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" -msgstr "" +msgstr "ขอบเขตโชติมาตร" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "ขอบเขตโชติมาตรของดาวฤà¸à¸©à¹Œ" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" +"ขอบเขตโชติมาตรของวัตถุท้องฟ้าห้วงลึภ(à¸à¸£à¸°à¸ˆà¸¸à¸à¸”าว, ดาราจัà¸à¸£ à¹à¸¥à¸°à¹€à¸™à¸šà¸´à¸§à¸¥à¸²)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "à¸à¸¥à¸¸à¹ˆà¸¡à¸”าว" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "à¹à¸ªà¸”งเส้น" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "à¹à¸ªà¸”งป้ายชื่อ" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "à¹à¸ªà¸”งขอบเขต" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "à¹à¸ªà¸”งภาพวาด" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "ความสว่างของภาพà¸à¸¥à¸¸à¹ˆà¸¡à¸”าว:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ทรงà¸à¸¥à¸¡à¸—้องฟ้า" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "à¹à¸ªà¸”งเส้นศูนย์สูตร" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "à¹à¸ªà¸”งเส้นเมริเดียน" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "à¹à¸ªà¸”งเส้นขอบฟ้า" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "à¹à¸ªà¸”งเส้นสุริยวิถี" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "à¹à¸ªà¸”งเส้นระนาบดาราจัà¸à¸£" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "à¸à¸²à¸£à¸‰à¸²à¸¢à¸ à¸²à¸ž" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "เพิ่มหรือลบภูมิทัศน์" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "à¹à¸ªà¸”งพื้นดิน" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "à¹à¸ªà¸”งหมอà¸" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "ใช้ดาวเคราะห์ที่เà¸à¸µà¹ˆà¸¢à¸§à¸‚้องà¹à¸¥à¸°à¸•à¸³à¹à¸«à¸™à¹ˆà¸‡" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "ใช้ภูมิทัศน์นี้เป็นค่าเริ่มต้น" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "ใช้คุณลัà¸à¸©à¸“ะท้องฟ้านี้เป็นค่าเริ่มต้น" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "มองเห็นได้" @@ -3933,7 +4202,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "ทิศทางที่คุณต้องà¸à¸²à¸£à¹€à¸¡à¸·à¹ˆà¸­à¹€à¸£à¸´à¹ˆà¸¡ Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "ข้อมูลวัตถุที่เลือà¸" @@ -3949,11 +4218,8 @@ msgid "Display no information" msgstr "ไม่à¹à¸ªà¸”งข้อมูล" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "ไม่มี" @@ -4088,14 +4354,14 @@ #: src/ui_configurationDialog.h:1061 msgid "Mouse cursor timeout:" -msgstr "" +msgstr "เวลาที่à¹à¸ªà¸”งตัวชี้เมาส์:" #: src/ui_configurationDialog.h:1063 msgid "seconds" msgstr "วินาที" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "วันà¹à¸¥à¸°à¹€à¸§à¸¥à¸²à¹€à¸£à¸´à¹ˆà¸¡à¸•à¹‰à¸™" @@ -4107,41 +4373,45 @@ msgid "Other:" msgstr "อื่น ๆ :" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "ใช้วันà¹à¸¥à¸°à¹€à¸§à¸¥à¸²à¸—้องถิ่นในขณะนี้" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "ใช้ค่าขณะนี้" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "เริ่ม Stellarium ตามวันà¹à¸¥à¸°à¹€à¸§à¸¥à¸²à¸‚องระบบ" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "ใช้วันที่à¹à¸¥à¸°à¹€à¸§à¸¥à¸²à¸‚องระบบ" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "ตั้งค่าเวลาของà¸à¸²à¸£à¸ˆà¸³à¸¥à¸­à¸‡à¹€à¸«à¸•à¸¸à¸à¸²à¸£à¸“์หาà¸à¸§à¸±à¸™à¸—ี่ตรงà¸à¸±à¸šà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™ Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "เวลาของระบบ:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" -msgstr "" +msgstr "ค่าตรวจà¹à¸à¹‰à¹€à¸§à¸¥à¸²" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "à¹à¸à¹‰à¹„ขสมà¸à¸²à¸£" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "ตัวเลือà¸à¸—้องฟ้าจำลอง" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4149,51 +4419,51 @@ "ปรับภาพเป็นà¸à¸²à¸£à¸ªà¸°à¸—้อนผิวโค้งสำหรับà¸à¸²à¸£à¹ƒà¸Šà¹‰à¹ƒà¸™à¸à¸²à¸£à¸‰à¸²à¸¢à¸ à¸²à¸žà¸¥à¸‡à¸šà¸™à¸à¸£à¸°à¸ˆà¸à¹‚ค้งของระบบท้องฟ้า" "จำลองราคาประหยัด" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "ปรับภาพให้เหมือนสะท้อนà¸à¸£à¸°à¸ˆà¸à¹‚ค้งทรงà¸à¸¥à¸¡" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "บังส่วนที่อยู่นอà¸à¸¡à¸¸à¸¡à¸¡à¸­à¸‡à¸£à¸¹à¸›à¸§à¸‡à¸à¸¥à¸¡" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "มุมมองรูปวงà¸à¸¥à¸¡" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "ซ่อนà¸à¸¥à¸¸à¹ˆà¸¡à¸”าวอื่นเมื่อคลิà¸à¸—ี่à¸à¸¥à¸¸à¹ˆà¸¡à¸”าวà¸à¸¥à¸¸à¹ˆà¸¡à¸«à¸™à¸¶à¹ˆà¸‡" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "เลือà¸à¸à¸¥à¸¸à¹ˆà¸¡à¸”าวหนึ่ง" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "วางป้ายอัà¸à¸©à¸£à¹ƒà¸«à¹‰à¸­à¸¢à¸¹à¹ˆà¹ƒà¸™à¹à¸™à¸§à¸‚นานà¸à¸±à¸šà¸‚อบฟ้า" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "ป้ายà¹à¸ªà¸”งความโน้มถ่วง" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "สลับà¸à¸²à¸£à¹à¸ªà¸”งภาพพื้นหลังของเนบิวลา" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "à¹à¸ªà¸”งปุ่มภาพพื้นหลังของเนบิวลา" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "สลับปุ่มพลิà¸à¸ à¸²à¸žà¹à¸™à¸§à¸•à¸±à¹‰à¸‡à¹à¸¥à¸°à¹à¸™à¸§à¸™à¸­à¸™" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "à¹à¸ªà¸”งปุ่มพลิà¸" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4201,92 +4471,100 @@ "เมื่อà¸à¸³à¸«à¸™à¸”ให้ทำงาน, ปุ่ม \"ย่อภาพอัตโนมัติ\" " "จะถูà¸à¸à¸³à¸«à¸™à¸”เป็นค่าเริ่มต้นในทิศทางà¸à¸²à¸£à¸¡à¸­à¸‡" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "ซูมออà¸à¸­à¸±à¸•à¹‚นมัติเพื่อà¸à¸¥à¸±à¸šà¹„ปยังทิศทางของมุมมองเริ่มต้น" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"à¹à¸ªà¸”งเงาที่เà¸à¸´à¸”จาà¸à¹à¸ªà¸‡à¸­à¸²à¸—ิตย์ตà¸à¸à¸£à¸°à¸—บบนดาวเคราะห์à¹à¸¥à¸°à¸”าวบริวาร " +"(à¸à¸²à¸£à¹Œà¸”à¹à¸ªà¸”งผลจำเป็นต้องรองรับ OpenGL รุ่น 2 หรือสูงà¸à¸§à¹ˆà¸²)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "à¹à¸ªà¸”งเงาเนื่องจาà¸à¸”วงอาทิตย์" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "ภาพหน้าจอ" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "ไดเร็à¸à¸—อรีที่บันทึà¸à¸ à¸²à¸žà¸«à¸™à¹‰à¸²à¸ˆà¸­" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "à¸à¸¥à¸±à¸šà¸ªà¸µ" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "ปรับปรุงà¹à¸„็ตตาล็อà¸à¸”าว" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "คลิà¸à¸—ี่นี่เพื่อเริ่มà¸à¸²à¸£à¸”าวน์โหลด" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "ดาวน์โหลดà¹à¸Ÿà¹‰à¸¡à¸™à¸µà¹‰à¹€à¸žà¸·à¹ˆà¸­à¹€à¸žà¸´à¹ˆà¸¡à¸ˆà¸³à¸™à¸§à¸™à¸”าวให้มาà¸à¸‚ึ้น" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "เริ่มต้นà¸à¸²à¸£à¸”าวน์โหลดใหม่" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "ลองซ้ำ" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "หยุดà¸à¸²à¸£à¸”าวน์โหลด คุณสามารถเริ่มต้นใหม่ได้ในภายหลัง" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "ยà¸à¹€à¸¥à¸´à¸" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "ปิดหน้าต่างเมื่อสคริปต์ทำงาน" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "สั่งให้สคริปต์ที่เลือà¸à¹„ว้ทำงาน" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "หยุดสคริปต์ที่à¸à¸³à¸¥à¸±à¸‡à¸—ำงานอยู่" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "โหลดเมื่อเริ่มต้นระบบ" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "ปรับà¹à¸•à¹ˆà¸‡" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "หลัà¸" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ข้อมูล" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "นำทาง" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "เครื่องมือ" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡" @@ -4462,12 +4740,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "à¹à¸ªà¸”งà¹à¸šà¸£à¸´à¸‡à¹€à¸‚็มทิศตามà¹à¸™à¸§à¸‚อบฟ้า" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "เลนส์ใà¸à¸¥à¹‰à¸•à¸²" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4477,164 +4755,164 @@ "(จำลองเฉพาะà¸à¸³à¸¥à¸±à¸‡à¸‚ยายà¹à¸¥à¸°à¸‚อบเขตภาพ) นอà¸à¸ˆà¸²à¸à¸™à¸µà¹‰ ยังสามารถà¹à¸ªà¸”งเฟรมเซนเซอร์à¹à¸¥à¸°à¸§à¸‡ " "Telrad ด้วย" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "à¸à¸£à¸¸à¸“าเลือà¸à¸§à¸±à¸•à¸–ุà¸à¹ˆà¸­à¸™à¸ˆà¸°à¸ªà¸¥à¸±à¸šà¹„ปที่มุมมองเลนส์ใà¸à¸¥à¹‰à¸•à¸²" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "เลนส์ใà¸à¸¥à¹‰à¸•à¸²&à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "เลนส์ใà¸à¸¥à¹‰à¸•à¸²&ถัดไป" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "เลือà¸à¹€&ลนส์ใà¸à¸¥à¹‰à¸•à¸²" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "สลับ&สายใยเล็ง" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "&ปรับà¹à¸•à¹ˆà¸‡à¹€à¸¥à¸™à¸ªà¹Œà¹ƒà¸à¸¥à¹‰à¸•à¸²" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "สลับ&ซีซีดี" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "สลับ &Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "ซีซีดี&à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "ซีซีดี&ถัดไป" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "เ&ลือà¸à¸‹à¸µà¸‹à¸µà¸”ี" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&หมุนซีซีดี" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "&ยà¸à¹€à¸¥à¸´à¸à¸à¸²à¸£à¸«à¸¡à¸¸à¸™" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "เลนส์ใà¸à¸¥à¹‰à¸•à¸² #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "เลนส์ใà¸à¸¥à¹‰à¸•à¸² #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "ความยาวโฟà¸à¸±à¸ªà¸‚องเลนส์ใà¸à¸¥à¹‰à¸•à¸²: %1 มม." #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "ขอบเขตภาพปราà¸à¸à¸‚องเลนส์ใà¸à¸¥à¹‰à¸•à¸²: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" -msgstr "" +msgstr "เลนส์ #%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" -msgstr "" +msgstr "เลนส์ #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" -msgstr "" +msgstr "เลนส์ : ไม่มี" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "à¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์ #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "à¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์ #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸‚ยาย: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "ขอบเขตภาพ: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "ขนาด: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "เซนเซอร์ #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "เซนเซอร์ #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" -msgstr "" +msgstr "เ&ลนส์" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&à¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "à¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์&à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "à¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์&ถัดไป" @@ -4648,11 +4926,11 @@ #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:207 msgid "Previous lens" -msgstr "" +msgstr "เลนส์à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:213 msgid "Next lens" -msgstr "" +msgstr "เลนส์ถัดไป" #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:219 msgid "Previous CCD frame" @@ -4706,64 +4984,69 @@ msgid "Apparent field of view of the ocular" msgstr "ขอบเขตภาพปราà¸à¸à¸‚องเลนส์ใà¸à¸¥à¹‰à¸•à¸²" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" -msgstr "" +msgstr "ตัวคูณ: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" -msgstr "" +msgstr "เลนส์: ไม่มี" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" -msgstr "" +msgstr "ตัวคูณ: ไม่มี" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "ความยาวโฟà¸à¸±à¸ªà¸‚องเลนส์ใà¸à¸¥à¹‰à¸•à¸²" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "à¸à¸²à¸£à¸«à¸¡à¸¸à¸™: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "à¸à¸³à¸¥à¸±à¸‡à¸‚ยายจาà¸à¸à¸¥à¹‰à¸­à¸‡à¸ªà¸­à¸‡à¸•à¸²à¸™à¸µà¹‰" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "ขอบเขตภาพจริงจาà¸à¸à¸¥à¹‰à¸­à¸‡à¸ªà¸­à¸‡à¸•à¸²à¸™à¸µà¹‰" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" -msgstr "" +msgstr "à¸à¸³à¸¥à¸±à¸‡à¸‚ยายที่ได้จาà¸à¸—ัศนูปà¸à¸£à¸“์นี้" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" -msgstr "" +msgstr "ขอบเขตภาพที่ได้จาà¸à¸—ัศนูปà¸à¸£à¸“์นี้" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¹€à¸¥à¸™à¸ªà¹Œà¹ƒà¸à¸¥à¹‰à¸•à¸²" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "รุ่น" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "คุณลัà¸à¸©à¸“ะของเลนส์บาร์โลว์" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "ทั่วไป" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4775,7 +5058,7 @@ "รวมไปถึงซีซีดี เมื่อเปิดใช้งานครั้งà¹à¸£à¸ " "โปรà¹à¸à¸£à¸¡à¸ˆà¸°à¹à¸ªà¸”งตัวอย่างของอุปà¸à¸£à¸“์เพื่อให้คุณสามารถเริ่มใช้งานได้" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4786,14 +5069,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4802,291 +5085,360 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "หาà¸à¸„ุณพบปัà¸à¸«à¸²à¹ƒà¸” ๆ à¸à¸£à¸¸à¸“าà¹à¸ˆà¹‰à¸‡à¹ƒà¸«à¹‰à¹€à¸£à¸²à¸—ราบ ขอให้เพลิดเพลิน!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" -msgstr "" +msgstr "à¹à¸›à¹‰à¸™à¸¥à¸±à¸”" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[ไม่มีà¸à¸²à¸£à¸à¸³à¸«à¸™à¸”ปุ่มเอาไว้]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "เปิด/ปิด ภาพซ้อนà¹à¸ªà¸”งเลนส์ใà¸à¸¥à¹‰à¸•à¸²" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "เปิดเมนูนำทางà¹à¸šà¸šà¸œà¸¸à¸”ขึ้น" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "เปิดใช้งานเฉพาะเมื่อเลือà¸à¸§à¸±à¸•à¸–ุใดวัตถุหนึ่ง" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "วงà¸à¸¥à¸¡à¸¡à¸²à¸•à¸£à¸²à¸ªà¹ˆà¸§à¸™à¸ à¸²à¸ž" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "à¸à¸³à¸«à¸™à¸”à¹à¸›à¹‰à¸™à¸žà¸´à¸¡à¸žà¹Œ" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "สลับมุมมองเลนส์ใà¸à¸¥à¹‰à¸•à¸²:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "เปิดเมนูนำทางà¹à¸šà¸šà¸œà¸¸à¸”ขึ้น:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "ส่วนติดต่อà¸à¸±à¸šà¸œà¸¹à¹‰à¹ƒà¸Šà¹‰" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "à¹à¸œà¸‡à¸„วบคุมบนหน้าจอ" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "ใช้หน่วยองศาà¹à¸¥à¸°à¸¥à¸´à¸›à¸”าสำหรับขอบเขตà¸à¸²à¸£à¸¡à¸­à¸‡à¹€à¸«à¹‡à¸™à¸‚องซีซีดี" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "ทั่วไป" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "เลนส์ใà¸à¸¥à¹‰à¸•à¸²" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "เพิ่ม" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "ชื่อ:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "ขอบเขตภาพปราà¸à¸:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "ความยาวโฟà¸à¸±à¸ª:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "ขั้นช่องจำà¸à¸±à¸”à¹à¸ªà¸‡" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "à¸à¸¥à¹‰à¸­à¸‡à¸ªà¸­à¸‡à¸•à¸²" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "เลนส์" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "ตัวคูณ :" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "เซนเซอร์" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "ความละเอียด x (จุดภาพ):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "ความละเอียด y (จุดภาพ):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "ความà¸à¸§à¹‰à¸²à¸‡à¸‚องชิป (มม.):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "ความสูงของชิป (มม.):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "ความà¸à¸§à¹‰à¸²à¸‡à¸ˆà¸¸à¸”ภาพ (ไมครอน):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "ความสูงของจุดภาพ (ไมครอน):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "à¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "เส้นผ่านศูนย์à¸à¸¥à¸²à¸‡:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "พลิà¸à¹ƒà¸™à¹à¸™à¸§à¸™à¸­à¸™" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "พลิà¸à¹ƒà¸™à¹à¸™à¸§à¸•à¸±à¹‰à¸‡" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "เà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸š" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "ดาวเทียม" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "à¸à¸²à¸£à¸„าดหมายตำà¹à¸«à¸™à¹ˆà¸‡à¸”าวเทียมในวงโคจรรอบโลà¸à¸ˆà¸²à¸à¸‚้อมูล TLE ของ NORAD" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "à¹à¸Ÿà¹‰à¸¡ satellites.json à¹à¸Ÿà¹‰à¸¡à¹€à¸à¹ˆà¸²à¹€à¸‚้าà¸à¸±à¸™à¹„ม่ได้à¹à¸¥à¹‰à¸§ à¸à¸³à¸¥à¸±à¸‡à¹ƒà¸Šà¹‰à¹à¸Ÿà¹‰à¸¡à¸›à¸£à¸´à¸¢à¸²à¸¢" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "เห็นได้" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "วิทยาศาสตร์" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "สื่อสาร" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "นำทาง" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "วิทยุสมัครเล่น" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "สภาพอาà¸à¸²à¸¨" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "ค้างฟ้า" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "ยุติà¸à¸²à¸£à¸—ำงาน" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "จีพีเอส" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "อิริเดียม" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "à¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์อวà¸à¸²à¸¨à¸®à¸±à¸šà¹€à¸šà¸´à¸¥" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "สถานีอวà¸à¸²à¸¨à¸™à¸²à¸™à¸²à¸Šà¸²à¸•à¸´" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "หมายเลขในà¹à¸„็ตตาล็อà¸" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "ชื่อเรียà¸à¸ªà¸²à¸à¸¥" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "ดาวเทียม" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "ระยะห่าง (à¸à¸¡.): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "อัตราà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¸£à¸°à¸¢à¸°à¸«à¹ˆà¸²à¸‡ (à¸à¸¡./วินาที): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "ระดับความสูง (à¸à¸¡.): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "จุดใต้ดาวเทียม (ละติจูด/ลองจิจูด): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "พิà¸à¸±à¸” TEME (à¸à¸¡.): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "ความเร็ว TEME (à¸à¸¡./วินาที): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "ดาวเทียมà¹à¸¥à¸°à¸œà¸¹à¹‰à¸ªà¸±à¸‡à¹€à¸à¸•à¸­à¸¢à¸¹à¹ˆà¹ƒà¸™à¹à¸ªà¸‡à¸­à¸²à¸—ิตย์" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "สามารถเห็นดาวเทียมได้" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "ดาวเทียมอยู่ในเงามืด" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "ไม่สามารถเห็นดาวเทียมได้" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸”าวเทียม" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸”าวเทียมใช้พยาà¸à¸£à¸“์ตำà¹à¸«à¸™à¹ˆà¸‡à¸‚องดาวเทียมในวงโคจรรอบโลà¸" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "หมายเหตุสำหรับผู้ใช้" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "ดาวเทียมà¹à¸¥à¸°à¸§à¸‡à¹‚คจรของดาวเทียมจะà¹à¸ªà¸”งเฉพาะเมื่อผู้สังเà¸à¸•à¸­à¸¢à¸¹à¹ˆà¸šà¸™à¹‚ลà¸" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5095,7 +5447,7 @@ "ตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่พยาà¸à¸£à¸“์จะมีความà¹à¸¡à¹ˆà¸™à¸¢à¸³à¹ƒà¸™à¸Šà¹ˆà¸§à¸‡à¹€à¸§à¸¥à¸²à¸ªà¸±à¹‰à¸™ ๆ (อาจเป็นวัน สัปดาห์ " "หรือเดือนหนึ่ง ย้อนไปในอดีตหรืออนาคต) นอà¸à¸à¸£à¸­à¸šà¹€à¸§à¸¥à¸²à¸™à¸µà¹‰ จะà¹à¸ªà¸”งผลผิดพลาดได้" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5105,7 +5457,7 @@ "เพื่อให้ได้ข้อมูลที่ถูà¸à¸•à¹‰à¸­à¸‡" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5115,7 +5467,7 @@ "คลิà¸à¸›à¸¸à¹ˆà¸¡ \"%1\" ในà¹à¸—็บ \"%2\" ของà¸à¸¥à¹ˆà¸­à¸‡à¹‚ต้ตอบนี้ จะย้อนไปใช้à¹à¸Ÿà¹‰à¸¡ %3 เริ่มต้น " "à¹à¸Ÿà¹‰à¸¡à¹€à¸à¹ˆà¸²à¸ˆà¸°à¸–ูà¸à¸ªà¸³à¸£à¸­à¸‡à¹€à¸›à¹‡à¸™ %4 ซึ่งอยู่ในไดเร็à¸à¸—อรีผู้ใช้ \"modules/Satellites/\"" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5124,11 +5476,11 @@ "หรืออาจเà¸à¸´à¸”ความผิดพลาดได้" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸‚้อมูล TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5138,7 +5490,7 @@ "ค่าเริ่มต้นได้à¸à¸³à¸«à¸™à¸”ให้ทำà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¹€à¸¡à¸·à¹ˆà¸­à¸‚้อมูลที่มีอยู่ ล้าสมัยเà¸à¸´à¸™à¸à¸§à¹ˆà¸² 72 " "ชั่วโมง " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5149,7 +5501,7 @@ "คุณอาจปรับปรุงข้อมูลจาà¸à¹à¸Ÿà¹‰à¸¡à¸‚้อมูลในคอมพิวเตอร์ของคุณ " "โดยต้องมีรูปà¹à¸šà¸šà¹€à¸”ียวà¸à¸±à¸šà¸šà¸™à¹€à¸§à¹‡à¸šà¹„ซต์ Celestrak (ดู %1)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5158,11 +5510,11 @@ "หาà¸à¸—้ายชื่อดาวเทียมในข้อมูลที่ปรับปรุงใหม่มีอัà¸à¸‚ระภายในวงเล็บเหลี่ยม " "มันจะถูà¸à¸¥à¸šà¸­à¸­à¸à¸à¹ˆà¸­à¸™à¸—ี่ข้อมูลจะถูà¸à¸™à¸³à¹„ปใช้" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "เพิ่มดาวเทียมดวงใหม่" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5174,11 +5526,11 @@ "ซึ่งอยู่ในหน้าต่างà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าดาวเทียม 2. ไปที่à¹à¸—็บดาวเทียม à¹à¸¥à¹‰à¸§à¸„ลิà¸à¸›à¸¸à¹ˆà¸¡ '+' " "จาà¸à¸™à¸±à¹‰à¸™ เลือà¸à¸”าวเทียมที่คุณต้องà¸à¸²à¸£à¸ˆà¸°à¹€à¸žà¸´à¹ˆà¸¡ à¹à¸¥à¹‰à¸§à¸„ลิà¸à¸›à¸¸à¹ˆà¸¡ \"เพิ่ม\"" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "บันทึà¸à¸—างเทคนิค" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5186,7 +5538,7 @@ "ตำà¹à¸«à¸™à¹ˆà¸‡à¸”าวเทียมคำนวณด้วยวิธี SGP4 à¹à¸¥à¸° SDP4 โดยใช้ข้อมูลวงโคจร (TLE) จาภ" "NORAD " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5195,24 +5547,26 @@ "Report #3 ฉบับปรับปรุง (รวมถึง Spacetrack Report #6) " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "ดู %1เอà¸à¸ªà¸²à¸£à¸™à¸µà¹‰%2 สำหรับรายละเอียด" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "ลิงà¸à¹Œ" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5222,31 +5576,34 @@ "ในหัวเรื่อง เมื่อส่งข้อความ" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "หาà¸à¸¡à¸µà¸„ำถาม คุณสามารถ%1ถามได้ที่นี่%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "รายงานข้อผิดพลาดได้%1ที่นี่%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5254,294 +5611,336 @@ "หาà¸à¸•à¹‰à¸­à¸‡à¸à¸²à¸£à¹ƒà¸«à¹‰à¹‚ปรà¹à¸à¸£à¸¡à¸¡à¸µà¸„วามสามารถอื่น ๆ เพิ่มเติม " "คุณสามารถร้องขอโดยสร้างรายงานข้อผิดพลาด à¹à¸¥à¹‰à¸§à¸•à¸±à¹‰à¸‡à¸„่าเป็น \"wishlist\"" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "à¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸ˆà¸²à¸à¸­à¸´à¸™à¹€à¸—อร์เน็ตถูà¸à¸›à¸´à¸”à¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "ปรับปรุงครั้งถัดไป: < 1 นาที" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "ปรับปรุงครั้งถัดไป: %1 นาที" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "ปรับปรุงครั้งถัดไป: %1 ชั่วโมง" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "ปรับปรุงเดี๋ยวนี้" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "ปรับปรุงจาà¸à¹à¸Ÿà¹‰à¸¡à¸‚้อมูล" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "มีข้อผิดพลาดในà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸‚้อมูล" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "ปรับปรุงดาวเทียม %1/%2 ดวง; เพิ่ม %3; นำออภ%4" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "ปรับปรุงข้อมูลดาวเทียมà¹à¸¥à¹‰à¸§ %1/%2 ดวง; ไม่พบ %3 ดวง" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "ปรับปรุงดาวเทียม %1/%2 ดวง; เพิ่ม %3; ไม่พบ %4" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลใหม่]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "ปรับปรุงเดี๋ยวนี้" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "ปรับปรุงจาà¸à¹à¸Ÿà¹‰à¸¡à¸‚้อมูล" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[เà¸à¸´à¸”ความผิดพลาดในà¸à¸²à¸£à¸„ำนวณวงโคจร]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[เพิ่มเข้ามาใหม่ทั้งหมด]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[ไม่ได้à¹à¸ªà¸”งข้อมูลทั้งหมด]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[à¹à¸ªà¸”งข้อมูลทั้งหมด]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[ทั้งหมด]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "à¸à¸¥à¸¸à¹ˆà¸¡à¹ƒà¸«à¸¡à¹ˆ..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "เลือà¸à¹à¸Ÿà¹‰à¸¡à¸‚้อมูล TLE ที่จะปรับปรุง" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¸”าวน์โหลดข้อมูล..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "Stellarium à¸à¸³à¸¥à¸±à¸‡à¸”าวน์โหลดข้อมูลดาวเทียมจาà¸à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูล à¸à¸£à¸¸à¸“ารอ..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "เลือà¸à¹à¸Ÿà¹‰à¸¡à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูล TLE..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¸›à¸£à¸°à¸¡à¸§à¸¥à¸œà¸¥à¸‚้อมูล..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "ไม่สามารถดาวน์โหลดข้อมูลได้ พยายามอีà¸à¸„รั้งในภายหลัง" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "หมายเลขในà¹à¸„็ตตาล็อà¸: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าดาวเทียม" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "ปรับปรุงรายชื่อ TLE จาà¸à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลบนอินเทอร์เน็ต" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "ปรับปรุง" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "ปรับปรุงจาà¸à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลบนอินเทอร์เน็ต" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "ปรับปรุงข้อมูลดาวเทียมจาà¸à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลบนอินเทอร์เน็ต" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "ปรับปรุงล่าสุด:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" +"เพิ่มดาวเทียมใหม่ทุà¸à¸”วงจาà¸à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลที่เลือภเมื่อมีà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸‚้อมูล" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"ลบดาวเทียมที่ไม่มีอยู่ในรายà¸à¸²à¸£à¸‚องà¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลที่เลือภเมื่อมีà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸‚้อมูล" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "ความถี่ในà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡ (ชั่วโมง):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "ป้ายชื่อ" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "ขนาดอัà¸à¸©à¸£à¸‚องชื่อ (จุดภาพ):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "เส้นวงโคจร" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "จำนวนของเซà¸à¹€à¸¡à¸™à¸•à¹Œà¸—ี่จะใช้ในà¸à¸²à¸£à¸§à¸²à¸”เส้น" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "จำนวนเซà¸à¹€à¸¡à¸™à¸•à¹Œ:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "ระยะเวลาของเซà¸à¹€à¸¡à¸™à¸•à¹Œà¸«à¸™à¸¶à¹ˆà¸‡à¹ƒà¸™à¸«à¸™à¹ˆà¸§à¸¢à¸§à¸´à¸™à¸²à¸—ี:" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "ความยาวของเซà¸à¹€à¸¡à¸™à¸•à¹Œ (วินาที):" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "จำนวนเซà¸à¹€à¸¡à¸™à¸•à¹Œà¸—ี่ใช้วาดà¹à¸•à¹ˆà¸¥à¸°à¹€à¸ªà¹‰à¸™" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "ความยาวของส่วนที่จางลง:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "คืนค่าเริ่มต้นเดิม" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "บันทึà¸à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าต่าง ๆ ให้เป็นค่าเริ่มต้น" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "ตั้งค่า" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "คลิà¸à¸ªà¸­à¸‡à¸„รั้งที่ดาวเทียมเพื่อเริ่มติดตามดาวเทียมดวงนั้น" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "เพิ่มดาวเทียม" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "ลบดาวเทียมที่เลือà¸" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "บันทึà¸à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "หมายเลขในà¹à¸„็ตตาล็อà¸:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "à¹à¸ªà¸”งดาวเทียมที่เลือà¸" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "à¹à¸ªà¸”งผล" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "à¹à¸ªà¸”งเส้นวงโคจรสำหรับดาวเทียมที่เลือà¸" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "วงโคจร" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "หมายเลขในà¹à¸„็ตตาล็อà¸:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "ไม่ต้องปรับปรุง (หรือลบ) ดาวเทียมที่เลือภเมื่อมีà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸‚้อมูล" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "ไม่ต้องปรับปรุง" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "รายละเอียด:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "à¸à¸¥à¸¸à¹ˆà¸¡:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "จุลภาคà¹à¸¢à¸à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸­à¸‚องà¹à¸•à¹ˆà¸¥à¸°à¸à¸¥à¸¸à¹ˆà¸¡" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "ข้อมูล TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "ข้อมูลวงโคจรà¹à¸šà¸š 2 บรรทัดจาภNORAD" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "ลบดาวเทียมที่เลือà¸" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "เพิ่มดาวเทียม" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "ชุดข้อมูล TLE:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "บันทึà¸à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5549,15 +5948,15 @@ "ป้อนหรือà¹à¸à¹‰à¹„ข URL ของà¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลที่เลือภà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡à¸ˆà¸°à¸–ูà¸à¸šà¸±à¸™à¸—ึà¸à¹€à¸¡à¸·à¹ˆà¸­à¸à¸” " "Enter" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "เพิ่มà¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลใหม่" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "ลบà¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลที่เลือà¸" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูล" @@ -5567,7 +5966,7 @@ #: plugins/Satellites/src/ui_satellitesImportDialog.h:214 msgid "Get data from update sources" -msgstr "รับข้อมูลที่ทันสมัยจาà¸à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูล" +msgstr "รับข้อมูลจาà¸à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลที่มีà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡" #: plugins/Satellites/src/ui_satellitesImportDialog.h:215 #: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:525 @@ -5593,11 +5992,11 @@ msgid "Discard" msgstr "ยà¸à¹€à¸¥à¸´à¸" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "ควบคุมà¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5605,12 +6004,12 @@ "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸ªà¸³à¸«à¸£à¸±à¸šà¹ƒà¸«à¹‰ Stellarium ส่งคำสั่ง \"สลูว์\" " "ไปยังà¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์ที่à¸à¸²à¸™à¸¢à¸¶à¸”ควบคุมด้วยคอมพิวเตอร์ (à¸à¸¥à¹‰à¸­à¸‡à¹à¸šà¸š GoTo)" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "หันà¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์ #%1 ไปยังวัตถุที่เลือà¸" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "หันà¸à¸¥à¹‰à¸­à¸‡à¹‚ทรทรรศน์ #%1 ไปยังตำà¹à¸«à¸™à¹ˆà¸‡à¸—ี่อยู่à¸à¸¥à¸²à¸‡à¸ˆà¸­à¸ à¸²à¸žà¹ƒà¸™à¸‚ณะนี้" @@ -6012,62 +6411,62 @@ "สามารถใช้สำหรับตั้งค่าเขตเวลาà¹à¸¥à¸°à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡à¸£à¸¹à¸›à¹à¸šà¸šà¸§à¸±à¸™-เวลาในà¹à¸–บด้านล่าง" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "มà¸à¸£à¸²à¸„ม" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "à¸à¸¸à¸¡à¸ à¸²à¸žà¸±à¸™à¸˜à¹Œ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "มีนาคม" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "เมษายน" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "พฤษภาคม" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "มิถุนายน" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "à¸à¸£à¸à¸Žà¸²à¸„ม" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "สิงหาคม" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "à¸à¸±à¸™à¸¢à¸²à¸¢à¸™" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "ตุลาคม" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "พฤศจิà¸à¸²à¸¢à¸™" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "ธันวาคม" @@ -6224,7 +6623,7 @@ msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าเหล่านี้จะควบคุมà¸à¸²à¸£à¹à¸ªà¸”งวันที่à¹à¸¥à¸°à¹€à¸§à¸¥à¸²à¸šà¸™à¹à¸–บด้านล่าง" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "รูปà¹à¸šà¸šà¸à¸²à¸£à¹à¸ªà¸”งเวลา" @@ -6242,7 +6641,7 @@ msgstr "รูปà¹à¸šà¸š 24 ชั่วโมง" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "รูปà¹à¸šà¸šà¸à¸²à¸£à¹à¸ªà¸”งวันที่" @@ -6258,11 +6657,11 @@ msgid "mm-dd-yyyy" msgstr "mm-dd-yyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "ส่วนต่อประสานà¸à¸±à¸šà¸œà¸¹à¹‰à¹ƒà¸Šà¹‰à¹à¸šà¸šà¸‚้อความ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6270,144 +6669,144 @@ "ส่วนต่อประสานผู้ใช้à¹à¸šà¸šà¸‚้อความ (TUI) ซึ่งเป็นโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸ªà¸³à¸«à¸£à¸±à¸šà¸£à¸¸à¹ˆà¸™ 0.9.x " "นำมาใช้ในระบบท้องฟ้าจำลอง" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "วัตถุในระบบสุริยะ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "วัน/เวลา ปัจจุบัน" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "ตั้งค่าเขตเวลา" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "ตั้งวัน/เวลาขณะเริ่มโปรà¹à¸à¸£à¸¡à¹„ว้ล่วงหน้า" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "ระบบ" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "ตั้งล่วงหน้า" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "mmddyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ddmmyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "yyyymmdd" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12h" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24h" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "ภาษา" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "à¹à¸ªà¸”งดาวฤà¸à¸©à¹Œ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "สี" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "ชื่อเนบิวลา" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "เนบิวลา" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "เส้นระนาบดาราจัà¸à¸£" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "เอฟเฟà¸à¸•à¹Œ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "ซูมด้วยมือ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "ตัวคูณà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸•à¸²à¸¡à¹‚ชติมาตร" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "ความสว่างของทางช้างเผือà¸:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "ความถี่ของà¸à¸²à¸£à¹à¸ªà¸”งชื่อเนบิวลา:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "ช่วงเวลาซูม:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "เวลาà¹à¸ªà¸”งเคอร์เซอร์:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "ตั้งค่าที่อยู่ของภูมิทัศน์" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "เปิดใช้งานสคริปต์ภายใน" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "หยุดสคริปต์ที่à¸à¸³à¸¥à¸±à¸‡à¸—ำงาน" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "สคริปต์จาภCD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "ดูà¹à¸¥à¸£à¸°à¸šà¸š" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "โหลดà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าปริยาย" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "บันทึà¸à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าปัจจุบัน" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "ปิดโปรà¹à¸à¸£à¸¡" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[ไม่มีโหนด TUI]" @@ -6443,16 +6842,16 @@ "à¹à¸¥à¸°à¸„้นหาในà¸à¸²à¸™à¸‚้อมูลออนไลน์ ส่วนนี้ยังอยู่ระหว่างà¸à¸²à¸£à¸žà¸±à¸’นา" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "สืบค้นข้อมูลใน %1 ของ MPC:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "ผลà¸à¸²à¸£à¸ªà¸·à¸šà¸„้นเพียงหนึ่งเดียวจะถูà¸à¹à¸ªà¸”ง หาà¸à¸à¸²à¸£à¸ªà¸·à¸šà¸„้นประสบความสำเร็จ" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6460,7 +6859,7 @@ "สามารถระบุดาวหางà¹à¸¥à¸°à¸”าวเคราะห์น้อยได้ด้วยหมายเลข, ชื่อในภาษาอังà¸à¸¤à¸© " "หรือชื่อชั่วคราว" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6647,38 +7046,43 @@ msgid "Solar System" msgstr "ระบบสุริยะ" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "ซูเปอร์โนวาในประวัติศาสตร์" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸—ี่à¹à¸ªà¸”งซูเปอร์โนวาในประวัติศาสตร์ซึ่งสว่างà¸à¸§à¹ˆà¸²à¹‚ชติมาตร 10" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "ซูเปอร์โนวา" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "ชนิดของซูเปอร์โนวา: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸‹à¸¹à¹€à¸›à¸­à¸£à¹Œà¹‚นวาในประวัติศาสตร์" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸—ี่à¹à¸ªà¸”งซูเปอร์โนวาในประวัติศาสตร์ซึ่งสว่างà¸à¸§à¹ˆà¸²à¹‚ชติมาตร 10: " #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "à¸à¸£à¸²à¸Ÿà¸„วามสว่าง" @@ -6699,7 +7103,7 @@ msgstr "à¸à¸´à¸•à¸•à¸´à¸à¸£à¸£à¸¡à¸›à¸£à¸°à¸à¸²à¸¨" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6714,14 +7118,14 @@ msgstr "Institute for Theoretical and Experimental Physics" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "ในรัสเซีย" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6731,8 +7135,9 @@ "à¹à¸¥à¸°à¸£à¸¹à¸›à¹à¸šà¸šà¸‚องà¹à¸„็ตตาล็อภคุณสามารถอ่านได้%1จาà¸à¸—ี่นี่%2" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "ปรับปรุงครั้งถัดไป: %1 วัน" @@ -6750,29 +7155,106 @@ msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸‹à¸¹à¹€à¸›à¸­à¸£à¹Œà¹‚นวาในประวัติศาสตร์" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "ปรับปรุงà¹à¸„็ตตาล็อà¸à¸ˆà¸²à¸à¸­à¸´à¸™à¹€à¸—อร์เน็ต" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "ปรับปรุงจาà¸à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลบนอินเทอร์เน็ต" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "ความถี่ในà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡ (วัน):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[ข้อมูลà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¸–ัดไป]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "เควซาร์" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6790,11 +7272,11 @@ msgid "Z (redshift): %1" msgstr "Z (à¸à¸²à¸£à¹€à¸¥à¸·à¹ˆà¸­à¸™à¹„ปทางà¹à¸”ง): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¹€à¸„วซาร์" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6803,40 +7285,50 @@ "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¹€à¸„วซาร์à¹à¸ªà¸”งเควซาร์ที่สว่างà¸à¸§à¹ˆà¸²à¹‚ชติมาตร 16 ข้อมูลจาภ\"Quasars " "and Active Galactic Nuclei\" (13th Ed.)" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "เควซาร์ได้รับà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¹à¸¥à¹‰à¸§" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าเควซาร์" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¹€à¸„วซาร์" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "โหมดà¸à¸²à¸£à¹à¸ªà¸”งผลสำหรับเควซาร์" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าสำหรับเควซาร์" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "à¹à¸ªà¸”งทุà¸à¹€à¸„วซาร์โดยไม่ต้องà¹à¸ªà¸”งป้ายชื่อ" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "à¹à¸ªà¸”งà¸à¸²à¸£à¸à¸£à¸°à¸ˆà¸²à¸¢à¸•à¸±à¸§à¸ªà¸³à¸«à¸£à¸±à¸šà¹€à¸„วซาร์" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "เปิดใช้งานเมื่อเริ่มโปรà¹à¸à¸£à¸¡" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "à¹à¸ªà¸”งปุ่มเควซาร์บนà¹à¸–บเครื่องมือ" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "พัลซาร์" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6959,11 +7451,11 @@ "ดาวนิวตรอนเดี่ยวที่มีà¸à¸²à¸£à¹€à¸›à¸¥à¹ˆà¸‡à¸£à¸±à¸‡à¸ªà¸µà¹€à¸­à¸à¸‹à¹Œà¹€à¸Šà¸´à¸‡à¸„วามร้อนเป็นห้วง ๆ " "à¹à¸•à¹ˆà¸•à¸£à¸§à¸ˆà¹„ม่พบà¸à¸²à¸£à¹€à¸›à¸¥à¹ˆà¸‡à¸„ลื่นวิทยุ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸žà¸±à¸¥à¸‹à¸²à¸£à¹Œ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6974,67 +7466,71 @@ "B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) (%1astro-" "ph/0412641%2))" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "หมายเหตุ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "พัลซาร์จะมีชื่อนำหน้าด้วย 'PSR'" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "à¸à¸´à¸•à¸•à¸´à¸à¸£à¸£à¸¡à¸›à¸£à¸°à¸à¸²à¸¨" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino Radio Astronomy Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "Nancay Radioastronomical Observatory" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "ในà¸à¸£à¸±à¹ˆà¸‡à¹€à¸¨à¸ª" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "พัลซาร์ได้รับà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¹à¸¥à¹‰à¸§" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าพัลซาร์" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸žà¸±à¸¥à¸‹à¸²à¸£à¹Œ" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "โหมดà¸à¸²à¸£à¹à¸ªà¸”งผลสำหรับพัลซาร์" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าสำหรับพัลซาร์" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "à¹à¸ªà¸”งทุà¸à¸žà¸±à¸¥à¸‹à¸²à¸£à¹Œà¹‚ดยไม่ต้องà¹à¸ªà¸”งป้ายชื่อ" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "à¹à¸ªà¸”งà¸à¸²à¸£à¸à¸£à¸°à¸ˆà¸²à¸¢à¸•à¸±à¸§à¸ªà¸³à¸«à¸£à¸±à¸šà¸žà¸±à¸¥à¸‹à¸²à¸£à¹Œ" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "à¹à¸ªà¸”งปุ่มพัลซาร์บนà¹à¸–บเครื่องมือ" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "ดาวเคราะห์นอà¸à¸£à¸°à¸šà¸š" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7043,71 +7539,71 @@ "ข้อมูลดาวเคราะห์นอà¸à¸£à¸°à¸šà¸šà¸¡à¸²à¸ˆà¸²à¸ 'Extrasolar Planets Encyclopaedia' ที่ " "exoplanet.eu" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "ความเป็นโลหะ" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "มวล" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "รัศมี" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "อุณหภูมิยังผล: %1 เคลวิน" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "ดาวเคราะห์นอà¸à¸£à¸°à¸šà¸š" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "คาบ" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "วัน" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "ดาวพฤหัสบดี" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "à¸à¸¶à¹ˆà¸‡à¹à¸à¸™à¹€à¸­à¸" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "หน่วยดาราศาสตร์" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "ความเยื้องศูนย์à¸à¸¥à¸²à¸‡" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "มุมเอียง" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "ระยะห่างเชิงมุม" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "ปีที่ค้นพบ" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸”าวเคราะห์นอà¸à¸£à¸°à¸šà¸š" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7117,7 +7613,7 @@ "\"%1The Extrasolar Planets Encyclopaedia%2\"" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7126,42 +7622,131 @@ "หาà¸à¸„ุณต้องà¸à¸²à¸£à¸‚้อมูลโดยละเอียดเà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¹‚ปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸™à¸µà¹‰ ความเป็นมา " "à¹à¸¥à¸°à¸£à¸¹à¸›à¹à¸šà¸šà¸‚องà¹à¸„็ตตาล็อภคุณสามารถอ่านได้%1จาà¸à¸—ี่นี่%2" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "ปรับปรุง: ๑๖ เมษายน พ.ศ. ๒๕๔๕" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "ดาวเคราะห์นอà¸à¸£à¸°à¸šà¸šà¹„ด้รับà¸à¸²à¸£à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¹à¸¥à¹‰à¸§" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "à¸à¸²à¸£à¸›à¸£à¸±à¸šà¹à¸•à¹ˆà¸‡à¸”าวเคราะห์นอà¸à¸£à¸°à¸šà¸š" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าโปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸”าวเคราะห์นอà¸à¸£à¸°à¸šà¸š" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "ปรับปรุงข้อมูลดาวเคราะห์นอà¸à¸£à¸°à¸šà¸šà¸ˆà¸²à¸à¸­à¸´à¸™à¹€à¸—อร์เน็ต" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "โหมดà¸à¸²à¸£à¹à¸ªà¸”งผลสำหรับดาวเคราะห์นอà¸à¸£à¸°à¸šà¸š" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าสำหรับดาวเคราะห์นอà¸à¸£à¸°à¸šà¸š" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "à¹à¸ªà¸”งทุà¸à¸£à¸°à¸šà¸šà¸—ี่มีดาวเคราะห์โดยไม่ต้องà¹à¸ªà¸”งป้ายชื่อ" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "à¹à¸ªà¸”งà¸à¸²à¸£à¸à¸£à¸°à¸ˆà¸²à¸¢à¸•à¸±à¸§à¸ªà¸³à¸«à¸£à¸±à¸šà¸”าวเคราะห์นอà¸à¸£à¸°à¸šà¸š" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "à¹à¸ªà¸”งดาวเคราะห์นอà¸à¸£à¸°à¸šà¸šà¹‚ดยเริ่มตั้งà¹à¸•à¹ˆà¸¡à¸µà¸à¸²à¸£à¸„้นพบ" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "à¹à¸ªà¸”งเส้นเวลาà¸à¸²à¸£à¸„้นพบดาวเคราะห์นอà¸à¸£à¸°à¸šà¸š" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "à¹à¸ªà¸”งปุ่มดาวเคราะห์นอà¸à¸£à¸°à¸šà¸šà¸šà¸™à¹à¸–บเครื่องมือ" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "ข้อมูล" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "วิเคราะห์ความสามารถในà¸à¸²à¸£à¸ªà¸±à¸‡à¹€à¸à¸•à¹„ด้" @@ -7183,185 +7768,179 @@ "à¹à¸¥à¸°à¸§à¸±à¸™à¸—ี่วัตถุขึ้น-ตภโดยสัมพันธ์à¸à¸±à¸šà¸”วงอาทิตย์

    " "คำอธิบายเà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¸›à¸£à¸´à¸¡à¸²à¸“เหล่านี้à¹à¸ªà¸”งในà¹à¸—็บ 'เà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸š' ของหน้าต่างà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่า" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "ม.ค." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "à¸.พ." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "มี.ค." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "เม.ย." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "พ.ค." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "มิ.ย." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "à¸.ค." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "ส.ค." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "à¸.ย." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "ต.ค." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "พ.ย." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "ธ.ค." -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "ชั่วโมง" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "นาที" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "วินาที" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "ตà¸à¹€à¸§à¸¥à¸² %1 (ในอีภ%2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "ขึ้นเวลา %1 (%2 ที่à¹à¸¥à¹‰à¸§)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "ตà¸à¹€à¸§à¸¥à¸² %1 (%2 ที่à¹à¸¥à¹‰à¸§)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "ขึ้นเวลา %1 (ในอีภ%2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "วนรอบขั้วฟ้า (อยู่บนท้องฟ้าตลอดเวลา)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "ไม่ขึ้น" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "ขึ้นถึงจุดสูงสุดเวลา %1 (ในอีภ%2) ที่มุมเงย %3 องศา" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "ขึ้นถึงจุดสูงสุดเวลา %1 (%2 ที่à¹à¸¥à¹‰à¸§) ที่มุมเงย %3 องศา" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "ไม่สามารถสังเà¸à¸•à¹„ด้" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "ไม่มีà¸à¸²à¸£à¸‚ึ้น/ตภที่สัมพันธ์à¸à¸±à¸šà¸”วงอาทิตย์" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "ทำมุมห่างจาà¸à¸”วงอาทิตย์ที่สุด: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "ทำมุมห่างจาà¸à¸”วงอาทิตย์ที่สุด: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (ที่ระยะ %1 องศา)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "ขึ้นขณะดวงอาทิตย์ตà¸/ตà¸à¸‚ณะดวงอาทิตย์ขึ้น" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "ไม่มีà¸à¸²à¸£à¸‚ึ้นขณะดวงอาทิตย์ตà¸/ตà¸à¸‚ณะดวงอาทิตย์ขึ้น" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "ขึ้นขณะดวงอาทิตย์ขึ้น/ตà¸à¸‚ณะดวงอาทิตย์ตà¸" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "ไม่มีà¸à¸²à¸£à¸‚ึ้นขณะดวงอาทิตย์ขึ้น/ตà¸à¸‚ณะดวงอาทิตย์ตà¸" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "สามารถสังเà¸à¸•à¹„ด้ตลอดปี" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "ไม่สามารถสังเà¸à¸•à¹„ด้ขณะท้องฟ้ามืดสนิท" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "คืนที่วัตถุอยู่เหนือขอบฟ้า: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "วันนี้:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "ปีนี้:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "จันทร์เพ็à¸à¸à¹ˆà¸­à¸™à¸«à¸™à¹‰à¸²à¸™à¸µà¹‰: %2 %1 เวลา %3:%4 น. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "จันทร์เพ็à¸à¸„รั้งถัดไป: %2 %1 เวลา %3:%4 น. " @@ -7710,6 +8289,9 @@ #~ msgid "Light Pollution Luminance: " #~ msgstr "ปริมาณมลภาวะทางà¹à¸ªà¸‡: " +#~ msgid "Nebulas" +#~ msgstr "เนบิวลา" + #~ msgid "80" #~ msgstr "๘à¹" @@ -7897,6 +8479,15 @@ #~ "(21 สิงหาคม), SN 1972E (8 พฤษภาคม), SN 1987A (24 à¸à¸¸à¸¡à¸ à¸²à¸žà¸±à¸™à¸˜à¹Œ) à¹à¸¥à¸° SN 2011FE " #~ "(13 à¸à¸±à¸™à¸¢à¸²à¸¢à¸™)" +#~ msgid "Comma separated list of groups" +#~ msgstr "จุลภาคà¹à¸¢à¸à¸£à¸²à¸¢à¸Šà¸·à¹ˆà¸­à¸‚องà¹à¸•à¹ˆà¸¥à¸°à¸à¸¥à¸¸à¹ˆà¸¡" + +#~ msgid "TLE data:" +#~ msgstr "ข้อมูล TLE:" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "ข้อมูลวงโคจรà¹à¸šà¸š 2 บรรทัดจาภNORAD" + #~ msgid "Crosshairs" #~ msgstr "สายใยเล็ง" @@ -8038,3 +8629,35 @@ #~ msgid "0 deg." #~ msgstr "0 องศา" + +#~ msgid "Nebulas background images" +#~ msgstr "ภาพพื้นหลังของเนบิวลา" + +#~ msgid "Display mode for pulsars" +#~ msgstr "โหมดà¸à¸²à¸£à¹à¸ªà¸”งผลสำหรับพัลซาร์" + +#~ msgid "Display mode for quasars" +#~ msgstr "โหมดà¸à¸²à¸£à¹à¸ªà¸”งผลสำหรับเควซาร์" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸—ี่à¹à¸ªà¸”งซูเปอร์โนวาในประวัติศาสตร์ซึ่งสว่างà¸à¸§à¹ˆà¸²à¹‚ชติมาตร 10" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "โปรà¹à¸à¸£à¸¡à¹€à¸ªà¸£à¸´à¸¡à¸—ี่à¹à¸ªà¸”งซูเปอร์โนวาในประวัติศาสตร์ซึ่งสว่างà¸à¸§à¹ˆà¸²à¹‚ชติมาตร 10: " + +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "ปรับปรุงข้อมูลดาวเทียมà¹à¸¥à¹‰à¸§ %1/%2 ดวง; ไม่พบ %3 ดวง" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "ปรับปรุงรายชื่อ TLE จาà¸à¹à¸«à¸¥à¹ˆà¸‡à¸‚้อมูลบนอินเทอร์เน็ต" + +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "ภาพพัà¸à¸«à¸™à¹‰à¸²à¸ˆà¸­ à¹à¸ªà¸”ง 171 ปราà¸à¸à¸à¸²à¸£à¸“์! ที่เà¸à¸´à¸”ขึ้นในระบบสุริยะ" diff -Nru stellarium-0.12.1/po/stellarium/tl.po stellarium-0.12.4/po/stellarium/tl.po --- stellarium-0.12.1/po/stellarium/tl.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/tl.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2010-05-07 20:37+0000\n" "Last-Translator: András Mohari \n" "Language-Team: Tagalog \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:19+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "May-akda: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Sun" @@ -1209,12 +1320,12 @@ msgstr "Earth" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Moon" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Saturn" @@ -1610,239 +1721,268 @@ msgstr "Inuit" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Korean" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polynesian" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Western" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosphere" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Hamog" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Lupa" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Mga Bituin" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Configuration window" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Lokasyon" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Mga Planeta" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Huwag ituloy" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Impormasyon" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Wika" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/tr.po stellarium-0.12.4/po/stellarium/tr.po --- stellarium-0.12.1/po/stellarium/tr.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/tr.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2012-10-24 04:49+0000\n" -"Last-Translator: Hüsamettin Ertürk \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-01 11:57+0000\n" +"Last-Translator: aydın \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:20+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Meridyen" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" -msgstr "Tutulum" +msgstr "Ekliptik" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Ekvator" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Ufuk" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "Gökada Düzlemi" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Yazar: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Konum: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 metre" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Gezegen: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Türü: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" -msgstr "Büyüklük: %1 (Sönümlenen deÄŸer: %2)" +msgstr "Parlaklık: %1 (Sönümlenen deÄŸer: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Parlaklık: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "Boyut: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Gökada" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Açık yıldız kümesi" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Küresel yıldız kümesi" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Bulutsu" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Gezegenimsi bulutsu" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "Kara Bulutsu" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "BulutsuluÄŸa baÄŸlı küme" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Bilinmeyen" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "BelgelenmemiÅŸ tür" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Mutlak Parlaklık: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" -msgstr "" +msgstr "Sapma (of date, for Earth): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Uzaklık: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Uzaklık: %1 AU (1 AU = 149,597,870.691 kilometre)" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" -msgstr "" +msgstr "Görünür çap: %1, halkayla beraber: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Görünürdeki Çap: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" -msgstr "" +msgstr "Yörüngesindeki dolanım süresi: %1 gün (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" -msgstr "" +msgstr "Kendi etrafındaki dönüş süresi: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" -msgstr "" +msgstr "Ortalama güneÅŸ günü: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Faz Açısı: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Uzama: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Evre: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "Aydınlamış: %%1" @@ -204,10 +204,10 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" -msgstr "" +msgstr "yıldız" #: src/core/modules/StarWrapper.cpp:57 #, qt-format @@ -217,49 +217,125 @@ #: src/core/modules/StarWrapper.cpp:60 #, qt-format msgid "Apparent Magnitude: %1 (by extinction)" -msgstr "Görünen büyüklük: %1 (sönümlenme ile birlikte)" +msgstr "Görünen parlaklık: %1 (sönümlenme ile birlikte)" + +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "deÄŸiÅŸken yıldız" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" +msgstr "çift yıldız" + +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" -msgstr "Büyüklük: %1 (Sönümlenen deÄŸer: %2. B-V: %3)" +msgstr "Parlaklık: %1 (Sönümlenen deÄŸer: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" -msgstr "Büyüklük: %1 (B-V: %2)" +msgstr "Parlaklık: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" -msgstr "Tayf ÖrneÄŸi: %1" +msgstr "Tayf tipi: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Uzaklık: %1 Işık Yılı" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Iraklık açısı: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "Sonraki minimum ışık: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "Sonraki maximum ışık: %1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "Tutulma süresi: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Uzay Aracı" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" +"Düzeltme devre dışı bırakıldı. Sadece ne yaptığınızı biliyorsanız kullanın!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +343,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +359,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +374,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +382,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +398,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +413,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +440,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +455,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +498,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +506,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +515,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +525,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Hata" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -612,7 +705,7 @@ #: src/core/StelObject.cpp:111 #, qt-format msgid "Galactic longitude/latitude: %1/%2" -msgstr "" +msgstr "Galaktik boylam/enlem: %1/%2" #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:124 #: src/core/StelObject.cpp:127 @@ -654,52 +747,53 @@ msgid "Found" msgstr "Bulundu" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Ekran görüntüsü dizinini seçin" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Baslangıç FOV: %1 %2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Görünümün baÅŸlangıç yönü Az/Yük:%1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Y" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Ä°letiÅŸim" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Yazar" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Lisans" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Script Çalıştırılıyor: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Script Çalıştırılıyor: [Hiçbiri]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -707,23 +801,23 @@ "Yeni yıldız kataloglarını indirme tamamlandı! Bunları görmek için " "Stellarium'u yeniden baÅŸlatın." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Tüm eriÅŸilebilir yıldız katalogları yüklendi." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "%1 'nin %2 fihristini al" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "%1 indiriliyor..." -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -734,7 +828,7 @@ "Yıldız sayısı: %2 Million\n" "Parlaklık menzili: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -743,11 +837,11 @@ "%1 Dosyası indirilirken hata yaÅŸandı:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Dosya bütünlüğü kontrol ediliyor..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -757,115 +851,123 @@ "Dosya bozuk" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" -msgstr "" +msgstr "Düzeltmeden" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1036,49 +1138,53 @@ msgid "OSX Developer: %1" msgstr "OSX gelistirici: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Yazılım destek penceresi" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Windows" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Uzay" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1 m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Açıklama yok" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" -msgstr "Karsi gelen yildiz yok" +msgstr "No shooting stars" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Normal oran" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Standart Perseid orani" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Istisnai Leonid orani" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "En yuksek oran (1966 Leonid)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Yeni Konum" @@ -1183,19 +1289,19 @@ msgid "starchart" msgstr "yıldıztablosu" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad Sorgu Hatası" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad Sorgusu" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Strasbourg Ãœniversitesi (Fransa)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "Harvard Ãœniversitesi (ABD)" @@ -1211,30 +1317,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "Bu sistem OpenGL'i desteklemiyor." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "GüneÅŸ" @@ -1251,12 +1363,12 @@ msgstr "Dünya" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Ay" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Mars" @@ -1354,7 +1466,7 @@ msgstr "Metis" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Satürn" @@ -1652,239 +1764,268 @@ msgstr "Eskimo" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Kore" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Lakota" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "Maori" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Navajo" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "Nors" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "Polinezya" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "Sami" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Tupi-Guarani" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Batı" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Guereins" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "AÄŸaçlar" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "Kasırga" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Okyanus" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Garching" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Manzara Turu" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "Parçalı Ay Tutulması" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Tam Ay Tutulması" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Ekran Koruyucu" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "2009 GüneÅŸ Tutulması" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "BaÅŸlangıç Komutu" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Zodiac" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" -msgstr "" +msgstr "Venüs transit geçiÅŸi" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Kısmi ay tutulmasını görüntülemek için gerekli komut." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Tam ay tutulmasını göstermek için gerekli komut." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Rastgele nesnelere bakarak gökyüzünde yavaÅŸ,bitmeyen bir tur" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "BaÅŸlangıçta otomatik olarak çalışan komutlar" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1894,1502 +2035,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "Andorra" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "BirleÅŸik Arap Emirlikleri" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "Afganistan" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Antiga ve Barbuda" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "Anguilla" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "Arnavutluk" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "Ermenistan" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "Hollanda Antilleri" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Angola" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Antarktika" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Arjantin" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "Amerikan Samoası" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "Avusturya" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "Avustralya" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Aruba" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Azerbaycan" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "Bosna Hersek" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "Barbados" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "BangladeÅŸ" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "Belçika" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Burkina Faso" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "Bulgaristan" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Bahreyn" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Burundi" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Benin" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Bermuda" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Brunei Sultanlığı" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "Bolivya" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "Brezilya" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "Bahamalar" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Bhutan" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "Bouvet Adası" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "Botsvana" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "Belarus" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Belize" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Kanada" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "Cocos Adaları" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Demokratik Kongo Cumhuriyeti" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "Orta Afrika Cumhuriyeti" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "Kongo Cumhuriyeti" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "Ä°sviçre" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "FildiÅŸi Sahili" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "Cook Adaları" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Åžili" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Kamerun" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Çin" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "Kolombiya" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "Kosta Rika" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Sırbistan-KaradaÄŸ" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Küba" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "YeÅŸil Burun" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "Christmas Adası" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Kıbrıs" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "Çek Cumhuriyeti" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Almanya" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Cibuti" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "Danimarka" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Dominika" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "Dominik Cumhuriyeti" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Cezayir" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Ekvador" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "Estonya" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Mısır" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Batı Sahra" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "Eritre" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "Ä°spanya" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "Etiyopya" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "Finlandiya" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Fiji" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "Falkland Adaları" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "Mikronezya" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "Faroe Adaları" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "Fransa" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Gabon" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "BirleÅŸik Krallık" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Grenada" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "Gürcistan" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Fransız Guyanası" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Gana" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Cebelitarık" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "Grönland" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "Gambiya" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "Gine" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Guadalup" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Ekvator Ginesi" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "Yunanistan" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Güney Georgia ve Güney Sandwich Adaları" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Guatemala" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Guam" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "Gine-Bissau" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "Guyana" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Hong Kong" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "Heard Adası ve McDonald Adaları" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "Honduras" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "Hırvatistan" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Haiti" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Macaristan" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "Endonezya" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "Ä°rlanda" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Ä°srail" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "Hindistan" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "Britanya Hint Okyanusu Toprakları" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Irak" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Ä°ran" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "Ä°zlanda" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "Ä°talya" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Jamaika" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "Ãœrdün" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "Japonya" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "Kenya" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "Kırgızistan" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Kamboçya" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Kiribati" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "Komorlar" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Saint Kitts ve Nevis" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Kore Demokratik Halk Cumhuriyeti" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Kore Cumhuriyeti" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Kuveyt" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Cayman Adaları" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "Kazakistan" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "Lao" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Lübnan" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Saint Lucia" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "LihtenÅŸtayn" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Sri Lanka" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "Liberya" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "Lesoto" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Litvanya" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "Lüksemburg" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "Letonya" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "Libya Arap Cemahiriyesi" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Fas" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Monako" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Moldovya" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "Madagaskar" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Marshall Adaları" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "Makedonya" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Mali" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "Myanmar" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "MoÄŸolistan" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Makao" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Kuzey Mariana Adaları" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Martinik" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "Moritanya" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "Montserrat" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Malta" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Mauritius" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Maldivler" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Malavi" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "Meksika" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "Malezya" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Mozambik" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "Namibya" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Yeni Kaledonya" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Nijer" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "Norfolk Adası" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "Nijerya" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Nikaragua" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Hollanda" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "Norveç" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Nepal" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Nauru" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Niue" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Yeni Zelanda" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Umman" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Panama" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Peru" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Fransız Polinezyası" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Papua Yeni Gine" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Filipinler" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "Pakistan" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Polonya" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Saint Pierre ve Miquelon" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Pitcairn" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Porto Riko" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "Filistin Toprakları" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "Portekiz" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Palau" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Paraguay" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Katar" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Réunion" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "Romanya" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "Sırbistan" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "Rusya Federasyonu" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Ruanda" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "Suudi Arabistan" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Solomon Adaları" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "SeyÅŸeller" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Sudan" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "Ä°sveç" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Singapur" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "Saint Helena" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "Slovenya" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "Svalbard ve Jan Mayen" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Slovakya" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Sierra Leone" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "San Marino" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Senegal" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Somali" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Surinam" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Sao Tome ve Principe" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "El Salvador" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "Suriye Arap Cumhuriyeti" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Svaziland" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "Turks and Caicos Adaları" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Çad" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Fransız Güney Toprakları" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Togo" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Tayland" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "Tacikistan" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Tokelau" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "DoÄŸu Timor" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "Türkmenistan" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "Tunus" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Tonga" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Türkiye" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Trinidad ve Tobago" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Tuvalu" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Tayvan" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "Tanzanya" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Ukrayna" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Uganda" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "BirleÅŸik Devletler Küçük Dış Adalar" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "BirleÅŸik Devletler" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Uruguay" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "Özbekistan" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "Vatikan Åžehir Devleti" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Saint Vincent ve Grenadinler" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "Venezuela" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "Britanya Virgin Adaları" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "BirleÅŸik Devletler Virgin Adaları" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Vietnam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Vanuatu" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Wallis ve Futuna" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Samoa" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Yemen" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Mayotte" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "Yugoslavya" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Güney Afrika" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "Zambiya" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Zimbabve" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" -msgstr "Tarih ve Zaman" +msgstr "Tarih ve Saat" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "1 yildiz gunu ekle" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "1 yıldız ayı ekle" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "1 yildiz haftasi ekle" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Bir yıldız yılı ekle" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "1 gunes gunu ekle" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "1 gunes saati ekle" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "1 gunes haftasi ekle" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Yazılım çalıştırma hızını düşürünüz" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" -msgstr "Zaman hizini dusur" +msgstr "Zaman hızını düşür" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" -msgstr "Zaman hızını (bir miktar) azaltınız." +msgstr "Zaman hızını (bir miktar) azalt" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Yazılım çalıştırma hızını artırınız" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" -msgstr "Zaman hizini artir" +msgstr "Zaman hızını artır" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" -msgstr "Zaman hızını (bir miktar) artırınız." +msgstr "Zaman hızını (bir miktar) artır" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "BetiÄŸin yürütülmesini duraklat" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "BetiÄŸin yürütülmesini devam ettir" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" -msgstr "Zamani simdiye ayarla" +msgstr "Zamanı ÅŸimdiye ayarla" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Normal yazılım hızı ayarına geçiniz" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" -msgstr "Normal zaman hizina ayarla" +msgstr "Normal zaman hızına ayarla" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" -msgstr "Saat oranını sıfıra ayarlayın." +msgstr "Zaman akışını durdur" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "BetiÄŸi çalıştırmayı durdur" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "1 yildiz gunu cikar" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "1 yıldız ayı çıkar" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "1 yildiz haftasi cikar" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "Bir yıldız yılı çıkar" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "1 gunes gunu cikar" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "1 gunes saati cikar" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "1 gunes haftasi cikar" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Görünüm Seçenekleri" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Görüntüyü yatay olarak çevir" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Tam ekran modu" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Atmosfer" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Azimutal ızgara" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Kardinal noktalar" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" -msgstr "Takimyildiz Gosterisi" +msgstr "Takımyıldız görselleri" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Takımyıldız sınırları" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Takımyıldız etiketleri" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Takımyıldız çizgileri" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Bulutsu artalan görüntuleri" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Ekliptik J2000 ızgarası" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ekliptik Hat" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ekvator cizgisi" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Ekvatoral ızgara" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Ekvatoral J2000 ızgarası" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Sis" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Gökadasal ızgara" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Gökada düzlemi" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Yeryüzü" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Ufuk çizgisi" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Meridyen cizgisi" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "Bulutsular" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Gece modu" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Gezegen etiketleri" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Gezegen yörüngeleri" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Gezegen izleri" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Yıldızlar" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Manzarayi dikey olarak cevir." #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "ÇeÅŸitli" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Yatay arac cubugunu otomatik sakla" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Dikey arac cubugunu otomatik sakla" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Bitir" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Seçili cisim bilgilerini panoya koplayala" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Ekran görüntüsünü kaydet" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Ekvatoryal ve ufuk acisi arasinda degisim" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Grafik arayüzün görünürlüğünü ayarla" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "Seçim ve Hareket" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Seçili cismi ortala" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Yerel gezegeni secilen secilen gezegene gore ayarla" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "Cisim izle" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Seçili cisme yakınlaÅŸ" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "UzaklaÅŸ" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Açı ölçümü" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Pusula izleri" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" -msgstr "" +msgstr "Gözlenebilirlik" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" -msgstr "" +msgstr "Gözlenebilirlik yapılandırma penceresi" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "Öküler eklenti yapılandırması" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "Öküler görüş" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "Okülerler açılır menüsü" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Telrad görüşü" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Atarcalar yapılandırma penceresi" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Kuazarlar yapılandırma penceresi" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Uydu ayarlama penceresi" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Uydu ipuçları" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Uydu etiketleri" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Tarihsel Süpernovalar yapılandırma penceresi" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "Teleskopu ayarlanan koordinatlara taşı" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" -msgstr "" +msgstr "Ä°ÅŸlenmiÅŸ istatistikleri göster" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Betikler" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Yapılandırma Penceresi" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" -msgstr "Tarih/Zaman penceresi" +msgstr "Tarih/Saat penceresi" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Yardım penceresi" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Konum penceresi" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Arama penceresi" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Gökyüzü ve görüntüleme seçenekleri penceresi" @@ -3408,14 +3585,14 @@ #: src/ui_helpDialogGui.h:291 src/ui_configurationDialog.h:1057 msgid "Edit keyboard shortcuts..." -msgstr "" +msgstr "Klavye kısayollarını deÄŸiÅŸtir" #: src/ui_helpDialogGui.h:292 msgid "Refresh" msgstr "Yenile" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Konum" @@ -3431,10 +3608,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Sil" @@ -3443,7 +3620,7 @@ msgstr "Listeye ekle" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Enlem:" @@ -3456,12 +3633,12 @@ "Ornegin; +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Boylam:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Yükseklik:" @@ -3485,364 +3662,408 @@ msgid "Planet:" msgstr "Gezegen" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Cismi Bul" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Cisim ve ya Konum Bul" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "iota" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "alfa" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "beta" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "gama" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "delta" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "epsilon" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "zita" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "ita" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "teta" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "kapa" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "lamda" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "mi" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ni" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ksi" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "omikron" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "pi" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ro" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "sigma" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "taf" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "ipsilon" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "fi" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "khi" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "psi" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "omega" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Bayer belirtmeleri için Grek harfleri" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Cisim" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/Dec (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "Konum" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "Listeler" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "Çevrimiçi astronomik veritabanı SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "SINBAD ile araÅŸtırmayı geniÅŸlet" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Sunucu:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "Seçenekler" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "Listeler" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "Seçenekler" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "Görünüm" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Gökyüzü" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Isaretler" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Alan Haritası" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Yildiz bilgisi" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Etiketler ve Ä°ÅŸaretçiler" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Gezegenler" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Gezegenler ve Uydular" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Gezegenleri goster." -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Gezegen isaretlerini goster" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Gezegen yorungelerini goster" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Isik hizini simule et." -#: src/ui_viewDialog.h:1205 -msgid "Scale Moon" -msgstr "Ayi olceklendir" +#: src/ui_viewDialog.h:1227 +msgid "Scale Moon" +msgstr "Ayi olceklendir" + +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Atmosferi goster" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Düşük kirlilik:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "basınç, sıcaklık, sönüm katsayısı" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Kırılma/Yok olma ayarları..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "Mutlak olcu:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "Bagil olcek" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" -msgstr "" +msgstr "Samanyolu parlaklığı" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Pirilti" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" "Çok parlak bir cisim görünür durumdayken sönük yıldızları donuklaÅŸtır" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Dinamik goz uygunlugu" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" -msgstr "Karsi gelen yldizlar" +msgstr "Shooting Stars" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Takımyıldızları" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Çizgileri göster" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Etiketleri göster" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Limitleri goster" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Gorselleri goster" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" -msgstr "" +msgstr "Görsellerin parlaklığı" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Goksel kure" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Ekvator çizgisini göster" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Meridyen çizgisini göster" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Ufuk çizgisini göster" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Ekliptik çizgisini göster" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Gökadasal düzlem çizgisini göster" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Ä°zdüşüm" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Alan haritaları ekle/kaldır..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Yeryuzunu goster" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Sis goster" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" -msgstr "Karsi gelen gezegen ve konumu kullan" +msgstr "Ä°liÅŸkili gezegen ve konumu kullan" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "Bu alan haritasını varsayılan olarak kullan" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "Bu gokyuzu kulturunu varsayilan olarak kullan" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Görünür" @@ -3896,7 +4117,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Stellarium baÅŸladığında bakış doÄŸrultun" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Seçili cisim bilgisi" @@ -3912,11 +4133,8 @@ msgid "Display no information" msgstr "Bilgi gösterme" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Hiçbiri" @@ -3938,7 +4156,7 @@ #: src/ui_configurationDialog.h:1009 msgid "Displayed fields" -msgstr "" +msgstr "Görüntülenen alanlar" #: src/ui_configurationDialog.h:1011 msgid "Geocentric equatorial coordinates, equinox of J2000.0" @@ -3946,7 +4164,7 @@ #: src/ui_configurationDialog.h:1013 msgid "Right ascension/Declination (J2000)" -msgstr "" +msgstr "SaÄŸ açıklık/sapma (J2000)" #: src/ui_configurationDialog.h:1015 msgid "Horizontal coordinates" @@ -3954,7 +4172,7 @@ #: src/ui_configurationDialog.h:1017 msgid "Altitude/Azimuth" -msgstr "" +msgstr "Yükseklik/Azimuth" #: src/ui_configurationDialog.h:1018 msgid "Visual magnitude" @@ -3966,7 +4184,7 @@ #: src/ui_configurationDialog.h:1020 msgid "Catalog number(s)" -msgstr "" +msgstr "Katalog numarası/numaraları" #: src/ui_configurationDialog.h:1021 #: plugins/TelescopeControl/src/gui/TelescopeDialog.cpp:269 @@ -3979,7 +4197,7 @@ #: src/ui_configurationDialog.h:1025 msgid "Right ascension/Declination (of date)" -msgstr "" +msgstr "SaÄŸ açıklık/sapma (tarih)" #: src/ui_configurationDialog.h:1027 msgid "Galactic coordinates, equinox of J2000.0" @@ -3987,7 +4205,7 @@ #: src/ui_configurationDialog.h:1029 msgid "Longitude/Latitude (J2000)" -msgstr "" +msgstr "Boylam/Enlem (J2000)" #: src/ui_configurationDialog.h:1031 msgid "Topocentric equatorial coordinates" @@ -3995,11 +4213,11 @@ #: src/ui_configurationDialog.h:1033 msgid "Hour angle/Declination" -msgstr "" +msgstr "Saat açısı/sapması" #: src/ui_configurationDialog.h:1034 msgid "Distance" -msgstr "" +msgstr "Mesafe" #: src/ui_configurationDialog.h:1036 msgid "Angular or physical size" @@ -4007,7 +4225,7 @@ #: src/ui_configurationDialog.h:1038 msgid "Size" -msgstr "" +msgstr "Büyüklük" #: src/ui_configurationDialog.h:1040 msgid "Spectral class, nebula type, etc." @@ -4015,15 +4233,15 @@ #: src/ui_configurationDialog.h:1042 msgid "Additional information 1" -msgstr "" +msgstr "Ek bilgi 1" #: src/ui_configurationDialog.h:1046 msgid "Additional information 2" -msgstr "" +msgstr "Ek bilgi 2" #: src/ui_configurationDialog.h:1047 msgid "Additional information 3" -msgstr "" +msgstr "Ek bilgi 3" #: src/ui_configurationDialog.h:1048 msgid "Control" @@ -4052,38 +4270,42 @@ #: src/ui_configurationDialog.h:1061 msgid "Mouse cursor timeout:" -msgstr "" +msgstr "Fare imleci zaman aşımı" #: src/ui_configurationDialog.h:1063 msgid "seconds" msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "BaÅŸlangıç günü ve saati" #: src/ui_configurationDialog.h:1067 msgid "Use a specific date and time when Stellarium starts up" -msgstr "Stellatium basladiginda ozel gun ve saat kullan" +msgstr "Stellarium baÅŸladığında özel bir gün ve saat kullan" #: src/ui_configurationDialog.h:1069 msgid "Other:" msgstr "DiÄŸer:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "Geçerli yerel tarih ve saati kullan" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "varsayılanı kullan" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "Stellarium'u sistem tarih ve saati ile baÅŸlatır." -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "Sistem tarih ve saati" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4091,23 +4313,23 @@ "Benzetim zamanını, Gökküre'nin baÅŸladığı günün zamanından bir sonraki an " "olarak belirler." -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "Sistem Tarihi:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" -msgstr "" +msgstr "Zaman düzeltme" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Gezegen gozlemevi secenekleri" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4115,51 +4337,51 @@ "Gukkure kuresel ayna uzerine izdusurulurken, dusuk maaliyetli gozlemevi " "secenekleri icin, kuresel ayna bozulmasi kullanilmistir." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Kuresel ayna bozulmasi" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "Ana goruntudeki merkez daire disindaki herseyi yok say." -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "Goruntu kapisi diski" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Bir takımyıldıza tıkladığımda diÄŸerlerini gizle" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Tek takımyıldız seç" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Etiketleri ufka hizala" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Yerçekimi etiketleri" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" -msgstr "" +msgstr "Bulutsu arka plan düğmesini göster" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Diket ve yatay resim cevirme tuslarini degistir." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Cevirme tuslarini goster." -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4167,92 +4389,98 @@ "Aktif haldeyken, 'otomatik uzaklastirma' tusu, baslangic goruntuleme yonunu " "de belirleyecektir." -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Otomatik uzaklastirma, goruntunun baslangic yonunu verir" -#: src/ui_configurationDialog.h:1113 -msgid "Render Solar Shadows" +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1119 +msgid "Render Solar Shadows" +msgstr "GüneÅŸ gölgelerini iÅŸle" + +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Ekran Görüntüleri" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Ekran goruntusu dizini" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Renkleri Ters Çevir" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Yıldız Fihristi Güncellemeleri" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Ä°ndirmeye baÅŸlamak için buraya tıklayın" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Daha fazla yıldız görmek için bu dosyayı indirin" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Ä°ndirmeyi baÅŸtan baÅŸlat" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Tekrar Dene" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Ä°ndirmeyi durdur. Sonra yeniden baÅŸlatabilirsin" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Vazgeç" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Betik çalışırken penceriyi kapat" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "Seçili betiÄŸi çalıştır" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Çalışan bir betiÄŸi durdur" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" -msgstr "BaÅŸlangıçta Aşırı Yüklenme" +msgstr "BaÅŸlangıçta çalıştır" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "ayarla" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Ana" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Kısayollar" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "Gezinme" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Araçlar" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Eklentiler" @@ -4425,176 +4653,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Ufuk boyunca izler taşıyan pusula gösterir" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "Oküler" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Önceki oküler" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&Sonraki oküler" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "&Oküler seç" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "&Okülerleri Yapılandır" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Önceki CCD" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&Sonraki CCD" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "CCD S&eç" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "Oküler #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "Oküler #%1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Teleskop #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Teleskop #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "FOV: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Ebatlar: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Algılayıcı #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Algılayıcı #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Teleskop" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Önceki teleskop" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&Sonraki teleskop" @@ -4666,64 +4894,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "Dürbün ile saÄŸlanmış büyüklük" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "Sürüm" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4731,7 +4964,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4742,14 +4975,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4758,307 +4991,376 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Yalnızca cisim seçili iken etkinleÅŸtir" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "Arayüz" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Genel" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "Göz mercekleri" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Ekle" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Ad:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "Odak uzaklığı:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Dürbünler" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "Teleskoplar" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Çap:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Uydular" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Katalog #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "Menzil (km): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "Yükseklik (km): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "TEME koordinatları (km): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "TEME hızı (km/s): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Uydu ve gözlemci güneÅŸ ışığında." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Uydu görünür durumda." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Uydu gölgede." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Uydu görünmüyor." -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 MHz (%2%3 kHz)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Stellarium Uydu Eklentisi" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "Uydu Eklentisi, Dünya'nın yörüngesindeki yapay uyduları tahmin eder." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Kullanıcı Notları" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Uydular ve onların yörüngeleri sadece gözlemci Dünya'da bulunuyorsa " "görüntülenebilir." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5066,7 +5368,7 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5075,11 +5377,11 @@ "tamamlanmadı ya da hatalı olabilir." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "TLE veri güncellemeleri" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5088,7 +5390,7 @@ "Uydu Eklentisi, eÄŸer mevcut TLE verisi 72 saatten daha eski ise; internetten " "otomatik bir ÅŸekilde bu dosyaları indirebilir. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5099,17 +5401,17 @@ "bilgisayarınızdaki dosyadan yapmalısınız. Bu dosya Celestrak güncellemeleri " "(Örnek için %1 'e bakın) ile aynı dosya biçiminde olmalı." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Yeni uydular ekleniyor" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5117,11 +5419,11 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Teknik Notlar" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5129,31 +5431,33 @@ "Pozisyonlar SGP4 ve SDP4 yöntemleri kullanarak hesaplandı. GiriÅŸ olarak " "NORAD TLE verisi kullanılıyor. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Detaylar için %1 bu dökümana %2 bakın." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "BaÄŸlantılar" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5161,338 +5465,385 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "EÄŸer sorunuz varsa, %1 buradan yanıt alabilirsiniz %2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Ä°nternet güncellemeleri devre dışı." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "Güncelleniyor..." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "Sıradaki güncelleme: <1 dakika" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "Sıradaki güncelleme: %1 dakika" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" -msgstr "Sıradaki güncelleme: %1 Saat" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Åžimdi GüncelleÅŸtir" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Dosyadan güncelleniyor" +msgstr "Sıradaki güncelleme: %1 Saat" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Güncelleme hatası" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "%1/%2 uydu(lar) güncellendi; %3 yapılamadı" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[yeni kaynak]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Åžimdi GüncelleÅŸtir" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Dosyadan güncelleniyor" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[tümü görüntülenemiyor]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[tümü görüntülendi]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[tümü]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "TLE Güncelleme Dosya 'sını Seç" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Veri indiriliyor..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" +"Stellarium uydu bilgilerini güncelleme kaynağından indiriyor. Lütfen " +"bekleyin..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Veri iÅŸleniyor..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Katalog Numarası: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "Uydu Ayarlamaları" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "TLE listelerini internetten güncelle" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Ä°nternetten güncelle" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Uydu bilgilerini internet kaynağından güncelle" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Son güncelleÅŸtirme:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "Güncelleme yaparken, seçilen kaynaktan bütün yeni uyduları ekle" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Güncelleme yaparken, güncelleme kaynağında uzun süredir bulunmayan uyduları " +"kaldır" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "GüncellenmiÅŸ frekans (saat):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "Etiketler" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Etiket yazı büyüklüğü (piksel)" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Yörünge hatları" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "Numara parçaları hattı çizmek için kullanılıyordu" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Öntanımlı ayarları geri yükle" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Ayarları öntanımlı olarak kaydet" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Ayarlar" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Bir uyduyu takip etmek için ona çift tıklayın" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Daha fazla uydu ekle" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Seçili uyduları kaldır" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "DeÄŸiÅŸiklikleri kaydet" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Katalog numarası:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Seçili uydu(ları) görüntüle" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" -msgstr "" +msgstr "Gösterilen" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Seçilen uydu(lar) için yörünge(leri) göster" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Yörünge" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Katalog numarası:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Gruplar:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE verisi:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Seçili uyduları kaldır" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Daha fazla uydu ekle" - -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "DeÄŸiÅŸiklikleri kaydet" - -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Yeni kaynak ekle" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Seçili kaynağı sil" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Kaynaklar" @@ -5528,22 +5879,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Teleskop Kontrolü" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "%1 numaralı teleskopu seçili cisme hareket ettir" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5928,62 +6279,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "Ocak" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "Åžubat" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "Mart" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "Nisan" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "Mayıs" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "Haziran" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "Temmuz" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "AÄŸustos" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "Eylül" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "Ekim" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "Kasım" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "Aralık" @@ -6125,6 +6476,7 @@ #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:392 msgid "Any changes will take effect the next time Stellarium is started." msgstr "" +"Herhangi bir deÄŸiÅŸiklik Stellarium'un sonraki baÅŸlangıcında aktif olacak" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:394 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:405 @@ -6137,7 +6489,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Zaman gösterim biçimleri" @@ -6155,7 +6507,7 @@ msgstr "24-saat biçimi" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Tarih gösterme biçimi" @@ -6171,154 +6523,154 @@ msgid "mm-dd-yyyy" msgstr "aa-gg-yyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Metin Kullanıcı Arayüzü" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "GüneÅŸ Sistemi cismi" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Zaman dilimini ayarla" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "sistem" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "aaggyyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ggaayyyy" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "yyyyaagg" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12s" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24s" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Dil" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Yıldızları göster" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Renkler" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Bulutsu adları" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Gökada düzlem çizgisi" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" -msgstr "" +msgstr "Samanyolu yoÄŸunluÄŸu" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" -msgstr "" +msgstr "Ä°mleç zaman aşımı" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Çalışan betiÄŸi durdur" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD betiÄŸi" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "Yönetim" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Öntanımlı yapılandırmayı yükle" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Kapat" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6351,22 +6703,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6535,36 +6887,43 @@ msgid "Solar System" msgstr "GüneÅŸ Sistemi" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Tarihsel Süpernovalar" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "süpernova" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "süpernova tipi: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6582,7 +6941,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6596,14 +6955,14 @@ msgstr "Teorik ve Deneysel Fizik Enstitüsü" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6611,8 +6970,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6630,29 +6990,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Ä°nternetten güncelle" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Kuazarlar" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6668,51 +7105,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Kuazarlar Eklentisi" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Kuazarlar güncellendi" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "Kuazarlar Yapılandırması" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "Kuazarlar Eklentisi Yapılandırması" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "Atarcalar" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6832,11 +7279,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Atarcalar Eklentisi" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6844,137 +7291,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "Not" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Vladimir Samodourov" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Maciej Serylak" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Atarcalar güncellendi" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "Atarcalar Yapılandırması" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "Atarcarlar Eklentisi Yapılandırması" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "GüneÅŸ Dışı Gezegenler" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "Kütle" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Etkin Sıcaklık: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "GüneÅŸ Dışı Gezegen" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "günler" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "AU" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "Dış Merkezlik" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "EÄŸiklik" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" -msgstr "" +msgstr "Açı mesafesi" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "GüneÅŸ Dışı Gezegenler Eklentisi" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6982,52 +7433,141 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "GüneÅŸ dışı gezegenler güncellendi" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "GüneÅŸ Dışı Gezegenler Yapılandırması" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "GüneÅŸ Dışı Gezegenler Eklentisi Yapılandırması" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" -msgstr "" +msgstr "Gözlenebilirlik analizi" #: plugins/Observability/src/Observability.cpp:69 msgid "" @@ -7040,192 +7580,186 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "m" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" #: plugins/Observability/src/gui/ObservabilityDialog.cpp:97 msgid "Observability Plug-in" -msgstr "" +msgstr "Gözlenebilirlik aracı" #: plugins/Observability/src/gui/ObservabilityDialog.cpp:101 msgid "" @@ -7247,7 +7781,7 @@ #: plugins/Observability/src/gui/ObservabilityDialog.cpp:148 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:225 msgid "Sun altitude at twilight:" -msgstr "" +msgstr "Alacakaranlıkta güneÅŸ yüksekliÄŸi" #: plugins/Observability/src/gui/ObservabilityDialog.cpp:104 msgid "" @@ -7357,11 +7891,11 @@ #: plugins/Observability/src/ui_ObservabilityDialog.h:359 msgid "Observability Configuration" -msgstr "" +msgstr "Gözlenebilirlik yapılandırma" #: plugins/Observability/src/ui_ObservabilityDialog.h:360 msgid "Observability Plug-in Configuration" -msgstr "" +msgstr "Gözlenebilirlik aracı yapılandırması" #: plugins/Observability/src/ui_ObservabilityDialog.h:362 msgid "Showing Options" @@ -7389,7 +7923,7 @@ #: plugins/Observability/src/ui_ObservabilityDialog.h:370 msgid "Font color and size" -msgstr "" +msgstr "Yazıtipi rengi ve büyüklüğü" #: plugins/Observability/src/ui_ObservabilityDialog.h:371 msgid "Red" @@ -7405,7 +7939,7 @@ #: plugins/Observability/src/ui_ObservabilityDialog.h:374 msgid "Font Size" -msgstr "" +msgstr "Yazıtipi büyüklüğü" #: plugins/Observability/src/ui_ObservabilityDialog.h:375 msgid "Observing conditions" @@ -7680,6 +8214,22 @@ #~ msgid "Magnitude Scaling Multiplier: " #~ msgstr "Parlaklık Ölçekleme Çarpanı: " +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "%1/%2 uydu(lar) güncellendi; %3 yapılamadı" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "TLE listelerini internetten güncelle" + +#~ msgid "TLE data:" +#~ msgstr "TLE verisi:" + +#~ msgid "Nebulas background images" +#~ msgstr "Bulutsu artalan görüntuleri" + +#~ msgid "Nebulas" +#~ msgstr "Bulutsular" + #~ msgid "When a Script is Running" #~ msgstr "Bir Betik Çalışırken" @@ -7728,3 +8278,10 @@ #~ msgid "Additional info (Extra 3)" #~ msgstr "Ä°lave bilgiler (Ek 3)" + +#~ msgid "Show and edit all keyboard shortcuts" +#~ msgstr "Bütün klavye kısayollarını göster ve düzenle" + +#, qt-format +#~ msgid "Galactic longitude/latitude (J2000): %1/%2" +#~ msgstr "Galaktik boylam/enlem (J2000): %1/%2" diff -Nru stellarium-0.12.1/po/stellarium/tt.po stellarium-0.12.4/po/stellarium/tt.po --- stellarium-0.12.1/po/stellarium/tt.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/tt.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-12-26 13:28+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Tatar \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:19+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "БилгеÑез" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Хата" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Yazuçı" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Åžartnämä" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Якш" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/uk.po stellarium-0.12.4/po/stellarium/uk.po --- stellarium-0.12.1/po/stellarium/uk.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/uk.po 2013-09-23 06:20:13.000000000 +0000 @@ -9,33 +9,33 @@ msgstr "" "Project-Id-Version: stellarium-uk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-03 13:57+0000\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-10 15:34+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:20+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" "X-Poedit-Country: UKRAINE\n" "Language: uk\n" "X-Poedit-Language: Ukrainian\n" "X-Poedit-SourceCharset: utf-8\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Меридіан" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "Екліптика" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Екватор" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Горизонт" @@ -43,46 +43,46 @@ msgid "Galactic Plane" msgstr "Галактична площина" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Ðвтор: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "РозташуваннÑ: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 м" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Планета: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Тип: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "Величина: %1 (зменшилаÑÑ Ð´Ð¾ %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "Величина: %1" @@ -92,114 +92,114 @@ msgid "Size: %1" msgstr "Розмір: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Галактика" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "РозÑÑ–Ñне зорÑне ÑкупченнÑ" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "КулÑÑте зорÑне ÑкупченнÑ" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "ТуманніÑÑ‚ÑŒ" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Планетарна туманніÑÑ‚ÑŒ" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "Темна туманніÑÑ‚ÑŒ" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "ЗорÑне ÑкупченнÑ, пов'Ñзане з туманніÑÑ‚ÑŽ" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Ðевідомо" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Ðедокументований тип" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "ÐбÑолютна зіркова величина: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "Екліптичні топоцентричні (на дату): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Ðахил віÑÑ– Ð¾Ð±ÐµÑ€Ñ‚Ð°Ð½Ð½Ñ (на дату, Ð´Ð»Ñ Ð—ÐµÐ¼Ð»Ñ–): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "ВідÑтань: %1 а.о. (%2 км)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "ВідÑтань: %1 а.о." -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "Видимий діаметр: %1, з кільцÑми: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "Видимий діаметр: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "Сидеричний період: %1 днів (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "Сидеричний день: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "Середній ÑонÑчний день: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Фазовий кут: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "ВидовженнÑ: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "Фаза: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "ОÑвітленіÑÑ‚ÑŒ: %1%" @@ -210,7 +210,7 @@ msgstr "Ймовірне позначеннÑ: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "зірка" @@ -225,49 +225,125 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "Видима величина: %1 (піÑÐ»Ñ Ð·Ð³Ð°ÑаннÑ)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "еруптивна змінна зірка" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "пульÑаційна змінна зірка" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "затемнена змінна зірка" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "катаклізмічна змінна зірка" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "подвійна ÑиÑтема з затемненнÑми" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "змінна зірка" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "подвійна зірка" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Тип: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "Величина: %1 (зменшилаÑÑ Ð´Ð¾ %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "Величина: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "Діапазон величини: %1%2%3 (фотометрична ÑиÑтема: %4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" +"Діапазон величини: %1%2%3/%4 (фотометрична ÑиÑтема: %5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Спектральний тип: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "ВідÑтань: %1 Ñвітлових років" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "ПаралакÑ: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "Епоха мінімальної ÑвітноÑÑ‚Ñ–: ЮД %1" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "Еопха макÑимальної ÑвітноÑÑ‚Ñ–: ЮД %1" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Період: %1 днів" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "ÐаÑтупний мінімум ÑвітноÑÑ‚Ñ–: %1 ВКЧ (UTC)" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "ÐаÑтупний макÑимум ÑвітноÑÑ‚Ñ–: %1 ВКЧ (UTC)" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "ТриваліÑÑ‚ÑŒ затемненнÑ: %1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "ТриваліÑÑ‚ÑŒ Ñходу: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "КоÑмічний корабель" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" "Ð’Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ð¸Ð¼ÐºÐ½ÐµÐ½Ð¾! КориÑтуйтеÑÑ Ð½Ð¸Ð¼, лише Ñкщо вам добре відомі наÑлідки " "ваших дій!" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -280,7 +356,7 @@ "Ðйнштайна підтверджено на оÑнові даних про ÑонÑчні затемненнÑ, відомих з " "Ñ–Ñторії). Докладніші відомоÑÑ‚Ñ– можна знайти %2тут%3." -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -290,7 +366,7 @@ "system of astronomical constants (%1) (Про ÑиÑтему аÑтрономічних " "Ñталих)." -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -304,7 +380,7 @@ "(ÐÑтрономічні формули Ð´Ð»Ñ Ð¾Ð±Ñ‡Ð¸Ñлень). Також цю формулу реалізовано " "у комп’ютерній програмі SunTracker Pro." -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -315,7 +391,7 @@ "у книзі Canon of Solar Eclipses (Закони ÑонÑчних " "затемнень), авторами Ñкої Ñ” Mucke та Meeus (1983)." -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -327,7 +403,7 @@ "1649 Ñ€. н.е. Те Ñаме ÑÐ¿Ñ–Ð²Ð²Ñ–Ð´Ð½Ð¾ÑˆÐµÐ½Ð½Ñ Ñ‚Ð°ÐºÐ¾Ð¶ неÑвно викориÑтано у таблицÑÑ… " "Goldstine (1973)." -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -339,7 +415,7 @@ "observations (%1) (ПриÑÐºÐ¾Ñ€ÐµÐ½Ð½Ñ Ð—ÐµÐ¼Ð»Ñ– та МіÑÑÑ†Ñ Ð½Ð° оÑнові нещодавніх " "аÑтрономічних ÑпоÑтережень)." -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -349,7 +425,7 @@ "Astronomical Observations (%1) (ÐÑтрономічні ÑпоÑÑ‚ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð´Ð¾ поÑви " "телеÑкопів)." -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -363,7 +439,7 @@ "in the period 1800-1975 (%1) Ñк апрокÑимацію даних, опублікованих " "Brouwer (1952)." -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -373,7 +449,7 @@ "Programs and Tables from -4000 to +2800 (1986), а також у комп’ютерній " "програмі RedShift." -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -385,11 +461,11 @@ "1980 (%1) (Довготривалі зміни у обертанні Землі — від 700 Ñ€. до " "н.е. до 1980 Ñ€. н.е.)." -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "Цей алгоритм викориÑтано у комп’ютерному планетарії Guide 7." -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -399,7 +475,7 @@ "Eclipses: 1986-2035 (1987) Ñ– Fifty Year Canon of Lunar Eclipses: " "1986-2035 (1989)." -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " @@ -408,7 +484,7 @@ "Цю формулу було отримано K.M. Borkowski (%1) на оÑнові аналізу запиÑів щодо " "31 ÑонÑчного Ð·Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð²Ñ–Ð´ 2137 Ñ€. до н.е. до 1715 Ñ€. н.е." -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -421,7 +497,7 @@ "1988 (%1) Ñк апрокÑимацію за даними, наведеними Stephenson Ñ– Morrison " "(1984)." -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " @@ -431,7 +507,7 @@ "верÑÑ–Ñ— надточної теорії міÑÑчного руху у період 2000-85 у праці Lunar " "Tables and Programs from 4000 B.C. to A.D. 8000 (1991)." -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -443,7 +519,7 @@ "(%1) (Довготривалі зміни у обертанні Землі — від 700 Ñ€. до н.е. до 1990 " "Ñ€. н.е.)." -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " @@ -453,7 +529,7 @@ "Earth's Rotation (%1) (ІÑторичні Ð·Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ñ‚Ð° Ð¾Ð±ÐµÑ€Ñ‚Ð°Ð½Ð½Ñ " "Землі)." -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" @@ -463,7 +539,7 @@ "Широко викориÑтовуєтьÑÑ. Ð¢Ð°Ð±Ð»Ð¸Ñ†Ñ Ð´Ð»Ñ 1620–2000 років. Включено варіант " "Chapront, Chapront-Touze та Francou (1997) Ð´Ð»Ñ Ð´Ð°Ñ‚ поза діапазоном 1620–2000." -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " @@ -473,7 +549,7 @@ "реактивного руху NASA Ð´Ð»Ñ Ð¿Ð¾ÐºÐ°Ð·Ñƒ даних на інтерактивному Ñайті %1JPL " "Horizons%2." -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -482,7 +558,7 @@ "Цей поліному було опубліковано J. Meeus Ñ– L. Simons у Ñтатті Polynomial " "approximations to Delta T, 1620-2000 AD (%1)." -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " @@ -493,7 +569,7 @@ "комп’ютері) наведено проÑте поліноміальне Ð½Ð°Ð±Ð»Ð¸Ð¶ÐµÐ½Ð½Ñ 3-го порÑдку " "точноÑÑ‚Ñ– лише Ð´Ð»Ñ Ð½ÐµÑ‰Ð¾Ð´Ð°Ð²Ð½Ñ–Ñ… дат у минулому." -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -505,7 +581,7 @@ "Calendrical Tabulations (2002). Її заÑновано на даних книги Jean " "Meeus Astronomical Algorithms (1991)." -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -516,7 +592,7 @@ "Ñтатті Historical values of the Earth's clock error %1T and the " "calculation of eclipses (%2) з додатковими даними у (%3)." -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -530,7 +606,7 @@ "можливій періодичноÑÑ‚Ñ–, опиÑаній Stephenson (%2). Докладніші дані можна " "знайти %3тут%4." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -546,11 +622,35 @@ "Eclipses: -1900 to +3000 цих же авторів (2006). Також цю формулу " "викориÑтано у програмі Ð´Ð»Ñ Ð¾Ð±Ñ‡Ð¸ÑÐ»ÐµÐ½Ð½Ñ ÐµÑ„ÐµÐ¼ÐµÑ€Ð¸Ð´ СонцÑ, МіÑÑÑ†Ñ Ñ‚Ð° планет SOLEX." -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "ВикориÑтовуєтьÑÑ Ñ‚Ð¸Ð¿Ð¾Ð²Ð¾." -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" +"Розв’Ñзок Б. Баньєвича (B. Banjevic), заÑнований на розв’Ñзку СтівенÑона Ñ– " +"МорріÑона (Stephenson Ñ– Morrison) (1984), опубліковано у Ñтатті Ancient " +"eclipses and dating the fall of Babylon (Ð·Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ñƒ давнину та " +"Ð´Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð°Ð´Ñ–Ð½Ð½Ñ Ð’Ð°Ð²Ð¸Ð»Ð¾Ð½Ð°) (%1)." + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" +"Цей розв’Ñзок знайдено S. Islam, M. Sadiq Ñ– M. S. Qureshi на оÑнові даних " +"Meeus Ñ– Simons (2000) Ñ– опубліковано у Ñтатті Error Minimization of " +"Polynomial Approximation of DeltaT (%1), а потім уточнено Sana Islam у " +"2013 році." + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " @@ -559,15 +659,15 @@ "Це квадратична формула Ð´Ð»Ñ Ð¾Ð±Ñ‡Ð¸ÑÐ»ÐµÐ½Ð½Ñ %1T з коефіцієнтами, визначеними " "кориÑтувачем." -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Помилка" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "з помилковими значеннÑми поза цим діапазоном" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" @@ -575,21 +675,22 @@ "з Ñередньою помилкою у менше ніж одну Ñекунду, макÑимальна помилка — 1,9 Ñ, " "помилкові Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ð·Ð° цим діапазоном" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "з нульовими значеннÑми поза цим діапазоном" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" "з типовою одноÑекундною точніÑÑ‚ÑŽ та нульовими значеннÑми поза цим діапазоном" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "Коректний діапазон викориÑтаннÑ: від %1 до %2 року, %3." -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "Коректний діапазон викориÑтаннÑ: від %1 до %2 року." @@ -756,52 +857,53 @@ msgid "Found" msgstr "Знайдено" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Оберіть каталог Ð´Ð»Ñ Ð·Ð½Ñ–Ð¼ÐºÑ–Ð² екрана" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "Початкове поле зору: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "Початковий напрÑмок зору Ðз/ВиÑота: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Ðвтори" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Контакти" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Ðвтор" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "ЛіцензіÑ" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "ЗапуÑк Ñкрипту: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "ЗапуÑк Ñкрипту: [Ðемає]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -809,16 +911,16 @@ "Завершено Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð½Ð¾Ð²Ð¸Ñ… каталогів зірок!\n" "ПерезапуÑÑ‚Ñ–Ñ‚ÑŒ Stellarium Ð´Ð»Ñ Ñ—Ñ… відображеннÑ." -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "Було вÑтановлено вÑÑ– доÑтупні зорÑні каталоги." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Отримати каталог %1 із %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -827,7 +929,7 @@ "Ð—Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ %1…\n" "(Ви можете закрити це вікно.)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -838,7 +940,7 @@ "КількіÑÑ‚ÑŒ зірок: %2 мільйонів\n" "Діапазон зорÑних величин: %3-%4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -847,11 +949,11 @@ "Помилка при звантаженні %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Перевірка ціліÑноÑÑ‚Ñ– файлів…" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -861,115 +963,123 @@ "Файл пошкоджено." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "Ðлгоритм обчиÑленнÑ" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "Без виправленнÑ" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch (1931)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "Clemence (1948)" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "ÐÑтрономічні таблиці (1960)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "Tuckerman (1962, 1964) Ñ– Goldstine (1973)" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "Muller Ñ– Stephenson (1975)" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "Stephenson (1978)" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "Schmadel Ñ– Zech (1979)" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "Morrison Ñ– Stephenson (1982)" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "Stephenson Ñ– Morrison (1984)" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "Stephenson Ñ– Houlden (1986)" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "Espenak (1987, 1989)" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "Borkowski (1988)" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "Schmadel Ñ– Zech (1988)" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "Chapront-Touze Ñ– Chapront (1991)" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "Stephenson Ñ– Morrison (1995)" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "Stephenson (1997)" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "Meeus (1998) (with Chapront, Chapront-Touze Ñ– Francou (1997))" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "JPL Horizons" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "Meeus Ñ– Simons (2000)" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "Montenbruck Ñ– Pfleger (2000)" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "Reingold Ñ– Dershowitz (2002, 2007)" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "Morrison Ñ– Stephenson (2004, 2005)" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "Espenak Ñ– Meeus (2006)" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "Reijs (2006)" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "Баньєвич (2006)" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "Islam, Sadiq та Qureshi (2008, 2013)" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "Ðетипове рівнÑÐ½Ð½Ñ Ð´Ð»Ñ %1T" @@ -1142,49 +1252,53 @@ msgid "OSX Developer: %1" msgstr "Розробник під OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Вікно конÑолі Ñкриптів" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "Вікна" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Пробіл" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Ðемає опиÑу" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "Без метеорів" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "Ðормальна чаÑтота" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "Стандартна чаÑтота (ПерÑеїди)" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "Годинне чиÑло метеорного дощу" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "Ðезвичайна чаÑтота (Леоніди)" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "Ðайбільша чаÑтота (1966, Леоніди)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Ðове розташуваннÑ" @@ -1288,19 +1402,19 @@ msgid "starchart" msgstr "зорÑна карта" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Помилка під Ñ‡Ð°Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ у Simbad" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Пошук у Simbad" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "Стразбурзький універÑитет (ФранціÑ)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "ГарвардÑький універÑитет (СШÐ)" @@ -1316,30 +1430,38 @@ msgid "Alternative shortcut" msgstr "Ðльтернативне ÑкороченнÑ" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "Ðетипове рівнÑÐ½Ð½Ñ Ð´Ð»Ñ %1T" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "Типове рівнÑÐ½Ð½Ñ Ð´Ð»Ñ Ð¾Ð±Ñ‡Ð¸ÑÐ»ÐµÐ½Ð½Ñ %1T виглÑдає так:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "де" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "рік" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "СиÑтема не підтримує OpenGL." -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" +"Ðа вашій платформі не передбачено підтримки мінімального набору інÑтрукцій " +"OpenGL 1.2. Будь лаÑка, оновіть драйвери до вашої графічної картки." + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Сонце" @@ -1356,12 +1478,12 @@ msgstr "ЗемлÑ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "МіÑÑць" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "МарÑ" @@ -1459,7 +1581,7 @@ msgstr "Метида" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Сатурн" @@ -1757,193 +1879,222 @@ msgstr "ЕÑкімоÑька" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "ІндійÑька ведична" + +#: src/translations.h:171 msgid "Korean" msgstr "КорейÑька" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "Лакота" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "МаорійÑька" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "Ðавахо" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "СкандинавÑька" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "ПолінезійÑька" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "СаамÑька" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "Тупі-Гуарані" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "Тонга" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "Західна" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "Геран" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "Дерева" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "БурÑ" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "Океан" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "Òаршінґ" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "Мандрівка ландшафтами" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "ЧаÑткове міÑÑчне затемненнÑ" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "Повне міÑÑчне затемненнÑ" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "Зберігач екрана" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "СонÑчне Ð·Ð°Ñ‚ÐµÐ¼ÐµÐ½Ð½Ñ 2009 року" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "Скрипт запуÑку" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "Зодіак" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "Потрійний Ñхід Ñ– захід Ð¡Ð¾Ð½Ñ†Ñ Ð½Ð° Меркурії" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "Подвійне Ð·Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð· ДеймоÑа у 2017 році" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "Подвійне Ð·Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð· ДеймоÑа у 2031 році" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "Ð—Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð· Олімпа (10 ÑÑ–Ñ‡Ð½Ñ 2068 року)" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "Ð—Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð—ÐµÐ¼Ð»Ñ– Ñ– Юпітера у 2048 році" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "Три Ð¿Ñ€Ð¾Ñ…Ð¾Ð´Ð²Ð¶ÐµÐ½Ð½Ñ Ñ‚Ð° подвійне Ð·Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð· ДеймоÑа у 2027 році" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "Зберігач екрана «СонÑчна ÑиÑтема»" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "Тур Ñузір’Ñми" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "ВиглÑд Ð¡Ð¾Ð½Ñ†Ñ Ð· різних планет" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "Ðайкращі види Землі з інших небеÑних тіл" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "ÐšÑƒÐ»ÑŒÐ¼Ñ–Ð½Ð°Ñ†Ñ–Ñ Ð’ÐµÐ½ÐµÑ€Ð¸" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "Ðналема" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "ОглÑд картин зорÑного неба" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "Події, пов’Ñзані з Землею, з МеркуріÑ" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "Події, пов’Ñзані з Землею, з Венери" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "Події, пов’Ñзані з Землею, з МарÑа" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "Періоди найбільшої елонгації та ÑÑкравоÑÑ‚Ñ– Землі з МарÑа" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "Ðайкращі елонгації Землі Ñ– МарÑа з Юпітера" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "ОглÑнути вÑÑ– доÑтупні ландшафти." #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "ОглÑд вÑÑ–Ñ… вÑтановлених картин зорÑного неба." -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "Скрипт демонÑтрації чаÑткового міÑÑчного затемненнÑ." -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "Скрипт демонÑтрації повного міÑÑчного затемненнÑ." -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "Повільна неÑкічненна мандрівка небом з оглÑдом випадкових об’єктів." -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." @@ -1951,11 +2102,11 @@ "Скрипт демонÑтрації повного ÑонÑчного затемненнÑ, Ñке ÑталоÑÑ Ñƒ 2009 році " "(міÑце: Рангпур, Бангладеш)" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "Скрипт, Ñкий виконуєтьÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾ під Ñ‡Ð°Ñ Ð·Ð°Ð¿ÑƒÑку" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " @@ -1964,7 +2115,7 @@ "Цей Ñкрипт показує ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð—Ð¾Ð´Ñ–Ð°ÐºÑƒ. До Зодіаку належать Ñузір’Ñ, Ñкі " "перебувають на лінії, Ñкою протÑгом року рухаєтьÑÑ Ð½ÐµÐ±ÐµÑною Ñферою Сонце." -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." @@ -1972,7 +2123,7 @@ "Через певні оÑобливоÑÑ‚Ñ– орбіти та Ð¾Ð±ÐµÑ€Ñ‚Ð°Ð½Ð½Ñ ÐœÐµÑ€ÐºÑƒÑ€Ñ–Ñ Ñƒ певних облаÑÑ‚ÑÑ… Ñхід " "та захід Ð¡Ð¾Ð½Ñ†Ñ Ð¼Ð¾Ð¶Ðµ траплÑтиÑÑ Ñ‚Ñ€Ð¸Ñ‡Ñ– протÑгом одного меркуріанÑького днÑ." -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." @@ -1981,7 +2132,7 @@ "затемнює Сонце першим. Ð—Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð²Ñ–Ð´Ð±ÑƒÐ´ÐµÑ‚ÑŒÑÑ Ð¼Ñ–Ð¶ Ñузір’Ñми Скорпіона Ñ– " "Ð¡Ñ‚Ñ€Ñ–Ð»ÑŒÑ†Ñ 26 ÐºÐ²Ñ–Ñ‚Ð½Ñ 2017 року." -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." @@ -1990,11 +2141,11 @@ "затемнює Сонце першим. Ð—Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð²Ñ–Ð´Ð±ÑƒÐ´ÐµÑ‚ÑŒÑÑ Ð¼Ñ–Ð¶ Ñузір’Ñми Скорпіона Ñ– " "Ð¡Ñ‚Ñ€Ñ–Ð»ÑŒÑ†Ñ 23 Ð»Ð¸Ð¿Ð½Ñ 2031 року." -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "Ð—Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð¡Ð¾Ð½Ñ†Ñ Ð¤Ð¾Ð±Ð¾Ñом, виглÑд з гори Олімп, 10 ÑÑ–Ñ‡Ð½Ñ 2068 року." -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -2005,7 +2156,7 @@ "Ñвищем. Це показ затемненнÑ, Ñке ÑтанетьÑÑ 23 ÑÑ–Ñ‡Ð½Ñ 2048 року у режимі " "реального чаÑу." -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -2020,40 +2171,40 @@ "диÑка МарÑа Ñ– потраплÑÑ” до тіні МарÑа з притлумленнÑм ÑвіченнÑ, щоб потім " "знову заÑвітитиÑÑ." -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -"Зберігач екрана з різноманітними подіÑми у СонÑчній ÑиÑтемі. Загалом 171 " -"подіÑ!" +"Зберігач екрана з різноманітними аÑтрономічними подіÑми у СонÑчній ÑиÑтемі. " +"Передбачено 187 подій!" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "Тур клаÑичною ÑиÑтемою Ñузір’їв." -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "ВиглÑд Ð¡Ð¾Ð½Ñ†Ñ Ð· великих планет СонÑчної ÑиÑтеми та Плутона." -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" "Ðайкращі миттєвоÑÑ‚Ñ– ÑпоÑÑ‚ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð—ÐµÐ¼Ð»Ñ– з тіл СонÑчної ÑиÑтеми протÑгом 21 " "ÑторіччÑ." -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" "Транзит Венери, ÑпоÑÑ‚ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð· Сіднею, ÐвÑтраліÑ, 6 Ñ‡ÐµÑ€Ð²Ð½Ñ 2012 року." -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "Показ аналеми — шлÑху Ð¡Ð¾Ð½Ñ†Ñ Ð½ÐµÐ±Ð¾Ð¼ протÑгом року." -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." @@ -2061,1468 +2212,1505 @@ "Спалах наднової, Ñкий ÑпоÑтерігав Тихо Браґе у 1572 році. Ð”Ð»Ñ Ð¿ÐµÑ€ÐµÐ³Ð»Ñду має " "бути увімкнено додаток показу наднових." -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" +"Періоди найбільшої елонгації та ÑÑкравоÑÑ‚Ñ– Землі з МарÑа, 2000–3000 роки" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "Періоди найбільшої елонгації Землі з Юпітера, 2000–3000 роки" + +#: src/translations.h:287 msgid "Andorra" msgstr "Ðндорра" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "Об’єднані ÐрабÑькі Емірати" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "ÐфганіÑтан" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "Ðнтигуа Ñ– Барбуда" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "ÐнгільÑ" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "ÐлбаніÑ" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "ВірменіÑ" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "ÐідерландÑькі ÐнтильÑькі ОÑтрови" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "Ðнгола" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "Ðнтарктида" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "Ðргентина" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "ÐмериканÑьке Самоа" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "ÐвÑтріÑ" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "ÐвÑтраліÑ" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "Ðруба" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "Ðзербайджан" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "БоÑÐ½Ñ–Ñ Ñ‚Ð° Герцеговина" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "БарбадоÑ" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "Бангладеш" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "БельгіÑ" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "Буркіна-ФаÑо" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "БолгаріÑ" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "Бахрейн" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "Бурунді" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "Бенін" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "Бермуди" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "Бруней" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "БолівіÑ" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "БразиліÑ" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "БагамÑькі оÑтрови" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "Бутан" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "ОÑтрів Буве" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "БотÑвана" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "БілоруÑÑŒ" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "Беліз" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "Канада" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "КокоÑові оÑтрови" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "Демократична реÑпубліка Конго" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "ЦентральноафриканÑька РеÑпубліка" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "РеÑпубліка Конго" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "ШвейцаріÑ" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "Кот д’Івуар" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "ОÑтрови Кука" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "Чилі" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "Камерун" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "Китай" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "КолумбіÑ" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "КоÑта-Рика" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "Ð¡ÐµÑ€Ð±Ñ–Ñ Ñ– ЧорногоріÑ" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "Куба" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "Кабо-Верде" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "ОÑтрів Різдва" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "Кіпр" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "ЧеÑька реÑпубліка" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "Ðімеччина" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "Джибуті" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "ДаніÑ" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "Домініка" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "ДомініканÑька реÑпубліка" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "Ðлжир" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "Еквадор" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "ЕÑтоніÑ" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "Єгипет" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "Західна Сахара" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "ЕритреÑ" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "ІÑпаніÑ" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "ЕфіопіÑ" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "ФінлÑндіÑ" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "Фіджі" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ФолклендÑькі оÑтрови" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "МікронезіÑ" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "ФарерÑькі оÑтрови" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "ФранціÑ" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "Габон" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "ВеликобританіÑ" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "Гренада" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ГрузіÑ" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "Французька Гвіана" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "Гана" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "Гібралтар" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "ГренландіÑ" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "ГамбіÑ" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "ГвінеÑ" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "Гваделупа" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "Екваторіальна ГвінеÑ" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "ГреціÑ" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "Південна Ð“ÐµÐ¾Ñ€Ð³Ñ–Ñ Ñ– Південні Сандвічеві ОÑтрови" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "Гватемала" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "Гуам" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "ГвінеÑ-БіÑау" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "ГайÑна" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "Гонконг" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "ОÑтрови Херд Ñ– Мак-Дональд" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "ГондураÑ" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "ХорватіÑ" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "Гаїті" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "Угорщина" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "ІндонезіÑ" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "ІрландіÑ" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "Ізраїль" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "ІндіÑ" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "БританÑькі Території в ІндійÑькому океані" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "Ірак" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "Іран" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "ІÑландіÑ" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "ІталіÑ" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "Ямайка" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "ЙорданіÑ" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "ЯпоніÑ" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "КеніÑ" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "КиргизÑтан" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "Камбоджа" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "Кірибаті" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "КоморÑькі оÑтрови" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "Сент-ÐšÑ–Ñ‚Ñ Ñ– ÐевіÑ" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "КорейÑька Ðародно-Демократична РеÑпубліка" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "РеÑпубліка КореÑ" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "Кувейт" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "Кайманові оÑтрови" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "КазахÑтан" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "ЛаоÑ" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "Ліван" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "Сент-ЛюÑÑ–Ñ" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "Ліхтенштейн" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "Шрі-Ланка" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "ЛіберіÑ" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "ЛеÑото" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "Литва" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "ЛюкÑембург" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "ЛатвіÑ" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "ЛівійÑька ÐрабÑька ДжамахіріÑ" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "Марокко" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "Монако" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "Молдова" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "МадагаÑкар" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "Маршаллові оÑтрови" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "МакедоніÑ" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "Малі" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "М’Ñнма" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "МонголіÑ" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "Макао" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "Північні МаріанÑькі ОÑтрови" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "Мартиніка" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "МавританіÑ" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "МонтÑеррат" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "Мальта" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "Маврикій" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "Мальдіви" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "Малаві" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "МекÑика" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "МалайзіÑ" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "Мозамбік" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "ÐамібіÑ" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "Ðова КаледоніÑ" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "Ðігер" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "ОÑтрів Ðорфолк" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "ÐігеріÑ" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "Ðікарагуа" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "Ðідерланди" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "ÐорвегіÑ" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "Ðепал" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "Ðауру" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "Ðіуе" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "Ðова ЗеландіÑ" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "Оман" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "Панама" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "Перу" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "Французька ПолінезіÑ" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "Папуа-Ðова ГвінеÑ" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "Філіппіни" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "ПакиÑтан" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "Польща" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "Сен-П'єр Ñ– Мікелон" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "Піткерн" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "Пуерто-Рико" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "ПалеÑтинÑька територіÑ" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "ПортугаліÑ" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "Палау" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "Парагвай" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "Катар" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "Реюньйон" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "РумуніÑ" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "СербіÑ" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "РоÑійÑька ФедераціÑ" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "Руанда" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "СаудівÑька ÐравіÑ" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "Соломонові ОÑтрови" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "Сейшели" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "Судан" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ШвеціÑ" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "Сінгапур" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "ОÑтрів СвÑтої Єлени" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "СловеніÑ" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "ОÑтрови Свальбард Ñ– Ян Маєн" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "Словаччина" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "Сьєрра-Леоне" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "Сан-Марино" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "Сенегал" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "Сомалі" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "Суринам" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "Сан-Томе Ñ– ПринÑипі" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "Сальвадор" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "СирійÑька ÐрабÑька РеÑпубліка" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "Свазіленд" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "ОÑтрови Ð¢ÐµÑ€ÐºÑ Ñ– КайкоÑ" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "Чад" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "Французькі Південні Території" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "Того" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "Таїланд" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "ТаджикиÑтан" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "Токелау" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "Східний Тимор" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "ТуркменіÑтан" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "ТуніÑ" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "Тонга" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "Туреччина" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "Тринідад та Тобаго" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "Тувалу" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "Тайвань" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "ТанзаніÑ" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "Україна" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "Уганда" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "ÐмериканÑькі Малі Віддалені ОÑтрови" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "СШÐ" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "Уругвай" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "УзбекиÑтан" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "МіÑто-держава Ватикан" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "Сент-ВінÑент Ñ– Гренадини" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "ВенеÑуела" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "ВіргінÑькі оÑтрови (БританіÑ)" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "ÐмериканÑькі ВіргінÑькі ОÑтрови" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Ð’'єтнам" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "Вануату" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "Ð£Ð¾Ð»Ð»Ñ–Ñ Ñ– Футуна" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "Самоа" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "Ємен" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "Майотта" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "ЮгоÑлавіÑ" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "Південна Ðфрика" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "ЗамбіÑ" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "Зімбабве" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Дата Ñ– чаÑ" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "Додати 1 зірковий день" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "Додати 1 Ñидеричний міÑÑць" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "Додати 1 зірковий тиждень" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "Додати 1 Ñидеричний рік" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "Додати одне Ñидеричне ÑтоліттÑ" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "Додати 1 ÑонÑчний день" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "Додати 1 ÑонÑчну годину" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "Додати 1 ÑонÑчний тиждень" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "Додати один Ñинодичний міÑÑць" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "Додати один драконічний міÑÑць" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "Додати один аномаліÑтичний міÑÑць" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "Додати один Ñередній тропічний міÑÑць" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "Додати один драконічний рік" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "Додати один Ñередній тропічний рік" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "Додати одне Ñереднє тропічне ÑтоліттÑ" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Уповільнити Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñкрипту" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "Зменшити швидкіÑÑ‚ÑŒ чаÑу" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "Сповільнити плин чаÑу (трошки)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Пришвидшити Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñкрипту" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "Збільшити швидкіÑÑ‚ÑŒ чаÑу" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "Пришвидшити плин чаÑу (трошки)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "Призупинити Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñкрипту" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "Поновити Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñкрипту" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Ð’Ñтановити поточний чаÑ" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Ð’Ñтановити звичайну швидкіÑÑ‚ÑŒ виконаннÑ" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "Ð’Ñтановити нормальну швидкіÑÑ‚ÑŒ чаÑу" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "ÐŸÑ€Ð¸Ð·ÑƒÐ¿Ð¸Ð½ÐµÐ½Ð½Ñ Ñ‡Ð°Ñу" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "Припинити Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñкрипту" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "ВіднÑти 1 зірковий день" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "ВіднÑти 1 Ñидеричний міÑÑць" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "ВіднÑти 1 зірковий тиждень" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "ВіднÑти 1 Ñидеричний рік" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "ВіднÑти одне Ñидеричне ÑтоліттÑ" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "ВіднÑти 1 ÑонÑчний день" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "ВіднÑти 1 ÑонÑчну годину" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "ВіднÑти 1 ÑонÑчний день" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "ВіднÑти один Ñинодичний рік" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "ВіднÑти один драконічний міÑÑць" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "ВіднÑти один аномаліÑтичний міÑÑць" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "ВіднÑти один Ñередній тропічний міÑÑць" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "ВіднÑти один драконічний рік" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "ВіднÑти один Ñередній тропічний рік" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "ВіднÑти одне Ñереднє тропічне ÑтоліттÑ" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Параметри показу" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "Повернути горизонтально" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Повноекранний режим" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "ÐтмоÑфера" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "Ðзимутальна Ñітка" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "ЧаÑтини Ñвіту" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Ð—Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñузір’їв" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Межі Ñузір’їв" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Мітки Ñузір’їв" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Лінії Ñузір’їв" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "Ð—Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ‚ÑƒÐ¼Ð°Ð½Ð½Ð¾Ñтей" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "Фонові Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð²Ñ–Ð´Ð´Ð°Ð»ÐµÐ½Ð¸Ñ… об’єктів" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "Сітка екліптичних координат, J2000" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "Ð›Ñ–Ð½Ñ–Ñ ÐµÐºÐ»Ñ–Ð¿Ñ‚Ð¸ÐºÐ¸" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "Ð›Ñ–Ð½Ñ–Ñ ÐµÐºÐ²Ð°Ñ‚Ð¾Ñ€Ð°" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "Екваторіальна Ñітка" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "Екваторіальна Ñітка J2000" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "Туман" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "Галактична Ñітка" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "Галактична площина" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "ЗемлÑ" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "Ð›Ñ–Ð½Ñ–Ñ Ð³Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ñƒ" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "Ð›Ñ–Ð½Ñ–Ñ Ð¼ÐµÑ€Ð¸Ð´Ñ–Ð°Ð½Ð°" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "ТуманноÑÑ‚Ñ–" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "Віддалені об’єкти" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Ðічний режим" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "Мітки планет" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Орбіти планет" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "Траєкторії планет" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Зірки" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "Мітки зірок" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "Повернути вертикально" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "Інше" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "Ðвтоматично ховати горизонтальні клавіші" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "Ðвтоматично ховати вертикальні клавіші" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "Домівка" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Вийти" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "Копіювати дані щодо позначеного об’єкта до буфера обміну" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Зберегти знімок екрана" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "ПеремкнутиÑÑ Ð¼Ñ–Ð¶ екваторіальною Ñ– азимутальною Ñіткою" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "Увімкнути/Вимкнути графічний інтерфейÑ" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "ПереÑÑƒÐ²Ð°Ð½Ð½Ñ Ñ– вибір" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Центрувати за позначеним об’єктом" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "Ð’Ñтановити позначену планету Ñк домашню" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "ВідÑлідкувати об’єкт" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "Збільшити позначений об’єкт" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Віддалити" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "Ð’Ð¸Ð¼Ñ–Ñ€ÑŽÐ²Ð°Ð½Ð½Ñ ÐºÑƒÑ‚Ñ–Ð²" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "Позначки румбів" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "Показувати екзопланети" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "Вікно Ð½Ð°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾ÐºÐ°Ð·Ñƒ екзопланет" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "СпоÑтережніÑÑ‚ÑŒ" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "Вікно параметрів ÑпоÑтережноÑÑ‚Ñ–" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ° «ОкулÑри»" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "ПереглÑд крізь окулÑÑ€" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "Додаток візирів" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "КонтекÑтне меню окулÑрів" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "Рамка датчика зображеннÑ" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "Поле зору Telrad" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "Вибрати наÑтупний телеÑкоп" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "Вибрати наÑтупний окулÑÑ€" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "Вибрати попередній телеÑкоп" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "Вибрати попередній окулÑÑ€" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "Показувати пульÑари" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "Вікно Ð½Ð°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾ÐºÐ°Ð·Ñƒ пульÑарів" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "Показувати квазари" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "Вікно Ð½Ð°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ° квазарів" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "Вікно Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñупутників" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "Підказки щодо Ñупутників" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "Мітки Ñупутників" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "Вікно Ð½Ð°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾ÐºÐ°Ð·Ñƒ відомих з Ñ–Ñторії наднових" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "Вікно Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾ÐºÐ°Ð·Ñƒ ÑÑкравих нових" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "ÐавеÑти телеÑкоп на точку з вказаним набором координат" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "Показати дані щодо обробки зображеннÑ" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Скрипти" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "ЗапуÑтити Ñкрипт ландшафтів з файла" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "Показати Ñ– збільшити МіÑÑць" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Вікно налаштуваннÑ" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Вікно вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð´Ð°Ñ‚Ð¸ Ñ– чаÑу" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Вікно довідки" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Вікно розташуваннÑ" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Вікно пошуку" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "Вікно клавіатурних Ñкорочень" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "Вікно параметрів неба та відображеннÑ" @@ -3548,7 +3736,7 @@ msgstr "Оновити" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "РозташуваннÑ" @@ -3564,10 +3752,10 @@ msgid "Return to default" msgstr "ПовернутиÑÑ Ð´Ð¾ типового" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Стерти" @@ -3576,7 +3764,7 @@ msgstr "Додати до ÑпиÑку" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "Широта:" @@ -3589,12 +3777,12 @@ "формат,наприклад: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Довгота:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "ВиÑота:" @@ -3618,363 +3806,413 @@ msgid "Planet:" msgstr "Планета:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Знайти об'єкт" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Пошук об’єкта або позиції" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "ВикориÑтовувати клавішу Tab Ð´Ð»Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð½Ð°Ð¹Ð´ÐµÐ½Ð¸Ñ… об’єктів" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "йота" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "альфа" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "бета" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "гамма" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "дельта" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "епÑілон" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "дзета" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "ета" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "тета" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "каппа" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "лÑмбда" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "мю" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ню" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "кÑÑ–" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "омікрон" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "пі" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "ро" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "Ñигма" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "тау" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "іпÑілон" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "Ñ„Ñ–" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "Ñ…Ñ–" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "пÑÑ–" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "омега" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "Грецькі літери Ð´Ð»Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½ÑŒ Баєра" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Об’єкт" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "ПрÑме ÑходженнÑ/Ð¡Ñ…Ð¸Ð»ÐµÐ½Ð½Ñ (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "ПозиціÑ" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" +"Пошук деÑких з об’єктів можна буде здійÑнити піÑÐ»Ñ Ð²Ð¼Ð¸ÐºÐ°Ð½Ð½Ñ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´Ð½Ð¸Ñ… " +"додатків" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "назви англійÑькою" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "Шукати у ÑпиÑку…" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "СпиÑки" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "ÐÑтрономічна база даних SIMBAD у інтернеті" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "Розширений пошук за допомогою SIMBAD" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "Сервер:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "Параметри пошуку" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "ВикориÑтовувати Ð°Ð²Ñ‚Ð¾Ð´Ð¾Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð»Ð¸ÑˆÐµ Ð´Ð»Ñ Ð¿Ð¾Ñ‡Ð°Ñ‚ÐºÑ–Ð² Ñлів" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "Параметри" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "назви англійÑькою" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "Шукати у ÑпиÑку…" - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "СпиÑки" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "ПереглÑд" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Ðебо" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "Розмітка" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Ландшафт" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "Зіркова ÑтатиÑтика" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "Мітки Ñ– позначки" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Планети" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Мітки Ñ– позначки віддалених коÑмічних об’єктів (зорÑних Ñкупчень, галактик Ñ– " +"туманноÑтей)" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "Віддалені об’єкти" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "Планети Ñ– Ñупутники" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "Показати планети" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "Показати позначки планет" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Показати орбіти планет" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "Імітувати швидкіÑÑ‚ÑŒ Ñвітла" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "МаÑштабувати МіÑÑць" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "Ðвтоматична зміна ландшафтів зі зміною планети" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "Ðвтовибір ландшафту" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "Показати атмоÑферу" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "Ð—Ð°Ð±Ñ€ÑƒÐ´Ð½ÐµÐ½Ð½Ñ Ñвітлом:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "тиÑк, температура, коефіцієнт поглинаннÑ" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "Параметри розÑÑ–ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° поглинаннÑ…" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "ÐбÑолютна шкала:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "ВідноÑна шкала:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "ЯÑкравіÑÑ‚ÑŒ Чумацького ШлÑху:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "МерехтіннÑ:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "Робити Ñлабкі зірки тьмÑнішими, Ñкщо видимим Ñ” дуже ÑÑкравий об’єкт" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "Динамічна зорова адаптаціÑ" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "Метеори" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "Зенітне годинне чиÑло" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "ЗГЧ:" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "1000" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "Обмежити величини (ÑпоÑÑ‚ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð½ÐµÐ¾Ð·Ð±Ñ€Ð¾Ñ”Ð½Ð¸Ð¼ оком або у бінокль)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "Обмежити величини" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "Зірок до величини" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "Обмежити зорÑну величину зірок" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "ТуманноÑтей до величини" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" +"Обмежити зорÑну величину віддалених коÑмічних об’єктів (зорÑних Ñкупчень, " +"галактик Ñ– туманноÑтей)" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "Сузір'Ñ" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "Показувати лінії" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "Показувати мітки" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "Показувати межі" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "Показувати малюнки" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "ЯÑкравіÑÑ‚ÑŒ малюнків:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "ÐебеÑна Ñфера" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Показувати лінію екватора" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "Показувати лінію меридіана" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Показувати лінію горизонта" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "Показувати лінію екліптики" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "Показувати лінію галактичної площини" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "ПроекціÑ" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Додати/Вилучити ландшафти…" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Показувати землю" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "Показувати туман" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "ВикориÑтовувати пов'Ñзані планети та позиції" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "ВикориÑтовувати цей краєвид Ñк типовий" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "ВикориÑтовувати параметри ÑÑкравоÑÑ‚Ñ– Ð´Ð»Ñ Ð»Ð°Ð½Ð´ÑˆÐ°Ñ„Ñ‚Ñ–Ð²" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "ВикориÑтовувати цю культуру неба Ñк типову" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "Видимий" @@ -4029,7 +4267,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "ÐапрÑмок зору, Ñкий Ñлід викориÑтовувати при запуÑку Stellarium" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Ð†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ вибраний об’єкт" @@ -4045,11 +4283,8 @@ msgid "Display no information" msgstr "ЗовÑім не показувати інформацію" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "Ðічого" @@ -4191,7 +4426,7 @@ msgstr "Ñекунд" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "Дата Ñ– Ñ‡Ð°Ñ Ð¿Ñ€Ð¸ запуÑку" @@ -4203,19 +4438,23 @@ msgid "Other:" msgstr "Інше:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "ВикориÑтовувати міÑцеву дату Ñ– чаÑ" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "викориÑтовувати поточне" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "При запуÑку Stellarium викориÑтовує ÑиÑтемні дату Ñ– чаÑ" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "СиÑтемні дата та чаÑ" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" @@ -4223,23 +4462,23 @@ "Ð’Ñтановлює модельний Ñ‡Ð°Ñ Ñƒ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ñамого чаÑу доби під Ñ‡Ð°Ñ Ð½Ð°Ñтупних " "запуÑків Stellarium" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "СиÑтемна дата на:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "Ð’Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ‡Ð°Ñу" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "Редагувати рівнÑннÑ" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "Параметри планетарію" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." @@ -4247,53 +4486,53 @@ "Ð’Ð¸ÐºÑ€Ð¸Ð²Ð»ÐµÐ½Ð½Ñ Ñферичного дзеркала викориÑтовуютьÑÑ Ð¿Ñ–Ð´ Ñ‡Ð°Ñ ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ÐµÐºÑ†Ñ–Ñ— " "Stellarium на Ñферичне дзеркало Ð´Ð»Ñ Ð¼Ð°Ð»Ð¾Ð±ÑŽÐ´Ð¶ÐµÑ‚Ð½Ð¸Ñ… планетаріїв." -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "Ð’Ð¸ÐºÑ€Ð¸Ð²Ð»ÐµÐ½Ð½Ñ Ñферичного дзеркала" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "МаÑкувати вÑе поза центральним колом оÑновної облаÑÑ‚Ñ– переглÑду" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "ДиÑкове поле зору" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "Приховувати інші Ñузір'Ñ, коли ви клацаєте по ÑкомуÑÑŒ одному" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "Виберіть одне Ñузір'Ñ" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "Вирівнювати напиÑи за горизонтом" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "Позначки з Ñ‚ÑжіннÑм" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "Увімкнути або вимкнути показ тла туманноÑтей." -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "Показувати кнопку тла туманноÑтей" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" "Увімкнути або вимкнути кнопки вертикального та горизонтального " "Ð²Ñ–Ð´Ð´Ð·ÐµÑ€ÐºÐ°Ð»ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ." -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Показати кнопки віддзеркаленнÑ" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" @@ -4301,92 +4540,100 @@ "Якщо позначити цей пункт, клавіша «автоматичного зменшеннÑ» вÑтановлюватиме " "Ñ– початковий напрÑм поглÑду" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "Ðвтоматичне Ð·Ð¼ÐµÐ½ÑˆÐµÐ½Ð½Ñ Ð¿Ð¾Ð²ÐµÑ€Ñ‚Ð°Ñ” початковий напрÑм поглÑду" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" +"Показувати тіні від Ð¡Ð¾Ð½Ñ†Ñ Ð½Ð° планетах та Ñупутниках (Ñ€ÐµÐ°Ð»Ñ–Ð·Ð°Ñ†Ñ–Ñ Ñ†Ñ–Ñ”Ñ— " +"можливоÑÑ‚Ñ– потребує OpenGL верÑÑ–Ñ— 2 або новішої)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "Показувати тіні від СонцÑ" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "Знімки екрана" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "Каталог знімків екрана" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Інвертувати кольори" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ñƒ зірок" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "ÐатиÑніть тут, щоб розпочати звантаженнÑ" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Звантажте цей файл, щоб збільшити кількіÑÑ‚ÑŒ видимих зірок" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Почати Ð·Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð· початку" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "Повторити" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Зупинити звантаженнÑ. Ви можете поновити його пізніше." -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "СкаÑувати" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Закрити вікно, коли працює Ñкрипт" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "ЗапуÑк вказаного Ñкрипту" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "Зупинити запущений Ñкрипт" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "Завантажувати при запуÑку" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "налаштувати" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "ОÑновне" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ІнформаціÑ" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "ÐавігаціÑ" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "ІнÑтрументи" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Додатки" @@ -4564,12 +4811,12 @@ msgid "Displays compass bearing marks along the horizon" msgstr "Показ позначок румбів компаÑа над горизонтом" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "ОкулÑри" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " @@ -4579,164 +4826,164 @@ "лише Ð·Ð±Ñ–Ð»ÑŒÑˆÐµÐ½Ð½Ñ Ñ‚Ð° поле зору. Крім того, програма може показувати рамку " "датчика та поле зору Telrad." -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "Перед перемиканнÑм на переглÑд за допомогою окулÑра позначте об’єкт." -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "&Попередній окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "&ÐаÑтупний окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "Вибрати &окулÑÑ€" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "Увімкнути/Вимкнути пере&хреÑÑ‚Ñ" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "Ðалаштувати &окулÑри" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "Пере&мкнути ПЗЗ" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "П&еремкнути Telrad" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "&Попереднє ПЗЗ" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "&ÐаÑтупне ПЗЗ" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "&Вибрати ПЗЗ" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "&Обернути ПЗЗ" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "С&кинути обертаннÑ" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "ОкулÑÑ€ %1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "ОкулÑÑ€ %1: %2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "ФВ окулÑра: %1 мм" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "Видиме ПЗ окулÑра: %1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "Лінза â„–%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "Лінза â„–%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "Лінза: немає" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "ТелеÑкоп %1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "ТелеÑкоп %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "ЗбільшеннÑ: %1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "Поле зору: %1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "Розміри: %1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "Датчик %1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "Датчик %1: %2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "&Лінза" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "&ÐŸÐ¾Ð¿ÐµÑ€ÐµÐ´Ð½Ñ Ð»Ñ–Ð½Ð·Ð°" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "&ÐаÑтупна лінза" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&ТелеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "&Попередній телеÑкоп" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "&ÐаÑтупний телеÑкоп" @@ -4808,67 +5055,72 @@ msgid "Apparent field of view of the ocular" msgstr "Видиме поле зору цього окулÑра" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "КратніÑÑ‚ÑŒ: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "Лінза: немає" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "КратніÑÑ‚ÑŒ: недоÑтупна" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "КратніÑÑ‚ÑŒ лінзи" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "ФокуÑна відÑтань окулÑра" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "ОбертаннÑ: %1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "ЗбільшеннÑ, що забезпечуєтьÑÑ Ñ†Ð¸Ð¼ біноклем" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "Справжнє поле зору, що забезпечуєтьÑÑ Ñ†Ð¸Ð¼ біноклем" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" "ЗбільшеннÑ, Ñке забезпечуєтьÑÑ Ñ†Ñ–Ñ”ÑŽ комбінацією окулÑра, лінзи Ñ– телеÑкопа" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" "ДійÑне поле зору, Ñке забезпечуєтьÑÑ Ñ†Ñ–Ñ”ÑŽ комбінацією окулÑра, лінзи Ñ– " "телеÑкопа" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "Додаток окулÑрів" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "ВерÑÑ–Ñ" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "Ð¤ÑƒÐ½ÐºÑ†Ñ–Ñ Ð»Ñ–Ð½Ð·Ð¸ Барлоу" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "ПереглÑд" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4880,7 +5132,7 @@ "змін та Ð²Ð¸Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ Ð·Ð°Ð¿Ð¸Ñів окулÑрів та телеÑкопів, а також датчиків ПЗЗ. Під " "Ñ‡Ð°Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ запуÑку програми ÑпиÑок буде заповнено типовими пунктами." -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4897,7 +5149,7 @@ "може бути маÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð· втратою значної кориÑної площі " "Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð½Ð° екрані. Тому не рекомендуємо вам вмикати цей режим без потреби." -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " @@ -4908,7 +5160,7 @@ "але, на жаль, це не вдалоÑÑ. У поточній верÑÑ–Ñ— визначено Ð²Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ð·Ð° " "верхньою чаÑтиною екрана." -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4922,119 +5174,129 @@ "допоможе вам побачити те, що ви маєте побачити неозброєним оком за допомогою " "шукача Telrad або подібного." -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" "Якщо знайдете ÑкіÑÑŒ вади, повідомте авторові. Приємного кориÑтуваннÑ!" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "Клавіші керуваннÑ" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "Клавіші ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð¼Ð¾Ð¶Ð½Ð° змінити за допомогою вкладки «Загальне»." -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[клавіш не визначено]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "Вмикає або вимикає накладку окулÑра." -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "Відкриває контекÑтне меню навігації." -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "Увімкнути, лише Ñкщо позначено об’єкт" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "МаÑштабувати Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð° колом" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" +"ЗаÑтоÑувати Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ Ñ‰Ð¾Ð´Ð¾ зорÑної величини до телеÑкопів з різними " +"діафрагмами" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "Обмежити зорÑну величину" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "Прив’Ñзка клавіш" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "Увімкнути/Вимкнути переглÑд окулÑра:" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "Відкрити контекÑтне меню навігації:" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "ІнтерфейÑ" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "Екранна панель керуваннÑ" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "ГрадуÑи Ñ– мінути Ð´Ð»Ñ Ð¿Ð¾Ð»Ñ Ð·Ð¾Ñ€Ñƒ ПЗЗ" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Загальне" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "ОкулÑри" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "Додати" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "Ðазва:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "Видиме ПЗ:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "ФокуÑна відÑтань:" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "Польова діафрагма:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "Бінокль" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "Лінзи" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "КратніÑÑ‚ÑŒ:" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." @@ -5042,162 +5304,223 @@ "Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐºÑ€Ð°Ñ‚Ð½Ð¾ÑÑ‚Ñ– >1 збільшують фокуÑну відÑтань (лінза Барлоу).Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ " "кратноÑÑ‚Ñ– <1 зменшують фокуÑну відÑтань (лінза Шеплі)." -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "Датчики" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "РоздільніÑÑ‚ÑŒ за x (у пікÑелÑÑ…):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "РоздільніÑÑ‚ÑŒ за y (у пікÑелÑÑ…):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "Ширина мікропроцеÑора (у мм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "ВиÑота мікропроцеÑора (у мм):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "Ширина пікÑÐµÐ»Ñ (у мікронах):" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "ВиÑота пікÑÐµÐ»Ñ (у мікронах):" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "ТелеÑкопи" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "Діаметр:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "Віддзеркалити горизонтально" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "Віддзеркалити вертикально" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "Про програму" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Супутники" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" "Ð’Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ð·Ð¸Ñ†Ñ–Ð¹ штучних Ñупутників на орбіті Землі на оÑнові даних NORAD" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" "ЗаÑтарілий файл satellites.json неÑуміÑний з поточною верÑією. Буде " "викориÑтано типовий файл." -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "видимі" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "наукові" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "комунікаційні" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "навігаційні" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "аматорÑьке радіомовленнÑ" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "метеорологічні" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "геоÑтаціонарні" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "недієздатні" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "gps" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "iridium" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "КоÑмічний телеÑкоп «Хаббл»" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "Міжнародна коÑмічна ÑтанціÑ" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "Ðомер за каталогом" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "Міжнародний ідентифікатор (NSSDC ID)" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "штучний Ñупутник" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "ВідÑтань (у км): %1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "ШвидкіÑÑ‚ÑŒ зміни відÑтані (у км/Ñ): %1" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "ВиÑота (у км): %1" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "Підпункт (Шир./Довг.): %1%2/%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "Координати TEME (у км): %1" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "ШвидкіÑÑ‚ÑŒ TEME (у км/Ñ): %1" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "Супутник Ñ– ÑпоÑтерігач перебувають на ÑонÑчному боці." -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "Супутник видно." -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "Супутник у тіні." -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "Супутник не видно" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 МГц (%2%3 кГц)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Додаток «Супутники» Stellarium" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." @@ -5205,18 +5528,18 @@ "Додаток «Супутники» призначено Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð³Ð½Ð¾Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ ÑˆÑ‚ÑƒÑ‡Ð½Ð¸Ñ… " "Ñупутників Землі." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "Ð—Ð°ÑƒÐ²Ð°Ð¶ÐµÐ½Ð½Ñ Ð´Ð»Ñ ÐºÐ¾Ñ€Ð¸Ñтувачів" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" "Супутники та їхні орбіти буде показано, лише Ñкщо ÑпоÑтерігача розташовано " "на Землі." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " @@ -5226,7 +5549,7 @@ "періоду чаÑу (порÑдку днів, тижнів або близько міÑÑÑ†Ñ Ð·Ð° обома напрÑмками " "чаÑу). Поза цим діапазоном чаÑу можливі значні Ð²Ñ–Ð´Ñ…Ð¸Ð»ÐµÐ½Ð½Ñ Ñƒ даних." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." @@ -5235,7 +5558,7 @@ "днів). Щоб мати точні дані, вам Ñлід регулÑрно оновлювати дані TLE." #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5247,7 +5570,7 @@ "назвою %4. Цей файл можна буде знайти у каталозі даних кориÑтувача, а Ñаме " "підкаталозі «modules/Satellites/»." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." @@ -5256,11 +5579,11 @@ "реалізовано чаÑтково, не реалізовано або реалізовано з помилками." #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð´Ð°Ð½Ð¸Ñ… TLE" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " @@ -5270,7 +5593,7 @@ "автоматичному режимі. Типово, додаток отримує ці дані, Ñкщо поточні дані Ñ” " "заÑтарілими на понад 72 години. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5281,7 +5604,7 @@ "файла на вашому комп’ютері. Цей файл має бути збережено у тому Ñамому " "форматі, що Ñ– Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Celestrak (приклад можна знайти у %1)." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." @@ -5290,11 +5613,11 @@ "вказано ÑкіÑÑŒ дані у квадратних дужках, ці дані буде вилучено до " "викориÑÑ‚Ð°Ð½Ð½Ñ Ð½Ð°Ð·Ð²Ð¸." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð½Ð¾Ð²Ð¸Ñ… Ñупутників" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5307,11 +5630,11 @@ "«Супутники» Ñ– натиÑніть кнопку «+». Позначте пункти Ñупутників, Ñкі Ñлід " "додати, Ñ– натиÑніть кнопку «Додати»." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "Технічні нотатки" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5319,7 +5642,7 @@ "Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð±Ñ‡Ð¸ÑлюютьÑÑ Ð½Ð° оÑнові ÑпоÑобів SGP4 Ñ– SDP4. Початковими даними " "Ñ” дані TLE NORAD. " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5329,24 +5652,26 @@ "Spacetrack â„–6). " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "Докладніше про це можна дізнатиÑÑ Ð· %1документації%2." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "ПоÑиланнÑ" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5356,31 +5681,34 @@ "«%1» у полі теми (subject) під Ñ‡Ð°Ñ ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·Ð°Ð¿Ð¸Ñ‚Ñƒ." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "Якщо у Ð²Ð°Ñ Ð²Ð¸Ð½Ð¸ÐºÐ»Ð¾ питаннÑ, ви можете отримати відповідь %1тут%2" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "Повідомити про помилки можна %1тут%2." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." @@ -5388,120 +5716,140 @@ "Якщо у Ð²Ð°Ñ Ñ” Ð¿Ð¾Ð±Ð°Ð¶Ð°Ð½Ð½Ñ Ñ‰Ð¾Ð´Ð¾ реалізації можливоÑтей, ви можете Ñтворити звіт " "щодо вади Ñ– вказати у полі важливоÑÑ‚Ñ– (severity) «wishlist»." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð° допомогою інтернету вимкнено" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "ОновленнÑ…" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "До наÑтупного Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¼ÐµÐ½ÑˆÐµ хвилини" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "ÐаÑтупне Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð° %1 хв." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "ÐаÑтупне Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð° %1 год." -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "Оновити зараз" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "Оновити з файлів" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "Помилка оновленнÑ" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "Оновлено дані %1 з %2 Ñупутників; дані Ð´Ð»Ñ %3 не знайдено" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "Оновлено дані %1 з %2 Ñупутників; додано %3; вилучено %4 запиÑи" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "Оновлено дані %1 з %2 Ñупутників; додано %3; не знайдено %4 запиÑи" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[нове джерело]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "Оновити зараз" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "Оновити з файлів" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[помилка під Ñ‡Ð°Ñ Ð¾Ð±Ñ‡Ð¸ÑÐ»ÐµÐ½Ð½Ñ Ð¾Ñ€Ð±Ñ–Ñ‚Ð¸]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[вÑÑ– щойно додані]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[вÑÑ– не показані]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[вÑÑ– показані]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[вÑÑ–]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "Створити групу…" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "Вибір файла Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ TLE" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "Ð—Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð´Ð°Ð½Ð¸Ñ…â€¦" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." @@ -5509,175 +5857,201 @@ "Stellarium отримує дані щодо Ñупутників з джерел оновленнÑ. Зачекайте, будь " "лаÑка…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "Виберіть файли даних TLE…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "Обробка даних…" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "Ðе вдалоÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ жодних даних. Повторіть Ñпробу пізніше." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "Ðомер у каталозі: %1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ° «Супутники»" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "Оновити ÑпиÑки TLE з джерел у інтернеті" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "ОновленнÑ" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "Оновити з джерел у інтернеті" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "Оновити дані щодо Ñупутників з інтернет-джерел" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "Попереднє оновленнÑ:" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" +"Під Ñ‡Ð°Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚Ð¸ вÑÑ– нові запиÑи Ñупутників з позначених джерел" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" +"Під Ñ‡Ð°Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ð¸Ð»ÑƒÑ‡Ð¸Ñ‚Ð¸ вÑÑ– запиÑи Ñупутників, Ñких немає у ÑпиÑках " +"джерел оновленнÑ" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "ЧаÑтота Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ (у годинах):" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "ÐадпиÑи" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "Розмір шрифту надпиÑів (у пікÑелÑÑ…):" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "Лінії орбіт" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "КількіÑÑ‚ÑŒ Ñегменті Ð´Ð»Ñ Ð¼Ð°Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ð»Ñ–Ð½Ñ–Ñ— орбіти" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "КількіÑÑ‚ÑŒ Ñегментів:" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "ТриваліÑÑ‚ÑŒ видимоÑÑ‚Ñ– окремого Ñегмента у Ñекундах" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "Довжина Ñегментів:" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "КількіÑÑ‚ÑŒ Ñегментів, потрібних Ð´Ð»Ñ Ð¼Ð°Ð»ÑŽÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð¶Ð½Ð¾Ð³Ð¾ з кінців лінії" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "Довжина:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "Відновити параметри" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "Зберегти параметри Ñк типові" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "Параметри" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "Двічі клацніть на позначці Ñупутника, щоб розпочати ÑÑ‚ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð° ним." + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "Додати інші Ñупутники" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "Вилучити позначені запиÑи Ñупутників" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "Зберегти зміни" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "Ðомер у каталозі:" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "Показувати позначені штучні Ñупутники" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "Показано" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "Показувати лінії орбіт Ð´Ð»Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ… Ñупутників" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "Орбіта" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "Ðомер у каталозі:" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "" +"Ðе оновлювати (або вилучати під Ñ‡Ð°Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ) дані позначених Ñупутників" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "Ðе оновлювати" + +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "ОпиÑ:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "Групи:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "СпиÑок груп, відокремлених комами" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "Дані TLE:" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "ДворÑдкові дані параметрів орбіт NORAD" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "Вилучити позначені запиÑи Ñупутників" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "Додати інші Ñупутники" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "Ðабір TLE:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "Зберегти зміни" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "" +"Дані Ñупутників у позначених ÑпиÑках джерел буде автоматично додано під Ñ‡Ð°Ñ " +"наÑтупного оновленнÑ, Ñкщо Ñ—Ñ… ще немає у збірці." -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." @@ -5685,15 +6059,15 @@ "Вкажіть або змініть адреÑу позначеного джерела. Зміни буде заÑтоÑовано піÑÐ»Ñ " "натиÑÐºÐ°Ð½Ð½Ñ ÐºÐ»Ð°Ð²Ñ–ÑˆÑ– Enter." -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "Додати нове джерело" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "Вилучити позначене джерело" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "Джерела" @@ -5729,11 +6103,11 @@ msgid "Discard" msgstr "Відкинути" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "Ð£Ð¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ Ñ‚ÐµÐ»ÐµÑкопом" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." @@ -5741,12 +6115,12 @@ "За допомогою цього додатка Stellarium може надÑилати команди ÑпрÑÐ¼ÑƒÐ²Ð°Ð½Ð½Ñ " "телеÑкопа до ком’ютеризованого штатива." -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "ÐавеÑти телеÑкоп %1 на вказаний об’єкт" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "ÐавеÑти телеÑкоп %1 на точку, Ñка зараз перебуває у центрі екрана" @@ -6153,62 +6527,62 @@ "Ñ– чаÑу на нижній панелі." #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "ÑічнÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "лютого" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "березнÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "квітнÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "травнÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "червнÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "липнÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "ÑерпнÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "вереÑнÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "жовтнÑ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "лиÑтопада" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "груднÑ" @@ -6366,7 +6740,7 @@ msgstr "Ці параметри керують ÑпоÑобом показу дати Ñ– чаÑу на нижній панелі." #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "Формат показу чаÑу" @@ -6384,7 +6758,7 @@ msgstr "24-годинний формат" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "Формат показу дати" @@ -6400,11 +6774,11 @@ msgid "mm-dd-yyyy" msgstr "мм-дд-рррр" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "ТекÑтовий Ñ–Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ ÐºÐ¾Ñ€Ð¸Ñтувача" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" @@ -6412,144 +6786,144 @@ "Додаток, що реалізує передбачений у верÑÑ–ÑÑ… 0.9.x текÑтовий Ñ–Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ " "взаємодії з кориÑтувачем, Ñкий викориÑтовуєтьÑÑ Ñƒ ÑиÑтемах планетаріїв" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Об'єкт ÑонÑчної ÑиÑтеми" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "Поточна дата Ñ– чаÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Ð’Ñтановити чаÑовий поÑÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "Клавіші днів" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "Початкова дата Ñ– чаÑ" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "ÑиÑтемна" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "шаблон" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "ммддрррр" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "ддммрррр" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "ррррммдд" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12-годинний" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24-годинний" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Мова" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "Показувати зірки" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "Кольори" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "Ðазви туманноÑтей" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "Мітки туманноÑтей" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "Ð›Ñ–Ð½Ñ–Ñ Ð¿Ð»Ð¾Ñ‰Ð¸Ð½Ð¸ Галактики" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Ефекти" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "Ручний маÑштаб" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "Множник маÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "ІнтенÑивніÑÑ‚ÑŒ Молочного шлÑху:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "ЧаÑтота міток туманноÑтей:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "ТриваліÑÑ‚ÑŒ зміни маÑштабу:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "Затримка вказівника:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ð²ÑтановлюєтьÑÑ Ð·Ð° ландшафтом" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "Виконати локальний Ñкрипт" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "Зупинити Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ð»Ð¾ÐºÐ°Ð»ÑŒÐ½Ð¾Ð³Ð¾ Ñкрипту" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "Скрипт на CD/DVD" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "ÐдмініÑтруваннÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "Завантажити типові налаштуваннÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "Зберегти поточні налаштуваннÑ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "Завершити роботу" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[не вузол TUI]" @@ -6586,17 +6960,17 @@ "Розробку додатка ще не завершено." #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "Запит до Ñлужби %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" "Якщо запит буде уÑпішно виконано, буде повернуто лише один результат." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." @@ -6604,7 +6978,7 @@ "Комети Ñ– аÑтероїди можна знайти за номером, назвою (англійÑькою мовою) або " "тимчаÑовим позначеннÑм." -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6794,40 +7168,48 @@ msgid "Solar System" msgstr "СонÑчна ÑиÑтема" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "Ðаднові, зафікÑовані у Ñ–Ñторії" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -"Додаток, за допомогою Ñкого програма може показувати дані відомих з Ñ–Ñторії " -"наднових з видимою зорÑною величиною, більшою за 10." +"За допомогою цього додатка ви зможете побачити деÑкі з ÑÑкравих наднових, " +"відомих з Ñ–Ñторії." -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "наднова" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "Тип наднової: %1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "МакÑимальна ÑÑкравіÑÑ‚ÑŒ: %1" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "Додаток відомих з Ñ–Ñторії наднових" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" +"За допомогою цього додатка ви зможете побачити деÑкі з ÑÑкравих наднових, " +"відомих з Ñ–Ñторії: " + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" -"Додаток, за допомогою Ñкого можна переглÑдати відомі з Ñ–Ñторичних хронік " -"наднові, ÑÑкравіші за видиму величину 10: " +"УÑÑ– ці наднові були ÑÑкравішими за %1 у момент найбільшої ÑÑкравоÑÑ‚Ñ–." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "Криві ÑвітноÑÑ‚Ñ–" @@ -6849,7 +7231,7 @@ msgstr "ПодÑки" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6864,14 +7246,14 @@ msgstr "ІнÑтитут теоретичної та екÑпериментальної фізики" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "у РоÑÑ–Ñ—" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6881,8 +7263,9 @@ "каталогу, можете %1ÑкориÑтатиÑÑ Ñ†Ñ–Ñ”ÑŽ Ñторінкою%2." #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "До наÑтупного оновленнÑ: %1 днів" @@ -6900,29 +7283,118 @@ msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ° відомих з Ñ–Ñторії наднових" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "Оновити дані за допомогою інтернету" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "Оновити з джерел у інтернеті" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "ЧаÑтота Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ (у днÑÑ…):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[дані щодо наÑтупного оновленнÑ]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "ЯÑкраві нові" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" +"Додаток, за допомогою Ñкого можна побачити ÑÑкраві нові зірки у галактиці " +"Молочний ШлÑÑ…." + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "Тип: %1 (%2)" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "нова" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "Додаток ÑÑкравих нових" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" +"Знайти нову можна за допомогою інÑтрумента пошуку, проÑто введіть Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ " +"або поширену назву нової (наприклад «Nova Cygni 1975» або «V1500 Cyg»)." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" +"У цьому додатку викориÑтано дуже проÑту модель обчиÑÐ»ÐµÐ½Ð½Ñ ÐºÑ€Ð¸Ð²Ð¸Ñ… ÑвітноÑÑ‚Ñ– " +"Ð´Ð»Ñ Ð½Ð¾Ð²Ð¸Ñ… зірок." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" +"Цю модель заÑновано на значенні чаÑу Ð·Ð¼ÐµÐ½ÑˆÐµÐ½Ð½Ñ ÑÑкравоÑÑ‚Ñ– на %1 величин, де " +"%1 може приймати Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ 2, 3, 6 Ñ– 9." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" +"Якщо Ð´Ð»Ñ Ð½Ð¾Ð²Ð¾Ñ— немає Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð¼ÐµÐ½ÑˆÐµÐ½Ð½Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½Ð¸, додаток викориÑтовує " +"типові значеннÑ." + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" +"Якщо вам хочетьÑÑ Ð´Ñ–Ð·Ð½Ð°Ñ‚Ð¸ÑÑ Ð±Ñ–Ð»ÑŒÑˆÐµ про цей додаток, його Ñ–Ñторію та формат " +"каталогу, можете %1відвідати цю Ñторінку%2." + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "Дані нових оновлено" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾ÐºÐ°Ð·Ñƒ ÑÑкравих нових" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ° ÑÑкравих нових" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "Квазари" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6942,11 +7414,11 @@ msgid "Z (redshift): %1" msgstr "Z (червоний зÑув): %1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "Додаток квазарів" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6956,40 +7428,50 @@ "зорÑною величиною, вищою за 16. Каталог квазарів Ñкладено на оÑнові збірника " "«Квазари Ñ– активні Ñдра галактик» (13 виданнÑ)." -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "Дані квазарів оновлено" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾ÐºÐ°Ð·Ñƒ квазарів" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ° квазарів" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "Режим показу квазарів" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "Параметри показу квазарів" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "Показати вÑÑ– квазари без міток" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "Увімкнути показ розподілу квазарів" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "Увімкнути показ під Ñ‡Ð°Ñ Ð·Ð°Ð¿ÑƒÑку" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "Показувати кнопку квазарів на панелі" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "ПульÑари" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -7118,11 +7600,11 @@ "окрема нейтронна зірка з пульÑаційним гамма-випромінюваннÑм у тепловому " "діапазоні, але без придатного до виÑÐ²Ð»ÐµÐ½Ð½Ñ Ñ€Ð°Ð´Ñ–Ð¾Ð²Ð¸Ð¿Ñ€Ð¾Ð¼Ñ–Ð½ÑŽÐ²Ð°Ð½Ð½Ñ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "Додаток пульÑарів" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -7133,67 +7615,71 @@ "R. N., Hobbs, G. B., Teoh, A. & Hobbs, M., Astron. J., 129, 1993-2006 (2005) " "(%1astro-ph/0412641%2))." -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "ЗауваженнÑ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "ідентифікатори пульÑарів маю Ð¿Ñ€ÐµÑ„Ñ–ÐºÑ Â«PSR»" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "ПодÑки" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "Владімір Самодуров" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "ПущинÑька радіоаÑтрономічна обÑерваторіÑ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "Мацей Серилак" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "ÐанÑейÑька радіоаÑтрономічна обÑерваторіÑ" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "у Франції" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "Дані пульÑарів оновлено" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿ÑƒÐ»ÑŒÑарів" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ° пульÑарів" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "Режим показу Ð´Ð»Ñ Ð¿ÑƒÐ»ÑŒÑарів" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "Параметри показу пульÑарів" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "Показати вÑÑ– пульÑари без міток" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "Увімкнути показ розподілу пульÑарів" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "Показувати кнопку пульÑарів на панелі" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "Екзопланети" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" @@ -7202,71 +7688,71 @@ "екзопланетами. Дані екзопланет отримано на оÑнові «Extrasolar Planets " "Encyclopaedia» на exoplanet.eu." -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "МеталічніÑÑ‚ÑŒ" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "МаÑа" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "РадіуÑ" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "Ефективна температура: %1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "Екзопланета" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Період" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "днів" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "Юп" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Велика піввіÑÑŒ" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "ÐО" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "ЕкÑцентриÑитет" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Ðахил орбіти" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "Кутова відÑтань" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "Рік відкриттÑ" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "Додаток екзопланет" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -7277,7 +7763,7 @@ "Encyclopaedia%2»." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " @@ -7286,42 +7772,136 @@ "Якщо вам потрібні вÑÑ– дані щодо додатка, його Ñ–Ñторії та формату даних " "каталогу, отримати Ñ—Ñ… можна %1тут%2." -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" +"Загальні профеÑійні Ñайти, тематику Ñких пов’Ñзано з позаÑонÑчними планетами" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "Екзопланети: інтерактивна верÑÑ–Ñ XKCD 1071" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" +"HEK (The Hunt for Exomoons with Kepler або Ð¿Ð¾Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ð·Ð° екзоÑупутниками з " +"Кеплером)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "Екзопланети у подвійних Ñ– кратних ÑиÑтемах (Richard Schwarz)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "ÐÐ°Ð¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ð½Ð½Ñ ÐµÐºÐ·Ð¾Ð¿Ð»Ð°Ð½ÐµÑ‚ (IAU)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" +"ДеÑкі аÑтрономи та групи аÑтрономів, Ñкі Ñ” активними у вивченні позаÑонÑчних " +"планет" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "оновленнÑ: 16 ÐºÐ²Ñ–Ñ‚Ð½Ñ 2012 року" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "Ðавігатор даними щодо екзопланет" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "Ðнгло-авÑтралійÑький пошук планет" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "ЖеневÑькі програми пошуку позаÑонÑчних планет" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "OLBIN (Optical Long-Baseline Interferometry News)" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "Програма Ð²Ð¸Ð²Ñ‡ÐµÐ½Ð½Ñ ÐµÐºÐ·Ð¾Ð¿Ð»Ð°Ð½ÐµÑ‚ ÐÐСÐ" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "Планети пульÑарів" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "Ðрхів екзопланет ÐÐСÐ" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "Комітет 53 ÐœÐС: позаÑонÑчні планети" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "ExoMol" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "Ð“Ð°Ð»ÐµÑ€ÐµÑ Ð¿Ñ€Ð¸Ð´Ð°Ñ‚Ð½Ð¸Ñ… до поÑÐµÐ»ÐµÐ½Ð½Ñ Ð·Ð¾Ð½" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "PlanetQuest — пошук інших Земель" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "Відкритий каталог екзопланет" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "Каталог придатних Ð´Ð»Ñ Ð¶Ð¸Ñ‚Ñ‚Ñ ÐµÐºÐ·Ð¾Ð¿Ð»Ð°Ð½ÐµÑ‚" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "Дані екзопланет оновлено" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾ÐºÐ°Ð·Ñƒ екзопланет" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ° екзопланет" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "Оновити дані щодо екзопланет з інтернету" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "Режим показу Ð´Ð»Ñ ÐµÐºÐ·Ð¾Ð¿Ð»Ð°Ð½ÐµÑ‚" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "Параметри показу екзопланет" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "Показувати вÑÑ– ÑиÑтеми з екзопланетами без міток" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "Увімкнути показ розподілу екзопланет" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "Показувати екзопланети за чаÑом відкриттÑ" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "Увімкнути чаÑову шкалу показу екзопланет" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "Показувати кнопку екзопланет на панелі" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "ВідомоÑÑ‚Ñ–" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "Ðналіз ÑпоÑтережноÑÑ‚Ñ–" @@ -7345,185 +7925,179 @@ "Ñкі показує Ñкрипт, наведено на вкладці «Про програму» діалогового вікна " "налаштувань." -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "Ñіч" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "лют" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "бер" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "кві" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "тра" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "чер" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "лип" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "Ñер" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "вер" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "жов" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "лиÑ" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "гру" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "г" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "м" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "Ñ" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "Заходить о %1 (за %2)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "Схід о %1 (%2 тому)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "Захід о %1 (%2 тому)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "Сходить о %1 (за %2)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "ПриполÑрна." -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "Ðе Ñходить." -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "ÐšÑƒÐ»ÑŒÐ¼Ñ–Ð½Ð°Ñ†Ñ–Ñ Ð¾ %1 (за %2) у %3°" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "ÐšÑƒÐ»ÑŒÐ¼Ñ–Ð½Ð°Ñ†Ñ–Ñ Ð¾ %1 (%2 тому) у %3°" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "Джерело не Ñ” ÑпоÑтережним." -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "Ðе має акронічного або коÑмічного Ñходу/заходу." -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "Ðайбільше видовженнÑ: " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "Ðайбільша віддаль від СонцÑ: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (на %1°)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "Ðкронічний Ñхід/захід" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "Ðе має акронічного Ñходу/заходу." -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "КоÑмічний Ñхід/захід" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "Ðе має коÑмічного Ñходу/заходу." -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "СпоÑтережна цілий рік." -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "ÐеÑпоÑтережна темної чаÑтини доби." -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "Ðочі над горизонтом: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "СЬОГОДÐІ:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "ЦЬОГО РОКУ:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "Попередній повний міÑÑць: %1 %2 о %3:%4. " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "ÐаÑтупний повний міÑÑць: %1 %2 о %3:%4. " @@ -7904,6 +8478,9 @@ #~ msgid "Magnitude Scaling Multiplier: " #~ msgstr "Множник маÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ Ð²ÐµÐ»Ð¸Ñ‡Ð¸Ð½: " +#~ msgid "Nebulas" +#~ msgstr "ТуманноÑÑ‚Ñ–" + #~ msgid "Form" #~ msgstr "Форма" @@ -7949,6 +8526,9 @@ #~ msgid "Correct for light travel time: " #~ msgstr "ÐšÐ¾Ñ€ÐµÐºÑ†Ñ–Ñ Ð½Ð° Ñ‡Ð°Ñ Ð¿Ð¾ÑˆÐ¸Ñ€ÐµÐ½Ð½Ñ Ñвітла: " +#~ msgid "Nebulas background images" +#~ msgstr "Ð—Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ‚ÑƒÐ¼Ð°Ð½Ð½Ð¾Ñтей" + #~ msgid "Hourly zenith rate:" #~ msgstr "ІнтенÑивніÑÑ‚ÑŒ метеорного потоку:" @@ -8085,6 +8665,22 @@ #~ "Підтримка надаєтьÑÑ Ð·Ð° допомогою Ñайта Launchpad. У ваших звітах не " #~ "забувайте вказати у полі теми «Satellites plugin»." +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "Оновлено дані %1 з %2 Ñупутників; дані Ð´Ð»Ñ %3 не знайдено" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "Оновити ÑпиÑки TLE з джерел у інтернеті" + +#~ msgid "Comma separated list of groups" +#~ msgstr "СпиÑок груп, відокремлених комами" + +#~ msgid "TLE data:" +#~ msgstr "Дані TLE:" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "ДворÑдкові дані параметрів орбіт NORAD" + #~ msgid "" #~ "This plugin plots the position of various pulsars, with object information " #~ "about each one. Pulsar data is derived from 'Catalog of Pulsars' (Taylor+ " @@ -8204,6 +8800,26 @@ #~ msgid "Additional info (Extra 3)" #~ msgstr "Додаткові дані (поле 3)" +#~ msgid "Display mode for pulsars" +#~ msgstr "Режим показу Ð´Ð»Ñ Ð¿ÑƒÐ»ÑŒÑарів" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "" +#~ "Додаток, за допомогою Ñкого програма може показувати дані відомих з Ñ–Ñторії " +#~ "наднових з видимою зорÑною величиною, більшою за 10." + +#~ msgid "Display mode for quasars" +#~ msgstr "Режим показу квазарів" + +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "" +#~ "Додаток, за допомогою Ñкого можна переглÑдати відомі з Ñ–Ñторичних хронік " +#~ "наднові, ÑÑкравіші за видиму величину 10: " + #~ msgid "A Quintuple eclipse from Deimos 2027" #~ msgstr "П’Ñтикратне Ð·Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð· ДеймоÑа у 2027 році" @@ -8219,6 +8835,12 @@ #~ msgid "Phobos Eclipses the sun as seen from Olympus Mons Jan 10, 2068." #~ msgstr "Ð—Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð¡Ð¾Ð½Ñ†Ñ Ð¤Ð¾Ð±Ð¾Ñом, виглÑд з гори Олімп, 10 ÑÑ–Ñ‡Ð½Ñ 2068 року." +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "" +#~ "Зберігач екрана з різноманітними подіÑми у СонÑчній ÑиÑтемі. Загалом 171 " +#~ "подіÑ!" + #~ msgid "A tour via western constellations." #~ msgstr "Тур клаÑичними обриÑами Ñузір’їв." diff -Nru stellarium-0.12.1/po/stellarium/uz.po stellarium-0.12.4/po/stellarium/uz.po --- stellarium-0.12.1/po/stellarium/uz.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/uz.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:27+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Uzbek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:20+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/vi.po stellarium-0.12.4/po/stellarium/vi.po --- stellarium-0.12.1/po/stellarium/vi.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/vi.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,196 +7,196 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-02-24 08:36+0000\n" -"Last-Translator: thanbang \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-09-10 07:18+0000\n" +"Last-Translator: Bui Ngoc Lam \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:20+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:55+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "Kinh tuyến" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "ÄÆ°á»ng hoàng đạo" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "Xích đạo" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "Chân trá»i" #: src/core/modules/GridLinesMgr.cpp:580 msgid "Galactic Plane" -msgstr "" +msgstr "Mặt phẳng thiên hà" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "Tác giả: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "Vị trí: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "Hành tinh: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "Loại: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" -msgstr "" +msgstr "Äá»™ sáng: %1 (extincted to: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" -msgstr "Äá»™ lá»›n: %1" +msgstr "Äá»™ sáng: %1" #: src/core/modules/Nebula.cpp:137 #, qt-format msgid "Size: %1" msgstr "Kích thÆ°á»›c: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "Thiên hà" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "Chùm sao mở" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "Chùm sao hình cầu" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "Tinh vân" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "Tinh vân hành tinh" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "Tinh vân tối" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" -msgstr "Chùm sao có mây mù" +msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "Không rõ" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "Loại chÆ°a xác định" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "Äá»™ sáng tuyệt đối (M): %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "Äá»™ nghiêng trục (of date, for Earth): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "Khoảng cách: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "Khoảng cách: %1AU" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" -msgstr "" +msgstr "Ä‘Æ°á»ng kính biểu kiến: %1, with rings: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" -msgstr "ÄÆ°á»ng kính bên ngoài: %1" +msgstr "Ä‘Æ°á»ng kính biểu kiến: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" -msgstr "" +msgstr "Chu kỳ thiên văn: %1 ngày (%2a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" -msgstr "" +msgstr "Ngày thiên văn: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "Pha quỹ đạo: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "Ly Ä‘á»™: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" -msgstr "Äá»™ sáng: %1%" +msgstr "Äược chiếu sáng: %1%" #: src/core/modules/MinorPlanet.cpp:201 #, qt-format @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "sao" @@ -217,49 +217,124 @@ #: src/core/modules/StarWrapper.cpp:60 #, qt-format msgid "Apparent Magnitude: %1 (by extinction)" +msgstr "Äá»™ sáng biểu kiến: %1" + +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "Sao biến quang bùng phát" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "Sao biến quang co dãn" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "Sao biến quang luân phiên" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "Sao biến quang biến Ä‘á»™ng lá»›n" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "sao biến quang" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "Sao đôi" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "Loại: %1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" -msgstr "" +msgstr "Äá»™ sáng: %1 (extincted to: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" -msgstr "Äá»™ phóng đại: %1 (B-V: %2)" +msgstr "Äá»™ sáng: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "Loại quang phổ: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "Khoảng cách: %1 Năm Ãnh Sáng" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "Thị sai: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "Chu kỳ: %1 ngày" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "Phi thuyá»n" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "Lá»—i" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -655,67 +747,68 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "Chá»n thÆ° mục chứa hình" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "TrÆ°á»ng nhìn khởi phát: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "HÆ°á»›ng nhìn ban đầu Az/Alt: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "Các tác giả" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "Liên hệ" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "Tác giả" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "Giấy Phép" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "Script thá»±c thi: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "Script thá»±c thi: [không]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "Hoàn tất việc tải các catalô sao má»›i" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "Lấy catalog thứ %1 trong %2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -724,7 +817,7 @@ "Äang tải %1...\n" "(Bạn có thể đóng cữa sổ cấu hình)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -735,7 +828,7 @@ "Số lượng sao: %2 Million\n" "Khoảng Ä‘á»™ sáng: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -744,11 +837,11 @@ "Lá»—i khi Ä‘ang tải xuống %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "Kiểm tra sá»± toàn vẹn của tập tin..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -758,115 +851,123 @@ "Tập tin bị lá»—i." #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1036,49 +1137,53 @@ msgid "OSX Developer: %1" msgstr "NgÆ°á»i phát triển OSX: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "Phím cách" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "Không có mô tả" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "Äịa chỉ má»›i" @@ -1181,19 +1286,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1209,30 +1314,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "Mặt trá»i" @@ -1249,12 +1360,12 @@ msgstr "Trái đất" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "Mặt trăng" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "Há»a tinh" @@ -1352,7 +1463,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "Thổ tinh" @@ -1650,239 +1761,268 @@ msgstr "" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "Hàn Quốc" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "NgÆ°á»i Pô-li-nê-di" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "PhÆ°Æ¡ng Tây" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1892,1502 +2032,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "Cá»™ng hòa Dân chủ Nhân dân Triá»u Tiên" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "Hàn Quốc" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "Việt Nam" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "Ngày và Giá»" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "Giảm tốc Ä‘á»™ xủ lý trình con" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "Làm tốc Ä‘á»™ trình con xá»­ lý nhanh hÆ¡n" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "Thá»i gian hiện tại" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "Äịnh tốc Ä‘á»™ xá»­ lý trình con bình thÆ°á»ng" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "Quay lại ngày trÆ°á»›c" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "Quay lại giá» trÆ°á»›c" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "Quay lại tuần trÆ°á»›c" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "Hiển thị các tuỳ chá»n" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "Toàn màn hình" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "Khí quyển" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "LÆ°á»›i phÆ°Æ¡ng vị" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "Äiểm phÆ°Æ¡ng hÆ°á»›ng" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "Hình vẽ chòm sao" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "Ranh giá»›i các chòm sao" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "Tên của các chòm sao" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "Các Ä‘Æ°á»ng liên kết chòm sao" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "ÄÆ°á»ng hoàng đạo" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "ÄÆ°á»ng Xích đạo" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "LÆ°á»›i xích đạo" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "SÆ°Æ¡ng mù" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "Mặt đất" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "ÄÆ°á»ng chân trá»i" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "Chế Ä‘á»™ đêm" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "Quỹ đạo hành tinh" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" -msgstr "" +msgstr "Vết các hành tinh" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "Các vì sao" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "Thoát" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "Chụp màn hình" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "Quay theo Xích đạo/PhÆ°Æ¡ng vị" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "Chuyển đến đối tượng đã chá»n" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "Thu nhá»" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Nguyên bản" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "Cấu hình" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "Ngày/Giá»" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "Trợ Giúp" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "Äịa Ä‘iểm" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "Tìm kiếm" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3413,7 +3589,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "Äịa Ä‘iểm" @@ -3429,10 +3605,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "Xóa" @@ -3441,7 +3617,7 @@ msgstr "Thêm vào danh sách" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "VÄ© Ä‘á»™:" @@ -3452,12 +3628,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "Kinh Ä‘á»™:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "Äá»™ cao:" @@ -3481,363 +3657,407 @@ msgid "Planet:" msgstr "Hành tinh:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "Tìm đối tượng" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "Tìm đối tượng hoặc Vị trí" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "Äối tượng" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "Bầu trá»i" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "Khung cảnh" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "Hành tinh" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "Hiện Quỹ đạo các hành tinh" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "Nhấp nháy:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "Thiên cầu" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "Hiện Ä‘Æ°á»ng xích đạo" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "Hiện Ä‘Æ°á»ng chân trá»i" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "Phép chiếu" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "Thêm/xóa phong cảnh..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "Hiển thị mặt đất" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3887,7 +4107,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "Thông tin đối tượng đã chá»n" @@ -3903,11 +4123,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4049,7 +4266,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4061,182 +4278,192 @@ msgid "Other:" msgstr "Loại Khác:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "Dùng hiệnt tại" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "Chuyển đổi hình dá»c và ngang của nút lật" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "Hiển thị nút lật" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "Äảo ngược màu sắc" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "Danh mục sao má»›i" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "Bấm vào đây để tải" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "Tải hồ sÆ¡ này xuống để xem nhiá»u sao hÆ¡n" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "Tải xuống lại lần nữa" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "Ngừng tải. Bạn có thể tải xuống lần khác" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "Hủy bá»" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "Chính" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "Thông tin" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "Công cụ" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "Phần bổ sung" @@ -4404,176 +4631,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "Kính thiên văn #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "Kính thiên văn #%1: %2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "&Kính thiên văn" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4645,64 +4872,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4710,7 +4942,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4721,14 +4953,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4737,305 +4969,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "Tổng quát" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "Äá»™ phân giải x (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "Äá»™ phân giải y (pixels):" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "Vệ tinh" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5043,25 +5344,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5069,17 +5370,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5087,41 +5388,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5129,338 +5432,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" -msgstr "Quỹ đạo" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" +msgstr "Quỹ đạo" + +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5496,22 +5842,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5894,62 +6240,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6103,7 +6449,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6121,7 +6467,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6137,154 +6483,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "Giao diện ngÆ°á»i dùng văn bản" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "Vật thể thuá»™c hệ mặt trá»i:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "Chá»n múi giá»" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "Ngôn ngữ" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "Hiệu ứng" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6317,22 +6663,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6501,36 +6847,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6548,7 +6901,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6562,14 +6915,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6577,8 +6930,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6596,29 +6950,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6634,51 +7065,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6798,11 +7239,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6810,137 +7251,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "Chu kỳ" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "Bán trục lá»›n" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "ÄÆ¡n vị thiên văn" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "Äá»™ nghiêng" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6948,49 +7393,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -7006,185 +7540,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/zh.po stellarium-0.12.4/po/stellarium/zh.po --- stellarium-0.12.1/po/stellarium/zh.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/zh.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:31+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Chinese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:12+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:46+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "黄é“" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "地平" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium/zh_CN.po stellarium-0.12.4/po/stellarium/zh_CN.po --- stellarium-0.12.1/po/stellarium/zh_CN.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/zh_CN.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2013-04-10 09:39+0000\n" -"Last-Translator: forest93 \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-08-26 12:20+0000\n" +"Last-Translator: Allen Zhong \n" "Language-Team: Chinese (Hong Kong) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:56+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "å­åˆçº¿" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "黄é“" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "赤é“" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "地平线" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "银é“é¢" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "作者: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "ä½ç½®ï¼š " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 ç±³" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "行星: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "类型:%1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" -msgstr "星等:%1(消光åŽï¼š%2)" +msgstr "星等:%1(大气消光åŽï¼š%2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "星等:%1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "大å°: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "星系" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "ç–散星团" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "çƒçŠ¶æ˜Ÿå›¢" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "星云" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "行星状星云" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "暗星云" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "带有星云状物质的星团" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "未知" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "未收录类型" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "ç»å¯¹æ˜Ÿç­‰: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "站心黄é“åæ ‡(当å‰æ—¥æœŸçºªå…ƒ): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "自转轴倾角(当å‰æ—¥æœŸï¼Œç›¸å¯¹äºŽåœ°çƒè½¨é“é¢): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "è·ç¦»: %1 天文å•ä½(%2 åƒç±³)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "è·ç¦»: %1 天文å•ä½" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "视直径: %1, 包括环: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "视直径: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "公转轨é“周期:%1天 (%2儒略年)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "æ’星日: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "平太阳日: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "ä½ç›¸è§’: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "è·è§’: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "相: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "被照亮的部分: %1%" @@ -204,7 +204,7 @@ msgstr "临时编å·: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "æ’星" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "视星等:%1(消光åŽï¼‰" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "爆å‘å˜æ˜Ÿ" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "脉动å˜æ˜Ÿ" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "自转å˜æ˜Ÿ" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "æ¿€å˜å˜æ˜Ÿ" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "食åŒæ˜Ÿç³»ç»Ÿ" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "å˜æ˜Ÿ" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "åŒæ˜Ÿ" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "类型:%1, %2" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "星等: %1 (extincted to: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "星等:%1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "星等范围:%1%2%3 (测光系统:%4)" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "星等范围:%1%2%3/%4 (测光系统:%5)" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "光谱类型: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "è·ç¦»: %1 光年" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "视差: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "最å°äº®åº¦æ—¶é—´ï¼š%1 JD" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "最大亮度时间:%1 JD" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "周期:%1天" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "下次æžå°äº®åº¦ï¼š%1 UTC" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "下次æžå¤§äº®åº¦ï¼š%1 UTC" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "掩食时间:%1%" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "å‡èµ·æ—¶é—´: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "太空船" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "ç›®å‰ç¦æ­¢ä¿®æ­£ã€‚如果您ä¸äº†è§£æ‚¨æ­£åœ¨åšä»€ä¹ˆï¼Œè¯·ä¸è¦ä½¿ç”¨æ­¤åŠŸèƒ½ï¼" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -270,7 +345,7 @@ "在他的文章《å¤ä»£çš„日食è¯æ˜Žäº†çˆ±å› æ–¯å¦çš„相对论》[Einstein's Theory of Relativity Confirmed by " "Ancient Solar Eclipses](%1)。è¦äº†è§£æ›´å¤šä¿¡æ¯ï¼Œè¯·ç‚¹å‡»%2这里%3。" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " @@ -279,7 +354,7 @@ "这个ç»éªŒå…¬å¼ç”± G. M. Clemence 在文章《关于天文常数系统》[On the system of astronomical " "constants](%1)中公布。" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -291,7 +366,7 @@ "在他的《用于计算器的天文学公å¼ã€‹[Astronomical Formulae for Calculators] ä¸­ä½¿ç”¨ã€‚è®¡ç®—æœºç¨‹åº " "SunTracker Pro 也使用了这一公å¼ã€‚" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " @@ -301,7 +376,7 @@ "Ephemeris]和《日食的法规》[Canon of Solar Eclipses]中使用的 IAU (1952) " "å…¬å¼ç¨åŠ ä¿®æ”¹ä¹‹åŽçš„版本。" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -311,7 +386,7 @@ "塔克曼[Tuckerman]的表格(1962年,1964年)以5天和10天的间隔列出了太阳ã€æœˆçƒå’Œè¡Œæ˜Ÿä»Žå…¬å…ƒå‰601年到公元1649å¹´çš„ä½ç½®ã€‚戈德斯å¦[G" "oldstine]的表格(1973年)也å«è“„地采用了相åŒçš„关系。" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -322,7 +397,7 @@ "accelerations of the earth and moon from early astronomical " "observations] (%1)中公布。" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" @@ -331,7 +406,7 @@ "此公å¼ç”± F. R. Stephenson 在文章《望远镜å‰çš„天文学观测》[Pre-Telescopic Astronomical " "Observations](%1)中公布。" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -344,7 +419,7 @@ "the correction delta T E.T.-U.T. in the period 1800-1975](%1)中公布。它与 " "Brouwer 于1952年公布的数æ®ç›¸å»åˆã€‚" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " @@ -353,19 +428,21 @@ "此算法于1986年被 P. Bretagnon å’Œ L. Simon 在《从 -4000 到 +2800 的行星程åºå’Œè¡¨æ ¼ã€‹[Planetary " "Programs and Tables from -4000 to +2800 ]中,以åŠè®¡ç®—æœºç¨‹åº RedShift 中被采用。" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " "article Long-term changes in the rotation of the earth - 700 B.C. to " "A.D. 1980 (%1)." msgstr "" +"这一公å¼ç”± F. R. Stephenson å’Œ L. V. Morrison 在题为《地çƒè‡ªè½¬çš„长周期å˜åŒ– - 700 B.C. 到 A.D. " +"1980》(%1)的论文中å‘表。" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "å¤©æ–‡é¦†ç¨‹åº Guide 7 中使用了此算法。" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " @@ -375,14 +452,14 @@ "Eclipses: 1986-2035 ](1987年)以åŠã€Šäº”å年的日食法规:1986-2035》[Fifty Year Canon " "of Solar Eclipses: 1986-2035 ](1989年) 中给出。" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." -msgstr "" +msgstr "这一公å¼ç”± K.M. Borkowski (%1) 在分æžäº† 2137 BCE 到 1715 CE 之间的31次日食数æ®è¿‡åŽå¾—出。" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -391,14 +468,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -406,28 +483,28 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " @@ -436,14 +513,14 @@ "此多项å¼ç”± J. Meeus å’Œ L. Simons 在文章《公元1620å¹´-2000年ΔT 的多项å¼è¿‘似》[Polynomial " "approximations to Delta T, 1620-2000 AD](%1)中公布。" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -451,7 +528,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -459,7 +536,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -468,7 +545,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -478,45 +555,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "默认使用。" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "错误" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -622,7 +716,7 @@ #: src/core/StelObject.cpp:111 #, qt-format msgid "Galactic longitude/latitude: %1/%2" -msgstr "" +msgstr "银ç»/银纬:%1/%2" #: src/core/StelObject.cpp:121 src/core/StelObject.cpp:124 #: src/core/StelObject.cpp:127 @@ -664,52 +758,53 @@ msgid "Found" msgstr "已找到" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "选择储存截图资料夹" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "å¯åŠ¨æ—¶çš„视野大å°: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "å¯åŠ¨æ—¶çš„地平å标方ä½è§’/高度角: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "作者" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "è”系信æ¯" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "作者" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "授æƒæ¡æ¬¾" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "执行指令: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "执行指令:[空白]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -717,16 +812,16 @@ "新的天体目录ç»å·²ä¸‹è½½å®Œæ¯•ï¼\n" "请é‡æ–°å¯åŠ¨ Stellarium 以使用新的目录。" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "所有å¯ç”¨çš„星体资料å‡å·²å®‰è£…。" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "在 %2 中å–åŽ %1 目录" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -735,7 +830,7 @@ "正在下载 %1……\n" "(您å¯ä»¥å…³é—­æ­¤çª—å£ï¼‰" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -746,7 +841,7 @@ "天体数é‡: %2 百万\n" "星等范围: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -755,11 +850,11 @@ "在下载 %1 æ—¶å‘生了错误:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "正在校验文件..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -769,115 +864,123 @@ "文件被æŸå。" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "ΔT的算法" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "未校正" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "Schoch(1931年)" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "IAU (1952年)" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "星历表(1960年)" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "%1T 的自定义公å¼" @@ -1036,49 +1139,53 @@ msgid "OSX Developer: %1" msgstr "OSXå¼€å‘: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "脚本控制å°çª—å£" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "窗å£" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "空格键" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1 ç±³" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "没有æè¿°" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "æ— æµæ˜Ÿ" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "日常频率" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "标准英仙座æµæ˜Ÿé›¨é¢‘率" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "超é‡ç‹®å­åº§æµæ˜Ÿé›¨" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "至今最高频率 (1966 ç‹®å­åº§æµæ˜Ÿé›¨)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "æ–°ä½ç½®" @@ -1181,19 +1288,19 @@ msgid "starchart" msgstr "星图" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "Simbad 查询错误" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "Simbad 查询" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "斯特拉斯堡大学(法国)" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "哈佛大学(美国)" @@ -1209,30 +1316,36 @@ msgid "Alternative shortcut" msgstr "次è¦å¿«æ·é”®" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "%1T 的自定义公å¼" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "计算 %1T 的典型公å¼å¦‚下所示:" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "您的系统ä¸æ”¯æŒ OpenGL。" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "太阳" @@ -1249,12 +1362,12 @@ msgstr "地çƒ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "月çƒ" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "ç«æ˜Ÿ" @@ -1352,7 +1465,7 @@ msgstr "颖神星(å°è¡Œæ˜Ÿ9å·)" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "土星" @@ -1650,232 +1763,261 @@ msgstr "因纽特(爱斯基摩)" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "韩语" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "拉科塔" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "毛利" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "纳瓦éœ" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "挪å¨" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "波利尼西亚" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "è¨ç±³" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "图皮-瓜拉尼" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "西方" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "å¤å°”ç‘žæ©ï¼ˆGuereins,地å)" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "树木" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "飓风" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "æµ·æ´‹" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "慕尼黑" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "游览" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "月å食" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "月全食" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "å±å¹•ä¿æŠ¤ç¨‹åº" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "2009年日食" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "å¯åŠ¨è„šæœ¬" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "黄é“" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "水星上的三次日出与日è½" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "2017年从ç«å«äºŒè§‚测到的åŒé‡é£Ÿ" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "2031年从ç«å«äºŒè§‚测到的åŒé‡é£Ÿ" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "2068å¹´1月10日从奥林匹斯山观测到的日食" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "2048å¹´ç«å«ä¸€æŽ©åœ°çƒå’Œæœ¨æ˜Ÿ" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "2027å¹´ç«å«äºŒä¸Šçœ‹åˆ°çš„三次凌和两次食" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "太阳系å±ä¿" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "星座通览" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "从ä¸åŒè¡Œæ˜Ÿæ‰€è§çš„太阳" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "其他太阳系天体上看到的地çƒ" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "金星凌日" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "日行迹" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "星空文化之旅" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "水星上看到的地çƒå¤©è±¡" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "金星上看到的地çƒå¤©è±¡" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "ç«æ˜Ÿä¸Šçœ‹åˆ°çš„地çƒå¤©è±¡" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "从ç«æ˜Ÿä¸Šçœ‹åˆ°çš„地çƒçš„大è·å’Œæžäº®" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "木星上看到的地çƒå’Œç«æ˜Ÿçš„大è·" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "æœç´¢å·²å®‰è£…地景" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "é€ä¸€æµè§ˆå·²å®‰è£…的星空文化。" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "月å食演示脚本" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "月全食演示脚本" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "éšæœºå¤©ä½“演示" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "2009年日全食演示(地点为孟加拉国兰格普,Rangpur)" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "在å¯åŠ¨æ—¶è‡ªåŠ¨è¿è¡Œçš„脚本" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "黄é“星座演示脚本。黄é“星座是ä½äºŽé»„é“带上,太阳在一年中会ç»è¿‡çš„一系列星座的统称。" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "由于水星公转轨é“与自转周期的巧åˆï¼Œåœ¨æŸäº›æ—¶å€™å’Œåœ°ç‚¹ï¼Œä¸€æ°´æ˜Ÿæ—¥èƒ½å‡ºçŽ°ä¸‰æ¬¡å¤ªé˜³å‡è½ã€‚" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "就在ç«æ˜ŸæŽ©é£Ÿå¤ªé˜³ä¹‹å‰ï¼Œç«å«ä¸€ä»Žç«æ˜ŸåŽé¢èµ¶ä¸Šå¹¶å…ˆè¡Œé®æŒ¡å¤ªé˜³ã€‚è¿™å‘生在2017å¹´4月26日,ä½äºŽå¤©èŽåº§å’Œäººé©¬åº§ä¹‹é—´ã€‚" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "就在ç«æ˜ŸæŽ©é£Ÿå¤ªé˜³ä¹‹å‰ï¼Œç«å«ä¸€ä»Žç«æ˜ŸåŽé¢èµ¶ä¸Šå¹¶å…ˆè¡Œé®æŒ¡å¤ªé˜³ã€‚è¿™å‘生在2031å¹´7月23日,ä½äºŽé‡‘牛座和åŒå­åº§ä¹‹é—´ã€‚" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "从奥林匹斯山上看2068å¹´1月10日的ç«å«ä¸€æ—¥é£Ÿ" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " @@ -1883,7 +2025,7 @@ msgstr "" "从ç«æ˜Ÿä¸Šçœ‹ï¼Œç«å«ä¸€æ—¶å¸¸é®æŽ©åœ°çƒæˆ–木星(掩星),但在一天之内é®æŽ©åˆ°å®ƒä»¬ä¸¤ä¸ªçš„情况就éžå¸¸ç½•è§äº†ã€‚这里是其中的一次,2048å¹´ 1月23日,按真实时间速度播放。" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1893,1502 +2035,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" -msgstr "太阳系中众多天象组æˆçš„å±å¹•ä¿æŠ¤ç¨‹åºã€‚一共有171个ä¸åŒå¤©è±¡ï¼" +"Screensaver of various happenings in the Solar System. 187 events in all!" +msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "西方星座游览" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "从太阳系的å„大行星(以åŠå†¥çŽ‹æ˜Ÿï¼‰è§‚看太阳" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "21世纪中从其它太阳系天体观看地çƒçš„最佳角度" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "金星凌日,2012å¹´6月6日,澳大利亚悉尼" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "日行迹演示 —— 一年当中æ¯å¤©åŒä¸€æ—¶åˆ»å¤ªé˜³æ‰€åœ¨ä½ç½®æ出的轨迹" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "演示第谷·布拉赫于1572年观测到的超新星爆å‘。需å¯ç”¨è¶…新星æ’件。" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "2000-3000年从ç«æ˜Ÿä¸Šçœ‹åˆ°çš„地çƒçš„大è·å’Œæžäº®" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "2000-3000年从木星上看到的地çƒçš„大è·" + +#: src/translations.h:287 msgid "Andorra" msgstr "安é“å°”" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "阿拉伯è”åˆé…‹é•¿å›½" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "阿富汗" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "安æ瓜和巴布达" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "安圭拉岛" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "阿尔巴尼亚" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "亚美尼亚" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "è·å±žå®‰åœ°åˆ—æ–¯" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "安哥拉" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "å—æžæ´²" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "阿根廷" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "美属è¨æ‘©äºš" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "奥地利" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "澳大利亚" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "阿å¢å·´å²›" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "亚塞拜然" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "波黑" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "巴巴多斯" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "孟加拉" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "比利时" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "布基纳法索国" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "ä¿åŠ åˆ©äºš" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "å·´æž—" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "布隆迪" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "è´å—" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "百慕大" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "汶莱" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "玻利维亚" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "巴西" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "巴哈马群岛" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "ä¸ä¸¹" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "布维岛" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "åšèŒ¨ç“¦çº³" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "白俄罗斯" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "伯利兹" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "加拿大" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "科科斯群岛" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "刚果民主共和国" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "中éžå…±å’Œå›½" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "刚果共和国" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "瑞士" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "科特迪瓦" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "库克群岛" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "智利" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "喀麦隆" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "中国" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "哥伦比亚" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "哥斯达黎加" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "塞尔维亚和黑山共和国" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "å¤å·´" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "佛得角" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "圣诞岛" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "塞浦路斯" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "æ·å…‹å…±å’Œå›½" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "德国" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "å‰å¸ƒæ" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "丹麦" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "多米尼加" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "多米尼加共和国" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "阿尔åŠåˆ©äºš" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "厄瓜多尔" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "爱沙尼亚" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "埃åŠ" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "西撒哈拉" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "厄立特里亚国" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "西ç­ç‰™" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "埃塞俄比亚" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "芬兰" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "æ–济" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ç¦å…‹å…°ç¾¤å²›" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "密克罗尼西亚" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "法罗群岛" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "法国" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "加蓬" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "英国" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "格林纳达" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "ä½æ²»äºšå·ž" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "法属圭亚那" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "加纳" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "直布罗陀" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "格陵兰" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "赞比亚" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "几内亚" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "瓜德é²æ™®å²›" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "赤é“几内亚" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "希腊" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "å—乔治亚洲和桑å¨å¥‡ç¾¤å²›" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "å±åœ°é©¬æ‹‰" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "关岛" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "几内亚比ç»" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "圭亚那" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "香港" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "赫德岛与麦克å”纳群岛" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "洪都拉斯" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "克罗地亚" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "海地" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "匈牙利" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "å°åº¦å°¼è¥¿äºš" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "爱尔兰" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "以色列" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "å°åº¦" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "英属å°åº¦æ´‹åœ°åŒº" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "伊拉克" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "伊朗" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "冰岛" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "æ„大利" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "牙买加" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "约旦" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "日本" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "肯尼亚" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "å‰å°”å‰æ–¯æ–¯å¦" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "柬埔寨" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "基里巴斯" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "科摩洛" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "圣基茨和尼维斯" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "æœé²œäººæ°‘民主共和国" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "韩国" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "科å¨ç‰¹" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "开曼群岛" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "哈è¨å…‹æ–¯å¦" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "è€æŒ" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "黎巴嫩" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "圣å¢è¥¿äºš" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "列支敦士登" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "斯里兰å¡" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "利比里亚" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "莱索托" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "立陶宛" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "å¢æ£®å ¡" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "拉脱维亚" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "阿拉伯利比亚民众国" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "摩洛哥" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "摩纳哥" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "摩尔多瓦" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "马达加斯加" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "马ç»å°”群岛" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "马其顿" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "马里" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "缅甸" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "è’™å¤" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "澳门" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "北马里亚纳群岛" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "马æ尼克" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "毛里塔尼亚" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "蒙特塞拉特岛" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "马耳他" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "毛里求斯" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "马尔代夫" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "马拉维" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "墨西哥" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "马æ¥è¥¿äºš" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "莫桑比克" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "纳米比亚" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "新喀里多尼亚" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "尼日尔" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "诺ç¦å…‹å²›" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "尼日利亚" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "尼加拉瓜" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "è·å…°" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "挪å¨" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "尼泊尔" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "ç‘™é²" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "纽埃岛" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "新西兰" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "阿曼" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "巴拿马" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "秘é²" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "法属玻利尼西亚" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "巴布亚新几内亚" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "è²å¾‹å®¾" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "巴基斯å¦" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "波兰" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "圣皮埃尔和密克隆" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "皮特克æ©å²›" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "波多黎å„" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "å·´å‹’æ–¯å¦é¢†åœŸ" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "è‘¡è„牙" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "帕劳" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "巴拉圭" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "å¡å¡”å°”" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "留尼旺" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "罗马尼亚" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "塞尔维亚" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "ä¿„ç½—æ–¯è”邦" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "å¢æ—ºè¾¾" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "沙特阿拉伯" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "所罗门群岛" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "塞舌尔" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "è‹ä¸¹" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ç‘žå…¸" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "新加å¡" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "圣赫勒拿" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "斯洛文尼亚" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "斯瓦尔巴群岛" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "斯洛ä¼å…‹" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "塞拉利昂" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "圣马力诺" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "塞内加尔" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "索马里亚" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "è‹é‡Œå—" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "圣多美和普林西比" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "è¨å°”瓦多" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "阿拉伯å™åˆ©äºšå…±å’Œå›½" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "æ–¯å¨å£«å…°" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "特克斯群岛和凯科斯群岛" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "ä¹å¾—" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "法属å—部领土" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "多哥" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "泰国" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "å¡”å‰å…‹æ–¯å¦" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "托克劳" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "东å¸æ±¶" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "土库曼斯å¦" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "çªå°¼æ–¯" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "汤加" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "土耳其" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "特里尼达和多巴哥" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "图瓦å¢" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "å°æ¹¾" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "å¦æ¡‘尼亚" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "乌克兰" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "乌干达" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "美国外岛" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "美国" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "乌拉圭" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "乌兹别克斯å¦" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "梵蒂冈" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "圣文森特和格林纳ä¸æ–¯" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "委内瑞拉" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "英属维京群岛" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "美属维京群岛" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "越å—" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "瓦努阿图" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "瓦利斯和富图纳群岛" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "è¨æ‘©äºš" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "也门" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "马约特岛" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "å—斯拉夫" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "å—éž" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "赞比亚" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "津巴布韦" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "日期åŠæ—¶é—´" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "增加 1 æ’星日" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "æ’星月加1" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "增加 1 æ’星周" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "æ’星年加1" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "增加1æ’星世纪" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "增加 1 太阳日" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "增加 1 太阳时" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "增加 1 太阳周" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "增加1朔望月" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "增加1交点月" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "增加1近点月" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "增加1平分至月" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "增加1交点年" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "增加1平回归年" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "增加1平回归世纪" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "å‡æ…¢è„šæœ¬æ‰§è¡Œé€Ÿåº¦" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "å‡ç¼“时间æµé€" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "å‡ç¼“时间æµé€ï¼ˆå°å¹…度)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "加快脚本执行速度" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "加快时间æµé€" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "加快时间æµé€ï¼ˆå°å¹…度)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "æš‚åœè„šæœ¬æ‰§è¡Œ" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "æ¢å¤è„šæœ¬æ‰§è¡Œ" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "跳至当å‰æ—¶åˆ»" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "æ¢å¤æ­£å¸¸è„šæœ¬æ‰§è¡Œé€Ÿåº¦" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "正常时间速度" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "åœæ­¢æ—¶é—´æµé€" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "åœæ­¢æ‰§è¡Œè„šæœ¬" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "å‡å°‘ 1 æ’星日" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "æ’星月å‡1" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "å‡å°‘ 1 æ’星周" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "æ’星年å‡1" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "å‡å°‘1æ’星世纪" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "å‡å°‘ 1 太阳日" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "å‡å°‘1 太阳时" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "å‡å°‘ 1 太阳周" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "å‡å°‘1朔望月" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "å‡å°‘1交点月" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "å‡å°‘1近点月" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "å‡å°‘1平分至月" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "å‡å°‘1交点年" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "å‡å°‘1平回归年" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "å‡å°‘1平回归世纪" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "显示选项" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "水平翻转" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "å…¨å±æ¨¡å¼" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "大气层" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "地平å标网格" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "基点" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "星座图绘" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "星座边界" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "星座标示" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "星座连线" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "星云背景影åƒ" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "深空天体背景图åƒ" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "黄é“å标(J2000)" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "黄é“" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "赤é“" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "赤é“å标网格" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "赤é“å标网格 (J2000)" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "雾" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "银é“å标网格" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "银é“é¢" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "地é¢" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "地平线" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "å­åˆçº¿" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "星云" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "深空天体" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "夜间模å¼" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "行星标签" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "行星轨é“" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "行星轨迹" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "天体" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "æ’星标签" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "垂直翻转" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "æ‚项" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "自动éšè—水平工具æ " -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "自动éšè—垂直工具æ " -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "返回" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "退出" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "å¤åˆ¶é€‰ä¸­å¤©ä½“çš„ä¿¡æ¯åˆ°å‰ªè´´æ¿" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "储存画é¢å¿«ç…§" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "赤é“仪/水平仪切æ¢" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "显示/éšè—工具æ " #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "移动和选择" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "将已选物体置中" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "将选择的行星设为预设ä½ç½®" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "追éšç‰©ä½“" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "放大已选的物体" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "缩å°" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "角度测é‡" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "罗盘标记" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "显示系外行星" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "系外行星设置窗å£" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "å¯è§‚测性" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "观测性é…置窗å£" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "目镜æ’件设置" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "目镜视图" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "显示åå­—ä¸" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "目镜弹出èœå•" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "图åƒä¼ æ„Ÿå™¨ç”»å¹…" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "红圈寻星镜" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "选择下一个望远镜" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "选择下一个目镜" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "选择上一个望远镜" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "选择上一个目镜" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "显示脉冲星" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "脉冲星设置窗å£" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "显示类星体" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "类星体设置窗å£" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "人造å«æ˜Ÿè®¾ç½®çª—å£" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "人造å«æ˜Ÿæ ‡è®°" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "人造å«æ˜Ÿæ ‡ç­¾" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "历å²è¶…新星é…置窗å£" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "将天文望远镜对准æŸä¸€åæ ‡" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "显示渲染器的统计信æ¯" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "脚本" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "从文件è¿è¡Œåœ°æ™¯è„šæœ¬" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "显示和缩放月çƒ" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "设定" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "日期/时间" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "说明" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "所在地点" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "æœç´¢" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "å¿«æ·é”®çª—å£" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "星空åŠæ˜¾ç¤º" @@ -3414,7 +3592,7 @@ msgstr "é‡æ–°æ•´ç†" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "所在ä½ç½®" @@ -3430,10 +3608,10 @@ msgid "Return to default" msgstr "返回默认" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "删除" @@ -3442,7 +3620,7 @@ msgstr "加入列表" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "纬度:" @@ -3453,12 +3631,12 @@ msgstr "您å¯ä»¥è¾“å…¥åè¿›ä½åº¦æ•°ï¼Œæˆ–是使用 dms æ ¼å¼ï¼Œä¾‹å¦‚: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "ç»åº¦:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "æµ·æ‹”:" @@ -3482,363 +3660,407 @@ msgid "Planet:" msgstr "行星:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "寻找天体" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "查找物体或ä½ç½®" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "ι" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "α" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "β" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "γ" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "δ" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "ε" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "ζ" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "η" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "θ" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "κ" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "λ" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "µ" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "ν" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "ξ" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "ο" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "Ï€" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "Ï" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "σ" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "Ï„" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "Ï…" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "φ" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "χ" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "ψ" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "ω" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "拜耳命å法的希腊字æ¯" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "物件" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "赤ç»/赤纬 (J2000)" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "ä½ç½®" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "有些天体需è¦åœ¨å¼€å¯ç›¸åº”çš„æ’件åŽæ‰èƒ½æ˜¾ç¤º" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "英文å" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "在列表中æœç´¢..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "列表" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "SIMBAD 在线天文数æ®åº“" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "使用 SIMBAD 深度æœç´¢" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "æœåŠ¡å™¨ï¼š" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "选项" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "英文å" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "在列表中æœç´¢..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "列表" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "显示" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "天空" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "标示" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "地景" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "星空术语" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "å称åŠæ ‡è®°" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "行星" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "深空天体(星团ã€æ˜Ÿç³»å’Œæ˜Ÿäº‘)的标签和标记" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "深空天体" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "行星åŠå«æ˜Ÿ" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "显示行星" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "显示行星标记" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "显示行星轨é“" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "模拟光速" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "放大月çƒ" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "显示大气层" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "光污染:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "压力,温度,消光系数" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "折射/å…‰å¸æ”¶è®¾ç½®..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "ç»å¯¹å¤§å°:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "相对大å°:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "银河亮度:" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "é—ªçƒ:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "é™ä½Žæ˜Žäº®å¤©ä½“附近其馀天体的亮度" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "人眼动æ€è§†è§‰è°ƒé€‚" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "æµæ˜Ÿ" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "天顶å°æ—¶çŽ‡" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" -msgstr "æ¯å°æ—¶å¤©é¡¶æµé‡ï¼š" +msgstr "ZHR(æ¯å°æ—¶å¤©é¡¶æµæ˜Ÿæ•°):" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "é™åˆ¶æ˜Ÿç­‰ï¼ˆé€‚用于裸眼ã€åŒç­’望远镜观测者)" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "é™åˆ¶æ˜Ÿç­‰" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" -msgstr "æ’星星等" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" +msgstr "æ’星的星等é™åˆ¶" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" -msgstr "星云星等" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "深空天体(星团ã€æ˜Ÿç³»å’Œæ˜Ÿäº‘)的星等é™åˆ¶" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "星座" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "显示星座连线" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "显示星座å称" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "显示星座界线" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "显示星座图绘" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "图绘亮度:" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "天çƒ" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "显示天çƒèµ¤é“" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "显示å­åˆçº¿" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "显示地平线" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "显示黄é“线" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "显示银é“å¹³é¢" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "投影方å¼" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "添加或移除地景..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "显示地é¢" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "显示雾气" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "使用与此地景关è”çš„ä½ç½®ä¸Žè¡Œæ˜Ÿ" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "将此背景设定为预设值" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "将此星空述语设为预设值" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "å¯è§" @@ -3888,7 +4110,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Stellarium 默认的地ç†ä½ç½®" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "已选择天体资料" @@ -3904,11 +4126,8 @@ msgid "Display no information" msgstr "ä¸è¦æ˜¾ç¤ºä¿¡æ¯" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "æ— " @@ -4050,7 +4269,7 @@ msgstr "秒" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "å¯åŠ¨æ—¶çš„日期åŠæ—¶é—´" @@ -4062,182 +4281,192 @@ msgid "Other:" msgstr "其他:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "使用当å‰æœ¬åœ°æ—¥æœŸå’Œæ—¶é—´" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "使用现在的设定" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "以系统设定的时间å¯åŠ¨" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "系统日期åŠæ—¶é—´" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "下次å¯åŠ¨ Stellarium 时设定此时间为模拟时间" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "系统日期:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "时间校正" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "编辑公å¼" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "天文馆选项" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "çƒé¢é•œæ‰­æ›² (使用 Stellarium åšä¸ºä½Žæˆæœ¬æ˜Ÿè±¡æŠ•å½±ç³»ç»Ÿçš„场åˆ)" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "çƒé¢é•œæ‰­æ›²" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "é®åŽ»åœ¨ä¸­é—´åœ†å½¢èŒƒå›´ä»¥å¤–的星空" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "圆形视角" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "选中星系åŽéšè—其他其他星系" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "选择å•ä¸€æ˜Ÿåº§" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "星空å称文字ä¿æŒæ°´å¹³" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "标签正立" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "显示/éšè—星云的背景。" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "显示星云背景开关按钮" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "转æ¢åž‚ç›´åŠæ°´å¹³ç¿»è½¬æŒ‰é’®" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "显示翻转按键" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "å¯åŠ¨åŽï¼Œã€Œè‡ªåŠ¨ç¼©å°ã€é”®äº¦ä¼šå°†è¿˜åŽŸè§‚测方å‘。" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "自动缩å°æ—¶å›žåˆ°åŽŸæœ¬çš„观看方å‘" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "显示行星和å«æ˜Ÿä¸Šçš„太阳光阴影(本功能需è¦OpenGL version 2或更高)" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "渲染日光阴影" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "å±å¹•æˆªå›¾" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "截图储存资料夹" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "对调颜色" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "天体目录更新" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "点击这里开始下载" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "下载此文件å¯è§‚看更多天体" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "æ¢å¤ä¸‹è½½" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "é‡è¯•" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "åœæ­¢ä¸‹è½½(ä½ å¯ä»¥éšæ—¶æ¢å¤)" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "å–消" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "执行指令时关闭窗å£" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "执行选å–的指令" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "åœæ­¢æ‰§è¡Œä¸­çš„指令" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "å¯åŠ¨æ—¶åŠ è½½" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "é…ç½®" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "主设定画é¢" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "ä¿¡æ¯" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "导航" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "工具" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "æ’件" @@ -4407,176 +4636,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "在地平线上显示罗盘上的刻度标记" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "目镜效果" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "将天空展现得åƒé€šè¿‡æœ›è¿œé•œçš„目镜观测时的样å­ã€‚(模拟仅é™æ”¾å¤§å€çŽ‡ä¸Žè§†åœºï¼‰å®ƒåŒæ—¶å¯ä»¥æ˜¾ç¤ºå›¾åƒä¼ æ„Ÿå™¨çš„è¾¹æ¡†ä»¥åŠ Telrad sight。" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "在您å¯ç”¨ç›®é•œè§†å›¾å‰ï¼Œè¯·é€‰æ‹©ä¸€ä¸ªå¤©ä½“。" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "å‰ä¸€ä¸ªç›®é•œ(&P)" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "åŽä¸€ä¸ªç›®é•œ(&N)" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "选择目镜(&O)" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "显示/éšè—准星(&C)" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "设置目镜(&O)" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "显示/éšè— CCD(&C)" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "显示/éšè— Telrad(&T)" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "å‰ä¸€ä¸ª CCD(&P)" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "åŽä¸€ä¸ª CCD(&P)" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "选择 CCD(&S)" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "旋转 CCD(&R)" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "旋转å¤ä½(&R)" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "目镜 #%1" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "目镜 #%1:%2" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "目镜焦è·ï¼š%1 毫米" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "目镜视场:%1" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "镜头:#%1" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "镜头 #%1:%2" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "镜头:无" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "望远镜 #%1" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "望远镜 #%1:%2" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "放大å€çŽ‡ï¼š%1" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "视场:%1" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "尺寸:%1" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "传感器 #%1" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "传感器 #%1:%2" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "镜头(&L)" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "å‰ä¸€é•œå¤´(&P)" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "åŽä¸€é•œå¤´(&N)" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "望远镜(&T)" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "å‰ä¸€ä¸ªæœ›è¿œé•œ(&P)" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "åŽä¸€ä¸ªæœ›è¿œé•œ(&N)" @@ -4648,64 +4877,69 @@ msgid "Apparent field of view of the ocular" msgstr "目镜视场" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "镜头é‡æ•°ï¼š%1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "镜头:无" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "镜头é‡æ•°ï¼šæœªçŸ¥" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" -msgstr "多é‡é•œå¤´" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" +msgstr "目镜焦è·" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "旋转:%1" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "åŒç›®é•œçš„放大å€çŽ‡" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "åŒç›®é•œçš„实际视场" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "此目镜ã€é•œå¤´å’Œæœ›è¿œé•œç»„åˆçš„放大å€çŽ‡" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "此目镜ã€é•œå¤´å’Œæœ›è¿œé•œç»„åˆçš„实际视场" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "目镜æ’件" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "版本" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "巴洛镜特性" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "摘è¦" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4713,7 +4947,7 @@ "will populate some samples to get your started." msgstr "æ­¤æ’件用于模拟通过目镜å¯ä»¥çœ‹åˆ°çš„景象。在此é…置框å¯å¢žåˆ å’Œä¿®æ”¹ç›®é•œã€æœ›è¿œé•œæˆ–CCD传感器。首次è¿è¡Œæ—¶ä¼šè‡ªåŠ¨å¡«å……一些样例以供å‚考。" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4726,14 +4960,14 @@ "您å¯ä»¥é€‰æ‹©ç¼©æ”¾æ‚¨åœ¨å±å¹•ä¸Šçœ‹åˆ°çš„图åƒã€‚这是为了å‘您展示一个更好的æŸå¥—目镜/主镜的结åˆå’Œå…¶ä»–组åˆçš„比较。åŒä¸€ä¸ªç›®é•œåœ¨ä¸åŒç„¦è·çš„主镜上会产生ä¸åŒçš„æˆåƒåœˆï¼Œä½¿å¾—我" "们看到的图åƒä¸åŒã€‚然而,图åƒç¼©æ”¾åŽï¼Œå±å¹•çš„大部分é¢ç§¯ä¼šè¢«æµªè´¹ã€‚因此我建议您除éžéœ€è¦ï¼Œä¸è¦ä½¿ç”¨è¿™ä¸ªåŠŸèƒ½ã€‚" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "您å¯ä»¥å¯ç”¨è§†é‡Žä¸­çš„åå­—ä¸ã€‚我本希望它能指å‘北方,但我没办法这样åšã€‚所以目å‰åå­—ä¸æŒ‡å‘å±å¹•é¡¶ç«¯ã€‚" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4744,305 +4978,374 @@ "您å¯ä»¥å¼€å¯çº¢åœˆå¯»æ˜Ÿé•œï¼Œä½†è¿™åªèƒ½åœ¨æ‚¨æ²¡æœ‰å¼€å¯ç›®é•œè§†å›¾æ—¶ä½¿ç”¨ã€‚这个功能会显示三个åŒå¿ƒåœ†ï¼Œåˆ†åˆ«æ˜¯0.5%1,2.0%1å’Œ4.0%1。这å¯ä»¥å¸®åŠ©æ‚¨çœ‹åˆ°æ‚¨åœ¨çœŸå®žçš„红" "圈(或者类似的)寻星镜能看到的。" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "如果å‘现了任何问题,请åŠæ—¶å‘ŠçŸ¥æˆ‘们。请尽情使用ï¼" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "å¿«æ·é”®" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "您å¯ä»¥åœ¨å¸¸è§„选项å¡ä¸­ç¼–辑æ’件的快æ·é”®è®¾ç½®" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "[未指定]" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "打开/关闭目镜覆盖。" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "显示弹出å¼å¯¼èˆªèœå•" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "仅当选中天体时æ‰å¯ç”¨ã€‚" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "缩放图åƒåœˆ" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "å¿«æ·é”®" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "切æ¢ç›®é•œè§†å›¾ï¼š" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "打开弹出å¼å¯¼èˆªèœå•ï¼š" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "ç•Œé¢" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "å±å¹•ä¸Šçš„控制æ " -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "使用度和分æ¥è¡¨ç¤ºCCD的视场" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "通用" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "目镜" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "添加" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "å称:" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "视场角度:" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "焦è·ï¼š" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "视场光阑:" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "åŒç›®é•œ" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "镜头" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" -msgstr "镜头é‡æ•°ï¼š" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" +msgstr "焦è·ä¹˜æ•°ï¼š" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "å€çŽ‡å€¼å¤§äºŽ1会延长焦è·ï¼ˆå·´æ´›é€é•œï¼‰ã€‚å€çŽ‡å€¼å°äºŽ1会缩短焦è·ï¼ˆå¤æ™®åˆ©é€é•œï¼‰ã€‚" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "传感器" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "横å‘分辨率(åƒç´ ï¼‰ï¼š" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "纵å‘分辨率(åƒç´ ï¼‰ï¼š" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "感光芯片宽度(毫米):" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "感光芯片高度(毫米):" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "åƒç´ å®½åº¦ï¼ˆå¾®ç±³ï¼‰ï¼š" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "åƒç´ é«˜åº¦ï¼ˆå¾®ç±³ï¼‰ï¼š" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "望远镜" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "直径:" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "水平翻转" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "竖直翻转" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "关于" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "人造å«æ˜Ÿ" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "使用基于北美防空è”åˆå¸ä»¤éƒ¨çš„两行轨é“æ•°æ®(NORAD TLE)æ¥é¢„测绕地人造å«æ˜Ÿçš„ä½ç½®" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "旧版本的 satellites.json 文件已ä¸å†é€‚用,将使用默认文件。" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "目视å¯è§" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "科研" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "通讯" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "导航" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "业余无线电" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "气象" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "åŒæ­¥å«æ˜Ÿ" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "ä¸å†å·¥ä½œ" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "GPS" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "铱星" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "哈勃太空望远镜" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "国际空间站" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "类别 #" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "国际标准化命å" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "人造å«æ˜Ÿ" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "倾斜范围(åƒç±³ï¼‰ï¼š%1" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "è·ç¦»å˜çŽ‡ï¼š%1 åƒç±³/秒" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "高度: %1 åƒç±³" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "投影点纬度:%1%2,ç»åº¦ï¼š%3%4" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "地心惯性å标:%1 åƒç±³" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "地心惯性速度:%1 åƒç±³/秒" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "æ­¤å«æ˜Ÿä¸Žè§‚测者å‡ä½äºŽé˜³å…‰ä¸‹ã€‚" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "æ­¤å«æ˜Ÿæ˜¯å¯è§çš„。" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "æ­¤å«æ˜Ÿè¢«é®æŒ¡ã€‚" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "æ­¤å«æ˜Ÿä¸å¯è§ã€‚" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "%1 兆赫兹(%2%3 åƒèµ«å…¹)" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "Stellarium å«æ˜Ÿæ’件" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "æ­¤å«æ˜Ÿæ’件å¯ä»¥é¢„测地çƒè½¨é“上的人造å«æ˜Ÿçš„ä½ç½®ã€‚" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "用户æ示" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "仅当观测者ä½äºŽåœ°çƒæ—¶ï¼Œå«æ˜Ÿä¸Žè½¨é“æ‰ä¼šæ˜¾ç¤ºã€‚" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "预测的ä½ç½®ä»…在较短时间内较为准确(è·ç›®å‰å‡ å¤©ã€å‡ å‘¨æˆ–是一个月的时间内)。当您超出了这个时间段,预测的结果å¯èƒ½ä¼šæœ‰è¾ƒå¤§çš„误差。" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "轨é“资料很容易过时(在数周甚至几天åŽï¼‰ã€‚如果您需è¦èŽ·å¾—有用的资料,请åŠæ—¶æ›´æ–°ä¸¤è¡Œå¼è½¨é“æ•°æ®(TLE)。" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5050,25 +5353,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "在“%2â€é€‰é¡¹å¡ä¸­ç‚¹å‡»â€œ%1â€æŒ‰é’®ä¼šé‡ç½® %3 文件。旧的文件会被备份为 %4,您å¯ä»¥åœ¨ç”¨æˆ·æ•°æ®ç›®å½•ä¸­æ‰¾åˆ°å®ƒã€‚" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "æ­¤å«æ˜Ÿæ’件目å‰ä»åœ¨å¼€å‘阶段,一些功能å¯èƒ½ä¸ç”šå®Œå…¨ï¼Œç”šè‡³æ˜¯å­˜åœ¨ Bug。" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "两行å¼è½¨é“æ•°æ®(TLE)æ›´æ–°" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "æ­¤å«æ˜Ÿæ’件能够自动从网络下载两行å¼è½¨é“æ•°æ®(TLE),默认的更新频率为72å°æ—¶ï¼Œè¶…过此时间的旧数æ®å°†è¢«æ›´æ–°ã€‚ " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5076,17 +5379,17 @@ "(see %1 for an example)." msgstr "如果您ç¦ç”¨ç½‘络更新,则å¯ä»¥ä»Žæ‚¨çš„本地文件中获å–更新。此文件必须使用与 Celestrak 更新相åŒçš„æ ¼å¼ï¼ˆç¤ºä¾‹å‚è§ %1)。" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "注æ„:如果在更新数æ®ä¸­çš„å«æ˜Ÿå称中出现了方括å·ï¼Œåˆ™å…¶å†…容会被移除。" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "添加新å«æ˜Ÿ" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5096,11 +5399,11 @@ "1. 请确认您想è¦æ·»åŠ çš„å«æ˜ŸåŒ…å«åœ¨å«æ˜Ÿè®¾ç½®çª—å£çš„“资æºâ€æ å¡«å†™çš„ URL 所指å‘文件其一之中。 2. å‰å¾€â€œå«æ˜Ÿâ€æ ï¼Œç‚¹å‡» \"+\" " "按钮,选择您想è¦æ·»åŠ åˆ°å«æ˜Ÿç„¶åŽç‚¹å‡»â€œæ·»åŠ â€æŒ‰é’®ã€‚" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "技术说明" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " @@ -5108,7 +5411,7 @@ "æ­¤æ’件使用简化常规/深空扰动的近似解æžè§£æ¨¡åž‹(SGP4/SDP4)æ¥è®¡ç®—å«æ˜Ÿçš„ä½ç½®ï¼Œå¹¶ä½¿ç”¨åŒ—美防空è”åˆå¸ä»¤éƒ¨çš„两行å¼è½¨é“æ•°æ®(NORAD " "TLE)作为输入。 " -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " @@ -5117,24 +5420,26 @@ "#6)编写的。 " #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "您å¯ä»¥å‚阅%1此文档%2æ¥èŽ·å–详情。" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "链接" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5142,338 +5447,381 @@ msgstr "您å¯åœ¨ Launchpad 网站获得我们的技术支æŒã€‚æ交报告时请在主题æ æ³¨æ˜Ž \"%1\"." #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "如果您ä»å­˜åœ¨é—®é¢˜ï¼Œå¯ä»¥%1从此处得到回答%2。" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "如果有 Bug 需è¦æŠ¥å‘Šï¼Œè¯·ç‚¹å‡»%1这里%2。" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "如果您需è¦å…¶ä»–功能,则å¯ä»¥åˆ›å»ºä¸€ä¸ªé”™è¯¯æŠ¥å‘Šï¼Œå¹¶å°†ä¸¥é‡æ€§è®¾ç½®ä¸ºâ€œæ„¿æœ›[wishlist]â€ã€‚" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "Internet æ›´æ–°å·²ç¦ç”¨" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "正在更新……" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "下次更新:一分钟内" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "下次更新:%1 分钟åŽ" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "下次更新:%1 å°æ—¶åŽ" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "ç«‹å³æ›´æ–°" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "从文件更新" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "更新错误" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "更新了%1/%2个å«æ˜Ÿï¼›å¢žåŠ äº†%3;删除了%4" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" -msgstr "更新了 %1/%2 颗å«æ˜Ÿï¼Œ%3 未更新" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "更新了%1/%2个å«æ˜Ÿï¼›å¢žåŠ äº†%3ï¼›%4丢失" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "[æ–°æº]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "ç«‹å³æ›´æ–°" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "从文件更新" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "[轨é“计算错误]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "[å‡ä¸ºæœ€æ–°æ·»åŠ ]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "[未显示的å«æ˜Ÿ]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "[显示的å«æ˜Ÿ]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "[所有å«æ˜Ÿ]" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "创建新组..." + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "选择两行å¼è½¨é“æ•°æ®(TLE)更新文件" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "正在下载数æ®..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "Stellarium 正从更新æºä¸‹è½½å«æ˜Ÿæ•°æ®ã€‚请ç¨å€™..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "选择 TLE 文件..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "正在处ç†æ•°æ®..." -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "无法下载数æ®ã€‚请ç¨å€™å†è¯•ã€‚" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "目录编å·ï¼š%1" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "å«æ˜Ÿè®¾ç½®" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" -msgstr "从网络更新两行å¼è½¨é“æ•°æ®(TLE)列表" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" +msgstr "æ›´æ–°" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" -msgstr "从网络更新" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" +msgstr "从互è”网æ¥æºæ›´æ–°å«æ˜Ÿæ•°æ®" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "最åŽæ›´æ–°ï¼š" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "更新时,从选择的æ¥æºä¸­æ·»åŠ æ‰€æœ‰æ–°å¢žå«æ˜Ÿ" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "更新时,删除ä¸å†åˆ—å…¥æ¥æºä¸­çš„å«æ˜Ÿ" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "更新频率(å°æ—¶ï¼‰ï¼š" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "标签" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "标签字å·ï¼ˆåƒç´ ï¼‰ï¼š" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "轨é“标记" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "绘制轨é“时使用的线段数é‡" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "段è½ç¼–å·ï¼š" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "线æ¡ä¸­çš„一个线段所表示的æŒç»­æ—¶é•¿ï¼ˆç§’)" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "段è½é•¿åº¦:" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "绘制轨é“末端的淡出痕迹使用的线段数é‡" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "淡出长度:" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "æ¢å¤é»˜è®¤è®¾ç½®" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "存为默认设置" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "设置" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." +msgstr "åŒå‡»ä¸€ä¸ªå«æ˜Ÿä»¥å¼€å§‹è·Ÿè¸ª" + +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" +msgstr "添加更多å«æ˜Ÿ" + +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" +msgstr "移除选中的å«æ˜Ÿ" + +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" +msgstr "ä¿å­˜æ”¹åŠ¨" + +#: plugins/Satellites/src/ui_satellitesDialog.h:725 +msgid "Catalog number:" +msgstr "ç¼–ç›®å·ï¼š" + +#: plugins/Satellites/src/ui_satellitesDialog.h:727 msgid "Display the selected satellite(s)" msgstr "显示选中的å«æ˜Ÿ" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 +#: plugins/Satellites/src/ui_satellitesDialog.h:729 msgid "Displayed" msgstr "已显示" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:731 msgid "Display orbit line(s) for the selected satellite(s)" msgstr "显示选中å«æ˜Ÿçš„轨é“标记" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 +#: plugins/Satellites/src/ui_satellitesDialog.h:733 msgid "Orbit" msgstr "轨é“" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 -msgid "Catalog number:" -msgstr "ç¼–ç›®å·ï¼š" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" +msgstr "ä¸è¦æ›´æ–°ï¼ˆæˆ–更新时删除)选择的å«æ˜Ÿ" + +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" +msgstr "ä¸è¦æ›´æ–°" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 +#: plugins/Satellites/src/ui_satellitesDialog.h:738 msgid "Description:" msgstr "æ述:" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 +#: plugins/Satellites/src/ui_satellitesDialog.h:739 msgid "Groups:" msgstr "组:" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" -msgstr "以逗å·åˆ†éš”的组列表" - -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" -msgstr "TLE æ•°æ®ï¼š" - -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" -msgstr "北美防空è”åˆå¸ä»¤éƒ¨çš„两行轨é“æ•°æ®(NORAD TLE)" - -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" -msgstr "移除选中的å«æ˜Ÿ" - -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" -msgstr "添加更多å«æ˜Ÿ" +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "TLE(两行å¼è½¨é“根数)设置:" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" -msgstr "ä¿å­˜æ”¹åŠ¨" +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." +msgstr "已选择的æ¥æºåˆ—表中尚未被添加的å«æ˜Ÿå°†ä¼šåœ¨ä¸‹æ¬¡æ›´æ–°æ—¶è‡ªåŠ¨è¢«æ·»åŠ " -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "输入或编辑选中æ¥æºçš„URL,按Enterä¿å­˜ã€‚" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "添加新æ¥æº" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "删除选定新æ¥æº" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "æ¥æº" @@ -5509,22 +5857,22 @@ msgid "Discard" msgstr "丢弃列表" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "望远镜控制" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "æ­¤æ’件使 Stellarium 能够å‘å·²ç»è½½å…¥è®¡ç®—机的天文望远镜å‘出转å‘指令。" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "将天文望远镜 %1 移至选中对象" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "将天文望远镜 %1 对准当å‰å±å¹•çš„中心" @@ -5910,62 +6258,62 @@ msgstr "这是一个为一些 Stellarium é…置文件中的æ‚项设置æ供便æ·è®¿é—®çš„ç•Œé¢ã€‚您å¯ä»¥è®¾ç½®æ—¶åŒºæˆ–是改å˜å±å¹•ä¸‹æ–¹æ˜¾ç¤ºæ—¶é—´å’Œæ—¥æœŸçš„æ–¹å¼ã€‚" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "一月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "二月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "三月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "四月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "五月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "六月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "七月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "八月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "ä¹æœˆ" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "å月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "å一月" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "å二月" @@ -6121,7 +6469,7 @@ msgstr "这些设置能够改å˜åœ¨åº•éƒ¨è¾¹æ æ˜¾ç¤ºæ—¶é—´ä¸Žæ—¥æœŸçš„æ ¼å¼ã€‚" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "时间显示格å¼" @@ -6139,7 +6487,7 @@ msgstr "24å°æ—¶åˆ¶" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "日期显示格å¼" @@ -6155,154 +6503,154 @@ msgid "mm-dd-yyyy" msgstr "月-æ—¥-å¹´" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "文本用户界é¢ï¼ˆTUI)" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "适用于天相系统,为 0.9.x 系列的文本模å¼çš„用户界é¢ï¼ˆTUI)æ供实现的æ’件。" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "太阳系" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "ç›®å‰æ—¥æœŸ/时间" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "设置时区" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "日键" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "å¯åŠ¨æ—¶çš„日期与时间" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "系统" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "预设值" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "月日年" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "日月年" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "年月日" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "12å°æ—¶åˆ¶" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "24å°æ—¶åˆ¶" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "语言" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "显示æ’星" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "颜色" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "星云å称" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "星云标记" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "银é“线" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "效果" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "手动缩放" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "放大å€æ•°" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "银河亮度:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "星云标记数é‡ï¼š" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "缩放æŒç»­æ—¶é—´ï¼š" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "鼠标指针自动éšè—延时:" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "设置地景时转到与之关è”çš„ä½ç½®" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "è¿è¡Œæœ¬åœ°è„šæœ¬" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "åœæ­¢è¿è¡Œè„šæœ¬" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "CD/DVD 脚本" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "系统管ç†" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "载入默认设置" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "ä¿å­˜å½“å‰è®¾ç½®" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "退出程åº" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "[æ—  TUI 节点]" @@ -6337,22 +6685,22 @@ "Center)的网站上下载天体列表并在其在线数æ®åº“中检索信æ¯ã€‚此功能暂处于开å‘阶段。" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "正在从 MPC 请求 %1:" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "如果请求æˆåŠŸï¼Œåªèƒ½è¿”回一个结果。" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "彗星与å°è¡Œæ˜Ÿå‡èƒ½é€šè¿‡ç¼–å·ã€å称(英文)或天文学临时编å·æ¥è¯†åˆ«ã€‚" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6527,36 +6875,43 @@ msgid "Solar System" msgstr "太阳系" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "历å²ä¸Šçš„超新星" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." -msgstr "æ­¤æ’件用于展示一些历å²ä¸Šè§†æ˜Ÿç­‰è¶…过10等的超新星。" +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." +msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "超新星" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "超新星类型:%1" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "历å²è¶…新星æ’件" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " -msgstr "一个展示历å²ä¸Šäº®åº¦è¶…过视星等10等的超新星的æ’件: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." +msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "å…‰å˜æ›²çº¿" @@ -6575,7 +6930,7 @@ msgstr "致谢" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "我们特别感谢以下所有人的贡献和å®è´µæ„è§ï¼š" @@ -6589,14 +6944,14 @@ msgstr "ç†è®ºå’Œå®žéªŒç‰©ç†ç ”究所" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "(俄罗斯)" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6604,8 +6959,9 @@ msgstr "如果您想了解此æ’件的完整信æ¯ã€å…¶åŽ†å²ä»¥åŠç¼–录格å¼ï¼Œè¯·%1点击此处%2。" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "下次更新:%1天" @@ -6623,29 +6979,106 @@ msgstr "历å²è¶…新星æ’件é…ç½®" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "通过网络更新星表" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "从网络更新" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "更新频率(天):" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "[下次更新的信æ¯]" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "类星体" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6663,11 +7096,11 @@ msgid "Z (redshift): %1" msgstr "Z(红移):%1" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "类星体æ’件" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " @@ -6676,40 +7109,50 @@ "类星体æ’件æ供一些视星等超过16等的类星体的å¯è§†åŒ–模拟。类星体星表数æ®æ ¹æ® \"Quasars and Active Galactic Nuclei\" " "(13th Ed.) 编制。" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "Veron+ 2010" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "类星体已更新" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "类星体设置" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "类星体æ’件é…ç½®" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" -msgstr "类星体显示模å¼" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" +msgstr "类星体设置" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "显示所有类星体但ä¸å¸¦æ ‡ç­¾" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "显示类星体分布" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "å¯åŠ¨æ—¶æ˜¾ç¤º" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "在工具æ ä¸­æ˜¾ç¤ºç±»æ˜Ÿä½“按钮" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "脉冲星" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6829,11 +7272,11 @@ "radio emission" msgstr "有热X射线脉冲å‘射的孤立中å­æ˜Ÿï¼Œä½†æ˜¯æ²¡æœ‰å¯æ£€æµ‹çš„无线电å‘å°„" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "脉冲星æ’件" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6843,137 +7286,141 @@ "脉冲星的数æ®æ¥è‡ªæ¾³å¤§åˆ©äºšå›½ç«‹å¤©æ–‡å°[ATNF]的脉冲星编录(Manchester, R. N., Hobbs, G. B., Teoh, A. & " "Hobbs, M., Astron. J., 129, 1993-2006 (2005) (%1astro-ph/0412641%2))。" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "说明" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "脉冲星的标识符有“PSRâ€å‰ç¼€" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "鸣谢" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "弗拉基米尔·è¨èŽ«æœç½—夫(Vladimir Samodourov)" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "Pushchino 射电天文å°" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "马切伊·è¨æ‹‰èŽ±(Maciej Serylak)" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "楠赛射电天文å°" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "(法国)" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "脉冲星已更新" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "脉冲星设置" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "脉冲星æ’件设置" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" -msgstr "脉冲星显示模å¼" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" +msgstr "脉冲星设置" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "显示所有脉冲星但ä¸å¸¦æ ‡ç­¾" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "显示脉冲星的分布" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "在工具æ ä¸­æ˜¾ç¤ºè„‰å†²æ˜ŸæŒ‰é’®" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "太阳系外行星" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "æ­¤æ’件标出了包å«ç³»å¤–行星的æ’星的ä½ç½®ã€‚系外行星的数æ®æ¥è‡ª exoplanet.eu 的太阳系外行星百科。" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "金属丰度" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "è´¨é‡" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "åŠå¾„" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "有效温度:%1 K" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "系外行星" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "周期" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "天" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "木星" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "é•¿åŠè½´" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "天文å•ä½" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "离心率" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "倾角" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "角è·ç¦»" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "å‘现年份" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "系外行星æ’件" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6981,49 +7428,138 @@ msgstr "æ­¤æ’件å¯ä»¥æ˜¾ç¤ºå«æœ‰ç³»å¤–行星的æ’星的ä½ç½®ã€‚系外行星数æ®æ¥è‡ªâ€œ%1系外行星百科%2â€ã€‚" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "如果您想了解此æ’件的全部信æ¯ã€åŽ†å²ä»¥åŠç¼–录格å¼ï¼Œè¯·%1点击此处%2。" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "系外行星已更新" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "系外行星设置" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "系外行星æ’件设置" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "从互è”网更新系外新星数æ®" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" -msgstr "太阳系外行星的显示模å¼" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" +msgstr "系外行星设置" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "ä¸å¸¦æ ‡ç­¾åœ°æ˜¾ç¤ºç³»å¤–行星系" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "显示太阳系外行星的分布" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "在该太阳系外行星被å‘现之åŽæ˜¾ç¤º" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "å¯ç”¨å¤ªé˜³ç³»å¤–行星å‘现的时间线" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "在工具æ ä¸­æ˜¾ç¤ºç³»å¤–行星按钮" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "观测分æž" @@ -7041,185 +7577,179 @@ "本æ’件æ供观测æ¡ä»¶ï¼ˆå‡èµ·ã€è½ä¸‹å’Œä¸­å¤©ï¼‰çš„分æžï¼Œä»¥åŠç›®æ ‡åœ¨ä¸€å¹´ä¸­çš„最佳观测时间。æ’件å‡å®šåœ¨å¤œé—´å¤„于地平线上方的对象为å¯è§‚测的。åŒæ—¶ï¼Œæ’件还æ供了目标对太阳的" "最大角è·ç¦»ï¼ˆå¤§è·ï¼‰ã€æ—¥æ²¡å‡/日出è½(冲日)å’Œå•æ—¥å‡/å•æ—¥è½(åˆæ—¥)时间。

    关于æ’件显示内容的具体说明å¯ä»¥åœ¨é…置窗å£çš„“关于â€ä¸­æ‰¾åˆ°ã€‚" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "一月" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "二月" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "三月" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "四月" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "五月" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "六月" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "七月" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "八月" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "ä¹æœˆ" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "å月" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "å一月" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "å二月" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "æ—¶" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "分" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "秒" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "è½äºŽ %1 (%2 之åŽ)" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "å‡äºŽ %1 (%2 之å‰)" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "è½äºŽ %1 (%2 之å‰)" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "å‡äºŽ %1 (%2 之åŽ)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "拱æžå¤©ä½“(总在地平线上)" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "ä¸ä¼šå‡èµ·" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "%1 上中天(%2 之åŽ)高度为 %3 度" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "%1 上中天(%2 之å‰)高度为 %3 度" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "对象ä¸å¯è§" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "无日没å‡/日出è½(冲日)或å•æ—¥å‡/å•æ—¥è½(åˆæ—¥)" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "对太阳最大角è·ç¦»(大è·): " -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "最大太阳张角: " -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr " (在 %1 度)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "日没å‡/日出è½(冲日)" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "无日没å‡/日出è½(冲日)" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "å•æ—¥å‡/å•æ—¥è½(åˆæ—¥)" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "æ— å•æ—¥å‡/å•æ—¥è½(åˆæ—¥)" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "全年å¯è§‚测" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "黑夜ä¸å¯è§" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "在地平线上的夜晚: " -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "本日:" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "本年:" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "上一次满月:%1 %2 在%3:%4。 " -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "下一次满月:%1 %2 在%3:%4。 " @@ -7530,6 +8060,9 @@ #~ msgid "Calendar" #~ msgstr "日历" +#~ msgid "Nebulas" +#~ msgstr "星云" + #~ msgid "10000" #~ msgstr "10000" @@ -7581,6 +8114,9 @@ #~ msgid "Shut Down: " #~ msgstr "关闭程åº: " +#~ msgid "Nebulas background images" +#~ msgstr "星云背景影åƒ" + #~ msgid "Planets labels" #~ msgstr "行星标签" @@ -7716,6 +8252,16 @@ #~ "plugin\" in the subject when posting." #~ msgstr "æ­¤æ’件在 Launchpad 网站上æ供支æŒã€‚在æ交帖å­æ—¶è¯·æ³¨æ„在主题中加上“Satellites pluginâ€ã€‚" +#, qt-format +#~ msgid "Updated %1/%2 satellite(s); %3 missing" +#~ msgstr "更新了 %1/%2 颗å«æ˜Ÿï¼Œ%3 未更新" + +#~ msgid "Comma separated list of groups" +#~ msgstr "以逗å·åˆ†éš”的组列表" + +#~ msgid "TLE data:" +#~ msgstr "TLE æ•°æ®ï¼š" + #~ msgid "" #~ "A plugin that shows some historical supernovae brighter than 10 visual " #~ "magnitude: SN 185A (7 December), SN 386A (24 April), SN 1006A (29 April), SN " @@ -7817,22 +8363,42 @@ #~ msgid "Additional info (Extra 3)" #~ msgstr "附加信æ¯ï¼ˆå¢žè¡¥3)" +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than 10 visual " +#~ "magnitude." +#~ msgstr "æ­¤æ’件用于展示一些历å²ä¸Šè§†æ˜Ÿç­‰è¶…过10等的超新星。" + +#~ msgid "Display mode for quasars" +#~ msgstr "类星体显示模å¼" + #, qt-format #~ msgid "Ecliptic Geocentric (of date): %1/%2" #~ msgstr "地心黄é“å标轴(对日期):%1/%2" +#~ msgid "Display mode for pulsars" +#~ msgstr "脉冲星显示模å¼" + #~ msgid "Plugin Key Bindings" #~ msgstr "æ’件快æ·é”®è®¾ç½®" #~ msgid "Transit of Venus as seen from Sydney Australia 6th June 2012." #~ msgstr "从澳大利亚悉尼观测的å‘生在2012å¹´6月6日的金星凌日。" +#~ msgid "" +#~ "Screensaver of various happenings in the Solar System. 171 events in all!" +#~ msgstr "太阳系中众多天象组æˆçš„å±å¹•ä¿æŠ¤ç¨‹åºã€‚一共有171个ä¸åŒå¤©è±¡ï¼" + #~ msgid "A tour via western constellations." #~ msgstr "对西方星座进行简å•æµè§ˆã€‚" #~ msgid "Look at Sun from big planets of Solar system and Pluto." #~ msgstr "从太阳系å„大行星以åŠå†¥çŽ‹æ˜Ÿæ‰€çœ‹åˆ°çš„太阳。" +#~ msgid "" +#~ "A plugin that shows some historical supernovae brighter than visual " +#~ "magnitude 10: " +#~ msgstr "一个展示历å²ä¸Šäº®åº¦è¶…过视星等10等的超新星的æ’件: " + #~ msgid "0 deg." #~ msgstr "0 度" @@ -7916,3 +8482,9 @@ #~ "in the SH) again, then Mars totally eclipses the sun and Phobos, and then as " #~ "Phobos emerges from the sun it passes through Mars' shadow and dims." #~ msgstr "ç«å«ä¸€è¶…过ç«æ˜Ÿï¼Œé£Ÿå¤ªé˜³åŽç©¿è¿‡å®ƒå¹¶é€†è¡Œè¿”回,部分挡ä½å¤ªé˜³ï¼ˆåªèƒ½åœ¨SH看到),以åŽç«æ˜Ÿå®Œå…¨é£Ÿå¤ªé˜³å’Œç«å«ä¸€ï¼ŒæŽ¥ç€ç«å«ä¸€è¿›å…¥ç«æ˜Ÿçš„阴影里å˜æš—。" + +#~ msgid "NORAD two line element orbit data" +#~ msgstr "北美防空è”åˆå¸ä»¤éƒ¨çš„两行轨é“æ•°æ®(NORAD TLE)" + +#~ msgid "Update TLE lists from Internet sources" +#~ msgstr "从网络更新两行å¼è½¨é“æ•°æ®(TLE)列表" diff -Nru stellarium-0.12.1/po/stellarium/zh_HK.po stellarium-0.12.4/po/stellarium/zh_HK.po --- stellarium-0.12.1/po/stellarium/zh_HK.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/zh_HK.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,76 +7,76 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" -"PO-Revision-Date: 2012-04-17 03:51+0000\n" -"Last-Translator: Allen Zhong \n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" +"PO-Revision-Date: 2013-07-22 04:20+0000\n" +"Last-Translator: yphatt \n" "Language-Team: Chinese (Hong Kong) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:20+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:56+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "å­åˆåœˆ" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "黄é“" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "赤é“" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "地平線" #: src/core/modules/GridLinesMgr.cpp:580 msgid "Galactic Plane" -msgstr "" +msgstr "銀河é¢" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "作者: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "所在ä½ç½®: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 公尺" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "行星: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "種類:%1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "星等: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "大å°: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "星系" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "ç–散星團" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "çƒç‹€æ˜Ÿåœ˜" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "星雲" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "行星狀星雲" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" -msgstr "" +msgstr "暗星雲" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "瀰漫星雲" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "ä¸è©³" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "未收錄類型" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "絕å°æ˜Ÿç­‰: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" -msgstr "" +msgstr "黃é“站心 (æ—¥): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "è·é›¢: %1地日è·é›¢ (%2 公里)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "è·é›¢: %1AU(天文單ä½)" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "視直徑: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" -msgstr "" +msgstr "相å°å¤ªé™½æ—¥: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,10 +204,10 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" -msgstr "" +msgstr "星" #: src/core/modules/StarWrapper.cpp:57 #, qt-format @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "視星等: %1 (消光)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" +msgstr "星等: %1 (B-V: %2)" + +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "光譜類型: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "è·é›¢ï¼š%1 光年" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "視差: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "周期: %1 days" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "日出時間: %1%" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "太空船" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." +msgstr "é è¨­å€¼" + +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,52 +727,53 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "é¸æ“‡å„²å­˜æˆªåœ–資料夾" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "啟動時視野:%1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "啟動時的地平å標方ä½è§’/高度角: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "著作群" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "è¯ç¹«" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "作者" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "授權æ¢æ¬¾" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "執行指令: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "執行指令:[空白]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -688,23 +781,23 @@ "æ–°çš„æ†æ˜Ÿç›®éŒ„經已下載完畢ï¼\n" "è«‹é‡æ–°å•Ÿå‹• Stellarium 以使用新的目錄。" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "所有å¯ç”¨ç›®éŒ„å‡å·²å®‰è£" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "å–得星表 %1/%2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "下載中 %1 ..." -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -715,7 +808,7 @@ "星體數é‡:%2 百è¬\n" "星等範åœ: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -724,11 +817,11 @@ "錯誤ï¼ä¸‹è¼‰ä¸­ %1:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "正在檢查檔案完整性..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -738,115 +831,123 @@ "檔案æ壞。" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1005,49 +1106,53 @@ msgid "OSX Developer: %1" msgstr "OSX開發: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "腳本控制å°çª—å£" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "視窗" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "太空" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "沒有資訊" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "ç„¡æµæ˜Ÿ" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "正常頻率" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "標準英仙座æµæ˜Ÿé›¨é »çŽ‡" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "超é‡ç…å­åº§æµæ˜Ÿé›¨" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "至今最高频率 (1966 ç…å­åº§æµæ˜Ÿé›¨)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "æ–°çš„ä½ç½®" @@ -1150,19 +1255,19 @@ msgid "starchart" msgstr "星圖" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "哈佛大學(美國)" @@ -1178,30 +1283,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "系統ä¸æ”¯æ´OpenGL" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "太陽" @@ -1218,12 +1329,12 @@ msgstr "地çƒ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "月çƒ" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "ç«æ˜Ÿ" @@ -1321,7 +1432,7 @@ msgstr "木衛åå…­(墨ææ–¯)" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "土星" @@ -1619,239 +1730,268 @@ msgstr "因努伊特 (北極)" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "韓語" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "拉科塔语" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "毛利語" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "那瓦éœè¯­" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "挪å¨" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "玻里尼亞人" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "薩米語" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "图皮-瓜拉尼诸语(å—美)" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "西方" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1861,1502 +2001,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "中è¯äººæ°‘共和國" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "香港" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "日期與時間" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "增加1æ†æ˜Ÿæ—¥" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "增加 1 æ’星周" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "增加1太陽日" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "增加1太陽時" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "增加1太陽週" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "緩慢腳本執行效率" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "減慢時間速度" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "減慢時間速度 (ç¨å¾®)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "加快腳本的執行效率" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "加快時間速度" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "加快時間速度 (ç¨å¾®)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "跳至當å‰æ™‚刻" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "正常腳本的執行效率" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "正常時間速度" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "將時間æµé€Ÿè¨­å®šç‚ºé›¶" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "減少1æ†æ˜Ÿæ—¥" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "減少1æ†æ˜Ÿé€±" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "減少1太陽日" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "減少1太陽時" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "減少1太陽週" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "顯示é¸é …" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "水平翻轉" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "全螢幕模å¼" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "大氣" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "地平座標" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "æ–¹å‘標示" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "星座圖繪" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "星座邊界" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "星座標示" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "星座連線" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "星雲背景影åƒ" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "黃é“ç·š" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "赤é“ç·š" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "赤é“座標" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "赤é“座標 (J2000)" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "霧" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "銀河系網格" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "地é¢" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "地平線" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "å­åˆç·š" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "星雲" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "夜間模å¼" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "行星標籤" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "行星軌é“" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "行星路徑" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "星" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "垂直翻轉" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "其它" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "自動隱è—水平工具列" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "自動隱è—垂直工具欄" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "退出" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "儲存畫é¢å¿«ç…§" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "赤é“å„€/水平儀切æ›" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "切æ›é¡¯ç¤ºçš„圖形用戶界é¢" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "移動和é¸æ“‡" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "將已é¸ç‰©é«”置中" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "å°‡é¸æ“‡çš„行星設為é è¨­ä½ç½®" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "追隨物體" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "放大已é¸çš„物體" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "縮å°" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "衛星設定框" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "衛星æ示" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "衛星標示" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "指令" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "設定" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "日期/時間" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "說明" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "所在地點" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "æœå°‹è¦–窗" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "星空åŠé¡¯ç¤º" @@ -3382,7 +3558,7 @@ msgstr "é‡æ–°æ•´ç†" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "所在ä½ç½®" @@ -3398,10 +3574,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "删除" @@ -3410,7 +3586,7 @@ msgstr "加入列表" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "緯度:" @@ -3421,12 +3597,12 @@ msgstr "您å¯ä»¥è¾“å…¥åè¿›ä½åº¦æ•°ï¼Œæˆ–是使用 dms æ ¼å¼ï¼Œä¾‹å¦‚: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "經度:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "æµ·æ‹”:" @@ -3450,363 +3626,407 @@ msgid "Planet:" msgstr "行星:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "尋找天體" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "尋找天體或ä½ç½®" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "使用拜耳命å法的希臘字æ¯" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "物件" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "RA/DEC (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "ä½ç½®" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "选项" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" +msgstr "选项" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "顯示" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "天空" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "標示" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "地形" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "星空術語" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "å称åŠæ ‡è®°" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "行星" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "行星åŠè¡›æ˜Ÿ" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "顯示行星" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "顯示行星標記" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "顯示行星軌é“" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "模拟光速" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "月çƒå°ºå¯¸" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "顯示大氣層" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "壓力, 溫度, 消光係數" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "折射/消光設置 ..." -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "絕å°å¤§å°:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "相å°å¤§å°:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "é–ƒçˆ:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "é™ä½Žæ˜Žäº®å¤©é«”附近其餘天體的亮度" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "人眼動態視覺調é©" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "æµæ˜Ÿ" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "星座" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "显示星座连线" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "显示星座å称" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "显示星座界线" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "显示星座图绘" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "天çƒ" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "投影方å¼" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "添加/移除地形..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "顯示地é¢" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "顯示霧氣" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "使用與此地景關è¯çš„ä½ç½®èˆ‡è¡Œæ˜Ÿ" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "將此地形設定為é è¨­å€¼" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "将此星空述语设为预设值" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "å¯è¦‹çš„" @@ -3856,7 +4076,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "ä½ å•Ÿå‹•Stellarium時望的方å‘" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "å·²é¸æ“‡å¤©é«”資料" @@ -3872,11 +4092,8 @@ msgid "Display no information" msgstr "ä¸é¡¯ç¤ºä»»ä½•è³‡æ–™" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "ç„¡" @@ -4018,7 +4235,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "啟動時的日期åŠæ™‚é–“" @@ -4030,182 +4247,192 @@ msgid "Other:" msgstr "其他:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "使用ç¾åœ¨çš„設定" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "以系统设定的时间å¯åŠ¨" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "系統日期åŠæ™‚é–“" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "下次啟動 Stellarium 時設定此時間為模擬時間" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "系統日期:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "天文館é¸é …" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "çƒé¢é¡æ‰­æ›²(使用Stellarium åšç‚ºä½Žæˆæœ¬æ˜Ÿè±¡æŠ•å½±ç³»çµ±çš„å ´åˆ)" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "çƒé¢é¡æ‰­æ›²" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "é®åŽ»åœ¨ä¸­é–“圓形範åœä»¥å¤–的星空" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "圓形視角" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "當你點擊一個星座時, éš±è—其他星座" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "é¸æ“‡å–®ä¸€æ˜Ÿåº§" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "星空å称文字ä¿æŒæ°´å¹³" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "é‡åŠ›å稱文字" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "轉æ›åž‚ç›´åŠæ°´å¹³ç¿»è½‰æŒ‰éˆ•" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "顯示翻轉按éµ" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "啟動後,「自動縮å°ã€éµäº¦æœƒå°‡é‚„原觀測方å‘。" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "自動縮å°æ™‚回到原本的觀看方å‘" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "å±å¹•æ“·åœ–" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "截圖儲存資料夾" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "å°èª¿é¡è‰²" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "æ†æ˜Ÿç›®éŒ„æ›´æ–°" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "點擊這裡開始下載" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "下載本檔案å¯ä»¥è§€çœ‹æ›´å¤šæ†æ˜Ÿ" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "é‡æ–°å•Ÿå‹•ä¸‹è¼‰" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "é‡è©¦" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "åœæ­¢ä¸‹è¼‰. 您ç¨å¾Œå¯ä»¥é‡æ–°ä¸‹è¼‰å®ƒ" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "å–消" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "執行指令時關閉視窗" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "執行é¸å–的指令" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "åœæ­¢åŸ·è¡Œä¸­çš„指令" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "在啟動時載入" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "設定" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "主è¦è¨­å®š" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "軟體資訊" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "導航" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "工具" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "æ’件" @@ -4375,176 +4602,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4616,64 +4843,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4681,7 +4913,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4692,14 +4924,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4708,305 +4940,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "衛星" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "以NORAD TLE資料來é æ¸¬äººé€ è¡›æ˜Ÿåœ¨åœ°çƒè»Œé“çš„ä½ç½®" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "舊的satellites.json文件ä¸å†å…¼å®¹ - 使用默èªçš„文件" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5014,25 +5315,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5040,17 +5341,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5058,41 +5359,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5100,338 +5403,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5467,22 +5813,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "望é é¡æŽ§åˆ¶" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5865,62 +6211,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6074,7 +6420,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6092,7 +6438,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6108,154 +6454,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "文本用戶界é¢" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "語言" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6288,22 +6634,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6472,36 +6818,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6519,7 +6872,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6533,14 +6886,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6548,8 +6901,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6567,29 +6921,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6605,51 +7036,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6769,11 +7210,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6781,137 +7222,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "天文單ä½" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6919,49 +7364,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6977,185 +7511,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "ç±³" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7491,6 +8019,9 @@ #~ msgid "Limiting Magnitude: " #~ msgstr "星等é™åˆ¶: " +#~ msgid "Nebulas" +#~ msgstr "星雲" + #~ msgid ":" #~ msgstr ":" @@ -7599,6 +8130,9 @@ #~ msgid "When a Script is Running" #~ msgstr "當腳本é‹è¡Œ" +#~ msgid "Nebulas background images" +#~ msgstr "星雲背景影åƒ" + #, qt-format #~ msgid "Ecliptic Geocentric (of date): %1/%2" #~ msgstr "黄é“的地心 (日期): %1/%2" diff -Nru stellarium-0.12.1/po/stellarium/zh_TW.po stellarium-0.12.4/po/stellarium/zh_TW.po --- stellarium-0.12.1/po/stellarium/zh_TW.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/zh_TW.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-10-22 02:33+0000\n" "Last-Translator: Bryan Nguyen \n" "Language-Team: Chinese (Taiwan) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:56+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "å­åˆç·š" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "黃é“" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "赤é“" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "地平圈" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "銀河平é¢" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "作者: " -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "ä½ç½®: " -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr ", %1 m" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "行星: " -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "é¡žåž‹: %1" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "星等: %1 (消光至: %2)" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "視星等: %1" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "大å°: %1" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "星系" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "ç–散星團" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "çƒç‹€æ˜Ÿåœ˜" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "星雲" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "行星狀星雲" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "瀰漫星雲" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "未知的" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "未記錄的類型" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "絕å°æ˜Ÿç­‰: %1" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "地心黃é“座標 (日期): %1/%2" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "轉軸傾角 (日期, 地çƒ): %1" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "è·é›¢: %1AU (%2 km)" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "è·é›¢: %1AU (天文單ä½)" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "視直徑r: %1, å«ç’°: %2" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "視直徑: %1" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "æ†æ˜Ÿå‘¨æœŸ: %1æ—¥ (%2 a)" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "æ†æ˜Ÿæ—¥: %1" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "平太陽日: %1" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "相角: %1" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "è·è§’: %1" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "相: %1" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "照明: %1%" @@ -204,7 +204,7 @@ msgstr "臨時編號: %1" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "視星等: %1 (消光後)" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "星等: %1 (消光至: %2. B-V: %3)" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "星等: %1 (B-V: %2)" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "光譜型: %1" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "è·é›¢: %1 光年" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "視差: %1\"" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "太空船" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "錯誤" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,52 +727,53 @@ msgid "Found" msgstr "已找到" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "é¸æ“‡ç•«é¢æ“·å–圖片的存檔目錄" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "啟動時的視野大å°: %1%2" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "啟動時的地平å標方ä½è§’/高度角: %1/%2" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "作者群" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "è¯çµ¡" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "作者" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "授權æ¢æ¬¾" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "執行 Script: " -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "執行 Script: [ç„¡]" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." @@ -688,16 +781,16 @@ "新的星表下載完æˆï¼\n" "è«‹é‡æ–°å•Ÿå‹• Stellarium 以顯示新的星表。" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "所有å¯ç”¨çš„星表已被安è£." -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "å–得星表 %1/%2" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" @@ -706,7 +799,7 @@ "正在下載 %1...\n" "(您å¯ä»¥é—œé–‰æ­¤è¦–窗)" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -717,7 +810,7 @@ "æ†æ˜Ÿæ•¸é‡: %2 百è¬\n" "星等: %3 - %4" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" @@ -726,11 +819,11 @@ "下載 %1 時發生錯誤:\n" "%2" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "檢查檔案完整性..." -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -740,115 +833,123 @@ "檔案æ毀。" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -1007,49 +1108,53 @@ msgid "OSX Developer: %1" msgstr "OSX 開發: %1" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "Script 主控å°è¦–窗" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "視窗" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "空白éµ" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "%1m" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "沒有æè¿°" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "ç„¡æµæ˜Ÿ" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "日常頻率" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "標準英仙座æµæ˜Ÿé›¨é »çŽ‡" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "超é‡ç…å­åº§æµæ˜Ÿé›¨" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "至今最高頻率 (1966 ç…å­åº§æµæ˜Ÿé›¨)" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "æ–°ä½ç½®" @@ -1152,19 +1257,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1180,30 +1285,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "系統ä¸æ”¯æ´ OpenGL。" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "太陽" @@ -1220,12 +1331,12 @@ msgstr "地çƒ" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "月çƒ" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "ç«æ˜Ÿ" @@ -1323,7 +1434,7 @@ msgstr "木衛åå…­" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "土星" @@ -1621,239 +1732,268 @@ msgstr "因努伊特" #: src/translations.h:170 +msgid "Indian Vedic" +msgstr "" + +#: src/translations.h:171 msgid "Korean" msgstr "å¤æœé®®" -#: src/translations.h:171 +#: src/translations.h:172 msgid "Lakota" msgstr "拉科塔" -#: src/translations.h:172 +#: src/translations.h:173 msgid "Maori" msgstr "毛利" -#: src/translations.h:173 +#: src/translations.h:174 msgid "Navajo" msgstr "ç´ç“¦ä¼™" -#: src/translations.h:174 +#: src/translations.h:175 msgid "Norse" msgstr "北æ­" -#: src/translations.h:175 +#: src/translations.h:176 msgid "Polynesian" msgstr "玻里尼西亞" -#: src/translations.h:176 +#: src/translations.h:177 msgid "Sami" msgstr "薩米語" -#: src/translations.h:177 +#: src/translations.h:178 msgid "Tupi-Guarani" msgstr "圖皮-瓜拉尼諸 (å—美)" -#: src/translations.h:178 +#: src/translations.h:179 msgid "Tongan" msgstr "" -#: src/translations.h:179 +#: src/translations.h:180 msgid "Western" msgstr "西洋" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1863,1502 +2003,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "安é“爾" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "阿è¯" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "阿富汗" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "安地å¡åŠå·´å¸ƒé”" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "英屬安圭拉" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "阿爾巴尼亞" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "亞美尼亞" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "è·å±¬å®‰åœ°åˆ—æ–¯" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "安哥拉" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "å—極洲" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "阿根廷" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "美屬薩摩亞" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "奧地利" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "澳洲" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "阿魯巴" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "亞塞拜然" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "波赫" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "å·´è²å¤š" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "孟加拉" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "比利時" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "布å‰ç´æ³•ç´¢" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "ä¿åŠ åˆ©äºž" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "å·´æž—" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "蒲隆地" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "è²å—" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "百慕é”" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "汶èŠ" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "玻利維亞" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "巴西" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "巴哈馬" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "ä¸ä¸¹" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "布å¨å³¶" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "波札那" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "白俄羅斯" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "è²é‡Œæ–¯" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "加拿大" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "å¯å¯æ–¯ç¾¤å³¶" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "民主剛果" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "中éž" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "剛果" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "瑞士" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "象牙海岸" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "庫克群島" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "智利" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "喀麥隆" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "中國" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "哥倫比亞" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "哥斯é”黎加" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "塞爾維亞與蒙特內哥羅" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "å¤å·´" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "維德角" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "庫拉索" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "賽普勒斯" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "æ·å…‹" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "德國" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "å‰å¸ƒåœ°" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "丹麥" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "多米尼克" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "多米尼加" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "阿爾åŠåˆ©äºž" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "厄瓜多" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "愛沙尼亞" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "埃åŠ" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "西撒哈拉" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "厄立垂亞" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "西ç­ç‰™" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "衣索比亞" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "芬蘭" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "æ–æ¿Ÿ" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "ç¦å…‹è˜­ç¾¤å³¶" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "密克羅尼西亞è¯é‚¦" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "法羅群島" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "法國" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "加彭" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "英國" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "格瑞那é”" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "喬治亞" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "法屬格亞那" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "迦ç´" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "直布羅陀" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "格陵蘭" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "甘比亞" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "幾內亞" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "瓜德魯普島" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "赤é“幾內亞" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "希臘" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "å—喬治亞與å—三明治群島" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "瓜地馬拉" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "管é“" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "幾內亞比索" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "蓋亞那" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "香港" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "赫德åŠéº¥ç•¶å‹žç¾¤å³¶" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "å®éƒ½æ‹‰æ–¯" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "克羅埃西亞" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "海地" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "匈牙利" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "å°å°¼" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "愛爾蘭" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "以色列" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "å°åº¦" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "英屬å°åº¦æµ·åœ°å€" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "伊拉克" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "伊朗" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "冰島" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "æ„大利" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "牙買加" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "ç´„æ—¦" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "日本" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "肯亞" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "å‰çˆ¾å‰æ–¯" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "柬埔寨" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "å‰é‡Œå·´æ–¯" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "葛摩" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "è–克里斯多ç¦åŠå°¼ç¶­æ–¯" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "北韓" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "韓國" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "科å¨ç‰¹" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "開曼群島" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "哈薩克" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "é¼åœ‹" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "黎巴嫩" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "è–露西亞" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "列支敦å¸ç™»" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "斯里蘭å¡" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "賴比瑞亞" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "賴索托" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "立陶宛" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "盧森堡" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "拉脫維亞" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "利比亞" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "摩洛哥" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "æ‘©ç´å“¥" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "摩爾多瓦" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "馬é”加斯加" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "馬紹爾群島" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "馬其頓" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "馬利" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "緬甸" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "è’™å¤" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "澳門" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "北馬里亞ç´ç¾¤å³¶" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "法屬馬ä¸å°¼å…‹" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "茅利塔尼亞" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "夢塞拉特島" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "馬耳他" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "模里西斯" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "馬爾地夫" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "馬拉å¨" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "墨西哥" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "馬來西亞" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "莫三比克" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "奈米比亞" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "新喀裡多尼亞到" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "尼日" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "諾ç¦å…‹åˆ°" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "奈åŠåˆ©äºž" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "尼加拉瓜" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "è·è˜­" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "挪å¨" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "尼泊爾" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "諾魯" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "ç´åŸƒ" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "ç´è¥¿è˜­" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "阿曼" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "巴拿馬" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "秘魯" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "法屬玻里尼西亞" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "巴布亞新幾內亞" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "è²å¾‹è³“" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "巴基斯å¦" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "波蘭" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "è–皮耶與密克隆群島" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "皮特康島" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "波多黎å„" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "å·´å‹’æ–¯å¦" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "è‘¡è„牙" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "帛ç‰" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "巴拉圭" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "å¡é”" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "留尼旺" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "羅馬尼亞" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "塞爾維亞" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "ä¿„ç¾…æ–¯" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "盧安é”" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "æ²™çƒåœ°é˜¿æ‹‰ä¼¯" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "索羅門群島" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "塞席爾" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "蘇丹" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "ç‘žå…¸" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "新加å¡" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "è–赫勒那島" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "斯洛維尼亞" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "斯瓦巴åŠå°–棉島" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "斯洛ä¼å…‹" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "ç…å­å±±" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "è–馬利諾" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "塞內加爾" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "索馬利亞" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "蘇里å—" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "è–多美普林西比" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "薩爾瓦多" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "敘利亞" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "å²ç“¦æ¿Ÿè˜­" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "土克斯åŠé–‹ç§‘斯群島" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "查德" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "法屬å—部屬地" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "多哥" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "泰國" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "å¡”å‰å…‹" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "托克勞群島" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "æ±å¸æ±¶" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "土庫曼" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "çªå°¼è¥¿äºž" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "æ±åŠ " -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "土耳其" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "åƒé‡Œé”åŠæ‰˜å·´å“¥" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "å瓦魯" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "å°ç£" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "å¦å°šå°¼äºž" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "çƒå…‹è˜­" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "çƒå¹²é”" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "美國邊疆å°å³¶" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "美國" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "çƒæ‹‰åœ­" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "çƒèŒ²åˆ¥å…‹" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "梵蒂岡" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "è–文森基格瑞那ä¸" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "委內瑞拉" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "英屬維京群島" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "美屬維京群島" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "越å—" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "è¬é‚£æœ" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "沃里斯與ä¼å¡”那島" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "薩摩亞" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "葉門" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "美亞特" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "å—斯拉夫" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "å—éž" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "尚比亞" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "辛巴å¨" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "日期與時間" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "增加 1 æ†æ˜Ÿæ—¥" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "增加 1 æ†æ˜Ÿæœˆ" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "增加 1 æ†æ˜Ÿé€±" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "增加 1 æ†æ˜Ÿå¹´" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "增加 1 太陽日" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "增加 1 太陽時" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "增加 1 太陽週" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "增加 1 朔望月" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "增加 1 交點月" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "增加 1 近點月" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "增加 1 分至月" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "增加 1 交點年" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "增加 1 分至年" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "減慢 Script 執行速度" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "減慢時間速度" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "減慢時間速度 (微調)" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "加快 Script 執行速度" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "加快時間速度" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "加快時間速度 (微調)" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "æš«åœ Script 執行" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "繼續 Script 執行" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "跳至目å‰æ™‚刻" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "正常 Script 執行速度" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "正常時間速度" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "調整時間速率至零" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "åœæ­¢ Script 執行" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "減少 1 æ†æ˜Ÿæ—¥" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "減少 1 æ†æ˜Ÿæœˆ" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "減少 1 æ†æ˜Ÿé€±" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "減少 1 æ†æ˜Ÿå¹´" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "減少 1 太陽日" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "減少 1 太陽時" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "減少 1 太陽週" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "減少 1 朔望月" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "減少 1 交點月" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "減少 1 近點月" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "減少 1 分至月" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "減少 1 交點年" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "減少 1 分至年" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "顯示é¸é …" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "水平翻轉" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "全螢幕模å¼" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "大氣" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "地平座標" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "基點" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "星座圖繪" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "星座界線" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "星座å稱" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "星座連線" -#: src/translations.h:579 -msgid "Nebulas background images" -msgstr "星雲背景影åƒ" +#: src/translations.h:590 +msgid "Deep-sky objects background images" +msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "黃é“座標 (J2000)" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "黃é“" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "赤é“" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "赤é“座標" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "赤é“座標 (J2000)" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "霧" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "銀河座標" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "銀河平é¢" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "地é¢" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "地平線" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "經線" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" -msgstr "星雲" +#: src/translations.h:602 +msgid "Deep-sky objects" +msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "夜間模å¼" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "行星標籤" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "行星軌é“" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "行星軌跡" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "æ†æ˜Ÿ" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "æ†æ˜Ÿæ¨™ç±¤" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "垂直翻轉" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "其他" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "自動隱è—水平工具列" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "自動隱è—垂直工具列" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "çµæŸ" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "複製é¸æ“‡å¤©é«”的資訊到剪貼æ¿" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "儲存螢幕擷å–圖片" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "在赤é“座標與地平座標系統之間切æ›" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "切æ›ä»‹é¢é¡¯ç¤º" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "移動與é¸æ“‡" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "å°‡é¸æ“‡å¤©é«”移至畫é¢ä¸­å¤®" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "å°‡é¸æ“‡çš„行星設為目å‰ä½ç½®" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "追蹤" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "放大已é¸æ“‡çš„物體" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "縮å°" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "角度測é‡" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "羅盤刻度" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "望é é¡æ¨¡æ“¬é¡¯ç¤º" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "人造衛星設定視窗" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "人造衛星æ示" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "人造衛星標籤" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "移動望é é¡åˆ°è¨­å®šçš„座標" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "Script" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "設定" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "日期/時間" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "說明" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "ä½ç½®" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "æœå°‹" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "å¿«æ·" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "星空與顯示" @@ -3384,7 +3560,7 @@ msgstr "é‡æ–°æ•´ç†" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "ä½ç½®" @@ -3400,10 +3576,10 @@ msgid "Return to default" msgstr "é‡ç½®ç‚ºé è¨­å€¼" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "刪除" @@ -3412,7 +3588,7 @@ msgstr "加入列表" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "緯度:" @@ -3423,12 +3599,12 @@ msgstr "您å¯ä»¥è¼¸å…¥å進ä½åº¦æ•¸ï¼Œæˆ–是使用 dms æ ¼å¼ï¼Œä¾‹å¦‚: +1d 12m 8s" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "經度:" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "æµ·æ‹”:" @@ -3452,363 +3628,407 @@ msgid "Planet:" msgstr "行星:" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "尋找天體" -#: src/ui_searchDialogGui.h:543 +#: src/ui_searchDialogGui.h:559 msgid "Find Object or Position" msgstr "尋找天體或ä½ç½®" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" +msgstr "" + +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "拜耳命å法用的希臘字æ¯" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "天體" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "赤經/赤緯 (J2000):" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "ä½ç½®" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "英文命å" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "在列表中æœç´¢..." + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "列表" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "在線天文數據庫 SIMBAD" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "用 SIMBAD 擴大æœç´¢" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "伺æœå™¨:" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 +#: src/ui_searchDialogGui.h:655 +msgid "Search options" +msgstr "" + +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" +msgstr "" + +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 msgid "Options" msgstr "é¸é …" -#: src/ui_searchDialogGui.h:628 -msgid "names in English" -msgstr "英文命å" - -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." -msgstr "在列表中æœç´¢..." - -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" -msgstr "列表" - -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "檢視" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "星空" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "標示" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "地景" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "星空述語" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "å稱與標記" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "行星" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "行星與衛星" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "顯示行星" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "顯示行星標記" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "顯示行星軌é“" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "模擬光速" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "月çƒå°ºå¯¸" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "顯示大氣層" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "光害:" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "壓力, 溫度, 消光係數" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "折射/消光設定" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "絕å°å¤§å°:" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "相å°å¤§å°:" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "é–ƒçˆ:" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "將極亮星體週é­çš„æ†æ˜Ÿäº®åº¦é™ä½Ž" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "人眼動態視覺調é©" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "æµæ˜Ÿ" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "星座" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "顯示星座連線" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "顯示星座å稱" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "顯示星座界線" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "顯示星座圖繪" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "圖繪亮度" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "天çƒ" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "顯示赤é“" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "顯示經線" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "顯示地平線" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "顯示黃é“" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "顯示銀é“" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "投影方å¼" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "新增/移除地景..." -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "顯示地é¢" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "顯示霧氣" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "使用與此地景關è¯çš„ä½ç½®èˆ‡è¡Œæ˜Ÿ" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "將此地景設為é è¨­å€¼" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "將此星空述語設為é è¨­å€¼" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "顯示" @@ -3858,7 +4078,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "Stellarium 啟動時應使用的視角" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "é¸æ“‡å¤©é«”的資訊" @@ -3874,11 +4094,8 @@ msgid "Display no information" msgstr "ä¸é¡¯ç¤ºè³‡è¨Š" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "ä¸é¡¯ç¤º" @@ -4020,7 +4237,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "啟動時的日期與時間" @@ -4032,182 +4249,192 @@ msgid "Other:" msgstr "其他:" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "使用ç¾æœ‰çš„" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "以系統設定的時間啟動" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "系統日期與時間" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "以此時刻下次發生的日期 (今天或明天) å•Ÿå‹•" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "系統日期,在時間:" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "星象館é¸é …" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "çƒé¢é¡æ‰­æ›² (使用 Stellarium åšç‚ºä½Žæˆæœ¬æ˜Ÿè±¡æŠ•å½±ç³»çµ±çš„å ´åˆ)" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "çƒé¢é¡æ‰­æ›²" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "é®åŽ»ä¸åœ¨ä¸­é–“圓形範åœå…§çš„星空" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "圓形視角" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "點é¸å…¶ä¸­ä¸€å€‹æ˜Ÿåº§æ™‚éš±è—其它星座" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "é¸æ“‡å–®ä¸€æ˜Ÿåº§" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "星空å稱文字ä¿æŒæ°´å¹³" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "é‡åŠ›å稱文字" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "切æ›æ˜¯å¦è¦é¡¯ç¤ºæ°´å¹³èˆ‡åž‚直翻轉按鈕" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "顯示翻轉按鈕" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "若啟用此功能時,「自動縮å°ã€æŒ‰éˆ•æœƒåœ¨ç¸®å°æ™‚轉回原本的觀看方å‘" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "自動縮å°æ™‚回到原本的觀看方å‘" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "螢幕抓圖" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "ç•«é¢æ“·å–存檔目錄" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "åå‘彩色" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "星表更新" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "點é¸é€™ä»¥é–‹å§‹ä¸‹è¼‰" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "下載此檔案以顯示更多æ†æ˜Ÿ" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "é‡æ–°å•Ÿå‹•ä¸‹è¼‰" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "é‡è©¦" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "終止下載,你å¯ä»¥éš¨æ™‚é‡æ–°å•Ÿå‹•ä¸‹è¼‰" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "å–消" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "Script 執行時關閉視窗" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "執行é¸æ“‡çš„ Script" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "åœæ­¢æ­£åœ¨åŸ·è¡Œçš„ Script" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "啟動時載入" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "設定" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "一般設定" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "軟體資訊" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "導覽" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "工具" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "外掛程å¼" @@ -4375,176 +4602,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "在地平é¢ä¸Šé¡¯ç¤ºç¾…盤刻度" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "以管窺天" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4616,64 +4843,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4681,7 +4913,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4692,14 +4924,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4708,305 +4940,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "人造衛星" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "使用 NORAD TLE 的資料é æ¸¬åœ°çƒè»Œé“上的人造衛星的ä½ç½®" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "舊的 satellites.json å·²ä¸å†ç›¸å®¹ï¼›ä½¿ç”¨é è¨­æª”案" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5014,25 +5315,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5040,17 +5341,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5058,41 +5359,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5100,338 +5403,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5467,22 +5813,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "望é é¡æŽ§åˆ¶" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "此外掛賦予 Stellarium å°é›»å­èµ¤é“å„€/經緯儀下「slewã€æŒ‡ä»¤çš„能力(「移動望é é¡ã€åŠŸèƒ½ï¼‰ã€‚" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "移動望é é¡ #%1 到é¸æ“‡çš„天體" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "移動望é é¡ #%1 到到目å‰ç•«é¢çš„中心ä½ç½®" @@ -5865,62 +6211,62 @@ msgstr "Stellarium 設定檔的罕用設定介é¢ã€‚å…許設定時å€ï¼Œä»¥åŠæ—¥æœŸæ™‚間的顯示方å¼ã€‚" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6074,7 +6420,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6092,7 +6438,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6108,154 +6454,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "文字介é¢" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "æ供原存於 0.9.x 系列 TUI 文字介é¢çš„外掛,å¯ç”¨æ–¼æ˜Ÿè±¡ç®¡ç³»çµ±ã€‚" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "語言" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6289,22 +6635,22 @@ "新增å°è¡Œæ˜Ÿèˆ‡å½—星到 Stellarium 的資料庫。此外掛å¯ä¸‹è¼‰ Minor Planet Center 網站上的天體清單與進行線上æœå°‹ã€‚" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6473,36 +6819,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6520,7 +6873,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6534,14 +6887,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6549,8 +6902,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6568,29 +6922,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6606,51 +7037,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6770,11 +7211,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6782,137 +7223,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "å¤©æ–‡å–®ä½ (AU)" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6920,49 +7365,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6978,185 +7512,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "公尺" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" @@ -7510,6 +8038,9 @@ #~ msgid "Light Pollution Luminance: " #~ msgstr "光害程度: " +#~ msgid "Nebulas" +#~ msgstr "星雲" + #~ msgid "Form" #~ msgstr "æ ¼å¼" @@ -7555,6 +8086,9 @@ #~ msgid "Correct for light travel time: " #~ msgstr "考慮光行進時間: " +#~ msgid "Nebulas background images" +#~ msgstr "星雲背景影åƒ" + #~ msgid "Hourly zenith rate:" #~ msgstr "æµæ˜Ÿå¤©é ‚å°æ™‚率:" diff -Nru stellarium-0.12.1/po/stellarium/zu.po stellarium-0.12.4/po/stellarium/zu.po --- stellarium-0.12.1/po/stellarium/zu.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium/zu.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-04-14 15:21+0700\n" +"POT-Creation-Date: 2013-09-10 20:03+0700\n" "PO-Revision-Date: 2012-05-08 17:27+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Zulu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:20+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-11 04:56+0000\n" +"X-Generator: Launchpad (build 16761)\n" -#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1259 +#: src/core/modules/GridLinesMgr.cpp:564 src/ui_viewDialog.h:1286 msgid "Meridian" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1267 +#: src/core/modules/GridLinesMgr.cpp:568 src/ui_viewDialog.h:1294 msgid "Ecliptic" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1255 +#: src/core/modules/GridLinesMgr.cpp:572 src/ui_viewDialog.h:1282 msgid "Equator" msgstr "" -#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1263 +#: src/core/modules/GridLinesMgr.cpp:576 src/ui_viewDialog.h:1290 msgid "Horizon" msgstr "" @@ -37,46 +37,46 @@ msgid "Galactic Plane" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:508 +#: src/core/modules/LandscapeMgr.cpp:527 msgid "Author: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:511 +#: src/core/modules/LandscapeMgr.cpp:530 msgid "Location: " msgstr "" -#: src/core/modules/LandscapeMgr.cpp:516 +#: src/core/modules/LandscapeMgr.cpp:535 #, qt-format msgid ", %1 m" msgstr "" -#: src/core/modules/LandscapeMgr.cpp:520 +#: src/core/modules/LandscapeMgr.cpp:539 msgid "Planet: " msgstr "" -#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:438 +#: src/core/modules/Nebula.cpp:124 src/core/modules/Planet.cpp:440 #: src/core/modules/MinorPlanet.cpp:209 src/core/modules/Comet.cpp:119 -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:120 -#: src/core/modules/StarWrapper.cpp:122 -#: plugins/Satellites/src/Satellite.cpp:244 -#: plugins/Supernovae/src/Supernova.cpp:97 plugins/Quasars/src/Quasar.cpp:92 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:165 +#: src/core/modules/StarWrapper.cpp:168 +#: plugins/Satellites/src/Satellite.cpp:252 +#: plugins/Supernovae/src/Supernova.cpp:122 plugins/Quasars/src/Quasar.cpp:92 #: plugins/Pulsars/src/Pulsar.cpp:125 #, qt-format msgid "Type: %1" msgstr "" -#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:444 +#: src/core/modules/Nebula.cpp:129 src/core/modules/Planet.cpp:446 #: src/core/modules/MinorPlanet.cpp:215 src/core/modules/Comet.cpp:125 -#: plugins/Supernovae/src/Supernova.cpp:102 plugins/Quasars/src/Quasar.cpp:106 -#: plugins/Exoplanets/src/Exoplanet.cpp:176 +#: plugins/Supernovae/src/Supernova.cpp:127 plugins/Novae/src/Nova.cpp:131 +#: plugins/Quasars/src/Quasar.cpp:106 plugins/Exoplanets/src/Exoplanet.cpp:155 #, qt-format msgid "Magnitude: %1 (extincted to: %2)" msgstr "" -#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:447 +#: src/core/modules/Nebula.cpp:132 src/core/modules/Planet.cpp:449 #: src/core/modules/MinorPlanet.cpp:218 src/core/modules/Comet.cpp:128 -#: plugins/Supernovae/src/Supernova.cpp:105 plugins/Quasars/src/Quasar.cpp:118 -#: plugins/Exoplanets/src/Exoplanet.cpp:181 +#: plugins/Supernovae/src/Supernova.cpp:130 plugins/Novae/src/Nova.cpp:134 +#: plugins/Quasars/src/Quasar.cpp:118 plugins/Exoplanets/src/Exoplanet.cpp:160 #, qt-format msgid "Magnitude: %1" msgstr "" @@ -86,114 +86,114 @@ msgid "Size: %1" msgstr "" -#: src/core/modules/Nebula.cpp:375 +#: src/core/modules/Nebula.cpp:385 msgid "Galaxy" msgstr "" -#: src/core/modules/Nebula.cpp:378 +#: src/core/modules/Nebula.cpp:388 msgid "Open cluster" msgstr "" -#: src/core/modules/Nebula.cpp:381 +#: src/core/modules/Nebula.cpp:391 msgid "Globular cluster" msgstr "" -#: src/core/modules/Nebula.cpp:384 +#: src/core/modules/Nebula.cpp:394 msgid "Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:387 +#: src/core/modules/Nebula.cpp:397 msgid "Planetary nebula" msgstr "" -#: src/core/modules/Nebula.cpp:390 +#: src/core/modules/Nebula.cpp:400 msgid "Dark Nebula" msgstr "" -#: src/core/modules/Nebula.cpp:393 +#: src/core/modules/Nebula.cpp:403 msgid "Cluster associated with nebulosity" msgstr "" -#: src/core/modules/Nebula.cpp:396 +#: src/core/modules/Nebula.cpp:406 msgid "Unknown" msgstr "" -#: src/core/modules/Nebula.cpp:399 +#: src/core/modules/Nebula.cpp:409 msgid "Undocumented type" msgstr "" -#: src/core/modules/Planet.cpp:450 src/core/modules/MinorPlanet.cpp:228 +#: src/core/modules/Planet.cpp:452 src/core/modules/MinorPlanet.cpp:228 #: src/core/modules/MinorPlanet.cpp:232 src/core/modules/Comet.cpp:137 -#: src/core/modules/StarWrapper.cpp:137 plugins/Quasars/src/Quasar.cpp:123 +#: src/core/modules/StarWrapper.cpp:184 plugins/Quasars/src/Quasar.cpp:123 #, qt-format msgid "Absolute Magnitude: %1" msgstr "" -#: src/core/modules/Planet.cpp:463 +#: src/core/modules/Planet.cpp:465 #, qt-format msgid "Ecliptic Topocentric (of date): %1/%2" msgstr "" -#: src/core/modules/Planet.cpp:464 +#: src/core/modules/Planet.cpp:466 #, qt-format msgid "Obliquity (of date, for Earth): %1" msgstr "" -#: src/core/modules/Planet.cpp:474 src/core/modules/MinorPlanet.cpp:245 +#: src/core/modules/Planet.cpp:476 src/core/modules/MinorPlanet.cpp:245 #: src/core/modules/Comet.cpp:149 #, no-c-format, qt-format msgid "Distance: %1AU (%2 km)" msgstr "" -#: src/core/modules/Planet.cpp:481 src/core/modules/MinorPlanet.cpp:252 +#: src/core/modules/Planet.cpp:483 src/core/modules/MinorPlanet.cpp:252 #: src/core/modules/Comet.cpp:156 #, no-c-format, qt-format msgid "Distance: %1AU" msgstr "" -#: src/core/modules/Planet.cpp:492 +#: src/core/modules/Planet.cpp:494 #, qt-format msgid "Apparent diameter: %1, with rings: %2" msgstr "" -#: src/core/modules/Planet.cpp:498 src/core/modules/MinorPlanet.cpp:258 +#: src/core/modules/Planet.cpp:500 src/core/modules/MinorPlanet.cpp:258 #, qt-format msgid "Apparent diameter: %1" msgstr "" #. TRANSLATORS: Sidereal (orbital) period for solar system bodies in days and in Julian years (symbol: a) -#: src/core/modules/Planet.cpp:508 src/core/modules/MinorPlanet.cpp:265 +#: src/core/modules/Planet.cpp:510 src/core/modules/MinorPlanet.cpp:265 #: src/core/modules/Comet.cpp:171 #, qt-format msgid "Sidereal period: %1 days (%2 a)" msgstr "" -#: src/core/modules/Planet.cpp:511 +#: src/core/modules/Planet.cpp:513 #, qt-format msgid "Sidereal day: %1" msgstr "" -#: src/core/modules/Planet.cpp:512 +#: src/core/modules/Planet.cpp:514 #, qt-format msgid "Mean solar day: %1" msgstr "" -#: src/core/modules/Planet.cpp:519 +#: src/core/modules/Planet.cpp:521 #, qt-format msgid "Phase Angle: %1" msgstr "" -#: src/core/modules/Planet.cpp:520 +#: src/core/modules/Planet.cpp:522 #, qt-format msgid "Elongation: %1" msgstr "" -#: src/core/modules/Planet.cpp:521 +#: src/core/modules/Planet.cpp:523 #, qt-format msgid "Phase: %1" msgstr "" -#: src/core/modules/Planet.cpp:522 +#: src/core/modules/Planet.cpp:524 #, qt-format msgid "Illuminated: %1%" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #. TRANSLATORS: Type of object -#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:122 +#: src/core/modules/StarWrapper.cpp:52 src/core/modules/StarWrapper.cpp:158 #: src/translations.h:151 msgid "star" msgstr "" @@ -219,47 +219,122 @@ msgid "Apparent Magnitude: %1 (by extinction)" msgstr "" -#: src/core/modules/StarWrapper.cpp:120 +#: src/core/modules/StarWrapper.cpp:139 +msgid "eruptive variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:141 +msgid "pulsating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:143 +msgid "rotating variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:145 +msgid "cataclysmic variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:148 +msgid "eclipsing binary system" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:152 +msgid "variable star" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:156 msgid "double star" msgstr "" -#: src/core/modules/StarWrapper.cpp:128 plugins/Quasars/src/Quasar.cpp:100 +#: src/core/modules/StarWrapper.cpp:163 +#, qt-format +msgid "Type: %1, %2" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:175 plugins/Quasars/src/Quasar.cpp:100 #, qt-format msgid "Magnitude: %1 (extincted to: %2. B-V: %3)" msgstr "" -#: src/core/modules/StarWrapper.cpp:132 plugins/Quasars/src/Quasar.cpp:114 +#: src/core/modules/StarWrapper.cpp:179 plugins/Quasars/src/Quasar.cpp:114 #, qt-format msgid "Magnitude: %1 (B-V: %2)" msgstr "" -#: src/core/modules/StarWrapper.cpp:143 -#: plugins/Exoplanets/src/Exoplanet.cpp:191 +#: src/core/modules/StarWrapper.cpp:199 +#, qt-format +msgid "Magnitude range: %1%2%3 (Photometric system: %4)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:201 +#, qt-format +msgid "Magnitude range: %1%2%3/%4 (Photometric system: %5)" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:209 +#: plugins/Exoplanets/src/Exoplanet.cpp:170 #, qt-format msgid "Spectral Type: %1" msgstr "" -#: src/core/modules/StarWrapper.cpp:147 -#: plugins/Supernovae/src/Supernova.cpp:115 -#: plugins/Exoplanets/src/Exoplanet.cpp:196 +#: src/core/modules/StarWrapper.cpp:213 +#: plugins/Supernovae/src/Supernova.cpp:141 plugins/Novae/src/Nova.cpp:144 +#: plugins/Exoplanets/src/Exoplanet.cpp:175 #, qt-format msgid "Distance: %1 Light Years" msgstr "" -#: src/core/modules/StarWrapper.cpp:150 +#: src/core/modules/StarWrapper.cpp:216 #, qt-format msgid "Parallax: %1\"" msgstr "" -#: src/core/StelObserver.cpp:271 +#: src/core/modules/StarWrapper.cpp:222 +#, qt-format +msgid "Epoch for minimum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:224 +#, qt-format +msgid "Epoch for maximum light: %1 JD" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:228 +#, qt-format +msgid "Period: %1 days" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:238 +#, qt-format +msgid "Next minimum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:240 +#, qt-format +msgid "Next maximum light: %1 UTC" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:246 +#, qt-format +msgid "Duration of eclipse: %1%" +msgstr "" + +#: src/core/modules/StarWrapper.cpp:248 +#, qt-format +msgid "Rising time: %1%" +msgstr "" + +#. TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. +#: src/core/StelObserver.cpp:282 msgid "SpaceShip" msgstr "" -#: src/core/StelCore.cpp:1419 +#: src/core/StelCore.cpp:1435 msgid "Correction is disabled. Use only if you know what you are doing!" msgstr "" -#: src/core/StelCore.cpp:1422 +#: src/core/StelCore.cpp:1438 #, qt-format msgid "" "This historical formula was obtained by C. Schoch in 1931 and was used by G. " @@ -267,14 +342,14 @@ "Ancient Solar Eclipses (%1). See for more info %2here%3." msgstr "" -#: src/core/StelCore.cpp:1425 +#: src/core/StelCore.cpp:1441 #, qt-format msgid "" "This empirical equation was published by G. M. Clemence in the article " "On the system of astronomical constants (%1)." msgstr "" -#: src/core/StelCore.cpp:1428 +#: src/core/StelCore.cpp:1444 #, qt-format msgid "" "This formula is based on a study of post-1650 observations of the Sun, the " @@ -283,14 +358,14 @@ "PC program SunTracker Pro." msgstr "" -#: src/core/StelCore.cpp:1432 +#: src/core/StelCore.cpp:1448 msgid "" "This is a slightly modified version of the IAU (1952) formula which was " "adopted in the Astronomical Ephemeris and in the Canon of Solar " "Eclipses by Mucke & Meeus (1983)." msgstr "" -#: src/core/StelCore.cpp:1436 +#: src/core/StelCore.cpp:1452 msgid "" "The tables of Tuckerman (1962, 1964) list the positions of the Sun, the Moon " "and the planets at 5- and 10-day intervals from 601 BCE to 1649 CE. The same " @@ -298,7 +373,7 @@ "(1973)." msgstr "" -#: src/core/StelCore.cpp:1440 +#: src/core/StelCore.cpp:1456 #, qt-format msgid "" "This equation was published by P. M. Muller and F. R. Stephenson in the " @@ -306,14 +381,14 @@ "observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1443 +#: src/core/StelCore.cpp:1459 #, qt-format msgid "" "This equation was published by F. R. Stephenson in the article Pre-" "Telescopic Astronomical Observations (%1)." msgstr "" -#: src/core/StelCore.cpp:1446 +#: src/core/StelCore.cpp:1462 #, qt-format msgid "" "This 12th-order polynomial equation (outdated and superseded by Schmadel & " @@ -322,14 +397,14 @@ "period 1800-1975 (%1) as fit through data published by Brouwer (1952)." msgstr "" -#: src/core/StelCore.cpp:1449 +#: src/core/StelCore.cpp:1465 msgid "" "This algorithm was adopted in P. Bretagnon & L. Simon's Planetary " "Programs and Tables from -4000 to +2800 (1986) and in the PC " "planetarium program RedShift." msgstr "" -#: src/core/StelCore.cpp:1452 +#: src/core/StelCore.cpp:1468 #, qt-format msgid "" "This formula was published by F. R. Stephenson and L. V. Morrison in the " @@ -337,25 +412,25 @@ "A.D. 1980 (%1)." msgstr "" -#: src/core/StelCore.cpp:1455 +#: src/core/StelCore.cpp:1471 msgid "This algorithm is used in the PC planetarium program Guide 7." msgstr "" -#: src/core/StelCore.cpp:1458 +#: src/core/StelCore.cpp:1474 msgid "" "This algorithm was given by F. Espenak in his Fifty Year Canon of Solar " "Eclipses: 1986-2035 (1987) and in his Fifty Year Canon of Lunar " "Eclipses: 1986-2035 (1989)." msgstr "" -#: src/core/StelCore.cpp:1461 +#: src/core/StelCore.cpp:1477 #, qt-format msgid "" "This formula was obtained by K.M. Borkowski (%1) from an analysis of 31 " "solar eclipse records dating between 2137 BCE and 1715 CE." msgstr "" -#: src/core/StelCore.cpp:1464 +#: src/core/StelCore.cpp:1480 #, qt-format msgid "" "This 12th-order polynomial equation was published by L. D. Schmadel and G. " @@ -364,14 +439,14 @@ "Morrison (1984)." msgstr "" -#: src/core/StelCore.cpp:1467 +#: src/core/StelCore.cpp:1483 msgid "" "This formula was adopted by M. Chapront-Touze & J. Chapront in the shortened " "version of the ELP 2000-85 lunar theory in their Lunar Tables and " "Programs from 4000 B.C. to A.D. 8000 (1991)." msgstr "" -#: src/core/StelCore.cpp:1470 +#: src/core/StelCore.cpp:1486 #, qt-format msgid "" "This equation was published by F. R. Stephenson and L. V. Morrison in the " @@ -379,42 +454,42 @@ "1990 (%1)." msgstr "" -#: src/core/StelCore.cpp:1473 +#: src/core/StelCore.cpp:1489 #, qt-format msgid "" "F. R. Stephenson published this formula in his book Historical Eclipses " "and Earth's Rotation (%1)." msgstr "" -#: src/core/StelCore.cpp:1476 +#: src/core/StelCore.cpp:1492 msgid "" "From J. Meeus, Astronomical Algorithms (2nd ed., 1998), and widely " "used. Table for 1620..2000, and includes a variant of Chapront, Chapront-" "Touze & Francou (1997) for dates outside 1620..2000." msgstr "" -#: src/core/StelCore.cpp:1479 +#: src/core/StelCore.cpp:1495 #, qt-format msgid "" "The JPL Solar System Dynamics Group of the NASA Jet Propulsion Laboratory " "use this formula in their interactive website %1JPL Horizons%2." msgstr "" -#: src/core/StelCore.cpp:1482 +#: src/core/StelCore.cpp:1498 #, qt-format msgid "" "This polynome was published by J. Meeus and L. Simons in article " "Polynomial approximations to Delta T, 1620-2000 AD (%1)." msgstr "" -#: src/core/StelCore.cpp:1485 +#: src/core/StelCore.cpp:1501 msgid "" "The fourth edition of O. Montenbruck & T. Pfleger's Astronomy on the " "Personal Computer (2000) provides simple 3rd-order polynomial data fits " "for the recent past." msgstr "" -#: src/core/StelCore.cpp:1488 +#: src/core/StelCore.cpp:1504 msgid "" "E. M. Reingold & N. Dershowitz present this polynomial data fit in " "Calendrical Calculations (3rd ed. 2007) and in their " @@ -422,7 +497,7 @@ "Astronomical Algorithms (1991)." msgstr "" -#: src/core/StelCore.cpp:1491 +#: src/core/StelCore.cpp:1507 #, qt-format msgid "" "This important solution was published by L. V. Morrison and F. R. Stephenson " @@ -430,7 +505,7 @@ "calculation of eclipses (%2) with addendum in (%3)." msgstr "" -#: src/core/StelCore.cpp:1494 +#: src/core/StelCore.cpp:1510 #, qt-format msgid "" "From the Length of Day (LOD; as determined by Stephenson & Morrison (%2)), " @@ -439,7 +514,7 @@ "by Stephenson (%2). See for more info %3here%4." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 #, qt-format msgid "" "This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson " @@ -449,45 +524,62 @@ "solar, lunar and planetary ephemeris program SOLEX." msgstr "" -#: src/core/StelCore.cpp:1497 +#: src/core/StelCore.cpp:1513 msgid "Used by default." msgstr "" -#: src/core/StelCore.cpp:1500 +#: src/core/StelCore.cpp:1516 +#, qt-format +msgid "" +"This solution by B. Banjevic, based on Stephenson & Morrison (1984), was " +"published in article Ancient eclipses and dating the fall of " +"Babylon (%1)." +msgstr "" + +#: src/core/StelCore.cpp:1519 +#, qt-format +msgid "" +"This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & " +"Simons (2000), was published in article Error Minimization of Polynomial " +"Approximation of DeltaT (%1) and revisited by Sana Islam in 2013." +msgstr "" + +#: src/core/StelCore.cpp:1522 #, qt-format msgid "" "This is a quadratic formula for calculation of %1T with coefficients defined " "by the user." msgstr "" -#: src/core/StelCore.cpp:1503 src/core/SimbadSearcher.cpp:132 +#: src/core/StelCore.cpp:1525 src/core/SimbadSearcher.cpp:132 msgid "Error" msgstr "" -#: src/core/StelCore.cpp:1552 +#: src/core/StelCore.cpp:1574 msgid "with meaningless values outside this range" msgstr "" -#: src/core/StelCore.cpp:1578 +#: src/core/StelCore.cpp:1600 msgid "" "with a mean error of less than one second, max. error 1.9s, and meaningless " "values outside this range" msgstr "" -#: src/core/StelCore.cpp:1602 src/core/StelCore.cpp:1607 +#: src/core/StelCore.cpp:1622 src/core/StelCore.cpp:1627 +#: src/core/StelCore.cpp:1654 src/core/StelCore.cpp:1659 msgid "with zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1612 +#: src/core/StelCore.cpp:1632 msgid "with a typical 1-second accuracy and zero values outside this range" msgstr "" -#: src/core/StelCore.cpp:1639 +#: src/core/StelCore.cpp:1669 #, qt-format msgid "Valid range of usage: between years %1 and %2, %3." msgstr "" -#: src/core/StelCore.cpp:1641 +#: src/core/StelCore.cpp:1671 #, qt-format msgid "Valid range of usage: between years %1 and %2." msgstr "" @@ -635,74 +727,75 @@ msgid "Found" msgstr "" -#: src/gui/ConfigurationDialog.cpp:435 src/gui/ConfigurationDialog.cpp:437 +#: src/gui/ConfigurationDialog.cpp:437 src/gui/ConfigurationDialog.cpp:439 msgid "Select screenshot directory" msgstr "" -#: src/gui/ConfigurationDialog.cpp:657 +#: src/gui/ConfigurationDialog.cpp:666 #, qt-format msgid "Startup FOV: %1%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:665 +#: src/gui/ConfigurationDialog.cpp:674 #, qt-format msgid "Startup direction of view Az/Alt: %1/%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:707 -#: plugins/Oculars/src/gui/OcularDialog.cpp:491 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:288 +#: src/gui/ConfigurationDialog.cpp:717 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:379 msgid "Authors" msgstr "" -#: src/gui/ConfigurationDialog.cpp:708 src/gui/ViewDialog.cpp:442 +#: src/gui/ConfigurationDialog.cpp:718 src/gui/ViewDialog.cpp:454 msgid "Contact" msgstr "" -#: src/gui/ConfigurationDialog.cpp:791 +#: src/gui/ConfigurationDialog.cpp:801 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:108 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:110 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:110 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:112 +#: plugins/Novae/src/gui/NovaeDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:119 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:99 msgid "Author" msgstr "" -#: src/gui/ConfigurationDialog.cpp:795 +#: src/gui/ConfigurationDialog.cpp:805 msgid "License" msgstr "" -#: src/gui/ConfigurationDialog.cpp:819 +#: src/gui/ConfigurationDialog.cpp:829 msgid "Running script: " msgstr "" -#: src/gui/ConfigurationDialog.cpp:826 +#: src/gui/ConfigurationDialog.cpp:836 msgid "Running script: [none]" msgstr "" -#: src/gui/ConfigurationDialog.cpp:889 +#: src/gui/ConfigurationDialog.cpp:901 msgid "" "Finished downloading new star catalogs!\n" "Restart Stellarium to display them." msgstr "" -#: src/gui/ConfigurationDialog.cpp:893 +#: src/gui/ConfigurationDialog.cpp:905 msgid "All available star catalogs have been installed." msgstr "" -#: src/gui/ConfigurationDialog.cpp:898 +#: src/gui/ConfigurationDialog.cpp:910 #, qt-format msgid "Get catalog %1 of %2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:905 +#: src/gui/ConfigurationDialog.cpp:917 #, qt-format msgid "" "Downloading %1...\n" "(You can close this window.)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:912 +#: src/gui/ConfigurationDialog.cpp:924 #, qt-format msgid "" "Download size: %1MB\n" @@ -710,18 +803,18 @@ "Magnitude range: %3 - %4" msgstr "" -#: src/gui/ConfigurationDialog.cpp:955 src/gui/ConfigurationDialog.cpp:991 +#: src/gui/ConfigurationDialog.cpp:967 src/gui/ConfigurationDialog.cpp:1003 #, qt-format msgid "" "Error downloading %1:\n" "%2" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1043 +#: src/gui/ConfigurationDialog.cpp:1055 msgid "Verifying file integrity..." msgstr "" -#: src/gui/ConfigurationDialog.cpp:1047 +#: src/gui/ConfigurationDialog.cpp:1059 #, qt-format msgid "" "Error downloading %1:\n" @@ -729,115 +822,123 @@ msgstr "" #. TRANSLATORS: Full phrase is "Algorithm of DeltaT" -#: src/gui/ConfigurationDialog.cpp:1120 +#: src/gui/ConfigurationDialog.cpp:1132 msgid "Algorithm of" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1131 +#: src/gui/ConfigurationDialog.cpp:1143 msgid "Without correction" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1132 +#: src/gui/ConfigurationDialog.cpp:1144 msgid "Schoch (1931)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1133 +#: src/gui/ConfigurationDialog.cpp:1145 msgid "Clemence (1948)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1134 +#: src/gui/ConfigurationDialog.cpp:1146 msgid "IAU (1952)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1135 +#: src/gui/ConfigurationDialog.cpp:1147 msgid "Astronomical Ephemeris (1960)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1136 +#: src/gui/ConfigurationDialog.cpp:1148 msgid "Tuckerman (1962, 1964) & Goldstine (1973)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1137 +#: src/gui/ConfigurationDialog.cpp:1149 msgid "Muller & Stephenson (1975)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1138 +#: src/gui/ConfigurationDialog.cpp:1150 msgid "Stephenson (1978)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1139 +#: src/gui/ConfigurationDialog.cpp:1151 msgid "Schmadel & Zech (1979)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1140 +#: src/gui/ConfigurationDialog.cpp:1152 msgid "Morrison & Stephenson (1982)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1141 +#: src/gui/ConfigurationDialog.cpp:1153 msgid "Stephenson & Morrison (1984)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1142 +#: src/gui/ConfigurationDialog.cpp:1154 msgid "Stephenson & Houlden (1986)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1143 +#: src/gui/ConfigurationDialog.cpp:1155 msgid "Espenak (1987, 1989)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1144 +#: src/gui/ConfigurationDialog.cpp:1156 msgid "Borkowski (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1145 +#: src/gui/ConfigurationDialog.cpp:1157 msgid "Schmadel & Zech (1988)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1146 +#: src/gui/ConfigurationDialog.cpp:1158 msgid "Chapront-Touze & Chapront (1991)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1147 +#: src/gui/ConfigurationDialog.cpp:1159 msgid "Stephenson & Morrison (1995)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1148 +#: src/gui/ConfigurationDialog.cpp:1160 msgid "Stephenson (1997)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1150 +#: src/gui/ConfigurationDialog.cpp:1162 msgid "Meeus (1998) (with Chapront, Chapront-Touze & Francou (1997))" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1151 +#: src/gui/ConfigurationDialog.cpp:1163 msgid "JPL Horizons" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1152 +#: src/gui/ConfigurationDialog.cpp:1164 msgid "Meeus & Simons (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1153 +#: src/gui/ConfigurationDialog.cpp:1165 msgid "Montenbruck & Pfleger (2000)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1154 +#: src/gui/ConfigurationDialog.cpp:1166 msgid "Reingold & Dershowitz (2002, 2007)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1155 +#: src/gui/ConfigurationDialog.cpp:1167 msgid "Morrison & Stephenson (2004, 2005)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1157 +#: src/gui/ConfigurationDialog.cpp:1169 msgid "Espenak & Meeus (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1158 +#: src/gui/ConfigurationDialog.cpp:1170 msgid "Reijs (2006)" msgstr "" -#: src/gui/ConfigurationDialog.cpp:1159 +#: src/gui/ConfigurationDialog.cpp:1171 +msgid "Banjevic (2006)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1172 +msgid "Islam, Sadiq & Qureshi (2008, 2013)" +msgstr "" + +#: src/gui/ConfigurationDialog.cpp:1173 #, qt-format msgid "Custom equation of %1T" msgstr "" @@ -996,49 +1097,53 @@ msgid "OSX Developer: %1" msgstr "" -#: src/gui/StelGui.cpp:178 src/translations.h:672 +#: src/gui/StelGui.cpp:178 src/translations.h:692 msgid "Script console window" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/gui/StelGui.cpp:178 src/translations.h:667 +#: src/gui/StelGui.cpp:178 src/translations.h:687 msgid "Windows" msgstr "" -#: src/gui/StelGuiItems.cpp:329 src/gui/StelGuiItems.cpp:752 +#: src/gui/StelGuiItems.cpp:333 src/gui/StelGuiItems.cpp:756 msgid "Space" msgstr "" -#: src/gui/StelGuiItems.cpp:621 +#: src/gui/StelGuiItems.cpp:625 #, no-c-format, qt-format msgid "%1m" msgstr "" -#: src/gui/ViewDialog.cpp:503 +#: src/gui/ViewDialog.cpp:515 msgid "No description" msgstr "" -#: src/gui/ViewDialog.cpp:616 +#: src/gui/ViewDialog.cpp:631 msgid "No shooting stars" msgstr "" -#: src/gui/ViewDialog.cpp:619 +#: src/gui/ViewDialog.cpp:634 msgid "Normal rate" msgstr "" -#: src/gui/ViewDialog.cpp:622 +#: src/gui/ViewDialog.cpp:637 msgid "Standard Perseids rate" msgstr "" -#: src/gui/ViewDialog.cpp:625 +#: src/gui/ViewDialog.cpp:640 +msgid "Meteor storm rate" +msgstr "" + +#: src/gui/ViewDialog.cpp:643 msgid "Exceptional Leonid rate" msgstr "" -#: src/gui/ViewDialog.cpp:628 +#: src/gui/ViewDialog.cpp:646 msgid "Highest rate ever (1966 Leonids)" msgstr "" -#: src/gui/LocationDialog.cpp:410 +#: src/gui/LocationDialog.cpp:427 msgid "New Location" msgstr "" @@ -1141,19 +1246,19 @@ msgid "starchart" msgstr "" -#: src/gui/SearchDialog.cpp:361 +#: src/gui/SearchDialog.cpp:376 msgid "Simbad Lookup Error" msgstr "" -#: src/gui/SearchDialog.cpp:369 +#: src/gui/SearchDialog.cpp:384 msgid "Simbad Lookup" msgstr "" -#: src/gui/SearchDialog.cpp:537 +#: src/gui/SearchDialog.cpp:552 msgid "University of Strasbourg (France)" msgstr "" -#: src/gui/SearchDialog.cpp:538 +#: src/gui/SearchDialog.cpp:553 msgid "Harvard University (USA)" msgstr "" @@ -1169,30 +1274,36 @@ msgid "Alternative shortcut" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:126 +#: src/gui/CustomDeltaTEquationDialog.cpp:134 #, qt-format msgid "Custom equation for %1T" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:127 +#: src/gui/CustomDeltaTEquationDialog.cpp:135 #, qt-format msgid "A typical equation for calculation of %1T looks like:" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "where" msgstr "" -#: src/gui/CustomDeltaTEquationDialog.cpp:129 +#: src/gui/CustomDeltaTEquationDialog.cpp:137 msgid "year" msgstr "" -#: src/main.cpp:367 +#: src/main.cpp:373 msgid "This system does not support OpenGL." msgstr "" -#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:211 +#: src/main.cpp:381 +msgid "" +"Your platform does not support minimal required OpenGL 1.2. Please upgrade " +"drivers for graphics card." +msgstr "" + +#: src/translations.h:33 plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 msgid "Sun" msgstr "" @@ -1209,12 +1320,12 @@ msgstr "" #. TRANSLATORS: Name of landscape and Earth's satellite -#: src/translations.h:37 src/translations.h:189 +#: src/translations.h:37 src/translations.h:190 msgid "Moon" msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:38 src/translations.h:197 +#: src/translations.h:38 src/translations.h:198 msgid "Mars" msgstr "" @@ -1312,7 +1423,7 @@ msgstr "" #. TRANSLATORS: Name of landscape and planet -#: src/translations.h:62 src/translations.h:199 +#: src/translations.h:62 src/translations.h:200 msgid "Saturn" msgstr "" @@ -1610,239 +1721,268 @@ msgstr "" #: src/translations.h:170 -msgid "Korean" +msgid "Indian Vedic" msgstr "" #: src/translations.h:171 -msgid "Lakota" +msgid "Korean" msgstr "" #: src/translations.h:172 -msgid "Maori" +msgid "Lakota" msgstr "" #: src/translations.h:173 -msgid "Navajo" +msgid "Maori" msgstr "" #: src/translations.h:174 -msgid "Norse" +msgid "Navajo" msgstr "" #: src/translations.h:175 -msgid "Polynesian" +msgid "Norse" msgstr "" #: src/translations.h:176 -msgid "Sami" +msgid "Polynesian" msgstr "" #: src/translations.h:177 -msgid "Tupi-Guarani" +msgid "Sami" msgstr "" #: src/translations.h:178 -msgid "Tongan" +msgid "Tupi-Guarani" msgstr "" #: src/translations.h:179 +msgid "Tongan" +msgstr "" + +#: src/translations.h:180 msgid "Western" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:185 +#: src/translations.h:186 msgid "Guereins" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:187 +#: src/translations.h:188 msgid "Trees" msgstr "" #. TRANSLATORS: Landscape name: Hurricane Ridge -#: src/translations.h:191 +#: src/translations.h:192 msgid "Hurricane" msgstr "" #. TRANSLATORS: Name of landscape -#: src/translations.h:193 +#: src/translations.h:194 msgid "Ocean" msgstr "" #. TRANSLATORS: Landscape name: Garching bei Munchen -#: src/translations.h:195 +#: src/translations.h:196 msgid "Garching" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:205 +#: src/translations.h:206 msgid "Landscape Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:207 +#: src/translations.h:208 msgid "Partial Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:209 +#: src/translations.h:210 msgid "Total Lunar Eclipse" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:211 +#: src/translations.h:212 msgid "Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:213 +#: src/translations.h:214 msgid "Solar Eclipse 2009" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:215 +#: src/translations.h:216 msgid "Startup Script" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:217 +#: src/translations.h:218 msgid "Zodiac" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:219 +#: src/translations.h:220 msgid "Mercury Triple Sunrise and Sunset" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:221 +#: src/translations.h:222 msgid "Double eclipse from Deimos in 2017" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:223 +#: src/translations.h:224 msgid "Double eclipse from Deimos in 2031" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:225 +#: src/translations.h:226 msgid "Eclipse from Olympus Mons Jan 10 2068" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:227 +#: src/translations.h:228 msgid "Occultation of Earth and Jupiter 2048" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:229 +#: src/translations.h:230 msgid "3 Transits and 2 Eclipses from Deimos 2027" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:231 +#: src/translations.h:232 msgid "Solar System Screensaver" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:233 +#: src/translations.h:234 msgid "Constellations Tour" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:235 +#: src/translations.h:236 msgid "Sun from different planets" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:237 +#: src/translations.h:238 msgid "Earth best views from other bodies" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:239 +#: src/translations.h:240 msgid "Transit of Venus" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:241 +#: src/translations.h:242 msgid "Analemma" msgstr "" #. TRANSLATORS: Name of script -#: src/translations.h:243 +#: src/translations.h:244 msgid "Sky Culture Tour" msgstr "" -#. TRANSLATORS: Description of the landscape tour script. +#. TRANSLATORS: Name and description of script +#: src/translations.h:246 +msgid "Earth Events from Mercury" +msgstr "" + +#. TRANSLATORS: Name and description of script +#: src/translations.h:248 +msgid "Earth Events from Venus" +msgstr "" + +#. TRANSLATORS: Name and description of script #: src/translations.h:250 +msgid "Earth Events from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:252 +msgid "Earth Greatest Elongations and Brilliancies from Mars" +msgstr "" + +#. TRANSLATORS: Name of script +#: src/translations.h:254 +msgid "Earth and Mars Greatest Elongations from Jupiter" +msgstr "" + +#. TRANSLATORS: Description of the landscape tour script. +#: src/translations.h:260 msgid "Look around each installed landscape." msgstr "" #. TRANSLATORS: Description of the sky culture tour script. -#: src/translations.h:252 +#: src/translations.h:262 msgid "Look at each installed sky culture." msgstr "" -#: src/translations.h:253 +#: src/translations.h:263 msgid "Script to demonstrate a partial lunar eclipse." msgstr "" -#: src/translations.h:254 +#: src/translations.h:264 msgid "Script to demonstrate a total lunar eclipse." msgstr "" -#: src/translations.h:255 +#: src/translations.h:265 msgid "A slow, infinite tour of the sky, looking at random objects." msgstr "" -#: src/translations.h:256 +#: src/translations.h:266 msgid "" "Script to demonstrate a total solar eclipse which has happened in 2009 " "(location=Rangpur, Bangladesh)." msgstr "" -#: src/translations.h:257 +#: src/translations.h:267 msgid "Script which runs automatically at startup" msgstr "" -#: src/translations.h:258 +#: src/translations.h:268 msgid "" "This script displays the constellations of the Zodiac. That means the " "constellations which lie along the line which the Sun traces across the " "celestial sphere over the course of a year." msgstr "" -#: src/translations.h:259 +#: src/translations.h:269 msgid "" "Due to the quirks in Mercury's orbit and rotation at certain spots the sun " "will rise & set 3 different times in one Mercury day." msgstr "" -#: src/translations.h:260 +#: src/translations.h:270 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Scorpio and Sagittarius on April 26, 2017." msgstr "" -#: src/translations.h:261 +#: src/translations.h:271 msgid "" "Just before Mars eclipses the sun, Phobos pops out from behind and eclipses " "it first. Takes place between Taurus and Gemini on July 23, 2031." msgstr "" -#: src/translations.h:262 +#: src/translations.h:272 msgid "Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068." msgstr "" -#: src/translations.h:263 +#: src/translations.h:273 msgid "" "Phobos occultations of Earth are common, as are occultations of Jupiter. But " "occultations of both on the same day are very rare. Here's one that takes " "place 1/23/2048. In real speed." msgstr "" -#: src/translations.h:264 +#: src/translations.h:274 msgid "" "Phobos races ahead of Mars and transits the sun, passes through it and then " "retrogrades back towards the sun and just partially transits it again (only " @@ -1852,1502 +1992,1538 @@ "light up later." msgstr "" -#: src/translations.h:265 +#: src/translations.h:275 msgid "" -"Screensaver of various happenings in the Solar System. 171 events in all!" +"Screensaver of various happenings in the Solar System. 187 events in all!" msgstr "" -#: src/translations.h:266 +#: src/translations.h:276 msgid "A tour of the western constellations." msgstr "" -#: src/translations.h:267 +#: src/translations.h:277 msgid "Look at the Sun from big planets of Solar System and Pluto." msgstr "" -#: src/translations.h:268 +#: src/translations.h:278 msgid "" "Best views of Earth from other Solar System bodies in the 21st Century." msgstr "" -#: src/translations.h:269 +#: src/translations.h:279 msgid "Transit of Venus as seen from Sydney Australia, 6th June 2012." msgstr "" -#: src/translations.h:270 +#: src/translations.h:280 msgid "" "A demonstration of the analemma - the path of the Sun across the sky during " "the year." msgstr "" -#: src/translations.h:271 +#: src/translations.h:281 msgid "" "Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae " "plugin has to be enabled." msgstr "" -#: src/translations.h:276 +#: src/translations.h:282 +msgid "Earth Greatest Elongations and Brilliancies from Mars 2000-3000" +msgstr "" + +#: src/translations.h:283 +msgid "Earth Greatest Elongations from Jupiter 2000-3000" +msgstr "" + +#: src/translations.h:287 msgid "Andorra" msgstr "" -#: src/translations.h:277 +#: src/translations.h:288 msgid "United Arab Emirates" msgstr "" -#: src/translations.h:278 +#: src/translations.h:289 msgid "Afghanistan" msgstr "" -#: src/translations.h:279 +#: src/translations.h:290 msgid "Antigua and Barbuda" msgstr "" -#: src/translations.h:280 +#: src/translations.h:291 msgid "Anguilla" msgstr "" -#: src/translations.h:281 +#: src/translations.h:292 msgid "Albania" msgstr "" -#: src/translations.h:282 +#: src/translations.h:293 msgid "Armenia" msgstr "" -#: src/translations.h:283 +#: src/translations.h:294 msgid "Netherlands Antilles" msgstr "" -#: src/translations.h:284 +#: src/translations.h:295 msgid "Angola" msgstr "" -#: src/translations.h:285 +#: src/translations.h:296 msgid "Antarctica" msgstr "" -#: src/translations.h:286 +#: src/translations.h:297 msgid "Argentina" msgstr "" -#: src/translations.h:287 +#: src/translations.h:298 msgid "American Samoa" msgstr "" -#: src/translations.h:288 +#: src/translations.h:299 msgid "Austria" msgstr "" -#: src/translations.h:289 +#: src/translations.h:300 msgid "Australia" msgstr "" -#: src/translations.h:290 +#: src/translations.h:301 msgid "Aruba" msgstr "" -#: src/translations.h:291 +#: src/translations.h:302 msgid "Azerbaijan" msgstr "" -#: src/translations.h:292 +#: src/translations.h:303 msgid "Bosnia and Herzegowina" msgstr "" -#: src/translations.h:293 +#: src/translations.h:304 msgid "Barbados" msgstr "" -#: src/translations.h:294 +#: src/translations.h:305 msgid "Bangladesh" msgstr "" -#: src/translations.h:295 +#: src/translations.h:306 msgid "Belgium" msgstr "" -#: src/translations.h:296 +#: src/translations.h:307 msgid "Burkina Faso" msgstr "" -#: src/translations.h:297 +#: src/translations.h:308 msgid "Bulgaria" msgstr "" -#: src/translations.h:298 +#: src/translations.h:309 msgid "Bahrain" msgstr "" -#: src/translations.h:299 +#: src/translations.h:310 msgid "Burundi" msgstr "" -#: src/translations.h:300 +#: src/translations.h:311 msgid "Benin" msgstr "" -#: src/translations.h:301 +#: src/translations.h:312 msgid "Bermuda" msgstr "" -#: src/translations.h:302 +#: src/translations.h:313 msgid "Brunei Darussalam" msgstr "" -#: src/translations.h:303 +#: src/translations.h:314 msgid "Bolivia" msgstr "" -#: src/translations.h:304 +#: src/translations.h:315 msgid "Brazil" msgstr "" -#: src/translations.h:305 +#: src/translations.h:316 msgid "Bahamas" msgstr "" -#: src/translations.h:306 +#: src/translations.h:317 msgid "Bhutan" msgstr "" -#: src/translations.h:307 +#: src/translations.h:318 msgid "Bouvet Island" msgstr "" -#: src/translations.h:308 +#: src/translations.h:319 msgid "Botswana" msgstr "" -#: src/translations.h:309 +#: src/translations.h:320 msgid "Belarus" msgstr "" -#: src/translations.h:310 +#: src/translations.h:321 msgid "Belize" msgstr "" -#: src/translations.h:311 +#: src/translations.h:322 msgid "Canada" msgstr "" -#: src/translations.h:312 +#: src/translations.h:323 msgid "Cocos Islands" msgstr "" -#: src/translations.h:313 +#: src/translations.h:324 msgid "Democratic Republic of the Congo" msgstr "" -#: src/translations.h:314 +#: src/translations.h:325 msgid "Central African Republic" msgstr "" -#: src/translations.h:315 +#: src/translations.h:326 msgid "Republic of the Congo" msgstr "" -#: src/translations.h:316 +#: src/translations.h:327 msgid "Switzerland" msgstr "" -#: src/translations.h:317 +#: src/translations.h:328 msgid "Cote d'Ivoire" msgstr "" -#: src/translations.h:318 +#: src/translations.h:329 msgid "Cook Islands" msgstr "" -#: src/translations.h:319 +#: src/translations.h:330 msgid "Chile" msgstr "" -#: src/translations.h:320 +#: src/translations.h:331 msgid "Cameroon" msgstr "" -#: src/translations.h:321 +#: src/translations.h:332 msgid "China" msgstr "" -#: src/translations.h:322 +#: src/translations.h:333 msgid "Colombia" msgstr "" -#: src/translations.h:323 +#: src/translations.h:334 msgid "Costa Rica" msgstr "" -#: src/translations.h:324 +#: src/translations.h:335 msgid "Serbia and Montenegro" msgstr "" -#: src/translations.h:325 +#: src/translations.h:336 msgid "Cuba" msgstr "" -#: src/translations.h:326 +#: src/translations.h:337 msgid "Cape Verde" msgstr "" -#: src/translations.h:327 +#: src/translations.h:338 msgid "Christmas Island" msgstr "" -#: src/translations.h:328 +#: src/translations.h:339 msgid "Cyprus" msgstr "" -#: src/translations.h:329 +#: src/translations.h:340 msgid "Czech Republic" msgstr "" -#: src/translations.h:330 +#: src/translations.h:341 msgid "Germany" msgstr "" -#: src/translations.h:331 +#: src/translations.h:342 msgid "Djibouti" msgstr "" -#: src/translations.h:332 +#: src/translations.h:343 msgid "Denmark" msgstr "" -#: src/translations.h:333 +#: src/translations.h:344 msgid "Dominica" msgstr "" -#: src/translations.h:334 +#: src/translations.h:345 msgid "Dominican Republic" msgstr "" -#: src/translations.h:335 +#: src/translations.h:346 msgid "Algeria" msgstr "" -#: src/translations.h:336 +#: src/translations.h:347 msgid "Ecuador" msgstr "" -#: src/translations.h:337 +#: src/translations.h:348 msgid "Estonia" msgstr "" -#: src/translations.h:338 +#: src/translations.h:349 msgid "Egypt" msgstr "" -#: src/translations.h:339 +#: src/translations.h:350 msgid "Western Sahara" msgstr "" -#: src/translations.h:340 +#: src/translations.h:351 msgid "Eritrea" msgstr "" -#: src/translations.h:341 +#: src/translations.h:352 msgid "Spain" msgstr "" -#: src/translations.h:342 +#: src/translations.h:353 msgid "Ethiopia" msgstr "" -#: src/translations.h:343 +#: src/translations.h:354 msgid "Finland" msgstr "" -#: src/translations.h:344 +#: src/translations.h:355 msgid "Fiji" msgstr "" -#: src/translations.h:345 +#: src/translations.h:356 msgid "Falkland Islands" msgstr "" -#: src/translations.h:346 +#: src/translations.h:357 msgid "Micronesia" msgstr "" -#: src/translations.h:347 +#: src/translations.h:358 msgid "Faroe Islands" msgstr "" -#: src/translations.h:348 +#: src/translations.h:359 msgid "France" msgstr "" -#: src/translations.h:349 +#: src/translations.h:360 msgid "Gabon" msgstr "" -#: src/translations.h:350 +#: src/translations.h:361 msgid "United Kingdom" msgstr "" -#: src/translations.h:351 +#: src/translations.h:362 msgid "Grenada" msgstr "" -#: src/translations.h:352 +#: src/translations.h:363 msgid "Georgia" msgstr "" -#: src/translations.h:353 +#: src/translations.h:364 msgid "French Guiana" msgstr "" -#: src/translations.h:354 +#: src/translations.h:365 msgid "Ghana" msgstr "" -#: src/translations.h:355 +#: src/translations.h:366 msgid "Gibraltar" msgstr "" -#: src/translations.h:356 +#: src/translations.h:367 msgid "Greenland" msgstr "" -#: src/translations.h:357 +#: src/translations.h:368 msgid "Gambia" msgstr "" -#: src/translations.h:358 +#: src/translations.h:369 msgid "Guinea" msgstr "" -#: src/translations.h:359 +#: src/translations.h:370 msgid "Guadeloupe" msgstr "" -#: src/translations.h:360 +#: src/translations.h:371 msgid "Equatorial Guinea" msgstr "" -#: src/translations.h:361 +#: src/translations.h:372 msgid "Greece" msgstr "" -#: src/translations.h:362 +#: src/translations.h:373 msgid "South Georgia and the South Sandwich Islands" msgstr "" -#: src/translations.h:363 +#: src/translations.h:374 msgid "Guatemala" msgstr "" -#: src/translations.h:364 +#: src/translations.h:375 msgid "Guam" msgstr "" -#: src/translations.h:365 +#: src/translations.h:376 msgid "Guinea-Bissau" msgstr "" -#: src/translations.h:366 +#: src/translations.h:377 msgid "Guyana" msgstr "" -#: src/translations.h:367 +#: src/translations.h:378 msgid "Hong Kong" msgstr "" -#: src/translations.h:368 +#: src/translations.h:379 msgid "Heard Island and McDonald Islands" msgstr "" -#: src/translations.h:369 +#: src/translations.h:380 msgid "Honduras" msgstr "" -#: src/translations.h:370 +#: src/translations.h:381 msgid "Croatia" msgstr "" -#: src/translations.h:371 +#: src/translations.h:382 msgid "Haiti" msgstr "" -#: src/translations.h:372 +#: src/translations.h:383 msgid "Hungary" msgstr "" -#: src/translations.h:373 +#: src/translations.h:384 msgid "Indonesia" msgstr "" -#: src/translations.h:374 +#: src/translations.h:385 msgid "Ireland" msgstr "" -#: src/translations.h:375 +#: src/translations.h:386 msgid "Israel" msgstr "" -#: src/translations.h:376 +#: src/translations.h:387 msgid "India" msgstr "" -#: src/translations.h:377 +#: src/translations.h:388 msgid "British Indian Ocean Territory" msgstr "" -#: src/translations.h:378 +#: src/translations.h:389 msgid "Iraq" msgstr "" -#: src/translations.h:379 +#: src/translations.h:390 msgid "Iran" msgstr "" -#: src/translations.h:380 +#: src/translations.h:391 msgid "Iceland" msgstr "" -#: src/translations.h:381 +#: src/translations.h:392 msgid "Italy" msgstr "" -#: src/translations.h:382 +#: src/translations.h:393 msgid "Jamaica" msgstr "" -#: src/translations.h:383 +#: src/translations.h:394 msgid "Jordan" msgstr "" -#: src/translations.h:384 +#: src/translations.h:395 msgid "Japan" msgstr "" -#: src/translations.h:385 +#: src/translations.h:396 msgid "Kenya" msgstr "" -#: src/translations.h:386 +#: src/translations.h:397 msgid "Kyrgyzstan" msgstr "" -#: src/translations.h:387 +#: src/translations.h:398 msgid "Cambodia" msgstr "" -#: src/translations.h:388 +#: src/translations.h:399 msgid "Kiribati" msgstr "" -#: src/translations.h:389 +#: src/translations.h:400 msgid "Comoros" msgstr "" -#: src/translations.h:390 +#: src/translations.h:401 msgid "Saint Kitts and Nevis" msgstr "" -#: src/translations.h:391 +#: src/translations.h:402 msgid "Democratic People's Republic of Korea" msgstr "" -#: src/translations.h:392 +#: src/translations.h:403 msgid "Republic of Korea" msgstr "" -#: src/translations.h:393 +#: src/translations.h:404 msgid "Kuwait" msgstr "" -#: src/translations.h:394 +#: src/translations.h:405 msgid "Cayman Islands" msgstr "" -#: src/translations.h:395 +#: src/translations.h:406 msgid "Kazakhstan" msgstr "" -#: src/translations.h:396 +#: src/translations.h:407 msgid "Lao" msgstr "" -#: src/translations.h:397 +#: src/translations.h:408 msgid "Lebanon" msgstr "" -#: src/translations.h:398 +#: src/translations.h:409 msgid "Saint Lucia" msgstr "" -#: src/translations.h:399 +#: src/translations.h:410 msgid "Liechtenstein" msgstr "" -#: src/translations.h:400 +#: src/translations.h:411 msgid "Sri Lanka" msgstr "" -#: src/translations.h:401 +#: src/translations.h:412 msgid "Liberia" msgstr "" -#: src/translations.h:402 +#: src/translations.h:413 msgid "Lesotho" msgstr "" -#: src/translations.h:403 +#: src/translations.h:414 msgid "Lithuania" msgstr "" -#: src/translations.h:404 +#: src/translations.h:415 msgid "Luxembourg" msgstr "" -#: src/translations.h:405 +#: src/translations.h:416 msgid "Latvia" msgstr "" -#: src/translations.h:406 +#: src/translations.h:417 msgid "Libyan Arab Jamahiriya" msgstr "" -#: src/translations.h:407 +#: src/translations.h:418 msgid "Morocco" msgstr "" -#: src/translations.h:408 +#: src/translations.h:419 msgid "Monaco" msgstr "" -#: src/translations.h:409 +#: src/translations.h:420 msgid "Moldova" msgstr "" -#: src/translations.h:410 +#: src/translations.h:421 msgid "Madagascar" msgstr "" -#: src/translations.h:411 +#: src/translations.h:422 msgid "Marshall Islands" msgstr "" -#: src/translations.h:412 +#: src/translations.h:423 msgid "Macedonia" msgstr "" -#: src/translations.h:413 +#: src/translations.h:424 msgid "Mali" msgstr "" -#: src/translations.h:414 +#: src/translations.h:425 msgid "Myanmar" msgstr "" -#: src/translations.h:415 +#: src/translations.h:426 msgid "Mongolia" msgstr "" -#: src/translations.h:416 +#: src/translations.h:427 msgid "Macau" msgstr "" -#: src/translations.h:417 +#: src/translations.h:428 msgid "Northern Mariana Islands" msgstr "" -#: src/translations.h:418 +#: src/translations.h:429 msgid "Martinique" msgstr "" -#: src/translations.h:419 +#: src/translations.h:430 msgid "Mauritania" msgstr "" -#: src/translations.h:420 +#: src/translations.h:431 msgid "Montserrat" msgstr "" -#: src/translations.h:421 +#: src/translations.h:432 msgid "Malta" msgstr "" -#: src/translations.h:422 +#: src/translations.h:433 msgid "Mauritius" msgstr "" -#: src/translations.h:423 +#: src/translations.h:434 msgid "Maldives" msgstr "" -#: src/translations.h:424 +#: src/translations.h:435 msgid "Malawi" msgstr "" -#: src/translations.h:425 +#: src/translations.h:436 msgid "Mexico" msgstr "" -#: src/translations.h:426 +#: src/translations.h:437 msgid "Malaysia" msgstr "" -#: src/translations.h:427 +#: src/translations.h:438 msgid "Mozambique" msgstr "" -#: src/translations.h:428 +#: src/translations.h:439 msgid "Namibia" msgstr "" -#: src/translations.h:429 +#: src/translations.h:440 msgid "New Caledonia" msgstr "" -#: src/translations.h:430 +#: src/translations.h:441 msgid "Niger" msgstr "" -#: src/translations.h:431 +#: src/translations.h:442 msgid "Norfolk Island" msgstr "" -#: src/translations.h:432 +#: src/translations.h:443 msgid "Nigeria" msgstr "" -#: src/translations.h:433 +#: src/translations.h:444 msgid "Nicaragua" msgstr "" -#: src/translations.h:434 +#: src/translations.h:445 msgid "Netherlands" msgstr "" -#: src/translations.h:435 +#: src/translations.h:446 msgid "Norway" msgstr "" -#: src/translations.h:436 +#: src/translations.h:447 msgid "Nepal" msgstr "" -#: src/translations.h:437 +#: src/translations.h:448 msgid "Nauru" msgstr "" -#: src/translations.h:438 +#: src/translations.h:449 msgid "Niue" msgstr "" -#: src/translations.h:439 +#: src/translations.h:450 msgid "New Zealand" msgstr "" -#: src/translations.h:440 +#: src/translations.h:451 msgid "Oman" msgstr "" -#: src/translations.h:441 +#: src/translations.h:452 msgid "Panama" msgstr "" -#: src/translations.h:442 +#: src/translations.h:453 msgid "Peru" msgstr "" -#: src/translations.h:443 +#: src/translations.h:454 msgid "French Polynesia" msgstr "" -#: src/translations.h:444 +#: src/translations.h:455 msgid "Papua New Guinea" msgstr "" -#: src/translations.h:445 +#: src/translations.h:456 msgid "Philippines" msgstr "" -#: src/translations.h:446 +#: src/translations.h:457 msgid "Pakistan" msgstr "" -#: src/translations.h:447 +#: src/translations.h:458 msgid "Poland" msgstr "" -#: src/translations.h:448 +#: src/translations.h:459 msgid "Saint Pierre and Miquelon" msgstr "" -#: src/translations.h:449 +#: src/translations.h:460 msgid "Pitcairn" msgstr "" -#: src/translations.h:450 +#: src/translations.h:461 msgid "Puerto Rico" msgstr "" -#: src/translations.h:451 +#: src/translations.h:462 msgid "Palestinian Territories" msgstr "" -#: src/translations.h:452 +#: src/translations.h:463 msgid "Portugal" msgstr "" -#: src/translations.h:453 +#: src/translations.h:464 msgid "Palau" msgstr "" -#: src/translations.h:454 +#: src/translations.h:465 msgid "Paraguay" msgstr "" -#: src/translations.h:455 +#: src/translations.h:466 msgid "Qatar" msgstr "" -#: src/translations.h:456 +#: src/translations.h:467 msgid "Réunion" msgstr "" -#: src/translations.h:457 +#: src/translations.h:468 msgid "Romania" msgstr "" -#: src/translations.h:458 +#: src/translations.h:469 msgid "Serbia" msgstr "" -#: src/translations.h:459 +#: src/translations.h:470 msgid "Russian Federation" msgstr "" -#: src/translations.h:460 +#: src/translations.h:471 msgid "Rwanda" msgstr "" -#: src/translations.h:461 +#: src/translations.h:472 msgid "Saudi Arabia" msgstr "" -#: src/translations.h:462 +#: src/translations.h:473 msgid "Solomon Islands" msgstr "" -#: src/translations.h:463 +#: src/translations.h:474 msgid "Seychelles" msgstr "" -#: src/translations.h:464 +#: src/translations.h:475 msgid "Sudan" msgstr "" -#: src/translations.h:465 +#: src/translations.h:476 msgid "Sweden" msgstr "" -#: src/translations.h:466 +#: src/translations.h:477 msgid "Singapore" msgstr "" -#: src/translations.h:467 +#: src/translations.h:478 msgid "Saint Helena" msgstr "" -#: src/translations.h:468 +#: src/translations.h:479 msgid "Slovenia" msgstr "" -#: src/translations.h:469 +#: src/translations.h:480 msgid "Svalbard and Jan Mayen" msgstr "" -#: src/translations.h:470 +#: src/translations.h:481 msgid "Slovakia" msgstr "" -#: src/translations.h:471 +#: src/translations.h:482 msgid "Sierra Leone" msgstr "" -#: src/translations.h:472 +#: src/translations.h:483 msgid "San Marino" msgstr "" -#: src/translations.h:473 +#: src/translations.h:484 msgid "Senegal" msgstr "" -#: src/translations.h:474 +#: src/translations.h:485 msgid "Somalia" msgstr "" -#: src/translations.h:475 +#: src/translations.h:486 msgid "Suriname" msgstr "" -#: src/translations.h:476 +#: src/translations.h:487 msgid "Sao Tome and Principe" msgstr "" -#: src/translations.h:477 +#: src/translations.h:488 msgid "El Salvador" msgstr "" -#: src/translations.h:478 +#: src/translations.h:489 msgid "Syrian Arab Republic" msgstr "" -#: src/translations.h:479 +#: src/translations.h:490 msgid "Swaziland" msgstr "" -#: src/translations.h:480 +#: src/translations.h:491 msgid "Turks and Caicos Islands" msgstr "" -#: src/translations.h:481 +#: src/translations.h:492 msgid "Chad" msgstr "" -#: src/translations.h:482 +#: src/translations.h:493 msgid "French Southern Territories" msgstr "" -#: src/translations.h:483 +#: src/translations.h:494 msgid "Togo" msgstr "" -#: src/translations.h:484 +#: src/translations.h:495 msgid "Thailand" msgstr "" -#: src/translations.h:485 +#: src/translations.h:496 msgid "Tajikistan" msgstr "" -#: src/translations.h:486 +#: src/translations.h:497 msgid "Tokelau" msgstr "" -#: src/translations.h:487 +#: src/translations.h:498 msgid "East Timor" msgstr "" -#: src/translations.h:488 +#: src/translations.h:499 msgid "Turkmenistan" msgstr "" -#: src/translations.h:489 +#: src/translations.h:500 msgid "Tunisia" msgstr "" -#: src/translations.h:490 +#: src/translations.h:501 msgid "Tonga" msgstr "" -#: src/translations.h:491 +#: src/translations.h:502 msgid "Turkey" msgstr "" -#: src/translations.h:492 +#: src/translations.h:503 msgid "Trinidad and Tobago" msgstr "" -#: src/translations.h:493 +#: src/translations.h:504 msgid "Tuvalu" msgstr "" -#: src/translations.h:494 +#: src/translations.h:505 msgid "Taiwan" msgstr "" -#: src/translations.h:495 +#: src/translations.h:506 msgid "Tanzania" msgstr "" -#: src/translations.h:496 +#: src/translations.h:507 msgid "Ukraine" msgstr "" -#: src/translations.h:497 +#: src/translations.h:508 msgid "Uganda" msgstr "" -#: src/translations.h:498 +#: src/translations.h:509 msgid "United States Minor Outlying Islands" msgstr "" -#: src/translations.h:499 +#: src/translations.h:510 msgid "United States" msgstr "" -#: src/translations.h:500 +#: src/translations.h:511 msgid "Uruguay" msgstr "" -#: src/translations.h:501 +#: src/translations.h:512 msgid "Uzbekistan" msgstr "" -#: src/translations.h:502 +#: src/translations.h:513 msgid "Vatican City State" msgstr "" -#: src/translations.h:503 +#: src/translations.h:514 msgid "Saint Vincent and the Grenadines" msgstr "" -#: src/translations.h:504 +#: src/translations.h:515 msgid "Venezuela" msgstr "" -#: src/translations.h:505 +#: src/translations.h:516 msgid "British Virgin Islands" msgstr "" -#: src/translations.h:506 +#: src/translations.h:517 msgid "United States Virgin Islands" msgstr "" -#: src/translations.h:507 +#: src/translations.h:518 msgid "Viet Nam" msgstr "" -#: src/translations.h:508 +#: src/translations.h:519 msgid "Vanuatu" msgstr "" -#: src/translations.h:509 +#: src/translations.h:520 msgid "Wallis and Futuna" msgstr "" -#: src/translations.h:510 +#: src/translations.h:521 msgid "Samoa" msgstr "" -#: src/translations.h:511 +#: src/translations.h:522 msgid "Yemen" msgstr "" -#: src/translations.h:512 +#: src/translations.h:523 msgid "Mayotte" msgstr "" -#: src/translations.h:513 +#: src/translations.h:524 msgid "Yugoslavia" msgstr "" -#: src/translations.h:514 +#: src/translations.h:525 msgid "South Africa" msgstr "" -#: src/translations.h:515 +#: src/translations.h:526 msgid "Zambia" msgstr "" -#: src/translations.h:516 +#: src/translations.h:527 msgid "Zimbabwe" msgstr "" #. TRANSLATORS: Keyboard action group name, also used elsewhere. -#: src/translations.h:523 src/ui_dateTimeDialogGui.h:298 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:168 +#: src/translations.h:534 src/ui_dateTimeDialogGui.h:298 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:169 msgid "Date and Time" msgstr "" -#: src/translations.h:524 +#: src/translations.h:535 msgid "Add 1 sidereal day" msgstr "" -#: src/translations.h:525 +#: src/translations.h:536 msgid "Add 1 sidereal month" msgstr "" -#: src/translations.h:526 +#: src/translations.h:537 msgid "Add 1 sidereal week" msgstr "" -#: src/translations.h:527 +#: src/translations.h:538 msgid "Add 1 sidereal year" msgstr "" -#: src/translations.h:528 +#: src/translations.h:539 msgid "Add 1 sidereal century" msgstr "" -#: src/translations.h:529 +#: src/translations.h:540 msgid "Add 1 solar day" msgstr "" -#: src/translations.h:530 +#: src/translations.h:541 msgid "Add 1 solar hour" msgstr "" -#: src/translations.h:531 +#: src/translations.h:542 msgid "Add 1 solar week" msgstr "" -#: src/translations.h:532 +#: src/translations.h:543 msgid "Add 1 synodic month" msgstr "" -#: src/translations.h:533 +#: src/translations.h:544 msgid "Add 1 draconic month" msgstr "" -#: src/translations.h:534 +#: src/translations.h:545 msgid "Add 1 anomalistic month" msgstr "" -#: src/translations.h:535 +#: src/translations.h:546 msgid "Add 1 mean tropical month" msgstr "" -#: src/translations.h:536 +#: src/translations.h:547 msgid "Add 1 draconic year" msgstr "" -#: src/translations.h:537 +#: src/translations.h:548 msgid "Add 1 mean tropical year" msgstr "" -#: src/translations.h:538 +#: src/translations.h:549 msgid "Add 1 mean tropical century" msgstr "" -#: src/translations.h:539 +#: src/translations.h:550 msgid "Slow down the script execution rate" msgstr "" -#: src/translations.h:540 +#: src/translations.h:551 msgid "Decrease time speed" msgstr "" -#: src/translations.h:541 +#: src/translations.h:552 msgid "Decrease time speed (a little)" msgstr "" -#: src/translations.h:542 +#: src/translations.h:553 msgid "Speed up the script execution rate" msgstr "" -#: src/translations.h:543 +#: src/translations.h:554 msgid "Increase time speed" msgstr "" -#: src/translations.h:544 +#: src/translations.h:555 msgid "Increase time speed (a little)" msgstr "" -#: src/translations.h:545 +#: src/translations.h:556 msgid "Pause script execution" msgstr "" -#: src/translations.h:546 +#: src/translations.h:557 msgid "Resume script execution" msgstr "" -#: src/translations.h:547 +#: src/translations.h:558 msgid "Set time to now" msgstr "" -#: src/translations.h:548 +#: src/translations.h:559 msgid "Set the normal script execution rate" msgstr "" -#: src/translations.h:549 +#: src/translations.h:560 msgid "Set normal time rate" msgstr "" -#: src/translations.h:550 +#: src/translations.h:561 msgid "Set time rate to zero" msgstr "" -#: src/translations.h:551 +#: src/translations.h:562 msgid "Stop script execution" msgstr "" -#: src/translations.h:552 +#: src/translations.h:563 msgid "Subtract 1 sidereal day" msgstr "" -#: src/translations.h:553 +#: src/translations.h:564 msgid "Subtract 1 sidereal month" msgstr "" -#: src/translations.h:554 +#: src/translations.h:565 msgid "Subtract 1 sidereal week" msgstr "" -#: src/translations.h:555 +#: src/translations.h:566 msgid "Subtract 1 sidereal year" msgstr "" -#: src/translations.h:556 +#: src/translations.h:567 msgid "Subtract 1 sidereal century" msgstr "" -#: src/translations.h:557 +#: src/translations.h:568 msgid "Subtract 1 solar day" msgstr "" -#: src/translations.h:558 +#: src/translations.h:569 msgid "Subtract 1 solar hour" msgstr "" -#: src/translations.h:559 +#: src/translations.h:570 msgid "Subtract 1 solar week" msgstr "" -#: src/translations.h:560 +#: src/translations.h:571 msgid "Subtract 1 synodic month" msgstr "" -#: src/translations.h:561 +#: src/translations.h:572 msgid "Subtract 1 draconic month" msgstr "" -#: src/translations.h:562 +#: src/translations.h:573 msgid "Subtract 1 anomalistic month" msgstr "" -#: src/translations.h:563 +#: src/translations.h:574 msgid "Subtract 1 mean tropical month" msgstr "" -#: src/translations.h:564 +#: src/translations.h:575 msgid "Subtract 1 draconic year" msgstr "" -#: src/translations.h:565 +#: src/translations.h:576 msgid "Subtract 1 mean tropical year" msgstr "" -#: src/translations.h:566 +#: src/translations.h:577 msgid "Subtract 1 mean tropical century" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:569 +#: src/translations.h:580 msgid "Display Options" msgstr "" -#: src/translations.h:570 +#: src/translations.h:581 msgid "Flip scene horizontally" msgstr "" -#: src/translations.h:571 +#: src/translations.h:582 msgid "Full-screen mode" msgstr "" -#: src/translations.h:572 src/ui_viewDialog.h:1206 +#: src/translations.h:583 src/ui_viewDialog.h:1232 msgid "Atmosphere" msgstr "" -#: src/translations.h:573 src/ui_viewDialog.h:1250 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:322 +#: src/translations.h:584 src/ui_viewDialog.h:1277 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:323 msgid "Azimuthal grid" msgstr "" -#: src/translations.h:574 src/ui_viewDialog.h:1272 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:299 +#: src/translations.h:585 src/ui_viewDialog.h:1299 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:300 msgid "Cardinal points" msgstr "" -#: src/translations.h:575 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:285 +#: src/translations.h:586 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 msgid "Constellation art" msgstr "" -#: src/translations.h:576 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:286 +#: src/translations.h:587 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:287 msgid "Constellation boundaries" msgstr "" -#: src/translations.h:577 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:280 +#: src/translations.h:588 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:281 msgid "Constellation labels" msgstr "" -#: src/translations.h:578 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:275 +#: src/translations.h:589 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:276 msgid "Constellation lines" msgstr "" -#: src/translations.h:579 -msgid "Nebulas background images" +#: src/translations.h:590 +msgid "Deep-sky objects background images" msgstr "" -#: src/translations.h:580 src/ui_viewDialog.h:1249 +#: src/translations.h:591 src/ui_viewDialog.h:1276 msgid "Ecliptic J2000 grid" msgstr "" -#: src/translations.h:581 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:342 +#: src/translations.h:592 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:343 msgid "Ecliptic line" msgstr "" -#: src/translations.h:582 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:337 +#: src/translations.h:593 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:338 msgid "Equator line" msgstr "" -#: src/translations.h:583 src/ui_viewDialog.h:1248 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:327 +#: src/translations.h:594 src/ui_viewDialog.h:1275 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:328 msgid "Equatorial grid" msgstr "" -#: src/translations.h:584 src/ui_viewDialog.h:1247 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:332 +#: src/translations.h:595 src/ui_viewDialog.h:1274 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:333 msgid "Equatorial J2000 grid" msgstr "" -#: src/translations.h:585 +#: src/translations.h:596 msgid "Fog" msgstr "" -#: src/translations.h:586 src/ui_viewDialog.h:1251 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:361 +#: src/translations.h:597 src/ui_viewDialog.h:1278 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:362 msgid "Galactic grid" msgstr "" -#: src/translations.h:587 src/ui_viewDialog.h:1271 +#: src/translations.h:598 src/ui_viewDialog.h:1298 msgid "Galactic plane" msgstr "" -#: src/translations.h:588 +#: src/translations.h:599 msgid "Ground" msgstr "" -#: src/translations.h:589 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:356 +#: src/translations.h:600 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:357 msgid "Horizon line" msgstr "" -#: src/translations.h:590 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:317 +#: src/translations.h:601 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:318 msgid "Meridian line" msgstr "" -#: src/translations.h:591 src/ui_viewDialog.h:1199 src/ui_viewDialog.h:1239 -msgid "Nebulas" +#: src/translations.h:602 +msgid "Deep-sky objects" msgstr "" -#: src/translations.h:592 +#: src/translations.h:603 msgid "Night mode" msgstr "" -#: src/translations.h:593 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:304 +#: src/translations.h:604 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:305 msgid "Planet labels" msgstr "" -#: src/translations.h:594 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:308 +#: src/translations.h:605 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:309 msgid "Planet orbits" msgstr "" -#: src/translations.h:595 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:312 +#: src/translations.h:606 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:313 msgid "Planet trails" msgstr "" -#: src/translations.h:596 src/ui_viewDialog.h:1197 src/ui_viewDialog.h:1213 -#: src/ui_viewDialog.h:1235 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:241 +#: src/translations.h:607 src/ui_viewDialog.h:1216 src/ui_viewDialog.h:1239 +#: src/ui_viewDialog.h:1262 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:242 msgid "Stars" msgstr "" -#: src/translations.h:597 +#: src/translations.h:608 msgid "Stars labels" msgstr "" -#: src/translations.h:598 +#: src/translations.h:609 msgid "Flip scene vertically" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:601 +#: src/translations.h:612 msgid "Miscellaneous" msgstr "" -#: src/translations.h:602 +#: src/translations.h:613 msgid "Auto hide horizontal button bar" msgstr "" -#: src/translations.h:603 +#: src/translations.h:614 msgid "Auto hide vertical button bar" msgstr "" -#: src/translations.h:604 +#: src/translations.h:615 msgid "Go to home" msgstr "" -#: src/translations.h:605 +#: src/translations.h:616 msgid "Quit" msgstr "" -#: src/translations.h:606 +#: src/translations.h:617 msgid "Copy selected object information to clipboard" msgstr "" -#: src/translations.h:607 +#: src/translations.h:618 msgid "Save screenshot" msgstr "" -#: src/translations.h:608 +#: src/translations.h:619 msgid "Switch between equatorial and azimuthal mount" msgstr "" -#: src/translations.h:609 +#: src/translations.h:620 msgid "Toggle visibility of GUI" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:612 +#: src/translations.h:623 msgid "Movement and Selection" msgstr "" -#: src/translations.h:613 +#: src/translations.h:624 msgid "Center on selected object" msgstr "" -#: src/translations.h:614 +#: src/translations.h:625 msgid "Set home planet to selected planet" msgstr "" -#: src/translations.h:615 +#: src/translations.h:626 msgid "Track object" msgstr "" -#: src/translations.h:616 +#: src/translations.h:627 msgid "Zoom in on selected object" msgstr "" -#: src/translations.h:617 +#: src/translations.h:628 msgid "Zoom out" msgstr "" -#: src/translations.h:620 +#: src/translations.h:631 msgid "Angle measure" msgstr "" -#: src/translations.h:623 +#: src/translations.h:634 msgid "Compass marks" msgstr "" -#: src/translations.h:626 +#: src/translations.h:637 msgid "Show exoplanets" msgstr "" -#: src/translations.h:627 +#: src/translations.h:638 msgid "Exoplanets configuration window" msgstr "" -#: src/translations.h:630 +#: src/translations.h:641 msgid "Observability" msgstr "" -#: src/translations.h:631 +#: src/translations.h:642 msgid "Observability configuration window" msgstr "" -#: src/translations.h:634 +#: src/translations.h:645 msgid "Oculars plugin configuration" msgstr "" -#: src/translations.h:635 plugins/Oculars/src/ui_ocularDialog.h:1019 +#: src/translations.h:646 plugins/Oculars/src/ui_ocularDialog.h:1025 msgid "Ocular view" msgstr "" -#: src/translations.h:636 +#: src/translations.h:647 msgid "Show crosshairs" msgstr "" -#: src/translations.h:637 +#: src/translations.h:648 msgid "Oculars popup menu" msgstr "" -#: src/translations.h:638 +#: src/translations.h:649 msgid "Image sensor frame" msgstr "" -#: src/translations.h:639 +#: src/translations.h:650 msgid "Telrad sight" msgstr "" -#: src/translations.h:642 +#: src/translations.h:651 +msgid "Select next telescope" +msgstr "" + +#: src/translations.h:652 +msgid "Select next eyepiece" +msgstr "" + +#: src/translations.h:653 +msgid "Select previous telescope" +msgstr "" + +#: src/translations.h:654 +msgid "Select previous eyepiece" +msgstr "" + +#: src/translations.h:657 +msgid "Show pulsars" +msgstr "" + +#: src/translations.h:658 msgid "Pulsars configuration window" msgstr "" -#: src/translations.h:645 +#: src/translations.h:661 +msgid "Show quasars" +msgstr "" + +#: src/translations.h:662 msgid "Quasars configuration window" msgstr "" -#: src/translations.h:648 +#: src/translations.h:665 msgid "Satellites configuration window" msgstr "" -#: src/translations.h:649 +#: src/translations.h:666 msgid "Satellite hints" msgstr "" -#: src/translations.h:650 +#: src/translations.h:667 msgid "Satellite labels" msgstr "" -#: src/translations.h:653 +#: src/translations.h:670 msgid "Historical Supernovae configuration window" msgstr "" -#: src/translations.h:656 +#: src/translations.h:673 +msgid "Bright Novae configuration window" +msgstr "" + +#: src/translations.h:676 msgid "Move a telescope to a given set of coordinates" msgstr "" -#: src/translations.h:659 +#: src/translations.h:679 msgid "Show renderer statistics" msgstr "" #. TRANSLATORS: Keyboard action group name -#: src/translations.h:662 src/ui_configurationDialog.h:1160 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:448 +#: src/translations.h:682 src/ui_configurationDialog.h:1166 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:449 msgid "Scripts" msgstr "" -#: src/translations.h:663 +#: src/translations.h:683 msgid "Run landscapes script from file" msgstr "" -#: src/translations.h:664 +#: src/translations.h:684 msgid "Show and zoom Moon" msgstr "" -#: src/translations.h:668 +#: src/translations.h:688 msgid "Configuration window" msgstr "" -#: src/translations.h:669 +#: src/translations.h:689 msgid "Date/time window" msgstr "" -#: src/translations.h:670 +#: src/translations.h:690 msgid "Help window" msgstr "" -#: src/translations.h:671 +#: src/translations.h:691 msgid "Location window" msgstr "" -#: src/translations.h:673 +#: src/translations.h:693 msgid "Search window" msgstr "" -#: src/translations.h:674 +#: src/translations.h:694 msgid "Shortcuts window" msgstr "" -#: src/translations.h:675 +#: src/translations.h:695 msgid "Sky and viewing options window" msgstr "" @@ -3373,7 +3549,7 @@ msgstr "" #: src/ui_locationDialogGui.h:389 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:141 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 msgid "Location" msgstr "" @@ -3389,10 +3565,10 @@ msgid "Return to default" msgstr "" -#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1032 -#: plugins/Oculars/src/ui_ocularDialog.h:1041 -#: plugins/Oculars/src/ui_ocularDialog.h:1048 -#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: src/ui_locationDialogGui.h:396 plugins/Oculars/src/ui_ocularDialog.h:1042 +#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1069 msgid "Delete" msgstr "" @@ -3401,7 +3577,7 @@ msgstr "" #: src/ui_locationDialogGui.h:398 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:142 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:143 msgid "Latitude:" msgstr "" @@ -3412,12 +3588,12 @@ msgstr "" #: src/ui_locationDialogGui.h:402 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:145 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:146 msgid "Longitude:" msgstr "" #: src/ui_locationDialogGui.h:406 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:148 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:149 msgid "Altitude:" msgstr "" @@ -3441,363 +3617,407 @@ msgid "Planet:" msgstr "" -#: src/ui_searchDialogGui.h:542 +#: src/ui_searchDialogGui.h:558 msgid "Find Object" msgstr "" -#: src/ui_searchDialogGui.h:543 -msgid "Find Object or Position" +#: src/ui_searchDialogGui.h:559 +msgid "Find Object or Position" +msgstr "" + +#: src/ui_searchDialogGui.h:562 src/ui_searchDialogGui.h:566 +msgid "Use tab key for select of found items" msgstr "" -#: src/ui_searchDialogGui.h:549 +#: src/ui_searchDialogGui.h:571 msgid "iota" msgstr "" -#: src/ui_searchDialogGui.h:552 +#: src/ui_searchDialogGui.h:574 msgid "alpha" msgstr "" -#: src/ui_searchDialogGui.h:555 +#: src/ui_searchDialogGui.h:577 msgid "beta" msgstr "" -#: src/ui_searchDialogGui.h:558 +#: src/ui_searchDialogGui.h:580 msgid "gamma" msgstr "" -#: src/ui_searchDialogGui.h:561 +#: src/ui_searchDialogGui.h:583 msgid "delta" msgstr "" -#: src/ui_searchDialogGui.h:564 +#: src/ui_searchDialogGui.h:586 msgid "epsilon" msgstr "" -#: src/ui_searchDialogGui.h:567 +#: src/ui_searchDialogGui.h:589 msgid "zeta" msgstr "" -#: src/ui_searchDialogGui.h:570 +#: src/ui_searchDialogGui.h:592 msgid "eta" msgstr "" -#: src/ui_searchDialogGui.h:573 +#: src/ui_searchDialogGui.h:595 msgid "theta" msgstr "" -#: src/ui_searchDialogGui.h:576 +#: src/ui_searchDialogGui.h:598 msgid "kappa" msgstr "" -#: src/ui_searchDialogGui.h:579 +#: src/ui_searchDialogGui.h:601 msgid "lambda" msgstr "" -#: src/ui_searchDialogGui.h:582 +#: src/ui_searchDialogGui.h:604 msgid "mu" msgstr "" -#: src/ui_searchDialogGui.h:585 +#: src/ui_searchDialogGui.h:607 msgid "nu" msgstr "" -#: src/ui_searchDialogGui.h:588 +#: src/ui_searchDialogGui.h:610 msgid "xi" msgstr "" -#: src/ui_searchDialogGui.h:591 +#: src/ui_searchDialogGui.h:613 msgid "omicron" msgstr "" -#: src/ui_searchDialogGui.h:594 +#: src/ui_searchDialogGui.h:616 msgid "pi" msgstr "" -#: src/ui_searchDialogGui.h:597 +#: src/ui_searchDialogGui.h:619 msgid "rho" msgstr "" -#: src/ui_searchDialogGui.h:600 +#: src/ui_searchDialogGui.h:622 msgid "sigma" msgstr "" -#: src/ui_searchDialogGui.h:603 +#: src/ui_searchDialogGui.h:625 msgid "tau" msgstr "" -#: src/ui_searchDialogGui.h:606 +#: src/ui_searchDialogGui.h:628 msgid "upsilon" msgstr "" -#: src/ui_searchDialogGui.h:609 +#: src/ui_searchDialogGui.h:631 msgid "phi" msgstr "" -#: src/ui_searchDialogGui.h:612 +#: src/ui_searchDialogGui.h:634 msgid "chi" msgstr "" -#: src/ui_searchDialogGui.h:615 +#: src/ui_searchDialogGui.h:637 msgid "psi" msgstr "" -#: src/ui_searchDialogGui.h:618 +#: src/ui_searchDialogGui.h:640 msgid "omega" msgstr "" -#: src/ui_searchDialogGui.h:620 +#: src/ui_searchDialogGui.h:642 msgid "Greek letters for Bayer designations" msgstr "" -#: src/ui_searchDialogGui.h:621 +#: src/ui_searchDialogGui.h:643 msgid "Object" msgstr "" -#: src/ui_searchDialogGui.h:622 +#: src/ui_searchDialogGui.h:644 msgid "RA/Dec (J2000):" msgstr "" -#: src/ui_searchDialogGui.h:623 +#: src/ui_searchDialogGui.h:645 msgid "Position" msgstr "" -#: src/ui_searchDialogGui.h:624 +#: src/ui_searchDialogGui.h:647 +msgid "Some objects may be found after activation respective plug-ins" +msgstr "" + +#: src/ui_searchDialogGui.h:649 +msgid "names in English" +msgstr "" + +#: src/ui_searchDialogGui.h:650 +msgid "Search in list..." +msgstr "" + +#: src/ui_searchDialogGui.h:651 +#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 +msgid "Lists" +msgstr "" + +#: src/ui_searchDialogGui.h:652 msgid "On-line astronomical database SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:625 +#: src/ui_searchDialogGui.h:653 msgid "Extend search with SIMBAD" msgstr "" -#: src/ui_searchDialogGui.h:626 +#: src/ui_searchDialogGui.h:654 msgid "Server:" msgstr "" -#: src/ui_searchDialogGui.h:627 src/ui_viewDialog.h:1275 -#: src/ui_viewDialog.h:1280 src/ui_viewDialog.h:1282 -#: src/ui_configurationDialog.h:1131 src/ui_configurationDialog.h:1142 -#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 -msgid "Options" -msgstr "" - -#: src/ui_searchDialogGui.h:628 -msgid "names in English" +#: src/ui_searchDialogGui.h:655 +msgid "Search options" msgstr "" -#: src/ui_searchDialogGui.h:629 -msgid "Search in list..." +#: src/ui_searchDialogGui.h:656 +msgid "Use autofill only from the beginning of words" msgstr "" -#: src/ui_searchDialogGui.h:630 -#: plugins/SolarSystemEditor/src/ui_mpcImportWindow.h:526 -msgid "Lists" +#: src/ui_searchDialogGui.h:657 src/ui_viewDialog.h:1302 +#: src/ui_viewDialog.h:1308 src/ui_viewDialog.h:1310 +#: src/ui_configurationDialog.h:1137 src/ui_configurationDialog.h:1148 +#: plugins/TelescopeControl/src/ui_telescopeDialog.h:417 +msgid "Options" msgstr "" -#: src/ui_viewDialog.h:1181 +#: src/ui_viewDialog.h:1200 msgid "View" msgstr "" -#: src/ui_viewDialog.h:1187 +#: src/ui_viewDialog.h:1206 msgid "Sky" msgstr "" -#: src/ui_viewDialog.h:1189 +#: src/ui_viewDialog.h:1208 msgid "Markings" msgstr "" -#: src/ui_viewDialog.h:1191 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:402 +#: src/ui_viewDialog.h:1210 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:403 msgid "Landscape" msgstr "" -#: src/ui_viewDialog.h:1193 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:224 +#: src/ui_viewDialog.h:1212 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:225 msgid "Starlore" msgstr "" -#: src/ui_viewDialog.h:1196 +#: src/ui_viewDialog.h:1215 msgid "Labels and Markers" msgstr "" -#: src/ui_viewDialog.h:1198 +#: src/ui_viewDialog.h:1217 msgid "Planets" msgstr "" -#: src/ui_viewDialog.h:1200 +#: src/ui_viewDialog.h:1219 +msgid "" +"Labels and markers for deep-sky objects (star clusters, galaxies and nebulas)" +msgstr "" + +#: src/ui_viewDialog.h:1221 src/ui_viewDialog.h:1266 +msgctxt "Deep-sky objects" +msgid "DSOs" +msgstr "" + +#: src/ui_viewDialog.h:1222 msgid "Planets and satellites" msgstr "" -#: src/ui_viewDialog.h:1201 +#: src/ui_viewDialog.h:1223 msgid "Show planets" msgstr "" -#: src/ui_viewDialog.h:1202 +#: src/ui_viewDialog.h:1224 msgid "Show planet markers" msgstr "" -#: src/ui_viewDialog.h:1203 +#: src/ui_viewDialog.h:1225 msgid "Show planet orbits" msgstr "" -#: src/ui_viewDialog.h:1204 +#: src/ui_viewDialog.h:1226 msgid "Simulate light speed" msgstr "" -#: src/ui_viewDialog.h:1205 +#: src/ui_viewDialog.h:1227 msgid "Scale Moon" msgstr "" -#: src/ui_viewDialog.h:1207 +#: src/ui_viewDialog.h:1229 +msgid "Automatic change of landscape when planet is changed" +msgstr "" + +#: src/ui_viewDialog.h:1231 +msgid "Auto select landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1233 msgid "Show atmosphere" msgstr "" -#: src/ui_viewDialog.h:1208 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:397 +#: src/ui_viewDialog.h:1234 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:398 msgid "Light pollution:" msgstr "" -#: src/ui_viewDialog.h:1210 +#: src/ui_viewDialog.h:1236 msgid "pressure, temperature, extinction coefficient" msgstr "" -#: src/ui_viewDialog.h:1212 +#: src/ui_viewDialog.h:1238 msgid "Refraction/Extinction settings..." msgstr "" -#: src/ui_viewDialog.h:1214 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:254 +#: src/ui_viewDialog.h:1240 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:255 msgid "Absolute scale:" msgstr "" -#: src/ui_viewDialog.h:1215 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:248 +#: src/ui_viewDialog.h:1241 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:249 msgid "Relative scale:" msgstr "" -#: src/ui_viewDialog.h:1216 +#: src/ui_viewDialog.h:1242 msgid "Milky Way brightness:" msgstr "" -#: src/ui_viewDialog.h:1217 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:260 +#: src/ui_viewDialog.h:1243 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:261 msgid "Twinkle:" msgstr "" -#: src/ui_viewDialog.h:1219 +#: src/ui_viewDialog.h:1245 msgid "Dim faint stars when a very bright object is visible" msgstr "" -#: src/ui_viewDialog.h:1221 +#: src/ui_viewDialog.h:1247 msgid "Dynamic eye adaptation" msgstr "" -#: src/ui_viewDialog.h:1222 +#: src/ui_viewDialog.h:1248 msgid "Shooting Stars" msgstr "" -#: src/ui_viewDialog.h:1224 +#: src/ui_viewDialog.h:1250 msgid "Hourly zenith rate" msgstr "" -#: src/ui_viewDialog.h:1226 +#: src/ui_viewDialog.h:1252 +msgctxt "Zenithal Hourly Rate" msgid "ZHR:" msgstr "" -#: src/ui_viewDialog.h:1229 +#: src/ui_viewDialog.h:1253 +msgid "1000" +msgstr "" + +#: src/ui_viewDialog.h:1256 msgid "Limit Magnitudes (for unaided/binocular observers)" msgstr "" -#: src/ui_viewDialog.h:1231 +#: src/ui_viewDialog.h:1258 msgid "Limit Magnitudes" msgstr "" -#: src/ui_viewDialog.h:1233 -msgid "Stars to magnitude" +#: src/ui_viewDialog.h:1260 +msgid "Limit the magnitude of stars" msgstr "" -#: src/ui_viewDialog.h:1237 -msgid "Nebulas to magitude" +#: src/ui_viewDialog.h:1264 +msgid "" +"Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas)" msgstr "" -#: src/ui_viewDialog.h:1240 +#: src/ui_viewDialog.h:1267 msgid "Constellations" msgstr "" -#: src/ui_viewDialog.h:1241 +#: src/ui_viewDialog.h:1268 msgid "Show lines" msgstr "" -#: src/ui_viewDialog.h:1242 +#: src/ui_viewDialog.h:1269 msgid "Show labels" msgstr "" -#: src/ui_viewDialog.h:1243 +#: src/ui_viewDialog.h:1270 msgid "Show boundaries" msgstr "" -#: src/ui_viewDialog.h:1244 +#: src/ui_viewDialog.h:1271 msgid "Show art" msgstr "" #. TRANSLATORS: Refers to constellation art -#: src/ui_viewDialog.h:1245 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:292 +#: src/ui_viewDialog.h:1272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:293 msgid "Art brightness:" msgstr "" -#: src/ui_viewDialog.h:1246 +#: src/ui_viewDialog.h:1273 msgid "Celestial Sphere" msgstr "" -#: src/ui_viewDialog.h:1253 +#: src/ui_viewDialog.h:1280 msgid "Show equator line" msgstr "" -#: src/ui_viewDialog.h:1257 +#: src/ui_viewDialog.h:1284 msgid "Show meridian line" msgstr "" -#: src/ui_viewDialog.h:1261 +#: src/ui_viewDialog.h:1288 msgid "Show horizon line" msgstr "" -#: src/ui_viewDialog.h:1265 +#: src/ui_viewDialog.h:1292 msgid "Show ecliptic line" msgstr "" -#: src/ui_viewDialog.h:1269 +#: src/ui_viewDialog.h:1296 msgid "Show Galactic plane line" msgstr "" -#: src/ui_viewDialog.h:1273 +#: src/ui_viewDialog.h:1300 msgid "Projection" msgstr "" -#: src/ui_viewDialog.h:1274 +#: src/ui_viewDialog.h:1301 msgid "Add/remove landscapes..." msgstr "" -#: src/ui_viewDialog.h:1276 +#: src/ui_viewDialog.h:1303 msgid "Show ground" msgstr "" -#: src/ui_viewDialog.h:1277 +#: src/ui_viewDialog.h:1304 msgid "Show fog" msgstr "" -#: src/ui_viewDialog.h:1278 +#: src/ui_viewDialog.h:1305 msgid "Use associated planet and position" msgstr "" -#: src/ui_viewDialog.h:1279 +#: src/ui_viewDialog.h:1306 msgid "Use this landscape as default" msgstr "" -#: src/ui_viewDialog.h:1281 +#: src/ui_viewDialog.h:1307 +msgid "Use brightness settings for landscapes" +msgstr "" + +#: src/ui_viewDialog.h:1309 msgid "Use this sky culture as default" msgstr "" -#: src/ui_viewDialog.h:1283 +#: src/ui_viewDialog.h:1311 msgid "Visible" msgstr "" @@ -3847,7 +4067,7 @@ msgid "The direction you're looking when Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1153 +#: src/ui_configurationDialog.h:992 src/ui_configurationDialog.h:1159 msgid "Selected object information" msgstr "" @@ -3863,11 +4083,8 @@ msgid "Display no information" msgstr "" -#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1844 -#: plugins/Observability/src/Observability.cpp:628 -#: plugins/Observability/src/Observability.cpp:629 -#: plugins/Observability/src/Observability.cpp:631 -#: plugins/Observability/src/Observability.cpp:632 +#: src/ui_configurationDialog.h:1000 plugins/Oculars/src/Oculars.cpp:1900 +#: plugins/Observability/src/Observability.cpp:233 msgid "None" msgstr "" @@ -4009,7 +4226,7 @@ msgstr "" #: src/ui_configurationDialog.h:1065 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:188 msgid "Startup date and time" msgstr "" @@ -4021,182 +4238,192 @@ msgid "Other:" msgstr "" -#: src/ui_configurationDialog.h:1070 +#: src/ui_configurationDialog.h:1071 +msgid "Use current local date and time" +msgstr "" + +#: src/ui_configurationDialog.h:1073 msgid "use current" msgstr "" -#: src/ui_configurationDialog.h:1072 +#: src/ui_configurationDialog.h:1075 msgid "Starts Stellarium at system clock date and time" msgstr "" -#: src/ui_configurationDialog.h:1074 +#: src/ui_configurationDialog.h:1077 msgid "System date and time" msgstr "" -#: src/ui_configurationDialog.h:1076 +#: src/ui_configurationDialog.h:1079 msgid "" "Sets the simulation time to the next instance of this time of day when " "Stellarium starts" msgstr "" -#: src/ui_configurationDialog.h:1078 +#: src/ui_configurationDialog.h:1081 msgid "System date at:" msgstr "" -#: src/ui_configurationDialog.h:1079 +#: src/ui_configurationDialog.h:1082 msgid "Time correction" msgstr "" -#: src/ui_configurationDialog.h:1082 +#: src/ui_configurationDialog.h:1085 msgid "Edit equation" msgstr "" -#: src/ui_configurationDialog.h:1084 +#: src/ui_configurationDialog.h:1087 msgid "Planetarium options" msgstr "" -#: src/ui_configurationDialog.h:1086 +#: src/ui_configurationDialog.h:1089 msgid "" "Spheric mirror distortion is used when projecting Stellarium onto a spheric " "mirror for low-cost planetarium systems." msgstr "" -#: src/ui_configurationDialog.h:1088 +#: src/ui_configurationDialog.h:1091 msgid "Spheric mirror distortion" msgstr "" -#: src/ui_configurationDialog.h:1090 +#: src/ui_configurationDialog.h:1093 msgid "Mask out everything outside a central circle in the main view" msgstr "" -#: src/ui_configurationDialog.h:1092 +#: src/ui_configurationDialog.h:1095 msgid "Disc viewport" msgstr "" -#: src/ui_configurationDialog.h:1094 +#: src/ui_configurationDialog.h:1097 msgid "Hide other constellations when you click one" msgstr "" -#: src/ui_configurationDialog.h:1096 +#: src/ui_configurationDialog.h:1099 msgid "Select single constellation" msgstr "" -#: src/ui_configurationDialog.h:1098 +#: src/ui_configurationDialog.h:1101 msgid "Align labels with the horizon" msgstr "" -#: src/ui_configurationDialog.h:1100 +#: src/ui_configurationDialog.h:1103 msgid "Gravity labels" msgstr "" -#: src/ui_configurationDialog.h:1102 +#: src/ui_configurationDialog.h:1105 msgid "Toggle display backgrounds of the nebulae." msgstr "" -#: src/ui_configurationDialog.h:1104 +#: src/ui_configurationDialog.h:1107 msgid "Show nebula background button" msgstr "" -#: src/ui_configurationDialog.h:1106 +#: src/ui_configurationDialog.h:1109 msgid "Toggle vertical and horizontal image flip buttons." msgstr "" -#: src/ui_configurationDialog.h:1108 +#: src/ui_configurationDialog.h:1111 msgid "Show flip buttons" msgstr "" -#: src/ui_configurationDialog.h:1110 +#: src/ui_configurationDialog.h:1113 msgid "" "When enabled, the \"auto zoom out\" key will also set the initial viewing " "direction" msgstr "" -#: src/ui_configurationDialog.h:1112 +#: src/ui_configurationDialog.h:1115 msgid "Auto zoom out returns to initial direction of view" msgstr "" -#: src/ui_configurationDialog.h:1113 +#: src/ui_configurationDialog.h:1117 +msgid "" +"Display solar shadows on planets and moons (For that feature needed OpenGL " +"version 2 or higher)" +msgstr "" + +#: src/ui_configurationDialog.h:1119 msgid "Render Solar Shadows" msgstr "" -#: src/ui_configurationDialog.h:1114 +#: src/ui_configurationDialog.h:1120 msgid "Screenshots" msgstr "" -#: src/ui_configurationDialog.h:1115 +#: src/ui_configurationDialog.h:1121 msgid "Screenshot Directory" msgstr "" -#: src/ui_configurationDialog.h:1117 +#: src/ui_configurationDialog.h:1123 msgid "Invert colors" msgstr "" -#: src/ui_configurationDialog.h:1118 +#: src/ui_configurationDialog.h:1124 msgid "Star catalog updates" msgstr "" -#: src/ui_configurationDialog.h:1120 +#: src/ui_configurationDialog.h:1126 msgid "Click here to start downloading" msgstr "" -#: src/ui_configurationDialog.h:1122 +#: src/ui_configurationDialog.h:1128 msgid "Download this file to view even more stars" msgstr "" -#: src/ui_configurationDialog.h:1124 +#: src/ui_configurationDialog.h:1130 msgid "Restart the download" msgstr "" -#: src/ui_configurationDialog.h:1126 +#: src/ui_configurationDialog.h:1132 msgid "Retry" msgstr "" -#: src/ui_configurationDialog.h:1128 +#: src/ui_configurationDialog.h:1134 msgid "Stop the download. You can always restart it later" msgstr "" -#: src/ui_configurationDialog.h:1130 +#: src/ui_configurationDialog.h:1136 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:517 msgid "Cancel" msgstr "" -#: src/ui_configurationDialog.h:1133 +#: src/ui_configurationDialog.h:1139 msgid "Close window when script runs" msgstr "" -#: src/ui_configurationDialog.h:1135 +#: src/ui_configurationDialog.h:1141 msgid "Run the selected script" msgstr "" -#: src/ui_configurationDialog.h:1139 +#: src/ui_configurationDialog.h:1145 msgid "Stop a running script" msgstr "" -#: src/ui_configurationDialog.h:1143 +#: src/ui_configurationDialog.h:1149 msgid "Load at startup" msgstr "" -#: src/ui_configurationDialog.h:1144 +#: src/ui_configurationDialog.h:1150 msgid "configure" msgstr "" -#: src/ui_configurationDialog.h:1149 +#: src/ui_configurationDialog.h:1155 msgid "Main" msgstr "" -#: src/ui_configurationDialog.h:1151 +#: src/ui_configurationDialog.h:1157 msgid "Information" msgstr "" -#: src/ui_configurationDialog.h:1156 +#: src/ui_configurationDialog.h:1162 msgid "Navigation" msgstr "" -#: src/ui_configurationDialog.h:1158 +#: src/ui_configurationDialog.h:1164 msgid "Tools" msgstr "" -#: src/ui_configurationDialog.h:1162 +#: src/ui_configurationDialog.h:1168 msgid "Plugins" msgstr "" @@ -4364,176 +4591,176 @@ msgid "Displays compass bearing marks along the horizon" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:81 -#: plugins/Oculars/src/ui_ocularDialog.h:1017 +#: plugins/Oculars/src/Oculars.cpp:82 +#: plugins/Oculars/src/ui_ocularDialog.h:1023 msgid "Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:84 +#: plugins/Oculars/src/Oculars.cpp:85 msgid "" "Shows the sky as if looking through a telescope eyepiece. (Only " "magnification and field of view are simulated.) It can also show a sensor " "frame and a Telrad sight." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:784 +#: plugins/Oculars/src/Oculars.cpp:787 msgid "Please select an object before switching to ocular view." msgstr "" -#: plugins/Oculars/src/Oculars.cpp:877 +#: plugins/Oculars/src/Oculars.cpp:883 msgid "&Previous ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:878 +#: plugins/Oculars/src/Oculars.cpp:884 msgid "&Next ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:879 +#: plugins/Oculars/src/Oculars.cpp:885 msgid "Select &ocular" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:926 +#: plugins/Oculars/src/Oculars.cpp:932 msgid "Toggle &crosshair" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:935 +#: plugins/Oculars/src/Oculars.cpp:941 msgid "Configure &Oculars" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:944 +#: plugins/Oculars/src/Oculars.cpp:950 msgid "Toggle &CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:952 +#: plugins/Oculars/src/Oculars.cpp:958 msgid "Toggle &Telrad" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:962 +#: plugins/Oculars/src/Oculars.cpp:968 msgid "&Previous CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:963 +#: plugins/Oculars/src/Oculars.cpp:969 msgid "&Next CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:964 +#: plugins/Oculars/src/Oculars.cpp:970 msgid "&Select CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:986 +#: plugins/Oculars/src/Oculars.cpp:992 msgid "&Rotate CCD" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1018 +#: plugins/Oculars/src/Oculars.cpp:1024 msgid "&Reset rotation" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1521 +#: plugins/Oculars/src/Oculars.cpp:1546 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:509 #, qt-format msgid "Ocular #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1526 +#: plugins/Oculars/src/Oculars.cpp:1551 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:513 #, qt-format msgid "Ocular #%1: %2" msgstr "" #. TRANSLATORS: FL = Focal length -#: plugins/Oculars/src/Oculars.cpp:1540 +#: plugins/Oculars/src/Oculars.cpp:1565 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:550 #, qt-format msgid "Ocular FL: %1 mm" msgstr "" #. TRANSLATORS: aFOV = apparent field of view -#: plugins/Oculars/src/Oculars.cpp:1547 +#: plugins/Oculars/src/Oculars.cpp:1572 #: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:560 #, qt-format msgid "Ocular aFOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1559 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:598 +#: plugins/Oculars/src/Oculars.cpp:1584 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:593 #, qt-format msgid "Lens #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1563 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:602 +#: plugins/Oculars/src/Oculars.cpp:1588 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:597 #, qt-format msgid "Lens #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1568 +#: plugins/Oculars/src/Oculars.cpp:1593 msgid "Lens: none" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1578 plugins/Oculars/src/Oculars.cpp:1635 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:753 +#: plugins/Oculars/src/Oculars.cpp:1603 plugins/Oculars/src/Oculars.cpp:1660 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:750 #, qt-format msgid "Telescope #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1583 plugins/Oculars/src/Oculars.cpp:1640 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:757 +#: plugins/Oculars/src/Oculars.cpp:1608 plugins/Oculars/src/Oculars.cpp:1665 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:754 #, qt-format msgid "Telescope #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1594 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:833 +#: plugins/Oculars/src/Oculars.cpp:1619 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:830 #, qt-format msgid "Magnification: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1602 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:842 +#: plugins/Oculars/src/Oculars.cpp:1627 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:839 #, qt-format msgid "FOV: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1612 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:698 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:793 +#: plugins/Oculars/src/Oculars.cpp:1637 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:695 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:792 #, qt-format msgid "Dimensions: %1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1617 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:660 +#: plugins/Oculars/src/Oculars.cpp:1642 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:655 #, qt-format msgid "Sensor #%1" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1621 -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:664 +#: plugins/Oculars/src/Oculars.cpp:1646 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:659 #, qt-format msgid "Sensor #%1: %2" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1840 +#: plugins/Oculars/src/Oculars.cpp:1896 msgid "&Lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1841 +#: plugins/Oculars/src/Oculars.cpp:1897 msgid "&Previous lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1842 +#: plugins/Oculars/src/Oculars.cpp:1898 msgid "&Next lens" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1872 +#: plugins/Oculars/src/Oculars.cpp:1928 msgid "&Telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1873 +#: plugins/Oculars/src/Oculars.cpp:1929 msgid "&Previous telescope" msgstr "" -#: plugins/Oculars/src/Oculars.cpp:1874 +#: plugins/Oculars/src/Oculars.cpp:1930 msgid "&Next telescope" msgstr "" @@ -4605,64 +4832,69 @@ msgid "Apparent field of view of the ocular" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:599 #, qt-format msgid "Multiplicity: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:604 msgid "Lens: None" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:610 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:605 msgid "Multiplicity: N/A" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:614 -msgid "Multiplicity of lens" +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:609 +msgid "Focal length of eyepiece" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:706 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:703 #, qt-format msgid "Rotation: %1" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:816 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:813 msgid "Magnification provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:817 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:814 msgid "Actual field of view provided by these binoculars" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:825 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:822 msgid "Magnification provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:826 +#: plugins/Oculars/src/gui/OcularsGuiPanel.cpp:823 msgid "" "Actual field of view provided by this ocular/lens/telescope combination" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:489 +#: plugins/Oculars/src/gui/OcularDialog.cpp:498 msgid "Oculars Plug-in" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:490 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:287 +#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:378 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:107 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:109 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:109 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:111 +#: plugins/Novae/src/gui/NovaeDialog.cpp:107 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:113 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:118 #: plugins/Observability/src/gui/ObservabilityDialog.cpp:98 msgid "Version" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:495 +#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +msgid "Barlow lens feature" +msgstr "" + +#: plugins/Oculars/src/gui/OcularDialog.cpp:504 msgid "Overview" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:497 +#: plugins/Oculars/src/gui/OcularDialog.cpp:506 msgid "" "This plugin is intended to simulate what you would see through an eyepiece. " "This configuration dialog can be used to add, modify, or delete eyepieces " @@ -4670,7 +4902,7 @@ "will populate some samples to get your started." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:498 +#: plugins/Oculars/src/gui/OcularDialog.cpp:507 msgid "" "You can choose to scale the image you see on the screen. This is intended " "to show you a better comparison of what one eyepiece/telescope combination " @@ -4681,14 +4913,14 @@ "recommend that you leave it off, unless you feel you have a need of it." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:499 +#: plugins/Oculars/src/gui/OcularDialog.cpp:508 msgid "" "You can toggle a crosshair in the view. Ideally, I wanted this to be " "aligned to North. I've been unable to do so. So currently it aligns to the " "top of the screen." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:500 +#: plugins/Oculars/src/gui/OcularDialog.cpp:509 #, qt-format msgid "" "You can toggle a Telrad finder; this can only be done when you have not " @@ -4697,305 +4929,374 @@ "the naked eye through the Telrad (or similar) finder." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:501 +#: plugins/Oculars/src/gui/OcularDialog.cpp:510 msgid "If you find any issues, please let me know. Enjoy!" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:504 +#: plugins/Oculars/src/gui/OcularDialog.cpp:513 msgid "Hot Keys" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:505 +#: plugins/Oculars/src/gui/OcularDialog.cpp:514 msgid "The plug-in's key bindings can be edited in the General Tab." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:517 -#: plugins/Oculars/src/gui/OcularDialog.cpp:522 +#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:531 msgid "[no key defined]" msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:526 +#: plugins/Oculars/src/gui/OcularDialog.cpp:535 msgid "Switches on/off the ocular overlay." msgstr "" -#: plugins/Oculars/src/gui/OcularDialog.cpp:530 +#: plugins/Oculars/src/gui/OcularDialog.cpp:539 msgid "Opens the pop-up navigation menu." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1020 +#: plugins/Oculars/src/ui_ocularDialog.h:1026 msgid "Enable only if an object is selected" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1021 +#: plugins/Oculars/src/ui_ocularDialog.h:1027 msgid "Scale image circle" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1022 +#: plugins/Oculars/src/ui_ocularDialog.h:1029 +msgid "Apply limits stellar magnitude for different apertures of telescopes" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1031 +msgid "Limit stellar magnitude" +msgstr "" + +#: plugins/Oculars/src/ui_ocularDialog.h:1032 msgid "Key mappings" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1023 +#: plugins/Oculars/src/ui_ocularDialog.h:1033 msgid "Toggle ocular view:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1025 +#: plugins/Oculars/src/ui_ocularDialog.h:1035 msgid "Open pop-up navigation menu:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1026 +#: plugins/Oculars/src/ui_ocularDialog.h:1036 msgid "Interface" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1027 +#: plugins/Oculars/src/ui_ocularDialog.h:1037 msgid "On-screen control panel" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1028 +#: plugins/Oculars/src/ui_ocularDialog.h:1038 msgid "Use degrees and minutes for FOV of CCD" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1029 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:221 +#: plugins/Oculars/src/ui_ocularDialog.h:1039 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:222 msgid "General" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1030 -#: plugins/Oculars/src/ui_ocularDialog.h:1038 +#: plugins/Oculars/src/ui_ocularDialog.h:1040 +#: plugins/Oculars/src/ui_ocularDialog.h:1048 msgid "Eyepieces" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1031 -#: plugins/Oculars/src/ui_ocularDialog.h:1040 -#: plugins/Oculars/src/ui_ocularDialog.h:1047 -#: plugins/Oculars/src/ui_ocularDialog.h:1058 +#: plugins/Oculars/src/ui_ocularDialog.h:1041 +#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1057 +#: plugins/Oculars/src/ui_ocularDialog.h:1068 #: plugins/Satellites/src/ui_satellitesImportDialog.h:220 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:403 msgid "Add" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1033 -#: plugins/Oculars/src/ui_ocularDialog.h:1042 -#: plugins/Oculars/src/ui_ocularDialog.h:1049 -#: plugins/Oculars/src/ui_ocularDialog.h:1060 -#: plugins/Satellites/src/ui_satellitesDialog.h:676 +#: plugins/Oculars/src/ui_ocularDialog.h:1043 +#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1059 +#: plugins/Oculars/src/ui_ocularDialog.h:1070 +#: plugins/Satellites/src/ui_satellitesDialog.h:724 #: plugins/TelescopeControl/src/ui_telescopeConfigurationDialog.h:484 msgid "Name:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1034 +#: plugins/Oculars/src/ui_ocularDialog.h:1044 msgid "aFOV:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1035 -#: plugins/Oculars/src/ui_ocularDialog.h:1061 +#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1071 msgid "Focal length:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1036 +#: plugins/Oculars/src/ui_ocularDialog.h:1046 msgid "Field stop:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1037 +#: plugins/Oculars/src/ui_ocularDialog.h:1047 msgid "Binoculars" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1039 -#: plugins/Oculars/src/ui_ocularDialog.h:1045 +#: plugins/Oculars/src/ui_ocularDialog.h:1049 +#: plugins/Oculars/src/ui_ocularDialog.h:1055 msgid "Lenses" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1043 -msgid "Multiplicity:" +#: plugins/Oculars/src/ui_ocularDialog.h:1053 +msgid "Multiplier:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1044 +#: plugins/Oculars/src/ui_ocularDialog.h:1054 msgid "" "Values of multiplicity >1 expand the focal length (Barlow lens). Values of " "multiplicity <1 reduce the focal length (Shapley lens)." msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1046 #: plugins/Oculars/src/ui_ocularDialog.h:1056 +#: plugins/Oculars/src/ui_ocularDialog.h:1066 msgid "Sensors" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1050 +#: plugins/Oculars/src/ui_ocularDialog.h:1060 msgid "Resolution x (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1051 +#: plugins/Oculars/src/ui_ocularDialog.h:1061 msgid "Resolution y (pixels):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1052 +#: plugins/Oculars/src/ui_ocularDialog.h:1062 msgid "Chip width (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1053 +#: plugins/Oculars/src/ui_ocularDialog.h:1063 msgid "Chip height (mm):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1054 +#: plugins/Oculars/src/ui_ocularDialog.h:1064 msgid "Pixel width (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1055 +#: plugins/Oculars/src/ui_ocularDialog.h:1065 msgid "Pixel height (micron):" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1057 -#: plugins/Oculars/src/ui_ocularDialog.h:1065 +#: plugins/Oculars/src/ui_ocularDialog.h:1067 +#: plugins/Oculars/src/ui_ocularDialog.h:1075 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:392 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:408 msgid "Telescopes" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1062 +#: plugins/Oculars/src/ui_ocularDialog.h:1072 msgid "Diameter:" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1063 +#: plugins/Oculars/src/ui_ocularDialog.h:1073 msgid "Horizontal flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1064 +#: plugins/Oculars/src/ui_ocularDialog.h:1074 msgid "Vertical flip" msgstr "" -#: plugins/Oculars/src/ui_ocularDialog.h:1066 -#: plugins/Satellites/src/ui_satellitesDialog.h:711 +#: plugins/Oculars/src/ui_ocularDialog.h:1076 +#: plugins/Satellites/src/ui_satellitesDialog.h:755 #: plugins/TelescopeControl/src/ui_telescopeDialog.h:419 #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:406 #: plugins/SolarSystemEditor/src/ui_solarSystemManagerWindow.h:310 #: plugins/Supernovae/src/ui_supernovaeDialog.h:242 -#: plugins/Quasars/src/ui_quasarsDialog.h:263 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:272 +#: plugins/Novae/src/ui_novaeDialog.h:245 +#: plugins/Quasars/src/ui_quasarsDialog.h:277 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:277 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:306 #: plugins/Observability/src/ui_ObservabilityDialog.h:379 msgctxt "tab in plugin windows" msgid "About" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:64 -#: plugins/Satellites/src/ui_satellitesDialog.h:698 +#: plugins/Satellites/src/Satellites.cpp:66 +#: plugins/Satellites/src/ui_satellitesDialog.h:741 msgid "Satellites" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:67 +#: plugins/Satellites/src/Satellites.cpp:69 msgid "" "Prediction of artificial satellite positions in Earth orbit based on NORAD " "TLE data" msgstr "" -#: plugins/Satellites/src/Satellites.cpp:172 +#: plugins/Satellites/src/Satellites.cpp:180 msgid "" "The old satellites.json file is no longer compatible - using default file" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:231 -#: plugins/Satellites/src/Satellite.cpp:235 +#. TRANSLATORS: Satellite group: Bright/naked-eye-visible satellites +#: plugins/Satellites/src/Satellites.cpp:1628 +msgid "visual" +msgstr "" + +#. TRANSLATORS: Satellite group: Scientific satellites +#: plugins/Satellites/src/Satellites.cpp:1630 +msgid "scientific" +msgstr "" + +#. TRANSLATORS: Satellite group: Communication satellites +#: plugins/Satellites/src/Satellites.cpp:1632 +msgid "communications" +msgstr "" + +#. TRANSLATORS: Satellite group: Navigation satellites +#: plugins/Satellites/src/Satellites.cpp:1634 +msgid "navigation" +msgstr "" + +#. TRANSLATORS: Satellite group: Amateur radio (ham) satellites +#: plugins/Satellites/src/Satellites.cpp:1636 +msgid "amateur" +msgstr "" + +#. TRANSLATORS: Satellite group: Weather (meteorological) satellites +#: plugins/Satellites/src/Satellites.cpp:1638 +msgid "weather" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites in geostationary orbit +#: plugins/Satellites/src/Satellites.cpp:1640 +msgid "geostationary" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites that are no longer functioning +#: plugins/Satellites/src/Satellites.cpp:1642 +msgid "non-operational" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the GPS constellation (the Global Positioning System) +#: plugins/Satellites/src/Satellites.cpp:1644 +msgid "gps" +msgstr "" + +#. TRANSLATORS: Satellite group: Satellites belonging to the Iridium constellation (Iridium is a proper name) +#: plugins/Satellites/src/Satellites.cpp:1646 +msgid "iridium" +msgstr "" + +#. TRANSLATORS: Satellite description. "Hubble" is a person's name. +#: plugins/Satellites/src/Satellites.cpp:1657 +msgid "The Hubble Space Telescope" +msgstr "" + +#. TRANSLATORS: Satellite description. +#: plugins/Satellites/src/Satellites.cpp:1659 +msgid "The International Space Station" +msgstr "" + +#: plugins/Satellites/src/Satellite.cpp:239 +#: plugins/Satellites/src/Satellite.cpp:243 msgid "Catalog #" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:237 +#: plugins/Satellites/src/Satellite.cpp:245 msgid "International Designator" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:244 +#: plugins/Satellites/src/Satellite.cpp:252 msgid "artificial satellite" msgstr "" #. TRANSLATORS: Slant range: distance between the satellite and the observer -#: plugins/Satellites/src/Satellite.cpp:254 +#: plugins/Satellites/src/Satellite.cpp:262 #, qt-format msgid "Range (km): %1" msgstr "" #. TRANSLATORS: Rate at which the distance changes -#: plugins/Satellites/src/Satellite.cpp:257 +#: plugins/Satellites/src/Satellite.cpp:265 #, qt-format msgid "Range rate (km/s): %1" msgstr "" #. TRANSLATORS: Satellite altitude -#: plugins/Satellites/src/Satellite.cpp:260 +#: plugins/Satellites/src/Satellite.cpp:268 #, qt-format msgid "Altitude (km): %1" msgstr "" #. TRANSLATORS: %1 and %3 are numbers, %2 and %4 - degree signs. -#: plugins/Satellites/src/Satellite.cpp:263 +#: plugins/Satellites/src/Satellite.cpp:271 #, qt-format msgid "SubPoint (Lat./Long.): %1%2/%3%4" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:277 +#: plugins/Satellites/src/Satellite.cpp:285 #, qt-format msgid "TEME coordinates (km): %1" msgstr "" #. TRANSLATORS: TEME is an Earth-centered inertial coordinate system -#: plugins/Satellites/src/Satellite.cpp:285 +#: plugins/Satellites/src/Satellite.cpp:293 #, qt-format msgid "TEME velocity (km/s): %1" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:293 +#: plugins/Satellites/src/Satellite.cpp:301 msgid "The satellite and the observer are in sunlight." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:296 +#: plugins/Satellites/src/Satellite.cpp:304 msgid "The satellite is visible." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:299 +#: plugins/Satellites/src/Satellite.cpp:307 msgid "The satellite is eclipsed." msgstr "" -#: plugins/Satellites/src/Satellite.cpp:302 +#: plugins/Satellites/src/Satellite.cpp:310 msgid "The satellite is not visible" msgstr "" -#: plugins/Satellites/src/Satellite.cpp:328 +#: plugins/Satellites/src/Satellite.cpp:336 #, qt-format msgid "%1 MHz (%2%3 kHz)" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:286 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:377 msgid "Stellarium Satellites Plugin" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:291 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 msgid "" "The Satellites plugin predicts the positions of artificial satellites in " "Earth orbit." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:293 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:385 msgid "Notes for users" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:294 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 msgid "" "Satellites and their orbits are only shown when the observer is on Earth." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:295 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:387 msgid "" "Predicted positions are only good for a fairly short time (on the order of " "days, weeks or perhaps a month into the past and future). Expect high " "weirdness when looking at dates outside this range." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:296 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:388 msgid "" "Orbital elements go out of date pretty quickly (over mere weeks, sometimes " "days). To get useful data out, you need to update the TLE data regularly." msgstr "" #. TRANSLATORS: The translated names of the button and the tab are filled in automatically. You can check the original names in Stellarium. File names are not translated. -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:298 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:390 #, qt-format msgid "" "Clicking the \"%1\" button in the \"%2\" tab of this dialog will revert to " @@ -5003,25 +5304,25 @@ "found in the user data directory, under \"modules/Satellites/\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:304 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:396 msgid "" "The Satellites plugin is still under development. Some features are " "incomplete, missing or buggy." msgstr "" #. TRANSLATORS: Title of a section in the About tab of the Satellites window -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:308 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:400 msgid "TLE data updates" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:309 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:401 msgid "" "The Satellites plugin can automatically download TLE data from Internet " "sources, and by default the plugin will do this if the existing data is more " "than 72 hours old. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:310 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:402 #, qt-format msgid "" "If you disable Internet updates, you may update from a file on your " @@ -5029,17 +5330,17 @@ "(see %1 for an example)." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:311 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:403 msgid "" "Note: if the name of a satellite in update data has anything in " "square brackets at the end, it will be removed before the data is used." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:314 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:406 msgid "Adding new satellites" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:315 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:407 msgid "" "1. Make sure the satellite(s) you wish to add are included in one of the " "URLs listed in the Sources tab of the satellites configuration dialog. 2. Go " @@ -5047,41 +5348,43 @@ "you wish to add and select the \"add\" button." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:317 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:409 msgid "Technical notes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:318 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:410 msgid "" "Positions are calculated using the SGP4 & SDP4 methods, using NORAD TLE data " "as the input. " msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:319 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:411 msgid "" "The orbital calculation code is written by Jose Luis Canales according to " "the revised Spacetrack Report #3 (including Spacetrack Report #6). " msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:321 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:413 #, qt-format msgid "See %1this document%2 for details." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:323 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:415 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:125 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:116 +#: plugins/Novae/src/gui/NovaeDialog.cpp:120 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:123 msgid "Links" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:324 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:416 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:126 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:133 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 +#: plugins/Novae/src/gui/NovaeDialog.cpp:121 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:137 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 #, qt-format msgid "" "Support is provided via the Launchpad website. Be sure to put \"%1\" in the " @@ -5089,338 +5392,381 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:327 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:419 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:129 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:122 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:136 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:120 +#: plugins/Novae/src/gui/NovaeDialog.cpp:124 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:127 #, qt-format msgid "If you have a question, you can %1get an answer here%2" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:329 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:421 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:131 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:138 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:122 +#: plugins/Novae/src/gui/NovaeDialog.cpp:126 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:129 #, qt-format msgid "Bug reports can be made %1here%2." msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:331 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:423 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:133 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:126 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:140 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:124 +#: plugins/Novae/src/gui/NovaeDialog.cpp:128 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:144 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:131 msgid "" "If you would like to make a feature request, you can create a bug report, " "and set the severity to \"wishlist\"." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:349 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:445 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:153 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:146 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:160 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:143 +#: plugins/Novae/src/gui/NovaeDialog.cpp:148 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:181 msgid "Internet updates disabled" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:351 -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:383 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:447 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:463 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:155 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:189 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:148 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:188 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:162 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:202 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:145 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 +#: plugins/Novae/src/gui/NovaeDialog.cpp:150 +#: plugins/Novae/src/gui/NovaeDialog.cpp:184 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:204 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:218 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:183 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:239 msgid "Updating now..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:353 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:452 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:157 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:150 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:164 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +#: plugins/Novae/src/gui/NovaeDialog.cpp:152 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:185 msgid "Next update: < 1 minute" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:355 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:454 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:159 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:152 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:166 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +#: plugins/Novae/src/gui/NovaeDialog.cpp:154 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:187 #, qt-format msgid "Next update: %1 minutes" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:357 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:456 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:161 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:154 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:168 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +#: plugins/Novae/src/gui/NovaeDialog.cpp:156 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:158 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:172 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:189 #, qt-format msgid "Next update: %1 hours" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:372 -#: plugins/Satellites/src/ui_satellitesDialog.h:640 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:171 -#: plugins/Quasars/src/ui_quasarsDialog.h:254 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:185 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:254 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:178 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:259 -msgid "Update now" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:374 -#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:173 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:187 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:180 -msgid "Update from files" -msgstr "" - -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:386 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:466 #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:192 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:191 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:205 -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:192 +#: plugins/Novae/src/gui/NovaeDialog.cpp:187 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:207 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:221 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:242 msgid "Update error" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:393 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:479 +#, qt-format +msgid "Updated %1/%2 satellite(s); %3 added; %4 removed" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:481 #, qt-format -msgid "Updated %1/%2 satellite(s); %3 missing" +msgid "Updated %1/%2 satellite(s); %3 added; %4 missing" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:450 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:543 msgid "[new source]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:489 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:595 +#: plugins/Satellites/src/ui_satellitesDialog.h:680 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:178 +#: plugins/Supernovae/src/ui_supernovaeDialog.h:238 +#: plugins/Novae/src/gui/NovaeDialog.cpp:173 +#: plugins/Novae/src/ui_novaeDialog.h:241 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:175 +#: plugins/Quasars/src/ui_quasarsDialog.h:266 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:189 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:266 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:228 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:290 +msgid "Update now" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:597 +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:180 +#: plugins/Novae/src/gui/NovaeDialog.cpp:175 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:177 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:191 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:230 +msgid "Update from files" +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:637 msgid "[orbit calculation error]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:490 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:638 msgid "[all newly added]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:491 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:639 msgid "[all not displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:492 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:640 msgid "[all displayed]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:493 +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:641 msgid "[all]" msgstr "" -#: plugins/Satellites/src/gui/SatellitesDialog.cpp:634 +#. TRANSLATORS: Displayed in the satellite group selection box. +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:688 +msgid "New group..." +msgstr "" + +#: plugins/Satellites/src/gui/SatellitesDialog.cpp:894 msgid "Select TLE Update File" msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:140 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 msgid "Downloading data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:141 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:142 msgid "" "Stellarium is downloading satellite data from the update sources. Please " "wait..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:156 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:157 msgid "Select TLE source file(s)..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:171 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:172 -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:231 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:173 #: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:232 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:233 msgid "Processing data..." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:226 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:227 msgid "No data could be downloaded. Try again later." msgstr "" -#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:359 +#: plugins/Satellites/src/gui/SatellitesImportDialog.cpp:360 #, qt-format msgid "Catalog Number: %1" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:633 -#: plugins/Satellites/src/ui_satellitesDialog.h:634 +#: plugins/Satellites/src/ui_satellitesDialog.h:673 +#: plugins/Satellites/src/ui_satellitesDialog.h:674 msgid "Satellites Configuration" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:636 -msgid "Update TLE lists from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:676 +msgid "Updates" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:637 -#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 -#: plugins/Quasars/src/ui_quasarsDialog.h:250 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:250 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:255 -msgid "Update from Internet sources" +#: plugins/Satellites/src/ui_satellitesDialog.h:677 +msgid "Update satellite data from Internet sources" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:638 +#: plugins/Satellites/src/ui_satellitesDialog.h:678 #: plugins/Supernovae/src/ui_supernovaeDialog.h:235 -#: plugins/Quasars/src/ui_quasarsDialog.h:251 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:251 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:256 +#: plugins/Novae/src/ui_novaeDialog.h:238 +#: plugins/Quasars/src/ui_quasarsDialog.h:263 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:263 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:287 msgid "Last update:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:639 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:257 +#: plugins/Satellites/src/ui_satellitesDialog.h:679 +msgid "On update, add all new satellites from the selected source(s)" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:681 +msgid "" +"On update, remove the satellites that are no longer listed in the update " +"sources" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:682 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:288 msgid "Update frequency (hours):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:641 +#: plugins/Satellites/src/ui_satellitesDialog.h:683 msgid "Labels" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:642 +#: plugins/Satellites/src/ui_satellitesDialog.h:684 msgid "Label font size (pixels):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:643 +#: plugins/Satellites/src/ui_satellitesDialog.h:685 msgid "Orbit lines" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:645 -#: plugins/Satellites/src/ui_satellitesDialog.h:649 +#: plugins/Satellites/src/ui_satellitesDialog.h:687 +#: plugins/Satellites/src/ui_satellitesDialog.h:691 msgid "Number of segments used to draw the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:647 +#: plugins/Satellites/src/ui_satellitesDialog.h:689 msgid "Number of segments:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:652 -#: plugins/Satellites/src/ui_satellitesDialog.h:656 +#: plugins/Satellites/src/ui_satellitesDialog.h:694 +#: plugins/Satellites/src/ui_satellitesDialog.h:698 msgid "Duration of a single segment in seconds" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:654 +#: plugins/Satellites/src/ui_satellitesDialog.h:696 msgid "Segment length (s):" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:659 -#: plugins/Satellites/src/ui_satellitesDialog.h:662 +#: plugins/Satellites/src/ui_satellitesDialog.h:701 +#: plugins/Satellites/src/ui_satellitesDialog.h:704 msgid "Number of segments used to draw each end of the line" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:664 +#: plugins/Satellites/src/ui_satellitesDialog.h:706 msgid "Fade length:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:665 +#: plugins/Satellites/src/ui_satellitesDialog.h:707 #: plugins/Supernovae/src/ui_supernovaeDialog.h:239 -#: plugins/Quasars/src/ui_quasarsDialog.h:260 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:260 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:269 +#: plugins/Novae/src/ui_novaeDialog.h:242 +#: plugins/Quasars/src/ui_quasarsDialog.h:274 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:274 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:302 #: plugins/Observability/src/ui_ObservabilityDialog.h:368 msgid "Restore default settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:666 +#: plugins/Satellites/src/ui_satellitesDialog.h:708 #: plugins/Supernovae/src/ui_supernovaeDialog.h:240 -#: plugins/Quasars/src/ui_quasarsDialog.h:261 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:270 +#: plugins/Novae/src/ui_novaeDialog.h:243 +#: plugins/Quasars/src/ui_quasarsDialog.h:275 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:275 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:303 #: plugins/Observability/src/ui_ObservabilityDialog.h:369 msgid "Save settings as default" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:667 +#: plugins/Satellites/src/ui_satellitesDialog.h:709 #: plugins/Supernovae/src/ui_supernovaeDialog.h:241 -#: plugins/Quasars/src/ui_quasarsDialog.h:262 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:271 +#: plugins/Novae/src/ui_novaeDialog.h:244 +#: plugins/Quasars/src/ui_quasarsDialog.h:276 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:276 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:304 #: plugins/Observability/src/ui_ObservabilityDialog.h:378 msgid "Settings" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:669 -msgid "Display the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:711 +msgid "Double-click a satellite to start tracking it." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:671 -msgid "Displayed" +#: plugins/Satellites/src/ui_satellitesDialog.h:714 +msgid "Add more satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:673 -msgid "Display orbit line(s) for the selected satellite(s)" +#: plugins/Satellites/src/ui_satellitesDialog.h:717 +msgid "Remove the selected satellites" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:675 -msgid "Orbit" +#: plugins/Satellites/src/ui_satellitesDialog.h:721 +msgid "Save changes" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:677 +#: plugins/Satellites/src/ui_satellitesDialog.h:725 msgid "Catalog number:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:678 -msgid "Description:" +#: plugins/Satellites/src/ui_satellitesDialog.h:727 +msgid "Display the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:679 -msgid "Groups:" +#: plugins/Satellites/src/ui_satellitesDialog.h:729 +msgid "Displayed" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:681 -msgid "Comma separated list of groups" +#: plugins/Satellites/src/ui_satellitesDialog.h:731 +msgid "Display orbit line(s) for the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:683 -msgid "TLE data:" +#: plugins/Satellites/src/ui_satellitesDialog.h:733 +msgid "Orbit" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:685 -msgid "NORAD two line element orbit data" +#: plugins/Satellites/src/ui_satellitesDialog.h:735 +msgid "Do not update (or remove on update) the selected satellite(s)" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:688 -msgid "Remove the selected satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:737 +msgid "Do not update" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:691 -msgid "Add more satellites" +#: plugins/Satellites/src/ui_satellitesDialog.h:738 +msgid "Description:" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:695 -msgid "Save changes" +#: plugins/Satellites/src/ui_satellitesDialog.h:739 +msgid "Groups:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:740 +msgid "TLE set:" +msgstr "" + +#: plugins/Satellites/src/ui_satellitesDialog.h:742 +msgid "" +"Satellites in the marked source lists will be automatically added on the " +"next update if they are not already in the collection." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:700 +#: plugins/Satellites/src/ui_satellitesDialog.h:744 msgid "" "Enter or edit the URL of the selected source. Changes are saved by pressing " "Enter." msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:703 +#: plugins/Satellites/src/ui_satellitesDialog.h:747 msgid "Add new source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:707 +#: plugins/Satellites/src/ui_satellitesDialog.h:751 msgid "Remove selected source" msgstr "" -#: plugins/Satellites/src/ui_satellitesDialog.h:710 +#: plugins/Satellites/src/ui_satellitesDialog.h:754 msgid "Sources" msgstr "" @@ -5456,22 +5802,22 @@ msgid "Discard" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:77 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:78 msgid "Telescope Control" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:80 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:81 msgid "" "This plug-in allows Stellarium to send \"slew\" commands to a telescope on a " "computerized mount (a \"GoTo telescope\")." msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1666 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1693 #, qt-format msgid "Move telescope #%1 to selected object" msgstr "" -#: plugins/TelescopeControl/src/TelescopeControl.cpp:1671 +#: plugins/TelescopeControl/src/TelescopeControl.cpp:1698 #, qt-format msgid "Move telescope #%1 to the point currently in the center of the screen" msgstr "" @@ -5854,62 +6200,62 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:242 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "January" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:243 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "February" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:244 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "March" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:245 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "April" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:246 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "May" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:247 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "June" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:248 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "July" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:249 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "August" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:250 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "September" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:251 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "October" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:252 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "November" msgstr "" #: plugins/TimeZoneConfiguration/src/gui/DefineTimeZoneWindow.cpp:253 -#: plugins/Supernovae/src/Supernovae.cpp:659 +#: plugins/Supernovae/src/Supernovae.cpp:701 msgid "December" msgstr "" @@ -6063,7 +6409,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:396 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:207 msgid "Time display format" msgstr "" @@ -6081,7 +6427,7 @@ msgstr "" #: plugins/TimeZoneConfiguration/src/ui_timeZoneConfigurationWindow.h:400 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:196 msgid "Date display format" msgstr "" @@ -6097,154 +6443,154 @@ msgid "mm-dd-yyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:89 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:90 msgid "Text User Interface" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:92 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:93 msgid "" "Plugin implementation of 0.9.x series Text User Interface (TUI), used in " "planetarium systems" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:156 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:157 msgid "Solar System body" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:170 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:171 msgid "Current date/time" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:175 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 msgid "Set time zone" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:176 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 msgid "Day keys" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:177 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:178 msgid "Startup date/time preset" msgstr "" #. TRANSLATORS: The current system time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:184 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:185 msgid "system" msgstr "" #. TRANSLATORS: A pre-set time is used at startup -#: plugins/TextUserInterface/src/TextUserInterface.cpp:186 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:187 msgid "preset" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "mmddyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "ddmmyyyy" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:194 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:195 msgid "yyyymmdd" msgstr "" #. TRANSLATORS: 12-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:203 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:204 msgid "12h" msgstr "" #. TRANSLATORS: 24-hour time format -#: plugins/TextUserInterface/src/TextUserInterface.cpp:205 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:206 msgid "24h" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:230 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:231 msgid "Language" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:244 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:245 msgid "Show stars" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:272 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:273 msgid "Colors" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:348 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:349 msgid "Nebula names" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:352 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:353 msgid "Nebula hints" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:366 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:367 msgid "Galactic plane line" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:395 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:396 msgid "Effects" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:409 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:410 msgid "Manual zoom" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:414 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:415 msgid "Magnitude scaling multiplier" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:416 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:417 msgid "Milky Way intensity:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:422 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 msgid "Nebula label frequency:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:423 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:424 msgid "Zoom duration:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:429 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 msgid "Cursor timeout:" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:430 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:431 msgid "Setting landscape sets location" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:451 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:452 msgid "Run local script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:457 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:458 msgid "Stop running script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:460 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:461 msgid "CD/DVD script" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:468 -#: plugins/TextUserInterface/src/TextUserInterface.cpp:472 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:469 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:473 msgid "Administration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:477 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 msgid "Load default configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:478 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:479 msgid "Save current configuration" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:481 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:482 msgid "Shut down" msgstr "" -#: plugins/TextUserInterface/src/TextUserInterface.cpp:553 +#: plugins/TextUserInterface/src/TextUserInterface.cpp:554 msgid "[no TUI node]" msgstr "" @@ -6277,22 +6623,22 @@ msgstr "" #. TRANSLATORS: A link showing the text "Minor Planet & Comet Ephemeris Service" is inserted. -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:148 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:149 #, qt-format msgid "Query the MPC's %1:" msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:151 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 msgid "Only one result will be returned if the query is successful." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:152 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:153 msgid "" "Both comets and asteroids can be identified with their number, name (in " "English) or provisional designation." msgstr "" -#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:159 +#: plugins/SolarSystemEditor/src/gui/MpcImportWindow.cpp:160 #, qt-format msgid "" "Comet names need to be prefixed with %1 or %2. If more than one comet " @@ -6461,36 +6807,43 @@ msgid "Solar System" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:71 +#: plugins/Supernovae/src/Supernovae.cpp:72 msgid "Historical Supernovae" msgstr "" -#: plugins/Supernovae/src/Supernovae.cpp:74 -msgid "" -"A plugin that shows some historical supernovae brighter than 10 visual " -"magnitude." +#: plugins/Supernovae/src/Supernovae.cpp:75 +msgid "This plugin allows you to see some bright historical supernovae." msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:97 +#: plugins/Supernovae/src/Supernova.cpp:122 msgid "supernova" msgstr "" -#: plugins/Supernovae/src/Supernova.cpp:113 +#: plugins/Supernovae/src/Supernova.cpp:138 #, qt-format msgid "Type of supernova: %1" msgstr "" +#: plugins/Supernovae/src/Supernova.cpp:139 plugins/Novae/src/Nova.cpp:142 +#, qt-format +msgid "Maximum brightness: %1" +msgstr "" + #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:106 msgid "Historical Supernovae Plug-in" msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:111 -msgid "" -"A plugin that shows some historical supernovae brighter than visual " -"magnitude 10: " +msgid "This plugin allows you to see some bright historical supernovae: " +msgstr "" + +#: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:113 +#, qt-format +msgid "All those supernovae are brighter %1 at peak of brightness." msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:115 +#: plugins/Novae/src/gui/NovaeDialog.cpp:114 msgid "Light curves" msgstr "" @@ -6508,7 +6861,7 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:119 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:121 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 msgid "" "We thank the following people for their contribution and valuable comments:" msgstr "" @@ -6522,14 +6875,14 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:124 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:126 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 msgid "in Russia" msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:135 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:128 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:142 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:132 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:146 #, qt-format msgid "" "If you want to read full information about this plugin, its history and " @@ -6537,8 +6890,9 @@ msgstr "" #: plugins/Supernovae/src/gui/SupernovaeDialog.cpp:163 -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:156 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:170 +#: plugins/Novae/src/gui/NovaeDialog.cpp:158 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:160 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:174 #, qt-format msgid "Next update: %1 days" msgstr "" @@ -6556,29 +6910,106 @@ msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:233 -#: plugins/Quasars/src/ui_quasarsDialog.h:249 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:249 +#: plugins/Novae/src/ui_novaeDialog.h:236 +#: plugins/Quasars/src/ui_quasarsDialog.h:261 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:261 msgid "Update catalog from Internet" msgstr "" +#: plugins/Supernovae/src/ui_supernovaeDialog.h:234 +#: plugins/Novae/src/ui_novaeDialog.h:237 +#: plugins/Quasars/src/ui_quasarsDialog.h:262 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:286 +msgid "Update from Internet sources" +msgstr "" + #: plugins/Supernovae/src/ui_supernovaeDialog.h:236 -#: plugins/Quasars/src/ui_quasarsDialog.h:252 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:252 +#: plugins/Novae/src/ui_novaeDialog.h:239 +#: plugins/Quasars/src/ui_quasarsDialog.h:264 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:264 msgid "Update frequency (days):" msgstr "" #: plugins/Supernovae/src/ui_supernovaeDialog.h:237 -#: plugins/Quasars/src/ui_quasarsDialog.h:253 -#: plugins/Pulsars/src/ui_pulsarsDialog.h:253 -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:258 +#: plugins/Novae/src/ui_novaeDialog.h:240 +#: plugins/Quasars/src/ui_quasarsDialog.h:265 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:265 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:289 msgid "[next update info]" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:70 +#: plugins/Novae/src/Novae.cpp:72 +msgid "Bright Novae" +msgstr "" + +#: plugins/Novae/src/Novae.cpp:75 plugins/Novae/src/gui/NovaeDialog.cpp:111 +msgid "A plugin that shows some bright novae in the Milky Way galaxy." +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +#, qt-format +msgid "Type: %1 (%2)" +msgstr "" + +#: plugins/Novae/src/Nova.cpp:126 +msgid "nova" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:106 +msgid "Bright Novae Plug-in" +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:112 +msgid "" +"You can find novae via search tool by entering designation of nova or its " +"common name (e.g. 'Nova Cygni 1975' or 'V1500 Cyg')." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:115 +msgid "" +"This plugin uses a very simple model for calculation of light curves for " +"novae stars." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:116 +#, qt-format +msgid "" +"This model is based on time for decay by %1 magnitudes from the maximum " +"value, where %1 is 2, 3, 6 and 9." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:117 +msgid "" +"If a nova has no values for decay of magnitude then this plugin will use " +"generalized values for it." +msgstr "" + +#. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link +#: plugins/Novae/src/gui/NovaeDialog.cpp:130 +#, qt-format +msgid "" +"If you want to read full information about this plugin, its history and " +"catalog format, you can %1get info here%2." +msgstr "" + +#: plugins/Novae/src/gui/NovaeDialog.cpp:194 +msgid "Novae is updated" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:233 +msgid "Bright Novae Configuration" +msgstr "" + +#: plugins/Novae/src/ui_novaeDialog.h:234 +msgid "Bright Novae Plug-in Configuration" +msgstr "" + +#: plugins/Quasars/src/Quasars.cpp:71 msgid "Quasars" msgstr "" -#: plugins/Quasars/src/Quasars.cpp:73 +#: plugins/Quasars/src/Quasars.cpp:74 msgid "" "A plugin that shows some quasars brighter than 16 visual magnitude. A " "catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' " @@ -6594,51 +7025,61 @@ msgid "Z (redshift): %1" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:108 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:112 msgid "Quasars Plug-in" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:114 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:118 msgid "" "The Quasars plugin provides visualization of some quasars brighter than 16 " "visual magnitude. A catalogue of quasars compiled from \"Quasars and Active " "Galactic Nuclei\" (13th Ed.)" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:116 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:120 msgid "Veron+ 2010" msgstr "" -#: plugins/Quasars/src/gui/QuasarsDialog.cpp:198 +#: plugins/Quasars/src/gui/QuasarsDialog.cpp:214 msgid "Quasars is updated" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:246 +#: plugins/Quasars/src/ui_quasarsDialog.h:258 msgid "Quasars Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:247 +#: plugins/Quasars/src/ui_quasarsDialog.h:259 msgid "Quasars Plug-in Configuration" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:255 -msgid "Display mode for quasars" +#: plugins/Quasars/src/ui_quasarsDialog.h:267 +msgid "Settings for quasars" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:257 +#: plugins/Quasars/src/ui_quasarsDialog.h:269 msgid "Plot all quasars without labels" msgstr "" -#: plugins/Quasars/src/ui_quasarsDialog.h:259 +#: plugins/Quasars/src/ui_quasarsDialog.h:271 msgid "Enable display of distribution for quasars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:70 +#: plugins/Quasars/src/ui_quasarsDialog.h:272 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:272 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:300 +msgid "Enable display at startup" +msgstr "" + +#: plugins/Quasars/src/ui_quasarsDialog.h:273 +msgid "Show quasars button on toolbar" +msgstr "" + +#: plugins/Pulsars/src/Pulsars.cpp:71 msgid "Pulsars" msgstr "" -#: plugins/Pulsars/src/Pulsars.cpp:73 -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:113 +#: plugins/Pulsars/src/Pulsars.cpp:74 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:117 msgid "" "This plugin plots the position of various pulsars, with object information " "about each one." @@ -6758,11 +7199,11 @@ "radio emission" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:108 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:112 msgid "Pulsars Plug-in" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:114 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 #, qt-format msgid "" "Pulsar data is derived from 'The ATNF Pulsar Catalogue' (Manchester, R. N., " @@ -6770,137 +7211,141 @@ "(%1astro-ph/0412641%2))." msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:118 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:122 msgid "Note" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:119 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 msgid "pulsar identifiers have the prefix 'PSR'" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:120 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:124 msgid "Acknowledgment" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:123 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:127 msgid "Vladimir Samodourov" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:125 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:129 msgid "Pushchino Radio Astronomy Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:128 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:132 msgid "Maciej Serylak" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:130 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:134 msgid "Nancay Radioastronomical Observatory" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:131 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:135 msgid "in France" msgstr "" -#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:212 +#: plugins/Pulsars/src/gui/PulsarsDialog.cpp:228 msgid "Pulsars is updated" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:246 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:258 msgid "Pulsars Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:247 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 msgid "Pulsars Plug-in Configuration" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:255 -msgid "Display mode for pulsars" +#: plugins/Pulsars/src/ui_pulsarsDialog.h:267 +msgid "Settings for pulsars" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:257 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:269 msgid "Plot all pulsars without labels" msgstr "" -#: plugins/Pulsars/src/ui_pulsarsDialog.h:259 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:271 msgid "Enable display of distribution for pulsars" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:72 +#: plugins/Pulsars/src/ui_pulsarsDialog.h:273 +msgid "Show pulsars button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/Exoplanets.cpp:73 msgid "Exoplanets" msgstr "" -#: plugins/Exoplanets/src/Exoplanets.cpp:75 +#: plugins/Exoplanets/src/Exoplanets.cpp:76 msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " "derived from the 'Extrasolar Planets Encyclopaedia' at exoplanet.eu" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:203 +#: plugins/Exoplanets/src/Exoplanet.cpp:182 msgid "Metallicity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:207 -#: plugins/Exoplanets/src/Exoplanet.cpp:223 +#: plugins/Exoplanets/src/Exoplanet.cpp:186 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 msgid "Mass" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:211 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:190 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Radius" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:215 +#: plugins/Exoplanets/src/Exoplanet.cpp:194 #, qt-format msgid "Effective temperature: %1 K" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:221 +#: plugins/Exoplanets/src/Exoplanet.cpp:200 msgid "Exoplanet" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "Period" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:222 +#: plugins/Exoplanets/src/Exoplanet.cpp:201 msgid "days" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:223 -#: plugins/Exoplanets/src/Exoplanet.cpp:224 +#: plugins/Exoplanets/src/Exoplanet.cpp:202 +#: plugins/Exoplanets/src/Exoplanet.cpp:203 msgid "Jup" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "Semi-Major Axis" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:225 +#: plugins/Exoplanets/src/Exoplanet.cpp:204 msgid "AU" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:226 +#: plugins/Exoplanets/src/Exoplanet.cpp:205 msgid "Eccentricity" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:227 +#: plugins/Exoplanets/src/Exoplanet.cpp:206 msgid "Inclination" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:228 +#: plugins/Exoplanets/src/Exoplanet.cpp:207 msgid "Angle Distance" msgstr "" -#: plugins/Exoplanets/src/Exoplanet.cpp:229 +#: plugins/Exoplanets/src/Exoplanet.cpp:208 msgid "Discovered year" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:110 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:117 msgid "Exoplanets Plug-in" msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:114 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:121 #, qt-format msgid "" "This plugin plots the position of stars with exoplanets. Exoplanets data is " @@ -6908,49 +7353,138 @@ msgstr "" #. TRANSLATORS: The numbers contain the opening and closing tag of an HTML link -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:126 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:133 #, qt-format msgid "" "If you want read full information about plugin, his history and format of " "catalog you can %1get info here%2." msgstr "" -#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:199 +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:146 +msgid "General professional Web sites relevant to extrasolar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:147 +msgid "Exoplanets: an interactive version of XKCD 1071" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:148 +msgid "HEK (The Hunt for Exomoons with Kepler)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:149 +msgid "Exoplanets in binaries and multiple systems (Richard Schwarz)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:150 +msgid "Naming exoplanets (IAU)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "Some Astronomers and Groups active in extrasolar planets studies" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:151 +msgid "update: 16 April 2012" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:152 +msgid "The Exoplanet Data Explorer" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:153 +msgid "The Anglo-Australian Planet Search" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:154 +msgid "Geneva Extrasolar Planet Search Programmes" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:155 +msgid "OLBIN (Optical Long-Baseline Interferometry News)" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:156 +msgid "NASA's Exoplanet Exploration Program" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:157 +msgid "Pulsar planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:158 +msgid "The NASA Exoplanet Archive" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:159 +msgid "IAU Comission 53: Extrasolar Planets" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:160 +msgid "ExoMol" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:161 +msgid "The Habitable Zone Gallery" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:162 +msgid "PlanetQuest - The Search for Another Earth" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:163 +msgid "Open Exoplanet Catalogue" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:164 +msgid "The Habitable Exoplanets Catalog" +msgstr "" + +#: plugins/Exoplanets/src/gui/ExoplanetsDialog.cpp:249 msgid "Exoplanets is updated" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:251 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:282 msgid "Exoplanets Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:252 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:283 msgid "Exoplanets Plug-in Configuration" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:254 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:285 msgid "Update exoplanets data from Internet" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:260 -msgid "Display mode for exoplanets" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:291 +msgid "Settings for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:262 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:293 msgid "Plot all systems with exoplanets without labels" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:264 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:295 msgid "Enable display of distribution for exoplanets" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:266 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:297 msgid "Display exoplanets since their discovery" msgstr "" -#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:268 +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:299 msgid "Enable timeline discovery of exoplanets" msgstr "" +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:301 +msgid "Show exoplanets button on toolbar" +msgstr "" + +#: plugins/Exoplanets/src/ui_exoplanetsDialog.h:305 +msgctxt "tab in plugin windows" +msgid "Info" +msgstr "" + #: plugins/Observability/src/Observability.cpp:66 msgid "Observability analysis" msgstr "" @@ -6966,185 +7500,179 @@ "configuration window" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jan" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Feb" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Mar" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Apr" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "May" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jun" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Jul" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Aug" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Sep" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Oct" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Nov" msgstr "" -#: plugins/Observability/src/Observability.cpp:193 +#: plugins/Observability/src/Observability.cpp:211 msgctxt "short month name" msgid "Dec" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:217 msgid "h" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:218 msgid "m" msgstr "" -#: plugins/Observability/src/Observability.cpp:499 -#: plugins/Observability/src/Observability.cpp:500 -#: plugins/Observability/src/Observability.cpp:542 +#: plugins/Observability/src/Observability.cpp:219 msgid "s" msgstr "" -#: plugins/Observability/src/Observability.cpp:509 +#: plugins/Observability/src/Observability.cpp:220 #, qt-format msgid "Sets at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:510 +#: plugins/Observability/src/Observability.cpp:221 #, qt-format msgid "Rose at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:520 +#: plugins/Observability/src/Observability.cpp:222 #, qt-format msgid "Set at %1 (%2 ago)" msgstr "" -#: plugins/Observability/src/Observability.cpp:521 +#: plugins/Observability/src/Observability.cpp:223 #, qt-format msgid "Rises at %1 (in %2)" msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:224 msgid "Circumpolar." msgstr "" -#: plugins/Observability/src/Observability.cpp:525 +#: plugins/Observability/src/Observability.cpp:225 msgid "No rise." msgstr "" -#: plugins/Observability/src/Observability.cpp:547 +#: plugins/Observability/src/Observability.cpp:226 #, qt-format msgid "Culminates at %1 (in %2) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:551 +#: plugins/Observability/src/Observability.cpp:227 #, qt-format msgid "Culminated at %1 (%2 ago) at %3 deg." msgstr "" -#: plugins/Observability/src/Observability.cpp:592 +#: plugins/Observability/src/Observability.cpp:228 msgid "Source is not observable." msgstr "" -#: plugins/Observability/src/Observability.cpp:593 +#: plugins/Observability/src/Observability.cpp:229 msgid "No Acronychal nor Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:610 +#: plugins/Observability/src/Observability.cpp:230 msgid "Greatest elongation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:613 +#: plugins/Observability/src/Observability.cpp:231 msgid "Largest Sun separation: " msgstr "" -#: plugins/Observability/src/Observability.cpp:616 +#: plugins/Observability/src/Observability.cpp:232 #, qt-format msgid " (at %1 deg.)" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:234 msgid "Acronychal rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:634 +#: plugins/Observability/src/Observability.cpp:235 msgid "No Acronychal rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:236 msgid "Cosmical rise/set" msgstr "" -#: plugins/Observability/src/Observability.cpp:635 +#: plugins/Observability/src/Observability.cpp:237 msgid "No Cosmical rise/set." msgstr "" -#: plugins/Observability/src/Observability.cpp:681 +#: plugins/Observability/src/Observability.cpp:238 msgid "Observable during the whole year." msgstr "" -#: plugins/Observability/src/Observability.cpp:685 +#: plugins/Observability/src/Observability.cpp:239 msgid "Not observable at dark night." msgstr "" -#: plugins/Observability/src/Observability.cpp:690 +#: plugins/Observability/src/Observability.cpp:240 msgid "Nights above horizon: " msgstr "" -#: plugins/Observability/src/Observability.cpp:707 +#: plugins/Observability/src/Observability.cpp:241 msgid "TODAY:" msgstr "" -#: plugins/Observability/src/Observability.cpp:716 +#: plugins/Observability/src/Observability.cpp:242 msgid "THIS YEAR:" msgstr "" -#: plugins/Observability/src/Observability.cpp:1450 +#: plugins/Observability/src/Observability.cpp:243 #, qt-format msgid "Previous Full Moon: %1 %2 at %3:%4. " msgstr "" -#: plugins/Observability/src/Observability.cpp:1455 +#: plugins/Observability/src/Observability.cpp:244 #, qt-format msgid "Next Full Moon: %1 %2 at %3:%4. " msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/POTFILES.in stellarium-0.12.4/po/stellarium-skycultures/POTFILES.in --- stellarium-0.12.1/po/stellarium-skycultures/POTFILES.in 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/POTFILES.in 2013-08-04 06:20:27.000000000 +0000 @@ -9,6 +9,8 @@ skycultures/egyptian/star_names.fab skycultures/inuit/constellation_names.eng.fab skycultures/inuit/star_names.fab +skycultures/indian/constellation_names.eng.fab +skycultures/indian/star_names.fab skycultures/korean/constellation_names.eng.fab skycultures/korean/star_names.fab skycultures/lakota/constellation_names.eng.fab diff -Nru stellarium-0.12.1/po/stellarium-skycultures/aa.po stellarium-0.12.4/po/stellarium-skycultures/aa.po --- stellarium-0.12.1/po/stellarium-skycultures/aa.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/aa.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:06+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Afar \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:49+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ab.po stellarium-0.12.4/po/stellarium-skycultures/ab.po --- stellarium-0.12.1/po/stellarium-skycultures/ab.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ab.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:06+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Abkhazian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:49+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ae.po stellarium-0.12.4/po/stellarium-skycultures/ae.po --- stellarium-0.12.1/po/stellarium-skycultures/ae.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ae.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Avestan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:50+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/af.po stellarium-0.12.4/po/stellarium-skycultures/af.po --- stellarium-0.12.1/po/stellarium-skycultures/af.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/af.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2013-01-25 06:51+0000\n" "Last-Translator: Weisson Ang \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:49+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Banier van die Drie Sterre" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Bulvoorpoot" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "Die Klein Orphan Seun" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Heilige Ketel" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ak.po stellarium-0.12.4/po/stellarium-skycultures/ak.po --- stellarium-0.12.1/po/stellarium-skycultures/ak.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ak.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:07+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Akan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:49+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/am.po stellarium-0.12.4/po/stellarium-skycultures/am.po --- stellarium-0.12.1/po/stellarium-skycultures/am.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/am.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:02+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Amharic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:49+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/an.po stellarium-0.12.4/po/stellarium-skycultures/an.po --- stellarium-0.12.1/po/stellarium-skycultures/an.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/an.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:03+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Aragonese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:50+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ar.po stellarium-0.12.4/po/stellarium-skycultures/ar.po --- stellarium-0.12.1/po/stellarium-skycultures/ar.po 2013-04-07 14:14:24.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ar.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-25 13:28+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-19 01:58+0000\n" "Last-Translator: Khalid AlAjaji \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-26 04:42+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-08-20 04:38+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "مجرة علامة التÙاضل الجنوبية" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "حشد نجم البحر" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "حشد مسطرة النقاش النجمي" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "الحشد الحلزوني" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "مجرة لوح ركوب الأمواج" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "مجرة المكنسة الكهربائية" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "مجرة النشاÙØ© الهوائية" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "سديم كودينغتون" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "سديم إبسلون الجبار" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Ùاذ 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "سديم Ùلمنغ الثلاثي" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "حشد جراÙ" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "المجرة المÙقودة" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "سديم البازيلا ذات العين البيضاء" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "المرأة المسلسلة" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "مرزم الشعرى اليمانية" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "التحائي ‎" @@ -1224,7 +1268,7 @@ msgstr "Ù…Ùرد الرامح" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "حضار ‎" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "راية النجوم الثلاث" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "السلحÙاة ذات الصدÙØ© اللينة 1" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "السمكة الطائرة 1" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "السمكة الطائرة 2" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "السمكة الطائرة 3" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "السمكة الطائرة 4" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "السمكة الطائرة 5" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "السمكة الطائرة 6" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "نجم جوكيان الغربي" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "الكركي 5" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "ستة جياس 6" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "تيانهنسينانسانج" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "الدرج الداخلي 1" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "الدرج الداخلي 2" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "الدرج الداخلي 3" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "الدرج الداخلي 4" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "الدرج الداخلي 5" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "الدرج الداخلي 6" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "المنقار 1" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "المنقار 2" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "المنقار 3" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "المنقار 4" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "المنقار 5" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "المنقار 6" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "المنقار 7" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "المثلث 1" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "المثلث 2" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "شاوÙÙˆ" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "النجم الجنوبي العظيم" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "الجنرال السماوي 10" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "الجنرال السماوي 11" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "السجن السماوي 1" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "السجن السماوي 2" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "السجن السماوي 3" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "السجن السماوي 4" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "السجن السماوي 5" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "السجن السماوي 6" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "الذيل 1" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "الذيل 2" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "الذيل 3" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "الذيل 4" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "الذيل 5" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "الذيل 6" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "الذيل 7" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "الذيل 8" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "الذيل 9" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "رجل ثور أمامية" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "الولد اليتيم الصغير ‎" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "غلاية مقدسة" @@ -4434,8 +4914,8 @@ msgstr "الضÙدع ‎" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Ùان مانن 2 â€" +msgid "van Maanen 2" +msgstr "Ùان ماهن 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "الدبران ‎" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "نجم هند كريمزون" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "الكرسي ‎" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "نجمة كابتين ‎" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "رجل الجوزاء ‎" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "العيوق ‎" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "الناجذ ‎" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "الناطح ‎" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "النهال ‎" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "المنطقة ‎" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "الأرنب ‎" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "الميسان ‎" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "النظام ‎" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "الÙاختة ‎" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "النطاق ‎" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "السي٠‎" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "الوزن 1 â€â€Ž" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "منكب الجوزاء ‎" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "منكب ذي العنان ‎" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "التحائي 1 â€â€Ž" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "المربع الأحمر ‎" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "الÙرود ‎" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "المرزم ‎" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "سهيل ‎" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "نجم بلاسكت" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "الهنعة ‎" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "الذراع المبسوطة ‎" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "الشعرى ‎" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "العذارى ‎" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "المحلÙان ‎" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "الذراع المقبوضة ‎" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "الوزن 2 â€â€Ž" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "بيرنز 135 â€â€Ž" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "الوسط ‎" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "العذرة ‎" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "مرزم الغميصاء ‎" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "نجمة لويتين ‎" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "رأس التوأم المقدم ‎" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "الشعرى الشامية الغميصاء ‎" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "رأس التوأم المؤخر ‎" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "سهيل حضار ‎" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "سهيل المحل٠‎" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "صدÙØ© السرطان ‎" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Ø¢Ùيور ‎" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "الظباء ‎" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "الحمار الشمالي ‎" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "الحمار الجنوبي ‎" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "الزبانى ‎" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "القÙزة الثالثة ‎" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "سهيل الوزن" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "المياه الهادئة ‎" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "التريس ‎" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "الÙرد ‎" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "الطر٠‎" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "رأس الأسد الشمالي ‎" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "قلب الأسد ‎" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "الضÙيرة ‎" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "القÙزة الثانية الشمالية ‎" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "الجبهة ‎" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "القÙزة الثانية الجنوبية ‎" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "الكأس ‎" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "المراق ‎" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "الدب ‎" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "الزبرة ‎" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "الخراتان ‎" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "نجم إن" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "القÙزة الأولى الجنوبية" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "القÙزة الأولى الشمالية" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "جوزهر ‎" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "نجم برزيبيلسكي" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "الصرÙØ© ‎" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "زاوية العوا ‎" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "الÙخذ ‎" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "الخباء ‎" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "المغرز ‎" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "الجناح ‎" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "الزاوية ‎" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ألÙا الصليب ‎" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "الغراب ‎" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "جاما الصليب ‎" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "البهجة ‎" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "بوريما ‎" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "الرائع" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "ميموسا ‎" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "الجون ‎" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "كبد الأسد ‎" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "مقدم القطا٠‎" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "العناق ‎" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "السماك الأعزل ‎" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "السها ‎" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "القائد ‎" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Ù…Ùرد الرامح ‎" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "الثعبان ‎" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "منكب قنطورس ‎" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "السماك الرامح ‎" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "الغÙر ‎" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "بروكسيما ‎" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "الراعي Ù… ‎" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "رجل قنطورس ‎" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "الإزار ‎" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "المعزقة ‎" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "أنور الÙرقدين" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "الزبانى الجنوبي ‎" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "البقار ‎" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "الزبانى الشمالي ‎" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "الÙرقدان 2 â€â€Ž" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "عصا الراعي ‎" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "الذيخ ‎" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "المساكين ‎" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "الÙكة ‎" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "عنق الحية ‎" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "جبهة العقرب ‎" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "العقرب ‎" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "مرÙÙ‚ الجاثي ‎" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "اليد الأمامية ‎" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "اليد الخلÙية ‎" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "النياط ‎" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "الهراوة ‎" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "قلب العقرب ‎" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "حامل الهراوة ‎" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "مرÙÙ‚ الحواء ‎" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "ألÙا المثلث الجنوبي ‎" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "الراقص ‎" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "السابق الثاني ‎" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "رأس الجاثي ‎" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "رأس الثعبان ‎" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "معصم الجاثي ‎" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "اللسعة ‎" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "بنات ‎" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "الشولة ‎" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "رأس الحواء ‎" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "الÙقرة ‎" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "كلب الراعي ‎" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "أن٠الخنزير ‎" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "التنين ‎" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "نجمة بارنارد ‎" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "النصل ‎" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "القوس الأوسط ‎" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "القوس الجنوبي ‎" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "القوس الشمالي ‎" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "النسر الواقع ‎" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "الشلياق ‎" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "ننكي ‎" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "الألية ‎" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "السلحÙاة ‎" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "إبط الرامي ‎" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "التنين ‎" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "العرقوب ‎" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "ركبة الرامي ‎" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "منقار الدجاجة ‎" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "نجمة كامبل ‎" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "السهم ‎" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "الميزان ‎" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "النسر الطائر ‎" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "عمود الميزان ‎" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "سعد الذابح 1 â€â€Ž" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "سعد الذابح 2 â€â€Ž" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "صدر الدجاجة ‎" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "الطاووس ‎" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "القعود 1 â€â€Ž" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "القعود 2 â€â€Ž" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "ذنب الدجاجة ‎" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "البالع ‎" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "نجم بيسيل" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "قطعة الÙرس ‎" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "الذراعين ‎" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "الÙÙرق ‎" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "سعد السعود ‎" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "سعد ناشرة 1 â€â€Ž" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "السلحÙاة Ù… ‎" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "نجمة جارنيت ‎" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "جحÙلة الÙرس ‎" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "سعد ناشرة 2 â€â€Ž" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "القرحة ‎" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "سعد الملك ‎" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "النيّÙر ‎" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "سعد البهام ‎" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "الورك ‎" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "سعد الأخبية ‎" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "كروجر 60 â€â€Ž" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "السطل ‎" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "سعد الهمام ‎" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "سعد مطر ‎" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "نجمة بابكوك ‎" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "سعد البارع ‎" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "الساق ‎" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "ÙÙ… الحوت ‎" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "منكب الÙرس ‎" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "متن الÙرس ‎" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "الراعي ‎" @@ -5339,5 +5843,8 @@ #~ msgid "Hubble's variable neb" #~ msgstr "سديم هابل المتغير" +#~ msgid "Van Maanen 2" +#~ msgstr "Ùان مانن 2 â€" + #~ msgid "Kocab" #~ msgstr "الÙرقدان 1 â€â€Ž" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/as.po stellarium-0.12.4/po/stellarium-skycultures/as.po --- stellarium-0.12.1/po/stellarium-skycultures/as.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/as.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Assamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:50+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ast.po stellarium-0.12.4/po/stellarium-skycultures/ast.po --- stellarium-0.12.1/po/stellarium-skycultures/ast.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ast.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2011-05-16 17:41+0000\n" -"Last-Translator: Xandru \n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-07-29 23:08+0000\n" +"Last-Translator: ivarela \n" "Language-Team: Asturian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:50+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -370,7 +370,7 @@ #: nebulae/default/ngc2000names.dat:329 msgid "ω Cen cluster" -msgstr "" +msgstr "ω Cen cluster" #: nebulae/default/ngc2000names.dat:330 msgid "Ï Oph nebula" @@ -402,11 +402,11 @@ #: nebulae/default/ngc2000names.dat:337 msgid "Fornax A" -msgstr "" +msgstr "Fornax A" #: nebulae/default/ngc2000names.dat:338 msgid "Fornax B" -msgstr "" +msgstr "Fornax B" #: nebulae/default/ngc2000names.dat:339 msgid "de Mairan's nebula" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -925,7 +969,7 @@ #: skycultures/arabic/star_names.fab:24 msgid "The Pleiades" -msgstr "" +msgstr "Les Pléyades" #: skycultures/arabic/star_names.fab:26 msgid "One of the eggs" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,9 +2516,265 @@ msgid "The Little Orphan Boy" msgstr "El güerfanín" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" -msgstr "" +msgstr "Holy Kettle" #: skycultures/korean/constellation_names.eng.fab:2 msgid "Farm of Capital City" @@ -2409,7 +2889,7 @@ #: skycultures/korean/constellation_names.eng.fab:30 msgid "Sun" -msgstr "" +msgstr "Sol" #: skycultures/korean/constellation_names.eng.fab:31 msgid "West Road" @@ -2767,7 +3247,7 @@ #: skycultures/korean/constellation_names.eng.fab:125 msgid "Moon" -msgstr "" +msgstr "Lluna" #: skycultures/korean/constellation_names.eng.fab:126 #: skycultures/korean/constellation_names.eng.fab:129 @@ -3307,229 +3787,229 @@ #: skycultures/korean/star_names.fab:1 msgid "SaangSaang" -msgstr "" +msgstr "SaangSaang" #: skycultures/korean/star_names.fab:2 skycultures/korean/star_names.fab:4 msgid "ChaSaang" -msgstr "" +msgstr "ChaSaang" #: skycultures/korean/star_names.fab:3 skycultures/korean/star_names.fab:50 msgid "ChaJaang" -msgstr "" +msgstr "ChaJaang" #: skycultures/korean/star_names.fab:5 msgid "UJangGuun" -msgstr "" +msgstr "UJangGuun" #: skycultures/korean/star_names.fab:6 msgid "DaeJangGuun" -msgstr "" +msgstr "DaeJangGuun" #: skycultures/korean/star_names.fab:7 msgid "JwaJangGuun" -msgstr "" +msgstr "JwaJangGuun" #: skycultures/korean/star_names.fab:8 msgid "WaangRaang" -msgstr "" +msgstr "WaangRaang" #: skycultures/korean/star_names.fab:9 skycultures/korean/star_names.fab:10 #: skycultures/korean/star_names.fab:11 skycultures/korean/star_names.fab:12 msgid "CheonSaa" -msgstr "" +msgstr "CheonSaa" #: skycultures/korean/star_names.fab:13 skycultures/korean/star_names.fab:17 msgid "CheonGou" -msgstr "" +msgstr "CheonGou" #: skycultures/korean/star_names.fab:14 msgid "SaaGong" -msgstr "" +msgstr "SaaGong" #: skycultures/korean/star_names.fab:15 msgid "CheonOok" -msgstr "" +msgstr "CheonOok" #: skycultures/korean/star_names.fab:16 msgid "CheonChaang" -msgstr "" +msgstr "CheonChaang" #: skycultures/korean/star_names.fab:18 msgid "Gyeong" -msgstr "" +msgstr "Gyeong" #: skycultures/korean/star_names.fab:19 msgid "JwaJaangGuun" -msgstr "" +msgstr "JwaJaangGuun" #: skycultures/korean/star_names.fab:20 msgid "HuuJaangGuun" -msgstr "" +msgstr "HuuJaangGuun" #: skycultures/korean/star_names.fab:21 msgid "UuJaangGuun" -msgstr "" +msgstr "UuJaangGuun" #: skycultures/korean/star_names.fab:22 msgid "PyeonJaangGuun" -msgstr "" +msgstr "PyeonJaangGuun" #: skycultures/korean/star_names.fab:23 msgid "SaamJaangGuun" -msgstr "" +msgstr "SaamJaangGuun" #: skycultures/korean/star_names.fab:24 msgid "TaeSaa" -msgstr "" +msgstr "TaeSaa" #: skycultures/korean/star_names.fab:25 skycultures/korean/star_names.fab:39 msgid "BaakSaa" -msgstr "" +msgstr "BaakSaa" #: skycultures/korean/star_names.fab:26 msgid "SaamGong" -msgstr "" +msgstr "SaamGong" #: skycultures/korean/star_names.fab:27 msgid "JaeUu" -msgstr "" +msgstr "JaeUu" #: skycultures/korean/star_names.fab:28 msgid "JaeSaa" -msgstr "" +msgstr "JaeSaa" #: skycultures/korean/star_names.fab:29 msgid "YeoJuu" -msgstr "" +msgstr "YeoJuu" #: skycultures/korean/star_names.fab:30 msgid "YeoEo" -msgstr "" +msgstr "YeoEo" #: skycultures/korean/star_names.fab:31 msgid "TaeMin" -msgstr "" +msgstr "TaeMin" #: skycultures/korean/star_names.fab:32 msgid "SouMin" -msgstr "" +msgstr "SouMin" #: skycultures/korean/star_names.fab:33 skycultures/korean/star_names.fab:64 #: skycultures/korean/star_names.fab:65 skycultures/korean/star_names.fab:66 msgid "Buuiin" -msgstr "" +msgstr "Buuiin" #: skycultures/korean/star_names.fab:34 msgid "WaangBii" -msgstr "" +msgstr "WaangBii" #: skycultures/korean/star_names.fab:35 skycultures/korean/star_names.fab:47 msgid "HuuGuung" -msgstr "" +msgstr "HuuGuung" #: skycultures/korean/star_names.fab:36 msgid "HwangJae" -msgstr "" +msgstr "HwangJae" #: skycultures/korean/star_names.fab:37 msgid "CheoSaa" -msgstr "" +msgstr "CheoSaa" #: skycultures/korean/star_names.fab:38 msgid "EuiSaa" -msgstr "" +msgstr "EuiSaa" #: skycultures/korean/star_names.fab:40 msgid "DaeBuu" -msgstr "" +msgstr "DaeBuu" #: skycultures/korean/star_names.fab:41 msgid "SaangTae" -msgstr "" +msgstr "SaangTae" #: skycultures/korean/star_names.fab:42 msgid "JuungTae" -msgstr "" +msgstr "JuungTae" #: skycultures/korean/star_names.fab:43 msgid "HaaTae" -msgstr "" +msgstr "HaaTae" #: skycultures/korean/star_names.fab:44 skycultures/korean/star_names.fab:62 msgid "TaeJaa" -msgstr "" +msgstr "TaeJaa" #: skycultures/korean/star_names.fab:45 msgid "JaeWaang" -msgstr "" +msgstr "JaeWaang" #: skycultures/korean/star_names.fab:46 skycultures/korean/star_names.fab:61 msgid "SeoJaa" -msgstr "" +msgstr "SeoJaa" #: skycultures/korean/star_names.fab:48 msgid "CheonChuu" -msgstr "" +msgstr "CheonChuu" #: skycultures/korean/star_names.fab:49 msgid "SaangJaang" -msgstr "" +msgstr "SaangJaang" #: skycultures/korean/star_names.fab:51 msgid "TaeSaang" -msgstr "" +msgstr "TaeSaang" #: skycultures/korean/star_names.fab:52 msgid "SaaJuu.DaeRii" -msgstr "" +msgstr "SaaJuu.DaeRii" #: skycultures/korean/star_names.fab:53 msgid "Jeong" -msgstr "" +msgstr "Jeong" #: skycultures/korean/star_names.fab:54 msgid "Beop" -msgstr "" +msgstr "Beop" #: skycultures/korean/star_names.fab:55 msgid "Ryeong" -msgstr "" +msgstr "Ryeong" #: skycultures/korean/star_names.fab:56 msgid "Beol" -msgstr "" +msgstr "Beol" #: skycultures/korean/star_names.fab:57 msgid "Saal" -msgstr "" +msgstr "Saal" #: skycultures/korean/star_names.fab:58 msgid "Wii" -msgstr "" +msgstr "Wii" #: skycultures/korean/star_names.fab:59 msgid "Eung" -msgstr "" +msgstr "Eung" #: skycultures/korean/star_names.fab:60 msgid "MyeongDaang" -msgstr "" +msgstr "MyeongDaang" #: skycultures/korean/star_names.fab:63 msgid "Huu" -msgstr "" +msgstr "Huu" #: skycultures/korean/star_names.fab:67 msgid "Biin" -msgstr "" +msgstr "Biin" #: skycultures/korean/star_names.fab:68 skycultures/korean/star_names.fab:69 msgid "DaeJaang" -msgstr "" +msgstr "DaeJaang" #: skycultures/lakota/constellation_names.eng.fab:1 msgid "Hand" -msgstr "" +msgstr "Hand" #: skycultures/lakota/constellation_names.eng.fab:2 msgid "Snake" @@ -3557,91 +4037,91 @@ #: skycultures/lakota/constellation_names.eng.fab:9 msgid "Dried Willow" -msgstr "" +msgstr "Dried Willow" #: skycultures/lakota/constellation_names.eng.fab:10 msgid "Salamander" -msgstr "" +msgstr "Salamander" #: skycultures/lakota/constellation_names.eng.fab:11 msgid "Turtle" -msgstr "" +msgstr "Turtle" #: skycultures/lakota/constellation_names.eng.fab:12 msgid "Thunderbird" -msgstr "" +msgstr "Thunderbird" #: skycultures/lakota/constellation_names.eng.fab:13 msgid "Bear's Lodge" -msgstr "" +msgstr "Bear's Lodge" #: skycultures/maori/constellation_names.eng.fab:1 msgid "Taki-o-Autahi" -msgstr "" +msgstr "Taki-o-Autahi" #: skycultures/maori/constellation_names.eng.fab:2 msgid "Te Taura-o-te-waka-o-tamarereti" -msgstr "" +msgstr "Te Taura-o-te-waka-o-tamarereti" #: skycultures/maori/constellation_names.eng.fab:3 msgid "Tau-toro" -msgstr "" +msgstr "Tau-toro" #: skycultures/maori/constellation_names.eng.fab:4 msgid "The Great Boat of Tama Rereti" -msgstr "" +msgstr "The Great Boat of Tama Rereti" #: skycultures/maori/constellation_names.eng.fab:5 msgid "Matakarehu" -msgstr "" +msgstr "Matakarehu" #: skycultures/maori/constellation_names.eng.fab:6 msgid "The Sail of Tainui" -msgstr "" +msgstr "The Sail of Tainui" #: skycultures/maori/star_names.fab:1 msgid "Matariki" -msgstr "" +msgstr "Matariki" #: skycultures/maori/star_names.fab:2 msgid "Taumata-kuku" -msgstr "" +msgstr "Taumata-kuku" #: skycultures/maori/star_names.fab:3 msgid "Puanga" -msgstr "" +msgstr "Puanga" #: skycultures/maori/star_names.fab:4 msgid "Atutahi" -msgstr "" +msgstr "Atutahi" #: skycultures/maori/star_names.fab:5 msgid "Takarua" -msgstr "" +msgstr "Takarua" #: skycultures/maori/star_names.fab:6 msgid "Whakaahu" -msgstr "" +msgstr "Whakaahu" #: skycultures/maori/star_names.fab:7 msgid "Puanga Hori" -msgstr "" +msgstr "Puanga Hori" #: skycultures/maori/star_names.fab:8 msgid "Mariao" -msgstr "" +msgstr "Mariao" #: skycultures/maori/star_names.fab:9 msgid "Ruawahia" -msgstr "" +msgstr "Ruawahia" #: skycultures/maori/star_names.fab:10 msgid "Rehua" -msgstr "" +msgstr "Rehua" #: skycultures/maori/star_names.fab:11 msgid "Pekehawani" -msgstr "" +msgstr "Pekehawani" #: skycultures/maori/star_names.fab:12 msgid "Whakaonge-kai" @@ -3649,67 +4129,67 @@ #: skycultures/maori/star_names.fab:13 msgid "Whanui" -msgstr "" +msgstr "Whanui" #: skycultures/maori/star_names.fab:14 msgid "Poutu-te-Rangi" -msgstr "" +msgstr "Poutu-te-Rangi" #: skycultures/maori/star_names.fab:15 msgid "Pipiri" -msgstr "" +msgstr "Pipiri" #: skycultures/maori/star_names.fab:16 msgid "Turu" -msgstr "" +msgstr "Turu" #: skycultures/maori/star_names.fab:17 msgid "Tupua-nuku" -msgstr "" +msgstr "Tupua-nuku" #: skycultures/maori/star_names.fab:18 msgid "Tupua-rangi" -msgstr "" +msgstr "Tupua-rangi" #: skycultures/maori/star_names.fab:19 msgid "Ururangi" -msgstr "" +msgstr "Ururangi" #: skycultures/maori/star_names.fab:20 msgid "Wai-puna-a-rangi" -msgstr "" +msgstr "Wai-puna-a-rangi" #: skycultures/maori/star_names.fab:21 msgid "Waiti" -msgstr "" +msgstr "Waiti" #: skycultures/maori/star_names.fab:22 msgid "Waita" -msgstr "" +msgstr "Waita" #: skycultures/navajo/constellation_names.eng.fab:1 msgid "Revolving Male" -msgstr "" +msgstr "Revolving Male" #: skycultures/navajo/constellation_names.eng.fab:2 msgid "Revolving Female" -msgstr "" +msgstr "Revolving Female" #: skycultures/navajo/constellation_names.eng.fab:3 msgid "Man with Feet Apart" -msgstr "" +msgstr "Man with Feet Apart" #: skycultures/navajo/constellation_names.eng.fab:4 msgid "Lizard" -msgstr "" +msgstr "Lizard" #: skycultures/navajo/constellation_names.eng.fab:5 msgid "Dilyehe" -msgstr "" +msgstr "Dilyehe" #: skycultures/navajo/constellation_names.eng.fab:6 msgid "First Big One" -msgstr "" +msgstr "First Big One" #: skycultures/navajo/constellation_names.eng.fab:7 msgid "Rabbit Tracks" @@ -3741,7 +4221,7 @@ #: skycultures/norse/constellation_names.eng.fab:6 msgid "The Asar Battlefield" -msgstr "" +msgstr "The Asar Battlefield" #: skycultures/norse/star_names.fab:1 msgid "Guide Star" @@ -3757,7 +4237,7 @@ #: skycultures/polynesian/constellation_names.eng.fab:1 msgid "Bailer" -msgstr "" +msgstr "Bailer" #: skycultures/polynesian/constellation_names.eng.fab:2 msgid "Cat's Cradle" @@ -3781,7 +4261,7 @@ #: skycultures/polynesian/constellation_names.eng.fab:7 msgid "Kite of Kawelo" -msgstr "" +msgstr "Kite of Kawelo" #: skycultures/polynesian/constellation_names.eng.fab:8 msgid "Frigate Bird" @@ -3813,112 +4293,112 @@ #: skycultures/polynesian/star_names.fab:5 msgid "A'a" -msgstr "" +msgstr "A'a" #: skycultures/polynesian/star_names.fab:6 msgid "Puana-kau" -msgstr "" +msgstr "Puana-kau" #: skycultures/polynesian/star_names.fab:7 #: skycultures/polynesian/star_names.fab:19 msgid "Pu'uhonua" -msgstr "" +msgstr "Pu'uhonua" #: skycultures/polynesian/star_names.fab:8 msgid "Kaulua-koko" -msgstr "" +msgstr "Kaulua-koko" #: skycultures/polynesian/star_names.fab:9 msgid "Hokupa'a" -msgstr "" +msgstr "Hokupa'a" #: skycultures/polynesian/star_names.fab:10 msgid "Hokule'a" -msgstr "" +msgstr "Hokule'a" #: skycultures/polynesian/star_names.fab:11 msgid "Hiki-analia" -msgstr "" +msgstr "Hiki-analia" #: skycultures/polynesian/star_names.fab:12 msgid "Holopuni" -msgstr "" +msgstr "Holopuni" #: skycultures/polynesian/star_names.fab:13 msgid "Hawaiki" -msgstr "" +msgstr "Hawaiki" #: skycultures/polynesian/star_names.fab:14 msgid "Humu" -msgstr "" +msgstr "Humu" #: skycultures/polynesian/star_names.fab:15 msgid "Keoe" -msgstr "" +msgstr "Keoe" #: skycultures/polynesian/star_names.fab:16 msgid "Hoku'ula" -msgstr "" +msgstr "Hoku'ula" #: skycultures/polynesian/star_names.fab:17 msgid "Lehua-Kona" -msgstr "" +msgstr "Lehua-Kona" #: skycultures/polynesian/star_names.fab:18 msgid "Ke ali'i o kona i ka lewa" -msgstr "" +msgstr "Ke ali'i o kona i ka lewa" #: skycultures/polynesian/star_names.fab:20 msgid "Hiku-kahi" -msgstr "" +msgstr "Hiku-kahi" #: skycultures/polynesian/star_names.fab:21 msgid "Hiku-lua" -msgstr "" +msgstr "Hiku-lua" #: skycultures/polynesian/star_names.fab:22 msgid "Hiku-kolu" -msgstr "" +msgstr "Hiku-kolu" #: skycultures/polynesian/star_names.fab:23 msgid "Hiku-ha" -msgstr "" +msgstr "Hiku-ha" #: skycultures/polynesian/star_names.fab:24 msgid "Hiku-lima" -msgstr "" +msgstr "Hiku-lima" #: skycultures/polynesian/star_names.fab:25 msgid "Hiku-ono" -msgstr "" +msgstr "Hiku-ono" #: skycultures/polynesian/star_names.fab:26 msgid "Hiku-pau" -msgstr "" +msgstr "Hiku-pau" #: skycultures/polynesian/star_names.fab:27 msgid "Kaulia" -msgstr "" +msgstr "Kaulia" #: skycultures/polynesian/star_names.fab:28 msgid "Mole Honua" -msgstr "" +msgstr "Mole Honua" #: skycultures/polynesian/star_names.fab:29 msgid "Ka-maile-mua" -msgstr "" +msgstr "Ka-maile-mua" #: skycultures/polynesian/star_names.fab:30 msgid "Ka-maile-hope" -msgstr "" +msgstr "Ka-maile-hope" #: skycultures/polynesian/star_names.fab:31 msgid "Ka Maka" -msgstr "" +msgstr "Ka Maka" #: skycultures/sami/constellation_names.eng.fab:1 msgid "Sarva the Elk" -msgstr "" +msgstr "Sarva the Elk" #: skycultures/sami/constellation_names.eng.fab:2 msgid "Favdna's Bow and Arrow" @@ -3934,11 +4414,11 @@ #: skycultures/sami/constellation_names.eng.fab:5 msgid "Favdna" -msgstr "" +msgstr "Favdna" #: skycultures/sami/constellation_names.eng.fab:6 msgid "The Runner" -msgstr "" +msgstr "The Runner" #: skycultures/sami/constellation_names.eng.fab:7 msgid "Morning Star" @@ -3958,39 +4438,39 @@ #: skycultures/tongan/constellation_names.eng.fab:1 msgid "Toloatonga" -msgstr "" +msgstr "Toloatonga" #: skycultures/tongan/constellation_names.eng.fab:2 msgid "Lua tangata" -msgstr "" +msgstr "Lua tangata" #: skycultures/tongan/constellation_names.eng.fab:3 msgid "Toloa" -msgstr "" +msgstr "Toloa" #: skycultures/tongan/constellation_names.eng.fab:4 msgid "Tu'ulalupe" -msgstr "" +msgstr "Tu'ulalupe" #: skycultures/tongan/constellation_names.eng.fab:5 msgid "Toloalahi" -msgstr "" +msgstr "Toloalahi" #: skycultures/tongan/constellation_names.eng.fab:6 msgid "Fungasia" -msgstr "" +msgstr "Fungasia" #: skycultures/tongan/constellation_names.eng.fab:7 msgid "Tuinga ika" -msgstr "" +msgstr "Tuinga ika" #: skycultures/tongan/constellation_names.eng.fab:8 msgid "Houmatoloa" -msgstr "" +msgstr "Houmatoloa" #: skycultures/tongan/constellation_names.eng.fab:9 msgid "Fatanalua" -msgstr "" +msgstr "Fatanalua" #: skycultures/tongan/constellation_names.eng.fab:10 msgid "Ae e'Uvea" @@ -3998,35 +4478,35 @@ #: skycultures/tongan/constellation_names.eng.fab:11 msgid "Kapakau'o'tafahi" -msgstr "" +msgstr "Kapakau'o'tafahi" #: skycultures/tongan/star_names.fab:1 msgid "Ma'afutoka" -msgstr "" +msgstr "Ma'afutoka" #: skycultures/tongan/star_names.fab:2 msgid "Ma'afulele" -msgstr "" +msgstr "Ma'afulele" #: skycultures/tongan/star_names.fab:3 msgid "Velitoa hififo" -msgstr "" +msgstr "Velitoa hififo" #: skycultures/tongan/star_names.fab:4 msgid "Velitoa hahake" -msgstr "" +msgstr "Velitoa hahake" #: skycultures/tongan/star_names.fab:5 msgid "Hikule'o" -msgstr "" +msgstr "Hikule'o" #: skycultures/tongan/star_names.fab:6 msgid "Monuafe" -msgstr "" +msgstr "Monuafe" #: skycultures/tongan/star_names.fab:7 msgid "Motuliki" -msgstr "" +msgstr "Motuliki" #: skycultures/tupi/constellation_names.eng.fab:1 msgid "White Ostrich" @@ -4042,7 +4522,7 @@ #: skycultures/tupi/constellation_names.eng.fab:4 msgid "Veado" -msgstr "" +msgstr "Veado" #: skycultures/tupi/constellation_names.eng.fab:5 msgid "Joykexo" @@ -4062,11 +4542,11 @@ #: skycultures/western/constellation_names.eng.fab:1 msgid "Aquila" -msgstr "" +msgstr "Aquila" #: skycultures/western/constellation_names.eng.fab:2 msgid "Andromeda" -msgstr "" +msgstr "Andromeda" #: skycultures/western/constellation_names.eng.fab:3 msgid "Sculptor" @@ -4074,15 +4554,15 @@ #: skycultures/western/constellation_names.eng.fab:4 msgid "Ara" -msgstr "" +msgstr "Ara" #: skycultures/western/constellation_names.eng.fab:5 msgid "Libra" -msgstr "" +msgstr "Libra" #: skycultures/western/constellation_names.eng.fab:7 msgid "Aries" -msgstr "" +msgstr "Aries" #: skycultures/western/constellation_names.eng.fab:8 #: skycultures/western/constellation_names.eng.fab:78 @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Estrella de Kapteyn" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Rectándulu Coloráu" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Estrella de Luyten" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Boreal" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Austral" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Boreal" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Austral" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Austral" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Boreal" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Estrella de Barnard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Austral" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Boreal" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Estrella de Campbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Estrella Garnet" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Estrella de Babcock" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" @@ -5329,3 +5833,6 @@ #~ msgid "Kocab" #~ msgstr "Kocab" + +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/av.po stellarium-0.12.4/po/stellarium-skycultures/av.po --- stellarium-0.12.1/po/stellarium-skycultures/av.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/av.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Avaric \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:50+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/az.po stellarium-0.12.4/po/stellarium-skycultures/az.po --- stellarium-0.12.1/po/stellarium-skycultures/az.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/az.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2012-10-22 06:02+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-19 08:16+0000\n" "Last-Translator: Nadir Teymurov \n" "Language-Team: Azerbaijani \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-20 04:38+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -31,7 +31,7 @@ #: nebulae/default/ngc2000names.dat:222 msgid "Bear's Paw galaxy" -msgstr "" +msgstr "Ayı PÉ™ncÉ™si qalaktikası" #: nebulae/default/ngc2000names.dat:223 msgid "Beehive cluster" @@ -59,7 +59,7 @@ #: nebulae/default/ngc2000names.dat:229 msgid "Cigar Galaxy" -msgstr "" +msgstr "Siqara qalaktikası" #: nebulae/default/ngc2000names.dat:230 nebulae/default/ngc2000names.dat:231 #: nebulae/default/ngc2000names.dat:232 nebulae/default/ngc2000names.dat:233 @@ -92,7 +92,7 @@ #: nebulae/default/ngc2000names.dat:240 msgid "Centaurus A" -msgstr "" +msgstr "A Kentavr" #: nebulae/default/ngc2000names.dat:241 msgid "Christmas Tree cluster" @@ -163,7 +163,7 @@ #: nebulae/default/ngc2000names.dat:265 msgid "Andromeda Galaxy" -msgstr "" +msgstr "Andromeda qalaktikası" #: nebulae/default/ngc2000names.dat:266 msgid "Great Nebula in Orion" @@ -191,7 +191,7 @@ #: nebulae/default/ngc2000names.dat:272 msgid "Hubble's variable nebula" -msgstr "" +msgstr "Xabblın dÉ™yiÅŸÉ™n dumanlıqı" #: nebulae/default/ngc2000names.dat:273 msgid "Jewel Box" @@ -370,7 +370,7 @@ #: nebulae/default/ngc2000names.dat:329 msgid "ω Cen cluster" -msgstr "" +msgstr "ω Ken topası" #: nebulae/default/ngc2000names.dat:330 msgid "Ï Oph nebula" @@ -378,27 +378,27 @@ #: nebulae/default/ngc2000names.dat:331 msgid "Rim nebula" -msgstr "" +msgstr "SaÄŸanaq dumanlıqı" #: nebulae/default/ngc2000names.dat:332 msgid "Cat's Paw nebula" -msgstr "" +msgstr "PiÅŸiyin PÉ™ncÉ™si dumanlıqı" #: nebulae/default/ngc2000names.dat:333 msgid "War and Peace nebula" -msgstr "" +msgstr "MüharibÉ™ vÉ™ Sülh dumanlıqı" #: nebulae/default/ngc2000names.dat:334 msgid "Little Ghost nebula" -msgstr "" +msgstr "Kiçik Kabus dumanlıqı" #: nebulae/default/ngc2000names.dat:335 msgid "Little Gem nebula" -msgstr "" +msgstr "Kiçik Cavahir dumanlıqı" #: nebulae/default/ngc2000names.dat:336 msgid "Perseus A" -msgstr "" +msgstr "A Persey" #: nebulae/default/ngc2000names.dat:337 msgid "Fornax A" @@ -414,19 +414,19 @@ #: nebulae/default/ngc2000names.dat:340 msgid "Flame nebula" -msgstr "" +msgstr "Alov dumanlıqı" #: nebulae/default/ngc2000names.dat:341 msgid "Satellite cluster" -msgstr "" +msgstr "Peyk topası" #: nebulae/default/ngc2000names.dat:342 msgid "Thor's Helmet" -msgstr "" +msgstr "Torun DÉ™bilqÉ™si" #: nebulae/default/ngc2000names.dat:343 msgid "Caroline's cluster" -msgstr "" +msgstr "Karolinanın topası" #: nebulae/default/ngc2000names.dat:344 msgid "Ï„ Canis Majoris cluster" @@ -474,7 +474,7 @@ #: nebulae/default/ngc2000names.dat:355 msgid "Retina nebula" -msgstr "" +msgstr "Retina dumanlıqı" #: nebulae/default/ngc2000names.dat:356 msgid "Spirograph nebula" @@ -514,11 +514,11 @@ #: nebulae/default/ngc2000names.dat:365 msgid "Dragon nebula" -msgstr "" +msgstr "Æjdaha dumanlıqı" #: nebulae/default/ngc2000names.dat:366 msgid "Dragonfly cluster" -msgstr "" +msgstr "KÉ™pÉ™nÉ™k topası" #: nebulae/default/ngc2000names.dat:367 msgid "Elephant's Trunk nebula" @@ -531,7 +531,7 @@ #: nebulae/default/ngc2000names.dat:372 msgid "Heart nebula" -msgstr "" +msgstr "ÃœrÉ™k dumanlıqı" #: nebulae/default/ngc2000names.dat:373 msgid "Heart-Shaped cluster" @@ -560,7 +560,7 @@ #: nebulae/default/ngc2000names.dat:380 nebulae/default/ngc2000names.dat:381 #: nebulae/default/ngc2000names.dat:382 msgid "Leo Triplet" -msgstr "" +msgstr "Åžir Tripleti" #: nebulae/default/ngc2000names.dat:383 msgid "McLeish's Object" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "ZÉ™ncirlÉ™nmiÅŸ qadın" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Teyat" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,238 +2516,494 @@ msgid "The Little Orphan Boy" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:1 -msgid "Holy Kettle" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:2 -msgid "Farm of Capital City" +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:3 -msgid "Dignity of King" +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:4 -msgid "Nomination" +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:5 -msgid "Gate of Sky" +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:6 -msgid "Equality" +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:7 -#: skycultures/korean/constellation_names.eng.fab:8 -#: skycultures/korean/constellation_names.eng.fab:220 -msgid "Helper" +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:9 -msgid "Position of Holy King" +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:10 -msgid "Neck of Dragon" +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:11 -msgid "Beheading" +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:12 -msgid "Judge" +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:13 -msgid "Flutting Flag" +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:14 -msgid "Javelin of Sky" +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:15 -msgid "Seat for Longevity" +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:16 -msgid "Oar for visitor" +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:17 -msgid "Milk of Sky" +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:18 -msgid "House of Queen" +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:19 -msgid "Ancient Chariot" +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:20 -msgid "Carriage for King" +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:21 -msgid "General of Cavalry" +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:22 -msgid "Cavalry of Emperor" +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:23 -msgid "General of Mobile Troops" +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:24 -msgid "East Road" +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:25 -msgid "Gate Bolt" +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:26 -msgid "Door Lock and Key" +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:27 -msgid "Penalty" +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:28 -msgid "Royal Hall" +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:29 -#: skycultures/korean/constellation_names.eng.fab:206 -msgid "Chamberlain" +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:30 -msgid "Sun" +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:31 -msgid "West Road" +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:32 -msgid "Seat of Emperor" +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:33 -msgid "Five Troops" +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:34 -msgid "River of Sky" +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:35 -msgid "Prayer for Progeny" +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:36 -msgid "Fish" -msgstr "Balıq" +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:37 -msgid "Forcast" +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:38 -msgid "Yard for Empresses" +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:39 -msgid "Holy Palace" +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:40 -msgid "Winnow" +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:41 -msgid "Outer Pestle" +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:42 -msgid "Chaff" +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:43 -msgid "Head of Town" +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:44 -msgid "Build" +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:45 -msgid "Fowl of Sky" +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:46 -msgid "Shrine of Sky" +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:48 -msgid "Northeastern Nations" +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:49 -msgid "Old Farmer" +#: skycultures/indian/star_names.fab:4 +msgid "Magha" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:50 -msgid "Snapping Turtle" +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:51 -msgid "Road for Emperor" +#: skycultures/indian/star_names.fab:6 +msgid "Swati" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:52 -msgid "The Weaver" +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:53 -msgid "River adjoining Tower" +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:55 -msgid "Drum of River" +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:56 -msgid "Drumstick of Sky" +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:58 -msgid "Cow leading Man" +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:59 -msgid "Bank Spread" +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:60 -msgid "Basket for Silkworm" +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:61 -msgid "Officer for Cart" +#: skycultures/indian/star_names.fab:14 +msgid "Atri" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:62 +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:1 +msgid "Holy Kettle" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:2 +msgid "Farm of Capital City" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:3 +msgid "Dignity of King" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:4 +msgid "Nomination" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:5 +msgid "Gate of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:6 +msgid "Equality" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:7 +#: skycultures/korean/constellation_names.eng.fab:8 +#: skycultures/korean/constellation_names.eng.fab:220 +msgid "Helper" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:9 +msgid "Position of Holy King" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:10 +msgid "Neck of Dragon" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:11 +msgid "Beheading" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:12 +msgid "Judge" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:13 +msgid "Flutting Flag" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:14 +msgid "Javelin of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:15 +msgid "Seat for Longevity" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:16 +msgid "Oar for visitor" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:17 +msgid "Milk of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:18 +msgid "House of Queen" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:19 +msgid "Ancient Chariot" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:20 +msgid "Carriage for King" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:21 +msgid "General of Cavalry" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:22 +msgid "Cavalry of Emperor" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:23 +msgid "General of Mobile Troops" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:24 +msgid "East Road" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:25 +msgid "Gate Bolt" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:26 +msgid "Door Lock and Key" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:27 +msgid "Penalty" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:28 +msgid "Royal Hall" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:29 +#: skycultures/korean/constellation_names.eng.fab:206 +msgid "Chamberlain" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:30 +msgid "Sun" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:31 +msgid "West Road" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:32 +msgid "Seat of Emperor" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:33 +msgid "Five Troops" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:34 +msgid "River of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:35 +msgid "Prayer for Progeny" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:36 +msgid "Fish" +msgstr "Balıq" + +#: skycultures/korean/constellation_names.eng.fab:37 +msgid "Forcast" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:38 +msgid "Yard for Empresses" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:39 +msgid "Holy Palace" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:40 +msgid "Winnow" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:41 +msgid "Outer Pestle" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:42 +msgid "Chaff" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:43 +msgid "Head of Town" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:44 +msgid "Build" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:45 +msgid "Fowl of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:46 +msgid "Shrine of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:48 +msgid "Northeastern Nations" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:49 +msgid "Old Farmer" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:50 +msgid "Snapping Turtle" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:51 +msgid "Road for Emperor" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:52 +msgid "The Weaver" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:53 +msgid "River adjoining Tower" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:55 +msgid "Drum of River" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:56 +msgid "Drumstick of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:58 +msgid "Cow leading Man" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:59 +msgid "Bank Spread" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:60 +msgid "Basket for Silkworm" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:61 +msgid "Officer for Cart" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:62 msgid "Ferry of Sky" msgstr "" @@ -4434,8 +4914,8 @@ msgstr "Difda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Kursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteynin ulduzu" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Kapella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatriks" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnas" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Fakt" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saif" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Vazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeyze" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Qırmızı düzbucaqlı dördbucaq" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Kanopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Mulifeyn" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Vezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Vasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Qomeysa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Leytenin Ulduzu" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Kastor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Prosion" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Polluks" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Reqor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Teqmin" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Mussida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Akubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talita" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplasid" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alfard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Requl" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Åžeratan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zaviyava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Fad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alxiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megres" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Giena" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Akruks" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Alqorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Qakruks" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Xara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimoza" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Aliot" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Kor Karoli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindematriks" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Misar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spika" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alkor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Murfid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Tuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arktur" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Sirma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proksima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seqinus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kentavr" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Ä°zar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merqa" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "ZubeneÅŸamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Ferkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasix" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alfekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Cubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Akrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsik" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Kujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Korneforos" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalqeti" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasım" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesat" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Åžaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalxaq" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Qirtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Kebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Qrumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnardin Ulduzu" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Veqa" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Åželiak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "AliyÉ™" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Assella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Kempbelin Ulduzu" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Åžam" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "AlÅŸain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Alqedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Tovuz QuÅŸu" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualosin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalfa" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "NaÅŸira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafaj" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Qranat Ulduzu" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Alqedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Anxa" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadaxbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Xoman" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babkokun Ulduzu" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalqaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Åžeat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5324,6 +5828,9 @@ #~ msgid "Great Nebula in Andromeda" #~ msgstr "Andromeda dumanlığı" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kohab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ba.po stellarium-0.12.4/po/stellarium-skycultures/ba.po --- stellarium-0.12.1/po/stellarium-skycultures/ba.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ba.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:09+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bashkir \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:50+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/be.po stellarium-0.12.4/po/stellarium-skycultures/be.po --- stellarium-0.12.1/po/stellarium-skycultures/be.po 2013-04-14 12:30:35.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/be.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-04-07 05:06+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-05-10 07:42+0000\n" "Last-Translator: 375gnu \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-08 05:13+0000\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:50+0000\n" +"X-Generator: Launchpad (build 16723)\n" "Language: be_BY\n" "X-Poedit-SourceCharset: utf-8\n" @@ -592,7 +592,7 @@ msgid "Southern Integral Sign" msgstr "Паўднёвы знак інтÑґралу" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Скопішча «МарÑÐºÐ°Ñ Ð·Ð¾Ñ€ÐºÐ°Â»" @@ -636,6 +636,50 @@ msgid "S Normae cluster" msgstr "Скопішча S Ðарожніка" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Жанчына Ñž кайданах" @@ -1021,7 +1065,7 @@ msgid "The announcer of the southern Shinning one" msgstr "ПрадвеÑьніца паўднёвай зьзÑючай" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "ТÑÑÑ‚" @@ -1226,7 +1270,7 @@ msgstr "Ðдзіны дзіданоÑец" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Гадар" @@ -2114,6 +2158,186 @@ msgid "Banner of Three Stars" msgstr "СьцÑг трох зорак" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "ÐœÑÐºÐºÐ°Ñ†ÐµÐ»Ð°Ñ Ñ‡Ð°Ñ€Ð°Ð¿Ð°Ñ…Ð° I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Рыба, ÑÐºÐ°Ñ Ð»Ñціць, I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Рыба, ÑÐºÐ°Ñ Ð»Ñціць, II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Рыба, ÑÐºÐ°Ñ Ð»Ñціць, III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Рыба, ÑÐºÐ°Ñ Ð»Ñціць, IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Рыба, ÑÐºÐ°Ñ Ð»Ñціць, V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Рыба, ÑÐºÐ°Ñ Ð»Ñціць, VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "ЗаходнÑÑ Ð·Ð¾Ñ€ÐºÐ° замка" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Жораў V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "ШÑÑьць Ð¦Ð·Ñ VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "ЦÑньхуньÑінанÑін" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "ÐÑƒÑ‚Ñ€Ð°Ð½Ñ‹Ñ ÑьлÑды I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "ÐÑƒÑ‚Ñ€Ð°Ð½Ñ‹Ñ ÑьлÑды II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "ÐÑƒÑ‚Ñ€Ð°Ð½Ñ‹Ñ ÑьлÑды III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "ÐÑƒÑ‚Ñ€Ð°Ð½Ñ‹Ñ ÑьлÑды IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "ÐÑƒÑ‚Ñ€Ð°Ð½Ñ‹Ñ ÑьлÑды V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "ÐÑƒÑ‚Ñ€Ð°Ð½Ñ‹Ñ ÑьлÑды VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Дзюба I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Дзюба II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Дзюба III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Дзюба IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Дзюба V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Дзюба VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Дзюба VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Трохкутнік I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Трохкутнік II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Шаофу" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Ð’ÑÐ»Ñ–ÐºÐ°Ñ Ð¿Ð°ÑžÐ´Ð½Ñ‘Ð²Ð°Ñ Ð·Ð¾Ñ€ÐºÐ°" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "ÐÑбеÑны ґенÑрал X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "ÐÑбеÑны ґенÑрал XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "ÐÑбеÑÐ½Ð°Ñ Ñ‚ÑƒÑ€Ð¼Ð° I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "ÐÑбеÑÐ½Ð°Ñ Ñ‚ÑƒÑ€Ð¼Ð° II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "ÐÑбеÑÐ½Ð°Ñ Ñ‚ÑƒÑ€Ð¼Ð° III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "ÐÑбеÑÐ½Ð°Ñ Ñ‚ÑƒÑ€Ð¼Ð° IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "ÐÑбеÑÐ½Ð°Ñ Ñ‚ÑƒÑ€Ð¼Ð° V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "ÐÑбеÑÐ½Ð°Ñ Ñ‚ÑƒÑ€Ð¼Ð° VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "ХвоÑÑ‚ I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "ХвоÑÑ‚ II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "ХвоÑÑ‚ III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "ХвоÑÑ‚ IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "ХвоÑÑ‚ V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "ХвоÑÑ‚ VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "ХвоÑÑ‚ VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "ХвоÑÑ‚ VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "ХвоÑÑ‚ IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "ПÑÑ€ÑднÑÑ Ð½Ð°Ð³Ð° быка" @@ -2294,6 +2518,262 @@ msgid "The Little Orphan Boy" msgstr "Маленькі хлопчык-Ñірата" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Сетка)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "СьвÑÑ‚Ñ‹ кацёл" @@ -4436,8 +4916,8 @@ msgstr "Дыфда" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Ван МаанÑн 2" +msgid "van Maanen 2" +msgstr "ван МаанÑн 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4584,739 +5064,763 @@ msgstr "ÐльдÑбаран" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "ÐŸÑƒÑ€Ð¿ÑƒÑ€Ð¾Ð²Ð°Ñ Ð·Ð¾Ñ€ÐºÐ° Гайнда" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "КурÑа" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Зорка КаптÑйна" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Рыґель" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "КапÑла" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "БÑлÑтрыкÑ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "ÐльнаÑ" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Ðігаль" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Мінтака" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "ÐрнÑб" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "ÐœÑÑ–Ñа" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "ÐльнілÑм" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Факт" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Ðльнітак" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Саіф" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Вазн" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "БÑÑ‚ÑльґейзÑ" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "ÐœÑнкалінан" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "ПропуÑ" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Чырвоны праÑтакутнік" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Фуруд" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Мірзам" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "КанопуÑ" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Зорка ПлаÑкета" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Ðльгена" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "ÐœÑбÑута" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "СырыюÑ" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Ðзара" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "МуліфÑйн" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "ÐœÑкбуда" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Ð’ÑзÑн*" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "БÑрнÑÑ 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "ВаÑат*" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Ðлюдра" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "ÒамÑÑ–Ñа" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Зорка ЛейтÑна" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "КаÑтор" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Працыён" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ПалукÑ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "ÐааÑ" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "РÑґар" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "ТÑґмÑн" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Ðвіёр*" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "МуÑцыда" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "ÐÑÑÐ»ÑŽÑ Ð‘Ð°Ñ€ÑаліÑ" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "ÐÑÑÐ»ÑŽÑ ÐÑžÑтраліÑ" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "ÐкубÑнÑ" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "ТаліÑа" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Сугаіл" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "МіÑплÑцыдуÑ" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "ÐÑьпідыÑка" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Ðльфард" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "ÐльтÑрф" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Субра" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "РаÑалаÑ" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "РÑґул" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "ÐзафÑра" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Ð¢Ð°Ð½Ñ–Ñ Ð‘Ð°Ñ€ÑаліÑ" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Ðльґеба" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Ð¢Ð°Ð½Ñ–Ñ ÐÑžÑтраліÑ" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "ÐлькеÑ" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "ÐœÑрак" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Дубге" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "ЗоÑма" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Хорт" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "ÐÐ»ÑŽÐ»Ñ ÐÑžÑтраліÑ" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "ÐÐ»ÑŽÐ»Ñ ÐÑžÑтраліÑ" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "ДжаўÑар" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "ДÑнÑбала" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "ЗавіÑва" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Фад" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Ðльхіба" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "ÐœÑÒ‘Ñ€Ñз" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "ДжÑнаг" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "ЗаніÑг" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ÐкрукÑ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Ðлґораб" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ÒакрукÑ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Хара" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Парыма" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Мімоза" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Ðліёт" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Кор Каролі" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "ВіндÑміÑтрыкÑ" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Міцар" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Сьпіка" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Ðлькор" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Ðлькайд" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Муфрыд" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Субан" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "ÐœÑнкент" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Ðрктур" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Сырма" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "ПрокÑіма" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "СÑґінуÑ" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Рыґіль КентаўруÑ" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Ізар" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "ÐœÑрґа" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Кахаб" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "ЗубÑн-аль-джÑнубі" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "ÐÑкар" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "ЗубÑн-аш-шамалі" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "ФÑркад" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "ÐлькалюропÑ" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "ЭдаÑÑ–Ñ…" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "ÐуÑакан" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "ÐльфÑка" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Унукальгаі" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Джуба" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Ðкраб" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "МарÑык" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Ед Прыёр" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Ед ПаÑÑ‚Ñрыёр" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Ðль ÐÑ–ÑÑ‚" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "КаÑм" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ÐнтарÑÑ" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "КарнÑфароÑ" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Марфік" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "ÐтрыÑ" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "ÐльракіÑ" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Сабік" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "РаÑальґеÑÑ–" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "РаÑтабан" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "МааÑым" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "ЛеÑаÑ" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Ільдун" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Шаўла" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Ð Ð°Ñ Ðльгаґ" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Òіртаб" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Кебальраі" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Òруміюм" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Этамін" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Зорка Барнарда" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "ÐльнаÑл" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "ÐšÐ°ÑžÑ ÐœÑдыÑ" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "ÐšÐ°ÑžÑ ÐÑžÑтраліÑ" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "ÐšÐ°ÑžÑ Ð‘Ð°Ñ€ÑаліÑ" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Ð’Ñга" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "ШÑліÑк" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Ðункі" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "ÐльÑ" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "СулÑфат" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "ÐÑцÑла" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "ÐльтаіÑ" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Ðркаб" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Рукбат" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "ÐльбірÑо" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Зорка КÑмпбÑла" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Шам" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "ТаразÑд" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Ðльтаір" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Ðльшаін" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "ÐльджÑдзі" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Дабіг" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Садр" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Пікак" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Рутанеў" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "СуалÑцын" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "ДÑнÑб" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Ðльбалі" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Кітальфа" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "ÐльдÑрамін" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Ðльфірк" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "СадальÑуд" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Ðашыра" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "ÐзÑльфафаґе" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "ÒÑ€Ð°Ð½Ð°Ñ‚Ð°Ð²Ð°Ñ Ð·Ð¾Ñ€ÐºÐ°" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Эніф" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "ДÑнÑб ÐльджÑдзі" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Кургаг" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "СадальмÑлік" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Ðльнаір" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Бігам" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ðнха" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "СадахбіÑ" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Круґер 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Сітула" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Гомам" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Матар" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Зорка БÑбкапа" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Садальбары" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Скат" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Фамальгаўт" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "ШÑат" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Маркаб" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Эраі" @@ -5335,6 +5839,9 @@ #~ msgid "Ofice for Construction" #~ msgstr "Чыноўнік па забеÑьпÑчÑньні" +#~ msgid "Van Maanen 2" +#~ msgstr "Ван МаанÑн 2" + #~ msgid "Kocab" #~ msgstr "Кохаб" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/bg.po stellarium-0.12.4/po/stellarium-skycultures/bg.po --- stellarium-0.12.1/po/stellarium-skycultures/bg.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/bg.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-12-30 11:31+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Ивица от три звезди" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Преден крак на бик" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "СвещениÑÑ‚ чайник" @@ -2485,7 +2965,7 @@ #: skycultures/korean/constellation_names.eng.fab:50 msgid "Snapping Turtle" -msgstr "" +msgstr "Кайманова коÑтенурка" #: skycultures/korean/constellation_names.eng.fab:51 msgid "Road for Emperor" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Ðлдебаран" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 +msgid "Kapteyn's Star" +msgstr "" + +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Ригел" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Капела" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Минтака" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Бетелгейзе" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "КанопуÑ" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "СириуÑ" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "КаÑтор" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Процион" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ПолукÑ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Ðлфард" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Регул" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Денебола" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Ðлиот" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Кор Кароли" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Мицар" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Спика" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Ðлкор" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Ðрктур" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "ПрокÑима" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ÐнтареÑ" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Звезда на Барнард" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Вега" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Ðлбирео" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Ðлтаир" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Денеб" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Фомалхаут" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/bh.po stellarium-0.12.4/po/stellarium-skycultures/bh.po --- stellarium-0.12.1/po/stellarium-skycultures/bh.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/bh.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:10+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bihari \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/bi.po stellarium-0.12.4/po/stellarium-skycultures/bi.po --- stellarium-0.12.1/po/stellarium-skycultures/bi.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/bi.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bislama \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/bn.po stellarium-0.12.4/po/stellarium-skycultures/bn.po --- stellarium-0.12.1/po/stellarium-skycultures/bn.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/bn.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2012-07-07 11:39+0000\n" -"Last-Translator: Tanmoy Saha \n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-10 11:49+0000\n" +"Last-Translator: অনিরà§à¦¬à¦¾à¦£ আইন \n" "Language-Team: Bengali \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:50+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -92,7 +92,7 @@ #: nebulae/default/ngc2000names.dat:240 msgid "Centaurus A" -msgstr "" +msgstr "সেনà§à¦Ÿà¦°à¦¾à¦¸ (মহিষাসà§à¦°) A" #: nebulae/default/ngc2000names.dat:241 msgid "Christmas Tree cluster" @@ -163,7 +163,7 @@ #: nebulae/default/ngc2000names.dat:265 msgid "Andromeda Galaxy" -msgstr "" +msgstr "অà§à¦¯à¦¾à¦¨à§à¦¡à§à¦°à§‹à¦®à¦¿à¦¡à¦¾ ছায়াপথ" #: nebulae/default/ngc2000names.dat:266 msgid "Great Nebula in Orion" @@ -191,11 +191,11 @@ #: nebulae/default/ngc2000names.dat:272 msgid "Hubble's variable nebula" -msgstr "" +msgstr "হাবল à¦à¦° পরিবরà§à¦¤à¦¨à¦¶à§€à¦² নীহারিকা" #: nebulae/default/ngc2000names.dat:273 msgid "Jewel Box" -msgstr "অলংকারের বাকà§à¦¸" +msgstr "রতà§à¦¨à§‡à¦° বাকà§à¦¸" #: nebulae/default/ngc2000names.dat:274 msgid "Lace-work nebula" @@ -350,15 +350,15 @@ #: nebulae/default/ngc2000names.dat:322 msgid "Witch Head nebula" -msgstr "ডাইনির মসà§à¦¤à¦•" +msgstr "ডাইনির মসà§à¦¤à¦• নীহারিকা" #: nebulae/default/ngc2000names.dat:323 msgid "η Car nebula" -msgstr "ইটা কà§à¦¯à¦¼à¦¾à¦°à¦¿à¦¨à¦¾" +msgstr "ইটা কà§à¦¯à¦¼à¦¾à¦°à¦¿à¦¨à¦¾ নীহারিকা" #: nebulae/default/ngc2000names.dat:324 nebulae/default/ngc2000names.dat:325 msgid "γ Cas nebula" -msgstr "গামা কà§à¦¯à¦¼à¦¾à¦¸à¦¿à¦“পিয়া" +msgstr "গামা কà§à¦¯à¦¼à¦¾à¦¸à¦¿à¦“পিয়া নীহারিকা" #: nebulae/default/ngc2000names.dat:326 msgid "κ Cru cluster" @@ -366,7 +366,7 @@ #: nebulae/default/ngc2000names.dat:327 nebulae/default/ngc2000names.dat:328 msgid "λ Cen nebula" -msgstr "লà§à¦¯à¦¾à¦®à¦¡à¦¾ সেনà§à¦Ÿà¦¾à¦°à¦¿" +msgstr "লà§à¦¯à¦¾à¦®à¦¡à¦¾ সেনà§à¦Ÿà¦¾à¦°à¦¿ নীহারিকা" #: nebulae/default/ngc2000names.dat:329 msgid "ω Cen cluster" @@ -374,47 +374,47 @@ #: nebulae/default/ngc2000names.dat:330 msgid "Ï Oph nebula" -msgstr "রো অফিউকি" +msgstr "রো অফিউকি নীহারিকা" #: nebulae/default/ngc2000names.dat:331 msgid "Rim nebula" -msgstr "" +msgstr "মহাসাগরীয় নীহারিকা" #: nebulae/default/ngc2000names.dat:332 msgid "Cat's Paw nebula" -msgstr "" +msgstr "বিড়ালের থাবা নীহারিকা" #: nebulae/default/ngc2000names.dat:333 msgid "War and Peace nebula" -msgstr "" +msgstr "যà§à¦¦à§à¦§ ও শানà§à¦¤à¦¿ নীহারিকা" #: nebulae/default/ngc2000names.dat:334 msgid "Little Ghost nebula" -msgstr "" +msgstr "কà§à¦·à§à¦¦à§à¦° পà§à¦°à§‡à¦¤ নীহারিকা" #: nebulae/default/ngc2000names.dat:335 msgid "Little Gem nebula" -msgstr "" +msgstr "কà§à¦·à§à¦¦à§à¦° রতà§à¦¨ নীহারিকা" #: nebulae/default/ngc2000names.dat:336 msgid "Perseus A" -msgstr "" +msgstr "পরশৠA" #: nebulae/default/ngc2000names.dat:337 msgid "Fornax A" -msgstr "" +msgstr "যজà§à¦žà¦•à§à¦£à§à¦¡ A" #: nebulae/default/ngc2000names.dat:338 msgid "Fornax B" -msgstr "" +msgstr "যজà§à¦žà¦•à§à¦£à§à¦¡ B" #: nebulae/default/ngc2000names.dat:339 msgid "de Mairan's nebula" -msgstr "" +msgstr "দে মিরান à¦à¦° নীহারিকা" #: nebulae/default/ngc2000names.dat:340 msgid "Flame nebula" -msgstr "" +msgstr "শিখা নীহারিকা" #: nebulae/default/ngc2000names.dat:341 msgid "Satellite cluster" @@ -422,7 +422,7 @@ #: nebulae/default/ngc2000names.dat:342 msgid "Thor's Helmet" -msgstr "" +msgstr "থর à¦à¦° শিরসà§à¦¤à§à¦°à¦¾à¦£" #: nebulae/default/ngc2000names.dat:343 msgid "Caroline's cluster" @@ -434,7 +434,7 @@ #: nebulae/default/ngc2000names.dat:345 msgid "Pencil nebula" -msgstr "" +msgstr "পেনà§à¦¸à¦¿à¦² নীহারিকা" #: nebulae/default/ngc2000names.dat:346 msgid "Supernova Factory" @@ -462,19 +462,19 @@ #: nebulae/default/ngc2000names.dat:352 msgid "Monkey Head nebula" -msgstr "" +msgstr "বানরের মসà§à¦¤à¦• নীহারিকা" #: nebulae/default/ngc2000names.dat:353 msgid "Lemon slice nebula" -msgstr "" +msgstr "লেবà§à¦° ফালি নীহারিকা" #: nebulae/default/ngc2000names.dat:354 msgid "Red spider nebula" -msgstr "" +msgstr "লাল মাকড়শা নীহারিকা" #: nebulae/default/ngc2000names.dat:355 msgid "Retina nebula" -msgstr "" +msgstr "অকà§à¦·à¦¿à¦ªà¦Ÿ নীহারিকা" #: nebulae/default/ngc2000names.dat:356 msgid "Spirograph nebula" @@ -494,7 +494,7 @@ #: nebulae/default/ngc2000names.dat:360 msgid "Cetus A" -msgstr "" +msgstr "তিমি A" #: nebulae/default/ngc2000names.dat:361 msgid "Cleopatra's Eye" @@ -514,7 +514,7 @@ #: nebulae/default/ngc2000names.dat:365 msgid "Dragon nebula" -msgstr "" +msgstr "ডà§à¦°à¦¾à¦—ন নীহারিকা" #: nebulae/default/ngc2000names.dat:366 msgid "Dragonfly cluster" @@ -527,11 +527,11 @@ #: nebulae/default/ngc2000names.dat:368 nebulae/default/ngc2000names.dat:369 #: nebulae/default/ngc2000names.dat:370 nebulae/default/ngc2000names.dat:371 msgid "Grus Quartet" -msgstr "" +msgstr "সারস (Grus) চতà§à¦·à§à¦Ÿà§Ÿ" #: nebulae/default/ngc2000names.dat:372 msgid "Heart nebula" -msgstr "" +msgstr "হৃদয় নীহারিকা" #: nebulae/default/ngc2000names.dat:373 msgid "Heart-Shaped cluster" @@ -551,7 +551,7 @@ #: nebulae/default/ngc2000names.dat:377 nebulae/default/ngc2000names.dat:378 msgid "Keenan's System" -msgstr "" +msgstr "কীনানের জগৎ" #: nebulae/default/ngc2000names.dat:379 msgid "Kidney Bean galaxy" @@ -560,7 +560,7 @@ #: nebulae/default/ngc2000names.dat:380 nebulae/default/ngc2000names.dat:381 #: nebulae/default/ngc2000names.dat:382 msgid "Leo Triplet" -msgstr "" +msgstr "লিও তà§à¦°à§Ÿà§€" #: nebulae/default/ngc2000names.dat:383 msgid "McLeish's Object" @@ -568,7 +568,7 @@ #: nebulae/default/ngc2000names.dat:384 msgid "Miniature Spiral" -msgstr "" +msgstr "কà§à¦·à§à¦¦à§à¦°à¦¾à§Ÿà¦¿à¦¤ সরà§à¦ªà¦¿à¦²à¦¾à¦•à§ƒà¦¤à¦¿" #: nebulae/default/ngc2000names.dat:385 msgid "Mirach's Ghost" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "বেড়ি পরান নারী" @@ -668,7 +712,7 @@ #: skycultures/arabic/constellation_names.eng.fab:9 msgid "The Greater Dog" -msgstr "বৃহত কà§à¦•à§à¦°" +msgstr "বৃহৎ কà§à¦•à§à¦°" #: skycultures/arabic/constellation_names.eng.fab:10 msgid "The Lesser Dog" @@ -773,7 +817,7 @@ #: skycultures/arabic/constellation_names.eng.fab:35 msgid "The Great Horse" -msgstr "সà§à¦¬à§ƒà¦¹à¦¤ অশà§à¦¬" +msgstr "সà§à¦¬à§ƒà¦¹à§Ž অশà§à¦¬" #: skycultures/arabic/constellation_names.eng.fab:36 msgid "Bearer of the Demon's Head" @@ -809,7 +853,7 @@ #: skycultures/arabic/constellation_names.eng.fab:44 msgid "The Greater Bear" -msgstr "সà§à¦¬à§ƒà¦¹à¦¤ ভলà§à¦²à§à¦•" +msgstr "সà§à¦¬à§ƒà¦¹à§Ž ভলà§à¦²à§à¦•" #: skycultures/arabic/constellation_names.eng.fab:45 msgid "The Lesser Bear" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "দকà§à¦·à¦¿à¦£ দà§à¦¯à§à¦¤à¦¿à¦° অনà§à¦¯à¦¤à¦® ঘোষক" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "তেজাত" @@ -1224,7 +1268,7 @@ msgstr "à¦à¦•à¦œà¦¨ à¦à¦•à¦¾ বলà§à¦²à¦®à¦§à¦¾à¦°à§€" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "হাদার" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,234 +2516,490 @@ msgid "The Little Orphan Boy" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:1 -msgid "Holy Kettle" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:2 -msgid "Farm of Capital City" +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:3 -msgid "Dignity of King" +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:4 -msgid "Nomination" +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:5 -msgid "Gate of Sky" +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:6 -msgid "Equality" +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:7 -#: skycultures/korean/constellation_names.eng.fab:8 -#: skycultures/korean/constellation_names.eng.fab:220 -msgid "Helper" +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:9 -msgid "Position of Holy King" +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:10 -msgid "Neck of Dragon" +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:11 -msgid "Beheading" +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:12 -msgid "Judge" +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:13 -msgid "Flutting Flag" +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:14 -msgid "Javelin of Sky" +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:15 -msgid "Seat for Longevity" +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:16 -msgid "Oar for visitor" +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:17 -msgid "Milk of Sky" +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:18 -msgid "House of Queen" +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:19 -msgid "Ancient Chariot" +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:20 -msgid "Carriage for King" +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:21 -msgid "General of Cavalry" +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:22 -msgid "Cavalry of Emperor" +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:23 -msgid "General of Mobile Troops" +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:24 -msgid "East Road" +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:25 -msgid "Gate Bolt" +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:26 -msgid "Door Lock and Key" +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:27 -msgid "Penalty" +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:28 -msgid "Royal Hall" +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:29 -#: skycultures/korean/constellation_names.eng.fab:206 -msgid "Chamberlain" +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:30 -msgid "Sun" +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:31 -msgid "West Road" +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:32 -msgid "Seat of Emperor" +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:33 -msgid "Five Troops" +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:34 -msgid "River of Sky" +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:35 -msgid "Prayer for Progeny" +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:36 -msgid "Fish" +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:37 -msgid "Forcast" +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:38 -msgid "Yard for Empresses" +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:39 -msgid "Holy Palace" +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:40 -msgid "Winnow" +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:41 -msgid "Outer Pestle" +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:42 -msgid "Chaff" +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:43 -msgid "Head of Town" +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:44 -msgid "Build" +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:45 -msgid "Fowl of Sky" +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:46 -msgid "Shrine of Sky" +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:48 -msgid "Northeastern Nations" +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:49 -msgid "Old Farmer" +#: skycultures/indian/star_names.fab:4 +msgid "Magha" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:50 -msgid "Snapping Turtle" +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:51 -msgid "Road for Emperor" +#: skycultures/indian/star_names.fab:6 +msgid "Swati" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:52 -msgid "The Weaver" +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:53 -msgid "River adjoining Tower" +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:55 -msgid "Drum of River" +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:56 -msgid "Drumstick of Sky" +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:58 -msgid "Cow leading Man" +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:59 -msgid "Bank Spread" +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:60 -msgid "Basket for Silkworm" +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" msgstr "" -#: skycultures/korean/constellation_names.eng.fab:61 +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:1 +msgid "Holy Kettle" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:2 +msgid "Farm of Capital City" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:3 +msgid "Dignity of King" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:4 +msgid "Nomination" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:5 +msgid "Gate of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:6 +msgid "Equality" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:7 +#: skycultures/korean/constellation_names.eng.fab:8 +#: skycultures/korean/constellation_names.eng.fab:220 +msgid "Helper" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:9 +msgid "Position of Holy King" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:10 +msgid "Neck of Dragon" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:11 +msgid "Beheading" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:12 +msgid "Judge" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:13 +msgid "Flutting Flag" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:14 +msgid "Javelin of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:15 +msgid "Seat for Longevity" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:16 +msgid "Oar for visitor" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:17 +msgid "Milk of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:18 +msgid "House of Queen" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:19 +msgid "Ancient Chariot" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:20 +msgid "Carriage for King" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:21 +msgid "General of Cavalry" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:22 +msgid "Cavalry of Emperor" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:23 +msgid "General of Mobile Troops" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:24 +msgid "East Road" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:25 +msgid "Gate Bolt" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:26 +msgid "Door Lock and Key" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:27 +msgid "Penalty" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:28 +msgid "Royal Hall" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:29 +#: skycultures/korean/constellation_names.eng.fab:206 +msgid "Chamberlain" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:30 +msgid "Sun" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:31 +msgid "West Road" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:32 +msgid "Seat of Emperor" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:33 +msgid "Five Troops" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:34 +msgid "River of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:35 +msgid "Prayer for Progeny" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:36 +msgid "Fish" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:37 +msgid "Forcast" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:38 +msgid "Yard for Empresses" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:39 +msgid "Holy Palace" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:40 +msgid "Winnow" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:41 +msgid "Outer Pestle" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:42 +msgid "Chaff" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:43 +msgid "Head of Town" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:44 +msgid "Build" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:45 +msgid "Fowl of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:46 +msgid "Shrine of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:48 +msgid "Northeastern Nations" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:49 +msgid "Old Farmer" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:50 +msgid "Snapping Turtle" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:51 +msgid "Road for Emperor" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:52 +msgid "The Weaver" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:53 +msgid "River adjoining Tower" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:55 +msgid "Drum of River" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:56 +msgid "Drumstick of Sky" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:58 +msgid "Cow leading Man" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:59 +msgid "Bank Spread" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:60 +msgid "Basket for Silkworm" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:61 msgid "Officer for Cart" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "ফারà§à¦•à¦¾à¦¡" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "আলকারূপসà§" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "à¦à¦¡à¦¾à¦¸à¦¿à¦š" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "নà§à¦¸à¦•à¦¾à¦®" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "আলপেকা" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "আনউকালহাই" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "সà§à¦šà§à¦¬à¦¾" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "আকরাব" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "মারসিক" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "à¦à¦¡ পà§à¦°à¦¾à§Ÿà¦°" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "à¦à¦¡ পষà§à¦Ÿà§‡à¦°à¦¿à§Ÿà¦°" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "আল নিয়াত" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "কà§à¦œà¦¾à¦®" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "জà§à¦¯à§‡à¦·à§à¦ à¦¾" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "করনেফোরোস" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "মারফিক" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "আটà§à¦°à¦¿à§Ÿà¦¾" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "আলরাকিস" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "সাবিক" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "রাস অà§à¦¯à¦¾à¦²à¦¿à¦—à§à¦¯à¦¾à¦¥à¦¿" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "রাসà§à¦Ÿà¦¾à¦¬à§à¦¯à¦¾à¦¨" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "মাশিম" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "লেসাথ" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "ইলডান" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "শà§à¦¯à¦¾à¦‰à¦²à¦¾" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "রাস অà§à¦¯à¦¾à¦²à¦—ি" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "গিরটাব" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "সেবালারি" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "গà§à¦°à§à¦®à¦¿à§Ÿà¦¾à¦®" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "à¦à¦Ÿà¦¾à¦®à¦¿à¦¨" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "বারনাডের নকà§à¦·à¦¤à§à¦°" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "আলনাসà§à¦²" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "কাউস মিডিয়া" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "কাউস অসà§à¦Ÿà§à¦°à¦¾à¦²à¦¿à¦¸" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "কাউস বোরিয়ালিস" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "অভিজিতà§â€" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "শেলিয়াক" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "নà§à¦¨à¦•à¦¿" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "আলিয়া" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "সà§à¦²à¦¾à¦«à¦¾à¦¤" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "অà§à¦¯à¦¾à¦¸à§à¦•à§‡à¦²à¦¾" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "অà§à¦¯à¦¾à¦²à¦Ÿà§‡à¦‡à¦¸" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "আরকাব" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "রূকবাট" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "অà§à¦¯à¦¾à¦²à¦¬à§‡à¦°à¦¿à¦“" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "কà§à¦¯à¦¾à¦®à§à¦ªà¦¬à§‡à¦²à§‡à¦° নকà§à¦·à¦¤à§à¦°" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "শাম" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "টারাজেড" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "শà§à¦°à¦¬à¦£à¦¾" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "আলশেইন" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "অà§à¦¯à¦¾à¦²à¦—েদি" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "ডেবি" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "সাদà§à¦°" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "ময়ূর" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "রোটানেভ" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "সà§à§Ÿà¦¾à¦²à§‹à¦¸à¦¿à¦¨" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "ডেনেব" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "অà§à¦¯à¦¾à¦²à¦¬à¦¾à¦²à¦¿" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "কিটাফা" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "অà§à¦¯à¦¾à¦²à¦¡à¦¾à¦°à¦®à¦¿à¦¨" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "অà§à¦¯à¦¾à¦²à¦«à¦¿à¦•" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "সাদালসà§à¦¦" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "নাসিরা" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "অà§à¦¯à¦¾à¦œà§‡à¦²à¦«à¦¾à¦«à§‡à¦œ" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "তামড়ি নকà§à¦·à¦¤à§à¦°" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "à¦à¦¨à¦¿à¦«" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "ডেনেব অà§à¦¯à¦¾à¦²à¦—েদি" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "কà§à¦°à¦¾à¦¹" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "সাদালমেলিক" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "অà§à¦¯à¦¾à¦¨à¦¨à§‡à§Ÿà¦¾à¦°" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "বিহাম" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "আনচা" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "সাডাচবি" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "কà§à¦°à§à¦—ার ৬০" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "শিটà§à¦²à¦¾" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "হোমà§à¦¯à¦¾à¦¨" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "মাতার" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "বà§à¦¯à¦¾à¦¬à¦•à§€à¦° নà§à¦•à§à¦·à¦¤à§à¦°" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "সাদালবà§à¦¯à¦¾à¦°à¦¿" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "সà§à¦•à¦¾à¦Ÿ" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "ফমà§à¦¯à¦¾à¦²à¦¹à¦Ÿ" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "সà§à¦šà¦¿à¦Ÿ" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "মারকাব" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "ইরি" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/bo.po stellarium-0.12.4/po/stellarium-skycultures/bo.po --- stellarium-0.12.1/po/stellarium-skycultures/bo.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/bo.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-12-30 11:57+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tibetan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/br.po stellarium-0.12.4/po/stellarium-skycultures/br.po --- stellarium-0.12.1/po/stellarium-skycultures/br.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/br.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-02-15 11:05+0000\n" "Last-Translator: Guybrush88 \n" "Language-Team: Breton \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/bs.po stellarium-0.12.4/po/stellarium-skycultures/bs.po --- stellarium-0.12.1/po/stellarium-skycultures/bs.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/bs.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-12-30 11:28+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ca.po stellarium-0.12.4/po/stellarium-skycultures/ca.po --- stellarium-0.12.1/po/stellarium-skycultures/ca.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ca.po 2013-09-07 15:50:48.000000000 +0000 @@ -10,15 +10,15 @@ msgstr "" "Project-Id-Version: ca\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2013-01-27 17:43+0000\n" "Last-Translator: Joan Salvat \n" "Language-Team: Català \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -593,7 +593,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -637,6 +637,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "La Dona Encadenada" @@ -1022,7 +1066,7 @@ msgid "The announcer of the southern Shinning one" msgstr "El que anuncia la brillant del sud" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1227,7 +1271,7 @@ msgstr "Un sol dels llancers" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2115,6 +2159,186 @@ msgid "Banner of Three Stars" msgstr "Pancarta de les Tres Estrelles" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Pota de Brau" @@ -2295,6 +2519,262 @@ msgid "The Little Orphan Boy" msgstr "El petit orfe" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Caldera Sagrada" @@ -4437,8 +4917,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4585,739 +5065,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Estel de Kapteyn" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Rectangle Vermell" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Estel de Luyten" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pòl·lux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Pròxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Pròxima del Centaure" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphecca" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Arrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Estel de Barnard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Nash" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Ruchbah" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Estel de Campbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Alfa de la Sageta" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Estel Granat" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Estel de Babcock" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5344,3 +5848,6 @@ #~ msgid "Kocab" #~ msgstr "Kocab" + +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ce.po stellarium-0.12.4/po/stellarium-skycultures/ce.po --- stellarium-0.12.1/po/stellarium-skycultures/ce.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ce.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:12+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chechen \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ckb.po stellarium-0.12.4/po/stellarium-skycultures/ckb.po --- stellarium-0.12.1/po/stellarium-skycultures/ckb.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ckb.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-12-26 14:36+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kurdish (Sorani) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:59+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/cs.po stellarium-0.12.4/po/stellarium-skycultures/cs.po --- stellarium-0.12.1/po/stellarium-skycultures/cs.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/cs.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-17 21:42+0000\n" -"Last-Translator: ZbynÄ›k Schwarz \n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-28 08:59+0000\n" +"Last-Translator: Martin ÄŒudek \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-29 04:40+0000\n" +"X-Generator: Launchpad (build 16738)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -159,7 +159,7 @@ #: nebulae/default/ngc2000names.dat:264 msgid "Great Cluster in Hercules" -msgstr "Velké hvÄ›zdokupy v Herkulu" +msgstr "Velká hvÄ›zdokupa v Herkulu" #: nebulae/default/ngc2000names.dat:265 msgid "Andromeda Galaxy" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "Jižní znaménko integrálu" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "HvÄ›zdokupa hvÄ›zdice" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "HvÄ›zdokupa S Normae" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Spoutaná žena" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "Hlasatel jižního svítícího" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "Jediný z nosiÄů kopí" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Prapor se tÅ™emi hvÄ›zdami" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "Kožnatka I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Létající ryba I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Létající ryba II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Létající ryba III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Létající ryba IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Létající ryba V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Létající ryba VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "Západní Gouiqanská hvÄ›zda" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Čáp V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "Six Jias VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "Tianhunxinanxing" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "VnitÅ™ní kroky I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "VnitÅ™ní kroky II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "VnitÅ™ní kroky III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "VnitÅ™ní kroky IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "VnitÅ™ní kroky V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "VnitÅ™ní kroky VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Zobák I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Zobák II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Zobák III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Zobák IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Zobák V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Zobák VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Zobák VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Trojúhelník I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Trojúhelník II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Shaofu" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Velká jižní hvÄ›zda" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "Nebeský generál X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "Nebeský generál XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Nebeské vÄ›zení I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Nebeské vÄ›zení II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Nebeské vÄ›zení III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Nebeské vÄ›zení IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Nebeské vÄ›zení V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Nebeské vÄ›zení VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Ocas I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Ocas II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Ocas III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Ocas IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Ocas V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Ocas VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Ocas VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Ocas VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Ocas IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "PÅ™ední noha býka" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "Malý osiÅ™elý chlapec" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Nebeská konvice" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "van Maanen 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Hidnova rudá hvÄ›zda" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteynova hvÄ›zda" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "ÄŒervený obdélník" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Plaskettova hvÄ›zda" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Luytenova hvÄ›zda" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Innesova hvÄ›zda" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Przybylského hvÄ›zda" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnardova hvÄ›zda" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Campbellova hvÄ›zda" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Besselova hvÄ›zda" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Garnetova hvÄ›zda" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babcockova hvÄ›zda" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5338,3 +5842,6 @@ #~ msgid "Ofice for Construction" #~ msgstr "Stavební úřad" + +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/cv.po stellarium-0.12.4/po/stellarium-skycultures/cv.po --- stellarium-0.12.1/po/stellarium-skycultures/cv.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/cv.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:13+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chuvash \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/cy.po stellarium-0.12.4/po/stellarium-skycultures/cy.po --- stellarium-0.12.1/po/stellarium-skycultures/cy.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/cy.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-12-30 11:54+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Welsh \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/da.po stellarium-0.12.4/po/stellarium-skycultures/da.po --- stellarium-0.12.1/po/stellarium-skycultures/da.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/da.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-10-28 09:42+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" "X-Poedit-Country: DENMARK\n" "X-Poedit-Language: Danish\n" @@ -592,7 +592,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -636,6 +636,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1021,7 +1065,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1226,7 +1270,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2114,6 +2158,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2294,6 +2518,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4436,7 +4916,7 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4584,739 +5064,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "PÃ¥fuglestjernen" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/de.po stellarium-0.12.4/po/stellarium-skycultures/de.po --- stellarium-0.12.1/po/stellarium-skycultures/de.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/de.po 2013-09-07 15:50:48.000000000 +0000 @@ -9,15 +9,15 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-04-14 17:48+0000\n" -"Last-Translator: wschmidt \n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-25 10:43+0000\n" +"Last-Translator: gzotti \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-15 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-08-26 04:39+0000\n" +"X-Generator: Launchpad (build 16738)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -592,7 +592,7 @@ msgid "Southern Integral Sign" msgstr "Südliches Integralzeichen" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Seestern-Haufen" @@ -636,6 +636,50 @@ msgid "S Normae cluster" msgstr "S Normae-Haufen" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Spiralhaufen" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "Surfboard-Galaxie" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "Staubsaugergalaxie" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "Haarföhn-Galaxie" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "Coddingtons Nebel" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "ε Ori Nebel" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Fath 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "Flemings Dreieckiger Nebel" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Graffs Haufen" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "Verlorene Galaxie" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Die angekettete Frau (Andromeda)" @@ -1021,7 +1065,7 @@ msgid "The announcer of the southern Shinning one" msgstr "Herald des Südlichen Strahlenden" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1226,7 +1270,7 @@ msgstr "Einzelner des Lanzenträgers" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2114,6 +2158,186 @@ msgid "Banner of Three Stars" msgstr "Drei-Sterne Banner" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "Weichschildkröte I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Fliegender Fisch I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Fliegender Fisch II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Fliegender Fisch III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Fliegender Fisch IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Fliegender Fisch V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Fliegender Fisch VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Kranich V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Innere Stufen I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Innere Stufen II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Innere Stufen III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Innere Stufen IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Innere Stufen V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Innere Stufen VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Schnabel I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Schnabel II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Schnabel III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Schnabel IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Schnabel V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Schnabel VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Schnabel VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Dreieck I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Dreieck II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Großer Südlicher Stern" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "Himmlischer General X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "Himmlischer General XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Himmlisches Gefängnis I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Himmlisches Gefängnis II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Himmlisches Gefängnis III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Himmlisches Gefängnis IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Himmlisches Gefängnis V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Himmlisches Gefängnis VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Schwanz I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Schwanz II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Schwanz III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Schwanz IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Schwanz V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Schwanz VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Schwanz VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Schwanz VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Schwanz IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Vorderbein des Stiers" @@ -2294,6 +2518,262 @@ msgid "The Little Orphan Boy" msgstr "Der kleine Waisenknabe" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Heiliger Kessel" @@ -4436,7 +4916,7 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "van Maanen 2" #: skycultures/western/star_names.fab:8 @@ -4584,739 +5064,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Hinds Purpurstern" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteyns Stern" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Beteigeuze" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Rotes Rechteck" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Plasketts Stern" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Luytens Stern" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Prokyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Innes Stern" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Przybylskis Stern" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phekda" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arktur" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnards Pfeilstern" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Campbells Stern" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Svalocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Bessels Stern" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Granatstern" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babcocks Stern" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5341,5 +5845,8 @@ #~ msgid "Hubble's variable neb" #~ msgstr "Hubbles veränderlicher Nebel" +#~ msgid "Van Maanen 2" +#~ msgstr "van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kochab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/dv.po stellarium-0.12.4/po/stellarium-skycultures/dv.po --- stellarium-0.12.1/po/stellarium-skycultures/dv.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/dv.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-02-12 11:45+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Divehi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/el.po stellarium-0.12.4/po/stellarium-skycultures/el.po --- stellarium-0.12.1/po/stellarium-skycultures/el.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/el.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-12-30 11:25+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Greek, Modern (1453-) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:53+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Τεγιάτ" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "ΧάνταÏ" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "ΛάβαÏο των ΤÏιών ΑστέÏων" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "ΜπÏοστινό πόδι του ΤαÏÏου" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "Το ΜικÏÏŒ ΟÏφανό ΑγόÏι" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "ΙεÏή ΚατσαÏόλα" @@ -4434,7 +4914,7 @@ msgstr "Δίφδα" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Λαμπαδίας ή ΑλδεβαÏάν" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "ΚοÏÏσα" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Ρίγκελ" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "ΔίφÏος" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "ΜπέλατÏιξ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Άλναθ" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Îιχάλ" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Μιντάκα" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "ΑÏνέμπ" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Αλνιλάμ" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Αλνιτάκ" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "ΣαÎφ" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Βαζν (ΒάÏος)" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Βετελγέζης" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Μενκαλινάν" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "ΦουÏοÏντ" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "ΜιÏζάμ" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Κάνωπος" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Αλένα" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "ΜεμπσοÏτα" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "ΣείÏιος" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "ΑδάÏα" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Μουλιφέιν" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "ΜεκμποÏντα" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Ουέζεν" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Βασάτ" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "ΑλοÏδÏα" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Γκομέισα" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "ΚάστωÏ" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "ΠÏοκÏων" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ΠολυδεÏκης" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Îαός" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "ΡέγκοÏ" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "ΑβιόÏ" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Μουσκίντα" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Όνος ΜποÏεάλις" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Ακουμπένς (δαγκάνες)" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "ΣουχαÎλ (Κάνωπος)" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Μιαπλασίντους" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Ασπιδίσκη" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "ΆλφαÏντ" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Ρασάλας" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Βασιλίσκος" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "ΑδαφέÏα" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Τάνια ΜποÏεάλις" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Τάνια ΑουστÏάλις" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Αλκές" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "ΜέÏακ" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Îτουμπέ" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "ΤσεÏτάν" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "ΑλοÏλα ΜποÏεάλις" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Δηνεβόλα" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "ΜεγκÏέζ" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Γκιενάχ" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ΆκÏουζ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "ΑλγκοÏάμπ" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ΓκάκÏουζ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "ΧαÏά" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Μιμόζα" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Αλιόθ" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "ΚαÏδία ΚαÏόλου" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Αμπελοσυλλέκτης (ΒιντεμιατÏίζ)" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "ΜιζάÏ" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Στάχυς" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Αλκάιντ" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "ΜουφÏίντ" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Θουμπάν" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Μένκεντ" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "ΑÏκτοÏÏος" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "ΣÏÏμα" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Σεγίνος" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "ÎεκκάÏ" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Αλ ΚαλαÏÏοψ (Ραβδί βοσκοÏ)" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Εντασίχ" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Îουσάκαν" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Ουνουκαλχάι" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "ÎτσοÏμπα" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Γεντ ΠÏιόÏ" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Γιεντ ΠοστέÏιοÏ" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Αλ Îιγιάτ" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Κουγιάμ" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ΑντάÏης" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "ΚεÏασφόÏος" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "ΜάÏφικ" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Ρασταμπάν" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Λεσάθ" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Σάουλα" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Ρας Αλχάγκ" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "ΓκÏοÏμιουμ" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Κάους Μέντια" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Κάους ΑουστÏάλις" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Κάους ΜποÏεάλις" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Βέγας" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Σελιάκ" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "ÎοÏνκι" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Άλυα" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "ΑλταÎÏ‚" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "ΑλμπίÏεο" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "ΤαÏαζέντ" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "ΑλτάιÏ" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "ΑλσαÎν" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Îταμπί" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "ΣαντÏ" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "α Ταώ (Παγώνι)" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Ροτανέβ" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Îτένεμπ" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Αλμπάλι" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Κιτάλφα" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "ΑλντεÏαμίν" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "ÎασίÏα" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Ενίφ" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Σανταλμελίκ" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Άνκα" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Σαντάχβια" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Χόμαμ" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "ΜατάÏ" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "ΣανταλμπαÏί" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Σκατ" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "ΦομαλχοÏÏ„" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "ΜαÏκάβ" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/en.po stellarium-0.12.4/po/stellarium-skycultures/en.po --- stellarium-0.12.1/po/stellarium-skycultures/en.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/en.po 2013-09-07 15:50:48.000000000 +0000 @@ -6,15 +6,15 @@ msgstr "" "Project-Id-Version: stellarium 0.9.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-05-07 20:47+0000\n" "Last-Translator: Fabien Chéreau \n" "Language-Team: English\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:52+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -589,7 +589,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -633,6 +633,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1018,7 +1062,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1223,7 +1267,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2111,6 +2155,186 @@ msgid "Banner of Three Stars" msgstr "Banner of Three Stars" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Bull's Foreleg" @@ -2291,6 +2515,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4433,7 +4913,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4581,738 +5061,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/en_AU.po stellarium-0.12.4/po/stellarium-skycultures/en_AU.po --- stellarium-0.12.1/po/stellarium-skycultures/en_AU.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/en_AU.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-10-28 09:42+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:59+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "The Shackled Woman" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Banner of Three Stars" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Bull's Foreleg" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Holy Kettle" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/en_CA.po stellarium-0.12.4/po/stellarium-skycultures/en_CA.po --- stellarium-0.12.1/po/stellarium-skycultures/en_CA.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/en_CA.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2011-10-14 18:58+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: English (Canada) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:59+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "The Shackled Woman" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Banner of Three Stars" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Bull's Foreleg" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Holy Kettle" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/en_GB.po stellarium-0.12.4/po/stellarium-skycultures/en_GB.po --- stellarium-0.12.1/po/stellarium-skycultures/en_GB.po 2013-04-14 12:30:35.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/en_GB.po 2013-09-08 09:09:13.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-04-09 14:14+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-09-02 17:04+0000\n" "Last-Translator: Andi Chandler \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-10 05:10+0000\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "Southern Integral Sign" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Starfish cluster" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "S Normae cluster" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Spiral cluster" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "Surfboard galaxy" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "Vacuum Cleaner galaxy" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "Blowdryer galaxy" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "Coddington's Nebula" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "ε Ori nebula" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Fath 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "Fleming's Triangular Nebula" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Graff's Cluster" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "Lost galaxy" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "White Eyed Pea" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "The Shackled Woman" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "The announcer of the southern Shinning one" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "Single one of the lance-bearer" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Banner of Three Stars" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "Softshell Turtle I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Flying Fish I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Flying Fish II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Flying Fish III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Flying Fish IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Flying Fish V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Flying Fish VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "West Gouqian Star" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Crane V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "Six Jias VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "Tianhunxinanxing" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Inner Steps I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Inner Steps II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Inner Steps III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Inner Steps IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Inner Steps V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Inner Steps VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Beak I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Beak II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Beak III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Beak IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Beak V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Beak VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Beak VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Triangle I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Triangle II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Shaofu" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Great Southern Star" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "Celestial General X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "Celestial General XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Celestial Prison I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Celestial Prison II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Celestial Prison III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Celestial Prison IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Celestial Prison V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Celestial Prison VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Tail I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Tail II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Tail III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Tail IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Tail V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Tail VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Tail VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Tail VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Tail IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Bull's Foreleg" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "The Little Orphan Boy" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Holy Kettle" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "van Maanen 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Hind's Crimson Star" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteyn's Star" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Red Rectangle" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Plaskett's star" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Luyten's Star" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Innes' Star" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Przybylski's Star" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kentaurus" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnard's Star" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Campbell's Star" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Bessel's Star" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "The Garnet Star" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Krüger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babcock's Star" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5339,5 +5843,8 @@ #~ msgid "Hubble's variable neb" #~ msgstr "Hubble's variable nebula" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kocab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/en_US.po stellarium-0.12.4/po/stellarium-skycultures/en_US.po --- stellarium-0.12.1/po/stellarium-skycultures/en_US.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/en_US.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 16:59+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: English (United States) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/eo.po stellarium-0.12.4/po/stellarium-skycultures/eo.po --- stellarium-0.12.1/po/stellarium-skycultures/eo.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/eo.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-01-01 14:29+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:52+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Aldebarano" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/es.po stellarium-0.12.4/po/stellarium-skycultures/es.po --- stellarium-0.12.1/po/stellarium-skycultures/es.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/es.po 2013-09-07 15:50:48.000000000 +0000 @@ -9,15 +9,15 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-04-18 19:34+0000\n" -"Last-Translator: Miguel Angel del Olmo \n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-27 04:57+0000\n" +"Last-Translator: Demuxer \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-19 05:13+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:50+0000\n" +"X-Generator: Launchpad (build 16738)\n" "X-Poedit-Country: SPAIN\n" "X-Poedit-Language: Spanish\n" @@ -104,7 +104,7 @@ #: nebulae/default/ngc2000names.dat:242 msgid "Cocoon nebula" -msgstr "Nebulos del Capullo" +msgstr "Nebulosa del Capullo" #: nebulae/default/ngc2000names.dat:243 msgid "Cone nebula" @@ -191,7 +191,7 @@ #: nebulae/default/ngc2000names.dat:271 msgid "Hourglass nebula" -msgstr "Neblosa Reloj de arena" +msgstr "Nebulosa Reloj de arena" #: nebulae/default/ngc2000names.dat:272 msgid "Hubble's variable nebula" @@ -510,7 +510,7 @@ #: nebulae/default/ngc2000names.dat:363 msgid "Crowbar galaxy" -msgstr "" +msgstr "Galaxia palanca" #: nebulae/default/ngc2000names.dat:364 msgid "Sagittarius Star Cloud" @@ -526,7 +526,7 @@ #: nebulae/default/ngc2000names.dat:367 msgid "Elephant's Trunk nebula" -msgstr "Nebula \"Trompa de elefante\"" +msgstr "Nebulosa Trompa de elefante" #: nebulae/default/ngc2000names.dat:368 nebulae/default/ngc2000names.dat:369 #: nebulae/default/ngc2000names.dat:370 nebulae/default/ngc2000names.dat:371 @@ -543,7 +543,7 @@ #: nebulae/default/ngc2000names.dat:374 msgid "Herring galaxy" -msgstr "" +msgstr "Galaxia arenque" #: nebulae/default/ngc2000names.dat:375 msgid "Hole in a cluster" @@ -559,7 +559,7 @@ #: nebulae/default/ngc2000names.dat:379 msgid "Kidney Bean galaxy" -msgstr "" +msgstr "Galaxia Frijol" #: nebulae/default/ngc2000names.dat:380 nebulae/default/ngc2000names.dat:381 #: nebulae/default/ngc2000names.dat:382 @@ -594,7 +594,7 @@ msgid "Southern Integral Sign" msgstr "Signo Integral del Sur" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Cúmulo Estrella de Mar" @@ -638,6 +638,50 @@ msgid "S Normae cluster" msgstr "Cúmulo S Normae" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Cúmulo espiral" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "Galaxia Tabla de surf" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "Galaxia Aspiradora" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "Galaxia Secadora" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "Nebulosa de Coddington" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "Nebulosa ε Ori" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Fath 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "Nebulosa Triangular de Fleming" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Cúmulo de Graff" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "Galaxia Perdida" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "Guisante de Ojos Blancos" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "La Mujer Encadenada" @@ -1023,7 +1067,7 @@ msgid "The announcer of the southern Shinning one" msgstr "El vocero de la Brillante del sur" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1228,7 +1272,7 @@ msgstr "Uno solo del portador de la lanza" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2116,6 +2160,186 @@ msgid "Banner of Three Stars" msgstr "Insignia de Tres Estrellas" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "Tortuga de caparazón blando I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Pescado Volador I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Pescado Volador II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Pescado Volador III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Pescado Volador IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Pescado Volador V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Pescado Volador VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "Estrella Gouquian del Oeste" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Grúa V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "Seis Jias VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "Tianhunxinanxing" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Pasos Interiores I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Pasos Interiores II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Pasos Interiores III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Pasos Interiores IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Pasos Interiores V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Pasos Interiores VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Pico I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Pico II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Pico III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Pico IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Pico V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Pico VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Pico VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Triángulo I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Trángulo II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Shaofu" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Gran estrella del Sur" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "General Celestial X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "General Celestial XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Prisión Celestial I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Prisión Celestial II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Prisión Celestial III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Prisión Celestial IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Prisión Celestial V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Prisión Celestial VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Cola I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Cola II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Cola III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Cola IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Cola V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Cola VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Cola VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Cola VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Cola IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Pata de Toro" @@ -2296,6 +2520,262 @@ msgid "The Little Orphan Boy" msgstr "El huerfanito" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Caldera sagrada" @@ -4440,7 +4920,7 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "Van Maanen 2" #: skycultures/western/star_names.fab:8 @@ -4588,739 +5068,763 @@ msgstr "Aldebarán" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Estrella carmesí de Hind" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Estrella de Kapteyn" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Elnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Rectángulo Rojo" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Murzim" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Estrella de Plaskett" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirio" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Estrella de Luyten" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Proción" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Régulo" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Estrella de Innes" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Gianfar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Estrella de Przybylski" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denébola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arturo" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Próxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Alfa Centauri" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphecca" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Estrella de Banard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Estrella de Campbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Estrella de Bessel" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamín" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "La Estrella de Garnet" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Estrella de Babcock" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Funda" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5345,5 +5849,8 @@ #~ msgid "Bear Paw galaxy" #~ msgstr "Galaxia pata de oso" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kocab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/et.po stellarium-0.12.4/po/stellarium-skycultures/et.po --- stellarium-0.12.1/po/stellarium-skycultures/et.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/et.po 2013-09-07 15:50:48.000000000 +0000 @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: po_stellarium-et\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-07-08 19:35+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:52+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -591,7 +591,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -635,6 +635,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1020,7 +1064,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1225,7 +1269,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2113,6 +2157,186 @@ msgid "Banner of Three Stars" msgstr "Kolme Tähe Lipp" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Pulli Esijalg" @@ -2293,6 +2517,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4435,7 +4915,7 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4583,739 +5063,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Riigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Kapella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Kanoopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Siirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Kastor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Prooküon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Polluks" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Reegulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Miitsar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spiika" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arktuurus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antaares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Komephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Veega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Paabulind" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deeneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/eu.po stellarium-0.12.4/po/stellarium-skycultures/eu.po --- stellarium-0.12.1/po/stellarium-skycultures/eu.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/eu.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2013-01-26 15:13+0000\n" "Last-Translator: Asier Iturralde Sarasola \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:50+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Itsas izarra kumulua" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Emakume kateatua" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "Hegoaldeko Disdiratsuaren iragarlea" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Hiru izarreko zutoihala" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Zezenaren aurreko hanka" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "Umezurtz txikia" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Irakinontzi sakratua" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteyn-en izarra" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Laukizuzen gorria" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Luyten-en izarra" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnard-en izarra" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Campbell-en izarra" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Pauma" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Granate izarra" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babcock-en izarra" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5330,5 +5834,8 @@ #~ msgid "Schrine of Sky" #~ msgstr "Zeruko santutegia" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kocab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/fa.po stellarium-0.12.4/po/stellarium-skycultures/fa.po --- stellarium-0.12.1/po/stellarium-skycultures/fa.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/fa.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-10-03 11:11+0000\n" "Last-Translator: Danial Behzadi \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "مرأة المسلسلة(زن برزنجیر)" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "درÙØ´ سه‌ستاره" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "پاچه گاو" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "ديگ مقدس" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/fi.po stellarium-0.12.4/po/stellarium-skycultures/fi.po --- stellarium-0.12.1/po/stellarium-skycultures/fi.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/fi.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-17 13:25+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-16 18:39+0000\n" "Last-Translator: Tuomas Teipainen \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:52+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "Eteläinen integraalimerkki" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Meritähtijoukko" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "S Normae-joukko" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Spiraalijoukko" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "Surffilautagalaksi" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "Imurigalaksi" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "Hiustenkuivaingalaksi" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "Coddingtonin sumu" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "ε Ori -sumu" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Fath 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "Flemingin kolmiosumu" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Graffin joukko" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "Kadonnut galaksi" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "Hernesumu" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Kahlittu nainen" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "Eteläisen loistajan kuuluttaja" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "Yksikeihäänkantajista" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Kolmen tähden nauha" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "Pehmeäkilpikilpikonna I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Lentokala II" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Lentokala II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Lentokala III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Lentokala IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Lentokala V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Lentokala VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "Länsi-Gouqian tähti" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Kurki V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "Kuusi Jiaa VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "Tianhunxinanxing" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Sisemmät asekelmat I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Sisemmät askelmat II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Sisemmät askelmat III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Sisemmät askelmat IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Sisemmät askelmat V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Sisemmät askelmat VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Nokka I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Nokka II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Nokka III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Nokka IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Nokka V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Nokka VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Nokka VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Kolmio I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Kolmio II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Shaofu" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Suuri eteläinen tähti" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "Taivaallinen kenraali X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "Taivaallinen kenraali XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Taivaallinen vankila I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Taivaallinen vankila II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Taivaallinen vankila III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Taivaallinen vankila IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Taivaallinen vankila V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Taivaallinen vankila VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Perä I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Perä II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Perä III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Perä IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Perä V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Perä VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Perä VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Perä VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Perä IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Härän etujalat" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "Pieni orpopoika" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Pyhä kattila" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "van Maanen 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Hindin purppuratähti" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteynin tähti" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Punainen neliö" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Plaskettin tähti" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Luytenin tähti" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Innen tähti" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Przybylskin tähti" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kentaurus" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphecca" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnardin tähti" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Campbellin tähti" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Besselin tähti" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Granaattitähti" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babcockin tähti" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5339,5 +5843,8 @@ #~ msgid "Bear Paw galaxy" #~ msgstr "Karhutassugalaksi" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kochab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/fil.po stellarium-0.12.4/po/stellarium-skycultures/fil.po --- stellarium-0.12.1/po/stellarium-skycultures/fil.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/fil.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-01-28 20:20+0000\n" "Last-Translator: András Mohari \n" "Language-Team: Filipino \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:59+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/fj.po stellarium-0.12.4/po/stellarium-skycultures/fj.po --- stellarium-0.12.1/po/stellarium-skycultures/fj.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/fj.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:14+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Fijian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:52+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/fr.po stellarium-0.12.4/po/stellarium-skycultures/fr.po --- stellarium-0.12.1/po/stellarium-skycultures/fr.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/fr.po 2013-09-07 15:50:48.000000000 +0000 @@ -17,15 +17,15 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-17 16:07+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-16 20:22+0000\n" "Last-Translator: Nicolas Martignoni \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:52+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -600,7 +600,7 @@ msgid "Southern Integral Sign" msgstr "Signe Intégrale austral" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Amas de l'Étoile de mer" @@ -644,6 +644,50 @@ msgid "S Normae cluster" msgstr "Amas de S Normae" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Amas spiral" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "Galaxie de la planche de surf" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "Galaxie de l'aspirateur" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "Galaxie du sèche-cheveux" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "Nébuleuse de Coddington" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "Nébuleuse ε Ori" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Fath 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "Nébuleuse triangulaire de Fleming" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Amas de Graff" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "Galaxie perdue" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "Galaxie du petit pois" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Andromède" @@ -1029,7 +1073,7 @@ msgid "The announcer of the southern Shinning one" msgstr "Mirzam" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1234,7 +1278,7 @@ msgstr "L'Étoile isolée" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2122,6 +2166,186 @@ msgid "Banner of Three Stars" msgstr "Bannière de trois étoiles" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "La Tortue à carapace molle I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Poisson volant I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Poisson volant II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Poisson volant III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Poisson volant IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Poisson volant V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Poisson volant VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "Étoile Gouqian ouest" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Grue V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "Six Jias VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "Tianhunxinanxing" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Les Pas intérieurs I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Les Pas intérieurs II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Les Pas intérieurs III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Les Pas intérieurs IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Les Pas intérieurs V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Les Pas intérieurs VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Bec I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Bec II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Bec III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Bec IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Bec V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Bec VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Bec VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Triangle I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Triangle II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Shaofu" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Grande étoile du Sud" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "Général céleste X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "Général céleste XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Prison céleste I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Prison céleste II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Prison céleste III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Prison céleste IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Prison céleste V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Prison céleste VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Queue I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Queue II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Queue III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Queue IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Queue V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Queue VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Queue VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Queue VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Queue IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Patte avant du taureau" @@ -2302,6 +2526,262 @@ msgid "The Little Orphan Boy" msgstr "Le petit Orphelin" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Bouilloire sainte" @@ -4444,8 +4924,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "van Maanen 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4592,739 +5072,763 @@ msgstr "Aldébaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Étoile cramoisie de Hind" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Étoile de Kapteyn" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saïph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Bételgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Le Rectangle rouge" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Étoile de Plaskett" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Étoile de Luyten" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Étoile de Innes" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Étoile de Przybylski" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaïd" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kentaurus" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antarès" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Étoile de Barnard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Véga" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altaïs" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Étoile de Campbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altaïr" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshaïn" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Étoile de Bessel" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "L'étoile grenat" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnaïr" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Étoile de Babcock" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5349,5 +5853,8 @@ #~ msgid "Hubble's variable neb" #~ msgstr "Nébuleuse variable de Hubble" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kocab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ga.po stellarium-0.12.4/po/stellarium-skycultures/ga.po --- stellarium-0.12.1/po/stellarium-skycultures/ga.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ga.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2013-01-30 08:33+0000\n" "Last-Translator: Weisson Ang \n" "Language-Team: Irish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:52+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Réalt Bharnard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Réalt Champbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "An Phéacóg" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Réalta an Ghairnéid" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Réalt Babcock" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/gd.po stellarium-0.12.4/po/stellarium-skycultures/gd.po --- stellarium-0.12.1/po/stellarium-skycultures/gd.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/gd.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2013-02-16 05:57+0000\n" "Last-Translator: GunChleoc \n" "Language-Team: Fòram na Gàidhlig http://www.foramnagaidhlig.net\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:52+0000\n" +"X-Generator: Launchpad (build 16723)\n" "Language: gd\n" #: nebulae/default/ngc2000names.dat:218 @@ -591,7 +591,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -635,6 +635,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Am Boireannach Geimhlichte" @@ -1020,7 +1064,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1225,7 +1269,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2113,6 +2157,186 @@ msgid "Banner of Three Stars" msgstr "Bratach nan Trì Reul" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2293,6 +2517,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4435,7 +4915,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4583,738 +5063,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/gl.po stellarium-0.12.4/po/stellarium-skycultures/gl.po --- stellarium-0.12.1/po/stellarium-skycultures/gl.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/gl.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-22 06:58+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-31 15:01+0000\n" "Last-Translator: Manuel Rosales Graña \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 04:37+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-09-01 04:36+0000\n" +"X-Generator: Launchpad (build 16750)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "Integral do sur" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Cúmulo da Estrela de mar" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "Cúmulo S Normae" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Cúmulo espiral" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "Galaxia da táboa de surf" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "Galaxia da aspiradora" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "Galaxia de Blowdryer" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "Nebulosa de Coddington" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "Nebulosa ε Ori" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Fath 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "Nebulosa triangular de Fleming" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Cúmulo de Graff" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "Galaxia perdida" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "Ervilla do ollo branco" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "A Muller Esposada" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "O Anunciador do Brillante Sur" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "O Único Portador de Lanza" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Estandarte de tres estrelas" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "Tartaruga Softshell I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Peixe voador I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Peixe voador II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Peixe voador III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Peixe voador IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Peixe voador V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Peixe voador VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "Estrela Gouqian Oeste" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Guindastre V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "Six Jias VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "Tianhunxinanxing" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Pasos interiores I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Pasos interiores II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Pasos interiores III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Pasos interiores IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Pasos interiores V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Pasos interiores VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Pico I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Pico II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Pico III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Pico IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Pico V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Pico VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Pico VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Triángulo I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Triángulo II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Shaofu" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Estrela do Gran Sur" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "Xeneral Celeste X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "Xeneral Celeste XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Prisión Celeste I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Prisión Celeste II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Prisión Celeste III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Prisión Celeste IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Prisión Celeste V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Prisión Celeste VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Rabo I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Rabo II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Rabo III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Rabo IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Rabo V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Rabo VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Rabo VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Rabo VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Rabo IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Pata de boi" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "O Pequeno Orfo" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Cafeteira sagrada" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "van Maanen 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebarán" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Estrela de Crimson Hinds" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Estrela Kapteyn" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capela" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgueuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Rectángulo Vermello" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopo" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Estrela de Plaskett" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirio" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Estrela de Luyten" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Proción" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Régulo" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Boreal" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Austral" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Estrela de Innes" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Austral" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Boreal" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Estrela de Przybylski" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denébola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Artur" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Estrela de Barnard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Estrela de Campbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Pavo" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Estrela de Bessel" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "A Estrela do Fío" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Estrela de Babcok" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5330,6 +5834,9 @@ #~ msgid "Schrine of Sky" #~ msgstr "Templo do ceo" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kocab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/gn.po stellarium-0.12.4/po/stellarium-skycultures/gn.po --- stellarium-0.12.1/po/stellarium-skycultures/gn.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/gn.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-12-26 15:00+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Guarani \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:53+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/gu.po stellarium-0.12.4/po/stellarium-skycultures/gu.po --- stellarium-0.12.1/po/stellarium-skycultures/gu.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/gu.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-11 15:26+0000\n" "Last-Translator: Nisarg Community Science Center \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:53+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Banner of Three Stars" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Bull's Foreleg" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Holy Kettle" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "વેગા" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "મોર" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/haw.po stellarium-0.12.4/po/stellarium-skycultures/haw.po --- stellarium-0.12.1/po/stellarium-skycultures/haw.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/haw.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium 0.8.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-01-28 20:20+0000\n" "Last-Translator: Rob Spearman \n" "Language-Team: English \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:53+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/he.po stellarium-0.12.4/po/stellarium-skycultures/he.po --- stellarium-0.12.1/po/stellarium-skycultures/he.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/he.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-11-26 22:23+0000\n" "Last-Translator: Bernd Saering \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:53+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/hi.po stellarium-0.12.4/po/stellarium-skycultures/hi.po --- stellarium-0.12.1/po/stellarium-skycultures/hi.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/hi.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2011-12-18 12:16+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Hindi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:53+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "तेजत" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "हदर" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "तीन तारों का à¤à¤‚ड़ा" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "बैल का आगे का पैर" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "पवितà¥à¤° केतली" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/hr.po stellarium-0.12.4/po/stellarium-skycultures/hr.po --- stellarium-0.12.1/po/stellarium-skycultures/hr.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/hr.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-10-28 09:40+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Okovana Žena" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Poluks" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/hrx.po stellarium-0.12.4/po/stellarium-skycultures/hrx.po --- stellarium-0.12.1/po/stellarium-skycultures/hrx.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/hrx.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2011-11-17 09:57+0000\n" "Last-Translator: Adriano Steffler \n" "Language-Team: Hunsrik \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:59+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "DÇ Ã…n-gëkÌ€ettnë FrÃ¥" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "FoÇŽ-pen fømm’m Æ©tiÅ™" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "Dë Klenë Vajs-pup" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Hajliģģë KÌ€ezzÉ™l" @@ -4434,8 +4914,8 @@ msgstr "TifftÇŽ" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "AlldëpÃ¥rÉ™n" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Kurrzë" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Æ©tÉ›nn fønn Kapteyn" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "RigÉ™l" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "KÇŽpÉ›llë" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "AllnÃ¥t" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "NÇhÃ¥l" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Ã…nÉ™p" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Fakkt" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Sajf" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "VÃ¥zÉ™n" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "ProbbÉ™s" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Rodë FiÇŽ-ekk" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Allʃajn" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Æ©kÃ¥t" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "FommÉ™l-hÃ¥t" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Æ©Ã¥t" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "MarrgÉ™p" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "ÄšrÃ¥j" @@ -5324,6 +5828,9 @@ #~ msgid "Bear Paw galaxy" #~ msgstr "KallÉ™ks fønn’ë Perë-tÌ€attʃ" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kocab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ht.po stellarium-0.12.4/po/stellarium-skycultures/ht.po --- stellarium-0.12.1/po/stellarium-skycultures/ht.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ht.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:16+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Haitian; Haitian Creole \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:53+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/hu.po stellarium-0.12.4/po/stellarium-skycultures/hu.po --- stellarium-0.12.1/po/stellarium-skycultures/hu.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/hu.po 2013-09-07 15:50:48.000000000 +0000 @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: Stellarium 0.9.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-01-27 15:36+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-04 08:47+0000\n" "Last-Translator: misibacsi \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:53+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -44,7 +44,7 @@ #: nebulae/default/ngc2000names.dat:225 msgid "Blinking planetary" -msgstr "" +msgstr "Pislogó bolygó" #: nebulae/default/ngc2000names.dat:226 msgid "Blue Snowball" @@ -52,7 +52,7 @@ #: nebulae/default/ngc2000names.dat:227 msgid "Blue planetary" -msgstr "" +msgstr "Kék bolygó" #: nebulae/default/ngc2000names.dat:228 msgid "Bode's nebulae" @@ -124,7 +124,7 @@ #: nebulae/default/ngc2000names.dat:253 nebulae/default/ngc2000names.dat:254 msgid "Double cluster" -msgstr "" +msgstr "KettÅ‘s csoport" #: nebulae/default/ngc2000names.dat:255 msgid "Dumbbell nebula" @@ -160,7 +160,7 @@ #: nebulae/default/ngc2000names.dat:264 msgid "Great Cluster in Hercules" -msgstr "" +msgstr "Nagy csoport a Herkulesben" #: nebulae/default/ngc2000names.dat:265 msgid "Andromeda Galaxy" @@ -168,19 +168,19 @@ #: nebulae/default/ngc2000names.dat:266 msgid "Great Nebula in Orion" -msgstr "" +msgstr "Nagy köd az Orionban" #: nebulae/default/ngc2000names.dat:267 msgid "Helix galaxy" -msgstr "" +msgstr "Spirálgalaxis" #: nebulae/default/ngc2000names.dat:268 msgid "Helix nebula" -msgstr "" +msgstr "Spirálköd" #: nebulae/default/ngc2000names.dat:269 msgid "Hind's variable nebula" -msgstr "" +msgstr "Hind változó köd" #: nebulae/default/ngc2000names.dat:270 msgid "Horsehead nebula" @@ -192,7 +192,7 @@ #: nebulae/default/ngc2000names.dat:272 msgid "Hubble's variable nebula" -msgstr "" +msgstr "Hubble változó köd" #: nebulae/default/ngc2000names.dat:273 msgid "Jewel Box" @@ -200,7 +200,7 @@ #: nebulae/default/ngc2000names.dat:274 msgid "Lace-work nebula" -msgstr "" +msgstr "Csipke köd" #: nebulae/default/ngc2000names.dat:275 msgid "Lagoon nebula" @@ -232,7 +232,7 @@ #: nebulae/default/ngc2000names.dat:283 nebulae/default/ngc2000names.dat:284 msgid "Network nebula" -msgstr "" +msgstr "Halászháló köd" #: nebulae/default/ngc2000names.dat:285 msgid "North America nebula" @@ -314,7 +314,7 @@ #: nebulae/default/ngc2000names.dat:311 msgid "Struve's Lost nebula" -msgstr "" +msgstr "Struve elveszett köd" #: nebulae/default/ngc2000names.dat:312 msgid "Sunflower galaxy" @@ -330,7 +330,7 @@ #: nebulae/default/ngc2000names.dat:315 msgid "Triangulum galaxy" -msgstr "" +msgstr "Triangulum galaxis" #: nebulae/default/ngc2000names.dat:316 msgid "Trifid nebula" @@ -415,11 +415,11 @@ #: nebulae/default/ngc2000names.dat:340 msgid "Flame nebula" -msgstr "" +msgstr "Lobogó köd" #: nebulae/default/ngc2000names.dat:341 msgid "Satellite cluster" -msgstr "" +msgstr "KísérÅ‘ csoport" #: nebulae/default/ngc2000names.dat:342 msgid "Thor's Helmet" @@ -427,11 +427,11 @@ #: nebulae/default/ngc2000names.dat:343 msgid "Caroline's cluster" -msgstr "" +msgstr "Caroline csoport" #: nebulae/default/ngc2000names.dat:344 msgid "Ï„ Canis Majoris cluster" -msgstr "" +msgstr "Ï„ Canis Majoris csoport" #: nebulae/default/ngc2000names.dat:345 msgid "Pencil nebula" @@ -455,11 +455,11 @@ #: nebulae/default/ngc2000names.dat:350 msgid "Atoms for Peace galaxy" -msgstr "" +msgstr "A béke atomjai galaxis" #: nebulae/default/ngc2000names.dat:351 msgid "Grand Design galaxy" -msgstr "" +msgstr "Nagy terv galaxis" #: nebulae/default/ngc2000names.dat:352 msgid "Monkey Head nebula" @@ -475,11 +475,11 @@ #: nebulae/default/ngc2000names.dat:355 msgid "Retina nebula" -msgstr "" +msgstr "Recehártya köd" #: nebulae/default/ngc2000names.dat:356 msgid "Spirograph nebula" -msgstr "" +msgstr "LégzésmérÅ‘ köd" #: nebulae/default/ngc2000names.dat:357 msgid "Spiral planetary nebula" @@ -519,11 +519,11 @@ #: nebulae/default/ngc2000names.dat:366 msgid "Dragonfly cluster" -msgstr "" +msgstr "SzitakötÅ‘ csoport" #: nebulae/default/ngc2000names.dat:367 msgid "Elephant's Trunk nebula" -msgstr "" +msgstr "Elefántormány köd" #: nebulae/default/ngc2000names.dat:368 nebulae/default/ngc2000names.dat:369 #: nebulae/default/ngc2000names.dat:370 nebulae/default/ngc2000names.dat:371 @@ -536,7 +536,7 @@ #: nebulae/default/ngc2000names.dat:373 msgid "Heart-Shaped cluster" -msgstr "" +msgstr "Szív alakú csoport" #: nebulae/default/ngc2000names.dat:374 msgid "Herring galaxy" @@ -573,15 +573,15 @@ #: nebulae/default/ngc2000names.dat:385 msgid "Mirach's Ghost" -msgstr "" +msgstr "Mirach szelleme" #: nebulae/default/ngc2000names.dat:386 msgid "Sailboat cluster" -msgstr "" +msgstr "Vitorláshajó csoport" #: nebulae/default/ngc2000names.dat:387 msgid "Seyfert's Sextet" -msgstr "" +msgstr "Seyfert hatos" #: nebulae/default/ngc2000names.dat:388 msgid "Soul nebula" @@ -591,13 +591,13 @@ msgid "Southern Integral Sign" msgstr "Déli integráljel" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" -msgstr "" +msgstr "Tengeri csillag csoport" #: nebulae/default/ngc2000names.dat:391 msgid "Superwind-Galaxy" -msgstr "" +msgstr "Szuperszél galaxis" #: nebulae/default/ngc2000names.dat:392 msgid "Turtle planetary nebula" @@ -605,36 +605,80 @@ #: nebulae/default/ngc2000names.dat:393 msgid "Small Magellanic Cloud" -msgstr "" +msgstr "Kis Magellán-felhÅ‘" #: nebulae/default/ngc2000names.dat:394 msgid "Bow-Tie nebula" -msgstr "" +msgstr "CsokornyakkendÅ‘ köd" #: nebulae/default/ngc2000names.dat:395 msgid "Iris nebula" -msgstr "" +msgstr "Irisz köd" #: nebulae/default/ngc2000names.dat:396 msgid "Fireworks galaxy" -msgstr "" +msgstr "Tűzijáték galaxis" #: nebulae/default/ngc2000names.dat:397 msgid "Whale galaxy" -msgstr "" +msgstr "Bálna galaxis" #: nebulae/default/ngc2000names.dat:398 msgid "Needle galaxy" -msgstr "" +msgstr "Tű galaxis" #: nebulae/default/ngc2000names.dat:399 msgid "Pearl cluster" -msgstr "" +msgstr "Gyöngy csoport" #: nebulae/default/ngc2000names.dat:400 msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Leláncolt asszony" @@ -657,7 +701,7 @@ #: skycultures/arabic/constellation_names.eng.fab:6 msgid "The Reins-holder" -msgstr "" +msgstr "ÃgyékkötÅ‘" #: skycultures/arabic/constellation_names.eng.fab:7 msgid "The Howler" @@ -846,7 +890,7 @@ #: skycultures/arabic/star_names.fab:4 msgid "The breast" -msgstr "" +msgstr "Mellkas" #: skycultures/arabic/star_names.fab:5 msgid "The second frog" @@ -1020,13 +1064,13 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" #: skycultures/arabic/star_names.fab:50 msgid "Suhayl" -msgstr "" +msgstr "Suhayl" #: skycultures/arabic/star_names.fab:51 msgid "First one of the brand-mark" @@ -1054,11 +1098,11 @@ #: skycultures/arabic/star_names.fab:58 msgid "Middle of the sky" -msgstr "" +msgstr "Az égbolt közepe" #: skycultures/arabic/star_names.fab:59 msgid "The maidenhood" -msgstr "" +msgstr "A szüzek" #: skycultures/arabic/star_names.fab:60 msgid "The announcer of the northern Shinning one" @@ -1142,7 +1186,7 @@ #: skycultures/arabic/star_names.fab:80 msgid "The loins" -msgstr "" +msgstr "Ãgyék" #: skycultures/arabic/star_names.fab:81 msgid "The bear" @@ -1182,7 +1226,7 @@ #: skycultures/arabic/star_names.fab:90 msgid "The insertion-point of the Bear's tail" -msgstr "" +msgstr "A medve farka" #: skycultures/arabic/star_names.fab:91 msgid "The wing" @@ -1210,11 +1254,11 @@ #: skycultures/arabic/star_names.fab:97 msgid "The Undefended one" -msgstr "" +msgstr "A védtelen" #: skycultures/arabic/star_names.fab:98 msgid "Al-suha" -msgstr "" +msgstr "Al-szuha" #: skycultures/arabic/star_names.fab:99 msgid "Leader-daughter of the bier" @@ -1225,7 +1269,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -1283,7 +1327,7 @@ #: skycultures/arabic/star_names.fab:115 msgid "The two series" -msgstr "" +msgstr "A két sorozat" #: skycultures/arabic/star_names.fab:116 msgid "The broken ring of stars" @@ -1303,11 +1347,11 @@ #: skycultures/arabic/star_names.fab:120 msgid "The preceding hand" -msgstr "" +msgstr "Az elsÅ‘ kéz" #: skycultures/arabic/star_names.fab:121 msgid "The succeeding hand" -msgstr "" +msgstr "A második kéz" #: skycultures/arabic/star_names.fab:122 msgid "The arteries" @@ -1363,11 +1407,11 @@ #: skycultures/arabic/star_names.fab:135 msgid "The third incantation" -msgstr "" +msgstr "A harmadik varázsige" #: skycultures/arabic/star_names.fab:136 msgid "The first incantation" -msgstr "" +msgstr "Az elsÅ‘ varázsige" #: skycultures/arabic/star_names.fab:137 msgid "Arrowhead" @@ -1399,7 +1443,7 @@ #: skycultures/arabic/star_names.fab:144 msgid "The fatty tail" -msgstr "" +msgstr "A vastag farok" #: skycultures/arabic/star_names.fab:145 msgid "The tortoise" @@ -1663,7 +1707,7 @@ #: skycultures/arabic/star_names.fab:211 msgid "The forth incantation" -msgstr "" +msgstr "A negyedik varázsige" #: skycultures/arabic/star_names.fab:212 msgid "The second companionable" @@ -2113,6 +2157,186 @@ msgid "Banner of Three Stars" msgstr "Három Csillagos Lobogó" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "RepülÅ‘ hal 1" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "RepülÅ‘ hal 2" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "RepülÅ‘ hal 3" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "RepülÅ‘ hal 4" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "RepülÅ‘ hal 5" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "RepülÅ‘ hal 6" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Nagy déli csillag" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "Égi tábornok 10" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "Égi tábornok 11" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Égi börtön 1" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Égi börtön 2" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Égi börtön 3" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Égi börtön 4" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Égi börtön 5" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Égi börtön 6" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Farok 1" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Farok 2" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Farok 3" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Farok 4" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Farok 5" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Farok 6" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Farok 7" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Farok 8" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Farok 9" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Ökör mellsÅ‘ lába" @@ -2293,119 +2517,375 @@ msgid "The Little Orphan Boy" msgstr "A kis árva fiú" -#: skycultures/korean/constellation_names.eng.fab:1 -msgid "Holy Kettle" -msgstr "Szentfazék" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:2 -msgid "Farm of Capital City" -msgstr "FÅ‘városi farm" +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:3 -msgid "Dignity of King" -msgstr "Királyi méltóság" +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:4 -msgid "Nomination" -msgstr "Jelölés" +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:5 -msgid "Gate of Sky" -msgstr "Égi kapu" +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:6 -msgid "Equality" -msgstr "EgyenlÅ‘ség" +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:7 -#: skycultures/korean/constellation_names.eng.fab:8 -#: skycultures/korean/constellation_names.eng.fab:220 -msgid "Helper" -msgstr "Segéd" +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:9 -msgid "Position of Holy King" -msgstr "A Szent Király helye" +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:10 -msgid "Neck of Dragon" -msgstr "Sárkánnyak" +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:11 -msgid "Beheading" -msgstr "Lefejezés" +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:12 -msgid "Judge" -msgstr "A bíró" +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:13 -msgid "Flutting Flag" -msgstr "Összecsavart zászló" +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:14 -msgid "Javelin of Sky" -msgstr "Égi gerely" +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:15 -msgid "Seat for Longevity" -msgstr "Az örök élet páholya" +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:16 -msgid "Oar for visitor" -msgstr "VándorevezÅ‘" +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:17 -msgid "Milk of Sky" -msgstr "Tejút" +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:18 -msgid "House of Queen" -msgstr "A királyné háza" +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:19 -msgid "Ancient Chariot" -msgstr "Åsi szekér" +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:20 -msgid "Carriage for King" -msgstr "Királyi hintó" +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:21 -msgid "General of Cavalry" -msgstr "Lovassági tábornok" +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:22 -msgid "Cavalry of Emperor" -msgstr "A császár lovassága" +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:23 -msgid "General of Mobile Troops" -msgstr "Gyalogos-hadosztály parancsnok" +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:24 -msgid "East Road" -msgstr "Keleti út" +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:25 -msgid "Gate Bolt" -msgstr "Villámkapu" +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:26 -msgid "Door Lock and Key" -msgstr "Zár és a kulcs" +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:27 -msgid "Penalty" -msgstr "Büntetés" +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:28 -msgid "Royal Hall" -msgstr "Trónterem" +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" -#: skycultures/korean/constellation_names.eng.fab:29 -#: skycultures/korean/constellation_names.eng.fab:206 -msgid "Chamberlain" +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Szvati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + +#: skycultures/korean/constellation_names.eng.fab:1 +msgid "Holy Kettle" +msgstr "Szentfazék" + +#: skycultures/korean/constellation_names.eng.fab:2 +msgid "Farm of Capital City" +msgstr "FÅ‘városi farm" + +#: skycultures/korean/constellation_names.eng.fab:3 +msgid "Dignity of King" +msgstr "Királyi méltóság" + +#: skycultures/korean/constellation_names.eng.fab:4 +msgid "Nomination" +msgstr "Jelölés" + +#: skycultures/korean/constellation_names.eng.fab:5 +msgid "Gate of Sky" +msgstr "Égi kapu" + +#: skycultures/korean/constellation_names.eng.fab:6 +msgid "Equality" +msgstr "EgyenlÅ‘ség" + +#: skycultures/korean/constellation_names.eng.fab:7 +#: skycultures/korean/constellation_names.eng.fab:8 +#: skycultures/korean/constellation_names.eng.fab:220 +msgid "Helper" +msgstr "Segéd" + +#: skycultures/korean/constellation_names.eng.fab:9 +msgid "Position of Holy King" +msgstr "A Szent Király helye" + +#: skycultures/korean/constellation_names.eng.fab:10 +msgid "Neck of Dragon" +msgstr "Sárkánnyak" + +#: skycultures/korean/constellation_names.eng.fab:11 +msgid "Beheading" +msgstr "Lefejezés" + +#: skycultures/korean/constellation_names.eng.fab:12 +msgid "Judge" +msgstr "A bíró" + +#: skycultures/korean/constellation_names.eng.fab:13 +msgid "Flutting Flag" +msgstr "Összecsavart zászló" + +#: skycultures/korean/constellation_names.eng.fab:14 +msgid "Javelin of Sky" +msgstr "Égi gerely" + +#: skycultures/korean/constellation_names.eng.fab:15 +msgid "Seat for Longevity" +msgstr "Az örök élet páholya" + +#: skycultures/korean/constellation_names.eng.fab:16 +msgid "Oar for visitor" +msgstr "VándorevezÅ‘" + +#: skycultures/korean/constellation_names.eng.fab:17 +msgid "Milk of Sky" +msgstr "Tejút" + +#: skycultures/korean/constellation_names.eng.fab:18 +msgid "House of Queen" +msgstr "A királyné háza" + +#: skycultures/korean/constellation_names.eng.fab:19 +msgid "Ancient Chariot" +msgstr "Åsi szekér" + +#: skycultures/korean/constellation_names.eng.fab:20 +msgid "Carriage for King" +msgstr "Királyi hintó" + +#: skycultures/korean/constellation_names.eng.fab:21 +msgid "General of Cavalry" +msgstr "Lovassági tábornok" + +#: skycultures/korean/constellation_names.eng.fab:22 +msgid "Cavalry of Emperor" +msgstr "A császár lovassága" + +#: skycultures/korean/constellation_names.eng.fab:23 +msgid "General of Mobile Troops" +msgstr "Gyalogos-hadosztály parancsnok" + +#: skycultures/korean/constellation_names.eng.fab:24 +msgid "East Road" +msgstr "Keleti út" + +#: skycultures/korean/constellation_names.eng.fab:25 +msgid "Gate Bolt" +msgstr "Villámkapu" + +#: skycultures/korean/constellation_names.eng.fab:26 +msgid "Door Lock and Key" +msgstr "Zár és a kulcs" + +#: skycultures/korean/constellation_names.eng.fab:27 +msgid "Penalty" +msgstr "Büntetés" + +#: skycultures/korean/constellation_names.eng.fab:28 +msgid "Royal Hall" +msgstr "Trónterem" + +#: skycultures/korean/constellation_names.eng.fab:29 +#: skycultures/korean/constellation_names.eng.fab:206 +msgid "Chamberlain" msgstr "Kamarás" #: skycultures/korean/constellation_names.eng.fab:30 @@ -3959,75 +4439,75 @@ #: skycultures/tongan/constellation_names.eng.fab:1 msgid "Toloatonga" -msgstr "" +msgstr "Toloatonga - Dél Keresztje" #: skycultures/tongan/constellation_names.eng.fab:2 msgid "Lua tangata" -msgstr "" +msgstr "Lua tangata - Castor és/vagy Pollux" #: skycultures/tongan/constellation_names.eng.fab:3 msgid "Toloa" -msgstr "" +msgstr "Toloa" #: skycultures/tongan/constellation_names.eng.fab:4 msgid "Tu'ulalupe" -msgstr "" +msgstr "Tu'ulalupe - Méhkas nyílthalmaz" #: skycultures/tongan/constellation_names.eng.fab:5 msgid "Toloalahi" -msgstr "" +msgstr "Toloalahi - Hamis kereszt" #: skycultures/tongan/constellation_names.eng.fab:6 msgid "Fungasia" -msgstr "" +msgstr "Fungasia - Toliman és/vagy Agena" #: skycultures/tongan/constellation_names.eng.fab:7 msgid "Tuinga ika" -msgstr "" +msgstr "Tuinga ika - Az Orion része, övpáncél és kard" #: skycultures/tongan/constellation_names.eng.fab:8 msgid "Houmatoloa" -msgstr "" +msgstr "Houmatoloa" #: skycultures/tongan/constellation_names.eng.fab:9 msgid "Fatanalua" -msgstr "" +msgstr "Fatanalua - Bereniké haja csillagkép(?)" #: skycultures/tongan/constellation_names.eng.fab:10 msgid "Ae e'Uvea" -msgstr "" +msgstr "Ae e'Uvea - Északi Korona csillagkép(?)" #: skycultures/tongan/constellation_names.eng.fab:11 msgid "Kapakau'o'tafahi" -msgstr "" +msgstr "Kapakau'o'tafahi - Cassiopeia csillagkép(?)" #: skycultures/tongan/star_names.fab:1 msgid "Ma'afutoka" -msgstr "" +msgstr "Ma'afutoka - Kis Magellán-felhÅ‘" #: skycultures/tongan/star_names.fab:2 msgid "Ma'afulele" -msgstr "" +msgstr "Ma'afulele - Nagy Magellán-felhÅ‘" #: skycultures/tongan/star_names.fab:3 msgid "Velitoa hififo" -msgstr "" +msgstr "Velitoa hififo - Rigel" #: skycultures/tongan/star_names.fab:4 msgid "Velitoa hahake" -msgstr "" +msgstr "Velitoa hahake - Betelgeuse" #: skycultures/tongan/star_names.fab:5 msgid "Hikule'o" -msgstr "" +msgstr "Hikule'o - Arcturus" #: skycultures/tongan/star_names.fab:6 msgid "Monuafe" -msgstr "" +msgstr "Monuafe - Meissa" #: skycultures/tongan/star_names.fab:7 msgid "Motuliki" -msgstr "" +msgstr "Motuliki - Plejádok, Fiastyúk" #: skycultures/tupi/constellation_names.eng.fab:1 msgid "White Ostrich" @@ -4435,8 +4915,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4583,739 +5063,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteyn-csillag" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Vörös háromszög" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Plaskett csillaga" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Szíriusz" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Luyten-csillag" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Przybylski csillaga" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneshamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethy" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnard csillaga" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Campbell csillaga" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Bessel csillaga" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Garnet Star" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babcock csillaga" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5334,5 +5838,8 @@ #~ msgid "Kocab" #~ msgstr "Kocab" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Bear Paw galaxy" #~ msgstr "Medvemancs-galaxis" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/hy.po stellarium-0.12.4/po/stellarium-skycultures/hy.po --- stellarium-0.12.1/po/stellarium-skycultures/hy.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/hy.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2011-05-28 12:12+0000\n" "Last-Translator: Serj Safarian \n" "Language-Team: Armenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:50+0000\n" +"X-Generator: Launchpad (build 16723)\n" "X-Poedit-SourceCharset: iso-8859-1\n" #: skycultures/chinese/constellation_names.eng.fab:80 @@ -611,7 +611,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -655,6 +655,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1040,7 +1084,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1245,7 +1289,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2125,6 +2169,186 @@ msgid "Banner of Three Stars" msgstr "ÔµÖ€Õ¥Ö„ Õ¡Õ½Õ¿Õ²Õ« Õ¤Ö€Õ¸Õ·" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Õ‘Õ¸Ö‚Õ¬Õ« Õ¡Õ¼Õ¡Õ»Õ« Õ¸Õ¿Ö„Õ¨" @@ -2301,6 +2525,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4435,7 +4915,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4583,739 +5063,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ia.po stellarium-0.12.4/po/stellarium-skycultures/ia.po --- stellarium-0.12.1/po/stellarium-skycultures/ia.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ia.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-02-18 18:41+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Interlingua \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:53+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/id.po stellarium-0.12.4/po/stellarium-skycultures/id.po --- stellarium-0.12.1/po/stellarium-skycultures/id.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/id.po 2013-09-08 09:09:13.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2012-09-06 16:13+0000\n" -"Last-Translator: Ardian Wardhana \n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-09-02 05:13+0000\n" +"Last-Translator: Arief Setiadi Wibowo \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -31,7 +31,7 @@ #: nebulae/default/ngc2000names.dat:222 msgid "Bear's Paw galaxy" -msgstr "" +msgstr "Galaksi Cakar Beruang" #: nebulae/default/ngc2000names.dat:223 msgid "Beehive cluster" @@ -43,7 +43,7 @@ #: nebulae/default/ngc2000names.dat:225 msgid "Blinking planetary" -msgstr "" +msgstr "Planet Berkedip" #: nebulae/default/ngc2000names.dat:226 msgid "Blue Snowball" @@ -51,7 +51,7 @@ #: nebulae/default/ngc2000names.dat:227 msgid "Blue planetary" -msgstr "" +msgstr "Planet Biru" #: nebulae/default/ngc2000names.dat:228 msgid "Bode's nebulae" @@ -59,7 +59,7 @@ #: nebulae/default/ngc2000names.dat:229 msgid "Cigar Galaxy" -msgstr "" +msgstr "Galaksi Cerutu" #: nebulae/default/ngc2000names.dat:230 nebulae/default/ngc2000names.dat:231 #: nebulae/default/ngc2000names.dat:232 nebulae/default/ngc2000names.dat:233 @@ -92,7 +92,7 @@ #: nebulae/default/ngc2000names.dat:240 msgid "Centaurus A" -msgstr "" +msgstr "Centaurus A" #: nebulae/default/ngc2000names.dat:241 msgid "Christmas Tree cluster" @@ -163,7 +163,7 @@ #: nebulae/default/ngc2000names.dat:265 msgid "Andromeda Galaxy" -msgstr "" +msgstr "Galaksi Andromeda" #: nebulae/default/ngc2000names.dat:266 msgid "Great Nebula in Orion" @@ -398,15 +398,15 @@ #: nebulae/default/ngc2000names.dat:336 msgid "Perseus A" -msgstr "" +msgstr "Perseus A" #: nebulae/default/ngc2000names.dat:337 msgid "Fornax A" -msgstr "" +msgstr "Fornax A" #: nebulae/default/ngc2000names.dat:338 msgid "Fornax B" -msgstr "" +msgstr "Fornax B" #: nebulae/default/ngc2000names.dat:339 msgid "de Mairan's nebula" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Wanita Dibelenggu" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Panji dari Tiga Bintang" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Kaki depannya banteng" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Cerek kudus" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 +msgid "Alnath" +msgstr "" + +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Bintang Luyten" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Bintang Barnard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Bintang Campbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Bintang Garnet" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Bintang Babcock" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/is.po stellarium-0.12.4/po/stellarium-skycultures/is.po --- stellarium-0.12.1/po/stellarium-skycultures/is.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/is.po 2013-09-07 15:50:48.000000000 +0000 @@ -10,15 +10,15 @@ "Project-Id-Version: 20130131_stellarium-skycultures_stellarium-skycultures-" "is\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2013-02-07 13:17+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:53+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -593,7 +593,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -637,6 +637,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1022,7 +1066,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1227,7 +1271,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2115,6 +2159,186 @@ msgid "Banner of Three Stars" msgstr "Þriggja stjörnu fáninn" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Nautsfóturinn" @@ -2295,6 +2519,262 @@ msgid "The Little Orphan Boy" msgstr "Litli munaðarlausi strákurinn" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Helgur ketill" @@ -4437,8 +4917,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4585,739 +5065,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Stjarna Kapteyns" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rígel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Kapella (Kaupmannastjarnan)" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Míntaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnílam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnítak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saíf" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgás" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Rauði rétthyrningurinn" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Kanópus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Síríus" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gómeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Stjarna Luytens" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Kastor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Prókýon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regúlus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebóla" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mímósa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mízar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Axið (Spíka)" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alkor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arktúrus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnardstjarnan" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega (Blástjarnan)" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albíreó" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Stjarna Campbells" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Páfuglinn" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Granatstjarnan" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Stjarna Babcocks" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5333,5 +5837,8 @@ #~ msgid "Bear Paw galaxy" #~ msgstr "Bjarnarhrammsvetrarbrautin" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kocab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/it.po stellarium-0.12.4/po/stellarium-skycultures/it.po --- stellarium-0.12.1/po/stellarium-skycultures/it.po 2013-04-21 07:16:17.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/it.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-04-16 09:34+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-05-28 11:46+0000\n" "Last-Translator: Guybrush88 \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-17 05:14+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:54+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -478,7 +478,7 @@ #: nebulae/default/ngc2000names.dat:356 msgid "Spirograph nebula" -msgstr "" +msgstr "Nebulosa Spirografo" #: nebulae/default/ngc2000names.dat:357 msgid "Spiral planetary nebula" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "Segno integrale del sud" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Ammasso della stella marina" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "La donna incatenata" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "L'annunciatore della Brillante meridionale" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "La singola del portatore della lancia" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Vessillo delle Tre Stelle" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Pesce volante I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Pesce volante II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Pesce volante III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Pesce volante IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Pesce volante V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Pesce volante VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "Tianhunxinanxing" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Passi interiori I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Passi interiori II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Passi interiori III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Passi interiori IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Passi interiori V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Passi interiori VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Becco I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Becco II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Becco III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Becco IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Becco V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Becco VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Becco VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Triangolo I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Triangolo II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Shaofu" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Grande stella meridionale" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "Generale celeste X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "Generale celeste XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Prigione celeste I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Prigione celeste II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Prigione celeste III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Prigione celeste IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Prigione celeste V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Prigione celeste VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Coda I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Coda II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Coda III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Coda IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Coda V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Coda VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Coda VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Coda VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Coda IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Zampa anteriore del Toro" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "Il piccolo orfano" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Sacro Bollitore" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "van Maanen 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Stella di Kapteyn" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Rettangolo rosso" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Stella di Planskett" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirio" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Stella di Luyten" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castore" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procione" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Polluce" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talita" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regolo" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Stella di Innes" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Stella di Przybylski" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arturo" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Stella di Barnard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australe" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Boreale" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Stella di Campbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Pavone" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Stella di Bessel" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "La stella granata" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Stella di Babcock" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Guaina" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5339,5 +5843,8 @@ #~ msgid "Hubble's variable neb" #~ msgstr "Nebulosa variabile di Hubble" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kochab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ja.po stellarium-0.12.4/po/stellarium-skycultures/ja.po --- stellarium-0.12.1/po/stellarium-skycultures/ja.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ja.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-02 14:18+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-07-11 14:11+0000\n" "Last-Translator: Kaori YOKOZAWA \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:54+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -31,7 +31,7 @@ #: nebulae/default/ngc2000names.dat:222 msgid "Bear's Paw galaxy" -msgstr "" +msgstr "熊手銀河" #: nebulae/default/ngc2000names.dat:223 msgid "Beehive cluster" @@ -59,7 +59,7 @@ #: nebulae/default/ngc2000names.dat:229 msgid "Cigar Galaxy" -msgstr "" +msgstr "葉巻銀河" #: nebulae/default/ngc2000names.dat:230 nebulae/default/ngc2000names.dat:231 #: nebulae/default/ngc2000names.dat:232 nebulae/default/ngc2000names.dat:233 @@ -147,7 +147,7 @@ #: nebulae/default/ngc2000names.dat:261 msgid "Filamentary nebula" -msgstr "" +msgstr "網状星雲" #: nebulae/default/ngc2000names.dat:262 msgid "Flaming Star nebula" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "ãƒãƒ€ãƒ¼ãƒ«" @@ -1945,7 +1989,7 @@ #: skycultures/chinese/constellation_names.eng.fab:51 #: skycultures/egyptian/constellation_names.eng.fab:10 msgid "Boat" -msgstr "天船(ã¦ã‚“ã›ã‚“:白虎)" +msgstr "天船(ã¦ã‚“ã›ã‚“:白虎)/Boat(æ°´é‹æ¬èˆ¹)" #: skycultures/chinese/constellation_names.eng.fab:52 #: skycultures/korean/constellation_names.eng.fab:116 @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "å‚æ——(ã—ã‚“ã:白虎)" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Bull's Foreleg(ãŠã†ã—ã®å‰è¶³)" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "è–ãªã‚‹ã‚„ã‹ã‚“" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4483,7 +4963,7 @@ #: skycultures/western/star_names.fab:19 msgid "Mira" -msgstr "" +msgstr "ミラ" #: skycultures/western/star_names.fab:20 msgid "Polaris" @@ -4503,7 +4983,7 @@ #: skycultures/western/star_names.fab:24 msgid "Algol" -msgstr "" +msgstr "アルゴル" #: skycultures/western/star_names.fab:25 msgid "Botein" @@ -4582,739 +5062,763 @@ msgstr "アルデãƒãƒ©ãƒ³" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 +msgid "Kapteyn's Star" +msgstr "" + +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "リゲル" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "カペラ" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "ベテルギウス" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "カノープス" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "シリウス" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "カストル" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "プロキオン" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ãƒãƒ«ãƒƒã‚¯ã‚¹" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "レグルス" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "デãƒãƒœãƒ©" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "アクルックス" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "ミモザ" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "コルカロリ" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "ミザール" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "スピカ" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "アルコル" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "アルクトゥルス" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "プロキシマ" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "セギヌス" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "リギル・ケント" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" -msgstr "" +msgstr "ズベン・エル・ゲヌビ" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" -msgstr "" +msgstr "ズベン・エス・カマリ" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "アンタレス" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "ラスアルãƒã‚²" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "ãƒãƒ¼ãƒŠãƒ¼ãƒ‰æ˜Ÿ" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "ベガ" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "アルビレオ" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "アルタイル" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "デãƒãƒ–" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "アンカ" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "サドアクビア" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "クルーガー60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "ホーマン" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "マタール" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "サダルãƒãƒª" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "スカット" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "フォーマルãƒã‚¦ãƒˆ" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "シェアト" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "マルカブ" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ka.po stellarium-0.12.4/po/stellarium-skycultures/ka.po --- stellarium-0.12.1/po/stellarium-skycultures/ka.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ka.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: Stellarium 0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-01-28 20:20+0000\n" "Last-Translator: Giasher \n" "Language-Team: Georgian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:52+0000\n" +"X-Generator: Launchpad (build 16723)\n" "X-Poedit-Country: GEORGIA\n" "X-Poedit-Language: Georgian\n" @@ -592,7 +592,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -636,6 +636,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1021,7 +1065,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1226,7 +1270,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2114,6 +2158,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2294,6 +2518,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4436,7 +4916,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4584,738 +5064,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/kg.po stellarium-0.12.4/po/stellarium-skycultures/kg.po --- stellarium-0.12.1/po/stellarium-skycultures/kg.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/kg.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kongo \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:54+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/kk.po stellarium-0.12.4/po/stellarium-skycultures/kk.po --- stellarium-0.12.1/po/stellarium-skycultures/kk.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/kk.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-08-23 15:46+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Kazakh \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:54+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "Дифда" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Әл-Дебаран" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "КурÑа" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Ригел" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Капелла" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "БеллатрикÑ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Әл-Ðат" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Ðихал" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Минтака" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Ðрнеб" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Әл-Ðилам" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Әл-Ðитак" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Саиф" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Уазн" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Бетелтгейзе" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Менкалинан" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Фуруд" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Мирзам" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "КанопуÑ" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Әл-Хена" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "МебÑута" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Сүмбіле" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Ðдхара" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Мулифейн" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Мекбуда" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Уезен" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "УаÑат" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Әл-Удра" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Гомейза" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "КаÑтор" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Процион" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ПоллукÑ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "ÐаоÑ" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Регор" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Ðвиор" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "МуÑқида" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "СолтүÑтік ÐÑеллуÑ" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "ÐкубенÑ" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Әл Сухейл" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Миаплацид" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "ÐÑпидиÑк" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Әл-Фард" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "РаÑалÑÑ" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Регул" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Ðдхафера" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "СолтүÑтік Таниа" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "ОңтүÑтік Таниа" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "ӘлкеÑ" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Мерак" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Дубхе" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Шертан" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "СолтүÑтік Әл-Ула" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Денебола" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Мегрез" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Женах" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ÐкрукÑ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Әл-Гораб" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ГакрукÑ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Хара" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Мимоза" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Әл-Иот" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Кор Кароли" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "ВиндемиатрикÑ" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Мицар" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Спика" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Әл-Каид" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Муфрид" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Тубан" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Менкент" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Ðрктур" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Сирма" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Сегин" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Ðеккар" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Әл-КалуропÑ" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "ЕдаÑих" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "ÐуÑакан" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Унук-Әл-Хай" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Джубба" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Йед-Приор" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Йед ПоÑтериор" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Әл-ÐиÑÑ‚" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Куйам" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ÐнтареÑ" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "КорнефороÑ" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Марфик" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "РаÑтабан" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Лезат" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Шаула" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Ð Ð°Ñ Ó˜Ð»-Хаг" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Грумиум" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "ÐšÐ°ÑƒÑ ÐœÐµÐ´Ð¸Ð°" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "ОңтүÑтік КауÑ" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "СолтүÑтік КауÑ" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Вега" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Шелиак" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Ðунки" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Әл-Иа" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Әл-ТаиÑ" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Әл-Бирео" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Таразед" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Әл-Таир" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Әл-Шаин" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Дабих" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Садр" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Пикок" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Ротанев" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Денеб" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Әл-Бали" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Киталфа" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Әл-Дерамин" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Ðашира" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Ениф" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Садалмелик" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ðнха" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "СадахбиÑ" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Хоман" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Матар" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Садалбари" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Скат" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Формальгаут" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Шеат" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Маркаб" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/kn.po stellarium-0.12.4/po/stellarium-skycultures/kn.po --- stellarium-0.12.1/po/stellarium-skycultures/kn.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/kn.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-01-28 20:20+0000\n" "Last-Translator: Naveen BM \n" "Language-Team: Kannada \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:54+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ko.po stellarium-0.12.4/po/stellarium-skycultures/ko.po --- stellarium-0.12.1/po/stellarium-skycultures/ko.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ko.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2012-06-08 05:12+0000\n" -"Last-Translator: Song Yeong Heon \n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-16 10:54+0000\n" +"Last-Translator: LEE E. S. \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:54+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" -msgstr "" +msgstr "47 TUC(í°ë¶€ë¦¬ìƒˆìžë¦¬)" #: nebulae/default/ngc2000names.dat:219 nebulae/default/ngc2000names.dat:220 msgid "Antennae" @@ -31,15 +31,15 @@ #: nebulae/default/ngc2000names.dat:222 msgid "Bear's Paw galaxy" -msgstr "" +msgstr "Bear paw ì€í•˜" #: nebulae/default/ngc2000names.dat:223 msgid "Beehive cluster" -msgstr "" +msgstr "벌집성단" #: nebulae/default/ngc2000names.dat:224 msgid "Black-eye galaxy" -msgstr "" +msgstr "ê²€ì€ëˆˆ ì€í•˜" #: nebulae/default/ngc2000names.dat:225 msgid "Blinking planetary" @@ -47,7 +47,7 @@ #: nebulae/default/ngc2000names.dat:226 msgid "Blue Snowball" -msgstr "" +msgstr "푸른 눈사람(NGC 7662)" #: nebulae/default/ngc2000names.dat:227 msgid "Blue planetary" @@ -55,7 +55,7 @@ #: nebulae/default/ngc2000names.dat:228 msgid "Bode's nebulae" -msgstr "" +msgstr "ë³´ë°ì˜ 성운" #: nebulae/default/ngc2000names.dat:229 msgid "Cigar Galaxy" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "삼기(åƒæ——)" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "í™©ì†Œì˜ ì•žë‹¤ë¦¬" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "주정(周鼎)" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ky.po stellarium-0.12.4/po/stellarium-skycultures/ky.po --- stellarium-0.12.1/po/stellarium-skycultures/ky.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ky.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-09-24 16:48+0000\n" -"Last-Translator: Chynggyz Jumaliev \n" +"Last-Translator: ballpen \n" "Language-Team: Kirghiz \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:54+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "ЭркÑиз аÑл" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "Түштүктүк жаркырагындын кабар бергичинин бири" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "ТейÑÑ‚" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Хадар" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Буканын алдыңкы буту" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Ыйык казан" @@ -4434,8 +4914,8 @@ msgstr "Дифда" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Ван Маанен 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Ðльдебаран" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "КурÑа" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Каптейндин жылдызы" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Ригель" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Капелла" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "БеллатрикÑ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "ÐльнаÑ" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Ðихал" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Минтака" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Ðрнеб" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "МеиÑÑа" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Ðльнилам" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Факт" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Ðльнитак" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Саиф" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Вазн" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Бетельгейзе" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Менкалинан" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "ПропуÑ" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Кызыл тик бурчтук" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Фуруд" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Мирзам" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "КанопуÑ" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Ðльхена" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "МебÑута" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "СириуÑ" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Ðдара" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Мулифейн" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Мекбуда" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Везен" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Ð‘ÐµÑ€Ð½ÐµÑ 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "ВаÑат" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Ðлудра" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "ГомейÑа" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Лейтендин жылдызы" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "КаÑтор" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Процион" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ПоллукÑ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "ÐаоÑ" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Регор" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Тегмин" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Ðвиор" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "МуÑцида" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "ÐÑÐµÐ»Ð»ÑƒÑ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ð¸Ñ" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "ÐÑÐµÐ»Ð»ÑƒÑ ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "ÐкубенÑ" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Талита" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Сухаиль" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Миаплацид" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "ÐÑпидиÑке" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Ðльфард" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Ðльтерф" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Субра" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "РаÑалаÑ" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Регул" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Ðдхафера" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Танийа БореалиÑ" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Ðльгиеба" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Танийа ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "ÐлькеÑ" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Мерак" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Дубхе" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "ЗоÑма" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Шератан" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Ðлула ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Ðлула БореалиÑ" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "ГиауÑар" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Денебола" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "ЗавийÑва" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Фад" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Ðльхиба" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Мегрец" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Гиена" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Заниах" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ÐкрукÑ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Ðльгораб" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ГакрукÑ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Чара" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Поррима" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Мимоза" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Ðлиот" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Кор Кароли" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "ВиндемиатрикÑ" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Мицар" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Спика" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Ðлькор" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Ðлькаид" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Муфрид" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Тубан" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Менкент" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Ðрктур" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Сырма" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "ПрокÑима" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "СегинуÑ" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Ригиль КентавруÑ" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Изар" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Мерга" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Зубен Эльгенуби" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Ðеккар" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Зубен Ñль Шемали" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Феркад" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "ÐлькалуропÑ" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "ЭдаÑих" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "ÐуÑакан" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Ðльфекка" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Унукалхаи" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Джубба" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Ðкраб" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "МарÑик" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Йед Приор" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Йед ПоÑтериор" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Ðль ÐиÑÑ‚" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Кужам" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ÐнтареÑ" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "КорнефороÑ" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Марфик" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "ÐтриÑ" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "ÐльракиÑ" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Сабик" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Ð Ð°Ñ Ðльгети" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "РаÑтабан" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "МааÑым" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "ЛеÑат" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Йилдун" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Шаула" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Ð Ð°Ñ Ðльхаг" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Гиртаб" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Кебалраи" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Грумиум" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Этамин" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Барнардтын жылдызы" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "ÐльнаÑл" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "ÐšÐ°ÑƒÑ ÐœÐµÐ´Ð¸Ð°" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "ÐšÐ°ÑƒÑ ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "ÐšÐ°ÑƒÑ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ð¸Ñ" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Вега" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Шелиак" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Ðунки" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "ÐлиÑ" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Сулафат" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "ÐÑцелла" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "ÐльтаиÑ" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Ðркаб" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Рукбат" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Ðльбирео" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "КÑмпбеллдин жылдызы" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Шам" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Таразед" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Ðльтаир" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Ðльшаин" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Ðльгеди" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Дабих" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Садр" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "ТооÑ" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Ротанев" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Суалоцин" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Денеб" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Ðльбали" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Китальфа" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Ðльдерамин" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Ðльфирк" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "СадалÑууд" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Ðашира" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Ðзельфафаж" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Сухаиль" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Эниф" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Денеб Ðльгеди" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Курхах" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Садалмелик" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Ðльнаир" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Бихам" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ðнха" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Садахбиа" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Крюгер 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Ситула" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Хоман" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Матар" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Бабкоктун жылдызы" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Садалбари" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Скат" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Фомальгаут" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Шеат" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Маркаб" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Эрраи" @@ -5324,6 +5828,9 @@ #~ msgid "Great Nebula in Andromeda" #~ msgstr "Ðндромеданын чоң жыбыраган калың жылдызы" +#~ msgid "Van Maanen 2" +#~ msgstr "Ван Маанен 2" + #~ msgid "Kocab" #~ msgstr "Кохаб" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/la.po stellarium-0.12.4/po/stellarium-skycultures/la.po --- stellarium-0.12.1/po/stellarium-skycultures/la.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/la.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-08-23 15:34+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:54+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/lb.po stellarium-0.12.4/po/stellarium-skycultures/lb.po --- stellarium-0.12.1/po/stellarium-skycultures/lb.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/lb.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:19+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Luxembourgish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:55+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/lo.po stellarium-0.12.4/po/stellarium-skycultures/lo.po --- stellarium-0.12.1/po/stellarium-skycultures/lo.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/lo.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lao \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:54+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/lt.po stellarium-0.12.4/po/stellarium-skycultures/lt.po --- stellarium-0.12.1/po/stellarium-skycultures/lt.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/lt.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2011-12-29 04:45+0000\n" -"Last-Translator: Alexander Wolf \n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-27 21:24+0000\n" +"Last-Translator: Ieva \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:50+0000\n" +"X-Generator: Launchpad (build 16738)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -23,7 +23,7 @@ #: nebulae/default/ngc2000names.dat:219 nebulae/default/ngc2000names.dat:220 msgid "Antennae" -msgstr "" +msgstr "Antena" #: nebulae/default/ngc2000names.dat:221 msgid "Barnard's galaxy" @@ -59,7 +59,7 @@ #: nebulae/default/ngc2000names.dat:229 msgid "Cigar Galaxy" -msgstr "" +msgstr "Cigaro galaktika" #: nebulae/default/ngc2000names.dat:230 nebulae/default/ngc2000names.dat:231 #: nebulae/default/ngc2000names.dat:232 nebulae/default/ngc2000names.dat:233 @@ -76,15 +76,15 @@ #: nebulae/default/ngc2000names.dat:236 msgid "Bug nebula" -msgstr "" +msgstr "Vabalo Å«kas" #: nebulae/default/ngc2000names.dat:237 msgid "Butterfly cluster" -msgstr "" +msgstr "Drugelio spieÄius" #: nebulae/default/ngc2000names.dat:238 msgid "Butterfly nebula" -msgstr "" +msgstr "Drugelio Å«kas" #: nebulae/default/ngc2000names.dat:239 msgid "California nebula" @@ -96,7 +96,7 @@ #: nebulae/default/ngc2000names.dat:241 msgid "Christmas Tree cluster" -msgstr "" +msgstr "Kaledų medžio spieÄius" #: nebulae/default/ngc2000names.dat:242 msgid "Cocoon nebula" @@ -123,7 +123,7 @@ #: nebulae/default/ngc2000names.dat:253 nebulae/default/ngc2000names.dat:254 msgid "Double cluster" -msgstr "" +msgstr "Dvigubas spieÄius" #: nebulae/default/ngc2000names.dat:255 msgid "Dumbbell nebula" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Trijų žvaigždžių vÄ—liava" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "JauÄio koja" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Å ventasis katilas" @@ -4434,7 +4914,7 @@ msgstr "Difda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Aldebaranas" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Kursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteino žvaigždÄ—" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigelis" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Kapela" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "BelatriksÄ—" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnatas" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihalas" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arnebas" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilamas" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitakas" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saifas" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "BetelgeizÄ—" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinanas" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Raudonasis staÄiakampis" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzamas" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Kanopas" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirijus" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Alvazas" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Kastoras" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Prokionas" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Poluksas" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naosas" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regoras" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avioras" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Akubenas" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidas" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Turajas" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alfardas" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulas" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merakas" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "DubhÄ—" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrecas" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienachas" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Akruksas" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gakruksas" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimoza" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Aliotas" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Karolio Å irdis" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "VindemiatriksÄ—" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Micaras" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spika" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alkoras" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaidas" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Mufridas" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkentas" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "ArktÅ«ras" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proksima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginas" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekaras" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alfeka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukas" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "DÅ¡uba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Alniatas" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antaris" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Korneforas" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Ras Algetis" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastabanas" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Å aulÄ—" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Ras Alhagas" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnardo žvaigždÄ—" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Å eliakas" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Sadira" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altajas" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkabas" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "AlbirÄ—jas" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazedas" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altayras" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "AlÅ¡ainas" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabihas" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadiras" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Povas" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Denebas" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderaminas" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enifas" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "SadalmelikÄ—" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhautas" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Å eatas" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markabas" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/lv.po stellarium-0.12.4/po/stellarium-skycultures/lv.po --- stellarium-0.12.1/po/stellarium-skycultures/lv.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/lv.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-10-13 19:57+0000\n" "Last-Translator: KÄrlis Goba \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:54+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,8 +4914,8 @@ msgstr "Difda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van MÄnena zvaigzne" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,744 +5062,771 @@ msgstr "Aldebarans" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 +msgid "Kapteyn's Star" +msgstr "" + +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigels" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Kapella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatriksa" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnats" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saifs" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeize" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinans" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Kanopuss" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "SÄ«riuss" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Kastors" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procions" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollukss" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muskida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Ziemeļu Ä’zelis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Dienvidu Ä’zelis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alfards" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Reguls" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Meraks" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Fads" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienahs" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Aliots" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "KÄrļa Sirds" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Micars" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spika" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaids" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arkturs" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proksima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Centaura Alfa" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izars" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "ZubenelÅ¡amali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Ferkads" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakans" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alfeka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antaress" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastabans" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamins" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altairs" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadors" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Denebs" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirks" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enifs" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skats" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhauts" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Å eats" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markabs" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Erai" #~ msgid "Great Nebula in Andromeda" #~ msgstr "Andromedas miglÄjs" +#~ msgid "Van Maanen 2" +#~ msgstr "Van MÄnena zvaigzne" + #~ msgid "Kocab" #~ msgstr "Kohabs" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/mi.po stellarium-0.12.4/po/stellarium-skycultures/mi.po --- stellarium-0.12.1/po/stellarium-skycultures/mi.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/mi.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-08-11 17:26+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Maori \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:55+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 +msgid "Kapteyn's Star" +msgstr "" + +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Puanga" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Rehua" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Takurua" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Puanga Hori" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Whanui, Meremere, Whakakorongata" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/mk.po stellarium-0.12.4/po/stellarium-skycultures/mk.po --- stellarium-0.12.1/po/stellarium-skycultures/mk.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/mk.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2011-12-27 15:07+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Macedonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:55+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Знаме од три ѕвезди" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Бикова предна нога" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Свет чајник" @@ -4434,7 +4914,7 @@ msgstr "Дифда" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Ðлдебаран" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "КурÑа" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Ригел" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Капела" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "БелатрикÑ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Ðлнат" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Ðихал" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Минтака" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Ðрнеб" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Ðлнилам" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Ðлнитак" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Саиф" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Вазн" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Бетелгејз" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Менкалинан" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Фуруд" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Мирцам" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "КанопуÑ" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Ðлхена" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "МебÑута" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "СириуÑ" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Ðдхара" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Мулифејн" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Мекбуда" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Везен" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "ВаÑат" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Ðлудра" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "ГомеÑа" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "КаÑтор" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Прокион" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ПолукÑ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "ÐаоÑ" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Регор" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Ðвиор" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "МуÑкида" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "ÐÑÐµÐ»ÑƒÑ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ð¸Ñ" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "ÐкубенÑ" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Сухаил" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "МиаплацидуÑ" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "ÐÑпидиÑке" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Ðлфард" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "РаÑалаÑ" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "РегулуÑ" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Ðдхафера" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Таниа БореалиÑ" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Таниа ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "ÐлкеÑ" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Мерак" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Дубе" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Кертан" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Ðлула БореалиÑ" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Денебола" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Мегрез" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Гјена" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ÐкрукÑ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Ðлгораб" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ГакрукÑ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Кара" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Мимоза" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Ðлиот" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Кор Кароли" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "ВиндемјатрикÑ" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Мизар" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Спика" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Ðлкаид" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Муфрид" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Тубан" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Менкент" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "ÐрктуруÑ" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Сирма" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "СегинуÑ" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Ðекар" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "ÐлкалуропÑ" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "ЕдаÑик" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "ÐуÑакан" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Унукалхаи" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Дшуба" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Јед Приор" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Јед ПоÑтериор" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Ðл Ðијат" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Кујам" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ÐнтареÑ" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "КорнефороÑ" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Марфик" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "РаÑтабан" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "ЛеÑат" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Шола" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "РаÑалаг" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Грумиум" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "ÐšÐ°ÑƒÑ ÐœÐµÐ´Ð¸Ð°" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "ÐšÐ°ÑƒÑ ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "ÐšÐ°ÑƒÑ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ð¸Ñ" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Вега" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Шелиак" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Ðунки" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Ðлија" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Ðлте" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Ðлбирео" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Таразед" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Ðлтар" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Ðлшаин" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Дабих" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Садр" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Паун" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Ротанев" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Денеб" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Ðлбали" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Киталфа" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Ðлдерамин" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Ðашира" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Ениф" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Садалмелик" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ðнка" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Садакбиа" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Хаман" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Матар" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Садалбари" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Скат" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Фомалхо" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Шеат" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Маркаб" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ml.po stellarium-0.12.4/po/stellarium-skycultures/ml.po --- stellarium-0.12.1/po/stellarium-skycultures/ml.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ml.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2011-12-15 15:47+0000\n" "Last-Translator: BRIJESH E.P \n" "Language-Team: Malayalam \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:55+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "ഹദരàµâ€" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "പരിശàµà´¦àµà´§ കെറàµà´±à´¿à´²àµâ€" @@ -4434,7 +4914,7 @@ msgstr "à´¡à´¿à´«àµâ€Œâ€Œà´¡à´¾" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "ആളàµâ€à´¡àµ†à´¬à´±à´¾à´¨àµâ€" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "à´•à´°àµâ€à´¸" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "റീഗലàµâ€" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "കാപെലàµà´²" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "ബെലàµà´²à´¾à´Ÿàµà´°à´¿à´•àµà´¸àµ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "à´…à´²àµâ€à´¨à´¾à´¤àµ" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "നിഹാലàµâ€" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "മിനàµâ€à´±àµà´±à´¾à´•àµà´•" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "à´…à´°àµâ€à´¨àµ†à´¬àµ" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "à´…à´²àµâ€à´¨à´¿à´²à´‚" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "à´…à´²àµâ€à´¨à´¿à´±àµà´±à´¾à´•àµà´•àµ" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "സൈഫàµ" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "വസനàµâ€" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "തിരàµà´µà´¾à´¤à´¿à´°" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "മെനàµâ€à´•à´¾à´²à´¿à´¨à´¾à´¨àµâ€" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "à´«àµà´°àµà´¡àµ" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "മിരàµâ€à´¸à´¾à´‚" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "à´…à´—à´¸àµà´¤àµà´¯à´¨àµâ€" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "à´…à´²àµâ€à´¹àµ†à´¨à´¾" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "മെബàµâ€Œâ€Œà´¸àµà´±àµà´±" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "സിറിയസàµ" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "à´…à´¦àµà´¹à´°" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "à´®àµà´²à´¿à´«àµ€à´¨àµâ€" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "മെകàµâ€Œâ€Œà´¬àµà´¡" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "വെസെനàµâ€" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "വസതàµà´¤àµ" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "ആലàµà´¦àµà´°à´¾" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "ഗോമെസിയ" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "കാസàµà´±àµà´±à´°àµâ€" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "à´ªàµà´°àµ‹à´¸à´¿à´¯àµ‹à´£àµâ€" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "പോളàµà´³à´•àµà´¸àµ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "നാഓസàµ" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "റെഗരàµâ€" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "അവിയോരàµâ€" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "à´®àµà´¸àµà´•à´¿à´¡" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "കിരീടമണàµà´¡à´²à´‚" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "à´…à´•àµà´•àµà´¬àµ†à´¨àµâ€à´¸àµ" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "മിയാപàµà´²à´¾à´¸à´¿à´¡à´¸àµ" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "à´…à´¸àµâ€Œâ€Œà´«à´¿â€Œâ€Œà´¡à´¿à´¸àµà´•àµ†" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "à´…à´²àµâ€à´ªà´¾à´°àµâ€à´¡àµ" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "രസലാസàµ" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "റെഗàµà´²à´¸àµ" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "അദഫെരാ" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "ടാനിയ ബൊറെഅലിസàµ" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "ടാനിയ à´…à´¸àµà´Ÿàµà´°à´¾à´²à´¿à´¸àµ" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "à´…à´²àµâ€à´•àµ†à´¸àµ" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "മെരാകàµà´•àµ" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "à´¦àµà´¬àµ†" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "ചെരàµâ€à´¤à´¾à´¨àµâ€" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "ഔള ബൊറെഅലിസàµ" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "ദെനെബോള" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "മെഗàµâ€Œâ€Œà´°àµ†à´¸àµ" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "ഗിനാഹàµ" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "à´…à´•àµà´°à´•àµà´¸àµ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "à´…à´²àµâ€à´—ൊരാബàµ" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ഗാകàµà´°à´•àµà´¸àµ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "ചാര" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "മിമോസ" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "അലിയോതàµà´¤àµ" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "കോരàµâ€ കരോലി" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "വിനàµâ€à´¡àµ†à´®à´¿à´¯à´¾à´Ÿàµà´°à´¿à´•àµà´¸àµ" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "മിസാരàµâ€" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "à´šà´¿à´¤àµà´¤à´¿à´°" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "à´…à´²àµâ€à´•àµˆà´¡àµ" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "à´®àµà´°àµâ€à´«à´¿à´¡àµ" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "à´¤àµà´‚ബനàµâ€" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "മെനàµâ€à´•àµ†à´¨àµà´±àµ" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "ചോതി" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "സൈരàµâ€à´®" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "സൈഗിനസàµ" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "റീഗലàµâ€ കെനàµà´±àµ" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "നെകàµà´•à´¾à´°àµâ€" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "à´…à´²àµâ€à´•à´²àµâ€à´¯àµà´±àµ‹à´ªàµâ€Œâ€Œà´¸àµ" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "എഡാസികàµ" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "à´¨àµà´¸àµà´•à´¾à´¨àµâ€" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "ഉനàµà´•à´²àµâ€à´¹à´¿" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "à´·àµà´¬àµà´¬" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "യെഡൠപàµà´°à´¯à´°àµâ€" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "യെഡൠപോസàµà´±àµà´±àµ€à´°à´¿à´¯à´°àµâ€" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "à´…à´²àµâ€ നിയതàµ" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "à´•àµà´œà´¾à´‚" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "തൃകàµà´•àµ‡à´Ÿàµà´Ÿ" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "കൊരàµâ€à´¨àµ†à´«àµ‹à´±à´¸àµ" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "മാരàµâ€à´«à´¿à´•àµà´•àµ" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "à´…à´Ÿàµà´°à´¿à´¯" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "à´°à´¸àµà´¤à´¾à´¬à´¨àµâ€" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "ലെസതàµ" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "ഷോള" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "റസലàµâ€à´¹àµ†à´—àµ" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "à´—à´¿à´°àµâ€à´Ÿàµà´Ÿà´¾à´¬àµ" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "à´—àµà´°àµà´®à´¿à´…à´‚" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "കൗസൠമീഡിയ" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "കൗസൠഅസàµà´Ÿàµà´°à´¾à´²à´¿à´¸àµ" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "കിരീടമണàµà´¡à´²à´‚" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "വേഗ" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "ഷെലിയാകàµ" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "à´¨àµà´¨àµâ€à´•à´¿" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "à´…à´²àµâ€à´¯à´¾" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "à´…à´²àµâ€à´±àµà´±à´¾à´¯à´¿à´¸àµ" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "à´…à´²àµâ€à´¬à´¿à´±àµ‹" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "ടാരàµâ€à´¸àµâ€Œâ€Œà´¡àµ" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "തിരàµà´µàµ‹à´£à´‚" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "à´…à´²àµâ€à´·àµˆà´¨àµâ€" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "ഡാബിഹàµ" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "സദരàµâ€" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "പീകàµà´•àµ‹à´•àµà´•àµ" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "റൊറàµà´±à´¨àµ†à´µàµ" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "ഡെനെബàµ" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "à´…à´²àµâ€à´¬à´¾à´²à´¿" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "à´•à´¿à´±àµà´±à´¾à´²àµâ€à´«à´¾" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "ആളàµâ€à´¡àµ†à´°à´¾à´®à´¿à´¨àµâ€" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "നഷിരാ" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "എനിഫàµ" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "സദാമെലികàµ" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "à´…à´²àµâ€à´¨àµˆà´°àµâ€" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "à´…à´¨àµâ€à´šà´¾" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "സദഷിബിയ" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "ഹൊമനàµâ€" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "മറàµà´±à´°àµâ€" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "സദലàµâ€à´¬à´°à´¿" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "à´¸àµâ€Œâ€Œà´•à´¾à´¤àµ" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "ഫോമലàµâ€à´¹àµ‹à´Ÿàµà´Ÿàµ" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "മരàµâ€à´•àµà´•à´¾à´¬àµ" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/mn.po stellarium-0.12.4/po/stellarium-skycultures/mn.po --- stellarium-0.12.1/po/stellarium-skycultures/mn.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/mn.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:21+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Mongolian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:55+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/mo.po stellarium-0.12.4/po/stellarium-skycultures/mo.po --- stellarium-0.12.1/po/stellarium-skycultures/mo.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/mo.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:21+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Moldavian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:55+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/mr.po stellarium-0.12.4/po/stellarium-skycultures/mr.po --- stellarium-0.12.1/po/stellarium-skycultures/mr.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/mr.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2011-01-19 13:06+0000\n" "Last-Translator: greenmang0 \n" "Language-Team: Marathi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:55+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "बॅनर ऑफ थà¥à¤°à¥€ सà¥à¤Ÿà¤¾à¤°à¥à¤¸" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "बà¥à¤²à¥à¤¸à¥ फोरलेग" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "छोटा अनाथ मà¥à¤²à¤—ा" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "होली केटल" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "रोहिणी" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 +msgid "Kapteyn's Star" +msgstr "" + +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "राजनà¥à¤¯" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "बà¥à¤°à¤®à¥à¤¹à¥à¤¹à¥ƒà¤¦à¤¯" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "अगसà¥à¤¤à¤¿" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "वà¥à¤¯à¤¾à¤§" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "पà¥à¤°à¤¶à¥à¤µà¤¾" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "मघा" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "अरà¥à¤‚धती" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "चितà¥à¤°à¤¾" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "वसिषà¥à¤ " -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "सà¥à¤µà¤¾à¤¤à¥€" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "जà¥à¤¯à¥‡à¤·à¥à¤ à¤¾" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "अभिजित" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "गारà¥à¤¨à¥‡à¤Ÿ तारा" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "à¤à¤¨à¤¿à¤«" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "डेनेब अलà¥à¤—ेडी" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "कà¥à¤°à¥à¤°à¤¾à¤¹" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "सडलमेलिक" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "अलà¥à¤¨à¥‡à¤…र" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "बिहाम" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "अंका" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "सॅडॅकबिआ" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "मीनासà¥à¤¯" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "मरकाब" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "à¤à¤°à¥à¤°à¤¾à¤ˆ" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ms.po stellarium-0.12.4/po/stellarium-skycultures/ms.po --- stellarium-0.12.1/po/stellarium-skycultures/ms.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ms.po 2013-09-23 06:20:13.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-21 01:35+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-09-13 03:13+0000\n" "Last-Translator: abuyop \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 04:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-14 04:48+0000\n" +"X-Generator: Launchpad (build 16761)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "Isyarat Kamiran Selatan" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Gugusan tapak sulaiman" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "Gugusan S Normae" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Gugusan pilin" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Fath 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Gugusan Graff" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "Bimasakti Lost" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Perempuan Dirantai" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "Situnggal pembawa tombak" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Kain Rentang Bintang Tiga" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Kaki Hadapan Lembu Jantan" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "Anak Lelaki Yatim Piatu" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Cerek Suci" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "van Maanen 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Bintang Merah Hind" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Bintang Kapteyn" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Segiempat Merah" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Bintang Plaskett" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Bintang Luyten" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Bintang Innes" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Bintang Przybylski" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Garcrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Bintang Barnard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Media Kaus" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Bintang Campbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Merak" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Bintang Bessel" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Bintang Garnet" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Bintang Babcock" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5330,6 +5834,9 @@ #~ msgid "Kocab" #~ msgstr "Kocab" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Office for Chariot" #~ msgstr "Pegawai Kereta Kuda" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/mt.po stellarium-0.12.4/po/stellarium-skycultures/mt.po --- stellarium-0.12.1/po/stellarium-skycultures/mt.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/mt.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-01-28 20:20+0000\n" "Last-Translator: a-t-malta \n" "Language-Team: Maltese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:55+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/nan.po stellarium-0.12.4/po/stellarium-skycultures/nan.po --- stellarium-0.12.1/po/stellarium-skycultures/nan.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/nan.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-01-28 20:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Min Nan Chinese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:59+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/nb.po stellarium-0.12.4/po/stellarium-skycultures/nb.po --- stellarium-0.12.1/po/stellarium-skycultures/nb.po 2013-04-07 14:14:24.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/nb.po 2013-09-07 15:50:48.000000000 +0000 @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2013-03-31 10:57+0000\n" "Last-Translator: FreewareTips \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:55+0000\n" +"X-Generator: Launchpad (build 16723)\n" "X-Poedit-Country: NORWAY\n" "X-Poedit-Language: Norwegian\n" @@ -593,7 +593,7 @@ msgid "Southern Integral Sign" msgstr "Sydlige integraltegn" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Sjøstjernehopen" @@ -637,6 +637,50 @@ msgid "S Normae cluster" msgstr "S Normae-hopen" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Den lenkede kvinne" @@ -1022,7 +1066,7 @@ msgid "The announcer of the southern Shinning one" msgstr "Varsleren av den sørlige strÃ¥lende" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1227,7 +1271,7 @@ msgstr "En eneste av lanse-bæreren" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2115,6 +2159,186 @@ msgid "Banner of Three Stars" msgstr "Det trestjernede banner" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Okses forbein" @@ -2295,6 +2519,262 @@ msgid "The Little Orphan Boy" msgstr "Den lille foreldreløse gutten" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Hellig kjele" @@ -4437,8 +4917,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "van Maanen 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4585,739 +5065,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteyns stjerne" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Det røde rektangelet" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Luytens stjerne" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alkor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnards stjerne" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Meridionalis" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Campbells stjerne" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "PÃ¥fugl" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Granatstjernen" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Alkurah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Baham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadalachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60 A/B" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homam" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babcocks stjerne" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Alrai" @@ -5344,3 +5848,6 @@ #~ msgid "Kocab" #~ msgstr "Kocab" + +#~ msgid "Van Maanen 2" +#~ msgstr "van Maanen 2" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/nl.po stellarium-0.12.4/po/stellarium-skycultures/nl.po --- stellarium-0.12.1/po/stellarium-skycultures/nl.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/nl.po 2013-09-07 15:50:48.000000000 +0000 @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2013-01-26 13:26+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:52+0000\n" +"X-Generator: Launchpad (build 16723)\n" "X-Poedit-Country: NETHERLANDS\n" "X-Poedit-Language: Dutch\n" @@ -593,7 +593,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -637,6 +637,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "De geketende vrouw" @@ -1022,7 +1066,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1227,7 +1271,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2115,6 +2159,186 @@ msgid "Banner of Three Stars" msgstr "spandoek van de drie sterren" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Stier voorpoot" @@ -2295,6 +2519,262 @@ msgid "The Little Orphan Boy" msgstr "De kleine weesjongen" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Heilige kudde" @@ -4437,7 +4917,7 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4585,739 +5065,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuze" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Wega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "The Granaat Ster" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Schede" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/nn.po stellarium-0.12.4/po/stellarium-skycultures/nn.po --- stellarium-0.12.1/po/stellarium-skycultures/nn.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/nn.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-13 07:02+0000\n" "Last-Translator: HÃ¥kon Malmedal \n" "Language-Team: Norwegian Nynorsk \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:55+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/oc.po stellarium-0.12.4/po/stellarium-skycultures/oc.po --- stellarium-0.12.1/po/stellarium-skycultures/oc.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/oc.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-10-21 14:04+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/os.po stellarium-0.12.4/po/stellarium-skycultures/os.po --- stellarium-0.12.1/po/stellarium-skycultures/os.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/os.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:22+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ossetian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/pa.po stellarium-0.12.4/po/stellarium-skycultures/pa.po --- stellarium-0.12.1/po/stellarium-skycultures/pa.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/pa.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:23+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Punjabi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/pl.po stellarium-0.12.4/po/stellarium-skycultures/pl.po --- stellarium-0.12.1/po/stellarium-skycultures/pl.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/pl.po 2013-09-07 15:50:48.000000000 +0000 @@ -9,15 +9,15 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-11-09 02:11+0000\n" "Last-Translator: pp/bs \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" "X-Poedit-Country: SPAIN\n" "X-Poedit-Language: Spanish\n" @@ -594,7 +594,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -638,6 +638,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1023,7 +1067,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1228,7 +1272,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Agena (Hadar)" @@ -2116,6 +2160,186 @@ msgid "Banner of Three Stars" msgstr "ChorÄ…giew Trzech Gwiazd" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Przednia noga byka" @@ -2296,6 +2520,262 @@ msgid "The Little Orphan Boy" msgstr "MaÅ‚a Sierota" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "ÅšwiÄ™ty kocioÅ‚" @@ -4438,8 +4918,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Gwiazda van Maanena" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4586,739 +5066,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Gwiazda Kapteyna" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Kapella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeza" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Czerwony CzworokÄ…t" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Kanopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Syriusz" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Gwiazda Luytena" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Kastor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procjon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Polluks" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmen" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spika" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alkor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arktur" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Ed Asich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Arrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Gwiazda Barnarda" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Wega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Gwiazda Campbella" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Gwiazda Granat" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Baham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Gwiazda Babcocka" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5340,6 +5844,9 @@ #~ msgid "Kocab" #~ msgstr "Kochab" +#~ msgid "Van Maanen 2" +#~ msgstr "Gwiazda van Maanena" + #~ msgid "Bear Paw galaxy" #~ msgstr "Galaktyka Åapa Niedźwiedzia" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/pt.po stellarium-0.12.4/po/stellarium-skycultures/pt.po --- stellarium-0.12.1/po/stellarium-skycultures/pt.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/pt.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-17 17:17+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-18 21:51+0000\n" "Last-Translator: Tiago S. \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-19 04:35+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "Sinal de Integral do Sul" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Aglomerado da Estrela-do-Mar" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "Aglomerado S Normae" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Aglomerado em Espiral" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "Galáxia Prancha de Surf" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "Galáxia do Aspirador" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "Galáxia do Secador de Cabelo" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "Nebulosa de Coddington" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "Nebulosa ε Órion" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Fath 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "Nebulosa Triângular de Fleming" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Aglomerado de Graff" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "Galáxia Perdida" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "Ervilha Branca" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "A Mulher Agrilhoada" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "O Anunciador do Brilhante do Sul" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "O Único do Portador de Lança" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Estandarte das Três Estrelas" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "Tartaruga de Carapaça Mole I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Peixe Voador I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Peixe Voador II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Peixe Voador III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Peixe Voador IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Peixe Voador V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Peixe Voador VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "Estrela Gouqian Ocidental" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Grou V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "Seis Jias VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "Tianhunxinanxing" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Degraus Internos I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Degraus Internos II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Degraus Internos III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Degraus Internos IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Degraus Internos V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Degraus Internos VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Bico I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Bico II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Bico III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "BIco IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Bico V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Bico VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Bico VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Triângulo I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Triângulo II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Shaofu" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Grande Estrela Austral" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "General Celestial X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "General Celestial XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Prisão Celestial I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Prisão Celestial II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Prisão Celestial III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Prisão Celestial IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Prisão Celestial V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Prisão Celestial VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Cauda I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Cauda II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Cauda III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Cauda IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Cauda V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Cauda VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Cauda VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Cauda VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Cauda IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Apha Tauri" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "O Pequeno Menino Órfão" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Chaleira Sagrada" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "Estrela de van Maanen 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Estrela Vermelha de Hind" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Estrela de Kapteyn" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Retângulo Vermelho" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Estrela de Plaskett" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Estrela de Luyten" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Estrela de Inne" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Estrela de Przybylski" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Estrela de Barnard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Estrela de Campbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Estrela de Bessel" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "A Estrela Garnet" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Estrela de Babcock" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5341,3 +5845,6 @@ #~ msgid "Hubble's variable neb" #~ msgstr "Nebulosa variável de Hubble" + +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/pt_BR.po stellarium-0.12.4/po/stellarium-skycultures/pt_BR.po --- stellarium-0.12.1/po/stellarium-skycultures/pt_BR.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/pt_BR.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-17 13:02+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-16 20:26+0000\n" "Last-Translator: Adriano Steffler \n" "Language-Team: Portuguese (Brazil) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:59+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "Sinal de Integral do Sul" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Aglomerado da Estrela do Mar" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "Aglomerado S Normae" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Aglomerado Espiral" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "Galáxia da Prancha de Surfe" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "Galáxia do Aspirador de Pó" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "Galáxia do Secador de Cabelo" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "Nebulosa de Coddington" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "Nebulosa ε Órion" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Fath 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "Nebulosa Triangular de Fleming" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Aglomerado de Graff" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "Galáxia Perdida" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "Ervilha Branca" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "A Mulher Agrilhoada" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "O Anunciador do Brilhante do Sul" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "O Único do Portador de Lança" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Faixa de Três Estrelas" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "Tartaruga de Casco Mole I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Peixe Voador I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Peixe Voador II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Peixe Voador III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Peixe Voador IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Peixe Voador V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Peixe Voador VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "Estrela Gouqian Ocidental" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Grou V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "Seis Jias VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "Tianhunxinanxing" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Degraus Internos I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Degraus Internos II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Degraus Internos III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Degraus Internos IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Degraus Internos V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Degraus Internos VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Bico I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Bico II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Bico III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "BIco IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Bico V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Bico VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Bico VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Triângulo I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Triângulo II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Shaofu" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Grande Estrela Austral" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "General Celestial X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "General Celestial XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Prisão Celestial I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Prisão Celestial II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Prisão Celestial III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Prisão Celestial IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Prisão Celestial V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Prisão Celestial VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Cauda I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Cauda II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Cauda III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Cauda IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Cauda V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Cauda VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Cauda VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Cauda VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Cauda IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Perna Dianteira do Touro" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "O Pequeno Menino Órfão" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Chaleira Sagrada" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "Estrela de van Maanen 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Estrela Vermelha de Hind" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Estrela de Kapteyn" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Retângulo Vermelho" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Estrela de Plaskett" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Estrela de Luyten" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Estrela de Inne" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Estrela de Przybylski" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kentaurus" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Estrela de Barnard" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Estrela de Campbell" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Estrela de Bessel" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Estrela de Garnet" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Estrela de Babcock" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5324,6 +5828,9 @@ #~ msgid "Kocab" #~ msgstr "Kocab" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Cerficate of Sky" #~ msgstr "Certidão do Céu" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ro.po stellarium-0.12.4/po/stellarium-skycultures/ro.po --- stellarium-0.12.1/po/stellarium-skycultures/ro.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ro.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-12-01 06:42+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" "100 > 19) || ((n % 100 == 0) && (n != 0))) ? 2: 1))\n" #: nebulae/default/ngc2000names.dat:218 @@ -591,7 +591,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -635,6 +635,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1020,7 +1064,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1225,7 +1269,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2113,6 +2157,186 @@ msgid "Banner of Three Stars" msgstr "Stindardul celor trei stele" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2293,6 +2517,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4435,7 +4915,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4583,738 +5063,762 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ru.po stellarium-0.12.4/po/stellarium-skycultures/ru.po --- stellarium-0.12.1/po/stellarium-skycultures/ru.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ru.po 2013-09-07 15:50:48.000000000 +0000 @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-17 16:28+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-16 17:22+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Koptev Oleg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" "Language: ru\n" #: nebulae/default/ngc2000names.dat:218 @@ -592,7 +592,7 @@ msgid "Southern Integral Sign" msgstr "Знак Южного интеграла" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Скопление МорÑÐºÐ°Ñ Ð·Ð²ÐµÐ·Ð´Ð°" @@ -636,6 +636,50 @@ msgid "S Normae cluster" msgstr "Скопление S Ðаугольника" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Скопление Спираль" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "Галактика ДоÑка Ð´Ð»Ñ Ñерфинга" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "Галактика ПылеÑоÑ" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "Галактика Фен" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "ТуманноÑÑ‚ÑŒ Коддингтона" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "ТуманноÑÑ‚ÑŒ ε Ориона" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Фатх 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "ТуманноÑÑ‚ÑŒ Треугольник Флеминга" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Скопление Граффа" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "ПотерÑÐ½Ð½Ð°Ñ Ð³Ð°Ð»Ð°ÐºÑ‚Ð¸ÐºÐ°" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "Белый горох" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Ð¡ÐºÐ¾Ð²Ð°Ð½Ð½Ð°Ñ Ð¶ÐµÐ½Ñ‰Ð¸Ð½Ð°" @@ -1021,7 +1065,7 @@ msgid "The announcer of the southern Shinning one" msgstr "ПредвеÑтница южной ÑиÑющей (Мирзам)" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "ТейÑÑ‚" @@ -1226,7 +1270,7 @@ msgstr "ЕдинÑтвенный копьеноÑец (Муфрид)" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Хадар" @@ -2114,6 +2158,186 @@ msgid "Banner of Three Stars" msgstr "Символ трёх звёзд" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "ДальневоÑÑ‚Ð¾Ñ‡Ð½Ð°Ñ Ñ‡ÐµÑ€ÐµÐ¿Ð°Ñ…Ð° I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Ð›ÐµÑ‚ÑƒÑ‡Ð°Ñ Ñ€Ñ‹Ð±Ð° I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Ð›ÐµÑ‚ÑƒÑ‡Ð°Ñ Ñ€Ñ‹Ð±Ð° II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Ð›ÐµÑ‚ÑƒÑ‡Ð°Ñ Ñ€Ñ‹Ð±Ð° III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Ð›ÐµÑ‚ÑƒÑ‡Ð°Ñ Ñ€Ñ‹Ð±Ð° IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Ð›ÐµÑ‚ÑƒÑ‡Ð°Ñ Ñ€Ñ‹Ð±Ð° V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Ð›ÐµÑ‚ÑƒÑ‡Ð°Ñ Ñ€Ñ‹Ð±Ð° VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "Ð—Ð°Ð¿Ð°Ð´Ð½Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð° Гукиан" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Журавль V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "ШеÑÑ‚ÑŒ Ð”Ð¶Ð°Ð¹Ñ VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "ЦÑнхунькÑианÑкин" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Внутренние шаги I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Внутренние шаги II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Внутренние шаги III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Внутренние шаги IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Внутренние шаги V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Внутренние шаги VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Клюв I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Клюв II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Клюв III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Клюв IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Клюв V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Клюв VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Клюв VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Треугольник I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Треугольник II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Шаофу" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Ð’ÐµÐ»Ð¸ÐºÐ°Ñ Ð®Ð¶Ð½Ð°Ñ Ð—Ð²ÐµÐ·Ð´Ð°" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "ÐебеÑный генерал X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "ÐебеÑный генерал XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "ÐебеÑный узник I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "ÐебеÑный узник II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "ÐебеÑный узник III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "ÐебеÑный узник IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "ÐебеÑный узник V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "ÐебеÑный узник VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "ХвоÑÑ‚ I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "ХвоÑÑ‚ II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "ХвоÑÑ‚ III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "ХвоÑÑ‚ IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "ХвоÑÑ‚ V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "ХвоÑÑ‚ VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "ХвоÑÑ‚ VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "ХвоÑÑ‚ VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "ХвоÑÑ‚ IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "ПереднÑÑ Ð½Ð¾Ð³Ð° быка" @@ -2294,6 +2518,262 @@ msgid "The Little Orphan Boy" msgstr "Маленький Ñирота" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Тулаа)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Меш)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Каркат)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Макар)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Митун)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Симха)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Мин)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(ДануÑ)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(БриÑчик)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Бриша)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Кумбха)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(КаньÑ)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Калпуруш" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Брихаат Сваан" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Саптрши" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[ÐÑвини]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Бхарани]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Критика]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Рохини]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[МригаÑира]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ðрдхра]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[ПунарваÑу]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[ПушьÑ]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[ÐÑлеша]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Магха]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Пурва Фалгуни]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Уттара Фалгуни]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[ХаÑта]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Читра]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Свати]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[ВиÑакха]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Ðнурадха]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Джешта]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Мула]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Пурва ÐшаРа]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Уттара ÐшаРа]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Шравана]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[ДханиÑта]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Шатабхиша]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Пурва Бхадрапада]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Уттара Бхадрапада]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Реватхи]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Ðбхиджит}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Дхруб Тара" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Рохини" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ðрдхра" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Магха" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Читра" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Свати" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Шравана" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Брамха ХридьÑ" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Лубдхак" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "ВаанраÑ" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Крату" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Пулаха" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "ПулаÑта" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Ðтри" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Ðнгирах" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "БашиÑтха" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Маричи" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Ðрундхати" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Ðбхиджит" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Джешта" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Ðуггашта" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "СвÑщенный котёл" @@ -3988,7 +4468,7 @@ #: skycultures/tongan/constellation_names.eng.fab:8 msgid "Houmatoloa" -msgstr "Ðоуматолоа" +msgstr "Хоуматолоа" #: skycultures/tongan/constellation_names.eng.fab:9 msgid "Fatanalua" @@ -4436,8 +4916,8 @@ msgstr "Дифда" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Звезда Ван Маанена 2" +msgid "van Maanen 2" +msgstr "Звезда ван Маанена" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4584,739 +5064,763 @@ msgstr "Ðльдебаран" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "БагрÑÐ½Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð° Хинда" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "КурÑа" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Звезда Каптейна" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Ригель" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Капелла" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "БеллатрикÑ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "ÐльнаÑ" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Ðихал" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Минтака" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Ðрнеб" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "МеиÑÑа" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Ðльнилам" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Факт" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Ðльнитак" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Саиф" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Вазн" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Бетельгейзе" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Менкалинан" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "ПропуÑ" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "КраÑный прÑмоугольник" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Фуруд" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Мирзам" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "КанопуÑ" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Звезда ПлаÑкетта" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Ðльхена" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "МебÑута" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "СириуÑ" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Ðдара" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Мулифейн" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Мекбуда" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Везен" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Ð‘ÐµÑ€Ð½ÐµÑ 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "ВаÑат" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Ðлудра" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "ГомейÑа" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Звезда Лейтена" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "КаÑтор" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Процион" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ПоллукÑ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "ÐаоÑ" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Регор" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Тегмин" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Ðвиор" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "МуÑцида" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "ÐÑÐµÐ»Ð»ÑƒÑ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ð¸Ñ" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "ÐÑÐµÐ»Ð»ÑƒÑ ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "ÐкубенÑ" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Талита" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Сухаиль" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Миаплацид" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "ÐÑпидиÑке" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Ðльфард" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Ðльтерф" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Субра" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "РаÑалаÑ" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Регул" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Ðдхафера" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Танийа БореалиÑ" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Ðльгиеба" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Танийа ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "ÐлькеÑ" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Мерак" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Дубхе" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "ЗоÑма" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Шератан" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Звезда ИннеÑа" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Ðлула ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Ðлула БореалиÑ" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "ГиауÑар" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Звезда ПшибыльÑкого" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Денебола" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "ЗавийÑва" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Фад (Фекда)" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Ðльхиба" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Мегрец" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Гиена" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Заниах" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ÐкрукÑ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Ðльгораб" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ГакрукÑ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Чара" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Поррима" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "Ð’ÐµÐ»Ð¸ÐºÐ¾Ð»ÐµÐ¿Ð½Ð°Ñ [La Superba]" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Мимоза" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Ðлиот" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Кор Кароли" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "ВиндемиатрикÑ" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Мицар" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Спика" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Ðлькор" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Ðлькаид" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Муфрид" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Тубан" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Менкент" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Ðрктур" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Сырма" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "ПрокÑима" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "СегинуÑ" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Ригиль КентавруÑ" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Изар" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Мерга" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Кохаб" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Зубен Эльгенуби" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Ðеккар" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Зубен Ñль Шемали" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Феркад" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "ÐлькалуропÑ" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "ЭдаÑих" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "ÐуÑакан" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Ðльфекка" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Унукалхаи" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Джубба" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Ðкраб" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "МарÑик" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Йед Приор" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Йед ПоÑтериор" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Ðль ÐиÑÑ‚" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Кужам" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ÐнтареÑ" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "КорнефороÑ" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Марфик" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "ÐтриÑ" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "ÐльракиÑ" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Сабик" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Ð Ð°Ñ Ðльгети" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "РаÑтабан" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "МааÑым" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "ЛеÑат" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Йилдун" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Шаула" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Ð Ð°Ñ Ðльхаг" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Гиртаб" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Кебалраи" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Грумиум" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Этамин" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Звезда Барнарда" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "ÐльнаÑл" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "ÐšÐ°ÑƒÑ ÐœÐµÐ´Ð¸Ð°" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "ÐšÐ°ÑƒÑ ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "ÐšÐ°ÑƒÑ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ð¸Ñ" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Вега" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Шелиак" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Ðунки" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "ÐлиÑ" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Сулафат" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "ÐÑцелла" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "ÐльтаиÑ" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Ðркаб" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Рукбат" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Ðльбирео" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Звезда КÑмпбелла" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Шам" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Таразед" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Ðльтаир" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Ðльшаин" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Ðльгеди" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Дабих" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Садр" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Павлин" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Ротанев" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Суалоцин" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Денеб" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Ðльбали" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Звезда БеÑÑелÑ" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Китальфа" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Ðльдерамин" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Ðльфирк" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "СадалÑууд" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Ðашира" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Ðзельфафаж" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Ð“Ñ€Ð°Ð½Ð°Ñ‚Ð¾Ð²Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð°" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Эниф" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Денеб Ðльгеди" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Курхах" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Садалмелик" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Ðльнаир" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Бихам" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ðнха" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Садахбиа" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Крюгер 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Ситула" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Хоман" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Матар" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Звезда Бабкока" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Садалбари" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Скат" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Фомальгаут" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Шеат" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Маркаб" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Эрраи" @@ -5343,3 +5847,6 @@ #~ msgid "Kocab" #~ msgstr "Кохаб" + +#~ msgid "Van Maanen 2" +#~ msgstr "Звезда Ван Маанена 2" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/sah.po stellarium-0.12.4/po/stellarium-skycultures/sah.po --- stellarium-0.12.1/po/stellarium-skycultures/sah.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/sah.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-07-08 02:58+0000\n" -"Last-Translator: Chynggyz Jumaliev \n" +"Last-Translator: ballpen \n" "Language-Team: Yakut \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/se.po stellarium-0.12.4/po/stellarium-skycultures/se.po --- stellarium-0.12.1/po/stellarium-skycultures/se.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/se.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2011-03-07 00:22+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Northern Sami \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:57+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/si.po stellarium-0.12.4/po/stellarium-skycultures/si.po --- stellarium-0.12.1/po/stellarium-skycultures/si.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/si.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2013-03-03 23:05+0000\n" "Last-Translator: Dileepa Rajapaksa(දිලීප රà·à¶¢à¶´à¶šà·Šà·‚) \n" "Language-Team: Sinhalese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,213,-1,-1\n" #: nebulae/default/ngc2000names.dat:218 @@ -591,7 +591,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -635,6 +635,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "විලංගු ලූ කà·à¶±à·Šà¶­à·à·€" @@ -1020,7 +1064,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "ටෙජà·à¶§à·Š" @@ -1225,7 +1269,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "à·„à·à¶©à¶»à·Š" @@ -2113,6 +2157,186 @@ msgid "Banner of Three Stars" msgstr "තරුතුනේ දà·à¶±à·Šà·€à·“ම" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "ගොනà·à¶œà·š ඉදිරි පය" @@ -2293,6 +2517,262 @@ msgid "The Little Orphan Boy" msgstr "පුංචි අනà·à¶® දරුවà·" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "à·à·”ද්ධවූ කේතලය" @@ -4435,8 +4915,8 @@ msgstr "ඩිෆ්ඩà·" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "වෑන් මනෙන් 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4583,739 +5063,763 @@ msgstr "අල්ඩිබෙරà·à¶±à·Š" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "කර්සà·" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "කà·à¶´à·Šà¶§à·™à¶ºà·’න්ගේ තරුව" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "රිජෙල්" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "කà·à¶´à·™à¶½à·Šà¶½à·" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "බෙලට්â€à¶»à·’ක්ස්" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "අල්නà·à¶­à·Š" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "නිහà·à¶½à·Š" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "මින්ටකà·" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "අර්නෙබ්" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "මෙයිස්සà·" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "අල්නිලම්" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "à·†à·à¶šà·Šà¶§à·Š" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "අල්නිටක්" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "සයිෆ්" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "à·€(z)ස්න්" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "බිටල්ජූස්" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "මෙන්කලිනà·à¶±à·Š" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "ප්â€à¶»à·œà¶´à·ƒà·Š" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "රතු සෘජුකà·à¶«à·à·ƒà·Šâ€à¶»à¶º" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "ෆුරුඩ්" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "මර්(z)à·ƒà·à¶¸à·Š" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "කà·à¶±à·à¶´à·ƒà·Š" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "ඇල්හේනà·" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "මෙබ්සුටà·" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "සීරියස්" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "අධà·à¶»à·" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "මුලිෆෙයින්" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "මෙක්බුඩà·" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "වෙ(z)සෙන්" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "බර්න්ස් 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "වසට්" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "අලුද්â€à¶»à·" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "ගොමෙයිසà·" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "ලුයිටන්ගේ තරුව" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "කà·à·ƒà·Šà¶§à¶»à·Š" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "ප්â€à¶»à·œà·ƒà·’යොන්" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "පොලක්ස්" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "නà·à¶•à·ƒà·Š" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "රෙගොර්" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "ටෙග්මයින්" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "එවියොර්" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "මුස්කිඩà·" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "ඇසෙලස් බොරියà·à¶½à·’ස්" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "ඇසෙලස් ඔස්â€à¶§à·Šâ€à¶»à·à¶½à·’ස්" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "ඇකියුබන්ස්" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "තලිතà·" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "සුහයිල්" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "මියප්ලසිඩස්" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "ඇස්පිඩිස්කෙ" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "ඇල්ෆර්ඩ්" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "ඇල්ටර්ෆ්" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "සුබ්â€à¶»à·" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "රසලà·à·ƒà·Š" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "රෙගියුලස්" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "අධෆෙරà·" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "ටනිය෠බොරියà·à¶½à·’ස්" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "ඇල්ජිබà·" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "ටනිය෠ඕස්ට්â€à¶»à·à¶½à·’ස්" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "අල්කෙස්" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "මෙරà·à¶šà·Š" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "ඩබීහී" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "(z)සොස්හà·" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "චෙර්ටà·à¶±à·Š" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "අලුල෠ඔස්ට්â€à¶»à·à¶½à·’ස්" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "අලුල෠බොරියà·à¶½à·’ස්" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "ජියුසà·à¶»à·Š" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "ඩෙනෙබà·à¶½à·" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "(z)සවිජà·à·€à·" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "à·†à·à¶©à·Š" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "ඇල්චිබà·" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "මෙග්රෙ(z)ස්" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "ජියà·à¶±à·à·„à·Š" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "(z)සනියà·à·„à·Š" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ඒක්රක්ස්" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "ඇල්ගොරබ්" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ගà·à¶šà·Šà¶»à¶šà·Šà·ƒà·Š" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "චà·à¶»à·" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "පොරිමà·" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "මිමොසà·" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "ඇලියොත්" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "කොර් කරà·à¶½à·’" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "වින්ඩර්මියà·à¶§à·Šâ€à¶»à·’ක්ස්" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "මි(z)à·ƒà·à¶»à·Š" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "ස්පයිකà·" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "ඇල්කà·à¶»à·Š" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "අල්කà·à¶ºà·’ඩ්" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "මුෆ්â€à¶»à·’ඩ්" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "තුබà·à¶±à·Š" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "මෙන්කෙන්ට්" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "ආර්ක්ටුරස්" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "සිර්මà·" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "ප්â€à¶»à·™à¶šà·Šà·ƒà·’මà·" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "සෙගිනස්" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "රිජිල් කෙන්ට්" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "ඊසà·à¶»à·Š" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "මෙර්ගà·" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "(z)සුබෙනෙල්ගුනෙබි" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "නෙක්කà·à¶»à·Š" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "(z)සුබෙනෙස්චමà·à¶½à·’" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "ෆෙර්කà·à¶©à·Š" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "අල්කලුරොප්ස්" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "එඩසිෂ්" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "නුසකන්" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "ඇල්ෆෙක්කà·" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "උනුකල්හà·à¶ºà·’" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "ෂූබà·" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "ආර්කබ්" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "මà·à·ƒà·’ක්" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "යෙඩ් ප්â€à¶»à¶ºà·’රර්" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "යෙඩ් පොස්ටීරියර්" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "අල් නියට්" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "කුජà·à¶¸à·Š" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ඇන්ටà·à¶»à·ƒà·Š" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "කà·à¶»à·Šà¶±à·Šà¶´à·œà¶»à·œà·ƒà·Š" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "මà·à¶»à·Šà·†à·’ක්" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "අට්රියà·" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "අල්රà·à¶šà·’ස්" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "සබික්" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "රසල්ගෙති" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "රස්ටබà·à¶±à·Š" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "මà·à·ƒà·’ම්" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "ලෙසත්" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "යිල්ඩන්" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "à·‚à·à¶½à·" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "රසල්හග්" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "ගර්ටà·à¶¶à·Š" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "සෙබල්රà·à¶ºà·’" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "ගෲමියම්" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "එටà·à¶¸à·’න්" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "බර්නà·à¶©à·Šà¶œà·š තරුව" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "අල්නà·à·ƒà·’" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "කà·à·ƒà·Š මෙඩිය" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "කà·à·ƒà·Š ඔස්ට්â€à¶»à·šà¶½à·’ස්" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "කà·à·ƒà·Š බොරෙයà·à¶½à·’ස්" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "වේගà·" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "ෂෙලියà·à¶šà·Š" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "නන්කි" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "අල්යà·" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "සුලà·à·†à¶§à·Š" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "ඇසකෙලà·" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "අල්ටà·à¶ºà·’ස්" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "ආර්කබ්" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "රුක්බà·à¶§à·Š" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "ඇල්බයිරියà·" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "කà·à¶¸à·Šà¶´à·Šà¶¶à·™à¶½à·Šà¶œà·š තරුව" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "à·‚à·à¶¸à·Š" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "ටරà·à·ƒà·™à¶©à·Š" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "අල්ටෙයà·à¶»à·Š" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "අල්ෂෙයින්" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "අල්ගෙඩි" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "ඩබිහ්" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "à·ƒà·à¶©à¶»à·Š" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "පීකොක්" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "රොටà·à¶±à·™à·€à·Š" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "සුවà·à¶½à·œà·ƒà·’න්" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "ඩෙනෙබ්" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "අල්බà·à¶½à·’" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "කිටල්ෆà·" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "ඇල්ඩෙරà·à¶¸à·’න්" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "අල්ෆර්ක්" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "සඩල්සූඩ්" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "නෂිරà·" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "අසෙල්ෆෆෙජ්" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "ගà·à¶±à¶§à·Š ස්ටà·à¶»à·Š" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "ඊනිෆ්" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "ඩෙනෙබ් අල්ගෙඩි" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "කර්හà·à·„à·Š" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "සඩල්මෙලික්" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "අල්නයිර්" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "බිහà·à¶¸à·Š" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "අන්චà·" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "සඩල්ච්බියà·" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "කෲගර් 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "සිටුලà·" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "හොමà·à¶¸à·Š" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "මà·à¶§à¶»à·Š" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "බෙබ්කොක්ගේ තරුව" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "සඩල්බරි" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "ස්කà·à¶§à·Š" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "à·†à·à¶¸à¶½à·Šà·„à·à¶§à·Š" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "මà·à¶šà¶¶à·Š" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "එර්රයි" @@ -5342,3 +5846,6 @@ #~ msgid "Kocab" #~ msgstr "කොකබ්" + +#~ msgid "Van Maanen 2" +#~ msgstr "වෑන් මනෙන් 2" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/sk.po stellarium-0.12.4/po/stellarium-skycultures/sk.po --- stellarium-0.12.1/po/stellarium-skycultures/sk.po 2013-04-07 14:14:24.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/sk.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-23 11:10+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-26 09:59+0000\n" "Last-Translator: Pavol GajdoÅ¡ \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-24 04:42+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:37+0000\n" +"X-Generator: Launchpad (build 16738)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "Južný nedeliteľný pohľad" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Hviezdokopa Hviezdica" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "Hviezdokopa S Normae" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Fath 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Spútaná žena" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "Hlásateľ Južného lesku" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "Jediný nosiÄ kopie" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Vlajka troch hviezd" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "Kožnatka 1" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Lietajúca ryba 1" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Lietajúca ryba 2" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Lietajúca ryba 3" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Lietajúca ryba 4" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Lietajúca ryba 5" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Lietajúca ryba 6" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "Západná Gouiqanská hviezda" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Žeriav 5" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "Six Jias VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "Tianhunxinanxing" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Vnútorné schody 1" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Vnútorné schody 2" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Vnútorné schody 3" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Vnútorné schody 4" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Vnútorné schody 4" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Vnútorné schody 6" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Zobák 1" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Zobák 2" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Zobák 3" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Zobák 4" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Zobák 5" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Zobák 6" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Zobák 7" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Trojuholník 1" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Trojuholník 2" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Shaofu" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Veľká južná hviezda" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "Nebeský generál 10" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "Nebeský generál 11" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "Nebeské väzenie 1" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "Nebeské väzenie 2" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "Nebeské väzenie 3" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "Nebeské väzenie 4" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "Nebeské väzenie 5" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "Nebeské väzenie 6" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "Chvost 1" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "Chvost 2" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "Chvost 3" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "Chvost 4" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "Chvost 5" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "Chvost 6" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "Chvost 7" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "Chvost 8" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "Chvost 9" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Predné nohy býka" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "Osirelý chlapec" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Tulaa)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Mesh)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Karkat)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Makar)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Mithun)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Simha)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Meen)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(Dhanus)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(Brischik)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Brisha)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Kumbha)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(Kanya)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Kalpurush" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Brihaat Swaan" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Saptrshi" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[Aswini]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Bharani]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Krithika]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Rohini]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[Mrigasira]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ardhra]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[Punarvasu]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[Pushya]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[Aslesha]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Magha]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Purva Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Uttara Phalguni]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[Hasta]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Chitra]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Swati]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Visakha]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Anuradha]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Jyeshta]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Moola]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Purva AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Uttara AshaRa]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Shravana]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[Dhanista]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Shatabhisha]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Purva Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Uttara Bhadrapada]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Revathi]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Abhijit}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Dhrub Tara" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Rohini" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ardhra" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Magha" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Chitra" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Swati" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Shravana" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Bramha Hridya" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Lubdhak" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Vaanraja" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Kratu" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Pulaha" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "Pulasta" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Atri" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Angirah" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "Bashistha" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Marichi" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Arundhati" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Abhijit" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Jyeshta" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Auggashta" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Svätá konvica" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "van Maanen 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Hindova Äervená hviezda" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteynova hviezda" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "ÄŒervený obdĺžnik" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Plaskettova hviezda" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sírius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Luytenova hviezda" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Akubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Innesova hviezda" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Przybylského hviezda" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "La Superba" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Kochab" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnardova hviezda" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Campbellova hviezda" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Besselova hviezda" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Garnátova hviezda" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babcockova hviezda" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5338,3 +5842,6 @@ #~ msgid "Bear Paw galaxy" #~ msgstr "Galaxia Medvedia laba" + +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/sl.po stellarium-0.12.4/po/stellarium-skycultures/sl.po --- stellarium-0.12.1/po/stellarium-skycultures/sl.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/sl.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-12-30 11:07+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:57+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Prapor treh zvezd" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Bikova prednja noga" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Sveti kotliÄ" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spika" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arktur" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Å aula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/sm.po stellarium-0.12.4/po/stellarium-skycultures/sm.po --- stellarium-0.12.1/po/stellarium-skycultures/sm.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/sm.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:24+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Samoan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:57+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/sq.po stellarium-0.12.4/po/stellarium-skycultures/sq.po --- stellarium-0.12.1/po/stellarium-skycultures/sq.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/sq.po 2013-09-07 15:50:48.000000000 +0000 @@ -25,15 +25,15 @@ msgstr "" "Project-Id-Version: stellarium-skycultures 0.10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2011-02-22 21:59+0000\n" "Last-Translator: Sofokli Varelas \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:49+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -608,7 +608,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -652,6 +652,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1037,7 +1081,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1242,7 +1286,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2130,6 +2174,186 @@ msgid "Banner of Three Stars" msgstr "Flamuri i Tre Yjeve" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Të përparmet e Buallit" @@ -2310,6 +2534,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Ibriku i Shenjtë" @@ -4452,7 +4932,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4600,739 +5080,763 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/sr.po stellarium-0.12.4/po/stellarium-skycultures/sr.po --- stellarium-0.12.1/po/stellarium-skycultures/sr.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/sr.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-11-30 19:42+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:56+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Теџат" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Хадар" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "Дифда" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "Ðлдебаран" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "КурÑа" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Ригел" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Капела" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "БелатрикÑ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Ðлнат" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Ðихал" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Минтака" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Ðрнеб" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Ðлнилам" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Ðлнитак" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Саиф" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Вазн" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Бетелгез" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Менкалинан" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Фуруд" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Мирзам" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "КанопуÑ" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Ðлхена" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "МебÑута" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "СиријуÑ" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Ðдара" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Мулифејн" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Мекбуда" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Везен" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "ВаÑат" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Ðлудра" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "ГомејÑа" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "КаÑтор" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "ПроÑион" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ПолукÑ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "ÐаоÑ" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Регор" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Ðвиор" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "МуÑкида" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "ÐÑÐµÐ»ÑƒÑ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ð¸Ñ" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "ÐкубенÑ" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Сухајл" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "МиаплаÑидуÑ" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "ÐÑпидиÑк" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Ðлфард" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "РезалаÑ" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "РегулуÑ" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Ðдхафера" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Танија БореалиÑ" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Танија ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "ÐлкеÑ" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Мерак" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Дубе" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Чертан" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Ðлула БореалиÑ" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Денебола" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Мегрез" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Гијена" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ÐкрукÑ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Ðлгораб" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ГакрукÑ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Кхара" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Мимоза" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Ðлиот" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Кор Кароли" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "ВиндемијатрикÑ" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Мизар" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Спика" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Ðлкајд" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Муфрид" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Тубан" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Менкент" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "ÐрктуруÑ" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Сирма" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "СегинуÑ" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Ðекар" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "ÐлкалуропÑ" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "ЕдаÑих" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "ÐуÑакан" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Унукалхаи" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Дшуба" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Јед Приор" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Јед ПоÑтериор" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Ðл Ðијат" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Кујам" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ÐнтареÑ" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "КорнефороÑ" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Марфик" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "РаÑтабан" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "ЛеÑат" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Шаула" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "РаÑалхаг" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Грумијум" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "ÐšÐ°ÑƒÑ ÐœÐµÐ´Ð¸Ñ˜Ð°" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "ÐšÐ°ÑƒÑ ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "ÐšÐ°ÑƒÑ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ð¸Ñ" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Вега" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Шелијак" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Ðунки" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Ðлија" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "ÐлтајÑ" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Ðлбирео" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Таразед" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Ðлтер" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Ðлшајн" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Дабих" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Садр" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Пикок" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Ротанев" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Денеб" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Ðлбали" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Киталфа" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Ðлдерамин" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Ðашира" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Ениф" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Садалмелик" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ðнча" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Садачбија" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Хоман" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Матар" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Садалбари" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Скат" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Фомалхаут" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Маркаб" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/stellarium-skycultures.pot stellarium-0.12.4/po/stellarium-skycultures/stellarium-skycultures.pot --- stellarium-0.12.1/po/stellarium-skycultures/stellarium-skycultures.pot 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/stellarium-skycultures.pot 2013-09-07 15:50:48.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/su.po stellarium-0.12.4/po/stellarium-skycultures/su.po --- stellarium-0.12.1/po/stellarium-skycultures/su.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/su.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-03-24 10:13+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Sundanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:57+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/sv.po stellarium-0.12.4/po/stellarium-skycultures/sv.po --- stellarium-0.12.1/po/stellarium-skycultures/sv.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/sv.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-02-28 10:44+0000\n" -"Last-Translator: Mikael Hiort af Ornäs \n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-07-21 16:04+0000\n" +"Last-Translator: Jonas Persson \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:57+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -59,7 +59,7 @@ #: nebulae/default/ngc2000names.dat:229 msgid "Cigar Galaxy" -msgstr "" +msgstr "Cigarrgalaxen" #: nebulae/default/ngc2000names.dat:230 nebulae/default/ngc2000names.dat:231 #: nebulae/default/ngc2000names.dat:232 nebulae/default/ngc2000names.dat:233 @@ -80,7 +80,7 @@ #: nebulae/default/ngc2000names.dat:237 msgid "Butterfly cluster" -msgstr "" +msgstr "Fjärilsklustret" #: nebulae/default/ngc2000names.dat:238 msgid "Butterfly nebula" @@ -96,7 +96,7 @@ #: nebulae/default/ngc2000names.dat:241 msgid "Christmas Tree cluster" -msgstr "" +msgstr "Julgranhopen" #: nebulae/default/ngc2000names.dat:242 msgid "Cocoon nebula" @@ -123,7 +123,7 @@ #: nebulae/default/ngc2000names.dat:253 nebulae/default/ngc2000names.dat:254 msgid "Double cluster" -msgstr "" +msgstr "Dubbelhop" #: nebulae/default/ngc2000names.dat:255 msgid "Dumbbell nebula" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Baner med tre stjärnor" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Oxens framben" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Helig gryta" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,742 +5062,769 @@ msgstr "Aldebaran" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteyn's Stjärna" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Rigel" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Capella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrix" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Betelgeuse" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Sirius" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Luytens stjärna" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Castor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Procyon" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Pollux" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimosa" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Spica" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arcturus" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Segin" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Antares" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnards stjärna" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Campbells stjärna" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Altair" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Peacock" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Deneb" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babcocks stjärna" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Scheat" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" + #~ msgid "Kocab" #~ msgstr "Kocab" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/sw.po stellarium-0.12.4/po/stellarium-skycultures/sw.po --- stellarium-0.12.1/po/stellarium-skycultures/sw.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/sw.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:25+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swahili \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:57+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/ta.po stellarium-0.12.4/po/stellarium-skycultures/ta.po --- stellarium-0.12.1/po/stellarium-skycultures/ta.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/ta.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-12-30 12:01+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:57+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "ரோகிணி (Aldebaran)" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "கரà¯à®¸à®¾" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "இரீகலà¯" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "காபெலà¯à®²à®¾" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "பெலà¯à®²à®¾à®Ÿà®¿à®°à®¿à®•à¯à®¸à¯" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "அலà¯à®©à®¤à¯" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "நிஹலà¯" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "மினà¯à®¤à®•à®¾" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "à®…à®°à¯à®¨à¯†à®ªà¯" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "அலà¯à®¨à®¿à®²à®®à¯" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "அலà¯à®©à®¿à®Ÿà®¾à®•à¯" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "செயà¯à®ƒà®ªà¯" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "வானà¯" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "திரà¯à®µà®¾à®¤à®¿à®°à¯ˆ (Betelgeuse)" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "மெனà¯à®•à®²à®¿à®£à®©à¯" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "சிவபà¯à®ªà¯ செவà¯à®µà®•à®®à¯" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "பà¯à®¯à¯à®°à¯à®Ÿà¯" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "மிரà¯à®œà®¾à®®à¯" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "கனோபஸà¯" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "அலà¯à®¹à¯‡à®©à®¾" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "மெபà¯à®¸à¯à®Ÿà®¾" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "சைரஸà¯" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "அதரா" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "à®®à¯à®²à®¿à®ƒà®ªà¯€à®©à¯" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "மெகà¯à®ªà¯à®Ÿà®¾" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "வீஜனà¯" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "வாஜாடà¯" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "அலà¯à®Ÿà¯à®°à®¾" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "கோமியà¯à®šà®¾" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "காஸà¯à®Ÿà®°à¯" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "பà¯à®°à¯Šà®•à®¿à®¯à®¾à®©à¯" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "பà¯à®©à®°à¯à®ªà¯‚சம௠(Pollux)" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "நாஓஸà¯" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "இரேகோரà¯" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "அவியரà¯" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "à®®à¯à®šà¯€à®¤à®¾" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "அசெலà¯à®²à¯à®¸à¯ போரியலிஸà¯" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "அகà¯à®ªà¯†à®©à¯à®¸à¯" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "சà¯à®¹à¯†à®¯à¯à®²à¯" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "மியாபà¯à®²à¯‡à®šà®¿à®Ÿà®¸à¯" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "அஸà¯à®ªà®¿à®Ÿà®¿à®¸à¯à®•à¯" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "அலà¯à®ªà®¾à®°à¯à®Ÿà¯" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "இராசலாஸà¯" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "மகம௠(Regulus)" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "அதாபேரா" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "டானியா போரியாலிஸà¯" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "டானியா ஆஸà¯à®Ÿà¯à®°à¯‡à®²à®¿à®¸à¯" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "அலà¯à®•à¯†à®¸à¯" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "மெராகà¯" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "டபà¯à®¹à¯‡" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "செரà¯à®Ÿà®©à¯" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "அலà¯à®²à®¾ போரியலà¯à®¸à¯" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "டெனெபோலா" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "மெகà¯à®°à¯†à®¸à¯" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "ஜீனஹà¯" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "அகà¯à®°à¯à®¸à¯" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "அலà¯à®•à¯‹à®°à®ªà¯" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "காகà¯à®°à®•à¯à®¸à¯" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "சாரா" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "மிமோசா" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "அலியோதà¯" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "கார௠கரோலி" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "வினà¯à®Ÿà¯†à®®à®¿à®¯à®¾à®Ÿà®¿à®°à®¿à®•à¯à®¸à¯" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "மிஜாரà¯" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "சிதà¯à®¤à®¿à®°à¯ˆ (Spica)" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "அலà¯à®•à¯ˆà®Ÿà¯" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "à®®à¯à®ƒà®ªà¯à®°à¯€à®¤à¯" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "தூபானà¯" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "மெனà¯à®•à¯†à®©à¯à®¤à¯" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "சà¯à®µà®¾à®¤à®¿ (Arcturus)" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "ஸிரà¯à®®à®¾" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "சீகினஸà¯" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "நேகà¯à®•à®°à¯" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "அலà¯à®•à®²à¯à®°à®¾à®ªà¯à®¸à¯" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "எடாசிகà¯" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "நà¯à®šà®•à®°à®©à¯" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "உனà¯à®•à®²à¯à®¹à¯ˆ" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "இயத௠பà¯à®°à¯€à®¯à®°à¯" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "இயத௠போஸà¯à®Ÿà¯€à®°à®¿à®¯à®°à¯" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "அல௠நியாடà¯" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "கà¯à®œà®®à¯" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "கேடà¯à®Ÿà¯ˆ (Antares)" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "கோரà¯à®©à®¿à®ªà¯‹à®°à®¸à¯" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "மாரà¯à®ƒà®•à¯" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "இராஸà¯à®¤à®ªà®¾à®©à¯" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "லேசதà¯" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "சாயà¯à®²à®¾" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "இராசலà¯à®¹à¯‡à®•à¯" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "கà¯à®°à¯‚மியமà¯" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "காஸ௠மீடியா" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "காஸ௠ஆஸà¯à®¤à®¿à®°à¯‡à®²à®¿à®¸à¯" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "காஸ௠போரியலà¯à®¸à¯" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "உதà¯à®¤à®¿à®°à®¾à®Ÿà®®à¯ (Vega)" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "ஷேலியாகà¯" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "நà¯à®©à¯à®•à®¿" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "அலà¯à®¯à®¾" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "அலà¯à®Ÿà¯ˆà®¸à¯" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "அலà¯à®ªà®¿à®°à¯‹" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "டராஜெதà¯" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "அலà¯à®Ÿà¯ˆà®°à¯" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "அலà¯à®·à®©à¯" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "டாபிஹà¯" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "சாதரà¯" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "பீகாகà¯" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "இரொதானேவà¯" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "டெனெபà¯" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "அலà¯à®ªà®²à®¿" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "கிடà¯à®†à®²à¯à®ªà®¾" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "அலà¯à®Ÿà®°à®®à®¿à®©à¯" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "நாஷிரா" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "எநிஃபà¯" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "சாதலà¯à®®à¯†à®²à®¿à®•à¯" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "அனà¯à®šà¯à®šà®¾" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "சாதகà¯à®ªà®¿à®¯à®¾" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "ஸà¯à®Ÿà¯à®²à®¾" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "ஹோமனà¯" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "மாடாரà¯" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "சாதலà¯à®ªà®°à®¿" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "ஸà¯à®•à®¾à®Ÿà¯" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "பாரà¯à®®à®²à¯à®¹à®¾à®Ÿà¯" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "ஸà¯à®•à¯€à®Ÿà¯" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "மாரà¯à®•à®¾à®ªà¯" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "இராயà¯" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/te.po stellarium-0.12.4/po/stellarium-skycultures/te.po --- stellarium-0.12.1/po/stellarium-skycultures/te.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/te.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-01-28 20:20+0000\n" "Last-Translator: Vayuputra \n" "Language-Team: Telugu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:57+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/tg.po stellarium-0.12.4/po/stellarium-skycultures/tg.po --- stellarium-0.12.1/po/stellarium-skycultures/tg.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/tg.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-12-26 13:22+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Tajik \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -594,7 +594,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -638,6 +638,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1023,7 +1067,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1228,7 +1272,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2116,6 +2160,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2296,6 +2520,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4438,7 +4918,7 @@ msgstr "Дифда" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4586,739 +5066,763 @@ msgstr "Ðлдебаран" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "КурÑа" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Ригел" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Капелла" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "БаллатрикÑ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Ðлнат" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Ðихал" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Минтака" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Ðрнеб" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Ðлнилам" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Ðлнитак" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Сайф" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Вазн" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "БетелгиÑ" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Менкалинан" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Фуруд" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Мирзам" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "КанопуÑ" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Ðлхена" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "МебÑута" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "СириуÑ" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Ðдхара" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Мулифейн" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Мекбуда" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Везен" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "ВаÑат" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Ðлудра" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "ГомейÑа" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "КаÑтор" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "ПроÑион" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ПоллукÑ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "ÐаоÑ" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Регор" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Ðвиор" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "МаÑкида" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "ИÑÐµÐ»Ð¸Ñ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ð¸Ñ" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "ÐкубенÑ" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Суҳайл" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "МиаплаÑидуÑ" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "ÐÑпидиÑк" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Ðлфард" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "РаÑалаÑ" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "РегулуÑ" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Ðдгара" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Ð¢Ð°Ð½Ñ Ð‘Ð¾Ñ€ÐµÐ»Ð¸Ñ" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Ð¢Ð°Ð½Ñ ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "ÐлкеÑ" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Мерак" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Дудҳи" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Ширтан" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Ðлула БореалиÑ" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Денебола" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Мегрез" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Гиена" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ÐкрукÑ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Ðлгораб" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ГакрукÑ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Шара" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Мимоза" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Элиот" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Кор Кароли" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "ВиндемÑтрикÑ" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Мизар" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "СпиÑа" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Ðлкаид" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Муфрид" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Субан" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Менкент" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "ÐрктуруÑ" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Сирма" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "СегинуÑ" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Ðеккар" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "ÐлкарулопÑ" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "ИдаÑик" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "ÐуÑакан" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Унукалхай" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "ДÑкубба" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Ед Приор" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Ед ПоÑтериор" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Ðл ÐиÑÑ‚" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Куйам" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ÐнтареÑ" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "КорнефороÑ" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Марфик" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "РаÑтабан" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "ЛеÑат" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Шаула" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Рашалхагуа" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Грумиум" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "ÐšÐ°ÑƒÑ ÐœÐµÐ´Ð¸Ð°" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "ÐšÐµÑƒÑ ÐуÑтралиÑ" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "ÐšÐ°ÑƒÑ Ð‘Ð¾Ñ€Ð¸Ð»Ð¸Ñ" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Вега" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Шелиак" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Ðанки" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Ðлуа" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "ÐлтаиÑ" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Ðлбирео" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Таразед" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Ðлтаир" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Ðлшаин" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Дабих" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Садр" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Пикок" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Ротанев" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Денеб" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Ðлбали" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Киталфа" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Ðлдерамин" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Ðашира" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Иниф" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Садалмелик" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ðнка" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Садичбиа" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Гоман" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Матар" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Садалбари" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Скат" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Фамалҳот" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Чит" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Маркаб" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/th.po stellarium-0.12.4/po/stellarium-skycultures/th.po --- stellarium-0.12.1/po/stellarium-skycultures/th.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/th.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: Thai for stellarium 0.8.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-02-04 10:50+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-07-24 05:20+0000\n" "Last-Translator: Worachate Boonplod \n" "Language-Team: MicKi Alone \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" "X-Poedit-Country: THAILAND\n" "X-Poedit-Language: Thai\n" @@ -524,7 +524,7 @@ #: nebulae/default/ngc2000names.dat:367 msgid "Elephant's Trunk nebula" -msgstr "" +msgstr "เนบิวลางวงช้าง" #: nebulae/default/ngc2000names.dat:368 nebulae/default/ngc2000names.dat:369 #: nebulae/default/ngc2000names.dat:370 nebulae/default/ngc2000names.dat:371 @@ -592,7 +592,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "à¸à¸£à¸°à¸ˆà¸¸à¸à¸”าวปลาดาว" @@ -630,10 +630,54 @@ #: nebulae/default/ngc2000names.dat:399 msgid "Pearl cluster" -msgstr "" +msgstr "à¸à¸£à¸°à¸ˆà¸¸à¸à¸”าวไข่มุà¸" #: nebulae/default/ngc2000names.dat:400 msgid "S Normae cluster" +msgstr "à¸à¸£à¸°à¸ˆà¸¸à¸à¸”าวเอสไม้ฉาà¸" + +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" msgstr "" #: skycultures/arabic/constellation_names.eng.fab:1 @@ -1021,7 +1065,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1226,7 +1270,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "à¹à¸®à¸”าร์ / เฮดาร์" @@ -2114,6 +2158,186 @@ msgid "Banner of Three Stars" msgstr "ป้ายสามดาว" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "ขาหน้าของวัว" @@ -2294,6 +2518,262 @@ msgid "The Little Orphan Boy" msgstr "เด็à¸à¸Šà¸²à¸¢à¸à¸³à¸žà¸£à¹‰à¸²" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "à¸à¸²à¸™à¹‰à¸³à¸¨à¸±à¸à¸”ิ์สิทธิ์" @@ -4436,7 +4916,7 @@ msgstr "ดิฟดา" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4584,739 +5064,763 @@ msgstr "อัลเดบารัน" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "เคอร์ซา" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "ดาวของà¹à¸„ปทีน" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "ไรเจล" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "คาเพลลา" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "เบลลาทริà¸à¸‹à¹Œ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "มินทาà¸à¸²" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "อาร์เนบ" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "อัลนิลัม" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "à¹à¸Ÿà¸à¸•à¹Œ" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "เบเทลจุส" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "โพรพัส" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "สี่เหลี่ยมà¹à¸”ง" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "คาโนปัส" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "อัลเฮนา" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "ซิริอัส / ดาวโจร" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "à¹à¸­à¸”ฮารา" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "คาสเตอร์" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "โพรซิออน" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "พอลลัà¸à¸‹à¹Œ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "อัลฟาร์ด" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "อัลเทิร์ฟ" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "ราซาลาส" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "เรà¸à¸¹à¸¥à¸±à¸ª / หัวใจสิงห์" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "อัลจีบา" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "เมรัà¸" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "ซอสมา" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "เดเนโบลา" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "อัลชิบา" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "เมเà¸à¸£à¸‹" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "เอครัà¸à¸‹à¹Œ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "à¸à¸²à¸„รัà¸à¸‹à¹Œ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "คารา" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "พอร์ริมา" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "มิโมซา" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "อัลลิออท" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "มิซาร์" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "สไปà¸à¸² / รวงข้าว" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "อัลคอร์" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "เมนเคนต์" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "อาร์à¸à¸—ูรัส / ดวงà¹à¸à¹‰à¸§" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "พร็อà¸à¸‹à¸´à¸¡à¸²" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "ไรจิลเคนทอรัส" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "เมอร์à¸à¸²" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "เนà¸à¸„าร์" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "มาร์ซิà¸" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "à¹à¸­à¸™à¸—าเรส / ปาริชาต" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "มาร์ฟิà¸" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "ซาบิà¸" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "ชอลา" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "ดาวบาร์นาร์ด" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "เวà¸à¸²" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "à¹à¸­à¸ªà¹€à¸‹à¸¥à¸¥à¸²" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "อาร์à¹à¸„บ" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "อัลบิรีโอ" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "ดาวà¹à¸„มป์เบล" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "à¹à¸Šà¸¡" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "อัลà¹à¸—ร์ / ตานà¸à¸­à¸´à¸™à¸—รี" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "เดเนบ" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "อัลà¹à¸™à¸£à¹Œ" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "ครูเà¸à¸­à¸£à¹Œ 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "โฟมัลฮอต" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "มาร์à¹à¸„บ" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/tl.po stellarium-0.12.4/po/stellarium-skycultures/tl.po --- stellarium-0.12.1/po/stellarium-skycultures/tl.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/tl.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2010-01-28 20:20+0000\n" "Last-Translator: András Mohari \n" "Language-Team: Tagalog \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/tr.po stellarium-0.12.4/po/stellarium-skycultures/tr.po --- stellarium-0.12.1/po/stellarium-skycultures/tr.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/tr.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2012-12-30 11:19+0000\n" -"Last-Translator: Alexander Wolf \n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-01 11:05+0000\n" +"Last-Translator: aydın \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -386,11 +386,11 @@ #: nebulae/default/ngc2000names.dat:333 msgid "War and Peace nebula" -msgstr "" +msgstr "SavaÅŸ ve Barış bulutsusu" #: nebulae/default/ngc2000names.dat:334 msgid "Little Ghost nebula" -msgstr "" +msgstr "Küçük Hayalet bulutsusu" #: nebulae/default/ngc2000names.dat:335 msgid "Little Gem nebula" @@ -418,7 +418,7 @@ #: nebulae/default/ngc2000names.dat:341 msgid "Satellite cluster" -msgstr "" +msgstr "Uydu kümesi" #: nebulae/default/ngc2000names.dat:342 msgid "Thor's Helmet" @@ -462,7 +462,7 @@ #: nebulae/default/ngc2000names.dat:352 msgid "Monkey Head nebula" -msgstr "" +msgstr "Maymun kafa bulutsusu" #: nebulae/default/ngc2000names.dat:353 msgid "Lemon slice nebula" @@ -470,7 +470,7 @@ #: nebulae/default/ngc2000names.dat:354 msgid "Red spider nebula" -msgstr "" +msgstr "Kırmızı örümcek bulutsusu" #: nebulae/default/ngc2000names.dat:355 msgid "Retina nebula" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Zincirli Prenses" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "Tejat" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Hadar" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "Üç Yıldız'ın Sancağı" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "BoÄŸa'nın Ön Bacağı" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "Küçük Yetim Çocuk" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "Kutsal Çaydanlık" @@ -4434,8 +4914,8 @@ msgstr "Diphda" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Van Maanen 2" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "Eldeberan" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "Cursa" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Kapteyn'in Yıldızı" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Ayak" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Kapella" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "Bellatrik" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Alnath" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Nihal" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Mintaka" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Arneb" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "Meissa" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Alnilam" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Phact" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Alnitak" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Saiph" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Wazn" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Ä°kizlerevi" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Menkalinan" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "Propus" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Red Rectangle" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Furud" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Mirzam" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "Canopus" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Alhena" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "Mebsuta" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Akyıldız" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Adhara" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Muliphein" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Mekbuda" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Wezen" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Bernes 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "Wasat" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Aludra" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "Gomeisa" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Luyten'in Yıldızı" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "Kastor" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Öncü" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "Polluks" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "Naos" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Regor" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Tegmine" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Avior" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "Muscida" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "Asellus Borealis" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "Asellus Australis" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "Acubens" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Talitha" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Suhail" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "Miaplacidus" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "Aspidiske" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Alphard" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Alterf" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Subra" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "Rasalas" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Regulus" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Adhafera" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Tania Borealis" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Algieba" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Tania Australis" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "Alkes" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Merak" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Dubhe" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "Zosma" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Chertan" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Alula Australis" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Alula Borealis" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "Giausar" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Denebola" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Zavijava" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Phad" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Alchiba" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Megrez" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Gienah" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "Zaniah" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "Acrux" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Algorab" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "Gacrux" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Chara" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Porrima" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Mimoza" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Alioth" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Cor Caroli" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "Vindemiatrix" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Mizar" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "BaÅŸakçı" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Alcor" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Alkaid" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Muphrid" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Thuban" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Menkent" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Arktürüs" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Syrma" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "Proxima" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Seginus" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Rigil Kent" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Izar" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Merga" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Zubenelgenubi" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Nekkar" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Zubeneschamali" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Pherkad" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "Alkalurops" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "Edasich" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "Nusakan" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Alphekka" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Unukalhai" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Dschubba" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Acrab" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "Marsic" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Yed Prior" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Yed Posterior" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Al Niyat" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "Cujam" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "Akrep YüreÄŸi" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "Kornephoros" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Marfik" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "Atria" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "Alrakis" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Sabik" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "Rasalgethi" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "Rastaban" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "Maasym" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "Lesath" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Yildun" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Shaula" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "Rasalhague" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Girtab" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Cebalrai" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Grumium" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Etamin" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Barnard'ın Yıldızı" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "Alnasl" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "Kaus Media" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "Kaus Australis" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "Kaus Borealis" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Vega" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Sheliak" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Nunki" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "Alya" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "Sulafat" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "Ascella" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "Altais" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Arkab" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Rukbat" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Albireo" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Campbell'in Yıldızı" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Sham" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Tarazed" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Uçucu" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Alshain" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Algedi" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Dabih" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Sadr" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "TavuskuÅŸu" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Rotanev" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Sualocin" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Denep" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Albali" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Kitalpha" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Alderamin" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Alfirk" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "Sadalsuud" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Nashira" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Azelfafage" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "The Garnet Star" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Enif" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Deneb Algedi" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Kurhah" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Sadalmelik" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Alnair" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Biham" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ancha" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "Sadachbia" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Kruger 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Situla" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Homan" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Matar" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Babcock'ın Yıldızı" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Sadalbari" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Skat" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Fomalhaut" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Kılıf" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Markab" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Errai" @@ -5341,3 +5845,6 @@ #~ msgid "Hubble's variable neb" #~ msgstr "Hubble'ın deÄŸiÅŸken bulutsusu" + +#~ msgid "Van Maanen 2" +#~ msgstr "Van Maanen 2" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/tt.po stellarium-0.12.4/po/stellarium-skycultures/tt.po --- stellarium-0.12.1/po/stellarium-skycultures/tt.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/tt.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:26+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tatar \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:57+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/uk.po stellarium-0.12.4/po/stellarium-skycultures/uk.po --- stellarium-0.12.1/po/stellarium-skycultures/uk.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/uk.po 2013-09-07 15:50:48.000000000 +0000 @@ -9,15 +9,15 @@ msgstr "" "Project-Id-Version: stellarium-skycultures-uk\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-03-17 15:43+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-08-16 19:03+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" "X-Poedit-Country: UKRAINE\n" "Language: uk\n" "X-Poedit-Language: Ukrainian\n" @@ -596,7 +596,7 @@ msgid "Southern Integral Sign" msgstr "Південний знак інтеграла" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "Ð¡ÐºÑƒÐ¿Ñ‡ÐµÐ½Ð½Ñ Â«ÐœÐ¾Ñ€Ñька зірка»" @@ -640,6 +640,50 @@ msgid "S Normae cluster" msgstr "Ð¡ÐºÑƒÐ¿Ñ‡ÐµÐ½Ð½Ñ S КоÑинцÑ" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "Спіральне ÑкупченнÑ" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "Галактика «Дошка Ð´Ð»Ñ Ñерфінгу»" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "Галактика «ПилоÑоÑ»" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "Галактика «Фен»" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "ТуманніÑÑ‚ÑŒ Коддінґтона" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "ТуманніÑÑ‚ÑŒ ε Оріона" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "Фатх 703" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "Трикутна галактика Флемінґа" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "Ð¡ÐºÑƒÐ¿Ñ‡ÐµÐ½Ð½Ñ Òраффа" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "Втрачена галактика" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "Горошина з білим вічком" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "Жінка У Кайданах" @@ -1025,7 +1069,7 @@ msgid "The announcer of the southern Shinning one" msgstr "ПередвіÑÐ½Ð¸Ñ†Ñ ÐŸÑ–Ð²Ð´ÐµÐ½Ð½Ð¾Ñ— ЯÑкравої" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "ТейÑÑ‚" @@ -1230,7 +1274,7 @@ msgstr "Один зі ÑпиÑоноÑців" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "Хадар" @@ -2118,6 +2162,186 @@ msgid "Banner of Three Stars" msgstr "Прапор трьох зірок" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "М’Ñкотіла Черепаха I" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "Летюча Риба I" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "Летюча Риба II" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "Летюча Риба III" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "Летюча Риба IV" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "Летюча Риба V" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "Летюча Риба VI" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "Західна зірка Гук’Ñн" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "Журавель V" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "ШіÑÑ‚ÑŒ Ð¦Ð·Ñ VI" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "ЦÑньхуньÑінаньÑін" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "Внутрішні Кроки I" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "Внутрішні Кроки II" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "Внутрішні Кроки III" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "Внутрішні Кроки IV" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "Внутрішні Кроки V" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "Внутрішні Кроки VI" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "Клюв I" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "Клюв II" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "Клюв III" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "Клюв IV" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "Клюв V" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "Клюв VI" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "Клюв VII" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "Трикутник I" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "Трикутник II" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "Другий МініÑÑ‚Ñ€" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "Велика Південна Зірка" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "ÐебеÑний Командувач X" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "ÐебеÑний Командувач XI" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "ÐебеÑна В’ÑÐ·Ð½Ð¸Ñ†Ñ I" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "ÐебеÑна В’ÑÐ·Ð½Ð¸Ñ†Ñ II" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "ÐебеÑна В’ÑÐ·Ð½Ð¸Ñ†Ñ III" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "ÐебеÑна В’ÑÐ·Ð½Ð¸Ñ†Ñ IV" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "ÐебеÑна В’ÑÐ·Ð½Ð¸Ñ†Ñ V" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "ÐебеÑна В’ÑÐ·Ð½Ð¸Ñ†Ñ VI" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "ХвіÑÑ‚ I" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "ХвіÑÑ‚ II" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "ХвіÑÑ‚ III" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "ХвіÑÑ‚ IV" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "ХвіÑÑ‚ V" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "ХвіÑÑ‚ VI" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "ХвіÑÑ‚ VII" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "ХвіÑÑ‚ VIII" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "ХвіÑÑ‚ IX" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "ÐŸÐµÑ€ÐµÐ´Ð½Ñ Ð½Ð¾Ð³Ð° бика" @@ -2298,6 +2522,262 @@ msgid "The Little Orphan Boy" msgstr "Маленький хлопчик-Ñирота" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "(Тулаа)" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "(Сітка)" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "(Каркат)" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "(Макар)" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "(Мітун)" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "(Сімха)" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "(Міін)" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "(ДхануÑ)" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "(БріÑчік)" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "(Бріша)" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "(Кумбха)" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "(КаньÑ)" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "Калпуруш" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "Бріхаат Сваан" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "Саптрші" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "[ÐÑвіні]" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "[Бхарані]" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "[Крітіка]" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "[Роїні]" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "[МрігаÑіра]" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "[Ðрдхра]" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "[ПунарваÑу]" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "[ПушьÑ]" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "[ÐÑлеша]" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "[Магха]" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "[Пурва Пхалгуні]" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "[Уттара Пхалгуні]" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "[ХаÑта]" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "[Чітра]" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "[Сваті]" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "[Ð’Ñ–Ñакха]" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "[Ðнурадха]" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "[Джьєшта]" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "[Мула]" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "[Пурва Ðшара]" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "[Уттара Ðшара]" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "[Шравана]" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "[ДханіÑта]" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "[Шатабхіша]" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "[Пурва Бхадрапада]" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "[Уттара Бхадрапада]" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "[Реваті]" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "{Ðбхіджіт}" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "Дхруб Тара" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "Рохіні" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "Ðрдхра" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "Магха" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "Чітра" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "Сваті" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "Шравана" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "Брахма ХрідаÑ" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "Лубдхак" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "Ваанраджа" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "Крату" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "Пулаха" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "ПулаÑта" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "Ðтрі" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "Ðнгіра" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "ВаÑішта" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "Марічі" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "Ðрундхаті" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "Ðбхіджіт" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "Джьєшта" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "Ðуггашта" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "СвÑщенний казан" @@ -4440,8 +4920,8 @@ msgstr "Діфда" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "Ван Маанен 2" +msgid "van Maanen 2" +msgstr "ван Маанен 2" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4588,739 +5068,763 @@ msgstr "Ðльдебаран" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "Пурпурова Зірка Гайнда" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "КурÑа" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "Зірка Каптейна" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "Рігель" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "Капелла" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "БеллатрікÑ" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "Ðльнат" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "Ðігаль" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "Мінтака" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "Ðрнеб" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "МеїÑа" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "Ðльнілам" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "Факт" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "Ðльнітак" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "Саїф" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "Вазн" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "Бетельгейзе" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "Менкалінан" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "ПропуÑ" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "Червоний прÑмокутник" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "Фуруд" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "Мірцам" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "КанопуÑ" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "Зірка ПлаÑкетта" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "Ðльгена" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "МебÑута" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "СиріуÑ" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "Ðдхара" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "Муліфейн" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "Мекбуда" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "Везен" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "Ð‘ÐµÑ€Ð½ÐµÑ 135" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "ВаÑат" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "Ðлудра" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "ГомейÑа" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "Зірка Люйтена" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "КаÑтор" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "Проціон" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "ПоллукÑ" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "ÐаоÑ" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "Регор" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "Тегмен" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "Ðвіор" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "МуÑкіда" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "ÐÑÐµÐ»Ð»ÑƒÑ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ñ–Ñ" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "ÐÑÐµÐ»Ð»ÑƒÑ ÐуÑтраліÑ" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "ÐкубенÑ" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "Таліта" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "Сухайль" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "МіаплацидуÑ" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "ÐÑпідіÑка" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "Ðльфард" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "Ðльтерф" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "Субра" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "РаÑалаÑ" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "Регул" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "Ðдгафера" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "Ð¢Ð°Ð½Ñ–Ñ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ñ–Ñ" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "Ðльгієба" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "Ð¢Ð°Ð½Ñ–Ñ ÐуÑтраліÑ" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "ÐлькеÑ" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "Мерак" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "Дубге" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "ЗоÑма" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "Шертан" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "Зірка Іннза" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "Ðлула ÐуÑтраліÑ" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "Ðлула БореаліÑ" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "ДжанÑар" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "Зірка ПржибильÑького" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "Денебола" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "Завіджава" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "Фад" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "Ðльчіба" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "Мегрец" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "Гієна" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "ЗаніÑ" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "ÐкрукÑ" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "Ðльгораб" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "ГакрукÑ" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "Хара" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "Порріма" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "Ла Суперба" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "Мімоза" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "Ðліот" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "Кор Каролі" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "ВіндеміатрікÑ" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "Міцар" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "Спіка" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "Ðлькор" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "Ðлькаїд" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "Мюфрід" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "Тубан" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "Менкент" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "Ðрктур" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "Сирма" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "ПрокÑіма" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "Сегін" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "Ðльфа Центавра" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "Ізар" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "Мерга" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "Кохаб" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "Зубен Ельгенубі" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "Ðеккар" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "Зубен Ельшемалі" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "Феркад" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "ÐлькалуропÑ" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "ЕдаÑÑ–Ñ…" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "ÐуÑакан" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "Ðльфекка" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "Унук-аль-Хей" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "Джубба" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "Ðкраб" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "МарÑік" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "Єд Пріор" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "Єд ПоÑтеріор" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "Ðль ÐійÑÑ‚Ñ‚" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "КуÑм" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "ÐнтареÑ" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "КорнефороÑ" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "Марфік" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "ÐтріÑ" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "ÐльракіÑ" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "Сабік" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "РаÑальгеті" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "РаÑтабан" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "МаÑім" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "ЛеÑат" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "Їлдун" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "Шаула" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "РаÑалгаага" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "Гіртаб" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "Кебальраї" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "Груміум" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "Етамін" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "Зірка Барнарда" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "ÐльнаÑл" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "ÐšÐ°ÑƒÑ ÐœÐµÐ´Ñ–Ð°" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "ÐšÐ°ÑƒÑ ÐуÑтраліÑ" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "ÐšÐ°ÑƒÑ Ð‘Ð¾Ñ€ÐµÐ°Ð»Ñ–Ñ" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Вега" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "Шеліак" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "Ðункі" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "ÐліÑ" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "СулÑфат" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "ÐÑкела" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "ÐльтаїÑ" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "Ðркаб" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "Рукбат" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "Ðльбірео" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "Зірка Кемпбелла" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "Шам" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "Таразед" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "Ðльтаїр" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "Ðльшаїн" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "Ðльгеді" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "Дабіх" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "Садр" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "Пікок" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "Ротанев" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "Суалокін" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Денеб" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "Ðльбалі" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "Зірка БеÑÑелÑ" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "Кітальфа" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "Ðльдерамін" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "Ðльфірк" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "СадалÑууд" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "Ðашира" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "Ðзельфафаге" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "Гранатова Зірка" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "Еніф" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "Денеб Ðльгеді" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "Курдах" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "Садалмелік" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "Ðльнаїр" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "Біхам" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "Ðнка" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "СадахбіÑ" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "Крюгер 60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "Сітула" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "Гоман" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "Матар" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "Зірка Баблока" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "Садалбарі" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "Скат" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "Фомальгаут" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "Шеат" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "Маркаб" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "Ерраї" @@ -5345,5 +5849,8 @@ #~ msgid "Hubble's variable neb" #~ msgstr "Змінна туманніÑÑ‚ÑŒ Хаббла" +#~ msgid "Van Maanen 2" +#~ msgstr "Ван Маанен 2" + #~ msgid "Kocab" #~ msgstr "Кохаб" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/uz.po stellarium-0.12.4/po/stellarium-skycultures/uz.po --- stellarium-0.12.1/po/stellarium-skycultures/uz.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/uz.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:27+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Uzbek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/vi.po stellarium-0.12.4/po/stellarium-skycultures/vi.po --- stellarium-0.12.1/po/stellarium-skycultures/vi.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/vi.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2013-02-06 15:48+0000\n" "Last-Translator: thanbang \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: skycultures/western/star_names.fab:20 msgid "Polaris" @@ -594,7 +594,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -638,6 +638,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1023,7 +1067,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1228,7 +1272,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2116,6 +2160,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2296,6 +2520,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4438,7 +4918,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "Thiên Lang (Sirius)" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "Chức Nữ (Vega)" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "NgÆ°u Lang (Altair)" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "Thiên Tân" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/zh.po stellarium-0.12.4/po/stellarium-skycultures/zh.po --- stellarium-0.12.1/po/stellarium-skycultures/zh.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/zh.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:31+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:51+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/zh_CN.po stellarium-0.12.4/po/stellarium-skycultures/zh_CN.po --- stellarium-0.12.1/po/stellarium-skycultures/zh_CN.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/zh_CN.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2013-02-11 10:10+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-07-27 06:21+0000\n" "Last-Translator: 罗佳伟 \n" "Language-Team: Chinese (China) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:59+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -55,7 +55,7 @@ #: nebulae/default/ngc2000names.dat:228 msgid "Bode's nebulae" -msgstr "波得星云" +msgstr "波德星系" #: nebulae/default/ngc2000names.dat:229 msgid "Cigar Galaxy" @@ -378,7 +378,7 @@ #: nebulae/default/ngc2000names.dat:331 msgid "Rim nebula" -msgstr "" +msgstr "环状星云" #: nebulae/default/ngc2000names.dat:332 msgid "Cat's Paw nebula" @@ -498,7 +498,7 @@ #: nebulae/default/ngc2000names.dat:361 msgid "Cleopatra's Eye" -msgstr "" +msgstr "克娄巴特拉之眼" #: nebulae/default/ngc2000names.dat:362 msgid "Cooling Tower" @@ -506,23 +506,23 @@ #: nebulae/default/ngc2000names.dat:363 msgid "Crowbar galaxy" -msgstr "" +msgstr "撬棒星系" #: nebulae/default/ngc2000names.dat:364 msgid "Sagittarius Star Cloud" -msgstr "" +msgstr "人马座æ’星云" #: nebulae/default/ngc2000names.dat:365 msgid "Dragon nebula" -msgstr "" +msgstr "飞龙星云" #: nebulae/default/ngc2000names.dat:366 msgid "Dragonfly cluster" -msgstr "" +msgstr "蜻蜓星云" #: nebulae/default/ngc2000names.dat:367 msgid "Elephant's Trunk nebula" -msgstr "" +msgstr "象鼻星云" #: nebulae/default/ngc2000names.dat:368 nebulae/default/ngc2000names.dat:369 #: nebulae/default/ngc2000names.dat:370 nebulae/default/ngc2000names.dat:371 @@ -531,15 +531,15 @@ #: nebulae/default/ngc2000names.dat:372 msgid "Heart nebula" -msgstr "" +msgstr "心è„星云" #: nebulae/default/ngc2000names.dat:373 msgid "Heart-Shaped cluster" -msgstr "" +msgstr "心状星团" #: nebulae/default/ngc2000names.dat:374 msgid "Herring galaxy" -msgstr "" +msgstr "鲱鱼星系" #: nebulae/default/ngc2000names.dat:375 msgid "Hole in a cluster" @@ -547,7 +547,7 @@ #: nebulae/default/ngc2000names.dat:376 msgid "Intergalactic Wanderer/Tramp" -msgstr "" +msgstr "星系漫游者" #: nebulae/default/ngc2000names.dat:377 nebulae/default/ngc2000names.dat:378 msgid "Keenan's System" @@ -555,12 +555,12 @@ #: nebulae/default/ngc2000names.dat:379 msgid "Kidney Bean galaxy" -msgstr "" +msgstr "芸豆星系" #: nebulae/default/ngc2000names.dat:380 nebulae/default/ngc2000names.dat:381 #: nebulae/default/ngc2000names.dat:382 msgid "Leo Triplet" -msgstr "" +msgstr "ç‹®å­ä¸‰é‡æ˜Ÿç³»" #: nebulae/default/ngc2000names.dat:383 msgid "McLeish's Object" @@ -572,39 +572,39 @@ #: nebulae/default/ngc2000names.dat:385 msgid "Mirach's Ghost" -msgstr "" +msgstr "å¹½çµæ˜Ÿç³»" #: nebulae/default/ngc2000names.dat:386 msgid "Sailboat cluster" -msgstr "" +msgstr "帆船星团" #: nebulae/default/ngc2000names.dat:387 msgid "Seyfert's Sextet" -msgstr "" +msgstr "赛弗特六é‡æ˜Ÿç³»" #: nebulae/default/ngc2000names.dat:388 msgid "Soul nebula" -msgstr "" +msgstr "çµé­‚星云" #: nebulae/default/ngc2000names.dat:389 msgid "Southern Integral Sign" -msgstr "" +msgstr "å—积分å·æ˜Ÿç³»" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" -msgstr "" +msgstr "海星星团" #: nebulae/default/ngc2000names.dat:391 msgid "Superwind-Galaxy" -msgstr "" +msgstr "超级风星系" #: nebulae/default/ngc2000names.dat:392 msgid "Turtle planetary nebula" -msgstr "" +msgstr "海龟行星状星云" #: nebulae/default/ngc2000names.dat:393 msgid "Small Magellanic Cloud" -msgstr "" +msgstr "å°éº¦å“²ä¼¦æ˜Ÿç³»" #: nebulae/default/ngc2000names.dat:394 msgid "Bow-Tie nebula" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "井宿一" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "马腹一" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "å‚æ——" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "鳖一" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "飞鱼一" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "飞鱼二" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "飞鱼三" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "飞鱼四" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "飞鱼五" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "飞鱼六" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "鹤五" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "六甲六" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "天溷西å—星" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "内阶一" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "内阶二" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "内阶三" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "内阶四" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "内阶五" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "内阶六" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "鸟喙一" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "鸟喙二" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "鸟喙三" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "鸟喙四" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "鸟喙五" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "鸟喙六" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "鸟喙七" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "三角形一" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "三角形二" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "å°‘è¾…" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "天大将军å—大星" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "天大将军å" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "天大将军å一" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "天牢一" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "天牢二" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "天牢三" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "天牢四" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "天牢五" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "天牢六" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "尾宿一" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "尾宿二" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "尾宿三" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "尾宿四" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "尾宿五" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "尾宿六" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "尾宿七" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "尾宿八" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "尾宿ä¹" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "公牛å‰è…¿åº§" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,8 +4914,8 @@ msgstr "土å¸ç©º" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "范马å—星" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "毕宿五" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "玉井三" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "å¡æ™®å¦æ˜Ÿ" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "å‚宿七" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "五车二" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "å‚宿五" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "五车五" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "厕二" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "å‚宿三" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "厕一" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "觜宿一" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "å‚宿二" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "丈人一" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "å‚宿一" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "å‚宿六" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "å­äºŒ" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "å‚宿四" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "五车三" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "é’º" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" -msgstr "" +msgstr "红矩形星云" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "孙增一" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "军市一" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "è€äºº" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "井宿三" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "井宿五" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "天狼" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "弧矢七" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "天狼增四" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "井宿七" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "弧矢一" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "天樽二" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "弧矢二" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "å—河二" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "北河二" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "å—河三" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "北河三" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "弧矢增二å二" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "天社一" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "æ°´ä½å››" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "海石一" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "内阶一" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "鬼宿三" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "鬼宿四" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "柳宿增三" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "上å°ä¸€(三å°ä¸€)" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "天纪" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "å—船二" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "海石二" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "星宿一" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "轩辕八" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "轩辕å五" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "轩辕å" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "轩辕åå››" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "轩辕å一" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "中å°ä¸€(三å°ä¸‰)" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "轩辕å二" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "中å°äºŒ(三å°å››)" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "翼宿一" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "天旋" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "天枢" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "西上相" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "西次相" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "下å°äºŒ(三å°å…­)" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "下å°ä¸€(三å°äº”)" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "上辅" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "五å¸åº§ä¸€" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "å³æ‰§æ³•" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "天玑" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "å³è¾–" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "天æƒ" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "轸宿一" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "左执法" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "å字架二" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "轸宿三" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "å字架一" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "常陈四" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "东上相" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "å字架三" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "玉衡" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "常陈一" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "东次将" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "开阳" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "角宿一" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "辅星(开阳增一)" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "摇光" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "å³æ‘„æ一" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "å³æž¢" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "库楼三" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "大角" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "亢宿二" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "比邻星" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "æ‹›æ–" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "å—门二" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "梗河一" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "玄戈增二" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "æ°å®¿ä¸€" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "七公增五" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "æ°å®¿å››" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "太å­(北æžä¸€)" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "七公六" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "左枢" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "贯索三" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "贯索四" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "蜀" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "房宿三" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "房宿四" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "晋" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "æ¢" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "楚" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "心宿一" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "斗一" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "心宿二" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "河中" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "列肆二" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "三角形三" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "天棓增ä¹" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "宋" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "å¸åº§" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "天棓三" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "èµµ" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "尾宿ä¹" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "勾陈二" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "尾宿八" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "侯" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "尾宿五" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "宗正一" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "天棓一" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "天培四" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "巴纳德星" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "箕宿一" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "箕宿二" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "è宿三" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "斗宿二" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "织女一" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "æ¸å°äºŒ" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "斗宿四" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "å¾" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "æ¸å°ä¸‰" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "斗宿六" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "天厨一" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "天渊二" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "天渊三" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "辇é“增七" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "左旗一" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "河鼓三" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "河鼓二" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "河鼓一" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "牛宿二" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "牛宿一" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "天津一" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "孔雀å一" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "瓠瓜四" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "瓠瓜一" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "天津四" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "女宿一" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "虚宿二" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "天钩五" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "上å«å¢žä¸€" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "虚宿一" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "åž’å£é˜µä¸‰" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "螣蛇四" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "造父四" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "å±å®¿ä¸‰(Enif)" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "åž’å£é˜µå››" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "天钩六" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "å±å®¿ä¸€" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "鹤一" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "å±å®¿äºŒ" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "泣二" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "åŸå¢“二" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "克虑格60" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "女宿四" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "雷电一" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "离宫四" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "巴布科克星" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "离宫二" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "羽林军二åå…­" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "北è½å¸ˆé—¨" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "室宿二" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "室宿一" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "å°‘å«å¢žå…«" @@ -5327,5 +5831,8 @@ #~ msgid "Bear Paw galaxy" #~ msgstr "熊掌星系" +#~ msgid "Van Maanen 2" +#~ msgstr "范马å—星" + #~ msgid "Kocab" #~ msgstr "å¸(北æžäºŒ)" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/zh_HK.po stellarium-0.12.4/po/stellarium-skycultures/zh_HK.po --- stellarium-0.12.1/po/stellarium-skycultures/zh_HK.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/zh_HK.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2011-12-27 14:44+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Chinese (Hong Kong) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "åƒæ——" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,739 +5062,763 @@ msgstr "畢宿五" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 +msgid "Kapteyn's Star" +msgstr "" + +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "åƒå®¿ä¸ƒ" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "五車二" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "åƒå®¿å››" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "å¸æ€ªäºŒ" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "井宿三" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "井宿五" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "天狼星" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "弧矢七" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "井宿七" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "天樽二" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "北河二" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "å—河三" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "北河三" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "è»’è½…åå››" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "天璇" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "天樞" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "五å¸åº§ä¸€" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "天璣" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "天權" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "å字架二" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "å字架一" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "玉衡" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "開陽" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "角宿一" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "æ–å…‰" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "大角星" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "斗宿二" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "織女星" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "斗宿四" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "斗宿六" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "牛郎星" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "天津四" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "北è½å¸«é–€" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "室宿二" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "室宿一" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/zh_TW.po stellarium-0.12.4/po/stellarium-skycultures/zh_TW.po --- stellarium-0.12.1/po/stellarium-skycultures/zh_TW.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/zh_TW.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" -"PO-Revision-Date: 2012-12-30 11:40+0000\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" +"PO-Revision-Date: 2013-05-06 06:05+0000\n" "Last-Translator: Alexander Wolf \n" "Language-Team: Chinese (Taiwan) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:59+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "井宿一" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "馬腹一" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "åƒæ——" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "鱉一" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "飛魚一" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "飛魚二" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "飛魚三" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "飛魚四" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "飛魚五" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "飛魚六" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "鉤éˆè¥¿æ˜Ÿ" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "鶴五" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "六甲六" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "天溷西å—星" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "內階一" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "內階二" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "內階三" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "內階四" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "內階五" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "內階六" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "鳥喙一" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "鳥喙二" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "鳥喙三" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "鳥喙四" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "鳥喙五" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "鳥喙六" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "鳥喙七" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "三角形一" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "三角形二" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "å°‘è¾…" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "天大将军å—大星" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "天大將è»å" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "天大將è»å一" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "天牢一" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "天牢二" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "天牢三" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "天牢四" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "天牢五" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "天牢六" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "尾宿一" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "尾宿二" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "尾宿三" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "尾宿四" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "尾宿五" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "尾宿六" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "尾宿七" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "尾宿八" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "尾宿ä¹" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "Bull's Foreleg" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,8 +4914,8 @@ msgstr "土å¸ç©º" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" -msgstr "范馬å—星" +msgid "van Maanen 2" +msgstr "" #: skycultures/western/star_names.fab:8 msgid "Mirach" @@ -4582,739 +5062,763 @@ msgstr "畢宿五" #: skycultures/western/star_names.fab:44 +msgid "Hind's Crimson Star" +msgstr "" + +#: skycultures/western/star_names.fab:45 msgid "Cursa" msgstr "玉井三" -#: skycultures/western/star_names.fab:45 +#: skycultures/western/star_names.fab:46 msgid "Kapteyn's Star" msgstr "å¡æ™®å¦æ˜Ÿ" -#: skycultures/western/star_names.fab:46 +#: skycultures/western/star_names.fab:47 msgid "Rigel" msgstr "åƒå®¿ä¸ƒ" -#: skycultures/western/star_names.fab:47 +#: skycultures/western/star_names.fab:48 msgid "Capella" msgstr "五車二" -#: skycultures/western/star_names.fab:48 +#: skycultures/western/star_names.fab:49 msgid "Bellatrix" msgstr "åƒå®¿äº”" -#: skycultures/western/star_names.fab:49 +#: skycultures/western/star_names.fab:50 msgid "Alnath" msgstr "å©å®¿ä¸‰" -#: skycultures/western/star_names.fab:50 +#: skycultures/western/star_names.fab:51 msgid "Nihal" msgstr "å»äºŒ" -#: skycultures/western/star_names.fab:51 +#: skycultures/western/star_names.fab:52 msgid "Mintaka" msgstr "åƒå®¿ä¸‰" -#: skycultures/western/star_names.fab:52 +#: skycultures/western/star_names.fab:53 msgid "Arneb" msgstr "å»ä¸€" -#: skycultures/western/star_names.fab:53 +#: skycultures/western/star_names.fab:54 msgid "Meissa" msgstr "觜宿一" -#: skycultures/western/star_names.fab:54 +#: skycultures/western/star_names.fab:55 msgid "Alnilam" msgstr "åƒå®¿äºŒ" -#: skycultures/western/star_names.fab:55 +#: skycultures/western/star_names.fab:56 msgid "Phact" msgstr "丈人一" -#: skycultures/western/star_names.fab:56 +#: skycultures/western/star_names.fab:57 msgid "Alnitak" msgstr "åƒå®¿ä¸€" -#: skycultures/western/star_names.fab:57 +#: skycultures/western/star_names.fab:58 msgid "Saiph" msgstr "åƒå®¿å…­" -#: skycultures/western/star_names.fab:58 +#: skycultures/western/star_names.fab:59 msgid "Wazn" msgstr "å­äºŒ" -#: skycultures/western/star_names.fab:59 +#: skycultures/western/star_names.fab:60 msgid "Betelgeuse" msgstr "åƒå®¿å››" -#: skycultures/western/star_names.fab:60 +#: skycultures/western/star_names.fab:61 msgid "Menkalinan" msgstr "五車三" -#: skycultures/western/star_names.fab:61 +#: skycultures/western/star_names.fab:62 msgid "Propus" msgstr "é’º" -#: skycultures/western/star_names.fab:62 +#: skycultures/western/star_names.fab:63 msgid "Red Rectangle" msgstr "紅矩形星雲" -#: skycultures/western/star_names.fab:63 +#: skycultures/western/star_names.fab:64 msgid "Furud" msgstr "孫增一" -#: skycultures/western/star_names.fab:64 +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "è»å¸‚一" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "è€äºº" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "井宿三" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "井宿五" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "天狼" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "弧矢七" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "天狼增四" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "井宿七" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "弧矢一" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "天樽二" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "弧矢二" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "å—河二" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "é­¯å¦æ˜Ÿ" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "北河二" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "å—河三" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "北河三" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "弧矢增二å二" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "天社一" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "æ°´ä½å››" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "海石一" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "內階一" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "鬼宿三" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "鬼宿四" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "柳宿增三" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "上å°ä¸€" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "è€äºº" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "å—船五" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "海石二" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "星宿一" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "è»’è½…å" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "è»’è½…åå››" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "è»’è½…å一" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "中å°ä¸€[三å°ä¸‰]" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "è»’è½…å二" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "中å°äºŒ[三å°å››]" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "翼宿一" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "天璇[北鬥二]" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "天樞[北鬥一]" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "西上相" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "西次相[太微å³åž£å››]" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "下å°äºŒ" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "下å°ä¸€[三å°äº”]" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "上輔" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "五å¸åº§ä¸€" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "å³åŸ·æ³•" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "天璣" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "å³è½„" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "天權[北鬥四]" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "軫宿一" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "左執法" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "å字架二" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "軫宿三" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "å字架一" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "常陳四" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "æ±ä¸Šç›¸" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "å字架三" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "玉衡[北鬥五]" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "常陳一" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "æ±æ¬¡ç›¸[太微左垣四]" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "奎宿ä¹" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "角宿一" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "è¼”" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "æ–å…‰[北斗七]" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "å³æ”æ一" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "å³æ¨ž[ç´«å¾®å³åž£ä¸€]" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "庫樓三" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "大角" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "亢宿二" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "比鄰星" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "æ‹›æ–" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "å—門二" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "梗河一" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "玄戈增二" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "七公增五" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "æ°å®¿å››" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "北極一" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "七公六" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "左樞[紫微左垣一]" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "貫索三" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "貫索四" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "蜀[天市å³åž£ä¸ƒ]" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "房宿三" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "房宿四" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "天市å³åž£ä¸‰" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "æ¢[天市å³åž£ä¹]" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "楚[天市å³åž£å]" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "心宿一" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "斗一" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "心宿二" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "河中[天市å³åž£ä¸€]" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "列肆二" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "三角形三" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "天棓增ä¹" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "宋" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "å¸åº§" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "天棓三" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "天市左垣二" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "éµé–‰" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "勾陳二" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "尾宿八" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "候" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "尾宿七" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "宗正一" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "天棓一" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "天棓四" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "å·´ç´å¾·æ˜Ÿ" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "箕宿一" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "箕宿二" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "箕宿三" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "斗宿二" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "織女一" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "漸å°äºŒ" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "斗宿四" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "å¾[天市左垣七]" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "漸å°ä¸‰" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "斗宿六" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "天廚一" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "天淵一" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "天淵三" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "輦é“增七" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "左旗一" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "河鼓三" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "河鼓二" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "河鼓一" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "牛宿二" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "牛宿一" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "天津一" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "孔雀å一" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "瓠瓜四" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "瓠瓜一" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "天津四" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "女宿一" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "虛宿二" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "天鉤五" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "上衛增一" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "虛宿一" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "壘å£é™£ä¸‰" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "螣蛇四" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "å±å®¿ä¸‰" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "壘å£é™£å››" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "天鉤六" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "å±å®¿ä¸€" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "鶴一" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "å±å®¿äºŒ" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "泣二" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "墳墓二" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "è™›æ¢ä¸‰" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "雷電一" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "離宮四" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "離宮二" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "羽林è»äºŒåå…­" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "北è½å¸«é–€" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "室宿二" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "室宿一" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" @@ -5326,3 +5830,6 @@ #~ msgid "Bear Paw galaxy" #~ msgstr "熊掌星系" + +#~ msgid "Van Maanen 2" +#~ msgstr "范馬å—星" diff -Nru stellarium-0.12.1/po/stellarium-skycultures/zu.po stellarium-0.12.4/po/stellarium-skycultures/zu.po --- stellarium-0.12.1/po/stellarium-skycultures/zu.po 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/po/stellarium-skycultures/zu.po 2013-09-07 15:50:48.000000000 +0000 @@ -7,15 +7,15 @@ msgstr "" "Project-Id-Version: stellarium\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-03-17 19:35+0700\n" +"POT-Creation-Date: 2013-08-16 23:49+0700\n" "PO-Revision-Date: 2012-05-08 17:27+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Zulu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 04:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-08-17 04:58+0000\n" +"X-Generator: Launchpad (build 16723)\n" #: nebulae/default/ngc2000names.dat:218 msgid "47 Tuc" @@ -590,7 +590,7 @@ msgid "Southern Integral Sign" msgstr "" -#: nebulae/default/ngc2000names.dat:390 +#: nebulae/default/ngc2000names.dat:390 nebulae/default/ngc2000names.dat:402 msgid "Starfish cluster" msgstr "" @@ -634,6 +634,50 @@ msgid "S Normae cluster" msgstr "" +#: nebulae/default/ngc2000names.dat:401 +msgid "Spiral cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:403 +msgid "Surfboard galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:404 +msgid "Vacuum Cleaner galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:405 +msgid "Blowdryer galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:406 +msgid "Coddington's nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:407 +msgid "ε Ori nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:408 +msgid "Fath 703" +msgstr "" + +#: nebulae/default/ngc2000names.dat:409 +msgid "Fleming's Triangular nebula" +msgstr "" + +#: nebulae/default/ngc2000names.dat:410 +msgid "Graff's cluster" +msgstr "" + +#: nebulae/default/ngc2000names.dat:411 +msgid "Lost galaxy" +msgstr "" + +#: nebulae/default/ngc2000names.dat:412 +msgid "White Eyed Pea" +msgstr "" + #: skycultures/arabic/constellation_names.eng.fab:1 msgid "The Shackled Woman" msgstr "" @@ -1019,7 +1063,7 @@ msgid "The announcer of the southern Shinning one" msgstr "" -#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:65 +#: skycultures/arabic/star_names.fab:49 skycultures/western/star_names.fab:66 msgid "Tejat" msgstr "" @@ -1224,7 +1268,7 @@ msgstr "" #: skycultures/arabic/star_names.fab:101 -#: skycultures/western/star_names.fab:132 +#: skycultures/western/star_names.fab:137 msgid "Hadar" msgstr "" @@ -2112,6 +2156,186 @@ msgid "Banner of Three Stars" msgstr "" +#: skycultures/chinese/star_names.fab:1 +msgid "Softshell Turtle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:2 +msgid "Flying Fish I" +msgstr "" + +#: skycultures/chinese/star_names.fab:3 +msgid "Flying Fish II" +msgstr "" + +#: skycultures/chinese/star_names.fab:4 +msgid "Flying Fish III" +msgstr "" + +#: skycultures/chinese/star_names.fab:5 +msgid "Flying Fish IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:6 +msgid "Flying Fish V" +msgstr "" + +#: skycultures/chinese/star_names.fab:7 +msgid "Flying Fish VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:8 +msgid "West Gouqian Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:9 +msgid "Crane V" +msgstr "" + +#: skycultures/chinese/star_names.fab:10 +msgid "Six Jias VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:11 +msgid "Tianhunxinanxing" +msgstr "" + +#: skycultures/chinese/star_names.fab:12 +msgid "Inner Steps I" +msgstr "" + +#: skycultures/chinese/star_names.fab:13 +msgid "Inner Steps II" +msgstr "" + +#: skycultures/chinese/star_names.fab:14 +msgid "Inner Steps III" +msgstr "" + +#: skycultures/chinese/star_names.fab:15 +msgid "Inner Steps IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:16 +msgid "Inner Steps V" +msgstr "" + +#: skycultures/chinese/star_names.fab:17 +msgid "Inner Steps VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:18 +msgid "Beak I" +msgstr "" + +#: skycultures/chinese/star_names.fab:19 +msgid "Beak II" +msgstr "" + +#: skycultures/chinese/star_names.fab:20 +msgid "Beak III" +msgstr "" + +#: skycultures/chinese/star_names.fab:21 +msgid "Beak IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:22 +msgid "Beak V" +msgstr "" + +#: skycultures/chinese/star_names.fab:23 +msgid "Beak VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:24 +msgid "Beak VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:25 +msgid "Triangle I" +msgstr "" + +#: skycultures/chinese/star_names.fab:26 +msgid "Triangle II" +msgstr "" + +#: skycultures/chinese/star_names.fab:27 +msgid "Shaofu" +msgstr "" + +#: skycultures/chinese/star_names.fab:28 +msgid "Great Southern Star" +msgstr "" + +#: skycultures/chinese/star_names.fab:29 +msgid "Celestial General X" +msgstr "" + +#: skycultures/chinese/star_names.fab:30 +msgid "Celestial General XI" +msgstr "" + +#: skycultures/chinese/star_names.fab:31 +msgid "Celestial Prison I" +msgstr "" + +#: skycultures/chinese/star_names.fab:32 +msgid "Celestial Prison II" +msgstr "" + +#: skycultures/chinese/star_names.fab:33 +msgid "Celestial Prison III" +msgstr "" + +#: skycultures/chinese/star_names.fab:34 +msgid "Celestial Prison IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:35 +msgid "Celestial Prison V" +msgstr "" + +#: skycultures/chinese/star_names.fab:36 +msgid "Celestial Prison VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:37 +msgid "Tail I" +msgstr "" + +#: skycultures/chinese/star_names.fab:38 +msgid "Tail II" +msgstr "" + +#: skycultures/chinese/star_names.fab:39 skycultures/chinese/star_names.fab:40 +msgid "Tail III" +msgstr "" + +#: skycultures/chinese/star_names.fab:41 +msgid "Tail IV" +msgstr "" + +#: skycultures/chinese/star_names.fab:42 +msgid "Tail V" +msgstr "" + +#: skycultures/chinese/star_names.fab:43 +msgid "Tail VI" +msgstr "" + +#: skycultures/chinese/star_names.fab:44 +msgid "Tail VII" +msgstr "" + +#: skycultures/chinese/star_names.fab:45 +msgid "Tail VIII" +msgstr "" + +#: skycultures/chinese/star_names.fab:46 +msgid "Tail IX" +msgstr "" + #: skycultures/egyptian/constellation_names.eng.fab:1 msgid "Bull's Foreleg" msgstr "" @@ -2292,6 +2516,262 @@ msgid "The Little Orphan Boy" msgstr "" +#: skycultures/indian/constellation_names.eng.fab:1 +msgid "(Tulaa)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:2 +msgid "(Mesh)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:3 +msgid "(Karkat)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:4 +msgid "(Makar)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:5 +msgid "(Mithun)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:6 +msgid "(Simha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:7 +msgid "(Meen)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:8 +msgid "(Dhanus)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:9 +msgid "(Brischik)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:10 +msgid "(Brisha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:11 +msgid "(Kumbha)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:12 +msgid "(Kanya)" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:13 +msgid "Kalpurush" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:14 +msgid "Brihaat Swaan" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:15 +msgid "Saptrshi" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:16 +msgid "[Aswini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:17 +msgid "[Bharani]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:18 +msgid "[Krithika]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:19 +msgid "[Rohini]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:20 +msgid "[Mrigasira]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:21 +msgid "[Ardhra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:22 +msgid "[Punarvasu]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:23 +msgid "[Pushya]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:24 +msgid "[Aslesha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:25 +msgid "[Magha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:26 +msgid "[Purva Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:27 +msgid "[Uttara Phalguni]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:28 +msgid "[Hasta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:29 +msgid "[Chitra]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:30 +msgid "[Swati]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:31 +msgid "[Visakha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:32 +msgid "[Anuradha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:33 +msgid "[Jyeshta]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:34 +msgid "[Moola]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:35 +msgid "[Purva AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:36 +msgid "[Uttara AshaRa]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:37 +msgid "[Shravana]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:38 +msgid "[Dhanista]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:39 +msgid "[Shatabhisha]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:40 +msgid "[Purva Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:41 +msgid "[Uttara Bhadrapada]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:42 +msgid "[Revathi]" +msgstr "" + +#: skycultures/indian/constellation_names.eng.fab:43 +msgid "{Abhijit}" +msgstr "" + +#: skycultures/indian/star_names.fab:1 +msgid "Dhrub Tara" +msgstr "" + +#: skycultures/indian/star_names.fab:2 +msgid "Rohini" +msgstr "" + +#: skycultures/indian/star_names.fab:3 +msgid "Ardhra" +msgstr "" + +#: skycultures/indian/star_names.fab:4 +msgid "Magha" +msgstr "" + +#: skycultures/indian/star_names.fab:5 +msgid "Chitra" +msgstr "" + +#: skycultures/indian/star_names.fab:6 +msgid "Swati" +msgstr "" + +#: skycultures/indian/star_names.fab:7 +msgid "Shravana" +msgstr "" + +#: skycultures/indian/star_names.fab:8 +msgid "Bramha Hridya" +msgstr "" + +#: skycultures/indian/star_names.fab:9 +msgid "Lubdhak" +msgstr "" + +#: skycultures/indian/star_names.fab:10 +msgid "Vaanraja" +msgstr "" + +#: skycultures/indian/star_names.fab:11 +msgid "Kratu" +msgstr "" + +#: skycultures/indian/star_names.fab:12 +msgid "Pulaha" +msgstr "" + +#: skycultures/indian/star_names.fab:13 +msgid "Pulasta" +msgstr "" + +#: skycultures/indian/star_names.fab:14 +msgid "Atri" +msgstr "" + +#: skycultures/indian/star_names.fab:15 +msgid "Angirah" +msgstr "" + +#: skycultures/indian/star_names.fab:16 +msgid "Bashistha" +msgstr "" + +#: skycultures/indian/star_names.fab:17 +msgid "Marichi" +msgstr "" + +#: skycultures/indian/star_names.fab:18 +msgid "Arundhati" +msgstr "" + +#: skycultures/indian/star_names.fab:19 +msgid "Abhijit" +msgstr "" + +#: skycultures/indian/star_names.fab:20 +msgid "Jyeshta" +msgstr "" + +#: skycultures/indian/star_names.fab:21 +msgid "Auggashta" +msgstr "" + #: skycultures/korean/constellation_names.eng.fab:1 msgid "Holy Kettle" msgstr "" @@ -4434,7 +4914,7 @@ msgstr "" #: skycultures/western/star_names.fab:7 -msgid "Van Maanen 2" +msgid "van Maanen 2" msgstr "" #: skycultures/western/star_names.fab:8 @@ -4582,738 +5062,762 @@ msgstr "" #: skycultures/western/star_names.fab:44 -msgid "Cursa" +msgid "Hind's Crimson Star" msgstr "" #: skycultures/western/star_names.fab:45 -msgid "Kapteyn's Star" +msgid "Cursa" msgstr "" #: skycultures/western/star_names.fab:46 -msgid "Rigel" +msgid "Kapteyn's Star" msgstr "" #: skycultures/western/star_names.fab:47 -msgid "Capella" +msgid "Rigel" msgstr "" #: skycultures/western/star_names.fab:48 -msgid "Bellatrix" +msgid "Capella" msgstr "" #: skycultures/western/star_names.fab:49 -msgid "Alnath" +msgid "Bellatrix" msgstr "" #: skycultures/western/star_names.fab:50 -msgid "Nihal" +msgid "Alnath" msgstr "" #: skycultures/western/star_names.fab:51 -msgid "Mintaka" +msgid "Nihal" msgstr "" #: skycultures/western/star_names.fab:52 -msgid "Arneb" +msgid "Mintaka" msgstr "" #: skycultures/western/star_names.fab:53 -msgid "Meissa" +msgid "Arneb" msgstr "" #: skycultures/western/star_names.fab:54 -msgid "Alnilam" +msgid "Meissa" msgstr "" #: skycultures/western/star_names.fab:55 -msgid "Phact" +msgid "Alnilam" msgstr "" #: skycultures/western/star_names.fab:56 -msgid "Alnitak" +msgid "Phact" msgstr "" #: skycultures/western/star_names.fab:57 -msgid "Saiph" +msgid "Alnitak" msgstr "" #: skycultures/western/star_names.fab:58 -msgid "Wazn" +msgid "Saiph" msgstr "" #: skycultures/western/star_names.fab:59 -msgid "Betelgeuse" +msgid "Wazn" msgstr "" #: skycultures/western/star_names.fab:60 -msgid "Menkalinan" +msgid "Betelgeuse" msgstr "" #: skycultures/western/star_names.fab:61 -msgid "Propus" +msgid "Menkalinan" msgstr "" #: skycultures/western/star_names.fab:62 -msgid "Red Rectangle" +msgid "Propus" msgstr "" #: skycultures/western/star_names.fab:63 -msgid "Furud" +msgid "Red Rectangle" msgstr "" #: skycultures/western/star_names.fab:64 +msgid "Furud" +msgstr "" + +#: skycultures/western/star_names.fab:65 msgid "Mirzam" msgstr "" -#: skycultures/western/star_names.fab:66 +#: skycultures/western/star_names.fab:67 msgid "Canopus" msgstr "" -#: skycultures/western/star_names.fab:67 +#: skycultures/western/star_names.fab:68 +msgid "Plaskett's star" +msgstr "" + +#: skycultures/western/star_names.fab:69 msgid "Alhena" msgstr "" -#: skycultures/western/star_names.fab:68 +#: skycultures/western/star_names.fab:70 msgid "Mebsuta" msgstr "" -#: skycultures/western/star_names.fab:69 +#: skycultures/western/star_names.fab:71 msgid "Sirius" msgstr "" -#: skycultures/western/star_names.fab:70 +#: skycultures/western/star_names.fab:72 msgid "Adhara" msgstr "" -#: skycultures/western/star_names.fab:71 +#: skycultures/western/star_names.fab:73 msgid "Muliphein" msgstr "" -#: skycultures/western/star_names.fab:72 +#: skycultures/western/star_names.fab:74 msgid "Mekbuda" msgstr "" -#: skycultures/western/star_names.fab:73 +#: skycultures/western/star_names.fab:75 msgid "Wezen" msgstr "" -#: skycultures/western/star_names.fab:74 +#: skycultures/western/star_names.fab:76 msgid "Bernes 135" msgstr "" -#: skycultures/western/star_names.fab:75 +#: skycultures/western/star_names.fab:77 msgid "Wasat" msgstr "" -#: skycultures/western/star_names.fab:76 +#: skycultures/western/star_names.fab:78 msgid "Aludra" msgstr "" -#: skycultures/western/star_names.fab:77 +#: skycultures/western/star_names.fab:79 msgid "Gomeisa" msgstr "" -#: skycultures/western/star_names.fab:78 +#: skycultures/western/star_names.fab:80 msgid "Luyten's Star" msgstr "" -#: skycultures/western/star_names.fab:79 +#: skycultures/western/star_names.fab:81 msgid "Castor" msgstr "" -#: skycultures/western/star_names.fab:80 +#: skycultures/western/star_names.fab:82 msgid "Procyon" msgstr "" -#: skycultures/western/star_names.fab:81 +#: skycultures/western/star_names.fab:83 msgid "Pollux" msgstr "" -#: skycultures/western/star_names.fab:82 +#: skycultures/western/star_names.fab:84 msgid "Naos" msgstr "" -#: skycultures/western/star_names.fab:83 +#: skycultures/western/star_names.fab:85 msgid "Regor" msgstr "" -#: skycultures/western/star_names.fab:84 +#: skycultures/western/star_names.fab:86 msgid "Tegmine" msgstr "" -#: skycultures/western/star_names.fab:85 +#: skycultures/western/star_names.fab:87 msgid "Avior" msgstr "" -#: skycultures/western/star_names.fab:86 +#: skycultures/western/star_names.fab:88 msgid "Muscida" msgstr "" -#: skycultures/western/star_names.fab:87 +#: skycultures/western/star_names.fab:89 msgid "Asellus Borealis" msgstr "" -#: skycultures/western/star_names.fab:88 +#: skycultures/western/star_names.fab:90 msgid "Asellus Australis" msgstr "" -#: skycultures/western/star_names.fab:89 +#: skycultures/western/star_names.fab:91 msgid "Acubens" msgstr "" -#: skycultures/western/star_names.fab:90 +#: skycultures/western/star_names.fab:92 msgid "Talitha" msgstr "" -#: skycultures/western/star_names.fab:91 +#: skycultures/western/star_names.fab:93 msgid "Suhail" msgstr "" -#: skycultures/western/star_names.fab:92 +#: skycultures/western/star_names.fab:94 msgid "Miaplacidus" msgstr "" -#: skycultures/western/star_names.fab:93 +#: skycultures/western/star_names.fab:95 msgid "Aspidiske" msgstr "" -#: skycultures/western/star_names.fab:94 +#: skycultures/western/star_names.fab:96 msgid "Alphard" msgstr "" -#: skycultures/western/star_names.fab:95 +#: skycultures/western/star_names.fab:97 msgid "Alterf" msgstr "" -#: skycultures/western/star_names.fab:96 +#: skycultures/western/star_names.fab:98 msgid "Subra" msgstr "" -#: skycultures/western/star_names.fab:97 +#: skycultures/western/star_names.fab:99 msgid "Rasalas" msgstr "" -#: skycultures/western/star_names.fab:98 +#: skycultures/western/star_names.fab:100 msgid "Regulus" msgstr "" -#: skycultures/western/star_names.fab:99 +#: skycultures/western/star_names.fab:101 msgid "Adhafera" msgstr "" -#: skycultures/western/star_names.fab:100 +#: skycultures/western/star_names.fab:102 msgid "Tania Borealis" msgstr "" -#: skycultures/western/star_names.fab:101 +#: skycultures/western/star_names.fab:103 msgid "Algieba" msgstr "" -#: skycultures/western/star_names.fab:102 +#: skycultures/western/star_names.fab:104 msgid "Tania Australis" msgstr "" -#: skycultures/western/star_names.fab:103 +#: skycultures/western/star_names.fab:105 msgid "Alkes" msgstr "" -#: skycultures/western/star_names.fab:104 +#: skycultures/western/star_names.fab:106 msgid "Merak" msgstr "" -#: skycultures/western/star_names.fab:105 +#: skycultures/western/star_names.fab:107 msgid "Dubhe" msgstr "" -#: skycultures/western/star_names.fab:106 +#: skycultures/western/star_names.fab:108 msgid "Zosma" msgstr "" -#: skycultures/western/star_names.fab:107 +#: skycultures/western/star_names.fab:109 msgid "Chertan" msgstr "" -#: skycultures/western/star_names.fab:108 +#: skycultures/western/star_names.fab:110 +msgid "Innes' Star" +msgstr "" + +#: skycultures/western/star_names.fab:111 msgid "Alula Australis" msgstr "" -#: skycultures/western/star_names.fab:109 +#: skycultures/western/star_names.fab:112 msgid "Alula Borealis" msgstr "" -#: skycultures/western/star_names.fab:110 +#: skycultures/western/star_names.fab:113 msgid "Giausar" msgstr "" -#: skycultures/western/star_names.fab:111 +#: skycultures/western/star_names.fab:114 +msgid "Przybylski's Star" +msgstr "" + +#: skycultures/western/star_names.fab:115 msgid "Denebola" msgstr "" -#: skycultures/western/star_names.fab:112 +#: skycultures/western/star_names.fab:116 msgid "Zavijava" msgstr "" -#: skycultures/western/star_names.fab:113 +#: skycultures/western/star_names.fab:117 msgid "Phad" msgstr "" -#: skycultures/western/star_names.fab:114 +#: skycultures/western/star_names.fab:118 msgid "Alchiba" msgstr "" -#: skycultures/western/star_names.fab:115 +#: skycultures/western/star_names.fab:119 msgid "Megrez" msgstr "" -#: skycultures/western/star_names.fab:116 -#: skycultures/western/star_names.fab:203 +#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:208 msgid "Gienah" msgstr "" -#: skycultures/western/star_names.fab:117 +#: skycultures/western/star_names.fab:121 msgid "Zaniah" msgstr "" -#: skycultures/western/star_names.fab:118 +#: skycultures/western/star_names.fab:122 msgid "Acrux" msgstr "" -#: skycultures/western/star_names.fab:119 +#: skycultures/western/star_names.fab:123 msgid "Algorab" msgstr "" -#: skycultures/western/star_names.fab:120 +#: skycultures/western/star_names.fab:124 msgid "Gacrux" msgstr "" -#: skycultures/western/star_names.fab:121 +#: skycultures/western/star_names.fab:125 msgid "Chara" msgstr "" -#: skycultures/western/star_names.fab:122 +#: skycultures/western/star_names.fab:126 msgid "Porrima" msgstr "" -#: skycultures/western/star_names.fab:123 +#: skycultures/western/star_names.fab:127 +msgid "La Superba" +msgstr "" + +#: skycultures/western/star_names.fab:128 msgid "Mimosa" msgstr "" -#: skycultures/western/star_names.fab:124 +#: skycultures/western/star_names.fab:129 msgid "Alioth" msgstr "" -#: skycultures/western/star_names.fab:125 +#: skycultures/western/star_names.fab:130 msgid "Cor Caroli" msgstr "" -#: skycultures/western/star_names.fab:126 +#: skycultures/western/star_names.fab:131 msgid "Vindemiatrix" msgstr "" -#: skycultures/western/star_names.fab:127 +#: skycultures/western/star_names.fab:132 msgid "Mizar" msgstr "" -#: skycultures/western/star_names.fab:128 +#: skycultures/western/star_names.fab:133 msgid "Spica" msgstr "" -#: skycultures/western/star_names.fab:129 +#: skycultures/western/star_names.fab:134 msgid "Alcor" msgstr "" -#: skycultures/western/star_names.fab:130 +#: skycultures/western/star_names.fab:135 msgid "Alkaid" msgstr "" -#: skycultures/western/star_names.fab:131 +#: skycultures/western/star_names.fab:136 msgid "Muphrid" msgstr "" -#: skycultures/western/star_names.fab:133 +#: skycultures/western/star_names.fab:138 msgid "Thuban" msgstr "" -#: skycultures/western/star_names.fab:134 +#: skycultures/western/star_names.fab:139 msgid "Menkent" msgstr "" -#: skycultures/western/star_names.fab:135 +#: skycultures/western/star_names.fab:140 msgid "Arcturus" msgstr "" -#: skycultures/western/star_names.fab:136 +#: skycultures/western/star_names.fab:141 msgid "Syrma" msgstr "" -#: skycultures/western/star_names.fab:137 +#: skycultures/western/star_names.fab:142 msgid "Proxima" msgstr "" -#: skycultures/western/star_names.fab:138 +#: skycultures/western/star_names.fab:143 msgid "Seginus" msgstr "" -#: skycultures/western/star_names.fab:139 +#: skycultures/western/star_names.fab:144 msgid "Rigil Kent" msgstr "" -#: skycultures/western/star_names.fab:140 +#: skycultures/western/star_names.fab:145 msgid "Izar" msgstr "" -#: skycultures/western/star_names.fab:141 +#: skycultures/western/star_names.fab:146 msgid "Merga" msgstr "" -#: skycultures/western/star_names.fab:142 +#: skycultures/western/star_names.fab:147 msgid "Kochab" msgstr "" -#: skycultures/western/star_names.fab:143 +#: skycultures/western/star_names.fab:148 msgid "Zubenelgenubi" msgstr "" -#: skycultures/western/star_names.fab:144 +#: skycultures/western/star_names.fab:149 msgid "Nekkar" msgstr "" -#: skycultures/western/star_names.fab:145 +#: skycultures/western/star_names.fab:150 msgid "Zubeneschamali" msgstr "" -#: skycultures/western/star_names.fab:146 +#: skycultures/western/star_names.fab:151 msgid "Pherkad" msgstr "" -#: skycultures/western/star_names.fab:147 +#: skycultures/western/star_names.fab:152 msgid "Alkalurops" msgstr "" -#: skycultures/western/star_names.fab:148 +#: skycultures/western/star_names.fab:153 msgid "Edasich" msgstr "" -#: skycultures/western/star_names.fab:149 +#: skycultures/western/star_names.fab:154 msgid "Nusakan" msgstr "" -#: skycultures/western/star_names.fab:150 +#: skycultures/western/star_names.fab:155 msgid "Alphekka" msgstr "" -#: skycultures/western/star_names.fab:151 +#: skycultures/western/star_names.fab:156 msgid "Unukalhai" msgstr "" -#: skycultures/western/star_names.fab:152 +#: skycultures/western/star_names.fab:157 msgid "Dschubba" msgstr "" -#: skycultures/western/star_names.fab:153 +#: skycultures/western/star_names.fab:158 msgid "Acrab" msgstr "" -#: skycultures/western/star_names.fab:154 +#: skycultures/western/star_names.fab:159 msgid "Marsic" msgstr "" -#: skycultures/western/star_names.fab:155 +#: skycultures/western/star_names.fab:160 msgid "Yed Prior" msgstr "" -#: skycultures/western/star_names.fab:156 +#: skycultures/western/star_names.fab:161 msgid "Yed Posterior" msgstr "" -#: skycultures/western/star_names.fab:157 +#: skycultures/western/star_names.fab:162 msgid "Al Niyat" msgstr "" -#: skycultures/western/star_names.fab:158 +#: skycultures/western/star_names.fab:163 msgid "Cujam" msgstr "" -#: skycultures/western/star_names.fab:159 +#: skycultures/western/star_names.fab:164 msgid "Antares" msgstr "" -#: skycultures/western/star_names.fab:160 +#: skycultures/western/star_names.fab:165 msgid "Kornephoros" msgstr "" -#: skycultures/western/star_names.fab:161 +#: skycultures/western/star_names.fab:166 msgid "Marfik" msgstr "" -#: skycultures/western/star_names.fab:162 +#: skycultures/western/star_names.fab:167 msgid "Atria" msgstr "" -#: skycultures/western/star_names.fab:163 +#: skycultures/western/star_names.fab:168 msgid "Alrakis" msgstr "" -#: skycultures/western/star_names.fab:164 +#: skycultures/western/star_names.fab:169 msgid "Sabik" msgstr "" -#: skycultures/western/star_names.fab:165 +#: skycultures/western/star_names.fab:170 msgid "Rasalgethi" msgstr "" -#: skycultures/western/star_names.fab:166 +#: skycultures/western/star_names.fab:171 msgid "Rastaban" msgstr "" -#: skycultures/western/star_names.fab:167 +#: skycultures/western/star_names.fab:172 msgid "Maasym" msgstr "" -#: skycultures/western/star_names.fab:168 +#: skycultures/western/star_names.fab:173 msgid "Lesath" msgstr "" -#: skycultures/western/star_names.fab:169 +#: skycultures/western/star_names.fab:174 msgid "Yildun" msgstr "" -#: skycultures/western/star_names.fab:170 +#: skycultures/western/star_names.fab:175 msgid "Shaula" msgstr "" -#: skycultures/western/star_names.fab:171 +#: skycultures/western/star_names.fab:176 msgid "Rasalhague" msgstr "" -#: skycultures/western/star_names.fab:172 +#: skycultures/western/star_names.fab:177 msgid "Girtab" msgstr "" -#: skycultures/western/star_names.fab:173 +#: skycultures/western/star_names.fab:178 msgid "Cebalrai" msgstr "" -#: skycultures/western/star_names.fab:174 +#: skycultures/western/star_names.fab:179 msgid "Grumium" msgstr "" -#: skycultures/western/star_names.fab:175 +#: skycultures/western/star_names.fab:180 msgid "Etamin" msgstr "" -#: skycultures/western/star_names.fab:176 +#: skycultures/western/star_names.fab:181 msgid "Barnard's Star" msgstr "" -#: skycultures/western/star_names.fab:177 +#: skycultures/western/star_names.fab:182 msgid "Alnasl" msgstr "" -#: skycultures/western/star_names.fab:178 +#: skycultures/western/star_names.fab:183 msgid "Kaus Media" msgstr "" -#: skycultures/western/star_names.fab:179 +#: skycultures/western/star_names.fab:184 msgid "Kaus Australis" msgstr "" -#: skycultures/western/star_names.fab:180 +#: skycultures/western/star_names.fab:185 msgid "Kaus Borealis" msgstr "" -#: skycultures/western/star_names.fab:181 +#: skycultures/western/star_names.fab:186 msgid "Vega" msgstr "" -#: skycultures/western/star_names.fab:182 +#: skycultures/western/star_names.fab:187 msgid "Sheliak" msgstr "" -#: skycultures/western/star_names.fab:183 +#: skycultures/western/star_names.fab:188 msgid "Nunki" msgstr "" -#: skycultures/western/star_names.fab:184 +#: skycultures/western/star_names.fab:189 msgid "Alya" msgstr "" -#: skycultures/western/star_names.fab:185 +#: skycultures/western/star_names.fab:190 msgid "Sulafat" msgstr "" -#: skycultures/western/star_names.fab:186 +#: skycultures/western/star_names.fab:191 msgid "Ascella" msgstr "" -#: skycultures/western/star_names.fab:187 +#: skycultures/western/star_names.fab:192 msgid "Altais" msgstr "" -#: skycultures/western/star_names.fab:188 +#: skycultures/western/star_names.fab:193 msgid "Arkab" msgstr "" -#: skycultures/western/star_names.fab:189 +#: skycultures/western/star_names.fab:194 msgid "Rukbat" msgstr "" -#: skycultures/western/star_names.fab:190 +#: skycultures/western/star_names.fab:195 msgid "Albireo" msgstr "" -#: skycultures/western/star_names.fab:191 +#: skycultures/western/star_names.fab:196 msgid "Campbell's Star" msgstr "" -#: skycultures/western/star_names.fab:192 +#: skycultures/western/star_names.fab:197 msgid "Sham" msgstr "" -#: skycultures/western/star_names.fab:193 +#: skycultures/western/star_names.fab:198 msgid "Tarazed" msgstr "" -#: skycultures/western/star_names.fab:194 +#: skycultures/western/star_names.fab:199 msgid "Altair" msgstr "" -#: skycultures/western/star_names.fab:195 +#: skycultures/western/star_names.fab:200 msgid "Alshain" msgstr "" -#: skycultures/western/star_names.fab:196 +#: skycultures/western/star_names.fab:201 msgid "Algedi" msgstr "" -#: skycultures/western/star_names.fab:197 +#: skycultures/western/star_names.fab:202 msgid "Dabih" msgstr "" -#: skycultures/western/star_names.fab:198 +#: skycultures/western/star_names.fab:203 msgid "Sadr" msgstr "" -#: skycultures/western/star_names.fab:199 +#: skycultures/western/star_names.fab:204 msgid "Peacock" msgstr "" -#: skycultures/western/star_names.fab:200 +#: skycultures/western/star_names.fab:205 msgid "Rotanev" msgstr "" -#: skycultures/western/star_names.fab:201 +#: skycultures/western/star_names.fab:206 msgid "Sualocin" msgstr "" -#: skycultures/western/star_names.fab:202 +#: skycultures/western/star_names.fab:207 msgid "Deneb" msgstr "" -#: skycultures/western/star_names.fab:204 +#: skycultures/western/star_names.fab:209 msgid "Albali" msgstr "" -#: skycultures/western/star_names.fab:205 +#: skycultures/western/star_names.fab:210 +msgid "Bessel's Star" +msgstr "" + +#: skycultures/western/star_names.fab:211 msgid "Kitalpha" msgstr "" -#: skycultures/western/star_names.fab:206 +#: skycultures/western/star_names.fab:212 msgid "Alderamin" msgstr "" -#: skycultures/western/star_names.fab:207 +#: skycultures/western/star_names.fab:213 msgid "Alfirk" msgstr "" -#: skycultures/western/star_names.fab:208 +#: skycultures/western/star_names.fab:214 msgid "Sadalsuud" msgstr "" -#: skycultures/western/star_names.fab:209 +#: skycultures/western/star_names.fab:215 msgid "Nashira" msgstr "" -#: skycultures/western/star_names.fab:210 +#: skycultures/western/star_names.fab:216 msgid "Azelfafage" msgstr "" -#: skycultures/western/star_names.fab:211 +#: skycultures/western/star_names.fab:217 msgid "The Garnet Star" msgstr "" -#: skycultures/western/star_names.fab:212 +#: skycultures/western/star_names.fab:218 msgid "Enif" msgstr "" -#: skycultures/western/star_names.fab:213 +#: skycultures/western/star_names.fab:219 msgid "Deneb Algedi" msgstr "" -#: skycultures/western/star_names.fab:214 +#: skycultures/western/star_names.fab:220 msgid "Kurhah" msgstr "" -#: skycultures/western/star_names.fab:215 +#: skycultures/western/star_names.fab:221 msgid "Sadalmelik" msgstr "" -#: skycultures/western/star_names.fab:216 +#: skycultures/western/star_names.fab:222 msgid "Alnair" msgstr "" -#: skycultures/western/star_names.fab:217 +#: skycultures/western/star_names.fab:223 msgid "Biham" msgstr "" -#: skycultures/western/star_names.fab:218 +#: skycultures/western/star_names.fab:224 msgid "Ancha" msgstr "" -#: skycultures/western/star_names.fab:219 +#: skycultures/western/star_names.fab:225 msgid "Sadachbia" msgstr "" -#: skycultures/western/star_names.fab:220 +#: skycultures/western/star_names.fab:226 msgid "Kruger 60" msgstr "" -#: skycultures/western/star_names.fab:221 +#: skycultures/western/star_names.fab:227 msgid "Situla" msgstr "" -#: skycultures/western/star_names.fab:222 +#: skycultures/western/star_names.fab:228 msgid "Homan" msgstr "" -#: skycultures/western/star_names.fab:223 +#: skycultures/western/star_names.fab:229 msgid "Matar" msgstr "" -#: skycultures/western/star_names.fab:224 +#: skycultures/western/star_names.fab:230 msgid "Babcock's Star" msgstr "" -#: skycultures/western/star_names.fab:225 +#: skycultures/western/star_names.fab:231 msgid "Sadalbari" msgstr "" -#: skycultures/western/star_names.fab:226 +#: skycultures/western/star_names.fab:232 msgid "Skat" msgstr "" -#: skycultures/western/star_names.fab:227 +#: skycultures/western/star_names.fab:233 msgid "Fomalhaut" msgstr "" -#: skycultures/western/star_names.fab:228 +#: skycultures/western/star_names.fab:234 msgid "Scheat" msgstr "" -#: skycultures/western/star_names.fab:229 +#: skycultures/western/star_names.fab:235 msgid "Markab" msgstr "" -#: skycultures/western/star_names.fab:230 +#: skycultures/western/star_names.fab:236 msgid "Errai" msgstr "" diff -Nru stellarium-0.12.1/scripts/CMakeLists.txt stellarium-0.12.4/scripts/CMakeLists.txt --- stellarium-0.12.1/scripts/CMakeLists.txt 2013-04-02 15:30:15.000000000 +0000 +++ stellarium-0.12.4/scripts/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,5 +1,5 @@ ########### install files ############### -INSTALL(FILES startup.ssc landscapes.ssc lunar_partial.ssc lunar_total.ssc screensaver.ssc common_objects.inc solar_eclipse.ssc zodiac.ssc triple_sunrise_and_sunsets.ssc phobos_phun_1.ssc phobos_phun_2.ssc phobos_phun_3.ssc phobos_phun_4.ssc phobos_phun_5.ssc solar_system_screensaver.ssc constellations_tour.ssc sun.ssc earth_1.ssc transit_of_venus.ssc analemma.ssc supernova.ssc sky_cultures.ssc DESTINATION share/${PACKAGE}/scripts) +INSTALL(FILES startup.ssc landscapes.ssc lunar_partial.ssc lunar_total.ssc screensaver.ssc common_objects.inc solar_eclipse.ssc zodiac.ssc triple_sunrise_and_sunsets.ssc phobos_phun_1.ssc phobos_phun_2.ssc phobos_phun_3.ssc phobos_phun_4.ssc phobos_phun_5.ssc solar_system_screensaver.ssc constellations_tour.ssc sun.ssc earth_1.ssc earth_2.ssc earth_3.ssc earth_4.ssc earth_5.ssc earth_6.ssc transit_of_venus.ssc analemma.ssc supernova.ssc sky_cultures.ssc DESTINATION share/${PACKAGE}/scripts) diff -Nru stellarium-0.12.1/scripts/earth_1.ssc stellarium-0.12.4/scripts/earth_1.ssc --- stellarium-0.12.1/scripts/earth_1.ssc 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/scripts/earth_1.ssc 2013-08-04 06:20:27.000000000 +0000 @@ -1,276 +1,484 @@ -// -// Author: Qam1 -// Version: 4.1 -// License: Public Domain -// Name: Earth best views from other bodies -// Description: Best views of Earth from other Solar System bodies in the 21st Century. -// - -//basics -var spd = 5; // speed for screen saver mode in seconds -StelSkyDrawer.setFlagLuminanceAdaptation(false); -var o = 1; -var i = 1; -var sl = StarMgr.getLabelsAmount(); -var ss = 0; - -// Labels -var txt1 = LabelMgr.labelScreen("Press = for next outer body", 770, 20, false, 15, "#FF0000"); -LabelMgr.setLabelShow(txt1, true); - -txt1 = LabelMgr.labelScreen("Press - for previous inner body", 770, 40, false, 15, "#FF0000"); -LabelMgr.setLabelShow(txt1, true); - -txt1 = LabelMgr.labelScreen("Press [ to toggle flags and labels", 770, 60, false, 15, "#FF0000"); -LabelMgr.setLabelShow(txt1, true); - -txt1 = LabelMgr.labelScreen("Press ] toggle scrren saver mode", 770, 80, false, 15, "#FF0000"); -LabelMgr.setLabelShow(txt1, true); - -txt1 = LabelMgr.labelScreen("By Qam1", 770, 100, false, 15, "#FF0000"); -LabelMgr.setLabelShow(txt1, true); - -spd = spd * 4; - -// program -var q = 0; -while (q == 0) -{ - if (o == 1) - { - core.selectObjectByName("Earth", pointer = true); - StelMovementMgr.setFlagTracking(true); - - SolarSystem.setFlagOrbits(true); - - SolarSystem.setLabelsAmount(20); - StarMgr.setLabelsAmount(sl); - ConstellationMgr.setFlagLines(true); - ConstellationMgr.setFlagLabels(true); - GridLinesMgr.setFlagEclipticLine(true); - GridLinesMgr.setFlagEquatorLine(true); - } - - if (o == -1) - { - core.selectObjectByName("Earth", pointer = false); - StelMovementMgr.setFlagTracking(true); - - SolarSystem.setFlagOrbits(false); - - SolarSystem.setLabelsAmount(-20); - StarMgr.setLabelsAmount(-20); - ConstellationMgr.setFlagLines(false); - ConstellationMgr.setFlagLabels(false); - GridLinesMgr.setFlagEclipticLine(false); - GridLinesMgr.setFlagEquatorLine(false); - } - - if (i == 1) - { - LandscapeMgr.setFlagAtmosphere(false); - LandscapeMgr.setFlagFog(false); - LandscapeMgr.setCurrentLandscapeID("moon"); - - core.setDate("2061-05-31T01:04:47", "utc"); - core.setObserverLocation(91.80, 44.24, 7, 1, "", "Mercury"); - StelMovementMgr.zoomTo(90, 1); - - SolarSystem.setFlagOrbits(false); - } - - if (i == 2) - { - LandscapeMgr.setFlagAtmosphere(true); - LandscapeMgr.setFlagFog(true); - LandscapeMgr.setCurrentLandscapeID("moon"); - - core.setDate("2093-12-17T12:04:47", "utc"); - core.setObserverLocation(-84.7, 40.3, 50000, 1, "", "Venus"); - StelMovementMgr.zoomTo(90, 1); - - SolarSystem.setFlagOrbits(false); - } - - if (i == 3) - { - LandscapeMgr.setFlagAtmosphere(false); - LandscapeMgr.setFlagFog(false); - LandscapeMgr.setCurrentLandscapeID("moon"); - - core.setDate("2023-01-21T20:57:47", "utc"); - core.setObserverLocation(19.7, 39.0, 50, 1, "", "Moon"); - StelMovementMgr.zoomTo(12, 1); - - SolarSystem.setFlagOrbits(false); - } - - if (i == 4) - { - LandscapeMgr.setFlagAtmosphere(true); - LandscapeMgr.setFlagFog(true); - LandscapeMgr.setCurrentLandscapeID("mars"); - - core.setObserverLocation(-175.399994, -14.48, 17, 1, "", "Mars"); - core.setDate("2099-07-26T04:16:00", "utc"); - LandscapeMgr.setFlagAtmosphere(true); - - StelMovementMgr.zoomTo(62, 1); - } - - if (i == 5) - { - LandscapeMgr.setFlagAtmosphere(false); - LandscapeMgr.setFlagFog(false); - LandscapeMgr.setCurrentLandscapeID("ocean"); - - core.setDate("2082-10-19T21:08:21", "utc"); - core.setObserverLocation(-73.71, 44.24, 17, 1, "", "Ceres"); - StelMovementMgr.zoomTo(42, 1); - } - - if (i == 6) - { - LandscapeMgr.setFlagAtmosphere(true); - LandscapeMgr.setFlagFog(true); - LandscapeMgr.setCurrentLandscapeID("saturn"); - - core.setDate("2058-07-15T11:52:00", "utc"); - core.setObserverLocation(-73.71, 44.24, 71492000, 1, "", "Jupiter"); - StelMovementMgr.zoomTo(34, 1); - - txt1 = LabelMgr.labelScreen("Elongation: 11.849 degrees", 150, 10, false, 15, "#AAFFAA"); - LabelMgr.setLabelShow(txt1, true); - } - - if (i == 7) - { - LandscapeMgr.setFlagAtmosphere(true); - LandscapeMgr.setFlagFog(true); - LandscapeMgr.setCurrentLandscapeID("saturn"); - - core.setDate("2031-09-16T10:48:57", "utc"); - core.setObserverLocation(-73.71, 9.24, 200000, 1, "", "Saturn"); - core.wait(0.1); - StelMovementMgr.zoomTo(28, 1); - - txt1 = LabelMgr.labelScreen("Elongation: 6.343 degrees", 150, 10, false, 15, "#AAFFAA"); - LabelMgr.setLabelShow(txt1, true); - } - - if (i == 8) - { - LandscapeMgr.setFlagAtmosphere(true); - LandscapeMgr.setFlagFog(true); - LandscapeMgr.setCurrentLandscapeID("saturn"); - - core.setDate("2052-06-16T11:00:00", "utc"); - core.setObserverLocation(-76.73, 76.92, 30268000, 1, "", "Uranus"); - StelMovementMgr.zoomTo(15.6, 1); - - txt1 = LabelMgr.labelScreen("Elongation: 3.185 degrees", 150, 10, false, 15, "#AAFFAA"); - LabelMgr.setLabelShow(txt1, true); - } - - if (i == 9) - { - LandscapeMgr.setFlagAtmosphere(true); - LandscapeMgr.setFlagFog(true); - LandscapeMgr.setCurrentLandscapeID("saturn"); - - core.setDate("2035-07-17T15:00:00", "utc"); - core.setObserverLocation(76.71, 41.24, 24764000, 1, "", "Neptune"); - StelMovementMgr.zoomTo(10.6, 1); - - txt1 = LabelMgr.labelScreen("Elongation: 1.952 degrees", 150, 10, false, 15, "#AAFFAA"); - LabelMgr.setLabelShow(txt1, true); - } - - if (i == 10) - { - LandscapeMgr.setFlagAtmosphere(false); - LandscapeMgr.setFlagFog(false); - LandscapeMgr.setCurrentLandscapeID("moon"); - - core.setDate("2000-09-01T12:35:49", "utc"); - core.setObserverLocation(113.49, 31.04, 76, 1, "", "Pluto"); - StelMovementMgr.zoomTo(25, 1); - - txt1 = LabelMgr.labelScreen("Elongation: 0.952 degrees", 150, 10, false, 15, "#AAFFAA"); - LabelMgr.setLabelShow(txt1, true); - } - - var d = Math.floor(core.getJDay()); - var r = d; - var pak = 0; - - if (ss ==1) - { - while (pak < spd) - { - core.wait(0.25); - pak = pak + 1; - r = Math.floor(core.getJDay()); - - if (Math.abs(r-d) > 0) - { - pak = spd + 1; - core.setDate("+100 days"); - } - } - r = Math.floor(core.getJDay()) + 1; - } - - while (d == r) - { - r = Math.floor(core.getJDay()); - } - - if (r - d == 1) - { - i = i + 1; - } - - if (r - d == -1) - { - i = i - 1; - } - - if (i < 1) - { - i = 10; - } - - if (i > 10) - { - i = 1; - } - - if (r - d == -7) - { - o = o * -1; - } - - //toggle screen saver - if (r - d > 6) - { - ss = ss + 1; - - if (ss == 2) - { - ss = 0; - txt1 = LabelMgr.labelScreen("Screensaver Mode off", 400, 20, false, 25, "#F6A101"); - LabelMgr.setLabelShow(txt1, true); - core.wait(1); - } - else - { - txt1 = LabelMgr.labelScreen("Screensaver Mode on", 400, 20, false, 25, "#F6A101"); - LabelMgr.setLabelShow(txt1, true); - } - core.wait(1); - } - - LabelMgr.deleteAllLabels(); -} - +// Author: Qam1 +// Version: 5.1 +// License: Public Domain +// Name: Earth best views from other bodies +// Description: Best views of Earth from other Solar System bodies in the 21st Century. +// + +//basics +var spd = 5; // speed for screen saver mode in seconds +StelSkyDrawer.setFlagLuminanceAdaptation(false); +var o = 1; +var i = 1; +var sl = StarMgr.getLabelsAmount(); +var ss = 0; + +// Labels +var txt1 = LabelMgr.labelScreen("Press = for next outer body", 770, 20, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press - for previous inner body", 770, 40, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press [ to toggle flags and labels", 770, 60, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press ] toggle scrren saver mode", 770, 80, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("By Qam1", 770, 100, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +spd = spd * 4; + +// program +var q = 0; +while (q == 0) +{ + if (o == 1) + { + core.selectObjectByName("Earth", pointer = true); + StelMovementMgr.setFlagTracking(true); + + SolarSystem.setFlagOrbits(true); + + SolarSystem.setLabelsAmount(20); + StarMgr.setLabelsAmount(sl); + ConstellationMgr.setFlagLines(true); + ConstellationMgr.setFlagLabels(true); + GridLinesMgr.setFlagEclipticLine(true); + GridLinesMgr.setFlagEquatorLine(true); + } + + if (o == -1) + { + core.selectObjectByName("Earth", pointer = false); + StelMovementMgr.setFlagTracking(true); + + SolarSystem.setFlagOrbits(false); + + SolarSystem.setLabelsAmount(-20); + StarMgr.setLabelsAmount(-20); + ConstellationMgr.setFlagLines(false); + ConstellationMgr.setFlagLabels(false); + GridLinesMgr.setFlagEclipticLine(false); + GridLinesMgr.setFlagEquatorLine(false); + } + + if (i == 1) + { + LandscapeMgr.setFlagAtmosphere(false); + LandscapeMgr.setFlagFog(false); + LandscapeMgr.setCurrentLandscapeID("moon"); + + core.setDate("2061-05-31T01:04:47", "utc"); + core.setObserverLocation(91.80, 44.24, 7, 1, "", "Mercury"); + StelMovementMgr.zoomTo(90, 1); + + SolarSystem.setFlagOrbits(false); + + sd = 176 + sw = 1232; + + + } + + if (i == 2) + { + LandscapeMgr.setFlagAtmosphere(true); + LandscapeMgr.setFlagFog(true); + LandscapeMgr.setCurrentLandscapeID("moon"); + + core.setDate("2093-12-17T12:04:47", "utc"); + core.setObserverLocation(-84.7, 40.3, 50000, 1, "", "Venus"); + StelMovementMgr.zoomTo(90, 1); + + SolarSystem.setFlagOrbits(false); + + sd = 116; + sw = 1709; + } + + if (i == 3) + { + + i = 4; + + LandscapeMgr.setFlagAtmosphere(false); + LandscapeMgr.setFlagFog(false); + LandscapeMgr.setCurrentLandscapeID("moon"); + + core.setDate("2023-01-21T20:57:47", "utc"); + core.setObserverLocation(19.7, 39.0, 50, 1, "", "Moon"); + StelMovementMgr.zoomTo(12, 1); + + SolarSystem.setFlagOrbits(false); + + sd = 1; + sw = 7; + } + + if (i == 4) + { + LandscapeMgr.setFlagAtmosphere(true); + LandscapeMgr.setFlagFog(true); + LandscapeMgr.setCurrentLandscapeID("mars"); + + core.setObserverLocation(-175.399994, -14.48, 17, 1, "", "Mars"); + core.setDate("2099-07-26T04:16:00", "utc"); + LandscapeMgr.setFlagAtmosphere(true); + + StelMovementMgr.zoomTo(62, 1); + +SolarSystem.setFlagOrbits(true); + + + sd = 1; + sw = 7; + + + + + + + } + + if (i == 5) + { + LandscapeMgr.setFlagAtmosphere(false); + LandscapeMgr.setFlagFog(false); + LandscapeMgr.setCurrentLandscapeID("ocean"); + + core.setDate("2082-10-19T21:08:21", "utc"); + core.setObserverLocation(-73.71, 44.24, 17, 1, "", "Ceres"); + StelMovementMgr.zoomTo(42, 1); + + sd = 1; + sw = 7; + } + + if (i == 6) + { + LandscapeMgr.setFlagAtmosphere(true); + LandscapeMgr.setFlagFog(true); + LandscapeMgr.setCurrentLandscapeID("saturn"); + + core.setDate("2058-07-15T11:52:00", "utc"); + core.setObserverLocation(134.71, 27.24, 71492000, 1, "", "Jupiter"); + StelMovementMgr.zoomTo(34, 1); + + txt1 = LabelMgr.labelScreen("Elongation: 11.849 degrees", 500, 10, false, 25, "#AAFFAA"); + LabelMgr.setLabelShow(txt1, true); + } + + if (i == 7) + { + LandscapeMgr.setFlagAtmosphere(true); + LandscapeMgr.setFlagFog(true); + LandscapeMgr.setCurrentLandscapeID("saturn"); + + core.setDate("2031-09-16T10:48:57", "utc"); + core.setObserverLocation(-73.71, 9.24, 200000, 1, "", "Saturn"); + core.wait(0.1); + StelMovementMgr.zoomTo(28, 1); + + txt1 = LabelMgr.labelScreen("Elongation: 6.390 degrees", 500, 10, false, 25, "#AAFFAA"); + LabelMgr.setLabelShow(txt1, true); + } + + if (i == 8) + { + LandscapeMgr.setFlagAtmosphere(true); + LandscapeMgr.setFlagFog(true); + LandscapeMgr.setCurrentLandscapeID("saturn"); + + core.setDate("2052-06-16T11:00:00", "utc"); + core.setObserverLocation(-76.73, 76.92, 30268000, 1, "", "Uranus"); + StelMovementMgr.zoomTo(15.6, 1); + + txt1 = LabelMgr.labelScreen("Elongation: 3.186 degrees", 500, 10, false, 25, "#AAFFAA"); + LabelMgr.setLabelShow(txt1, true); + + + sd = 1; + sw = 7; + } + + if (i == 9) + { + LandscapeMgr.setFlagAtmosphere(true); + LandscapeMgr.setFlagFog(true); + LandscapeMgr.setCurrentLandscapeID("saturn"); + + core.setDate("2035-07-17T15:00:00", "utc"); + core.setObserverLocation(76.71, 1.24, 24764000, 1, "", "Neptune"); + StelMovementMgr.zoomTo(10.6, 1); + + txt1 = LabelMgr.labelScreen("Elongation: 1.952 degrees", 500, 10, false, 25, "#AAFFAA"); + LabelMgr.setLabelShow(txt1, true); + + sd = 1; + sw = 7; + } + + if (i == 10) + { + LandscapeMgr.setFlagAtmosphere(false); + LandscapeMgr.setFlagFog(false); + LandscapeMgr.setCurrentLandscapeID("moon"); + + core.setDate("2000-09-01T12:35:49", "utc"); + core.setObserverLocation(113.49, 31.04, 76, 1, "", "Pluto"); + StelMovementMgr.zoomTo(25, 1); + + txt1 = LabelMgr.labelScreen("Elongation: 1.908 degrees", 500, 10, false, 25, "#AAFFAA"); + LabelMgr.setLabelShow(txt1, true); + + + + } + + var d = Math.floor(core.getJDay()); + +var r = d; + var pak = 0; + + if (ss ==1) + { + while (pak < spd) + { + core.wait(0.25); + pak = pak + 1; + r = Math.floor(core.getJDay()); + + if (Math.abs(r-d) > 0) + { + pak = spd + 1; + core.setDate("+2000 days"); + } + } + r = Math.floor(core.getJDay()) + 1; + + +if (i < 3) // why?? +{ +i = i + 1; +} + +if (i == 10) // Why?? +{ +i = i + 1; +} + + +} + + + +if (i == 90) +{ + +var d = Math.floor(core.getJDay()*10); +var r = d; + + + +while (d == r) +{ +r = Math.floor(core.getJDay()*10); +} + +if (r > d) +{ +d = d / 10; +r = d + 1; +} +else +{ +d = d / 10; +r = d - 1; +} + + +txt1 = LabelMgr.labelScreen(r, 400, 20, false, 25, "#F6A101"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(d, 400, 60, false, 25, "#F6A101"); +LabelMgr.setLabelShow(txt1, true) + +core.wait(3); + + +} + +else +{ + +while (d == r) +{ +r = Math.floor(core.getJDay()); +} +} + + + + + + + + +if (i < 3) // Merc & venus + +{ + +sw = 1000 + + + if ( r - d > 10) + { + if (r - d < 1000) + { + i = i + 1; + } + } + + if (r - d < - 10) + { + if (r - d > -1000) + { + i = i - 1; + } + } + + + + if (r - d < -1000) + { + o = o * -1; + } + + +} + +else + +{ // Mars - Neptune + + +sw = 2; + + +if (i > 2) +{ + +if (i < 10) +{ + + + + if ( r - d == 1) + { + i = i + 1; + } + + if ( r - d == -1) + { + + if (i == 4) + { + i = 2 + } + else + { + i = i - 1; + } + + + } + + +if (r - d < -2) + { + o = o * -1; + } + + + +} + + +else // pluto + +{ + +// swap + + +sw = 20 + + if ( r - d > 1) + { + if (r - d < 20) + { + i = i + 1; + } + } + + if (r - d < - 1) + { + if (r - d > -20) + { + i = i - 1; + } + } + +if (r - d < -20) + { + o = o * -1; + } + + +} + +} + +} + + + + + + if (i < 1) + { + i = 10; + } + + if (i > 10) + { + i = 1; + } + + + //toggle screen saver + if (r - d > sw) + { + ss = ss + 1; + + if (ss == 2) + { + ss = 0; + txt1 = LabelMgr.labelScreen("Screensaver Mode off", 400, 20, false, 25, "#F6A101"); + LabelMgr.setLabelShow(txt1, true); + core.wait(1); + } + else + { + txt1 = LabelMgr.labelScreen("Screensaver Mode on", 400, 20, false, 25, "#F6A101"); + LabelMgr.setLabelShow(txt1, true); + } + core.wait(1); + } + + LabelMgr.deleteAllLabels(); +} + diff -Nru stellarium-0.12.1/scripts/earth_2.ssc stellarium-0.12.4/scripts/earth_2.ssc --- stellarium-0.12.1/scripts/earth_2.ssc 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/scripts/earth_2.ssc 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,33786 @@ +// Author: Qam1 +// Name: Earth Events from Mercury +// License: Public Domain +// Version: 5.1-1.1 +// Description: Earth Events from Mercury + +// Made on Stellarium 0.12.1 + +spd = 3; // speed for screen saver mode in seconds +long = -73.4 +lat = 30.1 + +y = core.getScreenHeight()/768; +x = core.getScreenWidth()/1024; +wt = 0.05; +q = 0; + +pi = 3.14159265358979323846264338327950288419716939937510; +rad = pi/180; +deg = 180/pi; +root = Math.pow(100,0.2); + + +degstring = "\u00B0"; + + + + +ah = "7777-07-07T07:07:07"; //why o why is this necessary?? + +id = new Array(length= 24000); +ik = new Array(length= 24000); +ij = new Array(length= 24000); +il = new Array(length= 24000); +im = new Array(length= 24000); +fv = new Array(length= 24000); +fvp = new Array(length= 24000); +efv = new Array(length= 24000); +mfv = new Array(length= 24000); +emag = new Array(length= 24000); +elong = new Array(length = 24000); +oes = new Array(length= 24000); +mag = new Array(length = 24000); +woes = new Array(length = 24000); +rsun = new Array(length = 24000); + +cycle = new Array(length = 24000); + +wc = 5 + +pet = 0; + +LabelMgr.deleteAllLabels(); + + +core.setObserverLocation(long, 30.1, 20, 1, "", "Mercury"); + + +core.selectObjectByName("Earth", pointer = true); +StelMovementMgr.setFlagTracking(true); + + + +spd = spd * 4; + +p = 0; +f = 1; + + +sd = 176; +sds = "+176 days"; +nsds ="-176 days"; + +sw = 1232; +sws = "+1232 days"; +nsws ="-1232 days"; + + +// Data + +id[1] = "2000-03-01T17:02:01" +ik[1] = 0 +il[1] = 172 +im[1] = 0.1913 +ij[1] = 1 +id[2] = "2000-03-04T11:16:01" +ik[2] = 1 +il[2] = 153 +im[2] = 0.066 +ij[2] = 2 +id[3] = "2000-07-03T00:14:02" +ik[3] = -1 +il[3] = -100 +im[3] = 0.0527 +ij[3] = 2 +id[4] = "2000-07-06T05:16:02" +ik[4] = 0 +il[4] = -121 +im[4] = 0.2206 +ij[4] = 1 +id[5] = "2000-10-28T22:04:03" +ik[5] = -1 +il[5] = 9 +im[5] = 0.0661 +ij[5] = 2 +id[6] = "2000-10-30T03:07:03" +ik[6] = 0 +il[6] = 0 +im[6] = 0.1245 +ij[6] = 1 +id[7] = "2001-02-12T00:14:01" +ik[7] = 0 +il[7] = -175 +im[7] = 0.1656 +ij[7] = 1 +id[8] = "2001-02-15T05:16:01" +ik[8] = 1 +il[8] = 161 +im[8] = 0.2319 +ij[8] = 2 +id[9] = "2001-06-15T11:45:02" +ik[9] = -1 +il[9] = -94 +im[9] = 0.2676 +ij[9] = 2 +id[10] = "2001-06-16T05:16:02" +ik[10] = 0 +il[10] = -98 +im[10] = 0.2511 +ij[10] = 1 +id[11] = "2001-10-12T10:04:03" +ik[11] = -1 +il[11] = 14 +im[11] = 0.1918 +ij[11] = 2 +id[12] = "2001-10-14T04:04:03" +ik[12] = 0 +il[12] = 1 +im[12] = 0.1259 +ij[12] = 1 +id[13] = "2002-01-27T17:31:01" +ik[13] = 0 +il[13] = 180 +im[13] = 0.0646 +ij[13] = 1 +id[14] = "2002-01-29T08:23:01" +ik[14] = 1 +il[14] = 168 +im[14] = 0.0424 +ij[14] = 2 +id[15] = "2002-05-27T02:09:02" +ik[15] = 0 +il[15] = -75 +im[15] = 0.0341 +ij[15] = 1 +id[16] = "2002-05-27T23:59:02" +ik[16] = 1 +il[16] = -81 +im[16] = 0.0927 +ij[16] = 2 +id[17] = "2002-09-25T14:23:03" +ik[17] = -1 +il[17] = 21 +im[17] = 0.151 +ij[17] = 2 +id[18] = "2002-09-27T22:04:03" +ik[18] = 0 +il[18] = 4 +im[18] = 0.2172 +ij[18] = 1 +id[19] = "2003-01-11T17:45:01" +ik[19] = 0 +il[19] = -180 +im[19] = 0.2252 +ij[19] = 1 +id[20] = "2003-01-12T19:26:01" +ik[20] = 1 +il[20] = 173 +im[20] = 0.2056 +ij[20] = 2 +id[21] = "2003-05-07T07:40:02" +ik[21] = 0 +il[21] = -53 +im[21] = 0.2434 +ij[21] = 1 +id[22] = "2003-05-09T13:55:02" +ik[22] = 1 +il[22] = -69 +im[22] = 0.2625 +ij[22] = 2 +id[23] = "2003-09-08T09:07:03" +ik[23] = -1 +il[23] = 30 +im[23] = 0.131 +ij[23] = 2 +id[24] = "2003-09-11T05:59:03" +ik[24] = 0 +il[24] = 9 +im[24] = 0.0421 +ij[24] = 1 +id[25] = "2003-12-26T22:47:01" +ik[25] = 0 +il[25] = -180 +im[25] = 0.1593 +ij[25] = 1 +id[26] = "2003-12-27T11:59:01" +ik[26] = 1 +il[26] = 177 +im[26] = 0.1795 +ij[26] = 2 +id[27] = "2004-04-17T05:02:02" +ik[27] = 0 +il[27] = -35 +im[27] = 0.1198 +ij[27] = 1 +id[28] = "2004-04-20T05:59:02" +ik[28] = 1 +il[28] = -56 +im[28] = 0.0617 +ij[28] = 2 +id[29] = "2004-08-20T17:31:03" +ik[29] = -1 +il[29] = 41 +im[29] = 0.183 +ij[29] = 2 +id[30] = "2004-08-23T23:59:03" +ik[30] = 0 +il[30] = 18 +im[30] = 0.2258 +ij[30] = 1 +id[31] = "2004-12-10T06:14:01" +ik[31] = 0 +il[31] = 180 +im[31] = 0.0892 +ij[31] = 1 +id[32] = "2004-12-10T07:40:01" +ik[32] = 1 +il[32] = -179 +im[32] = 0.086 +ij[32] = 2 +id[33] = "2005-03-29T20:38:02" +ik[33] = 0 +il[33] = -22 +im[33] = 0.1817 +ij[33] = 1 +id[34] = "2005-04-02T02:38:02" +ik[34] = 1 +il[34] = -44 +im[34] = 0.2384 +ij[34] = 2 +id[35] = "2005-08-02T16:04:03" +ik[35] = -1 +il[35] = 53 +im[35] = 0.1469 +ij[35] = 2 +id[36] = "2005-08-05T00:14:03" +ik[36] = 0 +il[36] = 37 +im[36] = 0.0452 +ij[36] = 1 +id[37] = "2005-11-24T04:33:01" +ik[37] = -1 +il[37] = -175 +im[37] = 0.2281 +ij[37] = 2 +id[38] = "2005-11-24T14:38:01" +ik[38] = 0 +il[38] = 179 +im[38] = 0.226 +ij[38] = 1 +id[39] = "2006-03-12T05:45:02" +ik[39] = 0 +il[39] = -12 +im[39] = 0.1261 +ij[39] = 1 +id[40] = "2006-03-15T05:59:02" +ik[40] = 1 +il[40] = -33 +im[40] = 0.0428 +ij[40] = 2 +id[41] = "2006-07-15T07:40:03" +ik[41] = -1 +il[41] = 66 +im[41] = 0.1932 +ij[41] = 2 +id[42] = "2006-07-18T03:21:03" +ik[42] = 0 +il[42] = 47 +im[42] = 0.2469 +ij[42] = 1 +id[43] = "2006-11-07T23:31:01" +ik[43] = -1 +il[43] = -171 +im[43] = 0.1089 +ij[43] = 2 +id[44] = "2006-11-08T21:35:01" +ik[44] = 0 +il[44] = 179 +im[44] = 0.151 +ij[44] = 1 +id[45] = "2007-02-23T05:45:02" +ik[45] = 0 +il[45] = -5 +im[45] = 0.2155 +ij[45] = 1 +id[46] = "2007-02-25T18:28:02" +ik[46] = 1 +il[46] = -24 +im[46] = 0.2127 +ij[46] = 2 +id[47] = "2007-06-26T19:40:03" +ik[47] = -1 +il[47] = 79 +im[47] = 0.2015 +ij[47] = 2 +id[48] = "2007-06-28T10:47:03" +ik[48] = 0 +il[48] = 68 +im[48] = 0.1232 +ij[48] = 1 +id[49] = "2007-10-22T14:52:01" +ik[49] = -1 +il[49] = -167 +im[49] = 0.1688 +ij[49] = 2 +id[50] = "2007-10-24T01:26:01" +ik[50] = 0 +il[50] = -180 +im[50] = 0.1038 +ij[50] = 1 +id[51] = "2008-02-06T17:31:02" +ik[51] = 0 +il[51] = -1 +im[51] = 0.0288 +ij[51] = 1 +id[52] = "2008-02-08T16:33:02" +ik[52] = 1 +il[52] = -16 +im[52] = 0.0889 +ij[52] = 2 +id[53] = "2008-06-07T07:26:03" +ik[53] = -1 +il[53] = 92 +im[53] = 0.1927 +ij[53] = 2 +id[54] = "2008-06-07T07:55:03" +ik[54] = 0 +il[54] = 92 +im[54] = 0.1937 +ij[54] = 1 +id[55] = "2008-10-04T23:59:01" +ik[55] = -1 +il[55] = -163 +im[55] = 0.2048 +ij[55] = 2 +id[56] = "2008-10-06T23:45:01" +ik[56] = 0 +il[56] = -178 +im[56] = 0.233 +ij[56] = 1 +id[57] = "2009-01-20T14:09:02" +ik[57] = 0 +il[57] = 0 +im[57] = 0.2073 +ij[57] = 1 +id[58] = "2009-01-21T23:16:02" +ik[58] = 1 +il[58] = -10 +im[58] = 0.1663 +ij[58] = 2 +id[59] = "2009-05-18T07:26:03" +ik[59] = 0 +il[59] = 115 +im[59] = 0.2689 +ij[59] = 1 +id[60] = "2009-05-19T20:23:03" +ik[60] = 1 +il[60] = 104 +im[60] = 0.2302 +ij[60] = 2 +id[61] = "2009-09-18T00:28:01" +ik[61] = -1 +il[61] = -156 +im[61] = 0.0574 +ij[61] = 2 +id[62] = "2009-09-20T13:55:01" +ik[62] = 0 +il[62] = -174 +im[62] = 0.0905 +ij[62] = 1 +id[63] = "2010-01-04T16:33:02" +ik[63] = 0 +il[63] = 1 +im[63] = 0.1674 +ij[63] = 1 +id[64] = "2010-01-05T12:57:02" +ik[64] = 1 +il[64] = -6 +im[64] = 0.1936 +ij[64] = 2 +id[65] = "2010-04-28T18:57:03" +ik[65] = 0 +il[65] = 135 +im[65] = 0.0225 +ij[65] = 1 +id[66] = "2010-05-01T11:02:03" +ik[66] = 1 +il[66] = 117 +im[66] = 0.174 +ij[66] = 2 +id[67] = "2010-08-31T14:52:01" +ik[67] = -1 +il[67] = -146 +im[67] = 0.2262 +ij[67] = 2 +id[68] = "2010-09-03T16:19:01" +ik[68] = 0 +il[68] = -168 +im[68] = 0.2058 +ij[68] = 1 +id[69] = "2010-12-19T23:02:02" +ik[69] = 0 +il[69] = 0 +im[69] = 0.0667 +ij[69] = 1 +id[70] = "2010-12-20T07:11:02" +ik[70] = 1 +il[70] = -2 +im[70] = 0.0487 +ij[70] = 2 +id[71] = "2011-04-09T23:59:03" +ik[71] = 0 +il[71] = 151 +im[71] = 0.2415 +ij[71] = 1 +id[72] = "2011-04-13T04:47:03" +ik[72] = 1 +il[72] = 129 +im[72] = 0.2172 +ij[72] = 2 +id[73] = "2011-08-13T18:57:01" +ik[73] = -1 +il[73] = -134 +im[73] = 0.0255 +ij[73] = 2 +id[74] = "2011-08-17T03:21:01" +ik[74] = 0 +il[74] = -158 +im[74] = 0.1538 +ij[74] = 1 +id[75] = "2011-12-04T03:35:02" +ik[75] = -1 +il[75] = 2 +im[75] = 0.2157 +ij[75] = 2 +id[76] = "2011-12-04T07:11:02" +ik[76] = 0 +il[76] = 0 +im[76] = 0.2132 +ij[76] = 1 +id[77] = "2012-03-21T23:16:03" +ik[77] = 0 +il[77] = 163 +im[77] = 0.0312 +ij[77] = 1 +id[78] = "2012-03-25T04:04:03" +ik[78] = 1 +il[78] = 141 +im[78] = 0.1469 +ij[78] = 2 +id[79] = "2012-07-25T14:09:01" +ik[79] = -1 +il[79] = -122 +im[79] = 0.2349 +ij[79] = 2 +id[80] = "2012-07-28T18:43:01" +ik[80] = 0 +il[80] = -144 +im[80] = 0.2021 +ij[80] = 1 +id[81] = "2012-11-16T23:59:02" +ik[81] = -1 +il[81] = 6 +im[81] = 0.1372 +ij[81] = 2 +id[82] = "2012-11-17T15:07:02" +ik[82] = 0 +il[82] = -1 +im[82] = 0.163 +ij[82] = 1 +id[83] = "2013-03-04T15:07:03" +ik[83] = 0 +il[83] = 171 +im[83] = 0.2251 +ij[83] = 1 +id[84] = "2013-03-07T11:02:03" +ik[84] = 1 +il[84] = 151 +im[84] = 0.1768 +ij[84] = 2 +id[85] = "2013-07-07T03:35:01" +ik[85] = -1 +il[85] = -108 +im[85] = 0.0795 +ij[85] = 2 +id[86] = "2013-07-09T12:57:01" +ik[86] = 0 +il[86] = -125 +im[86] = 0.062 +ij[86] = 1 +id[87] = "2013-10-31T17:45:02" +ik[87] = -1 +il[87] = 10 +im[87] = 0.1355 +ij[87] = 2 +id[88] = "2013-11-01T21:07:02" +ik[88] = 0 +il[88] = -1 +im[88] = 0.0785 +ij[88] = 1 +id[89] = "2014-02-15T20:38:03" +ik[89] = 0 +il[89] = 177 +im[89] = 0.0393 +ij[89] = 1 +id[90] = "2014-02-18T03:35:03" +ik[90] = 1 +il[90] = 160 +im[90] = 0.1523 +ij[90] = 2 +id[91] = "2014-06-18T15:21:01" +ik[91] = -1 +il[91] = -95 +im[91] = 0.2443 +ij[91] = 2 +id[92] = "2014-06-19T14:38:01" +ik[92] = 0 +il[92] = -102 +im[92] = 0.2578 +ij[92] = 1 +id[93] = "2014-10-15T06:43:02" +ik[93] = -1 +il[93] = 14 +im[93] = 0.2277 +ij[93] = 2 +id[94] = "2014-10-16T22:47:02" +ik[94] = 0 +il[94] = 1 +im[94] = 0.2264 +ij[94] = 1 +id[95] = "2015-01-30T12:28:03" +ik[95] = 0 +il[95] = 179 +im[95] = 0.1746 +ij[95] = 1 +id[96] = "2015-02-01T05:31:03" +ik[96] = 1 +il[96] = 167 +im[96] = 0.1042 +ij[96] = 2 +id[97] = "2015-05-30T11:16:01" +ik[97] = 0 +il[97] = -78 +im[97] = 0.1709 +ij[97] = 1 +id[98] = "2015-05-31T03:21:01" +ik[98] = 1 +il[98] = -83 +im[98] = 0.1354 +ij[98] = 2 +id[99] = "2015-09-28T12:28:02" +ik[99] = -1 +il[99] = 20 +im[99] = 0.015 +ij[99] = 2 +id[100] = "2015-09-30T17:59:02" +ik[100] = 0 +il[100] = 4 +im[100] = 0.1293 +ij[100] = 1 +id[101] = "2016-01-14T11:45:03" +ik[101] = 0 +il[101] = -179 +im[101] = 0.1782 +ij[101] = 1 +id[102] = "2016-01-15T15:21:03" +ik[102] = 1 +il[102] = 172 +im[102] = 0.2053 +ij[102] = 2 +id[103] = "2016-05-09T14:52:01" +ik[103] = 0 +il[103] = -56 +im[103] = 0.1608 +ij[103] = 1 +id[104] = "2016-05-11T17:02:01" +ik[104] = 1 +il[104] = -71 +im[104] = 0.2465 +ij[104] = 2 +id[105] = "2016-09-10T08:52:02" +ik[105] = -1 +il[105] = 28 +im[105] = 0.2385 +ij[105] = 2 +id[106] = "2016-09-13T03:35:02" +ik[106] = 0 +il[106] = 8 +im[106] = 0.1664 +ij[106] = 1 +id[107] = "2016-12-28T16:19:03" +ik[107] = 0 +il[107] = 180 +im[107] = 0.0295 +ij[107] = 1 +id[108] = "2016-12-29T07:11:03" +ik[108] = 1 +il[108] = 176 +im[108] = 0.0085 +ij[108] = 2 +id[109] = "2017-04-20T09:35:01" +ik[109] = 0 +il[109] = -38 +im[109] = 0.2564 +ij[109] = 1 +id[110] = "2017-04-23T08:38:01" +ik[110] = 1 +il[110] = -58 +im[110] = 0.1543 +ij[110] = 2 +id[111] = "2017-08-23T18:43:02" +ik[111] = -1 +il[111] = 39 +im[111] = 0.0858 +ij[111] = 2 +id[112] = "2017-08-26T23:59:02" +ik[112] = 0 +il[112] = 16 +im[112] = 0.2201 +ij[112] = 1 +id[113] = "2017-12-12T23:31:03" +ik[113] = 0 +il[113] = -180 +im[113] = 0.1912 +ij[113] = 1 +id[114] = "2017-12-13T02:52:03" +ik[114] = 1 +il[114] = -180 +im[114] = 0.1875 +ij[114] = 2 +id[115] = "2018-04-01T22:19:01" +ik[115] = 0 +il[115] = -23 +im[115] = 0.0818 +ij[115] = 1 +id[116] = "2018-04-05T04:33:01" +ik[116] = 1 +il[116] = -46 +im[116] = 0.2294 +ij[116] = 2 +id[117] = "2018-08-05T18:43:02" +ik[117] = -1 +il[117] = 51 +im[117] = 0.2396 +ij[117] = 2 +id[118] = "2018-08-09T03:07:02" +ik[118] = 0 +il[118] = 28 +im[118] = 0.1225 +ij[118] = 1 +id[119] = "2018-11-26T23:31:03" +ik[119] = -1 +il[119] = -176 +im[119] = 0.1557 +ij[119] = 2 +id[120] = "2018-11-27T07:55:03" +ik[120] = 0 +il[120] = 180 +im[120] = 0.1682 +ij[120] = 1 +id[121] = "2019-03-15T05:02:01" +ik[121] = 0 +il[121] = -13 +im[121] = 0.2282 +ij[121] = 1 +id[122] = "2019-03-18T06:43:01" +ik[122] = 1 +il[122] = -35 +im[122] = 0.1247 +ij[122] = 2 +id[123] = "2019-07-18T11:02:02" +ik[123] = -1 +il[123] = 64 +im[123] = 0.0653 +ij[123] = 2 +id[124] = "2019-07-21T09:21:02" +ik[124] = 0 +il[124] = 44 +im[124] = 0.204 +ij[124] = 1 +id[125] = "2019-11-10T19:11:03" +ik[125] = -1 +il[125] = -172 +im[125] = 0.0874 +ij[125] = 2 +id[126] = "2019-11-11T15:21:03" +ik[126] = 0 +il[126] = 179 +im[126] = 0.045 +ij[126] = 1 +id[127] = "2020-02-26T03:07:01" +ik[127] = 0 +il[127] = -6 +im[127] = 0.1173 +ij[127] = 1 +id[128] = "2020-02-28T17:45:01" +ik[128] = 1 +il[128] = -25 +im[128] = 0.2163 +ij[128] = 2 +id[129] = "2020-06-28T23:16:02" +ik[129] = -1 +il[129] = 77 +im[129] = 0.2515 +ij[129] = 2 +id[130] = "2020-06-30T19:40:02" +ik[130] = 0 +il[130] = 65 +im[130] = 0.2115 +ij[130] = 1 +id[131] = "2020-10-24T11:02:03" +ik[131] = -1 +il[131] = -168 +im[131] = 0.2219 +ij[131] = 2 +id[132] = "2020-10-25T19:40:03" +ik[132] = 0 +il[132] = -180 +im[132] = 0.203 +ij[132] = 1 +id[133] = "2021-02-08T13:26:01" +ik[133] = 0 +il[133] = -2 +im[133] = 0.1448 +ij[133] = 1 +id[134] = "2021-02-10T14:23:01" +ik[134] = 1 +il[134] = -17 +im[134] = 0.0501 +ij[134] = 2 +id[135] = "2021-06-10T11:02:02" +ik[135] = -1 +il[135] = 90 +im[135] = 0.0193 +ij[135] = 2 +id[136] = "2021-06-10T17:31:02" +ik[136] = 0 +il[136] = 88 +im[136] = 0.024 +ij[136] = 1 +id[137] = "2021-10-07T21:07:03" +ik[137] = -1 +il[137] = -164 +im[137] = 0.059 +ij[137] = 2 +id[138] = "2021-10-09T18:57:03" +ik[138] = 0 +il[138] = -178 +im[138] = 0.1509 +ij[138] = 1 +id[139] = "2022-01-23T08:38:01" +ik[139] = 0 +il[139] = 0 +im[139] = 0.1964 +ij[139] = 1 +id[140] = "2022-01-24T19:55:01" +ik[140] = 1 +il[140] = -11 +im[140] = 0.2177 +ij[140] = 2 +id[141] = "2022-05-21T15:50:02" +ik[141] = 0 +il[141] = 111 +im[141] = 0.2493 +ij[141] = 1 +id[142] = "2022-05-22T23:31:02" +ik[142] = 1 +il[142] = 102 +im[142] = 0.262 +ij[142] = 2 +id[143] = "2022-09-20T23:02:03" +ik[143] = -1 +il[143] = -157 +im[143] = 0.2122 +ij[143] = 2 +id[144] = "2022-09-23T10:33:03" +ik[144] = 0 +il[144] = -175 +im[144] = 0.1162 +ij[144] = 1 +id[145] = "2023-01-07T10:33:01" +ik[145] = 0 +il[145] = 1 +im[145] = 0.036 +ij[145] = 1 +id[146] = "2023-01-08T08:38:01" +ik[146] = 1 +il[146] = -6 +im[146] = 0.0746 +ij[146] = 2 +id[147] = "2023-05-02T01:11:02" +ik[147] = 0 +il[147] = 132 +im[147] = 0.1866 +ij[147] = 1 +id[148] = "2023-05-04T13:55:02" +ik[148] = 1 +il[148] = 115 +im[148] = 0.0458 +ij[148] = 2 +id[149] = "2023-09-03T15:07:03" +ik[149] = -1 +il[149] = -147 +im[149] = 0.1561 +ij[149] = 2 +id[150] = "2023-09-06T15:07:03" +ik[150] = 0 +il[150] = -169 +im[150] = 0.2338 +ij[150] = 1 +id[151] = "2023-12-22T16:33:01" +ik[151] = 0 +il[151] = 0 +im[151] = 0.1709 +ij[151] = 1 +id[152] = "2023-12-23T02:23:01" +ik[152] = 1 +il[152] = -2 +im[152] = 0.1569 +ij[152] = 2 +id[153] = "2024-04-12T03:21:02" +ik[153] = 0 +il[153] = 149 +im[153] = 0.1772 +ij[153] = 1 +id[154] = "2024-04-15T07:11:02" +ik[154] = 1 +il[154] = 127 +im[154] = 0.2614 +ij[154] = 2 +id[155] = "2024-08-15T20:38:03" +ik[155] = -1 +il[155] = -136 +im[155] = 0.2041 +ij[155] = 2 +id[156] = "2024-08-19T04:33:03" +ik[156] = 0 +il[156] = -160 +im[156] = 0.0448 +ij[156] = 1 +id[157] = "2024-12-05T22:33:01" +ik[157] = -1 +il[157] = 2 +im[157] = 0.1779 +ij[157] = 2 +id[158] = "2024-12-06T00:28:01" +ik[158] = 0 +il[158] = 0 +im[158] = 0.1802 +ij[158] = 1 +id[159] = "2025-03-24T23:59:02" +ik[159] = 0 +il[159] = 162 +im[159] = 0.2082 +ij[159] = 1 +id[160] = "2025-03-28T05:16:02" +ik[160] = 1 +il[160] = 139 +im[160] = 0.0464 +ij[160] = 2 +id[161] = "2025-07-28T17:02:03" +ik[161] = -1 +il[161] = -124 +im[161] = 0.173 +ij[161] = 2 +id[162] = "2025-07-31T23:02:03" +ik[162] = 0 +il[162] = -146 +im[162] = 0.2584 +ij[162] = 1 +id[163] = "2025-11-19T19:11:01" +ik[163] = -1 +il[163] = 6 +im[163] = 0.0334 +ij[163] = 2 +id[164] = "2025-11-20T08:38:01" +ik[164] = 0 +il[164] = -1 +im[164] = 0.0217 +ij[164] = 1 +id[165] = "2026-03-07T13:26:02" +ik[165] = 0 +il[165] = 170 +im[165] = 0.1805 +ij[165] = 1 +id[166] = "2026-03-10T11:02:02" +ik[166] = 1 +il[166] = 150 +im[166] = 0.2497 +ij[166] = 2 +id[167] = "2026-07-10T07:11:03" +ik[167] = -1 +il[167] = -110 +im[167] = 0.2196 +ij[167] = 2 +id[168] = "2026-07-12T20:23:03" +ik[168] = 0 +il[168] = -128 +im[168] = 0.0991 +ij[168] = 1 +id[169] = "2026-11-03T13:26:01" +ik[169] = -1 +il[169] = 10 +im[169] = 0.2038 +ij[169] = 2 +id[170] = "2026-11-04T14:52:01" +ik[170] = 0 +il[170] = -1 +im[170] = 0.1788 +ij[170] = 1 +id[171] = "2027-02-18T17:16:02" +ik[171] = 0 +il[171] = 176 +im[171] = 0.1127 +ij[171] = 1 +id[172] = "2027-02-21T02:09:02" +ik[172] = 1 +il[172] = 159 +im[172] = 0.0268 +ij[172] = 2 +id[173] = "2027-06-21T18:43:03" +ik[173] = -1 +il[173] = -97 +im[173] = 0.1315 +ij[173] = 2 +id[174] = "2027-06-22T23:59:03" +ik[174] = 0 +il[174] = -105 +im[174] = 0.1897 +ij[174] = 1 +id[175] = "2027-10-18T03:21:01" +ik[175] = -1 +il[175] = 14 +im[175] = 0.1028 +ij[175] = 2 +id[176] = "2027-10-19T17:31:01" +ik[176] = 0 +il[176] = 1 +im[176] = 0.1686 +ij[176] = 1 +id[177] = "2028-02-02T07:40:02" +ik[177] = 0 +il[177] = 179 +im[177] = 0.2207 +ij[177] = 1 +id[178] = "2028-02-04T02:52:02" +ik[178] = 1 +il[178] = 166 +im[178] = 0.2252 +ij[178] = 2 +id[179] = "2028-06-01T20:23:03" +ik[179] = 0 +il[179] = -82 +im[179] = 0.2431 +ij[179] = 1 +id[180] = "2028-06-02T06:43:03" +ik[180] = 1 +il[180] = -85 +im[180] = 0.2324 +ij[180] = 2 +id[181] = "2028-09-30T10:19:01" +ik[181] = -1 +il[181] = 19 +im[181] = 0.1514 +ij[181] = 2 +id[182] = "2028-10-02T13:55:01" +ik[182] = 0 +il[182] = 3 +im[182] = 0.0491 +ij[182] = 1 +id[183] = "2029-01-16T06:14:02" +ik[183] = 0 +il[183] = -179 +im[183] = 0.0688 +ij[183] = 1 +id[184] = "2029-01-17T11:31:02" +ik[184] = 1 +il[184] = 171 +im[184] = 0.1297 +ij[184] = 2 +id[185] = "2029-05-12T22:19:03" +ik[185] = 0 +il[185] = -59 +im[185] = 0.0409 +ij[185] = 1 +id[186] = "2029-05-14T20:09:03" +ik[186] = 1 +il[186] = -72 +im[186] = 0.0829 +ij[186] = 2 +id[187] = "2029-09-13T08:09:01" +ik[187] = -1 +il[187] = 27 +im[187] = 0.196 +ij[187] = 2 +id[188] = "2029-09-16T01:11:01" +ik[188] = 0 +il[188] = 7 +im[188] = 0.2196 +ij[188] = 1 +id[189] = "2029-12-31T09:50:02" +ik[189] = 0 +il[189] = -179 +im[189] = 0.1611 +ij[189] = 1 +id[190] = "2030-01-01T02:52:02" +ik[190] = 1 +il[190] = 175 +im[190] = 0.1322 +ij[190] = 2 +id[191] = "2030-04-23T14:23:03" +ik[191] = 0 +il[191] = -40 +im[191] = 0.2417 +ij[191] = 1 +id[192] = "2030-04-26T11:31:03" +ik[192] = 1 +il[192] = -60 +im[192] = 0.2371 +ij[192] = 2 +id[193] = "2030-08-26T19:40:01" +ik[193] = -1 +il[193] = 37 +im[193] = 0.1271 +ij[193] = 2 +id[194] = "2030-08-29T23:45:01" +ik[194] = 0 +il[194] = 15 +im[194] = 0.0525 +ij[194] = 1 +id[195] = "2030-12-15T17:02:02" +ik[195] = 0 +il[195] = 180 +im[195] = 0.199 +ij[195] = 1 +id[196] = "2030-12-15T21:50:02" +ik[196] = 1 +il[196] = 179 +im[196] = 0.2033 +ij[196] = 2 +id[197] = "2031-04-05T00:28:03" +ik[197] = 0 +il[197] = -25 +im[197] = 0.1374 +ij[197] = 1 +id[198] = "2031-04-08T06:28:03" +ik[198] = 1 +il[198] = -48 +im[198] = 0.0554 +ij[198] = 2 +id[199] = "2031-08-08T20:52:01" +ik[199] = -1 +il[199] = 49 +im[199] = 0.2332 +ij[199] = 2 +id[200] = "2031-08-12T05:31:01" +ik[200] = 0 +il[200] = 26 +im[200] = 0.2305 +ij[200] = 1 +id[201] = "2031-11-29T18:28:02" +ik[201] = -1 +il[201] = -177 +im[201] = 0.0325 +ij[201] = 2 +id[202] = "2031-11-30T01:11:02" +ik[202] = 0 +il[202] = 180 +im[202] = 0.0472 +ij[202] = 1 +id[203] = "2032-03-17T04:33:03" +ik[203] = 0 +il[203] = -14 +im[203] = 0.2306 +ij[203] = 1 +id[204] = "2032-03-20T07:40:03" +ik[204] = 1 +il[204] = -36 +im[204] = 0.2352 +ij[204] = 2 +id[205] = "2032-07-20T14:09:01" +ik[205] = -1 +il[205] = 62 +im[205] = 0.141 +ij[205] = 2 +id[206] = "2032-07-23T15:07:01" +ik[206] = 0 +il[206] = 41 +im[206] = 0.0476 +ij[206] = 1 +id[207] = "2032-11-12T14:23:02" +ik[207] = -1 +il[207] = -173 +im[207] = 0.187 +ij[207] = 2 +id[208] = "2032-11-13T08:52:02" +ik[208] = 0 +il[208] = 179 +im[208] = 0.1632 +ij[208] = 1 +id[209] = "2033-02-28T00:43:03" +ik[209] = 0 +il[209] = -7 +im[209] = 0.0696 +ij[209] = 1 +id[210] = "2033-03-02T17:16:03" +ik[210] = 1 +il[210] = -26 +im[210] = 0.0933 +ij[210] = 2 +id[211] = "2033-07-02T02:52:01" +ik[211] = -1 +il[211] = 75 +im[211] = 0.2323 +ij[211] = 2 +id[212] = "2033-07-04T04:04:01" +ik[212] = 0 +il[212] = 61 +im[212] = 0.2726 +ij[212] = 1 +id[213] = "2033-10-27T07:11:02" +ik[213] = -1 +il[213] = -169 +im[213] = 0.1513 +ij[213] = 2 +id[214] = "2033-10-28T13:55:02" +ik[214] = 0 +il[214] = -180 +im[214] = 0.1924 +ij[214] = 1 +id[215] = "2034-02-11T09:21:03" +ik[215] = 0 +il[215] = -2 +im[215] = 0.2375 +ij[215] = 1 +id[216] = "2034-02-13T12:28:03" +ik[216] = 1 +il[216] = -18 +im[216] = 0.209 +ij[216] = 2 +id[217] = "2034-06-13T14:23:01" +ik[217] = -1 +il[217] = 88 +im[217] = 0.1656 +ij[217] = 2 +id[218] = "2034-06-14T02:52:01" +ik[218] = 0 +il[218] = 85 +im[218] = 0.137 +ij[218] = 1 +id[219] = "2034-10-10T18:14:02" +ik[219] = -1 +il[219] = -165 +im[219] = 0.0846 +ij[219] = 2 +id[220] = "2034-10-12T14:09:02" +ik[220] = 0 +il[220] = -179 +im[220] = 0.0215 +ij[220] = 1 +id[221] = "2035-01-26T03:35:03" +ik[221] = 0 +il[221] = 0 +im[221] = 0.109 +ij[221] = 1 +id[222] = "2035-01-27T16:47:03" +ik[222] = 1 +il[222] = -12 +im[222] = 0.1782 +ij[222] = 2 +id[223] = "2035-05-24T00:14:01" +ik[223] = 0 +il[223] = 115 +im[223] = 0.089 +ij[223] = 1 +id[224] = "2035-05-26T02:52:01" +ik[224] = 1 +il[224] = 101 +im[224] = 0.1967 +ij[224] = 2 +id[225] = "2035-09-23T21:35:02" +ik[225] = -1 +il[225] = -158 +im[225] = 0.2128 +ij[225] = 2 +id[226] = "2035-09-26T06:57:02" +ik[226] = 0 +il[226] = -175 +im[226] = 0.2006 +ij[226] = 1 +id[227] = "2036-01-10T04:33:03" +ik[227] = 0 +il[227] = 1 +im[227] = 0.1507 +ij[227] = 1 +id[228] = "2036-01-11T04:33:03" +ik[228] = 1 +il[228] = -7 +im[228] = 0.1038 +ij[228] = 2 +id[229] = "2036-05-04T07:40:01" +ik[229] = 0 +il[229] = 129 +im[229] = 0.2459 +ij[229] = 1 +id[230] = "2036-05-06T17:02:01" +ik[230] = 1 +il[230] = 113 +im[230] = 0.1704 +ij[230] = 2 +id[231] = "2036-09-05T15:07:02" +ik[231] = -1 +il[231] = -149 +im[231] = 0.0404 +ij[231] = 2 +id[232] = "2036-09-08T13:26:02" +ik[232] = 0 +il[232] = -170 +im[232] = 0.1273 +ij[232] = 1 +id[233] = "2036-12-24T09:50:03" +ik[233] = 0 +il[233] = 0 +im[233] = 0.2207 +ij[233] = 1 +id[234] = "2036-12-24T21:35:03" +ik[234] = 1 +il[234] = -3 +im[234] = 0.2257 +ij[234] = 2 +id[235] = "2037-04-15T07:11:01" +ik[235] = 0 +il[235] = 147 +im[235] = 0.0366 +ij[235] = 1 +id[236] = "2037-04-18T09:35:01" +ik[236] = 1 +il[236] = 125 +im[236] = 0.1596 +ij[236] = 2 +id[237] = "2037-08-18T22:19:02" +ik[237] = -1 +il[237] = -138 +im[237] = 0.2379 +ij[237] = 2 +id[238] = "2037-08-22T05:16:02" +ik[238] = 0 +il[238] = -161 +im[238] = 0.1562 +ij[238] = 1 +id[239] = "2037-12-08T17:45:03" +ik[239] = 0 +il[239] = 3 +im[239] = 2 +ij[239] = 1 +id[240] = "0" +ik[240] = 0 +il[240] = 0.0812 +im[240] = 2 +ij[240] = 1 +id[241] = "2038-03-28T00:57:01" +ik[241] = 0 +il[241] = 160 +im[241] = 0.2436 +ij[241] = 1 +id[242] = "2038-03-31T06:57:01" +ik[242] = 1 +il[242] = 137 +im[242] = 0.1745 +ij[242] = 2 +id[243] = "2038-07-31T19:40:02" +ik[243] = -1 +il[243] = -125 +im[243] = 0.0471 +ij[243] = 2 +id[244] = "2038-08-04T02:52:02" +ik[244] = 0 +il[244] = -148 +im[244] = 0.1571 +ij[244] = 1 +id[245] = "2038-11-22T14:23:03" +ik[245] = -1 +il[245] = 5 +im[245] = 0.1744 +ij[245] = 2 +id[246] = "2038-11-23T01:55:03" +ik[246] = 0 +il[246] = -1 +im[246] = 0.1568 +ij[246] = 1 +id[247] = "2039-03-10T12:14:01" +ik[247] = 0 +il[247] = 169 +im[247] = 0.0349 +ij[247] = 1 +id[248] = "2039-03-13T11:16:01" +ik[248] = 1 +il[248] = 148 +im[248] = 0.1579 +ij[248] = 2 +id[249] = "2039-07-13T10:33:02" +ik[249] = -1 +il[249] = -112 +im[249] = 0.2667 +ij[249] = 2 +id[250] = "2039-07-16T03:21:02" +ik[250] = 0 +il[250] = -131 +im[250] = 0.2272 +ij[250] = 1 +id[251] = "2039-11-06T09:06:03" +ik[251] = -1 +il[251] = 9 +im[251] = 0.193 +ij[251] = 2 +id[252] = "2039-11-07T08:38:03" +ik[252] = 0 +il[252] = -1 +im[252] = 0.2147 +ij[252] = 1 +id[253] = "2040-02-21T13:55:01" +ik[253] = 0 +il[253] = 175 +im[253] = 0.2291 +ij[253] = 1 +id[254] = "2040-02-24T00:57:01" +ik[254] = 1 +il[254] = 158 +im[254] = 0.1577 +ij[254] = 2 +id[255] = "2040-06-23T22:18:02" +ik[255] = -1 +il[255] = -99 +im[255] = 0.0683 +ij[255] = 2 +id[256] = "2040-06-25T08:52:02" +ik[256] = 0 +il[256] = -109 +im[256] = 0.0446 +ij[256] = 1 +id[257] = "2040-10-19T23:45:03" +ik[257] = -1 +il[257] = 13 +im[257] = 0.0276 +ij[257] = 2 +id[258] = "2040-10-21T11:59:03" +ik[258] = 0 +il[258] = 0 +im[258] = 0.0617 +ij[258] = 1 +id[259] = "2041-02-04T03:07:01" +ik[259] = 0 +il[259] = 179 +im[259] = 0.141 +ij[259] = 1 +id[260] = "2041-02-05T00:14:01" +ik[260] = 1 +il[260] = 172 +im[260] = 0.1775 +ij[260] = 2 +id[261] = "2041-06-05T05:31:02" +ik[261] = 0 +il[261] = -85 +im[261] = 0.2679 +ij[261] = 1 +id[262] = "2041-06-05T10:18:02" +ik[262] = 1 +il[262] = -87 +im[262] = 0.2715 +ij[262] = 2 +id[263] = "2041-10-03T07:54:03" +ik[263] = -1 +il[263] = 18 +im[263] = 0.2202 +ij[263] = 2 +id[264] = "2041-10-05T09:21:03" +ik[264] = 0 +il[264] = 3 +im[264] = 0.1857 +ij[264] = 1 +id[265] = "2042-01-19T00:28:01" +ik[265] = 0 +il[265] = -180 +im[265] = 0.135 +ij[265] = 1 +id[266] = "2042-01-20T07:54:01" +ik[266] = 1 +il[266] = 176 +im[266] = 0.0717 +ij[266] = 2 +id[267] = "2042-05-16T06:14:02" +ik[267] = 0 +il[267] = -63 +im[267] = 0.1755 +ij[267] = 1 +id[268] = "2042-05-17T23:16:02" +ik[268] = 1 +il[268] = -74 +im[268] = 0.0781 +ij[268] = 2 +id[269] = "2042-09-16T07:11:03" +ik[269] = -1 +il[269] = 26 +im[269] = 0.0693 +ij[269] = 2 +id[270] = "2042-09-18T22:19:03" +ik[270] = 0 +il[270] = 7 +im[270] = 0.1832 +ij[270] = 1 +id[271] = "2043-01-03T03:35:01" +ik[271] = 0 +il[271] = -179 +im[271] = 0.229 +ij[271] = 1 +id[272] = "2043-01-03T22:18:01" +ik[272] = 1 +il[272] = -180 +im[272] = 0.2276 +ij[272] = 2 +id[273] = "2043-04-26T19:55:02" +ik[273] = 0 +il[273] = -43 +im[273] = 0.1266 +ij[273] = 1 +id[274] = "2043-04-29T14:09:02" +ik[274] = 1 +il[274] = -62 +im[274] = 0.2408 +ij[274] = 2 +id[275] = "2043-08-29T20:23:03" +ik[275] = -1 +il[275] = 35 +im[275] = 0.2094 +ij[275] = 2 +id[276] = "2043-09-01T23:02:03" +ik[276] = 0 +il[276] = 13 +im[276] = 0.082 +ij[276] = 1 +id[277] = "2043-12-18T10:19:01" +ik[277] = 0 +il[277] = 180 +im[277] = 0.102 +ij[277] = 1 +id[278] = "2043-12-18T17:02:01" +ik[278] = 1 +il[278] = -176 +im[278] = 0.1158 +ij[278] = 2 +id[279] = "2044-04-07T03:07:02" +ik[279] = 0 +il[279] = -27 +im[279] = 0.2198 +ij[279] = 1 +id[280] = "2044-04-10T08:38:02" +ik[280] = 1 +il[280] = -50 +im[280] = 0.0796 +ij[280] = 2 +id[281] = "2044-08-10T23:02:03" +ik[281] = -1 +il[281] = 47 +im[281] = 0.0784 +ij[281] = 2 +id[282] = "2044-08-14T07:40:03" +ik[282] = 0 +il[282] = 24 +im[282] = 0.214 +ij[282] = 1 +id[283] = "2044-12-01T13:40:01" +ik[283] = -1 +il[283] = -172 +im[283] = 0.1545 +ij[283] = 2 +id[284] = "2044-12-01T18:28:01" +ik[284] = 0 +il[284] = 180 +im[284] = 0.1462 +ij[284] = 1 +id[285] = "2045-03-20T04:33:02" +ik[285] = 0 +il[285] = -16 +im[285] = 0.0733 +ij[285] = 1 +id[286] = "2045-03-23T08:38:02" +ik[286] = 1 +il[286] = -38 +im[286] = 0.2133 +ij[286] = 2 +id[287] = "2045-07-23T17:16:03" +ik[287] = -1 +il[287] = 60 +im[287] = 0.2325 +ij[287] = 2 +id[288] = "2045-07-26T20:23:03" +ik[288] = 0 +il[288] = 39 +im[288] = 0.1078 +ij[288] = 1 +id[289] = "2045-11-15T09:50:01" +ik[289] = -1 +il[289] = -168 +im[289] = 0.2204 +ij[289] = 2 +id[290] = "2045-11-16T02:23:01" +ik[290] = 0 +il[290] = 179 +im[290] = 0.2272 +ij[290] = 1 +id[291] = "2046-03-02T22:33:02" +ik[291] = 0 +il[291] = -8 +im[291] = 0.1931 +ij[291] = 1 +id[292] = "2046-03-05T16:47:02" +ik[292] = 1 +il[292] = -28 +im[292] = 0.0719 +ij[292] = 2 +id[293] = "2046-07-05T06:14:03" +ik[293] = -1 +il[293] = 73 +im[293] = 0.0549 +ij[293] = 2 +id[294] = "2046-07-07T11:59:03" +ik[294] = 0 +il[294] = 58 +im[294] = 0.1759 +ij[294] = 1 +id[295] = "2046-10-30T03:06:01" +ik[295] = -1 +il[295] = -164 +im[295] = 0.0272 +ij[295] = 2 +id[296] = "2046-10-31T07:55:01" +ik[296] = 0 +il[296] = -180 +im[296] = 0.0918 +ij[296] = 1 +id[297] = "2047-02-14T05:31:02" +ik[297] = 0 +il[297] = -3 +im[297] = 0.1628 +ij[297] = 1 +id[298] = "2047-02-16T10:33:02" +ik[298] = 1 +il[298] = -19 +im[298] = 0.2192 +ij[298] = 2 +id[299] = "2047-06-16T17:59:03" +ik[299] = -1 +il[299] = 86 +im[299] = 0.2722 +ij[299] = 2 +id[300] = "2047-06-17T12:14:03" +ik[300] = 0 +il[300] = 81 +im[300] = 0.2586 +ij[300] = 1 +id[301] = "2047-10-13T15:06:01" +ik[301] = -1 +il[301] = -160 +im[301] = 0.2175 +ij[301] = 2 +id[302] = "2047-10-15T09:07:01" +ik[302] = 0 +il[302] = -179 +im[302] = 0.1685 +ij[302] = 1 +id[303] = "2048-01-28T22:19:02" +ik[303] = 0 +il[303] = 0 +im[303] = 0.0949 +ij[303] = 1 +id[304] = "2048-01-30T13:40:02" +ik[304] = 1 +il[304] = -12 +im[304] = 0.0079 +ij[304] = 2 +id[305] = "2048-05-27T09:07:03" +ik[305] = 0 +il[305] = 105 +im[305] = 0.0323 +ij[305] = 1 +id[306] = "2048-05-28T06:14:03" +ik[306] = 1 +il[306] = 99 +im[306] = 0.0359 +ij[306] = 2 +id[307] = "2048-09-25T19:54:01" +ik[307] = -1 +il[307] = -156 +im[307] = 0.1453 +ij[307] = 2 +id[308] = "2048-09-28T03:07:01" +ik[308] = 0 +il[308] = -176 +im[308] = 0.2195 +ij[308] = 1 +id[309] = "2049-01-11T22:33:02" +ik[309] = 0 +il[309] = 0 +im[309] = 0.2211 +ij[309] = 1 +id[310] = "2049-01-13T00:28:02" +ik[310] = 1 +il[310] = -7 +im[310] = 0.2053 +ij[310] = 2 +id[311] = "2049-05-07T14:23:03" +ik[311] = 0 +il[311] = 126 +im[311] = 0.2475 +ij[311] = 1 +id[312] = "2049-05-09T19:54:03" +ik[312] = 1 +il[312] = 111 +im[312] = 0.2773 +ij[312] = 2 +id[313] = "2049-09-08T14:52:01" +ik[313] = -1 +il[313] = -150 +im[313] = 0.1635 +ij[313] = 2 +id[314] = "2049-09-11T11:16:01" +ik[314] = 0 +il[314] = -171 +im[314] = 0.0128 +ij[314] = 1 +id[315] = "2049-12-27T03:35:02" +ik[315] = 0 +il[315] = 0 +im[315] = 0.1125 +ij[315] = 1 +id[316] = "2049-12-27T17:02:02" +ik[316] = 1 +il[316] = -3 +im[316] = 0.1386 +ij[316] = 2 +id[317] = "2050-04-18T11:16:03" +ik[317] = 0 +il[317] = 144 +im[317] = 0.1564 +ij[317] = 1 +id[318] = "2050-04-21T12:14:03" +ik[318] = 1 +il[318] = 123 +im[318] = 0.0277 +ij[318] = 2 +id[319] = "2050-08-21T23:30:01" +ik[319] = -1 +il[319] = -140 +im[319] = 0.1723 +ij[319] = 2 +id[320] = "2050-08-25T05:45:01" +ik[320] = 0 +il[320] = -163 +im[320] = 0.2397 +ij[320] = 1 +id[321] = "2050-12-11T11:02:02" +ik[321] = 0 +il[321] = 0 +im[321] = 0.1221 +ij[321] = 1 +id[322] = "2050-12-11T12:42:02" +ik[322] = 1 +il[322] = 1 +im[322] = 0.1189 +ij[322] = 2 +id[323] = "2051-03-31T02:23:03" +ik[323] = 0 +il[323] = 158 +im[323] = 0.1682 +ij[323] = 1 +id[324] = "2051-04-03T08:38:03" +ik[324] = 1 +il[324] = 136 +im[324] = 0.2511 +ij[324] = 2 +id[325] = "2051-08-03T22:18:01" +ik[325] = -1 +il[325] = -127 +im[325] = 0.1539 +ij[325] = 2 +id[326] = "2051-08-07T06:14:01" +ik[326] = 0 +il[326] = -150 +im[326] = 0.0325 +ij[326] = 1 +id[327] = "2051-11-25T09:21:02" +ik[327] = -1 +il[327] = 5 +im[327] = 0.2231 +ij[327] = 2 +id[328] = "2051-11-25T19:11:02" +ik[328] = 0 +il[328] = 0 +im[328] = 0.2226 +ij[328] = 1 +id[329] = "2052-03-12T11:16:03" +ik[329] = 0 +il[329] = 168 +im[329] = 0.1341 +ij[329] = 1 +id[330] = "2052-03-15T11:45:03" +ik[330] = 1 +il[330] = 147 +im[330] = 0.0307 +ij[330] = 2 +id[331] = "2052-07-15T13:54:01" +ik[331] = -1 +il[331] = -114 +im[331] = 0.1547 +ij[331] = 2 +id[332] = "2052-07-18T09:50:01" +ik[332] = 0 +il[332] = -134 +im[332] = 0.2418 +ij[332] = 1 +id[333] = "2052-11-08T04:47:02" +ik[333] = -1 +il[333] = 9 +im[333] = 0.06 +ij[333] = 2 +id[334] = "2052-11-09T02:23:02" +ik[334] = 0 +il[334] = -1 +im[334] = 0.1069 +ij[334] = 1 +id[335] = "2053-02-23T11:02:03" +ik[335] = 0 +il[335] = 175 +im[335] = 0.1931 +ij[335] = 1 +id[336] = "2053-02-25T23:59:03" +ik[336] = 1 +il[336] = 156 +im[336] = 0.223 +ij[336] = 2 +id[337] = "2053-06-27T01:54:01" +ik[337] = -1 +il[337] = -101 +im[337] = 0.2006 +ij[337] = 2 +id[338] = "2053-06-28T17:59:01" +ik[338] = 0 +il[338] = -112 +im[338] = 0.1209 +ij[338] = 1 +id[339] = "2053-10-22T20:09:02" +ik[339] = -1 +il[339] = 13 +im[339] = 0.1939 +ij[339] = 2 +id[340] = "2053-10-24T06:14:02" +ik[340] = 0 +il[340] = 0 +im[340] = 0.1403 +ij[340] = 1 +id[341] = "2054-02-06T22:47:03" +ik[341] = 0 +il[341] = 178 +im[341] = 0.037 +ij[341] = 1 +id[342] = "2054-02-08T21:50:03" +ik[342] = 1 +il[342] = 164 +im[342] = 0.0701 +ij[342] = 2 +id[343] = "2054-06-08T13:40:01" +ik[343] = -1 +il[343] = -88 +im[343] = 0.1377 +ij[343] = 2 +id[344] = "2054-06-08T15:07:01" +ik[344] = 0 +il[344] = -89 +im[344] = 0.1411 +ij[344] = 1 +id[345] = "2054-10-06T05:16:02" +ik[345] = -1 +il[345] = 17 +im[345] = 0.1939 +ij[345] = 2 +id[346] = "2054-10-08T04:47:02" +ik[346] = 0 +il[346] = 2 +im[346] = 0.2291 +ij[346] = 1 +id[347] = "2055-01-21T18:57:03" +ik[347] = 0 +il[347] = -180 +im[347] = 0.206 +ij[347] = 1 +id[348] = "2055-01-23T04:33:03" +ik[348] = 1 +il[348] = 170 +im[348] = 0.1698 +ij[348] = 2 +id[349] = "2055-05-19T14:09:01" +ik[349] = 0 +il[349] = -66 +im[349] = 0.2744 +ij[349] = 1 +id[350] = "2055-05-21T02:23:01" +ik[350] = 1 +il[350] = -76 +im[350] = 0.2427 +ij[350] = 2 +id[351] = "2055-09-19T05:59:02" +ik[351] = -1 +il[351] = 24 +im[351] = 0.1128 +ij[351] = 2 +id[352] = "2055-09-21T19:11:02" +ik[352] = 0 +il[352] = 6 +im[352] = 0.0463 +ij[352] = 1 +id[353] = "2056-01-05T21:35:03" +ik[353] = 0 +il[353] = -179 +im[353] = 0.1286 +ij[353] = 1 +id[354] = "2056-01-06T17:59:03" +ik[354] = 1 +il[354] = 174 +im[354] = 0.163 +ij[354] = 2 +id[355] = "2056-04-29T01:26:01" +ik[355] = 0 +il[355] = -46 +im[355] = 0.049 +ij[355] = 1 +id[356] = "2056-05-01T17:02:01" +ik[356] = 1 +il[356] = -64 +im[356] = 0.1306 +ij[356] = 2 +id[357] = "2056-08-31T20:38:02" +ik[357] = -1 +il[357] = 34 +im[357] = 0.2321 +ij[357] = 2 +id[358] = "2056-09-03T21:50:02" +ik[358] = 0 +il[358] = 12 +im[358] = 0.2278 +ij[358] = 1 +id[359] = "2056-12-20T03:50:03" +ik[359] = 0 +il[359] = 180 +im[359] = 0.0821 +ij[359] = 1 +id[360] = "2056-12-20T12:14:03" +ik[360] = 1 +il[360] = 178 +im[360] = 0.0645 +ij[360] = 2 +id[361] = "2057-04-10T06:14:01" +ik[361] = 0 +il[361] = -29 +im[361] = 0.2474 +ij[361] = 1 +id[362] = "2057-04-13T10:47:01" +ik[362] = 1 +il[362] = -51 +im[362] = 0.2456 +ij[362] = 2 +id[363] = "2057-08-14T00:57:02" +ik[363] = -1 +il[363] = 45 +im[363] = 0.0681 +ij[363] = 2 +id[364] = "2057-08-17T09:21:02" +ik[364] = 0 +il[364] = 22 +im[364] = 0.1398 +ij[364] = 1 +id[365] = "2057-12-04T08:38:03" +ik[365] = -1 +il[365] = -178 +im[365] = 0.2105 +ij[365] = 2 +id[366] = "2057-12-04T11:45:03" +ik[366] = 0 +il[366] = 180 +im[366] = 0.209 +ij[366] = 1 +id[367] = "2058-03-23T05:02:01" +ik[367] = 0 +il[367] = -17 +im[367] = 0.0709 +ij[367] = 1 +id[368] = "2058-03-26T09:50:01" +ik[368] = 1 +il[368] = -40 +im[368] = 0.1311 +ij[368] = 2 +id[369] = "2058-07-26T20:09:02" +ik[369] = -1 +il[369] = 58 +im[369] = 0.2319 +ij[369] = 2 +id[370] = "2058-07-30T01:11:02" +ik[370] = 0 +il[370] = 36 +im[370] = 0.2336 +ij[370] = 1 +id[371] = "2058-11-18T05:02:03" +ik[371] = -1 +il[371] = -174 +im[371] = 0.0897 +ij[371] = 2 +id[372] = "2058-11-18T19:55:03" +ik[372] = 0 +il[372] = 179 +im[372] = 0.1198 +ij[372] = 1 +id[373] = "2059-03-05T20:38:01" +ik[373] = 0 +il[373] = -9 +im[373] = 0.2254 +ij[373] = 1 +id[374] = "2059-03-08T16:47:01" +ik[374] = 1 +il[374] = -29 +im[374] = 0.2136 +ij[374] = 2 +id[375] = "2059-07-08T09:50:02" +ik[375] = -1 +il[375] = 71 +im[375] = 0.0961 +ij[375] = 2 +id[376] = "2059-07-10T19:55:02" +ik[376] = 0 +il[376] = 55 +im[376] = 0.0707 +ij[376] = 1 +id[377] = "2059-11-01T23:02:03" +ik[377] = -1 +il[377] = -170 +im[377] = 0.1505 +ij[377] = 2 +id[378] = "2059-11-03T01:55:03" +ik[378] = 0 +il[378] = 179 +im[378] = 0.0999 +ij[378] = 1 +id[379] = "2060-02-17T01:55:01" +ik[379] = 0 +il[379] = -3 +im[379] = 0.0458 +ij[379] = 1 +id[380] = "2060-02-19T09:06:01" +ik[380] = 1 +il[380] = -20 +im[380] = 0.1497 +ij[380] = 2 +id[381] = "2060-06-18T21:35:02" +ik[381] = -1 +il[381] = 84 +im[381] = 0.2174 +ij[381] = 2 +id[382] = "2060-06-19T21:35:02" +ik[382] = 0 +il[382] = 78 +im[382] = 0.2441 +ij[382] = 1 +id[383] = "2060-10-15T11:59:03" +ik[383] = -1 +il[383] = -166 +im[383] = 0.2094 +ij[383] = 2 +id[384] = "2060-10-17T03:50:03" +ik[384] = 0 +il[384] = -179 +im[384] = 0.2191 +ij[384] = 1 +id[385] = "2061-01-30T17:31:01" +ik[385] = 0 +il[385] = -1 +im[385] = 0.1937 +ij[385] = 1 +id[386] = "2061-02-01T10:47:01" +ik[386] = 1 +il[386] = -13 +im[386] = 0.1346 +ij[386] = 2 +id[387] = "2061-05-30T18:14:02" +ik[387] = 0 +il[387] = 101 +im[387] = 0.175 +ij[387] = 1 +id[388] = "2061-05-31T09:35:02" +ik[388] = 1 +il[388] = 97 +im[388] = 0.144 +ij[388] = 2 +id[389] = "2061-09-28T17:45:03" +ik[389] = -1 +il[389] = -160 +im[389] = 0.0518 +ij[389] = 2 +id[390] = "2061-09-30T23:16:03" +ik[390] = 0 +il[390] = -177 +im[390] = 0.0768 +ij[390] = 1 +id[391] = "2062-01-14T16:47:01" +ik[391] = 0 +il[391] = 1 +im[391] = 0.1581 +ij[391] = 1 +id[392] = "2062-01-15T20:38:01" +ik[392] = 1 +il[392] = -8 +im[392] = 0.1948 +ij[392] = 2 +id[393] = "2062-05-10T21:35:02" +ik[393] = 0 +il[393] = 123 +im[393] = 0.1045 +ij[393] = 1 +id[394] = "2062-05-12T23:02:02" +ik[394] = 1 +il[394] = 109 +im[394] = 0.2097 +ij[394] = 2 +id[395] = "2062-09-11T14:23:03" +ik[395] = -1 +il[395] = -152 +im[395] = 0.2418 +ij[395] = 2 +id[396] = "2062-09-14T09:07:03" +ik[396] = 0 +il[396] = -172 +im[396] = 0.1827 +ij[396] = 1 +id[397] = "2062-12-29T21:07:01" +ik[397] = 0 +il[397] = 1 +im[397] = 0.0474 +ij[397] = 1 +id[398] = "2062-12-30T12:14:01" +ik[398] = 1 +il[398] = -4 +im[398] = 0.0294 +ij[398] = 2 +id[399] = "2063-04-21T15:50:02" +ik[399] = 0 +il[399] = 142 +im[399] = 0.2648 +ij[399] = 1 +id[400] = "2063-04-24T14:52:02" +ik[400] = 1 +il[400] = 122 +im[400] = 0.1787 +ij[400] = 2 +id[401] = "2063-08-25T00:42:03" +ik[401] = -1 +il[401] = -141 +im[401] = 0.0341 +ij[401] = 2 +id[402] = "2063-08-28T05:45:03" +ik[402] = 0 +il[402] = -164 +im[402] = 0.193 +ij[402] = 1 +id[403] = "2063-12-14T04:19:01" +ik[403] = 0 +il[403] = 0 +im[403] = 0.2002 +ij[403] = 1 +id[404] = "2063-12-14T07:54:01" +ik[404] = 1 +il[404] = 0 +im[404] = 0.1976 +ij[404] = 2 +id[405] = "2064-04-02T04:19:02" +ik[405] = 0 +il[405] = 156 +im[405] = 0.027 +ij[405] = 1 +id[406] = "2064-04-05T10:18:02" +ik[406] = 1 +il[406] = 134 +im[406] = 0.2033 +ij[406] = 2 +id[407] = "2064-08-06T00:42:03" +ik[407] = -1 +il[407] = -129 +im[407] = 0.256 +ij[407] = 2 +id[408] = "2064-08-09T09:21:03" +ik[408] = 0 +il[408] = -153 +im[408] = 0.1693 +ij[408] = 1 +id[409] = "2064-11-27T04:33:01" +ik[409] = -1 +il[409] = 4 +im[409] = 0.1268 +ij[409] = 2 +id[410] = "2064-11-27T12:43:01" +ik[410] = 0 +il[410] = 0 +im[410] = 0.1409 +ij[410] = 1 +id[411] = "2065-03-15T10:33:02" +ik[411] = 0 +il[411] = 167 +im[411] = 0.2462 +ij[411] = 1 +id[412] = "2065-03-18T12:28:02" +ik[412] = 1 +il[412] = 145 +im[412] = 0.1703 +ij[412] = 2 +id[413] = "2065-07-18T17:02:03" +ik[413] = -1 +il[413] = -116 +im[413] = 0.0361 +ij[413] = 2 +id[414] = "2065-07-21T16:04:03" +ik[414] = 0 +il[414] = -136 +im[414] = 0.1924 +ij[414] = 1 +id[415] = "2065-11-10T00:14:01" +ik[415] = -1 +il[415] = 13 +im[415] = 0.1384 +ij[415] = 2 +id[416] = "2065-11-11T20:09:01" +ik[416] = 0 +il[416] = -1 +im[416] = 0.0548 +ij[416] = 1 +id[417] = "2066-02-26T08:23:02" +ik[417] = 0 +il[417] = 174 +im[417] = 0.0974 +ij[417] = 1 +id[418] = "2066-02-28T23:16:02" +ik[418] = 1 +il[418] = 155 +im[418] = 0.2115 +ij[418] = 2 +id[419] = "2066-06-30T05:30:03" +ik[419] = -1 +il[419] = -103 +im[419] = 0.2595 +ij[419] = 2 +id[420] = "2066-07-02T02:38:03" +ik[420] = 0 +il[420] = -116 +im[420] = 0.2449 +ij[420] = 1 +id[421] = "2066-10-25T16:18:01" +ik[421] = -1 +il[421] = 17 +im[421] = 0.2115 +ij[421] = 2 +id[422] = "2066-10-27T00:28:01" +ik[422] = 0 +il[422] = 0 +im[422] = 0.2058 +ij[422] = 1 +id[423] = "2067-02-09T18:28:02" +ik[423] = 0 +il[423] = 178 +im[423] = 0.1826 +ij[423] = 1 +id[424] = "2067-02-11T19:40:02" +ik[424] = 1 +il[424] = 163 +im[424] = 0.0907 +ij[424] = 2 +id[425] = "2067-06-11T17:02:03" +ik[425] = -1 +il[425] = -90 +im[425] = 0.0203 +ij[425] = 2 +id[426] = "2067-06-12T00:28:03" +ik[426] = 0 +il[426] = -92 +im[426] = 0.0153 +ij[426] = 1 +id[427] = "2067-10-09T02:38:01" +ik[427] = -1 +il[427] = 21 +im[427] = 0.0184 +ij[427] = 2 +id[428] = "2067-10-10T23:59:01" +ik[428] = 0 +il[428] = 2 +im[428] = 0.1148 +ij[428] = 1 +id[429] = "2068-01-24T13:40:02" +ik[429] = 0 +il[429] = -180 +im[429] = 0.1929 +ij[429] = 1 +id[430] = "2068-01-26T01:11:02" +ik[430] = 1 +il[430] = 169 +im[430] = 0.2245 +ij[430] = 2 +id[431] = "2068-05-21T22:33:03" +ik[431] = 0 +il[431] = -69 +im[431] = 0.2208 +ij[431] = 1 +id[432] = "2068-05-23T05:45:03" +ik[432] = 1 +il[432] = -78 +im[432] = 0.2521 +ij[432] = 2 +id[433] = "2068-09-21T04:47:01" +ik[433] = -1 +il[433] = 25 +im[433] = 0.2097 +ij[433] = 2 +id[434] = "2068-09-23T15:50:01" +ik[434] = 0 +il[434] = 5 +im[434] = 0.1199 +ij[434] = 1 +id[435] = "2069-01-07T15:21:02" +ik[435] = 0 +il[435] = -179 +im[435] = 0.006 +ij[435] = 1 +id[436] = "2069-01-08T13:40:02" +ik[436] = 1 +il[436] = 174 +im[436] = 0.0538 +ij[436] = 2 +id[437] = "2069-05-02T07:40:03" +ik[437] = 0 +il[437] = -48 +im[437] = 0.191 +ij[437] = 1 +id[438] = "2069-05-04T19:54:03" +ik[438] = 1 +il[438] = -65 +im[438] = 0.0617 +ij[438] = 2 +id[439] = "2069-09-03T20:52:01" +ik[439] = -1 +il[439] = 32 +im[439] = 0.1054 +ij[439] = 2 +id[440] = "2069-09-06T20:38:01" +ik[440] = 0 +il[440] = 11 +im[440] = 0.214 +ij[440] = 1 +id[441] = "2069-12-22T21:07:02" +ik[441] = 0 +il[441] = 180 +im[441] = 0.1973 +ij[441] = 1 +id[442] = "2069-12-23T07:26:02" +ik[442] = 1 +il[442] = 178 +im[442] = 0.1872 +ij[442] = 2 +id[443] = "2070-04-13T09:35:03" +ik[443] = 0 +il[443] = -31 +im[443] = 0.1279 +ij[443] = 1 +id[444] = "2070-04-16T13:11:03" +ik[444] = 1 +il[444] = -53 +im[444] = 0.2435 +ij[444] = 2 +id[445] = "2070-08-17T02:38:01" +ik[445] = -1 +il[445] = 44 +im[445] = 0.2186 +ij[445] = 2 +id[446] = "2070-08-20T10:33:01" +ik[446] = 0 +il[446] = 20 +im[446] = 0.068 +ij[446] = 1 +id[447] = "2070-12-07T03:35:02" +ik[447] = -1 +il[447] = -178 +im[447] = 0.1697 +ij[447] = 2 +id[448] = "2070-12-07T05:16:02" +ik[448] = 0 +il[448] = 180 +im[448] = 0.1721 +ij[448] = 1 +id[449] = "2071-03-26T05:45:03" +ik[449] = 0 +il[449] = -19 +im[449] = 0.2259 +ij[449] = 1 +id[450] = "2071-03-29T11:16:03" +ik[450] = 1 +il[450] = -41 +im[450] = 0.0851 +ij[450] = 2 +id[451] = "2071-07-29T23:02:01" +ik[451] = -1 +il[451] = 56 +im[451] = 0.1385 +ij[451] = 2 +id[452] = "2071-08-02T05:31:01" +ik[452] = 0 +il[452] = 34 +im[452] = 0.2465 +ij[452] = 1 +id[453] = "2071-11-20T00:14:02" +ik[453] = -1 +il[453] = -169 +im[453] = 0.0934 +ij[453] = 2 +id[454] = "2071-11-21T13:11:02" +ik[454] = 0 +il[454] = 179 +im[454] = 0.0188 +ij[454] = 1 +id[455] = "2072-03-07T18:57:03" +ik[455] = 0 +il[455] = -10 +im[455] = 0.1569 +ij[455] = 1 +id[456] = "2072-03-10T16:47:03" +ik[456] = 1 +il[456] = -30 +im[456] = 0.2407 +ij[456] = 2 +id[457] = "2072-07-10T13:11:01" +ik[457] = -1 +il[457] = 69 +im[457] = 0.2489 +ij[457] = 2 +id[458] = "2072-07-13T03:07:01" +ik[458] = 0 +il[458] = 52 +im[458] = 0.1459 +ij[458] = 1 +id[459] = "2072-11-03T18:42:02" +ik[459] = -1 +il[459] = -165 +im[459] = 0.2117 +ij[459] = 2 +id[460] = "2072-11-04T19:40:02" +ik[460] = 0 +il[460] = 179 +im[460] = 0.1999 +ij[460] = 1 +id[461] = "2073-02-18T22:19:03" +ik[461] = 0 +il[461] = -4 +im[461] = 0.1589 +ij[461] = 1 +id[462] = "2073-02-21T07:40:03" +ik[462] = 1 +il[462] = -21 +im[462] = 0.0344 +ij[462] = 2 +id[463] = "2073-06-22T00:57:01" +ik[463] = -1 +il[463] = 83 +im[463] = 0.1157 +ij[463] = 2 +id[464] = "2073-06-23T06:57:01" +ik[464] = 0 +il[464] = 74 +im[464] = 0.1825 +ij[464] = 1 +id[465] = "2073-10-18T08:38:02" +ik[465] = -1 +il[465] = -161 +im[465] = 0.089 +ij[465] = 2 +id[466] = "2073-10-19T22:19:02" +ik[466] = 0 +il[466] = -179 +im[466] = 0.1556 +ij[466] = 1 +id[467] = "2074-02-02T12:43:03" +ik[467] = 0 +il[467] = -1 +im[467] = 0.2246 +ij[467] = 1 +id[468] = "2074-02-04T08:09:03" +ik[468] = 1 +il[468] = -14 +im[468] = 0.2355 +ij[468] = 2 +id[469] = "2074-06-03T03:21:01" +ik[469] = 0 +il[469] = 98 +im[469] = 0.2626 +ij[469] = 1 +id[470] = "2074-06-03T12:57:01" +ik[470] = 1 +il[470] = 95 +im[470] = 0.2579 +ij[470] = 2 +id[471] = "2074-10-01T15:35:02" +ik[471] = -1 +il[471] = -157 +im[471] = 0.1608 +ij[471] = 2 +id[472] = "2074-10-03T18:57:02" +ik[472] = 0 +il[472] = -177 +im[472] = 0.0646 +ij[472] = 1 +id[473] = "2075-01-17T11:02:03" +ik[473] = 0 +il[473] = 1 +im[473] = 0.0367 +ij[473] = 1 +id[474] = "2075-01-18T16:47:03" +ik[474] = 1 +il[474] = -9 +im[474] = 0.1043 +ij[474] = 2 +id[475] = "2075-05-14T05:02:01" +ik[475] = 0 +il[475] = 120 +im[475] = 0.0462 +ij[475] = 1 +id[476] = "2075-05-16T02:09:01" +ik[476] = 1 +il[476] = 107 +im[476] = 0.0742 +ij[476] = 2 +id[477] = "2075-09-14T13:40:02" +ik[477] = -1 +il[477] = -153 +im[477] = 0.1635 +ij[477] = 2 +id[478] = "2075-09-17T06:28:02" +ik[478] = 0 +il[478] = -173 +im[478] = 0.2197 +ij[478] = 1 +id[479] = "2076-01-01T14:52:03" +ik[479] = 0 +il[479] = 1 +im[479] = 0.1954 +ij[479] = 1 +id[480] = "2076-01-02T07:54:03" +ik[480] = 1 +il[480] = -5 +im[480] = 0.1736 +ij[480] = 2 +id[481] = "2076-04-23T20:52:01" +ik[481] = 0 +il[481] = 139 +im[481] = 0.2125 +ij[481] = 1 +id[482] = "2076-04-26T17:30:01" +ik[482] = 1 +il[482] = 120 +im[482] = 0.2463 +ij[482] = 2 +id[483] = "2076-08-27T01:26:02" +ik[483] = -1 +il[483] = -143 +im[483] = 0.1407 +ij[483] = 2 +id[484] = "2076-08-30T05:16:02" +ik[484] = 0 +il[484] = -165 +im[484] = 0.0499 +ij[484] = 1 +id[485] = "2076-12-15T21:50:03" +ik[485] = 0 +il[485] = 0 +im[485] = 0.2006 +ij[485] = 1 +id[486] = "2076-12-16T02:52:03" +ik[486] = 1 +il[486] = -1 +im[486] = 0.2057 +ij[486] = 2 +id[487] = "2077-04-05T06:28:01" +ik[487] = 0 +il[487] = 155 +im[487] = 0.1521 +ij[487] = 1 +id[488] = "2077-04-08T12:28:01" +ik[488] = 1 +il[488] = 132 +im[488] = 0.0402 +ij[488] = 2 +id[489] = "2077-08-09T02:52:02" +ik[489] = -1 +il[489] = -131 +im[489] = 0.2022 +ij[489] = 2 +id[490] = "2077-08-12T11:45:02" +ik[490] = 0 +il[490] = -155 +im[490] = 0.2277 +ij[490] = 1 +id[491] = "2077-11-29T23:30:03" +ik[491] = -1 +il[491] = 3 +im[491] = 0.007 +ij[491] = 2 +id[492] = "2077-11-30T05:59:03" +ik[492] = 0 +il[492] = 0 +im[492] = 0.018 +ij[492] = 1 +id[493] = "2078-03-18T10:19:01" +ik[493] = 0 +il[493] = 166 +im[493] = 0.2015 +ij[493] = 1 +id[494] = "2078-03-21T13:26:01" +ik[494] = 1 +il[494] = 144 +im[494] = 0.2315 +ij[494] = 2 +id[495] = "2078-07-21T20:23:02" +ik[495] = -1 +il[495] = -118 +im[495] = 0.1761 +ij[495] = 2 +id[496] = "2078-07-24T21:35:02" +ik[496] = 0 +il[496] = -139 +im[496] = 0.0428 +ij[496] = 1 +id[497] = "2078-11-13T19:25:03" +ik[497] = -1 +il[497] = 7 +im[497] = 0.2117 +ij[497] = 2 +id[498] = "2078-11-14T13:40:03" +ik[498] = 0 +il[498] = -1 +im[498] = 0.197 +ij[498] = 1 +id[499] = "2079-03-01T05:59:01" +ik[499] = 0 +il[499] = 173 +im[499] = 0.1175 +ij[499] = 1 +id[500] = "2079-03-03T22:47:01" +ik[500] = 1 +il[500] = 154 +im[500] = 0.0502 +ij[500] = 2 +id[501] = "2079-07-03T09:06:02" +ik[501] = -1 +il[501] = -105 +im[501] = 0.2124 +ij[501] = 2 +id[502] = "2079-07-05T10:47:02" +ik[502] = 0 +il[502] = -119 +im[502] = 0.263 +ij[502] = 1 +id[503] = "2079-10-28T12:13:03" +ik[503] = -1 +il[503] = 11 +im[503] = 0.1465 +ij[503] = 2 +id[504] = "2079-10-29T18:43:03" +ik[504] = 0 +il[504] = 0 +im[504] = 0.1917 +ij[504] = 1 +id[505] = "2080-02-12T14:23:01" +ik[505] = 0 +il[505] = 178 +im[505] = 0.234 +ij[505] = 1 +id[506] = "2080-02-14T17:45:01" +ik[506] = 1 +il[506] = 162 +im[506] = 0.2142 +ij[506] = 2 +id[507] = "2080-06-13T20:37:02" +ik[507] = -1 +il[507] = -92 +im[507] = 0.2139 +ij[507] = 2 +id[508] = "2080-06-14T09:50:02" +ik[508] = 0 +il[508] = -96 +im[508] = 0.1897 +ij[508] = 1 +id[509] = "2080-10-10T23:30:03" +ik[509] = -1 +il[509] = 15 +im[509] = 0.114 +ij[509] = 2 +id[510] = "2080-10-12T19:11:03" +ik[510] = 0 +il[510] = 1 +im[510] = 0.0149 +ij[510] = 1 +id[511] = "2081-01-26T08:23:01" +ik[511] = 0 +il[511] = -180 +im[511] = 0.0625 +ij[511] = 1 +id[512] = "2081-01-27T21:49:01" +ik[512] = 1 +il[512] = 168 +im[512] = 0.1409 +ij[512] = 2 +id[513] = "2081-05-25T07:11:02" +ik[513] = 0 +il[513] = -72 +im[513] = 0.1367 +ij[513] = 1 +id[514] = "2081-05-26T09:06:02" +ik[514] = 1 +il[514] = -80 +im[514] = 0.1919 +ij[514] = 2 +id[515] = "2081-09-24T03:06:03" +ik[515] = -1 +il[515] = 22 +im[515] = 0.2037 +ij[515] = 2 +id[516] = "2081-09-26T12:14:03" +ik[516] = 0 +il[516] = 5 +im[516] = 0.221 +ij[516] = 1 +id[517] = "2082-01-10T09:21:01" +ik[517] = 0 +il[517] = -179 +im[517] = 0.1834 +ij[517] = 1 +id[518] = "2082-01-11T09:35:01" +ik[518] = 1 +il[518] = 173 +im[518] = 0.1452 +ij[518] = 2 +id[519] = "2082-05-05T14:09:02" +ik[519] = 0 +il[519] = -51 +im[519] = 0.258 +ij[519] = 1 +id[520] = "2082-05-07T23:01:02" +ik[520] = 1 +il[520] = -67 +im[520] = 0.2137 +ij[520] = 2 +id[521] = "2082-09-06T20:52:03" +ik[521] = -1 +il[521] = 31 +im[521] = 0.0395 +ij[521] = 2 +id[522] = "2082-09-09T18:43:03" +ik[522] = 0 +il[522] = 10 +im[522] = 0.1168 +ij[522] = 1 +id[523] = "2082-12-25T14:38:01" +ik[523] = 0 +il[523] = -179 +im[523] = 0.2159 +ij[523] = 1 +id[524] = "2082-12-26T02:37:01" +ik[524] = 1 +il[524] = 177 +im[524] = 0.2228 +ij[524] = 2 +id[525] = "2083-04-16T13:26:02" +ik[525] = 0 +il[525] = -34 +im[525] = 0.0289 +ij[525] = 1 +id[526] = "2083-04-19T15:35:02" +ik[526] = 1 +il[526] = -55 +im[526] = 0.1512 +ij[526] = 2 +id[527] = "2083-08-20T04:04:03" +ik[527] = -1 +il[527] = 42 +im[527] = 0.2273 +ij[527] = 2 +id[528] = "2083-08-23T11:16:03" +ik[528] = 0 +il[528] = 19 +im[528] = 0.1792 +ij[528] = 1 +id[529] = "2083-12-09T22:33:01" +ik[529] = 0 +il[529] = 180 +im[529] = 0.036 +ij[529] = 1 +id[530] = "2083-12-09T22:47:01" +ik[530] = 1 +il[530] = -179 +im[530] = 0.0365 +ij[530] = 2 +id[531] = "2084-03-28T06:57:02" +ik[531] = 0 +il[531] = -20 +im[531] = 0.2307 +ij[531] = 1 +id[532] = "2084-03-31T12:42:02" +ik[532] = 1 +il[532] = -43 +im[532] = 0.1931 +ij[532] = 2 +id[533] = "2084-08-01T01:54:03" +ik[533] = -1 +il[533] = 54 +im[533] = 0.0599 +ij[533] = 2 +id[534] = "2084-08-04T09:07:03" +ik[534] = 0 +il[534] = 31 +im[534] = 0.1264 +ij[534] = 1 +id[535] = "2084-11-22T19:25:01" +ik[535] = -1 +il[535] = -175 +im[535] = 0.2025 +ij[535] = 2 +id[536] = "2084-11-23T06:43:01" +ik[536] = 0 +il[536] = 179 +im[536] = 0.1896 +ij[536] = 1 +id[537] = "2085-03-10T17:45:02" +ik[537] = 0 +il[537] = -11 +im[537] = 0.0367 +ij[537] = 1 +id[538] = "2085-03-13T17:01:02" +ik[538] = 1 +il[538] = -32 +im[538] = 0.1263 +ij[538] = 2 +id[539] = "2085-07-13T16:47:03" +ik[539] = -1 +il[539] = 67 +im[539] = 0.248 +ij[539] = 2 +id[540] = "2085-07-16T10:04:03" +ik[540] = 0 +il[540] = 49 +im[540] = 0.2266 +ij[540] = 1 +id[541] = "2085-11-06T14:09:01" +ik[541] = -1 +il[541] = -171 +im[541] = 0.1872 +ij[541] = 2 +id[542] = "2085-11-07T13:26:01" +ik[542] = 0 +il[542] = 179 +im[542] = 0.2122 +ij[542] = 1 +id[543] = "2086-02-21T19:11:02" +ik[543] = 0 +il[543] = -5 +im[543] = 0.2237 +ij[543] = 1 +id[544] = "2086-02-24T06:28:02" +ik[544] = 1 +il[544] = -23 +im[544] = 0.1587 +ij[544] = 2 +id[545] = "2086-06-25T04:33:03" +ik[545] = -1 +il[545] = 81 +im[545] = 0.1139 +ij[545] = 2 +id[546] = "2086-06-26T16:04:03" +ik[546] = 0 +il[546] = 71 +im[546] = 0.0243 +ij[546] = 1 +id[547] = "2086-10-21T05:01:01" +ik[547] = -1 +il[547] = -167 +im[547] = 0.0721 +ij[547] = 2 +id[548] = "2086-10-22T16:47:01" +ik[548] = 0 +il[548] = -180 +im[548] = 0.0157 +ij[548] = 1 +id[549] = "2087-02-05T08:09:02" +ik[549] = 0 +il[549] = -1 +im[549] = 0.0882 +ij[549] = 1 +id[550] = "2087-02-07T05:30:02" +ik[550] = 1 +il[550] = -15 +im[550] = 0.1743 +ij[550] = 2 +id[551] = "2087-06-06T12:43:03" +ik[551] = 0 +il[551] = 94 +im[551] = 0.2558 +ij[551] = 1 +id[552] = "2087-06-06T16:18:03" +ik[552] = 1 +il[552] = 93 +im[552] = 0.2593 +ij[552] = 2 +id[553] = "2087-10-04T13:11:01" +ik[553] = -1 +il[553] = -162 +im[553] = 0.2308 +ij[553] = 2 +id[554] = "2087-10-06T14:23:01" +ik[554] = 0 +il[554] = -177 +im[554] = 0.2133 +ij[554] = 1 +id[555] = "2088-01-20T05:31:02" +ik[555] = 0 +il[555] = 0 +im[555] = 0.1511 +ij[555] = 1 +id[556] = "2088-01-21T13:11:02" +ik[556] = 1 +il[556] = -9 +im[556] = 0.0904 +ij[556] = 2 +id[557] = "2088-05-16T12:57:03" +ik[557] = 0 +il[557] = 117 +im[557] = 0.2211 +ij[557] = 1 +id[558] = "2088-05-18T05:16:03" +ik[558] = 1 +il[558] = 106 +im[558] = 0.14 +ij[558] = 2 +id[559] = "2088-09-16T12:42:01" +ik[559] = -1 +il[559] = -155 +im[559] = 0.0527 +ij[559] = 2 +id[560] = "2088-09-19T03:35:01" +ik[560] = 0 +il[560] = -173 +im[560] = 0.1783 +ij[560] = 1 +id[561] = "2089-01-03T08:23:02" +ik[561] = 0 +il[561] = 1 +im[561] = 0.2168 +ij[561] = 1 +id[562] = "2089-01-04T03:21:02" +ik[562] = 1 +il[562] = -5 +im[562] = 0.2195 +ij[562] = 2 +id[563] = "2089-04-27T02:09:03" +ik[563] = 0 +il[563] = 137 +im[563] = 0.119 +ij[563] = 1 +id[564] = "2089-04-29T20:23:03" +ik[564] = 1 +il[564] = 118 +im[564] = 0.2418 +ij[564] = 2 +id[565] = "2089-08-30T02:09:01" +ik[565] = -1 +il[565] = -145 +im[565] = 0.2273 +ij[565] = 2 +id[566] = "2089-09-02T04:33:01" +ik[566] = 0 +il[566] = -167 +im[566] = 0.1245 +ij[566] = 1 +id[567] = "2089-12-18T15:07:02" +ik[567] = 0 +il[567] = 0 +im[567] = 0.0474 +ij[567] = 1 +id[568] = "2089-12-18T22:04:02" +ik[568] = 1 +il[568] = -1 +im[568] = 0.0631 +ij[568] = 2 +id[569] = "2090-04-08T09:07:03" +ik[569] = 0 +il[569] = 153 +im[569] = 0.2394 +ij[569] = 1 +id[570] = "2090-04-11T14:37:03" +ik[570] = 1 +il[570] = 130 +im[570] = 0.1277 +ij[570] = 2 +id[571] = "2090-08-12T05:01:01" +ik[571] = -1 +il[571] = -133 +im[571] = 0.0694 +ij[571] = 2 +id[572] = "2090-08-15T13:40:01" +ik[572] = 0 +il[572] = -156 +im[572] = 0.214 +ij[572] = 1 +id[573] = "2090-12-02T18:42:02" +ik[573] = -1 +il[573] = 3 +im[573] = 0.1727 +ij[573] = 2 +id[574] = "2090-12-02T23:16:02" +ik[574] = 0 +il[574] = 0 +im[574] = 0.1658 +ij[574] = 1 +id[575] = "2091-03-21T10:19:03" +ik[575] = 0 +il[575] = 164 +im[575] = 0.0676 +ij[575] = 1 +id[576] = "2091-03-24T14:23:03" +ik[576] = 1 +il[576] = 142 +im[576] = 0.2105 +ij[576] = 2 +id[577] = "2091-07-24T23:16:01" +ik[577] = -1 +il[577] = -120 +im[577] = 0.2363 +ij[577] = 2 +id[578] = "2091-07-28T02:52:01" +ik[578] = 0 +il[578] = -142 +im[578] = 0.1218 +ij[578] = 1 +id[579] = "2091-11-16T14:52:02" +ik[579] = -1 +il[579] = 7 +im[579] = 0.2058 +ij[579] = 2 +id[580] = "2091-11-17T07:11:02" +ik[580] = 0 +il[580] = -1 +im[580] = 0.2161 +ij[580] = 1 +id[581] = "2092-03-03T03:50:03" +ik[581] = 0 +il[581] = 172 +im[581] = 0.2019 +ij[581] = 1 +id[582] = "2092-03-05T22:33:03" +ik[582] = 1 +il[582] = 152 +im[582] = 0.0889 +ij[582] = 2 +id[583] = "2092-07-05T12:28:01" +ik[583] = -1 +il[583] = -107 +im[583] = 0.0204 +ij[583] = 2 +id[584] = "2092-07-07T18:57:01" +ik[584] = 0 +il[584] = -122 +im[584] = 0.1466 +ij[584] = 1 +id[585] = "2092-10-30T08:09:02" +ik[585] = -1 +il[585] = 11 +im[585] = 0.0398 +ij[585] = 2 +id[586] = "2092-10-31T12:43:02" +ik[586] = 0 +il[586] = 0 +im[586] = 0.0409 +ij[586] = 1 +id[587] = "2093-02-14T10:33:03" +ik[587] = 0 +il[587] = 177 +im[587] = 0.1311 +ij[587] = 1 +id[588] = "2093-02-16T16:04:03" +ik[588] = 1 +il[588] = 161 +im[588] = 0.208 +ij[588] = 2 +id[589] = "2093-06-16T00:13:01" +ik[589] = -1 +il[589] = -87 +im[589] = 0.2621 +ij[589] = 2 +id[590] = "2093-06-17T19:26:01" +ik[590] = 0 +il[590] = -99 +im[590] = 0.2516 +ij[590] = 1 +id[591] = "2093-10-13T20:23:02" +ik[591] = -1 +il[591] = 15 +im[591] = 0.229 +ij[591] = 2 +id[592] = "2093-10-15T13:55:02" +ik[592] = 0 +il[592] = 1 +im[592] = 0.1907 +ij[592] = 1 +id[593] = "2094-01-29T03:21:03" +ik[593] = 0 +il[593] = -180 +im[593] = 0.103 +ij[593] = 1 +id[594] = "2094-01-30T18:57:03" +ik[594] = 1 +il[594] = 168 +im[594] = 0.0276 +ij[594] = 2 +id[595] = "2094-05-28T16:04:01" +ik[595] = 0 +il[595] = -76 +im[595] = 0.0812 +ij[595] = 1 +id[596] = "2094-05-29T12:13:01" +ik[596] = 1 +il[596] = -81 +im[596] = 0.0274 +ij[596] = 2 +id[597] = "2094-09-27T01:11:02" +ik[597] = -1 +il[597] = 21 +im[597] = 0.1194 +ij[597] = 2 +id[598] = "2094-09-29T08:23:02" +ik[598] = 0 +il[598] = 4 +im[598] = 0.2056 +ij[598] = 1 +id[599] = "2095-01-13T03:21:03" +ik[599] = 0 +il[599] = -179 +im[599] = 0.2131 +ij[599] = 1 +id[600] = "2095-01-14T05:30:03" +ik[600] = 1 +il[600] = 173 +im[600] = 0.2062 +ij[600] = 2 +id[601] = "2095-05-08T21:07:01" +ik[601] = 0 +il[601] = -54 +im[601] = 0.2361 +ij[601] = 1 +id[602] = "2095-05-11T02:09:01" +ik[602] = 1 +il[602] = -69 +im[602] = 0.2745 +ij[602] = 2 +id[603] = "2095-09-09T20:37:02" +ik[603] = -1 +il[603] = 29 +im[603] = 0.2021 +ij[603] = 2 +id[604] = "2095-09-12T16:47:02" +ik[604] = 0 +il[604] = 9 +im[604] = 0.0756 +ij[604] = 1 +id[605] = "2095-12-28T08:23:03" +ik[605] = 0 +il[605] = -179 +im[605] = 0.0734 +ij[605] = 1 +id[606] = "2095-12-28T22:04:03" +ik[606] = 1 +il[606] = 177 +im[606] = 0.1016 +ij[606] = 2 +id[607] = "2096-04-18T17:31:01" +ik[607] = 0 +il[607] = -36 +im[607] = 0.2047 +ij[607] = 1 +id[608] = "2096-04-21T18:13:01" +ik[608] = 1 +il[608] = -57 +im[608] = 0.0408 +ij[608] = 2 +id[609] = "2096-08-22T05:30:02" +ik[609] = -1 +il[609] = 40 +im[609] = 0.1715 +ij[609] = 2 +id[610] = "2096-08-25T11:31:02" +ik[610] = 0 +il[610] = 17 +im[610] = 0.2473 +ij[610] = 1 +id[611] = "2096-12-11T15:50:03" +ik[611] = 0 +il[611] = 180 +im[611] = 0.1303 +ij[611] = 1 +id[612] = "2096-12-11T17:45:03" +ik[612] = 1 +il[612] = -179 +im[612] = 0.1268 +ij[612] = 2 +id[613] = "2097-03-31T08:23:01" +ik[613] = 0 +il[613] = -22 +im[613] = 0.1645 +ij[613] = 1 +id[614] = "2097-04-03T14:23:01" +ik[614] = 1 +il[614] = -45 +im[614] = 0.2593 +ij[614] = 2 +id[615] = "2097-08-04T04:18:02" +ik[615] = -1 +il[615] = 52 +im[615] = 0.1927 +ij[615] = 2 +id[616] = "2097-08-07T12:28:02" +ik[616] = 0 +il[616] = 29 +im[616] = 0.0404 +ij[616] = 1 +id[617] = "2097-11-25T14:23:03" +ik[617] = -1 +il[617] = -175 +im[617] = 0.208 +ij[617] = 2 +id[618] = "2097-11-25T23:59:03" +ik[618] = 0 +il[618] = 180 +im[618] = 0.2111 +ij[618] = 1 +id[619] = "2098-03-13T16:47:01" +ik[619] = 0 +il[619] = -12 +im[619] = 0.1724 +ij[619] = 1 +id[620] = "2098-03-16T17:30:01" +ik[620] = 1 +il[620] = -33 +im[620] = 0.0255 +ij[620] = 2 +id[621] = "2098-07-16T20:09:02" +ik[621] = -1 +il[621] = 66 +im[621] = 0.1477 +ij[621] = 2 +id[622] = "2098-07-19T16:33:02" +ik[622] = 0 +il[622] = 46 +im[622] = 0.2445 +ij[622] = 1 +id[623] = "2098-11-09T09:49:03" +ik[623] = -1 +il[623] = -171 +im[623] = 0.0149 +ij[623] = 2 +id[624] = "2098-11-10T07:11:03" +ik[624] = 0 +il[624] = 179 +im[624] = 0.0604 +ij[624] = 1 +id[625] = "2099-02-24T16:19:01" +ik[625] = 0 +il[625] = -5 +im[625] = 0.1819 +ij[625] = 1 +id[626] = "2099-02-27T05:45:01" +ik[626] = 1 +il[626] = -24 +im[626] = 0.2352 +ij[626] = 2 +id[627] = "2099-06-28T08:09:02" +ik[627] = -1 +il[627] = 79 +im[627] = 0.2147 +ij[627] = 2 +id[628] = "2099-06-30T00:57:02" +ik[628] = 0 +il[628] = 67 +im[628] = 0.1419 +ij[628] = 1 +id[629] = "2099-10-24T01:11:03" +ik[629] = -1 +il[629] = -167 +im[629] = 0.1981 +ij[629] = 2 +id[630] = "2099-10-25T11:16:03" +ik[630] = 0 +il[630] = -180 +im[630] = 0.1495 +ij[630] = 1 +id[631] = "2100-02-08T03:50:01" +ik[631] = 0 +il[631] = -1 +im[631] = 0.0561 +ij[631] = 1 +id[632] = "2100-02-10T03:21:01" +ik[632] = 1 +il[632] = -16 +im[632] = 0.064 +ij[632] = 2 +id[633] = "2100-06-09T19:54:02" +ik[633] = -1 +il[633] = 91 +im[633] = 0.1027 +ij[633] = 2 +id[634] = "2100-06-09T22:04:02" +ik[634] = 0 +il[634] = 91 +im[634] = 0.1076 +ij[634] = 1 +id[635] = "2100-10-07T10:33:03" +ik[635] = -1 +il[635] = -163 +im[635] = 0.1571 +ij[635] = 2 +id[636] = "2100-10-09T09:50:03" +ik[636] = 0 +il[636] = -178 +im[636] = 0.2115 +ij[636] = 1 +id[637] = "2101-01-22T23:59:01" +ik[637] = 0 +il[637] = 0 +im[637] = 0.2134 +ij[637] = 1 +id[638] = "2101-01-24T09:35:01" +ik[638] = 1 +il[638] = -10 +im[638] = 0.1945 +ij[638] = 2 +id[639] = "2101-05-20T21:07:02" +ik[639] = 0 +il[639] = 114 +im[639] = 0.265 +ij[639] = 1 +id[640] = "2101-05-22T08:37:02" +ik[640] = 1 +il[640] = 104 +im[640] = 0.2405 +ij[640] = 2 +id[641] = "2101-09-20T11:30:03" +ik[641] = -1 +il[641] = -156 +im[641] = 0.1493 +ij[641] = 2 +id[642] = "2101-09-23T00:28:03" +ik[642] = 0 +il[642] = -174 +im[642] = 0.0139 +ij[642] = 1 +id[643] = "2102-01-07T02:23:01" +ik[643] = 0 +il[643] = 1 +im[643] = 0.1076 +ij[643] = 1 +id[644] = "2102-01-07T23:01:01" +ik[644] = 1 +il[644] = -6 +im[644] = 0.145 +ij[644] = 2 +id[645] = "2102-05-01T08:09:02" +ik[645] = 0 +il[645] = 134 +im[645] = 0.0985 +ij[645] = 1 +id[646] = "2102-05-03T23:16:02" +ik[646] = 1 +il[646] = 116 +im[646] = 0.0735 +ij[646] = 2 +id[647] = "2102-09-03T02:23:03" +ik[647] = -1 +il[647] = -146 +im[647] = 0.2225 +ij[647] = 2 +id[648] = "2102-09-06T03:35:03" +ik[648] = 0 +il[648] = -168 +im[648] = 0.2302 +ij[648] = 1 +id[649] = "2102-12-22T08:38:01" +ik[649] = 0 +il[649] = 0 +im[649] = 0.094 +ij[649] = 1 +id[650] = "2102-12-22T17:16:01" +ik[650] = 1 +il[650] = -2 +im[650] = 0.0767 +ij[650] = 2 +id[651] = "2103-04-12T12:14:02" +ik[651] = 0 +il[651] = 151 +im[651] = 0.2413 +ij[651] = 1 +id[652] = "2103-04-15T16:47:02" +ik[652] = 1 +il[652] = 128 +im[652] = 0.2506 +ij[652] = 2 +id[653] = "2103-08-16T06:57:03" +ik[653] = -1 +il[653] = -135 +im[653] = 0.1166 +ij[653] = 2 +id[654] = "2103-08-19T15:07:03" +ik[654] = 0 +il[654] = -158 +im[654] = 0.0858 +ij[654] = 1 +id[655] = "2103-12-06T13:40:01" +ik[655] = -1 +il[655] = 2 +im[655] = 0.2088 +ij[655] = 2 +id[656] = "2103-12-06T16:33:01" +ik[656] = 0 +il[656] = 0 +im[656] = 0.2091 +ij[656] = 1 +id[657] = "2104-03-24T10:47:02" +ik[657] = 0 +il[657] = 163 +im[657] = 0.1195 +ij[657] = 1 +id[658] = "2104-03-27T15:35:02" +ik[658] = 1 +il[658] = 140 +im[658] = 0.079 +ij[658] = 2 +id[659] = "2104-07-28T02:23:03" +ik[659] = -1 +il[659] = -122 +im[659] = 0.2333 +ij[659] = 2 +id[660] = "2104-07-31T07:26:03" +ik[660] = 0 +il[660] = -144 +im[660] = 0.2527 +ij[660] = 1 +id[661] = "2104-11-19T10:04:01" +ik[661] = -1 +il[661] = 6 +im[661] = 0.063 +ij[661] = 2 +id[662] = "2104-11-20T00:43:01" +ik[662] = 0 +il[662] = -1 +im[662] = 0.0933 +ij[662] = 1 +id[663] = "2105-03-07T02:09:02" +ik[663] = 0 +il[663] = 171 +im[663] = 0.2301 +ij[663] = 1 +id[664] = "2105-03-09T22:18:02" +ik[664] = 1 +il[664] = 151 +im[664] = 0.2361 +ij[664] = 2 +id[665] = "2105-07-09T16:04:03" +ik[665] = -1 +il[665] = -109 +im[665] = 0.1314 +ij[665] = 2 +id[666] = "2105-07-12T02:38:03" +ik[666] = 0 +il[666] = -125 +im[666] = 0.0223 +ij[666] = 1 +id[667] = "2105-11-03T04:04:01" +ik[667] = -1 +il[667] = 10 +im[667] = 0.1545 +ij[667] = 2 +id[668] = "2105-11-04T06:43:01" +ik[668] = 0 +il[668] = 0 +im[668] = 0.1069 +ij[668] = 1 +id[669] = "2106-02-18T06:57:02" +ik[669] = 0 +il[669] = 177 +im[669] = 0.0052 +ij[669] = 1 +id[670] = "2106-02-20T14:37:02" +ik[670] = 1 +il[670] = 160 +im[670] = 0.1311 +ij[670] = 2 +id[671] = "2106-06-21T03:35:03" +ik[671] = -1 +il[671] = -96 +im[671] = 0.2039 +ij[671] = 2 +id[672] = "2106-06-22T04:47:03" +ik[672] = 0 +il[672] = -103 +im[672] = 0.2395 +ij[672] = 1 +id[673] = "2106-10-17T17:16:01" +ik[673] = -1 +il[673] = 14 +im[673] = 0.1811 +ij[673] = 2 +id[674] = "2106-10-19T08:38:01" +ik[674] = 0 +il[674] = 1 +im[674] = 0.2109 +ij[674] = 1 +id[675] = "2107-02-01T22:33:02" +ik[675] = 0 +il[675] = -180 +im[675] = 0.2168 +ij[675] = 1 +id[676] = "2107-02-03T16:04:02" +ik[676] = 1 +il[676] = 167 +im[676] = 0.175 +ij[676] = 2 +id[677] = "2107-06-02T01:11:03" +ik[677] = 0 +il[677] = -79 +im[677] = 0.1859 +ij[677] = 1 +id[678] = "2107-06-02T15:35:03" +ik[678] = 1 +il[678] = -83 +im[678] = 0.1574 +ij[678] = 2 +id[679] = "2107-09-30T23:16:01" +ik[679] = -1 +il[679] = 20 +im[679] = 0.0738 +ij[679] = 2 +id[680] = "2107-10-03T04:19:01" +ik[680] = 0 +il[680] = 3 +im[680] = 0.0455 +ij[680] = 1 +id[681] = "2108-01-16T21:35:02" +ik[681] = 0 +il[681] = -180 +im[681] = 0.1524 +ij[681] = 1 +id[682] = "2108-01-18T01:40:02" +ik[682] = 1 +il[682] = 172 +im[682] = 0.1941 +ij[682] = 2 +id[683] = "2108-05-12T04:19:03" +ik[683] = 0 +il[683] = -57 +im[683] = 0.0617 +ij[683] = 1 +id[684] = "2108-05-14T05:16:03" +ik[684] = 1 +il[684] = -71 +im[684] = 0.1734 +ij[684] = 2 +id[685] = "2108-09-12T20:09:01" +ik[685] = -1 +il[685] = 28 +im[685] = 0.2308 +ij[685] = 2 +id[686] = "2108-09-15T14:23:01" +ik[686] = 0 +il[686] = 8 +im[686] = 0.1825 +ij[686] = 1 +id[687] = "2108-12-31T01:55:02" +ik[687] = 0 +il[687] = -179 +im[687] = 0.0648 +ij[687] = 1 +id[688] = "2108-12-31T17:30:02" +ik[688] = 1 +il[688] = 176 +im[688] = 0.0296 +ij[688] = 2 +id[689] = "2109-04-22T22:19:03" +ik[689] = 0 +il[689] = -38 +im[689] = 0.2567 +ij[689] = 1 +id[690] = "2109-04-25T20:52:03" +ik[690] = 1 +il[690] = -59 +im[690] = 0.1812 +ij[690] = 2 +id[691] = "2109-08-26T06:28:01" +ik[691] = -1 +il[691] = 38 +im[691] = 0.0298 +ij[691] = 2 +id[692] = "2109-08-29T11:31:01" +ik[692] = 0 +il[692] = 16 +im[692] = 0.1527 +ij[692] = 1 +id[693] = "2109-12-15T09:07:02" +ik[693] = 0 +il[693] = 180 +im[693] = 0.2137 +ij[693] = 1 +id[694] = "2109-12-15T12:42:02" +ik[694] = 1 +il[694] = -180 +im[694] = 0.213 +ij[694] = 2 +id[695] = "2110-04-04T10:19:03" +ik[695] = 0 +il[695] = -24 +im[695] = 0.0403 +ij[695] = 1 +id[696] = "2110-04-07T16:18:03" +ik[696] = 1 +il[696] = -46 +im[696] = 0.1603 +ij[696] = 2 +id[697] = "2110-08-08T06:42:01" +ik[697] = -1 +il[697] = 51 +im[697] = 0.2576 +ij[697] = 2 +id[698] = "2110-08-11T15:21:01" +ik[698] = 0 +il[698] = 27 +im[698] = 0.1825 +ij[698] = 1 +id[699] = "2110-11-29T09:35:02" +ik[699] = -1 +il[699] = -176 +im[699] = 0.1186 +ij[699] = 2 +id[700] = "2110-11-29T17:31:02" +ik[700] = 0 +il[700] = 180 +im[700] = 0.133 +ij[700] = 1 +id[701] = "2111-03-17T16:19:03" +ik[701] = 0 +il[701] = -13 +im[701] = 0.2501 +ij[701] = 1 +id[702] = "2111-03-20T18:13:03" +ik[702] = 1 +il[702] = -35 +im[702] = 0.1879 +ij[702] = 2 +id[703] = "2111-07-20T23:16:01" +ik[703] = -1 +il[703] = 64 +im[703] = 0.0292 +ij[703] = 2 +id[704] = "2111-07-23T22:33:01" +ik[704] = 0 +il[704] = 43 +im[704] = 0.1578 +ij[704] = 1 +id[705] = "2111-11-13T05:16:02" +ik[705] = -1 +il[705] = -172 +im[705] = 0.1145 +ij[705] = 2 +id[706] = "2111-11-14T00:57:02" +ik[706] = 0 +il[706] = 179 +im[706] = 0.0745 +ij[706] = 1 +id[707] = "2112-02-28T13:40:03" +ik[707] = 0 +il[707] = -6 +im[707] = 0.0597 +ij[707] = 1 +id[708] = "2112-03-02T05:01:03" +ik[708] = 1 +il[708] = -25 +im[708] = 0.188 +ij[708] = 2 +id[709] = "2112-07-01T11:45:01" +ik[709] = -1 +il[709] = 77 +im[709] = 0.2694 +ij[709] = 2 +id[710] = "2112-07-03T09:21:01" +ik[710] = 0 +il[710] = 64 +im[710] = 0.2654 +ij[710] = 1 +id[711] = "2112-10-26T21:21:02" +ik[711] = -1 +il[711] = -168 +im[711] = 0.2021 +ij[711] = 2 +id[712] = "2112-10-28T05:31:02" +ik[712] = 0 +il[712] = -180 +im[712] = 0.2143 +ij[712] = 1 +id[713] = "2113-02-10T23:31:03" +ik[713] = 0 +il[713] = -2 +im[713] = 0.2123 +ij[713] = 1 +id[714] = "2113-02-13T01:11:03" +ik[714] = 1 +il[714] = -17 +im[714] = 0.1392 +ij[714] = 2 +id[715] = "2113-06-12T23:16:01" +ik[715] = -1 +il[715] = 90 +im[715] = 0.0497 +ij[715] = 2 +id[716] = "2113-06-13T07:26:01" +ik[716] = 0 +il[716] = 87 +im[716] = 0.0283 +ij[716] = 1 +id[717] = "2113-10-10T07:54:02" +ik[717] = -1 +il[717] = -164 +im[717] = 0.0287 +ij[717] = 2 +id[718] = "2113-10-12T05:02:02" +ik[718] = 0 +il[718] = -178 +im[718] = 0.1047 +ij[718] = 1 +id[719] = "2114-01-25T18:43:03" +ik[719] = 0 +il[719] = 0 +im[719] = 0.1901 +ij[719] = 1 +id[720] = "2114-01-27T06:28:03" +ik[720] = 1 +il[720] = -11 +im[720] = 0.2259 +ij[720] = 2 +id[721] = "2114-05-24T05:31:01" +ik[721] = 0 +il[721] = 111 +im[721] = 0.209 +ij[721] = 1 +id[722] = "2114-05-25T11:45:01" +ik[722] = 1 +il[722] = 102 +im[722] = 0.2491 +ij[722] = 2 +id[723] = "2114-09-23T10:04:02" +ik[723] = -1 +il[723] = -157 +im[723] = 0.2132 +ij[723] = 2 +id[724] = "2114-09-25T21:07:02" +ik[724] = 0 +il[724] = -175 +im[724] = 0.1374 +ij[724] = 1 +id[725] = "2115-01-09T20:09:03" +ik[725] = 0 +il[725] = 1 +im[725] = 0.0491 +ij[725] = 1 +id[726] = "2115-01-10T18:57:03" +ik[726] = 1 +il[726] = -6 +im[726] = 0.0266 +ij[726] = 2 +id[727] = "2115-05-04T14:09:01" +ik[727] = 0 +il[727] = 131 +im[727] = 0.1991 +ij[727] = 1 +id[728] = "2115-05-07T02:09:01" +ik[728] = 1 +il[728] = 114 +im[728] = 0.0731 +ij[728] = 2 +id[729] = "2115-09-06T02:37:02" +ik[729] = -1 +il[729] = -148 +im[729] = 0.0713 +ij[729] = 2 +id[730] = "2115-09-09T02:09:02" +ik[730] = 0 +il[730] = -169 +im[730] = 0.193 +ij[730] = 1 +id[731] = "2115-12-25T01:55:03" +ik[731] = 0 +il[731] = 1 +im[731] = 0.219 +ij[731] = 1 +id[732] = "2115-12-25T12:28:03" +ik[732] = 1 +il[732] = -2 +im[732] = 0.213 +ij[732] = 2 +id[733] = "2116-04-14T15:35:01" +ik[733] = 0 +il[733] = 148 +im[733] = 0.0801 +ij[733] = 1 +id[734] = "2116-04-17T19:11:01" +ik[734] = 1 +il[734] = 127 +im[734] = 0.2233 +ij[734] = 2 +id[735] = "2116-08-18T08:37:02" +ik[735] = -1 +il[735] = -137 +im[735] = 0.2196 +ij[735] = 2 +id[736] = "2116-08-21T16:19:02" +ik[736] = 0 +il[736] = -160 +im[736] = 0.087 +ij[736] = 1 +id[737] = "2116-12-08T08:37:03" +ik[737] = -1 +il[737] = 2 +im[737] = 0.1664 +ij[737] = 2 +id[738] = "2116-12-08T09:50:03" +ik[738] = 0 +il[738] = 0 +im[738] = 0.1683 +ij[738] = 1 +id[739] = "2117-03-27T11:31:01" +ik[739] = 0 +il[739] = 161 +im[739] = 0.2265 +ij[739] = 1 +id[740] = "2117-03-30T17:01:01" +ik[740] = 1 +il[740] = 139 +im[740] = 0.0981 +ij[740] = 2 +id[741] = "2117-07-31T05:16:02" +ik[741] = -1 +il[741] = -124 +im[741] = 0.0865 +ij[741] = 2 +id[742] = "2117-08-03T11:45:02" +ik[742] = 0 +il[742] = -147 +im[742] = 0.222 +ij[742] = 1 +id[743] = "2117-11-22T05:16:03" +ik[743] = -1 +il[743] = 6 +im[743] = 0.0836 +ij[743] = 2 +id[744] = "2117-11-22T17:59:03" +ik[744] = 0 +il[744] = 0 +im[744] = 0.0555 +ij[744] = 1 +id[745] = "2118-03-10T00:28:01" +ik[745] = 0 +il[745] = 170 +im[745] = 0.1052 +ij[745] = 1 +id[746] = "2118-03-12T22:32:01" +ik[746] = 1 +il[746] = 149 +im[746] = 0.2194 +ij[746] = 2 +id[747] = "2118-07-12T19:25:02" +ik[747] = -1 +il[747] = -111 +im[747] = 0.26 +ij[747] = 2 +id[748] = "2118-07-15T09:50:02" +ik[748] = 0 +il[748] = -128 +im[748] = 0.1748 +ij[748] = 1 +id[749] = "2118-11-05T23:44:03" +ik[749] = -1 +il[749] = 10 +im[749] = 0.2206 +ij[749] = 2 +id[750] = "2118-11-07T00:28:03" +ik[750] = 0 +il[750] = 0 +im[750] = 0.2197 +ij[750] = 1 +id[751] = "2119-02-21T03:35:01" +ik[751] = 0 +il[751] = 176 +im[751] = 0.1845 +ij[751] = 1 +id[752] = "2119-02-23T13:11:01" +ik[752] = 1 +il[752] = 159 +im[752] = 0.0756 +ij[752] = 2 +id[753] = "2119-06-24T07:11:02" +ik[753] = -1 +il[753] = -98 +im[753] = 0.0726 +ij[753] = 2 +id[754] = "2119-06-25T13:55:02" +ik[754] = 0 +il[754] = -106 +im[754] = 0.1462 +ij[754] = 1 +id[755] = "2119-10-20T13:40:03" +ik[755] = -1 +il[755] = 14 +im[755] = 0.0772 +ij[755] = 2 +id[756] = "2119-10-22T03:21:03" +ik[756] = 0 +il[756] = 0 +im[756] = 0.1504 +ij[756] = 1 +id[757] = "2120-02-04T17:45:01" +ik[757] = 0 +il[757] = 179 +im[757] = 0.2102 +ij[757] = 1 +id[758] = "2120-02-06T13:25:01" +ik[758] = 1 +il[758] = 166 +im[758] = 0.2303 +ij[758] = 2 +id[759] = "2120-06-04T10:19:02" +ik[759] = 0 +il[759] = -83 +im[759] = 0.2786 +ij[759] = 1 +id[760] = "2120-06-04T19:11:02" +ik[760] = 1 +il[760] = -85 +im[760] = 0.2773 +ij[760] = 2 +id[761] = "2120-10-02T21:06:03" +ik[761] = -1 +il[761] = 19 +im[761] = 0.1872 +ij[761] = 2 +id[762] = "2120-10-04T23:59:03" +ik[762] = 0 +il[762] = 3 +im[762] = 0.0977 +ij[762] = 1 +id[763] = "2121-01-18T15:50:01" +ik[763] = 0 +il[763] = -179 +im[763] = 0.0284 +ij[763] = 1 +id[764] = "2121-01-19T22:04:01" +ik[764] = 1 +il[764] = 171 +im[764] = 0.0507 +ij[764] = 2 +id[765] = "2121-05-15T11:45:02" +ik[765] = 0 +il[765] = -60 +im[765] = 0.0776 +ij[765] = 1 +id[766] = "2121-05-17T08:23:02" +ik[766] = 1 +il[766] = -73 +im[766] = 0.0529 +ij[766] = 2 +id[767] = "2121-09-15T19:25:03" +ik[767] = -1 +il[767] = 27 +im[767] = 0.1459 +ij[767] = 2 +id[768] = "2121-09-18T11:45:03" +ik[768] = 0 +il[768] = 7 +im[768] = 0.2226 +ij[768] = 1 +id[769] = "2122-01-02T19:40:01" +ik[769] = 0 +il[769] = -179 +im[769] = 0.2141 +ij[769] = 1 +id[770] = "2122-01-03T12:56:01" +ik[770] = 1 +il[770] = 175 +im[770] = 0.197 +ij[770] = 2 +id[771] = "2122-04-26T03:21:02" +ik[771] = 0 +il[771] = -41 +im[771] = 0.1961 +ij[771] = 1 +id[772] = "2122-04-28T23:30:02" +ik[772] = 1 +il[772] = -60 +im[772] = 0.2595 +ij[772] = 2 +id[773] = "2122-08-29T07:25:03" +ik[773] = -1 +il[773] = 37 +im[773] = 0.1462 +ij[773] = 2 +id[774] = "2122-09-01T11:02:03" +ik[774] = 0 +il[774] = 14 +im[774] = 0.0227 +ij[774] = 1 +id[775] = "2122-12-18T02:23:01" +ik[775] = 0 +il[775] = 180 +im[775] = 0.1857 +ij[775] = 1 +id[776] = "2122-12-18T07:54:01" +ik[776] = 1 +il[776] = 179 +im[776] = 0.1926 +ij[776] = 2 +id[777] = "2123-04-07T12:28:02" +ik[777] = 0 +il[777] = -26 +im[777] = 0.1564 +ij[777] = 1 +id[778] = "2123-04-10T18:28:02" +ik[778] = 1 +il[778] = -48 +im[778] = 0.0251 +ij[778] = 2 +id[779] = "2123-08-11T09:06:03" +ik[779] = -1 +il[779] = 49 +im[779] = 0.1632 +ij[779] = 2 +id[780] = "2123-08-14T17:45:03" +ik[780] = 0 +il[780] = 25 +im[780] = 0.2331 +ij[780] = 1 +id[781] = "2123-12-02T04:32:01" +ik[781] = -1 +il[781] = -177 +im[781] = 0.0545 +ij[781] = 2 +id[782] = "2123-12-02T10:47:01" +ik[782] = 0 +il[782] = 180 +im[782] = 0.0397 +ij[782] = 1 +id[783] = "2124-03-19T16:04:02" +ik[783] = 0 +il[783] = -14 +im[783] = 0.1643 +ij[783] = 1 +id[784] = "2124-03-22T19:11:02" +ik[784] = 1 +il[784] = -37 +im[784] = 0.2345 +ij[784] = 2 +id[785] = "2124-07-23T02:23:03" +ik[785] = -1 +il[785] = 62 +im[785] = 0.1796 +ij[785] = 2 +id[786] = "2124-07-26T04:19:03" +ik[786] = 0 +il[786] = 41 +im[786] = 0.0176 +ij[786] = 1 +id[787] = "2124-11-15T00:28:01" +ik[787] = -1 +il[787] = -173 +im[787] = 0.2262 +ij[787] = 2 +id[788] = "2124-11-15T18:28:01" +ik[788] = 0 +il[788] = 179 +im[788] = 0.2167 +ij[788] = 1 +id[789] = "2125-03-02T11:16:02" +ik[789] = 0 +il[789] = -7 +im[789] = 0.1256 +ij[789] = 1 +id[790] = "2125-03-05T04:32:02" +ik[790] = 1 +il[790] = -26 +im[790] = 0.0201 +ij[790] = 2 +id[791] = "2125-07-04T15:20:03" +ik[791] = -1 +il[791] = 75 +im[791] = 0.163 +ij[791] = 2 +id[792] = "2125-07-06T17:45:03" +ik[792] = 0 +il[792] = 61 +im[792] = 0.2392 +ij[792] = 1 +id[793] = "2125-10-29T17:30:01" +ik[793] = -1 +il[793] = -169 +im[793] = 0.1299 +ij[793] = 2 +id[794] = "2125-10-30T23:31:01" +ik[794] = 0 +il[794] = -180 +im[794] = 0.1803 +ij[794] = 1 +id[795] = "2126-02-13T19:40:02" +ik[795] = 0 +il[795] = -2 +im[795] = 0.2181 +ij[795] = 1 +id[796] = "2126-02-15T23:16:02" +ik[796] = 1 +il[796] = -18 +im[796] = 0.2112 +ij[796] = 2 +id[797] = "2126-06-16T02:52:03" +ik[797] = -1 +il[797] = 88 +im[797] = 0.2343 +ij[797] = 2 +id[798] = "2126-06-16T17:02:03" +ik[798] = 0 +il[798] = 84 +im[798] = 0.2117 +ij[798] = 1 +id[799] = "2126-10-13T04:47:01" +ik[799] = -1 +il[799] = -165 +im[799] = 0.1588 +ij[799] = 2 +id[800] = "2126-10-14T23:59:01" +ik[800] = 0 +il[800] = -178 +im[800] = 0.0694 +ij[800] = 1 +id[801] = "2127-01-28T13:26:02" +ik[801] = 0 +il[801] = 0 +im[801] = 0.0087 +ij[801] = 1 +id[802] = "2127-01-30T03:06:02" +ik[802] = 1 +il[802] = -12 +im[802] = 0.0942 +ij[802] = 2 +id[803] = "2127-05-27T14:09:03" +ik[803] = 0 +il[803] = 107 +im[803] = 0.0927 +ij[803] = 1 +id[804] = "2127-05-28T15:06:03" +ik[804] = 1 +il[804] = 100 +im[804] = 0.1547 +ij[804] = 2 +id[805] = "2127-09-26T08:37:01" +ik[805] = -1 +il[805] = -158 +im[805] = 0.2067 +ij[805] = 2 +id[806] = "2127-09-28T17:16:01" +ik[806] = 0 +il[806] = -175 +im[806] = 0.2348 +ij[806] = 1 +id[807] = "2128-01-12T14:09:02" +ik[807] = 0 +il[807] = 1 +im[807] = 0.1896 +ij[807] = 1 +id[808] = "2128-01-13T14:37:02" +ik[808] = 1 +il[808] = -7 +im[808] = 0.1542 +ij[808] = 2 +id[809] = "2128-05-06T20:52:03" +ik[809] = 0 +il[809] = 128 +im[809] = 0.2704 +ij[809] = 1 +id[810] = "2128-05-09T05:01:03" +ik[810] = 1 +il[810] = 113 +im[810] = 0.2482 +ij[810] = 2 +id[811] = "2128-09-08T02:37:01" +ik[811] = -1 +il[811] = -149 +im[811] = 0.068 +ij[811] = 2 +id[812] = "2128-09-10T00:14:01" +ik[812] = 0 +il[812] = -163 +im[812] = 0.0496 +ij[812] = 1 +id[813] = "2128-12-26T19:26:02" +ik[813] = 0 +il[813] = 1 +im[813] = 0.1934 +ij[813] = 1 +id[814] = "2128-12-27T07:40:02" +ik[814] = 1 +il[814] = -3 +im[814] = 0.2045 +ij[814] = 2 +id[815] = "2129-04-17T19:40:03" +ik[815] = 0 +il[815] = 146 +im[815] = 0.0577 +ij[815] = 1 +id[816] = "2129-04-20T21:35:03" +ik[816] = 1 +il[816] = 125 +im[816] = 0.1389 +ij[816] = 2 +id[817] = "2129-08-21T10:04:01" +ik[817] = -1 +il[817] = -138 +im[817] = 0.223 +ij[817] = 2 +id[818] = "2129-08-24T17:02:01" +ik[818] = 0 +il[818] = -161 +im[818] = 0.2125 +ij[818] = 1 +id[819] = "2129-12-11T03:07:02" +ik[819] = 0 +il[819] = 0 +im[819] = 0.0231 +ij[819] = 1 +id[820] = "2129-12-11T03:35:02" +ik[820] = 1 +il[820] = 1 +im[820] = 0.0221 +ij[820] = 2 +id[821] = "2130-03-30T12:43:03" +ik[821] = 0 +il[821] = 160 +im[821] = 0.2222 +ij[821] = 1 +id[822] = "2130-04-02T18:42:03" +ik[822] = 1 +il[822] = 137 +im[822] = 0.2267 +ij[822] = 2 +id[823] = "2130-08-03T07:54:01" +ik[823] = -1 +il[823] = -126 +im[823] = 0.0689 +ij[823] = 2 +id[824] = "2130-08-06T15:35:01" +ik[824] = 0 +il[824] = -149 +im[824] = 0.127 +ij[824] = 1 +id[825] = "2130-11-25T00:28:02" +ik[825] = -1 +il[825] = 5 +im[825] = 0.2098 +ij[825] = 2 +id[826] = "2130-11-25T11:31:02" +ik[826] = 0 +il[826] = 0 +im[826] = 0.1989 +ij[826] = 1 +id[827] = "2131-03-12T23:16:03" +ik[827] = 0 +il[827] = 169 +im[827] = 0.0551 +ij[827] = 1 +id[828] = "2131-03-15T22:47:03" +ik[828] = 1 +il[828] = 148 +im[828] = 0.1235 +ij[828] = 2 +id[829] = "2131-07-15T22:47:01" +ik[829] = -1 +il[829] = -113 +im[829] = 0.2248 +ij[829] = 2 +id[830] = "2131-07-18T16:47:01" +ik[830] = 0 +il[830] = -131 +im[830] = 0.237 +ij[830] = 1 +id[831] = "2131-11-08T19:25:02" +ik[831] = -1 +il[831] = 9 +im[831] = 0.1587 +ij[831] = 2 +id[832] = "2131-11-09T18:14:02" +ik[832] = 0 +il[832] = 0 +im[832] = 0.1903 +ij[832] = 1 +id[833] = "2132-02-24T00:28:03" +ik[833] = 0 +il[833] = 175 +im[833] = 0.2214 +ij[833] = 1 +id[834] = "2132-02-26T12:13:03" +ik[834] = 1 +il[834] = 157 +im[834] = 0.1788 +ij[834] = 2 +id[835] = "2132-06-26T10:47:01" +ik[835] = -1 +il[835] = -100 +im[835] = 0.1268 +ij[835] = 2 +id[836] = "2132-06-27T23:02:01" +ik[836] = 0 +il[836] = -110 +im[836] = 0.0457 +ij[836] = 1 +id[837] = "2132-10-22T10:04:02" +ik[837] = -1 +il[837] = 13 +im[837] = 0.1218 +ij[837] = 2 +id[838] = "2132-10-23T21:50:02" +ik[838] = 0 +il[838] = 0 +im[838] = 0.0445 +ij[838] = 1 +id[839] = "2133-02-06T13:11:03" +ik[839] = 0 +il[839] = 179 +im[839] = 0.0656 +ij[839] = 1 +id[840] = "2133-02-08T11:01:03" +ik[840] = 1 +il[840] = 165 +im[840] = 0.152 +ij[840] = 2 +id[841] = "2133-06-07T19:40:01" +ik[841] = 0 +il[841] = -86 +im[841] = 0.2242 +ij[841] = 1 +id[842] = "2133-06-07T22:32:01" +ik[842] = 1 +il[842] = -87 +im[842] = 0.2282 +ij[842] = 2 +id[843] = "2133-10-05T18:28:02" +ik[843] = -1 +il[843] = 18 +im[843] = 0.2322 +ij[843] = 2 +id[844] = "2133-10-07T19:40:02" +ik[844] = 0 +il[844] = 3 +im[844] = 0.2228 +ij[844] = 1 +id[845] = "2134-01-21T10:19:03" +ik[845] = 0 +il[845] = -179 +im[845] = 0.1564 +ij[845] = 1 +id[846] = "2134-01-22T18:28:03" +ik[846] = 1 +il[846] = 171 +im[846] = 0.1002 +ij[846] = 2 +id[847] = "2134-05-18T19:40:01" +ik[847] = 0 +il[847] = -63 +im[847] = 0.2425 +ij[847] = 1 +id[848] = "2134-05-20T11:30:01" +ik[848] = 1 +il[848] = -75 +im[848] = 0.1746 +ij[848] = 2 +id[849] = "2134-09-18T18:13:02" +ik[849] = -1 +il[849] = 25 +im[849] = 0.0254 +ij[849] = 2 +id[850] = "2134-09-21T08:52:02" +ik[850] = 0 +il[850] = 7 +im[850] = 0.148 +ij[850] = 1 +id[851] = "2135-01-05T13:26:03" +ik[851] = 0 +il[851] = -179 +im[851] = 0.1967 +ij[851] = 1 +id[852] = "2135-01-06T08:23:03" +ik[852] = 1 +il[852] = 175 +im[852] = 0.2086 +ij[852] = 2 +id[853] = "2135-04-29T08:38:01" +ik[853] = 0 +il[853] = -44 +im[853] = 0.0786 +ij[853] = 1 +id[854] = "2135-05-02T02:23:01" +ik[854] = 1 +il[854] = -62 +im[854] = 0.2213 +ij[854] = 2 +id[855] = "2135-09-01T07:54:02" +ik[855] = -1 +il[855] = 35 +im[855] = 0.2434 +ij[855] = 2 +id[856] = "2135-09-04T10:19:02" +ik[856] = 0 +il[856] = 13 +im[856] = 0.1718 +ij[856] = 1 +id[857] = "2135-12-20T19:55:03" +ik[857] = 0 +il[857] = 180 +im[857] = 0.0284 +ij[857] = 1 +id[858] = "2135-12-21T03:06:03" +ik[858] = 1 +il[858] = 179 +im[858] = 0.0378 +ij[858] = 2 +id[859] = "2136-04-09T15:21:01" +ik[859] = 0 +il[859] = -28 +im[859] = 0.257 +ij[859] = 1 +id[860] = "2136-04-12T20:37:01" +ik[860] = 1 +il[860] = -50 +im[860] = 0.1796 +ij[860] = 2 +id[861] = "2136-08-13T11:01:02" +ik[861] = -1 +il[861] = 47 +im[861] = 0.0585 +ij[861] = 2 +id[862] = "2136-08-16T19:40:02" +ik[862] = 0 +il[862] = 23 +im[862] = 0.2101 +ij[862] = 1 +id[863] = "2136-12-03T23:30:03" +ik[863] = -1 +il[863] = -177 +im[863] = 0.1751 +ij[863] = 2 +id[864] = "2136-12-04T04:04:03" +ik[864] = 0 +il[864] = 180 +im[864] = 0.1689 +ij[864] = 1 +id[865] = "2137-03-22T16:04:01" +ik[865] = 0 +il[865] = -16 +im[865] = 0.0477 +ij[865] = 1 +id[866] = "2137-03-25T20:23:01" +ik[866] = 1 +il[866] = -38 +im[866] = 0.2063 +ij[866] = 2 +id[867] = "2137-07-26T05:30:02" +ik[867] = -1 +il[867] = 60 +im[867] = 0.2479 +ij[867] = 2 +id[868] = "2137-07-29T09:21:02" +ik[868] = 0 +il[868] = 38 +im[868] = 0.1717 +ij[868] = 1 +id[869] = "2137-11-17T19:54:03" +ik[869] = -1 +il[869] = -173 +im[869] = 0.1758 +ij[869] = 2 +id[870] = "2137-11-18T11:59:03" +ik[870] = 0 +il[870] = 179 +im[870] = 0.1935 +ij[870] = 1 +id[871] = "2138-03-05T09:21:01" +ik[871] = 0 +il[871] = -8 +im[871] = 0.2232 +ij[871] = 1 +id[872] = "2138-03-08T04:04:01" +ik[872] = 1 +il[872] = -28 +im[872] = 0.1362 +ij[872] = 2 +id[873] = "2138-07-07T18:42:02" +ik[873] = -1 +il[873] = 73 +im[873] = 0.0357 +ij[873] = 2 +id[874] = "2138-07-10T01:40:02" +ik[874] = 0 +il[874] = 57 +im[874] = 0.1413 +ij[874] = 1 +id[875] = "2138-11-01T13:25:03" +ik[875] = -1 +il[875] = -169 +im[875] = 0.0704 +ij[875] = 2 +id[876] = "2138-11-02T17:31:03" +ik[876] = 0 +il[876] = -180 +im[876] = 0.0178 +ij[876] = 1 +id[877] = "2139-02-16T15:50:01" +ik[877] = 0 +il[877] = -3 +im[877] = 0.1172 +ij[877] = 1 +id[878] = "2139-02-18T21:35:01" +ik[878] = 1 +il[878] = -19 +im[878] = 0.2043 +ij[878] = 2 +id[879] = "2139-06-19T06:13:02" +ik[879] = -1 +il[879] = 86 +im[879] = 0.2548 +ij[879] = 2 +id[880] = "2139-06-20T02:23:02" +ik[880] = 0 +il[880] = 80 +im[880] = 0.2546 +ij[880] = 1 +id[881] = "2139-10-16T01:40:03" +ik[881] = -1 +il[881] = -165 +im[881] = 0.2244 +ij[881] = 2 +id[882] = "2139-10-17T18:57:03" +ik[882] = 0 +il[882] = -179 +im[882] = 0.1919 +ij[882] = 1 +id[883] = "2140-01-31T08:23:01" +ik[883] = 0 +il[883] = 0 +im[883] = 0.1204 +ij[883] = 1 +id[884] = "2140-02-01T00:13:01" +ik[884] = 1 +il[884] = -5 +im[884] = 0.0887 +ij[884] = 2 +id[885] = "2140-05-29T23:02:02" +ik[885] = 0 +il[885] = 104 +im[885] = 0.1034 +ij[885] = 1 +id[886] = "2140-05-30T18:28:02" +ik[886] = 1 +il[886] = 98 +im[886] = 0.0589 +ij[886] = 2 +id[887] = "2140-09-28T06:42:03" +ik[887] = -1 +il[887] = -159 +im[887] = 0.0641 +ij[887] = 2 +id[888] = "2140-09-30T13:26:03" +ik[888] = 0 +il[888] = -176 +im[888] = 0.1716 +ij[888] = 1 +id[889] = "2141-01-14T08:23:01" +ik[889] = 0 +il[889] = 1 +im[889] = 0.2059 +ij[889] = 1 +id[890] = "2141-01-15T10:47:01" +ik[890] = 1 +il[890] = -1 +im[890] = 0.2145 +ij[890] = 2 +id[891] = "2141-05-10T03:35:02" +ik[891] = 0 +il[891] = 126 +im[891] = 0.199 +ij[891] = 1 +id[892] = "2141-05-12T08:08:02" +ik[892] = 1 +il[892] = 111 +im[892] = 0.258 +ij[892] = 2 +id[893] = "2141-09-11T02:23:03" +ik[893] = -1 +il[893] = -151 +im[893] = 0.219 +ij[893] = 2 +id[894] = "2141-09-13T22:04:03" +ik[894] = 0 +il[894] = -171 +im[894] = 0.1066 +ij[894] = 1 +id[895] = "2141-12-29T12:57:01" +ik[895] = 0 +il[895] = 1 +im[895] = 0.054 +ij[895] = 1 +id[896] = "2141-12-30T03:06:01" +ik[896] = 1 +il[896] = 3 +im[896] = 0.0839 +ij[896] = 2 +id[897] = "2142-04-20T23:45:02" +ik[897] = 0 +il[897] = 144 +im[897] = 0.2297 +ij[897] = 1 +id[898] = "2142-04-23T00:13:02" +ik[898] = 1 +il[898] = 130 +im[898] = 0.1441 +ij[898] = 2 +id[899] = "2142-08-24T11:16:03" +ik[899] = -1 +il[899] = -140 +im[899] = 0.1419 +ij[899] = 2 +id[900] = "2142-08-27T17:16:03" +ik[900] = 0 +il[900] = -163 +im[900] = 0.2387 +ij[900] = 1 +id[901] = "2142-12-13T20:38:01" +ik[901] = 0 +il[901] = 0 +im[901] = 0.1419 +ij[901] = 1 +id[902] = "2142-12-13T22:47:01" +ik[902] = 1 +il[902] = 7 +im[902] = 0.1383 +ij[902] = 2 +id[903] = "2143-04-02T14:23:02" +ik[903] = 0 +il[903] = 158 +im[903] = 0.1398 +ij[903] = 1 +id[904] = "2143-04-05T20:23:02" +ik[904] = 1 +il[904] = 135 +im[904] = 0.2519 +ij[904] = 2 +id[905] = "2143-08-06T10:32:03" +ik[905] = -1 +il[905] = -128 +im[905] = 0.2262 +ij[905] = 2 +id[906] = "2143-08-09T18:43:03" +ik[906] = 0 +il[906] = -151 +im[906] = 0.0686 +ij[906] = 1 +id[907] = "2143-11-27T19:25:01" +ik[907] = -1 +il[907] = 11 +im[907] = 0.1897 +ij[907] = 2 +id[908] = "2143-11-28T04:47:01" +ik[908] = 0 +il[908] = 0 +im[908] = 0.1979 +ij[908] = 1 +id[909] = "2144-03-14T22:19:02" +ik[909] = 0 +il[909] = 168 +im[909] = 0.2092 +ij[909] = 1 +id[910] = "2144-03-17T23:30:02" +ik[910] = 1 +il[910] = 146 +im[910] = 0.0671 +ij[910] = 2 +id[911] = "2144-07-18T02:08:03" +ik[911] = -1 +il[911] = -115 +im[911] = 0.1355 +ij[911] = 2 +id[912] = "2144-07-20T23:16:03" +ik[912] = 0 +il[912] = -134 +im[912] = 0.2469 +ij[912] = 1 +id[913] = "2144-11-10T14:52:01" +ik[913] = -1 +il[913] = 15 +im[913] = 0.0124 +ij[913] = 2 +id[914] = "2144-11-11T11:59:01" +ik[914] = 0 +il[914] = -1 +im[914] = 0.0405 +ij[914] = 1 +id[915] = "2145-02-25T21:35:02" +ik[915] = 0 +il[915] = 175 +im[915] = 0.1803 +ij[915] = 1 +id[916] = "2145-02-28T11:16:02" +ik[916] = 1 +il[916] = 156 +im[916] = 0.2429 +ij[916] = 2 +id[917] = "2145-06-29T14:23:03" +ik[917] = -1 +il[917] = -102 +im[917] = 0.242 +ij[917] = 2 +id[918] = "2145-07-01T07:55:03" +ik[918] = 0 +il[918] = -113 +im[918] = 0.181 +ij[918] = 1 +id[919] = "2145-10-25T06:28:01" +ik[919] = -1 +il[919] = 19 +im[919] = 0.1987 +ij[919] = 2 +id[920] = "2145-10-26T16:04:01" +ik[920] = 0 +il[920] = 0 +im[920] = 0.1563 +ij[920] = 1 +id[921] = "2146-02-09T08:52:02" +ik[921] = 0 +il[921] = 179 +im[921] = 0.0884 +ij[921] = 1 +id[922] = "2146-02-11T08:37:02" +ik[922] = 1 +il[922] = 164 +im[922] = 0.027 +ij[922] = 2 +id[923] = "2146-06-11T01:54:03" +ik[923] = -1 +il[923] = -89 +im[923] = 0.0866 +ij[923] = 2 +id[924] = "2146-06-11T05:02:03" +ik[924] = 0 +il[924] = -90 +im[924] = 0.0942 +ij[924] = 1 +id[925] = "2146-10-08T16:04:01" +ik[925] = -1 +il[925] = 23 +im[925] = 0.116 +ij[925] = 2 +id[926] = "2146-10-10T14:52:01" +ik[926] = 0 +il[926] = 2 +im[926] = 0.1885 +ij[926] = 1 +id[927] = "2147-01-24T04:47:02" +ik[927] = 0 +il[927] = -180 +im[927] = 0.2217 +ij[927] = 1 +id[928] = "2147-01-25T14:52:02" +ik[928] = 1 +il[928] = 170 +im[928] = 0.2183 +ij[928] = 2 +id[929] = "2147-05-22T03:50:03" +ik[929] = 0 +il[929] = -67 +im[929] = 0.2558 +ij[929] = 1 +id[930] = "2147-05-23T14:37:03" +ik[930] = 1 +il[930] = -76 +im[930] = 0.2478 +ij[930] = 2 +id[931] = "2147-09-21T17:01:01" +ik[931] = -1 +il[931] = 27 +im[931] = 0.159 +ij[931] = 2 +id[932] = "2147-09-24T05:45:01" +ik[932] = 0 +il[932] = 6 +im[932] = 0.0402 +ij[932] = 1 +id[933] = "2148-01-08T07:11:02" +ik[933] = 0 +il[933] = -179 +im[933] = 0.1007 +ij[933] = 1 +id[934] = "2148-01-09T04:04:02" +ik[934] = 1 +il[934] = 174 +im[934] = 0.141 +ij[934] = 2 +id[935] = "2148-05-01T14:38:03" +ik[935] = 0 +il[935] = -46 +im[935] = 0.1202 +ij[935] = 1 +id[936] = "2148-05-04T05:16:03" +ik[936] = 1 +il[936] = -64 +im[936] = 0.0436 +ij[936] = 2 +id[937] = "2148-09-03T08:23:01" +ik[937] = -1 +il[937] = 34 +im[937] = 0.1947 +ij[937] = 2 +id[938] = "2148-09-06T09:07:01" +ik[938] = 0 +il[938] = 12 +im[938] = 0.2241 +ij[938] = 1 +id[939] = "2148-12-22T13:11:02" +ik[939] = 0 +il[939] = -179 +im[939] = 0.1247 +ij[939] = 1 +id[940] = "2148-12-22T22:18:02" +ik[940] = 1 +il[940] = 178 +im[940] = 0.1067 +ij[940] = 2 +id[941] = "2149-04-12T18:28:03" +ik[941] = 0 +il[941] = -30 +im[941] = 0.214 +ij[941] = 1 +id[942] = "2149-04-15T22:47:03" +ik[942] = 1 +il[942] = -52 +im[942] = 0.2448 +ij[942] = 2 +id[943] = "2149-08-16T12:56:01" +ik[943] = -1 +il[943] = 45 +im[943] = 0.1554 +ij[943] = 2 +id[944] = "2149-08-19T21:07:01" +ik[944] = 0 +il[944] = 22 +im[944] = 0.0463 +ij[944] = 1 +id[945] = "2149-12-06T18:42:02" +ik[945] = -1 +il[945] = -178 +im[945] = 0.2097 +ij[945] = 2 +id[946] = "2149-12-06T21:21:02" +ik[946] = 0 +il[946] = 180 +im[946] = 0.2111 +ij[946] = 1 +id[947] = "2150-03-25T16:33:03" +ik[947] = 0 +il[947] = -17 +im[947] = 0.1627 +ij[947] = 1 +id[948] = "2150-03-28T21:35:03" +ik[948] = 1 +il[948] = -40 +im[948] = 0.0386 +ij[948] = 2 +id[949] = "2150-07-29T08:37:01" +ik[949] = -1 +il[949] = 58 +im[949] = 0.2224 +ij[949] = 2 +id[950] = "2150-08-01T13:55:01" +ik[950] = 0 +il[950] = 36 +im[950] = 0.2515 +ij[950] = 1 +id[951] = "2150-11-20T15:06:02" +ik[951] = -1 +il[951] = -174 +im[951] = 0.0554 +ij[951] = 2 +id[952] = "2150-11-21T05:31:02" +ik[952] = 0 +il[952] = 179 +im[952] = 0.0859 +ij[952] = 1 +id[953] = "2151-03-08T07:26:03" +ik[953] = 0 +il[953] = -9 +im[953] = 0.2234 +ij[953] = 1 +id[954] = "2151-03-11T04:04:03" +ik[954] = 1 +il[954] = -29 +im[954] = 0.239 +ij[954] = 2 +id[955] = "2151-07-10T22:18:01" +ik[955] = -1 +il[955] = 71 +im[955] = 0.1835 +ij[955] = 2 +id[956] = "2151-07-13T09:21:01" +ik[956] = 0 +il[956] = 54 +im[956] = 0.0495 +ij[956] = 1 +id[957] = "2151-11-04T09:06:02" +ik[957] = -1 +il[957] = -170 +im[957] = 0.1756 +ij[957] = 2 +id[958] = "2151-11-05T11:31:02" +ik[958] = 0 +il[958] = -180 +im[958] = 0.1337 +ij[958] = 1 +id[959] = "2152-02-19T12:14:03" +ik[959] = 0 +il[959] = -3 +im[959] = 0.062 +ij[959] = 1 +id[960] = "2152-02-21T20:08:03" +ik[960] = 1 +il[960] = -20 +im[960] = 0.0904 +ij[960] = 2 +id[961] = "2152-06-21T09:49:01" +ik[961] = -1 +il[961] = 84 +im[961] = 0.205 +ij[961] = 2 +id[962] = "2152-06-22T11:45:01" +ik[962] = 0 +il[962] = 77 +im[962] = 0.2439 +ij[962] = 1 +id[963] = "2152-10-17T22:32:02" +ik[963] = -1 +il[963] = -166 +im[963] = 0.1593 +ij[963] = 2 +id[964] = "2152-10-19T13:40:02" +ik[964] = 0 +il[964] = -179 +im[964] = 0.2047 +ij[964] = 1 +id[965] = "2153-02-02T03:35:03" +ik[965] = 0 +il[965] = 0 +im[965] = 0.2322 +ij[965] = 1 +id[966] = "2153-02-03T21:20:03" +ik[966] = 1 +il[966] = -13 +im[966] = 0.2044 +ij[966] = 2 +id[967] = "2153-06-02T08:09:01" +ik[967] = 0 +il[967] = 100 +im[967] = 0.2207 +ij[967] = 1 +id[968] = "2153-06-02T21:49:01" +ik[968] = 1 +il[968] = 97 +im[968] = 0.1985 +ij[968] = 2 +id[969] = "2153-10-01T04:32:02" +ik[969] = -1 +il[969] = -160 +im[969] = 0.0848 +ij[969] = 2 +id[970] = "2153-10-03T09:21:02" +ik[970] = 0 +il[970] = -176 +im[970] = 0.038 +ij[970] = 1 +id[971] = "2154-01-17T02:38:03" +ik[971] = 0 +il[971] = 0 +im[971] = 0.1404 +ij[971] = 1 +id[972] = "2154-01-18T06:56:03" +ik[972] = 1 +il[972] = -8 +im[972] = 0.1865 +ij[972] = 2 +id[973] = "2154-05-13T11:02:01" +ik[973] = 0 +il[973] = 122 +im[973] = 0.0514 +ij[973] = 1 +id[974] = "2154-05-15T11:16:01" +ik[974] = 1 +il[974] = 109 +im[974] = 0.1627 +ij[974] = 2 +id[975] = "2154-09-14T01:40:02" +ik[975] = -1 +il[975] = -152 +im[975] = 0.2149 +ij[975] = 2 +id[976] = "2154-09-16T19:40:02" +ik[976] = 0 +il[976] = -172 +im[976] = 0.1976 +ij[976] = 1 +id[977] = "2155-01-01T06:43:03" +ik[977] = 0 +il[977] = 1 +im[977] = 0.1166 +ij[977] = 1 +id[978] = "2155-01-01T22:32:03" +ik[978] = 1 +il[978] = -4 +im[978] = 0.0839 +ij[978] = 2 +id[979] = "2155-04-24T04:33:01" +ik[979] = 0 +il[979] = 141 +im[979] = 0.2473 +ij[979] = 1 +id[980] = "2155-04-27T02:52:01" +ik[980] = 1 +il[980] = 121 +im[980] = 0.1961 +ij[980] = 2 +id[981] = "2155-08-27T12:28:02" +ik[981] = -1 +il[981] = -142 +im[981] = 0.061 +ij[981] = 2 +id[982] = "2155-08-30T17:16:02" +ik[982] = 0 +il[982] = -164 +im[982] = 0.1205 +ij[982] = 1 +id[983] = "2155-12-16T13:55:03" +ik[983] = 0 +il[983] = 0 +im[983] = 0.2247 +ij[983] = 1 +id[984] = "2155-12-16T17:44:03" +ik[984] = 1 +il[984] = 0 +im[984] = 0.2252 +ij[984] = 2 +id[985] = "2156-04-04T16:19:01" +ik[985] = 0 +il[985] = 156 +im[985] = 0.0647 +ij[985] = 1 +id[986] = "2156-04-07T22:18:01" +ik[986] = 1 +il[986] = 133 +im[986] = 0.1224 +ij[986] = 2 +id[987] = "2156-08-08T12:56:02" +ik[987] = -1 +il[987] = -130 +im[987] = 0.2439 +ij[987] = 2 +id[988] = "2156-08-11T21:35:02" +ik[988] = 0 +il[988] = -153 +im[988] = 0.1866 +ij[988] = 1 +id[989] = "2156-11-29T14:37:03" +ik[989] = -1 +il[989] = 4 +im[989] = 0.1069 +ij[989] = 2 +id[990] = "2156-11-29T22:04:03" +ik[990] = 0 +il[990] = 0 +im[990] = 0.1216 +ij[990] = 1 +id[991] = "2157-03-17T21:50:01" +ik[991] = 0 +il[991] = 167 +im[991] = 0.2389 +ij[991] = 1 +id[992] = "2157-03-20T00:13:01" +ik[992] = 1 +il[992] = 152 +im[992] = 0.2192 +ij[992] = 2 +id[993] = "2157-07-21T05:30:02" +ik[993] = -1 +il[993] = -117 +im[993] = 0.0861 +ij[993] = 2 +id[994] = "2157-07-24T05:16:02" +ik[994] = 0 +il[994] = -137 +im[994] = 0.1037 +ij[994] = 1 +id[995] = "2157-11-13T10:18:03" +ik[995] = -1 +il[995] = 8 +im[995] = 0.1552 +ij[995] = 2 +id[996] = "2157-11-14T05:45:03" +ik[996] = 0 +il[996] = -1 +im[996] = 0.1198 +ij[996] = 1 +id[997] = "2158-02-28T18:57:01" +ik[997] = 0 +il[997] = 174 +im[997] = 0.0073 +ij[997] = 1 +id[998] = "2158-03-03T10:32:01" +ik[998] = 1 +il[998] = 156 +im[998] = 0.1426 +ij[998] = 2 +id[999] = "2158-07-02T17:59:02" +ik[999] = -1 +il[999] = -103 +im[999] = 0.2641 +ij[999] = 2 +id[1000] = "2158-07-04T16:19:02" +ik[1000] = 0 +il[1000] = -117 +im[1000] = 0.2681 +ij[1000] = 1 +id[1001] = "2158-10-28T02:37:03" +ik[1001] = -1 +il[1001] = 12 +im[1001] = 0.202 +ij[1001] = 2 +id[1002] = "2158-10-29T10:19:03" +ik[1002] = 0 +il[1002] = 0 +im[1002] = 0.223 +ij[1002] = 1 +id[1003] = "2159-02-12T04:47:01" +ik[1003] = 0 +il[1003] = 178 +im[1003] = 0.2223 +ij[1003] = 1 +id[1004] = "2159-02-14T06:27:01" +ik[1004] = 1 +il[1004] = 163 +im[1004] = 0.1595 +ij[1004] = 2 +id[1005] = "2159-06-14T05:30:02" +ik[1005] = -1 +il[1005] = -91 +im[1005] = 0.1155 +ij[1005] = 2 +id[1006] = "2159-06-14T14:23:02" +ik[1006] = 0 +il[1006] = -93 +im[1006] = 0.0927 +ij[1006] = 1 +id[1007] = "2159-10-11T13:11:03" +ik[1007] = -1 +il[1007] = 16 +im[1007] = 0.0145 +ij[1007] = 2 +id[1008] = "2159-10-13T10:04:03" +ik[1008] = 0 +il[1008] = 2 +im[1008] = 0.092 +ij[1008] = 1 +id[1009] = "2160-01-26T23:31:01" +ik[1009] = 0 +il[1009] = -180 +im[1009] = 0.1612 +ij[1009] = 1 +id[1010] = "2160-01-28T11:30:01" +ik[1010] = 1 +il[1010] = 169 +im[1010] = 0.2086 +ij[1010] = 2 +id[1011] = "2160-05-24T12:14:02" +ik[1011] = 0 +il[1011] = -70 +im[1011] = 0.2084 +ij[1011] = 1 +id[1012] = "2160-05-25T17:59:02" +ik[1012] = 1 +il[1012] = -78 +im[1012] = 0.2519 +ij[1012] = 2 +id[1013] = "2160-09-23T15:35:03" +ik[1013] = -1 +il[1013] = 23 +im[1013] = 0.2219 +ij[1013] = 2 +id[1014] = "2160-09-26T02:09:03" +ik[1014] = 0 +il[1014] = 5 +im[1014] = 0.1726 +ij[1014] = 1 +id[1015] = "2161-01-10T00:57:01" +ik[1015] = 0 +il[1015] = -179 +im[1015] = 0.0975 +ij[1015] = 1 +id[1016] = "2161-01-10T23:59:01" +ik[1016] = 1 +il[1016] = 174 +im[1016] = 0.0451 +ij[1016] = 2 +id[1017] = "2161-05-04T20:52:02" +ik[1017] = 0 +il[1017] = -49 +im[1017] = 0.2272 +ij[1017] = 1 +id[1018] = "2161-05-07T08:08:02" +ik[1018] = 1 +il[1018] = -66 +im[1018] = 0.1172 +ij[1018] = 2 +id[1019] = "2161-09-06T08:23:03" +ik[1019] = -1 +il[1019] = 32 +im[1019] = 0.0525 +ij[1019] = 2 +id[1020] = "2161-09-09T07:40:03" +ik[1020] = 0 +il[1020] = 11 +im[1020] = 0.1862 +ij[1020] = 1 +id[1021] = "2161-12-25T06:43:01" +ik[1021] = 0 +il[1021] = -179 +im[1021] = 0.2271 +ij[1021] = 1 +id[1022] = "2161-12-25T17:30:01" +ik[1022] = 1 +il[1022] = 178 +im[1022] = 0.223 +ij[1022] = 2 +id[1023] = "2162-04-15T21:50:02" +ik[1023] = 0 +il[1023] = -32 +im[1023] = 0.0655 +ij[1023] = 1 +id[1024] = "2162-04-19T01:11:02" +ik[1024] = 1 +il[1024] = -54 +im[1024] = 0.216 +ij[1024] = 2 +id[1025] = "2162-08-19T14:37:03" +ik[1025] = -1 +il[1025] = 43 +im[1025] = 0.222 +ij[1025] = 2 +id[1026] = "2162-08-22T22:19:03" +ik[1026] = 0 +il[1026] = 20 +im[1026] = 0.093 +ij[1026] = 1 +id[1027] = "2162-12-09T13:39:01" +ik[1027] = -1 +il[1027] = -178 +im[1027] = 0.1396 +ij[1027] = 2 +id[1028] = "2162-12-09T14:38:01" +ik[1028] = 0 +il[1028] = 180 +im[1028] = 0.1415 +ij[1028] = 1 +id[1029] = "2163-03-28T17:16:02" +ik[1029] = 0 +il[1029] = -19 +im[1029] = 0.2269 +ij[1029] = 1 +id[1030] = "2163-03-31T23:01:02" +ik[1030] = 1 +il[1030] = -42 +im[1030] = 0.1083 +ij[1030] = 2 +id[1031] = "2163-08-01T11:15:03" +ik[1031] = -1 +il[1031] = 56 +im[1031] = 0.0388 +ij[1031] = 2 +id[1032] = "2163-08-04T17:59:03" +ik[1032] = 0 +il[1032] = 33 +im[1032] = 0.198 +ij[1032] = 1 +id[1033] = "2163-11-23T10:18:01" +ik[1033] = -1 +il[1033] = -174 +im[1033] = 0.132 +ij[1033] = 2 +id[1034] = "2163-11-23T22:47:01" +ik[1034] = 0 +il[1034] = 180 +im[1034] = 0.1068 +ij[1034] = 1 +id[1035] = "2164-03-10T05:59:02" +ik[1035] = 0 +il[1035] = -10 +im[1035] = 0.0632 +ij[1035] = 1 +id[1036] = "2164-03-13T04:18:02" +ik[1036] = 1 +il[1036] = -31 +im[1036] = 0.1971 +ij[1036] = 2 +id[1037] = "2164-07-13T01:39:03" +ik[1037] = -1 +il[1037] = 69 +im[1037] = 0.2533 +ij[1037] = 2 +id[1038] = "2164-07-15T16:33:03" +ik[1038] = 0 +il[1038] = 51 +im[1038] = 0.1723 +ij[1038] = 1 +id[1039] = "2164-11-06T04:47:01" +ik[1039] = -1 +il[1039] = -170 +im[1039] = 0.2258 +ij[1039] = 2 +id[1040] = "2164-11-07T05:31:01" +ik[1040] = 0 +il[1040] = 180 +im[1040] = 0.2292 +ij[1040] = 1 +id[1041] = "2165-02-21T08:52:02" +ik[1041] = 0 +il[1041] = -4 +im[1041] = 0.1852 +ij[1041] = 1 +id[1042] = "2165-02-23T18:42:02" +ik[1042] = 1 +il[1042] = -22 +im[1042] = 0.0813 +ij[1042] = 2 +id[1043] = "2165-06-24T13:25:03" +ik[1043] = -1 +il[1043] = 82 +im[1043] = 0.0043 +ij[1043] = 2 +id[1044] = "2165-06-25T20:52:03" +ik[1044] = 0 +il[1044] = 73 +im[1044] = 0.0864 +ij[1044] = 1 +id[1045] = "2165-10-20T18:56:01" +ik[1045] = -1 +il[1045] = -166 +im[1045] = 0.0489 +ij[1045] = 2 +id[1046] = "2165-10-22T08:23:01" +ik[1046] = 0 +il[1046] = -180 +im[1046] = 0.1276 +ij[1046] = 1 +id[1047] = "2166-02-04T22:47:02" +ik[1047] = 0 +il[1047] = -1 +im[1047] = 0.1796 +ij[1047] = 1 +id[1048] = "2166-02-06T18:42:02" +ik[1048] = 1 +il[1048] = -14 +im[1048] = 0.2177 +ij[1048] = 2 +id[1049] = "2166-06-05T17:16:03" +ik[1049] = 0 +il[1049] = 97 +im[1049] = 0.28 +ij[1049] = 1 +id[1050] = "2166-06-06T01:11:03" +ik[1050] = 1 +il[1050] = 95 +im[1050] = 0.2799 +ij[1050] = 2 +id[1051] = "2166-10-04T02:23:01" +ik[1051] = -1 +il[1051] = -162 +im[1051] = 0.2155 +ij[1051] = 2 +id[1052] = "2166-10-06T05:02:01" +ik[1052] = 0 +il[1052] = -177 +im[1052] = 0.1472 +ij[1052] = 1 +id[1053] = "2167-01-19T20:52:02" +ik[1053] = 0 +il[1053] = 1 +im[1053] = 0.0641 +ij[1053] = 1 +id[1054] = "2167-01-21T03:06:02" +ik[1054] = 1 +il[1054] = -9 +im[1054] = 0.0096 +ij[1054] = 2 +id[1055] = "2167-05-16T18:28:03" +ik[1055] = 0 +il[1055] = 119 +im[1055] = 0.134 +ij[1055] = 1 +id[1056] = "2167-05-18T14:23:03" +ik[1056] = 1 +il[1056] = 107 +im[1056] = 0.0216 +ij[1056] = 2 +id[1057] = "2167-09-17T00:56:01" +ik[1057] = -1 +il[1057] = -153 +im[1057] = 0.1456 +ij[1057] = 2 +id[1058] = "2167-09-19T17:02:01" +ik[1058] = 0 +il[1058] = -173 +im[1058] = 0.2274 +ij[1058] = 1 +id[1059] = "2168-01-04T00:28:02" +ik[1059] = 0 +il[1059] = 1 +im[1059] = 0.2132 +ij[1059] = 1 +id[1060] = "2168-01-04T17:59:02" +ik[1060] = 1 +il[1060] = -5 +im[1060] = 0.1979 +ij[1060] = 2 +id[1061] = "2168-04-26T09:35:03" +ik[1061] = 0 +il[1061] = 139 +im[1061] = 0.1955 +ij[1061] = 1 +id[1062] = "2168-04-29T05:30:03" +ik[1062] = 1 +il[1062] = 119 +im[1062] = 0.2702 +ij[1062] = 2 +id[1063] = "2168-08-29T13:11:01" +ik[1063] = -1 +il[1063] = -143 +im[1063] = 0.1788 +ij[1063] = 2 +id[1064] = "2168-09-01T16:47:01" +ik[1064] = 0 +il[1064] = -166 +im[1064] = 0.0337 +ij[1064] = 1 +id[1065] = "2168-12-18T07:11:02" +ik[1065] = 0 +il[1065] = 0 +im[1065] = 0.1503 +ij[1065] = 1 +id[1066] = "2168-12-18T12:56:02" +ik[1066] = 1 +il[1066] = -1 +im[1066] = 0.1597 +ij[1066] = 2 +id[1067] = "2169-04-07T18:28:03" +ik[1067] = 0 +il[1067] = 154 +im[1067] = 0.1884 +ij[1067] = 1 +id[1068] = "2169-04-11T00:27:03" +ik[1068] = 1 +il[1068] = 132 +im[1068] = 0.0304 +ij[1068] = 2 +id[1069] = "2169-08-11T15:06:01" +ik[1069] = -1 +il[1069] = -132 +im[1069] = 0.1529 +ij[1069] = 2 +id[1070] = "2169-08-14T23:45:01" +ik[1070] = 0 +il[1070] = -155 +im[1070] = 0.2416 +ij[1070] = 1 +id[1071] = "2169-12-02T09:35:02" +ik[1071] = -1 +il[1071] = 3 +im[1071] = 0.0949 +ij[1071] = 2 +id[1072] = "2169-12-02T15:35:02" +ik[1072] = 0 +il[1072] = 0 +im[1072] = 0.0821 +ij[1072] = 1 +id[1073] = "2170-03-20T21:35:03" +ik[1073] = 0 +il[1073] = 165 +im[1073] = 0.1473 +ij[1073] = 1 +id[1074] = "2170-03-24T00:56:03" +ik[1074] = 1 +il[1074] = 143 +im[1074] = 0.2406 +ij[1074] = 2 +id[1075] = "2170-07-24T08:37:01" +ik[1075] = -1 +il[1075] = -119 +im[1075] = 0.1891 +ij[1075] = 2 +id[1076] = "2170-07-27T10:47:01" +ik[1076] = 0 +il[1076] = -140 +im[1076] = 0.0481 +ij[1076] = 1 +id[1077] = "2170-11-16T05:30:02" +ik[1077] = -1 +il[1077] = 7 +im[1077] = 0.2249 +ij[1077] = 2 +id[1078] = "2170-11-16T23:16:02" +ik[1078] = 0 +il[1078] = -1 +im[1078] = 0.218 +ij[1078] = 1 +id[1079] = "2171-03-03T16:47:03" +ik[1079] = 0 +il[1079] = 173 +im[1079] = 0.1381 +ij[1079] = 1 +id[1080] = "2171-03-06T10:03:03" +ik[1080] = 1 +il[1080] = 153 +im[1080] = 0.0366 +ij[1080] = 2 +id[1081] = "2171-07-05T21:35:01" +ik[1081] = -1 +il[1081] = -105 +im[1081] = 0.1239 +ij[1081] = 2 +id[1082] = "2171-07-08T00:43:01" +ik[1082] = 0 +il[1082] = -120 +im[1082] = 0.2155 +ij[1082] = 1 +id[1083] = "2171-10-30T22:32:02" +ik[1083] = -1 +il[1083] = 11 +im[1083] = 0.083 +ij[1083] = 2 +id[1084] = "2171-11-01T04:33:02" +ik[1084] = 0 +il[1084] = 0 +im[1084] = 0.1442 +ij[1084] = 1 +id[1085] = "2172-02-15T00:43:03" +ik[1085] = 0 +il[1085] = 178 +im[1085] = 0.1971 +ij[1085] = 1 +id[1086] = "2172-02-17T04:47:03" +ik[1086] = 1 +il[1086] = 162 +im[1086] = 0.2191 +ij[1086] = 2 +id[1087] = "2172-06-16T09:06:01" +ik[1087] = -1 +il[1087] = -93 +im[1087] = 0.2339 +ij[1087] = 2 +id[1088] = "2172-06-16T23:59:01" +ik[1088] = 0 +il[1088] = -97 +im[1088] = 0.2125 +ij[1088] = 1 +id[1089] = "2172-10-13T10:03:02" +ik[1089] = -1 +il[1089] = 15 +im[1089] = 0.1903 +ij[1089] = 2 +id[1090] = "2172-10-15T05:02:02" +ik[1090] = 0 +il[1090] = 2 +im[1090] = 0.115 +ij[1090] = 1 +id[1091] = "2173-01-28T18:28:03" +ik[1091] = 0 +il[1091] = -180 +im[1091] = 0.0356 +ij[1091] = 1 +id[1092] = "2173-01-30T08:23:03" +ik[1092] = 1 +il[1092] = 168 +im[1092] = 0.0765 +ij[1092] = 2 +id[1093] = "2173-05-27T21:07:01" +ik[1093] = 0 +il[1093] = -73 +im[1093] = 0.0394 +ij[1093] = 1 +id[1094] = "2173-05-28T21:20:01" +ik[1094] = 1 +il[1094] = -80 +im[1094] = 0.0988 +ij[1094] = 2 +id[1095] = "2173-09-26T14:08:02" +ik[1095] = -1 +il[1095] = 22 +im[1095] = 0.1966 +ij[1095] = 2 +id[1096] = "2173-09-28T22:33:02" +ik[1096] = 0 +il[1096] = 5 +im[1096] = 0.2345 +ij[1096] = 1 +id[1097] = "2174-01-12T19:11:03" +ik[1097] = 0 +il[1097] = -179 +im[1097] = 0.192 +ij[1097] = 1 +id[1098] = "2174-01-13T19:54:03" +ik[1098] = 1 +il[1098] = 173 +im[1098] = 0.1608 +ij[1098] = 2 +id[1099] = "2174-05-08T03:21:01" +ik[1099] = 0 +il[1099] = -52 +im[1099] = 0.2721 +ij[1099] = 1 +id[1100] = "2174-05-10T11:15:01" +ik[1100] = 1 +il[1100] = -68 +im[1100] = 0.2589 +ij[1100] = 2 +id[1101] = "2174-09-09T08:23:02" +ik[1101] = -1 +il[1101] = 31 +im[1101] = 0.1206 +ij[1101] = 2 +id[1102] = "2174-09-12T05:45:02" +ik[1102] = 0 +il[1102] = 10 +im[1102] = 0.051 +ij[1102] = 1 +id[1103] = "2174-12-27T00:14:03" +ik[1103] = 0 +il[1103] = -172 +im[1103] = 0.1183 +ij[1103] = 1 +id[1104] = "2174-12-28T12:42:03" +ik[1104] = 1 +il[1104] = 177 +im[1104] = 0.1773 +ij[1104] = 2 +id[1105] = "2175-04-19T01:55:01" +ik[1105] = 0 +il[1105] = -34 +im[1105] = 0.1084 +ij[1105] = 1 +id[1106] = "2175-04-22T03:35:01" +ik[1106] = 1 +il[1106] = -55 +im[1106] = 0.0911 +ij[1106] = 2 +id[1107] = "2175-08-22T16:03:02" +ik[1107] = -1 +il[1107] = 41 +im[1107] = 0.2247 +ij[1107] = 2 +id[1108] = "2175-08-25T22:47:02" +ik[1108] = 0 +il[1108] = 18 +im[1108] = 0.2363 +ij[1108] = 1 +id[1109] = "2175-12-12T07:55:03" +ik[1109] = 0 +il[1109] = 180 +im[1109] = 0.0521 +ij[1109] = 1 +id[1110] = "2175-12-12T08:37:03" +ik[1110] = 1 +il[1110] = -179 +im[1110] = 0.0508 +ij[1110] = 2 +id[1111] = "2176-03-30T18:43:01" +ik[1111] = 0 +il[1111] = -21 +im[1111] = 0.223 +ij[1111] = 1 +id[1112] = "2176-04-03T00:42:01" +ik[1112] = 1 +il[1112] = -43 +im[1112] = 0.2507 +ij[1112] = 2 +id[1113] = "2176-08-03T14:08:02" +ik[1113] = -1 +il[1113] = 54 +im[1113] = 0.1002 +ij[1113] = 2 +id[1114] = "2176-08-06T21:50:02" +ik[1114] = 0 +il[1114] = 31 +im[1114] = 0.1032 +ij[1114] = 1 +id[1115] = "2176-11-25T05:15:03" +ik[1115] = -1 +il[1115] = -175 +im[1115] = 0.2069 +ij[1115] = 2 +id[1116] = "2176-11-25T16:19:03" +ik[1116] = 0 +il[1116] = 180 +im[1116] = 0.1981 +ij[1116] = 1 +id[1117] = "2177-03-13T04:47:01" +ik[1117] = 0 +il[1117] = -11 +im[1117] = 0.0731 +ij[1117] = 1 +id[1118] = "2177-03-16T04:32:01" +ik[1118] = 1 +il[1118] = -32 +im[1118] = 0.1019 +ij[1118] = 2 +id[1119] = "2177-07-16T05:01:02" +ik[1119] = -1 +il[1119] = 67 +im[1119] = 0.2093 +ij[1119] = 2 +id[1120] = "2177-07-18T23:31:02" +ik[1120] = 0 +il[1120] = 48 +im[1120] = 0.2539 +ij[1120] = 1 +id[1121] = "2177-11-09T00:27:03" +ik[1121] = -1 +il[1121] = -171 +im[1121] = 0.1135 +ij[1121] = 2 +id[1122] = "2177-11-09T23:16:03" +ik[1122] = 0 +il[1122] = 179 +im[1122] = 0.1542 +ij[1122] = 1 +id[1123] = "2178-02-24T05:45:01" +ik[1123] = 0 +il[1123] = -5 +im[1123] = 0.2216 +ij[1123] = 1 +id[1124] = "2178-02-26T17:44:01" +ik[1124] = 1 +il[1124] = -23 +im[1124] = 0.2115 +ij[1124] = 2 +id[1125] = "2178-06-27T17:01:02" +ik[1125] = -1 +il[1125] = 80 +im[1125] = 0.1374 +ij[1125] = 2 +id[1126] = "2178-06-29T05:59:02" +ik[1126] = 0 +il[1126] = 70 +im[1126] = 0.0517 +ij[1126] = 1 +id[1127] = "2178-10-23T15:20:03" +ik[1127] = -1 +il[1127] = -167 +im[1127] = 0.1402 +ij[1127] = 2 +id[1128] = "2178-10-25T02:38:03" +ik[1128] = 0 +il[1128] = -179 +im[1128] = 0.0703 +ij[1128] = 1 +id[1129] = "2179-02-07T18:14:01" +ik[1129] = 0 +il[1129] = -1 +im[1129] = 0.047 +ij[1129] = 1 +id[1130] = "2179-02-09T16:18:01" +ik[1130] = 1 +il[1130] = -15 +im[1130] = 0.1428 +ij[1130] = 2 +id[1131] = "2179-06-09T02:38:02" +ik[1131] = 0 +il[1131] = 93 +im[1131] = 0.1844 +ij[1131] = 1 +id[1132] = "2179-06-09T04:47:02" +ik[1132] = 1 +il[1132] = 93 +im[1132] = 0.1884 +ij[1132] = 2 +id[1133] = "2179-10-06T23:59:03" +ik[1133] = -1 +il[1133] = -163 +im[1133] = 0.2172 +ij[1133] = 2 +id[1134] = "2179-10-09T00:43:03" +ik[1134] = 0 +il[1134] = -177 +im[1134] = 0.2178 +ij[1134] = 1 +id[1135] = "2180-01-22T15:21:01" +ik[1135] = 0 +il[1135] = 1 +im[1135] = 0.1738 +ij[1135] = 1 +id[1136] = "2180-01-23T23:30:01" +ik[1136] = 1 +il[1136] = -9 +im[1136] = 0.1203 +ij[1136] = 2 +id[1137] = "2180-05-19T02:23:02" +ik[1137] = 0 +il[1137] = 116 +im[1137] = 0.2422 +ij[1137] = 1 +id[1138] = "2180-05-20T17:30:02" +ik[1138] = 1 +il[1138] = 105 +im[1138] = 0.1817 +ij[1138] = 2 +id[1139] = "2180-09-18T23:59:03" +ik[1139] = -1 +il[1139] = -155 +im[1139] = 0.0513 +ij[1139] = 2 +id[1140] = "2180-09-21T14:09:03" +ik[1140] = 0 +il[1140] = -173 +im[1140] = 0.0977 +ij[1140] = 1 +id[1141] = "2181-01-05T18:14:01" +ik[1141] = 0 +il[1141] = 1 +im[1141] = 0.1776 +ij[1141] = 1 +id[1142] = "2181-01-06T13:39:01" +ik[1142] = 1 +il[1142] = -5 +im[1142] = 0.1989 +ij[1142] = 2 +id[1143] = "2181-04-29T15:07:02" +ik[1143] = 0 +il[1143] = 136 +im[1143] = 0.0174 +ij[1143] = 1 +id[1144] = "2181-05-02T08:23:02" +ik[1144] = 1 +il[1144] = 118 +im[1144] = 0.1777 +ij[1144] = 2 +id[1145] = "2181-09-01T13:39:03" +ik[1145] = -1 +il[1145] = -145 +im[1145] = 0.2476 +ij[1145] = 2 +id[1146] = "2181-09-04T15:50:03" +ik[1146] = 0 +il[1146] = -167 +im[1146] = 0.1877 +ij[1146] = 1 +id[1147] = "2181-12-21T00:43:01" +ik[1147] = 0 +il[1147] = 0 +im[1147] = 0.0099 +ij[1147] = 1 +id[1148] = "2181-12-21T08:08:01" +ik[1148] = 1 +il[1148] = -1 +im[1148] = 0.0189 +ij[1148] = 2 +id[1149] = "2182-04-10T21:21:02" +ik[1149] = 0 +il[1149] = 152 +im[1149] = 0.2633 +ij[1149] = 1 +id[1150] = "2182-04-14T02:37:02" +ik[1150] = 1 +il[1150] = 130 +im[1150] = 0.2021 +ij[1150] = 2 +id[1151] = "2182-08-14T17:01:03" +ik[1151] = -1 +il[1151] = -133 +im[1151] = 0.0056 +ij[1151] = 2 +id[1152] = "2182-08-18T01:40:03" +ik[1152] = 0 +il[1152] = -157 +im[1152] = 0.1847 +ij[1152] = 1 +id[1153] = "2182-12-05T04:32:01" +ik[1153] = -1 +il[1153] = 3 +im[1153] = 0.1853 +ij[1153] = 2 +id[1154] = "2182-12-05T08:52:01" +ik[1154] = 0 +il[1154] = 0 +im[1154] = 0.1804 +ij[1154] = 1 +id[1155] = "2183-03-23T21:50:02" +ik[1155] = 0 +il[1155] = 164 +im[1155] = 0.0136 +ij[1155] = 1 +id[1156] = "2183-03-27T02:08:02" +ik[1156] = 1 +il[1156] = 142 +im[1156] = 0.1817 +ij[1156] = 2 +id[1157] = "2183-07-27T11:44:03" +ik[1157] = -1 +il[1157] = -121 +im[1157] = 0.2598 +ij[1157] = 2 +id[1158] = "2183-07-30T15:50:03" +ik[1158] = 0 +il[1158] = -142 +im[1158] = 0.2075 +ij[1158] = 1 +id[1159] = "2183-11-19T00:56:01" +ik[1159] = -1 +il[1159] = 7 +im[1159] = 0.1464 +ij[1159] = 2 +id[1160] = "2183-11-19T16:47:01" +ik[1160] = 0 +il[1160] = 0 +im[1160] = 0.17 +ij[1160] = 1 +id[1161] = "2184-03-05T14:38:02" +ik[1161] = 0 +il[1161] = 172 +im[1161] = 0.2401 +ij[1161] = 1 +id[1162] = "2184-03-08T09:49:02" +ik[1162] = 1 +il[1162] = 152 +im[1162] = 0.1796 +ij[1162] = 2 +id[1163] = "2184-07-08T00:56:03" +ik[1163] = -1 +il[1163] = -107 +im[1163] = 0.0161 +ij[1163] = 2 +id[1164] = "2184-07-10T08:38:03" +ik[1164] = 0 +il[1164] = -123 +im[1164] = 0.1277 +ij[1164] = 1 +id[1165] = "2184-11-01T18:27:01" +ik[1165] = -1 +il[1165] = 11 +im[1165] = 0.0812 +ij[1165] = 2 +id[1166] = "2184-11-02T22:33:01" +ik[1166] = 0 +il[1166] = 0 +im[1166] = 0.0274 +ij[1166] = 1 +id[1167] = "2185-02-16T20:52:02" +ik[1167] = 0 +il[1167] = 177 +im[1167] = 0.1092 +ij[1167] = 1 +id[1168] = "2185-02-19T03:06:02" +ik[1168] = 1 +il[1168] = 161 +im[1168] = 0.2037 +ij[1168] = 2 +id[1169] = "2185-06-19T12:27:03" +ik[1169] = -1 +il[1169] = -94 +im[1169] = 0.2516 +ij[1169] = 2 +id[1170] = "2185-06-20T09:21:03" +ik[1170] = 0 +il[1170] = -100 +im[1170] = 0.2622 +ij[1170] = 1 +id[1171] = "2185-10-16T06:56:01" +ik[1171] = -1 +il[1171] = 15 +im[1171] = 0.2155 +ij[1171] = 2 +id[1172] = "2185-10-17T23:59:01" +ik[1172] = 0 +il[1172] = 1 +im[1172] = 0.1967 +ij[1172] = 1 +id[1173] = "2186-01-31T13:26:02" +ik[1173] = 0 +il[1173] = -180 +im[1173] = 0.1589 +ij[1173] = 1 +id[1174] = "2186-02-02T05:30:02" +ik[1174] = 1 +il[1174] = 167 +im[1174] = 0.0796 +ij[1174] = 2 +id[1175] = "2186-05-31T05:59:03" +ik[1175] = 0 +il[1175] = -77 +im[1175] = 0.106 +ij[1175] = 1 +id[1176] = "2186-06-01T00:42:03" +ik[1176] = 1 +il[1176] = -82 +im[1176] = 0.0603 +ij[1176] = 2 +id[1177] = "2186-09-29T12:13:01" +ik[1177] = -1 +il[1177] = 20 +im[1177] = 0.0376 +ij[1177] = 2 +id[1178] = "2186-10-01T18:43:01" +ik[1178] = 0 +il[1178] = 4 +im[1178] = 0.1374 +ij[1178] = 1 +id[1179] = "2187-01-15T13:11:02" +ik[1179] = 0 +il[1179] = -179 +im[1179] = 0.2063 +ij[1179] = 1 +id[1180] = "2187-01-16T15:49:02" +ik[1180] = 1 +il[1180] = 173 +im[1180] = 0.2234 +ij[1180] = 2 +id[1181] = "2187-05-11T10:19:03" +ik[1181] = 0 +il[1181] = -55 +im[1181] = 0.1538 +ij[1181] = 1 +id[1182] = "2187-05-13T14:23:03" +ik[1182] = 1 +il[1182] = -70 +im[1182] = 0.238 +ij[1182] = 2 +id[1183] = "2187-09-12T07:54:01" +ik[1183] = -1 +il[1183] = 29 +im[1183] = 0.2188 +ij[1183] = 2 +id[1184] = "2187-09-15T03:35:01" +ik[1184] = 0 +il[1184] = 9 +im[1184] = 0.1188 +ij[1184] = 1 +id[1185] = "2187-12-30T17:45:02" +ik[1185] = 0 +il[1185] = -179 +im[1185] = 0.0449 +ij[1185] = 1 +id[1186] = "2187-12-31T08:08:02" +ik[1186] = 1 +il[1186] = 177 +im[1186] = 0.0763 +ij[1186] = 2 +id[1187] = "2188-04-21T06:14:03" +ik[1187] = 0 +il[1187] = -37 +im[1187] = 0.2323 +ij[1187] = 1 +id[1188] = "2188-04-24T06:13:03" +ik[1188] = 1 +il[1188] = -57 +im[1188] = 0.1045 +ij[1188] = 2 +id[1189] = "2188-08-24T17:15:01" +ik[1189] = -1 +il[1189] = 40 +im[1189] = 0.0954 +ij[1189] = 2 +id[1190] = "2188-08-27T23:02:01" +ik[1190] = 0 +il[1190] = 17 +im[1190] = 0.2176 +ij[1190] = 1 +id[1191] = "2188-12-14T01:11:02" +ik[1191] = 0 +il[1191] = 180 +im[1191] = 0.1735 +ij[1191] = 1 +id[1192] = "2188-12-14T03:49:02" +ik[1192] = 1 +il[1192] = -179 +im[1192] = 0.1699 +ij[1192] = 2 +id[1193] = "2189-04-02T20:09:03" +ik[1193] = 0 +il[1193] = -22 +im[1193] = 0.088 +ij[1193] = 1 +id[1194] = "2189-04-06T02:23:03" +ik[1194] = 1 +il[1194] = -45 +im[1194] = 0.2286 +ij[1194] = 2 +id[1195] = "2189-08-06T16:32:01" +ik[1195] = -1 +il[1195] = 52 +im[1195] = 0.2425 +ij[1195] = 2 +id[1196] = "2189-08-10T00:57:01" +ik[1196] = 0 +il[1196] = 29 +im[1196] = 0.1126 +ij[1196] = 1 +id[1197] = "2189-11-28T00:27:02" +ik[1197] = -1 +il[1197] = -175 +im[1197] = 0.1819 +ij[1197] = 2 +id[1198] = "2189-11-28T09:35:02" +ik[1198] = 0 +il[1198] = 180 +im[1198] = 0.1925 +ij[1198] = 1 +id[1199] = "2190-03-16T04:04:03" +ik[1199] = 0 +il[1199] = -12 +im[1199] = 0.2294 +ij[1199] = 1 +id[1200] = "2190-03-19T05:15:03" +ik[1200] = 1 +il[1200] = -34 +im[1200] = 0.1126 +ij[1200] = 2 +id[1201] = "2190-07-19T08:23:01" +ik[1201] = -1 +il[1201] = 65 +im[1201] = 0.1055 +ij[1201] = 2 +id[1202] = "2190-07-22T05:45:01" +ik[1202] = 0 +il[1202] = 45 +im[1202] = 0.231 +ij[1202] = 1 +id[1203] = "2190-11-11T19:54:02" +ik[1203] = -1 +il[1203] = -171 +im[1203] = 0.0184 +ij[1203] = 2 +id[1204] = "2190-11-12T16:47:02" +ik[1204] = 0 +il[1204] = 180 +im[1204] = 0.0298 +ij[1204] = 1 +id[1205] = "2191-02-27T02:52:03" +ik[1205] = 0 +il[1205] = -5 +im[1205] = 0.1587 +ij[1205] = 1 +id[1206] = "2191-03-01T16:47:03" +ik[1206] = 1 +il[1206] = -24 +im[1206] = 0.2347 +ij[1206] = 2 +id[1207] = "2191-06-30T20:37:01" +ik[1207] = -1 +il[1207] = 78 +im[1207] = 0.266 +ij[1207] = 2 +id[1208] = "2191-07-02T14:52:01" +ik[1208] = 0 +il[1208] = 66 +im[1208] = 0.2232 +ij[1208] = 1 +id[1209] = "2191-10-26T11:30:02" +ik[1209] = -1 +il[1209] = -167 +im[1209] = 0.2098 +ij[1209] = 2 +id[1210] = "2191-10-27T21:07:02" +ik[1210] = 0 +il[1210] = -180 +im[1210] = 0.1819 +ij[1210] = 1 +id[1211] = "2192-02-10T13:55:03" +ik[1211] = 0 +il[1211] = -1 +im[1211] = 0.1427 +ij[1211] = 1 +id[1212] = "2192-02-12T14:08:03" +ik[1212] = 1 +il[1212] = -16 +im[1212] = 0.0424 +ij[1212] = 2 +id[1213] = "2192-06-11T08:08:01" +ik[1213] = -1 +il[1213] = 91 +im[1213] = 0.0786 +ij[1213] = 2 +id[1214] = "2192-06-11T11:59:01" +ik[1214] = 0 +il[1214] = 90 +im[1214] = 0.0876 +ij[1214] = 1 +id[1215] = "2192-10-08T21:20:02" +ik[1215] = -1 +il[1215] = -163 +im[1215] = 0.0921 +ij[1215] = 2 +id[1216] = "2192-10-10T19:55:02" +ik[1216] = 0 +il[1216] = -178 +im[1216] = 0.1737 +ij[1216] = 1 +id[1217] = "2193-01-24T09:50:03" +ik[1217] = 0 +il[1217] = 0 +im[1217] = 0.2276 +ij[1217] = 1 +id[1218] = "2193-01-25T20:08:03" +ik[1218] = 1 +il[1218] = -10 +im[1218] = 0.2318 +ij[1218] = 2 +id[1219] = "2193-05-22T10:47:01" +ik[1219] = 0 +il[1219] = 113 +im[1219] = 0.2511 +ij[1219] = 1 +id[1220] = "2193-05-23T20:51:01" +ik[1220] = 1 +il[1220] = 103 +im[1220] = 0.2629 +ij[1220] = 2 +id[1221] = "2193-09-21T22:47:02" +ik[1221] = -1 +il[1221] = -156 +im[1221] = 0.1648 +ij[1221] = 2 +id[1222] = "2193-09-24T11:02:02" +ik[1222] = 0 +il[1222] = -174 +im[1222] = 0.0443 +ij[1222] = 1 +id[1223] = "2194-01-08T11:59:03" +ik[1223] = 0 +il[1223] = 1 +im[1223] = 0.0756 +ij[1223] = 1 +id[1224] = "2194-01-09T09:20:03" +ik[1224] = 1 +il[1224] = -6 +im[1224] = 0.1205 +ij[1224] = 2 +id[1225] = "2194-05-02T21:07:01" +ik[1225] = 0 +il[1225] = 133 +im[1225] = 0.1243 +ij[1225] = 1 +id[1226] = "2194-05-05T11:15:01" +ik[1226] = 1 +il[1226] = 116 +im[1226] = 0.0363 +ij[1226] = 2 +id[1227] = "2194-09-04T14:08:02" +ik[1227] = -1 +il[1227] = -147 +im[1227] = 0.1534 +ij[1227] = 2 +id[1228] = "2194-09-07T14:38:02" +ik[1228] = 0 +il[1228] = -168 +im[1228] = 0.2231 +ij[1228] = 1 +id[1229] = "2194-12-23T17:59:03" +ik[1229] = 0 +il[1229] = 1 +im[1229] = 0.1691 +ij[1229] = 1 +id[1230] = "2194-12-24T03:06:03" +ik[1230] = 1 +il[1230] = -2 +im[1230] = 0.1548 +ij[1230] = 2 +id[1231] = "2195-04-14T00:28:01" +ik[1231] = 0 +il[1231] = 150 +im[1231] = 0.1728 +ij[1231] = 1 +id[1232] = "2195-04-17T04:47:01" +ik[1232] = 1 +il[1232] = 128 +im[1232] = 0.2452 +ij[1232] = 2 +id[1233] = "2195-08-17T18:56:02" +ik[1233] = -1 +il[1233] = -135 +im[1233] = 0.1655 +ij[1233] = 2 +id[1234] = "2195-08-21T03:07:02" +ik[1234] = 0 +il[1234] = -159 +im[1234] = 0.0136 +ij[1234] = 1 +id[1235] = "2195-12-07T23:30:03" +ik[1235] = -1 +il[1235] = 2 +im[1235] = 0.2135 +ij[1235] = 2 +id[1236] = "2195-12-08T02:09:03" +ik[1236] = 0 +il[1236] = 0 +im[1236] = 0.2155 +ij[1236] = 1 +id[1237] = "2196-03-25T22:19:01" +ik[1237] = 0 +il[1237] = 163 +im[1237] = 0.1725 +ij[1237] = 1 +id[1238] = "2196-03-29T03:20:01" +ik[1238] = 1 +il[1238] = 140 +im[1238] = 0.011 +ij[1238] = 2 +id[1239] = "2196-07-29T14:37:02" +ik[1239] = -1 +il[1239] = -122 +im[1239] = 0.1815 +ij[1239] = 2 +id[1240] = "2196-08-01T20:23:02" +ik[1240] = 0 +il[1240] = -145 +im[1240] = 0.243 +ij[1240] = 1 +id[1241] = "2196-11-20T20:08:03" +ik[1241] = -1 +il[1241] = 6 +im[1241] = 0.0319 +ij[1241] = 2 +id[1242] = "2196-11-21T10:19:03" +ik[1242] = 0 +il[1242] = 0 +im[1242] = 0.0637 +ij[1242] = 1 +id[1243] = "2197-03-08T12:57:01" +ik[1243] = 0 +il[1243] = 171 +im[1243] = 0.1948 +ij[1243] = 1 +id[1244] = "2197-03-11T09:49:01" +ik[1244] = 1 +il[1244] = 151 +im[1244] = 0.2319 +ij[1244] = 2 +id[1245] = "2197-07-11T04:32:02" +ik[1245] = -1 +il[1245] = -109 +im[1245] = 0.2141 +ij[1245] = 2 +id[1246] = "2197-07-13T16:19:02" +ik[1246] = 0 +il[1246] = -126 +im[1246] = 0.0881 +ij[1246] = 1 +id[1247] = "2197-11-04T14:08:03" +ik[1247] = -1 +il[1247] = 10 +im[1247] = 0.2042 +ij[1247] = 2 +id[1248] = "2197-11-05T16:19:03" +ik[1248] = 0 +il[1248] = 0 +im[1248] = 0.1745 +ij[1248] = 1 +id[1249] = "2198-02-19T17:31:01" +ik[1249] = 0 +il[1249] = 177 +im[1249] = 0.1006 +ij[1249] = 1 +id[1250] = "2198-02-22T01:39:01" +ik[1250] = 1 +il[1250] = 159 +im[1250] = 0.0328 +ij[1250] = 2 +id[1251] = "2198-06-22T16:03:02" +ik[1251] = -1 +il[1251] = -96 +im[1251] = 0.1771 +ij[1251] = 2 +id[1252] = "2198-06-23T18:43:02" +ik[1252] = 0 +il[1252] = -104 +im[1252] = 0.2253 +ij[1252] = 1 +id[1253] = "2198-10-19T03:34:03" +ik[1253] = -1 +il[1253] = 14 +im[1253] = 0.1557 +ij[1253] = 2 +id[1254] = "2198-10-20T18:43:03" +ik[1254] = 0 +il[1254] = 1 +im[1254] = 0.2068 +ij[1254] = 1 +id[1255] = "2199-02-03T08:38:01" +ik[1255] = 0 +il[1255] = -180 +im[1255] = 0.2325 +ij[1255] = 1 +id[1256] = "2199-02-05T02:37:01" +ik[1256] = 1 +il[1256] = 167 +im[1256] = 0.2101 +ij[1256] = 2 +id[1257] = "2199-06-03T15:07:02" +ik[1257] = 0 +il[1257] = -80 +im[1257] = 0.2549 +ij[1257] = 1 +id[1258] = "2199-06-04T04:03:02" +ik[1258] = 1 +il[1258] = -84 +im[1258] = 0.24 +ij[1258] = 2 +id[1259] = "2199-10-02T10:03:03" +ik[1259] = -1 +il[1259] = 19 +im[1259] = 0.1064 +ij[1259] = 2 +id[1260] = "2199-10-04T14:38:03" +ik[1260] = 0 +il[1260] = 3 +im[1260] = 0.014 +ij[1260] = 1 +id[1261] = "2200-01-18T07:26:01" +ik[1261] = 0 +il[1261] = -179 +im[1261] = 0.096 +ij[1261] = 1 +id[1262] = "2200-01-19T11:58:01" +ik[1262] = 1 +il[1262] = 172 +im[1262] = 0.1533 +ij[1262] = 2 +id[1263] = "2200-05-14T17:45:02" +ik[1263] = 0 +il[1263] = -58 +im[1263] = 0.0356 +ij[1263] = 1 +id[1264] = "2200-05-16T17:15:02" +ik[1264] = 1 +il[1264] = -71 +im[1264] = 0.153 +ij[1264] = 2 +id[1265] = "2200-09-15T07:25:03" +ik[1265] = -1 +il[1265] = 28 +im[1265] = 0.204 +ij[1265] = 2 +id[1266] = "2200-09-18T01:11:03" +ik[1266] = 0 +il[1266] = 8 +im[1266] = 0.2193 +ij[1266] = 1 +id[1267] = "2201-01-02T11:31:01" +ik[1267] = 0 +il[1267] = -179 +im[1267] = 0.1548 +ij[1267] = 1 +id[1268] = "2201-01-03T03:34:01" +ik[1268] = 1 +il[1268] = 176 +im[1268] = 0.1252 +ij[1268] = 2 +id[1269] = "2201-04-25T10:47:02" +ik[1269] = 0 +il[1269] = -39 +im[1269] = 0.2409 +ij[1269] = 1 +id[1270] = "2201-04-28T08:51:02" +ik[1270] = 1 +il[1270] = -59 +im[1270] = 0.2303 +ij[1270] = 2 +id[1271] = "2201-08-28T18:13:03" +ik[1271] = -1 +il[1271] = 38 +im[1271] = 0.061 +ij[1271] = 2 +id[1272] = "2201-08-31T22:47:03" +ik[1272] = 0 +il[1272] = 16 +im[1272] = 0.1137 +ij[1272] = 1 +id[1273] = "2201-12-17T18:43:01" +ik[1273] = 0 +il[1273] = 180 +im[1273] = 0.2252 +ij[1273] = 1 +id[1274] = "2201-12-17T22:46:01" +ik[1274] = 1 +il[1274] = -180 +im[1274] = 0.2263 +ij[1274] = 2 +id[1275] = "2202-04-06T22:19:02" +ik[1275] = 0 +il[1275] = -24 +im[1275] = 0.073 +ij[1275] = 1 +id[1276] = "2202-04-10T04:18:02" +ik[1276] = 1 +il[1276] = -47 +im[1276] = 0.115 +ij[1276] = 2 +id[1277] = "2202-08-10T18:56:03" +ik[1277] = -1 +il[1277] = 50 +im[1277] = 0.2245 +ij[1277] = 2 +id[1278] = "2202-08-14T03:35:03" +ik[1278] = 0 +il[1278] = 27 +im[1278] = 0.1999 +ij[1278] = 1 +id[1279] = "2202-12-01T19:25:01" +ik[1279] = -1 +il[1279] = -176 +im[1279] = 0.0651 +ij[1279] = 2 +id[1280] = "2202-12-02T02:52:01" +ik[1280] = 0 +il[1280] = 180 +im[1280] = 0.0817 +ij[1280] = 1 +id[1281] = "2203-03-20T03:35:02" +ik[1281] = 0 +il[1281] = -13 +im[1281] = 0.2222 +ij[1281] = 1 +id[1282] = "2203-03-23T05:58:02" +ik[1282] = 1 +il[1282] = -35 +im[1282] = 0.2015 +ij[1282] = 2 +id[1283] = "2203-07-23T11:44:03" +ik[1283] = -1 +il[1283] = 63 +im[1283] = 0.1017 +ij[1283] = 2 +id[1284] = "2203-07-26T11:45:03" +ik[1284] = 0 +il[1284] = 43 +im[1284] = 0.0736 +ij[1284] = 1 +id[1285] = "2203-11-15T15:20:01" +ik[1285] = -1 +il[1285] = -172 +im[1285] = 0.1892 +ij[1285] = 2 +id[1286] = "2203-11-16T10:33:01" +ik[1286] = 0 +il[1286] = 179 +im[1286] = 0.1611 +ij[1286] = 1 +id[1287] = "2204-03-02T00:28:02" +ik[1287] = 0 +il[1287] = -6 +im[1287] = 0.0428 +ij[1287] = 1 +id[1288] = "2204-03-04T16:03:02" +ik[1288] = 1 +il[1288] = -25 +im[1288] = 0.1124 +ij[1288] = 2 +id[1289] = "2204-07-03T00:13:03" +ik[1289] = -1 +il[1289] = 83 +im[1289] = 0.2081 +ij[1289] = 2 +id[1290] = "2204-07-05T23:16:03" +ik[1290] = 0 +il[1290] = 63 +im[1290] = 0.2575 +ij[1290] = 1 +id[1291] = "2204-10-29T07:39:01" +ik[1291] = -1 +il[1291] = -168 +im[1291] = 0.1998 +ij[1291] = 2 +id[1292] = "2204-10-30T15:21:01" +ik[1292] = 0 +il[1292] = -180 +im[1292] = 0.225 +ij[1292] = 1 +id[1293] = "2205-02-13T09:50:02" +ik[1293] = 0 +il[1293] = -2 +im[1293] = 0.2179 +ij[1293] = 1 +id[1294] = "2205-02-15T11:58:02" +ik[1294] = 1 +il[1294] = -17 +im[1294] = 0.1611 +ij[1294] = 2 +id[1295] = "2205-06-15T11:44:03" +ik[1295] = -1 +il[1295] = 89 +im[1295] = 0.158 +ij[1295] = 2 +id[1296] = "2205-06-15T21:35:03" +ik[1296] = 0 +il[1296] = 86 +im[1296] = 0.1352 +ij[1296] = 1 +id[1297] = "2205-10-12T18:27:01" +ik[1297] = -1 +il[1297] = -164 +im[1297] = 0.063 +ij[1297] = 2 +id[1298] = "2205-10-14T15:07:01" +ik[1298] = 0 +il[1298] = -178 +im[1298] = 0.0569 +ij[1298] = 1 +id[1299] = "2206-01-28T04:33:02" +ik[1299] = 0 +il[1299] = 0 +im[1299] = 0.1178 +ij[1299] = 1 +id[1300] = "2206-01-29T16:46:02" +ik[1300] = 1 +il[1300] = -11 +im[1300] = 0.1793 +ij[1300] = 2 +id[1301] = "2206-05-26T19:11:03" +ik[1301] = 0 +il[1301] = 110 +im[1301] = 0.19 +ij[1301] = 1 +id[1302] = "2206-05-27T00:13:03" +ik[1302] = 1 +il[1302] = 108 +im[1302] = 0.1999 +ij[1302] = 2 +id[1303] = "2206-09-25T21:06:01" +ik[1303] = -1 +il[1303] = -157 +im[1303] = 0.2319 +ij[1303] = 2 +id[1304] = "2206-09-28T07:26:01" +ik[1304] = 0 +il[1304] = -175 +im[1304] = 0.2066 +ij[1304] = 1 +id[1305] = "2207-01-12T05:59:02" +ik[1305] = 0 +il[1305] = 1 +im[1305] = 0.123 +ij[1305] = 1 +id[1306] = "2207-01-13T05:01:02" +ik[1306] = 1 +il[1306] = -6 +im[1306] = 0.0772 +ij[1306] = 2 +id[1307] = "2207-05-07T03:21:03" +ik[1307] = 0 +il[1307] = 131 +im[1307] = 0.2565 +ij[1307] = 1 +id[1308] = "2207-05-09T14:22:03" +ik[1308] = 1 +il[1308] = 114 +im[1308] = 0.1734 +ij[1308] = 2 +id[1309] = "2207-09-08T14:08:01" +ik[1309] = -1 +il[1309] = -148 +im[1309] = 0.0531 +ij[1309] = 2 +id[1310] = "2207-09-11T12:57:01" +ik[1310] = 0 +il[1310] = -169 +im[1310] = 0.1836 +ij[1310] = 1 +id[1311] = "2207-12-27T11:31:02" +ik[1311] = 0 +il[1311] = 1 +im[1311] = 0.2201 +ij[1311] = 1 +id[1312] = "2207-12-27T22:32:02" +ik[1312] = 1 +il[1312] = -2 +im[1312] = 0.2176 +ij[1312] = 2 +id[1313] = "2208-04-17T04:04:03" +ik[1313] = 0 +il[1313] = 148 +im[1313] = 0.0571 +ij[1313] = 1 +id[1314] = "2208-04-20T07:10:03" +ik[1314] = 1 +il[1314] = 126 +im[1314] = 0.2147 +ij[1314] = 2 +id[1315] = "2208-08-20T20:37:01" +ik[1315] = -1 +il[1315] = -137 +im[1315] = 0.2344 +ij[1315] = 2 +id[1316] = "2208-08-24T04:04:01" +ik[1316] = 0 +il[1316] = -160 +im[1316] = 0.1408 +ij[1316] = 1 +id[1317] = "2208-12-10T18:42:02" +ik[1317] = -1 +il[1317] = 2 +im[1317] = 0.0929 +ij[1317] = 2 +id[1318] = "2208-12-10T19:26:02" +ik[1318] = 0 +il[1318] = 0 +im[1318] = 0.0945 +ij[1318] = 1 +id[1319] = "2209-03-29T23:16:03" +ik[1319] = 0 +il[1319] = 161 +im[1319] = 0.2369 +ij[1319] = 1 +id[1320] = "2209-04-02T05:01:03" +ik[1320] = 1 +il[1320] = 138 +im[1320] = 0.1533 +ij[1320] = 2 +id[1321] = "2209-08-02T17:30:01" +ik[1321] = -1 +il[1321] = -124 +im[1321] = 0.0524 +ij[1321] = 2 +id[1322] = "2209-08-06T00:28:01" +ik[1322] = 0 +il[1322] = -147 +im[1322] = 0.1937 +ij[1322] = 1 +id[1323] = "2209-11-24T15:20:02" +ik[1323] = -1 +il[1323] = 6 +im[1323] = 0.1576 +ij[1323] = 2 +id[1324] = "2209-11-25T03:35:02" +ik[1324] = 0 +il[1324] = 0 +im[1324] = 0.1362 +ij[1324] = 1 +id[1325] = "2210-03-12T11:31:03" +ik[1325] = 0 +il[1325] = 170 +im[1325] = 0.0526 +ij[1325] = 1 +id[1326] = "2210-03-15T10:03:03" +ik[1326] = 1 +il[1326] = 149 +im[1326] = 0.1878 +ij[1326] = 2 +id[1327] = "2210-07-15T07:54:01" +ik[1327] = -1 +il[1327] = -111 +im[1327] = 0.2488 +ij[1327] = 2 +id[1328] = "2210-07-17T23:31:01" +ik[1328] = 0 +il[1328] = -129 +im[1328] = 0.1894 +ij[1328] = 1 +id[1329] = "2210-11-08T09:49:02" +ik[1329] = -1 +il[1329] = 10 +im[1329] = 0.2155 +ij[1329] = 2 +id[1330] = "2210-11-09T10:19:02" +ik[1330] = 0 +il[1330] = 0 +im[1330] = 0.2232 +ij[1330] = 1 +id[1331] = "2211-02-23T14:09:03" +ik[1331] = 0 +il[1331] = 176 +im[1331] = 0.195 +ij[1331] = 1 +id[1332] = "2211-02-25T00:13:03" +ik[1332] = 1 +il[1332] = 166 +im[1332] = 0.1461 +ij[1332] = 2 +id[1333] = "2211-06-26T19:39:01" +ik[1333] = -1 +il[1333] = -98 +im[1333] = 0.0531 +ij[1333] = 2 +id[1334] = "2211-06-28T03:50:01" +ik[1334] = 0 +il[1334] = -107 +im[1334] = 0.0639 +ij[1334] = 1 +id[1335] = "2211-10-22T00:13:02" +ik[1335] = -1 +il[1335] = 20 +im[1335] = 0.0697 +ij[1335] = 2 +id[1336] = "2211-10-24T13:11:02" +ik[1336] = 0 +il[1336] = 0 +im[1336] = 0.0764 +ij[1336] = 1 +id[1337] = "2212-02-07T03:50:03" +ik[1337] = 0 +il[1337] = 179 +im[1337] = 0.1448 +ij[1337] = 1 +id[1338] = "2212-02-08T23:58:03" +ik[1338] = 1 +il[1338] = 170 +im[1338] = 0.2042 +ij[1338] = 2 +id[1339] = "2212-06-06T00:14:01" +ik[1339] = 0 +il[1339] = -77 +im[1339] = 0.2482 +ij[1339] = 1 +id[1340] = "2212-06-07T07:25:01" +ik[1340] = 1 +il[1340] = -85 +im[1340] = 0.2666 +ij[1340] = 2 +id[1341] = "2212-10-05T07:54:02" +ik[1341] = -1 +il[1341] = 24 +im[1341] = 0.23 +ij[1341] = 2 +id[1342] = "2212-10-07T10:19:02" +ik[1342] = 0 +il[1342] = 3 +im[1342] = 0.1751 +ij[1342] = 1 +id[1343] = "2213-01-21T01:40:03" +ik[1343] = 0 +il[1343] = -179 +im[1343] = 0.0807 +ij[1343] = 1 +id[1344] = "2213-01-22T08:22:03" +ik[1344] = 1 +il[1344] = 174 +im[1344] = 0.0249 +ij[1344] = 2 +id[1345] = "2213-05-18T01:26:01" +ik[1345] = 0 +il[1345] = -61 +im[1345] = 0.178 +ij[1345] = 1 +id[1346] = "2213-05-19T20:37:01" +ik[1346] = 1 +il[1346] = -73 +im[1346] = 0.0781 +ij[1346] = 2 +id[1347] = "2213-09-18T06:27:02" +ik[1347] = -1 +il[1347] = 28 +im[1347] = 0.1165 +ij[1347] = 2 +id[1348] = "2213-09-20T22:33:02" +ik[1348] = 0 +il[1348] = 7 +im[1348] = 0.2164 +ij[1348] = 1 +id[1349] = "2214-01-05T05:16:03" +ik[1349] = 0 +il[1349] = -179 +im[1349] = 0.2104 +ij[1349] = 1 +id[1350] = "2214-01-05T23:01:03" +ik[1350] = 1 +il[1350] = 178 +im[1350] = 0.2003 +ij[1350] = 2 +id[1351] = "2214-04-28T16:04:01" +ik[1351] = 0 +il[1351] = -42 +im[1351] = 0.1791 +ij[1351] = 1 +id[1352] = "2214-05-01T11:44:01" +ik[1352] = 1 +il[1352] = -61 +im[1352] = 0.2666 +ij[1352] = 2 +id[1353] = "2214-08-31T18:56:02" +ik[1353] = -1 +il[1353] = 36 +im[1353] = 0.2142 +ij[1353] = 2 +id[1354] = "2214-09-03T22:19:02" +ik[1354] = 0 +il[1354] = 14 +im[1354] = 0.0714 +ij[1354] = 1 +id[1355] = "2214-12-20T11:59:03" +ik[1355] = 0 +il[1355] = 180 +im[1355] = 0.108 +ij[1355] = 1 +id[1356] = "2214-12-20T17:58:03" +ik[1356] = 1 +il[1356] = -178 +im[1356] = 0.1196 +ij[1356] = 2 +id[1357] = "2215-04-10T00:43:01" +ik[1357] = 0 +il[1357] = -26 +im[1357] = 0.2247 +ij[1357] = 1 +id[1358] = "2215-04-13T06:13:01" +ik[1358] = 1 +il[1358] = -49 +im[1358] = 0.0744 +ij[1358] = 2 +id[1359] = "2215-08-13T21:06:02" +ik[1359] = -1 +il[1359] = 48 +im[1359] = 0.1434 +ij[1359] = 2 +id[1360] = "2215-08-17T05:45:02" +ik[1360] = 0 +il[1360] = 25 +im[1360] = 0.2478 +ij[1360] = 1 +id[1361] = "2215-12-04T14:37:03" +ik[1361] = -1 +il[1361] = -174 +im[1361] = 0.1087 +ij[1361] = 2 +id[1362] = "2215-12-04T20:09:03" +ik[1362] = 0 +il[1362] = 180 +im[1362] = 0.098 +ij[1362] = 1 +id[1363] = "2216-03-22T03:21:01" +ik[1363] = 0 +il[1363] = -15 +im[1363] = 0.1407 +ij[1363] = 1 +id[1364] = "2216-03-25T06:56:01" +ik[1364] = 1 +il[1364] = -37 +im[1364] = 0.2472 +ij[1364] = 2 +id[1365] = "2216-07-25T14:51:02" +ik[1365] = -1 +il[1365] = 61 +im[1365] = 0.2176 +ij[1365] = 2 +id[1366] = "2216-07-28T17:16:02" +ik[1366] = 0 +il[1366] = 40 +im[1366] = 0.0684 +ij[1366] = 1 +id[1367] = "2216-11-17T10:32:03" +ik[1367] = -1 +il[1367] = -170 +im[1367] = 0.2137 +ij[1367] = 2 +id[1368] = "2216-11-18T04:04:03" +ik[1368] = 0 +il[1368] = 180 +im[1368] = 0.2121 +ij[1368] = 1 +id[1369] = "2217-03-04T22:04:01" +ik[1369] = 0 +il[1369] = -7 +im[1369] = 0.1668 +ij[1369] = 1 +id[1370] = "2217-03-07T15:49:01" +ik[1370] = 1 +il[1370] = -27 +im[1370] = 0.0246 +ij[1370] = 2 +id[1371] = "2217-07-07T03:34:02" +ik[1371] = -1 +il[1371] = 74 +im[1371] = 0.1013 +ij[1371] = 2 +id[1372] = "2217-07-09T07:40:02" +ik[1372] = 0 +il[1372] = 60 +im[1372] = 0.2047 +ij[1372] = 1 +id[1373] = "2217-11-01T03:49:03" +ik[1373] = -1 +il[1373] = -166 +im[1373] = 0.0329 +ij[1373] = 2 +id[1374] = "2217-11-02T09:21:03" +ik[1374] = 0 +il[1374] = 180 +im[1374] = 0.0981 +ij[1374] = 1 +id[1375] = "2218-02-16T05:45:01" +ik[1375] = 0 +il[1375] = -2 +im[1375] = 0.1848 +ij[1375] = 1 +id[1376] = "2218-02-18T10:03:01" +ik[1376] = 1 +il[1376] = -18 +im[1376] = 0.2286 +ij[1376] = 2 +id[1377] = "2218-06-18T15:06:02" +ik[1377] = -1 +il[1377] = 87 +im[1377] = 0.2396 +ij[1377] = 2 +id[1378] = "2218-06-19T06:57:02" +ik[1378] = 0 +il[1378] = 83 +im[1378] = 0.2206 +ij[1378] = 1 +id[1379] = "2218-10-15T15:20:03" +ik[1379] = -1 +il[1379] = -162 +im[1379] = 0.1965 +ij[1379] = 2 +id[1380] = "2218-10-17T10:04:03" +ik[1380] = 0 +il[1380] = -178 +im[1380] = 0.1293 +ij[1380] = 1 +id[1381] = "2219-01-30T23:31:01" +ik[1381] = 0 +il[1381] = 0 +im[1381] = 0.0244 +ij[1381] = 1 +id[1382] = "2219-02-01T13:39:01" +ik[1382] = 1 +il[1382] = -12 +im[1382] = 0.0627 +ij[1382] = 2 +id[1383] = "2219-05-30T03:50:02" +ik[1383] = 0 +il[1383] = 106 +im[1383] = 0.0139 +ij[1383] = 1 +id[1384] = "2219-05-31T03:20:02" +ik[1384] = 1 +il[1384] = 100 +im[1384] = 0.0513 +ij[1384] = 2 +id[1385] = "2219-09-28T19:25:03" +ik[1385] = -1 +il[1385] = -158 +im[1385] = 0.1647 +ij[1385] = 2 +id[1386] = "2219-10-01T03:50:03" +ik[1386] = 0 +il[1386] = -176 +im[1386] = 0.2206 +ij[1386] = 1 +id[1387] = "2220-01-14T23:59:01" +ik[1387] = 0 +il[1387] = 1 +im[1387] = 0.2043 +ij[1387] = 1 +id[1388] = "2220-01-16T00:56:01" +ik[1388] = 1 +il[1388] = -7 +im[1388] = 0.1816 +ij[1388] = 2 +id[1389] = "2220-05-09T10:04:02" +ik[1389] = 0 +il[1389] = 128 +im[1389] = 0.2551 +ij[1389] = 1 +id[1390] = "2220-05-11T17:15:02" +ik[1390] = 1 +il[1390] = 112 +im[1390] = 0.2538 +ij[1390] = 2 +id[1391] = "2220-09-10T13:54:03" +ik[1391] = -1 +il[1391] = -150 +im[1391] = 0.1584 +ij[1391] = 2 +id[1392] = "2220-09-13T11:16:03" +ik[1392] = 0 +il[1392] = -170 +im[1392] = 0.0117 +ij[1392] = 1 +id[1393] = "2220-12-29T05:02:01" +ik[1393] = 0 +il[1393] = 1 +im[1393] = 0.1376 +ij[1393] = 1 +id[1394] = "2220-12-29T17:44:01" +ik[1394] = 1 +il[1394] = -3 +im[1394] = 0.1585 +ij[1394] = 2 +id[1395] = "2221-04-20T08:09:02" +ik[1395] = 0 +il[1395] = 146 +im[1395] = 0.1575 +ij[1395] = 1 +id[1396] = "2221-04-23T09:34:02" +ik[1396] = 1 +il[1396] = 124 +im[1396] = 0.0348 +ij[1396] = 2 +id[1397] = "2221-08-23T22:03:03" +ik[1397] = -1 +il[1397] = -139 +im[1397] = 0.2186 +ij[1397] = 2 +id[1398] = "2221-08-27T04:33:03" +ik[1398] = 0 +il[1398] = -162 +im[1398] = 0.2389 +ij[1398] = 1 +id[1399] = "2221-12-13T12:42:01" +ik[1399] = 0 +il[1399] = 0 +im[1399] = 0.0564 +ij[1399] = 1 +id[1400] = "2221-12-13T13:39:01" +ik[1400] = 1 +il[1400] = 1 +im[1400] = 0.0543 +ij[1400] = 2 +id[1401] = "2222-04-02T00:28:02" +ik[1401] = 0 +il[1401] = 159 +im[1401] = 0.2175 +ij[1401] = 1 +id[1402] = "2222-04-05T06:27:02" +ik[1402] = 1 +il[1402] = 137 +im[1402] = 0.2555 +ij[1402] = 2 +id[1403] = "2222-08-05T20:08:03" +ik[1403] = -1 +il[1403] = -126 +im[1403] = 0.1504 +ij[1403] = 2 +id[1404] = "2222-08-09T04:04:03" +ik[1404] = 0 +il[1404] = -149 +im[1404] = 0.0561 +ij[1404] = 1 +id[1405] = "2222-11-27T10:18:01" +ik[1405] = -1 +il[1405] = 5 +im[1405] = 0.2084 +ij[1405] = 2 +id[1406] = "2222-11-27T21:06:01" +ik[1406] = 0 +il[1406] = 0 +im[1406] = 0.2046 +ij[1406] = 1 +id[1407] = "2223-03-15T10:18:02" +ik[1407] = 0 +il[1407] = 169 +im[1407] = 0.1269 +ij[1407] = 1 +id[1408] = "2223-03-18T10:18:02" +ik[1408] = 1 +il[1408] = 148 +im[1408] = 0.06 +ij[1408] = 2 +id[1409] = "2223-07-18T11:15:03" +ik[1409] = -1 +il[1409] = -113 +im[1409] = 0.2124 +ij[1409] = 2 +id[1410] = "2223-07-21T06:14:03" +ik[1410] = 0 +il[1410] = -132 +im[1410] = 0.2664 +ij[1410] = 1 +id[1411] = "2223-11-11T05:30:01" +ik[1411] = -1 +il[1411] = 9 +im[1411] = 0.0837 +ij[1411] = 2 +id[1412] = "2223-11-12T04:04:01" +ik[1412] = 0 +il[1412] = 0 +im[1412] = 0.1265 +ij[1412] = 1 +id[1413] = "2224-02-26T11:02:02" +ik[1413] = 0 +il[1413] = 175 +im[1413] = 0.2273 +ij[1413] = 1 +id[1414] = "2224-02-28T23:15:02" +ik[1414] = 1 +il[1414] = 157 +im[1414] = 0.2337 +ij[1414] = 2 +id[1415] = "2224-06-28T23:15:03" +ik[1415] = -1 +il[1415] = -100 +im[1415] = 0.1709 +ij[1415] = 2 +id[1416] = "2224-06-30T12:57:03" +ik[1416] = 0 +il[1416] = -111 +im[1416] = 0.0834 +ij[1416] = 1 +id[1417] = "2224-10-24T20:37:01" +ik[1417] = -1 +il[1417] = 13 +im[1417] = 0.1459 +ij[1417] = 2 +id[1418] = "2224-10-26T07:40:01" +ik[1418] = 0 +il[1418] = 0 +im[1418] = 0.0802 +ij[1418] = 1 +id[1419] = "2225-02-08T23:16:02" +ik[1419] = 0 +il[1419] = 179 +im[1419] = 0.0381 +ij[1419] = 1 +id[1420] = "2225-02-10T21:34:02" +ik[1420] = 1 +il[1420] = 165 +im[1420] = 0.1327 +ij[1420] = 2 +id[1421] = "2225-06-10T09:35:03" +ik[1421] = 0 +il[1421] = -87 +im[1421] = 0.1706 +ij[1421] = 1 +id[1422] = "2225-06-10T10:46:03" +ik[1422] = 1 +il[1422] = -87 +im[1422] = 0.173 +ij[1422] = 2 +id[1423] = "2225-10-08T05:15:01" +ik[1423] = -1 +il[1423] = 17 +im[1423] = 0.1901 +ij[1423] = 2 +id[1424] = "2225-10-10T05:45:01" +ik[1424] = 0 +il[1424] = 3 +im[1424] = 0.2147 +ij[1424] = 1 +id[1425] = "2226-01-23T20:09:02" +ik[1425] = 0 +il[1425] = -179 +im[1425] = 0.2033 +ij[1425] = 1 +id[1426] = "2226-01-25T04:46:02" +ik[1426] = 1 +il[1426] = 170 +im[1426] = 0.1634 +ij[1426] = 2 +id[1427] = "2226-05-21T09:21:03" +ik[1427] = 0 +il[1427] = -64 +im[1427] = 0.2431 +ij[1427] = 1 +id[1428] = "2226-05-22T23:44:03" +ik[1428] = 1 +il[1428] = -75 +im[1428] = 0.1907 +ij[1428] = 2 +id[1429] = "2226-09-21T05:30:01" +ik[1429] = -1 +il[1429] = 25 +im[1429] = 0.0876 +ij[1429] = 2 +id[1430] = "2226-09-23T19:26:01" +ik[1430] = 0 +il[1430] = 6 +im[1430] = 0.0658 +ij[1430] = 1 +id[1431] = "2227-01-07T23:02:02" +ik[1431] = 0 +il[1431] = -179 +im[1431] = 0.175 +ij[1431] = 1 +id[1432] = "2227-01-08T18:42:02" +ik[1432] = 1 +il[1432] = 175 +im[1432] = 0.1997 +ij[1432] = 2 +id[1433] = "2227-05-01T21:35:03" +ik[1433] = 0 +il[1433] = -44 +im[1433] = 0.0278 +ij[1433] = 1 +id[1434] = "2227-05-04T14:37:03" +ik[1434] = 1 +il[1434] = -63 +im[1434] = 0.135 +ij[1434] = 2 +id[1435] = "2227-09-03T19:25:01" +ik[1435] = -1 +il[1435] = 35 +im[1435] = 0.2356 +ij[1435] = 2 +id[1436] = "2227-09-06T21:21:01" +ik[1436] = 0 +il[1436] = 13 +im[1436] = 0.1909 +ij[1436] = 1 +id[1437] = "2227-12-23T05:30:02" +ik[1437] = 0 +il[1437] = 180 +im[1437] = 0.0299 +ij[1437] = 1 +id[1438] = "2227-12-23T12:56:02" +ik[1438] = 1 +il[1438] = 179 +im[1438] = 0.0232 +ij[1438] = 2 +id[1439] = "2228-04-12T03:21:03" +ik[1439] = 0 +il[1439] = -28 +im[1439] = 0.2524 +ij[1439] = 1 +id[1440] = "2228-04-15T08:37:03" +ik[1440] = 1 +il[1440] = -50 +im[1440] = 0.2041 +ij[1440] = 2 +id[1441] = "2228-08-15T23:01:01" +ik[1441] = -1 +il[1441] = 46 +im[1441] = 0.0683 +ij[1441] = 2 +id[1442] = "2228-08-19T07:40:01" +ik[1442] = 0 +il[1442] = 23 +im[1442] = 0.1395 +ij[1442] = 1 +id[1443] = "2228-12-06T09:34:02" +ik[1443] = -1 +il[1443] = -177 +im[1443] = 0.2061 +ij[1443] = 2 +id[1444] = "2228-12-06T13:40:02" +ik[1444] = 0 +il[1444] = 180 +im[1444] = 0.2036 +ij[1444] = 1 +id[1445] = "2229-03-25T03:35:03" +ik[1445] = 0 +il[1445] = -16 +im[1445] = 0.0625 +ij[1445] = 1 +id[1446] = "2229-03-28T07:54:03" +ik[1446] = 1 +il[1446] = -39 +im[1446] = 0.1321 +ij[1446] = 2 +id[1447] = "2229-07-28T17:58:01" +ik[1447] = -1 +il[1447] = 59 +im[1447] = 0.2607 +ij[1447] = 2 +id[1448] = "2229-07-31T22:04:01" +ik[1448] = 0 +il[1448] = 37 +im[1448] = 0.2236 +ij[1448] = 1 +id[1449] = "2229-11-20T05:58:02" +ik[1449] = -1 +il[1449] = -173 +im[1449] = 0.1371 +ij[1449] = 2 +id[1450] = "2229-11-20T21:35:02" +ik[1450] = 0 +il[1450] = 180 +im[1450] = 0.1625 +ij[1450] = 1 +id[1451] = "2230-03-07T20:09:03" +ik[1451] = 0 +il[1451] = -8 +im[1451] = 0.2457 +ij[1451] = 1 +id[1452] = "2230-03-10T15:34:03" +ik[1452] = 1 +il[1452] = -28 +im[1452] = 0.2002 +ij[1452] = 2 +id[1453] = "2230-07-10T07:10:01" +ik[1453] = -1 +il[1453] = 72 +im[1453] = 0.0835 +ij[1453] = 2 +id[1454] = "2230-07-12T15:35:01" +ik[1454] = 0 +il[1454] = 57 +im[1454] = 0.0867 +ij[1454] = 1 +id[1455] = "2230-11-03T23:30:02" +ik[1455] = -1 +il[1455] = -169 +im[1455] = 0.0957 +ij[1455] = 2 +id[1456] = "2230-11-05T03:21:02" +ik[1456] = 0 +il[1456] = 180 +im[1456] = 0.0369 +ij[1456] = 1 +id[1457] = "2231-02-19T02:09:03" +ik[1457] = 0 +il[1457] = -3 +im[1457] = 0.0683 +ij[1457] = 1 +id[1458] = "2231-02-21T08:22:03" +ik[1458] = 1 +il[1458] = -19 +im[1458] = 0.179 +ij[1458] = 2 +id[1459] = "2231-06-21T18:42:01" +ik[1459] = -1 +il[1459] = 85 +im[1459] = 0.2562 +ij[1459] = 2 +id[1460] = "2231-06-22T16:18:01" +ik[1460] = 0 +il[1460] = 79 +im[1460] = 0.2718 +ij[1460] = 1 +id[1461] = "2231-10-18T12:13:02" +ik[1461] = -1 +il[1461] = -165 +im[1461] = 0.2074 +ij[1461] = 2 +id[1462] = "2231-10-20T05:02:02" +ik[1462] = 0 +il[1462] = -179 +im[1462] = 0.2116 +ij[1462] = 1 +id[1463] = "2232-02-02T18:28:03" +ik[1463] = 0 +il[1463] = 0 +im[1463] = 0.1963 +ij[1463] = 1 +id[1464] = "2232-02-04T10:46:03" +ik[1464] = 1 +il[1464] = -13 +im[1464] = 0.1318 +ij[1464] = 2 +id[1465] = "2232-06-01T12:57:01" +ik[1465] = 0 +il[1465] = 103 +im[1465] = 0.1414 +ij[1465] = 1 +id[1466] = "2232-06-02T06:42:01" +ik[1466] = 1 +il[1466] = 98 +im[1466] = 0.0999 +ij[1466] = 2 +id[1467] = "2232-09-30T17:30:02" +ik[1467] = -1 +il[1467] = -160 +im[1467] = 0.009 +ij[1467] = 2 +id[1468] = "2232-10-02T23:45:02" +ik[1468] = 0 +il[1468] = -176 +im[1468] = 0.1207 +ij[1468] = 1 +id[1469] = "2233-01-16T17:59:03" +ik[1469] = 0 +il[1469] = 1 +im[1469] = 0.2046 +ij[1469] = 1 +id[1470] = "2233-01-17T21:06:03" +ik[1470] = 1 +il[1470] = -7 +im[1470] = 0.2265 +ij[1470] = 2 +id[1471] = "2233-05-12T17:02:01" +ik[1471] = 0 +il[1471] = 125 +im[1471] = 0.1332 +ij[1471] = 1 +id[1472] = "2233-05-14T20:22:01" +ik[1472] = 1 +il[1472] = 110 +im[1472] = 0.2268 +ij[1472] = 2 +id[1473] = "2233-09-13T13:39:02" +ik[1473] = -1 +il[1473] = -151 +im[1473] = 0.2183 +ij[1473] = 2 +id[1474] = "2233-09-16T09:06:02" +ik[1474] = 0 +il[1474] = -171 +im[1474] = 0.1274 +ij[1474] = 1 +id[1475] = "2233-12-31T22:33:03" +ik[1475] = 0 +il[1475] = 1 +im[1475] = 0.0083 +ij[1475] = 1 +id[1476] = "2234-01-01T13:10:03" +ik[1476] = 1 +il[1476] = -3 +im[1476] = 0.0376 +ij[1476] = 2 +id[1477] = "2234-04-23T12:28:01" +ik[1477] = 0 +il[1477] = 143 +im[1477] = 0.2321 +ij[1477] = 1 +id[1478] = "2234-04-26T12:13:01" +ik[1478] = 1 +il[1478] = 123 +im[1478] = 0.1124 +ij[1478] = 2 +id[1479] = "2234-08-26T23:01:02" +ik[1479] = -1 +il[1479] = -140 +im[1479] = 0.0423 +ij[1479] = 2 +id[1480] = "2234-08-30T04:47:02" +ik[1480] = 0 +il[1480] = -163 +im[1480] = 0.1925 +ij[1480] = 1 +id[1481] = "2234-12-16T05:59:03" +ik[1481] = 0 +il[1481] = 0 +im[1481] = 0.2047 +ij[1481] = 1 +id[1482] = "2234-12-16T08:37:03" +ik[1482] = 1 +il[1482] = 1 +im[1482] = 0.2023 +ij[1482] = 2 +id[1483] = "2235-04-05T02:09:01" +ik[1483] = 0 +il[1483] = 158 +im[1483] = 0.0368 +ij[1483] = 1 +id[1484] = "2235-04-08T08:22:01" +ik[1484] = 1 +il[1484] = 135 +im[1484] = 0.2003 +ij[1484] = 2 +id[1485] = "2235-08-08T22:32:02" +ik[1485] = -1 +il[1485] = -128 +im[1485] = 0.2396 +ij[1485] = 2 +id[1486] = "2235-08-12T07:11:02" +ik[1486] = 0 +il[1486] = -151 +im[1486] = 0.1148 +ij[1486] = 1 +id[1487] = "2235-11-30T05:29:03" +ik[1487] = -1 +il[1487] = 5 +im[1487] = 0.1801 +ij[1487] = 2 +id[1488] = "2235-11-30T14:23:03" +ik[1488] = 0 +il[1488] = 0 +im[1488] = 0.1916 +ij[1488] = 1 +id[1489] = "2236-03-17T09:35:01" +ik[1489] = 0 +il[1489] = 168 +im[1489] = 0.2281 +ij[1489] = 1 +id[1490] = "2236-03-20T11:01:01" +ik[1490] = 1 +il[1490] = 146 +im[1490] = 0.1185 +ij[1490] = 2 +id[1491] = "2236-07-20T14:37:02" +ik[1491] = -1 +il[1491] = -115 +im[1491] = 0.0363 +ij[1491] = 2 +id[1492] = "2236-07-23T12:28:02" +ik[1492] = 0 +il[1492] = -135 +im[1492] = 0.1931 +ij[1492] = 1 +id[1493] = "2236-11-13T00:56:03" +ik[1493] = -1 +il[1493] = 9 +im[1493] = 0.0548 +ij[1493] = 2 +id[1494] = "2236-11-13T21:35:03" +ik[1494] = 0 +il[1494] = 0 +im[1494] = 0.0064 +ij[1494] = 1 +id[1495] = "2237-02-28T08:23:01" +ik[1495] = 0 +il[1495] = 175 +im[1495] = 0.1112 +ij[1495] = 1 +id[1496] = "2237-03-02T22:17:01" +ik[1496] = 1 +il[1496] = 156 +im[1496] = 0.2125 +ij[1496] = 2 +id[1497] = "2237-07-02T02:51:02" +ik[1497] = -1 +il[1497] = -102 +im[1497] = 0.2745 +ij[1497] = 2 +id[1498] = "2237-07-03T21:50:02" +ik[1498] = 0 +il[1498] = -114 +im[1498] = 0.2389 +ij[1498] = 1 +id[1499] = "2237-10-27T16:46:03" +ik[1499] = -1 +il[1499] = 13 +im[1499] = 0.2218 +ij[1499] = 2 +id[1500] = "2237-10-29T01:54:03" +ik[1500] = 0 +il[1500] = 0 +im[1500] = 0.2101 +ij[1500] = 1 +id[1501] = "2238-02-11T18:57:01" +ik[1501] = 0 +il[1501] = 179 +im[1501] = 0.1696 +ij[1501] = 1 +id[1502] = "2238-02-13T19:25:01" +ik[1502] = 1 +il[1502] = 164 +im[1502] = 0.0736 +ij[1502] = 2 +id[1503] = "2238-06-13T14:22:02" +ik[1503] = -1 +il[1503] = -89 +im[1503] = 0.0182 +ij[1503] = 2 +id[1504] = "2238-06-13T19:11:02" +ik[1504] = 0 +il[1504] = -91 +im[1504] = 0.0312 +ij[1504] = 1 +id[1505] = "2238-10-11T02:37:03" +ik[1505] = -1 +il[1505] = 17 +im[1505] = 0.0881 +ij[1505] = 2 +id[1506] = "2238-10-13T00:57:03" +ik[1506] = 0 +il[1506] = 2 +im[1506] = 0.1723 +ij[1506] = 1 +id[1507] = "2239-01-26T14:52:01" +ik[1507] = 0 +il[1507] = -180 +im[1507] = 0.2197 +ij[1507] = 1 +id[1508] = "2239-01-28T01:25:01" +ik[1508] = 1 +il[1508] = 170 +im[1508] = 0.2286 +ij[1508] = 2 +id[1509] = "2239-05-24T17:30:02" +ik[1509] = 0 +il[1509] = -67 +im[1509] = 0.2554 +ij[1509] = 1 +id[1510] = "2239-05-26T03:05:02" +ik[1510] = 1 +il[1510] = -77 +im[1510] = 0.2763 +ij[1510] = 2 +id[1511] = "2239-09-24T04:17:03" +ik[1511] = -1 +il[1511] = 24 +im[1511] = 0.1882 +ij[1511] = 2 +id[1512] = "2239-09-26T16:04:03" +ik[1512] = 0 +il[1512] = 6 +im[1512] = 0.0779 +ij[1512] = 1 +id[1513] = "2240-01-10T16:47:01" +ik[1513] = 0 +il[1513] = -179 +im[1513] = 0.0204 +ij[1513] = 1 +id[1514] = "2240-01-11T14:22:01" +ik[1514] = 1 +il[1514] = 174 +im[1514] = 0.0715 +ij[1514] = 2 +id[1515] = "2240-05-04T03:35:02" +ik[1515] = 0 +il[1515] = -47 +im[1515] = 0.1527 +ij[1515] = 1 +id[1516] = "2240-05-06T17:29:02" +ik[1516] = 1 +il[1516] = -64 +im[1516] = 0.0203 +ij[1516] = 2 +id[1517] = "2240-09-05T19:53:03" +ik[1517] = -1 +il[1517] = 33 +im[1517] = 0.1372 +ij[1517] = 2 +id[1518] = "2240-09-08T20:09:03" +ik[1518] = 0 +il[1518] = 12 +im[1518] = 0.2255 +ij[1518] = 1 +id[1519] = "2240-12-24T22:47:01" +ik[1519] = 0 +il[1519] = -179 +im[1519] = 0.1941 +ij[1519] = 1 +id[1520] = "2240-12-25T08:08:01" +ik[1520] = 1 +il[1520] = 178 +im[1520] = 0.182 +ij[1520] = 2 +id[1521] = "2241-04-15T06:42:02" +ik[1521] = 0 +il[1521] = -30 +im[1521] = 0.1511 +ij[1521] = 1 +id[1522] = "2241-04-18T10:46:02" +ik[1522] = 1 +il[1522] = -52 +im[1522] = 0.2497 +ij[1522] = 2 +id[1523] = "2241-08-19T00:56:03" +ik[1523] = -1 +il[1523] = 45 +im[1523] = 0.17 +ij[1523] = 2 +id[1524] = "2241-08-22T09:06:03" +ik[1524] = 0 +il[1524] = 21 +im[1524] = 0.0262 +ij[1524] = 1 +id[1525] = "2241-12-09T04:32:01" +ik[1525] = -1 +il[1525] = -178 +im[1525] = 0.2064 +ij[1525] = 2 +id[1526] = "2241-12-09T06:57:01" +ik[1526] = 0 +il[1526] = 180 +im[1526] = 0.2085 +ij[1526] = 1 +id[1527] = "2242-03-28T04:04:02" +ik[1527] = 0 +il[1527] = -18 +im[1527] = 0.1777 +ij[1527] = 1 +id[1528] = "2242-03-31T09:20:02" +ik[1528] = 1 +il[1528] = -40 +im[1528] = 0.0335 +ij[1528] = 2 +id[1529] = "2242-07-31T20:51:03" +ik[1529] = -1 +il[1529] = 57 +im[1529] = 0.1404 +ij[1529] = 2 +id[1530] = "2242-08-04T02:38:03" +ik[1530] = 0 +il[1530] = 35 +im[1530] = 0.2367 +ij[1530] = 1 +id[1531] = "2242-11-23T01:10:01" +ik[1531] = -1 +il[1531] = -174 +im[1531] = 0.0258 +ij[1531] = 2 +id[1532] = "2242-11-23T14:52:01" +ik[1532] = 0 +il[1532] = 180 +im[1532] = 0.015 +ij[1532] = 1 +id[1533] = "2243-03-10T18:28:02" +ik[1533] = 0 +il[1533] = -9 +im[1533] = 0.1579 +ij[1533] = 1 +id[1534] = "2243-03-13T15:34:02" +ik[1534] = 1 +il[1534] = -30 +im[1534] = 0.2286 +ij[1534] = 2 +id[1535] = "2243-07-13T10:46:03" +ik[1535] = -1 +il[1535] = 71 +im[1535] = 0.2165 +ij[1535] = 2 +id[1536] = "2243-07-15T23:02:03" +ik[1536] = 0 +il[1536] = 53 +im[1536] = 0.101 +ij[1536] = 1 +id[1537] = "2243-11-06T19:25:01" +ik[1537] = -1 +il[1537] = -170 +im[1537] = 0.223 +ij[1537] = 2 +id[1538] = "2243-11-07T21:21:01" +ik[1538] = 0 +il[1538] = 180 +im[1538] = 0.2021 +ij[1538] = 1 +id[1539] = "2244-02-21T22:33:02" +ik[1539] = 0 +il[1539] = -3 +im[1539] = 0.1203 +ij[1539] = 1 +id[1540] = "2244-02-24T06:56:02" +ik[1540] = 1 +il[1540] = -21 +im[1540] = 0.0352 +ij[1540] = 2 +id[1541] = "2244-06-23T22:17:03" +ik[1541] = -1 +il[1541] = 84 +im[1541] = 0.1265 +ij[1541] = 2 +id[1542] = "2244-06-25T01:40:03" +ik[1542] = 0 +il[1542] = 76 +im[1542] = 0.1858 +ij[1542] = 1 +id[1543] = "2244-10-20T08:51:01" +ik[1543] = -1 +il[1543] = -166 +im[1543] = 0.1433 +ij[1543] = 2 +id[1544] = "2244-10-21T23:30:01" +ik[1544] = 0 +il[1544] = -179 +im[1544] = 0.2005 +ij[1544] = 1 +id[1545] = "2245-02-04T13:40:02" +ik[1545] = 0 +il[1545] = 0 +im[1545] = 0.2206 +ij[1545] = 1 +id[1546] = "2245-02-06T08:08:02" +ik[1546] = 1 +il[1546] = -14 +im[1546] = 0.2077 +ij[1546] = 2 +id[1547] = "2245-06-04T22:04:03" +ik[1547] = 0 +il[1547] = 100 +im[1547] = 0.2689 +ij[1547] = 1 +id[1548] = "2245-06-05T10:17:03" +ik[1548] = 1 +il[1548] = 96 +im[1548] = 0.2576 +ij[1548] = 2 +id[1549] = "2245-10-03T15:34:01" +ik[1549] = -1 +il[1549] = -161 +im[1549] = 0.154 +ij[1549] = 2 +id[1550] = "2245-10-05T19:40:01" +ik[1550] = 0 +il[1550] = -177 +im[1550] = 0.0438 +ij[1550] = 1 +id[1551] = "2246-01-19T12:14:02" +ik[1551] = 0 +il[1551] = 1 +im[1551] = 0.0521 +ij[1551] = 1 +id[1552] = "2246-01-20T17:15:02" +ik[1552] = 1 +il[1552] = -8 +im[1552] = 0.1111 +ij[1552] = 2 +id[1553] = "2246-05-16T00:28:03" +ik[1553] = 0 +il[1553] = 122 +im[1553] = 0.0168 +ij[1553] = 1 +id[1554] = "2246-05-17T23:29:03" +ik[1554] = 1 +il[1554] = 108 +im[1554] = 0.1152 +ij[1554] = 2 +id[1555] = "2246-09-16T12:56:01" +ik[1555] = -1 +il[1555] = -152 +im[1555] = 0.2037 +ij[1555] = 2 +id[1556] = "2246-09-19T06:28:01" +ik[1556] = 0 +il[1556] = -172 +im[1556] = 0.2361 +ij[1556] = 1 +id[1557] = "2247-01-03T16:18:02" +ik[1557] = 0 +il[1557] = 1 +im[1557] = 0.1691 +ij[1557] = 1 +id[1558] = "2247-01-04T08:37:02" +ik[1558] = 1 +il[1558] = -4 +im[1558] = 0.1431 +ij[1558] = 2 +id[1559] = "2247-04-26T17:16:03" +ik[1559] = 0 +il[1559] = 141 +im[1559] = 0.2433 +ij[1559] = 1 +id[1560] = "2247-04-29T15:05:03" +ik[1560] = 1 +il[1560] = 121 +im[1560] = 0.2585 +ij[1560] = 2 +id[1561] = "2247-08-29T23:58:01" +ik[1561] = -1 +il[1561] = -142 +im[1561] = 0.093 +ij[1561] = 2 +id[1562] = "2247-09-02T04:33:01" +ik[1562] = 0 +il[1562] = -165 +im[1562] = 0.0994 +ij[1562] = 1 +id[1563] = "2247-12-18T23:30:02" +ik[1563] = 0 +il[1563] = 0 +im[1563] = 0.2102 +ij[1563] = 1 +id[1564] = "2247-12-19T03:49:02" +ik[1564] = 1 +il[1564] = 0 +im[1564] = 0.2125 +ij[1564] = 2 +id[1565] = "2248-04-07T04:18:03" +ik[1565] = 0 +il[1565] = 156 +im[1565] = 0.0958 +ij[1565] = 1 +id[1566] = "2248-04-10T10:17:03" +ik[1566] = 1 +il[1566] = 133 +im[1566] = 0.0987 +ij[1566] = 2 +id[1567] = "2248-08-11T00:56:01" +ik[1567] = -1 +il[1567] = -130 +im[1567] = 0.2093 +ij[1567] = 2 +id[1568] = "2248-08-14T09:50:01" +ik[1568] = 0 +il[1568] = -154 +im[1568] = 0.2285 +ij[1568] = 1 +id[1569] = "2248-12-02T00:27:02" +ik[1569] = -1 +il[1569] = 4 +im[1569] = 0.0232 +ij[1569] = 2 +id[1570] = "2248-12-02T07:40:02" +ik[1570] = 0 +il[1570] = 0 +im[1570] = 0.0341 +ij[1570] = 1 +id[1571] = "2249-03-20T09:06:03" +ik[1571] = 0 +il[1571] = 167 +im[1571] = 0.2064 +ij[1571] = 1 +id[1572] = "2249-03-23T11:44:03" +ik[1572] = 1 +il[1572] = 144 +im[1572] = 0.2289 +ij[1572] = 2 +id[1573] = "2249-07-23T17:58:01" +ik[1573] = -1 +il[1573] = -117 +im[1573] = 0.115 +ij[1573] = 2 +id[1574] = "2249-07-26T18:14:01" +ik[1574] = 0 +il[1574] = -138 +im[1574] = 0.0713 +ij[1574] = 1 +id[1575] = "2249-11-15T20:22:02" +ik[1575] = -1 +il[1575] = 8 +im[1575] = 0.2013 +ij[1575] = 2 +id[1576] = "2249-11-16T15:21:02" +ik[1576] = 0 +il[1576] = 0 +im[1576] = 0.1776 +ij[1576] = 1 +id[1577] = "2250-03-03T05:45:03" +ik[1577] = 0 +il[1577] = 174 +im[1577] = 0.0479 +ij[1577] = 1 +id[1578] = "2250-03-05T21:49:03" +ik[1578] = 1 +il[1578] = 154 +im[1578] = 0.0999 +ij[1578] = 2 +id[1579] = "2250-07-05T06:27:01" +ik[1579] = -1 +il[1579] = -104 +im[1579] = 0.2041 +ij[1579] = 2 +id[1580] = "2250-07-07T06:14:01" +ik[1580] = 0 +il[1580] = -117 +im[1580] = 0.2493 +ij[1580] = 1 +id[1581] = "2250-10-30T12:56:02" +ik[1581] = -1 +il[1581] = 12 +im[1581] = 0.1767 +ij[1581] = 2 +id[1582] = "2250-10-31T20:09:02" +ik[1582] = 0 +il[1582] = 0 +im[1582] = 0.2101 +ij[1582] = 1 +id[1583] = "2251-02-14T14:52:03" +ik[1583] = 0 +il[1583] = 178 +im[1583] = 0.2176 +ij[1583] = 1 +id[1584] = "2251-02-16T17:29:03" +ik[1584] = 1 +il[1584] = 163 +im[1584] = 0.1777 +ij[1584] = 2 +id[1585] = "2251-06-16T17:58:01" +ik[1585] = -1 +il[1585] = -91 +im[1585] = 0.1739 +ij[1585] = 2 +id[1586] = "2251-06-17T04:33:01" +ik[1586] = 0 +il[1586] = -94 +im[1586] = 0.1524 +ij[1586] = 1 +id[1587] = "2251-10-13T23:44:02" +ik[1587] = -1 +il[1587] = 16 +im[1587] = 0.1097 +ij[1587] = 2 +id[1588] = "2251-10-15T20:09:02" +ik[1588] = 0 +il[1588] = 2 +im[1588] = 0.0132 +ij[1588] = 1 +id[1589] = "2252-01-29T09:35:03" +ik[1589] = 0 +il[1589] = -180 +im[1589] = 0.0796 +ij[1589] = 1 +id[1590] = "2252-01-30T22:03:03" +ik[1590] = 1 +il[1590] = 169 +im[1590] = 0.1501 +ij[1590] = 2 +id[1591] = "2252-05-27T02:09:01" +ik[1591] = 0 +il[1591] = -71 +im[1591] = 0.1411 +ij[1591] = 1 +id[1592] = "2252-05-28T06:13:01" +ik[1592] = 1 +il[1592] = -79 +im[1592] = 0.2001 +ij[1592] = 2 +id[1593] = "2252-09-26T02:37:02" +ik[1593] = -1 +il[1593] = 23 +im[1593] = 0.2355 +ij[1593] = 2 +id[1594] = "2252-09-28T12:42:02" +ik[1594] = 0 +il[1594] = 5 +im[1594] = 0.2198 +ij[1594] = 1 +id[1595] = "2253-01-12T10:47:03" +ik[1595] = 0 +il[1595] = -179 +im[1595] = 0.1294 +ij[1595] = 1 +id[1596] = "2253-01-13T10:17:03" +ik[1596] = 1 +il[1596] = 174 +im[1596] = 0.0842 +ij[1596] = 2 +id[1597] = "2253-05-07T09:50:01" +ik[1597] = 0 +il[1597] = -50 +im[1597] = 0.2709 +ij[1597] = 1 +id[1598] = "2253-05-09T20:22:01" +ik[1598] = 1 +il[1598] = -66 +im[1598] = 0.2057 +ij[1598] = 2 +id[1599] = "2253-09-08T19:53:02" +ik[1599] = -1 +il[1599] = 32 +im[1599] = 0.006 +ij[1599] = 2 +id[1600] = "2253-09-11T18:28:02" +ik[1600] = 0 +il[1600] = 11 +im[1600] = 0.1565 +ij[1600] = 1 +id[1601] = "2253-12-27T16:18:03" +ik[1601] = 0 +il[1601] = -179 +im[1601] = 0.2081 +ij[1601] = 1 +id[1602] = "2253-12-28T03:34:03" +ik[1602] = 1 +il[1602] = 178 +im[1602] = 0.2106 +ij[1602] = 2 +id[1603] = "2254-04-18T10:18:01" +ik[1603] = 0 +il[1603] = -32 +im[1603] = 0.0135 +ij[1603] = 1 +id[1604] = "2254-04-21T13:10:01" +ik[1604] = 1 +il[1604] = -54 +im[1604] = 0.1931 +ij[1604] = 2 +id[1605] = "2254-08-22T02:22:02" +ik[1605] = -1 +il[1605] = 43 +im[1605] = 0.2468 +ij[1605] = 2 +id[1606] = "2254-08-25T09:50:02" +ik[1606] = 0 +il[1606] = 20 +im[1606] = 0.1822 +ij[1606] = 1 +id[1607] = "2254-12-11T00:14:03" +ik[1607] = 0 +il[1607] = -172 +im[1607] = 0.0048 +ij[1607] = 1 +id[1608] = "2254-12-11T23:44:03" +ik[1608] = 1 +il[1608] = -178 +im[1608] = 0.0508 +ij[1608] = 2 +id[1609] = "2255-03-31T05:02:01" +ik[1609] = 0 +il[1609] = -19 +im[1609] = 0.2478 +ij[1609] = 1 +id[1610] = "2255-04-03T10:46:01" +ik[1610] = 1 +il[1610] = -42 +im[1610] = 0.1982 +ij[1610] = 2 +id[1611] = "2255-08-03T23:29:02" +ik[1611] = -1 +il[1611] = 55 +im[1611] = 0.0116 +ij[1611] = 2 +id[1612] = "2255-08-07T06:42:02" +ik[1612] = 0 +il[1612] = 33 +im[1612] = 0.188 +ij[1612] = 1 +id[1613] = "2255-11-25T20:22:03" +ik[1613] = -1 +il[1613] = -174 +im[1613] = 0.162 +ij[1613] = 2 +id[1614] = "2255-11-26T08:23:03" +ik[1614] = 0 +il[1614] = 180 +im[1614] = 0.1425 +ij[1614] = 1 +id[1615] = "2256-03-12T17:02:01" +ik[1615] = 0 +il[1615] = -10 +im[1615] = 0.0356 +ij[1615] = 1 +id[1616] = "2256-03-15T15:49:01" +ik[1616] = 1 +il[1616] = -31 +im[1616] = 0.1854 +ij[1616] = 2 +id[1617] = "2256-07-15T14:08:02" +ik[1617] = -1 +il[1617] = 69 +im[1617] = 0.248 +ij[1617] = 2 +id[1618] = "2256-07-18T06:14:02" +ik[1618] = 0 +il[1618] = 50 +im[1618] = 0.2212 +ij[1618] = 1 +id[1619] = "2256-11-08T15:05:03" +ik[1619] = -1 +il[1619] = -170 +im[1619] = 0.1905 +ij[1619] = 2 +id[1620] = "2256-11-09T15:06:03" +ik[1620] = 0 +il[1620] = 180 +im[1620] = 0.2082 +ij[1620] = 1 +id[1621] = "2257-02-23T19:26:01" +ik[1621] = 0 +il[1621] = -4 +im[1621] = 0.2147 +ij[1621] = 1 +id[1622] = "2257-02-26T05:44:01" +ik[1622] = 1 +il[1622] = -22 +im[1622] = 0.1373 +ij[1622] = 2 +id[1623] = "2257-06-27T01:53:02" +ik[1623] = -1 +il[1623] = 82 +im[1623] = 0.0416 +ij[1623] = 2 +id[1624] = "2257-06-28T11:02:02" +ik[1624] = 0 +il[1624] = 72 +im[1624] = 0.0424 +ij[1624] = 1 +id[1625] = "2257-10-23T05:29:03" +ik[1625] = -1 +il[1625] = -166 +im[1625] = 0.0556 +ij[1625] = 2 +id[1626] = "2257-10-24T18:14:03" +ik[1626] = 0 +il[1626] = -180 +im[1626] = 0.0343 +ij[1626] = 1 +id[1627] = "2258-02-07T08:52:01" +ik[1627] = 0 +il[1627] = -1 +im[1627] = 0.1323 +ij[1627] = 1 +id[1628] = "2258-02-09T05:29:01" +ik[1628] = 1 +il[1628] = -14 +im[1628] = 0.2009 +ij[1628] = 2 +id[1629] = "2258-06-08T07:11:02" +ik[1629] = 0 +il[1629] = 96 +im[1629] = 0.2433 +ij[1629] = 1 +id[1630] = "2258-06-08T13:39:02" +ik[1630] = 1 +il[1630] = 94 +im[1630] = 0.2486 +ij[1630] = 2 +id[1631] = "2258-10-06T13:10:03" +ik[1631] = -1 +il[1631] = -162 +im[1631] = 0.2273 +ij[1631] = 2 +id[1632] = "2258-10-08T15:21:03" +ik[1632] = 0 +il[1632] = -177 +im[1632] = 0.1797 +ij[1632] = 1 +id[1633] = "2259-01-22T06:42:01" +ik[1633] = 0 +il[1633] = 1 +im[1633] = 0.0901 +ij[1633] = 1 +id[1634] = "2259-01-23T13:25:01" +ik[1634] = 1 +il[1634] = -9 +im[1634] = 0.0222 +ij[1634] = 2 +id[1635] = "2259-05-19T08:09:02" +ik[1635] = 0 +il[1635] = 119 +im[1635] = 0.1897 +ij[1635] = 1 +id[1636] = "2259-05-21T02:37:02" +ik[1636] = 1 +il[1636] = 107 +im[1636] = 0.0984 +ij[1636] = 2 +id[1637] = "2259-09-19T12:13:03" +ik[1637] = -1 +il[1637] = -154 +im[1637] = 0.07 +ij[1637] = 2 +id[1638] = "2259-09-22T03:50:03" +ik[1638] = 0 +il[1638] = -173 +im[1638] = 0.1878 +ij[1638] = 1 +id[1639] = "2260-01-06T10:04:01" +ik[1639] = 0 +il[1639] = 1 +im[1639] = 0.2108 +ij[1639] = 1 +id[1640] = "2260-01-07T04:03:01" +ik[1640] = 1 +il[1640] = -5 +im[1640] = 0.2103 +ij[1640] = 2 +id[1641] = "2260-04-28T22:33:02" +ik[1641] = 0 +il[1641] = 138 +im[1641] = 0.1339 +ij[1641] = 1 +id[1642] = "2260-05-01T17:44:02" +ik[1642] = 1 +il[1642] = 119 +im[1642] = 0.2452 +ij[1642] = 2 +id[1643] = "2260-09-01T00:56:03" +ik[1643] = -1 +il[1643] = -144 +im[1643] = 0.232 +ij[1643] = 2 +id[1644] = "2260-09-04T04:04:03" +ik[1644] = 0 +il[1644] = -166 +im[1644] = 0.1132 +ij[1644] = 1 +id[1645] = "2260-12-20T16:47:01" +ik[1645] = 0 +il[1645] = 0 +im[1645] = 0.0894 +ij[1645] = 1 +id[1646] = "2260-12-20T23:01:01" +ik[1646] = 1 +il[1646] = -1 +im[1646] = 0.1018 +ij[1646] = 2 +id[1647] = "2261-04-10T06:42:02" +ik[1647] = 0 +il[1647] = 154 +im[1647] = 0.2462 +ij[1647] = 1 +id[1648] = "2261-04-13T12:13:02" +ik[1648] = 1 +il[1648] = 131 +im[1648] = 0.123 +ij[1648] = 2 +id[1649] = "2261-08-14T03:05:03" +ik[1649] = -1 +il[1649] = -132 +im[1649] = 0.1216 +ij[1649] = 2 +id[1650] = "2261-08-17T11:59:03" +ik[1650] = 0 +il[1650] = -155 +im[1650] = 0.2399 +ij[1650] = 1 +id[1651] = "2261-12-04T19:39:01" +ik[1651] = -1 +il[1651] = 3 +im[1651] = 0.1171 +ij[1651] = 2 +id[1652] = "2261-12-05T00:57:01" +ik[1652] = 0 +il[1652] = 0 +im[1652] = 0.107 +ij[1652] = 1 +id[1653] = "2262-03-23T09:06:02" +ik[1653] = 0 +il[1653] = 165 +im[1653] = 0.1199 +ij[1653] = 1 +id[1654] = "2262-03-26T12:41:02" +ik[1654] = 1 +il[1654] = 143 +im[1654] = 0.2398 +ij[1654] = 2 +id[1655] = "2262-07-26T21:05:03" +ik[1655] = -1 +il[1655] = -119 +im[1655] = 0.2459 +ij[1655] = 2 +id[1656] = "2262-07-29T23:45:03" +ik[1656] = 0 +il[1656] = -140 +im[1656] = 0.1265 +ij[1656] = 1 +id[1657] = "2262-11-18T15:34:01" +ik[1657] = -1 +il[1657] = 7 +im[1657] = 0.2002 +ij[1657] = 2 +id[1658] = "2262-11-19T08:52:01" +ik[1658] = 0 +il[1658] = 0 +im[1658] = 0.2084 +ij[1658] = 1 +id[1659] = "2263-03-06T03:35:02" +ik[1659] = 0 +il[1659] = 173 +im[1659] = 0.2055 +ij[1659] = 1 +id[1660] = "2263-03-08T21:20:02" +ik[1660] = 1 +il[1660] = 153 +im[1660] = 0.0878 +ij[1660] = 2 +id[1661] = "2263-07-08T09:49:03" +ik[1661] = -1 +il[1661] = -106 +im[1661] = 0.1006 +ij[1661] = 2 +id[1662] = "2263-07-10T14:23:03" +ik[1662] = 0 +il[1662] = -121 +im[1662] = 0.207 +ij[1662] = 1 +id[1663] = "2263-11-02T08:51:01" +ik[1663] = -1 +il[1663] = 11 +im[1663] = 0.014 +ij[1663] = 2 +id[1664] = "2263-11-03T14:09:01" +ik[1664] = 0 +il[1664] = 0 +im[1664] = 0.0732 +ij[1664] = 1 +id[1665] = "2264-02-17T11:02:02" +ik[1665] = 0 +il[1665] = 178 +im[1665] = 0.185 +ij[1665] = 1 +id[1666] = "2264-02-19T15:34:02" +ik[1666] = 1 +il[1666] = 162 +im[1666] = 0.2363 +ij[1666] = 2 +id[1667] = "2264-06-18T21:20:03" +ik[1667] = -1 +il[1667] = -93 +im[1667] = 0.2565 +ij[1667] = 2 +id[1668] = "2264-06-19T14:09:03" +ik[1668] = 0 +il[1668] = -98 +im[1668] = 0.2454 +ij[1668] = 1 +id[1669] = "2264-10-15T20:37:01" +ik[1669] = -1 +il[1669] = 15 +im[1669] = 0.1978 +ij[1669] = 2 +id[1670] = "2264-10-17T15:06:01" +ik[1670] = 0 +il[1670] = 2 +im[1670] = 0.1368 +ij[1670] = 1 +id[1671] = "2265-01-31T04:18:02" +ik[1671] = 0 +il[1671] = -180 +im[1671] = 0.0656 +ij[1671] = 1 +id[1672] = "2265-02-01T18:56:02" +ik[1672] = 1 +il[1672] = 168 +im[1672] = 0.0466 +ij[1672] = 2 +id[1673] = "2265-05-30T10:47:03" +ik[1673] = 0 +il[1673] = -74 +im[1673] = 0.0293 +ij[1673] = 1 +id[1674] = "2265-05-31T09:34:03" +ik[1674] = 1 +il[1674] = -80 +im[1674] = 0.0475 +ij[1674] = 2 +id[1675] = "2265-09-29T00:56:01" +ik[1675] = -1 +il[1675] = 21 +im[1675] = 0.1182 +ij[1675] = 2 +id[1676] = "2265-10-01T08:52:01" +ik[1676] = 0 +il[1676] = 5 +im[1676] = 0.2003 +ij[1676] = 1 +id[1677] = "2266-01-15T04:47:02" +ik[1677] = 0 +il[1677] = -179 +im[1677] = 0.2195 +ij[1677] = 1 +id[1678] = "2266-01-16T06:13:02" +ik[1678] = 1 +il[1678] = 173 +im[1678] = 0.2097 +ij[1678] = 2 +id[1679] = "2266-05-10T16:33:03" +ik[1679] = 0 +il[1679] = -53 +im[1679] = 0.2265 +ij[1679] = 1 +id[1680] = "2266-05-12T23:29:03" +ik[1680] = 1 +il[1680] = -68 +im[1680] = 0.2533 +ij[1680] = 2 +id[1681] = "2266-09-11T19:39:01" +ik[1681] = -1 +il[1681] = 30 +im[1681] = 0.1727 +ij[1681] = 2 +id[1682] = "2266-09-14T16:33:01" +ik[1682] = 0 +il[1682] = 10 +im[1682] = 0.0369 +ij[1682] = 1 +id[1683] = "2266-12-30T09:50:02" +ik[1683] = 0 +il[1683] = -179 +im[1683] = 0.1339 +ij[1683] = 1 +id[1684] = "2266-12-30T22:46:02" +ik[1684] = 1 +il[1684] = 177 +im[1684] = 0.156 +ij[1684] = 2 +id[1685] = "2267-04-21T14:23:03" +ik[1685] = 0 +il[1685] = -35 +im[1685] = 0.1747 +ij[1685] = 1 +id[1686] = "2267-04-24T15:49:03" +ik[1686] = 1 +il[1686] = -56 +im[1686] = 0.01 +ij[1686] = 2 +id[1687] = "2267-08-25T03:49:01" +ik[1687] = -1 +il[1687] = 41 +im[1687] = 0.1846 +ij[1687] = 2 +id[1688] = "2267-08-28T10:33:01" +ik[1688] = 0 +il[1688] = 18 +im[1688] = 0.2323 +ij[1688] = 1 +id[1689] = "2267-12-14T17:30:02" +ik[1689] = 0 +il[1689] = 180 +im[1689] = 0.0868 +ij[1689] = 1 +id[1690] = "2267-12-14T18:41:02" +ik[1690] = 1 +il[1690] = -179 +im[1690] = 0.0843 +ij[1690] = 2 +id[1691] = "2268-04-02T06:28:03" +ik[1691] = 0 +il[1691] = -21 +im[1691] = 0.1849 +ij[1691] = 1 +id[1692] = "2268-04-05T12:27:03" +ik[1692] = 1 +il[1692] = -44 +im[1692] = 0.2469 +ij[1692] = 2 +id[1693] = "2268-08-06T02:08:01" +ik[1693] = -1 +il[1693] = 53 +im[1693] = 0.1908 +ij[1693] = 2 +id[1694] = "2268-08-09T10:18:01" +ik[1694] = 0 +il[1694] = 30 +im[1694] = 0.0259 +ij[1694] = 1 +id[1695] = "2268-11-27T15:20:02" +ik[1695] = -1 +il[1695] = -175 +im[1695] = 0.2127 +ij[1695] = 2 +id[1696] = "2268-11-28T01:40:02" +ik[1696] = 0 +il[1696] = 180 +im[1696] = 0.2147 +ij[1696] = 1 +id[1697] = "2269-03-15T15:50:03" +ik[1697] = 0 +il[1697] = -11 +im[1697] = 0.168 +ij[1697] = 1 +id[1698] = "2269-03-18T16:03:03" +ik[1698] = 1 +il[1698] = -33 +im[1698] = 0.0042 +ij[1698] = 2 +id[1699] = "2269-07-18T17:29:01" +ik[1699] = -1 +il[1699] = 67 +im[1699] = 0.1954 +ij[1699] = 2 +id[1700] = "2269-07-21T12:42:01" +ik[1700] = 0 +il[1700] = 48 +im[1700] = 0.2635 +ij[1700] = 1 +id[1701] = "2269-11-11T10:32:02" +ik[1701] = -1 +il[1701] = -171 +im[1701] = 0.0753 +ij[1701] = 2 +id[1702] = "2269-11-12T08:52:02" +ik[1702] = 0 +il[1702] = 180 +im[1702] = 0.1191 +ij[1702] = 1 +id[1703] = "2270-02-26T16:18:03" +ik[1703] = 0 +il[1703] = -5 +im[1703] = 0.2219 +ij[1703] = 1 +id[1704] = "2270-03-01T04:46:03" +ik[1704] = 1 +il[1704] = -23 +im[1704] = 0.2383 +ij[1704] = 2 +id[1705] = "2270-06-30T05:29:01" +ik[1705] = -1 +il[1705] = 80 +im[1705] = 0.219 +ij[1705] = 2 +id[1706] = "2270-07-01T19:54:01" +ik[1706] = 0 +il[1706] = 69 +im[1706] = 0.144 +ij[1706] = 1 +id[1707] = "2270-10-26T01:39:02" +ik[1707] = -1 +il[1707] = -167 +im[1707] = 0.1636 +ij[1707] = 2 +id[1708] = "2270-10-27T12:28:02" +ik[1708] = 0 +il[1708] = -180 +im[1708] = 0.1011 +ij[1708] = 1 +id[1709] = "2271-02-10T04:33:03" +ik[1709] = 0 +il[1709] = -1 +im[1709] = 0.0283 +ij[1709] = 1 +id[1710] = "2271-02-12T03:05:03" +ik[1710] = 1 +il[1710] = -15 +im[1710] = 0.0869 +ij[1710] = 2 +id[1711] = "2271-06-11T16:33:01" +ik[1711] = 0 +il[1711] = 93 +im[1711] = 0.1665 +ij[1711] = 1 +id[1712] = "2271-06-11T17:01:01" +ik[1712] = 1 +il[1712] = 92 +im[1712] = 0.1675 +ij[1712] = 2 +id[1713] = "2271-10-09T10:32:02" +ik[1713] = -1 +il[1713] = -163 +im[1713] = 0.1667 +ij[1713] = 2 +id[1714] = "2271-10-11T10:47:02" +ik[1714] = 0 +il[1714] = -177 +im[1714] = 0.2139 +ij[1714] = 1 +id[1715] = "2272-01-25T01:11:03" +ik[1715] = 0 +il[1715] = 1 +im[1715] = 0.2243 +ij[1715] = 1 +id[1716] = "2272-01-26T10:03:03" +ik[1716] = 1 +il[1716] = -10 +im[1716] = 0.1963 +ij[1716] = 2 +id[1717] = "2272-05-21T16:04:01" +ik[1717] = 0 +il[1717] = 115 +im[1717] = 0.2564 +ij[1717] = 1 +id[1718] = "2272-05-23T05:58:01" +ik[1718] = 1 +il[1718] = 105 +im[1718] = 0.2248 +ij[1718] = 2 +id[1719] = "2272-09-21T11:01:02" +ik[1719] = -1 +il[1719] = -155 +im[1719] = 0.0882 +ij[1719] = 2 +id[1720] = "2272-09-24T00:42:02" +ik[1720] = 0 +il[1720] = -174 +im[1720] = 0.0502 +ij[1720] = 1 +id[1721] = "2273-01-08T03:50:03" +ik[1721] = 0 +il[1721] = 1 +im[1721] = 0.1651 +ij[1721] = 1 +id[1722] = "2273-01-08T23:44:03" +ik[1722] = 1 +il[1722] = -5 +im[1722] = 0.1938 +ij[1722] = 2 +id[1723] = "2273-05-02T04:04:01" +ik[1723] = 0 +il[1723] = 136 +im[1723] = 0.0368 +ij[1723] = 1 +id[1724] = "2273-05-04T20:37:01" +ik[1724] = 1 +il[1724] = 117 +im[1724] = 0.1202 +ij[1724] = 2 +id[1725] = "2273-09-04T01:25:02" +ik[1725] = -1 +il[1725] = -145 +im[1725] = 0.2157 +ij[1725] = 2 +id[1726] = "2273-09-07T03:06:02" +ik[1726] = 0 +il[1726] = -167 +im[1726] = 0.1993 +ij[1726] = 1 +id[1727] = "2273-12-23T10:04:03" +ik[1727] = 0 +il[1727] = 1 +im[1727] = 0.0699 +ij[1727] = 1 +id[1728] = "2273-12-23T17:58:03" +ik[1728] = 1 +il[1728] = -1 +im[1728] = 0.0516 +ij[1728] = 2 +id[1729] = "2274-04-13T09:35:01" +ik[1729] = 0 +il[1729] = 152 +im[1729] = 0.2325 +ij[1729] = 1 +id[1730] = "2274-04-16T14:22:01" +ik[1730] = 1 +il[1730] = 130 +im[1730] = 0.2126 +ij[1730] = 2 +id[1731] = "2274-08-17T05:00:02" +ik[1731] = -1 +il[1731] = -134 +im[1731] = 0.0858 +ij[1731] = 2 +id[1732] = "2274-08-20T13:40:02" +ik[1732] = 0 +il[1732] = -157 +im[1732] = 0.1018 +ij[1732] = 1 +id[1733] = "2274-12-07T14:36:03" +ik[1733] = -1 +il[1733] = 3 +im[1733] = 0.2228 +ij[1733] = 2 +id[1734] = "2274-12-07T18:14:03" +ik[1734] = 0 +il[1734] = 0 +im[1734] = 0.222 +ij[1734] = 1 +id[1735] = "2275-03-26T09:21:01" +ik[1735] = 0 +il[1735] = 164 +im[1735] = 0.0912 +ij[1735] = 1 +id[1736] = "2275-03-29T13:53:01" +ik[1736] = 1 +il[1736] = 141 +im[1736] = 0.093 +ij[1736] = 2 +id[1737] = "2275-07-29T23:58:02" +ik[1737] = -1 +il[1737] = -121 +im[1737] = 0.2434 +ij[1737] = 2 +id[1738] = "2275-08-02T04:33:02" +ik[1738] = 0 +il[1738] = -143 +im[1738] = 0.2191 +ij[1738] = 1 +id[1739] = "2275-11-21T11:00:03" +ik[1739] = -1 +il[1739] = 7 +im[1739] = 0.1286 +ij[1739] = 2 +id[1740] = "2275-11-22T02:23:03" +ik[1740] = 0 +il[1740] = 0 +im[1740] = 0.1558 +ij[1740] = 1 +id[1741] = "2276-03-08T01:26:01" +ik[1741] = 0 +il[1741] = 172 +im[1741] = 0.2352 +ij[1741] = 1 +id[1742] = "2276-03-10T21:05:01" +ik[1742] = 1 +il[1742] = 152 +im[1742] = 0.1988 +ij[1742] = 2 +id[1743] = "2276-07-10T13:24:02" +ik[1743] = -1 +il[1743] = -108 +im[1743] = 0.1287 +ij[1743] = 2 +id[1744] = "2276-07-12T22:18:02" +ik[1744] = 0 +il[1744] = -124 +im[1744] = 0.0201 +ij[1744] = 1 +id[1745] = "2276-11-04T04:46:03" +ik[1745] = -1 +il[1745] = 11 +im[1745] = 0.1363 +ij[1745] = 2 +id[1746] = "2276-11-05T08:09:03" +ik[1746] = 0 +il[1746] = 0 +im[1746] = 0.0799 +ij[1746] = 1 +id[1747] = "2277-02-19T07:26:01" +ik[1747] = 0 +il[1747] = 177 +im[1747] = 0.015 +ij[1747] = 1 +id[1748] = "2277-02-21T13:53:01" +ik[1748] = 1 +il[1748] = 160 +im[1748] = 0.1371 +ij[1748] = 2 +id[1749] = "2277-06-22T00:56:02" +ik[1749] = -1 +il[1749] = -95 +im[1749] = 0.2505 +ij[1749] = 2 +id[1750] = "2277-06-22T23:30:02" +ik[1750] = 0 +il[1750] = -101 +im[1750] = 0.2701 +ij[1750] = 1 +id[1751] = "2277-10-18T17:29:03" +ik[1751] = -1 +il[1751] = 15 +im[1751] = 0.2073 +ij[1751] = 2 +id[1752] = "2277-10-20T09:50:03" +ik[1752] = 0 +il[1752] = 1 +im[1752] = 0.2254 +ij[1752] = 1 +id[1753] = "2278-02-02T23:30:01" +ik[1753] = 0 +il[1753] = -180 +im[1753] = 0.2098 +ij[1753] = 1 +id[1754] = "2278-02-04T16:03:01" +ik[1754] = 1 +il[1754] = 167 +im[1754] = 0.1537 +ij[1754] = 2 +id[1755] = "2278-06-02T19:54:02" +ik[1755] = 0 +il[1755] = -77 +im[1755] = 0.1909 +ij[1755] = 1 +id[1756] = "2278-06-03T12:56:02" +ik[1756] = 1 +il[1756] = -82 +im[1756] = 0.1546 +ij[1756] = 2 +id[1757] = "2278-10-01T23:00:03" +ik[1757] = -1 +il[1757] = 20 +im[1757] = 0.0295 +ij[1757] = 2 +id[1758] = "2278-10-04T05:02:03" +ik[1758] = 0 +il[1758] = 4 +im[1758] = 0.1161 +ij[1758] = 1 +id[1759] = "2279-01-17T23:02:01" +ik[1759] = 0 +il[1759] = -179 +im[1759] = 0.1864 +ij[1759] = 1 +id[1760] = "2279-01-19T02:08:01" +ik[1760] = 1 +il[1760] = 173 +im[1760] = 0.2143 +ij[1760] = 2 +id[1761] = "2279-05-13T23:45:02" +ik[1761] = 0 +il[1761] = -56 +im[1761] = 0.1294 +ij[1761] = 1 +id[1762] = "2279-05-16T02:22:02" +ik[1762] = 1 +il[1762] = -70 +im[1762] = 0.2273 +ij[1762] = 2 +id[1763] = "2279-09-14T19:10:03" +ik[1763] = -1 +il[1763] = 29 +im[1763] = 0.2247 +ij[1763] = 2 +id[1764] = "2279-09-17T14:23:03" +ik[1764] = 0 +il[1764] = 9 +im[1764] = 0.1643 +ij[1764] = 1 +id[1765] = "2280-01-02T03:21:01" +ik[1765] = 0 +il[1765] = -179 +im[1765] = 0.0544 +ij[1765] = 1 +id[1766] = "2280-01-02T18:12:01" +ik[1766] = 1 +il[1766] = 177 +im[1766] = 0.0195 +ij[1766] = 2 +id[1767] = "2280-04-23T18:42:02" +ik[1767] = 0 +il[1767] = -37 +im[1767] = 0.2446 +ij[1767] = 1 +id[1768] = "2280-04-26T18:12:02" +ik[1768] = 1 +il[1768] = -58 +im[1768] = 0.1516 +ij[1768] = 2 +id[1769] = "2280-08-27T05:00:03" +ik[1769] = -1 +il[1769] = 39 +im[1769] = 0.0498 +ij[1769] = 2 +id[1770] = "2280-08-30T10:33:03" +ik[1770] = 0 +il[1770] = 17 +im[1770] = 0.1855 +ij[1770] = 1 +id[1771] = "2280-12-16T10:47:01" +ik[1771] = 0 +il[1771] = 180 +im[1771] = 0.2187 +ij[1771] = 1 +id[1772] = "2280-12-16T13:39:01" +ik[1772] = 1 +il[1772] = -179 +im[1772] = 0.2167 +ij[1772] = 2 +id[1773] = "2281-04-05T08:09:02" +ik[1773] = 0 +il[1773] = -23 +im[1773] = 0.0382 +ij[1773] = 1 +id[1774] = "2281-04-08T14:08:02" +ik[1774] = 1 +il[1774] = -45 +im[1774] = 0.187 +ij[1774] = 2 +id[1775] = "2281-08-09T04:46:03" +ik[1775] = -1 +il[1775] = 52 +im[1775] = 0.2363 +ij[1775] = 2 +id[1776] = "2281-08-12T13:11:03" +ik[1776] = 0 +il[1776] = 28 +im[1776] = 0.1304 +ij[1776] = 1 +id[1777] = "2281-11-30T10:32:01" +ik[1777] = -1 +il[1777] = -175 +im[1777] = 0.1615 +ij[1777] = 2 +id[1778] = "2281-11-30T19:11:01" +ik[1778] = 0 +il[1778] = 180 +im[1778] = 0.1748 +ij[1778] = 1 +id[1779] = "2282-03-18T15:06:02" +ik[1779] = 0 +il[1779] = -12 +im[1779] = 0.2268 +ij[1779] = 1 +id[1780] = "2282-03-21T16:46:02" +ik[1780] = 1 +il[1780] = -34 +im[1780] = 0.1323 +ij[1780] = 2 +id[1781] = "2282-07-21T20:51:03" +ik[1781] = -1 +il[1781] = 65 +im[1781] = 0.0424 +ij[1781] = 2 +id[1782] = "2282-07-24T19:11:03" +ik[1782] = 0 +il[1782] = 45 +im[1782] = 0.1608 +ij[1782] = 1 +id[1783] = "2282-11-14T05:58:01" +ik[1783] = -1 +il[1783] = -171 +im[1783] = 0.1076 +ij[1783] = 2 +id[1784] = "2282-11-15T02:23:01" +ik[1784] = 0 +il[1784] = 180 +im[1784] = 0.0619 +ij[1784] = 1 +id[1785] = "2283-03-01T13:40:02" +ik[1785] = 0 +il[1785] = -6 +im[1785] = 0.0711 +ij[1785] = 1 +id[1786] = "2283-03-04T04:03:02" +ik[1786] = 1 +il[1786] = -24 +im[1786] = 0.1861 +ij[1786] = 2 +id[1787] = "2283-07-03T09:05:03" +ik[1787] = -1 +il[1787] = 78 +im[1787] = 0.2654 +ij[1787] = 2 +id[1788] = "2283-07-05T04:47:03" +ik[1788] = 0 +il[1788] = 66 +im[1788] = 0.2363 +ij[1788] = 1 +id[1789] = "2283-10-28T22:03:01" +ik[1789] = -1 +il[1789] = -167 +im[1789] = 0.2297 +ij[1789] = 2 +id[1790] = "2283-10-30T06:57:01" +ik[1790] = 0 +il[1790] = -180 +im[1790] = 0.2255 +ij[1790] = 1 +id[1791] = "2284-02-12T00:14:02" +ik[1791] = 0 +il[1791] = 6 +im[1791] = 0.205 +ij[1791] = 1 +id[1792] = "2284-02-15T00:56:02" +ik[1792] = 1 +il[1792] = -16 +im[1792] = 0.0928 +ij[1792] = 2 +id[1793] = "2284-06-13T20:36:03" +ik[1793] = -1 +il[1793] = 91 +im[1793] = 0.0576 +ij[1793] = 2 +id[1794] = "2284-06-14T02:09:03" +ik[1794] = 0 +il[1794] = 89 +im[1794] = 0.0461 +ij[1794] = 1 +id[1795] = "2284-10-11T07:53:01" +ik[1795] = -1 +il[1795] = -163 +im[1795] = 0.0578 +ij[1795] = 2 +id[1796] = "2284-10-13T05:59:01" +ik[1796] = 0 +il[1796] = -178 +im[1796] = 0.154 +ij[1796] = 1 +id[1797] = "2285-01-26T19:40:02" +ik[1797] = 0 +il[1797] = 1 +im[1797] = 0.1948 +ij[1797] = 1 +id[1798] = "2285-01-28T06:41:02" +ik[1798] = 1 +il[1798] = -10 +im[1798] = 0.2172 +ij[1798] = 2 +id[1799] = "2285-05-25T00:28:03" +ik[1799] = 0 +il[1799] = 112 +im[1799] = 0.2529 +ij[1799] = 1 +id[1800] = "2285-05-26T09:05:03" +ik[1800] = 1 +il[1800] = 103 +im[1800] = 0.2777 +ij[1800] = 2 +id[1801] = "2285-09-24T09:48:01" +ik[1801] = -1 +il[1801] = -156 +im[1801] = 0.2176 +ij[1801] = 2 +id[1802] = "2285-09-26T21:21:01" +ik[1802] = 0 +il[1802] = -174 +im[1802] = 0.1308 +ij[1802] = 1 +id[1803] = "2286-01-10T21:35:02" +ik[1803] = 0 +il[1803] = 1 +im[1803] = 0.0393 +ij[1803] = 1 +id[1804] = "2286-01-11T19:24:02" +ik[1804] = 1 +il[1804] = -6 +im[1804] = 0.0356 +ij[1804] = 2 +id[1805] = "2286-05-05T10:04:03" +ik[1805] = 0 +il[1805] = 133 +im[1805] = 0.2 +ij[1805] = 1 +id[1806] = "2286-05-07T23:29:03" +ik[1806] = 1 +il[1806] = 115 +im[1806] = 0.0604 +ij[1806] = 2 +id[1807] = "2286-09-07T01:39:01" +ik[1807] = -1 +il[1807] = -147 +im[1807] = 0.1293 +ij[1807] = 2 +id[1808] = "2286-09-10T01:40:01" +ik[1808] = 0 +il[1808] = -168 +im[1808] = 0.2295 +ij[1808] = 1 +id[1809] = "2286-12-26T03:35:02" +ik[1809] = 0 +il[1809] = 1 +im[1809] = 0.1993 +ij[1809] = 1 +id[1810] = "2286-12-26T13:10:02" +ik[1810] = 1 +il[1810] = -2 +im[1810] = 0.1887 +ij[1810] = 2 +id[1811] = "2287-04-16T12:42:03" +ik[1811] = 0 +il[1811] = 150 +im[1811] = 0.1438 +ij[1811] = 1 +id[1812] = "2287-04-19T16:46:03" +ik[1812] = 1 +il[1812] = 128 +im[1812] = 0.2566 +ij[1812] = 2 +id[1813] = "2287-08-20T06:56:01" +ik[1813] = -1 +il[1813] = -136 +im[1813] = 0.1976 +ij[1813] = 2 +id[1814] = "2287-08-23T14:52:01" +ik[1814] = 0 +il[1814] = -159 +im[1814] = 0.0346 +ij[1814] = 1 +id[1815] = "2287-12-10T09:34:02" +ik[1815] = -1 +il[1815] = 2 +im[1815] = 0.1793 +ij[1815] = 2 +id[1816] = "2287-12-10T11:30:02" +ik[1816] = 0 +il[1816] = 0 +im[1816] = 0.1818 +ij[1816] = 1 +id[1817] = "2288-03-28T09:50:03" +ik[1817] = 0 +il[1817] = 162 +im[1817] = 0.2006 +ij[1817] = 1 +id[1818] = "2288-03-31T15:05:03" +ik[1818] = 1 +il[1818] = 140 +im[1818] = 0.0442 +ij[1818] = 2 +id[1819] = "2288-08-01T02:51:01" +ik[1819] = -1 +il[1819] = -123 +im[1819] = 0.1154 +ij[1819] = 2 +id[1820] = "2288-08-04T09:06:01" +ik[1820] = 0 +il[1820] = -145 +im[1820] = 0.2348 +ij[1820] = 1 +id[1821] = "2288-11-23T06:12:02" +ik[1821] = -1 +il[1821] = 6 +im[1821] = 0.0732 +ij[1821] = 2 +id[1822] = "2288-11-23T19:40:02" +ik[1822] = 0 +il[1822] = 0 +im[1822] = 0.0442 +ij[1822] = 1 +id[1823] = "2289-03-10T23:59:03" +ik[1823] = 0 +il[1823] = 171 +im[1823] = 0.1323 +ij[1823] = 1 +id[1824] = "2289-03-13T21:05:03" +ik[1824] = 1 +il[1824] = 150 +im[1824] = 0.2283 +ij[1824] = 2 +id[1825] = "2289-07-13T17:00:01" +ik[1825] = -1 +il[1825] = -110 +im[1825] = 0.2217 +ij[1825] = 2 +id[1826] = "2289-07-16T05:45:01" +ik[1826] = 0 +il[1826] = -127 +im[1826] = 0.1105 +ij[1826] = 1 +id[1827] = "2289-11-07T00:27:02" +ik[1827] = -1 +il[1827] = 10 +im[1827] = 0.2253 +ij[1827] = 2 +id[1828] = "2289-11-08T02:09:02" +ik[1828] = 0 +il[1828] = 0 +im[1828] = 0.2086 +ij[1828] = 1 +id[1829] = "2290-02-22T03:50:03" +ik[1829] = 0 +il[1829] = 177 +im[1829] = 0.1247 +ij[1829] = 1 +id[1830] = "2290-02-24T12:27:03" +ik[1830] = 1 +il[1830] = 159 +im[1830] = 0.003 +ij[1830] = 2 +id[1831] = "2290-06-25T04:32:01" +ik[1831] = -1 +il[1831] = -97 +im[1831] = 0.0722 +ij[1831] = 2 +id[1832] = "2290-06-26T08:52:01" +ik[1832] = 0 +il[1832] = -105 +im[1832] = 0.1391 +ij[1832] = 1 +id[1833] = "2290-10-21T14:08:02" +ik[1833] = -1 +il[1833] = 14 +im[1833] = 0.1031 +ij[1833] = 2 +id[1834] = "2290-10-23T04:33:02" +ik[1834] = 0 +il[1834] = 1 +im[1834] = 0.173 +ij[1834] = 1 +id[1835] = "2291-02-05T18:42:03" +ik[1835] = 0 +il[1835] = -180 +im[1835] = 0.2047 +ij[1835] = 1 +id[1836] = "2291-02-07T13:24:03" +ik[1836] = 1 +il[1836] = 166 +im[1836] = 0.2144 +ij[1836] = 2 +id[1837] = "2291-06-06T05:02:01" +ik[1837] = 0 +il[1837] = -81 +im[1837] = 0.2647 +ij[1837] = 1 +id[1838] = "2291-06-06T16:17:01" +ik[1838] = 1 +il[1838] = -84 +im[1838] = 0.2561 +ij[1838] = 2 +id[1839] = "2291-10-04T20:51:02" +ik[1839] = -1 +il[1839] = 19 +im[1839] = 0.1869 +ij[1839] = 2 +id[1840] = "2291-10-07T00:42:02" +ik[1840] = 0 +il[1840] = 3 +im[1840] = 0.0895 +ij[1840] = 1 +id[1841] = "2292-01-20T17:16:03" +ik[1841] = 0 +il[1841] = -179 +im[1841] = 0.0163 +ij[1841] = 1 +id[1842] = "2292-01-21T22:17:03" +ik[1842] = 1 +il[1842] = 172 +im[1842] = 0.0793 +ij[1842] = 2 +id[1843] = "2292-05-16T07:11:01" +ik[1843] = 0 +il[1843] = -59 +im[1843] = 0.0785 +ij[1843] = 1 +id[1844] = "2292-05-18T05:29:01" +ik[1844] = 1 +il[1844] = -72 +im[1844] = 0.0501 +ij[1844] = 2 +id[1845] = "2292-09-16T18:41:02" +ik[1845] = -1 +il[1845] = 27 +im[1845] = 0.198 +ij[1845] = 2 +id[1846] = "2292-09-19T11:59:02" +ik[1846] = 0 +il[1846] = 8 +im[1846] = 0.2387 +ij[1846] = 1 +id[1847] = "2293-01-03T21:06:03" +ik[1847] = 0 +il[1847] = -179 +im[1847] = 0.1713 +ij[1847] = 1 +id[1848] = "2293-01-04T13:39:03" +ik[1848] = 1 +il[1848] = 176 +im[1848] = 0.1462 +ij[1848] = 2 +id[1849] = "2293-04-26T23:45:01" +ik[1849] = 0 +il[1849] = -40 +im[1849] = 0.2428 +ij[1849] = 1 +id[1850] = "2293-04-29T21:05:01" +ik[1850] = 1 +il[1850] = -59 +im[1850] = 0.268 +ij[1850] = 2 +id[1851] = "2293-08-30T05:58:02" +ik[1851] = -1 +il[1851] = 38 +im[1851] = 0.1368 +ij[1851] = 2 +id[1852] = "2293-09-02T10:18:02" +ik[1852] = 0 +il[1852] = 15 +im[1852] = 0.0512 +ij[1852] = 1 +id[1853] = "2293-12-19T04:04:03" +ik[1853] = 0 +il[1853] = 180 +im[1853] = 0.1849 +ij[1853] = 1 +id[1854] = "2293-12-19T08:51:03" +ik[1854] = 1 +il[1854] = -180 +im[1854] = 0.1899 +ij[1854] = 2 +id[1855] = "2294-04-08T10:04:01" +ik[1855] = 0 +il[1855] = -24 +im[1855] = 0.1458 +ij[1855] = 1 +id[1856] = "2294-04-11T16:17:01" +ik[1856] = 1 +il[1856] = -47 +im[1856] = 0.0538 +ij[1856] = 2 +id[1857] = "2294-08-12T06:56:02" +ik[1857] = -1 +il[1857] = 50 +im[1857] = 0.2106 +ij[1857] = 2 +id[1858] = "2294-08-15T15:50:02" +ik[1858] = 0 +il[1858] = 26 +im[1858] = 0.2479 +ij[1858] = 1 +id[1859] = "2294-12-03T05:29:03" +ik[1859] = -1 +il[1859] = -176 +im[1859] = 0.0258 +ij[1859] = 2 +id[1860] = "2294-12-03T12:28:03" +ik[1860] = 0 +il[1860] = 180 +im[1860] = 0.0153 +ij[1860] = 1 +id[1861] = "2295-03-21T14:52:01" +ik[1861] = 0 +il[1861] = -14 +im[1861] = 0.207 +ij[1861] = 1 +id[1862] = "2295-03-24T17:29:01" +ik[1862] = 1 +il[1862] = -36 +im[1862] = 0.249 +ij[1862] = 2 +id[1863] = "2295-07-24T23:58:02" +ik[1863] = -1 +il[1863] = 63 +im[1863] = 0.1376 +ij[1863] = 2 +id[1864] = "2295-07-28T00:57:02" +ik[1864] = 0 +il[1864] = 42 +im[1864] = 0.0452 +ij[1864] = 1 +id[1865] = "2295-11-17T01:24:03" +ik[1865] = -1 +il[1865] = -172 +im[1865] = 0.1999 +ij[1865] = 2 +id[1866] = "2295-11-17T20:09:03" +ik[1866] = 0 +il[1866] = 180 +im[1866] = 0.179 +ij[1866] = 1 +id[1867] = "2296-03-03T11:02:01" +ik[1867] = 0 +il[1867] = -6 +im[1867] = 0.0704 +ij[1867] = 1 +id[1868] = "2296-03-06T03:20:01" +ik[1868] = 1 +il[1868] = -26 +im[1868] = 0.0876 +ij[1868] = 2 +id[1869] = "2296-07-05T12:41:02" +ik[1869] = -1 +il[1869] = 76 +im[1869] = 0.1835 +ij[1869] = 2 +id[1870] = "2296-07-07T13:11:02" +ik[1870] = 0 +il[1870] = 62 +im[1870] = 0.2469 +ij[1870] = 1 +id[1871] = "2296-10-30T17:58:03" +ik[1871] = -1 +il[1871] = -168 +im[1871] = 0.1353 +ij[1871] = 2 +id[1872] = "2296-11-01T00:57:03" +ik[1872] = 0 +il[1872] = -180 +im[1872] = 0.182 +ij[1872] = 1 +id[1873] = "2297-02-14T20:09:01" +ik[1873] = 0 +il[1873] = -2 +im[1873] = 0.22 +ij[1873] = 1 +id[1874] = "2297-02-16T22:46:01" +ik[1874] = 1 +il[1874] = -17 +im[1874] = 0.207 +ij[1874] = 2 +id[1875] = "2297-06-16T23:58:02" +ik[1875] = -1 +il[1875] = 89 +im[1875] = 0.1771 +ij[1875] = 2 +id[1876] = "2297-06-17T11:30:02" +ik[1876] = 0 +il[1876] = 86 +im[1876] = 0.1537 +ij[1876] = 1 +id[1877] = "2297-10-14T05:00:03" +ik[1877] = -1 +il[1877] = -164 +im[1877] = 0.1367 +ij[1877] = 2 +id[1878] = "2297-10-16T01:11:03" +ik[1878] = 0 +il[1878] = -178 +im[1878] = 0.0485 +ij[1878] = 1 +id[1879] = "2298-01-29T14:23:01" +ik[1879] = 0 +il[1879] = 0 +im[1879] = 0.0726 +ij[1879] = 1 +id[1880] = "2298-01-31T03:20:01" +ik[1880] = 1 +il[1880] = -11 +im[1880] = 0.1447 +ij[1880] = 2 +id[1881] = "2298-05-28T08:52:02" +ik[1881] = 0 +il[1881] = 109 +im[1881] = 0.0888 +ij[1881] = 1 +id[1882] = "2298-05-29T12:27:02" +ik[1882] = 1 +il[1882] = 101 +im[1882] = 0.1538 +ij[1882] = 2 +id[1883] = "2298-09-27T08:08:03" +ik[1883] = -1 +il[1883] = -157 +im[1883] = 0.2222 +ij[1883] = 2 +id[1884] = "2298-09-29T17:59:03" +ik[1884] = 0 +il[1884] = -175 +im[1884] = 0.2172 +ij[1884] = 1 +id[1885] = "2299-01-13T15:35:01" +ik[1885] = 0 +il[1885] = 1 +im[1885] = 0.1461 +ij[1885] = 1 +id[1886] = "2299-01-14T15:20:01" +ik[1886] = 1 +il[1886] = -6 +im[1886] = 0.1023 +ij[1886] = 2 +id[1887] = "2299-05-08T16:33:02" +ik[1887] = 0 +il[1887] = 130 +im[1887] = 0.2664 +ij[1887] = 1 +id[1888] = "2299-05-11T02:22:02" +ik[1888] = 1 +il[1888] = 114 +im[1888] = 0.2101 +ij[1888] = 2 +id[1889] = "2299-09-10T01:39:03" +ik[1889] = -1 +il[1889] = -148 +im[1889] = 0.0709 +ij[1889] = 2 +id[1890] = "2299-09-12T23:59:03" +ik[1890] = 0 +il[1890] = -169 +im[1890] = 0.1113 +ij[1890] = 1 +id[1891] = "2299-12-28T21:06:01" +ik[1891] = 0 +il[1891] = 1 +im[1891] = 0.1964 +ij[1891] = 1 +id[1892] = "2299-12-29T08:36:01" +ik[1892] = 1 +il[1892] = -2 +im[1892] = 0.2051 +ij[1892] = 2 +id[1893] = "2300-04-19T16:33:02" +ik[1893] = 0 +il[1893] = 147 +im[1893] = 0.0563 +ij[1893] = 1 +id[1894] = "2300-04-22T19:10:02" +ik[1894] = 1 +il[1894] = 126 +im[1894] = 0.1452 +ij[1894] = 2 +id[1895] = "2300-08-23T08:22:03" +ik[1895] = -1 +il[1895] = -137 +im[1895] = 0.2513 +ij[1895] = 2 +id[1896] = "2300-08-26T15:50:03" +ik[1896] = 0 +il[1896] = -161 +im[1896] = 0.2028 +ij[1896] = 1 +id[1897] = "2300-12-13T04:32:01" +ik[1897] = -1 +il[1897] = 2 +im[1897] = 0.0397 +ij[1897] = 2 +id[1898] = "2300-12-13T05:02:01" +ik[1898] = 0 +il[1898] = 0 +im[1898] = 0.0407 +ij[1898] = 1 +id[1899] = "2301-04-01T10:47:02" +ik[1899] = 0 +il[1899] = 161 +im[1899] = 0.2528 +ij[1899] = 1 +id[1900] = "2301-04-04T16:46:02" +ik[1900] = 1 +il[1900] = 138 +im[1900] = 0.2212 +ij[1900] = 2 +id[1901] = "2301-08-05T05:44:03" +ik[1901] = -1 +il[1901] = -125 +im[1901] = 0.0551 +ij[1901] = 2 +id[1902] = "2301-08-08T12:57:03" +ik[1902] = 0 +il[1902] = -148 +im[1902] = 0.1619 +ij[1902] = 1 +id[1903] = "2301-11-27T01:10:01" +ik[1903] = -1 +il[1903] = 6 +im[1903] = 0.1718 +ij[1903] = 2 +id[1904] = "2301-11-27T13:11:01" +ik[1904] = 0 +il[1904] = 0 +im[1904] = 0.1543 +ij[1904] = 1 +id[1905] = "2302-03-14T22:33:02" +ik[1905] = 0 +il[1905] = 170 +im[1905] = 0.0294 +ij[1905] = 1 +id[1906] = "2302-03-17T21:20:02" +ik[1906] = 1 +il[1906] = 149 +im[1906] = 0.16 +ij[1906] = 2 +id[1907] = "2302-07-17T20:22:03" +ik[1907] = -1 +il[1907] = -112 +im[1907] = 0.2543 +ij[1907] = 2 +id[1908] = "2302-07-20T12:57:03" +ik[1908] = 0 +il[1908] = -130 +im[1908] = 0.25 +ij[1908] = 1 +id[1909] = "2302-11-10T20:08:01" +ik[1909] = -1 +il[1909] = 10 +im[1909] = 0.1615 +ij[1909] = 2 +id[1910] = "2302-11-11T19:54:01" +ik[1910] = 0 +il[1910] = 0 +im[1910] = 0.1908 +ij[1910] = 1 +id[1911] = "2303-02-26T00:42:02" +ik[1911] = 0 +il[1911] = 176 +im[1911] = 0.2335 +ij[1911] = 1 +id[1912] = "2303-02-28T11:15:02" +ik[1912] = 1 +il[1912] = 158 +im[1912] = 0.1836 +ij[1912] = 2 +id[1913] = "2303-06-29T08:08:03" +ik[1913] = -1 +il[1913] = -99 +im[1913] = 0.0762 +ij[1913] = 2 +id[1914] = "2303-06-30T17:59:03" +ik[1914] = 0 +il[1914] = -108 +im[1914] = 0.0477 +ij[1914] = 1 +id[1915] = "2303-10-25T10:32:01" +ik[1915] = -1 +il[1915] = 14 +im[1915] = 0.0671 +ij[1915] = 2 +id[1916] = "2303-10-26T23:02:01" +ik[1916] = 0 +il[1916] = 1 +im[1916] = 0.0134 +ij[1916] = 1 +id[1917] = "2304-02-09T13:54:02" +ik[1917] = 0 +il[1917] = 179 +im[1917] = 0.1254 +ij[1917] = 1 +id[1918] = "2304-02-11T10:46:02" +ik[1918] = 1 +il[1918] = 166 +im[1918] = 0.1995 +ij[1918] = 2 +id[1919] = "2304-06-09T14:09:03" +ik[1919] = 0 +il[1919] = -84 +im[1919] = 0.229 +ij[1919] = 1 +id[1920] = "2304-06-09T19:53:03" +ik[1920] = 1 +il[1920] = -86 +im[1920] = 0.2361 +ij[1920] = 2 +id[1921] = "2304-10-07T18:27:01" +ik[1921] = -1 +il[1921] = 18 +im[1921] = 0.2192 +ij[1921] = 2 +id[1922] = "2304-10-09T20:23:01" +ik[1922] = 0 +il[1922] = 3 +im[1922] = 0.1853 +ij[1922] = 1 +id[1923] = "2305-01-23T11:30:02" +ik[1923] = 0 +il[1923] = -179 +im[1923] = 0.1329 +ij[1923] = 1 +id[1924] = "2305-01-24T18:41:02" +ik[1924] = 1 +il[1924] = 171 +im[1924] = 0.0691 +ij[1924] = 2 +id[1925] = "2305-05-20T14:52:03" +ik[1925] = 0 +il[1925] = -62 +im[1925] = 0.1925 +ij[1925] = 1 +id[1926] = "2305-05-22T08:51:03" +ik[1926] = 1 +il[1926] = -74 +im[1926] = 0.107 +ij[1926] = 2 +id[1927] = "2305-09-20T17:44:01" +ik[1927] = -1 +il[1927] = 26 +im[1927] = 0.0158 +ij[1927] = 2 +id[1928] = "2305-09-23T09:06:01" +ik[1928] = 0 +il[1928] = 7 +im[1928] = 0.1499 +ij[1928] = 1 +id[1929] = "2306-01-07T14:52:02" +ik[1929] = 0 +il[1929] = -179 +im[1929] = 0.2137 +ij[1929] = 1 +id[1930] = "2306-01-08T09:05:02" +ik[1930] = 1 +il[1930] = 175 +im[1930] = 0.2211 +ij[1930] = 2 +id[1931] = "2306-05-01T04:47:03" +ik[1931] = 0 +il[1931] = -42 +im[1931] = 0.0791 +ij[1931] = 1 +id[1932] = "2306-05-03T23:44:03" +ik[1932] = 1 +il[1932] = -61 +im[1932] = 0.2154 +ij[1932] = 2 +id[1933] = "2306-09-03T06:41:01" +ik[1933] = -1 +il[1933] = 36 +im[1933] = 0.2321 +ij[1933] = 2 +id[1934] = "2306-09-06T09:35:01" +ik[1934] = 0 +il[1934] = 14 +im[1934] = 0.1239 +ij[1934] = 1 +id[1935] = "2306-12-22T21:35:02" +ik[1935] = 0 +il[1935] = -179 +im[1935] = 0.082 +ij[1935] = 1 +id[1936] = "2306-12-23T03:48:02" +ik[1936] = 1 +il[1936] = 179 +im[1936] = 0.0947 +ij[1936] = 2 +id[1937] = "2307-04-12T12:42:03" +ik[1937] = 0 +il[1937] = -26 +im[1937] = 0.2467 +ij[1937] = 1 +id[1938] = "2307-04-15T18:12:03" +ik[1938] = 1 +il[1938] = -49 +im[1938] = 0.1347 +ij[1938] = 2 +id[1939] = "2307-08-16T09:05:01" +ik[1939] = -1 +il[1939] = 48 +im[1939] = 0.0595 +ij[1939] = 2 +id[1940] = "2307-08-19T17:59:01" +ik[1940] = 0 +il[1940] = 24 +im[1940] = 0.2131 +ij[1940] = 1 +id[1941] = "2307-12-07T00:27:02" +ik[1941] = -1 +il[1941] = -177 +im[1941] = 0.1499 +ij[1941] = 2 +id[1942] = "2307-12-07T05:45:02" +ik[1942] = 0 +il[1942] = 180 +im[1942] = 0.141 +ij[1942] = 1 +id[1943] = "2308-03-24T14:38:03" +ik[1943] = 0 +il[1943] = -15 +im[1943] = 0.0617 +ij[1943] = 1 +id[1944] = "2308-03-27T18:27:03" +ik[1944] = 1 +il[1944] = -37 +im[1944] = 0.2132 +ij[1944] = 2 +id[1945] = "2308-07-28T03:05:01" +ik[1945] = -1 +il[1945] = 61 +im[1945] = 0.2606 +ij[1945] = 2 +id[1946] = "2308-07-31T06:14:01" +ik[1946] = 0 +il[1946] = 39 +im[1946] = 0.1604 +ij[1946] = 1 +id[1947] = "2308-11-19T20:36:02" +ik[1947] = -1 +il[1947] = -173 +im[1947] = 0.1927 +ij[1947] = 2 +id[1948] = "2308-11-20T13:40:02" +ik[1948] = 0 +il[1948] = 180 +im[1948] = 0.2074 +ij[1948] = 1 +id[1949] = "2309-03-07T08:52:03" +ik[1949] = 0 +il[1949] = -7 +im[1949] = 0.2262 +ij[1949] = 1 +id[1950] = "2309-03-10T03:05:03" +ik[1950] = 1 +il[1950] = -27 +im[1950] = 0.1244 +ij[1950] = 2 +id[1951] = "2309-07-09T16:03:01" +ik[1951] = -1 +il[1951] = 74 +im[1951] = 0.0517 +ij[1951] = 2 +id[1952] = "2309-07-11T21:21:01" +ik[1952] = 0 +il[1952] = 59 +im[1952] = 0.1799 +ij[1952] = 1 +id[1953] = "2309-11-03T13:53:02" +ik[1953] = -1 +il[1953] = -169 +im[1953] = 0.0058 +ij[1953] = 2 +id[1954] = "2309-11-04T19:11:02" +ik[1954] = 0 +il[1954] = 180 +im[1954] = 0.0656 +ij[1954] = 1 +id[1955] = "2310-02-18T16:04:03" +ik[1955] = 0 +il[1955] = -2 +im[1955] = 0.1669 +ij[1955] = 1 +id[1956] = "2310-02-20T21:05:03" +ik[1956] = 1 +il[1956] = -19 +im[1956] = 0.23 +ij[1956] = 2 +id[1957] = "2310-06-21T03:34:01" +ik[1957] = -1 +il[1957] = 87 +im[1957] = 0.2729 +ij[1957] = 2 +id[1958] = "2310-06-21T21:06:01" +ik[1958] = 0 +il[1958] = 82 +im[1958] = 0.2693 +ij[1958] = 1 +id[1959] = "2310-10-18T01:53:02" +ik[1959] = -1 +il[1959] = -165 +im[1959] = 0.2081 +ij[1959] = 2 +id[1960] = "2310-10-19T20:09:02" +ik[1960] = 0 +il[1960] = -178 +im[1960] = 0.1615 +ij[1960] = 1 +id[1961] = "2311-02-02T09:21:03" +ik[1961] = 0 +il[1961] = 0 +im[1961] = 0.1118 +ij[1961] = 1 +id[1962] = "2311-02-03T00:12:03" +ik[1962] = 1 +il[1962] = -4 +im[1962] = 0.079 +ij[1962] = 2 +id[1963] = "2311-06-01T17:45:01" +ik[1963] = 0 +il[1963] = 106 +im[1963] = 0.0373 +ij[1963] = 1 +id[1964] = "2311-06-02T15:48:01" +ik[1964] = 1 +il[1964] = 99 +im[1964] = 0.0217 +ij[1964] = 2 +id[1965] = "2311-10-01T06:27:02" +ik[1965] = -1 +il[1965] = -159 +im[1965] = 0.0938 +ij[1965] = 2 +id[1966] = "2311-10-03T14:09:02" +ik[1966] = 0 +il[1966] = -176 +im[1966] = 0.1869 +ij[1966] = 1 +id[1967] = "2312-01-17T09:35:03" +ik[1967] = 0 +il[1967] = 1 +im[1967] = 0.2296 +ij[1967] = 1 +id[1968] = "2312-01-18T11:15:03" +ik[1968] = 1 +il[1968] = 0 +im[1968] = 0.2263 +ij[1968] = 2 +id[1969] = "2312-05-11T23:16:01" +ik[1969] = 0 +il[1969] = 127 +im[1969] = 0.2035 +ij[1969] = 1 +id[1970] = "2312-05-14T05:29:01" +ik[1970] = 1 +il[1970] = 112 +im[1970] = 0.2581 +ij[1970] = 2 +id[1971] = "2312-09-13T01:24:02" +ik[1971] = -1 +il[1971] = -150 +im[1971] = 0.1735 +ij[1971] = 2 +id[1972] = "2312-09-15T22:04:02" +ik[1972] = 0 +il[1972] = -170 +im[1972] = 0.0372 +ij[1972] = 1 +id[1973] = "2312-12-31T14:38:03" +ik[1973] = 0 +il[1973] = 1 +im[1973] = 0.1136 +ij[1973] = 1 +id[1974] = "2313-01-01T03:48:03" +ik[1974] = 1 +il[1974] = 4 +im[1974] = 0.1394 +ij[1974] = 2 +id[1975] = "2313-04-22T20:38:01" +ik[1975] = 0 +il[1975] = 145 +im[1975] = 0.1769 +ij[1975] = 1 +id[1976] = "2313-04-25T21:48:01" +ik[1976] = 1 +il[1976] = 124 +im[1976] = 0.0194 +ij[1976] = 2 +id[1977] = "2313-08-26T09:48:02" +ik[1977] = -1 +il[1977] = -139 +im[1977] = 0.1416 +ij[1977] = 2 +id[1978] = "2313-08-29T16:18:02" +ik[1978] = 0 +il[1978] = -162 +im[1978] = 0.2271 +ij[1978] = 1 +id[1979] = "2313-12-15T22:18:03" +ik[1979] = 0 +il[1979] = 0 +im[1979] = 0.1329 +ij[1979] = 1 +id[1980] = "2313-12-15T23:43:03" +ik[1980] = 1 +il[1980] = 8 +im[1980] = 0.1302 +ij[1980] = 2 +id[1981] = "2314-04-04T12:14:01" +ik[1981] = 0 +il[1981] = 159 +im[1981] = 0.14 +ij[1981] = 1 +id[1982] = "2314-04-07T18:27:01" +ik[1982] = 1 +il[1982] = 136 +im[1982] = 0.2387 +ij[1982] = 2 +id[1983] = "2314-08-08T08:22:02" +ik[1983] = -1 +il[1983] = -127 +im[1983] = 0.1968 +ij[1983] = 2 +id[1984] = "2314-08-11T16:18:02" +ik[1984] = 0 +il[1984] = -150 +im[1984] = 0.0314 +ij[1984] = 1 +id[1985] = "2314-11-29T20:22:03" +ik[1985] = -1 +il[1985] = 12 +im[1985] = 0.2191 +ij[1985] = 2 +id[1986] = "2314-11-30T06:28:03" +ik[1986] = 0 +il[1986] = 0 +im[1986] = 0.2234 +ij[1986] = 1 +id[1987] = "2315-03-17T21:35:01" +ik[1987] = 0 +il[1987] = 169 +im[1987] = 0.1799 +ij[1987] = 1 +id[1988] = "2315-03-20T21:48:01" +ik[1988] = 1 +il[1988] = 147 +im[1988] = 0.0373 +ij[1988] = 2 +id[1989] = "2315-07-20T23:43:02" +ik[1989] = -1 +il[1989] = -114 +im[1989] = 0.1531 +ij[1989] = 2 +id[1990] = "2315-07-23T19:26:02" +ik[1990] = 0 +il[1990] = -133 +im[1990] = 0.2457 +ij[1990] = 1 +id[1991] = "2315-11-13T15:34:03" +ik[1991] = -1 +il[1991] = 16 +im[1991] = 0.0581 +ij[1991] = 2 +id[1992] = "2315-11-14T13:40:03" +ik[1992] = 0 +il[1992] = 0 +im[1992] = 0.1043 +ij[1992] = 1 +id[1993] = "2316-02-28T21:35:01" +ik[1993] = 0 +il[1993] = 175 +im[1993] = 0.1981 +ij[1993] = 1 +id[1994] = "2316-03-02T10:17:01" +ik[1994] = 1 +il[1994] = 157 +im[1994] = 0.2299 +ij[1994] = 2 +id[1995] = "2316-07-01T11:43:02" +ik[1995] = -1 +il[1995] = -100 +im[1995] = 0.2434 +ij[1995] = 2 +id[1996] = "2316-07-03T02:52:02" +ik[1996] = 0 +il[1996] = -111 +im[1996] = 0.1783 +ij[1996] = 1 +id[1997] = "2316-10-27T06:55:03" +ik[1997] = -1 +il[1997] = 20 +im[1997] = 0.1956 +ij[1997] = 2 +id[1998] = "2316-10-28T17:30:03" +ik[1998] = 0 +il[1998] = 0 +im[1998] = 0.1461 +ij[1998] = 1 +id[1999] = "2317-02-11T09:35:01" +ik[1999] = 0 +il[1999] = 179 +im[1999] = 0.0814 +ij[1999] = 1 +id[2000] = "2317-02-13T08:22:01" +ik[2000] = 1 +il[2000] = 165 +im[2000] = 0.041 +ij[2000] = 2 +id[2001] = "2317-06-12T23:15:02" +ik[2001] = -1 +il[2001] = -88 +im[2001] = 0.1406 +ij[2001] = 2 +id[2002] = "2317-06-12T23:45:02" +ik[2002] = 0 +il[2002] = -88 +im[2002] = 0.1418 +ij[2002] = 1 +id[2003] = "2317-10-10T16:03:03" +ik[2003] = -1 +il[2003] = 24 +im[2003] = 0.1632 +ij[2003] = 2 +id[2004] = "2317-10-12T15:50:03" +ik[2004] = 0 +il[2004] = 3 +im[2004] = 0.2179 +ij[2004] = 1 +id[2005] = "2318-01-26T05:59:01" +ik[2005] = 0 +il[2005] = -179 +im[2005] = 0.2285 +ij[2005] = 1 +id[2006] = "2318-01-27T15:05:01" +ik[2006] = 1 +il[2006] = 170 +im[2006] = 0.2056 +ij[2006] = 2 +id[2007] = "2318-05-23T22:47:02" +ik[2007] = 0 +il[2007] = -65 +im[2007] = 0.2709 +ij[2007] = 1 +id[2008] = "2318-05-25T11:58:02" +ik[2008] = 1 +il[2008] = -75 +im[2008] = 0.2576 +ij[2008] = 2 +id[2009] = "2318-09-23T16:31:03" +ik[2009] = -1 +il[2009] = 28 +im[2009] = 0.1139 +ij[2009] = 2 +id[2010] = "2318-09-26T05:59:03" +ik[2010] = 0 +il[2010] = 6 +im[2010] = 0.0443 +ij[2010] = 1 +id[2011] = "2319-01-10T08:38:01" +ik[2011] = 0 +il[2011] = -179 +im[2011] = 0.1339 +ij[2011] = 1 +id[2012] = "2319-01-11T04:46:01" +ik[2012] = 1 +il[2012] = 175 +im[2012] = 0.1687 +ij[2012] = 2 +id[2013] = "2319-05-04T10:33:02" +ik[2013] = 0 +il[2013] = -45 +im[2013] = 0.0551 +ij[2013] = 1 +id[2014] = "2319-05-07T02:36:02" +ik[2014] = 1 +il[2014] = -63 +im[2014] = 0.1108 +ij[2014] = 2 +id[2015] = "2319-09-06T07:10:03" +ik[2015] = -1 +il[2015] = 34 +im[2015] = 0.1985 +ij[2015] = 2 +id[2016] = "2319-09-09T08:38:03" +ik[2016] = 0 +il[2016] = 13 +im[2016] = 0.2215 +ij[2016] = 1 +id[2017] = "2319-12-25T14:52:01" +ik[2017] = 0 +il[2017] = -179 +im[2017] = 0.1184 +ij[2017] = 1 +id[2018] = "2319-12-25T23:00:01" +ik[2018] = 1 +il[2018] = 179 +im[2018] = 0.1018 +ij[2018] = 2 +id[2019] = "2320-04-14T15:35:02" +ik[2019] = 0 +il[2019] = -29 +im[2019] = 0.2124 +ij[2019] = 1 +id[2020] = "2320-04-17T20:22:02" +ik[2020] = 1 +il[2020] = -51 +im[2020] = 0.2379 +ij[2020] = 2 +id[2021] = "2320-08-18T11:00:03" +ik[2021] = -1 +il[2021] = 46 +im[2021] = 0.1016 +ij[2021] = 2 +id[2022] = "2320-08-21T19:40:03" +ik[2022] = 0 +il[2022] = 23 +im[2022] = 0.0991 +ij[2022] = 1 +id[2023] = "2320-12-08T19:39:01" +ik[2023] = -1 +il[2023] = -177 +im[2023] = 0.2278 +ij[2023] = 2 +id[2024] = "2320-12-08T23:02:01" +ik[2024] = 0 +il[2024] = 180 +im[2024] = 0.2275 +ij[2024] = 1 +id[2025] = "2321-03-27T15:06:02" +ik[2025] = 0 +il[2025] = -16 +im[2025] = 0.1029 +ij[2025] = 1 +id[2026] = "2321-03-30T19:39:02" +ik[2026] = 1 +il[2026] = -39 +im[2026] = 0.0815 +ij[2026] = 2 +id[2027] = "2321-07-31T06:12:03" +ik[2027] = -1 +il[2027] = 59 +im[2027] = 0.2144 +ij[2027] = 2 +id[2028] = "2321-08-03T11:02:03" +ik[2028] = 0 +il[2028] = 37 +im[2028] = 0.2274 +ij[2028] = 1 +id[2029] = "2321-11-22T16:03:01" +ik[2029] = -1 +il[2029] = -173 +im[2029] = 0.0947 +ij[2029] = 2 +id[2030] = "2321-11-23T07:11:01" +ik[2030] = 0 +il[2030] = 180 +im[2030] = 0.126 +ij[2030] = 1 +id[2031] = "2322-03-10T06:57:02" +ik[2031] = 0 +il[2031] = -8 +im[2031] = 0.216 +ij[2031] = 1 +id[2032] = "2322-03-13T02:51:02" +ik[2032] = 1 +il[2032] = -28 +im[2032] = 0.2081 +ij[2032] = 2 +id[2033] = "2322-07-12T19:39:03" +ik[2033] = -1 +il[2033] = 72 +im[2033] = 0.1551 +ij[2033] = 2 +id[2034] = "2322-07-15T05:02:03" +ik[2034] = 0 +il[2034] = 56 +im[2034] = 0.047 +ij[2034] = 1 +id[2035] = "2322-11-06T09:48:01" +ik[2035] = -1 +il[2035] = -169 +im[2035] = 0.1764 +ij[2035] = 2 +id[2036] = "2322-11-07T12:57:01" +ik[2036] = 0 +il[2036] = 180 +im[2036] = 0.1292 +ij[2036] = 1 +id[2037] = "2323-02-21T12:28:02" +ik[2037] = 0 +il[2037] = -3 +im[2037] = 0.0361 +ij[2037] = 1 +id[2038] = "2323-02-23T19:24:02" +ik[2038] = 1 +il[2038] = -20 +im[2038] = 0.0997 +ij[2038] = 2 +id[2039] = "2323-06-24T07:10:03" +ik[2039] = -1 +il[2039] = 85 +im[2039] = 0.2202 +ij[2039] = 2 +id[2040] = "2323-06-25T06:28:03" +ik[2040] = 0 +il[2040] = 78 +im[2040] = 0.2484 +ij[2040] = 1 +id[2041] = "2323-10-20T22:46:01" +ik[2041] = -1 +il[2041] = -165 +im[2041] = 0.207 +ij[2041] = 2 +id[2042] = "2323-10-22T14:52:01" +ik[2042] = 0 +il[2042] = -179 +im[2042] = 0.2313 +ij[2042] = 1 +id[2043] = "2324-02-05T04:18:02" +ik[2043] = 0 +il[2043] = 0 +im[2043] = 0.2098 +ij[2043] = 1 +id[2044] = "2324-02-06T21:19:02" +ik[2044] = 1 +il[2044] = -13 +im[2044] = 0.1601 +ij[2044] = 2 +id[2045] = "2324-06-04T02:52:03" +ik[2045] = 0 +il[2045] = 102 +im[2045] = 0.2257 +ij[2045] = 1 +id[2046] = "2324-06-04T19:10:03" +ik[2046] = 1 +il[2046] = 98 +im[2046] = 0.1976 +ij[2046] = 2 +id[2047] = "2324-10-03T04:31:01" +ik[2047] = -1 +il[2047] = -160 +im[2047] = 0.0495 +ij[2047] = 2 +id[2048] = "2324-10-05T10:04:01" +ik[2048] = 0 +il[2048] = -176 +im[2048] = 0.0803 +ij[2048] = 1 +id[2049] = "2325-01-19T03:50:02" +ik[2049] = 0 +il[2049] = 1 +im[2049] = 0.1459 +ij[2049] = 1 +id[2050] = "2325-01-20T07:24:02" +ik[2050] = 1 +il[2050] = -8 +im[2050] = 0.1868 +ij[2050] = 2 +id[2051] = "2325-05-15T06:28:03" +ik[2051] = 0 +il[2051] = 124 +im[2051] = 0.1032 +ij[2051] = 1 +id[2052] = "2325-05-17T08:36:03" +ik[2052] = 1 +il[2052] = 110 +im[2052] = 0.2126 +ij[2052] = 2 +id[2053] = "2325-09-16T00:55:01" +ik[2053] = -1 +il[2053] = -151 +im[2053] = 0.233 +ij[2053] = 2 +id[2054] = "2325-09-18T19:54:01" +ik[2054] = 0 +il[2054] = -171 +im[2054] = 0.2013 +ij[2054] = 1 +id[2055] = "2326-01-03T08:09:02" +ik[2055] = 0 +il[2055] = 1 +im[2055] = 0.0921 +ij[2055] = 1 +id[2056] = "2326-01-03T23:15:02" +ik[2056] = 1 +il[2056] = -4 +im[2056] = 0.0603 +ij[2056] = 2 +id[2057] = "2326-04-26T01:11:03" +ik[2057] = 0 +il[2057] = 143 +im[2057] = 0.2588 +ij[2057] = 1 +id[2058] = "2326-04-29T00:27:03" +ik[2058] = 1 +il[2058] = 122 +im[2058] = 0.2007 +ij[2058] = 2 +id[2059] = "2326-08-29T11:00:01" +ik[2059] = -1 +il[2059] = -141 +im[2059] = 0.0166 +ij[2059] = 2 +id[2060] = "2326-09-01T16:18:01" +ik[2060] = 0 +il[2060] = -164 +im[2060] = 0.18 +ij[2060] = 1 +id[2061] = "2326-12-18T15:35:02" +ik[2061] = 0 +il[2061] = 0 +im[2061] = 0.2167 +ij[2061] = 1 +id[2062] = "2326-12-18T18:41:02" +ik[2062] = 1 +il[2062] = 0 +im[2062] = 0.2151 +ij[2062] = 2 +id[2063] = "2327-04-07T13:54:03" +ik[2063] = 0 +il[2063] = 157 +im[2063] = 0.0122 +ij[2063] = 1 +id[2064] = "2327-04-10T20:07:03" +ik[2064] = 1 +il[2064] = 134 +im[2064] = 0.1837 +ij[2064] = 2 +id[2065] = "2327-08-11T10:46:01" +ik[2065] = -1 +il[2065] = -129 +im[2065] = 0.2386 +ij[2065] = 2 +id[2066] = "2327-08-14T19:26:01" +ik[2066] = 0 +il[2066] = -152 +im[2066] = 0.1665 +ij[2066] = 1 +id[2067] = "2327-12-02T15:34:02" +ik[2067] = -1 +il[2067] = 4 +im[2067] = 0.1183 +ij[2067] = 2 +id[2068] = "2327-12-02T23:59:02" +ik[2068] = 0 +il[2068] = 0 +im[2068] = 0.1344 +ij[2068] = 1 +id[2069] = "2328-03-19T20:52:03" +ik[2069] = 0 +il[2069] = 168 +im[2069] = 0.2309 +ij[2069] = 1 +id[2070] = "2328-03-22T22:31:03" +ik[2070] = 1 +il[2070] = 146 +im[2070] = 0.1659 +ij[2070] = 2 +id[2071] = "2328-07-23T03:05:01" +ik[2071] = -1 +il[2071] = -116 +im[2071] = 0.0191 +ij[2071] = 2 +id[2072] = "2328-07-26T01:40:01" +ik[2072] = 0 +il[2072] = -136 +im[2072] = 0.1439 +ij[2072] = 1 +id[2073] = "2328-11-15T11:00:02" +ik[2073] = -1 +il[2073] = 8 +im[2073] = 0.1405 +ij[2073] = 2 +id[2074] = "2328-11-16T07:11:02" +ik[2074] = 0 +il[2074] = 0 +im[2074] = 0.1013 +ij[2074] = 1 +id[2075] = "2329-03-02T18:57:03" +ik[2075] = 0 +il[2075] = 174 +im[2075] = 0.0469 +ij[2075] = 1 +id[2076] = "2329-03-05T09:34:03" +ik[2076] = 1 +il[2076] = 156 +im[2076] = 0.1729 +ij[2076] = 2 +id[2077] = "2329-07-04T15:19:01" +ik[2077] = -1 +il[2077] = -102 +im[2077] = 0.2514 +ij[2077] = 2 +id[2078] = "2329-07-06T11:30:01" +ik[2078] = 0 +il[2078] = -115 +im[2078] = 0.2401 +ij[2078] = 1 +id[2079] = "2329-10-30T03:05:02" +ik[2079] = -1 +il[2079] = 12 +im[2079] = 0.2233 +ij[2079] = 2 +id[2080] = "2329-10-31T11:45:02" +ik[2080] = 0 +il[2080] = 0 +im[2080] = 0.2239 +ij[2080] = 1 +id[2081] = "2330-02-14T05:16:03" +ik[2081] = 0 +il[2081] = 179 +im[2081] = 0.1821 +ij[2081] = 1 +id[2082] = "2330-02-16T06:12:03" +ik[2082] = 1 +il[2082] = 164 +im[2082] = 0.0975 +ij[2082] = 2 +id[2083] = "2330-06-16T02:51:01" +ik[2083] = -1 +il[2083] = -90 +im[2083] = 0.0828 +ij[2083] = 2 +id[2084] = "2330-06-16T09:06:01" +ik[2084] = 0 +il[2084] = -91 +im[2084] = 0.067 +ij[2084] = 1 +id[2085] = "2330-10-13T13:10:02" +ik[2085] = -1 +il[2085] = 16 +im[2085] = 0.0082 +ij[2085] = 2 +id[2086] = "2330-10-15T11:02:02" +ik[2086] = 0 +il[2086] = 2 +im[2086] = 0.1109 +ij[2086] = 1 +id[2087] = "2331-01-29T00:42:03" +ik[2087] = 0 +il[2087] = -179 +im[2087] = 0.1639 +ij[2087] = 1 +id[2088] = "2331-01-30T11:43:03" +ik[2088] = 1 +il[2088] = 170 +im[2088] = 0.2045 +ij[2088] = 2 +id[2089] = "2331-05-27T07:11:01" +ik[2089] = 0 +il[2089] = -68 +im[2089] = 0.2254 +ij[2089] = 1 +id[2090] = "2331-05-28T15:19:01" +ik[2090] = 1 +il[2090] = -77 +im[2090] = 0.2601 +ij[2090] = 2 +id[2091] = "2331-09-26T15:19:02" +ik[2091] = -1 +il[2091] = 24 +im[2091] = 0.2336 +ij[2091] = 2 +id[2092] = "2331-09-29T02:38:02" +ik[2092] = 0 +il[2092] = 6 +im[2092] = 0.1644 +ij[2092] = 1 +id[2093] = "2332-01-13T02:23:03" +ik[2093] = 0 +il[2093] = -179 +im[2093] = 0.0458 +ij[2093] = 1 +id[2094] = "2332-01-14T00:27:03" +ik[2094] = 1 +il[2094] = 174 +im[2094] = 0.0079 +ij[2094] = 2 +id[2095] = "2332-05-06T16:33:01" +ik[2095] = 0 +il[2095] = -48 +im[2095] = 0.2331 +ij[2095] = 1 +id[2096] = "2332-05-09T05:29:01" +ik[2096] = 1 +il[2096] = -65 +im[2096] = 0.115 +ij[2096] = 2 +id[2097] = "2332-09-08T07:24:02" +ik[2097] = -1 +il[2097] = 33 +im[2097] = 0.1097 +ij[2097] = 2 +id[2098] = "2332-09-11T07:11:02" +ik[2098] = 0 +il[2098] = 12 +im[2098] = 0.2227 +ij[2098] = 1 +id[2099] = "2332-12-27T08:23:03" +ik[2099] = 0 +il[2099] = -179 +im[2099] = 0.1989 +ij[2099] = 1 +id[2100] = "2332-12-27T18:12:03" +ik[2100] = 1 +il[2100] = 178 +im[2100] = 0.1897 +ij[2100] = 2 +id[2101] = "2333-04-17T18:57:01" +ik[2101] = 0 +il[2101] = -31 +im[2101] = 0.1271 +ij[2101] = 1 +id[2102] = "2333-04-20T22:46:01" +ik[2102] = 1 +il[2102] = -53 +im[2102] = 0.2523 +ij[2102] = 2 +id[2103] = "2333-08-21T12:55:02" +ik[2103] = -1 +il[2103] = 44 +im[2103] = 0.2273 +ij[2103] = 2 +id[2104] = "2333-08-24T20:52:02" +ik[2104] = 0 +il[2104] = 21 +im[2104] = 0.0867 +ij[2104] = 1 +id[2105] = "2333-12-11T14:36:03" +ik[2105] = -1 +il[2105] = -178 +im[2105] = 0.1422 +ij[2105] = 2 +id[2106] = "2333-12-11T16:18:03" +ik[2106] = 0 +il[2106] = 180 +im[2106] = 0.1451 +ij[2106] = 1 +id[2107] = "2334-03-30T15:35:01" +ik[2107] = 0 +il[2107] = -18 +im[2107] = 0.2308 +ij[2107] = 1 +id[2108] = "2334-04-02T21:05:01" +ik[2108] = 1 +il[2108] = -41 +im[2108] = 0.1034 +ij[2108] = 2 +id[2109] = "2334-08-03T09:05:02" +ik[2109] = -1 +il[2109] = 57 +im[2109] = 0.1149 +ij[2109] = 2 +id[2110] = "2334-08-06T15:21:02" +ik[2110] = 0 +il[2110] = 34 +im[2110] = 0.2406 +ij[2110] = 1 +id[2111] = "2334-11-25T11:15:03" +ik[2111] = -1 +il[2111] = -174 +im[2111] = 0.091 +ij[2111] = 2 +id[2112] = "2334-11-26T00:28:03" +ik[2112] = 0 +il[2112] = 180 +im[2112] = 0.0637 +ij[2112] = 1 +id[2113] = "2335-03-13T05:16:01" +ik[2113] = 0 +il[2113] = -9 +im[2113] = 0.1308 +ij[2113] = 1 +id[2114] = "2335-03-16T02:51:01" +ik[2114] = 1 +il[2114] = -30 +im[2114] = 0.2336 +ij[2114] = 2 +id[2115] = "2335-07-15T23:15:02" +ik[2115] = -1 +il[2115] = 70 +im[2115] = 0.2392 +ij[2115] = 2 +id[2116] = "2335-07-18T12:28:02" +ik[2116] = 0 +il[2116] = 53 +im[2116] = 0.1443 +ij[2116] = 1 +id[2117] = "2335-11-09T05:29:03" +ik[2117] = -1 +il[2117] = -170 +im[2117] = 0.2169 +ij[2117] = 2 +id[2118] = "2335-11-10T06:57:03" +ik[2118] = 0 +il[2118] = 180 +im[2118] = 0.206 +ij[2118] = 1 +id[2119] = "2336-02-24T09:06:01" +ik[2119] = 0 +il[2119] = -4 +im[2119] = 0.1541 +ij[2119] = 1 +id[2120] = "2336-02-26T17:58:01" +ik[2120] = 1 +il[2120] = -21 +im[2120] = 0.0415 +ij[2120] = 2 +id[2121] = "2336-06-26T10:46:02" +ik[2121] = -1 +il[2121] = 83 +im[2121] = 0.0595 +ij[2121] = 2 +id[2122] = "2336-06-27T15:50:02" +ik[2122] = 0 +il[2122] = 75 +im[2122] = 0.1265 +ij[2122] = 1 +id[2123] = "2336-10-22T19:24:03" +ik[2123] = -1 +il[2123] = -166 +im[2123] = 0.0545 +ij[2123] = 2 +id[2124] = "2336-10-24T09:35:03" +ik[2124] = 0 +il[2124] = -179 +im[2124] = 0.1313 +ij[2124] = 1 +id[2125] = "2337-02-06T23:30:01" +ik[2125] = 0 +il[2125] = 0 +im[2125] = 0.1949 +ij[2125] = 1 +id[2126] = "2337-02-08T18:41:01" +ik[2126] = 1 +il[2126] = -14 +im[2126] = 0.224 +ij[2126] = 2 +id[2127] = "2337-06-07T11:59:02" +ik[2127] = 0 +il[2127] = 99 +im[2127] = 0.2584 +ij[2127] = 1 +id[2128] = "2337-06-07T22:31:02" +ik[2128] = 1 +il[2128] = 96 +im[2128] = 0.2539 +ij[2128] = 2 +id[2129] = "2337-10-06T02:22:03" +ik[2129] = -1 +il[2129] = -161 +im[2129] = 0.1983 +ij[2129] = 2 +id[2130] = "2337-10-08T05:59:03" +ik[2130] = 0 +il[2130] = -177 +im[2130] = 0.1136 +ij[2130] = 1 +id[2131] = "2338-01-21T22:04:01" +ik[2131] = 0 +il[2131] = 1 +im[2131] = 0.0297 +ij[2131] = 1 +id[2132] = "2338-01-23T03:34:01" +ik[2132] = 1 +il[2132] = -8 +im[2132] = 0.0781 +ij[2132] = 2 +id[2133] = "2338-05-18T13:54:02" +ik[2133] = 0 +il[2133] = 121 +im[2133] = 0.1118 +ij[2133] = 1 +id[2134] = "2338-05-20T11:43:02" +ik[2134] = 1 +il[2134] = 108 +im[2134] = 0.0066 +ij[2134] = 2 +id[2135] = "2338-09-18T00:12:03" +ik[2135] = -1 +il[2135] = -146 +im[2135] = 0.1208 +ij[2135] = 2 +id[2136] = "2338-09-21T17:16:03" +ik[2136] = 0 +il[2136] = -172 +im[2136] = 0.2271 +ij[2136] = 1 +id[2137] = "2339-01-06T01:54:01" +ik[2137] = 0 +il[2137] = 1 +im[2137] = 0.1879 +ij[2137] = 1 +id[2138] = "2339-01-06T18:41:01" +ik[2138] = 1 +il[2138] = -4 +im[2138] = 0.1673 +ij[2138] = 2 +id[2139] = "2339-04-29T05:59:02" +ik[2139] = 0 +il[2139] = 140 +im[2139] = 0.218 +ij[2139] = 1 +id[2140] = "2339-05-02T03:05:02" +ik[2140] = 1 +il[2140] = 120 +im[2140] = 0.2605 +ij[2140] = 2 +id[2141] = "2339-09-01T11:43:03" +ik[2141] = -1 +il[2141] = -142 +im[2141] = 0.1803 +ij[2141] = 2 +id[2142] = "2339-09-04T15:50:03" +ik[2142] = 0 +il[2142] = -165 +im[2142] = 0.0331 +ij[2142] = 1 +id[2143] = "2339-12-21T08:52:01" +ik[2143] = 0 +il[2143] = 1 +im[2143] = 0.1653 +ij[2143] = 1 +id[2144] = "2339-12-21T13:53:01" +ik[2144] = 1 +il[2144] = 0 +im[2144] = 0.1723 +ij[2144] = 2 +id[2145] = "2340-04-09T16:04:02" +ik[2145] = 0 +il[2145] = 155 +im[2145] = 0.1905 +ij[2145] = 1 +id[2146] = "2340-04-12T22:03:02" +ik[2146] = 1 +il[2146] = 133 +im[2146] = 0.0146 +ij[2146] = 2 +id[2147] = "2340-08-13T13:10:03" +ik[2147] = -1 +il[2147] = -131 +im[2147] = 0.2025 +ij[2147] = 2 +id[2148] = "2340-08-16T21:50:03" +ik[2148] = 0 +il[2148] = -154 +im[2148] = 0.2521 +ij[2148] = 1 +id[2149] = "2340-12-04T10:31:01" +ik[2149] = -1 +il[2149] = 4 +im[2149] = 0.0365 +ij[2149] = 2 +id[2150] = "2340-12-04T17:16:01" +ik[2150] = 0 +il[2150] = 0 +im[2150] = 0.0262 +ij[2150] = 1 +id[2151] = "2341-03-22T20:23:02" +ik[2151] = 0 +il[2151] = 166 +im[2151] = 0.199 +ij[2151] = 1 +id[2152] = "2341-03-25T23:15:02" +ik[2152] = 1 +il[2152] = 144 +im[2152] = 0.2543 +ij[2152] = 2 +id[2153] = "2341-07-26T06:12:03" +ik[2153] = -1 +il[2153] = -118 +im[2153] = 0.1889 +ij[2153] = 2 +id[2154] = "2341-07-29T07:26:03" +ik[2154] = 0 +il[2154] = -138 +im[2154] = 0.0384 +ij[2154] = 1 +id[2155] = "2341-11-18T06:27:01" +ik[2155] = -1 +il[2155] = 8 +im[2155] = 0.2044 +ij[2155] = 2 +id[2156] = "2341-11-19T00:57:01" +ik[2156] = 0 +il[2156] = 0 +im[2156] = 0.1901 +ij[2156] = 1 +id[2157] = "2342-03-05T16:33:02" +ik[2157] = 0 +il[2157] = 174 +im[2157] = 0.1223 +ij[2157] = 1 +id[2158] = "2342-03-08T09:05:02" +ik[2158] = 1 +il[2158] = 154 +im[2158] = 0.0402 +ij[2158] = 2 +id[2159] = "2342-07-07T18:55:03" +ik[2159] = -1 +il[2159] = -104 +im[2159] = 0.1817 +ij[2159] = 2 +id[2160] = "2342-07-09T20:09:03" +ik[2160] = 0 +il[2160] = -118 +im[2160] = 0.2517 +ij[2160] = 1 +id[2161] = "2342-11-01T23:15:01" +ik[2161] = -1 +il[2161] = 12 +im[2161] = 0.1006 +ij[2161] = 2 +id[2162] = "2342-11-03T05:59:01" +ik[2162] = 0 +il[2162] = 0 +im[2162] = 0.1554 +ij[2162] = 1 +id[2163] = "2343-02-17T01:11:02" +ik[2163] = 0 +il[2163] = 178 +im[2163] = 0.2249 +ij[2163] = 1 +id[2164] = "2343-02-19T04:17:02" +ik[2164] = 1 +il[2164] = 162 +im[2164] = 0.2304 +ij[2164] = 2 +id[2165] = "2343-06-19T06:12:03" +ik[2165] = -1 +il[2165] = -91 +im[2165] = 0.2089 +ij[2165] = 2 +id[2166] = "2343-06-19T18:42:03" +ik[2166] = 0 +il[2166] = -95 +im[2166] = 0.1873 +ij[2166] = 1 +id[2167] = "2343-10-16T10:17:01" +ik[2167] = -1 +il[2167] = 16 +im[2167] = 0.1403 +ij[2167] = 2 +id[2168] = "2343-10-18T06:14:01" +ik[2168] = 0 +il[2168] = 2 +im[2168] = 0.0528 +ij[2168] = 1 +id[2169] = "2344-01-31T19:26:02" +ik[2169] = 0 +il[2169] = -180 +im[2169] = 0.0533 +ij[2169] = 1 +id[2170] = "2344-02-02T08:36:02" +ik[2170] = 1 +il[2170] = 169 +im[2170] = 0.1324 +ij[2170] = 2 +id[2171] = "2344-05-29T15:50:03" +ik[2171] = 0 +il[2171] = -71 +im[2171] = 0.0728 +ij[2171] = 1 +id[2172] = "2344-05-30T18:27:03" +ik[2172] = 1 +il[2172] = -79 +im[2172] = 0.1331 +ij[2172] = 2 +id[2173] = "2344-09-28T13:39:01" +ik[2173] = -1 +il[2173] = 22 +im[2173] = 0.195 +ij[2173] = 2 +id[2174] = "2344-09-30T23:02:01" +ik[2174] = 0 +il[2174] = 5 +im[2174] = 0.2157 +ij[2174] = 1 +id[2175] = "2345-01-14T20:23:02" +ik[2175] = 0 +il[2175] = -179 +im[2175] = 0.1826 +ij[2175] = 1 +id[2176] = "2345-01-15T20:22:02" +ik[2176] = 1 +il[2176] = 174 +im[2176] = 0.1466 +ij[2176] = 2 +id[2177] = "2345-05-09T23:02:03" +ik[2177] = 0 +il[2177] = -50 +im[2177] = 0.2555 +ij[2177] = 1 +id[2178] = "2345-05-12T08:36:03" +ik[2178] = 1 +il[2178] = -67 +im[2178] = 0.2155 +ij[2178] = 2 +id[2179] = "2345-09-11T07:24:01" +ik[2179] = -1 +il[2179] = 31 +im[2179] = 0.0949 +ij[2179] = 2 +id[2180] = "2345-09-14T05:30:01" +ik[2180] = 0 +il[2180] = 11 +im[2180] = 0.0664 +ij[2180] = 1 +id[2181] = "2345-12-30T01:54:02" +ik[2181] = 0 +il[2181] = -179 +im[2181] = 0.1931 +ij[2181] = 1 +id[2182] = "2345-12-30T13:39:02" +ik[2182] = 1 +il[2182] = 178 +im[2182] = 0.2052 +ij[2182] = 2 +id[2183] = "2346-04-20T22:47:03" +ik[2183] = 0 +il[2183] = -33 +im[2183] = 0.0911 +ij[2183] = 1 +id[2184] = "2346-04-24T01:10:03" +ik[2184] = 1 +il[2184] = -54 +im[2184] = 0.0979 +ij[2184] = 2 +id[2185] = "2346-08-24T14:22:01" +ik[2185] = -1 +il[2185] = 42 +im[2185] = 0.238 +ij[2185] = 2 +id[2186] = "2346-08-27T21:35:01" +ik[2186] = 0 +il[2186] = 19 +im[2186] = 0.2021 +ij[2186] = 1 +id[2187] = "2346-12-14T09:34:02" +ik[2187] = -1 +il[2187] = -178 +im[2187] = 0.023 +ij[2187] = 2 +id[2188] = "2346-12-14T09:35:02" +ik[2188] = 0 +il[2188] = 180 +im[2188] = 0.0231 +ij[2188] = 1 +id[2189] = "2347-04-02T16:47:03" +ik[2189] = 0 +il[2189] = -20 +im[2189] = 0.241 +ij[2189] = 1 +id[2190] = "2347-04-05T22:31:03" +ik[2190] = 1 +il[2190] = -42 +im[2190] = 0.2205 +ij[2190] = 2 +id[2191] = "2347-08-06T11:43:01" +ik[2191] = -1 +il[2191] = 55 +im[2191] = 0.0974 +ij[2191] = 2 +id[2192] = "2347-08-09T19:11:01" +ik[2192] = 0 +il[2192] = 32 +im[2192] = 0.1057 +ij[2192] = 1 +id[2193] = "2347-11-28T06:12:02" +ik[2193] = -1 +il[2193] = -174 +im[2193] = 0.1965 +ij[2193] = 2 +id[2194] = "2347-11-28T17:59:02" +ik[2194] = 0 +il[2194] = 180 +im[2194] = 0.1846 +ij[2194] = 1 +id[2195] = "2348-03-15T04:04:03" +ik[2195] = 0 +il[2195] = -10 +im[2195] = 0.0673 +ij[2195] = 1 +id[2196] = "2348-03-18T03:05:03" +ik[2196] = 1 +il[2196] = -31 +im[2196] = 0.1102 +ij[2196] = 2 +id[2197] = "2348-07-18T02:36:01" +ik[2197] = -1 +il[2197] = 68 +im[2197] = 0.2538 +ij[2197] = 2 +id[2198] = "2348-07-20T19:40:01" +ik[2198] = 0 +il[2198] = 50 +im[2198] = 0.2595 +ij[2198] = 1 +id[2199] = "2348-11-11T01:10:02" +ik[2199] = -1 +il[2199] = -170 +im[2199] = 0.1501 +ij[2199] = 2 +id[2200] = "2348-11-12T00:42:02" +ik[2200] = 0 +il[2200] = 180 +im[2200] = 0.1837 +ij[2200] = 1 +id[2201] = "2349-02-26T05:59:03" +ik[2201] = 0 +il[2201] = -4 +im[2201] = 0.2414 +ij[2201] = 1 +id[2202] = "2349-02-28T16:46:03" +ik[2202] = 1 +il[2202] = -22 +im[2202] = 0.2023 +ij[2202] = 2 +id[2203] = "2349-06-29T14:22:01" +ik[2203] = -1 +il[2203] = 81 +im[2203] = 0.1227 +ij[2203] = 2 +id[2204] = "2349-07-01T00:57:01" +ik[2204] = 0 +il[2204] = 72 +im[2204] = 0.0305 +ij[2204] = 1 +id[2205] = "2349-10-25T15:48:02" +ik[2205] = -1 +il[2205] = -166 +im[2205] = 0.0795 +ij[2205] = 2 +id[2206] = "2349-10-27T04:04:02" +ik[2206] = 0 +il[2206] = -179 +im[2206] = 0.0091 +ij[2206] = 1 +id[2207] = "2350-02-09T18:57:03" +ik[2207] = 0 +il[2207] = -1 +im[2207] = 0.0923 +ij[2207] = 1 +id[2208] = "2350-02-11T16:03:03" +ik[2208] = 1 +il[2208] = -15 +im[2208] = 0.1803 +ij[2208] = 2 +id[2209] = "2350-06-10T21:21:01" +ik[2209] = 0 +il[2209] = 95 +im[2209] = 0.2292 +ij[2209] = 1 +id[2210] = "2350-06-11T01:53:01" +ik[2210] = 1 +il[2210] = 94 +im[2210] = 0.2357 +ij[2210] = 2 +id[2211] = "2350-10-08T23:58:02" +ik[2211] = -1 +il[2211] = -162 +im[2211] = 0.2122 +ij[2211] = 2 +id[2212] = "2350-10-11T01:26:02" +ik[2212] = 0 +il[2212] = -177 +im[2212] = 0.2045 +ij[2212] = 1 +id[2213] = "2351-01-24T16:33:03" +ik[2213] = 0 +il[2213] = 1 +im[2213] = 0.1733 +ij[2213] = 1 +id[2214] = "2351-01-25T23:58:03" +ik[2214] = 1 +il[2214] = -9 +im[2214] = 0.1162 +ij[2214] = 2 +id[2215] = "2351-05-21T21:35:01" +ik[2215] = 0 +il[2215] = 118 +im[2215] = 0.2156 +ij[2215] = 1 +id[2216] = "2351-05-23T14:51:01" +ik[2216] = 1 +il[2216] = 106 +im[2216] = 0.1368 +ij[2216] = 2 +id[2217] = "2351-09-21T23:15:02" +ik[2217] = -1 +il[2217] = -154 +im[2217] = 0.0231 +ij[2217] = 2 +id[2218] = "2351-09-24T14:23:02" +ik[2218] = 0 +il[2218] = -173 +im[2218] = 0.1351 +ij[2218] = 1 +id[2219] = "2352-01-08T19:40:03" +ik[2219] = 0 +il[2219] = 1 +im[2219] = 0.2172 +ij[2219] = 1 +id[2220] = "2352-01-09T14:22:03" +ik[2220] = 1 +il[2220] = -5 +im[2220] = 0.2276 +ij[2220] = 2 +id[2221] = "2352-05-01T11:16:01" +ik[2221] = 0 +il[2221] = 138 +im[2221] = 0.0597 +ij[2221] = 1 +id[2222] = "2352-05-04T05:58:01" +ik[2222] = 1 +il[2222] = 119 +im[2222] = 0.1973 +ij[2222] = 2 +id[2223] = "2352-09-03T12:27:02" +ik[2223] = -1 +il[2223] = -144 +im[2223] = 0.227 +ij[2223] = 2 +id[2224] = "2352-09-06T15:06:02" +ik[2224] = 0 +il[2224] = -166 +im[2224] = 0.1321 +ij[2224] = 1 +id[2225] = "2352-12-23T02:23:03" +ik[2225] = 0 +il[2225] = 1 +im[2225] = 0.05 +ij[2225] = 1 +id[2226] = "2352-12-23T08:50:03" +ik[2226] = 1 +il[2226] = -1 +im[2226] = 0.0649 +ij[2226] = 2 +id[2227] = "2353-04-12T18:42:01" +ik[2227] = 0 +il[2227] = 153 +im[2227] = 0.2412 +ij[2227] = 1 +id[2228] = "2353-04-15T00:12:01" +ik[2228] = 1 +il[2228] = 138 +im[2228] = 0.1862 +ij[2228] = 2 +id[2229] = "2353-08-16T15:19:02" +ik[2229] = -1 +il[2229] = -132 +im[2229] = 0.0324 +ij[2229] = 2 +id[2230] = "2353-08-19T23:59:02" +ik[2230] = 0 +il[2230] = -156 +im[2230] = 0.1838 +ij[2230] = 1 +id[2231] = "2353-12-07T05:29:03" +ik[2231] = -1 +il[2231] = 3 +im[2231] = 0.1866 +ij[2231] = 2 +id[2232] = "2353-12-07T10:33:03" +ik[2232] = 0 +il[2232] = 0 +im[2232] = 0.1801 +ij[2232] = 1 +id[2233] = "2354-03-25T20:23:01" +ik[2233] = 0 +il[2233] = 165 +im[2233] = 0.035 +ij[2233] = 1 +id[2234] = "2354-03-29T00:26:01" +ik[2234] = 1 +il[2234] = 143 +im[2234] = 0.1804 +ij[2234] = 2 +id[2235] = "2354-07-29T09:19:02" +ik[2235] = -1 +il[2235] = -119 +im[2235] = 0.2555 +ij[2235] = 2 +id[2236] = "2354-08-01T12:42:02" +ik[2236] = 0 +il[2236] = -141 +im[2236] = 0.1652 +ij[2236] = 1 +id[2237] = "2354-11-21T01:38:03" +ik[2237] = -1 +il[2237] = 7 +im[2237] = 0.1933 +ij[2237] = 2 +id[2238] = "2354-11-21T18:28:03" +ik[2238] = 0 +il[2238] = 0 +im[2238] = 0.2105 +ij[2238] = 1 +id[2239] = "2355-03-08T14:23:01" +ik[2239] = 0 +il[2239] = 173 +im[2239] = 0.2273 +ij[2239] = 1 +id[2240] = "2355-03-11T08:36:01" +ik[2240] = 1 +il[2240] = 153 +im[2240] = 0.1382 +ij[2240] = 2 +id[2241] = "2355-07-10T22:17:02" +ik[2241] = -1 +il[2241] = -106 +im[2241] = 0.0296 +ij[2241] = 2 +id[2242] = "2355-07-13T04:04:02" +ik[2242] = 0 +il[2242] = -121 +im[2242] = 0.133 +ij[2242] = 1 +id[2243] = "2355-11-04T19:10:03" +ik[2243] = -1 +il[2243] = 11 +im[2243] = 0.0347 +ij[2243] = 2 +id[2244] = "2355-11-05T23:59:03" +ik[2244] = 0 +il[2244] = 0 +im[2244] = 0.0399 +ij[2244] = 1 +id[2245] = "2356-02-19T21:21:01" +ik[2245] = 0 +il[2245] = 178 +im[2245] = 0.1273 +ij[2245] = 1 +id[2246] = "2356-02-22T02:36:01" +ik[2246] = 1 +il[2246] = 161 +im[2246] = 0.2083 +ij[2246] = 2 +id[2247] = "2356-06-21T09:48:02" +ik[2247] = -1 +il[2247] = -93 +im[2247] = 0.2797 +ij[2247] = 2 +id[2248] = "2356-06-22T04:04:02" +ik[2248] = 0 +il[2248] = -98 +im[2248] = 0.2786 +ij[2248] = 1 +id[2249] = "2356-10-18T07:10:03" +ik[2249] = -1 +il[2249] = 15 +im[2249] = 0.2217 +ij[2249] = 2 +id[2250] = "2356-10-20T01:11:03" +ik[2250] = 0 +il[2250] = 2 +im[2250] = 0.1971 +ij[2250] = 1 +id[2251] = "2357-02-02T14:23:01" +ik[2251] = 0 +il[2251] = -180 +im[2251] = 0.1495 +ij[2251] = 1 +id[2252] = "2357-02-04T05:29:01" +ik[2252] = 1 +il[2252] = 168 +im[2252] = 0.0734 +ij[2252] = 2 +id[2253] = "2357-06-02T00:42:02" +ik[2253] = 0 +il[2253] = -75 +im[2253] = 0.0905 +ij[2253] = 1 +id[2254] = "2357-06-02T21:48:02" +ik[2254] = 1 +il[2254] = -81 +im[2254] = 0.0351 +ij[2254] = 2 +id[2255] = "2357-10-01T11:58:03" +ik[2255] = -1 +il[2255] = 21 +im[2255] = 0.0885 +ij[2255] = 2 +id[2256] = "2357-10-03T19:11:03" +ik[2256] = 0 +il[2256] = 4 +im[2256] = 0.1848 +ij[2256] = 1 +id[2257] = "2358-01-17T14:38:01" +ik[2257] = 0 +il[2257] = -179 +im[2257] = 0.2262 +ij[2257] = 1 +id[2258] = "2358-01-18T16:17:01" +ik[2258] = 1 +il[2258] = 173 +im[2258] = 0.2263 +ij[2258] = 2 +id[2259] = "2358-05-13T05:59:02" +ik[2259] = 0 +il[2259] = -53 +im[2259] = 0.2004 +ij[2259] = 1 +id[2260] = "2358-05-15T11:29:02" +ik[2260] = 1 +il[2260] = -68 +im[2260] = 0.2661 +ij[2260] = 2 +id[2261] = "2358-09-14T07:10:03" +ik[2261] = -1 +il[2261] = 30 +im[2261] = 0.1956 +ij[2261] = 2 +id[2262] = "2358-09-17T03:35:03" +ik[2262] = 0 +il[2262] = 10 +im[2262] = 0.0713 +ij[2262] = 1 +id[2263] = "2359-01-01T19:26:01" +ik[2263] = 0 +il[2263] = -179 +im[2263] = 0.0707 +ij[2263] = 1 +id[2264] = "2359-01-02T08:50:01" +ik[2264] = 1 +il[2264] = 177 +im[2264] = 0.0995 +ij[2264] = 2 +id[2265] = "2359-04-24T02:52:02" +ik[2265] = 0 +il[2265] = -35 +im[2265] = 0.1984 +ij[2265] = 1 +id[2266] = "2359-04-27T03:48:02" +ik[2266] = 1 +il[2266] = -56 +im[2266] = 0.0392 +ij[2266] = 2 +id[2267] = "2359-08-27T15:48:03" +ik[2267] = -1 +il[2267] = 41 +im[2267] = 0.1166 +ij[2267] = 2 +id[2268] = "2359-08-30T22:04:03" +ik[2268] = 0 +il[2268] = 18 +im[2268] = 0.2252 +ij[2268] = 1 +id[2269] = "2359-12-17T03:06:01" +ik[2269] = 0 +il[2269] = 180 +im[2269] = 0.1688 +ij[2269] = 1 +id[2270] = "2359-12-17T04:46:01" +ik[2270] = 1 +il[2270] = -179 +im[2270] = 0.1662 +ij[2270] = 2 +id[2271] = "2360-04-04T18:14:02" +ik[2271] = 0 +il[2271] = -21 +im[2271] = 0.1077 +ij[2271] = 1 +id[2272] = "2360-04-07T00:12:02" +ik[2272] = 1 +il[2272] = -37 +im[2272] = 0.2071 +ij[2272] = 2 +id[2273] = "2360-08-08T14:22:03" +ik[2273] = -1 +il[2273] = 53 +im[2273] = 0.2023 +ij[2273] = 2 +id[2274] = "2360-08-11T22:33:03" +ik[2274] = 0 +il[2274] = 30 +im[2274] = 0.0509 +ij[2274] = 1 +id[2275] = "2360-11-30T01:24:01" +ik[2275] = -1 +il[2275] = -175 +im[2275] = 0.2161 +ij[2275] = 2 +id[2276] = "2360-11-30T11:16:01" +ik[2276] = 0 +il[2276] = 180 +im[2276] = 0.2217 +ij[2276] = 1 +id[2277] = "2361-03-18T03:06:02" +ik[2277] = 0 +il[2277] = -11 +im[2277] = 0.1836 +ij[2277] = 1 +id[2278] = "2361-03-21T03:34:02" +ik[2278] = 1 +il[2278] = -33 +im[2278] = 0.0407 +ij[2278] = 2 +id[2279] = "2361-07-21T05:58:03" +ik[2279] = -1 +il[2279] = 66 +im[2279] = 0.1007 +ij[2279] = 2 +id[2280] = "2361-07-24T02:09:03" +ik[2280] = 0 +il[2280] = 47 +im[2280] = 0.221 +ij[2280] = 1 +id[2281] = "2361-11-13T20:36:01" +ik[2281] = -1 +il[2281] = -171 +im[2281] = 0.0176 +ij[2281] = 2 +id[2282] = "2361-11-14T18:28:01" +ik[2282] = 0 +il[2282] = 180 +im[2282] = 0.0613 +ij[2282] = 1 +id[2283] = "2362-03-01T02:52:02" +ik[2283] = 0 +il[2283] = -5 +im[2283] = 0.1579 +ij[2283] = 1 +id[2284] = "2362-03-03T16:02:02" +ik[2284] = 1 +il[2284] = -23 +im[2284] = 0.223 +ij[2284] = 2 +id[2285] = "2362-07-02T17:58:03" +ik[2285] = -1 +il[2285] = 79 +im[2285] = 0.2476 +ij[2285] = 2 +id[2286] = "2362-07-04T09:50:03" +ik[2286] = 0 +il[2286] = 68 +im[2286] = 0.1898 +ij[2286] = 1 +id[2287] = "2362-10-28T12:12:01" +ik[2287] = -1 +il[2287] = -167 +im[2287] = 0.2185 +ij[2287] = 2 +id[2288] = "2362-10-29T22:18:01" +ik[2288] = 0 +il[2288] = -180 +im[2288] = 0.1819 +ij[2288] = 1 +id[2289] = "2363-02-12T14:38:02" +ik[2289] = 0 +il[2289] = -1 +im[2289] = 0.1029 +ij[2289] = 1 +id[2290] = "2363-02-14T13:53:02" +ik[2290] = 1 +il[2290] = -16 +im[2290] = 0.0088 +ij[2290] = 2 +id[2291] = "2363-06-14T05:29:03" +ik[2291] = -1 +il[2291] = 92 +im[2291] = 0.0821 +ij[2291] = 2 +id[2292] = "2363-06-14T06:42:03" +ik[2292] = 0 +il[2292] = 92 +im[2292] = 0.0853 +ij[2292] = 1 +id[2293] = "2363-10-11T21:19:01" +ik[2293] = -1 +il[2293] = -163 +im[2293] = 0.1533 +ij[2293] = 2 +id[2294] = "2363-10-13T20:52:01" +ik[2294] = 0 +il[2294] = -177 +im[2294] = 0.216 +ij[2294] = 1 +id[2295] = "2364-01-27T11:02:02" +ik[2295] = 0 +il[2295] = 1 +im[2295] = 0.2207 +ij[2295] = 1 +id[2296] = "2364-01-28T20:22:02" +ik[2296] = 1 +il[2296] = -10 +im[2296] = 0.2042 +ij[2296] = 2 +id[2297] = "2364-05-24T05:45:03" +ik[2297] = 0 +il[2297] = 115 +im[2297] = 0.2788 +ij[2297] = 1 +id[2298] = "2364-05-25T18:12:03" +ik[2298] = 1 +il[2298] = 104 +im[2298] = 0.2735 +ij[2298] = 2 +id[2299] = "2364-09-23T22:02:01" +ik[2299] = -1 +il[2299] = -155 +im[2299] = 0.1543 +ij[2299] = 2 +id[2300] = "2364-09-26T11:16:01" +ik[2300] = 0 +il[2300] = -174 +im[2300] = 0.0176 +ij[2300] = 1 +id[2301] = "2365-01-10T13:26:02" +ik[2301] = 0 +il[2301] = 1 +im[2301] = 0.0814 +ij[2301] = 1 +id[2302] = "2365-01-11T09:48:02" +ik[2302] = 1 +il[2302] = -5 +im[2302] = 0.1237 +ij[2302] = 2 +id[2303] = "2365-05-04T17:02:03" +ik[2303] = 0 +il[2303] = 135 +im[2303] = 0.1026 +ij[2303] = 1 +id[2304] = "2365-05-07T08:50:03" +ik[2304] = 1 +il[2304] = 117 +im[2304] = 0.0714 +ij[2304] = 2 +id[2305] = "2365-09-06T12:55:01" +ik[2305] = -1 +il[2305] = -146 +im[2305] = 0.1957 +ij[2305] = 2 +id[2306] = "2365-09-09T14:09:01" +ik[2306] = 0 +il[2306] = -167 +im[2306] = 0.2387 +ij[2306] = 1 +id[2307] = "2365-12-25T19:40:02" +ik[2307] = 0 +il[2307] = 1 +im[2307] = 0.1397 +ij[2307] = 1 +id[2308] = "2365-12-26T04:02:02" +ik[2308] = 1 +il[2308] = -1 +im[2308] = 0.1244 +ij[2308] = 2 +id[2309] = "2366-04-15T21:50:03" +ik[2309] = 0 +il[2309] = 151 +im[2309] = 0.2093 +ij[2309] = 1 +id[2310] = "2366-04-19T02:22:03" +ik[2310] = 1 +il[2310] = 129 +im[2310] = 0.2593 +ij[2310] = 2 +id[2311] = "2366-08-19T17:00:01" +ik[2311] = -1 +il[2311] = -134 +im[2311] = 0.1153 +ij[2311] = 2 +id[2312] = "2366-08-23T01:26:01" +ik[2312] = 0 +il[2312] = -158 +im[2312] = 0.0779 +ij[2312] = 1 +id[2313] = "2366-12-10T00:41:02" +ik[2313] = -1 +il[2313] = 3 +im[2313] = 0.2181 +ij[2313] = 2 +id[2314] = "2366-12-10T03:50:02" +ik[2314] = 0 +il[2314] = 0 +im[2314] = 0.2185 +ij[2314] = 1 +id[2315] = "2367-03-28T20:52:03" +ik[2315] = 0 +il[2315] = 163 +im[2315] = 0.1184 +ij[2315] = 1 +id[2316] = "2367-04-01T01:38:03" +ik[2316] = 1 +il[2316] = 141 +im[2316] = 0.0672 +ij[2316] = 2 +id[2317] = "2367-08-01T12:26:01" +ik[2317] = -1 +il[2317] = -121 +im[2317] = 0.1908 +ij[2317] = 2 +id[2318] = "2367-08-04T17:30:01" +ik[2318] = 0 +il[2318] = -144 +im[2318] = 0.2428 +ij[2318] = 1 +id[2319] = "2367-11-23T21:05:02" +ik[2319] = -1 +il[2319] = 7 +im[2319] = 0.0405 +ij[2319] = 2 +id[2320] = "2367-11-24T11:45:02" +ik[2320] = 0 +il[2320] = 0 +im[2320] = 0.0738 +ij[2320] = 1 +id[2321] = "2368-03-10T12:28:03" +ik[2321] = 0 +il[2321] = 172 +im[2321] = 0.1985 +ij[2321] = 1 +id[2322] = "2368-03-13T08:36:03" +ik[2322] = 1 +il[2322] = 151 +im[2322] = 0.227 +ij[2322] = 2 +id[2323] = "2368-07-13T01:53:01" +ik[2323] = -1 +il[2323] = -108 +im[2323] = 0.1544 +ij[2323] = 2 +id[2324] = "2368-07-15T11:59:01" +ik[2324] = 0 +il[2324] = -125 +im[2324] = 0.0189 +ij[2324] = 1 +id[2325] = "2368-11-06T14:50:02" +ik[2325] = -1 +il[2325] = 11 +im[2325] = 0.1939 +ij[2325] = 2 +id[2326] = "2368-11-07T17:59:02" +ik[2326] = 0 +il[2326] = 0 +im[2326] = 0.1536 +ij[2326] = 1 +id[2327] = "2369-02-21T17:45:03" +ik[2327] = 0 +il[2327] = 177 +im[2327] = 0.036 +ij[2327] = 1 +id[2328] = "2369-02-24T00:55:03" +ik[2328] = 1 +il[2328] = 160 +im[2328] = 0.0879 +ij[2328] = 2 +id[2329] = "2369-06-24T13:24:01" +ik[2329] = -1 +il[2329] = -95 +im[2329] = 0.1741 +ij[2329] = 2 +id[2330] = "2369-06-25T13:26:01" +ik[2330] = 0 +il[2330] = -102 +im[2330] = 0.2155 +ij[2330] = 1 +id[2331] = "2369-10-21T04:02:02" +ik[2331] = -1 +il[2331] = 15 +im[2331] = 0.1893 +ij[2331] = 2 +id[2332] = "2369-10-22T19:54:02" +ik[2332] = 0 +il[2332] = 1 +im[2332] = 0.2217 +ij[2332] = 1 +id[2333] = "2370-02-05T09:21:03" +ik[2333] = 0 +il[2333] = -180 +im[2333] = 0.2108 +ij[2333] = 1 +id[2334] = "2370-02-07T02:36:03" +ik[2334] = 1 +il[2334] = 167 +im[2334] = 0.1702 +ij[2334] = 2 +id[2335] = "2370-06-05T09:50:01" +ik[2335] = 0 +il[2335] = -78 +im[2335] = 0.2309 +ij[2335] = 1 +id[2336] = "2370-06-06T01:10:01" +ik[2336] = 1 +il[2336] = -83 +im[2336] = 0.2067 +ij[2336] = 2 +id[2337] = "2370-10-04T09:48:02" +ik[2337] = -1 +il[2337] = 20 +im[2337] = 0.1044 +ij[2337] = 2 +id[2338] = "2370-10-06T15:21:02" +ik[2338] = 0 +il[2338] = 4 +im[2338] = 0.0323 +ij[2338] = 1 +id[2339] = "2371-01-20T08:38:03" +ik[2339] = 0 +il[2339] = -179 +im[2339] = 0.1094 +ij[2339] = 1 +id[2340] = "2371-01-21T12:26:03" +ik[2340] = 1 +il[2340] = 172 +im[2340] = 0.1594 +ij[2340] = 2 +id[2341] = "2371-05-16T12:57:01" +ik[2341] = 0 +il[2341] = -56 +im[2341] = 0.0457 +ij[2341] = 1 +id[2342] = "2371-05-18T14:36:01" +ik[2342] = 1 +il[2342] = -70 +im[2342] = 0.1684 +ij[2342] = 2 +id[2343] = "2371-09-17T06:26:02" +ik[2343] = -1 +il[2343] = 29 +im[2343] = 0.2382 +ij[2343] = 2 +id[2344] = "2371-09-20T01:11:02" +ik[2344] = 0 +il[2344] = 9 +im[2344] = 0.2186 +ij[2344] = 1 +id[2345] = "2372-01-04T12:57:03" +ik[2345] = 0 +il[2345] = -179 +im[2345] = 0.099 +ij[2345] = 1 +id[2346] = "2372-01-05T04:17:03" +ik[2346] = 1 +il[2346] = 176 +im[2346] = 0.0674 +ij[2346] = 2 +id[2347] = "2372-04-26T07:26:01" +ik[2347] = 0 +il[2347] = -38 +im[2347] = 0.2682 +ij[2347] = 1 +id[2348] = "2372-04-29T06:26:01" +ik[2348] = 1 +il[2348] = -58 +im[2348] = 0.2294 +ij[2348] = 2 +id[2349] = "2372-08-29T16:46:02" +ik[2349] = -1 +il[2349] = 39 +im[2349] = 0.0399 +ij[2349] = 2 +id[2350] = "2372-09-01T22:04:02" +ik[2350] = 0 +il[2350] = 16 +im[2350] = 0.1593 +ij[2350] = 1 +id[2351] = "2372-12-18T20:23:03" +ik[2351] = 0 +il[2351] = 180 +im[2351] = 0.2107 +ij[2351] = 1 +id[2352] = "2372-12-18T23:43:03" +ik[2352] = 1 +il[2352] = -180 +im[2352] = 0.2101 +ij[2352] = 2 +id[2353] = "2373-04-07T19:54:01" +ik[2353] = 0 +il[2353] = -23 +im[2353] = 0.0456 +ij[2353] = 1 +id[2354] = "2373-04-11T02:07:01" +ik[2354] = 1 +il[2354] = -46 +im[2354] = 0.1626 +ij[2354] = 2 +id[2355] = "2373-08-11T17:00:02" +ik[2355] = -1 +il[2355] = 51 +im[2355] = 0.246 +ij[2355] = 2 +id[2356] = "2373-08-15T01:26:02" +ik[2356] = 0 +il[2356] = 28 +im[2356] = 0.2071 +ij[2356] = 1 +id[2357] = "2373-12-02T20:22:03" +ik[2357] = -1 +il[2357] = -176 +im[2357] = 0.0749 +ij[2357] = 2 +id[2358] = "2373-12-03T04:33:03" +ik[2358] = 0 +il[2358] = -180 +im[2358] = 0.092 +ij[2358] = 1 +id[2359] = "2374-03-21T02:23:01" +ik[2359] = 0 +il[2359] = -13 +im[2359] = 0.238 +ij[2359] = 1 +id[2360] = "2374-03-24T04:17:01" +ik[2360] = 1 +il[2360] = -34 +im[2360] = 0.2083 +ij[2360] = 2 +id[2361] = "2374-07-24T09:19:02" +ik[2361] = -1 +il[2361] = 64 +im[2361] = 0.049 +ij[2361] = 2 +id[2362] = "2374-07-27T08:23:02" +ik[2362] = 0 +il[2362] = 44 +im[2362] = 0.1441 +ij[2362] = 1 +id[2363] = "2374-11-16T16:02:03" +ik[2363] = -1 +il[2363] = -172 +im[2363] = 0.1486 +ij[2363] = 2 +id[2364] = "2374-11-17T11:59:03" +ik[2364] = 0 +il[2364] = 180 +im[2364] = 0.1127 +ij[2364] = 1 +id[2365] = "2375-03-03T00:14:01" +ik[2365] = 0 +il[2365] = 2 +im[2365] = 0.0411 +ij[2365] = 1 +id[2366] = "2375-03-06T15:05:01" +ik[2366] = 1 +il[2366] = -25 +im[2366] = 0.1713 +ij[2366] = 2 +id[2367] = "2375-07-05T21:34:02" +ik[2367] = -1 +il[2367] = 77 +im[2367] = 0.2403 +ij[2367] = 2 +id[2368] = "2375-07-07T18:28:02" +ik[2368] = 0 +il[2368] = 65 +im[2368] = 0.2539 +ij[2368] = 1 +id[2369] = "2375-10-31T08:22:03" +ik[2369] = -1 +il[2369] = -168 +im[2369] = 0.2022 +ij[2369] = 2 +id[2370] = "2375-11-01T16:33:03" +ik[2370] = 0 +il[2370] = -180 +im[2370] = 0.2148 +ij[2370] = 1 +id[2371] = "2376-02-15T10:18:01" +ik[2371] = 0 +il[2371] = -1 +im[2371] = 0.2049 +ij[2371] = 1 +id[2372] = "2376-02-17T11:43:01" +ik[2372] = 1 +il[2372] = -17 +im[2372] = 0.1374 +ij[2372] = 2 +id[2373] = "2376-06-16T08:50:02" +ik[2373] = -1 +il[2373] = 90 +im[2373] = 0.0938 +ij[2373] = 2 +id[2374] = "2376-06-16T16:04:02" +ik[2374] = 0 +il[2374] = 88 +im[2374] = 0.0776 +ij[2374] = 1 +id[2375] = "2376-10-13T18:26:03" +ik[2375] = -1 +il[2375] = -164 +im[2375] = 0.0476 +ij[2375] = 2 +id[2376] = "2376-10-15T16:04:03" +ik[2376] = 0 +il[2376] = -178 +im[2376] = 0.0619 +ij[2376] = 1 +id[2377] = "2377-01-29T05:30:01" +ik[2377] = 0 +il[2377] = 1 +im[2377] = 0.1503 +ij[2377] = 1 +id[2378] = "2377-01-30T17:00:01" +ik[2378] = 1 +il[2378] = -10 +im[2378] = 0.1993 +ij[2378] = 2 +id[2379] = "2377-05-27T14:09:02" +ik[2379] = 0 +il[2379] = 111 +im[2379] = 0.1828 +ij[2379] = 1 +id[2380] = "2377-05-28T21:19:02" +ik[2380] = 1 +il[2380] = 103 +im[2380] = 0.2321 +ij[2380] = 2 +id[2381] = "2377-09-26T20:50:03" +ik[2381] = -1 +il[2381] = -157 +im[2381] = 0.2334 +ij[2381] = 2 +id[2382] = "2377-09-29T07:54:03" +ik[2382] = 0 +il[2382] = -174 +im[2382] = 0.1745 +ij[2382] = 1 +id[2383] = "2378-01-13T07:26:01" +ik[2383] = 0 +il[2383] = 1 +im[2383] = 0.0635 +ij[2383] = 1 +id[2384] = "2378-01-14T05:43:01" +ik[2384] = 1 +il[2384] = -6 +im[2384] = 0.0318 +ij[2384] = 2 +id[2385] = "2378-05-07T23:16:02" +ik[2385] = 0 +il[2385] = 132 +im[2385] = 0.2403 +ij[2385] = 1 +id[2386] = "2378-05-10T11:43:02" +ik[2386] = 1 +il[2386] = 115 +im[2386] = 0.1358 +ij[2386] = 2 +id[2387] = "2378-09-09T13:10:03" +ik[2387] = -1 +il[2387] = -147 +im[2387] = 0.0562 +ij[2387] = 2 +id[2388] = "2378-09-12T12:42:03" +ik[2388] = 0 +il[2388] = -168 +im[2388] = 0.1938 +ij[2388] = 1 +id[2389] = "2378-12-28T13:11:01" +ik[2389] = 0 +il[2389] = 1 +im[2389] = 0.208 +ij[2389] = 1 +id[2390] = "2378-12-28T23:14:01" +ik[2390] = 1 +il[2390] = -2 +im[2390] = 0.2036 +ij[2390] = 2 +id[2391] = "2379-04-19T01:11:02" +ik[2391] = 0 +il[2391] = 149 +im[2391] = 0.072 +ij[2391] = 1 +id[2392] = "2379-04-22T04:46:02" +ik[2392] = 1 +il[2392] = 127 +im[2392] = 0.2266 +ij[2392] = 2 +id[2393] = "2379-08-22T18:55:03" +ik[2393] = -1 +il[2393] = -136 +im[2393] = 0.2461 +ij[2393] = 2 +id[2394] = "2379-08-26T02:38:03" +ik[2394] = 0 +il[2394] = -159 +im[2394] = 0.1325 +ij[2394] = 1 +id[2395] = "2379-12-12T19:38:01" +ik[2395] = -1 +il[2395] = 2 +im[2395] = 0.1221 +ij[2395] = 2 +id[2396] = "2379-12-12T21:06:01" +ik[2396] = 0 +il[2396] = 0 +im[2396] = 0.1248 +ij[2396] = 1 +id[2397] = "2380-03-30T21:21:02" +ik[2397] = 0 +il[2397] = 162 +im[2397] = 0.2498 +ij[2397] = 1 +id[2398] = "2380-04-03T02:50:02" +ik[2398] = 1 +il[2398] = 139 +im[2398] = 0.1482 +ij[2398] = 2 +id[2399] = "2380-08-03T15:19:03" +ik[2399] = -1 +il[2399] = -123 +im[2399] = 0.0832 +ij[2399] = 2 +id[2400] = "2380-08-06T21:35:03" +ik[2400] = 0 +il[2400] = -146 +im[2400] = 0.2289 +ij[2400] = 1 +id[2401] = "2380-11-25T16:02:01" +ik[2401] = -1 +il[2401] = 6 +im[2401] = 0.0999 +ij[2401] = 2 +id[2402] = "2380-11-26T05:16:01" +ik[2402] = 0 +il[2402] = 0 +im[2402] = 0.0738 +ij[2402] = 1 +id[2403] = "2381-03-13T10:47:02" +ik[2403] = 0 +il[2403] = 171 +im[2403] = 0.1047 +ij[2403] = 1 +id[2404] = "2381-03-16T08:36:02" +ik[2404] = 1 +il[2404] = 150 +im[2404] = 0.2257 +ij[2404] = 2 +id[2405] = "2381-07-16T05:14:03" +ik[2405] = -1 +il[2405] = -110 +im[2405] = 0.2601 +ij[2405] = 2 +id[2406] = "2381-07-18T19:26:03" +ik[2406] = 0 +il[2406] = -128 +im[2406] = 0.1953 +ij[2406] = 1 +id[2407] = "2381-11-09T10:31:01" +ik[2407] = -1 +il[2407] = 10 +im[2407] = 0.2071 +ij[2407] = 2 +id[2408] = "2381-11-10T11:45:01" +ik[2408] = 0 +il[2408] = 0 +im[2408] = 0.2093 +ij[2408] = 1 +id[2409] = "2382-02-24T14:23:02" +ik[2409] = 0 +il[2409] = 176 +im[2409] = 0.1938 +ij[2409] = 1 +id[2410] = "2382-02-26T23:29:02" +ik[2410] = 1 +il[2410] = 159 +im[2410] = 0.0879 +ij[2410] = 2 +id[2411] = "2382-06-27T17:00:03" +ik[2411] = -1 +il[2411] = -97 +im[2411] = 0.0478 +ij[2411] = 2 +id[2412] = "2382-06-28T22:47:03" +ik[2412] = 0 +il[2412] = -105 +im[2412] = 0.1186 +ij[2412] = 1 +id[2413] = "2382-10-24T00:26:01" +ik[2413] = -1 +il[2413] = 14 +im[2413] = 0.0246 +ij[2413] = 2 +id[2414] = "2382-10-25T14:23:01" +ik[2414] = 0 +il[2414] = 1 +im[2414] = 0.1027 +ij[2414] = 1 +id[2415] = "2383-02-08T04:33:02" +ik[2415] = 0 +il[2415] = -180 +im[2415] = 0.193 +ij[2415] = 1 +id[2416] = "2383-02-09T23:58:02" +ik[2416] = 1 +il[2416] = 166 +im[2416] = 0.2319 +ij[2416] = 2 +id[2417] = "2383-06-08T18:57:03" +ik[2417] = 0 +il[2417] = -82 +im[2417] = 0.258 +ij[2417] = 1 +id[2418] = "2383-06-09T04:46:03" +ik[2418] = 1 +il[2418] = -84 +im[2418] = 0.2601 +ij[2418] = 2 +id[2419] = "2383-10-07T07:38:01" +ik[2419] = -1 +il[2419] = 19 +im[2419] = 0.1972 +ij[2419] = 2 +id[2420] = "2383-10-09T11:02:01" +ik[2420] = 0 +il[2420] = 3 +im[2420] = 0.1172 +ij[2420] = 1 +id[2421] = "2384-01-23T02:52:02" +ik[2421] = 0 +il[2421] = -179 +im[2421] = 0.0228 +ij[2421] = 1 +id[2422] = "2384-01-24T08:36:02" +ik[2422] = 1 +il[2422] = 172 +im[2422] = 0.0482 +ij[2422] = 2 +id[2423] = "2384-05-18T20:38:03" +ik[2423] = 0 +il[2423] = -59 +im[2423] = 0.1183 +ij[2423] = 1 +id[2424] = "2384-05-20T17:43:03" +ik[2424] = 1 +il[2424] = -72 +im[2424] = 0.0134 +ij[2424] = 2 +id[2425] = "2384-09-19T05:43:01" +ik[2425] = -1 +il[2425] = 27 +im[2425] = 0.1183 +ij[2425] = 2 +id[2426] = "2384-09-21T22:33:01" +ik[2426] = 0 +il[2426] = 8 +im[2426] = 0.21 +ij[2426] = 1 +id[2427] = "2385-01-06T06:42:02" +ik[2427] = 0 +il[2427] = -179 +im[2427] = 0.2111 +ij[2427] = 1 +id[2428] = "2385-01-06T23:43:02" +ik[2428] = 1 +il[2428] = 176 +im[2428] = 0.1989 +ij[2428] = 2 +id[2429] = "2385-04-29T12:28:03" +ik[2429] = 0 +il[2429] = -40 +im[2429] = 0.1752 +ij[2429] = 1 +id[2430] = "2385-05-02T09:05:03" +ik[2430] = 1 +il[2430] = -60 +im[2430] = 0.251 +ij[2430] = 2 +id[2431] = "2385-09-01T17:43:01" +ik[2431] = -1 +il[2431] = 37 +im[2431] = 0.1903 +ij[2431] = 2 +id[2432] = "2385-09-04T21:35:01" +ik[2432] = 0 +il[2432] = 15 +im[2432] = 0.0365 +ij[2432] = 1 +id[2433] = "2385-12-21T13:40:02" +ik[2433] = 0 +il[2433] = -179 +im[2433] = 0.1595 +ij[2433] = 1 +id[2434] = "2385-12-21T18:55:02" +ik[2434] = 1 +il[2434] = -180 +im[2434] = 0.1676 +ij[2434] = 2 +id[2435] = "2386-04-10T22:04:03" +ik[2435] = 0 +il[2435] = -25 +im[2435] = 0.2045 +ij[2435] = 1 +id[2436] = "2386-04-14T04:02:03" +ik[2436] = 1 +il[2436] = -48 +im[2436] = 0.0438 +ij[2436] = 2 +id[2437] = "2386-08-14T19:10:01" +ik[2437] = -1 +il[2437] = 49 +im[2437] = 0.1674 +ij[2437] = 2 +id[2438] = "2386-08-18T04:04:01" +ik[2438] = 0 +il[2438] = 26 +im[2438] = 0.2414 +ij[2438] = 1 +id[2439] = "2386-12-05T15:34:02" +ik[2439] = -1 +il[2439] = -176 +im[2439] = 0.0542 +ij[2439] = 2 +id[2440] = "2386-12-05T22:04:02" +ik[2440] = 0 +il[2440] = 180 +im[2440] = 0.0398 +ij[2440] = 1 +id[2441] = "2387-03-24T02:09:03" +ik[2441] = 0 +il[2441] = -14 +im[2441] = 0.1689 +ij[2441] = 1 +id[2442] = "2387-03-27T05:14:03" +ik[2442] = 1 +il[2442] = -36 +im[2442] = 0.2438 +ij[2442] = 2 +id[2443] = "2387-07-27T12:26:01" +ik[2443] = -1 +il[2443] = 62 +im[2443] = 0.2198 +ij[2443] = 2 +id[2444] = "2387-07-30T13:54:01" +ik[2444] = 0 +il[2444] = 41 +im[2444] = 0.0664 +ij[2444] = 1 +id[2445] = "2387-11-19T11:29:02" +ik[2445] = -1 +il[2445] = -172 +im[2445] = 0.2139 +ij[2445] = 2 +id[2446] = "2387-11-20T05:45:02" +ik[2446] = 0 +il[2446] = 180 +im[2446] = 0.2097 +ij[2446] = 1 +id[2447] = "2388-03-05T21:50:03" +ik[2447] = 0 +il[2447] = -6 +im[2447] = 0.164 +ij[2447] = 1 +id[2448] = "2388-03-08T14:36:03" +ik[2448] = 1 +il[2448] = -26 +im[2448] = 0.0205 +ij[2448] = 2 +id[2449] = "2388-07-08T00:55:01" +ik[2449] = -1 +il[2449] = 76 +im[2449] = 0.1633 +ij[2449] = 2 +id[2450] = "2388-07-10T02:52:01" +ik[2450] = 0 +il[2450] = 61 +im[2450] = 0.2457 +ij[2450] = 1 +id[2451] = "2388-11-02T04:17:02" +ik[2451] = -1 +il[2451] = -168 +im[2451] = 0.0922 +ij[2451] = 2 +id[2452] = "2388-11-03T10:47:02" +ik[2452] = 0 +il[2452] = -180 +im[2452] = 0.1478 +ij[2452] = 1 +id[2453] = "2389-02-17T06:14:03" +ik[2453] = 0 +il[2453] = -2 +im[2453] = 0.2244 +ij[2453] = 1 +id[2454] = "2389-02-19T09:48:03" +ik[2454] = 1 +il[2454] = -18 +im[2454] = 0.2361 +ij[2454] = 2 +id[2455] = "2389-06-19T12:26:01" +ik[2455] = -1 +il[2455] = 88 +im[2455] = 0.2449 +ij[2455] = 2 +id[2456] = "2389-06-20T01:40:01" +ik[2456] = 0 +il[2456] = 85 +im[2456] = 0.2279 +ij[2456] = 1 +id[2457] = "2389-10-16T15:34:02" +ik[2457] = -1 +il[2457] = -164 +im[2457] = 0.1564 +ij[2457] = 2 +id[2458] = "2389-10-18T11:16:02" +ik[2458] = 0 +il[2458] = -178 +im[2458] = 0.0728 +ij[2458] = 1 +id[2459] = "2390-02-01T00:28:03" +ik[2459] = 0 +il[2459] = 0 +im[2459] = 0.0119 +ij[2459] = 1 +id[2460] = "2390-02-02T13:53:03" +ik[2460] = 1 +il[2460] = -11 +im[2460] = 0.0972 +ij[2460] = 2 +id[2461] = "2390-05-30T22:47:01" +ik[2461] = 0 +il[2461] = 108 +im[2461] = 0.0632 +ij[2461] = 1 +id[2462] = "2390-06-01T00:41:01" +ik[2462] = 1 +il[2462] = 101 +im[2462] = 0.126 +ij[2462] = 2 +id[2463] = "2390-09-29T19:10:02" +ik[2463] = -1 +il[2463] = -158 +im[2463] = 0.1706 +ij[2463] = 2 +id[2464] = "2390-10-02T04:18:02" +ik[2464] = 0 +il[2464] = -175 +im[2464] = 0.2185 +ij[2464] = 1 +id[2465] = "2391-01-16T01:11:03" +ik[2465] = 0 +il[2465] = 1 +im[2465] = 0.21 +ij[2465] = 1 +id[2466] = "2391-01-17T01:38:03" +ik[2466] = 1 +il[2466] = -6 +im[2466] = 0.1826 +ij[2466] = 2 +id[2467] = "2391-05-11T05:45:01" +ik[2467] = 0 +il[2467] = 129 +im[2467] = 0.2467 +ij[2467] = 1 +id[2468] = "2391-05-13T14:36:01" +ik[2468] = 1 +il[2468] = 113 +im[2468] = 0.2395 +ij[2468] = 2 +id[2469] = "2391-09-12T12:55:02" +ik[2469] = -1 +il[2469] = -149 +im[2469] = 0.1069 +ij[2469] = 2 +id[2470] = "2391-09-15T11:02:02" +ik[2470] = 0 +il[2470] = -170 +im[2470] = 0.0637 +ij[2470] = 1 +id[2471] = "2391-12-31T06:42:03" +ik[2471] = 0 +il[2471] = 1 +im[2471] = 0.1909 +ij[2471] = 1 +id[2472] = "2391-12-31T18:41:03" +ik[2472] = 1 +il[2472] = -2 +im[2472] = 0.2047 +ij[2472] = 2 +id[2473] = "2392-04-21T05:02:01" +ik[2473] = 0 +il[2473] = 147 +im[2473] = 0.1044 +ij[2473] = 1 +id[2474] = "2392-04-24T07:09:01" +ik[2474] = 1 +il[2474] = 126 +im[2474] = 0.0834 +ij[2474] = 2 +id[2475] = "2392-08-24T20:21:02" +ik[2475] = -1 +il[2475] = -138 +im[2475] = 0.2133 +ij[2475] = 2 +id[2476] = "2392-08-28T03:21:02" +ik[2476] = 0 +il[2476] = -161 +im[2476] = 0.2088 +ij[2476] = 1 +id[2477] = "2392-12-14T14:23:03" +ik[2477] = 0 +il[2477] = 0 +im[2477] = 0.0205 +ij[2477] = 1 +id[2478] = "2392-12-14T14:36:03" +ik[2478] = 1 +il[2478] = 2 +im[2478] = 0.02 +ij[2478] = 2 +id[2479] = "2393-04-02T22:33:01" +ik[2479] = 0 +il[2479] = 160 +im[2479] = 0.2139 +ij[2479] = 1 +id[2480] = "2393-04-06T04:31:01" +ik[2480] = 1 +il[2480] = 137 +im[2480] = 0.224 +ij[2480] = 2 +id[2481] = "2393-08-06T17:57:02" +ik[2481] = -1 +il[2481] = -125 +im[2481] = 0.1308 +ij[2481] = 2 +id[2482] = "2393-08-10T01:26:02" +ik[2482] = 0 +il[2482] = -148 +im[2482] = 0.0767 +ij[2482] = 1 +id[2483] = "2393-11-28T11:14:03" +ik[2483] = -1 +il[2483] = 6 +im[2483] = 0.218 +ij[2483] = 2 +id[2484] = "2393-11-28T22:47:03" +ik[2484] = 0 +il[2484] = 0 +im[2484] = 0.2113 +ij[2484] = 1 +id[2485] = "2394-03-16T09:35:01" +ik[2485] = 0 +il[2485] = 170 +im[2485] = 0.1075 +ij[2485] = 1 +id[2486] = "2394-03-19T08:50:01" +ik[2486] = 1 +il[2486] = 149 +im[2486] = 0.0725 +ij[2486] = 2 +id[2487] = "2394-07-19T08:50:02" +ik[2487] = -1 +il[2487] = -112 +im[2487] = 0.2332 +ij[2487] = 2 +id[2488] = "2394-07-22T02:23:02" +ik[2488] = 0 +il[2488] = -131 +im[2488] = 0.2525 +ij[2488] = 1 +id[2489] = "2394-11-12T06:12:03" +ik[2489] = -1 +il[2489] = 10 +im[2489] = 0.1447 +ij[2489] = 2 +id[2490] = "2394-11-13T05:30:03" +ik[2490] = 0 +il[2490] = 0 +im[2490] = 0.1813 +ij[2490] = 1 +id[2491] = "2395-02-27T11:02:01" +ik[2491] = 0 +il[2491] = 176 +im[2491] = 0.2333 +ij[2491] = 1 +id[2492] = "2395-03-01T22:31:01" +ik[2492] = 1 +il[2492] = 158 +im[2492] = 0.2041 +ij[2492] = 2 +id[2493] = "2395-06-30T20:36:02" +ik[2493] = -1 +il[2493] = -99 +im[2493] = 0.1744 +ij[2493] = 2 +id[2494] = "2395-07-02T07:54:02" +ik[2494] = 0 +il[2494] = -109 +im[2494] = 0.095 +ij[2494] = 1 +id[2495] = "2395-10-26T21:05:03" +ik[2495] = -1 +il[2495] = 14 +im[2495] = 0.1186 +ij[2495] = 2 +id[2496] = "2395-10-28T08:52:03" +ik[2496] = 0 +il[2496] = 1 +im[2496] = 0.0387 +ij[2496] = 1 +id[2497] = "2396-02-10T23:59:01" +ik[2497] = 0 +il[2497] = 179 +im[2497] = 0.0456 +ij[2497] = 1 +id[2498] = "2396-02-12T21:33:01" +ik[2498] = 1 +il[2498] = 165 +im[2498] = 0.1399 +ij[2498] = 2 +id[2499] = "2396-06-11T04:18:02" +ik[2499] = 0 +il[2499] = -85 +im[2499] = 0.2232 +ij[2499] = 1 +id[2500] = "2396-06-11T08:07:02" +ik[2500] = 1 +il[2500] = -86 +im[2500] = 0.2292 +ij[2500] = 2 +id[2501] = "2396-10-09T05:14:03" +ik[2501] = -1 +il[2501] = 18 +im[2501] = 0.2102 +ij[2501] = 2 +id[2502] = "2396-10-11T06:28:03" +ik[2502] = 0 +il[2502] = 3 +im[2502] = 0.2241 +ij[2502] = 1 +id[2503] = "2397-01-24T21:21:01" +ik[2503] = 0 +il[2503] = -179 +im[2503] = 0.1959 +ij[2503] = 1 +id[2504] = "2397-01-26T05:00:01" +ik[2504] = 1 +il[2504] = 171 +im[2504] = 0.1491 +ij[2504] = 2 +id[2505] = "2397-05-22T04:18:02" +ik[2505] = 0 +il[2505] = -62 +im[2505] = 0.2489 +ij[2505] = 1 +id[2506] = "2397-05-23T21:05:02" +ik[2506] = 1 +il[2506] = -74 +im[2506] = 0.1901 +ij[2506] = 2 +id[2507] = "2397-09-22T04:45:03" +ik[2507] = -1 +il[2507] = 26 +im[2507] = 0.0168 +ij[2507] = 2 +id[2508] = "2397-09-24T19:40:03" +ik[2508] = 0 +il[2508] = 7 +im[2508] = 0.1269 +ij[2508] = 1 +id[2509] = "2398-01-09T00:28:01" +ik[2509] = 0 +il[2509] = -179 +im[2509] = 0.2047 +ij[2509] = 1 +id[2510] = "2398-01-09T19:24:01" +ik[2510] = 1 +il[2510] = 175 +im[2510] = 0.2188 +ij[2510] = 2 +id[2511] = "2398-05-02T17:45:02" +ik[2511] = 0 +il[2511] = -43 +im[2511] = 0.0488 +ij[2511] = 1 +id[2512] = "2398-05-05T11:57:02" +ik[2512] = 1 +il[2512] = -62 +im[2512] = 0.1946 +ij[2512] = 2 +id[2513] = "2398-09-04T18:12:03" +ik[2513] = -1 +il[2513] = 36 +im[2513] = 0.2274 +ij[2513] = 2 +id[2514] = "2398-09-07T20:52:03" +ik[2514] = 0 +il[2514] = 14 +im[2514] = 0.1661 +ij[2514] = 1 +id[2515] = "2398-12-24T07:11:01" +ik[2515] = 0 +il[2515] = -179 +im[2515] = 0.0226 +ij[2515] = 1 +id[2516] = "2398-12-24T13:53:01" +ik[2516] = 1 +il[2516] = 179 +im[2516] = 0.024 +ij[2516] = 2 +id[2517] = "2399-04-14T00:42:02" +ik[2517] = 0 +il[2517] = -27 +im[2517] = 0.241 +ij[2517] = 1 +id[2518] = "2399-04-17T06:12:02" +ik[2518] = 1 +il[2518] = -49 +im[2518] = 0.1737 +ij[2518] = 2 +id[2519] = "2399-08-17T21:19:03" +ik[2519] = -1 +il[2519] = 47 +im[2519] = 0.0172 +ij[2519] = 2 +id[2520] = "2399-08-21T05:59:03" +ik[2520] = 0 +il[2520] = 24 +im[2520] = 0.1663 +ij[2520] = 1 +id[2521] = "2399-12-08T10:31:01" +ik[2521] = -1 +il[2521] = -177 +im[2521] = 0.2074 +ij[2521] = 2 +id[2522] = "2399-12-08T15:21:01" +ik[2522] = 0 +il[2522] = 180 +im[2522] = 0.2026 +ij[2522] = 1 +id[2523] = "2400-03-26T02:09:02" +ik[2523] = 0 +il[2523] = -15 +im[2523] = 0.0109 +ij[2523] = 1 +id[2524] = "2400-03-29T06:12:02" +ik[2524] = 1 +il[2524] = -38 +im[2524] = 0.1599 +ij[2524] = 2 +id[2525] = "2400-07-29T15:33:03" +ik[2525] = -1 +il[2525] = 60 +im[2525] = 0.2458 +ij[2525] = 2 +id[2526] = "2400-08-01T19:11:03" +ik[2526] = 0 +il[2526] = 39 +im[2526] = 0.1746 +ij[2526] = 1 +id[2527] = "2400-11-21T06:41:01" +ik[2527] = -1 +il[2527] = -173 +im[2527] = 0.1804 +ij[2527] = 2 +id[2528] = "2400-11-21T23:16:01" +ik[2528] = 0 +il[2528] = 180 +im[2528] = 0.2005 +ij[2528] = 1 +id[2529] = "2401-03-08T19:40:02" +ik[2529] = 0 +il[2529] = -7 +im[2529] = 0.2237 +ij[2529] = 1 +id[2530] = "2401-03-11T14:21:02" +ik[2530] = 1 +il[2530] = -27 +im[2530] = 0.143 +ij[2530] = 2 +id[2531] = "2401-07-11T04:31:03" +ik[2531] = -1 +il[2531] = 74 +im[2531] = 0.0608 +ij[2531] = 2 +id[2532] = "2401-07-13T11:02:03" +ik[2532] = 0 +il[2532] = 58 +im[2532] = 0.0822 +ij[2532] = 1 +id[2533] = "2401-11-04T00:12:01" +ik[2533] = -1 +il[2533] = -163 +im[2533] = 0.1351 +ij[2533] = 2 +id[2534] = "2401-11-06T04:47:01" +ik[2534] = 0 +il[2534] = -180 +im[2534] = 0.0207 +ij[2534] = 1 +id[2535] = "2402-02-20T02:23:02" +ik[2535] = 0 +il[2535] = -2 +im[2535] = 0.0759 +ij[2535] = 1 +id[2536] = "2402-02-22T07:53:02" +ik[2536] = 1 +il[2536] = -19 +im[2536] = 0.178 +ij[2536] = 2 +id[2537] = "2402-06-22T16:02:03" +ik[2537] = -1 +il[2537] = 86 +im[2537] = 0.2674 +ij[2537] = 2 +id[2538] = "2402-06-23T11:16:03" +ik[2538] = 0 +il[2538] = 81 +im[2538] = 0.2704 +ij[2538] = 1 +id[2539] = "2402-10-19T12:26:01" +ik[2539] = -1 +il[2539] = -159 +im[2539] = 0.2319 +ij[2539] = 2 +id[2540] = "2402-10-21T05:59:01" +ik[2540] = 0 +il[2540] = -178 +im[2540] = 0.2185 +ij[2540] = 1 +id[2541] = "2403-02-03T19:26:02" +ik[2541] = 0 +il[2541] = 0 +im[2541] = 0.1576 +ij[2541] = 1 +id[2542] = "2403-02-05T10:45:02" +ik[2542] = 1 +il[2542] = -12 +im[2542] = 0.0836 +ij[2542] = 2 +id[2543] = "2403-06-03T07:40:03" +ik[2543] = 0 +il[2543] = 105 +im[2543] = 0.1467 +ij[2543] = 1 +id[2544] = "2403-06-04T04:02:03" +ik[2544] = 1 +il[2544] = 99 +im[2544] = 0.0962 +ij[2544] = 2 +id[2545] = "2403-10-02T17:14:01" +ik[2545] = -1 +il[2545] = -155 +im[2545] = 0.0641 +ij[2545] = 2 +id[2546] = "2403-10-05T00:28:01" +ik[2546] = 0 +il[2546] = -176 +im[2546] = 0.1737 +ij[2546] = 1 +id[2547] = "2404-01-18T19:26:02" +ik[2547] = 0 +il[2547] = 1 +im[2547] = 0.2086 +ij[2547] = 1 +id[2548] = "2404-01-19T21:33:02" +ik[2548] = 1 +il[2548] = -7 +im[2548] = 0.217 +ij[2548] = 2 +id[2549] = "2404-05-13T12:28:03" +ik[2549] = 0 +il[2549] = 126 +im[2549] = 0.1922 +ij[2549] = 1 +id[2550] = "2404-05-15T17:43:03" +ik[2550] = 1 +il[2550] = 111 +im[2550] = 0.2661 +ij[2550] = 2 +id[2551] = "2404-09-14T12:41:01" +ik[2551] = -1 +il[2551] = -150 +im[2551] = 0.2214 +ij[2551] = 2 +id[2552] = "2404-09-17T08:52:01" +ik[2552] = 0 +il[2552] = -170 +im[2552] = 0.1187 +ij[2552] = 1 +id[2553] = "2405-01-01T00:14:02" +ik[2553] = 0 +il[2553] = 9 +im[2553] = 0.043 +ij[2553] = 1 +id[2554] = "2405-01-02T13:53:02" +ik[2554] = 1 +il[2554] = -3 +im[2554] = 0.0467 +ij[2554] = 2 +id[2555] = "2405-04-24T09:06:03" +ik[2555] = 0 +il[2555] = 145 +im[2555] = 0.2324 +ij[2555] = 1 +id[2556] = "2405-04-27T09:48:03" +ik[2556] = 1 +il[2556] = 124 +im[2556] = 0.0969 +ij[2556] = 2 +id[2557] = "2405-08-27T21:33:01" +ik[2557] = -1 +il[2557] = -139 +im[2557] = 0.1109 +ij[2557] = 2 +id[2558] = "2405-08-31T03:50:01" +ik[2558] = 0 +il[2558] = -162 +im[2558] = 0.2302 +ij[2558] = 1 +id[2559] = "2405-12-17T07:40:02" +ik[2559] = 0 +il[2559] = 1 +im[2559] = 0.1789 +ij[2559] = 1 +id[2560] = "2405-12-17T09:33:02" +ik[2560] = 1 +il[2560] = 1 +im[2560] = 0.1763 +ij[2560] = 2 +id[2561] = "2406-04-05T23:59:03" +ik[2561] = 0 +il[2561] = 159 +im[2561] = 0.1035 +ij[2561] = 1 +id[2562] = "2406-04-09T06:12:03" +ik[2562] = 1 +il[2562] = 136 +im[2562] = 0.2369 +ij[2562] = 2 +id[2563] = "2406-08-09T20:36:01" +ik[2563] = -1 +il[2563] = -127 +im[2563] = 0.2181 +ij[2563] = 2 +id[2564] = "2406-08-13T04:47:01" +ik[2564] = 0 +il[2564] = -150 +im[2564] = 0.0663 +ij[2564] = 1 +id[2565] = "2406-12-01T06:26:02" +ik[2565] = -1 +il[2565] = 5 +im[2565] = 0.1951 +ij[2565] = 2 +id[2566] = "2406-12-01T16:04:02" +ik[2566] = 0 +il[2566] = 0 +im[2566] = 0.2036 +ij[2566] = 1 +id[2567] = "2407-03-19T08:38:03" +ik[2567] = 0 +il[2567] = 169 +im[2567] = 0.2012 +ij[2567] = 1 +id[2568] = "2407-03-22T09:19:03" +ik[2568] = 1 +il[2568] = 147 +im[2568] = 0.0666 +ij[2568] = 2 +id[2569] = "2407-07-22T12:12:01" +ik[2569] = -1 +il[2569] = -114 +im[2569] = 0.0755 +ij[2569] = 2 +id[2570] = "2407-07-25T08:52:01" +ik[2570] = 0 +il[2570] = -134 +im[2570] = 0.2083 +ij[2570] = 1 +id[2571] = "2407-11-15T01:38:02" +ik[2571] = -1 +il[2571] = 9 +im[2571] = 0.0498 +ij[2571] = 2 +id[2572] = "2407-11-15T23:16:02" +ik[2572] = 0 +il[2572] = 0 +im[2572] = 0.0183 +ij[2572] = 1 +id[2573] = "2408-03-01T08:09:03" +ik[2573] = 0 +il[2573] = 175 +im[2573] = 0.1344 +ij[2573] = 1 +id[2574] = "2408-03-03T21:33:03" +ik[2574] = 1 +il[2574] = 157 +im[2574] = 0.2195 +ij[2574] = 2 +id[2575] = "2408-07-02T00:12:01" +ik[2575] = -1 +il[2575] = -94 +im[2575] = 0.2568 +ij[2575] = 2 +id[2576] = "2408-07-04T16:47:01" +ik[2576] = 0 +il[2576] = -112 +im[2576] = 0.1901 +ij[2576] = 1 +id[2577] = "2408-10-28T17:14:02" +ik[2577] = -1 +il[2577] = 13 +im[2577] = 0.2246 +ij[2577] = 2 +id[2578] = "2408-10-30T03:21:02" +ik[2578] = 0 +il[2578] = 0 +im[2578] = 0.194 +ij[2578] = 1 +id[2579] = "2409-02-12T19:40:03" +ik[2579] = 0 +il[2579] = 179 +im[2579] = 0.1088 +ij[2579] = 1 +id[2580] = "2409-02-14T19:09:03" +ik[2580] = 1 +il[2580] = 164 +im[2580] = 0.019 +ij[2580] = 2 +id[2581] = "2409-06-14T11:43:01" +ik[2581] = -1 +il[2581] = -88 +im[2581] = 0.0261 +ij[2581] = 2 +id[2582] = "2409-06-14T13:40:01" +ik[2582] = 0 +il[2582] = -89 +im[2582] = 0.0313 +ij[2582] = 1 +id[2583] = "2409-10-12T02:36:02" +ik[2583] = -1 +il[2583] = 17 +im[2583] = 0.1194 +ij[2583] = 2 +id[2584] = "2409-10-14T01:54:02" +ik[2584] = 0 +il[2584] = 3 +im[2584] = 0.1952 +ij[2584] = 1 +id[2585] = "2410-01-27T15:50:03" +ik[2585] = 0 +il[2585] = -179 +im[2585] = 0.2106 +ij[2585] = 1 +id[2586] = "2410-01-29T01:38:03" +ik[2586] = 1 +il[2586] = 170 +im[2586] = 0.2092 +ij[2586] = 2 +id[2587] = "2410-05-25T12:28:01" +ik[2587] = 0 +il[2587] = -66 +im[2587] = 0.2686 +ij[2587] = 1 +id[2588] = "2410-05-26T00:12:01" +ik[2588] = 1 +il[2588] = -69 +im[2588] = 0.2725 +ij[2588] = 2 +id[2589] = "2410-09-25T03:48:02" +ik[2589] = -1 +il[2589] = 25 +im[2589] = 0.1916 +ij[2589] = 2 +id[2590] = "2410-09-27T16:33:02" +ik[2590] = 0 +il[2590] = 6 +im[2590] = 0.0764 +ij[2590] = 1 +id[2591] = "2411-01-11T18:14:03" +ik[2591] = 0 +il[2591] = -179 +im[2591] = 0.0521 +ij[2591] = 1 +id[2592] = "2411-01-12T15:05:03" +ik[2592] = 1 +il[2592] = 175 +im[2592] = 0.0951 +ij[2592] = 2 +id[2593] = "2411-05-05T23:30:01" +ik[2593] = 0 +il[2593] = -45 +im[2593] = 0.1584 +ij[2593] = 1 +id[2594] = "2411-05-08T14:50:01" +ik[2594] = 1 +il[2594] = -63 +im[2594] = 0.0163 +ij[2594] = 2 +id[2595] = "2411-09-07T18:41:02" +ik[2595] = -1 +il[2595] = 34 +im[2595] = 0.192 +ij[2595] = 2 +id[2596] = "2411-09-10T19:40:02" +ik[2596] = 0 +il[2596] = 13 +im[2596] = 0.2436 +ij[2596] = 1 +id[2597] = "2411-12-27T00:28:03" +ik[2597] = 0 +il[2597] = -179 +im[2597] = 0.1438 +ij[2597] = 1 +id[2598] = "2411-12-27T09:05:03" +ik[2598] = 1 +il[2598] = 179 +im[2598] = 0.129 +ij[2598] = 2 +id[2599] = "2412-04-16T03:50:01" +ik[2599] = 0 +il[2599] = -29 +im[2599] = 0.2056 +ij[2599] = 1 +id[2600] = "2412-04-19T08:21:01" +ik[2600] = 1 +il[2600] = -51 +im[2600] = 0.2676 +ij[2600] = 2 +id[2601] = "2412-08-19T23:00:02" +ik[2601] = -1 +il[2601] = 46 +im[2601] = 0.1642 +ij[2601] = 2 +id[2602] = "2412-08-23T07:26:02" +ik[2602] = 0 +il[2602] = 22 +im[2602] = 0.0488 +ij[2602] = 1 +id[2603] = "2412-12-10T05:29:03" +ik[2603] = -1 +il[2603] = -177 +im[2603] = 0.2012 +ij[2603] = 2 +id[2604] = "2412-12-10T08:38:03" +ik[2604] = 0 +il[2604] = 180 +im[2604] = 0.2031 +ij[2604] = 1 +id[2605] = "2413-03-29T02:23:01" +ik[2605] = 0 +il[2605] = -17 +im[2605] = 0.1667 +ij[2605] = 1 +id[2606] = "2413-04-01T07:24:01" +ik[2606] = 1 +il[2606] = -39 +im[2606] = 0.0316 +ij[2606] = 2 +id[2607] = "2413-08-01T18:26:02" +ik[2607] = -1 +il[2607] = 58 +im[2607] = 0.1902 +ij[2607] = 2 +id[2608] = "2413-08-04T23:45:02" +ik[2608] = 0 +il[2608] = 36 +im[2608] = 0.2569 +ij[2608] = 1 +id[2609] = "2413-11-24T01:53:03" +ik[2609] = -1 +il[2609] = -173 +im[2609] = 0.0091 +ij[2609] = 2 +id[2610] = "2413-11-24T16:33:03" +ik[2610] = 0 +il[2610] = 180 +im[2610] = 0.0361 +ij[2610] = 1 +id[2611] = "2414-03-11T17:45:01" +ik[2611] = 0 +il[2611] = -8 +im[2611] = 0.194 +ij[2611] = 1 +id[2612] = "2414-03-14T14:07:01" +ik[2612] = 1 +il[2612] = -29 +im[2612] = 0.2439 +ij[2612] = 2 +id[2613] = "2414-07-14T08:07:02" +ik[2613] = -1 +il[2613] = 72 +im[2613] = 0.1813 +ij[2613] = 2 +id[2614] = "2414-07-16T18:42:02" +ik[2614] = 0 +il[2614] = 55 +im[2614] = 0.0604 +ij[2614] = 1 +id[2615] = "2414-11-07T19:53:03" +ik[2615] = -1 +il[2615] = -169 +im[2615] = 0.1945 +ij[2615] = 2 +id[2616] = "2414-11-08T22:47:03" +ik[2616] = 0 +il[2616] = 180 +im[2616] = 0.158 +ij[2616] = 1 +id[2617] = "2415-02-22T22:47:01" +ik[2617] = 0 +il[2617] = -3 +im[2617] = 0.0636 +ij[2617] = 1 +id[2618] = "2415-02-25T06:26:01" +ik[2618] = 1 +il[2618] = -20 +im[2618] = 0.0782 +ij[2618] = 2 +id[2619] = "2415-06-25T19:38:02" +ik[2619] = -1 +il[2619] = 85 +im[2619] = 0.1496 +ij[2619] = 2 +id[2620] = "2415-06-26T20:38:02" +ik[2620] = 0 +il[2620] = 78 +im[2620] = 0.1961 +ij[2620] = 1 +id[2621] = "2415-10-22T09:19:03" +ik[2621] = -1 +il[2621] = -165 +im[2621] = 0.1495 +ij[2621] = 2 +id[2622] = "2415-10-24T00:42:03" +ik[2622] = 0 +il[2622] = -179 +im[2622] = 0.2 +ij[2622] = 1 +id[2623] = "2416-02-06T14:23:01" +ik[2623] = 0 +il[2623] = 0 +im[2623] = 0.2179 +ij[2623] = 1 +id[2624] = "2416-02-08T07:53:01" +ik[2624] = 1 +il[2624] = -13 +im[2624] = 0.2006 +ij[2624] = 2 +id[2625] = "2416-06-05T16:47:02" +ik[2625] = 0 +il[2625] = 101 +im[2625] = 0.2309 +ij[2625] = 1 +id[2626] = "2416-06-06T07:24:02" +ik[2626] = 1 +il[2626] = 97 +im[2626] = 0.2103 +ij[2626] = 2 +id[2627] = "2416-10-04T15:19:03" +ik[2627] = -1 +il[2627] = -160 +im[2627] = 0.1337 +ij[2627] = 2 +id[2628] = "2416-10-06T20:23:03" +ik[2628] = 0 +il[2628] = -176 +im[2628] = 0.0183 +ij[2628] = 1 +id[2629] = "2417-01-20T13:40:01" +ik[2629] = 0 +il[2629] = 1 +im[2629] = 0.0979 +ij[2629] = 1 +id[2630] = "2417-01-21T17:43:01" +ik[2630] = 1 +il[2630] = -8 +im[2630] = 0.1496 +ij[2630] = 2 +id[2631] = "2417-05-16T19:40:02" +ik[2631] = 0 +il[2631] = 123 +im[2631] = 0.0277 +ij[2631] = 1 +id[2632] = "2417-05-18T20:50:02" +ik[2632] = 1 +il[2632] = 110 +im[2632] = 0.1179 +ij[2632] = 2 +id[2633] = "2417-09-17T12:12:03" +ik[2633] = -1 +il[2633] = -152 +im[2633] = 0.2255 +ij[2633] = 2 +id[2634] = "2417-09-20T06:28:03" +ik[2634] = 0 +il[2634] = -171 +im[2634] = 0.2182 +ij[2634] = 1 +id[2635] = "2418-01-04T17:45:01" +ik[2635] = 0 +il[2635] = 1 +im[2635] = 0.117 +ij[2635] = 1 +id[2636] = "2418-01-05T09:19:01" +ik[2636] = 1 +il[2636] = -4 +im[2636] = 0.0866 +ij[2636] = 2 +id[2637] = "2418-04-27T13:40:02" +ik[2637] = 0 +il[2637] = 142 +im[2637] = 0.2607 +ij[2637] = 1 +id[2638] = "2418-04-30T12:26:02" +ik[2638] = 1 +il[2638] = 122 +im[2638] = 0.2322 +ij[2638] = 2 +id[2639] = "2418-08-30T22:45:03" +ik[2639] = -1 +il[2639] = -141 +im[2639] = 0.0853 +ij[2639] = 2 +id[2640] = "2418-09-03T03:50:03" +ik[2640] = 0 +il[2640] = -164 +im[2640] = 0.1065 +ij[2640] = 1 +id[2641] = "2418-12-20T01:11:01" +ik[2641] = 0 +il[2641] = 1 +im[2641] = 0.2067 +ij[2641] = 1 +id[2642] = "2418-12-20T04:45:01" +ik[2642] = 1 +il[2642] = 0 +im[2642] = 0.2081 +ij[2642] = 2 +id[2643] = "2419-04-09T01:54:02" +ik[2643] = 0 +il[2643] = 157 +im[2643] = 0.0938 +ij[2643] = 1 +id[2644] = "2419-04-12T08:07:02" +ik[2644] = 1 +il[2644] = 134 +im[2644] = 0.1107 +ij[2644] = 2 +id[2645] = "2419-08-12T23:00:03" +ik[2645] = -1 +il[2645] = -129 +im[2645] = 0.2489 +ij[2645] = 2 +id[2646] = "2419-08-16T07:40:03" +ik[2646] = 0 +il[2646] = -152 +im[2646] = 0.2267 +ij[2646] = 1 +id[2647] = "2419-12-04T01:24:01" +ik[2647] = -1 +il[2647] = 4 +im[2647] = 0.0587 +ij[2647] = 2 +id[2648] = "2419-12-04T09:21:01" +ik[2648] = 0 +il[2648] = 0 +im[2648] = 0.0751 +ij[2648] = 1 +id[2649] = "2420-03-21T07:54:02" +ik[2649] = 0 +il[2649] = 167 +im[2649] = 0.2428 +ij[2649] = 1 +id[2650] = "2420-03-24T10:02:02" +ik[2650] = 1 +il[2650] = 145 +im[2650] = 0.2287 +ij[2650] = 2 +id[2651] = "2420-07-24T15:19:03" +ik[2651] = -1 +il[2651] = -116 +im[2651] = 0.0851 +ij[2651] = 2 +id[2652] = "2420-07-27T14:52:03" +ik[2652] = 0 +il[2652] = -136 +im[2652] = 0.1038 +ij[2652] = 1 +id[2653] = "2420-11-16T21:05:01" +ik[2653] = -1 +il[2653] = 8 +im[2653] = 0.157 +ij[2653] = 2 +id[2654] = "2420-11-17T16:47:01" +ik[2654] = 0 +il[2654] = 0 +im[2654] = 0.1237 +ij[2654] = 1 +id[2655] = "2421-03-04T05:30:02" +ik[2655] = 0 +il[2655] = 174 +im[2655] = 0.0064 +ij[2655] = 1 +id[2656] = "2421-03-06T20:50:02" +ik[2656] = 1 +il[2656] = 155 +im[2656] = 0.1463 +ij[2656] = 2 +id[2657] = "2421-07-06T03:48:03" +ik[2657] = -1 +il[2657] = -103 +im[2657] = 0.2388 +ij[2657] = 2 +id[2658] = "2421-07-08T01:26:03" +ik[2658] = 0 +il[2658] = -116 +im[2658] = 0.2682 +ij[2658] = 1 +id[2659] = "2421-10-31T13:24:01" +ik[2659] = -1 +il[2659] = 12 +im[2659] = 0.1754 +ij[2659] = 2 +id[2660] = "2421-11-01T21:35:01" +ik[2660] = 0 +il[2660] = 0 +im[2660] = 0.2053 +ij[2660] = 1 +id[2661] = "2422-02-15T15:21:02" +ik[2661] = 0 +il[2661] = 179 +im[2661] = 0.2261 +ij[2661] = 1 +id[2662] = "2422-02-17T17:00:02" +ik[2662] = 1 +il[2662] = 163 +im[2662] = 0.1796 +ij[2662] = 2 +id[2663] = "2422-06-17T15:05:03" +ik[2663] = -1 +il[2663] = -90 +im[2663] = 0.1143 +ij[2663] = 2 +id[2664] = "2422-06-17T23:16:03" +ik[2664] = 0 +il[2664] = -92 +im[2664] = 0.094 +ij[2664] = 1 +id[2665] = "2422-10-14T23:57:01" +ik[2665] = -1 +il[2665] = 16 +im[2665] = 0.0603 +ij[2665] = 2 +id[2666] = "2422-10-16T21:06:01" +ik[2666] = 0 +il[2666] = 2 +im[2666] = 0.0399 +ij[2666] = 1 +id[2667] = "2423-01-30T10:33:02" +ik[2667] = 0 +il[2667] = -179 +im[2667] = 0.1439 +ij[2667] = 1 +id[2668] = "2423-01-31T22:17:02" +ik[2668] = 1 +il[2668] = 170 +im[2668] = 0.1989 +ij[2668] = 2 +id[2669] = "2423-05-28T20:52:03" +ik[2669] = 0 +il[2669] = -69 +im[2669] = 0.1506 +ij[2669] = 1 +id[2670] = "2423-05-30T03:33:03" +ik[2670] = 1 +il[2670] = -78 +im[2670] = 0.2084 +ij[2670] = 2 +id[2671] = "2423-09-28T02:21:01" +ik[2671] = -1 +il[2671] = 23 +im[2671] = 0.2238 +ij[2671] = 2 +id[2672] = "2423-09-30T13:11:01" +ik[2672] = 0 +il[2672] = 6 +im[2672] = 0.177 +ij[2672] = 1 +id[2673] = "2424-01-14T12:14:02" +ik[2673] = 0 +il[2673] = -179 +im[2673] = 0.0935 +ij[2673] = 1 +id[2674] = "2424-01-15T10:45:02" +ik[2674] = 1 +il[2674] = 174 +im[2674] = 0.0429 +ij[2674] = 2 +id[2675] = "2424-05-08T05:45:03" +ik[2675] = 0 +il[2675] = -48 +im[2675] = 0.2375 +ij[2675] = 1 +id[2676] = "2424-05-10T17:43:03" +ik[2676] = 1 +il[2676] = -65 +im[2676] = 0.1407 +ij[2676] = 2 +id[2677] = "2424-09-09T18:55:01" +ik[2677] = -1 +il[2677] = 33 +im[2677] = 0.0116 +ij[2677] = 2 +id[2678] = "2424-09-12T18:14:01" +ik[2678] = 0 +il[2678] = 11 +im[2678] = 0.1576 +ij[2678] = 1 +id[2679] = "2424-12-28T17:59:02" +ik[2679] = 0 +il[2679] = -179 +im[2679] = 0.218 +ij[2679] = 1 +id[2680] = "2424-12-29T04:17:02" +ik[2680] = 1 +il[2680] = 178 +im[2680] = 0.2185 +ij[2680] = 2 +id[2681] = "2425-04-19T07:11:03" +ik[2681] = 0 +il[2681] = -31 +im[2681] = 0.0248 +ij[2681] = 1 +id[2682] = "2425-04-22T10:45:03" +ik[2682] = 1 +il[2682] = -53 +im[2682] = 0.1898 +ij[2682] = 2 +id[2683] = "2425-08-23T00:41:01" +ik[2683] = -1 +il[2683] = 44 +im[2683] = 0.2446 +ij[2683] = 2 +id[2684] = "2425-08-26T08:38:01" +ik[2684] = 0 +il[2684] = 20 +im[2684] = 0.1406 +ij[2684] = 1 +id[2685] = "2425-12-13T00:41:02" +ik[2685] = -1 +il[2685] = -178 +im[2685] = 0.1155 +ij[2685] = 2 +id[2686] = "2425-12-13T01:54:02" +ik[2686] = 0 +il[2686] = 180 +im[2686] = 0.1178 +ij[2686] = 1 +id[2687] = "2426-04-01T03:21:03" +ik[2687] = 0 +il[2687] = -18 +im[2687] = 0.25 +ij[2687] = 1 +id[2688] = "2426-04-04T08:50:03" +ik[2688] = 1 +il[2688] = -41 +im[2688] = 0.161 +ij[2688] = 2 +id[2689] = "2426-08-04T21:19:01" +ik[2689] = -1 +il[2689] = 56 +im[2689] = 0.0279 +ij[2689] = 2 +id[2690] = "2426-08-08T04:04:01" +ik[2690] = 0 +il[2690] = 34 +im[2690] = 0.1983 +ij[2690] = 1 +id[2691] = "2426-11-26T21:05:02" +ik[2691] = -1 +il[2691] = -174 +im[2691] = 0.128 +ij[2691] = 2 +id[2692] = "2426-11-27T10:04:02" +ik[2692] = 0 +il[2692] = 180 +im[2692] = 0.1025 +ij[2692] = 1 +id[2693] = "2427-03-14T16:18:03" +ik[2693] = 0 +il[2693] = -9 +im[2693] = 0.0591 +ij[2693] = 1 +id[2694] = "2427-03-17T14:21:03" +ik[2694] = 1 +il[2694] = -30 +im[2694] = 0.199 +ij[2694] = 2 +id[2695] = "2427-07-17T11:29:01" +ik[2695] = -1 +il[2695] = 70 +im[2695] = 0.2716 +ij[2695] = 2 +id[2696] = "2427-07-20T02:09:01" +ik[2696] = 0 +il[2696] = 52 +im[2696] = 0.2203 +ij[2696] = 1 +id[2697] = "2427-11-10T15:48:02" +ik[2697] = -1 +il[2697] = -170 +im[2697] = 0.2009 +ij[2697] = 2 +id[2698] = "2427-11-11T16:33:02" +ik[2698] = 0 +il[2698] = 180 +im[2698] = 0.2149 +ij[2698] = 1 +id[2699] = "2428-02-25T19:26:03" +ik[2699] = 0 +il[2699] = -4 +im[2699] = 0.2178 +ij[2699] = 1 +id[2700] = "2428-02-28T05:00:03" +ik[2700] = 1 +il[2700] = -21 +im[2700] = 0.1309 +ij[2700] = 2 +id[2701] = "2428-06-27T23:14:01" +ik[2701] = -1 +il[2701] = 83 +im[2701] = 0.0105 +ij[2701] = 2 +id[2702] = "2428-06-29T05:45:01" +ik[2702] = 0 +il[2702] = 74 +im[2702] = 0.0874 +ij[2702] = 1 +id[2703] = "2428-10-24T05:43:02" +ik[2703] = -1 +il[2703] = -166 +im[2703] = 0.0294 +ij[2703] = 2 +id[2704] = "2428-10-25T19:26:02" +ik[2704] = 0 +il[2704] = -179 +im[2704] = 0.097 +ij[2704] = 1 +id[2705] = "2429-02-08T09:35:03" +ik[2705] = 0 +il[2705] = 0 +im[2705] = 0.1834 +ij[2705] = 1 +id[2706] = "2429-02-10T05:14:03" +ik[2706] = 1 +il[2706] = -14 +im[2706] = 0.2286 +ij[2706] = 2 +id[2707] = "2429-06-09T01:54:01" +ik[2707] = 0 +il[2707] = 98 +im[2707] = 0.2641 +ij[2707] = 1 +id[2708] = "2429-06-09T10:45:01" +ik[2708] = 1 +il[2708] = 95 +im[2708] = 0.2692 +ij[2708] = 2 +id[2709] = "2429-10-07T13:09:02" +ik[2709] = -1 +il[2709] = -161 +im[2709] = 0.2076 +ij[2709] = 2 +id[2710] = "2429-10-09T16:04:02" +ik[2710] = 0 +il[2710] = -177 +im[2710] = 0.1427 +ij[2710] = 1 +id[2711] = "2430-01-23T07:54:03" +ik[2711] = 0 +il[2711] = 1 +im[2711] = 0.0777 +ij[2711] = 1 +id[2712] = "2430-01-24T13:53:03" +ik[2712] = 1 +il[2712] = -8 +im[2712] = 0.0221 +ij[2712] = 2 +id[2713] = "2430-05-20T03:21:01" +ik[2713] = 0 +il[2713] = 120 +im[2713] = 0.136 +ij[2713] = 1 +id[2714] = "2430-05-21T23:57:01" +ik[2714] = 1 +il[2714] = 108 +im[2714] = 0.0243 +ij[2714] = 2 +id[2715] = "2430-09-20T11:29:02" +ik[2715] = -1 +il[2715] = -153 +im[2715] = 0.0934 +ij[2715] = 2 +id[2716] = "2430-09-23T03:50:02" +ik[2716] = 0 +il[2716] = -172 +im[2716] = 0.1963 +ij[2716] = 1 +id[2717] = "2431-01-07T11:30:03" +ik[2717] = 0 +il[2717] = 1 +im[2717] = 0.2265 +ij[2717] = 1 +id[2718] = "2431-01-08T04:45:03" +ik[2718] = 1 +il[2718] = -4 +im[2718] = 0.2196 +ij[2718] = 2 +id[2719] = "2431-04-30T18:42:01" +ik[2719] = 0 +il[2719] = 140 +im[2719] = 0.1397 +ij[2719] = 1 +id[2720] = "2431-05-03T15:04:01" +ik[2720] = 1 +il[2720] = 120 +im[2720] = 0.244 +ij[2720] = 2 +id[2721] = "2431-09-02T23:28:02" +ik[2721] = -1 +il[2721] = -143 +im[2721] = 0.1941 +ij[2721] = 2 +id[2722] = "2431-09-06T03:21:02" +ik[2722] = 0 +il[2722] = -165 +im[2722] = 0.0583 +ij[2722] = 1 +id[2723] = "2431-12-22T18:28:03" +ik[2723] = 0 +il[2723] = 1 +im[2723] = 0.1496 +ij[2723] = 1 +id[2724] = "2431-12-22T23:43:03" +ik[2724] = 1 +il[2724] = 0 +im[2724] = 0.1585 +ij[2724] = 2 +id[2725] = "2432-04-11T04:18:01" +ik[2725] = 0 +il[2725] = 155 +im[2725] = 0.2061 +ij[2725] = 1 +id[2726] = "2432-04-14T10:02:01" +ik[2726] = 1 +il[2726] = 132 +im[2726] = 0.056 +ij[2726] = 2 +id[2727] = "2432-08-15T01:09:02" +ik[2727] = -1 +il[2727] = -131 +im[2727] = 0.1198 +ij[2727] = 2 +id[2728] = "2432-08-18T10:04:02" +ik[2728] = 0 +il[2728] = -154 +im[2728] = 0.2288 +ij[2728] = 1 +id[2729] = "2432-12-05T20:36:03" +ik[2729] = -1 +il[2729] = 4 +im[2729] = 0.1023 +ij[2729] = 2 +id[2730] = "2432-12-06T02:38:03" +ik[2730] = 0 +il[2730] = 0 +im[2730] = 0.0895 +ij[2730] = 1 +id[2731] = "2433-03-24T07:40:01" +ik[2731] = 0 +il[2731] = 166 +im[2731] = 0.1179 +ij[2731] = 1 +id[2732] = "2433-03-27T11:00:01" +ik[2732] = 1 +il[2732] = 144 +im[2732] = 0.2291 +ij[2732] = 2 +id[2733] = "2433-07-27T18:40:02" +ik[2733] = -1 +il[2733] = -118 +im[2733] = 0.2298 +ij[2733] = 2 +id[2734] = "2433-07-30T20:23:02" +ik[2734] = 0 +il[2734] = -139 +im[2734] = 0.1 +ij[2734] = 1 +id[2735] = "2433-11-19T16:31:03" +ik[2735] = -1 +il[2735] = 8 +im[2735] = 0.223 +ij[2735] = 2 +id[2736] = "2433-11-20T10:33:03" +ik[2736] = 0 +il[2736] = 0 +im[2736] = 0.2248 +ij[2736] = 1 +id[2737] = "2434-03-07T03:06:01" +ik[2737] = 0 +il[2737] = 174 +im[2737] = 0.1827 +ij[2737] = 1 +id[2738] = "2434-03-09T20:21:01" +ik[2738] = 1 +il[2738] = 154 +im[2738] = 0.0566 +ij[2738] = 2 +id[2739] = "2434-07-09T07:09:02" +ik[2739] = -1 +il[2739] = -105 +im[2739] = 0.117 +ij[2739] = 2 +id[2740] = "2434-07-11T09:50:02" +ik[2740] = 0 +il[2740] = -119 +im[2740] = 0.2163 +ij[2740] = 1 +id[2741] = "2434-11-03T09:19:03" +ik[2741] = -1 +il[2741] = 12 +im[2741] = 0.0764 +ij[2741] = 2 +id[2742] = "2434-11-04T15:35:03" +ik[2742] = 0 +il[2742] = 0 +im[2742] = 0.1378 +ij[2742] = 1 +id[2743] = "2435-02-18T11:30:01" +ik[2743] = 0 +il[2743] = 178 +im[2743] = 0.2033 +ij[2743] = 1 +id[2744] = "2435-02-20T15:04:01" +ik[2744] = 1 +il[2744] = 162 +im[2744] = 0.2287 +ij[2744] = 2 +id[2745] = "2435-06-20T18:40:02" +ik[2745] = -1 +il[2745] = -92 +im[2745] = 0.2675 +ij[2745] = 2 +id[2746] = "2435-06-21T08:38:02" +ik[2746] = 0 +il[2746] = -96 +im[2746] = 0.2545 +ij[2746] = 1 +id[2747] = "2435-10-17T20:50:03" +ik[2747] = -1 +il[2747] = 16 +im[2747] = 0.1891 +ij[2747] = 2 +id[2748] = "2435-10-19T16:04:03" +ik[2748] = 0 +il[2748] = 2 +im[2748] = 0.1166 +ij[2748] = 1 +id[2749] = "2436-02-02T05:16:01" +ik[2749] = 0 +il[2749] = -180 +im[2749] = 0.0539 +ij[2749] = 1 +id[2750] = "2436-02-03T19:09:01" +ik[2750] = 1 +il[2750] = 169 +im[2750] = 0.0446 +ij[2750] = 2 +id[2751] = "2436-05-31T05:45:02" +ik[2751] = 0 +il[2751] = -72 +im[2751] = 0.0389 +ij[2751] = 1 +id[2752] = "2436-06-01T06:55:02" +ik[2752] = 1 +il[2752] = -79 +im[2752] = 0.099 +ij[2752] = 2 +id[2753] = "2436-09-30T00:40:03" +ik[2753] = -1 +il[2753] = 22 +im[2753] = 0.1614 +ij[2753] = 2 +id[2754] = "2436-10-02T09:35:03" +ik[2754] = 0 +il[2754] = 5 +im[2754] = 0.2239 +ij[2754] = 1 +id[2755] = "2437-01-16T06:14:01" +ik[2755] = 0 +il[2755] = -179 +im[2755] = 0.2202 +ij[2755] = 1 +id[2756] = "2437-01-17T06:40:01" +ik[2756] = 1 +il[2756] = 174 +im[2756] = 0.1983 +ij[2756] = 2 +id[2757] = "2437-05-11T12:14:02" +ik[2757] = 0 +il[2757] = -51 +im[2757] = 0.2462 +ij[2757] = 1 +id[2758] = "2437-05-13T20:50:02" +ik[2758] = 1 +il[2758] = -67 +im[2758] = 0.2643 +ij[2758] = 2 +id[2759] = "2437-09-12T18:40:03" +ik[2759] = -1 +il[2759] = 31 +im[2759] = 0.1202 +ij[2759] = 2 +id[2760] = "2437-09-15T16:33:03" +ik[2760] = 0 +il[2760] = 10 +im[2760] = 0.04 +ij[2760] = 1 +id[2761] = "2437-12-31T11:30:01" +ik[2761] = 0 +il[2761] = -179 +im[2761] = 0.166 +ij[2761] = 1 +id[2762] = "2437-12-31T23:43:01" +ik[2762] = 1 +il[2762] = 178 +im[2762] = 0.1837 +ij[2762] = 2 +id[2763] = "2438-04-22T11:02:02" +ik[2763] = 0 +il[2763] = -33 +im[2763] = 0.1157 +ij[2763] = 1 +id[2764] = "2438-04-25T13:24:02" +ik[2764] = 1 +il[2764] = -55 +im[2764] = 0.0722 +ij[2764] = 2 +id[2765] = "2438-08-26T02:21:03" +ik[2765] = -1 +il[2765] = 42 +im[2765] = 0.1876 +ij[2765] = 2 +id[2766] = "2438-08-29T09:21:03" +ik[2766] = 0 +il[2766] = 19 +im[2766] = 0.2267 +ij[2766] = 1 +id[2767] = "2438-12-15T19:11:01" +ik[2767] = 0 +il[2767] = 180 +im[2767] = 0.0765 +ij[2767] = 1 +id[2768] = "2438-12-15T19:38:01" +ik[2768] = 1 +il[2768] = -178 +im[2768] = 0.0755 +ij[2768] = 2 +id[2769] = "2439-04-04T04:18:02" +ik[2769] = 0 +il[2769] = -20 +im[2769] = 0.1853 +ij[2769] = 1 +id[2770] = "2439-04-07T10:31:02" +ik[2770] = 1 +il[2770] = -43 +im[2770] = 0.2386 +ij[2770] = 2 +id[2771] = "2439-08-07T23:57:03" +ik[2771] = -1 +il[2771] = 55 +im[2771] = 0.1325 +ij[2771] = 2 +id[2772] = "2439-08-11T07:40:03" +ik[2772] = 0 +il[2772] = 32 +im[2772] = 0.0527 +ij[2772] = 1 +id[2773] = "2439-11-29T16:16:01" +ik[2773] = -1 +il[2773] = -174 +im[2773] = 0.2272 +ij[2773] = 2 +id[2774] = "2439-11-30T03:21:01" +ik[2774] = 0 +il[2774] = 180 +im[2774] = 0.223 +ij[2774] = 1 +id[2775] = "2440-03-16T15:06:02" +ik[2775] = 0 +il[2775] = -10 +im[2775] = 0.1103 +ij[2775] = 1 +id[2776] = "2440-03-19T14:36:02" +ik[2776] = 1 +il[2776] = -32 +im[2776] = 0.0524 +ij[2776] = 2 +id[2777] = "2440-07-19T15:04:03" +ik[2777] = -1 +il[2777] = 68 +im[2777] = 0.1924 +ij[2777] = 2 +id[2778] = "2440-07-22T08:52:03" +ik[2778] = 0 +il[2778] = 49 +im[2778] = 0.2464 +ij[2778] = 1 +id[2779] = "2440-11-12T11:14:01" +ik[2779] = -1 +il[2779] = -170 +im[2779] = 0.1178 +ij[2779] = 2 +id[2780] = "2440-11-13T10:18:01" +ik[2780] = 0 +il[2780] = 180 +im[2780] = 0.1601 +ij[2780] = 1 +id[2781] = "2441-02-27T16:18:02" +ik[2781] = 0 +il[2781] = -4 +im[2781] = 0.2162 +ij[2781] = 1 +id[2782] = "2441-03-02T04:02:02" +ik[2782] = 1 +il[2782] = -22 +im[2782] = 0.2072 +ij[2782] = 2 +id[2783] = "2441-07-01T02:50:03" +ik[2783] = -1 +il[2783] = 81 +im[2783] = 0.1917 +ij[2783] = 2 +id[2784] = "2441-07-02T14:52:03" +ik[2784] = 0 +il[2784] = 71 +im[2784] = 0.1154 +ij[2784] = 1 +id[2785] = "2441-10-27T02:07:01" +ik[2785] = -1 +il[2785] = -166 +im[2785] = 0.1628 +ij[2785] = 2 +id[2786] = "2441-10-28T13:54:01" +ik[2786] = 0 +il[2786] = -179 +im[2786] = 0.0927 +ij[2786] = 1 +id[2787] = "2442-02-11T05:01:02" +ik[2787] = 0 +il[2787] = -1 +im[2787] = 0.0079 +ij[2787] = 1 +id[2788] = "2442-02-13T02:50:02" +ik[2788] = 1 +il[2788] = -15 +im[2788] = 0.0981 +ij[2788] = 2 +id[2789] = "2442-06-12T11:16:03" +ik[2789] = 0 +il[2789] = 94 +im[2789] = 0.1856 +ij[2789] = 1 +id[2790] = "2442-06-12T14:21:03" +ik[2790] = 1 +il[2790] = 93 +im[2790] = 0.1917 +ij[2790] = 2 +id[2791] = "2442-10-10T10:31:01" +ik[2791] = -1 +il[2791] = -162 +im[2791] = 0.213 +ij[2791] = 2 +id[2792] = "2442-10-12T11:45:01" +ik[2792] = 0 +il[2792] = -177 +im[2792] = 0.2341 +ij[2792] = 1 +id[2793] = "2443-01-26T02:23:02" +ik[2793] = 0 +il[2793] = 1 +im[2793] = 0.1963 +ij[2793] = 1 +id[2794] = "2443-01-27T10:16:02" +ik[2794] = 1 +il[2794] = -9 +im[2794] = 0.152 +ij[2794] = 2 +id[2795] = "2443-05-23T11:16:03" +ik[2795] = 0 +il[2795] = 117 +im[2795] = 0.2703 +ij[2795] = 1 +id[2796] = "2443-05-25T03:04:03" +ik[2796] = 1 +il[2796] = 106 +im[2796] = 0.2273 +ij[2796] = 2 +id[2797] = "2443-09-23T10:31:01" +ik[2797] = -1 +il[2797] = -154 +im[2797] = 0.0509 +ij[2797] = 2 +id[2798] = "2443-09-26T00:57:01" +ik[2798] = 0 +il[2798] = -173 +im[2798] = 0.1021 +ij[2798] = 1 +id[2799] = "2444-01-10T05:16:02" +ik[2799] = 0 +il[2799] = 1 +im[2799] = 0.1739 +ij[2799] = 1 +id[2800] = "2444-01-11T00:26:02" +ik[2800] = 1 +il[2800] = -5 +im[2800] = 0.1964 +ij[2800] = 2 +id[2801] = "2444-05-02T00:13:03" +ik[2801] = 0 +il[2801] = 144 +im[2801] = 0.0538 +ij[2801] = 1 +id[2802] = "2444-05-05T17:57:03" +ik[2802] = 1 +il[2802] = 118 +im[2802] = 0.1778 +ij[2802] = 2 +id[2803] = "2444-09-04T23:57:01" +ik[2803] = -1 +il[2803] = -144 +im[2803] = 0.2324 +ij[2803] = 2 +id[2804] = "2444-09-08T02:23:01" +ik[2804] = 0 +il[2804] = -166 +im[2804] = 0.2033 +ij[2804] = 1 +id[2805] = "2444-12-24T11:45:02" +ik[2805] = 0 +il[2805] = 1 +im[2805] = 0.0507 +ij[2805] = 1 +id[2806] = "2444-12-24T18:55:02" +ik[2806] = 1 +il[2806] = -1 +im[2806] = 0.0348 +ij[2806] = 2 +id[2807] = "2445-04-14T06:57:03" +ik[2807] = 0 +il[2807] = 153 +im[2807] = 0.2452 +ij[2807] = 1 +id[2808] = "2445-04-17T12:12:03" +ik[2808] = 1 +il[2808] = 131 +im[2808] = 0.217 +ij[2808] = 2 +id[2809] = "2445-08-18T03:19:01" +ik[2809] = -1 +il[2809] = -133 +im[2809] = 0.0266 +ij[2809] = 2 +id[2810] = "2445-08-21T11:59:01" +ik[2810] = 0 +il[2810] = -156 +im[2810] = 0.1664 +ij[2810] = 1 +id[2811] = "2445-12-08T15:33:02" +ik[2811] = -1 +il[2811] = 3 +im[2811] = 0.2085 +ij[2811] = 2 +id[2812] = "2445-12-08T20:09:02" +ik[2812] = 0 +il[2812] = 0 +im[2812] = 0.2045 +ij[2812] = 1 +id[2813] = "2446-03-27T07:54:03" +ik[2813] = 0 +il[2813] = 165 +im[2813] = 0.036 +ij[2813] = 1 +id[2814] = "2446-03-30T11:57:03" +ik[2814] = 1 +il[2814] = 142 +im[2814] = 0.1582 +ij[2814] = 2 +id[2815] = "2446-07-30T21:48:01" +ik[2815] = -1 +il[2815] = -120 +im[2815] = 0.2379 +ij[2815] = 2 +id[2816] = "2446-08-03T01:40:01" +ik[2816] = 0 +il[2816] = -142 +im[2816] = 0.2027 +ij[2816] = 1 +id[2817] = "2446-11-22T11:43:02" +ik[2817] = -1 +il[2817] = 7 +im[2817] = 0.144 +ij[2817] = 2 +id[2818] = "2446-11-23T03:49:02" +ik[2818] = 0 +il[2818] = 0 +im[2818] = 0.1697 +ij[2818] = 1 +id[2819] = "2447-03-10T01:11:03" +ik[2819] = 0 +il[2819] = 173 +im[2819] = 0.2255 +ij[2819] = 1 +id[2820] = "2447-03-12T19:52:03" +ik[2820] = 1 +il[2820] = 153 +im[2820] = 0.1744 +ij[2820] = 2 +id[2821] = "2447-07-12T10:45:01" +ik[2821] = -1 +il[2821] = -107 +im[2821] = 0.0704 +ij[2821] = 2 +id[2822] = "2447-07-14T17:59:01" +ik[2822] = 0 +il[2822] = -122 +im[2822] = 0.074 +ij[2822] = 1 +id[2823] = "2447-11-06T05:14:02" +ik[2823] = -1 +il[2823] = 11 +im[2823] = 0.1266 +ij[2823] = 2 +id[2824] = "2447-11-07T09:35:02" +ik[2824] = 0 +il[2824] = 0 +im[2824] = 0.0674 +ij[2824] = 1 +id[2825] = "2448-02-21T07:40:03" +ik[2825] = 0 +il[2825] = 178 +im[2825] = 0.0642 +ij[2825] = 1 +id[2826] = "2448-02-23T13:24:03" +ik[2826] = 1 +il[2826] = 161 +im[2826] = 0.1643 +ij[2826] = 2 +id[2827] = "2448-06-22T22:16:01" +ik[2827] = -1 +il[2827] = -94 +im[2827] = 0.2438 +ij[2827] = 2 +id[2828] = "2448-06-23T18:13:01" +ik[2828] = 0 +il[2828] = -99 +im[2828] = 0.2558 +ij[2828] = 1 +id[2829] = "2448-10-19T17:43:02" +ik[2829] = -1 +il[2829] = 15 +im[2829] = 0.2286 +ij[2829] = 2 +id[2830] = "2448-10-21T11:01:02" +ik[2830] = 0 +il[2830] = 2 +im[2830] = 0.2215 +ij[2830] = 1 +id[2831] = "2449-02-03T00:13:03" +ik[2831] = 0 +il[2831] = -172 +im[2831] = 0.1934 +ij[2831] = 1 +id[2832] = "2449-02-05T16:02:03" +ik[2832] = 1 +il[2832] = 168 +im[2832] = 0.0952 +ij[2832] = 2 +id[2833] = "2449-06-03T14:37:01" +ik[2833] = 0 +il[2833] = -76 +im[2833] = 0.1699 +ij[2833] = 1 +id[2834] = "2449-06-04T10:16:01" +ik[2834] = 1 +il[2834] = -81 +im[2834] = 0.1266 +ij[2834] = 2 +id[2835] = "2449-10-02T22:45:02" +ik[2835] = -1 +il[2835] = 21 +im[2835] = 0.0273 +ij[2835] = 2 +id[2836] = "2449-10-05T05:30:02" +ik[2836] = 0 +il[2836] = 4 +im[2836] = 0.1363 +ij[2836] = 1 +id[2837] = "2450-01-18T00:13:03" +ik[2837] = 0 +il[2837] = -172 +im[2837] = 0.1507 +ij[2837] = 1 +id[2838] = "2450-01-20T02:36:03" +ik[2838] = 1 +il[2838] = 173 +im[2838] = 0.2075 +ij[2838] = 2 +id[2839] = "2450-05-14T19:11:01" +ik[2839] = 0 +il[2839] = -54 +im[2839] = 0.1542 +ij[2839] = 1 +id[2840] = "2450-05-16T23:43:01" +ik[2840] = 1 +il[2840] = -69 +im[2840] = 0.2451 +ij[2840] = 2 +id[2841] = "2450-09-15T18:26:02" +ik[2841] = -1 +il[2841] = 30 +im[2841] = 0.2391 +ij[2841] = 2 +id[2842] = "2450-09-18T14:23:02" +ik[2842] = 0 +il[2842] = 9 +im[2842] = 0.161 +ij[2842] = 1 +id[2843] = "2451-01-03T05:01:03" +ik[2843] = 0 +il[2843] = -179 +im[2843] = 0.0285 +ij[2843] = 1 +id[2844] = "2451-01-03T18:55:03" +ik[2844] = 1 +il[2844] = 177 +im[2844] = 0.0351 +ij[2844] = 2 +id[2845] = "2451-04-25T15:21:01" +ik[2845] = 0 +il[2845] = -36 +im[2845] = 0.257 +ij[2845] = 1 +id[2846] = "2451-04-28T15:48:01" +ik[2846] = 1 +il[2846] = -56 +im[2846] = 0.1507 +ij[2846] = 2 +id[2847] = "2451-08-29T03:33:02" +ik[2847] = -1 +il[2847] = 40 +im[2847] = 0.0926 +ij[2847] = 2 +id[2848] = "2451-09-01T09:35:02" +ik[2848] = 0 +il[2848] = 17 +im[2848] = 0.2237 +ij[2848] = 1 +id[2849] = "2451-12-18T12:28:03" +ik[2849] = 0 +il[2849] = -179 +im[2849] = 0.181 +ij[2849] = 1 +id[2850] = "2451-12-18T14:36:03" +ik[2850] = 1 +il[2850] = -179 +im[2850] = 0.1784 +ij[2850] = 2 +id[2851] = "2452-04-06T05:59:01" +ik[2851] = 0 +il[2851] = -22 +im[2851] = 0.0811 +ij[2851] = 1 +id[2852] = "2452-04-09T12:12:01" +ik[2852] = 1 +il[2852] = -44 +im[2852] = 0.2313 +ij[2852] = 2 +id[2853] = "2452-08-10T02:36:02" +ik[2853] = -1 +il[2853] = 53 +im[2853] = 0.2424 +ij[2853] = 2 +id[2854] = "2452-08-13T11:01:02" +ik[2854] = 0 +il[2854] = 29 +im[2854] = 0.1268 +ij[2854] = 1 +id[2855] = "2452-12-01T11:28:03" +ik[2855] = -1 +il[2855] = -175 +im[2855] = 0.1625 +ij[2855] = 2 +id[2856] = "2452-12-01T20:52:03" +ik[2856] = 0 +il[2856] = 180 +im[2856] = 0.1753 +ij[2856] = 1 +id[2857] = "2453-03-19T14:09:01" +ik[2857] = 0 +il[2857] = -12 +im[2857] = 0.2285 +ij[2857] = 1 +id[2858] = "2453-03-22T15:04:01" +ik[2858] = 1 +il[2858] = -33 +im[2858] = 0.1223 +ij[2858] = 2 +id[2859] = "2453-07-22T18:26:02" +ik[2859] = -1 +il[2859] = 66 +im[2859] = 0.0757 +ij[2859] = 2 +id[2860] = "2453-07-25T15:21:02" +ik[2860] = 0 +il[2860] = 46 +im[2860] = 0.2082 +ij[2860] = 1 +id[2861] = "2453-11-15T06:40:03" +ik[2861] = -1 +il[2861] = -171 +im[2861] = 0.0726 +ij[2861] = 2 +id[2862] = "2453-11-16T04:04:03" +ik[2862] = 0 +il[2862] = 180 +im[2862] = 0.0301 +ij[2862] = 1 +id[2863] = "2454-03-02T13:25:01" +ik[2863] = 0 +il[2863] = -5 +im[2863] = 0.1255 +ij[2863] = 1 +id[2864] = "2454-03-05T03:04:01" +ik[2864] = 1 +il[2864] = -24 +im[2864] = 0.2212 +ij[2864] = 2 +id[2865] = "2454-07-04T06:26:02" +ik[2865] = -1 +il[2865] = 79 +im[2865] = 0.2528 +ij[2865] = 2 +id[2866] = "2454-07-05T23:45:02" +ik[2866] = 0 +il[2866] = 67 +im[2866] = 0.2185 +ij[2866] = 1 +id[2867] = "2454-10-29T22:31:03" +ik[2867] = -1 +il[2867] = -167 +im[2867] = 0.2181 +ij[2867] = 2 +id[2868] = "2454-10-31T08:09:03" +ik[2868] = 0 +il[2868] = -180 +im[2868] = 0.1936 +ij[2868] = 1 +id[2869] = "2455-02-14T00:42:01" +ik[2869] = 0 +il[2869] = -1 +im[2869] = 0.1363 +ij[2869] = 1 +id[2870] = "2455-02-16T00:26:01" +ik[2870] = 1 +il[2870] = -16 +im[2870] = 0.0351 +ij[2870] = 2 +id[2871] = "2455-06-15T17:43:02" +ik[2871] = -1 +il[2871] = 92 +im[2871] = 0.0343 +ij[2871] = 2 +id[2872] = "2455-06-15T20:37:02" +ik[2872] = 0 +il[2872] = 91 +im[2872] = 0.0362 +ij[2872] = 1 +id[2873] = "2455-10-13T07:52:03" +ik[2873] = -1 +il[2873] = -163 +im[2873] = 0.064 +ij[2873] = 2 +id[2874] = "2455-10-15T06:57:03" +ik[2874] = 0 +il[2874] = -177 +im[2874] = 0.1578 +ij[2874] = 1 +id[2875] = "2456-01-28T20:52:01" +ik[2875] = 0 +il[2875] = 1 +im[2875] = 0.202 +ij[2875] = 1 +id[2876] = "2456-01-30T06:55:01" +ik[2876] = 1 +il[2876] = -10 +im[2876] = 0.2194 +ij[2876] = 2 +id[2877] = "2456-05-25T19:25:02" +ik[2877] = 0 +il[2877] = 114 +im[2877] = 0.2445 +ij[2877] = 1 +id[2878] = "2456-05-27T06:26:02" +ik[2878] = 1 +il[2878] = 104 +im[2878] = 0.2599 +ij[2878] = 2 +id[2879] = "2456-09-25T09:19:03" +ik[2879] = -1 +il[2879] = -156 +im[2879] = 0.2039 +ij[2879] = 2 +id[2880] = "2456-09-27T21:49:03" +ik[2880] = 0 +il[2880] = -174 +im[2880] = 0.0992 +ij[2880] = 1 +id[2881] = "2457-01-11T23:01:01" +ik[2881] = 0 +il[2881] = 1 +im[2881] = 0.0386 +ij[2881] = 1 +id[2882] = "2457-01-12T20:07:01" +ik[2882] = 1 +il[2882] = -5 +im[2882] = 0.0834 +ij[2882] = 2 +id[2883] = "2457-05-06T05:59:02" +ik[2883] = 0 +il[2883] = 134 +im[2883] = 0.1841 +ij[2883] = 1 +id[2884] = "2457-05-08T20:50:02" +ik[2884] = 1 +il[2884] = 116 +im[2884] = 0.0437 +ij[2884] = 2 +id[2885] = "2457-09-08T00:26:03" +ik[2885] = -1 +il[2885] = -146 +im[2885] = 0.1594 +ij[2885] = 2 +id[2886] = "2457-09-11T01:11:03" +ik[2886] = 0 +il[2886] = -168 +im[2886] = 0.2329 +ij[2886] = 1 +id[2887] = "2457-12-27T05:16:01" +ik[2887] = 0 +il[2887] = 1 +im[2887] = 0.1624 +ij[2887] = 1 +id[2888] = "2457-12-27T14:07:01" +ik[2888] = 1 +il[2888] = -1 +im[2888] = 0.1487 +ij[2888] = 2 +id[2889] = "2458-04-17T10:04:02" +ik[2889] = 0 +il[2889] = 151 +im[2889] = 0.1774 +ij[2889] = 1 +id[2890] = "2458-04-20T14:21:02" +ik[2890] = 1 +il[2890] = 129 +im[2890] = 0.2582 +ij[2890] = 2 +id[2891] = "2458-08-21T05:00:03" +ik[2891] = -1 +il[2891] = -135 +im[2891] = 0.2003 +ij[2891] = 2 +id[2892] = "2458-08-24T13:25:03" +ik[2892] = 0 +il[2892] = -158 +im[2892] = 0.0266 +ij[2892] = 1 +id[2893] = "2458-12-11T10:31:01" +ik[2893] = -1 +il[2893] = 3 +im[2893] = 0.1844 +ij[2893] = 2 +id[2894] = "2458-12-11T13:25:01" +ik[2894] = 0 +il[2894] = 0 +im[2894] = 0.1876 +ij[2894] = 1 +id[2895] = "2459-03-30T08:09:02" +ik[2895] = 0 +il[2895] = 163 +im[2895] = 0.2046 +ij[2895] = 1 +id[2896] = "2459-04-02T13:24:02" +ik[2896] = 1 +il[2896] = 141 +im[2896] = 0.0411 +ij[2896] = 2 +id[2897] = "2459-08-03T00:40:03" +ik[2897] = -1 +il[2897] = -122 +im[2897] = 0.1785 +ij[2897] = 2 +id[2898] = "2459-08-06T06:13:03" +ik[2898] = 0 +il[2898] = -144 +im[2898] = 0.2595 +ij[2898] = 1 +id[2899] = "2459-11-25T06:55:01" +ik[2899] = -1 +il[2899] = 7 +im[2899] = 0.0102 +ij[2899] = 2 +id[2900] = "2459-11-25T21:21:01" +ik[2900] = 0 +il[2900] = 0 +im[2900] = 0.0224 +ij[2900] = 1 +id[2901] = "2460-03-11T23:16:02" +ik[2901] = 0 +il[2901] = 172 +im[2901] = 0.1897 +ij[2901] = 1 +id[2902] = "2460-03-14T19:52:02" +ik[2902] = 1 +il[2902] = 151 +im[2902] = 0.2495 +ij[2902] = 2 +id[2903] = "2460-07-14T14:21:03" +ik[2903] = -1 +il[2903] = -109 +im[2903] = 0.22 +ij[2903] = 2 +id[2904] = "2460-07-17T01:40:03" +ik[2904] = 0 +il[2904] = -125 +im[2904] = 0.0981 +ij[2904] = 1 +id[2905] = "2460-11-08T01:09:01" +ik[2905] = -1 +il[2905] = 11 +im[2905] = 0.1992 +ij[2905] = 2 +id[2906] = "2460-11-09T03:35:01" +ik[2906] = 0 +il[2906] = 0 +im[2906] = 0.1699 +ij[2906] = 1 +id[2907] = "2461-02-23T04:04:02" +ik[2907] = 0 +il[2907] = 177 +im[2907] = 0.1038 +ij[2907] = 1 +id[2908] = "2461-02-25T11:57:02" +ik[2908] = 1 +il[2908] = 160 +im[2908] = 0.0323 +ij[2908] = 2 +id[2909] = "2461-06-26T01:52:03" +ik[2909] = -1 +il[2909] = -96 +im[2909] = 0.1401 +ij[2909] = 2 +id[2910] = "2461-06-27T03:35:03" +ik[2910] = 0 +il[2910] = -103 +im[2910] = 0.1921 +ij[2910] = 1 +id[2911] = "2461-10-22T14:21:01" +ik[2911] = -1 +il[2911] = 15 +im[2911] = 0.1135 +ij[2911] = 2 +id[2912] = "2461-10-24T05:45:01" +ik[2912] = 0 +il[2912] = 1 +im[2912] = 0.177 +ij[2912] = 1 +id[2913] = "2462-02-06T19:25:02" +ik[2913] = 0 +il[2913] = -180 +im[2913] = 0.2262 +ij[2913] = 1 +id[2914] = "2462-02-08T13:24:02" +ik[2914] = 1 +il[2914] = 167 +im[2914] = 0.2239 +ij[2914] = 2 +id[2915] = "2462-06-06T23:45:03" +ik[2915] = 0 +il[2915] = -79 +im[2915] = 0.2457 +ij[2915] = 1 +id[2916] = "2462-06-07T13:38:03" +ik[2916] = 1 +il[2916] = -83 +im[2916] = 0.2315 +ij[2916] = 2 +id[2917] = "2462-10-05T20:50:01" +ik[2917] = -1 +il[2917] = 20 +im[2917] = 0.1391 +ij[2917] = 2 +id[2918] = "2462-10-08T01:25:01" +ik[2918] = 0 +il[2918] = 4 +im[2918] = 0.0341 +ij[2918] = 1 +id[2919] = "2463-01-21T18:28:02" +ik[2919] = 0 +il[2919] = -179 +im[2919] = 0.0853 +ij[2919] = 1 +id[2920] = "2463-01-22T22:45:02" +ik[2920] = 1 +il[2920] = 172 +im[2920] = 0.1426 +ij[2920] = 2 +id[2921] = "2463-05-18T02:23:03" +ik[2921] = 0 +il[2921] = -57 +im[2921] = 0.0386 +ij[2921] = 1 +id[2922] = "2463-05-20T02:50:03" +ik[2922] = 1 +il[2922] = -71 +im[2922] = 0.0919 +ij[2922] = 2 +id[2923] = "2463-09-18T17:57:01" +ik[2923] = -1 +il[2923] = 28 +im[2923] = 0.1987 +ij[2923] = 2 +id[2924] = "2463-09-21T11:59:01" +ik[2924] = 0 +il[2924] = 8 +im[2924] = 0.2162 +ij[2924] = 1 +id[2925] = "2464-01-05T22:33:02" +ik[2925] = 0 +il[2925] = -179 +im[2925] = 0.1531 +ij[2925] = 1 +id[2926] = "2464-01-06T14:21:02" +ik[2926] = 1 +il[2926] = 176 +im[2926] = 0.1246 +ij[2926] = 2 +id[2927] = "2464-04-27T20:09:03" +ik[2927] = 0 +il[2927] = -38 +im[2927] = 0.2387 +ij[2927] = 1 +id[2928] = "2464-04-30T18:26:03" +ik[2928] = 1 +il[2928] = -58 +im[2928] = 0.2325 +ij[2928] = 2 +id[2929] = "2464-08-31T04:31:01" +ik[2929] = -1 +il[2929] = 39 +im[2929] = 0.1198 +ij[2929] = 2 +id[2930] = "2464-09-03T09:21:01" +ik[2930] = 0 +il[2930] = 16 +im[2930] = 0.0677 +ij[2930] = 1 +id[2931] = "2464-12-20T05:45:02" +ik[2931] = 0 +il[2931] = -179 +im[2931] = 0.2074 +ij[2931] = 1 +id[2932] = "2464-12-20T09:48:02" +ik[2932] = 1 +il[2932] = -180 +im[2932] = 0.2104 +ij[2932] = 2 +id[2933] = "2465-04-09T07:54:03" +ik[2933] = 0 +il[2933] = -23 +im[2933] = 0.1334 +ij[2933] = 1 +id[2934] = "2465-04-12T14:07:03" +ik[2934] = 1 +il[2934] = -46 +im[2934] = 0.0667 +ij[2934] = 2 +id[2935] = "2465-08-13T05:00:01" +ik[2935] = -1 +il[2935] = 51 +im[2935] = 0.2351 +ij[2935] = 2 +id[2936] = "2465-08-16T13:40:01" +ik[2936] = 0 +il[2936] = 27 +im[2936] = 0.2246 +ij[2936] = 1 +id[2937] = "2465-12-04T06:26:02" +ik[2937] = -1 +il[2937] = -176 +im[2937] = 0.0485 +ij[2937] = 2 +id[2938] = "2465-12-04T14:09:02" +ik[2938] = 0 +il[2938] = 180 +im[2938] = 0.0652 +ij[2938] = 1 +id[2939] = "2466-03-22T13:40:03" +ik[2939] = 0 +il[2939] = -13 +im[2939] = 0.2316 +ij[2939] = 1 +id[2940] = "2466-03-25T15:48:03" +ik[2940] = 1 +il[2940] = -35 +im[2940] = 0.2287 +ij[2940] = 2 +id[2941] = "2466-07-25T21:33:01" +ik[2941] = -1 +il[2941] = 64 +im[2941] = 0.1402 +ij[2941] = 2 +id[2942] = "2466-07-28T21:21:01" +ik[2942] = 0 +il[2942] = 43 +im[2942] = 0.0555 +ij[2942] = 1 +id[2943] = "2466-11-18T02:07:02" +ik[2943] = -1 +il[2943] = -172 +im[2943] = 0.1836 +ij[2943] = 2 +id[2944] = "2466-11-18T21:35:02" +ik[2944] = 0 +il[2944] = 180 +im[2944] = 0.1566 +ij[2944] = 1 +id[2945] = "2467-03-05T11:01:03" +ik[2945] = 0 +il[2945] = -6 +im[2945] = 0.0693 +ij[2945] = 1 +id[2946] = "2467-03-08T02:21:03" +ik[2946] = 1 +il[2946] = -25 +im[2946] = 0.1009 +ij[2946] = 2 +id[2947] = "2467-07-07T09:48:01" +ik[2947] = -1 +il[2947] = 77 +im[2947] = 0.239 +ij[2947] = 2 +id[2948] = "2467-07-09T08:23:01" +ik[2948] = 0 +il[2948] = 64 +im[2948] = 0.2738 +ij[2948] = 1 +id[2949] = "2467-11-01T18:40:02" +ik[2949] = -1 +il[2949] = -168 +im[2949] = 0.162 +ij[2949] = 2 +id[2950] = "2467-11-03T02:23:02" +ik[2950] = 0 +il[2950] = -180 +im[2950] = 0.2008 +ij[2950] = 1 +id[2951] = "2468-02-16T20:37:03" +ik[2951] = 0 +il[2951] = -2 +im[2951] = 0.2369 +ij[2951] = 1 +id[2952] = "2468-02-18T22:31:03" +ik[2952] = 1 +il[2952] = -17 +im[2952] = 0.203 +ij[2952] = 2 +id[2953] = "2468-06-17T21:19:01" +ik[2953] = -1 +il[2953] = 90 +im[2953] = 0.166 +ij[2953] = 2 +id[2954] = "2468-06-18T06:13:01" +ik[2954] = 0 +il[2954] = 87 +im[2954] = 0.146 +ij[2954] = 1 +id[2955] = "2468-10-15T05:14:02" +ik[2955] = -1 +il[2955] = -164 +im[2955] = 0.0743 +ij[2955] = 2 +id[2956] = "2468-10-17T02:09:02" +ik[2956] = 0 +il[2956] = -178 +im[2956] = 0.0345 +ij[2956] = 1 +id[2957] = "2469-01-30T15:35:03" +ik[2957] = 0 +il[2957] = 1 +im[2957] = 0.1225 +ij[2957] = 1 +id[2958] = "2469-02-01T03:33:03" +ik[2958] = 1 +il[2958] = -11 +im[2958] = 0.1848 +ij[2958] = 2 +id[2959] = "2469-05-29T03:49:01" +ik[2959] = 0 +il[2959] = 111 +im[2959] = 0.1473 +ij[2959] = 1 +id[2960] = "2469-05-30T09:48:01" +ik[2960] = 1 +il[2960] = 102 +im[2960] = 0.2063 +ij[2960] = 2 +id[2961] = "2469-09-28T07:52:02" +ik[2961] = -1 +il[2961] = -157 +im[2961] = 0.2143 +ij[2961] = 2 +id[2962] = "2469-09-30T18:28:02" +ik[2962] = 0 +il[2962] = -174 +im[2962] = 0.1984 +ij[2962] = 1 +id[2963] = "2470-01-14T17:01:03" +ik[2963] = 0 +il[2963] = 1 +im[2963] = 0.1437 +ij[2963] = 1 +id[2964] = "2470-01-15T15:48:03" +ik[2964] = 1 +il[2964] = -6 +im[2964] = 0.0994 +ij[2964] = 2 +id[2965] = "2470-05-09T12:13:01" +ik[2965] = 0 +il[2965] = 132 +im[2965] = 0.2462 +ij[2965] = 1 +id[2966] = "2470-05-11T23:57:01" +ik[2966] = 1 +il[2966] = 115 +im[2966] = 0.1676 +ij[2966] = 2 +id[2967] = "2470-09-11T00:26:02" +ik[2967] = -1 +il[2967] = -148 +im[2967] = 0.0333 +ij[2967] = 2 +id[2968] = "2470-09-13T23:45:02" +ik[2968] = 0 +il[2968] = -169 +im[2968] = 0.1363 +ij[2968] = 1 +id[2969] = "2470-12-29T22:47:03" +ik[2969] = 0 +il[2969] = 1 +im[2969] = 0.2254 +ij[2969] = 1 +id[2970] = "2470-12-30T09:19:03" +ik[2970] = 1 +il[2970] = -2 +im[2970] = 0.228 +ij[2970] = 2 +id[2971] = "2471-04-20T13:25:01" +ik[2971] = 0 +il[2971] = 149 +im[2971] = 0.0113 +ij[2971] = 1 +id[2972] = "2471-04-23T16:45:01" +ik[2972] = 1 +il[2972] = 127 +im[2972] = 0.164 +ij[2972] = 2 +id[2973] = "2471-08-24T06:40:02" +ik[2973] = -1 +il[2973] = -136 +im[2973] = 0.2365 +ij[2973] = 2 +id[2974] = "2471-08-27T14:23:02" +ik[2974] = 0 +il[2974] = -160 +im[2974] = 0.151 +ij[2974] = 1 +id[2975] = "2471-12-14T05:28:03" +ik[2975] = -1 +il[2975] = 2 +im[2975] = 0.0948 +ij[2975] = 2 +id[2976] = "2471-12-14T06:42:03" +ik[2976] = 0 +il[2976] = 0 +im[2976] = 0.0974 +ij[2976] = 1 +id[2977] = "2472-04-01T09:06:01" +ik[2977] = 0 +il[2977] = 162 +im[2977] = 0.2404 +ij[2977] = 1 +id[2978] = "2472-04-04T14:50:01" +ik[2978] = 1 +il[2978] = 139 +im[2978] = 0.1654 +ij[2978] = 2 +id[2979] = "2472-08-05T03:33:02" +ik[2979] = -1 +il[2979] = -124 +im[2979] = 0.0439 +ij[2979] = 2 +id[2980] = "2472-08-08T10:18:02" +ik[2980] = 0 +il[2980] = -146 +im[2980] = 0.1561 +ij[2980] = 1 +id[2981] = "2472-11-27T02:07:03" +ik[2981] = -1 +il[2981] = 6 +im[2981] = 0.1698 +ij[2981] = 2 +id[2982] = "2472-11-27T14:52:03" +ik[2982] = 0 +il[2982] = 0 +im[2982] = 0.1493 +ij[2982] = 1 +id[2983] = "2473-03-14T21:49:01" +ik[2983] = 0 +il[2983] = 171 +im[2983] = 0.0068 +ij[2983] = 1 +id[2984] = "2473-03-17T20:07:01" +ik[2984] = 1 +il[2984] = 150 +im[2984] = 0.1585 +ij[2984] = 2 +id[2985] = "2473-07-17T17:43:02" +ik[2985] = -1 +il[2985] = -111 +im[2985] = 0.2655 +ij[2985] = 2 +id[2986] = "2473-07-20T08:52:02" +ik[2986] = 0 +il[2986] = -128 +im[2986] = 0.2258 +ij[2986] = 1 +id[2987] = "2473-11-10T20:50:03" +ik[2987] = -1 +il[2987] = 10 +im[2987] = 0.2027 +ij[2987] = 2 +id[2988] = "2473-11-11T21:21:03" +ik[2988] = 0 +il[2988] = 0 +im[2988] = 0.2214 +ij[2988] = 1 +id[2989] = "2474-02-26T00:42:01" +ik[2989] = 0 +il[2989] = 176 +im[2989] = 0.2222 +ij[2989] = 1 +id[2990] = "2474-02-28T10:31:01" +ik[2990] = 1 +il[2990] = 159 +im[2990] = 0.1447 +ij[2990] = 2 +id[2991] = "2474-06-29T05:28:02" +ik[2991] = -1 +il[2991] = -98 +im[2991] = 0.0697 +ij[2991] = 2 +id[2992] = "2474-06-30T12:57:02" +ik[2992] = 0 +il[2992] = -106 +im[2992] = 0.0358 +ij[2992] = 1 +id[2993] = "2474-10-25T10:59:03" +ik[2993] = -1 +il[2993] = 14 +im[2993] = 0.0172 +ij[2993] = 2 +id[2994] = "2474-10-26T00:13:03" +ik[2994] = 0 +il[2994] = 9 +im[2994] = 0.0234 +ij[2994] = 1 +id[2995] = "2475-02-09T14:37:01" +ik[2995] = 0 +il[2995] = -180 +im[2995] = 0.1449 +ij[2995] = 1 +id[2996] = "2475-02-11T10:45:01" +ik[2996] = 1 +il[2996] = 166 +im[2996] = 0.2077 +ij[2996] = 2 +id[2997] = "2475-06-10T08:52:02" +ik[2997] = 0 +il[2997] = -83 +im[2997] = 0.2677 +ij[2997] = 1 +id[2998] = "2475-06-10T16:59:02" +ik[2998] = 1 +il[2998] = -85 +im[2998] = 0.2736 +ij[2998] = 2 +id[2999] = "2475-10-08T18:26:03" +ik[2999] = -1 +il[2999] = 19 +im[2999] = 0.2222 +ij[2999] = 2 +id[3000] = "2475-10-10T21:21:03" +ik[3000] = 0 +il[3000] = 3 +im[3000] = 0.1808 +ij[3000] = 1 +id[3001] = "2476-01-24T12:42:01" +ik[3001] = 0 +il[3001] = -179 +im[3001] = 0.1212 +ij[3001] = 1 +id[3002] = "2476-01-25T19:09:01" +ik[3002] = 1 +il[3002] = 172 +im[3002] = 0.0549 +ij[3002] = 2 +id[3003] = "2476-05-20T10:04:02" +ik[3003] = 0 +il[3003] = -60 +im[3003] = 0.183 +ij[3003] = 1 +id[3004] = "2476-05-22T06:11:02" +ik[3004] = 1 +il[3004] = -73 +im[3004] = 0.0794 +ij[3004] = 2 +id[3005] = "2476-09-20T16:59:03" +ik[3005] = -1 +il[3005] = 27 +im[3005] = 0.081 +ij[3005] = 2 +id[3006] = "2476-09-23T09:21:03" +ik[3006] = 0 +il[3006] = 8 +im[3006] = 0.1947 +ij[3006] = 1 +id[3007] = "2477-01-07T16:18:01" +ik[3007] = 0 +il[3007] = -179 +im[3007] = 0.2279 +ij[3007] = 1 +id[3008] = "2477-01-08T09:47:01" +ik[3008] = 1 +il[3008] = 176 +im[3008] = 0.2236 +ij[3008] = 2 +id[3009] = "2477-05-01T01:11:02" +ik[3009] = 0 +il[3009] = -41 +im[3009] = 0.1322 +ij[3009] = 1 +id[3010] = "2477-05-03T21:19:02" +ik[3010] = 1 +il[3010] = -60 +im[3010] = 0.2461 +ij[3010] = 2 +id[3011] = "2477-09-03T05:14:03" +ik[3011] = -1 +il[3011] = 37 +im[3011] = 0.2069 +ij[3011] = 2 +id[3012] = "2477-09-06T08:52:03" +ik[3012] = 0 +il[3012] = 15 +im[3012] = 0.0695 +ij[3012] = 1 +id[3013] = "2477-12-22T23:16:01" +ik[3013] = 0 +il[3013] = -179 +im[3013] = 0.1104 +ij[3013] = 1 +id[3014] = "2477-12-23T04:45:01" +ik[3014] = 1 +il[3014] = -180 +im[3014] = 0.1215 +ij[3014] = 2 +id[3015] = "2478-04-12T10:18:02" +ik[3015] = 0 +il[3015] = -25 +im[3015] = 0.2175 +ij[3015] = 1 +id[3016] = "2478-04-15T16:02:02" +ik[3016] = 1 +il[3016] = -48 +im[3016] = 0.0743 +ij[3016] = 2 +id[3017] = "2478-08-16T07:09:03" +ik[3017] = -1 +il[3017] = 49 +im[3017] = 0.0853 +ij[3017] = 2 +id[3018] = "2478-08-19T16:04:03" +ik[3018] = 0 +il[3018] = 25 +im[3018] = 0.2196 +ij[3018] = 1 +id[3019] = "2478-12-07T01:23:01" +ik[3019] = -1 +il[3019] = -176 +im[3019] = 0.145 +ij[3019] = 2 +id[3020] = "2478-12-07T07:25:01" +ik[3020] = 0 +il[3020] = 180 +im[3020] = 0.1339 +ij[3020] = 1 +id[3021] = "2479-03-25T13:25:02" +ik[3021] = 0 +il[3021] = -14 +im[3021] = 0.0845 +ij[3021] = 1 +id[3022] = "2479-03-28T16:45:02" +ik[3022] = 1 +il[3022] = -36 +im[3022] = 0.2173 +ij[3022] = 2 +id[3023] = "2479-07-29T00:40:03" +ik[3023] = -1 +il[3023] = 62 +im[3023] = 0.2268 +ij[3023] = 2 +id[3024] = "2479-08-01T02:52:03" +ik[3024] = 0 +il[3024] = 41 +im[3024] = 0.0953 +ij[3024] = 1 +id[3025] = "2479-11-20T21:33:01" +ik[3025] = -1 +il[3025] = -172 +im[3025] = 0.2237 +ij[3025] = 2 +id[3026] = "2479-11-21T15:06:01" +ik[3026] = 0 +il[3026] = 180 +im[3026] = 0.228 +ij[3026] = 1 +id[3027] = "2480-03-07T08:37:02" +ik[3027] = 0 +il[3027] = -7 +im[3027] = 0.1821 +ij[3027] = 1 +id[3028] = "2480-03-10T01:52:02" +ik[3028] = 1 +il[3028] = -26 +im[3028] = 0.0574 +ij[3028] = 2 +id[3029] = "2480-07-09T13:23:03" +ik[3029] = -1 +il[3029] = 75 +im[3029] = 0.054 +ij[3029] = 2 +id[3030] = "2480-07-11T16:47:03" +ik[3030] = 0 +il[3030] = 61 +im[3030] = 0.1733 +ij[3030] = 1 +id[3031] = "2480-11-03T14:35:01" +ik[3031] = -1 +il[3031] = -168 +im[3031] = 0.0365 +ij[3031] = 2 +id[3032] = "2480-11-04T20:37:01" +ik[3032] = 0 +il[3032] = -180 +im[3032] = 0.1031 +ij[3032] = 1 +id[3033] = "2481-02-18T16:33:02" +ik[3033] = 0 +il[3033] = -2 +im[3033] = 0.1686 +ij[3033] = 1 +id[3034] = "2481-02-20T20:35:02" +ik[3034] = 1 +il[3034] = -18 +im[3034] = 0.219 +ij[3034] = 2 +id[3035] = "2481-06-21T00:55:03" +ik[3035] = -1 +il[3035] = 88 +im[3035] = 0.2678 +ij[3035] = 2 +id[3036] = "2481-06-21T15:49:03" +ik[3036] = 0 +il[3036] = 84 +im[3036] = 0.2556 +ij[3036] = 1 +id[3037] = "2481-10-18T02:07:01" +ik[3037] = -1 +il[3037] = -164 +im[3037] = 0.2157 +ij[3037] = 2 +id[3038] = "2481-10-19T21:06:01" +ik[3038] = 0 +il[3038] = -178 +im[3038] = 0.1606 +ij[3038] = 1 +id[3039] = "2482-02-02T10:18:02" +ik[3039] = 0 +il[3039] = 0 +im[3039] = 0.0775 +ij[3039] = 1 +id[3040] = "2482-02-04T00:26:02" +ik[3040] = 1 +il[3040] = -11 +im[3040] = 0.0093 +ij[3040] = 2 +id[3041] = "2482-06-01T12:28:03" +ik[3041] = 0 +il[3041] = 107 +im[3041] = 0.0397 +ij[3041] = 1 +id[3042] = "2482-06-02T12:55:03" +ik[3042] = 1 +il[3042] = 100 +im[3042] = 0.0346 +ij[3042] = 2 +id[3043] = "2482-10-01T06:11:01" +ik[3043] = -1 +il[3043] = -158 +im[3043] = 0.1578 +ij[3043] = 2 +id[3044] = "2482-10-03T14:37:01" +ik[3044] = 0 +il[3044] = -175 +im[3044] = 0.2258 +ij[3044] = 1 +id[3045] = "2483-01-17T11:01:02" +ik[3045] = 0 +il[3045] = 1 +im[3045] = 0.2154 +ij[3045] = 1 +id[3046] = "2483-01-18T11:43:02" +ik[3046] = 1 +il[3046] = -6 +im[3046] = 0.1964 +ij[3046] = 2 +id[3047] = "2483-05-12T18:57:03" +ik[3047] = 0 +il[3047] = 129 +im[3047] = 0.2495 +ij[3047] = 1 +id[3048] = "2483-05-15T02:50:03" +ik[3048] = 1 +il[3048] = 113 +im[3048] = 0.2772 +ij[3048] = 2 +id[3049] = "2483-09-14T00:26:01" +ik[3049] = -1 +il[3049] = -149 +im[3049] = 0.1616 +ij[3049] = 2 +id[3050] = "2483-09-16T21:49:01" +ik[3050] = 0 +il[3050] = -170 +im[3050] = 0.0262 +ij[3050] = 1 +id[3051] = "2484-01-01T16:18:02" +ik[3051] = 0 +il[3051] = 1 +im[3051] = 0.1225 +ij[3051] = 1 +id[3052] = "2484-01-02T04:45:02" +ik[3052] = 1 +il[3052] = -2 +im[3052] = 0.1456 +ij[3052] = 2 +id[3053] = "2484-04-22T17:16:03" +ik[3053] = 0 +il[3053] = 146 +im[3053] = 0.1604 +ij[3053] = 1 +id[3054] = "2484-04-25T19:23:03" +ik[3054] = 1 +il[3054] = 125 +im[3054] = 0.0384 +ij[3054] = 2 +id[3055] = "2484-08-26T08:07:01" +ik[3055] = -1 +il[3055] = -138 +im[3055] = 0.1852 +ij[3055] = 2 +id[3056] = "2484-08-29T15:06:01" +ik[3056] = 0 +il[3056] = -161 +im[3056] = 0.2429 +ij[3056] = 1 +id[3057] = "2484-12-15T23:59:02" +ik[3057] = 0 +il[3057] = 1 +im[3057] = 0.1058 +ij[3057] = 1 +id[3058] = "2484-12-16T00:40:02" +ik[3058] = 1 +il[3058] = 2 +im[3058] = 0.1044 +ij[3058] = 2 +id[3059] = "2485-04-04T10:18:03" +ik[3059] = 0 +il[3059] = 160 +im[3059] = 0.1779 +ij[3059] = 1 +id[3060] = "2485-04-07T16:16:03" +ik[3060] = 1 +il[3060] = 137 +im[3060] = 0.2534 +ij[3060] = 2 +id[3061] = "2485-08-08T06:11:01" +ik[3061] = -1 +il[3061] = -126 +im[3061] = 0.1517 +ij[3061] = 2 +id[3062] = "2485-08-11T13:54:01" +ik[3062] = 0 +il[3062] = -149 +im[3062] = 0.0551 +ij[3062] = 1 +id[3063] = "2485-11-29T21:19:02" +ik[3063] = -1 +il[3063] = 6 +im[3063] = 0.221 +ij[3063] = 2 +id[3064] = "2485-11-30T08:09:02" +ik[3064] = 0 +il[3064] = 0 +im[3064] = 0.2186 +ij[3064] = 1 +id[3065] = "2486-03-17T20:37:03" +ik[3065] = 0 +il[3065] = 170 +im[3065] = 0.13 +ij[3065] = 1 +id[3066] = "2486-03-20T20:21:03" +ik[3066] = 1 +il[3066] = 148 +im[3066] = 0.0519 +ij[3066] = 2 +id[3067] = "2486-07-20T21:04:01" +ik[3067] = -1 +il[3067] = -113 +im[3067] = 0.1643 +ij[3067] = 2 +id[3068] = "2486-07-23T15:35:01" +ik[3068] = 0 +il[3068] = -131 +im[3068] = 0.2447 +ij[3068] = 1 +id[3069] = "2486-11-13T16:16:02" +ik[3069] = -1 +il[3069] = 10 +im[3069] = 0.0664 +ij[3069] = 2 +id[3070] = "2486-11-14T15:06:02" +ik[3070] = 0 +il[3070] = 0 +im[3070] = 0.1155 +ij[3070] = 1 +id[3071] = "2487-02-28T21:35:03" +ik[3071] = 0 +il[3071] = 176 +im[3071] = 0.1984 +ij[3071] = 1 +id[3072] = "2487-03-03T09:33:03" +ik[3072] = 1 +il[3072] = 158 +im[3072] = 0.2231 +ij[3072] = 2 +id[3073] = "2487-07-02T08:50:01" +ik[3073] = -1 +il[3073] = -99 +im[3073] = 0.1944 +ij[3073] = 2 +id[3074] = "2487-07-03T21:49:01" +ik[3074] = 0 +il[3074] = -110 +im[3074] = 0.1222 +ij[3074] = 1 +id[3075] = "2487-10-28T07:23:02" +ik[3075] = -1 +il[3075] = 14 +im[3075] = 0.1865 +ij[3075] = 2 +id[3076] = "2487-10-29T18:42:02" +ik[3076] = 0 +il[3076] = 1 +im[3076] = 0.1274 +ij[3076] = 1 +id[3077] = "2488-02-12T10:18:03" +ik[3077] = 0 +il[3077] = 179 +im[3077] = 0.0403 +ij[3077] = 1 +id[3078] = "2488-02-14T08:07:03" +ik[3078] = 1 +il[3078] = 165 +im[3078] = 0.0893 +ij[3078] = 2 +id[3079] = "2488-06-12T18:13:01" +ik[3079] = 0 +il[3079] = -86 +im[3079] = 0.1361 +ij[3079] = 1 +id[3080] = "2488-06-12T20:35:01" +ik[3080] = 1 +il[3080] = -87 +im[3080] = 0.1415 +ij[3080] = 2 +id[3081] = "2488-10-10T16:02:02" +ik[3081] = -1 +il[3081] = 18 +im[3081] = 0.1977 +ij[3081] = 2 +id[3082] = "2488-10-12T16:47:02" +ik[3082] = 0 +il[3082] = 3 +im[3082] = 0.2286 +ij[3082] = 1 +id[3083] = "2489-01-26T07:11:03" +ik[3083] = 0 +il[3083] = -179 +im[3083] = 0.2008 +ij[3083] = 1 +id[3084] = "2489-01-27T15:33:03" +ik[3084] = 1 +il[3084] = 171 +im[3084] = 0.1636 +ij[3084] = 2 +id[3085] = "2489-05-23T17:59:01" +ik[3085] = 0 +il[3085] = -63 +im[3085] = 0.2719 +ij[3085] = 1 +id[3086] = "2489-05-25T09:19:01" +ik[3086] = 1 +il[3086] = -74 +im[3086] = 0.2355 +ij[3086] = 2 +id[3087] = "2489-09-23T16:02:02" +ik[3087] = -1 +il[3087] = 26 +im[3087] = 0.1076 +ij[3087] = 2 +id[3088] = "2489-09-26T06:13:02" +ik[3088] = 0 +il[3088] = 7 +im[3088] = 0.0474 +ij[3088] = 1 +id[3089] = "2490-01-10T10:04:03" +ik[3089] = 0 +il[3089] = -179 +im[3089] = 0.1399 +ij[3089] = 1 +id[3090] = "2490-01-11T05:28:03" +ik[3090] = 1 +il[3090] = 175 +im[3090] = 0.17 +ij[3090] = 2 +id[3091] = "2490-05-04T06:42:01" +ik[3091] = 0 +il[3091] = -43 +im[3091] = 0.0482 +ij[3091] = 1 +id[3092] = "2490-05-06T00:11:01" +ik[3092] = 1 +il[3092] = -55 +im[3092] = 0.069 +ij[3092] = 2 +id[3093] = "2490-09-06T05:57:02" +ik[3093] = -1 +il[3093] = 35 +im[3093] = 0.2365 +ij[3093] = 2 +id[3094] = "2490-09-09T08:09:02" +ik[3094] = 0 +il[3094] = 13 +im[3094] = 0.2247 +ij[3094] = 1 +id[3095] = "2490-12-25T16:33:03" +ik[3095] = 0 +il[3095] = -179 +im[3095] = 0.0697 +ij[3095] = 1 +id[3096] = "2490-12-25T23:57:03" +ik[3096] = 1 +il[3096] = 179 +im[3096] = 0.0558 +ij[3096] = 2 +id[3097] = "2491-04-15T12:57:01" +ik[3097] = 0 +il[3097] = -27 +im[3097] = 0.2504 +ij[3097] = 1 +id[3098] = "2491-04-18T18:11:01" +ik[3098] = 1 +il[3098] = -50 +im[3098] = 0.2424 +ij[3098] = 2 +id[3099] = "2491-08-19T09:19:02" +ik[3099] = -1 +il[3099] = 47 +im[3099] = 0.0613 +ij[3099] = 2 +id[3100] = "2491-08-22T17:59:02" +ik[3100] = 0 +il[3100] = 24 +im[3100] = 0.1408 +ij[3100] = 1 +id[3101] = "2491-12-09T20:35:03" +ik[3101] = -1 +il[3101] = -177 +im[3101] = 0.2063 +ij[3101] = 2 +id[3102] = "2491-12-10T00:42:03" +ik[3102] = 0 +il[3102] = 180 +im[3102] = 0.2039 +ij[3102] = 1 +id[3103] = "2492-03-27T13:25:01" +ik[3103] = 0 +il[3103] = -16 +im[3103] = 0.0591 +ij[3103] = 1 +id[3104] = "2492-03-30T17:57:01" +ik[3104] = 1 +il[3104] = -38 +im[3104] = 0.133 +ij[3104] = 2 +id[3105] = "2492-07-31T03:47:02" +ik[3105] = -1 +il[3105] = 60 +im[3105] = 0.2363 +ij[3105] = 2 +id[3106] = "2492-08-03T07:54:02" +ik[3106] = 0 +il[3106] = 38 +im[3106] = 0.2368 +ij[3106] = 1 +id[3107] = "2492-11-22T16:45:03" +ik[3107] = -1 +il[3107] = -173 +im[3107] = 0.1006 +ij[3107] = 2 +id[3108] = "2492-11-23T08:37:03" +ik[3108] = 0 +il[3108] = 180 +im[3108] = 0.1309 +ij[3108] = 1 +id[3109] = "2493-03-10T06:28:01" +ik[3109] = 0 +il[3109] = -7 +im[3109] = 0.2297 +ij[3109] = 1 +id[3110] = "2493-03-13T01:38:01" +ik[3110] = 1 +il[3110] = -28 +im[3110] = 0.2121 +ij[3110] = 2 +id[3111] = "2493-07-12T16:59:02" +ik[3111] = -1 +il[3111] = 73 +im[3111] = 0.0881 +ij[3111] = 2 +id[3112] = "2493-07-15T00:42:02" +ik[3112] = 0 +il[3112] = 57 +im[3112] = 0.0617 +ij[3112] = 1 +id[3113] = "2493-11-06T10:31:03" +ik[3113] = -1 +il[3113] = -169 +im[3113] = 0.1375 +ij[3113] = 2 +id[3114] = "2493-11-07T14:37:03" +ik[3114] = 0 +il[3114] = -180 +im[3114] = 0.0836 +ij[3114] = 1 +id[3115] = "2494-02-21T12:57:01" +ik[3115] = 0 +il[3115] = -2 +im[3115] = 0.0454 +ij[3115] = 1 +id[3116] = "2494-02-23T18:55:01" +ik[3116] = 1 +il[3116] = -19 +im[3116] = 0.1578 +ij[3116] = 2 +id[3117] = "2494-06-24T04:31:02" +ik[3117] = -1 +il[3117] = 86 +im[3117] = 0.2183 +ij[3117] = 2 +id[3118] = "2494-06-25T01:11:02" +ik[3118] = 0 +il[3118] = 80 +im[3118] = 0.2424 +ij[3118] = 1 +id[3119] = "2494-10-20T22:59:03" +ik[3119] = -1 +il[3119] = -165 +im[3119] = 0.2107 +ij[3119] = 2 +id[3120] = "2494-10-22T16:04:03" +ik[3120] = 0 +il[3120] = -178 +im[3120] = 0.2153 +ij[3120] = 1 +id[3121] = "2495-02-05T05:16:01" +ik[3121] = 0 +il[3121] = 0 +im[3121] = 0.1885 +ij[3121] = 1 +id[3122] = "2495-02-06T21:19:01" +ik[3122] = 1 +il[3122] = -12 +im[3122] = 0.126 +ij[3122] = 2 +id[3123] = "2495-06-04T21:35:02" +ik[3123] = 0 +il[3123] = 104 +im[3123] = 0.1738 +ij[3123] = 1 +id[3124] = "2495-06-05T16:16:02" +ik[3124] = 1 +il[3124] = 99 +im[3124] = 0.135 +ij[3124] = 2 +id[3125] = "2495-10-04T04:16:03" +ik[3125] = -1 +il[3125] = -159 +im[3125] = 0.04 +ij[3125] = 2 +id[3126] = "2495-10-06T10:47:03" +ik[3126] = 0 +il[3126] = -176 +im[3126] = 0.0873 +ij[3126] = 1 +id[3127] = "2496-01-20T05:01:01" +ik[3127] = 0 +il[3127] = 1 +im[3127] = 0.1687 +ij[3127] = 1 +id[3128] = "2496-01-21T07:52:01" +ik[3128] = 1 +il[3128] = -7 +im[3128] = 0.2015 +ij[3128] = 2 +id[3129] = "2496-05-15T01:54:02" +ik[3129] = 0 +il[3129] = 126 +im[3129] = 0.0966 +ij[3129] = 1 +id[3130] = "2496-05-17T05:57:02" +ik[3130] = 1 +il[3130] = 111 +im[3130] = 0.2081 +ij[3130] = 2 +id[3131] = "2496-09-15T23:57:03" +ik[3131] = -1 +il[3131] = -150 +im[3131] = 0.2395 +ij[3131] = 2 +id[3132] = "2496-09-18T19:40:03" +ik[3132] = 0 +il[3132] = -171 +im[3132] = 0.1707 +ij[3132] = 1 +id[3133] = "2497-01-03T09:49:01" +ik[3133] = 0 +il[3133] = 1 +im[3133] = 0.0205 +ij[3133] = 1 +id[3134] = "2497-01-03T23:57:01" +ik[3134] = 1 +il[3134] = -3 +im[3134] = 0.0131 +ij[3134] = 2 +id[3135] = "2497-04-25T21:35:02" +ik[3135] = 0 +il[3135] = 144 +im[3135] = 0.2617 +ij[3135] = 1 +id[3136] = "2497-04-28T21:47:02" +ik[3136] = 1 +il[3136] = 123 +im[3136] = 0.1703 +ij[3136] = 2 +id[3137] = "2497-08-29T09:19:03" +ik[3137] = -1 +il[3137] = -140 +im[3137] = 0.0351 +ij[3137] = 2 +id[3138] = "2497-09-01T15:21:03" +ik[3138] = 0 +il[3138] = -163 +im[3138] = 0.1966 +ij[3138] = 1 +id[3139] = "2497-12-18T17:16:01" +ik[3139] = 0 +il[3139] = 1 +im[3139] = 0.1957 +ij[3139] = 1 +id[3140] = "2497-12-18T19:38:01" +ik[3140] = 1 +il[3140] = 1 +im[3140] = 0.1937 +ij[3140] = 2 +id[3141] = "2498-04-07T11:59:02" +ik[3141] = 0 +il[3141] = 158 +im[3141] = 0.0302 +ij[3141] = 1 +id[3142] = "2498-04-10T17:57:02" +ik[3142] = 1 +il[3142] = 135 +im[3142] = 0.2037 +ij[3142] = 2 +id[3143] = "2498-08-11T08:50:03" +ik[3143] = -1 +il[3143] = -128 +im[3143] = 0.2575 +ij[3143] = 2 +id[3144] = "2498-08-14T17:16:03" +ik[3144] = 0 +il[3144] = -151 +im[3144] = 0.163 +ij[3144] = 1 +id[3145] = "2498-12-02T16:31:01" +ik[3145] = -1 +il[3145] = 5 +im[3145] = 0.1388 +ij[3145] = 2 +id[3146] = "2498-12-03T01:40:01" +ik[3146] = 0 +il[3146] = 0 +im[3146] = 0.1536 +ij[3146] = 1 +id[3147] = "2499-03-20T19:40:02" +ik[3147] = 0 +il[3147] = 168 +im[3147] = 0.2459 +ij[3147] = 1 +id[3148] = "2499-03-23T20:50:02" +ik[3148] = 1 +il[3148] = 147 +im[3148] = 0.1641 +ij[3148] = 2 +id[3149] = "2499-07-24T00:26:03" +ik[3149] = -1 +il[3149] = -114 +im[3149] = 0.0375 +ij[3149] = 2 +id[3150] = "2499-07-26T22:04:03" +ik[3150] = 0 +il[3150] = -134 +im[3150] = 0.1956 +ij[3150] = 1 +id[3151] = "2499-11-16T11:57:01" +ik[3151] = -1 +il[3151] = 9 +im[3151] = 0.0796 +ij[3151] = 2 +id[3152] = "2499-11-17T08:52:01" +ik[3152] = 0 +il[3152] = 0 +im[3152] = 0.0369 +ij[3152] = 1 +id[3153] = "2500-03-03T18:42:02" +ik[3153] = 0 +il[3153] = 175 +im[3153] = 0.1099 +ij[3153] = 1 +id[3154] = "2500-03-06T08:35:02" +ik[3154] = 1 +il[3154] = 156 +im[3154] = 0.2166 +ij[3154] = 2 +id[3155] = "2500-07-05T12:26:03" +ik[3155] = -1 +il[3155] = -101 +im[3155] = 0.2638 +ij[3155] = 2 +id[3156] = "2500-07-07T06:42:03" +ik[3156] = 0 +il[3156] = -113 +im[3156] = 0.2489 +ij[3156] = 1 +id[3157] = "2500-10-31T03:33:01" +ik[3157] = -1 +il[3157] = 13 +im[3157] = 0.2118 +ij[3157] = 2 +id[3158] = "2500-11-01T13:11:01" +ik[3158] = 0 +il[3158] = 0 +im[3158] = 0.202 +ij[3158] = 1 +id[3159] = "2501-02-15T05:45:02" +ik[3159] = 0 +il[3159] = 179 +im[3159] = 0.1769 +ij[3159] = 1 +id[3160] = "2501-02-17T05:57:02" +ik[3160] = 1 +il[3160] = 164 +im[3160] = 0.0835 +ij[3160] = 2 +id[3161] = "2501-06-16T23:57:03" +ik[3161] = -1 +il[3161] = -89 +im[3161] = 0.0075 +ij[3161] = 2 +id[3162] = "2501-06-17T03:49:03" +ik[3162] = 0 +il[3162] = -90 +im[3162] = 0.0082 +ij[3162] = 1 +id[3163] = "2501-10-14T13:23:01" +ik[3163] = -1 +il[3163] = 17 +im[3163] = 0.0417 +ij[3163] = 2 +id[3164] = "2501-10-16T11:59:01" +ik[3164] = 0 +il[3164] = 3 +im[3164] = 0.1295 +ij[3164] = 1 +id[3165] = "2502-01-30T01:40:02" +ik[3165] = 0 +il[3165] = -179 +im[3165] = 0.2038 +ij[3165] = 1 +id[3166] = "2502-01-31T11:57:02" +ik[3166] = 1 +il[3166] = 170 +im[3166] = 0.2288 +ij[3166] = 2 +id[3167] = "2502-05-28T02:09:03" +ik[3167] = 0 +il[3167] = -66 +im[3167] = 0.2186 +ij[3167] = 1 +id[3168] = "2502-05-29T12:26:03" +ik[3168] = 1 +il[3168] = -76 +im[3168] = 0.2535 +ij[3168] = 2 +id[3169] = "2502-09-27T14:50:01" +ik[3169] = -1 +il[3169] = 24 +im[3169] = 0.2033 +ij[3169] = 2 +id[3170] = "2502-09-30T03:06:01" +ik[3170] = 0 +il[3170] = 6 +im[3170] = 0.1081 +ij[3170] = 1 +id[3171] = "2503-01-14T03:49:02" +ik[3171] = 0 +il[3171] = -179 +im[3171] = 0.0208 +ij[3171] = 1 +id[3172] = "2503-01-15T01:09:02" +ik[3172] = 1 +il[3172] = 175 +im[3172] = 0.0683 +ij[3172] = 2 +id[3173] = "2503-05-08T12:28:03" +ik[3173] = 0 +il[3173] = -46 +im[3173] = 0.1874 +ij[3173] = 1 +id[3174] = "2503-05-11T03:04:03" +ik[3174] = 1 +il[3174] = -64 +im[3174] = 0.0545 +ij[3174] = 2 +id[3175] = "2503-09-10T06:11:01" +ik[3175] = -1 +il[3175] = 34 +im[3175] = 0.1139 +ij[3175] = 2 +id[3176] = "2503-09-13T06:42:01" +ik[3176] = 0 +il[3176] = 12 +im[3176] = 0.2156 +ij[3176] = 1 +id[3177] = "2503-12-29T10:04:02" +ik[3177] = 0 +il[3177] = -179 +im[3177] = 0.1931 +ij[3177] = 1 +id[3178] = "2503-12-29T19:09:02" +ik[3178] = 1 +il[3178] = 179 +im[3178] = 0.183 +ij[3178] = 2 +id[3179] = "2504-04-18T16:04:03" +ik[3179] = 0 +il[3179] = -29 +im[3179] = 0.1269 +ij[3179] = 1 +id[3180] = "2504-04-21T20:21:03" +ik[3180] = 1 +il[3180] = -51 +im[3180] = 0.2417 +ij[3180] = 2 +id[3181] = "2504-08-22T10:59:01" +ik[3181] = -1 +il[3181] = 45 +im[3181] = 0.214 +ij[3181] = 2 +id[3182] = "2504-08-25T19:25:01" +ik[3182] = 0 +il[3182] = 22 +im[3182] = 0.0687 +ij[3182] = 1 +id[3183] = "2504-12-12T15:33:02" +ik[3183] = -1 +il[3183] = -177 +im[3183] = 0.1814 +ij[3183] = 2 +id[3184] = "2504-12-12T17:59:02" +ik[3184] = 0 +il[3184] = 180 +im[3184] = 0.1845 +ij[3184] = 1 +id[3185] = "2505-03-31T14:09:03" +ik[3185] = 0 +il[3185] = -17 +im[3185] = 0.2208 +ij[3185] = 1 +id[3186] = "2505-04-03T19:09:03" +ik[3186] = 1 +il[3186] = -40 +im[3186] = 0.0824 +ij[3186] = 2 +id[3187] = "2505-08-04T06:55:01" +ik[3187] = -1 +il[3187] = 58 +im[3187] = 0.1441 +ij[3187] = 2 +id[3188] = "2505-08-07T12:28:01" +ik[3188] = 0 +il[3188] = 36 +im[3188] = 0.2453 +ij[3188] = 1 +id[3189] = "2505-11-26T11:57:02" +ik[3189] = -1 +il[3189] = -173 +im[3189] = 0.0274 +ij[3189] = 2 +id[3190] = "2505-11-27T02:09:02" +ik[3190] = 0 +il[3190] = 180 +im[3190] = 0.0066 +ij[3190] = 1 +id[3191] = "2506-03-14T04:47:03" +ik[3191] = 0 +il[3191] = -8 +im[3191] = 0.1613 +ij[3191] = 1 +id[3192] = "2506-03-17T01:38:03" +ik[3192] = 1 +il[3192] = -29 +im[3192] = 0.2386 +ij[3192] = 2 +id[3193] = "2506-07-16T20:35:01" +ik[3193] = -1 +il[3193] = 71 +im[3193] = 0.249 +ij[3193] = 2 +id[3194] = "2506-07-19T08:23:01" +ik[3194] = 0 +il[3194] = 54 +im[3194] = 0.1516 +ij[3194] = 1 +id[3195] = "2506-11-10T06:11:02" +ik[3195] = -1 +il[3195] = -169 +im[3195] = 0.2123 +ij[3195] = 2 +id[3196] = "2506-11-11T08:23:02" +ik[3196] = 0 +il[3196] = -180 +im[3196] = 0.1969 +ij[3196] = 1 +id[3197] = "2507-02-25T09:21:03" +ik[3197] = 0 +il[3197] = -3 +im[3197] = 0.1537 +ij[3197] = 1 +id[3198] = "2507-02-27T17:28:03" +ik[3198] = 1 +il[3198] = -20 +im[3198] = 0.0406 +ij[3198] = 2 +id[3199] = "2507-06-28T07:52:01" +ik[3199] = -1 +il[3199] = 84 +im[3199] = 0.1256 +ij[3199] = 2 +id[3200] = "2507-06-29T10:33:01" +ik[3200] = 0 +il[3200] = 77 +im[3200] = 0.1832 +ij[3200] = 1 +id[3201] = "2507-10-24T19:38:02" +ik[3201] = -1 +il[3201] = -165 +im[3201] = 0.0993 +ij[3201] = 2 +id[3202] = "2507-10-26T10:47:02" +ik[3202] = 0 +il[3202] = -179 +im[3202] = 0.1678 +ij[3202] = 1 +id[3203] = "2508-02-09T00:28:03" +ik[3203] = 0 +il[3203] = 0 +im[3203] = 0.2281 +ij[3203] = 1 +id[3204] = "2508-02-10T18:40:03" +ik[3204] = 1 +il[3204] = -13 +im[3204] = 0.233 +ij[3204] = 2 +id[3205] = "2508-06-08T06:42:01" +ik[3205] = 0 +il[3205] = 100 +im[3205] = 0.2662 +ij[3205] = 1 +id[3206] = "2508-06-08T19:52:01" +ik[3206] = 1 +il[3206] = 97 +im[3206] = 0.26 +ij[3206] = 2 +id[3207] = "2508-10-07T02:07:02" +ik[3207] = -1 +il[3207] = -160 +im[3207] = 0.1529 +ij[3207] = 2 +id[3208] = "2508-10-09T06:42:02" +ik[3208] = 0 +il[3208] = -176 +im[3208] = 0.0462 +ij[3208] = 1 +id[3209] = "2509-01-22T23:16:03" +ik[3209] = 0 +il[3209] = 1 +im[3209] = 0.0512 +ij[3209] = 1 +id[3210] = "2509-01-24T04:02:03" +ik[3210] = 1 +il[3210] = -8 +im[3210] = 0.1131 +ij[3210] = 2 +id[3211] = "2509-05-19T09:06:01" +ik[3211] = 0 +il[3211] = 123 +im[3211] = 0.0467 +ij[3211] = 1 +id[3212] = "2509-05-21T09:04:01" +ik[3212] = 1 +il[3212] = 109 +im[3212] = 0.0871 +ij[3212] = 2 +id[3213] = "2509-09-19T23:28:02" +ik[3213] = -1 +il[3213] = -152 +im[3213] = 0.1669 +ij[3213] = 2 +id[3214] = "2509-09-22T17:16:02" +ik[3214] = 0 +il[3214] = -172 +im[3214] = 0.2214 +ij[3214] = 1 +id[3215] = "2510-01-07T03:21:03" +ik[3215] = 0 +il[3215] = 1 +im[3215] = 0.1907 +ij[3215] = 1 +id[3216] = "2510-01-07T19:23:03" +ik[3216] = 1 +il[3216] = -4 +im[3216] = 0.1688 +ij[3216] = 2 +id[3217] = "2510-04-30T02:23:01" +ik[3217] = 0 +il[3217] = 142 +im[3217] = 0.2116 +ij[3217] = 1 +id[3218] = "2510-05-03T00:40:01" +ik[3218] = 1 +il[3218] = 121 +im[3218] = 0.2462 +ij[3218] = 2 +id[3219] = "2510-09-02T10:30:02" +ik[3219] = -1 +il[3219] = -142 +im[3219] = 0.1277 +ij[3219] = 2 +id[3220] = "2510-09-05T15:06:02" +ik[3220] = 0 +il[3220] = -164 +im[3220] = 0.0464 +ij[3220] = 1 +id[3221] = "2510-12-22T10:33:03" +ik[3221] = 0 +il[3221] = 1 +im[3221] = 0.2084 +ij[3221] = 1 +id[3222] = "2510-12-22T14:50:03" +ik[3222] = 1 +il[3222] = 0 +im[3222] = 0.2122 +ij[3222] = 2 +id[3223] = "2511-04-11T13:54:01" +ik[3223] = 0 +il[3223] = 156 +im[3223] = 0.1394 +ij[3223] = 1 +id[3224] = "2511-04-14T19:52:01" +ik[3224] = 1 +il[3224] = 134 +im[3224] = 0.0423 +ij[3224] = 2 +id[3225] = "2511-08-15T10:59:02" +ik[3225] = -1 +il[3225] = -129 +im[3225] = 0.2006 +ij[3225] = 2 +id[3226] = "2511-08-18T19:54:02" +ik[3226] = 0 +il[3226] = -153 +im[3226] = 0.2259 +ij[3226] = 1 +id[3227] = "2511-12-06T11:28:03" +ik[3227] = -1 +il[3227] = 4 +im[3227] = 0.0202 +ij[3227] = 2 +id[3228] = "2511-12-06T18:57:03" +ik[3228] = 0 +il[3228] = 0 +im[3228] = 0.0338 +ij[3228] = 1 +id[3229] = "2512-03-23T19:11:01" +ik[3229] = 0 +il[3229] = 167 +im[3229] = 0.2018 +ij[3229] = 1 +id[3230] = "2512-03-26T21:47:01" +ik[3230] = 1 +il[3230] = 145 +im[3230] = 0.227 +ij[3230] = 2 +id[3231] = "2512-07-27T03:47:02" +ik[3231] = -1 +il[3231] = -116 +im[3231] = 0.1689 +ij[3231] = 2 +id[3232] = "2512-07-30T04:04:02" +ik[3232] = 0 +il[3232] = -137 +im[3232] = 0.016 +ij[3232] = 1 +id[3233] = "2512-11-19T07:09:03" +ik[3233] = -1 +il[3233] = 8 +im[3233] = 0.2105 +ij[3233] = 2 +id[3234] = "2512-11-20T02:23:03" +ik[3234] = 0 +il[3234] = 0 +im[3234] = 0.1926 +ij[3234] = 1 +id[3235] = "2513-03-06T16:18:01" +ik[3235] = 0 +il[3235] = 174 +im[3235] = 0.1014 +ij[3235] = 1 +id[3236] = "2513-03-09T08:06:01" +ik[3236] = 1 +il[3236] = 155 +im[3236] = 0.0498 +ij[3236] = 2 +id[3237] = "2513-07-08T16:02:02" +ik[3237] = -1 +il[3237] = -103 +im[3237] = 0.2108 +ij[3237] = 2 +id[3238] = "2513-11-02T23:42:03" +ik[3238] = 1 +il[3238] = 12 +im[3238] = 0.1592 +ij[3238] = 2 +id[3239] = "2513-07-10T15:21:02" +ik[3239] = 0 +il[3239] = -117 +im[3239] = 0.2606 +ij[3239] = 1 +id[3240] = "2513-11-04T07:11:03" +ik[3240] = 0 +il[3240] = 0 +im[3240] = 0.2019 +ij[3240] = 1 +id[3241] = "2514-02-18T01:40:01" +ik[3241] = 0 +il[3241] = 179 +im[3241] = 0.2319 +ij[3241] = 1 +id[3242] = "2514-02-20T03:47:01" +ik[3242] = 1 +il[3242] = 163 +im[3242] = 0.2045 +ij[3242] = 2 +id[3243] = "2514-06-20T03:33:02" +ik[3243] = -1 +il[3243] = -90 +im[3243] = 0.2126 +ij[3243] = 2 +id[3244] = "2514-06-20T13:11:02" +ik[3244] = 0 +il[3244] = -93 +im[3244] = 0.1948 +ij[3244] = 1 +id[3245] = "2514-10-17T10:30:03" +ik[3245] = -1 +il[3245] = 16 +im[3245] = 0.1063 +ij[3245] = 2 +id[3246] = "2514-10-19T07:11:03" +ik[3246] = 0 +il[3246] = 2 +im[3246] = 0.0069 +ij[3246] = 1 +id[3247] = "2515-02-01T20:23:01" +ik[3247] = 0 +il[3247] = -179 +im[3247] = 0.0683 +ij[3247] = 1 +id[3248] = "2515-02-03T08:50:01" +ik[3248] = 1 +il[3248] = 169 +im[3248] = 0.1455 +ij[3248] = 2 +id[3249] = "2515-05-31T10:47:02" +ik[3249] = 0 +il[3249] = -70 +im[3249] = 0.1315 +ij[3249] = 1 +id[3250] = "2515-06-01T15:47:02" +ik[3250] = 1 +il[3250] = -78 +im[3250] = 0.1948 +ij[3250] = 2 +id[3251] = "2515-09-30T13:23:03" +ik[3251] = -1 +il[3251] = 23 +im[3251] = 0.2113 +ij[3251] = 2 +id[3252] = "2515-10-02T23:30:03" +ik[3252] = 0 +il[3252] = 6 +im[3252] = 0.2214 +ij[3252] = 1 +id[3253] = "2516-01-16T21:49:01" +ik[3253] = 0 +il[3253] = -179 +im[3253] = 0.1716 +ij[3253] = 1 +id[3254] = "2516-01-17T21:04:01" +ik[3254] = 1 +il[3254] = 174 +im[3254] = 0.1318 +ij[3254] = 2 +id[3255] = "2516-05-10T18:57:02" +ik[3255] = 0 +il[3255] = -49 +im[3255] = 0.2601 +ij[3255] = 1 +id[3256] = "2516-05-13T05:57:02" +ik[3256] = 1 +il[3256] = -66 +im[3256] = 0.2143 +ij[3256] = 2 +id[3257] = "2516-09-12T06:11:03" +ik[3257] = -1 +il[3257] = 32 +im[3257] = 0.0258 +ij[3257] = 2 +id[3258] = "2516-09-15T05:16:03" +ik[3258] = 0 +il[3258] = 11 +im[3258] = 0.1317 +ij[3258] = 1 +id[3259] = "2516-12-31T03:35:01" +ik[3259] = 0 +il[3259] = -179 +im[3259] = 0.2189 +ij[3259] = 1 +id[3260] = "2516-12-31T14:21:01" +ik[3260] = 1 +il[3260] = 178 +im[3260] = 0.2233 +ij[3260] = 2 +id[3261] = "2517-04-21T19:40:02" +ik[3261] = 0 +il[3261] = -32 +im[3261] = 0.0221 +ij[3261] = 1 +id[3262] = "2517-04-24T22:45:02" +ik[3262] = 1 +il[3262] = -53 +im[3262] = 0.1601 +ij[3262] = 2 +id[3263] = "2517-08-25T12:40:03" +ik[3263] = -1 +il[3263] = 43 +im[3263] = 0.2293 +ij[3263] = 2 +id[3264] = "2517-08-28T20:23:03" +ik[3264] = 0 +il[3264] = 20 +im[3264] = 0.1756 +ij[3264] = 1 +id[3265] = "2517-12-15T10:30:01" +ik[3265] = -1 +il[3265] = -178 +im[3265] = 0.0436 +ij[3265] = 2 +id[3266] = "2517-12-15T11:30:01" +ik[3266] = 0 +il[3266] = 180 +im[3266] = 0.0459 +ij[3266] = 1 +id[3267] = "2518-04-03T14:52:02" +ik[3267] = 0 +il[3267] = -19 +im[3267] = 0.2308 +ij[3267] = 1 +id[3268] = "2518-04-06T20:35:02" +ik[3268] = 1 +il[3268] = -41 +im[3268] = 0.1904 +ij[3268] = 2 +id[3269] = "2518-08-07T09:33:03" +ik[3269] = -1 +il[3269] = 56 +im[3269] = 0.0466 +ij[3269] = 2 +id[3270] = "2518-08-10T16:33:03" +ik[3270] = 0 +il[3270] = 33 +im[3270] = 0.1367 +ij[3270] = 1 +id[3271] = "2518-11-29T07:09:01" +ik[3271] = -1 +il[3271] = -174 +im[3271] = 0.1963 +ij[3271] = 2 +id[3272] = "2518-11-29T19:40:01" +ik[3272] = 0 +il[3272] = 180 +im[3272] = 0.1801 +ij[3272] = 1 +id[3273] = "2519-03-17T03:21:02" +ik[3273] = 0 +il[3273] = -9 +im[3273] = 0.0287 +ij[3273] = 1 +id[3274] = "2519-03-20T01:52:02" +ik[3274] = 1 +il[3274] = -30 +im[3274] = 0.1375 +ij[3274] = 2 +id[3275] = "2519-07-19T23:57:03" +ik[3275] = -1 +il[3275] = 69 +im[3275] = 0.2473 +ij[3275] = 2 +id[3276] = "2519-07-22T15:35:03" +ik[3276] = 0 +il[3276] = 51 +im[3276] = 0.2239 +ij[3276] = 1 +id[3277] = "2519-11-13T01:52:01" +ik[3277] = -1 +il[3277] = -170 +im[3277] = 0.1948 +ij[3277] = 2 +id[3278] = "2519-11-14T02:09:01" +ik[3278] = 0 +il[3278] = -180 +im[3278] = 0.2171 +ij[3278] = 1 +id[3279] = "2520-02-28T05:59:02" +ik[3279] = 0 +il[3279] = -4 +im[3279] = 0.2179 +ij[3279] = 1 +id[3280] = "2520-03-01T16:02:02" +ik[3280] = 1 +il[3280] = -21 +im[3280] = 0.1483 +ij[3280] = 2 +id[3281] = "2520-06-30T11:28:03" +ik[3281] = -1 +il[3281] = 82 +im[3281] = 0.1058 +ij[3281] = 2 +id[3282] = "2520-07-01T19:54:03" +ik[3282] = 0 +il[3282] = 73 +im[3282] = 0.0234 +ij[3282] = 1 +id[3283] = "2520-10-26T16:16:01" +ik[3283] = -1 +il[3283] = -166 +im[3283] = 0.0681 +ij[3283] = 2 +id[3284] = "2520-10-28T05:16:01" +ik[3284] = 0 +il[3284] = -179 +im[3284] = 0.0334 +ij[3284] = 1 +id[3285] = "2521-02-10T19:40:02" +ik[3285] = 0 +il[3285] = 0 +im[3285] = 0.1005 +ij[3285] = 1 +id[3286] = "2521-02-12T16:02:02" +ik[3286] = 1 +il[3286] = -14 +im[3286] = 0.1795 +ij[3286] = 2 +id[3287] = "2521-06-11T15:49:03" +ik[3287] = 0 +il[3287] = 97 +im[3287] = 0.2522 +ij[3287] = 1 +id[3288] = "2521-06-11T23:14:03" +ik[3288] = 1 +il[3288] = 95 +im[3288] = 0.2593 +ij[3288] = 2 +id[3289] = "2521-10-09T23:42:01" +ik[3289] = -1 +il[3289] = -161 +im[3289] = 0.2339 +ij[3289] = 2 +id[3290] = "2521-10-12T02:23:01" +ik[3290] = 0 +il[3290] = -177 +im[3290] = 0.2091 +ij[3290] = 1 +id[3291] = "2522-01-25T17:45:02" +ik[3291] = 0 +il[3291] = 1 +im[3291] = 0.1355 +ij[3291] = 1 +id[3292] = "2522-01-26T00:11:02" +ik[3292] = 1 +il[3292] = -1 +im[3292] = 0.1238 +ij[3292] = 2 +id[3293] = "2522-05-22T16:47:03" +ik[3293] = 0 +il[3293] = 120 +im[3293] = 0.225 +ij[3293] = 1 +id[3294] = "2522-05-24T12:11:03" +ik[3294] = 1 +il[3294] = 107 +im[3294] = 0.1383 +ij[3294] = 2 +id[3295] = "2522-09-22T22:45:01" +ik[3295] = -1 +il[3295] = -153 +im[3295] = 0.07 +ij[3295] = 2 +id[3296] = "2522-09-25T14:37:01" +ik[3296] = 0 +il[3296] = -172 +im[3296] = 0.1879 +ij[3296] = 1 +id[3297] = "2523-01-09T21:06:02" +ik[3297] = 0 +il[3297] = 1 +im[3297] = 0.2162 +ij[3297] = 1 +id[3298] = "2523-01-10T15:04:02" +ik[3298] = 1 +il[3298] = 3 +im[3298] = 0.2159 +ij[3298] = 2 +id[3299] = "2523-05-03T07:40:03" +ik[3299] = 0 +il[3299] = 139 +im[3299] = 0.121 +ij[3299] = 1 +id[3300] = "2523-05-06T03:18:03" +ik[3300] = 1 +il[3300] = 120 +im[3300] = 0.2449 +ij[3300] = 2 +id[3301] = "2523-09-05T11:14:01" +ik[3301] = -1 +il[3301] = -143 +im[3301] = 0.2291 +ij[3301] = 2 +id[3302] = "2523-09-08T14:37:01" +ik[3302] = 0 +il[3302] = -165 +im[3302] = 0.1241 +ij[3302] = 1 +id[3303] = "2523-12-25T04:04:02" +ik[3303] = 0 +il[3303] = 1 +im[3303] = 0.0613 +ij[3303] = 1 +id[3304] = "2523-12-25T09:47:02" +ik[3304] = 1 +il[3304] = 7 +im[3304] = 0.0738 +ij[3304] = 2 +id[3305] = "2524-04-13T16:18:03" +ik[3305] = 0 +il[3305] = 154 +im[3305] = 0.2407 +ij[3305] = 1 +id[3306] = "2524-04-16T22:02:03" +ik[3306] = 1 +il[3306] = 132 +im[3306] = 0.1294 +ij[3306] = 2 +id[3307] = "2524-08-17T13:23:01" +ik[3307] = -1 +il[3307] = -131 +im[3307] = 0.0893 +ij[3307] = 2 +id[3308] = "2524-08-20T22:04:01" +ik[3308] = 0 +il[3308] = -155 +im[3308] = 0.222 +ij[3308] = 1 +id[3309] = "2524-12-08T06:26:02" +ik[3309] = -1 +il[3309] = 11 +im[3309] = 0.1605 +ij[3309] = 2 +id[3310] = "2524-12-08T12:13:02" +ik[3310] = 0 +il[3310] = 0 +im[3310] = 0.1511 +ij[3310] = 1 +id[3311] = "2525-03-26T19:11:03" +ik[3311] = 0 +il[3311] = 166 +im[3311] = 0.079 +ij[3311] = 1 +id[3312] = "2525-03-29T22:30:03" +ik[3312] = 1 +il[3312] = 144 +im[3312] = 0.2161 +ij[3312] = 2 +id[3313] = "2525-07-30T06:54:01" +ik[3313] = -1 +il[3313] = -118 +im[3313] = 0.2369 +ij[3313] = 2 +id[3314] = "2525-08-02T09:21:01" +ik[3314] = 0 +il[3314] = -140 +im[3314] = 0.1278 +ij[3314] = 1 +id[3315] = "2525-11-22T02:35:02" +ik[3315] = -1 +il[3315] = 15 +im[3315] = 0.2078 +ij[3315] = 2 +id[3316] = "2525-11-22T19:54:02" +ik[3316] = 0 +il[3316] = 0 +im[3316] = 0.2164 +ij[3316] = 1 +id[3317] = "2526-03-09T13:54:03" +ik[3317] = 0 +il[3317] = 173 +im[3317] = 0.199 +ij[3317] = 1 +id[3318] = "2526-03-12T07:38:03" +ik[3318] = 1 +il[3318] = 154 +im[3318] = 0.0861 +ij[3318] = 2 +id[3319] = "2526-07-11T19:38:01" +ik[3319] = -1 +il[3319] = -105 +im[3319] = 0.0521 +ij[3319] = 2 +id[3320] = "2526-07-13T23:45:01" +ik[3320] = 0 +il[3320] = -120 +im[3320] = 0.1529 +ij[3320] = 1 +id[3321] = "2526-11-05T19:38:02" +ik[3321] = -1 +il[3321] = 19 +im[3321] = 0.0241 +ij[3321] = 2 +id[3322] = "2526-11-07T01:25:02" +ik[3322] = 0 +il[3322] = 0 +im[3322] = 0.0483 +ij[3322] = 1 +id[3323] = "2527-02-20T21:49:03" +ik[3323] = 0 +il[3323] = 178 +im[3323] = 0.1402 +ij[3323] = 1 +id[3324] = "2527-02-23T02:06:03" +ik[3324] = 1 +il[3324] = 162 +im[3324] = 0.2111 +ij[3324] = 2 +id[3325] = "2527-06-23T07:09:01" +ik[3325] = -1 +il[3325] = -92 +im[3325] = 0.26 +ij[3325] = 2 +id[3326] = "2527-06-23T22:47:01" +ik[3326] = 0 +il[3326] = -97 +im[3326] = 0.2514 +ij[3326] = 1 +id[3327] = "2527-10-20T07:23:02" +ik[3327] = -1 +il[3327] = 23 +im[3327] = 0.2255 +ij[3327] = 2 +id[3328] = "2527-10-22T02:09:02" +ik[3328] = 0 +il[3328] = 2 +im[3328] = 0.1795 +ij[3328] = 1 +id[3329] = "2528-02-04T15:21:03" +ik[3329] = 0 +il[3329] = -180 +im[3329] = 0.0904 +ij[3329] = 1 +id[3330] = "2528-02-06T05:42:03" +ik[3330] = 1 +il[3330] = 169 +im[3330] = 0.0274 +ij[3330] = 2 +id[3331] = "2528-06-02T19:25:01" +ik[3331] = 0 +il[3331] = -73 +im[3331] = 0.09 +ij[3331] = 1 +id[3332] = "2528-06-03T19:09:01" +ik[3332] = 1 +il[3332] = -80 +im[3332] = 0.0396 +ij[3332] = 2 +id[3333] = "2528-10-02T11:28:02" +ik[3333] = -1 +il[3333] = 27 +im[3333] = 0.1227 +ij[3333] = 2 +id[3334] = "2528-10-04T19:54:02" +ik[3334] = 0 +il[3334] = 5 +im[3334] = 0.209 +ij[3334] = 1 +id[3335] = "2529-01-18T15:49:03" +ik[3335] = 0 +il[3335] = -179 +im[3335] = 0.212 +ij[3335] = 1 +id[3336] = "2529-01-19T16:59:03" +ik[3336] = 1 +il[3336] = 174 +im[3336] = 0.2031 +ij[3336] = 2 +id[3337] = "2529-05-14T01:25:01" +ik[3337] = 0 +il[3337] = -52 +im[3337] = 0.2333 +ij[3337] = 1 +id[3338] = "2529-05-16T08:50:01" +ik[3338] = 1 +il[3338] = -67 +im[3338] = 0.2714 +ij[3338] = 2 +id[3339] = "2529-09-15T06:11:02" +ik[3339] = -1 +il[3339] = 31 +im[3339] = 0.1991 +ij[3339] = 2 +id[3340] = "2529-09-18T03:21:02" +ik[3340] = 0 +il[3340] = 10 +im[3340] = 0.062 +ij[3340] = 1 +id[3341] = "2530-01-02T21:06:03" +ik[3341] = 0 +il[3341] = -179 +im[3341] = 0.0861 +ij[3341] = 1 +id[3342] = "2530-01-03T09:47:03" +ik[3342] = 1 +il[3342] = 178 +im[3342] = 0.1112 +ij[3342] = 2 +id[3343] = "2530-04-24T23:30:01" +ik[3343] = 0 +il[3343] = -34 +im[3343] = 0.2049 +ij[3343] = 1 +id[3344] = "2530-04-28T01:23:01" +ik[3344] = 1 +il[3344] = -55 +im[3344] = 0.0396 +ij[3344] = 2 +id[3345] = "2530-08-28T14:06:02" +ik[3345] = -1 +il[3345] = 42 +im[3345] = 0.1767 +ij[3345] = 2 +id[3346] = "2530-08-31T20:52:02" +ik[3346] = 0 +il[3346] = 19 +im[3346] = 0.2488 +ij[3346] = 1 +id[3347] = "2530-12-18T04:47:03" +ik[3347] = 0 +il[3347] = -179 +im[3347] = 0.1153 +ij[3347] = 1 +id[3348] = "2530-12-18T05:42:03" +ik[3348] = 1 +il[3348] = -178 +im[3348] = 0.1136 +ij[3348] = 2 +id[3349] = "2531-04-06T16:04:01" +ik[3349] = 0 +il[3349] = -20 +im[3349] = 0.1714 +ij[3349] = 1 +id[3350] = "2531-04-09T22:16:01" +ik[3350] = 1 +il[3350] = -43 +im[3350] = 0.2604 +ij[3350] = 2 +id[3351] = "2531-08-10T12:11:02" +ik[3351] = -1 +il[3351] = 54 +im[3351] = 0.1921 +ij[3351] = 2 +id[3352] = "2531-08-13T20:09:02" +ik[3352] = 0 +il[3352] = 31 +im[3352] = 0.0109 +ij[3352] = 1 +id[3353] = "2531-12-02T02:21:03" +ik[3353] = -1 +il[3353] = -174 +im[3353] = 0.2083 +ij[3353] = 2 +id[3354] = "2531-12-02T12:57:03" +ik[3354] = 0 +il[3354] = 180 +im[3354] = 0.2104 +ij[3354] = 1 +id[3355] = "2532-03-19T02:09:01" +ik[3355] = 0 +il[3355] = -11 +im[3355] = 0.1677 +ij[3355] = 1 +id[3356] = "2532-03-22T02:06:01" +ik[3356] = 1 +il[3356] = -32 +im[3356] = 0.0085 +ij[3356] = 2 +id[3357] = "2532-07-22T03:18:02" +ik[3357] = -1 +il[3357] = 67 +im[3357] = 0.1523 +ij[3357] = 2 +id[3358] = "2532-07-24T22:18:02" +ik[3358] = 0 +il[3358] = 48 +im[3358] = 0.2485 +ij[3358] = 1 +id[3359] = "2532-11-14T21:18:03" +ik[3359] = -1 +il[3359] = -170 +im[3359] = 0.0241 +ij[3359] = 2 +id[3360] = "2532-11-15T19:54:03" +ik[3360] = 0 +il[3360] = -180 +im[3360] = 0.0734 +ij[3360] = 1 +id[3361] = "2533-03-02T02:52:01" +ik[3361] = 0 +il[3361] = -4 +im[3361] = 0.1922 +ij[3361] = 1 +id[3362] = "2533-03-04T15:04:01" +ik[3362] = 1 +il[3362] = -22 +im[3362] = 0.2376 +ij[3362] = 2 +id[3363] = "2533-07-03T15:04:02" +ik[3363] = -1 +il[3363] = 80 +im[3363] = 0.2127 +ij[3363] = 2 +id[3364] = "2533-07-05T05:01:02" +ik[3364] = 0 +il[3364] = 70 +im[3364] = 0.1416 +ij[3364] = 1 +id[3365] = "2533-10-29T12:26:03" +ik[3365] = -1 +il[3365] = -166 +im[3365] = 0.1887 +ij[3365] = 2 +id[3366] = "2533-10-30T23:45:03" +ik[3366] = 0 +il[3366] = -179 +im[3366] = 0.1345 +ij[3366] = 1 +id[3367] = "2534-02-13T15:21:01" +ik[3367] = 0 +il[3367] = -1 +im[3367] = 0.0355 +ij[3367] = 1 +id[3368] = "2534-02-15T13:38:01" +ik[3368] = 1 +il[3368] = -15 +im[3368] = 0.073 +ij[3368] = 2 +id[3369] = "2534-06-15T01:25:02" +ik[3369] = 0 +il[3369] = 93 +im[3369] = 0.1009 +ij[3369] = 1 +id[3370] = "2534-06-15T02:35:02" +ik[3370] = 1 +il[3370] = 93 +im[3370] = 0.1037 +ij[3370] = 2 +id[3371] = "2534-10-12T21:18:03" +ik[3371] = -1 +il[3371] = -162 +im[3371] = 0.162 +ij[3371] = 2 +id[3372] = "2534-10-14T21:49:03" +ik[3372] = 0 +il[3372] = -177 +im[3372] = 0.2127 +ij[3372] = 1 +id[3373] = "2535-01-28T12:13:01" +ik[3373] = 0 +il[3373] = 1 +im[3373] = 0.213 +ij[3373] = 1 +id[3374] = "2535-01-29T20:35:01" +ik[3374] = 1 +il[3374] = -9 +im[3374] = 0.1907 +ij[3374] = 2 +id[3375] = "2535-05-26T00:42:02" +ik[3375] = 0 +il[3375] = 116 +im[3375] = 0.2622 +ij[3375] = 1 +id[3376] = "2535-05-27T15:18:02" +ik[3376] = 1 +il[3376] = 106 +im[3376] = 0.2347 +ij[3376] = 2 +id[3377] = "2535-09-25T21:33:03" +ik[3377] = -1 +il[3377] = -154 +im[3377] = 0.1392 +ij[3377] = 2 +id[3378] = "2535-09-28T11:30:03" +ik[3378] = 0 +il[3378] = -173 +im[3378] = 0.0052 +ij[3378] = 1 +id[3379] = "2536-01-12T14:52:01" +ik[3379] = 0 +il[3379] = 1 +im[3379] = 0.1235 +ij[3379] = 1 +id[3380] = "2536-01-13T10:30:01" +ik[3380] = 1 +il[3380] = -5 +im[3380] = 0.1573 +ij[3380] = 2 +id[3381] = "2536-05-05T13:11:02" +ik[3381] = 0 +il[3381] = 136 +im[3381] = 0.0974 +ij[3381] = 1 +id[3382] = "2536-05-08T06:11:02" +ik[3382] = 1 +il[3382] = 118 +im[3382] = 0.0743 +ij[3382] = 2 +id[3383] = "2536-09-07T11:42:03" +ik[3383] = -1 +il[3383] = -145 +im[3383] = 0.226 +ij[3383] = 2 +id[3384] = "2536-09-10T13:40:03" +ik[3384] = 0 +il[3384] = -167 +im[3384] = 0.224 +ij[3384] = 1 +id[3385] = "2536-12-26T21:21:01" +ik[3385] = 0 +il[3385] = 1 +im[3385] = 0.0775 +ij[3385] = 1 +id[3386] = "2536-12-27T04:59:01" +ik[3386] = 1 +il[3386] = -1 +im[3386] = 0.0614 +ij[3386] = 2 +id[3387] = "2537-04-16T18:57:02" +ik[3387] = 0 +il[3387] = 152 +im[3387] = 0.2415 +ij[3387] = 1 +id[3388] = "2537-04-19T00:11:02" +ik[3388] = 1 +il[3388] = 137 +im[3388] = 0.2594 +ij[3388] = 2 +id[3389] = "2537-08-20T15:18:03" +ik[3389] = -1 +il[3389] = -133 +im[3389] = 0.1127 +ij[3389] = 2 +id[3390] = "2537-08-23T23:59:03" +ik[3390] = 0 +il[3390] = -157 +im[3390] = 0.0919 +ij[3390] = 1 +id[3391] = "2537-12-11T01:38:01" +ik[3391] = -1 +il[3391] = 3 +im[3391] = 0.2096 +ij[3391] = 2 +id[3392] = "2537-12-11T05:30:01" +ik[3392] = 0 +il[3392] = 0 +im[3392] = 0.2094 +ij[3392] = 1 +id[3393] = "2538-03-29T19:11:02" +ik[3393] = 0 +il[3393] = 164 +im[3393] = 0.1169 +ij[3393] = 1 +id[3394] = "2538-04-01T23:42:02" +ik[3394] = 1 +il[3394] = 142 +im[3394] = 0.0838 +ij[3394] = 2 +id[3395] = "2538-08-02T10:02:03" +ik[3395] = -1 +il[3395] = -120 +im[3395] = 0.2406 +ij[3395] = 2 +id[3396] = "2538-08-05T14:23:03" +ik[3396] = 0 +il[3396] = -142 +im[3396] = 0.2516 +ij[3396] = 1 +id[3397] = "2538-11-24T21:47:01" +ik[3397] = -1 +il[3397] = 7 +im[3397] = 0.0801 +ij[3397] = 2 +id[3398] = "2538-11-25T13:25:01" +ik[3398] = 0 +il[3398] = 0 +im[3398] = 0.1105 +ij[3398] = 1 +id[3399] = "2539-03-12T11:59:02" +ik[3399] = 0 +il[3399] = 172 +im[3399] = 0.2357 +ij[3399] = 1 +id[3400] = "2539-03-15T07:23:02" +ik[3400] = 1 +il[3400] = 152 +im[3400] = 0.2323 +ij[3400] = 2 +id[3401] = "2539-07-14T23:14:03" +ik[3401] = -1 +il[3401] = -107 +im[3401] = 0.1299 +ij[3401] = 2 +id[3402] = "2539-07-17T07:40:03" +ik[3402] = 0 +il[3402] = -123 +im[3402] = 0.0254 +ij[3402] = 1 +id[3403] = "2539-11-08T15:33:01" +ik[3403] = -1 +il[3403] = 11 +im[3403] = 0.1451 +ij[3403] = 2 +id[3404] = "2539-11-09T19:25:01" +ik[3404] = 0 +il[3404] = 0 +im[3404] = 0.0934 +ij[3404] = 1 +id[3405] = "2540-02-23T17:59:02" +ik[3405] = 0 +il[3405] = 178 +im[3405] = 0.0285 +ij[3405] = 1 +id[3406] = "2540-02-26T00:26:02" +ik[3406] = 1 +il[3406] = 161 +im[3406] = 0.1406 +ij[3406] = 2 +id[3407] = "2540-06-25T10:30:03" +ik[3407] = -1 +il[3407] = -94 +im[3407] = 0.2135 +ij[3407] = 2 +id[3408] = "2540-06-26T08:09:03" +ik[3408] = 0 +il[3408] = -100 +im[3408] = 0.2431 +ij[3408] = 1 +id[3409] = "2540-10-22T04:16:01" +ik[3409] = -1 +il[3409] = 15 +im[3409] = 0.1855 +ij[3409] = 2 +id[3410] = "2540-10-23T21:06:01" +ik[3410] = 0 +il[3410] = 2 +im[3410] = 0.2122 +ij[3410] = 1 +id[3411] = "2541-02-06T10:18:02" +ik[3411] = 0 +il[3411] = -180 +im[3411] = 0.2152 +ij[3411] = 1 +id[3412] = "2541-02-08T02:35:02" +ik[3412] = 1 +il[3412] = 168 +im[3412] = 0.1705 +ij[3412] = 2 +id[3413] = "2541-06-06T04:33:03" +ik[3413] = 0 +il[3413] = -77 +im[3413] = 0.1889 +ij[3413] = 1 +id[3414] = "2541-06-06T22:30:03" +ik[3414] = 1 +il[3414] = -82 +im[3414] = 0.1529 +ij[3414] = 2 +id[3415] = "2541-10-05T09:33:01" +ik[3415] = -1 +il[3415] = 21 +im[3415] = 0.0686 +ij[3415] = 2 +id[3416] = "2541-10-07T15:49:01" +ik[3416] = 0 +il[3416] = 4 +im[3416] = 0.0657 +ij[3416] = 1 +id[3417] = "2542-01-21T10:04:02" +ik[3417] = 0 +il[3417] = -179 +im[3417] = 0.1682 +ij[3417] = 1 +id[3418] = "2542-01-22T12:54:02" +ik[3418] = 1 +il[3418] = 173 +im[3418] = 0.2039 +ij[3418] = 2 +id[3419] = "2542-05-17T08:23:03" +ik[3419] = 0 +il[3419] = -55 +im[3419] = 0.0599 +ij[3419] = 1 +id[3420] = "2542-05-19T11:57:03" +ik[3420] = 1 +il[3420] = -69 +im[3420] = 0.1774 +ij[3420] = 2 +id[3421] = "2542-09-18T05:42:01" +ik[3421] = -1 +il[3421] = 29 +im[3421] = 0.2292 +ij[3421] = 2 +id[3422] = "2542-09-21T01:11:01" +ik[3422] = 0 +il[3422] = 9 +im[3422] = 0.1756 +ij[3422] = 1 +id[3423] = "2543-01-05T14:37:02" +ik[3423] = 0 +il[3423] = -179 +im[3423] = 0.0543 +ij[3423] = 1 +id[3424] = "2543-01-06T04:59:02" +ik[3424] = 1 +il[3424] = 177 +im[3424] = 0.0271 +ij[3424] = 2 +id[3425] = "2543-04-28T04:04:03" +ik[3425] = 0 +il[3425] = -36 +im[3425] = 0.2535 +ij[3425] = 1 +id[3426] = "2543-05-01T04:02:03" +ik[3426] = 1 +il[3426] = -57 +im[3426] = 0.1735 +ij[3426] = 2 +id[3427] = "2543-08-31T15:18:01" +ik[3427] = -1 +il[3427] = 40 +im[3427] = 0.0431 +ij[3427] = 2 +id[3428] = "2543-09-03T21:06:01" +ik[3428] = 0 +il[3428] = 17 +im[3428] = 0.1576 +ij[3428] = 1 +id[3429] = "2543-12-20T22:04:02" +ik[3429] = 0 +il[3429] = -179 +im[3429] = 0.2142 +ij[3429] = 1 +id[3430] = "2543-12-21T00:40:02" +ik[3430] = 1 +il[3430] = -179 +im[3430] = 0.2134 +ij[3430] = 2 +id[3431] = "2544-04-08T17:45:03" +ik[3431] = 0 +il[3431] = -22 +im[3431] = 0.0355 +ij[3431] = 1 +id[3432] = "2544-04-11T23:57:03" +ik[3432] = 1 +il[3432] = -45 +im[3432] = 0.1595 +ij[3432] = 2 +id[3433] = "2544-08-12T14:50:01" +ik[3433] = -1 +il[3433] = 52 +im[3433] = 0.2566 +ij[3433] = 2 +id[3434] = "2544-08-15T23:16:01" +ik[3434] = 0 +il[3434] = 29 +im[3434] = 0.1789 +ij[3434] = 1 +id[3435] = "2544-12-03T21:18:02" +ik[3435] = -1 +il[3435] = -175 +im[3435] = 0.1337 +ij[3435] = 2 +id[3436] = "2544-12-04T06:13:02" +ik[3436] = 0 +il[3436] = 180 +im[3436] = 0.149 +ij[3436] = 1 +id[3437] = "2545-03-22T01:25:03" +ik[3437] = 0 +il[3437] = -12 +im[3437] = 0.2477 +ij[3437] = 1 +id[3438] = "2545-03-25T02:50:03" +ik[3438] = 1 +il[3438] = -34 +im[3438] = 0.1798 +ij[3438] = 2 +id[3439] = "2545-07-25T06:40:01" +ik[3439] = -1 +il[3439] = 65 +im[3439] = 0.0461 +ij[3439] = 2 +id[3440] = "2545-07-28T04:47:01" +ik[3440] = 0 +il[3440] = 45 +im[3440] = 0.1561 +ij[3440] = 1 +id[3441] = "2545-11-17T16:59:02" +ik[3441] = -1 +il[3441] = -171 +im[3441] = 0.1041 +ij[3441] = 2 +id[3442] = "2545-11-18T13:40:02" +ik[3442] = 0 +il[3442] = 180 +im[3442] = 0.0605 +ij[3442] = 1 +id[3443] = "2546-03-04T00:13:03" +ik[3443] = 0 +il[3443] = 2 +im[3443] = 0.0189 +ij[3443] = 1 +id[3444] = "2546-03-07T14:21:03" +ik[3444] = 1 +il[3444] = -24 +im[3444] = 0.1883 +ij[3444] = 2 +id[3445] = "2546-07-06T18:40:01" +ik[3445] = -1 +il[3445] = 79 +im[3445] = 0.2724 +ij[3445] = 2 +id[3446] = "2546-07-08T13:40:01" +ik[3446] = 0 +il[3446] = 66 +im[3446] = 0.2677 +ij[3446] = 1 +id[3447] = "2546-11-01T08:50:02" +ik[3447] = -1 +il[3447] = -167 +im[3447] = 0.2076 +ij[3447] = 2 +id[3448] = "2546-11-02T17:59:02" +ik[3448] = 0 +il[3448] = -179 +im[3448] = 0.2159 +ij[3448] = 1 +id[3449] = "2547-02-16T11:01:03" +ik[3449] = 0 +il[3449] = -1 +im[3449] = 0.2075 +ij[3449] = 1 +id[3450] = "2547-02-18T11:14:03" +ik[3450] = 1 +il[3450] = -16 +im[3450] = 0.1327 +ij[3450] = 2 +id[3451] = "2547-06-18T06:11:01" +ik[3451] = -1 +il[3451] = 91 +im[3451] = 0.0595 +ij[3451] = 2 +id[3452] = "2547-06-18T10:47:01" +ik[3452] = 0 +il[3452] = 90 +im[3452] = 0.0499 +ij[3452] = 1 +id[3453] = "2547-10-15T18:40:02" +ik[3453] = -1 +il[3453] = -163 +im[3453] = 0.0222 +ij[3453] = 2 +id[3454] = "2547-10-17T17:01:02" +ik[3454] = 0 +il[3454] = -177 +im[3454] = 0.1191 +ij[3454] = 1 +id[3455] = "2548-01-31T06:42:03" +ik[3455] = 0 +il[3455] = 1 +im[3455] = 0.1966 +ij[3455] = 1 +id[3456] = "2548-02-01T17:14:03" +ik[3456] = 1 +il[3456] = -10 +im[3456] = 0.2275 +ij[3456] = 2 +id[3457] = "2548-05-28T09:06:01" +ik[3457] = 0 +il[3457] = 113 +im[3457] = 0.2113 +ij[3457] = 1 +id[3458] = "2548-05-29T18:40:01" +ik[3458] = 1 +il[3458] = 104 +im[3458] = 0.2543 +ij[3458] = 2 +id[3459] = "2548-09-27T20:21:02" +ik[3459] = -1 +il[3459] = -156 +im[3459] = 0.2105 +ij[3459] = 2 +id[3460] = "2548-09-30T08:23:02" +ik[3460] = 0 +il[3460] = -174 +im[3460] = 0.1262 +ij[3460] = 1 +id[3461] = "2549-01-14T08:52:03" +ik[3461] = 0 +il[3461] = 1 +im[3461] = 0.036 +ij[3461] = 1 +id[3462] = "2549-01-15T06:11:03" +ik[3462] = 1 +il[3462] = -5 +im[3462] = 0.0236 +ij[3462] = 2 +id[3463] = "2549-05-08T19:11:01" +ik[3463] = 0 +il[3463] = 134 +im[3463] = 0.1988 +ij[3463] = 1 +id[3464] = "2549-05-11T09:04:01" +ik[3464] = 1 +il[3464] = 116 +im[3464] = 0.0704 +ij[3464] = 2 +id[3465] = "2549-09-10T11:57:02" +ik[3465] = -1 +il[3465] = -146 +im[3465] = 0.0737 +ij[3465] = 2 +id[3466] = "2549-09-13T12:28:02" +ik[3466] = 0 +il[3466] = -168 +im[3466] = 0.1992 +ij[3466] = 1 +id[3467] = "2549-12-29T00:11:03" +ik[3467] = -1 +il[3467] = 6 +im[3467] = 0.223 +ij[3467] = 2 +id[3468] = "2549-12-29T14:52:03" +ik[3468] = 0 +il[3468] = 1 +im[3468] = 0.2168 +ij[3468] = 1 +id[3469] = "2550-04-19T22:18:01" +ik[3469] = 0 +il[3469] = 150 +im[3469] = 0.0855 +ij[3469] = 1 +id[3470] = "2550-04-23T02:21:01" +ik[3470] = 1 +il[3470] = 128 +im[3470] = 0.2257 +ij[3470] = 2 +id[3471] = "2550-08-23T16:59:02" +ik[3471] = -1 +il[3471] = -135 +im[3471] = 0.2126 +ij[3471] = 2 +id[3472] = "2550-08-27T01:11:02" +ik[3472] = 0 +il[3472] = -158 +im[3472] = 0.0664 +ij[3472] = 1 +id[3473] = "2550-12-13T20:35:03" +ik[3473] = -1 +il[3473] = 10 +im[3473] = 0.1754 +ij[3473] = 2 +id[3474] = "2550-12-13T22:47:03" +ik[3474] = 0 +il[3474] = 0 +im[3474] = 0.1786 +ij[3474] = 1 +id[3475] = "2551-04-01T19:54:01" +ik[3475] = 0 +il[3475] = 163 +im[3475] = 0.2184 +ij[3475] = 1 +id[3476] = "2551-04-05T01:09:01" +ik[3476] = 1 +il[3476] = 140 +im[3476] = 0.0842 +ij[3476] = 2 +id[3477] = "2551-08-05T12:54:02" +ik[3477] = -1 +il[3477] = -122 +im[3477] = 0.0815 +ij[3477] = 2 +id[3478] = "2551-08-08T18:57:02" +ik[3478] = 0 +il[3478] = -145 +im[3478] = 0.2217 +ij[3478] = 1 +id[3479] = "2551-11-27T16:59:03" +ik[3479] = -1 +il[3479] = 14 +im[3479] = 0.0742 +ij[3479] = 2 +id[3480] = "2551-11-28T06:57:03" +ik[3480] = 0 +il[3480] = 0 +im[3480] = 0.0416 +ij[3480] = 1 +id[3481] = "2552-03-14T10:18:01" +ik[3481] = 0 +il[3481] = 171 +im[3481] = 0.1109 +ij[3481] = 1 +id[3482] = "2552-03-17T07:23:01" +ik[3482] = 1 +il[3482] = 151 +im[3482] = 0.2195 +ij[3482] = 2 +id[3483] = "2552-07-17T02:49:02" +ik[3483] = -1 +il[3483] = -109 +im[3483] = 0.2558 +ij[3483] = 2 +id[3484] = "2552-07-19T15:06:02" +ik[3484] = 0 +il[3484] = -126 +im[3484] = 0.1673 +ij[3484] = 1 +id[3485] = "2552-11-10T11:13:03" +ik[3485] = -1 +il[3485] = 18 +im[3485] = 0.2241 +ij[3485] = 2 +id[3486] = "2552-11-11T13:11:03" +ik[3486] = 0 +il[3486] = 0 +im[3486] = 0.2192 +ij[3486] = 1 +id[3487] = "2553-02-25T14:23:01" +ik[3487] = 0 +il[3487] = 177 +im[3487] = 0.1717 +ij[3487] = 1 +id[3488] = "2553-02-27T22:59:01" +ik[3488] = 1 +il[3488] = 160 +im[3488] = 0.0596 +ij[3488] = 2 +id[3489] = "2553-06-28T14:06:02" +ik[3489] = -1 +il[3489] = -96 +im[3489] = 0.0651 +ij[3489] = 2 +id[3490] = "2553-06-29T17:45:02" +ik[3490] = 0 +il[3490] = -104 +im[3490] = 0.1364 +ij[3490] = 1 +id[3491] = "2553-10-25T00:54:03" +ik[3491] = -1 +il[3491] = 22 +im[3491] = 0.0911 +ij[3491] = 2 +id[3492] = "2553-10-26T15:35:03" +ik[3492] = 0 +il[3492] = 1 +im[3492] = 0.1634 +ij[3492] = 1 +id[3493] = "2554-02-09T05:30:01" +ik[3493] = 0 +il[3493] = -180 +im[3493] = 0.2133 +ij[3493] = 1 +id[3494] = "2554-02-10T23:57:01" +ik[3494] = 1 +il[3494] = 167 +im[3494] = 0.2264 +ij[3494] = 2 +id[3495] = "2554-06-09T13:40:02" +ik[3495] = 0 +il[3495] = -80 +im[3495] = 0.2805 +ij[3495] = 1 +id[3496] = "2554-06-10T01:52:02" +ik[3496] = 1 +il[3496] = -83 +im[3496] = 0.2782 +ij[3496] = 2 +id[3497] = "2554-10-08T07:37:03" +ik[3497] = -1 +il[3497] = 26 +im[3497] = 0.1841 +ij[3497] = 2 +id[3498] = "2554-10-10T11:45:03" +ik[3498] = 0 +il[3498] = 4 +im[3498] = 0.0883 +ij[3498] = 1 +id[3499] = "2555-01-24T04:18:01" +ik[3499] = 0 +il[3499] = -179 +im[3499] = 0.0126 +ij[3499] = 1 +id[3500] = "2555-01-25T09:04:01" +ik[3500] = 1 +il[3500] = 172 +im[3500] = 0.0585 +ij[3500] = 2 +id[3501] = "2555-05-20T15:49:02" +ik[3501] = 0 +il[3501] = -58 +im[3501] = 0.0812 +ij[3501] = 1 +id[3502] = "2555-05-22T15:04:02" +ik[3502] = 1 +il[3502] = -71 +im[3502] = 0.0518 +ij[3502] = 2 +id[3503] = "2555-09-21T04:59:03" +ik[3503] = -1 +il[3503] = 30 +im[3503] = 0.1591 +ij[3503] = 2 +id[3504] = "2555-09-23T22:47:03" +ik[3504] = 0 +il[3504] = 8 +im[3504] = 0.2287 +ij[3504] = 1 +id[3505] = "2556-01-08T08:09:01" +ik[3505] = 0 +il[3505] = -179 +im[3505] = 0.2061 +ij[3505] = 1 +id[3506] = "2556-01-09T00:25:01" +ik[3506] = 1 +il[3506] = 176 +im[3506] = 0.1874 +ij[3506] = 2 +id[3507] = "2556-04-30T08:52:02" +ik[3507] = 0 +il[3507] = -39 +im[3507] = 0.2013 +ij[3507] = 1 +id[3508] = "2556-05-03T06:40:02" +ik[3508] = 1 +il[3508] = -59 +im[3508] = 0.2621 +ij[3508] = 2 +id[3509] = "2556-09-02T16:16:03" +ik[3509] = -1 +il[3509] = 38 +im[3509] = 0.1393 +ij[3509] = 2 +id[3510] = "2556-09-05T20:52:03" +ik[3510] = 0 +il[3510] = 16 +im[3510] = 0.0414 +ij[3510] = 1 +id[3511] = "2556-12-22T15:21:01" +ik[3511] = 0 +il[3511] = -179 +im[3511] = 0.1929 +ij[3511] = 1 +id[3512] = "2556-12-22T19:37:01" +ik[3512] = 1 +il[3512] = -180 +im[3512] = 0.1976 +ij[3512] = 2 +id[3513] = "2557-04-11T19:54:02" +ik[3513] = 0 +il[3513] = -24 +im[3513] = 0.1514 +ij[3513] = 1 +id[3514] = "2557-04-15T01:52:02" +ik[3514] = 1 +il[3514] = -47 +im[3514] = 0.0408 +ij[3514] = 2 +id[3515] = "2557-08-15T17:13:03" +ik[3515] = -1 +il[3515] = 50 +im[3515] = 0.1707 +ij[3515] = 2 +id[3516] = "2557-08-19T01:54:03" +ik[3516] = 0 +il[3516] = 27 +im[3516] = 0.2347 +ij[3516] = 1 +id[3517] = "2557-12-06T16:30:01" +ik[3517] = -1 +il[3517] = -176 +im[3517] = 0.0454 +ij[3517] = 2 +id[3518] = "2557-12-06T23:45:01" +ik[3518] = 0 +il[3518] = 180 +im[3518] = 0.0289 +ij[3518] = 1 +id[3519] = "2558-03-25T00:57:02" +ik[3519] = 0 +il[3519] = -13 +im[3519] = 0.1709 +ij[3519] = 1 +id[3520] = "2558-03-28T03:33:02" +ik[3520] = 1 +il[3520] = -35 +im[3520] = 0.2346 +ij[3520] = 2 +id[3521] = "2558-07-28T10:01:03" +ik[3521] = -1 +il[3521] = 63 +im[3521] = 0.1705 +ij[3521] = 2 +id[3522] = "2558-07-31T10:33:03" +ik[3522] = 0 +il[3522] = 43 +im[3522] = 0.0269 +ij[3522] = 1 +id[3523] = "2558-11-20T12:11:01" +ik[3523] = -1 +il[3523] = -172 +im[3523] = 0.2241 +ij[3523] = 2 +id[3524] = "2558-11-21T07:11:01" +ik[3524] = 0 +il[3524] = -180 +im[3524] = 0.211 +ij[3524] = 1 +id[3525] = "2559-03-07T21:35:02" +ik[3525] = 0 +il[3525] = -6 +im[3525] = 0.1142 +ij[3525] = 1 +id[3526] = "2559-03-10T13:37:02" +ik[3526] = 1 +il[3526] = -25 +im[3526] = 0.0466 +ij[3526] = 2 +id[3527] = "2559-07-09T22:16:03" +ik[3527] = -1 +il[3527] = 77 +im[3527] = 0.165 +ij[3527] = 2 +id[3528] = "2559-07-11T22:18:03" +ik[3528] = 0 +il[3528] = 63 +im[3528] = 0.2373 +ij[3528] = 1 +id[3529] = "2559-11-04T04:45:01" +ik[3529] = -1 +il[3529] = -168 +im[3529] = 0.1386 +ij[3529] = 2 +id[3530] = "2559-11-05T12:13:01" +ik[3530] = 0 +il[3530] = -180 +im[3530] = 0.1882 +ij[3530] = 1 +id[3531] = "2560-02-19T06:42:02" +ik[3531] = 0 +il[3531] = -1 +im[3531] = 0.2178 +ij[3531] = 1 +id[3532] = "2560-02-21T09:18:02" +ik[3532] = 1 +il[3532] = -17 +im[3532] = 0.2058 +ij[3532] = 2 +id[3533] = "2560-06-20T09:47:03" +ik[3533] = -1 +il[3533] = 89 +im[3533] = 0.2277 +ij[3533] = 2 +id[3534] = "2560-06-20T20:23:03" +ik[3534] = 0 +il[3534] = 86 +im[3534] = 0.2105 +ij[3534] = 1 +id[3535] = "2560-10-17T15:47:01" +ik[3535] = -1 +il[3535] = -164 +im[3535] = 0.1553 +ij[3535] = 2 +id[3536] = "2560-10-19T12:13:01" +ik[3536] = 0 +il[3536] = -178 +im[3536] = 0.0628 +ij[3536] = 1 +id[3537] = "2561-02-02T01:25:02" +ik[3537] = 0 +il[3537] = 1 +im[3537] = 0.0371 +ij[3537] = 1 +id[3538] = "2561-02-03T14:06:02" +ik[3538] = 1 +il[3538] = -11 +im[3538] = 0.1074 +ij[3538] = 2 +id[3539] = "2561-05-31T17:30:03" +ik[3539] = 0 +il[3539] = 110 +im[3539] = 0.0838 +ij[3539] = 1 +id[3540] = "2561-06-01T22:01:03" +ik[3540] = 1 +il[3540] = 102 +im[3540] = 0.1557 +ij[3540] = 2 +id[3541] = "2561-09-30T18:40:01" +ik[3541] = -1 +il[3541] = -157 +im[3541] = 0.2133 +ij[3541] = 2 +id[3542] = "2561-10-03T04:47:01" +ik[3542] = 0 +il[3542] = -175 +im[3542] = 0.2353 +ij[3542] = 1 +id[3543] = "2562-01-17T02:37:02" +ik[3543] = 0 +il[3543] = 1 +im[3543] = 0.1777 +ij[3543] = 1 +id[3544] = "2562-01-18T02:06:02" +ik[3544] = 1 +il[3544] = -6 +im[3544] = 0.1419 +ij[3544] = 2 +id[3545] = "2562-05-12T01:25:03" +ik[3545] = 0 +il[3545] = 131 +im[3545] = 0.2721 +ij[3545] = 1 +id[3546] = "2562-05-14T11:57:03" +ik[3546] = 1 +il[3546] = 114 +im[3546] = 0.2466 +ij[3546] = 2 +id[3547] = "2562-09-13T11:57:01" +ik[3547] = -1 +il[3547] = -148 +im[3547] = 0.0685 +ij[3547] = 2 +id[3548] = "2562-09-16T10:47:01" +ik[3548] = 0 +il[3548] = -169 +im[3548] = 0.111 +ij[3548] = 1 +id[3549] = "2563-01-01T08:23:02" +ik[3549] = 0 +il[3549] = 1 +im[3549] = 0.1974 +ij[3549] = 1 +id[3550] = "2563-01-01T19:23:02" +ik[3550] = 1 +il[3550] = -2 +im[3550] = 0.2058 +ij[3550] = 2 +id[3551] = "2563-04-23T01:54:03" +ik[3551] = 0 +il[3551] = 148 +im[3551] = 0.052 +ij[3551] = 1 +id[3552] = "2563-04-26T04:45:03" +ik[3552] = 1 +il[3552] = 127 +im[3552] = 0.1411 +ij[3552] = 2 +id[3553] = "2563-08-26T18:40:01" +ik[3553] = -1 +il[3553] = -137 +im[3553] = 0.2276 +ij[3553] = 2 +id[3554] = "2563-08-30T02:09:01" +ik[3554] = 0 +il[3554] = -160 +im[3554] = 0.2138 +ij[3554] = 1 +id[3555] = "2563-12-16T15:33:02" +ik[3555] = -1 +il[3555] = 2 +im[3555] = 0.0239 +ij[3555] = 2 +id[3556] = "2563-12-16T16:04:02" +ik[3556] = 0 +il[3556] = 1 +im[3556] = 0.0236 +ij[3556] = 1 +id[3557] = "2564-04-03T20:37:03" +ik[3557] = 0 +il[3557] = 161 +im[3557] = 0.2252 +ij[3557] = 1 +id[3558] = "2564-04-07T02:35:03" +ik[3558] = 1 +il[3558] = 138 +im[3558] = 0.2271 +ij[3558] = 2 +id[3559] = "2564-08-07T15:47:01" +ik[3559] = -1 +il[3559] = -124 +im[3559] = 0.0688 +ij[3559] = 2 +id[3560] = "2564-08-10T23:01:01" +ik[3560] = 0 +il[3560] = -147 +im[3560] = 0.1341 +ij[3560] = 1 +id[3561] = "2564-11-29T12:11:02" +ik[3561] = -1 +il[3561] = 6 +im[3561] = 0.2015 +ij[3561] = 2 +id[3562] = "2564-11-30T00:28:02" +ik[3562] = 0 +il[3562] = 0 +im[3562] = 0.1877 +ij[3562] = 1 +id[3563] = "2565-03-17T08:52:03" +ik[3563] = 0 +il[3563] = 170 +im[3563] = 0.0354 +ij[3563] = 1 +id[3564] = "2565-03-20T07:23:03" +ik[3564] = 1 +il[3564] = 149 +im[3564] = 0.1292 +ij[3564] = 2 +id[3565] = "2565-07-20T06:11:01" +ik[3565] = -1 +il[3565] = -111 +im[3565] = 0.2255 +ij[3565] = 2 +id[3566] = "2565-07-22T22:18:01" +ik[3566] = 0 +il[3566] = -129 +im[3566] = 0.2403 +ij[3566] = 1 +id[3567] = "2565-11-13T06:54:02" +ik[3567] = -1 +il[3567] = 10 +im[3567] = 0.1643 +ij[3567] = 2 +id[3568] = "2565-11-14T07:11:02" +ik[3568] = 0 +il[3568] = 0 +im[3568] = 0.1952 +ij[3568] = 1 +id[3569] = "2566-02-28T11:16:03" +ik[3569] = 0 +il[3569] = 176 +im[3569] = 0.2209 +ij[3569] = 1 +id[3570] = "2566-03-02T21:33:03" +ik[3570] = 1 +il[3570] = 159 +im[3570] = 0.1758 +ij[3570] = 2 +id[3571] = "2566-07-01T17:42:01" +ik[3571] = -1 +il[3571] = -98 +im[3571] = 0.1229 +ij[3571] = 2 +id[3572] = "2566-07-03T02:52:01" +ik[3572] = 0 +il[3572] = -107 +im[3572] = 0.0538 +ij[3572] = 1 +id[3573] = "2566-10-27T21:18:02" +ik[3573] = -1 +il[3573] = 14 +im[3573] = 0.1108 +ij[3573] = 2 +id[3574] = "2566-10-29T10:18:02" +ik[3574] = 0 +il[3574] = 1 +im[3574] = 0.0303 +ij[3574] = 1 +id[3575] = "2567-02-12T00:42:03" +ik[3575] = 0 +il[3575] = -180 +im[3575] = 0.0717 +ij[3575] = 1 +id[3576] = "2567-02-13T21:18:03" +ik[3576] = 1 +il[3576] = 166 +im[3576] = 0.1581 +ij[3576] = 2 +id[3577] = "2567-06-12T23:01:01" +ik[3577] = 0 +il[3577] = -83 +im[3577] = 0.217 +ij[3577] = 1 +id[3578] = "2567-06-13T05:28:01" +ik[3578] = 1 +il[3578] = -85 +im[3578] = 0.2263 +ij[3578] = 2 +id[3579] = "2567-10-11T05:13:02" +ik[3579] = -1 +il[3579] = 19 +im[3579] = 0.2334 +ij[3579] = 2 +id[3580] = "2567-10-13T07:25:02" +ik[3580] = 0 +il[3580] = 3 +im[3580] = 0.2159 +ij[3580] = 1 +id[3581] = "2568-01-26T22:33:03" +ik[3581] = 0 +il[3581] = -179 +im[3581] = 0.143 +ij[3581] = 1 +id[3582] = "2568-01-28T05:28:03" +ik[3582] = 1 +il[3582] = 172 +im[3582] = 0.0844 +ij[3582] = 2 +id[3583] = "2568-05-22T23:30:01" +ik[3583] = 0 +il[3583] = -61 +im[3583] = 0.2419 +ij[3583] = 1 +id[3584] = "2568-05-24T18:25:01" +ik[3584] = 1 +il[3584] = -73 +im[3584] = 0.1693 +ij[3584] = 2 +id[3585] = "2568-09-23T04:16:02" +ik[3585] = -1 +il[3585] = 27 +im[3585] = 0.0114 +ij[3585] = 2 +id[3586] = "2568-09-25T19:54:02" +ik[3586] = 0 +il[3586] = 8 +im[3586] = 0.1541 +ij[3586] = 1 +id[3587] = "2569-01-10T01:54:03" +ik[3587] = 0 +il[3587] = -179 +im[3587] = 0.1993 +ij[3587] = 1 +id[3588] = "2569-01-10T20:06:03" +ik[3588] = 1 +il[3588] = 176 +im[3588] = 0.2091 +ij[3588] = 2 +id[3589] = "2569-05-03T13:54:01" +ik[3589] = 0 +il[3589] = -41 +im[3589] = 0.0755 +ij[3589] = 1 +id[3590] = "2569-05-06T09:18:01" +ik[3590] = 1 +il[3590] = -61 +im[3590] = 0.221 +ij[3590] = 2 +id[3591] = "2569-09-05T16:59:02" +ik[3591] = -1 +il[3591] = 37 +im[3591] = 0.2453 +ij[3591] = 2 +id[3592] = "2569-09-08T20:09:02" +ik[3592] = 0 +il[3592] = 14 +im[3592] = 0.164 +ij[3592] = 1 +id[3593] = "2569-12-25T08:52:03" +ik[3593] = 0 +il[3593] = -179 +im[3593] = 0.0282 +ij[3593] = 1 +id[3594] = "2569-12-25T14:49:03" +ik[3594] = 1 +il[3594] = -180 +im[3594] = 0.0412 +ij[3594] = 2 +id[3595] = "2570-04-14T22:18:01" +ik[3595] = 0 +il[3595] = -26 +im[3595] = 0.2581 +ij[3595] = 1 +id[3596] = "2570-04-18T04:01:01" +ik[3596] = 1 +il[3596] = -48 +im[3596] = 0.1763 +ij[3596] = 2 +id[3597] = "2570-08-18T19:23:02" +ik[3597] = -1 +il[3597] = 48 +im[3597] = 0.0576 +ij[3597] = 2 +id[3598] = "2570-08-22T04:04:02" +ik[3598] = 0 +il[3598] = 25 +im[3598] = 0.2153 +ij[3598] = 1 +id[3599] = "2570-12-09T11:28:03" +ik[3599] = -1 +il[3599] = -176 +im[3599] = 0.1637 +ij[3599] = 2 +id[3600] = "2570-12-09T17:01:03" +ik[3600] = 0 +il[3600] = 180 +im[3600] = 0.1554 +ij[3600] = 1 +id[3601] = "2571-03-28T00:42:01" +ik[3601] = 0 +il[3601] = -14 +im[3601] = 0.0564 +ij[3601] = 1 +id[3602] = "2571-03-31T04:30:01" +ik[3602] = 1 +il[3602] = -37 +im[3602] = 0.2117 +ij[3602] = 2 +id[3603] = "2571-07-31T13:09:02" +ik[3603] = -1 +il[3603] = 61 +im[3603] = 0.2512 +ij[3603] = 2 +id[3604] = "2571-08-03T16:04:02" +ik[3604] = 0 +il[3604] = 40 +im[3604] = 0.1715 +ij[3604] = 1 +id[3605] = "2571-11-23T07:37:03" +ik[3605] = -1 +il[3605] = -172 +im[3605] = 0.1797 +ij[3605] = 2 +id[3606] = "2571-11-24T00:42:03" +ik[3606] = 0 +il[3606] = -180 +im[3606] = 0.1968 +ij[3606] = 1 +id[3607] = "2572-03-09T19:25:01" +ik[3607] = 0 +il[3607] = -7 +im[3607] = 0.2223 +ij[3607] = 1 +id[3608] = "2572-03-12T13:09:01" +ik[3608] = 1 +il[3608] = -26 +im[3608] = 0.1316 +ij[3608] = 2 +id[3609] = "2572-07-12T01:52:02" +ik[3609] = -1 +il[3609] = 75 +im[3609] = 0.0188 +ij[3609] = 2 +id[3610] = "2572-07-14T06:28:02" +ik[3610] = 0 +il[3610] = 60 +im[3610] = 0.1442 +ij[3610] = 1 +id[3611] = "2572-11-06T00:54:03" +ik[3611] = -1 +il[3611] = -168 +im[3611] = 0.0551 +ij[3611] = 2 +id[3612] = "2572-11-07T06:13:03" +ik[3612] = 0 +il[3612] = -180 +im[3612] = 0.0148 +ij[3612] = 1 +id[3613] = "2573-02-21T02:52:01" +ik[3613] = 0 +il[3613] = -2 +im[3613] = 0.1326 +ij[3613] = 1 +id[3614] = "2573-02-23T07:23:01" +ik[3614] = 1 +il[3614] = -18 +im[3614] = 0.2123 +ij[3614] = 2 +id[3615] = "2573-06-23T13:09:02" +ik[3615] = -1 +il[3615] = 88 +im[3615] = 0.2557 +ij[3615] = 2 +id[3616] = "2573-06-24T05:45:02" +ik[3616] = 0 +il[3616] = 83 +im[3616] = 0.256 +ij[3616] = 1 +id[3617] = "2573-10-20T12:40:03" +ik[3617] = -1 +il[3617] = -164 +im[3617] = 0.2202 +ij[3617] = 2 +id[3618] = "2573-10-22T07:11:03" +ik[3618] = 0 +il[3618] = -178 +im[3618] = 0.1807 +ij[3618] = 1 +id[3619] = "2574-02-04T20:23:01" +ik[3619] = 0 +il[3619] = 0 +im[3619] = 0.1078 +ij[3619] = 1 +id[3620] = "2574-02-06T10:59:01" +ik[3620] = 1 +il[3620] = -11 +im[3620] = 0.0223 +ij[3620] = 2 +id[3621] = "2574-06-04T02:23:02" +ik[3621] = 0 +il[3621] = 106 +im[3621] = 0.0984 +ij[3621] = 1 +id[3622] = "2574-06-05T01:23:02" +ik[3622] = 1 +il[3622] = 100 +im[3622] = 0.0429 +ij[3622] = 2 +id[3623] = "2574-10-03T16:59:03" +ik[3623] = -1 +il[3623] = -158 +im[3623] = 0.0735 +ij[3623] = 2 +id[3624] = "2574-10-06T00:57:03" +ik[3624] = 0 +il[3624] = -175 +im[3624] = 0.1772 +ij[3624] = 1 +id[3625] = "2575-01-19T20:37:01" +ik[3625] = 0 +il[3625] = 1 +im[3625] = 0.2103 +ij[3625] = 1 +id[3626] = "2575-01-20T22:01:01" +ik[3626] = 1 +il[3626] = -6 +im[3626] = 0.2154 +ij[3626] = 2 +id[3627] = "2575-05-15T08:09:02" +ik[3627] = 0 +il[3627] = 128 +im[3627] = 0.1941 +ij[3627] = 1 +id[3628] = "2575-05-17T15:04:02" +ik[3628] = 1 +il[3628] = 112 +im[3628] = 0.2558 +ij[3628] = 2 +id[3629] = "2575-09-16T11:42:03" +ik[3629] = -1 +il[3629] = -149 +im[3629] = 0.2134 +ij[3629] = 2 +id[3630] = "2575-09-19T08:52:03" +ik[3630] = 0 +il[3630] = -170 +im[3630] = 0.0948 +ij[3630] = 1 +id[3631] = "2576-01-04T01:54:01" +ik[3631] = 0 +il[3631] = 1 +im[3631] = 0.0737 +ij[3631] = 1 +id[3632] = "2576-01-04T14:49:01" +ik[3632] = 1 +il[3632] = -2 +im[3632] = 0.1002 +ij[3632] = 2 +id[3633] = "2576-04-25T05:59:02" +ik[3633] = 0 +il[3633] = 146 +im[3633] = 0.226 +ij[3633] = 1 +id[3634] = "2576-04-28T07:23:02" +ik[3634] = 1 +il[3634] = 125 +im[3634] = 0.0831 +ij[3634] = 2 +id[3635] = "2576-08-28T20:06:03" +ik[3635] = -1 +il[3635] = -139 +im[3635] = 0.149 +ij[3635] = 2 +id[3636] = "2576-09-01T02:37:03" +ik[3636] = 0 +il[3636] = -162 +im[3636] = 0.2383 +ij[3636] = 1 +id[3637] = "2576-12-18T09:35:01" +ik[3637] = 0 +il[3637] = 1 +im[3637] = 0.13 +ij[3637] = 1 +id[3638] = "2576-12-18T10:30:01" +ik[3638] = 1 +il[3638] = 2 +im[3638] = 0.1284 +ij[3638] = 2 +id[3639] = "2577-04-06T22:04:02" +ik[3639] = 0 +il[3639] = 160 +im[3639] = 0.144 +ij[3639] = 1 +id[3640] = "2577-04-10T04:01:02" +ik[3640] = 1 +il[3640] = 137 +im[3640] = 0.2501 +ij[3640] = 2 +id[3641] = "2577-08-10T18:25:03" +ik[3641] = -1 +il[3641] = -126 +im[3641] = 0.2255 +ij[3641] = 2 +id[3642] = "2577-08-14T02:23:03" +ik[3642] = 0 +il[3642] = -149 +im[3642] = 0.0708 +ij[3642] = 1 +id[3643] = "2577-12-02T07:23:01" +ik[3643] = -1 +il[3643] = 6 +im[3643] = 0.195 +ij[3643] = 2 +id[3644] = "2577-12-02T17:45:01" +ik[3644] = 0 +il[3644] = 0 +im[3644] = 0.2028 +ij[3644] = 1 +id[3645] = "2578-03-20T07:40:02" +ik[3645] = 0 +il[3645] = 169 +im[3645] = 0.2067 +ij[3645] = 1 +id[3646] = "2578-03-23T07:52:02" +ik[3646] = 1 +il[3646] = 148 +im[3646] = 0.07 +ij[3646] = 2 +id[3647] = "2578-07-23T09:33:03" +ik[3647] = -1 +il[3647] = -113 +im[3647] = 0.1471 +ij[3647] = 2 +id[3648] = "2578-07-26T05:01:03" +ik[3648] = 0 +il[3648] = -132 +im[3648] = 0.2505 +ij[3648] = 1 +id[3649] = "2578-11-16T02:35:01" +ik[3649] = -1 +il[3649] = 10 +im[3649] = 0.0153 +ij[3649] = 2 +id[3650] = "2578-11-17T00:42:01" +ik[3650] = 0 +il[3650] = 0 +im[3650] = 0.0582 +ij[3650] = 1 +id[3651] = "2579-03-03T08:09:02" +ik[3651] = 0 +il[3651] = 176 +im[3651] = 0.1908 +ij[3651] = 1 +id[3652] = "2579-03-05T20:35:02" +ik[3652] = 1 +il[3652] = 157 +im[3652] = 0.2438 +ij[3652] = 2 +id[3653] = "2579-07-04T21:18:03" +ik[3653] = -1 +il[3653] = -100 +im[3653] = 0.2436 +ij[3653] = 2 +id[3654] = "2579-07-06T11:59:03" +ik[3654] = 0 +il[3654] = -111 +im[3654] = 0.1877 +ij[3654] = 1 +id[3655] = "2579-10-30T17:42:01" +ik[3655] = -1 +il[3655] = 14 +im[3655] = 0.194 +ij[3655] = 2 +id[3656] = "2579-11-01T04:33:01" +ik[3656] = 0 +il[3656] = 1 +im[3656] = 0.1465 +ij[3656] = 1 +id[3657] = "2580-02-14T20:23:02" +ik[3657] = 0 +il[3657] = 179 +im[3657] = 0.0847 +ij[3657] = 1 +id[3658] = "2580-02-16T18:54:02" +ik[3658] = 1 +il[3658] = 165 +im[3658] = 0.0467 +ij[3658] = 2 +id[3659] = "2580-06-15T08:23:03" +ik[3659] = 0 +il[3659] = -87 +im[3659] = 0.1003 +ij[3659] = 1 +id[3660] = "2580-06-15T08:49:03" +ik[3660] = 1 +il[3660] = -87 +im[3660] = 0.1013 +ij[3660] = 2 +id[3661] = "2580-10-13T02:35:01" +ik[3661] = -1 +il[3661] = 18 +im[3661] = 0.1219 +ij[3661] = 2 +id[3662] = "2580-10-15T02:52:01" +ik[3662] = 0 +il[3662] = 3 +im[3662] = 0.1934 +ij[3662] = 1 +id[3663] = "2581-01-28T17:01:02" +ik[3663] = 0 +il[3663] = -179 +im[3663] = 0.2251 +ij[3663] = 1 +id[3664] = "2581-01-30T01:52:02" +ik[3664] = 1 +il[3664] = 171 +im[3664] = 0.2173 +ij[3664] = 2 +id[3665] = "2581-05-26T07:40:03" +ik[3665] = 0 +il[3665] = -64 +im[3665] = 0.2546 +ij[3665] = 1 +id[3666] = "2581-05-27T21:33:03" +ik[3666] = 1 +il[3666] = -75 +im[3666] = 0.2471 +ij[3666] = 2 +id[3667] = "2581-09-26T03:04:01" +ik[3667] = -1 +il[3667] = 25 +im[3667] = 0.1501 +ij[3667] = 2 +id[3668] = "2581-09-28T16:47:01" +ik[3668] = 0 +il[3668] = 7 +im[3668] = 0.0294 +ij[3668] = 1 +id[3669] = "2582-01-12T19:40:02" +ik[3669] = 0 +il[3669] = -179 +im[3669] = 0.119 +ij[3669] = 1 +id[3670] = "2582-01-13T15:33:02" +ik[3670] = 1 +il[3670] = 175 +im[3670] = 0.1547 +ij[3670] = 2 +id[3671] = "2582-05-06T19:40:03" +ik[3671] = 0 +il[3671] = -44 +im[3671] = 0.1123 +ij[3671] = 1 +id[3672] = "2582-05-09T12:11:03" +ik[3672] = 1 +il[3672] = -62 +im[3672] = 0.0471 +ij[3672] = 2 +id[3673] = "2582-09-08T17:28:01" +ik[3673] = -1 +il[3673] = 35 +im[3673] = 0.1942 +ij[3673] = 2 +id[3674] = "2582-09-11T19:11:01" +ik[3674] = 0 +il[3674] = 13 +im[3674] = 0.2218 +ij[3674] = 1 +id[3675] = "2582-12-28T02:09:02" +ik[3675] = 0 +il[3675] = -179 +im[3675] = 0.1167 +ij[3675] = 1 +id[3676] = "2582-12-28T10:01:02" +ik[3676] = 1 +il[3676] = 179 +im[3676] = 0.1011 +ij[3676] = 2 +id[3677] = "2583-04-18T01:11:03" +ik[3677] = 0 +il[3677] = -28 +im[3677] = 0.2109 +ij[3677] = 1 +id[3678] = "2583-04-21T06:11:03" +ik[3678] = 1 +il[3678] = -50 +im[3678] = 0.2404 +ij[3678] = 2 +id[3679] = "2583-08-21T21:18:01" +ik[3679] = -1 +il[3679] = 47 +im[3679] = 0.1515 +ij[3679] = 2 +id[3680] = "2583-08-25T05:59:01" +ik[3680] = 0 +il[3680] = 23 +im[3680] = 0.0475 +ij[3680] = 1 +id[3681] = "2583-12-12T06:25:02" +ik[3681] = -1 +il[3681] = -177 +im[3681] = 0.2148 +ij[3681] = 2 +id[3682] = "2583-12-12T10:18:02" +ik[3682] = 0 +il[3682] = 180 +im[3682] = 0.2162 +ij[3682] = 1 +id[3683] = "2584-03-30T00:57:03" +ik[3683] = 0 +il[3683] = -16 +im[3683] = 0.1541 +ij[3683] = 1 +id[3684] = "2584-04-02T05:42:03" +ik[3684] = 1 +il[3684] = -38 +im[3684] = 0.0278 +ij[3684] = 2 +id[3685] = "2584-08-02T16:16:01" +ik[3685] = -1 +il[3685] = 59 +im[3685] = 0.2224 +ij[3685] = 2 +id[3686] = "2584-08-05T20:52:01" +ik[3686] = 0 +il[3686] = 37 +im[3686] = 0.2497 +ij[3686] = 1 +id[3687] = "2584-11-25T02:49:02" +ik[3687] = -1 +il[3687] = -173 +im[3687] = 0.0732 +ij[3687] = 2 +id[3688] = "2584-11-25T18:13:02" +ik[3688] = 0 +il[3688] = -180 +im[3688] = 0.1043 +ij[3688] = 1 +id[3689] = "2585-03-12T17:16:03" +ik[3689] = 0 +il[3689] = -8 +im[3689] = 0.225 +ij[3689] = 1 +id[3690] = "2585-03-15T12:54:03" +ik[3690] = 1 +il[3690] = -28 +im[3690] = 0.2335 +ij[3690] = 2 +id[3691] = "2585-07-15T05:28:01" +ik[3691] = -1 +il[3691] = 73 +im[3691] = 0.1852 +ij[3691] = 2 +id[3692] = "2585-07-17T14:23:01" +ik[3692] = 0 +il[3692] = 57 +im[3692] = 0.0546 +ij[3692] = 1 +id[3693] = "2585-11-08T20:35:02" +ik[3693] = -1 +il[3693] = -169 +im[3693] = 0.1708 +ij[3693] = 2 +id[3694] = "2585-11-09T00:13:02" +ik[3694] = 0 +il[3694] = -172 +im[3694] = 0.1656 +ij[3694] = 1 +id[3695] = "2586-02-23T23:16:03" +ik[3695] = 0 +il[3695] = -3 +im[3695] = 0.046 +ij[3695] = 1 +id[3696] = "2586-02-26T05:57:03" +ik[3696] = 1 +il[3696] = -19 +im[3696] = 0.0897 +ij[3696] = 2 +id[3697] = "2586-06-26T16:45:01" +ik[3697] = -1 +il[3697] = 86 +im[3697] = 0.2088 +ij[3697] = 2 +id[3698] = "2586-06-27T15:21:01" +ik[3698] = 0 +il[3698] = 79 +im[3698] = 0.243 +ij[3698] = 1 +id[3699] = "2586-10-23T09:33:02" +ik[3699] = -1 +il[3699] = -165 +im[3699] = 0.1699 +ij[3699] = 2 +id[3700] = "2586-10-25T01:54:02" +ik[3700] = 0 +il[3700] = -178 +im[3700] = 0.2115 +ij[3700] = 1 +id[3701] = "2587-02-07T15:21:03" +ik[3701] = 0 +il[3701] = 0 +im[3701] = 0.2307 +ij[3701] = 1 +id[3702] = "2587-02-09T08:06:03" +ik[3702] = 1 +il[3702] = -12 +im[3702] = 0.1975 +ij[3702] = 2 +id[3703] = "2587-06-07T11:30:01" +ik[3703] = 0 +il[3703] = 103 +im[3703] = 0.2279 +ij[3703] = 1 +id[3704] = "2587-06-08T04:45:01" +ik[3704] = 1 +il[3704] = 98 +im[3704] = 0.2008 +ij[3704] = 2 +id[3705] = "2587-10-06T15:04:02" +ik[3705] = -1 +il[3705] = -159 +im[3705] = 0.0693 +ij[3705] = 2 +id[3706] = "2587-10-08T21:06:02" +ik[3706] = 0 +il[3706] = -176 +im[3706] = 0.053 +ij[3706] = 1 +id[3707] = "2588-01-22T14:52:03" +ik[3707] = 0 +il[3707] = 1 +im[3707] = 0.1488 +ij[3707] = 1 +id[3708] = "2588-01-23T18:11:03" +ik[3708] = 1 +il[3708] = -7 +im[3708] = 0.1917 +ij[3708] = 2 +id[3709] = "2588-05-17T15:06:01" +ik[3709] = 0 +il[3709] = 125 +im[3709] = 0.0531 +ij[3709] = 1 +id[3710] = "2588-05-19T18:11:01" +ik[3710] = 1 +il[3710] = 111 +im[3710] = 0.1703 +ij[3710] = 2 +id[3711] = "2588-09-18T11:28:02" +ik[3711] = -1 +il[3711] = -151 +im[3711] = 0.2171 +ij[3711] = 2 +id[3712] = "2588-09-21T06:28:02" +ik[3712] = 0 +il[3712] = -171 +im[3712] = 0.1935 +ij[3712] = 1 +id[3713] = "2589-01-05T19:25:03" +ik[3713] = 0 +il[3713] = 1 +im[3713] = 0.1045 +ij[3713] = 1 +id[3714] = "2589-01-06T10:01:03" +ik[3714] = 1 +il[3714] = -3 +im[3714] = 0.072 +ij[3714] = 2 +id[3715] = "2589-04-28T10:18:01" +ik[3715] = 0 +il[3715] = 143 +im[3715] = 0.2459 +ij[3715] = 1 +id[3716] = "2589-05-01T10:01:01" +ik[3716] = 1 +il[3716] = 123 +im[3716] = 0.1941 +ij[3716] = 2 +id[3717] = "2589-08-31T21:18:02" +ik[3717] = -1 +il[3717] = -140 +im[3717] = 0.0419 +ij[3717] = 2 +id[3718] = "2589-09-04T02:52:02" +ik[3718] = 0 +il[3718] = -163 +im[3718] = 0.1311 +ij[3718] = 1 +id[3719] = "2589-12-21T02:52:03" +ik[3719] = 0 +il[3719] = 1 +im[3719] = 0.2267 +ij[3719] = 1 +id[3720] = "2589-12-21T05:42:03" +ik[3720] = 1 +il[3720] = 1 +im[3720] = 0.2266 +ij[3720] = 2 +id[3721] = "2590-04-09T23:45:01" +ik[3721] = 0 +il[3721] = 158 +im[3721] = 0.0542 +ij[3721] = 1 +id[3722] = "2590-04-13T05:56:01" +ik[3722] = 1 +il[3722] = 135 +im[3722] = 0.1299 +ij[3722] = 2 +id[3723] = "2590-08-13T20:49:02" +ik[3723] = -1 +il[3723] = -128 +im[3723] = 0.2427 +ij[3723] = 2 +id[3724] = "2590-08-17T05:30:02" +ik[3724] = 0 +il[3724] = -151 +im[3724] = 0.178 +ij[3724] = 1 +id[3725] = "2590-12-05T02:20:03" +ik[3725] = -1 +il[3725] = 5 +im[3725] = 0.1172 +ij[3725] = 2 +id[3726] = "2590-12-05T11:01:03" +ik[3726] = 0 +il[3726] = 0 +im[3726] = 0.1339 +ij[3726] = 1 +id[3727] = "2591-03-23T06:57:01" +ik[3727] = 0 +il[3727] = 168 +im[3727] = 0.2363 +ij[3727] = 1 +id[3728] = "2591-03-26T08:35:01" +ik[3728] = 1 +il[3728] = 146 +im[3728] = 0.1797 +ij[3728] = 2 +id[3729] = "2591-07-26T12:54:02" +ik[3729] = -1 +il[3729] = -115 +im[3729] = 0.0754 +ij[3729] = 2 +id[3730] = "2591-07-29T11:16:02" +ik[3730] = 0 +il[3730] = -135 +im[3730] = 0.1025 +ij[3730] = 1 +id[3731] = "2591-11-18T22:01:03" +ik[3731] = -1 +il[3731] = 9 +im[3731] = 0.1488 +ij[3731] = 2 +id[3732] = "2591-11-19T18:28:03" +ik[3732] = 0 +il[3732] = 0 +im[3732] = 0.1096 +ij[3732] = 1 +id[3733] = "2592-03-05T05:30:01" +ik[3733] = 0 +il[3733] = 175 +im[3733] = 0.0078 +ij[3733] = 1 +id[3734] = "2592-03-07T19:52:01" +ik[3734] = 1 +il[3734] = 156 +im[3734] = 0.1476 +ij[3734] = 2 +id[3735] = "2592-07-07T00:54:02" +ik[3735] = -1 +il[3735] = -102 +im[3735] = 0.2647 +ij[3735] = 2 +id[3736] = "2592-07-08T20:37:02" +ik[3736] = 0 +il[3736] = -114 +im[3736] = 0.2657 +ij[3736] = 1 +id[3737] = "2592-11-01T13:52:03" +ik[3737] = -1 +il[3737] = 13 +im[3737] = 0.2106 +ij[3737] = 2 +id[3738] = "2592-11-02T22:47:03" +ik[3738] = 0 +il[3738] = 1 +im[3738] = 0.2271 +ij[3738] = 1 +id[3739] = "2593-02-16T16:04:01" +ik[3739] = 0 +il[3739] = 179 +im[3739] = 0.2138 +ij[3739] = 1 +id[3740] = "2593-02-18T16:44:01" +ik[3740] = 1 +il[3740] = 164 +im[3740] = 0.146 +ij[3740] = 2 +id[3741] = "2593-06-18T12:25:02" +ik[3741] = -1 +il[3741] = -89 +im[3741] = 0.1127 +ij[3741] = 2 +id[3742] = "2593-06-18T17:45:02" +ik[3742] = 0 +il[3742] = -90 +im[3742] = 0.0987 +ij[3742] = 1 +id[3743] = "2593-10-15T23:56:03" +ik[3743] = -1 +il[3743] = 17 +im[3743] = 0.0231 +ij[3743] = 2 +id[3744] = "2593-10-17T22:04:03" +ik[3744] = 0 +il[3744] = 3 +im[3744] = 0.1075 +ij[3744] = 1 +id[3745] = "2594-01-31T11:45:01" +ik[3745] = 0 +il[3745] = -179 +im[3745] = 0.1691 +ij[3745] = 1 +id[3746] = "2594-02-01T22:30:01" +ik[3746] = 1 +il[3746] = 170 +im[3746] = 0.2105 +ij[3746] = 2 +id[3747] = "2594-05-29T15:49:02" +ik[3747] = 0 +il[3747] = -67 +im[3747] = 0.2098 +ij[3747] = 1 +id[3748] = "2594-05-31T00:54:02" +ik[3748] = 1 +il[3748] = -77 +im[3748] = 0.257 +ij[3748] = 2 +id[3749] = "2594-09-29T01:52:03" +ik[3749] = -1 +il[3749] = 24 +im[3749] = 0.2238 +ij[3749] = 2 +id[3750] = "2594-10-01T13:40:03" +ik[3750] = 0 +il[3750] = 6 +im[3750] = 0.168 +ij[3750] = 1 +id[3751] = "2595-01-15T13:40:01" +ik[3751] = 0 +il[3751] = -179 +im[3751] = 0.0832 +ij[3751] = 1 +id[3752] = "2595-01-16T11:28:01" +ik[3752] = 1 +il[3752] = 175 +im[3752] = 0.0333 +ij[3752] = 2 +id[3753] = "2595-05-10T01:40:02" +ik[3753] = 0 +il[3753] = -47 +im[3753] = 0.2306 +ij[3753] = 1 +id[3754] = "2595-05-12T15:04:02" +ik[3754] = 1 +il[3754] = -64 +im[3754] = 0.1181 +ij[3754] = 2 +id[3755] = "2595-09-11T17:42:03" +ik[3755] = -1 +il[3755] = 34 +im[3755] = 0.0749 +ij[3755] = 2 +id[3756] = "2595-09-14T17:59:03" +ik[3756] = 0 +il[3756] = 12 +im[3756] = 0.1983 +ij[3756] = 1 +id[3757] = "2595-12-30T19:40:01" +ik[3757] = 0 +il[3757] = -179 +im[3757] = 0.223 +ij[3757] = 1 +id[3758] = "2595-12-31T05:13:01" +ik[3758] = 1 +il[3758] = 179 +im[3758] = 0.2176 +ij[3758] = 2 +id[3759] = "2596-04-20T04:18:02" +ik[3759] = 0 +il[3759] = -30 +im[3759] = 0.0796 +ij[3759] = 1 +id[3760] = "2596-04-23T08:20:02" +ik[3760] = 1 +il[3760] = -52 +im[3760] = 0.2226 +ij[3760] = 2 +id[3761] = "2596-08-23T22:59:03" +ik[3761] = -1 +il[3761] = 45 +im[3761] = 0.2207 +ij[3761] = 2 +id[3762] = "2596-08-27T07:11:03" +ik[3762] = 0 +il[3762] = 21 +im[3762] = 0.091 +ij[3762] = 1 +id[3763] = "2596-12-14T01:37:01" +ik[3763] = -1 +il[3763] = -177 +im[3763] = 0.1476 +ij[3763] = 2 +id[3764] = "2596-12-14T03:35:01" +ik[3764] = 0 +il[3764] = -179 +im[3764] = 0.151 +ij[3764] = 1 +id[3765] = "2597-04-02T01:40:02" +ik[3765] = 0 +il[3765] = -17 +im[3765] = 0.2246 +ij[3765] = 1 +id[3766] = "2597-04-05T06:54:02" +ik[3766] = 1 +il[3766] = -40 +im[3766] = 0.1069 +ij[3766] = 2 +id[3767] = "2597-08-05T19:08:03" +ik[3767] = -1 +il[3767] = 57 +im[3767] = 0.0634 +ij[3767] = 2 +id[3768] = "2597-08-09T01:11:03" +ik[3768] = 0 +il[3768] = 35 +im[3768] = 0.2044 +ij[3768] = 1 +id[3769] = "2597-11-27T22:01:01" +ik[3769] = -1 +il[3769] = -173 +im[3769] = 0.1229 +ij[3769] = 2 +id[3770] = "2597-11-28T11:45:01" +ik[3770] = 0 +il[3770] = 180 +im[3770] = 0.0942 +ij[3770] = 1 +id[3771] = "2598-03-15T15:35:02" +ik[3771] = 0 +il[3771] = -9 +im[3771] = 0.0795 +ij[3771] = 1 +id[3772] = "2598-03-18T12:54:02" +ik[3772] = 1 +il[3772] = -29 +im[3772] = 0.2012 +ij[3772] = 2 +id[3773] = "2598-07-18T09:04:03" +ik[3773] = -1 +il[3773] = 71 +im[3773] = 0.2495 +ij[3773] = 2 +id[3774] = "2598-07-20T21:49:03" +ik[3774] = 0 +il[3774] = 53 +im[3774] = 0.1703 +ij[3774] = 1 +id[3775] = "2598-11-11T16:30:01" +ik[3775] = -1 +il[3775] = -169 +im[3775] = 0.2284 +ij[3775] = 2 +id[3776] = "2598-11-12T17:59:01" +ik[3776] = 0 +il[3776] = -180 +im[3776] = 0.2277 +ij[3776] = 1 +id[3777] = "2599-02-26T19:40:02" +ik[3777] = 0 +il[3777] = -3 +im[3777] = 0.1764 +ij[3777] = 1 +id[3778] = "2599-03-01T04:30:02" +ik[3778] = 1 +il[3778] = -20 +im[3778] = 0.0765 +ij[3778] = 2 +id[3779] = "2599-06-29T20:20:03" +ik[3779] = -1 +il[3779] = 84 +im[3779] = 0.0349 +ij[3779] = 2 +id[3780] = "2599-07-01T00:42:03" +ik[3780] = 0 +il[3780] = 76 +im[3780] = 0.0877 +ij[3780] = 1 +id[3781] = "2599-10-26T06:11:01" +ik[3781] = -1 +il[3781] = -165 +im[3781] = 0.0531 +ij[3781] = 2 +id[3782] = "2599-10-27T20:37:01" +ik[3782] = 0 +il[3782] = -179 +im[3782] = 0.1358 +ij[3782] = 1 +id[3783] = "2600-02-10T10:33:02" +ik[3783] = 0 +il[3783] = 0 +im[3783] = 0.184 +ij[3783] = 1 +id[3784] = "2600-02-12T05:13:02" +ik[3784] = 1 +il[3784] = -13 +im[3784] = 0.2169 +ij[3784] = 2 +id[3785] = "2600-06-10T20:37:03" +ik[3785] = 0 +il[3785] = 100 +im[3785] = 0.2781 +ij[3785] = 1 +id[3786] = "2600-06-11T08:06:03" +ik[3786] = 1 +il[3786] = 96 +im[3786] = 0.2774 +ij[3786] = 2 +id[3787] = "2600-10-09T12:54:01" +ik[3787] = -1 +il[3787] = -160 +im[3787] = 0.2146 +ij[3787] = 2 +id[3788] = "2600-10-11T16:47:01" +ik[3788] = 0 +il[3788] = -176 +im[3788] = 0.1397 +ij[3788] = 1 +id[3789] = "2601-01-25T09:06:02" +ik[3789] = 0 +il[3789] = 1 +im[3789] = 0.0577 +ij[3789] = 1 +id[3790] = "2601-01-26T14:20:02" +ik[3790] = 1 +il[3790] = -8 +im[3790] = 0.0367 +ij[3790] = 2 +id[3791] = "2601-05-21T22:33:03" +ik[3791] = 0 +il[3791] = 122 +im[3791] = 0.1401 +ij[3791] = 1 +id[3792] = "2601-05-23T21:18:03" +ik[3792] = 1 +il[3792] = 109 +im[3792] = 0.0245 +ij[3792] = 2 +id[3793] = "2601-09-22T10:44:01" +ik[3793] = -1 +il[3793] = -152 +im[3793] = 0.1522 +ij[3793] = 2 +id[3794] = "2601-09-25T04:04:01" +ik[3794] = 0 +il[3794] = -172 +im[3794] = 0.232 +ij[3794] = 1 +id[3795] = "2602-01-09T12:57:02" +ik[3795] = 0 +il[3795] = 1 +im[3795] = 0.2059 +ij[3795] = 1 +id[3796] = "2602-01-10T05:28:02" +ik[3796] = 1 +il[3796] = -4 +im[3796] = 0.1897 +ij[3796] = 2 +id[3797] = "2602-05-02T15:06:03" +ik[3797] = 0 +il[3797] = 141 +im[3797] = 0.1991 +ij[3797] = 1 +id[3798] = "2602-05-05T12:40:03" +ik[3798] = 1 +il[3798] = 121 +im[3798] = 0.2721 +ij[3798] = 2 +id[3799] = "2602-09-04T22:01:01" +ik[3799] = -1 +il[3799] = -142 +im[3799] = 0.1784 +ij[3799] = 2 +id[3800] = "2602-09-08T02:23:01" +ik[3800] = 0 +il[3800] = -164 +im[3800] = 0.0185 +ij[3800] = 1 +id[3801] = "2602-12-24T20:09:02" +ik[3801] = 0 +il[3801] = 1 +im[3801] = 0.1579 +ij[3801] = 1 +id[3802] = "2602-12-25T00:40:02" +ik[3802] = 1 +il[3802] = 0 +im[3802] = 0.1648 +ij[3802] = 2 +id[3803] = "2603-04-14T01:54:03" +ik[3803] = 0 +il[3803] = 156 +im[3803] = 0.1869 +ij[3803] = 1 +id[3804] = "2603-04-17T07:52:03" +ik[3804] = 1 +il[3804] = 133 +im[3804] = 0.0115 +ij[3804] = 2 +id[3805] = "2603-08-17T23:13:01" +ik[3805] = -1 +il[3805] = -130 +im[3805] = 0.1576 +ij[3805] = 2 +id[3806] = "2603-08-21T08:09:01" +ik[3806] = 0 +il[3806] = -153 +im[3806] = 0.2453 +ij[3806] = 1 +id[3807] = "2603-12-08T21:32:02" +ik[3807] = -1 +il[3807] = 4 +im[3807] = 0.0843 +ij[3807] = 2 +id[3808] = "2603-12-09T04:33:02" +ik[3808] = 0 +il[3808] = 0 +im[3808] = 0.0699 +ij[3808] = 1 +id[3809] = "2604-03-26T06:28:03" +ik[3809] = 0 +il[3809] = 167 +im[3809] = 0.1549 +ij[3809] = 1 +id[3810] = "2604-03-29T09:18:03" +ik[3810] = 1 +il[3810] = 145 +im[3810] = 0.2439 +ij[3810] = 2 +id[3811] = "2604-07-29T16:16:01" +ik[3811] = -1 +il[3811] = -117 +im[3811] = 0.1867 +ij[3811] = 2 +id[3812] = "2604-08-01T17:01:01" +ik[3812] = 0 +il[3812] = -138 +im[3812] = 0.034 +ij[3812] = 1 +id[3813] = "2604-11-21T17:13:02" +ik[3813] = -1 +il[3813] = 8 +im[3813] = 0.2213 +ij[3813] = 2 +id[3814] = "2604-11-22T11:59:02" +ik[3814] = 0 +il[3814] = 0 +im[3814] = 0.2112 +ij[3814] = 1 +id[3815] = "2605-03-09T02:52:03" +ik[3815] = 0 +il[3815] = 174 +im[3815] = 0.1248 +ij[3815] = 1 +id[3816] = "2605-03-11T19:08:03" +ik[3816] = 1 +il[3816] = 155 +im[3816] = 0.0208 +ij[3816] = 2 +id[3817] = "2605-07-11T04:30:01" +ik[3817] = -1 +il[3817] = -104 +im[3817] = 0.1225 +ij[3817] = 2 +id[3818] = "2605-07-13T05:16:01" +ik[3818] = 0 +il[3818] = -117 +im[3818] = 0.2129 +ij[3818] = 1 +id[3819] = "2605-11-05T10:01:02" +ik[3819] = -1 +il[3819] = 12 +im[3819] = 0.0916 +ij[3819] = 2 +id[3820] = "2605-11-06T17:01:02" +ik[3820] = 0 +il[3820] = 0 +im[3820] = 0.152 +ij[3820] = 1 +id[3821] = "2606-02-20T11:59:03" +ik[3821] = 0 +il[3821] = 178 +im[3821] = 0.2012 +ij[3821] = 1 +id[3822] = "2606-02-22T14:49:03" +ik[3822] = 1 +il[3822] = 163 +im[3822] = 0.2185 +ij[3822] = 2 +id[3823] = "2606-06-22T15:47:01" +ik[3823] = -1 +il[3823] = -91 +im[3823] = 0.229 +ij[3823] = 2 +id[3824] = "2606-06-23T03:21:01" +ik[3824] = 0 +il[3824] = -94 +im[3824] = 0.212 +ij[3824] = 1 +id[3825] = "2606-10-19T21:04:02" +ik[3825] = -1 +il[3825] = 16 +im[3825] = 0.1822 +ij[3825] = 2 +id[3826] = "2606-10-21T17:16:02" +ik[3826] = 0 +il[3826] = 2 +im[3826] = 0.1015 +ij[3826] = 1 +id[3827] = "2607-02-04T06:28:03" +ik[3827] = 0 +il[3827] = -179 +im[3827] = 0.0045 +ij[3827] = 1 +id[3828] = "2607-02-05T19:08:03" +ik[3828] = 1 +il[3828] = 169 +im[3828] = 0.0841 +ij[3828] = 2 +id[3829] = "2607-06-03T00:28:01" +ik[3829] = 0 +il[3829] = -71 +im[3829] = 0.0226 +ij[3829] = 1 +id[3830] = "2607-06-04T04:01:01" +ik[3830] = 1 +il[3830] = -78 +im[3830] = 0.0949 +ij[3830] = 2 +id[3831] = "2607-10-02T00:11:02" +ik[3831] = -1 +il[3831] = 30 +im[3831] = 0.1667 +ij[3831] = 2 +id[3832] = "2607-10-05T10:04:02" +ik[3832] = 0 +il[3832] = 5 +im[3832] = 0.233 +ij[3832] = 1 +id[3833] = "2608-01-19T07:40:03" +ik[3833] = 0 +il[3833] = -179 +im[3833] = 0.1824 +ij[3833] = 1 +id[3834] = "2608-01-20T07:08:03" +ik[3834] = 1 +il[3834] = 174 +im[3834] = 0.1491 +ij[3834] = 2 +id[3835] = "2608-05-13T07:54:01" +ik[3835] = 0 +il[3835] = -49 +im[3835] = 0.2705 +ij[3835] = 1 +id[3836] = "2608-05-15T18:11:01" +ik[3836] = 1 +il[3836] = -66 +im[3836] = 0.2539 +ij[3836] = 2 +id[3837] = "2608-09-14T17:42:02" +ik[3837] = -1 +il[3837] = 34 +im[3837] = 0.1149 +ij[3837] = 2 +id[3838] = "2608-09-17T16:18:02" +ik[3838] = 0 +il[3838] = 11 +im[3838] = 0.0582 +ij[3838] = 1 +id[3839] = "2609-01-02T13:11:03" +ik[3839] = 0 +il[3839] = -179 +im[3839] = 0.1677 +ij[3839] = 1 +id[3840] = "2609-01-03T00:25:03" +ik[3840] = 1 +il[3840] = 178 +im[3840] = 0.1822 +ij[3840] = 2 +id[3841] = "2609-04-24T08:09:01" +ik[3841] = 0 +il[3841] = -32 +im[3841] = 0.1095 +ij[3841] = 1 +id[3842] = "2609-04-27T10:59:01" +ik[3842] = 1 +il[3842] = -54 +im[3842] = 0.0914 +ij[3842] = 2 +id[3843] = "2609-08-28T00:40:02" +ik[3843] = -1 +il[3843] = 43 +im[3843] = 0.2322 +ij[3843] = 2 +id[3844] = "2609-08-31T08:09:02" +ik[3844] = 0 +il[3844] = 20 +im[3844] = 0.2335 +ij[3844] = 1 +id[3845] = "2609-12-17T20:35:03" +ik[3845] = -1 +il[3845] = -178 +im[3845] = 0.0295 +ij[3845] = 2 +id[3846] = "2609-12-17T20:52:03" +ik[3846] = 0 +il[3846] = -179 +im[3846] = 0.0289 +ij[3846] = 1 +id[3847] = "2610-04-06T02:37:01" +ik[3847] = 0 +il[3847] = -19 +im[3847] = 0.2294 +ij[3847] = 1 +id[3848] = "2610-04-09T08:20:01" +ik[3848] = 1 +il[3848] = -42 +im[3848] = 0.249 +ij[3848] = 2 +id[3849] = "2610-08-09T21:47:02" +ik[3849] = -1 +il[3849] = 56 +im[3849] = 0.0952 +ij[3849] = 2 +id[3850] = "2610-08-13T05:16:02" +ik[3850] = 0 +il[3850] = 33 +im[3850] = 0.1078 +ij[3850] = 1 +id[3851] = "2610-12-01T17:13:03" +ik[3851] = -1 +il[3851] = -174 +im[3851] = 0.2004 +ij[3851] = 2 +id[3852] = "2610-12-02T05:16:03" +ik[3852] = 0 +il[3852] = 180 +im[3852] = 0.189 +ij[3852] = 1 +id[3853] = "2611-03-19T14:23:01" +ik[3853] = 0 +il[3853] = -10 +im[3853] = 0.0653 +ij[3853] = 1 +id[3854] = "2611-03-22T13:08:01" +ik[3854] = 1 +il[3854] = -31 +im[3854] = 0.1098 +ij[3854] = 2 +id[3855] = "2611-07-22T12:25:02" +ik[3855] = -1 +il[3855] = 69 +im[3855] = 0.218 +ij[3855] = 2 +id[3856] = "2611-07-25T05:01:02" +ik[3856] = 0 +il[3856] = 50 +im[3856] = 0.2574 +ij[3856] = 1 +id[3857] = "2611-11-15T11:56:03" +ik[3857] = -1 +il[3857] = -170 +im[3857] = 0.1222 +ij[3857] = 2 +id[3858] = "2611-11-16T11:59:03" +ik[3858] = 0 +il[3858] = -180 +im[3858] = 0.1624 +ij[3858] = 1 +id[3859] = "2612-03-01T16:33:01" +ik[3859] = 0 +il[3859] = -4 +im[3859] = 0.2261 +ij[3859] = 1 +id[3860] = "2612-03-04T03:18:01" +ik[3860] = 1 +il[3860] = -22 +im[3860] = 0.2095 +ij[3860] = 2 +id[3861] = "2612-07-02T23:56:02" +ik[3861] = -1 +il[3861] = 82 +im[3861] = 0.1297 +ij[3861] = 2 +id[3862] = "2612-07-04T09:49:02" +ik[3862] = 0 +il[3862] = 72 +im[3862] = 0.0472 +ij[3862] = 1 +id[3863] = "2612-10-29T02:35:03" +ik[3863] = -1 +il[3863] = -166 +im[3863] = 0.1281 +ij[3863] = 2 +id[3864] = "2612-10-30T15:06:03" +ik[3864] = 0 +il[3864] = -179 +im[3864] = 0.0558 +ij[3864] = 1 +id[3865] = "2613-02-13T05:45:01" +ik[3865] = 0 +il[3865] = 0 +im[3865] = 0.0664 +ij[3865] = 1 +id[3866] = "2613-02-15T02:35:01" +ik[3866] = 1 +il[3866] = -14 +im[3866] = 0.1561 +ij[3866] = 2 +id[3867] = "2613-06-14T05:59:02" +ik[3867] = 0 +il[3867] = 96 +im[3867] = 0.1819 +ij[3867] = 1 +id[3868] = "2613-06-14T11:28:02" +ik[3868] = 1 +il[3868] = 95 +im[3868] = 0.1921 +ij[3868] = 2 +id[3869] = "2613-10-12T10:30:03" +ik[3869] = -1 +il[3869] = -161 +im[3869] = 0.2177 +ij[3869] = 2 +id[3870] = "2613-10-14T12:28:03" +ik[3870] = 0 +il[3870] = -177 +im[3870] = 0.2122 +ij[3870] = 1 +id[3871] = "2614-01-28T03:35:01" +ik[3871] = 0 +il[3871] = 1 +im[3871] = 0.166 +ij[3871] = 1 +id[3872] = "2614-01-29T10:30:01" +ik[3872] = 1 +il[3872] = -8 +im[3872] = 0.1116 +ij[3872] = 2 +id[3873] = "2614-05-25T06:13:02" +ik[3873] = 0 +il[3873] = 119 +im[3873] = 0.2393 +ij[3873] = 1 +id[3874] = "2614-05-27T00:25:02" +ik[3874] = 1 +il[3874] = 107 +im[3874] = 0.1725 +ij[3874] = 2 +id[3875] = "2614-09-25T09:47:03" +ik[3875] = -1 +il[3875] = -153 +im[3875] = 0.0543 +ij[3875] = 2 +id[3876] = "2614-09-28T01:11:03" +ik[3876] = 0 +il[3876] = -172 +im[3876] = 0.109 +ij[3876] = 1 +id[3877] = "2615-01-12T06:42:01" +ik[3877] = 0 +il[3877] = 1 +im[3877] = 0.1874 +ij[3877] = 1 +id[3878] = "2615-01-13T01:08:01" +ik[3878] = 1 +il[3878] = -4 +im[3878] = 0.2051 +ij[3878] = 2 +id[3879] = "2615-05-05T20:23:02" +ik[3879] = 0 +il[3879] = 138 +im[3879] = 0.0259 +ij[3879] = 1 +id[3880] = "2615-05-08T15:32:02" +ik[3880] = 1 +il[3880] = 119 +im[3880] = 0.1776 +ij[3880] = 2 +id[3881] = "2615-09-07T22:44:03" +ik[3881] = -1 +il[3881] = -144 +im[3881] = 0.247 +ij[3881] = 2 +id[3882] = "2615-09-11T01:54:03" +ik[3882] = 0 +il[3882] = -166 +im[3882] = 0.1796 +ij[3882] = 1 +id[3883] = "2615-12-27T13:25:01" +ik[3883] = 0 +il[3883] = 1 +im[3883] = 0.0214 +ij[3883] = 1 +id[3884] = "2615-12-27T19:52:01" +ik[3884] = 1 +il[3884] = 0 +im[3884] = 0.0349 +ij[3884] = 2 +id[3885] = "2616-04-16T04:18:02" +ik[3885] = 0 +il[3885] = 154 +im[3885] = 0.2618 +ij[3885] = 1 +id[3886] = "2616-04-19T10:01:02" +ik[3886] = 1 +il[3886] = 131 +im[3886] = 0.196 +ij[3886] = 2 +id[3887] = "2616-08-20T01:23:03" +ik[3887] = -1 +il[3887] = -132 +im[3887] = 0.0385 +ij[3887] = 2 +id[3888] = "2616-08-23T10:18:03" +ik[3888] = 0 +il[3888] = -155 +im[3888] = 0.1881 +ij[3888] = 1 +id[3889] = "2616-12-10T16:30:01" +ik[3889] = -1 +il[3889] = 4 +im[3889] = 0.1794 +ij[3889] = 2 +id[3890] = "2616-12-10T21:49:01" +ik[3890] = 0 +il[3890] = 0 +im[3890] = 0.1727 +ij[3890] = 1 +id[3891] = "2617-03-29T06:28:02" +ik[3891] = 0 +il[3891] = 165 +im[3891] = 0.0296 +ij[3891] = 1 +id[3892] = "2617-04-01T10:16:02" +ik[3892] = 1 +il[3892] = 143 +im[3892] = 0.1826 +ij[3892] = 2 +id[3893] = "2617-08-01T19:23:03" +ik[3893] = -1 +il[3893] = -119 +im[3893] = 0.2634 +ij[3893] = 2 +id[3894] = "2617-08-04T22:33:03" +ik[3894] = 0 +il[3894] = -140 +im[3894] = 0.2084 +ij[3894] = 1 +id[3895] = "2617-11-24T12:40:01" +ik[3895] = -1 +il[3895] = 8 +im[3895] = 0.1556 +ij[3895] = 2 +id[3896] = "2617-11-25T05:30:01" +ik[3896] = 0 +il[3896] = 0 +im[3896] = 0.1791 +ij[3896] = 1 +id[3897] = "2618-03-12T00:42:02" +ik[3897] = 0 +il[3897] = 173 +im[3897] = 0.2405 +ij[3897] = 1 +id[3898] = "2618-03-14T18:54:02" +ik[3898] = 1 +il[3898] = 153 +im[3898] = 0.1768 +ij[3898] = 2 +id[3899] = "2618-07-14T08:06:03" +ik[3899] = -1 +il[3899] = -106 +im[3899] = 0.0425 +ij[3899] = 2 +id[3900] = "2618-07-16T13:25:03" +ik[3900] = 0 +il[3900] = -121 +im[3900] = 0.1322 +ij[3900] = 1 +id[3901] = "2618-11-08T05:56:01" +ik[3901] = -1 +il[3901] = 12 +im[3901] = 0.0635 +ij[3901] = 2 +id[3902] = "2618-11-09T11:01:01" +ik[3902] = 0 +il[3902] = 0 +im[3902] = 0.0016 +ij[3902] = 1 +id[3903] = "2619-02-23T08:09:02" +ik[3903] = 0 +il[3903] = 178 +im[3903] = 0.1213 +ij[3903] = 1 +id[3904] = "2619-02-25T12:54:02" +ik[3904] = 1 +il[3904] = 162 +im[3904] = 0.2084 +ij[3904] = 2 +id[3905] = "2619-06-25T19:23:03" +ik[3905] = -1 +il[3905] = -93 +im[3905] = 0.2568 +ij[3905] = 2 +id[3906] = "2619-06-26T12:57:03" +ik[3906] = 0 +il[3906] = -98 +im[3906] = 0.2653 +ij[3906] = 1 +id[3907] = "2619-10-22T17:56:01" +ik[3907] = -1 +il[3907] = 16 +im[3907] = 0.2148 +ij[3907] = 2 +id[3908] = "2619-10-24T12:13:01" +ik[3908] = 0 +il[3908] = 2 +im[3908] = 0.191 +ij[3908] = 1 +id[3909] = "2620-02-07T01:11:02" +ik[3909] = 0 +il[3909] = -179 +im[3909] = 0.1548 +ij[3909] = 1 +id[3910] = "2620-02-08T16:16:02" +ik[3910] = 1 +il[3910] = 168 +im[3910] = 0.078 +ij[3910] = 2 +id[3911] = "2620-06-05T09:21:03" +ik[3911] = 0 +il[3911] = -74 +im[3911] = 0.11 +ij[3911] = 1 +id[3912] = "2620-06-06T07:23:03" +ik[3912] = 1 +il[3912] = -80 +im[3912] = 0.0607 +ij[3912] = 2 +id[3913] = "2620-10-04T22:30:01" +ik[3913] = -1 +il[3913] = 22 +im[3913] = 0.0314 +ij[3913] = 2 +id[3914] = "2620-10-07T06:13:01" +ik[3914] = 0 +il[3914] = 5 +im[3914] = 0.1448 +ij[3914] = 1 +id[3915] = "2621-01-21T01:40:02" +ik[3915] = 0 +il[3915] = -179 +im[3915] = 0.2135 +ij[3915] = 1 +id[3916] = "2621-01-22T03:04:02" +ik[3916] = 1 +il[3916] = 174 +im[3916] = 0.2263 +ij[3916] = 2 +id[3917] = "2621-05-16T14:37:03" +ik[3917] = 0 +il[3917] = -52 +im[3917] = 0.1521 +ij[3917] = 1 +id[3918] = "2621-05-18T21:04:03" +ik[3918] = 1 +il[3918] = -68 +im[3918] = 0.2393 +ij[3918] = 2 +id[3919] = "2621-09-17T17:28:01" +ik[3919] = -1 +il[3919] = 31 +im[3919] = 0.213 +ij[3919] = 2 +id[3920] = "2621-09-20T14:09:01" +ik[3920] = 0 +il[3920] = 10 +im[3920] = 0.1028 +ij[3920] = 1 +id[3921] = "2622-01-05T06:42:02" +ik[3921] = 0 +il[3921] = -179 +im[3921] = 0.0623 +ij[3921] = 1 +id[3922] = "2622-01-05T19:52:02" +ik[3922] = 1 +il[3922] = 178 +im[3922] = 0.0899 +ij[3922] = 2 +id[3923] = "2622-04-27T12:13:03" +ik[3923] = 0 +il[3923] = -34 +im[3923] = 0.2258 +ij[3923] = 1 +id[3924] = "2622-04-30T13:23:03" +ik[3924] = 1 +il[3924] = -55 +im[3924] = 0.0919 +ij[3924] = 2 +id[3925] = "2622-08-31T01:52:01" +ik[3925] = -1 +il[3925] = 41 +im[3925] = 0.0907 +ij[3925] = 2 +id[3926] = "2622-09-03T08:23:01" +ik[3926] = 0 +il[3926] = 18 +im[3926] = 0.2178 +ij[3926] = 1 +id[3927] = "2622-12-20T14:09:02" +ik[3927] = 0 +il[3927] = -179 +im[3927] = 0.1682 +ij[3927] = 1 +id[3928] = "2622-12-20T15:32:02" +ik[3928] = 1 +il[3928] = -178 +im[3928] = 0.1662 +ij[3928] = 2 +id[3929] = "2623-04-09T03:49:03" +ik[3929] = 0 +il[3929] = -21 +im[3929] = 0.0863 +ij[3929] = 1 +id[3930] = "2623-04-12T10:01:03" +ik[3930] = 1 +il[3930] = -43 +im[3930] = 0.2273 +ij[3930] = 2 +id[3931] = "2623-08-13T00:25:01" +ik[3931] = -1 +il[3931] = 54 +im[3931] = 0.2393 +ij[3931] = 2 +id[3932] = "2623-08-16T08:37:01" +ik[3932] = 0 +il[3932] = 31 +im[3932] = 0.1014 +ij[3932] = 1 +id[3933] = "2623-12-04T12:25:02" +ik[3933] = -1 +il[3933] = -174 +im[3933] = 0.1913 +ij[3933] = 2 +id[3934] = "2623-12-04T22:33:02" +ik[3934] = 0 +il[3934] = 180 +im[3934] = 0.2017 +ij[3934] = 1 +id[3935] = "2624-03-21T13:11:03" +ik[3935] = 0 +il[3935] = -11 +im[3935] = 0.2226 +ij[3935] = 1 +id[3936] = "2624-03-24T13:37:03" +ik[3936] = 1 +il[3936] = -32 +im[3936] = 0.0996 +ij[3936] = 2 +id[3937] = "2624-07-24T15:47:01" +ik[3937] = -1 +il[3937] = 67 +im[3937] = 0.0991 +ij[3937] = 2 +id[3938] = "2624-07-27T11:45:01" +ik[3938] = 0 +il[3938] = 48 +im[3938] = 0.2285 +ij[3938] = 1 +id[3939] = "2624-11-17T07:37:02" +ik[3939] = -1 +il[3939] = -170 +im[3939] = 0.0124 +ij[3939] = 2 +id[3940] = "2624-11-18T05:30:02" +ik[3940] = 0 +il[3940] = -180 +im[3940] = 0.0472 +ij[3940] = 1 +id[3941] = "2625-03-04T13:25:03" +ik[3941] = 0 +il[3941] = -4 +im[3941] = 0.1642 +ij[3941] = 1 +id[3942] = "2625-03-07T02:06:03" +ik[3942] = 1 +il[3942] = -23 +im[3942] = 0.2336 +ij[3942] = 2 +id[3943] = "2625-07-06T03:32:01" +ik[3943] = -1 +il[3943] = 80 +im[3943] = 0.2678 +ij[3943] = 2 +id[3944] = "2625-07-07T18:57:01" +ik[3944] = 0 +il[3944] = 69 +im[3944] = 0.2269 +ij[3944] = 1 +id[3945] = "2625-10-31T22:59:02" +ik[3945] = -1 +il[3945] = -166 +im[3945] = 0.2092 +ij[3945] = 2 +id[3946] = "2625-11-02T09:35:02" +ik[3946] = 0 +il[3946] = -179 +im[3946] = 0.1769 +ij[3946] = 1 +id[3947] = "2626-02-16T01:25:03" +ik[3947] = 0 +il[3947] = -1 +im[3947] = 0.1317 +ij[3947] = 1 +id[3948] = "2626-02-18T00:25:03" +ik[3948] = 1 +il[3948] = -15 +im[3948] = 0.024 +ij[3948] = 2 +id[3949] = "2626-06-17T15:04:01" +ik[3949] = -1 +il[3949] = 93 +im[3949] = 0.0744 +ij[3949] = 2 +id[3950] = "2626-06-17T15:21:01" +ik[3950] = 0 +il[3950] = 93 +im[3950] = 0.0751 +ij[3950] = 1 +id[3951] = "2626-10-15T08:06:02" +ik[3951] = -1 +il[3951] = -162 +im[3951] = 0.1066 +ij[3951] = 2 +id[3952] = "2626-10-17T07:54:02" +ik[3952] = 0 +il[3952] = -177 +im[3952] = 0.1852 +ij[3952] = 1 +id[3953] = "2627-01-30T22:04:03" +ik[3953] = 0 +il[3953] = 1 +im[3953] = 0.2308 +ij[3953] = 1 +id[3954] = "2627-02-01T07:08:03" +ik[3954] = 1 +il[3954] = -9 +im[3954] = 0.229 +ij[3954] = 2 +id[3955] = "2627-05-28T14:23:01" +ik[3955] = 0 +il[3955] = 116 +im[3955] = 0.2519 +ij[3955] = 1 +id[3956] = "2627-05-30T03:47:01" +ik[3956] = 1 +il[3956] = 105 +im[3956] = 0.2653 +ij[3956] = 2 +id[3957] = "2627-09-28T08:35:02" +ik[3957] = -1 +il[3957] = -155 +im[3957] = 0.1567 +ij[3957] = 2 +id[3958] = "2627-09-30T22:04:02" +ik[3958] = 0 +il[3958] = -173 +im[3958] = 0.0293 +ij[3958] = 1 +id[3959] = "2628-01-15T00:28:03" +ik[3959] = 0 +il[3959] = 1 +im[3959] = 0.0858 +ij[3959] = 1 +id[3960] = "2628-01-15T20:49:03" +ik[3960] = 1 +il[3960] = -5 +im[3960] = 0.1286 +ij[3960] = 2 +id[3961] = "2628-05-08T02:09:01" +ik[3961] = 0 +il[3961] = 136 +im[3961] = 0.1197 +ij[3961] = 1 +id[3962] = "2628-05-10T18:11:01" +ik[3962] = 1 +il[3962] = 117 +im[3962] = 0.0381 +ij[3962] = 2 +id[3963] = "2628-09-09T23:13:02" +ik[3963] = -1 +il[3963] = -145 +im[3963] = 0.1597 +ij[3963] = 2 +id[3964] = "2628-09-13T00:42:02" +ik[3964] = 0 +il[3964] = -167 +im[3964] = 0.2244 +ij[3964] = 1 +id[3965] = "2628-12-29T06:57:03" +ik[3965] = 0 +il[3965] = 1 +im[3965] = 0.1601 +ij[3965] = 1 +id[3966] = "2628-12-29T15:03:03" +ik[3966] = 1 +il[3966] = -1 +im[3966] = 0.1463 +ij[3966] = 2 +id[3967] = "2629-04-19T07:11:01" +ik[3967] = 0 +il[3967] = 152 +im[3967] = 0.1739 +ij[3967] = 1 +id[3968] = "2629-04-22T12:11:01" +ik[3968] = 1 +il[3968] = 130 +im[3968] = 0.2449 +ij[3968] = 2 +id[3969] = "2629-08-23T03:18:02" +ik[3969] = -1 +il[3969] = -134 +im[3969] = 0.1543 +ij[3969] = 2 +id[3970] = "2629-08-26T11:45:02" +ik[3970] = 0 +il[3970] = -157 +im[3970] = 0.0248 +ij[3970] = 1 +id[3971] = "2629-12-13T11:27:03" +ik[3971] = -1 +il[3971] = 3 +im[3971] = 0.2195 +ij[3971] = 2 +id[3972] = "2629-12-13T15:06:03" +ik[3972] = 0 +il[3972] = 0 +im[3972] = 0.2215 +ij[3972] = 1 +id[3973] = "2630-04-01T06:42:01" +ik[3973] = 0 +il[3973] = 164 +im[3973] = 0.1616 +ij[3973] = 1 +id[3974] = "2630-04-04T11:27:01" +ik[3974] = 1 +il[3974] = 141 +im[3974] = 0.0184 +ij[3974] = 2 +id[3975] = "2630-08-04T22:15:02" +ik[3975] = -1 +il[3975] = -121 +im[3975] = 0.1834 +ij[3975] = 2 +id[3976] = "2630-08-08T03:21:02" +ik[3976] = 0 +il[3976] = -143 +im[3976] = 0.2413 +ij[3976] = 1 +id[3977] = "2630-11-27T07:51:03" +ik[3977] = -1 +il[3977] = 7 +im[3977] = 0.0445 +ij[3977] = 2 +id[3978] = "2630-11-27T23:01:03" +ik[3978] = 0 +il[3978] = 0 +im[3978] = 0.0778 +ij[3978] = 1 +id[3979] = "2631-03-14T22:47:01" +ik[3979] = 0 +il[3979] = 172 +im[3979] = 0.1974 +ij[3979] = 1 +id[3980] = "2631-03-17T18:39:01" +ik[3980] = 1 +il[3980] = 152 +im[3980] = 0.2277 +ij[3980] = 2 +id[3981] = "2631-07-17T11:42:02" +ik[3981] = -1 +il[3981] = -108 +im[3981] = 0.2075 +ij[3981] = 2 +id[3982] = "2631-07-19T21:21:02" +ik[3982] = 0 +il[3982] = -124 +im[3982] = 0.0844 +ij[3982] = 1 +id[3983] = "2631-11-11T01:51:03" +ik[3983] = -1 +il[3983] = 11 +im[3983] = 0.2021 +ij[3983] = 2 +id[3984] = "2631-11-12T05:01:03" +ik[3984] = 0 +il[3984] = 0 +im[3984] = 0.1682 +ij[3984] = 1 +id[3985] = "2632-02-26T04:18:01" +ik[3985] = 0 +il[3985] = 177 +im[3985] = 0.0893 +ij[3985] = 1 +id[3986] = "2632-02-28T11:13:01" +ik[3986] = 1 +il[3986] = 161 +im[3986] = 0.0462 +ij[3986] = 2 +id[3987] = "2632-06-27T22:59:02" +ik[3987] = -1 +il[3987] = -95 +im[3987] = 0.18 +ij[3987] = 2 +id[3988] = "2632-06-28T22:18:02" +ik[3988] = 0 +il[3988] = -101 +im[3988] = 0.2222 +ij[3988] = 1 +id[3989] = "2632-10-24T14:49:03" +ik[3989] = -1 +il[3989] = 15 +im[3989] = 0.1688 +ij[3989] = 2 +id[3990] = "2632-10-26T06:57:03" +ik[3990] = 0 +il[3990] = 2 +im[3990] = 0.2153 +ij[3990] = 1 +id[3991] = "2633-02-08T20:23:01" +ik[3991] = 0 +il[3991] = -180 +im[3991] = 0.2288 +ij[3991] = 1 +id[3992] = "2633-02-10T13:23:01" +ik[3992] = 1 +il[3992] = 168 +im[3992] = 0.2006 +ij[3992] = 2 +id[3993] = "2633-06-08T18:28:02" +ik[3993] = 0 +il[3993] = -77 +im[3993] = 0.2582 +ij[3993] = 1 +id[3994] = "2633-06-09T10:44:02" +ik[3994] = 1 +il[3994] = -82 +im[3994] = 0.2393 +ij[3994] = 2 +id[3995] = "2633-10-07T20:35:03" +ik[3995] = -1 +il[3995] = 21 +im[3995] = 0.1034 +ij[3995] = 2 +id[3996] = "2633-10-10T02:09:03" +ik[3996] = 0 +il[3996] = 4 +im[3996] = 0.0374 +ij[3996] = 1 +id[3997] = "2634-01-23T19:40:01" +ik[3997] = 0 +il[3997] = -179 +im[3997] = 0.1072 +ij[3997] = 1 +id[3998] = "2634-01-24T23:13:01" +ik[3998] = 1 +il[3998] = 173 +im[3998] = 0.1596 +ij[3998] = 2 +id[3999] = "2634-05-19T21:49:02" +ik[3999] = 0 +il[3999] = -55 +im[3999] = 0.0342 +ij[3999] = 1 +id[4000] = "2634-05-21T00:11:02" +ik[4000] = 1 +il[4000] = -63 +im[4000] = 0.102 +ij[4000] = 2 +id[4001] = "2634-09-20T16:59:03" +ik[4001] = -1 +il[4001] = 29 +im[4001] = 0.2106 +ij[4001] = 2 +id[4002] = "2634-09-23T11:59:03" +ik[4002] = 0 +il[4002] = 9 +im[4002] = 0.2197 +ij[4002] = 1 +id[4003] = "2635-01-07T00:13:01" +ik[4003] = 0 +il[4003] = -171 +im[4003] = 0.1803 +ij[4003] = 1 +id[4004] = "2635-01-08T15:03:01" +ik[4004] = 1 +il[4004] = 177 +im[4004] = 0.1142 +ij[4004] = 2 +id[4005] = "2635-04-30T16:33:02" +ik[4005] = 0 +il[4005] = -37 +im[4005] = 0.242 +ij[4005] = 1 +id[4006] = "2635-05-03T16:01:02" +ik[4006] = 1 +il[4006] = -57 +im[4006] = 0.2316 +ij[4006] = 2 +id[4007] = "2635-09-03T03:03:03" +ik[4007] = -1 +il[4007] = 40 +im[4007] = 0.0648 +ij[4007] = 2 +id[4008] = "2635-09-06T08:23:03" +ik[4008] = 0 +il[4008] = 17 +im[4008] = 0.1296 +ij[4008] = 1 +id[4009] = "2635-12-23T07:40:01" +ik[4009] = 0 +il[4009] = -179 +im[4009] = 0.2256 +ij[4009] = 1 +id[4010] = "2635-12-23T10:44:01" +ik[4010] = 1 +il[4010] = -179 +im[4010] = 0.2258 +ij[4010] = 2 +id[4011] = "2636-04-11T05:45:02" +ik[4011] = 0 +il[4011] = -22 +im[4011] = 0.0681 +ij[4011] = 1 +id[4012] = "2636-04-14T11:56:02" +ik[4012] = 1 +il[4012] = -45 +im[4012] = 0.1236 +ij[4012] = 2 +id[4013] = "2636-08-15T03:03:03" +ik[4013] = -1 +il[4013] = 52 +im[4013] = 0.2258 +ij[4013] = 2 +id[4014] = "2636-08-18T11:45:03" +ik[4014] = 0 +il[4014] = 28 +im[4014] = 0.2009 +ij[4014] = 1 +id[4015] = "2636-12-06T07:23:01" +ik[4015] = -1 +il[4015] = -175 +im[4015] = 0.0743 +ij[4015] = 2 +id[4016] = "2636-12-06T15:49:01" +ik[4016] = 0 +il[4016] = 180 +im[4016] = 0.0929 +ij[4016] = 1 +id[4017] = "2637-03-24T12:28:02" +ik[4017] = 0 +il[4017] = -12 +im[4017] = 0.2217 +ij[4017] = 1 +id[4018] = "2637-03-27T14:20:02" +ik[4018] = 1 +il[4018] = -34 +im[4018] = 0.2004 +ij[4018] = 2 +id[4019] = "2637-07-27T19:08:03" +ik[4019] = -1 +il[4019] = 65 +im[4019] = 0.1024 +ij[4019] = 2 +id[4020] = "2637-07-30T17:59:03" +ik[4020] = 0 +il[4020] = 45 +im[4020] = 0.0888 +ij[4020] = 1 +id[4021] = "2637-11-20T03:03:01" +ik[4021] = -1 +il[4021] = -171 +im[4021] = 0.1823 +ij[4021] = 2 +id[4022] = "2637-11-20T23:16:01" +ik[4022] = 0 +il[4022] = -180 +im[4022] = 0.1503 +ij[4022] = 1 +id[4023] = "2638-03-07T10:47:02" +ik[4023] = 0 +il[4023] = -5 +im[4023] = 0.0366 +ij[4023] = 1 +id[4024] = "2638-03-10T01:23:02" +ik[4024] = 1 +il[4024] = -24 +im[4024] = 0.1201 +ij[4024] = 2 +id[4025] = "2638-07-09T07:08:03" +ik[4025] = -1 +il[4025] = 78 +im[4025] = 0.239 +ij[4025] = 2 +id[4026] = "2638-07-11T03:35:03" +ik[4026] = 0 +il[4026] = 66 +im[4026] = 0.2562 +ij[4026] = 1 +id[4027] = "2638-11-03T19:08:01" +ik[4027] = -1 +il[4027] = -167 +im[4027] = 0.2062 +ij[4027] = 2 +id[4028] = "2638-11-05T03:49:01" +ik[4028] = 0 +il[4028] = -179 +im[4028] = 0.2274 +ij[4028] = 1 +id[4029] = "2639-02-18T21:06:02" +ik[4029] = 0 +il[4029] = -1 +im[4029] = 0.2125 +ij[4029] = 1 +id[4030] = "2639-02-20T22:01:02" +ik[4030] = 1 +il[4030] = -16 +im[4030] = 0.1533 +ij[4030] = 2 +id[4031] = "2639-06-20T18:39:03" +ik[4031] = -1 +il[4031] = 91 +im[4031] = 0.1565 +ij[4031] = 2 +id[4032] = "2639-06-21T00:57:03" +ik[4032] = 0 +il[4032] = 89 +im[4032] = 0.1427 +ij[4032] = 1 +id[4033] = "2639-10-18T05:13:01" +ik[4033] = -1 +il[4033] = -163 +im[4033] = 0.0509 +ij[4033] = 2 +id[4034] = "2639-10-20T03:06:01" +ik[4034] = 0 +il[4034] = -177 +im[4034] = 0.062 +ij[4034] = 1 +id[4035] = "2640-02-02T16:33:02" +ik[4035] = 0 +il[4035] = 1 +im[4035] = 0.1244 +ij[4035] = 1 +id[4036] = "2640-02-04T03:47:02" +ik[4036] = 1 +il[4036] = -10 +im[4036] = 0.1818 +ij[4036] = 2 +id[4037] = "2640-05-30T22:47:03" +ik[4037] = 0 +il[4037] = 112 +im[4037] = 0.1858 +ij[4037] = 1 +id[4038] = "2640-06-01T06:54:03" +ik[4038] = 1 +il[4038] = 103 +im[4038] = 0.2399 +ij[4038] = 2 +id[4039] = "2640-09-30T07:23:01" +ik[4039] = -1 +il[4039] = -156 +im[4039] = 0.2356 +ij[4039] = 2 +id[4040] = "2640-10-02T18:42:01" +ik[4040] = 0 +il[4040] = -174 +im[4040] = 0.2022 +ij[4040] = 1 +id[4041] = "2641-01-16T18:28:02" +ik[4041] = 0 +il[4041] = 1 +im[4041] = 0.1094 +ij[4041] = 1 +id[4042] = "2641-01-17T16:30:02" +ik[4042] = 1 +il[4042] = -5 +im[4042] = 0.0656 +ij[4042] = 2 +id[4043] = "2641-05-11T08:09:03" +ik[4043] = 0 +il[4043] = 133 +im[4043] = 0.2585 +ij[4043] = 1 +id[4044] = "2641-05-13T21:18:03" +ik[4044] = 1 +il[4044] = 116 +im[4044] = 0.1728 +ij[4044] = 2 +id[4045] = "2641-09-12T23:27:01" +ik[4045] = -1 +il[4045] = -147 +im[4045] = 0.0478 +ij[4045] = 2 +id[4046] = "2641-09-15T23:30:01" +ik[4046] = 0 +il[4046] = -168 +im[4046] = 0.191 +ij[4046] = 1 +id[4047] = "2642-01-01T00:28:02" +ik[4047] = 0 +il[4047] = 1 +im[4047] = 0.2168 +ij[4047] = 1 +id[4048] = "2642-01-01T10:15:02" +ik[4048] = 1 +il[4048] = -1 +im[4048] = 0.2133 +ij[4048] = 2 +id[4049] = "2642-04-22T10:33:03" +ik[4049] = 0 +il[4049] = 150 +im[4049] = 0.0607 +ij[4049] = 1 +id[4050] = "2642-04-25T14:20:03" +ik[4050] = 1 +il[4050] = 128 +im[4050] = 0.2199 +ij[4050] = 2 +id[4051] = "2642-08-26T04:59:01" +ik[4051] = -1 +il[4051] = -135 +im[4051] = 0.2367 +ij[4051] = 2 +id[4052] = "2642-08-29T13:11:01" +ik[4052] = 0 +il[4052] = -159 +im[4052] = 0.136 +ij[4052] = 1 +id[4053] = "2642-12-16T06:25:02" +ik[4053] = -1 +il[4053] = 3 +im[4053] = 0.0994 +ij[4053] = 2 +id[4054] = "2642-12-16T08:23:02" +ik[4054] = 0 +il[4054] = 1 +im[4054] = 0.1035 +ij[4054] = 1 +id[4055] = "2643-04-04T07:25:03" +ik[4055] = 0 +il[4055] = 162 +im[4055] = 0.2378 +ij[4055] = 1 +id[4056] = "2643-04-07T12:54:03" +ik[4056] = 1 +il[4056] = 140 +im[4056] = 0.1509 +ij[4056] = 2 +id[4057] = "2643-08-08T01:08:01" +ik[4057] = -1 +il[4057] = -123 +im[4057] = 0.0388 +ij[4057] = 2 +id[4058] = "2643-08-11T07:40:01" +ik[4058] = 0 +il[4058] = -145 +im[4058] = 0.1991 +ij[4058] = 1 +id[4059] = "2643-11-30T03:03:02" +ik[4059] = -1 +il[4059] = 7 +im[4059] = 0.1462 +ij[4059] = 2 +id[4060] = "2643-11-30T16:33:02" +ik[4060] = 0 +il[4060] = 0 +im[4060] = 0.1216 +ij[4060] = 1 +id[4061] = "2644-03-16T21:06:03" +ik[4061] = 0 +il[4061] = 171 +im[4061] = 0.062 +ij[4061] = 1 +id[4062] = "2644-03-19T18:39:03" +ik[4062] = 1 +il[4062] = 151 +im[4062] = 0.1961 +ij[4062] = 2 +id[4063] = "2644-07-19T15:18:01" +ik[4063] = -1 +il[4063] = -110 +im[4063] = 0.2488 +ij[4063] = 2 +id[4064] = "2644-07-22T04:47:01" +ik[4064] = 0 +il[4064] = -127 +im[4064] = 0.1896 +ij[4064] = 1 +id[4065] = "2644-11-12T21:32:02" +ik[4065] = -1 +il[4065] = 11 +im[4065] = 0.2167 +ij[4065] = 2 +id[4066] = "2644-11-13T23:01:02" +ik[4066] = 0 +il[4066] = 0 +im[4066] = 0.221 +ij[4066] = 1 +id[4067] = "2645-02-28T00:57:03" +ik[4067] = 0 +il[4067] = 177 +im[4067] = 0.1878 +ij[4067] = 1 +id[4068] = "2645-03-02T10:01:03" +ik[4068] = 1 +il[4068] = 160 +im[4068] = 0.0871 +ij[4068] = 2 +id[4069] = "2645-07-01T02:35:01" +ik[4069] = -1 +il[4069] = -96 +im[4069] = 0.0246 +ij[4069] = 2 +id[4070] = "2645-07-02T07:40:01" +ik[4070] = 0 +il[4070] = -105 +im[4070] = 0.0493 +ij[4070] = 1 +id[4071] = "2645-10-27T11:27:02" +ik[4071] = -1 +il[4071] = 15 +im[4071] = 0.0031 +ij[4071] = 2 +id[4072] = "2645-10-29T01:40:02" +ik[4072] = 0 +il[4072] = 1 +im[4072] = 0.0865 +ij[4072] = 1 +id[4073] = "2646-02-11T15:35:03" +ik[4073] = 0 +il[4073] = -180 +im[4073] = 0.155 +ij[4073] = 1 +id[4074] = "2646-02-13T10:30:03" +ik[4074] = 1 +il[4074] = 167 +im[4074] = 0.2085 +ij[4074] = 2 +id[4075] = "2646-06-12T03:35:01" +ik[4075] = 0 +il[4075] = -81 +im[4075] = 0.2612 +ij[4075] = 1 +id[4076] = "2646-06-12T14:20:01" +ik[4076] = 1 +il[4076] = -84 +im[4076] = 0.2641 +ij[4076] = 2 +id[4077] = "2646-10-10T18:25:02" +ik[4077] = -1 +il[4077] = 20 +im[4077] = 0.2266 +ij[4077] = 2 +id[4078] = "2646-10-12T22:04:02" +ik[4078] = 0 +il[4078] = 4 +im[4078] = 0.1638 +ij[4078] = 1 +id[4079] = "2647-01-26T13:54:03" +ik[4079] = 0 +il[4079] = -179 +im[4079] = 0.0594 +ij[4079] = 1 +id[4080] = "2647-01-27T19:23:03" +ik[4080] = 1 +il[4080] = 172 +im[4080] = 0.0092 +ij[4080] = 2 +id[4081] = "2647-05-23T05:16:01" +ik[4081] = 0 +il[4081] = -58 +im[4081] = 0.1783 +ij[4081] = 1 +id[4082] = "2647-05-25T03:18:01" +ik[4082] = 1 +il[4082] = -71 +im[4082] = 0.0694 +ij[4082] = 2 +id[4083] = "2647-09-23T16:15:02" +ik[4083] = -1 +il[4083] = 28 +im[4083] = 0.1245 +ij[4083] = 2 +id[4084] = "2647-09-26T09:21:02" +ik[4084] = 0 +il[4084] = 8 +im[4084] = 0.2198 +ij[4084] = 1 +id[4085] = "2648-01-10T17:45:03" +ik[4085] = 0 +il[4085] = -179 +im[4085] = 0.2063 +ij[4085] = 1 +id[4086] = "2648-01-11T10:30:03" +ik[4086] = 1 +il[4086] = 176 +im[4086] = 0.1945 +ij[4086] = 2 +id[4087] = "2648-05-02T21:35:01" +ik[4087] = 0 +il[4087] = -39 +im[4087] = 0.1787 +ij[4087] = 1 +id[4088] = "2648-05-05T18:39:01" +ik[4088] = 1 +il[4088] = -59 +im[4088] = 0.2652 +ij[4088] = 2 +id[4089] = "2648-09-05T04:01:02" +ik[4089] = -1 +il[4089] = 38 +im[4089] = 0.2122 +ij[4089] = 2 +id[4090] = "2648-09-08T08:09:02" +ik[4090] = 0 +il[4090] = 15 +im[4090] = 0.0645 +ij[4090] = 1 +id[4091] = "2648-12-25T00:57:03" +ik[4091] = 0 +il[4091] = -179 +im[4091] = 0.1211 +ij[4091] = 1 +id[4092] = "2648-12-25T05:42:03" +ik[4092] = 1 +il[4092] = -180 +im[4092] = 0.1298 +ij[4092] = 2 +id[4093] = "2649-04-14T07:54:01" +ik[4093] = 0 +il[4093] = -24 +im[4093] = 0.2243 +ij[4093] = 1 +id[4094] = "2649-04-17T13:51:01" +ik[4094] = 1 +il[4094] = -47 +im[4094] = 0.0729 +ij[4094] = 2 +id[4095] = "2649-08-18T05:13:02" +ik[4095] = -1 +il[4095] = 50 +im[4095] = 0.1549 +ij[4095] = 2 +id[4096] = "2649-08-21T14:09:02" +ik[4096] = 0 +il[4096] = 26 +im[4096] = 0.2515 +ij[4096] = 1 +id[4097] = "2649-12-09T02:20:03" +ik[4097] = -1 +il[4097] = -176 +im[4097] = 0.0937 +ij[4097] = 2 +id[4098] = "2649-12-09T09:06:03" +ik[4098] = 0 +il[4098] = 180 +im[4098] = 0.0801 +ij[4098] = 1 +id[4099] = "2650-03-27T12:13:01" +ik[4099] = 0 +il[4099] = -13 +im[4099] = 0.153 +ij[4099] = 1 +id[4100] = "2650-03-30T15:03:01" +ik[4100] = 1 +il[4100] = -35 +im[4100] = 0.2502 +ij[4100] = 2 +id[4101] = "2650-07-30T22:15:02" +ik[4101] = -1 +il[4101] = 63 +im[4101] = 0.2179 +ij[4101] = 2 +id[4102] = "2650-08-02T23:45:02" +ik[4102] = 0 +il[4102] = 42 +im[4102] = 0.0694 +ij[4102] = 1 +id[4103] = "2650-11-22T22:15:03" +ik[4103] = -1 +il[4103] = -172 +im[4103] = 0.2124 +ij[4103] = 2 +id[4104] = "2650-11-23T16:47:03" +ik[4104] = 0 +il[4104] = -180 +im[4104] = 0.2084 +ij[4104] = 1 +id[4105] = "2651-03-10T08:23:01" +ik[4105] = 0 +il[4105] = -6 +im[4105] = 0.162 +ij[4105] = 1 +id[4106] = "2651-03-13T00:54:01" +ik[4106] = 1 +il[4106] = -25 +im[4106] = 0.03 +ij[4106] = 2 +id[4107] = "2651-07-12T10:44:02" +ik[4107] = -1 +il[4107] = 76 +im[4107] = 0.1154 +ij[4107] = 2 +id[4108] = "2651-07-14T12:13:02" +ik[4108] = 0 +il[4108] = 62 +im[4108] = 0.2109 +ij[4108] = 1 +id[4109] = "2651-11-06T15:03:03" +ik[4109] = -1 +il[4109] = -168 +im[4109] = 0.0485 +ij[4109] = 2 +id[4110] = "2651-11-07T21:49:03" +ik[4110] = 0 +il[4110] = -179 +im[4110] = 0.1107 +ij[4110] = 1 +id[4111] = "2652-02-21T17:01:01" +ik[4111] = 0 +il[4111] = -2 +im[4111] = 0.1961 +ij[4111] = 1 +id[4112] = "2652-02-23T20:06:01" +ik[4112] = 1 +il[4112] = -17 +im[4112] = 0.2314 +ij[4112] = 2 +id[4113] = "2652-06-22T22:01:02" +ik[4113] = -1 +il[4113] = 89 +im[4113] = 0.2378 +ij[4113] = 2 +id[4114] = "2652-06-23T10:18:02" +ik[4114] = 0 +il[4114] = 86 +im[4114] = 0.2231 +ij[4114] = 1 +id[4115] = "2652-10-20T02:20:03" +ik[4115] = -1 +il[4115] = -164 +im[4115] = 0.1885 +ij[4115] = 2 +id[4116] = "2652-10-21T22:18:03" +ik[4116] = 0 +il[4116] = -178 +im[4116] = 0.1163 +ij[4116] = 1 +id[4117] = "2653-02-04T11:16:01" +ik[4117] = 0 +il[4117] = 1 +im[4117] = 0.0272 +ij[4117] = 1 +id[4118] = "2653-02-06T00:25:01" +ik[4118] = 1 +il[4118] = -11 +im[4118] = 0.0815 +ij[4118] = 2 +id[4119] = "2653-06-03T07:25:02" +ik[4119] = 0 +il[4119] = 109 +im[4119] = 0.01 +ij[4119] = 1 +id[4120] = "2653-06-04T10:15:02" +ik[4120] = 1 +il[4120] = 101 +im[4120] = 0.0594 +ij[4120] = 2 +id[4121] = "2653-10-03T05:42:03" +ik[4121] = -1 +il[4121] = -157 +im[4121] = 0.168 +ij[4121] = 2 +id[4122] = "2653-10-05T15:06:03" +ik[4122] = 0 +il[4122] = -175 +im[4122] = 0.2201 +ij[4122] = 1 +id[4123] = "2654-01-19T12:28:01" +ik[4123] = 0 +il[4123] = 1 +im[4123] = 0.2012 +ij[4123] = 1 +id[4124] = "2654-01-20T12:25:01" +ik[4124] = 1 +il[4124] = -6 +im[4124] = 0.1768 +ij[4124] = 2 +id[4125] = "2654-05-14T14:37:02" +ik[4125] = 0 +il[4125] = 130 +im[4125] = 0.2511 +ij[4125] = 1 +id[4126] = "2654-05-16T00:11:02" +ik[4126] = 1 +il[4126] = 121 +im[4126] = 0.2611 +ij[4126] = 2 +id[4127] = "2654-09-15T23:27:03" +ik[4127] = -1 +il[4127] = -148 +im[4127] = 0.1549 +ij[4127] = 2 +id[4128] = "2654-09-18T21:49:03" +ik[4128] = 0 +il[4128] = -169 +im[4128] = 0.0325 +ij[4128] = 1 +id[4129] = "2655-01-03T17:45:01" +ik[4129] = 0 +il[4129] = 1 +im[4129] = 0.1531 +ij[4129] = 1 +id[4130] = "2655-01-04T05:27:01" +ik[4130] = 1 +il[4130] = -2 +im[4130] = 0.1707 +ij[4130] = 2 +id[4131] = "2655-04-25T14:09:02" +ik[4131] = 0 +il[4131] = 148 +im[4131] = 0.1562 +ij[4131] = 1 +id[4132] = "2655-04-28T16:59:02" +ik[4132] = 1 +il[4132] = 126 +im[4132] = 0.0335 +ij[4132] = 2 +id[4133] = "2655-08-29T06:39:03" +ik[4133] = -1 +il[4133] = -137 +im[4133] = 0.2209 +ij[4133] = 2 +id[4134] = "2655-09-01T13:54:03" +ik[4134] = 0 +il[4134] = -160 +im[4134] = 0.2355 +ij[4134] = 1 +id[4135] = "2655-12-19T01:37:01" +ik[4135] = -1 +il[4135] = 2 +im[4135] = 0.0419 +ij[4135] = 2 +id[4136] = "2655-12-19T01:40:01" +ik[4136] = 0 +il[4136] = 1 +im[4136] = 0.0418 +ij[4136] = 1 +id[4137] = "2656-04-06T08:23:02" +ik[4137] = 0 +il[4137] = 161 +im[4137] = 0.2185 +ij[4137] = 1 +id[4138] = "2656-04-09T14:20:02" +ik[4138] = 1 +il[4138] = 138 +im[4138] = 0.2515 +ij[4138] = 2 +id[4139] = "2656-08-10T04:01:03" +ik[4139] = -1 +il[4139] = -125 +im[4139] = 0.1541 +ij[4139] = 2 +id[4140] = "2656-08-13T11:30:03" +ik[4140] = 0 +il[4140] = -148 +im[4140] = 0.0626 +ij[4140] = 1 +id[4141] = "2656-12-01T22:15:01" +ik[4141] = -1 +il[4141] = 6 +im[4141] = 0.2073 +ij[4141] = 2 +id[4142] = "2656-12-02T09:49:01" +ik[4142] = 0 +il[4142] = 0 +im[4142] = 0.2018 +ij[4142] = 1 +id[4143] = "2657-03-19T19:54:02" +ik[4143] = 0 +il[4143] = 170 +im[4143] = 0.1229 +ij[4143] = 1 +id[4144] = "2657-03-22T18:54:02" +ik[4144] = 1 +il[4144] = 149 +im[4144] = 0.0582 +ij[4144] = 2 +id[4145] = "2657-07-22T18:39:03" +ik[4145] = -1 +il[4145] = -111 +im[4145] = 0.2188 +ij[4145] = 2 +id[4146] = "2657-07-25T11:44:03" +ik[4146] = 0 +il[4146] = -130 +im[4146] = 0.2683 +ij[4146] = 1 +id[4147] = "2657-11-15T16:59:01" +ik[4147] = -1 +il[4147] = 10 +im[4147] = 0.0968 +ij[4147] = 2 +id[4148] = "2657-11-16T16:47:01" +ik[4148] = 0 +il[4148] = 0 +im[4148] = 0.1405 +ij[4148] = 1 +id[4149] = "2658-03-02T21:49:02" +ik[4149] = 0 +il[4149] = 176 +im[4149] = 0.2316 +ij[4149] = 1 +id[4150] = "2658-03-05T08:49:02" +ik[4150] = 1 +il[4150] = 158 +im[4150] = 0.2317 +ij[4150] = 2 +id[4151] = "2658-07-04T06:11:03" +ik[4151] = -1 +il[4151] = -98 +im[4151] = 0.1752 +ij[4151] = 2 +id[4152] = "2658-07-05T16:47:03" +ik[4152] = 0 +il[4152] = -108 +im[4152] = 0.0987 +ij[4152] = 1 +id[4153] = "2658-10-30T07:51:01" +ik[4153] = -1 +il[4153] = 14 +im[4153] = 0.1329 +ij[4153] = 2 +id[4154] = "2658-10-31T20:08:01" +ik[4154] = 0 +il[4154] = 1 +im[4154] = 0.0612 +ij[4154] = 1 +id[4155] = "2659-02-14T11:01:02" +ik[4155] = 0 +il[4155] = -180 +im[4155] = 0.04 +ij[4155] = 1 +id[4156] = "2659-02-16T08:06:02" +ik[4156] = 1 +il[4156] = 166 +im[4156] = 0.1381 +ij[4156] = 2 +id[4157] = "2659-06-15T12:56:03" +ik[4157] = 0 +il[4157] = -84 +im[4157] = 0.173 +ij[4157] = 1 +id[4158] = "2659-06-15T17:42:03" +ik[4158] = 1 +il[4158] = -86 +im[4158] = 0.1822 +ij[4158] = 2 +id[4159] = "2659-10-13T16:01:01" +ik[4159] = -1 +il[4159] = 18 +im[4159] = 0.1933 +ij[4159] = 2 +id[4160] = "2659-10-15T17:30:01" +ik[4160] = 0 +il[4160] = 3 +im[4160] = 0.214 +ij[4160] = 1 +id[4161] = "2660-01-29T08:23:02" +ik[4161] = 0 +il[4161] = -179 +im[4161] = 0.2006 +ij[4161] = 1 +id[4162] = "2660-01-30T15:47:02" +ik[4162] = 1 +il[4162] = 171 +im[4162] = 0.1593 +ij[4162] = 2 +id[4163] = "2660-05-25T13:11:03" +ik[4163] = 0 +il[4163] = -62 +im[4163] = 0.244 +ij[4163] = 1 +id[4164] = "2660-05-27T06:39:03" +ik[4164] = 1 +il[4164] = -73 +im[4164] = 0.1889 +ij[4164] = 2 +id[4165] = "2660-09-25T15:18:01" +ik[4165] = -1 +il[4165] = 26 +im[4165] = 0.0692 +ij[4165] = 2 +id[4166] = "2660-09-28T06:28:01" +ik[4166] = 0 +il[4166] = 7 +im[4166] = 0.074 +ij[4166] = 1 +id[4167] = "2661-01-12T11:30:02" +ik[4167] = 0 +il[4167] = -179 +im[4167] = 0.1851 +ij[4167] = 1 +id[4168] = "2661-01-13T06:11:02" +ik[4168] = 1 +il[4168] = 176 +im[4168] = 0.2065 +ij[4168] = 2 +id[4169] = "2661-05-06T02:52:03" +ik[4169] = 0 +il[4169] = -42 +im[4169] = 0.0285 +ij[4169] = 1 +id[4170] = "2661-05-08T21:32:03" +ik[4170] = 1 +il[4170] = -61 +im[4170] = 0.1408 +ij[4170] = 2 +id[4171] = "2661-09-08T04:30:01" +ik[4171] = -1 +il[4171] = 36 +im[4171] = 0.2344 +ij[4171] = 2 +id[4172] = "2661-09-11T07:25:01" +ik[4172] = 0 +il[4172] = 14 +im[4172] = 0.1804 +ij[4172] = 1 +id[4173] = "2661-12-27T18:13:02" +ik[4173] = 0 +il[4173] = -179 +im[4173] = 0.0113 +ij[4173] = 1 +id[4174] = "2661-12-28T00:54:02" +ik[4174] = 1 +il[4174] = -180 +im[4174] = 0.0132 +ij[4174] = 2 +id[4175] = "2662-04-17T10:18:03" +ik[4175] = 0 +il[4175] = -26 +im[4175] = 0.2494 +ij[4175] = 1 +id[4176] = "2662-04-20T16:01:03" +ik[4176] = 1 +il[4176] = -49 +im[4176] = 0.1957 +ij[4176] = 2 +id[4177] = "2662-08-21T07:23:01" +ik[4177] = -1 +il[4177] = 48 +im[4177] = 0.0527 +ij[4177] = 2 +id[4178] = "2662-08-24T16:18:01" +ik[4178] = 0 +il[4178] = 24 +im[4178] = 0.1405 +ij[4178] = 1 +id[4179] = "2662-12-11T21:32:02" +ik[4179] = -1 +il[4179] = -176 +im[4179] = 0.205 +ij[4179] = 2 +id[4180] = "2662-12-12T02:37:02" +ik[4180] = 0 +il[4180] = 180 +im[4180] = 0.2012 +ij[4180] = 1 +id[4181] = "2663-03-30T12:13:03" +ik[4181] = 0 +il[4181] = -15 +im[4181] = 0.0535 +ij[4181] = 1 +id[4182] = "2663-04-02T16:01:03" +ik[4182] = 1 +il[4182] = -37 +im[4182] = 0.1347 +ij[4182] = 2 +id[4183] = "2663-08-03T01:23:01" +ik[4183] = -1 +il[4183] = 61 +im[4183] = 0.2613 +ij[4183] = 2 +id[4184] = "2663-08-06T05:01:01" +ik[4184] = 0 +il[4184] = 39 +im[4184] = 0.217 +ij[4184] = 1 +id[4185] = "2663-11-25T17:42:02" +ik[4185] = -1 +il[4185] = -172 +im[4185] = 0.1496 +ij[4185] = 2 +id[4186] = "2663-11-26T10:18:02" +ik[4186] = 0 +il[4186] = -180 +im[4186] = 0.1749 +ij[4186] = 1 +id[4187] = "2664-03-12T06:13:03" +ik[4187] = 0 +il[4187] = -7 +im[4187] = 0.2438 +ij[4187] = 1 +id[4188] = "2664-03-15T00:25:03" +ik[4188] = 1 +il[4188] = -27 +im[4188] = 0.1902 +ij[4188] = 2 +id[4189] = "2664-07-14T14:20:01" +ik[4189] = -1 +il[4189] = 74 +im[4189] = 0.0755 +ij[4189] = 2 +id[4190] = "2664-07-16T20:23:01" +ik[4190] = 0 +il[4190] = 59 +im[4190] = 0.0738 +ij[4190] = 1 +id[4191] = "2664-11-08T10:59:02" +ik[4191] = -1 +il[4191] = -168 +im[4191] = 0.0843 +ij[4191] = 2 +id[4192] = "2664-11-09T16:04:02" +ik[4192] = 0 +il[4192] = -180 +im[4192] = 0.0189 +ij[4192] = 1 +id[4193] = "2665-02-23T13:11:03" +ik[4193] = 0 +il[4193] = -2 +im[4193] = 0.0768 +ij[4193] = 1 +id[4194] = "2665-02-25T18:25:03" +ik[4194] = 1 +il[4194] = -18 +im[4194] = 0.1832 +ij[4194] = 2 +id[4195] = "2665-06-26T01:37:01" +ik[4195] = -1 +il[4195] = 87 +im[4195] = 0.2616 +ij[4195] = 2 +id[4196] = "2665-06-26T19:54:01" +ik[4196] = 0 +il[4196] = 82 +im[4196] = 0.2741 +ij[4196] = 1 +id[4197] = "2665-10-22T23:13:02" +ik[4197] = -1 +il[4197] = -164 +im[4197] = 0.2116 +ij[4197] = 2 +id[4198] = "2665-10-24T17:16:02" +ik[4198] = 0 +il[4198] = -178 +im[4198] = 0.211 +ij[4198] = 1 +id[4199] = "2666-02-07T06:13:03" +ik[4199] = 0 +il[4199] = 1 +im[4199] = 0.1886 +ij[4199] = 1 +id[4200] = "2666-02-08T21:32:03" +ik[4200] = 1 +il[4200] = -12 +im[4200] = 0.1213 +ij[4200] = 2 +id[4201] = "2666-06-06T16:18:01" +ik[4201] = 0 +il[4201] = 106 +im[4201] = 0.1469 +ij[4201] = 1 +id[4202] = "2666-06-07T13:37:01" +ik[4202] = 1 +il[4202] = 100 +im[4202] = 0.0948 +ij[4202] = 2 +id[4203] = "2666-10-06T04:01:02" +ik[4203] = -1 +il[4203] = -158 +im[4203] = 0.0272 +ij[4203] = 2 +id[4204] = "2666-10-08T11:30:02" +ik[4204] = 0 +il[4204] = -175 +im[4204] = 0.1367 +ij[4204] = 1 +id[4205] = "2667-01-22T06:28:03" +ik[4205] = 0 +il[4205] = 1 +im[4205] = 0.2121 +ij[4205] = 1 +id[4206] = "2667-01-23T08:20:03" +ik[4206] = 1 +il[4206] = -7 +im[4206] = 0.2287 +ij[4206] = 2 +id[4207] = "2667-05-17T21:20:01" +ik[4207] = 0 +il[4207] = 127 +im[4207] = 0.1373 +ij[4207] = 1 +id[4208] = "2667-05-20T03:18:01" +ik[4208] = 1 +il[4208] = 112 +im[4208] = 0.2332 +ij[4208] = 2 +id[4209] = "2667-09-18T23:13:02" +ik[4209] = -1 +il[4209] = -150 +im[4209] = 0.2157 +ij[4209] = 2 +id[4210] = "2667-09-21T19:40:02" +ik[4210] = 0 +il[4210] = -170 +im[4210] = 0.118 +ij[4210] = 1 +id[4211] = "2668-01-06T11:30:03" +ik[4211] = 0 +il[4211] = 1 +im[4211] = 0.0164 +ij[4211] = 1 +id[4212] = "2668-01-07T00:54:03" +ik[4212] = 1 +il[4212] = -3 +im[4212] = 0.0479 +ij[4212] = 2 +id[4213] = "2668-04-27T18:28:01" +ik[4213] = 0 +il[4213] = 145 +im[4213] = 0.2297 +ij[4213] = 1 +id[4214] = "2668-04-30T19:22:01" +ik[4214] = 1 +il[4214] = 124 +im[4214] = 0.106 +ij[4214] = 2 +id[4215] = "2668-08-31T07:51:02" +ik[4215] = -1 +il[4215] = -139 +im[4215] = 0.0586 +ij[4215] = 2 +id[4216] = "2668-09-03T14:08:02" +ik[4216] = 0 +il[4216] = -162 +im[4216] = 0.1992 +ij[4216] = 1 +id[4217] = "2668-12-20T18:56:03" +ik[4217] = 0 +il[4217] = 1 +im[4217] = 0.1996 +ij[4217] = 1 +id[4218] = "2668-12-20T20:34:03" +ik[4218] = 1 +il[4218] = 1 +im[4218] = 0.1979 +ij[4218] = 2 +id[4219] = "2669-04-09T09:49:01" +ik[4219] = 0 +il[4219] = 159 +im[4219] = 0.0529 +ij[4219] = 1 +id[4220] = "2669-04-12T16:01:01" +ik[4220] = 1 +il[4220] = 136 +im[4220] = 0.2037 +ij[4220] = 2 +id[4221] = "2669-08-13T06:39:02" +ik[4221] = -1 +il[4221] = -127 +im[4221] = 0.2344 +ij[4221] = 2 +id[4222] = "2669-08-16T14:52:02" +ik[4222] = 0 +il[4222] = -150 +im[4222] = 0.106 +ij[4222] = 1 +id[4223] = "2669-12-04T17:13:03" +ik[4223] = -1 +il[4223] = 5 +im[4223] = 0.1895 +ij[4223] = 2 +id[4224] = "2669-12-05T03:20:03" +ik[4224] = 0 +il[4224] = 0 +im[4224] = 0.2012 +ij[4224] = 1 +id[4225] = "2670-03-22T18:42:01" +ik[4225] = 0 +il[4225] = 169 +im[4225] = 0.2211 +ij[4225] = 1 +id[4226] = "2670-03-25T19:22:01" +ik[4226] = 1 +il[4226] = 148 +im[4226] = 0.1098 +ij[4226] = 2 +id[4227] = "2670-07-25T22:01:02" +ik[4227] = -1 +il[4227] = -113 +im[4227] = 0.0472 +ij[4227] = 2 +id[4228] = "2670-07-28T18:28:02" +ik[4228] = 0 +il[4228] = -133 +im[4228] = 0.1931 +ij[4228] = 1 +id[4229] = "2670-11-18T12:39:03" +ik[4229] = -1 +il[4229] = 9 +im[4229] = 0.0482 +ij[4229] = 2 +id[4230] = "2670-11-19T10:32:03" +ik[4230] = 0 +il[4230] = 0 +im[4230] = 0.0155 +ij[4230] = 1 +id[4231] = "2671-03-05T18:42:01" +ik[4231] = 0 +il[4231] = 176 +im[4231] = 0.1199 +ij[4231] = 1 +id[4232] = "2671-03-08T07:51:01" +ik[4232] = 1 +il[4232] = 157 +im[4232] = 0.213 +ij[4232] = 2 +id[4233] = "2671-07-07T09:46:02" +ik[4233] = -1 +il[4233] = -100 +im[4233] = 0.2725 +ij[4233] = 2 +id[4234] = "2671-07-09T01:54:02" +ik[4234] = 0 +il[4234] = -112 +im[4234] = 0.237 +ij[4234] = 1 +id[4235] = "2671-11-02T04:01:03" +ik[4235] = -1 +il[4235] = 13 +im[4235] = 0.2241 +ij[4235] = 2 +id[4236] = "2671-11-03T14:23:03" +ik[4236] = 0 +il[4236] = 1 +im[4236] = 0.2077 +ij[4236] = 1 +id[4237] = "2672-02-17T06:28:01" +ik[4237] = 0 +il[4237] = 179 +im[4237] = 0.159 +ij[4237] = 1 +id[4238] = "2672-02-19T05:42:01" +ik[4238] = 1 +il[4238] = 165 +im[4238] = 0.0683 +ij[4238] = 2 +id[4239] = "2672-06-17T21:18:02" +ik[4239] = -1 +il[4239] = -88 +im[4239] = 0.0246 +ij[4239] = 2 +id[4240] = "2672-06-17T22:18:02" +ik[4240] = 0 +il[4240] = -88 +im[4240] = 0.0268 +ij[4240] = 1 +id[4241] = "2672-10-15T13:22:03" +ik[4241] = -1 +il[4241] = 18 +im[4241] = 0.1006 +ij[4241] = 2 +id[4242] = "2672-10-17T12:56:03" +ik[4242] = 0 +il[4242] = 3 +im[4242] = 0.1833 +ij[4242] = 1 +id[4243] = "2673-01-31T02:52:01" +ik[4243] = 0 +il[4243] = -179 +im[4243] = 0.2209 +ij[4243] = 1 +id[4244] = "2673-02-01T12:25:01" +ik[4244] = 1 +il[4244] = 171 +im[4244] = 0.2245 +ij[4244] = 2 +id[4245] = "2673-05-28T21:20:02" +ik[4245] = 0 +il[4245] = -65 +im[4245] = 0.2578 +ij[4245] = 1 +id[4246] = "2673-05-30T09:46:02" +ik[4246] = 1 +il[4246] = -75 +im[4246] = 0.2789 +ij[4246] = 2 +id[4247] = "2673-09-28T14:20:03" +ik[4247] = -1 +il[4247] = 25 +im[4247] = 0.1876 +ij[4247] = 2 +id[4248] = "2673-10-01T03:20:03" +ik[4248] = 0 +il[4248] = 7 +im[4248] = 0.0736 +ij[4248] = 1 +id[4249] = "2674-01-15T05:30:01" +ik[4249] = 0 +il[4249] = -179 +im[4249] = 0.0413 +ij[4249] = 1 +id[4250] = "2674-01-16T01:51:01" +ik[4250] = 1 +il[4250] = 175 +im[4250] = 0.0836 +ij[4250] = 2 +id[4251] = "2674-05-09T08:37:02" +ik[4251] = 0 +il[4251] = -45 +im[4251] = 0.1551 +ij[4251] = 1 +id[4252] = "2674-05-12T00:25:02" +ik[4252] = 1 +il[4252] = -63 +im[4252] = 0.0058 +ij[4252] = 2 +id[4253] = "2674-09-11T04:58:03" +ik[4253] = -1 +il[4253] = 35 +im[4253] = 0.1455 +ij[4253] = 2 +id[4254] = "2674-09-14T06:28:03" +ik[4254] = 0 +il[4254] = 13 +im[4254] = 0.2299 +ij[4254] = 1 +id[4255] = "2674-12-30T11:44:01" +ik[4255] = 0 +il[4255] = -179 +im[4255] = 0.1844 +ij[4255] = 1 +id[4256] = "2674-12-30T20:06:01" +ik[4256] = 1 +il[4256] = 179 +im[4256] = 0.1727 +ij[4256] = 2 +id[4257] = "2675-04-20T13:25:02" +ik[4257] = 0 +il[4257] = -28 +im[4257] = 0.1542 +ij[4257] = 1 +id[4258] = "2675-04-23T18:10:02" +ik[4258] = 1 +il[4258] = -50 +im[4258] = 0.2524 +ij[4258] = 2 +id[4259] = "2675-08-24T09:18:03" +ik[4259] = -1 +il[4259] = 46 +im[4259] = 0.1682 +ij[4259] = 2 +id[4260] = "2675-08-27T17:44:03" +ik[4260] = 0 +il[4260] = 23 +im[4260] = 0.0356 +ij[4260] = 1 +id[4261] = "2675-12-14T16:30:01" +ik[4261] = -1 +il[4261] = -177 +im[4261] = 0.2102 +ij[4261] = 2 +id[4262] = "2675-12-14T19:54:01" +ik[4262] = 0 +il[4262] = -179 +im[4262] = 0.2127 +ij[4262] = 1 +id[4263] = "2676-04-01T12:28:02" +ik[4263] = 0 +il[4263] = -16 +im[4263] = 0.1706 +ij[4263] = 1 +id[4264] = "2676-04-04T17:13:02" +ik[4264] = 1 +il[4264] = -39 +im[4264] = 0.0105 +ij[4264] = 2 +id[4265] = "2676-08-05T04:30:03" +ik[4265] = -1 +il[4265] = 59 +im[4265] = 0.1423 +ij[4265] = 2 +id[4266] = "2676-08-08T09:35:03" +ik[4266] = 0 +il[4266] = 37 +im[4266] = 0.2378 +ij[4266] = 1 +id[4267] = "2676-11-27T12:54:01" +ik[4267] = -1 +il[4267] = -173 +im[4267] = 0.0226 +ij[4267] = 2 +id[4268] = "2676-11-28T03:49:01" +ik[4268] = 0 +il[4268] = 180 +im[4268] = 0.0297 +ij[4268] = 1 +id[4269] = "2677-03-15T04:18:02" +ik[4269] = 0 +il[4269] = -8 +im[4269] = 0.1602 +ij[4269] = 1 +id[4270] = "2677-03-18T00:25:02" +ik[4270] = 1 +il[4270] = -28 +im[4270] = 0.2286 +ij[4270] = 2 +id[4271] = "2677-07-17T17:56:03" +ik[4271] = -1 +il[4271] = 72 +im[4271] = 0.2129 +ij[4271] = 2 +id[4272] = "2677-07-20T04:04:03" +ik[4272] = 0 +il[4272] = 56 +im[4272] = 0.103 +ij[4272] = 1 +id[4273] = "2677-11-11T06:54:01" +ik[4273] = -1 +il[4273] = -169 +im[4273] = 0.2202 +ij[4273] = 2 +id[4274] = "2677-11-12T09:49:01" +ik[4274] = 0 +il[4274] = -180 +im[4274] = 0.1946 +ij[4274] = 1 +id[4275] = "2678-02-26T09:35:02" +ik[4275] = 0 +il[4275] = -3 +im[4275] = 0.1035 +ij[4275] = 1 +id[4276] = "2678-02-28T16:44:02" +ik[4276] = 1 +il[4276] = -19 +im[4276] = 0.0231 +ij[4276] = 2 +id[4277] = "2678-06-29T05:13:03" +ik[4277] = -1 +il[4277] = 85 +im[4277] = 0.125 +ij[4277] = 2 +id[4278] = "2678-06-30T05:16:03" +ik[4278] = 0 +il[4278] = 78 +im[4278] = 0.1773 +ij[4278] = 1 +id[4279] = "2678-10-25T20:06:01" +ik[4279] = -1 +il[4279] = -165 +im[4279] = 0.1526 +ij[4279] = 2 +id[4280] = "2678-10-27T11:59:01" +ik[4280] = 0 +il[4280] = -178 +im[4280] = 0.2072 +ij[4280] = 1 +id[4281] = "2679-02-10T01:25:02" +ik[4281] = 0 +il[4281] = 0 +im[4281] = 0.2189 +ij[4281] = 1 +id[4282] = "2679-02-11T18:39:02" +ik[4282] = 1 +il[4282] = -12 +im[4282] = 0.2021 +ij[4282] = 2 +id[4283] = "2679-06-10T01:25:03" +ik[4283] = 0 +il[4283] = 102 +im[4283] = 0.269 +ij[4283] = 1 +id[4284] = "2679-06-10T16:58:03" +ik[4284] = 1 +il[4284] = 98 +im[4284] = 0.2545 +ij[4284] = 2 +id[4285] = "2679-10-09T01:51:01" +ik[4285] = -1 +il[4285] = -159 +im[4285] = 0.1487 +ij[4285] = 2 +id[4286] = "2679-10-11T07:25:01" +ik[4286] = 0 +il[4286] = -176 +im[4286] = 0.0305 +ij[4286] = 1 +id[4287] = "2680-01-25T00:42:02" +ik[4287] = 0 +il[4287] = 1 +im[4287] = 0.0557 +ij[4287] = 1 +id[4288] = "2680-01-26T04:30:02" +ik[4288] = 1 +il[4288] = -7 +im[4288] = 0.1154 +ij[4288] = 2 +id[4289] = "2680-05-20T04:32:03" +ik[4289] = 0 +il[4289] = 124 +im[4289] = 0.0292 +ij[4289] = 1 +id[4290] = "2680-05-22T06:25:03" +ik[4290] = 1 +il[4290] = 110 +im[4290] = 0.1158 +ij[4290] = 2 +id[4291] = "2680-09-20T22:44:01" +ik[4291] = -1 +il[4291] = -151 +im[4291] = 0.2124 +ij[4291] = 2 +id[4292] = "2680-09-23T17:16:01" +ik[4292] = 0 +il[4292] = -171 +im[4292] = 0.2364 +ij[4292] = 1 +id[4293] = "2681-01-08T05:01:02" +ik[4293] = 0 +il[4293] = 1 +im[4293] = 0.1546 +ij[4293] = 1 +id[4294] = "2681-01-08T20:06:02" +ik[4294] = 1 +il[4294] = -3 +im[4294] = 0.1285 +ij[4294] = 2 +id[4295] = "2681-04-30T23:01:03" +ik[4295] = 0 +il[4295] = 143 +im[4295] = 0.2469 +ij[4295] = 1 +id[4296] = "2681-05-03T22:01:03" +ik[4296] = 1 +il[4296] = 123 +im[4296] = 0.2582 +ij[4296] = 2 +id[4297] = "2681-09-03T09:03:01" +ik[4297] = -1 +il[4297] = -141 +im[4297] = 0.0823 +ij[4297] = 2 +id[4298] = "2681-09-06T14:08:01" +ik[4298] = 0 +il[4298] = -163 +im[4298] = 0.1058 +ij[4298] = 1 +id[4299] = "2681-12-23T12:13:02" +ik[4299] = 0 +il[4299] = 1 +im[4299] = 0.2109 +ij[4299] = 1 +id[4300] = "2681-12-23T15:46:02" +ik[4300] = 1 +il[4300] = 1 +im[4300] = 0.2123 +ij[4300] = 2 +id[4301] = "2682-04-12T11:30:03" +ik[4301] = 0 +il[4301] = 157 +im[4301] = 0.0921 +ij[4301] = 1 +id[4302] = "2682-04-15T17:42:03" +ik[4302] = 1 +il[4302] = 135 +im[4302] = 0.1047 +ij[4302] = 2 +id[4303] = "2682-08-16T09:03:01" +ik[4303] = -1 +il[4303] = -128 +im[4303] = 0.216 +ij[4303] = 2 +id[4304] = "2682-08-19T17:44:01" +ik[4304] = 0 +il[4304] = -152 +im[4304] = 0.2299 +ij[4304] = 1 +id[4305] = "2682-12-07T12:25:02" +ik[4305] = -1 +il[4305] = 5 +im[4305] = 0.0209 +ij[4305] = 2 +id[4306] = "2682-12-07T20:37:02" +ik[4306] = 0 +il[4306] = 0 +im[4306] = 0.0397 +ij[4306] = 1 +id[4307] = "2683-03-25T18:13:03" +ik[4307] = 0 +il[4307] = 168 +im[4307] = 0.2125 +ij[4307] = 1 +id[4308] = "2683-03-28T20:06:03" +ik[4308] = 1 +il[4308] = 146 +im[4308] = 0.2288 +ij[4308] = 2 +id[4309] = "2683-07-29T01:22:01" +ik[4309] = -1 +il[4309] = -115 +im[4309] = 0.1013 +ij[4309] = 2 +id[4310] = "2683-08-01T00:28:01" +ik[4310] = 0 +il[4310] = -136 +im[4310] = 0.0713 +ij[4310] = 1 +id[4311] = "2683-11-21T08:06:02" +ik[4311] = -1 +il[4311] = 9 +im[4311] = 0.1921 +ij[4311] = 2 +id[4312] = "2683-11-22T04:04:02" +ik[4312] = 0 +il[4312] = 0 +im[4312] = 0.1644 +ij[4312] = 1 +id[4313] = "2684-03-07T16:04:03" +ik[4313] = 0 +il[4313] = 175 +im[4313] = 0.0307 +ij[4313] = 1 +id[4314] = "2684-03-10T06:54:03" +ik[4314] = 1 +il[4314] = 156 +im[4314] = 0.1124 +ij[4314] = 2 +id[4315] = "2684-07-09T13:22:01" +ik[4315] = -1 +il[4315] = -102 +im[4315] = 0.2059 +ij[4315] = 2 +id[4316] = "2684-07-11T10:32:01" +ik[4316] = 0 +il[4316] = -115 +im[4316] = 0.2497 +ij[4316] = 1 +id[4317] = "2684-11-03T00:10:02" +ik[4317] = -1 +il[4317] = 18 +im[4317] = 0.1429 +ij[4317] = 2 +id[4318] = "2684-11-05T08:37:02" +ik[4318] = 0 +il[4318] = 1 +im[4318] = 0.2121 +ij[4318] = 1 +id[4319] = "2685-02-19T02:08:03" +ik[4319] = 0 +il[4319] = 179 +im[4319] = 0.2159 +ij[4319] = 1 +id[4320] = "2685-02-21T03:32:03" +ik[4320] = 1 +il[4320] = 164 +im[4320] = 0.1719 +ij[4320] = 2 +id[4321] = "2685-06-21T00:39:01" +ik[4321] = -1 +il[4321] = -89 +im[4321] = 0.1623 +ij[4321] = 2 +id[4322] = "2685-06-21T07:54:01" +ik[4322] = 0 +il[4322] = -91 +im[4322] = 0.1469 +ij[4322] = 1 +id[4323] = "2685-10-18T10:30:02" +ik[4323] = -1 +il[4323] = 22 +im[4323] = 0.1014 +ij[4323] = 2 +id[4324] = "2685-10-20T08:08:02" +ik[4324] = 0 +il[4324] = 3 +im[4324] = 0.016 +ij[4324] = 1 +id[4325] = "2686-02-02T21:35:03" +ik[4325] = 0 +il[4325] = -179 +im[4325] = 0.0952 +ij[4325] = 1 +id[4326] = "2686-02-04T09:03:03" +ik[4326] = 1 +il[4326] = 170 +im[4326] = 0.1604 +ij[4326] = 2 +id[4327] = "2686-06-01T05:30:01" +ik[4327] = 0 +il[4327] = -68 +im[4327] = 0.1324 +ij[4327] = 1 +id[4328] = "2686-06-02T13:08:01" +ik[4328] = 1 +il[4328] = -77 +im[4328] = 0.1994 +ij[4328] = 2 +id[4329] = "2686-10-01T12:54:02" +ik[4329] = -1 +il[4329] = 26 +im[4329] = 0.2375 +ij[4329] = 2 +id[4330] = "2686-10-03T23:59:02" +ik[4330] = 0 +il[4330] = 6 +im[4330] = 0.2128 +ij[4330] = 1 +id[4331] = "2687-01-17T23:16:03" +ik[4331] = 0 +il[4331] = -179 +im[4331] = 0.1131 +ij[4331] = 1 +id[4332] = "2687-01-18T21:32:03" +ik[4332] = 1 +il[4332] = 175 +im[4332] = 0.0682 +ij[4332] = 2 +id[4333] = "2687-05-12T14:37:01" +ik[4333] = 0 +il[4333] = -47 +im[4333] = 0.2694 +ij[4333] = 1 +id[4334] = "2687-05-15T03:18:01" +ik[4334] = 1 +il[4334] = -65 +im[4334] = 0.1992 +ij[4334] = 2 +id[4335] = "2687-09-14T05:13:02" +ik[4335] = -1 +il[4335] = 33 +im[4335] = 0.0261 +ij[4335] = 2 +id[4336] = "2687-09-17T05:01:02" +ik[4336] = 0 +il[4336] = 12 +im[4336] = 0.164 +ij[4336] = 1 +id[4337] = "2688-01-02T05:16:03" +ik[4337] = 0 +il[4337] = -179 +im[4337] = 0.2088 +ij[4337] = 1 +id[4338] = "2688-01-02T15:18:03" +ik[4338] = 1 +il[4338] = 179 +im[4338] = 0.2098 +ij[4338] = 2 +id[4339] = "2688-04-22T16:47:01" +ik[4339] = 0 +il[4339] = -30 +im[4339] = 0.0307 +ij[4339] = 1 +id[4340] = "2688-04-25T20:34:01" +ik[4340] = 1 +il[4340] = -52 +im[4340] = 0.1949 +ij[4340] = 2 +id[4341] = "2688-08-26T10:58:02" +ik[4341] = -1 +il[4341] = 44 +im[4341] = 0.2505 +ij[4341] = 2 +id[4342] = "2688-08-29T18:56:02" +ik[4342] = 0 +il[4342] = 21 +im[4342] = 0.1785 +ij[4342] = 1 +id[4343] = "2688-12-16T11:27:03" +ik[4343] = -1 +il[4343] = -177 +im[4343] = 0.0645 +ij[4343] = 2 +id[4344] = "2688-12-16T13:11:03" +ik[4344] = 0 +il[4344] = -179 +im[4344] = 0.0682 +ij[4344] = 1 +id[4345] = "2689-04-04T13:11:01" +ik[4345] = 0 +il[4345] = -18 +im[4345] = 0.2504 +ij[4345] = 1 +id[4346] = "2689-04-07T18:39:01" +ik[4346] = 1 +il[4346] = -40 +im[4346] = 0.1965 +ij[4346] = 2 +id[4347] = "2689-08-08T07:22:02" +ik[4347] = -1 +il[4347] = 57 +im[4347] = 0.0391 +ij[4347] = 2 +id[4348] = "2689-08-11T13:54:02" +ik[4348] = 0 +il[4348] = 34 +im[4348] = 0.1956 +ij[4348] = 1 +id[4349] = "2689-11-30T08:06:03" +ik[4349] = -1 +il[4349] = -173 +im[4349] = 0.1502 +ij[4349] = 2 +id[4350] = "2689-11-30T21:20:03" +ik[4350] = 0 +il[4350] = 180 +im[4350] = 0.1273 +ij[4350] = 1 +id[4351] = "2690-03-18T02:37:01" +ik[4351] = 0 +il[4351] = -9 +im[4351] = 0.0569 +ij[4351] = 1 +id[4352] = "2690-03-21T00:25:01" +ik[4352] = 1 +il[4352] = -30 +im[4352] = 0.1928 +ij[4352] = 2 +id[4353] = "2690-07-20T21:18:02" +ik[4353] = -1 +il[4353] = 70 +im[4353] = 0.2523 +ij[4353] = 2 +id[4354] = "2690-07-23T11:30:02" +ik[4354] = 0 +il[4354] = 53 +im[4354] = 0.2252 +ij[4354] = 1 +id[4355] = "2690-11-14T02:34:03" +ik[4355] = -1 +il[4355] = -169 +im[4355] = 0.1929 +ij[4355] = 2 +id[4356] = "2690-11-15T03:49:03" +ik[4356] = 0 +il[4356] = -180 +im[4356] = 0.209 +ij[4356] = 1 +id[4357] = "2691-03-01T06:13:01" +ik[4357] = 0 +il[4357] = -3 +im[4357] = 0.2136 +ij[4357] = 1 +id[4358] = "2691-03-03T15:32:01" +ik[4358] = 1 +il[4358] = -21 +im[4358] = 0.1357 +ij[4358] = 2 +id[4359] = "2691-07-02T08:49:02" +ik[4359] = -1 +il[4359] = 83 +im[4359] = 0.043 +ij[4359] = 2 +id[4360] = "2691-07-03T14:37:02" +ik[4360] = 0 +il[4360] = 75 +im[4360] = 0.0561 +ij[4360] = 1 +id[4361] = "2691-10-28T16:30:03" +ik[4361] = -1 +il[4361] = -165 +im[4361] = 0.0447 +ij[4361] = 2 +id[4362] = "2691-10-30T06:28:03" +ik[4362] = 0 +il[4362] = -179 +im[4362] = 0.046 +ij[4362] = 1 +id[4363] = "2692-02-12T20:37:01" +ik[4363] = 0 +il[4363] = 0 +im[4363] = 0.1489 +ij[4363] = 1 +id[4364] = "2692-02-14T15:46:01" +ik[4364] = 1 +il[4364] = -13 +im[4364] = 0.2088 +ij[4364] = 2 +id[4365] = "2692-06-12T10:32:02" +ik[4365] = 0 +il[4365] = 99 +im[4365] = 0.2408 +ij[4365] = 1 +id[4366] = "2692-06-12T20:20:02" +ik[4366] = 1 +il[4366] = 96 +im[4366] = 0.2492 +ij[4366] = 2 +id[4367] = "2692-10-10T23:42:03" +ik[4367] = -1 +il[4367] = -161 +im[4367] = 0.2237 +ij[4367] = 2 +id[4368] = "2692-10-13T03:06:03" +ik[4368] = 0 +il[4368] = -176 +im[4368] = 0.1694 +ij[4368] = 1 +id[4369] = "2693-01-26T18:56:01" +ik[4369] = 0 +il[4369] = 1 +im[4369] = 0.0824 +ij[4369] = 1 +id[4370] = "2693-01-28T00:39:01" +ik[4370] = 1 +il[4370] = -8 +im[4370] = 0.0336 +ij[4370] = 2 +id[4371] = "2693-05-23T11:59:02" +ik[4371] = 0 +il[4371] = 121 +im[4371] = 0.1857 +ij[4371] = 1 +id[4372] = "2693-05-25T09:32:02" +ik[4372] = 1 +il[4372] = 108 +im[4372] = 0.0871 +ij[4372] = 2 +id[4373] = "2693-09-23T22:01:03" +ik[4373] = -1 +il[4373] = -152 +im[4373] = 0.0709 +ij[4373] = 2 +id[4374] = "2693-09-26T14:37:03" +ik[4374] = 0 +il[4374] = -172 +im[4374] = 0.1898 +ij[4374] = 1 +id[4375] = "2694-01-10T22:47:01" +ik[4375] = 0 +il[4375] = 1 +im[4375] = 0.2124 +ij[4375] = 1 +id[4376] = "2694-01-11T15:46:01" +ik[4376] = 1 +il[4376] = -4 +im[4376] = 0.21 +ij[4376] = 2 +id[4377] = "2694-05-04T03:49:02" +ik[4377] = 0 +il[4377] = 140 +im[4377] = 0.1271 +ij[4377] = 1 +id[4378] = "2694-05-07T00:39:02" +ik[4378] = 1 +il[4378] = 121 +im[4378] = 0.243 +ij[4378] = 2 +id[4379] = "2694-09-06T09:46:03" +ik[4379] = -1 +il[4379] = -142 +im[4379] = 0.2299 +ij[4379] = 2 +id[4380] = "2694-09-09T13:54:03" +ik[4380] = 0 +il[4380] = -165 +im[4380] = 0.1053 +ij[4380] = 1 +id[4381] = "2694-12-26T05:44:01" +ik[4381] = 0 +il[4381] = 1 +im[4381] = 0.1092 +ij[4381] = 1 +id[4382] = "2694-12-26T10:44:01" +ik[4382] = 1 +il[4382] = 0 +im[4382] = 0.1184 +ij[4382] = 2 +id[4383] = "2695-04-15T13:54:02" +ik[4383] = 0 +il[4383] = 155 +im[4383] = 0.243 +ij[4383] = 1 +id[4384] = "2695-04-18T19:51:02" +ik[4384] = 1 +il[4384] = 133 +im[4384] = 0.1136 +ij[4384] = 2 +id[4385] = "2695-08-19T11:13:03" +ik[4385] = -1 +il[4385] = -130 +im[4385] = 0.1205 +ij[4385] = 2 +id[4386] = "2695-08-22T20:08:03" +ik[4386] = 0 +il[4386] = -154 +im[4386] = 0.2395 +ij[4386] = 1 +id[4387] = "2695-12-10T07:22:01" +ik[4387] = -1 +il[4387] = 4 +im[4387] = 0.1076 +ij[4387] = 2 +id[4388] = "2695-12-10T13:54:01" +ik[4388] = 0 +il[4388] = 0 +im[4388] = 0.095 +ij[4388] = 1 +id[4389] = "2696-03-27T17:44:02" +ik[4389] = 0 +il[4389] = 167 +im[4389] = 0.1202 +ij[4389] = 1 +id[4390] = "2696-03-30T20:49:02" +ik[4390] = 1 +il[4390] = 144 +im[4390] = 0.2391 +ij[4390] = 2 +id[4391] = "2696-07-31T04:30:03" +ik[4391] = -1 +il[4391] = -117 +im[4391] = 0.2481 +ij[4391] = 2 +id[4392] = "2696-08-03T06:13:03" +ik[4392] = 0 +il[4392] = -138 +im[4392] = 0.1298 +ij[4392] = 1 +id[4393] = "2696-11-23T03:32:01" +ik[4393] = -1 +il[4393] = 8 +im[4393] = 0.2039 +ij[4393] = 2 +id[4394] = "2696-11-23T21:35:01" +ik[4394] = 0 +il[4394] = 0 +im[4394] = 0.2101 +ij[4394] = 1 +id[4395] = "2697-03-10T13:40:02" +ik[4395] = 0 +il[4395] = 174 +im[4395] = 0.2019 +ij[4395] = 1 +id[4396] = "2697-03-13T06:25:02" +ik[4396] = 1 +il[4396] = 155 +im[4396] = 0.0788 +ij[4396] = 2 +id[4397] = "2697-07-12T16:58:03" +ik[4397] = -1 +il[4397] = -104 +im[4397] = 0.1018 +ij[4397] = 2 +id[4398] = "2697-07-14T18:56:03" +ik[4398] = 0 +il[4398] = -118 +im[4398] = 0.2057 +ij[4398] = 1 +id[4399] = "2697-11-06T20:20:01" +ik[4399] = -1 +il[4399] = 12 +im[4399] = 0.0298 +ij[4399] = 2 +id[4400] = "2697-11-08T02:52:01" +ik[4400] = 0 +il[4400] = 1 +im[4400] = 0.0918 +ij[4400] = 1 +id[4401] = "2698-02-21T22:18:02" +ik[4401] = 0 +il[4401] = 178 +im[4401] = 0.1933 +ij[4401] = 1 +id[4402] = "2698-02-24T01:37:02" +ik[4402] = 1 +il[4402] = 163 +im[4402] = 0.2383 +ij[4402] = 2 +id[4403] = "2698-06-24T04:15:03" +ik[4403] = -1 +il[4403] = -91 +im[4403] = 0.2589 +ij[4403] = 2 +id[4404] = "2698-06-24T17:30:03" +ik[4404] = 0 +il[4404] = -95 +im[4404] = 0.251 +ij[4404] = 1 +id[4405] = "2698-10-21T07:37:01" +ik[4405] = -1 +il[4405] = 16 +im[4405] = 0.1909 +ij[4405] = 2 +id[4406] = "2698-10-23T03:20:01" +ik[4406] = 0 +il[4406] = 2 +im[4406] = 0.1235 +ij[4406] = 1 +id[4407] = "2699-02-05T16:18:02" +ik[4407] = 0 +il[4407] = -179 +im[4407] = 0.048 +ij[4407] = 1 +id[4408] = "2699-02-07T05:42:02" +ik[4408] = 1 +il[4408] = 169 +im[4408] = 0.0428 +ij[4408] = 2 +id[4409] = "2699-06-04T14:23:03" +ik[4409] = 0 +il[4409] = -71 +im[4409] = 0.0252 +ij[4409] = 1 +id[4410] = "2699-06-05T16:30:03" +ik[4410] = 1 +il[4410] = -79 +im[4410] = 0.0527 +ij[4410] = 2 +id[4411] = "2699-10-04T11:13:01" +ik[4411] = -1 +il[4411] = 23 +im[4411] = 0.1255 +ij[4411] = 2 +id[4412] = "2699-10-06T20:23:01" +ik[4412] = 0 +il[4412] = 5 +im[4412] = 0.2046 +ij[4412] = 1 +id[4413] = "2700-01-20T17:16:02" +ik[4413] = 0 +il[4413] = -179 +im[4413] = 0.2204 +ij[4413] = 1 +id[4414] = "2700-01-21T17:27:02" +ik[4414] = 1 +il[4414] = 174 +im[4414] = 0.2077 +ij[4414] = 2 +id[4415] = "2700-05-15T21:06:03" +ik[4415] = 0 +il[4415] = -50 +im[4415] = 0.2227 +ij[4415] = 1 +id[4416] = "2700-05-18T06:10:03" +ik[4416] = 1 +il[4416] = -66 +im[4416] = 0.2527 +ij[4416] = 2 +id[4417] = "2700-09-17T05:13:01" +ik[4417] = -1 +il[4417] = 32 +im[4417] = 0.1605 +ij[4417] = 2 +id[4418] = "2700-09-20T03:06:01" +ik[4418] = 0 +il[4418] = 11 +im[4418] = 0.0156 +ij[4418] = 1 +id[4419] = "2701-01-04T22:32:02" +ik[4419] = 0 +il[4419] = -179 +im[4419] = 0.1468 +ij[4419] = 1 +id[4420] = "2701-01-05T10:30:02" +ik[4420] = 1 +il[4420] = 178 +im[4420] = 0.1666 +ij[4420] = 2 +id[4421] = "2701-04-26T20:23:03" +ik[4421] = 0 +il[4421] = -33 +im[4421] = 0.1676 +ij[4421] = 1 +id[4422] = "2701-04-29T22:58:03" +ik[4422] = 1 +il[4422] = -54 +im[4422] = 0.0074 +ij[4422] = 2 +id[4423] = "2701-08-30T12:25:01" +ik[4423] = -1 +il[4423] = 43 +im[4423] = 0.1866 +ij[4423] = 2 +id[4424] = "2701-09-02T19:40:01" +ik[4424] = 0 +il[4424] = 19 +im[4424] = 0.2291 +ij[4424] = 1 +id[4425] = "2701-12-20T06:28:02" +ik[4425] = 0 +il[4425] = -179 +im[4425] = 0.0717 +ij[4425] = 1 +id[4426] = "2701-12-20T06:39:02" +ik[4426] = 1 +il[4426] = -178 +im[4426] = 0.0713 +ij[4426] = 2 +id[4427] = "2702-04-08T14:08:03" +ik[4427] = 0 +il[4427] = -19 +im[4427] = 0.1852 +ij[4427] = 1 +id[4428] = "2702-04-11T20:06:03" +ik[4428] = 1 +il[4428] = -42 +im[4428] = 0.243 +ij[4428] = 2 +id[4429] = "2702-08-12T10:01:01" +ik[4429] = -1 +il[4429] = 55 +im[4429] = 0.1835 +ij[4429] = 2 +id[4430] = "2702-08-15T17:44:01" +ik[4430] = 0 +il[4430] = 32 +im[4430] = 0.0006 +ij[4430] = 1 +id[4431] = "2702-12-04T03:18:02" +ik[4431] = -1 +il[4431] = -174 +im[4431] = 0.2163 +ij[4431] = 2 +id[4432] = "2702-12-04T14:37:02" +ik[4432] = 0 +il[4432] = 180 +im[4432] = 0.2167 +ij[4432] = 1 +id[4433] = "2703-03-22T01:25:03" +ik[4433] = 0 +il[4433] = -10 +im[4433] = 0.1585 +ij[4433] = 1 +id[4434] = "2703-03-25T00:39:03" +ik[4434] = 1 +il[4434] = -31 +im[4434] = 0.005 +ij[4434] = 2 +id[4435] = "2703-07-25T00:54:01" +ik[4435] = -1 +il[4435] = 68 +im[4435] = 0.1992 +ij[4435] = 2 +id[4436] = "2703-07-27T18:28:01" +ik[4436] = 0 +il[4436] = 50 +im[4436] = 0.2625 +ij[4436] = 1 +id[4437] = "2703-11-17T22:15:02" +ik[4437] = -1 +il[4437] = -170 +im[4437] = 0.0908 +ij[4437] = 2 +id[4438] = "2703-11-18T21:35:02" +ik[4438] = 0 +il[4438] = -180 +im[4438] = 0.135 +ij[4438] = 1 +id[4439] = "2704-03-04T03:06:03" +ik[4439] = 0 +il[4439] = -4 +im[4439] = 0.2257 +ij[4439] = 1 +id[4440] = "2704-03-06T14:20:03" +ik[4440] = 1 +il[4440] = -22 +im[4440] = 0.2328 +ij[4440] = 2 +id[4441] = "2704-07-05T12:25:01" +ik[4441] = -1 +il[4441] = 81 +im[4441] = 0.2182 +ij[4441] = 2 +id[4442] = "2704-07-06T23:59:01" +ik[4442] = 0 +il[4442] = 71 +im[4442] = 0.1477 +ij[4442] = 1 +id[4443] = "2704-10-31T12:54:02" +ik[4443] = -1 +il[4443] = -166 +im[4443] = 0.1576 +ij[4443] = 2 +id[4444] = "2704-11-02T00:56:02" +ik[4444] = 0 +il[4444] = -179 +im[4444] = 0.0898 +ij[4444] = 1 +id[4445] = "2705-02-15T16:04:03" +ik[4445] = 0 +il[4445] = 0 +im[4445] = 0.0181 +ij[4445] = 1 +id[4446] = "2705-02-17T13:22:03" +ik[4446] = 1 +il[4446] = -14 +im[4446] = 0.0944 +ij[4446] = 2 +id[4447] = "2705-06-16T19:54:01" +ik[4447] = 0 +il[4447] = 95 +im[4447] = 0.1671 +ij[4447] = 1 +id[4448] = "2705-06-16T23:56:01" +ik[4448] = 1 +il[4448] = 94 +im[4448] = 0.1756 +ij[4448] = 2 +id[4449] = "2705-10-14T21:17:02" +ik[4449] = -1 +il[4449] = -162 +im[4449] = 0.1771 +ij[4449] = 2 +id[4450] = "2705-10-16T22:47:02" +ik[4450] = 0 +il[4450] = -177 +im[4450] = 0.2186 +ij[4450] = 1 +id[4451] = "2706-01-30T13:11:03" +ik[4451] = 0 +il[4451] = 1 +im[4451] = 0.2208 +ij[4451] = 1 +id[4452] = "2706-01-31T21:03:03" +ik[4452] = 1 +il[4452] = -9 +im[4452] = 0.1888 +ij[4452] = 2 +id[4453] = "2706-05-27T19:54:01" +ik[4453] = 0 +il[4453] = 118 +im[4453] = 0.2587 +ij[4453] = 1 +id[4454] = "2706-05-29T12:39:01" +ik[4454] = 1 +il[4454] = 107 +im[4454] = 0.2258 +ij[4454] = 2 +id[4455] = "2706-09-27T21:03:02" +ik[4455] = -1 +il[4455] = -154 +im[4455] = 0.0804 +ij[4455] = 2 +id[4456] = "2706-09-30T11:44:02" +ik[4456] = 0 +il[4456] = -173 +im[4456] = 0.072 +ij[4456] = 1 +id[4457] = "2707-01-14T16:18:03" +ik[4457] = 0 +il[4457] = 1 +im[4457] = 0.1759 +ij[4457] = 1 +id[4458] = "2707-01-15T11:13:03" +ik[4458] = 1 +il[4458] = -4 +im[4458] = 0.2007 +ij[4458] = 2 +id[4459] = "2707-05-08T09:20:01" +ik[4459] = 0 +il[4459] = 138 +im[4459] = 0.0412 +ij[4459] = 1 +id[4460] = "2707-05-11T03:32:01" +ik[4460] = 1 +il[4460] = 119 +im[4460] = 0.1312 +ij[4460] = 2 +id[4461] = "2707-09-10T10:29:02" +ik[4461] = -1 +il[4461] = -144 +im[4461] = 0.2175 +ij[4461] = 2 +id[4462] = "2707-09-13T12:56:02" +ik[4462] = 0 +il[4462] = -166 +im[4462] = 0.1964 +ij[4462] = 1 +id[4463] = "2707-12-29T23:01:03" +ik[4463] = 0 +il[4463] = 1 +im[4463] = 0.0574 +ij[4463] = 1 +id[4464] = "2707-12-30T05:56:03" +ik[4464] = 1 +il[4464] = 0 +im[4464] = 0.041 +ij[4464] = 2 +id[4465] = "2708-04-18T16:18:01" +ik[4465] = 0 +il[4465] = 154 +im[4465] = 0.2308 +ij[4465] = 1 +id[4466] = "2708-04-21T21:46:01" +ik[4466] = 1 +il[4466] = 131 +im[4466] = 0.2109 +ij[4466] = 2 +id[4467] = "2708-08-22T13:22:02" +ik[4467] = -1 +il[4467] = -132 +im[4467] = 0.0838 +ij[4467] = 2 +id[4468] = "2708-08-25T22:18:02" +ik[4468] = 0 +il[4468] = -156 +im[4468] = 0.1168 +ij[4468] = 1 +id[4469] = "2708-12-13T02:34:03" +ik[4469] = -1 +il[4469] = 4 +im[4469] = 0.2227 +ij[4469] = 2 +id[4470] = "2708-12-13T07:11:03" +ik[4470] = 0 +il[4470] = 1 +im[4470] = 0.2208 +ij[4470] = 1 +id[4471] = "2709-03-31T17:44:01" +ik[4471] = 0 +il[4471] = 165 +im[4471] = 0.0881 +ij[4471] = 1 +id[4472] = "2709-04-03T22:01:01" +ik[4472] = 1 +il[4472] = 143 +im[4472] = 0.1043 +ij[4472] = 2 +id[4473] = "2709-08-04T07:37:02" +ik[4473] = -1 +il[4473] = -119 +im[4473] = 0.2429 +ij[4473] = 2 +id[4474] = "2709-08-07T11:16:02" +ik[4474] = 0 +il[4474] = -141 +im[4474] = 0.2157 +ij[4474] = 1 +id[4475] = "2709-11-26T22:44:03" +ik[4475] = -1 +il[4475] = 8 +im[4475] = 0.1395 +ij[4475] = 2 +id[4476] = "2709-11-27T15:06:03" +ik[4476] = 0 +il[4476] = 0 +im[4476] = 0.1673 +ij[4476] = 1 +id[4477] = "2710-03-14T11:30:01" +ik[4477] = 0 +il[4477] = 173 +im[4477] = 0.233 +ij[4477] = 1 +id[4478] = "2710-03-17T06:10:01" +ik[4478] = 1 +il[4478] = 153 +im[4478] = 0.1921 +ij[4478] = 2 +id[4479] = "2710-07-16T20:34:02" +ik[4479] = -1 +il[4479] = -106 +im[4479] = 0.1286 +ij[4479] = 2 +id[4480] = "2710-07-19T03:06:02" +ik[4480] = 0 +il[4480] = -121 +im[4480] = 0.0429 +ij[4480] = 1 +id[4481] = "2710-11-10T16:15:03" +ik[4481] = -1 +il[4481] = 12 +im[4481] = 0.1301 +ij[4481] = 2 +id[4482] = "2710-11-11T20:52:03" +ik[4482] = 0 +il[4482] = 0 +im[4482] = 0.0684 +ij[4482] = 1 +id[4483] = "2711-02-25T18:28:01" +ik[4483] = 0 +il[4483] = 178 +im[4483] = 0.0378 +ij[4483] = 1 +id[4484] = "2711-02-27T23:56:01" +ik[4484] = 1 +il[4484] = 162 +im[4484] = 0.1427 +ij[4484] = 2 +id[4485] = "2711-06-28T07:51:02" +ik[4485] = -1 +il[4485] = -93 +im[4485] = 0.2528 +ij[4485] = 2 +id[4486] = "2711-06-29T02:52:02" +ik[4486] = 0 +il[4486] = -98 +im[4486] = 0.2686 +ij[4486] = 1 +id[4487] = "2711-10-25T04:29:03" +ik[4487] = -1 +il[4487] = 16 +im[4487] = 0.214 +ij[4487] = 2 +id[4488] = "2711-10-26T22:04:03" +ik[4488] = 0 +il[4488] = 2 +im[4488] = 0.2273 +ij[4488] = 1 +id[4489] = "2712-02-09T11:16:01" +ik[4489] = 0 +il[4489] = -179 +im[4489] = 0.2019 +ij[4489] = 1 +id[4490] = "2712-02-11T02:49:01" +ik[4490] = 1 +il[4490] = 168 +im[4490] = 0.145 +ij[4490] = 2 +id[4491] = "2712-06-07T23:16:02" +ik[4491] = 0 +il[4491] = -75 +im[4491] = 0.198 +ij[4491] = 1 +id[4492] = "2712-06-08T19:51:02" +ik[4492] = 1 +il[4492] = -81 +im[4492] = 0.1552 +ij[4492] = 2 +id[4493] = "2712-10-07T09:17:03" +ik[4493] = -1 +il[4493] = 22 +im[4493] = 0.0125 +ij[4493] = 2 +id[4494] = "2712-10-09T16:32:03" +ik[4494] = 0 +il[4494] = 5 +im[4494] = 0.1258 +ij[4494] = 1 +id[4495] = "2713-01-23T11:16:01" +ik[4495] = 0 +il[4495] = -179 +im[4495] = 0.1913 +ij[4495] = 1 +id[4496] = "2713-01-24T13:22:01" +ik[4496] = 1 +il[4496] = 173 +im[4496] = 0.2148 +ij[4496] = 2 +id[4497] = "2713-05-19T04:04:02" +ik[4497] = 0 +il[4497] = -53 +im[4497] = 0.1317 +ij[4497] = 1 +id[4498] = "2713-05-21T09:17:02" +ik[4498] = 1 +il[4498] = -68 +im[4498] = 0.2338 +ij[4498] = 2 +id[4499] = "2713-09-20T04:58:03" +ik[4499] = -1 +il[4499] = 30 +im[4499] = 0.2265 +ij[4499] = 2 +id[4500] = "2713-09-23T01:11:03" +ik[4500] = 0 +il[4500] = 10 +im[4500] = 0.1606 +ij[4500] = 1 +id[4501] = "2714-01-07T16:18:01" +ik[4501] = 0 +il[4501] = -179 +im[4501] = 0.0488 +ij[4501] = 1 +id[4502] = "2714-01-08T05:56:01" +ik[4502] = 1 +il[4502] = 177 +im[4502] = 0.0278 +ij[4502] = 2 +id[4503] = "2714-04-30T00:42:02" +ik[4503] = 0 +il[4503] = -35 +im[4503] = 0.2456 +ij[4503] = 1 +id[4504] = "2714-05-03T01:22:02" +ik[4504] = 1 +il[4504] = -56 +im[4504] = 0.15 +ij[4504] = 2 +id[4505] = "2714-09-02T13:51:03" +ik[4505] = -1 +il[4505] = 41 +im[4505] = 0.044 +ij[4505] = 2 +id[4506] = "2714-09-05T19:54:03" +ik[4506] = 0 +il[4506] = 18 +im[4506] = 0.1921 +ij[4506] = 1 +id[4507] = "2714-12-22T23:44:01" +ik[4507] = 0 +il[4507] = -179 +im[4507] = 0.2126 +ij[4507] = 1 +id[4508] = "2714-12-23T01:37:01" +ik[4508] = 1 +il[4508] = -179 +im[4508] = 0.211 +ij[4508] = 2 +id[4509] = "2715-04-11T15:49:02" +ik[4509] = 0 +il[4509] = -21 +im[4509] = 0.0301 +ij[4509] = 1 +id[4510] = "2715-04-14T22:01:02" +ik[4510] = 1 +il[4510] = -44 +im[4510] = 0.194 +ij[4510] = 2 +id[4511] = "2715-08-15T12:39:03" +ik[4511] = -1 +il[4511] = 53 +im[4511] = 0.2359 +ij[4511] = 2 +id[4512] = "2715-08-18T21:06:03" +ik[4512] = 0 +il[4512] = 30 +im[4512] = 0.1254 +ij[4512] = 1 +id[4513] = "2715-12-06T22:15:01" +ik[4513] = -1 +il[4513] = -175 +im[4513] = 0.1683 +ij[4513] = 2 +id[4514] = "2715-12-07T08:08:01" +ik[4514] = 0 +il[4514] = 180 +im[4514] = 0.1822 +ij[4514] = 1 +id[4515] = "2716-03-24T00:28:02" +ik[4515] = 0 +il[4515] = -11 +im[4515] = 0.223 +ij[4515] = 1 +id[4516] = "2716-03-27T01:08:02" +ik[4516] = 1 +il[4516] = -33 +im[4516] = 0.1223 +ij[4516] = 2 +id[4517] = "2716-07-27T04:15:03" +ik[4517] = -1 +il[4517] = 66 +im[4517] = 0.0208 +ij[4517] = 2 +id[4518] = "2716-07-30T00:56:03" +ik[4518] = 0 +il[4518] = 47 +im[4518] = 0.1579 +ij[4518] = 1 +id[4519] = "2716-11-19T17:41:01" +ik[4519] = -1 +il[4519] = -171 +im[4519] = 0.0996 +ij[4519] = 2 +id[4520] = "2716-11-20T15:20:01" +ik[4520] = 0 +il[4520] = -180 +im[4520] = 0.0521 +ij[4520] = 1 +id[4521] = "2717-03-06T23:59:02" +ik[4521] = 0 +il[4521] = -4 +im[4521] = 0.0746 +ij[4521] = 1 +id[4522] = "2717-03-09T13:22:02" +ik[4522] = 1 +il[4522] = -23 +im[4522] = 0.1896 +ij[4522] = 2 +id[4523] = "2717-07-08T16:01:03" +ik[4523] = -1 +il[4523] = 80 +im[4523] = 0.2631 +ij[4523] = 2 +id[4524] = "2717-07-10T08:52:03" +ik[4524] = 0 +il[4524] = 68 +im[4524] = 0.2356 +ij[4524] = 1 +id[4525] = "2717-11-03T09:17:01" +ik[4525] = -1 +il[4525] = -167 +im[4525] = 0.2315 +ij[4525] = 2 +id[4526] = "2717-11-04T19:25:01" +ik[4526] = 0 +il[4526] = -179 +im[4526] = 0.2216 +ij[4526] = 1 +id[4527] = "2718-02-18T11:30:02" +ik[4527] = 0 +il[4527] = -1 +im[4527] = 0.1628 +ij[4527] = 1 +id[4528] = "2718-02-20T10:58:02" +ik[4528] = 1 +il[4528] = -15 +im[4528] = 0.0725 +ij[4528] = 2 +id[4529] = "2718-06-20T03:17:03" +ik[4529] = -1 +il[4529] = 92 +im[4529] = 0.0494 +ij[4529] = 2 +id[4530] = "2718-06-20T05:30:03" +ik[4530] = 0 +il[4530] = 92 +im[4530] = 0.0437 +ij[4530] = 1 +id[4531] = "2718-10-17T18:39:01" +ik[4531] = -1 +il[4531] = -163 +im[4531] = 0.0674 +ij[4531] = 2 +id[4532] = "2718-10-19T17:59:01" +ik[4532] = 0 +il[4532] = -177 +im[4532] = 0.1635 +ij[4532] = 1 +id[4533] = "2719-02-02T07:54:02" +ik[4533] = 0 +il[4533] = 1 +im[4533] = 0.1977 +ij[4533] = 1 +id[4534] = "2719-02-03T17:27:02" +ik[4534] = 1 +il[4534] = -9 +im[4534] = 0.2157 +ij[4534] = 2 +id[4535] = "2719-05-31T04:04:03" +ik[4535] = 0 +il[4535] = 115 +im[4535] = 0.2503 +ij[4535] = 1 +id[4536] = "2719-06-01T16:01:03" +ik[4536] = 1 +il[4536] = 105 +im[4536] = 0.277 +ij[4536] = 2 +id[4537] = "2719-09-30T19:51:01" +ik[4537] = -1 +il[4537] = -155 +im[4537] = 0.2166 +ij[4537] = 2 +id[4538] = "2719-10-03T08:37:01" +ik[4538] = 0 +il[4538] = -173 +im[4538] = 0.1225 +ij[4538] = 1 +id[4539] = "2720-01-17T10:18:02" +ik[4539] = 0 +il[4539] = 1 +im[4539] = 0.0131 +ij[4539] = 1 +id[4540] = "2720-01-18T06:53:02" +ik[4540] = 1 +il[4540] = -5 +im[4540] = 0.0355 +ij[4540] = 2 +id[4541] = "2720-05-10T15:06:03" +ik[4541] = 0 +il[4541] = 135 +im[4541] = 0.2032 +ij[4541] = 1 +id[4542] = "2720-05-13T06:25:03" +ik[4542] = 1 +il[4542] = 117 +im[4542] = 0.0583 +ij[4542] = 2 +id[4543] = "2720-09-12T10:44:01" +ik[4543] = -1 +il[4543] = -145 +im[4543] = 0.1408 +ij[4543] = 2 +id[4544] = "2720-09-15T11:59:01" +ik[4544] = 0 +il[4544] = -167 +im[4544] = 0.2355 +ij[4544] = 1 +id[4545] = "2720-12-31T16:32:02" +ik[4545] = 0 +il[4545] = 1 +im[4545] = 0.1875 +ij[4545] = 1 +id[4546] = "2721-01-01T01:08:02" +ik[4546] = 1 +il[4546] = -1 +im[4546] = 0.1765 +ij[4546] = 2 +id[4547] = "2721-04-21T19:25:03" +ik[4547] = 0 +il[4547] = 151 +im[4547] = 0.1515 +ij[4547] = 1 +id[4548] = "2721-04-24T00:10:03" +ik[4548] = 1 +il[4548] = 136 +im[4548] = 0.2391 +ij[4548] = 2 +id[4549] = "2721-08-25T15:17:01" +ik[4549] = -1 +il[4549] = -134 +im[4549] = 0.1961 +ij[4549] = 2 +id[4550] = "2721-08-28T23:44:01" +ik[4550] = 0 +il[4550] = -157 +im[4550] = 0.0245 +ij[4550] = 1 +id[4551] = "2721-12-15T21:32:02" +ik[4551] = -1 +il[4551] = 3 +im[4551] = 0.1833 +ij[4551] = 2 +id[4552] = "2721-12-16T00:28:02" +ik[4552] = 0 +il[4552] = 1 +im[4552] = 0.1867 +ij[4552] = 1 +id[4553] = "2722-04-03T18:13:03" +ik[4553] = 0 +il[4553] = 164 +im[4553] = 0.1983 +ij[4553] = 1 +id[4554] = "2722-04-06T23:13:03" +ik[4554] = 1 +il[4554] = 141 +im[4554] = 0.0394 +ij[4554] = 2 +id[4555] = "2722-08-07T10:44:01" +ik[4555] = -1 +il[4555] = -121 +im[4555] = 0.1274 +ij[4555] = 2 +id[4556] = "2722-08-10T16:04:01" +ik[4556] = 0 +il[4556] = -143 +im[4556] = 0.2405 +ij[4556] = 1 +id[4557] = "2722-11-29T17:56:02" +ik[4557] = -1 +il[4557] = 7 +im[4557] = 0.0603 +ij[4557] = 2 +id[4558] = "2722-11-30T08:37:02" +ik[4558] = 0 +il[4558] = 0 +im[4558] = 0.0288 +ij[4558] = 1 +id[4559] = "2723-03-17T09:35:03" +ik[4559] = 0 +il[4559] = 172 +im[4559] = 0.1451 +ij[4559] = 1 +id[4560] = "2723-03-20T05:56:03" +ik[4560] = 1 +il[4560] = 152 +im[4560] = 0.2327 +ij[4560] = 2 +id[4561] = "2723-07-19T00:10:01" +ik[4561] = -1 +il[4561] = -101 +im[4561] = 0.242 +ij[4561] = 2 +id[4562] = "2723-07-22T11:01:01" +ik[4562] = 0 +il[4562] = -125 +im[4562] = 0.1058 +ij[4562] = 1 +id[4563] = "2723-11-13T11:56:02" +ik[4563] = -1 +il[4563] = 11 +im[4563] = 0.2208 +ij[4563] = 2 +id[4564] = "2723-11-14T14:52:02" +ik[4564] = 0 +il[4564] = 0 +im[4564] = 0.199 +ij[4564] = 1 +id[4565] = "2724-02-28T14:52:03" +ik[4565] = 0 +il[4565] = 177 +im[4565] = 0.1115 +ij[4565] = 1 +id[4566] = "2724-03-01T22:15:03" +ik[4566] = 1 +il[4566] = 161 +im[4566] = 0.0184 +ij[4566] = 2 +id[4567] = "2724-06-30T11:27:01" +ik[4567] = -1 +il[4567] = -95 +im[4567] = 0.0786 +ij[4567] = 2 +id[4568] = "2724-07-01T12:28:01" +ik[4568] = 0 +il[4568] = -102 +im[4568] = 0.1375 +ij[4568] = 1 +id[4569] = "2724-10-27T01:08:02" +ik[4569] = -1 +il[4569] = 15 +im[4569] = 0.1114 +ij[4569] = 2 +id[4570] = "2724-10-28T16:47:02" +ik[4570] = 0 +il[4570] = 2 +im[4570] = 0.1791 +ij[4570] = 1 +id[4571] = "2725-02-11T06:13:03" +ik[4571] = 0 +il[4571] = -180 +im[4571] = 0.208 +ij[4571] = 1 +id[4572] = "2725-02-12T23:56:03" +ik[4572] = 1 +il[4572] = 167 +im[4572] = 0.2129 +ij[4572] = 2 +id[4573] = "2725-06-11T08:23:01" +ik[4573] = 0 +il[4573] = -78 +im[4573] = 0.2621 +ij[4573] = 1 +id[4574] = "2725-06-11T23:13:01" +ik[4574] = 1 +il[4574] = -82 +im[4574] = 0.2502 +ij[4574] = 2 +id[4575] = "2725-10-10T07:22:02" +ik[4575] = -1 +il[4575] = 20 +im[4575] = 0.1813 +ij[4575] = 2 +id[4576] = "2725-10-12T12:28:02" +ik[4576] = 0 +il[4576] = 4 +im[4576] = 0.081 +ij[4576] = 1 +id[4577] = "2726-01-26T05:30:03" +ik[4577] = 0 +il[4577] = -178 +im[4577] = 0.0368 +ij[4577] = 1 +id[4578] = "2726-01-27T09:32:03" +ik[4578] = 1 +il[4578] = 173 +im[4578] = 0.0954 +ij[4578] = 2 +id[4579] = "2726-05-22T11:16:01" +ik[4579] = 0 +il[4579] = -56 +im[4579] = 0.0849 +ij[4579] = 1 +id[4580] = "2726-05-24T12:25:01" +ik[4580] = 1 +il[4580] = -70 +im[4580] = 0.0534 +ij[4580] = 2 +id[4581] = "2726-09-23T04:15:02" +ik[4581] = -1 +il[4581] = 29 +im[4581] = 0.2039 +ij[4581] = 2 +id[4582] = "2726-09-25T22:47:02" +ik[4582] = 0 +il[4582] = 9 +im[4582] = 0.2368 +ij[4582] = 1 +id[4583] = "2727-01-10T09:49:03" +ik[4583] = 0 +il[4583] = -179 +im[4583] = 0.159 +ij[4583] = 1 +id[4584] = "2727-01-11T01:22:03" +ik[4584] = 1 +il[4584] = 177 +im[4584] = 0.1335 +ij[4584] = 2 +id[4585] = "2727-05-03T05:16:01" +ik[4585] = 0 +il[4585] = -37 +im[4585] = 0.2426 +ij[4585] = 1 +id[4586] = "2727-05-06T04:01:01" +ik[4586] = 1 +il[4586] = -58 +im[4586] = 0.2645 +ij[4586] = 2 +id[4587] = "2727-09-05T14:49:02" +ik[4587] = -1 +il[4587] = 39 +im[4587] = 0.1381 +ij[4587] = 2 +id[4588] = "2727-09-08T19:54:02" +ik[4588] = 0 +il[4588] = 17 +im[4588] = 0.0651 +ij[4588] = 1 +id[4589] = "2727-12-25T17:01:03" +ik[4589] = 0 +il[4589] = -179 +im[4589] = 0.1903 +ij[4589] = 1 +id[4590] = "2727-12-25T20:34:03" +ik[4590] = 1 +il[4590] = -179 +im[4590] = 0.1936 +ij[4590] = 2 +id[4591] = "2728-04-13T17:30:01" +ik[4591] = 0 +il[4591] = -23 +im[4591] = 0.148 +ij[4591] = 1 +id[4592] = "2728-04-16T23:41:01" +ik[4592] = 1 +il[4592] = -46 +im[4592] = 0.058 +ij[4592] = 2 +id[4593] = "2728-08-17T15:03:02" +ik[4593] = -1 +il[4593] = 51 +im[4593] = 0.2195 +ij[4593] = 2 +id[4594] = "2728-08-20T23:59:02" +ik[4594] = 0 +il[4594] = 28 +im[4594] = 0.2487 +ij[4594] = 1 +id[4595] = "2728-12-08T17:27:03" +ik[4595] = -1 +il[4595] = -175 +im[4595] = 0.0088 +ij[4595] = 2 +id[4596] = "2728-12-09T01:25:03" +ik[4596] = 0 +il[4596] = 180 +im[4596] = 0.0148 +ij[4596] = 1 +id[4597] = "2729-03-26T23:44:01" +ik[4597] = 0 +il[4597] = -12 +im[4597] = 0.2133 +ij[4597] = 1 +id[4598] = "2729-03-30T01:51:01" +ik[4598] = 1 +il[4598] = -34 +im[4598] = 0.2488 +ij[4598] = 2 +id[4599] = "2729-07-30T07:37:02" +ik[4599] = -1 +il[4599] = 64 +im[4599] = 0.1405 +ij[4599] = 2 +id[4600] = "2729-08-02T07:11:02" +ik[4600] = 0 +il[4600] = 44 +im[4600] = 0.0612 +ij[4600] = 1 +id[4601] = "2729-11-22T13:08:03" +ik[4601] = -1 +il[4601] = -171 +im[4601] = 0.1921 +ij[4601] = 2 +id[4602] = "2729-11-23T08:52:03" +ik[4602] = 0 +il[4602] = -180 +im[4602] = 0.1674 +ij[4602] = 1 +id[4603] = "2730-03-09T21:20:01" +ik[4603] = 0 +il[4603] = -5 +im[4603] = 0.0684 +ij[4603] = 1 +id[4604] = "2730-03-12T12:39:01" +ik[4604] = 1 +il[4604] = -24 +im[4604] = 0.0966 +ij[4604] = 2 +id[4605] = "2730-07-11T19:37:02" +ik[4605] = -1 +il[4605] = 78 +im[4605] = 0.1936 +ij[4605] = 2 +id[4606] = "2730-07-13T17:30:02" +ik[4606] = 0 +il[4606] = 65 +im[4606] = 0.2504 +ij[4606] = 1 +id[4607] = "2730-11-06T05:27:03" +ik[4607] = -1 +il[4607] = -167 +im[4607] = 0.1404 +ij[4607] = 2 +id[4608] = "2730-11-07T13:40:03" +ik[4608] = 0 +il[4608] = -179 +im[4608] = 0.1867 +ij[4608] = 1 +id[4609] = "2731-02-21T07:25:01" +ik[4609] = 0 +il[4609] = -1 +im[4609] = 0.2226 +ij[4609] = 1 +id[4610] = "2731-02-23T09:03:01" +ik[4610] = 1 +il[4610] = -16 +im[4610] = 0.2063 +ij[4610] = 2 +id[4611] = "2731-06-23T06:53:02" +ik[4611] = -1 +il[4611] = 90 +im[4611] = 0.1742 +ij[4611] = 2 +id[4612] = "2731-06-23T14:52:02" +ik[4612] = 0 +il[4612] = 88 +im[4612] = 0.1585 +ij[4612] = 1 +id[4613] = "2731-10-20T16:01:03" +ik[4613] = -1 +il[4613] = -163 +im[4613] = 0.1229 +ij[4613] = 2 +id[4614] = "2731-10-22T13:11:03" +ik[4614] = 0 +il[4614] = -177 +im[4614] = 0.0258 +ij[4614] = 1 +id[4615] = "2732-02-05T02:23:01" +ik[4615] = 0 +il[4615] = 1 +im[4615] = 0.0893 +ij[4615] = 1 +id[4616] = "2732-02-06T14:05:01" +ik[4616] = 1 +il[4616] = -10 +im[4616] = 0.1556 +ij[4616] = 2 +id[4617] = "2732-06-02T12:28:02" +ik[4617] = 0 +il[4617] = 112 +im[4617] = 0.0897 +ij[4617] = 1 +id[4618] = "2732-06-03T19:08:02" +ik[4618] = 1 +il[4618] = 103 +im[4618] = 0.1588 +ij[4618] = 2 +id[4619] = "2732-10-02T18:25:03" +ik[4619] = -1 +il[4619] = -156 +im[4619] = 0.2225 +ij[4619] = 2 +id[4620] = "2732-10-05T05:16:03" +ik[4620] = 0 +il[4620] = -174 +im[4620] = 0.2109 +ij[4620] = 1 +id[4621] = "2733-01-19T04:04:01" +ik[4621] = 0 +il[4621] = 1 +im[4621] = 0.1389 +ij[4621] = 1 +id[4622] = "2733-01-20T02:49:01" +ik[4622] = 1 +il[4622] = -5 +im[4622] = 0.0963 +ij[4622] = 2 +id[4623] = "2733-05-13T21:06:02" +ik[4623] = 0 +il[4623] = 132 +im[4623] = 0.2627 +ij[4623] = 1 +id[4624] = "2733-05-16T09:17:02" +ik[4624] = 1 +il[4624] = 115 +im[4624] = 0.2017 +ij[4624] = 2 +id[4625] = "2733-09-15T10:58:03" +ik[4625] = -1 +il[4625] = -147 +im[4625] = 0.0584 +ij[4625] = 2 +id[4626] = "2733-09-18T10:32:03" +ik[4626] = 0 +il[4626] = -168 +im[4626] = 0.1132 +ij[4626] = 1 +id[4627] = "2734-01-03T09:49:01" +ik[4627] = 0 +il[4627] = 1 +im[4627] = 0.202 +ij[4627] = 1 +id[4628] = "2734-01-03T20:20:01" +ik[4628] = 1 +il[4628] = -1 +im[4628] = 0.2087 +ij[4628] = 2 +id[4629] = "2734-04-24T22:47:02" +ik[4629] = 0 +il[4629] = 149 +im[4629] = 0.0524 +ij[4629] = 1 +id[4630] = "2734-04-28T02:34:02" +ik[4630] = 1 +il[4630] = 128 +im[4630] = 0.1455 +ij[4630] = 2 +id[4631] = "2734-08-28T16:58:03" +ik[4631] = -1 +il[4631] = -136 +im[4631] = 0.2523 +ij[4631] = 2 +id[4632] = "2734-09-01T00:56:03" +ik[4632] = 0 +il[4632] = -159 +im[4632] = 0.1953 +ij[4632] = 1 +id[4633] = "2734-12-18T16:29:01" +ik[4633] = -1 +il[4633] = 3 +im[4633] = 0.0566 +ij[4633] = 2 +id[4634] = "2734-12-18T17:59:01" +ik[4634] = 0 +il[4634] = 1 +im[4634] = 0.0597 +ij[4634] = 1 +id[4635] = "2735-04-06T18:56:02" +ik[4635] = 0 +il[4635] = 162 +im[4635] = 0.2535 +ij[4635] = 1 +id[4636] = "2735-04-10T00:39:02" +ik[4636] = 1 +il[4636] = 139 +im[4636] = 0.2135 +ij[4636] = 2 +id[4637] = "2735-08-10T13:37:03" +ik[4637] = -1 +il[4637] = -123 +im[4637] = 0.0399 +ij[4637] = 2 +id[4638] = "2735-08-13T20:23:03" +ik[4638] = 0 +il[4638] = -146 +im[4638] = 0.1589 +ij[4638] = 1 +id[4639] = "2735-12-02T13:08:01" +ik[4639] = -1 +il[4639] = 7 +im[4639] = 0.1652 +ij[4639] = 2 +id[4640] = "2735-12-03T02:08:01" +ik[4640] = 0 +il[4640] = 0 +im[4640] = 0.145 +ij[4640] = 1 +id[4641] = "2736-03-19T08:08:02" +ik[4641] = 0 +il[4641] = 171 +im[4641] = 0.0056 +ij[4641] = 1 +id[4642] = "2736-03-22T06:10:02" +ik[4642] = 1 +il[4642] = 150 +im[4642] = 0.1626 +ij[4642] = 2 +id[4643] = "2736-07-22T03:32:03" +ik[4643] = -1 +il[4643] = -110 +im[4643] = 0.2589 +ij[4643] = 2 +id[4644] = "2736-07-24T18:13:03" +ik[4644] = 0 +il[4644] = -128 +im[4644] = 0.2527 +ij[4644] = 1 +id[4645] = "2736-11-15T07:37:01" +ik[4645] = -1 +il[4645] = 11 +im[4645] = 0.169 +ij[4645] = 2 +id[4646] = "2736-11-16T08:37:01" +ik[4646] = 0 +il[4646] = 0 +im[4646] = 0.1969 +ij[4646] = 1 +id[4647] = "2737-03-02T11:30:02" +ik[4647] = 0 +il[4647] = 177 +im[4647] = 0.2335 +ij[4647] = 1 +id[4648] = "2737-03-04T21:03:02" +ik[4648] = 1 +il[4648] = 159 +im[4648] = 0.1769 +ij[4648] = 2 +id[4649] = "2737-07-03T15:03:03" +ik[4649] = -1 +il[4649] = -97 +im[4649] = 0.0649 +ij[4649] = 2 +id[4650] = "2737-07-04T21:49:03" +ik[4650] = 0 +il[4650] = -105 +im[4650] = 0.0209 +ij[4650] = 1 +id[4651] = "2737-10-29T21:46:01" +ik[4651] = -1 +il[4651] = 15 +im[4651] = 0.0517 +ij[4651] = 2 +id[4652] = "2737-10-31T11:30:01" +ik[4652] = 0 +il[4652] = 1 +im[4652] = 0.0322 +ij[4652] = 1 +id[4653] = "2738-02-14T01:40:02" +ik[4653] = 0 +il[4653] = -180 +im[4653] = 0.1373 +ij[4653] = 1 +id[4654] = "2738-02-15T21:17:02" +ik[4654] = 1 +il[4654] = 167 +im[4654] = 0.2063 +ij[4654] = 2 +id[4655] = "2738-06-14T17:30:03" +ik[4655] = 0 +il[4655] = -82 +im[4655] = 0.2285 +ij[4655] = 1 +id[4656] = "2738-06-15T02:34:03" +ik[4656] = 1 +il[4656] = -84 +im[4656] = 0.2399 +ij[4656] = 2 +id[4657] = "2738-10-13T05:13:01" +ik[4657] = -1 +il[4657] = 19 +im[4657] = 0.2179 +ij[4657] = 2 +id[4658] = "2738-10-15T08:08:01" +ik[4658] = 0 +il[4658] = 4 +im[4658] = 0.1779 +ij[4658] = 1 +id[4659] = "2739-01-28T23:44:02" +ik[4659] = 0 +il[4659] = -179 +im[4659] = 0.1224 +ij[4659] = 1 +id[4660] = "2739-01-30T05:41:02" +ik[4660] = 1 +il[4660] = 172 +im[4660] = 0.0564 +ij[4660] = 2 +id[4661] = "2739-05-25T18:42:03" +ik[4661] = 0 +il[4661] = -59 +im[4661] = 0.1913 +ij[4661] = 1 +id[4662] = "2739-05-27T15:32:03" +ik[4662] = 1 +il[4662] = -72 +im[4662] = 0.0962 +ij[4662] = 2 +id[4663] = "2739-09-26T03:32:01" +ik[4663] = -1 +il[4663] = 27 +im[4663] = 0.0271 +ij[4663] = 2 +id[4664] = "2739-09-28T20:08:01" +ik[4664] = 0 +il[4664] = 8 +im[4664] = 0.159 +ij[4664] = 1 +id[4665] = "2740-01-13T03:35:02" +ik[4665] = 0 +il[4665] = -179 +im[4665] = 0.2196 +ij[4665] = 1 +id[4666] = "2740-01-13T20:49:02" +ik[4666] = 1 +il[4666] = 176 +im[4666] = 0.2237 +ij[4666] = 2 +id[4667] = "2740-05-05T10:18:03" +ik[4667] = 0 +il[4667] = -40 +im[4667] = 0.0787 +ij[4667] = 1 +id[4668] = "2740-05-08T06:53:03" +ik[4668] = 1 +il[4668] = -59 +im[4668] = 0.2163 +ij[4668] = 2 +id[4669] = "2740-09-07T15:32:01" +ik[4669] = -1 +il[4669] = 38 +im[4669] = 0.2265 +ij[4669] = 2 +id[4670] = "2740-09-10T19:25:01" +ik[4670] = 0 +il[4670] = 15 +im[4670] = 0.1096 +ij[4670] = 1 +id[4671] = "2740-12-27T10:32:02" +ik[4671] = 0 +il[4671] = -179 +im[4671] = 0.0978 +ij[4671] = 1 +id[4672] = "2740-12-27T15:46:02" +ik[4672] = 1 +il[4672] = -180 +im[4672] = 0.1084 +ij[4672] = 2 +id[4673] = "2741-04-16T19:54:03" +ik[4673] = 0 +il[4673] = -25 +im[4673] = 0.2409 +ij[4673] = 1 +id[4674] = "2741-04-20T01:51:03" +ik[4674] = 1 +il[4674] = -47 +im[4674] = 0.1231 +ij[4674] = 2 +id[4675] = "2741-08-20T17:27:01" +ik[4675] = -1 +il[4675] = 49 +im[4675] = 0.0648 +ij[4675] = 2 +id[4676] = "2741-08-24T02:23:01" +ik[4676] = 0 +il[4676] = 26 +im[4676] = 0.2146 +ij[4676] = 1 +id[4677] = "2741-12-11T12:25:02" +ik[4677] = -1 +il[4677] = -176 +im[4677] = 0.143 +ij[4677] = 2 +id[4678] = "2741-12-11T18:42:02" +ik[4678] = 0 +il[4678] = -179 +im[4678] = 0.1317 +ij[4678] = 1 +id[4679] = "2742-03-29T23:30:03" +ik[4679] = 0 +il[4679] = -14 +im[4679] = 0.0689 +ij[4679] = 1 +id[4680] = "2742-04-02T02:49:03" +ik[4680] = 1 +il[4680] = -36 +im[4680] = 0.2133 +ij[4680] = 2 +id[4681] = "2742-08-02T10:44:01" +ik[4681] = -1 +il[4681] = 62 +im[4681] = 0.2583 +ij[4681] = 2 +id[4682] = "2742-08-05T12:42:01" +ik[4682] = 0 +il[4682] = 41 +im[4682] = 0.1541 +ij[4682] = 1 +id[4683] = "2742-11-25T08:34:02" +ik[4683] = -1 +il[4683] = -172 +im[4683] = 0.2015 +ij[4683] = 2 +id[4684] = "2742-11-26T02:23:02" +ik[4684] = 0 +il[4684] = 180 +im[4684] = 0.2141 +ij[4684] = 1 +id[4685] = "2743-03-12T18:56:03" +ik[4685] = 0 +il[4685] = -6 +im[4685] = 0.2199 +ij[4685] = 1 +id[4686] = "2743-03-15T12:10:03" +ik[4686] = 1 +il[4686] = -26 +im[4686] = 0.1151 +ij[4686] = 2 +id[4687] = "2743-07-14T23:13:01" +ik[4687] = -1 +il[4687] = 76 +im[4687] = 0.0554 +ij[4687] = 2 +id[4688] = "2743-07-17T01:54:01" +ik[4688] = 0 +il[4688] = 61 +im[4688] = 0.1781 +ij[4688] = 1 +id[4689] = "2743-11-09T01:22:02" +ik[4689] = -1 +il[4689] = -168 +im[4689] = 0.0279 +ij[4689] = 2 +id[4690] = "2743-11-10T07:40:02" +ik[4690] = 0 +il[4690] = -179 +im[4690] = 0.0846 +ij[4690] = 1 +id[4691] = "2744-02-24T03:20:03" +ik[4691] = 0 +il[4691] = -2 +im[4691] = 0.1756 +ij[4691] = 1 +id[4692] = "2744-02-26T06:53:03" +ik[4692] = 1 +il[4692] = -17 +im[4692] = 0.2302 +ij[4692] = 2 +id[4693] = "2744-06-25T10:29:01" +ik[4693] = -1 +il[4693] = 89 +im[4693] = 0.2758 +ij[4693] = 2 +id[4694] = "2744-06-26T00:28:01" +ik[4694] = 0 +il[4694] = 85 +im[4694] = 0.2724 +ij[4694] = 1 +id[4695] = "2744-10-22T12:53:02" +ik[4695] = -1 +il[4695] = -164 +im[4695] = 0.2071 +ij[4695] = 2 +id[4696] = "2744-10-24T08:08:02" +ik[4696] = 0 +il[4696] = -178 +im[4696] = 0.1562 +ij[4696] = 1 +id[4697] = "2745-02-06T21:20:03" +ik[4697] = 0 +il[4697] = 1 +im[4697] = 0.1021 +ij[4697] = 1 +id[4698] = "2745-02-08T10:58:03" +ik[4698] = 1 +il[4698] = -11 +im[4698] = 0.0226 +ij[4698] = 2 +id[4699] = "2745-06-05T21:06:01" +ik[4699] = 0 +il[4699] = 108 +im[4699] = 0.0421 +ij[4699] = 1 +id[4700] = "2745-06-06T22:29:01" +ik[4700] = 1 +il[4700] = 101 +im[4700] = 0.0271 +ij[4700] = 2 +id[4701] = "2745-10-05T16:44:02" +ik[4701] = -1 +il[4701] = -157 +im[4701] = 0.1097 +ij[4701] = 2 +id[4702] = "2745-10-08T01:40:02" +ik[4702] = 0 +il[4702] = -175 +im[4702] = 0.1966 +ij[4702] = 1 +id[4703] = "2746-01-21T22:04:03" +ik[4703] = 0 +il[4703] = 1 +im[4703] = 0.2305 +ij[4703] = 1 +id[4704] = "2746-01-22T22:29:03" +ik[4704] = 1 +il[4704] = -6 +im[4704] = 0.223 +ij[4704] = 2 +id[4705] = "2746-05-17T03:49:01" +ik[4705] = 0 +il[4705] = 129 +im[4705] = 0.2041 +ij[4705] = 1 +id[4706] = "2746-05-19T12:24:01" +ik[4706] = 1 +il[4706] = 113 +im[4706] = 0.2605 +ij[4706] = 2 +id[4707] = "2746-09-18T10:58:02" +ik[4707] = -1 +il[4707] = -148 +im[4707] = 0.1693 +ij[4707] = 2 +id[4708] = "2746-09-21T08:37:02" +ik[4708] = 0 +il[4708] = -169 +im[4708] = 0.0422 +ij[4708] = 1 +id[4709] = "2747-01-06T03:20:03" +ik[4709] = 0 +il[4709] = 1 +im[4709] = 0.1271 +ij[4709] = 1 +id[4710] = "2747-01-06T15:32:03" +ik[4710] = 1 +il[4710] = -2 +im[4710] = 0.1499 +ij[4710] = 2 +id[4711] = "2747-04-28T02:37:01" +ik[4711] = 0 +il[4711] = 147 +im[4711] = 0.1739 +ij[4711] = 1 +id[4712] = "2747-05-01T04:58:01" +ik[4712] = 1 +il[4712] = 126 +im[4712] = 0.0189 +ij[4712] = 2 +id[4713] = "2747-08-31T18:24:02" +ik[4713] = -1 +il[4713] = -138 +im[4713] = 0.1476 +ij[4713] = 2 +id[4714] = "2747-09-04T01:25:02" +ik[4714] = 0 +il[4714] = -161 +im[4714] = 0.2283 +ij[4714] = 1 +id[4715] = "2747-12-21T11:16:03" +ik[4715] = 0 +il[4715] = 1 +im[4715] = 0.1227 +ij[4715] = 1 +id[4716] = "2747-12-21T11:27:03" +ik[4716] = 1 +il[4716] = 2 +im[4716] = 0.1223 +ij[4716] = 2 +id[4717] = "2748-04-08T20:08:01" +ik[4717] = 0 +il[4717] = 161 +im[4717] = 0.1405 +ij[4717] = 1 +id[4718] = "2748-04-12T02:05:01" +ik[4718] = 1 +il[4718] = 138 +im[4718] = 0.238 +ij[4718] = 2 +id[4719] = "2748-08-12T16:15:02" +ik[4719] = -1 +il[4719] = -125 +im[4719] = 0.1928 +ij[4719] = 2 +id[4720] = "2748-08-15T23:59:02" +ik[4720] = 0 +il[4720] = -148 +im[4720] = 0.0488 +ij[4720] = 1 +id[4721] = "2748-12-04T08:20:03" +ik[4721] = -1 +il[4721] = 6 +im[4721] = 0.2239 +ij[4721] = 2 +id[4722] = "2748-12-04T19:25:03" +ik[4722] = 0 +il[4722] = 0 +im[4722] = 0.2267 +ij[4722] = 1 +id[4723] = "2749-03-22T06:56:01" +ik[4723] = 0 +il[4723] = 170 +im[4723] = 0.1715 +ij[4723] = 1 +id[4724] = "2749-03-25T06:24:01" +ik[4724] = 1 +il[4724] = 149 +im[4724] = 0.0336 +ij[4724] = 2 +id[4725] = "2749-07-25T07:08:02" +ik[4725] = -1 +il[4725] = -112 +im[4725] = 0.1548 +ij[4725] = 2 +id[4726] = "2749-07-28T01:11:02" +ik[4726] = 0 +il[4726] = -131 +im[4726] = 0.2438 +ij[4726] = 1 +id[4727] = "2749-11-18T03:17:03" +ik[4727] = -1 +il[4727] = 10 +im[4727] = 0.0676 +ij[4727] = 2 +id[4728] = "2749-11-19T02:23:03" +ik[4728] = 0 +il[4728] = 0 +im[4728] = 0.1169 +ij[4728] = 1 +id[4729] = "2750-03-05T08:08:01" +ik[4729] = 0 +il[4729] = 176 +im[4729] = 0.1991 +ij[4729] = 1 +id[4730] = "2750-03-07T19:51:01" +ik[4730] = 1 +il[4730] = 158 +im[4730] = 0.2266 +ij[4730] = 2 +id[4731] = "2750-07-06T18:39:02" +ik[4731] = -1 +il[4731] = -99 +im[4731] = 0.2417 +ij[4731] = 2 +id[4732] = "2750-07-08T06:56:02" +ik[4732] = 0 +il[4732] = -109 +im[4732] = 0.183 +ij[4732] = 1 +id[4733] = "2750-11-01T18:10:03" +ik[4733] = -1 +il[4733] = 14 +im[4733] = 0.1928 +ij[4733] = 2 +id[4734] = "2750-11-03T05:59:03" +ik[4734] = 0 +il[4734] = 1 +im[4734] = 0.1375 +ij[4734] = 1 +id[4735] = "2751-02-16T21:06:01" +ik[4735] = 0 +il[4735] = -180 +im[4735] = 0.0721 +ij[4735] = 1 +id[4736] = "2751-02-18T18:39:01" +ik[4736] = 1 +il[4736] = 166 +im[4736] = 0.0468 +ij[4736] = 2 +id[4737] = "2751-06-18T02:52:02" +ik[4737] = 0 +il[4737] = -85 +im[4737] = 0.1367 +ij[4737] = 1 +id[4738] = "2751-06-18T06:10:02" +ik[4738] = 1 +il[4738] = -86 +im[4738] = 0.1445 +ij[4738] = 2 +id[4739] = "2751-10-16T02:34:03" +ik[4739] = -1 +il[4739] = 18 +im[4739] = 0.1731 +ij[4739] = 2 +id[4740] = "2751-10-18T03:49:03" +ik[4740] = 0 +il[4740] = 3 +im[4740] = 0.2245 +ij[4740] = 1 +id[4741] = "2752-01-31T18:13:01" +ik[4741] = 0 +il[4741] = -179 +im[4741] = 0.2241 +ij[4741] = 1 +id[4742] = "2752-02-02T02:05:01" +ik[4742] = 1 +il[4742] = 171 +im[4742] = 0.198 +ij[4742] = 2 +id[4743] = "2752-05-28T02:37:02" +ik[4743] = 0 +il[4743] = -62 +im[4743] = 0.2733 +ij[4743] = 1 +id[4744] = "2752-05-29T18:53:02" +ik[4744] = 1 +il[4744] = -74 +im[4744] = 0.2584 +ij[4744] = 2 +id[4745] = "2752-09-28T02:34:03" +ik[4745] = -1 +il[4745] = 26 +im[4745] = 0.1035 +ij[4745] = 2 +id[4746] = "2752-09-30T17:16:03" +ik[4746] = 0 +il[4746] = 7 +im[4746] = 0.0446 +ij[4746] = 1 +id[4747] = "2753-01-14T21:06:01" +ik[4747] = 0 +il[4747] = -178 +im[4747] = 0.1404 +ij[4747] = 1 +id[4748] = "2753-01-15T16:15:01" +ik[4748] = 1 +il[4748] = 176 +im[4748] = 0.1722 +ij[4748] = 2 +id[4749] = "2753-05-08T15:49:02" +ik[4749] = 0 +il[4749] = -43 +im[4749] = 0.0555 +ij[4749] = 1 +id[4750] = "2753-05-11T09:32:02" +ik[4750] = 1 +il[4750] = -61 +im[4750] = 0.1185 +ij[4750] = 2 +id[4751] = "2753-09-10T16:15:03" +ik[4751] = -1 +il[4751] = 36 +im[4751] = 0.2038 +ij[4751] = 2 +id[4752] = "2753-09-13T18:42:03" +ik[4752] = 0 +il[4752] = 14 +im[4752] = 0.222 +ij[4752] = 1 +id[4753] = "2753-12-30T03:49:01" +ik[4753] = 0 +il[4753] = -179 +im[4753] = 0.1066 +ij[4753] = 1 +id[4754] = "2753-12-30T10:58:01" +ik[4754] = 1 +il[4754] = -180 +im[4754] = 0.0917 +ij[4754] = 2 +id[4755] = "2754-04-19T22:32:02" +ik[4755] = 0 +il[4755] = -27 +im[4755] = 0.2157 +ij[4755] = 1 +id[4756] = "2754-04-23T03:46:02" +ik[4756] = 1 +il[4756] = -49 +im[4756] = 0.2385 +ij[4756] = 2 +id[4757] = "2754-08-23T19:22:03" +ik[4757] = -1 +il[4757] = 48 +im[4757] = 0.0839 +ij[4757] = 2 +id[4758] = "2754-08-27T04:18:03" +ik[4758] = 0 +il[4758] = 24 +im[4758] = 0.1031 +ij[4758] = 1 +id[4759] = "2754-12-14T07:22:01" +ik[4759] = -1 +il[4759] = -176 +im[4759] = 0.2261 +ij[4759] = 2 +id[4760] = "2754-12-14T11:59:01" +ik[4760] = 0 +il[4760] = -179 +im[4760] = 0.225 +ij[4760] = 1 +id[4761] = "2755-04-01T23:30:02" +ik[4761] = 0 +il[4761] = -15 +im[4761] = 0.0883 +ij[4761] = 1 +id[4762] = "2755-04-05T03:46:02" +ik[4762] = 1 +il[4762] = -37 +im[4762] = 0.0916 +ij[4762] = 2 +id[4763] = "2755-08-05T13:51:03" +ik[4763] = -1 +il[4763] = 60 +im[4763] = 0.2146 +ij[4763] = 2 +id[4764] = "2755-08-08T17:44:03" +ik[4764] = 0 +il[4764] = 39 +im[4764] = 0.2277 +ij[4764] = 1 +id[4765] = "2755-11-28T03:46:01" +ik[4765] = -1 +il[4765] = -172 +im[4765] = 0.1022 +ij[4765] = 2 +id[4766] = "2755-11-28T19:54:01" +ik[4766] = 0 +il[4766] = 180 +im[4766] = 0.1347 +ij[4766] = 1 +id[4767] = "2756-03-14T17:01:02" +ik[4767] = 0 +il[4767] = -7 +im[4767] = 0.2171 +ij[4767] = 1 +id[4768] = "2756-03-17T11:41:02" +ik[4768] = 1 +il[4768] = -27 +im[4768] = 0.2041 +ij[4768] = 2 +id[4769] = "2756-07-17T02:48:03" +ik[4769] = -1 +il[4769] = 74 +im[4769] = 0.1419 +ij[4769] = 2 +id[4770] = "2756-07-19T10:04:03" +ik[4770] = 0 +il[4770] = 58 +im[4770] = 0.0114 +ij[4770] = 1 +id[4771] = "2756-11-10T21:17:01" +ik[4771] = -1 +il[4771] = -168 +im[4771] = 0.1696 +ij[4771] = 2 +id[4772] = "2756-11-12T01:40:01" +ik[4772] = 0 +il[4772] = -180 +im[4772] = 0.1178 +ij[4772] = 1 +id[4773] = "2757-02-25T23:30:02" +ik[4773] = 0 +il[4773] = -2 +im[4773] = 0.0124 +ij[4773] = 1 +id[4774] = "2757-02-28T05:12:02" +ik[4774] = 1 +il[4774] = -18 +im[4774] = 0.1088 +ij[4774] = 2 +id[4775] = "2757-06-28T14:05:03" +ik[4775] = -1 +il[4775] = 87 +im[4775] = 0.2184 +ij[4775] = 2 +id[4776] = "2757-06-29T10:04:03" +ik[4776] = 0 +il[4776] = 81 +im[4776] = 0.2436 +ij[4776] = 1 +id[4777] = "2757-10-25T09:46:01" +ik[4777] = -1 +il[4777] = -164 +im[4777] = 0.2136 +ij[4777] = 2 +id[4778] = "2757-10-27T03:06:01" +ik[4778] = 0 +il[4778] = -178 +im[4778] = 0.2321 +ij[4778] = 1 +id[4779] = "2758-02-09T16:18:02" +ik[4779] = 0 +il[4779] = 1 +im[4779] = 0.2002 +ij[4779] = 1 +id[4780] = "2758-02-11T08:05:02" +ik[4780] = 1 +il[4780] = -12 +im[4780] = 0.1459 +ij[4780] = 2 +id[4781] = "2758-06-09T06:13:03" +ik[4781] = 0 +il[4781] = 105 +im[4781] = 0.2264 +ij[4781] = 1 +id[4782] = "2758-06-10T01:51:03" +ik[4782] = 1 +il[4782] = 99 +im[4782] = 0.1918 +ij[4782] = 2 +id[4783] = "2758-10-08T14:48:01" +ik[4783] = -1 +il[4783] = -159 +im[4783] = 0.0425 +ij[4783] = 2 +id[4784] = "2758-10-10T21:49:01" +ik[4784] = 0 +il[4784] = -175 +im[4784] = 0.0911 +ij[4784] = 1 +id[4785] = "2759-01-24T16:18:02" +ik[4785] = 0 +il[4785] = 1 +im[4785] = 0.1538 +ij[4785] = 1 +id[4786] = "2759-01-25T18:39:02" +ik[4786] = 1 +il[4786] = -7 +im[4786] = 0.1903 +ij[4786] = 2 +id[4787] = "2759-05-20T10:32:03" +ik[4787] = 0 +il[4787] = 127 +im[4787] = 0.097 +ij[4787] = 1 +id[4788] = "2759-05-22T15:32:03" +ik[4788] = 1 +il[4788] = 112 +im[4788] = 0.2138 +ij[4788] = 2 +id[4789] = "2759-09-21T10:29:01" +ik[4789] = -1 +il[4789] = -150 +im[4789] = 0.2376 +ij[4789] = 2 +id[4790] = "2759-09-24T06:28:01" +ik[4790] = 0 +il[4790] = -170 +im[4790] = 0.197 +ij[4790] = 1 +id[4791] = "2760-01-08T21:06:02" +ik[4791] = 0 +il[4791] = 1 +im[4791] = 0.0732 +ij[4791] = 1 +id[4792] = "2760-01-09T10:58:02" +ik[4792] = 1 +il[4792] = -3 +im[4792] = 0.043 +ij[4792] = 2 +id[4793] = "2760-04-30T06:56:03" +ik[4793] = 0 +il[4793] = 145 +im[4793] = 0.2612 +ij[4793] = 1 +id[4794] = "2760-05-03T07:36:03" +ik[4794] = 1 +il[4794] = 124 +im[4794] = 0.1994 +ij[4794] = 2 +id[4795] = "2760-09-02T19:36:01" +ik[4795] = -1 +il[4795] = -139 +im[4795] = 0.0322 +ij[4795] = 2 +id[4796] = "2760-09-06T01:40:01" +ik[4796] = 0 +il[4796] = -162 +im[4796] = 0.1902 +ij[4796] = 1 +id[4797] = "2760-12-23T04:32:02" +ik[4797] = 0 +il[4797] = 1 +im[4797] = 0.2097 +ij[4797] = 1 +id[4798] = "2760-12-23T06:39:02" +ik[4798] = 1 +il[4798] = 1 +im[4798] = 0.2083 +ij[4798] = 2 +id[4799] = "2761-04-11T21:35:03" +ik[4799] = 0 +il[4799] = 159 +im[4799] = 0.0304 +ij[4799] = 1 +id[4800] = "2761-04-15T03:46:03" +ik[4800] = 1 +il[4800] = 136 +im[4800] = 0.1915 +ij[4800] = 2 +id[4801] = "2761-08-15T18:53:01" +ik[4801] = -1 +il[4801] = -127 +im[4801] = 0.2416 +ij[4801] = 2 +id[4802] = "2761-08-19T03:20:01" +ik[4802] = 0 +il[4802] = -150 +im[4802] = 0.1655 +ij[4802] = 1 +id[4803] = "2761-12-07T03:17:02" +ik[4803] = -1 +il[4803] = 5 +im[4803] = 0.1259 +ij[4803] = 2 +id[4804] = "2761-12-07T12:42:02" +ik[4804] = 0 +il[4804] = 0 +im[4804] = 0.143 +ij[4804] = 1 +id[4805] = "2762-03-25T05:59:03" +ik[4805] = 0 +il[4805] = 169 +im[4805] = 0.2318 +ij[4805] = 1 +id[4806] = "2762-03-28T06:53:03" +ik[4806] = 1 +il[4806] = 147 +im[4806] = 0.1642 +ij[4806] = 2 +id[4807] = "2762-07-28T10:29:01" +ik[4807] = -1 +il[4807] = -114 +im[4807] = 0.021 +ij[4807] = 2 +id[4808] = "2762-07-31T07:40:01" +ik[4808] = 0 +il[4808] = -134 +im[4808] = 0.1541 +ij[4808] = 1 +id[4809] = "2762-11-20T22:44:02" +ik[4809] = -1 +il[4809] = 9 +im[4809] = 0.1295 +ij[4809] = 2 +id[4810] = "2762-11-21T20:08:02" +ik[4810] = 0 +il[4810] = 0 +im[4810] = 0.0869 +ij[4810] = 1 +id[4811] = "2763-03-08T05:16:03" +ik[4811] = 0 +il[4811] = 175 +im[4811] = 0.0695 +ij[4811] = 1 +id[4812] = "2763-03-10T18:53:03" +ik[4812] = 1 +il[4812] = 157 +im[4812] = 0.184 +ij[4812] = 2 +id[4813] = "2763-07-09T22:15:01" +ik[4813] = -1 +il[4813] = -101 +im[4813] = 0.2514 +ij[4813] = 2 +id[4814] = "2763-07-11T15:49:01" +ik[4814] = 0 +il[4814] = -112 +im[4814] = 0.2411 +ij[4814] = 1 +id[4815] = "2763-11-04T14:20:02" +ik[4815] = -1 +il[4815] = 13 +im[4815] = 0.2234 +ij[4815] = 2 +id[4816] = "2763-11-05T00:13:02" +ik[4816] = 0 +il[4816] = 9 +im[4816] = 0.2251 +ij[4816] = 1 +id[4817] = "2764-02-19T16:32:03" +ik[4817] = 0 +il[4817] = 179 +im[4817] = 0.1742 +ij[4817] = 1 +id[4818] = "2764-02-21T16:29:03" +ik[4818] = 1 +il[4818] = 165 +im[4818] = 0.0895 +ij[4818] = 2 +id[4819] = "2764-06-20T09:32:01" +ik[4819] = -1 +il[4819] = -88 +im[4819] = 0.0733 +ij[4819] = 2 +id[4820] = "2764-06-20T12:28:01" +ik[4820] = 0 +il[4820] = -89 +im[4820] = 0.066 +ij[4820] = 1 +id[4821] = "2764-10-17T23:56:02" +ik[4821] = -1 +il[4821] = 17 +im[4821] = 0.0272 +ij[4821] = 2 +id[4822] = "2764-10-19T23:01:02" +ik[4822] = 0 +il[4822] = 3 +im[4822] = 0.1199 +ij[4822] = 1 +id[4823] = "2765-02-02T12:42:03" +ik[4823] = 0 +il[4823] = -179 +im[4823] = 0.1733 +ij[4823] = 1 +id[4824] = "2765-02-03T22:44:03" +ik[4824] = 1 +il[4824] = 171 +im[4824] = 0.2082 +ij[4824] = 2 +id[4825] = "2765-05-31T10:47:01" +ik[4825] = 0 +il[4825] = -66 +im[4825] = 0.2194 +ij[4825] = 1 +id[4826] = "2765-06-01T22:00:01" +ik[4826] = 1 +il[4826] = -75 +im[4826] = 0.2582 +ij[4826] = 2 +id[4827] = "2765-10-01T01:22:02" +ik[4827] = -1 +il[4827] = 25 +im[4827] = 0.2321 +ij[4827] = 2 +id[4828] = "2765-10-03T13:54:02" +ik[4828] = 0 +il[4828] = 7 +im[4828] = 0.1567 +ij[4828] = 1 +id[4829] = "2766-01-17T15:06:03" +ik[4829] = 0 +il[4829] = -179 +im[4829] = 0.0361 +ij[4829] = 1 +id[4830] = "2766-01-18T11:56:03" +ik[4830] = 1 +il[4830] = 175 +im[4830] = 0.0337 +ij[4830] = 2 +id[4831] = "2766-05-11T21:35:01" +ik[4831] = 0 +il[4831] = -45 +im[4831] = 0.2326 +ij[4831] = 1 +id[4832] = "2766-05-14T12:24:01" +ik[4832] = 1 +il[4832] = -63 +im[4832] = 0.1101 +ij[4832] = 2 +id[4833] = "2766-09-13T16:29:02" +ik[4833] = -1 +il[4833] = 34 +im[4833] = 0.1159 +ij[4833] = 2 +id[4834] = "2766-09-16T17:30:02" +ik[4834] = 0 +il[4834] = 13 +im[4834] = 0.2251 +ij[4834] = 1 +id[4835] = "2767-01-01T21:20:03" +ik[4835] = 0 +il[4835] = -179 +im[4835] = 0.1914 +ij[4835] = 1 +id[4836] = "2767-01-02T06:10:03" +ik[4836] = 1 +il[4836] = 179 +im[4836] = 0.182 +ij[4836] = 2 +id[4837] = "2767-04-23T01:40:01" +ik[4837] = 0 +il[4837] = -29 +im[4837] = 0.1259 +ij[4837] = 1 +id[4838] = "2767-04-26T06:10:01" +ik[4838] = 1 +il[4838] = -51 +im[4838] = 0.252 +ij[4838] = 2 +id[4839] = "2767-08-26T21:17:02" +ik[4839] = -1 +il[4839] = 46 +im[4839] = 0.2291 +ij[4839] = 2 +id[4840] = "2767-08-30T05:44:02" +ik[4840] = 0 +il[4840] = 22 +im[4840] = 0.0903 +ij[4840] = 1 +id[4841] = "2767-12-17T02:34:03" +ik[4841] = -1 +il[4841] = -177 +im[4841] = 0.1513 +ij[4841] = 2 +id[4842] = "2767-12-17T05:16:03" +ik[4842] = 0 +il[4842] = -179 +im[4842] = 0.1555 +ij[4842] = 1 +id[4843] = "2768-04-03T23:59:01" +ik[4843] = 0 +il[4843] = -16 +im[4843] = 0.231 +ij[4843] = 1 +id[4844] = "2768-04-07T04:58:01" +ik[4844] = 1 +il[4844] = -39 +im[4844] = 0.1019 +ij[4844] = 2 +id[4845] = "2768-08-07T16:44:02" +ik[4845] = -1 +il[4845] = 59 +im[4845] = 0.1241 +ij[4845] = 2 +id[4846] = "2768-08-10T22:32:02" +ik[4846] = 0 +il[4846] = 36 +im[4846] = 0.2442 +ij[4846] = 1 +id[4847] = "2768-11-29T22:58:03" +ik[4847] = -1 +il[4847] = -173 +im[4847] = 0.0753 +ij[4847] = 2 +id[4848] = "2768-11-30T13:25:03" +ik[4848] = 0 +il[4848] = 180 +im[4848] = 0.0461 +ij[4848] = 1 +id[4849] = "2769-03-17T15:06:01" +ik[4849] = 0 +il[4849] = -8 +im[4849] = 0.1384 +ij[4849] = 1 +id[4850] = "2769-03-20T11:41:01" +ik[4850] = 1 +il[4850] = -28 +im[4850] = 0.2368 +ij[4850] = 2 +id[4851] = "2769-07-20T06:24:02" +ik[4851] = -1 +il[4851] = 72 +im[4851] = 0.2418 +ij[4851] = 2 +id[4852] = "2769-07-22T17:44:02" +ik[4852] = 0 +il[4852] = 55 +im[4852] = 0.1538 +ij[4852] = 1 +id[4853] = "2769-11-13T16:58:03" +ik[4853] = -1 +il[4853] = -169 +im[4853] = 0.2141 +ij[4853] = 2 +id[4854] = "2769-11-14T19:40:03" +ik[4854] = 0 +il[4854] = -180 +im[4854] = 0.199 +ij[4854] = 1 +id[4855] = "2770-02-28T19:54:01" +ik[4855] = 0 +il[4855] = -3 +im[4855] = 0.1489 +ij[4855] = 1 +id[4856] = "2770-03-03T03:46:01" +ik[4856] = 1 +il[4856] = -20 +im[4856] = 0.0312 +ij[4856] = 2 +id[4857] = "2770-07-01T17:41:02" +ik[4857] = -1 +il[4857] = 85 +im[4857] = 0.0749 +ij[4857] = 2 +id[4858] = "2770-07-02T19:25:02" +ik[4858] = 0 +il[4858] = 78 +im[4858] = 0.1301 +ij[4858] = 1 +id[4859] = "2770-10-28T06:24:03" +ik[4859] = -1 +il[4859] = -165 +im[4859] = 0.0607 +ij[4859] = 2 +id[4860] = "2770-10-29T21:49:03" +ik[4860] = 0 +il[4860] = -178 +im[4860] = 0.14 +ij[4860] = 1 +id[4861] = "2771-02-12T11:16:01" +ik[4861] = 0 +il[4861] = 0 +im[4861] = 0.2015 +ij[4861] = 1 +id[4862] = "2771-02-14T05:12:01" +ik[4862] = 1 +il[4862] = -13 +im[4862] = 0.2259 +ij[4862] = 2 +id[4863] = "2771-06-12T15:20:02" +ik[4863] = 0 +il[4863] = 101 +im[4863] = 0.2582 +ij[4863] = 1 +id[4864] = "2771-06-13T05:27:02" +ik[4864] = 1 +il[4864] = 97 +im[4864] = 0.2531 +ij[4864] = 2 +id[4865] = "2771-10-11T12:53:03" +ik[4865] = -1 +il[4865] = -160 +im[4865] = 0.1883 +ij[4865] = 2 +id[4866] = "2771-10-13T17:44:03" +ik[4866] = 0 +il[4866] = -176 +im[4866] = 0.0954 +ij[4866] = 1 +id[4867] = "2772-01-27T10:18:01" +ik[4867] = 0 +il[4867] = 2 +im[4867] = 0.0264 +ij[4867] = 1 +id[4868] = "2772-01-28T14:48:01" +ik[4868] = 1 +il[4868] = -7 +im[4868] = 0.0865 +ij[4868] = 2 +id[4869] = "2772-05-22T17:59:02" +ik[4869] = 0 +il[4869] = 124 +im[4869] = 0.1123 +ij[4869] = 1 +id[4870] = "2772-05-24T18:39:02" +ik[4870] = 1 +il[4870] = 110 +im[4870] = 0.0298 +ij[4870] = 2 +id[4871] = "2772-09-23T10:00:03" +ik[4871] = -1 +il[4871] = -151 +im[4871] = 0.169 +ij[4871] = 2 +id[4872] = "2772-09-26T04:04:03" +ik[4872] = 0 +il[4872] = -171 +im[4872] = 0.2258 +ij[4872] = 1 +id[4873] = "2773-01-10T14:37:01" +ik[4873] = 0 +il[4873] = 1 +im[4873] = 0.1827 +ij[4873] = 1 +id[4874] = "2773-01-11T06:24:01" +ik[4874] = 1 +il[4874] = -3 +im[4874] = 0.1617 +ij[4874] = 2 +id[4875] = "2773-05-03T11:30:02" +ik[4875] = 0 +il[4875] = 142 +im[4875] = 0.215 +ij[4875] = 1 +id[4876] = "2773-05-06T10:15:02" +ik[4876] = 1 +il[4876] = 122 +im[4876] = 0.2563 +ij[4876] = 2 +id[4877] = "2773-09-05T20:48:03" +ik[4877] = -1 +il[4877] = -141 +im[4877] = 0.1728 +ij[4877] = 2 +id[4878] = "2773-09-09T01:40:03" +ik[4878] = 0 +il[4878] = -164 +im[4878] = 0.002 +ij[4878] = 1 +id[4879] = "2773-12-25T21:49:01" +ik[4879] = 0 +il[4879] = 1 +im[4879] = 0.1749 +ij[4879] = 1 +id[4880] = "2773-12-26T01:36:01" +ik[4880] = 1 +il[4880] = 1 +im[4880] = 0.1798 +ij[4880] = 2 +id[4881] = "2774-04-14T23:30:02" +ik[4881] = 0 +il[4881] = 157 +im[4881] = 0.1857 +ij[4881] = 1 +id[4882] = "2774-04-18T05:41:02" +ik[4882] = 1 +il[4882] = 134 +im[4882] = 0.0131 +ij[4882] = 2 +id[4883] = "2774-08-18T21:17:03" +ik[4883] = -1 +il[4883] = -129 +im[4883] = 0.2063 +ij[4883] = 2 +id[4884] = "2774-08-22T05:59:03" +ik[4884] = 0 +il[4884] = -152 +im[4884] = 0.2497 +ij[4884] = 1 +id[4885] = "2774-12-09T22:29:01" +ik[4885] = -1 +il[4885] = 5 +im[4885] = 0.0149 +ij[4885] = 2 +id[4886] = "2774-12-10T06:13:01" +ik[4886] = 0 +il[4886] = 0 +im[4886] = 0.0049 +ij[4886] = 1 +id[4887] = "2775-03-28T05:16:02" +ik[4887] = 0 +il[4887] = 168 +im[4887] = 0.2044 +ij[4887] = 1 +id[4888] = "2775-03-31T07:36:02" +ik[4888] = 1 +il[4888] = 146 +im[4888] = 0.251 +ij[4888] = 2 +id[4889] = "2775-07-31T13:36:03" +ik[4889] = -1 +il[4889] = -116 +im[4889] = 0.1873 +ij[4889] = 2 +id[4890] = "2775-08-03T13:40:03" +ik[4890] = 0 +il[4890] = -136 +im[4890] = 0.0146 +ij[4890] = 1 +id[4891] = "2775-11-23T18:10:01" +ik[4891] = -1 +il[4891] = 9 +im[4891] = 0.2018 +ij[4891] = 2 +id[4892] = "2775-11-24T13:40:01" +ik[4892] = 0 +il[4892] = 0 +im[4892] = 0.1845 +ij[4892] = 1 +id[4893] = "2776-03-10T02:52:02" +ik[4893] = 0 +il[4893] = 175 +im[4893] = 0.1141 +ij[4893] = 1 +id[4894] = "2776-03-12T18:10:02" +ik[4894] = 1 +il[4894] = 156 +im[4894] = 0.0433 +ij[4894] = 2 +id[4895] = "2776-07-12T01:51:03" +ik[4895] = -1 +il[4895] = -103 +im[4895] = 0.1884 +ij[4895] = 2 +id[4896] = "2776-07-14T00:28:03" +ik[4896] = 0 +il[4896] = -116 +im[4896] = 0.2546 +ij[4896] = 1 +id[4897] = "2776-11-06T10:29:01" +ik[4897] = -1 +il[4897] = 13 +im[4897] = 0.1122 +ij[4897] = 2 +id[4898] = "2776-11-07T18:28:01" +ik[4898] = 0 +il[4898] = 1 +im[4898] = 0.166 +ij[4898] = 1 +id[4899] = "2777-02-21T12:28:02" +ik[4899] = 0 +il[4899] = 179 +im[4899] = 0.2303 +ij[4899] = 1 +id[4900] = "2777-02-23T14:20:02" +ik[4900] = 1 +il[4900] = 164 +im[4900] = 0.2279 +ij[4900] = 2 +id[4901] = "2777-06-23T13:08:03" +ik[4901] = -1 +il[4901] = -90 +im[4901] = 0.2082 +ij[4901] = 2 +id[4902] = "2777-06-23T22:04:03" +ik[4902] = 0 +il[4902] = -92 +im[4902] = 0.1925 +ij[4902] = 1 +id[4903] = "2777-10-20T21:17:01" +ik[4903] = -1 +il[4903] = 17 +im[4903] = 0.1275 +ij[4903] = 2 +id[4904] = "2777-10-22T18:13:01" +ik[4904] = 0 +il[4904] = 3 +im[4904] = 0.0349 +ij[4904] = 1 +id[4905] = "2778-02-05T07:25:02" +ik[4905] = 0 +il[4905] = -179 +im[4905] = 0.0669 +ij[4905] = 1 +id[4906] = "2778-02-06T19:22:02" +ik[4906] = 1 +il[4906] = 170 +im[4906] = 0.1428 +ij[4906] = 2 +id[4907] = "2778-06-03T19:25:03" +ik[4907] = 0 +il[4907] = -69 +im[4907] = 0.0723 +ij[4907] = 1 +id[4908] = "2778-06-05T01:22:03" +ik[4908] = 1 +il[4908] = -77 +im[4908] = 0.1414 +ij[4908] = 2 +id[4909] = "2778-10-03T23:56:01" +ik[4909] = -1 +il[4909] = 24 +im[4909] = 0.1981 +ij[4909] = 2 +id[4910] = "2778-10-06T10:32:01" +ik[4910] = 0 +il[4910] = 6 +im[4910] = 0.2134 +ij[4910] = 1 +id[4911] = "2779-01-20T08:52:02" +ik[4911] = 0 +il[4911] = -178 +im[4911] = 0.1764 +ij[4911] = 1 +id[4912] = "2779-01-21T07:51:02" +ik[4912] = 1 +il[4912] = 175 +im[4912] = 0.1393 +ij[4912] = 2 +id[4913] = "2779-05-15T03:49:03" +ik[4913] = 0 +il[4913] = -48 +im[4913] = 0.2533 +ij[4913] = 1 +id[4914] = "2779-05-17T15:32:03" +ik[4914] = 1 +il[4914] = -65 +im[4914] = 0.2114 +ij[4914] = 2 +id[4915] = "2779-09-16T16:44:01" +ik[4915] = -1 +il[4915] = 33 +im[4915] = 0.0851 +ij[4915] = 2 +id[4916] = "2779-09-19T16:04:01" +ik[4916] = 0 +il[4916] = 12 +im[4916] = 0.0818 +ij[4916] = 1 +id[4917] = "2780-01-04T14:37:02" +ik[4917] = 0 +il[4917] = -179 +im[4917] = 0.2033 +ij[4917] = 1 +id[4918] = "2780-01-05T01:22:02" +ik[4918] = 1 +il[4918] = 179 +im[4918] = 0.2126 +ij[4918] = 2 +id[4919] = "2780-04-25T05:01:03" +ik[4919] = 0 +il[4919] = -31 +im[4919] = 0.0885 +ij[4919] = 1 +id[4920] = "2780-04-28T08:34:03" +ik[4920] = 1 +il[4920] = -53 +im[4920] = 0.106 +ij[4920] = 2 +id[4921] = "2780-08-28T22:58:01" +ik[4921] = -1 +il[4921] = 44 +im[4921] = 0.2379 +ij[4921] = 2 +id[4922] = "2780-09-01T06:42:01" +ik[4922] = 0 +il[4922] = 21 +im[4922] = 0.1941 +ij[4922] = 1 +id[4923] = "2780-12-18T21:32:02" +ik[4923] = -1 +il[4923] = -177 +im[4923] = 0.0381 +ij[4923] = 2 +id[4924] = "2780-12-18T22:32:02" +ik[4924] = 0 +il[4924] = -179 +im[4924] = 0.0404 +ij[4924] = 1 +id[4925] = "2781-04-07T00:42:03" +ik[4925] = 0 +il[4925] = -18 +im[4925] = 0.2394 +ij[4925] = 1 +id[4926] = "2781-04-10T06:24:03" +ik[4926] = 1 +il[4926] = -41 +im[4926] = 0.2129 +ij[4926] = 2 +id[4927] = "2781-08-10T19:36:01" +ik[4927] = -1 +il[4927] = 57 +im[4927] = 0.095 +ij[4927] = 2 +id[4928] = "2781-08-14T02:37:01" +ik[4928] = 0 +il[4928] = 34 +im[4928] = 0.1109 +ij[4928] = 1 +id[4929] = "2781-12-02T18:10:02" +ik[4929] = -1 +il[4929] = -173 +im[4929] = 0.1939 +ij[4929] = 2 +id[4930] = "2781-12-03T06:56:02" +ik[4930] = 0 +il[4930] = 180 +im[4930] = 0.1795 +ij[4930] = 1 +id[4931] = "2782-03-20T13:40:03" +ik[4931] = 0 +il[4931] = -9 +im[4931] = 0.0667 +ij[4931] = 1 +id[4932] = "2782-03-23T11:56:03" +ik[4932] = 1 +il[4932] = -30 +im[4932] = 0.1167 +ij[4932] = 2 +id[4933] = "2782-07-23T09:46:01" +ik[4933] = -1 +il[4933] = 70 +im[4933] = 0.2571 +ij[4933] = 2 +id[4934] = "2782-07-26T00:56:01" +ik[4934] = 0 +il[4934] = 52 +im[4934] = 0.2575 +ij[4934] = 1 +id[4935] = "2782-11-16T12:39:02" +ik[4935] = -1 +il[4935] = -169 +im[4935] = 0.1619 +ij[4935] = 2 +id[4936] = "2782-11-17T13:25:02" +ik[4936] = 0 +il[4936] = -180 +im[4936] = 0.1943 +ij[4936] = 1 +id[4937] = "2783-03-03T16:32:03" +ik[4937] = 0 +il[4937] = -3 +im[4937] = 0.2395 +ij[4937] = 1 +id[4938] = "2783-03-06T02:34:03" +ik[4938] = 1 +il[4938] = -21 +im[4938] = 0.1943 +ij[4938] = 2 +id[4939] = "2783-07-04T21:17:01" +ik[4939] = -1 +il[4939] = 83 +im[4939] = 0.1232 +ij[4939] = 2 +id[4940] = "2783-07-06T04:47:01" +ik[4940] = 0 +il[4940] = 74 +im[4940] = 0.0437 +ij[4940] = 1 +id[4941] = "2783-10-31T03:03:02" +ik[4941] = -1 +il[4941] = -165 +im[4941] = 0.0713 +ij[4941] = 2 +id[4942] = "2783-11-01T16:18:02" +ik[4942] = 0 +il[4942] = -178 +im[4942] = 0.0241 +ij[4942] = 1 +id[4943] = "2784-02-15T06:42:03" +ik[4943] = 0 +il[4943] = 0 +im[4943] = 0.1057 +ij[4943] = 1 +id[4944] = "2784-02-17T02:34:03" +ik[4944] = 1 +il[4944] = -13 +im[4944] = 0.1854 +ij[4944] = 2 +id[4945] = "2784-06-15T00:28:01" +ik[4945] = 0 +il[4945] = 98 +im[4945] = 0.232 +ij[4945] = 1 +id[4946] = "2784-06-15T08:48:01" +ik[4946] = 1 +il[4946] = 96 +im[4946] = 0.2435 +ij[4946] = 2 +id[4947] = "2784-10-13T10:29:02" +ik[4947] = -1 +il[4947] = -161 +im[4947] = 0.2147 +ij[4947] = 2 +id[4948] = "2784-10-15T13:25:02" +ik[4948] = 0 +il[4948] = -176 +im[4948] = 0.203 +ij[4948] = 1 +id[4949] = "2785-01-29T04:47:03" +ik[4949] = 0 +il[4949] = 1 +im[4949] = 0.1659 +ij[4949] = 1 +id[4950] = "2785-01-30T10:58:03" +ik[4950] = 1 +il[4950] = -8 +im[4950] = 0.1105 +ij[4950] = 2 +id[4951] = "2785-05-26T01:25:01" +ik[4951] = 0 +il[4951] = 120 +im[4951] = 0.2195 +ij[4951] = 1 +id[4952] = "2785-05-27T21:46:01" +ik[4952] = 1 +il[4952] = 108 +im[4952] = 0.1348 +ij[4952] = 2 +id[4953] = "2785-09-26T09:03:02" +ik[4953] = -1 +il[4953] = -153 +im[4953] = 0.0312 +ij[4953] = 2 +id[4954] = "2785-09-29T01:25:02" +ik[4954] = 0 +il[4954] = -172 +im[4954] = 0.1469 +ij[4954] = 1 +id[4955] = "2786-01-13T08:23:03" +ik[4955] = 0 +il[4955] = 1 +im[4955] = 0.2225 +ij[4955] = 1 +id[4956] = "2786-01-14T01:51:03" +ik[4956] = 1 +il[4956] = -4 +im[4956] = 0.2291 +ij[4956] = 2 +id[4957] = "2786-05-06T16:47:01" +ik[4957] = 0 +il[4957] = 140 +im[4957] = 0.0589 +ij[4957] = 1 +id[4958] = "2786-05-09T12:53:01" +ik[4958] = 1 +il[4958] = 120 +im[4958] = 0.2028 +ij[4958] = 2 +id[4959] = "2786-09-08T21:31:02" +ik[4959] = -1 +il[4959] = -143 +im[4959] = 0.226 +ij[4959] = 2 +id[4960] = "2786-09-12T01:11:02" +ik[4960] = 0 +il[4960] = -165 +im[4960] = 0.1271 +ij[4960] = 1 +id[4961] = "2786-12-28T15:06:03" +ik[4961] = 0 +il[4961] = 1 +im[4961] = 0.0664 +ij[4961] = 1 +id[4962] = "2786-12-28T20:48:03" +ik[4962] = 1 +il[4962] = 0 +im[4962] = 0.0787 +ij[4962] = 2 +id[4963] = "2787-04-18T01:54:01" +ik[4963] = 0 +il[4963] = 155 +im[4963] = 0.2384 +ij[4963] = 1 +id[4964] = "2787-04-21T07:36:01" +ik[4964] = 1 +il[4964] = 133 +im[4964] = 0.1348 +ij[4964] = 2 +id[4965] = "2787-08-21T23:27:02" +ik[4965] = -1 +il[4965] = -131 +im[4965] = 0.038 +ij[4965] = 2 +id[4966] = "2787-08-25T08:23:02" +ik[4966] = 0 +il[4966] = -154 +im[4966] = 0.1861 +ij[4966] = 1 +id[4967] = "2787-12-12T17:27:03" +ik[4967] = -1 +il[4967] = 4 +im[4967] = 0.1816 +ij[4967] = 2 +id[4968] = "2787-12-12T23:30:03" +ik[4968] = 0 +il[4968] = 1 +im[4968] = 0.1732 +ij[4968] = 1 +id[4969] = "2788-03-30T05:01:01" +ik[4969] = 0 +il[4969] = 166 +im[4969] = 0.0196 +ij[4969] = 1 +id[4970] = "2788-04-02T08:34:01" +ik[4970] = 1 +il[4970] = 144 +im[4970] = 0.1811 +ij[4970] = 2 +id[4971] = "2788-08-02T16:58:02" +ik[4971] = -1 +il[4971] = -118 +im[4971] = 0.2534 +ij[4971] = 2 +id[4972] = "2788-08-05T19:11:02" +ik[4972] = 0 +il[4972] = -139 +im[4972] = 0.1633 +ij[4972] = 1 +id[4973] = "2788-11-25T13:36:03" +ik[4973] = -1 +il[4973] = 8 +im[4973] = 0.2025 +ij[4973] = 2 +id[4974] = "2788-11-26T07:11:03" +ik[4974] = 0 +il[4974] = 0 +im[4974] = 0.2176 +ij[4974] = 1 +id[4975] = "2789-03-13T00:28:01" +ik[4975] = 0 +il[4975] = 174 +im[4975] = 0.2204 +ij[4975] = 1 +id[4976] = "2789-03-15T17:41:01" +ik[4976] = 1 +il[4976] = 154 +im[4976] = 0.1252 +ij[4976] = 2 +id[4977] = "2789-07-15T05:27:02" +ik[4977] = -1 +il[4977] = -105 +im[4977] = 0.0353 +ij[4977] = 2 +id[4978] = "2789-07-17T08:52:02" +ik[4978] = 0 +il[4978] = -119 +im[4978] = 0.1259 +ij[4978] = 1 +id[4979] = "2789-11-09T06:39:03" +ik[4979] = -1 +il[4979] = 12 +im[4979] = 0.0255 +ij[4979] = 2 +id[4980] = "2789-11-10T12:28:03" +ik[4980] = 0 +il[4980] = 1 +im[4980] = 0.053 +ij[4980] = 1 +id[4981] = "2790-02-24T08:23:01" +ik[4981] = 0 +il[4981] = 178 +im[4981] = 0.1298 +ij[4981] = 1 +id[4982] = "2790-02-26T12:24:01" +ik[4982] = 1 +il[4982] = 163 +im[4982] = 0.2079 +ij[4982] = 2 +id[4983] = "2790-06-26T16:43:02" +ik[4983] = -1 +il[4983] = -92 +im[4983] = 0.2798 +ij[4983] = 2 +id[4984] = "2790-06-27T07:40:02" +ik[4984] = 0 +il[4984] = -96 +im[4984] = 0.2786 +ij[4984] = 1 +id[4985] = "2790-10-23T18:10:03" +ik[4985] = -1 +il[4985] = 16 +im[4985] = 0.2238 +ij[4985] = 2 +id[4986] = "2790-10-25T13:11:03" +ik[4986] = 0 +il[4986] = 2 +im[4986] = 0.193 +ij[4986] = 1 +id[4987] = "2791-02-08T02:08:01" +ik[4987] = 0 +il[4987] = -179 +im[4987] = 0.1365 +ij[4987] = 1 +id[4988] = "2791-02-09T16:15:01" +ik[4988] = 1 +il[4988] = 169 +im[4988] = 0.0573 +ij[4988] = 2 +id[4989] = "2791-06-07T04:04:02" +ik[4989] = 0 +il[4989] = -72 +im[4989] = 0.1028 +ij[4989] = 1 +id[4990] = "2791-06-08T04:43:02" +ik[4990] = 1 +il[4990] = -79 +im[4990] = 0.0406 +ij[4990] = 2 +id[4991] = "2791-10-06T22:15:03" +ik[4991] = -1 +il[4991] = 22 +im[4991] = 0.1 +ij[4991] = 2 +id[4992] = "2791-10-09T06:42:03" +ik[4992] = 0 +il[4992] = 5 +im[4992] = 0.1958 +ij[4992] = 1 +id[4993] = "2792-01-23T02:52:01" +ik[4993] = 0 +il[4993] = -179 +im[4993] = 0.2255 +ij[4993] = 1 +id[4994] = "2792-01-24T03:46:01" +ik[4994] = 1 +il[4994] = 174 +im[4994] = 0.2219 +ij[4994] = 2 +id[4995] = "2792-05-17T10:18:02" +ik[4995] = 0 +il[4995] = -51 +im[4995] = 0.2031 +ij[4995] = 1 +id[4996] = "2792-05-19T18:24:02" +ik[4996] = 1 +il[4996] = -67 +im[4996] = 0.2695 +ij[4996] = 2 +id[4997] = "2792-09-18T16:29:03" +ik[4997] = -1 +il[4997] = 31 +im[4997] = 0.1931 +ij[4997] = 2 +id[4998] = "2792-09-21T14:08:03" +ik[4998] = 0 +il[4998] = 11 +im[4998] = 0.0587 +ij[4998] = 1 +id[4999] = "2793-01-06T08:08:01" +ik[4999] = 0 +il[4999] = -179 +im[4999] = 0.0765 +ij[4999] = 1 +id[5000] = "2793-01-06T20:34:01" +ik[5000] = 1 +il[5000] = 178 +im[5000] = 0.104 +ij[5000] = 2 +id[5001] = "2793-04-28T08:52:02" +ik[5001] = 0 +il[5001] = -33 +im[5001] = 0.1989 +ij[5001] = 1 +id[5002] = "2793-05-01T10:58:02" +ik[5002] = 1 +il[5002] = -54 +im[5002] = 0.0378 +ij[5002] = 2 +id[5003] = "2793-09-01T00:24:03" +ik[5003] = -1 +il[5003] = 42 +im[5003] = 0.1255 +ij[5003] = 2 +id[5004] = "2793-09-04T07:25:03" +ik[5004] = 0 +il[5004] = 19 +im[5004] = 0.2308 +ij[5004] = 1 +id[5005] = "2793-12-21T15:49:01" +ik[5005] = 0 +il[5005] = -179 +im[5005] = 0.1572 +ij[5005] = 1 +id[5006] = "2793-12-21T16:29:01" +ik[5006] = 1 +il[5006] = -178 +im[5006] = 0.1561 +ij[5006] = 2 +id[5007] = "2794-04-10T01:54:02" +ik[5007] = 0 +il[5007] = -20 +im[5007] = 0.1168 +ij[5007] = 1 +id[5008] = "2794-04-13T08:05:02" +ik[5008] = 1 +il[5008] = -42 +im[5008] = 0.2371 +ij[5008] = 2 +id[5009] = "2794-08-13T22:15:03" +ik[5009] = -1 +il[5009] = 55 +im[5009] = 0.1957 +ij[5009] = 2 +id[5010] = "2794-08-17T06:13:03" +ik[5010] = 0 +il[5010] = 32 +im[5010] = 0.0286 +ij[5010] = 1 +id[5011] = "2794-12-05T00:13:01" +ik[5011] = 0 +il[5011] = -172 +im[5011] = 0.2096 +ij[5011] = 1 +id[5012] = "2794-12-05T13:22:01" +ik[5012] = 1 +il[5012] = -174 +im[5012] = 0.2188 +ij[5012] = 2 +id[5013] = "2795-03-23T12:28:02" +ik[5013] = 0 +il[5013] = -10 +im[5013] = 0.1741 +ij[5013] = 1 +id[5014] = "2795-03-26T12:10:02" +ik[5014] = 1 +il[5014] = -31 +im[5014] = 0.0277 +ij[5014] = 2 +id[5015] = "2795-07-26T13:22:03" +ik[5015] = -1 +il[5015] = 68 +im[5015] = 0.1027 +ij[5015] = 2 +id[5016] = "2795-07-29T07:54:03" +ik[5016] = 0 +il[5016] = 49 +im[5016] = 0.2217 +ij[5016] = 1 +id[5017] = "2795-11-19T08:19:01" +ik[5017] = -1 +il[5017] = -170 +im[5017] = 0.0184 +ij[5017] = 2 +id[5018] = "2795-11-20T07:11:01" +ik[5018] = 0 +il[5018] = -179 +im[5018] = 0.0705 +ij[5018] = 1 +id[5019] = "2796-03-05T13:25:02" +ik[5019] = 0 +il[5019] = -4 +im[5019] = 0.1645 +ij[5019] = 1 +id[5020] = "2796-03-08T01:22:02" +ik[5020] = 1 +il[5020] = -22 +im[5020] = 0.2232 +ij[5020] = 2 +id[5021] = "2796-07-07T00:53:03" +ik[5021] = -1 +il[5021] = 81 +im[5021] = 0.2407 +ij[5021] = 2 +id[5022] = "2796-07-08T13:54:03" +ik[5022] = 0 +il[5022] = 71 +im[5022] = 0.1839 +ij[5022] = 1 +id[5023] = "2796-11-01T23:27:01" +ik[5023] = -1 +il[5023] = -166 +im[5023] = 0.2154 +ij[5023] = 2 +id[5024] = "2796-11-03T10:47:01" +ik[5024] = 0 +il[5024] = -179 +im[5024] = 0.1727 +ij[5024] = 1 +id[5025] = "2797-02-17T02:08:02" +ik[5025] = 0 +il[5025] = 0 +im[5025] = 0.085 +ij[5025] = 1 +id[5026] = "2797-02-18T00:10:02" +ik[5026] = 1 +il[5026] = -7 +im[5026] = 0.0368 +ij[5026] = 2 +id[5027] = "2797-06-18T10:04:03" +ik[5027] = 0 +il[5027] = 94 +im[5027] = 0.0744 +ij[5027] = 1 +id[5028] = "2797-06-18T12:10:03" +ik[5028] = 1 +il[5028] = 94 +im[5028] = 0.08 +ij[5028] = 2 +id[5029] = "2797-10-16T08:05:01" +ik[5029] = -1 +il[5029] = -162 +im[5029] = 0.1635 +ij[5029] = 2 +id[5030] = "2797-10-18T08:52:01" +ik[5030] = 0 +il[5030] = -177 +im[5030] = 0.2213 +ij[5030] = 1 +id[5031] = "2798-01-31T23:01:02" +ik[5031] = 0 +il[5031] = 1 +im[5031] = 0.2169 +ij[5031] = 1 +id[5032] = "2798-02-02T07:22:02" +ik[5032] = 1 +il[5032] = -3 +im[5032] = 0.1963 +ij[5032] = 2 +id[5033] = "2798-05-29T09:35:03" +ik[5033] = 0 +il[5033] = 117 +im[5033] = 0.2785 +ij[5033] = 1 +id[5034] = "2798-05-31T00:53:03" +ik[5034] = 1 +il[5034] = 106 +im[5034] = 0.2705 +ij[5034] = 2 +id[5035] = "2798-09-29T08:05:01" +ik[5035] = -1 +il[5035] = -154 +im[5035] = 0.1508 +ij[5035] = 2 +id[5036] = "2798-10-01T22:32:01" +ik[5036] = 0 +il[5036] = -173 +im[5036] = 0.0212 +ij[5036] = 1 +id[5037] = "2799-01-16T02:08:02" +ik[5037] = 0 +il[5037] = 2 +im[5037] = 0.0937 +ij[5037] = 1 +id[5038] = "2799-01-16T21:31:02" +ik[5038] = 1 +il[5038] = 1 +im[5038] = 0.1322 +ij[5038] = 2 +id[5039] = "2799-05-09T22:04:03" +ik[5039] = 0 +il[5039] = 137 +im[5039] = 0.1094 +ij[5039] = 1 +id[5040] = "2799-05-12T15:46:03" +ik[5040] = 1 +il[5040] = 118 +im[5040] = 0.0742 +ij[5040] = 2 +id[5041] = "2799-09-11T22:00:01" +ik[5041] = -1 +il[5041] = -144 +im[5041] = 0.2065 +ij[5041] = 2 +id[5042] = "2799-09-14T00:13:01" +ik[5042] = 0 +il[5042] = -159 +im[5042] = 0.2429 +ij[5042] = 1 +id[5043] = "2799-12-31T08:37:02" +ik[5043] = 0 +il[5043] = 1 +im[5043] = 0.1232 +ij[5043] = 1 +id[5044] = "2799-12-31T16:00:02" +ik[5044] = 1 +il[5044] = 5 +im[5044] = 0.1091 +ij[5044] = 2 +id[5045] = "2800-04-20T04:32:03" +ik[5045] = 0 +il[5045] = 153 +im[5045] = 0.2157 +ij[5045] = 1 +id[5046] = "2800-04-23T09:46:03" +ik[5046] = 1 +il[5046] = 131 +im[5046] = 0.26 +ij[5046] = 2 +id[5047] = "2800-08-24T01:22:01" +ik[5047] = -1 +il[5047] = -133 +im[5047] = 0.1134 +ij[5047] = 2 +id[5048] = "2800-08-27T10:18:01" +ik[5048] = 0 +il[5048] = -156 +im[5048] = 0.0923 +ij[5048] = 1 +id[5049] = "2800-12-14T12:24:02" +ik[5049] = -1 +il[5049] = 9 +im[5049] = 0.2164 +ij[5049] = 2 +id[5050] = "2800-12-14T16:47:02" +ik[5050] = 0 +il[5050] = 1 +im[5050] = 0.2163 +ij[5050] = 1 +id[5051] = "2801-04-02T05:16:03" +ik[5051] = 0 +il[5051] = 165 +im[5051] = 0.1172 +ij[5051] = 1 +id[5052] = "2801-04-05T09:31:03" +ik[5052] = 1 +il[5052] = 142 +im[5052] = 0.0797 +ij[5052] = 2 +id[5053] = "2801-08-05T20:05:01" +ik[5053] = -1 +il[5053] = -120 +im[5053] = 0.2003 +ij[5053] = 2 +id[5054] = "2801-08-08T00:13:01" +ik[5054] = 0 +il[5054] = -135 +im[5054] = 0.247 +ij[5054] = 1 +id[5055] = "2801-11-28T08:48:02" +ik[5055] = -1 +il[5055] = 13 +im[5055] = 0.0496 +ij[5055] = 2 +id[5056] = "2801-11-29T00:42:02" +ik[5056] = 0 +il[5056] = 0 +im[5056] = 0.0851 +ij[5056] = 1 +id[5057] = "2802-03-15T22:18:03" +ik[5057] = 0 +il[5057] = 173 +im[5057] = 0.2047 +ij[5057] = 1 +id[5058] = "2802-03-18T17:27:03" +ik[5058] = 1 +il[5058] = 153 +im[5058] = 0.2275 +ij[5058] = 2 +id[5059] = "2802-07-18T09:03:01" +ik[5059] = -1 +il[5059] = -106 +im[5059] = 0.1488 +ij[5059] = 2 +id[5060] = "2802-07-20T16:47:01" +ik[5060] = 0 +il[5060] = -122 +im[5060] = 0.0387 +ij[5060] = 1 +id[5061] = "2802-11-12T02:19:02" +ik[5061] = -1 +il[5061] = 17 +im[5061] = 0.1853 +ij[5061] = 2 +id[5062] = "2802-11-13T06:28:02" +ik[5062] = 0 +il[5062] = 1 +im[5062] = 0.1405 +ij[5062] = 1 +id[5063] = "2803-02-27T04:47:03" +ik[5063] = 0 +il[5063] = 178 +im[5063] = 0.0409 +ij[5063] = 1 +id[5064] = "2803-03-01T10:43:03" +ik[5064] = 1 +il[5064] = 161 +im[5064] = 0.1055 +ij[5064] = 2 +id[5065] = "2803-06-29T20:19:01" +ik[5065] = -1 +il[5065] = -94 +im[5065] = 0.1781 +ij[5065] = 2 +id[5066] = "2803-06-30T17:01:01" +ik[5066] = 0 +il[5066] = -99 +im[5066] = 0.2132 +ij[5066] = 1 +id[5067] = "2803-10-26T15:03:02" +ik[5067] = -1 +il[5067] = 21 +im[5067] = 0.1925 +ij[5067] = 2 +id[5068] = "2803-10-28T08:08:02" +ik[5068] = 0 +il[5068] = 2 +im[5068] = 0.2216 +ij[5068] = 1 +id[5069] = "2804-02-10T21:20:03" +ik[5069] = 0 +il[5069] = -179 +im[5069] = 0.2075 +ij[5069] = 1 +id[5070] = "2804-02-12T13:22:03" +ik[5070] = 1 +il[5070] = 168 +im[5070] = 0.1655 +ij[5070] = 2 +id[5071] = "2804-06-09T13:11:01" +ik[5071] = 0 +il[5071] = -76 +im[5071] = 0.2283 +ij[5071] = 1 +id[5072] = "2804-06-10T08:05:01" +ik[5072] = 1 +il[5072] = -81 +im[5072] = 0.1981 +ij[5072] = 2 +id[5073] = "2804-10-08T20:19:02" +ik[5073] = -1 +il[5073] = 25 +im[5073] = 0.0982 +ij[5073] = 2 +id[5074] = "2804-10-11T02:52:02" +ik[5074] = 0 +il[5074] = 5 +im[5074] = 0.0368 +ij[5074] = 1 +id[5075] = "2805-01-24T21:06:03" +ik[5075] = 0 +il[5075] = -179 +im[5075] = 0.125 +ij[5075] = 1 +id[5076] = "2805-01-25T23:41:03" +ik[5076] = 1 +il[5076] = 173 +im[5076] = 0.1686 +ij[5076] = 2 +id[5077] = "2805-05-20T17:16:01" +ik[5077] = 0 +il[5077] = -54 +im[5077] = 0.0362 +ij[5077] = 1 +id[5078] = "2805-05-22T21:31:01" +ik[5078] = 1 +il[5078] = -69 +im[5078] = 0.1677 +ij[5078] = 2 +id[5079] = "2805-09-21T16:15:02" +ik[5079] = -1 +il[5079] = 30 +im[5079] = 0.2404 +ij[5079] = 2 +id[5080] = "2805-09-24T11:59:02" +ik[5080] = 0 +il[5080] = 10 +im[5080] = 0.2134 +ij[5080] = 1 +id[5081] = "2806-01-09T01:40:03" +ik[5081] = 0 +il[5081] = -178 +im[5081] = 0.0865 +ij[5081] = 1 +id[5082] = "2806-01-09T16:00:03" +ik[5082] = 1 +il[5082] = 177 +im[5082] = 0.0595 +ij[5082] = 2 +id[5083] = "2806-05-01T13:11:01" +ik[5083] = 0 +il[5083] = -36 +im[5083] = 0.2684 +ij[5083] = 1 +id[5084] = "2806-05-04T13:36:01" +ik[5084] = 1 +il[5084] = -56 +im[5084] = 0.2238 +ij[5084] = 2 +id[5085] = "2806-09-04T01:36:02" +ik[5085] = -1 +il[5085] = 41 +im[5085] = 0.0332 +ij[5085] = 2 +id[5086] = "2806-09-07T07:25:02" +ik[5086] = 0 +il[5086] = 18 +im[5086] = 0.161 +ij[5086] = 1 +id[5087] = "2806-12-24T09:20:03" +ik[5087] = 0 +il[5087] = -179 +im[5087] = 0.2084 +ij[5087] = 1 +id[5088] = "2806-12-24T11:41:03" +ik[5088] = 1 +il[5088] = -179 +im[5088] = 0.2077 +ij[5088] = 2 +id[5089] = "2807-04-13T03:35:01" +ik[5089] = 0 +il[5089] = -21 +im[5089] = 0.0321 +ij[5089] = 1 +id[5090] = "2807-04-16T09:46:01" +ik[5090] = 1 +il[5090] = -44 +im[5090] = 0.163 +ij[5090] = 2 +id[5091] = "2807-08-17T00:53:02" +ik[5091] = -1 +il[5091] = 53 +im[5091] = 0.2499 +ij[5091] = 2 +id[5092] = "2807-08-20T09:20:02" +ik[5092] = 0 +il[5092] = 30 +im[5092] = 0.208 +ij[5092] = 1 +id[5093] = "2807-12-08T08:19:03" +ik[5093] = -1 +il[5093] = -175 +im[5093] = 0.0893 +ij[5093] = 2 +id[5094] = "2807-12-08T17:30:03" +ik[5094] = 0 +il[5094] = -179 +im[5094] = 0.1072 +ij[5094] = 1 +id[5095] = "2808-03-25T11:30:01" +ik[5095] = 0 +il[5095] = -11 +im[5095] = 0.2414 +ij[5095] = 1 +id[5096] = "2808-03-28T12:39:01" +ik[5096] = 1 +il[5096] = -33 +im[5096] = 0.2058 +ij[5096] = 2 +id[5097] = "2808-07-28T16:43:02" +ik[5097] = -1 +il[5097] = 66 +im[5097] = 0.0407 +ij[5097] = 2 +id[5098] = "2808-07-31T14:23:02" +ik[5098] = 0 +il[5098] = 46 +im[5098] = 0.1431 +ij[5098] = 1 +id[5099] = "2808-11-21T03:46:03" +ik[5099] = -1 +il[5099] = -171 +im[5099] = 0.1359 +ij[5099] = 2 +id[5100] = "2808-11-22T00:56:03" +ik[5100] = 0 +il[5100] = 180 +im[5100] = 0.0968 +ij[5100] = 1 +id[5101] = "2809-03-08T10:47:01" +ik[5101] = 0 +il[5101] = -5 +im[5101] = 0.0481 +ij[5101] = 1 +id[5102] = "2809-03-11T00:24:01" +ik[5102] = 1 +il[5102] = -23 +im[5102] = 0.1771 +ij[5102] = 2 +id[5103] = "2809-07-10T04:29:02" +ik[5103] = -1 +il[5103] = 79 +im[5103] = 0.2424 +ij[5103] = 2 +id[5104] = "2809-07-11T22:47:02" +ik[5104] = 0 +il[5104] = 67 +im[5104] = 0.2573 +ij[5104] = 1 +id[5105] = "2809-11-04T19:36:03" +ik[5105] = -1 +il[5105] = -167 +im[5105] = 0.2039 +ij[5105] = 2 +id[5106] = "2809-11-06T05:01:03" +ik[5106] = 0 +il[5106] = -179 +im[5106] = 0.213 +ij[5106] = 1 +id[5107] = "2810-02-19T21:49:01" +ik[5107] = 0 +il[5107] = -1 +im[5107] = 0.2018 +ij[5107] = 1 +id[5108] = "2810-02-21T21:46:01" +ik[5108] = 1 +il[5108] = -15 +im[5108] = 0.1309 +ij[5108] = 2 +id[5109] = "2810-06-21T15:46:02" +ik[5109] = -1 +il[5109] = 92 +im[5109] = 0.0854 +ij[5109] = 2 +id[5110] = "2810-06-21T19:25:02" +ik[5110] = 0 +il[5110] = 91 +im[5110] = 0.0769 +ij[5110] = 1 +id[5111] = "2810-10-19T05:27:03" +ik[5111] = -1 +il[5111] = -163 +im[5111] = 0.0339 +ij[5111] = 2 +id[5112] = "2810-10-21T04:04:03" +ik[5112] = 0 +il[5112] = -177 +im[5112] = 0.0751 +ij[5112] = 1 +id[5113] = "2811-02-03T17:44:01" +ik[5113] = 0 +il[5113] = 1 +im[5113] = 0.1616 +ij[5113] = 1 +id[5114] = "2811-02-05T04:00:01" +ik[5114] = 1 +il[5114] = -9 +im[5114] = 0.206 +ij[5114] = 2 +id[5115] = "2811-06-01T17:44:02" +ik[5115] = 0 +il[5115] = 114 +im[5115] = 0.1754 +ij[5115] = 1 +id[5116] = "2811-06-03T04:15:02" +ik[5116] = 1 +il[5116] = 104 +im[5116] = 0.2312 +ij[5116] = 2 +id[5117] = "2811-10-02T06:53:03" +ik[5117] = -1 +il[5117] = -155 +im[5117] = 0.2292 +ij[5117] = 2 +id[5118] = "2811-10-04T19:11:03" +ik[5118] = 0 +il[5118] = -173 +im[5118] = 0.1613 +ij[5118] = 1 +id[5119] = "2812-01-18T19:54:01" +ik[5119] = 0 +il[5119] = 2 +im[5119] = 0.041 +ij[5119] = 1 +id[5120] = "2812-01-19T17:12:01" +ik[5120] = 1 +il[5120] = -5 +im[5120] = 0.0073 +ij[5120] = 2 +id[5121] = "2812-05-12T04:04:02" +ik[5121] = 0 +il[5121] = 134 +im[5121] = 0.2364 +ij[5121] = 1 +id[5122] = "2812-05-14T18:39:02" +ik[5122] = 1 +il[5122] = 117 +im[5122] = 0.1266 +ij[5122] = 2 +id[5123] = "2812-09-13T22:15:03" +ik[5123] = -1 +il[5123] = -146 +im[5123] = 0.0586 +ij[5123] = 2 +id[5124] = "2812-09-16T23:01:03" +ik[5124] = 0 +il[5124] = -167 +im[5124] = 0.1972 +ij[5124] = 1 +id[5125] = "2813-01-02T01:54:01" +ik[5125] = 0 +il[5125] = 1 +im[5125] = 0.2066 +ij[5125] = 1 +id[5126] = "2813-01-02T10:58:01" +ik[5126] = 1 +il[5126] = -1 +im[5126] = 0.2016 +ij[5126] = 2 +id[5127] = "2813-04-23T07:40:02" +ik[5127] = 0 +il[5127] = 151 +im[5127] = 0.0706 +ij[5127] = 1 +id[5128] = "2813-04-26T12:10:02" +ik[5128] = 1 +il[5128] = 129 +im[5128] = 0.2254 +ij[5128] = 2 +id[5129] = "2813-08-27T03:17:03" +ik[5129] = -1 +il[5129] = -134 +im[5129] = 0.2438 +ij[5129] = 2 +id[5130] = "2813-08-30T11:30:03" +ik[5130] = 0 +il[5130] = -158 +im[5130] = 0.1216 +ij[5130] = 1 +id[5131] = "2813-12-17T07:36:01" +ik[5131] = -1 +il[5131] = 3 +im[5131] = 0.1345 +ij[5131] = 2 +id[5132] = "2813-12-17T10:04:01" +ik[5132] = 0 +il[5132] = 1 +im[5132] = 0.1388 +ij[5132] = 1 +id[5133] = "2814-04-05T05:44:02" +ik[5133] = 0 +il[5133] = 163 +im[5133] = 0.2473 +ij[5133] = 1 +id[5134] = "2814-04-08T10:58:02" +ik[5134] = 1 +il[5134] = 141 +im[5134] = 0.1403 +ij[5134] = 2 +id[5135] = "2814-08-08T22:58:03" +ik[5135] = -1 +il[5135] = -122 +im[5135] = 0.0857 +ij[5135] = 2 +id[5136] = "2814-08-12T04:47:03" +ik[5136] = 0 +il[5136] = -144 +im[5136] = 0.2308 +ij[5136] = 1 +id[5137] = "2814-12-01T04:00:01" +ik[5137] = -1 +il[5137] = 7 +im[5137] = 0.0847 +ij[5137] = 2 +id[5138] = "2814-12-01T18:13:01" +ik[5138] = 0 +il[5138] = 0 +im[5138] = 0.0548 +ij[5138] = 1 +id[5139] = "2815-03-18T20:37:02" +ik[5139] = 0 +il[5139] = 172 +im[5139] = 0.114 +ij[5139] = 1 +id[5140] = "2815-03-21T17:27:02" +ik[5140] = 1 +il[5140] = 151 +im[5140] = 0.2279 +ij[5140] = 2 +id[5141] = "2815-07-21T12:39:03" +ik[5141] = -1 +il[5141] = -108 +im[5141] = 0.2627 +ij[5141] = 2 +id[5142] = "2815-07-24T00:28:03" +ik[5142] = 0 +il[5142] = -125 +im[5142] = 0.1972 +ij[5142] = 1 +id[5143] = "2815-11-14T22:15:01" +ik[5143] = -1 +il[5143] = 11 +im[5143] = 0.209 +ij[5143] = 2 +id[5144] = "2815-11-16T00:28:01" +ik[5144] = 0 +il[5144] = 0 +im[5144] = 0.2082 +ij[5144] = 1 +id[5145] = "2816-03-01T01:11:02" +ik[5145] = 0 +il[5145] = 177 +im[5145] = 0.1885 +ij[5145] = 1 +id[5146] = "2816-03-03T09:17:02" +ik[5146] = 1 +il[5146] = 160 +im[5146] = 0.0808 +ij[5146] = 2 +id[5147] = "2816-07-01T23:55:03" +ik[5147] = -1 +il[5147] = -95 +im[5147] = 0.0519 +ij[5147] = 2 +id[5148] = "2816-07-03T02:23:03" +ik[5148] = 0 +il[5148] = -103 +im[5148] = 0.1183 +ij[5148] = 1 +id[5149] = "2816-10-28T11:41:01" +ik[5149] = -1 +il[5149] = 15 +im[5149] = 0.044 +ij[5149] = 2 +id[5150] = "2816-10-30T02:52:01" +ik[5150] = 0 +il[5150] = 2 +im[5150] = 0.1192 +ij[5150] = 1 +id[5151] = "2817-02-12T16:18:02" +ik[5151] = 0 +il[5151] = -180 +im[5151] = 0.2036 +ij[5151] = 1 +id[5152] = "2817-02-14T10:29:02" +ik[5152] = 1 +il[5152] = 167 +im[5152] = 0.2347 +ij[5152] = 2 +id[5153] = "2817-06-12T22:18:03" +ik[5153] = 0 +il[5153] = -79 +im[5153] = 0.2592 +ij[5153] = 1 +id[5154] = "2817-06-13T11:27:03" +ik[5154] = 1 +il[5154] = -83 +im[5154] = 0.2623 +ij[5154] = 2 +id[5155] = "2817-10-11T18:10:01" +ik[5155] = -1 +il[5155] = 20 +im[5155] = 0.1905 +ij[5155] = 2 +id[5156] = "2817-10-13T22:47:01" +ik[5156] = 0 +il[5156] = 4 +im[5156] = 0.1046 +ij[5156] = 1 +id[5157] = "2818-01-27T15:20:02" +ik[5157] = 0 +il[5157] = -178 +im[5157] = 0.0105 +ij[5157] = 1 +id[5158] = "2818-01-28T19:51:02" +ik[5158] = 1 +il[5158] = 173 +im[5158] = 0.0607 +ij[5158] = 2 +id[5159] = "2818-05-24T00:42:03" +ik[5159] = 0 +il[5159] = -57 +im[5159] = 0.1165 +ij[5159] = 1 +id[5160] = "2818-05-26T00:39:03" +ik[5160] = 1 +il[5160] = -70 +im[5160] = 0.0186 +ij[5160] = 2 +id[5161] = "2818-09-24T15:31:01" +ik[5161] = -1 +il[5161] = 29 +im[5161] = 0.1274 +ij[5161] = 2 +id[5162] = "2818-09-27T09:35:01" +ik[5162] = 0 +il[5162] = 9 +im[5162] = 0.2129 +ij[5162] = 1 +id[5163] = "2819-01-11T19:25:02" +ik[5163] = 0 +il[5163] = -178 +im[5163] = 0.209 +ij[5163] = 1 +id[5164] = "2819-01-12T11:27:02" +ik[5164] = 1 +il[5164] = 177 +im[5164] = 0.1953 +ij[5164] = 2 +id[5165] = "2819-05-04T17:59:03" +ik[5165] = 0 +il[5165] = -38 +im[5165] = 0.1728 +ij[5165] = 1 +id[5166] = "2819-05-07T16:15:03" +ik[5166] = 1 +il[5166] = -58 +im[5166] = 0.2499 +ij[5166] = 2 +id[5167] = "2819-09-07T02:34:01" +ik[5167] = -1 +il[5167] = 39 +im[5167] = 0.1834 +ij[5167] = 2 +id[5168] = "2819-09-10T07:25:01" +ik[5168] = 0 +il[5168] = 16 +im[5168] = 0.0414 +ij[5168] = 1 +id[5169] = "2819-12-27T02:37:02" +ik[5169] = 0 +il[5169] = -179 +im[5169] = 0.1735 +ij[5169] = 1 +id[5170] = "2819-12-27T06:39:02" +ik[5170] = 1 +il[5170] = -179 +im[5170] = 0.1792 +ij[5170] = 2 +id[5171] = "2820-04-15T05:30:03" +ik[5171] = 0 +il[5171] = -23 +im[5171] = 0.1986 +ij[5171] = 1 +id[5172] = "2820-04-18T11:41:03" +ik[5172] = 1 +il[5172] = -46 +im[5172] = 0.0455 +ij[5172] = 2 +id[5173] = "2820-08-19T03:17:01" +ik[5173] = -1 +il[5173] = 51 +im[5173] = 0.1709 +ij[5173] = 2 +id[5174] = "2820-08-22T12:13:01" +ik[5174] = 0 +il[5174] = 27 +im[5174] = 0.2394 +ij[5174] = 1 +id[5175] = "2820-12-10T03:17:02" +ik[5175] = -1 +il[5175] = -175 +im[5175] = 0.0421 +ij[5175] = 2 +id[5176] = "2820-12-10T11:01:02" +ik[5176] = 0 +il[5176] = -179 +im[5176] = 0.0242 +ij[5176] = 1 +id[5177] = "2821-03-28T11:01:03" +ik[5177] = 0 +il[5177] = -13 +im[5177] = 0.1711 +ij[5177] = 1 +id[5178] = "2821-03-31T13:22:03" +ik[5178] = 1 +il[5178] = -34 +im[5178] = 0.2406 +ij[5178] = 2 +id[5179] = "2821-07-31T19:51:01" +ik[5179] = -1 +il[5179] = 64 +im[5179] = 0.2178 +ij[5179] = 2 +id[5180] = "2821-08-03T20:08:01" +ik[5180] = 0 +il[5180] = 43 +im[5180] = 0.0751 +ij[5180] = 1 +id[5181] = "2821-11-23T23:12:02" +ik[5181] = -1 +il[5181] = -171 +im[5181] = 0.2155 +ij[5181] = 2 +id[5182] = "2821-11-24T18:28:02" +ik[5182] = 0 +il[5182] = 180 +im[5182] = 0.2087 +ij[5182] = 1 +id[5183] = "2822-03-11T08:08:03" +ik[5183] = 0 +il[5183] = -5 +im[5183] = 0.1585 +ij[5183] = 1 +id[5184] = "2822-03-13T23:55:03" +ik[5184] = 1 +il[5184] = -25 +im[5184] = 0.0352 +ij[5184] = 2 +id[5185] = "2822-07-13T08:05:01" +ik[5185] = -1 +il[5185] = 77 +im[5185] = 0.17 +ij[5185] = 2 +id[5186] = "2822-07-15T07:25:01" +ik[5186] = 0 +il[5186] = 64 +im[5186] = 0.2455 +ij[5186] = 1 +id[5187] = "2822-11-07T15:46:02" +ik[5187] = -1 +il[5187] = -167 +im[5187] = 0.1044 +ij[5187] = 2 +id[5188] = "2822-11-08T23:16:02" +ik[5188] = 0 +il[5188] = -179 +im[5188] = 0.1608 +ij[5188] = 1 +id[5189] = "2823-02-22T17:30:03" +ik[5189] = 0 +il[5189] = -1 +im[5189] = 0.2271 +ij[5189] = 1 +id[5190] = "2823-02-24T19:51:03" +ik[5190] = 1 +il[5190] = -16 +im[5190] = 0.2322 +ij[5190] = 2 +id[5191] = "2823-06-24T19:22:01" +ik[5191] = -1 +il[5191] = 90 +im[5191] = 0.2462 +ij[5191] = 2 +id[5192] = "2823-06-25T05:01:01" +ik[5192] = 0 +il[5192] = 87 +im[5192] = 0.2341 +ij[5192] = 1 +id[5193] = "2823-10-22T02:34:02" +ik[5193] = -1 +il[5193] = -163 +im[5193] = 0.1499 +ij[5193] = 2 +id[5194] = "2823-10-23T23:16:02" +ik[5194] = 0 +il[5194] = -177 +im[5194] = 0.0588 +ij[5194] = 1 +id[5195] = "2824-02-06T12:28:03" +ik[5195] = 0 +il[5195] = 1 +im[5195] = 0.0329 +ij[5195] = 1 +id[5196] = "2824-02-08T00:38:03" +ik[5196] = 1 +il[5196] = -10 +im[5196] = 0.1055 +ij[5196] = 2 +id[5197] = "2824-06-04T02:08:01" +ik[5197] = 0 +il[5197] = 111 +im[5197] = 0.067 +ij[5197] = 1 +id[5198] = "2824-06-05T07:36:01" +ik[5198] = 1 +il[5198] = 102 +im[5198] = 0.1369 +ij[5198] = 2 +id[5199] = "2824-10-04T05:26:02" +ik[5199] = -1 +il[5199] = -156 +im[5199] = 0.1759 +ij[5199] = 2 +id[5200] = "2824-10-06T15:49:02" +ik[5200] = 0 +il[5200] = -174 +im[5200] = 0.2211 +ij[5200] = 1 +id[5201] = "2825-01-20T13:54:03" +ik[5201] = 0 +il[5201] = 2 +im[5201] = 0.2052 +ij[5201] = 1 +id[5202] = "2825-01-21T12:53:03" +ik[5202] = 1 +il[5202] = -5 +im[5202] = 0.1773 +ij[5202] = 2 +id[5203] = "2825-05-15T10:18:01" +ik[5203] = 0 +il[5203] = 132 +im[5203] = 0.2469 +ij[5203] = 1 +id[5204] = "2825-05-17T21:31:01" +ik[5204] = 1 +il[5204] = 115 +im[5204] = 0.2402 +ij[5204] = 2 +id[5205] = "2825-09-16T22:29:02" +ik[5205] = -1 +il[5205] = -147 +im[5205] = 0.0932 +ij[5205] = 2 +id[5206] = "2825-09-19T21:20:02" +ik[5206] = 0 +il[5206] = -168 +im[5206] = 0.0684 +ij[5206] = 1 +id[5207] = "2826-01-04T19:25:03" +ik[5207] = 0 +il[5207] = 1 +im[5207] = 0.199 +ij[5207] = 1 +id[5208] = "2826-01-05T06:24:03" +ik[5208] = 1 +il[5208] = -1 +im[5208] = 0.2101 +ij[5208] = 2 +id[5209] = "2826-04-26T11:16:01" +ik[5209] = 0 +il[5209] = 149 +im[5209] = 0.0925 +ij[5209] = 1 +id[5210] = "2826-04-29T14:34:01" +ik[5210] = 1 +il[5210] = 127 +im[5210] = 0.0916 +ij[5210] = 2 +id[5211] = "2826-08-30T04:58:02" +ik[5211] = -1 +il[5211] = -136 +im[5211] = 0.2129 +ij[5211] = 2 +id[5212] = "2826-09-02T12:28:02" +ik[5212] = 0 +il[5212] = -159 +im[5212] = 0.2071 +ij[5212] = 1 +id[5213] = "2826-12-20T02:34:03" +ik[5213] = -1 +il[5213] = 3 +im[5213] = 0.0235 +ij[5213] = 2 +id[5214] = "2826-12-20T03:20:03" +ik[5214] = 0 +il[5214] = 1 +im[5214] = 0.0228 +ij[5214] = 1 +id[5215] = "2827-04-08T06:42:01" +ik[5215] = 0 +il[5215] = 162 +im[5215] = 0.2133 +ij[5215] = 1 +id[5216] = "2827-04-11T12:24:01" +ik[5216] = 1 +il[5216] = 139 +im[5216] = 0.2204 +ij[5216] = 2 +id[5217] = "2827-08-12T01:50:02" +ik[5217] = -1 +il[5217] = -124 +im[5217] = 0.1205 +ij[5217] = 2 +id[5218] = "2827-08-15T08:52:02" +ik[5218] = 0 +il[5218] = -146 +im[5218] = 0.0721 +ij[5218] = 1 +id[5219] = "2827-12-03T23:12:03" +ik[5219] = -1 +il[5219] = 7 +im[5219] = 0.2168 +ij[5219] = 2 +id[5220] = "2827-12-04T11:30:03" +ik[5220] = 0 +il[5220] = 0 +im[5220] = 0.208 +ij[5220] = 1 +id[5221] = "2828-03-20T19:11:01" +ik[5221] = 0 +il[5221] = 171 +im[5221] = 0.0904 +ij[5221] = 1 +id[5222] = "2828-03-23T17:26:01" +ik[5222] = 1 +il[5222] = 150 +im[5222] = 0.0742 +ij[5222] = 2 +id[5223] = "2828-07-23T16:00:02" +ik[5223] = -1 +il[5223] = -110 +im[5223] = 0.2312 +ij[5223] = 2 +id[5224] = "2828-07-26T07:40:02" +ik[5224] = 0 +il[5224] = -128 +im[5224] = 0.2512 +ij[5224] = 1 +id[5225] = "2828-11-16T17:55:03" +ik[5225] = -1 +il[5225] = 11 +im[5225] = 0.1564 +ij[5225] = 2 +id[5226] = "2828-11-17T18:13:03" +ik[5226] = 0 +il[5226] = 0 +im[5226] = 0.1916 +ij[5226] = 1 +id[5227] = "2829-03-03T21:49:01" +ik[5227] = 0 +il[5227] = 177 +im[5227] = 0.2307 +ij[5227] = 1 +id[5228] = "2829-03-06T08:05:01" +ik[5228] = 1 +il[5228] = 159 +im[5228] = 0.1942 +ij[5228] = 2 +id[5229] = "2829-07-05T03:31:02" +ik[5229] = -1 +il[5229] = -97 +im[5229] = 0.1715 +ij[5229] = 2 +id[5230] = "2829-07-06T11:44:02" +ik[5230] = 0 +il[5230] = -106 +im[5230] = 0.0967 +ij[5230] = 1 +id[5231] = "2829-10-31T08:05:03" +ik[5231] = -1 +il[5231] = 15 +im[5231] = 0.1125 +ij[5231] = 2 +id[5232] = "2829-11-01T21:20:03" +ik[5232] = 0 +il[5232] = 2 +im[5232] = 0.0293 +ij[5232] = 1 +id[5233] = "2830-02-15T11:44:01" +ik[5233] = 0 +il[5233] = -180 +im[5233] = 0.0462 +ij[5233] = 1 +id[5234] = "2830-02-17T07:50:01" +ik[5234] = 1 +il[5234] = 166 +im[5234] = 0.1427 +ij[5234] = 2 +id[5235] = "2830-06-16T07:40:02" +ik[5235] = 0 +il[5235] = -83 +im[5235] = 0.2185 +ij[5235] = 1 +id[5236] = "2830-06-16T15:02:02" +ik[5236] = 1 +il[5236] = -85 +im[5236] = 0.2303 +ij[5236] = 2 +id[5237] = "2830-10-14T15:46:03" +ik[5237] = -1 +il[5237] = 19 +im[5237] = 0.2175 +ij[5237] = 2 +id[5238] = "2830-10-16T18:28:03" +ik[5238] = 0 +il[5238] = 4 +im[5238] = 0.2244 +ij[5238] = 1 +id[5239] = "2831-01-30T09:35:01" +ik[5239] = 0 +il[5239] = -178 +im[5239] = 0.1843 +ij[5239] = 1 +id[5240] = "2831-01-31T16:14:01" +ik[5240] = 1 +il[5240] = 172 +im[5240] = 0.1343 +ij[5240] = 2 +id[5241] = "2831-05-27T08:23:02" +ik[5241] = 0 +il[5241] = -60 +im[5241] = 0.2527 +ij[5241] = 1 +id[5242] = "2831-05-29T03:46:02" +ik[5242] = 1 +il[5242] = -72 +im[5242] = 0.1908 +ij[5242] = 2 +id[5243] = "2831-09-27T14:48:03" +ik[5243] = -1 +il[5243] = 27 +im[5243] = 0.0005 +ij[5243] = 2 +id[5244] = "2831-09-30T06:42:03" +ik[5244] = 0 +il[5244] = 8 +im[5244] = 0.1404 +ij[5244] = 1 +id[5245] = "2832-01-14T13:11:01" +ik[5245] = 0 +il[5245] = -178 +im[5245] = 0.2084 +ij[5245] = 1 +id[5246] = "2832-01-15T06:53:01" +ik[5246] = 1 +il[5246] = 176 +im[5246] = 0.219 +ij[5246] = 2 +id[5247] = "2832-05-06T23:01:02" +ik[5247] = 0 +il[5247] = -41 +im[5247] = 0.0507 +ij[5247] = 1 +id[5248] = "2832-05-09T18:53:02" +ik[5248] = 1 +il[5248] = -60 +im[5248] = 0.2008 +ij[5248] = 2 +id[5249] = "2832-09-09T03:17:03" +ik[5249] = -1 +il[5249] = 37 +im[5249] = 0.2297 +ij[5249] = 2 +id[5250] = "2832-09-12T06:42:03" +ik[5250] = 0 +il[5250] = 15 +im[5250] = 0.1619 +ij[5250] = 1 +id[5251] = "2832-12-28T19:54:01" +ik[5251] = 0 +il[5251] = -179 +im[5251] = 0.0107 +ij[5251] = 1 +id[5252] = "2832-12-29T01:50:01" +ik[5252] = 1 +il[5252] = -180 +im[5252] = 0.0222 +ij[5252] = 2 +id[5253] = "2833-04-18T07:54:02" +ik[5253] = 0 +il[5253] = -25 +im[5253] = 0.2414 +ij[5253] = 1 +id[5254] = "2833-04-21T13:36:02" +ik[5254] = 1 +il[5254] = -48 +im[5254] = 0.1726 +ij[5254] = 2 +id[5255] = "2833-08-22T05:26:03" +ik[5255] = -1 +il[5255] = 49 +im[5255] = 0.0098 +ij[5255] = 2 +id[5256] = "2833-08-25T14:23:03" +ik[5256] = 0 +il[5256] = 26 +im[5256] = 0.1769 +ij[5256] = 1 +id[5257] = "2833-12-12T22:29:01" +ik[5257] = -1 +il[5257] = -176 +im[5257] = 0.2 +ij[5257] = 2 +id[5258] = "2833-12-13T04:18:01" +ik[5258] = 0 +il[5258] = -179 +im[5258] = 0.1933 +ij[5258] = 1 +id[5259] = "2834-03-31T10:47:02" +ik[5259] = 0 +il[5259] = -14 +im[5259] = 0.0153 +ij[5259] = 1 +id[5260] = "2834-04-03T14:19:02" +ik[5260] = 1 +il[5260] = -36 +im[5260] = 0.1692 +ij[5260] = 2 +id[5261] = "2834-08-03T23:12:03" +ik[5261] = -1 +il[5261] = 62 +im[5261] = 0.245 +ij[5261] = 2 +id[5262] = "2834-08-07T01:40:03" +ik[5262] = 0 +il[5262] = 41 +im[5262] = 0.1708 +ij[5262] = 1 +id[5263] = "2834-11-26T18:38:01" +ik[5263] = -1 +il[5263] = -172 +im[5263] = 0.1871 +ij[5263] = 2 +id[5264] = "2834-11-27T11:59:01" +ik[5264] = 0 +il[5264] = 180 +im[5264] = 0.2057 +ij[5264] = 1 +id[5265] = "2835-03-14T05:44:02" +ik[5265] = 0 +il[5265] = -6 +im[5265] = 0.2193 +ij[5265] = 1 +id[5266] = "2835-03-16T23:26:02" +ik[5266] = 1 +il[5266] = -26 +im[5266] = 0.1341 +ij[5266] = 2 +id[5267] = "2835-07-16T11:41:03" +ik[5267] = -1 +il[5267] = 75 +im[5267] = 0.0489 +ij[5267] = 2 +id[5268] = "2835-07-18T15:49:03" +ik[5268] = 0 +il[5268] = 61 +im[5268] = 0.0837 +ij[5268] = 1 +id[5269] = "2835-11-10T11:41:01" +ik[5269] = -1 +il[5269] = -168 +im[5269] = 0.0787 +ij[5269] = 2 +id[5270] = "2835-11-11T17:30:01" +ik[5270] = 0 +il[5270] = -179 +im[5270] = 0.0192 +ij[5270] = 1 +id[5271] = "2836-02-25T13:40:02" +ik[5271] = 0 +il[5271] = -2 +im[5271] = 0.0897 +ij[5271] = 1 +id[5272] = "2836-02-27T17:55:02" +ik[5272] = 1 +il[5272] = -18 +im[5272] = 0.1837 +ij[5272] = 2 +id[5273] = "2836-06-26T22:58:03" +ik[5273] = -1 +il[5273] = 88 +im[5273] = 0.2659 +ij[5273] = 2 +id[5274] = "2836-06-27T14:37:03" +ik[5274] = 0 +il[5274] = 84 +im[5274] = 0.2678 +ij[5274] = 1 +id[5275] = "2836-10-23T23:26:01" +ik[5275] = -1 +il[5275] = -164 +im[5275] = 0.2337 +ij[5275] = 2 +id[5276] = "2836-10-25T18:13:01" +ik[5276] = 0 +il[5276] = -178 +im[5276] = 0.2134 +ij[5276] = 1 +id[5277] = "2837-02-08T07:11:02" +ik[5277] = 0 +il[5277] = 1 +im[5277] = 0.1428 +ij[5277] = 1 +id[5278] = "2837-02-09T21:31:02" +ik[5278] = 1 +il[5278] = -11 +im[5278] = 0.0687 +ij[5278] = 2 +id[5279] = "2837-06-07T11:01:03" +ik[5279] = 0 +il[5279] = 107 +im[5279] = 0.1513 +ij[5279] = 1 +id[5280] = "2837-06-08T10:58:03" +ik[5280] = 1 +il[5280] = 101 +im[5280] = 0.0924 +ij[5280] = 2 +id[5281] = "2837-10-07T03:46:01" +ik[5281] = -1 +il[5281] = -158 +im[5281] = 0.0784 +ij[5281] = 2 +id[5282] = "2837-10-09T11:59:01" +ik[5282] = 0 +il[5282] = -175 +im[5282] = 0.1826 +ij[5282] = 1 +id[5283] = "2838-01-23T07:54:02" +ik[5283] = 0 +il[5283] = 1 +im[5283] = 0.2098 +ij[5283] = 1 +id[5284] = "2838-01-24T08:48:02" +ik[5284] = 1 +il[5284] = -6 +im[5284] = 0.2144 +ij[5284] = 2 +id[5285] = "2838-05-18T17:01:03" +ik[5285] = 0 +il[5285] = 129 +im[5285] = 0.1913 +ij[5285] = 1 +id[5286] = "2838-05-21T00:38:03" +ik[5286] = 1 +il[5286] = 113 +im[5286] = 0.2668 +ij[5286] = 2 +id[5287] = "2838-09-19T22:14:01" +ik[5287] = -1 +il[5287] = -149 +im[5287] = 0.222 +ij[5287] = 2 +id[5288] = "2838-09-22T19:40:01" +ik[5288] = 0 +il[5288] = -169 +im[5288] = 0.1155 +ij[5288] = 1 +id[5289] = "2839-01-07T12:56:02" +ik[5289] = 0 +il[5289] = 1 +im[5289] = 0.0319 +ij[5289] = 1 +id[5290] = "2839-01-08T01:36:02" +ik[5290] = 1 +il[5290] = -2 +im[5290] = 0.0596 +ij[5290] = 2 +id[5291] = "2839-04-29T15:06:03" +ik[5291] = 0 +il[5291] = 147 +im[5291] = 0.2348 +ij[5291] = 1 +id[5292] = "2839-05-02T16:58:03" +ik[5292] = 1 +il[5292] = 125 +im[5292] = 0.0993 +ij[5292] = 2 +id[5293] = "2839-09-02T06:24:01" +ik[5293] = -1 +il[5293] = -138 +im[5293] = 0.1268 +ij[5293] = 2 +id[5294] = "2839-09-05T13:11:01" +ik[5294] = 0 +il[5294] = -161 +im[5294] = 0.2364 +ij[5294] = 1 +id[5295] = "2839-12-22T20:37:02" +ik[5295] = 0 +il[5295] = 1 +im[5295] = 0.1651 +ij[5295] = 1 +id[5296] = "2839-12-22T21:31:02" +ik[5296] = 1 +il[5296] = 2 +im[5296] = 0.1637 +ij[5296] = 2 +id[5297] = "2840-04-10T07:54:03" +ik[5297] = 0 +il[5297] = 160 +im[5297] = 0.1132 +ij[5297] = 1 +id[5298] = "2840-04-13T13:50:03" +ik[5298] = 1 +il[5298] = 137 +im[5298] = 0.241 +ij[5298] = 2 +id[5299] = "2840-08-14T04:29:01" +ik[5299] = -1 +il[5299] = -126 +im[5299] = 0.2194 +ij[5299] = 2 +id[5300] = "2840-08-17T12:28:01" +ik[5300] = 0 +il[5300] = -149 +im[5300] = 0.0751 +ij[5300] = 1 +id[5301] = "2840-12-05T18:10:02" +ik[5301] = -1 +il[5301] = 6 +im[5301] = 0.1976 +ij[5301] = 2 +id[5302] = "2840-12-06T05:01:02" +ik[5302] = 0 +il[5302] = 0 +im[5302] = 0.2058 +ij[5302] = 1 +id[5303] = "2841-03-23T17:59:03" +ik[5303] = 0 +il[5303] = 170 +im[5303] = 0.1999 +ij[5303] = 1 +id[5304] = "2841-03-26T17:55:03" +ik[5304] = 1 +il[5304] = 148 +im[5304] = 0.0681 +ij[5304] = 2 +id[5305] = "2841-07-26T19:22:01" +ik[5305] = -1 +il[5305] = -112 +im[5305] = 0.0948 +ij[5305] = 2 +id[5306] = "2841-07-29T14:37:01" +ik[5306] = 0 +il[5306] = -131 +im[5306] = 0.2143 +ij[5306] = 1 +id[5307] = "2841-11-19T13:22:02" +ik[5307] = -1 +il[5307] = 10 +im[5307] = 0.0348 +ij[5307] = 2 +id[5308] = "2841-11-20T11:59:02" +ik[5308] = 0 +il[5308] = 0 +im[5308] = 0.019 +ij[5308] = 1 +id[5309] = "2842-03-06T18:42:03" +ik[5309] = 0 +il[5309] = 176 +im[5309] = 0.1449 +ij[5309] = 1 +id[5310] = "2842-03-09T06:53:03" +ik[5310] = 1 +il[5310] = 158 +im[5310] = 0.2229 +ij[5310] = 2 +id[5311] = "2842-07-08T07:07:01" +ik[5311] = -1 +il[5311] = -99 +im[5311] = 0.2425 +ij[5311] = 2 +id[5312] = "2842-07-09T20:52:01" +ik[5312] = 0 +il[5312] = -110 +im[5312] = 0.1937 +ij[5312] = 1 +id[5313] = "2842-11-03T04:29:02" +ik[5313] = -1 +il[5313] = 14 +im[5313] = 0.2196 +ij[5313] = 2 +id[5314] = "2842-11-04T15:49:02" +ik[5314] = 0 +il[5314] = 1 +im[5314] = 0.1828 +ij[5314] = 1 +id[5315] = "2843-02-18T07:11:03" +ik[5315] = 0 +il[5315] = -180 +im[5315] = 0.0994 +ij[5315] = 1 +id[5316] = "2843-02-20T05:26:03" +ik[5316] = 1 +il[5316] = 165 +im[5316] = 0.0318 +ij[5316] = 2 +id[5317] = "2843-06-19T17:01:01" +ik[5317] = 0 +il[5317] = -86 +im[5317] = 0.0466 +ij[5317] = 1 +id[5318] = "2843-06-19T18:24:01" +ik[5318] = 1 +il[5318] = -86 +im[5318] = 0.0489 +ij[5318] = 2 +id[5319] = "2843-10-17T13:22:02" +ik[5319] = -1 +il[5319] = 18 +im[5319] = 0.1226 +ij[5319] = 2 +id[5320] = "2843-10-19T13:54:02" +ik[5320] = 0 +il[5320] = 3 +im[5320] = 0.1986 +ij[5320] = 1 +id[5321] = "2844-02-02T04:04:03" +ik[5321] = 0 +il[5321] = -179 +im[5321] = 0.2115 +ij[5321] = 1 +id[5322] = "2844-02-03T12:38:03" +ik[5322] = 1 +il[5322] = 171 +im[5322] = 0.2077 +ij[5322] = 2 +id[5323] = "2844-05-29T16:18:01" +ik[5323] = 0 +il[5323] = -63 +im[5323] = 0.2651 +ij[5323] = 1 +id[5324] = "2844-05-31T07:07:01" +ik[5324] = 1 +il[5324] = -74 +im[5324] = 0.2646 +ij[5324] = 2 +id[5325] = "2844-09-29T13:36:02" +ik[5325] = -1 +il[5325] = 26 +im[5325] = 0.1867 +ij[5325] = 2 +id[5326] = "2844-10-02T03:49:02" +ik[5326] = 0 +il[5326] = 7 +im[5326] = 0.0615 +ij[5326] = 1 +id[5327] = "2845-01-16T06:56:03" +ik[5327] = 0 +il[5327] = -178 +im[5327] = 0.0685 +ij[5327] = 1 +id[5328] = "2845-01-17T02:34:03" +ik[5328] = 1 +il[5328] = 176 +im[5328] = 0.1071 +ij[5328] = 2 +id[5329] = "2845-05-10T04:32:01" +ik[5329] = 0 +il[5329] = -43 +im[5329] = 0.1596 +ij[5329] = 1 +id[5330] = "2845-05-12T21:46:01" +ik[5330] = 1 +il[5330] = -62 +im[5330] = 0.0221 +ij[5330] = 2 +id[5331] = "2845-09-12T03:46:02" +ik[5331] = -1 +il[5331] = 36 +im[5331] = 0.1959 +ij[5331] = 2 +id[5332] = "2845-09-15T05:44:02" +ik[5332] = 0 +il[5332] = 14 +im[5332] = 0.2427 +ij[5332] = 1 +id[5333] = "2845-12-31T13:25:03" +ik[5333] = 0 +il[5333] = -179 +im[5333] = 0.1315 +ij[5333] = 1 +id[5334] = "2845-12-31T20:48:03" +ik[5334] = 1 +il[5334] = -180 +im[5334] = 0.1184 +ij[5334] = 2 +id[5335] = "2846-04-21T10:32:01" +ik[5335] = 0 +il[5335] = -27 +im[5335] = 0.2085 +ij[5335] = 1 +id[5336] = "2846-04-24T15:46:01" +ik[5336] = 1 +il[5336] = -49 +im[5336] = 0.2653 +ij[5336] = 2 +id[5337] = "2846-08-25T07:22:02" +ik[5337] = -1 +il[5337] = 47 +im[5337] = 0.1621 +ij[5337] = 2 +id[5338] = "2846-08-28T16:04:02" +ik[5338] = 0 +il[5338] = 24 +im[5338] = 0.0353 +ij[5338] = 1 +id[5339] = "2846-12-15T17:26:03" +ik[5339] = -1 +il[5339] = -176 +im[5339] = 0.2028 +ij[5339] = 2 +id[5340] = "2846-12-15T21:35:03" +ik[5340] = 0 +il[5340] = -179 +im[5340] = 0.2049 +ij[5340] = 1 +id[5341] = "2847-04-03T11:01:01" +ik[5341] = 0 +il[5341] = -15 +im[5341] = 0.1628 +ij[5341] = 1 +id[5342] = "2847-04-06T15:31:01" +ik[5342] = 1 +il[5342] = -38 +im[5342] = 0.0244 +ij[5342] = 2 +id[5343] = "2847-08-07T02:05:02" +ik[5343] = -1 +il[5343] = 60 +im[5343] = 0.1956 +ij[5343] = 2 +id[5344] = "2847-08-10T06:42:02" +ik[5344] = 0 +il[5344] = 38 +im[5344] = 0.2598 +ij[5344] = 1 +id[5345] = "2847-11-29T13:50:03" +ik[5345] = -1 +il[5345] = -172 +im[5345] = 0.0206 +ij[5345] = 2 +id[5346] = "2847-11-30T05:30:03" +ik[5346] = 0 +il[5346] = 180 +im[5346] = 0.0525 +ij[5346] = 1 +id[5347] = "2848-03-16T03:49:01" +ik[5347] = 0 +il[5347] = -7 +im[5347] = 0.2032 +ij[5347] = 1 +id[5348] = "2848-03-18T23:12:01" +ik[5348] = 1 +il[5348] = -27 +im[5348] = 0.2448 +ij[5348] = 2 +id[5349] = "2848-07-18T15:17:02" +ik[5349] = -1 +il[5349] = 73 +im[5349] = 0.1794 +ij[5349] = 2 +id[5350] = "2848-07-20T23:44:02" +ik[5350] = 0 +il[5350] = 57 +im[5350] = 0.0481 +ij[5350] = 1 +id[5351] = "2848-11-12T07:36:03" +ik[5351] = -1 +il[5351] = -168 +im[5351] = 0.1856 +ij[5351] = 2 +id[5352] = "2848-11-13T11:30:03" +ik[5352] = 0 +il[5352] = -179 +im[5352] = 0.1447 +ij[5352] = 1 +id[5353] = "2849-02-27T09:49:01" +ik[5353] = 0 +il[5353] = -2 +im[5353] = 0.0455 +ij[5353] = 1 +id[5354] = "2849-03-01T16:14:01" +ik[5354] = 1 +il[5354] = -19 +im[5354] = 0.0841 +ij[5354] = 2 +id[5355] = "2849-06-30T00:13:02" +ik[5355] = 0 +il[5355] = 87 +im[5355] = 0.1479 +ij[5355] = 1 +id[5356] = "2849-06-30T02:34:02" +ik[5356] = 1 +il[5356] = 86 +im[5356] = 0.1528 +ij[5356] = 2 +id[5357] = "2849-10-26T20:19:03" +ik[5357] = -1 +il[5357] = -164 +im[5357] = 0.1548 +ij[5357] = 2 +id[5358] = "2849-10-28T12:56:03" +ik[5358] = 0 +il[5358] = -178 +im[5358] = 0.2029 +ij[5358] = 1 +id[5359] = "2850-02-11T02:08:01" +ik[5359] = 0 +il[5359] = 1 +im[5359] = 0.2195 +ij[5359] = 1 +id[5360] = "2850-02-12T18:38:01" +ik[5360] = 1 +il[5360] = -12 +im[5360] = 0.1976 +ij[5360] = 2 +id[5361] = "2850-06-10T19:54:02" +ik[5361] = 0 +il[5361] = 104 +im[5361] = 0.2312 +ij[5361] = 1 +id[5362] = "2850-06-11T14:19:02" +ik[5362] = 1 +il[5362] = 99 +im[5362] = 0.2048 +ij[5362] = 2 +id[5363] = "2850-10-10T01:36:03" +ik[5363] = -1 +il[5363] = -159 +im[5363] = 0.122 +ij[5363] = 2 +id[5364] = "2850-10-12T08:08:03" +ik[5364] = 0 +il[5364] = -175 +im[5364] = 0.0029 +ij[5364] = 1 +id[5365] = "2851-01-26T01:54:01" +ik[5365] = 0 +il[5365] = 1 +im[5365] = 0.113 +ij[5365] = 1 +id[5366] = "2851-01-27T04:58:01" +ik[5366] = 1 +il[5366] = -7 +im[5366] = 0.1615 +ij[5366] = 2 +id[5367] = "2851-05-21T23:59:02" +ik[5367] = 0 +il[5367] = 126 +im[5367] = 0.0165 +ij[5367] = 1 +id[5368] = "2851-05-24T03:46:02" +ik[5368] = 1 +il[5368] = 111 +im[5368] = 0.1187 +ij[5368] = 2 +id[5369] = "2851-09-22T21:46:03" +ik[5369] = -1 +il[5369] = -150 +im[5369] = 0.2267 +ij[5369] = 2 +id[5370] = "2851-09-25T17:16:03" +ik[5370] = 0 +il[5370] = -170 +im[5370] = 0.2107 +ij[5370] = 1 +id[5371] = "2852-01-10T06:28:01" +ik[5371] = 0 +il[5371] = 2 +im[5371] = 0.1025 +ij[5371] = 1 +id[5372] = "2852-01-10T21:02:01" +ik[5372] = 1 +il[5372] = -3 +im[5372] = 0.072 +ij[5372] = 2 +id[5373] = "2852-05-01T19:25:02" +ik[5373] = 0 +il[5373] = 144 +im[5373] = 0.258 +ij[5373] = 1 +id[5374] = "2852-05-04T19:36:02" +ik[5374] = 1 +il[5374] = 124 +im[5374] = 0.2245 +ij[5374] = 2 +id[5375] = "2852-09-04T07:22:03" +ik[5375] = -1 +il[5375] = -140 +im[5375] = 0.0795 +ij[5375] = 2 +id[5376] = "2852-09-07T13:11:03" +ik[5376] = 0 +il[5376] = -162 +im[5376] = 0.1124 +ij[5376] = 1 +id[5377] = "2852-12-24T13:54:01" +ik[5377] = 0 +il[5377] = 1 +im[5377] = 0.21 +ij[5377] = 1 +id[5378] = "2852-12-24T16:29:01" +ik[5378] = 1 +il[5378] = 1 +im[5378] = 0.2107 +ij[5378] = 2 +id[5379] = "2853-04-13T09:20:02" +ik[5379] = 0 +il[5379] = 158 +im[5379] = 0.0919 +ij[5379] = 1 +id[5380] = "2853-04-16T15:46:02" +ik[5380] = 1 +il[5380] = 136 +im[5380] = 0.1124 +ij[5380] = 2 +id[5381] = "2853-08-17T06:53:03" +ik[5381] = -1 +il[5381] = -127 +im[5381] = 0.2525 +ij[5381] = 2 +id[5382] = "2853-08-20T15:35:03" +ik[5382] = 0 +il[5382] = -151 +im[5382] = 0.2212 +ij[5382] = 1 +id[5383] = "2853-12-08T13:22:01" +ik[5383] = -1 +il[5383] = 5 +im[5383] = 0.0758 +ij[5383] = 2 +id[5384] = "2853-12-08T22:18:01" +ik[5384] = 0 +il[5384] = 1 +im[5384] = 0.0935 +ij[5384] = 1 +id[5385] = "2854-03-26T17:01:02" +ik[5385] = 0 +il[5385] = 169 +im[5385] = 0.2455 +ij[5385] = 1 +id[5386] = "2854-03-29T18:24:02" +ik[5386] = 1 +il[5386] = 147 +im[5386] = 0.2227 +ij[5386] = 2 +id[5387] = "2854-07-29T22:43:03" +ik[5387] = -1 +il[5387] = -114 +im[5387] = 0.0829 +ij[5387] = 2 +id[5388] = "2854-08-01T20:52:03" +ik[5388] = 0 +il[5388] = -134 +im[5388] = 0.1047 +ij[5388] = 1 +id[5389] = "2854-11-22T08:48:01" +ik[5389] = -1 +il[5389] = 9 +im[5389] = 0.1485 +ij[5389] = 2 +id[5390] = "2854-11-23T05:44:01" +ik[5390] = 0 +il[5390] = 0 +im[5390] = 0.1111 +ij[5390] = 1 +id[5391] = "2855-03-09T16:04:02" +ik[5391] = 0 +il[5391] = 175 +im[5391] = 0.0223 +ij[5391] = 1 +id[5392] = "2855-03-12T06:10:02" +ik[5392] = 1 +il[5392] = 157 +im[5392] = 0.1527 +ij[5392] = 2 +id[5393] = "2855-07-11T10:43:03" +ik[5393] = -1 +il[5393] = -101 +im[5393] = 0.2465 +ij[5393] = 2 +id[5394] = "2855-07-13T05:44:03" +ik[5394] = 0 +il[5394] = -113 +im[5394] = 0.2716 +ij[5394] = 1 +id[5395] = "2855-11-06T00:38:01" +ik[5395] = -1 +il[5395] = 13 +im[5395] = 0.1818 +ij[5395] = 2 +id[5396] = "2855-11-07T10:04:01" +ik[5396] = 0 +il[5396] = 1 +im[5396] = 0.2089 +ij[5396] = 1 +id[5397] = "2856-02-21T02:52:02" +ik[5397] = 0 +il[5397] = 179 +im[5397] = 0.2251 +ij[5397] = 1 +id[5398] = "2856-02-23T03:17:02" +ik[5398] = 1 +il[5398] = 164 +im[5398] = 0.174 +ij[5398] = 2 +id[5399] = "2856-06-21T22:00:03" +ik[5399] = -1 +il[5399] = -88 +im[5399] = 0.1104 +ij[5399] = 2 +id[5400] = "2856-06-22T02:37:03" +ik[5400] = 0 +il[5400] = -90 +im[5400] = 0.0988 +ij[5400] = 1 +id[5401] = "2856-10-19T10:43:01" +ik[5401] = -1 +il[5401] = 17 +im[5401] = 0.0549 +ij[5401] = 2 +id[5402] = "2856-10-21T09:06:01" +ik[5402] = 0 +il[5402] = 3 +im[5402] = 0.0627 +ij[5402] = 1 +id[5403] = "2857-02-03T22:32:02" +ik[5403] = 0 +il[5403] = -179 +im[5403] = 0.1586 +ij[5403] = 1 +id[5404] = "2857-02-05T09:17:02" +ik[5404] = 1 +il[5404] = 171 +im[5404] = 0.2074 +ij[5404] = 2 +id[5405] = "2857-06-02T00:28:03" +ik[5405] = 0 +il[5405] = -66 +im[5405] = 0.1509 +ij[5405] = 1 +id[5406] = "2857-06-03T10:14:03" +ik[5406] = 1 +il[5406] = -76 +im[5406] = 0.2138 +ij[5406] = 2 +id[5407] = "2857-10-02T12:24:01" +ik[5407] = -1 +il[5407] = 25 +im[5407] = 0.2223 +ij[5407] = 2 +id[5408] = "2857-10-05T00:28:01" +ik[5408] = 0 +il[5408] = 7 +im[5408] = 0.1704 +ij[5408] = 1 +id[5409] = "2858-01-19T00:42:02" +ik[5409] = 0 +il[5409] = -178 +im[5409] = 0.0835 +ij[5409] = 1 +id[5410] = "2858-01-19T22:14:02" +ik[5410] = 1 +il[5410] = 175 +im[5410] = 0.0369 +ij[5410] = 2 +id[5411] = "2858-05-13T10:32:03" +ik[5411] = 0 +il[5411] = -46 +im[5411] = 0.2358 +ij[5411] = 1 +id[5412] = "2858-05-16T00:38:03" +ik[5412] = 1 +il[5412] = -63 +im[5412] = 0.1339 +ij[5412] = 2 +id[5413] = "2858-09-15T04:00:01" +ik[5413] = -1 +il[5413] = 34 +im[5413] = 0.0388 +ij[5413] = 2 +id[5414] = "2858-09-18T04:32:01" +ik[5414] = 0 +il[5414] = 13 +im[5414] = 0.1648 +ij[5414] = 1 +id[5415] = "2859-01-03T06:42:02" +ik[5415] = 0 +il[5415] = -179 +im[5415] = 0.2207 +ij[5415] = 1 +id[5416] = "2859-01-03T16:00:02" +ik[5416] = 1 +il[5416] = 179 +im[5416] = 0.2196 +ij[5416] = 2 +id[5417] = "2859-04-24T13:54:03" +ik[5417] = 0 +il[5417] = -29 +im[5417] = 0.0257 +ij[5417] = 1 +id[5418] = "2859-04-27T18:10:03" +ik[5418] = 1 +il[5418] = -51 +im[5418] = 0.1901 +ij[5418] = 2 +id[5419] = "2859-08-28T09:17:01" +ik[5419] = -1 +il[5419] = 45 +im[5419] = 0.2417 +ij[5419] = 2 +id[5420] = "2859-08-31T17:30:01" +ik[5420] = 0 +il[5420] = 22 +im[5420] = 0.1358 +ij[5420] = 1 +id[5421] = "2859-12-18T12:24:02" +ik[5421] = -1 +il[5421] = -177 +im[5421] = 0.13 +ij[5421] = 2 +id[5422] = "2859-12-18T14:52:02" +ik[5422] = 0 +il[5422] = -179 +im[5422] = 0.1345 +ij[5422] = 1 +id[5423] = "2860-04-05T11:30:03" +ik[5423] = 0 +il[5423] = -17 +im[5423] = 0.2462 +ij[5423] = 1 +id[5424] = "2860-04-08T16:43:03" +ik[5424] = 1 +il[5424] = -39 +im[5424] = 0.1532 +ij[5424] = 2 +id[5425] = "2860-08-09T05:12:01" +ik[5425] = -1 +il[5425] = 58 +im[5425] = 0.0467 +ij[5425] = 2 +id[5426] = "2860-08-12T11:16:01" +ik[5426] = 0 +il[5426] = 36 +im[5426] = 0.1978 +ij[5426] = 1 +id[5427] = "2860-12-01T09:02:02" +ik[5427] = -1 +il[5427] = -173 +im[5427] = 0.1193 +ij[5427] = 2 +id[5428] = "2860-12-01T23:01:02" +ik[5428] = 0 +il[5428] = 180 +im[5428] = 0.0906 +ij[5428] = 1 +id[5429] = "2861-03-19T01:54:03" +ik[5429] = 0 +il[5429] = -8 +im[5429] = 0.0613 +ij[5429] = 1 +id[5430] = "2861-03-21T23:12:03" +ik[5430] = 1 +il[5430] = -29 +im[5430] = 0.1984 +ij[5430] = 2 +id[5431] = "2861-07-21T18:53:01" +ik[5431] = -1 +il[5431] = 71 +im[5431] = 0.2722 +ij[5431] = 2 +id[5432] = "2861-07-24T07:25:01" +ik[5432] = 0 +il[5432] = 54 +im[5432] = 0.2218 +ij[5432] = 1 +id[5433] = "2861-11-15T03:17:02" +ik[5433] = -1 +il[5433] = -169 +im[5433] = 0.2076 +ij[5433] = 2 +id[5434] = "2861-11-16T05:16:02" +ik[5434] = 0 +il[5434] = -179 +im[5434] = 0.2186 +ij[5434] = 1 +id[5435] = "2862-03-02T06:28:03" +ik[5435] = 0 +il[5435] = -3 +im[5435] = 0.2126 +ij[5435] = 1 +id[5436] = "2862-03-04T14:48:03" +ik[5436] = 1 +il[5436] = -20 +im[5436] = 0.1241 +ij[5436] = 2 +id[5437] = "2862-07-03T06:10:01" +ik[5437] = -1 +il[5437] = 84 +im[5437] = 0.0379 +ij[5437] = 2 +id[5438] = "2862-07-04T09:35:01" +ik[5438] = 0 +il[5438] = 77 +im[5438] = 0.0865 +ij[5438] = 1 +id[5439] = "2862-10-29T16:57:02" +ik[5439] = -1 +il[5439] = -165 +im[5439] = 0.0293 +ij[5439] = 2 +id[5440] = "2862-10-31T07:40:02" +ik[5440] = 0 +il[5440] = -178 +im[5440] = 0.111 +ij[5440] = 1 +id[5441] = "2863-02-13T21:20:03" +ik[5441] = 0 +il[5441] = 0 +im[5441] = 0.1889 +ij[5441] = 1 +id[5442] = "2863-02-15T15:45:03" +ik[5442] = 1 +il[5442] = -13 +im[5442] = 0.2286 +ij[5442] = 2 +id[5443] = "2863-06-14T05:16:01" +ik[5443] = 0 +il[5443] = 101 +im[5443] = 0.2664 +ij[5443] = 1 +id[5444] = "2863-06-14T17:41:01" +ik[5444] = 1 +il[5444] = 97 +im[5444] = 0.2732 +ij[5444] = 2 +id[5445] = "2863-10-12T23:41:02" +ik[5445] = -1 +il[5445] = -160 +im[5445] = 0.2058 +ij[5445] = 2 +id[5446] = "2863-10-15T03:49:02" +ik[5446] = 0 +il[5446] = -176 +im[5446] = 0.1335 +ij[5446] = 1 +id[5447] = "2864-01-28T20:08:03" +ik[5447] = 0 +il[5447] = 2 +im[5447] = 0.0687 +ij[5447] = 1 +id[5448] = "2864-01-30T01:07:03" +ik[5448] = 1 +il[5448] = -7 +im[5448] = 0.0202 +ij[5448] = 2 +id[5449] = "2864-05-24T07:25:01" +ik[5449] = 0 +il[5449] = 123 +im[5449] = 0.1411 +ij[5449] = 1 +id[5450] = "2864-05-26T06:53:01" +ik[5450] = 1 +il[5450] = 109 +im[5450] = 0.0342 +ij[5450] = 2 +id[5451] = "2864-09-24T21:17:02" +ik[5451] = -1 +il[5451] = -152 +im[5451] = 0.0994 +ij[5451] = 2 +id[5452] = "2864-09-27T14:52:02" +ik[5452] = 0 +il[5452] = -171 +im[5452] = 0.2036 +ij[5452] = 1 +id[5453] = "2865-01-11T00:13:03" +ik[5453] = 0 +il[5453] = 9 +im[5453] = 0.2267 +ij[5453] = 1 +id[5454] = "2865-01-12T16:29:03" +ik[5454] = 1 +il[5454] = -3 +im[5454] = 0.2165 +ij[5454] = 2 +id[5455] = "2865-05-04T00:13:01" +ik[5455] = 0 +il[5455] = 149 +im[5455] = 0.09 +ij[5455] = 1 +id[5456] = "2865-05-07T22:14:01" +ik[5456] = 1 +il[5456] = 122 +im[5456] = 0.247 +ij[5456] = 2 +id[5457] = "2865-09-07T08:19:02" +ik[5457] = -1 +il[5457] = -141 +im[5457] = 0.1863 +ij[5457] = 2 +id[5458] = "2865-09-10T12:56:02" +ik[5458] = 0 +il[5458] = -164 +im[5458] = 0.0324 +ij[5458] = 1 +id[5459] = "2865-12-27T07:25:03" +ik[5459] = 0 +il[5459] = 1 +im[5459] = 0.1595 +ij[5459] = 1 +id[5460] = "2865-12-27T11:41:03" +ik[5460] = 1 +il[5460] = 1 +im[5460] = 0.1664 +ij[5460] = 2 +id[5461] = "2866-04-16T11:30:01" +ik[5461] = 0 +il[5461] = 157 +im[5461] = 0.1989 +ij[5461] = 1 +id[5462] = "2866-04-19T17:41:01" +ik[5462] = 1 +il[5462] = 134 +im[5462] = 0.044 +ij[5462] = 2 +id[5463] = "2866-08-20T09:17:02" +ik[5463] = -1 +il[5463] = -129 +im[5463] = 0.1185 +ij[5463] = 2 +id[5464] = "2866-08-23T18:13:02" +ik[5464] = 0 +il[5464] = -153 +im[5464] = 0.2297 +ij[5464] = 1 +id[5465] = "2866-12-11T08:19:03" +ik[5465] = -1 +il[5465] = 5 +im[5465] = 0.0946 +ij[5465] = 2 +id[5466] = "2866-12-11T15:35:03" +ik[5466] = 0 +il[5466] = 1 +im[5466] = 0.0787 +ij[5466] = 1 +id[5467] = "2867-03-29T16:32:01" +ik[5467] = 0 +il[5467] = 167 +im[5467] = 0.1221 +ij[5467] = 1 +id[5468] = "2867-04-01T19:07:01" +ik[5468] = 1 +il[5468] = 145 +im[5468] = 0.229 +ij[5468] = 2 +id[5469] = "2867-08-02T02:05:02" +ik[5469] = -1 +il[5469] = -116 +im[5469] = 0.2227 +ij[5469] = 2 +id[5470] = "2867-08-05T02:52:02" +ik[5470] = 0 +il[5470] = -137 +im[5470] = 0.084 +ij[5470] = 1 +id[5471] = "2867-11-25T04:14:03" +ik[5471] = -1 +il[5471] = 9 +im[5471] = 0.2262 +ij[5471] = 2 +id[5472] = "2867-11-25T23:16:03" +ik[5472] = 0 +il[5472] = 0 +im[5472] = 0.225 +ij[5472] = 1 +id[5473] = "2868-03-11T13:25:01" +ik[5473] = 0 +il[5473] = 175 +im[5473] = 0.169 +ij[5473] = 1 +id[5474] = "2868-03-14T05:26:01" +ik[5474] = 1 +il[5474] = 155 +im[5474] = 0.0385 +ij[5474] = 2 +id[5475] = "2868-07-13T14:19:02" +ik[5475] = -1 +il[5475] = -103 +im[5475] = 0.1118 +ij[5475] = 2 +id[5476] = "2868-07-15T14:23:02" +ik[5476] = 0 +il[5476] = -117 +im[5476] = 0.2109 +ij[5476] = 1 +id[5477] = "2868-11-07T20:48:03" +ik[5477] = -1 +il[5477] = 13 +im[5477] = 0.0881 +ij[5477] = 2 +id[5478] = "2868-11-09T04:18:03" +ik[5478] = 0 +il[5478] = 1 +im[5478] = 0.1502 +ij[5478] = 1 +id[5479] = "2869-02-22T22:47:01" +ik[5479] = 0 +il[5479] = 179 +im[5479] = 0.2061 +ij[5479] = 1 +id[5480] = "2869-02-25T01:07:01" +ik[5480] = 1 +il[5480] = 163 +im[5480] = 0.2246 +ij[5480] = 2 +id[5481] = "2869-06-25T01:36:02" +ik[5481] = -1 +il[5481] = -90 +im[5481] = 0.2656 +ij[5481] = 2 +id[5482] = "2869-06-25T11:59:02" +ik[5482] = 0 +il[5482] = -93 +im[5482] = 0.2554 +ij[5482] = 1 +id[5483] = "2869-10-22T07:50:03" +ik[5483] = -1 +il[5483] = 17 +im[5483] = 0.1859 +ij[5483] = 2 +id[5484] = "2869-10-24T04:18:03" +ik[5484] = 0 +il[5484] = 3 +im[5484] = 0.1075 +ij[5484] = 1 +id[5485] = "2870-02-06T17:16:01" +ik[5485] = 0 +il[5485] = -179 +im[5485] = 0.0372 +ij[5485] = 1 +id[5486] = "2870-02-08T05:55:01" +ik[5486] = 1 +il[5486] = 170 +im[5486] = 0.0509 +ij[5486] = 2 +id[5487] = "2870-06-05T09:06:02" +ik[5487] = 0 +il[5487] = -70 +im[5487] = 0.02 +ij[5487] = 1 +id[5488] = "2870-06-06T13:36:02" +ik[5488] = 1 +il[5488] = -78 +im[5488] = 0.0966 +ij[5488] = 2 +id[5489] = "2870-10-05T10:57:03" +ik[5489] = -1 +il[5489] = 23 +im[5489] = 0.1739 +ij[5489] = 2 +id[5490] = "2870-10-07T20:52:03" +ik[5490] = 0 +il[5490] = 6 +im[5490] = 0.2296 +ij[5490] = 1 +id[5491] = "2871-01-21T18:42:01" +ik[5491] = 0 +il[5491] = -178 +im[5491] = 0.2124 +ij[5491] = 1 +id[5492] = "2871-01-22T17:55:01" +ik[5492] = 1 +il[5492] = 175 +im[5492] = 0.1877 +ij[5492] = 2 +id[5493] = "2871-05-16T16:47:02" +ik[5493] = 0 +il[5493] = -49 +im[5493] = 0.2493 +ij[5493] = 1 +id[5494] = "2871-05-19T03:45:02" +ik[5494] = 1 +il[5494] = -65 +im[5494] = 0.2657 +ij[5494] = 2 +id[5495] = "2871-09-18T04:14:03" +ik[5495] = -1 +il[5495] = 33 +im[5495] = 0.113 +ij[5495] = 2 +id[5496] = "2871-09-21T02:52:03" +ik[5496] = 0 +il[5496] = 12 +im[5496] = 0.054 +ij[5496] = 1 +id[5497] = "2872-01-05T00:13:01" +ik[5497] = 0 +il[5497] = -171 +im[5497] = 0.1325 +ij[5497] = 1 +id[5498] = "2872-01-06T11:26:01" +ik[5498] = 1 +il[5498] = 179 +im[5498] = 0.1884 +ij[5498] = 2 +id[5499] = "2872-04-26T17:30:02" +ik[5499] = 0 +il[5499] = -31 +im[5499] = 0.1131 +ij[5499] = 1 +id[5500] = "2872-04-29T20:33:02" +ik[5500] = 1 +il[5500] = -53 +im[5500] = 0.0801 +ij[5500] = 2 +id[5501] = "2872-08-30T10:57:03" +ik[5501] = -1 +il[5501] = 44 +im[5501] = 0.1954 +ij[5501] = 2 +id[5502] = "2872-09-02T18:28:03" +ik[5502] = 0 +il[5502] = 20 +im[5502] = 0.2277 +ij[5502] = 1 +id[5503] = "2872-12-20T07:36:01" +ik[5503] = -1 +il[5503] = -177 +im[5503] = 0.0642 +ij[5503] = 2 +id[5504] = "2872-12-20T08:08:01" +ik[5504] = 0 +il[5504] = -179 +im[5504] = 0.063 +ij[5504] = 1 +id[5505] = "2873-04-08T12:28:02" +ik[5505] = 0 +il[5505] = -18 +im[5505] = 0.1912 +ij[5505] = 1 +id[5506] = "2873-04-11T18:09:02" +ik[5506] = 1 +il[5506] = -41 +im[5506] = 0.2392 +ij[5506] = 2 +id[5507] = "2873-08-12T07:50:03" +ik[5507] = -1 +il[5507] = 56 +im[5507] = 0.1228 +ij[5507] = 2 +id[5508] = "2873-08-15T15:06:03" +ik[5508] = 0 +il[5508] = 33 +im[5508] = 0.0681 +ij[5508] = 1 +id[5509] = "2873-12-04T04:14:01" +ik[5509] = -1 +il[5509] = -173 +im[5509] = 0.2243 +ij[5509] = 2 +id[5510] = "2873-12-04T16:18:01" +ik[5510] = 0 +il[5510] = 180 +im[5510] = 0.2177 +ij[5510] = 1 +id[5511] = "2874-03-22T00:42:02" +ik[5511] = 0 +il[5511] = -9 +im[5511] = 0.0998 +ij[5511] = 1 +id[5512] = "2874-03-24T23:12:02" +ik[5512] = 1 +il[5512] = -30 +im[5512] = 0.0705 +ij[5512] = 2 +id[5513] = "2874-07-24T22:14:03" +ik[5513] = -1 +il[5513] = 69 +im[5513] = 0.1947 +ij[5513] = 2 +id[5514] = "2874-07-27T14:23:03" +ik[5514] = 0 +il[5514] = 51 +im[5514] = 0.2465 +ij[5514] = 1 +id[5515] = "2874-11-17T22:57:01" +ik[5515] = -1 +il[5515] = -169 +im[5515] = 0.1268 +ij[5515] = 2 +id[5516] = "2874-11-18T23:01:01" +ik[5516] = 0 +il[5516] = -180 +im[5516] = 0.1685 +ij[5516] = 1 +id[5517] = "2875-03-05T03:06:02" +ik[5517] = 0 +il[5517] = -3 +im[5517] = 0.2169 +ij[5517] = 1 +id[5518] = "2875-03-07T13:36:02" +ik[5518] = 1 +il[5518] = -21 +im[5518] = 0.2029 +ij[5518] = 2 +id[5519] = "2875-07-06T09:45:03" +ik[5519] = -1 +il[5519] = 83 +im[5519] = 0.1831 +ij[5519] = 2 +id[5520] = "2875-07-07T18:42:03" +ik[5520] = 0 +il[5520] = 73 +im[5520] = 0.1132 +ij[5520] = 1 +id[5521] = "2875-11-01T13:21:01" +ik[5521] = -1 +il[5521] = -165 +im[5521] = 0.1577 +ij[5521] = 2 +id[5522] = "2875-11-03T02:08:01" +ik[5522] = 0 +il[5522] = -178 +im[5522] = 0.0846 +ij[5522] = 1 +id[5523] = "2876-02-16T16:47:02" +ik[5523] = 0 +il[5523] = 0 +im[5523] = 0.0309 +ij[5523] = 1 +id[5524] = "2876-02-18T13:07:02" +ik[5524] = 1 +il[5524] = -14 +im[5524] = 0.1116 +ij[5524] = 2 +id[5525] = "2876-06-16T14:37:03" +ik[5525] = 0 +il[5525] = 97 +im[5525] = 0.1787 +ij[5525] = 1 +id[5526] = "2876-06-16T21:02:03" +ik[5526] = 1 +il[5526] = 95 +im[5526] = 0.1916 +ij[5526] = 2 +id[5527] = "2876-10-14T21:17:01" +ik[5527] = -1 +il[5527] = -161 +im[5527] = 0.2188 +ij[5527] = 2 +id[5528] = "2876-10-16T23:30:01" +ik[5528] = 0 +il[5528] = -176 +im[5528] = 0.2335 +ij[5528] = 1 +id[5529] = "2877-01-30T14:37:02" +ik[5529] = 0 +il[5529] = 2 +im[5529] = 0.1855 +ij[5529] = 1 +id[5530] = "2877-01-31T21:17:02" +ik[5530] = 1 +il[5530] = -8 +im[5530] = 0.1401 +ij[5530] = 2 +id[5531] = "2877-05-27T15:06:03" +ik[5531] = 0 +il[5531] = 120 +im[5531] = 0.2711 +ij[5531] = 1 +id[5532] = "2877-05-29T10:00:03" +ik[5532] = 1 +il[5532] = 108 +im[5532] = 0.2232 +ij[5532] = 2 +id[5533] = "2877-09-27T20:19:01" +ik[5533] = -1 +il[5533] = -153 +im[5533] = 0.0541 +ij[5533] = 2 +id[5534] = "2877-09-30T11:59:01" +ik[5534] = 0 +il[5534] = -172 +im[5534] = 0.1115 +ij[5534] = 1 +id[5535] = "2878-01-14T17:59:02" +ik[5535] = 0 +il[5535] = 2 +im[5535] = 0.18 +ij[5535] = 1 +id[5536] = "2878-01-15T11:55:02" +ik[5536] = 1 +il[5536] = -4 +im[5536] = 0.1987 +ij[5536] = 2 +id[5537] = "2878-05-08T05:30:03" +ik[5537] = 0 +il[5537] = 139 +im[5537] = 0.0133 +ij[5537] = 1 +id[5538] = "2878-05-11T01:07:03" +ik[5538] = 1 +il[5538] = 120 +im[5538] = 0.1796 +ij[5538] = 2 +id[5539] = "2878-09-10T09:02:01" +ik[5539] = -1 +il[5539] = -143 +im[5539] = 0.2368 +ij[5539] = 2 +id[5540] = "2878-09-13T12:27:01" +ik[5540] = 0 +il[5540] = -165 +im[5540] = 0.2024 +ij[5540] = 1 +id[5541] = "2878-12-30T00:42:02" +ik[5541] = 0 +il[5541] = 1 +im[5541] = 0.0398 +ij[5541] = 1 +id[5542] = "2878-12-30T06:53:02" +ik[5542] = 1 +il[5542] = 0 +im[5542] = 0.0298 +ij[5542] = 2 +id[5543] = "2879-04-19T13:54:03" +ik[5543] = 0 +il[5543] = 155 +im[5543] = 0.2476 +ij[5543] = 1 +id[5544] = "2879-04-22T19:36:03" +ik[5544] = 1 +il[5544] = 132 +im[5544] = 0.217 +ij[5544] = 2 +id[5545] = "2879-08-23T11:26:01" +ik[5545] = -1 +il[5545] = -131 +im[5545] = 0.0393 +ij[5545] = 2 +id[5546] = "2879-08-26T20:23:01" +ik[5546] = 0 +il[5546] = -155 +im[5546] = 0.1738 +ij[5546] = 1 +id[5547] = "2879-12-14T03:31:02" +ik[5547] = -1 +il[5547] = 4 +im[5547] = 0.2002 +ij[5547] = 2 +id[5548] = "2879-12-14T08:51:02" +ik[5548] = 0 +il[5548] = 1 +im[5548] = 0.1949 +ij[5548] = 1 +id[5549] = "2880-03-31T16:32:03" +ik[5549] = 0 +il[5549] = 166 +im[5549] = 0.0202 +ij[5549] = 1 +id[5550] = "2880-04-03T20:05:03" +ik[5550] = 1 +il[5550] = 144 +im[5550] = 0.1633 +ij[5550] = 2 +id[5551] = "2880-08-04T05:12:01" +ik[5551] = -1 +il[5551] = -118 +im[5551] = 0.2398 +ij[5551] = 2 +id[5552] = "2880-08-07T08:08:01" +ik[5552] = 0 +il[5552] = -140 +im[5552] = 0.2078 +ij[5552] = 1 +id[5553] = "2880-11-26T23:41:02" +ik[5553] = -1 +il[5553] = 8 +im[5553] = 0.1506 +ij[5553] = 2 +id[5554] = "2880-11-27T16:47:02" +ik[5554] = 0 +il[5554] = 0 +im[5554] = 0.1761 +ij[5554] = 1 +id[5555] = "2881-03-14T11:15:03" +ik[5555] = 0 +il[5555] = 174 +im[5555] = 0.2259 +ij[5555] = 1 +id[5556] = "2881-03-17T04:57:03" +ik[5556] = 1 +il[5556] = 154 +im[5556] = 0.1727 +ij[5556] = 2 +id[5557] = "2881-07-16T17:55:01" +ik[5557] = -1 +il[5557] = -105 +im[5557] = 0.0724 +ij[5557] = 2 +id[5558] = "2881-07-18T22:32:01" +ik[5558] = 0 +il[5558] = -120 +im[5558] = 0.0821 +ij[5558] = 1 +id[5559] = "2881-11-10T16:43:02" +ik[5559] = -1 +il[5559] = 12 +im[5559] = 0.1142 +ij[5559] = 2 +id[5560] = "2881-11-11T22:18:02" +ik[5560] = 0 +il[5560] = 1 +im[5560] = 0.0514 +ij[5560] = 1 +id[5561] = "2882-02-25T18:42:03" +ik[5561] = 0 +il[5561] = 178 +im[5561] = 0.071 +ij[5561] = 1 +id[5562] = "2882-02-27T23:26:03" +ik[5562] = 1 +il[5562] = 162 +im[5562] = 0.1709 +ij[5562] = 2 +id[5563] = "2882-06-28T05:12:01" +ik[5563] = -1 +il[5563] = -92 +im[5563] = 0.2427 +ij[5563] = 2 +id[5564] = "2882-06-28T21:35:01" +ik[5564] = 0 +il[5564] = -97 +im[5564] = 0.2536 +ij[5564] = 1 +id[5565] = "2882-10-25T04:43:02" +ik[5565] = -1 +il[5565] = 16 +im[5565] = 0.2286 +ij[5565] = 2 +id[5566] = "2882-10-26T23:15:02" +ik[5566] = 0 +il[5566] = 2 +im[5566] = 0.2145 +ij[5566] = 1 +id[5567] = "2883-02-09T12:13:03" +ik[5567] = 0 +il[5567] = -179 +im[5567] = 0.1548 +ij[5567] = 1 +id[5568] = "2883-02-11T02:48:03" +ik[5568] = 1 +il[5568] = 169 +im[5568] = 0.083 +ij[5568] = 2 +id[5569] = "2883-06-08T17:59:01" +ik[5569] = 0 +il[5569] = -73 +im[5569] = 0.1718 +ij[5569] = 1 +id[5570] = "2883-06-09T16:57:01" +ik[5570] = 1 +il[5570] = -79 +im[5570] = 0.1229 +ij[5570] = 2 +id[5571] = "2883-10-08T09:02:02" +ik[5571] = -1 +il[5571] = 22 +im[5571] = 0.018 +ij[5571] = 2 +id[5572] = "2883-10-10T17:15:02" +ik[5572] = 0 +il[5572] = 5 +im[5572] = 0.1429 +ij[5572] = 1 +id[5573] = "2884-01-24T12:42:03" +ik[5573] = 0 +il[5573] = -178 +im[5573] = 0.1895 +ij[5573] = 1 +id[5574] = "2884-01-25T14:05:03" +ik[5574] = 1 +il[5574] = 174 +im[5574] = 0.209 +ij[5574] = 2 +id[5575] = "2884-05-18T23:30:01" +ik[5575] = 0 +il[5575] = -52 +im[5575] = 0.1481 +ij[5575] = 1 +id[5576] = "2884-05-21T06:38:01" +ik[5576] = 1 +il[5576] = -67 +im[5576] = 0.2435 +ij[5576] = 2 +id[5577] = "2884-09-20T04:00:02" +ik[5577] = -1 +il[5577] = 31 +im[5577] = 0.238 +ij[5577] = 2 +id[5578] = "2884-09-23T00:56:02" +ik[5578] = 0 +il[5578] = 11 +im[5578] = 0.1503 +ij[5578] = 1 +id[5579] = "2885-01-07T17:44:03" +ik[5579] = 0 +il[5579] = -178 +im[5579] = 0.0124 +ij[5579] = 1 +id[5580] = "2885-01-08T06:38:03" +ik[5580] = 1 +il[5580] = 178 +im[5580] = 0.0378 +ij[5580] = 2 +id[5581] = "2885-04-29T21:20:01" +ik[5581] = 0 +il[5581] = -34 +im[5581] = 0.2563 +ij[5581] = 1 +id[5582] = "2885-05-02T22:57:01" +ik[5582] = 1 +il[5582] = -55 +im[5582] = 0.1467 +ij[5582] = 2 +id[5583] = "2885-09-02T12:09:02" +ik[5583] = -1 +il[5583] = 42 +im[5583] = 0.0936 +ij[5583] = 2 +id[5584] = "2885-09-05T18:56:02" +ik[5584] = 0 +il[5584] = 19 +im[5584] = 0.2269 +ij[5584] = 1 +id[5585] = "2885-12-23T01:25:03" +ik[5585] = 0 +il[5585] = -179 +im[5585] = 0.171 +ij[5585] = 1 +id[5586] = "2885-12-23T02:33:03" +ik[5586] = 1 +il[5586] = -178 +im[5586] = 0.1694 +ij[5586] = 2 +id[5587] = "2886-04-11T13:39:01" +ik[5587] = 0 +il[5587] = -20 +im[5587] = 0.0858 +ij[5587] = 1 +id[5588] = "2886-04-14T19:50:01" +ik[5588] = 1 +il[5588] = -43 +im[5588] = 0.2333 +ij[5588] = 2 +id[5589] = "2886-08-15T10:29:02" +ik[5589] = -1 +il[5589] = 54 +im[5589] = 0.2445 +ij[5589] = 2 +id[5590] = "2886-08-18T18:42:02" +ik[5590] = 0 +il[5590] = 31 +im[5590] = 0.1223 +ij[5590] = 1 +id[5591] = "2886-12-06T23:12:03" +ik[5591] = -1 +il[5591] = -174 +im[5591] = 0.1675 +ij[5591] = 2 +id[5592] = "2886-12-07T09:49:03" +ik[5592] = 0 +il[5592] = -179 +im[5592] = 0.1809 +ij[5592] = 1 +id[5593] = "2887-03-24T23:30:01" +ik[5593] = 0 +il[5593] = -10 +im[5593] = 0.2277 +ij[5593] = 1 +id[5594] = "2887-03-27T23:41:01" +ik[5594] = 1 +il[5594] = -32 +im[5594] = 0.1179 +ij[5594] = 2 +id[5595] = "2887-07-28T01:36:02" +ik[5595] = -1 +il[5595] = 67 +im[5595] = 0.0756 +ij[5595] = 2 +id[5596] = "2887-07-30T21:20:02" +ik[5596] = 0 +il[5596] = 48 +im[5596] = 0.2127 +ij[5596] = 1 +id[5597] = "2887-11-20T18:24:03" +ik[5597] = -1 +il[5597] = -170 +im[5597] = 0.0554 +ij[5597] = 2 +id[5598] = "2887-11-21T16:47:03" +ik[5598] = 0 +il[5598] = 180 +im[5598] = 0.0067 +ij[5598] = 1 +id[5599] = "2888-03-06T23:59:01" +ik[5599] = 0 +il[5599] = -4 +im[5599] = 0.1394 +ij[5599] = 1 +id[5600] = "2888-03-09T12:24:01" +ik[5600] = 1 +il[5600] = -22 +im[5600] = 0.2272 +ij[5600] = 2 +id[5601] = "2888-07-08T13:21:02" +ik[5601] = -1 +il[5601] = 81 +im[5601] = 0.2544 +ij[5601] = 2 +id[5602] = "2888-07-10T03:49:02" +ik[5602] = 0 +il[5602] = 70 +im[5602] = 0.2225 +ij[5602] = 1 +id[5603] = "2888-11-03T09:45:03" +ik[5603] = -1 +il[5603] = -166 +im[5603] = 0.2142 +ij[5603] = 2 +id[5604] = "2888-11-04T20:37:03" +ik[5604] = 0 +il[5604] = -179 +im[5604] = 0.1843 +ij[5604] = 1 +id[5605] = "2889-02-18T12:13:01" +ik[5605] = 0 +il[5605] = 0 +im[5605] = 0.1264 +ij[5605] = 1 +id[5606] = "2889-02-20T10:43:01" +ik[5606] = 1 +il[5606] = -15 +im[5606] = 0.0222 +ij[5606] = 2 +id[5607] = "2889-06-19T23:59:02" +ik[5607] = 0 +il[5607] = 94 +im[5607] = 0.0174 +ij[5607] = 1 +id[5608] = "2889-06-20T00:38:02" +ik[5608] = 1 +il[5608] = 93 +im[5608] = 0.0189 +ij[5608] = 2 +id[5609] = "2889-10-17T18:38:03" +ik[5609] = -1 +il[5609] = -162 +im[5609] = 0.0736 +ij[5609] = 2 +id[5610] = "2889-10-19T18:56:03" +ik[5610] = 0 +il[5610] = -177 +im[5610] = 0.1649 +ij[5610] = 1 +id[5611] = "2890-02-02T08:51:01" +ik[5611] = 0 +il[5611] = 1 +im[5611] = 0.2088 +ij[5611] = 1 +id[5612] = "2890-02-03T17:55:01" +ik[5612] = 1 +il[5612] = -9 +im[5612] = 0.2212 +ij[5612] = 2 +id[5613] = "2890-05-30T23:01:02" +ik[5613] = 0 +il[5613] = 117 +im[5613] = 0.2402 +ij[5613] = 1 +id[5614] = "2890-06-01T13:07:02" +ik[5614] = 1 +il[5614] = 106 +im[5614] = 0.2582 +ij[5614] = 2 +id[5615] = "2890-09-30T19:07:03" +ik[5615] = -1 +il[5615] = -154 +im[5615] = 0.1959 +ij[5615] = 2 +id[5616] = "2890-10-03T09:06:03" +ik[5616] = 0 +il[5616] = -173 +im[5616] = 0.0845 +ij[5616] = 1 +id[5617] = "2891-01-17T11:44:01" +ik[5617] = 0 +il[5617] = 2 +im[5617] = 0.0571 +ij[5617] = 1 +id[5618] = "2891-01-18T07:36:01" +ik[5618] = 1 +il[5618] = -4 +im[5618] = 0.0989 +ij[5618] = 2 +id[5619] = "2891-05-11T11:01:02" +ik[5619] = 0 +il[5619] = 137 +im[5619] = 0.1801 +ij[5619] = 1 +id[5620] = "2891-05-14T03:45:02" +ik[5620] = 1 +il[5620] = 118 +im[5620] = 0.0369 +ij[5620] = 2 +id[5621] = "2891-09-13T09:31:03" +ik[5621] = -1 +il[5621] = -145 +im[5621] = 0.1642 +ij[5621] = 2 +id[5622] = "2891-09-16T11:30:03" +ik[5622] = 0 +il[5622] = -166 +im[5622] = 0.2315 +ij[5622] = 1 +id[5623] = "2892-01-01T18:13:01" +ik[5623] = 0 +il[5623] = 1 +im[5623] = 0.1533 +ij[5623] = 1 +id[5624] = "2892-01-02T01:50:01" +ik[5624] = 1 +il[5624] = 0 +im[5624] = 0.1407 +ij[5624] = 2 +id[5625] = "2892-04-21T16:47:02" +ik[5625] = 0 +il[5625] = 153 +im[5625] = 0.1774 +ij[5625] = 1 +id[5626] = "2892-04-24T21:45:02" +ik[5626] = 1 +il[5626] = 130 +im[5626] = 0.2548 +ij[5626] = 2 +id[5627] = "2892-08-25T13:21:03" +ik[5627] = -1 +il[5627] = -133 +im[5627] = 0.1966 +ij[5627] = 2 +id[5628] = "2892-08-28T22:03:03" +ik[5628] = 0 +il[5628] = -156 +im[5628] = 0.031 +ij[5628] = 1 +id[5629] = "2892-12-15T22:29:01" +ik[5629] = -1 +il[5629] = 4 +im[5629] = 0.1918 +ij[5629] = 2 +id[5630] = "2892-12-16T02:23:01" +ik[5630] = 0 +il[5630] = 1 +im[5630] = 0.1955 +ij[5630] = 1 +id[5631] = "2893-04-03T16:47:02" +ik[5631] = 0 +il[5631] = 165 +im[5631] = 0.2009 +ij[5631] = 1 +id[5632] = "2893-04-06T21:17:02" +ik[5632] = 1 +il[5632] = 142 +im[5632] = 0.0458 +ij[5632] = 2 +id[5633] = "2893-08-07T08:19:03" +ik[5633] = -1 +il[5633] = -120 +im[5633] = 0.1863 +ij[5633] = 2 +id[5634] = "2893-08-10T13:11:03" +ik[5634] = 0 +il[5634] = -142 +im[5634] = 0.2597 +ij[5634] = 1 +id[5635] = "2893-11-29T18:53:01" +ik[5635] = -1 +il[5635] = 8 +im[5635] = 0.0147 +ij[5635] = 2 +id[5636] = "2893-11-30T10:18:01" +ik[5636] = 0 +il[5636] = 0 +im[5636] = 0.0426 +ij[5636] = 1 +id[5637] = "2894-03-17T09:06:02" +ik[5637] = 0 +il[5637] = 173 +im[5637] = 0.1975 +ij[5637] = 1 +id[5638] = "2894-03-20T04:43:02" +ik[5638] = 1 +il[5638] = 153 +im[5638] = 0.2479 +ij[5638] = 2 +id[5639] = "2894-07-19T21:31:03" +ik[5639] = -1 +il[5639] = -107 +im[5639] = 0.2207 +ij[5639] = 2 +id[5640] = "2894-07-22T06:27:03" +ik[5640] = 0 +il[5640] = -123 +im[5640] = 0.1054 +ij[5640] = 1 +id[5641] = "2894-11-13T12:38:01" +ik[5641] = -1 +il[5641] = 12 +im[5641] = 0.1958 +ij[5641] = 2 +id[5642] = "2894-11-14T16:18:01" +ik[5642] = 0 +il[5642] = 1 +im[5642] = 0.1624 +ij[5642] = 1 +id[5643] = "2895-02-28T15:06:02" +ik[5643] = 0 +il[5643] = 178 +im[5643] = 0.0999 +ij[5643] = 1 +id[5644] = "2895-03-02T21:45:02" +ik[5644] = 1 +il[5644] = 161 +im[5644] = 0.0485 +ij[5644] = 2 +id[5645] = "2895-07-01T08:48:03" +ik[5645] = -1 +il[5645] = -94 +im[5645] = 0.1524 +ij[5645] = 2 +id[5646] = "2895-07-02T07:11:03" +ik[5646] = 0 +il[5646] = -100 +im[5646] = 0.1968 +ij[5646] = 1 +id[5647] = "2895-10-28T01:36:01" +ik[5647] = -1 +il[5647] = 16 +im[5647] = 0.1231 +ij[5647] = 2 +id[5648] = "2895-10-29T17:59:01" +ik[5648] = 0 +il[5648] = 2 +im[5648] = 0.1845 +ij[5648] = 1 +id[5649] = "2896-02-12T07:11:02" +ik[5649] = 0 +il[5649] = -179 +im[5649] = 0.2301 +ij[5649] = 1 +id[5650] = "2896-02-13T23:55:02" +ik[5650] = 1 +il[5650] = 168 +im[5650] = 0.2221 +ij[5650] = 2 +id[5651] = "2896-06-11T02:51:03" +ik[5651] = 0 +il[5651] = -76 +im[5651] = 0.249 +ij[5651] = 1 +id[5652] = "2896-06-11T20:19:03" +ik[5652] = 1 +il[5652] = -81 +im[5652] = 0.2318 +ij[5652] = 2 +id[5653] = "2896-10-10T07:07:01" +ik[5653] = -1 +il[5653] = 21 +im[5653] = 0.1307 +ij[5653] = 2 +id[5654] = "2896-10-12T13:11:01" +ik[5654] = 0 +il[5654] = 5 +im[5654] = 0.0272 +ij[5654] = 1 +id[5655] = "2897-01-26T06:42:02" +ik[5655] = 0 +il[5655] = -178 +im[5655] = 0.1032 +ij[5655] = 1 +id[5656] = "2897-01-27T10:00:02" +ik[5656] = 1 +il[5656] = 173 +im[5656] = 0.1549 +ij[5656] = 2 +id[5657] = "2897-05-22T06:42:03" +ik[5657] = 0 +il[5657] = -55 +im[5657] = 0.0287 +ij[5657] = 1 +id[5658] = "2897-05-24T09:45:03" +ik[5658] = 1 +il[5658] = -69 +im[5658] = 0.1007 +ij[5658] = 2 +id[5659] = "2897-09-23T03:31:01" +ik[5659] = -1 +il[5659] = 30 +im[5659] = 0.1992 +ij[5659] = 2 +id[5660] = "2897-09-25T22:47:01" +ik[5660] = 0 +il[5660] = 10 +im[5660] = 0.2143 +ij[5660] = 1 +id[5661] = "2898-01-10T11:15:02" +ik[5661] = 0 +il[5661] = -178 +im[5661] = 0.1465 +ij[5661] = 1 +id[5662] = "2898-01-11T02:05:02" +ik[5662] = 1 +il[5662] = 177 +im[5662] = 0.1192 +ij[5662] = 2 +id[5663] = "2898-05-03T01:54:03" +ik[5663] = 0 +il[5663] = -36 +im[5663] = 0.2353 +ij[5663] = 1 +id[5664] = "2898-05-06T01:36:03" +ik[5664] = 1 +il[5664] = -57 +im[5664] = 0.2288 +ij[5664] = 2 +id[5665] = "2898-09-05T13:21:01" +ik[5665] = -1 +il[5665] = 40 +im[5665] = 0.1149 +ij[5665] = 2 +id[5666] = "2898-09-08T18:56:01" +ik[5666] = 0 +il[5666] = 17 +im[5666] = 0.0752 +ij[5666] = 1 +id[5667] = "2898-12-25T18:42:02" +ik[5667] = 0 +il[5667] = -179 +im[5667] = 0.2148 +ij[5667] = 1 +id[5668] = "2898-12-25T21:31:02" +ik[5668] = 1 +il[5668] = -179 +im[5668] = 0.2164 +ij[5668] = 2 +id[5669] = "2899-04-14T15:20:03" +ik[5669] = 0 +il[5669] = -22 +im[5669] = 0.1244 +ij[5669] = 1 +id[5670] = "2899-04-17T21:31:03" +ik[5670] = 1 +il[5670] = -44 +im[5670] = 0.065 +ij[5670] = 2 +id[5671] = "2899-08-18T13:07:01" +ik[5671] = -1 +il[5671] = 52 +im[5671] = 0.2344 +ij[5671] = 2 +id[5672] = "2899-08-21T21:49:01" +ik[5672] = 0 +il[5672] = 29 +im[5672] = 0.2214 +ij[5672] = 1 +id[5673] = "2899-12-09T18:24:02" +ik[5673] = -1 +il[5673] = -175 +im[5673] = 0.0659 +ij[5673] = 2 +id[5674] = "2899-12-10T03:06:02" +ik[5674] = 0 +il[5674] = -179 +im[5674] = 0.084 +ij[5674] = 1 +id[5675] = "2900-03-27T22:47:03" +ik[5675] = 0 +il[5675] = -11 +im[5675] = 0.231 +ij[5675] = 1 +id[5676] = "2900-03-30T00:09:03" +ik[5676] = 1 +il[5676] = -26 +im[5676] = 0.2399 +ij[5676] = 2 +id[5677] = "2900-07-31T04:57:01" +ik[5677] = -1 +il[5677] = 65 +im[5677] = 0.1417 +ij[5677] = 2 +id[5678] = "2900-08-03T03:35:01" +ik[5678] = 0 +il[5678] = 45 +im[5678] = 0.053 +ij[5678] = 1 +id[5679] = "2900-11-23T13:50:02" +ik[5679] = -1 +il[5679] = -171 +im[5679] = 0.1798 +ij[5679] = 2 +id[5680] = "2900-11-24T10:32:02" +ik[5680] = 0 +il[5680] = 180 +im[5680] = 0.1491 +ij[5680] = 1 +id[5681] = "2901-03-10T21:20:03" +ik[5681] = 0 +il[5681] = -5 +im[5681] = 0.056 +ij[5681] = 1 +id[5682] = "2901-03-13T11:41:03" +ik[5682] = 1 +il[5682] = -22 +im[5682] = 0.0997 +ij[5682] = 2 +id[5683] = "2901-07-12T16:57:01" +ik[5683] = -1 +il[5683] = 79 +im[5683] = 0.2412 +ij[5683] = 2 +id[5684] = "2901-07-14T12:42:01" +ik[5684] = 0 +il[5684] = 66 +im[5684] = 0.2736 +ij[5684] = 1 +id[5685] = "2901-11-07T05:55:02" +ik[5685] = -1 +il[5685] = -167 +im[5685] = 0.1735 +ij[5685] = 2 +id[5686] = "2901-11-08T14:51:02" +ik[5686] = 0 +il[5686] = -179 +im[5686] = 0.2093 +ij[5686] = 1 +id[5687] = "2902-02-22T07:54:03" +ik[5687] = 0 +il[5687] = -1 +im[5687] = 0.235 +ij[5687] = 1 +id[5688] = "2902-02-24T08:33:03" +ik[5688] = 1 +il[5688] = -16 +im[5688] = 0.1955 +ij[5688] = 2 +id[5689] = "2902-06-24T04:14:01" +ik[5689] = -1 +il[5689] = 91 +im[5689] = 0.1694 +ij[5689] = 2 +id[5690] = "2902-06-24T09:35:01" +ik[5690] = 0 +il[5690] = 90 +im[5690] = 0.1577 +ij[5690] = 1 +id[5691] = "2902-10-21T16:00:02" +ik[5691] = -1 +il[5691] = -163 +im[5691] = 0.0603 +ij[5691] = 2 +id[5692] = "2902-10-23T14:08:02" +ik[5692] = 0 +il[5692] = -177 +im[5692] = 0.0479 +ij[5692] = 1 +id[5693] = "2903-02-06T03:35:03" +ik[5693] = 0 +il[5693] = 1 +im[5693] = 0.1288 +ij[5693] = 1 +id[5694] = "2903-02-07T14:19:03" +ik[5694] = 1 +il[5694] = -9 +im[5694] = 0.1879 +ij[5694] = 2 +id[5695] = "2903-06-04T07:25:01" +ik[5695] = 0 +il[5695] = 113 +im[5695] = 0.148 +ij[5695] = 1 +id[5696] = "2903-06-05T16:28:01" +ik[5696] = 1 +il[5696] = 104 +im[5696] = 0.2123 +ij[5696] = 2 +id[5697] = "2903-10-04T17:55:02" +ik[5697] = -1 +il[5697] = -155 +im[5697] = 0.2171 +ij[5697] = 2 +id[5698] = "2903-10-07T05:44:02" +ik[5698] = 0 +il[5698] = -174 +im[5698] = 0.1952 +ij[5698] = 1 +id[5699] = "2904-01-21T05:30:03" +ik[5699] = 0 +il[5699] = 2 +im[5699] = 0.1333 +ij[5699] = 1 +id[5700] = "2904-01-22T03:16:03" +ik[5700] = 1 +il[5700] = -5 +im[5700] = 0.0882 +ij[5700] = 2 +id[5701] = "2904-05-14T17:01:01" +ik[5701] = 0 +il[5701] = 134 +im[5701] = 0.2473 +ij[5701] = 1 +id[5702] = "2904-05-17T06:52:01" +ik[5702] = 1 +il[5702] = 116 +im[5702] = 0.1678 +ij[5702] = 2 +id[5703] = "2904-09-16T09:45:02" +ik[5703] = -1 +il[5703] = -146 +im[5703] = 0.0054 +ij[5703] = 2 +id[5704] = "2904-09-19T10:03:02" +ik[5704] = 0 +il[5704] = -168 +im[5704] = 0.148 +ij[5704] = 1 +id[5705] = "2905-01-04T11:30:03" +ik[5705] = 0 +il[5705] = 1 +im[5705] = 0.2278 +ij[5705] = 1 +id[5706] = "2905-01-04T21:02:03" +ik[5706] = 1 +il[5706] = -1 +im[5706] = 0.2287 +ij[5706] = 2 +id[5707] = "2905-04-25T19:54:01" +ik[5707] = 0 +il[5707] = 151 +im[5707] = 0.0063 +ij[5707] = 1 +id[5708] = "2905-04-28T00:09:01" +ik[5708] = 1 +il[5708] = 135 +im[5708] = 0.1225 +ij[5708] = 2 +id[5709] = "2905-08-29T15:16:02" +ik[5709] = -1 +il[5709] = -135 +im[5709] = 0.2348 +ij[5709] = 2 +id[5710] = "2905-09-01T23:30:02" +ik[5710] = 0 +il[5710] = -158 +im[5710] = 0.1404 +ij[5710] = 1 +id[5711] = "2905-12-19T17:26:03" +ik[5711] = -1 +il[5711] = 3 +im[5711] = 0.1028 +ij[5711] = 2 +id[5712] = "2905-12-19T19:39:03" +ik[5712] = 0 +il[5712] = 1 +im[5712] = 0.1075 +ij[5712] = 1 +id[5713] = "2906-04-07T17:15:01" +ik[5713] = 0 +il[5713] = 163 +im[5713] = 0.2374 +ij[5713] = 1 +id[5714] = "2906-04-10T22:43:01" +ik[5714] = 1 +il[5714] = 140 +im[5714] = 0.1577 +ij[5714] = 2 +id[5715] = "2906-08-11T11:12:02" +ik[5715] = -1 +il[5715] = -122 +im[5715] = 0.0227 +ij[5715] = 2 +id[5716] = "2906-08-14T17:30:02" +ik[5716] = 0 +il[5716] = -145 +im[5716] = 0.1587 +ij[5716] = 1 +id[5717] = "2906-12-03T14:04:03" +ik[5717] = -1 +il[5717] = 7 +im[5717] = 0.1634 +ij[5717] = 2 +id[5718] = "2906-12-04T03:49:03" +ik[5718] = 0 +il[5718] = 0 +im[5718] = 0.1397 +ij[5718] = 1 +id[5719] = "2907-03-21T07:25:01" +ik[5719] = 0 +il[5719] = 172 +im[5719] = 0.0102 +ij[5719] = 1 +id[5720] = "2907-03-24T04:43:01" +ik[5720] = 1 +il[5720] = 151 +im[5720] = 0.1627 +ij[5720] = 2 +id[5721] = "2907-07-24T01:07:02" +ik[5721] = -1 +il[5721] = -109 +im[5721] = 0.2638 +ij[5721] = 2 +id[5722] = "2907-07-26T14:08:02" +ik[5722] = 0 +il[5722] = -126 +im[5722] = 0.2201 +ij[5722] = 1 +id[5723] = "2907-11-17T08:19:03" +ik[5723] = -1 +il[5723] = 11 +im[5723] = 0.2107 +ij[5723] = 2 +id[5724] = "2907-11-18T10:03:03" +ik[5724] = 0 +il[5724] = 1 +im[5724] = 0.2261 +ij[5724] = 1 +id[5725] = "2908-03-03T11:30:01" +ik[5725] = 0 +il[5725] = 177 +im[5725] = 0.2134 +ij[5725] = 1 +id[5726] = "2908-03-05T20:19:01" +ik[5726] = 1 +il[5726] = 160 +im[5726] = 0.1307 +ij[5726] = 2 +id[5727] = "2908-07-04T12:24:02" +ik[5727] = -1 +il[5727] = -96 +im[5727] = 0.0623 +ij[5727] = 2 +id[5728] = "2908-07-05T16:32:02" +ik[5728] = 0 +il[5728] = -104 +im[5728] = 0.0161 +ij[5728] = 1 +id[5729] = "2908-10-30T22:14:03" +ik[5729] = -1 +il[5729] = 15 +im[5729] = 0.0164 +ij[5729] = 2 +id[5730] = "2908-11-01T12:42:03" +ik[5730] = 0 +il[5730] = 2 +im[5730] = 0.0893 +ij[5730] = 1 +id[5731] = "2909-02-15T02:23:01" +ik[5731] = 0 +il[5731] = -180 +im[5731] = 0.1525 +ij[5731] = 1 +id[5732] = "2909-02-16T21:02:01" +ik[5732] = 1 +il[5732] = 167 +im[5732] = 0.2088 +ij[5732] = 2 +id[5733] = "2909-06-15T12:13:02" +ik[5733] = 0 +il[5733] = -80 +im[5733] = 0.2676 +ij[5733] = 1 +id[5734] = "2909-06-15T23:55:02" +ik[5734] = 1 +il[5734] = -83 +im[5734] = 0.2756 +ij[5734] = 2 +id[5735] = "2909-10-14T04:57:03" +ik[5735] = -1 +il[5735] = 20 +im[5735] = 0.2239 +ij[5735] = 2 +id[5736] = "2909-10-16T09:06:03" +ik[5736] = 0 +il[5736] = 4 +im[5736] = 0.1758 +ij[5736] = 1 +id[5737] = "2910-01-30T00:56:01" +ik[5737] = 0 +il[5737] = -178 +im[5737] = 0.1068 +ij[5737] = 1 +id[5738] = "2910-01-31T06:09:01" +ik[5738] = 1 +il[5738] = 173 +im[5738] = 0.042 +ij[5738] = 2 +id[5739] = "2910-05-26T14:08:02" +ik[5739] = 0 +il[5739] = -58 +im[5739] = 0.1891 +ij[5739] = 1 +id[5740] = "2910-05-28T12:52:02" +ik[5740] = 1 +il[5740] = -71 +im[5740] = 0.0796 +ij[5740] = 2 +id[5741] = "2910-09-27T02:48:03" +ik[5741] = -1 +il[5741] = 28 +im[5741] = 0.0989 +ij[5741] = 2 +id[5742] = "2910-09-29T20:08:03" +ik[5742] = 0 +il[5742] = 9 +im[5742] = 0.2056 +ij[5742] = 1 +id[5743] = "2911-01-14T05:01:01" +ik[5743] = 0 +il[5743] = -178 +im[5743] = 0.2248 +ij[5743] = 1 +id[5744] = "2911-01-14T21:31:01" +ik[5744] = 1 +il[5744] = 177 +im[5744] = 0.2178 +ij[5744] = 2 +id[5745] = "2911-05-07T06:42:02" +ik[5745] = 0 +il[5745] = -39 +im[5745] = 0.1399 +ij[5745] = 1 +id[5746] = "2911-05-10T04:14:02" +ik[5746] = 1 +il[5746] = -58 +im[5746] = 0.2512 +ij[5746] = 2 +id[5747] = "2911-09-09T14:19:03" +ik[5747] = -1 +il[5747] = 38 +im[5747] = 0.2054 +ij[5747] = 2 +id[5748] = "2911-09-12T18:42:03" +ik[5748] = 0 +il[5748] = 16 +im[5748] = 0.0664 +ij[5748] = 1 +id[5749] = "2911-12-29T12:13:01" +ik[5749] = 0 +il[5749] = -179 +im[5749] = 0.1208 +ij[5749] = 1 +id[5750] = "2911-12-29T16:43:01" +ik[5750] = 1 +il[5750] = -179 +im[5750] = 0.1296 +ij[5750] = 2 +id[5751] = "2912-04-17T17:30:02" +ik[5751] = 0 +il[5751] = -24 +im[5751] = 0.217 +ij[5751] = 1 +id[5752] = "2912-04-20T23:26:02" +ik[5752] = 1 +il[5752] = -46 +im[5752] = 0.0756 +ij[5752] = 2 +id[5753] = "2912-08-21T15:31:03" +ik[5753] = -1 +il[5753] = 50 +im[5753] = 0.1032 +ij[5753] = 2 +id[5754] = "2912-08-25T00:27:03" +ik[5754] = 0 +il[5754] = 27 +im[5754] = 0.2262 +ij[5754] = 1 +id[5755] = "2912-12-12T13:21:01" +ik[5755] = -1 +il[5755] = -175 +im[5755] = 0.1346 +ij[5755] = 2 +id[5756] = "2912-12-12T20:23:01" +ik[5756] = 0 +il[5756] = -179 +im[5756] = 0.1211 +ij[5756] = 1 +id[5757] = "2913-03-30T22:18:02" +ik[5757] = 0 +il[5757] = -13 +im[5757] = 0.1 +ij[5757] = 1 +id[5758] = "2913-04-03T01:07:02" +ik[5758] = 1 +il[5758] = -35 +im[5758] = 0.2218 +ij[5758] = 2 +id[5759] = "2913-08-03T08:19:03" +ik[5759] = -1 +il[5759] = 63 +im[5759] = 0.2228 +ij[5759] = 2 +id[5760] = "2913-08-06T09:20:03" +ik[5760] = 0 +il[5760] = 43 +im[5760] = 0.0946 +ij[5760] = 1 +id[5761] = "2913-11-26T09:16:01" +ik[5761] = -1 +il[5761] = -171 +im[5761] = 0.2253 +ij[5761] = 2 +id[5762] = "2913-11-27T04:03:01" +ik[5762] = 0 +il[5762] = 180 +im[5762] = 0.2267 +ij[5762] = 1 +id[5763] = "2914-03-13T18:42:02" +ik[5763] = 0 +il[5763] = -5 +im[5763] = 0.1747 +ij[5763] = 1 +id[5764] = "2914-03-16T10:57:02" +ik[5764] = 1 +il[5764] = -25 +im[5764] = 0.0578 +ij[5764] = 2 +id[5765] = "2914-07-15T20:33:03" +ik[5765] = -1 +il[5765] = 77 +im[5765] = 0.0685 +ij[5765] = 2 +id[5766] = "2914-07-17T21:20:03" +ik[5766] = 0 +il[5766] = 63 +im[5766] = 0.1736 +ij[5766] = 1 +id[5767] = "2914-11-10T02:04:01" +ik[5767] = -1 +il[5767] = -167 +im[5767] = 0.0422 +ij[5767] = 2 +id[5768] = "2914-11-11T09:06:01" +ik[5768] = 0 +il[5768] = -179 +im[5768] = 0.1119 +ij[5768] = 1 +id[5769] = "2915-02-25T03:49:02" +ik[5769] = 0 +il[5769] = -1 +im[5769] = 0.1745 +ij[5769] = 1 +id[5770] = "2915-02-27T06:38:02" +ik[5770] = 1 +il[5770] = -17 +im[5770] = 0.2188 +ij[5770] = 2 +id[5771] = "2915-06-27T07:50:03" +ik[5771] = -1 +il[5771] = 90 +im[5771] = 0.2632 +ij[5771] = 2 +id[5772] = "2915-06-27T19:11:03" +ik[5772] = 0 +il[5772] = 86 +im[5772] = 0.2535 +ij[5772] = 1 +id[5773] = "2915-10-24T13:07:01" +ik[5773] = -1 +il[5773] = -163 +im[5773] = 0.2135 +ij[5773] = 2 +id[5774] = "2915-10-26T09:20:01" +ik[5774] = 0 +il[5774] = -177 +im[5774] = 0.1521 +ij[5774] = 1 +id[5775] = "2916-02-08T22:18:02" +ik[5775] = 0 +il[5775] = 1 +im[5775] = 0.0695 +ij[5775] = 1 +id[5776] = "2916-02-10T11:12:02" +ik[5776] = 1 +il[5776] = -10 +im[5776] = 0.0402 +ij[5776] = 2 +id[5777] = "2916-06-06T16:03:03" +ik[5777] = 0 +il[5777] = 110 +im[5777] = 0.0494 +ij[5777] = 1 +id[5778] = "2916-06-07T19:50:03" +ik[5778] = 1 +il[5778] = 102 +im[5778] = 0.0398 +ij[5778] = 2 +id[5779] = "2916-10-06T16:14:01" +ik[5779] = -1 +il[5779] = -157 +im[5779] = 0.1638 +ij[5779] = 2 +id[5780] = "2916-10-09T02:08:01" +ik[5780] = 0 +il[5780] = -174 +im[5780] = 0.2293 +ij[5780] = 1 +id[5781] = "2917-01-22T23:30:02" +ik[5781] = 0 +il[5781] = 2 +im[5781] = 0.2095 +ij[5781] = 1 +id[5782] = "2917-01-23T23:12:02" +ik[5782] = 1 +il[5782] = -6 +im[5782] = 0.1887 +ij[5782] = 2 +id[5783] = "2917-05-17T23:30:03" +ik[5783] = 0 +il[5783] = 131 +im[5783] = 0.2504 +ij[5783] = 1 +id[5784] = "2917-05-20T09:45:03" +ik[5784] = 1 +il[5784] = 114 +im[5784] = 0.276 +ij[5784] = 2 +id[5785] = "2917-09-19T09:45:01" +ik[5785] = -1 +il[5785] = -148 +im[5785] = 0.1608 +ij[5785] = 2 +id[5786] = "2917-09-22T08:23:01" +ik[5786] = 0 +il[5786] = -169 +im[5786] = 0.0184 +ij[5786] = 1 +id[5787] = "2918-01-07T05:01:02" +ik[5787] = 0 +il[5787] = 2 +im[5787] = 0.1327 +ij[5787] = 1 +id[5788] = "2918-01-07T16:28:02" +ik[5788] = 1 +il[5788] = -2 +im[5788] = 0.1524 +ij[5788] = 2 +id[5789] = "2918-04-28T23:30:03" +ik[5789] = 0 +il[5789] = 148 +im[5789] = 0.1611 +ij[5789] = 1 +id[5790] = "2918-05-02T02:33:03" +ik[5790] = 1 +il[5790] = 127 +im[5790] = 0.031 +ij[5790] = 2 +id[5791] = "2918-09-01T16:43:01" +ik[5791] = -1 +il[5791] = -137 +im[5791] = 0.191 +ij[5791] = 2 +id[5792] = "2918-09-04T00:13:01" +ik[5792] = 0 +il[5792] = -153 +im[5792] = 0.2441 +ij[5792] = 1 +id[5793] = "2918-12-22T12:24:02" +ik[5793] = -1 +il[5793] = 2 +im[5793] = 0.0936 +ij[5793] = 2 +id[5794] = "2918-12-22T12:56:02" +ik[5794] = 0 +il[5794] = 1 +im[5794] = 0.0926 +ij[5794] = 1 +id[5795] = "2919-04-10T18:13:03" +ik[5795] = 0 +il[5795] = 162 +im[5795] = 0.184 +ij[5795] = 1 +id[5796] = "2919-04-13T00:09:03" +ik[5796] = 1 +il[5796] = 146 +im[5796] = 0.2482 +ij[5796] = 2 +id[5797] = "2919-08-14T14:04:01" +ik[5797] = -1 +il[5797] = -124 +im[5797] = 0.1503 +ij[5797] = 2 +id[5798] = "2919-08-17T21:35:01" +ik[5798] = 0 +il[5798] = -147 +im[5798] = 0.0506 +ij[5798] = 1 +id[5799] = "2919-12-06T09:16:02" +ik[5799] = -1 +il[5799] = 6 +im[5799] = 0.2178 +ij[5799] = 2 +id[5800] = "2919-12-06T21:06:02" +ik[5800] = 0 +il[5800] = 1 +im[5800] = 0.2135 +ij[5800] = 1 +id[5801] = "2920-03-23T05:59:03" +ik[5801] = 0 +il[5801] = 171 +im[5801] = 0.1198 +ij[5801] = 1 +id[5802] = "2920-03-26T04:57:03" +ik[5802] = 1 +il[5802] = 150 +im[5802] = 0.0473 +ij[5802] = 2 +id[5803] = "2920-07-26T04:28:01" +ik[5803] = -1 +il[5803] = -111 +im[5803] = 0.1663 +ij[5803] = 2 +id[5804] = "2920-07-28T21:20:01" +ik[5804] = 0 +il[5804] = -129 +im[5804] = 0.2464 +ij[5804] = 1 +id[5805] = "2920-11-19T04:00:02" +ik[5805] = -1 +il[5805] = 10 +im[5805] = 0.0765 +ij[5805] = 2 +id[5806] = "2920-11-20T03:49:02" +ik[5806] = 0 +il[5806] = 1 +im[5806] = 0.1253 +ij[5806] = 1 +id[5807] = "2921-03-06T08:23:03" +ik[5807] = 0 +il[5807] = 177 +im[5807] = 0.2031 +ij[5807] = 1 +id[5808] = "2921-03-08T19:07:03" +ik[5808] = 1 +il[5808] = 159 +im[5808] = 0.2232 +ij[5808] = 2 +id[5809] = "2921-07-07T16:00:01" +ik[5809] = -1 +il[5809] = -98 +im[5809] = 0.1897 +ij[5809] = 2 +id[5810] = "2921-07-09T01:54:01" +ik[5810] = 0 +il[5810] = -107 +im[5810] = 0.1218 +ij[5810] = 1 +id[5811] = "2921-11-02T18:38:02" +ik[5811] = -1 +il[5811] = 14 +im[5811] = 0.177 +ij[5811] = 2 +id[5812] = "2921-11-04T07:11:02" +ik[5812] = 0 +il[5812] = 1 +im[5812] = 0.113 +ij[5812] = 1 +id[5813] = "2922-02-17T21:49:03" +ik[5813] = 0 +il[5813] = -180 +im[5813] = 0.0033 +ij[5813] = 1 +id[5814] = "2922-02-19T18:38:03" +ik[5814] = 1 +il[5814] = 166 +im[5814] = 0.0964 +ij[5814] = 2 +id[5815] = "2922-06-18T21:35:01" +ik[5815] = 0 +il[5815] = -83 +im[5815] = 0.1259 +ij[5815] = 1 +id[5816] = "2922-06-19T03:16:01" +ik[5816] = 1 +il[5816] = -85 +im[5816] = 0.1391 +ij[5816] = 2 +id[5817] = "2922-10-17T02:33:02" +ik[5817] = -1 +il[5817] = 19 +im[5817] = 0.2017 +ij[5817] = 2 +id[5818] = "2922-10-19T04:32:02" +ik[5818] = 0 +il[5818] = 4 +im[5818] = 0.2267 +ij[5818] = 1 +id[5819] = "2923-02-01T19:25:03" +ik[5819] = 0 +il[5819] = -178 +im[5819] = 0.1945 +ij[5819] = 1 +id[5820] = "2923-02-03T02:33:03" +ik[5820] = 1 +il[5820] = 172 +im[5820] = 0.1545 +ij[5820] = 2 +id[5821] = "2923-05-29T21:49:01" +ik[5821] = 0 +il[5821] = -61 +im[5821] = 0.2696 +ij[5821] = 1 +id[5822] = "2923-05-31T16:00:01" +ik[5822] = 1 +il[5822] = -73 +im[5822] = 0.2296 +ij[5822] = 2 +id[5823] = "2923-09-30T01:50:02" +ik[5823] = -1 +il[5823] = 27 +im[5823] = 0.1 +ij[5823] = 2 +id[5824] = "2923-10-02T17:15:02" +ik[5824] = 0 +il[5824] = 8 +im[5824] = 0.0551 +ij[5824] = 1 +id[5825] = "2924-01-16T22:47:03" +ik[5825] = 0 +il[5825] = -178 +im[5825] = 0.1491 +ij[5825] = 1 +id[5826] = "2924-01-17T16:57:03" +ik[5826] = 1 +il[5826] = 176 +im[5826] = 0.1759 +ij[5826] = 2 +id[5827] = "2924-05-09T11:59:01" +ik[5827] = 0 +il[5827] = -41 +im[5827] = 0.0514 +ij[5827] = 1 +id[5828] = "2924-05-12T07:07:01" +ik[5828] = 1 +il[5828] = -60 +im[5828] = 0.1287 +ij[5828] = 2 +id[5829] = "2924-09-11T15:02:02" +ik[5829] = -1 +il[5829] = 37 +im[5829] = 0.241 +ij[5829] = 2 +id[5830] = "2924-09-14T17:59:02" +ik[5830] = 0 +il[5830] = 15 +im[5830] = 0.2191 +ij[5830] = 1 +id[5831] = "2924-12-31T05:30:03" +ik[5831] = 0 +il[5831] = -179 +im[5831] = 0.0459 +ij[5831] = 1 +id[5832] = "2924-12-31T11:40:03" +ik[5832] = 1 +il[5832] = -180 +im[5832] = 0.0326 +ij[5832] = 2 +id[5833] = "2925-04-20T19:54:01" +ik[5833] = 0 +il[5833] = -26 +im[5833] = 0.253 +ij[5833] = 1 +id[5834] = "2925-04-24T01:36:01" +ik[5834] = 1 +il[5834] = -48 +im[5834] = 0.2383 +ij[5834] = 2 +id[5835] = "2925-08-24T17:26:02" +ik[5835] = -1 +il[5835] = 49 +im[5835] = 0.0539 +ij[5835] = 2 +id[5836] = "2925-08-28T02:23:02" +ik[5836] = 0 +il[5836] = 25 +im[5836] = 0.1453 +ij[5836] = 1 +id[5837] = "2925-12-15T08:19:03" +ik[5837] = -1 +il[5837] = -176 +im[5837] = 0.2018 +ij[5837] = 2 +id[5838] = "2925-12-15T13:39:03" +ik[5838] = 0 +il[5838] = -179 +im[5838] = 0.198 +ij[5838] = 1 +id[5839] = "2926-04-02T22:03:01" +ik[5839] = 0 +il[5839] = -14 +im[5839] = 0.0539 +ij[5839] = 1 +id[5840] = "2926-04-06T02:04:01" +ik[5840] = 1 +il[5840] = -36 +im[5840] = 0.1375 +ij[5840] = 2 +id[5841] = "2926-08-06T11:26:02" +ik[5841] = -1 +il[5841] = 62 +im[5841] = 0.2434 +ij[5841] = 2 +id[5842] = "2926-08-09T14:37:02" +ik[5842] = 0 +il[5842] = 40 +im[5842] = 0.2378 +ij[5842] = 1 +id[5843] = "2926-11-29T04:43:03" +ik[5843] = -1 +il[5843] = -172 +im[5843] = 0.1111 +ij[5843] = 2 +id[5844] = "2926-11-29T21:35:03" +ik[5844] = 0 +il[5844] = 180 +im[5844] = 0.1415 +ij[5844] = 1 +id[5845] = "2927-03-16T16:32:01" +ik[5845] = 0 +il[5845] = -6 +im[5845] = 0.2341 +ij[5845] = 1 +id[5846] = "2927-03-19T10:43:01" +ik[5846] = 1 +il[5846] = -26 +im[5846] = 0.2094 +ij[5846] = 2 +id[5847] = "2927-07-18T00:09:02" +ik[5847] = -1 +il[5847] = 82 +im[5847] = 0.1358 +ij[5847] = 2 +id[5848] = "2927-07-21T05:30:02" +ik[5848] = 0 +il[5848] = 60 +im[5848] = 0.0603 +ij[5848] = 1 +id[5849] = "2927-11-12T22:00:03" +ik[5849] = -1 +il[5849] = -168 +im[5849] = 0.1238 +ij[5849] = 2 +id[5850] = "2927-11-14T03:06:03" +ik[5850] = 0 +il[5850] = -179 +im[5850] = 0.0661 +ij[5850] = 1 +id[5851] = "2928-02-27T23:59:01" +ik[5851] = 0 +il[5851] = -2 +im[5851] = 0.0621 +ij[5851] = 1 +id[5852] = "2928-03-01T04:43:01" +ik[5852] = 1 +il[5852] = -18 +im[5852] = 0.1687 +ij[5852] = 2 +id[5853] = "2928-06-29T11:12:02" +ik[5853] = -1 +il[5853] = 88 +im[5853] = 0.2229 +ij[5853] = 2 +id[5854] = "2928-06-30T04:47:02" +ik[5854] = 0 +il[5854] = 83 +im[5854] = 0.2433 +ij[5854] = 1 +id[5855] = "2928-10-26T10:00:03" +ik[5855] = -1 +il[5855] = -164 +im[5855] = 0.2116 +ij[5855] = 2 +id[5856] = "2928-10-28T04:18:03" +ik[5856] = 0 +il[5856] = -178 +im[5856] = 0.2112 +ij[5856] = 1 +id[5857] = "2929-02-10T17:15:01" +ik[5857] = 0 +il[5857] = 1 +im[5857] = 0.183 +ij[5857] = 1 +id[5858] = "2929-02-12T08:04:01" +ik[5858] = 1 +il[5858] = -11 +im[5858] = 0.1186 +ij[5858] = 2 +id[5859] = "2929-06-10T00:56:02" +ik[5859] = 0 +il[5859] = 107 +im[5859] = 0.172 +ij[5859] = 1 +id[5860] = "2929-06-10T23:12:02" +ik[5860] = 1 +il[5860] = 100 +im[5860] = 0.1248 +ij[5860] = 2 +id[5861] = "2929-10-09T14:33:03" +ik[5861] = -1 +il[5861] = -158 +im[5861] = 0.0409 +ij[5861] = 2 +id[5862] = "2929-10-11T22:18:03" +ik[5862] = 0 +il[5862] = -175 +im[5862] = 0.1004 +ij[5862] = 1 +id[5863] = "2930-01-25T17:30:01" +ik[5863] = 0 +il[5863] = 2 +im[5863] = 0.181 +ij[5863] = 1 +id[5864] = "2930-01-26T19:07:01" +ik[5864] = 1 +il[5864] = -6 +im[5864] = 0.2086 +ij[5864] = 2 +id[5865] = "2930-05-21T06:13:02" +ik[5865] = 0 +il[5865] = 128 +im[5865] = 0.0933 +ij[5865] = 1 +id[5866] = "2930-05-23T12:52:02" +ik[5866] = 1 +il[5866] = 113 +im[5866] = 0.2083 +ij[5866] = 2 +id[5867] = "2930-09-22T09:31:03" +ik[5867] = -1 +il[5867] = -149 +im[5867] = 0.2365 +ij[5867] = 2 +id[5868] = "2930-09-25T06:27:03" +ik[5868] = 0 +il[5868] = -170 +im[5868] = 0.1601 +ij[5868] = 1 +id[5869] = "2931-01-09T22:32:01" +ik[5869] = 0 +il[5869] = 2 +im[5869] = 0.0065 +ij[5869] = 1 +id[5870] = "2931-01-10T11:40:01" +ik[5870] = 1 +il[5870] = -2 +im[5870] = 0.0292 +ij[5870] = 2 +id[5871] = "2931-05-02T03:35:02" +ik[5871] = 0 +il[5871] = 146 +im[5871] = 0.2582 +ij[5871] = 1 +id[5872] = "2931-05-05T04:57:02" +ik[5872] = 1 +il[5872] = 125 +im[5872] = 0.1628 +ij[5872] = 2 +id[5873] = "2931-09-04T18:09:03" +ik[5873] = -1 +il[5873] = -138 +im[5873] = 0.0523 +ij[5873] = 2 +id[5874] = "2931-09-08T00:42:03" +ik[5874] = 0 +il[5874] = -161 +im[5874] = 0.1994 +ij[5874] = 1 +id[5875] = "2931-12-25T06:13:01" +ik[5875] = 0 +il[5875] = 1 +im[5875] = 0.1911 +ij[5875] = 1 +id[5876] = "2931-12-25T07:36:01" +ik[5876] = 1 +il[5876] = 2 +im[5876] = 0.1898 +ij[5876] = 2 +id[5877] = "2932-04-12T19:39:02" +ik[5877] = 0 +il[5877] = 160 +im[5877] = 0.0411 +ij[5877] = 1 +id[5878] = "2932-04-16T01:50:02" +ik[5878] = 1 +il[5878] = 137 +im[5878] = 0.2035 +ij[5878] = 2 +id[5879] = "2932-08-16T16:43:03" +ik[5879] = -1 +il[5879] = -126 +im[5879] = 0.2582 +ij[5879] = 2 +id[5880] = "2932-08-20T00:56:03" +ik[5880] = 0 +il[5880] = -149 +im[5880] = 0.1612 +ij[5880] = 1 +id[5881] = "2932-12-08T04:14:01" +ik[5881] = -1 +il[5881] = 6 +im[5881] = 0.1499 +ij[5881] = 2 +id[5882] = "2932-12-08T14:37:01" +ik[5882] = 0 +il[5882] = 1 +im[5882] = 0.1657 +ij[5882] = 1 +id[5883] = "2933-03-26T05:01:02" +ik[5883] = 0 +il[5883] = 170 +im[5883] = 0.2447 +ij[5883] = 1 +id[5884] = "2933-03-29T05:26:02" +ik[5884] = 1 +il[5884] = 148 +im[5884] = 0.1603 +ij[5884] = 2 +id[5885] = "2933-07-29T07:50:03" +ik[5885] = -1 +il[5885] = -113 +im[5885] = 0.0562 +ij[5885] = 2 +id[5886] = "2933-08-01T03:49:03" +ik[5886] = 0 +il[5886] = -132 +im[5886] = 0.1977 +ij[5886] = 1 +id[5887] = "2933-11-21T23:26:01" +ik[5887] = -1 +il[5887] = 10 +im[5887] = 0.0644 +ij[5887] = 2 +id[5888] = "2933-11-22T21:35:01" +ik[5888] = 0 +il[5888] = 1 +im[5888] = 0.0159 +ij[5888] = 1 +id[5889] = "2934-03-09T05:15:02" +ik[5889] = 0 +il[5889] = 176 +im[5889] = 0.1203 +ij[5889] = 1 +id[5890] = "2934-03-11T18:09:02" +ik[5890] = 1 +il[5890] = 158 +im[5890] = 0.2192 +ij[5890] = 2 +id[5891] = "2934-07-10T19:36:03" +ik[5891] = -1 +il[5891] = -100 +im[5891] = 0.2679 +ij[5891] = 2 +id[5892] = "2934-07-12T10:47:03" +ik[5892] = 0 +il[5892] = -111 +im[5892] = 0.2534 +ij[5892] = 1 +id[5893] = "2934-11-05T14:48:01" +ik[5893] = -1 +il[5893] = 14 +im[5893] = 0.2122 +ij[5893] = 2 +id[5894] = "2934-11-07T01:39:01" +ik[5894] = 0 +il[5894] = 1 +im[5894] = 0.1986 +ij[5894] = 1 +id[5895] = "2935-02-20T17:15:02" +ik[5895] = 0 +il[5895] = -180 +im[5895] = 0.1732 +ij[5895] = 1 +id[5896] = "2935-02-22T16:14:02" +ik[5896] = 1 +il[5896] = 165 +im[5896] = 0.0834 +ij[5896] = 2 +id[5897] = "2935-06-22T06:52:03" +ik[5897] = -1 +il[5897] = -87 +im[5897] = 0.0352 +ij[5897] = 2 +id[5898] = "2935-06-22T06:56:03" +ik[5898] = 0 +il[5898] = -87 +im[5898] = 0.0352 +ij[5898] = 1 +id[5899] = "2935-10-19T00:09:01" +ik[5899] = -1 +il[5899] = 25 +im[5899] = 0.0142 +ij[5899] = 2 +id[5900] = "2935-10-21T23:59:01" +ik[5900] = 0 +il[5900] = 3 +im[5900] = 0.1395 +ij[5900] = 1 +id[5901] = "2936-02-04T13:54:02" +ik[5901] = 0 +il[5901] = -179 +im[5901] = 0.2118 +ij[5901] = 1 +id[5902] = "2936-02-05T22:57:02" +ik[5902] = 1 +il[5902] = 171 +im[5902] = 0.2312 +ij[5902] = 2 +id[5903] = "2936-06-01T05:59:03" +ik[5903] = 0 +il[5903] = -64 +im[5903] = 0.2181 +ij[5903] = 1 +id[5904] = "2936-06-02T19:21:03" +ik[5904] = 1 +il[5904] = -74 +im[5904] = 0.2557 +ij[5904] = 2 +id[5905] = "2936-10-02T00:52:01" +ik[5905] = -1 +il[5905] = 29 +im[5905] = 0.1973 +ij[5905] = 2 +id[5906] = "2936-10-04T14:23:01" +ik[5906] = 0 +il[5906] = 7 +im[5906] = 0.0927 +ij[5906] = 1 +id[5907] = "2937-01-18T16:32:02" +ik[5907] = 0 +il[5907] = -178 +im[5907] = 0.0409 +ij[5907] = 1 +id[5908] = "2937-01-19T12:38:02" +ik[5908] = 1 +il[5908] = 176 +im[5908] = 0.0817 +ij[5908] = 2 +id[5909] = "2937-05-12T17:30:03" +ik[5909] = 0 +il[5909] = -44 +im[5909] = 0.1818 +ij[5909] = 1 +id[5910] = "2937-05-15T10:00:03" +ik[5910] = 1 +il[5910] = -62 +im[5910] = 0.044 +ij[5910] = 2 +id[5911] = "2937-09-14T15:31:01" +ik[5911] = -1 +il[5911] = 35 +im[5911] = 0.113 +ij[5911] = 2 +id[5912] = "2937-09-17T17:01:01" +ik[5912] = 0 +il[5912] = 13 +im[5912] = 0.2167 +ij[5912] = 1 +id[5913] = "2938-01-02T22:47:02" +ik[5913] = 0 +il[5913] = -179 +im[5913] = 0.1896 +ij[5913] = 1 +id[5914] = "2938-01-03T06:52:02" +ik[5914] = 1 +il[5914] = -180 +im[5914] = 0.1799 +ij[5914] = 2 +id[5915] = "2938-04-23T22:47:03" +ik[5915] = 0 +il[5915] = -28 +im[5915] = 0.1246 +ij[5915] = 1 +id[5916] = "2938-04-27T03:45:03" +ik[5916] = 1 +il[5916] = -50 +im[5916] = 0.2405 +ij[5916] = 2 +id[5917] = "2938-08-27T19:36:01" +ik[5917] = -1 +il[5917] = 47 +im[5917] = 0.2079 +ij[5917] = 2 +id[5918] = "2938-08-31T04:03:01" +ik[5918] = 0 +il[5918] = 23 +im[5918] = 0.0522 +ij[5918] = 1 +id[5919] = "2938-12-18T03:31:02" +ik[5919] = -1 +il[5919] = -176 +im[5919] = 0.1913 +ij[5919] = 2 +id[5920] = "2938-12-18T06:56:02" +ik[5920] = 0 +il[5920] = -179 +im[5920] = 0.1952 +ij[5920] = 1 +id[5921] = "2939-04-05T22:32:03" +ik[5921] = 0 +il[5921] = -16 +im[5921] = 0.2123 +ij[5921] = 1 +id[5922] = "2939-04-09T03:16:03" +ik[5922] = 1 +il[5922] = -38 +im[5922] = 0.0663 +ij[5922] = 2 +id[5923] = "2939-08-09T14:33:01" +ik[5923] = -1 +il[5923] = 60 +im[5923] = 0.1397 +ij[5923] = 2 +id[5924] = "2939-08-12T19:25:01" +ik[5924] = 0 +il[5924] = 38 +im[5924] = 0.2437 +ij[5924] = 1 +id[5925] = "2939-12-01T23:55:02" +ik[5925] = -1 +il[5925] = -172 +im[5925] = 0.0226 +ij[5925] = 2 +id[5926] = "2939-12-02T15:06:02" +ik[5926] = 0 +il[5926] = 180 +im[5926] = 0.0269 +ij[5926] = 1 +id[5927] = "2940-03-18T14:37:03" +ik[5927] = 0 +il[5927] = -7 +im[5927] = 0.1641 +ij[5927] = 1 +id[5928] = "2940-03-21T10:28:03" +ik[5928] = 1 +il[5928] = -28 +im[5928] = 0.2362 +ij[5928] = 2 +id[5929] = "2940-07-21T03:45:01" +ik[5929] = -1 +il[5929] = 73 +im[5929] = 0.2487 +ij[5929] = 2 +id[5930] = "2940-07-23T13:25:01" +ik[5930] = 0 +il[5930] = 57 +im[5930] = 0.1523 +ij[5930] = 1 +id[5931] = "2940-11-14T17:40:02" +ik[5931] = -1 +il[5931] = -168 +im[5931] = 0.2128 +ij[5931] = 2 +id[5932] = "2940-11-15T21:06:02" +ik[5932] = 0 +il[5932] = -179 +im[5932] = 0.1937 +ij[5932] = 1 +id[5933] = "2941-03-01T20:08:03" +ik[5933] = 0 +il[5933] = -2 +im[5933] = 0.1429 +ij[5933] = 1 +id[5934] = "2941-03-04T03:16:03" +ik[5934] = 1 +il[5934] = -19 +im[5934] = 0.0188 +ij[5934] = 2 +id[5935] = "2941-07-02T14:47:01" +ik[5935] = -1 +il[5935] = 86 +im[5935] = 0.123 +ij[5935] = 2 +id[5936] = "2941-07-03T14:08:01" +ik[5936] = 0 +il[5936] = 79 +im[5936] = 0.1761 +ij[5936] = 1 +id[5937] = "2941-10-29T06:52:02" +ik[5937] = -1 +il[5937] = -164 +im[5937] = 0.1142 +ij[5937] = 2 +id[5938] = "2941-10-30T23:01:02" +ik[5938] = 0 +il[5938] = -178 +im[5938] = 0.1803 +ij[5938] = 1 +id[5939] = "2942-02-13T12:13:03" +ik[5939] = 0 +il[5939] = 1 +im[5939] = 0.2304 +ij[5939] = 1 +id[5940] = "2942-02-15T05:11:03" +ik[5940] = 1 +il[5940] = -12 +im[5940] = 0.2287 +ij[5940] = 2 +id[5941] = "2942-06-13T09:49:01" +ik[5941] = 0 +il[5941] = 103 +im[5941] = 0.2697 +ij[5941] = 1 +id[5942] = "2942-06-14T02:33:01" +ik[5942] = 1 +il[5942] = 98 +im[5942] = 0.2623 +ij[5942] = 2 +id[5943] = "2942-10-12T12:38:02" +ik[5943] = -1 +il[5943] = -159 +im[5943] = 0.1454 +ij[5943] = 2 +id[5944] = "2942-10-14T18:13:02" +ik[5944] = 0 +il[5944] = -175 +im[5944] = 0.0332 +ij[5944] = 1 +id[5945] = "2943-01-28T11:44:03" +ik[5945] = 0 +il[5945] = 2 +im[5945] = 0.0567 +ij[5945] = 1 +id[5946] = "2943-01-29T15:16:03" +ik[5946] = 1 +il[5946] = -7 +im[5946] = 0.1186 +ij[5946] = 2 +id[5947] = "2943-05-24T13:25:01" +ik[5947] = 0 +il[5947] = 125 +im[5947] = 0.0404 +ij[5947] = 1 +id[5948] = "2943-05-26T15:59:01" +ik[5948] = 1 +il[5948] = 111 +im[5948] = 0.0908 +ij[5948] = 2 +id[5949] = "2943-09-25T09:16:02" +ik[5949] = -1 +il[5949] = -151 +im[5949] = 0.1747 +ij[5949] = 2 +id[5950] = "2943-09-28T04:03:02" +ik[5950] = 0 +il[5950] = -170 +im[5950] = 0.2233 +ij[5950] = 1 +id[5951] = "2944-01-12T16:03:03" +ik[5951] = 0 +il[5951] = 2 +im[5951] = 0.1828 +ij[5951] = 1 +id[5952] = "2944-01-13T07:07:03" +ik[5952] = 1 +il[5952] = -3 +im[5952] = 0.1601 +ij[5952] = 2 +id[5953] = "2944-05-04T08:08:01" +ik[5953] = 0 +il[5953] = 144 +im[5953] = 0.2117 +ij[5953] = 1 +id[5954] = "2944-05-07T07:35:01" +ik[5954] = 1 +il[5954] = 123 +im[5954] = 0.2468 +ij[5954] = 2 +id[5955] = "2944-09-06T19:21:02" +ik[5955] = -1 +il[5955] = -140 +im[5955] = 0.1149 +ij[5955] = 2 +id[5956] = "2944-09-10T00:42:02" +ik[5956] = 0 +il[5956] = -163 +im[5956] = 0.0605 +ij[5956] = 1 +id[5957] = "2944-12-26T23:30:03" +ik[5957] = 0 +il[5957] = 1 +im[5957] = 0.2151 +ij[5957] = 1 +id[5958] = "2944-12-27T02:33:03" +ik[5958] = 1 +il[5958] = 1 +im[5958] = 0.2173 +ij[5958] = 2 +id[5959] = "2945-04-15T21:20:01" +ik[5959] = 0 +il[5959] = 158 +im[5959] = 0.1294 +ij[5959] = 1 +id[5960] = "2945-04-19T03:31:01" +ik[5960] = 1 +il[5960] = 135 +im[5960] = 0.0528 +ij[5960] = 2 +id[5961] = "2945-08-19T19:07:02" +ik[5961] = -1 +il[5961] = -128 +im[5961] = 0.2027 +ij[5961] = 2 +id[5962] = "2945-08-23T03:49:02" +ik[5962] = 0 +il[5962] = -151 +im[5962] = 0.2239 +ij[5962] = 1 +id[5963] = "2945-12-10T23:26:03" +ik[5963] = -1 +il[5963] = 5 +im[5963] = 0.0258 +ij[5963] = 2 +id[5964] = "2945-12-11T07:54:03" +ik[5964] = 0 +il[5964] = 1 +im[5964] = 0.0442 +ij[5964] = 1 +id[5965] = "2946-03-29T04:18:01" +ik[5965] = 0 +il[5965] = 168 +im[5965] = 0.2032 +ij[5965] = 1 +id[5966] = "2946-04-01T05:55:01" +ik[5966] = 1 +il[5966] = 147 +im[5966] = 0.2235 +ij[5966] = 2 +id[5967] = "2946-08-01T11:11:02" +ik[5967] = -1 +il[5967] = -115 +im[5967] = 0.1592 +ij[5967] = 2 +id[5968] = "2946-08-04T10:03:02" +ik[5968] = 0 +il[5968] = -135 +im[5968] = 0.01 +ij[5968] = 1 +id[5969] = "2946-11-24T18:52:03" +ik[5969] = -1 +il[5969] = 9 +im[5969] = 0.2082 +ij[5969] = 2 +id[5970] = "2946-11-25T15:20:03" +ik[5970] = 0 +il[5970] = 0 +im[5970] = 0.1864 +ij[5970] = 1 +id[5971] = "2947-03-12T02:37:01" +ik[5971] = 0 +il[5971] = 175 +im[5971] = 0.0887 +ij[5971] = 1 +id[5972] = "2947-03-14T17:11:01" +ik[5972] = 1 +il[5972] = 156 +im[5972] = 0.0614 +ij[5972] = 2 +id[5973] = "2947-07-13T23:11:02" +ik[5973] = -1 +il[5973] = -102 +im[5973] = 0.2122 +ij[5973] = 2 +id[5974] = "2947-07-15T19:39:02" +ik[5974] = 0 +il[5974] = -114 +im[5974] = 0.2584 +ij[5974] = 1 +id[5975] = "2947-11-08T10:57:03" +ik[5975] = -1 +il[5975] = 13 +im[5975] = 0.1709 +ij[5975] = 2 +id[5976] = "2947-11-09T19:54:03" +ik[5976] = 0 +il[5976] = 1 +im[5976] = 0.2107 +ij[5976] = 1 +id[5977] = "2948-02-23T12:56:01" +ik[5977] = 0 +il[5977] = 179 +im[5977] = 0.2285 +ij[5977] = 1 +id[5978] = "2948-02-25T14:04:01" +ik[5978] = 1 +il[5978] = 164 +im[5978] = 0.1947 +ij[5978] = 2 +id[5979] = "2948-06-24T10:28:02" +ik[5979] = -1 +il[5979] = -89 +im[5979] = 0.2091 +ij[5979] = 2 +id[5980] = "2948-06-24T16:32:02" +ik[5980] = 0 +il[5980] = -90 +im[5980] = 0.1978 +ij[5980] = 1 +id[5981] = "2948-10-21T21:16:03" +ik[5981] = -1 +il[5981] = 17 +im[5981] = 0.1026 +ij[5981] = 2 +id[5982] = "2948-10-23T19:11:03" +ik[5982] = 0 +il[5982] = 3 +im[5982] = 0.0256 +ij[5982] = 1 +id[5983] = "2949-02-06T08:37:01" +ik[5983] = 0 +il[5983] = -179 +im[5983] = 0.0808 +ij[5983] = 1 +id[5984] = "2949-02-07T19:35:01" +ik[5984] = 1 +il[5984] = 170 +im[5984] = 0.1513 +ij[5984] = 2 +id[5985] = "2949-06-04T14:23:02" +ik[5985] = 0 +il[5985] = -67 +im[5985] = 0.1284 +ij[5985] = 1 +id[5986] = "2949-06-05T22:43:02" +ik[5986] = 1 +il[5986] = -76 +im[5986] = 0.1992 +ij[5986] = 2 +id[5987] = "2949-10-04T23:26:03" +ik[5987] = -1 +il[5987] = 24 +im[5987] = 0.2182 +ij[5987] = 2 +id[5988] = "2949-10-07T11:01:03" +ik[5988] = 0 +il[5988] = 6 +im[5988] = 0.2212 +ij[5988] = 1 +id[5989] = "2950-01-21T10:18:01" +ik[5989] = 0 +il[5989] = -178 +im[5989] = 0.159 +ij[5989] = 1 +id[5990] = "2950-01-22T08:19:01" +ik[5990] = 1 +il[5990] = 175 +im[5990] = 0.1195 +ij[5990] = 2 +id[5991] = "2950-05-15T23:30:02" +ik[5991] = 0 +il[5991] = -46 +im[5991] = 0.2622 +ij[5991] = 1 +id[5992] = "2950-05-18T12:52:02" +ik[5992] = 1 +il[5992] = -64 +im[5992] = 0.2152 +ij[5992] = 2 +id[5993] = "2950-09-17T15:31:03" +ik[5993] = -1 +il[5993] = 34 +im[5993] = 0.0407 +ij[5993] = 2 +id[5994] = "2950-09-20T15:35:03" +ik[5994] = 0 +il[5994] = 12 +im[5994] = 0.1463 +ij[5994] = 1 +id[5995] = "2951-01-05T16:18:01" +ik[5995] = 0 +il[5995] = -178 +im[5995] = 0.2201 +ij[5995] = 1 +id[5996] = "2951-01-06T02:04:01" +ik[5996] = 1 +il[5996] = 179 +im[5996] = 0.2224 +ij[5996] = 2 +id[5997] = "2951-04-27T02:08:02" +ik[5997] = 0 +il[5997] = -30 +im[5997] = 0.029 +ij[5997] = 1 +id[5998] = "2951-04-30T06:09:02" +ik[5998] = 1 +il[5998] = -52 +im[5998] = 0.1679 +ij[5998] = 2 +id[5999] = "2951-08-30T21:16:03" +ik[5999] = -1 +il[5999] = 45 +im[5999] = 0.2315 +ij[5999] = 2 +id[6000] = "2951-09-03T05:15:03" +ik[6000] = 0 +il[6000] = 22 +im[6000] = 0.1763 +ij[6000] = 1 +id[6001] = "2951-12-20T22:28:01" +ik[6001] = -1 +il[6001] = -177 +im[6001] = 0.053 +ij[6001] = 2 +id[6002] = "2951-12-21T00:27:01" +ik[6002] = 0 +il[6002] = -179 +im[6002] = 0.0576 +ij[6002] = 1 +id[6003] = "2952-04-07T23:01:02" +ik[6003] = 0 +il[6003] = -17 +im[6003] = 0.2309 +ij[6003] = 1 +id[6004] = "2952-04-11T04:28:02" +ik[6004] = 1 +il[6004] = -40 +im[6004] = 0.1908 +ij[6004] = 2 +id[6005] = "2952-08-11T17:26:03" +ik[6005] = -1 +il[6005] = 58 +im[6005] = 0.0578 +ij[6005] = 2 +id[6006] = "2952-08-14T23:59:03" +ik[6006] = 0 +il[6006] = 35 +im[6006] = 0.1493 +ij[6006] = 1 +id[6007] = "2952-12-03T19:07:01" +ik[6007] = -1 +il[6007] = -173 +im[6007] = 0.1884 +ij[6007] = 2 +id[6008] = "2952-12-04T08:37:01" +ik[6008] = 0 +il[6008] = -179 +im[6008] = 0.1691 +ij[6008] = 1 +id[6009] = "2953-03-21T12:56:02" +ik[6009] = 0 +il[6009] = -8 +im[6009] = 0.0325 +ij[6009] = 1 +id[6010] = "2953-03-24T10:28:02" +ik[6010] = 1 +il[6010] = -29 +im[6010] = 0.1455 +ij[6010] = 2 +id[6011] = "2953-07-24T07:21:03" +ik[6011] = -1 +il[6011] = 71 +im[6011] = 0.2465 +ij[6011] = 2 +id[6012] = "2953-07-26T20:51:03" +ik[6012] = 0 +il[6012] = 53 +im[6012] = 0.2251 +ij[6012] = 1 +id[6013] = "2953-11-17T13:21:01" +ik[6013] = -1 +il[6013] = -169 +im[6013] = 0.2 +ij[6013] = 2 +id[6014] = "2953-11-18T14:51:01" +ik[6014] = 0 +il[6014] = -179 +im[6014] = 0.22 +ij[6014] = 1 +id[6015] = "2954-03-04T16:47:02" +ik[6015] = 0 +il[6015] = -3 +im[6015] = 0.2139 +ij[6015] = 1 +id[6016] = "2954-03-07T01:50:02" +ik[6016] = 1 +il[6016] = -20 +im[6016] = 0.1426 +ij[6016] = 2 +id[6017] = "2954-07-05T18:38:03" +ik[6017] = -1 +il[6017] = 84 +im[6017] = 0.1061 +ij[6017] = 2 +id[6018] = "2954-07-06T23:30:03" +ik[6018] = 0 +il[6018] = 76 +im[6018] = 0.0496 +ij[6018] = 1 +id[6019] = "2954-11-01T03:16:01" +ik[6019] = -1 +il[6019] = -165 +im[6019] = 0.0573 +ij[6019] = 2 +id[6020] = "2954-11-02T17:30:01" +ik[6020] = 0 +il[6020] = -178 +im[6020] = 0.0359 +ij[6020] = 1 +id[6021] = "2955-02-16T07:25:02" +ik[6021] = 0 +il[6021] = 0 +im[6021] = 0.1097 +ij[6021] = 1 +id[6022] = "2955-02-18T02:33:02" +ik[6022] = 1 +il[6022] = -13 +im[6022] = 0.1827 +ij[6022] = 2 +id[6023] = "2955-06-16T19:11:03" +ik[6023] = 0 +il[6023] = 100 +im[6023] = 0.2479 +ij[6023] = 1 +id[6024] = "2955-06-17T06:09:03" +ik[6024] = 1 +il[6024] = 97 +im[6024] = 0.2583 +ij[6024] = 2 +id[6025] = "2955-10-15T10:28:01" +ik[6025] = -1 +il[6025] = -160 +im[6025] = 0.2359 +ij[6025] = 2 +id[6026] = "2955-10-17T14:08:01" +ik[6026] = 0 +il[6026] = -176 +im[6026] = 0.2033 +ij[6026] = 1 +id[6027] = "2956-01-31T05:59:02" +ik[6027] = 0 +il[6027] = 2 +im[6027] = 0.1232 +ij[6027] = 1 +id[6028] = "2956-02-01T11:26:02" +ik[6028] = 1 +il[6028] = -7 +im[6028] = 0.0666 +ij[6028] = 2 +id[6029] = "2956-05-26T20:51:03" +ik[6029] = 0 +il[6029] = 122 +im[6029] = 0.2277 +ij[6029] = 1 +id[6030] = "2956-05-28T19:07:03" +ik[6030] = 1 +il[6030] = 109 +im[6030] = 0.1374 +ij[6030] = 2 +id[6031] = "2956-09-27T08:33:01" +ik[6031] = -1 +il[6031] = -152 +im[6031] = 0.0695 +ij[6031] = 2 +id[6032] = "2956-09-30T01:39:01" +ik[6032] = 0 +il[6032] = -171 +im[6032] = 0.194 +ij[6032] = 1 +id[6033] = "2957-01-14T09:49:02" +ik[6033] = 0 +il[6033] = 2 +im[6033] = 0.2148 +ij[6033] = 1 +id[6034] = "2957-01-15T02:33:02" +ik[6034] = 1 +il[6034] = -3 +im[6034] = 0.2127 +ij[6034] = 2 +id[6035] = "2957-05-07T12:56:03" +ik[6035] = 0 +il[6035] = 141 +im[6035] = 0.1217 +ij[6035] = 1 +id[6036] = "2957-05-10T10:14:03" +ik[6036] = 1 +il[6036] = 121 +im[6036] = 0.2473 +ij[6036] = 2 +id[6037] = "2957-09-09T20:04:01" +ik[6037] = -1 +il[6037] = -142 +im[6037] = 0.2308 +ij[6037] = 2 +id[6038] = "2957-09-13T00:27:01" +ik[6038] = 0 +il[6038] = -164 +im[6038] = 0.1175 +ij[6038] = 1 +id[6039] = "2957-12-29T16:47:02" +ik[6039] = 0 +il[6039] = 1 +im[6039] = 0.0726 +ij[6039] = 1 +id[6040] = "2957-12-29T21:45:02" +ik[6040] = 1 +il[6040] = 1 +im[6040] = 0.0831 +ij[6040] = 2 +id[6041] = "2958-04-18T23:30:03" +ik[6041] = 0 +il[6041] = 156 +im[6041] = 0.2416 +ij[6041] = 1 +id[6042] = "2958-04-22T05:26:03" +ik[6042] = 1 +il[6042] = 134 +im[6042] = 0.1277 +ij[6042] = 2 +id[6043] = "2958-08-22T21:31:01" +ik[6043] = -1 +il[6043] = -130 +im[6043] = 0.089 +ij[6043] = 2 +id[6044] = "2958-08-26T06:27:01" +ik[6044] = 0 +il[6044] = -153 +im[6044] = 0.2275 +ij[6044] = 1 +id[6045] = "2958-12-13T18:23:02" +ik[6045] = -1 +il[6045] = 5 +im[6045] = 0.149 +ij[6045] = 2 +id[6046] = "2958-12-14T01:11:02" +ik[6046] = 0 +il[6046] = 1 +im[6046] = 0.1375 +ij[6046] = 1 +id[6047] = "2959-04-01T03:49:03" +ik[6047] = 0 +il[6047] = 167 +im[6047] = 0.0869 +ij[6047] = 1 +id[6048] = "2959-04-04T06:52:03" +ik[6048] = 1 +il[6048] = 145 +im[6048] = 0.2227 +ij[6048] = 2 +id[6049] = "2959-08-04T14:33:01" +ik[6049] = -1 +il[6049] = -117 +im[6049] = 0.2377 +ij[6049] = 2 +id[6050] = "2959-08-07T15:49:01" +ik[6050] = 0 +il[6050] = -138 +im[6050] = 0.1251 +ij[6050] = 1 +id[6051] = "2959-11-27T14:19:02" +ik[6051] = -1 +il[6051] = 9 +im[6051] = 0.209 +ij[6051] = 2 +id[6052] = "2959-11-28T08:51:02" +ik[6052] = 0 +il[6052] = 0 +im[6052] = 0.2157 +ij[6052] = 1 +id[6053] = "2960-03-13T00:13:03" +ik[6053] = 0 +il[6053] = -178 +im[6053] = 0.214 +ij[6053] = 1 +id[6054] = "2960-03-16T16:43:03" +ik[6054] = 1 +il[6054] = 155 +im[6054] = 0.0751 +ij[6054] = 2 +id[6055] = "2960-07-16T02:47:01" +ik[6055] = -1 +il[6055] = -103 +im[6055] = 0.0366 +ij[6055] = 2 +id[6056] = "2960-07-18T04:18:01" +ik[6056] = 0 +il[6056] = -117 +im[6056] = 0.1504 +ij[6056] = 1 +id[6057] = "2960-11-10T07:07:02" +ik[6057] = -1 +il[6057] = 13 +im[6057] = 0.0142 +ij[6057] = 2 +id[6058] = "2960-11-11T13:54:02" +ik[6058] = 0 +il[6058] = 1 +im[6058] = 0.0597 +ij[6058] = 1 +id[6059] = "2961-02-25T08:51:03" +ik[6059] = 0 +il[6059] = 179 +im[6059] = 0.1506 +ij[6059] = 1 +id[6060] = "2961-02-27T11:55:03" +ik[6060] = 1 +il[6060] = 163 +im[6060] = 0.2156 +ij[6060] = 2 +id[6061] = "2961-06-27T13:50:01" +ik[6061] = -1 +il[6061] = -91 +im[6061] = 0.2579 +ij[6061] = 2 +id[6062] = "2961-06-28T02:08:01" +ik[6062] = 0 +il[6062] = -94 +im[6062] = 0.2513 +ij[6062] = 1 +id[6063] = "2961-10-24T18:23:02" +ik[6063] = -1 +il[6063] = 17 +im[6063] = 0.2203 +ij[6063] = 2 +id[6064] = "2961-10-26T14:23:02" +ik[6064] = 0 +il[6064] = 3 +im[6064] = 0.1674 +ij[6064] = 1 +id[6065] = "2962-02-09T03:20:03" +ik[6065] = 0 +il[6065] = -179 +im[6065] = 0.07 +ij[6065] = 1 +id[6066] = "2962-02-10T16:28:03" +ik[6066] = 1 +il[6066] = 170 +im[6066] = 0.0138 +ij[6066] = 2 +id[6067] = "2962-06-07T23:01:01" +ik[6067] = 0 +il[6067] = -71 +im[6067] = 0.087 +ij[6067] = 1 +id[6068] = "2962-06-09T02:04:01" +ik[6068] = 1 +il[6068] = -78 +im[6068] = 0.0168 +ij[6068] = 2 +id[6069] = "2962-10-07T21:45:02" +ik[6069] = -1 +il[6069] = 23 +im[6069] = 0.1295 +ij[6069] = 2 +id[6070] = "2962-10-10T07:25:02" +ik[6070] = 0 +il[6070] = 6 +im[6070] = 0.2121 +ij[6070] = 1 +id[6071] = "2963-01-24T04:18:03" +ik[6071] = 0 +il[6071] = -178 +im[6071] = 0.2106 +ij[6071] = 1 +id[6072] = "2963-01-25T04:14:03" +ik[6072] = 1 +il[6072] = 174 +im[6072] = 0.1992 +ij[6072] = 2 +id[6073] = "2963-05-19T05:59:01" +ik[6073] = 0 +il[6073] = -49 +im[6073] = 0.2296 +ij[6073] = 1 +id[6074] = "2963-05-21T15:45:01" +ik[6074] = 1 +il[6074] = -66 +im[6074] = 0.268 +ij[6074] = 2 +id[6075] = "2963-09-20T15:31:02" +ik[6075] = -1 +il[6075] = 32 +im[6075] = 0.1948 +ij[6075] = 2 +id[6076] = "2963-09-23T13:54:02" +ik[6076] = 0 +il[6076] = 11 +im[6076] = 0.0522 +ij[6076] = 1 +id[6077] = "2964-01-08T09:49:03" +ik[6077] = 0 +il[6077] = -178 +im[6077] = 0.1005 +ij[6077] = 1 +id[6078] = "2964-01-08T21:31:03" +ik[6078] = 1 +il[6078] = 178 +im[6078] = 0.1229 +ij[6078] = 2 +id[6079] = "2964-04-29T05:44:01" +ik[6079] = 0 +il[6079] = -32 +im[6079] = 0.2043 +ij[6079] = 1 +id[6080] = "2964-05-02T08:33:01" +ik[6080] = 1 +il[6080] = -53 +im[6080] = 0.0357 +ij[6080] = 2 +id[6081] = "2964-09-01T22:43:02" +ik[6081] = -1 +il[6081] = 43 +im[6081] = 0.1854 +ij[6081] = 2 +id[6082] = "2964-09-05T06:13:02" +ik[6082] = 0 +il[6082] = 20 +im[6082] = 0.2489 +ij[6082] = 1 +id[6083] = "2964-12-22T17:26:03" +ik[6083] = -1 +il[6083] = -178 +im[6083] = 0.0981 +ij[6083] = 2 +id[6084] = "2964-12-22T17:44:03" +ik[6084] = 0 +il[6084] = -179 +im[6084] = 0.0975 +ij[6084] = 1 +id[6085] = "2965-04-10T23:59:01" +ik[6085] = 0 +il[6085] = -19 +im[6085] = 0.1789 +ij[6085] = 1 +id[6086] = "2965-04-14T05:55:01" +ik[6086] = 1 +il[6086] = -41 +im[6086] = 0.2603 +ij[6086] = 2 +id[6087] = "2965-08-14T20:04:02" +ik[6087] = -1 +il[6087] = 56 +im[6087] = 0.1911 +ij[6087] = 2 +id[6088] = "2965-08-18T03:49:02" +ik[6088] = 0 +il[6088] = 33 +im[6088] = 0.0128 +ij[6088] = 1 +id[6089] = "2965-12-06T14:04:03" +ik[6089] = -1 +il[6089] = -174 +im[6089] = 0.2085 +ij[6089] = 2 +id[6090] = "2965-12-07T01:54:03" +ik[6090] = 0 +il[6090] = -179 +im[6090] = 0.2095 +ij[6090] = 1 +id[6091] = "2966-03-24T11:30:01" +ik[6091] = 0 +il[6091] = -9 +im[6091] = 0.1642 +ij[6091] = 1 +id[6092] = "2966-03-27T10:43:01" +ik[6092] = 1 +il[6092] = -31 +im[6092] = 0.0195 +ij[6092] = 2 +id[6093] = "2966-07-27T10:43:02" +ik[6093] = -1 +il[6093] = 69 +im[6093] = 0.1646 +ij[6093] = 2 +id[6094] = "2966-07-30T04:03:02" +ik[6094] = 0 +il[6094] = 50 +im[6094] = 0.2539 +ij[6094] = 1 +id[6095] = "2966-11-20T09:02:03" +ik[6095] = -1 +il[6095] = -170 +im[6095] = 0.0423 +ij[6095] = 2 +id[6096] = "2966-11-21T08:37:03" +ik[6096] = 0 +il[6096] = -179 +im[6096] = 0.0893 +ij[6096] = 1 +id[6097] = "2967-03-07T13:39:01" +ik[6097] = 0 +il[6097] = -3 +im[6097] = 0.2032 +ij[6097] = 1 +id[6098] = "2967-03-10T00:38:01" +ik[6098] = 1 +il[6098] = -21 +im[6098] = 0.2392 +ij[6098] = 2 +id[6099] = "2967-07-08T22:14:02" +ik[6099] = -1 +il[6099] = 82 +im[6099] = 0.2111 +ij[6099] = 2 +id[6100] = "2967-07-10T08:51:02" +ik[6100] = 0 +il[6100] = 72 +im[6100] = 0.1455 +ij[6100] = 1 +id[6101] = "2967-11-03T23:40:03" +ik[6101] = -1 +il[6101] = -166 +im[6101] = 0.1801 +ij[6101] = 2 +id[6102] = "2967-11-05T12:13:03" +ik[6102] = 0 +il[6102] = -179 +im[6102] = 0.1209 +ij[6102] = 1 +id[6103] = "2968-02-19T02:51:01" +ik[6103] = 0 +il[6103] = 0 +im[6103] = 0.0308 +ij[6103] = 1 +id[6104] = "2968-02-20T23:55:01" +ik[6104] = 1 +il[6104] = -14 +im[6104] = 0.0882 +ij[6104] = 2 +id[6105] = "2968-06-19T04:32:02" +ik[6105] = 0 +il[6105] = 96 +im[6105] = 0.1017 +ij[6105] = 1 +id[6106] = "2968-06-19T09:31:02" +ik[6106] = 1 +il[6106] = 95 +im[6106] = 0.1135 +ij[6106] = 2 +id[6107] = "2968-10-17T08:04:03" +ik[6107] = -1 +il[6107] = -161 +im[6107] = 0.1665 +ij[6107] = 2 +id[6108] = "2968-10-19T09:35:03" +ik[6108] = 0 +il[6108] = -176 +im[6108] = 0.2134 +ij[6108] = 1 +id[6109] = "2969-02-01T00:13:01" +ik[6109] = 0 +il[6109] = 9 +im[6109] = 0.2134 +ij[6109] = 1 +id[6110] = "2969-02-03T07:50:01" +ik[6110] = 1 +il[6110] = -8 +im[6110] = 0.187 +ij[6110] = 2 +id[6111] = "2969-05-30T04:32:02" +ik[6111] = 0 +il[6111] = 119 +im[6111] = 0.26 +ij[6111] = 1 +id[6112] = "2969-05-31T22:14:02" +ik[6112] = 1 +il[6112] = 107 +im[6112] = 0.2301 +ij[6112] = 2 +id[6113] = "2969-09-30T07:35:03" +ik[6113] = -1 +il[6113] = -153 +im[6113] = 0.1337 +ij[6113] = 2 +id[6114] = "2969-10-02T22:47:03" +ik[6114] = 0 +il[6114] = -172 +im[6114] = 0.0336 +ij[6114] = 1 +id[6115] = "2970-01-17T03:35:01" +ik[6115] = 0 +il[6115] = 2 +im[6115] = 0.1409 +ij[6115] = 1 +id[6116] = "2970-01-17T21:59:01" +ik[6116] = 1 +il[6116] = -4 +im[6116] = 0.1703 +ij[6116] = 2 +id[6117] = "2970-05-10T18:13:02" +ik[6117] = 0 +il[6117] = 139 +im[6117] = 0.0974 +ij[6117] = 1 +id[6118] = "2970-05-13T13:07:02" +ik[6118] = 1 +il[6118] = 120 +im[6118] = 0.0766 +ij[6118] = 2 +id[6119] = "2970-09-12T20:47:03" +ik[6119] = -1 +il[6119] = -143 +im[6119] = 0.2269 +ij[6119] = 2 +id[6120] = "2970-09-15T23:44:03" +ik[6120] = 0 +il[6120] = -165 +im[6120] = 0.2188 +ij[6120] = 1 +id[6121] = "2971-01-01T10:18:01" +ik[6121] = 0 +il[6121] = 1 +im[6121] = 0.0632 +ij[6121] = 1 +id[6122] = "2971-01-01T16:43:01" +ik[6122] = 1 +il[6122] = 0 +im[6122] = 0.05 +ij[6122] = 2 +id[6123] = "2971-04-22T01:54:02" +ik[6123] = 0 +il[6123] = 154 +im[6123] = 0.2399 +ij[6123] = 1 +id[6124] = "2971-04-25T07:35:02" +ik[6124] = 1 +il[6124] = 132 +im[6124] = 0.2388 +ij[6124] = 2 +id[6125] = "2971-08-25T23:40:03" +ik[6125] = -1 +il[6125] = -132 +im[6125] = 0.1163 +ij[6125] = 2 +id[6126] = "2971-08-29T08:23:03" +ik[6126] = 0 +il[6126] = -155 +im[6126] = 0.0978 +ij[6126] = 1 +id[6127] = "2971-12-16T13:21:01" +ik[6127] = -1 +il[6127] = 4 +im[6127] = 0.2102 +ij[6127] = 2 +id[6128] = "2971-12-16T18:27:01" +ik[6128] = 0 +il[6128] = 1 +im[6128] = 0.2093 +ij[6128] = 1 +id[6129] = "2972-04-03T03:49:02" +ik[6129] = 0 +il[6129] = 166 +im[6129] = 0.1147 +ij[6129] = 1 +id[6130] = "2972-04-06T07:50:02" +ik[6130] = 1 +il[6130] = 143 +im[6130] = 0.0836 +ij[6130] = 2 +id[6131] = "2972-08-06T17:40:03" +ik[6131] = -1 +il[6131] = -119 +im[6131] = 0.2446 +ij[6131] = 2 +id[6132] = "2972-08-09T21:06:03" +ik[6132] = 0 +il[6132] = -140 +im[6132] = 0.2513 +ij[6132] = 1 +id[6133] = "2972-11-29T09:31:01" +ik[6133] = -1 +il[6133] = 8 +im[6133] = 0.0948 +ij[6133] = 2 +id[6134] = "2972-11-30T02:23:01" +ik[6134] = 0 +il[6134] = 1 +im[6134] = 0.1268 +ij[6134] = 1 +id[6135] = "2973-03-16T21:49:02" +ik[6135] = 0 +il[6135] = 174 +im[6135] = 0.2382 +ij[6135] = 1 +id[6136] = "2973-03-19T16:14:02" +ik[6136] = 1 +il[6136] = 154 +im[6136] = 0.2289 +ij[6136] = 2 +id[6137] = "2973-07-19T06:23:03" +ik[6137] = -1 +il[6137] = -105 +im[6137] = 0.1362 +ij[6137] = 2 +id[6138] = "2973-07-21T12:27:03" +ik[6138] = 0 +il[6138] = -121 +im[6138] = 0.0428 +ij[6138] = 1 +id[6139] = "2973-11-13T03:02:01" +ik[6139] = -1 +il[6139] = 12 +im[6139] = 0.1338 +ij[6139] = 2 +id[6140] = "2973-11-14T07:54:01" +ik[6140] = 0 +il[6140] = 1 +im[6140] = 0.0771 +ij[6140] = 1 +id[6141] = "2974-02-28T05:01:02" +ik[6141] = 0 +il[6141] = 178 +im[6141] = 0.0297 +ij[6141] = 1 +id[6142] = "2974-03-02T10:14:02" +ik[6142] = 1 +il[6142] = 162 +im[6142] = 0.144 +ij[6142] = 2 +id[6143] = "2974-06-30T17:26:03" +ik[6143] = -1 +il[6143] = -92 +im[6143] = 0.2215 +ij[6143] = 2 +id[6144] = "2974-07-01T11:44:03" +ik[6144] = 0 +il[6144] = -98 +im[6144] = 0.2456 +ij[6144] = 1 +id[6145] = "2974-10-27T15:16:01" +ik[6145] = -1 +il[6145] = 16 +im[6145] = 0.1899 +ij[6145] = 2 +id[6146] = "2974-10-29T09:06:01" +ik[6146] = 0 +il[6146] = 2 +im[6146] = 0.2134 +ij[6146] = 1 +id[6147] = "2975-02-11T22:18:02" +ik[6147] = 0 +il[6147] = -179 +im[6147] = 0.2133 +ij[6147] = 1 +id[6148] = "2975-02-13T13:21:02" +ik[6148] = 1 +il[6148] = 169 +im[6148] = 0.1667 +ij[6148] = 2 +id[6149] = "2975-06-11T07:54:03" +ik[6149] = 0 +il[6149] = -74 +im[6149] = 0.1956 +ij[6149] = 1 +id[6150] = "2975-06-12T05:26:03" +ik[6150] = 1 +il[6150] = -80 +im[6150] = 0.1538 +ij[6150] = 2 +id[6151] = "2975-10-10T20:04:01" +ik[6151] = -1 +il[6151] = 22 +im[6151] = 0.047 +ij[6151] = 2 +id[6152] = "2975-10-13T03:35:01" +ik[6152] = 0 +il[6152] = 5 +im[6152] = 0.0759 +ij[6152] = 1 +id[6153] = "2976-01-26T22:18:02" +ik[6153] = 0 +il[6153] = -178 +im[6153] = 0.1779 +ij[6153] = 1 +id[6154] = "2976-01-27T00:09:02" +ik[6154] = 1 +il[6154] = -179 +im[6154] = 0.1806 +ij[6154] = 2 +id[6155] = "2976-05-21T12:56:03" +ik[6155] = 0 +il[6155] = -52 +im[6155] = 0.0665 +ij[6155] = 1 +id[6156] = "2976-05-23T18:52:03" +ik[6156] = 1 +il[6156] = -68 +im[6156] = 0.184 +ij[6156] = 2 +id[6157] = "2976-09-22T15:16:01" +ik[6157] = -1 +il[6157] = 31 +im[6157] = 0.2275 +ij[6157] = 2 +id[6158] = "2976-09-25T11:59:01" +ik[6158] = 0 +il[6158] = 10 +im[6158] = 0.1652 +ij[6158] = 1 +id[6159] = "2977-01-10T03:20:02" +ik[6159] = 0 +il[6159] = -178 +im[6159] = 0.0421 +ij[6159] = 1 +id[6160] = "2977-01-10T16:43:02" +ik[6160] = 1 +il[6160] = -175 +im[6160] = 0.017 +ij[6160] = 2 +id[6161] = "2977-05-02T09:49:03" +ik[6161] = 0 +il[6161] = -34 +im[6161] = 0.25 +ij[6161] = 1 +id[6162] = "2977-05-05T10:57:03" +ik[6162] = 1 +il[6162] = -55 +im[6162] = 0.1664 +ij[6162] = 2 +id[6163] = "2977-09-04T00:09:01" +ik[6163] = -1 +il[6163] = 48 +im[6163] = 0.0715 +ij[6163] = 2 +id[6164] = "2977-09-08T06:27:01" +ik[6164] = 0 +il[6164] = 18 +im[6164] = 0.1605 +ij[6164] = 1 +id[6165] = "2977-12-25T11:01:02" +ik[6165] = 0 +il[6165] = -179 +im[6165] = 0.2139 +ij[6165] = 1 +id[6166] = "2977-12-25T12:38:02" +ik[6166] = 1 +il[6166] = -171 +im[6166] = 0.2132 +ij[6166] = 2 +id[6167] = "2978-04-14T01:25:03" +ik[6167] = 0 +il[6167] = -20 +im[6167] = 0.0259 +ij[6167] = 1 +id[6168] = "2978-04-17T07:35:03" +ik[6168] = 1 +il[6168] = -43 +im[6168] = 0.1617 +ij[6168] = 2 +id[6169] = "2978-08-17T22:43:01" +ik[6169] = -1 +il[6169] = 54 +im[6169] = 0.2547 +ij[6169] = 2 +id[6170] = "2978-08-21T07:11:01" +ik[6170] = 0 +il[6170] = 31 +im[6170] = 0.1679 +ij[6170] = 1 +id[6171] = "2978-12-09T09:16:02" +ik[6171] = -1 +il[6171] = -167 +im[6171] = 0.1457 +ij[6171] = 2 +id[6172] = "2978-12-09T19:11:02" +ik[6172] = 0 +il[6172] = -179 +im[6172] = 0.1619 +ij[6172] = 1 +id[6173] = "2979-03-27T10:32:03" +ik[6173] = 0 +il[6173] = -10 +im[6173] = 0.2438 +ij[6173] = 1 +id[6174] = "2979-03-30T11:11:03" +ik[6174] = 1 +il[6174] = -32 +im[6174] = 0.1683 +ij[6174] = 2 +id[6175] = "2979-07-30T14:04:01" +ik[6175] = -1 +il[6175] = 67 +im[6175] = 0.0246 +ij[6175] = 2 +id[6176] = "2979-08-02T10:32:01" +ik[6176] = 0 +il[6176] = 48 +im[6176] = 0.1499 +ij[6176] = 1 +id[6177] = "2979-11-23T04:28:02" +ik[6177] = -1 +il[6177] = -163 +im[6177] = 0.0953 +ij[6177] = 2 +id[6178] = "2979-11-24T02:23:02" +ik[6178] = 0 +il[6178] = -179 +im[6178] = 0.047 +ij[6178] = 1 +id[6179] = "2980-03-09T10:32:03" +ik[6179] = 0 +il[6179] = -4 +im[6179] = 0.067 +ij[6179] = 1 +id[6180] = "2980-03-11T23:40:03" +ik[6180] = 1 +il[6180] = -22 +im[6180] = 0.1903 +ij[6180] = 2 +id[6181] = "2980-07-11T01:50:01" +ik[6181] = -1 +il[6181] = 80 +im[6181] = 0.275 +ij[6181] = 2 +id[6182] = "2980-07-12T17:59:01" +ik[6182] = 0 +il[6182] = 69 +im[6182] = 0.2683 +ij[6182] = 1 +id[6183] = "2980-11-05T20:04:02" +ik[6183] = -1 +il[6183] = -159 +im[6183] = 0.2128 +ij[6183] = 2 +id[6184] = "2980-11-07T06:27:02" +ik[6184] = 0 +il[6184] = -179 +im[6184] = 0.2168 +ij[6184] = 1 +id[6185] = "2981-02-20T22:18:03" +ik[6185] = 0 +il[6185] = 0 +im[6185] = 0.1997 +ij[6185] = 1 +id[6186] = "2981-02-22T21:30:03" +ik[6186] = 1 +il[6186] = -15 +im[6186] = 0.121 +ij[6186] = 2 +id[6187] = "2981-06-22T13:06:01" +ik[6187] = -1 +il[6187] = 93 +im[6187] = 0.0485 +ij[6187] = 2 +id[6188] = "2981-06-22T14:08:01" +ik[6188] = 0 +il[6188] = 93 +im[6188] = 0.0456 +ij[6188] = 1 +id[6189] = "2981-10-20T05:26:02" +ik[6189] = -1 +il[6189] = -155 +im[6189] = 0.0374 +ij[6189] = 2 +id[6190] = "2981-10-22T05:01:02" +ik[6190] = 0 +il[6190] = -177 +im[6190] = 0.1347 +ij[6190] = 1 +id[6191] = "2982-02-04T18:56:03" +ik[6191] = 0 +il[6191] = 1 +im[6191] = 0.2038 +ij[6191] = 1 +id[6192] = "2982-02-06T04:14:03" +ik[6192] = 1 +il[6192] = -9 +im[6192] = 0.2285 +ij[6192] = 2 +id[6193] = "2982-06-02T12:42:01" +ik[6193] = 0 +il[6193] = 116 +im[6193] = 0.2132 +ij[6193] = 1 +id[6194] = "2982-06-04T01:35:01" +ik[6194] = 1 +il[6194] = 105 +im[6194] = 0.2595 +ij[6194] = 2 +id[6195] = "2982-10-03T06:23:02" +ik[6195] = -1 +il[6195] = -151 +im[6195] = 0.2083 +ij[6195] = 2 +id[6196] = "2982-10-05T19:39:02" +ik[6196] = 0 +il[6196] = -173 +im[6196] = 0.1171 +ij[6196] = 1 +id[6197] = "2983-01-19T21:20:03" +ik[6197] = 0 +il[6197] = 2 +im[6197] = 0.0221 +ij[6197] = 1 +id[6198] = "2983-01-20T17:40:03" +ik[6198] = 1 +il[6198] = -4 +im[6198] = 0.0295 +ij[6198] = 2 +id[6199] = "2983-05-13T23:59:01" +ik[6199] = 0 +il[6199] = 136 +im[6199] = 0.1994 +ij[6199] = 1 +id[6200] = "2983-05-16T15:59:01" +ik[6200] = 1 +il[6200] = 118 +im[6200] = 0.0633 +ij[6200] = 2 +id[6201] = "2983-09-15T21:16:02" +ik[6201] = -1 +il[6201] = -145 +im[6201] = 0.0878 +ij[6201] = 2 +id[6202] = "2983-09-18T22:32:02" +ik[6202] = 0 +il[6202] = -167 +im[6202] = 0.2066 +ij[6202] = 1 +id[6203] = "2984-01-04T03:35:03" +ik[6203] = 0 +il[6203] = 2 +im[6203] = 0.2125 +ij[6203] = 1 +id[6204] = "2984-01-04T11:54:03" +ik[6204] = 1 +il[6204] = 0 +im[6204] = 0.2053 +ij[6204] = 2 +id[6205] = "2984-04-24T05:01:01" +ik[6205] = 0 +il[6205] = 152 +im[6205] = 0.0945 +ij[6205] = 1 +id[6206] = "2984-04-27T09:45:01" +ik[6206] = 1 +il[6206] = 130 +im[6206] = 0.2292 +ij[6206] = 2 +id[6207] = "2984-08-28T01:35:02" +ik[6207] = -1 +il[6207] = -133 +im[6207] = 0.2061 +ij[6207] = 2 +id[6208] = "2984-08-31T10:03:02" +ik[6208] = 0 +il[6208] = -157 +im[6208] = 0.0561 +ij[6208] = 1 +id[6209] = "2984-12-18T08:33:03" +ik[6209] = -1 +il[6209] = 4 +im[6209] = 0.1844 +ij[6209] = 2 +id[6210] = "2984-12-18T11:44:03" +ik[6210] = 0 +il[6210] = 1 +im[6210] = 0.1886 +ij[6210] = 1 +id[6211] = "2985-04-06T04:03:01" +ik[6211] = 0 +il[6211] = 164 +im[6211] = 0.2116 +ij[6211] = 1 +id[6212] = "2985-04-09T09:02:01" +ik[6212] = 1 +il[6212] = 142 +im[6212] = 0.0762 +ij[6212] = 2 +id[6213] = "2985-08-09T20:33:02" +ik[6213] = -1 +il[6213] = -121 +im[6213] = 0.089 +ij[6213] = 2 +id[6214] = "2985-08-13T01:54:02" +ik[6214] = 0 +il[6214] = -143 +im[6214] = 0.2229 +ij[6214] = 1 +id[6215] = "2985-12-02T04:57:03" +ik[6215] = -1 +il[6215] = 8 +im[6215] = 0.0665 +ij[6215] = 2 +id[6216] = "2985-12-02T19:54:03" +ik[6216] = 0 +il[6216] = 1 +im[6216] = 0.0325 +ij[6216] = 1 +id[6217] = "2986-03-19T20:08:01" +ik[6217] = 0 +il[6217] = 173 +im[6217] = 0.1195 +ij[6217] = 1 +id[6218] = "2986-03-22T16:14:01" +ik[6218] = 1 +il[6218] = 152 +im[6218] = 0.2198 +ij[6218] = 2 +id[6219] = "2986-07-22T09:59:02" +ik[6219] = -1 +il[6219] = -107 +im[6219] = 0.2509 +ij[6219] = 2 +id[6220] = "2986-07-24T20:08:02" +ik[6220] = 0 +il[6220] = -124 +im[6220] = 0.1626 +ij[6220] = 1 +id[6221] = "2986-11-15T22:57:03" +ik[6221] = -1 +il[6221] = 12 +im[6221] = 0.2264 +ij[6221] = 2 +id[6222] = "2986-11-17T01:54:03" +ik[6222] = 0 +il[6222] = 1 +im[6222] = 0.2173 +ij[6222] = 1 +id[6223] = "2987-03-03T01:25:01" +ik[6223] = 0 +il[6223] = 178 +im[6223] = 0.1601 +ij[6223] = 1 +id[6224] = "2987-03-05T08:33:01" +ik[6224] = 1 +il[6224] = 161 +im[6224] = 0.0548 +ij[6224] = 2 +id[6225] = "2987-07-03T21:02:02" +ik[6225] = -1 +il[6225] = -94 +im[6225] = 0.0684 +ij[6225] = 2 +id[6226] = "2987-07-04T21:20:02" +ik[6226] = 0 +il[6226] = -101 +im[6226] = 0.1305 +ij[6226] = 1 +id[6227] = "2987-10-30T11:54:03" +ik[6227] = -1 +il[6227] = 16 +im[6227] = 0.1034 +ij[6227] = 2 +id[6228] = "2987-11-01T04:03:03" +ik[6228] = 0 +il[6228] = 2 +im[6228] = 0.1747 +ij[6228] = 1 +id[6229] = "2988-02-14T17:15:01" +ik[6229] = 0 +il[6229] = -179 +im[6229] = 0.2149 +ij[6229] = 1 +id[6230] = "2988-02-16T10:28:01" +ik[6230] = 1 +il[6230] = 168 +im[6230] = 0.2219 +ij[6230] = 2 +id[6231] = "2988-06-13T17:01:02" +ik[6231] = 0 +il[6231] = -77 +im[6231] = 0.2817 +ij[6231] = 1 +id[6232] = "2988-06-14T08:47:02" +ik[6232] = 1 +il[6232] = -82 +im[6232] = 0.2779 +ij[6232] = 2 +id[6233] = "2988-10-12T17:54:03" +ik[6233] = -1 +il[6233] = 21 +im[6233] = 0.1833 +ij[6233] = 2 +id[6234] = "2988-10-14T23:30:03" +ik[6234] = 0 +il[6234] = 5 +im[6234] = 0.0836 +ij[6234] = 1 +id[6235] = "2989-01-28T16:32:01" +ik[6235] = 0 +il[6235] = -178 +im[6235] = 0.0262 +ij[6235] = 1 +id[6236] = "2989-01-29T20:18:01" +ik[6236] = 1 +il[6236] = 173 +im[6236] = 0.0721 +ij[6236] = 2 +id[6237] = "2989-05-24T19:54:02" +ik[6237] = 0 +il[6237] = -55 +im[6237] = 0.0866 +ij[6237] = 1 +id[6238] = "2989-05-26T21:59:02" +ik[6238] = 1 +il[6238] = -69 +im[6238] = 0.0524 +ij[6238] = 2 +id[6239] = "2989-09-25T14:47:03" +ik[6239] = -1 +il[6239] = 29 +im[6239] = 0.1691 +ij[6239] = 2 +id[6240] = "2989-09-28T09:35:03" +ik[6240] = 0 +il[6240] = 9 +im[6240] = 0.2329 +ij[6240] = 1 +id[6241] = "2990-01-12T20:51:01" +ik[6241] = 0 +il[6241] = -178 +im[6241] = 0.1968 +ij[6241] = 1 +id[6242] = "2990-01-13T12:09:01" +ik[6242] = 1 +il[6242] = 177 +im[6242] = 0.1773 +ij[6242] = 2 +id[6243] = "2990-05-05T14:23:02" +ik[6243] = 0 +il[6243] = -37 +im[6243] = 0.204 +ij[6243] = 1 +id[6244] = "2990-05-08T13:35:02" +ik[6244] = 1 +il[6244] = -57 +im[6244] = 0.2642 +ij[6244] = 2 +id[6245] = "2990-09-08T01:06:03" +ik[6245] = -1 +il[6245] = 40 +im[6245] = 0.1387 +ij[6245] = 2 +id[6246] = "2990-09-11T06:27:03" +ik[6246] = 0 +il[6246] = 17 +im[6246] = 0.0556 +ij[6246] = 1 +id[6247] = "2990-12-28T04:18:01" +ik[6247] = 0 +il[6247] = -179 +im[6247] = 0.1983 +ij[6247] = 1 +id[6248] = "2990-12-28T07:35:01" +ik[6248] = 1 +il[6248] = -179 +im[6248] = 0.2014 +ij[6248] = 2 +id[6249] = "2991-04-17T03:20:02" +ik[6249] = 0 +il[6249] = -22 +im[6249] = 0.1472 +ij[6249] = 1 +id[6250] = "2991-04-20T09:30:02" +ik[6250] = 1 +il[6250] = -45 +im[6250] = 0.0393 +ij[6250] = 2 +id[6251] = "2991-08-21T01:21:03" +ik[6251] = -1 +il[6251] = 52 +im[6251] = 0.175 +ij[6251] = 2 +id[6252] = "2991-08-24T10:03:03" +ik[6252] = 0 +il[6252] = 29 +im[6252] = 0.237 +ij[6252] = 1 +id[6253] = "2991-12-12T04:14:01" +ik[6253] = -1 +il[6253] = -175 +im[6253] = 0.0385 +ij[6253] = 2 +id[6254] = "2991-12-12T12:42:01" +ik[6254] = 0 +il[6254] = -179 +im[6254] = 0.0235 +ij[6254] = 1 +id[6255] = "2992-03-29T09:49:02" +ik[6255] = 0 +il[6255] = -12 +im[6255] = 0.1731 +ij[6255] = 1 +id[6256] = "2992-04-01T11:54:02" +ik[6256] = 1 +il[6256] = -34 +im[6256] = 0.2352 +ij[6256] = 2 +id[6257] = "2992-08-01T17:26:03" +ik[6257] = -1 +il[6257] = 65 +im[6257] = 0.168 +ij[6257] = 2 +id[6258] = "2992-08-04T16:47:03" +ik[6258] = 0 +il[6258] = 45 +im[6258] = 0.0421 +ij[6258] = 1 +id[6259] = "2992-11-24T23:54:01" +ik[6259] = -1 +il[6259] = -171 +im[6259] = 0.2203 +ij[6259] = 2 +id[6260] = "2992-11-25T20:08:01" +ik[6260] = 0 +il[6260] = -179 +im[6260] = 0.2031 +ij[6260] = 1 +id[6261] = "2993-03-12T07:54:02" +ik[6261] = 0 +il[6261] = -5 +im[6261] = 0.0997 +ij[6261] = 1 +id[6262] = "2993-03-14T22:57:02" +ik[6262] = 1 +il[6262] = -24 +im[6262] = 0.0473 +ij[6262] = 2 +id[6263] = "2993-07-14T05:26:03" +ik[6263] = -1 +il[6263] = 78 +im[6263] = 0.1647 +ij[6263] = 2 +id[6264] = "2993-07-16T02:37:03" +ik[6264] = 0 +il[6264] = 66 +im[6264] = 0.2337 +ij[6264] = 1 +id[6265] = "2993-11-08T16:14:01" +ik[6265] = -1 +il[6265] = -167 +im[6265] = 0.1466 +ij[6265] = 2 +id[6266] = "2993-11-10T00:42:01" +ik[6266] = 0 +il[6266] = -179 +im[6266] = 0.1947 +ij[6266] = 1 +id[6267] = "2994-02-23T18:13:02" +ik[6267] = 0 +il[6267] = -1 +im[6267] = 0.2172 +ij[6267] = 1 +id[6268] = "2994-02-25T19:21:02" +ik[6268] = 1 +il[6268] = -16 +im[6268] = 0.2019 +ij[6268] = 2 +id[6269] = "2994-06-25T16:28:03" +ik[6269] = -1 +il[6269] = 91 +im[6269] = 0.224 +ij[6269] = 2 +id[6270] = "2994-06-25T23:44:03" +ik[6270] = 0 +il[6270] = 89 +im[6270] = 0.2125 +ij[6270] = 1 +id[6271] = "2994-10-23T02:33:01" +ik[6271] = -1 +il[6271] = -163 +im[6271] = 0.1486 +ij[6271] = 2 +id[6272] = "2994-10-24T00:13:01" +ik[6272] = 0 +il[6272] = -170 +im[6272] = 0.1049 +ij[6272] = 1 +id[6273] = "2995-02-07T13:25:02" +ik[6273] = 0 +il[6273] = 1 +im[6273] = 0.037 +ij[6273] = 1 +id[6274] = "2995-02-09T00:52:02" +ik[6274] = 1 +il[6274] = -10 +im[6274] = 0.112 +ij[6274] = 2 +id[6275] = "2995-06-05T21:06:03" +ik[6275] = 0 +il[6275] = 112 +im[6275] = 0.0766 +ij[6275] = 1 +id[6276] = "2995-06-07T04:42:03" +ik[6276] = 1 +il[6276] = 104 +im[6276] = 0.1549 +ij[6276] = 2 +id[6277] = "2995-10-06T04:57:01" +ik[6277] = -1 +il[6277] = -156 +im[6277] = 0.2202 +ij[6277] = 2 +id[6278] = "2995-10-08T16:03:01" +ik[6278] = 0 +il[6278] = -174 +im[6278] = 0.2342 +ij[6278] = 1 +id[6279] = "2996-01-22T15:20:02" +ik[6279] = 0 +il[6279] = 2 +im[6279] = 0.1649 +ij[6279] = 1 +id[6280] = "2996-01-23T13:35:02" +ik[6280] = 1 +il[6280] = -5 +im[6280] = 0.1282 +ij[6280] = 2 +id[6281] = "2996-05-16T06:13:03" +ik[6281] = 0 +il[6281] = 133 +im[6281] = 0.2732 +ij[6281] = 1 +id[6282] = "2996-05-18T18:52:03" +ik[6282] = 1 +il[6282] = 116 +im[6282] = 0.2444 +ij[6282] = 2 +id[6283] = "2996-09-17T21:16:01" +ik[6283] = -1 +il[6283] = -146 +im[6283] = 0.0567 +ij[6283] = 2 +id[6284] = "2996-09-20T21:06:01" +ik[6284] = 0 +il[6284] = -168 +im[6284] = 0.1171 +ij[6284] = 1 +id[6285] = "2997-01-05T21:06:02" +ik[6285] = 0 +il[6285] = 2 +im[6285] = 0.1995 +ij[6285] = 1 +id[6286] = "2997-01-06T07:06:02" +ik[6286] = 1 +il[6286] = -1 +im[6286] = 0.2062 +ij[6286] = 2 +id[6287] = "2997-04-27T08:08:03" +ik[6287] = 0 +il[6287] = 150 +im[6287] = 0.0525 +ij[6287] = 1 +id[6288] = "2997-04-30T12:09:03" +ik[6288] = 1 +il[6288] = 128 +im[6288] = 0.1453 +ij[6288] = 2 +id[6289] = "2997-08-31T03:16:01" +ik[6289] = -1 +il[6289] = -135 +im[6289] = 0.2337 +ij[6289] = 2 +id[6290] = "2997-09-03T11:15:01" +ik[6290] = 0 +il[6290] = -159 +im[6290] = 0.2124 +ij[6290] = 1 +id[6291] = "2997-12-21T03:30:02" +ik[6291] = -1 +il[6291] = 3 +im[6291] = 0.0064 +ij[6291] = 2 +id[6292] = "2997-12-21T05:01:02" +ik[6292] = 0 +il[6292] = 1 +im[6292] = 0.0095 +ij[6292] = 1 +id[6293] = "2998-04-09T04:47:03" +ik[6293] = 0 +il[6293] = 163 +im[6293] = 0.2303 +ij[6293] = 1 +id[6294] = "2998-04-12T10:28:03" +ik[6294] = 1 +il[6294] = 140 +im[6294] = 0.2265 +ij[6294] = 2 +id[6295] = "2998-08-12T23:26:01" +ik[6295] = -1 +il[6295] = -123 +im[6295] = 0.0499 +ij[6295] = 2 +id[6296] = "2998-08-16T06:13:01" +ik[6296] = 0 +il[6296] = -145 +im[6296] = 0.1387 +ij[6296] = 1 +id[6297] = "2998-12-04T00:09:02" +ik[6297] = -1 +il[6297] = 12 +im[6297] = 0.2135 +ij[6297] = 2 +id[6298] = "2998-12-05T13:11:02" +ik[6298] = 0 +il[6298] = 1 +im[6298] = 0.1758 +ij[6298] = 1 +id[6299] = "2999-03-22T18:27:03" +ik[6299] = 0 +il[6299] = 172 +im[6299] = 0.0194 +ij[6299] = 1 +id[6300] = "2999-03-25T16:14:03" +ik[6300] = 1 +il[6300] = 151 +im[6300] = 0.1398 +ij[6300] = 2 +id[6301] = "2999-07-25T13:21:01" +ik[6301] = -1 +il[6301] = -109 +im[6301] = 0.2284 +ij[6301] = 2 +id[6302] = "2999-07-28T03:35:01" +ik[6302] = 0 +il[6302] = -127 +im[6302] = 0.2429 +ij[6302] = 1 +id[6303] = "2999-11-18T18:38:02" +ik[6303] = -1 +il[6303] = 16 +im[6303] = 0.1691 +ij[6303] = 2 +id[6304] = "2999-11-19T19:54:02" +ik[6304] = 0 +il[6304] = 1 +im[6304] = 0.1985 +ij[6304] = 1 +id[6305] = "3000-03-05T22:03:03" +ik[6305] = 0 +il[6305] = 177 +im[6305] = 0.2207 +ij[6305] = 1 +id[6306] = "3000-03-08T07:21:03" +ik[6306] = 1 +il[6306] = 160 +im[6306] = 0.171 +ij[6306] = 2 +id[6307] = "3000-07-07T00:52:01" +ik[6307] = -1 +il[6307] = -96 +im[6307] = 0.107 +ij[6307] = 2 +id[6308] = "3000-07-08T06:42:01" +ik[6308] = 0 +il[6308] = -105 +im[6308] = 0.0347 +ij[6308] = 1 +id[6309] = "3000-11-02T08:33:02" +ik[6309] = -1 +il[6309] = 20 +im[6309] = 0.0997 +ij[6309] = 2 +id[6310] = "3000-11-03T22:32:02" +ik[6310] = 0 +il[6310] = 2 +im[6310] = 0.0159 +ij[6310] = 1 + + +l = 6310; + +wc = 2; + +i = 0 + +while (i < l+1) +{ + +i = i + 1 +cycle[i] = wc + +if (i/2 == Math.floor(i/2)) +{ +wc = wc + 1 +if (wc == 4) +{ +wc = 1; +} +} + + +} + + + + + + + + + + +LabelMgr.deleteAllLabels(); + + +// Program + +q = 0; + +while(q < 2) +{ + +au = -1; + +ww = 1; + + +oatmo = LandscapeMgr.getFlagAtmosphere(); +oland = LandscapeMgr.getFlagLandscape(); + + +LandscapeMgr.setFlagAtmosphere(false); +LandscapeMgr.setFlagLandscape(false); + + +core.setDate("1633-09-21T15:00:00", "local"); + +StelMovementMgr.zoomTo(0.0107*x, 1); + +core.selectObjectByName("Earth", pointer = false); +StelMovementMgr.setFlagTracking(true); + + +core.wait(0.3); + + +txt1 = LabelMgr.labelScreen("Earth Events from Mercury", 320*x, 20*y, false, 25,"#E1E243"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(id[f].substring(5,7) + "/" + id[f].substring(0,4) + " to " + id[l].substring(5,7) + "/" + id[l].substring(0,4), 400*x, 80*y, false, 20, "#9AAAFF"); +LabelMgr.setLabelShow(txt1, true); + + +au = 1; + +txt1 = LabelMgr.labelScreen(lat, 20, 650, false, 10, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(long, 20, 665, false, 10, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +sty = 15; + + +txt1 = LabelMgr.labelScreen("Everything", 750 * x, sty *y, false, 15,"#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Orbit", 750 * x, (sty+20) *y, false, 15,"#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Oppositions", 750 * x, (sty+20)*y, false, 15,"#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Closest Approaches", 750 * x, (sty+40)*y, false, 15,"#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Quit", 750 * x, (sty+60)*y, false, 15, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Quadratures", 750 * x, (sty+60)*y, false, 15,"#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Eastern Quadratures", 750 * x, (sty+80)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Western Quadratures", 750 * x, (sty+100)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" CoQuadratures", 750 * x, (sty+120)*y, false, 15,"#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Eastern CoQuadratures", 750 * x, (sty+140)*y,false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Western Coquadratures", 750 * x, (sty+160)*y,false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Retrograde Motions", 750 * x, (sty+180)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Superior Conjunctions", 750 * x, (sty+200)*y,false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Greatest Moon Elongations", 750 * x, (sty+220)*y,false,15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Conjunctions", 750 * x, (sty+240) *y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Bright Stars & Nebula", 750 * x, (sty+260)*y, false, 15,"#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Aldebaran", 750 * x, (sty+280)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Alpha Capricorn", 750 * x, (sty+300)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Antares", 750 * x, (sty+320)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Beehive Cluster", 750 * x, (sty+340)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Circlet", 750 * x, (sty+360)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Lagoon Nebula", 750 * x, (sty+380)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Pleiades", 750 * x, (sty+400)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Regulus", 750 * x, (sty+420)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Spica", 750 * x, (sty+440)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Trifid Nebula", 750 * x, (sty+460)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Visible Planets", 750 * x, (sty+480)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Mercury", 750 * x, (sty+500)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + + +txt1 = LabelMgr.labelScreen(" Mars", 750 * x, (sty+520)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Jupiter", 750 * x, (sty+540)*y, false, 15,"#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen(" Saturn", 750 * x, (sty+560)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Uranus", 750 * x, (sty+580)*y, false, 15,"#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(" Neptune", 750 * x, (sty+600)*y, false, 15, "#F9E397"); +//LabelMgr.setLabelShow(txt1, true); + + + + +txt1 = LabelMgr.labelScreen("Press = / - to toggle", 680 * x, (sty+650)*y, false, 15,"#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press [ for Keypress mode", 680 * x, (sty+670)*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press ] for Screen Saver Mode", 680 * x, (sty+690)*y,false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + + + +txt1 = LabelMgr.labelScreen("By Qam1", 900*x, 10, false, 25, "#A0801D"); +LabelMgr.setLabelShow(txt1, true); + + + +// Label + + +// Get au + +q = 0; + +while (q ==0) +{ + + +txt1 = LabelMgr.labelScreen("-->", 710*x, ((au*20)-12)*y, false, 25, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +core.wait(0.07); + + +d = Math.floor(core.getJDay()); +r = d; + +while (d==r) +{ +r = Math.floor(core.getJDay()); +} + + +if (r - d == sd) +{ +au = au + 1; +core.setDate(nsds); +if (au > 4) +{ +au = 1; +} +} + + +if (r - d == -sd) +{ +au = au - 1; +core.setDate(sds); +if (au < 4 ) +{ +au = 3 +} +} + + +if (r - d > 1200) +{ +q = 1; +ss = 1; +} + + +if (r - d == -sw) +{ +q = 1; +ss = 0; +} + +LabelMgr.setLabelShow(txt1, false); + +} // end main screen + + + + + +txt1 = LabelMgr.labelScreen("-->", 710*x, ((au*20)-12)*y, false, 25, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); +core.wait(.5); + +LabelMgr.deleteAllLabels(); + +LandscapeMgr.setFlagAtmosphere(oatmo); +LandscapeMgr.getFlagLandscape(oland); + + + + + +// Basics + + + +StelMovementMgr.zoomTo(87, 1); + +SolarSystem.setLabelsAmount(20); +StelSkyDrawer.setFlagLuminanceAdaptation(false); +core.selectObjectByName("Earth", pointer = true); +StelMovementMgr.setFlagTracking(true); + + + +LandscapeMgr.setFlagAtmosphere(true); + +LandscapeMgr.setFlagLandscape(true); + +p = 0; + + + +// Label +if (ss == 0) +{ + + +txt1 = LabelMgr.labelScreen("Press + for next event", 700 * x, 400*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press - for previous event", 700*x, 440*y, false,15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Press [ go back to start date ", 700*x, 460*y,false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press ] go back to Main Menu", 700*x, 480*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +} + +else +{ +txt1 = LabelMgr.labelScreen("Press + - [ or ] for Main Menu ", 700*x, 460*y,false, 15,"#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} + + +// Pick where to start + +j = core.getJDay(); + +core.setDate("now"); +initj = core.getJDay(); + + + +core.setDate(id[f]); +jj = core.getJDay(); + +core.setDate(id[l]); +jjj = core.getJDay(); + + + + +if (j > jjj) +{ +core.setDate("now"); +} + +if (j < jj) +{ +core.setDate("now"); +} + + + +km = 1; +i = 1; + +j = core.getJDay(); + +while (km == 1) +{ +i = i + 1; + +core.setDate(id[i]); +jj = core.getJDay(); +if (jj +1> j) +{ +km = i; +} +} + + + + +q = 0; +p = 1; +i = i -1; + + + + +while(q == 0) +{ + + + +// program + + + +i = i + p; + +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} + + +if (au == 222) // Orbit +{ +ag = 0; + +if (ij[i] < 20) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] < 20) +{ +ag = 2; +} +} +} + + + +if (au == 2) // Opposition +{ +ag = 0; +if (ij[i] == 1) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 1) +{ +ag = 2; +} +} +} + + +if (au == 3) // Closest Approach +{ +ag = 0; +if (ij[i] == 3) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 3) +{ +ag = 2; +} +} +} + + + + + + +if (au == 44) // Quadratures +{ +ag = 0; +if (ij[i] == 5 || ij[i] == 6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 5 || ij[i] == 6) +{ +ag = 2; +} +} +} + + +if (au == 5) // Eastern Quadratures +{ +ag = 0; +if (ij[i] == 5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 5) +{ +ag = 2; +} +} +} + + +if (au == 6) // Western Quadratures +{ +ag = 0; +if (ij[i] == 6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 6) +{ +ag = 2; +} +} +} + + + + +if (au == 7) // CoQuads +{ +ag = 0; +if (ij[i] == 8 || ij[i] == 9) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 8 || ij[i] == 9) +{ +ag = 2; +} +} +} + + + +if (au == 8) // Eastern CoQuads +{ +ag = 0; +if (ij[i] == 8) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 8) +{ +ag = 2; +} +} +} + + + + +if (au == 9) // Western CoQuads +{ +ag = 0; +if (ij[i] == 2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 2) +{ +ag = 2; +} +} +} + + + +if (au == 10) // Retro +{ +ag = 0; + + +if (ij[i] == 13 || ij[i] == 14 || Math.floor(ij[i]) == 7) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 13 || ij[i] == 14 || Math.floor(ij[i]) == 7) +{ +ag = 2; +} +} +} + + +if (au == 11) //Sup conjunction +{ +ag = 0; +if (ij[i] == 12) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 12) +{ +ag = 2; +} +} +} + + +if (au == 12) //Moon elongations +{ +ag = 0; +if (ij[i] == 2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 2) +{ +ag = 2; +} +} +} + + + +if (au == 13) // Conjunctions +{ +ag = 0; +if (ij[i] > 20) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] > 20) +{ +ag = 2; +} +} +} + + + +if (au == 14) // Stars +{ +ag = 0; +if (Math.floor(ij[i]) == 27) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (Math.floor(ij[i]) == 27) +{ +ag = 2; +} +} +} + + +if (au == 15) // Aldebaran +{ +ag = 0; +if (ij[i] == 27.1) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.1) +{ +ag = 2; +} +} +} + + +if (au == 16) // Alpha Cap +{ +ag = 0; +if (ij[i] == 27.8) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.8) +{ +ag = 2; +} +} +} + + + + +if (au == 17) // Antares +{ +ag = 0; +if (ij[i] == 27.2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.2) +{ +ag = 2; +} +} +} + +if (au == 18) // Beehive +{ +ag = 0; +if (ij[i] == 27.3) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.3) +{ +ag = 2; +} +} +} + + +if (au == 19) // Circelt +{ +ag = 0; +if (ij[i] == 27.7) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.7) +{ +ag = 2; +} +} +} + +if (au == 20) // Lagoon +{ +ag = 0; +if (ij[i] == 27.9) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.9) +{ +ag = 2; +} +} +} + + + +if (au == 21) // Ple +{ +ag = 0; +if (ij[i] == 27.4) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.4) +{ +ag = 2; +} +} +} + + +if (au == 22) // Reg +{ +ag = 0; +if (ij[i] == 27.5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.5) +{ +ag = 2; +} +} +} + + +if (au == 23) // Spica +{ +ag = 0; +if (ij[i] == 27.6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.6) +{ +ag = 2; +} +} +} + + +if (au == 24) // Trifed Nebula +{ +ag = 0; +if (ij[i] == 27.91) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.91) +{ +ag = 2; +} +} +} + + + +if (au == 25) // Planets +{ +ag = 0; +if (Math.floor(ij[i]) == 28) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (Math.floor(ij[i]) == 28) +{ +ag = 2; +} +} +} + +if (au == 26) // Mercury +{ +ag = 0; +if (ij[i] == 28.1) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.1) +{ +ag = 2; +} +} +} + +if (au == 27) // Mars +{ +ag = 0; +if (ij[i] == 28.4) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.4) +{ +ag = 2; +} +} +} + +if (au == 28) // Jupiter +{ +ag = 0; +if (ij[i] == 28.5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.5) +{ +ag = 2; +} +} +} + + + + + +if (au == 29) // Saturn +{ +ag = 0; +if (ij[i] == 28.6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.6) +{ +ag = 2; +} +} +} + + +if (au == 30) // Uranus +{ +ag = 0; +if (ij[i] == 28.7) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.7) +{ +ag = 2; +} +} +} + + +if (au == 31) // Nep +{ +ag = 0; +if (ij[i] == 28.8) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.8) +{ +ag = 2; +} +} +} + + +if (au == 4) +{ +txt1 = LabelMgr.labelScreen("Later!!!", 400, 20, false, 75, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); +core.stopScript(); +} + + + +woes[i] = "Oppo"; + +if (ik[i] == 1) +{ +woes[i] = "E"; +} + +if (ik[i] == -1) +{ +woes[i] = "W"; +} + + + +// #&!@)#& + + +// Find best times + + + +core.setDate(id[i]); + + + + +jd = core.getJDay(); + +d = jd - 2451543.5; + + +core.setObserverLocation(il[i], 30.1, 20, 0, "", "Mercury"); + + + +// Sun + +w = 282.9404 + 0.0000470935 * d; +Me = 356.0470 + 0.9856002585 * d; +e = 0.016709 - 0.000000001151 * d; +wme = w + Me; +ob = 23.439281 - 0.0000003563 * d; +ob = ob * rad; + +if (wme < 0) +{ +while (wme < 0) +{ +wme = wme + 360; +} +} + +if (wme > 360) +{ +while (wme > 360) +{ +wme = wme - 360; +} +} + +EA = Me + (deg) * e * Math.sin(Me*rad) * (1 + e * Math.cos(Me*rad)); +xx = Math.cos(EA*rad) - e; +ysun = Math.sin(EA*rad) * Math.sqrt(1 - e*e); + +r = Math.sqrt(xx*xx + ysun*ysun); +rapp = r; +v = Math.atan2(ysun, xx) * deg; + +Lon = v + w; + +if (Lon < 0) +{ +while (Lon < 0) +{ +Lon = Lon + 360; +} +} + +if (Lon > 360) +{ +while (Lon > 360) +{ +Lon = Lon - 360; +} +} + +xx = r * Math.cos(Lon*rad); +ysun = r * Math.sin(Lon*rad); +z = 0.0; + +xe = xx; +ye = ysun * Math.cos(ob) + 0.0 * Math.sin(ob); +ze = ysun * Math.sin(ob) + 0.0 * Math.cos(ob); + +ra = Math.atan2( ye, xe ) * deg; +dec = Math.atan2( ze, Math.sqrt(xe*xe+ye*ye) )* deg; + +sundec = dec; +dd = dec + 50; + +if (ra<0) +{ +ra = (360+ra); +} + +sunra = ra; + +GMSTO = wme + 180; + +if (GMSTO > 360) +{ +GMSTO = GMSTO - 360; +} + + + +// Earth set +N = 48.3313 + 0.0000324587 * d; // (Long of asc. node) +ii = 7.0047 + 0.00000005 * d; // (Inclination) +w = 29.1241 + 0.0000101444 * d; // (Argument of perihelion) +a = 0.387098; // (Semi-major axis) +e = 0.205635 + 0.000000000559 * d; // (Eccentricity) +Me = 168.6562 + 4.0923344368 * d; // (Mean anonaly) +pet = 0; +pety = 0; + + + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + +Mj = Me * rad; + + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + +Ms = Me * rad; + + + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + + + + + + +if (w<0) +{ +while (w >0) +{ +w = w + 360; +} +} + + +if (w>360) +{ +while (w <360) +{ +w = w - 360; +} +} + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + + + + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + + + +if (N<0) +{ +while (N >0) +{ +N = N + 360; +} +} + +if (N>360) +{ +while (N <360) +{ +N = N - 360; +} +} + +if (ii<0) +{ +while (ii >0) +{ +ii = ii + 360; +} +} + +if (ii>360) +{ +while (ii <360) +{ +ii = ii - 360; +} +} + +ii = ii * rad; + + + +Merad = Me * rad; +N = N * rad; +E4 = 0; +E0 = Me + e*(deg) * Math.sin(Merad) * ( 1.0 + e * Math.cos(Merad) ); + + +while (E4 == 0) +{ + +E2 = E0 * rad; +E1 = E0 - (E2 - (e * Math.sin(E2)) - (Me* rad)) / ( 1 - e * Math.cos(E2)); + + +if (Math.abs(E1-E0)< 0.000001) +{ +E4 = 1; +} +else +{ +E0 = E1; +} +} + + +E0 = E1 * rad // Might as well use E0 as Radians + +xx = a * (Math.cos(E0) - e); +yy = a * (Math.sqrt(1 - e*e))* Math.sin(E0); + +r = Math.sqrt(xx*xx + yy*yy ); // Distance from sun + +rsun[i] = r; + + +v = Math.atan2(yy, xx ); +v = v * deg; +v = v *rad + w * rad; + + +// The position in space + +pxe = r * ( Math.cos(N) * Math.cos(v) - Math.sin(N) * Math.sin(v) * Math.cos(ii)); +pye = r * ( Math.sin(N) * Math.cos(v) + Math.cos(N) * Math.sin(v) * Math.cos(ii)); +pze = r * Math.sin(v) * Math.sin(ii); + + +// Helio Lat and Long + Petrubs + +ra = Math.atan2(pye, pxe ) + pet * rad; +dec = Math.atan2(pze, Math.sqrt(pxe*pxe+pye*pye) ) + pety * rad; + +// convert to earth centered + +xx = r * Math.cos(ra) * Math.cos(dec); +yy = r * Math.sin(ra) * Math.cos(dec); +zz = r * Math.sin(dec); // Distance to sun in AU - Not needed in this script + +gxe = xe + xx; +gye = ysun + yy; +gze = zz; + +// Precession + +xx = gxe; +yy = gye*Math.cos(ob) - gze*Math.sin(ob); +zz = gye*Math.sin(ob) + gze*Math.cos(ob); + + +ra = Math.atan2(yy, xx ) * deg; + + +dec = Math.atan2(zz, Math.sqrt(xx*xx+yy*yy) )* deg; +r = Math.sqrt( xx*xx + yy*yy + zz*zz ); + + +ltravel = r * 499.02; +jlight = ltravel / 86400; +d = d - jlight; + + +lhrs = Math.floor(ltravel / 3600); + +lmin = (ltravel - (lhrs * 3600))/60 + +lsec = (lmin - Math.floor(lmin)) * 60 + +lmin = Math.floor(lmin); +lsec = Math.floor(lsec); + + + +hstring = " hours "; +if (lhrs == 1) +{ +hstring = " hour "; +} + + +mstring = " minutes " +if (lmin == 1) +{ +mstring = " minute "; +} + + +sstring = " seconds " +if (lsec == 1) +{ +sstring = " second "; +} + + + +txt1 = LabelMgr.labelScreen("Light Travel Time: " + lmin + mstring + lsec + sstring, 700*x, 670*y, false, 15, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + + +stardec = dec; + +dd = (dec + 50) - dd; + +dd = dd.toFixed(3) + +// Rides + + + + +if (ra<0) +{ +ra = (360+ra); +} + +// Earth Phase + +fv[i] = (rsun[i]*rsun[i] + r*r - rapp*rapp) / (2*rsun[i]*r); +fv[i] = (Math.acos(fv[i])); +fv[i] = fv[i] * deg; + +// Earth Mag + +mag[i] = r*rsun[i]; +mag[i] = Math.log(mag[i]); +mag[i] = mag[i] / Math.log(10); +mag[i] = -3.88 + 5* mag[i] + 0.0124 * fv[i] + 0.00000042 * (fv[i] *fv[i]*fv[i] ); + + +// Earth Illum % +fvp[i] = (rapp*rapp + r*r - rsun[i]*rsun[i]) / (2*rapp*r); + +fvp[i] = (1 + fvp[i])/2; +fvp[i] = fvp[i] * 100; + + + +// Earth Mag +efv[i] = (rapp*rapp + r*r - rsun[i]*rsun[i]) / (2*rapp*r); +efv[i] = (Math.acos(efv[i] )); +efv[i] = 2/3 * ((1-(efv[i])/pi) * Math.cos(efv[i]) + (1/pi)*Math.sin(efv[i])); +efv[i] = (rapp * rapp * r * r)/efv[i]; +efv[i] = Math.log(efv[i]) / Math.log(10); +efv[i] = root * efv[i]; +mfv[i] = +0.21 + efv[i]; +emag[i] = -3.88 + efv[i]; + + +tmag = Math.pow(root, -emag[i]) + Math.pow(root, -mfv[i]) +tmag = Math.log(tmag) / Math.log(10) +tmag = -2.5 * tmag + + + + +// Reverse -Earth Phase + + +efv[i] = (rapp*rapp + r*r - rsun[i]*rsun[i]) / (2*rapp*r); +efv[i] = (Math.acos(efv[i] ) * deg); + +efv[i] = Math.cos(efv[i]*rad); +efv[i] = (1 + efv[i])/2; +efv[i] = efv[i] * 100; + + +// Earth Elong + +elong[i] = (rapp*rapp + r*r - rsun[i] * rsun[i]); +elong[i] = elong[i] / (2 * rapp * r); +elong[i] = Math.acos(elong[i]) * deg ; + +// west or east + + + +// n/a + + + + +txt1 = LabelMgr.labelScreen("Elongation:", 10*x, 530*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +if (fv[i] < 10) +{ +txt1 = LabelMgr.labelScreen(fv[i].toFixed(3) + degstring + woes[i], 205*x, 530*y, false, 20,"#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + +else + +if (fv[i] < 100) +{ +txt1 = LabelMgr.labelScreen(fv[i].toFixed(3) + degstring + woes[i], 195*x, 530*y, false, 20,"#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + +else + +{ +txt1 = LabelMgr.labelScreen(fv[i].toFixed(3) + degstring + woes[i], 185*x, 530*y, false, 20,"#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +} + + + + +txt1 = LabelMgr.labelScreen(fvp[i].toFixed(3)+"%", 195*x, 555*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Illumination:", 10*x, 555*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + +txt1 = LabelMgr.labelScreen("Total Magnitude:", 10*x, 580*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(tmag.toFixed(3), 200*x, 580*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + + +txt1 = LabelMgr.labelScreen("Earth Magnitude:", 10*x, 610*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(emag[i].toFixed(3), 200*x, 610*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Moon Magnitude:", 10*x, 640*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +if (mfv[i] < 0) +{ + +txt1 = LabelMgr.labelScreen(mfv[i].toFixed(3), 200*x, 640*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} +else +{ +txt1 = LabelMgr.labelScreen(mfv[i].toFixed(3), 205*x, 640*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + + + + + + +txt1 = LabelMgr.labelScreen("Moon Elongation:", 10*x, 665*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(im[i].toFixed(3) + degstring, 205*x, 665*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +if (il[i] > 0) +{ +txt1 = LabelMgr.labelScreen("Viewing Longitude: " + il[i] + "E", 10*x, 695*y, false, 20, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} +else +{ +txt1 = LabelMgr.labelScreen("Viewing Longitude: " + Math.abs(il[i])+"W", 10*x, 695*y, false, 20, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} + + + + +txt1 = LabelMgr.labelScreen("Cycle: "+ cycle[i], 10*x, 505*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + + + + + + +flo = Math.floor(ij[i]); + +// Yes an Array would be nice but for some !@^# reason it won't work so I have to do it the hard //way + +if (flo == 1) +{ +ename = "Opposition"; +} + +if (flo == 2) +{ + +ename = "Closest Approach" + +} + +if (flo == 3) +{ +ename = "Western Greatest Brilliancy"; +} + + +if (flo == 5) +{ +ename = "Eastern Quadrature"; +} + +if (flo == 6) +{ +ename = "Western Quadrature"; +} + +if (flo == 7) +{ +ename = "End Retrograde Motion after "+ ik[i] + " days and " + ((ij[i]-flo) * 100).toFixed(2) + degstring; + +} + +if (flo == 8) +{ +ename = "Eastern CoQuadrature"; +} + +if (flo == 9) +{ +ename = "Western CoQuadrature"; +} + + + +if (flo == 11) +{ +ename = "Opposition"; +} + +if (flo == 12) +{ +ename = "Superior Conjunction"; +} + + +if (flo == 13) +{ +ename = "Start Retrograde Motion"; +} + + +if (flo == 14) +{ +ename = "Regain lost after Retrograde Motion after "+ ik[i] + " days"; + +} + + + + +if (flo == 27) +{ +if (ij[i] == 27.1) +{ +ename = "Conjunction - Aldebaran "+ik[i].toFixed(3) + degstring ; +} +if (ij[i] == 27.2) +{ +ename = "Conjunction - Antares " +ik[i].toFixed(3) + degstring; +} +if (ij[i] == 27.3) +{ +ename = "Conjunction - Beehive "+ik[i].toFixed(3) + degstring; +} +if (ij[i] == 27.4) +{ +ename = "Conjunction - Pleiades "+ik[i].toFixed(3) + degstring ; +} +if (ij[i] == 27.5) +{ +ename = "Conjunction - Regulus "+ik[i].toFixed(3) + degstring; +} +if (ij[i] == 27.6) +{ +ename = "Conjunction - Spica "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.7) +{ +ename = "Conjunction - Circlet "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.8) +{ +ename = "Conjunction - Alpha Capricorn "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.9) +{ +ename = "Conjunction - Lagoon Nebulea "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.91) +{ +ename = "Conjunction - Lagoon Nebulea "+ik[i].toFixed(3) + degstring; +} + + + +//txt1 = LabelMgr.labelScreen(+ik[i].toFixed(3) + degstring, 340*x, 505*y, false, 20, "#00FF00"); +//LabelMgr.setLabelShow(txt1, true); + + +} + + + +if (flo == 28) +{ +if (ij[i] == 28.1) +{ +ename = "Conjunction - Mercury "+ik[i].toFixed(3) + degstring ; +} +if (ij[i] == 28.4) +{ +ename = "Conjunction - Mars "+ik[i].toFixed(3) + degstring ; +} + + +if (ij[i] == 28.5) +{ +ename = "Conjunction - Jupiter " +ik[i].toFixed(3) + degstring; +} +if (ij[i] == 28.6) +{ +ename = "Conjunction - Saturn " +ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 28.7) +{ +ename = "Conjunction - Uranus "+ik[i].toFixed(3) + degstring ; +} + + +if (ij[i] == 28.8) +{ +ename = "Conjunction - Neptune "+ik[i].toFixed(3) + degstring ; +} + + + + +} + + + + +txt1 = LabelMgr.labelScreen(ename, 450*x, 0*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(ename, 10*x, 475*y, false, 20, "#00FF71"); +LabelMgr.setLabelShow(txt1, true); + + + + +txt1 = LabelMgr.labelScreen("Julian Date:", 700*x, 635*y, false, 15, "#00FF71"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(core.getJDay().toFixed(3), 775*x, 635*y, false, 15, "#00FF71"); +LabelMgr.setLabelShow(txt1, true); + + + +// Wait for Keypress + + +d = Math.floor(core.getJDay()); +r = d; + + +pak = 0 + +if (ss ==1) +{ +while (pak < spd) +{ +core.wait(0.25); +pak = pak + 1; + +r = Math.floor(core.getJDay()); + +if (Math.abs(r-d) > 0) +{ +pak = spd + 1; +core.setDate(sws); + + +if (Math.abs(initj - r) < 2) +{ + + +i = km - p +} +else +{ + + + +q = 1; +} + + +} +} +r = Math.floor(core.getJDay()) + 1; +} + + + +while (d == r) +{ +r = Math.floor(core.getJDay()); +} + +LabelMgr.deleteAllLabels(); + +if (r - d == -sd) +{ +p = - 1; +} + +if (r - d == sd) +{ +p = 1; +} + +// Start +if (r - d >1230) +{ +if (id[km].substring(10,11) == "T") +{ +core.setDate(id[km]); +} +else +{ +tt = id[km] + "T12:00:00"; +core.setDate(tt,"local"); + +} +q = 1; +} + + +//t +if (r - d == -sw) +{ +i = km - p + + + +} + + + + +LabelMgr.deleteAllLabels(); + +} +} + + +txt1 = LabelMgr.labelScreen("Later!!!", 400, 20, false, 75, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); + +core.wait(2); + +LabelMgr.deleteAllLabels(); + + diff -Nru stellarium-0.12.1/scripts/earth_3.ssc stellarium-0.12.4/scripts/earth_3.ssc --- stellarium-0.12.1/scripts/earth_3.ssc 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/scripts/earth_3.ssc 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,81501 @@ +// Author: Qam1 +// Name: Earth Events from Venus +// License: Public Domain +// Version: 5.1-1.1 +// Description: Earth Events from Venus + +// Made on Stellarium 0.12.1 + + +spd = 3; // speed for screen saver mode in seconds +long = -73.4 +lat = 30.1 + +y = core.getScreenHeight()/768; +x = core.getScreenWidth()/1024; +wt = 0.05; +q = 0; + +pi = 3.14159265358979323846264338327950288419716939937510; +rad = pi/180; +deg = 180/pi; +root = Math.pow(100,0.2); +c = Math.log(10); + + + +degstring = "\u00B0"; + + + + + +ah = "7777-07-07T07:07:07"; //why o why is this necessary?? + +id = new Array(length= 24000); +ik = new Array(length= 24000); +ij = new Array(length= 24000); +il = new Array(length= 24000); +im = new Array(length= 24000); +fv = new Array(length= 24000); +fvp = new Array(length= 24000); +efv = new Array(length= 24000); +mfv = new Array(length= 24000); +emag = new Array(length= 24000); +elong = new Array(length = 24000); +oes = new Array(length= 24000); +mag = new Array(length = 24000); +woes = new Array(length = 24000); +rsun = new Array(length = 24000); + +cycle = new Array(length = 24000); + +wc = 5 + +pet = 0; + +LabelMgr.deleteAllLabels(); + + +core.setObserverLocation(long, 30.1, 20, 1, "", "Venus"); + + +core.selectObjectByName("Earth", pointer = true); +StelMovementMgr.setFlagTracking(true); + + + +spd = spd * 4; + +p = 0; +f = 1; + + +sd = 117; +sds = "+244 days"; +nsds ="-244 days"; + +sw = 1709; +sws = "+1709 days"; +nsws ="-1709 days"; + + + + + +// Data + +id[1] = "2000-01-08T16:36:53" +ik[1] = 3.59 +il[1] = -130 +im[1] = 0.1108 +ij[1] = 27.1 +id[2] = "2000-01-14T13:32:26" +ik[2] = 53.727 +il[2] = -112 +im[2] = 0.0957 +ij[2] = 8 +id[3] = "2000-02-24T08:02:39" +ik[3] = 0.956 +il[3] = 15 +im[3] = 0.1036 +ij[3] = 27.3 +id[4] = "2000-03-13T03:51:59" +ik[4] = 0.62 +il[4] = 70 +im[4] = 0.0866 +ij[4] = 27.5 +id[5] = "2000-03-16T00:05:28" +ik[5] = 1.847 +il[5] = 79 +im[5] = 0.0486 +ij[5] = 28.1 +id[6] = "2000-04-26T03:34:44" +ik[6] = 3.44 +il[6] = -155 +im[6] = 0.0917 +ij[6] = 27.6 +id[7] = "2000-04-28T14:56:49" +ik[7] = 0.968 +il[7] = -147 +im[7] = 0.0764 +ij[7] = 28.1 +id[8] = "2000-06-11T08:41:16" +ik[8] = 0.09 +il[8] = -148 +im[8] = 0.0768 +ij[8] = 12 +id[9] = "2000-07-17T17:51:30" +ik[9] = 1.411 +il[9] = -103 +im[9] = 0.0041 +ij[9] = 28.8 +id[10] = "2000-07-29T01:44:32" +ik[10] = 0.653 +il[10] = -69 +im[10] = 0.0553 +ij[10] = 28.7 +id[11] = "2000-10-18T10:51:33" +ik[11] = 3.095 +il[11] = 177 +im[11] = 0.0572 +ij[11] = 27.4 +id[12] = "2000-10-19T00:05:36" +ik[12] = 2.88 +il[12] = 179 +im[12] = 0.0682 +ij[12] = 28.6 +id[13] = "2000-10-27T09:37:35" +ik[13] = 1.824 +il[13] = -156 +im[13] = 0.0684 +ij[13] = 28.5 +id[14] = "2000-10-30T09:30:41" +ik[14] = 53.742 +il[14] = -147 +im[14] = 0.0095 +ij[14] = 9 +id[15] = "2000-12-14T11:12:26" +ik[15] = 0.987 +il[15] = -8 +im[15] = 0.0043 +ij[15] = 27.3 +id[16] = "2001-01-03T07:12:53" +ik[16] = 0.966 +il[16] = 54 +im[16] = 0.1404 +ij[16] = 27.5 +id[17] = "2001-01-19T11:33:27" +ik[17] = 90 +il[17] = 105 +im[17] = 0.2214 +ij[17] = 6 +id[18] = "2001-03-08T19:34:36" +ik[18] = 0 +il[18] = -151 +im[18] = 0.2773 +ij[18] = 13 +id[19] = "2001-03-18T21:12:07" +ik[19] = 0.5157 +il[19] = -138 +im[19] = 0.5158 +ij[19] = 2 +id[20] = "2001-03-30T11:48:28" +ik[20] = 8 +il[20] = -117 +im[20] = 0.4726 +ij[20] = 11 +id[21] = "2001-04-20T02:47:12" +ik[21] = 42.3 +il[21] = -107 +im[21] = 0.1181 +ij[21] = 7.1628 +id[22] = "2001-05-23T12:25:57" +ik[22] = 75.7 +il[22] = -23 +im[22] = 0.191 +ij[22] = 14 +id[23] = "2001-05-30T09:35:45" +ik[23] = 4.05 +il[23] = -2 +im[23] = 0.1394 +ij[23] = 27.6 +id[24] = "2001-06-08T22:52:46" +ik[24] = 90 +il[24] = 26 +im[24] = 0.2125 +ij[24] = 5 +id[25] = "2001-07-19T14:13:12" +ik[25] = 2.143 +il[25] = 151 +im[25] = 0.0566 +ij[25] = 28.4 +id[26] = "2001-08-20T03:49:22" +ik[26] = 54.49 +il[26] = -113 +im[26] = 0.0852 +ij[26] = 8 +id[27] = "2001-09-01T15:36:08" +ik[27] = 0.148 +il[27] = -75 +im[27] = 0.039 +ij[27] = 28.8 +id[28] = "2001-09-14T07:04:13" +ik[28] = 0.116 +il[28] = -36 +im[28] = 0.0257 +ij[28] = 28.7 +id[29] = "2001-10-29T13:09:50" +ik[29] = 0.957 +il[29] = 104 +im[29] = 0.0211 +ij[29] = 28.1 +id[30] = "2001-12-01T09:05:46" +ik[30] = 4.929 +il[30] = -154 +im[30] = 0.0252 +ij[30] = 27.4 +id[31] = "2002-01-13T23:26:52" +ik[31] = 0.87 +il[31] = -155 +im[31] = 0.0078 +ij[31] = 12 +id[32] = "2002-03-27T08:54:43" +ik[32] = 2.78 +il[32] = -4 +im[32] = 0.0521 +ij[32] = 27.6 +id[33] = "2002-05-03T07:44:26" +ik[33] = 3.744 +il[33] = 111 +im[33] = 0.0815 +ij[33] = 27.2 +id[34] = "2002-06-09T16:19:36" +ik[34] = 54.676 +il[34] = -132 +im[34] = 0.0939 +ij[34] = 9 +id[35] = "2002-06-23T21:41:45" +ik[35] = 1.939 +il[35] = -88 +im[35] = 0.0979 +ij[35] = 28.8 +id[36] = "2002-07-09T10:02:55" +ik[36] = 0.728 +il[36] = -41 +im[36] = 0.1148 +ij[36] = 28.7 +id[37] = "2002-08-20T00:55:43" +ik[37] = 90 +il[37] = 85 +im[37] = 0.2094 +ij[37] = 6 +id[38] = "2002-10-09T12:26:24" +ik[38] = 0 +il[38] = -164 +im[38] = 0.1105 +ij[38] = 13 +id[39] = "2002-10-29T08:55:16" +ik[39] = 0.5338 +il[39] = -141 +im[39] = 0.5338 +ij[39] = 2 +id[40] = "2002-10-31T22:24:57" +ik[40] = 5.65 +il[40] = -129 +im[40] = 0.4276 +ij[40] = 11 +id[41] = "2002-11-21T11:28:59" +ik[41] = 42.96 +il[41] = -119 +im[41] = 0.3278 +ij[41] = 7.1557 +id[42] = "2002-12-22T22:52:46" +ik[42] = 74.43 +il[42] = -32 +im[42] = 0.2739 +ij[42] = 14 +id[43] = "2003-01-10T17:29:55" +ik[43] = 90 +il[43] = 14 +im[43] = 0.1515 +ij[43] = 5 +id[44] = "2003-01-17T09:32:26" +ik[44] = 2.032 +il[44] = 35 +im[44] = 0.1147 +ij[44] = 27.1 +id[45] = "2003-01-29T01:32:44" +ik[45] = 1.547 +il[45] = 72 +im[45] = 0.0185 +ij[45] = 28.6 +id[46] = "2003-03-09T03:52:52" +ik[46] = 1.779 +il[46] = -166 +im[46] = 0.1355 +ij[46] = 27.3 +id[47] = "2003-03-10T05:22:33" +ik[47] = 1.015 +il[47] = -163 +im[47] = 0.1231 +ij[47] = 28.5 +id[48] = "2003-03-27T14:14:39" +ik[48] = 0.173 +il[48] = -109 +im[48] = 0.048 +ij[48] = 27.5 +id[49] = "2003-03-30T14:11:37" +ik[49] = 53.929 +il[49] = -100 +im[49] = 0.0259 +ij[49] = 8 +id[50] = "2003-05-11T10:06:42" +ik[50] = 3.73 +il[50] = 29 +im[50] = 0.0611 +ij[50] = 27.6 +id[51] = "2003-05-26T10:29:51" +ik[51] = 1.781 +il[51] = 75 +im[51] = 0.0487 +ij[51] = 28.1 +id[52] = "2003-06-18T07:53:19" +ik[52] = 5.337 +il[52] = 144 +im[52] = 0.0826 +ij[52] = 27.2 +id[53] = "2003-06-21T07:07:23" +ik[53] = 0.946 +il[53] = 153 +im[53] = 0.0904 +ij[53] = 28.1 +id[54] = "2003-08-18T11:22:33" +ik[54] = 1.31 +il[54] = 152 +im[54] = 0.0853 +ij[54] = 12 +id[55] = "2003-11-02T00:21:19" +ik[55] = 3.848 +il[55] = -1 +im[55] = 0.0919 +ij[55] = 27.4 +id[56] = "2003-12-06T11:06:17" +ik[56] = 1.918 +il[56] = 104 +im[56] = 0.0872 +ij[56] = 28.6 +id[57] = "2003-12-27T03:23:32" +ik[57] = 0.575 +il[57] = 167 +im[57] = 0.0343 +ij[57] = 27.3 +id[58] = "2004-01-14T06:13:46" +ik[58] = 1.234 +il[58] = -136 +im[58] = 0.0785 +ij[58] = 27.5 +id[59] = "2004-01-15T20:03:39" +ik[59] = 53.618 +il[59] = -131 +im[59] = 0.1026 +ij[59] = 9 +id[60] = "2004-01-29T11:42:17" +ik[60] = 0.21 +il[60] = -89 +im[60] = 0.1089 +ij[60] = 28.5 +id[61] = "2004-02-29T09:08:37" +ik[61] = 1.16 +il[61] = 8 +im[61] = 0.1436 +ij[61] = 27.6 +id[62] = "2004-03-31T15:00:27" +ik[62] = 90 +il[62] = 106 +im[62] = 0.2081 +ij[62] = 6 +id[63] = "2004-04-14T14:12:52" +ik[63] = 0.408 +il[63] = 140 +im[63] = 0.2413 +ij[63] = 27.2 +id[64] = "2004-05-16T22:53:13" +ik[64] = 0 +il[64] = -156 +im[64] = 0.3505 +ij[64] = 13 +id[65] = "2004-06-08T08:26:52" +ik[65] = 0.17 +il[65] = -121 +im[65] = 0.4702 +ij[65] = 11 +id[66] = "2004-06-09T22:38:03" +ik[66] = 0.5079 +il[66] = -111 +im[66] = 0.508 +ij[66] = 2 +id[67] = "2004-06-29T23:43:59" +ik[67] = 44.04 +il[67] = -101 +im[67] = 0.0589 +ij[67] = 7.1662 +id[68] = "2004-08-03T00:32:43" +ik[68] = 78.07 +il[68] = -24 +im[68] = 0.2326 +ij[68] = 14 +id[69] = "2004-08-17T11:35:14" +ik[69] = 90 +il[69] = 19 +im[69] = 0.1892 +ij[69] = 5 +id[70] = "2004-09-18T18:52:52" +ik[70] = 0.765 +il[70] = 118 +im[70] = 0.1497 +ij[70] = 28.8 +id[71] = "2004-10-06T15:29:48" +ik[71] = 0.279 +il[71] = 172 +im[71] = 0.106 +ij[71] = 28.7 +id[72] = "2004-10-29T09:16:33" +ik[72] = 54.118 +il[72] = -118 +im[72] = 0.0952 +ij[72] = 8 +id[73] = "2004-12-25T02:29:46" +ik[73] = 4.423 +il[73] = 59 +im[73] = 0.0141 +ij[73] = 27.1 +id[74] = "2004-12-29T04:41:13" +ik[74] = 2.269 +il[74] = 72 +im[74] = 0.078 +ij[74] = 28.1 +id[75] = "2005-01-13T04:00:46" +ik[75] = 1.202 +il[75] = 118 +im[75] = 0.0732 +ij[75] = 28.1 +id[76] = "2005-01-27T20:26:00" +ik[76] = 0.301 +il[76] = 164 +im[76] = 0.0628 +ij[76] = 28.6 +id[77] = "2005-02-08T15:54:12" +ik[77] = 0.468 +il[77] = -159 +im[77] = 0.0134 +ij[77] = 27.3 +id[78] = "2005-03-31T11:08:09" +ik[78] = 1.3 +il[78] = -160 +im[78] = 0.0776 +ij[78] = 12 +id[79] = "2005-05-17T15:07:06" +ik[79] = 4.365 +il[79] = -60 +im[79] = 0.0912 +ij[79] = 27.2 +id[80] = "2005-06-04T09:54:00" +ik[80] = 0.102 +il[80] = -10 +im[80] = 0.0665 +ij[80] = 27.9 +id[81] = "2005-06-27T16:38:21" +ik[81] = 0.139 +il[81] = 63 +im[81] = 0.0741 +ij[81] = 28.1 +id[82] = "2005-07-12T04:42:39" +ik[82] = 1.445 +il[82] = 108 +im[82] = 0.0608 +ij[82] = 28.8 +id[83] = "2005-07-31T08:14:29" +ik[83] = 0.532 +il[83] = 166 +im[83] = 0.1128 +ij[83] = 28.7 +id[84] = "2005-08-16T15:37:01" +ik[84] = 54.42 +il[84] = -144 +im[84] = 0.1099 +ij[84] = 9 +id[85] = "2005-10-01T23:36:31" +ik[85] = 1.554 +il[85] = -4 +im[85] = 0.1466 +ij[85] = 28.4 +id[86] = "2005-10-07T12:27:32" +ik[86] = 1.624 +il[86] = 13 +im[86] = 0.0106 +ij[86] = 27.4 +id[87] = "2005-11-02T16:25:22" +ik[87] = 90 +il[87] = 94 +im[87] = 0.1382 +ij[87] = 6 +id[88] = "2005-12-23T00:33:10" +ik[88] = 0 +il[88] = -154 +im[88] = 0.3665 +ij[88] = 13 +id[89] = "2006-01-13T13:50:52" +ik[89] = 5.46 +il[89] = -120 +im[89] = 0.1419 +ij[89] = 11 +id[90] = "2006-01-21T06:34:02" +ik[90] = 0.5532 +il[90] = -110 +im[90] = 0.5533 +ij[90] = 2 +id[91] = "2006-02-03T08:24:57" +ik[91] = 42.33 +il[91] = -100 +im[91] = 0.4342 +ij[91] = 7.1555 +id[92] = "2006-03-07T05:24:42" +ik[92] = 74.2 +il[92] = -22 +im[92] = 0.1834 +ij[92] = 14 +id[93] = "2006-03-11T21:41:11" +ik[93] = 3.813 +il[93] = -11 +im[93] = 0.0662 +ij[93] = 28.6 +id[94] = "2006-03-15T08:20:25" +ik[94] = 4.324 +il[94] = -3 +im[94] = 0.197 +ij[94] = 27.3 +id[95] = "2006-03-26T04:46:35" +ik[95] = 90 +il[95] = 25 +im[95] = 0.0196 +ij[95] = 5 +id[96] = "2006-04-06T08:05:19" +ik[96] = 1.096 +il[96] = 60 +im[96] = 0.1131 +ij[96] = 27.5 +id[97] = "2006-05-24T06:32:25" +ik[97] = 4.04 +il[97] = -152 +im[97] = 0.0085 +ij[97] = 27.6 +id[98] = "2006-06-07T06:20:18" +ik[98] = 0.593 +il[98] = -109 +im[98] = 0.0383 +ij[98] = 28.5 +id[99] = "2006-06-09T23:47:42" +ik[99] = 54.385 +il[99] = -100 +im[99] = 0.0304 +ij[99] = 8 +id[100] = "2006-07-02T10:51:32" +ik[100] = 5.971 +il[100] = -32 +im[100] = 0.1068 +ij[100] = 27.2 +id[101] = "2006-07-19T15:33:07" +ik[101] = 0.195 +il[101] = 20 +im[101] = 0.064 +ij[101] = 27.91 +id[102] = "2006-08-09T10:37:20" +ik[102] = 3.5 +il[102] = 84 +im[102] = 0.0312 +ij[102] = 28.1 +id[103] = "2006-08-27T11:44:00" +ik[103] = 0.676 +il[103] = 139 +im[103] = 0.079 +ij[103] = 28.8 +id[104] = "2006-09-16T04:43:59" +ik[104] = 0.51 +il[104] = -160 +im[104] = 0.0767 +ij[104] = 28.7 +id[105] = "2006-10-28T03:38:52" +ik[105] = 0.96 +il[105] = 138 +im[105] = 0.0797 +ij[105] = 12 +id[106] = "2007-01-10T00:51:05" +ik[106] = 0.223 +il[106] = -10 +im[106] = 0.0801 +ij[106] = 27.3 +id[107] = "2007-01-22T15:28:13" +ik[107] = 0.264 +il[107] = 29 +im[107] = 0.0385 +ij[107] = 28.6 +id[108] = "2007-01-27T18:04:25" +ik[108] = 1.168 +il[108] = 44 +im[108] = 0.0938 +ij[108] = 27.5 +id[109] = "2007-03-12T23:48:22" +ik[109] = 2.24 +il[109] = -178 +im[109] = 0.1031 +ij[109] = 27.6 +id[110] = "2007-03-30T17:30:50" +ik[110] = 54.243 +il[110] = -122 +im[110] = 0.1163 +ij[110] = 9 +id[111] = "2007-04-20T04:55:05" +ik[111] = 2.749 +il[111] = -58 +im[111] = 0.008 +ij[111] = 27.2 +id[112] = "2007-04-28T10:33:01" +ik[112] = 2.398 +il[112] = -32 +im[112] = 0.1489 +ij[112] = 28.5 +id[113] = "2007-06-08T15:20:48" +ik[113] = 90 +il[113] = 96 +im[113] = 0.1452 +ij[113] = 6 +id[114] = "2007-06-30T17:35:39" +ik[114] = 0.414 +il[114] = 148 +im[114] = 0.1834 +ij[114] = 28.8 +id[115] = "2007-07-26T05:25:09" +ik[115] = 0 +il[115] = -163 +im[115] = 0.4089 +ij[115] = 13 +id[116] = "2007-08-17T20:16:48" +ik[116] = 7.96 +il[116] = -128 +im[116] = 0.4414 +ij[116] = 11 +id[117] = "2007-08-20T12:24:47" +ik[117] = 0.5348 +il[117] = -118 +im[117] = 0.5348 +ij[117] = 2 +id[118] = "2007-09-08T15:38:46" +ik[118] = 44.43 +il[118] = -108 +im[118] = 0.0761 +ij[118] = 7.164 +id[119] = "2007-09-24T17:02:24" +ik[119] = 4.807 +il[119] = -86 +im[119] = 0.0675 +ij[119] = 28.8 +id[120] = "2007-10-11T20:23:31" +ik[120] = 77.62 +il[120] = -34 +im[120] = 0.2173 +ij[120] = 14 +id[121] = "2007-10-25T11:34:48" +ik[121] = 0.954 +il[121] = 8 +im[121] = 0.1208 +ij[121] = 28.7 +id[122] = "2007-10-27T15:20:48" +ik[122] = 90 +il[122] = 13 +im[122] = 0.1842 +ij[122] = 5 +id[123] = "2008-01-08T07:49:19" +ik[123] = 3.63 +il[123] = -122 +im[123] = 0.0734 +ij[123] = 27.1 +id[124] = "2008-01-12T01:16:38" +ik[124] = 53.731 +il[124] = -110 +im[124] = 0.1178 +ij[124] = 8 +id[125] = "2008-01-20T05:42:51" +ik[125] = 1.71 +il[125] = -84 +im[125] = 0.013 +ij[125] = 28.4 +id[126] = "2008-02-23T21:50:12" +ik[126] = 0.935 +il[126] = 24 +im[126] = 0.0897 +ij[126] = 27.3 +id[127] = "2008-02-27T04:11:08" +ik[127] = 1.636 +il[127] = 34 +im[127] = 0.1049 +ij[127] = 28.1 +id[128] = "2008-03-12T17:24:52" +ik[128] = 0.632 +il[128] = 79 +im[128] = 0.0919 +ij[128] = 27.5 +id[129] = "2008-03-15T20:19:58" +ik[129] = 0.596 +il[129] = 89 +im[129] = 0.0712 +ij[129] = 28.6 +id[130] = "2008-03-24T09:02:52" +ik[130] = 3.265 +il[130] = 115 +im[130] = 0.0741 +ij[130] = 28.1 +id[131] = "2008-04-25T16:40:29" +ik[131] = 3.43 +il[131] = -146 +im[131] = 0.0861 +ij[131] = 27.6 +id[132] = "2008-06-09T03:08:38" +ik[132] = 0.04 +il[132] = -147 +im[132] = 0.0798 +ij[132] = 12 +id[133] = "2008-07-31T16:15:10" +ik[133] = 1.066 +il[133] = -53 +im[133] = 0.0354 +ij[133] = 28.8 +id[134] = "2008-08-21T01:01:20" +ik[134] = 3.271 +il[134] = 10 +im[134] = 0.048 +ij[134] = 28.1 +id[135] = "2008-08-23T15:45:19" +ik[135] = 0.445 +il[135] = 18 +im[135] = 0.0818 +ij[135] = 28.7 +id[136] = "2008-09-16T00:45:47" +ik[136] = 5.595 +il[136] = 89 +im[136] = 0.0317 +ij[136] = 28.1 +id[137] = "2008-10-18T01:37:18" +ik[137] = 3.061 +il[137] = -174 +im[137] = 0.02 +ij[137] = 27.4 +id[138] = "2008-10-27T21:25:32" +ik[138] = 53.762 +il[138] = -144 +im[138] = 0.0924 +ij[138] = 9 +id[139] = "2008-12-14T04:59:58" +ik[139] = 1 +il[139] = 1 +im[139] = 0.0587 +ij[139] = 27.3 +id[140] = "2009-01-03T04:24:25" +ik[140] = 0.931 +il[140] = 64 +im[140] = 0.0904 +ij[140] = 27.5 +id[141] = "2009-01-17T00:34:30" +ik[141] = 90 +il[141] = 107 +im[141] = 0.112 +ij[141] = 6 +id[142] = "2009-01-23T23:49:03" +ik[142] = 2.58 +il[142] = 126 +im[142] = 0.24 +ij[142] = 28.6 +id[143] = "2009-03-05T20:23:58" +ik[143] = 0 +il[143] = -149 +im[143] = 0.4051 +ij[143] = 13 +id[144] = "2009-03-20T02:11:15" +ik[144] = 0.5345 +il[144] = -131 +im[144] = 0.5345 +ij[144] = 2 +id[145] = "2009-03-28T02:21:07" +ik[145] = 8.15 +il[145] = -114 +im[145] = 0.1649 +ij[145] = 11 +id[146] = "2009-04-17T20:29:33" +ik[146] = 43 +il[146] = -104 +im[146] = 0.3838 +ij[146] = 7.1625 +id[147] = "2009-05-21T01:34:19" +ik[147] = 76.22 +il[147] = -21 +im[147] = 0.0274 +ij[147] = 14 +id[148] = "2009-05-30T15:39:29" +ik[148] = 4.1 +il[148] = 9 +im[148] = 0.17 +ij[148] = 27.6 +id[149] = "2009-06-06T14:32:09" +ik[149] = 90 +il[149] = 29 +im[149] = 0.1193 +ij[149] = 5 +id[150] = "2009-08-17T20:46:27" +ik[150] = 54.496 +il[150] = -110 +im[150] = 0.0034 +ij[150] = 8 +id[151] = "2009-09-11T08:07:00" +ik[151] = 0.422 +il[151] = -36 +im[151] = 0.0975 +ij[151] = 28.5 +id[152] = "2009-09-15T21:13:49" +ik[152] = 0.299 +il[152] = -22 +im[152] = 0.0188 +ij[152] = 28.8 +id[153] = "2009-10-09T21:40:53" +ik[153] = 0.598 +il[153] = 53 +im[153] = 0.0936 +ij[153] = 28.7 +id[154] = "2009-11-30T22:23:32" +ik[154] = 4.911 +il[154] = -145 +im[154] = 0.0146 +ij[154] = 27.4 +id[155] = "2010-01-11T09:30:14" +ik[155] = 0.81 +il[155] = -146 +im[155] = 0.0608 +ij[155] = 12 +id[156] = "2010-03-09T07:40:48" +ik[156] = 1.106 +il[156] = -46 +im[156] = 0.0927 +ij[156] = 28.6 +id[157] = "2010-03-26T22:10:21" +ik[157] = 2.76 +il[157] = 4 +im[157] = 0.0767 +ij[157] = 27.6 +id[158] = "2010-04-09T03:30:48" +ik[158] = 4.468 +il[158] = 46 +im[158] = 0.0985 +ij[158] = 28.1 +id[159] = "2010-05-02T21:35:58" +ik[159] = 3.716 +il[159] = 120 +im[159] = 0.0465 +ij[159] = 27.2 +id[160] = "2010-06-07T10:34:54" +ik[160] = 54.672 +il[160] = -129 +im[160] = 0.1209 +ij[160] = 9 +id[161] = "2010-07-09T00:33:24" +ik[161] = 1.018 +il[161] = -32 +im[161] = 0.139 +ij[161] = 28.8 +id[162] = "2010-08-07T05:32:38" +ik[162] = 1.136 +il[162] = 56 +im[162] = 0.1789 +ij[162] = 28.7 +id[163] = "2010-08-09T19:05:39" +ik[163] = 1.797 +il[163] = 64 +im[163] = 0.1385 +ij[163] = 28.5 +id[164] = "2010-08-17T15:04:00" +ik[164] = 90 +il[164] = 88 +im[164] = 0.1716 +ij[164] = 6 +id[165] = "2010-10-07T01:34:46" +ik[165] = 0 +il[165] = -161 +im[165] = 0.259 +ij[165] = 13 +id[166] = "2010-10-29T11:35:31" +ik[166] = 5.93 +il[166] = -126 +im[166] = 0.5177 +ij[166] = 11 +id[167] = "2010-10-30T05:11:49" +ik[167] = 0.5271 +il[167] = -116 +im[167] = 0.5272 +ij[167] = 2 +id[168] = "2010-11-19T00:39:21" +ik[168] = 42.96 +il[168] = -106 +im[168] = 0.0371 +ij[168] = 7.1558 +id[169] = "2010-12-20T13:16:03" +ik[169] = 74.49 +il[169] = -29 +im[169] = 0.159 +ij[169] = 14 +id[170] = "2011-01-08T06:20:22" +ik[170] = 90 +il[170] = 17 +im[170] = 0.2298 +ij[170] = 5 +id[171] = "2011-01-17T08:34:12" +ik[171] = 2.118 +il[171] = 45 +im[171] = 0.0474 +ij[171] = 27.1 +id[172] = "2011-03-08T19:36:52" +ik[172] = 1.738 +il[172] = -157 +im[172] = 0.1387 +ij[172] = 27.3 +id[173] = "2011-03-27T05:05:18" +ik[173] = 0.197 +il[173] = -100 +im[173] = 0.0871 +ij[173] = 27.5 +id[174] = "2011-03-28T03:14:02" +ik[174] = 53.914 +il[174] = -97 +im[174] = 0.0708 +ij[174] = 8 +id[175] = "2011-05-01T00:14:24" +ik[175] = 0.905 +il[175] = 7 +im[175] = 0.0136 +ij[175] = 28.6 +id[176] = "2011-05-07T02:36:40" +ik[176] = 1.848 +il[176] = 26 +im[176] = 0.0961 +ij[176] = 28.1 +id[177] = "2011-05-10T23:51:15" +ik[177] = 3.72 +il[177] = 38 +im[177] = 0.0855 +ij[177] = 27.6 +id[178] = "2011-06-17T21:05:18" +ik[178] = 5.319 +il[178] = 153 +im[178] = 0.0596 +ij[178] = 27.2 +id[179] = "2011-08-16T04:56:38" +ik[179] = 1.28 +il[179] = -40 +im[179] = 0.0418 +ij[179] = 12 +id[180] = "2011-09-17T23:53:57" +ik[180] = 0.78 +il[180] = -128 +im[180] = 0.0718 +ij[180] = 28.7 +id[181] = "2011-10-14T23:11:28" +ik[181] = 0.732 +il[181] = -46 +im[181] = 0.0253 +ij[181] = 28.5 +id[182] = "2011-11-01T14:00:25" +ik[182] = 3.825 +il[182] = 8 +im[182] = 0.078 +ij[182] = 27.4 +id[183] = "2011-11-15T21:28:39" +ik[183] = 3.865 +il[183] = 51 +im[183] = 0.054 +ij[183] = 28.1 +id[184] = "2011-12-26T17:43:05" +ik[184] = 0.588 +il[184] = 176 +im[184] = 0.0174 +ij[184] = 27.3 +id[185] = "2012-01-13T06:50:57" +ik[185] = 53.606 +il[185] = -129 +im[185] = 0.0301 +ij[185] = 9 +id[186] = "2012-01-13T21:04:25" +ik[186] = 1.233 +il[186] = -128 +im[186] = 0.0436 +ij[186] = 27.5 +id[187] = "2012-02-01T20:28:27" +ik[187] = 1.244 +il[187] = -68 +im[187] = 0.1298 +ij[187] = 28.4 +id[188] = "2012-02-29T03:09:13" +ik[188] = 1.1 +il[188] = 17 +im[188] = 0.099 +ij[188] = 27.6 +id[189] = "2012-03-04T04:59:05" +ik[189] = 3.623 +il[189] = 30 +im[189] = 0.1658 +ij[189] = 28.6 +id[190] = "2012-03-29T07:57:40" +ik[190] = 90 +il[190] = 108 +im[190] = 0.1034 +ij[190] = 6 +id[191] = "2012-04-15T03:04:25" +ik[191] = 0.251 +il[191] = 149 +im[191] = 0.242 +ij[191] = 27.2 +id[192] = "2012-05-14T13:16:30" +ik[192] = 0 +il[192] = -153 +im[192] = 0.4153 +ij[192] = 13 +id[193] = "2012-06-06T01:36:28" +ik[193] = 0.15 +il[193] = -118 +im[193] = 0.1833 +ij[193] = 11 +id[194] = "2012-06-11T00:02:29" +ik[194] = 0.5132 +il[194] = -108 +im[194] = 0.5132 +ij[194] = 2 +id[195] = "2012-06-11T20:54:38" +ik[195] = 6.197 +il[195] = -101 +im[195] = 0.5027 +ij[195] = 27.2 +id[196] = "2012-06-27T15:46:08" +ik[196] = 44.1 +il[196] = -98 +im[196] = 0.3284 +ij[196] = 7.166 +id[197] = "2012-07-31T16:25:52" +ik[197] = 78.13 +il[197] = -21 +im[197] = 0.1023 +ij[197] = 14 +id[198] = "2012-08-15T04:14:46" +ik[198] = 90 +il[198] = 22 +im[198] = 0.0572 +ij[198] = 5 +id[199] = "2012-10-03T22:32:26" +ik[199] = 0.227 +il[199] = 174 +im[199] = 0.1427 +ij[199] = 28.8 +id[200] = "2012-10-26T23:54:58" +ik[200] = 54.135 +il[200] = -115 +im[200] = 0.015 +ij[200] = 8 +id[201] = "2012-11-01T21:38:35" +ik[201] = 0.821 +il[201] = -97 +im[201] = 0.114 +ij[201] = 28.7 +id[202] = "2012-12-23T03:47:31" +ik[202] = 0.226 +il[202] = 63 +im[202] = 0.0572 +ij[202] = 28.5 +id[203] = "2012-12-24T16:07:05" +ik[203] = 4.451 +il[203] = 67 +im[203] = 0.0317 +ij[203] = 27.1 +id[204] = "2013-02-08T05:06:38" +ik[204] = 0.454 +il[204] = -151 +im[204] = 0.0249 +ij[204] = 27.3 +id[205] = "2013-03-29T00:17:16" +ik[205] = 1.32 +il[205] = -152 +im[205] = 0.0296 +ij[205] = 12 +id[206] = "2013-05-17T04:19:31" +ik[206] = 4.343 +il[206] = -52 +im[206] = 0.0835 +ij[206] = 27.2 +id[207] = "2013-05-25T01:48:17" +ik[207] = 3.396 +il[207] = -32 +im[207] = 0.024 +ij[207] = 28.1 +id[208] = "2013-06-03T23:10:01" +ik[208] = 0.12 +il[208] = -1 +im[208] = 0.0878 +ij[208] = 27.9 +id[209] = "2013-06-20T11:47:11" +ik[209] = 1.565 +il[209] = 50 +im[209] = 0.081 +ij[209] = 28.1 +id[210] = "2013-07-26T12:16:59" +ik[210] = 0.763 +il[210] = 161 +im[210] = 0.0369 +ij[210] = 28.8 +id[211] = "2013-08-14T08:09:12" +ik[211] = 54.44 +il[211] = -141 +im[211] = 0.092 +ij[211] = 9 +id[212] = "2013-08-26T17:23:16" +ik[212] = 0.495 +il[212] = -104 +im[212] = 0.0703 +ij[212] = 28.7 +id[213] = "2013-10-07T08:06:38" +ik[213] = 1.546 +il[213] = 23 +im[213] = 0.0472 +ij[213] = 27.4 +id[214] = "2013-10-31T03:33:11" +ik[214] = 90 +il[214] = 96 +im[214] = 0.2192 +ij[214] = 6 +id[215] = "2013-11-28T21:14:24" +ik[215] = 2.798 +il[215] = 167 +im[215] = 0.314 +ij[215] = 28.5 +id[216] = "2013-12-20T16:26:19" +ik[216] = 0 +il[216] = -152 +im[216] = 0.0642 +ij[216] = 13 +id[217] = "2014-01-08T19:30:51" +ik[217] = 0.555 +il[217] = -130 +im[217] = 0.5551 +ij[217] = 2 +id[218] = "2014-01-11T02:36:57" +ik[218] = 5.14 +il[218] = -118 +im[218] = 0.4746 +ij[218] = 11 +id[219] = "2014-01-31T20:04:57" +ik[219] = 42.15 +il[219] = -108 +im[219] = 0.2812 +ij[219] = 7.1554 +id[220] = "2014-03-04T16:58:42" +ik[220] = 74.02 +il[220] = -20 +im[220] = 0.269 +ij[220] = 14 +id[221] = "2014-03-15T13:43:58" +ik[221] = 4.134 +il[221] = 3 +im[221] = 0.1342 +ij[221] = 27.3 +id[222] = "2014-03-23T17:22:52" +ik[222] = 90 +il[222] = 28 +im[222] = 0.1554 +ij[222] = 5 +id[223] = "2014-04-06T05:03:05" +ik[223] = 1.011 +il[223] = 70 +im[223] = 0.1621 +ij[223] = 27.5 +id[224] = "2014-05-11T08:41:51" +ik[224] = 0.217 +il[224] = 179 +im[224] = 0.0094 +ij[224] = 28.4 +id[225] = "2014-05-23T22:18:11" +ik[225] = 4.03 +il[225] = -143 +im[225] = 0.045 +ij[225] = 27.6 +id[226] = "2014-06-07T16:12:47" +ik[226] = 54.373 +il[226] = -98 +im[226] = 0.0677 +ij[226] = 8 +id[227] = "2014-06-13T03:58:01" +ik[227] = 0.456 +il[227] = -81 +im[227] = 0.061 +ij[227] = 28.6 +id[228] = "2014-07-02T00:54:38" +ik[228] = 5.946 +il[228] = -23 +im[228] = 0.1098 +ij[228] = 27.2 +id[229] = "2014-07-19T05:13:55" +ik[229] = 0.171 +il[229] = 29 +im[229] = 0.0872 +ij[229] = 27.91 +id[230] = "2014-09-10T10:29:42" +ik[230] = 0.509 +il[230] = -168 +im[230] = 0.0425 +ij[230] = 28.8 +id[231] = "2014-10-25T17:18:14" +ik[231] = 1 +il[231] = -169 +im[231] = 0.0314 +ij[231] = 12 +id[232] = "2015-01-09T14:11:04" +ik[232] = 0.235 +il[232] = -2 +im[232] = 0.0491 +ij[232] = 27.3 +id[233] = "2015-01-11T10:32:00" +ik[233] = 1.356 +il[233] = 4 +im[233] = 0.0742 +ij[233] = 28.1 +id[234] = "2015-01-19T13:30:25" +ik[234] = 0.492 +il[234] = 29 +im[234] = 0.0518 +ij[234] = 28.5 +id[235] = "2015-01-27T07:37:44" +ik[235] = 1.172 +il[235] = 53 +im[235] = 0.0884 +ij[235] = 27.5 +id[236] = "2015-03-12T14:06:03" +ik[236] = 2.21 +il[236] = -169 +im[236] = 0.0775 +ij[236] = 27.6 +id[237] = "2015-03-28T08:44:48" +ik[237] = 54.219 +il[237] = -119 +im[237] = 0.1134 +ij[237] = 9 +id[238] = "2015-04-16T01:41:51" +ik[238] = 3.416 +il[238] = -67 +im[238] = 0.1222 +ij[238] = 28.6 +id[239] = "2015-04-19T21:07:31" +ik[239] = 2.701 +il[239] = -49 +im[239] = 0.0567 +ij[239] = 27.2 +id[240] = "2015-06-06T09:00:28" +ik[240] = 90 +il[240] = 98 +im[240] = 0.0252 +ij[240] = 6 +id[241] = "2015-07-24T16:59:09" +ik[241] = 0 +il[241] = -159 +im[241] = 0.3966 +ij[241] = 13 +id[242] = "2015-08-15T11:34:04" +ik[242] = 7.82 +il[242] = -125 +im[242] = 0.0976 +ij[242] = 11 +id[243] = "2015-08-21T13:55:01" +ik[243] = 0.5213 +il[243] = -115 +im[243] = 0.5213 +ij[243] = 2 +id[244] = "2015-09-06T17:02:43" +ik[244] = 44 +il[244] = -105 +im[244] = 0.2983 +ij[244] = 7.1645 +id[245] = "2015-10-09T14:36:26" +ik[245] = 76.9 +il[245] = -23 +im[245] = 0.0406 +ij[245] = 14 +id[246] = "2015-10-17T08:42:34" +ik[246] = 1.769 +il[246] = -7 +im[246] = 0.2414 +ij[246] = 28.8 +id[247] = "2015-10-25T06:24:48" +ik[247] = 90 +il[247] = 16 +im[247] = 0.0515 +ij[247] = 5 +id[248] = "2015-11-23T21:15:15" +ik[248] = 1.23 +il[248] = 107 +im[248] = 0.042 +ij[248] = 28.7 +id[249] = "2016-01-07T22:54:38" +ik[249] = 3.669 +il[249] = -113 +im[249] = 0.0236 +ij[249] = 27.1 +id[250] = "2016-01-09T13:04:22" +ik[250] = 53.737 +il[250] = -108 +im[250] = 0.0595 +ij[250] = 8 +id[251] = "2016-02-23T11:38:11" +ik[251] = 0.914 +il[251] = 32 +im[251] = 0.0592 +ij[251] = 27.3 +id[252] = "2016-03-12T06:54:38" +ik[252] = 0.643 +il[252] = 88 +im[252] = 0.083 +ij[252] = 27.5 +id[253] = "2016-03-25T11:50:12" +ik[253] = 0.071 +il[253] = 128 +im[253] = 0.0635 +ij[253] = 28.5 +id[254] = "2016-04-25T05:50:56" +ik[254] = 3.42 +il[254] = -138 +im[254] = 0.0639 +ij[254] = 27.6 +id[255] = "2016-06-06T21:34:33" +ik[255] = 0 +il[255] = -139 +im[255] = 0.0338 +ij[255] = 12 +id[256] = "2016-07-16T23:05:51" +ik[256] = 1.691 +il[256] = -83 +im[256] = 0.0657 +ij[256] = 28.1 +id[257] = "2016-08-14T16:55:12" +ik[257] = 0.522 +il[257] = 0 +im[257] = 0.0847 +ij[257] = 28.8 +id[258] = "2016-08-29T11:18:14" +ik[258] = 4.527 +il[258] = 45 +im[258] = 0.0807 +ij[258] = 28.1 +id[259] = "2016-09-18T07:41:48" +ik[259] = 0.23 +il[259] = 106 +im[259] = 0.0122 +ij[259] = 28.7 +id[260] = "2016-10-17T16:23:58" +ik[260] = 3.027 +il[260] = -165 +im[260] = 0.0268 +ij[260] = 27.4 +id[261] = "2016-10-25T09:31:03" +ik[261] = 53.782 +il[261] = -142 +im[261] = 0.1217 +ij[261] = 9 +id[262] = "2016-12-13T23:02:11" +ik[262] = 1.013 +il[262] = 11 +im[262] = 0.1101 +ij[262] = 27.3 +id[263] = "2017-01-03T02:11:58" +ik[263] = 0.892 +il[263] = 73 +im[263] = 0.0308 +ij[263] = 27.5 +id[264] = "2017-01-14T13:24:57" +ik[264] = 90 +il[264] = 109 +im[264] = 0.0734 +ij[264] = 6 +id[265] = "2017-03-03T14:36:53" +ik[265] = 0 +il[265] = -146 +im[265] = 0.2511 +ij[265] = 13 +id[266] = "2017-03-21T04:34:56" +ik[266] = 0.5418 +il[266] = -126 +im[266] = 0.5419 +ij[266] = 2 +id[267] = "2017-03-25T16:43:40" +ik[267] = 8.28 +il[267] = -112 +im[267] = 0.2764 +ij[267] = 11 +id[268] = "2017-04-15T15:41:28" +ik[268] = 43.04 +il[268] = -102 +im[268] = 0.4409 +ij[268] = 7.1623 +id[269] = "2017-05-18T14:51:15" +ik[269] = 76.01 +il[269] = -19 +im[269] = 0.2008 +ij[269] = 14 +id[270] = "2017-05-19T15:03:10" +ik[270] = 0.26 +il[270] = -9 +im[270] = 0.1567 +ij[270] = 28.5 +id[271] = "2017-05-30T20:18:59" +ik[271] = 4.13 +il[271] = 19 +im[271] = 0.194 +ij[271] = 27.6 +id[272] = "2017-06-04T06:08:52" +ik[272] = 90 +il[272] = 32 +im[272] = 0.047 +ij[272] = 5 +id[273] = "2017-07-24T15:12:40" +ik[273] = 0.585 +il[273] = -174 +im[273] = 0.1074 +ij[273] = 28.6 +id[274] = "2017-08-15T13:43:31" +ik[274] = 54.5 +il[274] = -107 +im[274] = 0.0846 +ij[274] = 8 +id[275] = "2017-09-30T00:00:51" +ik[275] = 0.289 +il[275] = 32 +im[275] = 0.0722 +ij[275] = 28.8 +id[276] = "2017-11-04T05:01:32" +ik[276] = 0.783 +il[276] = 141 +im[276] = 0.0238 +ij[276] = 28.7 +id[277] = "2017-11-30T11:45:17" +ik[277] = 4.892 +il[277] = -137 +im[277] = 0.0479 +ij[277] = 27.4 +id[278] = "2018-01-08T19:37:55" +ik[278] = 0.76 +il[278] = -138 +im[278] = 0.087 +ij[278] = 12 +id[279] = "2018-03-04T10:02:55" +ik[279] = 2.775 +il[279] = -56 +im[279] = 0.0272 +ij[279] = 28.1 +id[280] = "2018-03-20T17:01:32" +ik[280] = 3.662 +il[280] = -5 +im[280] = 0.034 +ij[280] = 28.1 +id[281] = "2018-03-26T11:29:55" +ik[281] = 2.75 +il[281] = 13 +im[281] = 0.0881 +ij[281] = 27.6 +id[282] = "2018-04-17T05:54:48" +ik[282] = 1.125 +il[282] = 81 +im[282] = 0.0169 +ij[282] = 28.5 +id[283] = "2018-05-02T11:31:04" +ik[283] = 3.688 +il[283] = 129 +im[283] = 0.0098 +ij[283] = 27.2 +id[284] = "2018-05-26T05:32:21" +ik[284] = 2.321 +il[284] = -157 +im[284] = 0.1085 +ij[284] = 28.6 +id[285] = "2018-06-05T04:50:12" +ik[285] = 54.668 +il[285] = -126 +im[285] = 0.0745 +ij[285] = 9 +id[286] = "2018-06-21T13:02:55" +ik[286] = 0.705 +il[286] = -76 +im[286] = 0.1176 +ij[286] = 28.4 +id[287] = "2018-07-24T18:45:30" +ik[287] = 0.36 +il[287] = 25 +im[287] = 0.1726 +ij[287] = 28.8 +id[288] = "2018-08-15T05:19:21" +ik[288] = 90 +il[288] = 90 +im[288] = 0.0306 +ij[288] = 6 +id[289] = "2018-09-11T01:39:04" +ik[289] = 4.99 +il[289] = 156 +im[289] = 0.1278 +ij[289] = 28.7 +id[290] = "2018-10-04T14:51:42" +ik[290] = 0 +il[290] = -159 +im[290] = 0.4131 +ij[290] = 13 +id[291] = "2018-10-18T03:21:17" +ik[291] = 0.5433 +il[291] = -142 +im[291] = 0.5433 +ij[291] = 2 +id[292] = "2018-10-27T00:50:24" +ik[292] = 6.21 +il[292] = -124 +im[292] = 0.2769 +ij[292] = 11 +id[293] = "2018-11-16T13:56:17" +ik[293] = 42.96 +il[293] = -114 +im[293] = 0.3645 +ij[293] = 7.156 +id[294] = "2018-11-30T16:38:47" +ik[294] = 0.78 +il[294] = -91 +im[294] = 0.2348 +ij[294] = 28.7 +id[295] = "2018-12-18T03:39:00" +ik[295] = 74.53 +il[295] = -27 +im[295] = 0.0685 +ij[295] = 14 +id[296] = "2019-01-05T19:14:20" +ik[296] = 90 +il[296] = 19 +im[296] = 0.1597 +ij[296] = 5 +id[297] = "2019-01-17T06:53:44" +ik[297] = 2.201 +il[297] = 55 +im[297] = 0.0233 +ij[297] = 27.1 +id[298] = "2019-03-08T11:17:44" +ik[298] = 1.697 +il[298] = -148 +im[298] = 0.1183 +ij[298] = 27.3 +id[299] = "2019-03-25T16:09:20" +ik[299] = 53.899 +il[299] = -95 +im[299] = 0.1182 +ij[299] = 8 +id[300] = "2019-03-26T19:52:51" +ik[300] = 0.219 +il[300] = -91 +im[300] = 0.113 +ij[300] = 27.5 +id[301] = "2019-05-10T13:33:52" +ik[301] = 3.71 +il[301] = 46 +im[301] = 0.0949 +ij[301] = 27.6 +id[302] = "2019-06-17T10:13:18" +ik[302] = 5.3 +il[302] = 161 +im[302] = 0.0257 +ij[302] = 27.2 +id[303] = "2019-06-23T16:28:33" +ik[303] = 0.051 +il[303] = -180 +im[303] = 0.0928 +ij[303] = 28.5 +id[304] = "2019-08-13T22:36:28" +ik[304] = 1.26 +il[304] = 179 +im[304] = 0.0266 +ij[304] = 12 +id[305] = "2019-10-12T21:51:33" +ik[305] = 0.016 +il[305] = -42 +im[305] = 0.0433 +ij[305] = 28.7 +id[306] = "2019-10-31T09:03:27" +ik[306] = 2.637 +il[306] = 14 +im[306] = 0.0347 +ij[306] = 28.1 +id[307] = "2019-11-01T03:36:24" +ik[307] = 3.803 +il[307] = 16 +im[307] = 0.0488 +ij[307] = 27.4 +id[308] = "2019-12-26T08:02:37" +ik[308] = 0.602 +il[308] = -175 +im[308] = 0.0597 +ij[308] = 27.3 +id[309] = "2020-01-10T17:31:08" +ik[309] = 53.596 +il[309] = -127 +im[309] = 0.0708 +ij[309] = 9 +id[310] = "2020-01-13T12:02:37" +ik[310] = 1.232 +il[310] = -119 +im[310] = 0.0054 +ij[310] = 27.5 +id[311] = "2020-02-28T21:16:46" +ik[311] = 1.03 +il[311] = 26 +im[311] = 0.0408 +ij[311] = 27.6 +id[312] = "2020-03-27T00:47:48" +ik[312] = 90 +il[312] = 111 +im[312] = 0.0725 +ij[312] = 6 +id[313] = "2020-04-15T19:35:04" +ik[313] = 0.085 +il[313] = 159 +im[313] = 0.2317 +ij[313] = 27.2 +id[314] = "2020-05-12T03:39:27" +ik[314] = 0 +il[314] = -151 +im[314] = 0.2144 +ij[314] = 13 +id[315] = "2020-06-03T18:43:12" +ik[315] = 0.48 +il[315] = -115 +im[315] = 0.2226 +ij[315] = 11 +id[316] = "2020-06-06T12:09:44" +ik[316] = 5.075 +il[316] = -101 +im[316] = 0.1153 +ij[316] = 27.2 +id[317] = "2020-06-12T03:29:18" +ik[317] = 0.5106 +il[317] = -105 +im[317] = 0.5106 +ij[317] = 2 +id[318] = "2020-06-25T07:16:05" +ik[318] = 44.15 +il[318] = -95 +im[318] = 0.3994 +ij[318] = 7.166 +id[319] = "2020-07-29T08:32:52" +ik[319] = 78.2 +il[319] = -18 +im[319] = 0.0876 +ij[319] = 14 +id[320] = "2020-08-12T20:57:50" +ik[320] = 90 +il[320] = 25 +im[320] = 0.1124 +ij[320] = 5 +id[321] = "2020-08-26T02:41:25" +ik[321] = 2.342 +il[321] = 65 +im[321] = 0.1139 +ij[321] = 28.5 +id[322] = "2020-09-02T15:17:25" +ik[322] = 1.9 +il[322] = 88 +im[322] = 0.1343 +ij[322] = 28.6 +id[323] = "2020-10-18T14:37:23" +ik[323] = 0.063 +il[323] = -131 +im[323] = 0.1027 +ij[323] = 28.8 +id[324] = "2020-10-24T14:40:29" +ik[324] = 54.152 +il[324] = -113 +im[324] = 0.0814 +ij[324] = 8 +id[325] = "2020-11-09T15:23:28" +ik[325] = 0.159 +il[325] = -63 +im[325] = 0.0762 +ij[325] = 28.4 +id[326] = "2020-11-27T17:18:14" +ik[326] = 1.148 +il[326] = -7 +im[326] = 0.0042 +ij[326] = 28.7 +id[327] = "2020-12-24T05:43:57" +ik[327] = 4.478 +il[327] = 76 +im[327] = 0.0696 +ij[327] = 27.1 +id[328] = "2021-02-07T18:19:04" +ik[328] = 0.439 +il[328] = -142 +im[328] = 0.0545 +ij[328] = 27.3 +id[329] = "2021-02-13T08:09:01" +ik[329] = 2.908 +il[329] = -136 +im[329] = 0.043 +ij[329] = 28.1 +id[330] = "2021-03-26T13:10:33" +ik[330] = 1.35 +il[330] = -137 +im[330] = 0.0422 +ij[330] = 12 +id[331] = "2021-05-16T17:32:50" +ik[331] = 4.321 +il[331] = -48 +im[331] = 0.0598 +ij[331] = 27.2 +id[332] = "2021-05-29T03:07:46" +ik[332] = 0.253 +il[332] = -10 +im[332] = 0.0301 +ij[332] = 28.1 +id[333] = "2021-06-03T12:18:08" +ik[333] = 0.138 +il[333] = 7 +im[333] = 0.094 +ij[333] = 27.9 +id[334] = "2021-07-07T02:22:59" +ik[334] = 0.802 +il[334] = 112 +im[334] = 0.0917 +ij[334] = 28.6 +id[335] = "2021-07-22T12:47:05" +ik[335] = 0.333 +il[335] = 159 +im[335] = 0.0802 +ij[335] = 28.5 +id[336] = "2021-08-10T00:04:01" +ik[336] = 0.159 +il[336] = -145 +im[336] = 0.0363 +ij[336] = 28.8 +id[337] = "2021-08-12T00:52:04" +ik[337] = 54.458 +il[337] = -138 +im[337] = 0.0169 +ij[337] = 9 +id[338] = "2021-09-23T06:55:52" +ik[338] = 2 +il[338] = -10 +im[338] = 0.0492 +ij[338] = 28.7 +id[339] = "2021-10-07T04:11:04" +ik[339] = 1.465 +il[339] = 32 +im[339] = 0.099 +ij[339] = 27.4 +id[340] = "2021-10-28T14:48:06" +ik[340] = 90 +il[340] = 98 +im[340] = 0.1452 +ij[340] = 6 +id[341] = "2021-12-18T08:33:20" +ik[341] = 0 +il[341] = -149 +im[341] = 0.2991 +ij[341] = 13 +id[342] = "2022-01-08T15:24:28" +ik[342] = 4.81 +il[342] = -115 +im[342] = 0.5461 +ij[342] = 11 +id[343] = "2022-01-09T19:36:13" +ik[343] = 0.5674 +il[343] = -105 +im[343] = 0.5675 +ij[343] = 2 +id[344] = "2022-01-29T13:43:55" +ik[344] = 42.22 +il[344] = -95 +im[344] = 0.0942 +ij[344] = 7.1553 +id[345] = "2022-03-02T04:41:40" +ik[345] = 73.84 +il[345] = -18 +im[345] = 0.1679 +ij[345] = 14 +id[346] = "2022-03-15T17:38:37" +ik[346] = 3.961 +il[346] = 14 +im[346] = 0.0682 +ij[346] = 27.3 +id[347] = "2022-03-21T05:59:09" +ik[347] = 90 +il[347] = 30 +im[347] = 0.2071 +ij[347] = 5 +id[348] = "2022-04-06T01:29:44" +ik[348] = 0.932 +il[348] = 79 +im[348] = 0.1874 +ij[348] = 27.5 +id[349] = "2022-05-23T13:49:39" +ik[349] = 4.02 +il[349] = -134 +im[349] = 0.0836 +ij[349] = 27.6 +id[350] = "2022-06-05T08:34:18" +ik[350] = 54.36 +il[350] = -95 +im[350] = 0.1212 +ij[350] = 8 +id[351] = "2022-07-01T14:51:57" +ik[351] = 5.921 +il[351] = -15 +im[351] = 0.0924 +ij[351] = 27.2 +id[352] = "2022-07-18T18:44:38" +ik[352] = 0.148 +il[352] = 37 +im[352] = 0.097 +ij[352] = 27.91 +id[353] = "2022-08-28T18:21:44" +ik[353] = 0.255 +il[353] = 163 +im[353] = 0.047 +ij[353] = 28.6 +id[354] = "2022-10-23T07:00:28" +ik[354] = 1.04 +il[354] = 162 +im[354] = 0.0393 +ij[354] = 12 +id[355] = "2022-12-01T05:15:21" +ik[355] = 0.396 +il[355] = -102 +im[355] = 0.0858 +ij[355] = 28.4 +id[356] = "2023-01-09T03:34:10" +ik[356] = 0.247 +il[356] = 7 +im[356] = 0.0099 +ij[356] = 27.3 +id[357] = "2023-01-26T21:11:03" +ik[357] = 1.175 +il[357] = 62 +im[357] = 0.0676 +ij[357] = 27.5 +id[358] = "2023-03-12T04:26:29" +ik[358] = 2.19 +il[358] = -160 +im[358] = 0.0401 +ij[358] = 27.6 +id[359] = "2023-03-25T23:44:33" +ik[359] = 54.195 +il[359] = -117 +im[359] = 0.0385 +ij[359] = 9 +id[360] = "2023-04-19T13:27:57" +ik[360] = 2.651 +il[360] = -40 +im[360] = 0.1008 +ij[360] = 27.2 +id[361] = "2023-06-04T02:43:41" +ik[361] = 90 +il[361] = 102 +im[361] = 0.1425 +ij[361] = 6 +id[362] = "2023-07-22T04:42:07" +ik[362] = 0 +il[362] = -157 +im[362] = 0.1498 +ij[362] = 13 +id[363] = "2023-08-09T10:11:19" +ik[363] = 0.509 +il[363] = -135 +im[363] = 0.5091 +ij[363] = 2 +id[364] = "2023-08-13T02:57:07" +ik[364] = 7.67 +il[364] = -122 +im[364] = 0.3352 +ij[364] = 11 +id[365] = "2023-09-04T05:46:42" +ik[365] = 44.04 +il[365] = -112 +im[365] = 0.4086 +ij[365] = 7.1647 +id[366] = "2023-10-07T08:05:30" +ik[366] = 77.14 +il[366] = -20 +im[366] = 0.1628 +ij[366] = 14 +id[367] = "2023-10-10T19:01:55" +ik[367] = 3.242 +il[367] = -12 +im[367] = 0.0278 +ij[367] = 28.6 +id[368] = "2023-10-22T21:29:41" +ik[368] = 90 +il[368] = 19 +im[368] = 0.1158 +ij[368] = 5 +id[369] = "2023-11-03T22:38:03" +ik[369] = 0.424 +il[369] = 56 +im[369] = 0.1702 +ij[369] = 28.8 +id[370] = "2023-12-10T03:21:10" +ik[370] = 0.774 +il[370] = 167 +im[370] = 0.0183 +ij[370] = 28.5 +id[371] = "2023-12-21T07:19:46" +ik[371] = 1.777 +il[371] = -158 +im[371] = 0.0661 +ij[371] = 28.7 +id[372] = "2024-01-07T00:55:40" +ik[372] = 53.743 +il[372] = -106 +im[372] = 0.0446 +ij[372] = 8 +id[373] = "2024-01-07T13:52:50" +ik[373] = 3.708 +il[373] = -104 +im[373] = 0.0321 +ij[373] = 27.1 +id[374] = "2024-02-23T01:22:37" +ik[374] = 0.894 +il[374] = 41 +im[374] = 0.0195 +ij[374] = 27.3 +id[375] = "2024-03-11T20:24:23" +ik[375] = 0.654 +il[375] = 96 +im[375] = 0.0601 +ij[375] = 27.5 +id[376] = "2024-04-19T12:26:21" +ik[376] = 0.898 +il[376] = -145 +im[376] = 0.0555 +ij[376] = 28.1 +id[377] = "2024-04-24T19:00:20" +ik[377] = 3.41 +il[377] = -129 +im[377] = 0.031 +ij[377] = 27.6 +id[378] = "2024-06-04T15:54:43" +ik[378] = 0.05 +il[378] = -130 +im[378] = 0.0342 +ij[378] = 12 +id[379] = "2024-08-08T00:45:56" +ik[379] = 3.799 +il[379] = -10 +im[379] = 0.0359 +ij[379] = 28.1 +id[380] = "2024-08-19T08:00:40" +ik[380] = 0.69 +il[380] = 24 +im[380] = 0.0399 +ij[380] = 28.6 +id[381] = "2024-08-28T20:04:42" +ik[381] = 0.188 +il[381] = 53 +im[381] = 0.0963 +ij[381] = 28.8 +id[382] = "2024-10-14T21:18:25" +ik[382] = 1.164 +il[382] = -164 +im[382] = 0.1022 +ij[382] = 28.7 +id[383] = "2024-10-17T07:17:43" +ik[383] = 2.992 +il[383] = -157 +im[383] = 0.0657 +ij[383] = 27.4 +id[384] = "2024-10-22T21:43:42" +ik[384] = 53.803 +il[384] = -140 +im[384] = 0.071 +ij[384] = 9 +id[385] = "2024-11-03T13:47:51" +ik[385] = 2.038 +il[385] = -104 +im[385] = 0.0368 +ij[385] = 28.5 +id[386] = "2024-12-12T09:42:37" +ik[386] = 0.347 +il[386] = 16 +im[386] = 0.156 +ij[386] = 28.4 +id[387] = "2024-12-13T17:21:43" +ik[387] = 1.026 +il[387] = 20 +im[387] = 0.1464 +ij[387] = 27.3 +id[388] = "2025-01-03T00:34:37" +ik[388] = 0.848 +il[388] = 83 +im[388] = 0.0296 +ij[388] = 27.5 +id[389] = "2025-01-12T02:08:18" +ik[389] = 90 +il[389] = 112 +im[389] = 0.2026 +ij[389] = 6 +id[390] = "2025-03-01T08:05:57" +ik[390] = 0 +il[390] = -143 +im[390] = 0.0968 +ij[390] = 13 +id[391] = "2025-03-22T09:53:17" +ik[391] = 0.5373 +il[391] = -120 +im[391] = 0.5374 +ij[391] = 2 +id[392] = "2025-03-23T07:00:28" +ik[392] = 8.4 +il[392] = -109 +im[392] = 0.5259 +ij[392] = 11 +id[393] = "2025-04-13T07:08:31" +ik[393] = 42.96 +il[393] = -99 +im[393] = 0.2383 +ij[393] = 7.1621 +id[394] = "2025-05-16T03:55:16" +ik[394] = 75.83 +il[394] = -16 +im[394] = 0.2642 +ij[394] = 14 +id[395] = "2025-05-30T23:34:17" +ik[395] = 4.15 +il[395] = 30 +im[395] = 0.2072 +ij[395] = 27.6 +id[396] = "2025-06-01T21:38:31" +ik[396] = 90 +il[396] = 35 +im[396] = 0.1799 +ij[396] = 5 +id[397] = "2025-08-13T06:40:36" +ik[397] = 54.504 +il[397] = -104 +im[397] = 0.1136 +ij[397] = 8 +id[398] = "2025-10-11T11:13:20" +ik[398] = 0.871 +il[398] = 77 +im[398] = 0.0896 +ij[398] = 28.6 +id[399] = "2025-10-14T01:03:21" +ik[399] = 0.124 +il[399] = 85 +im[399] = 0.0848 +ij[399] = 28.8 +id[400] = "2025-11-25T00:19:35" +ik[400] = 0.738 +il[400] = -144 +im[400] = 0.0808 +ij[400] = 28.1 +id[401] = "2025-11-30T01:03:56" +ik[401] = 4.873 +il[401] = -128 +im[401] = 0.0729 +ij[401] = 27.4 +id[402] = "2025-11-30T02:52:04" +ik[402] = 0.487 +il[402] = -128 +im[402] = 0.0721 +ij[402] = 28.7 +id[403] = "2026-01-06T05:54:14" +ik[403] = 0.7 +il[403] = -129 +im[403] = 0.0513 +ij[403] = 12 +id[404] = "2026-02-28T07:57:04" +ik[404] = 3.477 +il[404] = -59 +im[404] = 0.0685 +ij[404] = 28.1 +id[405] = "2026-03-26T00:52:15" +ik[405] = 2.73 +il[405] = 21 +im[405] = 0.0862 +ij[405] = 27.6 +id[406] = "2026-05-02T01:30:10" +ik[406] = 3.659 +il[406] = 138 +im[406] = 0.0446 +ij[406] = 27.2 +id[407] = "2026-06-02T23:01:57" +ik[407] = 54.663 +il[407] = -123 +im[407] = 0.0159 +ij[407] = 9 +id[408] = "2026-08-10T16:10:37" +ik[408] = 2.279 +il[408] = 86 +im[408] = 0.1854 +ij[408] = 28.8 +id[409] = "2026-08-12T19:41:46" +ik[409] = 90 +il[409] = 93 +im[409] = 0.1408 +ij[409] = 6 +id[410] = "2026-08-20T21:32:58" +ik[410] = 4.365 +il[410] = 116 +im[410] = 0.1924 +ij[410] = 28.6 +id[411] = "2026-10-02T03:55:42" +ik[411] = 0 +il[411] = 170 +im[411] = 0.275 +ij[411] = 13 +id[412] = "2026-10-19T07:45:55" +ik[412] = 0.5533 +il[412] = -136 +im[412] = 0.5534 +ij[412] = 2 +id[413] = "2026-10-24T14:05:16" +ik[413] = 6.47 +il[413] = -121 +im[413] = 0.1815 +ij[413] = 11 +id[414] = "2026-11-14T02:58:17" +ik[414] = 42.96 +il[414] = -111 +im[414] = 0.4721 +ij[414] = 7.1563 +id[415] = "2026-12-15T18:42:00" +ik[415] = 74.62 +il[415] = -24 +im[415] = 0.251 +ij[415] = 14 +id[416] = "2027-01-03T08:11:51" +ik[416] = 90 +il[416] = 21 +im[416] = 0.0354 +ij[416] = 5 +id[417] = "2027-01-09T09:18:43" +ik[417] = 3.079 +il[417] = 40 +im[417] = 0.194 +ij[417] = 28.7 +id[418] = "2027-01-17T04:34:10" +ik[418] = 2.281 +il[418] = 65 +im[418] = 0.0872 +ij[418] = 27.1 +id[419] = "2027-03-08T02:47:56" +ik[419] = 1.658 +il[419] = -140 +im[419] = 0.0783 +ij[419] = 27.3 +id[420] = "2027-03-16T12:39:53" +ik[420] = 0.708 +il[420] = -113 +im[420] = 0.0789 +ij[420] = 28.5 +id[421] = "2027-03-19T20:02:49" +ik[421] = 1.301 +il[421] = -103 +im[421] = 0.0042 +ij[421] = 28.4 +id[422] = "2027-03-23T04:53:58" +ik[422] = 53.884 +il[422] = -93 +im[422] = 0.0838 +ij[422] = 8 +id[423] = "2027-03-26T10:36:23" +ik[423] = 0.241 +il[423] = -83 +im[423] = 0.1191 +ij[423] = 27.5 +id[424] = "2027-05-10T03:18:16" +ik[424] = 3.7 +il[424] = 55 +im[424] = 0.09 +ij[424] = 27.6 +id[425] = "2027-06-16T23:22:37" +ik[425] = 5.282 +il[425] = 170 +im[425] = 0.0156 +ij[425] = 27.2 +id[426] = "2027-07-01T01:55:55" +ik[426] = 2.535 +il[426] = -147 +im[426] = 0.0434 +ij[426] = 28.1 +id[427] = "2027-08-11T16:23:31" +ik[427] = 1.24 +il[427] = -148 +im[427] = 0.0776 +ij[427] = 12 +id[428] = "2027-09-18T10:49:43" +ik[428] = 0.229 +il[428] = -103 +im[428] = 0.0294 +ij[428] = 28.8 +id[429] = "2027-10-04T11:17:39" +ik[429] = 1.67 +il[429] = -58 +im[429] = 0.0598 +ij[429] = 28.6 +id[430] = "2027-10-11T17:08:18" +ik[430] = 2.921 +il[430] = -35 +im[430] = 0.0824 +ij[430] = 28.1 +id[431] = "2027-10-31T17:15:56" +ik[431] = 3.78 +il[431] = 25 +im[431] = 0.0113 +ij[431] = 27.4 +id[432] = "2027-11-08T09:31:23" +ik[432] = 0.695 +il[432] = 48 +im[432] = 0.1008 +ij[432] = 28.7 +id[433] = "2027-12-25T22:25:43" +ik[433] = 0.615 +il[433] = -166 +im[433] = 0.0957 +ij[433] = 27.3 +id[434] = "2028-01-08T04:11:19" +ik[434] = 53.586 +il[434] = -125 +im[434] = 0.1189 +ij[434] = 9 +id[435] = "2028-01-13T03:03:56" +ik[435] = 1.231 +il[435] = -110 +im[435] = 0.0471 +ij[435] = 27.5 +id[436] = "2028-02-04T12:52:33" +ik[436] = 0.642 +il[436] = -40 +im[436] = 0.1187 +ij[436] = 28.5 +id[437] = "2028-02-28T15:55:06" +ik[437] = 0.96 +il[437] = 36 +im[437] = 0.0313 +ij[437] = 27.6 +id[438] = "2028-03-24T17:35:17" +ik[438] = 90 +il[438] = 114 +im[438] = 0.1984 +ij[438] = 6 +id[439] = "2028-04-16T17:06:36" +ik[439] = 0.095 +il[439] = 168 +im[439] = 0.2182 +ij[439] = 27.2 +id[440] = "2028-05-09T18:42:27" +ik[440] = 0 +il[440] = -148 +im[440] = 0.121 +ij[440] = 13 +id[441] = "2028-06-01T05:46:37" +ik[441] = 3.96 +il[441] = -123 +im[441] = 0.4799 +ij[441] = 27.2 +id[442] = "2028-06-01T11:49:55" +ik[442] = 0.8 +il[442] = -113 +im[442] = 0.4722 +ij[442] = 11 +id[443] = "2028-06-04T13:30:10" +ik[443] = 4.541 +il[443] = -102 +im[443] = 0.2422 +ij[443] = 27.2 +id[444] = "2028-06-13T09:17:25" +ik[444] = 0.4982 +il[444] = -92 +im[444] = 0.4982 +ij[444] = 2 +id[445] = "2028-06-23T17:45:02" +ik[445] = 44.96 +il[445] = -82 +im[445] = 0.2687 +ij[445] = 7.1658 +id[446] = "2028-07-27T00:22:46" +ik[446] = 78.24 +il[446] = -15 +im[446] = 0.2209 +ij[446] = 14 +id[447] = "2028-08-10T13:38:14" +ik[447] = 90 +il[447] = 28 +im[447] = 0.2139 +ij[447] = 5 +id[448] = "2028-10-22T05:29:34" +ik[448] = 54.168 +il[448] = -110 +im[448] = 0.1184 +ij[448] = 8 +id[449] = "2028-11-02T00:27:21" +ik[449] = 0.129 +il[449] = -77 +im[449] = 0.059 +ij[449] = 28.8 +id[450] = "2028-11-25T18:16:24" +ik[450] = 0.815 +il[450] = -3 +im[450] = 0.0749 +ij[450] = 28.6 +id[451] = "2028-12-23T19:20:49" +ik[451] = 4.504 +il[451] = 85 +im[451] = 0.0943 +ij[451] = 27.1 +id[452] = "2028-12-24T06:16:07" +ik[452] = 0.834 +il[452] = 86 +im[452] = 0.0909 +ij[452] = 28.7 +id[453] = "2029-01-23T04:42:05" +ik[453] = 2.79 +il[453] = 179 +im[453] = 0.0889 +ij[453] = 28.1 +id[454] = "2029-02-07T07:28:23" +ik[454] = 0.425 +il[454] = -134 +im[454] = 0.0763 +ij[454] = 27.3 +id[455] = "2029-03-24T01:49:26" +ik[455] = 1.37 +il[455] = -135 +im[455] = 0.0843 +ij[455] = 12 +id[456] = "2029-05-05T15:19:35" +ik[456] = 0.973 +il[456] = -68 +im[456] = 0.0888 +ij[456] = 28.1 +id[457] = "2029-05-16T06:48:49" +ik[457] = 4.299 +il[457] = -40 +im[457] = 0.0262 +ij[457] = 27.2 +id[458] = "2029-06-03T01:26:58" +ik[458] = 0.156 +il[458] = 16 +im[458] = 0.0821 +ij[458] = 27.9 +id[459] = "2029-08-09T17:42:02" +ik[459] = 54.475 +il[459] = -135 +im[459] = 0.0745 +ij[459] = 9 +id[460] = "2029-08-24T18:05:02" +ik[460] = 1.271 +il[460] = -90 +im[460] = 0.0691 +ij[460] = 28.8 +id[461] = "2029-10-01T20:29:02" +ik[461] = 4.333 +il[461] = 26 +im[461] = 0.1429 +ij[461] = 28.6 +id[462] = "2029-10-07T00:39:56" +ik[462] = 1.381 +il[462] = 42 +im[462] = 0.1401 +ij[462] = 27.4 +id[463] = "2029-10-24T06:35:42" +ik[463] = 3.42 +il[463] = 94 +im[463] = 0.1 +ij[463] = 28.7 +id[464] = "2029-10-26T02:00:21" +ik[464] = 90 +il[464] = 100 +im[464] = 0.0289 +ij[464] = 6 +id[465] = "2029-12-16T00:23:13" +ik[465] = 0 +il[465] = -147 +im[465] = 0.4761 +ij[465] = 13 +id[466] = "2030-01-06T04:12:00" +ik[466] = 4.46 +il[466] = -113 +im[466] = 0.2412 +ij[466] = 11 +id[467] = "2030-01-11T00:22:38" +ik[467] = 0.5703 +il[467] = -103 +im[467] = 0.5704 +ij[467] = 2 +id[468] = "2030-01-27T00:28:48" +ik[468] = 42 +il[468] = -93 +im[468] = 0.3752 +ij[468] = 7.1553 +id[469] = "2030-02-27T16:40:41" +ik[469] = 73.68 +il[469] = -16 +im[469] = 0.0544 +ij[469] = 14 +id[470] = "2030-03-15T20:12:49" +ik[470] = 3.801 +il[470] = 24 +im[470] = 0.0154 +ij[470] = 27.3 +id[471] = "2030-03-18T18:28:22" +ik[471] = 90 +il[471] = 32 +im[471] = 0.1138 +ij[471] = 5 +id[472] = "2030-04-05T21:34:36" +ik[472] = 0.858 +il[472] = 89 +im[472] = 0.1844 +ij[472] = 27.5 +id[473] = "2030-05-23T05:23:02" +ik[473] = 4.01 +il[473] = -125 +im[473] = 0.112 +ij[473] = 27.6 +id[474] = "2030-06-03T00:52:16" +ik[474] = 54.347 +il[474] = -92 +im[474] = 0.1014 +ij[474] = 8 +id[475] = "2030-06-13T10:51:27" +ik[475] = 0.559 +il[475] = -60 +im[475] = 0.0077 +ij[475] = 28.5 +id[476] = "2030-07-01T04:47:03" +ik[476] = 5.897 +il[476] = -6 +im[476] = 0.058 +ij[476] = 27.2 +id[477] = "2030-07-18T08:18:14" +ik[477] = 0.125 +il[477] = 46 +im[477] = 0.0893 +ij[477] = 27.91 +id[478] = "2030-09-06T01:53:19" +ik[478] = 2.53 +il[478] = -161 +im[478] = 0.0755 +ij[478] = 28.1 +id[479] = "2030-10-20T20:55:40" +ik[479] = 1.08 +il[479] = -162 +im[479] = 0.0854 +ij[479] = 12 +id[480] = "2030-12-02T15:48:23" +ik[480] = 0.355 +il[480] = -95 +im[480] = 0.0884 +ij[480] = 28.7 +id[481] = "2030-12-09T22:37:55" +ik[481] = 0.55 +il[481] = -72 +im[481] = 0.0207 +ij[481] = 28.1 +id[482] = "2031-01-08T16:57:43" +ik[482] = 0.259 +il[482] = 16 +im[482] = 0.035 +ij[482] = 27.3 +id[483] = "2031-01-26T10:44:23" +ik[483] = 1.178 +il[483] = 70 +im[483] = 0.0344 +ij[483] = 27.5 +id[484] = "2031-03-11T18:46:59" +ik[484] = 2.16 +il[484] = -151 +im[484] = 0.0067 +ij[484] = 27.6 +id[485] = "2031-03-23T14:33:37" +ik[485] = 54.172 +il[485] = -114 +im[485] = 0.0605 +ij[485] = 9 +id[486] = "2031-04-03T09:23:36" +ik[486] = 1.004 +il[486] = -80 +im[486] = 0.1306 +ij[486] = 28.4 +id[487] = "2031-04-19T05:58:09" +ik[487] = 2.601 +il[487] = -31 +im[487] = 0.1316 +ij[487] = 27.2 +id[488] = "2031-05-05T16:11:08" +ik[488] = 2.609 +il[488] = 20 +im[488] = 0.1367 +ij[488] = 28.5 +id[489] = "2031-06-01T20:30:26" +ik[489] = 90 +il[489] = 104 +im[489] = 0.2017 +ij[489] = 6 +id[490] = "2031-07-19T16:41:08" +ik[490] = 0 +il[490] = -154 +im[490] = 0.207 +ij[490] = 13 +id[491] = "2031-08-10T10:41:23" +ik[491] = 0.5236 +il[491] = -130 +im[491] = 0.5236 +ij[491] = 2 +id[492] = "2031-08-10T18:28:48" +ik[492] = 7.5 +il[492] = -120 +im[492] = 0.5221 +ij[492] = 11 +id[493] = "2031-09-01T15:59:44" +ik[493] = 43.97 +il[493] = -110 +im[493] = 0.215 +ij[493] = 7.1648 +id[494] = "2031-10-05T01:11:26" +ik[494] = 77.35 +il[494] = -25 +im[494] = 0.2621 +ij[494] = 14 +id[495] = "2031-10-20T12:44:17" +ik[495] = 90 +il[495] = 22 +im[495] = 0.204 +ij[495] = 5 +id[496] = "2031-11-19T20:17:57" +ik[496] = 0.201 +il[496] = 115 +im[496] = 0.1445 +ij[496] = 28.8 +id[497] = "2032-01-04T12:50:32" +ik[497] = 53.75 +il[497] = -103 +im[497] = 0.1176 +ij[497] = 8 +id[498] = "2032-01-07T04:50:36" +ik[498] = 3.745 +il[498] = -95 +im[498] = 0.0759 +ij[498] = 27.1 +id[499] = "2032-01-12T10:10:52" +ik[499] = 0.005 +il[499] = -79 +im[499] = 0.052 +ij[499] = 28.6 +id[500] = "2032-01-18T00:15:07" +ik[500] = 1.321 +il[500] = -61 +im[500] = 0.1068 +ij[500] = 28.7 +id[501] = "2032-02-22T15:03:56" +ik[501] = 0.874 +il[501] = 50 +im[501] = 0.0283 +ij[501] = 27.3 +id[502] = "2032-03-11T09:50:36" +ik[502] = 0.665 +il[502] = 105 +im[502] = 0.0277 +ij[502] = 27.5 +id[503] = "2032-03-27T09:57:36" +ik[503] = 1.744 +il[503] = 154 +im[503] = 0.0351 +ij[503] = 28.1 +id[504] = "2032-04-24T08:03:57" +ik[504] = 3.4 +il[504] = -121 +im[504] = 0.0094 +ij[504] = 27.6 +id[505] = "2032-06-02T10:07:40" +ik[505] = 0.11 +il[505] = -122 +im[505] = 0.0775 +ij[505] = 12 +id[506] = "2032-07-09T20:23:51" +ik[506] = 0.538 +il[506] = -88 +im[506] = 0.0249 +ij[506] = 28.5 +id[507] = "2032-07-15T19:49:09" +ik[507] = 2.954 +il[507] = -72 +im[507] = 0.0882 +ij[507] = 28.1 +id[508] = "2032-09-12T00:58:10" +ik[508] = 1.002 +il[508] = 106 +im[508] = 0.0816 +ij[508] = 28.8 +id[509] = "2032-10-16T22:15:02" +ik[509] = 2.957 +il[509] = -148 +im[509] = 0.0967 +ij[509] = 27.4 +id[510] = "2032-10-20T10:03:26" +ik[510] = 53.824 +il[510] = -137 +im[510] = 0.0294 +ij[510] = 9 +id[511] = "2032-11-12T05:44:50" +ik[511] = 1.893 +il[511] = -67 +im[511] = 0.1241 +ij[511] = 28.7 +id[512] = "2032-11-16T16:42:23" +ik[512] = 2.954 +il[512] = -54 +im[512] = 0.1022 +ij[512] = 28.6 +id[513] = "2032-12-13T11:59:29" +ik[513] = 1.037 +il[513] = 29 +im[513] = 0.1655 +ij[513] = 27.3 +id[514] = "2033-01-02T23:43:29" +ik[514] = 0.799 +il[514] = 93 +im[514] = 0.0888 +ij[514] = 27.5 +id[515] = "2033-01-09T14:44:35" +ik[515] = 90 +il[515] = 114 +im[515] = 0.19 +ij[515] = 6 +id[516] = "2033-02-27T01:11:53" +ik[516] = 0 +il[516] = -141 +im[516] = 0.3633 +ij[516] = 13 +id[517] = "2033-03-20T21:08:38" +ik[517] = 8.5 +il[517] = -107 +im[517] = 0.4378 +ij[517] = 11 +id[518] = "2033-03-23T07:34:44" +ik[518] = 0.525 +il[518] = -97 +im[518] = 0.5251 +ij[518] = 2 +id[519] = "2033-04-11T02:16:28" +ik[519] = 43.04 +il[519] = -87 +im[519] = 0.087 +ij[519] = 7.1618 +id[520] = "2033-05-13T16:57:10" +ik[520] = 75.66 +il[520] = -14 +im[520] = 0.1576 +ij[520] = 14 +id[521] = "2033-05-30T13:00:13" +ik[521] = 90 +il[521] = 37 +im[521] = 0.1967 +ij[521] = 5 +id[522] = "2033-05-31T01:26:58" +ik[522] = 4.17 +il[522] = 39 +im[522] = 0.2027 +ij[522] = 27.6 +id[523] = "2033-07-30T19:51:01" +ik[523] = 1.894 +il[523] = -135 +im[523] = 0.1321 +ij[523] = 28.4 +id[524] = "2033-08-10T23:44:47" +ik[524] = 54.508 +il[524] = -101 +im[524] = 0.0701 +ij[524] = 8 +id[525] = "2033-09-18T12:15:33" +ik[525] = 0.263 +il[525] = 16 +im[525] = 0.0526 +ij[525] = 28.5 +id[526] = "2033-10-28T00:00:17" +ik[526] = 0.166 +il[526] = 139 +im[526] = 0.0874 +ij[526] = 28.8 +id[527] = "2034-01-03T16:16:19" +ik[527] = 0.64 +il[527] = -27 +im[527] = 0.0229 +ij[527] = 12 +id[528] = "2034-02-09T19:46:09" +ik[528] = 1.06 +il[528] = -95 +im[528] = 0.082 +ij[528] = 27.5 +id[529] = "2034-03-25T14:11:49" +ik[529] = 2.72 +il[529] = 30 +im[529] = 0.0704 +ij[529] = 27.6 +id[530] = "2034-05-01T15:28:49" +ik[530] = 3.63 +il[530] = 146 +im[530] = 0.082 +ij[530] = 27.2 +id[531] = "2034-05-31T17:13:42" +ik[531] = 54.656 +il[531] = -120 +im[531] = 0.0978 +ij[531] = 9 +id[532] = "2034-08-10T10:13:55" +ik[532] = 90 +il[532] = 103 +im[532] = 0.2006 +ij[532] = 6 +id[533] = "2034-08-20T07:44:23" +ik[533] = 3.193 +il[533] = 126 +im[533] = 0.1097 +ij[533] = 28.5 +id[534] = "2034-08-30T00:58:53" +ik[534] = 4.977 +il[534] = 145 +im[534] = 0.167 +ij[534] = 28.8 +id[535] = "2034-09-29T16:57:37" +ik[535] = 0 +il[535] = -154 +im[535] = 0.0893 +ij[535] = 13 +id[536] = "2034-10-20T08:02:47" +ik[536] = 0.5521 +il[536] = -131 +im[536] = 0.5521 +ij[536] = 2 +id[537] = "2034-10-22T03:20:09" +ik[537] = 6.72 +il[537] = -119 +im[537] = 0.5063 +ij[537] = 11 +id[538] = "2034-11-11T16:02:12" +ik[538] = 42.96 +il[538] = -109 +im[538] = 0.2825 +ij[538] = 7.1566 +id[539] = "2034-11-18T18:57:53" +ik[539] = 2.514 +il[539] = -98 +im[539] = 0.3506 +ij[539] = 28.8 +id[540] = "2034-12-13T09:43:55" +ik[540] = 74.7 +il[540] = -22 +im[540] = 0.2771 +ij[540] = 14 +id[541] = "2034-12-31T21:12:54" +ik[541] = 90 +il[541] = 24 +im[541] = 0.1702 +ij[541] = 5 +id[542] = "2035-01-17T01:42:35" +ik[542] = 2.359 +il[542] = 74 +im[542] = 0.1285 +ij[542] = 27.1 +id[543] = "2035-02-09T09:14:24" +ik[543] = 2.164 +il[543] = 147 +im[543] = 0.1268 +ij[543] = 28.7 +id[544] = "2035-02-28T06:09:21" +ik[544] = 1.054 +il[544] = -154 +im[544] = 0.1319 +ij[544] = 28.6 +id[545] = "2035-03-07T18:11:55" +ik[545] = 1.62 +il[545] = -131 +im[545] = 0.0268 +ij[545] = 27.3 +id[546] = "2035-03-20T17:35:03" +ik[546] = 53.87 +il[546] = -90 +im[546] = 0.0091 +ij[546] = 8 +id[547] = "2035-03-26T01:13:42" +ik[547] = 0.262 +il[547] = -74 +im[547] = 0.1031 +ij[547] = 27.5 +id[548] = "2035-05-09T16:56:44" +ik[548] = 3.69 +il[548] = 63 +im[548] = 0.0708 +ij[548] = 27.6 +id[549] = "2035-06-07T00:48:31" +ik[549] = 1.861 +il[549] = 150 +im[549] = 0.0424 +ij[549] = 28.1 +id[550] = "2035-06-16T12:29:16" +ik[550] = 5.264 +il[550] = 179 +im[550] = 0.05 +ij[550] = 27.2 +id[551] = "2035-08-09T10:12:00" +ik[551] = 1.21 +il[551] = -38 +im[551] = 0.0828 +ij[551] = 12 +id[552] = "2035-09-20T16:15:10" +ik[552] = 3.219 +il[552] = -90 +im[552] = 0.0391 +ij[552] = 28.1 +id[553] = "2035-10-02T10:44:58" +ik[553] = 0.861 +il[553] = -54 +im[553] = 0.0071 +ij[553] = 28.8 +id[554] = "2035-10-22T00:09:04" +ik[554] = 0.928 +il[554] = 6 +im[554] = 0.0638 +ij[554] = 28.5 +id[555] = "2035-10-31T06:55:55" +ik[555] = 3.757 +il[555] = 34 +im[555] = 0.034 +ij[555] = 27.4 +id[556] = "2035-12-06T10:34:10" +ik[556] = 1.194 +il[556] = 144 +im[556] = 0.0742 +ij[556] = 28.7 +id[557] = "2035-12-25T12:53:15" +ik[557] = 0.629 +il[557] = -158 +im[557] = 0.1166 +ij[557] = 27.3 +id[558] = "2036-01-03T04:07:58" +ik[558] = 0.748 +il[558] = -131 +im[558] = 0.0291 +ij[558] = 28.6 +id[559] = "2036-01-05T14:47:58" +ik[559] = 53.577 +il[559] = -123 +im[559] = 0.0797 +ij[559] = 9 +id[560] = "2036-01-12T18:09:15" +ik[560] = 1.229 +il[560] = -101 +im[560] = 0.0865 +ij[560] = 27.5 +id[561] = "2036-02-28T10:48:37" +ik[561] = 0.89 +il[561] = 45 +im[561] = 0.0912 +ij[561] = 27.6 +id[562] = "2036-03-22T10:11:16" +ik[562] = 90 +il[562] = 117 +im[562] = 0.2142 +ij[562] = 6 +id[563] = "2036-04-17T21:37:15" +ik[563] = 0.285 +il[563] = 179 +im[563] = 0.208 +ij[563] = 27.2 +id[564] = "2036-05-07T09:44:22" +ik[564] = 0 +il[564] = -145 +im[564] = 0.3701 +ij[564] = 13 +id[565] = "2036-05-19T19:03:34" +ik[565] = 0.5007 +il[565] = -129 +im[565] = 0.5007 +ij[565] = 2 +id[566] = "2036-05-29T06:59:02" +ik[566] = 3.26 +il[566] = -121 +im[566] = 0.3527 +ij[566] = 27.2 +id[567] = "2036-05-30T04:56:38" +ik[567] = 1.13 +il[567] = -110 +im[567] = 0.4237 +ij[567] = 11 +id[568] = "2036-06-20T14:52:58" +ik[568] = 44.21 +il[568] = -100 +im[568] = 0.1305 +ij[568] = 7.1659 +id[569] = "2036-07-24T16:12:44" +ik[569] = 78.27 +il[569] = -13 +im[569] = 0.2057 +ij[569] = 14 +id[570] = "2036-08-08T06:21:18" +ik[570] = 90 +il[570] = 31 +im[570] = 0.1863 +ij[570] = 5 +id[571] = "2036-10-19T20:25:45" +ik[571] = 54.185 +il[571] = -108 +im[571] = 0.0756 +ij[571] = 8 +id[572] = "2036-11-16T05:43:35" +ik[572] = 0.013 +il[572] = -23 +im[572] = 0.0143 +ij[572] = 28.8 +id[573] = "2036-12-23T08:54:08" +ik[573] = 4.531 +il[573] = 93 +im[573] = 0.0998 +ij[573] = 27.1 +id[574] = "2036-12-29T17:53:48" +ik[574] = 0.125 +il[574] = 113 +im[574] = 0.039 +ij[574] = 28.5 +id[575] = "2037-01-03T07:06:48" +ik[575] = 2.514 +il[575] = 127 +im[575] = 0.0499 +ij[575] = 28.1 +id[576] = "2037-01-21T03:18:51" +ik[576] = 0.166 +il[576] = -177 +im[576] = 0.0864 +ij[576] = 28.7 +id[577] = "2037-02-06T20:41:42" +ik[577] = 0.411 +il[577] = -125 +im[577] = 0.0863 +ij[577] = 27.3 +id[578] = "2037-03-21T14:13:55" +ik[578] = 1.38 +il[578] = -16 +im[578] = 0.0686 +ij[578] = 12 +id[579] = "2037-05-15T20:03:55" +ik[579] = 4.278 +il[579] = -31 +im[579] = 0.0136 +ij[579] = 27.2 +id[580] = "2037-08-07T10:35:33" +ik[580] = 54.492 +il[580] = -133 +im[580] = 0.1169 +ij[580] = 9 +id[581] = "2037-09-08T19:56:12" +ik[581] = 2.491 +il[581] = -34 +im[581] = 0.1116 +ij[581] = 28.8 +id[582] = "2037-10-06T21:37:42" +ik[582] = 1.292 +il[582] = 51 +im[582] = 0.1671 +ij[582] = 27.4 +id[583] = "2037-10-12T17:07:00" +ik[583] = 1.797 +il[583] = 69 +im[583] = 0.0242 +ij[583] = 28.4 +id[584] = "2037-10-23T13:18:48" +ik[584] = 90 +il[584] = 102 +im[584] = 0.1855 +ij[584] = 6 +id[585] = "2037-12-13T15:55:36" +ik[585] = 0 +il[585] = -122 +im[585] = 0.3674 +ij[585] = 13 +id[586] = "2037-12-15T17:33:16" +ik[586] = 1.761 +il[586] = -141 +im[586] = 0.4784 +ij[586] = 28.7 +id[587] = "2037-12-16T06:36:25" +ik[587] = 6.41 +il[587] = -140 +im[587] = 0.4934 +ij[587] = 28.5 +id[588] = "2038-01-03T17:00:57" +ik[588] = 4.11 +il[588] = -111 +im[588] = 0.2218 +ij[588] = 11 +id[589] = "2038-01-12T01:47:47" +ik[589] = 0.5608 +il[589] = -101 +im[589] = 0.5608 +ij[589] = 2 +id[590] = "2038-01-24T17:00:11" +ik[590] = 42.04 +il[590] = -111 +im[590] = 0.4186 +ij[590] = 7.1551 +id[591] = "2038-02-24T08:33:12" +ik[591] = 4.322 +il[591] = -17 +im[591] = 0.2502 +ij[591] = 28.5 +id[592] = "2038-02-24T14:18:14" +ik[592] = 4.718 +il[592] = -15 +im[592] = 0.2446 +ij[592] = 28.7 +id[593] = "2038-02-25T04:12:57" +ik[593] = 73.51 +il[593] = -13 +im[593] = 0.2281 +ij[593] = 14 +id[594] = "2038-03-15T21:40:22" +ik[594] = 3.654 +il[594] = 32 +im[594] = 0.0836 +ij[594] = 27.3 +id[595] = "2038-03-16T06:57:34" +ik[595] = 90 +il[595] = 34 +im[595] = 0.0665 +ij[595] = 5 +id[596] = "2038-04-05T17:11:28" +ik[596] = 0.787 +il[596] = 98 +im[596] = 0.1546 +ij[596] = 27.5 +id[597] = "2038-04-14T07:35:02" +ik[597] = 1.526 +il[597] = 125 +im[597] = 0.0704 +ij[597] = 28.6 +id[598] = "2038-05-22T20:47:29" +ik[598] = 4 +il[598] = -116 +im[598] = 0.1224 +ij[598] = 27.6 +id[599] = "2038-05-31T17:06:41" +ik[599] = 54.334 +il[599] = -89 +im[599] = 0.0218 +ij[599] = 8 +id[600] = "2038-06-30T18:40:49" +ik[600] = 5.873 +il[600] = 3 +im[600] = 0.0142 +ij[600] = 27.2 +id[601] = "2038-07-17T21:47:31" +ik[601] = 0.103 +il[601] = 55 +im[601] = 0.0649 +ij[601] = 27.91 +id[602] = "2038-08-17T01:12:43" +ik[602] = 2.665 +il[602] = 147 +im[602] = 0.0611 +ij[602] = 28.1 +id[603] = "2038-09-03T17:57:15" +ik[603] = 0.949 +il[603] = -159 +im[603] = 0.079 +ij[603] = 28.1 +id[604] = "2038-10-18T10:55:12" +ik[604] = 1.12 +il[604] = -160 +im[604] = 0.0752 +ij[604] = 12 +id[605] = "2038-12-30T23:51:56" +ik[605] = 0.788 +il[605] = -1 +im[605] = 0.0664 +ij[605] = 28.7 +id[606] = "2039-01-08T06:25:15" +ik[606] = 0.271 +il[606] = 24 +im[606] = 0.0695 +ij[606] = 27.3 +id[607] = "2039-01-25T08:10:53" +ik[607] = 0.364 +il[607] = 77 +im[607] = 0.0235 +ij[607] = 28.5 +id[608] = "2039-01-26T00:21:15" +ik[608] = 1.181 +il[608] = 79 +im[608] = 0.0105 +ij[608] = 27.5 +id[609] = "2039-02-17T14:01:40" +ik[609] = 1.143 +il[609] = 149 +im[609] = 0.0997 +ij[609] = 28.6 +id[610] = "2039-03-11T09:16:26" +ik[610] = 2.14 +il[610] = -143 +im[610] = 0.0467 +ij[610] = 27.6 +id[611] = "2039-03-21T05:15:35" +ik[611] = 54.148 +il[611] = -112 +im[611] = 0.117 +ij[611] = 9 +id[612] = "2039-04-18T22:38:08" +ik[612] = 2.55 +il[612] = -22 +im[612] = 0.144 +ij[612] = 27.2 +id[613] = "2039-05-30T14:17:11" +ik[613] = 90 +il[613] = 107 +im[613] = 0.1301 +ij[613] = 6 +id[614] = "2039-07-17T11:35:15" +ik[614] = 0 +il[614] = -151 +im[614] = 0.4144 +ij[614] = 13 +id[615] = "2039-08-08T10:04:48" +ik[615] = 7.33 +il[615] = -117 +im[615] = 0.4022 +ij[615] = 11 +id[616] = "2039-08-11T13:03:07" +ik[616] = 0.5296 +il[616] = -107 +im[616] = 0.5297 +ij[616] = 2 +id[617] = "2039-08-30T12:39:50" +ik[617] = 44.04 +il[617] = -97 +im[617] = 0.1168 +ij[617] = 7.1649 +id[618] = "2039-10-02T18:34:36" +ik[618] = 77.29 +il[618] = -22 +im[618] = 0.203 +ij[618] = 14 +id[619] = "2039-10-18T03:58:54" +ik[619] = 90 +il[619] = 24 +im[619] = 0.16 +ij[619] = 5 +id[620] = "2039-12-04T23:08:23" +ik[620] = 0.393 +il[620] = 171 +im[620] = 0.1491 +ij[620] = 28.8 +id[621] = "2040-01-02T00:52:30" +ik[621] = 53.757 +il[621] = -101 +im[621] = 0.1134 +ij[621] = 8 +id[622] = "2040-01-06T19:41:41" +ik[622] = 3.782 +il[622] = -86 +im[622] = 0.105 +ij[622] = 27.1 +id[623] = "2040-01-26T01:34:19" +ik[623] = 1.582 +il[623] = -26 +im[623] = 0.0103 +ij[623] = 28.4 +id[624] = "2040-02-15T22:04:39" +ik[624] = 0.391 +il[624] = 39 +im[624] = 0.0937 +ij[624] = 28.7 +id[625] = "2040-02-22T04:45:15" +ik[625] = 0.854 +il[625] = 58 +im[625] = 0.067 +ij[625] = 27.3 +id[626] = "2040-03-05T23:42:00" +ik[626] = 2.229 +il[626] = 98 +im[626] = 0.0878 +ij[626] = 28.1 +id[627] = "2040-03-10T23:16:48" +ik[627] = 0.676 +il[627] = 113 +im[627] = 0.0127 +ij[627] = 27.5 +id[628] = "2040-03-31T03:23:45" +ik[628] = 0.057 +il[628] = 175 +im[628] = 0.0646 +ij[628] = 28.5 +id[629] = "2040-04-10T07:35:19" +ik[629] = 0.998 +il[629] = -154 +im[629] = 0.0059 +ij[629] = 28.6 +id[630] = "2040-04-20T20:15:21" +ik[630] = 1.037 +il[630] = -122 +im[630] = 0.0825 +ij[630] = 28.1 +id[631] = "2040-04-23T21:12:25" +ik[631] = 3.39 +il[631] = -123 +im[631] = 0.0452 +ij[631] = 27.6 +id[632] = "2040-05-31T04:14:52" +ik[632] = 0.16 +il[632] = -124 +im[632] = 0.0733 +ij[632] = 12 +id[633] = "2040-09-26T08:31:46" +ik[633] = 1.841 +il[633] = 160 +im[633] = 0.0686 +ij[633] = 28.8 +id[634] = "2040-10-16T13:16:21" +ik[634] = 2.921 +il[634] = -139 +im[634] = 0.1132 +ij[634] = 27.4 +id[635] = "2040-10-17T22:33:51" +ik[635] = 53.846 +il[635] = -135 +im[635] = 0.105 +ij[635] = 9 +id[636] = "2040-12-13T06:58:35" +ik[636] = 1.048 +il[636] = 38 +im[636] = 0.1648 +ij[636] = 27.3 +id[637] = "2040-12-13T08:10:19" +ik[637] = 1.59 +il[637] = 39 +im[637] = 0.1655 +ij[637] = 28.7 +id[638] = "2041-01-02T23:37:41" +ik[638] = 0.743 +il[638] = 103 +im[638] = 0.1387 +ij[638] = 27.5 +id[639] = "2041-01-07T03:12:54" +ik[639] = 90 +il[639] = 116 +im[639] = 0.0504 +ij[639] = 6 +id[640] = "2041-02-23T18:35:03" +ik[640] = 0 +il[640] = -139 +im[640] = 0.3535 +ij[640] = 13 +id[641] = "2041-03-11T01:35:03" +ik[641] = 0.5342 +il[641] = -121 +im[641] = 0.5343 +ij[641] = 2 +id[642] = "2041-03-18T11:09:36" +ik[642] = 8.6 +il[642] = -104 +im[642] = 0.1307 +ij[642] = 11 +id[643] = "2041-04-08T02:53:46" +ik[643] = 43.35 +il[643] = -94 +im[643] = 0.4067 +ij[643] = 7.1612 +id[644] = "2041-05-11T04:39:31" +ik[644] = 76.42 +il[644] = -12 +im[644] = 0.0581 +ij[644] = 14 +id[645] = "2041-05-25T00:20:09" +ik[645] = 0.847 +il[645] = 31 +im[645] = 0.061 +ij[645] = 28.6 +id[646] = "2041-05-28T04:18:22" +ik[646] = 90 +il[646] = 40 +im[646] = 0.0839 +ij[646] = 5 +id[647] = "2041-05-29T06:29:31" +ik[647] = 0.528 +il[647] = 43 +im[647] = 0.1257 +ij[647] = 28.5 +id[648] = "2041-05-31T02:31:27" +ik[648] = 4.19 +il[648] = 49 +im[648] = 0.1776 +ij[648] = 27.6 +id[649] = "2041-08-08T16:45:25" +ik[649] = 54.511 +il[649] = -98 +im[649] = 0.0247 +ij[649] = 8 +id[650] = "2041-10-19T12:49:14" +ik[650] = 0.313 +il[650] = 122 +im[650] = 0.066 +ij[650] = 28.1 +id[651] = "2041-11-10T22:05:31" +ik[651] = 0.53 +il[651] = -168 +im[651] = 0.0652 +ij[651] = 28.8 +id[652] = "2042-01-01T02:39:50" +ik[652] = 0.58 +il[652] = -169 +im[652] = 0.0759 +ij[652] = 12 +id[653] = "2042-02-09T08:54:35" +ik[653] = 1.065 +il[653] = -91 +im[653] = 0.0561 +ij[653] = 27.5 +id[654] = "2042-03-25T03:34:23" +ik[654] = 2.7 +il[654] = 39 +im[654] = 0.0417 +ij[654] = 27.6 +id[655] = "2042-04-02T10:39:47" +ik[655] = 2.051 +il[655] = 65 +im[655] = 0.0834 +ij[655] = 28.6 +id[656] = "2042-04-23T04:21:12" +ik[656] = 1.329 +il[656] = 130 +im[656] = 0.0261 +ij[656] = 28.5 +id[657] = "2042-05-01T05:29:41" +ik[657] = 3.601 +il[657] = 155 +im[657] = 0.1054 +ij[657] = 27.2 +id[658] = "2042-05-29T11:21:53" +ik[658] = 54.649 +il[658] = -117 +im[658] = 0.1241 +ij[658] = 9 +id[659] = "2042-08-08T00:56:42" +ik[659] = 90 +il[659] = 98 +im[659] = 0.1257 +ij[659] = 6 +id[660] = "2042-09-27T04:39:58" +ik[660] = 0 +il[660] = 170 +im[660] = 0.3576 +ij[660] = 13 +id[661] = "2042-10-19T16:36:28" +ik[661] = 6.96 +il[661] = -117 +im[661] = 0.4902 +ij[661] = 11 +id[662] = "2042-10-21T12:22:59" +ik[662] = 0.54 +il[662] = -107 +im[662] = 0.5401 +ij[662] = 2 +id[663] = "2042-11-09T03:44:32" +ik[663] = 42.96 +il[663] = -97 +im[663] = 0.0969 +ij[663] = 7.157 +id[664] = "2042-12-11T00:50:18" +ik[664] = 74.84 +il[664] = -19 +im[664] = 0.1373 +ij[664] = 14 +id[665] = "2042-12-15T16:39:21" +ik[665] = 1.021 +il[665] = -8 +im[665] = 0.2592 +ij[665] = 28.8 +id[666] = "2042-12-29T10:16:36" +ik[666] = 90 +il[666] = 26 +im[666] = 0.2155 +ij[666] = 5 +id[667] = "2043-01-16T22:23:01" +ik[667] = 2.433 +il[667] = 84 +im[667] = 0.1562 +ij[667] = 27.1 +id[668] = "2043-03-07T09:31:28" +ik[668] = 1.583 +il[668] = -122 +im[668] = 0.0311 +ij[668] = 27.3 +id[669] = "2043-03-12T02:39:33" +ik[669] = 0.642 +il[669] = -107 +im[669] = 0.0859 +ij[669] = 28.7 +id[670] = "2043-03-18T06:09:01" +ik[670] = 53.856 +il[670] = -88 +im[670] = 0.091 +ij[670] = 8 +id[671] = "2043-03-25T15:46:34" +ik[671] = 0.282 +il[671] = -65 +im[671] = 0.0689 +ij[671] = 27.5 +id[672] = "2043-05-09T06:35:20" +ik[672] = 3.68 +il[672] = 72 +im[672] = 0.04 +ij[672] = 27.6 +id[673] = "2043-05-14T19:02:21" +ik[673] = 1.163 +il[673] = 89 +im[673] = 0.0931 +ij[673] = 28.1 +id[674] = "2043-05-25T03:13:32" +ik[674] = 1.006 +il[674] = 120 +im[674] = 0.0532 +ij[674] = 28.6 +id[675] = "2043-06-14T01:14:52" +ik[675] = 0.75 +il[675] = -179 +im[675] = 0.0893 +ij[675] = 28.1 +id[676] = "2043-06-16T01:38:36" +ik[676] = 5.246 +il[676] = -173 +im[676] = 0.0779 +ij[676] = 27.2 +id[677] = "2043-06-29T21:55:00" +ik[677] = 0.145 +il[677] = -131 +im[677] = 0.0839 +ij[677] = 28.5 +id[678] = "2043-08-07T04:10:33" +ik[678] = 1.18 +il[678] = -132 +im[678] = 0.0373 +ij[678] = 12 +id[679] = "2043-10-16T11:06:00" +ik[679] = 1.491 +il[679] = -1 +im[679] = 0.0642 +ij[679] = 28.8 +id[680] = "2043-10-30T20:39:54" +ik[680] = 3.734 +il[680] = 42 +im[680] = 0.0692 +ij[680] = 27.4 +id[681] = "2043-12-25T03:23:28" +ik[681] = 0.642 +il[681] = -149 +im[681] = 0.1173 +ij[681] = 27.3 +id[682] = "2044-01-03T01:17:29" +ik[682] = 53.57 +il[682] = -121 +im[682] = 0.0156 +ij[682] = 9 +id[683] = "2044-01-05T09:17:08" +ik[683] = 0.982 +il[683] = -114 +im[683] = 0.041 +ij[683] = 28.7 +id[684] = "2044-01-12T09:21:14" +ik[684] = 1.227 +il[684] = -92 +im[684] = 0.1126 +ij[684] = 27.5 +id[685] = "2044-02-06T23:19:58" +ik[685] = 1.471 +il[685] = -12 +im[685] = 0.1133 +ij[685] = 28.4 +id[686] = "2044-02-28T05:55:18" +ik[686] = 0.82 +il[686] = 54 +im[686] = 0.1395 +ij[686] = 27.6 +id[687] = "2044-03-20T02:43:43" +ik[687] = 90 +il[687] = 120 +im[687] = 0.0999 +ij[687] = 6 +id[688] = "2044-04-03T07:19:03" +ik[688] = 6.096 +il[688] = 154 +im[688] = 0.0849 +ij[688] = 28.6 +id[689] = "2044-04-19T13:10:34" +ik[689] = 0.488 +il[689] = 170 +im[689] = 0.211 +ij[689] = 27.2 +id[690] = "2044-05-05T00:50:45" +ik[690] = 0 +il[690] = -142 +im[690] = 0.3717 +ij[690] = 13 +id[691] = "2044-05-20T23:25:51" +ik[691] = 0.5057 +il[691] = -123 +im[691] = 0.5058 +ij[691] = 2 +id[692] = "2044-05-22T22:43:54" +ik[692] = 2.022 +il[692] = -121 +im[692] = 0.4494 +ij[692] = 27.2 +id[693] = "2044-05-27T21:59:02" +ik[693] = 1.46 +il[693] = -107 +im[693] = 0.0966 +ij[693] = 11 +id[694] = "2044-06-16T12:24:54" +ik[694] = 3.94 +il[694] = -96 +im[694] = 0.4426 +ij[694] = 28.6 +id[695] = "2044-06-18T07:03:27" +ik[695] = 44.26 +il[695] = -86 +im[695] = 0.387 +ij[695] = 7.1658 +id[696] = "2044-07-22T08:04:13" +ik[696] = 78.3 +il[696] = -10 +im[696] = 0.0574 +ij[696] = 14 +id[697] = "2044-08-05T23:07:54" +ik[697] = 90 +il[697] = 34 +im[697] = 0.0585 +ij[697] = 5 +id[698] = "2044-09-03T07:02:09" +ik[698] = 1.737 +il[698] = 121 +im[698] = 0.0188 +ij[698] = 28.5 +id[699] = "2044-10-17T11:29:03" +ik[699] = 54.202 +il[699] = -105 +im[699] = 0.0165 +ij[699] = 8 +id[700] = "2044-11-30T06:57:36" +ik[700] = 0.226 +il[700] = 31 +im[700] = 0.059 +ij[700] = 28.8 +id[701] = "2044-12-19T10:48:43" +ik[701] = 2.239 +il[701] = 91 +im[701] = 0.0392 +ij[701] = 28.1 +id[702] = "2044-12-22T22:23:54" +ik[702] = 4.557 +il[702] = 102 +im[702] = 0.086 +ij[702] = 27.1 +id[703] = "2045-01-03T03:40:19" +ik[703] = 0.554 +il[703] = 137 +im[703] = 0.0217 +ij[703] = 28.1 +id[704] = "2045-02-06T09:50:34" +ik[704] = 0.397 +il[704] = -117 +im[704] = 0.0815 +ij[704] = 27.3 +id[705] = "2045-03-19T02:26:52" +ik[705] = 1.4 +il[705] = -118 +im[705] = 0.0091 +ij[705] = 12 +id[706] = "2045-05-15T03:23:36" +ik[706] = 1.965 +il[706] = -23 +im[706] = 0.0519 +ij[706] = 28.6 +id[707] = "2045-05-15T09:16:48" +ik[707] = 4.256 +il[707] = -23 +im[707] = 0.048 +ij[707] = 27.2 +id[708] = "2045-06-02T03:56:35" +ik[708] = 0.193 +il[708] = 33 +im[708] = 0.0143 +ij[708] = 27.9 +id[709] = "2045-06-22T13:14:00" +ik[709] = 0.73 +il[709] = 97 +im[709] = 0.0932 +ij[709] = 28.1 +id[710] = "2045-07-29T17:27:18" +ik[710] = 0.047 +il[710] = -149 +im[710] = 0.0517 +ij[710] = 28.5 +id[711] = "2045-08-05T03:39:44" +ik[711] = 54.508 +il[711] = -130 +im[711] = 0.0846 +ij[711] = 9 +id[712] = "2045-09-24T09:23:02" +ik[712] = 3.706 +il[712] = 23 +im[712] = 0.1591 +ij[712] = 28.8 +id[713] = "2045-10-06T19:07:27" +ik[713] = 1.2 +il[713] = 61 +im[713] = 0.1758 +ij[713] = 27.4 +id[714] = "2045-10-21T00:37:14" +ik[714] = 90 +il[714] = 104 +im[714] = 0.2233 +ij[714] = 6 +id[715] = "2045-12-11T08:04:40" +ik[715] = 0 +il[715] = -142 +im[715] = 0.0322 +ij[715] = 13 +id[716] = "2045-12-31T04:12:25" +ik[716] = 0.5403 +il[716] = -119 +im[716] = 0.5404 +ij[716] = 2 +id[717] = "2046-01-01T05:52:48" +ik[717] = 3.74 +il[717] = -108 +im[717] = 0.5211 +ij[717] = 11 +id[718] = "2046-01-22T09:09:15" +ik[718] = 42.04 +il[718] = -98 +im[718] = 0.1957 +ij[718] = 7.1549 +id[719] = "2046-02-22T15:41:59" +ik[719] = 73.32 +il[719] = -22 +im[719] = 0.2385 +ij[719] = 14 +id[720] = "2046-03-13T19:19:42" +ik[720] = 90 +il[720] = 37 +im[720] = 0.2017 +ij[720] = 5 +id[721] = "2046-03-15T22:07:01" +ik[721] = 3.517 +il[721] = 43 +im[721] = 0.1376 +ij[721] = 27.3 +id[722] = "2046-04-03T00:55:09" +ik[722] = 1.143 +il[722] = 100 +im[722] = 0.0254 +ij[722] = 28.7 +id[723] = "2046-04-05T12:23:27" +ik[723] = 0.721 +il[723] = 108 +im[723] = 0.1025 +ij[723] = 27.5 +id[724] = "2046-05-17T16:40:22" +ik[724] = 0.456 +il[724] = -122 +im[724] = 0.0177 +ij[724] = 28.4 +id[725] = "2046-05-22T12:01:14" +ik[725] = 3.99 +il[725] = -107 +im[725] = 0.1125 +ij[725] = 27.6 +id[726] = "2046-05-29T09:13:59" +ik[726] = 54.32 +il[726] = -86 +im[726] = 0.0743 +ij[726] = 8 +id[727] = "2046-06-30T08:32:22" +ik[727] = 5.849 +il[727] = 11 +im[727] = 0.0339 +ij[727] = 27.2 +id[728] = "2046-07-06T14:29:19" +ik[728] = 0.408 +il[728] = 30 +im[728] = 0.083 +ij[728] = 28.6 +id[729] = "2046-07-17T11:16:48" +ik[729] = 0.08 +il[729] = 63 +im[729] = 0.029 +ij[729] = 27.91 +id[730] = "2046-08-01T23:52:04" +ik[730] = 2.307 +il[730] = 111 +im[730] = 0.021 +ij[730] = 28.1 +id[731] = "2046-10-16T01:04:48" +ik[731] = 1.15 +il[731] = -33 +im[731] = 0.0201 +ij[731] = 12 +id[732] = "2047-01-07T19:51:54" +ik[732] = 0.283 +il[732] = 33 +im[732] = 0.0921 +ij[732] = 27.3 +id[733] = "2047-01-25T13:57:41" +ik[733] = 1.184 +il[733] = 88 +im[733] = 0.0505 +ij[733] = 27.5 +id[734] = "2047-01-29T20:32:47" +ik[734] = 0.667 +il[734] = 101 +im[734] = 0.0334 +ij[734] = 28.7 +id[735] = "2047-03-10T23:47:08" +ik[735] = 2.11 +il[735] = -134 +im[735] = 0.0829 +ij[735] = 27.6 +id[736] = "2047-03-18T19:46:53" +ik[736] = 54.123 +il[736] = -109 +im[736] = 0.0977 +ij[736] = 9 +id[737] = "2047-04-18T15:33:14" +ik[737] = 2.497 +il[737] = -13 +im[737] = 0.1348 +ij[737] = 27.2 +id[738] = "2047-05-10T06:34:09" +ik[738] = 3.604 +il[738] = 54 +im[738] = 0.0969 +ij[738] = 28.6 +id[739] = "2047-05-28T08:07:28" +ik[739] = 90 +il[739] = 110 +im[739] = 0.0243 +ij[739] = 6 +id[740] = "2047-07-14T15:42:25" +ik[740] = 0 +il[740] = -149 +im[740] = 0.3545 +ij[740] = 13 +id[741] = "2047-08-06T01:46:33" +ik[741] = 7.14 +il[741] = -114 +im[741] = 0.043 +ij[741] = 11 +id[742] = "2047-08-12T19:07:18" +ik[742] = 0.5245 +il[742] = -104 +im[742] = 0.5246 +ij[742] = 2 +id[743] = "2047-08-28T00:19:10" +ik[743] = 44.36 +il[743] = -94 +im[743] = 0.3603 +ij[743] = 7.1649 +id[744] = "2047-09-30T11:31:59" +ik[744] = 77.83 +il[744] = -19 +im[744] = 0.0231 +ij[744] = 14 +id[745] = "2047-10-15T19:17:56" +ik[745] = 90 +il[745] = 27 +im[745] = 0.0127 +ij[745] = 5 +id[746] = "2047-12-17T10:33:18" +ik[746] = 0.792 +il[746] = -140 +im[746] = 0.0862 +ij[746] = 28.5 +id[747] = "2047-12-19T14:44:09" +ik[747] = 0.31 +il[747] = -133 +im[747] = 0.1186 +ij[747] = 28.8 +id[748] = "2047-12-30T12:54:28" +ik[748] = 53.766 +il[748] = -99 +im[748] = 0.037 +ij[748] = 8 +id[749] = "2048-01-06T10:25:41" +ik[749] = 3.818 +il[749] = -77 +im[749] = 0.1157 +ij[749] = 27.1 +id[750] = "2048-02-17T08:43:52" +ik[750] = 1.99 +il[750] = 53 +im[750] = 0.0932 +ij[750] = 28.1 +id[751] = "2048-02-21T18:22:34" +ik[751] = 0.835 +il[751] = 67 +im[751] = 0.0943 +ij[751] = 27.3 +id[752] = "2048-03-10T12:42:34" +ik[752] = 0.686 +il[752] = 122 +im[752] = 0.0463 +ij[752] = 27.5 +id[753] = "2048-03-15T22:35:28" +ik[753] = 3.48 +il[753] = 139 +im[753] = 0.0548 +ij[753] = 28.1 +id[754] = "2048-03-17T01:17:28" +ik[754] = 0.42 +il[754] = 142 +im[754] = 0.0706 +ij[754] = 28.7 +id[755] = "2048-04-23T10:20:03" +ik[755] = 3.38 +il[755] = -115 +im[755] = 0.0732 +ij[755] = 27.6 +id[756] = "2048-05-28T22:17:45" +ik[756] = 0.21 +il[756] = -116 +im[756] = 0.0218 +ij[756] = 12 +id[757] = "2048-08-12T16:48:00" +ik[757] = 2.769 +il[757] = 34 +im[757] = 0.0256 +ij[757] = 28.1 +id[758] = "2048-09-05T18:00:43" +ik[758] = 5.591 +il[758] = 107 +im[758] = 0.087 +ij[758] = 28.1 +id[759] = "2048-10-10T18:28:48" +ik[759] = 2.604 +il[759] = -147 +im[759] = 0.0101 +ij[759] = 28.8 +id[760] = "2048-10-15T11:11:22" +ik[760] = 53.869 +il[760] = -132 +im[760] = 0.1062 +ij[760] = 9 +id[761] = "2048-10-16T04:24:47" +ik[761] = 2.884 +il[761] = -130 +im[761] = 0.1132 +ij[761] = 27.4 +id[762] = "2048-11-10T13:24:57" +ik[762] = 2.201 +il[762] = -53 +im[762] = 0.0434 +ij[762] = 28.5 +id[763] = "2048-12-13T02:18:07" +ik[763] = 1.059 +il[763] = 48 +im[763] = 0.1435 +ij[763] = 27.3 +id[764] = "2049-01-03T00:28:20" +ik[764] = 0.68 +il[764] = 113 +im[764] = 0.1793 +ij[764] = 27.5 +id[765] = "2049-01-04T15:35:55" +ik[765] = 90 +il[765] = 118 +im[765] = 0.1311 +ij[765] = 6 +id[766] = "2049-01-18T19:37:12" +ik[766] = 1.351 +il[766] = 155 +im[766] = 0.2086 +ij[766] = 28.7 +id[767] = "2049-02-21T11:32:26" +ik[767] = 0 +il[767] = -137 +im[767] = 0.0881 +ij[767] = 13 +id[768] = "2049-03-12T02:21:48" +ik[768] = 0.5504 +il[768] = -115 +im[768] = 0.5504 +ij[768] = 2 +id[769] = "2049-03-16T01:01:55" +ik[769] = 8.67 +il[769] = -101 +im[769] = 0.3502 +ij[769] = 11 +id[770] = "2049-04-05T18:45:02" +ik[770] = 43.3 +il[770] = -91 +im[770] = 0.4126 +ij[770] = 7.1611 +id[771] = "2049-05-08T17:40:47" +ik[771] = 76.26 +il[771] = -9 +im[771] = 0.2356 +ij[771] = 14 +id[772] = "2049-05-25T19:30:19" +ik[772] = 90 +il[772] = 43 +im[772] = 0.0827 +ij[772] = 5 +id[773] = "2049-05-31T02:38:03" +ik[773] = 4.2 +il[773] = 59 +im[773] = 0.1327 +ij[773] = 27.6 +id[774] = "2049-08-06T09:49:37" +ik[774] = 54.513 +il[774] = -96 +im[774] = 0.1007 +ij[774] = 8 +id[775] = "2049-08-17T09:42:46" +ik[775] = 0.466 +il[775] = -62 +im[775] = 0.1094 +ij[775] = 28.6 +id[776] = "2049-12-29T13:14:52" +ik[776] = 0.52 +il[776] = -63 +im[776] = 0.0755 +ij[776] = 12 +id[777] = "2050-02-08T22:02:34" +ik[777] = 1.07 +il[777] = -78 +im[777] = 0.0221 +ij[777] = 27.5 +id[778] = "2050-02-24T05:03:59" +ik[778] = 0.533 +il[778] = -41 +im[778] = 0.0333 +ij[778] = 28.7 +id[779] = "2050-03-24T17:00:00" +ik[779] = 2.69 +il[779] = 47 +im[779] = 0.0059 +ij[779] = 27.6 +id[780] = "2050-03-30T20:34:30" +ik[780] = 5.754 +il[780] = 67 +im[780] = 0.0962 +ij[780] = 28.1 +id[781] = "2050-04-30T19:31:54" +ik[781] = 3.572 +il[781] = 164 +im[781] = 0.1094 +ij[781] = 27.2 +id[782] = "2050-05-27T05:26:31" +ik[782] = 54.641 +il[782] = -114 +im[782] = 0.0791 +ij[782] = 9 +id[783] = "2050-06-19T04:27:24" +ik[783] = 1.385 +il[783] = -43 +im[783] = 0.0932 +ij[783] = 28.6 +id[784] = "2050-07-04T16:08:24" +ik[784] = 1.123 +il[784] = 4 +im[784] = 0.1026 +ij[784] = 28.4 +id[785] = "2050-08-05T15:47:25" +ik[785] = 90 +il[785] = 101 +im[785] = 0.0344 +ij[785] = 6 +id[786] = "2050-09-24T17:41:14" +ik[786] = 0 +il[786] = -149 +im[786] = 0.394 +ij[786] = 13 +id[787] = "2050-10-09T03:31:39" +ik[787] = 0.5345 +il[787] = -132 +im[787] = 0.5345 +ij[787] = 2 +id[788] = "2050-10-17T05:57:07" +ik[788] = 7.18 +il[788] = -114 +im[788] = 0.1679 +ij[788] = 11 +id[789] = "2050-11-06T17:37:54" +ik[789] = 43 +il[789] = -104 +im[789] = 0.3977 +ij[789] = 7.1573 +id[790] = "2050-12-08T16:20:38" +ik[790] = 74.94 +il[790] = -16 +im[790] = 0.0954 +ij[790] = 14 +id[791] = "2050-12-26T23:28:16" +ik[791] = 90 +il[791] = 29 +im[791] = 0.1125 +ij[791] = 5 +id[792] = "2051-01-03T00:55:52" +ik[792] = 1.431 +il[792] = 50 +im[792] = 0.1965 +ij[792] = 28.8 +id[793] = "2051-01-16T18:35:00" +ik[793] = 2.505 +il[793] = 93 +im[793] = 0.1672 +ij[793] = 27.1 +id[794] = "2051-03-07T00:44:20" +ik[794] = 1.548 +il[794] = -113 +im[794] = 0.0774 +ij[794] = 27.3 +id[795] = "2051-03-15T18:35:52" +ik[795] = 53.843 +il[795] = -86 +im[795] = 0.111 +ij[795] = 8 +id[796] = "2051-03-22T15:38:00" +ik[796] = 0.464 +il[796] = -65 +im[796] = 0.0374 +ij[796] = 28.5 +id[797] = "2051-03-25T06:19:27" +ik[797] = 0.302 +il[797] = -56 +im[797] = 0.0251 +ij[797] = 27.5 +id[798] = "2051-04-12T07:02:38" +ik[798] = 0.545 +il[798] = -1 +im[798] = 0.0724 +ij[798] = 28.7 +id[799] = "2051-04-24T20:12:20" +ik[799] = 1.044 +il[799] = 38 +im[799] = 0.0249 +ij[799] = 28.1 +id[800] = "2051-05-08T20:13:00" +ik[800] = 3.67 +il[800] = 81 +im[800] = 0.004 +ij[800] = 27.6 +id[801] = "2051-06-15T14:41:42" +ik[801] = 5.228 +il[801] = -164 +im[801] = 0.0915 +ij[801] = 27.2 +id[802] = "2051-08-04T22:12:00" +ik[802] = 1.15 +il[802] = -30 +im[802] = 0.0313 +ij[802] = 12 +id[803] = "2051-10-30T10:23:27" +ik[803] = 3.711 +il[803] = 51 +im[803] = 0.0933 +ij[803] = 27.4 +id[804] = "2051-10-30T12:33:24" +ik[804] = 2.038 +il[804] = 51 +im[804] = 0.0928 +ij[804] = 28.8 +id[805] = "2051-11-06T17:26:35" +ik[805] = 4.516 +il[805] = 73 +im[805] = 0.0189 +ij[805] = 28.1 +id[806] = "2051-12-24T17:57:40" +ik[806] = 0.655 +il[806] = -140 +im[806] = 0.0962 +ij[806] = 27.3 +id[807] = "2051-12-31T11:50:34" +ik[807] = 53.564 +il[807] = -119 +im[807] = 0.1031 +ij[807] = 9 +id[808] = "2052-01-12T00:39:53" +ik[808] = 1.224 +il[808] = -83 +im[808] = 0.1219 +ij[808] = 27.5 +id[809] = "2052-02-06T01:56:48" +ik[809] = 0.382 +il[809] = -5 +im[809] = 0.0618 +ij[809] = 28.7 +id[810] = "2052-02-10T20:34:35" +ik[810] = 1.185 +il[810] = 9 +im[810] = 0.15 +ij[810] = 28.5 +id[811] = "2052-02-28T01:32:59" +ik[811] = 0.74 +il[811] = 64 +im[811] = 0.1695 +ij[811] = 27.6 +id[812] = "2052-03-17T19:05:34" +ik[812] = 90 +il[812] = 122 +im[812] = 0.0759 +ij[812] = 6 +id[813] = "2052-04-22T01:53:13" +ik[813] = 0.695 +il[813] = -158 +im[813] = 0.2733 +ij[813] = 27.2 +id[814] = "2052-05-02T16:21:05" +ik[814] = 0 +il[814] = -140 +im[814] = 0.1473 +ij[814] = 13 +id[815] = "2052-05-15T23:32:20" +ik[815] = 0.824 +il[815] = -123 +im[815] = 0.111 +ij[815] = 27.2 +id[816] = "2052-05-22T00:26:20" +ik[816] = 0.5046 +il[816] = -117 +im[816] = 0.5047 +ij[816] = 2 +id[817] = "2052-05-25T15:01:26" +ik[817] = 1.78 +il[817] = -104 +im[817] = 0.3107 +ij[817] = 11 +id[818] = "2052-06-15T23:34:47" +ik[818] = 44.3 +il[818] = -94 +im[818] = 0.3982 +ij[818] = 7.1657 +id[819] = "2052-07-19T23:40:34" +ik[819] = 78.31 +il[819] = -7 +im[819] = 0.1469 +ij[819] = 14 +id[820] = "2052-08-03T15:50:58" +ik[820] = 90 +il[820] = 37 +im[820] = 0.1164 +ij[820] = 5 +id[821] = "2052-09-28T05:01:23" +ik[821] = 1.153 +il[821] = -154 +im[821] = 0.137 +ij[821] = 28.6 +id[822] = "2052-10-15T02:35:55" +ik[822] = 54.218 +il[822] = -102 +im[822] = 0.0949 +ij[822] = 8 +id[823] = "2052-11-19T08:21:59" +ik[823] = 0.415 +il[823] = 7 +im[823] = 0.0107 +ij[823] = 28.4 +id[824] = "2052-12-14T06:33:42" +ik[824] = 0.517 +il[824] = 85 +im[824] = 0.0794 +ij[824] = 28.8 +id[825] = "2052-12-22T11:57:13" +ik[825] = 4.583 +il[825] = 111 +im[825] = 0.0565 +ij[825] = 27.1 +id[826] = "2053-02-05T23:00:20" +ik[826] = 0.384 +il[826] = -119 +im[826] = 0.0612 +ij[826] = 27.3 +id[827] = "2053-03-16T14:21:07" +ik[827] = 1.41 +il[827] = -120 +im[827] = 0.0619 +ij[827] = 12 +id[828] = "2053-05-14T22:33:40" +ik[828] = 4.234 +il[828] = -14 +im[828] = 0.0749 +ij[828] = 27.2 +id[829] = "2053-05-18T01:00:20" +ik[829] = 3.511 +il[829] = -4 +im[829] = 0.027 +ij[829] = 28.1 +id[830] = "2053-06-01T17:12:20" +ik[830] = 0.212 +il[830] = 42 +im[830] = 0.0305 +ij[830] = 27.9 +id[831] = "2053-07-31T08:00:05" +ik[831] = 0.616 +il[831] = -134 +im[831] = 0.058 +ij[831] = 28.6 +id[832] = "2053-08-02T20:47:29" +ik[832] = 54.524 +il[832] = -127 +im[832] = 0.0027 +ij[832] = 9 +id[833] = "2053-10-06T17:05:13" +ik[833] = 1.103 +il[833] = 70 +im[833] = 0.1688 +ij[833] = 27.4 +id[834] = "2053-10-10T19:53:28" +ik[834] = 4.774 +il[834] = 83 +im[834] = 0.169 +ij[834] = 28.8 +id[835] = "2053-10-18T12:01:53" +ik[835] = 90 +il[835] = 107 +im[835] = 0.118 +ij[835] = 6 +id[836] = "2053-12-08T23:41:01" +ik[836] = 0 +il[836] = -139 +im[836] = 0.3238 +ij[836] = 13 +id[837] = "2053-12-29T18:46:04" +ik[837] = 3.37 +il[837] = -106 +im[837] = 0.4617 +ij[837] = 11 +id[838] = "2054-01-01T00:59:31" +ik[838] = 0.5475 +il[838] = -96 +im[838] = 0.5476 +ij[838] = 2 +id[839] = "2054-01-19T11:56:38" +ik[839] = 41.51 +il[839] = -86 +im[839] = 0.2295 +ij[839] = 7.1547 +id[840] = "2054-02-20T03:21:25" +ik[840] = 73.15 +il[840] = -20 +im[840] = 0.0657 +ij[840] = 14 +id[841] = "2054-03-11T07:40:57" +ik[841] = 90 +il[841] = 39 +im[841] = 0.2047 +ij[841] = 5 +id[842] = "2054-03-15T21:44:47" +ik[842] = 3.39 +il[842] = 53 +im[842] = 0.1713 +ij[842] = 27.3 +id[843] = "2054-04-05T07:17:13" +ik[843] = 0.659 +il[843] = 117 +im[843] = 0.0361 +ij[843] = 27.5 +id[844] = "2054-05-06T12:38:18" +ik[844] = 0.828 +il[844] = -146 +im[844] = 0.0569 +ij[844] = 28.7 +id[845] = "2054-05-22T03:12:50" +ik[845] = 3.98 +il[845] = -98 +im[845] = 0.0829 +ij[845] = 27.6 +id[846] = "2054-05-27T01:14:10" +ik[846] = 54.306 +il[846] = -83 +im[846] = 0.1229 +ij[846] = 8 +id[847] = "2054-06-19T14:30:28" +ik[847] = 0.488 +il[847] = -12 +im[847] = 0.044 +ij[847] = 28.5 +id[848] = "2054-06-29T22:21:41" +ik[848] = 5.826 +il[848] = 20 +im[848] = 0.0715 +ij[848] = 27.2 +id[849] = "2054-07-17T00:47:31" +ik[849] = 0.058 +il[849] = 72 +im[849] = 0.0141 +ij[849] = 27.91 +id[850] = "2054-10-13T15:21:36" +ik[850] = 1.19 +il[850] = -28 +im[850] = 0.0513 +ij[850] = 12 +id[851] = "2054-11-18T23:43:55" +ik[851] = 1.622 +il[851] = -98 +im[851] = 0.0502 +ij[851] = 28.8 +id[852] = "2054-12-08T00:21:27" +ik[852] = 0.464 +il[852] = -51 +im[852] = 0.0934 +ij[852] = 28.4 +id[853] = "2055-01-03T14:17:57" +ik[853] = 2.102 +il[853] = 30 +im[853] = 0.0663 +ij[853] = 28.1 +id[854] = "2055-01-07T09:19:00" +ik[854] = 0.294 +il[854] = 41 +im[854] = 0.0968 +ij[854] = 27.3 +id[855] = "2055-01-25T03:37:40" +ik[855] = 1.187 +il[855] = 96 +im[855] = 0.0829 +ij[855] = 27.5 +id[856] = "2055-03-01T16:22:56" +ik[856] = 0.213 +il[856] = -153 +im[856] = 0.0083 +ij[856] = 28.7 +id[857] = "2055-03-10T14:18:48" +ik[857] = 2.08 +il[857] = -125 +im[857] = 0.1059 +ij[857] = 27.6 +id[858] = "2055-03-16T10:03:58" +ik[858] = 54.099 +il[858] = -107 +im[858] = 0.0172 +ij[858] = 9 +id[859] = "2055-04-18T08:35:53" +ik[859] = 2.442 +il[859] = -4 +im[859] = 0.103 +ij[859] = 27.2 +id[860] = "2055-05-13T12:29:13" +ik[860] = 2.738 +il[860] = 74 +im[860] = 0.0451 +ij[860] = 28.5 +id[861] = "2055-05-26T02:00:24" +ik[861] = 90 +il[861] = 113 +im[861] = 0.1655 +ij[861] = 6 +id[862] = "2055-07-12T03:21:52" +ik[862] = 0 +il[862] = -147 +im[862] = 0.0596 +ij[862] = 13 +id[863] = "2055-08-03T17:35:31" +ik[863] = 6.95 +il[863] = -111 +im[863] = 0.3541 +ij[863] = 11 +id[864] = "2055-08-13T21:23:08" +ik[864] = 0.5084 +il[864] = -101 +im[864] = 0.5084 +ij[864] = 2 +id[865] = "2055-08-17T17:41:42" +ik[865] = 0.707 +il[865] = -90 +im[865] = 0.3348 +ij[865] = 27.8 +id[866] = "2055-08-27T02:24:27" +ik[866] = 45.96 +il[866] = -80 +im[866] = 0.3915 +ij[866] = 7.1646 +id[867] = "2055-09-28T04:45:15" +ik[867] = 78.06 +il[867] = -16 +im[867] = 0.1631 +ij[867] = 14 +id[868] = "2055-10-13T10:42:17" +ik[868] = 90 +il[868] = 30 +im[868] = 0.1584 +ij[868] = 5 +id[869] = "2055-11-10T07:52:01" +ik[869] = 1.049 +il[869] = 115 +im[869] = 0.1539 +ij[869] = 28.6 +id[870] = "2055-12-28T01:03:33" +ik[870] = 53.775 +il[870] = -97 +im[870] = 0.0655 +ij[870] = 8 +id[871] = "2056-01-02T23:07:43" +ik[871] = 0.078 +il[871] = -78 +im[871] = 0.0679 +ij[871] = 28.8 +id[872] = "2056-01-06T01:09:13" +ik[872] = 3.854 +il[872] = -69 +im[872] = 0.1081 +ij[872] = 27.1 +id[873] = "2056-02-21T08:00:20" +ik[873] = 0.816 +il[873] = 76 +im[873] = 0.1028 +ij[873] = 27.3 +id[874] = "2056-03-10T02:08:46" +ik[874] = 0.696 +il[874] = 131 +im[874] = 0.0732 +ij[874] = 27.5 +id[875] = "2056-04-16T17:35:39" +ik[875] = 0.662 +il[875] = -114 +im[875] = 0.0453 +ij[875] = 28.7 +id[876] = "2056-04-22T23:22:47" +ik[876] = 3.37 +il[876] = -106 +im[876] = 0.0861 +ij[876] = 27.6 +id[877] = "2056-05-26T16:14:52" +ik[877] = 0.27 +il[877] = -107 +im[877] = 0.0451 +ij[877] = 12 +id[878] = "2056-07-09T04:55:37" +ik[878] = 1.922 +il[878] = -62 +im[878] = 0.074 +ij[878] = 28.1 +id[879] = "2056-07-16T10:06:57" +ik[879] = 0.509 +il[879] = -39 +im[879] = 0.0433 +ij[879] = 28.5 +id[880] = "2056-08-19T06:17:34" +ik[880] = 4.449 +il[880] = 64 +im[880] = 0.0915 +ij[880] = 28.1 +id[881] = "2056-09-13T19:50:44" +ik[881] = 2.004 +il[881] = 142 +im[881] = 0.0444 +ij[881] = 28.6 +id[882] = "2056-10-13T00:03:07" +ik[882] = 53.891 +il[882] = -130 +im[882] = 0.0356 +ij[882] = 9 +id[883] = "2056-10-15T19:33:13" +ik[883] = 2.847 +il[883] = -121 +im[883] = 0.0962 +ij[883] = 27.4 +id[884] = "2056-10-25T07:41:13" +ik[884] = 3.181 +il[884] = -92 +im[884] = 0.045 +ij[884] = 28.8 +id[885] = "2056-12-12T21:59:26" +ik[885] = 1.068 +il[885] = 57 +im[885] = 0.0977 +ij[885] = 27.3 +id[886] = "2056-12-18T17:41:34" +ik[886] = 0.604 +il[886] = 75 +im[886] = 0.1993 +ij[886] = 28.4 +id[887] = "2057-01-02T03:49:12" +ik[887] = 90 +il[887] = 121 +im[887] = 0.2081 +ij[887] = 6 +id[888] = "2057-01-03T02:23:00" +ik[888] = 0.608 +il[888] = 123 +im[888] = 0.206 +ij[888] = 27.5 +id[889] = "2057-02-19T04:45:42" +ik[889] = 0 +il[889] = -134 +im[889] = 0.2501 +ij[889] = 13 +id[890] = "2057-03-13T06:53:14" +ik[890] = 0.5549 +il[890] = -109 +im[890] = 0.555 +ij[890] = 2 +id[891] = "2057-03-13T14:47:02" +ik[891] = 8.74 +il[891] = -99 +im[891] = 0.5535 +ij[891] = 11 +id[892] = "2057-04-03T05:47:22" +ik[892] = 43.04 +il[892] = -89 +im[892] = 0.1636 +ij[892] = 7.161 +id[893] = "2057-05-06T06:41:08" +ik[893] = 76.08 +il[893] = -7 +im[893] = 0.2625 +ij[893] = 14 +id[894] = "2057-05-23T10:36:58" +ik[894] = 90 +il[894] = 45 +im[894] = 0.1891 +ij[894] = 5 +id[895] = "2057-05-27T00:07:28" +ik[895] = 1.269 +il[895] = 56 +im[895] = 0.0878 +ij[895] = 28.7 +id[896] = "2057-05-31T01:48:49" +ik[896] = 4.21 +il[896] = 69 +im[896] = 0.0723 +ij[896] = 27.6 +id[897] = "2057-08-04T02:57:22" +ik[897] = 54.515 +il[897] = -92 +im[897] = 0.1161 +ij[897] = 8 +id[898] = "2057-09-25T10:28:59" +ik[898] = 0.156 +il[898] = 68 +im[898] = 0.0282 +ij[898] = 28.5 +id[899] = "2057-11-06T00:56:26" +ik[899] = 1.187 +il[899] = -163 +im[899] = 0.0672 +ij[899] = 28.6 +id[900] = "2057-12-26T23:52:48" +ik[900] = 0.46 +il[900] = -164 +im[900] = 0.0185 +ij[900] = 12 +id[901] = "2058-02-08T11:14:59" +ik[901] = 1.074 +il[901] = -75 +im[901] = 0.0205 +ij[901] = 27.5 +id[902] = "2058-02-25T03:23:19" +ik[902] = 2.705 +il[902] = -29 +im[902] = 0.023 +ij[902] = 28.1 +id[903] = "2058-03-10T04:00:46" +ik[903] = 3.863 +il[903] = 12 +im[903] = 0.0326 +ij[903] = 28.1 +id[904] = "2058-03-24T06:24:41" +ik[904] = 2.67 +il[904] = 56 +im[904] = 0.0361 +ij[904] = 27.6 +id[905] = "2058-03-26T16:35:54" +ik[905] = 0.077 +il[905] = 64 +im[905] = 0.0131 +ij[905] = 28.7 +id[906] = "2058-04-30T09:38:06" +ik[906] = 3.542 +il[906] = 172 +im[906] = 0.0916 +ij[906] = 27.2 +id[907] = "2058-05-24T23:27:36" +ik[907] = 54.633 +il[907] = -111 +im[907] = 0.0144 +ij[907] = 9 +id[908] = "2058-08-03T06:47:00" +ik[908] = 90 +il[908] = 104 +im[908] = 0.1705 +ij[908] = 6 +id[909] = "2058-09-02T21:02:44" +ik[909] = 5.547 +il[909] = 177 +im[909] = 0.1885 +ij[909] = 28.5 +id[910] = "2058-09-22T06:41:35" +ik[910] = 0 +il[910] = -147 +im[910] = 0.1676 +ij[910] = 13 +id[911] = "2058-10-10T10:27:59" +ik[911] = 0.5536 +il[911] = -126 +im[911] = 0.5536 +ij[911] = 2 +id[912] = "2058-10-14T19:13:26" +ik[912] = 7.38 +il[912] = -112 +im[912] = 0.3081 +ij[912] = 11 +id[913] = "2058-11-04T08:25:19" +ik[913] = 43.07 +il[913] = -102 +im[913] = 0.4428 +ij[913] = 7.1576 +id[914] = "2058-11-16T03:40:53" +ik[914] = 1.847 +il[914] = -86 +im[914] = 0.2289 +ij[914] = 28.5 +id[915] = "2058-12-06T07:42:07" +ik[915] = 75.04 +il[915] = -24 +im[915] = 0.2633 +ij[915] = 14 +id[916] = "2058-12-21T14:34:13" +ik[916] = 0.533 +il[916] = 23 +im[916] = 0.1738 +ij[916] = 28.6 +id[917] = "2058-12-24T12:41:42" +ik[917] = 90 +il[917] = 31 +im[917] = 0.0587 +ij[917] = 5 +id[918] = "2059-01-16T14:18:33" +ik[918] = 2.575 +il[918] = 103 +im[918] = 0.1609 +ij[918] = 27.1 +id[919] = "2059-01-19T04:33:18" +ik[919] = 1.224 +il[919] = 111 +im[919] = 0.1487 +ij[919] = 28.8 +id[920] = "2059-03-06T15:53:39" +ik[920] = 1.513 +il[920] = -104 +im[920] = 0.1087 +ij[920] = 27.3 +id[921] = "2059-03-13T06:55:37" +ik[921] = 53.83 +il[921] = -84 +im[921] = 0.0493 +ij[921] = 8 +id[922] = "2059-03-24T18:26:47" +ik[922] = 1.033 +il[922] = -48 +im[922] = 0.0308 +ij[922] = 28.4 +id[923] = "2059-03-24T20:46:06" +ik[923] = 0.321 +il[923] = -48 +im[923] = 0.0289 +ij[923] = 27.5 +id[924] = "2059-05-08T09:48:42" +ik[924] = 3.66 +il[924] = 89 +im[924] = 0.0348 +ij[924] = 27.6 +id[925] = "2059-05-13T07:27:41" +ik[925] = 0.917 +il[925] = 104 +im[925] = 0.0615 +ij[925] = 28.7 +id[926] = "2059-06-15T03:50:07" +ik[926] = 5.21 +il[926] = -156 +im[926] = 0.0869 +ij[926] = 27.2 +id[927] = "2059-08-02T16:20:38" +ik[927] = 1.12 +il[927] = -29 +im[927] = 0.0771 +ij[927] = 12 +id[928] = "2059-09-04T22:45:24" +ik[928] = 0.804 +il[928] = -108 +im[928] = 0.0475 +ij[928] = 28.1 +id[929] = "2059-10-22T04:18:54" +ik[929] = 3.2 +il[929] = 36 +im[929] = 0.0099 +ij[929] = 28.1 +id[930] = "2059-10-28T21:07:01" +ik[930] = 1.121 +il[930] = 55 +im[930] = 0.0964 +ij[930] = 28.5 +id[931] = "2059-10-30T00:07:26" +ik[931] = 3.688 +il[931] = 59 +im[931] = 0.101 +ij[931] = 27.4 +id[932] = "2059-10-31T11:00:48" +ik[932] = 2.319 +il[932] = 64 +im[932] = 0.0998 +ij[932] = 28.6 +id[933] = "2059-11-13T13:59:57" +ik[933] = 2.42 +il[933] = 104 +im[933] = 0.0927 +ij[933] = 28.8 +id[934] = "2059-12-24T08:34:59" +ik[934] = 0.669 +il[934] = -131 +im[934] = 0.0555 +ij[934] = 27.3 +id[935] = "2059-12-28T22:16:32" +ik[935] = 53.559 +il[935] = -117 +im[935] = 0.1218 +ij[935] = 9 +id[936] = "2060-01-11T16:06:33" +ik[936] = 1.221 +il[936] = -74 +im[936] = 0.1142 +ij[936] = 27.5 +id[937] = "2060-02-27T21:36:37" +ik[937] = 0.65 +il[937] = 73 +im[937] = 0.1764 +ij[937] = 27.6 +id[938] = "2060-03-11T05:23:54" +ik[938] = 2.911 +il[938] = 112 +im[938] = 0.1901 +ij[938] = 28.7 +id[939] = "2060-03-15T11:22:58" +ik[939] = 90 +il[939] = 125 +im[939] = 0.2031 +ij[939] = 6 +id[940] = "2060-04-27T18:05:39" +ik[940] = 0.828 +il[940] = -141 +im[940] = 0.3497 +ij[940] = 27.2 +id[941] = "2060-04-30T07:42:34" +ik[941] = 0 +il[941] = -137 +im[941] = 0.2046 +ij[941] = 13 +id[942] = "2060-05-06T01:31:52" +ik[942] = 0.404 +il[942] = -129 +im[942] = 0.3446 +ij[942] = 27.2 +id[943] = "2060-05-22T23:59:15" +ik[943] = 0.499 +il[943] = -112 +im[943] = 0.499 +ij[943] = 2 +id[944] = "2060-05-23T07:59:31" +ik[944] = 2.11 +il[944] = -101 +im[944] = 0.4973 +ij[944] = 11 +id[945] = "2060-06-13T15:59:16" +ik[945] = 44.34 +il[945] = -91 +im[945] = 0.1723 +ij[945] = 7.1655 +id[946] = "2060-07-17T14:59:02" +ik[946] = 78.3 +il[946] = -4 +im[946] = 0.239 +ij[946] = 14 +id[947] = "2060-08-01T08:36:41" +ik[947] = 90 +il[947] = 40 +im[947] = 0.2125 +ij[947] = 5 +id[948] = "2060-10-12T17:53:26" +ik[948] = 54.234 +il[948] = -100 +im[948] = 0.1101 +ij[948] = 8 +id[949] = "2060-12-22T01:26:32" +ik[949] = 4.608 +il[949] = 119 +im[949] = 0.0183 +ij[949] = 27.1 +id[950] = "2060-12-23T01:06:31" +ik[950] = 0.791 +il[950] = 122 +im[950] = 0.0351 +ij[950] = 28.6 +id[951] = "2060-12-28T03:51:33" +ik[951] = 0.793 +il[951] = 138 +im[951] = 0.0904 +ij[951] = 28.8 +id[952] = "2061-01-05T04:23:22" +ik[952] = 0.023 +il[952] = 163 +im[952] = 0.0094 +ij[952] = 28.5 +id[953] = "2061-02-03T23:31:29" +ik[953] = 2.895 +il[953] = -115 +im[953] = 0.0061 +ij[953] = 28.1 +id[954] = "2061-02-05T12:09:12" +ik[954] = 0.37 +il[954] = -111 +im[954] = 0.0294 +ij[954] = 27.3 +id[955] = "2061-03-14T02:05:16" +ik[955] = 1.42 +il[955] = -9 +im[955] = 0.0894 +ij[955] = 12 +id[956] = "2061-04-18T07:08:49" +ik[956] = 3.478 +il[956] = -76 +im[956] = 0.0467 +ij[956] = 28.1 +id[957] = "2061-04-21T03:47:39" +ik[957] = 0.092 +il[957] = -68 +im[957] = 0.0077 +ij[957] = 28.7 +id[958] = "2061-05-14T11:50:59" +ik[958] = 4.212 +il[958] = -5 +im[958] = 0.0877 +ij[958] = 27.2 +id[959] = "2061-05-18T02:07:26" +ik[959] = 0.546 +il[959] = 6 +im[959] = 0.0502 +ij[959] = 28.1 +id[960] = "2061-07-31T14:05:54" +ik[960] = 54.539 +il[960] = -124 +im[960] = 0.0865 +ij[960] = 9 +id[961] = "2061-10-06T15:45:39" +ik[961] = 1.002 +il[961] = 80 +im[961] = 0.1457 +ij[961] = 27.4 +id[962] = "2061-10-15T23:30:03" +ik[962] = 90 +il[962] = 109 +im[962] = 0.0712 +ij[962] = 6 +id[963] = "2061-10-29T07:43:06" +ik[963] = 5.431 +il[963] = 145 +im[963] = 0.1519 +ij[963] = 28.8 +id[964] = "2061-11-08T06:19:09" +ik[964] = 5.169 +il[964] = 168 +im[964] = 0.2973 +ij[964] = 28.6 +id[965] = "2061-12-05T14:59:29" +ik[965] = 0 +il[965] = -138 +im[965] = 0.4518 +ij[965] = 13 +id[966] = "2061-12-27T07:40:48" +ik[966] = 2.99 +il[966] = -104 +im[966] = 0.1022 +ij[966] = 11 +id[967] = "2062-01-02T01:01:46" +ik[967] = 0.5499 +il[967] = -94 +im[967] = 0.55 +ij[967] = 2 +id[968] = "2062-01-12T01:42:57" +ik[968] = 5.201 +il[968] = -83 +im[968] = 0.3234 +ij[968] = 28.6 +id[969] = "2062-01-16T23:07:17" +ik[969] = 42.34 +il[969] = -73 +im[969] = 0.4507 +ij[969] = 7.1542 +id[970] = "2062-02-17T13:52:00" +ik[970] = 73.95 +il[970] = -18 +im[970] = 0.1627 +ij[970] = 14 +id[971] = "2062-03-06T17:43:09" +ik[971] = 3.021 +il[971] = 36 +im[971] = 0.0355 +ij[971] = 28.5 +id[972] = "2062-03-08T20:02:12" +ik[972] = 90 +il[972] = 41 +im[972] = 0.0766 +ij[972] = 5 +id[973] = "2062-03-15T20:36:19" +ik[973] = 3.271 +il[973] = 63 +im[973] = 0.1877 +ij[973] = 27.3 +id[974] = "2062-04-05T01:54:32" +ik[974] = 0.6 +il[974] = 126 +im[974] = 0.0352 +ij[974] = 27.5 +id[975] = "2062-05-21T18:19:28" +ik[975] = 3.97 +il[975] = -90 +im[975] = 0.0413 +ij[975] = 27.6 +id[976] = "2062-05-24T17:07:15" +ik[976] = 54.291 +il[976] = -81 +im[976] = 0.0973 +ij[976] = 8 +id[977] = "2062-06-07T06:53:25" +ik[977] = 1.346 +il[977] = -39 +im[977] = 0.0528 +ij[977] = 28.7 +id[978] = "2062-06-29T12:05:14" +ik[978] = 5.803 +il[978] = 28 +im[978] = 0.0956 +ij[978] = 27.2 +id[979] = "2062-07-16T14:09:36" +ik[979] = 0.036 +il[979] = 80 +im[979] = 0.0525 +ij[979] = 27.91 +id[980] = "2062-10-11T05:49:55" +ik[980] = 1.22 +il[980] = -31 +im[980] = 0.089 +ij[980] = 12 +id[981] = "2062-12-02T20:52:48" +ik[981] = 1.896 +il[981] = -57 +im[981] = 0.015 +ij[981] = 28.8 +id[982] = "2062-12-18T05:09:36" +ik[982] = 1.473 +il[982] = -10 +im[982] = 0.0142 +ij[982] = 28.6 +id[983] = "2062-12-20T06:06:20" +ik[983] = 0.753 +il[983] = -4 +im[983] = 0.0521 +ij[983] = 28.1 +id[984] = "2063-01-06T22:46:05" +ik[984] = 0.306 +il[984] = 50 +im[984] = 0.0827 +ij[984] = 27.3 +id[985] = "2063-01-24T17:22:05" +ik[985] = 1.189 +il[985] = 105 +im[985] = 0.1012 +ij[985] = 27.5 +id[986] = "2063-01-31T02:06:43" +ik[986] = 0.192 +il[986] = 125 +im[986] = 0.0189 +ij[986] = 28.5 +id[987] = "2063-03-10T05:00:22" +ik[987] = 2.06 +il[987] = -116 +im[987] = 0.1116 +ij[987] = 27.6 +id[988] = "2063-03-14T00:13:56" +ik[988] = 54.075 +il[988] = -104 +im[988] = 0.0799 +ij[988] = 9 +id[989] = "2063-04-01T16:58:56" +ik[989] = 1.555 +il[989] = -46 +im[989] = 0.0207 +ij[989] = 28.7 +id[990] = "2063-04-10T05:07:12" +ik[990] = 1.095 +il[990] = -20 +im[990] = 0.1316 +ij[990] = 28.4 +id[991] = "2063-04-18T01:53:12" +ik[991] = 2.387 +il[991] = 5 +im[991] = 0.051 +ij[991] = 27.2 +id[992] = "2063-05-23T19:53:21" +ik[992] = 90 +il[992] = 116 +im[992] = 0.2112 +ij[992] = 6 +id[993] = "2063-07-10T13:52:27" +ik[993] = 0 +il[993] = -143 +im[993] = 0.2128 +ij[993] = 13 +id[994] = "2063-08-01T09:34:33" +ik[994] = 6.74 +il[994] = -108 +im[994] = 0.5019 +ij[994] = 11 +id[995] = "2063-08-01T16:10:31" +ik[995] = 0.5029 +il[995] = -98 +im[995] = 0.503 +ij[995] = 2 +id[996] = "2063-08-09T22:13:35" +ik[996] = 0.605 +il[996] = -89 +im[996] = 0.1932 +ij[996] = 27.8 +id[997] = "2063-08-23T20:02:03" +ik[997] = 44.26 +il[997] = -79 +im[997] = 0.1783 +ij[997] = 7.1654 +id[998] = "2063-09-25T22:55:48" +ik[998] = 77.38 +il[998] = -13 +im[998] = 0.2483 +ij[998] = 14 +id[999] = "2063-10-11T02:13:42" +ik[999] = 90 +il[999] = 33 +im[999] = 0.2163 +ij[999] = 5 +id[1000] = "2063-12-25T13:19:44" +ik[1000] = 53.785 +il[1000] = -95 +im[1000] = 0.1246 +ij[1000] = 8 +id[1001] = "2064-01-05T15:45:39" +ik[1001] = 3.889 +il[1001] = -60 +im[1001] = 0.0845 +ij[1001] = 27.1 +id[1002] = "2064-01-17T03:19:35" +ik[1002] = 0.201 +il[1002] = -24 +im[1002] = 0.0308 +ij[1002] = 28.8 +id[1003] = "2064-02-09T15:50:24" +ik[1003] = 0.115 +il[1003] = 49 +im[1003] = 0.0876 +ij[1003] = 28.6 +id[1004] = "2064-02-20T21:38:05" +ik[1004] = 0.798 +il[1004] = 84 +im[1004] = 0.0911 +ij[1004] = 27.3 +id[1005] = "2064-03-09T15:31:52" +ik[1005] = 0.706 +il[1005] = 139 +im[1005] = 0.0892 +ij[1005] = 27.5 +id[1006] = "2064-04-05T16:40:30" +ik[1006] = 0.073 +il[1006] = -138 +im[1006] = 0.0791 +ij[1006] = 28.5 +id[1007] = "2064-04-09T01:19:03" +ik[1007] = 1.432 +il[1007] = -128 +im[1007] = 0.0861 +ij[1007] = 28.1 +id[1008] = "2064-05-24T10:00:28" +ik[1008] = 0.32 +il[1008] = -129 +im[1008] = 0.0808 +ij[1008] = 12 +id[1009] = "2064-10-10T12:58:25" +ik[1009] = 53.915 +il[1009] = -128 +im[1009] = 0.0634 +ij[1009] = 9 +id[1010] = "2064-10-15T10:52:45" +ik[1010] = 2.809 +il[1010] = -113 +im[1010] = 0.0629 +ij[1010] = 27.4 +id[1011] = "2064-11-09T02:25:09" +ik[1011] = 3.461 +il[1011] = -37 +im[1011] = 0.0817 +ij[1011] = 28.8 +id[1012] = "2064-12-12T18:09:12" +ik[1012] = 1.076 +il[1012] = 67 +im[1012] = 0.0359 +ij[1012] = 27.3 +id[1013] = "2064-12-17T15:16:59" +ik[1013] = 1.322 +il[1013] = 82 +im[1013] = 0.1842 +ij[1013] = 28.6 +id[1014] = "2064-12-30T15:59:50" +ik[1014] = 90 +il[1014] = 123 +im[1014] = 0.1333 +ij[1014] = 6 +id[1015] = "2065-01-03T05:31:52" +ik[1015] = 0.526 +il[1015] = 133 +im[1015] = 0.2194 +ij[1015] = 27.5 +id[1016] = "2065-02-16T22:56:15" +ik[1016] = 0 +il[1016] = -131 +im[1016] = 0.4334 +ij[1016] = 13 +id[1017] = "2065-03-11T04:26:24" +ik[1017] = 8.78 +il[1017] = -96 +im[1017] = 0.3987 +ij[1017] = 11 +id[1018] = "2065-03-14T11:34:01" +ik[1018] = 0.5461 +il[1018] = -86 +im[1018] = 0.5462 +ij[1018] = 2 +id[1019] = "2065-03-31T22:59:50" +ik[1019] = 43 +il[1019] = -76 +im[1019] = 0.196 +ij[1019] = 7.1609 +id[1020] = "2065-05-03T19:43:34" +ik[1020] = 75.87 +il[1020] = -5 +im[1020] = 0.1258 +ij[1020] = 14 +id[1021] = "2065-05-21T01:37:26" +ik[1021] = 90 +il[1021] = 48 +im[1021] = 0.1693 +ij[1021] = 5 +id[1022] = "2065-05-31T00:27:24" +ik[1022] = 4.22 +il[1022] = 79 +im[1022] = 0.0252 +ij[1022] = 27.6 +id[1023] = "2065-06-06T03:14:15" +ik[1023] = 0.869 +il[1023] = 97 +im[1023] = 0.1698 +ij[1023] = 28.5 +id[1024] = "2065-06-30T17:04:59" +ik[1024] = 2.093 +il[1024] = 173 +im[1024] = 0.027 +ij[1024] = 28.7 +id[1025] = "2065-08-01T20:05:06" +ik[1025] = 54.516 +il[1025] = -90 +im[1025] = 0.0605 +ij[1025] = 8 +id[1026] = "2065-08-11T19:14:06" +ik[1026] = 1.629 +il[1026] = -44 +im[1026] = 0.0427 +ij[1026] = 28.4 +id[1027] = "2065-11-16T02:37:23" +ik[1027] = 0.263 +il[1027] = -121 +im[1027] = 0.0627 +ij[1027] = 28.1 +id[1028] = "2065-12-24T10:42:14" +ik[1028] = 0.39 +il[1028] = -122 +im[1028] = 0.0533 +ij[1028] = 12 +id[1029] = "2066-02-03T13:32:00" +ik[1029] = 0.068 +il[1029] = -77 +im[1029] = 0.0919 +ij[1029] = 28.6 +id[1030] = "2066-02-08T00:23:52" +ik[1030] = 1.079 +il[1030] = -65 +im[1030] = 0.056 +ij[1030] = 27.5 +id[1031] = "2066-02-18T17:14:47" +ik[1031] = 3.458 +il[1031] = -39 +im[1031] = 0.0856 +ij[1031] = 28.1 +id[1032] = "2066-03-23T19:51:22" +ik[1032] = 2.66 +il[1032] = 65 +im[1032] = 0.0693 +ij[1032] = 27.6 +id[1033] = "2066-04-25T14:10:36" +ik[1033] = 0.965 +il[1033] = 167 +im[1033] = 0.0329 +ij[1033] = 28.7 +id[1034] = "2066-04-29T01:34:01" +ik[1034] = 1.521 +il[1034] = 178 +im[1034] = 0.0385 +ij[1034] = 28.5 +id[1035] = "2066-04-29T23:48:45" +ik[1035] = 3.512 +il[1035] = -179 +im[1035] = 0.056 +ij[1035] = 27.2 +id[1036] = "2066-05-22T17:25:07" +ik[1036] = 54.624 +il[1036] = -108 +im[1036] = 0.0967 +ij[1036] = 9 +id[1037] = "2066-07-31T21:54:32" +ik[1037] = 90 +il[1037] = 106 +im[1037] = 0.1848 +ij[1037] = 6 +id[1038] = "2066-09-19T19:44:01" +ik[1038] = 0 +il[1038] = -145 +im[1038] = 0.1914 +ij[1038] = 13 +id[1039] = "2066-10-11T11:47:17" +ik[1039] = 0.5593 +il[1039] = -120 +im[1039] = 0.5594 +ij[1039] = 2 +id[1040] = "2066-10-12T08:38:24" +ik[1040] = 7.57 +il[1040] = -109 +im[1040] = 0.5485 +ij[1040] = 11 +id[1041] = "2066-11-01T23:20:39" +ik[1041] = 43.15 +il[1041] = -99 +im[1041] = 0.2083 +ij[1041] = 7.1578 +id[1042] = "2066-12-03T23:04:23" +ik[1042] = 75.14 +il[1042] = -22 +im[1042] = 0.2696 +ij[1042] = 14 +id[1043] = "2066-12-22T01:59:33" +ik[1043] = 90 +il[1043] = 33 +im[1043] = 0.1901 +ij[1043] = 5 +id[1044] = "2067-01-16T09:44:18" +ik[1044] = 2.642 +il[1044] = 112 +im[1044] = 0.1355 +ij[1044] = 27.1 +id[1045] = "2067-02-03T09:59:02" +ik[1045] = 0.81 +il[1045] = 168 +im[1045] = 0.1525 +ij[1045] = 28.8 +id[1046] = "2067-03-06T06:56:18" +ik[1046] = 1.479 +il[1046] = -95 +im[1046] = 0.121 +ij[1046] = 27.3 +id[1047] = "2067-03-10T19:11:49" +ik[1047] = 53.818 +il[1047] = -81 +im[1047] = 0.0504 +ij[1047] = 8 +id[1048] = "2067-03-24T11:09:12" +ik[1048] = 0.34 +il[1048] = -39 +im[1048] = 0.0736 +ij[1048] = 27.5 +id[1049] = "2067-03-28T07:51:00" +ik[1049] = 0.838 +il[1049] = -27 +im[1049] = 0.013 +ij[1049] = 28.6 +id[1050] = "2067-05-07T23:19:24" +ik[1050] = 3.65 +il[1050] = 98 +im[1050] = 0.0654 +ij[1050] = 27.6 +id[1051] = "2067-06-12T02:55:14" +ik[1051] = 0.572 +il[1051] = -155 +im[1051] = 0.0258 +ij[1051] = 28.7 +id[1052] = "2067-06-14T16:52:47" +ik[1052] = 5.192 +il[1052] = -147 +im[1052] = 0.0647 +ij[1052] = 27.2 +id[1053] = "2067-06-20T00:41:36" +ik[1053] = 2.145 +il[1053] = -131 +im[1053] = 0.0883 +ij[1053] = 28.1 +id[1054] = "2067-07-31T10:35:02" +ik[1054] = 1.09 +il[1054] = -132 +im[1054] = 0.0776 +ij[1054] = 12 +id[1055] = "2067-09-21T17:29:28" +ik[1055] = 0.721 +il[1055] = -47 +im[1055] = 0.0456 +ij[1055] = 28.4 +id[1056] = "2067-10-02T09:33:07" +ik[1056] = 3.327 +il[1056] = -14 +im[1056] = 0.095 +ij[1056] = 28.1 +id[1057] = "2067-10-29T13:51:52" +ik[1057] = 3.664 +il[1057] = 68 +im[1057] = 0.0889 +ij[1057] = 27.4 +id[1058] = "2067-11-27T16:18:46" +ik[1058] = 2.565 +il[1058] = 157 +im[1058] = 0.0812 +ij[1058] = 28.8 +id[1059] = "2067-12-23T23:20:18" +ik[1059] = 0.682 +il[1059] = -123 +im[1059] = 0.0142 +ij[1059] = 27.3 +id[1060] = "2067-12-26T08:42:30" +ik[1060] = 53.555 +il[1060] = -115 +im[1060] = 0.0591 +ij[1060] = 9 +id[1061] = "2068-01-11T07:36:45" +ik[1061] = 1.217 +il[1061] = -66 +im[1061] = 0.0906 +ij[1061] = 27.5 +id[1062] = "2068-01-30T17:38:06" +ik[1062] = 1.376 +il[1062] = -5 +im[1062] = 0.1434 +ij[1062] = 28.6 +id[1063] = "2068-02-27T17:54:15" +ik[1063] = 0.57 +il[1063] = 83 +im[1063] = 0.1603 +ij[1063] = 27.6 +id[1064] = "2068-03-13T03:29:46" +ik[1064] = 90 +il[1064] = 128 +im[1064] = 0.2107 +ij[1064] = 6 +id[1065] = "2068-04-27T23:04:50" +ik[1065] = 0 +il[1065] = -134 +im[1065] = 0.3856 +ij[1065] = 13 +id[1066] = "2068-04-29T22:47:27" +ik[1066] = 2.028 +il[1066] = -131 +im[1066] = 0.3204 +ij[1066] = 27.2 +id[1067] = "2068-05-10T18:56:47" +ik[1067] = 0.5111 +il[1067] = -118 +im[1067] = 0.5111 +ij[1067] = 2 +id[1068] = "2068-05-21T00:54:43" +ik[1068] = 2.43 +il[1068] = -98 +im[1068] = 0.3688 +ij[1068] = 11 +id[1069] = "2068-06-11T08:17:27" +ik[1069] = 44.38 +il[1069] = -88 +im[1069] = 0.1739 +ij[1069] = 7.1653 +id[1070] = "2068-07-15T06:31:14" +ik[1070] = 78.31 +il[1070] = -2 +im[1070] = 0.1734 +ij[1070] = 14 +id[1071] = "2068-07-17T23:40:07" +ik[1071] = 3.763 +il[1071] = 9 +im[1071] = 0.2262 +ij[1071] = 28.7 +id[1072] = "2068-07-30T01:18:52" +ik[1072] = 90 +il[1072] = 43 +im[1072] = 0.179 +ij[1072] = 5 +id[1073] = "2068-09-11T00:01:00" +ik[1073] = 1.248 +il[1073] = 173 +im[1073] = 0.0685 +ij[1073] = 28.5 +id[1074] = "2068-10-10T09:10:58" +ik[1074] = 54.25 +il[1074] = -97 +im[1074] = 0.0491 +ij[1074] = 8 +id[1075] = "2068-12-21T14:52:18" +ik[1075] = 4.633 +il[1075] = 128 +im[1075] = 0.0263 +ij[1075] = 27.1 +id[1076] = "2069-01-10T23:31:20" +ik[1076] = 0.992 +il[1076] = -169 +im[1076] = 0.0758 +ij[1076] = 28.8 +id[1077] = "2069-01-13T23:59:51" +ik[1077] = 2.632 +il[1077] = -159 +im[1077] = 0.0941 +ij[1077] = 28.1 +id[1078] = "2069-03-11T13:36:28" +ik[1078] = 1.43 +il[1078] = -7 +im[1078] = 0.0573 +ij[1078] = 12 +id[1079] = "2069-04-25T00:12:23" +ik[1079] = 1.621 +il[1079] = -56 +im[1079] = 0.0523 +ij[1079] = 28.1 +id[1080] = "2069-05-14T01:07:51" +ik[1080] = 4.19 +il[1080] = 3 +im[1080] = 0.0847 +ij[1080] = 27.2 +id[1081] = "2069-05-20T08:24:43" +ik[1081] = 0.581 +il[1081] = 23 +im[1081] = 0.0346 +ij[1081] = 28.7 +id[1082] = "2069-05-31T19:48:43" +ik[1082] = 0.249 +il[1082] = 59 +im[1082] = 0.0912 +ij[1082] = 27.9 +id[1083] = "2069-07-29T07:24:19" +ik[1083] = 54.554 +il[1083] = -121 +im[1083] = 0.1223 +ij[1083] = 9 +id[1084] = "2069-08-06T06:27:47" +ik[1084] = 0.34 +il[1084] = -96 +im[1084] = 0.0146 +ij[1084] = 28.5 +id[1085] = "2069-10-06T15:05:38" +ik[1085] = 0.896 +il[1085] = 90 +im[1085] = 0.1103 +ij[1085] = 27.4 +id[1086] = "2069-10-13T10:58:14" +ik[1086] = 90 +il[1086] = 111 +im[1086] = 0.2054 +ij[1086] = 6 +id[1087] = "2069-10-24T11:35:48" +ik[1087] = 2.092 +il[1087] = 142 +im[1087] = 0.2086 +ij[1087] = 28.4 +id[1088] = "2069-12-03T06:31:40" +ik[1088] = 0 +il[1088] = -136 +im[1088] = 0.2495 +ij[1088] = 13 +id[1089] = "2069-12-14T20:58:59" +ik[1089] = 1.163 +il[1089] = -121 +im[1089] = 0.0539 +ij[1089] = 28.8 +id[1090] = "2069-12-24T20:36:57" +ik[1090] = 2.6 +il[1090] = -102 +im[1090] = 0.3653 +ij[1090] = 11 +id[1091] = "2070-01-03T03:42:56" +ik[1091] = 0.5455 +il[1091] = -92 +im[1091] = 0.5456 +ij[1091] = 2 +id[1092] = "2070-01-14T10:42:22" +ik[1092] = 42.17 +il[1092] = -82 +im[1092] = 0.3616 +ij[1092] = 7.1542 +id[1093] = "2070-02-11T15:18:34" +ik[1093] = 3.783 +il[1093] = -12 +im[1093] = 0.2229 +ij[1093] = 28.8 +id[1094] = "2070-02-15T01:50:08" +ik[1094] = 73.8 +il[1094] = -5 +im[1094] = 0.2664 +ij[1094] = 14 +id[1095] = "2070-03-06T08:19:54" +ik[1095] = 90 +il[1095] = 43 +im[1095] = 0.1119 +ij[1095] = 5 +id[1096] = "2070-03-15T18:46:31" +ik[1096] = 3.159 +il[1096] = 73 +im[1096] = 0.186 +ij[1096] = 27.3 +id[1097] = "2070-04-04T20:10:58" +ik[1097] = 0.544 +il[1097] = 135 +im[1097] = 0.0964 +ij[1097] = 27.5 +id[1098] = "2070-05-11T22:05:13" +ik[1098] = 0.81 +il[1098] = -110 +im[1098] = 0.0995 +ij[1098] = 28.6 +id[1099] = "2070-05-21T09:16:11" +ik[1099] = 3.96 +il[1099] = -81 +im[1099] = 0.0109 +ij[1099] = 27.6 +id[1100] = "2070-05-22T08:56:47" +ik[1100] = 54.276 +il[1100] = -78 +im[1100] = 0.0136 +ij[1100] = 8 +id[1101] = "2070-06-29T01:49:40" +ik[1101] = 5.78 +il[1101] = 37 +im[1101] = 0.1014 +ij[1101] = 27.2 +id[1102] = "2070-07-07T01:53:45" +ik[1102] = 0.916 +il[1102] = 61 +im[1102] = 0.0183 +ij[1102] = 28.7 +id[1103] = "2070-07-16T03:31:40" +ik[1103] = 0.014 +il[1103] = 89 +im[1103] = 0.0826 +ij[1103] = 27.91 +id[1104] = "2070-10-08T20:24:00" +ik[1104] = 1.25 +il[1104] = -22 +im[1104] = 0.0704 +ij[1104] = 12 +id[1105] = "2070-11-12T19:49:11" +ik[1105] = 4.254 +il[1105] = -97 +im[1105] = 0.0866 +ij[1105] = 27.4 +id[1106] = "2070-11-30T23:54:31" +ik[1106] = 0.039 +il[1106] = -52 +im[1106] = 0.0502 +ij[1106] = 28.1 +id[1107] = "2070-12-16T16:45:15" +ik[1107] = 1.976 +il[1107] = -5 +im[1107] = 0.0447 +ij[1107] = 28.8 +id[1108] = "2071-01-06T12:17:11" +ik[1108] = 0.318 +il[1108] = 59 +im[1108] = 0.0543 +ij[1108] = 27.3 +id[1109] = "2071-01-24T07:02:58" +ik[1109] = 1.192 +il[1109] = 114 +im[1109] = 0.1016 +ij[1109] = 27.5 +id[1110] = "2071-03-09T19:46:12" +ik[1110] = 2.03 +il[1110] = -107 +im[1110] = 0.1007 +ij[1110] = 27.6 +id[1111] = "2071-03-11T14:13:14" +ik[1111] = 54.051 +il[1111] = -102 +im[1111] = 0.1143 +ij[1111] = 9 +id[1112] = "2071-03-14T14:17:48" +ik[1112] = 2.657 +il[1112] = -92 +im[1112] = 0.0968 +ij[1112] = 28.6 +id[1113] = "2071-04-17T19:20:45" +ik[1113] = 2.329 +il[1113] = 15 +im[1113] = 0.0224 +ij[1113] = 27.2 +id[1114] = "2071-05-03T06:45:30" +ik[1114] = 2.581 +il[1114] = 63 +im[1114] = 0.0231 +ij[1114] = 28.7 +id[1115] = "2071-05-21T13:47:10" +ik[1115] = 90 +il[1115] = 119 +im[1115] = 0.1313 +ij[1115] = 6 +id[1116] = "2071-07-08T01:50:35" +ik[1116] = 0 +il[1116] = -140 +im[1116] = 0.4146 +ij[1116] = 13 +id[1117] = "2071-07-30T01:33:36" +ik[1117] = 6.53 +il[1117] = -106 +im[1117] = 0.3255 +ij[1117] = 11 +id[1118] = "2071-08-02T14:58:16" +ik[1118] = 0.5102 +il[1118] = -96 +im[1118] = 0.5103 +ij[1118] = 2 +id[1119] = "2071-08-03T15:40:36" +ik[1119] = 0.168 +il[1119] = -90 +im[1119] = 0.4951 +ij[1119] = 27.8 +id[1120] = "2071-08-22T00:53:09" +ik[1120] = 44.96 +il[1120] = -80 +im[1120] = 0.1115 +ij[1120] = 7.1654 +id[1121] = "2071-09-23T16:28:52" +ik[1121] = 77.61 +il[1121] = -9 +im[1121] = 0.1724 +ij[1121] = 14 +id[1122] = "2071-10-08T17:46:53" +ik[1122] = 90 +il[1122] = 35 +im[1122] = 0.1399 +ij[1122] = 5 +id[1123] = "2071-12-23T01:39:29" +ik[1123] = 53.795 +il[1123] = -92 +im[1123] = 0.1021 +ij[1123] = 8 +id[1124] = "2071-12-24T19:01:46" +ik[1124] = 0.741 +il[1124] = -87 +im[1124] = 0.1202 +ij[1124] = 28.5 +id[1125] = "2072-01-05T06:22:04" +ik[1125] = 3.923 +il[1125] = -51 +im[1125] = 0.0474 +ij[1125] = 27.1 +id[1126] = "2072-01-31T03:11:57" +ik[1126] = 0.446 +il[1126] = 30 +im[1126] = 0.0484 +ij[1126] = 28.8 +id[1127] = "2072-01-31T13:49:09" +ik[1127] = 1.454 +il[1127] = 31 +im[1127] = 0.0393 +ij[1127] = 28.4 +id[1128] = "2072-02-20T11:12:44" +ik[1128] = 0.779 +il[1128] = 93 +im[1128] = 0.0626 +ij[1128] = 27.3 +id[1129] = "2072-03-09T04:51:24" +ik[1129] = 0.715 +il[1129] = 148 +im[1129] = 0.09 +ij[1129] = 27.5 +id[1130] = "2072-03-17T07:07:14" +ik[1130] = 2.156 +il[1130] = 173 +im[1130] = 0.0193 +ij[1130] = 28.1 +id[1131] = "2072-05-22T03:41:45" +ik[1131] = 0.37 +il[1131] = -9 +im[1131] = 0.0658 +ij[1131] = 12 +id[1132] = "2072-07-05T00:05:54" +ik[1132] = 2.519 +il[1132] = -56 +im[1132] = 0.0578 +ij[1132] = 28.1 +id[1133] = "2072-10-08T02:07:57" +ik[1133] = 53.938 +il[1133] = -125 +im[1133] = 0.1127 +ij[1133] = 9 +id[1134] = "2072-10-15T02:12:44" +ik[1134] = 2.77 +il[1134] = -104 +im[1134] = 0.0206 +ij[1134] = 27.4 +id[1135] = "2072-11-17T22:07:32" +ik[1135] = 2.292 +il[1135] = 0 +im[1135] = 0.1215 +ij[1135] = 28.5 +id[1136] = "2072-11-24T03:56:26" +ik[1136] = 3.326 +il[1136] = 19 +im[1136] = 0.1466 +ij[1136] = 28.8 +id[1137] = "2072-12-12T14:43:51" +ik[1137] = 1.082 +il[1137] = 76 +im[1137] = 0.0423 +ij[1137] = 27.3 +id[1138] = "2072-12-28T04:01:38" +ik[1138] = 90 +il[1138] = 125 +im[1138] = 0.0374 +ij[1138] = 6 +id[1139] = "2073-01-03T10:02:04" +ik[1139] = 0.432 +il[1139] = 143 +im[1139] = 0.2205 +ij[1139] = 27.5 +id[1140] = "2073-02-14T16:29:19" +ik[1140] = 0 +il[1140] = -128 +im[1140] = 0.3666 +ij[1140] = 13 +id[1141] = "2073-03-08T18:01:26" +ik[1141] = 8.82 +il[1141] = -94 +im[1141] = 0.1022 +ij[1141] = 11 +id[1142] = "2073-03-15T11:44:12" +ik[1142] = 0.5274 +il[1142] = -84 +im[1142] = 0.5275 +ij[1142] = 2 +id[1143] = "2073-03-29T19:35:54" +ik[1143] = 43.13 +il[1143] = -74 +im[1143] = 0.4024 +ij[1143] = 7.1607 +id[1144] = "2073-05-01T08:25:38" +ik[1144] = 75.66 +il[1144] = -2 +im[1144] = 0.0933 +ij[1144] = 14 +id[1145] = "2073-05-18T16:28:10" +ik[1145] = 90 +il[1145] = 50 +im[1145] = 0.029 +ij[1145] = 5 +id[1146] = "2073-05-30T22:27:04" +ik[1146] = 4.22 +il[1146] = 88 +im[1146] = 0.0689 +ij[1146] = 27.6 +id[1147] = "2073-06-22T22:30:51" +ik[1147] = 0.121 +il[1147] = 159 +im[1147] = 0.1504 +ij[1147] = 28.6 +id[1148] = "2073-07-30T13:12:51" +ik[1148] = 54.516 +il[1148] = -87 +im[1148] = 0.0351 +ij[1148] = 8 +id[1149] = "2073-07-31T02:44:26" +ik[1149] = 1.411 +il[1149] = -85 +im[1149] = 0.0218 +ij[1149] = 28.7 +id[1150] = "2073-10-27T05:32:38" +ik[1150] = 0.348 +il[1150] = -174 +im[1150] = 0.0508 +ij[1150] = 28.1 +id[1151] = "2073-12-21T21:34:33" +ik[1151] = 0.33 +il[1151] = -175 +im[1151] = 0.0834 +ij[1151] = 12 +id[1152] = "2074-01-29T15:53:51" +ik[1152] = 3.038 +il[1152] = -86 +im[1152] = 0.0296 +ij[1152] = 28.1 +id[1153] = "2074-02-06T05:34:13" +ik[1153] = 0.877 +il[1153] = -63 +im[1153] = 0.09 +ij[1153] = 28.4 +id[1154] = "2074-02-07T13:33:11" +ik[1154] = 1.083 +il[1154] = -63 +im[1154] = 0.0815 +ij[1154] = 27.5 +id[1155] = "2074-03-23T09:21:00" +ik[1155] = 2.64 +il[1155] = 73 +im[1155] = 0.0907 +ij[1155] = 27.6 +id[1156] = "2074-04-25T17:36:31" +ik[1156] = 2.665 +il[1156] = 178 +im[1156] = 0.0663 +ij[1156] = 28.6 +id[1157] = "2074-04-29T14:02:04" +ik[1157] = 3.482 +il[1157] = -170 +im[1157] = 0.0143 +ij[1157] = 27.2 +id[1158] = "2074-05-20T11:19:06" +ik[1158] = 54.613 +il[1158] = -105 +im[1158] = 0.1228 +ij[1158] = 9 +id[1159] = "2074-05-24T14:35:57" +ik[1159] = 1.547 +il[1159] = -92 +im[1159] = 0.1004 +ij[1159] = 28.7 +id[1160] = "2074-07-29T13:10:02" +ik[1160] = 90 +il[1160] = 109 +im[1160] = 0.0753 +ij[1160] = 6 +id[1161] = "2074-09-17T08:26:05" +ik[1161] = 0 +il[1161] = -142 +im[1161] = 0.4182 +ij[1161] = 13 +id[1162] = "2074-10-09T22:00:28" +ik[1162] = 7.75 +il[1162] = -107 +im[1162] = 0.4562 +ij[1162] = 11 +id[1163] = "2074-10-12T15:01:53" +ik[1163] = 0.5524 +il[1163] = -97 +im[1163] = 0.5525 +ij[1163] = 2 +id[1164] = "2074-10-30T13:59:49" +ik[1164] = 43.23 +il[1164] = -87 +im[1164] = 0.1569 +ij[1164] = 7.158 +id[1165] = "2074-12-01T14:42:33" +ik[1165] = 75.26 +il[1165] = -19 +im[1165] = 0.1171 +ij[1165] = 14 +id[1166] = "2074-12-19T15:22:43" +ik[1166] = 90 +il[1166] = 36 +im[1166] = 0.1871 +ij[1166] = 5 +id[1167] = "2075-01-16T04:45:37" +ik[1167] = 2.707 +il[1167] = 121 +im[1167] = 0.0947 +ij[1167] = 27.1 +id[1168] = "2075-02-18T02:41:25" +ik[1168] = 0.374 +il[1168] = -136 +im[1168] = 0.1285 +ij[1168] = 28.8 +id[1169] = "2075-03-05T21:52:44" +ik[1169] = 1.447 +il[1169] = -87 +im[1169] = 0.1144 +ij[1169] = 27.3 +id[1170] = "2075-03-08T07:20:53" +ik[1170] = 53.806 +il[1170] = -79 +im[1170] = 0.1113 +ij[1170] = 8 +id[1171] = "2075-03-24T01:28:44" +ik[1171] = 0.358 +il[1171] = -30 +im[1171] = 0.1051 +ij[1171] = 27.5 +id[1172] = "2075-03-28T14:41:25" +ik[1172] = 0.28 +il[1172] = -16 +im[1172] = 0.0283 +ij[1172] = 28.5 +id[1173] = "2075-05-07T12:53:53" +ik[1173] = 3.64 +il[1173] = 106 +im[1173] = 0.0848 +ij[1173] = 27.6 +id[1174] = "2075-05-26T17:06:34" +ik[1174] = 1.308 +il[1174] = 165 +im[1174] = 0.0434 +ij[1174] = 28.1 +id[1175] = "2075-06-14T05:55:26" +ik[1175] = 5.175 +il[1175] = -139 +im[1175] = 0.0305 +ij[1175] = 27.2 +id[1176] = "2075-06-17T00:21:10" +ik[1176] = 1.046 +il[1176] = -130 +im[1176] = 0.0688 +ij[1176] = 28.6 +id[1177] = "2075-07-29T04:50:52" +ik[1177] = 1.06 +il[1177] = -131 +im[1177] = 0.0287 +ij[1177] = 12 +id[1178] = "2075-09-11T03:19:09" +ik[1178] = 3.459 +il[1178] = -64 +im[1178] = 0.0083 +ij[1178] = 28.1 +id[1179] = "2075-10-29T03:39:51" +ik[1179] = 3.641 +il[1179] = 77 +im[1179] = 0.0589 +ij[1179] = 27.4 +id[1180] = "2075-12-11T19:08:06" +ik[1180] = 2.414 +il[1180] = -150 +im[1180] = 0.0355 +ij[1180] = 28.8 +id[1181] = "2075-12-23T14:06:04" +ik[1181] = 0.695 +il[1181] = -114 +im[1181] = 0.0499 +ij[1181] = 27.3 +id[1182] = "2075-12-23T19:08:28" +ik[1182] = 53.553 +il[1182] = -113 +im[1182] = 0.0454 +ij[1182] = 9 +id[1183] = "2076-01-10T23:14:04" +ik[1183] = 1.213 +il[1183] = -57 +im[1183] = 0.0504 +ij[1183] = 27.5 +id[1184] = "2076-02-12T11:01:23" +ik[1184] = 1.796 +il[1184] = 45 +im[1184] = 0.1364 +ij[1184] = 28.4 +id[1185] = "2076-02-17T09:26:12" +ik[1185] = 1.854 +il[1185] = 60 +im[1185] = 0.1748 +ij[1185] = 28.5 +id[1186] = "2076-02-27T14:53:49" +ik[1186] = 0.47 +il[1186] = 93 +im[1186] = 0.1273 +ij[1186] = 27.6 +id[1187] = "2076-03-10T19:32:09" +ik[1187] = 90 +il[1187] = 131 +im[1187] = 0.0919 +ij[1187] = 6 +id[1188] = "2076-04-25T14:43:00" +ik[1188] = 0 +il[1188] = -131 +im[1188] = 0.3047 +ij[1188] = 13 +id[1189] = "2076-04-27T08:05:13" +ik[1189] = 4.256 +il[1189] = -129 +im[1189] = 0.3906 +ij[1189] = 27.2 +id[1190] = "2076-05-12T01:18:38" +ik[1190] = 0.5245 +il[1190] = -111 +im[1190] = 0.5246 +ij[1190] = 2 +id[1191] = "2076-05-18T17:44:09" +ik[1191] = 2.75 +il[1191] = -96 +im[1191] = 0.0446 +ij[1191] = 11 +id[1192] = "2076-06-09T13:45:35" +ik[1192] = 44.96 +il[1192] = -86 +im[1192] = 0.3855 +ij[1192] = 7.1651 +id[1193] = "2076-07-12T21:43:21" +ik[1193] = 78.29 +il[1193] = 1 +im[1193] = 0.016 +ij[1193] = 14 +id[1194] = "2076-07-27T18:03:42" +ik[1194] = 90 +il[1194] = 46 +im[1194] = 0.0432 +ij[1194] = 5 +id[1195] = "2076-07-31T19:48:00" +ik[1195] = 1.948 +il[1195] = 58 +im[1195] = 0.1742 +ij[1195] = 28.6 +id[1196] = "2076-08-21T21:34:59" +ik[1196] = 2.34 +il[1196] = 122 +im[1196] = 0.1084 +ij[1196] = 28.7 +id[1197] = "2076-10-08T00:39:09" +ik[1197] = 54.266 +il[1197] = -94 +im[1197] = 0.0477 +ij[1197] = 8 +id[1198] = "2076-12-21T04:21:37" +ik[1198] = 4.658 +il[1198] = 136 +im[1198] = 0.0635 +ij[1198] = 27.1 +id[1199] = "2076-12-25T03:31:49" +ik[1199] = 2.267 +il[1199] = 149 +im[1199] = 0.0094 +ij[1199] = 28.1 +id[1200] = "2077-01-24T17:47:53" +ik[1200] = 1.066 +il[1200] = -121 +im[1200] = 0.0196 +ij[1200] = 28.8 +id[1201] = "2077-03-09T00:54:43" +ik[1201] = 1.43 +il[1201] = -5 +im[1201] = 0.0134 +ij[1201] = 12 +id[1202] = "2077-04-19T17:38:58" +ik[1202] = 0.63 +il[1202] = -63 +im[1202] = 0.0654 +ij[1202] = 28.5 +id[1203] = "2077-05-13T14:28:17" +ik[1203] = 4.167 +il[1203] = 12 +im[1203] = 0.0678 +ij[1203] = 27.2 +id[1204] = "2077-05-31T09:18:17" +ik[1204] = 0.269 +il[1204] = 68 +im[1204] = 0.0991 +ij[1204] = 27.9 +id[1205] = "2077-06-06T13:32:35" +ik[1205] = 1.812 +il[1205] = 87 +im[1205] = 0.0389 +ij[1205] = 28.6 +id[1206] = "2077-06-17T03:54:34" +ik[1206] = 1.008 +il[1206] = 120 +im[1206] = 0.0898 +ij[1206] = 28.7 +id[1207] = "2077-07-27T00:53:23" +ik[1207] = 54.567 +il[1207] = -118 +im[1207] = 0.0839 +ij[1207] = 9 +id[1208] = "2077-10-06T15:10:57" +ik[1208] = 0.783 +il[1208] = 100 +im[1208] = 0.0555 +ij[1208] = 27.4 +id[1209] = "2077-10-10T22:36:08" +ik[1209] = 90 +il[1209] = 113 +im[1209] = 0.2054 +ij[1209] = 6 +id[1210] = "2077-11-30T21:43:48" +ik[1210] = 0 +il[1210] = -133 +im[1210] = 0.1226 +ij[1210] = 13 +id[1211] = "2077-12-09T11:54:41" +ik[1211] = 0.5378 +il[1211] = -122 +im[1211] = 0.5379 +ij[1211] = 2 +id[1212] = "2077-12-22T09:36:00" +ik[1212] = 2.21 +il[1212] = -99 +im[1212] = 0.5374 +ij[1212] = 11 +id[1213] = "2078-01-11T22:49:29" +ik[1213] = 42.05 +il[1213] = -89 +im[1213] = 0.0678 +ij[1213] = 7.1542 +id[1214] = "2078-02-12T13:58:15" +ik[1214] = 73.68 +il[1214] = -14 +im[1214] = 0.1911 +ij[1214] = 14 +id[1215] = "2078-03-03T09:35:16" +ik[1215] = 2.322 +il[1215] = 44 +im[1215] = 0.2277 +ij[1215] = 28.8 +id[1216] = "2078-03-03T20:33:11" +ik[1216] = 90 +il[1216] = 46 +im[1216] = 0.2229 +ij[1216] = 5 +id[1217] = "2078-03-15T16:21:10" +ik[1217] = 3.055 +il[1217] = 82 +im[1217] = 0.1675 +ij[1217] = 27.3 +id[1218] = "2078-04-04T14:09:10" +ik[1218] = 0.491 +il[1218] = 145 +im[1218] = 0.1388 +ij[1218] = 27.5 +id[1219] = "2078-05-20T00:39:11" +ik[1219] = 54.261 +il[1219] = -75 +im[1219] = 0.0771 +ij[1219] = 8 +id[1220] = "2078-05-21T00:11:48" +ik[1220] = 3.95 +il[1220] = -72 +im[1220] = 0.0583 +ij[1220] = 27.6 +id[1221] = "2078-05-24T06:22:48" +ik[1221] = 0.6267 +il[1221] = -44 +im[1221] = 0.0136 +ij[1221] = 28.4 +id[1222] = "2078-06-25T15:23:36" +ik[1222] = 0.394 +il[1222] = 37 +im[1222] = 0.0512 +ij[1222] = 28.5 +id[1223] = "2078-06-28T15:32:19" +ik[1223] = 5.758 +il[1223] = 46 +im[1223] = 0.09 +ij[1223] = 27.2 +id[1224] = "2078-07-15T16:55:12" +ik[1224] = 0.007 +il[1224] = 98 +im[1224] = 0.0977 +ij[1224] = 27.91 +id[1225] = "2078-07-29T03:42:20" +ik[1225] = 0.274 +il[1225] = 139 +im[1225] = 0.0845 +ij[1225] = 28.6 +id[1226] = "2078-08-03T18:11:22" +ik[1226] = 0.18 +il[1226] = 156 +im[1226] = 0.0508 +ij[1226] = 28.7 +id[1227] = "2078-08-06T14:51:47" +ik[1227] = 2.892 +il[1227] = 164 +im[1227] = 0.0069 +ij[1227] = 28.1 +id[1228] = "2078-08-27T06:18:17" +ik[1228] = 1.019 +il[1228] = -132 +im[1228] = 0.0742 +ij[1228] = 28.1 +id[1229] = "2078-10-06T11:05:16" +ik[1229] = 1.27 +il[1229] = -133 +im[1229] = 0.0084 +ij[1229] = 12 +id[1230] = "2078-11-11T04:39:21" +ik[1230] = 1.275 +il[1230] = -99 +im[1230] = 0.0792 +ij[1230] = 28.1 +id[1231] = "2078-11-12T09:08:44" +ik[1231] = 4.235 +il[1231] = -99 +im[1231] = 0.0856 +ij[1231] = 27.4 +id[1232] = "2078-12-30T12:19:52" +ik[1232] = 1.826 +il[1232] = 47 +im[1232] = 0.0887 +ij[1232] = 28.8 +id[1233] = "2079-01-06T01:48:17" +ik[1233] = 0.329 +il[1233] = 67 +im[1233] = 0.0173 +ij[1233] = 27.3 +id[1234] = "2079-01-23T20:50:30" +ik[1234] = 1.194 +il[1234] = 122 +im[1234] = 0.0824 +ij[1234] = 27.5 +id[1235] = "2079-03-09T04:01:52" +ik[1235] = 54.026 +il[1235] = -99 +im[1235] = 0.0698 +ij[1235] = 9 +id[1236] = "2079-03-09T10:29:47" +ik[1236] = 2 +il[1236] = -99 +im[1236] = 0.0755 +ij[1236] = 27.6 +id[1237] = "2079-04-17T13:06:04" +ik[1237] = 2.27 +il[1237] = 24 +im[1237] = 0.0755 +ij[1237] = 27.2 +id[1238] = "2079-05-19T07:46:18" +ik[1238] = 90 +il[1238] = 122 +im[1238] = 0.0305 +ij[1238] = 6 +id[1239] = "2079-05-22T15:36:25" +ik[1239] = 2.689 +il[1239] = 131 +im[1239] = 0.108 +ij[1239] = 28.5 +id[1240] = "2079-06-08T11:03:07" +ik[1240] = 1.699 +il[1240] = 170 +im[1240] = 0.2594 +ij[1240] = 28.7 +id[1241] = "2079-06-11T14:41:08" +ik[1241] = 1.726 +il[1241] = 177 +im[1241] = 0.2846 +ij[1241] = 28.6 +id[1242] = "2079-07-05T13:58:42" +ik[1242] = 0 +il[1242] = -138 +im[1242] = 0.3458 +ij[1242] = 13 +id[1243] = "2079-07-27T17:42:43" +ik[1243] = 6.31 +il[1243] = -103 +im[1243] = 0.1217 +ij[1243] = 11 +id[1244] = "2079-07-28T19:53:36" +ik[1244] = 0.49 +il[1244] = -92 +im[1244] = 0.1138 +ij[1244] = 27.8 +id[1245] = "2079-08-03T18:18:05" +ik[1245] = 0.5118 +il[1245] = -85 +im[1245] = 0.5118 +ij[1245] = 2 +id[1246] = "2079-08-18T18:08:18" +ik[1246] = 44.17 +il[1246] = -75 +im[1246] = 0.3979 +ij[1246] = 7.1657 +id[1247] = "2079-08-31T09:00:51" +ik[1247] = 5.93 +il[1247] = -64 +im[1247] = 0.3513 +ij[1247] = 28.6 +id[1248] = "2079-08-31T14:15:47" +ik[1248] = 6.275 +il[1248] = -53 +im[1248] = 0.349 +ij[1248] = 28.7 +id[1249] = "2079-09-21T10:09:57" +ik[1249] = 77.84 +il[1249] = -6 +im[1249] = 0.036 +ij[1249] = 14 +id[1250] = "2079-10-06T09:24:29" +ik[1250] = 90 +il[1250] = 38 +im[1250] = 0.0348 +ij[1250] = 5 +id[1251] = "2079-12-20T14:02:47" +ik[1251] = 53.806 +il[1251] = -90 +im[1251] = 0.0188 +ij[1251] = 8 +id[1252] = "2080-01-04T20:51:23" +ik[1252] = 3.957 +il[1252] = -42 +im[1252] = 0.0106 +ij[1252] = 27.1 +id[1253] = "2080-02-14T00:39:36" +ik[1253] = 0.598 +il[1253] = 83 +im[1253] = 0.0795 +ij[1253] = 28.8 +id[1254] = "2080-02-20T00:43:50" +ik[1254] = 0.762 +il[1254] = 101 +im[1254] = 0.0239 +ij[1254] = 27.3 +id[1255] = "2080-02-25T03:45:04" +ik[1255] = 2.519 +il[1255] = 117 +im[1255] = 0.09 +ij[1255] = 28.1 +id[1256] = "2080-03-08T18:14:30" +ik[1256] = 0.725 +il[1256] = 156 +im[1256] = 0.0739 +ij[1256] = 27.5 +id[1257] = "2080-05-19T21:17:16" +ik[1257] = 0.42 +il[1257] = 2 +im[1257] = 0.0102 +ij[1257] = 12 +id[1258] = "2080-07-11T08:35:22" +ik[1258] = 0.683 +il[1258] = -26 +im[1258] = 0.0883 +ij[1258] = 28.7 +id[1259] = "2080-07-18T19:20:29" +ik[1259] = 0.543 +il[1259] = -3 +im[1259] = 0.0127 +ij[1259] = 28.6 +id[1260] = "2080-07-23T07:03:12" +ik[1260] = 0.431 +il[1260] = 11 +im[1260] = 0.0831 +ij[1260] = 28.5 +id[1261] = "2080-10-05T15:24:35" +ik[1261] = 53.962 +il[1261] = -123 +im[1261] = 0.0812 +ij[1261] = 9 +id[1262] = "2080-10-14T17:42:30" +ik[1262] = 2.73 +il[1262] = -95 +im[1262] = 0.0371 +ij[1262] = 27.4 +id[1263] = "2080-12-09T18:59:11" +ik[1263] = 2.638 +il[1263] = 78 +im[1263] = 0.1716 +ij[1263] = 28.8 +id[1264] = "2080-12-12T11:53:37" +ik[1264] = 1.087 +il[1264] = 86 +im[1264] = 0.1097 +ij[1264] = 27.3 +id[1265] = "2080-12-25T15:59:52" +ik[1265] = 90 +il[1265] = 127 +im[1265] = 0.1848 +ij[1265] = 6 +id[1266] = "2081-01-03T16:18:30" +ik[1266] = 0.323 +il[1266] = 152 +im[1266] = 0.2098 +ij[1266] = 27.5 +id[1267] = "2081-02-12T10:10:24" +ik[1267] = 0 +il[1267] = -126 +im[1267] = 0.0799 +ij[1267] = 13 +id[1268] = "2081-03-03T07:15:07" +ik[1268] = 0.543 +il[1268] = -104 +im[1268] = 0.5431 +ij[1268] = 2 +id[1269] = "2081-03-06T07:26:24" +ik[1269] = 8.83 +il[1269] = -91 +im[1269] = 0.4217 +ij[1269] = 11 +id[1270] = "2081-03-27T10:13:59" +ik[1270] = 43 +il[1270] = -81 +im[1270] = 0.3653 +ij[1270] = 7.1605 +id[1271] = "2081-04-28T20:55:44" +ik[1271] = 75.45 +il[1271] = 0 +im[1271] = 0.2496 +ij[1271] = 14 +id[1272] = "2081-05-16T07:16:14" +ik[1272] = 90 +il[1272] = 53 +im[1272] = 0.1286 +ij[1272] = 5 +id[1273] = "2081-05-30T19:40:44" +ik[1273] = 4.22 +il[1273] = 98 +im[1273] = 0.1292 +ij[1273] = 27.6 +id[1274] = "2081-07-28T06:20:36" +ik[1274] = 54.516 +il[1274] = -84 +im[1274] = 0.1097 +ij[1274] = 8 +id[1275] = "2081-08-27T18:17:13" +ik[1275] = 0.399 +il[1275] = 9 +im[1275] = 0.0901 +ij[1275] = 28.7 +id[1276] = "2081-09-09T13:21:38" +ik[1276] = 0.526 +il[1276] = 49 +im[1276] = 0.0934 +ij[1276] = 28.6 +id[1277] = "2081-10-02T16:08:58" +ik[1277] = 0.096 +il[1277] = 120 +im[1277] = 0.0281 +ij[1277] = 28.5 +id[1278] = "2081-10-09T17:19:06" +ik[1278] = 0.323 +il[1278] = 142 +im[1278] = 0.0893 +ij[1278] = 28.1 +id[1279] = "2081-10-20T05:38:32" +ik[1279] = 1.354 +il[1279] = 175 +im[1279] = 0.062 +ij[1279] = 28.1 +id[1280] = "2081-12-19T08:36:57" +ik[1280] = 0.26 +il[1280] = 174 +im[1280] = 0.0539 +ij[1280] = 12 +id[1281] = "2082-02-07T02:46:03" +ik[1281] = 1.087 +il[1281] = -47 +im[1281] = 0.0908 +ij[1281] = 27.5 +id[1282] = "2082-03-22T22:48:41" +ik[1282] = 2.63 +il[1282] = 82 +im[1282] = 0.0974 +ij[1282] = 27.6 +id[1283] = "2082-04-29T04:19:23" +ik[1283] = 3.451 +il[1283] = -161 +im[1283] = 0.0378 +ij[1283] = 27.2 +id[1284] = "2082-05-18T05:09:30" +ik[1284] = 54.602 +il[1284] = -102 +im[1284] = 0.0766 +ij[1284] = 9 +id[1285] = "2082-06-22T06:03:36" +ik[1285] = 1.24 +il[1285] = 6 +im[1285] = 0.1555 +ij[1285] = 28.7 +id[1286] = "2082-07-15T16:13:17" +ik[1286] = 0.847 +il[1286] = 77 +im[1286] = 0.0659 +ij[1286] = 28.6 +id[1287] = "2082-07-19T18:55:35" +ik[1287] = 1.875 +il[1287] = 90 +im[1287] = 0.1805 +ij[1287] = 28.4 +id[1288] = "2082-07-27T04:37:02" +ik[1288] = 90 +il[1288] = 112 +im[1288] = 0.088 +ij[1288] = 6 +id[1289] = "2082-09-14T20:56:11" +ik[1289] = 0 +il[1289] = -140 +im[1289] = 0.3561 +ij[1289] = 13 +id[1290] = "2082-10-07T11:28:19" +ik[1290] = 7.91 +il[1290] = -104 +im[1290] = 0.0776 +ij[1290] = 11 +id[1291] = "2082-10-13T18:41:07" +ik[1291] = 0.5337 +il[1291] = -94 +im[1291] = 0.5338 +ij[1291] = 2 +id[1292] = "2082-10-28T06:08:47" +ik[1292] = 43.38 +il[1292] = -84 +im[1292] = 0.3995 +ij[1292] = 7.1583 +id[1293] = "2082-11-29T06:24:35" +ik[1293] = 75.39 +il[1293] = -16 +im[1293] = 0.1064 +ij[1293] = 14 +id[1294] = "2082-12-03T02:07:52" +ik[1294] = 0.567 +il[1294] = -4 +im[1294] = 0.1016 +ij[1294] = 28.5 +id[1295] = "2082-12-17T04:49:25" +ik[1295] = 90 +il[1295] = 38 +im[1295] = 0.0546 +ij[1295] = 5 +id[1296] = "2083-01-15T23:25:36" +ik[1296] = 2.77 +il[1296] = 131 +im[1296] = 0.047 +ij[1296] = 27.1 +id[1297] = "2083-03-04T11:05:08" +ik[1297] = 0.019 +il[1297] = -81 +im[1297] = 0.0718 +ij[1297] = 28.8 +id[1298] = "2083-03-05T12:44:43" +ik[1298] = 1.415 +il[1298] = -78 +im[1298] = 0.0906 +ij[1298] = 27.3 +id[1299] = "2083-03-05T19:26:25" +ik[1299] = 53.796 +il[1299] = -77 +im[1299] = 0.0947 +ij[1299] = 8 +id[1300] = "2083-03-23T15:45:10" +ik[1300] = 0.375 +il[1300] = -21 +im[1300] = 0.1161 +ij[1300] = 27.5 +id[1301] = "2083-05-03T11:12:28" +ik[1301] = 0.509 +il[1301] = 104 +im[1301] = 0.0599 +ij[1301] = 28.1 +id[1302] = "2083-05-07T02:24:35" +ik[1302] = 3.63 +il[1302] = 115 +im[1302] = 0.0917 +ij[1302] = 27.6 +id[1303] = "2083-06-06T16:31:52" +ik[1303] = 0.586 +il[1303] = -152 +im[1303] = 0.0885 +ij[1303] = 28.1 +id[1304] = "2083-06-13T19:01:12" +ik[1304] = 5.157 +il[1304] = -130 +im[1304] = 0.0126 +ij[1304] = 27.2 +id[1305] = "2083-07-26T23:13:55" +ik[1305] = 1.02 +il[1305] = -153 +im[1305] = 0.0379 +ij[1305] = 12 +id[1306] = "2083-09-01T06:04:53" +ik[1306] = 0.698 +il[1306] = -86 +im[1306] = 0.0663 +ij[1306] = 28.6 +id[1307] = "2083-10-28T17:30:56" +ik[1307] = 3.617 +il[1307] = 85 +im[1307] = 0.0186 +ij[1307] = 27.4 +id[1308] = "2083-11-04T21:59:28" +ik[1308] = 1.306 +il[1308] = 107 +im[1308] = 0.1 +ij[1308] = 28.5 +id[1309] = "2083-12-21T05:34:26" +ik[1309] = 53.551 +il[1309] = -111 +im[1309] = 0.1177 +ij[1309] = 9 +id[1310] = "2083-12-23T04:58:03" +ik[1310] = 0.709 +il[1310] = -105 +im[1310] = 0.0941 +ij[1310] = 27.3 +id[1311] = "2083-12-25T22:21:38" +ik[1311] = 1.936 +il[1311] = -97 +im[1311] = 0.0404 +ij[1311] = 28.8 +id[1312] = "2084-01-10T15:02:03" +ik[1312] = 1.208 +il[1312] = -48 +im[1312] = 0.0099 +ij[1312] = 27.5 +id[1313] = "2084-02-27T12:23:31" +ik[1313] = 0.37 +il[1313] = 102 +im[1313] = 0.0827 +ij[1313] = 27.6 +id[1314] = "2084-03-08T11:23:55" +ik[1314] = 90 +il[1314] = 133 +im[1314] = 0.0885 +ij[1314] = 6 +id[1315] = "2084-04-24T06:25:02" +ik[1315] = 0 +il[1315] = -127 +im[1315] = 0.1253 +ij[1315] = 13 +id[1316] = "2084-05-13T04:14:08" +ik[1316] = 0.5266 +il[1316] = -106 +im[1316] = 0.5267 +ij[1316] = 2 +id[1317] = "2084-05-16T10:32:09" +ik[1317] = 3.06 +il[1317] = -93 +im[1317] = 0.3769 +ij[1317] = 11 +id[1318] = "2084-06-06T14:30:50" +ik[1318] = 43.34 +il[1318] = -83 +im[1318] = 0.3966 +ij[1318] = 7.1654 +id[1319] = "2084-07-10T14:09:33" +ik[1319] = 77.32 +il[1319] = 4 +im[1319] = 0.1955 +ij[1319] = 14 +id[1320] = "2084-07-25T10:48:32" +ik[1320] = 90 +il[1320] = 48 +im[1320] = 0.123 +ij[1320] = 5 +id[1321] = "2084-09-19T14:23:34" +ik[1321] = 0.697 +il[1321] = -141 +im[1321] = 0.1306 +ij[1321] = 28.7 +id[1322] = "2084-10-05T16:10:54" +ik[1322] = 54.281 +il[1322] = -91 +im[1322] = 0.1092 +ij[1322] = 8 +id[1323] = "2084-10-22T23:17:39" +ik[1323] = 0.901 +il[1323] = -38 +im[1323] = 0.0812 +ij[1323] = 28.6 +id[1324] = "2084-11-28T05:23:08" +ik[1324] = 0.59 +il[1324] = 75 +im[1324] = 0.0436 +ij[1324] = 28.4 +id[1325] = "2084-12-09T14:58:50" +ik[1325] = 2.107 +il[1325] = 110 +im[1325] = 0.016 +ij[1325] = 28.1 +id[1326] = "2084-12-20T17:47:23" +ik[1326] = 4.683 +il[1326] = 145 +im[1326] = 0.0877 +ij[1326] = 27.1 +id[1327] = "2084-12-24T05:43:17" +ik[1327] = 0.037 +il[1327] = 156 +im[1327] = 0.0391 +ij[1327] = 28.1 +id[1328] = "2085-01-11T14:33:21" +ik[1328] = 0.069 +il[1328] = -147 +im[1328] = 0.0323 +ij[1328] = 28.5 +id[1329] = "2085-03-06T12:00:00" +ik[1329] = 1.43 +il[1329] = -3 +im[1329] = 0.074 +ij[1329] = 12 +id[1330] = "2085-05-13T03:49:10" +ik[1330] = 4.145 +il[1330] = 20 +im[1330] = 0.0407 +ij[1330] = 27.2 +id[1331] = "2085-05-30T22:34:01" +ik[1331] = 0.288 +il[1331] = 76 +im[1331] = 0.0871 +ij[1331] = 27.9 +id[1332] = "2085-06-15T11:34:56" +ik[1332] = 2.231 +il[1332] = 125 +im[1332] = 0.093 +ij[1332] = 28.1 +id[1333] = "2085-07-14T01:01:12" +ik[1333] = 0.831 +il[1333] = -147 +im[1333] = 0.0925 +ij[1333] = 28.7 +id[1334] = "2085-07-24T18:26:01" +ik[1334] = 54.58 +il[1334] = -115 +im[1334] = 0.0142 +ij[1334] = 9 +id[1335] = "2085-08-26T13:16:19" +ik[1335] = 2.655 +il[1335] = -15 +im[1335] = 0.0667 +ij[1335] = 28.6 +id[1336] = "2085-10-06T16:09:09" +ik[1336] = 0.665 +il[1336] = 110 +im[1336] = 0.0099 +ij[1336] = 27.4 +id[1337] = "2085-10-08T10:14:02" +ik[1337] = 90 +il[1337] = 115 +im[1337] = 0.0709 +ij[1337] = 6 +id[1338] = "2085-11-28T14:10:00" +ik[1338] = 0 +il[1338] = -131 +im[1338] = 0.3952 +ij[1338] = 13 +id[1339] = "2085-12-10T16:49:23" +ik[1339] = 0.5562 +il[1339] = -116 +im[1339] = 0.5562 +ij[1339] = 2 +id[1340] = "2085-12-19T22:37:55" +ik[1340] = 1.81 +il[1340] = -97 +im[1340] = 0.3392 +ij[1340] = 11 +id[1341] = "2086-01-09T13:12:34" +ik[1341] = 41.96 +il[1341] = -87 +im[1341] = 0.343 +ij[1341] = 7.1543 +id[1342] = "2086-02-10T02:13:19" +ik[1342] = 73.5 +il[1342] = -11 +im[1342] = 0.0381 +ij[1342] = 14 +id[1343] = "2086-03-01T08:49:07" +ik[1343] = 90 +il[1343] = 48 +im[1343] = 0.1893 +ij[1343] = 5 +id[1344] = "2086-03-15T01:53:02" +ik[1344] = 2.126 +il[1344] = 91 +im[1344] = 0.1177 +ij[1344] = 28.5 +id[1345] = "2086-03-15T13:20:43" +ik[1345] = 2.956 +il[1345] = 92 +im[1345] = 0.1315 +ij[1345] = 27.3 +id[1346] = "2086-03-20T00:13:40" +ik[1346] = 1.231 +il[1346] = 106 +im[1346] = 0.1645 +ij[1346] = 28.8 +id[1347] = "2086-04-04T07:57:09" +ik[1347] = 0.441 +il[1347] = 154 +im[1347] = 0.1572 +ij[1347] = 27.5 +id[1348] = "2086-05-17T16:18:03" +ik[1348] = 54.246 +il[1348] = -72 +im[1348] = 0.1197 +ij[1348] = 8 +id[1349] = "2086-05-20T15:02:24" +ik[1349] = 3.94 +il[1349] = -63 +im[1349] = 0.098 +ij[1349] = 27.6 +id[1350] = "2086-06-28T05:11:52" +ik[1350] = 5.736 +il[1350] = 54 +im[1350] = 0.0636 +ij[1350] = 27.2 +id[1351] = "2086-07-15T06:17:16" +ik[1351] = 0.028 +il[1351] = 106 +im[1351] = 0.0935 +ij[1351] = 27.91 +id[1352] = "2086-07-26T15:55:17" +ik[1352] = 1.575 +il[1352] = 141 +im[1352] = 0.0334 +ij[1352] = 28.1 +id[1353] = "2086-08-29T20:45:53" +ik[1353] = 0.39 +il[1353] = -114 +im[1353] = 0.0824 +ij[1353] = 28.7 +id[1354] = "2086-10-04T01:55:12" +ik[1354] = 1.3 +il[1354] = -115 +im[1354] = 0.0585 +ij[1354] = 12 +id[1355] = "2086-11-11T22:28:16" +ik[1355] = 4.217 +il[1355] = -81 +im[1355] = 0.0694 +ij[1355] = 27.4 +id[1356] = "2086-12-14T08:57:33" +ik[1356] = 0.523 +il[1356] = 8 +im[1356] = 0.0878 +ij[1356] = 28.4 +id[1357] = "2087-01-05T15:23:23" +ik[1357] = 0.341 +il[1357] = 76 +im[1357] = 0.0255 +ij[1357] = 27.3 +id[1358] = "2087-01-13T06:47:22" +ik[1358] = 1.433 +il[1358] = 99 +im[1358] = 0.0943 +ij[1358] = 28.8 +id[1359] = "2087-01-23T10:38:29" +ik[1359] = 1.196 +il[1359] = 131 +im[1359] = 0.0474 +ij[1359] = 27.5 +id[1360] = "2087-02-05T19:37:37" +ik[1360] = 0.032 +il[1360] = 172 +im[1360] = 0.0109 +ij[1360] = 28.5 +id[1361] = "2087-03-06T17:36:17" +ik[1361] = 54.002 +il[1361] = -97 +im[1361] = 0.0245 +ij[1361] = 9 +id[1362] = "2087-03-09T01:26:24" +ik[1362] = 1.97 +il[1362] = -90 +im[1362] = 0.0388 +ij[1362] = 27.6 +id[1363] = "2087-04-17T07:02:03" +ik[1363] = 2.209 +il[1363] = 33 +im[1363] = 0.1271 +ij[1363] = 27.2 +id[1364] = "2087-05-17T01:41:01" +ik[1364] = 90 +il[1364] = 125 +im[1364] = 0.1722 +ij[1364] = 6 +id[1365] = "2087-07-03T02:13:46" +ik[1365] = 0 +il[1365] = -135 +im[1365] = 0.0472 +ij[1365] = 13 +id[1366] = "2087-07-25T09:54:43" +ik[1366] = 6.07 +il[1366] = -100 +im[1366] = 0.415 +ij[1366] = 11 +id[1367] = "2087-08-04T22:58:14" +ik[1367] = 0.5047 +il[1367] = -90 +im[1367] = 0.5048 +ij[1367] = 2 +id[1368] = "2087-08-16T10:16:27" +ik[1368] = 44.34 +il[1368] = -80 +im[1368] = 0.3354 +ij[1368] = 7.1657 +id[1369] = "2087-09-19T02:44:15" +ik[1369] = 78.02 +il[1369] = -4 +im[1369] = 0.1844 +ij[1369] = 14 +id[1370] = "2087-10-04T01:05:38" +ik[1370] = 90 +il[1370] = 41 +im[1370] = 0.1797 +ij[1370] = 5 +id[1371] = "2087-10-09T18:19:43" +ik[1371] = 1.508 +il[1371] = 58 +im[1371] = 0.0491 +ij[1371] = 28.7 +id[1372] = "2087-12-07T17:36:14" +ik[1372] = 0.446 +il[1372] = -120 +im[1372] = 0.015 +ij[1372] = 28.6 +id[1373] = "2087-12-18T02:33:12" +ik[1373] = 53.818 +il[1373] = -88 +im[1373] = 0.0804 +ij[1373] = 8 +id[1374] = "2088-01-04T11:17:09" +ik[1374] = 3.99 +il[1374] = -34 +im[1374] = 0.0396 +ij[1374] = 27.1 +id[1375] = "2088-02-07T17:01:06" +ik[1375] = 2.254 +il[1375] = 73 +im[1375] = 0.0561 +ij[1375] = 28.1 +id[1376] = "2088-02-19T14:15:23" +ik[1376] = 0.744 +il[1376] = 110 +im[1376] = 0.0227 +ij[1376] = 27.3 +id[1377] = "2088-02-27T19:59:57" +ik[1377] = 0.617 +il[1377] = 136 +im[1377] = 0.0904 +ij[1377] = 28.8 +id[1378] = "2088-03-08T07:34:03" +ik[1378] = 0.734 +il[1378] = 165 +im[1378] = 0.0443 +ij[1378] = 27.5 +id[1379] = "2088-04-11T06:43:20" +ik[1379] = 0.119 +il[1379] = -102 +im[1379] = 0.0844 +ij[1379] = 28.5 +id[1380] = "2088-05-17T14:41:16" +ik[1380] = 0.48 +il[1380] = -3 +im[1380] = 0.0568 +ij[1380] = 12 +id[1381] = "2088-08-04T15:29:05" +ik[1381] = 2.345 +il[1381] = 59 +im[1381] = 0.0101 +ij[1381] = 28.1 +id[1382] = "2088-08-06T08:39:15" +ik[1382] = 0.617 +il[1382] = 64 +im[1382] = 0.0365 +ij[1382] = 28.7 +id[1383] = "2088-08-25T23:06:34" +ik[1383] = 5.408 +il[1383] = 124 +im[1383] = 0.1055 +ij[1383] = 28.1 +id[1384] = "2088-10-03T04:51:53" +ik[1384] = 53.985 +il[1384] = -120 +im[1384] = 0.0078 +ij[1384] = 9 +id[1385] = "2088-10-10T23:02:49" +ik[1385] = 3.173 +il[1385] = -97 +im[1385] = 0.1205 +ij[1385] = 28.6 +id[1386] = "2088-10-14T09:16:16" +ik[1386] = 2.689 +il[1386] = -86 +im[1386] = 0.0839 +ij[1386] = 27.4 +id[1387] = "2088-12-12T09:35:49" +ik[1387] = 1.09 +il[1387] = 96 +im[1387] = 0.1685 +ij[1387] = 27.3 +id[1388] = "2088-12-23T03:51:56" +ik[1388] = 90 +il[1388] = 129 +im[1388] = 0.1988 +ij[1388] = 6 +id[1389] = "2088-12-25T20:56:49" +ik[1389] = 1.083 +il[1389] = 137 +im[1389] = 0.2096 +ij[1389] = 28.4 +id[1390] = "2088-12-26T13:51:36" +ik[1390] = 1.164 +il[1390] = 139 +im[1390] = 0.199 +ij[1390] = 28.8 +id[1391] = "2089-01-04T00:30:56" +ik[1391] = 0.195 +il[1391] = 161 +im[1391] = 0.1851 +ij[1391] = 27.5 +id[1392] = "2089-02-10T02:44:43" +ik[1392] = 0 +il[1392] = -123 +im[1392] = 0.271 +ij[1392] = 13 +id[1393] = "2089-03-03T20:45:36" +ik[1393] = 8.83 +il[1393] = -89 +im[1393] = 0.5508 +ij[1393] = 11 +id[1394] = "2089-03-04T07:41:07" +ik[1394] = 0.5537 +il[1394] = -79 +im[1394] = 0.5538 +ij[1394] = 2 +id[1395] = "2089-03-24T14:12:27" +ik[1395] = 42.48 +il[1395] = -69 +im[1395] = 0.0409 +ij[1395] = 7.1602 +id[1396] = "2089-04-26T09:27:14" +ik[1396] = 75.28 +il[1396] = 2 +im[1396] = 0.2361 +ij[1396] = 14 +id[1397] = "2089-05-13T21:54:35" +ik[1397] = 90 +il[1397] = 56 +im[1397] = 0.1997 +ij[1397] = 5 +id[1398] = "2089-05-30T16:34:31" +ik[1398] = 4.22 +il[1398] = 107 +im[1398] = 0.1689 +ij[1398] = 27.6 +id[1399] = "2089-06-13T09:28:13" +ik[1399] = 1.004 +il[1399] = 150 +im[1399] = 0.1425 +ij[1399] = 28.5 +id[1400] = "2089-07-25T23:31:54" +ik[1400] = 54.516 +il[1400] = -81 +im[1400] = 0.1178 +ij[1400] = 8 +id[1401] = "2089-09-22T17:30:54" +ik[1401] = 0.382 +il[1401] = 99 +im[1401] = 0.0774 +ij[1401] = 28.7 +id[1402] = "2089-12-16T19:45:07" +ik[1402] = 0.2 +il[1402] = -12 +im[1402] = 0.0175 +ij[1402] = 12 +id[1403] = "2090-02-01T12:52:42" +ik[1403] = 1.054 +il[1403] = -62 +im[1403] = 0.0168 +ij[1403] = 28.8 +id[1404] = "2090-02-06T15:58:29" +ik[1404] = 1.091 +il[1404] = -39 +im[1404] = 0.0823 +ij[1404] = 27.5 +id[1405] = "2090-03-22T12:18:23" +ik[1405] = 2.61 +il[1405] = 90 +im[1405] = 0.0866 +ij[1405] = 27.6 +id[1406] = "2090-04-28T18:36:16" +ik[1406] = 3.42 +il[1406] = -153 +im[1406] = 0.078 +ij[1406] = 27.2 +id[1407] = "2090-05-05T07:54:54" +ik[1407] = 1.701 +il[1407] = -132 +im[1407] = 0.0637 +ij[1407] = 28.5 +id[1408] = "2090-05-15T22:56:22" +ik[1408] = 54.59 +il[1408] = -99 +im[1408] = 0.0217 +ij[1408] = 9 +id[1409] = "2090-07-22T03:04:36" +ik[1409] = 0.565 +il[1409] = 107 +im[1409] = 0.1916 +ij[1409] = 28.7 +id[1410] = "2090-07-24T20:07:34" +ik[1410] = 90 +il[1410] = 115 +im[1410] = 0.1951 +ij[1410] = 6 +id[1411] = "2090-09-12T09:27:41" +ik[1411] = 0 +il[1411] = -137 +im[1411] = 0.097 +ij[1411] = 13 +id[1412] = "2090-10-01T06:13:02" +ik[1412] = 0.5339 +il[1412] = -115 +im[1412] = 0.534 +ij[1412] = 2 +id[1413] = "2090-10-05T00:57:36" +ik[1413] = 8.06 +il[1413] = -102 +im[1413] = 0.349 +ij[1413] = 11 +id[1414] = "2090-10-25T18:40:18" +ik[1414] = 43.38 +il[1414] = -92 +im[1414] = 0.3933 +ij[1414] = 7.1586 +id[1415] = "2090-11-26T22:19:02" +ik[1415] = 75.54 +il[1415] = -13 +im[1415] = 0.2589 +ij[1415] = 14 +id[1416] = "2090-12-14T18:19:39" +ik[1416] = 90 +il[1416] = 41 +im[1416] = 0.1233 +ij[1416] = 5 +id[1417] = "2091-01-15T17:50:55" +ik[1417] = 2.832 +il[1417] = 140 +im[1417] = 0.0135 +ij[1417] = 27.1 +id[1418] = "2091-01-22T09:15:50" +ik[1418] = 0.875 +il[1418] = 161 +im[1418] = 0.1535 +ij[1418] = 28.6 +id[1419] = "2091-03-03T07:24:49" +ik[1419] = 53.785 +il[1419] = -75 +im[1419] = 0.0092 +ij[1419] = 8 +id[1420] = "2091-03-05T03:33:36" +ik[1420] = 1.384 +il[1420] = -69 +im[1420] = 0.053 +ij[1420] = 27.3 +id[1421] = "2091-03-18T15:07:46" +ik[1421] = 0.198 +il[1421] = -27 +im[1421] = 0.0327 +ij[1421] = 28.8 +id[1422] = "2091-03-23T05:57:36" +ik[1422] = 0.392 +il[1422] = -13 +im[1422] = 0.1048 +ij[1422] = 27.5 +id[1423] = "2091-03-29T16:56:03" +ik[1423] = 0.807 +il[1423] = 7 +im[1423] = 0.0709 +ij[1423] = 28.4 +id[1424] = "2091-04-13T09:40:53" +ik[1424] = 0.302 +il[1424] = 53 +im[1424] = 0.0571 +ij[1424] = 28.1 +id[1425] = "2091-05-05T02:46:27" +ik[1425] = 2.545 +il[1425] = 119 +im[1425] = 0.0636 +ij[1425] = 28.1 +id[1426] = "2091-05-06T15:51:16" +ik[1426] = 3.62 +il[1426] = 124 +im[1426] = 0.0829 +ij[1426] = 27.6 +id[1427] = "2091-06-13T08:02:58" +ik[1427] = 5.14 +il[1427] = -122 +im[1427] = 0.0482 +ij[1427] = 27.2 +id[1428] = "2091-07-24T17:38:24" +ik[1428] = 0.98 +il[1428] = -9 +im[1428] = 0.0787 +ij[1428] = 12 +id[1429] = "2091-08-31T04:31:17" +ik[1429] = 0.536 +il[1429] = -83 +im[1429] = 0.0222 +ij[1429] = 28.7 +id[1430] = "2091-10-28T07:22:02" +ik[1430] = 3.593 +il[1430] = 94 +im[1430] = 0.0289 +ij[1430] = 27.4 +id[1431] = "2091-10-28T10:06:14" +ik[1431] = 5.071 +il[1431] = 94 +im[1431] = 0.0269 +ij[1431] = 28.1 +id[1432] = "2091-11-28T04:14:26" +ik[1432] = 2.245 +il[1432] = -172 +im[1432] = 0.0228 +ij[1432] = 28.6 +id[1433] = "2091-12-18T16:00:24" +ik[1433] = 53.551 +il[1433] = -109 +im[1433] = 0.1128 +ij[1433] = 9 +id[1434] = "2091-12-22T19:54:02" +ik[1434] = 0.722 +il[1434] = -96 +im[1434] = 0.1229 +ij[1434] = 27.3 +id[1435] = "2092-01-09T04:59:22" +ik[1435] = 1.112 +il[1435] = -42 +im[1435] = 0.0818 +ij[1435] = 28.8 +id[1436] = "2092-01-10T06:53:09" +ik[1436] = 1.203 +il[1436] = -39 +im[1436] = 0.056 +ij[1436] = 27.5 +id[1437] = "2092-02-27T10:21:15" +ik[1437] = 0.26 +il[1437] = 112 +im[1437] = 0.037 +ij[1437] = 27.6 +id[1438] = "2092-03-06T03:07:43" +ik[1438] = 90 +il[1438] = 136 +im[1438] = 0.2045 +ij[1438] = 6 +id[1439] = "2092-04-21T22:19:29" +ik[1439] = 0 +il[1439] = -124 +im[1439] = 0.2152 +ij[1439] = 13 +id[1440] = "2092-05-14T03:14:24" +ik[1440] = 3.38 +il[1440] = -90 +im[1440] = 0.5188 +ij[1440] = 11 +id[1441] = "2092-05-14T07:00:46" +ik[1441] = 0.519 +il[1441] = -80 +im[1441] = 0.5191 +ij[1441] = 2 +id[1442] = "2092-06-04T06:00:08" +ik[1442] = 43.32 +il[1442] = -70 +im[1442] = 0.1416 +ij[1442] = 7.1654 +id[1443] = "2092-07-08T05:38:52" +ik[1443] = 77.31 +il[1443] = 7 +im[1443] = 0.252 +ij[1443] = 14 +id[1444] = "2092-07-23T03:28:57" +ik[1444] = 90 +il[1444] = 51 +im[1444] = 0.2056 +ij[1444] = 5 +id[1445] = "2092-09-18T15:14:49" +ik[1445] = 0.85 +il[1445] = -134 +im[1445] = 0.1264 +ij[1445] = 28.5 +id[1446] = "2092-10-03T07:46:12" +ik[1446] = 54.296 +il[1446] = -89 +im[1446] = 0.1003 +ij[1446] = 8 +id[1447] = "2092-10-15T22:30:00" +ik[1447] = 0.466 +il[1447] = -50 +im[1447] = 0.0726 +ij[1447] = 28.7 +id[1448] = "2092-12-20T07:12:42" +ik[1448] = 4.708 +il[1448] = 154 +im[1448] = 0.0942 +ij[1448] = 27.1 +id[1449] = "2093-01-19T08:13:12" +ik[1449] = 0.525 +il[1449] = -113 +im[1449] = 0.0875 +ij[1449] = 28.6 +id[1450] = "2093-03-03T22:53:45" +ik[1450] = 1.43 +il[1450] = 0 +im[1450] = 0.0868 +ij[1450] = 12 +id[1451] = "2093-05-11T10:25:58" +ik[1451] = 3.572 +il[1451] = 25 +im[1451] = 0.0206 +ij[1451] = 28.1 +id[1452] = "2093-05-12T17:09:09" +ik[1452] = 4.123 +il[1452] = 29 +im[1452] = 0.0089 +ij[1452] = 27.2 +id[1453] = "2093-05-28T12:03:36" +ik[1453] = 0.374 +il[1453] = 79 +im[1453] = 0.0242 +ij[1453] = 28.1 +id[1454] = "2093-07-22T12:02:13" +ik[1454] = 54.592 +il[1454] = -112 +im[1454] = 0.0909 +ij[1454] = 9 +id[1455] = "2093-08-09T17:07:35" +ik[1455] = 0.109 +il[1455] = -56 +im[1455] = 0.0098 +ij[1455] = 28.7 +id[1456] = "2093-08-14T03:13:32" +ik[1456] = 0.844 +il[1456] = -43 +im[1456] = 0.1089 +ij[1456] = 28.5 +id[1457] = "2093-10-05T22:01:40" +ik[1457] = 90 +il[1457] = 120 +im[1457] = 0.1148 +ij[1457] = 6 +id[1458] = "2093-10-06T18:04:15" +ik[1458] = 0.54 +il[1458] = 124 +im[1458] = 0.084 +ij[1458] = 27.4 +id[1459] = "2093-11-26T05:39:18" +ik[1459] = 0 +il[1459] = -129 +im[1459] = 0.413 +ij[1459] = 13 +id[1460] = "2093-12-11T20:56:32" +ik[1460] = 0.5631 +il[1460] = -110 +im[1460] = 0.5632 +ij[1460] = 2 +id[1461] = "2093-12-17T11:38:24" +ik[1461] = 1.41 +il[1461] = -95 +im[1461] = 0.1096 +ij[1461] = 11 +id[1462] = "2094-01-07T05:44:53" +ik[1462] = 42 +il[1462] = -85 +im[1462] = 0.4776 +ij[1462] = 7.1543 +id[1463] = "2094-02-07T14:23:38" +ik[1463] = 73.36 +il[1463] = -9 +im[1463] = 0.233 +ij[1463] = 14 +id[1464] = "2094-02-26T21:01:32" +ik[1464] = 90 +il[1464] = 50 +im[1464] = 0.0407 +ij[1464] = 5 +id[1465] = "2094-03-08T01:57:56" +ik[1465] = 2.465 +il[1465] = 79 +im[1465] = 0.1822 +ij[1465] = 28.6 +id[1466] = "2094-03-15T09:51:49" +ik[1466] = 2.863 +il[1466] = 102 +im[1466] = 0.0831 +ij[1466] = 27.3 +id[1467] = "2094-04-04T01:26:55" +ik[1467] = 0.392 +il[1467] = 163 +im[1467] = 0.1522 +ij[1467] = 27.5 +id[1468] = "2094-04-04T11:26:18" +ik[1468] = 0.479 +il[1468] = 164 +im[1468] = 0.153 +ij[1468] = 28.8 +id[1469] = "2094-05-15T07:46:14" +ik[1469] = 54.23 +il[1469] = -70 +im[1469] = 0.0847 +ij[1469] = 8 +id[1470] = "2094-05-20T05:47:14" +ik[1470] = 3.93 +il[1470] = -55 +im[1470] = 0.1184 +ij[1470] = 27.6 +id[1471] = "2094-06-24T13:55:20" +ik[1471] = 5.91 +il[1471] = 53 +im[1471] = 0.0399 +ij[1471] = 28.1 +id[1472] = "2094-06-27T18:47:51" +ik[1472] = 5.714 +il[1472] = 63 +im[1472] = 0.0271 +ij[1472] = 27.2 +id[1473] = "2094-07-14T19:39:21" +ik[1473] = 0.049 +il[1473] = 115 +im[1473] = 0.071 +ij[1473] = 27.91 +id[1474] = "2094-10-01T16:53:45" +ik[1474] = 1.32 +il[1474] = -18 +im[1474] = 0.0879 +ij[1474] = 12 +id[1475] = "2094-11-11T11:47:48" +ik[1475] = 4.198 +il[1475] = -82 +im[1475] = 0.0422 +ij[1475] = 27.4 +id[1476] = "2094-12-26T05:53:57" +ik[1476] = 2.996 +il[1476] = 54 +im[1476] = 0.0488 +ij[1476] = 28.1 +id[1477] = "2095-01-05T04:58:02" +ik[1477] = 0.353 +il[1477] = 85 +im[1477] = 0.0599 +ij[1477] = 27.3 +id[1478] = "2095-01-14T08:49:29" +ik[1478] = 0.496 +il[1478] = 113 +im[1478] = 0.0963 +ij[1478] = 28.6 +id[1479] = "2095-01-23T00:26:02" +ik[1479] = 1.198 +il[1479] = 140 +im[1479] = 0.0057 +ij[1479] = 27.5 +id[1480] = "2095-01-27T01:10:59" +ik[1480] = 0.808 +il[1480] = 152 +im[1480] = 0.0744 +ij[1480] = 28.8 +id[1481] = "2095-03-04T07:03:35" +ik[1481] = 53.978 +il[1481] = -95 +im[1481] = 0.1026 +ij[1481] = 9 +id[1482] = "2095-03-08T16:28:08" +ik[1482] = 1.94 +il[1482] = -81 +im[1482] = 0.0114 +ij[1482] = 27.6 +id[1483] = "2095-04-17T01:18:28" +ik[1483] = 2.147 +il[1483] = 42 +im[1483] = 0.1609 +ij[1483] = 27.2 +id[1484] = "2095-04-18T09:48:48" +ik[1484] = 1.196 +il[1484] = 46 +im[1484] = 0.145 +ij[1484] = 28.4 +id[1485] = "2095-05-14T19:39:16" +ik[1485] = 90 +il[1485] = 128 +im[1485] = 0.2178 +ij[1485] = 6 +id[1486] = "2095-06-30T14:24:05" +ik[1486] = 0 +il[1486] = -132 +im[1486] = 0.2867 +ij[1486] = 13 +id[1487] = "2095-07-11T08:35:47" +ik[1487] = 0.4927 +il[1487] = -118 +im[1487] = 0.4928 +ij[1487] = 2 +id[1488] = "2095-07-23T02:13:55" +ik[1488] = 5.83 +il[1488] = -97 +im[1488] = 0.4729 +ij[1488] = 11 +id[1489] = "2095-08-14T14:27:39" +ik[1489] = 45 +il[1489] = -87 +im[1489] = 0.1212 +ij[1489] = 7.1656 +id[1490] = "2095-09-16T19:49:28" +ik[1490] = 78.23 +il[1490] = -1 +im[1490] = 0.2371 +ij[1490] = 14 +id[1491] = "2095-10-01T16:49:26" +ik[1491] = 90 +il[1491] = 44 +im[1491] = 0.2209 +ij[1491] = 5 +id[1492] = "2095-11-07T10:20:38" +ik[1492] = 0.638 +il[1492] = 156 +im[1492] = 0.0456 +ij[1492] = 28.7 +id[1493] = "2095-12-15T15:07:10" +ik[1493] = 53.83 +il[1493] = -86 +im[1493] = 0.1218 +ij[1493] = 8 +id[1494] = "2095-12-31T18:12:40" +ik[1494] = 0.643 +il[1494] = -35 +im[1494] = 0.1092 +ij[1494] = 28.5 +id[1495] = "2096-01-04T01:42:28" +ik[1495] = 4.023 +il[1495] = -25 +im[1495] = 0.073 +ij[1495] = 27.1 +id[1496] = "2096-02-19T03:46:28" +ik[1496] = 0.727 +il[1496] = 119 +im[1496] = 0.0602 +ij[1496] = 27.3 +id[1497] = "2096-03-07T13:48:17" +ik[1497] = 0.457 +il[1497] = 173 +im[1497] = 0.0063 +ij[1497] = 28.6 +id[1498] = "2096-03-07T20:53:35" +ik[1498] = 0.743 +il[1498] = 173 +im[1498] = 0.0085 +ij[1498] = 27.5 +id[1499] = "2096-03-12T13:23:39" +ik[1499] = 0.491 +il[1499] = -179 +im[1499] = 0.0779 +ij[1499] = 28.8 +id[1500] = "2096-05-15T07:56:38" +ik[1500] = 0.53 +il[1500] = 0 +im[1500] = 0.0846 +ij[1500] = 12 +id[1501] = "2096-07-01T12:59:45" +ik[1501] = 2.142 +il[1501] = -37 +im[1501] = 0.0798 +ij[1501] = 28.1 +id[1502] = "2096-08-08T18:44:12" +ik[1502] = 4.228 +il[1502] = 82 +im[1502] = 0.0531 +ij[1502] = 28.1 +id[1503] = "2096-09-01T02:19:14" +ik[1503] = 0.018 +il[1503] = 153 +im[1503] = 0.0781 +ij[1503] = 28.7 +id[1504] = "2096-09-30T18:29:51" +ik[1504] = 54.009 +il[1504] = -118 +im[1504] = 0.0922 +ij[1504] = 9 +id[1505] = "2096-10-14T00:53:35" +ik[1505] = 2.648 +il[1505] = -77 +im[1505] = 0.1185 +ij[1505] = 27.4 +id[1506] = "2096-11-25T07:32:18" +ik[1506] = 2.276 +il[1506] = 53 +im[1506] = 0.1585 +ij[1506] = 28.5 +id[1507] = "2096-12-12T07:53:08" +ik[1507] = 1.091 +il[1507] = 105 +im[1507] = 0.2055 +ij[1507] = 27.3 +id[1508] = "2096-12-20T15:36:02" +ik[1508] = 90 +il[1508] = 131 +im[1508] = 0.0702 +ij[1508] = 6 +id[1509] = "2097-01-04T11:15:22" +ik[1509] = 0.045 +il[1509] = 170 +im[1509] = 0.1467 +ij[1509] = 27.5 +id[1510] = "2097-01-15T13:04:22" +ik[1510] = 1.804 +il[1510] = -165 +im[1510] = 0.1229 +ij[1510] = 28.8 +id[1511] = "2097-01-25T10:22:04" +ik[1511] = 4.851 +il[1511] = -144 +im[1511] = 0.3227 +ij[1511] = 28.6 +id[1512] = "2097-02-07T19:49:55" +ik[1512] = 0 +il[1512] = -120 +im[1512] = 0.4587 +ij[1512] = 13 +id[1513] = "2097-03-01T10:01:55" +ik[1513] = 8.82 +il[1513] = -87 +im[1513] = 0.3392 +ij[1513] = 11 +id[1514] = "2097-03-05T12:45:23" +ik[1514] = 0.5535 +il[1514] = -77 +im[1514] = 0.5536 +ij[1514] = 2 +id[1515] = "2097-03-22T01:59:31" +ik[1515] = 42.26 +il[1515] = -67 +im[1515] = 0.3037 +ij[1515] = 7.16 +id[1516] = "2097-04-09T09:42:11" +ik[1516] = 3.88 +il[1516] = -41 +im[1516] = 0.0448 +ij[1516] = 28.8 +id[1517] = "2097-04-15T09:06:37" +ik[1517] = 3.978 +il[1517] = -22 +im[1517] = 0.2795 +ij[1517] = 28.6 +id[1518] = "2097-04-23T21:40:15" +ik[1518] = 75.08 +il[1518] = 4 +im[1518] = 0.0696 +ij[1518] = 14 +id[1519] = "2097-05-11T12:27:38" +ik[1519] = 90 +il[1519] = 58 +im[1519] = 0.1336 +ij[1519] = 5 +id[1520] = "2097-05-30T12:58:05" +ik[1520] = 4.22 +il[1520] = 117 +im[1520] = 0.1813 +ij[1520] = 27.6 +id[1521] = "2097-07-23T16:39:39" +ik[1521] = 54.514 +il[1521] = -78 +im[1521] = 0.0583 +ij[1521] = 8 +id[1522] = "2097-08-24T11:27:27" +ik[1522] = 1.356 +il[1522] = 19 +im[1522] = 0.0743 +ij[1522] = 28.4 +id[1523] = "2097-10-18T00:03:53" +ik[1523] = 0.703 +il[1523] = -179 +im[1523] = 0.0367 +ij[1523] = 28.7 +id[1524] = "2097-12-14T07:01:55" +ik[1524] = 0.13 +il[1524] = -180 +im[1524] = 0.076 +ij[1524] = 12 +id[1525] = "2098-01-27T14:29:37" +ik[1525] = 0.369 +il[1525] = -64 +im[1525] = 0.0822 +ij[1525] = 28.5 +id[1526] = "2098-02-06T05:10:55" +ik[1526] = 1.095 +il[1526] = -36 +im[1526] = 0.0593 +ij[1526] = 27.5 +id[1527] = "2098-02-15T03:33:50" +ik[1527] = 0.556 +il[1527] = -10 +im[1527] = 0.0363 +ij[1527] = 28.8 +id[1528] = "2098-02-18T00:18:00" +ik[1528] = 2.664 +il[1528] = 2 +im[1528] = 0.0203 +ij[1528] = 28.1 +id[1529] = "2098-02-26T20:44:18" +ik[1529] = 3.828 +il[1529] = 27 +im[1529] = 0.0882 +ij[1529] = 28.1 +id[1530] = "2098-03-01T04:40:22" +ik[1530] = 1.039 +il[1530] = 34 +im[1530] = 0.0631 +ij[1530] = 28.6 +id[1531] = "2098-03-22T01:50:58" +ik[1531] = 2.59 +il[1531] = 99 +im[1531] = 0.0585 +ij[1531] = 27.6 +id[1532] = "2098-04-28T08:59:48" +ik[1532] = 3.389 +il[1532] = -144 +im[1532] = 0.1046 +ij[1532] = 27.2 +id[1533] = "2098-05-13T16:36:06" +ik[1533] = 54.578 +il[1533] = -96 +im[1533] = 0.0969 +ij[1533] = 9 +id[1534] = "2098-07-22T11:51:22" +ik[1534] = 90 +il[1534] = 118 +im[1534] = 0.1701 +ij[1534] = 6 +id[1535] = "2098-08-29T22:48:34" +ik[1535] = 6.074 +il[1535] = 170 +im[1535] = 0.0518 +ij[1535] = 28.7 +id[1536] = "2098-09-09T21:40:42" +ik[1536] = 0 +il[1536] = -135 +im[1536] = 0.2837 +ij[1536] = 13 +id[1537] = "2098-10-02T11:15:01" +ik[1537] = 0.5485 +il[1537] = -109 +im[1537] = 0.5485 +ij[1537] = 2 +id[1538] = "2098-10-02T14:31:12" +ik[1538] = 8.19 +il[1538] = -99 +im[1538] = 0.5483 +ij[1538] = 11 +id[1539] = "2098-10-23T08:45:30" +ik[1539] = 43.46 +il[1539] = -89 +im[1539] = 0.1109 +ij[1539] = 7.159 +id[1540] = "2098-11-20T10:40:22" +ik[1540] = 0.221 +il[1540] = -10 +im[1540] = 0.0612 +ij[1540] = 28.7 +id[1541] = "2098-11-24T14:31:15" +ik[1541] = 75.7 +il[1541] = -1 +im[1541] = 0.2508 +ij[1541] = 14 +id[1542] = "2098-12-12T07:56:05" +ik[1542] = 90 +il[1542] = 43 +im[1542] = 0.2071 +ij[1542] = 5 +id[1543] = "2099-01-15T11:58:55" +ik[1543] = 2.891 +il[1543] = 149 +im[1543] = 0.0663 +ij[1543] = 27.1 +id[1544] = "2099-02-28T19:19:41" +ik[1544] = 53.775 +il[1544] = -73 +im[1544] = 0.0877 +ij[1544] = 8 +id[1545] = "2099-03-04T18:15:48" +ik[1545] = 1.354 +il[1545] = -60 +im[1545] = 0.0113 +ij[1545] = 27.3 +id[1546] = "2099-03-22T20:10:01" +ik[1546] = 0.409 +il[1546] = -4 +im[1546] = 0.0749 +ij[1546] = 27.5 +id[1547] = "2099-04-01T15:11:31" +ik[1547] = 0.254 +il[1547] = 26 +im[1547] = 0.0385 +ij[1547] = 28.8 +id[1548] = "2099-04-03T10:28:42" +ik[1548] = 0.149 +il[1548] = 32 +im[1548] = 0.003 +ij[1548] = 28.5 +id[1549] = "2099-04-23T02:14:03" +ik[1549] = 0.929 +il[1549] = 92 +im[1549] = 0.0783 +ij[1549] = 28.6 +id[1550] = "2099-05-06T05:18:59" +ik[1550] = 3.61 +il[1550] = 132 +im[1550] = 0.0591 +ij[1550] = 27.6 +id[1551] = "2099-06-12T21:05:37" +ik[1551] = 5.122 +il[1551] = -113 +im[1551] = 0.0769 +ij[1551] = 27.2 +id[1552] = "2099-07-22T12:08:38" +ik[1552] = 0.95 +il[1552] = -12 +im[1552] = 0.0706 +ij[1552] = 12 +id[1553] = "2099-08-27T12:18:08" +ik[1553] = 0.406 +il[1553] = -84 +im[1553] = 0.0646 +ij[1553] = 28.1 +id[1554] = "2099-09-25T13:14:00" +ik[1554] = 0.142 +il[1554] = 5 +im[1554] = 0.0826 +ij[1554] = 28.7 +id[1555] = "2099-10-03T06:02:09" +ik[1555] = 0.615 +il[1555] = 28 +im[1555] = 0.037 +ij[1555] = 28.4 +id[1556] = "2099-10-12T21:23:36" +ik[1556] = 3.694 +il[1556] = 57 +im[1556] = 0.0555 +ij[1556] = 28.1 +id[1557] = "2099-10-27T21:13:34" +ik[1557] = 3.568 +il[1557] = 103 +im[1557] = 0.067 +ij[1557] = 27.4 +id[1558] = "2099-12-16T02:26:22" +ik[1558] = 53.552 +il[1558] = -107 +im[1558] = 0.0312 +ij[1558] = 9 +id[1559] = "2099-12-22T10:57:08" +ik[1559] = 0.735 +il[1559] = -87 +im[1559] = 0.1291 +ij[1559] = 27.3 +id[1560] = "2100-01-09T22:55:21" +ik[1560] = 1.197 +il[1560] = -30 +im[1560] = 0.1025 +ij[1560] = 27.5 +id[1561] = "2100-01-23T16:56:12" +ik[1561] = 0.053 +il[1561] = 13 +im[1561] = 0.1446 +ij[1561] = 28.8 +id[1562] = "2100-02-24T14:41:25" +ik[1562] = 2.72 +il[1562] = 113 +im[1562] = 0.1355 +ij[1562] = 28.5 +id[1563] = "2100-02-27T09:07:53" +ik[1563] = 0.15 +il[1563] = 122 +im[1563] = 0.0275 +ij[1563] = 27.6 +id[1564] = "2100-02-27T19:33:44" +ik[1564] = 4.303 +il[1564] = 123 +im[1564] = 0.0085 +ij[1564] = 28.6 +id[1565] = "2100-03-04T18:44:26" +ik[1565] = 90 +il[1565] = 139 +im[1565] = 0.1901 +ij[1565] = 6 +id[1566] = "2100-04-20T14:31:42" +ik[1566] = 0 +il[1566] = -122 +im[1566] = 0.3957 +ij[1566] = 13 +id[1567] = "2100-05-02T23:21:05" +ik[1567] = 0.5058 +il[1567] = -106 +im[1567] = 0.5058 +ij[1567] = 2 +id[1568] = "2100-05-12T19:50:52" +ik[1568] = 3.68 +il[1568] = -87 +im[1568] = 0.3364 +ij[1568] = 11 +id[1569] = "2100-06-02T21:43:25" +ik[1569] = 43.3 +il[1569] = -77 +im[1569] = 0.2062 +ij[1569] = 7.1653 +id[1570] = "2100-07-06T20:47:17" +ik[1570] = 77.26 +il[1570] = 9 +im[1570] = 0.1563 +ij[1570] = 14 +id[1571] = "2100-07-21T20:12:53" +ik[1571] = 90 +il[1571] = 54 +im[1571] = 0.1595 +ij[1571] = 5 +id[1572] = "2100-10-01T23:28:36" +ik[1572] = 54.311 +il[1572] = -86 +im[1572] = 0.0223 +ij[1572] = 8 +id[1573] = "2100-11-11T12:26:47" +ik[1573] = 0.979 +il[1573] = 39 +im[1573] = 0.0569 +ij[1573] = 28.7 +id[1574] = "2100-12-20T20:34:54" +ik[1574] = 4.732 +il[1574] = 162 +im[1574] = 0.0839 +ij[1574] = 27.1 +id[1575] = "2101-03-02T09:37:26" +ik[1575] = 1.43 +il[1575] = 8 +im[1575] = 0.0406 +ij[1575] = 12 +id[1576] = "2101-04-06T12:32:56" +ik[1576] = 3 +il[1576] = -66 +im[1576] = 0.0882 +ij[1576] = 27.6 +id[1577] = "2101-04-11T20:15:12" +ik[1577] = 3.524 +il[1577] = -54 +im[1577] = 0.055 +ij[1577] = 28.1 +id[1578] = "2101-04-15T07:00:20" +ik[1578] = 1.74 +il[1578] = -42 +im[1578] = 0.0113 +ij[1578] = 28.6 +id[1579] = "2101-04-26T12:10:04" +ik[1579] = 0.786 +il[1579] = -16 +im[1579] = 0.0532 +ij[1579] = 28.5 +id[1580] = "2101-05-08T03:41:54" +ik[1580] = 1.332 +il[1580] = 22 +im[1580] = 0.0902 +ij[1580] = 28.1 +id[1581] = "2101-05-13T06:29:34" +ik[1581] = 4.101 +il[1581] = 38 +im[1581] = 0.0307 +ij[1581] = 27.2 +id[1582] = "2101-07-21T05:45:31" +ik[1582] = 54.603 +il[1582] = -109 +im[1582] = 0.1245 +ij[1582] = 9 +id[1583] = "2101-09-07T10:11:25" +ik[1583] = 1.787 +il[1583] = 38 +im[1583] = 0.1212 +ij[1583] = 28.7 +id[1584] = "2103-12-05T03:57:37" +ik[1584] = 1.472 +il[1584] = -111 +im[1584] = 0.1175 +ij[1584] = 28.7 +id[1585] = "2101-10-04T09:51:58" +ik[1585] = 90 +il[1585] = 120 +im[1585] = 0.2096 +ij[1585] = 6 +id[1586] = "2101-10-07T21:09:34" +ik[1586] = 0.408 +il[1586] = 130 +im[1586] = 0.1444 +ij[1586] = 27.4 +id[1587] = "2101-11-12T23:40:42" +ik[1587] = 2.069 +il[1587] = -147 +im[1587] = 0.244 +ij[1587] = 28.4 +id[1588] = "2101-11-24T20:47:45" +ik[1588] = 0 +il[1588] = -126 +im[1588] = 0.1628 +ij[1588] = 13 +id[1589] = "2101-12-13T22:39:57" +ik[1589] = 0.56 +il[1589] = -104 +im[1589] = 0.5601 +ij[1589] = 2 +id[1590] = "2101-12-16T00:40:19" +ik[1590] = 1.01 +il[1590] = -92 +im[1590] = 0.4895 +ij[1590] = 11 +id[1591] = "2101-12-19T12:36:25" +ik[1591] = 4.857 +il[1591] = -81 +im[1591] = 0.1095 +ij[1591] = 28.4 +id[1592] = "2102-01-05T19:50:20" +ik[1592] = 41.96 +il[1592] = -71 +im[1592] = 0.3283 +ij[1592] = 7.1542 +id[1593] = "2102-02-06T02:30:04" +ik[1593] = 73.24 +il[1593] = -7 +im[1593] = 0.276 +ij[1593] = 14 +id[1594] = "2102-02-25T09:13:03" +ik[1594] = 90 +il[1594] = 52 +im[1594] = 0.1412 +ij[1594] = 5 +id[1595] = "2102-03-16T05:58:28" +ik[1595] = 2.775 +il[1595] = 111 +im[1595] = 0.0262 +ij[1595] = 27.3 +id[1596] = "2102-04-04T18:43:21" +ik[1596] = 0.347 +il[1596] = 172 +im[1596] = 0.1261 +ij[1596] = 27.5 +id[1597] = "2102-04-20T08:48:02" +ik[1597] = 0.035 +il[1597] = -140 +im[1597] = 0.1347 +ij[1597] = 28.8 +id[1598] = "2102-05-13T23:10:52" +ik[1598] = 54.215 +il[1598] = -67 +im[1598] = 0.014 +ij[1598] = 8 +id[1599] = "2102-05-20T20:27:54" +ik[1599] = 3.92 +il[1599] = -46 +im[1599] = 0.1167 +ij[1599] = 27.6 +id[1600] = "2102-06-06T15:13:06" +ik[1600] = 0.664 +il[1600] = 5 +im[1600] = 0.0997 +ij[1600] = 28.6 +id[1601] = "2102-06-28T08:26:04" +ik[1601] = 5.692 +il[1601] = 72 +im[1601] = 0.0163 +ij[1601] = 27.2 +id[1602] = "2102-07-02T21:30:48" +ik[1602] = 0.284 +il[1602] = 85 +im[1602] = 0.0734 +ij[1602] = 28.5 +id[1603] = "2102-07-15T08:55:40" +ik[1603] = 0.07 +il[1603] = 123 +im[1603] = 0.0352 +ij[1603] = 27.91 +id[1604] = "2102-09-30T08:02:24" +ik[1604] = 1.34 +il[1604] = -21 +im[1604] = 0.0623 +ij[1604] = 12 +id[1605] = "2102-11-12T01:07:21" +ik[1605] = 4.179 +il[1605] = -74 +im[1605] = 0.0101 +ij[1605] = 27.4 +id[1606] = "2102-12-12T04:08:41" +ik[1606] = 0.066 +il[1606] = 18 +im[1606] = 0.0116 +ij[1606] = 28.1 +id[1607] = "2103-01-05T18:32:41" +ik[1607] = 0.364 +il[1607] = 93 +im[1607] = 0.0854 +ij[1607] = 27.3 +id[1608] = "2103-01-23T14:18:01" +ik[1608] = 1.2 +il[1608] = 148 +im[1608] = 0.0456 +ij[1608] = 27.5 +id[1609] = "2103-02-10T20:39:41" +ik[1609] = 0.016 +il[1609] = -155 +im[1609] = 0.036 +ij[1609] = 28.8 +id[1610] = "2103-03-02T20:20:13" +ik[1610] = 53.954 +il[1610] = -92 +im[1610] = 0.1062 +ij[1610] = 9 +id[1611] = "2103-03-09T07:26:51" +ik[1611] = 1.9 +il[1611] = -72 +im[1611] = 0.0551 +ij[1611] = 27.6 +id[1612] = "2103-04-09T07:46:42" +ik[1612] = 3.887 +il[1612] = 25 +im[1612] = 0.0318 +ij[1612] = 28.6 +id[1613] = "2103-04-17T19:49:34" +ik[1613] = 2.082 +il[1613] = 51 +im[1613] = 0.1693 +ij[1613] = 27.2 +id[1614] = "2103-05-13T13:33:06" +ik[1614] = 90 +il[1614] = 131 +im[1614] = 0.1368 +ij[1614] = 6 +id[1615] = "2103-06-04T23:56:17" +ik[1615] = 2.137 +il[1615] = -161 +im[1615] = 0.1866 +ij[1615] = 28.5 +id[1616] = "2103-07-02T01:34:38" +ik[1616] = 2.96 +il[1616] = -125 +im[1616] = 0.3532 +ij[1616] = 14 +id[1617] = "2103-07-13T13:51:12" +ik[1617] = 0.5012 +il[1617] = -122 +im[1617] = 0.5013 +ij[1617] = 2 +id[1618] = "2103-07-16T01:34:48" +ik[1618] = 0 +il[1618] = -109 +im[1618] = 0.4179 +ij[1618] = 13 +id[1619] = "2103-07-21T18:38:52" +ik[1619] = 5.59 +il[1619] = -94 +im[1619] = 0.2206 +ij[1619] = 11 +id[1620] = "2103-09-30T08:39:26" +ik[1620] = 90 +il[1620] = 46 +im[1620] = 0.13 +ij[1620] = 5 +id[1621] = "2103-12-14T03:51:48" +ik[1621] = 53.843 +il[1621] = -83 +im[1621] = 0.0799 +ij[1621] = 8 +id[1622] = "2104-01-04T16:01:07" +ik[1622] = 4.055 +il[1622] = -16 +im[1622] = 0.0954 +ij[1622] = 27.1 +id[1623] = "2104-02-06T21:28:48" +ik[1623] = 1.332 +il[1623] = 88 +im[1623] = 0.0401 +ij[1623] = 28.4 +id[1624] = "2104-02-19T17:17:34" +ik[1624] = 0.71 +il[1624] = 127 +im[1624] = 0.0868 +ij[1624] = 27.3 +id[1625] = "2104-03-08T10:10:01" +ik[1625] = 0.752 +il[1625] = -178 +im[1625] = 0.0342 +ij[1625] = 27.5 +id[1626] = "2104-03-27T05:52:22" +ik[1626] = 0.229 +il[1626] = -120 +im[1626] = 0.0295 +ij[1626] = 28.8 +id[1627] = "2104-03-30T19:07:32" +ik[1627] = 1.899 +il[1627] = -109 +im[1627] = 0.0788 +ij[1627] = 28.1 +id[1628] = "2104-05-14T01:06:14" +ik[1628] = 0.58 +il[1628] = 3 +im[1628] = 0.0593 +ij[1628] = 12 +id[1629] = "2104-07-18T18:52:07" +ik[1629] = 3.156 +il[1629] = 24 +im[1629] = 0.0777 +ij[1629] = 28.1 +id[1630] = "2104-07-31T05:03:07" +ik[1630] = 0.303 +il[1630] = 62 +im[1630] = 0.0966 +ij[1630] = 28.5 +id[1631] = "2104-09-28T09:07:55" +ik[1631] = 0.986 +il[1631] = -118 +im[1631] = 0.1073 +ij[1631] = 28.7 +id[1632] = "2104-09-29T08:18:29" +ik[1632] = 54.033 +il[1632] = -115 +im[1632] = 0.1142 +ij[1632] = 9 +id[1633] = "2104-10-14T16:41:34" +ik[1633] = 2.606 +il[1633] = -68 +im[1633] = 0.1344 +ij[1633] = 27.4 +id[1634] = "2104-12-13T06:55:47" +ik[1634] = 1.089 +il[1634] = 115 +im[1634] = 0.2177 +ij[1634] = 27.3 +id[1635] = "2104-12-19T03:18:21" +ik[1635] = 90 +il[1635] = 134 +im[1635] = 0.1119 +ij[1635] = 6 +id[1636] = "2105-01-06T01:10:54" +ik[1636] = 0.138 +il[1636] = 170 +im[1636] = 0.0991 +ij[1636] = 27.5 +id[1637] = "2105-02-05T17:49:35" +ik[1637] = 0 +il[1637] = -119 +im[1637] = 0.3179 +ij[1637] = 13 +id[1638] = "2105-02-27T23:11:02" +ik[1638] = 8.79 +il[1638] = -84 +im[1638] = 0.11 +ij[1638] = 11 +id[1639] = "2105-03-07T17:25:11" +ik[1639] = 0.5406 +il[1639] = -74 +im[1639] = 0.5407 +ij[1639] = 2 +id[1640] = "2105-03-20T20:58:10" +ik[1640] = 43.13 +il[1640] = -64 +im[1640] = 0.4164 +ij[1640] = 7.1594 +id[1641] = "2105-03-31T20:40:17" +ik[1641] = 5.47 +il[1641] = -31 +im[1641] = 0.2992 +ij[1641] = 27.5 +id[1642] = "2105-04-22T08:54:55" +ik[1642] = 75.63 +il[1642] = 6 +im[1642] = 0.1446 +ij[1642] = 14 +id[1643] = "2105-05-02T08:05:08" +ik[1643] = 1.017 +il[1643] = 37 +im[1643] = 0.2385 +ij[1643] = 28.8 +id[1644] = "2105-05-10T02:52:42" +ik[1644] = 90 +il[1644] = 61 +im[1644] = 0.0378 +ij[1644] = 5 +id[1645] = "2105-05-31T08:47:48" +ik[1645] = 4.22 +il[1645] = 126 +im[1645] = 0.1671 +ij[1645] = 27.6 +id[1646] = "2105-07-11T13:33:10" +ik[1646] = 6.492 +il[1646] = -108 +im[1646] = 0.0698 +ij[1646] = 27.2 +id[1647] = "2105-07-18T14:45:44" +ik[1647] = 0.191 +il[1647] = -86 +im[1647] = 0.1067 +ij[1647] = 28.6 +id[1648] = "2105-07-22T09:50:57" +ik[1648] = 54.512 +il[1648] = -75 +im[1648] = 0.0379 +ij[1648] = 8 +id[1649] = "2105-10-10T15:46:03" +ik[1649] = 0.082 +il[1649] = 173 +im[1649] = 0.0666 +ij[1649] = 28.5 +id[1650] = "2105-12-12T18:25:55" +ik[1650] = 0.07 +il[1650] = -88 +im[1650] = 0.0817 +ij[1650] = 12 +id[1651] = "2106-01-20T03:22:54" +ik[1651] = 0.037 +il[1651] = -76 +im[1651] = 0.0106 +ij[1651] = 27.3 +id[1652] = "2106-02-06T18:24:14" +ik[1652] = 1.099 +il[1652] = -29 +im[1652] = 0.0282 +ij[1652] = 27.5 +id[1653] = "2106-02-10T04:51:01" +ik[1653] = 3.308 +il[1653] = -17 +im[1653] = 0.0752 +ij[1653] = 28.1 +id[1654] = "2106-02-12T03:05:28" +ik[1654] = 0.867 +il[1654] = -12 +im[1654] = 0.0861 +ij[1654] = 28.4 +id[1655] = "2106-03-01T18:10:48" +ik[1655] = 0.084 +il[1655] = 43 +im[1655] = 0.0886 +ij[1655] = 28.8 +id[1656] = "2106-03-22T15:24:41" +ik[1656] = 2.58 +il[1656] = 108 +im[1656] = 0.0182 +ij[1656] = 27.6 +id[1657] = "2106-04-28T23:24:14" +ik[1657] = 3.357 +il[1657] = -135 +im[1657] = 0.1124 +ij[1657] = 27.2 +id[1658] = "2106-05-12T10:12:18" +ik[1658] = 54.565 +il[1658] = -93 +im[1658] = 0.1168 +ij[1658] = 9 +id[1659] = "2106-05-20T00:05:19" +ik[1659] = 2.675 +il[1659] = -70 +im[1659] = 0.0348 +ij[1659] = 28.6 +id[1660] = "2106-07-21T03:41:21" +ik[1660] = 90 +il[1660] = 120 +im[1660] = 0.0382 +ij[1660] = 6 +id[1661] = "2106-09-08T08:55:21" +ik[1661] = 0 +il[1661] = -132 +im[1661] = 0.4406 +ij[1661] = 13 +id[1662] = "2106-10-01T04:07:40" +ik[1662] = 8.31 +il[1662] = -97 +im[1662] = 0.3972 +ij[1662] = 11 +id[1663] = "2106-10-04T12:26:30" +ik[1663] = 0.5506 +il[1663] = -87 +im[1663] = 0.5506 +ij[1663] = 2 +id[1664] = "2106-10-21T02:38:15" +ik[1664] = 3.039 +il[1664] = -76 +im[1664] = 0.3104 +ij[1664] = 27.7 +id[1665] = "2106-10-22T08:58:56" +ik[1665] = 44 +il[1665] = -66 +im[1665] = 0.201 +ij[1665] = 7.1593 +id[1666] = "2106-11-23T06:39:40" +ik[1666] = 75.91 +il[1666] = -8 +im[1666] = 0.088 +ij[1666] = 14 +id[1667] = "2106-12-10T21:38:42" +ik[1667] = 90 +il[1667] = 45 +im[1667] = 0.147 +ij[1667] = 5 +id[1668] = "2106-12-14T17:09:27" +ik[1668] = 1.184 +il[1668] = 57 +im[1668] = 0.1963 +ij[1668] = 28.5 +id[1669] = "2106-12-24T23:52:48" +ik[1669] = 2.425 +il[1669] = 89 +im[1669] = 0.1331 +ij[1669] = 28.7 +id[1670] = "2107-01-16T05:49:07" +ik[1670] = 2.949 +il[1670] = 158 +im[1670] = 0.1104 +ij[1670] = 27.1 +id[1671] = "2107-02-27T07:10:59" +ik[1671] = 53.766 +il[1671] = -70 +im[1671] = 0.1214 +ij[1671] = 8 +id[1672] = "2107-03-05T08:57:07" +ik[1672] = 1.325 +il[1672] = -51 +im[1672] = 0.0377 +ij[1672] = 27.3 +id[1673] = "2107-03-23T10:16:14" +ik[1673] = 0.425 +il[1673] = 5 +im[1673] = 0.0332 +ij[1673] = 27.5 +id[1674] = "2107-04-16T12:37:35" +ik[1674] = 0.155 +il[1674] = 79 +im[1674] = 0.0817 +ij[1674] = 28.8 +id[1675] = "2107-05-06T18:46:41" +ik[1675] = 3.6 +il[1675] = 141 +im[1675] = 0.0239 +ij[1675] = 27.6 +id[1676] = "2107-06-09T21:24:54" +ik[1676] = 1.659 +il[1676] = -115 +im[1676] = 0.0781 +ij[1676] = 28.1 +id[1677] = "2107-06-13T10:05:36" +ik[1677] = 5.104 +il[1677] = -105 +im[1677] = 0.0901 +ij[1677] = 27.2 +id[1678] = "2107-07-21T06:37:26" +ik[1678] = 0.91 +il[1678] = -116 +im[1678] = 0.019 +ij[1678] = 12 +id[1679] = "2107-10-22T13:30:25" +ik[1679] = 0.562 +il[1679] = 93 +im[1679] = 0.0799 +ij[1679] = 28.7 +id[1680] = "2107-10-28T11:08:40" +ik[1680] = 3.544 +il[1680] = 111 +im[1680] = 0.0944 +ij[1680] = 27.4 +id[1681] = "2107-11-12T14:29:11" +ik[1681] = 1.466 +il[1681] = 157 +im[1681] = 0.087 +ij[1681] = 28.5 +id[1682] = "2107-12-14T12:55:53" +ik[1682] = 53.555 +il[1682] = -105 +im[1682] = 0.0722 +ij[1682] = 9 +id[1683] = "2107-12-23T02:03:20" +ik[1683] = 0.748 +il[1683] = -79 +im[1683] = 0.1113 +ij[1683] = 27.3 +id[1684] = "2108-01-10T15:05:07" +ik[1684] = 1.19 +il[1684] = -21 +im[1684] = 0.1345 +ij[1684] = 27.5 +id[1685] = "2108-02-08T15:43:12" +ik[1685] = 1.545 +il[1685] = 70 +im[1685] = 0.1773 +ij[1685] = 28.8 +id[1686] = "2108-02-19T14:25:35" +ik[1686] = 2.277 +il[1686] = 104 +im[1686] = 0.1199 +ij[1686] = 28.4 +id[1687] = "2108-02-28T08:39:34" +ik[1687] = 0.03 +il[1687] = 132 +im[1687] = 0.0857 +ij[1687] = 27.6 +id[1688] = "2108-03-02T10:09:40" +ik[1688] = 90 +il[1688] = 141 +im[1688] = 0.0585 +ij[1688] = 6 +id[1689] = "2108-04-18T06:40:07" +ik[1689] = 0 +il[1689] = -119 +im[1689] = 0.3234 +ij[1689] = 13 +id[1690] = "2108-05-04T02:39:10" +ik[1690] = 0.5276 +il[1690] = -100 +im[1690] = 0.5277 +ij[1690] = 2 +id[1691] = "2108-05-10T12:27:21" +ik[1691] = 3.99 +il[1691] = -84 +im[1691] = 0.0848 +ij[1691] = 11 +id[1692] = "2108-05-31T13:42:54" +ik[1692] = 43.29 +il[1692] = -74 +im[1692] = 0.421 +ij[1692] = 7.1652 +id[1693] = "2108-07-04T11:43:40" +ik[1693] = 77.21 +il[1693] = 12 +im[1693] = 0.0495 +ij[1693] = 14 +id[1694] = "2108-07-19T12:52:25" +ik[1694] = 90 +il[1694] = 57 +im[1694] = 0.0142 +ij[1694] = 5 +id[1695] = "2108-08-28T11:57:15" +ik[1695] = 1.299 +il[1695] = 179 +im[1695] = 0.1336 +ij[1695] = 28.6 +id[1696] = "2108-09-29T15:14:35" +ik[1696] = 54.325 +il[1696] = -83 +im[1696] = 0.0732 +ij[1696] = 8 +id[1697] = "2108-12-07T10:43:14" +ik[1697] = 0.867 +il[1697] = 130 +im[1697] = 0.093 +ij[1697] = 28.7 +id[1698] = "2108-12-20T09:56:40" +ik[1698] = 4.756 +il[1698] = 171 +im[1698] = 0.0599 +ij[1698] = 27.1 +id[1699] = "2109-01-05T21:30:48" +ik[1699] = 2.399 +il[1699] = -138 +im[1699] = 0.0844 +ij[1699] = 28.1 +id[1700] = "2109-01-18T17:48:54" +ik[1700] = 0.146 +il[1700] = -98 +im[1700] = 0.0449 +ij[1700] = 28.5 +id[1701] = "2109-02-27T20:13:55" +ik[1701] = 1.42 +il[1701] = 4 +im[1701] = 0.033 +ij[1701] = 12 +id[1702] = "2109-04-06T01:40:32" +ik[1702] = 2.98 +il[1702] = -58 +im[1702] = 0.0713 +ij[1702] = 27.6 +id[1703] = "2109-04-15T13:04:22" +ik[1703] = 2.207 +il[1703] = -35 +im[1703] = 0.0142 +ij[1703] = 28.1 +id[1704] = "2109-05-12T19:54:00" +ik[1704] = 4.078 +il[1704] = 46 +im[1704] = 0.0618 +ij[1704] = 27.2 +id[1705] = "2109-06-30T13:09:59" +ik[1705] = 1.04 +il[1705] = -162 +im[1705] = 0.0144 +ij[1705] = 28.6 +id[1706] = "2109-07-18T23:32:22" +ik[1706] = 54.613 +il[1706] = -105 +im[1706] = 0.0849 +ij[1706] = 9 +id[1707] = "2109-10-01T21:45:47" +ik[1707] = 90 +il[1707] = 122 +im[1707] = 0.164 +ij[1707] = 6 +id[1708] = "2109-10-08T01:29:33" +ik[1708] = 0.266 +il[1708] = 140 +im[1708] = 0.2 +ij[1708] = 27.4 +id[1709] = "2109-10-08T21:20:52" +ik[1709] = 3.906 +il[1709] = 143 +im[1709] = 0.1794 +ij[1709] = 28.7 +id[1710] = "2109-11-22T11:44:07" +ik[1710] = 0 +il[1710] = -124 +im[1710] = 0.2167 +ij[1710] = 13 +id[1711] = "2109-12-13T13:45:07" +ik[1711] = 0.6 +il[1711] = -90 +im[1711] = 0.5205 +ij[1711] = 11 +id[1712] = "2109-12-14T21:56:42" +ik[1712] = 0.5497 +il[1712] = -80 +im[1712] = 0.5498 +ij[1712] = 2 +id[1713] = "2110-01-03T10:46:41" +ik[1713] = 41.96 +il[1713] = -70 +im[1713] = 0.0203 +ij[1713] = 7.1541 +id[1714] = "2110-02-03T14:30:25" +ik[1714] = 73.12 +il[1714] = -5 +im[1714] = 0.1374 +ij[1714] = 14 +id[1715] = "2110-02-22T21:24:34" +ik[1715] = 90 +il[1715] = 54 +im[1715] = 0.2236 +ij[1715] = 5 +id[1716] = "2110-03-16T01:36:40" +ik[1716] = 2.692 +il[1716] = 121 +im[1716] = 0.0301 +ij[1716] = 27.3 +id[1717] = "2110-03-23T09:47:39" +ik[1717] = 1.47 +il[1717] = 143 +im[1717] = 0.167 +ij[1717] = 28.5 +id[1718] = "2110-04-04T11:49:33" +ik[1718] = 0.303 +il[1718] = -179 +im[1718] = 0.0827 +ij[1718] = 27.5 +id[1719] = "2110-05-04T20:56:06" +ik[1719] = 0.142 +il[1719] = -85 +im[1719] = 0.0786 +ij[1719] = 28.8 +id[1720] = "2110-05-11T14:24:50" +ik[1720] = 54.198 +il[1720] = -64 +im[1720] = 0.0865 +ij[1720] = 8 +id[1721] = "2110-05-20T11:07:35" +ik[1721] = 3.91 +il[1721] = -37 +im[1721] = 0.0935 +ij[1721] = 27.6 +id[1722] = "2110-06-01T03:18:00" +ik[1722] = 0.752 +il[1722] = -1 +im[1722] = 0.0151 +ij[1722] = 28.4 +id[1723] = "2110-06-27T21:58:29" +ik[1723] = 5.67 +il[1723] = 80 +im[1723] = 0.0511 +ij[1723] = 27.2 +id[1724] = "2110-07-14T22:17:45" +ik[1724] = 0.09 +il[1724] = 132 +im[1724] = 0.0097 +ij[1724] = 27.91 +id[1725] = "2110-08-18T12:58:27" +ik[1725] = 2.972 +il[1725] = -122 +im[1725] = 0.0613 +ij[1725] = 28.1 +id[1726] = "2110-08-21T21:38:30" +ik[1726] = 0.099 +il[1726] = -118 +im[1726] = 0.0844 +ij[1726] = 28.6 +id[1727] = "2110-09-27T23:16:48" +ik[1727] = 1.35 +il[1727] = -123 +im[1727] = 0.0047 +ij[1727] = 12 +id[1728] = "2110-11-11T14:27:20" +ik[1728] = 4.161 +il[1728] = -65 +im[1728] = 0.0287 +ij[1728] = 27.4 +id[1729] = "2110-11-15T13:47:34" +ik[1729] = 0.242 +il[1729] = -53 +im[1729] = 0.048 +ij[1729] = 28.7 +id[1730] = "2110-11-23T00:56:52" +ik[1730] = 0.64 +il[1730] = -30 +im[1730] = 0.0735 +ij[1730] = 28.1 +id[1731] = "2111-01-05T08:10:53" +ik[1731] = 0.376 +il[1731] = 102 +im[1731] = 0.0954 +ij[1731] = 27.3 +id[1732] = "2111-01-23T04:13:33" +ik[1732] = 1.202 +il[1732] = 157 +im[1732] = 0.083 +ij[1732] = 27.5 +id[1733] = "2111-02-12T14:07:17" +ik[1733] = 0.307 +il[1733] = -140 +im[1733] = 0.0404 +ij[1733] = 28.5 +id[1734] = "2111-02-24T17:47:45" +ik[1734] = 0.984 +il[1734] = -102 +im[1734] = 0.0518 +ij[1734] = 28.8 +id[1735] = "2111-02-28T09:26:11" +ik[1735] = 53.931 +il[1735] = -90 +im[1735] = 0.0372 +ij[1735] = 9 +id[1736] = "2111-03-08T22:39:27" +ik[1736] = 1.87 +il[1736] = -63 +im[1736] = 0.0941 +ij[1736] = 27.6 +id[1737] = "2111-04-17T14:42:26" +ik[1737] = 2.015 +il[1737] = 61 +im[1737] = 0.1504 +ij[1737] = 27.2 +id[1738] = "2111-05-11T07:30:27" +ik[1738] = 90 +il[1738] = 134 +im[1738] = 0.0371 +ij[1738] = 6 +id[1739] = "2111-06-27T14:30:52" +ik[1739] = 0 +il[1739] = -126 +im[1739] = 0.3109 +ij[1739] = 13 +id[1740] = "2111-07-14T15:59:17" +ik[1740] = 0.5023 +il[1740] = -106 +im[1740] = 0.5023 +ij[1740] = 2 +id[1741] = "2111-07-19T11:09:36" +ik[1741] = 5.33 +il[1741] = -91 +im[1741] = 0.1837 +ij[1741] = 11 +id[1742] = "2111-08-10T17:37:28" +ik[1742] = 44.13 +il[1742] = -81 +im[1742] = 0.4191 +ij[1742] = 7.166 +id[1743] = "2111-09-13T06:52:14" +ik[1743] = 77.68 +il[1743] = 5 +im[1743] = 0.0643 +ij[1743] = 14 +id[1744] = "2111-09-28T00:32:58" +ik[1744] = 90 +il[1744] = 49 +im[1744] = 0.0404 +ij[1744] = 5 +id[1745] = "2111-10-08T06:24:20" +ik[1745] = 2.19 +il[1745] = 80 +im[1745] = 0.1762 +ij[1745] = 28.6 +id[1746] = "2111-12-11T16:36:26" +ik[1746] = 53.856 +il[1746] = -81 +im[1746] = 0.0154 +ij[1746] = 8 +id[1747] = "2112-01-01T01:46:16" +ik[1747] = 1.346 +il[1747] = -17 +im[1747] = 0.0802 +ij[1747] = 28.7 +id[1748] = "2112-01-04T06:15:46" +ik[1748] = 4.087 +il[1748] = -7 +im[1748] = 0.1036 +ij[1748] = 27.1 +id[1749] = "2112-02-19T06:45:06" +ik[1749] = 0.693 +il[1749] = 136 +im[1749] = 0.0962 +ij[1749] = 27.3 +id[1750] = "2112-03-07T23:26:53" +ik[1750] = 0.761 +il[1750] = -169 +im[1750] = 0.0671 +ij[1750] = 27.5 +id[1751] = "2112-03-08T09:06:37" +ik[1751] = 2.48 +il[1751] = -168 +im[1751] = 0.062 +ij[1751] = 28.1 +id[1752] = "2112-05-11T18:01:26" +ik[1752] = 0.63 +il[1752] = -104 +im[1752] = 0.0063 +ij[1752] = 12 +id[1753] = "2112-06-14T00:34:33" +ik[1753] = 0.28 +il[1753] = -70 +im[1753] = 0.0523 +ij[1753] = 27.9 +id[1754] = "2112-06-23T02:52:04" +ik[1754] = 0.69 +il[1754] = -46 +im[1754] = 0.0384 +ij[1754] = 28.4 +id[1755] = "2112-06-25T01:05:13" +ik[1755] = 1.982 +il[1755] = -40 +im[1755] = 0.0057 +ij[1755] = 28.1 +id[1756] = "2112-08-12T12:02:00" +ik[1756] = 0.581 +il[1756] = 110 +im[1756] = 0.0567 +ij[1756] = 28.6 +id[1757] = "2112-09-26T22:14:14" +ik[1757] = 54.057 +il[1757] = -112 +im[1757] = 0.0584 +ij[1757] = 9 +id[1758] = "2112-10-14T08:36:40" +ik[1758] = 2.562 +il[1758] = -59 +im[1758] = 0.1278 +ij[1758] = 27.4 +id[1759] = "2112-10-26T06:58:53" +ik[1759] = 2.021 +il[1759] = -23 +im[1759] = 0.0515 +ij[1759] = 28.7 +id[1760] = "2112-12-13T06:48:13" +ik[1760] = 1.083 +il[1760] = 125 +im[1760] = 0.201 +ij[1760] = 27.3 +id[1761] = "2112-12-16T14:54:29" +ik[1761] = 90 +il[1761] = 136 +im[1761] = 0.2208 +ij[1761] = 6 +id[1762] = "2113-01-06T19:06:53" +ik[1762] = 0.361 +il[1762] = -171 +im[1762] = 0.0472 +ij[1762] = 27.5 +id[1763] = "2113-02-03T06:52:41" +ik[1763] = 0 +il[1763] = -117 +im[1763] = 0.0806 +ij[1763] = 13 +id[1764] = "2113-02-23T09:01:35" +ik[1764] = 0.5263 +il[1764] = -94 +im[1764] = 0.5264 +ij[1764] = 2 +id[1765] = "2113-02-25T12:14:24" +ik[1765] = 8.74 +il[1765] = -82 +im[1765] = 0.4596 +ij[1765] = 11 +id[1766] = "2113-03-18T08:58:16" +ik[1766] = 43.09 +il[1766] = -72 +im[1766] = 0.2645 +ij[1766] = 7.1592 +id[1767] = "2113-04-02T08:05:33" +ik[1767] = 4.689 +il[1767] = -21 +im[1767] = 0.2802 +ij[1767] = 27.5 +id[1768] = "2113-04-19T21:14:02" +ik[1768] = 75.6 +il[1768] = 9 +im[1768] = 0.2532 +ij[1768] = 14 +id[1769] = "2113-05-07T17:11:36" +ik[1769] = 90 +il[1769] = 63 +im[1769] = 0.176 +ij[1769] = 5 +id[1770] = "2113-05-19T20:14:55" +ik[1770] = 0.082 +il[1770] = 101 +im[1770] = 0.1791 +ij[1770] = 28.8 +id[1771] = "2113-05-31T04:19:28" +ik[1771] = 4.21 +il[1771] = 136 +im[1771] = 0.1308 +ij[1771] = 27.6 +id[1772] = "2113-06-21T06:09:36" +ik[1772] = 1.017 +il[1772] = -159 +im[1772] = 0.1101 +ij[1772] = 28.5 +id[1773] = "2113-07-11T04:48:42" +ik[1773] = 6.458 +il[1773] = -99 +im[1773] = 0.0268 +ij[1773] = 27.2 +id[1774] = "2113-07-20T02:58:41" +ik[1774] = 54.509 +il[1774] = -72 +im[1774] = 0.1108 +ij[1774] = 8 +id[1775] = "2113-10-04T13:07:40" +ik[1775] = 0.829 +il[1775] = 163 +im[1775] = 0.0631 +ij[1775] = 28.6 +id[1776] = "2113-10-19T04:04:04" +ik[1776] = 0.837 +il[1776] = -152 +im[1776] = 0.0784 +ij[1776] = 28.1 +id[1777] = "2113-12-10T05:57:07" +ik[1777] = 0 +il[1777] = -11 +im[1777] = 0.0318 +ij[1777] = 12 +id[1778] = "2114-01-19T16:33:06" +ik[1778] = 0.048 +il[1778] = -63 +im[1778] = 0.041 +ij[1778] = 27.3 +id[1779] = "2114-01-20T23:30:28" +ik[1779] = 2.645 +il[1779] = -70 +im[1779] = 0.0187 +ij[1779] = 28.1 +id[1780] = "2114-02-06T07:36:40" +ik[1780] = 1.103 +il[1780] = -20 +im[1780] = 0.0117 +ij[1780] = 27.5 +id[1781] = "2114-03-15T09:13:32" +ik[1781] = 0.812 +il[1781] = 95 +im[1781] = 0.094 +ij[1781] = 28.8 +id[1782] = "2114-03-22T04:55:19" +ik[1782] = 2.56 +il[1782] = 116 +im[1782] = 0.0273 +ij[1782] = 27.6 +id[1783] = "2114-04-28T13:55:19" +ik[1783] = 3.325 +il[1783] = -126 +im[1783] = 0.0994 +ij[1783] = 27.2 +id[1784] = "2114-05-10T03:41:23" +ik[1784] = 54.551 +il[1784] = -90 +im[1784] = 0.0654 +ij[1784] = 9 +id[1785] = "2114-05-12T18:14:58" +ik[1785] = 1.851 +il[1785] = -82 +im[1785] = 0.1114 +ij[1785] = 28.5 +id[1786] = "2114-07-18T19:39:19" +ik[1786] = 90 +il[1786] = 123 +im[1786] = 0.1248 +ij[1786] = 6 +id[1787] = "2114-08-08T19:26:41" +ik[1787] = 3.622 +il[1787] = 169 +im[1787] = 0.2163 +ij[1787] = 28.4 +id[1788] = "2114-09-05T21:14:29" +ik[1788] = 0 +il[1788] = 158 +im[1788] = 0.3154 +ij[1788] = 13 +id[1789] = "2114-09-28T17:45:36" +ik[1789] = 8.41 +il[1789] = -18 +im[1789] = 0.1213 +ij[1789] = 11 +id[1790] = "2114-10-05T17:57:38" +ik[1790] = 0.5402 +il[1790] = -7 +im[1790] = 0.5402 +ij[1790] = 2 +id[1791] = "2114-10-14T10:37:37" +ik[1791] = 0.936 +il[1791] = -66 +im[1791] = 0.1928 +ij[1791] = 27.7 +id[1792] = "2114-10-19T20:17:03" +ik[1792] = 43.96 +il[1792] = -55 +im[1792] = 0.4121 +ij[1792] = 7.1596 +id[1793] = "2114-10-29T18:39:53" +ik[1793] = 4.395 +il[1793] = -44 +im[1793] = 0.3059 +ij[1793] = 28.4 +id[1794] = "2114-11-12T05:41:51" +ik[1794] = 2.606 +il[1794] = -32 +im[1794] = 0.1647 +ij[1794] = 28.6 +id[1795] = "2114-11-20T22:54:47" +ik[1795] = 76.07 +il[1795] = -5 +im[1795] = 0.1238 +ij[1795] = 14 +id[1796] = "2114-12-08T11:23:06" +ik[1796] = 90 +il[1796] = 48 +im[1796] = 0.0215 +ij[1796] = 5 +id[1797] = "2115-01-15T23:25:06" +ik[1797] = 3.005 +il[1797] = 168 +im[1797] = 0.1417 +ij[1797] = 27.1 +id[1798] = "2115-01-23T11:00:43" +ik[1798] = 2.166 +il[1798] = -169 +im[1798] = 0.0408 +ij[1798] = 28.7 +id[1799] = "2115-02-24T18:55:10" +ik[1799] = 53.757 +il[1799] = -68 +im[1799] = 0.0751 +ij[1799] = 8 +id[1800] = "2115-03-04T23:32:13" +ik[1800] = 1.297 +il[1800] = -43 +im[1800] = 0.0728 +ij[1800] = 27.3 +id[1801] = "2115-03-23T00:21:59" +ik[1801] = 0.441 +il[1801] = 13 +im[1801] = 0.0183 +ij[1801] = 27.5 +id[1802] = "2115-04-30T08:33:12" +ik[1802] = 0.075 +il[1802] = 131 +im[1802] = 0.0896 +ij[1802] = 28.8 +id[1803] = "2115-05-06T08:06:18" +ik[1803] = 3.59 +il[1803] = 149 +im[1803] = 0.0148 +ij[1803] = 27.6 +id[1804] = "2115-05-16T12:50:15" +ik[1804] = 0.703 +il[1804] = -180 +im[1804] = 0.0919 +ij[1804] = 28.1 +id[1805] = "2115-06-12T23:07:49" +ik[1805] = 5.087 +il[1805] = -96 +im[1805] = 0.0853 +ij[1805] = 27.2 +id[1806] = "2115-07-19T01:16:19" +ik[1806] = 0.87 +il[1806] = -8 +im[1806] = 0.0486 +ij[1806] = 12 +id[1807] = "2115-09-02T10:09:50" +ik[1807] = 3.611 +il[1807] = -49 +im[1807] = 0.051 +ij[1807] = 28.1 +id[1808] = "2115-09-27T10:01:29" +ik[1808] = 1.706 +il[1808] = 27 +im[1808] = 0.0971 +ij[1808] = 28.6 +id[1809] = "2115-10-28T01:07:19" +ik[1809] = 3.519 +il[1809] = 120 +im[1809] = 0.1043 +ij[1809] = 27.4 +id[1810] = "2115-11-18T23:20:24" +ik[1810] = 1.245 +il[1810] = -173 +im[1810] = 0.0063 +ij[1810] = 28.7 +id[1811] = "2115-12-11T23:25:25" +ik[1811] = 53.558 +il[1811] = -103 +im[1811] = 0.1209 +ij[1811] = 9 +id[1812] = "2115-12-22T17:17:06" +ik[1812] = 0.761 +il[1812] = -70 +im[1812] = 0.0728 +ij[1812] = 27.3 +id[1813] = "2116-01-10T07:24:39" +ik[1813] = 1.182 +il[1813] = -12 +im[1813] = 0.1459 +ij[1813] = 27.5 +id[1814] = "2116-02-24T14:02:15" +ik[1814] = 3.372 +il[1814] = 130 +im[1814] = 0.1934 +ij[1814] = 28.8 +id[1815] = "2116-02-28T08:50:11" +ik[1815] = 0.1 +il[1815] = 136 +im[1815] = 0.1419 +ij[1815] = 27.6 +id[1816] = "2116-02-29T01:28:42" +ik[1816] = 90 +il[1816] = 144 +im[1816] = 0.1176 +ij[1816] = 6 +id[1817] = "2116-04-15T22:55:14" +ik[1817] = 0 +il[1817] = -116 +im[1817] = 0.0442 +ij[1817] = 13 +id[1818] = "2116-05-05T08:22:01" +ik[1818] = 0.539 +il[1818] = -94 +im[1818] = 0.539 +ij[1818] = 2 +id[1819] = "2116-05-08T04:53:45" +ik[1819] = 4.29 +il[1819] = -82 +im[1819] = 0.4279 +ij[1819] = 11 +id[1820] = "2116-05-29T06:05:50" +ik[1820] = 43.3 +il[1820] = -71 +im[1820] = 0.3752 +ij[1820] = 7.1651 +id[1821] = "2116-07-02T02:52:34" +ik[1821] = 77.16 +il[1821] = 15 +im[1821] = 0.2219 +ij[1821] = 14 +id[1822] = "2116-07-17T05:31:57" +ik[1822] = 90 +il[1822] = 60 +im[1822] = 0.1351 +ij[1822] = 5 +id[1823] = "2116-09-26T21:00:00" +ik[1823] = 0.544 +il[1823] = -82 +im[1823] = 0.121 +ij[1823] = 28.5 +id[1824] = "2116-09-27T07:07:39" +ik[1824] = 54.339 +il[1824] = -80 +im[1824] = 0.1197 +ij[1824] = 8 +id[1825] = "2116-11-18T20:21:15" +ik[1825] = 0.947 +il[1825] = 82 +im[1825] = 0.0107 +ij[1825] = 28.6 +id[1826] = "2116-12-07T09:39:47" +ik[1826] = 0.709 +il[1826] = 140 +im[1826] = 0.0796 +ij[1826] = 28.4 +id[1827] = "2116-12-17T01:22:30" +ik[1827] = 1.952 +il[1827] = 170 +im[1827] = 0.0306 +ij[1827] = 28.1 +id[1828] = "2116-12-19T23:18:26" +ik[1828] = 4.78 +il[1828] = -180 +im[1828] = 0.0264 +ij[1828] = 27.1 +id[1829] = "2117-01-03T12:05:02" +ik[1829] = 0.325 +il[1829] = -135 +im[1829] = 0.0302 +ij[1829] = 28.7 +id[1830] = "2117-02-25T06:40:19" +ik[1830] = 1.41 +il[1830] = 6 +im[1830] = 0.0816 +ij[1830] = 12 +id[1831] = "2117-04-03T19:28:42" +ik[1831] = 0.704 +il[1831] = -55 +im[1831] = 0.0125 +ij[1831] = 28.8 +id[1832] = "2117-04-05T14:45:11" +ik[1832] = 2.97 +il[1832] = -60 +im[1832] = 0.0417 +ij[1832] = 27.6 +id[1833] = "2117-05-12T09:17:59" +ik[1833] = 4.056 +il[1833] = 55 +im[1833] = 0.0822 +ij[1833] = 27.2 +id[1834] = "2117-07-16T17:22:47" +ik[1834] = 54.623 +il[1834] = -120 +im[1834] = 0.0062 +ij[1834] = 9 +id[1835] = "2117-08-23T00:58:45" +ik[1835] = 1.46 +il[1835] = 11 +im[1835] = 0.1461 +ij[1835] = 28.5 +id[1836] = "2117-09-27T13:33:44" +ik[1836] = 5.195 +il[1836] = 119 +im[1836] = 0.0824 +ij[1836] = 28.6 +id[1837] = "2117-09-29T09:50:14" +ik[1837] = 90 +il[1837] = 124 +im[1837] = 0.0031 +ij[1837] = 6 +id[1838] = "2117-10-08T07:21:06" +ik[1838] = 0.116 +il[1838] = 150 +im[1838] = 0.2389 +ij[1838] = 27.4 +id[1839] = "2117-11-19T02:53:01" +ik[1839] = 0 +il[1839] = -118 +im[1839] = 0.4262 +ij[1839] = 13 +id[1840] = "2117-12-02T13:52:53" +ik[1840] = 0.5599 +il[1840] = -120 +im[1840] = 0.56 +ij[1840] = 2 +id[1841] = "2117-12-11T02:49:55" +ik[1841] = 0.2 +il[1841] = -100 +im[1841] = 0.2153 +ij[1841] = 11 +id[1842] = "2117-12-27T19:47:46" +ik[1842] = 1.658 +il[1842] = -59 +im[1842] = 0.4901 +ij[1842] = 27.1 +id[1843] = "2118-01-01T01:55:36" +ik[1843] = 42.96 +il[1843] = -52 +im[1843] = 0.3593 +ij[1843] = 7.1537 +id[1844] = "2118-01-03T15:48:39" +ik[1844] = 0.868 +il[1844] = -49 +im[1844] = 0.1542 +ij[1844] = 27.1 +id[1845] = "2118-02-01T01:40:18" +ik[1845] = 73.95 +il[1845] = -3 +im[1845] = 0.1099 +ij[1845] = 14 +id[1846] = "2118-02-09T07:10:50" +ik[1846] = 4.255 +il[1846] = 23 +im[1846] = 0.2363 +ij[1846] = 28.7 +id[1847] = "2118-02-20T09:36:04" +ik[1847] = 90 +il[1847] = 57 +im[1847] = 0.1591 +ij[1847] = 5 +id[1848] = "2118-03-15T20:53:59" +ik[1848] = 2.613 +il[1848] = 130 +im[1848] = 0.0844 +ij[1848] = 27.3 +id[1849] = "2118-04-04T04:40:39" +ik[1849] = 0.262 +il[1849] = -170 +im[1849] = 0.0292 +ij[1849] = 27.5 +id[1850] = "2118-05-09T05:35:15" +ik[1850] = 54.182 +il[1850] = -62 +im[1850] = 0.1131 +ij[1850] = 8 +id[1851] = "2118-05-19T03:41:28" +ik[1851] = 0.107 +il[1851] = -31 +im[1851] = 0.0367 +ij[1851] = 28.8 +id[1852] = "2118-05-20T01:39:09" +ik[1852] = 3.9 +il[1852] = -28 +im[1852] = 0.0548 +ij[1852] = 27.6 +id[1853] = "2118-06-27T11:29:35" +ik[1853] = 5.649 +il[1853] = 89 +im[1853] = 0.0775 +ij[1853] = 27.2 +id[1854] = "2118-07-14T11:25:26" +ik[1854] = 0.111 +il[1854] = 140 +im[1854] = 0.0489 +ij[1854] = 27.91 +id[1855] = "2118-07-27T23:42:25" +ik[1855] = 2.986 +il[1855] = -178 +im[1855] = 0.0629 +ij[1855] = 28.1 +id[1856] = "2118-08-20T17:33:56" +ik[1856] = 1.099 +il[1856] = -105 +im[1856] = 0.0681 +ij[1856] = 28.1 +id[1857] = "2118-09-25T14:39:50" +ik[1857] = 1.37 +il[1857] = -16 +im[1857] = 0.0645 +ij[1857] = 12 +id[1858] = "2118-10-30T20:18:14" +ik[1858] = 0.626 +il[1858] = -91 +im[1858] = 0.012 +ij[1858] = 28.5 +id[1859] = "2118-11-02T16:11:16" +ik[1859] = 1.446 +il[1859] = -79 +im[1859] = 0.054 +ij[1859] = 28.1 +id[1860] = "2118-11-11T03:47:19" +ik[1860] = 4.142 +il[1860] = -56 +im[1860] = 0.0593 +ij[1860] = 27.4 +id[1861] = "2118-11-13T06:39:27" +ik[1861] = 1.896 +il[1861] = -44 +im[1861] = 0.0232 +ij[1861] = 28.6 +id[1862] = "2118-12-13T03:16:24" +ik[1862] = 0.79 +il[1862] = 41 +im[1862] = 0.0255 +ij[1862] = 28.7 +id[1863] = "2118-12-21T07:05:39" +ik[1863] = 0.575 +il[1863] = 66 +im[1863] = 0.0985 +ij[1863] = 28.4 +id[1864] = "2119-01-04T21:49:32" +ik[1864] = 0.387 +il[1864] = 110 +im[1864] = 0.0889 +ij[1864] = 27.3 +id[1865] = "2119-01-22T18:08:12" +ik[1865] = 1.203 +il[1865] = 166 +im[1865] = 0.1058 +ij[1865] = 27.5 +id[1866] = "2119-02-25T22:21:29" +ik[1866] = 53.908 +il[1866] = -88 +im[1866] = 0.0602 +ij[1866] = 9 +id[1867] = "2119-03-08T13:57:04" +ik[1867] = 1.84 +il[1867] = -54 +im[1867] = 0.1193 +ij[1867] = 27.6 +id[1868] = "2119-03-10T19:54:02" +ik[1868] = 2.025 +il[1868] = -47 +im[1868] = 0.0923 +ij[1868] = 28.8 +id[1869] = "2119-04-17T09:52:12" +ik[1869] = 1.946 +il[1869] = 70 +im[1869] = 0.1066 +ij[1869] = 27.2 +id[1870] = "2119-05-09T01:24:17" +ik[1870] = 90 +il[1870] = 137 +im[1870] = 0.1724 +ij[1870] = 6 +id[1871] = "2119-06-25T01:40:45" +ik[1871] = 0 +il[1871] = -123 +im[1871] = 0.0191 +ij[1871] = 13 +id[1872] = "2119-07-15T17:31:55" +ik[1872] = 0.4978 +il[1872] = -100 +im[1872] = 0.4978 +ij[1872] = 2 +id[1873] = "2119-07-17T03:43:12" +ik[1873] = 5.07 +il[1873] = -88 +im[1873] = 0.4669 +ij[1873] = 11 +id[1874] = "2119-08-08T04:47:20" +ik[1874] = 44.13 +il[1874] = -77 +im[1874] = 0.3186 +ij[1874] = 7.1661 +id[1875] = "2119-09-11T00:04:07" +ik[1875] = 77.93 +il[1875] = 8 +im[1875] = 0.215 +ij[1875] = 14 +id[1876] = "2119-09-25T16:30:55" +ik[1876] = 90 +il[1876] = 52 +im[1876] = 0.1859 +ij[1876] = 5 +id[1877] = "2119-12-09T05:31:44" +ik[1877] = 53.87 +il[1877] = -79 +im[1877] = 0.0959 +ij[1877] = 8 +id[1878] = "2120-01-03T20:32:12" +ik[1878] = 4.118 +il[1878] = 1 +im[1878] = 0.0962 +ij[1878] = 27.1 +id[1879] = "2120-01-05T14:52:13" +ik[1879] = 0.308 +il[1879] = 7 +im[1879] = 0.1037 +ij[1879] = 28.6 +id[1880] = "2120-01-08T11:02:55" +ik[1880] = 0.521 +il[1880] = 17 +im[1880] = 0.085 +ij[1880] = 28.5 +id[1881] = "2120-01-29T00:43:12" +ik[1881] = 0.628 +il[1881] = 80 +im[1881] = 0.0091 +ij[1881] = 28.7 +id[1882] = "2120-02-16T11:31:03" +ik[1882] = 2.714 +il[1882] = 137 +im[1882] = 0.0642 +ij[1882] = 28.1 +id[1883] = "2120-02-18T20:13:05" +ik[1883] = 0.677 +il[1883] = 145 +im[1883] = 0.0881 +ij[1883] = 27.3 +id[1884] = "2120-03-07T12:46:26" +ik[1884] = 0.769 +il[1884] = -161 +im[1884] = 0.0889 +ij[1884] = 27.5 +id[1885] = "2120-05-09T10:46:33" +ik[1885] = 0.68 +il[1885] = 9 +im[1885] = 0.0657 +ij[1885] = 12 +id[1886] = "2120-06-13T14:19:14" +ik[1886] = 0.24 +il[1886] = -66 +im[1886] = 0.0228 +ij[1886] = 27.9 +id[1887] = "2120-09-24T12:20:38" +ik[1887] = 54.081 +il[1887] = -110 +im[1887] = 0.038 +ij[1887] = 9 +id[1888] = "2120-10-14T00:35:19" +ik[1888] = 2.518 +il[1888] = -51 +im[1888] = 0.098 +ij[1888] = 27.4 +id[1889] = "2120-11-10T19:45:35" +ik[1889] = 3.491 +il[1889] = 35 +im[1889] = 0.0525 +ij[1889] = 28.6 +id[1890] = "2120-11-26T02:34:48" +ik[1890] = 2.281 +il[1890] = 82 +im[1890] = 0.0585 +ij[1890] = 28.7 +id[1891] = "2120-12-04T04:31:26" +ik[1891] = 2.094 +il[1891] = 107 +im[1891] = 0.1686 +ij[1891] = 28.5 +id[1892] = "2120-12-13T07:30:25" +ik[1892] = 1.074 +il[1892] = 135 +im[1892] = 0.1591 +ij[1892] = 27.3 +id[1893] = "2120-12-14T02:27:58" +ik[1893] = 90 +il[1893] = 138 +im[1893] = 0.1825 +ij[1893] = 6 +id[1894] = "2121-01-04T23:50:47" +ik[1894] = 2.137 +il[1894] = -167 +im[1894] = 0.1604 +ij[1894] = 28.4 +id[1895] = "2121-01-07T18:44:39" +ik[1895] = 0.642 +il[1895] = -161 +im[1895] = 0.0138 +ij[1895] = 27.5 +id[1896] = "2121-02-01T00:04:34" +ik[1896] = 0 +il[1896] = -172 +im[1896] = 0.3429 +ij[1896] = 13 +id[1897] = "2121-02-23T01:13:26" +ik[1897] = 8.67 +il[1897] = -1 +im[1897] = 0.509 +ij[1897] = 11 +id[1898] = "2121-02-24T09:05:57" +ik[1898] = 0.5379 +il[1898] = -79 +im[1898] = 0.538 +ij[1898] = 2 +id[1899] = "2121-03-16T01:11:09" +ik[1899] = 43.05 +il[1899] = -69 +im[1899] = 0.0989 +ij[1899] = 7.1591 +id[1900] = "2121-04-04T01:05:32" +ik[1900] = 4.111 +il[1900] = -10 +im[1900] = 0.2599 +ij[1900] = 27.5 +id[1901] = "2121-04-17T09:36:58" +ik[1901] = 75.4 +il[1901] = 11 +im[1901] = 0.1793 +ij[1901] = 14 +id[1902] = "2121-05-05T07:23:24" +ik[1902] = 90 +il[1902] = 66 +im[1902] = 0.2047 +ij[1902] = 5 +id[1903] = "2121-05-30T23:32:02" +ik[1903] = 4.21 +il[1903] = 145 +im[1903] = 0.0797 +ij[1903] = 27.6 +id[1904] = "2121-06-04T19:06:57" +ik[1904] = 0.475 +il[1904] = 160 +im[1904] = 0.1516 +ij[1904] = 28.8 +id[1905] = "2121-07-10T19:59:48" +ik[1905] = 6.425 +il[1905] = -90 +im[1905] = 0.0233 +ij[1905] = 27.2 +id[1906] = "2121-07-17T20:09:59" +ik[1906] = 54.506 +il[1906] = -69 +im[1906] = 0.1169 +ij[1906] = 8 +id[1907] = "2121-09-30T23:57:59" +ik[1907] = 0.931 +il[1907] = 161 +im[1907] = 0.0864 +ij[1907] = 28.1 +id[1908] = "2121-10-13T16:24:23" +ik[1908] = 1.3 +il[1908] = -159 +im[1908] = 0.0558 +ij[1908] = 28.1 +id[1909] = "2121-12-07T17:35:31" +ik[1909] = 0.05 +il[1909] = -9 +im[1909] = 0.0408 +ij[1909] = 12 +id[1910] = "2122-01-19T05:43:45" +ik[1910] = 0.059 +il[1910] = -55 +im[1910] = 0.0685 +ij[1910] = 27.3 +id[1911] = "2122-02-03T09:16:16" +ik[1911] = 0.297 +il[1911] = -19 +im[1911] = 0.0798 +ij[1911] = 28.5 +id[1912] = "2122-02-05T20:53:59" +ik[1912] = 1.107 +il[1912] = -7 +im[1912] = 0.0465 +ij[1912] = 27.5 +id[1913] = "2122-03-21T18:35:56" +ik[1913] = 2.54 +il[1913] = 125 +im[1913] = 0.0667 +ij[1913] = 27.6 +id[1914] = "2122-03-29T01:33:36" +ik[1914] = 1.562 +il[1914] = 148 +im[1914] = 0.0646 +ij[1914] = 28.8 +id[1915] = "2122-04-28T04:26:52" +ik[1915] = 3.292 +il[1915] = -118 +im[1915] = 0.0699 +ij[1915] = 27.2 +id[1916] = "2122-05-07T21:06:54" +ik[1916] = 54.536 +il[1916] = -87 +im[1916] = 0.0279 +ij[1916] = 9 +id[1917] = "2122-07-16T11:43:27" +ik[1917] = 90 +il[1917] = 126 +im[1917] = 0.2106 +ij[1917] = 6 +id[1918] = "2122-09-04T09:37:25" +ik[1918] = 0 +il[1918] = -126 +im[1918] = 0.0716 +ij[1918] = 13 +id[1919] = "2122-09-26T07:26:24" +ik[1919] = 8.49 +il[1919] = -92 +im[1919] = 0.4044 +ij[1919] = 11 +id[1920] = "2122-10-06T21:53:29" +ik[1920] = 0.5185 +il[1920] = -82 +im[1920] = 0.5186 +ij[1920] = 2 +id[1921] = "2122-10-07T00:05:54" +ik[1921] = 0.619 +il[1921] = -71 +im[1921] = 0.5185 +ij[1921] = 27.7 +id[1922] = "2122-10-17T08:39:59" +ik[1922] = 42.96 +il[1922] = -61 +im[1922] = 0.3216 +ij[1922] = 7.1602 +id[1923] = "2122-11-18T16:20:44" +ik[1923] = 75.28 +il[1923] = -2 +im[1923] = 0.2529 +ij[1923] = 14 +id[1924] = "2122-12-06T01:12:48" +ik[1924] = 90 +il[1924] = 50 +im[1924] = 0.1768 +ij[1924] = 5 +id[1925] = "2123-01-15T16:48:12" +ik[1925] = 3.06 +il[1925] = 177 +im[1925] = 0.1519 +ij[1925] = 27.1 +id[1926] = "2123-02-21T19:19:37" +ik[1926] = 0.686 +il[1926] = -67 +im[1926] = 0.0366 +ij[1926] = 28.6 +id[1927] = "2123-02-22T01:54:46" +ik[1927] = 1.012 +il[1927] = -67 +im[1927] = 0.0301 +ij[1927] = 28.7 +id[1928] = "2123-02-22T06:39:22" +ik[1928] = 53.75 +il[1928] = -66 +im[1928] = 0.0254 +ij[1928] = 8 +id[1929] = "2123-03-04T14:03:45" +ik[1929] = 1.269 +il[1929] = -34 +im[1929] = 0.0968 +ij[1929] = 27.3 +id[1930] = "2123-03-22T14:25:05" +ik[1930] = 0.456 +il[1930] = 22 +im[1930] = 0.0615 +ij[1930] = 27.5 +id[1931] = "2123-04-04T17:11:11" +ik[1931] = 0.613 +il[1931] = 63 +im[1931] = 0.0716 +ij[1931] = 28.4 +id[1932] = "2123-04-10T03:43:03" +ik[1932] = 0.063 +il[1932] = 79 +im[1932] = 0.0326 +ij[1932] = 28.5 +id[1933] = "2123-04-23T10:51:18" +ik[1933] = 0.141 +il[1933] = 120 +im[1933] = 0.024 +ij[1933] = 28.1 +id[1934] = "2123-05-05T21:32:53" +ik[1934] = 3.58 +il[1934] = 158 +im[1934] = 0.0519 +ij[1934] = 27.6 +id[1935] = "2123-05-14T02:46:19" +ik[1935] = 0.391 +il[1935] = -179 +im[1935] = 0.0788 +ij[1935] = 28.8 +id[1936] = "2123-05-31T05:24:43" +ik[1936] = 0.458 +il[1936] = -125 +im[1936] = 0.0871 +ij[1936] = 28.1 +id[1937] = "2123-06-12T12:08:15" +ik[1937] = 5.07 +il[1937] = -88 +im[1937] = 0.0642 +ij[1937] = 27.2 +id[1938] = "2123-07-16T19:53:45" +ik[1938] = 0.83 +il[1938] = -5 +im[1938] = 0.0818 +ij[1938] = 12 +id[1939] = "2123-10-27T15:05:58" +ik[1939] = 3.494 +il[1939] = 129 +im[1939] = 0.0939 +ij[1939] = 27.4 +id[1940] = "2123-12-09T09:54:56" +ik[1940] = 53.563 +il[1940] = -101 +im[1940] = 0.0882 +ij[1940] = 9 +id[1941] = "2123-12-18T07:53:19" +ik[1941] = 1.366 +il[1941] = -73 +im[1941] = 0.0748 +ij[1941] = 28.7 +id[1942] = "2123-12-22T08:34:25" +ik[1942] = 0.774 +il[1942] = -61 +im[1942] = 0.0269 +ij[1942] = 27.3 +id[1943] = "2123-12-27T17:25:08" +ik[1943] = 1.039 +il[1943] = -44 +im[1943] = 0.1227 +ij[1943] = 28.6 +id[1944] = "2124-01-09T23:52:38" +ik[1944] = 1.174 +il[1944] = -3 +im[1944] = 0.1343 +ij[1944] = 27.5 +id[1945] = "2124-02-26T16:39:46" +ik[1945] = 90 +il[1945] = 147 +im[1945] = 0.205 +ij[1945] = 6 +id[1946] = "2124-02-28T10:10:43" +ik[1946] = 0.24 +il[1946] = 151 +im[1946] = 0.1861 +ij[1946] = 27.6 +id[1947] = "2124-03-04T19:48:43" +ik[1947] = 3.866 +il[1947] = 165 +im[1947] = 0.0277 +ij[1947] = 28.5 +id[1948] = "2124-03-14T00:18:55" +ik[1948] = 5.625 +il[1948] = -167 +im[1948] = 0.2551 +ij[1948] = 28.8 +id[1949] = "2124-04-13T16:21:11" +ik[1949] = 0 +il[1949] = -100 +im[1949] = 0.278 +ij[1949] = 13 +id[1950] = "2124-05-05T21:17:16" +ik[1950] = 4.58 +il[1950] = -100 +im[1950] = 0.533 +ij[1950] = 11 +id[1951] = "2124-05-06T10:52:18" +ik[1951] = 0.5374 +il[1951] = -66 +im[1951] = 0.5374 +ij[1951] = 2 +id[1952] = "2124-05-27T15:23:45" +ik[1952] = 43.96 +il[1952] = -46 +im[1952] = 0.1654 +ij[1952] = 7.1648 +id[1953] = "2124-06-01T22:24:42" +ik[1953] = 0.667 +il[1953] = -34 +im[1953] = 0.401 +ij[1953] = 28.8 +id[1954] = "2124-06-29T17:31:32" +ik[1954] = 77.05 +il[1954] = 19 +im[1954] = 0.255 +ij[1954] = 14 +id[1955] = "2124-07-14T22:07:56" +ik[1955] = 90 +il[1955] = 63 +im[1955] = 0.1977 +ij[1955] = 5 +id[1956] = "2124-09-24T23:04:17" +ik[1956] = 54.352 +il[1956] = -78 +im[1956] = 0.0924 +ij[1956] = 8 +id[1957] = "2124-11-30T20:09:36" +ik[1957] = 1.858 +il[1957] = 130 +im[1957] = 0.0611 +ij[1957] = 28.1 +id[1958] = "2124-12-15T12:15:07" +ik[1958] = 0.505 +il[1958] = 176 +im[1958] = 0.0789 +ij[1958] = 28.1 +id[1959] = "2124-12-19T12:37:58" +ik[1959] = 4.804 +il[1959] = -172 +im[1959] = 0.0136 +ij[1959] = 27.1 +id[1960] = "2125-02-22T16:55:12" +ik[1960] = 1.39 +il[1960] = 8 +im[1960] = 0.0736 +ij[1960] = 12 +id[1961] = "2125-04-05T03:53:40" +ik[1961] = 2.96 +il[1961] = -52 +im[1961] = 0.0058 +ij[1961] = 27.6 +id[1962] = "2125-04-12T01:17:19" +ik[1962] = 0.346 +il[1962] = -29 +im[1962] = 0.0846 +ij[1962] = 28.4 +id[1963] = "2125-04-17T09:46:22" +ik[1963] = 1.28 +il[1963] = -13 +im[1963] = 0.032 +ij[1963] = 28.8 +id[1964] = "2125-05-02T03:56:52" +ik[1964] = 0.939 +il[1964] = 33 +im[1964] = 0.052 +ij[1964] = 28.5 +id[1965] = "2125-05-11T22:42:25" +ik[1965] = 4.033 +il[1965] = 64 +im[1965] = 0.0893 +ij[1965] = 27.2 +id[1966] = "2125-06-08T07:13:43" +ik[1966] = 4.02 +il[1966] = 149 +im[1966] = 0.0814 +ij[1966] = 28.1 +id[1967] = "2125-07-14T11:20:18" +ik[1967] = 54.632 +il[1967] = -99 +im[1967] = 0.0907 +ij[1967] = 9 +id[1968] = "2125-09-26T21:58:12" +ik[1968] = 90 +il[1968] = 127 +im[1968] = 0.1578 +ij[1968] = 6 +id[1969] = "2125-10-08T15:02:25" +ik[1969] = 0.045 +il[1969] = 159 +im[1969] = 0.2594 +ij[1969] = 27.4 +id[1970] = "2125-11-16T17:32:00" +ik[1970] = 0 +il[1970] = -120 +im[1970] = 0.2762 +ij[1970] = 13 +id[1971] = "2125-12-03T17:19:23" +ik[1971] = 0.5767 +il[1971] = -100 +im[1971] = 0.5768 +ij[1971] = 2 +id[1972] = "2125-12-08T15:59:02" +ik[1972] = 0.2 +il[1972] = -86 +im[1972] = 0.248 +ij[1972] = 11 +id[1973] = "2125-12-16T14:39:18" +ik[1973] = 3.699 +il[1973] = -75 +im[1973] = 0.5169 +ij[1973] = 27.1 +id[1974] = "2125-12-29T02:44:37" +ik[1974] = 42.38 +il[1974] = -65 +im[1974] = 0.4695 +ij[1974] = 7.1537 +id[1975] = "2126-01-10T04:33:05" +ik[1975] = 0.582 +il[1975] = -54 +im[1975] = 0.2688 +ij[1975] = 27.1 +id[1976] = "2126-01-29T14:04:23" +ik[1976] = 73.86 +il[1976] = 11 +im[1976] = 0.2721 +ij[1976] = 14 +id[1977] = "2126-02-17T21:51:08" +ik[1977] = 90 +il[1977] = 59 +im[1977] = 0.011 +ij[1977] = 5 +id[1978] = "2126-03-15T15:46:25" +ik[1978] = 2.538 +il[1978] = 139 +im[1978] = 0.1274 +ij[1978] = 27.3 +id[1979] = "2126-03-16T04:52:19" +ik[1979] = 1.724 +il[1979] = 141 +im[1979] = 0.1146 +ij[1979] = 28.7 +id[1980] = "2126-04-03T21:22:51" +ik[1980] = 0.223 +il[1980] = -161 +im[1980] = 0.0284 +ij[1980] = 27.5 +id[1981] = "2126-04-08T16:55:12" +ik[1981] = 1.253 +il[1981] = -146 +im[1981] = 0.1084 +ij[1981] = 28.6 +id[1982] = "2126-05-06T20:35:00" +ik[1982] = 54.165 +il[1982] = -59 +im[1982] = 0.0609 +ij[1982] = 8 +id[1983] = "2126-06-02T07:08:15" +ik[1983] = 0.08 +il[1983] = 22 +im[1983] = 0.0211 +ij[1983] = 28.8 +id[1984] = "2126-06-27T01:00:15" +ik[1984] = 5.628 +il[1984] = 97 +im[1984] = 0.0906 +ij[1984] = 27.2 +id[1985] = "2126-07-08T00:47:39" +ik[1985] = 2.853 +il[1985] = 131 +im[1985] = 0.0826 +ij[1985] = 28.1 +id[1986] = "2126-07-08T23:30:37" +ik[1986] = 0.173 +il[1986] = 134 +im[1986] = 0.0907 +ij[1986] = 28.5 +id[1987] = "2126-07-14T00:48:57" +ik[1987] = 0.131 +il[1987] = 149 +im[1987] = 0.0798 +ij[1987] = 27.91 +id[1988] = "2126-07-21T05:21:07" +ik[1988] = 1.152 +il[1988] = 171 +im[1988] = 0.043 +ij[1988] = 28.1 +id[1989] = "2126-09-23T06:12:57" +ik[1989] = 1.38 +il[1989] = -6 +im[1989] = 0.0836 +ij[1989] = 12 +id[1990] = "2126-11-10T17:10:51" +ik[1990] = 4.123 +il[1990] = -48 +im[1990] = 0.0792 +ij[1990] = 27.4 +id[1991] = "2127-01-04T11:31:18" +ik[1991] = 0.398 +il[1991] = 119 +im[1991] = 0.069 +ij[1991] = 27.3 +id[1992] = "2127-01-11T10:25:58" +ik[1992] = 0.897 +il[1992] = 140 +im[1992] = 0.0696 +ij[1992] = 28.7 +id[1993] = "2127-01-22T08:07:45" +ik[1993] = 1.204 +il[1993] = 174 +im[1993] = 0.1086 +ij[1993] = 27.5 +id[1994] = "2127-02-10T22:28:50" +ik[1994] = 1.081 +il[1994] = -125 +im[1994] = 0.0724 +ij[1994] = 28.6 +id[1995] = "2127-02-23T11:09:41" +ik[1995] = 53.884 +il[1995] = -86 +im[1995] = 0.1188 +ij[1995] = 9 +id[1996] = "2127-03-08T05:12:46" +ik[1996] = 1.8 +il[1996] = -46 +im[1996] = 0.1272 +ij[1996] = 27.6 +id[1997] = "2127-03-25T06:46:39" +ik[1997] = 3.051 +il[1997] = 8 +im[1997] = 0.1382 +ij[1997] = 28.8 +id[1998] = "2127-04-17T05:27:18" +ik[1998] = 1.874 +il[1998] = 80 +im[1998] = 0.0521 +ij[1998] = 27.2 +id[1999] = "2127-04-29T02:30:46" +ik[1999] = 1.279 +il[1999] = 116 +im[1999] = 0.0441 +ij[1999] = 28.4 +id[2000] = "2127-05-06T19:18:07" +ik[2000] = 90 +il[2000] = 140 +im[2000] = 0.2158 +ij[2000] = 6 +id[2001] = "2127-06-22T14:04:50" +ik[2001] = 0 +il[2001] = -105 +im[2001] = 0.3119 +ij[2001] = 13 +id[2002] = "2127-06-24T23:50:29" +ik[2002] = 4.423 +il[2002] = -117 +im[2002] = 0.1311 +ij[2002] = 28.5 +id[2003] = "2127-07-03T12:41:56" +ik[2003] = 0.498 +il[2003] = -128 +im[2003] = 0.4981 +ij[2003] = 2 +id[2004] = "2127-07-14T20:22:33" +ik[2004] = 4.8 +il[2004] = -129 +im[2004] = 0.4421 +ij[2004] = 11 +id[2005] = "2127-08-05T19:38:34" +ik[2005] = 44.23 +il[2005] = -92 +im[2005] = 0.0138 +ij[2005] = 7.1662 +id[2006] = "2127-09-05T10:17:11" +ik[2006] = 4.042 +il[2006] = 10 +im[2006] = 0.1266 +ij[2006] = 28.5 +id[2007] = "2127-09-08T17:09:23" +ik[2007] = 78.13 +il[2007] = 17 +im[2007] = 0.2304 +ij[2007] = 14 +id[2008] = "2127-09-23T08:31:32" +ik[2008] = 90 +il[2008] = 55 +im[2008] = 0.2149 +ij[2008] = 5 +id[2009] = "2127-12-06T18:30:35" +ik[2009] = 53.884 +il[2009] = -76 +im[2009] = 0.1115 +ij[2009] = 8 +id[2010] = "2128-01-03T10:41:31" +ik[2010] = 4.149 +il[2010] = 10 +im[2010] = 0.0726 +ij[2010] = 27.1 +id[2011] = "2128-01-30T03:55:00" +ik[2011] = 2.437 +il[2011] = 93 +im[2011] = 0.0075 +ij[2011] = 28.1 +id[2012] = "2128-02-18T09:37:31" +ik[2012] = 0.661 +il[2012] = 153 +im[2012] = 0.0653 +ij[2012] = 27.3 +id[2013] = "2128-02-27T10:45:41" +ik[2013] = 0.191 +il[2013] = -179 +im[2013] = 0.0308 +ij[2013] = 28.7 +id[2014] = "2128-02-28T03:00:25" +ik[2014] = 3.875 +il[2014] = -177 +im[2014] = 0.0181 +ij[2014] = 28.1 +id[2015] = "2128-03-07T01:59:45" +ik[2015] = 0.777 +il[2015] = -152 +im[2015] = 0.0935 +ij[2015] = 27.5 +id[2016] = "2128-04-03T08:34:30" +ik[2016] = 0.984 +il[2016] = -80 +im[2016] = 0.0677 +ij[2016] = 28.6 +id[2017] = "2128-05-07T03:23:02" +ik[2017] = 0.73 +il[2017] = 12 +im[2017] = 0.0878 +ij[2017] = 12 +id[2018] = "2128-06-13T02:14:12" +ik[2018] = 0.269 +il[2018] = -58 +im[2018] = 0.0154 +ij[2018] = 27.9 +id[2019] = "2128-07-28T21:44:55" +ik[2019] = 2.005 +il[2019] = 85 +im[2019] = 0.0107 +ij[2019] = 28.1 +id[2020] = "2128-08-07T06:29:57" +ik[2020] = 0.114 +il[2020] = 114 +im[2020] = 0.0881 +ij[2020] = 28.5 +id[2021] = "2128-08-15T02:50:21" +ik[2021] = 4.997 +il[2021] = 138 +im[2021] = 0.0525 +ij[2021] = 28.1 +id[2022] = "2128-09-22T02:37:43" +ik[2022] = 54.105 +il[2022] = -107 +im[2022] = 0.1104 +ij[2022] = 9 +id[2023] = "2128-10-13T16:45:04" +ik[2023] = 2.472 +il[2023] = -42 +im[2023] = 0.0511 +ij[2023] = 27.4 +id[2024] = "2128-12-11T13:57:02" +ik[2024] = 90 +il[2024] = 140 +im[2024] = 0.0253 +ij[2024] = 6 +id[2025] = "2128-12-13T09:19:44" +ik[2025] = 1.06 +il[2025] = 145 +im[2025] = 0.0972 +ij[2025] = 27.3 +id[2026] = "2129-01-03T01:58:30" +ik[2026] = 0.363 +il[2026] = -163 +im[2026] = 0.2926 +ij[2026] = 28.7 +id[2027] = "2129-01-09T02:40:38" +ik[2027] = 1.01 +il[2027] = -150 +im[2027] = 0.0296 +ij[2027] = 27.5 +id[2028] = "2129-01-29T17:09:50" +ik[2028] = 0 +il[2028] = -111 +im[2028] = 0.4605 +ij[2028] = 13 +id[2029] = "2129-02-20T14:09:36" +ik[2029] = 8.59 +il[2029] = -77 +im[2029] = 0.2244 +ij[2029] = 11 +id[2030] = "2129-02-25T08:48:26" +ik[2030] = 0.5424 +il[2030] = -67 +im[2030] = 0.5424 +ij[2030] = 2 +id[2031] = "2129-03-13T16:12:24" +ik[2031] = 42.96 +il[2031] = -57 +im[2031] = 0.3702 +ij[2031] = 7.159 +id[2032] = "2129-03-25T04:50:09" +ik[2032] = 5.95 +il[2032] = -46 +im[2032] = 0.3657 +ij[2032] = 28.7 +id[2033] = "2129-04-05T06:22:51" +ik[2033] = 3.66 +il[2033] = -17 +im[2033] = 0.2286 +ij[2033] = 27.5 +id[2034] = "2129-04-14T21:48:08" +ik[2034] = 75.19 +il[2034] = 13 +im[2034] = 0.0271 +ij[2034] = 14 +id[2035] = "2129-05-02T21:31:41" +ik[2035] = 90 +il[2035] = 68 +im[2035] = 0.0998 +ij[2035] = 5 +id[2036] = "2129-05-21T13:19:12" +ik[2036] = 0.802 +il[2036] = 126 +im[2036] = 0.1799 +ij[2036] = 28.6 +id[2037] = "2129-05-30T18:13:39" +ik[2037] = 4.2 +il[2037] = 154 +im[2037] = 0.0162 +ij[2037] = 27.6 +id[2038] = "2129-06-20T00:06:37" +ik[2038] = 0.484 +il[2038] = -144 +im[2038] = 0.1405 +ij[2038] = 28.8 +id[2039] = "2129-07-10T11:03:21" +ik[2039] = 6.393 +il[2039] = -81 +im[2039] = 0.0639 +ij[2039] = 27.2 +id[2040] = "2129-07-15T13:17:44" +ik[2040] = 54.502 +il[2040] = -66 +im[2040] = 0.0542 +ij[2040] = 8 +id[2041] = "2129-09-07T13:30:25" +ik[2041] = 1.084 +il[2041] = 99 +im[2041] = 0.0707 +ij[2041] = 28.4 +id[2042] = "2129-10-17T19:56:38" +ik[2042] = 0.111 +il[2042] = -136 +im[2042] = 0.0798 +ij[2042] = 28.5 +id[2043] = "2129-12-05T05:22:33" +ik[2043] = 0.12 +il[2043] = -7 +im[2043] = 0.0871 +ij[2043] = 12 +id[2044] = "2130-01-18T18:53:58" +ik[2044] = 0.071 +il[2044] = -57 +im[2044] = 0.0853 +ij[2044] = 27.3 +id[2045] = "2130-02-05T10:07:44" +ik[2045] = 1.11 +il[2045] = -1 +im[2045] = 0.0735 +ij[2045] = 27.5 +id[2046] = "2130-02-05T13:09:50" +ik[2046] = 0.654 +il[2046] = -3 +im[2046] = 0.072 +ij[2046] = 28.7 +id[2047] = "2130-03-21T08:14:32" +ik[2047] = 2.52 +il[2047] = 134 +im[2047] = 0.0943 +ij[2047] = 27.6 +id[2048] = "2130-03-26T17:17:57" +ik[2048] = 2.155 +il[2048] = 151 +im[2048] = 0.0154 +ij[2048] = 28.6 +id[2049] = "2130-04-11T22:03:22" +ik[2049] = 2.258 +il[2049] = -159 +im[2049] = 0.0332 +ij[2049] = 28.8 +id[2050] = "2130-04-27T19:05:31" +ik[2050] = 3.259 +il[2050] = -109 +im[2050] = 0.0314 +ij[2050] = 27.2 +id[2051] = "2130-05-05T14:25:19" +ik[2051] = 54.521 +il[2051] = -85 +im[2051] = 0.1019 +ij[2051] = 9 +id[2052] = "2130-07-14T03:55:34" +ik[2052] = 90 +il[2052] = 129 +im[2052] = 0.1667 +ij[2052] = 6 +id[2053] = "2130-09-01T21:48:35" +ik[2053] = 0 +il[2053] = -99 +im[2053] = 0.2833 +ij[2053] = 13 +id[2054] = "2130-09-23T21:17:16" +ik[2054] = 8.56 +il[2054] = -99 +im[2054] = 0.5171 +ij[2054] = 11 +id[2055] = "2130-09-24T13:53:05" +ik[2055] = 0.5241 +il[2055] = -99 +im[2055] = 0.5241 +ij[2055] = 2 +id[2056] = "2130-09-29T06:51:59" +ik[2056] = 1.619 +il[2056] = -72 +im[2056] = 0.2546 +ij[2056] = 27.7 +id[2057] = "2130-10-14T22:14:12" +ik[2057] = 43.02 +il[2057] = -61 +im[2057] = 0.0653 +ij[2057] = 7.1604 +id[2058] = "2130-11-16T08:44:55" +ik[2058] = 75.46 +il[2058] = 1 +im[2058] = 0.2175 +ij[2058] = 14 +id[2059] = "2130-12-03T15:06:55" +ik[2059] = 90 +il[2059] = 53 +im[2059] = 0.2148 +ij[2059] = 5 +id[2060] = "2130-12-23T21:23:19" +ik[2060] = 1.373 +il[2060] = 116 +im[2060] = 0.0948 +ij[2060] = 28.5 +id[2061] = "2131-01-15T09:57:31" +ik[2061] = 3.113 +il[2061] = -174 +im[2061] = 0.1373 +ij[2061] = 27.1 +id[2062] = "2131-02-19T18:20:00" +ik[2062] = 53.743 +il[2062] = -64 +im[2062] = 0.1094 +ij[2062] = 8 +id[2063] = "2131-03-04T04:31:44" +ik[2063] = 1.242 +il[2063] = -25 +im[2063] = 0.1073 +ij[2063] = 27.3 +id[2064] = "2131-03-22T04:24:38" +ik[2064] = 0.471 +il[2064] = 31 +im[2064] = 0.0925 +ij[2064] = 27.5 +id[2065] = "2131-03-24T13:15:27" +ik[2065] = 0.18 +il[2065] = 38 +im[2065] = 0.0537 +ij[2065] = 28.7 +id[2066] = "2131-04-03T11:25:52" +ik[2066] = 0.372 +il[2066] = 69 +im[2066] = 0.0962 +ij[2066] = 28.1 +id[2067] = "2131-04-28T21:52:33" +ik[2067] = 2.581 +il[2067] = 147 +im[2067] = 0.0591 +ij[2067] = 28.1 +id[2068] = "2131-05-05T10:54:27" +ik[2068] = 3.57 +il[2068] = 167 +im[2068] = 0.0793 +ij[2068] = 27.6 +id[2069] = "2131-05-18T07:16:36" +ik[2069] = 1.134 +il[2069] = -154 +im[2069] = 0.0892 +ij[2069] = 28.6 +id[2070] = "2131-05-27T20:51:38" +ik[2070] = 0.741 +il[2070] = -125 +im[2070] = 0.0409 +ij[2070] = 28.8 +id[2071] = "2131-06-12T01:08:41" +ik[2071] = 5.053 +il[2071] = -90 +im[2071] = 0.0322 +ij[2071] = 27.2 +id[2072] = "2131-07-14T14:32:38" +ik[2072] = 0.78 +il[2072] = -1 +im[2072] = 0.0645 +ij[2072] = 12 +id[2073] = "2131-10-14T16:52:39" +ik[2073] = 0.52 +il[2073] = 99 +im[2073] = 0.0971 +ij[2073] = 28.4 +id[2074] = "2131-10-19T23:19:40" +ik[2074] = 5.52 +il[2074] = 115 +im[2074] = 0.0658 +ij[2074] = 28.1 +id[2075] = "2131-10-27T05:05:31" +ik[2075] = 3.469 +il[2075] = 137 +im[2075] = 0.0658 +ij[2075] = 27.4 +id[2076] = "2131-11-19T12:43:03" +ik[2076] = 1.593 +il[2076] = -152 +im[2076] = 0.0713 +ij[2076] = 28.5 +id[2077] = "2131-12-06T20:31:34" +ik[2077] = 53.569 +il[2077] = -99 +im[2077] = 0.0084 +ij[2077] = 9 +id[2078] = "2131-12-21T23:58:51" +ik[2078] = 0.788 +il[2078] = -52 +im[2078] = 0.0319 +ij[2078] = 27.3 +id[2079] = "2132-01-09T16:34:24" +ik[2079] = 1.165 +il[2079] = 6 +im[2079] = 0.0984 +ij[2079] = 27.5 +id[2080] = "2132-01-18T20:21:07" +ik[2080] = 0.282 +il[2080] = 35 +im[2080] = 0.1012 +ij[2080] = 28.7 +id[2081] = "2132-02-24T07:41:07" +ik[2081] = 90 +il[2081] = 149 +im[2081] = 0.1534 +ij[2081] = 6 +id[2082] = "2132-02-28T12:35:19" +ik[2082] = 0.39 +il[2082] = 160 +im[2082] = 0.2183 +ij[2082] = 27.6 +id[2083] = "2132-04-11T08:45:23" +ik[2083] = 0 +il[2083] = -110 +im[2083] = 0.4215 +ij[2083] = 13 +id[2084] = "2132-05-03T13:35:02" +ik[2084] = 4.87 +il[2084] = -76 +im[2084] = 0.3171 +ij[2084] = 11 +id[2085] = "2132-05-07T14:56:20" +ik[2085] = 0.5237 +il[2085] = -66 +im[2085] = 0.5237 +ij[2085] = 2 +id[2086] = "2132-05-24T12:48:04" +ik[2086] = 43.17 +il[2086] = -55 +im[2086] = 0.2303 +ij[2086] = 7.1647 +id[2087] = "2132-06-27T08:05:51" +ik[2087] = 76.97 +il[2087] = 20 +im[2087] = 0.1326 +ij[2087] = 14 +id[2088] = "2132-06-27T11:01:32" +ik[2088] = 0.987 +il[2088] = 26 +im[2088] = 0.1377 +ij[2088] = 28.6 +id[2089] = "2132-07-01T03:36:34" +ik[2089] = 1.633 +il[2089] = 34 +im[2089] = 0.2359 +ij[2089] = 28.8 +id[2090] = "2132-07-12T14:41:16" +ik[2090] = 90 +il[2090] = 66 +im[2090] = 0.1267 +ij[2090] = 5 +id[2091] = "2132-09-22T15:08:02" +ik[2091] = 54.365 +il[2091] = -75 +im[2091] = 0.0106 +ij[2091] = 8 +id[2092] = "2132-12-19T01:57:57" +ik[2092] = 4.827 +il[2092] = -164 +im[2092] = 0.0489 +ij[2092] = 27.1 +id[2093] = "2133-02-20T03:05:45" +ik[2093] = 1.38 +il[2093] = 10 +im[2093] = 0.0123 +ij[2093] = 12 +id[2094] = "2133-04-04T17:02:49" +ik[2094] = 2.95 +il[2094] = -43 +im[2094] = 0.0327 +ij[2094] = 27.6 +id[2095] = "2133-05-01T01:42:14" +ik[2095] = 1.798 +il[2095] = 39 +im[2095] = 0.0855 +ij[2095] = 28.8 +id[2096] = "2133-05-08T07:21:12" +ik[2096] = 2.157 +il[2096] = 62 +im[2096] = 0.0366 +ij[2096] = 28.6 +id[2097] = "2133-05-11T12:10:24" +ik[2097] = 4.011 +il[2097] = 72 +im[2097] = 0.0828 +ij[2097] = 27.2 +id[2098] = "2133-05-17T22:57:56" +ik[2098] = 1.459 +il[2098] = 92 +im[2098] = 0.0556 +ij[2098] = 28.1 +id[2099] = "2133-07-12T05:17:50" +ik[2099] = 54.64 +il[2099] = -133 +im[2099] = 0.1217 +ij[2099] = 9 +id[2100] = "2133-09-24T10:09:43" +ik[2100] = 90 +il[2100] = 129 +im[2100] = 0.1963 +ij[2100] = 6 +id[2101] = "2133-10-09T00:51:17" +ik[2101] = 0.22 +il[2101] = 168 +im[2101] = 0.2591 +ij[2101] = 27.4 +id[2102] = "2133-11-14T08:06:18" +ik[2102] = 0 +il[2102] = 179 +im[2102] = 0.071 +ij[2102] = 13 +id[2103] = "2133-12-04T21:01:51" +ik[2103] = 0.5798 +il[2103] = -79 +im[2103] = 0.5799 +ij[2103] = 2 +id[2104] = "2133-12-06T05:06:43" +ik[2104] = 0.6 +il[2104] = -79 +im[2104] = 0.5527 +ij[2104] = 11 +id[2105] = "2133-12-26T14:31:01" +ik[2105] = 42.27 +il[2105] = -85 +im[2105] = 0.2452 +ij[2105] = 7.1539 +id[2106] = "2134-01-12T21:39:17" +ik[2106] = 0.638 +il[2106] = -18 +im[2106] = 0.307 +ij[2106] = 27.1 +id[2107] = "2134-01-26T19:35:45" +ik[2107] = 4.639 +il[2107] = 13 +im[2107] = 0.2631 +ij[2107] = 28.4 +id[2108] = "2134-01-27T02:58:48" +ik[2108] = 73.79 +il[2108] = 2 +im[2108] = 0.2694 +ij[2108] = 14 +id[2109] = "2134-02-15T10:02:39" +ik[2109] = 90 +il[2109] = 61 +im[2109] = 0.1664 +ij[2109] = 5 +id[2110] = "2134-03-15T10:25:04" +ik[2110] = 2.467 +il[2110] = 149 +im[2110] = 0.156 +ij[2110] = 27.3 +id[2111] = "2134-03-30T06:03:01" +ik[2111] = 0.974 +il[2111] = -159 +im[2111] = 0.1478 +ij[2111] = 28.5 +id[2112] = "2134-04-03T13:57:31" +ik[2112] = 0.184 +il[2112] = -152 +im[2112] = 0.0739 +ij[2112] = 27.5 +id[2113] = "2134-04-17T20:06:08" +ik[2113] = 0.261 +il[2113] = -108 +im[2113] = 0.0782 +ij[2113] = 28.7 +id[2114] = "2134-05-04T11:31:11" +ik[2114] = 54.149 +il[2114] = -56 +im[2114] = 0.0323 +ij[2114] = 8 +id[2115] = "2134-06-16T07:15:53" +ik[2115] = 0.346 +il[2115] = 75 +im[2115] = 0.0767 +ij[2115] = 28.8 +id[2116] = "2134-06-16T20:10:45" +ik[2116] = 4.303 +il[2116] = 76 +im[2116] = 0.0688 +ij[2116] = 28.1 +id[2117] = "2134-06-26T14:29:07" +ik[2117] = 5.607 +il[2117] = 106 +im[2117] = 0.0899 +ij[2117] = 27.2 +id[2118] = "2134-06-29T20:26:52" +ik[2118] = 0.642 +il[2118] = 116 +im[2118] = 0.0777 +ij[2118] = 28.6 +id[2119] = "2134-07-13T14:03:50" +ik[2119] = 0.151 +il[2119] = 158 +im[2119] = 0.0948 +ij[2119] = 27.91 +id[2120] = "2134-09-20T21:51:50" +ik[2120] = 1.39 +il[2120] = -7 +im[2120] = 0.0479 +ij[2120] = 12 +id[2121] = "2134-11-10T06:31:17" +ik[2121] = 4.105 +il[2121] = -39 +im[2121] = 0.0855 +ij[2121] = 27.4 +id[2122] = "2134-12-18T15:04:45" +ik[2122] = 3.88 +il[2122] = 77 +im[2122] = 0.0231 +ij[2122] = 28.1 +id[2123] = "2135-01-04T01:13:30" +ik[2123] = 0.409 +il[2123] = 128 +im[2123] = 0.0388 +ij[2123] = 27.3 +id[2124] = "2135-01-21T22:10:50" +ik[2124] = 1.206 +il[2124] = -179 +im[2124] = 0.0901 +ij[2124] = 27.5 +id[2125] = "2135-02-11T02:11:45" +ik[2125] = 0.199 +il[2125] = -114 +im[2125] = 0.0987 +ij[2125] = 28.7 +id[2126] = "2135-02-18T08:22:50" +ik[2126] = 0.635 +il[2126] = -92 +im[2126] = 0.0469 +ij[2126] = 28.5 +id[2127] = "2135-02-20T23:43:39" +ik[2127] = 53.862 +il[2127] = -83 +im[2127] = 0.0958 +ij[2127] = 9 +id[2128] = "2135-03-07T20:44:04" +ik[2128] = 1.77 +il[2128] = -37 +im[2128] = 0.1158 +ij[2128] = 27.6 +id[2129] = "2135-04-09T08:49:29" +ik[2129] = 3.951 +il[2129] = 65 +im[2129] = 0.1715 +ij[2129] = 28.8 +id[2130] = "2135-04-17T01:23:44" +ik[2130] = 1.8 +il[2130] = 89 +im[2130] = 0.0196 +ij[2130] = 27.2 +id[2131] = "2135-05-04T13:11:56" +ik[2131] = 90 +il[2131] = 143 +im[2131] = 0.1332 +ij[2131] = 6 +id[2132] = "2135-05-06T18:39:36" +ik[2132] = 4.351 +il[2132] = 149 +im[2132] = 0.2007 +ij[2132] = 28.6 +id[2133] = "2135-06-20T02:59:15" +ik[2133] = 0 +il[2133] = -118 +im[2133] = 0.3795 +ij[2133] = 13 +id[2134] = "2135-07-04T18:11:09" +ik[2134] = 0.5153 +il[2134] = -100 +im[2134] = 0.5153 +ij[2134] = 2 +id[2135] = "2135-07-12T13:04:48" +ik[2135] = 4.52 +il[2135] = -83 +im[2135] = 0.1571 +ij[2135] = 11 +id[2136] = "2135-08-03T18:17:53" +ik[2136] = 44.64 +il[2136] = -73 +im[2136] = 0.2999 +ij[2136] = 7.1662 +id[2137] = "2135-09-06T10:19:32" +ik[2137] = 78.31 +il[2137] = 14 +im[2137] = 0.1008 +ij[2137] = 14 +id[2138] = "2135-09-21T00:35:40" +ik[2138] = 90 +il[2138] = 58 +im[2138] = 0.1163 +ij[2138] = 5 +id[2139] = "2135-12-04T07:36:33" +ik[2139] = 53.899 +il[2139] = -74 +im[2139] = 0.0466 +ij[2139] = 8 +id[2140] = "2136-01-03T00:47:44" +ik[2140] = 4.179 +il[2140] = 19 +im[2140] = 0.0378 +ij[2140] = 27.1 +id[2141] = "2136-02-12T01:46:07" +ik[2141] = 1.216 +il[2141] = 144 +im[2141] = 0.0737 +ij[2141] = 28.4 +id[2142] = "2136-02-17T23:01:57" +ik[2142] = 0.645 +il[2142] = 162 +im[2142] = 0.0322 +ij[2142] = 27.3 +id[2143] = "2136-03-06T15:17:04" +ik[2143] = 0.785 +il[2143] = -144 +im[2143] = 0.0793 +ij[2143] = 27.5 +id[2144] = "2136-03-28T21:17:25" +ik[2144] = 0.608 +il[2144] = -86 +im[2144] = 0.0477 +ij[2144] = 28.7 +id[2145] = "2136-05-04T19:49:26" +ik[2145] = 0.77 +il[2145] = 15 +im[2145] = 0.0563 +ij[2145] = 12 +id[2146] = "2136-06-12T16:25:32" +ik[2146] = 0.211 +il[2146] = -49 +im[2146] = 0.046 +ij[2146] = 27.9 +id[2147] = "2136-06-19T09:06:20" +ik[2147] = 1.407 +il[2147] = -26 +im[2147] = 0.0712 +ij[2147] = 28.6 +id[2148] = "2136-06-24T23:24:25" +ik[2148] = 2.348 +il[2148] = -10 +im[2148] = 0.0841 +ij[2148] = 28.1 +id[2149] = "2136-07-30T00:16:07" +ik[2149] = 3.853 +il[2149] = 98 +im[2149] = 0.0208 +ij[2149] = 28.1 +id[2150] = "2136-09-19T17:01:54" +ik[2150] = 54.129 +il[2150] = -105 +im[2150] = 0.114 +ij[2150] = 9 +id[2151] = "2136-10-13T09:01:57" +ik[2151] = 2.425 +il[2151] = -33 +im[2151] = 0.0124 +ij[2151] = 27.4 +id[2152] = "2136-12-09T01:21:40" +ik[2152] = 90 +il[2152] = 142 +im[2152] = 0.1559 +ij[2152] = 6 +id[2153] = "2136-12-13T12:15:44" +ik[2153] = 1.04 +il[2153] = 155 +im[2153] = 0.029 +ij[2153] = 27.3 +id[2154] = "2137-01-11T00:30:50" +ik[2154] = 1.528 +il[2154] = -138 +im[2154] = 0.0175 +ij[2154] = 27.5 +id[2155] = "2137-01-27T10:19:59" +ik[2155] = 0 +il[2155] = -149 +im[2155] = 0.3061 +ij[2155] = 13 +id[2156] = "2137-02-18T03:02:52" +ik[2156] = 8.5 +il[2156] = -150 +im[2156] = 0.2663 +ij[2156] = 11 +id[2157] = "2137-02-26T13:57:12" +ik[2157] = 0.5383 +il[2157] = -55 +im[2157] = 0.5384 +ij[2157] = 2 +id[2158] = "2137-03-10T22:35:36" +ik[2158] = 42.51 +il[2158] = -45 +im[2158] = 0.3961 +ij[2158] = 7.1588 +id[2159] = "2137-04-06T04:23:44" +ik[2159] = 3.29 +il[2159] = 10 +im[2159] = 0.1867 +ij[2159] = 27.5 +id[2160] = "2137-04-12T10:07:20" +ik[2160] = 74.99 +il[2160] = 21 +im[2160] = 0.2069 +ij[2160] = 14 +id[2161] = "2137-04-30T11:28:27" +ik[2161] = 90 +il[2161] = 71 +im[2161] = 0.0766 +ij[2161] = 5 +id[2162] = "2137-05-08T22:37:12" +ik[2162] = 0.315 +il[2162] = 97 +im[2162] = 0.1818 +ij[2162] = 28.7 +id[2163] = "2137-05-30T12:45:57" +ik[2163] = 4.2 +il[2163] = 164 +im[2163] = 0.0481 +ij[2163] = 27.6 +id[2164] = "2137-06-27T17:35:48" +ik[2164] = 0.958 +il[2164] = -110 +im[2164] = 0.0788 +ij[2164] = 28.5 +id[2165] = "2137-07-04T18:09:30" +ik[2165] = 0.282 +il[2165] = -89 +im[2165] = 0.0973 +ij[2165] = 28.8 +id[2166] = "2137-07-10T02:01:33" +ik[2166] = 6.361 +il[2166] = -72 +im[2166] = 0.0987 +ij[2166] = 27.2 +id[2167] = "2137-07-13T06:25:29" +ik[2167] = 54.498 +il[2167] = -63 +im[2167] = 0.0418 +ij[2167] = 8 +id[2168] = "2137-08-10T17:42:00" +ik[2168] = 0.184 +il[2168] = 24 +im[2168] = 0.0678 +ij[2168] = 28.6 +id[2169] = "2137-12-02T17:16:48" +ik[2169] = 0.18 +il[2169] = -5 +im[2169] = 0.0755 +ij[2169] = 12 +id[2170] = "2138-01-18T08:07:43" +ik[2170] = 0.082 +il[2170] = -49 +im[2170] = 0.0878 +ij[2170] = 27.3 +id[2171] = "2138-02-04T23:26:23" +ik[2171] = 1.114 +il[2171] = 7 +im[2171] = 0.0867 +ij[2171] = 27.5 +id[2172] = "2138-02-12T02:00:48" +ik[2172] = 2.707 +il[2172] = 28 +im[2172] = 0.022 +ij[2172] = 28.1 +id[2173] = "2138-02-16T23:52:22" +ik[2173] = 0.865 +il[2173] = 43 +im[2173] = 0.0913 +ij[2173] = 28.4 +id[2174] = "2138-03-08T01:03:47" +ik[2174] = 0.184 +il[2174] = 102 +im[2174] = 0.084 +ij[2174] = 28.7 +id[2175] = "2138-03-20T21:51:54" +ik[2175] = 2.5 +il[2175] = 142 +im[2175] = 0.1051 +ij[2175] = 27.6 +id[2176] = "2138-04-25T23:08:00" +ik[2176] = 2.81 +il[2176] = -105 +im[2176] = 0.0485 +ij[2176] = 28.8 +id[2177] = "2138-04-27T09:44:10" +ik[2177] = 3.225 +il[2177] = -100 +im[2177] = 0.0157 +ij[2177] = 27.2 +id[2178] = "2138-05-03T07:36:37" +ik[2178] = 54.504 +il[2178] = -82 +im[2178] = 0.1069 +ij[2178] = 9 +id[2179] = "2138-05-19T09:27:30" +ik[2179] = 1.952 +il[2179] = -32 +im[2179] = 0.1315 +ij[2179] = 28.5 +id[2180] = "2138-06-13T12:33:33" +ik[2180] = 1.73 +il[2180] = 46 +im[2180] = 0.0621 +ij[2180] = 28.6 +id[2181] = "2138-07-11T20:16:31" +ik[2181] = 90 +il[2181] = 132 +im[2181] = 0.0195 +ij[2181] = 6 +id[2182] = "2138-08-31T10:07:47" +ik[2182] = 0 +il[2182] = -110 +im[2182] = 0.4317 +ij[2182] = 13 +id[2183] = "2138-09-21T11:08:09" +ik[2183] = 8.62 +il[2183] = -87 +im[2183] = 0.2799 +ij[2183] = 11 +id[2184] = "2138-09-22T23:45:18" +ik[2184] = 2.089 +il[2184] = -76 +im[2184] = 0.4242 +ij[2184] = 27.7 +id[2185] = "2138-09-25T16:47:14" +ik[2185] = 0.5309 +il[2185] = -71 +im[2185] = 0.531 +ij[2185] = 2 +id[2186] = "2138-10-12T13:08:33" +ik[2186] = 42.13 +il[2186] = -61 +im[2186] = 0.324 +ij[2186] = 7.1607 +id[2187] = "2138-11-14T01:21:19" +ik[2187] = 74.63 +il[2187] = 4 +im[2187] = 0.0437 +ij[2187] = 14 +id[2188] = "2138-12-01T05:07:14" +ik[2188] = 90 +il[2188] = 55 +im[2188] = 0.1161 +ij[2188] = 5 +id[2189] = "2139-01-15T02:56:37" +ik[2189] = 3.164 +il[2189] = -165 +im[2189] = 0.1014 +ij[2189] = 27.1 +id[2190] = "2139-02-17T05:57:04" +ik[2190] = 53.737 +il[2190] = -62 +im[2190] = 0.1205 +ij[2190] = 8 +id[2191] = "2139-03-03T18:56:10" +ik[2191] = 1.216 +il[2191] = -16 +im[2191] = 0.1018 +ij[2191] = 27.3 +id[2192] = "2139-03-21T18:21:57" +ik[2192] = 0.485 +il[2192] = 39 +im[2192] = 0.1055 +ij[2192] = 27.5 +id[2193] = "2139-04-24T13:02:29" +ik[2193] = 0.787 +il[2193] = 143 +im[2193] = 0.0533 +ij[2193] = 28.7 +id[2194] = "2139-05-05T00:12:54" +ik[2194] = 3.56 +il[2194] = 175 +im[2194] = 0.0934 +ij[2194] = 27.6 +id[2195] = "2139-06-10T14:59:42" +ik[2195] = 1.065 +il[2195] = -84 +im[2195] = 0.0238 +ij[2195] = 28.8 +id[2196] = "2139-06-11T14:07:20" +ik[2196] = 5.036 +il[2196] = -82 +im[2196] = 0.009 +ij[2196] = 27.2 +id[2197] = "2139-07-12T09:12:57" +ik[2197] = 0.74 +il[2197] = 2 +im[2197] = 0.0073 +ij[2197] = 12 +id[2198] = "2139-08-20T05:12:11" +ik[2198] = 0.047 +il[2198] = -60 +im[2198] = 0.0767 +ij[2198] = 28.1 +id[2199] = "2139-10-04T11:31:46" +ik[2199] = 4.107 +il[2199] = 78 +im[2199] = 0.087 +ij[2199] = 28.1 +id[2200] = "2139-10-26T19:08:10" +ik[2200] = 3.443 +il[2200] = 146 +im[2200] = 0.0275 +ij[2200] = 27.4 +id[2201] = "2139-12-04T07:08:12" +ik[2201] = 53.576 +il[2201] = -97 +im[2201] = 0.096 +ij[2201] = 9 +id[2202] = "2139-12-21T15:30:23" +ik[2202] = 0.8 +il[2202] = -43 +im[2202] = 0.0796 +ij[2202] = 27.3 +id[2203] = "2140-01-09T09:25:03" +ik[2203] = 1.154 +il[2203] = 15 +im[2203] = 0.0451 +ij[2203] = 27.5 +id[2204] = "2140-02-21T22:34:30" +ik[2204] = 90 +il[2204] = 152 +im[2204] = 0.0118 +ij[2204] = 6 +id[2205] = "2140-02-22T16:08:15" +ik[2205] = 2.545 +il[2205] = 153 +im[2205] = 0.0366 +ij[2205] = 28.7 +id[2206] = "2140-02-27T02:37:32" +ik[2206] = 3.046 +il[2206] = 165 +im[2206] = 0.2105 +ij[2206] = 28.4 +id[2207] = "2140-02-28T16:04:47" +ik[2207] = 0.56 +il[2207] = 169 +im[2207] = 0.2352 +ij[2207] = 27.6 +id[2208] = "2140-04-08T01:21:46" +ik[2208] = 0 +il[2208] = -109 +im[2208] = 0.22 +ij[2208] = 13 +id[2209] = "2140-04-25T04:29:45" +ik[2209] = 0.515 +il[2209] = -120 +im[2209] = 0.5151 +ij[2209] = 2 +id[2210] = "2140-05-01T05:45:36" +ik[2210] = 5.15 +il[2210] = -121 +im[2210] = 0.0869 +ij[2210] = 11 +id[2211] = "2140-05-22T03:48:29" +ik[2211] = 44.1 +il[2211] = -82 +im[2211] = 0.4142 +ij[2211] = 7.1641 +id[2212] = "2140-06-24T21:42:14" +ik[2212] = 77.85 +il[2212] = 22 +im[2212] = 0.0831 +ij[2212] = 14 +id[2213] = "2140-07-10T07:13:43" +ik[2213] = 90 +il[2213] = 69 +im[2213] = 0.0397 +ij[2213] = 5 +id[2214] = "2140-07-19T15:44:29" +ik[2214] = 1.552 +il[2214] = 97 +im[2214] = 0.1832 +ij[2214] = 28.8 +id[2215] = "2140-09-20T07:15:20" +ik[2215] = 54.378 +il[2215] = -72 +im[2215] = 0.0864 +ij[2215] = 8 +id[2216] = "2140-09-21T17:25:26" +ik[2216] = 0.913 +il[2216] = -68 +im[2216] = 0.0575 +ij[2216] = 28.6 +id[2217] = "2140-10-04T06:05:28" +ik[2217] = 0.31 +il[2217] = -29 +im[2217] = 0.079 +ij[2217] = 28.5 +id[2218] = "2140-12-18T15:18:23" +ik[2218] = 4.85 +il[2218] = -155 +im[2218] = 0.0744 +ij[2218] = 27.1 +id[2219] = "2141-02-17T13:09:07" +ik[2219] = 1.36 +il[2219] = 12 +im[2219] = 0.0578 +ij[2219] = 12 +id[2220] = "2141-04-02T13:41:57" +ik[2220] = 0.259 +il[2220] = -40 +im[2220] = 0.0822 +ij[2220] = 28.7 +id[2221] = "2141-04-04T06:09:46" +ik[2221] = 2.93 +il[2221] = -28 +im[2221] = 0.0644 +ij[2221] = 27.6 +id[2222] = "2141-04-04T10:44:24" +ik[2222] = 3.554 +il[2222] = -34 +im[2222] = 0.0618 +ij[2222] = 28.1 +id[2223] = "2141-04-27T07:50:00" +ik[2223] = 2.076 +il[2223] = 38 +im[2223] = 0.0731 +ij[2223] = 28.1 +id[2224] = "2141-05-11T01:34:50" +ik[2224] = 3.988 +il[2224] = 81 +im[2224] = 0.0627 +ij[2224] = 27.2 +id[2225] = "2141-05-14T20:43:09" +ik[2225] = 2.188 +il[2225] = 93 +im[2225] = 0.0956 +ij[2225] = 28.8 +id[2226] = "2141-07-09T23:18:55" +ik[2226] = 54.648 +il[2226] = -100 +im[2226] = 0.0825 +ij[2226] = 9 +id[2227] = "2141-07-24T17:18:53" +ik[2227] = 0.48 +il[2227] = -48 +im[2227] = 0.0592 +ij[2227] = 28.6 +id[2228] = "2141-08-31T17:54:00" +ik[2228] = 2.256 +il[2228] = 66 +im[2228] = 0.1166 +ij[2228] = 28.5 +id[2229] = "2141-09-21T22:31:51" +ik[2229] = 90 +il[2229] = 131 +im[2229] = 0.0945 +ij[2229] = 6 +id[2230] = "2141-10-09T13:22:23" +ik[2230] = 0.407 +il[2230] = 170 +im[2230] = 0.2422 +ij[2230] = 27.4 +id[2231] = "2141-11-11T21:42:41" +ik[2231] = 0 +il[2231] = -159 +im[2231] = 0.3713 +ij[2231] = 13 +id[2232] = "2141-12-03T18:17:16" +ik[2232] = 1.01 +il[2232] = -159 +im[2232] = 0.4966 +ij[2232] = 11 +id[2233] = "2141-12-05T22:56:53" +ik[2233] = 0.5697 +il[2233] = -80 +im[2233] = 0.5698 +ij[2233] = 2 +id[2234] = "2141-12-24T04:53:17" +ik[2234] = 42.3 +il[2234] = -55 +im[2234] = 0.1393 +ij[2234] = 7.154 +id[2235] = "2142-01-14T15:44:36" +ik[2235] = 0.748 +il[2235] = -7 +im[2235] = 0.3007 +ij[2235] = 27.1 +id[2236] = "2142-01-24T15:45:00" +ik[2236] = 73.75 +il[2236] = 4 +im[2236] = 0.0965 +ij[2236] = 14 +id[2237] = "2142-02-12T22:17:42" +ik[2237] = 90 +il[2237] = 63 +im[2237] = 0.207 +ij[2237] = 5 +id[2238] = "2142-03-15T04:42:23" +ik[2238] = 2.398 +il[2238] = 158 +im[2238] = 0.1623 +ij[2238] = 27.3 +id[2239] = "2142-04-03T06:20:10" +ik[2239] = 0.149 +il[2239] = -143 +im[2239] = 0.1075 +ij[2239] = 27.5 +id[2240] = "2142-05-02T02:16:42" +ik[2240] = 54.132 +il[2240] = -54 +im[2240] = 0.1021 +ij[2240] = 8 +id[2241] = "2142-05-19T16:33:36" +ik[2241] = 1.134 +il[2241] = 0 +im[2241] = 0.0722 +ij[2241] = 28.7 +id[2242] = "2142-06-08T15:15:59" +ik[2242] = 0.844 +il[2242] = 61 +im[2242] = 0.0494 +ij[2242] = 28.4 +id[2243] = "2142-06-26T03:55:20" +ik[2243] = 5.587 +il[2243] = 114 +im[2243] = 0.0749 +ij[2243] = 27.2 +id[2244] = "2142-06-30T06:32:14" +ik[2244] = 0.629 +il[2244] = 127 +im[2244] = 0.0867 +ij[2244] = 28.8 +id[2245] = "2142-07-13T03:12:57" +ik[2245] = 0.17 +il[2245] = 166 +im[2245] = 0.091 +ij[2245] = 27.91 +id[2246] = "2142-09-18T13:42:14" +ik[2246] = 1.4 +il[2246] = 1 +im[2246] = 0.0225 +ij[2246] = 12 +id[2247] = "2142-10-23T02:11:28" +ik[2247] = 5.12 +il[2247] = -84 +im[2247] = 0.0576 +ij[2247] = 28.1 +id[2248] = "2142-11-06T22:37:46" +ik[2248] = 0.78 +il[2248] = -39 +im[2248] = 0.0419 +ij[2248] = 28.5 +id[2249] = "2142-11-09T19:55:43" +ik[2249] = 4.086 +il[2249] = -27 +im[2249] = 0.0785 +ij[2249] = 27.4 +id[2250] = "2142-12-03T02:31:03" +ik[2250] = 0.642 +il[2250] = 40 +im[2250] = 0.0313 +ij[2250] = 28.1 +id[2251] = "2143-01-03T14:59:16" +ik[2251] = 0.421 +il[2251] = 136 +im[2251] = 0.0107 +ij[2251] = 27.3 +id[2252] = "2143-01-21T12:12:10" +ik[2252] = 1.207 +il[2252] = -179 +im[2252] = 0.0555 +ij[2252] = 27.5 +id[2253] = "2143-02-18T12:10:30" +ik[2253] = 53.84 +il[2253] = -81 +im[2253] = 0.0125 +ij[2253] = 9 +id[2254] = "2143-03-14T13:07:14" +ik[2254] = 1.262 +il[2254] = -6 +im[2254] = 0.13 +ij[2254] = 28.7 +id[2255] = "2143-04-16T21:48:09" +ik[2255] = 1.723 +il[2255] = 98 +im[2255] = 0.0812 +ij[2255] = 27.2 +id[2256] = "2143-04-25T16:00:11" +ik[2256] = 4.568 +il[2256] = 126 +im[2256] = 0.1842 +ij[2256] = 28.8 +id[2257] = "2143-05-02T07:02:13" +ik[2257] = 90 +il[2257] = 146 +im[2257] = 0.0365 +ij[2257] = 6 +id[2258] = "2143-06-17T15:45:27" +ik[2258] = 0 +il[2258] = -115 +im[2258] = 0.1829 +ij[2258] = 13 +id[2259] = "2143-07-05T22:42:31" +ik[2259] = 0.5216 +il[2259] = -94 +im[2259] = 0.5216 +ij[2259] = 2 +id[2260] = "2143-07-10T05:51:21" +ik[2260] = 4.24 +il[2260] = -80 +im[2260] = 0.2731 +ij[2260] = 11 +id[2261] = "2143-08-01T16:50:02" +ik[2261] = 45.04 +il[2261] = -70 +im[2261] = 0.4319 +ij[2261] = 7.1661 +id[2262] = "2143-09-04T03:00:50" +ik[2262] = 78.47 +il[2262] = 17 +im[2262] = 0.1084 +ij[2262] = 14 +id[2263] = "2143-09-18T16:44:14" +ik[2263] = 90 +il[2263] = 61 +im[2263] = 0.0519 +ij[2263] = 5 +id[2264] = "2143-11-04T08:03:50" +ik[2264] = 1.009 +il[2264] = -157 +im[2264] = 0.0137 +ij[2264] = 28.6 +id[2265] = "2143-12-01T20:49:38" +ik[2265] = 53.914 +il[2265] = -72 +im[2265] = 0.0524 +ij[2265] = 8 +id[2266] = "2144-01-02T14:53:03" +ik[2266] = 4.209 +il[2266] = 27 +im[2266] = 0.0052 +ij[2266] = 27.1 +id[2267] = "2144-01-15T04:04:30" +ik[2267] = 0.389 +il[2267] = 67 +im[2267] = 0.0695 +ij[2267] = 28.5 +id[2268] = "2144-02-17T12:26:23" +ik[2268] = 0.63 +il[2268] = 170 +im[2268] = 0.0115 +ij[2268] = 27.3 +id[2269] = "2144-03-06T04:29:03" +ik[2269] = 0.793 +il[2269] = -135 +im[2269] = 0.0501 +ij[2269] = 27.5 +id[2270] = "2144-03-20T17:36:48" +ik[2270] = 2.288 +il[2270] = -90 +im[2270] = 0.0363 +ij[2270] = 28.1 +id[2271] = "2144-05-02T12:02:52" +ik[2271] = 0.82 +il[2271] = 18 +im[2271] = 0.0098 +ij[2271] = 12 +id[2272] = "2144-06-04T01:21:30" +ik[2272] = 1.848 +il[2272] = -55 +im[2272] = 0.0295 +ij[2272] = 28.8 +id[2273] = "2144-06-12T03:40:45" +ik[2273] = 0.277 +il[2273] = -32 +im[2273] = 0.0711 +ij[2273] = 27.9 +id[2274] = "2144-07-04T10:22:39" +ik[2274] = 0.799 +il[2274] = 29 +im[2274] = 0.0365 +ij[2274] = 28.4 +id[2275] = "2144-07-07T20:35:22" +ik[2275] = 2.644 +il[2275] = 40 +im[2275] = 0.0811 +ij[2275] = 28.1 +id[2276] = "2144-09-06T15:09:30" +ik[2276] = 2.047 +il[2276] = -134 +im[2276] = 0.1105 +ij[2276] = 28.6 +id[2277] = "2144-09-17T07:40:19" +ik[2277] = 54.152 +il[2277] = -102 +im[2277] = 0.0443 +ij[2277] = 9 +id[2278] = "2144-10-13T01:29:56" +ik[2278] = 2.377 +il[2278] = -24 +im[2278] = 0.0681 +ij[2278] = 27.4 +id[2279] = "2144-12-06T12:44:32" +ik[2279] = 90 +il[2279] = 144 +im[2279] = 0.2325 +ij[2279] = 6 +id[2280] = "2144-12-13T03:10:13" +ik[2280] = 1.602 +il[2280] = 164 +im[2280] = 0.0719 +ij[2280] = 28.5 +id[2281] = "2144-12-13T16:36:36" +ik[2281] = 1.012 +il[2281] = 165 +im[2281] = 0.0488 +ij[2281] = 27.3 +id[2282] = "2145-01-11T04:11:47" +ik[2282] = 1.755 +il[2282] = -131 +im[2282] = 0.0955 +ij[2282] = 27.5 +id[2283] = "2145-01-14T04:52:09" +ik[2283] = 2.377 +il[2283] = -125 +im[2283] = 0.1492 +ij[2283] = 27.5 +id[2284] = "2145-01-25T03:01:17" +ik[2284] = 0 +il[2284] = -136 +im[2284] = 0.04 +ij[2284] = 13 +id[2285] = "2145-02-15T15:50:24" +ik[2285] = 8.38 +il[2285] = -137 +im[2285] = 0.5088 +ij[2285] = 11 +id[2286] = "2145-02-27T17:58:50" +ik[2286] = 0.5236 +il[2286] = -49 +im[2286] = 0.5237 +ij[2286] = 2 +id[2287] = "2145-03-08T11:12:54" +ik[2287] = 42.34 +il[2287] = -39 +im[2287] = 0.1339 +ij[2287] = 7.1585 +id[2288] = "2145-04-06T21:20:09" +ik[2288] = 2.979 +il[2288] = 20 +im[2288] = 0.143 +ij[2288] = 27.5 +id[2289] = "2145-04-09T21:50:38" +ik[2289] = 74.78 +il[2289] = 31 +im[2289] = 0.2416 +ij[2289] = 14 +id[2290] = "2145-04-28T01:22:34" +ik[2290] = 90 +il[2290] = 73 +im[2290] = 0.2045 +ij[2290] = 5 +id[2291] = "2145-06-12T10:52:10" +ik[2291] = 1.749 +il[2291] = -147 +im[2291] = 0.1037 +ij[2291] = 28.7 +id[2292] = "2145-07-09T16:57:06" +ik[2292] = 6.329 +il[2292] = -64 +im[2292] = 0.1174 +ij[2292] = 27.2 +id[2293] = "2145-07-10T23:29:40" +ik[2293] = 54.492 +il[2293] = -60 +im[2293] = 0.1089 +ij[2293] = 8 +id[2294] = "2145-07-19T05:02:15" +ik[2294] = 0.01 +il[2294] = -35 +im[2294] = 0.0502 +ij[2294] = 28.8 +id[2295] = "2145-11-30T05:18:14" +ik[2295] = 0.24 +il[2295] = -3 +im[2295] = 0.0163 +ij[2295] = 12 +id[2296] = "2146-01-17T21:17:56" +ik[2296] = 0.092 +il[2296] = -40 +im[2296] = 0.0742 +ij[2296] = 27.3 +id[2297] = "2146-01-31T18:09:12" +ik[2297] = 3.029 +il[2297] = 5 +im[2297] = 0.0439 +ij[2297] = 28.1 +id[2298] = "2146-02-04T12:44:09" +ik[2298] = 1.117 +il[2298] = 17 +im[2298] = 0.0849 +ij[2298] = 27.5 +id[2299] = "2146-02-09T02:48:02" +ik[2299] = 0.186 +il[2299] = 29 +im[2299] = 0.0615 +ij[2299] = 28.5 +id[2300] = "2146-03-20T11:35:24" +ik[2300] = 2.49 +il[2300] = 151 +im[2300] = 0.0955 +ij[2300] = 27.6 +id[2301] = "2146-04-07T10:43:49" +ik[2301] = 0.769 +il[2301] = -153 +im[2301] = 0.1019 +ij[2301] = 28.7 +id[2302] = "2146-04-27T00:29:29" +ik[2302] = 3.191 +il[2302] = -91 +im[2302] = 0.0574 +ij[2302] = 27.2 +id[2303] = "2146-05-01T00:40:48" +ik[2303] = 54.488 +il[2303] = -79 +im[2303] = 0.0463 +ij[2303] = 9 +id[2304] = "2146-05-10T07:35:54" +ik[2304] = 3.127 +il[2304] = -50 +im[2304] = 0.0888 +ij[2304] = 28.8 +id[2305] = "2146-07-09T12:42:46" +ik[2305] = 90 +il[2305] = 135 +im[2305] = 0.1418 +ij[2305] = 6 +id[2306] = "2146-08-27T21:51:05" +ik[2306] = 0 +il[2306] = -107 +im[2306] = 0.3171 +ij[2306] = 13 +id[2307] = "2146-09-16T17:35:22" +ik[2307] = 2.24 +il[2307] = -96 +im[2307] = 0.3863 +ij[2307] = 27.7 +id[2308] = "2146-09-19T01:04:48" +ik[2308] = 8.66 +il[2308] = -84 +im[2308] = 0.158 +ij[2308] = 11 +id[2309] = "2146-09-26T18:14:24" +ik[2309] = 0.5288 +il[2309] = -74 +im[2309] = 0.5289 +ij[2309] = 2 +id[2310] = "2146-10-10T05:01:41" +ik[2310] = 43.3 +il[2310] = -64 +im[2310] = 0.4215 +ij[2310] = 7.1609 +id[2311] = "2146-11-11T17:46:24" +ik[2311] = 75.83 +il[2311] = 7 +im[2311] = 0.1568 +ij[2311] = 14 +id[2312] = "2146-11-18T01:08:15" +ik[2312] = 0.033 +il[2312] = 26 +im[2312] = 0.1674 +ij[2312] = 28.4 +id[2313] = "2146-11-28T19:08:25" +ik[2313] = 90 +il[2313] = 58 +im[2313] = 0.0682 +ij[2313] = 5 +id[2314] = "2146-12-17T09:43:37" +ik[2314] = 0.084 +il[2314] = 115 +im[2314] = 0.1142 +ij[2314] = 28.6 +id[2315] = "2147-01-14T19:44:36" +ik[2315] = 3.215 +il[2315] = -156 +im[2315] = 0.0495 +ij[2315] = 27.1 +id[2316] = "2147-02-14T17:34:09" +ik[2316] = 53.731 +il[2316] = -60 +im[2316] = 0.0542 +ij[2316] = 8 +id[2317] = "2147-03-03T09:17:02" +ik[2317] = 1.191 +il[2317] = -8 +im[2317] = 0.0792 +ij[2317] = 27.3 +id[2318] = "2147-03-21T08:15:16" +ik[2318] = 0.499 +il[2318] = 48 +im[2318] = 0.0998 +ij[2318] = 27.5 +id[2319] = "2147-04-15T20:21:50" +ik[2319] = 0.021 +il[2319] = 127 +im[2319] = 0.0318 +ij[2319] = 28.5 +id[2320] = "2147-05-04T13:34:21" +ik[2320] = 3.55 +il[2320] = -179 +im[2320] = 0.0894 +ij[2320] = 27.6 +id[2321] = "2147-05-24T20:42:34" +ik[2321] = 0.653 +il[2321] = -115 +im[2321] = 0.062 +ij[2321] = 28.7 +id[2322] = "2147-07-10T03:54:43" +ik[2322] = 0.69 +il[2322] = 5 +im[2322] = 0.057 +ij[2322] = 12 +id[2323] = "2147-09-14T08:19:32" +ik[2323] = 3.896 +il[2323] = 27 +im[2323] = 0.0594 +ij[2323] = 28.1 +id[2324] = "2147-10-23T22:10:16" +ik[2324] = 2.519 +il[2324] = 147 +im[2324] = 0.0639 +ij[2324] = 28.6 +id[2325] = "2147-10-26T09:14:49" +ik[2325] = 3.417 +il[2325] = 155 +im[2325] = 0.0191 +ij[2325] = 27.4 +id[2326] = "2147-12-01T17:48:24" +ik[2326] = 53.585 +il[2326] = -95 +im[2326] = 0.1097 +ij[2326] = 9 +id[2327] = "2147-12-21T07:09:02" +ik[2327] = 0.813 +il[2327] = -34 +im[2327] = 0.1157 +ij[2327] = 27.3 +id[2328] = "2148-01-09T02:25:02" +ik[2328] = 1.143 +il[2328] = 24 +im[2328] = 0.0221 +ij[2328] = 27.5 +id[2329] = "2148-02-19T13:18:09" +ik[2329] = 90 +il[2329] = 154 +im[2329] = 0.1592 +ij[2329] = 6 +id[2330] = "2148-02-28T21:12:14" +ik[2330] = 0.74 +il[2330] = 178 +im[2330] = 0.2358 +ij[2330] = 27.6 +id[2331] = "2148-03-15T22:34:27" +ik[2331] = 5.611 +il[2331] = -145 +im[2331] = 0.283 +ij[2331] = 28.5 +id[2332] = "2148-04-05T17:46:51" +ik[2332] = 0 +il[2332] = -106 +im[2332] = 0.1351 +ij[2332] = 13 +id[2333] = "2148-04-26T07:01:43" +ik[2333] = 0.5331 +il[2333] = -117 +im[2333] = 0.5331 +ij[2333] = 2 +id[2334] = "2148-04-28T21:48:57" +ik[2334] = 5.42 +il[2334] = -118 +im[2334] = 0.4432 +ij[2334] = 11 +id[2335] = "2148-05-18T11:04:03" +ik[2335] = 4.77 +il[2335] = -37 +im[2335] = 0.2315 +ij[2335] = 27.6 +id[2336] = "2148-05-19T18:18:28" +ik[2336] = 44.02 +il[2336] = -36 +im[2336] = 0.3259 +ij[2336] = 7.164 +id[2337] = "2148-05-28T10:26:58" +ik[2337] = 0.481 +il[2337] = -25 +im[2337] = 0.1433 +ij[2337] = 28.5 +id[2338] = "2148-06-22T12:13:13" +ik[2338] = 77.77 +il[2338] = 25 +im[2338] = 0.2345 +ij[2338] = 14 +id[2339] = "2148-06-30T23:48:20" +ik[2339] = 2.965 +il[2339] = 51 +im[2339] = 0.1236 +ij[2339] = 28.7 +id[2340] = "2148-07-07T23:43:31" +ik[2340] = 90 +il[2340] = 71 +im[2340] = 0.1635 +ij[2340] = 5 +id[2341] = "2148-08-04T23:09:44" +ik[2341] = 1.111 +il[2341] = 157 +im[2341] = 0.1449 +ij[2341] = 28.8 +id[2342] = "2148-09-17T23:26:11" +ik[2342] = 54.39 +il[2342] = -69 +im[2342] = 0.1249 +ij[2342] = 8 +id[2343] = "2148-12-14T20:53:39" +ik[2343] = 0.786 +il[2343] = -156 +im[2343] = 0.0766 +ij[2343] = 28.4 +id[2344] = "2148-12-15T09:47:57" +ik[2344] = 0.999 +il[2344] = -155 +im[2344] = 0.0811 +ij[2344] = 28.6 +id[2345] = "2148-12-18T04:34:22" +ik[2345] = 4.873 +il[2345] = -146 +im[2345] = 0.0861 +ij[2345] = 27.1 +id[2346] = "2148-12-27T20:53:13" +ik[2346] = 2.098 +il[2346] = -116 +im[2346] = 0.0617 +ij[2346] = 28.1 +id[2347] = "2149-02-14T23:05:16" +ik[2347] = 1.34 +il[2347] = 14 +im[2347] = 0.0827 +ij[2347] = 12 +id[2348] = "2149-04-03T19:18:02" +ik[2348] = 2.92 +il[2348] = -26 +im[2348] = 0.0832 +ij[2348] = 27.6 +id[2349] = "2149-04-05T06:12:40" +ik[2349] = 2.707 +il[2349] = -14 +im[2349] = 0.0697 +ij[2349] = 28.1 +id[2350] = "2149-05-02T09:01:00" +ik[2350] = 0.439 +il[2350] = 64 +im[2350] = 0.0905 +ij[2350] = 28.7 +id[2351] = "2149-05-08T02:50:38" +ik[2351] = 1.092 +il[2351] = 82 +im[2351] = 0.0229 +ij[2351] = 28.5 +id[2352] = "2149-05-10T15:06:22" +ik[2352] = 3.965 +il[2352] = 89 +im[2352] = 0.031 +ij[2352] = 27.2 +id[2353] = "2149-05-28T18:43:29" +ik[2353] = 2.382 +il[2353] = 146 +im[2353] = 0.0695 +ij[2353] = 28.8 +id[2354] = "2149-07-07T17:23:33" +ik[2354] = 54.654 +il[2354] = -90 +im[2354] = 0.0086 +ij[2354] = 9 +id[2355] = "2149-09-19T11:01:57" +ik[2355] = 90 +il[2355] = 134 +im[2355] = 0.0796 +ij[2355] = 6 +id[2356] = "2149-10-10T05:11:42" +ik[2356] = 0.612 +il[2356] = -173 +im[2356] = 0.2134 +ij[2356] = 27.4 +id[2357] = "2149-11-09T12:13:40" +ik[2357] = 0 +il[2357] = 176 +im[2357] = 0.4226 +ij[2357] = 13 +id[2358] = "2149-12-01T07:24:57" +ik[2358] = 1.41 +il[2358] = -76 +im[2358] = 0.1259 +ij[2358] = 11 +id[2359] = "2149-12-07T00:07:54" +ik[2359] = 0.5493 +il[2359] = -62 +im[2359] = 0.5493 +ij[2359] = 2 +id[2360] = "2149-12-21T16:14:21" +ik[2360] = 42.17 +il[2360] = -52 +im[2360] = 0.4198 +ij[2360] = 7.1542 +id[2361] = "2150-01-15T21:56:35" +ik[2361] = 0.873 +il[2361] = 4 +im[2361] = 0.2912 +ij[2361] = 27.1 +id[2362] = "2150-01-22T04:39:08" +ik[2362] = 73.68 +il[2362] = 14 +im[2362] = 0.1365 +ij[2362] = 14 +id[2363] = "2150-01-27T11:14:47" +ik[2363] = 2.782 +il[2363] = 25 +im[2363] = 0.1393 +ij[2363] = 28.6 +id[2364] = "2150-02-10T10:33:38" +ik[2364] = 90 +il[2364] = 65 +im[2364] = 0.0989 +ij[2364] = 5 +id[2365] = "2150-03-14T22:42:22" +ik[2365] = 2.333 +il[2365] = 167 +im[2365] = 0.144 +ij[2365] = 27.3 +id[2366] = "2150-04-02T22:30:49" +ik[2366] = 0.114 +il[2366] = -134 +im[2366] = 0.1265 +ij[2366] = 27.5 +id[2367] = "2150-04-29T16:55:07" +ik[2367] = 54.115 +il[2367] = -51 +im[2367] = 0.1035 +ij[2367] = 8 +id[2368] = "2150-05-18T11:15:58" +ik[2368] = 3.86 +il[2368] = 7 +im[2368] = 0.1079 +ij[2368] = 27.6 +id[2369] = "2150-06-19T02:45:44" +ik[2369] = 0.993 +il[2369] = 103 +im[2369] = 0.0796 +ij[2369] = 28.7 +id[2370] = "2150-06-25T17:21:59" +ik[2370] = 5.566 +il[2370] = 123 +im[2370] = 0.0471 +ij[2370] = 27.2 +id[2371] = "2150-07-12T16:22:04" +ik[2371] = 0.19 +il[2371] = 175 +im[2371] = 0.0703 +ij[2371] = 27.91 +id[2372] = "2150-07-14T04:03:04" +ik[2372] = 0.858 +il[2372] = 179 +im[2372] = 0.084 +ij[2372] = 28.8 +id[2373] = "2150-07-15T09:42:20" +ik[2373] = 0.066 +il[2373] = -177 +im[2373] = 0.0897 +ij[2373] = 28.5 +id[2374] = "2150-08-08T10:39:30" +ik[2374] = 3.057 +il[2374] = -104 +im[2374] = 0.0151 +ij[2374] = 28.1 +id[2375] = "2150-09-16T05:41:16" +ik[2375] = 1.4 +il[2375] = -5 +im[2375] = 0.0733 +ij[2375] = 12 +id[2376] = "2150-11-09T09:20:08" +ik[2376] = 4.067 +il[2376] = -22 +im[2376] = 0.0595 +ij[2376] = 27.4 +id[2377] = "2150-11-14T01:05:57" +ik[2377] = 1.239 +il[2377] = -8 +im[2377] = 0.087 +ij[2377] = 28.1 +id[2378] = "2150-12-10T14:27:27" +ik[2378] = 1.742 +il[2378] = 73 +im[2378] = 0.0812 +ij[2378] = 28.6 +id[2379] = "2150-12-26T21:52:59" +ik[2379] = 0.627 +il[2379] = 123 +im[2379] = 0.0887 +ij[2379] = 28.4 +id[2380] = "2151-01-03T04:45:02" +ik[2380] = 0.432 +il[2380] = 145 +im[2380] = 0.0386 +ij[2380] = 27.3 +id[2381] = "2151-01-21T02:19:15" +ik[2381] = 1.207 +il[2381] = -160 +im[2381] = 0.0113 +ij[2381] = 27.5 +id[2382] = "2151-02-16T00:30:15" +ik[2382] = 53.818 +il[2382] = -79 +im[2382] = 0.0865 +ij[2382] = 9 +id[2383] = "2151-03-07T03:54:48" +ik[2383] = 1.69 +il[2383] = -19 +im[2383] = 0.0366 +ij[2383] = 27.6 +id[2384] = "2151-04-16T01:36:13" +ik[2384] = 2.851 +il[2384] = 106 +im[2384] = 0.1505 +ij[2384] = 28.7 +id[2385] = "2151-04-16T18:44:35" +ik[2385] = 1.643 +il[2385] = 108 +im[2385] = 0.1333 +ij[2385] = 27.2 +id[2386] = "2151-04-30T00:49:51" +ik[2386] = 90 +il[2386] = 149 +im[2386] = 0.1717 +ij[2386] = 6 +id[2387] = "2151-05-14T20:15:47" +ik[2387] = 4.562 +il[2387] = 170 +im[2387] = 0.2233 +ij[2387] = 28.8 +id[2388] = "2151-06-16T04:39:35" +ik[2388] = 0 +il[2388] = -111 +im[2388] = 0.0615 +ij[2388] = 13 +id[2389] = "2151-07-07T00:56:13" +ik[2389] = 0.5178 +il[2389] = -122 +im[2389] = 0.5178 +ij[2389] = 2 +id[2390] = "2151-07-07T22:43:40" +ik[2390] = 3.96 +il[2390] = -77 +im[2390] = 0.5058 +ij[2390] = 11 +id[2391] = "2151-07-29T03:08:38" +ik[2391] = 5.204 +il[2391] = -66 +im[2391] = 0.2561 +ij[2391] = 28.8 +id[2392] = "2151-07-30T05:44:10" +ik[2392] = 44.04 +il[2392] = -55 +im[2392] = 0.324 +ij[2392] = 7.1665 +id[2393] = "2151-09-01T20:53:56" +ik[2393] = 77.68 +il[2393] = 20 +im[2393] = 0.2397 +ij[2393] = 14 +id[2394] = "2151-09-16T08:56:21" +ik[2394] = 90 +il[2394] = 63 +im[2394] = 0.1838 +ij[2394] = 5 +id[2395] = "2151-09-16T17:21:32" +ik[2395] = 2.684 +il[2395] = 65 +im[2395] = 0.1758 +ij[2395] = 28.5 +id[2396] = "2151-11-29T10:09:49" +ik[2396] = 53.93 +il[2396] = -69 +im[2396] = 0.1113 +ij[2396] = 8 +id[2397] = "2152-01-02T04:54:22" +ik[2397] = 4.238 +il[2397] = 36 +im[2397] = 0.0443 +ij[2397] = 27.1 +id[2398] = "2152-02-02T03:19:09" +ik[2398] = 0.134 +il[2398] = 133 +im[2398] = 0.0287 +ij[2398] = 28.6 +id[2399] = "2152-02-17T01:47:42" +ik[2399] = 0.615 +il[2399] = 179 +im[2399] = 0.0447 +ij[2399] = 27.3 +id[2400] = "2152-02-27T15:13:58" +ik[2400] = 2.711 +il[2400] = -148 +im[2400] = 0.086 +ij[2400] = 28.1 +id[2401] = "2152-03-05T17:43:15" +ik[2401] = 0.8 +il[2401] = -126 +im[2401] = 0.0127 +ij[2401] = 27.5 +id[2402] = "2152-04-30T04:04:48" +ik[2402] = 0.87 +il[2402] = 21 +im[2402] = 0.0704 +ij[2402] = 12 +id[2403] = "2152-06-14T00:26:38" +ik[2403] = 1.36 +il[2403] = -25 +im[2403] = 0.0672 +ij[2403] = 28.1 +id[2404] = "2152-06-17T07:22:00" +ik[2404] = 1.858 +il[2404] = -14 +im[2404] = 0.0179 +ij[2404] = 28.8 +id[2405] = "2152-08-14T15:10:48" +ik[2405] = 0.143 +il[2405] = 166 +im[2405] = 0.0627 +ij[2405] = 28.5 +id[2406] = "2152-09-14T22:25:51" +ik[2406] = 54.176 +il[2406] = -99 +im[2406] = 0.053 +ij[2406] = 9 +id[2407] = "2152-10-12T18:05:02" +ik[2407] = 2.328 +il[2407] = -15 +im[2407] = 0.1148 +ij[2407] = 27.4 +id[2408] = "2152-12-04T00:03:52" +ik[2408] = 90 +il[2408] = 146 +im[2408] = 0.1577 +ij[2408] = 6 +id[2409] = "2152-12-13T22:37:02" +ik[2409] = 0.975 +il[2409] = 174 +im[2409] = 0.0983 +ij[2409] = 27.3 +id[2410] = "2152-12-14T10:38:47" +ik[2410] = 1.61 +il[2410] = 175 +im[2410] = 0.0735 +ij[2410] = 28.6 +id[2411] = "2153-01-13T02:30:00" +ik[2411] = 2.52 +il[2411] = -120 +im[2411] = 0.0556 +ij[2411] = 27.5 +id[2412] = "2153-01-22T20:54:23" +ik[2412] = 0 +il[2412] = -88 +im[2412] = 0.356 +ij[2412] = 13 +id[2413] = "2153-02-03T03:57:45" +ik[2413] = 0.5324 +il[2413] = -89 +im[2413] = 0.5325 +ij[2413] = 2 +id[2414] = "2153-02-13T04:37:55" +ik[2414] = 8.25 +il[2414] = -95 +im[2414] = 0.4214 +ij[2414] = 11 +id[2415] = "2153-03-06T00:17:00" +ik[2415] = 42.14 +il[2415] = -37 +im[2415] = 0.2506 +ij[2415] = 7.1583 +id[2416] = "2153-03-22T18:32:41" +ik[2416] = 5.537 +il[2416] = -5 +im[2416] = 0.1043 +ij[2416] = 28.4 +id[2417] = "2153-04-07T09:36:48" +ik[2417] = 74.53 +il[2417] = 20 +im[2417] = 0.0966 +ij[2417] = 14 +id[2418] = "2153-04-07T10:29:02" +ik[2418] = 2.711 +il[2418] = 29 +im[2418] = 0.0985 +ij[2418] = 27.5 +id[2419] = "2153-04-25T15:06:58" +ik[2419] = 90 +il[2419] = 76 +im[2419] = 0.2027 +ij[2419] = 5 +id[2420] = "2153-07-08T16:33:52" +ik[2420] = 54.487 +il[2420] = -57 +im[2420] = 0.1105 +ij[2420] = 8 +id[2421] = "2153-07-09T07:42:52" +ik[2421] = 6.299 +il[2421] = -55 +im[2421] = 0.1157 +ij[2421] = 27.2 +id[2422] = "2153-07-13T13:00:20" +ik[2422] = 1.498 +il[2422] = -42 +im[2422] = 0.1016 +ij[2422] = 28.7 +id[2423] = "2153-08-02T11:30:02" +ik[2423] = 0.293 +il[2423] = 19 +im[2423] = 0.013 +ij[2423] = 28.8 +id[2424] = "2153-10-10T01:25:23" +ik[2424] = 1.308 +il[2424] = -136 +im[2424] = 0.091 +ij[2424] = 28.1 +id[2425] = "2153-11-27T17:26:52" +ik[2425] = 0.31 +il[2425] = 0 +im[2425] = 0.0548 +ij[2425] = 12 +id[2426] = "2154-01-11T21:30:48" +ik[2426] = 2.268 +il[2426] = -48 +im[2426] = 0.0541 +ij[2426] = 28.1 +id[2427] = "2154-01-17T10:32:35" +ik[2427] = 0.102 +il[2427] = -25 +im[2427] = 0.0458 +ij[2427] = 27.3 +id[2428] = "2154-01-27T01:30:34" +ik[2428] = 0.272 +il[2428] = -2 +im[2428] = 0.0649 +ij[2428] = 28.6 +id[2429] = "2154-02-04T02:00:08" +ik[2429] = 1.12 +il[2429] = 23 +im[2429] = 0.07 +ij[2429] = 27.5 +id[2430] = "2154-03-20T01:21:54" +ik[2430] = 2.47 +il[2430] = 160 +im[2430] = 0.0666 +ij[2430] = 27.6 +id[2431] = "2154-04-26T15:19:15" +ik[2431] = 3.156 +il[2431] = -83 +im[2431] = 0.091 +ij[2431] = 27.2 +id[2432] = "2154-04-28T17:37:53" +ik[2432] = 54.471 +il[2432] = -76 +im[2432] = 0.0486 +ij[2432] = 9 +id[2433] = "2154-05-07T06:51:50" +ik[2433] = 1.652 +il[2433] = -49 +im[2433] = 0.1267 +ij[2433] = 28.7 +id[2434] = "2154-05-25T03:28:39" +ik[2434] = 3.108 +il[2434] = 6 +im[2434] = 0.1253 +ij[2434] = 28.8 +id[2435] = "2154-07-07T05:16:59" +ik[2435] = 90 +il[2435] = 138 +im[2435] = 0.2173 +ij[2435] = 6 +id[2436] = "2154-08-13T01:26:06" +ik[2436] = 3.454 +il[2436] = -137 +im[2436] = 0.0472 +ij[2436] = 27.7 +id[2437] = "2154-08-25T09:37:15" +ik[2437] = 0 +il[2437] = -116 +im[2437] = 0.0586 +ij[2437] = 13 +id[2438] = "2154-09-10T12:19:17" +ik[2438] = 3.777 +il[2438] = -97 +im[2438] = 0.2117 +ij[2438] = 27.7 +id[2439] = "2154-09-16T15:07:12" +ik[2439] = 8.69 +il[2439] = -81 +im[2439] = 0.4606 +ij[2439] = 11 +id[2440] = "2154-09-28T02:16:30" +ik[2440] = 0.5162 +il[2440] = -71 +im[2440] = 0.5162 +ij[2440] = 2 +id[2441] = "2154-10-07T21:54:53" +ik[2441] = 43.51 +il[2441] = -61 +im[2441] = 0.2517 +ij[2441] = 7.1613 +id[2442] = "2154-11-09T10:35:35" +ik[2442] = 76.04 +il[2442] = 10 +im[2442] = 0.2518 +ij[2442] = 14 +id[2443] = "2154-11-26T09:17:35" +ik[2443] = 90 +il[2443] = 61 +im[2443] = 0.2056 +ij[2443] = 5 +id[2444] = "2155-01-01T00:56:09" +ik[2444] = 1.358 +il[2444] = 171 +im[2444] = 0.0243 +ij[2444] = 28.5 +id[2445] = "2155-01-14T12:21:01" +ik[2445] = 3.264 +il[2445] = -147 +im[2445] = 0.0205 +ij[2445] = 27.1 +id[2446] = "2155-02-12T05:07:41" +ik[2446] = 53.727 +il[2446] = -57 +im[2446] = 0.049 +ij[2446] = 8 +id[2447] = "2155-03-02T23:31:41" +ik[2447] = 1.166 +il[2447] = 1 +im[2447] = 0.0438 +ij[2447] = 27.3 +id[2448] = "2155-03-20T22:09:55" +ik[2448] = 0.512 +il[2448] = 57 +im[2448] = 0.078 +ij[2448] = 27.5 +id[2449] = "2155-03-21T04:17:32" +ik[2449] = 0.689 +il[2449] = 58 +im[2449] = 0.0812 +ij[2449] = 28.6 +id[2450] = "2155-04-09T19:59:57" +ik[2450] = 0.446 +il[2450] = 118 +im[2450] = 0.094 +ij[2450] = 28.4 +id[2451] = "2155-05-04T02:55:47" +ik[2451] = 3.54 +il[2451] = -168 +im[2451] = 0.0682 +ij[2451] = 27.6 +id[2452] = "2155-07-07T22:39:21" +ik[2452] = 0.65 +il[2452] = 8 +im[2452] = 0.0854 +ij[2452] = 12 +id[2453] = "2155-08-23T12:13:14" +ik[2453] = 3.664 +il[2453] = -30 +im[2453] = 0.0831 +ij[2453] = 28.1 +id[2454] = "2155-10-25T23:21:55" +ik[2454] = 3.391 +il[2454] = 163 +im[2454] = 0.0564 +ij[2454] = 27.4 +id[2455] = "2155-11-26T05:18:05" +ik[2455] = 1.67 +il[2455] = -102 +im[2455] = 0.0334 +ij[2455] = 28.5 +id[2456] = "2155-11-29T04:35:42" +ik[2456] = 53.594 +il[2456] = -93 +im[2456] = 0.0445 +ij[2456] = 9 +id[2457] = "2155-12-20T22:55:41" +ik[2457] = 0.826 +il[2457] = -25 +im[2457] = 0.1321 +ij[2457] = 27.3 +id[2458] = "2156-01-08T19:41:01" +ik[2458] = 1.13 +il[2458] = 33 +im[2458] = 0.0837 +ij[2458] = 27.5 +id[2459] = "2156-01-25T01:11:42" +ik[2459] = 1.414 +il[2459] = 84 +im[2459] = 0.0371 +ij[2459] = 28.6 +id[2460] = "2156-02-17T03:52:05" +ik[2460] = 90 +il[2460] = 157 +im[2460] = 0.2027 +ij[2460] = 6 +id[2461] = "2156-02-29T04:03:44" +ik[2461] = 0.94 +il[2461] = 170 +im[2461] = 0.216 +ij[2461] = 27.6 +id[2462] = "2156-04-03T10:36:02" +ik[2462] = 0 +il[2462] = -88 +im[2462] = 0.3731 +ij[2462] = 13 +id[2463] = "2156-04-26T13:46:33" +ik[2463] = 5.69 +il[2463] = -80 +im[2463] = 0.5305 +ij[2463] = 11 +id[2464] = "2156-04-27T09:48:11" +ik[2464] = 0.5411 +il[2464] = -71 +im[2464] = 0.5412 +ij[2464] = 2 +id[2465] = "2156-05-15T15:48:36" +ik[2465] = 2.45 +il[2465] = -35 +im[2465] = 0.1588 +ij[2465] = 27.6 +id[2466] = "2156-05-17T09:44:37" +ik[2466] = 43.96 +il[2466] = -33 +im[2466] = 0.0272 +ij[2466] = 7.164 +id[2467] = "2156-06-20T02:46:29" +ik[2467] = 77.67 +il[2467] = 28 +im[2467] = 0.2455 +ij[2467] = 14 +id[2468] = "2156-07-05T16:13:19" +ik[2468] = 90 +il[2468] = 74 +im[2468] = 0.191 +ij[2468] = 5 +id[2469] = "2156-08-04T22:03:46" +ik[2469] = 2.405 +il[2469] = 167 +im[2469] = 0.1469 +ij[2469] = 28.7 +id[2470] = "2156-08-20T07:48:34" +ik[2470] = 0.609 +il[2470] = -147 +im[2470] = 0.1453 +ij[2470] = 28.8 +id[2471] = "2156-09-15T15:40:36" +ik[2471] = 54.401 +il[2471] = -66 +im[2471] = 0.0881 +ij[2471] = 8 +id[2472] = "2156-12-08T00:25:55" +ik[2472] = 1.579 +il[2472] = -168 +im[2472] = 0.0621 +ij[2472] = 28.1 +id[2473] = "2156-12-17T17:53:01" +ik[2473] = 4.896 +il[2473] = -137 +im[2473] = 0.0843 +ij[2473] = 27.1 +id[2474] = "2157-02-12T09:00:00" +ik[2474] = 1.31 +il[2474] = 16 +im[2474] = 0.0468 +ij[2474] = 12 +id[2475] = "2157-04-03T08:29:28" +ik[2475] = 2.91 +il[2475] = -17 +im[2475] = 0.0865 +ij[2475] = 27.6 +id[2476] = "2157-04-18T06:13:23" +ik[2476] = 0.291 +il[2476] = 29 +im[2476] = 0.0938 +ij[2476] = 28.4 +id[2477] = "2157-05-10T04:34:48" +ik[2477] = 3.942 +il[2477] = 98 +im[2477] = 0.0109 +ij[2477] = 27.2 +id[2478] = "2157-05-30T23:37:14" +ik[2478] = 1.052 +il[2478] = 163 +im[2478] = 0.0796 +ij[2478] = 28.7 +id[2479] = "2157-06-11T21:22:10" +ik[2479] = 2.319 +il[2479] = -160 +im[2479] = 0.0479 +ij[2479] = 28.8 +id[2480] = "2157-07-05T11:31:44" +ik[2480] = 54.66 +il[2480] = -87 +im[2480] = 0.091 +ij[2480] = 9 +id[2481] = "2157-09-16T23:34:41" +ik[2481] = 90 +il[2481] = 136 +im[2481] = 0.1944 +ij[2481] = 6 +id[2482] = "2157-10-11T01:29:28" +ik[2482] = 0.836 +il[2482] = -163 +im[2482] = 0.187 +ij[2482] = 27.4 +id[2483] = "2157-11-07T02:46:56" +ik[2483] = 0 +il[2483] = -111 +im[2483] = 0.1932 +ij[2483] = 13 +id[2484] = "2157-11-24T17:55:14" +ik[2484] = 0.569 +il[2484] = -90 +im[2484] = 0.5691 +ij[2484] = 2 +id[2485] = "2157-11-28T20:36:57" +ik[2485] = 1.8 +il[2485] = -76 +im[2485] = 0.3349 +ij[2485] = 11 +id[2486] = "2157-12-19T05:29:41" +ik[2486] = 42.11 +il[2486] = -65 +im[2486] = 0.4189 +ij[2486] = 7.1543 +id[2487] = "2158-01-16T20:42:48" +ik[2487] = 1.002 +il[2487] = 14 +im[2487] = 0.2747 +ij[2487] = 27.1 +id[2488] = "2158-01-19T17:42:33" +ik[2488] = 73.62 +il[2488] = 20 +im[2488] = 0.2811 +ij[2488] = 14 +id[2489] = "2158-02-07T22:48:42" +ik[2489] = 90 +il[2489] = 68 +im[2489] = 0.0809 +ij[2489] = 5 +id[2490] = "2158-03-14T16:29:01" +ik[2490] = 2.271 +il[2490] = 176 +im[2490] = 0.1035 +ij[2490] = 27.3 +id[2491] = "2158-04-02T14:36:08" +ik[2491] = 0.08 +il[2491] = -125 +im[2491] = 0.1292 +ij[2491] = 27.5 +id[2492] = "2158-04-05T15:45:04" +ik[2492] = 0.604 +il[2492] = -115 +im[2492] = 0.1058 +ij[2492] = 28.5 +id[2493] = "2158-04-27T07:26:25" +ik[2493] = 54.099 +il[2493] = -48 +im[2493] = 0.0329 +ij[2493] = 8 +id[2494] = "2158-05-05T07:45:41" +ik[2494] = 0.862 +il[2494] = -24 +im[2494] = 0.0955 +ij[2494] = 28.6 +id[2495] = "2158-05-18T01:33:24" +ik[2495] = 3.85 +il[2495] = 15 +im[2495] = 0.1101 +ij[2495] = 27.6 +id[2496] = "2158-06-25T06:45:58" +ik[2496] = 5.546 +il[2496] = 132 +im[2496] = 0.013 +ij[2496] = 27.2 +id[2497] = "2158-07-17T14:11:02" +ik[2497] = 0.355 +il[2497] = -160 +im[2497] = 0.0874 +ij[2497] = 28.7 +id[2498] = "2158-07-28T01:06:48" +ik[2498] = 0.984 +il[2498] = -129 +im[2498] = 0.0603 +ij[2498] = 28.8 +id[2499] = "2158-08-13T04:18:02" +ik[2499] = 1.195 +il[2499] = -79 +im[2499] = 0.0612 +ij[2499] = 28.1 +id[2500] = "2158-09-13T21:46:04" +ik[2500] = 1.41 +il[2500] = -3 +im[2500] = 0.0772 +ij[2500] = 12 +id[2501] = "2158-10-24T15:09:21" +ik[2501] = 1.95 +il[2501] = -60 +im[2501] = 0.0256 +ij[2501] = 28.1 +id[2502] = "2158-11-08T22:45:01" +ik[2502] = 4.048 +il[2502] = -14 +im[2502] = 0.0303 +ij[2502] = 27.4 +id[2503] = "2159-01-02T18:31:41" +ik[2503] = 0.443 +il[2503] = 154 +im[2503] = 0.0718 +ij[2503] = 27.3 +id[2504] = "2159-01-20T16:28:08" +ik[2504] = 1.208 +il[2504] = -151 +im[2504] = 0.0375 +ij[2504] = 27.5 +id[2505] = "2159-02-13T12:35:46" +ik[2505] = 53.797 +il[2505] = -77 +im[2505] = 0.1265 +ij[2505] = 9 +id[2506] = "2159-02-24T05:36:48" +ik[2506] = 1.027 +il[2506] = -43 +im[2506] = 0.0728 +ij[2506] = 28.5 +id[2507] = "2159-03-06T19:46:20" +ik[2507] = 1.65 +il[2507] = -10 +im[2507] = 0.0248 +ij[2507] = 27.6 +id[2508] = "2159-03-08T06:37:17" +ik[2508] = 2.867 +il[2508] = -5 +im[2508] = 0.0208 +ij[2508] = 28.6 +id[2509] = "2159-04-16T16:09:28" +ik[2509] = 1.56 +il[2509] = 118 +im[2509] = 0.168 +ij[2509] = 27.2 +id[2510] = "2159-04-27T18:36:36" +ik[2510] = 90 +il[2510] = 152 +im[2510] = 0.2053 +ij[2510] = 6 +id[2511] = "2159-05-13T00:20:36" +ik[2511] = 1.171 +il[2511] = -171 +im[2511] = 0.242 +ij[2511] = 28.4 +id[2512] = "2159-05-26T07:55:55" +ik[2512] = 2.77 +il[2512] = -142 +im[2512] = 0.2976 +ij[2512] = 28.7 +id[2513] = "2159-06-13T17:43:00" +ik[2513] = 0 +il[2513] = -153 +im[2513] = 0.3431 +ij[2513] = 13 +id[2514] = "2159-06-16T16:01:59" +ik[2514] = 3.677 +il[2514] = -104 +im[2514] = 0.1201 +ij[2514] = 28.8 +id[2515] = "2159-07-02T22:16:01" +ik[2515] = 3.639 +il[2515] = -87 +im[2515] = 0.171 +ij[2515] = 28.7 +id[2516] = "2159-07-05T15:34:33" +ik[2516] = 3.66 +il[2516] = -88 +im[2516] = 0.4185 +ij[2516] = 11 +id[2517] = "2159-07-08T02:21:26" +ik[2517] = 0.5053 +il[2517] = -78 +im[2517] = 0.5054 +ij[2517] = 2 +id[2518] = "2159-07-27T16:45:35" +ik[2518] = 43.96 +il[2518] = -67 +im[2518] = 0.0491 +ij[2518] = 7.1664 +id[2519] = "2159-08-18T14:07:35" +ik[2519] = 5.245 +il[2519] = 2 +im[2519] = 0.2867 +ij[2519] = 28.7 +id[2520] = "2159-08-30T13:37:19" +ik[2520] = 77.83 +il[2520] = 23 +im[2520] = 0.2263 +ij[2520] = 14 +id[2521] = "2159-09-01T17:20:15" +ik[2521] = 3.008 +il[2521] = 34 +im[2521] = 0.242 +ij[2521] = 28.8 +id[2522] = "2159-09-14T01:11:06" +ik[2522] = 90 +il[2522] = 66 +im[2522] = 0.1989 +ij[2522] = 5 +id[2523] = "2159-11-26T23:33:34" +ik[2523] = 53.945 +il[2523] = -67 +im[2523] = 0.0944 +ij[2523] = 8 +id[2524] = "2160-01-01T18:54:47" +ik[2524] = 4.267 +il[2524] = 45 +im[2524] = 0.078 +ij[2524] = 27.1 +id[2525] = "2160-02-16T15:09:28" +ik[2525] = 0.6 +il[2525] = -172 +im[2525] = 0.072 +ij[2525] = 27.3 +id[2526] = "2160-03-05T06:59:14" +ik[2526] = 0.808 +il[2526] = -118 +im[2526] = 0.0308 +ij[2526] = 27.5 +id[2527] = "2160-04-27T19:52:19" +ik[2527] = 0.91 +il[2527] = 23 +im[2527] = 0.0885 +ij[2527] = 12 +id[2528] = "2160-06-11T10:27:33" +ik[2528] = 0.087 +il[2528] = -23 +im[2528] = 0.0835 +ij[2528] = 27.9 +id[2529] = "2160-06-24T08:08:12" +ik[2529] = 0.68 +il[2529] = 18 +im[2529] = 0.0673 +ij[2529] = 28.7 +id[2530] = "2160-07-01T04:18:54" +ik[2530] = 1.78 +il[2530] = 39 +im[2530] = 0.0732 +ij[2530] = 28.8 +id[2531] = "2160-09-12T13:18:29" +ik[2531] = 54.2 +il[2531] = -96 +im[2531] = 0.118 +ij[2531] = 9 +id[2532] = "2160-10-12T10:47:14" +ik[2532] = 2.277 +il[2532] = -6 +im[2532] = 0.1431 +ij[2532] = 27.4 +id[2533] = "2160-12-01T11:22:19" +ik[2533] = 90 +il[2533] = 148 +im[2533] = 0.034 +ij[2533] = 6 +id[2534] = "2160-12-14T06:37:54" +ik[2534] = 0.926 +il[2534] = -177 +im[2534] = 0.1489 +ij[2534] = 27.3 +id[2535] = "2161-01-14T16:39:46" +ik[2535] = 3.697 +il[2535] = -110 +im[2535] = 0.0218 +ij[2535] = 27.5 +id[2536] = "2161-01-20T13:37:46" +ik[2536] = 0 +il[2536] = -101 +im[2536] = 0.4459 +ij[2536] = 13 +id[2537] = "2161-02-04T08:09:13" +ik[2537] = 0.5374 +il[2537] = -112 +im[2537] = 0.5375 +ij[2537] = 2 +id[2538] = "2161-02-10T17:22:33" +ik[2538] = 8.1 +il[2538] = -113 +im[2538] = 0.0352 +ij[2538] = 11 +id[2539] = "2161-03-03T12:44:21" +ik[2539] = 41.96 +il[2539] = -79 +im[2539] = 0.4485 +ij[2539] = 7.158 +id[2540] = "2161-04-04T21:36:07" +ik[2540] = 74.33 +il[2540] = 22 +im[2540] = 0.1277 +ij[2540] = 14 +id[2541] = "2161-04-07T20:41:27" +ik[2541] = 2.477 +il[2541] = 33 +im[2541] = 0.0475 +ij[2541] = 27.5 +id[2542] = "2161-04-23T04:46:56" +ik[2542] = 90 +il[2542] = 78 +im[2542] = 0.0761 +ij[2542] = 5 +id[2543] = "2161-05-29T18:34:21" +ik[2543] = 4.18 +il[2543] = -169 +im[2543] = 0.1437 +ij[2543] = 27.6 +id[2544] = "2161-06-17T03:43:20" +ik[2544] = 0.205 +il[2544] = -113 +im[2544] = 0.0836 +ij[2544] = 28.6 +id[2545] = "2161-07-04T06:56:52" +ik[2545] = 0.851 +il[2545] = -60 +im[2545] = 0.0096 +ij[2545] = 28.5 +id[2546] = "2161-07-06T09:38:03" +ik[2546] = 54.481 +il[2546] = -54 +im[2546] = 0.043 +ij[2546] = 8 +id[2547] = "2161-07-08T22:29:31" +ik[2547] = 6.269 +il[2547] = -46 +im[2547] = 0.0926 +ij[2547] = 27.2 +id[2548] = "2161-08-10T22:34:45" +ik[2548] = 0.642 +il[2548] = 54 +im[2548] = 0.1051 +ij[2548] = 28.7 +id[2549] = "2161-08-16T14:24:34" +ik[2549] = 0.499 +il[2549] = 71 +im[2549] = 0.0598 +ij[2549] = 28.8 +id[2550] = "2161-09-20T16:46:42" +ik[2550] = 0.821 +il[2550] = 179 +im[2550] = 0.0449 +ij[2550] = 28.4 +id[2551] = "2161-09-21T07:02:55" +ik[2551] = 1.489 +il[2551] = -179 +im[2551] = 0.0547 +ij[2551] = 28.1 +id[2552] = "2161-10-06T01:08:24" +ik[2552] = 1.262 +il[2552] = -133 +im[2552] = 0.0475 +ij[2552] = 28.1 +id[2553] = "2161-11-25T05:41:16" +ik[2553] = 0.37 +il[2553] = 2 +im[2553] = 0.0894 +ij[2553] = 12 +id[2554] = "2162-01-16T23:44:07" +ik[2554] = 0.113 +il[2554] = -23 +im[2554] = 0.0125 +ij[2554] = 27.3 +id[2555] = "2162-02-03T15:19:14" +ik[2555] = 1.123 +il[2555] = 31 +im[2555] = 0.0449 +ij[2555] = 27.5 +id[2556] = "2162-03-19T15:05:11" +ik[2556] = 2.45 +il[2556] = 168 +im[2556] = 0.0246 +ij[2556] = 27.6 +id[2557] = "2162-04-19T04:09:59" +ik[2557] = 2.941 +il[2557] = -96 +im[2557] = 0.0328 +ij[2557] = 28.6 +id[2558] = "2162-04-26T06:16:07" +ik[2558] = 3.12 +il[2558] = -74 +im[2558] = 0.1105 +ij[2558] = 27.2 +id[2559] = "2162-04-26T10:27:51" +ik[2559] = 54.453 +il[2559] = -73 +im[2559] = 0.1094 +ij[2559] = 9 +id[2560] = "2162-05-26T14:16:30" +ik[2560] = 1.981 +il[2560] = 20 +im[2560] = 0.1269 +ij[2560] = 28.5 +id[2561] = "2162-06-05T20:47:19" +ik[2561] = 1.748 +il[2561] = 52 +im[2561] = 0.1398 +ij[2561] = 28.7 +id[2562] = "2162-06-09T15:09:12" +ik[2562] = 2.629 +il[2562] = 64 +im[2562] = 0.1669 +ij[2562] = 28.8 +id[2563] = "2162-07-04T22:00:03" +ik[2563] = 90 +il[2563] = 141 +im[2563] = 0.1648 +ij[2563] = 6 +id[2564] = "2162-08-15T17:40:42" +ik[2564] = 2.908 +il[2564] = -126 +im[2564] = 0.1713 +ij[2564] = 27.7 +id[2565] = "2162-08-22T21:36:35" +ik[2565] = 0 +il[2565] = -137 +im[2565] = 0.3308 +ij[2565] = 13 +id[2566] = "2162-09-14T05:12:28" +ik[2566] = 8.7 +il[2566] = -138 +im[2566] = 0.4592 +ij[2566] = 11 +id[2567] = "2162-09-15T21:14:04" +ik[2567] = 0.5023 +il[2567] = -127 +im[2567] = 0.5023 +ij[2567] = 2 +id[2568] = "2162-10-06T02:45:11" +ik[2568] = 44.21 +il[2568] = -85 +im[2568] = 0.0413 +ij[2568] = 7.1615 +id[2569] = "2162-11-07T03:32:55" +ik[2569] = 76.25 +il[2569] = 13 +im[2569] = 0.1794 +ij[2569] = 14 +id[2570] = "2162-11-23T23:28:30" +ik[2570] = 90 +il[2570] = 63 +im[2570] = 0.2127 +ij[2570] = 5 +id[2571] = "2163-01-14T04:45:54" +ik[2571] = 3.311 +il[2571] = -138 +im[2571] = 0.0694 +ij[2571] = 27.1 +id[2572] = "2163-02-09T16:41:12" +ik[2572] = 53.723 +il[2572] = -55 +im[2572] = 0.118 +ij[2572] = 8 +id[2573] = "2163-03-02T13:46:47" +ik[2573] = 1.142 +il[2573] = 10 +im[2573] = 0.0098 +ij[2573] = 27.3 +id[2574] = "2163-03-20T12:01:01" +ik[2574] = 0.526 +il[2574] = 65 +im[2574] = 0.044 +ij[2574] = 27.5 +id[2575] = "2163-04-12T17:00:14" +ik[2575] = 0.755 +il[2575] = 137 +im[2575] = 0.0832 +ij[2575] = 28.1 +id[2576] = "2163-05-03T16:09:08" +ik[2576] = 3.54 +il[2576] = -159 +im[2576] = 0.0332 +ij[2576] = 27.6 +id[2577] = "2163-05-23T16:33:44" +ik[2577] = 0.363 +il[2577] = -98 +im[2577] = 0.0849 +ij[2577] = 28.1 +id[2578] = "2163-07-05T17:24:00" +ik[2578] = 0.6 +il[2578] = 11 +im[2578] = 0.0628 +ij[2578] = 12 +id[2579] = "2163-10-24T02:46:10" +ik[2579] = 0.439 +il[2579] = 167 +im[2579] = 0.1008 +ij[2579] = 28.4 +id[2580] = "2163-10-25T13:32:07" +ik[2580] = 3.365 +il[2580] = 172 +im[2580] = 0.0868 +ij[2580] = 27.4 +id[2581] = "2163-11-26T15:26:33" +ik[2581] = 53.604 +il[2581] = -90 +im[2581] = 0.057 +ij[2581] = 9 +id[2582] = "2163-12-20T14:49:27" +ik[2582] = 0.838 +il[2582] = -16 +im[2582] = 0.1268 +ij[2582] = 27.3 +id[2583] = "2164-01-08T13:07:40" +ik[2583] = 1.117 +il[2583] = 43 +im[2583] = 0.1339 +ij[2583] = 27.5 +id[2584] = "2164-02-14T18:17:09" +ik[2584] = 90 +il[2584] = 159 +im[2584] = 0.1053 +ij[2584] = 6 +id[2585] = "2164-02-29T12:48:00" +ik[2585] = 1.16 +il[2585] = -164 +im[2585] = 0.1794 +ij[2585] = 27.6 +id[2586] = "2164-04-01T03:33:22" +ik[2586] = 0 +il[2586] = -101 +im[2586] = 0.4255 +ij[2586] = 13 +id[2587] = "2164-04-24T05:35:31" +ik[2587] = 5.95 +il[2587] = -65 +im[2587] = 0.301 +ij[2587] = 11 +id[2588] = "2164-04-28T13:17:51" +ik[2588] = 0.537 +il[2588] = -55 +im[2588] = 0.5371 +ij[2588] = 2 +id[2589] = "2164-05-11T17:54:53" +ik[2589] = 0.2 +il[2589] = -44 +im[2589] = 0.4249 +ij[2589] = 27.6 +id[2590] = "2164-05-15T04:37:57" +ik[2590] = 44.04 +il[2590] = -34 +im[2590] = 0.2785 +ij[2590] = 7.1639 +id[2591] = "2164-06-17T17:20:40" +ik[2591] = 77.57 +il[2591] = 30 +im[2591] = 0.1019 +ij[2591] = 14 +id[2592] = "2164-07-03T08:38:41" +ik[2592] = 90 +il[2592] = 77 +im[2592] = 0.0876 +ij[2592] = 5 +id[2593] = "2164-07-27T16:30:00" +ik[2593] = 1.175 +il[2593] = 152 +im[2593] = 0.1068 +ij[2593] = 28.6 +id[2594] = "2164-09-03T05:00:23" +ik[2594] = 1.042 +il[2594] = -94 +im[2594] = 0.1082 +ij[2594] = 28.7 +id[2595] = "2164-09-04T03:54:08" +ik[2595] = 0.177 +il[2595] = -91 +im[2595] = 0.118 +ij[2595] = 28.8 +id[2596] = "2164-09-13T08:02:08" +ik[2596] = 54.413 +il[2596] = -64 +im[2596] = 0.0083 +ij[2596] = 8 +id[2597] = "2164-10-11T10:29:34" +ik[2597] = 0.15 +il[2597] = 23 +im[2597] = 0.0473 +ij[2597] = 28.5 +id[2598] = "2164-11-21T04:25:32" +ik[2598] = 1.499 +il[2598] = 150 +im[2598] = 0.0872 +ij[2598] = 28.1 +id[2599] = "2164-12-06T01:09:59" +ik[2599] = 0.832 +il[2599] = -164 +im[2599] = 0.0948 +ij[2599] = 28.1 +id[2600] = "2164-12-17T07:07:14" +ik[2600] = 4.919 +il[2600] = -129 +im[2600] = 0.0694 +ij[2600] = 27.1 +id[2601] = "2165-02-09T18:50:24" +ik[2601] = 1.28 +il[2601] = 18 +im[2601] = 0.0276 +ij[2601] = 12 +id[2602] = "2165-04-02T21:37:48" +ik[2602] = 2.9 +il[2602] = -9 +im[2602] = 0.0749 +ij[2602] = 27.6 +id[2603] = "2165-05-09T18:07:13" +ik[2603] = 3.919 +il[2603] = 107 +im[2603] = 0.0477 +ij[2603] = 27.2 +id[2604] = "2165-05-30T20:35:39" +ik[2604] = 2.08 +il[2604] = 173 +im[2604] = 0.0587 +ij[2604] = 28.6 +id[2605] = "2165-05-30T20:54:31" +ik[2605] = 5.9 +il[2605] = 173 +im[2605] = 0.0589 +ij[2605] = 28.1 +id[2606] = "2165-06-26T05:59:51" +ik[2606] = 1.949 +il[2606] = -106 +im[2606] = 0.0178 +ij[2606] = 28.8 +id[2607] = "2165-06-27T12:32:12" +ik[2607] = 1.117 +il[2607] = -102 +im[2607] = 0.0188 +ij[2607] = 28.7 +id[2608] = "2165-07-03T05:43:29" +ik[2608] = 54.664 +il[2608] = -84 +im[2608] = 0.1156 +ij[2608] = 9 +id[2609] = "2165-09-09T20:28:19" +ik[2609] = 3.241 +il[2609] = 124 +im[2609] = 0.0239 +ij[2609] = 28.5 +id[2610] = "2165-09-14T12:18:03" +ik[2610] = 90 +il[2610] = 139 +im[2610] = 0.1717 +ij[2610] = 6 +id[2611] = "2165-10-12T03:47:13" +ik[2611] = 1.083 +il[2611] = 170 +im[2611] = 0.1833 +ij[2611] = 27.4 +id[2612] = "2165-11-04T17:21:07" +ik[2612] = 0 +il[2612] = -108 +im[2612] = 0.1844 +ij[2612] = 13 +id[2613] = "2165-11-25T21:01:35" +ik[2613] = 0.5804 +il[2613] = -84 +im[2613] = 0.5804 +ij[2613] = 2 +id[2614] = "2165-11-26T09:50:24" +ik[2614] = 2.19 +il[2614] = -62 +im[2614] = 0.5762 +ij[2614] = 11 +id[2615] = "2165-11-30T23:37:53" +ik[2615] = 3.117 +il[2615] = -58 +im[2615] = 0.2364 +ij[2615] = 27.4 +id[2616] = "2165-12-16T18:46:50" +ik[2616] = 42.06 +il[2616] = -48 +im[2616] = 0.1346 +ij[2616] = 7.1543 +id[2617] = "2166-01-17T06:40:34" +ik[2617] = 73.56 +il[2617] = 11 +im[2617] = 0.238 +ij[2617] = 14 +id[2618] = "2166-01-17T14:14:20" +ik[2618] = 1.13 +il[2618] = 22 +im[2618] = 0.2473 +ij[2618] = 27.1 +id[2619] = "2166-02-05T11:07:17" +ik[2619] = 90 +il[2619] = 70 +im[2619] = 0.195 +ij[2619] = 5 +id[2620] = "2166-02-06T09:45:21" +ik[2620] = 3.761 +il[2620] = 73 +im[2620] = 0.174 +ij[2620] = 28.4 +id[2621] = "2166-03-14T10:01:27" +ik[2621] = 2.212 +il[2621] = -175 +im[2621] = 0.0484 +ij[2621] = 27.3 +id[2622] = "2166-04-02T06:34:20" +ik[2622] = 0.051 +il[2622] = -116 +im[2622] = 0.1134 +ij[2622] = 27.5 +id[2623] = "2166-04-24T21:47:03" +ik[2623] = 54.081 +il[2623] = -46 +im[2623] = 0.0652 +ij[2623] = 8 +id[2624] = "2166-05-17T15:44:45" +ik[2624] = 3.84 +il[2624] = 24 +im[2624] = 0.0931 +ij[2624] = 27.6 +id[2625] = "2166-06-24T20:06:24" +ik[2625] = 5.526 +il[2625] = 140 +im[2625] = 0.0266 +ij[2625] = 27.2 +id[2626] = "2166-06-25T09:14:32" +ik[2626] = 2.715 +il[2626] = 142 +im[2626] = 0.0162 +ij[2626] = 28.1 +id[2627] = "2166-07-14T09:13:06" +ik[2627] = 0.846 +il[2627] = -160 +im[2627] = 0.0447 +ij[2627] = 28.1 +id[2628] = "2166-07-22T06:55:17" +ik[2628] = 0.487 +il[2628] = -136 +im[2628] = 0.0636 +ij[2628] = 28.6 +id[2629] = "2166-08-10T22:44:32" +ik[2629] = 0.964 +il[2629] = -76 +im[2629] = 0.0032 +ij[2629] = 28.8 +id[2630] = "2166-09-11T13:58:04" +ik[2630] = 1.41 +il[2630] = 0 +im[2630] = 0.03 +ij[2630] = 12 +id[2631] = "2166-11-08T12:07:40" +ik[2631] = 4.03 +il[2631] = -5 +im[2631] = 0.0095 +ij[2631] = 27.4 +id[2632] = "2166-11-13T15:27:04" +ik[2632] = 0.925 +il[2632] = 11 +im[2632] = 0.0805 +ij[2632] = 28.5 +id[2633] = "2167-01-02T08:25:00" +ik[2633] = 0.455 +il[2633] = 162 +im[2633] = 0.0933 +ij[2633] = 27.3 +id[2634] = "2167-01-20T06:44:07" +ik[2634] = 1.208 +il[2634] = -142 +im[2634] = 0.0764 +ij[2634] = 27.5 +id[2635] = "2167-02-11T00:34:11" +ik[2635] = 53.776 +il[2635] = -74 +im[2635] = 0.084 +ij[2635] = 9 +id[2636] = "2167-03-06T11:45:39" +ik[2636] = 1.61 +il[2636] = -1 +im[2636] = 0.0782 +ij[2636] = 27.6 +id[2637] = "2167-04-16T14:09:53" +ik[2637] = 1.473 +il[2637] = 127 +im[2637] = 0.1838 +ij[2637] = 27.2 +id[2638] = "2167-04-25T12:19:49" +ik[2638] = 90 +il[2638] = 155 +im[2638] = 0.1166 +ij[2638] = 6 +id[2639] = "2167-06-11T06:41:01" +ik[2639] = 0 +il[2639] = -106 +im[2639] = 0.3698 +ij[2639] = 13 +id[2640] = "2167-06-25T18:07:22" +ik[2640] = 0.5124 +il[2640] = -88 +im[2640] = 0.5125 +ij[2640] = 2 +id[2641] = "2167-07-03T08:32:38" +ik[2641] = 3.36 +il[2641] = -71 +im[2641] = 0.0844 +ij[2641] = 11 +id[2642] = "2167-07-25T07:24:40" +ik[2642] = 44.03 +il[2642] = -60 +im[2642] = 0.3145 +ij[2642] = 7.1663 +id[2643] = "2167-08-28T06:18:24" +ik[2643] = 77.98 +il[2643] = 26 +im[2643] = 0.0755 +ij[2643] = 14 +id[2644] = "2167-09-03T21:29:13" +ik[2644] = 3.26 +il[2644] = 46 +im[2644] = 0.2163 +ij[2644] = 28.6 +id[2645] = "2167-09-11T17:25:52" +ik[2645] = 90 +il[2645] = 69 +im[2645] = 0.0873 +ij[2645] = 5 +id[2646] = "2167-09-20T04:04:13" +ik[2646] = 1.625 +il[2646] = 95 +im[2646] = 0.1725 +ij[2646] = 28.8 +id[2647] = "2167-09-24T10:13:52" +ik[2647] = 1.943 +il[2647] = 108 +im[2647] = 0.038 +ij[2647] = 28.7 +id[2648] = "2167-11-24T13:07:59" +ik[2648] = 53.961 +il[2648] = -65 +im[2648] = 0.01 +ij[2648] = 8 +id[2649] = "2168-01-01T08:54:20" +ik[2649] = 4.295 +il[2649] = 53 +im[2649] = 0.0988 +ij[2649] = 27.1 +id[2650] = "2168-01-20T16:39:56" +ik[2650] = 2.536 +il[2650] = 114 +im[2650] = 0.0497 +ij[2650] = 28.1 +id[2651] = "2168-01-21T12:00:43" +ik[2651] = 0.261 +il[2651] = 116 +im[2651] = 0.0339 +ij[2651] = 28.5 +id[2652] = "2168-02-16T04:31:13" +ik[2652] = 0.586 +il[2652] = -164 +im[2652] = 0.0862 +ij[2652] = 27.3 +id[2653] = "2168-02-17T02:30:37" +ik[2653] = 1.107 +il[2653] = -161 +im[2653] = 0.0796 +ij[2653] = 28.4 +id[2654] = "2168-02-18T17:13:20" +ik[2654] = 3.981 +il[2654] = -156 +im[2654] = 0.0602 +ij[2654] = 28.1 +id[2655] = "2168-03-04T20:11:40" +ik[2655] = 0.815 +il[2655] = -109 +im[2655] = 0.065 +ij[2655] = 27.5 +id[2656] = "2168-04-25T11:29:45" +ik[2656] = 0.95 +il[2656] = 26 +im[2656] = 0.0519 +ij[2656] = 12 +id[2657] = "2168-06-11T00:08:29" +ik[2657] = 0.288 +il[2657] = -14 +im[2657] = 0.0706 +ij[2657] = 27.9 +id[2658] = "2168-07-11T22:13:52" +ik[2658] = 0.75 +il[2658] = 82 +im[2658] = 0.0869 +ij[2658] = 28.6 +id[2659] = "2168-07-15T05:02:49" +ik[2659] = 1.466 +il[2659] = 92 +im[2659] = 0.0959 +ij[2659] = 28.8 +id[2660] = "2168-07-20T22:40:30" +ik[2660] = 0.775 +il[2660] = 110 +im[2660] = 0.0264 +ij[2660] = 28.7 +id[2661] = "2168-07-21T13:25:58" +ik[2661] = 1.782 +il[2661] = 112 +im[2661] = 0.0151 +ij[2661] = 28.1 +id[2662] = "2168-09-10T04:25:20" +ik[2662] = 54.222 +il[2662] = -94 +im[2662] = 0.1115 +ij[2662] = 9 +id[2663] = "2168-10-12T03:41:53" +ik[2663] = 2.225 +il[2663] = 3 +im[2663] = 0.1477 +ij[2663] = 27.4 +id[2664] = "2168-11-28T22:33:41" +ik[2664] = 90 +il[2664] = 151 +im[2664] = 0.1853 +ij[2664] = 6 +id[2665] = "2168-12-14T16:59:40" +ik[2665] = 0.862 +il[2665] = 170 +im[2665] = 0.1891 +ij[2665] = 27.3 +id[2666] = "2168-12-24T11:20:32" +ik[2666] = 0.386 +il[2666] = -146 +im[2666] = 0.3077 +ij[2666] = 28.5 +id[2667] = "2169-01-14T20:08:38" +ik[2667] = 5.406 +il[2667] = -104 +im[2667] = 0.0916 +ij[2667] = 27.5 +id[2668] = "2169-01-18T06:18:51" +ik[2668] = 0 +il[2668] = -157 +im[2668] = 0.2727 +ij[2668] = 13 +id[2669] = "2169-02-05T06:14:01" +ik[2669] = 0.5363 +il[2669] = -78 +im[2669] = 0.5364 +ij[2669] = 2 +id[2670] = "2169-02-08T06:04:19" +ik[2670] = 7.94 +il[2670] = -75 +im[2670] = 0.3977 +ij[2670] = 11 +id[2671] = "2169-03-01T08:24:26" +ik[2671] = 42.09 +il[2671] = -30 +im[2671] = 0.3833 +ij[2671] = 7.1578 +id[2672] = "2169-04-02T09:15:11" +ik[2672] = 74.12 +il[2672] = 34 +im[2672] = 0.2574 +ij[2672] = 14 +id[2673] = "2169-04-08T04:32:33" +ik[2673] = 2.27 +il[2673] = 47 +im[2673] = 0.0253 +ij[2673] = 27.5 +id[2674] = "2169-04-20T18:18:56" +ik[2674] = 90 +il[2674] = 80 +im[2674] = 0.1054 +ij[2674] = 5 +id[2675] = "2169-05-29T12:06:27" +ik[2675] = 4.17 +il[2675] = -160 +im[2675] = 0.1389 +ij[2675] = 27.6 +id[2676] = "2169-07-04T02:38:41" +ik[2676] = 54.474 +il[2676] = -51 +im[2676] = 0.0476 +ij[2676] = 8 +id[2677] = "2169-07-08T13:08:37" +ik[2677] = 6.239 +il[2677] = -37 +im[2677] = 0.0541 +ij[2677] = 27.2 +id[2678] = "2169-08-30T15:40:27" +ik[2678] = 0.577 +il[2678] = 124 +im[2678] = 0.0786 +ij[2678] = 28.8 +id[2679] = "2169-09-02T11:24:43" +ik[2679] = 4.337 +il[2679] = 133 +im[2679] = 0.0392 +ij[2679] = 28.1 +id[2680] = "2169-09-02T16:58:30" +ik[2680] = 0.358 +il[2680] = 134 +im[2680] = 0.0354 +ij[2680] = 28.6 +id[2681] = "2169-09-06T10:00:11" +ik[2681] = 0.166 +il[2681] = 145 +im[2681] = 0.0319 +ij[2681] = 28.7 +id[2682] = "2169-11-22T18:04:19" +ik[2682] = 0.43 +il[2682] = 12 +im[2682] = 0.0648 +ij[2682] = 12 +id[2683] = "2170-01-16T12:58:46" +ik[2683] = 0.123 +il[2683] = -14 +im[2683] = 0.0323 +ij[2683] = 27.3 +id[2684] = "2170-02-03T04:38:46" +ik[2684] = 1.126 +il[2684] = 40 +im[2684] = 0.0113 +ij[2684] = 27.5 +id[2685] = "2170-02-14T19:05:22" +ik[2685] = 0.038 +il[2685] = 76 +im[2685] = 0.0535 +ij[2685] = 28.5 +id[2686] = "2170-02-21T20:43:52" +ik[2686] = 0.874 +il[2686] = 98 +im[2686] = 0.0674 +ij[2686] = 28.4 +id[2687] = "2170-03-19T04:57:19" +ik[2687] = 2.43 +il[2687] = 177 +im[2687] = 0.0224 +ij[2687] = 27.6 +id[2688] = "2170-04-24T03:10:42" +ik[2688] = 54.434 +il[2688] = -70 +im[2688] = 0.0958 +ij[2688] = 9 +id[2689] = "2170-04-25T21:16:33" +ik[2689] = 3.084 +il[2689] = -65 +im[2689] = 0.1125 +ij[2689] = 27.2 +id[2690] = "2170-06-26T06:07:12" +ik[2690] = 1.51 +il[2690] = 124 +im[2690] = 0.18 +ij[2690] = 28.8 +id[2691] = "2170-07-02T14:45:46" +ik[2691] = 90 +il[2691] = 143 +im[2691] = 0.0187 +ij[2691] = 6 +id[2692] = "2170-07-07T06:12:57" +ik[2692] = 0.132 +il[2692] = 156 +im[2692] = 0.1848 +ij[2692] = 28.7 +id[2693] = "2170-07-12T21:25:12" +ik[2693] = 1.161 +il[2693] = 170 +im[2693] = 0.1975 +ij[2693] = 28.6 +id[2694] = "2170-08-20T09:15:38" +ik[2694] = 0 +il[2694] = -111 +im[2694] = 0.4048 +ij[2694] = 13 +id[2695] = "2170-08-23T22:50:52" +ik[2695] = 3.14 +il[2695] = -106 +im[2695] = 0.3742 +ij[2695] = 27.7 +id[2696] = "2170-09-04T14:01:48" +ik[2696] = 0.507 +il[2696] = -93 +im[2696] = 0.5071 +ij[2696] = 2 +id[2697] = "2170-09-11T19:22:04" +ik[2697] = 8.7 +il[2697] = -76 +im[2697] = 0.1738 +ij[2697] = 11 +id[2698] = "2170-10-03T09:19:13" +ik[2698] = 44 +il[2698] = -66 +im[2698] = 0.3756 +ij[2698] = 7.1618 +id[2699] = "2170-11-04T20:18:00" +ik[2699] = 76.46 +il[2699] = 24 +im[2699] = 0.0287 +ij[2699] = 14 +id[2700] = "2170-11-21T13:46:31" +ik[2700] = 90 +il[2700] = 66 +im[2700] = 0.0898 +ij[2700] = 5 +id[2701] = "2171-01-13T21:03:13" +ik[2701] = 3.358 +il[2701] = -129 +im[2701] = 0.1154 +ij[2701] = 27.1 +id[2702] = "2171-02-07T04:11:10" +ik[2702] = 53.72 +il[2702] = -53 +im[2702] = 0.1094 +ij[2702] = 8 +id[2703] = "2171-03-02T04:01:26" +ik[2703] = 1.118 +il[2703] = 19 +im[2703] = 0.041 +ij[2703] = 27.3 +id[2704] = "2171-03-20T01:48:33" +ik[2704] = 0.538 +il[2704] = 74 +im[2704] = 0.007 +ij[2704] = 27.5 +id[2705] = "2171-03-23T22:23:39" +ik[2705] = 0.967 +il[2705] = 86 +im[2705] = 0.0758 +ij[2705] = 28.1 +id[2706] = "2171-04-21T08:36:14" +ik[2706] = 2.663 +il[2706] = 173 +im[2706] = 0.048 +ij[2706] = 28.1 +id[2707] = "2171-04-21T13:25:06" +ik[2707] = 0.014 +il[2707] = 174 +im[2707] = 0.0515 +ij[2707] = 28.5 +id[2708] = "2171-05-03T05:30:12" +ik[2708] = 3.53 +il[2708] = -151 +im[2708] = 0.0073 +ij[2708] = 27.6 +id[2709] = "2171-07-03T12:05:45" +ik[2709] = 0.55 +il[2709] = 14 +im[2709] = 0.0059 +ij[2709] = 12 +id[2710] = "2171-08-04T22:32:11" +ik[2710] = 1.092 +il[2710] = -59 +im[2710] = 0.0426 +ij[2710] = 28.8 +id[2711] = "2171-08-14T20:18:40" +ik[2711] = 0.601 +il[2711] = -37 +im[2711] = 0.0343 +ij[2711] = 28.7 +id[2712] = "2171-08-25T04:09:59" +ik[2712] = 0.595 +il[2712] = -3 +im[2712] = 0.0927 +ij[2712] = 28.6 +id[2713] = "2171-10-10T07:35:19" +ik[2713] = 5.855 +il[2713] = 136 +im[2713] = 0.0942 +ij[2713] = 28.1 +id[2714] = "2171-10-25T03:44:33" +ik[2714] = 3.338 +il[2714] = 180 +im[2714] = 0.1021 +ij[2714] = 27.4 +id[2715] = "2171-11-24T02:20:58" +ik[2715] = 53.616 +il[2715] = -88 +im[2715] = 0.1136 +ij[2715] = 9 +id[2716] = "2171-12-20T06:49:53" +ik[2716] = 0.851 +il[2716] = -7 +im[2716] = 0.1025 +ij[2716] = 27.3 +id[2717] = "2172-01-08T06:51:39" +ik[2717] = 1.101 +il[2717] = 52 +im[2717] = 0.1623 +ij[2717] = 27.5 +id[2718] = "2172-02-12T08:35:10" +ik[2718] = 90 +il[2718] = 162 +im[2718] = 0.0655 +ij[2718] = 6 +id[2719] = "2172-03-01T00:13:04" +ik[2719] = 1.41 +il[2719] = -155 +im[2719] = 0.1232 +ij[2719] = 27.6 +id[2720] = "2172-03-09T05:31:14" +ik[2720] = 4.489 +il[2720] = -137 +im[2720] = 0.2601 +ij[2720] = 28.4 +id[2721] = "2172-03-29T20:18:27" +ik[2721] = 0 +il[2721] = -166 +im[2721] = 0.2168 +ij[2721] = 13 +id[2722] = "2172-04-21T21:20:09" +ik[2722] = 6.2 +il[2722] = -50 +im[2722] = 0.1451 +ij[2722] = 11 +id[2723] = "2172-04-29T19:18:52" +ik[2723] = 0.5199 +il[2723] = -43 +im[2723] = 0.52 +ij[2723] = 2 +id[2724] = "2172-05-04T09:12:57" +ik[2724] = 1.69 +il[2724] = -38 +im[2724] = 0.2665 +ij[2724] = 27.6 +id[2725] = "2172-05-11T05:50:38" +ik[2725] = 5.262 +il[2725] = -30 +im[2725] = 0.376 +ij[2725] = 28.4 +id[2726] = "2172-05-12T19:21:01" +ik[2726] = 43.96 +il[2726] = -27 +im[2726] = 0.4051 +ij[2726] = 7.1637 +id[2727] = "2172-05-20T08:11:46" +ik[2727] = 2.42 +il[2727] = -16 +im[2727] = 0.0533 +ij[2727] = 27.6 +id[2728] = "2172-06-14T15:45:04" +ik[2728] = 1.347 +il[2728] = 31 +im[2728] = 0.1327 +ij[2728] = 28.5 +id[2729] = "2172-06-15T07:32:49" +ik[2729] = 77.47 +il[2729] = 39 +im[2729] = 0.1018 +ij[2729] = 14 +id[2730] = "2172-07-01T00:56:59" +ik[2730] = 90 +il[2730] = 80 +im[2730] = 0.0784 +ij[2730] = 5 +id[2731] = "2172-09-11T00:27:12" +ik[2731] = 54.423 +il[2731] = -61 +im[2731] = 0.091 +ij[2731] = 8 +id[2732] = "2172-09-18T15:41:11" +ik[2732] = 0.116 +il[2732] = -37 +im[2732] = 0.0728 +ij[2732] = 28.8 +id[2733] = "2172-09-29T20:31:20" +ik[2733] = 0.126 +il[2733] = -3 +im[2733] = 0.0075 +ij[2733] = 28.7 +id[2734] = "2172-10-16T03:29:39" +ik[2734] = 0.87 +il[2734] = 47 +im[2734] = 0.014 +ij[2734] = 28.6 +id[2735] = "2172-12-16T20:24:33" +ik[2735] = 4.941 +il[2735] = -120 +im[2735] = 0.0429 +ij[2735] = 27.1 +id[2736] = "2173-02-07T04:35:02" +ik[2736] = 1.25 +il[2736] = 20 +im[2736] = 0.0792 +ij[2736] = 12 +id[2737] = "2173-04-02T10:46:38" +ik[2737] = 2.88 +il[2737] = 0 +im[2737] = 0.0517 +ij[2737] = 27.6 +id[2738] = "2173-05-06T12:09:21" +ik[2738] = 2.625 +il[2738] = 107 +im[2738] = 0.0925 +ij[2738] = 28.1 +id[2739] = "2173-05-09T07:39:13" +ik[2739] = 3.896 +il[2739] = 115 +im[2739] = 0.0774 +ij[2739] = 27.2 +id[2740] = "2173-05-14T04:22:39" +ik[2740] = 1.234 +il[2740] = 131 +im[2740] = 0.0076 +ij[2740] = 28.5 +id[2741] = "2173-06-30T23:55:13" +ik[2741] = 54.668 +il[2741] = -81 +im[2741] = 0.0704 +ij[2741] = 9 +id[2742] = "2173-07-10T21:07:46" +ik[2742] = 1.24 +il[2742] = -51 +im[2742] = 0.0647 +ij[2742] = 28.8 +id[2743] = "2173-07-24T17:09:01" +ik[2743] = 0.333 +il[2743] = -9 +im[2743] = 0.0881 +ij[2743] = 28.7 +id[2744] = "2173-08-21T00:21:18" +ik[2744] = 2.944 +il[2744] = 74 +im[2744] = 0.1543 +ij[2744] = 28.6 +id[2745] = "2173-09-12T01:07:36" +ik[2745] = 90 +il[2745] = 141 +im[2745] = 0.0266 +ij[2745] = 6 +id[2746] = "2173-10-13T15:03:39" +ik[2746] = 1.359 +il[2746] = -142 +im[2746] = 0.2004 +ij[2746] = 27.4 +id[2747] = "2173-11-02T06:16:16" +ik[2747] = 0 +il[2747] = -92 +im[2747] = 0.4307 +ij[2747] = 13 +id[2748] = "2173-11-23T14:44:32" +ik[2748] = 1.439 +il[2748] = -82 +im[2748] = 0.4146 +ij[2748] = 27.4 +id[2749] = "2173-11-23T23:02:24" +ik[2749] = 2.58 +il[2749] = -72 +im[2749] = 0.445 +ij[2749] = 11 +id[2750] = "2173-11-27T00:45:29" +ik[2750] = 0.5782 +il[2750] = -62 +im[2750] = 0.5783 +ij[2750] = 2 +id[2751] = "2173-12-14T08:23:51" +ik[2751] = 42.09 +il[2751] = -37 +im[2751] = 0.2288 +ij[2751] = 7.1544 +id[2752] = "2174-01-14T19:27:30" +ik[2752] = 73.55 +il[2752] = 25 +im[2752] = 0.0641 +ij[2752] = 14 +id[2753] = "2174-01-18T03:56:32" +ik[2753] = 1.255 +il[2753] = 24 +im[2753] = 0.2074 +ij[2753] = 27.1 +id[2754] = "2174-02-02T23:28:32" +ik[2754] = 90 +il[2754] = 72 +im[2754] = 0.1754 +ij[2754] = 5 +id[2755] = "2174-03-14T03:19:39" +ik[2755] = 2.155 +il[2755] = -166 +im[2755] = 0.0198 +ij[2755] = 27.3 +id[2756] = "2174-04-01T22:21:53" +ik[2756] = 0.018 +il[2756] = -107 +im[2756] = 0.0805 +ij[2756] = 27.5 +id[2757] = "2174-04-22T12:04:08" +ik[2757] = 54.065 +il[2757] = -43 +im[2757] = 0.1157 +ij[2757] = 8 +id[2758] = "2174-05-17T05:51:35" +ik[2758] = 3.83 +il[2758] = 33 +im[2758] = 0.0614 +ij[2758] = 27.6 +id[2759] = "2174-06-07T16:36:28" +ik[2759] = 3.025 +il[2759] = 98 +im[2759] = 0.0926 +ij[2759] = 28.1 +id[2760] = "2174-06-16T18:04:10" +ik[2760] = 0.91 +il[2760] = 126 +im[2760] = 0.0615 +ij[2760] = 28.4 +id[2761] = "2174-06-24T09:29:30" +ik[2761] = 5.506 +il[2761] = 149 +im[2761] = 0.0581 +ij[2761] = 27.2 +id[2762] = "2174-07-21T19:28:24" +ik[2762] = 0.03 +il[2762] = -128 +im[2762] = 0.0812 +ij[2762] = 28.5 +id[2763] = "2174-09-09T06:21:36" +ik[2763] = 1.41 +il[2763] = 3 +im[2763] = 0.0387 +ij[2763] = 12 +id[2764] = "2174-11-08T01:35:12" +ik[2764] = 4.011 +il[2764] = 4 +im[2764] = 0.0421 +ij[2764] = 27.4 +id[2765] = "2174-12-09T19:14:00" +ik[2765] = 4.716 +il[2765] = 100 +im[2765] = 0.0134 +ij[2765] = 28.1 +id[2766] = "2175-01-01T22:15:12" +ik[2766] = 0.465 +il[2766] = 171 +im[2766] = 0.0999 +ij[2766] = 27.3 +id[2767] = "2175-01-19T20:56:32" +ik[2767] = 1.208 +il[2767] = -134 +im[2767] = 0.1026 +ij[2767] = 27.5 +id[2768] = "2175-02-08T12:25:29" +ik[2768] = 53.756 +il[2768] = -72 +im[2768] = 0.0149 +ij[2768] = 9 +id[2769] = "2175-03-06T03:43:29" +ik[2769] = 1.56 +il[2769] = 8 +im[2769] = 0.1212 +ij[2769] = 27.6 +id[2770] = "2175-04-16T12:48:59" +ik[2770] = 1.382 +il[2770] = 137 +im[2770] = 0.1792 +ij[2770] = 27.2 +id[2771] = "2175-04-23T05:58:36" +ik[2771] = 90 +il[2771] = 158 +im[2771] = 0.0485 +ij[2771] = 6 +id[2772] = "2175-06-08T08:38:20" +ik[2772] = 0 +il[2772] = -104 +im[2772] = 0.0981 +ij[2772] = 13 +id[2773] = "2175-06-26T22:51:23" +ik[2773] = 0.5286 +il[2773] = -82 +im[2773] = 0.5286 +ij[2773] = 2 +id[2774] = "2175-07-01T01:33:36" +ik[2774] = 3.06 +il[2774] = -78 +im[2774] = 0.3185 +ij[2774] = 11 +id[2775] = "2175-07-23T07:40:54" +ik[2775] = 44.96 +il[2775] = -32 +im[2775] = 0.4308 +ij[2775] = 7.1661 +id[2776] = "2175-08-25T22:30:38" +ik[2776] = 78.58 +il[2776] = 34 +im[2776] = 0.1349 +ij[2776] = 14 +id[2777] = "2175-09-09T09:47:42" +ik[2777] = 90 +il[2777] = 72 +im[2777] = 0.0792 +ij[2777] = 5 +id[2778] = "2175-09-25T19:55:12" +ik[2778] = 1.783 +il[2778] = 122 +im[2778] = 0.0467 +ij[2778] = 28.5 +id[2779] = "2175-10-06T10:13:43" +ik[2779] = 0.693 +il[2779] = 154 +im[2779] = 0.1269 +ij[2779] = 28.8 +id[2780] = "2175-10-22T19:21:56" +ik[2780] = 0.096 +il[2780] = -156 +im[2780] = 0.1111 +ij[2780] = 28.7 +id[2781] = "2175-11-22T02:45:57" +ik[2781] = 53.978 +il[2781] = -62 +im[2781] = 0.0854 +ij[2781] = 8 +id[2782] = "2175-12-01T01:55:20" +ik[2782] = 0.65 +il[2782] = -34 +im[2782] = 0.1073 +ij[2782] = 28.6 +id[2783] = "2175-12-31T22:47:12" +ik[2783] = 4.323 +il[2783] = 62 +im[2783] = 0.1024 +ij[2783] = 27.1 +id[2784] = "2176-02-15T17:49:26" +ik[2784] = 0.571 +il[2784] = -155 +im[2784] = 0.0868 +ij[2784] = 27.3 +id[2785] = "2176-03-04T09:20:32" +ik[2785] = 0.822 +il[2785] = -101 +im[2785] = 0.0872 +ij[2785] = 27.5 +id[2786] = "2176-04-23T02:52:48" +ik[2786] = 1 +il[2786] = 29 +im[2786] = 0.0183 +ij[2786] = 12 +id[2787] = "2176-06-10T15:49:06" +ik[2787] = 0.151 +il[2787] = -5 +im[2787] = 0.0463 +ij[2787] = 27.9 +id[2788] = "2176-06-17T12:40:45" +ik[2788] = 2.537 +il[2788] = 18 +im[2788] = 0.0866 +ij[2788] = 28.1 +id[2789] = "2176-07-16T15:08:07" +ik[2789] = 0.919 +il[2789] = 107 +im[2789] = 0.0995 +ij[2789] = 28.4 +id[2790] = "2176-07-18T23:00:23" +ik[2790] = 3.32 +il[2790] = 114 +im[2790] = 0.0843 +ij[2790] = 28.1 +id[2791] = "2176-07-29T08:40:24" +ik[2791] = 0.909 +il[2791] = 146 +im[2791] = 0.0874 +ij[2791] = 28.8 +id[2792] = "2176-08-15T21:34:33" +ik[2792] = 0.292 +il[2792] = -161 +im[2792] = 0.1105 +ij[2792] = 28.7 +id[2793] = "2176-08-21T20:46:53" +ik[2793] = 0.459 +il[2793] = -142 +im[2793] = 0.0284 +ij[2793] = 28.5 +id[2794] = "2176-09-07T19:39:18" +ik[2794] = 54.245 +il[2794] = -91 +im[2794] = 0.0368 +ij[2794] = 9 +id[2795] = "2176-10-04T11:07:52" +ik[2795] = 3.529 +il[2795] = -10 +im[2795] = 0.0576 +ij[2795] = 28.6 +id[2796] = "2176-10-11T20:48:05" +ik[2796] = 2.171 +il[2796] = 12 +im[2796] = 0.1267 +ij[2796] = 27.4 +id[2797] = "2176-11-26T09:48:35" +ik[2797] = 90 +il[2797] = 153 +im[2797] = 0.2208 +ij[2797] = 6 +id[2798] = "2176-12-15T06:24:59" +ik[2798] = 0.777 +il[2798] = -159 +im[2798] = 0.2215 +ij[2798] = 27.3 +id[2799] = "2177-01-14T22:31:05" +ik[2799] = 0 +il[2799] = -97 +im[2799] = 0.1877 +ij[2799] = 13 +id[2800] = "2177-02-05T18:43:12" +ik[2800] = 7.76 +il[2800] = -63 +im[2800] = 0.5256 +ij[2800] = 11 +id[2801] = "2177-02-06T06:21:29" +ik[2801] = 0.5295 +il[2801] = -53 +im[2801] = 0.5296 +ij[2801] = 2 +id[2802] = "2177-02-26T21:33:40" +ik[2802] = 42.96 +il[2802] = -43 +im[2802] = 0.0807 +ij[2802] = 7.1573 +id[2803] = "2177-03-30T19:55:22" +ik[2803] = 74.89 +il[2803] = 36 +im[2803] = 0.2094 +ij[2803] = 14 +id[2804] = "2177-04-08T10:30:46" +ik[2804] = 2.085 +il[2804] = 53 +im[2804] = 0.0545 +ij[2804] = 27.5 +id[2805] = "2177-04-18T07:44:45" +ik[2805] = 90 +il[2805] = 83 +im[2805] = 0.2158 +ij[2805] = 5 +id[2806] = "2177-05-29T05:17:18" +ik[2806] = 4.16 +il[2806] = -151 +im[2806] = 0.1168 +ij[2806] = 27.6 +id[2807] = "2177-07-01T19:39:19" +ik[2807] = 54.467 +il[2807] = -48 +im[2807] = 0.1085 +ij[2807] = 8 +id[2808] = "2177-07-08T03:43:16" +ik[2808] = 6.21 +il[2808] = -29 +im[2808] = 0.0115 +ij[2808] = 27.2 +id[2809] = "2177-09-13T15:46:04" +ik[2809] = 0.504 +il[2809] = 178 +im[2809] = 0.0889 +ij[2809] = 28.8 +id[2810] = "2177-10-01T19:33:18" +ik[2810] = 0.6 +il[2810] = -126 +im[2810] = 0.0774 +ij[2810] = 28.7 +id[2811] = "2177-11-20T06:36:00" +ik[2811] = 0.49 +il[2811] = 6 +im[2811] = 0.0068 +ij[2811] = 12 +id[2812] = "2178-01-16T02:13:25" +ik[2812] = 0.133 +il[2812] = -6 +im[2812] = 0.0659 +ij[2812] = 27.3 +id[2813] = "2178-02-02T18:01:52" +ik[2813] = 1.129 +il[2813] = 49 +im[2813] = 0.0277 +ij[2813] = 27.5 +id[2814] = "2178-02-05T01:59:13" +ik[2814] = 2.964 +il[2814] = 56 +im[2814] = 0.023 +ij[2814] = 28.1 +id[2815] = "2178-03-18T18:49:07" +ik[2815] = 2.41 +il[2815] = -174 +im[2815] = 0.0639 +ij[2815] = 27.6 +id[2816] = "2178-04-21T19:42:54" +ik[2816] = 54.415 +il[2816] = -68 +im[2816] = 0.0206 +ij[2816] = 9 +id[2817] = "2178-04-25T12:20:05" +ik[2817] = 3.048 +il[2817] = -56 +im[2817] = 0.0984 +ij[2817] = 27.2 +id[2818] = "2178-06-30T07:40:20" +ik[2818] = 90 +il[2818] = 146 +im[2818] = 0.145 +ij[2818] = 6 +id[2819] = "2178-07-15T05:51:47" +ik[2819] = 0.667 +il[2819] = -176 +im[2819] = 0.1688 +ij[2819] = 28.8 +id[2820] = "2178-08-17T19:55:48" +ik[2820] = 0 +il[2820] = 173 +im[2820] = 0.1916 +ij[2820] = 13 +id[2821] = "2178-08-21T16:13:35" +ik[2821] = 3.476 +il[2821] = -103 +im[2821] = 0.4404 +ij[2821] = 27.7 +id[2822] = "2178-09-05T15:34:03" +ik[2822] = 0.5061 +il[2822] = -114 +im[2822] = 0.5062 +ij[2822] = 2 +id[2823] = "2178-09-09T09:41:45" +ik[2823] = 8.69 +il[2823] = -115 +im[2823] = 0.2901 +ij[2823] = 11 +id[2824] = "2178-09-30T19:00:23" +ik[2824] = 43.96 +il[2824] = -81 +im[2824] = 0.4177 +ij[2824] = 7.1621 +id[2825] = "2178-11-02T13:18:10" +ik[2825] = 76.72 +il[2825] = 18 +im[2825] = 0.2006 +ij[2825] = 14 +id[2826] = "2178-11-07T18:46:13" +ik[2826] = 0.499 +il[2826] = 34 +im[2826] = 0.0827 +ij[2826] = 28.7 +id[2827] = "2178-11-19T04:08:56" +ik[2827] = 90 +il[2827] = 68 +im[2827] = 0.0938 +ij[2827] = 5 +id[2828] = "2178-12-01T23:04:59" +ik[2828] = 1.002 +il[2828] = 108 +im[2828] = 0.1391 +ij[2828] = 28.4 +id[2829] = "2179-01-08T12:00:00" +ik[2829] = 1.243 +il[2829] = -136 +im[2829] = 0.1067 +ij[2829] = 28.5 +id[2830] = "2179-01-13T13:10:19" +ik[2830] = 3.403 +il[2830] = -120 +im[2830] = 0.1404 +ij[2830] = 27.1 +id[2831] = "2179-01-16T05:20:49" +ik[2831] = 0.384 +il[2831] = -112 +im[2831] = 0.1056 +ij[2831] = 28.6 +id[2832] = "2179-02-04T15:44:41" +ik[2832] = 53.718 +il[2832] = -51 +im[2832] = 0.0284 +ij[2832] = 8 +id[2833] = "2179-03-01T18:08:59" +ik[2833] = 1.095 +il[2833] = 27 +im[2833] = 0.076 +ij[2833] = 27.3 +id[2834] = "2179-03-08T06:57:53" +ik[2834] = 6.174 +il[2834] = 48 +im[2834] = 0.0518 +ij[2834] = 28.1 +id[2835] = "2179-03-19T15:36:32" +ik[2835] = 0.551 +il[2835] = 83 +im[2835] = 0.04 +ij[2835] = 27.5 +id[2836] = "2179-05-02T18:48:04" +ik[2836] = 3.52 +il[2836] = -142 +im[2836] = 0.0477 +ij[2836] = 27.6 +id[2837] = "2179-07-01T06:51:50" +ik[2837] = 0.51 +il[2837] = 17 +im[2837] = 0.0606 +ij[2837] = 12 +id[2838] = "2179-08-12T01:10:16" +ik[2838] = 0.283 +il[2838] = -35 +im[2838] = 0.0835 +ij[2838] = 28.1 +id[2839] = "2179-08-18T21:25:55" +ik[2839] = 0.64 +il[2839] = -12 +im[2839] = 0.0119 +ij[2839] = 28.8 +id[2840] = "2179-09-09T06:51:50" +ik[2840] = 0.307 +il[2840] = 51 +im[2840] = 0.0913 +ij[2840] = 28.7 +id[2841] = "2179-09-24T22:08:49" +ik[2841] = 4.424 +il[2841] = 99 +im[2841] = 0.0934 +ij[2841] = 28.1 +id[2842] = "2179-10-24T18:01:25" +ik[2842] = 3.311 +il[2842] = -171 +im[2842] = 0.0993 +ij[2842] = 27.4 +id[2843] = "2179-11-21T06:40:36" +ik[2843] = 2.603 +il[2843] = -87 +im[2843] = 0.0809 +ij[2843] = 28.6 +id[2844] = "2179-11-21T13:18:56" +ik[2844] = 53.629 +il[2844] = -86 +im[2844] = 0.0857 +ij[2844] = 9 +id[2845] = "2179-12-02T20:51:38" +ik[2845] = 1.687 +il[2845] = -51 +im[2845] = 0.0349 +ij[2845] = 28.5 +id[2846] = "2179-12-19T23:00:59" +ik[2846] = 0.863 +il[2846] = 2 +im[2846] = 0.0665 +ij[2846] = 27.3 +id[2847] = "2180-01-08T00:50:19" +ik[2847] = 1.084 +il[2847] = 61 +im[2847] = 0.1653 +ij[2847] = 27.5 +id[2848] = "2180-02-09T22:39:54" +ik[2848] = 90 +il[2848] = 164 +im[2848] = 0.1967 +ij[2848] = 6 +id[2849] = "2180-03-01T14:44:58" +ik[2849] = 1.69 +il[2849] = -146 +im[2849] = 0.0635 +ij[2849] = 27.6 +id[2850] = "2180-03-27T13:18:37" +ik[2850] = 0 +il[2850] = -95 +im[2850] = 0.1238 +ij[2850] = 13 +id[2851] = "2180-04-17T12:12:59" +ik[2851] = 0.5171 +il[2851] = -71 +im[2851] = 0.5172 +ij[2851] = 2 +id[2852] = "2180-04-19T12:57:36" +ik[2852] = 6.44 +il[2852] = -60 +im[2852] = 0.4568 +ij[2852] = 11 +id[2853] = "2180-04-27T04:12:52" +ik[2853] = 3.09 +il[2853] = -49 +im[2853] = 0.3218 +ij[2853] = 27.6 +id[2854] = "2180-05-10T15:24:12" +ik[2854] = 44.09 +il[2854] = -39 +im[2854] = 0.2672 +ij[2854] = 7.1635 +id[2855] = "2180-05-25T05:26:44" +ik[2855] = 3.07 +il[2855] = -23 +im[2855] = 0.253 +ij[2855] = 27.6 +id[2856] = "2180-06-12T21:39:00" +ik[2856] = 77.35 +il[2856] = 35 +im[2856] = 0.2396 +ij[2856] = 14 +id[2857] = "2180-06-28T17:16:10" +ik[2857] = 90 +il[2857] = 83 +im[2857] = 0.1918 +ij[2857] = 5 +id[2858] = "2180-09-08T16:55:50" +ik[2858] = 54.434 +il[2858] = -58 +im[2858] = 0.1244 +ij[2858] = 8 +id[2859] = "2180-10-02T22:52:36" +ik[2859] = 0.236 +il[2859] = 17 +im[2859] = 0.0404 +ij[2859] = 28.8 +id[2860] = "2180-10-25T09:04:37" +ik[2860] = 0.779 +il[2860] = 86 +im[2860] = 0.0906 +ij[2860] = 28.7 +id[2861] = "2180-12-16T09:38:45" +ik[2861] = 4.963 +il[2861] = -116 +im[2861] = 0.008 +ij[2861] = 27.1 +id[2862] = "2180-12-21T20:57:24" +ik[2862] = 0.834 +il[2862] = -95 +im[2862] = 0.0857 +ij[2862] = 28.4 +id[2863] = "2181-02-04T14:22:33" +ik[2863] = 1.22 +il[2863] = 22 +im[2863] = 0.072 +ij[2863] = 12 +id[2864] = "2181-03-28T02:48:46" +ik[2864] = 3.571 +il[2864] = -7 +im[2864] = 0.0665 +ij[2864] = 28.1 +id[2865] = "2181-04-01T23:58:35" +ik[2865] = 2.87 +il[2865] = 8 +im[2865] = 0.0198 +ij[2865] = 27.6 +id[2866] = "2181-04-16T14:22:33" +ik[2866] = 2.748 +il[2866] = 54 +im[2866] = 0.0197 +ij[2866] = 28.1 +id[2867] = "2181-05-08T21:14:45" +ik[2867] = 3.872 +il[2867] = 124 +im[2867] = 0.0949 +ij[2867] = 27.2 +id[2868] = "2181-06-28T18:06:58" +ik[2868] = 54.672 +il[2868] = -78 +im[2868] = 0.0238 +ij[2868] = 9 +id[2869] = "2181-07-25T21:30:14" +ik[2869] = 0.177 +il[2869] = 5 +im[2869] = 0.0952 +ij[2869] = 28.8 +id[2870] = "2181-08-21T20:26:00" +ik[2870] = 1.45 +il[2870] = 87 +im[2870] = 0.1636 +ij[2870] = 28.7 +id[2871] = "2181-09-09T14:06:00" +ik[2871] = 90 +il[2871] = 143 +im[2871] = 0.1371 +ij[2871] = 6 +id[2872] = "2181-10-15T17:32:05" +ik[2872] = 1.672 +il[2872] = -130 +im[2872] = 0.2754 +ij[2872] = 27.4 +id[2873] = "2181-10-31T21:39:27" +ik[2873] = 0 +il[2873] = -141 +im[2873] = 0.4553 +ij[2873] = 13 +id[2874] = "2181-11-16T06:56:05" +ik[2874] = 0.057 +il[2874] = -84 +im[2874] = 0.4907 +ij[2874] = 27.4 +id[2875] = "2181-11-21T12:15:50" +ik[2875] = 2.96 +il[2875] = -85 +im[2875] = 0.0669 +ij[2875] = 11 +id[2876] = "2181-11-28T04:14:58" +ik[2876] = 0.5624 +il[2876] = -74 +im[2876] = 0.5624 +ij[2876] = 2 +id[2877] = "2181-12-11T20:46:01" +ik[2877] = 40.96 +il[2877] = -63 +im[2877] = 0.433 +ij[2877] = 7.1546 +id[2878] = "2182-01-12T09:15:49" +ik[2878] = 72.48 +il[2878] = 16 +im[2878] = 0.1701 +ij[2878] = 14 +id[2879] = "2182-01-18T14:35:11" +ik[2879] = 1.375 +il[2879] = 35 +im[2879] = 0.1462 +ij[2879] = 27.1 +id[2880] = "2182-01-31T11:51:33" +ik[2880] = 90 +il[2880] = 74 +im[2880] = 0.0198 +ij[2880] = 5 +id[2881] = "2182-03-03T04:39:30" +ik[2881] = 1.688 +il[2881] = 170 +im[2881] = 0.0566 +ij[2881] = 28.6 +id[2882] = "2182-03-13T20:23:38" +ik[2882] = 2.101 +il[2882] = -156 +im[2882] = 0.0766 +ij[2882] = 27.3 +id[2883] = "2182-04-01T14:03:12" +ik[2883] = 0.012 +il[2883] = -98 +im[2883] = 0.0372 +ij[2883] = 27.5 +id[2884] = "2182-04-11T19:50:35" +ik[2884] = 0.328 +il[2884] = -66 +im[2884] = 0.0902 +ij[2884] = 28.5 +id[2885] = "2182-04-20T02:10:33" +ik[2885] = 54.048 +il[2885] = -41 +im[2885] = 0.0903 +ij[2885] = 8 +id[2886] = "2182-05-16T19:59:31" +ik[2886] = 3.82 +il[2886] = 41 +im[2886] = 0.0182 +ij[2886] = 27.6 +id[2887] = "2182-06-23T22:49:02" +ik[2887] = 5.486 +il[2887] = 157 +im[2887] = 0.0805 +ij[2887] = 27.2 +id[2888] = "2182-09-06T22:50:52" +ik[2888] = 1.41 +il[2888] = 8 +im[2888] = 0.0809 +ij[2888] = 12 +id[2889] = "2182-10-12T20:02:32" +ik[2889] = 4.271 +il[2889] = -66 +im[2889] = 0.0026 +ij[2889] = 28.1 +id[2890] = "2182-11-07T15:00:58" +ik[2890] = 3.992 +il[2890] = 12 +im[2890] = 0.0698 +ij[2890] = 27.4 +id[2891] = "2182-11-24T01:01:03" +ik[2891] = 1.348 +il[2891] = 62 +im[2891] = 0.0671 +ij[2891] = 28.1 +id[2892] = "2183-01-01T06:56:35" +ik[2892] = 0.684 +il[2892] = 179 +im[2892] = 0.0889 +ij[2892] = 28.4 +id[2893] = "2183-01-01T12:12:05" +ik[2893] = 0.477 +il[2893] = 180 +im[2893] = 0.0914 +ij[2893] = 27.3 +id[2894] = "2183-01-07T08:52:13" +ik[2894] = 0.743 +il[2894] = -162 +im[2894] = 0.0799 +ij[2894] = 28.6 +id[2895] = "2183-01-19T11:16:32" +ik[2895] = 1.208 +il[2895] = -125 +im[2895] = 0.1104 +ij[2895] = 27.5 +id[2896] = "2183-02-06T00:09:40" +ik[2896] = 53.737 +il[2896] = -70 +im[2896] = 0.1019 +ij[2896] = 9 +id[2897] = "2183-03-02T04:49:17" +ik[2897] = 1.479 +il[2897] = 6 +im[2897] = 0.122 +ij[2897] = 28.5 +id[2898] = "2183-03-05T20:01:26" +ik[2898] = 1.52 +il[2898] = 17 +im[2898] = 0.1459 +ij[2898] = 27.6 +id[2899] = "2183-04-16T12:14:18" +ik[2899] = 1.288 +il[2899] = 147 +im[2899] = 0.1594 +ij[2899] = 27.2 +id[2900] = "2183-04-20T23:35:38" +ik[2900] = 90 +il[2900] = 161 +im[2900] = 0.1788 +ij[2900] = 6 +id[2901] = "2183-06-06T09:16:16" +ik[2901] = 0 +il[2901] = -101 +im[2901] = 0.1943 +ij[2901] = 13 +id[2902] = "2183-06-28T02:38:38" +ik[2902] = 0.5327 +il[2902] = -112 +im[2902] = 0.5327 +ij[2902] = 2 +id[2903] = "2183-06-28T18:36:00" +ik[2903] = 2.75 +il[2903] = -113 +im[2903] = 0.5266 +ij[2903] = 11 +id[2904] = "2183-07-20T15:14:57" +ik[2904] = 44.25 +il[2904] = -72 +im[2904] = 0.2788 +ij[2904] = 7.1663 +id[2905] = "2183-08-23T15:43:46" +ik[2905] = 78.27 +il[2905] = 32 +im[2905] = 0.2535 +ij[2905] = 14 +id[2906] = "2183-09-07T02:10:25" +ik[2906] = 90 +il[2906] = 75 +im[2906] = 0.188 +ij[2906] = 5 +id[2907] = "2183-10-21T17:15:12" +ik[2907] = 0.124 +il[2907] = -149 +im[2907] = 0.143 +ij[2907] = 28.8 +id[2908] = "2183-11-18T04:59:48" +ik[2908] = 1.124 +il[2908] = -64 +im[2908] = 0.115 +ij[2908] = 28.7 +id[2909] = "2183-11-19T16:31:02" +ik[2909] = 53.994 +il[2909] = -60 +im[2909] = 0.12 +ij[2909] = 8 +id[2910] = "2183-12-31T12:39:38" +ik[2910] = 4.351 +il[2910] = 71 +im[2910] = 0.0868 +ij[2910] = 27.1 +id[2911] = "2184-02-15T07:07:38" +ik[2911] = 0.557 +il[2911] = -147 +im[2911] = 0.0738 +ij[2911] = 27.3 +id[2912] = "2184-02-29T10:18:54" +ik[2912] = 0.311 +il[2912] = -103 +im[2912] = 0.0674 +ij[2912] = 28.6 +id[2913] = "2184-03-03T22:33:25" +ik[2913] = 0.829 +il[2913] = -92 +im[2913] = 0.0916 +ij[2913] = 27.5 +id[2914] = "2184-03-10T20:45:44" +ik[2914] = 2.589 +il[2914] = -71 +im[2914] = 0.0205 +ij[2914] = 28.1 +id[2915] = "2184-04-20T18:01:26" +ik[2915] = 1.04 +il[2915] = 32 +im[2915] = 0.0733 +ij[2915] = 12 +id[2916] = "2184-05-23T09:01:25" +ik[2916] = 4.454 +il[2916] = -52 +im[2916] = 0.0489 +ij[2916] = 27.2 +id[2917] = "2184-06-10T02:20:24" +ik[2917] = 0.275 +il[2917] = 4 +im[2917] = 0.0116 +ij[2917] = 27.9 +id[2918] = "2184-06-26T18:37:26" +ik[2918] = 2.017 +il[2918] = 55 +im[2918] = 0.024 +ij[2918] = 28.1 +id[2919] = "2184-08-12T15:20:52" +ik[2919] = 0.129 +il[2919] = -161 +im[2919] = 0.0726 +ij[2919] = 28.8 +id[2920] = "2184-09-05T11:00:23" +ik[2920] = 54.268 +il[2920] = -88 +im[2920] = 0.0619 +ij[2920] = 9 +id[2921] = "2184-09-11T02:51:30" +ik[2921] = 0.732 +il[2921] = -71 +im[2921] = 0.0668 +ij[2921] = 28.7 +id[2922] = "2184-10-11T14:06:45" +ik[2922] = 2.116 +il[2922] = 22 +im[2922] = 0.0858 +ij[2922] = 27.4 +id[2923] = "2184-11-23T21:00:50" +ik[2923] = 90 +il[2923] = 155 +im[2923] = 0.1107 +ij[2923] = 6 +id[2924] = "2184-12-15T23:47:11" +ik[2924] = 0.663 +il[2924] = -149 +im[2924] = 0.2501 +ij[2924] = 27.3 +id[2925] = "2185-01-12T15:44:12" +ik[2925] = 0 +il[2925] = -160 +im[2925] = 0.4113 +ij[2925] = 13 +id[2926] = "2185-01-25T03:41:54" +ik[2926] = 0.5514 +il[2926] = -79 +im[2926] = 0.5515 +ij[2926] = 2 +id[2927] = "2185-02-03T07:24:57" +ik[2927] = 7.56 +il[2927] = -60 +im[2927] = 0.3035 +ij[2927] = 11 +id[2928] = "2185-02-24T06:03:50" +ik[2928] = 42.6 +il[2928] = -50 +im[2928] = 0.3111 +ij[2928] = 7.1573 +id[2929] = "2185-03-28T08:11:37" +ik[2929] = 74.69 +il[2929] = 28 +im[2929] = 0.0156 +ij[2929] = 14 +id[2930] = "2185-04-02T16:02:55" +ik[2930] = 3.116 +il[2930] = 45 +im[2930] = 0.2266 +ij[2930] = 28.4 +id[2931] = "2185-04-08T14:54:18" +ik[2931] = 1.918 +il[2931] = 63 +im[2931] = 0.1035 +ij[2931] = 27.5 +id[2932] = "2185-04-15T05:31:37" +ik[2932] = 2.415 +il[2932] = 82 +im[2932] = 0.1728 +ij[2932] = 28.6 +id[2933] = "2185-04-15T21:07:55" +ik[2933] = 90 +il[2933] = 85 +im[2933] = 0.1885 +ij[2933] = 5 +id[2934] = "2185-05-28T22:22:23" +ik[2934] = 4.15 +il[2934] = -142 +im[2934] = 0.0785 +ij[2934] = 27.6 +id[2935] = "2185-06-29T12:36:24" +ik[2935] = 54.459 +il[2935] = -45 +im[2935] = 0.0989 +ij[2935] = 8 +id[2936] = "2185-07-07T18:11:42" +ik[2936] = 6.181 +il[2936] = -20 +im[2936] = 0.0443 +ij[2936] = 27.2 +id[2937] = "2185-07-10T13:09:15" +ik[2937] = 0.72 +il[2937] = -12 +im[2937] = 0.0175 +ij[2937] = 28.5 +id[2938] = "2185-09-27T14:21:50" +ik[2938] = 0.278 +il[2938] = -129 +im[2938] = 0.0778 +ij[2938] = 28.8 +id[2939] = "2185-11-17T19:13:26" +ik[2939] = 0.55 +il[2939] = 9 +im[2939] = 0.0661 +ij[2939] = 12 +id[2940] = "2185-12-26T03:22:10" +ik[2940] = 5.412 +il[2940] = -49 +im[2940] = 0.0545 +ij[2940] = 28.1 +id[2941] = "2186-01-15T15:28:31" +ik[2941] = 0.144 +il[2941] = 7 +im[2941] = 0.0884 +ij[2941] = 27.3 +id[2942] = "2186-01-22T08:55:40" +ik[2942] = 2.626 +il[2942] = 23 +im[2942] = 0.0038 +ij[2942] = 28.1 +id[2943] = "2186-02-02T07:25:25" +ik[2943] = 1.132 +il[2943] = 57 +im[2943] = 0.0595 +ij[2943] = 27.5 +id[2944] = "2186-02-22T05:51:12" +ik[2944] = 0.966 +il[2944] = 119 +im[2944] = 0.0167 +ij[2944] = 28.6 +id[2945] = "2186-03-18T08:39:22" +ik[2945] = 2.39 +il[2945] = -166 +im[2945] = 0.094 +ij[2945] = 27.6 +id[2946] = "2186-04-19T12:11:32" +ik[2946] = 54.395 +il[2946] = -65 +im[2946] = 0.0713 +ij[2946] = 9 +id[2947] = "2186-04-25T03:31:38" +ik[2947] = 3.01 +il[2947] = -47 +im[2947] = 0.0708 +ij[2947] = 27.2 +id[2948] = "2186-06-03T02:00:57" +ik[2948] = 1.896 +il[2948] = 73 +im[2948] = 0.0945 +ij[2948] = 28.5 +id[2949] = "2186-06-28T00:38:26" +ik[2949] = 90 +il[2949] = 149 +im[2949] = 0.2136 +ij[2949] = 6 +id[2950] = "2186-08-09T07:20:29" +ik[2950] = 6.39 +il[2950] = -116 +im[2950] = 0.3393 +ij[2950] = 28.8 +id[2951] = "2186-08-15T08:12:04" +ik[2951] = 0 +il[2951] = -106 +im[2951] = 0.1679 +ij[2951] = 13 +id[2952] = "2186-09-06T12:20:16" +ik[2952] = 0.5018 +il[2952] = -117 +im[2952] = 0.5019 +ij[2952] = 2 +id[2953] = "2186-09-07T00:05:45" +ik[2953] = 8.66 +il[2953] = -118 +im[2953] = 0.4982 +ij[2953] = 11 +id[2954] = "2186-09-28T12:21:39" +ik[2954] = 44.17 +il[2954] = -78 +im[2954] = 0.2106 +ij[2954] = 7.1622 +id[2955] = "2186-10-31T06:03:23" +ik[2955] = 76.91 +il[2955] = 21 +im[2955] = 0.2547 +ij[2955] = 14 +id[2956] = "2186-11-01T09:47:22" +ik[2956] = 1.557 +il[2956] = 32 +im[2956] = 0.2484 +ij[2956] = 28.8 +id[2957] = "2186-11-16T18:34:54" +ik[2957] = 90 +il[2957] = 71 +im[2957] = 0.2143 +ij[2957] = 5 +id[2958] = "2186-12-08T14:50:29" +ik[2958] = 1.764 +il[2958] = 138 +im[2958] = 0.0574 +ij[2958] = 28.7 +id[2959] = "2187-01-13T05:13:24" +ik[2959] = 3.448 +il[2959] = -111 +im[2959] = 0.1392 +ij[2959] = 27.1 +id[2960] = "2187-02-02T03:14:40" +ik[2960] = 53.716 +il[2960] = -49 +im[2960] = 0.0687 +ij[2960] = 8 +id[2961] = "2187-03-01T08:13:24" +ik[2961] = 1.072 +il[2961] = 36 +im[2961] = 0.1001 +ij[2961] = 27.3 +id[2962] = "2187-03-19T05:20:58" +ik[2962] = 0.563 +il[2962] = 91 +im[2962] = 0.0711 +ij[2962] = 27.5 +id[2963] = "2187-04-15T03:27:04" +ik[2963] = 0.3 +il[2963] = 174 +im[2963] = 0.0902 +ij[2963] = 28.4 +id[2964] = "2187-04-16T04:18:02" +ik[2964] = 0.935 +il[2964] = 177 +im[2964] = 0.0852 +ij[2964] = 28.6 +id[2965] = "2187-05-02T07:59:22" +ik[2965] = 3.51 +il[2965] = -133 +im[2965] = 0.0777 +ij[2965] = 27.6 +id[2966] = "2187-05-18T17:56:49" +ik[2966] = 0.505 +il[2966] = -84 +im[2966] = 0.0502 +ij[2966] = 28.1 +id[2967] = "2187-06-29T01:37:55" +ik[2967] = 0.46 +il[2967] = 20 +im[2967] = 0.0884 +ij[2967] = 12 +id[2968] = "2187-08-09T05:59:42" +ik[2968] = 0.238 +il[2968] = -34 +im[2968] = 0.0668 +ij[2968] = 28.5 +id[2969] = "2187-09-01T21:59:54" +ik[2969] = 0.025 +il[2969] = 39 +im[2969] = 0.046 +ij[2969] = 28.8 +id[2970] = "2187-09-04T13:30:17" +ik[2970] = 4.036 +il[2970] = 47 +im[2970] = 0.0088 +ij[2970] = 28.1 +id[2971] = "2187-10-04T23:42:08" +ik[2971] = 0.384 +il[2971] = 139 +im[2971] = 0.0192 +ij[2971] = 28.7 +id[2972] = "2187-10-24T08:20:04" +ik[2972] = 3.284 +il[2972] = -162 +im[2972] = 0.0807 +ij[2972] = 27.4 +id[2973] = "2187-11-19T00:27:34" +ik[2973] = 53.642 +il[2973] = -84 +im[2973] = 0.0053 +ij[2973] = 9 +id[2974] = "2187-12-19T15:19:38" +ik[2974] = 0.875 +il[2974] = 10 +im[2974] = 0.0185 +ij[2974] = 27.3 +id[2975] = "2188-01-07T19:02:44" +ik[2975] = 1.066 +il[2975] = 70 +im[2975] = 0.1408 +ij[2975] = 27.5 +id[2976] = "2188-02-07T12:41:06" +ik[2976] = 90 +il[2976] = 166 +im[2976] = 0.1988 +ij[2976] = 6 +id[2977] = "2188-02-26T08:51:38" +ik[2977] = 5.775 +il[2977] = -147 +im[2977] = 0.2382 +ij[2977] = 28.6 +id[2978] = "2188-03-02T09:01:18" +ik[2978] = 2.02 +il[2978] = -136 +im[2978] = 0.0458 +ij[2978] = 27.6 +id[2979] = "2188-03-25T06:03:50" +ik[2979] = 0 +il[2979] = -147 +im[2979] = 0.3899 +ij[2979] = 13 +id[2980] = "2188-04-17T04:24:57" +ik[2980] = 6.68 +il[2980] = -57 +im[2980] = 0.4991 +ij[2980] = 11 +id[2981] = "2188-04-18T14:49:55" +ik[2981] = 0.5287 +il[2981] = -47 +im[2981] = 0.5288 +ij[2981] = 2 +id[2982] = "2188-04-20T14:39:06" +ik[2982] = 4.19 +il[2982] = -42 +im[2982] = 0.4742 +ij[2982] = 27.6 +id[2983] = "2188-05-08T06:07:24" +ik[2983] = 44 +il[2983] = -32 +im[2983] = 0.077 +ij[2983] = 7.1633 +id[2984] = "2188-05-14T18:04:27" +ik[2984] = 3.856 +il[2984] = -21 +im[2984] = 0.3761 +ij[2984] = 28.6 +id[2985] = "2188-05-27T12:05:00" +ik[2985] = 3.41 +il[2985] = -6 +im[2985] = 0.2589 +ij[2985] = 27.6 +id[2986] = "2188-06-10T11:41:08" +ik[2986] = 77.23 +il[2986] = 38 +im[2986] = 0.2133 +ij[2986] = 14 +id[2987] = "2188-06-26T09:30:55" +ik[2987] = 90 +il[2987] = 86 +im[2987] = 0.1859 +ij[2987] = 5 +id[2988] = "2188-09-06T09:28:02" +ik[2988] = 54.443 +il[2988] = -55 +im[2988] = 0.0832 +ij[2988] = 8 +id[2989] = "2188-10-17T02:12:37" +ik[2989] = 0.182 +il[2989] = 70 +im[2989] = 0.0325 +ij[2989] = 28.8 +id[2990] = "2188-10-18T15:41:02" +ik[2990] = 0.053 +il[2990] = 76 +im[2990] = 0.0062 +ij[2990] = 28.5 +id[2991] = "2188-11-19T21:15:50" +ik[2991] = 0.847 +il[2991] = 175 +im[2991] = 0.0485 +ij[2991] = 28.7 +id[2992] = "2188-12-15T23:16:57" +ik[2992] = 4.997 +il[2992] = -103 +im[2992] = 0.0275 +ij[2992] = 27.1 +id[2993] = "2188-12-18T21:36:00" +ik[2993] = 1.737 +il[2993] = -94 +im[2993] = 0.0292 +ij[2993] = 28.1 +id[2994] = "2189-02-02T00:07:12" +ik[2994] = 1.18 +il[2994] = 24 +im[2994] = 0.0131 +ij[2994] = 12 +id[2995] = "2189-03-26T03:27:30" +ik[2995] = 3.104 +il[2995] = -3 +im[2995] = 0.0903 +ij[2995] = 28.1 +id[2996] = "2189-04-01T13:09:56" +ik[2996] = 2.86 +il[2996] = 20 +im[2996] = 0.0164 +ij[2996] = 27.6 +id[2997] = "2189-04-07T09:43:16" +ik[2997] = 1.821 +il[2997] = 35 +im[2997] = 0.0813 +ij[2997] = 28.6 +id[2998] = "2189-04-24T22:01:29" +ik[2998] = 0.236 +il[2998] = 90 +im[2998] = 0.0923 +ij[2998] = 28.4 +id[2999] = "2189-05-08T10:50:44" +ik[2999] = 3.849 +il[2999] = 133 +im[2999] = 0.0967 +ij[2999] = 27.2 +id[3000] = "2189-06-26T12:22:16" +ik[3000] = 54.674 +il[3000] = -75 +im[3000] = 0.0963 +ij[3000] = 9 +id[3001] = "2189-08-10T10:32:18" +ik[3001] = 1.239 +il[3001] = 62 +im[3001] = 0.1479 +ij[3001] = 28.8 +id[3002] = "2189-09-07T03:13:14" +ik[3002] = 90 +il[3002] = 146 +im[3002] = 0.2141 +ij[3002] = 6 +id[3003] = "2189-09-20T18:51:59" +ik[3003] = 4.571 +il[3003] = -178 +im[3003] = 0.2465 +ij[3003] = 28.5 +id[3004] = "2189-09-23T08:28:27" +ik[3004] = 4.34 +il[3004] = -171 +im[3004] = 0.2264 +ij[3004] = 28.7 +id[3005] = "2189-10-19T06:14:17" +ik[3005] = 2.031 +il[3005] = -117 +im[3005] = 0.3831 +ij[3005] = 27.4 +id[3006] = "2189-10-28T11:41:35" +ik[3006] = 0 +il[3006] = -101 +im[3006] = 0.1407 +ij[3006] = 13 +id[3007] = "2189-11-07T22:26:44" +ik[3007] = 1.377 +il[3007] = -88 +im[3007] = 0.199 +ij[3007] = 27.4 +id[3008] = "2189-11-15T18:55:01" +ik[3008] = 0.5462 +il[3008] = -80 +im[3008] = 0.5463 +ij[3008] = 2 +id[3009] = "2189-11-19T01:27:50" +ik[3009] = 3.33 +il[3009] = -81 +im[3009] = 0.3884 +ij[3009] = 11 +id[3010] = "2189-12-07T18:41:11" +ik[3010] = 5.236 +il[3010] = -70 +im[3010] = 0.1933 +ij[3010] = 28.7 +id[3011] = "2189-12-09T10:46:10" +ik[3011] = 41.96 +il[3011] = -59 +im[3011] = 0.3374 +ij[3011] = 7.1547 +id[3012] = "2190-01-09T22:27:52" +ik[3012] = 73.45 +il[3012] = 18 +im[3012] = 0.2725 +ij[3012] = 14 +id[3013] = "2190-01-18T22:52:04" +ik[3013] = 1.491 +il[3013] = 46 +im[3013] = 0.0821 +ij[3013] = 27.1 +id[3014] = "2190-01-29T00:16:20" +ik[3014] = 90 +il[3014] = 77 +im[3014] = 0.1486 +ij[3014] = 5 +id[3015] = "2190-03-13T13:17:51" +ik[3015] = 2.048 +il[3015] = -147 +im[3015] = 0.1242 +ij[3015] = 27.3 +id[3016] = "2190-04-01T05:36:31" +ik[3016] = 0.041 +il[3016] = -89 +im[3016] = 0.0155 +ij[3016] = 27.5 +id[3017] = "2190-04-17T16:09:51" +ik[3017] = 54.031 +il[3017] = -38 +im[3017] = 0.0063 +ij[3017] = 8 +id[3018] = "2190-05-16T10:02:52" +ik[3018] = 3.81 +il[3018] = 50 +im[3018] = 0.0263 +ij[3018] = 27.6 +id[3019] = "2190-05-29T23:17:39" +ik[3019] = 0.837 +il[3019] = 91 +im[3019] = 0.0349 +ij[3019] = 28.6 +id[3020] = "2190-06-23T12:05:02" +ik[3020] = 5.467 +il[3020] = 166 +im[3020] = 0.0906 +ij[3020] = 27.2 +id[3021] = "2190-07-29T02:33:12" +ik[3021] = 3.037 +il[3021] = -86 +im[3021] = 0.0398 +ij[3021] = 28.1 +id[3022] = "2190-09-04T15:28:48" +ik[3022] = 1.4 +il[3022] = 9 +im[3022] = 0.0702 +ij[3022] = 12 +id[3023] = "2190-10-28T18:18:43" +ik[3023] = 0.112 +il[3023] = -8 +im[3023] = 0.0262 +ij[3023] = 28.7 +id[3024] = "2190-11-05T00:17:42" +ik[3024] = 1.819 +il[3024] = 15 +im[3024] = 0.0854 +ij[3024] = 28.1 +id[3025] = "2190-11-07T04:28:04" +ik[3025] = 3.973 +il[3025] = 21 +im[3025] = 0.0864 +ij[3025] = 27.4 +id[3026] = "2190-11-20T13:18:46" +ik[3026] = 1.058 +il[3026] = 61 +im[3026] = 0.0932 +ij[3026] = 28.5 +id[3027] = "2191-01-01T02:09:51" +ik[3027] = 0.488 +il[3027] = -172 +im[3027] = 0.0679 +ij[3027] = 27.3 +id[3028] = "2191-01-19T01:39:11" +ik[3028] = 1.207 +il[3028] = -116 +im[3028] = 0.0985 +ij[3028] = 27.5 +id[3029] = "2191-02-03T11:43:12" +ik[3029] = 53.719 +il[3029] = -68 +im[3029] = 0.1233 +ij[3029] = 9 +id[3030] = "2191-03-05T12:26:50" +ik[3030] = 1.47 +il[3030] = 26 +im[3030] = 0.1465 +ij[3030] = 27.6 +id[3031] = "2191-04-03T10:09:56" +ik[3031] = 4.549 +il[3031] = 116 +im[3031] = 0.169 +ij[3031] = 28.6 +id[3032] = "2191-04-16T12:28:57" +ik[3032] = 1.188 +il[3032] = 157 +im[3032] = 0.1259 +ij[3032] = 27.2 +id[3033] = "2191-04-18T17:08:14" +ik[3033] = 90 +il[3033] = 164 +im[3033] = 0.188 +ij[3033] = 6 +id[3034] = "2191-06-03T19:15:01" +ik[3034] = 4.305 +il[3034] = -98 +im[3034] = 0.4024 +ij[3034] = 28.4 +id[3035] = "2191-06-03T22:28:19" +ik[3035] = 0 +il[3035] = -98 +im[3035] = 0.4 +ij[3035] = 13 +id[3036] = "2191-06-26T11:41:16" +ik[3036] = 2.44 +il[3036] = -99 +im[3036] = 0.4243 +ij[3036] = 11 +id[3037] = "2191-06-29T05:52:45" +ik[3037] = 0.5249 +il[3037] = -88 +im[3037] = 0.525 +ij[3037] = 2 +id[3038] = "2191-07-18T07:11:59" +ik[3038] = 44.36 +il[3038] = -69 +im[3038] = 0.0845 +ij[3038] = 7.1663 +id[3039] = "2191-08-18T01:07:06" +ik[3039] = 4.504 +il[3039] = 33 +im[3039] = 0.1147 +ij[3039] = 28.4 +id[3040] = "2191-08-21T08:17:45" +ik[3040] = 78.41 +il[3040] = 40 +im[3040] = 0.2271 +ij[3040] = 14 +id[3041] = "2191-09-04T18:35:48" +ik[3041] = 90 +il[3041] = 78 +im[3041] = 0.1748 +ij[3041] = 5 +id[3042] = "2191-11-05T12:17:08" +ik[3042] = 0.139 +il[3042] = -94 +im[3042] = 0.1308 +ij[3042] = 28.8 +id[3043] = "2191-11-17T06:23:13" +ik[3043] = 54.011 +il[3043] = -57 +im[3043] = 0.0769 +ij[3043] = 8 +id[3044] = "2191-12-14T10:24:31" +ik[3044] = 1.279 +il[3044] = 27 +im[3044] = 0.0111 +ij[3044] = 28.7 +id[3045] = "2191-12-31T02:32:04" +ik[3045] = 4.378 +il[3045] = 80 +im[3045] = 0.0559 +ij[3045] = 27.1 +id[3046] = "2192-01-27T22:45:33" +ik[3046] = 0.143 +il[3046] = 166 +im[3046] = 0.0108 +ij[3046] = 28.5 +id[3047] = "2192-02-14T20:26:17" +ik[3047] = 0.543 +il[3047] = -138 +im[3047] = 0.0485 +ij[3047] = 27.3 +id[3048] = "2192-02-18T01:23:22" +ik[3048] = 2.847 +il[3048] = -128 +im[3048] = 0.085 +ij[3048] = 28.1 +id[3049] = "2192-03-03T11:45:24" +ik[3049] = 0.836 +il[3049] = -84 +im[3049] = 0.0783 +ij[3049] = 27.5 +id[3050] = "2192-04-18T08:57:07" +ik[3050] = 1.08 +il[3050] = 34 +im[3050] = 0.0852 +ij[3050] = 12 +id[3051] = "2192-05-21T03:47:39" +ik[3051] = 2.059 +il[3051] = -38 +im[3051] = 0.0885 +ij[3051] = 28.6 +id[3052] = "2192-05-22T22:08:57" +ik[3052] = 4.435 +il[3052] = -44 +im[3052] = 0.0767 +ij[3052] = 27.2 +id[3053] = "2192-06-02T23:36:05" +ik[3053] = 0.677 +il[3053] = -9 +im[3053] = 0.0815 +ij[3053] = 28.1 +id[3054] = "2192-06-09T15:25:55" +ik[3054] = 0.274 +il[3054] = 14 +im[3054] = 0.0297 +ij[3054] = 27.9 +id[3055] = "2192-08-27T02:36:48" +ik[3055] = 0.826 +il[3055] = -107 +im[3055] = 0.0358 +ij[3055] = 28.8 +id[3056] = "2192-09-03T02:32:07" +ik[3056] = 54.29 +il[3056] = -85 +im[3056] = 0.1186 +ij[3056] = 9 +id[3057] = "2192-10-08T17:16:04" +ik[3057] = 2.028 +il[3057] = 23 +im[3057] = 0.0474 +ij[3057] = 28.7 +id[3058] = "2192-10-11T07:37:24" +ik[3058] = 2.059 +il[3058] = 31 +im[3058] = 0.0306 +ij[3058] = 27.4 +id[3059] = "2192-11-21T08:08:40" +ik[3059] = 90 +il[3059] = 158 +im[3059] = 0.0771 +ij[3059] = 6 +id[3060] = "2192-12-16T22:30:44" +ik[3060] = 0.508 +il[3060] = -139 +im[3060] = 0.2754 +ij[3060] = 27.3 +id[3061] = "2193-01-09T21:19:17" +ik[3061] = 5.646 +il[3061] = -93 +im[3061] = 0.338 +ij[3061] = 28.5 +id[3062] = "2193-01-10T08:18:12" +ik[3062] = 0 +il[3062] = -92 +im[3062] = 0.3683 +ij[3062] = 13 +id[3063] = "2193-01-26T11:04:33" +ik[3063] = 0.5629 +il[3063] = -103 +im[3063] = 0.563 +ij[3063] = 2 +id[3064] = "2193-01-31T20:03:50" +ik[3064] = 7.35 +il[3064] = -58 +im[3064] = 0.1865 +ij[3064] = 11 +id[3065] = "2193-02-21T15:33:55" +ik[3065] = 42.3 +il[3065] = -48 +im[3065] = 0.4701 +ij[3065] = 7.1571 +id[3066] = "2193-03-23T00:03:53" +ik[3066] = 3.944 +il[3066] = 34 +im[3066] = 0.2906 +ij[3066] = 28.5 +id[3067] = "2193-03-25T19:52:43" +ik[3067] = 74.48 +il[3067] = 40 +im[3067] = 0.2071 +ij[3067] = 14 +id[3068] = "2193-04-08T17:52:04" +ik[3068] = 1.768 +il[3068] = 74 +im[3068] = 0.1519 +ij[3068] = 27.5 +id[3069] = "2193-04-13T10:22:14" +ik[3069] = 90 +il[3069] = 87 +im[3069] = 0.044 +ij[3069] = 5 +id[3070] = "2193-05-28T15:14:43" +ik[3070] = 4.14 +il[3070] = -133 +im[3070] = 0.0332 +ij[3070] = 27.6 +id[3071] = "2193-06-27T05:29:55" +ik[3071] = 54.45 +il[3071] = -42 +im[3071] = 0.0265 +ij[3071] = 8 +id[3072] = "2193-07-07T08:40:08" +ik[3072] = 6.153 +il[3072] = -11 +im[3072] = 0.0863 +ij[3072] = 27.2 +id[3073] = "2193-07-11T04:39:21" +ik[3073] = 0.131 +il[3073] = 0 +im[3073] = 0.017 +ij[3073] = 28.6 +id[3074] = "2193-09-30T20:55:49" +ik[3074] = 1.749 +il[3074] = -111 +im[3074] = 0.0879 +ij[3074] = 28.1 +id[3075] = "2193-10-03T08:52:48" +ik[3075] = 0.576 +il[3075] = -101 +im[3075] = 0.0898 +ij[3075] = 28.4 +id[3076] = "2193-10-11T12:56:26" +ik[3076] = 0.076 +il[3076] = -76 +im[3076] = 0.0297 +ij[3076] = 28.8 +id[3077] = "2193-11-15T07:59:31" +ik[3077] = 0.6 +il[3077] = 11 +im[3077] = 0.0852 +ij[3077] = 12 +id[3078] = "2194-01-02T20:47:11" +ik[3078] = 1.816 +il[3078] = -26 +im[3078] = 0.0782 +ij[3078] = 28.1 +id[3079] = "2194-01-15T04:47:37" +ik[3079] = 0.154 +il[3079] = 11 +im[3079] = 0.0942 +ij[3079] = 27.3 +id[3080] = "2194-02-01T20:47:37" +ik[3080] = 1.135 +il[3080] = 66 +im[3080] = 0.0815 +ij[3080] = 27.5 +id[3081] = "2194-02-20T10:55:37" +ik[3081] = 0.147 +il[3081] = 123 +im[3081] = 0.0498 +ij[3081] = 28.5 +id[3082] = "2194-03-17T22:36:42" +ik[3082] = 2.37 +il[3082] = -157 +im[3082] = 0.107 +ij[3082] = 27.6 +id[3083] = "2194-04-17T04:29:30" +ik[3083] = 54.375 +il[3083] = -62 +im[3083] = 0.1179 +ij[3083] = 9 +id[3084] = "2194-04-24T18:46:17" +ik[3084] = 2.972 +il[3084] = -38 +im[3084] = 0.0318 +ij[3084] = 27.2 +id[3085] = "2194-05-12T23:12:54" +ik[3085] = 3.102 +il[3085] = 18 +im[3085] = 0.0979 +ij[3085] = 28.6 +id[3086] = "2194-06-25T17:42:44" +ik[3086] = 90 +il[3086] = 152 +im[3086] = 0.1559 +ij[3086] = 6 +id[3087] = "2194-08-13T18:57:43" +ik[3087] = -0.04 +il[3087] = -102 +im[3087] = 0.3549 +ij[3087] = 13 +id[3088] = "2194-08-25T10:18:54" +ik[3088] = 0.5115 +il[3088] = -88 +im[3088] = 0.5115 +ij[3088] = 2 +id[3089] = "2194-09-04T14:34:04" +ik[3089] = 8.62 +il[3089] = -83 +im[3089] = 0.3691 +ij[3089] = 11 +id[3090] = "2194-09-26T18:02:01" +ik[3090] = 42.43 +il[3090] = -73 +im[3090] = 0.1082 +ij[3090] = 7.1115 +id[3091] = "2194-10-22T12:13:41" +ik[3091] = 75.33 +il[3091] = 18 +im[3091] = 0.2086 +ij[3091] = 14 +id[3092] = "2194-11-14T09:07:56" +ik[3092] = 90 +il[3092] = 73 +im[3092] = 0.2034 +ij[3092] = 5 +id[3093] = "2194-11-19T23:02:15" +ik[3093] = 0.037 +il[3093] = 90 +im[3093] = 0.1765 +ij[3093] = 28.8 +id[3094] = "2195-01-05T20:43:16" +ik[3094] = 2.017 +il[3094] = -124 +im[3094] = 0.0531 +ij[3094] = 28.7 +id[3095] = "2195-01-12T21:02:17" +ik[3095] = 3.491 +il[3095] = -102 +im[3095] = 0.1143 +ij[3095] = 27.1 +id[3096] = "2195-01-30T14:48:11" +ik[3096] = 53.716 +il[3096] = -47 +im[3096] = 0.1185 +ij[3096] = 8 +id[3097] = "2195-02-28T22:18:17" +ik[3097] = 1.05 +il[3097] = 45 +im[3097] = 0.1067 +ij[3097] = 27.3 +id[3098] = "2195-03-18T19:04:30" +ik[3098] = 0.575 +il[3098] = 100 +im[3098] = 0.0899 +ij[3098] = 27.5 +id[3099] = "2195-04-24T17:32:03" +ik[3099] = 0.53 +il[3099] = -147 +im[3099] = 0.032 +ij[3099] = 28.1 +id[3100] = "2195-04-27T03:40:19" +ik[3100] = 0.04 +il[3100] = -139 +im[3100] = 0.0686 +ij[3100] = 28.5 +id[3101] = "2195-05-01T21:15:35" +ik[3101] = 3.5 +il[3101] = -125 +im[3101] = 0.0928 +ij[3101] = 27.6 +id[3102] = "2195-06-26T20:19:40" +ik[3102] = 0.41 +il[3102] = 24 +im[3102] = 0.0639 +ij[3102] = 12 +id[3103] = "2195-08-13T08:58:33" +ik[3103] = 3.611 +il[3103] = -11 +im[3103] = 0.0898 +ij[3103] = 28.1 +id[3104] = "2195-09-16T00:28:48" +ik[3104] = 0.703 +il[3104] = 92 +im[3104] = 0.0878 +ij[3104] = 28.8 +id[3105] = "2195-10-23T22:40:03" +ik[3105] = 3.256 +il[3105] = -153 +im[3105] = 0.0509 +ij[3105] = 27.4 +id[3106] = "2195-10-31T20:22:24" +ik[3106] = 1.213 +il[3106] = -129 +im[3106] = 0.0827 +ij[3106] = 28.7 +id[3107] = "2195-11-01T15:27:12" +ik[3107] = 0.373 +il[3107] = -127 +im[3107] = 0.0699 +ij[3107] = 28.4 +id[3108] = "2195-11-16T11:39:45" +ik[3108] = 53.657 +il[3108] = -82 +im[3108] = 0.0931 +ij[3108] = 9 +id[3109] = "2195-12-19T07:49:23" +ik[3109] = 0.887 +il[3109] = 20 +im[3109] = 0.0324 +ij[3109] = 27.3 +id[3110] = "2196-01-07T13:35:37" +ik[3110] = 1.046 +il[3110] = 79 +im[3110] = 0.0942 +ij[3110] = 27.5 +id[3111] = "2196-02-05T02:31:41" +ik[3111] = 90 +il[3111] = 169 +im[3111] = 0.0677 +ij[3111] = 6 +id[3112] = "2196-03-03T08:31:35" +ik[3112] = 2.4 +il[3112] = -126 +im[3112] = 0.0352 +ij[3112] = 27.6 +id[3113] = "2196-03-23T12:14:08" +ik[3113] = 0 +il[3113] = -137 +im[3113] = 0.4393 +ij[3113] = 13 +id[3114] = "2196-04-14T03:22:23" +ik[3114] = 5.04 +il[3114] = -65 +im[3114] = 0.1329 +ij[3114] = 27.6 +id[3115] = "2196-04-14T19:45:07" +ik[3115] = 6.9 +il[3115] = -54 +im[3115] = 0.2156 +ij[3115] = 11 +id[3116] = "2196-04-19T16:41:33" +ik[3116] = 0.5312 +il[3116] = -44 +im[3116] = 0.5312 +ij[3116] = 2 +id[3117] = "2196-05-05T13:20:43" +ik[3117] = 43.05 +il[3117] = -34 +im[3117] = 0.3602 +ij[3117] = 7.1634 +id[3118] = "2196-05-29T00:34:15" +ik[3118] = 3.63 +il[3118] = 24 +im[3118] = 0.2403 +ij[3118] = 27.6 +id[3119] = "2196-06-08T02:15:27" +ik[3119] = 76.58 +il[3119] = 40 +im[3119] = 0.0547 +ij[3119] = 14 +id[3120] = "2196-06-24T01:39:29" +ik[3120] = 90 +il[3120] = 88 +im[3120] = 0.0633 +ij[3120] = 5 +id[3121] = "2196-06-24T14:32:03" +ik[3121] = 1.66 +il[3121] = 90 +im[3121] = 0.0833 +ij[3121] = 28.5 +id[3122] = "2196-08-21T11:39:59" +ik[3122] = 0.853 +il[3122] = -93 +im[3122] = 0.0077 +ij[3122] = 28.6 +id[3123] = "2196-09-04T02:03:47" +ik[3123] = 54.452 +il[3123] = -52 +im[3123] = 0.0075 +ij[3123] = 8 +id[3124] = "2196-10-31T03:02:35" +ik[3124] = 0.022 +il[3124] = 124 +im[3124] = 0.0689 +ij[3124] = 28.8 +id[3125] = "2196-11-29T00:25:20" +ik[3125] = 1.159 +il[3125] = -146 +im[3125] = 0.0828 +ij[3125] = 28.1 +id[3126] = "2196-12-16T05:35:05" +ik[3126] = 0.444 +il[3126] = -92 +im[3126] = 0.0469 +ij[3126] = 28.7 +id[3127] = "2197-01-30T09:51:50" +ik[3127] = 1.14 +il[3127] = 26 +im[3127] = 0.0592 +ij[3127] = 12 +id[3128] = "2197-04-01T02:20:09" +ik[3128] = 2.84 +il[3128] = 26 +im[3128] = 0.0503 +ij[3128] = 27.6 +id[3129] = "2197-05-08T00:30:16" +ik[3129] = 3.825 +il[3129] = 141 +im[3129] = 0.0806 +ij[3129] = 27.2 +id[3130] = "2197-05-20T06:16:42" +ik[3130] = 1.352 +il[3130] = 180 +im[3130] = 0.0154 +ij[3130] = 28.5 +id[3131] = "2197-06-22T21:24:37" +ik[3131] = 1.322 +il[3131] = -76 +im[3131] = 0.093 +ij[3131] = 28.6 +id[3132] = "2197-06-24T06:37:34" +ik[3132] = 54.675 +il[3132] = -72 +im[3132] = 0.1086 +ij[3132] = 9 +id[3133] = "2197-08-26T19:54:11" +ik[3133] = 2.998 +il[3133] = 121 +im[3133] = 0.1617 +ij[3133] = 28.8 +id[3134] = "2197-09-04T16:29:19" +ik[3134] = 90 +il[3134] = 148 +im[3134] = 0.1467 +ij[3134] = 6 +id[3135] = "2197-10-26T02:15:54" +ik[3135] = 0 +il[3135] = -99 +im[3135] = 0.2199 +ij[3135] = 13 +id[3136] = "2197-11-16T14:41:16" +ik[3136] = 3.69 +il[3136] = -100 +im[3136] = 0.5601 +ij[3136] = 11 +id[3137] = "2197-11-16T18:17:31" +ik[3137] = 0.5604 +il[3137] = -89 +im[3137] = 0.5605 +ij[3137] = 2 +id[3138] = "2197-12-07T01:20:29" +ik[3138] = 41.96 +il[3138] = -76 +im[3138] = 0.0297 +ij[3138] = 7.1549 +id[3139] = "2198-01-07T12:14:12" +ik[3139] = 73.42 +il[3139] = 21 +im[3139] = 0.1845 +ij[3139] = 14 +id[3140] = "2198-01-19T05:12:30" +ik[3140] = 1.603 +il[3140] = 57 +im[3140] = 0.0182 +ij[3140] = 27.1 +id[3141] = "2198-01-23T21:26:47" +ik[3141] = 3.679 +il[3141] = 72 +im[3141] = 0.1828 +ij[3141] = 28.7 +id[3142] = "2198-01-26T12:42:53" +ik[3142] = 90 +il[3142] = 79 +im[3142] = 0.2133 +ij[3142] = 5 +id[3143] = "2198-02-13T21:54:25" +ik[3143] = 3.1 +il[3143] = 136 +im[3143] = 0.1387 +ij[3143] = 28.4 +id[3144] = "2198-03-13T06:01:23" +ik[3144] = 1.998 +il[3144] = -138 +im[3144] = 0.1494 +ij[3144] = 27.3 +id[3145] = "2198-03-31T21:05:50" +ik[3145] = 0.068 +il[3145] = -80 +im[3145] = 0.0588 +ij[3145] = 27.5 +id[3146] = "2198-04-15T05:58:29" +ik[3146] = 54.014 +il[3146] = -36 +im[3146] = 0.0901 +ij[3146] = 8 +id[3147] = "2198-05-16T00:00:02" +ik[3147] = 3.8 +il[3147] = 59 +im[3147] = 0.0654 +ij[3147] = 27.6 +id[3148] = "2198-06-23T01:24:08" +ik[3148] = 5.447 +il[3148] = 174 +im[3148] = 0.0848 +ij[3148] = 27.2 +id[3149] = "2198-07-06T01:38:12" +ik[3149] = 2.756 +il[3149] = -146 +im[3149] = 0.0513 +ij[3149] = 28.1 +id[3150] = "2198-07-28T06:50:32" +ik[3150] = 0.104 +il[3150] = -78 +im[3150] = 0.0748 +ij[3150] = 28.5 +id[3151] = "2198-09-02T08:12:28" +ik[3151] = 1.39 +il[3151] = 11 +im[3151] = 0.0175 +ij[3151] = 12 +id[3152] = "2198-10-06T04:15:27" +ik[3152] = 0.895 +il[3152] = -66 +im[3152] = 0.0731 +ij[3152] = 28.8 +id[3153] = "2198-10-15T12:11:48" +ik[3153] = 2.417 +il[3153] = -32 +im[3153] = 0.0114 +ij[3153] = 28.1 +id[3154] = "2198-11-06T17:55:36" +ik[3154] = 3.954 +il[3154] = 29 +im[3154] = 0.0896 +ij[3154] = 27.4 +id[3155] = "2198-11-24T15:18:25" +ik[3155] = 0.741 +il[3155] = 84 +im[3155] = 0.0904 +ij[3155] = 28.7 +id[3156] = "2198-12-31T16:07:36" +ik[3156] = 0.499 +il[3156] = -179 +im[3156] = 0.0327 +ij[3156] = 27.3 +id[3157] = "2199-01-18T16:04:56" +ik[3157] = 1.206 +il[3157] = -107 +im[3157] = 0.0715 +ij[3157] = 27.5 +id[3158] = "2199-01-31T23:09:37" +ik[3158] = 53.701 +il[3158] = -66 +im[3158] = 0.0637 +ij[3158] = 9 +id[3159] = "2199-03-05T04:56:57" +ik[3159] = 1.43 +il[3159] = 35 +im[3159] = 0.1207 +ij[3159] = 27.6 +id[3160] = "2199-04-16T10:38:10" +ik[3160] = 90 +il[3160] = 167 +im[3160] = 0.0829 +ij[3160] = 6 +id[3161] = "2199-04-16T13:36:56" +ik[3161] = 1.084 +il[3161] = 166 +im[3161] = 0.0883 +ij[3161] = 27.2 +id[3162] = "2199-06-01T12:14:40" +ik[3162] = 0 +il[3162] = -95 +im[3162] = 0.3406 +ij[3162] = 13 +id[3163] = "2199-06-24T04:46:33" +ik[3163] = 2.13 +il[3163] = -70 +im[3163] = 0.0656 +ij[3163] = 11 +id[3164] = "2199-06-30T08:57:29" +ik[3164] = 0.5069 +il[3164] = -42 +im[3164] = 0.5069 +ij[3164] = 2 +id[3165] = "2199-07-16T11:17:14" +ik[3165] = 44.96 +il[3165] = -23 +im[3165] = 0.2998 +ij[3165] = 7.1662 +id[3166] = "2199-08-19T00:52:57" +ik[3166] = 78.53 +il[3166] = 43 +im[3166] = 0.0643 +ij[3166] = 14 +id[3167] = "2199-09-02T11:05:35" +ik[3167] = 90 +il[3167] = 81 +im[3167] = 0.0415 +ij[3167] = 5 +id[3168] = "2199-10-02T06:05:55" +ik[3168] = 1.64 +il[3168] = 171 +im[3168] = 0.0443 +ij[3168] = 28.6 +id[3169] = "2199-10-04T05:17:13" +ik[3169] = 1.126 +il[3169] = 177 +im[3169] = 0.1017 +ij[3169] = 28.5 +id[3170] = "2199-11-14T20:18:58" +ik[3170] = 54.027 +il[3170] = -55 +im[3170] = 0.0224 +ij[3170] = 8 +id[3171] = "2199-11-19T23:00:05" +ik[3171] = 0.156 +il[3171] = -39 +im[3171] = 0.0918 +ij[3171] = 28.8 +id[3172] = "2199-12-30T16:20:29" +ik[3172] = 4.405 +il[3172] = 88 +im[3172] = 0.0141 +ij[3172] = 27.1 +id[3173] = "2200-01-10T12:03:10" +ik[3173] = 0.789 +il[3173] = 122 +im[3173] = 0.0797 +ij[3173] = 28.7 +id[3174] = "2200-01-28T13:03:30" +ik[3174] = 2.824 +il[3174] = 178 +im[3174] = 0.0177 +ij[3174] = 28.1 +id[3175] = "2200-02-14T09:45:23" +ik[3175] = 0.53 +il[3175] = -129 +im[3175] = 0.0163 +ij[3175] = 27.3 +id[3176] = "2200-02-22T02:07:43" +ik[3176] = 1.006 +il[3176] = -106 +im[3176] = 0.0875 +ij[3176] = 28.4 +id[3177] = "2200-03-04T00:53:23" +ik[3177] = 0.843 +il[3177] = -75 +im[3177] = 0.0514 +ij[3177] = 27.5 +id[3178] = "2200-04-16T23:41:16" +ik[3178] = 1.11 +il[3178] = 37 +im[3178] = 0.0415 +ij[3178] = 12 +id[3179] = "2200-05-23T11:16:56" +ik[3179] = 4.416 +il[3179] = -35 +im[3179] = 0.0899 +ij[3179] = 27.2 +id[3180] = "2200-06-10T03:52:16" +ik[3180] = 0.003 +il[3180] = 21 +im[3180] = 0.0622 +ij[3180] = 27.9 +id[3181] = "2200-08-05T08:39:07" +ik[3181] = 0.434 +il[3181] = -166 +im[3181] = 0.1068 +ij[3181] = 28.6 +id[3182] = "2200-08-30T12:02:00" +ik[3182] = 0.855 +il[3182] = -89 +im[3182] = 0.0603 +ij[3182] = 28.5 +id[3183] = "2200-09-01T18:14:32" +ik[3183] = 54.312 +il[3183] = -83 +im[3183] = 0.1027 +ij[3183] = 9 +id[3184] = "2200-09-11T19:05:29" +ik[3184] = 1.878 +il[3184] = -52 +im[3184] = 0.0286 +ij[3184] = 28.8 +id[3185] = "2200-10-12T01:19:09" +ik[3185] = 2 +il[3185] = 40 +im[3185] = 0.031 +ij[3185] = 27.4 +id[3186] = "2200-11-09T08:29:45" +ik[3186] = 2.897 +il[3186] = 127 +im[3186] = 0.096 +ij[3186] = 28.7 +id[3187] = "2200-11-19T19:20:02" +ik[3187] = 90 +il[3187] = 159 +im[3187] = 0.2027 +ij[3187] = 6 +id[3188] = "2200-12-19T05:08:03" +ik[3188] = 0.288 +il[3188] = -128 +im[3188] = 0.3017 +ij[3188] = 27.3 +id[3189] = "2201-01-09T00:53:24" +ik[3189] = 0 +il[3189] = -90 +im[3189] = 0.0901 +ij[3189] = 13 +id[3190] = "2201-01-28T11:48:41" +ik[3190] = 0.5622 +il[3190] = -67 +im[3190] = 0.5623 +ij[3190] = 2 +id[3191] = "2201-01-30T08:41:16" +ik[3191] = 7.12 +il[3191] = -56 +im[3191] = 0.508 +ij[3191] = 11 +id[3192] = "2201-02-20T06:01:59" +ik[3192] = 42.21 +il[3192] = -46 +im[3192] = 0.3205 +ij[3192] = 7.1569 +id[3193] = "2201-03-24T07:28:48" +ik[3193] = 74.27 +il[3193] = 42 +im[3193] = 0.2794 +ij[3193] = 14 +id[3194] = "2201-04-09T19:42:43" +ik[3194] = 1.63 +il[3194] = 84 +im[3194] = 0.1902 +ij[3194] = 27.5 +id[3195] = "2201-04-11T23:30:22" +ik[3195] = 90 +il[3195] = 90 +im[3195] = 0.1268 +ij[3195] = 5 +id[3196] = "2201-05-29T07:54:57" +ik[3196] = 4.13 +il[3196] = -124 +im[3196] = 0.0193 +ij[3196] = 27.6 +id[3197] = "2201-06-25T22:19:53" +ik[3197] = 54.441 +il[3197] = -39 +im[3197] = 0.0657 +ij[3197] = 8 +id[3198] = "2201-07-07T23:01:01" +ik[3198] = 6.126 +il[3198] = -3 +im[3198] = 0.1114 +ij[3198] = 27.2 +id[3199] = "2201-09-12T12:55:17" +ik[3199] = 1.981 +il[3199] = -159 +im[3199] = 0.0057 +ij[3199] = 28.1 +id[3200] = "2201-09-27T03:23:54" +ik[3200] = 0.76 +il[3200] = -114 +im[3200] = 0.0042 +ij[3200] = 28.6 +id[3201] = "2201-11-13T20:55:40" +ik[3201] = 0.66 +il[3201] = 13 +im[3201] = 0.0464 +ij[3201] = 12 +id[3202] = "2201-12-20T16:51:10" +ik[3202] = 0.773 +il[3202] = -49 +im[3202] = 0.0882 +ij[3202] = 28.7 +id[3203] = "2202-01-15T18:03:36" +ik[3203] = 0.163 +il[3203] = 20 +im[3203] = 0.0811 +ij[3203] = 27.3 +id[3204] = "2202-02-02T10:10:16" +ik[3204] = 1.137 +il[3204] = 74 +im[3204] = 0.0907 +ij[3204] = 27.5 +id[3205] = "2202-02-27T18:41:54" +ik[3205] = 0.897 +il[3205] = 153 +im[3205] = 0.0514 +ij[3205] = 28.4 +id[3206] = "2202-03-18T12:37:50" +ik[3206] = 2.34 +il[3206] = -148 +im[3206] = 0.0997 +ij[3206] = 27.6 +id[3207] = "2202-04-15T20:36:48" +ik[3207] = 54.355 +il[3207] = -59 +im[3207] = 0.0885 +ij[3207] = 9 +id[3208] = "2202-04-25T10:08:29" +ik[3208] = 2.934 +il[3208] = -30 +im[3208] = 0.021 +ij[3208] = 27.2 +id[3209] = "2202-06-24T10:54:06" +ik[3209] = 90 +il[3209] = 155 +im[3209] = 0.0154 +ij[3209] = 6 +id[3210] = "2202-08-12T07:29:15" +ik[3210] = 0 +il[3210] = -100 +im[3210] = 0.3723 +ij[3210] = 13 +id[3211] = "2202-08-27T13:06:31" +ik[3211] = 0.5235 +il[3211] = -81 +im[3211] = 0.5235 +ij[3211] = 2 +id[3212] = "2202-09-03T05:09:36" +ik[3212] = 8.56 +il[3212] = -75 +im[3212] = 0.0695 +ij[3212] = 11 +id[3213] = "2202-09-24T17:44:52" +ik[3213] = 43.43 +il[3213] = -30 +im[3213] = 0.4142 +ij[3213] = 7.1629 +id[3214] = "2202-10-27T17:02:39" +ik[3214] = 76.4 +il[3214] = 35 +im[3214] = 0.0597 +ij[3214] = 14 +id[3215] = "2202-11-11T20:15:38" +ik[3215] = 1.601 +il[3215] = 74 +im[3215] = 0.0191 +ij[3215] = 28.6 +id[3216] = "2202-11-12T23:43:38" +ik[3216] = 90 +il[3216] = 76 +im[3216] = 0.068 +ij[3216] = 5 +id[3217] = "2202-12-07T07:00:37" +ik[3217] = 0.535 +il[3217] = 151 +im[3217] = 0.1225 +ij[3217] = 28.8 +id[3218] = "2203-01-13T12:47:09" +ik[3218] = 3.533 +il[3218] = -93 +im[3218] = 0.0711 +ij[3218] = 27.1 +id[3219] = "2203-01-16T20:08:00" +ik[3219] = 1.078 +il[3219] = -83 +im[3219] = 0.1216 +ij[3219] = 28.5 +id[3220] = "2203-01-29T02:21:42" +ik[3220] = 53.716 +il[3220] = -45 +im[3220] = 0.0831 +ij[3220] = 8 +id[3221] = "2203-02-04T08:49:55" +ik[3221] = 1.257 +il[3221] = -25 +im[3221] = 0.1068 +ij[3221] = 28.7 +id[3222] = "2203-03-01T12:20:29" +ik[3222] = 1.029 +il[3222] = 53 +im[3222] = 0.0932 +ij[3222] = 27.3 +id[3223] = "2203-03-19T08:44:56" +ik[3223] = 0.586 +il[3223] = 109 +im[3223] = 0.0948 +ij[3223] = 27.5 +id[3224] = "2203-04-03T05:08:26" +ik[3224] = 1.313 +il[3224] = 154 +im[3224] = 0.0996 +ij[3224] = 28.1 +id[3225] = "2203-05-02T10:31:45" +ik[3225] = 3.49 +il[3225] = -116 +im[3225] = 0.0892 +ij[3225] = 27.6 +id[3226] = "2203-05-17T02:06:51" +ik[3226] = 0.302 +il[3226] = -72 +im[3226] = 0.0813 +ij[3226] = 28.1 +id[3227] = "2203-06-25T15:01:26" +ik[3227] = 0.36 +il[3227] = 27 +im[3227] = 0.0076 +ij[3227] = 12 +id[3228] = "2203-09-19T20:35:13" +ik[3228] = 1.715 +il[3228] = 110 +im[3228] = 0.0765 +ij[3228] = 28.6 +id[3229] = "2203-10-01T05:08:44" +ik[3229] = 1.471 +il[3229] = 145 +im[3229] = 0.0964 +ij[3229] = 28.8 +id[3230] = "2203-10-24T13:04:29" +ik[3230] = 3.228 +il[3230] = -145 +im[3230] = 0.0166 +ij[3230] = 27.4 +id[3231] = "2203-11-14T22:59:03" +ik[3231] = 53.672 +il[3231] = -80 +im[3231] = 0.1183 +ij[3231] = 9 +id[3232] = "2203-11-30T13:34:27" +ik[3232] = 1.675 +il[3232] = -32 +im[3232] = 0.1321 +ij[3232] = 28.7 +id[3233] = "2203-12-10T16:02:48" +ik[3233] = 1.618 +il[3233] = -1 +im[3233] = 0.0644 +ij[3233] = 28.5 +id[3234] = "2203-12-20T00:26:42" +ik[3234] = 0.899 +il[3234] = 29 +im[3234] = 0.0811 +ij[3234] = 27.3 +id[3235] = "2204-01-08T08:30:16" +ik[3235] = 1.023 +il[3235] = 89 +im[3235] = 0.0315 +ij[3235] = 27.5 +id[3236] = "2204-02-03T16:11:39" +ik[3236] = 90 +il[3236] = 171 +im[3236] = 0.1119 +ij[3236] = 6 +id[3237] = "2204-03-05T15:00:46" +ik[3237] = 2.85 +il[3237] = -116 +im[3237] = 0.0722 +ij[3237] = 27.6 +id[3238] = "2204-03-21T17:03:06" +ik[3238] = 0 +il[3238] = -87 +im[3238] = 0.2255 +ij[3238] = 13 +id[3239] = "2204-04-08T05:09:36" +ik[3239] = 5.63 +il[3239] = -66 +im[3239] = 0.487 +ij[3239] = 27.6 +id[3240] = "2204-04-13T10:59:31" +ik[3240] = 7.12 +il[3240] = -52 +im[3240] = 0.223 +ij[3240] = 11 +id[3241] = "2204-04-21T20:31:21" +ik[3241] = 0.5236 +il[3241] = -42 +im[3241] = 0.5237 +ij[3241] = 2 +id[3242] = "2204-05-04T02:15:43" +ik[3242] = 43.38 +il[3242] = -32 +im[3242] = 0.3865 +ij[3242] = 7.1631 +id[3243] = "2204-05-28T10:41:22" +ik[3243] = 0.788 +il[3243] = 29 +im[3243] = 0.0873 +ij[3243] = 28.4 +id[3244] = "2204-05-31T03:12:27" +ik[3244] = 3.79 +il[3244] = 34 +im[3244] = 0.215 +ij[3244] = 27.6 +id[3245] = "2204-06-06T15:31:29" +ik[3245] = 76.94 +il[3245] = 44 +im[3245] = 0.1486 +ij[3245] = 14 +id[3246] = "2204-06-22T17:44:31" +ik[3246] = 90 +il[3246] = 91 +im[3246] = 0.1109 +ij[3246] = 5 +id[3247] = "2204-09-02T18:43:05" +ik[3247] = 54.461 +il[3247] = -49 +im[3247] = 0.091 +ij[3247] = 8 +id[3248] = "2204-11-11T05:48:02" +ik[3248] = 1.047 +il[3248] = 165 +im[3248] = 0.072 +ij[3248] = 28.6 +id[3249] = "2204-11-12T15:19:35" +ik[3249] = 1.052 +il[3249] = 170 +im[3249] = 0.0846 +ij[3249] = 28.1 +id[3250] = "2204-11-15T02:53:22" +ik[3250] = 0.329 +il[3250] = 177 +im[3250] = 0.087 +ij[3250] = 28.8 +id[3251] = "2204-11-27T20:39:07" +ik[3251] = 1.041 +il[3251] = -143 +im[3251] = 0.0918 +ij[3251] = 28.1 +id[3252] = "2205-01-28T19:36:28" +ik[3252] = 1.1 +il[3252] = 28 +im[3252] = 0.0877 +ij[3252] = 12 +id[3253] = "2205-04-01T15:34:24" +ik[3253] = 2.83 +il[3253] = 34 +im[3253] = 0.0744 +ij[3253] = 27.6 +id[3254] = "2205-05-08T14:10:15" +ik[3254] = 3.802 +il[3254] = 150 +im[3254] = 0.0482 +ij[3254] = 27.2 +id[3255] = "2205-06-23T00:52:52" +ik[3255] = 54.676 +il[3255] = -69 +im[3255] = 0.0528 +ij[3255] = 9 +id[3256] = "2205-09-03T05:51:36" +ik[3256] = 90 +il[3256] = 151 +im[3256] = 0.0326 +ij[3256] = 6 +id[3257] = "2205-09-15T02:19:58" +ik[3257] = 5.128 +il[3257] = -177 +im[3257] = 0.1301 +ij[3257] = 28.8 +id[3258] = "2205-10-23T15:31:56" +ik[3258] = 0 +il[3258] = -98 +im[3258] = 0.4587 +ij[3258] = 13 +id[3259] = "2205-11-15T03:57:36" +ik[3259] = 4.04 +il[3259] = -50 +im[3259] = 0.3639 +ij[3259] = 11 +id[3260] = "2205-11-18T21:24:42" +ik[3260] = 0.5661 +il[3260] = -47 +im[3260] = 0.5661 +ij[3260] = 2 +id[3261] = "2205-12-05T14:34:31" +ik[3261] = 42.96 +il[3261] = -28 +im[3261] = 0.3376 +ij[3261] = 7.1548 +id[3262] = "2205-12-07T02:54:23" +ik[3262] = 2.338 +il[3262] = -25 +im[3262] = 0.2049 +ij[3262] = 28.6 +id[3263] = "2206-01-06T01:06:14" +ik[3263] = 74.4 +il[3263] = 23 +im[3263] = 0.0284 +ij[3263] = 14 +id[3264] = "2206-01-20T09:50:15" +ik[3264] = 1.709 +il[3264] = 68 +im[3264] = 0.0749 +ij[3264] = 27.1 +id[3265] = "2206-01-25T01:15:38" +ik[3265] = 90 +il[3265] = 81 +im[3265] = 0.1314 +ij[3265] = 5 +id[3266] = "2206-02-26T14:40:24" +ik[3266] = 2.09 +il[3266] = -177 +im[3266] = 0.1474 +ij[3266] = 28.7 +id[3267] = "2206-03-13T22:35:35" +ik[3267] = 1.95 +il[3267] = -129 +im[3267] = 0.1483 +ij[3267] = 27.3 +id[3268] = "2206-04-01T12:24:56" +ik[3268] = 0.095 +il[3268] = -72 +im[3268] = 0.0961 +ij[3268] = 27.5 +id[3269] = "2206-04-13T19:43:34" +ik[3269] = 53.998 +il[3269] = -33 +im[3269] = 0.123 +ij[3269] = 8 +id[3270] = "2206-04-18T20:29:36" +ik[3270] = 0.133 +il[3270] = -18 +im[3270] = 0.0659 +ij[3270] = 28.5 +id[3271] = "2206-05-16T14:00:24" +ik[3271] = 3.79 +il[3271] = 67 +im[3271] = 0.0897 +ij[3271] = 27.6 +id[3272] = "2206-06-14T06:59:02" +ik[3272] = 2.356 +il[3272] = 155 +im[3272] = 0.089 +ij[3272] = 28.1 +id[3273] = "2206-06-23T14:39:14" +ik[3273] = 5.428 +il[3273] = -179 +im[3273] = 0.063 +ij[3273] = 27.2 +id[3274] = "2206-06-26T16:22:56" +ik[3274] = 0.957 +il[3274] = -168 +im[3274] = 0.0922 +ij[3274] = 28.4 +id[3275] = "2206-07-08T07:15:36" +ik[3275] = 0.595 +il[3275] = -132 +im[3275] = 0.0432 +ij[3275] = 28.1 +id[3276] = "2206-09-01T01:07:40" +ik[3276] = 1.38 +il[3276] = 14 +im[3276] = 0.0521 +ij[3276] = 12 +id[3277] = "2206-10-20T15:18:43" +ik[3277] = 1.213 +il[3277] = -16 +im[3277] = 0.0283 +ij[3277] = 28.8 +id[3278] = "2206-11-05T10:39:04" +ik[3278] = 2.06 +il[3278] = 32 +im[3278] = 0.0504 +ij[3278] = 28.6 +id[3279] = "2206-11-07T07:27:09" +ik[3279] = 3.934 +il[3279] = 38 +im[3279] = 0.0773 +ij[3279] = 27.4 +id[3280] = "2206-12-24T05:53:05" +ik[3280] = 1.073 +il[3280] = -179 +im[3280] = 0.0917 +ij[3280] = 28.7 +id[3281] = "2207-01-01T06:09:49" +ik[3281] = 0.51 +il[3281] = -154 +im[3281] = 0.0149 +ij[3281] = 27.3 +id[3282] = "2207-01-19T06:34:42" +ik[3282] = 1.205 +il[3282] = -99 +im[3282] = 0.0339 +ij[3282] = 27.5 +id[3283] = "2207-01-30T10:28:55" +ik[3283] = 53.684 +il[3283] = -64 +im[3283] = 0.0411 +ij[3283] = 9 +id[3284] = "2207-03-05T21:44:18" +ik[3284] = 1.38 +il[3284] = 44 +im[3284] = 0.0725 +ij[3284] = 27.6 +id[3285] = "2207-03-09T11:49:20" +ik[3285] = 2.013 +il[3285] = 55 +im[3285] = 0.1431 +ij[3285] = 28.5 +id[3286] = "2207-04-15T04:00:09" +ik[3286] = 90 +il[3286] = 170 +im[3286] = 0.0834 +ij[3286] = 6 +id[3287] = "2207-04-17T15:52:02" +ik[3287] = 0.975 +il[3287] = 176 +im[3287] = 0.0376 +ij[3287] = 27.2 +id[3288] = "2207-06-01T01:06:41" +ik[3288] = 0 +il[3288] = -91 +im[3288] = 0.1362 +ij[3288] = 13 +id[3289] = "2207-06-19T02:17:43" +ik[3289] = 0.5191 +il[3289] = -70 +im[3289] = 0.5191 +ij[3289] = 2 +id[3290] = "2207-06-22T21:54:43" +ik[3290] = 1.81 +il[3290] = -57 +im[3290] = 0.3299 +ij[3290] = 11 +id[3291] = "2207-07-15T00:09:16" +ik[3291] = 43.96 +il[3291] = -47 +im[3291] = 0.4123 +ij[3291] = 7.1665 +id[3292] = "2207-08-17T18:15:02" +ik[3292] = 77.71 +il[3292] = 41 +im[3292] = 0.1365 +ij[3292] = 14 +id[3293] = "2207-09-01T03:38:02" +ik[3293] = 90 +il[3293] = 84 +im[3293] = 0.116 +ij[3293] = 5 +id[3294] = "2207-11-13T10:25:22" +ik[3294] = 54.045 +il[3294] = -52 +im[3294] = 0.1052 +ij[3294] = 8 +id[3295] = "2207-12-05T05:03:24" +ik[3295] = 0.002 +il[3295] = 15 +im[3295] = 0.0574 +ij[3295] = 28.8 +id[3296] = "2207-12-28T23:30:46" +ik[3296] = 0.574 +il[3296] = 90 +im[3296] = 0.0685 +ij[3296] = 28.6 +id[3297] = "2207-12-31T06:05:22" +ik[3297] = 4.432 +il[3297] = 97 +im[3297] = 0.0304 +ij[3297] = 27.1 +id[3298] = "2208-01-12T06:21:27" +ik[3298] = 2.551 +il[3298] = 134 +im[3298] = 0.0856 +ij[3298] = 28.1 +id[3299] = "2208-02-09T02:05:42" +ik[3299] = 0.032 +il[3299] = -139 +im[3299] = 0.0895 +ij[3299] = 28.7 +id[3300] = "2208-02-09T23:27:01" +ik[3300] = 3.958 +il[3300] = -136 +im[3300] = 0.0873 +ij[3300] = 28.1 +id[3301] = "2208-02-14T23:01:49" +ik[3301] = 0.516 +il[3301] = -121 +im[3301] = 0.0228 +ij[3301] = 27.3 +id[3302] = "2208-03-03T14:05:49" +ik[3302] = 0.849 +il[3302] = -67 +im[3302] = 0.0162 +ij[3302] = 27.5 +id[3303] = "2208-04-14T14:08:09" +ik[3303] = 1.15 +il[3303] = 40 +im[3303] = 0.0284 +ij[3303] = 12 +id[3304] = "2208-05-23T00:24:55" +ik[3304] = 4.397 +il[3304] = -27 +im[3304] = 0.0851 +ij[3304] = 27.2 +id[3305] = "2208-06-09T16:07:14" +ik[3305] = 0.286 +il[3305] = 29 +im[3305] = 0.0843 +ij[3305] = 27.9 +id[3306] = "2208-07-15T17:46:36" +ik[3306] = 1.731 +il[3306] = 141 +im[3306] = 0.0117 +ij[3306] = 28.1 +id[3307] = "2208-07-30T15:57:36" +ik[3307] = 1.056 +il[3307] = -173 +im[3307] = 0.0058 +ij[3307] = 28.4 +id[3308] = "2208-08-30T10:04:04" +ik[3308] = 54.333 +il[3308] = -80 +im[3308] = 0.0225 +ij[3308] = 9 +id[3309] = "2208-09-26T16:23:05" +ik[3309] = 2.926 +il[3309] = 3 +im[3309] = 0.054 +ij[3309] = 28.8 +id[3310] = "2208-10-11T19:19:08" +ik[3310] = 1.939 +il[3310] = 49 +im[3310] = 0.0816 +ij[3310] = 27.4 +id[3311] = "2208-11-05T04:22:22" +ik[3311] = 4.213 +il[3311] = 124 +im[3311] = 0.1955 +ij[3311] = 28.6 +id[3312] = "2208-11-17T06:31:25" +ik[3312] = 90 +il[3312] = 161 +im[3312] = 0.1802 +ij[3312] = 6 +id[3313] = "2208-12-20T13:57:30" +ik[3313] = 0.666 +il[3313] = -118 +im[3313] = 0.3313 +ij[3313] = 28.7 +id[3314] = "2208-12-21T00:32:28" +ik[3314] = 0.043 +il[3314] = -117 +im[3314] = 0.3222 +ij[3314] = 27.3 +id[3315] = "2209-01-06T18:15:29" +ik[3315] = 0 +il[3315] = -128 +im[3315] = 0.2628 +ij[3315] = 13 +id[3316] = "2209-01-27T21:18:43" +ik[3316] = 6.88 +il[3316] = -129 +im[3316] = 0.5113 +ij[3316] = 11 +id[3317] = "2209-01-29T12:56:43" +ik[3317] = 0.5515 +il[3317] = -118 +im[3317] = 0.5516 +ij[3317] = 2 +id[3318] = "2209-02-17T18:21:03" +ik[3318] = 42 +il[3318] = -65 +im[3318] = 0.1041 +ij[3318] = 7.1566 +id[3319] = "2209-03-11T00:03:27" +ik[3319] = 5.339 +il[3319] = 21 +im[3319] = 0.3114 +ij[3319] = 28.7 +id[3320] = "2209-03-21T19:04:48" +ik[3320] = 74.03 +il[3320] = 35 +im[3320] = 0.1735 +ij[3320] = 14 +id[3321] = "2209-04-09T12:31:25" +ik[3321] = 90 +il[3321] = 92 +im[3321] = 0.2136 +ij[3321] = 5 +id[3322] = "2209-04-09T20:30:15" +ik[3322] = 1.504 +il[3322] = 93 +im[3322] = 0.2116 +ij[3322] = 27.5 +id[3323] = "2209-05-29T00:25:09" +ik[3323] = 4.12 +il[3323] = -115 +im[3323] = 0.0633 +ij[3323] = 27.6 +id[3324] = "2209-06-23T15:06:18" +ik[3324] = 54.431 +il[3324] = -36 +im[3324] = 0.111 +ij[3324] = 8 +id[3325] = "2209-07-07T13:21:27" +ik[3325] = 6.098 +il[3325] = 6 +im[3325] = 0.1151 +ij[3325] = 27.2 +id[3326] = "2209-07-18T01:16:19" +ik[3326] = 0.573 +il[3326] = 38 +im[3326] = 0.0446 +ij[3326] = 28.5 +id[3327] = "2209-11-11T09:56:09" +ik[3327] = 0.71 +il[3327] = 15 +im[3327] = 0.0251 +ij[3327] = 12 +id[3328] = "2209-12-23T06:27:56" +ik[3328] = 1.338 +il[3328] = -42 +im[3328] = 0.0831 +ij[3328] = 28.6 +id[3329] = "2210-01-15T07:20:55" +ik[3329] = 0.173 +il[3329] = 28 +im[3329] = 0.0518 +ij[3329] = 27.3 +id[3330] = "2210-01-18T01:30:08" +ik[3330] = 0.735 +il[3330] = 37 +im[3330] = 0.0843 +ij[3330] = 28.7 +id[3331] = "2210-02-01T23:36:28" +ik[3331] = 1.139 +il[3331] = 83 +im[3331] = 0.0857 +ij[3331] = 27.5 +id[3332] = "2210-03-18T02:32:05" +ik[3332] = 2.32 +il[3332] = -140 +im[3332] = 0.0742 +ij[3332] = 27.6 +id[3333] = "2210-04-13T12:36:59" +ik[3333] = 54.333 +il[3333] = -57 +im[3333] = 0.0055 +ij[3333] = 9 +id[3334] = "2210-04-25T01:37:48" +ik[3334] = 2.894 +il[3334] = -21 +im[3334] = 0.0633 +ij[3334] = 27.2 +id[3335] = "2210-06-12T17:22:07" +ik[3335] = 1.609 +il[3335] = 130 +im[3335] = 0.0271 +ij[3335] = 28.5 +id[3336] = "2210-06-22T04:09:00" +ik[3336] = 90 +il[3336] = 158 +im[3336] = 0.1509 +ij[3336] = 6 +id[3337] = "2210-08-09T19:05:15" +ik[3337] = 0 +il[3337] = -97 +im[3337] = 0.1303 +ij[3337] = 13 +id[3338] = "2210-08-28T19:13:40" +ik[3338] = 0.5245 +il[3338] = -75 +im[3338] = 0.5246 +ij[3338] = 2 +id[3339] = "2210-08-31T19:50:52" +ik[3339] = 8.49 +il[3339] = -63 +im[3339] = 0.3996 +ij[3339] = 11 +id[3340] = "2210-09-22T19:08:49" +ik[3340] = 44 +il[3340] = -53 +im[3340] = 0.4232 +ij[3340] = 7.1631 +id[3341] = "2210-10-25T10:14:35" +ik[3341] = 76.63 +il[3341] = 30 +im[3341] = 0.2296 +ij[3341] = 14 +id[3342] = "2210-11-10T14:23:45" +ik[3342] = 90 +il[3342] = 79 +im[3342] = 0.1066 +ij[3342] = 5 +id[3343] = "2210-12-13T12:25:03" +ik[3343] = 1.367 +il[3343] = -180 +im[3343] = 0.017 +ij[3343] = 28.4 +id[3344] = "2210-12-22T14:21:59" +ik[3344] = 0.621 +il[3344] = -152 +im[3344] = 0.1385 +ij[3344] = 28.8 +id[3345] = "2211-01-13T04:24:55" +ik[3345] = 3.575 +il[3345] = -84 +im[3345] = 0.0225 +ij[3345] = 27.1 +id[3346] = "2211-01-26T13:55:14" +ik[3346] = 53.717 +il[3346] = -43 +im[3346] = 0.0169 +ij[3346] = 8 +id[3347] = "2211-02-14T10:01:37" +ik[3347] = 0.366 +il[3347] = 16 +im[3347] = 0.0572 +ij[3347] = 28.6 +id[3348] = "2211-03-01T02:20:02" +ik[3348] = 1.008 +il[3348] = 62 +im[3348] = 0.0628 +ij[3348] = 27.3 +id[3349] = "2211-03-06T00:07:46" +ik[3349] = 0.17 +il[3349] = 77 +im[3349] = 0.1081 +ij[3349] = 28.7 +id[3350] = "2211-03-14T16:26:15" +ik[3350] = 1.48 +il[3350] = 104 +im[3350] = 0.0153 +ij[3350] = 28.1 +id[3351] = "2211-03-18T22:24:55" +ik[3351] = 0.598 +il[3351] = 117 +im[3351] = 0.0853 +ij[3351] = 27.5 +id[3352] = "2211-04-14T13:24:48" +ik[3352] = 2.796 +il[3352] = -161 +im[3352] = 0.0322 +ij[3352] = 28.1 +id[3353] = "2211-05-01T23:39:02" +ik[3353] = 3.48 +il[3353] = -108 +im[3353] = 0.0688 +ij[3353] = 27.6 +id[3354] = "2211-06-23T09:40:19" +ik[3354] = 0.31 +il[3354] = 30 +im[3354] = 0.0602 +ij[3354] = 12 +id[3355] = "2211-08-17T09:55:52" +ik[3355] = 0.116 +il[3355] = 18 +im[3355] = 0.0907 +ij[3355] = 28.5 +id[3356] = "2211-09-13T15:30:14" +ik[3356] = 5.851 +il[3356] = 101 +im[3356] = 0.0648 +ij[3356] = 28.1 +id[3357] = "2211-10-01T08:35:48" +ik[3357] = 6.065 +il[3357] = 155 +im[3357] = 0.0961 +ij[3357] = 28.1 +id[3358] = "2211-10-15T11:45:01" +ik[3358] = 2.188 +il[3358] = -162 +im[3358] = 0.0901 +ij[3358] = 28.8 +id[3359] = "2211-10-24T03:29:21" +ik[3359] = 3.199 +il[3359] = -136 +im[3359] = 0.0294 +ij[3359] = 27.4 +id[3360] = "2211-11-12T10:21:55" +ik[3360] = 53.689 +il[3360] = -77 +im[3360] = 0.0604 +ij[3360] = 9 +id[3361] = "2211-12-19T17:19:08" +ik[3361] = 0.911 +il[3361] = 38 +im[3361] = 0.1193 +ij[3361] = 27.3 +id[3362] = "2211-12-21T00:46:22" +ik[3362] = 1.422 +il[3362] = 42 +im[3362] = 0.0917 +ij[3362] = 28.6 +id[3363] = "2211-12-31T19:34:27" +ik[3363] = 0.996 +il[3363] = 75 +im[3363] = 0.1724 +ij[3363] = 28.7 +id[3364] = "2212-01-08T03:42:15" +ik[3364] = 0.999 +il[3364] = 98 +im[3364] = 0.0322 +ij[3364] = 27.5 +id[3365] = "2212-02-01T05:44:32" +ik[3365] = 90 +il[3365] = 174 +im[3365] = 0.222 +ij[3365] = 6 +id[3366] = "2212-03-07T06:00:02" +ik[3366] = 3.43 +il[3366] = -105 +im[3366] = 0.0227 +ij[3366] = 27.6 +id[3367] = "2212-03-19T10:15:02" +ik[3367] = 0 +il[3367] = -84 +im[3367] = 0.1335 +ij[3367] = 13 +id[3368] = "2212-04-11T02:05:16" +ik[3368] = 7.32 +il[3368] = -85 +im[3368] = 0.481 +ij[3368] = 11 +id[3369] = "2212-04-23T03:30:50" +ik[3369] = 0.5048 +il[3369] = -25 +im[3369] = 0.5049 +ij[3369] = 2 +id[3370] = "2212-05-01T17:33:39" +ik[3370] = 43.3 +il[3370] = -15 +im[3370] = 0.1409 +ij[3370] = 7.163 +id[3371] = "2212-05-31T22:59:54" +ik[3371] = 3.91 +il[3371] = 44 +im[3371] = 0.1869 +ij[3371] = 27.6 +id[3372] = "2212-06-04T05:23:25" +ik[3372] = 76.8 +il[3372] = 52 +im[3372] = 0.2408 +ij[3372] = 14 +id[3373] = "2212-06-20T09:46:01" +ik[3373] = 90 +il[3373] = 94 +im[3373] = 0.2104 +ij[3373] = 5 +id[3374] = "2212-08-31T11:25:56" +ik[3374] = 54.469 +il[3374] = -46 +im[3374] = 0.1191 +ij[3374] = 8 +id[3375] = "2212-10-26T23:15:38" +ik[3375] = 0.013 +il[3375] = 128 +im[3375] = 0.0624 +ij[3375] = 28.5 +id[3376] = "2212-11-29T00:42:02" +ik[3376] = 0.679 +il[3376] = -129 +im[3376] = 0.0872 +ij[3376] = 28.8 +id[3377] = "2212-12-06T06:50:41" +ik[3377] = 4.987 +il[3377] = -107 +im[3377] = 0.0458 +ij[3377] = 27.4 +id[3378] = "2213-01-26T05:25:26" +ik[3378] = 1.06 +il[3378] = 30 +im[3378] = 0.0544 +ij[3378] = 12 +id[3379] = "2213-04-01T04:48:48" +ik[3379] = 2.82 +il[3379] = 43 +im[3379] = 0.086 +ij[3379] = 27.6 +id[3380] = "2213-04-26T21:09:47" +ik[3380] = 3.941 +il[3380] = 123 +im[3380] = 0.0624 +ij[3380] = 28.1 +id[3381] = "2213-05-08T03:50:15" +ik[3381] = 3.777 +il[3381] = 159 +im[3381] = 0.0084 +ij[3381] = 27.2 +id[3382] = "2213-06-20T19:11:44" +ik[3382] = 54.676 +il[3382] = -66 +im[3382] = 0.037 +ij[3382] = 9 +id[3383] = "2213-08-31T19:20:57" +ik[3383] = 90 +il[3383] = 153 +im[3383] = 0.1705 +ij[3383] = 6 +id[3384] = "2213-10-21T05:23:51" +ik[3384] = 0 +il[3384] = -95 +im[3384] = 0.3327 +ij[3384] = 13 +id[3385] = "2213-11-12T17:11:02" +ik[3385] = 4.39 +il[3385] = -48 +im[3385] = 0.0836 +ij[3385] = 11 +id[3386] = "2213-11-16T00:06:20" +ik[3386] = 5.186 +il[3386] = -124 +im[3386] = 0.3346 +ij[3386] = 28.5 +id[3387] = "2213-11-20T00:36:36" +ik[3387] = 0.5598 +il[3387] = -41 +im[3387] = 0.5599 +ij[3387] = 2 +id[3388] = "2213-12-03T06:28:26" +ik[3388] = 43.04 +il[3388] = -25 +im[3388] = 0.4337 +ij[3388] = 7.155 +id[3389] = "2213-12-18T10:29:42" +ik[3389] = 1.591 +il[3389] = 2 +im[3389] = 0.3688 +ij[3389] = 28.5 +id[3390] = "2213-12-30T12:41:02" +ik[3390] = 1.9 +il[3390] = 13 +im[3390] = 0.2634 +ij[3390] = 28.8 +id[3391] = "2214-01-03T15:06:11" +ik[3391] = 74.4 +il[3391] = 26 +im[3391] = 0.2173 +ij[3391] = 14 +id[3392] = "2214-01-20T13:06:41" +ik[3392] = 1.811 +il[3392] = 78 +im[3392] = 0.1415 +ij[3392] = 27.1 +id[3393] = "2214-01-22T13:48:22" +ik[3393] = 90 +il[3393] = 83 +im[3393] = 0.0574 +ij[3393] = 5 +id[3394] = "2214-03-13T14:56:01" +ik[3394] = 1.903 +il[3394] = -120 +im[3394] = 0.122 +ij[3394] = 27.3 +id[3395] = "2214-03-30T05:26:26" +ik[3395] = 0.287 +il[3395] = -69 +im[3395] = 0.1226 +ij[3395] = 28.7 +id[3396] = "2214-04-01T03:40:28" +ik[3396] = 0.12 +il[3396] = -63 +im[3396] = 0.12 +ij[3396] = 27.5 +id[3397] = "2214-04-01T22:45:24" +ik[3397] = 1.043 +il[3397] = -60 +im[3397] = 0.1132 +ij[3397] = 28.6 +id[3398] = "2214-04-11T09:17:58" +ik[3398] = 53.981 +il[3398] = -31 +im[3398] = 0.079 +ij[3398] = 8 +id[3399] = "2214-05-16T03:56:46" +ik[3399] = 3.78 +il[3399] = 76 +im[3399] = 0.0991 +ij[3399] = 27.6 +id[3400] = "2214-05-25T09:54:43" +ik[3400] = 2.286 +il[3400] = 104 +im[3400] = 0.0563 +ij[3400] = 28.1 +id[3401] = "2214-06-04T10:46:07" +ik[3401] = 2.569 +il[3401] = 135 +im[3401] = 0.0553 +ij[3401] = 28.1 +id[3402] = "2214-06-23T03:54:19" +ik[3402] = 5.409 +il[3402] = -168 +im[3402] = 0.0299 +ij[3402] = 27.2 +id[3403] = "2214-08-29T18:07:12" +ik[3403] = 1.37 +il[3403] = 25 +im[3403] = 0.0862 +ij[3403] = 12 +id[3404] = "2214-11-03T15:14:32" +ik[3404] = 1.748 +il[3404] = 37 +im[3404] = 0.0141 +ij[3404] = 28.8 +id[3405] = "2214-11-06T20:55:34" +ik[3405] = 3.915 +il[3405] = 47 +im[3405] = 0.0501 +ij[3405] = 27.4 +id[3406] = "2214-11-28T04:55:13" +ik[3406] = 1.164 +il[3406] = 110 +im[3406] = 0.0909 +ij[3406] = 28.5 +id[3407] = "2214-12-01T18:58:36" +ik[3407] = 5.464 +il[3407] = 122 +im[3407] = 0.0507 +ij[3407] = 28.1 +id[3408] = "2214-12-31T20:16:28" +ik[3408] = 0.52 +il[3408] = -146 +im[3408] = 0.0576 +ij[3408] = 27.3 +id[3409] = "2215-01-07T10:25:06" +ik[3409] = 0.753 +il[3409] = -125 +im[3409] = 0.0784 +ij[3409] = 28.4 +id[3410] = "2215-01-18T21:08:01" +ik[3410] = 1.204 +il[3410] = -90 +im[3410] = 0.0138 +ij[3410] = 27.5 +id[3411] = "2215-01-23T12:39:01" +ik[3411] = 0.632 +il[3411] = -75 +im[3411] = 0.0945 +ij[3411] = 28.7 +id[3412] = "2215-01-27T21:41:06" +ik[3412] = 53.668 +il[3412] = -62 +im[3412] = 0.1123 +ij[3412] = 9 +id[3413] = "2215-02-03T23:12:02" +ik[3413] = 0.976 +il[3413] = -40 +im[3413] = 0.0282 +ij[3413] = 28.6 +id[3414] = "2215-03-05T14:44:41" +ik[3414] = 1.32 +il[3414] = 53 +im[3414] = 0.0152 +ij[3414] = 27.6 +id[3415] = "2215-04-12T21:22:08" +ik[3415] = 90 +il[3415] = 173 +im[3415] = 0.1913 +ij[3415] = 6 +id[3416] = "2215-04-17T19:21:48" +ik[3416] = 0.86 +il[3416] = 170 +im[3416] = 0.0201 +ij[3416] = 27.2 +id[3417] = "2215-05-29T15:06:38" +ik[3417] = 0 +il[3417] = -88 +im[3417] = 0.2 +ij[3417] = 13 +id[3418] = "2215-06-11T15:51:41" +ik[3418] = 0.285 +il[3418] = -72 +im[3418] = 0.2085 +ij[3418] = 27.9 +id[3419] = "2215-06-20T06:00:13" +ik[3419] = 0.5318 +il[3419] = -64 +im[3419] = 0.5319 +ij[3419] = 2 +id[3420] = "2215-06-20T15:01:26" +ik[3420] = 1.49 +il[3420] = -54 +im[3420] = 0.53 +ij[3420] = 11 +id[3421] = "2215-07-12T16:11:13" +ik[3421] = 44.04 +il[3421] = -44 +im[3421] = 0.2485 +ij[3421] = 7.1664 +id[3422] = "2215-08-15T10:28:00" +ik[3422] = 77.81 +il[3422] = 44 +im[3422] = 0.255 +ij[3422] = 14 +id[3423] = "2215-08-29T20:10:29" +ik[3423] = 90 +il[3423] = 86 +im[3423] = 0.1968 +ij[3423] = 5 +id[3424] = "2215-11-11T00:35:21" +ik[3424] = 54.061 +il[3424] = -50 +im[3424] = 0.122 +ij[3424] = 8 +id[3425] = "2215-12-19T07:27:15" +ik[3425] = 0.261 +il[3425] = 70 +im[3425] = 0.0091 +ij[3425] = 28.8 +id[3426] = "2215-12-30T19:50:14" +ik[3426] = 4.458 +il[3426] = 106 +im[3426] = 0.0699 +ij[3426] = 27.1 +id[3427] = "2216-02-04T02:09:10" +ik[3427] = 0.046 +il[3427] = -145 +im[3427] = 0.0178 +ij[3427] = 28.5 +id[3428] = "2216-02-14T12:19:08" +ik[3428] = 0.503 +il[3428] = -112 +im[3428] = 0.0535 +ij[3428] = 27.3 +id[3429] = "2216-03-03T03:14:14" +ik[3429] = 0.855 +il[3429] = -69 +im[3429] = 0.0249 +ij[3429] = 27.5 +id[3430] = "2216-04-12T04:22:04" +ik[3430] = 1.18 +il[3430] = 42 +im[3430] = 0.0778 +ij[3430] = 12 +id[3431] = "2216-05-22T13:33:21" +ik[3431] = 4.378 +il[3431] = -18 +im[3431] = 0.0637 +ij[3431] = 27.2 +id[3432] = "2216-06-09T07:45:41" +ik[3432] = 0.223 +il[3432] = 38 +im[3432] = 0.0918 +ij[3432] = 27.9 +id[3433] = "2216-06-11T05:43:26" +ik[3433] = 2.7 +il[3433] = 43 +im[3433] = 0.088 +ij[3433] = 28.1 +id[3434] = "2216-07-08T15:03:10" +ik[3434] = 2.625 +il[3434] = 129 +im[3434] = 0.0979 +ij[3434] = 28.1 +id[3435] = "2216-08-28T02:04:15" +ik[3435] = 54.354 +il[3435] = -77 +im[3435] = 0.0721 +ij[3435] = 9 +id[3436] = "2216-10-11T13:29:47" +ik[3436] = 1.876 +il[3436] = 58 +im[3436] = 0.1238 +ij[3436] = 27.4 +id[3437] = "2216-10-12T00:11:57" +ik[3437] = 3.84 +il[3437] = 59 +im[3437] = 0.1139 +ij[3437] = 28.8 +id[3438] = "2216-11-14T17:39:14" +ik[3438] = 90 +il[3438] = 163 +im[3438] = 0.0387 +ij[3438] = 6 +id[3439] = "2216-12-23T22:34:41" +ik[3439] = 0.621 +il[3439] = -104 +im[3439] = 0.2998 +ij[3439] = 27.3 +id[3440] = "2217-01-04T10:28:27" +ik[3440] = 0 +il[3440] = -115 +im[3440] = 0.4355 +ij[3440] = 13 +id[3441] = "2217-01-17T02:32:10" +ik[3441] = 0.5497 +il[3441] = -126 +im[3441] = 0.5497 +ij[3441] = 2 +id[3442] = "2217-01-25T09:59:02" +ik[3442] = 6.62 +il[3442] = -127 +im[3442] = 0.1759 +ij[3442] = 11 +id[3443] = "2217-02-15T09:33:01" +ik[3443] = 41.96 +il[3443] = -63 +im[3443] = 0.355 +ij[3443] = 7.1564 +id[3444] = "2217-03-19T06:29:46" +ik[3444] = 73.83 +il[3444] = 37 +im[3444] = 0.0534 +ij[3444] = 14 +id[3445] = "2217-04-03T05:07:52" +ik[3445] = 2.386 +il[3445] = 83 +im[3445] = 0.0172 +ij[3445] = 28.5 +id[3446] = "2217-04-03T05:10:01" +ik[3446] = 2.386 +il[3446] = 83 +im[3446] = 0.0171 +ij[3446] = 28.5 +id[3447] = "2217-04-07T01:28:55" +ik[3447] = 90 +il[3447] = 94 +im[3447] = 0.1549 +ij[3447] = 5 +id[3448] = "2217-04-09T20:28:01" +ik[3448] = 1.389 +il[3448] = 103 +im[3448] = 0.2091 +ij[3448] = 27.5 +id[3449] = "2217-04-11T10:10:07" +ik[3449] = 1.917 +il[3449] = 108 +im[3449] = 0.2096 +ij[3449] = 28.4 +id[3450] = "2217-04-20T18:24:11" +ik[3450] = 0.582 +il[3450] = 137 +im[3450] = 0.0715 +ij[3450] = 28.7 +id[3451] = "2217-05-16T01:56:55" +ik[3451] = 0.842 +il[3451] = -144 +im[3451] = 0.0822 +ij[3451] = 28.6 +id[3452] = "2217-05-28T16:49:35" +ik[3452] = 4.11 +il[3452] = -106 +im[3452] = 0.1002 +ij[3452] = 27.6 +id[3453] = "2217-06-21T07:52:43" +ik[3453] = 54.421 +il[3453] = -33 +im[3453] = 0.0835 +ij[3453] = 8 +id[3454] = "2217-07-07T03:34:46" +ik[3454] = 6.071 +il[3454] = 15 +im[3454] = 0.097 +ij[3454] = 27.2 +id[3455] = "2217-11-08T23:03:50" +ik[3455] = 0.76 +il[3455] = -34 +im[3455] = 0.0764 +ij[3455] = 12 +id[3456] = "2218-01-14T20:40:54" +ik[3456] = 0.183 +il[3456] = 37 +im[3456] = 0.0164 +ij[3456] = 27.3 +id[3457] = "2218-01-29T10:30:00" +ik[3457] = 3.546 +il[3457] = 82 +im[3457] = 0.0121 +ij[3457] = 28.1 +id[3458] = "2218-02-01T13:06:14" +ik[3458] = 1.142 +il[3458] = 92 +im[3458] = 0.0663 +ij[3458] = 27.5 +id[3459] = "2218-02-17T07:12:43" +ik[3459] = 0.454 +il[3459] = 140 +im[3459] = 0.0646 +ij[3459] = 28.7 +id[3460] = "2218-02-27T02:15:47" +ik[3460] = 0.372 +il[3460] = 171 +im[3460] = 0.0225 +ij[3460] = 28.5 +id[3461] = "2218-03-17T16:38:29" +ik[3461] = 2.3 +il[3461] = -131 +im[3461] = 0.0368 +ij[3461] = 27.6 +id[3462] = "2218-03-19T18:02:35" +ik[3462] = 2.25 +il[3462] = -124 +im[3462] = 0.0746 +ij[3462] = 28.6 +id[3463] = "2218-04-11T04:26:31" +ik[3463] = 54.312 +il[3463] = -54 +im[3463] = 0.0863 +ij[3463] = 9 +id[3464] = "2218-04-24T17:14:14" +ik[3464] = 2.854 +il[3464] = -12 +im[3464] = 0.1013 +ij[3464] = 27.2 +id[3465] = "2218-06-19T21:30:59" +ik[3465] = 90 +il[3465] = 164 +im[3465] = 0.2033 +ij[3465] = 6 +id[3466] = "2218-08-07T06:30:13" +ik[3466] = 0 +il[3466] = -95 +im[3466] = 0.2166 +ij[3466] = 13 +id[3467] = "2218-08-29T10:37:55" +ik[3467] = 8.41 +il[3467] = -60 +im[3467] = 0.5152 +ij[3467] = 11 +id[3468] = "2218-08-29T19:48:52" +ik[3468] = 0.5172 +il[3468] = -50 +im[3468] = 0.5173 +ij[3468] = 2 +id[3469] = "2218-09-20T06:33:48" +ik[3469] = 44 +il[3469] = -40 +im[3469] = 0.1824 +ij[3469] = 7.1634 +id[3470] = "2218-10-23T03:18:32" +ik[3470] = 76.87 +il[3470] = 33 +im[3470] = 0.2593 +ij[3470] = 14 +id[3471] = "2218-11-08T05:10:03" +ik[3471] = 90 +il[3471] = 81 +im[3471] = 0.2121 +ij[3471] = 5 +id[3472] = "2219-01-06T09:10:48" +ik[3472] = 0.445 +il[3472] = -96 +im[3472] = 0.1392 +ij[3472] = 28.8 +id[3473] = "2219-01-12T19:55:34" +ik[3473] = 3.615 +il[3473] = -76 +im[3473] = 0.0406 +ij[3473] = 27.1 +id[3474] = "2219-01-24T01:32:18" +ik[3474] = 53.719 +il[3474] = -40 +im[3474] = 0.0939 +ij[3474] = 8 +id[3475] = "2219-02-28T16:15:07" +ik[3475] = 0.987 +il[3475] = 71 +im[3475] = 0.0231 +ij[3475] = 27.3 +id[3476] = "2219-03-18T12:01:47" +ik[3476] = 0.608 +il[3476] = 126 +im[3476] = 0.0617 +ij[3476] = 27.5 +id[3477] = "2219-04-05T15:39:27" +ik[3477] = 0.596 +il[3477] = -178 +im[3477] = 0.091 +ij[3477] = 28.7 +id[3478] = "2219-04-21T16:09:33" +ik[3478] = 0.172 +il[3478] = -129 +im[3478] = 0.0904 +ij[3478] = 28.4 +id[3479] = "2219-05-01T12:53:27" +ik[3479] = 3.47 +il[3479] = -99 +im[3479] = 0.0353 +ij[3479] = 27.6 +id[3480] = "2219-05-03T20:28:27" +ik[3480] = 0.094 +il[3480] = -92 +im[3480] = 0.0674 +ij[3480] = 28.5 +id[3481] = "2219-05-11T03:38:20" +ik[3481] = 1.236 +il[3481] = -70 +im[3481] = 0.0553 +ij[3481] = 28.6 +id[3482] = "2219-06-21T04:17:45" +ik[3482] = 0.25 +il[3482] = 33 +im[3482] = 0.089 +ij[3482] = 12 +id[3483] = "2219-08-05T00:12:05" +ik[3483] = 0.586 +il[3483] = -10 +im[3483] = 0.0853 +ij[3483] = 28.1 +id[3484] = "2219-09-16T04:17:36" +ik[3484] = 4.632 +il[3484] = 119 +im[3484] = 0.0726 +ij[3484] = 28.1 +id[3485] = "2219-10-23T18:00:54" +ik[3485] = 3.17 +il[3485] = -127 +im[3485] = 0.067 +ij[3485] = 27.4 +id[3486] = "2219-10-29T18:55:26" +ik[3486] = 2.758 +il[3486] = -109 +im[3486] = 0.073 +ij[3486] = 28.8 +id[3487] = "2219-11-09T21:55:26" +ik[3487] = 53.706 +il[3487] = -75 +im[3487] = 0.041 +ij[3487] = 9 +id[3488] = "2219-12-19T10:17:47" +ik[3488] = 0.922 +il[3488] = 47 +im[3488] = 0.1419 +ij[3488] = 27.3 +id[3489] = "2220-01-07T23:19:07" +ik[3489] = 0.971 +il[3489] = 108 +im[3489] = 0.0927 +ij[3489] = 27.5 +id[3490] = "2220-01-29T19:09:28" +ik[3490] = 90 +il[3490] = 176 +im[3490] = 0.192 +ij[3490] = 6 +id[3491] = "2220-02-05T06:59:02" +ik[3491] = 1.915 +il[3491] = -166 +im[3491] = 0.1714 +ij[3491] = 28.7 +id[3492] = "2220-03-09T04:22:26" +ik[3492] = 4.2 +il[3492] = -95 +im[3492] = 0.0742 +ij[3492] = 27.6 +id[3493] = "2220-03-17T03:18:59" +ik[3493] = 0 +il[3493] = -81 +im[3493] = 0.3832 +ij[3493] = 13 +id[3494] = "2220-04-08T17:00:57" +ik[3494] = 7.51 +il[3494] = -82 +im[3494] = 0.4458 +ij[3494] = 11 +id[3495] = "2220-04-10T17:19:35" +ik[3495] = 0.5094 +il[3495] = -71 +im[3495] = 0.5095 +ij[3495] = 2 +id[3496] = "2220-04-29T08:12:39" +ik[3496] = 43.2 +il[3496] = -57 +im[3496] = 0.2124 +ij[3496] = 7.1629 +id[3497] = "2220-06-01T14:32:22" +ik[3497] = 4 +il[3497] = 54 +im[3497] = 0.1521 +ij[3497] = 27.6 +id[3498] = "2220-06-01T19:19:27" +ik[3498] = 76.67 +il[3498] = 54 +im[3498] = 0.1607 +ij[3498] = 14 +id[3499] = "2220-06-18T01:45:44" +ik[3499] = 90 +il[3499] = 97 +im[3499] = 0.1814 +ij[3499] = 5 +id[3500] = "2220-06-25T13:01:55" +ik[3500] = 0.48 +il[3500] = 120 +im[3500] = 0.1013 +ij[3500] = 28.6 +id[3501] = "2220-07-04T00:13:14" +ik[3501] = 1.665 +il[3501] = 146 +im[3501] = 0.1705 +ij[3501] = 28.5 +id[3502] = "2220-08-29T04:08:47" +ik[3502] = 54.475 +il[3502] = -43 +im[3502] = 0.0717 +ij[3502] = 8 +id[3503] = "2220-12-05T20:11:34" +ik[3503] = 4.97 +il[3503] = -99 +im[3503] = 0.0723 +ij[3503] = 27.4 +id[3504] = "2220-12-12T21:29:05" +ik[3504] = 1.009 +il[3504] = -76 +im[3504] = 0.0527 +ij[3504] = 28.8 +id[3505] = "2221-01-23T15:15:50" +ik[3505] = 1.01 +il[3505] = 32 +im[3505] = 0.0183 +ij[3505] = 12 +id[3506] = "2221-03-14T19:22:48" +ik[3506] = 0.418 +il[3506] = -1 +im[3506] = 0.0736 +ij[3506] = 28.7 +id[3507] = "2221-03-21T21:30:14" +ik[3507] = 3.581 +il[3507] = 22 +im[3507] = 0.0697 +ij[3507] = 28.1 +id[3508] = "2221-03-31T18:01:22" +ik[3508] = 2.8 +il[3508] = 51 +im[3508] = 0.0842 +ij[3508] = 27.6 +id[3509] = "2221-04-06T22:03:47" +ik[3509] = 3.317 +il[3509] = 71 +im[3509] = 0.0446 +ij[3509] = 28.1 +id[3510] = "2221-05-01T08:28:27" +ik[3510] = 2.357 +il[3510] = 147 +im[3510] = 0.0952 +ij[3510] = 28.6 +id[3511] = "2221-05-03T00:29:48" +ik[3511] = 0.177 +il[3511] = 153 +im[3511] = 0.0949 +ij[3511] = 28.4 +id[3512] = "2221-05-07T17:33:47" +ik[3512] = 3.753 +il[3512] = 167 +im[3512] = 0.0401 +ij[3512] = 27.2 +id[3513] = "2221-05-27T17:57:59" +ik[3513] = 1.44 +il[3513] = -130 +im[3513] = 0.0666 +ij[3513] = 28.5 +id[3514] = "2221-06-18T13:27:02" +ik[3514] = 54.675 +il[3514] = -63 +im[3514] = 0.1049 +ij[3514] = 9 +id[3515] = "2221-08-29T09:00:02" +ik[3515] = 90 +il[3515] = 156 +im[3515] = 0.2196 +ij[3515] = 6 +id[3516] = "2221-10-18T19:19:53" +ik[3516] = 0 +il[3516] = -93 +im[3516] = 0.0916 +ij[3516] = 13 +id[3517] = "2221-11-10T06:25:55" +ik[3517] = 4.72 +il[3517] = -46 +im[3517] = 0.4548 +ij[3517] = 11 +id[3518] = "2221-11-21T05:05:04" +ik[3518] = 0.5416 +il[3518] = -35 +im[3518] = 0.5417 +ij[3518] = 2 +id[3519] = "2221-11-30T18:22:28" +ik[3519] = 42.96 +il[3519] = -23 +im[3519] = 0.2345 +ij[3519] = 7.1552 +id[3520] = "2222-01-01T04:58:12" +ik[3520] = 74.4 +il[3520] = 39 +im[3520] = 0.2545 +ij[3520] = 14 +id[3521] = "2222-01-19T16:02:47" +ik[3521] = 2.021 +il[3521] = 85 +im[3521] = 0.2072 +ij[3521] = 28.8 +id[3522] = "2222-01-20T02:27:19" +ik[3522] = 90 +il[3522] = 86 +im[3522] = 0.1965 +ij[3522] = 5 +id[3523] = "2222-01-20T15:12:27" +ik[3523] = 1.909 +il[3523] = 87 +im[3523] = 0.1815 +ij[3523] = 27.1 +id[3524] = "2222-03-13T07:12:27" +ik[3524] = 1.859 +il[3524] = -111 +im[3524] = 0.0765 +ij[3524] = 27.3 +id[3525] = "2222-03-31T18:52:54" +ik[3525] = 0.143 +il[3525] = -54 +im[3525] = 0.1238 +ij[3525] = 27.5 +id[3526] = "2222-04-08T22:45:16" +ik[3526] = 53.965 +il[3526] = -29 +im[3526] = 0.0174 +ij[3526] = 8 +id[3527] = "2222-04-30T21:28:30" +ik[3527] = 0.831 +il[3527] = 39 +im[3527] = 0.1096 +ij[3527] = 28.7 +id[3528] = "2222-05-15T17:47:16" +ik[3528] = 3.77 +il[3528] = 85 +im[3528] = 0.0932 +ij[3528] = 27.6 +id[3529] = "2222-06-22T17:09:25" +ik[3529] = 5.39 +il[3529] = -160 +im[3529] = 0.0113 +ij[3529] = 27.2 +id[3530] = "2222-06-22T21:34:16" +ik[3530] = 0.851 +il[3530] = -159 +im[3530] = 0.0087 +ij[3530] = 28.6 +id[3531] = "2222-08-27T11:13:55" +ik[3531] = 1.36 +il[3531] = 20 +im[3531] = 0.0665 +ij[3531] = 12 +id[3532] = "2222-10-04T10:16:27" +ik[3532] = 3.552 +il[3532] = -45 +im[3532] = 0.0426 +ij[3532] = 28.1 +id[3533] = "2222-11-06T10:27:07" +ik[3533] = 3.896 +il[3533] = 55 +im[3533] = 0.0144 +ij[3533] = 27.4 +id[3534] = "2222-11-15T23:00:57" +ik[3534] = 2.035 +il[3534] = 84 +im[3534] = 0.0906 +ij[3534] = 28.1 +id[3535] = "2222-11-17T14:47:28" +ik[3535] = 2.148 +il[3535] = 89 +im[3535] = 0.0734 +ij[3535] = 28.8 +id[3536] = "2222-12-31T10:22:14" +ik[3536] = 0.531 +il[3536] = -137 +im[3536] = 0.0916 +ij[3536] = 27.3 +id[3537] = "2223-01-18T11:44:54" +ik[3537] = 1.203 +il[3537] = -81 +im[3537] = 0.0523 +ij[3537] = 27.5 +id[3538] = "2223-01-25T08:46:11" +ik[3538] = 53.654 +il[3538] = -60 +im[3538] = 0.1055 +ij[3538] = 9 +id[3539] = "2223-02-24T05:27:10" +ik[3539] = 0.816 +il[3539] = 34 +im[3539] = 0.1266 +ij[3539] = 28.7 +id[3540] = "2223-03-05T07:48:10" +ik[3540] = 1.27 +il[3540] = 62 +im[3540] = 0.0557 +ij[3540] = 27.6 +id[3541] = "2223-04-10T14:36:09" +ik[3541] = 90 +il[3541] = 176 +im[3541] = 0.1713 +ij[3541] = 6 +id[3542] = "2223-04-18T00:16:00" +ik[3542] = 0.738 +il[3542] = 170 +im[3542] = 0.0865 +ij[3542] = 27.2 +id[3543] = "2223-05-08T14:18:57" +ik[3543] = 5.394 +il[3543] = -120 +im[3543] = 0.2078 +ij[3543] = 28.6 +id[3544] = "2223-05-27T04:58:39" +ik[3544] = 0 +il[3544] = -86 +im[3544] = 0.4166 +ij[3544] = 13 +id[3545] = "2223-06-18T08:08:09" +ik[3545] = 1.17 +il[3545] = -51 +im[3545] = 0.408 +ij[3545] = 11 +id[3546] = "2223-06-19T17:17:48" +ik[3546] = 0.124 +il[3546] = -40 +im[3546] = 0.4941 +ij[3546] = 28.6 +id[3547] = "2223-06-21T09:37:53" +ik[3547] = 0.5326 +il[3547] = -37 +im[3547] = 0.5326 +ij[3547] = 2 +id[3548] = "2223-07-10T04:03:14" +ik[3548] = 43.96 +il[3548] = -27 +im[3548] = 0.0832 +ij[3548] = 7.1663 +id[3549] = "2223-07-27T13:23:48" +ik[3549] = 3.511 +il[3549] = -4 +im[3549] = 0.1161 +ij[3549] = 28.6 +id[3550] = "2223-08-13T02:53:58" +ik[3550] = 77.91 +il[3550] = 52 +im[3550] = 0.2173 +ij[3550] = 14 +id[3551] = "2223-08-27T12:42:56" +ik[3551] = 90 +il[3551] = 89 +im[3551] = 0.1491 +ij[3551] = 5 +id[3552] = "2223-09-05T22:57:21" +ik[3552] = 2.928 +il[3552] = 118 +im[3552] = 0.0257 +ij[3552] = 28.4 +id[3553] = "2223-10-13T03:31:58" +ik[3553] = 0.648 +il[3553] = -129 +im[3553] = 0.1385 +ij[3553] = 28.5 +id[3554] = "2223-11-08T14:52:25" +ik[3554] = 54.078 +il[3554] = -47 +im[3554] = 0.0636 +ij[3554] = 8 +id[3555] = "2223-12-30T09:34:40" +ik[3555] = 4.484 +il[3555] = 114 +im[3555] = 0.0958 +ij[3555] = 27.1 +id[3556] = "2224-01-02T06:32:06" +ik[3556] = 0.543 +il[3556] = 123 +im[3556] = 0.0619 +ij[3556] = 28.8 +id[3557] = "2224-02-14T01:32:00" +ik[3557] = 0.49 +il[3557] = -104 +im[3557] = 0.0758 +ij[3557] = 27.3 +id[3558] = "2224-03-02T04:06:40" +ik[3558] = 2.797 +il[3558] = -62 +im[3558] = 0.0647 +ij[3558] = 28.1 +id[3559] = "2224-03-02T16:23:07" +ik[3559] = 0.862 +il[3559] = -60 +im[3559] = 0.0575 +ij[3559] = 27.5 +id[3560] = "2224-04-09T18:20:09" +ik[3560] = 1.22 +il[3560] = 45 +im[3560] = 0.0758 +ij[3560] = 12 +id[3561] = "2224-05-13T05:27:44" +ik[3561] = 3.795 +il[3561] = -26 +im[3561] = 0.0872 +ij[3561] = 28.1 +id[3562] = "2224-05-22T02:41:47" +ik[3562] = 4.359 +il[3562] = -3 +im[3562] = 0.0313 +ij[3562] = 27.2 +id[3563] = "2224-06-08T19:24:14" +ik[3563] = 0.297 +il[3563] = 46 +im[3563] = 0.0821 +ij[3563] = 27.9 +id[3564] = "2224-06-12T09:29:31" +ik[3564] = 1.634 +il[3564] = 57 +im[3564] = 0.0932 +ij[3564] = 28.6 +id[3565] = "2224-08-25T18:08:00" +ik[3565] = 54.374 +il[3565] = -74 +im[3565] = 0.1157 +ij[3565] = 9 +id[3566] = "2224-09-07T01:30:43" +ik[3566] = 1.313 +il[3566] = -37 +im[3566] = 0.1064 +ij[3566] = 28.5 +id[3567] = "2224-10-11T08:01:20" +ik[3567] = 1.811 +il[3567] = 67 +im[3567] = 0.1502 +ij[3567] = 27.4 +id[3568] = "2224-10-27T23:16:39" +ik[3568] = 4.456 +il[3568] = 118 +im[3568] = 0.1468 +ij[3568] = 28.8 +id[3569] = "2224-11-12T04:50:37" +ik[3569] = 90 +il[3569] = 168 +im[3569] = 0.1442 +ij[3569] = 6 +id[3570] = "2225-01-01T02:54:25" +ik[3570] = 0 +il[3570] = -83 +im[3570] = 0.2428 +ij[3570] = 13 +id[3571] = "2225-01-18T04:43:51" +ik[3571] = 0.5707 +il[3571] = -63 +im[3571] = 0.5708 +ij[3571] = 2 +id[3572] = "2225-01-22T22:36:28" +ik[3572] = 6.34 +il[3572] = -59 +im[3572] = 0.2813 +ij[3572] = 11 +id[3573] = "2225-02-13T01:57:00" +ik[3573] = 42.96 +il[3573] = -13 +im[3573] = 0.46 +ij[3573] = 7.1558 +id[3574] = "2225-03-16T16:49:51" +ik[3574] = 74.58 +il[3574] = 49 +im[3574] = 0.2461 +ij[3574] = 14 +id[3575] = "2225-03-17T19:40:00" +ik[3575] = 4.846 +il[3575] = 52 +im[3575] = 0.2062 +ij[3575] = 27.3 +id[3576] = "2225-04-04T14:22:01" +ik[3576] = 90 +il[3576] = 97 +im[3576] = 0.0218 +ij[3576] = 5 +id[3577] = "2225-04-09T19:33:20" +ik[3577] = 1.282 +il[3577] = 113 +im[3577] = 0.1817 +ij[3577] = 27.5 +id[3578] = "2225-05-24T22:12:08" +ik[3578] = 1.278 +il[3578] = -107 +im[3578] = 0.1143 +ij[3578] = 28.7 +id[3579] = "2225-05-28T08:58:05" +ik[3579] = 4.1 +il[3579] = -97 +im[3579] = 0.1227 +ij[3579] = 27.6 +id[3580] = "2225-06-19T00:32:01" +ik[3580] = 54.411 +il[3580] = -30 +im[3580] = 0.003 +ij[3580] = 8 +id[3581] = "2225-07-06T17:48:32" +ik[3581] = 6.045 +il[3581] = 23 +im[3581] = 0.0621 +ij[3581] = 27.2 +id[3582] = "2225-08-03T22:28:16" +ik[3582] = 0.07 +il[3582] = 109 +im[3582] = 0.0187 +ij[3582] = 28.6 +id[3583] = "2225-11-06T12:20:09" +ik[3583] = 0.82 +il[3583] = 20 +im[3583] = 0.0749 +ij[3583] = 12 +id[3584] = "2225-12-17T12:10:04" +ik[3584] = 6.09 +il[3584] = -39 +im[3584] = 0.0158 +ij[3584] = 28.1 +id[3585] = "2226-01-14T01:01:37" +ik[3585] = 2.109 +il[3585] = 44 +im[3585] = 0.0355 +ij[3585] = 28.1 +id[3586] = "2226-01-14T10:00:00" +ik[3586] = 0.193 +il[3586] = 46 +im[3586] = 0.0293 +ij[3586] = 27.3 +id[3587] = "2226-02-01T02:32:27" +ik[3587] = 1.144 +il[3587] = 100 +im[3587] = 0.0334 +ij[3587] = 27.5 +id[3588] = "2226-03-17T06:44:58" +ik[3588] = 2.28 +il[3588] = -122 +im[3588] = 0.0083 +ij[3588] = 27.6 +id[3589] = "2226-03-20T00:17:26" +ik[3589] = 0.487 +il[3589] = -114 +im[3589] = 0.0544 +ij[3589] = 28.7 +id[3590] = "2226-04-08T20:08:55" +ik[3590] = 54.29 +il[3590] = -51 +im[3590] = 0.1242 +ij[3590] = 9 +id[3591] = "2226-04-24T08:54:40" +ik[3591] = 2.813 +il[3591] = -3 +im[3591] = 0.1249 +ij[3591] = 27.2 +id[3592] = "2226-06-08T21:54:51" +ik[3592] = 2.115 +il[3592] = 138 +im[3592] = 0.1775 +ij[3592] = 28.6 +id[3593] = "2226-06-17T14:56:31" +ik[3593] = 90 +il[3593] = 164 +im[3593] = 0.1313 +ij[3593] = 6 +id[3594] = "2226-08-04T16:50:17" +ik[3594] = 0 +il[3594] = -92 +im[3594] = 0.3955 +ij[3594] = 13 +id[3595] = "2226-08-17T13:40:53" +ik[3595] = 0.504 +il[3595] = -76 +im[3595] = 0.504 +ij[3595] = 2 +id[3596] = "2226-08-27T01:36:28" +ik[3596] = 8.32 +il[3596] = -57 +im[3596] = 0.3208 +ij[3596] = 11 +id[3597] = "2226-09-17T16:42:57" +ik[3597] = 43.99 +il[3597] = -47 +im[3597] = 0.2057 +ij[3597] = 7.1637 +id[3598] = "2226-10-20T20:44:37" +ik[3598] = 77.16 +il[3598] = 44 +im[3598] = 0.1363 +ij[3598] = 14 +id[3599] = "2226-11-05T19:59:54" +ik[3599] = 90 +il[3599] = 84 +im[3599] = 0.1769 +ij[3599] = 5 +id[3600] = "2227-01-12T11:18:40" +ik[3600] = 3.655 +il[3600] = -67 +im[3600] = 0.0873 +ij[3600] = 27.1 +id[3601] = "2227-01-20T19:08:41" +ik[3601] = 0.152 +il[3601] = -41 +im[3601] = 0.104 +ij[3601] = 28.8 +id[3602] = "2227-01-21T13:09:23" +ik[3602] = 53.722 +il[3602] = -38 +im[3602] = 0.1106 +ij[3602] = 8 +id[3603] = "2227-01-23T14:29:36" +ik[3603] = 0.892 +il[3603] = -32 +im[3603] = 0.1118 +ij[3603] = 28.5 +id[3604] = "2227-02-28T06:09:46" +ik[3604] = 0.967 +il[3604] = 79 +im[3604] = 0.0258 +ij[3604] = 27.3 +id[3605] = "2227-03-18T01:38:40" +ik[3605] = 0.619 +il[3605] = 134 +im[3605] = 0.0277 +ij[3605] = 27.5 +id[3606] = "2227-05-01T02:04:57" +ik[3606] = 3.46 +il[3606] = -91 +im[3606] = 0.0038 +ij[3606] = 27.6 +id[3607] = "2227-05-06T07:25:14" +ik[3607] = 0.685 +il[3607] = -75 +im[3607] = 0.0742 +ij[3607] = 28.7 +id[3608] = "2227-05-08T20:28:27" +ik[3608] = 0.107 +il[3608] = -67 +im[3608] = 0.0842 +ij[3608] = 28.1 +id[3609] = "2227-06-18T22:50:52" +ik[3609] = 0.2 +il[3609] = 36 +im[3609] = 0.0658 +ij[3609] = 12 +id[3610] = "2227-07-25T15:39:27" +ik[3610] = 0.495 +il[3610] = -33 +im[3610] = 0.0765 +ij[3610] = 28.6 +id[3611] = "2227-08-26T13:36:20" +ik[3611] = 4.064 +il[3611] = 66 +im[3611] = 0.0532 +ij[3611] = 28.1 +id[3612] = "2227-10-23T08:35:59" +ik[3612] = 3.14 +il[3612] = -118 +im[3612] = 0.0946 +ij[3612] = 27.4 +id[3613] = "2227-11-07T09:36:04" +ik[3613] = 53.724 +il[3613] = -73 +im[3613] = 0.1141 +ij[3613] = 9 +id[3614] = "2227-11-10T11:54:42" +ik[3614] = 0.318 +il[3614] = -63 +im[3614] = 0.0647 +ij[3614] = 28.4 +id[3615] = "2227-11-13T05:00:14" +ik[3615] = 3.079 +il[3615] = -55 +im[3615] = 0.0046 +ij[3615] = 28.8 +id[3616] = "2227-12-17T09:21:18" +ik[3616] = 1.451 +il[3616] = 50 +im[3616] = 0.1209 +ij[3616] = 28.5 +id[3617] = "2227-12-19T03:33:46" +ik[3617] = 0.933 +il[3617] = 56 +im[3617] = 0.1456 +ij[3617] = 27.3 +id[3618] = "2228-01-07T19:20:26" +ik[3618] = 0.941 +il[3618] = 117 +im[3618] = 0.1394 +ij[3618] = 27.5 +id[3619] = "2228-01-27T08:24:40" +ik[3619] = 90 +il[3619] = 178 +im[3619] = 0.0393 +ij[3619] = 6 +id[3620] = "2228-03-10T12:01:53" +ik[3620] = 5.34 +il[3620] = -86 +im[3620] = 0.0896 +ij[3620] = 27.6 +id[3621] = "2228-03-14T20:45:04" +ik[3621] = 0 +il[3621] = -79 +im[3621] = 0.4076 +ij[3621] = 13 +id[3622] = "2228-04-06T07:52:19" +ik[3622] = 7.7 +il[3622] = -80 +im[3622] = 0.1151 +ij[3622] = 11 +id[3623] = "2228-04-11T19:31:26" +ik[3623] = 0.5128 +il[3623] = -27 +im[3623] = 0.5129 +ij[3623] = 2 +id[3624] = "2228-04-26T23:13:48" +ik[3624] = 43.1 +il[3624] = -17 +im[3624] = 0.4214 +ij[3624] = 7.1628 +id[3625] = "2228-05-30T08:57:33" +ik[3625] = 76.51 +il[3625] = 50 +im[3625] = 0.0377 +ij[3625] = 14 +id[3626] = "2228-06-02T02:39:41" +ik[3626] = 4.07 +il[3626] = 61 +im[3626] = 0.1143 +ij[3626] = 27.6 +id[3627] = "2228-06-13T09:46:46" +ik[3627] = 2.057 +il[3627] = 93 +im[3627] = 0.0563 +ij[3627] = 28.7 +id[3628] = "2228-06-15T17:36:37" +ik[3628] = 90 +il[3628] = 100 +im[3628] = 0.0451 +ij[3628] = 5 +id[3629] = "2228-08-26T20:58:45" +ik[3629] = 54.482 +il[3629] = -40 +im[3629] = 0.0219 +ij[3629] = 8 +id[3630] = "2228-09-15T01:13:17" +ik[3630] = 0.701 +il[3630] = 18 +im[3630] = 0.0551 +ij[3630] = 28.6 +id[3631] = "2228-12-05T09:39:33" +ik[3631] = 4.955 +il[3631] = -93 +im[3631] = 0.0854 +ij[3631] = 27.4 +id[3632] = "2228-12-10T23:20:58" +ik[3632] = 1.329 +il[3632] = -72 +im[3632] = 0.011 +ij[3632] = 28.1 +id[3633] = "2229-01-21T01:09:07" +ik[3633] = 0.96 +il[3633] = 34 +im[3633] = 0.0778 +ij[3633] = 12 +id[3634] = "2229-03-17T04:12:25" +ik[3634] = 3.386 +il[3634] = 16 +im[3634] = 0.0784 +ij[3634] = 28.1 +id[3635] = "2229-03-31T07:19:34" +ik[3635] = 2.79 +il[3635] = 60 +im[3635] = 0.0694 +ij[3635] = 27.6 +id[3636] = "2229-04-14T02:17:31" +ik[3636] = 0.247 +il[3636] = 103 +im[3636] = 0.0492 +ij[3636] = 28.7 +id[3637] = "2229-05-07T07:18:13" +ik[3637] = 3.729 +il[3637] = 176 +im[3637] = 0.0763 +ij[3637] = 27.2 +id[3638] = "2229-06-16T07:42:20" +ik[3638] = 54.673 +il[3638] = -60 +im[3638] = 0.1029 +ij[3638] = 9 +id[3639] = "2229-07-18T15:11:57" +ik[3639] = 0.357 +il[3639] = 39 +im[3639] = 0.1365 +ij[3639] = 28.6 +id[3640] = "2229-08-26T22:50:37" +ik[3640] = 90 +il[3640] = 158 +im[3640] = 0.1292 +ij[3640] = 6 +id[3641] = "2229-10-16T08:58:00" +ik[3641] = 0 +il[3641] = -90 +im[3641] = 0.3377 +ij[3641] = 13 +id[3642] = "2229-11-07T19:40:48" +ik[3642] = 5.04 +il[3642] = -43 +im[3642] = 0.5094 +ij[3642] = 11 +id[3643] = "2229-11-09T01:26:16" +ik[3643] = 0.5351 +il[3643] = -42 +im[3643] = 0.5352 +ij[3643] = 2 +id[3644] = "2229-11-28T08:00:34" +ik[3644] = 42.96 +il[3644] = -20 +im[3644] = 0.1424 +ij[3644] = 7.1553 +id[3645] = "2229-12-29T19:18:21" +ik[3645] = 74.43 +il[3645] = 42 +im[3645] = 0.1147 +ij[3645] = 14 +id[3646] = "2230-01-17T15:07:08" +ik[3646] = 90 +il[3646] = 88 +im[3646] = 0.2163 +ij[3646] = 5 +id[3647] = "2230-01-20T16:14:13" +ik[3647] = 2.003 +il[3647] = 97 +im[3647] = 0.203 +ij[3647] = 27.1 +id[3648] = "2230-02-05T09:52:16" +ik[3648] = 1.536 +il[3648] = 146 +im[3648] = 0.1448 +ij[3648] = 28.8 +id[3649] = "2230-02-21T05:30:54" +ik[3649] = 2.58 +il[3649] = -164 +im[3649] = 0.1154 +ij[3649] = 28.4 +id[3650] = "2230-03-12T23:17:46" +ik[3650] = 1.815 +il[3650] = -102 +im[3650] = 0.021 +ij[3650] = 27.3 +id[3651] = "2230-03-31T09:57:46" +ik[3651] = 0.167 +il[3651] = -45 +im[3651] = 0.1055 +ij[3651] = 27.5 +id[3652] = "2230-04-06T12:05:28" +ik[3652] = 53.949 +il[3652] = -26 +im[3652] = 0.1034 +ij[3652] = 8 +id[3653] = "2230-04-24T18:41:19" +ik[3653] = 0.003 +il[3653] = 30 +im[3653] = 0.0192 +ij[3653] = 28.5 +id[3654] = "2230-05-15T07:40:34" +ik[3654] = 3.76 +il[3654] = 93 +im[3654] = 0.0731 +ij[3654] = 27.6 +id[3655] = "2230-05-31T18:55:09" +ik[3655] = 0.993 +il[3655] = 143 +im[3655] = 0.0919 +ij[3655] = 28.7 +id[3656] = "2230-06-22T06:20:58" +ik[3656] = 5.371 +il[3656] = -151 +im[3656] = 0.0472 +ij[3656] = 27.2 +id[3657] = "2230-07-19T12:25:20" +ik[3657] = 2.905 +il[3657] = -68 +im[3657] = 0.0797 +ij[3657] = 28.1 +id[3658] = "2230-08-25T04:30:43" +ik[3658] = 1.34 +il[3658] = 23 +im[3658] = 0.0072 +ij[3658] = 12 +id[3659] = "2230-10-27T21:51:50" +ik[3659] = 2.367 +il[3659] = 36 +im[3659] = 0.0658 +ij[3659] = 28.1 +id[3660] = "2230-11-05T23:58:39" +ik[3660] = 3.876 +il[3660] = 64 +im[3660] = 0.0295 +ij[3660] = 27.4 +id[3661] = "2230-12-01T14:43:52" +ik[3661] = 2.345 +il[3661] = 141 +im[3661] = 0.094 +ij[3661] = 28.8 +id[3662] = "2230-12-31T00:34:39" +ik[3662] = 0.542 +il[3662] = -128 +im[3662] = 0.1102 +ij[3662] = 27.3 +id[3663] = "2231-01-18T02:28:53" +ik[3663] = 1.201 +il[3663] = -72 +im[3663] = 0.0875 +ij[3663] = 27.5 +id[3664] = "2231-01-22T19:47:42" +ik[3664] = 53.639 +il[3664] = -58 +im[3664] = 0.0255 +ij[3664] = 9 +id[3665] = "2231-03-05T01:13:24" +ik[3665] = 1.21 +il[3665] = 71 +im[3665] = 0.1088 +ij[3665] = 27.6 +id[3666] = "2231-03-16T05:33:04" +ik[3666] = 2.641 +il[3666] = 107 +im[3666] = 0.159 +ij[3666] = 28.5 +id[3667] = "2231-03-29T15:14:49" +ik[3667] = 2.928 +il[3667] = 148 +im[3667] = 0.1974 +ij[3667] = 28.7 +id[3668] = "2231-04-08T07:44:52" +ik[3668] = 90 +il[3668] = 178 +im[3668] = 0.0409 +ij[3668] = 6 +id[3669] = "2231-04-18T06:53:19" +ik[3669] = 0.609 +il[3669] = -157 +im[3669] = 0.1397 +ij[3669] = 27.2 +id[3670] = "2231-05-24T19:18:48" +ik[3670] = 0 +il[3670] = -83 +im[3670] = 0.3646 +ij[3670] = 13 +id[3671] = "2231-06-16T01:17:45" +ik[3671] = 0.84 +il[3671] = -48 +im[3671] = 0.0646 +ij[3671] = 11 +id[3672] = "2231-06-22T14:14:22" +ik[3672] = 0.5209 +il[3672] = -38 +im[3672] = 0.5209 +ij[3672] = 2 +id[3673] = "2231-07-07T18:21:22" +ik[3673] = 43.96 +il[3673] = -28 +im[3673] = 0.3485 +ij[3673] = 7.1662 +id[3674] = "2231-08-10T18:57:03" +ik[3674] = 77.98 +il[3674] = 55 +im[3674] = 0.0618 +ij[3674] = 14 +id[3675] = "2231-08-25T05:19:49" +ik[3675] = 90 +il[3675] = 92 +im[3675] = 0.0232 +ij[3675] = 5 +id[3676] = "2231-10-28T22:17:54" +ik[3676] = 0.969 +il[3676] = -70 +im[3676] = 0.1178 +ij[3676] = 28.6 +id[3677] = "2231-11-06T05:16:37" +ik[3677] = 54.096 +il[3677] = -45 +im[3677] = 0.0367 +ij[3677] = 8 +id[3678] = "2231-12-29T23:15:06" +ik[3678] = 4.509 +il[3678] = 123 +im[3678] = 0.1029 +ij[3678] = 27.1 +id[3679] = "2232-01-16T03:49:32" +ik[3679] = 0.779 +il[3679] = 176 +im[3679] = 0.0822 +ij[3679] = 28.8 +id[3680] = "2232-02-09T14:50:29" +ik[3680] = 2.89 +il[3680] = -107 +im[3680] = 0.0592 +ij[3680] = 28.1 +id[3681] = "2232-02-13T14:47:59" +ik[3681] = 0.477 +il[3681] = -95 +im[3681] = 0.0866 +ij[3681] = 27.3 +id[3682] = "2232-02-28T00:44:12" +ik[3682] = 0.914 +il[3682] = -62 +im[3682] = 0.0881 +ij[3682] = 28.4 +id[3683] = "2232-03-02T05:31:32" +ik[3683] = 0.868 +il[3683] = -52 +im[3683] = 0.0796 +ij[3683] = 27.5 +id[3684] = "2232-04-07T08:05:16" +ik[3684] = 1.25 +il[3684] = 47 +im[3684] = 0.0225 +ij[3684] = 12 +id[3685] = "2232-05-17T11:24:51" +ik[3685] = 0.759 +il[3685] = -14 +im[3685] = 0.0709 +ij[3685] = 28.5 +id[3686] = "2232-05-21T15:51:06" +ik[3686] = 4.34 +il[3686] = -1 +im[3686] = 0.009 +ij[3686] = 27.2 +id[3687] = "2232-05-24T00:24:02" +ik[3687] = 0.037 +il[3687] = 11 +im[3687] = 0.0355 +ij[3687] = 28.1 +id[3688] = "2232-06-08T08:18:31" +ik[3688] = 0.069 +il[3688] = 54 +im[3688] = 0.0557 +ij[3688] = 27.9 +id[3689] = "2232-08-23T10:25:58" +ik[3689] = 54.394 +il[3689] = -71 +im[3689] = 0.0866 +ij[3689] = 9 +id[3690] = "2232-08-30T18:51:33" +ik[3690] = 2.107 +il[3690] = -49 +im[3690] = 0.0914 +ij[3690] = 28.6 +id[3691] = "2232-10-11T02:47:06" +ik[3691] = 1.743 +il[3691] = 77 +im[3691] = 0.1553 +ij[3691] = 27.4 +id[3692] = "2232-11-09T15:59:19" +ik[3692] = 90 +il[3692] = 167 +im[3692] = 0.2046 +ij[3692] = 6 +id[3693] = "2232-11-14T08:09:10" +ik[3693] = 4.521 +il[3693] = -179 +im[3693] = 0.1192 +ij[3693] = 28.8 +id[3694] = "2232-12-30T18:57:29" +ik[3694] = 0 +il[3694] = -79 +im[3694] = 0.0035 +ij[3694] = 13 +id[3695] = "2233-01-19T10:29:02" +ik[3695] = 0.5794 +il[3695] = -57 +im[3695] = 0.5795 +ij[3695] = 2 +id[3696] = "2233-01-20T11:15:21" +ik[3696] = 6.06 +il[3696] = -56 +im[3696] = 0.5631 +ij[3696] = 11 +id[3697] = "2233-02-10T18:02:03" +ik[3697] = 41.96 +il[3697] = -11 +im[3697] = 0.2811 +ij[3697] = 7.156 +id[3698] = "2233-03-14T05:44:46" +ik[3698] = 73.45 +il[3698] = 51 +im[3698] = 0.2745 +ij[3698] = 14 +id[3699] = "2233-03-18T06:07:06" +ik[3699] = 4.604 +il[3699] = 61 +im[3699] = 0.2393 +ij[3699] = 27.3 +id[3700] = "2233-04-02T03:06:15" +ik[3700] = 90 +il[3700] = 99 +im[3700] = 0.1587 +ij[3700] = 5 +id[3701] = "2233-04-09T17:59:32" +ik[3701] = 1.183 +il[3701] = 123 +im[3701] = 0.1316 +ij[3701] = 27.5 +id[3702] = "2233-05-28T01:01:25" +ik[3702] = 4.09 +il[3702] = -88 +im[3702] = 0.1281 +ij[3702] = 27.6 +id[3703] = "2233-06-16T17:11:19" +ik[3703] = 54.4 +il[3703] = -28 +im[3703] = 0.0872 +ij[3703] = 8 +id[3704] = "2233-06-25T13:37:46" +ik[3704] = 1.475 +il[3704] = -1 +im[3704] = 0.1027 +ij[3704] = 28.7 +id[3705] = "2233-07-06T07:56:04" +ik[3705] = 6.019 +il[3705] = 32 +im[3705] = 0.0177 +ij[3705] = 27.2 +id[3706] = "2233-07-24T12:51:33" +ik[3706] = 0.425 +il[3706] = 87 +im[3706] = 0.0819 +ij[3706] = 28.5 +id[3707] = "2233-09-22T13:43:49" +ik[3707] = 2.149 +il[3707] = -88 +im[3707] = 0.069 +ij[3707] = 28.1 +id[3708] = "2233-11-04T01:40:48" +ik[3708] = 0.86 +il[3708] = -89 +im[3708] = 0.0214 +ij[3708] = 12 +id[3709] = "2233-12-20T21:35:51" +ik[3709] = 1.818 +il[3709] = -11 +im[3709] = 0.0409 +ij[3709] = 28.8 +id[3710] = "2233-12-25T20:49:20" +ik[3710] = 1.298 +il[3710] = 1 +im[3710] = 0.0864 +ij[3710] = 28.1 +id[3711] = "2234-01-13T23:20:26" +ik[3711] = 0.202 +il[3711] = 54 +im[3711] = 0.065 +ij[3711] = 27.3 +id[3712] = "2234-01-31T16:02:12" +ik[3712] = 1.146 +il[3712] = 109 +im[3712] = 0.0117 +ij[3712] = 27.5 +id[3713] = "2234-03-04T18:50:24" +ik[3713] = 0.936 +il[3713] = -151 +im[3713] = 0.0337 +ij[3713] = 28.4 +id[3714] = "2234-03-16T20:49:17" +ik[3714] = 2.26 +il[3714] = -113 +im[3714] = 0.0483 +ij[3714] = 27.6 +id[3715] = "2234-04-06T11:40:40" +ik[3715] = 54.268 +il[3715] = -49 +im[3715] = 0.0841 +ij[3715] = 9 +id[3716] = "2234-04-19T15:43:29" +ik[3716] = 1.636 +il[3716] = -8 +im[3716] = 0.0539 +ij[3716] = 28.7 +id[3717] = "2234-04-24T00:46:12" +ik[3717] = 2.77 +il[3717] = 6 +im[3717] = 0.1303 +ij[3717] = 27.2 +id[3718] = "2234-06-15T08:22:55" +ik[3718] = 90 +il[3718] = 167 +im[3718] = 0.0293 +ij[3718] = 6 +id[3719] = "2234-06-22T15:30:18" +ik[3719] = 0.962 +il[3719] = -171 +im[3719] = 0.2331 +ij[3719] = 28.5 +id[3720] = "2234-08-02T05:45:13" +ik[3720] = 0 +il[3720] = -90 +im[3720] = 0.2778 +ij[3720] = 13 +id[3721] = "2234-08-18T17:18:51" +ik[3721] = 0.5247 +il[3721] = -70 +im[3721] = 0.5247 +ij[3721] = 2 +id[3722] = "2234-08-24T16:36:28" +ik[3722] = 8.21 +il[3722] = -55 +im[3722] = 0.1099 +ij[3722] = 11 +id[3723] = "2234-09-16T04:49:48" +ik[3723] = 44.96 +il[3723] = -45 +im[3723] = 0.387 +ij[3723] = 7.1637 +id[3724] = "2234-10-18T13:52:35" +ik[3724] = 77.34 +il[3724] = 47 +im[3724] = 0.0788 +ij[3724] = 14 +id[3725] = "2234-11-03T10:51:31" +ik[3725] = 90 +il[3725] = 87 +im[3725] = 0.0362 +ij[3725] = 5 +id[3726] = "2234-12-11T20:04:24" +ik[3726] = 0.249 +il[3726] = -155 +im[3726] = 0.1565 +ij[3726] = 28.6 +id[3727] = "2235-01-12T02:37:45" +ik[3727] = 3.693 +il[3727] = -58 +im[3727] = 0.1167 +ij[3727] = 27.1 +id[3728] = "2235-01-19T00:50:01" +ik[3728] = 53.725 +il[3728] = -36 +im[3728] = 0.0431 +ij[3728] = 8 +id[3729] = "2235-02-03T23:34:30" +ik[3729] = 0.151 +il[3729] = 14 +im[3729] = 0.0626 +ij[3729] = 28.8 +id[3730] = "2235-02-27T20:01:45" +ik[3730] = 0.948 +il[3730] = 88 +im[3730] = 0.0663 +ij[3730] = 27.3 +id[3731] = "2235-03-17T15:11:59" +ik[3731] = 0.629 +il[3731] = 143 +im[3731] = 0.0146 +ij[3731] = 27.5 +id[3732] = "2235-04-30T15:12:17" +ik[3732] = 3.45 +il[3732] = -82 +im[3732] = 0.043 +ij[3732] = 27.6 +id[3733] = "2235-06-16T17:24:00" +ik[3733] = 0.15 +il[3733] = 39 +im[3733] = 0.0049 +ij[3733] = 12 +id[3734] = "2235-08-24T10:34:01" +ik[3734] = 0.05 +il[3734] = 69 +im[3734] = 0.0883 +ij[3734] = 28.5 +id[3735] = "2235-10-16T16:24:05" +ik[3735] = 2.731 +il[3735] = -129 +im[3735] = 0.0235 +ij[3735] = 28.6 +id[3736] = "2235-10-22T23:11:05" +ik[3736] = 3.11 +il[3736] = -110 +im[3736] = 0.1074 +ij[3736] = 27.4 +id[3737] = "2235-11-04T21:23:49" +ik[3737] = 53.743 +il[3737] = -71 +im[3737] = 0.1156 +ij[3737] = 9 +id[3738] = "2235-11-27T18:12:05" +ik[3738] = 3.063 +il[3738] = 0 +im[3738] = 0.0376 +ij[3738] = 28.8 +id[3739] = "2235-12-18T21:00:52" +ik[3739] = 0.943 +il[3739] = 65 +im[3739] = 0.1317 +ij[3739] = 27.3 +id[3740] = "2236-01-07T15:47:05" +ik[3740] = 0.908 +il[3740] = 127 +im[3740] = 0.1703 +ij[3740] = 27.5 +id[3741] = "2236-01-24T21:30:09" +ik[3741] = 90 +il[3741] = -179 +im[3741] = 0.1414 +ij[3741] = 6 +id[3742] = "2236-03-12T13:53:02" +ik[3742] = 0 +il[3742] = -76 +im[3742] = 0.1863 +ij[3742] = 13 +id[3743] = "2236-04-03T22:35:02" +ik[3743] = 7.87 +il[3743] = -29 +im[3743] = 0.3219 +ij[3743] = 11 +id[3744] = "2236-04-12T20:17:37" +ik[3744] = 0.5103 +il[3744] = -21 +im[3744] = 0.5104 +ij[3744] = 2 +id[3745] = "2236-04-24T17:01:37" +ik[3745] = 43.13 +il[3745] = -6 +im[3745] = 0.3637 +ij[3745] = 7.1626 +id[3746] = "2236-05-27T22:20:25" +ik[3746] = 76.35 +il[3746] = 59 +im[3746] = 0.2079 +ij[3746] = 14 +id[3747] = "2236-06-02T11:54:13" +ik[3747] = 4.12 +il[3747] = 72 +im[3747] = 0.0688 +ij[3747] = 27.6 +id[3748] = "2236-06-10T05:28:45" +ik[3748] = 1.606 +il[3748] = 94 +im[3748] = 0.2126 +ij[3748] = 28.4 +id[3749] = "2236-06-13T09:24:50" +ik[3749] = 90 +il[3749] = 102 +im[3749] = 0.1277 +ij[3749] = 5 +id[3750] = "2236-07-18T12:56:26" +ik[3750] = 2.321 +il[3750] = -150 +im[3750] = 0.0671 +ij[3750] = 28.7 +id[3751] = "2236-08-24T13:52:17" +ik[3751] = 54.489 +il[3751] = -38 +im[3751] = 0.095 +ij[3751] = 8 +id[3752] = "2236-11-02T23:46:45" +ik[3752] = 0.019 +il[3752] = -180 +im[3752] = 0.0775 +ij[3752] = 28.5 +id[3753] = "2236-11-21T00:51:15" +ik[3753] = 0.703 +il[3753] = -124 +im[3753] = 0.0921 +ij[3753] = 28.1 +id[3754] = "2236-12-04T22:53:45" +ik[3754] = 4.937 +il[3754] = -81 +im[3754] = 0.0842 +ij[3754] = 27.4 +id[3755] = "2236-12-07T22:08:49" +ik[3755] = 1.182 +il[3755] = -71 +im[3755] = 0.076 +ij[3755] = 28.6 +id[3756] = "2237-01-18T11:05:16" +ik[3756] = 0.91 +il[3756] = 36 +im[3756] = 0.0859 +ij[3756] = 12 +id[3757] = "2237-03-30T20:37:07" +ik[3757] = 2.78 +il[3757] = 69 +im[3757] = 0.0418 +ij[3757] = 27.6 +id[3758] = "2237-05-06T21:05:45" +ik[3758] = 3.704 +il[3758] = -175 +im[3758] = 0.1001 +ij[3758] = 27.2 +id[3759] = "2237-05-13T12:09:04" +ik[3759] = 1.023 +il[3759] = -155 +im[3759] = 0.0091 +ij[3759] = 28.7 +id[3760] = "2237-06-14T01:57:38" +ik[3760] = 54.67 +il[3760] = -57 +im[3760] = 0.0394 +ij[3760] = 9 +id[3761] = "2237-08-24T12:45:37" +ik[3761] = 90 +il[3761] = 161 +im[3761] = 0.0433 +ij[3761] = 6 +id[3762] = "2237-10-13T22:20:52" +ik[3762] = 0 +il[3762] = -88 +im[3762] = 0.4388 +ij[3762] = 13 +id[3763] = "2237-11-05T08:57:07" +ik[3763] = 5.35 +il[3763] = -53 +im[3763] = 0.2236 +ij[3763] = 11 +id[3764] = "2237-11-10T00:48:47" +ik[3764] = 0.5388 +il[3764] = -43 +im[3764] = 0.5389 +ij[3764] = 2 +id[3765] = "2237-11-25T21:23:27" +ik[3765] = 42.96 +il[3765] = -33 +im[3765] = 0.4172 +ij[3765] = 7.1555 +id[3766] = "2237-12-27T09:26:12" +ik[3766] = 74.46 +il[3766] = 44 +im[3766] = 0.1139 +ij[3766] = 14 +id[3767] = "2238-01-03T06:06:37" +ik[3767] = 2.353 +il[3767] = 55 +im[3767] = 0.2286 +ij[3767] = 28.5 +id[3768] = "2238-01-15T03:54:55" +ik[3768] = 90 +il[3768] = 90 +im[3768] = 0.0953 +ij[3768] = 5 +id[3769] = "2238-01-20T16:19:05" +ik[3769] = 2.093 +il[3769] = 107 +im[3769] = 0.2034 +ij[3769] = 27.1 +id[3770] = "2238-01-24T19:16:05" +ik[3770] = 1.646 +il[3770] = 120 +im[3770] = 0.1127 +ij[3770] = 28.6 +id[3771] = "2238-02-20T21:04:01" +ik[3771] = 0.947 +il[3771] = -155 +im[3771] = 0.1393 +ij[3771] = 28.8 +id[3772] = "2238-03-12T15:12:52" +ik[3772] = 1.774 +il[3772] = -93 +im[3772] = 0.0417 +ij[3772] = 27.3 +id[3773] = "2238-03-31T00:55:58" +ik[3773] = 0.189 +il[3773] = -36 +im[3773] = 0.0693 +ij[3773] = 27.5 +id[3774] = "2238-04-04T01:14:59" +ik[3774] = 53.933 +il[3774] = -24 +im[3774] = 0.1223 +ij[3774] = 8 +id[3775] = "2238-05-14T21:31:03" +ik[3775] = 3.75 +il[3775] = 102 +im[3775] = 0.0399 +ij[3775] = 27.6 +id[3776] = "2238-06-21T19:30:17" +ik[3776] = 5.352 +il[3776] = -143 +im[3776] = 0.0762 +ij[3776] = 27.2 +id[3777] = "2238-06-25T20:25:09" +ik[3777] = 2.438 +il[3777] = -131 +im[3777] = 0.0194 +ij[3777] = 28.1 +id[3778] = "2238-06-30T02:14:47" +ik[3778] = 0.503 +il[3778] = -118 +im[3778] = 0.0526 +ij[3778] = 28.7 +id[3779] = "2238-07-06T15:28:13" +ik[3779] = 0.987 +il[3779] = -98 +im[3779] = 0.0793 +ij[3779] = 28.4 +id[3780] = "2238-08-22T21:51:50" +ik[3780] = 1.33 +il[3780] = 26 +im[3780] = 0.0584 +ij[3780] = 12 +id[3781] = "2238-10-07T06:46:56" +ik[3781] = 2.832 +il[3781] = -17 +im[3781] = 0.0461 +ij[3781] = 28.1 +id[3782] = "2238-11-05T13:34:12" +ik[3782] = 3.857 +il[3782] = 72 +im[3782] = 0.0643 +ij[3782] = 27.4 +id[3783] = "2238-12-03T05:08:00" +ik[3783] = 2.022 +il[3783] = 156 +im[3783] = 0.0983 +ij[3783] = 28.6 +id[3784] = "2238-12-04T17:26:18" +ik[3784] = 1.237 +il[3784] = 161 +im[3784] = 0.0863 +ij[3784] = 28.5 +id[3785] = "2238-12-15T14:09:44" +ik[3785] = 2.283 +il[3785] = -166 +im[3785] = 0.0931 +ij[3785] = 28.8 +id[3786] = "2238-12-30T14:47:05" +ik[3786] = 0.553 +il[3786] = -120 +im[3786] = 0.1104 +ij[3786] = 27.3 +id[3787] = "2239-01-17T17:12:52" +ik[3787] = 1.198 +il[3787] = -64 +im[3787] = 0.1092 +ij[3787] = 27.5 +id[3788] = "2239-01-20T06:42:07" +ik[3788] = 53.627 +il[3788] = -56 +im[3788] = 0.0749 +ij[3788] = 9 +id[3789] = "2239-03-04T18:50:01" +ik[3789] = 1.15 +il[3789] = 81 +im[3789] = 0.1471 +ij[3789] = 27.6 +id[3790] = "2239-04-06T00:46:31" +ik[3790] = 90 +il[3790] = -179 +im[3790] = 0.1212 +ij[3790] = 6 +id[3791] = "2239-04-18T15:34:11" +ik[3791] = 0.473 +il[3791] = -148 +im[3791] = 0.1939 +ij[3791] = 27.2 +id[3792] = "2239-05-22T09:26:39" +ik[3792] = 0 +il[3792] = -80 +im[3792] = 0.1029 +ij[3792] = 13 +id[3793] = "2239-06-03T11:07:26" +ik[3793] = 1.798 +il[3793] = -65 +im[3793] = 0.0892 +ij[3793] = 28.7 +id[3794] = "2239-06-10T07:51:06" +ik[3794] = 0.5013 +il[3794] = -76 +im[3794] = 0.5013 +ij[3794] = 2 +id[3795] = "2239-06-13T18:30:14" +ik[3795] = 0.51 +il[3795] = -77 +im[3795] = 0.3371 +ij[3795] = 11 +id[3796] = "2239-07-05T12:33:14" +ik[3796] = 44.13 +il[3796] = -52 +im[3796] = 0.3805 +ij[3796] = 7.1661 +id[3797] = "2239-08-03T17:58:59" +ik[3797] = 4.487 +il[3797] = 47 +im[3797] = 0.2547 +ij[3797] = 28.7 +id[3798] = "2239-08-08T11:02:02" +ik[3798] = 78.07 +il[3798] = 57 +im[3798] = 0.1421 +ij[3798] = 14 +id[3799] = "2239-08-22T22:00:13" +ik[3799] = 90 +il[3799] = 95 +im[3799] = 0.1542 +ij[3799] = 5 +id[3800] = "2239-11-03T19:47:55" +ik[3800] = 54.113 +il[3800] = -42 +im[3800] = 0.1129 +ij[3800] = 8 +id[3801] = "2239-12-29T12:51:58" +ik[3801] = 4.535 +il[3801] = 131 +im[3801] = 0.0899 +ij[3801] = 27.1 +id[3802] = "2240-01-20T05:52:39" +ik[3802] = 2.744 +il[3802] = -161 +im[3802] = 0.0527 +ij[3802] = 28.1 +id[3803] = "2240-01-25T17:20:41" +ik[3803] = 0.369 +il[3803] = -144 +im[3803] = 0.0425 +ij[3803] = 28.6 +id[3804] = "2240-01-29T23:08:18" +ik[3804] = 0.914 +il[3804] = -131 +im[3804] = 0.0894 +ij[3804] = 28.8 +id[3805] = "2240-02-10T02:48:31" +ik[3805] = 0.031 +il[3805] = -95 +im[3805] = 0.0454 +ij[3805] = 28.5 +id[3806] = "2240-02-13T04:00:25" +ik[3806] = 0.465 +il[3806] = -87 +im[3806] = 0.0829 +ij[3806] = 27.3 +id[3807] = "2240-04-04T21:36:00" +ik[3807] = 1.28 +il[3807] = 50 +im[3807] = 0.0485 +ij[3807] = 12 +id[3808] = "2240-05-21T04:59:58" +ik[3808] = 4.321 +il[3808] = 8 +im[3808] = 0.0435 +ij[3808] = 27.2 +id[3809] = "2240-06-07T02:22:42" +ik[3809] = 0.63 +il[3809] = 61 +im[3809] = 0.0091 +ij[3809] = 28.7 +id[3810] = "2240-08-13T02:02:58" +ik[3810] = 1.216 +il[3810] = -93 +im[3810] = 0.1073 +ij[3810] = 28.4 +id[3811] = "2240-08-21T02:47:29" +ik[3811] = 54.413 +il[3811] = -68 +im[3811] = 0.0043 +ij[3811] = 9 +id[3812] = "2240-10-10T21:54:38" +ik[3812] = 1.673 +il[3812] = 86 +im[3812] = 0.1415 +ij[3812] = 27.4 +id[3813] = "2240-11-07T03:11:35" +ik[3813] = 90 +il[3813] = 169 +im[3813] = 0.1141 +ij[3813] = 6 +id[3814] = "2240-12-06T01:35:11" +ik[3814] = 3.28 +il[3814] = -119 +im[3814] = 0.1574 +ij[3814] = 28.8 +id[3815] = "2240-12-23T14:40:50" +ik[3815] = 0.008 +il[3815] = -85 +im[3815] = 0.4207 +ij[3815] = 28.6 +id[3816] = "2240-12-27T11:02:29" +ik[3816] = 0 +il[3816] = -78 +im[3816] = 0.3907 +ij[3816] = 13 +id[3817] = "2241-01-17T23:57:07" +ik[3817] = 5.76 +il[3817] = -44 +im[3817] = 0.4846 +ij[3817] = 11 +id[3818] = "2241-01-19T16:25:52" +ik[3818] = 5.684 +il[3818] = -65 +im[3818] = 0.5646 +ij[3818] = 28.8 +id[3819] = "2241-01-20T11:28:03" +ik[3819] = 0.5739 +il[3819] = -34 +im[3819] = 0.574 +ij[3819] = 2 +id[3820] = "2241-02-07T18:10:11" +ik[3820] = 42.3 +il[3820] = -24 +im[3820] = 0.1306 +ij[3820] = 7.1557 +id[3821] = "2241-02-25T02:27:10" +ik[3821] = 5.019 +il[3821] = -3 +im[3821] = 0.0931 +ij[3821] = 28.8 +id[3822] = "2241-03-05T07:39:21" +ik[3822] = 4.761 +il[3822] = 23 +im[3822] = 0.2223 +ij[3822] = 28.6 +id[3823] = "2241-03-11T16:27:59" +ik[3823] = 74.23 +il[3823] = 43 +im[3823] = 0.1267 +ij[3823] = 14 +id[3824] = "2241-03-18T14:12:51" +ik[3824] = 4.387 +il[3824] = 65 +im[3824] = 0.2518 +ij[3824] = 27.3 +id[3825] = "2241-03-30T15:50:30" +ik[3825] = 90 +il[3825] = 101 +im[3825] = 0.2002 +ij[3825] = 5 +id[3826] = "2241-04-09T15:47:05" +ik[3826] = 1.091 +il[3826] = 133 +im[3826] = 0.0652 +ij[3826] = 27.5 +id[3827] = "2241-04-11T10:46:42" +ik[3827] = 1.433 +il[3827] = 138 +im[3827] = 0.1229 +ij[3827] = 28.5 +id[3828] = "2241-05-27T16:56:55" +ik[3828] = 4.08 +il[3828] = -79 +im[3828] = 0.1129 +ij[3828] = 27.6 +id[3829] = "2241-06-14T09:43:30" +ik[3829] = 54.388 +il[3829] = -25 +im[3829] = 0.1149 +ij[3829] = 8 +id[3830] = "2241-07-05T22:00:57" +ik[3830] = 5.993 +il[3830] = 41 +im[3830] = 0.0331 +ij[3830] = 27.2 +id[3831] = "2241-07-24T18:21:27" +ik[3831] = 0.834 +il[3831] = 98 +im[3831] = 0.0616 +ij[3831] = 28.7 +id[3832] = "2241-09-02T16:14:52" +ik[3832] = 2.393 +il[3832] = -140 +im[3832] = 0.0533 +ij[3832] = 28.1 +id[3833] = "2241-09-21T15:52:33" +ik[3833] = 1.239 +il[3833] = -81 +im[3833] = 0.0286 +ij[3833] = 28.1 +id[3834] = "2241-11-01T15:12:57" +ik[3834] = 0.91 +il[3834] = -82 +im[3834] = 0.0501 +ij[3834] = 12 +id[3835] = "2242-01-03T16:32:44" +ik[3835] = 1.743 +il[3835] = 33 +im[3835] = 0.0049 +ij[3835] = 28.8 +id[3836] = "2242-01-13T12:43:31" +ik[3836] = 0.213 +il[3836] = 63 +im[3836] = 0.0891 +ij[3836] = 27.3 +id[3837] = "2242-01-19T17:31:03" +ik[3837] = 0.49 +il[3837] = 82 +im[3837] = 0.0066 +ij[3837] = 28.6 +id[3838] = "2242-01-31T05:31:58" +ik[3838] = 1.148 +il[3838] = 117 +im[3838] = 0.047 +ij[3838] = 27.5 +id[3839] = "2242-03-04T17:15:38" +ik[3839] = 0.632 +il[3839] = -141 +im[3839] = 0.0113 +ij[3839] = 28.5 +id[3840] = "2242-03-16T11:02:50" +ik[3840] = 2.23 +il[3840] = -105 +im[3840] = 0.0824 +ij[3840] = 27.6 +id[3841] = "2242-04-04T03:05:18" +ik[3841] = 54.245 +il[3841] = -46 +im[3841] = 0.0151 +ij[3841] = 9 +id[3842] = "2242-04-23T16:44:24" +ik[3842] = 2.727 +il[3842] = 15 +im[3842] = 0.1158 +ij[3842] = 27.2 +id[3843] = "2242-05-20T06:06:02" +ik[3843] = 2.211 +il[3843] = 97 +im[3843] = 0.0539 +ij[3843] = 28.7 +id[3844] = "2242-06-13T01:56:24" +ik[3844] = 90 +il[3844] = 170 +im[3844] = 0.1626 +ij[3844] = 6 +id[3845] = "2242-07-30T16:28:25" +ik[3845] = 0 +il[3845] = -87 +im[3845] = 0.066 +ij[3845] = 13 +id[3846] = "2242-08-19T19:17:25" +ik[3846] = 0.5344 +il[3846] = -64 +im[3846] = 0.5345 +ij[3846] = 2 +id[3847] = "2242-08-22T07:43:40" +ik[3847] = 8.09 +il[3847] = -62 +im[3847] = 0.4536 +ij[3847] = 11 +id[3848] = "2242-09-13T16:32:00" +ik[3848] = 45 +il[3848] = -15 +im[3848] = 0.415 +ij[3848] = 7.1639 +id[3849] = "2242-10-16T06:54:47" +ik[3849] = 77.6 +il[3849] = 49 +im[3849] = 0.2424 +ij[3849] = 14 +id[3850] = "2242-11-01T01:52:52" +ik[3850] = 90 +il[3850] = 89 +im[3850] = 0.1308 +ij[3850] = 5 +id[3851] = "2242-12-22T09:23:19" +ik[3851] = 1.508 +il[3851] = -113 +im[3851] = 0.0739 +ij[3851] = 28.4 +id[3852] = "2243-01-11T17:50:11" +ik[3852] = 3.731 +il[3852] = -49 +im[3852] = 0.1246 +ij[3852] = 27.1 +id[3853] = "2243-01-16T12:34:13" +ik[3853] = 53.73 +il[3853] = -34 +im[3853] = 0.0568 +ij[3853] = 8 +id[3854] = "2243-02-18T00:45:30" +ik[3854] = 0.384 +il[3854] = 68 +im[3854] = 0.0104 +ij[3854] = 28.8 +id[3855] = "2243-02-27T09:49:45" +ik[3855] = 0.929 +il[3855] = 97 +im[3855] = 0.0957 +ij[3855] = 27.3 +id[3856] = "2243-03-14T00:29:48" +ik[3856] = 0.536 +il[3856] = 142 +im[3856] = 0.0882 +ij[3856] = 28.6 +id[3857] = "2243-03-17T04:45:18" +ik[3857] = 0.639 +il[3857] = 152 +im[3857] = 0.0465 +ij[3857] = 27.5 +id[3858] = "2243-03-23T23:08:18" +ik[3858] = 1.796 +il[3858] = 173 +im[3858] = 0.0768 +ij[3858] = 28.1 +id[3859] = "2243-04-30T04:22:48" +ik[3859] = 3.44 +il[3859] = -74 +im[3859] = 0.0721 +ij[3859] = 27.6 +id[3860] = "2243-05-09T10:06:40" +ik[3860] = 0.279 +il[3860] = -56 +im[3860] = 0.0756 +ij[3860] = 28.1 +id[3861] = "2243-05-09T10:49:26" +ik[3861] = 0.168 +il[3861] = -56 +im[3861] = 0.0759 +ij[3861] = 28.5 +id[3862] = "2243-06-14T11:48:28" +ik[3862] = 0.1 +il[3862] = 42 +im[3862] = 0.0584 +ij[3862] = 12 +id[3863] = "2243-10-22T13:54:11" +ik[3863] = 3.08 +il[3863] = -101 +im[3863] = 0.1043 +ij[3863] = 27.4 +id[3864] = "2243-11-02T09:18:40" +ik[3864] = 53.762 +il[3864] = -68 +im[3864] = 0.0401 +ij[3864] = 9 +id[3865] = "2243-12-12T13:30:08" +ik[3865] = 2.624 +il[3865] = 55 +im[3865] = 0.097 +ij[3865] = 28.8 +id[3866] = "2243-12-18T14:41:44" +ik[3866] = 0.953 +il[3866] = 74 +im[3866] = 0.0982 +ij[3866] = 27.3 +id[3867] = "2244-01-07T12:48:24" +ik[3867] = 0.872 +il[3867] = 136 +im[3867] = 0.1802 +ij[3867] = 27.5 +id[3868] = "2244-01-20T19:07:23" +ik[3868] = 1.65 +il[3868] = 176 +im[3868] = 0.2205 +ij[3868] = 28.6 +id[3869] = "2244-01-22T10:31:12" +ik[3869] = 90 +il[3869] = -179 +im[3869] = 0.2298 +ij[3869] = 6 +id[3870] = "2244-03-10T06:55:14" +ik[3870] = 0 +il[3870] = -73 +im[3870] = 0.1844 +ij[3870] = 13 +id[3871] = "2244-03-19T06:34:04" +ik[3871] = 0.5088 +il[3871] = -61 +im[3871] = 0.5089 +ij[3871] = 2 +id[3872] = "2244-04-01T13:06:14" +ik[3872] = 8.02 +il[3872] = -38 +im[3872] = 0.5048 +ij[3872] = 11 +id[3873] = "2244-04-22T07:00:49" +ik[3873] = 43 +il[3873] = -28 +im[3873] = 0.097 +ij[3873] = 7.1623 +id[3874] = "2244-05-25T11:44:34" +ik[3874] = 76.2 +il[3874] = 62 +im[3874] = 0.2345 +ij[3874] = 14 +id[3875] = "2244-06-02T19:06:45" +ik[3875] = 4.16 +il[3875] = 81 +im[3875] = 0.0173 +ij[3875] = 27.6 +id[3876] = "2244-06-11T01:04:13" +ik[3876] = 90 +il[3876] = 105 +im[3876] = 0.2171 +ij[3876] = 5 +id[3877] = "2244-07-11T08:27:10" +ik[3877] = 1.541 +il[3877] = -162 +im[3877] = 0.1587 +ij[3877] = 28.5 +id[3878] = "2244-08-17T10:51:01" +ik[3878] = 1.304 +il[3878] = -49 +im[3878] = 0.0234 +ij[3878] = 28.7 +id[3879] = "2244-08-22T06:45:48" +ik[3879] = 54.494 +il[3879] = -35 +im[3879] = 0.1108 +ij[3879] = 8 +id[3880] = "2244-11-03T04:33:27" +ik[3880] = 0.545 +il[3880] = -170 +im[3880] = 0.0578 +ij[3880] = 28.1 +id[3881] = "2244-11-18T23:17:57" +ik[3881] = 1.157 +il[3881] = -121 +im[3881] = 0.0768 +ij[3881] = 28.1 +id[3882] = "2244-12-04T12:11:57" +ik[3882] = 4.921 +il[3882] = -72 +im[3882] = 0.0698 +ij[3882] = 27.4 +id[3883] = "2245-01-15T21:08:38" +ik[3883] = 0.86 +il[3883] = 38 +im[3883] = 0.0358 +ij[3883] = 12 +id[3884] = "2245-03-06T21:27:12" +ik[3884] = 0.91 +il[3884] = 4 +im[3884] = 0.0896 +ij[3884] = 28.6 +id[3885] = "2245-03-30T09:52:36" +ik[3885] = 2.76 +il[3885] = 77 +im[3885] = 0.0062 +ij[3885] = 27.6 +id[3886] = "2245-05-06T10:56:51" +ik[3886] = 3.679 +il[3886] = -167 +im[3886] = 0.1057 +ij[3886] = 27.2 +id[3887] = "2245-06-03T04:04:48" +ik[3887] = 1.479 +il[3887] = -80 +im[3887] = 0.0972 +ij[3887] = 28.5 +id[3888] = "2245-06-10T20:03:41" +ik[3888] = 1.362 +il[3888] = -57 +im[3888] = 0.0746 +ij[3888] = 28.7 +id[3889] = "2245-06-11T20:12:56" +ik[3889] = 54.667 +il[3889] = -53 +im[3889] = 0.0533 +ij[3889] = 9 +id[3890] = "2245-08-22T02:49:29" +ik[3890] = 90 +il[3890] = 164 +im[3890] = 0.1864 +ij[3890] = 6 +id[3891] = "2245-10-11T11:45:01" +ik[3891] = 0 +il[3891] = -86 +im[3891] = 0.2554 +ij[3891] = 13 +id[3892] = "2245-11-02T22:14:52" +ik[3892] = 5.65 +il[3892] = -38 +im[3892] = 0.2464 +ij[3892] = 11 +id[3893] = "2245-11-11T02:37:13" +ik[3893] = 0.5376 +il[3893] = -31 +im[3893] = 0.5376 +ij[3893] = 2 +id[3894] = "2245-11-23T17:54:37" +ik[3894] = 43.26 +il[3894] = -15 +im[3894] = 0.4245 +ij[3894] = 7.1557 +id[3895] = "2245-12-25T00:01:24" +ik[3895] = 74.51 +il[3895] = 47 +im[3895] = 0.255 +ij[3895] = 14 +id[3896] = "2246-01-12T16:40:56" +ik[3896] = 90 +il[3896] = 93 +im[3896] = 0.0917 +ij[3896] = 5 +id[3897] = "2246-01-20T15:38:37" +ik[3897] = 2.18 +il[3897] = 117 +im[3897] = 0.186 +ij[3897] = 27.1 +id[3898] = "2246-03-07T17:29:02" +ik[3898] = 0.419 +il[3898] = -99 +im[3898] = 0.1452 +ij[3898] = 28.8 +id[3899] = "2246-03-12T07:01:17" +ik[3899] = 1.734 +il[3899] = -85 +im[3899] = 0.0906 +ij[3899] = 27.3 +id[3900] = "2246-03-30T15:50:38" +ik[3900] = 0.211 +il[3900] = -27 +im[3900] = 0.0229 +ij[3900] = 27.5 +id[3901] = "2246-04-01T14:20:57" +ik[3901] = 53.918 +il[3901] = -21 +im[3901] = 0.0642 +ij[3901] = 8 +id[3902] = "2246-04-28T13:39:47" +ik[3902] = 0.891 +il[3902] = 62 +im[3902] = 0.0104 +ij[3902] = 28.6 +id[3903] = "2246-05-14T11:14:37" +ik[3903] = 3.74 +il[3903] = 110 +im[3903] = 0.0014 +ij[3903] = 27.6 +id[3904] = "2246-06-02T11:30:54" +ik[3904] = 1.853 +il[3904] = 168 +im[3904] = 0.0677 +ij[3904] = 28.1 +id[3905] = "2246-06-21T08:43:36" +ik[3905] = 5.333 +il[3905] = -134 +im[3905] = 0.0919 +ij[3905] = 27.2 +id[3906] = "2246-07-01T01:29:25" +ik[3906] = 0.382 +il[3906] = -105 +im[3906] = 0.0401 +ij[3906] = 28.1 +id[3907] = "2246-08-20T15:18:43" +ik[3907] = 1.31 +il[3907] = 29 +im[3907] = 0.089 +ij[3907] = 12 +id[3908] = "2246-11-05T03:06:37" +ik[3908] = 3.837 +il[3908] = 81 +im[3908] = 0.0889 +ij[3908] = 27.4 +id[3909] = "2246-12-29T13:55:46" +ik[3909] = 1.93 +il[3909] = -113 +im[3909] = 0.0801 +ij[3909] = 28.8 +id[3910] = "2246-12-30T05:03:57" +ik[3910] = 0.564 +il[3910] = -111 +im[3910] = 0.0902 +ij[3910] = 27.3 +id[3911] = "2247-01-12T11:09:01" +ik[3911] = 0.842 +il[3911] = -70 +im[3911] = 0.0385 +ij[3911] = 28.4 +id[3912] = "2247-01-17T08:03:57" +ik[3912] = 1.196 +il[3912] = -55 +im[3912] = 0.1135 +ij[3912] = 27.5 +id[3913] = "2247-01-17T17:32:58" +ik[3913] = 53.614 +il[3913] = -53 +im[3913] = 0.1146 +ij[3913] = 9 +id[3914] = "2247-03-02T11:45:27" +ik[3914] = 3.177 +il[3914] = 83 +im[3914] = 0.1521 +ij[3914] = 28.6 +id[3915] = "2247-03-04T12:37:48" +ik[3915] = 1.09 +il[3915] = 90 +im[3915] = 0.1628 +ij[3915] = 27.6 +id[3916] = "2247-04-03T17:46:23" +ik[3916] = 90 +il[3916] = -176 +im[3916] = 0.2078 +ij[3916] = 6 +id[3917] = "2247-04-19T02:46:37" +ik[3917] = 0.328 +il[3917] = -139 +im[3917] = 0.2374 +ij[3917] = 27.2 +id[3918] = "2247-05-20T00:05:24" +ik[3918] = 0 +il[3918] = -92 +im[3918] = 0.2481 +ij[3918] = 13 +id[3919] = "2247-06-11T07:45:46" +ik[3919] = 0.5154 +il[3919] = -53 +im[3919] = 0.5155 +ij[3919] = 2 +id[3920] = "2247-06-11T11:36:57" +ik[3920] = 0.19 +il[3920] = -43 +im[3920] = 0.515 +ij[3920] = 11 +id[3921] = "2247-07-03T01:28:53" +ik[3921] = 44.06 +il[3921] = -7 +im[3921] = 0.1545 +ij[3921] = 7.1661 +id[3922] = "2247-08-06T03:19:23" +ik[3922] = 78.13 +il[3922] = 60 +im[3922] = 0.2467 +ij[3922] = 14 +id[3923] = "2247-08-20T14:38:52" +ik[3923] = 90 +il[3923] = 98 +im[3923] = 0.2057 +ij[3923] = 5 +id[3924] = "2247-09-08T13:02:38" +ik[3924] = 2.251 +il[3924] = 156 +im[3924] = 0.1154 +ij[3924] = 28.7 +id[3925] = "2247-10-20T17:56:49" +ik[3925] = 0.31 +il[3925] = -76 +im[3925] = 0.1136 +ij[3925] = 28.5 +id[3926] = "2247-11-01T10:26:19" +ik[3926] = 54.13 +il[3926] = -40 +im[3926] = 0.1189 +ij[3926] = 8 +id[3927] = "2247-12-29T02:32:24" +ik[3927] = 4.559 +il[3927] = 140 +im[3927] = 0.0608 +ij[3927] = 27.1 +id[3928] = "2248-01-02T20:42:17" +ik[3928] = 2.482 +il[3928] = 155 +im[3928] = 0.098 +ij[3928] = 28.1 +id[3929] = "2248-01-30T22:15:53" +ik[3929] = 3.76 +il[3929] = -118 +im[3929] = 0.0819 +ij[3929] = 28.1 +id[3930] = "2248-02-12T16:40:22" +ik[3930] = 0.911 +il[3930] = -78 +im[3930] = 0.0636 +ij[3930] = 28.8 +id[3931] = "2248-02-12T17:13:44" +ik[3931] = 0.453 +il[3931] = -78 +im[3931] = 0.0639 +ij[3931] = 27.3 +id[3932] = "2248-04-02T10:49:26" +ik[3932] = 1.3 +il[3932] = 52 +im[3932] = 0.0819 +ij[3932] = 12 +id[3933] = "2248-05-20T18:12:24" +ik[3933] = 4.303 +il[3933] = 16 +im[3933] = 0.0715 +ij[3933] = 27.2 +id[3934] = "2248-06-07T10:35:02" +ik[3934] = 0.104 +il[3934] = 72 +im[3934] = 0.0245 +ij[3934] = 27.9 +id[3935] = "2248-07-04T08:22:16" +ik[3935] = 0.907 +il[3935] = 155 +im[3935] = 0.0797 +ij[3935] = 28.7 +id[3936] = "2248-07-09T08:28:27" +ik[3936] = 2.024 +il[3936] = 171 +im[3936] = 0.0051 +ij[3936] = 28.1 +id[3937] = "2248-08-18T19:19:41" +ik[3937] = 54.432 +il[3937] = -65 +im[3937] = 0.0855 +ij[3937] = 9 +id[3938] = "2248-09-14T22:41:31" +ik[3938] = 1.847 +il[3938] = 17 +im[3938] = 0.1316 +ij[3938] = 28.5 +id[3939] = "2248-10-10T17:19:57" +ik[3939] = 1.6 +il[3939] = 95 +im[3939] = 0.112 +ij[3939] = 27.4 +id[3940] = "2248-11-04T14:25:36" +ik[3940] = 90 +il[3940] = 172 +im[3940] = 0.0603 +ij[3940] = 6 +id[3941] = "2248-12-24T19:23:01" +ik[3941] = 0 +il[3941] = -76 +im[3941] = 0.428 +ij[3941] = 13 +id[3942] = "2249-01-15T12:40:19" +ik[3942] = 5.45 +il[3942] = -52 +im[3942] = 0.1268 +ij[3942] = 11 +id[3943] = "2249-01-21T15:11:01" +ik[3943] = 0.5551 +il[3943] = -24 +im[3943] = 0.5551 +ij[3943] = 2 +id[3944] = "2249-02-05T07:40:38" +ik[3944] = 42.51 +il[3944] = -7 +im[3944] = 0.4066 +ij[3944] = 7.1554 +id[3945] = "2249-03-09T03:48:24" +ik[3945] = 74.35 +il[3945] = 56 +im[3945] = 0.1118 +ij[3945] = 14 +id[3946] = "2249-03-18T20:15:30" +ik[3946] = 4.191 +il[3946] = 79 +im[3946] = 0.245 +ij[3946] = 27.3 +id[3947] = "2249-03-19T14:39:15" +ik[3947] = 2.584 +il[3947] = 80 +im[3947] = 0.2401 +ij[3947] = 28.8 +id[3948] = "2249-03-28T04:29:26" +ik[3948] = 90 +il[3948] = 104 +im[3948] = 0.0933 +ij[3948] = 5 +id[3949] = "2249-04-09T13:02:37" +ik[3949] = 1.006 +il[3949] = 142 +im[3949] = 0.0119 +ij[3949] = 27.5 +id[3950] = "2249-04-17T21:22:10" +ik[3950] = 1.171 +il[3950] = 168 +im[3950] = 0.1722 +ij[3950] = 28.4 +id[3951] = "2249-05-27T08:43:42" +ik[3951] = 4.07 +il[3951] = -70 +im[3951] = 0.0804 +ij[3951] = 27.6 +id[3952] = "2249-06-10T22:12:25" +ik[3952] = 0.462 +il[3952] = -25 +im[3952] = 0.0474 +ij[3952] = 28.6 +id[3953] = "2249-06-12T02:12:08" +ik[3953] = 54.376 +il[3953] = -22 +im[3953] = 0.0711 +ij[3953] = 8 +id[3954] = "2249-07-05T12:05:23" +ik[3954] = 5.968 +il[3954] = 49 +im[3954] = 0.0745 +ij[3954] = 27.2 +id[3955] = "2249-07-22T16:16:19" +ik[3955] = 0.184 +il[3955] = 102 +im[3955] = 0.0141 +ij[3955] = 27.91 +id[3956] = "2249-08-19T03:41:28" +ik[3956] = 1.804 +il[3956] = -174 +im[3956] = 0.0559 +ij[3956] = 28.1 +id[3957] = "2249-08-20T21:48:57" +ik[3957] = 0.042 +il[3957] = -169 +im[3957] = 0.0278 +ij[3957] = 28.7 +id[3958] = "2249-10-30T04:52:19" +ik[3958] = 0.96 +il[3958] = 36 +im[3958] = 0.0831 +ij[3958] = 12 +id[3959] = "2250-01-13T02:03:57" +ik[3959] = 0.222 +il[3959] = 71 +im[3959] = 0.0956 +ij[3959] = 27.3 +id[3960] = "2250-01-17T09:44:47" +ik[3960] = 1.445 +il[3960] = 85 +im[3960] = 0.0636 +ij[3960] = 28.8 +id[3961] = "2250-01-30T19:05:17" +ik[3961] = 1.149 +il[3961] = 126 +im[3961] = 0.0783 +ij[3961] = 27.5 +id[3962] = "2250-03-16T01:20:32" +ik[3962] = 2.21 +il[3962] = -96 +im[3962] = 0.1029 +ij[3962] = 27.6 +id[3963] = "2250-04-01T18:15:43" +ik[3963] = 54.222 +il[3963] = -44 +im[3963] = 0.0961 +ij[3963] = 9 +id[3964] = "2250-04-12T20:04:07" +ik[3964] = 3.271 +il[3964] = -9 +im[3964] = 0.1191 +ij[3964] = 28.6 +id[3965] = "2250-04-23T08:49:44" +ik[3965] = 2.683 +il[3965] = 24 +im[3965] = 0.0812 +ij[3965] = 27.2 +id[3966] = "2250-06-10T19:35:11" +ik[3966] = 90 +il[3966] = 173 +im[3966] = 0.1903 +ij[3966] = 6 +id[3967] = "2250-06-22T14:32:31" +ik[3967] = 0.957 +il[3967] = -157 +im[3967] = 0.1681 +ij[3967] = 28.7 +id[3968] = "2250-07-29T03:48:51" +ik[3968] = 0 +il[3968] = -83 +im[3968] = 0.2806 +ij[3968] = 13 +id[3969] = "2250-08-19T22:58:04" +ik[3969] = 7.96 +il[3969] = -49 +im[3969] = 0.5141 +ij[3969] = 11 +id[3970] = "2250-08-21T02:15:51" +ik[3970] = 0.5317 +il[3970] = -39 +im[3970] = 0.5318 +ij[3970] = 2 +id[3971] = "2250-09-11T02:51:26" +ik[3971] = 43.96 +il[3971] = -29 +im[3971] = 0.1645 +ij[3971] = 7.1644 +id[3972] = "2250-10-14T01:10:13" +ik[3972] = 76.89 +il[3972] = 52 +im[3972] = 0.2612 +ij[3972] = 14 +id[3973] = "2250-10-29T16:55:58" +ik[3973] = 90 +il[3973] = 92 +im[3973] = 0.2051 +ij[3973] = 5 +id[3974] = "2251-01-11T08:55:03" +ik[3974] = 3.768 +il[3974] = -40 +im[3974] = 0.1129 +ij[3974] = 27.1 +id[3975] = "2251-01-14T00:21:57" +ik[3975] = 53.735 +il[3975] = -32 +im[3975] = 0.1148 +ij[3975] = 8 +id[3976] = "2251-01-30T10:08:41" +ik[3976] = 0.702 +il[3976] = 19 +im[3976] = 0.1004 +ij[3976] = 28.5 +id[3977] = "2251-02-26T23:38:10" +ik[3977] = 0.91 +il[3977] = 105 +im[3977] = 0.1063 +ij[3977] = 27.3 +id[3978] = "2251-03-03T22:11:34" +ik[3978] = 0.498 +il[3978] = 121 +im[3978] = 0.06 +ij[3978] = 28.8 +id[3979] = "2251-03-04T16:08:15" +ik[3979] = 1.904 +il[3979] = 123 +im[3979] = 0.0465 +ij[3979] = 28.1 +id[3980] = "2251-03-16T18:18:37" +ik[3980] = 0.649 +il[3980] = 160 +im[3980] = 0.0738 +ij[3980] = 27.5 +id[3981] = "2251-04-06T13:06:48" +ik[3981] = 2.979 +il[3981] = -136 +im[3981] = 0.0137 +ij[3981] = 28.1 +id[3982] = "2251-04-27T10:56:29" +ik[3982] = 0.059 +il[3982] = -72 +im[3982] = 0.0882 +ij[3982] = 28.4 +id[3983] = "2251-04-29T17:33:30" +ik[3983] = 3.43 +il[3983] = -65 +im[3983] = 0.0872 +ij[3983] = 27.6 +id[3984] = "2251-06-12T06:12:57" +ik[3984] = 0.04 +il[3984] = 45 +im[3984] = 0.087 +ij[3984] = 12 +id[3985] = "2251-07-29T09:35:25" +ik[3985] = 0.646 +il[3985] = 9 +im[3985] = 0.0785 +ij[3985] = 28.7 +id[3986] = "2251-09-04T10:19:20" +ik[3986] = 5.255 +il[3986] = 123 +im[3986] = 0.0314 +ij[3986] = 28.1 +id[3987] = "2251-09-20T21:52:50" +ik[3987] = 6.127 +il[3987] = 173 +im[3987] = 0.0508 +ij[3987] = 28.1 +id[3988] = "2251-10-22T04:36:50" +ik[3988] = 3.049 +il[3988] = -92 +im[3988] = 0.086 +ij[3988] = 27.4 +id[3989] = "2251-10-30T21:24:12" +ik[3989] = 53.782 +il[3989] = -66 +im[3989] = 0.0605 +ij[3989] = 9 +id[3990] = "2251-12-18T08:40:50" +ik[3990] = 0.963 +il[3990] = 83 +im[3990] = 0.0498 +ij[3990] = 27.3 +id[3991] = "2251-12-24T13:00:20" +ik[3991] = 1.132 +il[3991] = 103 +im[3991] = 0.1793 +ij[3991] = 28.5 +id[3992] = "2251-12-27T17:38:15" +ik[3992] = 1.675 +il[3992] = 112 +im[3992] = 0.1555 +ij[3992] = 28.8 +id[3993] = "2252-01-07T10:18:10" +ik[3993] = 0.831 +il[3993] = 146 +im[3993] = 0.1704 +ij[3993] = 27.5 +id[3994] = "2252-01-19T23:24:17" +ik[3994] = 90 +il[3994] = -175 +im[3994] = 0.1753 +ij[3994] = 6 +id[3995] = "2252-03-08T01:10:40" +ik[3995] = 0 +il[3995] = -70 +im[3995] = 0.3945 +ij[3995] = 13 +id[3996] = "2252-03-20T12:13:11" +ik[3996] = 0.5263 +il[3996] = -55 +im[3996] = 0.5264 +ij[3996] = 2 +id[3997] = "2252-03-30T03:33:07" +ik[3997] = 8.17 +il[3997] = -24 +im[3997] = 0.3469 +ij[3997] = 11 +id[3998] = "2252-04-20T00:13:15" +ik[3998] = 42.96 +il[3998] = -1 +im[3998] = 0.2649 +ij[3998] = 7.1621 +id[3999] = "2252-05-23T00:55:59" +ik[3999] = 75.99 +il[3999] = 64 +im[3999] = 0.0963 +ij[3999] = 14 +id[4000] = "2252-06-03T00:34:32" +ik[4000] = 4.2 +il[4000] = 91 +im[4000] = 0.0514 +ij[4000] = 27.6 +id[4001] = "2252-06-08T16:43:36" +ik[4001] = 90 +il[4001] = 108 +im[4001] = 0.1761 +ij[4001] = 5 +id[4002] = "2252-07-22T06:38:00" +ik[4002] = 0.628 +il[4002] = -119 +im[4002] = 0.0872 +ij[4002] = 28.6 +id[4003] = "2252-08-19T23:39:20" +ik[4003] = 54.499 +il[4003] = -32 +im[4003] = 0.0519 +ij[4003] = 8 +id[4004] = "2252-09-13T15:13:06" +ik[4004] = 0.189 +il[4004] = 44 +im[4004] = 0.0666 +ij[4004] = 28.7 +id[4005] = "2252-12-04T01:30:10" +ik[4005] = 4.905 +il[4005] = -67 +im[4005] = 0.044 +ij[4005] = 27.4 +id[4006] = "2253-01-13T07:16:19" +ik[4006] = 0.81 +il[4006] = 40 +im[4006] = 0.0376 +ij[4006] = 12 +id[4007] = "2253-02-24T02:06:00" +ik[4007] = 0.057 +il[4007] = -9 +im[4007] = 0.0812 +ij[4007] = 28.5 +id[4008] = "2253-03-29T23:14:23" +ik[4008] = 2.75 +il[4008] = 86 +im[4008] = 0.0337 +ij[4008] = 27.6 +id[4009] = "2253-05-06T00:48:23" +ik[4009] = 3.654 +il[4009] = -158 +im[4009] = 0.0904 +ij[4009] = 27.2 +id[4010] = "2253-05-10T16:31:00" +ik[4010] = 0.108 +il[4010] = -143 +im[4010] = 0.1003 +ij[4010] = 28.4 +id[4011] = "2253-05-24T03:43:37" +ik[4011] = 2.381 +il[4011] = -101 +im[4011] = 0.106 +ij[4011] = 28.6 +id[4012] = "2253-06-09T14:24:41" +ik[4012] = 54.662 +il[4012] = -50 +im[4012] = 0.1131 +ij[4012] = 9 +id[4013] = "2253-07-08T17:04:50" +ik[4013] = 0.813 +il[4013] = 39 +im[4013] = 0.1378 +ij[4013] = 28.7 +id[4014] = "2253-08-19T17:04:49" +ik[4014] = 90 +il[4014] = 166 +im[4014] = 0.2104 +ij[4014] = 6 +id[4015] = "2253-10-09T00:56:26" +ik[4015] = 0 +il[4015] = -83 +im[4015] = 0.1018 +ij[4015] = 13 +id[4016] = "2253-10-31T11:32:38" +ik[4016] = 5.94 +il[4016] = -48 +im[4016] = 0.5065 +ij[4016] = 11 +id[4017] = "2253-11-12T06:36:48" +ik[4017] = 0.528 +il[4017] = -38 +im[4017] = 0.5281 +ij[4017] = 2 +id[4018] = "2253-11-20T23:59:01" +ik[4018] = 42.96 +il[4018] = -28 +im[4018] = 0.1389 +ij[4018] = 7.1561 +id[4019] = "2253-12-22T14:51:45" +ik[4019] = 74.58 +il[4019] = 49 +im[4019] = 0.2305 +ij[4019] = 14 +id[4020] = "2254-01-10T05:35:47" +ik[4020] = 90 +il[4020] = 95 +im[4020] = 0.2192 +ij[4020] = 5 +id[4021] = "2254-01-20T14:15:30" +ik[4021] = 2.263 +il[4021] = 127 +im[4021] = 0.1506 +ij[4021] = 27.1 +id[4022] = "2254-03-11T22:45:43" +ik[4022] = 1.695 +il[4022] = -76 +im[4022] = 0.1215 +ij[4022] = 27.3 +id[4023] = "2254-03-22T04:44:06" +ik[4023] = 0.037 +il[4023] = -44 +im[4023] = 0.1113 +ij[4023] = 28.8 +id[4024] = "2254-03-30T03:16:15" +ik[4024] = 53.903 +il[4024] = -19 +im[4024] = 0.0358 +ij[4024] = 8 +id[4025] = "2254-03-30T06:41:17" +ik[4025] = 0.232 +il[4025] = -19 +im[4025] = 0.0328 +ij[4025] = 27.5 +id[4026] = "2254-04-30T13:57:38" +ik[4026] = 0.073 +il[4026] = 78 +im[4026] = 0.014 +ij[4026] = 28.5 +id[4027] = "2254-05-12T12:06:20" +ik[4027] = 1.573 +il[4027] = 114 +im[4027] = 0.0657 +ij[4027] = 28.1 +id[4028] = "2254-05-14T01:02:19" +ik[4028] = 3.73 +il[4028] = 119 +im[4028] = 0.0375 +ij[4028] = 27.6 +id[4029] = "2254-05-30T02:57:50" +ik[4029] = 2.384 +il[4029] = 168 +im[4029] = 0.0233 +ij[4029] = 28.1 +id[4030] = "2254-06-20T21:52:29" +ik[4030] = 5.315 +il[4030] = -126 +im[4030] = 0.0896 +ij[4030] = 27.2 +id[4031] = "2254-07-15T05:44:57" +ik[4031] = 0.697 +il[4031] = -52 +im[4031] = 0.0113 +ij[4031] = 28.6 +id[4032] = "2254-08-18T08:54:14" +ik[4032] = 1.29 +il[4032] = 36 +im[4032] = 0.0667 +ij[4032] = 12 +id[4033] = "2254-11-04T16:42:10" +ik[4033] = 3.817 +il[4033] = 89 +im[4033] = 0.098 +ij[4033] = 27.4 +id[4034] = "2254-11-22T13:35:19" +ik[4034] = 6.106 +il[4034] = 144 +im[4034] = 0.083 +ij[4034] = 28.1 +id[4035] = "2254-12-29T19:23:30" +ik[4035] = 0.575 +il[4035] = -102 +im[4035] = 0.053 +ij[4035] = 27.3 +id[4036] = "2255-01-12T14:28:45" +ik[4036] = 1.277 +il[4036] = -59 +im[4036] = 0.0156 +ij[4036] = 28.8 +id[4037] = "2255-01-15T04:20:16" +ik[4037] = 53.603 +il[4037] = -51 +im[4037] = 0.0709 +ij[4037] = 9 +id[4038] = "2255-01-16T22:58:10" +ik[4038] = 1.193 +il[4038] = -46 +im[4038] = 0.1018 +ij[4038] = 27.5 +id[4039] = "2255-03-04T06:43:12" +ik[4039] = 1.03 +il[4039] = 99 +im[4039] = 0.1524 +ij[4039] = 27.6 +id[4040] = "2255-03-23T11:31:20" +ik[4040] = 3.374 +il[4040] = 159 +im[4040] = 0.1554 +ij[4040] = 28.5 +id[4041] = "2255-04-01T10:34:45" +ik[4041] = 90 +il[4041] = -173 +im[4041] = 0.1621 +ij[4041] = 6 +id[4042] = "2255-04-19T17:13:43" +ik[4042] = 0.175 +il[4042] = -129 +im[4042] = 0.2708 +ij[4042] = 27.2 +id[4043] = "2255-05-17T14:52:12" +ik[4043] = 0 +il[4043] = -140 +im[4043] = 0.4249 +ij[4043] = 13 +id[4044] = "2255-06-09T04:45:07" +ik[4044] = 0.13 +il[4044] = 36 +im[4044] = 0.3777 +ij[4044] = 11 +id[4045] = "2255-06-12T09:45:20" +ik[4045] = 0.5232 +il[4045] = -104 +im[4045] = 0.5232 +ij[4045] = 2 +id[4046] = "2255-06-13T09:58:16" +ik[4046] = 5.85 +il[4046] = -24 +im[4046] = 0.5092 +ij[4046] = 27.2 +id[4047] = "2255-06-30T17:36:57" +ik[4047] = 44.11 +il[4047] = -47 +im[4047] = 0.1885 +ij[4047] = 7.1661 +id[4048] = "2255-08-03T19:19:41" +ik[4048] = 78.19 +il[4048] = 58 +im[4048] = 0.1915 +ij[4048] = 14 +id[4049] = "2255-08-18T07:20:10" +ik[4049] = 90 +il[4049] = 101 +im[4049] = 0.1281 +ij[4049] = 5 +id[4050] = "2255-08-31T15:44:03" +ik[4050] = 2.133 +il[4050] = 142 +im[4050] = 0.0961 +ij[4050] = 28.6 +id[4051] = "2255-09-20T16:09:24" +ik[4051] = 1.91 +il[4051] = -158 +im[4051] = 0.1451 +ij[4051] = 28.4 +id[4052] = "2255-10-07T00:31:40" +ik[4052] = 0.383 +il[4052] = -108 +im[4052] = 0.1407 +ij[4052] = 28.7 +id[4053] = "2255-10-30T01:08:17" +ik[4053] = 54.147 +il[4053] = -37 +im[4053] = 0.0522 +ij[4053] = 8 +id[4054] = "2255-12-28T16:05:43" +ik[4054] = 4.584 +il[4054] = 149 +im[4054] = 0.0201 +ij[4054] = 27.1 +id[4055] = "2256-02-12T06:29:43" +ik[4055] = 0.441 +il[4055] = -69 +im[4055] = 0.0335 +ij[4055] = 27.3 +id[4056] = "2256-03-30T23:51:21" +ik[4056] = 1.33 +il[4056] = 55 +im[4056] = 0.0587 +ij[4056] = 12 +id[4057] = "2256-05-20T07:25:43" +ik[4057] = 4.284 +il[4057] = 25 +im[4057] = 0.0861 +ij[4057] = 27.2 +id[4058] = "2256-05-23T07:58:04" +ik[4058] = 0.876 +il[4058] = 37 +im[4058] = 0.0558 +ij[4058] = 28.5 +id[4059] = "2256-06-04T04:02:03" +ik[4059] = 2.828 +il[4059] = 71 +im[4059] = 0.0881 +ij[4059] = 28.1 +id[4060] = "2256-06-27T02:00:48" +ik[4060] = 1.776 +il[4060] = 143 +im[4060] = 0.0406 +ij[4060] = 28.1 +id[4061] = "2256-07-04T21:17:42" +ik[4061] = 0.988 +il[4061] = 167 +im[4061] = 0.0947 +ij[4061] = 28.6 +id[4062] = "2256-07-30T16:51:18" +ik[4062] = 0.582 +il[4062] = -114 +im[4062] = 0.1035 +ij[4062] = 28.7 +id[4063] = "2256-08-16T11:55:25" +ik[4063] = 54.45 +il[4063] = -63 +im[4063] = 0.1112 +ij[4063] = 9 +id[4064] = "2256-10-10T13:09:43" +ik[4064] = 1.524 +il[4064] = 105 +im[4064] = 0.0735 +ij[4064] = 27.4 +id[4065] = "2256-11-02T01:42:17" +ik[4065] = 90 +il[4065] = 174 +im[4065] = 0.1955 +ij[4065] = 6 +id[4066] = "2256-12-22T19:20:08" +ik[4066] = 0 +il[4066] = -73 +im[4066] = 0.2125 +ij[4066] = 13 +id[4067] = "2257-01-09T07:19:07" +ik[4067] = 0.5604 +il[4067] = -53 +im[4067] = 0.5605 +ij[4067] = 2 +id[4068] = "2257-01-13T01:24:57" +ik[4068] = 5.12 +il[4068] = -40 +im[4068] = 0.3583 +ij[4068] = 11 +id[4069] = "2257-02-03T18:22:43" +ik[4069] = 42.96 +il[4069] = -30 +im[4069] = 0.4295 +ij[4069] = 7.1552 +id[4070] = "2257-03-06T15:53:25" +ik[4070] = 73.86 +il[4070] = 47 +im[4070] = 0.2623 +ij[4070] = 14 +id[4071] = "2257-03-19T00:45:43" +ik[4071] = 4.012 +il[4071] = 86 +im[4071] = 0.2204 +ij[4071] = 27.3 +id[4072] = "2257-03-25T17:00:25" +ik[4072] = 90 +il[4072] = 106 +im[4072] = 0.0796 +ij[4072] = 5 +id[4073] = "2257-04-06T00:13:58" +ik[4073] = 1.18 +il[4073] = 141 +im[4073] = 0.1763 +ij[4073] = 28.8 +id[4074] = "2257-04-09T09:42:36" +ik[4074] = 0.926 +il[4074] = 152 +im[4074] = 0.0837 +ij[4074] = 27.5 +id[4075] = "2257-05-27T00:19:05" +ik[4075] = 4.06 +il[4075] = -61 +im[4075] = 0.0337 +ij[4075] = 27.6 +id[4076] = "2257-06-09T18:33:40" +ik[4076] = 54.364 +il[4076] = -19 +im[4076] = 0.0235 +ij[4076] = 8 +id[4077] = "2257-07-05T02:05:22" +ik[4077] = 5.943 +il[4077] = 58 +im[4077] = 0.0998 +ij[4077] = 27.2 +id[4078] = "2257-07-22T05:49:55" +ik[4078] = 0.16 +il[4078] = 110 +im[4078] = 0.051 +ij[4078] = 27.91 +id[4079] = "2257-07-30T22:42:48" +ik[4079] = 0.288 +il[4079] = 137 +im[4079] = 0.09 +ij[4079] = 28.5 +id[4080] = "2257-08-26T12:44:29" +ik[4080] = 0.181 +il[4080] = -142 +im[4080] = 0.0377 +ij[4080] = 28.6 +id[4081] = "2257-09-15T14:29:02" +ik[4081] = 0.483 +il[4081] = -80 +im[4081] = 0.09 +ij[4081] = 28.7 +id[4082] = "2257-10-27T18:36:00" +ik[4082] = 1 +il[4082] = -81 +im[4082] = 0.0597 +ij[4082] = 12 +id[4083] = "2258-01-12T15:27:03" +ik[4083] = 0.232 +il[4083] = 80 +im[4083] = 0.0831 +ij[4083] = 27.3 +id[4084] = "2258-01-21T07:59:39" +ik[4084] = 4.377 +il[4084] = 107 +im[4084] = 0.0186 +ij[4084] = 28.1 +id[4085] = "2258-01-30T08:38:09" +ik[4085] = 1.151 +il[4085] = 135 +im[4085] = 0.0969 +ij[4085] = 27.5 +id[4086] = "2258-01-31T02:47:36" +ik[4086] = 0.929 +il[4086] = 137 +im[4086] = 0.0935 +ij[4086] = 28.8 +id[4087] = "2258-03-15T15:34:00" +ik[4087] = 2.18 +il[4087] = -87 +im[4087] = 0.106 +ij[4087] = 27.6 +id[4088] = "2258-03-30T09:19:01" +ik[4088] = 54.198 +il[4088] = -41 +im[4088] = 0.1256 +ij[4088] = 9 +id[4089] = "2258-04-23T01:03:03" +ik[4089] = 2.638 +il[4089] = 33 +im[4089] = 0.0341 +ij[4089] = 27.2 +id[4090] = "2258-06-08T13:13:05" +ik[4090] = 90 +il[4090] = 176 +im[4090] = 0.0975 +ij[4090] = 6 +id[4091] = "2258-07-06T07:02:38" +ik[4091] = 0.683 +il[4091] = -118 +im[4091] = 0.0658 +ij[4091] = 28.5 +id[4092] = "2258-07-16T23:22:16" +ik[4092] = 3.213 +il[4092] = -97 +im[4092] = 0.1779 +ij[4092] = 28.6 +id[4093] = "2258-07-26T15:53:52" +ik[4093] = 0 +il[4093] = -108 +im[4093] = 0.4141 +ij[4093] = 13 +id[4094] = "2258-08-17T14:16:48" +ik[4094] = 7.82 +il[4094] = -109 +im[4094] = 0.2671 +ij[4094] = 11 +id[4095] = "2258-08-22T02:54:29" +ik[4095] = 0.5187 +il[4095] = -98 +im[4095] = 0.5187 +ij[4095] = 2 +id[4096] = "2258-09-08T14:58:27" +ik[4096] = 43.96 +il[4096] = -53 +im[4096] = 0.1842 +ij[4096] = 7.1645 +id[4097] = "2258-09-21T07:08:24" +ik[4097] = 5.784 +il[4097] = 11 +im[4097] = 0.2825 +ij[4097] = 28.5 +id[4098] = "2258-10-05T12:02:16" +ik[4098] = 4.207 +il[4098] = 41 +im[4098] = 0.1895 +ij[4098] = 28.6 +id[4099] = "2258-10-11T18:26:16" +ik[4099] = 77.11 +il[4099] = 48 +im[4099] = 0.1312 +ij[4099] = 14 +id[4100] = "2258-10-24T20:34:48" +ik[4100] = 1.137 +il[4100] = 88 +im[4100] = 0.0292 +ij[4100] = 28.7 +id[4101] = "2258-10-27T08:02:38" +ik[4101] = 90 +il[4101] = 95 +im[4101] = 0.1371 +ij[4101] = 5 +id[4102] = "2259-01-10T23:56:49" +ik[4102] = 3.804 +il[4102] = -31 +im[4102] = 0.0846 +ij[4102] = 27.1 +id[4103] = "2259-01-11T12:09:42" +ik[4103] = 53.741 +il[4103] = -30 +im[4103] = 0.0927 +ij[4103] = 8 +id[4104] = "2259-02-18T12:51:15" +ik[4104] = 6.27 +il[4104] = 89 +im[4104] = 0.0418 +ij[4104] = 28.1 +id[4105] = "2259-02-26T13:26:09" +ik[4105] = 0.892 +il[4105] = 114 +im[4105] = 0.0958 +ij[4105] = 27.3 +id[4106] = "2259-03-16T07:47:56" +ik[4106] = 0.659 +il[4106] = 169 +im[4106] = 0.0904 +ij[4106] = 27.5 +id[4107] = "2259-03-17T17:32:12" +ik[4107] = 0.468 +il[4107] = 173 +im[4107] = 0.0806 +ij[4107] = 28.8 +id[4108] = "2259-04-29T06:38:56" +ik[4108] = 3.42 +il[4108] = -56 +im[4108] = 0.0858 +ij[4108] = 27.6 +id[4109] = "2259-06-10T00:34:33" +ik[4109] = 0 +il[4109] = 49 +im[4109] = 0.0635 +ij[4109] = 12 +id[4110] = "2259-07-28T01:42:40" +ik[4110] = 0.869 +il[4110] = 15 +im[4110] = 0.0828 +ij[4110] = 28.1 +id[4111] = "2259-08-17T18:15:33" +ik[4111] = 0.456 +il[4111] = 79 +im[4111] = 0.061 +ij[4111] = 28.6 +id[4112] = "2259-08-24T01:26:32" +ik[4112] = 0.475 +il[4112] = 98 +im[4112] = 0.058 +ij[4112] = 28.7 +id[4113] = "2259-08-31T17:42:08" +ik[4113] = 0.271 +il[4113] = 121 +im[4113] = 0.0679 +ij[4113] = 28.5 +id[4114] = "2259-10-21T19:27:02" +ik[4114] = 3.017 +il[4114] = -84 +im[4114] = 0.0534 +ij[4114] = 27.4 +id[4115] = "2259-10-28T09:36:50" +ik[4115] = 53.802 +il[4115] = -64 +im[4115] = 0.1212 +ij[4115] = 9 +id[4116] = "2259-11-17T18:30:23" +ik[4116] = 0.265 +il[4116] = -1 +im[4116] = 0.0273 +ij[4116] = 28.4 +id[4117] = "2259-12-18T02:53:43" +ik[4117] = 0.972 +il[4117] = 92 +im[4117] = 0.0168 +ij[4117] = 27.3 +id[4118] = "2260-01-07T08:30:09" +ik[4118] = 0.785 +il[4118] = 156 +im[4118] = 0.1444 +ij[4118] = 27.5 +id[4119] = "2260-01-12T17:30:54" +ik[4119] = 0.09 +il[4119] = 173 +im[4119] = 0.1722 +ij[4119] = 28.8 +id[4120] = "2260-01-17T12:05:52" +ik[4120] = 90 +il[4120] = -172 +im[4120] = 0.0099 +ij[4120] = 6 +id[4121] = "2260-03-05T18:26:43" +ik[4121] = 0 +il[4121] = -68 +im[4121] = 0.3757 +ij[4121] = 13 +id[4122] = "2260-03-21T14:37:12" +ik[4122] = 0.5339 +il[4122] = -49 +im[4122] = 0.5339 +ij[4122] = 2 +id[4123] = "2260-03-27T17:48:28" +ik[4123] = 8.3 +il[4123] = -33 +im[4123] = 0.1169 +ij[4123] = 11 +id[4124] = "2260-04-17T17:31:17" +ik[4124] = 42.96 +il[4124] = -23 +im[4124] = 0.4434 +ij[4124] = 7.1619 +id[4125] = "2260-05-20T13:56:05" +ik[4125] = 75.81 +il[4125] = 60 +im[4125] = 0.1212 +ij[4125] = 14 +id[4126] = "2260-06-03T04:21:53" +ik[4126] = 4.22 +il[4126] = 102 +im[4126] = 0.1033 +ij[4126] = 27.6 +id[4127] = "2260-06-06T08:14:08" +ik[4127] = 90 +il[4127] = 110 +im[4127] = 0.0313 +ij[4127] = 5 +id[4128] = "2260-08-17T16:39:58" +ik[4128] = 54.504 +il[4128] = -29 +im[4128] = 0.0396 +ij[4128] = 8 +id[4129] = "2260-10-08T18:42:20" +ik[4129] = 0.815 +il[4129] = 131 +im[4129] = 0.0811 +ij[4129] = 28.6 +id[4130] = "2260-10-09T08:11:11" +ik[4130] = 0.559 +il[4130] = 133 +im[4130] = 0.086 +ij[4130] = 28.7 +id[4131] = "2260-11-10T05:54:48" +ik[4131] = 0.065 +il[4131] = -128 +im[4131] = 0.0875 +ij[4131] = 28.5 +id[4132] = "2260-12-03T14:48:22" +ik[4132] = 4.889 +il[4132] = -55 +im[4132] = 0.0111 +ij[4132] = 27.4 +id[4133] = "2261-01-10T17:28:19" +ik[4133] = 0.75 +il[4133] = 42 +im[4133] = 0.0853 +ij[4133] = 12 +id[4134] = "2261-02-19T09:57:27" +ik[4134] = 0.658 +il[4134] = -13 +im[4134] = 0.0437 +ij[4134] = 28.8 +id[4135] = "2261-03-14T20:09:44" +ik[4135] = 3.597 +il[4135] = 49 +im[4135] = 0.0705 +ij[4135] = 28.1 +id[4136] = "2261-03-27T03:22:10" +ik[4136] = 3.753 +il[4136] = 87 +im[4136] = 0.0865 +ij[4136] = 28.1 +id[4137] = "2261-03-29T12:35:52" +ik[4137] = 2.73 +il[4137] = 94 +im[4137] = 0.0654 +ij[4137] = 27.6 +id[4138] = "2261-05-05T14:40:49" +ik[4138] = 3.629 +il[4138] = -149 +im[4138] = 0.0568 +ij[4138] = 27.2 +id[4139] = "2261-06-07T08:36:25" +ik[4139] = 54.657 +il[4139] = -47 +im[4139] = 0.1025 +ij[4139] = 9 +id[4140] = "2261-08-06T13:23:48" +ik[4140] = 0.992 +il[4140] = 136 +im[4140] = 0.1636 +ij[4140] = 28.7 +id[4141] = "2261-08-16T03:26:55" +ik[4141] = 3.42 +il[4141] = 165 +im[4141] = 0.0582 +ij[4141] = 28.6 +id[4142] = "2261-08-17T07:28:08" +ik[4142] = 90 +il[4142] = 169 +im[4142] = 0.1053 +ij[4142] = 6 +id[4143] = "2261-10-06T13:56:32" +ik[4143] = 0 +il[4143] = -81 +im[4143] = 0.3782 +ij[4143] = 13 +id[4144] = "2261-10-18T16:54:00" +ik[4144] = 0.5328 +il[4144] = -65 +im[4144] = 0.5329 +ij[4144] = 2 +id[4145] = "2261-10-29T00:50:24" +ik[4145] = 6.21 +il[4145] = -34 +im[4145] = 0.4286 +ij[4145] = 11 +id[4146] = "2261-11-18T13:01:07" +ik[4146] = 42.96 +il[4146] = -11 +im[4146] = 0.2488 +ij[4146] = 7.1565 +id[4147] = "2261-12-20T05:53:51" +ik[4147] = 74.66 +il[4147] = 52 +im[4147] = 0.0458 +ij[4147] = 14 +id[4148] = "2262-01-07T18:30:39" +ik[4148] = 90 +il[4148] = 97 +im[4148] = 0.2055 +ij[4148] = 5 +id[4149] = "2262-01-13T18:53:34" +ik[4149] = 2.27 +il[4149] = 116 +im[4149] = 0.1643 +ij[4149] = 28.5 +id[4150] = "2262-01-20T12:10:09" +ik[4150] = 2.343 +il[4150] = 137 +im[4150] = 0.1028 +ij[4150] = 27.1 +id[4151] = "2262-02-26T20:43:35" +ik[4151] = 2.159 +il[4151] = -106 +im[4151] = 0.1053 +ij[4151] = 28.4 +id[4152] = "2262-03-11T14:20:22" +ik[4152] = 1.658 +il[4152] = -67 +im[4152] = 0.1313 +ij[4152] = 27.3 +id[4153] = "2262-03-27T16:08:00" +ik[4153] = 53.888 +il[4153] = -17 +im[4153] = 0.1096 +ij[4153] = 8 +id[4154] = "2262-03-29T21:24:49" +ik[4154] = 0.252 +il[4154] = -10 +im[4154] = 0.0778 +ij[4154] = 27.5 +id[4155] = "2262-04-05T09:42:11" +ik[4155] = 0.166 +il[4155] = 10 +im[4155] = 0.0621 +ij[4155] = 28.8 +id[4156] = "2262-04-21T22:27:59" +ik[4156] = 5.699 +il[4156] = 61 +im[4156] = 0.0919 +ij[4156] = 28.1 +id[4157] = "2262-05-13T14:47:51" +ik[4157] = 3.72 +il[4157] = 128 +im[4157] = 0.0669 +ij[4157] = 27.6 +id[4158] = "2262-06-20T11:00:28" +ik[4158] = 5.296 +il[4158] = -117 +im[4158] = 0.0694 +ij[4158] = 27.2 +id[4159] = "2262-08-16T02:36:57" +ik[4159] = 1.26 +il[4159] = 40 +im[4159] = 0.007 +ij[4159] = 12 +id[4160] = "2262-09-17T20:45:10" +ik[4160] = 1.262 +il[4160] = -46 +im[4160] = 0.0435 +ij[4160] = 28.7 +id[4161] = "2262-09-25T06:33:24" +ik[4161] = 2.894 +il[4161] = -23 +im[4161] = 0.0728 +ij[4161] = 28.1 +id[4162] = "2262-10-01T10:53:45" +ik[4162] = 1.489 +il[4162] = 0 +im[4162] = 0.033 +ij[4162] = 28.6 +id[4163] = "2262-11-04T06:21:42" +ik[4163] = 3.797 +il[4163] = 98 +im[4163] = 0.0882 +ij[4163] = 27.4 +id[4164] = "2262-11-06T19:59:48" +ik[4164] = 2.684 +il[4164] = 106 +im[4164] = 0.0999 +ij[4164] = 28.1 +id[4165] = "2262-12-11T07:45:15" +ik[4165] = 1.265 +il[4165] = -149 +im[4165] = 0.0716 +ij[4165] = 28.5 +id[4166] = "2262-12-29T09:47:29" +ik[4166] = 0.585 +il[4166] = -93 +im[4166] = 0.0049 +ij[4166] = 27.3 +id[4167] = "2263-01-12T15:00:28" +ik[4167] = 53.594 +il[4167] = -49 +im[4167] = 0.0271 +ij[4167] = 9 +id[4168] = "2263-01-16T13:59:29" +ik[4168] = 1.19 +il[4168] = -37 +im[4168] = 0.0754 +ij[4168] = 27.5 +id[4169] = "2263-01-26T16:26:49" +ik[4169] = 0.341 +il[4169] = -6 +im[4169] = 0.0512 +ij[4169] = 28.8 +id[4170] = "2263-03-04T01:09:50" +ik[4170] = 0.96 +il[4170] = 108 +im[4170] = 0.1189 +ij[4170] = 27.6 +id[4171] = "2263-03-30T03:18:42" +ik[4171] = 90 +il[4171] = -170 +im[4171] = 0.0212 +ij[4171] = 6 +id[4172] = "2263-04-20T11:48:22" +ik[4172] = 0.01 +il[4172] = -119 +im[4172] = 0.2941 +ij[4172] = 27.2 +id[4173] = "2263-05-15T05:54:18" +ik[4173] = 0 +il[4173] = -72 +im[4173] = 0.3395 +ij[4173] = 13 +id[4174] = "2263-06-06T21:50:24" +ik[4174] = 0.46 +il[4174] = -37 +im[4174] = 0.0053 +ij[4174] = 11 +id[4175] = "2263-06-08T02:27:08" +ik[4175] = 4.724 +il[4175] = -24 +im[4175] = 0.1448 +ij[4175] = 27.2 +id[4176] = "2263-06-13T13:31:25" +ik[4176] = 0.5215 +il[4176] = -27 +im[4176] = 0.5216 +ij[4176] = 2 +id[4177] = "2263-06-28T11:02:54" +ik[4177] = 44.21 +il[4177] = -17 +im[4177] = 0.3838 +ij[4177] = 7.166 +id[4178] = "2263-08-01T11:04:40" +ik[4178] = 78.22 +il[4178] = 66 +im[4178] = 0.03 +ij[4178] = 14 +id[4179] = "2263-08-16T00:04:07" +ik[4179] = 90 +il[4179] = 104 +im[4179] = 0.0398 +ij[4179] = 5 +id[4180] = "2263-10-27T15:57:22" +ik[4180] = 54.164 +il[4180] = -34 +im[4180] = 0.0461 +ij[4180] = 8 +id[4181] = "2263-11-02T07:57:47" +ik[4181] = 0.76 +il[4181] = -17 +im[4181] = 0.0777 +ij[4181] = 28.7 +id[4182] = "2263-11-23T13:59:22" +ik[4182] = 0.807 +il[4182] = 49 +im[4182] = 0.0944 +ij[4182] = 28.6 +id[4183] = "2263-12-28T05:42:35" +ik[4183] = 4.608 +il[4183] = 157 +im[4183] = 0.0245 +ij[4183] = 27.1 +id[4184] = "2264-02-11T19:39:29" +ik[4184] = 0.429 +il[4184] = -61 +im[4184] = 0.0075 +ij[4184] = 27.3 +id[4185] = "2264-02-16T03:12:05" +ik[4185] = 0.078 +il[4185] = -48 +im[4185] = 0.0659 +ij[4185] = 28.5 +id[4186] = "2264-02-21T15:19:35" +ik[4186] = 2.911 +il[4186] = -42 +im[4186] = 0.0877 +ij[4186] = 28.1 +id[4187] = "2264-03-28T12:36:00" +ik[4187] = 1.35 +il[4187] = 57 +im[4187] = 0.0083 +ij[4187] = 12 +id[4188] = "2264-05-05T05:17:48" +ik[4188] = 3.657 +il[4188] = -12 +im[4188] = 0.0886 +ij[4188] = 28.1 +id[4189] = "2264-05-19T20:35:29" +ik[4189] = 4.265 +il[4189] = 33 +im[4189] = 0.0848 +ij[4189] = 27.2 +id[4190] = "2264-06-05T10:37:29" +ik[4190] = 0.5 +il[4190] = 85 +im[4190] = 0.0932 +ij[4190] = 28.1 +id[4191] = "2264-06-06T13:02:55" +ik[4191] = 0.14 +il[4191] = 89 +im[4191] = 0.087 +ij[4191] = 27.9 +id[4192] = "2264-08-14T04:41:50" +ik[4192] = 54.468 +il[4192] = -60 +im[4192] = 0.0645 +ij[4192] = 9 +id[4193] = "2264-08-26T01:49:26" +ik[4193] = 0.41 +il[4193] = -24 +im[4193] = 0.0067 +ij[4193] = 28.7 +id[4194] = "2264-09-27T17:36:57" +ik[4194] = 3.961 +il[4194] = 75 +im[4194] = 0.0775 +ij[4194] = 28.6 +id[4195] = "2264-10-10T09:20:49" +ik[4195] = 1.445 +il[4195] = 114 +im[4195] = 0.02 +ij[4195] = 27.4 +id[4196] = "2264-10-30T12:58:04" +ik[4196] = 90 +il[4196] = 176 +im[4196] = 0.1885 +ij[4196] = 6 +id[4197] = "2264-12-20T11:05:07" +ik[4197] = 0 +il[4197] = -71 +im[4197] = 0.1568 +ij[4197] = 13 +id[4198] = "2265-01-10T08:53:11" +ik[4198] = 0.5749 +il[4198] = -47 +im[4198] = 0.575 +ij[4198] = 2 +id[4199] = "2265-01-10T14:11:02" +ik[4199] = 4.78 +il[4199] = -47 +im[4199] = 0.5743 +ij[4199] = 11 +id[4200] = "2265-01-31T13:12:42" +ik[4200] = 42.09 +il[4200] = -2 +im[4200] = 0.1551 +ij[4200] = 7.1552 +id[4201] = "2265-03-04T03:30:29" +ik[4201] = 73.68 +il[4201] = 60 +im[4201] = 0.2396 +ij[4201] = 14 +id[4202] = "2265-03-19T03:48:49" +ik[4202] = 3.848 +il[4202] = 96 +im[4202] = 0.1811 +ij[4202] = 27.3 +id[4203] = "2265-03-23T05:33:09" +ik[4203] = 90 +il[4203] = 108 +im[4203] = 0.1945 +ij[4203] = 5 +id[4204] = "2265-04-09T05:58:09" +ik[4204] = 0.851 +il[4204] = 161 +im[4204] = 0.1412 +ij[4204] = 27.5 +id[4205] = "2265-04-18T18:17:42" +ik[4205] = 0.798 +il[4205] = -169 +im[4205] = 0.1465 +ij[4205] = 28.5 +id[4206] = "2265-04-21T20:04:42" +ik[4206] = 0.338 +il[4206] = -160 +im[4206] = 0.1436 +ij[4206] = 28.8 +id[4207] = "2265-05-26T15:54:41" +ik[4207] = 4.05 +il[4207] = -52 +im[4207] = 0.0169 +ij[4207] = 27.6 +id[4208] = "2265-06-07T10:55:11" +ik[4208] = 54.351 +il[4208] = -16 +im[4208] = 0.1025 +ij[4208] = 8 +id[4209] = "2265-07-04T16:03:08" +ik[4209] = 5.919 +il[4209] = 67 +im[4209] = 0.1064 +ij[4209] = 27.2 +id[4210] = "2265-07-21T19:30:43" +ik[4210] = 0.137 +il[4210] = 119 +im[4210] = 0.0825 +ij[4210] = 27.91 +id[4211] = "2265-10-25T08:32:38" +ik[4211] = 1.04 +il[4211] = 41 +im[4211] = 0.0055 +ij[4211] = 12 +id[4212] = "2266-01-04T18:29:31" +ik[4212] = 1.496 +il[4212] = 66 +im[4212] = 0.0678 +ij[4212] = 28.1 +id[4213] = "2266-01-12T04:51:29" +ik[4213] = 0.241 +il[4213] = 89 +im[4213] = 0.0556 +ij[4213] = 27.3 +id[4214] = "2266-01-29T22:15:02" +ik[4214] = 1.152 +il[4214] = 143 +im[4214] = 0.0984 +ij[4214] = 27.5 +id[4215] = "2266-02-13T19:10:24" +ik[4215] = 0.224 +il[4215] = -171 +im[4215] = 0.0888 +ij[4215] = 28.8 +id[4216] = "2266-03-09T22:18:28" +ik[4216] = 0.994 +il[4216] = -95 +im[4216] = 0.0138 +ij[4216] = 28.4 +id[4217] = "2266-03-10T10:51:27" +ik[4217] = 0.933 +il[4217] = -93 +im[4217] = 0.0025 +ij[4217] = 28.5 +id[4218] = "2266-03-15T05:59:35" +ik[4218] = 2.16 +il[4218] = -78 +im[4218] = 0.0926 +ij[4218] = 27.6 +id[4219] = "2266-03-28T00:11:39" +ik[4219] = 54.175 +il[4219] = -38 +im[4219] = 0.0778 +ij[4219] = 9 +id[4220] = "2266-04-22T17:27:02" +ik[4220] = 2.592 +il[4220] = 42 +im[4220] = 0.0299 +ij[4220] = 27.2 +id[4221] = "2266-06-06T06:56:18" +ik[4221] = 90 +il[4221] = 179 +im[4221] = 0.0603 +ij[4221] = 6 +id[4222] = "2266-07-24T03:30:56" +ik[4222] = 0 +il[4222] = -78 +im[4222] = 0.2566 +ij[4222] = 13 +id[4223] = "2266-08-09T19:15:59" +ik[4223] = 0.5101 +il[4223] = -58 +im[4223] = 0.5101 +ij[4223] = 2 +id[4224] = "2266-08-15T05:45:36" +ik[4224] = 7.67 +il[4224] = -44 +im[4224] = 0.1856 +ij[4224] = 11 +id[4225] = "2266-09-06T05:36:31" +ik[4225] = 44.09 +il[4225] = -34 +im[4225] = 0.4062 +ij[4225] = 7.1646 +id[4226] = "2266-10-09T11:32:17" +ik[4226] = 77.33 +il[4226] = 58 +im[4226] = 0.081 +ij[4226] = 14 +id[4227] = "2266-10-24T23:13:42" +ik[4227] = 90 +il[4227] = 97 +im[4227] = 0.0265 +ij[4227] = 5 +id[4228] = "2266-11-23T06:55:26" +ik[4228] = 1.126 +il[4228] = -173 +im[4228] = 0.0264 +ij[4228] = 28.7 +id[4229] = "2267-01-08T20:35:57" +ik[4229] = 0.008 +il[4229] = -28 +im[4229] = 0.0135 +ij[4229] = 28.6 +id[4230] = "2267-01-09T00:04:33" +ik[4230] = 53.748 +il[4230] = -27 +im[4230] = 0.0135 +ij[4230] = 8 +id[4231] = "2267-01-10T14:54:35" +ik[4231] = 3.84 +il[4231] = -22 +im[4231] = 0.0446 +ij[4231] = 27.1 +id[4232] = "2267-02-26T03:07:55" +ik[4232] = 0.874 +il[4232] = 123 +im[4232] = 0.0677 +ij[4232] = 27.3 +id[4233] = "2267-03-15T21:17:42" +ik[4233] = 0.668 +il[4233] = 178 +im[4233] = 0.0918 +ij[4233] = 27.5 +id[4234] = "2267-03-31T11:16:04" +ik[4234] = 0.294 +il[4234] = -135 +im[4234] = 0.0887 +ij[4234] = 28.8 +id[4235] = "2267-04-28T03:21:18" +ik[4235] = 0.701 +il[4235] = -50 +im[4235] = 0.0623 +ij[4235] = 28.1 +id[4236] = "2267-04-28T19:48:28" +ik[4236] = 3.41 +il[4236] = -48 +im[4236] = 0.0699 +ij[4236] = 27.6 +id[4237] = "2267-06-07T18:46:04" +ik[4237] = 0.05 +il[4237] = 52 +im[4237] = 0.0075 +ij[4237] = 12 +id[4238] = "2267-08-16T07:58:56" +ik[4238] = 3.971 +il[4238] = 84 +im[4238] = 0.09 +ij[4238] = 28.1 +id[4239] = "2267-09-18T16:15:01" +ik[4239] = 0.171 +il[4239] = -174 +im[4239] = 0.055 +ij[4239] = 28.7 +id[4240] = "2267-10-21T10:20:21" +ik[4240] = 2.985 +il[4240] = -75 +im[4240] = 0.0107 +ij[4240] = 27.4 +id[4241] = "2267-10-25T22:00:08" +ik[4241] = 53.823 +il[4241] = -61 +im[4241] = 0.104 +ij[4241] = 9 +id[4242] = "2267-11-13T20:34:39" +ik[4242] = 3.035 +il[4242] = -3 +im[4242] = 0.1245 +ij[4242] = 28.6 +id[4243] = "2267-12-17T21:24:48" +ik[4243] = 0.98 +il[4243] = 102 +im[4243] = 0.0786 +ij[4243] = 27.3 +id[4244] = "2268-01-07T07:17:42" +ik[4244] = 0.735 +il[4244] = 166 +im[4244] = 0.1075 +ij[4244] = 27.5 +id[4245] = "2268-01-15T00:45:42" +ik[4245] = 90 +il[4245] = -170 +im[4245] = 0.1657 +ij[4245] = 6 +id[4246] = "2268-01-30T16:21:47" +ik[4246] = 2.463 +il[4246] = -130 +im[4246] = 0.1828 +ij[4246] = 28.8 +id[4247] = "2268-03-04T11:32:44" +ik[4247] = 0 +il[4247] = -63 +im[4247] = 0.2162 +ij[4247] = 13 +id[4248] = "2268-03-22T18:37:42" +ik[4248] = 0.5311 +il[4248] = -43 +im[4248] = 0.5312 +ij[4248] = 2 +id[4249] = "2268-03-25T07:59:31" +ik[4249] = 8.42 +il[4249] = -19 +im[4249] = 0.4338 +ij[4249] = 11 +id[4250] = "2268-04-14T22:53:21" +ik[4250] = 41.47 +il[4250] = 4 +im[4250] = 0.3313 +ij[4250] = 7.1618 +id[4251] = "2268-04-21T21:34:33" +ik[4251] = 5.428 +il[4251] = 15 +im[4251] = 0.2806 +ij[4251] = 28.8 +id[4252] = "2268-05-18T03:16:16" +ik[4252] = 74.66 +il[4252] = 62 +im[4252] = 0.2516 +ij[4252] = 14 +id[4253] = "2268-06-03T07:00:31" +ik[4253] = 4.24 +il[4253] = 110 +im[4253] = 0.157 +ij[4253] = 27.6 +id[4254] = "2268-06-03T23:36:42" +ik[4254] = 90 +il[4254] = 113 +im[4254] = 0.1354 +ij[4254] = 5 +id[4255] = "2268-06-20T02:10:45" +ik[4255] = 1.823 +il[4255] = 163 +im[4255] = 0.0844 +ij[4255] = 28.4 +id[4256] = "2268-07-18T12:57:27" +ik[4256] = 1.357 +il[4256] = -110 +im[4256] = 0.0927 +ij[4256] = 28.5 +id[4257] = "2268-08-15T09:40:36" +ik[4257] = 54.507 +il[4257] = -26 +im[4257] = 0.104 +ij[4257] = 8 +id[4258] = "2268-11-03T14:16:04" +ik[4258] = 0.784 +il[4258] = -139 +im[4258] = 0.0209 +ij[4258] = 28.7 +id[4259] = "2268-12-02T01:36:28" +ik[4259] = 0.883 +il[4259] = -50 +im[4259] = 0.0458 +ij[4259] = 28.1 +id[4260] = "2268-12-03T04:06:35" +ik[4260] = 4.873 +il[4260] = -57 +im[4260] = 0.0266 +ij[4260] = 27.4 +id[4261] = "2269-01-08T03:46:04" +ik[4261] = 0.69 +il[4261] = 44 +im[4261] = 0.0744 +ij[4261] = 12 +id[4262] = "2269-03-05T00:01:17" +ik[4262] = 0.102 +il[4262] = 28 +im[4262] = 0.0082 +ij[4262] = 28.8 +id[4263] = "2269-03-07T08:10:01" +ik[4263] = 3.54 +il[4263] = 40 +im[4263] = 0.0449 +ij[4263] = 28.1 +id[4264] = "2269-03-29T01:53:24" +ik[4264] = 2.72 +il[4264] = 103 +im[4264] = 0.0868 +ij[4264] = 27.6 +id[4265] = "2269-05-05T04:36:21" +ik[4265] = 3.604 +il[4265] = -141 +im[4265] = 0.0139 +ij[4265] = 27.2 +id[4266] = "2269-06-05T02:44:37" +ik[4266] = 54.651 +il[4266] = -44 +im[4266] = 0.0292 +ij[4266] = 9 +id[4267] = "2269-06-10T04:03:04" +ik[4267] = 1.449 +il[4267] = -29 +im[4267] = 0.1133 +ij[4267] = 28.5 +id[4268] = "2269-08-14T21:57:38" +ik[4268] = 90 +il[4268] = 172 +im[4268] = 0.0704 +ij[4268] = 6 +id[4269] = "2269-09-10T04:00:46" +ik[4269] = 4.842 +il[4269] = -124 +im[4269] = 0.2429 +ij[4269] = 28.7 +id[4270] = "2269-10-04T03:16:43" +ik[4270] = 0 +il[4270] = -78 +im[4270] = 0.3848 +ij[4270] = 13 +id[4271] = "2269-10-19T19:47:33" +ik[4271] = 0.5416 +il[4271] = -59 +im[4271] = 0.5417 +ij[4271] = 2 +id[4272] = "2269-10-26T14:11:02" +ik[4272] = 6.47 +il[4272] = -43 +im[4272] = 0.0438 +ij[4272] = 11 +id[4273] = "2269-11-16T05:23:25" +ik[4273] = 43.09 +il[4273] = -33 +im[4273] = 0.4595 +ij[4273] = 7.1568 +id[4274] = "2269-11-30T00:21:18" +ik[4274] = 0.455 +il[4274] = -11 +im[4274] = 0.3249 +ij[4274] = 28.7 +id[4275] = "2269-12-17T20:53:13" +ik[4275] = 74.73 +il[4275] = 44 +im[4275] = 0.178 +ij[4275] = 14 +id[4276] = "2270-01-05T07:31:42" +ik[4276] = 90 +il[4276] = 100 +im[4276] = 0.0711 +ij[4276] = 5 +id[4277] = "2270-01-20T09:32:21" +ik[4277] = 2.42 +il[4277] = 147 +im[4277] = 0.0491 +ij[4277] = 27.1 +id[4278] = "2270-02-24T12:19:35" +ik[4278] = 1.152 +il[4278] = -104 +im[4278] = 0.1408 +ij[4278] = 28.6 +id[4279] = "2270-03-11T05:47:28" +ik[4279] = 1.622 +il[4279] = -58 +im[4279] = 0.1205 +ij[4279] = 27.3 +id[4280] = "2270-03-25T04:49:05" +ik[4280] = 53.874 +il[4280] = -14 +im[4280] = 0.1124 +ij[4280] = 8 +id[4281] = "2270-03-29T12:05:41" +ik[4281] = 0.272 +il[4281] = -1 +im[4281] = 0.1105 +ij[4281] = 27.5 +id[4282] = "2270-04-19T11:13:55" +ik[4282] = 0.189 +il[4282] = 64 +im[4282] = 0.0219 +ij[4282] = 28.8 +id[4283] = "2270-05-13T04:24:17" +ik[4283] = 3.71 +il[4283] = 136 +im[4283] = 0.087 +ij[4283] = 27.6 +id[4284] = "2270-06-20T00:10:14" +ik[4284] = 5.278 +il[4284] = -109 +im[4284] = 0.0361 +ij[4284] = 27.2 +id[4285] = "2270-07-08T16:54:54" +ik[4285] = 2.658 +il[4285] = -52 +im[4285] = 0.0795 +ij[4285] = 28.1 +id[4286] = "2270-08-13T20:21:07" +ik[4286] = 1.24 +il[4286] = 38 +im[4286] = 0.0588 +ij[4286] = 12 +id[4287] = "2270-10-12T05:58:59" +ik[4287] = 0.029 +il[4287] = 38 +im[4287] = 0.079 +ij[4287] = 28.7 +id[4288] = "2270-10-18T17:28:27" +ik[4288] = 2.868 +il[4288] = 58 +im[4288] = 0.0305 +ij[4288] = 28.1 +id[4289] = "2270-11-03T19:57:41" +ik[4289] = 3.777 +il[4289] = 107 +im[4289] = 0.0606 +ij[4289] = 27.4 +id[4290] = "2270-12-29T00:14:35" +ik[4290] = 0.596 +il[4290] = -85 +im[4290] = 0.0487 +ij[4290] = 27.3 +id[4291] = "2270-12-30T18:32:15" +ik[4291] = 1.063 +il[4291] = -79 +im[4291] = 0.0139 +ij[4291] = 28.6 +id[4292] = "2271-01-10T01:40:39" +ik[4292] = 53.585 +il[4292] = -47 +im[4292] = 0.1055 +ij[4292] = 9 +id[4293] = "2271-01-16T05:04:48" +ik[4293] = 1.186 +il[4293] = -28 +im[4293] = 0.0375 +ij[4293] = 27.5 +id[4294] = "2271-02-10T00:12:31" +ik[4294] = 0.85 +il[4294] = 49 +im[4294] = 0.1057 +ij[4294] = 28.8 +id[4295] = "2271-03-03T19:46:27" +ik[4295] = 0.89 +il[4295] = 118 +im[4295] = 0.0707 +ij[4295] = 27.6 +id[4296] = "2271-03-27T19:58:14" +ik[4296] = 90 +il[4296] = -167 +im[4296] = 0.1456 +ij[4296] = 6 +id[4297] = "2271-04-21T12:12:48" +ik[4297] = 0.165 +il[4297] = -109 +im[4297] = 0.3069 +ij[4297] = 27.2 +id[4298] = "2271-05-12T20:53:40" +ik[4298] = 0 +il[4298] = -120 +im[4298] = 0.0464 +ij[4298] = 13 +id[4299] = "2271-06-02T19:35:34" +ik[4299] = 3.617 +il[4299] = -45 +im[4299] = 0.4756 +ij[4299] = 27.2 +id[4300] = "2271-06-04T14:55:40" +ik[4300] = 0.79 +il[4300] = 42 +im[4300] = 0.3717 +ij[4300] = 11 +id[4301] = "2271-06-05T14:58:08" +ik[4301] = 4.051 +il[4301] = -21 +im[4301] = 0.2791 +ij[4301] = 27.2 +id[4302] = "2271-06-14T18:35:51" +ik[4302] = 0.5084 +il[4302] = -13 +im[4302] = 0.5085 +ij[4302] = 2 +id[4303] = "2271-06-26T04:04:16" +ik[4303] = 44.3 +il[4303] = -4 +im[4303] = 0.3374 +ij[4303] = 7.1658 +id[4304] = "2271-07-30T03:02:02" +ik[4304] = 78.26 +il[4304] = 63 +im[4304] = 0.1663 +ij[4304] = 14 +id[4305] = "2271-08-13T16:47:10" +ik[4305] = 90 +il[4305] = 107 +im[4305] = 0.1788 +ij[4305] = 5 +id[4306] = "2271-10-25T06:53:34" +ik[4306] = 54.181 +il[4306] = -32 +im[4306] = 0.114 +ij[4306] = 8 +id[4307] = "2271-10-28T10:02:03" +ik[4307] = 0.076 +il[4307] = -22 +im[4307] = 0.07 +ij[4307] = 28.5 +id[4308] = "2271-11-28T02:04:42" +ik[4308] = 1.14 +il[4308] = 73 +im[4308] = 0.0584 +ij[4308] = 28.7 +id[4309] = "2271-12-27T19:15:28" +ik[4309] = 4.632 +il[4309] = 166 +im[4309] = 0.0638 +ij[4309] = 27.1 +id[4310] = "2272-01-31T07:13:00" +ik[4310] = 2.842 +il[4310] = -87 +im[4310] = 0.0189 +ij[4310] = 28.1 +id[4311] = "2272-02-11T08:52:21" +ik[4311] = 0.417 +il[4311] = -52 +im[4311] = 0.0408 +ij[4311] = 27.3 +id[4312] = "2272-03-26T01:06:14" +ik[4312] = 1.37 +il[4312] = 60 +im[4312] = 0.07 +ij[4312] = 12 +id[4313] = "2272-05-13T03:50:41" +ik[4313] = 0.752 +il[4313] = 22 +im[4313] = 0.0318 +ij[4313] = 28.1 +id[4314] = "2272-05-19T09:48:48" +ik[4314] = 4.246 +il[4314] = 45 +im[4314] = 0.0692 +ij[4314] = 27.2 +id[4315] = "2272-06-06T02:15:47" +ik[4315] = 0.158 +il[4315] = 97 +im[4315] = 0.0968 +ij[4315] = 27.9 +id[4316] = "2272-08-11T21:35:21" +ik[4316] = 54.484 +il[4316] = -57 +im[4316] = 0.0271 +ij[4316] = 9 +id[4317] = "2272-08-26T08:29:36" +ik[4317] = 1.413 +il[4317] = -13 +im[4317] = 0.039 +ij[4317] = 28.4 +id[4318] = "2272-09-22T13:31:17" +ik[4318] = 1.916 +il[4318] = 70 +im[4318] = 0.1216 +ij[4318] = 28.7 +id[4319] = "2272-09-23T03:53:51" +ik[4319] = 2.458 +il[4319] = 71 +im[4319] = 0.1093 +ij[4319] = 28.5 +id[4320] = "2272-10-10T06:00:21" +ik[4320] = 1.362 +il[4320] = 124 +im[4320] = 0.0371 +ij[4320] = 27.4 +id[4321] = "2272-10-28T00:20:03" +ik[4321] = 90 +il[4321] = 178 +im[4321] = 0.0515 +ij[4321] = 6 +id[4322] = "2272-12-18T03:02:29" +ik[4322] = 0 +il[4322] = -68 +im[4322] = 0.4299 +ij[4322] = 13 +id[4323] = "2273-01-08T03:00:00" +ik[4323] = 4.44 +il[4323] = -35 +im[4323] = 0.4111 +ij[4323] = 11 +id[4324] = "2273-01-11T12:35:33" +ik[4324] = 0.5778 +il[4324] = -25 +im[4324] = 0.5779 +ij[4324] = 2 +id[4325] = "2273-01-29T03:08:03" +ik[4325] = 42 +il[4325] = -14 +im[4325] = 0.228 +ij[4325] = 7.155 +id[4326] = "2273-03-01T14:57:47" +ik[4326] = 73.5 +il[4326] = 52 +im[4326] = 0.0527 +ij[4326] = 14 +id[4327] = "2273-03-19T05:40:21" +ik[4327] = 3.698 +il[4327] = 107 +im[4327] = 0.1282 +ij[4327] = 27.3 +id[4328] = "2273-03-20T17:58:49" +ik[4328] = 90 +il[4328] = 110 +im[4328] = 0.1735 +ij[4328] = 5 +id[4329] = "2273-04-09T01:49:14" +ik[4329] = 0.781 +il[4329] = 171 +im[4329] = 0.1739 +ij[4329] = 27.5 +id[4330] = "2273-04-10T11:24:17" +ik[4330] = 1.812 +il[4330] = 175 +im[4330] = 0.1475 +ij[4330] = 28.6 +id[4331] = "2273-05-06T22:25:32" +ik[4331] = 0.098 +il[4331] = -103 +im[4331] = 0.1467 +ij[4331] = 28.8 +id[4332] = "2273-05-26T07:19:15" +ik[4332] = 4.04 +il[4332] = -43 +im[4332] = 0.0672 +ij[4332] = 27.6 +id[4333] = "2273-06-05T03:06:03" +ik[4333] = 54.337 +il[4333] = -13 +im[4333] = 0.1174 +ij[4333] = 8 +id[4334] = "2273-07-04T05:57:21" +ik[4334] = 5.894 +il[4334] = 75 +im[4334] = 0.0943 +ij[4334] = 27.2 +id[4335] = "2273-07-21T09:00:00" +ik[4335] = 0.114 +il[4335] = 127 +im[4335] = 0.0995 +ij[4335] = 27.91 +id[4336] = "2273-09-13T03:35:16" +ik[4336] = 2.492 +il[4336] = -68 +im[4336] = 0.0355 +ij[4336] = 28.1 +id[4337] = "2273-10-22T22:32:09" +ik[4337] = 1.08 +il[4337] = -69 +im[4337] = 0.0686 +ij[4337] = 12 +id[4338] = "2273-11-29T16:00:55" +ik[4338] = 0.73 +il[4338] = -34 +im[4338] = 0.0646 +ij[4338] = 28.5 +id[4339] = "2273-12-16T21:33:50" +ik[4339] = 0.733 +il[4339] = 20 +im[4339] = 0.0792 +ij[4339] = 28.1 +id[4340] = "2274-01-11T18:18:08" +ik[4340] = 0.25 +il[4340] = 97 +im[4340] = 0.0216 +ij[4340] = 27.3 +id[4341] = "2274-01-29T11:51:54" +ik[4341] = 1.154 +il[4341] = 152 +im[4341] = 0.0812 +ij[4341] = 27.5 +id[4342] = "2274-02-14T17:30:02" +ik[4342] = 0.841 +il[4342] = -158 +im[4342] = 0.0847 +ij[4342] = 28.6 +id[4343] = "2274-02-27T12:38:09" +ik[4343] = 0.622 +il[4343] = -118 +im[4343] = 0.0687 +ij[4343] = 28.8 +id[4344] = "2274-03-14T20:26:10" +ik[4344] = 2.13 +il[4344] = -70 +im[4344] = 0.066 +ij[4344] = 27.6 +id[4345] = "2274-03-25T14:53:37" +ik[4345] = 54.151 +il[4345] = -36 +im[4345] = 0.0192 +ij[4345] = 9 +id[4346] = "2274-04-22T10:01:41" +ik[4346] = 2.544 +il[4346] = 51 +im[4346] = 0.0851 +ij[4346] = 27.2 +id[4347] = "2274-06-04T00:43:03" +ik[4347] = 90 +il[4347] = -178 +im[4347] = 0.1807 +ij[4347] = 6 +id[4348] = "2274-07-21T14:58:20" +ik[4348] = 0 +il[4348] = -76 +im[4348] = 0.0755 +ij[4348] = 13 +id[4349] = "2274-08-10T20:24:09" +ik[4349] = 0.5265 +il[4349] = -53 +im[4349] = 0.5266 +ij[4349] = 2 +id[4350] = "2274-08-12T21:17:16" +ik[4350] = 7.51 +il[4350] = -51 +im[4350] = 0.4706 +ij[4350] = 11 +id[4351] = "2274-09-03T18:10:56" +ik[4351] = 44.13 +il[4351] = -5 +im[4351] = 0.3534 +ij[4351] = 7.1648 +id[4352] = "2274-10-07T04:59:42" +ik[4352] = 77.58 +il[4352] = 61 +im[4352] = 0.2377 +ij[4352] = 14 +id[4353] = "2274-10-22T14:31:51" +ik[4353] = 90 +il[4353] = 100 +im[4353] = 0.1663 +ij[4353] = 5 +id[4354] = "2274-12-20T15:09:21" +ik[4354] = 1.757 +il[4354] = -78 +im[4354] = 0.1085 +ij[4354] = 28.7 +id[4355] = "2274-12-30T05:28:53" +ik[4355] = 1.541 +il[4355] = -48 +im[4355] = 0.1032 +ij[4355] = 28.4 +id[4356] = "2275-01-06T12:02:58" +ik[4356] = 53.755 +il[4356] = -25 +im[4356] = 0.0922 +ij[4356] = 8 +id[4357] = "2275-01-10T05:45:14" +ik[4357] = 3.875 +il[4357] = -14 +im[4357] = 0.0063 +ij[4357] = 27.1 +id[4358] = "2275-02-05T21:06:54" +ik[4358] = 0.524 +il[4358] = 70 +im[4358] = 0.074 +ij[4358] = 28.5 +id[4359] = "2275-02-25T16:52:21" +ik[4359] = 0.857 +il[4359] = 131 +im[4359] = 0.0289 +ij[4359] = 27.3 +id[4360] = "2275-03-15T10:47:27" +ik[4360] = 0.677 +il[4360] = -174 +im[4360] = 0.0765 +ij[4360] = 27.5 +id[4361] = "2275-04-04T18:39:36" +ik[4361] = 1.613 +il[4361] = -111 +im[4361] = 0.0818 +ij[4361] = 28.1 +id[4362] = "2275-04-08T14:56:41" +ik[4362] = 0.907 +il[4362] = -100 +im[4362] = 0.0297 +ij[4362] = 28.6 +id[4363] = "2275-04-14T03:29:48" +ik[4363] = 0.004 +il[4363] = -83 +im[4363] = 0.0678 +ij[4363] = 28.8 +id[4364] = "2275-04-28T08:58:00" +ik[4364] = 3.4 +il[4364] = -50 +im[4364] = 0.0419 +ij[4364] = 27.6 +id[4365] = "2275-06-05T12:57:36" +ik[4365] = 0.1 +il[4365] = 55 +im[4365] = 0.0596 +ij[4365] = 12 +id[4366] = "2275-07-24T10:13:09" +ik[4366] = 3.156 +il[4366] = 23 +im[4366] = 0.0121 +ij[4366] = 28.1 +id[4367] = "2275-10-15T03:07:55" +ik[4367] = 1.104 +il[4367] = -84 +im[4367] = 0.1081 +ij[4367] = 28.7 +id[4368] = "2275-10-21T01:17:41" +ik[4368] = 2.952 +il[4368] = -66 +im[4368] = 0.0418 +ij[4368] = 27.4 +id[4369] = "2275-10-23T10:30:33" +ik[4369] = 53.845 +il[4369] = -59 +im[4369] = 0.0214 +ij[4369] = 9 +id[4370] = "2275-12-17T16:12:47" +ik[4370] = 0.988 +il[4370] = 111 +im[4370] = 0.1348 +ij[4370] = 27.3 +id[4371] = "2275-12-31T22:40:39" +ik[4371] = 0.612 +il[4371] = 156 +im[4371] = 0.1758 +ij[4371] = 28.5 +id[4372] = "2276-01-07T06:54:34" +ik[4372] = 0.678 +il[4372] = 176 +im[4372] = 0.0608 +ij[4372] = 27.5 +id[4373] = "2276-01-12T13:14:01" +ik[4373] = 90 +il[4373] = -168 +im[4373] = 0.2207 +ij[4373] = 6 +id[4374] = "2276-02-29T05:00:09" +ik[4374] = 0 +il[4374] = -64 +im[4374] = 0.2966 +ij[4374] = 13 +id[4375] = "2276-03-22T21:59:02" +ik[4375] = 8.53 +il[4375] = -28 +im[4375] = 0.5131 +ij[4375] = 11 +id[4376] = "2276-03-23T16:37:27" +ik[4376] = 0.5222 +il[4376] = -18 +im[4376] = 0.5223 +ij[4376] = 2 +id[4377] = "2276-04-12T12:26:47" +ik[4377] = 43.31 +il[4377] = -8 +im[4377] = 0.0342 +ij[4377] = 7.1613 +id[4378] = "2276-05-15T15:10:31" +ik[4378] = 76.42 +il[4378] = 72 +im[4378] = 0.2172 +ij[4378] = 14 +id[4379] = "2276-05-17T01:28:42" +ik[4379] = 0.63 +il[4379] = 75 +im[4379] = 0.2428 +ij[4379] = 28.8 +id[4380] = "2276-05-20T05:09:36" +ik[4380] = 1.385 +il[4380] = 82 +im[4380] = 0.2159 +ij[4380] = 28.6 +id[4381] = "2276-06-01T14:58:23" +ik[4381] = 90 +il[4381] = 116 +im[4381] = 0.2133 +ij[4381] = 5 +id[4382] = "2276-06-03T08:32:56" +ik[4382] = 4.26 +il[4382] = 121 +im[4382] = 0.1949 +ij[4382] = 27.6 +id[4383] = "2276-08-13T02:41:14" +ik[4383] = 54.51 +il[4383] = -23 +im[4383] = 0.1018 +ij[4383] = 8 +id[4384] = "2276-11-12T01:32:52" +ik[4384] = 0.224 +il[4384] = -102 +im[4384] = 0.0887 +ij[4384] = 28.1 +id[4385] = "2276-11-29T08:59:34" +ik[4385] = 0.523 +il[4385] = -48 +im[4385] = 0.0848 +ij[4385] = 28.7 +id[4386] = "2277-01-05T14:13:55" +ik[4386] = 0.63 +il[4386] = 46 +im[4386] = 0.0134 +ij[4386] = 12 +id[4387] = "2277-02-12T20:35:54" +ik[4387] = 1.048 +il[4387] = -13 +im[4387] = 0.0901 +ij[4387] = 27.5 +id[4388] = "2277-02-14T12:31:14" +ik[4388] = 3.227 +il[4388] = -8 +im[4388] = 0.0822 +ij[4388] = 28.1 +id[4389] = "2277-03-01T16:46:24" +ik[4389] = 0.066 +il[4389] = 28 +im[4389] = 0.0741 +ij[4389] = 28.5 +id[4390] = "2277-03-18T13:41:22" +ik[4390] = 0.551 +il[4390] = 80 +im[4390] = 0.061 +ij[4390] = 28.8 +id[4391] = "2277-03-28T15:17:49" +ik[4391] = 2.7 +il[4391] = 112 +im[4391] = 0.0941 +ij[4391] = 27.6 +id[4392] = "2277-03-31T01:36:11" +ik[4392] = 1.877 +il[4392] = 119 +im[4392] = 0.0878 +ij[4392] = 28.6 +id[4393] = "2277-05-04T18:35:54" +ik[4393] = 3.578 +il[4393] = -132 +im[4393] = 0.0355 +ij[4393] = 27.2 +id[4394] = "2277-06-02T20:52:48" +ik[4394] = 54.644 +il[4394] = -41 +im[4394] = 0.0638 +ij[4394] = 9 +id[4395] = "2277-08-12T12:40:24" +ik[4395] = 90 +il[4395] = 174 +im[4395] = 0.1913 +ij[4395] = 6 +id[4396] = "2277-10-01T15:10:58" +ik[4396] = 0 +il[4396] = -76 +im[4396] = 0.1493 +ij[4396] = 13 +id[4397] = "2277-10-20T22:01:06" +ik[4397] = 0.5411 +il[4397] = -54 +im[4397] = 0.5411 +ij[4397] = 2 +id[4398] = "2277-10-24T03:31:40" +ik[4398] = 6.72 +il[4398] = -29 +im[4398] = 0.3868 +ij[4398] = 11 +id[4399] = "2277-11-13T15:01:38" +ik[4399] = 42.99 +il[4399] = -6 +im[4399] = 0.3829 +ij[4399] = 7.157 +id[4400] = "2277-12-15T11:57:23" +ik[4400] = 74.87 +il[4400] = 57 +im[4400] = 0.2802 +ij[4400] = 14 +id[4401] = "2278-01-02T20:35:24" +ik[4401] = 90 +il[4401] = 102 +im[4401] = 0.1154 +ij[4401] = 5 +id[4402] = "2278-01-08T14:19:14" +ik[4402] = 3.025 +il[4402] = 120 +im[4402] = 0.1141 +ij[4402] = 28.7 +id[4403] = "2278-01-20T06:23:00" +ik[4403] = 2.494 +il[4403] = 156 +im[4403] = 0.0134 +ij[4403] = 27.1 +id[4404] = "2278-03-10T21:11:00" +ik[4404] = 1.587 +il[4404] = -49 +im[4404] = 0.0918 +ij[4404] = 27.3 +id[4405] = "2278-03-22T17:23:03" +ik[4405] = 53.86 +il[4405] = -12 +im[4405] = 0.0397 +ij[4405] = 8 +id[4406] = "2278-03-29T02:42:07" +ik[4406] = 0.292 +il[4406] = 8 +im[4406] = 0.1219 +ij[4406] = 27.5 +id[4407] = "2278-05-03T09:54:00" +ik[4407] = 0.053 +il[4407] = 116 +im[4407] = 0.056 +ij[4407] = 28.8 +id[4408] = "2278-05-06T09:06:11" +ik[4408] = 0.1 +il[4408] = 125 +im[4408] = 0.0076 +ij[4408] = 28.5 +id[4409] = "2278-05-12T18:05:45" +ik[4409] = 3.7 +il[4409] = 145 +im[4409] = 0.0937 +ij[4409] = 27.6 +id[4410] = "2278-05-22T18:41:54" +ik[4410] = 0.974 +il[4410] = 176 +im[4410] = 0.0427 +ij[4410] = 28.6 +id[4411] = "2278-06-14T13:23:13" +ik[4411] = 2.002 +il[4411] = -115 +im[4411] = 0.0769 +ij[4411] = 28.1 +id[4412] = "2278-06-19T13:16:27" +ik[4412] = 5.26 +il[4412] = -100 +im[4412] = 0.0078 +ij[4412] = 27.2 +id[4413] = "2278-08-11T14:13:55" +ik[4413] = 1.21 +il[4413] = 41 +im[4413] = 0.0887 +ij[4413] = 12 +id[4414] = "2278-09-27T22:21:38" +ik[4414] = 3.183 +il[4414] = 5 +im[4414] = 0.0749 +ij[4414] = 28.1 +id[4415] = "2278-11-03T09:37:14" +ik[4415] = 3.757 +il[4415] = 115 +im[4415] = 0.0223 +ij[4415] = 27.4 +id[4416] = "2278-11-07T13:45:59" +ik[4416] = 0.646 +il[4416] = 128 +im[4416] = 0.0836 +ij[4416] = 28.7 +id[4417] = "2278-12-28T14:45:14" +ik[4417] = 0.607 +il[4417] = -76 +im[4417] = 0.0908 +ij[4417] = 27.3 +id[4418] = "2279-01-07T12:13:44" +ik[4418] = 53.578 +il[4418] = -45 +im[4418] = 0.1039 +ij[4418] = 9 +id[4419] = "2279-01-15T20:16:47" +ik[4419] = 1.182 +il[4419] = -19 +im[4419] = 0.0133 +ij[4419] = 27.5 +id[4420] = "2279-01-17T10:35:36" +ik[4420] = 0.962 +il[4420] = -14 +im[4420] = 0.0309 +ij[4420] = 28.4 +id[4421] = "2279-02-24T17:52:39" +ik[4421] = 2.244 +il[4421] = 105 +im[4421] = 0.1643 +ij[4421] = 28.8 +id[4422] = "2279-03-03T14:47:37" +ik[4422] = 0.82 +il[4422] = 127 +im[4422] = 0.0237 +ij[4422] = 27.6 +id[4423] = "2279-03-25T12:30:41" +ik[4423] = 90 +il[4423] = -165 +im[4423] = 0.2209 +ij[4423] = 6 +id[4424] = "2279-03-30T17:15:30" +ik[4424] = 5.568 +il[4424] = -151 +im[4424] = 0.0998 +ij[4424] = 28.6 +id[4425] = "2279-04-01T04:04:48" +ik[4425] = 4.283 +il[4425] = -148 +im[4425] = 0.0418 +ij[4425] = 28.5 +id[4426] = "2279-04-22T21:09:13" +ik[4426] = 0.35 +il[4426] = -99 +im[4426] = 0.3156 +ij[4426] = 27.2 +id[4427] = "2279-05-10T11:57:50" +ik[4427] = 0 +il[4427] = -67 +im[4427] = 0.2889 +ij[4427] = 13 +id[4428] = "2279-05-30T09:55:53" +ik[4428] = 2.804 +il[4428] = -44 +im[4428] = 0.3307 +ij[4428] = 27.2 +id[4429] = "2279-06-02T08:02:24" +ik[4429] = 1.12 +il[4429] = -31 +im[4429] = 0.4964 +ij[4429] = 11 +id[4430] = "2279-06-02T19:01:53" +ik[4430] = 0.499 +il[4430] = -21 +im[4430] = 0.499 +ij[4430] = 2 +id[4431] = "2279-06-23T18:52:36" +ik[4431] = 44.29 +il[4431] = -11 +im[4431] = 0.0564 +ij[4431] = 7.1656 +id[4432] = "2279-07-27T18:30:20" +ik[4432] = 78.27 +il[4432] = 71 +im[4432] = 0.2372 +ij[4432] = 14 +id[4433] = "2279-08-11T09:30:14" +ik[4433] = 90 +il[4433] = 110 +im[4433] = 0.2123 +ij[4433] = 5 +id[4434] = "2279-10-22T21:56:52" +ik[4434] = 54.197 +il[4434] = -29 +im[4434] = 0.1082 +ij[4434] = 8 +id[4435] = "2279-12-24T08:32:55" +ik[4435] = 0.88 +il[4435] = 165 +im[4435] = 0.0996 +ij[4435] = 28.7 +id[4436] = "2279-12-27T08:44:47" +ik[4436] = 4.656 +il[4436] = 175 +im[4436] = 0.0896 +ij[4436] = 27.1 +id[4437] = "2280-01-11T00:55:17" +ik[4437] = 2.582 +il[4437] = -140 +im[4437] = 0.078 +ij[4437] = 28.1 +id[4438] = "2280-02-10T22:05:14" +ik[4438] = 0.405 +il[4438] = -44 +im[4438] = 0.0701 +ij[4438] = 27.3 +id[4439] = "2280-03-23T13:23:31" +ik[4439] = 1.39 +il[4439] = 62 +im[4439] = 0.0812 +ij[4439] = 12 +id[4440] = "2280-05-12T23:14:12" +ik[4440] = 1.926 +il[4440] = 32 +im[4440] = 0.0618 +ij[4440] = 28.6 +id[4441] = "2280-05-18T23:04:20" +ik[4441] = 4.227 +il[4441] = 51 +im[4441] = 0.0429 +ij[4441] = 27.2 +id[4442] = "2280-05-29T13:10:42" +ik[4442] = 0.981 +il[4442] = 84 +im[4442] = 0.0245 +ij[4442] = 28.5 +id[4443] = "2280-06-05T15:24:46" +ik[4443] = 0.177 +il[4443] = 106 +im[4443] = 0.0871 +ij[4443] = 27.9 +id[4444] = "2280-08-09T14:32:26" +ik[4444] = 54.501 +il[4444] = -54 +im[4444] = 0.0998 +ij[4444] = 9 +id[4445] = "2280-10-10T03:08:20" +ik[4445] = 1.275 +il[4445] = 133 +im[4445] = 0.0968 +ij[4445] = 27.4 +id[4446] = "2280-10-23T07:31:00" +ik[4446] = 3.422 +il[4446] = 174 +im[4446] = 0.1922 +ij[4446] = 28.7 +id[4447] = "2280-10-25T11:44:41" +ik[4447] = 90 +il[4447] = 180 +im[4447] = 0.1313 +ij[4447] = 6 +id[4448] = "2280-12-15T18:30:47" +ik[4448] = 0 +il[4448] = -66 +im[4448] = 0.4492 +ij[4448] = 13 +id[4449] = "2281-01-05T15:48:57" +ik[4449] = 4.08 +il[4449] = -43 +im[4449] = 0.054 +ij[4449] = 11 +id[4450] = "2281-01-12T15:31:07" +ik[4450] = 0.5675 +il[4450] = -14 +im[4450] = 0.5676 +ij[4450] = 2 +id[4451] = "2281-01-26T17:33:21" +ik[4451] = 41.96 +il[4451] = 3 +im[4451] = 0.4225 +ij[4451] = 7.1548 +id[4452] = "2281-02-27T02:31:07" +ik[4452] = 73.33 +il[4452] = 65 +im[4452] = 0.1617 +ij[4452] = 14 +id[4453] = "2281-03-18T06:20:04" +ik[4453] = 90 +il[4453] = 113 +im[4453] = 0.0295 +ij[4453] = 5 +id[4454] = "2281-03-19T06:32:20" +ik[4454] = 3.558 +il[4454] = 116 +im[4454] = 0.0704 +ij[4454] = 27.3 +id[4455] = "2281-04-08T21:15:27" +ik[4455] = 0.715 +il[4455] = -180 +im[4455] = 0.1797 +ij[4455] = 27.5 +id[4456] = "2281-04-23T18:48:48" +ik[4456] = 0.658 +il[4456] = -134 +im[4456] = 0.1473 +ij[4456] = 28.4 +id[4457] = "2281-05-21T14:37:32" +ik[4457] = 0.228 +il[4457] = -48 +im[4457] = 0.1191 +ij[4457] = 28.8 +id[4458] = "2281-05-25T22:36:27" +ik[4458] = 4.03 +il[4458] = -35 +im[4458] = 0.1049 +ij[4458] = 27.6 +id[4459] = "2281-06-02T19:16:54" +ik[4459] = 54.324 +il[4459] = -10 +im[4459] = 0.0608 +ij[4459] = 8 +id[4460] = "2281-07-03T19:47:07" +ik[4460] = 5.87 +il[4460] = 84 +im[4460] = 0.067 +ij[4460] = 27.2 +id[4461] = "2281-07-04T07:58:56" +ik[4461] = 0.404 +il[4461] = 86 +im[4461] = 0.0745 +ij[4461] = 28.6 +id[4462] = "2281-07-20T22:29:16" +ik[4462] = 0.092 +il[4462] = 136 +im[4462] = 0.0971 +ij[4462] = 27.91 +id[4463] = "2281-08-06T15:55:26" +ik[4463] = 0.164 +il[4463] = -173 +im[4463] = 0.0887 +ij[4463] = 28.5 +id[4464] = "2281-09-13T23:01:32" +ik[4464] = 1.256 +il[4464] = -55 +im[4464] = 0.0191 +ij[4464] = 28.1 +id[4465] = "2281-10-20T12:43:12" +ik[4465] = 1.12 +il[4465] = -56 +im[4465] = 0.0852 +ij[4465] = 12 +id[4466] = "2281-11-26T16:52:53" +ik[4466] = 0.186 +il[4466] = -22 +im[4466] = 0.0133 +ij[4466] = 28.1 +id[4467] = "2281-12-01T18:29:48" +ik[4467] = 0.309 +il[4467] = -10 +im[4467] = 0.0731 +ij[4467] = 28.7 +id[4468] = "2282-01-11T07:45:40" +ik[4468] = 0.26 +il[4468] = 106 +im[4468] = 0.0215 +ij[4468] = 27.3 +id[4469] = "2282-01-29T01:28:47" +ik[4469] = 1.155 +il[4469] = 161 +im[4469] = 0.0473 +ij[4469] = 27.5 +id[4470] = "2282-03-13T09:15:15" +ik[4470] = 1.542 +il[4470] = -64 +im[4470] = 0.0062 +ij[4470] = 28.8 +id[4471] = "2282-03-14T10:52:22" +ik[4471] = 2.1 +il[4471] = -61 +im[4471] = 0.0295 +ij[4471] = 27.6 +id[4472] = "2282-03-23T05:24:55" +ik[4472] = 54.127 +il[4472] = -33 +im[4472] = 0.1022 +ij[4472] = 9 +id[4473] = "2282-04-22T02:45:13" +ik[4473] = 2.495 +il[4473] = 60 +im[4473] = 0.1284 +ij[4473] = 27.2 +id[4474] = "2282-05-07T07:38:41" +ik[4474] = 3.638 +il[4474] = 107 +im[4474] = 0.133 +ij[4474] = 28.6 +id[4475] = "2282-06-01T18:29:48" +ik[4475] = 90 +il[4475] = -175 +im[4475] = 0.1797 +ij[4475] = 6 +id[4476] = "2282-07-19T02:31:34" +ik[4476] = 0 +il[4476] = -73 +im[4476] = 0.3618 +ij[4476] = 13 +id[4477] = "2282-08-10T12:56:09" +ik[4477] = 7.33 +il[4477] = -38 +im[4477] = 0.5051 +ij[4477] = 11 +id[4478] = "2282-08-12T00:01:56" +ik[4478] = 0.5334 +il[4478] = -28 +im[4478] = 0.5335 +ij[4478] = 2 +id[4479] = "2282-09-01T10:05:19" +ik[4479] = 44.32 +il[4479] = -18 +im[4479] = 0.1089 +ij[4479] = 7.165 +id[4480] = "2282-10-04T22:13:58" +ik[4480] = 77.82 +il[4480] = 64 +im[4480] = 0.256 +ij[4480] = 14 +id[4481] = "2282-10-06T16:01:12" +ik[4481] = 2.958 +il[4481] = 68 +im[4481] = 0.2642 +ij[4481] = 28.5 +id[4482] = "2282-10-20T05:50:53" +ik[4482] = 90 +il[4482] = 103 +im[4482] = 0.1968 +ij[4482] = 5 +id[4483] = "2283-01-04T00:04:56" +ik[4483] = 53.763 +il[4483] = -23 +im[4483] = 0.1231 +ij[4483] = 8 +id[4484] = "2283-01-09T20:32:20" +ik[4484] = 3.909 +il[4484] = -5 +im[4484] = 0.0489 +ij[4484] = 27.1 +id[4485] = "2283-01-17T02:49:29" +ik[4485] = 1.371 +il[4485] = 18 +im[4485] = 0.1051 +ij[4485] = 28.7 +id[4486] = "2283-02-25T06:34:07" +ik[4486] = 0.84 +il[4486] = 140 +im[4486] = 0.0192 +ij[4486] = 27.3 +id[4487] = "2283-03-13T21:58:36" +ik[4487] = 2.195 +il[4487] = -169 +im[4487] = 0.0271 +ij[4487] = 28.1 +id[4488] = "2283-03-15T00:13:40" +ik[4488] = 0.686 +il[4488] = -165 +im[4488] = 0.047 +ij[4488] = 27.5 +id[4489] = "2283-04-27T19:27:50" +ik[4489] = 0.386 +il[4489] = -42 +im[4489] = 0.0051 +ij[4489] = 28.8 +id[4490] = "2283-04-27T22:02:22" +ik[4490] = 3.39 +il[4490] = -42 +im[4490] = 0.0071 +ij[4490] = 27.6 +id[4491] = "2283-05-01T16:42:57" +ik[4491] = 0.296 +il[4491] = -30 +im[4491] = 0.0677 +ij[4491] = 28.1 +id[4492] = "2283-06-03T06:59:02" +ik[4492] = 0.16 +il[4492] = 58 +im[4492] = 0.0837 +ij[4492] = 12 +id[4493] = "2283-09-08T00:34:59" +ik[4493] = 0.538 +il[4493] = 173 +im[4493] = 0.0424 +ij[4493] = 28.5 +id[4494] = "2283-10-20T16:18:33" +ik[4494] = 2.918 +il[4494] = -57 +im[4494] = 0.0836 +ij[4494] = 27.4 +id[4495] = "2283-10-20T23:08:04" +ik[4495] = 53.867 +il[4495] = -56 +im[4495] = 0.0787 +ij[4495] = 9 +id[4496] = "2283-11-12T06:09:04" +ik[4496] = 1.884 +il[4496] = 12 +im[4496] = 0.09 +ij[4496] = 28.7 +id[4497] = "2283-12-17T11:26:33" +ik[4497] = 0.995 +il[4497] = 121 +im[4497] = 0.1715 +ij[4497] = 27.3 +id[4498] = "2284-01-07T07:24:20" +ik[4498] = 0.614 +il[4498] = -174 +im[4498] = 0.0119 +ij[4498] = 27.5 +id[4499] = "2284-01-10T01:37:02" +ik[4499] = 90 +il[4499] = -166 +im[4499] = 0.1302 +ij[4499] = 6 +id[4500] = "2284-02-26T22:14:26" +ik[4500] = 0 +il[4500] = -61 +im[4500] = 0.4094 +ij[4500] = 13 +id[4501] = "2284-03-11T14:47:06" +ik[4501] = 0.5336 +il[4501] = -44 +im[4501] = 0.5337 +ij[4501] = 2 +id[4502] = "2284-03-20T11:54:14" +ik[4502] = 8.62 +il[4502] = -14 +im[4502] = 0.2629 +ij[4502] = 11 +id[4503] = "2284-04-10T02:25:07" +ik[4503] = 43.17 +il[4503] = 9 +im[4503] = 0.3369 +ij[4503] = 7.1612 +id[4504] = "2284-05-13T04:12:59" +ik[4504] = 76.25 +il[4504] = 74 +im[4504] = 0.0337 +ij[4504] = 14 +id[4505] = "2284-05-30T06:10:21" +ik[4505] = 90 +il[4505] = 118 +im[4505] = 0.1554 +ij[4505] = 5 +id[4506] = "2284-06-03T09:00:22" +ik[4506] = 4.27 +il[4506] = 131 +im[4506] = 0.209 +ij[4506] = 27.6 +id[4507] = "2284-06-04T19:01:37" +ik[4507] = 0.513 +il[4507] = 136 +im[4507] = 0.1956 +ij[4507] = 28.8 +id[4508] = "2284-08-10T19:45:25" +ik[4508] = 54.513 +il[4508] = -20 +im[4508] = 0.0321 +ij[4508] = 8 +id[4509] = "2284-08-14T23:19:23" +ik[4509] = 0.493 +il[4509] = -7 +im[4509] = 0.1051 +ij[4509] = 28.6 +id[4510] = "2284-10-24T19:02:47" +ik[4510] = 0.005 +il[4510] = -149 +im[4510] = 0.0189 +ij[4510] = 28.1 +id[4511] = "2284-11-10T07:36:20" +ik[4511] = 1.217 +il[4511] = -98 +im[4511] = 0.0553 +ij[4511] = 28.1 +id[4512] = "2284-11-17T04:47:42" +ik[4512] = 0.139 +il[4512] = -76 +im[4512] = 0.0846 +ij[4512] = 28.5 +id[4513] = "2285-01-03T00:41:45" +ik[4513] = 0.57 +il[4513] = 48 +im[4513] = 0.0578 +ij[4513] = 12 +id[4514] = "2285-02-12T09:44:46" +ik[4514] = 1.051 +il[4514] = -5 +im[4514] = 0.0836 +ij[4514] = 27.5 +id[4515] = "2285-03-28T04:42:14" +ik[4515] = 2.69 +il[4515] = 120 +im[4515] = 0.085 +ij[4515] = 27.6 +id[4516] = "2285-04-01T04:42:14" +ik[4516] = 1.241 +il[4516] = 133 +im[4516] = 0.0946 +ij[4516] = 28.8 +id[4517] = "2285-05-04T08:37:13" +ik[4517] = 3.552 +il[4517] = -123 +im[4517] = 0.0739 +ij[4517] = 27.2 +id[4518] = "2285-05-19T03:56:18" +ik[4518] = 0.015 +il[4518] = -77 +im[4518] = 0.0664 +ij[4518] = 28.4 +id[4519] = "2285-05-31T14:53:53" +ik[4519] = 54.637 +il[4519] = -38 +im[4519] = 0.1195 +ij[4519] = 9 +id[4520] = "2285-06-16T10:32:00" +ik[4520] = 1.647 +il[4520] = 10 +im[4520] = 0.1081 +ij[4520] = 28.6 +id[4521] = "2285-08-10T03:27:36" +ik[4521] = 90 +il[4521] = 177 +im[4521] = 0.1862 +ij[4521] = 6 +id[4522] = "2285-09-29T04:13:26" +ik[4522] = 0 +il[4522] = -74 +im[4522] = 0.2326 +ij[4522] = 13 +id[4523] = "2285-10-21T16:56:38" +ik[4523] = 6.95 +il[4523] = -38 +im[4523] = 0.5308 +ij[4523] = 11 +id[4524] = "2285-10-21T23:55:38" +ik[4524] = 0.5321 +il[4524] = -28 +im[4524] = 0.5322 +ij[4524] = 2 +id[4525] = "2285-11-11T09:22:01" +ik[4525] = 43.21 +il[4525] = -18 +im[4525] = 0.081 +ij[4525] = 7.1572 +id[4526] = "2285-12-13T03:02:45" +ik[4526] = 74.95 +il[4526] = 59 +im[4526] = 0.2125 +ij[4526] = 14 +id[4527] = "2285-12-31T09:47:04" +ik[4527] = 90 +il[4527] = 104 +im[4527] = 0.2205 +ij[4527] = 5 +id[4528] = "2286-01-20T02:41:39" +ik[4528] = 2.565 +il[4528] = 166 +im[4528] = 0.0687 +ij[4528] = 27.1 +id[4529] = "2286-01-22T06:53:25" +ik[4529] = 2.01 +il[4529] = 172 +im[4529] = 0.0298 +ij[4529] = 28.5 +id[4530] = "2286-02-08T09:54:00" +ik[4530] = 2.238 +il[4530] = -134 +im[4530] = 0.0592 +ij[4530] = 28.7 +id[4531] = "2286-03-10T12:28:19" +ik[4531] = 1.553 +il[4531] = -40 +im[4531] = 0.0496 +ij[4531] = 27.3 +id[4532] = "2286-03-20T05:53:27" +ik[4532] = 53.847 +il[4532] = -10 +im[4532] = 0.0567 +ij[4532] = 8 +id[4533] = "2286-03-28T17:15:53" +ik[4533] = 0.31 +il[4533] = 16 +im[4533] = 0.1102 +ij[4533] = 27.5 +id[4534] = "2286-05-12T07:44:12" +ik[4534] = 3.69 +il[4534] = 154 +im[4534] = 0.0851 +ij[4534] = 27.6 +id[4535] = "2286-05-17T06:26:55" +ik[4535] = 0.199 +il[4535] = 169 +im[4535] = 0.0797 +ij[4535] = 28.8 +id[4536] = "2286-05-21T22:21:12" +ik[4536] = 1.257 +il[4536] = -177 +im[4536] = 0.0117 +ij[4536] = 28.1 +id[4537] = "2286-06-19T02:21:20" +ik[4537] = 5.242 +il[4537] = -92 +im[4537] = 0.0445 +ij[4537] = 27.2 +id[4538] = "2286-06-23T17:05:42" +ik[4538] = 0.196 +il[4538] = -77 +im[4538] = 0.0355 +ij[4538] = 28.1 +id[4539] = "2286-08-09T08:13:55" +ik[4539] = 1.19 +il[4539] = 44 +im[4539] = 0.0656 +ij[4539] = 12 +id[4540] = "2286-11-02T23:17:13" +ik[4540] = 3.737 +il[4540] = 124 +im[4540] = 0.0241 +ij[4540] = 27.4 +id[4541] = "2286-12-05T10:31:43" +ik[4541] = 1.181 +il[4541] = -137 +im[4541] = 0.0179 +ij[4541] = 28.7 +id[4542] = "2286-12-17T15:10:04" +ik[4542] = 1.242 +il[4542] = -100 +im[4542] = 0.0287 +ij[4542] = 28.5 +id[4543] = "2286-12-28T05:16:46" +ik[4543] = 0.617 +il[4543] = -67 +im[4543] = 0.117 +ij[4543] = 27.3 +id[4544] = "2287-01-04T22:46:49" +ik[4544] = 53.571 +il[4544] = -43 +im[4544] = 0.0273 +ij[4544] = 9 +id[4545] = "2287-01-15T11:32:46" +ik[4545] = 1.177 +il[4545] = -11 +im[4545] = 0.062 +ij[4545] = 27.5 +id[4546] = "2287-03-03T10:12:12" +ik[4546] = 0.74 +il[4546] = 136 +im[4546] = 0.0437 +ij[4546] = 27.6 +id[4547] = "2287-03-12T09:09:21" +ik[4547] = 3.788 +il[4547] = 164 +im[4547] = 0.1843 +ij[4547] = 28.8 +id[4548] = "2287-03-23T04:52:31" +ik[4548] = 90 +il[4548] = -162 +im[4548] = 0.1605 +ij[4548] = 6 +id[4549] = "2287-04-24T20:39:53" +ik[4549] = 0.542 +il[4549] = -87 +im[4549] = 0.3286 +ij[4549] = 27.2 +id[4550] = "2287-05-08T03:03:12" +ik[4550] = 0 +il[4550] = -98 +im[4550] = 0.4152 +ij[4550] = 13 +id[4551] = "2287-05-23T21:38:33" +ik[4551] = 1.589 +il[4551] = -45 +im[4551] = 0.4582 +ij[4551] = 27.2 +id[4552] = "2287-05-31T01:01:55" +ik[4552] = 1.45 +il[4552] = -46 +im[4552] = 0.3063 +ij[4552] = 11 +id[4553] = "2287-06-03T16:47:15" +ik[4553] = 0.5044 +il[4553] = -35 +im[4553] = 0.5045 +ij[4553] = 2 +id[4554] = "2287-06-21T10:42:57" +ik[4554] = 44.32 +il[4554] = -24 +im[4554] = 0.272 +ij[4554] = 7.1655 +id[4555] = "2287-07-25T10:02:44" +ik[4555] = 78.29 +il[4555] = 69 +im[4555] = 0.1473 +ij[4555] = 14 +id[4556] = "2287-08-09T02:13:18" +ik[4556] = 90 +il[4556] = 113 +im[4556] = 0.1211 +ij[4556] = 5 +id[4557] = "2287-09-26T07:24:05" +ik[4557] = 1.267 +il[4557] = -101 +im[4557] = 0.1411 +ij[4557] = 28.6 +id[4558] = "2287-10-04T07:02:55" +ik[4558] = 1.177 +il[4558] = -76 +im[4558] = 0.0203 +ij[4558] = 28.4 +id[4559] = "2287-10-20T13:03:43" +ik[4559] = 54.214 +il[4559] = -26 +im[4559] = 0.0345 +ij[4559] = 8 +id[4560] = "2287-12-24T11:39:24" +ik[4560] = 2.327 +il[4560] = 179 +im[4560] = 0.0885 +ij[4560] = 28.1 +id[4561] = "2287-12-26T22:14:06" +ik[4561] = 4.679 +il[4561] = -177 +im[4561] = 0.0974 +ij[4561] = 27.1 +id[4562] = "2288-01-20T16:13:00" +ik[4562] = 3.355 +il[4562] = -100 +im[4562] = 0.0439 +ij[4562] = 28.1 +id[4563] = "2288-01-21T03:05:19" +ik[4563] = 0.224 +il[4563] = -98 +im[4563] = 0.0507 +ij[4563] = 28.7 +id[4564] = "2288-02-10T11:15:53" +ik[4564] = 0.394 +il[4564] = -46 +im[4564] = 0.0877 +ij[4564] = 27.3 +id[4565] = "2288-03-21T01:26:24" +ik[4565] = 1.4 +il[4565] = 64 +im[4565] = 0.0376 +ij[4565] = 12 +id[4566] = "2288-05-18T12:18:32" +ik[4566] = 4.208 +il[4566] = 59 +im[4566] = 0.0107 +ij[4566] = 27.2 +id[4567] = "2288-06-05T04:42:57" +ik[4567] = 0.195 +il[4567] = 115 +im[4567] = 0.0598 +ij[4567] = 27.9 +id[4568] = "2288-07-28T09:15:41" +ik[4568] = 0.272 +il[4568] = -81 +im[4568] = 0.0802 +ij[4568] = 28.6 +id[4569] = "2288-08-07T07:40:11" +ik[4569] = 54.516 +il[4569] = -51 +im[4569] = 0.1079 +ij[4569] = 9 +id[4570] = "2288-10-10T00:48:19" +ik[4570] = 1.185 +il[4570] = 143 +im[4570] = 0.145 +ij[4570] = 27.4 +id[4571] = "2288-10-22T23:10:13" +ik[4571] = 90 +il[4571] = -178 +im[4571] = 0.2225 +ij[4571] = 6 +id[4572] = "2288-12-12T10:03:11" +ik[4572] = 0 +il[4572] = -65 +im[4572] = 0.0975 +ij[4572] = 13 +id[4573] = "2288-12-16T03:32:32" +ik[4573] = 1.251 +il[4573] = -60 +im[4573] = 0.4129 +ij[4573] = 28.7 +id[4574] = "2289-01-03T04:39:21" +ik[4574] = 3.72 +il[4574] = -61 +im[4574] = 0.4258 +ij[4574] = 11 +id[4575] = "2289-01-13T20:42:28" +ik[4575] = 0.5433 +il[4575] = -50 +im[4575] = 0.5434 +ij[4575] = 2 +id[4576] = "2289-01-23T20:37:56" +ik[4576] = 42.44 +il[4576] = -39 +im[4576] = 0.3043 +ij[4576] = 7.1544 +id[4577] = "2289-02-23T06:52:07" +ik[4577] = 4.852 +il[4577] = 64 +im[4577] = 0.2564 +ij[4577] = 28.7 +id[4578] = "2289-02-24T13:16:39" +ik[4578] = 74.13 +il[4578] = 67 +im[4578] = 0.2639 +ij[4578] = 14 +id[4579] = "2289-03-15T18:42:12" +ik[4579] = 90 +il[4579] = 115 +im[4579] = 0.1499 +ij[4579] = 5 +id[4580] = "2289-03-19T06:28:46" +ik[4580] = 3.429 +il[4580] = 126 +im[4580] = 0.0044 +ij[4580] = 27.3 +id[4581] = "2289-04-08T16:17:13" +ik[4581] = 0.653 +il[4581] = -179 +im[4581] = 0.1601 +ij[4581] = 27.5 +id[4582] = "2289-04-25T12:16:07" +ik[4582] = 0.364 +il[4582] = -118 +im[4582] = 0.1475 +ij[4582] = 28.5 +id[4583] = "2289-05-25T13:51:03" +ik[4583] = 4.02 +il[4583] = -26 +im[4583] = 0.125 +ij[4583] = 27.6 +id[4584] = "2289-05-31T11:20:39" +ik[4584] = 54.31 +il[4584] = -8 +im[4584] = 0.0379 +ij[4584] = 8 +id[4585] = "2289-06-04T23:48:28" +ik[4585] = 0.139 +il[4585] = 6 +im[4585] = 0.0679 +ij[4585] = 28.8 +id[4586] = "2289-07-03T09:36:53" +ik[4586] = 5.847 +il[4586] = 93 +im[4586] = 0.0289 +ij[4586] = 27.2 +id[4587] = "2289-07-20T12:00:00" +ik[4587] = 0.069 +il[4587] = 145 +im[4587] = 0.0755 +ij[4587] = 27.91 +id[4588] = "2289-08-12T19:19:37" +ik[4588] = 1.121 +il[4588] = -144 +im[4588] = 0.0445 +ij[4588] = 28.1 +id[4589] = "2289-10-18T02:58:33" +ik[4589] = 1.15 +il[4589] = 47 +im[4589] = 0.0472 +ij[4589] = 12 +id[4590] = "2289-12-29T22:04:39" +ik[4590] = 0.77 +il[4590] = 78 +im[4590] = 0.0168 +ij[4590] = 28.7 +id[4591] = "2290-01-10T21:13:39" +ik[4591] = 0.269 +il[4591] = 114 +im[4591] = 0.0573 +ij[4591] = 27.3 +id[4592] = "2290-01-28T15:09:12" +ik[4592] = 1.156 +il[4592] = 169 +im[4592] = 0.0112 +ij[4592] = 27.5 +id[4593] = "2290-03-14T01:27:56" +ik[4593] = 2.08 +il[4593] = -52 +im[4593] = 0.0169 +ij[4593] = 27.6 +id[4594] = "2290-03-16T07:28:50" +ik[4594] = 1.272 +il[4594] = -45 +im[4594] = 0.0441 +ij[4594] = 28.5 +id[4595] = "2290-03-20T19:49:07" +ik[4595] = 54.103 +il[4595] = -31 +im[4595] = 0.1196 +ij[4595] = 9 +id[4596] = "2290-03-27T10:22:04" +ik[4596] = 2.453 +il[4596] = -10 +im[4596] = 0.0659 +ij[4596] = 28.8 +id[4597] = "2290-04-21T19:42:06" +ik[4597] = 2.445 +il[4597] = 69 +im[4597] = 0.1516 +ij[4597] = 27.2 +id[4598] = "2290-05-30T12:20:05" +ik[4598] = 90 +il[4598] = -172 +im[4598] = 0.0678 +ij[4598] = 6 +id[4599] = "2290-07-16T13:17:06" +ik[4599] = 0 +il[4599] = -71 +im[4599] = 0.4095 +ij[4599] = 13 +id[4600] = "2290-08-08T04:43:40" +ik[4600] = 7.15 +il[4600] = -45 +im[4600] = 0.2179 +ij[4600] = 11 +id[4601] = "2290-08-13T05:12:27" +ik[4601] = 0.5283 +il[4601] = -19 +im[4601] = 0.5283 +ij[4601] = 2 +id[4602] = "2290-08-30T15:22:41" +ik[4602] = 45.09 +il[4602] = 1 +im[4602] = 0.2077 +ij[4602] = 7.165 +id[4603] = "2290-08-31T07:33:53" +ik[4603] = 0.058 +il[4603] = 2 +im[4603] = 0.1493 +ij[4603] = 27.8 +id[4604] = "2290-10-02T15:25:27" +ik[4604] = 78.09 +il[4604] = 60 +im[4604] = 0.1235 +ij[4604] = 14 +id[4605] = "2290-10-17T21:16:07" +ik[4605] = 90 +il[4605] = 106 +im[4605] = 0.0911 +ij[4605] = 5 +id[4606] = "2290-11-06T12:49:49" +ik[4606] = 1.314 +il[4606] = 166 +im[4606] = 0.1827 +ij[4606] = 28.6 +id[4607] = "2291-01-01T12:14:01" +ik[4607] = 53.772 +il[4607] = -21 +im[4607] = 0.0728 +ij[4607] = 8 +id[4608] = "2291-01-09T11:15:25" +ik[4608] = 3.942 +il[4608] = 4 +im[4608] = 0.0827 +ij[4608] = 27.1 +id[4609] = "2291-02-14T19:42:23" +ik[4609] = 0.468 +il[4609] = 117 +im[4609] = 0.0574 +ij[4609] = 28.7 +id[4610] = "2291-02-22T20:25:26" +ik[4610] = 2.238 +il[4610] = 142 +im[4610] = 0.087 +ij[4610] = 28.1 +id[4611] = "2291-02-24T20:12:46" +ik[4611] = 0.823 +il[4611] = 149 +im[4611] = 0.0593 +ij[4611] = 27.3 +id[4612] = "2291-03-14T13:36:46" +ik[4612] = 0.695 +il[4612] = -157 +im[4612] = 0.0134 +ij[4612] = 27.5 +id[4613] = "2291-03-29T07:44:49" +ik[4613] = 3.21 +il[4613] = -111 +im[4613] = 0.017 +ij[4613] = 28.1 +id[4614] = "2291-04-27T11:10:52" +ik[4614] = 3.38 +il[4614] = -33 +im[4614] = 0.03 +ij[4614] = 27.6 +id[4615] = "2291-06-01T00:57:36" +ik[4615] = 0.21 +il[4615] = 61 +im[4615] = 0.056 +ij[4615] = 12 +id[4616] = "2291-08-26T16:50:18" +ik[4616] = 4.714 +il[4616] = 146 +im[4616] = 0.0101 +ij[4616] = 28.1 +id[4617] = "2291-09-11T11:18:48" +ik[4617] = 1.716 +il[4617] = -166 +im[4617] = 0.008 +ij[4617] = 28.6 +id[4618] = "2291-10-18T11:59:49" +ik[4618] = 53.889 +il[4618] = -54 +im[4618] = 0.1189 +ij[4618] = 9 +id[4619] = "2291-10-20T07:23:25" +ik[4619] = 2.884 +il[4619] = -49 +im[4619] = 0.113 +ij[4619] = 27.4 +id[4620] = "2291-11-24T17:09:53" +ik[4620] = 0.201 +il[4620] = 60 +im[4620] = 0.0339 +ij[4620] = 28.4 +id[4621] = "2291-12-13T04:16:01" +ik[4621] = 1.702 +il[4621] = 117 +im[4621] = 0.1136 +ij[4621] = 28.7 +id[4622] = "2291-12-17T06:58:05" +ik[4622] = 1 +il[4622] = 130 +im[4622] = 0.1864 +ij[4622] = 27.3 +id[4623] = "2292-01-07T08:54:32" +ik[4623] = 0.541 +il[4623] = -168 +im[4623] = 0.0639 +ij[4623] = 27.5 +id[4624] = "2292-01-07T13:54:44" +ik[4624] = 90 +il[4624] = -164 +im[4624] = 0.055 +ij[4624] = 6 +id[4625] = "2292-02-25T15:25:53" +ik[4625] = 0 +il[4625] = -57 +im[4625] = 0.3336 +ij[4625] = 13 +id[4626] = "2292-03-12T15:52:10" +ik[4626] = 0.549 +il[4626] = -38 +im[4626] = 0.549 +ij[4626] = 2 +id[4627] = "2292-03-18T01:40:48" +ik[4627] = 8.7 +il[4627] = -23 +im[4627] = 0.1833 +ij[4627] = 11 +id[4628] = "2292-04-07T19:35:28" +ik[4628] = 42.17 +il[4628] = -13 +im[4628] = 0.453 +ij[4628] = 7.1613 +id[4629] = "2292-05-10T18:17:12" +ik[4629] = 75.12 +il[4629] = 69 +im[4629] = 0.1776 +ij[4629] = 14 +id[4630] = "2292-05-27T21:17:53" +ik[4630] = 90 +il[4630] = 121 +im[4630] = 0.0164 +ij[4630] = 5 +id[4631] = "2292-06-03T08:38:54" +ik[4631] = 4.28 +il[4631] = 141 +im[4631] = 0.1964 +ij[4631] = 27.6 +id[4632] = "2292-06-21T06:00:00" +ik[4632] = 0.789 +il[4632] = -164 +im[4632] = 0.1418 +ij[4632] = 28.8 +id[4633] = "2292-07-25T11:20:49" +ik[4633] = 1.145 +il[4633] = -60 +im[4633] = 0.0289 +ij[4633] = 28.5 +id[4634] = "2292-08-08T12:53:10" +ik[4634] = 54.515 +il[4634] = -17 +im[4634] = 0.0628 +ij[4634] = 8 +id[4635] = "2292-10-04T19:09:59" +ik[4635] = 6.257 +il[4635] = 159 +im[4635] = 0.0825 +ij[4635] = 28.1 +id[4636] = "2292-11-02T16:59:31" +ik[4636] = 1.115 +il[4636] = -111 +im[4636] = 0.0841 +ij[4636] = 28.6 +id[4637] = "2292-12-31T11:22:33" +ik[4637] = 0.51 +il[4637] = 50 +im[4637] = 0.0848 +ij[4637] = 12 +id[4638] = "2293-02-11T22:53:39" +ik[4638] = 1.054 +il[4638] = -7 +im[4638] = 0.0618 +ij[4638] = 27.5 +id[4639] = "2293-03-27T18:02:54" +ik[4639] = 2.67 +il[4639] = 129 +im[4639] = 0.0588 +ij[4639] = 27.6 +id[4640] = "2293-04-14T21:33:41" +ik[4640] = 1.897 +il[4640] = -174 +im[4640] = 0.087 +ij[4640] = 28.8 +id[4641] = "2293-05-03T22:41:12" +ik[4641] = 3.525 +il[4641] = -115 +im[4641] = 0.1005 +ij[4641] = 27.2 +id[4642] = "2293-05-29T08:54:58" +ik[4642] = 54.629 +il[4642] = -35 +im[4642] = 0.1063 +ij[4642] = 9 +id[4643] = "2293-06-17T08:54:31" +ik[4643] = 1.329 +il[4643] = 23 +im[4643] = 0.1218 +ij[4643] = 28.5 +id[4644] = "2293-08-07T18:24:31" +ik[4644] = 90 +il[4644] = 180 +im[4644] = 0.0607 +ij[4644] = 6 +id[4645] = "2293-09-26T18:17:39" +ik[4645] = 0 +il[4645] = -71 +im[4645] = 0.4059 +ij[4645] = 13 +id[4646] = "2293-10-09T12:37:32" +ik[4646] = 0.5291 +il[4646] = -55 +im[4646] = 0.5291 +ij[4646] = 2 +id[4647] = "2293-10-19T06:21:36" +ik[4647] = 7.17 +il[4647] = -24 +im[4647] = 0.3328 +ij[4647] = 11 +id[4648] = "2293-11-08T19:43:22" +ik[4648] = 43.06 +il[4648] = -1 +im[4648] = 0.2903 +ij[4648] = 7.1574 +id[4649] = "2293-12-10T18:26:06" +ik[4649] = 75.01 +il[4649] = 62 +im[4649] = 0.009 +ij[4649] = 14 +id[4650] = "2293-12-15T18:26:21" +ik[4650] = 0.136 +il[4650] = 74 +im[4650] = 0.2233 +ij[4650] = 28.6 +id[4651] = "2293-12-28T22:57:50" +ik[4651] = 90 +il[4651] = 107 +im[4651] = 0.1794 +ij[4651] = 5 +id[4652] = "2294-01-19T22:38:58" +ik[4652] = 2.634 +il[4652] = 175 +im[4652] = 0.1103 +ij[4652] = 27.1 +id[4653] = "2294-03-04T03:23:02" +ik[4653] = 1.809 +il[4653] = -50 +im[4653] = 0.1273 +ij[4653] = 28.4 +id[4654] = "2294-03-10T03:38:32" +ik[4654] = 1.52 +il[4654] = -31 +im[4654] = 0.0092 +ij[4654] = 27.3 +id[4655] = "2294-03-10T22:01:03" +ik[4655] = 0.755 +il[4655] = -29 +im[4655] = 0.0229 +ij[4655] = 28.7 +id[4656] = "2294-03-17T18:16:46" +ik[4656] = 53.834 +il[4656] = -8 +im[4656] = 0.1136 +ij[4656] = 8 +id[4657] = "2294-03-28T07:46:05" +ik[4657] = 0.327 +il[4657] = 25 +im[4657] = 0.0787 +ij[4657] = 27.5 +id[4658] = "2294-04-30T16:15:53" +ik[4658] = 0.847 +il[4658] = 128 +im[4658] = 0.0973 +ij[4658] = 28.1 +id[4659] = "2294-05-11T21:15:54" +ik[4659] = 3.68 +il[4659] = 162 +im[4659] = 0.0607 +ij[4659] = 27.6 +id[4660] = "2294-05-23T11:14:29" +ik[4660] = 2.254 +il[4660] = -163 +im[4660] = 0.0141 +ij[4660] = 28.1 +id[4661] = "2294-05-31T02:07:26" +ik[4661] = 0.516 +il[4661] = -139 +im[4661] = 0.0884 +ij[4661] = 28.8 +id[4662] = "2294-06-18T15:26:12" +ik[4662] = 5.224 +il[4662] = -83 +im[4662] = 0.075 +ij[4662] = 27.2 +id[4663] = "2294-08-07T02:16:48" +ik[4663] = 1.16 +il[4663] = 47 +im[4663] = 0.0086 +ij[4663] = 12 +id[4664] = "2294-10-27T19:10:59" +ik[4664] = 2.218 +il[4664] = 115 +im[4664] = 0.0962 +ij[4664] = 28.6 +id[4665] = "2294-11-02T13:01:12" +ik[4665] = 3.716 +il[4665] = 132 +im[4665] = 0.0623 +ij[4665] = 27.4 +id[4666] = "2294-12-27T19:55:25" +ik[4666] = 0.628 +il[4666] = -59 +im[4666] = 0.1222 +ij[4666] = 27.3 +id[4667] = "2295-01-02T09:19:53" +ik[4667] = 53.566 +il[4667] = -41 +im[4667] = 0.0717 +ij[4667] = 9 +id[4668] = "2295-01-04T04:45:33" +ik[4668] = 1.047 +il[4668] = -36 +im[4668] = 0.0311 +ij[4668] = 28.7 +id[4669] = "2295-01-15T02:55:52" +ik[4669] = 1.172 +il[4669] = -2 +im[4669] = 0.1026 +ij[4669] = 27.5 +id[4670] = "2295-03-03T05:57:47" +ik[4670] = 0.66 +il[4670] = 146 +im[4670] = 0.0968 +ij[4670] = 27.6 +id[4671] = "2295-03-20T21:10:49" +ik[4671] = 90 +il[4671] = -159 +im[4671] = 0.028 +ij[4671] = 6 +id[4672] = "2295-03-29T20:33:56" +ik[4672] = 5.419 +il[4672] = -137 +im[4672] = 0.2172 +ij[4672] = 28.8 +id[4673] = "2295-04-28T05:18:32" +ik[4673] = 0.719 +il[4673] = -74 +im[4673] = 0.309 +ij[4673] = 27.2 +id[4674] = "2295-05-05T18:26:33" +ik[4674] = 0 +il[4674] = -61 +im[4674] = 0.2897 +ij[4674] = 13 +id[4675] = "2295-05-16T05:17:38" +ik[4675] = 0.392 +il[4675] = -47 +im[4675] = 0.0952 +ij[4675] = 27.2 +id[4676] = "2295-05-28T18:01:26" +ik[4676] = 1.77 +il[4676] = -25 +im[4676] = 0.1057 +ij[4676] = 11 +id[4677] = "2295-06-04T18:15:36" +ik[4677] = 0.5055 +il[4677] = -15 +im[4677] = 0.5055 +ij[4677] = 2 +id[4678] = "2295-06-18T01:34:45" +ik[4678] = 5.784 +il[4678] = -4 +im[4678] = 0.4188 +ij[4678] = 28.8 +id[4679] = "2295-06-18T01:39:38" +ik[4679] = 5.784 +il[4679] = 7 +im[4679] = 0.4189 +ij[4679] = 28.8 +id[4680] = "2295-06-19T02:10:18" +ik[4680] = 44.32 +il[4680] = 10 +im[4680] = 0.4159 +ij[4680] = 7.1653 +id[4681] = "2295-07-23T01:36:06" +ik[4681] = 78.3 +il[4681] = 77 +im[4681] = 0.0448 +ij[4681] = 14 +id[4682] = "2295-08-06T18:56:22" +ik[4682] = 90 +il[4682] = 116 +im[4682] = 0.0477 +ij[4682] = 5 +id[4683] = "2295-10-18T04:17:41" +ik[4683] = 54.23 +il[4683] = -24 +im[4683] = 0.0598 +ij[4683] = 8 +id[4684] = "2295-11-04T16:53:36" +ik[4684] = 0.064 +il[4684] = 30 +im[4684] = 0.0248 +ij[4684] = 28.5 +id[4685] = "2295-12-20T09:55:43" +ik[4685] = 0.8 +il[4685] = 173 +im[4685] = 0.007 +ij[4685] = 28.6 +id[4686] = "2295-12-26T11:43:25" +ik[4686] = 4.702 +il[4686] = -168 +im[4686] = 0.0874 +ij[4686] = 27.1 +id[4687] = "2296-02-10T00:26:05" +ik[4687] = 0.383 +il[4687] = -38 +im[4687] = 0.0886 +ij[4687] = 27.3 +id[4688] = "2296-03-18T13:14:52" +ik[4688] = 1.41 +il[4688] = 67 +im[4688] = 0.035 +ij[4688] = 12 +id[4689] = "2296-05-04T07:54:28" +ik[4689] = 1.529 +il[4689] = 25 +im[4689] = 0.0082 +ij[4689] = 28.8 +id[4690] = "2296-05-18T01:33:11" +ik[4690] = 4.189 +il[4690] = 68 +im[4690] = 0.0277 +ij[4690] = 27.2 +id[4691] = "2296-05-28T12:48:40" +ik[4691] = 2.889 +il[4691] = 101 +im[4691] = 0.086 +ij[4691] = 28.1 +id[4692] = "2296-06-04T17:58:50" +ik[4692] = 0.214 +il[4692] = 123 +im[4692] = 0.0226 +ij[4692] = 27.9 +id[4693] = "2296-06-15T09:01:17" +ik[4693] = 0.781 +il[4693] = 156 +im[4693] = 0.058 +ij[4693] = 28.1 +id[4694] = "2296-08-05T00:51:29" +ik[4694] = 54.531 +il[4694] = -48 +im[4694] = 0.0463 +ij[4694] = 9 +id[4695] = "2296-10-01T13:20:12" +ik[4695] = 3.127 +il[4695] = 127 +im[4695] = 0.0232 +ij[4695] = 28.5 +id[4696] = "2296-10-09T23:03:51" +ik[4696] = 1.09 +il[4696] = 152 +im[4696] = 0.1811 +ij[4696] = 27.4 +id[4697] = "2296-10-20T10:39:16" +ik[4697] = 90 +il[4697] = -175 +im[4697] = 0.1677 +ij[4697] = 6 +id[4698] = "2296-10-31T19:29:25" +ik[4698] = 5.228 +il[4698] = -144 +im[4698] = 0.0543 +ij[4698] = 28.6 +id[4699] = "2296-12-10T01:36:33" +ik[4699] = 0 +il[4699] = -63 +im[4699] = 0.2648 +ij[4699] = 13 +id[4700] = "2296-12-31T17:31:12" +ik[4700] = 3.34 +il[4700] = -38 +im[4700] = 0.5488 +ij[4700] = 11 +id[4701] = "2297-01-01T08:38:28" +ik[4701] = 0.5553 +il[4701] = -16 +im[4701] = 0.5554 +ij[4701] = 2 +id[4702] = "2297-01-21T09:48:10" +ik[4702] = 42.34 +il[4702] = 7 +im[4702] = 0.0568 +ij[4702] = 7.1545 +id[4703] = "2297-02-22T01:20:52" +ik[4703] = 73.99 +il[4703] = 69 +im[4703] = 0.1698 +ij[4703] = 14 +id[4704] = "2297-03-13T07:00:48" +ik[4704] = 90 +il[4704] = 117 +im[4704] = 0.216 +ij[4704] = 5 +id[4705] = "2297-03-19T05:38:58" +ik[4705] = 3.308 +il[4705] = 136 +im[4705] = 0.0521 +ij[4705] = 27.3 +id[4706] = "2297-04-01T17:44:35" +ik[4706] = 1.333 +il[4706] = 178 +im[4706] = 0.0928 +ij[4706] = 28.7 +id[4707] = "2297-04-08T11:01:38" +ik[4707] = 0.594 +il[4707] = -161 +im[4707] = 0.1194 +ij[4707] = 27.5 +id[4708] = "2297-05-25T05:01:42" +ik[4708] = 4.01 +il[4708] = -17 +im[4708] = 0.1218 +ij[4708] = 27.6 +id[4709] = "2297-05-29T03:17:17" +ik[4709] = 54.296 +il[4709] = -5 +im[4709] = 0.1105 +ij[4709] = 8 +id[4710] = "2297-06-19T04:46:07" +ik[4710] = 0.085 +il[4710] = 59 +im[4710] = 0.0327 +ij[4710] = 28.8 +id[4711] = "2297-07-02T23:23:32" +ik[4711] = 5.823 +il[4711] = 101 +im[4711] = 0.0153 +ij[4711] = 27.2 +id[4712] = "2297-07-12T16:07:06" +ik[4712] = 6.009 +il[4712] = 131 +im[4712] = 0.0839 +ij[4712] = 28.1 +id[4713] = "2297-07-20T01:22:04" +ik[4713] = 0.048 +il[4713] = 153 +im[4713] = 0.0401 +ij[4713] = 27.91 +id[4714] = "2297-10-15T17:25:26" +ik[4714] = 1.19 +il[4714] = 42 +im[4714] = 0.0229 +ij[4714] = 12 +id[4715] = "2297-12-06T05:57:59" +ik[4715] = 0.827 +il[4715] = 16 +im[4715] = 0.0831 +ij[4715] = 28.5 +id[4716] = "2297-12-14T13:42:05" +ik[4716] = 1.582 +il[4716] = 41 +im[4716] = 0.0333 +ij[4716] = 28.6 +id[4717] = "2298-01-10T10:41:38" +ik[4717] = 0.279 +il[4717] = 123 +im[4717] = 0.0833 +ij[4717] = 27.3 +id[4718] = "2298-01-13T00:05:36" +ik[4718] = 5.319 +il[4718] = 131 +im[4718] = 0.0455 +ij[4718] = 28.1 +id[4719] = "2298-01-28T04:53:38" +ik[4719] = 1.157 +il[4719] = 178 +im[4719] = 0.0411 +ij[4719] = 27.5 +id[4720] = "2298-01-28T15:43:12" +ik[4720] = 0.707 +il[4720] = 179 +im[4720] = 0.033 +ij[4720] = 28.7 +id[4721] = "2298-03-13T16:08:40" +ik[4721] = 2.05 +il[4721] = -43 +im[4721] = 0.0587 +ij[4721] = 27.6 +id[4722] = "2298-03-15T06:22:45" +ik[4722] = 1.077 +il[4722] = -38 +im[4722] = 0.0219 +ij[4722] = 28.4 +id[4723] = "2298-03-18T09:59:05" +ik[4723] = 54.079 +il[4723] = -28 +im[4723] = 0.0613 +ij[4723] = 9 +id[4724] = "2298-04-10T20:05:51" +ik[4724] = 3.259 +il[4724] = 45 +im[4724] = 0.1056 +ij[4724] = 28.8 +id[4725] = "2298-04-21T12:49:38" +ik[4725] = 2.394 +il[4725] = 78 +im[4725] = 0.1502 +ij[4725] = 27.2 +id[4726] = "2298-05-28T06:10:23" +ik[4726] = 90 +il[4726] = -168 +im[4726] = 0.0935 +ij[4726] = 6 +id[4727] = "2298-07-15T01:21:19" +ik[4727] = 0 +il[4727] = -67 +im[4727] = 0.2639 +ij[4727] = 13 +id[4728] = "2298-08-05T20:38:24" +ik[4728] = 6.95 +il[4728] = -33 +im[4728] = 0.2043 +ij[4728] = 11 +id[4729] = "2298-08-14T07:12:58" +ik[4729] = 0.5121 +il[4729] = -23 +im[4729] = 0.5121 +ij[4729] = 2 +id[4730] = "2298-08-16T21:43:46" +ik[4730] = 0.798 +il[4730] = -12 +im[4730] = 0.4274 +ij[4730] = 27.8 +id[4731] = "2298-08-28T02:25:53" +ik[4731] = 44.04 +il[4731] = -2 +im[4731] = 0.3957 +ij[4731] = 7.1655 +id[4732] = "2298-09-30T09:46:42" +ik[4732] = 77.35 +il[4732] = 70 +im[4732] = 0.0784 +ij[4732] = 14 +id[4733] = "2298-10-15T12:44:53" +ik[4733] = 90 +il[4733] = 108 +im[4733] = 0.0821 +ij[4733] = 5 +id[4734] = "2298-12-30T00:26:39" +ik[4734] = 53.782 +il[4734] = -19 +im[4734] = 0.0273 +ij[4734] = 8 +id[4735] = "2299-01-09T01:55:24" +ik[4735] = 3.975 +il[4735] = 13 +im[4735] = 0.1027 +ij[4735] = 27.1 +id[4736] = "2299-02-06T00:15:50" +ik[4736] = 0.08 +il[4736] = 100 +im[4736] = 0.0981 +ij[4736] = 28.6 +id[4737] = "2299-02-12T03:38:09" +ik[4737] = 0.364 +il[4737] = 119 +im[4737] = 0.0282 +ij[4737] = 28.5 +id[4738] = "2299-02-24T09:51:25" +ik[4738] = 0.807 +il[4738] = 157 +im[4738] = 0.0883 +ij[4738] = 27.3 +id[4739] = "2299-03-14T03:03:25" +ik[4739] = 0.703 +il[4739] = -148 +im[4739] = 0.0308 +ij[4739] = 27.5 +id[4740] = "2299-03-16T19:55:55" +ik[4740] = 0.368 +il[4740] = -140 +im[4740] = 0.0193 +ij[4740] = 28.7 +id[4741] = "2299-04-27T00:18:39" +ik[4741] = 3.37 +il[4741] = -25 +im[4741] = 0.0592 +ij[4741] = 27.6 +id[4742] = "2299-05-29T18:46:04" +ik[4742] = 0.26 +il[4742] = 64 +im[4742] = 0.0091 +ij[4742] = 12 +id[4743] = "2299-07-20T06:11:31" +ik[4743] = 1.131 +il[4743] = 40 +im[4743] = 0.0776 +ij[4743] = 28.1 +id[4744] = "2299-10-16T00:55:07" +ik[4744] = 53.912 +il[4744] = -52 +im[4744] = 0.0799 +ij[4744] = 9 +id[4745] = "2299-10-19T22:35:24" +ik[4745] = 2.849 +il[4745] = -40 +im[4745] = 0.125 +ij[4745] = 27.4 +id[4746] = "2299-12-14T04:00:28" +ik[4746] = 1.852 +il[4746] = 130 +im[4746] = 0.0984 +ij[4746] = 28.6 +id[4747] = "2299-12-17T02:57:38" +ik[4747] = 1.004 +il[4747] = 139 +im[4747] = 0.1743 +ij[4747] = 27.3 +id[4748] = "2300-01-05T02:02:43" +ik[4748] = 90 +il[4748] = -161 +im[4748] = 0.1917 +ij[4748] = 6 +id[4749] = "2300-01-07T11:31:51" +ik[4749] = 0.459 +il[4749] = -155 +im[4749] = 0.1237 +ij[4749] = 27.5 +id[4750] = "2300-01-09T04:56:52" +ik[4750] = 0.254 +il[4750] = -149 +im[4750] = 0.0506 +ij[4750] = 28.5 +id[4751] = "2300-01-18T10:33:36" +ik[4751] = 1.05 +il[4751] = -127 +im[4751] = 0.2703 +ij[4751] = 28.7 +id[4752] = "2300-02-22T09:47:09" +ik[4752] = 0 +il[4752] = -55 +im[4752] = 0.1007 +ij[4752] = 13 +id[4753] = "2300-03-14T21:21:23" +ik[4753] = 0.5525 +il[4753] = -32 +im[4753] = 0.5526 +ij[4753] = 2 +id[4754] = "2300-03-16T15:23:02" +ik[4754] = 8.76 +il[4754] = -9 +im[4754] = 0.5104 +ij[4754] = 11 +id[4755] = "2300-04-06T08:49:44" +ik[4755] = 42.96 +il[4755] = 14 +im[4755] = 0.2993 +ij[4755] = 7.1608 +id[4756] = "2300-05-09T06:01:31" +ik[4756] = 75.84 +il[4756] = 79 +im[4756] = 0.2732 +ij[4756] = 14 +id[4757] = "2300-05-26T12:19:14" +ik[4757] = 90 +il[4757] = 124 +im[4757] = 0.1488 +ij[4757] = 5 +id[4758] = "2300-06-04T07:36:41" +ik[4758] = 4.28 +il[4758] = 151 +im[4758] = 0.1599 +ij[4758] = 27.6 +id[4759] = "2300-06-30T05:29:02" +ik[4759] = 1.848 +il[4759] = -130 +im[4759] = 0.0259 +ij[4759] = 28.4 +id[4760] = "2300-07-07T16:39:47" +ik[4760] = 0.672 +il[4760] = -107 +im[4760] = 0.1442 +ij[4760] = 28.8 +id[4761] = "2300-08-07T05:57:21" +ik[4761] = 54.516 +il[4761] = -14 +im[4761] = 0.1138 +ij[4761] = 8 +id[4762] = "2300-12-29T22:06:14" +ik[4762] = 0.45 +il[4762] = 52 +im[4762] = 0.0513 +ij[4762] = 12 +id[4763] = "2301-02-12T12:06:31" +ik[4763] = 1.057 +il[4763] = 1 +im[4763] = 0.03 +ij[4763] = 27.5 +id[4764] = "2301-02-24T00:11:22" +ik[4764] = 0.557 +il[4764] = 37 +im[4764] = 0.0217 +ij[4764] = 28.7 +id[4765] = "2301-03-08T07:05:22" +ik[4765] = 0.219 +il[4765] = 75 +im[4765] = 0.077 +ij[4765] = 28.5 +id[4766] = "2301-03-09T01:31:35" +ik[4766] = 3.647 +il[4766] = 77 +im[4766] = 0.0678 +ij[4766] = 28.1 +id[4767] = "2301-03-16T15:36:51" +ik[4767] = 3.996 +il[4767] = 101 +im[4767] = 0.0631 +ij[4767] = 28.1 +id[4768] = "2301-03-28T07:29:35" +ik[4768] = 2.65 +il[4768] = 137 +im[4768] = 0.0206 +ij[4768] = 27.6 +id[4769] = "2301-04-29T17:38:24" +ik[4769] = 2.44 +il[4769] = -121 +im[4769] = 0.0623 +ij[4769] = 28.8 +id[4770] = "2301-05-04T12:48:44" +ik[4770] = 3.499 +il[4770] = -106 +im[4770] = 0.1085 +ij[4770] = 27.2 +id[4771] = "2301-05-28T02:52:29" +ik[4771] = 54.619 +il[4771] = -32 +im[4771] = 0.0293 +ij[4771] = 9 +id[4772] = "2301-08-06T09:32:56" +ik[4772] = 90 +il[4772] = -178 +im[4772] = 0.108 +ij[4772] = 6 +id[4773] = "2301-09-25T06:01:58" +ik[4773] = 0 +il[4773] = -69 +im[4773] = 0.2891 +ij[4773] = 13 +id[4774] = "2301-10-11T19:39:07" +ik[4774] = 0.5483 +il[4774] = -49 +im[4774] = 0.5484 +ij[4774] = 2 +id[4775] = "2301-10-17T19:45:07" +ik[4775] = 7.38 +il[4775] = -33 +im[4775] = 0.136 +ij[4775] = 11 +id[4776] = "2301-11-07T12:11:34" +ik[4776] = 43.26 +il[4776] = -23 +im[4776] = 0.4664 +ij[4776] = 7.1577 +id[4777] = "2301-12-09T09:45:23" +ik[4777] = 75.16 +il[4777] = 65 +im[4777] = 0.2042 +ij[4777] = 14 +id[4778] = "2301-12-27T12:17:28" +ik[4778] = 90 +il[4778] = 109 +im[4778] = 0.0287 +ij[4778] = 5 +id[4779] = "2302-01-20T18:08:17" +ik[4779] = 2.701 +il[4779] = -179 +im[4779] = 0.1444 +ij[4779] = 27.1 +id[4780] = "2302-03-10T18:41:38" +ik[4780] = 1.489 +il[4780] = -22 +im[4780] = 0.0471 +ij[4780] = 27.3 +id[4781] = "2302-03-16T06:32:57" +ik[4781] = 53.821 +il[4781] = -5 +im[4781] = 0.0895 +ij[4781] = 8 +id[4782] = "2302-03-25T23:34:30" +ik[4782] = 0.851 +il[4782] = 25 +im[4782] = 0.0322 +ij[4782] = 28.6 +id[4783] = "2302-03-28T22:12:44" +ik[4783] = 0.344 +il[4783] = 34 +im[4783] = 0.0344 +ij[4783] = 27.5 +id[4784] = "2302-04-12T01:09:59" +ik[4784] = 0.472 +il[4784] = 78 +im[4784] = 0.0179 +ij[4784] = 28.7 +id[4785] = "2302-04-13T21:35:42" +ik[4785] = 4.513 +il[4785] = 83 +im[4785] = 0.0574 +ij[4785] = 28.1 +id[4786] = "2302-05-12T10:51:36" +ik[4786] = 3.67 +il[4786] = 171 +im[4786] = 0.0262 +ij[4786] = 27.6 +id[4787] = "2302-05-13T01:57:04" +ik[4787] = 0.091 +il[4787] = 173 +im[4787] = 0.0384 +ij[4787] = 28.5 +id[4788] = "2302-06-14T20:44:00" +ik[4788] = 0.838 +il[4788] = -88 +im[4788] = 0.0743 +ij[4788] = 28.8 +id[4789] = "2302-06-19T04:31:58" +ik[4789] = 5.206 +il[4789] = -74 +im[4789] = 0.0908 +ij[4789] = 27.2 +id[4790] = "2302-08-05T20:25:26" +ik[4790] = 1.13 +il[4790] = 50 +im[4790] = 0.0586 +ij[4790] = 12 +id[4791] = "2302-09-17T08:41:08" +ik[4791] = 2.307 +il[4791] = -1 +im[4791] = 0.0855 +ij[4791] = 28.1 +id[4792] = "2302-10-29T15:25:37" +ik[4792] = 3.278 +il[4792] = 128 +im[4792] = 0.0933 +ij[4792] = 28.1 +id[4793] = "2302-11-03T02:44:44" +ik[4793] = 3.696 +il[4793] = 141 +im[4793] = 0.0903 +ij[4793] = 27.4 +id[4794] = "2302-12-28T10:37:11" +ik[4794] = 0.639 +il[4794] = -50 +im[4794] = 0.104 +ij[4794] = 27.3 +id[4795] = "2302-12-31T19:49:25" +ik[4795] = 53.562 +il[4795] = -39 +im[4795] = 0.1223 +ij[4795] = 9 +id[4796] = "2303-01-15T18:26:04" +ik[4796] = 1.166 +il[4796] = 7 +im[4796] = 0.1268 +ij[4796] = 27.5 +id[4797] = "2303-01-28T09:33:07" +ik[4797] = 0.878 +il[4797] = 47 +im[4797] = 0.1283 +ij[4797] = 28.6 +id[4798] = "2303-02-05T20:43:43" +ik[4798] = 0.24 +il[4798] = 73 +im[4798] = 0.0192 +ij[4798] = 28.7 +id[4799] = "2303-03-04T02:07:32" +ik[4799] = 0.57 +il[4799] = 155 +im[4799] = 0.1413 +ij[4799] = 27.6 +id[4800] = "2303-03-19T13:19:23" +ik[4800] = 90 +il[4800] = -156 +im[4800] = 0.1613 +ij[4800] = 6 +id[4801] = "2303-04-13T22:02:47" +ik[4801] = 5.425 +il[4801] = -97 +im[4801] = 0.3132 +ij[4801] = 28.5 +id[4802] = "2303-05-04T09:45:50" +ik[4802] = 0 +il[4802] = -108 +im[4802] = 0.0342 +ij[4802] = 13 +id[4803] = "2303-05-07T03:19:31" +ik[4803] = 0.923 +il[4803] = -54 +im[4803] = 0.2294 +ij[4803] = 27.2 +id[4804] = "2303-05-19T00:11:31" +ik[4804] = 5.726 +il[4804] = -40 +im[4804] = 0.0064 +ij[4804] = 28.8 +id[4805] = "2303-05-27T10:55:12" +ik[4805] = 2.1 +il[4805] = -41 +im[4805] = 0.4222 +ij[4805] = 11 +id[4806] = "2303-06-06T05:36:40" +ik[4806] = 0.931 +il[4806] = -30 +im[4806] = 0.494 +ij[4806] = 28.5 +id[4807] = "2303-06-06T21:15:27" +ik[4807] = 0.5001 +il[4807] = -20 +im[4807] = 0.5002 +ij[4807] = 2 +id[4808] = "2303-06-17T17:25:35" +ik[4808] = 44.32 +il[4808] = -10 +im[4808] = 0.3005 +ij[4808] = 7.1653 +id[4809] = "2303-06-22T19:57:56" +ik[4809] = 2.054 +il[4809] = 1 +im[4809] = 0.3354 +ij[4809] = 28.5 +id[4810] = "2303-06-23T06:24:11" +ik[4810] = 2.052 +il[4810] = 12 +im[4810] = 0.3141 +ij[4810] = 28.5 +id[4811] = "2303-07-17T22:45:07" +ik[4811] = 2.424 +il[4811] = 71 +im[4811] = 0.2409 +ij[4811] = 28.8 +id[4812] = "2303-07-21T17:03:19" +ik[4812] = 78.3 +il[4812] = 80 +im[4812] = 0.2014 +ij[4812] = 14 +id[4813] = "2303-08-05T11:40:19" +ik[4813] = 90 +il[4813] = 118 +im[4813] = 0.1874 +ij[4813] = 5 +id[4814] = "2303-10-16T19:35:13" +ik[4814] = 54.246 +il[4814] = -21 +im[4814] = 0.1134 +ij[4814] = 8 +id[4815] = "2303-12-27T01:12:17" +ik[4815] = 4.725 +il[4815] = -159 +im[4815] = 0.063 +ij[4815] = 27.1 +id[4816] = "2304-03-17T00:51:50" +ik[4816] = 1.42 +il[4816] = 69 +im[4816] = 0.0841 +ij[4816] = 12 +id[4817] = "2304-04-28T19:38:12" +ik[4817] = 3.758 +il[4817] = 14 +im[4817] = 0.0882 +ij[4817] = 28.1 +id[4818] = "2304-05-18T14:50:04" +ik[4818] = 4.17 +il[4818] = 76 +im[4818] = 0.0585 +ij[4818] = 27.2 +id[4819] = "2304-05-19T00:36:43" +ik[4819] = 1.93 +il[4819] = 78 +im[4819] = 0.0522 +ij[4819] = 28.8 +id[4820] = "2304-05-26T07:36:54" +ik[4820] = 0.332 +il[4820] = 101 +im[4820] = 0.0783 +ij[4820] = 28.1 +id[4821] = "2304-06-05T07:14:44" +ik[4821] = 0.233 +il[4821] = 132 +im[4821] = 0.022 +ij[4821] = 27.9 +id[4822] = "2304-06-05T15:09:18" +ik[4822] = 1.061 +il[4822] = 132 +im[4822] = 0.0164 +ij[4822] = 28.5 +id[4823] = "2304-08-03T18:09:54" +ik[4823] = 54.546 +il[4823] = -45 +im[4823] = 0.0446 +ij[4823] = 9 +id[4824] = "2304-09-09T09:48:47" +ik[4824] = 1.674 +il[4824] = 66 +im[4824] = 0.133 +ij[4824] = 28.4 +id[4825] = "2304-10-10T21:58:04" +ik[4825] = 0.991 +il[4825] = 162 +im[4825] = 0.1992 +ij[4825] = 27.4 +id[4826] = "2304-10-18T22:12:45" +ik[4826] = 90 +il[4826] = -173 +im[4826] = 0.0061 +ij[4826] = 6 +id[4827] = "2304-12-08T17:03:45" +ik[4827] = 0 +il[4827] = -60 +im[4827] = 0.4624 +ij[4827] = 13 +id[4828] = "2304-12-30T06:27:21" +ik[4828] = 2.96 +il[4828] = -61 +im[4828] = 0.3021 +ij[4828] = 11 +id[4829] = "2305-01-03T09:48:13" +ik[4829] = 0.5617 +il[4829] = -50 +im[4829] = 0.5617 +ij[4829] = 2 +id[4830] = "2305-01-19T21:29:23" +ik[4830] = 42.18 +il[4830] = -38 +im[4830] = 0.3814 +ij[4830] = 7.1545 +id[4831] = "2305-02-20T13:18:13" +ik[4831] = 73.84 +il[4831] = 60 +im[4831] = 0.0657 +ij[4831] = 14 +id[4832] = "2305-03-11T19:16:44" +ik[4832] = 90 +il[4832] = 119 +im[4832] = 0.1376 +ij[4832] = 5 +id[4833] = "2305-03-20T04:06:57" +ik[4833] = 3.196 +il[4833] = 145 +im[4833] = 0.1027 +ij[4833] = 27.3 +id[4834] = "2305-04-09T05:28:17" +ik[4834] = 0.539 +il[4834] = -152 +im[4834] = 0.0631 +ij[4834] = 27.5 +id[4835] = "2305-05-06T05:42:34" +ik[4835] = 0.722 +il[4835] = -68 +im[4835] = 0.0307 +ij[4835] = 28.7 +id[4836] = "2305-05-09T22:32:09" +ik[4836] = 0.879 +il[4836] = -57 +im[4836] = 0.0713 +ij[4836] = 28.6 +id[4837] = "2305-05-25T20:00:25" +ik[4837] = 4 +il[4837] = -8 +im[4837] = 0.0972 +ij[4837] = 27.6 +id[4838] = "2305-05-27T19:06:48" +ik[4838] = 54.281 +il[4838] = -2 +im[4838] = 0.1182 +ij[4838] = 8 +id[4839] = "2305-07-03T13:07:31" +ik[4839] = 5.801 +il[4839] = 110 +im[4839] = 0.0539 +ij[4839] = 27.2 +id[4840] = "2305-07-04T06:49:32" +ik[4840] = 0.364 +il[4840] = 112 +im[4840] = 0.0394 +ij[4840] = 28.8 +id[4841] = "2305-07-20T14:51:21" +ik[4841] = 0.026 +il[4841] = 162 +im[4841] = 0.0092 +ij[4841] = 27.91 +id[4842] = "2305-08-14T04:23:31" +ik[4842] = 0.067 +il[4842] = -123 +im[4842] = 0.0844 +ij[4842] = 28.5 +id[4843] = "2305-10-14T07:56:38" +ik[4843] = 1.22 +il[4843] = 45 +im[4843] = 0.0786 +ij[4843] = 12 +id[4844] = "2305-11-17T09:10:04" +ik[4844] = 4.284 +il[4844] = -24 +im[4844] = 0.0257 +ij[4844] = 27.4 +id[4845] = "2305-12-27T13:28:50" +ik[4845] = 0.811 +il[4845] = 87 +im[4845] = 0.0879 +ij[4845] = 28.1 +id[4846] = "2306-01-11T00:13:11" +ik[4846] = 0.288 +il[4846] = 132 +im[4846] = 0.0934 +ij[4846] = 27.3 +id[4847] = "2306-01-28T18:38:04" +ik[4847] = 1.158 +il[4847] = -174 +im[4847] = 0.0781 +ij[4847] = 27.5 +id[4848] = "2306-03-01T11:41:16" +ik[4848] = 0.123 +il[4848] = -75 +im[4848] = 0.065 +ij[4848] = 28.7 +id[4849] = "2306-03-12T23:51:47" +ik[4849] = 2.364 +il[4849] = -39 +im[4849] = 0.1067 +ij[4849] = 28.6 +id[4850] = "2306-03-14T06:46:32" +ik[4850] = 2.02 +il[4850] = -35 +im[4850] = 0.093 +ij[4850] = 27.6 +id[4851] = "2306-03-16T23:58:23" +ik[4851] = 54.055 +il[4851] = -26 +im[4851] = 0.0402 +ij[4851] = 9 +id[4852] = "2306-04-22T06:10:04" +ik[4852] = 2.341 +il[4852] = 87 +im[4852] = 0.1225 +ij[4852] = 27.2 +id[4853] = "2306-04-26T20:09:10" +ik[4853] = 3.841 +il[4853] = 102 +im[4853] = 0.156 +ij[4853] = 28.8 +id[4854] = "2306-05-27T00:05:05" +ik[4854] = 90 +il[4854] = -165 +im[4854] = 0.1971 +ij[4854] = 6 +id[4855] = "2306-07-13T13:18:40" +ik[4855] = 0 +il[4855] = -64 +im[4855] = 0.0856 +ij[4855] = 13 +id[4856] = "2306-08-03T04:03:51" +ik[4856] = 0.5086 +il[4856] = -41 +im[4856] = 0.5087 +ij[4856] = 2 +id[4857] = "2306-08-04T12:34:33" +ik[4857] = 6.75 +il[4857] = -40 +im[4857] = 0.4824 +ij[4857] = 11 +id[4858] = "2306-08-11T02:35:48" +ik[4858] = 0.532 +il[4858] = -12 +im[4858] = 0.1593 +ij[4858] = 27.8 +id[4859] = "2306-08-26T13:24:14" +ik[4859] = 44 +il[4859] = -2 +im[4859] = 0.2925 +ij[4859] = 7.1656 +id[4860] = "2306-09-29T03:04:58" +ik[4860] = 77.57 +il[4860] = 66 +im[4860] = 0.23 +ij[4860] = 14 +id[4861] = "2306-10-14T04:18:57" +ik[4861] = 90 +il[4861] = 111 +im[4861] = 0.197 +ij[4861] = 5 +id[4862] = "2306-10-18T05:22:16" +ik[4862] = 1.614 +il[4862] = 123 +im[4862] = 0.0578 +ij[4862] = 28.5 +id[4863] = "2306-12-28T12:42:50" +ik[4863] = 53.792 +il[4863] = -16 +im[4863] = 0.1111 +ij[4863] = 8 +id[4864] = "2307-01-07T10:18:07" +ik[4864] = 1.519 +il[4864] = 14 +im[4864] = 0.0942 +ij[4864] = 28.4 +id[4865] = "2307-01-09T16:27:50" +ik[4865] = 4.007 +il[4865] = 21 +im[4865] = 0.1085 +ij[4865] = 27.1 +id[4866] = "2307-02-24T23:26:30" +ik[4866] = 0.791 +il[4866] = 166 +im[4866] = 0.0995 +ij[4866] = 27.3 +id[4867] = "2307-03-14T16:26:30" +ik[4867] = 0.711 +il[4867] = -139 +im[4867] = 0.0651 +ij[4867] = 27.5 +id[4868] = "2307-04-17T12:32:58" +ik[4868] = 0.665 +il[4868] = -36 +im[4868] = 0.0141 +ij[4868] = 28.7 +id[4869] = "2307-04-18T14:55:32" +ik[4869] = 1.256 +il[4869] = -32 +im[4869] = 0.0132 +ij[4869] = 28.1 +id[4870] = "2307-05-28T12:28:48" +ik[4870] = 0.32 +il[4870] = 67 +im[4870] = 0.0662 +ij[4870] = 12 +id[4871] = "2307-08-06T20:47:11" +ik[4871] = 3.749 +il[4871] = 102 +im[4871] = 0.0847 +ij[4871] = 28.1 +id[4872] = "2307-09-16T08:59:51" +ik[4872] = 0.85 +il[4872] = -135 +im[4872] = 0.0276 +ij[4872] = 28.5 +id[4873] = "2307-10-14T14:04:38" +ik[4873] = 53.935 +il[4873] = -49 +im[4873] = 0.0155 +ij[4873] = 9 +id[4874] = "2307-10-20T13:54:30" +ik[4874] = 2.814 +il[4874] = -31 +im[4874] = 0.116 +ij[4874] = 27.4 +id[4875] = "2307-12-17T23:22:30" +ik[4875] = 1.008 +il[4875] = 149 +im[4875] = 0.1357 +ij[4875] = 27.3 +id[4876] = "2308-01-03T14:05:23" +ik[4876] = 90 +il[4876] = -159 +im[4876] = 0.1903 +ij[4876] = 6 +id[4877] = "2308-01-08T15:30:04" +ik[4877] = 0.366 +il[4877] = -144 +im[4877] = 0.1795 +ij[4877] = 27.5 +id[4878] = "2308-02-21T03:05:25" +ik[4878] = 0 +il[4878] = -53 +im[4878] = 0.3538 +ij[4878] = 13 +id[4879] = "2308-03-14T04:55:12" +ik[4879] = 8.81 +il[4879] = -18 +im[4879] = 0.4972 +ij[4879] = 11 +id[4880] = "2308-03-16T01:14:44" +ik[4880] = 0.544 +il[4880] = -8 +im[4880] = 0.5441 +ij[4880] = 2 +id[4881] = "2308-04-04T04:12:00" +ik[4881] = 43.05 +il[4881] = 3 +im[4881] = 0.0255 +ij[4881] = 7.1605 +id[4882] = "2308-05-06T18:28:46" +ik[4882] = 75.64 +il[4882] = 73 +im[4882] = 0.1938 +ij[4882] = 14 +id[4883] = "2308-05-24T03:14:23" +ik[4883] = 90 +il[4883] = 126 +im[4883] = 0.2022 +ij[4883] = 5 +id[4884] = "2308-05-26T13:45:41" +ik[4884] = 1.079 +il[4884] = 134 +im[4884] = 0.1838 +ij[4884] = 28.7 +id[4885] = "2308-06-04T05:47:27" +ik[4885] = 4.29 +il[4885] = 161 +im[4885] = 0.1055 +ij[4885] = 27.6 +id[4886] = "2308-06-20T23:50:47" +ik[4886] = 0.068 +il[4886] = -148 +im[4886] = 0.1378 +ij[4886] = 28.6 +id[4887] = "2308-07-22T14:29:02" +ik[4887] = 0.377 +il[4887] = -51 +im[4887] = 0.1292 +ij[4887] = 28.8 +id[4888] = "2308-08-04T23:05:06" +ik[4888] = 54.516 +il[4888] = -11 +im[4888] = 0.0939 +ij[4888] = 8 +id[4889] = "2308-12-27T08:58:33" +ik[4889] = 0.39 +il[4889] = 54 +im[4889] = 0.0211 +ij[4889] = 12 +id[4890] = "2309-02-03T05:08:35" +ik[4890] = 1.849 +il[4890] = -6 +im[4890] = 0.0894 +ij[4890] = 28.1 +id[4891] = "2309-02-12T01:18:30" +ik[4891] = 1.06 +il[4891] = 17 +im[4891] = 0.0119 +ij[4891] = 27.5 +id[4892] = "2309-02-26T14:21:07" +ik[4892] = 3.557 +il[4892] = 55 +im[4892] = 0.0104 +ij[4892] = 28.1 +id[4893] = "2309-03-26T12:51:24" +ik[4893] = 0.014 +il[4893] = 142 +im[4893] = 0.0467 +ij[4893] = 28.7 +id[4894] = "2309-03-27T20:58:23" +ik[4894] = 2.64 +il[4894] = 146 +im[4894] = 0.0239 +ij[4894] = 27.6 +id[4895] = "2309-04-24T12:17:25" +ik[4895] = 2.576 +il[4895] = -127 +im[4895] = 0.0725 +ij[4895] = 28.6 +id[4896] = "2309-05-04T02:58:30" +ik[4896] = 3.472 +il[4896] = -97 +im[4896] = 0.0961 +ij[4896] = 27.2 +id[4897] = "2309-05-13T19:34:45" +ik[4897] = 2.789 +il[4897] = -67 +im[4897] = 0.0157 +ij[4897] = 28.8 +id[4898] = "2309-05-25T20:46:27" +ik[4898] = 54.609 +il[4898] = -29 +im[4898] = 0.0642 +ij[4898] = 9 +id[4899] = "2309-08-04T00:45:47" +ik[4899] = 90 +il[4899] = -175 +im[4899] = 0.1954 +ij[4899] = 6 +id[4900] = "2309-09-22T18:29:13" +ik[4900] = 0 +il[4900] = -66 +im[4900] = 0.036 +ij[4900] = 13 +id[4901] = "2309-10-12T21:31:54" +ik[4901] = 0.554 +il[4901] = -43 +im[4901] = 0.5541 +ij[4901] = 2 +id[4902] = "2309-10-15T09:15:50" +ik[4902] = 7.57 +il[4902] = -19 +im[4902] = 0.4662 +ij[4902] = 11 +id[4903] = "2309-11-04T23:34:55" +ik[4903] = 43.21 +il[4903] = 4 +im[4903] = 0.3455 +ij[4903] = 7.158 +id[4904] = "2309-12-07T01:36:41" +ik[4904] = 75.3 +il[4904] = 67 +im[4904] = 0.2888 +ij[4904] = 14 +id[4905] = "2309-12-25T01:40:38" +ik[4905] = 90 +il[4905] = 111 +im[4905] = 0.1441 +ij[4905] = 5 +id[4906] = "2310-01-20T13:19:23" +ik[4906] = 2.766 +il[4906] = -166 +im[4906] = 0.1626 +ij[4906] = 27.1 +id[4907] = "2310-01-31T05:06:00" +ik[4907] = 1.7 +il[4907] = -133 +im[4907] = 0.1012 +ij[4907] = 28.5 +id[4908] = "2310-03-10T09:41:37" +ik[4908] = 1.458 +il[4908] = -14 +im[4908] = 0.0825 +ij[4908] = 27.3 +id[4909] = "2310-03-13T18:45:35" +ik[4909] = 53.81 +il[4909] = -3 +im[4909] = 0.0097 +ij[4909] = 8 +id[4910] = "2310-03-28T12:35:23" +ik[4910] = 0.361 +il[4910] = 43 +im[4910] = 0.0207 +ij[4910] = 27.5 +id[4911] = "2310-05-12T00:25:24" +ik[4911] = 3.66 +il[4911] = 179 +im[4911] = 0.0151 +ij[4911] = 27.6 +id[4912] = "2310-05-13T03:11:05" +ik[4912] = 0.914 +il[4912] = -179 +im[4912] = 0.0113 +ij[4912] = 28.7 +id[4913] = "2310-06-15T21:16:07" +ik[4913] = 1.043 +il[4913] = -75 +im[4913] = 0.064 +ij[4913] = 28.6 +id[4914] = "2310-06-18T17:34:37" +ik[4914] = 5.188 +il[4914] = -66 +im[4914] = 0.0883 +ij[4914] = 27.2 +id[4915] = "2310-06-28T15:40:27" +ik[4915] = 1.104 +il[4915] = -36 +im[4915] = 0.0222 +ij[4915] = 28.8 +id[4916] = "2310-06-28T17:19:58" +ik[4916] = 2.301 +il[4916] = -36 +im[4916] = 0.0235 +ij[4916] = 28.1 +id[4917] = "2310-08-03T14:36:57" +ik[4917] = 1.09 +il[4917] = 53 +im[4917] = 0.0859 +ij[4917] = 12 +id[4918] = "2310-10-10T10:32:26" +ik[4918] = 3.307 +il[4918] = 79 +im[4918] = 0.0144 +ij[4918] = 28.1 +id[4919] = "2310-11-02T16:28:43" +ik[4919] = 3.675 +il[4919] = 150 +im[4919] = 0.1016 +ij[4919] = 27.4 +id[4920] = "2310-12-25T03:04:45" +ik[4920] = 1.149 +il[4920] = -50 +im[4920] = 0.0151 +ij[4920] = 28.5 +id[4921] = "2310-12-28T01:22:57" +ik[4921] = 0.649 +il[4921] = -41 +im[4921] = 0.067 +ij[4921] = 27.3 +id[4922] = "2310-12-29T06:15:23" +ik[4922] = 53.56 +il[4922] = -37 +im[4922] = 0.0885 +ij[4922] = 9 +id[4923] = "2311-01-15T10:02:57" +ik[4923] = 1.16 +il[4923] = 16 +im[4923] = 0.1323 +ij[4923] = 27.5 +id[4924] = "2311-01-23T10:32:46" +ik[4924] = 1.128 +il[4924] = 41 +im[4924] = 0.0319 +ij[4924] = 28.4 +id[4925] = "2311-03-03T22:52:23" +ik[4925] = 0.48 +il[4925] = 165 +im[4925] = 0.17 +ij[4925] = 27.6 +id[4926] = "2311-03-11T23:30:46" +ik[4926] = 2.766 +il[4926] = -170 +im[4926] = 0.107 +ij[4926] = 28.7 +id[4927] = "2311-03-17T05:18:13" +ik[4927] = 90 +il[4927] = -154 +im[4927] = 0.2267 +ij[4927] = 6 +id[4928] = "2311-05-02T01:37:08" +ik[4928] = 0 +il[4928] = -56 +im[4928] = 0.3192 +ij[4928] = 13 +id[4929] = "2311-05-03T21:02:11" +ik[4929] = 3.081 +il[4929] = -53 +im[4929] = 0.2005 +ij[4929] = 27.2 +id[4930] = "2311-05-13T08:09:19" +ik[4930] = 0.5031 +il[4930] = -41 +im[4930] = 0.5031 +ij[4930] = 2 +id[4931] = "2311-05-25T03:46:04" +ik[4931] = 2.42 +il[4931] = -20 +im[4931] = 0.4762 +ij[4931] = 11 +id[4932] = "2311-06-15T09:50:44" +ik[4932] = 44.34 +il[4932] = -10 +im[4932] = 0.0202 +ij[4932] = 7.1652 +id[4933] = "2311-07-19T08:26:27" +ik[4933] = 78.28 +il[4933] = 82 +im[4933] = 0.2254 +ij[4933] = 14 +id[4934] = "2311-07-29T23:00:57" +ik[4934] = 2.096 +il[4934] = 109 +im[4934] = 0.1088 +ij[4934] = 28.6 +id[4935] = "2311-08-03T04:25:09" +ik[4935] = 90 +il[4935] = 121 +im[4935] = 0.2124 +ij[4935] = 5 +id[4936] = "2311-08-06T19:07:06" +ik[4936] = 1.963 +il[4936] = 132 +im[4936] = 0.1886 +ij[4936] = 28.8 +id[4937] = "2311-10-14T10:59:51" +ik[4937] = 54.261 +il[4937] = -18 +im[4937] = 0.0909 +ij[4937] = 8 +id[4938] = "2311-12-26T14:37:36" +ik[4938] = 4.748 +il[4938] = -151 +im[4938] = 0.0276 +ij[4938] = 27.1 +id[4939] = "2312-01-23T02:26:26" +ik[4939] = 2.709 +il[4939] = -65 +im[4939] = 0.0253 +ij[4939] = 28.1 +id[4940] = "2312-03-14T12:14:24" +ik[4940] = 1.43 +il[4940] = 71 +im[4940] = 0.0753 +ij[4940] = 12 +id[4941] = "2312-04-21T01:36:20" +ik[4941] = 0.141 +il[4941] = 11 +im[4941] = 0.041 +ij[4941] = 28.7 +id[4942] = "2312-05-03T10:39:04" +ik[4942] = 1.439 +il[4942] = 39 +im[4942] = 0.0797 +ij[4942] = 28.1 +id[4943] = "2312-05-18T04:06:56" +ik[4943] = 4.151 +il[4943] = 85 +im[4943] = 0.0794 +ij[4943] = 27.2 +id[4944] = "2312-06-01T20:12:46" +ik[4944] = 2.166 +il[4944] = 131 +im[4944] = 0.0924 +ij[4944] = 28.8 +id[4945] = "2312-06-04T20:43:43" +ik[4945] = 0.251 +il[4945] = 140 +im[4945] = 0.0595 +ij[4945] = 27.9 +id[4946] = "2312-06-05T09:27:30" +ik[4946] = 1.876 +il[4946] = 142 +im[4946] = 0.0512 +ij[4946] = 28.6 +id[4947] = "2312-08-01T11:31:52" +ik[4947] = 54.559 +il[4947] = -42 +im[4947] = 0.1111 +ij[4947] = 9 +id[4948] = "2312-10-10T21:35:23" +ik[4948] = 0.886 +il[4948] = 172 +im[4948] = 0.1976 +ij[4948] = 27.4 +id[4949] = "2312-10-16T09:50:39" +ik[4949] = 90 +il[4949] = -171 +im[4949] = 0.1671 +ij[4949] = 6 +id[4950] = "2312-12-06T08:26:54" +ik[4950] = 0 +il[4950] = -58 +im[4950] = 0.3862 +ij[4950] = 13 +id[4951] = "2312-12-27T19:23:31" +ik[4951] = 2.57 +il[4951] = -33 +im[4951] = 0.1706 +ij[4951] = 11 +id[4952] = "2313-01-04T12:19:42" +ik[4952] = 0.5588 +il[4952] = -5 +im[4952] = 0.5589 +ij[4952] = 2 +id[4953] = "2313-01-17T12:36:30" +ik[4953] = 42.17 +il[4953] = 11 +im[4953] = 0.4324 +ij[4953] = 7.1544 +id[4954] = "2313-02-18T01:29:14" +ik[4954] = 73.71 +il[4954] = 74 +im[4954] = 0.2286 +ij[4954] = 14 +id[4955] = "2313-03-09T07:30:01" +ik[4955] = 90 +il[4955] = 121 +im[4955] = 0.0401 +ij[4955] = 5 +id[4956] = "2313-03-20T01:52:16" +ik[4956] = 3.091 +il[4956] = 155 +im[4956] = 0.141 +ij[4956] = 27.3 +id[4957] = "2313-04-08T23:36:43" +ik[4957] = 0.486 +il[4957] = -143 +im[4957] = 0.0078 +ij[4957] = 27.5 +id[4958] = "2313-04-30T10:46:59" +ik[4958] = 0.286 +il[4958] = -76 +im[4958] = 0.1428 +ij[4958] = 28.4 +id[4959] = "2313-05-02T22:56:47" +ik[4959] = 0.067 +il[4959] = -69 +im[4959] = 0.1317 +ij[4959] = 28.5 +id[4960] = "2313-05-25T10:52:46" +ik[4960] = 54.266 +il[4960] = 1 +im[4960] = 0.0544 +ij[4960] = 8 +id[4961] = "2313-05-25T11:02:21" +ik[4961] = 3.99 +il[4961] = 1 +im[4961] = 0.0546 +ij[4961] = 27.6 +id[4962] = "2313-06-07T03:48:57" +ik[4962] = 1.339 +il[4962] = 40 +im[4962] = 0.0107 +ij[4962] = 28.7 +id[4963] = "2313-07-03T02:50:11" +ik[4963] = 5.777 +il[4963] = 119 +im[4963] = 0.0807 +ij[4963] = 27.2 +id[4964] = "2313-07-18T06:46:30" +ik[4964] = 0.627 +il[4964] = 165 +im[4964] = 0.0738 +ij[4964] = 28.8 +id[4965] = "2313-07-20T04:13:26" +ik[4965] = 0.004 +il[4965] = 170 +im[4965] = 0.046 +ij[4965] = 27.91 +id[4966] = "2313-07-27T22:26:15" +ik[4966] = 0.307 +il[4966] = -166 +im[4966] = 0.0808 +ij[4966] = 28.6 +id[4967] = "2313-09-04T13:23:48" +ik[4967] = 2.769 +il[4967] = -47 +im[4967] = 0.013 +ij[4967] = 28.1 +id[4968] = "2313-10-11T22:39:21" +ik[4968] = 1.25 +il[4968] = -48 +im[4968] = 0.085 +ij[4968] = 12 +id[4969] = "2313-11-16T22:26:03" +ik[4969] = 4.268 +il[4969] = -25 +im[4969] = 0.0567 +ij[4969] = 27.4 +id[4970] = "2313-12-08T22:22:13" +ik[4970] = 0.132 +il[4970] = 42 +im[4970] = 0.0596 +ij[4970] = 28.1 +id[4971] = "2314-01-10T13:47:50" +ik[4971] = 0.297 +il[4971] = 140 +im[4971] = 0.0871 +ij[4971] = 27.3 +id[4972] = "2314-01-28T08:21:36" +ik[4972] = 1.158 +il[4972] = -165 +im[4972] = 0.1015 +ij[4972] = 27.5 +id[4973] = "2314-03-13T21:35:13" +ik[4973] = 1.99 +il[4973] = -26 +im[4973] = 0.1132 +ij[4973] = 27.6 +id[4974] = "2314-03-14T13:50:34" +ik[4974] = 54.031 +il[4974] = -24 +im[4974] = 0.1092 +ij[4974] = 9 +id[4975] = "2314-03-23T05:09:27" +ik[4975] = 1.644 +il[4975] = 3 +im[4975] = 0.0711 +ij[4975] = 28.5 +id[4976] = "2314-04-01T15:33:41" +ik[4976] = 1.473 +il[4976] = 33 +im[4976] = 0.0861 +ij[4976] = 28.7 +id[4977] = "2314-04-21T23:44:43" +ik[4977] = 2.286 +il[4977] = 96 +im[4977] = 0.0747 +ij[4977] = 27.2 +id[4978] = "2314-05-12T20:45:01" +ik[4978] = 4.035 +il[4978] = 161 +im[4978] = 0.1801 +ij[4978] = 28.8 +id[4979] = "2314-05-24T17:57:09" +ik[4979] = 90 +il[4979] = -162 +im[4979] = 0.1792 +ij[4979] = 6 +id[4980] = "2314-06-06T14:11:02" +ik[4980] = 2.494 +il[4980] = -131 +im[4980] = 0.1846 +ij[4980] = 28.6 +id[4981] = "2314-07-11T01:29:41" +ik[4981] = 0 +il[4981] = -62 +im[4981] = 0.3678 +ij[4981] = 13 +id[4982] = "2314-08-02T04:40:48" +ik[4982] = 6.54 +il[4982] = -27 +im[4982] = 0.4641 +ij[4982] = 11 +id[4983] = "2314-08-04T03:36:12" +ik[4983] = 0.519 +il[4983] = -17 +im[4983] = 0.519 +ij[4983] = 2 +id[4984] = "2314-08-04T21:52:33" +ik[4984] = 0.029 +il[4984] = -13 +im[4984] = 0.5108 +ij[4984] = 27.8 +id[4985] = "2314-08-24T04:59:24" +ik[4985] = 44.15 +il[4985] = -3 +im[4985] = 0.0294 +ij[4985] = 7.1656 +id[4986] = "2314-09-26T20:08:10" +ik[4986] = 77.78 +il[4986] = 76 +im[4986] = 0.2378 +ij[4986] = 14 +id[4987] = "2314-10-11T19:56:33" +ik[4987] = 90 +il[4987] = 114 +im[4987] = 0.1881 +ij[4987] = 5 +id[4988] = "2314-12-26T01:06:08" +ik[4988] = 53.803 +il[4988] = -14 +im[4988] = 0.1212 +ij[4988] = 8 +id[4989] = "2315-01-09T07:00:16" +ik[4989] = 4.039 +il[4989] = 30 +im[4989] = 0.098 +ij[4989] = 27.1 +id[4990] = "2315-02-24T13:01:09" +ik[4990] = 0.775 +il[4990] = 174 +im[4990] = 0.0922 +ij[4990] = 27.3 +id[4991] = "2315-03-14T05:49:09" +ik[4991] = 0.719 +il[4991] = -131 +im[4991] = 0.0888 +ij[4991] = 27.5 +id[4992] = "2315-05-26T06:05:45" +ik[4992] = 0.37 +il[4992] = 69 +im[4992] = 0.0804 +ij[4992] = 12 +id[4993] = "2315-07-14T15:21:27" +ik[4993] = 2.752 +il[4993] = 40 +im[4993] = 0.0727 +ij[4993] = 28.1 +id[4994] = "2315-07-18T10:05:05" +ik[4994] = 0.706 +il[4994] = 52 +im[4994] = 0.011 +ij[4994] = 28.6 +id[4995] = "2315-10-12T03:21:16" +ik[4995] = 53.958 +il[4995] = -47 +im[4995] = 0.0971 +ij[4995] = 9 +id[4996] = "2315-10-20T05:17:36" +ik[4996] = 2.777 +il[4996] = -22 +im[4996] = 0.0857 +ij[4996] = 27.4 +id[4997] = "2315-12-17T20:18:03" +ik[4997] = 1.009 +il[4997] = 158 +im[4997] = 0.0718 +ij[4997] = 27.3 +id[4998] = "2316-01-01T02:03:38" +ik[4998] = 90 +il[4998] = -157 +im[4998] = 0.0544 +ij[4998] = 6 +id[4999] = "2316-01-08T21:00:16" +ik[4999] = 0.258 +il[4999] = -135 +im[4999] = 0.2249 +ij[4999] = 27.5 +id[5000] = "2316-02-18T20:08:37" +ik[5000] = 0 +il[5000] = -50 +im[5000] = 0.4234 +ij[5000] = 13 +id[5001] = "2316-03-11T18:20:09" +ik[5001] = 8.84 +il[5001] = -4 +im[5001] = 0.2091 +ij[5001] = 11 +id[5002] = "2316-03-17T00:17:05" +ik[5002] = 0.5267 +il[5002] = 1 +im[5002] = 0.5268 +ij[5002] = 2 +id[5003] = "2316-04-01T19:13:12" +ik[5003] = 42.96 +il[5003] = 20 +im[5003] = 0.3327 +ij[5003] = 7.1603 +id[5004] = "2316-05-04T07:15:57" +ik[5004] = 75.46 +il[5004] = 84 +im[5004] = 0.0219 +ij[5004] = 14 +id[5005] = "2316-05-21T17:58:55" +ik[5005] = 90 +il[5005] = 129 +im[5005] = 0.1161 +ij[5005] = 5 +id[5006] = "2316-06-04T03:21:06" +ik[5006] = 4.29 +il[5006] = 170 +im[5006] = 0.0371 +ij[5006] = 27.6 +id[5007] = "2316-06-30T14:39:33" +ik[5007] = 2.082 +il[5007] = -109 +im[5007] = 0.0719 +ij[5007] = 28.7 +id[5008] = "2316-08-02T03:15:24" +ik[5008] = 0.929 +il[5008] = -10 +im[5008] = 0.0026 +ij[5008] = 28.5 +id[5009] = "2316-08-02T16:12:51" +ik[5009] = 54.516 +il[5009] = -8 +im[5009] = 0.0131 +ij[5009] = 8 +id[5010] = "2316-08-06T03:51:07" +ik[5010] = 0.039 +il[5010] = 3 +im[5010] = 0.0868 +ij[5010] = 28.8 +id[5011] = "2316-09-08T00:10:56" +ik[5011] = 0.497 +il[5011] = 103 +im[5011] = 0.0972 +ij[5011] = 28.6 +id[5012] = "2316-11-04T01:55:03" +ik[5012] = 0.267 +il[5012] = -80 +im[5012] = 0.0713 +ij[5012] = 28.1 +id[5013] = "2316-12-24T19:59:31" +ik[5013] = 0.32 +il[5013] = 56 +im[5013] = 0.0757 +ij[5013] = 12 +id[5014] = "2317-02-06T05:32:29" +ik[5014] = 3.065 +il[5014] = 2 +im[5014] = 0.0917 +ij[5014] = 28.1 +id[5015] = "2317-02-11T14:31:23" +ik[5015] = 1.063 +il[5015] = 25 +im[5015] = 0.0435 +ij[5015] = 27.5 +id[5016] = "2317-03-27T10:21:02" +ik[5016] = 2.62 +il[5016] = 155 +im[5016] = 0.0617 +ij[5016] = 27.6 +id[5017] = "2317-04-25T15:13:14" +ik[5017] = 0.908 +il[5017] = -114 +im[5017] = 0.0851 +ij[5017] = 28.7 +id[5018] = "2317-05-03T17:08:42" +ik[5018] = 3.444 +il[5018] = -88 +im[5018] = 0.0665 +ij[5018] = 27.2 +id[5019] = "2317-05-23T14:33:19" +ik[5019] = 54.599 +il[5019] = -26 +im[5019] = 0.1211 +ij[5019] = 9 +id[5020] = "2317-05-28T04:28:42" +ik[5020] = 2.858 +il[5020] = -12 +im[5020] = 0.0561 +ij[5020] = 28.8 +id[5021] = "2317-05-29T11:47:02" +ik[5021] = 0.118 +il[5021] = -8 +im[5021] = 0.0261 +ij[5021] = 28.4 +id[5022] = "2317-06-25T22:00:02" +ik[5022] = 1.082 +il[5022] = 76 +im[5022] = 0.0993 +ij[5022] = 28.5 +id[5023] = "2317-07-12T22:23:31" +ik[5023] = 0.231 +il[5023] = 128 +im[5023] = 0.0177 +ij[5023] = 28.6 +id[5024] = "2317-08-01T16:09:14" +ik[5024] = 90 +il[5024] = -172 +im[5024] = 0.1492 +ij[5024] = 6 +id[5025] = "2317-09-20T07:16:24" +ik[5025] = 0 +il[5025] = -64 +im[5025] = 0.3397 +ij[5025] = 13 +id[5026] = "2317-10-12T22:43:40" +ik[5026] = 7.74 +il[5026] = -28 +im[5026] = 0.5306 +ij[5026] = 11 +id[5027] = "2317-10-14T00:15:47" +ik[5027] = 0.5476 +il[5027] = -18 +im[5027] = 0.5476 +ij[5027] = 2 +id[5028] = "2317-11-02T13:55:09" +ik[5028] = 43.28 +il[5028] = -8 +im[5028] = 0.0698 +ij[5028] = 7.1584 +id[5029] = "2317-12-04T17:28:52" +ik[5029] = 75.43 +il[5029] = 70 +im[5029] = 0.2008 +ij[5029] = 14 +id[5030] = "2317-12-22T15:07:20" +ik[5030] = 90 +il[5030] = 114 +im[5030] = 0.2121 +ij[5030] = 5 +id[5031] = "2318-01-20T08:06:02" +ik[5031] = 2.828 +il[5031] = -157 +im[5031] = 0.1584 +ij[5031] = 27.1 +id[5032] = "2318-03-10T00:37:09" +ik[5032] = 1.428 +il[5032] = -5 +im[5032] = 0.1051 +ij[5032] = 27.3 +id[5033] = "2318-03-11T06:51:06" +ik[5033] = 53.799 +il[5033] = -1 +im[5033] = 0.0869 +ij[5033] = 8 +id[5034] = "2318-03-28T02:51:49" +ik[5034] = 0.378 +il[5034] = 51 +im[5034] = 0.0642 +ij[5034] = 27.5 +id[5035] = "2318-05-11T13:51:04" +ik[5035] = 3.65 +il[5035] = -172 +im[5035] = 0.0499 +ij[5035] = 27.6 +id[5036] = "2318-06-04T07:01:37" +ik[5036] = 1.475 +il[5036] = -100 +im[5036] = 0.082 +ij[5036] = 28.1 +id[5037] = "2318-06-12T03:57:53" +ik[5037] = 0.614 +il[5037] = -76 +im[5037] = 0.0261 +ij[5037] = 28.7 +id[5038] = "2318-06-18T06:39:30" +ik[5038] = 5.17 +il[5038] = -57 +im[5038] = 0.0689 +ij[5038] = 27.2 +id[5039] = "2318-08-01T08:54:14" +ik[5039] = 1.06 +il[5039] = 56 +im[5039] = 0.0615 +ij[5039] = 12 +id[5040] = "2318-09-02T16:40:24" +ik[5040] = 0.021 +il[5040] = -26 +im[5040] = 0.0849 +ij[5040] = 28.5 +id[5041] = "2318-09-19T10:21:12" +ik[5041] = 3.46 +il[5041] = 25 +im[5041] = 0.085 +ij[5041] = 28.1 +id[5042] = "2318-11-02T06:16:16" +ik[5042] = 3.654 +il[5042] = 158 +im[5042] = 0.0927 +ij[5042] = 27.4 +id[5043] = "2318-12-26T16:44:54" +ik[5043] = 53.558 +il[5043] = -35 +im[5043] = 0.009 +ij[5043] = 9 +id[5044] = "2318-12-27T16:14:56" +ik[5044] = 0.659 +il[5044] = -32 +im[5044] = 0.0166 +ij[5044] = 27.3 +id[5045] = "2319-01-15T01:47:49" +ik[5045] = 1.153 +il[5045] = 25 +im[5045] = 0.1165 +ij[5045] = 27.5 +id[5046] = "2319-03-03T20:01:02" +ik[5046] = 0.38 +il[5046] = 175 +im[5046] = 0.1809 +ij[5046] = 27.6 +id[5047] = "2319-03-14T21:09:59" +ik[5047] = 90 +il[5047] = -151 +im[5047] = 0.1564 +ij[5047] = 6 +id[5048] = "2319-04-30T06:17:42" +ik[5048] = 0 +il[5048] = -30 +im[5048] = 0.4004 +ij[5048] = 13 +id[5049] = "2319-05-01T10:00:50" +ik[5049] = 5.329 +il[5049] = -50 +im[5049] = 0.4038 +ij[5049] = 27.2 +id[5050] = "2319-05-14T14:47:56" +ik[5050] = 0.5151 +il[5050] = -29 +im[5050] = 0.5152 +ij[5050] = 2 +id[5051] = "2319-05-22T20:34:04" +ik[5051] = 2.74 +il[5051] = -8 +im[5051] = 0.2215 +ij[5051] = 11 +id[5052] = "2319-06-13T05:20:17" +ik[5052] = 43.96 +il[5052] = -19 +im[5052] = 0.3202 +ij[5052] = 7.1655 +id[5053] = "2319-07-17T00:51:00" +ik[5053] = 77.77 +il[5053] = 85 +im[5053] = 0.0956 +ij[5053] = 14 +id[5054] = "2319-07-18T15:04:01" +ik[5054] = 3.718 +il[5054] = 89 +im[5054] = 0.1653 +ij[5054] = 28.7 +id[5055] = "2319-07-31T21:09:59" +ik[5055] = 90 +il[5055] = 124 +im[5055] = 0.1153 +ij[5055] = 5 +id[5056] = "2319-08-23T14:51:32" +ik[5056] = 1.281 +il[5056] = -167 +im[5056] = 0.1229 +ij[5056] = 28.8 +id[5057] = "2319-10-12T02:31:35" +ik[5057] = 54.277 +il[5057] = -16 +im[5057] = 0.0098 +ij[5057] = 8 +id[5058] = "2319-10-17T22:46:33" +ik[5058] = 0.635 +il[5058] = 2 +im[5058] = 0.1142 +ij[5058] = 28.4 +id[5059] = "2319-10-21T20:22:33" +ik[5059] = 0.917 +il[5059] = 14 +im[5059] = 0.1027 +ij[5059] = 28.6 +id[5060] = "2319-11-13T02:45:01" +ik[5060] = 0.132 +il[5060] = 83 +im[5060] = 0.0507 +ij[5060] = 28.5 +id[5061] = "2319-12-26T04:02:55" +ik[5061] = 4.77 +il[5061] = -142 +im[5061] = 0.0131 +ij[5061] = 27.1 +id[5062] = "2320-01-02T21:40:53" +ik[5062] = 2.343 +il[5062] = -118 +im[5062] = 0.088 +ij[5062] = 28.1 +id[5063] = "2320-03-11T23:24:00" +ik[5063] = 1.43 +il[5063] = 73 +im[5063] = 0.0168 +ij[5063] = 12 +id[5064] = "2320-05-17T17:24:15" +ik[5064] = 4.132 +il[5064] = 94 +im[5064] = 0.0871 +ij[5064] = 27.2 +id[5065] = "2320-05-20T10:55:37" +ik[5065] = 0.534 +il[5065] = 102 +im[5065] = 0.0716 +ij[5065] = 28.7 +id[5066] = "2320-06-04T09:59:19" +ik[5066] = 0.27 +il[5066] = 149 +im[5066] = 0.0864 +ij[5066] = 27.9 +id[5067] = "2320-06-15T19:36:11" +ik[5067] = 2.178 +il[5067] = -175 +im[5067] = 0.0933 +ij[5067] = 28.8 +id[5068] = "2320-07-30T05:00:56" +ik[5068] = 54.572 +il[5068] = -39 +im[5068] = 0.1081 +ij[5068] = 9 +id[5069] = "2320-08-23T18:49:14" +ik[5069] = 2.159 +il[5069] = 36 +im[5069] = 0.0078 +ij[5069] = 28.6 +id[5070] = "2320-10-10T22:01:35" +ik[5070] = 0.775 +il[5070] = -179 +im[5070] = 0.1713 +ij[5070] = 27.4 +id[5071] = "2320-10-12T00:50:41" +ik[5071] = 3.884 +il[5071] = -174 +im[5071] = 0.1998 +ij[5071] = 28.5 +id[5072] = "2320-10-13T21:35:38" +ik[5072] = 90 +il[5072] = -169 +im[5072] = 0.226 +ij[5072] = 6 +id[5073] = "2320-12-03T16:35:55" +ik[5073] = 0 +il[5073] = -43 +im[5073] = 0.0334 +ij[5073] = 13 +id[5074] = "2320-12-25T08:25:26" +ik[5074] = 2.18 +il[5074] = 14 +im[5074] = 0.4983 +ij[5074] = 11 +id[5075] = "2321-01-05T16:09:10" +ik[5075] = 0.5456 +il[5075] = 2 +im[5075] = 0.5457 +ij[5075] = 2 +id[5076] = "2321-01-15T01:50:32" +ik[5076] = 42.39 +il[5076] = 14 +im[5076] = 0.2125 +ij[5076] = 7.1542 +id[5077] = "2321-02-15T12:59:17" +ik[5077] = 73.85 +il[5077] = 76 +im[5077] = 0.2459 +ij[5077] = 14 +id[5078] = "2321-03-06T19:43:18" +ik[5078] = 90 +il[5078] = 124 +im[5078] = 0.1932 +ij[5078] = 5 +id[5079] = "2321-03-19T23:09:09" +ik[5079] = 2.992 +il[5079] = 165 +im[5079] = 0.1683 +ij[5079] = 27.3 +id[5080] = "2321-04-08T17:28:42" +ik[5080] = 0.437 +il[5080] = -134 +im[5080] = 0.0591 +ij[5080] = 27.5 +id[5081] = "2321-05-23T02:31:38" +ik[5081] = 54.25 +il[5081] = 3 +im[5081] = 0.0415 +ij[5081] = 8 +id[5082] = "2321-05-25T01:55:57" +ik[5082] = 3.98 +il[5082] = 9 +im[5082] = 0.0052 +ij[5082] = 27.6 +id[5083] = "2321-07-02T16:31:30" +ik[5083] = 5.755 +il[5083] = 127 +im[5083] = 0.094 +ij[5083] = 27.2 +id[5084] = "2321-07-07T04:08:24" +ik[5084] = 0.964 +il[5084] = 141 +im[5084] = 0.0326 +ij[5084] = 28.7 +id[5085] = "2321-07-19T17:36:57" +ik[5085] = 0.017 +il[5085] = 179 +im[5085] = 0.0793 +ij[5085] = 27.91 +id[5086] = "2321-08-01T05:55:49" +ik[5086] = 0.809 +il[5086] = -143 +im[5086] = 0.0869 +ij[5086] = 28.8 +id[5087] = "2321-08-14T11:14:47" +ik[5087] = 2.926 +il[5087] = -102 +im[5087] = 0.0913 +ij[5087] = 28.1 +id[5088] = "2321-09-07T05:59:08" +ik[5088] = 1.291 +il[5088] = -29 +im[5088] = 0.008 +ij[5088] = 28.1 +id[5089] = "2321-10-09T13:29:16" +ik[5089] = 1.27 +il[5089] = 50 +im[5089] = 0.0383 +ij[5089] = 12 +id[5090] = "2321-11-15T17:45:27" +ik[5090] = 0.109 +il[5090] = -20 +im[5090] = 0.0826 +ij[5090] = 28.4 +id[5091] = "2321-11-16T11:45:08" +ik[5091] = 4.252 +il[5091] = -18 +im[5091] = 0.0776 +ij[5091] = 27.4 +id[5092] = "2321-11-18T18:32:32" +ik[5092] = 0.742 +il[5092] = -11 +im[5092] = 0.0493 +ij[5092] = 28.1 +id[5093] = "2321-12-13T22:03:30" +ik[5093] = 0.899 +il[5093] = 66 +im[5093] = 0.0871 +ij[5093] = 28.5 +id[5094] = "2322-01-10T03:18:55" +ik[5094] = 0.306 +il[5094] = 149 +im[5094] = 0.0673 +ij[5094] = 27.3 +id[5095] = "2322-01-27T22:10:02" +ik[5095] = 1.158 +il[5095] = -156 +im[5095] = 0.1054 +ij[5095] = 27.5 +id[5096] = "2322-03-12T03:28:32" +ik[5096] = 54.007 +il[5096] = -21 +im[5096] = 0.1035 +ij[5096] = 9 +id[5097] = "2322-03-13T12:27:49" +ik[5097] = 1.96 +il[5097] = -17 +im[5097] = 0.1168 +ij[5097] = 27.6 +id[5098] = "2322-04-21T17:30:02" +ik[5098] = 2.23 +il[5098] = 106 +im[5098] = 0.0114 +ij[5098] = 27.2 +id[5099] = "2322-05-03T07:59:57" +ik[5099] = 2.584 +il[5099] = 142 +im[5099] = 0.0878 +ij[5099] = 28.7 +id[5100] = "2322-05-22T11:52:44" +ik[5100] = 90 +il[5100] = -159 +im[5100] = 0.0496 +ij[5100] = 6 +id[5101] = "2322-05-31T03:25:18" +ik[5101] = 3.527 +il[5101] = -137 +im[5101] = 0.1766 +ij[5101] = 28.8 +id[5102] = "2322-07-08T12:59:44" +ik[5102] = 0 +il[5102] = -44 +im[5102] = 0.4105 +ij[5102] = 13 +id[5103] = "2322-07-30T06:25:37" +ik[5103] = 0.72 +il[5103] = 3 +im[5103] = 0.1113 +ij[5103] = 27.8 +id[5104] = "2322-07-30T20:49:55" +ik[5104] = 6.32 +il[5104] = 3 +im[5104] = 0.1672 +ij[5104] = 11 +id[5105] = "2322-08-05T08:22:14" +ik[5105] = 0.5217 +il[5105] = -7 +im[5105] = 0.5217 +ij[5105] = 2 +id[5106] = "2322-08-21T21:17:21" +ik[5106] = 44.35 +il[5106] = 12 +im[5106] = 0.3123 +ij[5106] = 7.1656 +id[5107] = "2322-09-24T13:16:06" +ik[5107] = 78.01 +il[5107] = 78 +im[5107] = 0.1 +ij[5107] = 14 +id[5108] = "2322-10-09T11:37:42" +ik[5108] = 90 +il[5108] = 117 +im[5108] = 0.0558 +ij[5108] = 5 +id[5109] = "2322-12-04T22:16:10" +ik[5109] = 0.504 +il[5109] = -70 +im[5109] = 0.0574 +ij[5109] = 28.6 +id[5110] = "2322-12-23T13:33:00" +ik[5110] = 53.815 +il[5110] = -12 +im[5110] = 0.0566 +ij[5110] = 8 +id[5111] = "2323-01-08T21:25:35" +ik[5111] = 4.07 +il[5111] = 39 +im[5111] = 0.072 +ij[5111] = 27.1 +id[5112] = "2323-02-19T09:30:14" +ik[5112] = 0.229 +il[5112] = 168 +im[5112] = 0.0141 +ij[5112] = 28.5 +id[5113] = "2323-02-24T02:35:49" +ik[5113] = 0.76 +il[5113] = -177 +im[5113] = 0.0695 +ij[5113] = 27.3 +id[5114] = "2323-03-05T01:24:14" +ik[5114] = 2.503 +il[5114] = -149 +im[5114] = 0.0317 +ij[5114] = 28.1 +id[5115] = "2323-03-13T19:09:09" +ik[5115] = 0.727 +il[5115] = -122 +im[5115] = 0.0953 +ij[5115] = 27.5 +id[5116] = "2323-05-23T23:31:12" +ik[5116] = 0.42 +il[5116] = 73 +im[5116] = 0.0443 +ij[5116] = 12 +id[5117] = "2323-07-06T09:17:16" +ik[5117] = 1.683 +il[5117] = 24 +im[5117] = 0.0149 +ij[5117] = 28.8 +id[5118] = "2323-10-08T23:06:10" +ik[5118] = 2.947 +il[5118] = -46 +im[5118] = 0.1001 +ij[5118] = 28.6 +id[5119] = "2323-10-09T16:48:34" +ik[5119] = 53.982 +il[5119] = -44 +im[5119] = 0.1081 +ij[5119] = 9 +id[5120] = "2323-10-19T20:43:48" +ik[5120] = 2.74 +il[5120] = -13 +im[5120] = 0.038 +ij[5120] = 27.4 +id[5121] = "2323-12-02T14:19:40" +ik[5121] = 0.098 +il[5121] = 121 +im[5121] = 0.004 +ij[5121] = 28.4 +id[5122] = "2323-12-17T17:46:02" +ik[5122] = 1.008 +il[5122] = 168 +im[5122] = 0.0023 +ij[5122] = 27.3 +id[5123] = "2323-12-29T13:59:14" +ik[5123] = 90 +il[5123] = -155 +im[5123] = 0.1228 +ij[5123] = 6 +id[5124] = "2324-01-09T04:23:48" +ik[5124] = 0.133 +il[5124] = -126 +im[5124] = 0.2564 +ij[5124] = 27.5 +id[5125] = "2324-01-20T12:36:00" +ik[5125] = 1.841 +il[5125] = -100 +im[5125] = 0.2094 +ij[5125] = 28.5 +id[5126] = "2324-02-16T13:16:33" +ik[5126] = 0 +il[5126] = -39 +im[5126] = 0.2232 +ij[5126] = 13 +id[5127] = "2324-03-04T16:48:09" +ik[5127] = 0.5462 +il[5127] = -4 +im[5127] = 0.5463 +ij[5127] = 2 +id[5128] = "2324-03-09T07:40:48" +ik[5128] = 8.85 +il[5128] = 7 +im[5128] = 0.2784 +ij[5128] = 11 +id[5129] = "2324-03-30T00:33:10" +ik[5129] = 42.47 +il[5129] = 22 +im[5129] = 0.4278 +ij[5129] = 7.1601 +id[5130] = "2324-05-01T19:38:56" +ik[5130] = 75.27 +il[5130] = 86 +im[5130] = 0.209 +ij[5130] = 14 +id[5131] = "2324-05-19T08:40:48" +ik[5131] = 90 +il[5131] = 131 +im[5131] = 0.0492 +ij[5131] = 5 +id[5132] = "2324-06-04T00:28:45" +ik[5132] = 4.29 +il[5132] = -180 +im[5132] = 0.0395 +ij[5132] = 27.6 +id[5133] = "2324-07-31T06:20:00" +ik[5133] = 1.472 +il[5133] = -5 +im[5133] = 0.0818 +ij[5133] = 28.7 +id[5134] = "2324-07-31T09:24:09" +ik[5134] = 54.516 +il[5134] = -5 +im[5134] = 0.0793 +ij[5134] = 8 +id[5135] = "2324-08-20T11:36:57" +ik[5135] = 0.251 +il[5135] = 56 +im[5135] = 0.0529 +ij[5135] = 28.8 +id[5136] = "2324-10-16T09:55:09" +ik[5136] = 0.544 +il[5136] = -128 +im[5136] = 0.0234 +ij[5136] = 28.1 +id[5137] = "2324-11-02T20:39:33" +ik[5137] = 1.243 +il[5137] = -74 +im[5137] = 0.0309 +ij[5137] = 28.1 +id[5138] = "2324-12-22T07:07:40" +ik[5138] = 0.26 +il[5138] = 58 +im[5138] = 0.0747 +ij[5138] = 12 +id[5139] = "2325-02-11T03:44:15" +ik[5139] = 1.065 +il[5139] = 27 +im[5139] = 0.0713 +ij[5139] = 27.5 +id[5140] = "2325-03-13T22:02:47" +ik[5140] = 0.404 +il[5140] = 122 +im[5140] = 0.0632 +ij[5140] = 28.5 +id[5141] = "2325-03-26T23:53:44" +ik[5141] = 2.61 +il[5141] = 163 +im[5141] = 0.0895 +ij[5141] = 27.6 +id[5142] = "2325-05-03T07:25:08" +ik[5142] = 3.416 +il[5142] = -80 +im[5142] = 0.0275 +ij[5142] = 27.2 +id[5143] = "2325-05-21T08:20:10" +ik[5143] = 54.587 +il[5143] = -23 +im[5143] = 0.1078 +ij[5143] = 9 +id[5144] = "2325-05-24T19:18:37" +ik[5144] = 1.541 +il[5144] = -13 +im[5144] = 0.1261 +ij[5144] = 28.7 +id[5145] = "2325-06-11T22:49:35" +ik[5145] = 2.563 +il[5145] = 43 +im[5145] = 0.0834 +ij[5145] = 28.8 +id[5146] = "2325-07-30T07:39:46" +ik[5146] = 90 +il[5146] = -169 +im[5146] = 0.013 +ij[5146] = 6 +id[5147] = "2325-09-17T19:39:23" +ik[5147] = 0 +il[5147] = -46 +im[5147] = 0.4083 +ij[5147] = 13 +id[5148] = "2325-10-10T12:17:16" +ik[5148] = 7.9 +il[5148] = 14 +im[5148] = 0.2489 +ij[5148] = 11 +id[5149] = "2325-10-15T03:15:38" +ik[5149] = 0.5312 +il[5149] = -10 +im[5149] = 0.5313 +ij[5149] = 2 +id[5150] = "2325-10-31T08:56:00" +ik[5150] = 43.55 +il[5150] = 9 +im[5150] = 0.3093 +ij[5150] = 7.1587 +id[5151] = "2325-12-02T09:26:47" +ik[5151] = 75.57 +il[5151] = 72 +im[5151] = 0.0349 +ij[5151] = 14 +id[5152] = "2325-12-20T04:37:34" +ik[5152] = 90 +il[5152] = 116 +im[5152] = 0.1331 +ij[5152] = 5 +id[5153] = "2326-01-18T21:22:36" +ik[5153] = 0.907 +il[5153] = -151 +im[5153] = 0.1023 +ij[5153] = 28.6 +id[5154] = "2326-01-20T02:38:28" +ik[5154] = 2.888 +il[5154] = -148 +im[5154] = 0.1314 +ij[5154] = 27.1 +id[5155] = "2326-03-08T18:49:31" +ik[5155] = 53.788 +il[5155] = 1 +im[5155] = 0.1124 +ij[5155] = 8 +id[5156] = "2326-03-09T15:30:01" +ik[5156] = 1.399 +il[5156] = 4 +im[5156] = 0.1132 +ij[5156] = 27.3 +id[5157] = "2326-03-10T04:57:56" +ik[5157] = 1.514 +il[5157] = 6 +im[5157] = 0.1115 +ij[5157] = 28.4 +id[5158] = "2326-03-27T17:08:15" +ik[5158] = 0.393 +il[5158] = 60 +im[5158] = 0.0973 +ij[5158] = 27.5 +id[5159] = "2326-05-11T03:22:46" +ik[5159] = 3.64 +il[5159] = -163 +im[5159] = 0.079 +ij[5159] = 27.6 +id[5160] = "2326-05-11T15:38:35" +ik[5160] = 0.618 +il[5160] = -162 +im[5160] = 0.0735 +ij[5160] = 28.1 +id[5161] = "2326-05-18T20:54:31" +ik[5161] = 0.049 +il[5161] = -140 +im[5161] = 0.0469 +ij[5161] = 28.5 +id[5162] = "2326-06-17T06:50:58" +ik[5162] = 0.033 +il[5162] = -50 +im[5162] = 0.0288 +ij[5162] = 28.1 +id[5163] = "2326-06-17T19:39:56" +ik[5163] = 5.153 +il[5163] = -49 +im[5163] = 0.0372 +ij[5163] = 27.2 +id[5164] = "2326-07-30T03:12:57" +ik[5164] = 1.02 +il[5164] = 59 +im[5164] = 0.0038 +ij[5164] = 12 +id[5165] = "2326-11-01T20:03:48" +ik[5165] = 3.633 +il[5165] = 167 +im[5165] = 0.066 +ij[5165] = 27.4 +id[5166] = "2326-11-25T03:21:10" +ik[5166] = 2.341 +il[5166] = -122 +im[5166] = 0.0656 +ij[5166] = 28.6 +id[5167] = "2326-12-24T03:14:26" +ik[5167] = 53.557 +il[5167] = -33 +im[5167] = 0.0983 +ij[5167] = 9 +id[5168] = "2326-12-27T07:11:21" +ik[5168] = 0.67 +il[5168] = -23 +im[5168] = 0.0371 +ij[5168] = 27.3 +id[5169] = "2327-01-14T17:39:21" +ik[5169] = 1.146 +il[5169] = 34 +im[5169] = 0.0802 +ij[5169] = 27.5 +id[5170] = "2327-03-03T17:46:43" +ik[5170] = 0.28 +il[5170] = -176 +im[5170] = 0.1746 +ij[5170] = 27.6 +id[5171] = "2327-03-12T12:57:19" +ik[5171] = 90 +il[5171] = -148 +im[5171] = 0.0124 +ij[5171] = 6 +id[5172] = "2327-04-28T09:27:14" +ik[5172] = 0 +il[5172] = -34 +im[5172] = 0.2919 +ij[5172] = 13 +id[5173] = "2327-05-15T17:12:09" +ik[5173] = 0.5174 +il[5173] = 1 +im[5173] = 0.5174 +ij[5173] = 2 +id[5174] = "2327-05-20T13:20:38" +ik[5174] = 3.06 +il[5174] = 13 +im[5174] = 0.1908 +ij[5174] = 11 +id[5175] = "2327-06-10T17:09:53" +ik[5175] = 43.32 +il[5175] = 21 +im[5175] = 0.4332 +ij[5175] = 7.1654 +id[5176] = "2327-07-13T23:21:33" +ik[5176] = 2.749 +il[5176] = 86 +im[5176] = 0.147 +ij[5176] = 28.5 +id[5177] = "2327-07-14T16:17:40" +ik[5177] = 77.29 +il[5177] = 88 +im[5177] = 0.112 +ij[5177] = 14 +id[5178] = "2327-07-29T13:50:24" +ik[5178] = 90 +il[5178] = 127 +im[5178] = 0.0555 +ij[5178] = 5 +id[5179] = "2327-08-23T02:03:33" +ik[5179] = 2.426 +il[5179] = -158 +im[5179] = 0.159 +ij[5179] = 28.7 +id[5180] = "2327-09-08T02:34:30" +ik[5180] = 0.652 +il[5180] = -110 +im[5180] = 0.1321 +ij[5180] = 28.8 +id[5181] = "2327-10-09T18:06:53" +ik[5181] = 54.292 +il[5181] = -13 +im[5181] = 0.081 +ij[5181] = 8 +id[5182] = "2327-12-16T03:24:46" +ik[5182] = 2.086 +il[5182] = -164 +im[5182] = 0.0627 +ij[5182] = 28.1 +id[5183] = "2327-12-25T17:28:14" +ik[5183] = 4.792 +il[5183] = -134 +im[5183] = 0.0499 +ij[5183] = 27.1 +id[5184] = "2328-01-11T08:51:21" +ik[5184] = 2.775 +il[5184] = -82 +im[5184] = 0.0102 +ij[5184] = 28.1 +id[5185] = "2328-01-17T11:47:54" +ik[5185] = 0.611 +il[5185] = -63 +im[5185] = 0.0797 +ij[5185] = 28.6 +id[5186] = "2328-03-09T10:24:57" +ik[5186] = 1.43 +il[5186] = 75 +im[5186] = 0.0552 +ij[5186] = 12 +id[5187] = "2328-05-17T06:44:14" +ik[5187] = 4.113 +il[5187] = 102 +im[5187] = 0.0814 +ij[5187] = 27.2 +id[5188] = "2328-06-03T23:21:59" +ik[5188] = 0.29 +il[5188] = 158 +im[5188] = 0.097 +ij[5188] = 27.9 +id[5189] = "2328-06-12T03:57:36" +ik[5189] = 1.106 +il[5189] = -177 +im[5189] = 0.0269 +ij[5189] = 28.5 +id[5190] = "2328-06-17T11:09:10" +ik[5190] = 0.997 +il[5190] = -160 +im[5190] = 0.0979 +ij[5190] = 28.7 +id[5191] = "2328-06-25T10:50:00" +ik[5191] = 4.292 +il[5191] = -136 +im[5191] = 0.0138 +ij[5191] = 28.1 +id[5192] = "2328-06-29T22:33:10" +ik[5192] = 1.922 +il[5192] = -122 +im[5192] = 0.0743 +ij[5192] = 28.8 +id[5193] = "2328-07-27T22:37:08" +ik[5193] = 54.584 +il[5193] = -36 +im[5193] = 0.0408 +ij[5193] = 9 +id[5194] = "2328-10-10T23:24:41" +ik[5194] = 0.658 +il[5194] = -168 +im[5194] = 0.1245 +ij[5194] = 27.4 +id[5195] = "2328-10-11T09:22:23" +ik[5195] = 90 +il[5195] = -166 +im[5195] = 0.1401 +ij[5195] = 6 +id[5196] = "2328-12-01T16:18:07" +ik[5196] = 0 +il[5196] = -39 +im[5196] = 0.2912 +ij[5196] = 13 +id[5197] = "2328-12-12T01:38:54" +ik[5197] = 0.5426 +il[5197] = -22 +im[5197] = 0.5427 +ij[5197] = 2 +id[5198] = "2328-12-22T21:23:02" +ik[5198] = 1.78 +il[5198] = 6 +im[5198] = 0.4793 +ij[5198] = 11 +id[5199] = "2329-01-12T15:22:41" +ik[5199] = 41.96 +il[5199] = 16 +im[5199] = 0.1843 +ij[5199] = 7.1542 +id[5200] = "2329-02-13T01:14:27" +ik[5200] = 73.37 +il[5200] = 78 +im[5200] = 0.0761 +ij[5200] = 14 +id[5201] = "2329-03-03T16:21:38" +ik[5201] = 2.91 +il[5201] = 125 +im[5201] = 0.2127 +ij[5201] = 28.6 +id[5202] = "2329-03-04T07:53:56" +ik[5202] = 90 +il[5202] = 126 +im[5202] = 0.2198 +ij[5202] = 5 +id[5203] = "2329-03-19T19:51:48" +ik[5203] = 2.898 +il[5203] = 174 +im[5203] = 0.1779 +ij[5203] = 27.3 +id[5204] = "2329-04-08T11:06:28" +ik[5204] = 0.39 +il[5204] = -124 +im[5204] = 0.104 +ij[5204] = 27.5 +id[5205] = "2329-05-20T18:03:22" +ik[5205] = 54.235 +il[5205] = 6 +im[5205] = 0.1129 +ij[5205] = 8 +id[5206] = "2329-05-24T16:41:46" +ik[5206] = 3.97 +il[5206] = 18 +im[5206] = 0.0498 +ij[5206] = 27.6 +id[5207] = "2329-07-02T06:08:22" +ik[5207] = 5.733 +il[5207] = 136 +im[5207] = 0.0929 +ij[5207] = 27.2 +id[5208] = "2329-07-19T06:59:02" +ik[5208] = 0.038 +il[5208] = -172 +im[5208] = 0.0968 +ij[5208] = 27.91 +id[5209] = "2329-07-26T06:41:54" +ik[5209] = 2.836 +il[5209] = -151 +im[5209] = 0.0072 +ij[5209] = 28.1 +id[5210] = "2329-08-04T01:53:54" +ik[5210] = 0.235 +il[5210] = -124 +im[5210] = 0.078 +ij[5210] = 28.7 +id[5211] = "2329-08-07T06:26:21" +ik[5211] = 0.74 +il[5211] = -115 +im[5211] = 0.0366 +ij[5211] = 28.1 +id[5212] = "2329-08-15T04:06:48" +ik[5212] = 0.864 +il[5212] = -90 +im[5212] = 0.0836 +ij[5212] = 28.8 +id[5213] = "2329-08-21T03:24:20" +ik[5213] = 0.002 +il[5213] = -72 +im[5213] = 0.0677 +ij[5213] = 28.5 +id[5214] = "2329-10-07T04:24:57" +ik[5214] = 1.3 +il[5214] = 52 +im[5214] = 0.0323 +ij[5214] = 12 +id[5215] = "2329-11-16T01:01:08" +ik[5215] = 4.236 +il[5215] = -9 +im[5215] = 0.0847 +ij[5215] = 27.4 +id[5216] = "2330-01-09T16:54:28" +ik[5216] = 0.315 +il[5216] = 157 +im[5216] = 0.0385 +ij[5216] = 27.3 +id[5217] = "2330-01-11T16:13:17" +ik[5217] = 0.767 +il[5217] = 163 +im[5217] = 0.0711 +ij[5217] = 28.6 +id[5218] = "2330-01-27T11:58:28" +ik[5218] = 1.159 +il[5218] = -148 +im[5218] = 0.0885 +ij[5218] = 27.5 +id[5219] = "2330-03-09T16:55:50" +ik[5219] = 53.984 +il[5219] = -19 +im[5219] = 0.0278 +ij[5219] = 9 +id[5220] = "2330-03-13T03:20:40" +ik[5220] = 1.93 +il[5220] = -8 +im[5220] = 0.1027 +ij[5220] = 27.6 +id[5221] = "2330-03-21T22:18:46" +ik[5221] = 1.19 +il[5221] = 19 +im[5221] = 0.0535 +ij[5221] = 28.4 +id[5222] = "2330-04-21T11:36:14" +ik[5222] = 2.172 +il[5222] = 115 +im[5222] = 0.0561 +ij[5222] = 27.2 +id[5223] = "2330-05-20T05:45:41" +ik[5223] = 90 +il[5223] = -156 +im[5223] = 0.1141 +ij[5223] = 6 +id[5224] = "2330-06-08T11:38:41" +ik[5224] = 1.904 +il[5224] = -110 +im[5224] = 0.1622 +ij[5224] = 28.7 +id[5225] = "2330-06-27T05:58:42" +ik[5225] = 0.66 +il[5225] = -71 +im[5225] = 0.3367 +ij[5225] = 28.8 +id[5226] = "2330-07-06T01:14:54" +ik[5226] = 0 +il[5226] = -57 +im[5226] = 0.1821 +ij[5226] = 13 +id[5227] = "2330-07-28T13:06:14" +ik[5227] = 6.09 +il[5227] = 2 +im[5227] = 0.2539 +ij[5227] = 11 +id[5228] = "2330-08-06T12:16:06" +ik[5228] = 0.5135 +il[5228] = -1 +im[5228] = 0.5136 +ij[5228] = 2 +id[5229] = "2330-08-20T01:18:29" +ik[5229] = 45 +il[5229] = 16 +im[5229] = 0.3956 +ij[5229] = 7.1656 +id[5230] = "2330-08-31T04:37:20" +ik[5230] = 6.446 +il[5230] = 34 +im[5230] = 0.3048 +ij[5230] = 28.7 +id[5231] = "2330-09-17T18:04:27" +ik[5231] = 3.464 +il[5231] = 71 +im[5231] = 0.2528 +ij[5231] = 28.8 +id[5232] = "2330-09-22T06:23:16" +ik[5232] = 78.21 +il[5232] = 81 +im[5232] = 0.0963 +ij[5232] = 14 +id[5233] = "2330-10-07T03:24:10" +ik[5233] = 90 +il[5233] = 119 +im[5233] = 0.1192 +ij[5233] = 5 +id[5234] = "2330-10-27T13:58:04" +ik[5234] = 0.773 +il[5234] = -178 +im[5234] = 0.125 +ij[5234] = 28.5 +id[5235] = "2330-12-21T02:06:58" +ik[5235] = 53.827 +il[5235] = -10 +im[5235] = 0.0458 +ij[5235] = 8 +id[5236] = "2331-01-08T11:47:21" +ik[5236] = 4.101 +il[5236] = 48 +im[5236] = 0.0335 +ij[5236] = 27.1 +id[5237] = "2331-02-14T04:18:02" +ik[5237] = 2.48 +il[5237] = 162 +im[5237] = 0.1018 +ij[5237] = 28.1 +id[5238] = "2331-02-23T16:07:48" +ik[5238] = 0.745 +il[5238] = -168 +im[5238] = 0.036 +ij[5238] = 27.3 +id[5239] = "2331-03-06T00:26:03" +ik[5239] = 0.362 +il[5239] = -136 +im[5239] = 0.0401 +ij[5239] = 28.6 +id[5240] = "2331-03-13T08:33:08" +ik[5240] = 0.734 +il[5240] = -114 +im[5240] = 0.0829 +ij[5240] = 27.5 +id[5241] = "2331-03-21T21:30:31" +ik[5241] = 3.483 +il[5241] = -87 +im[5241] = 0.0407 +ij[5241] = 28.1 +id[5242] = "2331-05-21T16:52:19" +ik[5242] = 0.47 +il[5242] = 76 +im[5242] = 0.0236 +ij[5242] = 12 +id[5243] = "2331-07-12T17:11:02" +ik[5243] = 0.666 +il[5243] = 54 +im[5243] = 0.077 +ij[5243] = 28.7 +id[5244] = "2331-07-20T07:42:05" +ik[5244] = 1.459 +il[5244] = 77 +im[5244] = 0.0285 +ij[5244] = 28.8 +id[5245] = "2331-08-19T09:22:01" +ik[5245] = 4.259 +il[5245] = 170 +im[5245] = 0.0285 +ij[5245] = 28.1 +id[5246] = "2331-09-23T23:17:48" +ik[5246] = 1.209 +il[5246] = -82 +im[5246] = 0.0813 +ij[5246] = 28.5 +id[5247] = "2331-10-07T06:22:59" +ik[5247] = 54.006 +il[5247] = -42 +im[5247] = 0.046 +ij[5247] = 9 +id[5248] = "2331-10-19T12:21:07" +ik[5248] = 2.702 +il[5248] = -4 +im[5248] = 0.0226 +ij[5248] = 27.4 +id[5249] = "2331-12-17T15:53:07" +ik[5249] = 1.005 +il[5249] = 178 +im[5249] = 0.0806 +ij[5249] = 27.3 +id[5250] = "2331-12-27T01:45:59" +ik[5250] = 90 +il[5250] = -153 +im[5250] = 0.2091 +ij[5250] = 6 +id[5251] = "2332-01-09T14:05:34" +ik[5251] = 0.014 +il[5251] = -117 +im[5251] = 0.2714 +ij[5251] = 27.5 +id[5252] = "2332-01-19T02:59:51" +ik[5252] = 2.465 +il[5252] = -95 +im[5252] = 0.0594 +ij[5252] = 28.6 +id[5253] = "2332-02-14T06:23:43" +ik[5253] = 0 +il[5253] = -36 +im[5253] = 0.1137 +ij[5253] = 13 +id[5254] = "2332-03-05T17:08:41" +ik[5254] = 0.5585 +il[5254] = 8 +im[5254] = 0.5585 +ij[5254] = 2 +id[5255] = "2332-03-06T20:54:14" +ik[5255] = 8.85 +il[5255] = 10 +im[5255] = 0.5397 +ij[5255] = 11 +id[5256] = "2332-03-28T05:26:17" +ik[5256] = 42.96 +il[5256] = 25 +im[5256] = 0.2674 +ij[5256] = 7.1599 +id[5257] = "2332-04-07T04:44:24" +ik[5257] = 6.445 +il[5257] = 42 +im[5257] = 0.1408 +ij[5257] = 28.6 +id[5258] = "2332-04-29T08:07:01" +ik[5258] = 75.07 +il[5258] = 89 +im[5258] = 0.2712 +ij[5258] = 14 +id[5259] = "2332-05-16T23:16:30" +ik[5259] = 90 +il[5259] = 134 +im[5259] = 0.1753 +ij[5259] = 5 +id[5260] = "2332-06-03T21:01:39" +ik[5260] = 4.28 +il[5260] = -171 +im[5260] = 0.0971 +ij[5260] = 27.6 +id[5261] = "2332-07-09T13:39:04" +ik[5261] = 1.787 +il[5261] = -61 +im[5261] = 0.0865 +ij[5261] = 28.4 +id[5262] = "2332-07-29T02:31:54" +ik[5262] = 54.515 +il[5262] = -2 +im[5262] = 0.1211 +ij[5262] = 8 +id[5263] = "2332-08-28T03:30:40" +ik[5263] = 0.468 +il[5263] = 89 +im[5263] = 0.1033 +ij[5263] = 28.7 +id[5264] = "2332-09-03T16:08:49" +ik[5264] = 0.428 +il[5264] = 109 +im[5264] = 0.0076 +ij[5264] = 28.8 +id[5265] = "2332-09-27T13:55:46" +ik[5265] = 4.889 +il[5265] = -179 +im[5265] = 0.0906 +ij[5265] = 28.1 +id[5266] = "2332-12-19T18:24:28" +ik[5266] = 0.19 +il[5266] = 60 +im[5266] = 0.0204 +ij[5266] = 12 +id[5267] = "2333-02-10T16:57:34" +ik[5267] = 1.067 +il[5267] = 36 +im[5267] = 0.0856 +ij[5267] = 27.5 +id[5268] = "2333-02-27T00:57:10" +ik[5268] = 0.789 +il[5268] = 86 +im[5268] = 0.0798 +ij[5268] = 28.6 +id[5269] = "2333-03-26T13:26:37" +ik[5269] = 2.59 +il[5269] = 172 +im[5269] = 0.1015 +ij[5269] = 27.6 +id[5270] = "2333-05-02T21:45:34" +ik[5270] = 3.388 +il[5270] = -71 +im[5270] = 0.0202 +ij[5270] = 27.2 +id[5271] = "2333-05-19T01:59:55" +ik[5271] = 54.575 +il[5271] = -21 +im[5271] = 0.0322 +ij[5271] = 9 +id[5272] = "2333-06-22T13:43:23" +ik[5272] = 1.313 +il[5272] = 86 +im[5272] = 0.133 +ij[5272] = 28.7 +id[5273] = "2333-06-27T07:21:21" +ik[5273] = 1.813 +il[5273] = 100 +im[5273] = 0.1344 +ij[5273] = 28.8 +id[5274] = "2333-07-27T23:19:09" +ik[5274] = 90 +il[5274] = -167 +im[5274] = 0.1458 +ij[5274] = 6 +id[5275] = "2333-09-15T08:07:28" +ik[5275] = 0 +il[5275] = -44 +im[5275] = 0.2124 +ij[5275] = 13 +id[5276] = "2333-10-02T19:54:13" +ik[5276] = 0.5354 +il[5276] = -8 +im[5276] = 0.5355 +ij[5276] = 2 +id[5277] = "2333-10-08T01:53:45" +ik[5277] = 8.05 +il[5277] = 5 +im[5277] = 0.2127 +ij[5277] = 11 +id[5278] = "2333-10-29T08:11:03" +ik[5278] = 44 +il[5278] = 12 +im[5278] = 0.4443 +ij[5278] = 7.159 +id[5279] = "2333-11-30T01:29:50" +ik[5279] = 75.72 +il[5279] = 75 +im[5279] = 0.2106 +ij[5279] = 14 +id[5280] = "2333-12-17T18:13:07" +ik[5280] = 90 +il[5280] = 119 +im[5280] = 0.038 +ij[5280] = 5 +id[5281] = "2334-01-19T20:49:34" +ik[5281] = 2.946 +il[5281] = -138 +im[5281] = 0.0864 +ij[5281] = 27.1 +id[5282] = "2334-02-07T11:23:51" +ik[5282] = 1.387 +il[5282] = -80 +im[5282] = 0.1245 +ij[5282] = 28.5 +id[5283] = "2334-03-06T06:44:23" +ik[5283] = 53.778 +il[5283] = 4 +im[5283] = 0.0546 +ij[5283] = 8 +id[5284] = "2334-03-09T06:15:47" +ik[5284] = 1.371 +il[5284] = 13 +im[5284] = 0.1048 +ij[5284] = 27.3 +id[5285] = "2334-03-27T07:21:34" +ik[5285] = 0.408 +il[5285] = 69 +im[5285] = 0.1112 +ij[5285] = 27.5 +id[5286] = "2334-04-20T10:08:41" +ik[5286] = 0.142 +il[5286] = 143 +im[5286] = 0.0504 +ij[5286] = 28.1 +id[5287] = "2334-04-21T00:36:23" +ik[5287] = 0.889 +il[5287] = 145 +im[5287] = 0.0601 +ij[5287] = 28.6 +id[5288] = "2334-05-10T16:51:38" +ik[5288] = 3.63 +il[5288] = -155 +im[5288] = 0.0943 +ij[5288] = 27.6 +id[5289] = "2334-05-17T08:35:22" +ik[5289] = 2.179 +il[5289] = -135 +im[5289] = 0.0149 +ij[5289] = 28.1 +id[5290] = "2334-06-17T08:42:35" +ik[5290] = 5.135 +il[5290] = -40 +im[5290] = 0.0062 +ij[5290] = 27.2 +id[5291] = "2334-07-27T21:38:52" +ik[5291] = 0.99 +il[5291] = 62 +im[5291] = 0.0613 +ij[5291] = 12 +id[5292] = "2334-11-01T09:55:20" +ik[5292] = 3.611 +il[5292] = 179 +im[5292] = 0.0291 +ij[5292] = 27.4 +id[5293] = "2334-12-21T13:43:57" +ik[5293] = 53.558 +il[5293] = -31 +im[5293] = 0.1253 +ij[5293] = 9 +id[5294] = "2334-12-26T22:11:20" +ik[5294] = 0.68 +il[5294] = -15 +im[5294] = 0.0822 +ij[5294] = 27.3 +id[5295] = "2334-12-31T10:36:37" +ik[5295] = 0.984 +il[5295] = -1 +im[5295] = 0.0288 +ij[5295] = 28.5 +id[5296] = "2335-01-14T09:38:27" +ik[5296] = 1.137 +il[5296] = 43 +im[5296] = 0.0252 +ij[5296] = 27.5 +id[5297] = "2335-02-24T20:49:12" +ik[5297] = 3.605 +il[5297] = 173 +im[5297] = 0.1162 +ij[5297] = 28.6 +id[5298] = "2335-03-03T16:14:36" +ik[5298] = 0.17 +il[5298] = -166 +im[5298] = 0.1532 +ij[5298] = 27.6 +id[5299] = "2335-03-10T04:33:10" +ik[5299] = 90 +il[5299] = -146 +im[5299] = 0.1695 +ij[5299] = 6 +id[5300] = "2335-04-26T01:30:17" +ik[5300] = 0 +il[5300] = -31 +im[5300] = 0.0724 +ij[5300] = 13 +id[5301] = "2335-05-16T19:12:52" +ik[5301] = 0.5119 +il[5301] = 13 +im[5301] = 0.512 +ij[5301] = 2 +id[5302] = "2335-05-18T05:57:07" +ik[5302] = 3.37 +il[5302] = 15 +im[5302] = 0.4801 +ij[5302] = 11 +id[5303] = "2335-06-08T10:42:53" +ik[5303] = 43.38 +il[5303] = 24 +im[5303] = 0.2756 +ij[5303] = 7.1652 +id[5304] = "2335-07-12T07:18:36" +ik[5304] = 77.24 +il[5304] = 91 +im[5304] = 0.236 +ij[5304] = 14 +id[5305] = "2335-07-27T06:33:28" +ik[5305] = 90 +il[5305] = 130 +im[5305] = 0.1851 +ij[5305] = 5 +id[5306] = "2335-09-20T21:03:30" +ik[5306] = 0.8 +il[5306] = -61 +im[5306] = 0.1292 +ij[5306] = 28.7 +id[5307] = "2335-09-23T00:59:19" +ik[5307] = 0.174 +il[5307] = -54 +im[5307] = 0.1353 +ij[5307] = 28.8 +id[5308] = "2335-10-07T09:45:45" +ik[5308] = 54.306 +il[5308] = -10 +im[5308] = 0.1133 +ij[5308] = 8 +id[5309] = "2335-12-25T06:50:00" +ik[5309] = 4.814 +il[5309] = -125 +im[5309] = 0.0761 +ij[5309] = 27.1 +id[5310] = "2336-03-06T21:11:31" +ik[5310] = 1.43 +il[5310] = 78 +im[5310] = 0.0899 +ij[5310] = 12 +id[5311] = "2336-04-12T15:29:05" +ik[5311] = 1.604 +il[5311] = 15 +im[5311] = 0.0183 +ij[5311] = 28.6 +id[5312] = "2336-05-16T20:01:07" +ik[5312] = 4.093 +il[5312] = 111 +im[5312] = 0.0626 +ij[5312] = 27.2 +id[5313] = "2336-06-04T13:16:10" +ik[5313] = 0.358 +il[5313] = 169 +im[5313] = 0.094 +ij[5313] = 28.1 +id[5314] = "2336-07-14T08:47:57" +ik[5314] = 1.374 +il[5314] = -67 +im[5314] = 0.0531 +ij[5314] = 28.8 +id[5315] = "2336-07-14T10:10:42" +ik[5315] = 0.872 +il[5315] = -67 +im[5315] = 0.0544 +ij[5315] = 28.7 +id[5316] = "2336-07-25T16:16:53" +ik[5316] = 54.595 +il[5316] = -33 +im[5316] = 0.0542 +ij[5316] = 9 +id[5317] = "2336-09-22T03:07:12" +ik[5317] = 2.047 +il[5317] = 145 +im[5317] = 0.1264 +ij[5317] = 28.4 +id[5318] = "2336-10-08T21:16:13" +ik[5318] = 90 +il[5318] = -164 +im[5318] = 0.0479 +ij[5318] = 6 +id[5319] = "2336-10-11T01:47:47" +ik[5319] = 0.534 +il[5319] = -158 +im[5319] = 0.0588 +ij[5319] = 27.4 +id[5320] = "2336-11-29T07:19:03" +ik[5320] = 0 +il[5320] = -37 +im[5320] = 0.4533 +ij[5320] = 13 +id[5321] = "2336-12-13T05:31:34" +ik[5321] = 0.5502 +il[5321] = -11 +im[5321] = 0.5503 +ij[5321] = 2 +id[5322] = "2336-12-20T10:29:16" +ik[5322] = 1.38 +il[5322] = 7 +im[5322] = 0.1256 +ij[5322] = 11 +id[5323] = "2337-01-10T06:23:38" +ik[5323] = 41.96 +il[5323] = 18 +im[5323] = 0.4383 +ij[5323] = 7.1542 +id[5324] = "2337-02-10T13:28:25" +ik[5324] = 73.26 +il[5324] = 80 +im[5324] = 0.1507 +ij[5324] = 14 +id[5325] = "2337-03-01T20:05:27" +ik[5325] = 90 +il[5325] = 128 +im[5325] = 0.109 +ij[5325] = 5 +id[5326] = "2337-03-19T16:06:00" +ik[5326] = 2.811 +il[5326] = -176 +im[5326] = 0.1662 +ij[5326] = 27.3 +id[5327] = "2337-04-08T04:33:34" +ik[5327] = 0.345 +il[5327] = -115 +im[5327] = 0.132 +ij[5327] = 27.5 +id[5328] = "2337-05-09T03:28:39" +ik[5328] = 0.123 +il[5328] = -20 +im[5328] = 0.0864 +ij[5328] = 28.5 +id[5329] = "2337-05-18T09:28:00" +ik[5329] = 54.219 +il[5329] = 9 +im[5329] = 0.1124 +ij[5329] = 8 +id[5330] = "2337-05-24T07:27:37" +ik[5330] = 3.96 +il[5330] = 27 +im[5330] = 0.0906 +ij[5330] = 27.6 +id[5331] = "2337-06-03T21:51:03" +ik[5331] = 0.663 +il[5331] = 59 +im[5331] = 0.1028 +ij[5331] = 28.6 +id[5332] = "2337-07-01T19:45:15" +ik[5332] = 5.711 +il[5332] = 144 +im[5332] = 0.0774 +ij[5332] = 27.2 +id[5333] = "2337-07-05T05:50:03" +ik[5333] = 4.435 +il[5333] = 155 +im[5333] = 0.0918 +ij[5333] = 28.1 +id[5334] = "2337-07-18T20:21:07" +ik[5334] = 0.059 +il[5334] = -164 +im[5334] = 0.0949 +ij[5334] = 27.91 +id[5335] = "2337-08-29T03:58:10" +ik[5335] = 0.772 +il[5335] = -37 +im[5335] = 0.051 +ij[5335] = 28.8 +id[5336] = "2337-08-30T06:55:26" +ik[5336] = 0.357 +il[5336] = -34 +im[5336] = 0.0668 +ij[5336] = 28.7 +id[5337] = "2337-10-04T19:33:36" +ik[5337] = 1.32 +il[5337] = 55 +im[5337] = 0.0822 +ij[5337] = 12 +id[5338] = "2337-11-15T14:20:40" +ik[5338] = 4.22 +il[5338] = 0 +im[5338] = 0.0783 +ij[5338] = 27.4 +id[5339] = "2338-01-05T12:16:33" +ik[5339] = 6.278 +il[5339] = 155 +im[5339] = 0.0715 +ij[5339] = 28.1 +id[5340] = "2338-01-09T06:33:07" +ik[5340] = 0.324 +il[5340] = 166 +im[5340] = 0.0048 +ij[5340] = 27.3 +id[5341] = "2338-01-27T01:50:27" +ik[5341] = 1.159 +il[5341] = -139 +im[5341] = 0.0544 +ij[5341] = 27.5 +id[5342] = "2338-03-07T06:16:02" +ik[5342] = 53.96 +il[5342] = -17 +im[5342] = 0.0693 +ij[5342] = 9 +id[5343] = "2338-03-12T18:22:33" +ik[5343] = 1.9 +il[5343] = 1 +im[5343] = 0.0707 +ij[5343] = 27.6 +id[5344] = "2338-03-29T10:27:15" +ik[5344] = 2.057 +il[5344] = 53 +im[5344] = 0.088 +ij[5344] = 28.5 +id[5345] = "2338-04-06T08:57:24" +ik[5345] = 3.664 +il[5345] = 78 +im[5345] = 0.0748 +ij[5345] = 28.6 +id[5346] = "2338-04-21T05:56:40" +ik[5346] = 2.112 +il[5346] = 124 +im[5346] = 0.1108 +ij[5346] = 27.2 +id[5347] = "2338-05-17T23:39:30" +ik[5347] = 90 +il[5347] = -153 +im[5347] = 0.2103 +ij[5347] = 6 +id[5348] = "2338-07-03T13:28:52" +ik[5348] = 0 +il[5348] = -39 +im[5348] = 0.1686 +ij[5348] = 13 +id[5349] = "2338-07-26T05:25:26" +ik[5349] = 5.85 +il[5349] = 21 +im[5349] = 0.4821 +ij[5349] = 11 +id[5350] = "2338-08-07T16:36:13" +ik[5350] = 0.4951 +il[5350] = 5 +im[5350] = 0.4952 +ij[5350] = 2 +id[5351] = "2338-08-18T12:31:26" +ik[5351] = 45.96 +il[5351] = 20 +im[5351] = 0.3142 +ij[5351] = 7.1654 +id[5352] = "2338-09-19T23:32:13" +ik[5352] = 78.42 +il[5352] = 84 +im[5352] = 0.2279 +ij[5352] = 14 +id[5353] = "2338-10-04T19:14:09" +ik[5353] = 90 +il[5353] = 122 +im[5353] = 0.2159 +ij[5353] = 5 +id[5354] = "2338-10-07T06:01:17" +ik[5354] = 1.601 +il[5354] = 130 +im[5354] = 0.1623 +ij[5354] = 28.8 +id[5355] = "2338-10-10T03:36:08" +ik[5355] = 1.663 +il[5355] = 138 +im[5355] = 0.0528 +ij[5355] = 28.7 +id[5356] = "2338-12-18T14:48:03" +ik[5356] = 53.839 +il[5356] = -7 +im[5356] = 0.1167 +ij[5356] = 8 +id[5357] = "2339-01-08T02:09:06" +ik[5357] = 4.131 +il[5357] = 56 +im[5357] = 0.0109 +ij[5357] = 27.1 +id[5358] = "2339-01-13T22:20:29" +ik[5358] = 1.464 +il[5358] = 75 +im[5358] = 0.101 +ij[5358] = 28.4 +id[5359] = "2339-02-23T05:35:47" +ik[5359] = 0.73 +il[5359] = -160 +im[5359] = 0.0087 +ij[5359] = 27.3 +id[5360] = "2339-03-12T21:49:33" +ik[5360] = 0.742 +il[5360] = -105 +im[5360] = 0.0547 +ij[5360] = 27.5 +id[5361] = "2339-05-19T10:01:55" +ik[5361] = 0.53 +il[5361] = 79 +im[5361] = 0.0747 +ij[5361] = 12 +id[5362] = "2339-07-13T13:29:16" +ik[5362] = 1.373 +il[5362] = 66 +im[5362] = 0.071 +ij[5362] = 28.1 +id[5363] = "2339-08-03T10:25:17" +ik[5363] = 1.017 +il[5363] = 131 +im[5363] = 0.0801 +ij[5363] = 28.8 +id[5364] = "2339-08-07T18:48:48" +ik[5364] = 0.64 +il[5364] = 144 +im[5364] = 0.0085 +ij[5364] = 28.7 +id[5365] = "2339-10-04T20:08:04" +ik[5365] = 54.029 +il[5365] = -39 +im[5365] = 0.0509 +ij[5365] = 9 +id[5366] = "2339-10-19T04:01:33" +ik[5366] = 2.663 +il[5366] = 4 +im[5366] = 0.0722 +ij[5366] = 27.4 +id[5367] = "2339-12-17T14:38:53" +ik[5367] = 1 +il[5367] = -172 +im[5367] = 0.1417 +ij[5367] = 27.3 +id[5368] = "2339-12-24T13:28:18" +ik[5368] = 90 +il[5368] = -151 +im[5368] = 0.138 +ij[5368] = 6 +id[5369] = "2340-01-10T02:36:13" +ik[5369] = 0.188 +il[5369] = -108 +im[5369] = 0.2686 +ij[5369] = 27.5 +id[5370] = "2340-02-11T23:32:40" +ik[5370] = 0 +il[5370] = -31 +im[5370] = 0.3954 +ij[5370] = 13 +id[5371] = "2340-03-04T10:03:21" +ik[5371] = 8.84 +il[5371] = -8 +im[5371] = 0.4709 +ij[5371] = 11 +id[5372] = "2340-03-06T23:13:49" +ik[5372] = 0.5585 +il[5372] = 6 +im[5372] = 0.5586 +ij[5372] = 2 +id[5373] = "2340-03-25T02:02:18" +ik[5373] = 42.1 +il[5373] = 26 +im[5373] = 0.1708 +ij[5373] = 7.1599 +id[5374] = "2340-04-03T14:18:37" +ik[5374] = 5.888 +il[5374] = 42 +im[5374] = 0.3931 +ij[5374] = 27.5 +id[5375] = "2340-04-26T20:45:01" +ik[5375] = 74.88 +il[5375] = 91 +im[5375] = 0.1564 +ij[5375] = 14 +id[5376] = "2340-05-14T13:45:07" +ik[5376] = 90 +il[5376] = 137 +im[5376] = 0.1841 +ij[5376] = 5 +id[5377] = "2340-06-03T17:05:33" +ik[5377] = 4.28 +il[5377] = -161 +im[5377] = 0.1408 +ij[5377] = 27.6 +id[5378] = "2340-07-15T21:42:20" +ik[5378] = 0.211 +il[5378] = -32 +im[5378] = 0.1195 +ij[5378] = 28.6 +id[5379] = "2340-07-26T19:39:38" +ik[5379] = 54.512 +il[5379] = 1 +im[5379] = 0.0915 +ij[5379] = 8 +id[5380] = "2340-08-09T00:33:15" +ik[5380] = 0.715 +il[5380] = 41 +im[5380] = 0.0618 +ij[5380] = 28.5 +id[5381] = "2340-09-17T17:47:36" +ik[5381] = 0.456 +il[5381] = 163 +im[5381] = 0.0597 +ij[5381] = 28.8 +id[5382] = "2340-09-23T04:29:34" +ik[5382] = 0.336 +il[5382] = 179 +im[5382] = 0.0423 +ij[5382] = 28.7 +id[5383] = "2340-12-17T05:45:36" +ik[5383] = 0.13 +il[5383] = 63 +im[5383] = 0.0529 +ij[5383] = 12 +id[5384] = "2341-01-22T17:42:00" +ik[5384] = 0.898 +il[5384] = -2 +im[5384] = 0.0639 +ij[5384] = 28.4 +id[5385] = "2341-01-23T15:38:00" +ik[5385] = 0.02 +il[5385] = 1 +im[5385] = 0.0749 +ij[5385] = 27.3 +id[5386] = "2341-02-10T06:10:53" +ik[5386] = 1.07 +il[5386] = 44 +im[5386] = 0.0845 +ij[5386] = 27.5 +id[5387] = "2341-03-02T13:28:24" +ik[5387] = 3.811 +il[5387] = 107 +im[5387] = 0.0603 +ij[5387] = 28.1 +id[5388] = "2341-03-26T02:54:27" +ik[5388] = 2.57 +il[5388] = -179 +im[5388] = 0.0939 +ij[5388] = 27.6 +id[5389] = "2341-05-02T12:06:26" +ik[5389] = 3.36 +il[5389] = -62 +im[5389] = 0.0579 +ij[5389] = 27.2 +id[5390] = "2341-05-16T19:36:06" +ik[5390] = 54.562 +il[5390] = -17 +im[5390] = 0.0653 +ij[5390] = 9 +id[5391] = "2341-05-17T08:09:01" +ik[5391] = 2.726 +il[5391] = -16 +im[5391] = 0.0548 +ij[5391] = 28.6 +id[5392] = "2341-07-04T06:09:12" +ik[5392] = 0.639 +il[5392] = 131 +im[5392] = 0.0351 +ij[5392] = 28.5 +id[5393] = "2341-07-13T12:53:16" +ik[5393] = 0.488 +il[5393] = 160 +im[5393] = 0.1633 +ij[5393] = 28.8 +id[5394] = "2341-07-22T11:28:10" +ik[5394] = 0.407 +il[5394] = -173 +im[5394] = 0.1318 +ij[5394] = 28.7 +id[5395] = "2341-07-25T15:05:37" +ik[5395] = 90 +il[5395] = -164 +im[5395] = 0.196 +ij[5395] = 6 +id[5396] = "2341-09-12T20:45:28" +ik[5396] = 0 +il[5396] = -42 +im[5396] = 0.1576 +ij[5396] = 13 +id[5397] = "2341-10-04T00:44:20" +ik[5397] = 0.5503 +il[5397] = 4 +im[5397] = 0.5504 +ij[5397] = 2 +id[5398] = "2341-10-05T15:31:40" +ik[5398] = 8.18 +il[5398] = 7 +im[5398] = 0.514 +ij[5398] = 11 +id[5399] = "2341-10-26T19:48:03" +ik[5399] = 43.96 +il[5399] = 15 +im[5399] = 0.304 +ij[5399] = 7.1592 +id[5400] = "2341-11-27T17:32:46" +ik[5400] = 75.87 +il[5400] = 78 +im[5400] = 0.2826 +ij[5400] = 14 +id[5401] = "2341-12-15T07:56:37" +ik[5401] = 90 +il[5401] = 121 +im[5401] = 0.1761 +ij[5401] = 5 +id[5402] = "2342-01-19T14:46:26" +ik[5402] = 3.003 +il[5402] = -129 +im[5402] = 0.036 +ij[5402] = 27.1 +id[5403] = "2342-03-03T18:35:41" +ik[5403] = 53.768 +il[5403] = 6 +im[5403] = 0.0469 +ij[5403] = 8 +id[5404] = "2342-03-08T20:58:00" +ik[5404] = 1.344 +il[5404] = 22 +im[5404] = 0.0795 +ij[5404] = 27.3 +id[5405] = "2342-03-26T21:31:20" +ik[5405] = 0.423 +il[5405] = 78 +im[5405] = 0.105 +ij[5405] = 27.5 +id[5406] = "2342-04-04T18:59:19" +ik[5406] = 3.497 +il[5406] = 105 +im[5406] = 0.0102 +ij[5406] = 28.1 +id[5407] = "2342-05-10T06:15:28" +ik[5407] = 3.62 +il[5407] = -146 +im[5407] = 0.0921 +ij[5407] = 27.6 +id[5408] = "2342-06-16T21:45:14" +ik[5408] = 5.118 +il[5408] = -32 +im[5408] = 0.0396 +ij[5408] = 27.2 +id[5409] = "2342-07-25T16:06:14" +ik[5409] = 0.95 +il[5409] = 65 +im[5409] = 0.0827 +ij[5409] = 12 +id[5410] = "2342-08-31T12:41:43" +ik[5410] = 0.562 +il[5410] = -3 +im[5410] = 0.0251 +ij[5410] = 28.7 +id[5411] = "2342-09-08T15:39:44" +ik[5411] = 1.783 +il[5411] = 22 +im[5411] = 0.0847 +ij[5411] = 28.1 +id[5412] = "2342-09-09T22:01:03" +ik[5412] = 0.162 +il[5412] = 26 +im[5412] = 0.0872 +ij[5412] = 28.5 +id[5413] = "2342-10-20T08:38:15" +ik[5413] = 3.803 +il[5413] = 149 +im[5413] = 0.0686 +ij[5413] = 28.1 +id[5414] = "2342-10-31T23:46:26" +ik[5414] = 3.59 +il[5414] = -176 +im[5414] = 0.0165 +ij[5414] = 27.4 +id[5415] = "2342-12-19T00:13:28" +ik[5415] = 53.561 +il[5415] = -29 +im[5415] = 0.0682 +ij[5415] = 9 +id[5416] = "2342-12-26T13:18:26" +ik[5416] = 0.69 +il[5416] = -6 +im[5416] = 0.1138 +ij[5416] = 27.3 +id[5417] = "2343-01-14T01:44:40" +ik[5417] = 1.129 +il[5417] = 52 +im[5417] = 0.0352 +ij[5417] = 27.5 +id[5418] = "2343-01-28T13:27:15" +ik[5418] = 1.364 +il[5418] = 97 +im[5418] = 0.0637 +ij[5418] = 28.4 +id[5419] = "2343-03-03T15:23:26" +ik[5419] = 0.05 +il[5419] = -156 +im[5419] = 0.114 +ij[5419] = 27.6 +id[5420] = "2343-03-07T19:59:16" +ik[5420] = 90 +il[5420] = -143 +im[5420] = 0.2208 +ij[5420] = 6 +id[5421] = "2343-04-23T17:33:14" +ik[5421] = 0 +il[5421] = -29 +im[5421] = 0.32 +ij[5421] = 13 +id[5422] = "2343-05-04T08:34:52" +ik[5422] = 0.5021 +il[5422] = -12 +im[5422] = 0.5021 +ij[5422] = 2 +id[5423] = "2343-05-15T22:35:02" +ik[5423] = 3.68 +il[5423] = 18 +im[5423] = 0.4521 +ij[5423] = 11 +id[5424] = "2343-06-06T01:16:59" +ik[5424] = 43.32 +il[5424] = 27 +im[5424] = 0.0713 +ij[5424] = 7.165 +id[5425] = "2343-07-09T22:13:44" +ik[5425] = 77.19 +il[5425] = 93 +im[5425] = 0.2122 +ij[5425] = 14 +id[5426] = "2343-07-24T23:12:59" +ik[5426] = 90 +il[5426] = 133 +im[5426] = 0.204 +ij[5426] = 5 +id[5427] = "2343-08-26T09:54:00" +ik[5427] = 1.435 +il[5427] = -128 +im[5427] = 0.1582 +ij[5427] = 28.6 +id[5428] = "2343-10-05T01:31:43" +ik[5428] = 54.321 +il[5428] = -7 +im[5428] = 0.0694 +ij[5428] = 8 +id[5429] = "2343-10-07T14:59:08" +ik[5429] = 0.11 +il[5429] = 0 +im[5429] = 0.1067 +ij[5429] = 28.8 +id[5430] = "2343-10-17T09:48:23" +ik[5430] = 0.4 +il[5430] = 31 +im[5430] = 0.0239 +ij[5430] = 28.7 +id[5431] = "2343-11-20T06:52:50" +ik[5431] = 0.141 +il[5431] = 136 +im[5431] = 0.0777 +ij[5431] = 28.5 +id[5432] = "2343-12-24T20:11:46" +ik[5432] = 4.836 +il[5432] = -116 +im[5432] = 0.0884 +ij[5432] = 27.1 +id[5433] = "2344-03-04T07:52:19" +ik[5433] = 1.43 +il[5433] = 80 +im[5433] = 0.0647 +ij[5433] = 12 +id[5434] = "2344-04-09T13:30:26" +ik[5434] = 2.99 +il[5434] = 15 +im[5434] = 0.0817 +ij[5434] = 27.6 +id[5435] = "2344-04-21T11:36:57" +ik[5435] = 3.844 +il[5435] = 41 +im[5435] = 0.0874 +ij[5435] = 28.1 +id[5436] = "2344-05-15T06:28:39" +ik[5436] = 1.168 +il[5436] = 116 +im[5436] = 0.0107 +ij[5436] = 28.1 +id[5437] = "2344-05-16T09:21:59" +ik[5437] = 4.074 +il[5437] = 119 +im[5437] = 0.0324 +ij[5437] = 27.2 +id[5438] = "2344-06-27T19:20:38" +ik[5438] = 1.256 +il[5438] = -108 +im[5438] = 0.0369 +ij[5438] = 28.6 +id[5439] = "2344-07-23T10:00:11" +ik[5439] = 54.606 +il[5439] = -30 +im[5439] = 0.1166 +ij[5439] = 9 +id[5440] = "2344-07-28T21:11:48" +ik[5440] = 0.514 +il[5440] = -13 +im[5440] = 0.0204 +ij[5440] = 28.8 +id[5441] = "2344-08-10T03:01:00" +ik[5441] = 0.024 +il[5441] = 24 +im[5441] = 0.0671 +ij[5441] = 28.7 +id[5442] = "2344-10-06T09:13:35" +ik[5442] = 90 +il[5442] = -162 +im[5442] = 0.1884 +ij[5442] = 6 +id[5443] = "2344-10-11T05:25:06" +ik[5443] = 0.403 +il[5443] = -148 +im[5443] = 0.0201 +ij[5443] = 27.4 +id[5444] = "2344-10-22T23:44:26" +ik[5444] = 4.687 +il[5444] = -118 +im[5444] = 0.1724 +ij[5444] = 28.5 +id[5445] = "2344-11-26T22:14:11" +ik[5445] = 0 +il[5445] = -35 +im[5445] = 0.3296 +ij[5445] = 13 +id[5446] = "2344-12-14T06:41:10" +ik[5446] = 0.5501 +il[5446] = 0 +im[5446] = 0.5501 +ij[5446] = 2 +id[5447] = "2344-12-17T23:34:04" +ik[5447] = 0.98 +il[5447] = 8 +im[5447] = 0.3309 +ij[5447] = 11 +id[5448] = "2345-01-07T21:18:46" +ik[5448] = 41.96 +il[5448] = 21 +im[5448] = 0.4216 +ij[5448] = 7.1541 +id[5449] = "2345-02-08T01:35:34" +ik[5449] = 73.14 +il[5449] = 82 +im[5449] = 0.2738 +ij[5449] = 14 +id[5450] = "2345-02-27T08:16:58" +ik[5450] = 90 +il[5450] = 130 +im[5450] = 0.0802 +ij[5450] = 5 +id[5451] = "2345-03-19T11:55:19" +ik[5451] = 2.728 +il[5451] = -167 +im[5451] = 0.1325 +ij[5451] = 27.3 +id[5452] = "2345-04-07T21:43:19" +ik[5452] = 0.302 +il[5452] = -106 +im[5452] = 0.1428 +ij[5452] = 27.5 +id[5453] = "2345-05-06T02:01:32" +ik[5453] = 0.008 +il[5453] = -19 +im[5453] = 0.1153 +ij[5453] = 28.4 +id[5454] = "2345-05-16T00:45:32" +ik[5454] = 54.203 +il[5454] = 12 +im[5454] = 0.0447 +ij[5454] = 8 +id[5455] = "2345-05-23T22:09:21" +ik[5455] = 3.95 +il[5455] = 36 +im[5455] = 0.1144 +ij[5455] = 27.6 +id[5456] = "2345-07-01T09:19:54" +ik[5456] = 5.689 +il[5456] = 153 +im[5456] = 0.0486 +ij[5456] = 27.2 +id[5457] = "2345-07-18T09:37:26" +ik[5457] = 0.08 +il[5457] = -155 +im[5457] = 0.075 +ij[5457] = 27.91 +id[5458] = "2345-08-19T05:18:08" +ik[5458] = 0.019 +il[5458] = -63 +im[5458] = 0.0823 +ij[5458] = 28.6 +id[5459] = "2345-10-02T10:45:07" +ik[5459] = 1.34 +il[5459] = 57 +im[5459] = 0.082 +ij[5459] = 12 +id[5460] = "2345-11-15T03:37:06" +ik[5460] = 4.204 +il[5460] = 8 +im[5460] = 0.06 +ij[5460] = 27.4 +id[5461] = "2345-12-18T09:41:36" +ik[5461] = 0.079 +il[5461] = 109 +im[5461] = 0.0927 +ij[5461] = 28.1 +id[5462] = "2345-12-20T05:43:17" +ik[5462] = 0.94 +il[5462] = 115 +im[5462] = 0.0896 +ij[5462] = 28.5 +id[5463] = "2346-01-08T20:08:39" +ik[5463] = 0.333 +il[5463] = 175 +im[5463] = 0.038 +ij[5463] = 27.3 +id[5464] = "2346-01-26T15:45:59" +ik[5464] = 1.159 +il[5464] = -130 +im[5464] = 0.0157 +ij[5464] = 27.5 +id[5465] = "2346-03-04T19:25:33" +ik[5465] = 53.937 +il[5465] = -14 +im[5465] = 0.1141 +ij[5465] = 9 +id[5466] = "2346-03-12T09:29:21" +ik[5466] = 1.86 +il[5466] = 10 +im[5466] = 0.0251 +ij[5466] = 27.6 +id[5467] = "2346-04-21T00:34:52" +ik[5467] = 2.05 +il[5467] = 133 +im[5467] = 0.1497 +ij[5467] = 27.2 +id[5468] = "2346-05-15T17:33:20" +ik[5468] = 90 +il[5468] = -150 +im[5468] = 0.1861 +ij[5468] = 6 +id[5469] = "2346-07-02T01:36:01" +ik[5469] = 0 +il[5469] = -34 +im[5469] = 0.3603 +ij[5469] = 13 +id[5470] = "2346-07-23T21:51:50" +ik[5470] = 5.6 +il[5470] = 23 +im[5470] = 0.4017 +ij[5470] = 11 +id[5471] = "2346-07-26T09:56:21" +ik[5471] = 0.4982 +il[5471] = -1 +im[5471] = 0.4983 +ij[5471] = 2 +id[5472] = "2346-08-15T00:38:35" +ik[5472] = 43.96 +il[5472] = 21 +im[5472] = 0.1081 +ij[5472] = 7.1662 +id[5473] = "2346-09-17T17:44:21" +ik[5473] = 77.67 +il[5473] = 87 +im[5473] = 0.2122 +ij[5473] = 14 +id[5474] = "2346-10-02T11:07:41" +ik[5474] = 90 +il[5474] = 125 +im[5474] = 0.1813 +ij[5474] = 5 +id[5475] = "2346-10-04T01:05:57" +ik[5475] = 2.655 +il[5475] = 130 +im[5475] = 0.205 +ij[5475] = 28.6 +id[5476] = "2346-10-23T21:56:44" +ik[5476] = 0.529 +il[5476] = -170 +im[5476] = 0.1081 +ij[5476] = 28.8 +id[5477] = "2346-11-07T21:21:01" +ik[5477] = 0.532 +il[5477] = -124 +im[5477] = 0.0996 +ij[5477] = 28.7 +id[5478] = "2346-12-16T03:32:41" +ik[5478] = 53.852 +il[5478] = -5 +im[5478] = 0.1102 +ij[5478] = 8 +id[5479] = "2347-01-07T16:23:45" +ik[5479] = 4.16 +il[5479] = 65 +im[5479] = 0.0491 +ij[5479] = 27.1 +id[5480] = "2347-02-22T19:07:46" +ik[5480] = 0.716 +il[5480] = -151 +im[5480] = 0.0443 +ij[5480] = 27.3 +id[5481] = "2347-02-25T08:42:00" +ik[5481] = 0.123 +il[5481] = -143 +im[5481] = 0.0118 +ij[5481] = 28.5 +id[5482] = "2347-03-12T11:09:59" +ik[5482] = 0.748 +il[5482] = -96 +im[5482] = 0.0191 +ij[5482] = 27.5 +id[5483] = "2347-04-08T07:26:15" +ik[5483] = 1.751 +il[5483] = -25 +im[5483] = 0.0451 +ij[5483] = 28.1 +id[5484] = "2347-05-17T03:00:00" +ik[5484] = 0.58 +il[5484] = 82 +im[5484] = 0.0771 +ij[5484] = 12 +id[5485] = "2347-06-18T15:00:25" +ik[5485] = 0.209 +il[5485] = -1 +im[5485] = 0.0812 +ij[5485] = 27.9 +id[5486] = "2347-07-27T03:38:52" +ik[5486] = 3.392 +il[5486] = 119 +im[5486] = 0.0393 +ij[5486] = 28.1 +id[5487] = "2347-08-10T09:18:34" +ik[5487] = 0.3 +il[5487] = 162 +im[5487] = 0.0213 +ij[5487] = 28.6 +id[5488] = "2347-08-17T12:09:21" +ik[5488] = 0.349 +il[5488] = -176 +im[5488] = 0.096 +ij[5488] = 28.8 +id[5489] = "2347-09-02T12:05:36" +ik[5489] = 0.074 +il[5489] = -127 +im[5489] = 0.0997 +ij[5489] = 28.7 +id[5490] = "2347-10-02T10:03:49" +ik[5490] = 54.053 +il[5490] = -36 +im[5490] = 0.1112 +ij[5490] = 9 +id[5491] = "2347-10-18T19:49:59" +ik[5491] = 2.623 +il[5491] = 13 +im[5491] = 0.1137 +ij[5491] = 27.4 +id[5492] = "2347-12-17T14:07:19" +ik[5492] = 0.991 +il[5492] = -162 +im[5492] = 0.1896 +ij[5492] = 27.3 +id[5493] = "2347-12-22T01:07:59" +ik[5493] = 90 +il[5493] = -148 +im[5493] = 0.0403 +ij[5493] = 6 +id[5494] = "2348-01-10T18:46:26" +ik[5494] = 0.399 +il[5494] = -98 +im[5494] = 0.2511 +ij[5494] = 27.5 +id[5495] = "2348-02-04T02:08:44" +ik[5495] = 6.267 +il[5495] = -44 +im[5495] = 0.0564 +ij[5495] = 28.5 +id[5496] = "2348-02-08T17:44:48" +ik[5496] = 0 +il[5496] = -41 +im[5496] = 0.4077 +ij[5496] = 13 +id[5497] = "2348-03-01T23:05:16" +ik[5497] = 8.8 +il[5497] = 18 +im[5497] = 0.1007 +ij[5497] = 11 +id[5498] = "2348-03-08T01:23:20" +ik[5498] = 0.5457 +il[5498] = 11 +im[5498] = 0.5457 +ij[5498] = 2 +id[5499] = "2348-03-22T17:52:23" +ik[5499] = 43.01 +il[5499] = 29 +im[5499] = 0.3914 +ij[5499] = 7.1594 +id[5500] = "2348-04-04T14:14:52" +ik[5500] = 4.988 +il[5500] = 51 +im[5500] = 0.3737 +ij[5500] = 27.5 +id[5501] = "2348-04-18T18:53:25" +ik[5501] = 2.874 +il[5501] = 81 +im[5501] = 0.2703 +ij[5501] = 28.5 +id[5502] = "2348-04-24T07:56:08" +ik[5502] = 75.59 +il[5502] = 93 +im[5502] = 0.062 +ij[5502] = 14 +id[5503] = "2348-05-12T04:03:07" +ik[5503] = 90 +il[5503] = 139 +im[5503] = 0.0599 +ij[5503] = 5 +id[5504] = "2348-06-03T12:50:19" +ik[5504] = 4.27 +il[5504] = -152 +im[5504] = 0.163 +ij[5504] = 27.6 +id[5505] = "2348-07-14T15:20:21" +ik[5505] = 6.49 +il[5505] = -26 +im[5505] = 0.1189 +ij[5505] = 27.2 +id[5506] = "2348-07-24T12:50:56" +ik[5506] = 54.51 +il[5506] = 4 +im[5506] = 0.0067 +ij[5506] = 8 +id[5507] = "2348-10-01T08:10:19" +ik[5507] = 0.742 +il[5507] = -145 +im[5507] = 0.082 +ij[5507] = 28.6 +id[5508] = "2348-10-01T18:17:25" +ik[5508] = 0.327 +il[5508] = -144 +im[5508] = 0.0784 +ij[5508] = 28.8 +id[5509] = "2348-10-18T10:25:14" +ik[5509] = 0.692 +il[5509] = -92 +im[5509] = 0.0725 +ij[5509] = 28.7 +id[5510] = "2348-12-14T17:18:14" +ik[5510] = 0.06 +il[5510] = 65 +im[5510] = 0.0851 +ij[5510] = 12 +id[5511] = "2349-01-23T04:52:12" +ik[5511] = 0.026 +il[5511] = 10 +im[5511] = 0.0488 +ij[5511] = 27.3 +id[5512] = "2349-01-25T09:37:35" +ik[5512] = 2.104 +il[5512] = 16 +im[5512] = 0.0774 +ij[5512] = 28.1 +id[5513] = "2349-02-09T19:24:39" +ik[5513] = 1.072 +il[5513] = 53 +im[5513] = 0.0699 +ij[5513] = 27.5 +id[5514] = "2349-02-16T22:29:08" +ik[5514] = 3.431 +il[5514] = 75 +im[5514] = 0.0501 +ij[5514] = 28.1 +id[5515] = "2349-03-19T13:38:12" +ik[5515] = 0.617 +il[5515] = 170 +im[5515] = 0.045 +ij[5515] = 28.5 +id[5516] = "2349-03-25T16:31:11" +ik[5516] = 2.55 +il[5516] = -171 +im[5516] = 0.067 +ij[5516] = 27.6 +id[5517] = "2349-05-02T02:33:59" +ik[5517] = 3.331 +il[5517] = -53 +im[5517] = 0.0898 +ij[5517] = 27.2 +id[5518] = "2349-05-14T13:05:11" +ik[5518] = 54.548 +il[5518] = -15 +im[5518] = 0.119 +ij[5518] = 9 +id[5519] = "2349-06-09T00:54:34" +ik[5519] = 0.334 +il[5519] = 64 +im[5519] = 0.1089 +ij[5519] = 28.4 +id[5520] = "2349-07-23T07:02:41" +ik[5520] = 90 +il[5520] = -161 +im[5520] = 0.1121 +ij[5520] = 6 +id[5521] = "2349-07-31T11:09:01" +ik[5521] = 1.652 +il[5521] = -138 +im[5521] = 0.1277 +ij[5521] = 28.8 +id[5522] = "2349-08-14T08:01:58" +ik[5522] = 4.63 +il[5522] = -106 +im[5522] = 0.2263 +ij[5522] = 28.6 +id[5523] = "2349-08-29T23:37:58" +ik[5523] = 5.823 +il[5523] = -74 +im[5523] = 0.1528 +ij[5523] = 28.7 +id[5524] = "2349-09-11T07:56:35" +ik[5524] = 0 +il[5524] = -52 +im[5524] = 0.3641 +ij[5524] = 13 +id[5525] = "2349-10-03T05:11:02" +ik[5525] = 8.3 +il[5525] = 6 +im[5525] = 0.5043 +ij[5525] = 11 +id[5526] = "2349-10-05T02:04:15" +ik[5526] = 0.5522 +il[5526] = -5 +im[5526] = 0.5522 +ij[5526] = 2 +id[5527] = "2349-10-20T03:39:44" +ik[5527] = 2.013 +il[5527] = 11 +im[5527] = 0.3957 +ij[5527] = 27.7 +id[5528] = "2349-10-24T06:59:09" +ik[5528] = 42.96 +il[5528] = 17 +im[5528] = 0.0428 +ij[5528] = 7.1598 +id[5529] = "2349-11-02T17:46:45" +ik[5529] = 5.168 +il[5529] = 33 +im[5529] = 0.3761 +ij[5529] = 28.6 +id[5530] = "2349-11-20T19:57:47" +ik[5530] = 0.025 +il[5530] = 70 +im[5530] = 0.0683 +ij[5530] = 28.7 +id[5531] = "2349-11-25T10:32:53" +ik[5531] = 75.11 +il[5531] = 81 +im[5531] = 0.1835 +ij[5531] = 14 +id[5532] = "2349-12-12T21:39:14" +ik[5532] = 90 +il[5532] = 124 +im[5532] = 0.1949 +ij[5532] = 5 +id[5533] = "2350-01-19T08:25:58" +ik[5533] = 3.058 +il[5533] = -120 +im[5533] = 0.0334 +ij[5533] = 27.1 +id[5534] = "2350-03-01T06:23:25" +ik[5534] = 53.76 +il[5534] = 8 +im[5534] = 0.1129 +ij[5534] = 8 +id[5535] = "2350-03-08T11:33:32" +ik[5535] = 1.318 +il[5535] = 30 +im[5535] = 0.0421 +ij[5535] = 27.3 +id[5536] = "2350-03-26T11:37:59" +ik[5536] = 0.437 +il[5536] = 86 +im[5536] = 0.0815 +ij[5536] = 27.5 +id[5537] = "2350-05-09T19:42:10" +ik[5537] = 3.61 +il[5537] = -138 +im[5537] = 0.0716 +ij[5537] = 27.6 +id[5538] = "2350-05-24T17:22:50" +ik[5538] = 0.018 +il[5538] = -92 +im[5538] = 0.0562 +ij[5538] = 28.5 +id[5539] = "2350-06-16T10:46:07" +ik[5539] = 5.1 +il[5539] = -23 +im[5539] = 0.0689 +ij[5539] = 27.2 +id[5540] = "2350-06-17T15:20:52" +ik[5540] = 1.844 +il[5540] = -20 +im[5540] = 0.0526 +ij[5540] = 28.1 +id[5541] = "2350-07-23T10:39:21" +ik[5541] = 0.91 +il[5541] = 68 +im[5541] = 0.0534 +ij[5541] = 12 +id[5542] = "2350-09-06T01:35:54" +ik[5542] = 0.2 +il[5542] = 24 +im[5542] = 0.0368 +ij[5542] = 28.8 +id[5543] = "2350-09-23T18:13:23" +ik[5543] = 1.476 +il[5543] = 78 +im[5543] = 0.0859 +ij[5543] = 28.6 +id[5544] = "2350-09-25T22:24:31" +ik[5544] = 0.182 +il[5544] = 85 +im[5544] = 0.0957 +ij[5544] = 28.7 +id[5545] = "2350-10-01T00:26:29" +ik[5545] = 3.674 +il[5545] = 100 +im[5545] = 0.0556 +ij[5545] = 28.1 +id[5546] = "2350-10-31T13:41:58" +ik[5546] = 3.568 +il[5546] = -167 +im[5546] = 0.0545 +ij[5546] = 27.4 +id[5547] = "2350-12-16T10:46:33" +ik[5547] = 53.564 +il[5547] = -27 +im[5547] = 0.0375 +ij[5547] = 9 +id[5548] = "2350-12-26T04:29:05" +ik[5548] = 0.701 +il[5548] = 3 +im[5548] = 0.1262 +ij[5548] = 27.3 +id[5549] = "2351-01-13T18:01:59" +ik[5549] = 1.119 +il[5549] = 61 +im[5549] = 0.0915 +ij[5549] = 27.5 +id[5550] = "2351-03-03T15:12:09" +ik[5550] = 0.08 +il[5550] = -148 +im[5550] = 0.0621 +ij[5550] = 27.6 +id[5551] = "2351-03-05T11:20:58" +ik[5551] = 90 +il[5551] = -140 +im[5551] = 0.1391 +ij[5551] = 6 +id[5552] = "2351-04-21T10:33:20" +ik[5552] = 0 +il[5552] = -27 +im[5552] = 0.3921 +ij[5552] = 13 +id[5553] = "2351-05-05T13:22:05" +ik[5553] = 0.524 +il[5553] = 0 +im[5553] = 0.524 +ij[5553] = 2 +id[5554] = "2351-05-13T15:02:52" +ik[5554] = 3.99 +il[5554] = 20 +im[5554] = 0.1628 +ij[5554] = 11 +id[5555] = "2351-06-04T09:35:54" +ik[5555] = 43.96 +il[5555] = 31 +im[5555] = 0.3094 +ij[5555] = 7.1648 +id[5556] = "2351-07-07T13:11:38" +ik[5556] = 77.11 +il[5556] = 96 +im[5556] = 0.0452 +ij[5556] = 14 +id[5557] = "2351-07-22T15:52:31" +ik[5557] = 90 +il[5557] = 136 +im[5557] = 0.0978 +ij[5557] = 5 +id[5558] = "2351-07-24T09:56:00" +ik[5558] = 2.484 +il[5558] = 141 +im[5558] = 0.1559 +ij[5558] = 28.5 +id[5559] = "2351-10-02T17:24:48" +ik[5559] = 54.335 +il[5559] = -5 +im[5559] = 0.0251 +ij[5559] = 8 +id[5560] = "2351-10-21T22:41:31" +ik[5560] = 0.193 +il[5560] = 54 +im[5560] = 0.0722 +ij[5560] = 28.8 +id[5561] = "2351-10-29T20:39:49" +ik[5561] = 0.23 +il[5561] = 79 +im[5561] = 0.0766 +ij[5561] = 28.4 +id[5562] = "2351-11-11T22:09:07" +ik[5562] = 0.956 +il[5562] = 120 +im[5562] = 0.093 +ij[5562] = 28.7 +id[5563] = "2351-11-16T01:05:05" +ik[5563] = 0.919 +il[5563] = 132 +im[5563] = 0.0328 +ij[5563] = 28.6 +id[5564] = "2351-12-24T09:33:32" +ik[5564] = 4.857 +il[5564] = -108 +im[5564] = 0.0862 +ij[5564] = 27.1 +id[5565] = "2352-01-13T23:46:01" +ik[5565] = 2.498 +il[5565] = -44 +im[5565] = 0.0588 +ij[5565] = 28.1 +id[5566] = "2352-03-01T18:20:09" +ik[5566] = 1.42 +il[5566] = 82 +im[5566] = 0.0044 +ij[5566] = 12 +id[5567] = "2352-04-09T02:33:13" +ik[5567] = 2.97 +il[5567] = 13 +im[5567] = 0.0864 +ij[5567] = 27.6 +id[5568] = "2352-04-22T21:44:38" +ik[5568] = 2.068 +il[5568] = 56 +im[5568] = 0.0899 +ij[5568] = 28.1 +id[5569] = "2352-05-15T22:45:58" +ik[5569] = 4.055 +il[5569] = 128 +im[5569] = 0.01 +ij[5569] = 27.2 +id[5570] = "2352-06-18T19:15:44" +ik[5570] = 1.106 +il[5570] = -126 +im[5570] = 0.0706 +ij[5570] = 28.5 +id[5571] = "2352-07-21T03:47:02" +ik[5571] = 54.616 +il[5571] = -27 +im[5571] = 0.1112 +ij[5571] = 9 +id[5572] = "2352-08-12T18:47:13" +ik[5572] = 0.621 +il[5572] = 42 +im[5572] = 0.0466 +ij[5572] = 28.8 +id[5573] = "2352-09-06T17:35:48" +ik[5573] = 1.681 +il[5573] = 118 +im[5573] = 0.1617 +ij[5573] = 28.7 +id[5574] = "2352-09-21T23:31:37" +ik[5574] = 4.583 +il[5574] = 164 +im[5574] = 0.1819 +ij[5574] = 28.6 +id[5575] = "2352-10-03T21:18:01" +ik[5575] = 90 +il[5575] = -160 +im[5575] = 0.2072 +ij[5575] = 6 +id[5576] = "2352-10-11T10:24:12" +ik[5576] = 0.262 +il[5576] = -138 +im[5576] = 0.1017 +ij[5576] = 27.4 +id[5577] = "2352-11-23T13:12:05" +ik[5577] = 0 +il[5577] = -33 +im[5577] = 0.1322 +ij[5577] = 13 +id[5578] = "2352-12-15T05:19:50" +ik[5578] = 0.5444 +il[5578] = 14 +im[5578] = 0.5445 +ij[5578] = 2 +id[5579] = "2352-12-15T12:38:52" +ik[5579] = 0.57 +il[5579] = 13 +im[5579] = 0.5428 +ij[5579] = 11 +id[5580] = "2353-01-05T00:05:45" +ik[5580] = 42.45 +il[5580] = 23 +im[5580] = 0.0951 +ij[5580] = 7.1539 +id[5581] = "2353-02-05T12:57:29" +ik[5581] = 73.99 +il[5581] = 85 +im[5581] = 0.2119 +ij[5581] = 14 +id[5582] = "2353-02-24T20:24:57" +ik[5582] = 90 +il[5582] = 132 +im[5582] = 0.2119 +ij[5582] = 5 +id[5583] = "2353-03-19T07:20:12" +ik[5583] = 2.649 +il[5583] = -157 +im[5583] = 0.0828 +ij[5583] = 27.3 +id[5584] = "2353-04-07T14:42:52" +ik[5584] = 0.262 +il[5584] = -97 +im[5584] = 0.1357 +ij[5584] = 27.5 +id[5585] = "2353-05-13T15:55:57" +ik[5585] = 54.186 +il[5585] = 14 +im[5585] = 0.0515 +ij[5585] = 8 +id[5586] = "2353-05-23T12:39:13" +ik[5586] = 3.93 +il[5586] = 44 +im[5586] = 0.1161 +ij[5586] = 27.6 +id[5587] = "2353-06-30T22:52:47" +ik[5587] = 5.668 +il[5587] = 162 +im[5587] = 0.0125 +ij[5587] = 27.2 +id[5588] = "2353-07-17T22:52:19" +ik[5588] = 0.1 +il[5588] = -147 +im[5588] = 0.0421 +ij[5588] = 27.91 +id[5589] = "2353-08-25T18:50:24" +ik[5589] = 2.968 +il[5589] = -28 +im[5589] = 0.058 +ij[5589] = 28.1 +id[5590] = "2353-08-28T00:35:25" +ik[5590] = 0.036 +il[5590] = -21 +im[5590] = 0.0218 +ij[5590] = 28.5 +id[5591] = "2353-09-30T02:06:43" +ik[5591] = 1.35 +il[5591] = 60 +im[5591] = 0.0305 +ij[5591] = 12 +id[5592] = "2353-11-09T04:44:24" +ik[5592] = 1.829 +il[5592] = 0 +im[5592] = 0.0675 +ij[5592] = 28.6 +id[5593] = "2353-11-14T16:57:05" +ik[5593] = 4.188 +il[5593] = 17 +im[5593] = 0.0318 +ij[5593] = 27.4 +id[5594] = "2353-11-23T20:34:39" +ik[5594] = 0.213 +il[5594] = 44 +im[5594] = 0.0671 +ij[5594] = 28.4 +id[5595] = "2353-11-29T22:55:55" +ik[5595] = 0.486 +il[5595] = 63 +im[5595] = 0.0319 +ij[5595] = 28.1 +id[5596] = "2354-01-08T09:50:52" +ik[5596] = 0.342 +il[5596] = -177 +im[5596] = 0.07 +ij[5596] = 27.3 +id[5597] = "2354-01-26T05:41:58" +ik[5597] = 1.158 +il[5597] = -122 +im[5597] = 0.035 +ij[5597] = 27.5 +id[5598] = "2354-03-02T08:24:24" +ik[5598] = 53.913 +il[5598] = -12 +im[5598] = 0.0772 +ij[5598] = 9 +id[5599] = "2354-03-12T00:39:09" +ik[5599] = 1.83 +il[5599] = 18 +im[5599] = 0.0321 +ij[5599] = 27.6 +id[5600] = "2354-04-20T19:34:25" +ik[5600] = 1.986 +il[5600] = 143 +im[5600] = 0.1675 +ij[5600] = 27.2 +id[5601] = "2354-05-13T11:27:10" +ik[5601] = 90 +il[5601] = -147 +im[5601] = 0.0505 +ij[5601] = 6 +id[5602] = "2354-06-29T12:57:56" +ik[5602] = 0 +il[5602] = -32 +im[5602] = 0.3962 +ij[5602] = 13 +id[5603] = "2354-07-21T14:24:00" +ik[5603] = 5.35 +il[5603] = 26 +im[5603] = 0.0738 +ij[5603] = 11 +id[5604] = "2354-07-27T08:52:05" +ik[5604] = 0.5015 +il[5604] = 4 +im[5604] = 0.5016 +ij[5604] = 2 +id[5605] = "2354-08-12T14:28:34" +ik[5605] = 44.06 +il[5605] = 23 +im[5605] = 0.3682 +ij[5605] = 7.1663 +id[5606] = "2354-09-15T11:03:16" +ik[5606] = 77.92 +il[5606] = 90 +im[5606] = 0.0597 +ij[5606] = 14 +id[5607] = "2354-09-30T03:05:38" +ik[5607] = 90 +il[5607] = 128 +im[5607] = 0.0409 +ij[5607] = 5 +id[5608] = "2354-11-04T21:41:11" +ik[5608] = 0.248 +il[5608] = -123 +im[5608] = 0.146 +ij[5608] = 28.5 +id[5609] = "2354-11-08T12:13:15" +ik[5609] = 0.118 +il[5609] = -112 +im[5609] = 0.1096 +ij[5609] = 28.8 +id[5610] = "2354-12-04T13:27:41" +ik[5610] = 1.431 +il[5610] = -31 +im[5610] = 0.1187 +ij[5610] = 28.7 +id[5611] = "2354-12-13T16:24:25" +ik[5611] = 53.866 +il[5611] = -3 +im[5611] = 0.0326 +ij[5611] = 8 +id[5612] = "2355-01-01T09:43:03" +ik[5612] = 0.323 +il[5612] = 56 +im[5612] = 0.0843 +ij[5612] = 28.6 +id[5613] = "2355-01-07T06:38:25" +ik[5613] = 4.189 +il[5613] = 74 +im[5613] = 0.0816 +ij[5613] = 27.1 +id[5614] = "2355-02-22T08:35:45" +ik[5614] = 0.702 +il[5614] = -142 +im[5614] = 0.073 +ij[5614] = 27.3 +id[5615] = "2355-03-12T00:26:51" +ik[5615] = 0.755 +il[5615] = -88 +im[5615] = 0.0259 +ij[5615] = 27.5 +id[5616] = "2355-03-16T15:47:39" +ik[5616] = 2.403 +il[5616] = -74 +im[5616] = 0.0533 +ij[5616] = 28.1 +id[5617] = "2355-05-14T19:50:52" +ik[5617] = 0.63 +il[5617] = 85 +im[5617] = 0.0309 +ij[5617] = 12 +id[5618] = "2355-06-18T01:58:22" +ik[5618] = 0.244 +il[5618] = 7 +im[5618] = 0.082 +ij[5618] = 27.9 +id[5619] = "2355-08-31T18:47:39" +ik[5619] = 0.481 +il[5619] = -122 +im[5619] = 0.091 +ij[5619] = 28.8 +id[5620] = "2355-09-28T16:12:17" +ik[5620] = 0.916 +il[5620] = -38 +im[5620] = 0.0689 +ij[5620] = 28.7 +id[5621] = "2355-09-30T00:10:13" +ik[5621] = 54.077 +il[5621] = -34 +im[5621] = 0.0917 +ij[5621] = 9 +id[5622] = "2355-10-01T08:39:59" +ik[5622] = 1.59 +il[5622] = -30 +im[5622] = 0.1078 +ij[5622] = 28.5 +id[5623] = "2355-10-18T11:45:05" +ik[5623] = 2.583 +il[5623] = 22 +im[5623] = 0.1368 +ij[5623] = 27.4 +id[5624] = "2355-11-06T22:55:46" +ik[5624] = 3.541 +il[5624] = 82 +im[5624] = 0.0525 +ij[5624] = 28.6 +id[5625] = "2355-12-09T17:40:50" +ik[5625] = 0.097 +il[5625] = -177 +im[5625] = 0.0425 +ij[5625] = 28.4 +id[5626] = "2355-12-17T14:31:45" +ik[5626] = 0.978 +il[5626] = -152 +im[5626] = 0.2155 +ij[5626] = 27.3 +id[5627] = "2355-12-19T12:41:28" +ik[5627] = 90 +il[5627] = -146 +im[5627] = 0.1837 +ij[5627] = 6 +id[5628] = "2356-01-11T15:49:31" +ik[5628] = 0.66 +il[5628] = -88 +im[5628] = 0.2277 +ij[5628] = 27.5 +id[5629] = "2356-02-06T11:03:43" +ik[5629] = 0 +il[5629] = -30 +im[5629] = 0.1587 +ij[5629] = 13 +id[5630] = "2356-02-24T20:50:57" +ik[5630] = 0.5322 +il[5630] = 8 +im[5630] = 0.5323 +ij[5630] = 2 +id[5631] = "2356-02-28T12:04:19" +ik[5631] = 8.75 +il[5631] = 16 +im[5631] = 0.3556 +ij[5631] = 11 +id[5632] = "2356-03-20T11:09:18" +ik[5632] = 43 +il[5632] = 32 +im[5632] = 0.3813 +ij[5632] = 7.1592 +id[5633] = "2356-04-06T15:17:05" +ik[5633] = 4.321 +il[5633] = 62 +im[5633] = 0.3375 +ij[5633] = 27.5 +id[5634] = "2356-04-21T20:13:06" +ik[5634] = 75.38 +il[5634] = 96 +im[5634] = 0.2325 +ij[5634] = 14 +id[5635] = "2356-05-09T18:19:21" +ik[5635] = 90 +il[5635] = 142 +im[5635] = 0.1092 +ij[5635] = 5 +id[5636] = "2356-06-03T08:11:06" +ik[5636] = 4.27 +il[5636] = -142 +im[5636] = 0.1626 +ij[5636] = 27.6 +id[5637] = "2356-07-14T06:32:46" +ik[5637] = 6.456 +il[5637] = -17 +im[5637] = 0.0938 +ij[5637] = 27.2 +id[5638] = "2356-07-22T05:58:41" +ik[5638] = 54.507 +il[5638] = 7 +im[5638] = 0.0853 +ij[5638] = 8 +id[5639] = "2356-10-15T18:00:25" +ik[5639] = 0.054 +il[5639] = -91 +im[5639] = 0.0897 +ij[5639] = 28.8 +id[5640] = "2356-12-12T04:55:12" +ik[5640] = 0 +il[5640] = 67 +im[5640] = 0.0578 +ij[5640] = 12 +id[5641] = "2357-01-22T18:02:25" +ik[5641] = 0.023 +il[5641] = 18 +im[5641] = 0.0128 +ij[5641] = 27.3 +id[5642] = "2357-01-28T00:39:53" +ik[5642] = 2.8 +il[5642] = 23 +im[5642] = 0.0849 +ij[5642] = 28.1 +id[5643] = "2357-02-09T08:41:05" +ik[5643] = 1.074 +il[5643] = 61 +im[5643] = 0.0448 +ij[5643] = 27.5 +id[5644] = "2357-03-25T06:11:00" +ik[5644] = 2.54 +il[5644] = -162 +im[5644] = 0.027 +ij[5644] = 27.6 +id[5645] = "2357-05-01T17:01:31" +ik[5645] = 3.302 +il[5645] = -45 +im[5645] = 0.1068 +ij[5645] = 27.2 +id[5646] = "2357-05-12T06:27:09" +ik[5646] = 54.534 +il[5646] = -12 +im[5646] = 0.1024 +ij[5646] = 9 +id[5647] = "2357-07-20T23:04:10" +ik[5647] = 90 +il[5647] = -158 +im[5647] = 0.0476 +ij[5647] = 6 +id[5648] = "2357-08-23T00:27:04" +ik[5648] = 5.545 +il[5648] = -80 +im[5648] = 0.2095 +ij[5648] = 28.8 +id[5649] = "2357-09-08T20:13:32" +ik[5649] = 0 +il[5649] = -46 +im[5649] = 0.4235 +ij[5649] = 13 +id[5650] = "2357-09-30T18:59:02" +ik[5650] = 8.4 +il[5650] = 12 +im[5650] = 0.1954 +ij[5650] = 11 +id[5651] = "2357-10-06T07:10:28" +ik[5651] = 0.5406 +il[5651] = 1 +im[5651] = 0.5406 +ij[5651] = 2 +id[5652] = "2357-10-14T04:00:11" +ik[5652] = 0.173 +il[5652] = 9 +im[5652] = 0.1404 +ij[5652] = 27.7 +id[5653] = "2357-10-21T20:19:07" +ik[5653] = 43 +il[5653] = 19 +im[5653] = 0.3454 +ij[5653] = 7.1601 +id[5654] = "2357-11-16T09:11:48" +ik[5654] = 1.259 +il[5654] = 68 +im[5654] = 0.2818 +ij[5654] = 28.8 +id[5655] = "2357-11-23T03:00:52" +ik[5655] = 75.28 +il[5655] = 83 +im[5655] = 0.0206 +ij[5655] = 14 +id[5656] = "2357-12-10T11:29:49" +ik[5656] = 90 +il[5656] = 126 +im[5656] = 0.0707 +ij[5656] = 5 +id[5657] = "2357-12-24T07:18:20" +ik[5657] = 2.341 +il[5657] = 169 +im[5657] = 0.0443 +ij[5657] = 28.7 +id[5658] = "2358-01-19T01:54:24" +ik[5658] = 3.111 +il[5658] = -122 +im[5658] = 0.0911 +ij[5658] = 27.1 +id[5659] = "2358-02-14T06:59:54" +ik[5659] = 1.094 +il[5659] = -29 +im[5659] = 0.1298 +ij[5659] = 28.5 +id[5660] = "2358-02-17T11:29:45" +ik[5660] = 0.726 +il[5660] = -19 +im[5660] = 0.0945 +ij[5660] = 28.6 +id[5661] = "2358-02-26T18:07:37" +ik[5661] = 53.752 +il[5661] = 10 +im[5661] = 0.1021 +ij[5661] = 8 +id[5662] = "2358-03-08T02:08:38" +ik[5662] = 1.292 +il[5662] = 39 +im[5662] = 0.0099 +ij[5662] = 27.3 +id[5663] = "2358-03-15T02:40:07" +ik[5663] = 1.262 +il[5663] = 61 +im[5663] = 0.1145 +ij[5663] = 28.4 +id[5664] = "2358-03-26T01:43:44" +ik[5664] = 0.45 +il[5664] = 95 +im[5664] = 0.0453 +ij[5664] = 27.5 +id[5665] = "2358-05-09T09:08:57" +ik[5665] = 3.6 +il[5665] = -129 +im[5665] = 0.0381 +ij[5665] = 27.6 +id[5666] = "2358-05-24T02:31:46" +ik[5666] = 0.884 +il[5666] = -84 +im[5666] = 0.0209 +ij[5666] = 28.1 +id[5667] = "2358-06-15T23:44:20" +ik[5667] = 5.083 +il[5667] = -15 +im[5667] = 0.0848 +ij[5667] = 27.2 +id[5668] = "2358-07-21T05:11:02" +ik[5668] = 0.87 +il[5668] = 71 +im[5668] = 0.0127 +ij[5668] = 12 +id[5669] = "2358-09-20T02:49:29" +ik[5669] = 0.448 +il[5669] = 77 +im[5669] = 0.0059 +ij[5669] = 28.8 +id[5670] = "2358-10-21T19:30:51" +ik[5670] = 0.508 +il[5670] = 173 +im[5670] = 0.0343 +ij[5670] = 28.7 +id[5671] = "2358-10-31T03:36:37" +ik[5671] = 3.546 +il[5671] = -159 +im[5671] = 0.0845 +ij[5671] = 27.4 +id[5672] = "2358-12-13T21:19:38" +ik[5672] = 53.568 +il[5672] = -25 +im[5672] = 0.1122 +ij[5672] = 9 +id[5673] = "2358-12-23T11:42:17" +ik[5673] = 1.418 +il[5673] = 5 +im[5673] = 0.082 +ij[5673] = 28.6 +id[5674] = "2358-12-25T19:46:24" +ik[5674] = 0.711 +il[5674] = 12 +im[5674] = 0.1164 +ij[5674] = 27.3 +id[5675] = "2359-01-06T19:19:37" +ik[5675] = 0.727 +il[5675] = 49 +im[5675] = 0.096 +ij[5675] = 28.5 +id[5676] = "2359-01-13T10:29:04" +ik[5676] = 1.108 +il[5676] = 70 +im[5676] = 0.1322 +ij[5676] = 27.5 +id[5677] = "2359-03-03T02:28:30" +ik[5677] = 90 +il[5677] = -138 +im[5677] = 0.0365 +ij[5677] = 6 +id[5678] = "2359-03-03T16:07:53" +ik[5678] = 0.22 +il[5678] = -137 +im[5678] = 0.0108 +ij[5678] = 27.6 +id[5679] = "2359-04-19T03:01:19" +ik[5679] = 0 +il[5679] = -23 +im[5679] = 0.2081 +ij[5679] = 13 +id[5680] = "2359-05-06T18:38:25" +ik[5680] = 0.5351 +il[5680] = 13 +im[5680] = 0.5352 +ij[5680] = 2 +id[5681] = "2359-05-11T07:29:16" +ik[5681] = 4.29 +il[5681] = 24 +im[5681] = 0.267 +ij[5681] = 11 +id[5682] = "2359-06-01T10:13:55" +ik[5682] = 43.3 +il[5682] = 32 +im[5682] = 0.4373 +ij[5682] = 7.1648 +id[5683] = "2359-07-05T03:55:39" +ik[5683] = 77.04 +il[5683] = 99 +im[5683] = 0.1579 +ij[5683] = 14 +id[5684] = "2359-07-20T08:28:30" +ik[5684] = 90 +il[5684] = 139 +im[5684] = 0.0693 +ij[5684] = 5 +id[5685] = "2359-09-30T09:21:26" +ik[5685] = 54.348 +il[5685] = -2 +im[5685] = 0.101 +ij[5685] = 8 +id[5686] = "2359-11-05T03:16:16" +ik[5686] = 0.096 +il[5686] = 108 +im[5686] = 0.0297 +ij[5686] = 28.8 +id[5687] = "2359-12-07T16:50:35" +ik[5687] = 0.89 +il[5687] = -150 +im[5687] = 0.0691 +ij[5687] = 28.7 +id[5688] = "2359-12-23T22:51:17" +ik[5688] = 4.878 +il[5688] = -99 +im[5688] = 0.0709 +ij[5688] = 27.1 +id[5689] = "2359-12-24T20:09:44" +ik[5689] = 2.035 +il[5689] = -96 +im[5689] = 0.0795 +ij[5689] = 28.1 +id[5690] = "2360-02-28T04:39:21" +ik[5690] = 1.41 +il[5690] = 84 +im[5690] = 0.0684 +ij[5690] = 12 +id[5691] = "2360-04-08T15:41:49" +ik[5691] = 2.96 +il[5691] = 21 +im[5691] = 0.0759 +ij[5691] = 27.6 +id[5692] = "2360-05-15T12:09:57" +ik[5692] = 4.035 +il[5692] = 137 +im[5692] = 0.0434 +ij[5692] = 27.2 +id[5693] = "2360-07-18T21:37:27" +ik[5693] = 54.625 +il[5693] = -24 +im[5693] = 0.0393 +ij[5693] = 9 +id[5694] = "2360-08-28T05:51:02" +ik[5694] = 1.993 +il[5694] = 99 +im[5694] = 0.0869 +ij[5694] = 28.8 +id[5695] = "2360-10-01T09:28:39" +ik[5695] = 90 +il[5695] = -157 +im[5695] = 0.0886 +ij[5695] = 6 +id[5696] = "2360-10-07T22:56:12" +ik[5696] = 3.86 +il[5696] = -138 +im[5696] = 0.2396 +ij[5696] = 28.7 +id[5697] = "2360-10-11T17:01:04" +ik[5697] = 0.112 +il[5697] = -128 +im[5697] = 0.1602 +ij[5697] = 27.4 +id[5698] = "2360-11-22T03:56:06" +ik[5698] = 0 +il[5698] = -28 +im[5698] = 0.3423 +ij[5698] = 13 +id[5699] = "2360-12-03T02:38:40" +ik[5699] = 0.5537 +il[5699] = -10 +im[5699] = 0.5538 +ij[5699] = 2 +id[5700] = "2360-12-13T01:46:33" +ik[5700] = 0.17 +il[5700] = 15 +im[5700] = 0.3865 +ij[5700] = 11 +id[5701] = "2360-12-24T06:23:17" +ik[5701] = 2.709 +il[5701] = 13 +im[5701] = 0.242 +ij[5701] = 27.1 +id[5702] = "2361-01-03T04:01:41" +ik[5702] = 42 +il[5702] = 26 +im[5702] = 0.2403 +ij[5702] = 7.1543 +id[5703] = "2361-01-11T11:29:57" +ik[5703] = 0.591 +il[5703] = 40 +im[5703] = 0.3766 +ij[5703] = 27.1 +id[5704] = "2361-02-03T02:49:22" +ik[5704] = 72.95 +il[5704] = 87 +im[5704] = 0.0465 +ij[5704] = 14 +id[5705] = "2361-02-22T08:35:35" +ik[5705] = 90 +il[5705] = 135 +im[5705] = 0.2051 +ij[5705] = 5 +id[5706] = "2361-03-19T02:23:17" +ik[5706] = 2.575 +il[5706] = -160 +im[5706] = 0.0235 +ij[5706] = 27.3 +id[5707] = "2361-04-04T12:16:16" +ik[5707] = 1.43 +il[5707] = -97 +im[5707] = 0.0361 +ij[5707] = 28.6 +id[5708] = "2361-04-07T07:31:17" +ik[5708] = 0.223 +il[5708] = -88 +im[5708] = 0.1102 +ij[5708] = 27.5 +id[5709] = "2361-05-11T06:59:15" +ik[5709] = 54.17 +il[5709] = 17 +im[5709] = 0.1122 +ij[5709] = 8 +id[5710] = "2361-05-15T04:04:39" +ik[5710] = 0.235 +il[5710] = 29 +im[5710] = 0.0574 +ij[5710] = 28.5 +id[5711] = "2361-05-23T03:14:44" +ik[5711] = 3.92 +il[5711] = 53 +im[5711] = 0.0979 +ij[5711] = 27.6 +id[5712] = "2361-06-30T12:22:33" +ik[5712] = 5.646 +il[5712] = 170 +im[5712] = 0.0278 +ij[5712] = 27.2 +id[5713] = "2361-07-17T12:31:40" +ik[5713] = 0.127 +il[5713] = -138 +im[5713] = 0.0077 +ij[5713] = 27.91 +id[5714] = "2361-08-04T00:47:39" +ik[5714] = 3.024 +il[5714] = -85 +im[5714] = 0.0585 +ij[5714] = 28.1 +id[5715] = "2361-09-27T17:39:50" +ik[5715] = 1.37 +il[5715] = 63 +im[5715] = 0.039 +ij[5715] = 12 +id[5716] = "2361-11-09T19:14:09" +ik[5716] = 1.289 +il[5716] = 12 +im[5716] = 0.0759 +ij[5716] = 28.1 +id[5717] = "2361-11-14T06:16:37" +ik[5717] = 4.172 +il[5717] = 25 +im[5717] = 0.0081 +ij[5717] = 27.4 +id[5718] = "2361-11-14T17:40:59" +ik[5718] = 0.195 +il[5718] = 27 +im[5718] = 0.009 +ij[5718] = 28.7 +id[5719] = "2362-01-07T23:29:31" +ik[5719] = 0.35 +il[5719] = -168 +im[5719] = 0.09 +ij[5719] = 27.3 +id[5720] = "2362-01-25T19:41:04" +ik[5720] = 1.158 +il[5720] = -113 +im[5720] = 0.0737 +ij[5720] = 27.5 +id[5721] = "2362-02-07T10:14:52" +ik[5721] = 0.702 +il[5721] = -74 +im[5721] = 0.0964 +ij[5721] = 28.6 +id[5722] = "2362-02-27T21:12:36" +ik[5722] = 53.891 +il[5722] = -10 +im[5722] = 0.0168 +ij[5722] = 9 +id[5723] = "2362-03-11T15:56:34" +ik[5723] = 1.79 +il[5723] = 27 +im[5723] = 0.0801 +ij[5723] = 27.6 +id[5724] = "2362-03-28T00:53:51" +ik[5724] = 1.341 +il[5724] = 79 +im[5724] = 0.0658 +ij[5724] = 28.4 +id[5725] = "2362-04-04T19:56:21" +ik[5725] = 2.498 +il[5725] = 103 +im[5725] = 0.1418 +ij[5725] = 28.5 +id[5726] = "2362-04-20T14:51:17" +ik[5726] = 1.919 +il[5726] = 152 +im[5726] = 0.1602 +ij[5726] = 27.2 +id[5727] = "2362-05-11T05:20:06" +ik[5727] = 90 +il[5727] = -144 +im[5727] = 0.1149 +ij[5727] = 6 +id[5728] = "2362-06-27T02:49:49" +ik[5728] = 0 +il[5728] = -30 +im[5728] = 0.1654 +ij[5728] = 13 +id[5729] = "2362-07-19T06:59:02" +ik[5729] = 5.09 +il[5729] = 28 +im[5729] = 0.3434 +ij[5729] = 11 +id[5730] = "2362-07-28T13:49:55" +ik[5730] = 0.5002 +il[5730] = 11 +im[5730] = 0.5003 +ij[5730] = 2 +id[5731] = "2362-08-10T07:20:33" +ik[5731] = 44.19 +il[5731] = 26 +im[5731] = 0.3885 +ij[5731] = 7.1663 +id[5732] = "2362-09-13T04:00:17" +ik[5732] = 78.05 +il[5732] = 93 +im[5732] = 0.1364 +ij[5732] = 14 +id[5733] = "2362-09-27T19:05:22" +ik[5733] = 90 +il[5733] = 131 +im[5733] = 0.134 +ij[5733] = 5 +id[5734] = "2362-11-23T07:15:36" +ik[5734] = 0.261 +il[5734] = -56 +im[5734] = 0.1361 +ij[5734] = 28.8 +id[5735] = "2362-12-11T05:23:17" +ik[5735] = 53.88 +il[5735] = -1 +im[5735] = 0.0655 +ij[5735] = 8 +id[5736] = "2362-12-31T05:39:41" +ik[5736] = 1.372 +il[5736] = 62 +im[5736] = 0.0349 +ij[5736] = 28.7 +id[5737] = "2363-01-06T20:49:04" +ik[5737] = 4.217 +il[5737] = 83 +im[5737] = 0.1023 +ij[5737] = 27.1 +id[5738] = "2363-02-21T22:03:44" +ik[5738] = 0.688 +il[5738] = -134 +im[5738] = 0.0883 +ij[5738] = 27.3 +id[5739] = "2363-02-23T08:51:47" +ik[5739] = 2.717 +il[5739] = -129 +im[5739] = 0.0753 +ij[5739] = 28.1 +id[5740] = "2363-03-11T13:43:44" +ik[5740] = 0.762 +il[5740] = -79 +im[5740] = 0.0624 +ij[5740] = 27.5 +id[5741] = "2363-04-01T03:13:40" +ik[5741] = 0.86 +il[5741] = -16 +im[5741] = 0.045 +ij[5741] = 28.6 +id[5742] = "2363-05-12T12:30:14" +ik[5742] = 0.68 +il[5742] = 88 +im[5742] = 0.0382 +ij[5742] = 12 +id[5743] = "2363-06-17T18:51:24" +ik[5743] = 0.2 +il[5743] = 16 +im[5743] = 0.0709 +ij[5743] = 27.9 +id[5744] = "2363-09-15T06:46:35" +ik[5744] = 1.414 +il[5744] = -69 +im[5744] = 0.0868 +ij[5744] = 28.8 +id[5745] = "2363-09-27T14:23:45" +ik[5745] = 54.1 +il[5745] = -31 +im[5745] = 0.0139 +ij[5745] = 9 +id[5746] = "2363-10-18T03:47:17" +ik[5746] = 2.541 +il[5746] = 31 +im[5746] = 0.1356 +ij[5746] = 27.4 +id[5747] = "2363-10-26T08:31:20" +ik[5747] = 1.982 +il[5747] = 56 +im[5747] = 0.0202 +ij[5747] = 28.7 +id[5748] = "2363-12-17T00:09:38" +ik[5748] = 90 +il[5748] = -144 +im[5748] = 0.2113 +ij[5748] = 6 +id[5749] = "2363-12-17T15:53:04" +ik[5749] = 0.961 +il[5749] = -143 +im[5749] = 0.2181 +ij[5749] = 27.3 +id[5750] = "2364-01-12T19:56:10" +ik[5750] = 0.996 +il[5750] = -78 +im[5750] = 0.2125 +ij[5750] = 27.5 +id[5751] = "2364-02-04T04:00:44" +ik[5751] = 0 +il[5751] = -29 +im[5751] = 0.2165 +ij[5751] = 13 +id[5752] = "2364-02-25T21:37:20" +ik[5752] = 0.5473 +il[5752] = 18 +im[5752] = 0.5473 +ij[5752] = 2 +id[5753] = "2364-02-26T01:01:55" +ik[5753] = 8.69 +il[5753] = 17 +im[5753] = 0.547 +ij[5753] = 11 +id[5754] = "2364-03-18T04:04:18" +ik[5754] = 43 +il[5754] = 34 +im[5754] = 0.1127 +ij[5754] = 7.1589 +id[5755] = "2364-04-08T01:02:50" +ik[5755] = 3.819 +il[5755] = 73 +im[5755] = 0.3084 +ij[5755] = 27.5 +id[5756] = "2364-04-19T08:24:06" +ik[5756] = 75.18 +il[5756] = 98 +im[5756] = 0.2424 +ij[5756] = 14 +id[5757] = "2364-05-07T08:26:44" +ik[5757] = 90 +il[5757] = 144 +im[5757] = 0.2018 +ij[5757] = 5 +id[5758] = "2364-05-17T09:07:27" +ik[5758] = 1.103 +il[5758] = 175 +im[5758] = 0.1468 +ij[5758] = 28.6 +id[5759] = "2364-06-03T03:06:28" +ik[5759] = 4.26 +il[5759] = -133 +im[5759] = 0.1426 +ij[5759] = 27.6 +id[5760] = "2364-07-13T21:38:59" +ik[5760] = 6.423 +il[5760] = -8 +im[5760] = 0.0524 +ij[5760] = 27.2 +id[5761] = "2364-07-19T09:07:12" +ik[5761] = 1.677 +il[5761] = 8 +im[5761] = 0.1241 +ij[5761] = 28.4 +id[5762] = "2364-07-19T23:06:26" +ik[5762] = 54.503 +il[5762] = 10 +im[5762] = 0.1243 +ij[5762] = 8 +id[5763] = "2364-08-15T14:30:20" +ik[5763] = 0.524 +il[5763] = 91 +im[5763] = 0.0864 +ij[5763] = 28.5 +id[5764] = "2364-10-07T00:18:43" +ik[5764] = 1.079 +il[5764] = -108 +im[5764] = 0.0586 +ij[5764] = 28.1 +id[5765] = "2364-10-25T13:24:14" +ik[5765] = 1.25 +il[5765] = -50 +im[5765] = 0.0096 +ij[5765] = 28.1 +id[5766] = "2364-10-29T16:07:40" +ik[5766] = 0.321 +il[5766] = -37 +im[5766] = 0.0722 +ij[5766] = 28.8 +id[5767] = "2364-12-09T16:43:40" +ik[5767] = 0.05 +il[5767] = 69 +im[5767] = 0.0101 +ij[5767] = 12 +id[5768] = "2365-01-22T07:13:04" +ik[5768] = 0.034 +il[5768] = 16 +im[5768] = 0.028 +ij[5768] = 27.3 +id[5769] = "2365-02-08T21:58:24" +ik[5769] = 1.076 +il[5769] = 70 +im[5769] = 0.0146 +ij[5769] = 27.5 +id[5770] = "2365-03-23T21:06:54" +ik[5770] = 1.932 +il[5770] = -156 +im[5770] = 0.0367 +ij[5770] = 28.6 +id[5771] = "2365-03-24T19:44:19" +ik[5771] = 2.52 +il[5771] = -153 +im[5771] = 0.0199 +ij[5771] = 27.6 +id[5772] = "2365-05-01T07:36:37" +ik[5772] = 3.272 +il[5772] = -36 +im[5772] = 0.106 +ij[5772] = 27.2 +id[5773] = "2365-05-09T23:45:34" +ik[5773] = 54.519 +il[5773] = -9 +im[5773] = 0.0237 +ij[5773] = 9 +id[5774] = "2365-07-13T04:28:59" +ik[5774] = 0.08 +il[5774] = -172 +im[5774] = 0.1714 +ij[5774] = 28.5 +id[5775] = "2365-07-18T15:15:23" +ik[5775] = 90 +il[5775] = -155 +im[5775] = 0.1781 +ij[5775] = 6 +id[5776] = "2365-09-06T08:24:33" +ik[5776] = 0 +il[5776] = -32 +im[5776] = 0.2007 +ij[5776] = 13 +id[5777] = "2365-09-28T08:49:55" +ik[5777] = 8.48 +il[5777] = 26 +im[5777] = 0.2529 +ij[5777] = 11 +id[5778] = "2365-10-06T15:12:31" +ik[5778] = 1.068 +il[5778] = 6 +im[5778] = 0.5105 +ij[5778] = 27.7 +id[5779] = "2365-10-07T09:52:22" +ik[5779] = 0.5189 +il[5779] = 7 +im[5779] = 0.519 +ij[5779] = 2 +id[5780] = "2365-10-19T08:09:12" +ik[5780] = 42.99 +il[5780] = 22 +im[5780] = 0.4101 +ij[5780] = 7.1604 +id[5781] = "2365-11-20T19:25:00" +ik[5781] = 75.46 +il[5781] = 86 +im[5781] = 0.2088 +ij[5781] = 14 +id[5782] = "2365-12-06T15:20:26" +ik[5782] = 0.482 +il[5782] = 125 +im[5782] = 0.1636 +ij[5782] = 28.8 +id[5783] = "2365-12-08T01:26:36" +ik[5783] = 90 +il[5783] = 129 +im[5783] = 0.1077 +ij[5783] = 5 +id[5784] = "2366-01-18T19:08:37" +ik[5784] = 3.163 +il[5784] = -102 +im[5784] = 0.1346 +ij[5784] = 27.1 +id[5785] = "2366-01-22T13:05:13" +ik[5785] = 2.199 +il[5785] = -90 +im[5785] = 0.05 +ij[5785] = 28.7 +id[5786] = "2366-02-24T05:48:15" +ik[5786] = 53.745 +il[5786] = 12 +im[5786] = 0.0201 +ij[5786] = 8 +id[5787] = "2366-03-07T16:40:10" +ik[5787] = 1.268 +il[5787] = 48 +im[5787] = 0.0447 +ij[5787] = 27.3 +id[5788] = "2366-03-25T15:47:17" +ik[5788] = 0.464 +il[5788] = 104 +im[5788] = 0.0107 +ij[5788] = 27.5 +id[5789] = "2366-04-30T15:09:04" +ik[5789] = 0.027 +il[5789] = -146 +im[5789] = 0.0898 +ij[5789] = 28.1 +id[5790] = "2366-05-08T22:28:14" +ik[5790] = 3.59 +il[5790] = -121 +im[5790] = 0.0078 +ij[5790] = 27.6 +id[5791] = "2366-05-15T14:19:40" +ik[5791] = 1.086 +il[5791] = -100 +im[5791] = 0.0881 +ij[5791] = 28.6 +id[5792] = "2366-06-09T19:00:28" +ik[5792] = 0.106 +il[5792] = -24 +im[5792] = 0.0219 +ij[5792] = 28.1 +id[5793] = "2366-06-15T12:43:52" +ik[5793] = 5.066 +il[5793] = -17 +im[5793] = 0.0847 +ij[5793] = 27.2 +id[5794] = "2366-07-18T23:48:28" +ik[5794] = 0.83 +il[5794] = 74 +im[5794] = 0.0673 +ij[5794] = 12 +id[5795] = "2366-08-18T17:21:33" +ik[5795] = 3.48 +il[5795] = -12 +im[5795] = 0.0593 +ij[5795] = 28.1 +id[5796] = "2366-08-25T22:59:13" +ik[5796] = 0.945 +il[5796] = 10 +im[5796] = 0.0607 +ij[5796] = 28.4 +id[5797] = "2366-09-17T01:27:50" +ik[5797] = 0.346 +il[5797] = 78 +im[5797] = 0.0713 +ij[5797] = 28.5 +id[5798] = "2366-10-04T04:40:04" +ik[5798] = 1.152 +il[5798] = 130 +im[5798] = 0.0565 +ij[5798] = 28.8 +id[5799] = "2366-10-30T17:35:43" +ik[5799] = 3.523 +il[5799] = -150 +im[5799] = 0.0994 +ij[5799] = 27.4 +id[5800] = "2366-11-17T23:24:51" +ik[5800] = 1.212 +il[5800] = -94 +im[5800] = 0.0672 +ij[5800] = 28.7 +id[5801] = "2366-12-11T07:56:16" +ik[5801] = 53.574 +il[5801] = -23 +im[5801] = 0.1145 +ij[5801] = 9 +id[5802] = "2366-12-25T11:11:17" +ik[5802] = 0.721 +il[5802] = 21 +im[5802] = 0.0887 +ij[5802] = 27.3 +id[5803] = "2367-01-13T03:04:10" +ik[5803] = 1.097 +il[5803] = 79 +im[5803] = 0.1524 +ij[5803] = 27.5 +id[5804] = "2367-02-28T17:32:30" +ik[5804] = 90 +il[5804] = -135 +im[5804] = 0.1814 +ij[5804] = 6 +id[5805] = "2367-03-03T18:00:04" +ik[5805] = 0.36 +il[5805] = -127 +im[5805] = 0.0816 +ij[5805] = 27.6 +id[5806] = "2367-04-15T19:25:27" +ik[5806] = 0 +il[5806] = -22 +im[5806] = 0.2034 +ij[5806] = 13 +id[5807] = "2367-05-07T20:54:51" +ik[5807] = 0.5343 +il[5807] = -11 +im[5807] = 0.5344 +ij[5807] = 2 +id[5808] = "2367-05-08T23:47:02" +ik[5808] = 4.58 +il[5808] = 0 +im[5808] = 0.5165 +ij[5808] = 11 +id[5809] = "2367-05-29T22:20:13" +ik[5809] = 44.12 +il[5809] = 35 +im[5809] = 0.2447 +ij[5809] = 7.1643 +id[5810] = "2367-06-21T12:53:42" +ik[5810] = 0.528 +il[5810] = 77 +im[5810] = 0.1586 +ij[5810] = 28.6 +id[5811] = "2367-07-02T17:32:00" +ik[5811] = 77.92 +il[5811] = 101 +im[5811] = 0.2593 +ij[5811] = 14 +id[5812] = "2367-07-18T01:04:29" +ik[5812] = 90 +il[5812] = 142 +im[5812] = 0.1851 +ij[5812] = 5 +id[5813] = "2367-09-28T01:21:37" +ik[5813] = 54.361 +il[5813] = 1 +im[5813] = 0.1124 +ij[5813] = 8 +id[5814] = "2367-11-19T04:38:47" +ik[5814] = 0.138 +il[5814] = 162 +im[5814] = 0.0418 +ij[5814] = 28.8 +id[5815] = "2367-11-27T10:26:32" +ik[5815] = 0.105 +il[5815] = -172 +im[5815] = 0.0905 +ij[5815] = 28.5 +id[5816] = "2367-12-06T19:55:20" +ik[5816] = 1.765 +il[5816] = -143 +im[5816] = 0.0259 +ij[5816] = 28.1 +id[5817] = "2367-12-23T12:12:36" +ik[5817] = 4.899 +il[5817] = -91 +im[5817] = 0.0434 +ij[5817] = 27.1 +id[5818] = "2368-01-01T03:40:01" +ik[5818] = 2.096 +il[5818] = -64 +im[5818] = 0.0592 +ij[5818] = 28.1 +id[5819] = "2368-01-03T12:23:36" +ik[5819] = 0.377 +il[5819] = -56 +im[5819] = 0.0235 +ij[5819] = 28.7 +id[5820] = "2368-02-25T14:49:55" +ik[5820] = 1.39 +il[5820] = 86 +im[5820] = 0.0865 +ij[5820] = 12 +id[5821] = "2368-04-08T04:50:04" +ik[5821] = 2.95 +il[5821] = 30 +im[5821] = 0.0529 +ij[5821] = 27.6 +id[5822] = "2368-05-05T20:38:24" +ik[5822] = 2.098 +il[5822] = 116 +im[5822] = 0.0154 +ij[5822] = 28.6 +id[5823] = "2368-05-15T01:34:23" +ik[5823] = 4.016 +il[5823] = 145 +im[5823] = 0.0729 +ij[5823] = 27.2 +id[5824] = "2368-06-17T05:13:37" +ik[5824] = 5.921 +il[5824] = -111 +im[5824] = 0.0341 +ij[5824] = 28.1 +id[5825] = "2368-07-16T15:34:58" +ik[5825] = 54.633 +il[5825] = -21 +im[5825] = 0.0568 +ij[5825] = 9 +id[5826] = "2368-09-13T04:23:22" +ik[5826] = 3.521 +il[5826] = 157 +im[5826] = 0.1344 +ij[5826] = 28.8 +id[5827] = "2368-09-28T21:47:14" +ik[5827] = 90 +il[5827] = -155 +im[5827] = 0.0917 +ij[5827] = 6 +id[5828] = "2368-10-05T16:33:44" +ik[5828] = 2.605 +il[5828] = -135 +im[5828] = 0.2004 +ij[5828] = 28.4 +id[5829] = "2368-10-12T01:35:43" +ik[5829] = 0.05 +il[5829] = -119 +im[5829] = 0.2109 +ij[5829] = 27.4 +id[5830] = "2368-11-18T17:32:27" +ik[5830] = 0 +il[5830] = -29 +im[5830] = 0.3892 +ij[5830] = 13 +id[5831] = "2368-12-04T06:51:35" +ik[5831] = 0.569 +il[5831] = 1 +im[5831] = 0.5691 +ij[5831] = 2 +id[5832] = "2368-12-06T13:12:25" +ik[5832] = 2.067 +il[5832] = -4 +im[5832] = 0.4945 +ij[5832] = 28.5 +id[5833] = "2368-12-10T14:58:33" +ik[5833] = 0.23 +il[5833] = 5 +im[5833] = 0.063 +ij[5833] = 11 +id[5834] = "2368-12-15T21:43:43" +ik[5834] = 4.432 +il[5834] = 9 +im[5834] = 0.5052 +ij[5834] = 27.1 +id[5835] = "2368-12-31T01:46:03" +ik[5835] = 42.34 +il[5835] = 27 +im[5835] = 0.4811 +ij[5835] = 7.1541 +id[5836] = "2369-01-15T02:32:36" +ik[5836] = 0.598 +il[5836] = 54 +im[5836] = 0.3099 +ij[5836] = 27.1 +id[5837] = "2369-01-18T17:04:07" +ik[5837] = 4.029 +il[5837] = 61 +im[5837] = 0.0991 +ij[5837] = 28.5 +id[5838] = "2369-01-31T14:24:46" +ik[5838] = 73.87 +il[5838] = 89 +im[5838] = 0.2178 +ij[5838] = 14 +id[5839] = "2369-02-08T02:43:17" +ik[5839] = 4.299 +il[5839] = 107 +im[5839] = 0.1755 +ij[5839] = 28.7 +id[5840] = "2369-02-19T20:47:06" +ik[5840] = 90 +il[5840] = 137 +im[5840] = 0.0684 +ij[5840] = 5 +id[5841] = "2369-03-18T21:09:03" +ik[5841] = 2.504 +il[5841] = -139 +im[5841] = 0.0442 +ij[5841] = 27.3 +id[5842] = "2369-04-07T00:09:57" +ik[5842] = 0.186 +il[5842] = -79 +im[5842] = 0.0694 +ij[5842] = 27.5 +id[5843] = "2369-05-08T21:58:59" +ik[5843] = 54.154 +il[5843] = 20 +im[5843] = 0.0987 +ij[5843] = 8 +id[5844] = "2369-06-27T09:12:05" +ik[5844] = 0.641 +il[5844] = 171 +im[5844] = 0.0892 +ij[5844] = 28.6 +id[5845] = "2369-06-30T01:53:12" +ik[5845] = 5.625 +il[5845] = 179 +im[5845] = 0.0586 +ij[5845] = 27.2 +id[5846] = "2369-07-14T00:12:31" +ik[5846] = 2.921 +il[5846] = -139 +im[5846] = 0.0828 +ij[5846] = 28.1 +id[5847] = "2369-07-17T01:17:45" +ik[5847] = 0.14 +il[5847] = -130 +im[5847] = 0.0393 +ij[5847] = 27.91 +id[5848] = "2369-07-31T08:46:01" +ik[5848] = 0.464 +il[5848] = -86 +im[5848] = 0.0347 +ij[5848] = 28.1 +id[5849] = "2369-09-25T09:15:50" +ik[5849] = 1.38 +il[5849] = 65 +im[5849] = 0.0826 +ij[5849] = 12 +id[5850] = "2369-11-13T19:37:03" +ik[5850] = 4.156 +il[5850] = 34 +im[5850] = 0.0394 +ij[5850] = 27.4 +id[5851] = "2369-12-12T01:58:22" +ik[5851] = 0.758 +il[5851] = 120 +im[5851] = 0.0688 +ij[5851] = 28.7 +id[5852] = "2369-12-26T16:41:57" +ik[5852] = 0.939 +il[5852] = 164 +im[5852] = 0.0879 +ij[5852] = 28.5 +id[5853] = "2370-01-07T13:15:16" +ik[5853] = 0.359 +il[5853] = -159 +im[5853] = 0.0958 +ij[5853] = 27.3 +id[5854] = "2370-01-25T09:44:36" +ik[5854] = 1.157 +il[5854] = -104 +im[5854] = 0.0998 +ij[5854] = 27.5 +id[5855] = "2370-02-25T09:50:07" +ik[5855] = 53.868 +il[5855] = -7 +im[5855] = 0.0987 +ij[5855] = 9 +id[5856] = "2370-03-11T07:22:04" +ik[5856] = 1.76 +il[5856] = 36 +im[5856] = 0.1171 +ij[5856] = 27.6 +id[5857] = "2370-04-20T10:33:29" +ik[5857] = 1.85 +il[5857] = 162 +im[5857] = 0.1317 +ij[5857] = 27.2 +id[5858] = "2370-05-02T17:56:41" +ik[5858] = 4.352 +il[5858] = -160 +im[5858] = 0.1113 +ij[5858] = 28.6 +id[5859] = "2370-05-08T23:10:23" +ik[5859] = 90 +il[5859] = -141 +im[5859] = 0.2138 +ij[5859] = 6 +id[5860] = "2370-06-24T14:25:13" +ik[5860] = 0 +il[5860] = -27 +im[5860] = 0.188 +ij[5860] = 13 +id[5861] = "2370-07-16T23:39:50" +ik[5861] = 4.82 +il[5861] = 32 +im[5861] = 0.4886 +ij[5861] = 11 +id[5862] = "2370-07-29T17:31:08" +ik[5862] = 0.491 +il[5862] = 17 +im[5862] = 0.491 +ij[5862] = 2 +id[5863] = "2370-08-07T22:36:49" +ik[5863] = 44.34 +il[5863] = 29 +im[5863] = 0.1649 +ij[5863] = 7.1662 +id[5864] = "2370-09-10T20:45:35" +ik[5864] = 78.26 +il[5864] = 96 +im[5864] = 0.2353 +ij[5864] = 14 +id[5865] = "2370-09-25T11:09:30" +ik[5865] = 90 +il[5865] = 133 +im[5865] = 0.2211 +ij[5865] = 5 +id[5866] = "2370-12-07T20:15:21" +ik[5866] = 0.218 +il[5866] = -1 +im[5866] = 0.1178 +ij[5866] = 28.8 +id[5867] = "2370-12-08T18:29:15" +ik[5867] = 53.895 +il[5867] = 2 +im[5867] = 0.117 +ij[5867] = 8 +id[5868] = "2371-01-06T10:54:49" +ik[5868] = 4.245 +il[5868] = 91 +im[5868] = 0.1052 +ij[5868] = 27.1 +id[5869] = "2371-01-20T02:47:02" +ik[5869] = 1.393 +il[5869] = 134 +im[5869] = 0.0824 +ij[5869] = 28.4 +id[5870] = "2371-01-27T22:57:04" +ik[5870] = 0.695 +il[5870] = 158 +im[5870] = 0.0452 +ij[5870] = 28.7 +id[5871] = "2371-02-04T15:08:12" +ik[5871] = 2.632 +il[5871] = -179 +im[5871] = 0.092 +ij[5871] = 28.1 +id[5872] = "2371-02-21T11:28:36" +ik[5872] = 0.675 +il[5872] = -125 +im[5872] = 0.0892 +ij[5872] = 27.3 +id[5873] = "2371-03-03T09:43:03" +ik[5873] = 0.048 +il[5873] = -95 +im[5873] = 0.0429 +ij[5873] = 28.5 +id[5874] = "2371-03-11T03:01:30" +ik[5874] = 0.768 +il[5874] = -71 +im[5874] = 0.0871 +ij[5874] = 27.5 +id[5875] = "2371-03-13T05:41:34" +ik[5875] = 3.786 +il[5875] = -64 +im[5875] = 0.0648 +ij[5875] = 28.1 +id[5876] = "2371-05-10T04:58:04" +ik[5876] = 0.73 +il[5876] = 91 +im[5876] = 0.0826 +ij[5876] = 12 +id[5877] = "2371-06-17T10:20:47" +ik[5877] = 0.207 +il[5877] = 25 +im[5877] = 0.048 +ij[5877] = 27.9 +id[5878] = "2371-06-17T23:48:28" +ik[5878] = 1.473 +il[5878] = 27 +im[5878] = 0.0567 +ij[5878] = 28.6 +id[5879] = "2371-08-11T12:01:09" +ik[5879] = 3.926 +il[5879] = -164 +im[5879] = 0.0455 +ij[5879] = 28.1 +id[5880] = "2371-09-25T04:47:56" +ik[5880] = 54.124 +il[5880] = -29 +im[5880] = 0.0798 +ij[5880] = 9 +id[5881] = "2371-09-29T18:06:54" +ik[5881] = 2.345 +il[5881] = -15 +im[5881] = 0.0333 +ij[5881] = 28.8 +id[5882] = "2371-10-17T19:57:03" +ik[5882] = 2.497 +il[5882] = 40 +im[5882] = 0.1099 +ij[5882] = 27.4 +id[5883] = "2371-11-25T22:09:41" +ik[5883] = 2.361 +il[5883] = 160 +im[5883] = 0.0446 +ij[5883] = 28.7 +id[5884] = "2371-12-14T11:37:49" +ik[5884] = 90 +il[5884] = -142 +im[5884] = 0.0881 +ij[5884] = 6 +id[5885] = "2371-12-17T18:21:29" +ik[5885] = 0.938 +il[5885] = -133 +im[5885] = 0.1984 +ij[5885] = 27.3 +id[5886] = "2372-01-14T11:00:36" +ik[5886] = 1.449 +il[5886] = -67 +im[5886] = 0.2284 +ij[5886] = 27.5 +id[5887] = "2372-02-01T20:46:02" +ik[5887] = 0 +il[5887] = -29 +im[5887] = 0.4451 +ij[5887] = 13 +id[5888] = "2372-02-23T13:49:26" +ik[5888] = 8.61 +il[5888] = 28 +im[5888] = 0.3979 +ij[5888] = 11 +id[5889] = "2372-02-26T22:43:46" +ik[5889] = 0.5534 +il[5889] = 16 +im[5889] = 0.5535 +ij[5889] = 2 +id[5890] = "2372-03-15T08:25:48" +ik[5890] = 42.49 +il[5890] = 36 +im[5890] = 0.2692 +ij[5890] = 7.1587 +id[5891] = "2372-04-09T02:00:36" +ik[5891] = 3.416 +il[5891] = 83 +im[5891] = 0.2859 +ij[5891] = 27.5 +id[5892] = "2372-04-16T20:16:31" +ik[5892] = 74.98 +il[5892] = 100 +im[5892] = 0.0847 +ij[5892] = 14 +id[5893] = "2372-04-29T09:34:50" +ik[5893] = 1.29 +il[5893] = 130 +im[5893] = 0.0661 +ij[5893] = 28.5 +id[5894] = "2372-05-04T22:26:10" +ik[5894] = 90 +il[5894] = 147 +im[5894] = 0.1613 +ij[5894] = 5 +id[5895] = "2372-06-02T21:50:52" +ik[5895] = 4.25 +il[5895] = -124 +im[5895] = 0.1055 +ij[5895] = 27.6 +id[5896] = "2372-07-13T12:42:32" +ik[5896] = 6.39 +il[5896] = 0 +im[5896] = 0.005 +ij[5896] = 27.2 +id[5897] = "2372-07-17T16:14:11" +ik[5897] = 54.499 +il[5897] = 13 +im[5897] = 0.0893 +ij[5897] = 8 +id[5898] = "2372-08-08T04:26:06" +ik[5898] = 0.184 +il[5898] = 78 +im[5898] = 0.082 +ij[5898] = 28.6 +id[5899] = "2372-09-19T10:38:55" +ik[5899] = 3.509 +il[5899] = -152 +im[5899] = 0.0921 +ij[5899] = 28.1 +id[5900] = "2372-12-07T04:35:02" +ik[5900] = 0.12 +il[5900] = 71 +im[5900] = 0.0731 +ij[5900] = 12 +id[5901] = "2373-01-21T20:27:43" +ik[5901] = 0.041 +il[5901] = 24 +im[5901] = 0.0613 +ij[5901] = 27.3 +id[5902] = "2373-01-27T10:21:21" +ik[5902] = 0.868 +il[5902] = 41 +im[5902] = 0.0288 +ij[5902] = 28.4 +id[5903] = "2373-02-08T11:13:56" +ik[5903] = 1.078 +il[5903] = 78 +im[5903] = 0.0253 +ij[5903] = 27.5 +id[5904] = "2373-03-24T09:26:45" +ik[5904] = 2.5 +il[5904] = -145 +im[5904] = 0.0598 +ij[5904] = 27.6 +id[5905] = "2373-03-25T05:19:32" +ik[5905] = 0.854 +il[5905] = -142 +im[5905] = 0.0459 +ij[5905] = 28.5 +id[5906] = "2373-04-30T22:14:49" +ik[5906] = 3.241 +il[5906] = -27 +im[5906] = 0.0892 +ij[5906] = 27.2 +id[5907] = "2373-05-07T16:56:52" +ik[5907] = 54.503 +il[5907] = -6 +im[5907] = 0.0709 +ij[5907] = 9 +id[5908] = "2373-06-10T07:59:48" +ik[5908] = 2.027 +il[5908] = 98 +im[5908] = 0.0137 +ij[5908] = 28.6 +id[5909] = "2373-07-16T07:31:55" +ik[5909] = 90 +il[5909] = -152 +im[5909] = 0.1983 +ij[5909] = 6 +id[5910] = "2373-09-03T20:16:58" +ik[5910] = 0 +il[5910] = -30 +im[5910] = 0.1753 +ij[5910] = 13 +id[5911] = "2373-09-24T22:52:12" +ik[5911] = 0.529 +il[5911] = 15 +im[5911] = 0.5291 +ij[5911] = 2 +id[5912] = "2373-09-25T22:40:48" +ik[5912] = 8.55 +il[5912] = 16 +im[5912] = 0.5162 +ij[5912] = 11 +id[5913] = "2373-09-29T11:55:49" +ik[5913] = 1.827 +il[5913] = 4 +im[5913] = 0.2854 +ij[5913] = 27.7 +id[5914] = "2373-10-16T23:25:34" +ik[5914] = 43.13 +il[5914] = 25 +im[5914] = 0.1961 +ij[5914] = 7.1607 +id[5915] = "2373-11-18T11:58:16" +ik[5915] = 75.65 +il[5915] = 89 +im[5915] = 0.2653 +ij[5915] = 14 +id[5916] = "2373-12-05T15:26:01" +ik[5916] = 90 +il[5916] = 131 +im[5916] = 0.2071 +ij[5916] = 5 +id[5917] = "2373-12-23T12:33:59" +ik[5917] = 0.94 +il[5917] = -174 +im[5917] = 0.1162 +ij[5917] = 28.8 +id[5918] = "2374-01-18T12:10:49" +ik[5918] = 3.213 +il[5918] = -93 +im[5918] = 0.1539 +ij[5918] = 27.1 +id[5919] = "2374-02-20T21:22:36" +ik[5919] = 1.11 +il[5919] = 12 +im[5919] = 0.0961 +ij[5919] = 28.7 +id[5920] = "2374-02-21T17:28:53" +ik[5920] = 53.739 +il[5920] = 14 +im[5920] = 0.0807 +ij[5920] = 8 +id[5921] = "2374-03-07T07:05:29" +ik[5921] = 1.243 +il[5921] = 57 +im[5921] = 0.0797 +ij[5921] = 27.3 +id[5922] = "2374-03-25T05:45:03" +ik[5922] = 0.477 +il[5922] = 112 +im[5922] = 0.0422 +ij[5922] = 27.5 +id[5923] = "2374-04-09T14:05:51" +ik[5923] = 0.511 +il[5923] = 160 +im[5923] = 0.0205 +ij[5923] = 28.1 +id[5924] = "2374-05-08T11:52:46" +ik[5924] = 3.58 +il[5924] = -112 +im[5924] = 0.0437 +ij[5924] = 27.6 +id[5925] = "2374-05-09T23:04:24" +ik[5925] = 2.156 +il[5925] = -107 +im[5925] = 0.0192 +ij[5925] = 28.1 +id[5926] = "2374-05-30T11:39:15" +ik[5926] = 0.1 +il[5926] = -45 +im[5926] = 0.0762 +ij[5926] = 28.5 +id[5927] = "2374-06-15T01:44:18" +ik[5927] = 5.048 +il[5927] = -9 +im[5927] = 0.0702 +ij[5927] = 27.2 +id[5928] = "2374-07-16T18:25:55" +ik[5928] = 0.79 +il[5928] = 77 +im[5928] = 0.08 +ij[5928] = 12 +id[5929] = "2374-10-18T07:53:36" +ik[5929] = 1.83 +il[5929] = -178 +im[5929] = 0.088 +ij[5929] = 28.8 +id[5930] = "2374-10-30T07:34:49" +ik[5930] = 3.501 +il[5930] = -141 +im[5930] = 0.0961 +ij[5930] = 27.4 +id[5931] = "2374-12-08T18:36:27" +ik[5931] = 53.581 +il[5931] = -21 +im[5931] = 0.038 +ij[5931] = 9 +id[5932] = "2374-12-17T02:28:19" +ik[5932] = 1.408 +il[5932] = 5 +im[5932] = 0.1237 +ij[5932] = 28.7 +id[5933] = "2374-12-25T02:39:42" +ik[5933] = 0.731 +il[5933] = 30 +im[5933] = 0.0475 +ij[5933] = 27.3 +id[5934] = "2375-01-12T19:51:43" +ik[5934] = 1.085 +il[5934] = 88 +im[5934] = 0.1468 +ij[5934] = 27.5 +id[5935] = "2375-02-03T00:48:31" +ik[5935] = 1.71 +il[5935] = 154 +im[5935] = 0.0846 +ij[5935] = 28.4 +id[5936] = "2375-02-26T08:25:00" +ik[5936] = 90 +il[5936] = -133 +im[5936] = 0.2019 +ij[5936] = 6 +id[5937] = "2375-03-03T20:54:42" +ik[5937] = 0.52 +il[5937] = -118 +im[5937] = 0.1529 +ij[5937] = 27.6 +id[5938] = "2375-04-14T11:58:43" +ik[5938] = 0 +il[5938] = -17 +im[5938] = 0.3719 +ij[5938] = 13 +id[5939] = "2375-05-06T15:59:02" +ik[5939] = 4.87 +il[5939] = 3 +im[5939] = 0.4443 +ij[5939] = 11 +id[5940] = "2375-05-09T00:41:58" +ik[5940] = 0.5221 +il[5940] = 17 +im[5940] = 0.5222 +ij[5940] = 2 +id[5941] = "2375-05-27T13:22:26" +ik[5941] = 43.06 +il[5941] = 37 +im[5941] = 0.0974 +ij[5941] = 7.1646 +id[5942] = "2375-06-30T09:33:10" +ik[5942] = 76.9 +il[5942] = 104 +im[5942] = 0.2006 +ij[5942] = 14 +id[5943] = "2375-07-15T17:36:03" +ik[5943] = 90 +il[5943] = 144 +im[5943] = 0.185 +ij[5943] = 5 +id[5944] = "2375-08-01T19:52:01" +ik[5944] = 2.122 +il[5944] = -163 +im[5944] = 0.1724 +ij[5944] = 28.5 +id[5945] = "2375-09-19T17:59:52" +ik[5945] = 0.968 +il[5945] = -15 +im[5945] = 0.089 +ij[5945] = 28.6 +id[5946] = "2375-09-25T17:28:55" +ik[5946] = 54.374 +il[5946] = 4 +im[5946] = 0.052 +ij[5946] = 8 +id[5947] = "2375-12-03T03:52:16" +ik[5947] = 0.45 +il[5947] = -144 +im[5947] = 0.0671 +ij[5947] = 28.8 +id[5948] = "2375-12-23T01:28:35" +ik[5948] = 4.92 +il[5948] = -82 +im[5948] = 0.0088 +ij[5948] = 27.1 +id[5949] = "2376-02-23T00:54:43" +ik[5949] = 1.38 +il[5949] = 88 +im[5949] = 0.0434 +ij[5949] = 12 +id[5950] = "2376-04-07T17:53:42" +ik[5950] = 2.94 +il[5950] = 38 +im[5950] = 0.0217 +ij[5950] = 27.6 +id[5951] = "2376-05-14T14:58:22" +ik[5951] = 3.996 +il[5951] = 154 +im[5951] = 0.0908 +ij[5951] = 27.2 +id[5952] = "2376-05-23T21:41:02" +ik[5952] = 1.663 +il[5952] = -179 +im[5952] = 0.0464 +ij[5952] = 28.1 +id[5953] = "2376-06-25T12:04:45" +ik[5953] = 1.046 +il[5953] = -76 +im[5953] = 0.0868 +ij[5953] = 28.5 +id[5954] = "2376-07-14T09:32:30" +ik[5954] = 54.64 +il[5954] = -18 +im[5954] = 0.1174 +ij[5954] = 9 +id[5955] = "2376-07-21T10:31:09" +ik[5955] = 0.079 +il[5955] = 4 +im[5955] = 0.0135 +ij[5955] = 28.6 +id[5956] = "2376-09-26T10:08:29" +ik[5956] = 90 +il[5956] = -153 +im[5956] = 0.1995 +ij[5956] = 6 +id[5957] = "2376-09-30T14:04:50" +ik[5957] = 5.116 +il[5957] = -141 +im[5957] = 0.0913 +ij[5957] = 28.8 +id[5958] = "2376-10-12T12:31:15" +ik[5958] = 0.222 +il[5958] = -110 +im[5958] = 0.2454 +ij[5958] = 27.4 +id[5959] = "2376-11-16T09:33:37" +ik[5959] = 0 +il[5959] = -27 +im[5959] = 0.1285 +ij[5959] = 13 +id[5960] = "2376-12-05T10:20:15" +ik[5960] = 0.5718 +il[5960] = 13 +im[5960] = 0.5719 +ij[5960] = 2 +id[5961] = "2376-12-08T04:07:40" +ik[5961] = 0.63 +il[5961] = 19 +im[5961] = 0.4555 +ij[5961] = 11 +id[5962] = "2376-12-28T15:43:12" +ik[5962] = 42.26 +il[5962] = 29 +im[5962] = 0.37 +ij[5962] = 7.1542 +id[5963] = "2377-01-17T05:01:55" +ik[5963] = 0.701 +il[5963] = 65 +im[5963] = 0.2599 +ij[5963] = 27.1 +id[5964] = "2377-01-29T03:04:59" +ik[5964] = 73.73 +il[5964] = 92 +im[5964] = 0.2902 +ij[5964] = 14 +id[5965] = "2377-02-17T09:01:16" +ik[5965] = 90 +il[5965] = 139 +im[5965] = 0.1128 +ij[5965] = 5 +id[5966] = "2377-03-14T20:50:38" +ik[5966] = 1.886 +il[5966] = -141 +im[5966] = 0.166 +ij[5966] = 28.7 +id[5967] = "2377-03-18T15:34:22" +ik[5967] = 2.437 +il[5967] = -129 +im[5967] = 0.1039 +ij[5967] = 27.3 +id[5968] = "2377-04-06T16:36:09" +ik[5968] = 0.151 +il[5968] = -70 +im[5968] = 0.0221 +ij[5968] = 27.5 +id[5969] = "2377-05-06T12:44:31" +ik[5969] = 54.136 +il[5969] = 22 +im[5969] = 0.019 +ij[5969] = 8 +id[5970] = "2377-05-11T20:33:47" +ik[5970] = 0.207 +il[5970] = 39 +im[5970] = 0.1138 +ij[5970] = 28.4 +id[5971] = "2377-06-27T02:47:02" +ik[5971] = 3.154 +il[5971] = -180 +im[5971] = 0.0915 +ij[5971] = 28.1 +id[5972] = "2377-06-29T15:18:04" +ik[5972] = 5.604 +il[5972] = -173 +im[5972] = 0.0815 +ij[5972] = 27.2 +id[5973] = "2377-07-16T14:34:04" +ik[5973] = 0.16 +il[5973] = -121 +im[5973] = 0.071 +ij[5973] = 27.91 +id[5974] = "2377-09-23T01:03:21" +ik[5974] = 1.39 +il[5974] = 68 +im[5974] = 0.0744 +ij[5974] = 12 +id[5975] = "2377-11-06T18:24:28" +ik[5975] = 1.476 +il[5975] = 22 +im[5975] = 0.0596 +ij[5975] = 28.8 +id[5976] = "2377-11-13T08:57:29" +ik[5976] = 4.14 +il[5976] = 42 +im[5976] = 0.0669 +ij[5976] = 27.4 +id[5977] = "2378-01-07T02:57:55" +ik[5977] = 0.368 +il[5977] = -151 +im[5977] = 0.0871 +ij[5977] = 27.3 +id[5978] = "2378-01-10T03:35:08" +ik[5978] = 0.921 +il[5978] = -141 +im[5978] = 0.099 +ij[5978] = 28.7 +id[5979] = "2378-01-24T23:45:56" +ik[5979] = 1.156 +il[5979] = -95 +im[5979] = 0.1068 +ij[5979] = 27.5 +id[5980] = "2378-02-22T22:20:32" +ik[5980] = 53.846 +il[5980] = -5 +im[5980] = 0.113 +ij[5980] = 9 +id[5981] = "2378-03-10T22:50:45" +ik[5981] = 1.72 +il[5981] = 45 +im[5981] = 0.1361 +ij[5981] = 27.6 +id[5982] = "2378-04-20T06:43:15" +ik[5982] = 1.779 +il[5982] = 171 +im[5982] = 0.0867 +ij[5982] = 27.2 +id[5983] = "2378-05-06T16:59:48" +ik[5983] = 90 +il[5983] = -138 +im[5983] = 0.1894 +ij[5983] = 6 +id[5984] = "2378-06-22T03:05:26" +ik[5984] = 0 +il[5984] = -24 +im[5984] = 0.3864 +ij[5984] = 13 +id[5985] = "2378-07-05T04:31:48" +ik[5985] = 0.5052 +il[5985] = 0 +im[5985] = 0.5052 +ij[5985] = 2 +id[5986] = "2378-07-14T16:23:31" +ik[5986] = 4.54 +il[5986] = 24 +im[5986] = 0.329 +ij[5986] = 11 +id[5987] = "2378-08-06T02:08:01" +ik[5987] = 44.96 +il[5987] = 33 +im[5987] = 0.1542 +ij[5987] = 7.1661 +id[5988] = "2378-09-08T13:40:45" +ik[5988] = 78.44 +il[5988] = 99 +im[5988] = 0.1822 +ij[5988] = 14 +id[5989] = "2378-09-23T03:17:11" +ik[5989] = 90 +il[5989] = 136 +im[5989] = 0.1752 +ij[5989] = 5 +id[5990] = "2378-10-31T13:37:12" +ik[5990] = 1.172 +il[5990] = -106 +im[5990] = 0.0732 +ij[5990] = 28.6 +id[5991] = "2378-11-12T22:17:45" +ik[5991] = 0.086 +il[5991] = -68 +im[5991] = 0.1064 +ij[5991] = 28.5 +id[5992] = "2378-12-06T07:38:46" +ik[5992] = 53.91 +il[5992] = 4 +im[5992] = 0.0887 +ij[5992] = 8 +id[5993] = "2378-12-22T02:44:18" +ik[5993] = 0.014 +il[5993] = 53 +im[5993] = 0.0851 +ij[5993] = 28.8 +id[5994] = "2379-01-06T00:59:42" +ik[5994] = 4.273 +il[5994] = 100 +im[5994] = 0.0891 +ij[5994] = 27.1 +id[5995] = "2379-02-21T00:53:29" +ik[5995] = 0.661 +il[5995] = -117 +im[5995] = 0.0764 +ij[5995] = 27.3 +id[5996] = "2379-02-26T03:26:55" +ik[5996] = 0.128 +il[5996] = -101 +im[5996] = 0.0728 +ij[5996] = 28.7 +id[5997] = "2379-03-10T16:17:02" +ik[5997] = 0.775 +il[5997] = -62 +im[5997] = 0.0938 +ij[5997] = 27.5 +id[5998] = "2379-05-07T21:17:16" +ik[5998] = 0.77 +il[5998] = 93 +im[5998] = 0.075 +ij[5998] = 12 +id[5999] = "2379-06-16T21:06:02" +ik[5999] = 0.289 +il[5999] = 33 +im[5999] = 0.0132 +ij[5999] = 27.9 +id[6000] = "2379-07-06T00:03:53" +ik[6000] = 1.591 +il[6000] = 93 +im[6000] = 0.0643 +ij[6000] = 28.1 +id[6001] = "2379-08-06T16:41:31" +ik[6001] = 4.102 +il[6001] = -169 +im[6001] = 0.0885 +ij[6001] = 28.1 +id[6002] = "2379-09-03T20:35:48" +ik[6002] = 1.689 +il[6002] = -83 +im[6002] = 0.0798 +ij[6002] = 28.6 +id[6003] = "2379-09-22T19:22:47" +ik[6003] = 54.148 +il[6003] = -26 +im[6003] = 0.1195 +ij[6003] = 9 +id[6004] = "2379-10-09T02:02:24" +ik[6004] = 1.999 +il[6004] = 23 +im[6004] = 0.121 +ij[6004] = 28.5 +id[6005] = "2379-10-14T12:42:54" +ik[6005] = 3.173 +il[6005] = 40 +im[6005] = 0.0159 +ij[6005] = 28.8 +id[6006] = "2379-10-17T12:17:28" +ik[6006] = 2.453 +il[6006] = 49 +im[6006] = 0.0644 +ij[6006] = 27.4 +id[6007] = "2379-12-11T23:03:20" +ik[6007] = 90 +il[6007] = -140 +im[6007] = 0.0947 +ij[6007] = 6 +id[6008] = "2379-12-17T22:07:15" +ik[6008] = 0.908 +il[6008] = -122 +im[6008] = 0.1655 +ij[6008] = 27.3 +id[6009] = "2380-01-02T11:25:35" +ik[6009] = 0.007 +il[6009] = -85 +im[6009] = 0.2798 +ij[6009] = 28.7 +id[6010] = "2380-01-14T14:19:27" +ik[6010] = 1.611 +il[6010] = -59 +im[6010] = 0.1653 +ij[6010] = 27.5 +id[6011] = "2380-01-16T22:56:09" +ik[6011] = 2.13 +il[6011] = -54 +im[6011] = 0.3007 +ij[6011] = 27.5 +id[6012] = "2380-01-30T13:41:12" +ik[6012] = 0 +il[6012] = -29 +im[6012] = 0.4144 +ij[6012] = 13 +id[6013] = "2380-02-21T02:35:31" +ik[6013] = 8.51 +il[6013] = 28 +im[6013] = 0.0884 +ij[6013] = 11 +id[6014] = "2380-02-28T04:06:58" +ik[6014] = 0.549 +il[6014] = 22 +im[6014] = 0.5491 +ij[6014] = 2 +id[6015] = "2380-03-12T20:55:49" +ik[6015] = 42.3 +il[6015] = 38 +im[6015] = 0.4241 +ij[6015] = 7.1585 +id[6016] = "2380-04-09T21:03:15" +ik[6016] = 3.081 +il[6016] = 92 +im[6016] = 0.2689 +ij[6016] = 27.5 +id[6017] = "2380-04-14T08:13:37" +ik[6017] = 74.77 +il[6017] = 102 +im[6017] = 0.1297 +ij[6017] = 14 +id[6018] = "2380-05-02T12:20:17" +ik[6018] = 90 +il[6018] = 149 +im[6018] = 0.0105 +ij[6018] = 5 +id[6019] = "2380-06-02T16:12:41" +ik[6019] = 4.25 +il[6019] = -115 +im[6019] = 0.0579 +ij[6019] = 27.6 +id[6020] = "2380-07-13T03:36:44" +ik[6020] = 6.359 +il[6020] = 9 +im[6020] = 0.0502 +ij[6020] = 27.2 +id[6021] = "2380-07-15T09:18:22" +ik[6021] = 54.494 +il[6021] = 16 +im[6021] = 0.014 +ij[6021] = 8 +id[6022] = "2380-10-25T17:48:37" +ik[6022] = 1.149 +il[6022] = -29 +im[6022] = 0.0453 +ij[6022] = 28.6 +id[6023] = "2380-12-04T16:39:21" +ik[6023] = 0.18 +il[6023] = 73 +im[6023] = 0.0863 +ij[6023] = 12 +id[6024] = "2381-01-21T09:41:28" +ik[6024] = 0.051 +il[6024] = 33 +im[6024] = 0.0847 +ij[6024] = 27.3 +id[6025] = "2381-02-04T05:31:46" +ik[6025] = 0.664 +il[6025] = 75 +im[6025] = 0.0875 +ij[6025] = 28.7 +id[6026] = "2381-02-08T00:34:22" +ik[6026] = 1.08 +il[6026] = 87 +im[6026] = 0.0572 +ij[6026] = 27.5 +id[6027] = "2381-02-23T06:19:17" +ik[6027] = 4.287 +il[6027] = 134 +im[6027] = 0.0644 +ij[6027] = 28.1 +id[6028] = "2381-03-23T23:10:37" +ik[6028] = 2.48 +il[6028] = -136 +im[6028] = 0.0901 +ij[6028] = 27.6 +id[6029] = "2381-04-30T12:53:28" +ik[6029] = 3.211 +il[6029] = -18 +im[6029] = 0.0601 +ij[6029] = 27.2 +id[6030] = "2381-05-05T10:01:03" +ik[6030] = 54.487 +il[6030] = -3 +im[6030] = 0.1159 +ij[6030] = 9 +id[6031] = "2381-06-21T09:19:52" +ik[6031] = 0.724 +il[6031] = 142 +im[6031] = 0.1464 +ij[6031] = 28.4 +id[6032] = "2381-07-13T23:58:11" +ik[6032] = 90 +il[6032] = -150 +im[6032] = 0.0926 +ij[6032] = 6 +id[6033] = "2381-09-01T08:14:04" +ik[6033] = 0 +il[6033] = -27 +im[6033] = 0.4082 +ij[6033] = 13 +id[6034] = "2381-09-23T02:34:30" +ik[6034] = 2.175 +il[6034] = 20 +im[6034] = 0.4102 +ij[6034] = 27.7 +id[6035] = "2381-09-23T12:40:19" +ik[6035] = 8.61 +il[6035] = 20 +im[6035] = 0.4431 +ij[6035] = 11 +id[6036] = "2381-09-26T01:14:43" +ik[6036] = 0.5378 +il[6036] = 6 +im[6036] = 0.5379 +ij[6036] = 2 +id[6037] = "2381-10-14T14:10:45" +ik[6037] = 43.25 +il[6037] = 27 +im[6037] = 0.1701 +ij[6037] = 7.1611 +id[6038] = "2381-11-16T04:51:28" +ik[6038] = 75.86 +il[6038] = 91 +im[6038] = 0.1543 +ij[6038] = 14 +id[6039] = "2381-12-03T05:30:46" +ik[6039] = 90 +il[6039] = 134 +im[6039] = 0.1723 +ij[6039] = 5 +id[6040] = "2381-12-12T07:47:16" +ik[6040] = 0.15 +il[6040] = 162 +im[6040] = 0.0329 +ij[6040] = 28.6 +id[6041] = "2382-01-08T03:02:52" +ik[6041] = 0.882 +il[6041] = -115 +im[6041] = 0.1035 +ij[6041] = 28.8 +id[6042] = "2382-01-18T05:01:28" +ik[6042] = 3.262 +il[6042] = -84 +im[6042] = 0.1464 +ij[6042] = 27.1 +id[6043] = "2382-02-19T05:02:24" +ik[6043] = 53.733 +il[6043] = 16 +im[6043] = 0.125 +ij[6043] = 8 +id[6044] = "2382-02-20T23:54:23" +ik[6044] = 0.827 +il[6044] = 22 +im[6044] = 0.1139 +ij[6044] = 28.5 +id[6045] = "2382-03-06T21:29:55" +ik[6045] = 1.22 +il[6045] = 65 +im[6045] = 0.1036 +ij[6045] = 27.3 +id[6046] = "2382-03-23T04:51:27" +ik[6046] = 0.093 +il[6046] = 116 +im[6046] = 0.0962 +ij[6046] = 28.7 +id[6047] = "2382-03-24T19:44:08" +ik[6047] = 0.489 +il[6047] = 121 +im[6047] = 0.0751 +ij[6047] = 27.5 +id[6048] = "2382-03-26T15:50:15" +ik[6048] = 2.666 +il[6048] = 127 +im[6048] = 0.0405 +ij[6048] = 28.1 +id[6049] = "2382-05-08T01:15:35" +ik[6049] = 3.57 +il[6049] = -103 +im[6049] = 0.0765 +ij[6049] = 27.6 +id[6050] = "2382-07-14T13:03:21" +ik[6050] = 0.74 +il[6050] = 80 +im[6050] = 0.0434 +ij[6050] = 12 +id[6051] = "2382-08-31T03:02:35" +ik[6051] = 1.316 +il[6051] = 46 +im[6051] = 0.0758 +ij[6051] = 28.1 +id[6052] = "2382-10-10T23:08:09" +ik[6052] = 4.245 +il[6052] = 170 +im[6052] = 0.0259 +ij[6052] = 28.1 +id[6053] = "2382-10-19T16:20:45" +ik[6053] = 2.363 +il[6053] = -164 +im[6053] = 0.0947 +ij[6053] = 28.6 +id[6054] = "2382-10-29T21:37:28" +ik[6054] = 3.478 +il[6054] = -133 +im[6054] = 0.077 +ij[6054] = 27.4 +id[6055] = "2382-11-01T12:36:25" +ik[6055] = 2.392 +il[6055] = -125 +im[6055] = 0.0986 +ij[6055] = 28.8 +id[6056] = "2382-12-06T05:20:12" +ik[6056] = 53.589 +il[6056] = -19 +im[6056] = 0.0644 +ij[6056] = 9 +id[6057] = "2382-12-24T18:18:22" +ik[6057] = 0.741 +il[6057] = 39 +im[6057] = 0.0114 +ij[6057] = 27.3 +id[6058] = "2383-01-12T12:50:48" +ik[6058] = 1.071 +il[6058] = 97 +im[6058] = 0.1156 +ij[6058] = 27.5 +id[6059] = "2383-01-13T08:07:09" +ik[6059] = 0.353 +il[6059] = 100 +im[6059] = 0.1303 +ij[6059] = 28.5 +id[6060] = "2383-01-17T11:50:12" +ik[6060] = 0.431 +il[6060] = 113 +im[6060] = 0.1513 +ij[6060] = 28.7 +id[6061] = "2383-02-23T23:08:39" +ik[6061] = 90 +il[6061] = -130 +im[6061] = 0.0918 +ij[6061] = 6 +id[6062] = "2383-03-04T01:19:30" +ik[6062] = 0.7 +il[6062] = -109 +im[6062] = 0.208 +ij[6062] = 27.6 +id[6063] = "2383-04-11T04:51:55" +ik[6063] = 0 +il[6063] = -18 +im[6063] = 0.3365 +ij[6063] = 13 +id[6064] = "2383-04-26T16:55:18" +ik[6064] = 0.5172 +il[6064] = 12 +im[6064] = 0.5172 +ij[6064] = 2 +id[6065] = "2383-05-04T08:05:16" +ik[6065] = 5.15 +il[6065] = 31 +im[6065] = 0.1022 +ij[6065] = 11 +id[6066] = "2383-05-23T21:44:26" +ik[6066] = 5.97 +il[6066] = 38 +im[6066] = 0.4241 +ij[6066] = 27.6 +id[6067] = "2383-05-25T04:56:35" +ik[6067] = 44 +il[6067] = 40 +im[6067] = 0.3732 +ij[6067] = 7.1641 +id[6068] = "2383-06-27T23:00:21" +ik[6068] = 77.76 +il[6068] = 107 +im[6068] = 0.031 +ij[6068] = 14 +id[6069] = "2383-07-13T10:05:51" +ik[6069] = 90 +il[6069] = 147 +im[6069] = 0.0638 +ij[6069] = 5 +id[6070] = "2383-09-23T09:39:46" +ik[6070] = 54.387 +il[6070] = 7 +im[6070] = 0.047 +ij[6070] = 8 +id[6071] = "2383-11-09T16:54:28" +ik[6071] = 0.075 +il[6071] = 152 +im[6071] = 0.0222 +ij[6071] = 28.4 +id[6072] = "2383-12-12T04:08:32" +ik[6072] = 0.998 +il[6072] = -106 +im[6072] = 0.0513 +ij[6072] = 28.6 +id[6073] = "2383-12-17T02:14:03" +ik[6073] = 0.774 +il[6073] = -91 +im[6073] = 0.0901 +ij[6073] = 28.8 +id[6074] = "2383-12-22T14:44:08" +ik[6074] = 4.941 +il[6074] = -73 +im[6074] = 0.0283 +ij[6074] = 27.1 +id[6075] = "2384-02-20T10:56:38" +ik[6075] = 1.36 +il[6075] = 90 +im[6075] = 0.0314 +ij[6075] = 12 +id[6076] = "2384-04-07T07:03:26" +ik[6076] = 2.92 +il[6076] = 47 +im[6076] = 0.0153 +ij[6076] = 27.6 +id[6077] = "2384-04-14T06:06:46" +ik[6077] = 3.918 +il[6077] = 69 +im[6077] = 0.0866 +ij[6077] = 28.1 +id[6078] = "2384-05-04T07:26:32" +ik[6078] = 1.976 +il[6078] = 132 +im[6078] = 0.0661 +ij[6078] = 28.1 +id[6079] = "2384-05-14T04:26:48" +ik[6079] = 3.976 +il[6079] = 163 +im[6079] = 0.0938 +ij[6079] = 27.2 +id[6080] = "2384-07-12T03:33:34" +ik[6080] = 54.647 +il[6080] = -14 +im[6080] = 0.1118 +ij[6080] = 9 +id[6081] = "2384-09-23T22:41:14" +ik[6081] = 90 +il[6081] = -150 +im[6081] = 0.165 +ij[6081] = 6 +id[6082] = "2384-10-13T02:27:14" +ik[6082] = 0.411 +il[6082] = -101 +im[6082] = 0.2639 +ij[6082] = 27.4 +id[6083] = "2384-11-14T23:00:48" +ik[6083] = 0 +il[6083] = -24 +im[6083] = 0.141 +ij[6083] = 13 +id[6084] = "2384-11-30T14:01:06" +ik[6084] = 4.389 +il[6084] = 7 +im[6084] = 0.1283 +ij[6084] = 28.6 +id[6085] = "2384-12-05T17:19:40" +ik[6085] = 1.03 +il[6085] = 19 +im[6085] = 0.554 +ij[6085] = 11 +id[6086] = "2384-12-06T11:52:22" +ik[6086] = 0.5631 +il[6086] = 10 +im[6086] = 0.5632 +ij[6086] = 2 +id[6087] = "2384-12-10T18:13:14" +ik[6087] = 1.478 +il[6087] = 14 +im[6087] = 0.2842 +ij[6087] = 28.8 +id[6088] = "2384-12-26T04:03:35" +ik[6088] = 41.21 +il[6088] = 32 +im[6088] = 0.0334 +ij[6088] = 7.1544 +id[6089] = "2385-01-10T14:26:09" +ik[6089] = 2.996 +il[6089] = 59 +im[6089] = 0.104 +ij[6089] = 28.8 +id[6090] = "2385-01-18T09:20:44" +ik[6090] = 2.897 +il[6090] = 75 +im[6090] = 0.2633 +ij[6090] = 28.6 +id[6091] = "2385-01-18T15:55:41" +ik[6091] = 0.828 +il[6091] = 76 +im[6091] = 0.2525 +ij[6091] = 27.1 +id[6092] = "2385-01-26T16:36:17" +ik[6092] = 72.73 +il[6092] = 94 +im[6092] = 0.1786 +ij[6092] = 14 +id[6093] = "2385-02-14T21:12:47" +ik[6093] = 90 +il[6093] = 141 +im[6093] = 0.2145 +ij[6093] = 5 +id[6094] = "2385-03-18T09:41:01" +ik[6094] = 2.373 +il[6094] = -120 +im[6094] = 0.1465 +ij[6094] = 27.3 +id[6095] = "2385-04-06T08:56:08" +ik[6095] = 0.117 +il[6095] = -61 +im[6095] = 0.0318 +ij[6095] = 27.5 +id[6096] = "2385-04-16T10:24:05" +ik[6096] = 0.134 +il[6096] = -30 +im[6096] = 0.1325 +ij[6096] = 28.7 +id[6097] = "2385-05-04T03:26:29" +ik[6097] = 54.12 +il[6097] = 25 +im[6097] = 0.0716 +ij[6097] = 8 +id[6098] = "2385-05-21T03:41:11" +ik[6098] = 0.284 +il[6098] = 77 +im[6098] = 0.0476 +ij[6098] = 28.5 +id[6099] = "2385-06-29T04:43:50" +ik[6099] = 5.583 +il[6099] = -164 +im[6099] = 0.0921 +ij[6099] = 27.2 +id[6100] = "2385-07-16T03:43:12" +ik[6100] = 0.179 +il[6100] = -113 +im[6100] = 0.0885 +ij[6100] = 27.91 +id[6101] = "2385-09-20T16:58:04" +ik[6101] = 1.4 +il[6101] = 71 +im[6101] = 0.0186 +ij[6101] = 12 +id[6102] = "2385-11-12T22:21:28" +ik[6102] = 4.124 +il[6102] = 51 +im[6102] = 0.0837 +ij[6102] = 27.4 +id[6103] = "2385-11-20T19:38:33" +ik[6103] = 1.892 +il[6103] = 75 +im[6103] = 0.0308 +ij[6103] = 28.8 +id[6104] = "2385-12-01T07:17:58" +ik[6104] = 0.299 +il[6104] = 107 +im[6104] = 0.0637 +ij[6104] = 28.4 +id[6105] = "2385-12-06T04:26:24" +ik[6105] = 1.847 +il[6105] = 121 +im[6105] = 0.031 +ij[6105] = 28.6 +id[6106] = "2385-12-09T07:00:37" +ik[6106] = 0.672 +il[6106] = 131 +im[6106] = 0.0793 +ij[6106] = 28.1 +id[6107] = "2386-01-06T16:47:15" +ik[6107] = 0.377 +il[6107] = -142 +im[6107] = 0.0647 +ij[6107] = 27.3 +id[6108] = "2386-01-24T13:55:15" +ik[6108] = 1.155 +il[6108] = -87 +im[6108] = 0.0944 +ij[6108] = 27.5 +id[6109] = "2386-02-09T18:22:45" +ik[6109] = 0.291 +il[6109] = -36 +im[6109] = 0.1191 +ij[6109] = 28.7 +id[6110] = "2386-02-20T10:40:17" +ik[6110] = 53.825 +il[6110] = -3 +im[6110] = 0.048 +ij[6110] = 9 +id[6111] = "2386-03-10T14:18:59" +ik[6111] = 1.683 +il[6111] = 54 +im[6111] = 0.1321 +ij[6111] = 27.6 +id[6112] = "2386-04-11T20:00:48" +ik[6112] = 2.975 +il[6112] = 155 +im[6112] = 0.175 +ij[6112] = 28.5 +id[6113] = "2386-04-20T03:18:48" +ik[6113] = 1.704 +il[6113] = -179 +im[6113] = 0.0402 +ij[6113] = 27.2 +id[6114] = "2386-05-04T10:46:33" +ik[6114] = 90 +il[6114] = -135 +im[6114] = 0.0605 +ij[6114] = 6 +id[6115] = "2386-06-19T16:36:44" +ik[6115] = 0 +il[6115] = -23 +im[6115] = 0.3142 +ij[6115] = 13 +id[6116] = "2386-07-06T08:50:11" +ik[6116] = 0.5115 +il[6116] = 11 +im[6116] = 0.5115 +ij[6116] = 2 +id[6117] = "2386-07-12T09:10:04" +ik[6117] = 4.26 +il[6117] = 26 +im[6117] = 0.0564 +ij[6117] = 11 +id[6118] = "2386-08-03T17:41:19" +ik[6118] = 45.04 +il[6118] = 35 +im[6118] = 0.3878 +ij[6118] = 7.166 +id[6119] = "2386-09-06T06:26:02" +ik[6119] = 78.58 +il[6119] = 102 +im[6119] = 0.0061 +ij[6119] = 14 +id[6120] = "2386-09-20T19:28:25" +ik[6120] = 90 +il[6120] = 139 +im[6120] = 0.0284 +ij[6120] = 5 +id[6121] = "2386-12-03T20:55:24" +ik[6121] = 53.925 +il[6121] = 7 +im[6121] = 0.0028 +ij[6121] = 8 +id[6122] = "2387-01-05T05:42:43" +ik[6122] = 0.263 +il[6122] = 108 +im[6122] = 0.0494 +ij[6122] = 28.8 +id[6123] = "2387-01-05T15:04:07" +ik[6123] = 4.3 +il[6123] = 109 +im[6123] = 0.0567 +ij[6123] = 27.1 +id[6124] = "2387-01-28T18:11:13" +ik[6124] = 0.195 +il[6124] = -179 +im[6124] = 0.0748 +ij[6124] = 28.6 +id[6125] = "2387-02-20T14:17:54" +ik[6125] = 0.649 +il[6125] = -108 +im[6125] = 0.0512 +ij[6125] = 27.3 +id[6126] = "2387-03-10T05:33:28" +ik[6126] = 0.781 +il[6126] = -54 +im[6126] = 0.0821 +ij[6126] = 27.5 +id[6127] = "2387-03-28T13:07:23" +ik[6127] = 0.594 +il[6127] = -8 +im[6127] = 0.0829 +ij[6127] = 28.7 +id[6128] = "2387-03-29T04:45:24" +ik[6128] = 2.17 +il[6128] = -6 +im[6128] = 0.0787 +ij[6128] = 28.1 +id[6129] = "2387-05-05T13:23:31" +ik[6129] = 0.82 +il[6129] = 96 +im[6129] = 0.0212 +ij[6129] = 12 +id[6130] = "2387-06-07T02:06:25" +ik[6130] = 4.149 +il[6130] = 23 +im[6130] = 0.0575 +ij[6130] = 28.1 +id[6131] = "2387-06-15T03:13:32" +ik[6131] = 0.751 +il[6131] = 38 +im[6131] = 0.0471 +ij[6131] = 28.5 +id[6132] = "2387-06-16T09:05:28" +ik[6132] = 0.117 +il[6132] = 42 +im[6132] = 0.027 +ij[6132] = 27.9 +id[6133] = "2387-07-16T05:19:06" +ik[6133] = 2.902 +il[6133] = 135 +im[6133] = 0.0336 +ij[6133] = 28.1 +id[6134] = "2387-09-20T10:08:19" +ik[6134] = 54.171 +il[6134] = -23 +im[6134] = 0.0805 +ij[6134] = 9 +id[6135] = "2387-10-17T04:45:01" +ik[6135] = 2.408 +il[6135] = 58 +im[6135] = 0.018 +ij[6135] = 27.4 +id[6136] = "2387-10-29T14:48:20" +ik[6136] = 3.765 +il[6136] = 96 +im[6136] = 0.0476 +ij[6136] = 28.8 +id[6137] = "2387-12-08T20:55:49" +ik[6137] = 2.408 +il[6137] = -140 +im[6137] = 0.225 +ij[6137] = 28.6 +id[6138] = "2387-12-09T10:21:47" +ik[6138] = 90 +il[6138] = -138 +im[6138] = 0.2195 +ij[6138] = 6 +id[6139] = "2387-12-17T21:18:17" +ik[6139] = 0.528 +il[6139] = -114 +im[6139] = 0.1151 +ij[6139] = 28.4 +id[6140] = "2387-12-18T03:25:01" +ik[6140] = 0.869 +il[6140] = -113 +im[6140] = 0.1267 +ij[6140] = 27.3 +id[6141] = "2388-01-16T08:40:46" +ik[6141] = 2.242 +il[6141] = -48 +im[6141] = 0.2207 +ij[6141] = 27.5 +id[6142] = "2388-01-22T10:07:41" +ik[6142] = 3.599 +il[6142] = -29 +im[6142] = 0.3387 +ij[6142] = 27.5 +id[6143] = "2388-01-28T06:26:29" +ik[6143] = 0 +il[6143] = -25 +im[6143] = 0.1388 +ij[6143] = 13 +id[6144] = "2388-02-18T15:21:36" +ik[6144] = 8.39 +il[6144] = 31 +im[6144] = 0.4189 +ij[6144] = 11 +id[6145] = "2388-02-29T06:16:24" +ik[6145] = 0.5329 +il[6145] = 28 +im[6145] = 0.533 +ij[6145] = 2 +id[6146] = "2388-03-10T09:26:09" +ik[6146] = 42.12 +il[6146] = 41 +im[6146] = 0.2847 +ij[6146] = 7.1583 +id[6147] = "2388-04-10T11:46:21" +ik[6147] = 2.796 +il[6147] = 102 +im[6147] = 0.2533 +ij[6147] = 27.5 +id[6148] = "2388-04-11T20:20:55" +ik[6148] = 74.58 +il[6148] = 105 +im[6148] = 0.2491 +ij[6148] = 14 +id[6149] = "2388-04-30T02:07:20" +ik[6149] = 90 +il[6149] = 151 +im[6149] = 0.1588 +ij[6149] = 5 +id[6150] = "2388-05-07T09:20:09" +ik[6150] = 0.091 +il[6150] = 174 +im[6150] = 0.1376 +ij[6150] = 28.7 +id[6151] = "2388-06-02T09:54:32" +ik[6151] = 4.239 +il[6151] = -105 +im[6151] = 0.002 +ij[6151] = 27.6 +id[6152] = "2388-07-12T18:28:17" +ik[6152] = 6.327 +il[6152] = 18 +im[6152] = 0.0911 +ij[6152] = 27.2 +id[6153] = "2388-07-13T02:26:07" +ik[6153] = 54.489 +il[6153] = 19 +im[6153] = 0.0858 +ij[6153] = 8 +id[6154] = "2388-08-22T13:33:18" +ik[6154] = 0.354 +il[6154] = 142 +im[6154] = 0.093 +ij[6154] = 28.5 +id[6155] = "2388-12-02T04:45:07" +ik[6155] = 0.25 +il[6155] = 76 +im[6155] = 0.0428 +ij[6155] = 12 +id[6156] = "2389-01-17T01:28:42" +ik[6156] = 2.681 +il[6156] = 30 +im[6156] = 0.0619 +ij[6156] = 28.1 +id[6157] = "2389-01-20T22:52:08" +ik[6157] = 0.059 +il[6157] = 41 +im[6157] = 0.0927 +ij[6157] = 27.3 +id[6158] = "2389-01-22T22:29:34" +ik[6158] = 0.513 +il[6158] = 48 +im[6158] = 0.0885 +ij[6158] = 28.6 +id[6159] = "2389-02-07T07:41:22" +ik[6159] = 3.157 +il[6159] = 95 +im[6159] = 0.0812 +ij[6159] = 28.1 +id[6160] = "2389-02-07T13:52:34" +ik[6160] = 1.081 +il[6160] = 96 +im[6160] = 0.0793 +ij[6160] = 27.5 +id[6161] = "2389-03-06T17:39:50" +ik[6161] = 0.247 +il[6161] = 180 +im[6161] = 0.0908 +ij[6161] = 28.7 +id[6162] = "2389-03-23T12:50:58" +ik[6162] = 2.46 +il[6162] = -127 +im[6162] = 0.1038 +ij[6162] = 27.6 +id[6163] = "2389-04-30T03:42:47" +ik[6163] = 3.179 +il[6163] = -10 +im[6163] = 0.0242 +ij[6163] = 27.2 +id[6164] = "2389-05-03T02:58:08" +ik[6164] = 54.47 +il[6164] = 0 +im[6164] = 0.0889 +ij[6164] = 9 +id[6165] = "2389-07-11T16:27:58" +ik[6165] = 90 +il[6165] = -147 +im[6165] = 0.0722 +ij[6165] = 6 +id[6166] = "2389-07-24T05:18:05" +ik[6166] = 1.385 +il[6166] = -114 +im[6166] = 0.1412 +ij[6166] = 28.5 +id[6167] = "2389-08-15T03:54:25" +ik[6167] = 3.163 +il[6167] = -66 +im[6167] = 0.2375 +ij[6167] = 27.7 +id[6168] = "2389-08-29T20:21:22" +ik[6168] = 0 +il[6168] = -38 +im[6168] = 0.4012 +ij[6168] = 13 +id[6169] = "2389-09-17T03:54:25" +ik[6169] = 7.777 +il[6169] = 0 +im[6169] = 0.38 +ij[6169] = 27.7 +id[6170] = "2389-09-21T02:42:43" +ik[6170] = 8.65 +il[6170] = 9 +im[6170] = 0.127 +ij[6170] = 11 +id[6171] = "2389-09-27T04:06:20" +ik[6171] = 0.5366 +il[6171] = 12 +im[6171] = 0.5367 +ij[6171] = 2 +id[6172] = "2389-10-12T19:23:56" +ik[6172] = 43.96 +il[6172] = 31 +im[6172] = 0.3678 +ij[6172] = 7.1613 +id[6173] = "2389-11-13T21:36:44" +ik[6173] = 76.05 +il[6173] = 94 +im[6173] = 0.0515 +ij[6173] = 14 +id[6174] = "2389-11-30T19:39:02" +ik[6174] = 90 +il[6174] = 136 +im[6174] = 0.0177 +ij[6174] = 5 +id[6175] = "2390-01-17T21:41:27" +ik[6175] = 3.309 +il[6175] = -75 +im[6175] = 0.115 +ij[6175] = 27.1 +id[6176] = "2390-01-23T00:47:22" +ik[6176] = 0.59 +il[6176] = -58 +im[6176] = 0.1367 +ij[6176] = 28.8 +id[6177] = "2390-02-16T16:35:56" +ik[6177] = 53.728 +il[6177] = 19 +im[6177] = 0.087 +ij[6177] = 8 +id[6178] = "2390-03-06T11:47:41" +ik[6178] = 1.197 +il[6178] = 74 +im[6178] = 0.1103 +ij[6178] = 27.3 +id[6179] = "2390-03-17T01:14:18" +ik[6179] = 0.66 +il[6179] = 107 +im[6179] = 0.0416 +ij[6179] = 28.6 +id[6180] = "2390-03-19T23:45:27" +ik[6180] = 1.044 +il[6180] = 116 +im[6180] = 0.0877 +ij[6180] = 28.4 +id[6181] = "2390-03-24T09:37:54" +ik[6181] = 0.501 +il[6181] = 130 +im[6181] = 0.0943 +ij[6181] = 27.5 +id[6182] = "2390-04-23T04:45:33" +ik[6182] = 0.762 +il[6182] = -139 +im[6182] = 0.0854 +ij[6182] = 28.7 +id[6183] = "2390-05-07T14:33:05" +ik[6183] = 3.56 +il[6183] = -95 +im[6183] = 0.0938 +ij[6183] = 27.6 +id[6184] = "2390-06-06T12:42:28" +ik[6184] = 1.309 +il[6184] = -4 +im[6184] = 0.09 +ij[6184] = 28.1 +id[6185] = "2390-07-12T07:43:40" +ik[6185] = 0.7 +il[6185] = 83 +im[6185] = 0.023 +ij[6185] = 12 +id[6186] = "2390-09-24T11:58:04" +ik[6186] = 0.573 +il[6186] = 129 +im[6186] = 0.0474 +ij[6186] = 28.5 +id[6187] = "2390-10-29T11:44:07" +ik[6187] = 3.455 +il[6187] = -124 +im[6187] = 0.0472 +ij[6187] = 27.4 +id[6188] = "2390-11-15T17:52:56" +ik[6188] = 2.747 +il[6188] = -71 +im[6188] = 0.099 +ij[6188] = 28.8 +id[6189] = "2390-12-03T16:07:30" +ik[6189] = 53.598 +il[6189] = -17 +im[6189] = 0.1168 +ij[6189] = 9 +id[6190] = "2390-12-24T10:01:01" +ik[6190] = 0.75 +il[6190] = 47 +im[6190] = 0.048 +ij[6190] = 27.3 +id[6191] = "2391-01-12T06:01:54" +ik[6191] = 1.056 +il[6191] = 106 +im[6191] = 0.062 +ij[6191] = 27.5 +id[6192] = "2391-01-20T13:26:58" +ik[6192] = 0.723 +il[6192] = 132 +im[6192] = 0.1298 +ij[6192] = 28.6 +id[6193] = "2391-02-21T05:19:06" +ik[6193] = 2.329 +il[6193] = -135 +im[6193] = 0.0998 +ij[6193] = 28.7 +id[6194] = "2391-02-21T13:45:14" +ik[6194] = 90 +il[6194] = -128 +im[6194] = 0.0853 +ij[6194] = 6 +id[6195] = "2391-03-04T07:21:58" +ik[6195] = 0.89 +il[6195] = -100 +im[6195] = 0.249 +ij[6195] = 27.6 +id[6196] = "2391-04-08T21:37:11" +ik[6196] = 0 +il[6196] = -15 +im[6196] = 0.101 +ij[6196] = 13 +id[6197] = "2391-04-27T21:12:31" +ik[6197] = 0.5365 +il[6197] = 25 +im[6197] = 0.5365 +ij[6197] = 2 +id[6198] = "2391-05-02T00:02:52" +ik[6198] = 5.43 +il[6198] = 35 +im[6198] = 0.3246 +ij[6198] = 11 +id[6199] = "2391-05-21T05:04:47" +ik[6199] = 3.65 +il[6199] = 41 +im[6199] = 0.3438 +ij[6199] = 27.6 +id[6200] = "2391-05-22T23:44:46" +ik[6200] = 44.09 +il[6200] = 43 +im[6200] = 0.4163 +ij[6200] = 7.1639 +id[6201] = "2391-06-25T13:18:28" +ik[6201] = 77.65 +il[6201] = 109 +im[6201] = 0.1864 +ij[6201] = 14 +id[6202] = "2391-07-11T02:34:46" +ik[6202] = 90 +il[6202] = 150 +im[6202] = 0.0947 +ij[6202] = 5 +id[6203] = "2391-09-21T01:54:11" +ik[6203] = 54.398 +il[6203] = 9 +im[6203] = 0.1143 +ij[6203] = 8 +id[6204] = "2391-12-04T14:10:27" +ik[6204] = 0.036 +il[6204] = -120 +im[6204] = 0.0906 +ij[6204] = 28.5 +id[6205] = "2391-12-22T04:02:47" +ik[6205] = 4.961 +il[6205] = -65 +im[6205] = 0.0582 +ij[6205] = 27.1 +id[6206] = "2391-12-30T22:26:32" +ik[6206] = 1.044 +il[6206] = -37 +im[6206] = 0.0834 +ij[6206] = 28.8 +id[6207] = "2392-01-04T22:56:38" +ik[6207] = 2.215 +il[6207] = -22 +im[6207] = 0.0807 +ij[6207] = 28.1 +id[6208] = "2392-02-17T20:51:21" +ik[6208] = 1.34 +il[6208] = 92 +im[6208] = 0.0796 +ij[6208] = 12 +id[6209] = "2392-03-25T03:58:51" +ik[6209] = 0.573 +il[6209] = 27 +im[6209] = 0.0068 +ij[6209] = 28.4 +id[6210] = "2392-04-01T07:10:50" +ik[6210] = 0.303 +il[6210] = 38 +im[6210] = 0.0861 +ij[6210] = 28.7 +id[6211] = "2392-04-06T20:13:43" +ik[6211] = 2.91 +il[6211] = 56 +im[6211] = 0.0477 +ij[6211] = 27.6 +id[6212] = "2392-04-12T12:30:05" +ik[6212] = 2.619 +il[6212] = 73 +im[6212] = 0.0583 +ij[6212] = 28.1 +id[6213] = "2392-05-13T17:54:47" +ik[6213] = 3.956 +il[6213] = 171 +im[6213] = 0.0798 +ij[6213] = 27.2 +id[6214] = "2392-07-09T21:38:12" +ik[6214] = 54.653 +il[6214] = -11 +im[6214] = 0.0399 +ij[6214] = 9 +id[6215] = "2392-09-21T11:17:31" +ik[6215] = 90 +il[6215] = -148 +im[6215] = 0.0269 +ij[6215] = 6 +id[6216] = "2392-10-13T20:05:54" +ik[6216] = 0.616 +il[6216] = -91 +im[6216] = 0.2735 +ij[6216] = 27.4 +id[6217] = "2392-11-11T13:18:55" +ik[6217] = 0 +il[6217] = -25 +im[6217] = 0.4284 +ij[6217] = 13 +id[6218] = "2392-12-03T06:33:07" +ik[6218] = 1.43 +il[6218] = 32 +im[6218] = 0.2901 +ij[6218] = 11 +id[6219] = "2392-12-07T11:54:58" +ik[6219] = 0.5457 +il[6219] = 15 +im[6219] = 0.5458 +ij[6219] = 2 +id[6220] = "2392-12-23T16:43:32" +ik[6220] = 42.14 +il[6220] = 34 +im[6220] = 0.3282 +ij[6220] = 7.1542 +id[6221] = "2393-01-19T17:42:20" +ik[6221] = 0.961 +il[6221] = 86 +im[6221] = 0.2629 +ij[6221] = 27.1 +id[6222] = "2393-01-24T04:38:16" +ik[6222] = 73.64 +il[6222] = 96 +im[6222] = 0.0505 +ij[6222] = 14 +id[6223] = "2393-02-02T04:37:12" +ik[6223] = 3.397 +il[6223] = 117 +im[6223] = 0.239 +ij[6223] = 28.5 +id[6224] = "2393-02-03T21:18:25" +ik[6224] = 2.677 +il[6224] = 122 +im[6224] = 0.2025 +ij[6224] = 28.8 +id[6225] = "2393-02-12T09:27:50" +ik[6225] = 90 +il[6225] = 143 +im[6225] = 0.1705 +ij[6225] = 5 +id[6226] = "2393-03-18T03:34:20" +ik[6226] = 2.312 +il[6226] = -111 +im[6226] = 0.1654 +ij[6226] = 27.3 +id[6227] = "2393-04-06T01:03:40" +ik[6227] = 0.086 +il[6227] = -52 +im[6227] = 0.0742 +ij[6227] = 27.5 +id[6228] = "2393-05-01T16:12:18" +ik[6228] = 0.9 +il[6228] = 27 +im[6228] = 0.1128 +ij[6228] = 28.6 +id[6229] = "2393-05-01T18:01:20" +ik[6229] = 54.103 +il[6229] = 27 +im[6229] = 0.1127 +ij[6229] = 8 +id[6230] = "2393-05-18T08:55:32" +ik[6230] = 1.097 +il[6230] = 78 +im[6230] = 0.1102 +ij[6230] = 28.7 +id[6231] = "2393-05-21T12:41:43" +ik[6231] = 3.88 +il[6231] = 88 +im[6231] = 0.0695 +ij[6231] = 27.6 +id[6232] = "2393-06-28T18:10:03" +ik[6232] = 5.563 +il[6232] = -156 +im[6232] = 0.0871 +ij[6232] = 27.2 +id[6233] = "2393-07-15T16:58:04" +ik[6233] = 0.199 +il[6233] = -104 +im[6233] = 0.0896 +ij[6233] = 27.91 +id[6234] = "2393-08-15T18:49:58" +ik[6234] = 3.077 +il[6234] = -9 +im[6234] = 0.0834 +ij[6234] = 28.1 +id[6235] = "2393-09-18T08:58:33" +ik[6235] = 1.41 +il[6235] = 73 +im[6235] = 0.0494 +ij[6235] = 12 +id[6236] = "2393-11-12T11:42:20" +ik[6236] = 4.108 +il[6236] = 59 +im[6236] = 0.0875 +ij[6236] = 27.4 +id[6237] = "2393-11-20T23:02:24" +ik[6237] = 1.106 +il[6237] = 85 +im[6237] = 0.0008 +ij[6237] = 28.1 +id[6238] = "2393-12-04T16:03:04" +ik[6238] = 2.13 +il[6238] = 127 +im[6238] = 0.0292 +ij[6238] = 28.8 +id[6239] = "2394-01-01T21:49:58" +ik[6239] = 0.894 +il[6239] = -147 +im[6239] = 0.0641 +ij[6239] = 28.5 +id[6240] = "2394-01-06T06:33:27" +ik[6240] = 0.385 +il[6240] = -134 +im[6240] = 0.0291 +ij[6240] = 27.3 +id[6241] = "2394-01-24T04:02:47" +ik[6241] = 1.154 +il[6241] = -78 +im[6241] = 0.0665 +ij[6241] = 27.5 +id[6242] = "2394-02-17T22:49:21" +ik[6242] = 53.804 +il[6242] = -1 +im[6242] = 0.0507 +ij[6242] = 9 +id[6243] = "2394-03-04T18:54:17" +ik[6243] = 2.46 +il[6243] = 46 +im[6243] = 0.036 +ij[6243] = 28.6 +id[6244] = "2394-03-10T06:17:34" +ik[6244] = 1.64 +il[6244] = 63 +im[6244] = 0.1036 +ij[6244] = 27.6 +id[6245] = "2394-03-13T07:15:10" +ik[6245] = 1.148 +il[6245] = 72 +im[6245] = 0.1418 +ij[6245] = 28.7 +id[6246] = "2394-04-03T19:44:15" +ik[6246] = 1.54 +il[6246] = 140 +im[6246] = 0.0443 +ij[6246] = 28.4 +id[6247] = "2394-04-20T00:22:20" +ik[6247] = 1.627 +il[6247] = -170 +im[6247] = 0.0221 +ij[6247] = 27.2 +id[6248] = "2394-05-02T04:33:18" +ik[6248] = 90 +il[6248] = -132 +im[6248] = 0.1158 +ij[6248] = 6 +id[6249] = "2394-06-18T04:38:43" +ik[6249] = 0 +il[6249] = -17 +im[6249] = 0.1197 +ij[6249] = 13 +id[6250] = "2394-07-07T10:36:50" +ik[6250] = 0.5096 +il[6250] = 23 +im[6250] = 0.5096 +ij[6250] = 2 +id[6251] = "2394-07-10T02:02:24" +ik[6251] = 3.97 +il[6251] = 29 +im[6251] = 0.4085 +ij[6251] = 11 +id[6252] = "2394-08-01T05:45:18" +ik[6252] = 44.05 +il[6252] = 38 +im[6252] = 0.3975 +ij[6252] = 7.1664 +id[6253] = "2394-09-04T00:13:06" +ik[6253] = 77.82 +il[6253] = 105 +im[6253] = 0.1784 +ij[6253] = 14 +id[6254] = "2394-09-18T11:43:10" +ik[6254] = 90 +il[6254] = 142 +im[6254] = 0.1393 +ij[6254] = 5 +id[6255] = "2394-12-01T10:19:09" +ik[6255] = 53.941 +il[6255] = 9 +im[6255] = 0.0871 +ij[6255] = 8 +id[6256] = "2395-01-05T05:04:33" +ik[6256] = 4.326 +il[6256] = 117 +im[6256] = 0.0164 +ij[6256] = 27.1 +id[6257] = "2395-01-19T05:36:40" +ik[6257] = 0.531 +il[6257] = 161 +im[6257] = 0.0268 +ij[6257] = 28.8 +id[6258] = "2395-02-20T03:39:40" +ik[6258] = 0.636 +il[6258] = -99 +im[6258] = 0.0174 +ij[6258] = 27.3 +id[6259] = "2395-03-06T21:08:03" +ik[6259] = 2.664 +il[6259] = -54 +im[6259] = 0.0109 +ij[6259] = 28.1 +id[6260] = "2395-03-09T04:55:46" +ik[6260] = 0.006 +il[6260] = -47 +im[6260] = 0.0476 +ij[6260] = 28.5 +id[6261] = "2395-03-09T18:47:40" +ik[6261] = 0.787 +il[6261] = -45 +im[6261] = 0.0558 +ij[6261] = 27.5 +id[6262] = "2395-05-03T05:15:21" +ik[6262] = 0.87 +il[6262] = 99 +im[6262] = 0.0471 +ij[6262] = 12 +id[6263] = "2395-06-16T00:28:30" +ik[6263] = 0.215 +il[6263] = 50 +im[6263] = 0.0568 +ij[6263] = 27.9 +id[6264] = "2395-06-22T15:34:50" +ik[6264] = 1.626 +il[6264] = 71 +im[6264] = 0.0533 +ij[6264] = 28.1 +id[6265] = "2395-09-18T01:00:57" +ik[6265] = 54.194 +il[6265] = -21 +im[6265] = 0.0106 +ij[6265] = 9 +id[6266] = "2395-10-16T21:20:06" +ik[6266] = 2.361 +il[6266] = 67 +im[6266] = 0.0484 +ij[6266] = 27.4 +id[6267] = "2395-11-14T05:03:15" +ik[6267] = 3.965 +il[6267] = 154 +im[6267] = 0.1116 +ij[6267] = 28.8 +id[6268] = "2395-12-06T21:40:13" +ik[6268] = 90 +il[6268] = -136 +im[6268] = 0.2001 +ij[6268] = 6 +id[6269] = "2395-12-18T10:32:33" +ik[6269] = 0.818 +il[6269] = -104 +im[6269] = 0.0858 +ij[6269] = 27.3 +id[6270] = "2396-01-18T04:56:45" +ik[6270] = 3.202 +il[6270] = -38 +im[6270] = 0.2936 +ij[6270] = 27.5 +id[6271] = "2396-01-26T00:13:33" +ik[6271] = 0 +il[6271] = -11 +im[6271] = 0.228 +ij[6271] = 13 +id[6272] = "2396-02-16T04:03:21" +ik[6272] = 8.26 +il[6272] = 8 +im[6272] = 0.5178 +ij[6272] = 11 +id[6273] = "2396-02-17T01:25:33" +ik[6273] = 0.5304 +il[6273] = 21 +im[6273] = 0.5305 +ij[6273] = 2 +id[6274] = "2396-03-07T23:16:08" +ik[6274] = 41.96 +il[6274] = 43 +im[6274] = 0.1149 +ij[6274] = 7.1582 +id[6275] = "2396-04-09T08:22:55" +ik[6275] = 74.34 +il[6275] = 107 +im[6275] = 0.1864 +ij[6275] = 14 +id[6276] = "2396-04-10T23:15:40" +ik[6276] = 2.548 +il[6276] = 111 +im[6276] = 0.2334 +ij[6276] = 27.5 +id[6277] = "2396-04-27T15:46:25" +ik[6277] = 90 +il[6277] = 154 +im[6277] = 0.2169 +ij[6277] = 5 +id[6278] = "2396-05-07T17:29:28" +ik[6278] = 0.456 +il[6278] = -175 +im[6278] = 0.104 +ij[6278] = 28.5 +id[6279] = "2396-06-02T04:08:25" +ik[6279] = 4.23 +il[6279] = -96 +im[6279] = 0.0499 +ij[6279] = 27.6 +id[6280] = "2396-06-11T04:07:14" +ik[6280] = 1.696 +il[6280] = -69 +im[6280] = 0.143 +ij[6280] = 28.7 +id[6281] = "2396-06-13T18:28:13" +ik[6281] = 0.251 +il[6281] = -61 +im[6281] = 0.1186 +ij[6281] = 28.6 +id[6282] = "2396-07-10T19:26:45" +ik[6282] = 54.482 +il[6282] = 22 +im[6282] = 0.1224 +ij[6282] = 8 +id[6283] = "2396-07-12T09:13:09" +ik[6283] = 6.296 +il[6283] = 27 +im[6283] = 0.1171 +ij[6283] = 27.2 +id[6284] = "2396-07-29T23:29:45" +ik[6284] = 1.538 +il[6284] = 80 +im[6284] = 0.0678 +ij[6284] = 28.4 +id[6285] = "2396-10-17T00:01:26" +ik[6285] = 1.228 +il[6285] = -37 +im[6285] = 0.0024 +ij[6285] = 28.1 +id[6286] = "2396-11-29T17:02:24" +ik[6286] = 0.31 +il[6286] = 78 +im[6286] = 0.0299 +ij[6286] = 12 +id[6287] = "2397-01-18T21:27:56" +ik[6287] = 2.44 +il[6287] = 45 +im[6287] = 0.0644 +ij[6287] = 28.1 +id[6288] = "2397-01-20T12:06:47" +ik[6288] = 0.066 +il[6288] = 50 +im[6288] = 0.0823 +ij[6288] = 27.3 +id[6289] = "2397-02-07T03:11:13" +ik[6289] = 1.083 +il[6289] = 104 +im[6289] = 0.0882 +ij[6289] = 27.5 +id[6290] = "2397-03-23T02:37:25" +ik[6290] = 2.44 +il[6290] = -119 +im[6290] = 0.0974 +ij[6290] = 27.6 +id[6291] = "2397-03-30T23:28:10" +ik[6291] = 1.115 +il[6291] = -94 +im[6291] = 0.0211 +ij[6291] = 28.5 +id[6292] = "2397-04-06T07:40:48" +ik[6292] = 0.696 +il[6292] = -74 +im[6292] = 0.1002 +ij[6292] = 28.7 +id[6293] = "2397-04-16T06:19:52" +ik[6293] = 2.803 +il[6293] = -43 +im[6293] = 0.008 +ij[6293] = 28.6 +id[6294] = "2397-04-29T18:32:06" +ik[6294] = 3.147 +il[6294] = -1 +im[6294] = 0.0247 +ij[6294] = 27.2 +id[6295] = "2397-04-30T19:48:06" +ik[6295] = 54.452 +il[6295] = 2 +im[6295] = 0.008 +ij[6295] = 9 +id[6296] = "2397-07-09T09:06:37" +ik[6296] = 90 +il[6296] = -144 +im[6296] = 0.1946 +ij[6296] = 6 +id[6297] = "2397-08-17T00:13:32" +ik[6297] = 3.186 +il[6297] = -51 +im[6297] = 0.2857 +ij[6297] = 27.7 +id[6298] = "2397-08-27T08:23:22" +ik[6298] = 0 +il[6298] = -35 +im[6298] = 0.1241 +ij[6298] = 13 +id[6299] = "2397-09-10T00:13:32" +ik[6299] = 7.777 +il[6299] = -10 +im[6299] = 0.113 +ij[6299] = 27.7 +id[6300] = "2397-09-18T16:48:00" +ik[6300] = 8.68 +il[6300] = 12 +im[6300] = 0.344 +ij[6300] = 11 +id[6301] = "2397-09-28T11:29:53" +ik[6301] = 0.5233 +il[6301] = 18 +im[6301] = 0.5234 +ij[6301] = 2 +id[6302] = "2397-10-10T08:26:56" +ik[6302] = 44 +il[6302] = 33 +im[6302] = 0.3782 +ij[6302] = 7.1616 +id[6303] = "2397-11-11T14:13:41" +ik[6303] = 76.24 +il[6303] = 97 +im[6303] = 0.2167 +ij[6303] = 14 +id[6304] = "2397-11-28T09:49:58" +ik[6304] = 90 +il[6304] = 139 +im[6304] = 0.1541 +ij[6304] = 5 +id[6305] = "2398-01-17T14:09:53" +ik[6305] = 3.355 +il[6305] = -66 +im[6305] = 0.0672 +ij[6305] = 27.1 +id[6306] = "2398-02-06T13:16:19" +ik[6306] = 0.227 +il[6306] = -3 +im[6306] = 0.126 +ij[6306] = 28.8 +id[6307] = "2398-02-14T04:09:27" +ik[6307] = 53.724 +il[6307] = 21 +im[6307] = 0.0145 +ij[6307] = 8 +id[6308] = "2398-03-06T02:05:53" +ik[6308] = 1.175 +il[6308] = 83 +im[6308] = 0.0967 +ij[6308] = 27.3 +id[6309] = "2398-03-23T23:31:40" +ik[6309] = 0.513 +il[6309] = 138 +im[6309] = 0.0986 +ij[6309] = 27.5 +id[6310] = "2398-05-07T03:51:24" +ik[6310] = 3.55 +il[6310] = -86 +im[6310] = 0.0925 +ij[6310] = 27.6 +id[6311] = "2398-05-13T02:01:40" +ik[6311] = 0.267 +il[6311] = -68 +im[6311] = 0.0558 +ij[6311] = 28.1 +id[6312] = "2398-05-23T18:00:34" +ik[6312] = 0.684 +il[6312] = -36 +im[6312] = 0.0842 +ij[6312] = 28.7 +id[6313] = "2398-06-05T11:12:54" +ik[6313] = 0.196 +il[6313] = 3 +im[6313] = 0.0812 +ij[6313] = 28.5 +id[6314] = "2398-06-07T09:11:39" +ik[6314] = 1.216 +il[6314] = -2 +im[6314] = 0.0886 +ij[6314] = 28.6 +id[6315] = "2398-07-10T02:25:26" +ik[6315] = 0.65 +il[6315] = 87 +im[6315] = 0.0744 +ij[6315] = 12 +id[6316] = "2398-08-30T21:39:18" +ik[6316] = 3.744 +il[6316] = 65 +im[6316] = 0.0243 +ij[6316] = 28.1 +id[6317] = "2398-09-08T06:08:38" +ik[6317] = 0.889 +il[6317] = 90 +im[6317] = 0.0739 +ij[6317] = 28.4 +id[6318] = "2398-10-29T01:50:46" +ik[6318] = 3.431 +il[6318] = -115 +im[6318] = 0.0118 +ij[6318] = 27.4 +id[6319] = "2398-11-30T01:00:54" +ik[6319] = 2.818 +il[6319] = -18 +im[6319] = 0.0633 +ij[6319] = 28.8 +id[6320] = "2398-12-01T03:01:55" +ik[6320] = 53.608 +il[6320] = -14 +im[6320] = 0.0858 +ij[6320] = 9 +id[6321] = "2398-12-24T01:54:20" +ik[6321] = 0.76 +il[6321] = 56 +im[6321] = 0.0901 +ij[6321] = 27.3 +id[6322] = "2399-01-11T23:27:40" +ik[6322] = 1.04 +il[6322] = 115 +im[6322] = 0.0066 +ij[6322] = 27.5 +id[6323] = "2399-02-19T04:10:18" +ik[6323] = 90 +il[6323] = -125 +im[6323] = 0.198 +ij[6323] = 6 +id[6324] = "2399-03-04T15:00:22" +ik[6324] = 1.1 +il[6324] = -91 +im[6324] = 0.2698 +ij[6324] = 27.6 +id[6325] = "2399-04-06T14:14:08" +ik[6325] = 0 +il[6325] = -13 +im[6325] = 0.2623 +ij[6325] = 13 +id[6326] = "2399-04-29T00:52:38" +ik[6326] = 0.544 +il[6326] = 0 +im[6326] = 0.544 +ij[6326] = 2 +id[6327] = "2399-04-29T15:57:36" +ik[6327] = 5.7 +il[6327] = 11 +im[6327] = 0.5383 +ij[6327] = 11 +id[6328] = "2399-05-17T22:33:11" +ik[6328] = 1.38 +il[6328] = 42 +im[6328] = 0.0625 +ij[6328] = 27.6 +id[6329] = "2399-05-20T14:17:43" +ik[6329] = 44 +il[6329] = 46 +im[6329] = 0.1996 +ij[6329] = 7.1638 +id[6330] = "2399-06-23T03:44:30" +ik[6330] = 77.56 +il[6330] = 112 +im[6330] = 0.2652 +ij[6330] = 14 +id[6331] = "2399-06-30T12:52:24" +ik[6331] = 2.853 +il[6331] = 129 +im[6331] = 0.0435 +ij[6331] = 28.7 +id[6332] = "2399-07-08T19:00:08" +ik[6332] = 90 +il[6332] = 153 +im[6332] = 0.1909 +ij[6332] = 5 +id[6333] = "2399-07-25T00:24:20" +ik[6333] = 1.248 +il[6333] = -157 +im[6333] = 0.1689 +ij[6333] = 28.6 +id[6334] = "2399-08-09T18:04:45" +ik[6334] = 1.745 +il[6334] = -110 +im[6334] = 0.1069 +ij[6334] = 28.5 +id[6335] = "2399-09-18T18:12:09" +ik[6335] = 54.41 +il[6335] = 12 +im[6335] = 0.1115 +ij[6335] = 8 +id[6336] = "2399-12-15T19:51:53" +ik[6336] = 1.669 +il[6336] = -75 +im[6336] = 0.055 +ij[6336] = 28.1 +id[6337] = "2399-12-21T17:16:59" +ik[6337] = 4.981 +il[6337] = -56 +im[6337] = 0.0785 +ij[6337] = 27.1 +id[6338] = "2400-02-15T06:41:45" +ik[6338] = 1.31 +il[6338] = 94 +im[6338] = 0.0715 +ij[6338] = 12 +id[6339] = "2400-03-21T00:06:02" +ik[6339] = 3.069 +il[6339] = 24 +im[6339] = 0.0831 +ij[6339] = 28.1 +id[6340] = "2400-04-06T09:18:07" +ik[6340] = 2.9 +il[6340] = 64 +im[6340] = 0.0725 +ij[6340] = 27.6 +id[6341] = "2400-05-01T08:26:00" +ik[6341] = 0.384 +il[6341] = 142 +im[6341] = 0.0757 +ij[6341] = 28.7 +id[6342] = "2400-05-13T07:22:46" +ik[6342] = 3.936 +il[6342] = 180 +im[6342] = 0.0498 +ij[6342] = 27.2 +id[6343] = "2400-05-28T02:50:55" +ik[6343] = 2.14 +il[6343] = -134 +im[6343] = 0.0297 +ij[6343] = 28.6 +id[6344] = "2400-07-02T16:49:26" +ik[6344] = 0.905 +il[6344] = -24 +im[6344] = 0.112 +ij[6344] = 28.5 +id[6345] = "2400-07-07T15:46:24" +ik[6345] = 54.657 +il[6345] = -8 +im[6345] = 0.055 +ij[6345] = 9 +id[6346] = "2400-09-18T23:59:59" +ik[6346] = 90 +il[6346] = -146 +im[6346] = 0.1469 +ij[6346] = 6 +id[6347] = "2400-10-14T18:55:13" +ik[6347] = 0.842 +il[6347] = -81 +im[6347] = 0.2814 +ij[6347] = 27.4 +id[6348] = "2400-10-25T05:01:06" +ik[6348] = 3.404 +il[6348] = -59 +im[6348] = 0.2681 +ij[6348] = 28.4 +id[6349] = "2400-11-09T03:44:57" +ik[6349] = 0 +il[6349] = -30 +im[6349] = 0.3251 +ij[6349] = 13 +id[6350] = "2400-11-25T03:09:23" +ik[6350] = 0.5672 +il[6350] = 2 +im[6350] = 0.5673 +ij[6350] = 2 +id[6351] = "2400-11-30T19:48:00" +ik[6351] = 1.83 +il[6351] = 16 +im[6351] = 0.1578 +ij[6351] = 11 +id[6352] = "2400-12-07T23:34:19" +ik[6352] = 4.253 +il[6352] = 20 +im[6352] = 0.5205 +ij[6352] = 27.4 +id[6353] = "2400-12-11T11:32:12" +ik[6353] = 3.421 +il[6353] = 24 +im[6353] = 0.3797 +ij[6353] = 28.4 +id[6354] = "2400-12-21T05:50:32" +ik[6354] = 42.09 +il[6354] = 36 +im[6354] = 0.4708 +ij[6354] = 7.1543 +id[6355] = "2401-01-20T13:24:32" +ik[6355] = 1.093 +il[6355] = 96 +im[6355] = 0.2801 +ij[6355] = 27.1 +id[6356] = "2401-01-21T17:41:22" +ik[6356] = 73.58 +il[6356] = 99 +im[6356] = 0.2476 +ij[6356] = 14 +id[6357] = "2401-02-09T21:45:33" +ik[6357] = 90 +il[6357] = 146 +im[6357] = 0.0202 +ij[6357] = 5 +id[6358] = "2401-02-21T09:27:56" +ik[6358] = 1.827 +il[6358] = -178 +im[6358] = 0.1492 +ij[6358] = 28.8 +id[6359] = "2401-03-17T21:13:26" +ik[6359] = 2.253 +il[6359] = -102 +im[6359] = 0.1566 +ij[6359] = 27.3 +id[6360] = "2401-04-05T17:04:59" +ik[6360] = 0.055 +il[6360] = -43 +im[6360] = 0.1089 +ij[6360] = 27.5 +id[6361] = "2401-04-29T08:25:32" +ik[6361] = 54.086 +il[6361] = 30 +im[6361] = 0.0766 +ij[6361] = 8 +id[6362] = "2401-05-21T02:49:58" +ik[6362] = 3.87 +il[6362] = 97 +im[6362] = 0.0956 +ij[6362] = 27.6 +id[6363] = "2401-06-18T01:45:41" +ik[6363] = 1.025 +il[6363] = -178 +im[6363] = 0.0956 +ij[6363] = 28.7 +id[6364] = "2401-06-28T07:32:15" +ik[6364] = 5.543 +il[6364] = -147 +im[6364] = 0.0657 +ij[6364] = 27.2 +id[6365] = "2401-07-19T14:10:45" +ik[6365] = 0.533 +il[6365] = -82 +im[6365] = 0.0791 +ij[6365] = 28.6 +id[6366] = "2401-07-24T08:39:50" +ik[6366] = 2.996 +il[6366] = -68 +im[6366] = 0.0069 +ij[6366] = 28.1 +id[6367] = "2401-09-16T01:10:33" +ik[6367] = 1.41 +il[6367] = 76 +im[6367] = 0.0823 +ij[6367] = 12 +id[6368] = "2401-10-31T18:31:23" +ik[6368] = 1.817 +il[6368] = 34 +im[6368] = 0.0882 +ij[6368] = 28.1 +id[6369] = "2401-11-12T01:04:06" +ik[6369] = 4.092 +il[6369] = 68 +im[6369] = 0.0767 +ij[6369] = 27.4 +id[6370] = "2401-12-18T15:41:38" +ik[6370] = 2.145 +il[6370] = 179 +im[6370] = 0.0785 +ij[6370] = 28.8 +id[6371] = "2402-01-05T20:26:46" +ik[6371] = 0.394 +il[6371] = -125 +im[6371] = 0.0162 +ij[6371] = 27.3 +id[6372] = "2402-01-23T18:14:46" +ik[6372] = 1.152 +il[6372] = -69 +im[6372] = 0.031 +ij[6372] = 27.5 +id[6373] = "2402-02-15T10:51:19" +ik[6373] = 53.783 +il[6373] = 1 +im[6373] = 0.1182 +ij[6373] = 9 +id[6374] = "2402-03-09T22:09:56" +ik[6374] = 1.6 +il[6374] = 72 +im[6374] = 0.0549 +ij[6374] = 27.6 +id[6375] = "2402-04-14T23:58:24" +ik[6375] = 2.808 +il[6375] = -175 +im[6375] = 0.1778 +ij[6375] = 28.7 +id[6376] = "2402-04-19T22:04:32" +ik[6376] = 1.546 +il[6376] = -160 +im[6376] = 0.0756 +ij[6376] = 27.2 +id[6377] = "2402-04-29T22:12:05" +ik[6377] = 90 +il[6377] = -129 +im[6377] = 0.2103 +ij[6377] = 6 +id[6378] = "2402-06-15T17:41:50" +ik[6378] = 0 +il[6378] = -15 +im[6378] = 0.2196 +ij[6378] = 13 +id[6379] = "2402-06-19T21:55:52" +ik[6379] = 1.634 +il[6379] = -15 +im[6379] = 0.1922 +ij[6379] = 28.6 +id[6380] = "2402-07-07T18:54:43" +ik[6380] = 3.68 +il[6380] = 32 +im[6380] = 0.4934 +ij[6380] = 11 +id[6381] = "2402-07-08T11:49:22" +ik[6381] = 0.501 +il[6381] = 17 +im[6381] = 0.501 +ij[6381] = 2 +id[6382] = "2402-07-29T18:46:24" +ik[6382] = 44.04 +il[6382] = 41 +im[6382] = 0.1437 +ij[6382] = 7.1665 +id[6383] = "2402-08-29T04:29:34" +ik[6383] = 3.873 +il[6383] = 99 +im[6383] = 0.185 +ij[6383] = 28.6 +id[6384] = "2402-09-01T17:17:07" +ik[6384] = 77.98 +il[6384] = 107 +im[6384] = 0.2458 +ij[6384] = 14 +id[6385] = "2402-09-16T03:57:03" +ik[6385] = 90 +il[6385] = 145 +im[6385] = 0.2156 +ij[6385] = 5 +id[6386] = "2402-11-20T15:09:21" +ik[6386] = 0.28 +il[6386] = -15 +im[6386] = 0.0602 +ij[6386] = 28.5 +id[6387] = "2402-11-28T23:50:00" +ik[6387] = 53.957 +il[6387] = 11 +im[6387] = 0.113 +ij[6387] = 8 +id[6388] = "2403-01-04T19:00:59" +ik[6388] = 4.352 +il[6388] = 126 +im[6388] = 0.0305 +ij[6388] = 27.1 +id[6389] = "2403-01-25T22:52:36" +ik[6389] = 1.314 +il[6389] = -177 +im[6389] = 0.0779 +ij[6389] = 28.4 +id[6390] = "2403-02-02T02:20:06" +ik[6390] = 0.726 +il[6390] = -146 +im[6390] = 0.063 +ij[6390] = 28.8 +id[6391] = "2403-02-13T19:40:56" +ik[6391] = 2.836 +il[6391] = -109 +im[6391] = 0.0922 +ij[6391] = 28.1 +id[6392] = "2403-02-19T17:04:33" +ik[6392] = 0.624 +il[6392] = -91 +im[6392] = 0.0219 +ij[6392] = 27.3 +id[6393] = "2403-03-09T07:59:39" +ik[6393] = 0.793 +il[6393] = -36 +im[6393] = 0.0218 +ij[6393] = 27.5 +id[6394] = "2403-04-30T20:58:33" +ik[6394] = 0.91 +il[6394] = 102 +im[6394] = 0.0874 +ij[6394] = 12 +id[6395] = "2403-06-15T11:59:51" +ik[6395] = 0.178 +il[6395] = 59 +im[6395] = 0.0802 +ij[6395] = 27.9 +id[6396] = "2403-07-10T01:03:12" +ik[6396] = 0.938 +il[6396] = 135 +im[6396] = 0.0674 +ij[6396] = 28.6 +id[6397] = "2403-09-15T16:00:42" +ik[6397] = 54.217 +il[6397] = -18 +im[6397] = 0.0961 +ij[6397] = 9 +id[6398] = "2403-10-16T14:09:52" +ik[6398] = 2.313 +il[6398] = 76 +im[6398] = 0.0967 +ij[6398] = 27.4 +id[6399] = "2403-10-16T17:15:04" +ik[6399] = 2.408 +il[6399] = 76 +im[6399] = 0.0938 +ij[6399] = 28.5 +id[6400] = "2403-11-30T16:46:42" +ik[6400] = 3.565 +il[6400] = -145 +im[6400] = 0.107 +ij[6400] = 28.8 +id[6401] = "2403-12-04T08:57:47" +ik[6401] = 90 +il[6401] = -134 +im[6401] = 0.0567 +ij[6401] = 6 +id[6402] = "2403-12-18T19:54:19" +ik[6402] = 0.754 +il[6402] = -95 +im[6402] = 0.0543 +ij[6402] = 27.3 +id[6403] = "2404-01-19T01:57:11" +ik[6403] = 4.652 +il[6403] = -30 +im[6403] = 0.3023 +ij[6403] = 27.5 +id[6404] = "2404-01-23T17:17:34" +ik[6404] = 0 +il[6404] = -10 +im[6404] = 0.4436 +ij[6404] = 13 +id[6405] = "2404-02-13T16:43:40" +ik[6405] = 8.11 +il[6405] = 11 +im[6405] = 0.2517 +ij[6405] = 11 +id[6406] = "2404-02-17T23:06:51" +ik[6406] = 0.5348 +il[6406] = 26 +im[6406] = 0.5349 +ij[6406] = 2 +id[6407] = "2404-03-05T19:23:09" +ik[6407] = 42.09 +il[6407] = 46 +im[6407] = 0.3617 +ij[6407] = 7.1581 +id[6408] = "2404-04-06T20:19:54" +ik[6408] = 74.13 +il[6408] = 109 +im[6408] = 0.0234 +ij[6408] = 14 +id[6409] = "2404-04-11T08:06:46" +ik[6409] = 2.331 +il[6409] = 120 +im[6409] = 0.2047 +ij[6409] = 27.5 +id[6410] = "2404-04-25T05:21:58" +ik[6410] = 90 +il[6410] = 156 +im[6410] = 0.1371 +ij[6410] = 5 +id[6411] = "2404-06-01T21:44:45" +ik[6411] = 4.22 +il[6411] = -87 +im[6411] = 0.092 +ij[6411] = 27.6 +id[6412] = "2404-07-08T12:30:56" +ik[6412] = 54.476 +il[6412] = 25 +im[6412] = 0.0844 +ij[6412] = 8 +id[6413] = "2404-07-11T23:54:28" +ik[6413] = 6.266 +il[6413] = 35 +im[6413] = 0.1207 +ij[6413] = 27.2 +id[6414] = "2404-07-12T13:32:26" +ik[6414] = 1.538 +il[6414] = 37 +im[6414] = 0.1216 +ij[6414] = 28.7 +id[6415] = "2404-08-30T17:01:58" +ik[6415] = 0.299 +il[6415] = -173 +im[6415] = 0.0587 +ij[6415] = 28.6 +id[6416] = "2404-09-27T13:32:52" +ik[6416] = 1.581 +il[6416] = -87 +im[6416] = 0.0827 +ij[6416] = 28.1 +id[6417] = "2404-10-17T08:38:24" +ik[6417] = 1.254 +il[6417] = -26 +im[6417] = 0.0214 +ij[6417] = 28.1 +id[6418] = "2404-11-27T05:28:19" +ik[6418] = 0.37 +il[6418] = 80 +im[6418] = 0.0828 +ij[6418] = 12 +id[6419] = "2405-01-06T21:13:14" +ik[6419] = 1.644 +il[6419] = 29 +im[6419] = 0.0719 +ij[6419] = 28.8 +id[6420] = "2405-01-20T01:21:26" +ik[6420] = 0.075 +il[6420] = 59 +im[6420] = 0.0556 +ij[6420] = 27.3 +id[6421] = "2405-02-01T10:13:00" +ik[6421] = 0.87 +il[6421] = 97 +im[6421] = 0.0089 +ij[6421] = 28.4 +id[6422] = "2405-02-06T16:34:19" +ik[6422] = 1.084 +il[6422] = 113 +im[6422] = 0.0836 +ij[6422] = 27.5 +id[6423] = "2405-03-22T16:26:37" +ik[6423] = 2.42 +il[6423] = -110 +im[6423] = 0.0726 +ij[6423] = 27.6 +id[6424] = "2405-04-28T12:30:57" +ik[6424] = 54.434 +il[6424] = 5 +im[6424] = 0.0838 +ij[6424] = 9 +id[6425] = "2405-04-29T09:28:32" +ik[6425] = 3.115 +il[6425] = 8 +im[6425] = 0.067 +ij[6425] = 27.2 +id[6426] = "2405-05-06T09:06:02" +ik[6426] = 1.622 +il[6426] = 30 +im[6426] = 0.1014 +ij[6426] = 28.7 +id[6427] = "2405-07-07T01:48:48" +ik[6427] = 90 +il[6427] = -141 +im[6427] = 0.2025 +ij[6427] = 6 +id[6428] = "2405-07-07T11:53:39" +ik[6428] = 0.2 +il[6428] = -137 +im[6428] = 0.2085 +ij[6428] = 28.6 +id[6429] = "2405-08-20T13:00:20" +ik[6429] = 3.333 +il[6429] = -32 +im[6429] = 0.3836 +ij[6429] = 27.7 +id[6430] = "2405-08-24T20:20:21" +ik[6430] = 0 +il[6430] = -32 +im[6430] = 0.2297 +ij[6430] = 13 +id[6431] = "2405-09-16T06:46:18" +ik[6431] = 0.5064 +il[6431] = 17 +im[6431] = 0.5065 +ij[6431] = 2 +id[6432] = "2405-09-16T07:00:28" +ik[6432] = 8.7 +il[6432] = 16 +im[6432] = 0.5065 +ij[6432] = 11 +id[6433] = "2405-10-07T19:24:56" +ik[6433] = 43.96 +il[6433] = 36 +im[6433] = 0.1087 +ij[6433] = 7.1618 +id[6434] = "2405-11-09T07:03:38" +ik[6434] = 76.45 +il[6434] = 100 +im[6434] = 0.2422 +ij[6434] = 14 +id[6435] = "2405-11-26T00:10:37" +ik[6435] = 90 +il[6435] = 141 +im[6435] = 0.2234 +ij[6435] = 5 +id[6436] = "2406-01-17T06:31:12" +ik[6436] = 3.4 +il[6436] = -57 +im[6436] = 0.0079 +ij[6436] = 27.1 +id[6437] = "2406-02-11T15:42:58" +ik[6437] = 53.721 +il[6437] = 23 +im[6437] = 0.1003 +ij[6437] = 8 +id[6438] = "2406-02-20T18:58:01" +ik[6438] = 0.099 +il[6438] = 51 +im[6438] = 0.0905 +ij[6438] = 28.8 +id[6439] = "2406-02-27T06:49:06" +ik[6439] = 0.599 +il[6439] = 72 +im[6439] = 0.0721 +ij[6439] = 28.5 +id[6440] = "2406-03-05T16:20:32" +ik[6440] = 1.153 +il[6440] = 91 +im[6440] = 0.0659 +ij[6440] = 27.3 +id[6441] = "2406-03-23T13:19:39" +ik[6441] = 0.525 +il[6441] = 147 +im[6441] = 0.0879 +ij[6441] = 27.5 +id[6442] = "2406-04-19T20:44:18" +ik[6442] = 0.646 +il[6442] = -129 +im[6442] = 0.0449 +ij[6442] = 28.1 +id[6443] = "2406-05-06T17:10:31" +ik[6443] = 3.54 +il[6443] = -78 +im[6443] = 0.073 +ij[6443] = 27.6 +id[6444] = "2406-06-02T05:56:41" +ik[6444] = 0.222 +il[6444] = 3 +im[6444] = 0.0155 +ij[6444] = 28.1 +id[6445] = "2406-07-07T21:05:45" +ik[6445] = 0.61 +il[6445] = 90 +im[6445] = 0.0789 +ij[6445] = 12 +id[6446] = "2406-08-08T14:17:48" +ik[6446] = 3.394 +il[6446] = 6 +im[6446] = 0.0828 +ij[6446] = 28.1 +id[6447] = "2406-08-21T19:59:22" +ik[6447] = 0.359 +il[6447] = 47 +im[6447] = 0.0889 +ij[6447] = 28.6 +id[6448] = "2406-10-28T15:58:19" +ik[6448] = 3.408 +il[6448] = -107 +im[6448] = 0.0321 +ij[6448] = 27.4 +id[6449] = "2406-11-28T13:56:20" +ik[6449] = 53.62 +il[6449] = -12 +im[6449] = 0.0151 +ij[6449] = 9 +id[6450] = "2406-12-14T09:49:40" +ik[6450] = 2.536 +il[6450] = 36 +im[6450] = 0.0155 +ij[6450] = 28.8 +id[6451] = "2406-12-23T17:51:39" +ik[6451] = 0.769 +il[6451] = 65 +im[6451] = 0.1206 +ij[6451] = 27.3 +id[6452] = "2407-01-11T17:04:59" +ik[6452] = 1.023 +il[6452] = 124 +im[6452] = 0.064 +ij[6452] = 27.5 +id[6453] = "2407-01-19T23:06:56" +ik[6453] = 0.164 +il[6453] = 149 +im[6453] = 0.155 +ij[6453] = 28.5 +id[6454] = "2407-02-09T03:47:05" +ik[6454] = 2.244 +il[6454] = -146 +im[6454] = 0.1318 +ij[6454] = 28.4 +id[6455] = "2407-02-16T18:27:25" +ik[6455] = 90 +il[6455] = -123 +im[6455] = 0.1708 +ij[6455] = 6 +id[6456] = "2407-03-05T01:13:28" +ik[6456] = 1.33 +il[6456] = -82 +im[6456] = 0.2706 +ij[6456] = 27.6 +id[6457] = "2407-04-04T07:04:05" +ik[6457] = 0 +il[6457] = -12 +im[6457] = 0.4282 +ij[6457] = 13 +id[6458] = "2407-04-27T07:42:14" +ik[6458] = 5.96 +il[6458] = 49 +im[6458] = 0.4355 +ij[6458] = 11 +id[6459] = "2407-04-30T03:29:23" +ik[6459] = 0.5391 +il[6459] = 28 +im[6459] = 0.5392 +ij[6459] = 2 +id[6460] = "2407-05-12T03:41:24" +ik[6460] = 0.71 +il[6460] = 40 +im[6460] = 0.4297 +ij[6460] = 27.6 +id[6461] = "2407-05-18T06:06:40" +ik[6461] = 43.96 +il[6461] = 49 +im[6461] = 0.1357 +ij[6461] = 7.1636 +id[6462] = "2407-06-20T18:08:21" +ik[6462] = 77.46 +il[6462] = 115 +im[6462] = 0.1787 +ij[6462] = 14 +id[6463] = "2407-07-06T11:21:05" +ik[6463] = 90 +il[6463] = 156 +im[6463] = 0.1592 +ij[6463] = 5 +id[6464] = "2407-08-05T00:32:58" +ik[6464] = 2.46 +il[6464] = -114 +im[6464] = 0.1229 +ij[6464] = 28.7 +id[6465] = "2407-09-16T10:37:14" +ik[6465] = 54.421 +il[6465] = 15 +im[6465] = 0.0412 +ij[6465] = 8 +id[6466] = "2407-10-13T13:12:00" +ik[6466] = 0.85 +il[6466] = 98 +im[6466] = 0.03 +ij[6466] = 28.6 +id[6467] = "2407-12-22T02:38:06" +ik[6467] = 1.413 +il[6467] = -45 +im[6467] = 0.0849 +ij[6467] = 28.1 +id[6468] = "2408-02-12T16:29:16" +ik[6468] = 1.28 +il[6468] = 96 +im[6468] = 0.0088 +ij[6468] = 12 +id[6469] = "2408-03-22T09:16:07" +ik[6469] = 0.252 +il[6469] = 38 +im[6469] = 0.0874 +ij[6469] = 28.5 +id[6470] = "2408-04-05T22:30:18" +ik[6470] = 2.88 +il[6470] = 73 +im[6470] = 0.0843 +ij[6470] = 27.6 +id[6471] = "2408-05-12T20:54:45" +ik[6471] = 3.916 +il[6471] = -179 +im[6471] = 0.0128 +ij[6471] = 27.2 +id[6472] = "2408-05-30T04:45:41" +ik[6472] = 1.027 +il[6472] = -117 +im[6472] = 0.045 +ij[6472] = 28.7 +id[6473] = "2408-07-05T09:54:35" +ik[6473] = 54.661 +il[6473] = -5 +im[6473] = 0.1146 +ij[6473] = 9 +id[6474] = "2408-08-16T07:38:38" +ik[6474] = 2.266 +il[6474] = 122 +im[6474] = 0.1325 +ij[6474] = 28.6 +id[6475] = "2408-09-16T12:53:05" +ik[6475] = 90 +il[6475] = -143 +im[6475] = 0.1981 +ij[6475] = 6 +id[6476] = "2408-10-16T00:52:32" +ik[6476] = 1.091 +il[6476] = -71 +im[6476] = 0.2963 +ij[6476] = 27.4 +id[6477] = "2408-11-06T18:08:48" +ik[6477] = 0 +il[6477] = -24 +im[6477] = 0.0774 +ij[6477] = 13 +id[6478] = "2408-11-26T07:09:48" +ik[6478] = 0.5793 +il[6478] = 17 +im[6478] = 0.5794 +ij[6478] = 2 +id[6479] = "2408-11-28T09:01:26" +ik[6479] = 2.22 +il[6479] = 21 +im[6479] = 0.5169 +ij[6479] = 11 +id[6480] = "2408-11-30T08:29:25" +ik[6480] = 2.502 +il[6480] = 18 +im[6480] = 0.3534 +ij[6480] = 27.4 +id[6481] = "2408-12-18T17:17:23" +ik[6481] = 41.96 +il[6481] = 39 +im[6481] = 0.2944 +ij[6481] = 7.1545 +id[6482] = "2409-01-19T07:03:06" +ik[6482] = 73.54 +il[6482] = 101 +im[6482] = 0.2845 +ij[6482] = 14 +id[6483] = "2409-01-21T04:38:18" +ik[6483] = 1.222 +il[6483] = 105 +im[6483] = 0.2842 +ij[6483] = 27.1 +id[6484] = "2409-02-07T10:03:15" +ik[6484] = 90 +il[6484] = 148 +im[6484] = 0.151 +ij[6484] = 5 +id[6485] = "2409-03-09T07:33:11" +ik[6485] = 1.038 +il[6485] = -119 +im[6485] = 0.1102 +ij[6485] = 28.8 +id[6486] = "2409-03-17T14:39:12" +ik[6486] = 2.198 +il[6486] = -93 +im[6486] = 0.1228 +ij[6486] = 27.3 +id[6487] = "2409-04-05T09:00:05" +ik[6487] = 0.028 +il[6487] = -34 +im[6487] = 0.1289 +ij[6487] = 27.5 +id[6488] = "2409-04-26T22:42:36" +ik[6488] = 54.069 +il[6488] = 32 +im[6488] = 0.017 +ij[6488] = 8 +id[6489] = "2409-05-17T20:46:27" +ik[6489] = 0.374 +il[6489] = 97 +im[6489] = 0.0935 +ij[6489] = 28.4 +id[6490] = "2409-05-20T17:03:10" +ik[6490] = 3.86 +il[6490] = 105 +im[6490] = 0.1043 +ij[6490] = 27.6 +id[6491] = "2409-05-27T03:07:55" +ik[6491] = 0.284 +il[6491] = 125 +im[6491] = 0.0075 +ij[6491] = 28.5 +id[6492] = "2409-06-27T20:51:21" +ik[6492] = 5.522 +il[6492] = -138 +im[6492] = 0.0327 +ij[6492] = 27.2 +id[6493] = "2409-07-02T02:44:00" +ik[6493] = 2.764 +il[6493] = -126 +im[6493] = 0.09 +ij[6493] = 28.1 +id[6494] = "2409-07-16T19:58:22" +ik[6494] = 0.407 +il[6494] = -81 +im[6494] = 0.0751 +ij[6494] = 28.7 +id[6495] = "2409-09-13T17:26:52" +ik[6495] = 1.41 +il[6495] = 79 +im[6495] = 0.0626 +ij[6495] = 12 +id[6496] = "2409-11-11T14:30:45" +ik[6496] = 4.076 +il[6496] = 77 +im[6496] = 0.0514 +ij[6496] = 27.4 +id[6497] = "2410-01-01T10:56:03" +ik[6497] = 1.895 +il[6497] = -128 +im[6497] = 0.0972 +ij[6497] = 28.8 +id[6498] = "2410-01-05T10:16:58" +ik[6498] = 0.403 +il[6498] = -116 +im[6498] = 0.0551 +ij[6498] = 27.3 +id[6499] = "2410-01-23T08:31:12" +ik[6499] = 1.151 +il[6499] = -61 +im[6499] = 0.014 +ij[6499] = 27.5 +id[6500] = "2410-02-12T22:46:11" +ik[6500] = 53.763 +il[6500] = 4 +im[6500] = 0.1079 +ij[6500] = 9 +id[6501] = "2410-03-09T14:10:06" +ik[6501] = 1.56 +il[6501] = 81 +im[6501] = 0.0153 +ij[6501] = 27.6 +id[6502] = "2410-04-19T15:45:38" +ik[6502] = 3.474 +il[6502] = -151 +im[6502] = 0.1331 +ij[6502] = 28.5 +id[6503] = "2410-04-19T20:18:45" +ik[6503] = 1.462 +il[6503] = -150 +im[6503] = 0.1276 +ij[6503] = 27.2 +id[6504] = "2410-04-27T15:54:25" +ik[6504] = 90 +il[6504] = -126 +im[6504] = 0.1809 +ij[6504] = 6 +id[6505] = "2410-05-24T23:32:12" +ik[6505] = 2.994 +il[6505] = -63 +im[6505] = 0.1778 +ij[6505] = 28.7 +id[6506] = "2410-06-13T07:03:33" +ik[6506] = 0 +il[6506] = -22 +im[6506] = 0.3893 +ij[6506] = 13 +id[6507] = "2410-06-26T07:33:14" +ik[6507] = 0.5093 +il[6507] = 2 +im[6507] = 0.5093 +ij[6507] = 2 +id[6508] = "2410-07-04T02:31:03" +ik[6508] = 3.62 +il[6508] = 12 +im[6508] = 0.121 +ij[6508] = 28.7 +id[6509] = "2410-07-05T11:54:14" +ik[6509] = 3.38 +il[6509] = 14 +im[6509] = 0.2734 +ij[6509] = 11 +id[6510] = "2410-07-27T08:08:08" +ik[6510] = 44.04 +il[6510] = 43 +im[6510] = 0.207 +ij[6510] = 7.1665 +id[6511] = "2410-08-17T06:43:37" +ik[6511] = 5.317 +il[6511] = 81 +im[6511] = 0.281 +ij[6511] = 28.7 +id[6512] = "2410-08-30T09:59:53" +ik[6512] = 78.12 +il[6512] = 110 +im[6512] = 0.1622 +ij[6512] = 14 +id[6513] = "2410-09-13T20:18:00" +ik[6513] = 90 +il[6513] = 148 +im[6513] = 0.1591 +ij[6513] = 5 +id[6514] = "2410-11-26T13:27:59" +ik[6514] = 53.973 +il[6514] = 14 +im[6514] = 0.0576 +ij[6514] = 8 +id[6515] = "2410-11-26T17:23:34" +ik[6515] = 0.687 +il[6515] = 14 +im[6515] = 0.0613 +ij[6515] = 28.6 +id[6516] = "2411-01-04T08:53:25" +ik[6516] = 4.378 +il[6516] = 135 +im[6516] = 0.0705 +ij[6516] = 27.1 +id[6517] = "2411-01-26T04:23:22" +ik[6517] = 2.696 +il[6517] = -167 +im[6517] = 0.0605 +ij[6517] = 28.1 +id[6518] = "2411-02-15T21:29:39" +ik[6518] = 0.799 +il[6518] = -93 +im[6518] = 0.0877 +ij[6518] = 28.8 +id[6519] = "2411-02-19T06:23:12" +ik[6519] = 0.611 +il[6519] = -82 +im[6519] = 0.0527 +ij[6519] = 27.3 +id[6520] = "2411-03-04T08:00:48" +ik[6520] = 4.099 +il[6520] = -42 +im[6520] = 0.0837 +ij[6520] = 28.1 +id[6521] = "2411-03-08T21:16:05" +ik[6521] = 0.799 +il[6521] = -28 +im[6521] = 0.0205 +ij[6521] = 27.5 +id[6522] = "2411-04-28T12:25:55" +ik[6522] = 0.96 +il[6522] = 105 +im[6522] = 0.073 +ij[6522] = 12 +id[6523] = "2411-06-03T03:06:11" +ik[6523] = 0.408 +il[6523] = 30 +im[6523] = 0.0762 +ij[6523] = 28.4 +id[6524] = "2411-06-15T03:28:39" +ik[6524] = 0.155 +il[6524] = 68 +im[6524] = 0.0896 +ij[6524] = 27.9 +id[6525] = "2411-06-21T12:58:19" +ik[6525] = 0.806 +il[6525] = 88 +im[6525] = 0.0293 +ij[6525] = 28.5 +id[6526] = "2411-06-24T16:21:12" +ik[6526] = 0.652 +il[6526] = 98 +im[6526] = 0.025 +ij[6526] = 28.7 +id[6527] = "2411-09-13T07:14:40" +ik[6527] = 54.239 +il[6527] = -15 +im[6527] = 0.1234 +ij[6527] = 9 +id[6528] = "2411-09-30T13:15:10" +ik[6528] = 3.198 +il[6528] = 37 +im[6528] = 0.1155 +ij[6528] = 28.6 +id[6529] = "2411-10-16T07:04:58" +ik[6529] = 2.263 +il[6529] = 85 +im[6529] = 0.1313 +ij[6529] = 27.4 +id[6530] = "2411-12-01T20:15:21" +ik[6530] = 90 +il[6530] = -132 +im[6530] = 0.1353 +ij[6530] = 6 +id[6531] = "2411-12-19T08:02:18" +ik[6531] = 0.67 +il[6531] = -86 +im[6531] = 0.011 +ij[6531] = 27.3 +id[6532] = "2411-12-19T12:14:24" +ik[6532] = 2.095 +il[6532] = -86 +im[6532] = 0.0177 +ij[6532] = 28.8 +id[6533] = "2412-01-20T10:00:20" +ik[6533] = 0 +il[6533] = -11 +im[6533] = 0.3426 +ij[6533] = 13 +id[6534] = "2412-02-11T05:19:40" +ik[6534] = 7.94 +il[6534] = 46 +im[6534] = 0.2318 +ij[6534] = 11 +id[6535] = "2412-02-19T00:10:15" +ik[6535] = 0.5341 +il[6535] = 32 +im[6535] = 0.5342 +ij[6535] = 2 +id[6536] = "2412-03-03T10:03:55" +ik[6536] = 43 +il[6536] = 49 +im[6536] = 0.4337 +ij[6536] = 7.1575 +id[6537] = "2412-04-04T07:03:40" +ik[6537] = 74.88 +il[6537] = 112 +im[6537] = 0.2116 +ij[6537] = 14 +id[6538] = "2412-04-11T14:54:45" +ik[6538] = 2.138 +il[6538] = 129 +im[6538] = 0.1648 +ij[6538] = 27.5 +id[6539] = "2412-04-22T18:46:54" +ik[6539] = 90 +il[6539] = 159 +im[6539] = 0.0399 +ij[6539] = 5 +id[6540] = "2412-06-01T15:01:00" +ik[6540] = 4.21 +il[6540] = -78 +im[6540] = 0.121 +ij[6540] = 27.6 +id[6541] = "2412-07-06T05:28:01" +ik[6541] = 54.469 +il[6541] = 28 +im[6541] = 0.0047 +ij[6541] = 8 +id[6542] = "2412-07-11T14:29:08" +ik[6542] = 6.236 +il[6542] = 44 +im[6542] = 0.102 +ij[6542] = 27.2 +id[6543] = "2412-08-10T06:20:00" +ik[6543] = 0.705 +il[6543] = 134 +im[6543] = 0.0822 +ij[6543] = 28.7 +id[6544] = "2412-08-29T11:11:11" +ik[6544] = 0.218 +il[6544] = -167 +im[6544] = 0.0912 +ij[6544] = 28.5 +id[6545] = "2412-09-11T12:00:08" +ik[6545] = 2.181 +il[6545] = -127 +im[6545] = 0.0893 +ij[6545] = 28.1 +id[6546] = "2412-11-24T18:00:00" +ik[6546] = 0.43 +il[6546] = 82 +im[6546] = 0.0824 +ij[6546] = 12 +id[6547] = "2413-01-19T14:40:05" +ik[6547] = 0.081 +il[6547] = 67 +im[6547] = 0.0181 +ij[6547] = 27.3 +id[6548] = "2413-01-20T14:13:12" +ik[6548] = 1.432 +il[6548] = 70 +im[6548] = 0.0341 +ij[6548] = 28.8 +id[6549] = "2413-02-06T05:53:51" +ik[6549] = 1.085 +il[6549] = 121 +im[6549] = 0.0651 +ij[6549] = 27.5 +id[6550] = "2413-03-22T06:11:55" +ik[6550] = 2.4 +il[6550] = -101 +im[6550] = 0.0357 +ij[6550] = 27.6 +id[6551] = "2413-04-26T05:06:42" +ik[6551] = 54.415 +il[6551] = 8 +im[6551] = 0.1126 +ij[6551] = 9 +id[6552] = "2413-04-29T00:28:58" +ik[6552] = 3.082 +il[6552] = 17 +im[6552] = 0.0998 +ij[6552] = 27.2 +id[6553] = "2413-06-05T04:04:39" +ik[6553] = 1.803 +il[6553] = 132 +im[6553] = 0.0745 +ij[6553] = 28.7 +id[6554] = "2413-07-04T18:42:28" +ik[6554] = 90 +il[6554] = -138 +im[6554] = 0.0874 +ij[6554] = 6 +id[6555] = "2413-07-06T12:44:47" +ik[6555] = 1.548 +il[6555] = -134 +im[6555] = 0.1496 +ij[6555] = 28.4 +id[6556] = "2413-08-08T06:30:57" +ik[6556] = 4.215 +il[6556] = -57 +im[6556] = 0.3264 +ij[6556] = 28.5 +id[6557] = "2413-08-22T07:04:07" +ik[6557] = 0 +il[6557] = -31 +im[6557] = 0.419 +ij[6557] = 13 +id[6558] = "2413-08-24T21:19:43" +ik[6558] = 2.692 +il[6558] = -29 +im[6558] = 0.3458 +ij[6558] = 27.7 +id[6559] = "2413-09-13T21:17:16" +ik[6559] = 8.69 +il[6559] = 23 +im[6559] = 0.3439 +ij[6559] = 11 +id[6560] = "2413-09-17T08:20:37" +ik[6560] = 0.5138 +il[6560] = 17 +im[6560] = 0.5138 +ij[6560] = 2 +id[6561] = "2413-10-05T07:07:42" +ik[6561] = 44 +il[6561] = 38 +im[6561] = 0.2613 +ij[6561] = 7.1619 +id[6562] = "2413-10-24T07:22:39" +ik[6562] = 3.428 +il[6562] = 72 +im[6562] = 0.1804 +ij[6562] = 28.5 +id[6563] = "2413-11-06T23:44:25" +ik[6563] = 76.69 +il[6563] = 103 +im[6563] = 0.103 +ij[6563] = 14 +id[6564] = "2413-11-23T14:32:09" +ik[6564] = 90 +il[6564] = 144 +im[6564] = 0.1528 +ij[6564] = 5 +id[6565] = "2414-01-11T05:40:16" +ik[6565] = 0.38 +il[6565] = -65 +im[6565] = 0.1479 +ij[6565] = 28.6 +id[6566] = "2414-01-16T22:40:58" +ik[6566] = 3.444 +il[6566] = -48 +im[6566] = 0.0557 +ij[6566] = 27.1 +id[6567] = "2414-02-09T03:12:56" +ik[6567] = 53.718 +il[6567] = 25 +im[6567] = 0.1246 +ij[6567] = 8 +id[6568] = "2414-03-05T06:32:05" +ik[6568] = 1.133 +il[6568] = 100 +im[6568] = 0.0251 +ij[6568] = 27.3 +id[6569] = "2414-03-06T20:11:54" +ik[6569] = 0.321 +il[6569] = 105 +im[6569] = 0.0554 +ij[6569] = 28.8 +id[6570] = "2414-03-23T03:10:45" +ik[6570] = 0.535 +il[6570] = 156 +im[6570] = 0.0632 +ij[6570] = 27.5 +id[6571] = "2414-03-30T01:52:01" +ik[6571] = 1.097 +il[6571] = 177 +im[6571] = 0.0753 +ij[6571] = 28.1 +id[6572] = "2414-05-02T08:43:26" +ik[6572] = 2.185 +il[6572] = -81 +im[6572] = 0.0266 +ij[6572] = 28.1 +id[6573] = "2414-05-06T06:23:53" +ik[6573] = 3.53 +il[6573] = -69 +im[6573] = 0.0406 +ij[6573] = 27.6 +id[6574] = "2414-07-05T15:47:31" +ik[6574] = 0.56 +il[6574] = 93 +im[6574] = 0.0364 +ij[6574] = 12 +id[6575] = "2414-10-01T17:21:24" +ik[6575] = 0.823 +il[6575] = -178 +im[6575] = 0.006 +ij[6575] = 28.5 +id[6576] = "2414-10-28T06:11:11" +ik[6576] = 3.384 +il[6576] = -98 +im[6576] = 0.0672 +ij[6576] = 27.4 +id[6577] = "2414-11-16T08:42:34" +ik[6577] = 2.681 +il[6577] = -40 +im[6577] = 0.0089 +ij[6577] = 28.6 +id[6578] = "2414-11-26T01:01:24" +ik[6578] = 53.632 +il[6578] = -10 +im[6578] = 0.0949 +ij[6578] = 9 +id[6579] = "2414-12-23T09:59:38" +ik[6579] = 0.779 +il[6579] = 74 +im[6579] = 0.1324 +ij[6579] = 27.3 +id[6580] = "2414-12-29T00:43:23" +ik[6580] = 1.859 +il[6580] = 92 +im[6580] = 0.0384 +ij[6580] = 28.8 +id[6581] = "2415-01-11T10:56:05" +ik[6581] = 1.004 +il[6581] = 134 +im[6581] = 0.1155 +ij[6581] = 27.5 +id[6582] = "2415-02-14T08:34:49" +ik[6582] = 90 +il[6582] = -120 +im[6582] = 0.0266 +ij[6582] = 6 +id[6583] = "2415-03-05T14:07:47" +ik[6583] = 1.6 +il[6583] = -73 +im[6583] = 0.2517 +ij[6583] = 27.6 +id[6584] = "2415-04-01T23:44:52" +ik[6584] = 0 +il[6584] = -11 +im[6584] = 0.3289 +ij[6584] = 13 +id[6585] = "2415-04-24T23:24:00" +ik[6585] = 6.21 +il[6585] = 50 +im[6585] = 0.0711 +ij[6585] = 11 +id[6586] = "2415-05-01T08:15:36" +ik[6586] = 0.5218 +il[6586] = 34 +im[6586] = 0.5219 +ij[6586] = 2 +id[6587] = "2415-05-04T17:09:40" +ik[6587] = 2.31 +il[6587] = 37 +im[6587] = 0.3696 +ij[6587] = 27.6 +id[6588] = "2415-05-15T22:47:26" +ik[6588] = 43.96 +il[6588] = 51 +im[6588] = 0.3753 +ij[6588] = 7.1634 +id[6589] = "2415-05-27T14:48:26" +ik[6589] = 2.94 +il[6589] = 71 +im[6589] = 0.356 +ij[6589] = 27.6 +id[6590] = "2415-06-18T07:54:14" +ik[6590] = 77.34 +il[6590] = 117 +im[6590] = 0.0293 +ij[6590] = 14 +id[6591] = "2415-07-04T03:39:23" +ik[6591] = 90 +il[6591] = 159 +im[6591] = 0.0284 +ij[6591] = 5 +id[6592] = "2415-09-03T13:49:35" +ik[6592] = 1.127 +il[6592] = -14 +im[6592] = 0.0708 +ij[6592] = 28.7 +id[6593] = "2415-09-14T03:02:19" +ik[6593] = 54.431 +il[6593] = 18 +im[6593] = 0.0567 +ij[6593] = 8 +id[6594] = "2415-11-19T15:25:55" +ik[6594] = 0.298 +il[6594] = -136 +im[6594] = 0.0713 +ij[6594] = 28.4 +id[6595] = "2415-12-11T10:06:05" +ik[6595] = 0.051 +il[6595] = -68 +im[6595] = 0.0744 +ij[6595] = 28.5 +id[6596] = "2416-02-10T02:13:55" +ik[6596] = 1.25 +il[6596] = 98 +im[6596] = 0.0605 +ij[6596] = 12 +id[6597] = "2416-04-05T11:43:20" +ik[6597] = 2.87 +il[6597] = 81 +im[6597] = 0.0829 +ij[6597] = 27.6 +id[6598] = "2416-05-12T10:26:44" +ik[6598] = 3.896 +il[6598] = -163 +im[6598] = 0.0344 +ij[6598] = 27.2 +id[6599] = "2416-05-13T08:42:34" +ik[6599] = 3.197 +il[6599] = -160 +im[6599] = 0.0182 +ij[6599] = 28.1 +id[6600] = "2416-06-26T19:00:43" +ik[6600] = 1.157 +il[6600] = -22 +im[6600] = 0.0362 +ij[6600] = 28.7 +id[6601] = "2416-07-03T04:06:20" +ik[6601] = 54.665 +il[6601] = -2 +im[6601] = 0.1062 +ij[6601] = 9 +id[6602] = "2416-09-14T01:53:15" +ik[6602] = 90 +il[6602] = -141 +im[6602] = 0.106 +ij[6602] = 6 +id[6603] = "2416-10-17T18:09:24" +ik[6603] = 1.371 +il[6603] = -59 +im[6603] = 0.3211 +ij[6603] = 27.4 +id[6604] = "2416-11-04T07:54:40" +ik[6604] = 0 +il[6604] = -23 +im[6604] = 0.3252 +ij[6604] = 13 +id[6605] = "2416-11-23T04:15:11" +ik[6605] = 0.938 +il[6605] = 16 +im[6605] = 0.3279 +ij[6605] = 27.4 +id[6606] = "2416-11-25T22:16:19" +ik[6606] = 2.6 +il[6606] = 22 +im[6606] = 0.5442 +ij[6606] = 11 +id[6607] = "2416-11-27T10:16:40" +ik[6607] = 0.5774 +il[6607] = 20 +im[6607] = 0.5775 +ij[6607] = 2 +id[6608] = "2416-12-16T06:57:15" +ik[6608] = 41.96 +il[6608] = 41 +im[6608] = 0.0878 +ij[6608] = 7.1547 +id[6609] = "2417-01-16T20:33:57" +ik[6609] = 73.53 +il[6609] = 103 +im[6609] = 0.1506 +ij[6609] = 14 +id[6610] = "2417-01-21T16:33:51" +ik[6610] = 1.345 +il[6610] = 115 +im[6610] = 0.2729 +ij[6610] = 27.1 +id[6611] = "2417-02-04T22:24:30" +ik[6611] = 90 +il[6611] = 150 +im[6611] = 0.2061 +ij[6611] = 5 +id[6612] = "2417-02-11T20:32:55" +ik[6612] = 2.724 +il[6612] = 172 +im[6612] = 0.0484 +ij[6612] = 28.5 +id[6613] = "2417-02-25T16:41:39" +ik[6613] = 1.933 +il[6613] = -145 +im[6613] = 0.1028 +ij[6613] = 28.6 +id[6614] = "2417-03-17T07:50:44" +ik[6614] = 2.144 +il[6614] = -84 +im[6614] = 0.0697 +ij[6614] = 27.3 +id[6615] = "2417-03-24T05:58:24" +ik[6615] = 0.415 +il[6615] = -62 +im[6615] = 0.1382 +ij[6615] = 28.8 +id[6616] = "2417-04-05T00:44:04" +ik[6616] = 0.007 +il[6616] = -25 +im[6616] = 0.1284 +ij[6616] = 27.5 +id[6617] = "2417-04-24T12:52:34" +ik[6617] = 54.052 +il[6617] = 35 +im[6617] = 0.0954 +ij[6617] = 8 +id[6618] = "2417-05-20T07:12:21" +ik[6618] = 3.85 +il[6618] = 114 +im[6618] = 0.0971 +ij[6618] = 27.6 +id[6619] = "2417-06-13T00:48:31" +ik[6619] = 2.664 +il[6619] = -179 +im[6619] = 0.016 +ij[6619] = 28.1 +id[6620] = "2417-06-21T15:10:22" +ik[6620] = 2.505 +il[6620] = -147 +im[6620] = 0.088 +ij[6620] = 28.1 +id[6621] = "2417-06-27T10:14:01" +ik[6621] = 5.503 +il[6621] = -130 +im[6621] = 0.0114 +ij[6621] = 27.2 +id[6622] = "2417-09-11T09:51:50" +ik[6622] = 1.41 +il[6622] = 82 +im[6622] = 0.0046 +ij[6622] = 12 +id[6623] = "2417-11-11T03:55:11" +ik[6623] = 4.06 +il[6623] = 85 +im[6623] = 0.0166 +ij[6623] = 27.4 +id[6624] = "2417-12-08T02:32:12" +ik[6624] = 0.371 +il[6624] = 167 +im[6624] = 0.0474 +ij[6624] = 28.4 +id[6625] = "2418-01-02T20:15:21" +ik[6625] = 1.063 +il[6625] = -114 +im[6625] = 0.1005 +ij[6625] = 28.6 +id[6626] = "2418-01-05T00:14:44" +ik[6626] = 0.41 +il[6626] = -108 +im[6626] = 0.0867 +ij[6626] = 27.3 +id[6627] = "2418-01-08T00:38:35" +ik[6627] = 0.797 +il[6627] = -98 +im[6627] = 0.0393 +ij[6627] = 28.5 +id[6628] = "2418-01-15T07:36:02" +ik[6628] = 1.377 +il[6628] = -76 +im[6628] = 0.095 +ij[6628] = 28.8 +id[6629] = "2418-01-22T22:50:18" +ik[6629] = 1.149 +il[6629] = -52 +im[6629] = 0.0543 +ij[6629] = 27.5 +id[6630] = "2418-02-10T10:30:22" +ik[6630] = 53.744 +il[6630] = 6 +im[6630] = 0.0268 +ij[6630] = 9 +id[6631] = "2418-03-09T06:24:17" +ik[6631] = 1.51 +il[6631] = 90 +im[6631] = 0.0656 +ij[6631] = 27.6 +id[6632] = "2418-04-19T19:15:37" +ik[6632] = 1.374 +il[6632] = -141 +im[6632] = 0.1656 +ij[6632] = 27.2 +id[6633] = "2418-04-25T09:27:00" +ik[6633] = 90 +il[6633] = -123 +im[6633] = 0.043 +ij[6633] = 6 +id[6634] = "2418-06-10T20:34:24" +ik[6634] = 0 +il[6634] = -10 +im[6634] = 0.2796 +ij[6634] = 13 +id[6635] = "2418-06-27T12:09:19" +ik[6635] = 0.5246 +il[6635] = 23 +im[6635] = 0.5247 +ij[6635] = 2 +id[6636] = "2418-07-03T04:50:52" +ik[6636] = 3.08 +il[6636] = 37 +im[6636] = 0.1419 +ij[6636] = 11 +id[6637] = "2418-07-25T03:45:00" +ik[6637] = 44.3 +il[6637] = 46 +im[6637] = 0.419 +ij[6637] = 7.1664 +id[6638] = "2418-08-28T02:34:45" +ik[6638] = 78.25 +il[6638] = 113 +im[6638] = 0.0436 +ij[6638] = 14 +id[6639] = "2418-09-11T12:40:43" +ik[6639] = 90 +il[6639] = 151 +im[6639] = 0.0133 +ij[6639] = 5 +id[6640] = "2418-09-23T19:17:02" +ik[6640] = 2.07 +il[6640] = -172 +im[6640] = 0.1259 +ij[6640] = 28.7 +id[6641] = "2418-11-24T03:13:03" +ik[6641] = 53.99 +il[6641] = 16 +im[6641] = 0.043 +ij[6641] = 8 +id[6642] = "2419-01-03T22:48:57" +ik[6642] = 4.404 +il[6642] = 144 +im[6642] = 0.0982 +ij[6642] = 27.1 +id[6643] = "2419-02-18T19:45:24" +ik[6643] = 0.6 +il[6643] = -74 +im[6643] = 0.0756 +ij[6643] = 27.3 +id[6644] = "2419-02-25T02:56:06" +ik[6644] = 0.178 +il[6644] = -54 +im[6644] = 0.0277 +ij[6644] = 28.6 +id[6645] = "2419-03-01T14:41:42" +ik[6645] = 0.726 +il[6645] = -40 +im[6645] = 0.0863 +ij[6645] = 28.8 +id[6646] = "2419-03-08T10:28:31" +ik[6646] = 0.804 +il[6646] = -19 +im[6646] = 0.0556 +ij[6646] = 27.5 +id[6647] = "2419-03-14T23:12:20" +ik[6647] = 0.007 +il[6647] = 1 +im[6647] = 0.06 +ij[6647] = 28.5 +id[6648] = "2419-04-26T03:41:45" +ik[6648] = 1 +il[6648] = 107 +im[6648] = 0.0165 +ij[6648] = 12 +id[6649] = "2419-05-28T11:07:47" +ik[6649] = 4.44 +il[6649] = 25 +im[6649] = 0.0442 +ij[6649] = 27.2 +id[6650] = "2419-06-14T13:16:19" +ik[6650] = 0.049 +il[6650] = 76 +im[6650] = 0.082 +ij[6650] = 27.9 +id[6651] = "2419-06-28T14:44:09" +ik[6651] = 1.78 +il[6651] = 120 +im[6651] = 0.0598 +ij[6651] = 28.1 +id[6652] = "2419-07-21T09:15:41" +ik[6652] = 0.788 +il[6652] = -170 +im[6652] = 0.069 +ij[6652] = 28.7 +id[6653] = "2419-07-26T12:42:54" +ik[6653] = 3.565 +il[6653] = -154 +im[6653] = 0.0285 +ij[6653] = 28.1 +id[6654] = "2419-09-10T22:35:44" +ik[6654] = 54.261 +il[6654] = -12 +im[6654] = 0.0744 +ij[6654] = 9 +id[6655] = "2419-10-16T00:15:10" +ik[6655] = 2.212 +il[6655] = 94 +im[6655] = 0.1447 +ij[6655] = 27.4 +id[6656] = "2419-11-29T07:27:36" +ik[6656] = 90 +il[6656] = -129 +im[6656] = 0.2282 +ij[6656] = 6 +id[6657] = "2419-12-19T23:39:11" +ik[6657] = 0.561 +il[6657] = -76 +im[6657] = 0.0435 +ij[6657] = 27.3 +id[6658] = "2419-12-29T01:52:27" +ik[6658] = 1.743 +il[6658] = -56 +im[6658] = 0.3373 +ij[6658] = 28.4 +id[6659] = "2420-01-15T00:47:31" +ik[6659] = 4.019 +il[6659] = -22 +im[6659] = 0.2769 +ij[6659] = 28.8 +id[6660] = "2420-01-18T02:35:12" +ik[6660] = 0 +il[6660] = -19 +im[6660] = 0.0101 +ij[6660] = 13 +id[6661] = "2420-02-07T16:26:05" +ik[6661] = 0.5263 +il[6661] = 25 +im[6661] = 0.5264 +ij[6661] = 2 +id[6662] = "2420-02-08T17:57:07" +ik[6662] = 7.76 +il[6662] = 26 +im[6662] = 0.5067 +ij[6662] = 11 +id[6663] = "2420-03-01T03:39:47" +ik[6663] = 43.04 +il[6663] = 51 +im[6663] = 0.2361 +ij[6663] = 7.1572 +id[6664] = "2420-04-01T18:53:33" +ik[6664] = 74.68 +il[6664] = 114 +im[6664] = 0.2501 +ij[6664] = 14 +id[6665] = "2420-04-03T07:55:23" +ik[6665] = 2.808 +il[6665] = 109 +im[6665] = 0.2492 +ij[6665] = 28.8 +id[6666] = "2420-04-08T17:29:54" +ik[6666] = 3.234 +il[6666] = 130 +im[6666] = 0.047 +ij[6666] = 28.6 +id[6667] = "2420-04-11T20:00:04" +ik[6667] = 1.965 +il[6667] = 137 +im[6667] = 0.1108 +ij[6667] = 27.5 +id[6668] = "2420-04-20T08:10:03" +ik[6668] = 90 +il[6668] = 161 +im[6668] = 0.1864 +ij[6668] = 5 +id[6669] = "2420-05-15T02:18:05" +ik[6669] = 0.039 +il[6669] = -133 +im[6669] = 0.1616 +ij[6669] = 28.5 +id[6670] = "2420-06-01T08:14:09" +ik[6670] = 4.2 +il[6670] = -69 +im[6670] = 0.136 +ij[6670] = 27.6 +id[6671] = "2420-07-03T22:25:06" +ik[6671] = 54.461 +il[6671] = 31 +im[6671] = 0.0873 +ij[6671] = 8 +id[6672] = "2420-07-11T05:00:14" +ik[6672] = 6.207 +il[6672] = 53 +im[6672] = 0.0647 +ij[6672] = 27.2 +id[6673] = "2420-09-05T21:07:29" +ik[6673] = 0.117 +il[6673] = -134 +im[6673] = 0.019 +ij[6673] = 28.7 +id[6674] = "2420-11-22T06:40:19" +ik[6674] = 0.49 +il[6674] = 85 +im[6674] = 0.0284 +ij[6674] = 12 +id[6675] = "2421-01-19T03:56:04" +ik[6675] = 0.088 +il[6675] = 76 +im[6675] = 0.0249 +ij[6675] = 27.3 +id[6676] = "2421-02-03T06:26:47" +ik[6676] = 1.013 +il[6676] = 122 +im[6676] = 0.02 +ij[6676] = 28.8 +id[6677] = "2421-02-05T19:16:57" +ik[6677] = 1.087 +il[6677] = 130 +im[6677] = 0.0351 +ij[6677] = 27.5 +id[6678] = "2421-02-15T06:16:42" +ik[6678] = 5.091 +il[6678] = 159 +im[6678] = 0.0768 +ij[6678] = 28.1 +id[6679] = "2421-02-18T08:56:32" +ik[6679] = 0.652 +il[6679] = 169 +im[6679] = 0.0309 +ij[6679] = 28.6 +id[6680] = "2421-03-21T20:06:05" +ik[6680] = 2.38 +il[6680] = -93 +im[6680] = 0.0097 +ij[6680] = 27.6 +id[6681] = "2421-04-05T18:23:45" +ik[6681] = 1.392 +il[6681] = -46 +im[6681] = 0.0121 +ij[6681] = 28.5 +id[6682] = "2421-04-23T21:35:20" +ik[6682] = 54.395 +il[6682] = 11 +im[6682] = 0.0676 +ij[6682] = 9 +id[6683] = "2421-04-28T15:32:57" +ik[6683] = 3.048 +il[6683] = 26 +im[6683] = 0.1175 +ij[6683] = 27.2 +id[6684] = "2421-07-02T11:37:02" +ik[6684] = 90 +il[6684] = -135 +im[6684] = 0.0842 +ij[6684] = 6 +id[6685] = "2421-07-06T14:27:01" +ik[6685] = 0.301 +il[6685] = -123 +im[6685] = 0.0918 +ij[6685] = 28.7 +id[6686] = "2421-08-19T18:54:00" +ik[6686] = 0 +il[6686] = -15 +im[6686] = 0.3208 +ij[6686] = 13 +id[6687] = "2421-09-11T11:42:43" +ik[6687] = 8.68 +il[6687] = 45 +im[6687] = 0.0734 +ij[6687] = 11 +id[6688] = "2421-09-18T08:38:58" +ik[6688] = 0.5153 +il[6688] = 23 +im[6688] = 0.5154 +ij[6688] = 2 +id[6689] = "2421-10-02T20:40:39" +ik[6689] = 44.07 +il[6689] = 41 +im[6689] = 0.4254 +ij[6689] = 7.1621 +id[6690] = "2421-11-04T16:31:23" +ik[6690] = 76.9 +il[6690] = 105 +im[6690] = 0.1028 +ij[6690] = 14 +id[6691] = "2421-11-21T04:59:00" +ik[6691] = 90 +il[6691] = 147 +im[6691] = 0.0284 +ij[6691] = 5 +id[6692] = "2422-01-16T14:43:37" +ik[6692] = 3.486 +il[6692] = -39 +im[6692] = 0.1032 +ij[6692] = 27.1 +id[6693] = "2422-02-06T14:42:54" +ik[6693] = 53.716 +il[6693] = 27 +im[6693] = 0.0677 +ij[6693] = 8 +id[6694] = "2422-03-04T20:37:24" +ik[6694] = 1.112 +il[6694] = 109 +im[6694] = 0.0249 +ij[6694] = 27.3 +id[6695] = "2422-03-17T12:43:37" +ik[6695] = 2.032 +il[6695] = 148 +im[6695] = 0.0796 +ij[6695] = 28.1 +id[6696] = "2422-03-20T18:46:22" +ik[6696] = 0.399 +il[6696] = 158 +im[6696] = 0.0189 +ij[6696] = 28.8 +id[6697] = "2422-03-22T16:55:10" +ik[6697] = 0.546 +il[6697] = 164 +im[6697] = 0.0289 +ij[6697] = 27.5 +id[6698] = "2422-03-24T20:44:52" +ik[6698] = 0.855 +il[6698] = 171 +im[6698] = 0.0691 +ij[6698] = 28.4 +id[6699] = "2422-04-12T11:09:10" +ik[6699] = 0.858 +il[6699] = -132 +im[6699] = 0.0931 +ij[6699] = 28.6 +id[6700] = "2422-05-05T19:40:58" +ik[6700] = 3.52 +il[6700] = -61 +im[6700] = 0.0061 +ij[6700] = 27.6 +id[6701] = "2422-07-03T10:30:43" +ik[6701] = 0.51 +il[6701] = 96 +im[6701] = 0.0308 +ij[6701] = 12 +id[6702] = "2422-08-14T07:53:45" +ik[6702] = 0.603 +il[6702] = 44 +im[6702] = 0.0682 +ij[6702] = 28.7 +id[6703] = "2422-08-22T18:35:08" +ik[6703] = 0.9 +il[6703] = 70 +im[6703] = 0.0629 +ij[6703] = 28.1 +id[6704] = "2422-10-01T09:51:33" +ik[6704] = 4.59 +il[6704] = -169 +im[6704] = 0.0306 +ij[6704] = 28.1 +id[6705] = "2422-10-27T20:24:57" +ik[6705] = 3.359 +il[6705] = -89 +im[6705] = 0.0923 +ij[6705] = 27.4 +id[6706] = "2422-11-23T12:06:29" +ik[6706] = 53.645 +il[6706] = -8 +im[6706] = 0.1086 +ij[6706] = 9 +id[6707] = "2422-12-23T02:15:37" +ik[6707] = 0.788 +il[6707] = 83 +im[6707] = 0.1265 +ij[6707] = 27.3 +id[6708] = "2423-01-11T05:05:24" +ik[6708] = 0.984 +il[6708] = 143 +im[6708] = 0.1513 +ij[6708] = 27.5 +id[6709] = "2423-01-12T18:45:04" +ik[6709] = 0.736 +il[6709] = 148 +im[6709] = 0.1223 +ij[6709] = 28.8 +id[6710] = "2423-02-11T22:33:21" +ik[6710] = 90 +il[6710] = -118 +im[6710] = 0.1402 +ij[6710] = 6 +id[6711] = "2423-02-20T04:14:52" +ik[6711] = 4.479 +il[6711] = -96 +im[6711] = 0.2203 +ij[6711] = 28.6 +id[6712] = "2423-03-06T06:17:52" +ik[6712] = 1.9 +il[6712] = -64 +im[6712] = 0.2259 +ij[6712] = 27.6 +id[6713] = "2423-03-30T16:31:50" +ik[6713] = 0 +il[6713] = -10 +im[6713] = 0.0663 +ij[6713] = 13 +id[6714] = "2423-04-18T21:20:24" +ik[6714] = 0.5219 +il[6714] = 30 +im[6714] = 0.5219 +ij[6714] = 2 +id[6715] = "2423-04-22T14:55:40" +ik[6715] = 6.46 +il[6715] = 39 +im[6715] = 0.3359 +ij[6715] = 11 +id[6716] = "2423-04-28T00:01:39" +ik[6716] = 3.55 +il[6716] = 36 +im[6716] = 0.2605 +ij[6716] = 27.6 +id[6717] = "2423-05-13T15:34:25" +ik[6717] = 43.96 +il[6717] = 54 +im[6717] = 0.3802 +ij[6717] = 7.1633 +id[6718] = "2423-05-30T17:35:25" +ik[6718] = 3.38 +il[6718] = 85 +im[6718] = 0.3217 +ij[6718] = 27.6 +id[6719] = "2423-06-15T22:13:09" +ik[6719] = 77.24 +il[6719] = 120 +im[6719] = 0.2017 +ij[6719] = 14 +id[6720] = "2423-07-01T19:55:02" +ik[6720] = 90 +il[6720] = 161 +im[6720] = 0.1377 +ij[6720] = 5 +id[6721] = "2423-08-16T23:08:44" +ik[6721] = 1.394 +il[6721] = -58 +im[6721] = 0.0615 +ij[6721] = 28.5 +id[6722] = "2423-09-11T19:34:30" +ik[6722] = 54.44 +il[6722] = 21 +im[6722] = 0.1195 +ij[6722] = 8 +id[6723] = "2423-09-30T08:45:36" +ik[6723] = 0.059 +il[6723] = 78 +im[6723] = 0.0425 +ij[6723] = 28.7 +id[6724] = "2424-02-07T11:58:33" +ik[6724] = 1.22 +il[6724] = 100 +im[6724] = 0.0822 +ij[6724] = 12 +id[6725] = "2424-03-30T12:05:11" +ik[6725] = 0.528 +il[6725] = 73 +im[6725] = 0.0301 +ij[6725] = 28.4 +id[6726] = "2424-04-04T04:59:39" +ik[6726] = 1.642 +il[6726] = 87 +im[6726] = 0.0572 +ij[6726] = 28.6 +id[6727] = "2424-04-05T00:51:24" +ik[6727] = 2.86 +il[6727] = 90 +im[6727] = 0.0685 +ij[6727] = 27.6 +id[6728] = "2424-04-07T04:11:16" +ik[6728] = 3.98 +il[6728] = 97 +im[6728] = 0.0862 +ij[6728] = 28.1 +id[6729] = "2424-04-23T09:30:48" +ik[6729] = 2.723 +il[6729] = 147 +im[6729] = 0.093 +ij[6729] = 28.1 +id[6730] = "2424-05-12T00:02:43" +ik[6730] = 3.876 +il[6730] = -154 +im[6730] = 0.0707 +ij[6730] = 27.2 +id[6731] = "2424-06-30T22:18:05" +ik[6731] = 54.667 +il[6731] = 1 +im[6731] = 0.0352 +ij[6731] = 9 +id[6732] = "2424-07-09T20:00:31" +ik[6732] = 0.675 +il[6732] = 28 +im[6732] = 0.1174 +ij[6732] = 28.5 +id[6733] = "2424-07-24T04:19:12" +ik[6733] = 0.416 +il[6733] = 72 +im[6733] = 0.1215 +ij[6733] = 28.7 +id[6734] = "2424-09-11T14:58:43" +ik[6734] = 90 +il[6734] = -138 +im[6734] = 0.0603 +ij[6734] = 6 +id[6735] = "2424-10-20T08:35:10" +ik[6735] = 1.686 +il[6735] = -45 +im[6735] = 0.3358 +ij[6735] = 27.4 +id[6736] = "2424-11-01T22:13:36" +ik[6736] = 0 +il[6736] = -23 +im[6736] = 0.4501 +ij[6736] = 13 +id[6737] = "2424-11-15T14:35:10" +ik[6737] = 0.467 +il[6737] = 2 +im[6737] = 0.5223 +ij[6737] = 27.4 +id[6738] = "2424-11-23T11:34:04" +ik[6738] = 2.98 +il[6738] = 22 +im[6738] = 0.2342 +ij[6738] = 11 +id[6739] = "2424-11-28T11:38:45" +ik[6739] = 0.5624 +il[6739] = 25 +im[6739] = 0.5625 +ij[6739] = 2 +id[6740] = "2424-12-13T21:18:11" +ik[6740] = 41.96 +il[6740] = 43 +im[6740] = 0.3734 +ij[6740] = 7.1549 +id[6741] = "2425-01-14T10:06:54" +ik[6741] = 73.5 +il[6741] = 106 +im[6741] = 0.0827 +ij[6741] = 14 +id[6742] = "2425-01-22T01:50:16" +ik[6742] = 1.464 +il[6742] = 124 +im[6742] = 0.2435 +ij[6742] = 27.1 +id[6743] = "2425-02-02T10:47:31" +ik[6743] = 90 +il[6743] = 152 +im[6743] = 0.1074 +ij[6743] = 5 +id[6744] = "2425-03-17T00:48:57" +ik[6744] = 2.093 +il[6744] = -75 +im[6744] = 0.0106 +ij[6744] = 27.3 +id[6745] = "2425-04-04T16:21:23" +ik[6745] = 0.036 +il[6745] = -16 +im[6745] = 0.1059 +ij[6745] = 27.5 +id[6746] = "2425-04-07T20:18:57" +ik[6746] = 0.014 +il[6746] = -7 +im[6746] = 0.1332 +ij[6746] = 28.8 +id[6747] = "2425-04-22T02:55:26" +ik[6747] = 54.036 +il[6747] = 38 +im[6747] = 0.1106 +ij[6747] = 8 +id[6748] = "2425-05-18T04:57:30" +ik[6748] = 6.342 +il[6748] = 118 +im[6748] = 0.0445 +ij[6748] = 28.1 +id[6749] = "2425-05-19T21:14:24" +ik[6749] = 3.84 +il[6749] = 123 +im[6749] = 0.0744 +ij[6749] = 27.6 +id[6750] = "2425-05-26T19:19:20" +ik[6750] = 0.821 +il[6750] = 144 +im[6750] = 0.0659 +ij[6750] = 28.6 +id[6751] = "2425-06-26T23:32:40" +ik[6751] = 5.483 +il[6751] = -121 +im[6751] = 0.0444 +ij[6751] = 27.2 +id[6752] = "2425-09-09T02:26:52" +ik[6752] = 1.41 +il[6752] = 84 +im[6752] = 0.0622 +ij[6752] = 12 +id[6753] = "2425-11-10T17:18:43" +ik[6753] = 4.043 +il[6753] = 94 +im[6753] = 0.0256 +ij[6753] = 27.4 +id[6754] = "2425-11-30T04:43:40" +ik[6754] = 1.423 +il[6754] = 153 +im[6754] = 0.0486 +ij[6754] = 28.1 +id[6755] = "2426-01-04T14:12:57" +ik[6755] = 0.419 +il[6755] = -99 +im[6755] = 0.1047 +ij[6755] = 27.3 +id[6756] = "2426-01-22T13:13:23" +ik[6756] = 1.146 +il[6756] = -43 +im[6756] = 0.0873 +ij[6756] = 27.5 +id[6757] = "2426-01-29T05:10:36" +ik[6757] = 0.604 +il[6757] = -22 +im[6757] = 0.0641 +ij[6757] = 28.8 +id[6758] = "2426-02-07T22:07:27" +ik[6758] = 53.726 +il[6758] = 8 +im[6758] = 0.0747 +ij[6758] = 9 +id[6759] = "2426-03-08T22:44:23" +ik[6759] = 1.47 +il[6759] = 99 +im[6759] = 0.1138 +ij[6759] = 27.6 +id[6760] = "2426-03-30T15:46:01" +ik[6760] = 4.201 +il[6760] = 167 +im[6760] = 0.1108 +ij[6760] = 28.6 +id[6761] = "2426-04-11T21:25:29" +ik[6761] = 1.797 +il[6761] = -155 +im[6761] = 0.0294 +ij[6761] = 28.4 +id[6762] = "2426-04-19T18:58:43" +ik[6762] = 1.281 +il[6762] = -131 +im[6762] = 0.1905 +ij[6762] = 27.2 +id[6763] = "2426-04-23T03:00:29" +ik[6763] = 90 +il[6763] = -120 +im[6763] = 0.1244 +ij[6763] = 6 +id[6764] = "2426-06-08T10:07:21" +ik[6764] = 0 +il[6764] = -7 +im[6764] = 0.0484 +ij[6764] = 13 +id[6765] = "2426-06-28T16:45:58" +ik[6765] = 0.5279 +il[6765] = 36 +im[6765] = 0.5279 +ij[6765] = 2 +id[6766] = "2426-06-30T21:54:43" +ik[6766] = 2.77 +il[6766] = 40 +im[6766] = 0.4592 +ij[6766] = 11 +id[6767] = "2426-07-22T19:16:57" +ik[6767] = 44.38 +il[6767] = 49 +im[6767] = 0.3808 +ij[6767] = 7.1664 +id[6768] = "2426-08-25T19:12:43" +ik[6768] = 78.38 +il[6768] = 116 +im[6768] = 0.2085 +ij[6768] = 14 +id[6769] = "2426-09-09T05:06:59" +ik[6769] = 90 +il[6769] = 154 +im[6769] = 0.144 +ij[6769] = 5 +id[6770] = "2426-10-22T03:44:42" +ik[6770] = 0.207 +il[6770] = -76 +im[6770] = 0.1408 +ij[6770] = 28.7 +id[6771] = "2426-11-21T17:01:41" +ik[6771] = 54.006 +il[6771] = 19 +im[6771] = 0.1092 +ij[6771] = 8 +id[6772] = "2426-11-28T01:38:29" +ik[6772] = 0.369 +il[6772] = 38 +im[6772] = 0.028 +ij[6772] = 28.5 +id[6773] = "2427-01-03T12:37:23" +ik[6773] = 4.428 +il[6773] = 152 +im[6773] = 0.1063 +ij[6773] = 27.1 +id[6774] = "2427-02-18T09:04:56" +ik[6774] = 0.588 +il[6774] = -65 +im[6774] = 0.0872 +ij[6774] = 27.3 +id[6775] = "2427-03-07T23:40:56" +ik[6775] = 0.809 +il[6775] = -11 +im[6775] = 0.0798 +ij[6775] = 27.5 +id[6776] = "2427-03-15T06:16:16" +ik[6776] = 0.504 +il[6776] = 1 +im[6776] = 0.043 +ij[6776] = 28.8 +id[6777] = "2427-03-19T06:42:20" +ik[6777] = 2.506 +il[6777] = 13 +im[6777] = 0.085 +ij[6777] = 28.1 +id[6778] = "2427-04-23T18:41:45" +ik[6778] = 1.04 +il[6778] = 110 +im[6778] = 0.0538 +ij[6778] = 12 +id[6779] = "2427-05-27T11:45:49" +ik[6779] = 4.458 +il[6779] = 40 +im[6779] = 0.0073 +ij[6779] = 27.2 +id[6780] = "2427-05-29T13:33:44" +ik[6780] = 3.419 +il[6780] = 36 +im[6780] = 0.0352 +ij[6780] = 28.1 +id[6781] = "2427-06-14T02:19:23" +ik[6781] = 0.032 +il[6781] = 84 +im[6781] = 0.058 +ij[6781] = 27.9 +id[6782] = "2427-08-16T09:26:47" +ik[6782] = 0.344 +il[6782] = -80 +im[6782] = 0.1016 +ij[6782] = 28.7 +id[6783] = "2427-09-08T14:03:56" +ik[6783] = 54.283 +il[6783] = -10 +im[6783] = 0.0229 +ij[6783] = 9 +id[6784] = "2427-10-15T17:35:09" +ik[6784] = 2.159 +il[6784] = 103 +im[6784] = 0.1359 +ij[6784] = 27.4 +id[6785] = "2427-10-24T16:39:47" +ik[6785] = 2.808 +il[6785] = 130 +im[6785] = 0.0312 +ij[6785] = 28.5 +id[6786] = "2427-11-26T18:42:30" +ik[6786] = 90 +il[6786] = -127 +im[6786] = 0.1725 +ij[6786] = 6 +id[6787] = "2427-12-20T19:58:43" +ik[6787] = 0.416 +il[6787] = -67 +im[6787] = 0.0793 +ij[6787] = 27.3 +id[6788] = "2428-01-15T19:13:10" +ik[6788] = 0 +il[6788] = -8 +im[6788] = 0.3226 +ij[6788] = 13 +id[6789] = "2428-01-26T12:25:01" +ik[6789] = 0.5424 +il[6789] = 9 +im[6789] = 0.5425 +ij[6789] = 2 +id[6790] = "2428-02-06T06:33:07" +ik[6790] = 7.56 +il[6790] = 37 +im[6790] = 0.4467 +ij[6790] = 11 +id[6791] = "2428-02-27T02:55:50" +ik[6791] = 42.32 +il[6791] = 53 +im[6791] = 0.1878 +ij[6791] = 7.157 +id[6792] = "2428-03-30T06:28:33" +ik[6792] = 74.47 +il[6792] = 116 +im[6792] = 0.1087 +ij[6792] = 14 +id[6793] = "2428-04-11T23:37:23" +ik[6793] = 1.81 +il[6793] = 146 +im[6793] = 0.0494 +ij[6793] = 27.5 +id[6794] = "2428-04-17T21:24:23" +ik[6794] = 90 +il[6794] = 163 +im[6794] = 0.2191 +ij[6794] = 5 +id[6795] = "2428-04-21T17:50:03" +ik[6795] = 1.021 +il[6795] = 175 +im[6795] = 0.185 +ij[6795] = 28.8 +id[6796] = "2428-06-01T01:11:21" +ik[6796] = 4.19 +il[6796] = -60 +im[6796] = 0.1325 +ij[6796] = 27.6 +id[6797] = "2428-07-01T15:18:37" +ik[6797] = 54.452 +il[6797] = 34 +im[6797] = 0.1166 +ij[6797] = 8 +id[6798] = "2428-07-08T06:40:53" +ik[6798] = 0.125 +il[6798] = 54 +im[6798] = 0.0396 +ij[6798] = 28.6 +id[6799] = "2428-07-10T19:30:53" +ik[6799] = 6.179 +il[6799] = 61 +im[6799] = 0.0171 +ij[6799] = 27.2 +id[6800] = "2428-08-10T15:46:04" +ik[6800] = 1.375 +il[6800] = 155 +im[6800] = 0.0261 +ij[6800] = 28.4 +id[6801] = "2428-10-01T08:00:23" +ik[6801] = 0.582 +il[6801] = -46 +im[6801] = 0.0926 +ij[6801] = 28.7 +id[6802] = "2428-11-19T19:26:24" +ik[6802] = 0.55 +il[6802] = 87 +im[6802] = 0.0429 +ij[6802] = 12 +id[6803] = "2428-12-28T15:52:42" +ik[6803] = 0.661 +il[6803] = 31 +im[6803] = 0.0787 +ij[6803] = 28.5 +id[6804] = "2429-01-08T14:41:08" +ik[6804] = 3.303 +il[6804] = 53 +im[6804] = 0.0392 +ij[6804] = 28.1 +id[6805] = "2429-01-18T17:12:03" +ik[6805] = 0.095 +il[6805] = 84 +im[6805] = 0.0603 +ij[6805] = 27.3 +id[6806] = "2429-01-28T17:25:43" +ik[6806] = 2.736 +il[6806] = 115 +im[6806] = 0.086 +ij[6806] = 28.1 +id[6807] = "2429-02-05T08:43:36" +ik[6807] = 1.088 +il[6807] = 139 +im[6807] = 0.0062 +ij[6807] = 27.5 +id[6808] = "2429-02-16T21:30:40" +ik[6808] = 0.411 +il[6808] = 174 +im[6808] = 0.0795 +ij[6808] = 28.8 +id[6809] = "2429-03-21T10:01:16" +ik[6809] = 2.36 +il[6809] = -84 +im[6809] = 0.0479 +ij[6809] = 27.6 +id[6810] = "2429-04-21T13:53:18" +ik[6810] = 54.375 +il[6810] = 14 +im[6810] = 0.0238 +ij[6810] = 9 +id[6811] = "2429-04-28T06:44:29" +ik[6811] = 3.014 +il[6811] = 35 +im[6811] = 0.1182 +ij[6811] = 27.2 +id[6812] = "2429-05-09T21:25:29" +ik[6812] = 3.131 +il[6812] = 71 +im[6812] = 0.0635 +ij[6812] = 28.6 +id[6813] = "2429-06-30T04:37:48" +ik[6813] = 90 +il[6813] = -132 +im[6813] = 0.2 +ij[6813] = 6 +id[6814] = "2429-08-17T06:29:00" +ik[6814] = 0 +il[6814] = -14 +im[6814] = 0.0708 +ij[6814] = 13 +id[6815] = "2429-09-09T02:11:02" +ik[6815] = 8.65 +il[6815] = 46 +im[6815] = 0.42 +ij[6815] = 11 +id[6816] = "2429-09-19T11:38:36" +ik[6816] = 0.5102 +il[6816] = 29 +im[6816] = 0.5102 +ij[6816] = 2 +id[6817] = "2429-09-30T12:16:45" +ik[6817] = 44.24 +il[6817] = 43 +im[6817] = 0.3265 +ij[6817] = 7.1624 +id[6818] = "2429-11-02T09:37:33" +ik[6818] = 77.13 +il[6818] = 108 +im[6818] = 0.236 +ij[6818] = 14 +id[6819] = "2429-11-07T06:40:36" +ik[6819] = 0.696 +il[6819] = 120 +im[6819] = 0.0298 +ij[6819] = 28.7 +id[6820] = "2429-11-18T19:31:10" +ik[6820] = 90 +il[6820] = 149 +im[6820] = 0.1789 +ij[6820] = 5 +id[6821] = "2430-01-16T06:35:36" +ik[6821] = 3.528 +il[6821] = -30 +im[6821] = 0.1302 +ij[6821] = 27.1 +id[6822] = "2430-02-04T02:12:53" +ik[6822] = 53.715 +il[6822] = 29 +im[6822] = 0.0317 +ij[6822] = 8 +id[6823] = "2430-03-04T10:46:16" +ik[6823] = 1.092 +il[6823] = 118 +im[6823] = 0.0661 +ij[6823] = 27.3 +id[6824] = "2430-03-05T14:37:32" +ik[6824] = 0.406 +il[6824] = 121 +im[6824] = 0.0456 +ij[6824] = 28.5 +id[6825] = "2430-03-22T06:42:43" +ik[6825] = 0.556 +il[6825] = 173 +im[6825] = 0.0134 +ij[6825] = 27.5 +id[6826] = "2430-04-03T14:22:24" +ik[6826] = 0.324 +il[6826] = -154 +im[6826] = 0.065 +ij[6826] = 28.8 +id[6827] = "2430-05-05T08:55:12" +ik[6827] = 3.51 +il[6827] = -52 +im[6827] = 0.0393 +ij[6827] = 27.6 +id[6828] = "2430-05-26T11:38:32" +ik[6828] = 0.721 +il[6828] = 12 +im[6828] = 0.0731 +ij[6828] = 28.1 +id[6829] = "2430-07-01T05:08:09" +ik[6829] = 0.46 +il[6829] = 99 +im[6829] = 0.0796 +ij[6829] = 12 +id[6830] = "2430-09-08T18:18:17" +ik[6830] = 0.342 +il[6830] = 132 +im[6830] = 0.0774 +ij[6830] = 28.7 +id[6831] = "2430-09-11T16:43:58" +ik[6831] = 4.131 +il[6831] = 141 +im[6831] = 0.0965 +ij[6831] = 28.1 +id[6832] = "2430-09-20T22:59:48" +ik[6832] = 0.824 +il[6832] = 169 +im[6832] = 0.0177 +ij[6832] = 28.4 +id[6833] = "2430-10-27T10:44:56" +ik[6833] = 3.334 +il[6833] = -81 +im[6833] = 0.1024 +ij[6833] = 27.4 +id[6834] = "2430-11-20T23:22:14" +ik[6834] = 53.659 +il[6834] = -6 +im[6834] = 0.043 +ij[6834] = 9 +id[6835] = "2430-12-22T18:41:49" +ik[6835] = 0.797 +il[6835] = 92 +im[6835] = 0.1039 +ij[6835] = 27.3 +id[6836] = "2431-01-10T23:31:36" +ik[6836] = 0.961 +il[6836] = 152 +im[6836] = 0.1642 +ij[6836] = 27.5 +id[6837] = "2431-01-27T04:36:11" +ik[6837] = 0.89 +il[6837] = -157 +im[6837] = 0.1774 +ij[6837] = 28.5 +id[6838] = "2431-01-28T05:28:01" +ik[6838] = 0.872 +il[6838] = -154 +im[6838] = 0.1592 +ij[6838] = 28.8 +id[6839] = "2431-02-09T12:23:56" +ik[6839] = 90 +il[6839] = -115 +im[6839] = 0.2113 +ij[6839] = 6 +id[6840] = "2431-03-07T03:19:10" +ik[6840] = 2.25 +il[6840] = -54 +im[6840] = 0.2015 +ij[6840] = 27.6 +id[6841] = "2431-03-29T09:38:00" +ik[6841] = 0 +il[6841] = -5 +im[6841] = 0.2253 +ij[6841] = 13 +id[6842] = "2431-04-20T00:44:46" +ik[6842] = 0.5366 +il[6842] = 42 +im[6842] = 0.5367 +ij[6842] = 2 +id[6843] = "2431-04-20T06:17:16" +ik[6843] = 6.69 +il[6843] = 41 +im[6843] = 0.5359 +ij[6843] = 11 +id[6844] = "2431-04-21T14:23:03" +ik[6844] = 4.53 +il[6844] = 35 +im[6844] = 0.5028 +ij[6844] = 27.6 +id[6845] = "2431-05-12T08:40:34" +ik[6845] = 43.96 +il[6845] = 58 +im[6845] = 0.2218 +ij[6845] = 7.1631 +id[6846] = "2431-06-01T14:02:50" +ik[6846] = 3.65 +il[6846] = 96 +im[6846] = 0.2842 +ij[6846] = 27.6 +id[6847] = "2431-06-13T13:04:23" +ik[6847] = 76.14 +il[6847] = 122 +im[6847] = 0.2554 +ij[6847] = 14 +id[6848] = "2431-06-29T12:03:36" +ik[6848] = 90 +il[6848] = 164 +im[6848] = 0.1998 +ij[6848] = 5 +id[6849] = "2431-08-19T09:38:26" +ik[6849] = 0.926 +il[6849] = -41 +im[6849] = 0.0422 +ij[6849] = 28.6 +id[6850] = "2431-09-09T12:10:15" +ik[6850] = 54.45 +il[6850] = 24 +im[6850] = 0.1107 +ij[6850] = 8 +id[6851] = "2431-10-25T21:51:59" +ik[6851] = 0.745 +il[6851] = 166 +im[6851] = 0.0967 +ij[6851] = 28.7 +id[6852] = "2431-12-26T23:35:39" +ik[6852] = 1.871 +il[6852] = 0 +im[6852] = 0.0908 +ij[6852] = 28.1 +id[6853] = "2432-02-04T21:41:45" +ik[6853] = 1.18 +il[6853] = 102 +im[6853] = 0.0436 +ij[6853] = 12 +id[6854] = "2432-03-28T00:20:52" +ik[6854] = 0.404 +il[6854] = 75 +im[6854] = 0.083 +ij[6854] = 28.5 +id[6855] = "2432-04-02T07:13:09" +ik[6855] = 3.068 +il[6855] = 91 +im[6855] = 0.0024 +ij[6855] = 28.1 +id[6856] = "2432-04-04T14:04:46" +ik[6856] = 2.84 +il[6856] = 98 +im[6856] = 0.0423 +ij[6856] = 27.6 +id[6857] = "2432-05-11T13:39:09" +ik[6857] = 3.855 +il[6857] = -146 +im[6857] = 0.0952 +ij[6857] = 27.2 +id[6858] = "2432-06-19T21:23:11" +ik[6858] = 1.553 +il[6858] = -23 +im[6858] = 0.0604 +ij[6858] = 28.6 +id[6859] = "2432-06-28T16:29:49" +ik[6859] = 54.669 +il[6859] = 4 +im[6859] = 0.0603 +ij[6859] = 9 +id[6860] = "2432-08-21T06:11:39" +ik[6860] = 1.329 +il[6860] = 167 +im[6860] = 0.1603 +ij[6860] = 28.7 +id[6861] = "2432-09-09T04:13:55" +ik[6861] = 90 +il[6861] = -136 +im[6861] = 0.1892 +ij[6861] = 6 +id[6862] = "2432-10-25T19:54:42" +ik[6862] = 2.031 +il[6862] = -20 +im[6862] = 0.1454 +ij[6862] = 27.4 +id[6863] = "2432-10-30T13:04:49" +ik[6863] = 0 +il[6863] = -19 +im[6863] = 0.2774 +ij[6863] = 13 +id[6864] = "2432-11-05T11:33:22" +ik[6864] = 1.726 +il[6864] = -14 +im[6864] = 0.4196 +ij[6864] = 27.4 +id[6865] = "2432-11-16T06:38:35" +ik[6865] = 0.5489 +il[6865] = 4 +im[6865] = 0.549 +ij[6865] = 2 +id[6866] = "2432-11-21T00:51:50" +ik[6866] = 3.34 +il[6866] = 15 +im[6866] = 0.2384 +ij[6866] = 11 +id[6867] = "2432-12-12T12:07:24" +ik[6867] = 42.96 +il[6867] = 47 +im[6867] = 0.4425 +ij[6867] = 7.1548 +id[6868] = "2433-01-11T23:49:07" +ik[6868] = 73.45 +il[6868] = 108 +im[6868] = 0.2546 +ij[6868] = 14 +id[6869] = "2433-01-12T19:27:15" +ik[6869] = 3.872 +il[6869] = 110 +im[6869] = 0.2302 +ij[6869] = 28.4 +id[6870] = "2433-01-22T08:56:29" +ik[6870] = 1.578 +il[6870] = 133 +im[6870] = 0.2001 +ij[6870] = 27.1 +id[6871] = "2433-01-30T23:16:43" +ik[6871] = 90 +il[6871] = 155 +im[6871] = 0.0728 +ij[6871] = 5 +id[6872] = "2433-03-16T17:36:29" +ik[6872] = 2.045 +il[6872] = -65 +im[6872] = 0.0585 +ij[6872] = 27.3 +id[6873] = "2433-04-04T07:54:42" +ik[6873] = 0.056 +il[6873] = -8 +im[6873] = 0.0667 +ij[6873] = 27.5 +id[6874] = "2433-04-19T16:47:37" +ik[6874] = 54.019 +il[6874] = 40 +im[6874] = 0.0488 +ij[6874] = 8 +id[6875] = "2433-04-22T03:55:00" +ik[6875] = 0.168 +il[6875] = 48 +im[6875] = 0.0946 +ij[6875] = 28.8 +id[6876] = "2433-05-19T11:18:44" +ik[6876] = 3.83 +il[6876] = 131 +im[6876] = 0.0403 +ij[6876] = 27.6 +id[6877] = "2433-06-01T23:54:40" +ik[6877] = 0.247 +il[6877] = 173 +im[6877] = 0.0205 +ij[6877] = 28.5 +id[6878] = "2433-06-26T12:50:26" +ik[6878] = 5.463 +il[6878] = -113 +im[6878] = 0.0748 +ij[6878] = 27.2 +id[6879] = "2433-08-05T13:12:00" +ik[6879] = 3.086 +il[6879] = 9 +im[6879] = 0.0707 +ij[6879] = 28.1 +id[6880] = "2433-09-06T19:09:07" +ik[6880] = 1.4 +il[6880] = 87 +im[6880] = 0.0817 +ij[6880] = 12 +id[6881] = "2433-11-10T06:45:22" +ik[6881] = 4.027 +il[6881] = 102 +im[6881] = 0.0598 +ij[6881] = 27.4 +id[6882] = "2433-11-11T22:10:24" +ik[6882] = 1.712 +il[6882] = 107 +im[6882] = 0.0348 +ij[6882] = 28.1 +id[6883] = "2434-01-04T04:10:42" +ik[6883] = 0.427 +il[6883] = -90 +im[6883] = 0.105 +ij[6883] = 27.3 +id[6884] = "2434-01-22T03:40:02" +ik[6884] = 1.144 +il[6884] = -34 +im[6884] = 0.1053 +ij[6884] = 27.5 +id[6885] = "2434-02-05T09:33:52" +ik[6885] = 53.709 +il[6885] = 10 +im[6885] = 0.1262 +ij[6885] = 9 +id[6886] = "2434-02-12T05:00:40" +ik[6886] = 0.387 +il[6886] = 31 +im[6886] = 0.0199 +ij[6886] = 28.8 +id[6887] = "2434-03-08T15:10:39" +ik[6887] = 1.42 +il[6887] = 108 +im[6887] = 0.1443 +ij[6887] = 27.6 +id[6888] = "2434-04-19T19:35:09" +ik[6888] = 1.185 +il[6888] = -122 +im[6888] = 0.2002 +ij[6888] = 27.2 +id[6889] = "2434-04-20T20:26:01" +ik[6889] = 90 +il[6889] = -117 +im[6889] = 0.2044 +ij[6889] = 6 +id[6890] = "2434-04-28T18:28:22" +ik[6890] = 3.957 +il[6890] = -98 +im[6890] = 0.0453 +ij[6890] = 28.5 +id[6891] = "2434-06-05T23:49:34" +ik[6891] = 0 +il[6891] = -6 +im[6891] = 0.3225 +ij[6891] = 13 +id[6892] = "2434-06-28T14:57:07" +ik[6892] = 2.46 +il[6892] = 54 +im[6892] = 0.5003 +ij[6892] = 11 +id[6893] = "2434-06-29T19:49:34" +ik[6893] = 0.5203 +il[6893] = 29 +im[6893] = 0.5203 +ij[6893] = 2 +id[6894] = "2434-07-20T22:52:08" +ik[6894] = 44.96 +il[6894] = 53 +im[6894] = 0.1736 +ij[6894] = 7.1662 +id[6895] = "2434-08-23T11:30:51" +ik[6895] = 78.49 +il[6895] = 119 +im[6895] = 0.2535 +ij[6895] = 14 +id[6896] = "2434-09-06T21:35:53" +ik[6896] = 90 +il[6896] = 156 +im[6896] = 0.2042 +ij[6896] = 5 +id[6897] = "2434-09-28T11:15:12" +ik[6897] = 1.904 +il[6897] = -146 +im[6897] = 0.0523 +ij[6897] = 28.6 +id[6898] = "2434-11-17T16:24:40" +ik[6898] = 1.071 +il[6898] = 16 +im[6898] = 0.0816 +ij[6898] = 28.7 +id[6899] = "2434-11-19T06:57:26" +ik[6899] = 54.023 +il[6899] = 21 +im[6899] = 0.1044 +ij[6899] = 8 +id[6900] = "2435-01-03T02:25:49" +ik[6900] = 4.453 +il[6900] = 161 +im[6900] = 0.0939 +ij[6900] = 27.1 +id[6901] = "2435-01-31T12:47:31" +ik[6901] = 1.23 +il[6901] = -110 +im[6901] = 0.0638 +ij[6901] = 28.4 +id[6902] = "2435-02-17T22:24:02" +ik[6902] = 0.577 +il[6902] = -56 +im[6902] = 0.0846 +ij[6902] = 27.3 +id[6903] = "2435-02-25T06:30:05" +ik[6903] = 2.831 +il[6903] = -34 +im[6903] = 0.0333 +ij[6903] = 28.1 +id[6904] = "2435-03-07T12:49:49" +ik[6904] = 0.814 +il[6904] = -2 +im[6904] = 0.0881 +ij[6904] = 27.5 +id[6905] = "2435-04-21T09:31:40" +ik[6905] = 1.08 +il[6905] = 113 +im[6905] = 0.0885 +ij[6905] = 12 +id[6906] = "2435-05-27T00:50:15" +ik[6906] = 4.443 +il[6906] = 38 +im[6906] = 0.0385 +ij[6906] = 27.2 +id[6907] = "2435-06-11T14:03:50" +ik[6907] = 0.943 +il[6907] = 87 +im[6907] = 0.0164 +ij[6907] = 28.1 +id[6908] = "2435-06-13T18:06:20" +ik[6908] = 0.168 +il[6908] = 93 +im[6908] = 0.0245 +ij[6908] = 27.9 +id[6909] = "2435-06-27T21:48:14" +ik[6909] = 0.826 +il[6909] = 138 +im[6909] = 0.0058 +ij[6909] = 28.5 +id[6910] = "2435-08-02T00:38:01" +ik[6910] = 0.116 +il[6910] = -114 +im[6910] = 0.0913 +ij[6910] = 28.6 +id[6911] = "2435-09-06T05:42:47" +ik[6911] = 54.305 +il[6911] = -7 +im[6911] = 0.1019 +ij[6911] = 9 +id[6912] = "2435-09-11T12:23:11" +ik[6912] = 0.656 +il[6912] = 9 +im[6912] = 0.0091 +ij[6912] = 28.7 +id[6913] = "2435-10-15T11:08:55" +ik[6913] = 2.104 +il[6913] = 112 +im[6913] = 0.1083 +ij[6913] = 27.4 +id[6914] = "2435-11-24T05:53:53" +ik[6914] = 90 +il[6914] = -125 +im[6914] = 0.0015 +ij[6914] = 6 +id[6915] = "2435-12-21T22:57:22" +ik[6915] = 0.215 +il[6915] = -56 +im[6915] = 0.1109 +ij[6915] = 27.3 +id[6916] = "2436-01-14T11:31:18" +ik[6916] = 0 +il[6916] = -4 +im[6916] = 0.4439 +ij[6916] = 13 +id[6917] = "2436-01-27T19:14:12" +ik[6917] = 0.5536 +il[6917] = 20 +im[6917] = 0.5537 +ij[6917] = 2 +id[6918] = "2436-02-03T19:09:07" +ik[6918] = 7.34 +il[6918] = 37 +im[6918] = 0.0969 +ij[6918] = 11 +id[6919] = "2436-02-24T14:57:01" +ik[6919] = 41.14 +il[6919] = 55 +im[6919] = 0.4459 +ij[6919] = 7.157 +id[6920] = "2436-03-27T18:29:44" +ik[6920] = 73.29 +il[6920] = 118 +im[6920] = 0.1232 +ij[6920] = 14 +id[6921] = "2436-04-12T01:56:29" +ik[6921] = 1.668 +il[6921] = 156 +im[6921] = 0.0259 +ij[6921] = 27.5 +id[6922] = "2436-04-15T10:32:30" +ik[6922] = 90 +il[6922] = 166 +im[6922] = 0.1142 +ij[6922] = 5 +id[6923] = "2436-05-08T02:13:37" +ik[6923] = 0.109 +il[6923] = -124 +im[6923] = 0.1304 +ij[6923] = 28.8 +id[6924] = "2436-05-31T17:52:30" +ik[6924] = 4.18 +il[6924] = -51 +im[6924] = 0.1099 +ij[6924] = 27.6 +id[6925] = "2436-06-29T08:12:08" +ik[6925] = 54.444 +il[6925] = 36 +im[6925] = 0.0716 +ij[6925] = 8 +id[6926] = "2436-07-10T09:53:32" +ik[6926] = 6.15 +il[6926] = 70 +im[6926] = 0.0365 +ij[6926] = 27.2 +id[6927] = "2436-09-05T07:39:56" +ik[6927] = 0.119 +il[6927] = -116 +im[6927] = 0.0809 +ij[6927] = 28.5 +id[6928] = "2436-09-22T18:43:29" +ik[6928] = 0.644 +il[6928] = -62 +im[6928] = 0.0296 +ij[6928] = 28.6 +id[6929] = "2436-10-07T20:48:28" +ik[6929] = 1.674 +il[6929] = -15 +im[6929] = 0.0426 +ij[6929] = 28.1 +id[6930] = "2436-11-17T08:19:40" +ik[6930] = 0.6 +il[6930] = 89 +im[6930] = 0.0855 +ij[6930] = 12 +id[6931] = "2437-01-09T19:39:56" +ik[6931] = 1.995 +il[6931] = 67 +im[6931] = 0.0334 +ij[6931] = 28.1 +id[6932] = "2437-01-18T06:31:35" +ik[6932] = 0.103 +il[6932] = 93 +im[6932] = 0.0856 +ij[6932] = 27.3 +id[6933] = "2437-02-04T22:06:15" +ik[6933] = 1.088 +il[6933] = 147 +im[6933] = 0.0434 +ij[6933] = 27.5 +id[6934] = "2437-02-06T08:14:47" +ik[6934] = 0.879 +il[6934] = 152 +im[6934] = 0.0182 +ij[6934] = 28.4 +id[6935] = "2437-03-02T12:58:10" +ik[6935] = 0.332 +il[6935] = -133 +im[6935] = 0.0964 +ij[6935] = 28.8 +id[6936] = "2437-03-20T23:54:26" +ik[6936] = 2.34 +il[6936] = -75 +im[6936] = 0.0809 +ij[6936] = 27.6 +id[6937] = "2437-04-19T06:04:09" +ik[6937] = 54.355 +il[6937] = 16 +im[6937] = 0.0999 +ij[6937] = 9 +id[6938] = "2437-04-27T22:02:42" +ik[6938] = 2.978 +il[6938] = 43 +im[6938] = 0.101 +ij[6938] = 27.2 +id[6939] = "2437-06-27T21:45:37" +ik[6939] = 90 +il[6939] = -129 +im[6939] = 0.2019 +ij[6939] = 6 +id[6940] = "2437-08-15T18:30:11" +ik[6940] = 0 +il[6940] = -8 +im[6940] = 0.2475 +ij[6940] = 13 +id[6941] = "2437-08-25T23:15:37" +ik[6941] = 0.5013 +il[6941] = 8 +im[6941] = 0.5014 +ij[6941] = 2 +id[6942] = "2437-09-06T16:46:33" +ik[6942] = 8.61 +il[6942] = 38 +im[6942] = 0.476 +ij[6942] = 11 +id[6943] = "2437-09-28T19:34:45" +ik[6943] = 44.04 +il[6943] = 47 +im[6943] = 0.0676 +ij[6943] = 7.163 +id[6944] = "2437-10-31T03:53:34" +ik[6944] = 76.39 +il[6944] = 111 +im[6944] = 0.2225 +ij[6944] = 14 +id[6945] = "2437-11-05T01:10:16" +ik[6945] = 2.339 +il[6945] = 123 +im[6945] = 0.1821 +ij[6945] = 28.6 +id[6946] = "2437-11-07T04:24:48" +ik[6946] = 1.17 +il[6946] = 128 +im[6946] = 0.0929 +ij[6946] = 28.5 +id[6947] = "2437-11-16T10:10:23" +ik[6947] = 90 +il[6947] = 152 +im[6947] = 0.2262 +ij[6947] = 5 +id[6948] = "2437-12-08T01:36:11" +ik[6948] = 1.666 +il[6948] = -150 +im[6948] = 0.0344 +ij[6948] = 28.7 +id[6949] = "2438-01-15T22:24:01" +ik[6949] = 3.568 +il[6949] = -21 +im[6949] = 0.1345 +ij[6949] = 27.1 +id[6950] = "2438-02-01T13:46:24" +ik[6950] = 53.716 +il[6950] = 31 +im[6950] = 0.1098 +ij[6950] = 8 +id[6951] = "2438-03-04T00:48:28" +ik[6951] = 1.073 +il[6951] = 126 +im[6951] = 0.0974 +ij[6951] = 27.3 +id[6952] = "2438-03-21T20:23:09" +ik[6952] = 0.567 +il[6952] = -179 +im[6952] = 0.048 +ij[6952] = 27.5 +id[6953] = "2438-04-17T08:25:00" +ik[6953] = 0.111 +il[6953] = -97 +im[6953] = 0.0851 +ij[6953] = 28.8 +id[6954] = "2438-05-02T05:59:42" +ik[6954] = 0.348 +il[6954] = -52 +im[6954] = 0.0925 +ij[6954] = 28.1 +id[6955] = "2438-05-04T22:07:24" +ik[6955] = 3.5 +il[6955] = -43 +im[6955] = 0.0714 +ij[6955] = 27.6 +id[6956] = "2438-06-28T23:49:55" +ik[6956] = 0.41 +il[6956] = 102 +im[6956] = 0.0803 +ij[6956] = 12 +id[6957] = "2438-08-20T19:51:18" +ik[6957] = 3.73 +il[6957] = 84 +im[6957] = 0.0311 +ij[6957] = 28.1 +id[6958] = "2438-09-14T22:01:55" +ik[6958] = 1.434 +il[6958] = 160 +im[6958] = 0.0962 +ij[6958] = 28.6 +id[6959] = "2438-10-04T08:48:46" +ik[6959] = 0.33 +il[6959] = -141 +im[6959] = 0.0323 +ij[6959] = 28.7 +id[6960] = "2438-10-09T02:37:32" +ik[6960] = 1.098 +il[6960] = -126 +im[6960] = 0.063 +ij[6960] = 28.5 +id[6961] = "2438-10-27T01:04:28" +ik[6961] = 3.309 +il[6961] = -72 +im[6961] = 0.0973 +ij[6961] = 27.4 +id[6962] = "2438-11-18T10:41:32" +ik[6962] = 53.675 +il[6962] = -4 +im[6962] = 0.0547 +ij[6962] = 9 +id[6963] = "2438-12-22T11:19:35" +ik[6963] = 0.805 +il[6963] = 101 +im[6963] = 0.0677 +ij[6963] = 27.3 +id[6964] = "2439-01-10T18:19:08" +ik[6964] = 0.937 +il[6964] = 161 +im[6964] = 0.1535 +ij[6964] = 27.5 +id[6965] = "2439-02-07T02:06:34" +ik[6965] = 90 +il[6965] = -113 +im[6965] = 0.1339 +ij[6965] = 6 +id[6966] = "2439-02-14T01:51:36" +ik[6966] = 3.103 +il[6966] = -94 +im[6966] = 0.1668 +ij[6966] = 28.8 +id[6967] = "2439-02-16T18:06:46" +ik[6967] = 3.144 +il[6967] = -88 +im[6967] = 0.0471 +ij[6967] = 28.4 +id[6968] = "2439-03-08T06:17:23" +ik[6968] = 2.66 +il[6968] = -44 +im[6968] = 0.1965 +ij[6968] = 27.6 +id[6969] = "2439-03-26T03:54:01" +ik[6969] = 0 +il[6969] = -7 +im[6969] = 0.4427 +ij[6969] = 13 +id[6970] = "2439-04-15T00:33:14" +ik[6970] = 5.28 +il[6970] = 35 +im[6970] = 0.0786 +ij[6970] = 27.6 +id[6971] = "2439-04-17T21:34:33" +ik[6971] = 6.92 +il[6971] = 41 +im[6971] = 0.3976 +ij[6971] = 11 +id[6972] = "2439-04-21T02:29:25" +ik[6972] = 0.5403 +il[6972] = 39 +im[6972] = 0.5404 +ij[6972] = 2 +id[6973] = "2439-05-08T13:24:39" +ik[6973] = 43.4 +il[6973] = 59 +im[6973] = 0.2428 +ij[6973] = 7.1631 +id[6974] = "2439-06-02T21:06:01" +ik[6974] = 3.83 +il[6974] = 107 +im[6974] = 0.2619 +ij[6974] = 27.6 +id[6975] = "2439-06-11T02:06:28" +ik[6975] = 76.93 +il[6975] = 125 +im[6975] = 0.1422 +ij[6975] = 14 +id[6976] = "2439-06-27T04:11:17" +ik[6976] = 90 +il[6976] = 167 +im[6976] = 0.1316 +ij[6976] = 5 +id[6977] = "2439-09-07T04:46:00" +ik[6977] = 54.458 +il[6977] = 27 +im[6977] = 0.0377 +ij[6977] = 8 +id[6978] = "2439-11-07T04:07:40" +ik[6978] = 0.987 +il[6978] = -145 +im[6978] = 0.0347 +ij[6978] = 28.6 +id[6979] = "2439-11-20T07:01:29" +ik[6979] = 0.855 +il[6979] = -104 +im[6979] = 0.0107 +ij[6979] = 28.7 +id[6980] = "2439-12-06T20:28:53" +ik[6980] = 1.256 +il[6980] = -53 +im[6980] = 0.0215 +ij[6980] = 28.1 +id[6981] = "2439-12-18T08:36:14" +ik[6981] = 0.15 +il[6981] = -17 +im[6981] = 0.0293 +ij[6981] = 28.5 +id[6982] = "2440-02-02T07:26:24" +ik[6982] = 1.14 +il[6982] = 104 +im[6982] = 0.031 +ij[6982] = 12 +id[6983] = "2440-03-11T16:41:13" +ik[6983] = 3.238 +il[6983] = 45 +im[6983] = 0.0881 +ij[6983] = 28.1 +id[6984] = "2440-03-21T19:43:23" +ik[6984] = 0.326 +il[6984] = 66 +im[6984] = 0.0296 +ij[6984] = 28.8 +id[6985] = "2440-04-04T03:20:59" +ik[6985] = 2.83 +il[6985] = 107 +im[6985] = 0.0091 +ij[6985] = 27.6 +id[6986] = "2440-05-11T03:15:08" +ik[6986] = 3.835 +il[6986] = -137 +im[6986] = 0.1024 +ij[6986] = 27.2 +id[6987] = "2440-06-26T10:45:07" +ik[6987] = 54.669 +il[6987] = 7 +im[6987] = 0.1125 +ij[6987] = 9 +id[6988] = "2440-09-06T17:36:12" +ik[6988] = 90 +il[6988] = -133 +im[6988] = 0.1884 +ij[6988] = 6 +id[6989] = "2440-09-16T14:41:16" +ik[6989] = 5.593 +il[6989] = -106 +im[6989] = 0.068 +ij[6989] = 28.6 +id[6990] = "2440-09-22T13:35:11" +ik[6990] = 4.253 +il[6990] = -92 +im[6990] = 0.2648 +ij[6990] = 28.7 +id[6991] = "2440-10-28T02:06:55" +ik[6991] = 0 +il[6991] = -8 +im[6991] = 0.0908 +ij[6991] = 13 +id[6992] = "2440-11-17T07:03:09" +ik[6992] = 0.5657 +il[6992] = 35 +im[6992] = 0.5658 +ij[6992] = 2 +id[6993] = "2440-11-18T14:08:09" +ik[6993] = 3.71 +il[6993] = 37 +im[6993] = 0.5406 +ij[6993] = 11 +id[6994] = "2440-12-07T16:26:49" +ik[6994] = 5.323 +il[6994] = 46 +im[6994] = 0.0444 +ij[6994] = 28.7 +id[6995] = "2440-12-09T03:13:30" +ik[6995] = 42.05 +il[6995] = 48 +im[6995] = 0.1951 +ij[6995] = 7.1552 +id[6996] = "2441-01-09T13:23:16" +ik[6996] = 73.47 +il[6996] = 110 +im[6996] = 0.2554 +ij[6996] = 14 +id[6997] = "2441-01-22T14:20:01" +ik[6997] = 1.687 +il[6997] = 142 +im[6997] = 0.1393 +ij[6997] = 27.1 +id[6998] = "2441-01-28T11:45:56" +ik[6998] = 90 +il[6998] = 157 +im[6998] = 0.1939 +ij[6998] = 5 +id[6999] = "2441-02-20T04:56:03" +ik[6999] = 2.131 +il[6999] = -132 +im[6999] = 0.0662 +ij[6999] = 28.5 +id[7000] = "2441-03-16T10:13:48" +ik[7000] = 1.998 +il[7000] = -56 +im[7000] = 0.1078 +ij[7000] = 27.3 +id[7001] = "2441-04-03T23:21:21" +ik[7001] = 0.082 +il[7001] = 1 +im[7001] = 0.0207 +ij[7001] = 27.5 +id[7002] = "2441-04-17T06:36:15" +ik[7002] = 54.002 +il[7002] = 42 +im[7002] = 0.0517 +ij[7002] = 8 +id[7003] = "2441-05-06T06:28:04" +ik[7003] = 0.151 +il[7003] = 101 +im[7003] = 0.0557 +ij[7003] = 28.8 +id[7004] = "2441-05-19T01:20:56" +ik[7004] = 3.82 +il[7004] = 140 +im[7004] = 0.0059 +ij[7004] = 27.6 +id[7005] = "2441-05-24T04:29:08" +ik[7005] = 0.506 +il[7005] = 156 +im[7005] = 0.0915 +ij[7005] = 28.4 +id[7006] = "2441-06-26T02:04:12" +ik[7006] = 5.443 +il[7006] = -104 +im[7006] = 0.0925 +ij[7006] = 27.2 +id[7007] = "2441-07-13T10:47:08" +ik[7007] = 2.838 +il[7007] = -51 +im[7007] = 0.0714 +ij[7007] = 28.1 +id[7008] = "2441-09-04T11:57:07" +ik[7008] = 1.39 +il[7008] = 90 +im[7008] = 0.0493 +ij[7008] = 12 +id[7009] = "2441-10-22T15:59:36" +ik[7009] = 2.309 +il[7009] = 56 +im[7009] = 0.0848 +ij[7009] = 28.1 +id[7010] = "2441-10-28T02:11:28" +ik[7010] = 0.068 +il[7010] = 72 +im[7010] = 0.0628 +ij[7010] = 28.7 +id[7011] = "2441-10-30T21:55:47" +ik[7011] = 1.95 +il[7011] = 81 +im[7011] = 0.013 +ij[7011] = 28.6 +id[7012] = "2441-11-09T20:12:54" +ik[7012] = 4.011 +il[7012] = 111 +im[7012] = 0.0848 +ij[7012] = 27.4 +id[7013] = "2442-01-03T18:12:55" +ik[7013] = 0.436 +il[7013] = -82 +im[7013] = 0.0863 +ij[7013] = 27.3 +id[7014] = "2442-01-14T04:22:39" +ik[7014] = 0.639 +il[7014] = -49 +im[7014] = 0.0315 +ij[7014] = 28.5 +id[7015] = "2442-01-21T18:06:41" +ik[7015] = 1.141 +il[7015] = -26 +im[7015] = 0.1064 +ij[7015] = 27.5 +id[7016] = "2442-02-02T20:56:43" +ik[7016] = 53.692 +il[7016] = 12 +im[7016] = 0.0954 +ij[7016] = 9 +id[7017] = "2442-02-26T09:01:43" +ik[7017] = 1.538 +il[7017] = 86 +im[7017] = 0.0636 +ij[7017] = 28.8 +id[7018] = "2442-03-08T07:52:48" +ik[7018] = 1.37 +il[7018] = 117 +im[7018] = 0.1504 +ij[7018] = 27.6 +id[7019] = "2442-04-18T13:51:32" +ik[7019] = 90 +il[7019] = -114 +im[7019] = 0.1604 +ij[7019] = 6 +id[7020] = "2442-04-19T21:11:08" +ik[7020] = 1.083 +il[7020] = -111 +im[7020] = 0.1955 +ij[7020] = 27.2 +id[7021] = "2442-06-04T13:23:43" +ik[7021] = 0 +il[7021] = 1 +im[7021] = 0.4042 +ij[7021] = 13 +id[7022] = "2442-06-26T08:02:24" +ik[7022] = 2.15 +il[7022] = 58 +im[7022] = 0.2411 +ij[7022] = 11 +id[7023] = "2442-06-30T21:16:18" +ik[7023] = 0.5045 +il[7023] = 35 +im[7023] = 0.5045 +ij[7023] = 2 +id[7024] = "2442-07-18T16:30:18" +ik[7024] = 44.13 +il[7024] = 56 +im[7024] = 0.1679 +ij[7024] = 7.1664 +id[7025] = "2442-08-21T04:45:06" +ik[7025] = 77.64 +il[7025] = 122 +im[7025] = 0.147 +ij[7025] = 14 +id[7026] = "2442-09-04T14:04:48" +ik[7026] = 90 +il[7026] = 159 +im[7026] = 0.1285 +ij[7026] = 5 +id[7027] = "2442-11-16T21:03:51" +ik[7027] = 54.04 +il[7027] = 24 +im[7027] = 0.0267 +ij[7027] = 8 +id[7028] = "2442-12-13T18:17:08" +ik[7028] = 1.282 +il[7028] = 107 +im[7028] = 0.0482 +ij[7028] = 28.7 +id[7029] = "2442-12-23T07:15:36" +ik[7029] = 0.586 +il[7029] = 137 +im[7029] = 0.0988 +ij[7029] = 28.6 +id[7030] = "2443-01-02T16:10:14" +ik[7030] = 4.477 +il[7030] = 170 +im[7030] = 0.064 +ij[7030] = 27.1 +id[7031] = "2443-02-04T09:58:19" +ik[7031] = 2.862 +il[7031] = -88 +im[7031] = 0.0841 +ij[7031] = 28.1 +id[7032] = "2443-02-17T11:40:01" +ik[7032] = 0.566 +il[7032] = -48 +im[7032] = 0.0668 +ij[7032] = 27.3 +id[7033] = "2443-03-07T02:02:15" +ik[7033] = 0.819 +il[7033] = 6 +im[7033] = 0.081 +ij[7033] = 27.5 +id[7034] = "2443-04-19T00:05:45" +ik[7034] = 1.12 +il[7034] = 116 +im[7034] = 0.0673 +ij[7034] = 12 +id[7035] = "2443-05-26T13:58:14" +ik[7035] = 4.427 +il[7035] = 46 +im[7035] = 0.068 +ij[7035] = 27.2 +id[7036] = "2443-06-12T04:49:43" +ik[7036] = 0.507 +il[7036] = 98 +im[7036] = 0.036 +ij[7036] = 28.4 +id[7037] = "2443-06-13T06:07:55" +ik[7037] = 0.161 +il[7037] = 102 +im[7037] = 0.0196 +ij[7037] = 27.9 +id[7038] = "2443-09-03T21:28:45" +ik[7038] = 54.326 +il[7038] = -4 +im[7038] = 0.1219 +ij[7038] = 9 +id[7039] = "2443-10-08T22:43:49" +ik[7039] = 1.967 +il[7039] = 102 +im[7039] = 0.1129 +ij[7039] = 28.7 +id[7040] = "2443-10-15T04:57:48" +ik[7040] = 2.047 +il[7040] = 121 +im[7040] = 0.0699 +ij[7040] = 27.4 +id[7041] = "2443-10-30T02:28:10" +ik[7041] = 4.182 +il[7041] = 167 +im[7041] = 0.1039 +ij[7041] = 28.6 +id[7042] = "2443-11-21T17:05:15" +ik[7042] = 90 +il[7042] = -123 +im[7042] = 0.1702 +ij[7042] = 6 +id[7043] = "2443-12-23T12:13:48" +ik[7043] = 0.073 +il[7043] = -45 +im[7043] = 0.1297 +ij[7043] = 27.3 +id[7044] = "2444-01-11T04:45:33" +ik[7044] = 0 +il[7044] = -6 +im[7044] = 0.2808 +ij[7044] = 13 +id[7045] = "2444-01-28T20:26:09" +ik[7045] = 0.5544 +il[7045] = 30 +im[7045] = 0.5545 +ij[7045] = 2 +id[7046] = "2444-02-01T07:43:40" +ik[7046] = 7.11 +il[7046] = 38 +im[7046] = 0.3698 +ij[7046] = 11 +id[7047] = "2444-02-22T04:49:08" +ik[7047] = 42 +il[7047] = 57 +im[7047] = 0.4148 +ij[7047] = 7.1567 +id[7048] = "2444-03-25T05:46:53" +ik[7048] = 74.04 +il[7048] = 121 +im[7048] = 0.2652 +ij[7048] = 14 +id[7049] = "2444-04-12T03:12:28" +ik[7049] = 1.539 +il[7049] = 165 +im[7049] = 0.0973 +ij[7049] = 27.5 +id[7050] = "2444-04-12T23:37:05" +ik[7050] = 90 +il[7050] = 168 +im[7050] = 0.0627 +ij[7050] = 5 +id[7051] = "2444-05-21T22:21:38" +ik[7051] = 0.331 +il[7051] = -71 +im[7051] = 0.1451 +ij[7051] = 28.5 +id[7052] = "2444-05-23T11:00:40" +ik[7052] = 0.288 +il[7052] = -66 +im[7052] = 0.1355 +ij[7052] = 28.8 +id[7053] = "2444-05-31T10:28:48" +ik[7053] = 4.17 +il[7053] = -42 +im[7053] = 0.0701 +ij[7053] = 27.6 +id[7054] = "2444-06-27T00:58:33" +ik[7054] = 54.434 +il[7054] = 39 +im[7054] = 0.0192 +ij[7054] = 8 +id[7055] = "2444-07-10T00:12:38" +ik[7055] = 6.123 +il[7055] = 79 +im[7055] = 0.078 +ij[7055] = 27.2 +id[7056] = "2444-09-18T00:25:12" +ik[7056] = 2.033 +il[7056] = -67 +im[7056] = 0.0877 +ij[7056] = 28.1 +id[7057] = "2444-10-09T06:16:42" +ik[7057] = 1.26 +il[7057] = -1 +im[7057] = 0.0419 +ij[7057] = 28.1 +id[7058] = "2444-11-14T21:23:02" +ik[7058] = 0.66 +il[7058] = 91 +im[7058] = 0.0724 +ij[7058] = 12 +id[7059] = "2444-12-21T05:37:40" +ik[7059] = 1.501 +il[7059] = 28 +im[7059] = 0.0786 +ij[7059] = 28.1 +id[7060] = "2445-01-17T19:48:01" +ik[7060] = 0.111 +il[7060] = 101 +im[7060] = 0.0944 +ij[7060] = 27.3 +id[7061] = "2445-02-04T11:32:54" +ik[7061] = 1.089 +il[7061] = 156 +im[7061] = 0.0744 +ij[7061] = 27.5 +id[7062] = "2445-03-16T05:27:18" +ik[7062] = 1.155 +il[7062] = -80 +im[7062] = 0.0835 +ij[7062] = 28.8 +id[7063] = "2445-03-20T13:53:47" +ik[7063] = 2.32 +il[7063] = -67 +im[7063] = 0.1 +ij[7063] = 27.6 +id[7064] = "2445-04-11T18:34:24" +ik[7064] = 1.683 +il[7064] = 3 +im[7064] = 0.0242 +ij[7064] = 28.5 +id[7065] = "2445-04-16T22:04:21" +ik[7065] = 54.334 +il[7065] = 19 +im[7065] = 0.1095 +ij[7065] = 9 +id[7066] = "2445-04-27T13:24:54" +ik[7066] = 2.943 +il[7066] = 52 +im[7066] = 0.0666 +ij[7066] = 27.2 +id[7067] = "2445-06-25T15:00:32" +ik[7067] = 90 +il[7067] = -126 +im[7067] = 0.0829 +ij[7067] = 6 +id[7068] = "2445-07-27T00:49:23" +ik[7068] = 4.28 +il[7068] = -52 +im[7068] = 0.2431 +ij[7068] = 28.4 +id[7069] = "2445-08-13T05:47:20" +ik[7069] = 0 +il[7069] = -17 +im[7069] = 0.4041 +ij[7069] = 13 +id[7070] = "2445-08-27T02:33:12" +ik[7070] = 0.5121 +il[7070] = 9 +im[7070] = 0.5121 +ij[7070] = 2 +id[7071] = "2445-09-04T07:26:24" +ik[7071] = 8.56 +il[7071] = 30 +im[7071] = 0.232 +ij[7071] = 11 +id[7072] = "2445-09-26T04:49:55" +ik[7072] = 43.96 +il[7072] = 49 +im[7072] = 0.2957 +ij[7072] = 7.1633 +id[7073] = "2445-10-20T16:16:36" +ik[7073] = 2.942 +il[7073] = 95 +im[7073] = 0.3085 +ij[7073] = 28.4 +id[7074] = "2445-10-28T21:07:41" +ik[7074] = 76.64 +il[7074] = 114 +im[7074] = 0.0596 +ij[7074] = 14 +id[7075] = "2445-11-14T00:50:30" +ik[7075] = 90 +il[7075] = 154 +im[7075] = 0.1363 +ij[7075] = 5 +id[7076] = "2446-01-05T03:03:44" +ik[7076] = 2.014 +il[7076] = -44 +im[7076] = 0.1125 +ij[7076] = 28.7 +id[7077] = "2446-01-15T14:01:21" +ik[7077] = 3.608 +il[7077] = -12 +im[7077] = 0.1176 +ij[7077] = 27.1 +id[7078] = "2446-01-30T01:19:55" +ik[7078] = 53.717 +il[7078] = 33 +im[7078] = 0.1121 +ij[7078] = 8 +id[7079] = "2446-02-08T11:34:13" +ik[7079] = 0.362 +il[7079] = 63 +im[7079] = 0.019 +ij[7079] = 28.6 +id[7080] = "2446-03-03T14:47:08" +ik[7080] = 1.054 +il[7080] = 135 +im[7080] = 0.11 +ij[7080] = 27.3 +id[7081] = "2446-03-21T10:07:34" +ik[7081] = 0.577 +il[7081] = -170 +im[7081] = 0.0755 +ij[7081] = 27.5 +id[7082] = "2446-04-09T08:22:33" +ik[7082] = 1.214 +il[7082] = -112 +im[7082] = 0.0261 +ij[7082] = 28.1 +id[7083] = "2446-05-01T01:12:00" +ik[7083] = 0.209 +il[7083] = -45 +im[7083] = 0.0856 +ij[7083] = 28.8 +id[7084] = "2446-05-04T11:19:47" +ik[7084] = 3.49 +il[7084] = -35 +im[7084] = 0.0883 +ij[7084] = 27.6 +id[7085] = "2446-05-25T15:41:54" +ik[7085] = 0.31 +il[7085] = 19 +im[7085] = 0.0088 +ij[7085] = 28.1 +id[7086] = "2446-06-26T18:25:55" +ik[7086] = 0.36 +il[7086] = 105 +im[7086] = 0.0339 +ij[7086] = 12 +id[7087] = "2446-10-26T15:28:54" +ik[7087] = 3.284 +il[7087] = -63 +im[7087] = 0.0779 +ij[7087] = 27.4 +id[7088] = "2446-10-31T00:09:21" +ik[7088] = 1.167 +il[7088] = -50 +im[7088] = 0.1098 +ij[7088] = 28.7 +id[7089] = "2446-11-15T22:11:30" +ik[7089] = 53.69 +il[7089] = -1 +im[7089] = 0.1152 +ij[7089] = 9 +id[7090] = "2446-12-14T20:00:48" +ik[7090] = 1.866 +il[7090] = 88 +im[7090] = 0.1354 +ij[7090] = 28.6 +id[7091] = "2446-12-22T04:04:01" +ik[7091] = 0.814 +il[7091] = 110 +im[7091] = 0.0151 +ij[7091] = 27.3 +id[7092] = "2447-01-10T13:24:54" +ik[7092] = 0.91 +il[7092] = 171 +im[7092] = 0.1218 +ij[7092] = 27.5 +id[7093] = "2447-02-04T15:39:27" +ik[7093] = 90 +il[7093] = -111 +im[7093] = 0.0399 +ij[7093] = 6 +id[7094] = "2447-03-09T16:43:47" +ik[7094] = 3.17 +il[7094] = -33 +im[7094] = 0.2253 +ij[7094] = 27.6 +id[7095] = "2447-03-24T21:08:08" +ik[7095] = 0 +il[7095] = -4 +im[7095] = 0.403 +ij[7095] = 13 +id[7096] = "2447-04-07T11:48:37" +ik[7096] = 5.74 +il[7096] = 21 +im[7096] = 0.4387 +ij[7096] = 27.6 +id[7097] = "2447-04-15T12:41:45" +ik[7097] = 7.13 +il[7097] = 41 +im[7097] = 0.1108 +ij[7097] = 11 +id[7098] = "2447-04-22T06:11:29" +ik[7098] = 0.5324 +il[7098] = 45 +im[7098] = 0.5325 +ij[7098] = 2 +id[7099] = "2447-05-06T04:51:54" +ik[7099] = 42.32 +il[7099] = 62 +im[7099] = 0.4057 +ij[7099] = 7.1633 +id[7100] = "2447-05-31T20:25:09" +ik[7100] = 0.125 +il[7100] = 110 +im[7100] = 0.2359 +ij[7100] = 28.8 +id[7101] = "2447-06-03T19:51:30" +ik[7101] = 3.96 +il[7101] = 117 +im[7101] = 0.2517 +ij[7101] = 27.6 +id[7102] = "2447-06-08T16:56:39" +ik[7102] = 75.83 +il[7102] = 128 +im[7102] = 0.0595 +ij[7102] = 14 +id[7103] = "2447-06-24T20:15:26" +ik[7103] = 90 +il[7103] = 170 +im[7103] = 0.0297 +ij[7103] = 5 +id[7104] = "2447-08-24T07:01:29" +ik[7104] = 1.067 +il[7104] = -6 +im[7104] = 0.0184 +ij[7104] = 28.5 +id[7105] = "2447-09-04T21:28:51" +ik[7105] = 54.466 +il[7105] = 29 +im[7105] = 0.0586 +ij[7105] = 8 +id[7106] = "2447-11-18T07:57:04" +ik[7106] = 0.92 +il[7106] = -101 +im[7106] = 0.0545 +ij[7106] = 28.1 +id[7107] = "2447-11-28T18:16:07" +ik[7107] = 0.46 +il[7107] = -68 +im[7107] = 0.0944 +ij[7107] = 28.4 +id[7108] = "2447-12-12T07:02:38" +ik[7108] = 0.803 +il[7108] = -26 +im[7108] = 0.0776 +ij[7108] = 28.1 +id[7109] = "2447-12-16T05:02:54" +ik[7109] = 0.538 +il[7109] = -13 +im[7109] = 0.0777 +ij[7109] = 28.7 +id[7110] = "2448-01-30T17:15:21" +ik[7110] = 1.1 +il[7110] = 106 +im[7110] = 0.0818 +ij[7110] = 12 +id[7111] = "2448-04-03T16:30:35" +ik[7111] = 2.82 +il[7111] = 116 +im[7111] = 0.0306 +ij[7111] = 27.6 +id[7112] = "2448-04-04T09:30:48" +ik[7112] = 0.96 +il[7112] = 118 +im[7112] = 0.0176 +ij[7112] = 28.8 +id[7113] = "2448-05-10T16:55:07" +ik[7113] = 3.814 +il[7113] = -128 +im[7113] = 0.0894 +ij[7113] = 27.2 +id[7114] = "2448-06-24T04:56:52" +ik[7114] = 54.67 +il[7114] = 10 +im[7114] = 0.0945 +ij[7114] = 9 +id[7115] = "2448-07-17T16:14:09" +ik[7115] = 0.305 +il[7115] = 82 +im[7115] = 0.0596 +ij[7115] = 28.5 +id[7116] = "2448-09-04T07:08:12" +ik[7116] = 90 +il[7116] = -131 +im[7116] = 0.0622 +ij[7116] = 6 +id[7117] = "2448-10-24T16:57:06" +ik[7117] = 0 +il[7117] = -5 +im[7117] = 0.4271 +ij[7117] = 13 +id[7118] = "2448-11-16T03:28:48" +ik[7118] = 4.06 +il[7118] = 54 +im[7118] = 0.494 +ij[7118] = 11 +id[7119] = "2448-11-18T11:02:07" +ik[7119] = 0.5723 +il[7119] = 30 +im[7119] = 0.5723 +ij[7119] = 2 +id[7120] = "2448-12-06T15:59:41" +ik[7120] = 42.96 +il[7120] = 51 +im[7120] = 0.1731 +ij[7120] = 7.1549 +id[7121] = "2449-01-07T02:09:28" +ik[7121] = 74.38 +il[7121] = 113 +im[7121] = 0.0881 +ij[7121] = 14 +id[7122] = "2449-01-22T18:08:00" +ik[7122] = 1.791 +il[7122] = 150 +im[7122] = 0.0752 +ij[7122] = 27.1 +id[7123] = "2449-01-22T23:23:42" +ik[7123] = 3.651 +il[7123] = 151 +im[7123] = 0.0848 +ij[7123] = 28.7 +id[7124] = "2449-01-22T23:26:00" +ik[7124] = 3.651 +il[7124] = 151 +im[7124] = 0.0849 +ij[7124] = 28.7 +id[7125] = "2449-01-26T00:17:47" +ik[7125] = 90 +il[7125] = 159 +im[7125] = 0.1852 +ij[7125] = 5 +id[7126] = "2449-03-16T02:40:54" +ik[7126] = 1.953 +il[7126] = -47 +im[7126] = 0.1373 +ij[7126] = 27.3 +id[7127] = "2449-03-27T03:34:50" +ik[7127] = 1.146 +il[7127] = -13 +im[7127] = 0.1203 +ij[7127] = 28.6 +id[7128] = "2449-04-03T14:40:54" +ik[7128] = 0.106 +il[7128] = 10 +im[7128] = 0.0377 +ij[7128] = 27.5 +id[7129] = "2449-04-14T20:14:13" +ik[7129] = 53.986 +il[7129] = 45 +im[7129] = 0.1151 +ij[7129] = 8 +id[7130] = "2449-05-18T15:14:29" +ik[7130] = 3.81 +il[7130] = 149 +im[7130] = 0.0396 +ij[7130] = 27.6 +id[7131] = "2449-05-20T06:36:34" +ik[7131] = 0.02 +il[7131] = 154 +im[7131] = 0.0042 +ij[7131] = 28.8 +id[7132] = "2449-06-20T08:29:36" +ik[7132] = 2.426 +il[7132] = -112 +im[7132] = 0.0221 +ij[7132] = 28.1 +id[7133] = "2449-06-25T15:21:31" +ik[7133] = 5.424 +il[7133] = -96 +im[7133] = 0.0923 +ij[7133] = 27.2 +id[7134] = "2449-07-16T23:42:08" +ik[7134] = 0.033 +il[7134] = -31 +im[7134] = 0.0403 +ij[7134] = 28.1 +id[7135] = "2449-09-02T04:52:19" +ik[7135] = 1.39 +il[7135] = 93 +im[7135] = 0.0177 +ij[7135] = 12 +id[7136] = "2449-11-09T09:40:54" +ik[7136] = 3.994 +il[7136] = 119 +im[7136] = 0.0952 +ij[7136] = 27.4 +id[7137] = "2449-11-23T17:31:37" +ik[7137] = 0.7 +il[7137] = 163 +im[7137] = 0.0874 +ij[7137] = 28.7 +id[7138] = "2449-12-14T10:43:32" +ik[7138] = 0.437 +il[7138] = -134 +im[7138] = 0.0658 +ij[7138] = 28.4 +id[7139] = "2450-01-03T08:18:40" +ik[7139] = 0.444 +il[7139] = -73 +im[7139] = 0.0498 +ij[7139] = 27.3 +id[7140] = "2450-01-21T08:40:00" +ik[7140] = 1.138 +il[7140] = -17 +im[7140] = 0.0922 +ij[7140] = 27.5 +id[7141] = "2450-01-29T14:12:20" +ik[7141] = 0.495 +il[7141] = 9 +im[7141] = 0.0416 +ij[7141] = 28.6 +id[7142] = "2450-01-31T08:12:28" +ik[7142] = 53.676 +il[7142] = 14 +im[7142] = 0.0076 +ij[7142] = 9 +id[7143] = "2450-03-08T00:44:30" +ik[7143] = 1.32 +il[7143] = 126 +im[7143] = 0.1302 +ij[7143] = 27.6 +id[7144] = "2450-03-12T23:21:07" +ik[7144] = 2.778 +il[7144] = 141 +im[7144] = 0.1313 +ij[7144] = 28.8 +id[7145] = "2450-04-16T07:09:05" +ik[7145] = 90 +il[7145] = -112 +im[7145] = 0.0142 +ij[7145] = 6 +id[7146] = "2450-04-19T23:54:40" +ik[7146] = 0.976 +il[7146] = -102 +im[7146] = 0.1723 +ij[7146] = 27.2 +id[7147] = "2450-06-02T02:09:55" +ik[7147] = 0 +il[7147] = 3 +im[7147] = 0.264 +ij[7147] = 13 +id[7148] = "2450-06-18T11:36:49" +ik[7148] = 0.5198 +il[7148] = 36 +im[7148] = 0.5199 +ij[7148] = 2 +id[7149] = "2450-06-24T01:07:40" +ik[7149] = 1.83 +il[7149] = 50 +im[7149] = 0.1653 +ij[7149] = 11 +id[7150] = "2450-07-18T01:12:30" +ik[7150] = 45.96 +il[7150] = 61 +im[7150] = 0.3142 +ij[7150] = 7.1654 +id[7151] = "2450-08-18T21:14:15" +ik[7151] = 77.79 +il[7151] = 125 +im[7151] = 0.0611 +ij[7151] = 14 +id[7152] = "2450-09-02T06:36:22" +ik[7152] = 90 +il[7152] = 162 +im[7152] = 0.0386 +ij[7152] = 5 +id[7153] = "2450-11-14T11:13:49" +ik[7153] = 54.057 +il[7153] = 26 +im[7153] = 0.0714 +ij[7153] = 8 +id[7154] = "2450-12-05T12:59:11" +ik[7154] = 0.384 +il[7154] = 92 +im[7154] = 0.0769 +ij[7154] = 28.5 +id[7155] = "2451-01-02T05:54:40" +ik[7155] = 4.501 +il[7155] = 178 +im[7155] = 0.0237 +ij[7155] = 27.1 +id[7156] = "2451-01-09T14:16:22" +ik[7156] = 0.839 +il[7156] = -159 +im[7156] = 0.0969 +ij[7156] = 28.7 +id[7157] = "2451-01-16T19:15:53" +ik[7157] = 2.671 +il[7157] = -136 +im[7157] = 0.0148 +ij[7157] = 28.1 +id[7158] = "2451-02-17T01:00:00" +ik[7158] = 0.555 +il[7158] = -39 +im[7158] = 0.0367 +ij[7158] = 27.3 +id[7159] = "2451-02-23T04:00:20" +ik[7159] = 4.393 +il[7159] = -20 +im[7159] = 0.0926 +ij[7159] = 28.1 +id[7160] = "2451-03-06T15:11:07" +ik[7160] = 0.824 +il[7160] = 4 +im[7160] = 0.0609 +ij[7160] = 27.5 +id[7161] = "2451-04-16T14:25:26" +ik[7161] = 1.15 +il[7161] = 118 +im[7161] = 0.0036 +ij[7161] = 12 +id[7162] = "2451-05-26T03:06:13" +ik[7162] = 4.411 +il[7162] = 55 +im[7162] = 0.0846 +ij[7162] = 27.2 +id[7163] = "2451-07-27T13:47:16" +ik[7163] = 3.893 +il[7163] = -111 +im[7163] = 0.0646 +ij[7163] = 28.1 +id[7164] = "2451-09-01T13:25:23" +ik[7164] = 54.347 +il[7164] = -1 +im[7164] = 0.0672 +ij[7164] = 9 +id[7165] = "2451-10-14T23:00:53" +ik[7165] = 1.989 +il[7165] = 131 +im[7165] = 0.0194 +ij[7165] = 27.4 +id[7166] = "2451-11-02T02:25:32" +ik[7166] = 3.17 +il[7166] = -175 +im[7166] = 0.1359 +ij[7166] = 28.5 +id[7167] = "2451-11-08T02:18:53" +ik[7167] = 2.944 +il[7167] = -155 +im[7167] = 0.1716 +ij[7167] = 28.7 +id[7168] = "2451-11-19T04:19:16" +ik[7168] = 90 +il[7168] = -121 +im[7168] = 0.2149 +ij[7168] = 6 +id[7169] = "2451-12-25T20:24:54" +ik[7169] = 0.536 +il[7169] = -33 +im[7169] = 0.0912 +ij[7169] = 27.3 +id[7170] = "2452-01-08T21:14:42" +ik[7170] = 0 +il[7170] = -7 +im[7170] = 0.0784 +ij[7170] = 13 +id[7171] = "2452-01-29T20:19:40" +ik[7171] = 6.87 +il[7171] = 48 +im[7171] = 0.5465 +ij[7171] = 11 +id[7172] = "2452-01-29T22:08:37" +ik[7172] = 0.5465 +il[7172] = 37 +im[7172] = 0.5466 +ij[7172] = 2 +id[7173] = "2452-02-19T20:17:17" +ik[7173] = 41.96 +il[7173] = 60 +im[7173] = 0.1619 +ij[7173] = 7.1566 +id[7174] = "2452-03-14T15:28:48" +ik[7174] = 5.23 +il[7174] = 105 +im[7174] = 0.1892 +ij[7174] = 28.4 +id[7175] = "2452-03-22T17:35:04" +ik[7175] = 73.85 +il[7175] = 123 +im[7175] = 0.2321 +ij[7175] = 14 +id[7176] = "2452-04-10T12:33:43" +ik[7176] = 90 +il[7176] = 170 +im[7176] = 0.1998 +ij[7176] = 5 +id[7177] = "2452-04-12T03:32:00" +ik[7177] = 1.421 +il[7177] = 175 +im[7177] = 0.1593 +ij[7177] = 27.5 +id[7178] = "2452-05-10T12:18:25" +ik[7178] = 1.05 +il[7178] = -96 +im[7178] = 0.1505 +ij[7178] = 28.6 +id[7179] = "2452-05-31T02:56:16" +ik[7179] = 4.16 +il[7179] = -33 +im[7179] = 0.0234 +ij[7179] = 27.6 +id[7180] = "2452-06-07T07:06:05" +ik[7180] = 0.349 +il[7180] = -11 +im[7180] = 0.1372 +ij[7180] = 28.8 +id[7181] = "2452-06-24T17:44:58" +ik[7181] = 54.424 +il[7181] = 42 +im[7181] = 0.0935 +ij[7181] = 8 +id[7182] = "2452-07-09T14:31:44" +ik[7182] = 6.095 +il[7182] = 88 +im[7182] = 0.1052 +ij[7182] = 27.2 +id[7183] = "2452-09-04T07:14:09" +ik[7183] = 1.097 +il[7183] = -99 +im[7183] = 0.0882 +ij[7183] = 28.1 +id[7184] = "2452-11-12T10:30:43" +ik[7184] = 0.71 +il[7184] = 94 +im[7184] = 0.0119 +ij[7184] = 12 +id[7185] = "2452-12-19T04:07:14" +ik[7185] = 1.245 +il[7185] = 32 +im[7185] = 0.0894 +ij[7185] = 28.7 +id[7186] = "2453-01-03T23:27:36" +ik[7186] = 0.684 +il[7186] = 69 +im[7186] = 0.0874 +ij[7186] = 28.5 +id[7187] = "2453-01-17T09:09:47" +ik[7187] = 0.118 +il[7187] = 110 +im[7187] = 0.0842 +ij[7187] = 27.3 +id[7188] = "2453-02-04T00:59:33" +ik[7188] = 1.09 +il[7188] = 164 +im[7188] = 0.0928 +ij[7188] = 27.5 +id[7189] = "2453-03-15T03:03:01" +ik[7189] = 1.95 +il[7189] = -74 +im[7189] = 0.0358 +ij[7189] = 28.6 +id[7190] = "2453-03-20T03:59:12" +ik[7190] = 2.29 +il[7190] = -58 +im[7190] = 0.1016 +ij[7190] = 27.6 +id[7191] = "2453-03-30T01:04:48" +ik[7191] = 1.982 +il[7191] = -27 +im[7191] = 0.0563 +ij[7191] = 28.8 +id[7192] = "2453-04-14T13:57:26" +ik[7192] = 54.313 +il[7192] = 22 +im[7192] = 0.0473 +ij[7192] = 9 +id[7193] = "2453-04-27T04:57:46" +ik[7193] = 2.906 +il[7193] = 61 +im[7193] = 0.0178 +ij[7193] = 27.2 +id[7194] = "2453-06-23T08:18:05" +ik[7194] = 90 +il[7194] = -123 +im[7194] = 0.0846 +ij[7194] = 6 +id[7195] = "2453-08-10T17:35:31" +ik[7195] = 0 +il[7195] = -4 +im[7195] = 0.2741 +ij[7195] = 13 +id[7196] = "2453-08-28T08:24:11" +ik[7196] = 0.5134 +il[7196] = 32 +im[7196] = 0.5134 +ij[7196] = 2 +id[7197] = "2453-09-01T22:12:00" +ik[7197] = 8.49 +il[7197] = 43 +im[7197] = 0.2291 +ij[7197] = 11 +id[7198] = "2453-09-23T16:38:06" +ik[7198] = 43.96 +il[7198] = 52 +im[7198] = 0.4407 +ij[7198] = 7.1635 +id[7199] = "2453-10-26T14:16:49" +ik[7199] = 76.86 +il[7199] = 117 +im[7199] = 0.1468 +ij[7199] = 14 +id[7200] = "2453-11-11T15:35:56" +ik[7200] = 90 +il[7200] = 157 +im[7200] = 0.0361 +ij[7200] = 5 +id[7201] = "2454-01-15T05:35:06" +ik[7201] = 3.646 +il[7201] = -3 +im[7201] = 0.0837 +ij[7201] = 27.1 +id[7202] = "2454-01-27T12:53:27" +ik[7202] = 53.718 +il[7202] = 36 +im[7202] = 0.039 +ij[7202] = 8 +id[7203] = "2454-02-02T08:40:50" +ik[7203] = 1.326 +il[7203] = 54 +im[7203] = 0.1222 +ij[7203] = 28.7 +id[7204] = "2454-03-03T04:47:33" +ik[7204] = 1.036 +il[7204] = 144 +im[7204] = 0.1008 +ij[7204] = 27.3 +id[7205] = "2454-03-11T15:12:14" +ik[7205] = 0.255 +il[7205] = 170 +im[7205] = 0.0323 +ij[7205] = 28.5 +id[7206] = "2454-03-20T23:44:53" +ik[7206] = 0.586 +il[7206] = -161 +im[7206] = 0.092 +ij[7206] = 27.5 +id[7207] = "2454-03-29T18:27:56" +ik[7207] = 0.69 +il[7207] = -134 +im[7207] = 0.044 +ij[7207] = 28.4 +id[7208] = "2454-04-24T14:27:18" +ik[7208] = 2.268 +il[7208] = -55 +im[7208] = 0.0376 +ij[7208] = 28.1 +id[7209] = "2454-05-04T00:34:05" +ik[7209] = 3.48 +il[7209] = -26 +im[7209] = 0.0885 +ij[7209] = 27.6 +id[7210] = "2454-05-06T18:01:43" +ik[7210] = 1.162 +il[7210] = -18 +im[7210] = 0.0809 +ij[7210] = 28.6 +id[7211] = "2454-05-14T17:10:27" +ik[7211] = 0.588 +il[7211] = 6 +im[7211] = 0.0517 +ij[7211] = 28.8 +id[7212] = "2454-06-24T13:01:55" +ik[7212] = 0.31 +il[7212] = 108 +im[7212] = 0.0336 +ij[7212] = 12 +id[7213] = "2454-10-26T05:53:20" +ik[7213] = 3.257 +il[7213] = -54 +im[7213] = 0.0453 +ij[7213] = 27.4 +id[7214] = "2454-11-13T09:45:01" +ik[7214] = 53.707 +il[7214] = 1 +im[7214] = 0.091 +ij[7214] = 9 +id[7215] = "2454-11-28T11:46:36" +ik[7215] = 1.688 +il[7215] = 47 +im[7215] = 0.12 +ij[7215] = 28.7 +id[7216] = "2454-12-21T21:04:26" +ik[7216] = 0.822 +il[7216] = 119 +im[7216] = 0.0418 +ij[7216] = 27.3 +id[7217] = "2455-01-10T08:51:33" +ik[7217] = 0.881 +il[7217] = 180 +im[7217] = 0.0777 +ij[7217] = 27.5 +id[7218] = "2455-02-02T05:07:02" +ik[7218] = 90 +il[7218] = -108 +im[7218] = 0.1848 +ij[7218] = 6 +id[7219] = "2455-02-04T00:49:58" +ik[7219] = 1.924 +il[7219] = -104 +im[7219] = 0.1256 +ij[7219] = 28.5 +id[7220] = "2455-03-11T13:06:54" +ik[7220] = 3.83 +il[7220] = -20 +im[7220] = 0.2819 +ij[7220] = 27.6 +id[7221] = "2455-03-19T13:08:31" +ik[7221] = 4.78 +il[7221] = -9 +im[7221] = 0.1525 +ij[7221] = 27.6 +id[7222] = "2455-03-21T14:17:16" +ik[7222] = 0 +il[7222] = -5 +im[7222] = 0.037 +ij[7222] = 13 +id[7223] = "2455-04-13T03:38:52" +ik[7223] = 7.34 +il[7223] = 54 +im[7223] = 0.3861 +ij[7223] = 11 +id[7224] = "2455-04-23T12:13:21" +ik[7224] = 0.5128 +il[7224] = 51 +im[7224] = 0.5129 +ij[7224] = 2 +id[7225] = "2455-05-03T19:53:55" +ik[7225] = 43.23 +il[7225] = 64 +im[7225] = 0.296 +ij[7225] = 7.1628 +id[7226] = "2455-06-04T13:40:19" +ik[7226] = 4.06 +il[7226] = 126 +im[7226] = 0.248 +ij[7226] = 27.6 +id[7227] = "2455-06-06T05:43:38" +ik[7227] = 76.64 +il[7227] = 130 +im[7227] = 0.2196 +ij[7227] = 14 +id[7228] = "2455-06-20T11:59:19" +ik[7228] = 0.276 +il[7228] = 167 +im[7228] = 0.2147 +ij[7228] = 28.6 +id[7229] = "2455-06-21T12:23:11" +ik[7229] = 1.039 +il[7229] = 171 +im[7229] = 0.1975 +ij[7229] = 28.8 +id[7230] = "2455-06-22T12:11:37" +ik[7230] = 90 +il[7230] = 173 +im[7230] = 0.1729 +ij[7230] = 5 +id[7231] = "2455-09-02T14:15:16" +ik[7231] = 54.474 +il[7231] = 32 +im[7231] = 0.1186 +ij[7231] = 8 +id[7232] = "2455-10-30T10:12:00" +ik[7232] = 6.214 +il[7232] = -150 +im[7232] = 0.0968 +ij[7232] = 28.1 +id[7233] = "2456-01-28T03:00:00" +ik[7233] = 1.05 +il[7233] = 108 +im[7233] = 0.0731 +ij[7233] = 12 +id[7234] = "2456-04-02T15:02:44" +ik[7234] = 0.578 +il[7234] = 122 +im[7234] = 0.0697 +ij[7234] = 28.5 +id[7235] = "2456-04-03T05:48:14" +ik[7235] = 2.8 +il[7235] = 124 +im[7235] = 0.0622 +ij[7235] = 27.6 +id[7236] = "2456-04-05T01:13:17" +ik[7236] = 0.489 +il[7236] = 130 +im[7236] = 0.0345 +ij[7236] = 28.4 +id[7237] = "2456-04-18T00:21:44" +ik[7237] = 1.58 +il[7237] = 171 +im[7237] = 0.0794 +ij[7237] = 28.8 +id[7238] = "2456-04-27T06:27:04" +ik[7238] = 2.264 +il[7238] = -160 +im[7238] = 0.0796 +ij[7238] = 28.6 +id[7239] = "2456-05-04T01:03:30" +ik[7239] = 4.91 +il[7239] = -139 +im[7239] = 0.0569 +ij[7239] = 28.1 +id[7240] = "2456-05-10T06:35:06" +ik[7240] = 3.793 +il[7240] = -120 +im[7240] = 0.0583 +ij[7240] = 27.2 +id[7241] = "2456-06-21T23:12:10" +ik[7241] = 54.669 +il[7241] = 13 +im[7241] = 0.0195 +ij[7241] = 9 +id[7242] = "2456-09-01T20:49:56" +ik[7242] = 90 +il[7242] = -128 +im[7242] = 0.1114 +ij[7242] = 6 +id[7243] = "2456-10-22T05:44:05" +ik[7243] = 0 +il[7243] = -3 +im[7243] = 0.4166 +ij[7243] = 13 +id[7244] = "2456-11-13T16:49:26" +ik[7244] = 4.4 +il[7244] = 56 +im[7244] = 0.1278 +ij[7244] = 11 +id[7245] = "2456-11-19T14:07:22" +ik[7245] = 0.5654 +il[7245] = 36 +im[7245] = 0.5655 +ij[7245] = 2 +id[7246] = "2456-12-04T04:46:40" +ik[7246] = 42.96 +il[7246] = 53 +im[7246] = 0.4133 +ij[7246] = 7.1551 +id[7247] = "2457-01-04T16:01:26" +ik[7247] = 74.43 +il[7247] = 115 +im[7247] = 0.1362 +ij[7247] = 14 +id[7248] = "2457-01-22T20:41:19" +ik[7248] = 1.89 +il[7248] = 160 +im[7248] = 0.0234 +ij[7248] = 27.1 +id[7249] = "2457-01-23T12:52:18" +ik[7249] = 90 +il[7249] = 161 +im[7249] = 0.0421 +ij[7249] = 5 +id[7250] = "2457-02-24T10:59:31" +ik[7250] = 2.202 +il[7250] = -99 +im[7250] = 0.1011 +ij[7250] = 28.7 +id[7251] = "2457-03-15T18:59:06" +ik[7251] = 1.91 +il[7251] = -38 +im[7251] = 0.143 +ij[7251] = 27.3 +id[7252] = "2457-04-03T05:53:20" +ik[7252] = 0.128 +il[7252] = 19 +im[7252] = 0.0846 +ij[7252] = 27.5 +id[7253] = "2457-04-12T09:41:31" +ik[7253] = 53.969 +il[7253] = 47 +im[7253] = 0.1046 +ij[7253] = 8 +id[7254] = "2457-05-18T05:12:15" +ik[7254] = 3.8 +il[7254] = 157 +im[7254] = 0.0708 +ij[7254] = 27.6 +id[7255] = "2457-05-29T22:55:29" +ik[7255] = 2.135 +il[7255] = -167 +im[7255] = 0.102 +ij[7255] = 28.1 +id[7256] = "2457-06-03T04:27:33" +ik[7256] = 0.291 +il[7256] = -154 +im[7256] = 0.0635 +ij[7256] = 28.8 +id[7257] = "2457-06-07T23:19:32" +ik[7257] = 0.181 +il[7257] = -139 +im[7257] = 0.0281 +ij[7257] = 28.5 +id[7258] = "2457-06-15T20:21:59" +ik[7258] = 2.184 +il[7258] = -115 +im[7258] = 0.0788 +ij[7258] = 28.1 +id[7259] = "2457-06-18T21:00:51" +ik[7259] = 0.848 +il[7259] = -106 +im[7259] = 0.0358 +ij[7259] = 28.6 +id[7260] = "2457-06-25T04:35:17" +ik[7260] = 5.405 +il[7260] = -87 +im[7260] = 0.0736 +ij[7260] = 27.2 +id[7261] = "2457-08-30T21:54:43" +ik[7261] = 1.37 +il[7261] = 96 +im[7261] = 0.0729 +ij[7261] = 12 +id[7262] = "2457-11-08T23:08:53" +ik[7262] = 3.978 +il[7262] = 128 +im[7262] = 0.0876 +ij[7262] = 27.4 +id[7263] = "2457-12-22T01:58:04" +ik[7263] = 1.077 +il[7263] = -101 +im[7263] = 0.0573 +ij[7263] = 28.7 +id[7264] = "2458-01-02T22:26:13" +ik[7264] = 0.452 +il[7264] = -64 +im[7264] = 0.0112 +ij[7264] = 27.3 +id[7265] = "2458-01-20T23:17:20" +ik[7265] = 1.134 +il[7265] = -8 +im[7265] = 0.0654 +ij[7265] = 27.5 +id[7266] = "2458-01-28T19:21:06" +ik[7266] = 53.661 +il[7266] = 16 +im[7266] = 0.0928 +ij[7266] = 9 +id[7267] = "2458-03-07T17:42:13" +ik[7267] = 1.27 +il[7267] = 135 +im[7267] = 0.0886 +ij[7267] = 27.6 +id[7268] = "2458-03-28T07:47:08" +ik[7268] = 4.012 +il[7268] = -161 +im[7268] = 0.1738 +ij[7268] = 28.8 +id[7269] = "2458-04-14T00:22:14" +ik[7269] = 90 +il[7269] = -109 +im[7269] = 0.1424 +ij[7269] = 6 +id[7270] = "2458-04-20T03:59:33" +ik[7270] = 0.863 +il[7270] = -93 +im[7270] = 0.1343 +ij[7270] = 27.2 +id[7271] = "2458-04-22T12:47:39" +ik[7271] = 2.106 +il[7271] = -87 +im[7271] = 0.217 +ij[7271] = 28.4 +id[7272] = "2458-04-29T08:59:25" +ik[7272] = 5.406 +il[7272] = -72 +im[7272] = 0.1766 +ij[7272] = 28.6 +id[7273] = "2458-05-12T16:11:16" +ik[7273] = 4.219 +il[7273] = -42 +im[7273] = 0.2266 +ij[7273] = 28.5 +id[7274] = "2458-05-30T16:01:53" +ik[7274] = 0 +il[7274] = -5 +im[7274] = 0.0589 +ij[7274] = 13 +id[7275] = "2458-06-10T18:35:08" +ik[7275] = 0.148 +il[7275] = 13 +im[7275] = 0.2304 +ij[7275] = 27.9 +id[7276] = "2458-06-19T17:22:47" +ik[7276] = 0.5334 +il[7276] = 26 +im[7276] = 0.5334 +ij[7276] = 2 +id[7277] = "2458-06-21T18:17:16" +ik[7277] = 1.51 +il[7277] = 30 +im[7277] = 0.4758 +ij[7277] = 11 +id[7278] = "2458-06-24T16:03:04" +ik[7278] = 1.789 +il[7278] = 39 +im[7278] = 0.23 +ij[7278] = 28.5 +id[7279] = "2458-07-09T21:30:14" +ik[7279] = 4.48 +il[7279] = 55 +im[7279] = 0.0722 +ij[7279] = 28.6 +id[7280] = "2458-07-13T15:04:27" +ik[7280] = 43.96 +il[7280] = 61 +im[7280] = 0.3613 +ij[7280] = 7.1663 +id[7281] = "2458-07-25T13:15:53" +ik[7281] = 4.396 +il[7281] = 81 +im[7281] = 0.1333 +ij[7281] = 28.5 +id[7282] = "2458-08-16T13:32:15" +ik[7282] = 77.9 +il[7282] = 128 +im[7282] = 0.2214 +ij[7282] = 14 +id[7283] = "2458-08-30T23:11:28" +ik[7283] = 90 +il[7283] = 165 +im[7283] = 0.1632 +ij[7283] = 5 +id[7284] = "2458-11-12T01:27:20" +ik[7284] = 54.074 +il[7284] = 29 +im[7284] = 0.122 +ij[7284] = 8 +id[7285] = "2459-01-01T19:38:39" +ik[7285] = 4.524 +il[7285] = -173 +im[7285] = 0.0233 +ij[7285] = 27.1 +id[7286] = "2459-02-06T21:35:51" +ik[7286] = 0.094 +il[7286] = -61 +im[7286] = 0.0736 +ij[7286] = 28.7 +id[7287] = "2459-02-16T14:14:39" +ik[7287] = 0.544 +il[7287] = -31 +im[7287] = 0.0085 +ij[7287] = 27.3 +id[7288] = "2459-03-06T04:23:33" +ik[7288] = 0.829 +il[7288] = 13 +im[7288] = 0.0317 +ij[7288] = 27.5 +id[7289] = "2459-04-14T04:32:09" +ik[7289] = 1.19 +il[7289] = 121 +im[7289] = 0.0613 +ij[7289] = 12 +id[7290] = "2459-05-25T16:14:39" +ik[7290] = 4.395 +il[7290] = 64 +im[7290] = 0.0851 +ij[7290] = 27.2 +id[7291] = "2459-06-09T11:42:51" +ik[7291] = 1.697 +il[7291] = 110 +im[7291] = 0.0922 +ij[7291] = 28.6 +id[7292] = "2459-06-12T06:41:19" +ik[7292] = 0.036 +il[7292] = 119 +im[7292] = 0.0827 +ij[7292] = 27.9 +id[7293] = "2459-07-04T17:21:33" +ik[7293] = 0.802 +il[7293] = -171 +im[7293] = 0.0494 +ij[7293] = 28.5 +id[7294] = "2459-07-15T00:04:19" +ik[7294] = 2.844 +il[7294] = -139 +im[7294] = 0.0602 +ij[7294] = 28.1 +id[7295] = "2459-08-30T05:29:08" +ik[7295] = 54.367 +il[7295] = 2 +im[7295] = 0.0306 +ij[7295] = 9 +id[7296] = "2459-10-14T17:18:39" +ik[7296] = 1.928 +il[7296] = 140 +im[7296] = 0.0336 +ij[7296] = 27.4 +id[7297] = "2459-11-16T15:29:45" +ik[7297] = 90 +il[7297] = -119 +im[7297] = 0.1176 +ij[7297] = 6 +id[7298] = "2459-12-18T20:34:39" +ik[7298] = 1.095 +il[7298] = -40 +im[7298] = 0.3249 +ij[7298] = 28.7 +id[7299] = "2459-12-30T12:27:33" +ik[7299] = 1.541 +il[7299] = -18 +im[7299] = 0.1735 +ij[7299] = 27.3 +id[7300] = "2460-01-05T13:32:42" +ik[7300] = 0 +il[7300] = -8 +im[7300] = 0.4072 +ij[7300] = 13 +id[7301] = "2460-01-11T04:21:19" +ik[7301] = 4.293 +il[7301] = 0 +im[7301] = 0.0792 +ij[7301] = 27.3 +id[7302] = "2460-01-17T14:58:55" +ik[7302] = 0.5481 +il[7302] = 8 +im[7302] = 0.5481 +ij[7302] = 2 +id[7303] = "2460-01-27T08:55:40" +ik[7303] = 6.61 +il[7303] = 33 +im[7303] = 0.3484 +ij[7303] = 11 +id[7304] = "2460-02-17T13:36:17" +ik[7304] = 43 +il[7304] = 63 +im[7304] = 0.2294 +ij[7304] = 7.156 +id[7305] = "2460-03-08T05:35:48" +ik[7305] = 5.616 +il[7305] = 99 +im[7305] = 0.2384 +ij[7305] = 28.7 +id[7306] = "2460-03-20T00:24:53" +ik[7306] = 4.995 +il[7306] = 125 +im[7306] = 0.0287 +ij[7306] = 27.3 +id[7307] = "2460-03-20T04:01:04" +ik[7307] = 74.6 +il[7307] = 125 +im[7307] = 0.0369 +ij[7307] = 14 +id[7308] = "2460-04-08T01:25:55" +ik[7308] = 90 +il[7308] = 173 +im[7308] = 0.2029 +ij[7308] = 5 +id[7309] = "2460-04-12T03:02:13" +ik[7309] = 1.312 +il[7309] = -175 +im[7309] = 0.1984 +ij[7309] = 27.5 +id[7310] = "2460-05-30T19:05:01" +ik[7310] = 4.15 +il[7310] = -24 +im[7310] = 0.0316 +ij[7310] = 27.6 +id[7311] = "2460-06-21T19:39:04" +ik[7311] = 0.195 +il[7311] = 43 +im[7311] = 0.104 +ij[7311] = 28.8 +id[7312] = "2460-06-22T10:27:49" +ik[7312] = 54.414 +il[7312] = 45 +im[7312] = 0.109 +ij[7312] = 8 +id[7313] = "2460-07-09T04:44:36" +ik[7313] = 6.068 +il[7313] = 96 +im[7313] = 0.1121 +ij[7313] = 27.2 +id[7314] = "2460-07-30T22:27:41" +ik[7314] = 0.091 +il[7314] = 162 +im[7314] = 0.0108 +ij[7314] = 28.6 +id[7315] = "2460-08-23T03:40:27" +ik[7315] = 1.195 +il[7315] = -127 +im[7315] = 0.0947 +ij[7315] = 28.4 +id[7316] = "2460-09-12T11:41:25" +ik[7316] = 0.059 +il[7316] = -64 +im[7316] = 0.0358 +ij[7316] = 28.5 +id[7317] = "2460-11-09T23:48:28" +ik[7317] = 0.77 +il[7317] = 96 +im[7317] = 0.0568 +ij[7317] = 12 +id[7318] = "2461-01-15T19:34:27" +ik[7318] = 0.729 +il[7318] = 115 +im[7318] = 0.0422 +ij[7318] = 28.7 +id[7319] = "2461-01-16T22:27:32" +ik[7319] = 0.127 +il[7319] = 119 +im[7319] = 0.0585 +ij[7319] = 27.3 +id[7320] = "2461-02-03T14:29:46" +ik[7320] = 1.09 +il[7320] = 173 +im[7320] = 0.0955 +ij[7320] = 27.5 +id[7321] = "2461-02-07T01:31:00" +ik[7321] = 6.097 +il[7321] = -176 +im[7321] = 0.0886 +ij[7321] = 28.1 +id[7322] = "2461-03-19T18:00:55" +ik[7322] = 2.27 +il[7322] = -49 +im[7322] = 0.0868 +ij[7322] = 27.6 +id[7323] = "2461-04-12T05:39:50" +ik[7323] = 54.291 +il[7323] = 24 +im[7323] = 0.0473 +ij[7323] = 9 +id[7324] = "2461-04-13T02:23:42" +ik[7324] = 2.729 +il[7324] = 27 +im[7324] = 0.0273 +ij[7324] = 28.8 +id[7325] = "2461-04-26T20:34:12" +ik[7325] = 2.868 +il[7325] = 70 +im[7325] = 0.0401 +ij[7325] = 27.2 +id[7326] = "2461-06-03T16:26:15" +ik[7326] = 2.489 +il[7326] = -173 +im[7326] = 0.165 +ij[7326] = 28.6 +id[7327] = "2461-06-21T01:39:11" +ik[7327] = 90 +il[7327] = -120 +im[7327] = 0.1974 +ij[7327] = 6 +id[7328] = "2461-08-08T04:01:31" +ik[7328] = 0 +il[7328] = -2 +im[7328] = 0.0617 +ij[7328] = 13 +id[7329] = "2461-08-29T07:21:21" +ik[7329] = 0.5084 +il[7329] = 44 +im[7329] = 0.5085 +ij[7329] = 2 +id[7330] = "2461-08-30T13:04:48" +ik[7330] = 8.41 +il[7330] = 46 +im[7330] = 0.4849 +ij[7330] = 11 +id[7331] = "2461-09-21T04:40:16" +ik[7331] = 44.03 +il[7331] = 54 +im[7331] = 0.2945 +ij[7331] = 7.1637 +id[7332] = "2461-10-24T07:23:00" +ik[7332] = 77.14 +il[7332] = 120 +im[7332] = 0.2549 +ij[7332] = 14 +id[7333] = "2461-11-09T06:24:53" +ik[7333] = 90 +il[7333] = 160 +im[7333] = 0.1855 +ij[7333] = 5 +id[7334] = "2461-11-17T15:26:03" +ik[7334] = 0.158 +il[7334] = -175 +im[7334] = 0.1211 +ij[7334] = 28.5 +id[7335] = "2462-01-14T20:57:45" +ik[7335] = 3.684 +il[7335] = 6 +im[7335] = 0.0362 +ij[7335] = 27.1 +id[7336] = "2462-01-25T00:30:31" +ik[7336] = 53.721 +il[7336] = 38 +im[7336] = 0.0603 +ij[7336] = 8 +id[7337] = "2462-03-02T18:44:26" +ik[7337] = 1.018 +il[7337] = 152 +im[7337] = 0.0731 +ij[7337] = 27.3 +id[7338] = "2462-03-03T17:19:06" +ik[7338] = 0.257 +il[7338] = 155 +im[7338] = 0.0856 +ij[7338] = 28.7 +id[7339] = "2462-03-08T11:22:50" +ik[7339] = 1.602 +il[7339] = 170 +im[7339] = 0.1004 +ij[7339] = 28.1 +id[7340] = "2462-03-20T13:21:46" +ik[7340] = 0.595 +il[7340] = -158 +im[7340] = 0.0938 +ij[7340] = 27.5 +id[7341] = "2462-05-03T13:44:49" +ik[7341] = 3.47 +il[7341] = -18 +im[7341] = 0.073 +ij[7341] = 27.6 +id[7342] = "2462-06-22T07:33:36" +ik[7342] = 0.26 +il[7342] = 112 +im[7342] = 0.0819 +ij[7342] = 12 +id[7343] = "2462-08-14T13:49:26" +ik[7343] = 0.525 +il[7343] = 94 +im[7343] = 0.048 +ij[7343] = 28.1 +id[7344] = "2462-09-21T16:15:53" +ik[7344] = 4.824 +il[7344] = -149 +im[7344] = 0.0789 +ij[7344] = 28.1 +id[7345] = "2462-10-02T14:26:09" +ik[7345] = 0.761 +il[7345] = -116 +im[7345] = 0.1034 +ij[7345] = 28.4 +id[7346] = "2462-10-16T09:10:48" +ik[7346] = 1.38 +il[7346] = -74 +im[7346] = 0.0875 +ij[7346] = 28.5 +id[7347] = "2462-10-25T20:25:19" +ik[7347] = 3.231 +il[7347] = -46 +im[7347] = 0.011 +ij[7347] = 27.4 +id[7348] = "2462-11-10T21:25:39" +ik[7348] = 53.725 +il[7348] = 3 +im[7348] = 0.015 +ij[7348] = 9 +id[7349] = "2462-12-21T14:11:59" +ik[7349] = 0.829 +il[7349] = 129 +im[7349] = 0.0972 +ij[7349] = 27.3 +id[7350] = "2462-12-29T11:31:46" +ik[7350] = 1.131 +il[7350] = 153 +im[7350] = 0.1328 +ij[7350] = 28.7 +id[7351] = "2463-01-10T04:46:12" +ik[7351] = 0.849 +il[7351] = -170 +im[7351] = 0.0256 +ij[7351] = 27.5 +id[7352] = "2463-01-30T18:21:21" +ik[7352] = 90 +il[7352] = -106 +im[7352] = 0.2184 +ij[7352] = 6 +id[7353] = "2463-03-13T09:11:48" +ik[7353] = 4.77 +il[7353] = -6 +im[7353] = 0.3479 +ij[7353] = 27.6 +id[7354] = "2463-03-18T20:19:40" +ik[7354] = 0 +il[7354] = 19 +im[7354] = 0.3222 +ij[7354] = 13 +id[7355] = "2463-04-10T18:31:40" +ik[7355] = 7.53 +il[7355] = 42 +im[7355] = 0.5159 +ij[7355] = 11 +id[7356] = "2463-04-11T04:49:54" +ik[7356] = 0.5186 +il[7356] = 44 +im[7356] = 0.5187 +ij[7356] = 2 +id[7357] = "2463-05-01T19:22:14" +ik[7357] = 43.96 +il[7357] = 30 +im[7357] = 0.0392 +ij[7357] = 7.1623 +id[7358] = "2463-06-03T18:25:01" +ik[7358] = 76.92 +il[7358] = 132 +im[7358] = 0.2255 +ij[7358] = 14 +id[7359] = "2463-06-05T03:17:40" +ik[7359] = 4.13 +il[7359] = 136 +im[7359] = 0.2431 +ij[7359] = 27.6 +id[7360] = "2463-06-20T04:05:08" +ik[7360] = 90 +il[7360] = 175 +im[7360] = 0.2071 +ij[7360] = 5 +id[7361] = "2463-07-08T17:36:12" +ik[7361] = 1.139 +il[7361] = -128 +im[7361] = 0.1302 +ij[7361] = 28.8 +id[7362] = "2463-08-31T07:01:40" +ik[7362] = 54.481 +il[7362] = 35 +im[7362] = 0.1051 +ij[7362] = 8 +id[7363] = "2463-09-11T17:21:05" +ik[7363] = 0.711 +il[7363] = 70 +im[7363] = 0.0135 +ij[7363] = 28.6 +id[7364] = "2464-01-25T12:53:16" +ik[7364] = 1.01 +il[7364] = 110 +im[7364] = 0.0134 +ij[7364] = 12 +id[7365] = "2464-03-31T09:35:34" +ik[7365] = 4.04 +il[7365] = 125 +im[7365] = 0.0871 +ij[7365] = 28.1 +id[7366] = "2464-04-02T19:05:33" +ik[7366] = 2.79 +il[7366] = 133 +im[7366] = 0.0833 +ij[7366] = 27.6 +id[7367] = "2464-04-12T10:27:07" +ik[7367] = 3.381 +il[7367] = 163 +im[7367] = 0.0639 +ij[7367] = 28.1 +id[7368] = "2464-05-01T17:51:04" +ik[7368] = 2.114 +il[7368] = -136 +im[7368] = 0.0966 +ij[7368] = 28.8 +id[7369] = "2464-05-09T20:18:12" +ik[7369] = 3.771 +il[7369] = -111 +im[7369] = 0.0184 +ij[7369] = 27.2 +id[7370] = "2464-06-19T17:23:55" +ik[7370] = 54.667 +il[7370] = 16 +im[7370] = 0.0717 +ij[7370] = 9 +id[7371] = "2464-07-13T16:33:53" +ik[7371] = 0.139 +il[7371] = 90 +im[7371] = 0.1168 +ij[7371] = 28.6 +id[7372] = "2464-08-30T10:36:59" +ik[7372] = 90 +il[7372] = -126 +im[7372] = 0.2127 +ij[7372] = 6 +id[7373] = "2464-10-20T09:55:39" +ik[7373] = 0 +il[7373] = 2 +im[7373] = 0.2123 +ij[7373] = 13 +id[7374] = "2464-11-11T06:07:12" +ik[7374] = 4.73 +il[7374] = 59 +im[7374] = 0.3186 +ij[7374] = 11 +id[7375] = "2464-11-20T18:18:03" +ik[7375] = 0.5456 +il[7375] = 42 +im[7375] = 0.5456 +ij[7375] = 2 +id[7376] = "2464-12-01T15:06:15" +ik[7376] = 42.22 +il[7376] = 55 +im[7376] = 0.3619 +ij[7376] = 7.1556 +id[7377] = "2465-01-02T07:09:00" +ik[7377] = 73.88 +il[7377] = 118 +im[7377] = 0.2593 +ij[7377] = 14 +id[7378] = "2465-01-21T01:32:07" +ik[7378] = 90 +il[7378] = 164 +im[7378] = 0.1392 +ij[7378] = 5 +id[7379] = "2465-01-22T22:11:05" +ik[7379] = 1.985 +il[7379] = 170 +im[7379] = 0.0574 +ij[7379] = 27.1 +id[7380] = "2465-01-24T08:04:24" +ik[7380] = 3.411 +il[7380] = 174 +im[7380] = 0.0104 +ij[7380] = 28.4 +id[7381] = "2465-02-27T12:55:52" +ik[7381] = 1.634 +il[7381] = -79 +im[7381] = 0.1358 +ij[7381] = 28.5 +id[7382] = "2465-03-15T11:10:12" +ik[7382] = 1.868 +il[7382] = -29 +im[7382] = 0.1266 +ij[7382] = 27.3 +id[7383] = "2465-03-27T20:44:44" +ik[7383] = 0.415 +il[7383] = 9 +im[7383] = 0.0882 +ij[7383] = 28.7 +id[7384] = "2465-04-02T21:02:12" +ik[7384] = 0.151 +il[7384] = 28 +im[7384] = 0.1175 +ij[7384] = 27.5 +id[7385] = "2465-04-09T23:05:16" +ik[7385] = 53.954 +il[7385] = 50 +im[7385] = 0.0252 +ij[7385] = 8 +id[7386] = "2465-05-09T03:11:57" +ik[7386] = 4.78 +il[7386] = 140 +im[7386] = 0.0057 +ij[7386] = 28.1 +id[7387] = "2465-05-17T19:05:30" +ik[7387] = 3.79 +il[7387] = 166 +im[7387] = 0.0899 +ij[7387] = 27.6 +id[7388] = "2465-06-17T01:03:47" +ik[7388] = 0.6 +il[7388] = -102 +im[7388] = 0.0806 +ij[7388] = 28.8 +id[7389] = "2465-06-24T17:45:29" +ik[7389] = 5.386 +il[7389] = -79 +im[7389] = 0.0411 +ij[7389] = 27.2 +id[7390] = "2465-08-28T15:05:45" +ik[7390] = 1.36 +il[7390] = 99 +im[7390] = 0.0812 +ij[7390] = 12 +id[7391] = "2465-10-16T15:56:18" +ik[7391] = 5.539 +il[7391] = 67 +im[7391] = 0.0785 +ij[7391] = 28.1 +id[7392] = "2465-11-08T12:40:52" +ik[7392] = 3.961 +il[7392] = 137 +im[7392] = 0.0623 +ij[7392] = 27.4 +id[7393] = "2465-11-21T02:36:57" +ik[7393] = 2.146 +il[7393] = 175 +im[7393] = 0.0082 +ij[7393] = 28.1 +id[7394] = "2466-01-02T12:37:45" +ik[7394] = 0.46 +il[7394] = -55 +im[7394] = 0.0457 +ij[7394] = 27.3 +id[7395] = "2466-01-20T03:40:37" +ik[7395] = 0.419 +il[7395] = -2 +im[7395] = 0.0148 +ij[7395] = 28.5 +id[7396] = "2466-01-20T13:57:45" +ik[7396] = 1.131 +il[7396] = 1 +im[7396] = 0.0258 +ij[7396] = 27.5 +id[7397] = "2466-01-21T04:36:20" +ik[7397] = 0.714 +il[7397] = 2 +im[7397] = 0.0411 +ij[7397] = 28.7 +id[7398] = "2466-01-26T06:26:11" +ik[7398] = 53.647 +il[7398] = 18 +im[7398] = 0.122 +ij[7398] = 9 +id[7399] = "2466-03-07T10:59:22" +ik[7399] = 1.21 +il[7399] = 144 +im[7399] = 0.0373 +ij[7399] = 27.6 +id[7400] = "2466-04-11T17:30:57" +ik[7400] = 90 +il[7400] = -106 +im[7400] = 0.1993 +ij[7400] = 6 +id[7401] = "2466-04-14T06:30:23" +ik[7401] = 5.106 +il[7401] = -99 +im[7401] = 0.1814 +ij[7401] = 28.8 +id[7402] = "2466-04-20T09:35:32" +ik[7402] = 0.744 +il[7402] = -84 +im[7402] = 0.0784 +ij[7402] = 27.2 +id[7403] = "2466-05-28T07:09:27" +ik[7403] = 0 +il[7403] = 7 +im[7403] = 0.3398 +ij[7403] = 13 +id[7404] = "2466-06-19T11:25:26" +ik[7404] = 1.18 +il[7404] = 65 +im[7404] = 0.5087 +ij[7404] = 11 +id[7405] = "2466-06-20T20:23:36" +ik[7405] = 0.5346 +il[7405] = 41 +im[7405] = 0.5346 +ij[7405] = 2 +id[7406] = "2466-07-11T09:15:02" +ik[7406] = 44.09 +il[7406] = 64 +im[7406] = 0.1007 +ij[7406] = 7.1663 +id[7407] = "2466-08-14T05:47:45" +ik[7407] = 77.94 +il[7407] = 130 +im[7407] = 0.256 +ij[7407] = 14 +id[7408] = "2466-08-28T15:48:21" +ik[7408] = 90 +il[7408] = 168 +im[7408] = 0.1914 +ij[7408] = 5 +id[7409] = "2466-10-23T21:32:49" +ik[7409] = 1.065 +il[7409] = -21 +im[7409] = 0.0739 +ij[7409] = 28.6 +id[7410] = "2466-11-09T15:51:32" +ik[7410] = 54.091 +il[7410] = 31 +im[7410] = 0.0952 +ij[7410] = 8 +id[7411] = "2467-01-01T09:19:05" +ik[7411] = 4.548 +il[7411] = -165 +im[7411] = 0.0641 +ij[7411] = 27.1 +id[7412] = "2467-02-05T22:17:36" +ik[7412] = 1.148 +il[7412] = -54 +im[7412] = 0.0375 +ij[7412] = 28.4 +id[7413] = "2467-02-16T03:29:45" +ik[7413] = 0.534 +il[7413] = -22 +im[7413] = 0.0371 +ij[7413] = 27.3 +id[7414] = "2467-03-05T17:32:25" +ik[7414] = 0.834 +il[7414] = 21 +im[7414] = 0.0072 +ij[7414] = 27.5 +id[7415] = "2467-04-11T18:21:36" +ik[7415] = 1.22 +il[7415] = 123 +im[7415] = 0.0859 +ij[7415] = 12 +id[7416] = "2467-05-22T02:49:37" +ik[7416] = 3.569 +il[7416] = 62 +im[7416] = 0.0279 +ij[7416] = 28.1 +id[7417] = "2467-05-22T06:22:01" +ik[7417] = 1.683 +il[7417] = 63 +im[7417] = 0.0304 +ij[7417] = 28.8 +id[7418] = "2467-05-25T05:22:38" +ik[7418] = 4.379 +il[7418] = 72 +im[7418] = 0.0708 +ij[7418] = 27.2 +id[7419] = "2467-06-11T19:51:10" +ik[7419] = 0.054 +il[7419] = 127 +im[7419] = 0.0946 +ij[7419] = 27.9 +id[7420] = "2467-06-23T21:27:12" +ik[7420] = 1.557 +il[7420] = 165 +im[7420] = 0.0704 +ij[7420] = 28.1 +id[7421] = "2467-08-26T10:49:58" +ik[7421] = 1.658 +il[7421] = 0 +im[7421] = 0.1148 +ij[7421] = 28.6 +id[7422] = "2467-08-27T21:39:59" +ik[7422] = 54.387 +il[7422] = 5 +im[7422] = 0.1048 +ij[7422] = 9 +id[7423] = "2467-10-14T11:54:11" +ik[7423] = 1.865 +il[7423] = 149 +im[7423] = 0.085 +ij[7423] = 27.4 +id[7424] = "2467-11-14T02:45:33" +ik[7424] = 90 +il[7424] = -117 +im[7424] = 0.0681 +ij[7424] = 6 +id[7425] = "2468-01-03T05:48:12" +ik[7425] = 0 +il[7425] = 7 +im[7425] = 0.3739 +ij[7425] = 13 +id[7426] = "2468-01-18T18:27:20" +ik[7426] = 0.5685 +il[7426] = 37 +im[7426] = 0.5685 +ij[7426] = 2 +id[7427] = "2468-01-24T21:31:40" +ik[7427] = 6.33 +il[7427] = 52 +im[7427] = 0.1323 +ij[7427] = 11 +id[7428] = "2468-02-14T16:51:00" +ik[7428] = 42.46 +il[7428] = 64 +im[7428] = 0.4666 +ij[7428] = 7.156 +id[7429] = "2468-03-17T16:01:46" +ik[7429] = 74.43 +il[7429] = 127 +im[7429] = 0.1902 +ij[7429] = 14 +id[7430] = "2468-03-20T11:34:12" +ik[7430] = 4.738 +il[7430] = 134 +im[7430] = 0.0532 +ij[7430] = 27.3 +id[7431] = "2468-04-05T14:13:42" +ik[7431] = 90 +il[7431] = 175 +im[7431] = 0.0786 +ij[7431] = 5 +id[7432] = "2468-04-12T01:46:12" +ik[7432] = 1.212 +il[7432] = -168 +im[7432] = 0.2102 +ij[7432] = 27.5 +id[7433] = "2468-04-18T06:10:30" +ik[7433] = 0.805 +il[7433] = -146 +im[7433] = 0.0615 +ij[7433] = 28.7 +id[7434] = "2468-05-28T11:03:33" +ik[7434] = 0.493 +il[7434] = -21 +im[7434] = 0.1145 +ij[7434] = 28.5 +id[7435] = "2468-05-30T11:15:18" +ik[7435] = 4.14 +il[7435] = -15 +im[7435] = 0.0784 +ij[7435] = 27.6 +id[7436] = "2468-06-20T03:03:34" +ik[7436] = 54.403 +il[7436] = 48 +im[7436] = 0.0502 +ij[7436] = 8 +id[7437] = "2468-07-06T02:34:48" +ik[7437] = 0.069 +il[7437] = 97 +im[7437] = 0.0643 +ij[7437] = 28.8 +id[7438] = "2468-07-08T18:53:02" +ik[7438] = 6.042 +il[7438] = 105 +im[7438] = 0.0993 +ij[7438] = 27.2 +id[7439] = "2468-11-07T13:10:33" +ik[7439] = 0.82 +il[7439] = 99 +im[7439] = 0.0841 +ij[7439] = 12 +id[7440] = "2468-12-31T01:04:56" +ik[7440] = 3.965 +il[7440] = 77 +im[7440] = 0.0102 +ij[7440] = 28.1 +id[7441] = "2469-01-16T11:51:05" +ik[7441] = 0.132 +il[7441] = 127 +im[7441] = 0.0228 +ij[7441] = 27.3 +id[7442] = "2469-01-19T04:17:36" +ik[7442] = 2.176 +il[7442] = 136 +im[7442] = 0.0646 +ij[7442] = 28.1 +id[7443] = "2469-02-03T03:59:32" +ik[7443] = 1.091 +il[7443] = -178 +im[7443] = 0.0802 +ij[7443] = 27.5 +id[7444] = "2469-02-11T04:37:55" +ik[7444] = 0.899 +il[7444] = -153 +im[7444] = 0.0622 +ij[7444] = 28.4 +id[7445] = "2469-02-14T22:44:06" +ik[7445] = 0.508 +il[7445] = -142 +im[7445] = 0.0093 +ij[7445] = 28.7 +id[7446] = "2469-03-19T08:09:12" +ik[7446] = 2.25 +il[7446] = -41 +im[7446] = 0.0593 +ij[7446] = 27.6 +id[7447] = "2469-04-09T21:11:35" +ik[7447] = 54.269 +il[7447] = 27 +im[7447] = 0.114 +ij[7447] = 9 +id[7448] = "2469-04-18T00:23:11" +ik[7448] = 1.982 +il[7448] = 52 +im[7448] = 0.0658 +ij[7448] = 28.5 +id[7449] = "2469-04-26T12:17:45" +ik[7449] = 2.83 +il[7449] = 79 +im[7449] = 0.088 +ij[7449] = 27.2 +id[7450] = "2469-04-27T11:33:21" +ik[7450] = 3.292 +il[7450] = 82 +im[7450] = 0.068 +ij[7450] = 28.8 +id[7451] = "2469-06-18T19:05:36" +ik[7451] = 90 +il[7451] = -117 +im[7451] = 0.1905 +ij[7451] = 6 +id[7452] = "2469-08-05T16:02:13" +ik[7452] = 0 +il[7452] = 1 +im[7452] = 0.3466 +ij[7452] = 13 +id[7453] = "2469-08-16T23:12:54" +ik[7453] = 0.4989 +il[7453] = 20 +im[7453] = 0.4989 +ij[7453] = 2 +id[7454] = "2469-08-28T04:06:14" +ik[7454] = 8.32 +il[7454] = 49 +im[7454] = 0.4328 +ij[7454] = 11 +id[7455] = "2469-09-18T21:07:00" +ik[7455] = 44.21 +il[7455] = 57 +im[7455] = 0.0943 +ij[7455] = 7.1638 +id[7456] = "2469-10-22T00:20:48" +ik[7456] = 77.35 +il[7456] = 122 +im[7456] = 0.2069 +ij[7456] = 14 +id[7457] = "2469-11-06T21:20:03" +ik[7457] = 90 +il[7457] = 162 +im[7457] = 0.2165 +ij[7457] = 5 +id[7458] = "2469-12-05T16:46:16" +ik[7458] = 0.416 +il[7458] = -109 +im[7458] = 0.1545 +ij[7458] = 28.6 +id[7459] = "2470-01-14T12:17:18" +ik[7459] = 3.721 +il[7459] = 15 +im[7459] = 0.0187 +ij[7459] = 27.1 +id[7460] = "2470-01-22T12:11:10" +ik[7460] = 53.724 +il[7460] = 40 +im[7460] = 0.1145 +ij[7460] = 8 +id[7461] = "2470-03-02T08:35:58" +ik[7461] = 1 +il[7461] = 161 +im[7461] = 0.0331 +ij[7461] = 27.3 +id[7462] = "2470-03-20T02:58:38" +ik[7462] = 0.604 +il[7462] = -152 +im[7462] = 0.079 +ij[7462] = 27.5 +id[7463] = "2470-04-03T06:10:48" +ik[7463] = 0.553 +il[7463] = -100 +im[7463] = 0.0541 +ij[7463] = 28.7 +id[7464] = "2470-05-03T02:55:06" +ik[7464] = 3.46 +il[7464] = -9 +im[7464] = 0.0457 +ij[7464] = 27.6 +id[7465] = "2470-05-15T13:27:24" +ik[7465] = 0.11 +il[7465] = 18 +im[7465] = 0.0153 +ij[7465] = 28.1 +id[7466] = "2470-06-20T02:03:50" +ik[7466] = 0.21 +il[7466] = 115 +im[7466] = 0.0825 +ij[7466] = 12 +id[7467] = "2470-09-01T17:47:02" +ik[7467] = 4.198 +il[7467] = 160 +im[7467] = 0.0776 +ij[7467] = 28.1 +id[7468] = "2470-10-10T18:19:52" +ik[7468] = 2.509 +il[7468] = -82 +im[7468] = 0.0507 +ij[7468] = 28.6 +id[7469] = "2470-10-25T10:56:51" +ik[7469] = 3.204 +il[7469] = -37 +im[7469] = 0.0435 +ij[7469] = 27.4 +id[7470] = "2470-11-08T09:16:57" +ik[7470] = 53.743 +il[7470] = 5 +im[7470] = 0.0881 +ij[7470] = 9 +id[7471] = "2470-12-21T07:35:05" +ik[7471] = 0.836 +il[7471] = 138 +im[7471] = 0.1373 +ij[7471] = 27.3 +id[7472] = "2471-01-10T01:01:45" +ik[7472] = 0.814 +il[7472] = -161 +im[7472] = 0.0313 +ij[7472] = 27.5 +id[7473] = "2471-01-28T07:30:22" +ik[7473] = 90 +il[7473] = -104 +im[7473] = 0.1055 +ij[7473] = 6 +id[7474] = "2471-02-02T17:30:28" +ik[7474] = 1.634 +il[7474] = -88 +im[7474] = 0.2277 +ij[7474] = 28.7 +id[7475] = "2471-02-27T16:37:03" +ik[7475] = 5.002 +il[7475] = -31 +im[7475] = 0.2128 +ij[7475] = 28.4 +id[7476] = "2471-03-13T19:35:58" +ik[7476] = 6.12 +il[7476] = -4 +im[7476] = 0.3291 +ij[7476] = 27.6 +id[7477] = "2471-03-17T00:21:15" +ik[7477] = 0 +il[7477] = 0 +im[7477] = 0.4429 +ij[7477] = 13 +id[7478] = "2471-04-08T09:14:24" +ik[7478] = 7.72 +il[7478] = 59 +im[7478] = 0.3044 +ij[7478] = 11 +id[7479] = "2471-04-12T08:02:47" +ik[7479] = 0.5256 +il[7479] = 50 +im[7479] = 0.5257 +ij[7479] = 2 +id[7480] = "2471-04-29T02:28:50" +ik[7480] = 43.09 +il[7480] = 70 +im[7480] = 0.3315 +ij[7480] = 7.1624 +id[7481] = "2471-05-01T00:56:03" +ik[7481] = 4.7 +il[7481] = 73 +im[7481] = 0.1705 +ij[7481] = 28.4 +id[7482] = "2471-06-01T08:38:38" +ik[7482] = 76.35 +il[7482] = 135 +im[7482] = 0.0727 +ij[7482] = 14 +id[7483] = "2471-06-05T13:49:52" +ik[7483] = 4.19 +il[7483] = 145 +im[7483] = 0.229 +ij[7483] = 27.6 +id[7484] = "2471-06-17T19:52:29" +ik[7484] = 90 +il[7484] = 178 +im[7484] = 0.1151 +ij[7484] = 5 +id[7485] = "2471-07-24T08:53:22" +ik[7485] = 0.861 +il[7485] = -70 +im[7485] = 0.1203 +ij[7485] = 28.8 +id[7486] = "2471-08-28T23:51:38" +ik[7486] = 54.487 +il[7486] = 38 +im[7486] = 0.0305 +ij[7486] = 8 +id[7487] = "2471-08-31T10:50:09" +ik[7487] = 0.78 +il[7487] = 46 +im[7487] = 0.0803 +ij[7487] = 28.5 +id[7488] = "2471-12-03T01:39:38" +ik[7488] = 1.165 +il[7488] = -25 +im[7488] = 0.084 +ij[7488] = 28.6 +id[7489] = "2472-01-22T22:50:52" +ik[7489] = 0.96 +il[7489] = 112 +im[7489] = 0.0584 +ij[7489] = 12 +id[7490] = "2472-03-12T06:59:45" +ik[7490] = 0.484 +il[7490] = 82 +im[7490] = 0.0211 +ij[7490] = 28.7 +id[7491] = "2472-03-23T05:20:58" +ik[7491] = 3.401 +il[7491] = 110 +im[7491] = 0.0597 +ij[7491] = 28.1 +id[7492] = "2472-04-02T08:18:50" +ik[7492] = 2.77 +il[7492] = 141 +im[7492] = 0.0912 +ij[7492] = 27.6 +id[7493] = "2472-05-09T10:02:11" +ik[7493] = 3.75 +il[7493] = -102 +im[7493] = 0.0304 +ij[7493] = 27.2 +id[7494] = "2472-05-15T15:06:02" +ik[7494] = 2.487 +il[7494] = -83 +im[7494] = 0.0817 +ij[7494] = 28.8 +id[7495] = "2472-06-17T11:39:13" +ik[7495] = 54.664 +il[7495] = 19 +im[7495] = 0.1122 +ij[7495] = 9 +id[7496] = "2472-07-25T18:16:59" +ik[7496] = 0.221 +il[7496] = 136 +im[7496] = 0.0513 +ij[7496] = 28.5 +id[7497] = "2472-08-28T00:31:06" +ik[7497] = 90 +il[7497] = -123 +im[7497] = 0.1789 +ij[7497] = 6 +id[7498] = "2472-10-17T08:39:05" +ik[7498] = 0 +il[7498] = 2 +im[7498] = 0.219 +ij[7498] = 13 +id[7499] = "2472-11-08T09:02:10" +ik[7499] = 0.5398 +il[7499] = 50 +im[7499] = 0.5399 +ij[7499] = 2 +id[7500] = "2472-11-08T19:29:16" +ik[7500] = 5.05 +il[7500] = 50 +im[7500] = 0.5368 +ij[7500] = 11 +id[7501] = "2472-11-29T07:43:39" +ik[7501] = 42.96 +il[7501] = 58 +im[7501] = 0.0594 +ij[7501] = 7.1557 +id[7502] = "2472-12-30T20:53:25" +ik[7502] = 74.51 +il[7502] = 120 +im[7502] = 0.2105 +ij[7502] = 14 +id[7503] = "2473-01-16T23:31:20" +ik[7503] = 1.679 +il[7503] = 162 +im[7503] = 0.2187 +ij[7503] = 28.6 +id[7504] = "2473-01-18T14:16:22" +ik[7504] = 90 +il[7504] = 166 +im[7504] = 0.2202 +ij[7504] = 5 +id[7505] = "2473-01-22T22:37:44" +ik[7505] = 2.076 +il[7505] = -180 +im[7505] = 0.1119 +ij[7505] = 27.1 +id[7506] = "2473-03-15T03:11:58" +ik[7506] = 1.829 +il[7506] = -21 +im[7506] = 0.0913 +ij[7506] = 27.3 +id[7507] = "2473-04-02T12:03:31" +ik[7507] = 0.171 +il[7507] = 37 +im[7507] = 0.1284 +ij[7507] = 27.5 +id[7508] = "2473-04-07T12:18:21" +ik[7508] = 53.938 +il[7508] = 52 +im[7508] = 0.0737 +ij[7508] = 8 +id[7509] = "2473-04-28T11:05:51" +ik[7509] = 0.769 +il[7509] = 117 +im[7509] = 0.0758 +ij[7509] = 28.7 +id[7510] = "2473-05-17T08:52:43" +ik[7510] = 3.78 +il[7510] = 175 +im[7510] = 0.0962 +ij[7510] = 27.6 +id[7511] = "2473-05-31T00:09:21" +ik[7511] = 0.612 +il[7511] = -144 +im[7511] = 0.092 +ij[7511] = 28.4 +id[7512] = "2473-06-24T06:58:49" +ik[7512] = 5.367 +il[7512] = -70 +im[7512] = 0.0092 +ij[7512] = 27.2 +id[7513] = "2473-06-30T21:04:36" +ik[7513] = 0.884 +il[7513] = -50 +im[7513] = 0.087 +ij[7513] = 28.8 +id[7514] = "2473-07-26T01:33:44" +ik[7514] = 2.987 +il[7514] = 27 +im[7514] = 0.024 +ij[7514] = 28.1 +id[7515] = "2473-08-26T08:24:00" +ik[7515] = 1.35 +il[7515] = 102 +im[7515] = 0.0397 +ij[7515] = 12 +id[7516] = "2473-10-02T17:22:42" +ik[7516] = 0.376 +il[7516] = 35 +im[7516] = 0.0719 +ij[7516] = 28.5 +id[7517] = "2473-11-02T19:53:11" +ik[7517] = 2.289 +il[7517] = 129 +im[7517] = 0.0654 +ij[7517] = 28.1 +id[7518] = "2473-11-08T02:08:51" +ik[7518] = 3.944 +il[7518] = 145 +im[7518] = 0.0253 +ij[7518] = 27.4 +id[7519] = "2473-11-27T01:30:00" +ik[7519] = 2.113 +il[7519] = -157 +im[7519] = 0.0859 +ij[7519] = 28.6 +id[7520] = "2474-01-02T02:49:44" +ik[7520] = 0.469 +il[7520] = -47 +im[7520] = 0.0857 +ij[7520] = 27.3 +id[7521] = "2474-01-20T04:45:18" +ik[7521] = 1.127 +il[7521] = 9 +im[7521] = 0.0211 +ij[7521] = 27.5 +id[7522] = "2474-01-23T17:24:09" +ik[7522] = 53.634 +il[7522] = 20 +im[7522] = 0.0695 +ij[7522] = 9 +id[7523] = "2474-02-21T20:11:28" +ik[7523] = 0.675 +il[7523] = 111 +im[7523] = 0.0579 +ij[7523] = 28.7 +id[7524] = "2474-03-07T04:27:34" +ik[7524] = 1.15 +il[7524] = 153 +im[7524] = 0.0264 +ij[7524] = 27.6 +id[7525] = "2474-04-09T10:36:07" +ik[7525] = 90 +il[7525] = -103 +im[7525] = 0.1245 +ij[7525] = 6 +id[7526] = "2474-04-20T17:05:44" +ik[7526] = 0.618 +il[7526] = -75 +im[7526] = 0.0082 +ij[7526] = 27.2 +id[7527] = "2474-05-06T14:42:17" +ik[7527] = 5.674 +il[7527] = -40 +im[7527] = 0.073 +ij[7527] = 28.8 +id[7528] = "2474-05-25T20:53:52" +ik[7528] = 0 +il[7528] = 0 +im[7528] = 0.4146 +ij[7528] = 13 +id[7529] = "2474-06-16T22:55:03" +ik[7529] = 0.602 +il[7529] = 48 +im[7529] = 0.2099 +ij[7529] = 28.8 +id[7530] = "2474-06-17T04:30:43" +ik[7530] = 0.86 +il[7530] = 47 +im[7530] = 0.235 +ij[7530] = 11 +id[7531] = "2474-06-22T00:43:34" +ik[7531] = 0.523 +il[7531] = 47 +im[7531] = 0.5231 +ij[7531] = 2 +id[7532] = "2474-07-08T20:08:28" +ik[7532] = 43.97 +il[7532] = 66 +im[7532] = 0.2501 +ij[7532] = 7.1663 +id[7533] = "2474-07-30T20:53:48" +ik[7533] = 3.371 +il[7533] = 106 +im[7533] = 0.2439 +ij[7533] = 28.8 +id[7534] = "2474-08-11T22:10:08" +ik[7534] = 78.05 +il[7534] = 133 +im[7534] = 0.1395 +ij[7534] = 14 +id[7535] = "2474-08-26T08:25:13" +ik[7535] = 90 +il[7535] = 171 +im[7535] = 0.0873 +ij[7535] = 5 +id[7536] = "2474-11-07T06:22:50" +ik[7536] = 54.108 +il[7536] = 34 +im[7536] = 0.0154 +ij[7536] = 8 +id[7537] = "2474-12-12T14:49:20" +ik[7537] = 0.344 +il[7537] = 144 +im[7537] = 0.0922 +ij[7537] = 28.5 +id[7538] = "2474-12-31T22:56:24" +ik[7538] = 4.57 +il[7538] = -156 +im[7538] = 0.0921 +ij[7538] = 27.1 +id[7539] = "2475-01-19T15:43:44" +ik[7539] = 0.449 +il[7539] = -97 +im[7539] = 0.0195 +ij[7539] = 28.6 +id[7540] = "2475-02-15T16:45:17" +ik[7540] = 0.523 +il[7540] = -14 +im[7540] = 0.0675 +ij[7540] = 27.3 +id[7541] = "2475-02-15T19:12:51" +ik[7541] = 2.905 +il[7541] = -13 +im[7541] = 0.0663 +ij[7541] = 28.1 +id[7542] = "2475-04-09T08:00:57" +ik[7542] = 1.25 +il[7542] = 126 +im[7542] = 0.054 +ij[7542] = 12 +id[7543] = "2475-05-24T18:31:31" +ik[7543] = 4.363 +il[7543] = 81 +im[7543] = 0.0454 +ij[7543] = 27.2 +id[7544] = "2475-05-31T13:25:32" +ik[7544] = 0.215 +il[7544] = 102 +im[7544] = 0.0744 +ij[7544] = 28.1 +id[7545] = "2475-06-05T00:13:32" +ik[7545] = 1.954 +il[7545] = 116 +im[7545] = 0.007 +ij[7545] = 28.8 +id[7546] = "2475-06-22T06:36:51" +ik[7546] = 0.623 +il[7546] = 170 +im[7546] = 0.0221 +ij[7546] = 28.4 +id[7547] = "2475-08-25T14:01:31" +ik[7547] = 54.406 +il[7547] = 8 +im[7547] = 0.1141 +ij[7547] = 9 +id[7548] = "2475-10-14T06:46:37" +ik[7548] = 1.799 +il[7548] = 158 +im[7548] = 0.127 +ij[7548] = 27.4 +id[7549] = "2475-11-11T02:19:43" +ik[7549] = 3.433 +il[7549] = -117 +im[7549] = 0.2004 +ij[7549] = 28.5 +id[7550] = "2475-11-11T14:01:20" +ik[7550] = 90 +il[7550] = -115 +im[7550] = 0.1955 +ij[7550] = 6 +id[7551] = "2475-12-06T20:04:16" +ik[7551] = 2.851 +il[7551] = -51 +im[7551] = 0.2385 +ij[7551] = 28.6 +id[7552] = "2475-12-31T22:10:35" +ik[7552] = 0 +il[7552] = 5 +im[7552] = 0.0995 +ij[7552] = 13 +id[7553] = "2476-01-19T23:15:43" +ik[7553] = 0.5763 +il[7553] = 45 +im[7553] = 0.5763 +ij[7553] = 2 +id[7554] = "2476-01-22T10:07:40" +ik[7554] = 6.04 +il[7554] = 50 +im[7554] = 0.4873 +ij[7554] = 11 +id[7555] = "2476-02-12T05:47:13" +ik[7555] = 42.32 +il[7555] = 67 +im[7555] = 0.3635 +ij[7555] = 7.1558 +id[7556] = "2476-03-15T03:31:57" +ik[7556] = 74.22 +il[7556] = 129 +im[7556] = 0.2875 +ij[7556] = 14 +id[7557] = "2476-03-20T20:29:17" +ik[7557] = 4.512 +il[7557] = 143 +im[7557] = 0.1014 +ij[7557] = 27.3 +id[7558] = "2476-04-03T02:54:24" +ik[7558] = 90 +il[7558] = 177 +im[7558] = 0.0974 +ij[7558] = 5 +id[7559] = "2476-04-11T23:51:04" +ik[7559] = 1.119 +il[7559] = -160 +im[7559] = 0.1941 +ij[7559] = 27.5 +id[7560] = "2476-05-22T11:17:31" +ik[7560] = 1.186 +il[7560] = -30 +im[7560] = 0.0527 +ij[7560] = 28.7 +id[7561] = "2476-05-30T03:14:25" +ik[7561] = 4.13 +il[7561] = -6 +im[7561] = 0.1157 +ij[7561] = 27.6 +id[7562] = "2476-06-17T19:39:19" +ik[7562] = 54.392 +il[7562] = 51 +im[7562] = 0.0442 +ij[7562] = 8 +id[7563] = "2476-07-08T09:02:22" +ik[7563] = 6.016 +il[7563] = 114 +im[7563] = 0.0698 +ij[7563] = 27.2 +id[7564] = "2476-07-20T06:05:11" +ik[7564] = 0.358 +il[7564] = 150 +im[7564] = 0.0215 +ij[7564] = 28.8 +id[7565] = "2476-09-28T15:10:13" +ik[7565] = 2.081 +il[7565] = 6 +im[7565] = 0.0741 +ij[7565] = 28.1 +id[7566] = "2476-11-05T02:44:09" +ik[7566] = 0.87 +il[7566] = 101 +im[7566] = 0.0543 +ij[7566] = 12 +id[7567] = "2476-12-31T18:43:46" +ik[7567] = 1.479 +il[7567] = 89 +im[7567] = 0.0078 +ij[7567] = 28.1 +id[7568] = "2477-01-10T03:03:44" +ik[7568] = 0.672 +il[7568] = 118 +im[7568] = 0.0929 +ij[7568] = 28.5 +id[7569] = "2477-01-13T20:31:29" +ik[7569] = 0.77 +il[7569] = 129 +im[7569] = 0.0554 +ij[7569] = 28.6 +id[7570] = "2477-01-16T01:14:11" +ik[7570] = 0.14 +il[7570] = 136 +im[7570] = 0.0194 +ij[7570] = 27.3 +id[7571] = "2477-02-02T17:32:51" +ik[7571] = 1.091 +il[7571] = -170 +im[7571] = 0.0495 +ij[7571] = 27.5 +id[7572] = "2477-03-17T17:51:04" +ik[7572] = 0.394 +il[7572] = -36 +im[7572] = 0.0091 +ij[7572] = 28.7 +id[7573] = "2477-03-18T22:21:20" +ik[7573] = 2.22 +il[7573] = -32 +im[7573] = 0.0235 +ij[7573] = 27.6 +id[7574] = "2477-04-07T12:36:13" +ik[7574] = 54.247 +il[7574] = 30 +im[7574] = 0.1079 +ij[7574] = 9 +id[7575] = "2477-04-26T04:08:50" +ik[7575] = 2.791 +il[7575] = 88 +im[7575] = 0.1239 +ij[7575] = 27.2 +id[7576] = "2477-05-12T09:45:12" +ik[7576] = 3.558 +il[7576] = 138 +im[7576] = 0.1163 +ij[7576] = 28.8 +id[7577] = "2477-06-16T12:35:32" +ik[7577] = 90 +il[7577] = -114 +im[7577] = 0.0727 +ij[7577] = 6 +id[7578] = "2477-08-03T03:32:24" +ik[7578] = 0 +il[7578] = 4 +im[7578] = 0.3597 +ij[7578] = 13 +id[7579] = "2477-08-18T03:14:35" +ik[7579] = 0.5189 +il[7579] = 33 +im[7579] = 0.519 +ij[7579] = 2 +id[7580] = "2477-08-25T19:10:33" +ik[7580] = 8.21 +il[7580] = 52 +im[7580] = 0.1023 +ij[7580] = 11 +id[7581] = "2477-09-16T12:48:07" +ik[7581] = 44.39 +il[7581] = 60 +im[7581] = 0.3429 +ij[7581] = 7.1638 +id[7582] = "2477-10-19T17:27:58" +ik[7582] = 77.58 +il[7582] = 125 +im[7582] = 0.0304 +ij[7582] = 14 +id[7583] = "2477-11-04T12:21:23" +ik[7583] = 90 +il[7583] = 165 +im[7583] = 0.113 +ij[7583] = 5 +id[7584] = "2477-11-07T19:36:28" +ik[7584] = 0.56 +il[7584] = 175 +im[7584] = 0.2014 +ij[7584] = 28.4 +id[7585] = "2478-01-14T03:33:17" +ik[7585] = 3.756 +il[7585] = 24 +im[7585] = 0.0617 +ij[7585] = 27.1 +id[7586] = "2478-01-19T23:51:48" +ik[7586] = 53.728 +il[7586] = 42 +im[7586] = 0.0853 +ij[7586] = 8 +id[7587] = "2478-03-01T22:27:30" +ik[7587] = 0.984 +il[7587] = 170 +im[7587] = 0.0174 +ij[7587] = 27.3 +id[7588] = "2478-03-08T05:05:16" +ik[7588] = 0.464 +il[7588] = -171 +im[7588] = 0.0895 +ij[7588] = 28.6 +id[7589] = "2478-03-17T13:30:34" +ik[7589] = 0.142 +il[7589] = -142 +im[7589] = 0.0121 +ij[7589] = 28.5 +id[7590] = "2478-03-19T16:35:31" +ik[7590] = 0.612 +il[7590] = -135 +im[7590] = 0.0501 +ij[7590] = 27.5 +id[7591] = "2478-04-21T14:56:32" +ik[7591] = 0.933 +il[7591] = -34 +im[7591] = 0.0823 +ij[7591] = 28.1 +id[7592] = "2478-05-02T16:07:14" +ik[7592] = 3.45 +il[7592] = -1 +im[7592] = 0.011 +ij[7592] = 27.6 +id[7593] = "2478-05-03T23:56:49" +ik[7593] = 0.702 +il[7593] = 3 +im[7593] = 0.0343 +ij[7593] = 28.7 +id[7594] = "2478-06-17T20:32:38" +ik[7594] = 0.15 +il[7594] = 118 +im[7594] = 0.0355 +ij[7594] = 12 +id[7595] = "2478-08-10T12:30:05" +ik[7595] = 3.601 +il[7595] = 102 +im[7595] = 0.0753 +ij[7595] = 28.1 +id[7596] = "2478-10-25T01:35:30" +ik[7596] = 3.177 +il[7596] = -28 +im[7596] = 0.0819 +ij[7596] = 27.4 +id[7597] = "2478-11-05T21:11:49" +ik[7597] = 53.762 +il[7597] = 8 +im[7597] = 0.1233 +ij[7597] = 9 +id[7598] = "2478-12-21T01:12:50" +ik[7598] = 0.843 +il[7598] = 147 +im[7598] = 0.1597 +ij[7598] = 27.3 +id[7599] = "2479-01-09T21:52:50" +ik[7599] = 0.775 +il[7599] = -151 +im[7599] = 0.0882 +ij[7599] = 27.5 +id[7600] = "2479-01-13T19:49:52" +ik[7600] = 0.634 +il[7600] = -139 +im[7600] = 0.076 +ij[7600] = 28.6 +id[7601] = "2479-01-25T20:31:25" +ik[7601] = 90 +il[7601] = -101 +im[7601] = 0.0786 +ij[7601] = 6 +id[7602] = "2479-02-13T15:17:34" +ik[7602] = 3.564 +il[7602] = -54 +im[7602] = 0.1823 +ij[7602] = 28.5 +id[7603] = "2479-03-14T17:28:25" +ik[7603] = 0 +il[7603] = 13 +im[7603] = 0.3346 +ij[7603] = 13 +id[7604] = "2479-04-05T23:49:55" +ik[7604] = 7.89 +il[7604] = 37 +im[7604] = 0.1215 +ij[7604] = 11 +id[7605] = "2479-04-13T08:37:41" +ik[7605] = 0.5244 +il[7605] = 56 +im[7605] = 0.5244 +ij[7605] = 2 +id[7606] = "2479-04-26T16:30:59" +ik[7606] = 42.96 +il[7606] = 72 +im[7606] = 0.4161 +ij[7606] = 7.1622 +id[7607] = "2479-05-29T21:53:48" +ik[7607] = 76.18 +il[7607] = 138 +im[7607] = 0.1306 +ij[7607] = 14 +id[7608] = "2479-06-05T22:05:15" +ik[7608] = 4.23 +il[7608] = 154 +im[7608] = 0.1991 +ij[7608] = 27.6 +id[7609] = "2479-06-11T20:23:34" +ik[7609] = 1.882 +il[7609] = 171 +im[7609] = 0.1902 +ij[7609] = 28.7 +id[7610] = "2479-06-15T11:36:17" +ik[7610] = 90 +il[7610] = -179 +im[7610] = 0.0585 +ij[7610] = 5 +id[7611] = "2479-08-08T09:51:07" +ik[7611] = 0.464 +il[7611] = -14 +im[7611] = 0.1363 +ij[7611] = 28.8 +id[7612] = "2479-08-26T16:45:10" +ik[7612] = 54.493 +il[7612] = 41 +im[7612] = 0.0628 +ij[7612] = 8 +id[7613] = "2479-11-27T21:42:46" +ik[7613] = 0.805 +il[7613] = -31 +im[7613] = 0.0134 +ij[7613] = 28.1 +id[7614] = "2479-12-07T04:18:15" +ik[7614] = 0.578 +il[7614] = -5 +im[7614] = 0.0816 +ij[7614] = 28.4 +id[7615] = "2480-01-20T08:49:55" +ik[7615] = 0.91 +il[7615] = 114 +im[7615] = 0.0898 +ij[7615] = 12 +id[7616] = "2480-03-01T15:02:35" +ik[7616] = 0.646 +il[7616] = 64 +im[7616] = 0.0648 +ij[7616] = 28.6 +id[7617] = "2480-03-02T02:34:13" +ik[7617] = 3.336 +il[7617] = 65 +im[7617] = 0.0707 +ij[7617] = 28.1 +id[7618] = "2480-04-01T21:37:06" +ik[7618] = 2.76 +il[7618] = 150 +im[7618] = 0.0835 +ij[7618] = 27.6 +id[7619] = "2480-04-08T06:30:40" +ik[7619] = 0.768 +il[7619] = 170 +im[7619] = 0.0685 +ij[7619] = 28.5 +id[7620] = "2480-04-11T20:50:12" +ik[7620] = 0.183 +il[7620] = -179 +im[7620] = 0.0108 +ij[7620] = 28.7 +id[7621] = "2480-05-08T23:49:43" +ik[7621] = 3.728 +il[7621] = -94 +im[7621] = 0.0694 +ij[7621] = 27.2 +id[7622] = "2480-05-29T16:56:47" +ik[7622] = 2.624 +il[7622] = -29 +im[7622] = 0.0651 +ij[7622] = 28.8 +id[7623] = "2480-06-15T05:50:58" +ik[7623] = 54.661 +il[7623] = 22 +im[7623] = 0.0811 +ij[7623] = 9 +id[7624] = "2480-08-25T14:35:50" +ik[7624] = 90 +il[7624] = -121 +im[7624] = 0.0326 +ij[7624] = 6 +id[7625] = "2480-10-14T21:54:15" +ik[7625] = 0 +il[7625] = 5 +im[7625] = 0.4347 +ij[7625] = 13 +id[7626] = "2480-11-06T08:48:28" +ik[7626] = 5.36 +il[7626] = 64 +im[7626] = 0.4114 +ij[7626] = 11 +id[7627] = "2480-11-09T09:04:12" +ik[7627] = 0.5478 +il[7627] = 40 +im[7627] = 0.5478 +ij[7627] = 2 +id[7628] = "2480-11-26T21:59:50" +ik[7628] = 43 +il[7628] = 60 +im[7628] = 0.3023 +ij[7628] = 7.156 +id[7629] = "2480-12-28T11:32:32" +ik[7629] = 74.57 +il[7629] = 123 +im[7629] = 0.0099 +ij[7629] = 14 +id[7630] = "2481-01-16T03:03:16" +ik[7630] = 90 +il[7630] = 168 +im[7630] = 0.1558 +ij[7630] = 5 +id[7631] = "2481-01-22T22:14:36" +ik[7631] = 2.164 +il[7631] = -174 +im[7631] = 0.1466 +ij[7631] = 27.1 +id[7632] = "2481-03-14T19:03:30" +ik[7632] = 1.79 +il[7632] = -12 +im[7632] = 0.0434 +ij[7632] = 27.3 +id[7633] = "2481-04-02T03:02:10" +ik[7633] = 0.192 +il[7633] = 45 +im[7633] = 0.1153 +ij[7633] = 27.5 +id[7634] = "2481-04-05T01:24:19" +ik[7634] = 53.922 +il[7634] = 55 +im[7634] = 0.1246 +ij[7634] = 8 +id[7635] = "2481-04-23T07:22:13" +ik[7635] = 0.886 +il[7635] = 111 +im[7635] = 0.0639 +ij[7635] = 28.6 +id[7636] = "2481-05-16T22:42:04" +ik[7636] = 3.77 +il[7636] = -177 +im[7636] = 0.0869 +ij[7636] = 27.6 +id[7637] = "2481-05-29T13:02:55" +ik[7637] = 1.006 +il[7637] = -138 +im[7637] = 0.0499 +ij[7637] = 28.7 +id[7638] = "2481-06-13T20:50:29" +ik[7638] = 0.096 +il[7638] = -92 +im[7638] = 0.0561 +ij[7638] = 28.5 +id[7639] = "2481-06-23T20:09:28" +ik[7639] = 5.348 +il[7639] = -61 +im[7639] = 0.0403 +ij[7639] = 27.2 +id[7640] = "2481-07-02T08:33:04" +ik[7640] = 2.552 +il[7640] = -36 +im[7640] = 0.0834 +ij[7640] = 28.1 +id[7641] = "2481-07-14T19:55:18" +ik[7641] = 1.097 +il[7641] = 3 +im[7641] = 0.0678 +ij[7641] = 28.8 +id[7642] = "2481-08-24T01:46:33" +ik[7642] = 1.33 +il[7642] = 105 +im[7642] = 0.0285 +ij[7642] = 12 +id[7643] = "2481-10-13T11:06:34" +ik[7643] = 2.755 +il[7643] = 77 +im[7643] = 0.0667 +ij[7643] = 28.1 +id[7644] = "2481-11-07T15:43:56" +ik[7644] = 3.928 +il[7644] = 154 +im[7644] = 0.0202 +ij[7644] = 27.4 +id[7645] = "2481-12-20T09:15:59" +ik[7645] = 0.502 +il[7645] = -76 +im[7645] = 0.0669 +ij[7645] = 28.4 +id[7646] = "2482-01-01T17:06:10" +ik[7646] = 0.477 +il[7646] = -38 +im[7646] = 0.1115 +ij[7646] = 27.3 +id[7647] = "2482-01-19T19:33:17" +ik[7647] = 1.122 +il[7647] = 18 +im[7647] = 0.0655 +ij[7647] = 27.5 +id[7648] = "2482-01-21T04:18:33" +ik[7648] = 53.622 +il[7648] = 22 +im[7648] = 0.0339 +ij[7648] = 9 +id[7649] = "2482-02-25T03:34:50" +ik[7649] = 2.61 +il[7649] = 132 +im[7649] = 0.0997 +ij[7649] = 28.6 +id[7650] = "2482-03-06T22:05:02" +ik[7650] = 1.09 +il[7650] = 162 +im[7650] = 0.0792 +ij[7650] = 27.6 +id[7651] = "2482-03-27T07:36:37" +ik[7651] = 2.825 +il[7651] = -134 +im[7651] = 0.13 +ij[7651] = 28.7 +id[7652] = "2482-04-07T03:33:20" +ik[7652] = 90 +il[7652] = -100 +im[7652] = 0.0421 +ij[7652] = 6 +id[7653] = "2482-04-21T02:49:43" +ik[7653] = 0.484 +il[7653] = -66 +im[7653] = 0.0754 +ij[7653] = 27.2 +id[7654] = "2482-05-24T11:32:59" +ik[7654] = 0 +il[7654] = 13 +im[7654] = 0.2951 +ij[7654] = 13 +id[7655] = "2482-06-09T19:32:49" +ik[7655] = 0.505 +il[7655] = 46 +im[7655] = 0.505 +ij[7655] = 2 +id[7656] = "2482-06-14T21:40:19" +ik[7656] = 0.53 +il[7656] = 58 +im[7656] = 0.1809 +ij[7656] = 11 +id[7657] = "2482-07-06T12:32:39" +ik[7657] = 43.04 +il[7657] = 69 +im[7657] = 0.4049 +ij[7657] = 7.1664 +id[7658] = "2482-08-09T14:40:26" +ik[7658] = 77.13 +il[7658] = 136 +im[7658] = 0.0597 +ij[7658] = 14 +id[7659] = "2482-08-10T23:56:24" +ik[7659] = 3.526 +il[7659] = 139 +im[7659] = 0.0095 +ij[7659] = 28.5 +id[7660] = "2482-08-21T22:12:11" +ik[7660] = 2.364 +il[7660] = 168 +im[7660] = 0.1592 +ij[7660] = 28.8 +id[7661] = "2482-08-24T01:04:44" +ik[7661] = 90 +il[7661] = 174 +im[7661] = 0.075 +ij[7661] = 5 +id[7662] = "2482-11-04T20:57:41" +ik[7662] = 54.125 +il[7662] = 36 +im[7662] = 0.0877 +ij[7662] = 8 +id[7663] = "2482-12-31T12:33:16" +ik[7663] = 4.593 +il[7663] = -147 +im[7663] = 0.1009 +ij[7663] = 27.1 +id[7664] = "2483-01-26T02:40:16" +ik[7664] = 2.799 +il[7664] = -67 +im[7664] = 0.0593 +ij[7664] = 28.1 +id[7665] = "2483-02-15T06:01:43" +ik[7665] = 0.513 +il[7665] = -5 +im[7665] = 0.0869 +ij[7665] = 27.3 +id[7666] = "2483-04-06T21:21:36" +ik[7666] = 1.28 +il[7666] = 128 +im[7666] = 0.0166 +ij[7666] = 12 +id[7667] = "2483-05-24T07:40:23" +ik[7667] = 4.347 +il[7667] = 89 +im[7667] = 0.0141 +ij[7667] = 27.2 +id[7668] = "2483-06-10T22:07:58" +ik[7668] = 0.089 +il[7668] = 144 +im[7668] = 0.0624 +ij[7668] = 27.9 +id[7669] = "2483-06-18T20:36:40" +ik[7669] = 2.03 +il[7669] = 169 +im[7669] = 0.0682 +ij[7669] = 28.8 +id[7670] = "2483-07-11T08:41:08" +ik[7670] = 0.726 +il[7670] = -121 +im[7670] = 0.0675 +ij[7670] = 28.5 +id[7671] = "2483-08-23T06:26:36" +ik[7671] = 54.425 +il[7671] = 10 +im[7671] = 0.0532 +ij[7671] = 9 +id[7672] = "2483-10-14T02:00:50" +ik[7672] = 1.731 +il[7672] = 168 +im[7672] = 0.155 +ij[7672] = 27.4 +id[7673] = "2483-11-09T01:16:14" +ik[7673] = 90 +il[7673] = -113 +im[7673] = 0.1744 +ij[7673] = 6 +id[7674] = "2483-12-29T14:40:54" +ik[7674] = 0 +il[7674] = 13 +im[7674] = 0.2511 +ij[7674] = 13 +id[7675] = "2484-01-19T22:50:52" +ik[7675] = 5.74 +il[7675] = 69 +im[7675] = 0.5537 +ij[7675] = 11 +id[7676] = "2484-01-21T00:28:56" +ik[7676] = 0.5708 +il[7676] = 47 +im[7676] = 0.5709 +ij[7676] = 2 +id[7677] = "2484-02-09T18:47:35" +ik[7677] = 42.17 +il[7677] = 69 +im[7677] = 0.065 +ij[7677] = 7.1556 +id[7678] = "2484-03-12T15:04:22" +ik[7678] = 74.02 +il[7678] = 132 +im[7678] = 0.2009 +ij[7678] = 14 +id[7679] = "2484-03-21T03:17:43" +ik[7679] = 4.308 +il[7679] = 152 +im[7679] = 0.1487 +ij[7679] = 27.3 +id[7680] = "2484-03-24T08:50:12" +ik[7680] = 3.382 +il[7680] = 159 +im[7680] = 0.0238 +ij[7680] = 28.4 +id[7681] = "2484-03-31T15:34:14" +ik[7681] = 90 +il[7681] = 179 +im[7681] = 0.2037 +ij[7681] = 5 +id[7682] = "2484-04-11T21:21:43" +ik[7682] = 1.033 +il[7682] = -151 +im[7682] = 0.1537 +ij[7682] = 27.5 +id[7683] = "2484-05-29T19:00:54" +ik[7683] = 4.11 +il[7683] = 3 +im[7683] = 0.1326 +ij[7683] = 27.6 +id[7684] = "2484-06-06T04:26:49" +ik[7684] = 0.492 +il[7684] = 25 +im[7684] = 0.0099 +ij[7684] = 28.6 +id[7685] = "2484-06-15T12:07:57" +ik[7685] = 54.38 +il[7685] = 54 +im[7685] = 0.1057 +ij[7685] = 8 +id[7686] = "2484-06-23T08:59:34" +ik[7686] = 1.491 +il[7686] = 78 +im[7686] = 0.0598 +ij[7686] = 28.7 +id[7687] = "2484-07-07T23:04:34" +ik[7687] = 5.99 +il[7687] = 122 +im[7687] = 0.0294 +ij[7687] = 27.2 +id[7688] = "2484-07-25T03:24:28" +ik[7688] = 0.195 +il[7688] = 174 +im[7688] = 0.0799 +ij[7688] = 27.91 +id[7689] = "2484-08-03T07:35:19" +ik[7689] = 0.596 +il[7689] = -158 +im[7689] = 0.0475 +ij[7689] = 28.8 +id[7690] = "2484-09-08T08:14:12" +ik[7690] = 2.42 +il[7690] = -47 +im[7690] = 0.0657 +ij[7690] = 28.1 +id[7691] = "2484-09-19T09:32:49" +ik[7691] = 0.042 +il[7691] = -13 +im[7691] = 0.0055 +ij[7691] = 28.5 +id[7692] = "2484-11-02T16:23:31" +ik[7692] = 0.91 +il[7692] = 103 +im[7692] = 0.0157 +ij[7692] = 12 +id[7693] = "2484-12-11T16:51:44" +ik[7693] = 0.56 +il[7693] = 38 +im[7693] = 0.092 +ij[7693] = 28.1 +id[7694] = "2485-01-15T14:38:10" +ik[7694] = 0.148 +il[7694] = 144 +im[7694] = 0.0539 +ij[7694] = 27.3 +id[7695] = "2485-02-02T07:03:03" +ik[7695] = 1.091 +il[7695] = -161 +im[7695] = 0.008 +ij[7695] = 27.5 +id[7696] = "2485-03-18T12:35:44" +ik[7696] = 2.2 +il[7696] = -23 +im[7696] = 0.0209 +ij[7696] = 27.6 +id[7697] = "2485-04-05T03:50:11" +ik[7697] = 54.224 +il[7697] = 32 +im[7697] = 0.0336 +ij[7697] = 9 +id[7698] = "2485-04-08T09:25:29" +ik[7698] = 3.069 +il[7698] = 42 +im[7698] = 0.0956 +ij[7698] = 28.6 +id[7699] = "2485-04-17T12:51:15" +ik[7699] = 1.574 +il[7699] = 71 +im[7699] = 0.0188 +ij[7699] = 28.7 +id[7700] = "2485-04-25T20:10:36" +ik[7700] = 2.751 +il[7700] = 97 +im[7700] = 0.1408 +ij[7700] = 27.2 +id[7701] = "2485-05-28T05:13:03" +ik[7701] = 3.372 +il[7701] = -163 +im[7701] = 0.1621 +ij[7701] = 28.8 +id[7702] = "2485-06-14T06:08:08" +ik[7702] = 90 +il[7702] = -111 +im[7702] = 0.097 +ij[7702] = 6 +id[7703] = "2485-08-01T15:04:49" +ik[7703] = 0 +il[7703] = 8 +im[7703] = 0.214 +ij[7703] = 13 +id[7704] = "2485-08-19T07:06:54" +ik[7704] = 0.5285 +il[7704] = 44 +im[7704] = 0.5285 +ij[7704] = 2 +id[7705] = "2485-08-23T10:20:38" +ik[7705] = 8.09 +il[7705] = 54 +im[7705] = 0.3165 +ij[7705] = 11 +id[7706] = "2485-09-14T17:10:24" +ik[7706] = 44.09 +il[7706] = 63 +im[7706] = 0.4426 +ij[7706] = 7.1643 +id[7707] = "2485-10-17T11:47:07" +ik[7707] = 76.86 +il[7707] = 128 +im[7707] = 0.1737 +ij[7707] = 14 +id[7708] = "2485-11-02T03:25:23" +ik[7708] = 90 +il[7708] = 168 +im[7708] = 0.0608 +ij[7708] = 5 +id[7709] = "2485-11-26T12:24:37" +ik[7709] = 0.359 +il[7709] = -118 +im[7709] = 0.1619 +ij[7709] = 28.5 +id[7710] = "2486-01-13T18:38:09" +ik[7710] = 3.791 +il[7710] = 33 +im[7710] = 0.0944 +ij[7710] = 27.1 +id[7711] = "2486-01-17T11:39:32" +ik[7711] = 53.734 +il[7711] = 44 +im[7711] = 0.0077 +ij[7711] = 8 +id[7712] = "2486-03-01T12:19:30" +ik[7712] = 0.967 +il[7712] = 178 +im[7712] = 0.0583 +ij[7712] = 27.3 +id[7713] = "2486-03-19T06:09:16" +ik[7713] = 0.621 +il[7713] = -127 +im[7713] = 0.0132 +ij[7713] = 27.5 +id[7714] = "2486-03-30T01:18:28" +ik[7714] = 1.714 +il[7714] = -94 +im[7714] = 0.0785 +ij[7714] = 28.1 +id[7715] = "2486-04-03T18:35:25" +ik[7715] = 0.545 +il[7715] = -79 +im[7715] = 0.0064 +ij[7715] = 28.4 +id[7716] = "2486-05-02T05:17:37" +ik[7716] = 3.44 +il[7716] = 8 +im[7716] = 0.0272 +ij[7716] = 27.6 +id[7717] = "2486-06-15T14:55:40" +ik[7717] = 0.1 +il[7717] = 121 +im[7717] = 0.032 +ij[7717] = 12 +id[7718] = "2486-07-17T20:51:56" +ik[7718] = 2.812 +il[7718] = 38 +im[7718] = 0.0044 +ij[7718] = 28.1 +id[7719] = "2486-10-23T15:51:15" +ik[7719] = 1.66 +il[7719] = -23 +im[7719] = 0.1118 +ij[7719] = 28.5 +id[7720] = "2486-10-24T16:14:09" +ik[7720] = 3.149 +il[7720] = -20 +im[7720] = 0.1079 +ij[7720] = 27.4 +id[7721] = "2486-11-03T09:17:20" +ik[7721] = 53.782 +il[7721] = 10 +im[7721] = 0.0753 +ij[7721] = 9 +id[7722] = "2486-12-20T19:04:49" +ik[7722] = 0.849 +il[7722] = 156 +im[7722] = 0.1597 +ij[7722] = 27.3 +id[7723] = "2487-01-09T19:12:23" +ik[7723] = 0.733 +il[7723] = -142 +im[7723] = 0.1362 +ij[7723] = 27.5 +id[7724] = "2487-01-23T09:21:51" +ik[7724] = 90 +il[7724] = -99 +im[7724] = 0.2121 +ij[7724] = 6 +id[7725] = "2487-03-13T11:47:34" +ik[7725] = 0 +il[7725] = 21 +im[7725] = 0.1377 +ij[7725] = 13 +id[7726] = "2487-04-03T14:16:48" +ik[7726] = 8.05 +il[7726] = 40 +im[7726] = 0.451 +ij[7726] = 11 +id[7727] = "2487-04-14T14:55:52" +ik[7727] = 0.5136 +il[7727] = 62 +im[7727] = 0.5137 +ij[7727] = 2 +id[7728] = "2487-04-24T11:51:09" +ik[7728] = 42 +il[7728] = 75 +im[7728] = 0.2439 +ij[7728] = 7.1622 +id[7729] = "2487-05-27T11:26:52" +ik[7729] = 74.99 +il[7729] = 140 +im[7729] = 0.2398 +ij[7729] = 14 +id[7730] = "2487-06-06T04:22:38" +ik[7730] = 4.27 +il[7730] = 163 +im[7730] = 0.1545 +ij[7730] = 27.6 +id[7731] = "2487-06-13T03:16:33" +ik[7731] = 90 +il[7731] = -179 +im[7731] = 0.1927 +ij[7731] = 5 +id[7732] = "2487-07-17T08:57:15" +ik[7732] = 2.341 +il[7732] = -72 +im[7732] = 0.0231 +ij[7732] = 28.7 +id[7733] = "2487-07-18T15:59:28" +ik[7733] = 0.661 +il[7733] = -68 +im[7733] = 0.0241 +ij[7733] = 28.6 +id[7734] = "2487-08-23T01:46:59" +ik[7734] = 0.078 +il[7734] = 40 +im[7734] = 0.1161 +ij[7734] = 28.8 +id[7735] = "2487-08-24T09:38:41" +ik[7735] = 54.498 +il[7735] = 44 +im[7735] = 0.1149 +ij[7735] = 8 +id[7736] = "2487-11-09T03:04:36" +ik[7736] = 0.428 +il[7736] = -79 +im[7736] = 0.0807 +ij[7736] = 28.1 +id[7737] = "2487-12-02T17:24:08" +ik[7737] = 0.301 +il[7737] = -6 +im[7737] = 0.0444 +ij[7737] = 28.1 +id[7738] = "2488-01-17T18:54:43" +ik[7738] = 0.86 +il[7738] = 116 +im[7738] = 0.0594 +ij[7738] = 12 +id[7739] = "2488-04-01T10:57:31" +ik[7739] = 2.74 +il[7739] = 159 +im[7739] = 0.0596 +ij[7739] = 27.6 +id[7740] = "2488-04-10T19:55:46" +ik[7740] = 0.457 +il[7740] = -172 +im[7740] = 0.0594 +ij[7740] = 28.4 +id[7741] = "2488-05-08T13:40:49" +ik[7741] = 3.707 +il[7741] = -85 +im[7741] = 0.0964 +ij[7741] = 27.2 +id[7742] = "2488-05-11T12:09:47" +ik[7742] = 0.979 +il[7742] = -76 +im[7742] = 0.056 +ij[7742] = 28.7 +id[7743] = "2488-05-20T02:51:04" +ik[7743] = 2.427 +il[7743] = -49 +im[7743] = 0.0987 +ij[7743] = 28.6 +id[7744] = "2488-06-13T00:02:42" +ik[7744] = 54.657 +il[7744] = 25 +im[7744] = 0.0063 +ij[7744] = 9 +id[7745] = "2488-06-13T01:59:31" +ik[7745] = 2.456 +il[7745] = 25 +im[7745] = 0.0062 +ij[7745] = 28.8 +id[7746] = "2488-08-23T04:51:11" +ik[7746] = 90 +il[7746] = -118 +im[7746] = 0.1371 +ij[7746] = 6 +id[7747] = "2488-10-12T11:27:19" +ik[7747] = 0 +il[7747] = 7 +im[7747] = 0.3756 +ij[7747] = 13 +id[7748] = "2488-11-03T22:13:26" +ik[7748] = 5.66 +il[7748] = 66 +im[7748] = 0.0455 +ij[7748] = 11 +id[7749] = "2488-11-10T11:19:37" +ik[7749] = 0.5487 +il[7749] = 46 +im[7749] = 0.5488 +ij[7749] = 2 +id[7750] = "2488-11-24T11:30:54" +ik[7750] = 43 +il[7750] = 63 +im[7750] = 0.4426 +ij[7750] = 7.1563 +id[7751] = "2488-12-26T02:18:37" +ik[7751] = 74.62 +il[7751] = 125 +im[7751] = 0.1886 +ij[7751] = 14 +id[7752] = "2489-01-13T15:57:14" +ik[7752] = 90 +il[7752] = 171 +im[7752] = 0.0301 +ij[7752] = 5 +id[7753] = "2489-01-22T21:08:49" +ik[7753] = 2.247 +il[7753] = -161 +im[7753] = 0.1712 +ij[7753] = 27.1 +id[7754] = "2489-03-06T14:07:15" +ik[7754] = 1.212 +il[7754] = -26 +im[7754] = 0.1466 +ij[7754] = 28.5 +id[7755] = "2489-03-14T10:48:49" +ik[7755] = 1.753 +il[7755] = -3 +im[7755] = 0.0155 +ij[7755] = 27.3 +id[7756] = "2489-04-01T17:53:16" +ik[7756] = 0.212 +il[7756] = 54 +im[7756] = 0.0819 +ij[7756] = 27.5 +id[7757] = "2489-04-02T14:26:44" +ik[7757] = 53.907 +il[7757] = 57 +im[7757] = 0.0956 +ij[7757] = 8 +id[7758] = "2489-05-16T12:28:23" +ik[7758] = 3.76 +il[7758] = -168 +im[7758] = 0.0627 +ij[7758] = 27.6 +id[7759] = "2489-06-08T16:51:10" +ik[7759] = 1.949 +il[7759] = -97 +im[7759] = 0.066 +ij[7759] = 28.1 +id[7760] = "2489-06-23T09:20:07" +ik[7760] = 5.329 +il[7760] = -53 +im[7760] = 0.0731 +ij[7760] = 27.2 +id[7761] = "2489-06-28T02:43:35" +ik[7761] = 0.551 +il[7761] = -38 +im[7761] = 0.0083 +ij[7761] = 28.7 +id[7762] = "2489-07-09T15:17:34" +ik[7762] = 0.153 +il[7762] = -3 +im[7762] = 0.0468 +ij[7762] = 28.1 +id[7763] = "2489-07-11T08:28:53" +ik[7763] = 0.748 +il[7763] = 2 +im[7763] = 0.0183 +ij[7763] = 28.6 +id[7764] = "2489-08-21T19:17:45" +ik[7764] = 1.31 +il[7764] = 107 +im[7764] = 0.0795 +ij[7764] = 12 +id[7765] = "2489-09-22T11:38:41" +ik[7765] = 3.154 +il[7765] = 34 +im[7765] = 0.0625 +ij[7765] = 28.1 +id[7766] = "2489-11-07T05:15:29" +ik[7766] = 3.911 +il[7766] = 162 +im[7766] = 0.0575 +ij[7766] = 27.4 +id[7767] = "2490-01-01T07:26:36" +ik[7767] = 0.485 +il[7767] = -29 +im[7767] = 0.1165 +ij[7767] = 27.3 +id[7768] = "2490-01-18T15:05:51" +ik[7768] = 53.611 +il[7768] = 24 +im[7768] = 0.1083 +ij[7768] = 9 +id[7769] = "2490-01-19T10:27:56" +ik[7769] = 1.117 +il[7769] = 27 +im[7769] = 0.0998 +ij[7769] = 27.5 +id[7770] = "2490-01-26T08:12:54" +ik[7770] = 0.118 +il[7770] = 48 +im[7770] = 0.0537 +ij[7770] = 28.5 +id[7771] = "2490-03-06T16:05:15" +ik[7771] = 1.03 +il[7771] = 172 +im[7771] = 0.1233 +ij[7771] = 27.6 +id[7772] = "2490-04-04T20:24:22" +ik[7772] = 90 +il[7772] = -97 +im[7772] = 0.1706 +ij[7772] = 6 +id[7773] = "2490-04-21T15:23:29" +ik[7773] = 0.342 +il[7773] = -57 +im[7773] = 0.1284 +ij[7773] = 27.2 +id[7774] = "2490-05-13T19:28:33" +ik[7774] = 4.209 +il[7774] = -9 +im[7774] = 0.3675 +ij[7774] = 28.7 +id[7775] = "2490-05-21T02:19:04" +ik[7775] = 0 +il[7775] = 1 +im[7775] = 0.1177 +ij[7775] = 13 +id[7776] = "2490-06-04T06:27:21" +ik[7776] = 1.676 +il[7776] = 28 +im[7776] = 0.0266 +ij[7776] = 28.7 +id[7777] = "2490-06-04T22:26:41" +ik[7777] = 0.827 +il[7777] = 19 +im[7777] = 0.0838 +ij[7777] = 28.4 +id[7778] = "2490-06-10T20:40:46" +ik[7778] = 0.5223 +il[7778] = 25 +im[7778] = 0.5223 +ij[7778] = 2 +id[7779] = "2490-06-12T14:47:02" +ik[7779] = 0.2 +il[7779] = 36 +im[7779] = 0.4795 +ij[7779] = 11 +id[7780] = "2490-07-04T05:28:46" +ik[7780] = 44.13 +il[7780] = 72 +im[7780] = 0.306 +ij[7780] = 7.1661 +id[7781] = "2490-07-12T07:04:13" +ik[7781] = 4.693 +il[7781] = 85 +im[7781] = 0.1892 +ij[7781] = 28.4 +id[7782] = "2490-08-01T05:53:57" +ik[7782] = 4.493 +il[7782] = 125 +im[7782] = 0.1904 +ij[7782] = 28.7 +id[7783] = "2490-08-07T05:56:34" +ik[7783] = 78.15 +il[7783] = 139 +im[7783] = 0.2245 +ij[7783] = 14 +id[7784] = "2490-08-21T17:45:09" +ik[7784] = 90 +il[7784] = 177 +im[7784] = 0.1873 +ij[7784] = 5 +id[7785] = "2490-08-26T08:34:30" +ik[7785] = 2.428 +il[7785] = -172 +im[7785] = 0.0352 +ij[7785] = 28.6 +id[7786] = "2490-09-08T00:26:38" +ik[7786] = 1.395 +il[7786] = -131 +im[7786] = 0.1133 +ij[7786] = 28.8 +id[7787] = "2490-11-02T11:39:39" +ik[7787] = 54.142 +il[7787] = 39 +im[7787] = 0.1265 +ij[7787] = 8 +id[7788] = "2490-12-31T02:09:42" +ik[7788] = 4.615 +il[7788] = -139 +im[7788] = 0.0912 +ij[7788] = 27.1 +id[7789] = "2491-01-07T11:44:26" +ik[7789] = 2.561 +il[7789] = -116 +im[7789] = 0.0375 +ij[7789] = 28.1 +id[7790] = "2491-02-13T16:17:45" +ik[7790] = 4.622 +il[7790] = 0 +im[7790] = 0.084 +ij[7790] = 28.1 +id[7791] = "2491-02-14T19:15:02" +ik[7791] = 0.503 +il[7791] = 4 +im[7791] = 0.0901 +ij[7791] = 27.3 +id[7792] = "2491-04-04T10:27:50" +ik[7792] = 1.3 +il[7792] = 131 +im[7792] = 0.072 +ij[7792] = 12 +id[7793] = "2491-05-23T20:49:15" +ik[7793] = 4.331 +il[7793] = 98 +im[7793] = 0.0241 +ij[7793] = 27.2 +id[7794] = "2491-06-06T05:06:34" +ik[7794] = 0.593 +il[7794] = 140 +im[7794] = 0.048 +ij[7794] = 28.7 +id[7795] = "2491-06-10T11:16:56" +ik[7795] = 0.107 +il[7795] = 153 +im[7795] = 0.0258 +ij[7795] = 27.9 +id[7796] = "2491-07-01T20:19:14" +ik[7796] = 1.184 +il[7796] = -140 +im[7796] = 0.0983 +ij[7796] = 28.6 +id[7797] = "2491-07-02T20:18:14" +ik[7797] = 1.868 +il[7797] = -137 +im[7797] = 0.0946 +ij[7797] = 28.8 +id[7798] = "2491-07-19T21:44:21" +ik[7798] = 4.411 +il[7798] = -85 +im[7798] = 0.0764 +ij[7798] = 28.1 +id[7799] = "2491-08-20T23:02:20" +ik[7799] = 54.443 +il[7799] = 13 +im[7799] = 0.0428 +ij[7799] = 9 +id[7800] = "2491-10-13T21:32:22" +ik[7800] = 1.66 +il[7800] = 177 +im[7800] = 0.1649 +ij[7800] = 27.4 +id[7801] = "2491-11-06T12:35:34" +ik[7801] = 90 +il[7801] = -110 +im[7801] = 0.0288 +ij[7801] = 6 +id[7802] = "2491-12-27T05:57:01" +ik[7802] = 0 +il[7802] = 16 +im[7802] = 0.4434 +ij[7802] = 13 +id[7803] = "2492-01-17T11:29:45" +ik[7803] = 5.43 +il[7803] = 72 +im[7803] = 0.2655 +ij[7803] = 11 +id[7804] = "2492-01-22T03:47:22" +ik[7804] = 0.553 +il[7804] = 52 +im[7804] = 0.5531 +ij[7804] = 2 +id[7805] = "2492-02-07T06:57:48" +ik[7805] = 42.04 +il[7805] = 71 +im[7805] = 0.3214 +ij[7805] = 7.1554 +id[7806] = "2492-03-10T02:45:32" +ik[7806] = 73.87 +il[7806] = 134 +im[7806] = 0.0344 +ij[7806] = 14 +id[7807] = "2492-03-21T08:20:22" +ik[7807] = 4.124 +il[7807] = 160 +im[7807] = 0.183 +ij[7807] = 27.3 +id[7808] = "2492-03-29T04:07:51" +ik[7808] = 90 +il[7808] = -179 +im[7808] = 0.1656 +ij[7808] = 5 +id[7809] = "2492-04-11T18:19:56" +ik[7809] = 0.952 +il[7809] = -136 +im[7809] = 0.0941 +ij[7809] = 27.5 +id[7810] = "2492-05-29T10:45:31" +ik[7810] = 4.1 +il[7810] = 12 +im[7810] = 0.1265 +ij[7810] = 27.6 +id[7811] = "2492-06-03T18:05:02" +ik[7811] = 0.561 +il[7811] = 28 +im[7811] = 0.1015 +ij[7811] = 28.5 +id[7812] = "2492-06-13T04:33:01" +ik[7812] = 54.367 +il[7812] = 57 +im[7812] = 0.1008 +ij[7812] = 8 +id[7813] = "2492-07-07T13:06:47" +ik[7813] = 5.965 +il[7813] = 131 +im[7813] = 0.0191 +ij[7813] = 27.2 +id[7814] = "2492-07-22T21:12:14" +ik[7814] = 0.891 +il[7814] = 177 +im[7814] = 0.0122 +ij[7814] = 28.7 +id[7815] = "2492-07-24T17:05:16" +ik[7815] = 0.172 +il[7815] = -177 +im[7815] = 0.0447 +ij[7815] = 27.91 +id[7816] = "2492-08-17T07:16:53" +ik[7816] = 0.727 +il[7816] = -105 +im[7816] = 0.0704 +ij[7816] = 28.8 +id[7817] = "2492-08-22T10:53:02" +ik[7817] = 0.102 +il[7817] = -89 +im[7817] = 0.0136 +ij[7817] = 28.6 +id[7818] = "2492-08-29T01:36:37" +ik[7818] = 0.545 +il[7818] = -69 +im[7818] = 0.0912 +ij[7818] = 28.1 +id[7819] = "2492-09-05T10:29:47" +ik[7819] = 1.002 +il[7819] = -46 +im[7819] = 0.0116 +ij[7819] = 28.4 +id[7820] = "2492-10-31T06:08:38" +ik[7820] = 0.96 +il[7820] = 106 +im[7820] = 0.0718 +ij[7820] = 12 +id[7821] = "2493-01-15T04:01:42" +ik[7821] = 0.154 +il[7821] = 153 +im[7821] = 0.0804 +ij[7821] = 27.3 +id[7822] = "2493-02-01T20:36:49" +ik[7822] = 1.091 +il[7822] = -152 +im[7822] = 0.0367 +ij[7822] = 27.5 +id[7823] = "2493-03-18T02:51:26" +ik[7823] = 2.18 +il[7823] = -14 +im[7823] = 0.0603 +ij[7823] = 27.6 +id[7824] = "2493-04-02T18:53:29" +ik[7824] = 54.201 +il[7824] = 35 +im[7824] = 0.0639 +ij[7824] = 9 +id[7825] = "2493-04-24T09:17:42" +ik[7825] = 2.272 +il[7825] = 102 +im[7825] = 0.118 +ij[7825] = 28.5 +id[7826] = "2493-04-25T12:15:55" +ik[7826] = 2.709 +il[7826] = 106 +im[7826] = 0.1337 +ij[7826] = 27.2 +id[7827] = "2493-05-18T04:12:10" +ik[7827] = 2.253 +il[7827] = 176 +im[7827] = 0.0435 +ij[7827] = 28.7 +id[7828] = "2493-06-11T23:45:09" +ik[7828] = 90 +il[7828] = -108 +im[7828] = 0.1947 +ij[7828] = 6 +id[7829] = "2493-06-14T15:36:34" +ik[7829] = 2.466 +il[7829] = -101 +im[7829] = 0.1432 +ij[7829] = 28.8 +id[7830] = "2493-07-05T23:37:49" +ik[7830] = 0.714 +il[7830] = -50 +im[7830] = 0.1607 +ij[7830] = 28.6 +id[7831] = "2493-07-30T02:45:59" +ik[7831] = 0 +il[7831] = 4 +im[7831] = 0.131 +ij[7831] = 13 +id[7832] = "2493-08-20T12:17:59" +ik[7832] = 0.5263 +il[7832] = 50 +im[7832] = 0.5263 +ij[7832] = 2 +id[7833] = "2493-08-21T01:39:21" +ik[7833] = 7.96 +il[7833] = 50 +im[7833] = 0.522 +ij[7833] = 11 +id[7834] = "2493-09-12T01:50:33" +ik[7834] = 43.96 +il[7834] = 66 +im[7834] = 0.2872 +ij[7834] = 7.1646 +id[7835] = "2493-09-25T22:22:22" +ik[7835] = 6 +il[7835] = 90 +im[7835] = 0.1917 +ij[7835] = 28.6 +id[7836] = "2493-10-15T05:10:22" +ik[7836] = 77.1 +il[7836] = 131 +im[7836] = 0.2675 +ij[7836] = 14 +id[7837] = "2493-10-30T18:31:09" +ik[7837] = 90 +il[7837] = 170 +im[7837] = 0.189 +ij[7837] = 5 +id[7838] = "2494-01-13T09:43:02" +ik[7838] = 3.826 +il[7838] = 41 +im[7838] = 0.1124 +ij[7838] = 27.1 +id[7839] = "2494-01-14T23:27:17" +ik[7839] = 53.739 +il[7839] = 46 +im[7839] = 0.093 +ij[7839] = 8 +id[7840] = "2494-03-01T02:07:55" +ik[7840] = 0.951 +il[7840] = -173 +im[7840] = 0.0898 +ij[7840] = 27.3 +id[7841] = "2494-03-09T19:35:28" +ik[7841] = 2.024 +il[7841] = -146 +im[7841] = 0.0708 +ij[7841] = 28.1 +id[7842] = "2494-03-18T19:39:29" +ik[7842] = 0.629 +il[7842] = -118 +im[7842] = 0.029 +ij[7842] = 27.5 +id[7843] = "2494-04-16T16:33:53" +ik[7843] = 2.406 +il[7843] = -30 +im[7843] = 0.0502 +ij[7843] = 28.1 +id[7844] = "2494-05-01T18:24:17" +ik[7844] = 3.43 +il[7844] = 16 +im[7844] = 0.0588 +ij[7844] = 27.6 +id[7845] = "2494-06-13T09:14:24" +ik[7845] = 0.05 +il[7845] = 124 +im[7845] = 0.0809 +ij[7845] = 12 +id[7846] = "2494-07-22T15:16:36" +ik[7846] = 1.437 +il[7846] = 63 +im[7846] = 0.0509 +ij[7846] = 28.8 +id[7847] = "2494-08-13T07:50:49" +ik[7847] = 0.197 +il[7847] = 130 +im[7847] = 0.0839 +ij[7847] = 28.6 +id[7848] = "2494-10-13T05:40:24" +ik[7848] = 0.709 +il[7848] = -44 +im[7848] = 0.0882 +ij[7848] = 28.4 +id[7849] = "2494-10-24T06:59:55" +ik[7849] = 3.12 +il[7849] = -11 +im[7849] = 0.1167 +ij[7849] = 27.4 +id[7850] = "2494-10-31T21:29:58" +ik[7850] = 53.802 +il[7850] = 12 +im[7850] = 0.0222 +ij[7850] = 9 +id[7851] = "2494-12-20T13:14:09" +ik[7851] = 0.855 +il[7851] = 165 +im[7851] = 0.1358 +ij[7851] = 27.3 +id[7852] = "2495-01-09T17:07:29" +ik[7852] = 0.686 +il[7852] = -132 +im[7852] = 0.1724 +ij[7852] = 27.5 +id[7853] = "2495-01-20T22:09:38" +ik[7853] = 90 +il[7853] = -97 +im[7853] = 0.2143 +ij[7853] = 6 +id[7854] = "2495-03-10T05:10:49" +ik[7854] = 0 +il[7854] = 21 +im[7854] = 0.2997 +ij[7854] = 13 +id[7855] = "2495-03-20T23:58:58" +ik[7855] = 0.5159 +il[7855] = 39 +im[7855] = 0.516 +ij[7855] = 2 +id[7856] = "2495-04-01T04:35:02" +ik[7856] = 8.19 +il[7856] = 68 +im[7856] = 0.4755 +ij[7856] = 11 +id[7857] = "2495-04-22T05:14:23" +ik[7857] = 43 +il[7857] = 78 +im[7857] = 0.0982 +ij[7857] = 7.162 +id[7858] = "2495-05-25T00:44:11" +ik[7858] = 75.81 +il[7858] = 143 +im[7858] = 0.1808 +ij[7858] = 14 +id[7859] = "2495-06-06T08:48:19" +ik[7859] = 4.29 +il[7859] = 174 +im[7859] = 0.096 +ij[7859] = 27.6 +id[7860] = "2495-06-10T18:46:12" +ik[7860] = 90 +il[7860] = -174 +im[7860] = 0.2088 +ij[7860] = 5 +id[7861] = "2495-08-16T15:57:44" +ik[7861] = 1.378 +il[7861] = 31 +im[7861] = 0.0362 +ij[7861] = 28.7 +id[7862] = "2495-08-22T02:39:19" +ik[7862] = 54.503 +il[7862] = 47 +im[7862] = 0.0938 +ij[7862] = 8 +id[7863] = "2495-09-06T11:21:50" +ik[7863] = 0.212 +il[7863] = 94 +im[7863] = 0.0821 +ij[7863] = 28.8 +id[7864] = "2495-09-07T09:30:40" +ik[7864] = 0.542 +il[7864] = 97 +im[7864] = 0.0936 +ij[7864] = 28.5 +id[7865] = "2495-10-05T04:28:33" +ik[7865] = 0.759 +il[7865] = -178 +im[7865] = 0.0522 +ij[7865] = 28.6 +id[7866] = "2495-10-21T23:53:39" +ik[7866] = 4.998 +il[7866] = -126 +im[7866] = 0.0855 +ij[7866] = 28.1 +id[7867] = "2495-12-07T04:03:28" +ik[7867] = 4.984 +il[7867] = 18 +im[7867] = 0.0805 +ij[7867] = 27.4 +id[7868] = "2496-01-15T05:03:50" +ik[7868] = 0.8 +il[7868] = 118 +im[7868] = 0.0125 +ij[7868] = 12 +id[7869] = "2496-04-01T00:12:17" +ik[7869] = 2.73 +il[7869] = 167 +im[7869] = 0.0235 +ij[7869] = 27.6 +id[7870] = "2496-05-08T03:31:55" +ik[7870] = 3.684 +il[7870] = -76 +im[7870] = 0.1053 +ij[7870] = 27.2 +id[7871] = "2496-06-09T02:24:25" +ik[7871] = 1.373 +il[7871] = 23 +im[7871] = 0.108 +ij[7871] = 28.7 +id[7872] = "2496-06-10T18:10:54" +ik[7872] = 54.652 +il[7872] = 28 +im[7872] = 0.0855 +ij[7872] = 9 +id[7873] = "2496-06-27T19:34:27" +ik[7873] = 1.92 +il[7873] = 81 +im[7873] = 0.0477 +ij[7873] = 28.8 +id[7874] = "2496-08-03T08:43:26" +ik[7874] = 0.968 +il[7874] = -168 +im[7874] = 0.1392 +ij[7874] = 28.5 +id[7875] = "2496-08-09T17:02:15" +ik[7875] = 2.488 +il[7875] = -149 +im[7875] = 0.1122 +ij[7875] = 28.6 +id[7876] = "2496-08-20T19:14:30" +ik[7876] = 90 +il[7876] = -115 +im[7876] = 0.2189 +ij[7876] = 6 +id[7877] = "2496-10-10T00:44:38" +ik[7877] = 0 +il[7877] = 10 +im[7877] = 0.0865 +ij[7877] = 13 +id[7878] = "2496-11-01T11:34:04" +ik[7878] = 5.94 +il[7878] = 69 +im[7878] = 0.4082 +ij[7878] = 11 +id[7879] = "2496-11-11T15:30:26" +ik[7879] = 0.5394 +il[7879] = 52 +im[7879] = 0.5395 +ij[7879] = 2 +id[7880] = "2496-11-22T03:53:14" +ik[7880] = 43.13 +il[7880] = 65 +im[7880] = 0.2951 +ij[7880] = 7.1565 +id[7881] = "2496-12-23T17:08:00" +ik[7881] = 74.68 +il[7881] = 128 +im[7881] = 0.2613 +ij[7881] = 14 +id[7882] = "2497-01-11T04:52:06" +ik[7882] = 90 +il[7882] = 173 +im[7882] = 0.1815 +ij[7882] = 5 +id[7883] = "2497-01-22T19:20:48" +ik[7883] = 2.327 +il[7883] = -151 +im[7883] = 0.1821 +ij[7883] = 27.1 +id[7884] = "2497-02-01T12:18:34" +ik[7884] = 2.955 +il[7884] = -121 +im[7884] = 0.1031 +ij[7884] = 28.4 +id[7885] = "2497-03-14T02:26:08" +ik[7885] = 1.718 +il[7885] = 6 +im[7885] = 0.0597 +ij[7885] = 27.3 +id[7886] = "2497-03-31T03:18:28" +ik[7886] = 53.892 +il[7886] = 59 +im[7886] = 0.0137 +ij[7886] = 8 +id[7887] = "2497-04-01T08:41:15" +ik[7887] = 0.231 +il[7887] = 63 +im[7887] = 0.0361 +ij[7887] = 27.5 +id[7888] = "2497-05-16T02:09:13" +ik[7888] = 3.75 +il[7888] = -159 +im[7888] = 0.0272 +ij[7888] = 27.6 +id[7889] = "2497-05-17T16:27:50" +ik[7889] = 1.481 +il[7889] = -155 +im[7889] = 0.0575 +ij[7889] = 28.1 +id[7890] = "2497-06-09T04:33:18" +ik[7890] = 1.961 +il[7890] = -86 +im[7890] = 0.0752 +ij[7890] = 28.1 +id[7891] = "2497-06-22T22:26:46" +ik[7891] = 5.311 +il[7891] = -44 +im[7891] = 0.0916 +ij[7891] = 27.2 +id[7892] = "2497-08-19T12:51:50" +ik[7892] = 1.29 +il[7892] = 110 +im[7892] = 0.0821 +ij[7892] = 12 +id[7893] = "2497-09-26T09:00:51" +ik[7893] = 1.267 +il[7893] = 45 +im[7893] = 0.0213 +ij[7893] = 28.6 +id[7894] = "2497-10-09T23:35:05" +ik[7894] = 0.56 +il[7894] = 87 +im[7894] = 0.0502 +ij[7894] = 28.5 +id[7895] = "2497-11-06T18:51:01" +ik[7895] = 3.893 +il[7895] = 171 +im[7895] = 0.0862 +ij[7895] = 27.4 +id[7896] = "2497-12-31T21:50:08" +ik[7896] = 0.493 +il[7896] = -21 +im[7896] = 0.0992 +ij[7896] = 27.3 +id[7897] = "2498-01-16T01:49:36" +ik[7897] = 53.601 +il[7897] = 26 +im[7897] = 0.1024 +ij[7897] = 9 +id[7898] = "2498-01-19T01:26:35" +ik[7898] = 1.112 +il[7898] = 36 +im[7898] = 0.1193 +ij[7898] = 27.5 +id[7899] = "2498-03-06T10:23:12" +ik[7899] = 0.96 +il[7899] = -179 +im[7899] = 0.1513 +ij[7899] = 27.6 +id[7900] = "2498-04-02T13:08:19" +ik[7900] = 90 +il[7900] = -94 +im[7900] = 0.1976 +ij[7900] = 6 +id[7901] = "2498-04-22T07:32:21" +ik[7901] = 0.191 +il[7901] = -47 +im[7901] = 0.1841 +ij[7901] = 27.2 +id[7902] = "2498-05-18T17:08:27" +ik[7902] = 0 +il[7902] = 13 +im[7902] = 0.3818 +ij[7902] = 13 +id[7903] = "2498-06-10T07:52:19" +ik[7903] = 0.12 +il[7903] = 73 +im[7903] = 0.4932 +ij[7903] = 11 +id[7904] = "2498-06-11T23:33:28" +ik[7904] = 0.5313 +il[7904] = 52 +im[7904] = 0.5313 +ij[7904] = 2 +id[7905] = "2498-06-12T22:55:13" +ik[7905] = 5.497 +il[7905] = 53 +im[7905] = 0.5182 +ij[7905] = 27.2 +id[7906] = "2498-07-01T21:36:05" +ik[7906] = 44.19 +il[7906] = 75 +im[7906] = 0.0009 +ij[7906] = 7.1659 +id[7907] = "2498-08-04T21:41:51" +ik[7907] = 78.19 +il[7907] = 142 +im[7907] = 0.2437 +ij[7907] = 14 +id[7908] = "2498-08-19T10:25:34" +ik[7908] = 90 +il[7908] = -180 +im[7908] = 0.1802 +ij[7908] = 5 +id[7909] = "2498-09-06T19:02:21" +ik[7909] = 2.358 +il[7909] = -125 +im[7909] = 0.1733 +ij[7909] = 28.7 +id[7910] = "2498-09-23T19:40:22" +ik[7910] = 0.638 +il[7910] = -73 +im[7910] = 0.09 +ij[7910] = 28.8 +id[7911] = "2498-10-31T02:28:44" +ik[7911] = 54.159 +il[7911] = 41 +im[7911] = 0.0869 +ij[7911] = 8 +id[7912] = "2498-11-18T04:40:56" +ik[7912] = 0.809 +il[7912] = 97 +im[7912] = 0.1073 +ij[7912] = 28.6 +id[7913] = "2498-12-19T17:40:50" +ik[7913] = 0.267 +il[7913] = -164 +im[7913] = 0.0985 +ij[7913] = 28.5 +id[7914] = "2498-12-30T15:42:34" +ik[7914] = 4.637 +il[7914] = -130 +im[7914] = 0.0659 +ij[7914] = 27.1 +id[7915] = "2499-02-11T03:10:56" +ik[7915] = 1.068 +il[7915] = 2 +im[7915] = 0.029 +ij[7915] = 28.4 +id[7916] = "2499-02-14T08:31:28" +ik[7916] = 0.494 +il[7916] = 12 +im[7916] = 0.0755 +ij[7916] = 27.3 +id[7917] = "2499-04-01T23:19:40" +ik[7917] = 1.33 +il[7917] = 133 +im[7917] = 0.078 +ij[7917] = 12 +id[7918] = "2499-05-23T10:01:41" +ik[7918] = 4.316 +il[7918] = 107 +im[7918] = 0.0554 +ij[7918] = 27.2 +id[7919] = "2499-06-10T00:29:39" +ik[7919] = 0.124 +il[7919] = 162 +im[7919] = 0.0191 +ij[7919] = 27.9 +id[7920] = "2499-06-14T16:46:16" +ik[7920] = 2.003 +il[7920] = 176 +im[7920] = 0.0631 +ij[7920] = 28.1 +id[7921] = "2499-07-03T02:51:56" +ik[7921] = 1.927 +il[7921] = -126 +im[7921] = 0.102 +ij[7921] = 28.1 +id[7922] = "2499-07-03T16:46:59" +ik[7922] = 0.909 +il[7922] = -125 +im[7922] = 0.1014 +ij[7922] = 28.7 +id[7923] = "2499-07-17T00:18:00" +ik[7923] = 1.44 +il[7923] = -83 +im[7923] = 0.0928 +ij[7923] = 28.8 +id[7924] = "2499-08-18T15:45:12" +ik[7924] = 54.46 +il[7924] = 16 +im[7924] = 0.1074 +ij[7924] = 9 +id[7925] = "2499-09-22T08:39:33" +ik[7925] = 3.494 +il[7925] = 121 +im[7925] = 0.0352 +ij[7925] = 28.6 +id[7926] = "2499-10-13T17:28:48" +ik[7926] = 1.587 +il[7926] = -174 +im[7926] = 0.1573 +ij[7926] = 27.4 +id[7927] = "2499-11-03T23:54:54" +ik[7927] = 90 +il[7927] = -108 +im[7927] = 0.1441 +ij[7927] = 6 +id[7928] = "2499-11-22T03:46:30" +ik[7928] = 3.439 +il[7928] = -61 +im[7928] = 0.0435 +ij[7928] = 28.5 +id[7929] = "2499-12-24T21:42:18" +ik[7929] = 0 +il[7929] = 16 +im[7929] = 0.339 +ij[7929] = 13 +id[7930] = "2500-01-09T15:53:08" +ik[7930] = 0.5621 +il[7930] = 47 +im[7930] = 0.5622 +ij[7930] = 2 +id[7931] = "2500-01-15T00:11:31" +ik[7931] = 5.1 +il[7931] = 60 +im[7931] = 0.1924 +ij[7931] = 11 +id[7932] = "2500-02-04T22:46:53" +ik[7932] = 42.04 +il[7932] = 74 +im[7932] = 0.4544 +ij[7932] = 7.1552 +id[7933] = "2500-03-08T14:17:35" +ik[7933] = 73.69 +il[7933] = 136 +im[7933] = 0.2224 +ij[7933] = 14 +id[7934] = "2500-03-22T11:54:35" +ik[7934] = 3.956 +il[7934] = 169 +im[7934] = 0.2013 +ij[7934] = 27.3 +id[7935] = "2500-03-27T16:37:04" +ik[7935] = 90 +il[7935] = -179 +im[7935] = 0.0108 +ij[7935] = 5 +id[7936] = "2500-04-12T14:46:08" +ik[7936] = 0.877 +il[7936] = -126 +im[7936] = 0.0243 +ij[7936] = 27.5 +id[7937] = "2500-05-30T02:26:09" +ik[7937] = 4.09 +il[7937] = 21 +im[7937] = 0.098 +ij[7937] = 27.6 +id[7938] = "2500-06-11T20:54:33" +ik[7938] = 54.355 +il[7938] = 60 +im[7938] = 0.0271 +ij[7938] = 8 +id[7939] = "2500-07-08T03:01:26" +ik[7939] = 5.94 +il[7939] = 140 +im[7939] = 0.0568 +ij[7939] = 27.2 +id[7940] = "2500-07-25T06:38:52" +ik[7940] = 0.149 +il[7940] = -168 +im[7940] = 0.0075 +ij[7940] = 27.91 +id[7941] = "2500-07-30T09:50:32" +ik[7941] = 5.983 +il[7941] = -153 +im[7941] = 0.0832 +ij[7941] = 28.1 +id[7942] = "2500-08-20T06:45:38" +ik[7942] = 0.094 +il[7942] = -89 +im[7942] = 0.0697 +ij[7942] = 28.7 +id[7943] = "2500-09-01T06:37:35" +ik[7943] = 0.713 +il[7943] = -52 +im[7943] = 0.0885 +ij[7943] = 28.8 +id[7944] = "2500-10-29T20:05:16" +ik[7944] = 1 +il[7944] = 108 +im[7944] = 0.0783 +ij[7944] = 12 +id[7945] = "2501-01-15T17:25:14" +ik[7945] = 0.161 +il[7945] = 162 +im[7945] = 0.0918 +ij[7945] = 27.3 +id[7946] = "2501-01-17T06:52:24" +ik[7946] = 0.62 +il[7946] = 166 +im[7946] = 0.0832 +ij[7946] = 28.5 +id[7947] = "2501-02-02T10:13:41" +ik[7947] = 1.091 +il[7947] = -144 +im[7947] = 0.0734 +ij[7947] = 27.5 +id[7948] = "2501-02-16T23:45:10" +ik[7948] = 0.932 +il[7948] = -99 +im[7948] = 0.08 +ij[7948] = 28.4 +id[7949] = "2501-03-18T17:15:01" +ik[7949] = 2.15 +il[7949] = -6 +im[7949] = 0.0911 +ij[7949] = 27.6 +id[7950] = "2501-04-01T09:49:41" +ik[7950] = 54.178 +il[7950] = 37 +im[7950] = 0.1222 +ij[7950] = 9 +id[7951] = "2501-04-26T04:35:27" +ik[7951] = 2.667 +il[7951] = 115 +im[7951] = 0.1025 +ij[7951] = 27.2 +id[7952] = "2501-06-10T17:24:50" +ik[7952] = 90 +il[7952] = -105 +im[7952] = 0.1676 +ij[7952] = 6 +id[7953] = "2501-06-21T21:05:19" +ik[7953] = 1.139 +il[7953] = -77 +im[7953] = 0.0426 +ij[7953] = 28.7 +id[7954] = "2501-07-07T20:00:36" +ik[7954] = 0.182 +il[7954] = -41 +im[7954] = 0.1536 +ij[7954] = 28.8 +id[7955] = "2501-07-28T14:18:02" +ik[7955] = 0 +il[7955] = 11 +im[7955] = 0.3776 +ij[7955] = 13 +id[7956] = "2501-08-19T17:05:16" +ik[7956] = 7.82 +il[7956] = 69 +im[7956] = 0.4099 +ij[7956] = 11 +id[7957] = "2501-08-22T12:06:50" +ik[7957] = 0.5151 +il[7957] = 47 +im[7957] = 0.5152 +ij[7957] = 2 +id[7958] = "2501-09-10T13:22:36" +ik[7958] = 43.96 +il[7958] = 68 +im[7958] = 0.0709 +ij[7958] = 7.1648 +id[7959] = "2501-10-02T02:18:49" +ik[7959] = 4.004 +il[7959] = 108 +im[7959] = 0.297 +ij[7959] = 28.8 +id[7960] = "2501-10-13T22:25:23" +ik[7960] = 77.34 +il[7960] = 134 +im[7960] = 0.2056 +ij[7960] = 14 +id[7961] = "2501-10-29T09:45:46" +ik[7961] = 90 +il[7961] = 173 +im[7961] = 0.1937 +ij[7961] = 5 +id[7962] = "2502-01-03T16:38:29" +ik[7962] = 0.026 +il[7962] = 18 +im[7962] = 0.0902 +ij[7962] = 28.6 +id[7963] = "2502-01-13T11:18:35" +ik[7963] = 53.746 +il[7963] = 48 +im[7963] = 0.1122 +ij[7963] = 8 +id[7964] = "2502-01-14T00:40:47" +ik[7964] = 3.859 +il[7964] = 50 +im[7964] = 0.1141 +ij[7964] = 27.1 +id[7965] = "2502-02-28T11:49:37" +ik[7965] = 1.398 +il[7965] = -179 +im[7965] = 0.1041 +ij[7965] = 28.1 +id[7966] = "2502-03-01T15:52:21" +ik[7966] = 0.935 +il[7966] = -164 +im[7966] = 0.1031 +ij[7966] = 27.3 +id[7967] = "2502-03-19T09:12:48" +ik[7967] = 0.637 +il[7967] = -110 +im[7967] = 0.0636 +ij[7967] = 27.5 +id[7968] = "2502-03-24T10:26:15" +ik[7968] = 0.068 +il[7968] = -94 +im[7968] = 0.0236 +ij[7968] = 28.5 +id[7969] = "2502-05-02T07:35:59" +ik[7969] = 3.42 +il[7969] = 25 +im[7969] = 0.0781 +ij[7969] = 27.6 +id[7970] = "2502-06-12T03:30:14" +ik[7970] = 0 +il[7970] = 127 +im[7970] = 0.0825 +ij[7970] = 12 +id[7971] = "2502-07-28T19:25:06" +ik[7971] = 0.64 +il[7971] = 89 +im[7971] = 0.0851 +ij[7971] = 28.7 +id[7972] = "2502-08-06T10:45:33" +ik[7972] = 1.074 +il[7972] = 116 +im[7972] = 0.015 +ij[7972] = 28.8 +id[7973] = "2502-08-07T12:48:05" +ik[7973] = 0.188 +il[7973] = 119 +im[7973] = 0.0337 +ij[7973] = 28.1 +id[7974] = "2502-09-12T17:16:56" +ik[7974] = 4.932 +il[7974] = -130 +im[7974] = 0.0979 +ij[7974] = 28.1 +id[7975] = "2502-10-24T21:49:14" +ik[7975] = 3.091 +il[7975] = -2 +im[7975] = 0.1062 +ij[7975] = 27.4 +id[7976] = "2502-10-30T09:53:16" +ik[7976] = 53.823 +il[7976] = 15 +im[7976] = 0.1059 +ij[7976] = 9 +id[7977] = "2502-11-08T08:51:04" +ik[7977] = 3.061 +il[7977] = 42 +im[7977] = 0.0842 +ij[7977] = 28.6 +id[7978] = "2502-12-21T07:37:41" +ik[7978] = 0.86 +il[7978] = 174 +im[7978] = 0.0858 +ij[7978] = 27.3 +id[7979] = "2503-01-10T15:40:48" +ik[7979] = 0.633 +il[7979] = -122 +im[7979] = 0.1925 +ij[7979] = 27.5 +id[7980] = "2503-01-19T10:45:55" +ik[7980] = 90 +il[7980] = -94 +im[7980] = 0.0797 +ij[7980] = 6 +id[7981] = "2503-03-08T22:25:50" +ik[7981] = 0 +il[7981] = 24 +im[7981] = 0.4308 +ij[7981] = 13 +id[7982] = "2503-03-23T03:55:59" +ik[7982] = 0.5228 +il[7982] = 51 +im[7982] = 0.5229 +ij[7982] = 2 +id[7983] = "2503-03-30T18:50:24" +ik[7983] = 8.33 +il[7983] = 70 +im[7983] = 0.2054 +ij[7983] = 11 +id[7984] = "2503-04-20T09:40:27" +ik[7984] = 42.47 +il[7984] = 80 +im[7984] = 0.4076 +ij[7984] = 7.1619 +id[7985] = "2503-05-15T10:25:14" +ik[7985] = 1.237 +il[7985] = 127 +im[7985] = 0.2929 +ij[7985] = 28.5 +id[7986] = "2503-05-17T20:37:32" +ik[7986] = 0.359 +il[7986] = 132 +im[7986] = 0.279 +ij[7986] = 28.4 +id[7987] = "2503-05-23T13:49:14" +ik[7987] = 75.64 +il[7987] = 145 +im[7987] = 0.0244 +ij[7987] = 14 +id[7988] = "2503-06-07T12:07:05" +ik[7988] = 4.31 +il[7988] = -176 +im[7988] = 0.0262 +ij[7988] = 27.6 +id[7989] = "2503-06-09T10:12:18" +ik[7989] = 90 +il[7989] = -171 +im[7989] = 0.0998 +ij[7989] = 5 +id[7990] = "2503-08-20T19:36:24" +ik[7990] = 54.506 +il[7990] = 50 +im[7990] = 0.0131 +ij[7990] = 8 +id[7991] = "2503-09-14T01:30:51" +ik[7991] = 0.257 +il[7991] = 124 +im[7991] = 0.0922 +ij[7991] = 28.7 +id[7992] = "2503-09-21T16:37:12" +ik[7992] = 0.357 +il[7992] = 147 +im[7992] = 0.0509 +ij[7992] = 28.8 +id[7993] = "2503-12-07T17:17:41" +ik[7993] = 4.97 +il[7993] = 16 +im[7993] = 0.0628 +ij[7993] = 27.4 +id[7994] = "2504-01-13T15:21:36" +ik[7994] = 0.75 +il[7994] = 120 +im[7994] = 0.0739 +ij[7994] = 12 +id[7995] = "2504-03-26T12:54:43" +ik[7995] = 4.105 +il[7995] = 157 +im[7995] = 0.0886 +ij[7995] = 28.1 +id[7996] = "2504-04-01T13:34:04" +ik[7996] = 2.71 +il[7996] = 176 +im[7996] = 0.0194 +ij[7996] = 27.6 +id[7997] = "2504-04-02T01:39:12" +ik[7997] = 3.917 +il[7997] = 178 +im[7997] = 0.011 +ij[7997] = 28.1 +id[7998] = "2504-04-14T23:51:56" +ik[7998] = 0.973 +il[7998] = -142 +im[7998] = 0.0608 +ij[7998] = 28.5 +id[7999] = "2504-05-08T17:23:00" +ik[7999] = 3.662 +il[7999] = -68 +im[7999] = 0.0937 +ij[7999] = 27.2 +id[8000] = "2504-06-09T12:19:05" +ik[8000] = 54.646 +il[8000] = 31 +im[8000] = 0.1146 +ij[8000] = 9 +id[8001] = "2504-07-08T02:50:29" +ik[8001] = 0.892 +il[8001] = 119 +im[8001] = 0.1264 +ij[8001] = 28.7 +id[8002] = "2504-07-14T00:28:56" +ik[8002] = 0.962 +il[8002] = 137 +im[8002] = 0.0753 +ij[8002] = 28.8 +id[8003] = "2504-08-19T09:44:00" +ik[8003] = 90 +il[8003] = -113 +im[8003] = 0.1671 +ij[8003] = 6 +id[8004] = "2504-10-08T13:49:41" +ik[8004] = 0 +il[8004] = 12 +im[8004] = 0.2888 +ij[8004] = 13 +id[8005] = "2504-10-31T00:59:02" +ik[8005] = 6.22 +il[8005] = 71 +im[8005] = 0.5104 +ij[8005] = 11 +id[8006] = "2504-10-31T19:54:42" +ik[8006] = 0.5207 +il[8006] = 45 +im[8006] = 0.5208 +ij[8006] = 2 +id[8007] = "2504-11-20T12:54:16" +ik[8007] = 42.96 +il[8007] = 67 +im[8007] = 0.091 +ij[8007] = 7.1567 +id[8008] = "2504-12-22T07:42:00" +ik[8008] = 74.74 +il[8008] = 130 +im[8008] = 0.1525 +ij[8008] = 14 +id[8009] = "2505-01-09T17:53:09" +ik[8009] = 90 +il[8009] = 175 +im[8009] = 0.2281 +ij[8009] = 5 +id[8010] = "2505-01-23T16:53:40" +ik[8010] = 2.404 +il[8010] = -141 +im[8010] = 0.1754 +ij[8010] = 27.1 +id[8011] = "2505-02-18T20:09:54" +ik[8011] = 1.281 +il[8011] = -60 +im[8011] = 0.0697 +ij[8011] = 28.6 +id[8012] = "2505-03-14T18:00:21" +ik[8012] = 1.683 +il[8012] = 15 +im[8012] = 0.0951 +ij[8012] = 27.3 +id[8013] = "2505-03-29T16:03:06" +ik[8013] = 53.878 +il[8013] = 62 +im[8013] = 0.0879 +ij[8013] = 8 +id[8014] = "2505-04-01T23:25:14" +ik[8014] = 0.249 +il[8014] = 72 +im[8014] = 0.021 +ij[8014] = 27.5 +id[8015] = "2505-04-30T19:01:29" +ik[8015] = 3.364 +il[8015] = 161 +im[8015] = 0.0471 +ij[8015] = 28.1 +id[8016] = "2505-05-16T15:52:04" +ik[8016] = 3.73 +il[8016] = -157 +im[8016] = 0.0124 +ij[8016] = 27.6 +id[8017] = "2505-06-08T08:36:57" +ik[8017] = 0.697 +il[8017] = -82 +im[8017] = 0.087 +ij[8017] = 28.4 +id[8018] = "2505-06-20T22:25:40" +ik[8018] = 0.001 +il[8018] = -44 +im[8018] = 0.0724 +ij[8018] = 28.5 +id[8019] = "2505-06-23T11:33:26" +ik[8019] = 5.292 +il[8019] = -36 +im[8019] = 0.0914 +ij[8019] = 27.2 +id[8020] = "2505-08-18T06:34:33" +ik[8020] = 1.27 +il[8020] = 113 +im[8020] = 0.0363 +ij[8020] = 12 +id[8021] = "2505-10-07T23:23:16" +ik[8021] = 4.82 +il[8021] = 88 +im[8021] = 0.093 +ij[8021] = 28.1 +id[8022] = "2505-11-07T08:26:07" +ik[8022] = 3.876 +il[8022] = 180 +im[8022] = 0.099 +ij[8022] = 27.4 +id[8023] = "2505-11-12T23:21:41" +ik[8023] = 2.828 +il[8023] = -163 +im[8023] = 0.0371 +ij[8023] = 28.1 +id[8024] = "2505-12-25T14:04:33" +ik[8024] = 1.417 +il[8024] = -33 +im[8024] = 0.0788 +ij[8024] = 28.6 +id[8025] = "2506-01-01T12:17:14" +ik[8025] = 0.501 +il[8025] = -12 +im[8025] = 0.0623 +ij[8025] = 27.3 +id[8026] = "2506-01-14T12:29:47" +ik[8026] = 53.593 +il[8026] = 29 +im[8026] = 0.0241 +ij[8026] = 9 +id[8027] = "2506-01-19T16:31:27" +ik[8027] = 1.107 +il[8027] = 45 +im[8027] = 0.1208 +ij[8027] = 27.5 +id[8028] = "2506-03-07T04:47:57" +ik[8028] = 0.89 +il[8028] = -170 +im[8028] = 0.1587 +ij[8028] = 27.6 +id[8029] = "2506-04-01T05:44:18" +ik[8029] = 90 +il[8029] = -92 +im[8029] = 0.0924 +ij[8029] = 6 +id[8030] = "2506-04-24T04:31:00" +ik[8030] = 0.03 +il[8030] = -37 +im[8030] = 0.223 +ij[8030] = 27.2 +id[8031] = "2506-05-18T07:42:27" +ik[8031] = 0 +il[8031] = 17 +im[8031] = 0.4358 +ij[8031] = 13 +id[8032] = "2506-06-08T15:51:12" +ik[8032] = 4.381 +il[8032] = 32 +im[8032] = 0.161 +ij[8032] = 27.2 +id[8033] = "2506-06-09T00:59:02" +ik[8033] = 0.45 +il[8033] = 74 +im[8033] = 0.205 +ij[8033] = 11 +id[8034] = "2506-06-11T22:52:47" +ik[8034] = 4.927 +il[8034] = 56 +im[8034] = 0.4646 +ij[8034] = 27.2 +id[8035] = "2506-06-14T03:31:15" +ik[8035] = 0.5292 +il[8035] = 58 +im[8035] = 0.5292 +ij[8035] = 2 +id[8036] = "2506-06-30T13:22:11" +ik[8036] = 43.24 +il[8036] = 77 +im[8036] = 0.2921 +ij[8036] = 7.166 +id[8037] = "2506-08-03T14:16:57" +ik[8037] = 77.27 +il[8037] = 144 +im[8037] = 0.1199 +ij[8037] = 14 +id[8038] = "2506-08-18T03:08:38" +ik[8038] = 90 +il[8038] = -177 +im[8038] = 0.058 +ij[8038] = 5 +id[8039] = "2506-08-22T09:31:23" +ik[8039] = 2.728 +il[8039] = -164 +im[8039] = 0.1796 +ij[8039] = 28.5 +id[8040] = "2506-10-06T12:17:25" +ik[8040] = 0.481 +il[8040] = -27 +im[8040] = 0.1371 +ij[8040] = 28.7 +id[8041] = "2506-10-09T20:55:49" +ik[8041] = 0.127 +il[8041] = -17 +im[8041] = 0.1263 +ij[8041] = 28.8 +id[8042] = "2506-10-29T17:21:22" +ik[8042] = 54.176 +il[8042] = 44 +im[8042] = 0.0066 +ij[8042] = 8 +id[8043] = "2506-12-31T05:15:27" +ik[8043] = 4.658 +il[8043] = -121 +im[8043] = 0.03 +ij[8043] = 27.1 +id[8044] = "2507-02-14T21:44:20" +ik[8044] = 0.484 +il[8044] = 21 +im[8044] = 0.0463 +ij[8044] = 27.3 +id[8045] = "2507-02-16T15:17:16" +ik[8045] = 0.032 +il[8045] = 26 +im[8045] = 0.0696 +ij[8045] = 28.6 +id[8046] = "2507-03-31T11:55:40" +ik[8046] = 1.35 +il[8046] = 135 +im[8046] = 0.0286 +ij[8046] = 12 +id[8047] = "2507-05-15T17:41:25" +ik[8047] = 3.707 +il[8047] = 89 +im[8047] = 0.0233 +ij[8047] = 28.1 +id[8048] = "2507-05-23T23:11:27" +ik[8048] = 4.3 +il[8048] = 115 +im[8048] = 0.0769 +ij[8048] = 27.2 +id[8049] = "2507-06-10T13:45:41" +ik[8049] = 0.142 +il[8049] = 170 +im[8049] = 0.0547 +ij[8049] = 27.9 +id[8050] = "2507-06-13T15:26:03" +ik[8050] = 0.743 +il[8050] = 180 +im[8050] = 0.006 +ij[8050] = 28.1 +id[8051] = "2507-07-04T07:01:19" +ik[8051] = 0.759 +il[8051] = -116 +im[8051] = 0.0988 +ij[8051] = 28.4 +id[8052] = "2507-07-19T12:58:10" +ik[8052] = 0.578 +il[8052] = -69 +im[8052] = 0.0957 +ij[8052] = 28.5 +id[8053] = "2507-07-31T04:23:05" +ik[8053] = 0.628 +il[8053] = -33 +im[8053] = 0.0667 +ij[8053] = 28.7 +id[8054] = "2507-08-01T08:08:26" +ik[8054] = 0.744 +il[8054] = -30 +im[8054] = 0.0857 +ij[8054] = 28.8 +id[8055] = "2507-08-17T08:31:36" +ik[8055] = 54.477 +il[8055] = 19 +im[8055] = 0.1011 +ij[8055] = 9 +id[8056] = "2507-10-14T13:53:40" +ik[8056] = 1.509 +il[8056] = -164 +im[8056] = 0.1296 +ij[8056] = 27.4 +id[8057] = "2507-11-02T11:19:32" +ik[8057] = 90 +il[8057] = -106 +im[8057] = 0.2066 +ij[8057] = 6 +id[8058] = "2507-12-23T14:17:24" +ik[8058] = 0 +il[8058] = 21 +im[8058] = 0.0451 +ij[8058] = 13 +id[8059] = "2508-01-11T18:43:40" +ik[8059] = 0.5786 +il[8059] = 61 +im[8059] = 0.5787 +ij[8059] = 2 +id[8060] = "2508-01-13T12:59:02" +ik[8060] = 4.76 +il[8060] = 64 +im[8060] = 0.5342 +ij[8060] = 11 +id[8061] = "2508-02-03T13:19:59" +ik[8061] = 41.96 +il[8061] = 76 +im[8061] = 0.3082 +ij[8061] = 7.1552 +id[8062] = "2508-03-06T01:56:41" +ik[8062] = 73.49 +il[8062] = 138 +im[8062] = 0.2801 +ij[8062] = 14 +id[8063] = "2508-03-22T14:14:34" +ik[8063] = 3.801 +il[8063] = 179 +im[8063] = 0.2084 +ij[8063] = 27.3 +id[8064] = "2508-03-25T05:01:51" +ik[8064] = 90 +il[8064] = -174 +im[8064] = 0.1493 +ij[8064] = 5 +id[8065] = "2508-04-04T09:43:55" +ik[8065] = 2.273 +il[8065] = -142 +im[8065] = 0.1969 +ij[8065] = 28.6 +id[8066] = "2508-04-12T10:47:54" +ik[8066] = 0.807 +il[8066] = -117 +im[8066] = 0.0469 +ij[8066] = 27.5 +id[8067] = "2508-05-29T17:50:49" +ik[8067] = 4.08 +il[8067] = 29 +im[8067] = 0.054 +ij[8067] = 27.6 +id[8068] = "2508-06-09T13:08:58" +ik[8068] = 54.341 +il[8068] = 62 +im[8068] = 0.067 +ij[8068] = 8 +id[8069] = "2508-07-07T16:57:52" +ik[8069] = 5.916 +il[8069] = 148 +im[8069] = 0.0852 +ij[8069] = 27.2 +id[8070] = "2508-07-24T19:52:19" +ik[8070] = 0.127 +il[8070] = -160 +im[8070] = 0.0442 +ij[8070] = 27.91 +id[8071] = "2508-09-14T21:48:09" +ik[8071] = 0.525 +il[8071] = 0 +im[8071] = 0.079 +ij[8071] = 28.7 +id[8072] = "2508-09-15T05:07:09" +ik[8072] = 0.54 +il[8072] = 1 +im[8072] = 0.0816 +ij[8072] = 28.8 +id[8073] = "2508-10-27T10:07:40" +ik[8073] = 1.04 +il[8073] = 111 +im[8073] = 0.0319 +ij[8073] = 12 +id[8074] = "2508-12-23T08:10:53" +ik[8074] = 4.66 +il[8074] = 100 +im[8074] = 0.0265 +ij[8074] = 28.1 +id[8075] = "2509-01-10T16:37:29" +ik[8075] = 1.497 +il[8075] = 156 +im[8075] = 0.0275 +ij[8075] = 28.1 +id[8076] = "2509-01-15T06:52:20" +ik[8076] = 0.168 +il[8076] = 170 +im[8076] = 0.0863 +ij[8076] = 27.3 +id[8077] = "2509-02-01T23:50:34" +ik[8077] = 1.091 +il[8077] = -135 +im[8077] = 0.097 +ij[8077] = 27.5 +id[8078] = "2509-02-10T04:10:33" +ik[8078] = 0.459 +il[8078] = -110 +im[8078] = 0.0329 +ij[8078] = 28.6 +id[8079] = "2509-03-18T07:37:41" +ik[8079] = 2.12 +il[8079] = 3 +im[8079] = 0.1076 +ij[8079] = 27.6 +id[8080] = "2509-03-30T00:31:39" +ik[8080] = 54.155 +il[8080] = 40 +im[8080] = 0.1061 +ij[8080] = 9 +id[8081] = "2509-04-25T21:03:00" +ik[8081] = 2.623 +il[8081] = 124 +im[8081] = 0.0509 +ij[8081] = 27.2 +id[8082] = "2509-06-08T11:08:03" +ik[8082] = 90 +il[8082] = -102 +im[8082] = 0.0378 +ij[8082] = 6 +id[8083] = "2509-07-26T01:57:08" +ik[8083] = 0 +il[8083] = 16 +im[8083] = 0.3451 +ij[8083] = 13 +id[8084] = "2509-08-10T08:13:22" +ik[8084] = 0.5106 +il[8084] = 46 +im[8084] = 0.5107 +ij[8084] = 2 +id[8085] = "2509-08-17T08:34:04" +ik[8085] = 7.67 +il[8085] = 63 +im[8085] = 0.0931 +ij[8085] = 11 +id[8086] = "2509-09-08T04:52:48" +ik[8086] = 44.12 +il[8086] = 71 +im[8086] = 0.3565 +ij[8086] = 7.165 +id[8087] = "2509-10-11T15:55:35" +ik[8087] = 77.58 +il[8087] = 137 +im[8087] = 0.0239 +ij[8087] = 14 +id[8088] = "2509-10-23T00:40:53" +ik[8088] = 1.462 +il[8088] = 165 +im[8088] = 0.1193 +ij[8088] = 28.8 +id[8089] = "2509-10-24T08:44:35" +ik[8089] = 1.304 +il[8089] = 169 +im[8089] = 0.0584 +ij[8089] = 28.7 +id[8090] = "2509-10-27T01:00:23" +ik[8090] = 90 +il[8090] = 176 +im[8090] = 0.0683 +ij[8090] = 5 +id[8091] = "2509-11-22T01:52:01" +ik[8091] = 0.354 +il[8091] = -114 +im[8091] = 0.0701 +ij[8091] = 28.4 +id[8092] = "2509-12-05T23:50:21" +ik[8092] = 0.63 +il[8092] = -61 +im[8092] = 0.1128 +ij[8092] = 28.5 +id[8093] = "2510-01-10T23:17:00" +ik[8093] = 53.753 +il[8093] = 51 +im[8093] = 0.0507 +ij[8093] = 8 +id[8094] = "2510-01-13T15:31:00" +ik[8094] = 3.892 +il[8094] = 59 +im[8094] = 0.0994 +ij[8094] = 27.1 +id[8095] = "2510-03-01T05:37:13" +ik[8095] = 0.92 +il[8095] = -156 +im[8095] = 0.097 +ij[8095] = 27.3 +id[8096] = "2510-03-18T22:42:33" +ik[8096] = 0.644 +il[8096] = -101 +im[8096] = 0.0886 +ij[8096] = 27.5 +id[8097] = "2510-04-04T06:23:19" +ik[8097] = 0.793 +il[8097] = -51 +im[8097] = 0.0766 +ij[8097] = 28.6 +id[8098] = "2510-05-01T20:43:37" +ik[8098] = 3.41 +il[8098] = 34 +im[8098] = 0.0842 +ij[8098] = 27.6 +id[8099] = "2510-05-05T19:08:15" +ik[8099] = 0.494 +il[8099] = 34 +im[8099] = 0.0522 +ij[8099] = 28.1 +id[8100] = "2510-06-09T21:38:52" +ik[8100] = 0.05 +il[8100] = 130 +im[8100] = 0.0353 +ij[8100] = 12 +id[8101] = "2510-08-20T12:07:29" +ik[8101] = 0.519 +il[8101] = 169 +im[8101] = 0.039 +ij[8101] = 28.8 +id[8102] = "2510-08-23T13:50:09" +ik[8102] = 0.504 +il[8102] = 179 +im[8102] = 0.0247 +ij[8102] = 28.7 +id[8103] = "2510-10-24T12:42:33" +ik[8103] = 3.062 +il[8103] = 7 +im[8103] = 0.076 +ij[8103] = 27.4 +id[8104] = "2510-10-27T22:23:41" +ik[8104] = 53.844 +il[8104] = 17 +im[8104] = 0.122 +ij[8104] = 9 +id[8105] = "2510-11-01T01:27:59" +ik[8105] = 1.926 +il[8105] = 30 +im[8105] = 0.1098 +ij[8105] = 28.5 +id[8106] = "2510-12-21T02:22:33" +ik[8106] = 0.864 +il[8106] = -176 +im[8106] = 0.0212 +ij[8106] = 27.3 +id[8107] = "2511-01-10T15:00:20" +ik[8107] = 0.575 +il[8107] = -112 +im[8107] = 0.196 +ij[8107] = 27.5 +id[8108] = "2511-01-16T23:17:47" +ik[8108] = 90 +il[8108] = -92 +im[8108] = 0.1076 +ij[8108] = 6 +id[8109] = "2511-03-05T15:56:02" +ik[8109] = 0 +il[8109] = 24 +im[8109] = 0.2107 +ij[8109] = 13 +id[8110] = "2511-03-24T06:41:01" +ik[8110] = 0.5223 +il[8110] = 63 +im[8110] = 0.5223 +ij[8110] = 2 +id[8111] = "2511-03-28T08:51:21" +ik[8111] = 8.45 +il[8111] = 73 +im[8111] = 0.2694 +ij[8111] = 11 +id[8112] = "2511-04-17T23:29:47" +ik[8112] = 43.32 +il[8112] = 82 +im[8112] = 0.4082 +ij[8112] = 7.1613 +id[8113] = "2511-05-12T23:01:14" +ik[8113] = 2.558 +il[8113] = 129 +im[8113] = 0.1468 +ij[8113] = 28.6 +id[8114] = "2511-05-21T01:40:34" +ik[8114] = 76.41 +il[8114] = 147 +im[8114] = 0.2044 +ij[8114] = 14 +id[8115] = "2511-06-07T01:34:00" +ik[8115] = 90 +il[8115] = -168 +im[8115] = 0.0755 +ij[8115] = 5 +id[8116] = "2511-06-07T14:07:38" +ik[8116] = 4.33 +il[8116] = -167 +im[8116] = 0.0563 +ij[8116] = 27.6 +id[8117] = "2511-08-18T12:40:35" +ik[8117] = 54.51 +il[8117] = 53 +im[8117] = 0.0739 +ij[8117] = 8 +id[8118] = "2511-10-05T19:34:10" +ik[8118] = 0.336 +il[8118] = -159 +im[8118] = 0.0201 +ij[8118] = 28.8 +id[8119] = "2511-10-09T20:55:58" +ik[8119] = 0.521 +il[8119] = -147 +im[8119] = 0.0634 +ij[8119] = 28.7 +id[8120] = "2512-01-11T01:43:40" +ik[8120] = 0.69 +il[8120] = 122 +im[8120] = 0.0874 +ij[8120] = 12 +id[8121] = "2512-02-17T08:45:13" +ik[8121] = 0.996 +il[8121] = 60 +im[8121] = 0.0403 +ij[8121] = 27.5 +id[8122] = "2512-02-21T13:29:25" +ik[8122] = 0.422 +il[8122] = 72 +im[8122] = 0.0379 +ij[8122] = 28.1 +id[8123] = "2512-03-14T05:48:54" +ik[8123] = 3.602 +il[8123] = 129 +im[8123] = 0.09 +ij[8123] = 28.1 +id[8124] = "2512-03-27T05:06:51" +ik[8124] = 1.642 +il[8124] = 169 +im[8124] = 0.0912 +ij[8124] = 28.6 +id[8125] = "2512-04-01T02:56:30" +ik[8125] = 2.7 +il[8125] = -175 +im[8125] = 0.057 +ij[8125] = 27.6 +id[8126] = "2512-05-08T07:19:26" +ik[8126] = 3.639 +il[8126] = -59 +im[8126] = 0.0652 +ij[8126] = 27.2 +id[8127] = "2512-06-07T06:23:43" +ik[8127] = 54.64 +il[8127] = 34 +im[8127] = 0.0709 +ij[8127] = 9 +id[8128] = "2512-07-29T22:53:54" +ik[8128] = 0.478 +il[8128] = -165 +im[8128] = 0.1276 +ij[8128] = 28.8 +id[8129] = "2512-08-06T00:08:29" +ik[8129] = 0.855 +il[8129] = -143 +im[8129] = 0.1187 +ij[8129] = 28.7 +id[8130] = "2512-08-17T00:23:14" +ik[8130] = 90 +il[8130] = -110 +im[8130] = 0.0171 +ij[8130] = 6 +id[8131] = "2512-10-06T01:41:01" +ik[8131] = 0 +il[8131] = 15 +im[8131] = 0.4248 +ij[8131] = 13 +id[8132] = "2512-10-20T05:13:09" +ik[8132] = 0.5277 +il[8132] = 42 +im[8132] = 0.5277 +ij[8132] = 2 +id[8133] = "2512-10-28T14:26:52" +ik[8133] = 6.48 +il[8133] = 63 +im[8133] = 0.2617 +ij[8133] = 11 +id[8134] = "2512-11-18T02:07:43" +ik[8134] = 43.02 +il[8134] = 70 +im[8134] = 0.3937 +ij[8134] = 7.1569 +id[8135] = "2512-12-19T22:49:27" +ik[8135] = 74.88 +il[8135] = 133 +im[8135] = 0.0754 +ij[8135] = 14 +id[8136] = "2513-01-07T06:56:51" +ik[8136] = 90 +il[8136] = 178 +im[8136] = 0.1327 +ij[8136] = 5 +id[8137] = "2513-01-23T13:54:33" +ik[8137] = 2.478 +il[8137] = -132 +im[8137] = 0.1486 +ij[8137] = 27.1 +id[8138] = "2513-03-14T03:41:02" +ik[8138] = 0.865 +il[8138] = 23 +im[8138] = 0.1181 +ij[8138] = 28.5 +id[8139] = "2513-03-14T09:24:20" +ik[8139] = 1.65 +il[8139] = 24 +im[8139] = 0.1157 +ij[8139] = 27.3 +id[8140] = "2513-03-27T04:40:38" +ik[8140] = 53.864 +il[8140] = 64 +im[8140] = 0.1243 +ij[8140] = 8 +id[8141] = "2513-04-01T14:05:40" +ik[8141] = 0.267 +il[8141] = 81 +im[8141] = 0.0686 +ij[8141] = 27.5 +id[8142] = "2513-05-16T05:32:24" +ik[8142] = 3.72 +il[8142] = -142 +im[8142] = 0.0503 +ij[8142] = 27.6 +id[8143] = "2513-05-19T00:33:33" +ik[8143] = 0.937 +il[8143] = -134 +im[8143] = 0.0109 +ij[8143] = 28.6 +id[8144] = "2513-06-23T00:41:25" +ik[8144] = 5.274 +il[8144] = -27 +im[8144] = 0.0733 +ij[8144] = 27.2 +id[8145] = "2513-07-16T08:22:50" +ik[8145] = 2.776 +il[8145] = 33 +im[8145] = 0.0358 +ij[8145] = 28.1 +id[8146] = "2513-08-16T00:23:02" +ik[8146] = 1.24 +il[8146] = 116 +im[8146] = 0.0321 +ij[8146] = 12 +id[8147] = "2513-09-17T02:29:54" +ik[8147] = 0.99 +il[8147] = 34 +im[8147] = 0.0097 +ij[8147] = 28.7 +id[8148] = "2513-10-25T15:42:20" +ik[8148] = 2.822 +il[8148] = 151 +im[8148] = 0.0857 +ij[8148] = 28.1 +id[8149] = "2513-11-06T22:02:06" +ik[8149] = 3.859 +il[8149] = -172 +im[8149] = 0.092 +ij[8149] = 27.4 +id[8150] = "2513-12-27T00:52:07" +ik[8150] = 0.574 +il[8150] = -19 +im[8150] = 0.087 +ij[8150] = 28.4 +id[8151] = "2514-01-01T02:44:46" +ik[8151] = 0.509 +il[8151] = -3 +im[8151] = 0.0187 +ij[8151] = 27.3 +id[8152] = "2514-01-11T23:09:59" +ik[8152] = 53.585 +il[8152] = 31 +im[8152] = 0.0754 +ij[8152] = 9 +id[8153] = "2514-01-19T07:43:53" +ik[8153] = 1.1 +il[8153] = 53 +im[8153] = 0.1032 +ij[8153] = 27.5 +id[8154] = "2514-02-02T10:07:40" +ik[8154] = 0.263 +il[8154] = 97 +im[8154] = 0.0678 +ij[8154] = 28.5 +id[8155] = "2514-03-06T23:44:20" +ik[8155] = 0.82 +il[8155] = -160 +im[8155] = 0.146 +ij[8155] = 27.6 +id[8156] = "2514-03-25T08:53:13" +ik[8156] = 4.963 +il[8156] = -103 +im[8156] = 0.202 +ij[8156] = 28.6 +id[8157] = "2514-03-29T22:16:45" +ik[8157] = 90 +il[8157] = -89 +im[8157] = 0.0711 +ij[8157] = 6 +id[8158] = "2514-04-25T08:20:46" +ik[8158] = 0.139 +il[8158] = -27 +im[8158] = 0.242 +ij[8158] = 27.2 +id[8159] = "2514-05-14T22:49:54" +ik[8159] = 0 +il[8159] = 14 +im[8159] = 0.1887 +ij[8159] = 13 +id[8160] = "2514-06-05T18:48:46" +ik[8160] = 3.678 +il[8160] = 61 +im[8160] = 0.3 +ij[8160] = 27.2 +id[8161] = "2514-06-06T18:02:52" +ik[8161] = 0.78 +il[8161] = 62 +im[8161] = 0.1997 +ij[8161] = 11 +id[8162] = "2514-06-15T08:34:18" +ik[8162] = 0.5148 +il[8162] = 64 +im[8162] = 0.5149 +ij[8162] = 2 +id[8163] = "2514-06-28T04:47:41" +ik[8163] = 44.25 +il[8163] = 80 +im[8163] = 0.3953 +ij[8163] = 7.1656 +id[8164] = "2514-08-01T05:07:28" +ik[8164] = 78.26 +il[8164] = 147 +im[8164] = 0.0843 +ij[8164] = 14 +id[8165] = "2514-08-15T19:51:41" +ik[8165] = 90 +il[8165] = -175 +im[8165] = 0.1151 +ij[8165] = 5 +id[8166] = "2514-10-24T12:20:52" +ik[8166] = 0.138 +il[8166] = 38 +im[8166] = 0.1222 +ij[8166] = 28.8 +id[8167] = "2514-10-27T08:21:07" +ik[8167] = 54.192 +il[8167] = 47 +im[8167] = 0.0942 +ij[8167] = 8 +id[8168] = "2514-11-01T20:21:33" +ik[8168] = 0.701 +il[8168] = 64 +im[8168] = 0.0261 +ij[8168] = 28.7 +id[8169] = "2514-12-30T18:48:19" +ik[8169] = 4.68 +il[8169] = -113 +im[8169] = 0.0126 +ij[8169] = 27.1 +id[8170] = "2515-02-07T11:15:56" +ik[8170] = 2.886 +il[8170] = 8 +im[8170] = 0.0842 +ij[8170] = 28.1 +id[8171] = "2515-02-14T10:54:33" +ik[8171] = 0.475 +il[8171] = 29 +im[8171] = 0.0122 +ij[8171] = 27.3 +id[8172] = "2515-03-29T00:20:09" +ik[8172] = 1.37 +il[8172] = 138 +im[8172] = 0.0438 +ij[8172] = 12 +id[8173] = "2515-05-10T16:13:00" +ik[8173] = 1.861 +il[8173] = 83 +im[8173] = 0.0803 +ij[8173] = 28.6 +id[8174] = "2515-05-21T15:14:32" +ik[8174] = 0.525 +il[8174] = 118 +im[8174] = 0.0792 +ij[8174] = 28.1 +id[8175] = "2515-05-23T12:25:12" +ik[8175] = 4.284 +il[8175] = 124 +im[8175] = 0.0854 +ij[8175] = 27.2 +id[8176] = "2515-06-10T02:58:33" +ik[8176] = 0.161 +il[8176] = 179 +im[8176] = 0.0828 +ij[8176] = 27.9 +id[8177] = "2515-08-15T01:28:41" +ik[8177] = 54.493 +il[8177] = 22 +im[8177] = 0.0317 +ij[8177] = 9 +id[8178] = "2515-08-15T21:05:28" +ik[8178] = 0.199 +il[8178] = 25 +im[8178] = 0.0515 +ij[8178] = 28.8 +id[8179] = "2515-08-26T12:48:14" +ik[8179] = 0.328 +il[8179] = 57 +im[8179] = 0.0622 +ij[8179] = 28.7 +id[8180] = "2515-10-14T10:43:52" +ik[8180] = 1.429 +il[8180] = -155 +im[8180] = 0.0852 +ij[8180] = 27.4 +id[8181] = "2515-10-30T22:45:04" +ik[8181] = 90 +il[8181] = -104 +im[8181] = 0.12 +ij[8181] = 6 +id[8182] = "2515-12-21T05:07:55" +ik[8182] = 0 +il[8182] = 24 +im[8182] = 0.3183 +ij[8182] = 13 +id[8183] = "2516-01-11T01:45:07" +ik[8183] = 4.42 +il[8183] = 79 +im[8183] = 0.5313 +ij[8183] = 11 +id[8184] = "2516-01-12T22:08:22" +ik[8184] = 0.582 +il[8184] = 57 +im[8184] = 0.5821 +ij[8184] = 2 +id[8185] = "2516-02-01T05:11:30" +ik[8185] = 42 +il[8185] = 79 +im[8185] = 0.0477 +ij[8185] = 7.1551 +id[8186] = "2516-03-03T14:06:16" +ik[8186] = 73.37 +il[8186] = 141 +im[8186] = 0.1513 +ij[8186] = 14 +id[8187] = "2516-03-22T15:28:19" +ik[8187] = 3.659 +il[8187] = -174 +im[8187] = 0.2017 +ij[8187] = 27.3 +id[8188] = "2516-03-22T17:23:59" +ik[8188] = 90 +il[8188] = -172 +im[8188] = 0.202 +ij[8188] = 5 +id[8189] = "2516-04-01T12:30:14" +ik[8189] = 2.328 +il[8189] = -141 +im[8189] = 0.0867 +ij[8189] = 28.4 +id[8190] = "2516-04-12T06:25:13" +ik[8190] = 0.741 +il[8190] = -107 +im[8190] = 0.1044 +ij[8190] = 27.5 +id[8191] = "2516-05-29T09:17:07" +ik[8191] = 4.07 +il[8191] = 38 +im[8191] = 0.0062 +ij[8191] = 27.6 +id[8192] = "2516-06-07T05:19:49" +ik[8192] = 54.328 +il[8192] = 65 +im[8192] = 0.1166 +ij[8192] = 8 +id[8193] = "2516-06-10T22:52:45" +ik[8193] = 0.563 +il[8193] = 77 +im[8193] = 0.0639 +ij[8193] = 28.5 +id[8194] = "2516-06-30T23:01:53" +ik[8194] = 0.403 +il[8194] = 138 +im[8194] = 0.0457 +ij[8194] = 28.6 +id[8195] = "2516-07-07T06:51:38" +ik[8195] = 5.891 +il[8195] = 157 +im[8195] = 0.0985 +ij[8195] = 27.2 +id[8196] = "2516-07-24T09:46:04" +ik[8196] = 0.103 +il[8196] = -151 +im[8196] = 0.079 +ij[8196] = 27.91 +id[8197] = "2516-10-25T00:18:43" +ik[8197] = 1.08 +il[8197] = 113 +im[8197] = 0.0397 +ij[8197] = 12 +id[8198] = "2516-12-23T18:28:48" +ik[8198] = 0.906 +il[8198] = 111 +im[8198] = 0.0442 +ij[8198] = 28.1 +id[8199] = "2517-01-14T20:20:19" +ik[8199] = 0.175 +il[8199] = 179 +im[8199] = 0.0671 +ij[8199] = 27.3 +id[8200] = "2517-02-01T13:31:26" +ik[8200] = 1.09 +il[8200] = -127 +im[8200] = 0.1025 +ij[8200] = 27.5 +id[8201] = "2517-03-17T22:03:59" +ik[8201] = 2.1 +il[8201] = 12 +im[8201] = 0.1082 +ij[8201] = 27.6 +id[8202] = "2517-03-27T15:06:30" +ik[8202] = 54.131 +il[8202] = 42 +im[8202] = 0.0233 +ij[8202] = 9 +id[8203] = "2517-04-25T13:38:06" +ik[8203] = 2.579 +il[8203] = 133 +im[8203] = 0.0199 +ij[8203] = 27.2 +id[8204] = "2517-05-02T07:26:24" +ik[8204] = 2.545 +il[8204] = 154 +im[8204] = 0.1412 +ij[8204] = 28.5 +id[8205] = "2517-05-03T10:19:03" +ik[8205] = 3.627 +il[8205] = 157 +im[8205] = 0.1474 +ij[8205] = 28.6 +id[8206] = "2517-06-06T04:51:15" +ik[8206] = 90 +il[8206] = -99 +im[8206] = 0.1214 +ij[8206] = 6 +id[8207] = "2517-07-23T14:06:43" +ik[8207] = 0 +il[8207] = 17 +im[8207] = 0.0703 +ij[8207] = 13 +id[8208] = "2517-08-11T09:57:31" +ik[8208] = 0.5277 +il[8208] = 56 +im[8208] = 0.5277 +ij[8208] = 2 +id[8209] = "2517-08-15T00:12:57" +ik[8209] = 7.51 +il[8209] = 64 +im[8209] = 0.3608 +ij[8209] = 11 +id[8210] = "2517-09-05T21:36:27" +ik[8210] = 44.31 +il[8210] = 74 +im[8210] = 0.4246 +ij[8210] = 7.1651 +id[8211] = "2517-10-09T09:02:17" +ik[8211] = 77.79 +il[8211] = 140 +im[8211] = 0.1806 +ij[8211] = 14 +id[8212] = "2517-10-24T16:22:57" +ik[8212] = 90 +il[8212] = 179 +im[8212] = 0.0961 +ij[8212] = 5 +id[8213] = "2517-11-09T04:57:21" +ik[8213] = 0.265 +il[8213] = -134 +im[8213] = 0.0935 +ij[8213] = 28.8 +id[8214] = "2517-11-22T19:01:12" +ik[8214] = 1.024 +il[8214] = -92 +im[8214] = 0.0878 +ij[8214] = 28.7 +id[8215] = "2518-01-08T11:15:25" +ik[8215] = 53.761 +il[8215] = 53 +im[8215] = 0.053 +ij[8215] = 8 +id[8216] = "2518-01-13T06:18:05" +ik[8216] = 3.924 +il[8216] = 68 +im[8216] = 0.0688 +ij[8216] = 27.1 +id[8217] = "2518-02-28T19:19:26" +ik[8217] = 0.905 +il[8217] = -147 +im[8217] = 0.0742 +ij[8217] = 27.3 +id[8218] = "2518-03-18T12:09:39" +ik[8218] = 0.652 +il[8218] = -92 +im[8218] = 0.0972 +ij[8218] = 27.5 +id[8219] = "2518-04-09T22:27:04" +ik[8219] = 0.417 +il[8219] = -23 +im[8219] = 0.0064 +ij[8219] = 28.4 +id[8220] = "2518-04-12T05:02:32" +ik[8220] = 1.464 +il[8220] = -16 +im[8220] = 0.0365 +ij[8220] = 28.1 +id[8221] = "2518-05-01T09:48:55" +ik[8221] = 3.4 +il[8221] = 31 +im[8221] = 0.0771 +ij[8221] = 27.6 +id[8222] = "2518-06-07T15:43:12" +ik[8222] = 0.1 +il[8222] = 133 +im[8222] = 0.0331 +ij[8222] = 12 +id[8223] = "2518-07-07T12:40:45" +ik[8223] = 0.58 +il[8223] = 54 +im[8223] = 0.0411 +ij[8223] = 28.5 +id[8224] = "2518-07-31T23:29:11" +ik[8224] = 3.351 +il[8224] = 119 +im[8224] = 0.0912 +ij[8224] = 28.1 +id[8225] = "2518-09-03T19:47:14" +ik[8225] = 0.305 +il[8225] = -137 +im[8225] = 0.0817 +ij[8225] = 28.8 +id[8226] = "2518-09-18T02:52:39" +ik[8226] = 0.114 +il[8226] = -94 +im[8226] = 0.0849 +ij[8226] = 28.7 +id[8227] = "2518-10-24T03:39:52" +ik[8227] = 3.031 +il[8227] = 15 +im[8227] = 0.0323 +ij[8227] = 27.4 +id[8228] = "2518-10-25T11:04:46" +ik[8228] = 53.865 +il[8228] = 19 +im[8228] = 0.0607 +ij[8228] = 9 +id[8229] = "2518-12-20T21:25:39" +ik[8229] = 0.867 +il[8229] = -167 +im[8229] = 0.0543 +ij[8229] = 27.3 +id[8230] = "2519-01-10T15:09:39" +ik[8230] = 0.51 +il[8230] = -102 +im[8230] = 0.1811 +ij[8230] = 27.5 +id[8231] = "2519-01-14T11:40:47" +ik[8231] = 90 +il[8231] = -90 +im[8231] = 0.2207 +ij[8231] = 6 +id[8232] = "2519-03-03T09:02:44" +ik[8232] = 0 +il[8232] = 27 +im[8232] = 0.1401 +ij[8232] = 13 +id[8233] = "2519-03-25T04:19:21" +ik[8233] = 0.5172 +il[8233] = 39 +im[8233] = 0.5173 +ij[8233] = 2 +id[8234] = "2519-03-25T22:45:07" +ik[8234] = 8.55 +il[8234] = 50 +im[8234] = 0.5074 +ij[8234] = 11 +id[8235] = "2519-04-16T08:05:18" +ik[8235] = 43.96 +il[8235] = 86 +im[8235] = 0.2227 +ij[8235] = 7.161 +id[8236] = "2519-05-18T14:43:00" +ik[8236] = 76.24 +il[8236] = 150 +im[8236] = 0.2488 +ij[8236] = 14 +id[8237] = "2519-06-04T16:49:29" +ik[8237] = 90 +il[8237] = -166 +im[8237] = 0.1992 +ij[8237] = 5 +id[8238] = "2519-06-07T14:58:56" +ik[8238] = 4.34 +il[8238] = -157 +im[8238] = 0.1176 +ij[8238] = 27.6 +id[8239] = "2519-08-12T14:32:03" +ik[8239] = 0.526 +il[8239] = 45 +im[8239] = 0.0787 +ij[8239] = 28.6 +id[8240] = "2519-08-16T05:41:14" +ik[8240] = 54.512 +il[8240] = 56 +im[8240] = 0.1126 +ij[8240] = 8 +id[8241] = "2519-09-15T15:41:25" +ik[8241] = 0.344 +il[8241] = 150 +im[8241] = 0.1001 +ij[8241] = 28.5 +id[8242] = "2519-10-19T20:17:31" +ik[8242] = 0.157 +il[8242] = -106 +im[8242] = 0.0565 +ij[8242] = 28.8 +id[8243] = "2519-11-04T01:37:29" +ik[8243] = 0.782 +il[8243] = -58 +im[8243] = 0.0545 +ij[8243] = 28.7 +id[8244] = "2519-11-19T23:02:49" +ik[8244] = 0.329 +il[8244] = -9 +im[8244] = 0.0445 +ij[8244] = 28.1 +id[8245] = "2520-01-08T12:12:57" +ik[8245] = 0.63 +il[8245] = 124 +im[8245] = 0.0411 +ij[8245] = 12 +id[8246] = "2520-02-16T21:54:32" +ik[8246] = 0.998 +il[8246] = 68 +im[8246] = 0.0692 +ij[8246] = 27.5 +id[8247] = "2520-02-22T15:26:21" +ik[8247] = 3.319 +il[8247] = 75 +im[8247] = 0.0325 +ij[8247] = 28.1 +id[8248] = "2520-03-31T16:15:54" +ik[8248] = 2.68 +il[8248] = -167 +im[8248] = 0.0849 +ij[8248] = 27.6 +id[8249] = "2520-04-17T22:48:51" +ik[8249] = 0.427 +il[8249] = -113 +im[8249] = 0.0581 +ij[8249] = 28.4 +id[8250] = "2520-05-07T21:19:25" +ik[8250] = 3.617 +il[8250] = -50 +im[8250] = 0.0278 +ij[8250] = 27.2 +id[8251] = "2520-06-05T00:24:48" +ik[8251] = 54.632 +il[8251] = 37 +im[8251] = 0.0194 +ij[8251] = 9 +id[8252] = "2520-06-12T22:09:41" +ik[8252] = 1.901 +il[8252] = 62 +im[8252] = 0.1179 +ij[8252] = 28.6 +id[8253] = "2520-08-14T03:41:11" +ik[8253] = 2.073 +il[8253] = -109 +im[8253] = 0.1639 +ij[8253] = 28.5 +id[8254] = "2520-08-14T15:10:26" +ik[8254] = 90 +il[8254] = -107 +im[8254] = 0.1517 +ij[8254] = 6 +id[8255] = "2520-08-16T03:30:05" +ik[8255] = 2.502 +il[8255] = -101 +im[8255] = 0.1037 +ij[8255] = 28.8 +id[8256] = "2520-09-09T00:48:34" +ik[8256] = 4.706 +il[8256] = -31 +im[8256] = 0.2921 +ij[8256] = 28.7 +id[8257] = "2520-10-03T14:43:27" +ik[8257] = 0 +il[8257] = 16 +im[8257] = 0.2888 +ij[8257] = 13 +id[8258] = "2520-10-21T07:13:49" +ik[8258] = 0.5289 +il[8258] = 52 +im[8258] = 0.529 +ij[8258] = 2 +id[8259] = "2520-10-26T03:51:50" +ik[8259] = 6.72 +il[8259] = 64 +im[8259] = 0.2043 +ij[8259] = 11 +id[8260] = "2520-11-15T17:52:02" +ik[8260] = 43.13 +il[8260] = 72 +im[8260] = 0.4485 +ij[8260] = 7.1572 +id[8261] = "2520-11-29T13:16:27" +ik[8261] = 0.16 +il[8261] = 96 +im[8261] = 0.3499 +ij[8261] = 28.7 +id[8262] = "2520-12-17T13:56:48" +ik[8262] = 74.97 +il[8262] = 135 +im[8262] = 0.2391 +ij[8262] = 14 +id[8263] = "2521-01-04T20:04:58" +ik[8263] = 90 +il[8263] = -180 +im[8263] = 0.049 +ij[8263] = 5 +id[8264] = "2521-01-23T10:27:25" +ik[8264] = 2.549 +il[8264] = -122 +im[8264] = 0.106 +ij[8264] = 27.1 +id[8265] = "2521-03-14T00:44:45" +ik[8265] = 1.618 +il[8265] = 33 +im[8265] = 0.1203 +ij[8265] = 27.3 +id[8266] = "2521-03-24T17:11:02" +ik[8266] = 53.85 +il[8266] = 66 +im[8266] = 0.0793 +ij[8266] = 8 +id[8267] = "2521-04-01T04:43:26" +ik[8267] = 0.284 +il[8267] = 89 +im[8267] = 0.1033 +ij[8267] = 27.5 +id[8268] = "2521-05-15T19:08:50" +ik[8268] = 3.71 +il[8268] = -134 +im[8268] = 0.079 +ij[8268] = 27.6 +id[8269] = "2521-06-22T03:39:10" +ik[8269] = 2.148 +il[8269] = -20 +im[8269] = 0.0357 +ij[8269] = 28.1 +id[8270] = "2521-06-22T13:47:38" +ik[8270] = 5.256 +il[8270] = -19 +im[8270] = 0.0422 +ij[8270] = 27.2 +id[8271] = "2521-08-13T18:15:50" +ik[8271] = 1.22 +il[8271] = 119 +im[8271] = 0.0815 +ij[8271] = 12 +id[8272] = "2521-09-23T10:09:01" +ik[8272] = 0.315 +il[8272] = 63 +im[8272] = 0.0738 +ij[8272] = 28.8 +id[8273] = "2521-10-05T03:23:36" +ik[8273] = 3.14 +il[8273] = 99 +im[8273] = 0.0357 +ij[8273] = 28.1 +id[8274] = "2521-10-11T16:15:10" +ik[8274] = 0.072 +il[8274] = 119 +im[8274] = 0.0923 +ij[8274] = 28.7 +id[8275] = "2521-10-18T05:32:55" +ik[8275] = 0.761 +il[8275] = 138 +im[8275] = 0.011 +ij[8275] = 28.5 +id[8276] = "2521-11-06T11:41:38" +ik[8276] = 3.841 +il[8276] = -163 +im[8276] = 0.067 +ij[8276] = 27.4 +id[8277] = "2521-12-31T17:18:59" +ik[8277] = 0.517 +il[8277] = 6 +im[8277] = 0.037 +ij[8277] = 27.3 +id[8278] = "2522-01-09T09:43:04" +ik[8278] = 53.579 +il[8278] = 33 +im[8278] = 0.1145 +ij[8278] = 9 +id[8279] = "2522-01-18T23:00:19" +ik[8279] = 1.094 +il[8279] = 62 +im[8279] = 0.0657 +ij[8279] = 27.5 +id[8280] = "2522-03-06T18:59:44" +ik[8280] = 0.74 +il[8280] = -151 +im[8280] = 0.118 +ij[8280] = 27.6 +id[8281] = "2522-03-27T14:38:35" +ik[8281] = 90 +il[8281] = -86 +im[8281] = 0.1975 +ij[8281] = 6 +id[8282] = "2522-04-26T22:56:45" +ik[8282] = 0.317 +il[8282] = -16 +im[8282] = 0.242 +ij[8282] = 27.2 +id[8283] = "2522-05-12T13:57:15" +ik[8283] = 0 +il[8283] = 15 +im[8283] = 0.1646 +ij[8283] = 13 +id[8284] = "2522-05-30T12:40:18" +ik[8284] = 2.454 +il[8284] = 52 +im[8284] = 0.3139 +ij[8284] = 27.2 +id[8285] = "2522-06-03T02:06:25" +ik[8285] = 0.5044 +il[8285] = 50 +im[8285] = 0.5045 +ij[8285] = 2 +id[8286] = "2522-06-04T11:00:57" +ik[8286] = 1.11 +il[8286] = 52 +im[8286] = 0.4762 +ij[8286] = 11 +id[8287] = "2522-06-25T22:08:51" +ik[8287] = 44.34 +il[8287] = 83 +im[8287] = 0.2335 +ij[8287] = 7.1655 +id[8288] = "2522-07-29T20:45:34" +ik[8288] = 78.28 +il[8288] = 150 +im[8288] = 0.2241 +ij[8288] = 14 +id[8289] = "2522-08-08T02:02:15" +ik[8289] = 3.68 +il[8289] = 173 +im[8289] = 0.1461 +ij[8289] = 28.4 +id[8290] = "2522-08-13T12:34:45" +ik[8290] = 90 +il[8290] = -172 +im[8290] = 0.2064 +ij[8290] = 5 +id[8291] = "2522-09-22T11:43:43" +ik[8291] = 1.42 +il[8291] = -50 +im[8291] = 0.1196 +ij[8291] = 28.6 +id[8292] = "2522-10-24T23:27:58" +ik[8292] = 54.209 +il[8292] = 49 +im[8292] = 0.1238 +ij[8292] = 8 +id[8293] = "2522-11-07T21:52:42" +ik[8293] = 0.178 +il[8293] = 92 +im[8293] = 0.0982 +ij[8293] = 28.8 +id[8294] = "2522-11-27T12:41:54" +ik[8294] = 1.129 +il[8294] = 153 +im[8294] = 0.0957 +ij[8294] = 28.7 +id[8295] = "2522-12-27T13:52:36" +ik[8295] = 0.171 +il[8295] = -113 +im[8295] = 0.089 +ij[8295] = 28.5 +id[8296] = "2522-12-30T08:17:38" +ik[8296] = 4.701 +il[8296] = -104 +im[8296] = 0.0509 +ij[8296] = 27.1 +id[8297] = "2523-01-17T21:43:20" +ik[8297] = 2.651 +il[8297] = -46 +im[8297] = 0.0266 +ij[8297] = 28.1 +id[8298] = "2523-02-14T00:07:25" +ik[8298] = 0.466 +il[8298] = 27 +im[8298] = 0.0318 +ij[8298] = 27.3 +id[8299] = "2523-03-26T12:28:48" +ik[8299] = 1.39 +il[8299] = 140 +im[8299] = 0.082 +ij[8299] = 12 +id[8300] = "2523-04-28T01:57:30" +ik[8300] = 1.616 +il[8300] = 65 +im[8300] = 0.0617 +ij[8300] = 28.1 +id[8301] = "2523-05-23T01:38:05" +ik[8301] = 4.268 +il[8301] = 132 +im[8301] = 0.0805 +ij[8301] = 27.2 +id[8302] = "2523-06-09T16:14:26" +ik[8302] = 0.179 +il[8302] = -179 +im[8302] = 0.095 +ij[8302] = 27.9 +id[8303] = "2523-07-25T16:10:24" +ik[8303] = 0.094 +il[8303] = -30 +im[8303] = 0.1017 +ij[8303] = 28.6 +id[8304] = "2523-08-12T18:32:53" +ik[8304] = 54.509 +il[8304] = 25 +im[8304] = 0.0621 +ij[8304] = 9 +id[8305] = "2523-08-30T21:33:54" +ik[8305] = 1.355 +il[8305] = 80 +im[8305] = 0.0104 +ij[8305] = 28.8 +id[8306] = "2523-09-22T21:40:27" +ik[8306] = 1.833 +il[8306] = 150 +im[8306] = 0.1596 +ij[8306] = 28.7 +id[8307] = "2523-10-14T08:02:05" +ik[8307] = 1.344 +il[8307] = -145 +im[8307] = 0.0229 +ij[8307] = 27.4 +id[8308] = "2523-10-28T10:14:07" +ik[8308] = 90 +il[8308] = -102 +im[8308] = 0.0567 +ij[8308] = 6 +id[8309] = "2523-12-15T16:44:41" +ik[8309] = 1.731 +il[8309] = 17 +im[8309] = 0.3618 +ij[8309] = 28.5 +id[8310] = "2523-12-17T20:46:01" +ik[8310] = 0 +il[8310] = 11 +im[8310] = 0.4587 +ij[8310] = 13 +id[8311] = "2523-12-27T16:18:11" +ik[8311] = 1.574 +il[8311] = 26 +im[8311] = 0.2598 +ij[8311] = 28.5 +id[8312] = "2524-01-08T14:34:04" +ik[8312] = 4.06 +il[8312] = 57 +im[8312] = 0.1969 +ij[8312] = 11 +id[8313] = "2524-01-14T00:24:00" +ik[8313] = 0.5718 +il[8313] = 62 +im[8313] = 0.5719 +ij[8313] = 2 +id[8314] = "2524-01-29T07:24:46" +ik[8314] = 42.44 +il[8314] = 80 +im[8314] = 0.3807 +ij[8314] = 7.1547 +id[8315] = "2524-02-18T18:51:50" +ik[8315] = 5.153 +il[8315] = 118 +im[8315] = 0.0832 +ij[8315] = 28.5 +id[8316] = "2524-03-01T00:41:33" +ik[8316] = 74.16 +il[8316] = 143 +im[8316] = 0.0831 +ij[8316] = 14 +id[8317] = "2524-03-20T05:42:34" +ik[8317] = 90 +il[8317] = -169 +im[8317] = 0.1075 +ij[8317] = 5 +id[8318] = "2524-03-22T15:48:18" +ik[8318] = 3.528 +il[8318] = -162 +im[8318] = 0.1798 +ij[8318] = 27.3 +id[8319] = "2524-04-12T01:41:38" +ik[8319] = 0.679 +il[8319] = -98 +im[8319] = 0.1432 +ij[8319] = 27.5 +id[8320] = "2524-05-29T00:35:35" +ik[8320] = 4.06 +il[8320] = 47 +im[8320] = 0.0548 +ij[8320] = 27.6 +id[8321] = "2524-06-04T21:23:34" +ik[8321] = 54.314 +il[8321] = 68 +im[8321] = 0.0935 +ij[8321] = 8 +id[8322] = "2524-07-06T20:40:31" +ik[8322] = 5.867 +il[8322] = 165 +im[8322] = 0.0966 +ij[8322] = 27.2 +id[8323] = "2524-07-23T23:15:21" +ik[8323] = 0.08 +il[8323] = -143 +im[8323] = 0.0988 +ij[8323] = 27.91 +id[8324] = "2524-08-30T12:10:13" +ik[8324] = 2.728 +il[8324] = -28 +im[8324] = 0.0176 +ij[8324] = 28.1 +id[8325] = "2524-09-15T02:23:08" +ik[8325] = 0.53 +il[8325] = 21 +im[8325] = 0.0335 +ij[8325] = 28.6 +id[8326] = "2524-09-19T15:55:00" +ik[8326] = 0.798 +il[8326] = 35 +im[8326] = 0.0848 +ij[8326] = 28.4 +id[8327] = "2524-10-22T14:34:04" +ik[8327] = 1.12 +il[8327] = 116 +im[8327] = 0.0825 +ij[8327] = 12 +id[8328] = "2525-01-14T09:50:58" +ik[8328] = 0.183 +il[8328] = -173 +im[8328] = 0.0377 +ij[8328] = 27.3 +id[8329] = "2525-01-23T04:50:35" +ik[8329] = 0.526 +il[8329] = -146 +im[8329] = 0.0655 +ij[8329] = 28.5 +id[8330] = "2525-02-01T03:12:45" +ik[8330] = 1.09 +il[8330] = -118 +im[8330] = 0.0876 +ij[8330] = 27.5 +id[8331] = "2525-03-17T12:37:28" +ik[8331] = 2.07 +il[8331] = 21 +im[8331] = 0.0924 +ij[8331] = 27.6 +id[8332] = "2525-03-25T05:30:41" +ik[8332] = 54.107 +il[8332] = 45 +im[8332] = 0.0745 +ij[8332] = 9 +id[8333] = "2525-04-25T06:26:05" +ik[8333] = 2.533 +il[8333] = 142 +im[8333] = 0.071 +ij[8333] = 27.2 +id[8334] = "2525-06-03T22:41:33" +ik[8334] = 90 +il[8334] = -96 +im[8334] = 0.1952 +ij[8334] = 6 +id[8335] = "2525-07-21T06:32:31" +ik[8335] = 0 +il[8335] = 27 +im[8335] = 0.2519 +ij[8335] = 13 +id[8336] = "2525-08-12T15:01:03" +ik[8336] = 0.5342 +il[8336] = 39 +im[8336] = 0.5342 +ij[8336] = 2 +id[8337] = "2525-08-12T15:53:16" +ik[8337] = 7.34 +il[8337] = 41 +im[8337] = 0.5342 +ij[8337] = 11 +id[8338] = "2525-09-03T14:32:18" +ik[8338] = 44.33 +il[8338] = 38 +im[8338] = 0.2466 +ij[8338] = 7.1652 +id[8339] = "2525-10-07T02:23:05" +ik[8339] = 77.83 +il[8339] = 143 +im[8339] = 0.2701 +ij[8339] = 14 +id[8340] = "2525-10-22T07:48:11" +ik[8340] = 90 +il[8340] = -179 +im[8340] = 0.1963 +ij[8340] = 5 +id[8341] = "2525-11-01T12:42:46" +ik[8341] = 1.715 +il[8341] = -148 +im[8341] = 0.1466 +ij[8341] = 28.6 +id[8342] = "2525-11-24T23:34:04" +ik[8342] = 0.285 +il[8342] = -76 +im[8342] = 0.0684 +ij[8342] = 28.8 +id[8343] = "2525-12-19T23:53:22" +ik[8343] = 1.732 +il[8343] = 2 +im[8343] = 0.1291 +ij[8343] = 28.7 +id[8344] = "2526-01-05T23:20:56" +ik[8344] = 53.77 +il[8344] = 55 +im[8344] = 0.1162 +ij[8344] = 8 +id[8345] = "2526-01-12T21:01:38" +ik[8345] = 3.955 +il[8345] = 77 +im[8345] = 0.0294 +ij[8345] = 27.1 +id[8346] = "2526-02-28T09:00:45" +ik[8346] = 0.89 +il[8346] = -138 +im[8346] = 0.0396 +ij[8346] = 27.3 +id[8347] = "2526-03-18T01:36:45" +ik[8347] = 0.659 +il[8347] = -84 +im[8347] = 0.0866 +ij[8347] = 27.5 +id[8348] = "2526-03-20T23:28:19" +ik[8348] = 2.132 +il[8348] = -75 +im[8348] = 0.0976 +ij[8348] = 28.1 +id[8349] = "2526-03-30T03:35:16" +ik[8349] = 0.032 +il[8349] = -47 +im[8349] = 0.0297 +ij[8349] = 28.5 +id[8350] = "2526-04-30T22:56:30" +ik[8350] = 3.39 +il[8350] = 40 +im[8350] = 0.0578 +ij[8350] = 27.6 +id[8351] = "2526-06-05T09:40:19" +ik[8351] = 0.16 +il[8351] = 136 +im[8351] = 0.0792 +ij[8351] = 12 +id[8352] = "2526-07-07T23:58:42" +ik[8352] = 2.379 +il[8352] = 54 +im[8352] = 0.0605 +ij[8352] = 28.1 +id[8353] = "2526-09-07T04:16:27" +ik[8353] = 1.378 +il[8353] = -117 +im[8353] = 0.0599 +ij[8353] = 28.6 +id[8354] = "2526-09-17T21:18:43" +ik[8354] = 1.032 +il[8354] = -85 +im[8354] = 0.0974 +ij[8354] = 28.8 +id[8355] = "2526-10-14T09:38:00" +ik[8355] = 1.045 +il[8355] = -4 +im[8355] = 0.0904 +ij[8355] = 28.7 +id[8356] = "2526-10-22T23:52:57" +ik[8356] = 53.888 +il[8356] = 22 +im[8356] = 0.0415 +ij[8356] = 9 +id[8357] = "2526-10-23T18:40:18" +ik[8357] = 3.001 +il[8357] = 24 +im[8357] = 0.024 +ij[8357] = 27.4 +id[8358] = "2526-10-23T23:12:23" +ik[8358] = 0.671 +il[8358] = 25 +im[8358] = 0.0198 +ij[8358] = 28.4 +id[8359] = "2526-12-20T16:49:38" +ik[8359] = 0.869 +il[8359] = -157 +im[8359] = 0.1165 +ij[8359] = 27.3 +id[8360] = "2527-01-10T16:12:18" +ik[8360] = 0.438 +il[8360] = -93 +im[8360] = 0.1469 +ij[8360] = 27.5 +id[8361] = "2527-01-11T23:58:30" +ik[8361] = 90 +il[8361] = -88 +im[8361] = 0.1909 +ij[8361] = 6 +id[8362] = "2527-03-01T07:08:06" +ik[8362] = 0 +il[8362] = 29 +im[8362] = 0.376 +ij[8362] = 13 +id[8363] = "2527-03-13T00:10:09" +ik[8363] = 0.5287 +il[8363] = 49 +im[8363] = 0.5288 +ij[8363] = 2 +id[8364] = "2527-03-23T12:34:33" +ik[8364] = 8.64 +il[8364] = 76 +im[8364] = 0.4019 +ij[8364] = 11 +id[8365] = "2527-04-13T08:14:41" +ik[8365] = 43.05 +il[8365] = 88 +im[8365] = 0.1981 +ij[8365] = 7.1609 +id[8366] = "2527-05-16T03:39:29" +ik[8366] = 75.86 +il[8366] = 152 +im[8366] = 0.1224 +ij[8366] = 14 +id[8367] = "2527-05-26T13:34:10" +ik[8367] = 0.067 +il[8367] = 177 +im[8367] = 0.0483 +ij[8367] = 28.5 +id[8368] = "2527-06-02T07:57:02" +ik[8368] = 90 +il[8368] = -163 +im[8368] = 0.2028 +ij[8368] = 5 +id[8369] = "2527-06-07T15:06:29" +ik[8369] = 4.35 +il[8369] = -147 +im[8369] = 0.1672 +ij[8369] = 27.6 +id[8370] = "2527-08-13T22:45:25" +ik[8370] = 54.514 +il[8370] = 59 +im[8370] = 0.0773 +ij[8370] = 8 +id[8371] = "2527-10-30T07:36:11" +ik[8371] = 1.026 +il[8371] = -63 +im[8371] = 0.0803 +ij[8371] = 28.6 +id[8372] = "2527-10-31T22:25:23" +ik[8372] = 0.087 +il[8372] = -58 +im[8372] = 0.0878 +ij[8372] = 28.1 +id[8373] = "2527-11-02T19:59:31" +ik[8373] = 0.147 +il[8373] = -52 +im[8373] = 0.0827 +ij[8373] = 28.8 +id[8374] = "2527-11-24T10:09:59" +ik[8374] = 0.086 +il[8374] = 15 +im[8374] = 0.0085 +ij[8374] = 28.1 +id[8375] = "2527-11-29T15:57:44" +ik[8375] = 0.554 +il[8375] = 32 +im[8375] = 0.0787 +ij[8375] = 28.7 +id[8376] = "2528-01-05T22:50:52" +ik[8376] = 0.57 +il[8376] = 126 +im[8376] = 0.0325 +ij[8376] = 12 +id[8377] = "2528-02-16T11:04:18" +ik[8377] = 1 +il[8377] = 77 +im[8377] = 0.0845 +ij[8377] = 27.5 +id[8378] = "2528-03-31T05:40:18" +ik[8378] = 2.67 +il[8378] = -158 +im[8378] = 0.0982 +ij[8378] = 27.6 +id[8379] = "2528-04-20T20:18:48" +ik[8379] = 1.186 +il[8379] = -94 +im[8379] = 0.031 +ij[8379] = 28.5 +id[8380] = "2528-05-07T11:21:11" +ik[8380] = 3.593 +il[8380] = -42 +im[8380] = 0.0181 +ij[8380] = 27.2 +id[8381] = "2528-06-02T18:22:19" +ik[8381] = 54.624 +il[8381] = 40 +im[8381] = 0.0966 +ij[8381] = 9 +id[8382] = "2528-08-12T06:07:21" +ik[8382] = 90 +il[8382] = -105 +im[8382] = 0.212 +ij[8382] = 6 +id[8383] = "2528-09-05T10:58:04" +ik[8383] = 5.459 +il[8383] = -45 +im[8383] = 0.1259 +ij[8383] = 28.8 +id[8384] = "2528-10-01T03:39:56" +ik[8384] = 0 +il[8384] = 13 +im[8384] = 0.0627 +ij[8384] = 13 +id[8385] = "2528-10-22T07:31:18" +ik[8385] = 0.5244 +il[8385] = 59 +im[8385] = 0.5244 +ij[8385] = 2 +id[8386] = "2528-10-23T17:22:33" +ik[8386] = 6.95 +il[8386] = 61 +im[8386] = 0.4919 +ij[8386] = 11 +id[8387] = "2528-11-13T05:32:36" +ik[8387] = 43.08 +il[8387] = 75 +im[8387] = 0.215 +ij[8387] = 7.1575 +id[8388] = "2528-11-27T19:32:26" +ik[8388] = 1.086 +il[8388] = 100 +im[8388] = 0.239 +ij[8388] = 28.8 +id[8389] = "2528-12-06T13:56:12" +ik[8389] = 0.86 +il[8389] = 118 +im[8389] = 0.1641 +ij[8389] = 28.6 +id[8390] = "2528-12-15T05:24:21" +ik[8390] = 75.07 +il[8390] = 138 +im[8390] = 0.2596 +ij[8390] = 14 +id[8391] = "2529-01-02T09:16:38" +ik[8391] = 90 +il[8391] = -178 +im[8391] = 0.1992 +ij[8391] = 5 +id[8392] = "2529-01-07T20:10:27" +ik[8392] = 2.957 +il[8392] = -161 +im[8392] = 0.031 +ij[8392] = 28.7 +id[8393] = "2529-01-23T06:32:17" +ik[8393] = 2.618 +il[8393] = -113 +im[8393] = 0.0558 +ij[8393] = 27.1 +id[8394] = "2529-02-09T07:09:41" +ik[8394] = 2.557 +il[8394] = -59 +im[8394] = 0.0793 +ij[8394] = 28.4 +id[8395] = "2529-03-13T15:58:05" +ik[8395] = 1.587 +il[8395] = 42 +im[8395] = 0.1077 +ij[8395] = 27.3 +id[8396] = "2529-03-22T05:34:21" +ik[8396] = 53.837 +il[8396] = 68 +im[8396] = 0.0153 +ij[8396] = 8 +id[8397] = "2529-03-31T19:14:05" +ik[8397] = 0.3 +il[8397] = 98 +im[8397] = 0.1177 +ij[8397] = 27.5 +id[8398] = "2529-05-15T08:44:16" +ik[8398] = 3.7 +il[8398] = -125 +im[8398] = 0.0955 +ij[8398] = 27.6 +id[8399] = "2529-05-29T05:29:54" +ik[8399] = 1.378 +il[8399] = -83 +im[8399] = 0.0897 +ij[8399] = 28.1 +id[8400] = "2529-06-22T02:54:43" +ik[8400] = 5.238 +il[8400] = -10 +im[8400] = 0.0089 +ij[8400] = 27.2 +id[8401] = "2529-06-27T02:45:36" +ik[8401] = 0.1 +il[8401] = 5 +im[8401] = 0.0757 +ij[8401] = 28.5 +id[8402] = "2529-07-03T05:14:21" +ik[8402] = 0.325 +il[8402] = 24 +im[8402] = 0.054 +ij[8402] = 28.1 +id[8403] = "2529-08-11T12:14:24" +ik[8403] = 1.19 +il[8403] = 122 +im[8403] = 0.0834 +ij[8403] = 12 +id[8404] = "2529-09-13T12:47:39" +ik[8404] = 3.342 +il[8404] = 43 +im[8404] = 0.0879 +ij[8404] = 28.1 +id[8405] = "2529-10-07T06:17:08" +ik[8405] = 0.871 +il[8405] = 115 +im[8405] = 0.0395 +ij[8405] = 28.8 +id[8406] = "2529-10-22T19:36:46" +ik[8406] = 2.061 +il[8406] = 162 +im[8406] = 0.055 +ij[8406] = 28.6 +id[8407] = "2529-11-06T01:20:44" +ik[8407] = 3.824 +il[8407] = -155 +im[8407] = 0.0306 +ij[8407] = 27.4 +id[8408] = "2529-11-06T18:30:05" +ik[8408] = 0.598 +il[8408] = -152 +im[8408] = 0.0428 +ij[8408] = 28.7 +id[8409] = "2529-12-31T07:57:11" +ik[8409] = 0.525 +il[8409] = 14 +im[8409] = 0.0805 +ij[8409] = 27.3 +id[8410] = "2530-01-06T20:19:42" +ik[8410] = 53.573 +il[8410] = 35 +im[8410] = 0.0681 +ij[8410] = 9 +id[8411] = "2530-01-18T14:20:18" +ik[8411] = 1.087 +il[8411] = 71 +im[8411] = 0.0167 +ij[8411] = 27.5 +id[8412] = "2530-03-06T14:30:10" +ik[8412] = 0.66 +il[8412] = -142 +im[8412] = 0.0767 +ij[8412] = 27.6 +id[8413] = "2530-03-25T06:57:46" +ik[8413] = 90 +il[8413] = -83 +im[8413] = 0.1989 +ij[8413] = 6 +id[8414] = "2530-04-29T09:42:31" +ik[8414] = 0.491 +il[8414] = -1 +im[8414] = 0.1757 +ij[8414] = 27.2 +id[8415] = "2530-05-10T05:24:48" +ik[8415] = 0 +il[8415] = 17 +im[8415] = 0.3918 +ij[8415] = 13 +id[8416] = "2530-05-23T16:14:04" +ik[8416] = 1.251 +il[8416] = 42 +im[8416] = 0.4687 +ij[8416] = 27.2 +id[8417] = "2530-06-02T03:59:02" +ik[8417] = 1.44 +il[8417] = 66 +im[8417] = 0.4592 +ij[8417] = 11 +id[8418] = "2530-06-04T01:53:23" +ik[8418] = 0.5143 +il[8418] = 64 +im[8418] = 0.5144 +ij[8418] = 2 +id[8419] = "2530-06-23T12:37:24" +ik[8419] = 44.3 +il[8419] = 86 +im[8419] = 0.1177 +ij[8419] = 7.1655 +id[8420] = "2530-07-27T12:25:09" +ik[8420] = 78.29 +il[8420] = 153 +im[8420] = 0.2187 +ij[8420] = 14 +id[8421] = "2530-08-11T05:18:42" +ik[8421] = 90 +il[8421] = -169 +im[8421] = 0.1722 +ij[8421] = 5 +id[8422] = "2530-08-31T03:58:19" +ik[8422] = 2.071 +il[8422] = -108 +im[8422] = 0.1469 +ij[8422] = 28.5 +id[8423] = "2530-10-22T14:41:56" +ik[8423] = 54.225 +il[8423] = 52 +im[8423] = 0.077 +ij[8423] = 8 +id[8424] = "2530-11-22T02:36:48" +ik[8424] = 0.038 +il[8424] = 147 +im[8424] = 0.0715 +ij[8424] = 28.8 +id[8425] = "2530-12-15T07:36:05" +ik[8425] = 0.803 +il[8425] = -141 +im[8425] = 0.0628 +ij[8425] = 28.6 +id[8426] = "2530-12-23T15:28:48" +ik[8426] = 0.906 +il[8426] = -115 +im[8426] = 0.0783 +ij[8426] = 28.7 +id[8427] = "2530-12-29T21:43:24" +ik[8427] = 4.721 +il[8427] = -95 +im[8427] = 0.0787 +ij[8427] = 27.1 +id[8428] = "2530-12-30T05:21:15" +ik[8428] = 2.367 +il[8428] = -94 +im[8428] = 0.0748 +ij[8428] = 28.1 +id[8429] = "2531-02-04T21:12:40" +ik[8429] = 4.731 +il[8429] = 20 +im[8429] = 0.0497 +ij[8429] = 28.1 +id[8430] = "2531-02-13T13:20:44" +ik[8430] = 0.457 +il[8430] = 36 +im[8430] = 0.0656 +ij[8430] = 27.3 +id[8431] = "2531-03-24T00:23:02" +ik[8431] = 1.4 +il[8431] = 142 +im[8431] = 0.063 +ij[8431] = 12 +id[8432] = "2531-05-22T14:50:31" +ik[8432] = 4.252 +il[8432] = 141 +im[8432] = 0.0629 +ij[8432] = 27.2 +id[8433] = "2531-06-09T05:30:20" +ik[8433] = 0.197 +il[8433] = -164 +im[8433] = 0.0884 +ij[8433] = 27.9 +id[8434] = "2531-07-12T21:46:13" +ik[8434] = 5.332 +il[8434] = -59 +im[8434] = 0.0907 +ij[8434] = 28.1 +id[8435] = "2531-07-26T18:57:01" +ik[8435] = 0.354 +il[8435] = -17 +im[8435] = 0.1102 +ij[8435] = 28.5 +id[8436] = "2531-08-10T11:40:37" +ik[8436] = 54.524 +il[8436] = 28 +im[8436] = 0.1114 +ij[8436] = 9 +id[8437] = "2531-09-14T20:56:24" +ik[8437] = 2.585 +il[8437] = 135 +im[8437] = 0.0244 +ij[8437] = 28.8 +id[8438] = "2531-10-14T05:55:24" +ik[8438] = 1.256 +il[8438] = -135 +im[8438] = 0.0493 +ij[8438] = 27.4 +id[8439] = "2531-10-23T08:27:27" +ik[8439] = 3.416 +il[8439] = -107 +im[8439] = 0.2164 +ij[8439] = 28.7 +id[8440] = "2531-10-24T17:51:04" +ik[8440] = 5.057 +il[8440] = -103 +im[8440] = 0.2116 +ij[8440] = 28.6 +id[8441] = "2531-10-25T21:47:36" +ik[8441] = 90 +il[8441] = -99 +im[8441] = 0.1939 +ij[8441] = 6 +id[8442] = "2531-12-15T12:25:36" +ik[8442] = 0 +il[8442] = 27 +im[8442] = 0.2517 +ij[8442] = 13 +id[8443] = "2532-01-06T03:25:55" +ik[8443] = 3.69 +il[8443] = 84 +im[8443] = 0.2837 +ij[8443] = 11 +id[8444] = "2532-01-15T05:18:13" +ik[8444] = 0.5479 +il[8444] = 68 +im[8444] = 0.548 +ij[8444] = 2 +id[8445] = "2532-01-26T20:26:17" +ik[8445] = 42.33 +il[8445] = 83 +im[8445] = 0.4086 +ij[8445] = 7.1547 +id[8446] = "2532-02-27T12:35:02" +ik[8446] = 74.01 +il[8446] = 145 +im[8446] = 0.2474 +ij[8446] = 14 +id[8447] = "2532-03-17T18:02:03" +ik[8447] = 90 +il[8447] = -167 +im[8447] = 0.0717 +ij[8447] = 5 +id[8448] = "2532-03-22T15:15:51" +ik[8448] = 3.405 +il[8448] = -152 +im[8448] = 0.1412 +ij[8448] = 27.3 +id[8449] = "2532-04-11T20:33:11" +ik[8449] = 0.621 +il[8449] = -89 +im[8449] = 0.161 +ij[8449] = 27.5 +id[8450] = "2532-05-28T15:45:06" +ik[8450] = 4.05 +il[8450] = 56 +im[8450] = 0.0989 +ij[8450] = 27.6 +id[8451] = "2532-06-02T13:23:45" +ik[8451] = 54.3 +il[8451] = 71 +im[8451] = 0.0152 +ij[8451] = 8 +id[8452] = "2532-07-06T10:30:17" +ik[8452] = 5.844 +il[8452] = 174 +im[8452] = 0.0795 +ij[8452] = 27.2 +id[8453] = "2532-07-23T12:46:04" +ik[8453] = 0.058 +il[8453] = -134 +im[8453] = 0.0989 +ij[8453] = 27.91 +id[8454] = "2532-08-11T15:24:11" +ik[8454] = 2.689 +il[8454] = -76 +im[8454] = 0.0644 +ij[8454] = 28.1 +id[8455] = "2532-08-23T09:50:32" +ik[8455] = 0.252 +il[8455] = -40 +im[8455] = 0.0916 +ij[8455] = 28.1 +id[8456] = "2532-10-20T04:58:04" +ik[8456] = 1.15 +il[8456] = 118 +im[8456] = 0.0696 +ij[8456] = 12 +id[8457] = "2532-11-30T21:26:03" +ik[8457] = 0.266 +il[8457] = 62 +im[8457] = 0.0342 +ij[8457] = 28.7 +id[8458] = "2532-12-09T05:00:32" +ik[8458] = 1.676 +il[8458] = 87 +im[8458] = 0.0848 +ij[8458] = 28.6 +id[8459] = "2533-01-13T23:18:31" +ik[8459] = 0.189 +il[8459] = -164 +im[8459] = 0.0094 +ij[8459] = 27.3 +id[8460] = "2533-01-31T16:53:37" +ik[8460] = 1.089 +il[8460] = -109 +im[8460] = 0.0562 +ij[8460] = 27.5 +id[8461] = "2533-02-21T19:37:55" +ik[8461] = 0.983 +il[8461] = -44 +im[8461] = 0.102 +ij[8461] = 28.4 +id[8462] = "2533-03-17T03:13:07" +ik[8462] = 2.04 +il[8462] = 29 +im[8462] = 0.0607 +ij[8462] = 27.6 +id[8463] = "2533-03-22T19:44:13" +ik[8463] = 54.083 +il[8463] = 47 +im[8463] = 0.1243 +ij[8463] = 9 +id[8464] = "2533-04-24T23:24:44" +ik[8464] = 2.485 +il[8464] = 151 +im[8464] = 0.1192 +ij[8464] = 27.2 +id[8465] = "2533-06-01T16:29:11" +ik[8465] = 90 +il[8465] = -93 +im[8465] = 0.1433 +ij[8465] = 6 +id[8466] = "2533-07-19T12:35:29" +ik[8466] = 0 +il[8466] = 25 +im[8466] = 0.409 +ij[8466] = 13 +id[8467] = "2533-08-10T07:43:40" +ik[8467] = 7.16 +il[8467] = 82 +im[8467] = 0.3734 +ij[8467] = 11 +id[8468] = "2533-08-13T18:17:36" +ik[8468] = 0.5281 +il[8468] = 58 +im[8468] = 0.5281 +ij[8468] = 2 +id[8469] = "2533-08-25T06:14:24" +ik[8469] = 0.773 +il[8469] = 70 +im[8469] = 0.413 +ij[8469] = 27.8 +id[8470] = "2533-09-01T12:41:04" +ik[8470] = 44 +il[8470] = 80 +im[8470] = 0.0691 +ij[8470] = 7.1655 +id[8471] = "2533-10-04T20:21:49" +ik[8471] = 77.32 +il[8471] = 146 +im[8471] = 0.2016 +ij[8471] = 14 +id[8472] = "2533-10-19T23:17:50" +ik[8472] = 90 +il[8472] = -176 +im[8472] = 0.1631 +ij[8472] = 5 +id[8473] = "2533-12-10T00:41:28" +ik[8473] = 0.427 +il[8473] = -19 +im[8473] = 0.1125 +ij[8473] = 28.8 +id[8474] = "2533-12-13T17:49:03" +ik[8474] = 0.734 +il[8474] = -7 +im[8474] = 0.019 +ij[8474] = 28.5 +id[8475] = "2534-01-03T11:33:34" +ik[8475] = 53.779 +il[8475] = 57 +im[8475] = 0.101 +ij[8475] = 8 +id[8476] = "2534-01-12T11:41:10" +ik[8476] = 3.986 +il[8476] = 85 +im[8476] = 0.0163 +ij[8476] = 27.1 +id[8477] = "2534-01-16T05:38:49" +ik[8477] = 1.413 +il[8477] = 97 +im[8477] = 0.0715 +ij[8477] = 28.7 +id[8478] = "2534-01-31T14:04:16" +ik[8478] = 0.043 +il[8478] = 145 +im[8478] = 0.0573 +ij[8478] = 28.6 +id[8479] = "2534-02-27T22:38:31" +ik[8479] = 0.876 +il[8479] = -142 +im[8479] = 0.0096 +ij[8479] = 27.3 +id[8480] = "2534-02-28T23:24:25" +ik[8480] = 2.353 +il[8480] = -127 +im[8480] = 0.0208 +ij[8480] = 28.1 +id[8481] = "2534-03-17T15:03:24" +ik[8481] = 0.666 +il[8481] = -75 +im[8481] = 0.0597 +ij[8481] = 27.5 +id[8482] = "2534-04-09T15:15:50" +ik[8482] = 2.598 +il[8482] = -4 +im[8482] = 0.0631 +ij[8482] = 28.1 +id[8483] = "2534-04-30T12:04:04" +ik[8483] = 3.38 +il[8483] = 48 +im[8483] = 0.0279 +ij[8483] = 27.6 +id[8484] = "2534-06-03T03:28:48" +ik[8484] = 0.21 +il[8484] = 139 +im[8484] = 0.0786 +ij[8484] = 12 +id[8485] = "2534-10-02T06:08:03" +ik[8485] = 1.882 +il[8485] = -31 +im[8485] = 0.1014 +ij[8485] = 28.8 +id[8486] = "2534-10-20T12:51:48" +ik[8486] = 53.91 +il[8486] = 24 +im[8486] = 0.1124 +ij[8486] = 9 +id[8487] = "2534-10-23T09:48:17" +ik[8487] = 2.969 +il[8487] = 33 +im[8487] = 0.0728 +ij[8487] = 27.4 +id[8488] = "2534-11-08T06:33:41" +ik[8488] = 2.153 +il[8488] = 81 +im[8488] = 0.0583 +ij[8488] = 28.5 +id[8489] = "2534-11-11T06:51:24" +ik[8489] = 1.869 +il[8489] = 91 +im[8489] = 0.0333 +ij[8489] = 28.7 +id[8490] = "2534-12-07T22:37:55" +ik[8490] = 2.373 +il[8490] = 173 +im[8490] = 0.0758 +ij[8490] = 28.6 +id[8491] = "2534-12-20T12:41:37" +ik[8491] = 0.87 +il[8491] = -148 +im[8491] = 0.1659 +ij[8491] = 27.3 +id[8492] = "2535-01-09T12:07:22" +ik[8492] = 90 +il[8492] = -86 +im[8492] = 0.0389 +ij[8492] = 6 +id[8493] = "2535-01-10T18:24:44" +ik[8493] = 0.355 +il[8493] = -83 +im[8493] = 0.0939 +ij[8493] = 27.5 +id[8494] = "2535-02-26T20:22:16" +ik[8494] = 0 +il[8494] = 33 +im[8494] = 0.38 +ij[8494] = 13 +id[8495] = "2535-03-14T02:14:20" +ik[8495] = 0.5438 +il[8495] = 63 +im[8495] = 0.5439 +ij[8495] = 2 +id[8496] = "2535-03-21T02:16:48" +ik[8496] = 8.72 +il[8496] = 80 +im[8496] = 0.0614 +ij[8496] = 11 +id[8497] = "2535-04-11T19:24:50" +ik[8497] = 43.96 +il[8497] = 91 +im[8497] = 0.3923 +ij[8497] = 7.1604 +id[8498] = "2535-05-13T16:08:34" +ik[8498] = 75.82 +il[8498] = 155 +im[8498] = 0.0978 +ij[8498] = 14 +id[8499] = "2535-05-28T13:23:05" +ik[8499] = 0.683 +il[8499] = -167 +im[8499] = 0.0238 +ij[8499] = 28.4 +id[8500] = "2535-05-30T22:59:15" +ik[8500] = 90 +il[8500] = -160 +im[8500] = 0.0813 +ij[8500] = 5 +id[8501] = "2535-06-07T14:27:06" +ik[8501] = 4.35 +il[8501] = -137 +im[8501] = 0.1936 +ij[8501] = 27.6 +id[8502] = "2535-08-11T15:53:10" +ik[8502] = 54.516 +il[8502] = 62 +im[8502] = 0.0136 +ij[8502] = 8 +id[8503] = "2535-10-14T15:35:42" +ik[8503] = 3.732 +il[8503] = -102 +im[8503] = 0.0688 +ij[8503] = 28.1 +id[8504] = "2535-11-16T18:52:42" +ik[8504] = 0.526 +il[8504] = 1 +im[8504] = 0.0901 +ij[8504] = 28.8 +id[8505] = "2536-01-03T09:33:07" +ik[8505] = 0.51 +il[8505] = 128 +im[8505] = 0.0816 +ij[8505] = 12 +id[8506] = "2536-02-16T00:16:44" +ik[8506] = 1.001 +il[8506] = 74 +im[8506] = 0.0844 +ij[8506] = 27.5 +id[8507] = "2536-03-30T19:07:59" +ik[8507] = 2.65 +il[8507] = -150 +im[8507] = 0.0926 +ij[8507] = 27.6 +id[8508] = "2536-05-07T01:23:23" +ik[8508] = 3.57 +il[8508] = -33 +im[8508] = 0.0573 +ij[8508] = 27.2 +id[8509] = "2536-05-31T12:19:51" +ik[8509] = 54.615 +il[8509] = 43 +im[8509] = 0.1191 +ij[8509] = 9 +id[8510] = "2536-08-09T21:09:35" +ik[8510] = 90 +il[8510] = -102 +im[8510] = 0.1401 +ij[8510] = 6 +id[8511] = "2536-09-28T16:09:01" +ik[8511] = 0 +il[8511] = 22 +im[8511] = 0.3503 +ij[8511] = 13 +id[8512] = "2536-10-10T01:45:48" +ik[8512] = 0.5229 +il[8512] = 41 +im[8512] = 0.5229 +ij[8512] = 2 +id[8513] = "2536-10-21T06:50:24" +ik[8513] = 7.17 +il[8513] = 70 +im[8513] = 0.4619 +ij[8513] = 11 +id[8514] = "2536-11-11T15:13:35" +ik[8514] = 43.96 +il[8514] = 78 +im[8514] = 0.0831 +ij[8514] = 7.1577 +id[8515] = "2536-12-12T21:06:21" +ik[8515] = 75.21 +il[8515] = 140 +im[8515] = 0.111 +ij[8515] = 14 +id[8516] = "2536-12-22T01:41:26" +ik[8516] = 1.165 +il[8516] = 162 +im[8516] = 0.1296 +ij[8516] = 28.8 +id[8517] = "2536-12-30T22:36:16" +ik[8517] = 90 +il[8517] = -175 +im[8517] = 0.2186 +ij[8517] = 5 +id[8518] = "2537-01-23T02:11:50" +ik[8518] = 2.684 +il[8518] = -103 +im[8518] = 0.0116 +ij[8518] = 27.1 +id[8519] = "2537-02-07T09:43:20" +ik[8519] = 2.303 +il[8519] = -55 +im[8519] = 0.0327 +ij[8519] = 28.7 +id[8520] = "2537-03-13T07:07:50" +ik[8520] = 1.558 +il[8520] = 51 +im[8520] = 0.0786 +ij[8520] = 27.3 +id[8521] = "2537-03-19T16:53:19" +ik[8521] = 0.887 +il[8521] = 70 +im[8521] = 0.0993 +ij[8521] = 28.6 +id[8522] = "2537-03-19T17:54:05" +ik[8522] = 53.825 +il[8522] = 71 +im[8522] = 0.0987 +ij[8522] = 8 +id[8523] = "2537-03-20T11:00:48" +ik[8523] = 0.585 +il[8523] = 73 +im[8523] = 0.0883 +ij[8523] = 28.5 +id[8524] = "2537-03-31T09:44:17" +ik[8524] = 0.316 +il[8524] = 107 +im[8524] = 0.1107 +ij[8524] = 27.5 +id[8525] = "2537-05-07T01:48:43" +ik[8525] = 0.788 +il[8525] = -140 +im[8525] = 0.0383 +ij[8525] = 28.1 +id[8526] = "2537-05-14T22:20:59" +ik[8526] = 3.69 +il[8526] = -116 +im[8526] = 0.0946 +ij[8526] = 27.6 +id[8527] = "2537-06-03T03:22:19" +ik[8527] = 1.796 +il[8527] = -58 +im[8527] = 0.076 +ij[8527] = 28.1 +id[8528] = "2537-06-16T08:29:36" +ik[8528] = 0.767 +il[8528] = -18 +im[8528] = 0.0924 +ij[8528] = 28.4 +id[8529] = "2537-06-21T15:56:29" +ik[8529] = 5.219 +il[8529] = -2 +im[8529] = 0.0362 +ij[8529] = 27.2 +id[8530] = "2537-08-09T06:15:50" +ik[8530] = 1.16 +il[8530] = 125 +im[8530] = 0.0361 +ij[8530] = 12 +id[8531] = "2537-10-21T12:22:19" +ik[8531] = 1.526 +il[8531] = 168 +im[8531] = 0.0072 +ij[8531] = 28.8 +id[8532] = "2537-11-05T15:00:43" +ik[8532] = 3.806 +il[8532] = -146 +im[8532] = 0.0153 +ij[8532] = 27.4 +id[8533] = "2537-12-04T09:10:04" +ik[8533] = 1.165 +il[8533] = -59 +im[8533] = 0.0451 +ij[8533] = 28.7 +id[8534] = "2537-12-30T22:38:57" +ik[8534] = 0.532 +il[8534] = 23 +im[8534] = 0.1108 +ij[8534] = 27.3 +id[8535] = "2538-01-04T06:49:13" +ik[8535] = 53.569 +il[8535] = 37 +im[8535] = 0.0301 +ij[8535] = 9 +id[8536] = "2538-01-18T05:50:30" +ik[8536] = 1.079 +il[8536] = 80 +im[8536] = 0.0424 +ij[8536] = 27.5 +id[8537] = "2538-01-22T05:51:56" +ik[8537] = 0.275 +il[8537] = 93 +im[8537] = 0.0597 +ij[8537] = 28.6 +id[8538] = "2538-02-08T16:27:24" +ik[8538] = 0.747 +il[8538] = 147 +im[8538] = 0.1231 +ij[8538] = 28.5 +id[8539] = "2538-03-06T10:33:54" +ik[8539] = 0.58 +il[8539] = -132 +im[8539] = 0.03 +ij[8539] = 27.6 +id[8540] = "2538-03-22T23:06:20" +ik[8540] = 90 +il[8540] = -81 +im[8540] = 0.0803 +ij[8540] = 6 +id[8541] = "2538-05-04T15:27:50" +ik[8541] = 0.579 +il[8541] = 22 +im[8541] = 0.1763 +ij[8541] = 27.2 +id[8542] = "2538-05-07T21:06:48" +ik[8542] = 0 +il[8542] = 19 +im[8542] = 0.391 +ij[8542] = 13 +id[8543] = "2538-05-14T05:06:30" +ik[8543] = 0.005 +il[8543] = 26 +im[8543] = 0.2876 +ij[8543] = 27.2 +id[8544] = "2538-05-30T20:57:07" +ik[8544] = 1.76 +il[8544] = 69 +im[8544] = 0.1518 +ij[8544] = 11 +id[8545] = "2538-06-05T03:53:15" +ik[8545] = 0.518 +il[8545] = 70 +im[8545] = 0.5181 +ij[8545] = 2 +id[8546] = "2538-06-21T04:07:35" +ik[8546] = 44.29 +il[8546] = 89 +im[8546] = 0.3632 +ij[8546] = 7.1654 +id[8547] = "2538-07-25T03:53:19" +ik[8547] = 78.28 +il[8547] = 155 +im[8547] = 0.0664 +ij[8547] = 14 +id[8548] = "2538-08-08T22:02:39" +ik[8548] = 90 +il[8548] = -166 +im[8548] = 0.0308 +ij[8548] = 5 +id[8549] = "2538-10-20T05:59:28" +ik[8549] = 54.241 +il[8549] = 55 +im[8549] = 0.0167 +ij[8549] = 8 +id[8550] = "2538-12-06T04:53:36" +ik[8550] = 0.22 +il[8550] = -160 +im[8550] = 0.0123 +ij[8550] = 28.8 +id[8551] = "2538-12-29T11:12:16" +ik[8551] = 4.742 +il[8551] = -87 +im[8551] = 0.0911 +ij[8551] = 27.1 +id[8552] = "2539-01-20T01:22:39" +ik[8552] = 0.282 +il[8552] = -19 +im[8552] = 0.0055 +ij[8552] = 28.7 +id[8553] = "2539-02-13T02:30:57" +ik[8553] = 0.448 +il[8553] = 44 +im[8553] = 0.0872 +ij[8553] = 27.3 +id[8554] = "2539-03-21T12:04:19" +ik[8554] = 1.41 +il[8554] = 145 +im[8554] = 0.0037 +ij[8554] = 12 +id[8555] = "2539-05-22T04:04:16" +ik[8555] = 4.236 +il[8555] = 150 +im[8555] = 0.0344 +ij[8555] = 27.2 +id[8556] = "2539-06-08T18:53:08" +ik[8556] = 0.216 +il[8556] = -155 +im[8556] = 0.0654 +ij[8556] = 27.9 +id[8557] = "2539-06-10T03:14:32" +ik[8557] = 1.906 +il[8557] = -151 +im[8557] = 0.0806 +ij[8557] = 28.1 +id[8558] = "2539-06-21T21:20:00" +ik[8558] = 0.793 +il[8558] = -115 +im[8558] = 0.0525 +ij[8558] = 28.1 +id[8559] = "2539-07-16T05:57:15" +ik[8559] = 0.93 +il[8559] = -39 +im[8559] = 0.0644 +ij[8559] = 28.4 +id[8560] = "2539-08-08T04:55:29" +ik[8560] = 54.538 +il[8560] = 31 +im[8560] = 0.0866 +ij[8560] = 9 +id[8561] = "2539-09-30T14:59:08" +ik[8561] = 3.833 +il[8561] = -167 +im[8561] = 0.0791 +ij[8561] = 28.8 +id[8562] = "2539-10-14T04:24:43" +ik[8562] = 1.163 +il[8562] = -125 +im[8562] = 0.1197 +ij[8562] = 27.4 +id[8563] = "2539-10-23T09:24:37" +ik[8563] = 90 +il[8563] = -97 +im[8563] = 0.2018 +ij[8563] = 6 +id[8564] = "2539-12-13T03:53:46" +ik[8564] = 0 +il[8564] = 29 +im[8564] = 0.1187 +ij[8564] = 13 +id[8565] = "2539-12-18T06:43:03" +ik[8565] = 0.734 +il[8565] = 31 +im[8565] = 0.3732 +ij[8565] = 28.7 +id[8566] = "2540-01-02T20:23:41" +ik[8566] = 0.5631 +il[8566] = 62 +im[8566] = 0.5631 +ij[8566] = 2 +id[8567] = "2540-01-03T16:19:12" +ik[8567] = 3.32 +il[8567] = 63 +im[8567] = 0.5522 +ij[8567] = 11 +id[8568] = "2540-01-24T09:21:30" +ik[8568] = 42.23 +il[8568] = 85 +im[8568] = 0.1445 +ij[8568] = 7.1545 +id[8569] = "2540-02-22T20:55:32" +ik[8569] = 4.973 +il[8569] = 142 +im[8569] = 0.1598 +ij[8569] = 28.7 +id[8570] = "2540-02-25T00:29:15" +ik[8570] = 73.86 +il[8570] = 147 +im[8570] = 0.2431 +ij[8570] = 14 +id[8571] = "2540-03-15T06:14:27" +ik[8571] = 90 +il[8571] = -165 +im[8571] = 0.1956 +ij[8571] = 5 +id[8572] = "2540-03-22T13:58:03" +ik[8572] = 3.292 +il[8572] = -142 +im[8572] = 0.0915 +ij[8572] = 27.3 +id[8573] = "2540-04-11T15:10:30" +ik[8573] = 0.566 +il[8573] = -80 +im[8573] = 0.1587 +ij[8573] = 27.5 +id[8574] = "2540-05-04T00:50:58" +ik[8574] = 1.011 +il[8574] = -10 +im[8574] = 0.0241 +ij[8574] = 28.6 +id[8575] = "2540-05-28T06:51:50" +ik[8575] = 4.04 +il[8575] = 65 +im[8575] = 0.122 +ij[8575] = 27.6 +id[8576] = "2540-05-31T05:13:16" +ik[8576] = 54.285 +il[8576] = 74 +im[8576] = 0.0832 +ij[8576] = 8 +id[8577] = "2540-06-17T01:12:25" +ik[8577] = 0.517 +il[8577] = 125 +im[8577] = 0.019 +ij[8577] = 28.5 +id[8578] = "2540-07-06T00:13:49" +ik[8578] = 5.82 +il[8578] = -177 +im[8578] = 0.0495 +ij[8578] = 27.2 +id[8579] = "2540-07-22T04:32:52" +ik[8579] = 4.44 +il[8579] = -128 +im[8579] = 0.0691 +ij[8579] = 28.1 +id[8580] = "2540-07-23T02:08:09" +ik[8580] = 0.036 +il[8580] = -125 +im[8580] = 0.08 +ij[8580] = 27.91 +id[8581] = "2540-10-17T19:30:43" +ik[8581] = 1.19 +il[8581] = 121 +im[8581] = 0.0125 +ij[8581] = 12 +id[8582] = "2540-12-28T18:15:15" +ik[8582] = 0.75 +il[8582] = 156 +im[8582] = 0.0419 +ij[8582] = 28.7 +id[8583] = "2541-01-13T12:50:03" +ik[8583] = 0.195 +il[8583] = -155 +im[8583] = 0.0361 +ij[8583] = 27.3 +id[8584] = "2541-01-31T06:38:03" +ik[8584] = 1.088 +il[8584] = -101 +im[8584] = 0.0136 +ij[8584] = 27.5 +id[8585] = "2541-03-07T18:03:36" +ik[8585] = 1.974 +il[8585] = 10 +im[8585] = 0.1016 +ij[8585] = 28.6 +id[8586] = "2541-03-16T17:48:46" +ik[8586] = 2.01 +il[8586] = 38 +im[8586] = 0.0181 +ij[8586] = 27.6 +id[8587] = "2541-03-20T09:43:31" +ik[8587] = 54.06 +il[8587] = 50 +im[8587] = 0.0966 +ij[8587] = 9 +id[8588] = "2541-04-24T16:34:56" +ik[8588] = 2.437 +il[8588] = 160 +im[8588] = 0.1493 +ij[8588] = 27.2 +id[8589] = "2541-05-09T14:11:11" +ik[8589] = 2.77 +il[8589] = -154 +im[8589] = 0.1506 +ij[8589] = 28.5 +id[8590] = "2541-05-30T10:20:21" +ik[8590] = 90 +il[8590] = -90 +im[8590] = 0.0036 +ij[8590] = 6 +id[8591] = "2541-07-17T00:29:42" +ik[8591] = 0 +il[8591] = 28 +im[8591] = 0.3487 +ij[8591] = 13 +id[8592] = "2541-08-07T23:36:57" +ik[8592] = 6.96 +il[8592] = 86 +im[8592] = 0.0968 +ij[8592] = 11 +id[8593] = "2541-08-14T20:43:46" +ik[8593] = 0.5117 +il[8593] = 64 +im[8593] = 0.5117 +ij[8593] = 2 +id[8594] = "2541-08-16T20:34:22" +ik[8594] = 0.796 +il[8594] = 66 +im[8594] = 0.4593 +ij[8594] = 27.8 +id[8595] = "2541-08-29T23:32:17" +ik[8595] = 43.96 +il[8595] = 82 +im[8595] = 0.3507 +ij[8595] = 7.1655 +id[8596] = "2541-10-02T13:39:02" +ik[8596] = 77.55 +il[8596] = 148 +im[8596] = 0.0375 +ij[8596] = 14 +id[8597] = "2541-10-17T14:51:54" +ik[8597] = 90 +il[8597] = -173 +im[8597] = 0.0239 +ij[8597] = 5 +id[8598] = "2541-12-03T00:56:44" +ik[8598] = 0.81 +il[8598] = -31 +im[8598] = 0.0549 +ij[8598] = 28.4 +id[8599] = "2541-12-24T15:05:11" +ik[8599] = 0.31 +il[8599] = 36 +im[8599] = 0.1261 +ij[8599] = 28.8 +id[8600] = "2541-12-31T23:49:45" +ik[8600] = 53.789 +il[8600] = 59 +im[8600] = 0.0161 +ij[8600] = 8 +id[8601] = "2542-01-12T02:17:09" +ik[8601] = 4.016 +il[8601] = 94 +im[8601] = 0.0557 +ij[8601] = 27.1 +id[8602] = "2542-02-13T14:52:56" +ik[8602] = 0.547 +il[8602] = -164 +im[8602] = 0.0057 +ij[8602] = 28.7 +id[8603] = "2542-02-19T12:00:00" +ik[8603] = 1.434 +il[8603] = -146 +im[8603] = 0.0937 +ij[8603] = 28.1 +id[8604] = "2542-02-27T12:17:10" +ik[8604] = 0.863 +il[8604] = -121 +im[8604] = 0.0435 +ij[8604] = 27.3 +id[8605] = "2542-03-17T04:26:30" +ik[8605] = 0.673 +il[8605] = -66 +im[8605] = 0.022 +ij[8605] = 27.5 +id[8606] = "2542-04-29T03:16:16" +ik[8606] = 1.217 +il[8606] = 54 +im[8606] = 0.0249 +ij[8606] = 28.6 +id[8607] = "2542-05-31T21:12:57" +ik[8607] = 0.26 +il[8607] = 142 +im[8607] = 0.0285 +ij[8607] = 12 +id[8608] = "2542-07-13T22:16:53" +ik[8608] = 0.587 +il[8608] = 93 +im[8608] = 0.0243 +ij[8608] = 28.5 +id[8609] = "2542-07-30T15:26:29" +ik[8609] = 0.116 +il[8609] = 145 +im[8609] = 0.0208 +ij[8609] = 28.1 +id[8610] = "2542-09-02T11:46:01" +ik[8610] = 4.9 +il[8610] = -111 +im[8610] = 0.0782 +ij[8610] = 28.1 +id[8611] = "2542-10-16T17:17:39" +ik[8611] = 2.653 +il[8611] = 23 +im[8611] = 0.0906 +ij[8611] = 28.8 +id[8612] = "2542-10-18T01:57:47" +ik[8612] = 53.933 +il[8612] = 27 +im[8612] = 0.1106 +ij[8612] = 9 +id[8613] = "2542-10-23T00:59:49" +ik[8613] = 2.937 +il[8613] = 42 +im[8613] = 0.1106 +ij[8613] = 27.4 +id[8614] = "2542-12-11T21:12:31" +ik[8614] = 1.811 +il[8614] = -165 +im[8614] = 0.012 +ij[8614] = 28.7 +id[8615] = "2542-12-20T08:55:23" +ik[8615] = 0.87 +il[8615] = -139 +im[8615] = 0.1917 +ij[8615] = 27.3 +id[8616] = "2543-01-07T00:13:34" +ik[8616] = 90 +il[8616] = -83 +im[8616] = 0.1458 +ij[8616] = 6 +id[8617] = "2543-01-10T21:51:23" +ik[8617] = 0.262 +il[8617] = -72 +im[8617] = 0.0287 +ij[8617] = 27.5 +id[8618] = "2543-02-24T13:39:29" +ik[8618] = 0 +il[8618] = 37 +im[8618] = 0.1547 +ij[8618] = 13 +id[8619] = "2543-03-15T07:06:46" +ik[8619] = 0.5474 +il[8619] = 76 +im[8619] = 0.5475 +ij[8619] = 2 +id[8620] = "2543-03-18T15:48:57" +ik[8620] = 8.78 +il[8620] = 84 +im[8620] = 0.3964 +ij[8620] = 11 +id[8621] = "2543-04-08T12:42:04" +ik[8621] = 42.96 +il[8621] = 93 +im[8621] = 0.4037 +ij[8621] = 7.1605 +id[8622] = "2543-05-11T04:55:50" +ik[8622] = 75.64 +il[8622] = 157 +im[8622] = 0.252 +ij[8622] = 14 +id[8623] = "2543-05-28T13:54:24" +ik[8623] = 90 +il[8623] = -158 +im[8623] = 0.0876 +ij[8623] = 5 +id[8624] = "2543-06-07T12:51:45" +ik[8624] = 4.35 +il[8624] = -127 +im[8624] = 0.1937 +ij[8624] = 27.6 +id[8625] = "2543-06-16T06:29:05" +ik[8625] = 0.066 +il[8625] = -100 +im[8625] = 0.044 +ij[8625] = 28.6 +id[8626] = "2543-08-09T09:00:54" +ik[8626] = 54.517 +il[8626] = 65 +im[8626] = 0.0902 +ij[8626] = 8 +id[8627] = "2543-09-22T13:22:39" +ik[8627] = 0.204 +il[8627] = -160 +im[8627] = 0.0936 +ij[8627] = 28.5 +id[8628] = "2543-12-31T20:26:52" +ik[8628] = 0.45 +il[8628] = 130 +im[8628] = 0.0751 +ij[8628] = 12 +id[8629] = "2544-02-15T13:29:36" +ik[8629] = 1.002 +il[8629] = 83 +im[8629] = 0.0705 +ij[8629] = 27.5 +id[8630] = "2544-03-20T18:55:52" +ik[8630] = 4.333 +il[8630] = -171 +im[8630] = 0.0844 +ij[8630] = 28.1 +id[8631] = "2544-03-30T08:32:36" +ik[8631] = 2.64 +il[8631] = -141 +im[8631] = 0.0681 +ij[8631] = 27.6 +id[8632] = "2544-04-20T00:02:44" +ik[8632] = 2.438 +il[8632] = -76 +im[8632] = 0.0918 +ij[8632] = 28.6 +id[8633] = "2544-05-06T15:30:29" +ik[8633] = 3.546 +il[8633] = -24 +im[8633] = 0.0878 +ij[8633] = 27.2 +id[8634] = "2544-05-29T06:13:49" +ik[8634] = 54.605 +il[8634] = 46 +im[8634] = 0.0685 +ij[8634] = 9 +id[8635] = "2544-08-07T12:22:25" +ik[8635] = 90 +il[8635] = -99 +im[8635] = 0.025 +ij[8635] = 6 +id[8636] = "2544-08-25T12:44:38" +ik[8636] = 3.768 +il[8636] = -53 +im[8636] = 0.0999 +ij[8636] = 28.5 +id[8637] = "2544-09-26T04:56:17" +ik[8637] = 0 +il[8637] = 21 +im[8637] = 0.3805 +ij[8637] = 13 +id[8638] = "2544-10-11T09:13:48" +ik[8638] = 0.5404 +il[8638] = 50 +im[8638] = 0.5404 +ij[8638] = 2 +id[8639] = "2544-10-18T20:22:33" +ik[8639] = 7.37 +il[8639] = 69 +im[8639] = 0.1244 +ij[8639] = 11 +id[8640] = "2544-11-08T10:46:03" +ik[8640] = 43.24 +il[8640] = 80 +im[8640] = 0.4335 +ij[8640] = 7.1582 +id[8641] = "2544-12-10T12:49:43" +ik[8641] = 75.33 +il[8641] = 143 +im[8641] = 0.115 +ij[8641] = 14 +id[8642] = "2544-12-28T11:55:53" +ik[8642] = 90 +il[8642] = -173 +im[8642] = 0.1042 +ij[8642] = 5 +id[8643] = "2545-01-08T13:23:48" +ik[8643] = 1.409 +il[8643] = -138 +im[8643] = 0.1016 +ij[8643] = 28.8 +id[8644] = "2545-01-22T21:30:02" +ik[8644] = 2.747 +il[8644] = -94 +im[8644] = 0.0719 +ij[8644] = 27.1 +id[8645] = "2545-03-09T14:18:31" +ik[8645] = 0.872 +il[8645] = 49 +im[8645] = 0.0534 +ij[8645] = 28.7 +id[8646] = "2545-03-12T22:11:23" +ik[8646] = 1.529 +il[8646] = 59 +im[8646] = 0.0384 +ij[8646] = 27.3 +id[8647] = "2545-03-17T06:06:43" +ik[8647] = 53.813 +il[8647] = 73 +im[8647] = 0.1143 +ij[8647] = 8 +id[8648] = "2545-03-31T00:07:49" +ik[8648] = 0.331 +il[8648] = 116 +im[8648] = 0.0854 +ij[8648] = 27.5 +id[8649] = "2545-04-20T22:29:51" +ik[8649] = 2.138 +il[8649] = -180 +im[8649] = 0.0886 +ij[8649] = 28.1 +id[8650] = "2545-05-14T11:53:37" +ik[8650] = 3.68 +il[8650] = -108 +im[8650] = 0.0756 +ij[8650] = 27.6 +id[8651] = "2545-06-11T13:22:22" +ik[8651] = 1.031 +il[8651] = -22 +im[8651] = 0.0403 +ij[8651] = 28.6 +id[8652] = "2545-06-21T05:01:49" +ik[8652] = 5.202 +il[8652] = 7 +im[8652] = 0.0676 +ij[8652] = 27.2 +id[8653] = "2545-08-07T00:25:55" +ik[8653] = 1.13 +il[8653] = 128 +im[8653] = 0.0318 +ij[8653] = 12 +id[8654] = "2545-09-28T14:21:15" +ik[8654] = 4.122 +il[8654] = 109 +im[8654] = 0.0864 +ij[8654] = 28.1 +id[8655] = "2545-10-25T08:18:31" +ik[8655] = 0.97 +il[8655] = -170 +im[8655] = 0.0476 +ij[8655] = 28.5 +id[8656] = "2545-11-03T18:54:43" +ik[8656] = 3.45 +il[8656] = -142 +im[8656] = 0.0735 +ij[8656] = 28.1 +id[8657] = "2545-11-04T10:01:20" +ik[8657] = 2.065 +il[8657] = -140 +im[8657] = 0.0644 +ij[8657] = 28.8 +id[8658] = "2545-11-05T04:43:49" +ik[8658] = 3.788 +il[8658] = -137 +im[8658] = 0.0517 +ij[8658] = 27.4 +id[8659] = "2545-12-30T13:24:43" +ik[8659] = 0.54 +il[8659] = 32 +im[8659] = 0.1206 +ij[8659] = 27.3 +id[8660] = "2546-01-01T10:24:31" +ik[8660] = 0.663 +il[8660] = 38 +im[8660] = 0.111 +ij[8660] = 28.4 +id[8661] = "2546-01-01T17:22:18" +ik[8661] = 53.566 +il[8661] = 39 +im[8661] = 0.1079 +ij[8661] = 9 +id[8662] = "2546-01-02T20:38:06" +ik[8662] = 1.11 +il[8662] = 42 +im[8662] = 0.0916 +ij[8662] = 28.7 +id[8663] = "2546-01-17T21:24:43" +ik[8663] = 1.071 +il[8663] = 89 +im[8663] = 0.0917 +ij[8663] = 27.5 +id[8664] = "2546-03-06T07:05:33" +ik[8664] = 0.49 +il[8664] = -123 +im[8664] = 0.0361 +ij[8664] = 27.6 +id[8665] = "2546-03-20T15:05:11" +ik[8665] = 90 +il[8665] = -78 +im[8665] = 0.097 +ij[8665] = 6 +id[8666] = "2546-05-06T12:50:10" +ik[8666] = 0 +il[8666] = 37 +im[8666] = 0.2308 +ij[8666] = 13 +id[8667] = "2546-05-07T10:10:15" +ik[8667] = 1.904 +il[8667] = 23 +im[8667] = 0.3032 +ij[8667] = 27.2 +id[8668] = "2546-05-28T13:49:26" +ik[8668] = 2.09 +il[8668] = 95 +im[8668] = 0.2666 +ij[8668] = 11 +id[8669] = "2546-06-06T07:55:06" +ik[8669] = 0.5133 +il[8669] = 76 +im[8669] = 0.5133 +ij[8669] = 2 +id[8670] = "2546-06-18T21:03:47" +ik[8670] = 43.34 +il[8670] = 91 +im[8670] = 0.3831 +ij[8670] = 7.1656 +id[8671] = "2546-07-22T20:07:17" +ik[8671] = 2.202 +il[8671] = 158 +im[8671] = 0.1275 +ij[8671] = 28.6 +id[8672] = "2546-07-22T20:15:34" +ik[8672] = 77.31 +il[8672] = 158 +im[8672] = 0.1273 +ij[8672] = 14 +id[8673] = "2546-08-06T14:47:29" +ik[8673] = 90 +il[8673] = -163 +im[8673] = 0.1365 +ij[8673] = 5 +id[8674] = "2546-10-17T21:24:06" +ik[8674] = 54.257 +il[8674] = 57 +im[8674] = 0.0974 +ij[8674] = 8 +id[8675] = "2546-12-20T04:28:07" +ik[8675] = 0.528 +il[8675] = -106 +im[8675] = 0.0458 +ij[8675] = 28.8 +id[8676] = "2546-12-29T00:37:35" +ik[8676] = 4.762 +il[8676] = -78 +im[8676] = 0.0887 +ij[8676] = 27.1 +id[8677] = "2547-01-03T08:17:13" +ik[8677] = 0.065 +il[8677] = -62 +im[8677] = 0.051 +ij[8677] = 28.5 +id[8678] = "2547-03-18T23:32:38" +ik[8678] = 1.42 +il[8678] = 147 +im[8678] = 0.0678 +ij[8678] = 12 +id[8679] = "2547-05-21T17:21:09" +ik[8679] = 4.22 +il[8679] = 158 +im[8679] = 0.0071 +ij[8679] = 27.2 +id[8680] = "2547-06-02T06:36:17" +ik[8680] = 1.929 +il[8680] = -166 +im[8680] = 0.072 +ij[8680] = 28.6 +id[8681] = "2547-06-02T09:46:56" +ik[8681] = 0.128 +il[8681] = -165 +im[8681] = 0.0704 +ij[8681] = 28.1 +id[8682] = "2547-06-08T08:04:07" +ik[8682] = 0.234 +il[8682] = -147 +im[8682] = 0.0319 +ij[8682] = 27.9 +id[8683] = "2547-08-05T22:13:53" +ik[8683] = 54.552 +il[8683] = 34 +im[8683] = 0.009 +ij[8683] = 9 +id[8684] = "2547-10-14T03:36:15" +ik[8684] = 1.065 +il[8684] = -116 +im[8684] = 0.1725 +ij[8684] = 27.4 +id[8685] = "2547-10-17T09:40:36" +ik[8685] = 4.921 +il[8685] = -106 +im[8685] = 0.075 +ij[8685] = 28.8 +id[8686] = "2547-10-20T21:06:04" +ik[8686] = 90 +il[8686] = -95 +im[8686] = 0.0693 +ij[8686] = 6 +id[8687] = "2547-12-10T20:16:01" +ik[8687] = 0 +il[8687] = 32 +im[8687] = 0.4086 +ij[8687] = 13 +id[8688] = "2548-01-01T05:13:55" +ik[8688] = 2.93 +il[8688] = 88 +im[8688] = 0.459 +ij[8688] = 11 +id[8689] = "2548-01-03T22:48:19" +ik[8689] = 0.572 +il[8689] = 67 +im[8689] = 0.5721 +ij[8689] = 2 +id[8690] = "2548-01-21T21:50:38" +ik[8690] = 42.07 +il[8690] = 87 +im[8690] = 0.2422 +ij[8690] = 7.1544 +id[8691] = "2548-02-22T12:22:20" +ik[8691] = 73.67 +il[8691] = 149 +im[8691] = 0.0712 +ij[8691] = 14 +id[8692] = "2548-03-02T20:51:04" +ik[8692] = 3.577 +il[8692] = 171 +im[8692] = 0.2093 +ij[8692] = 28.5 +id[8693] = "2548-03-12T18:27:44" +ik[8693] = 90 +il[8693] = -163 +im[8693] = 0.1861 +ij[8693] = 5 +id[8694] = "2548-03-22T12:01:36" +ik[8694] = 3.185 +il[8694] = -132 +im[8694] = 0.0322 +ij[8694] = 27.3 +id[8695] = "2548-03-31T06:16:07" +ik[8695] = 1.534 +il[8695] = -105 +im[8695] = 0.1777 +ij[8695] = 28.7 +id[8696] = "2548-04-07T13:30:34" +ik[8696] = 1.623 +il[8696] = -82 +im[8696] = 0.0363 +ij[8696] = 28.4 +id[8697] = "2548-04-11T09:26:56" +ik[8697] = 0.514 +il[8697] = -70 +im[8697] = 0.1373 +ij[8697] = 27.5 +id[8698] = "2548-05-27T21:55:25" +ik[8698] = 4.02 +il[8698] = 73 +im[8698] = 0.1228 +ij[8698] = 27.6 +id[8699] = "2548-05-28T21:02:48" +ik[8699] = 54.27 +il[8699] = 76 +im[8699] = 0.1232 +ij[8699] = 8 +id[8700] = "2548-07-05T13:56:55" +ik[8700] = 5.797 +il[8700] = -169 +im[8700] = 0.0142 +ij[8700] = 27.2 +id[8701] = "2548-07-23T19:49:00" +ik[8701] = 0.34 +il[8701] = -113 +im[8701] = 0.0646 +ij[8701] = 28.6 +id[8702] = "2548-10-15T10:12:00" +ik[8702] = 1.22 +il[8702] = 123 +im[8702] = 0.0569 +ij[8702] = 12 +id[8703] = "2548-11-19T11:12:42" +ik[8703] = 4.379 +il[8703] = 58 +im[8703] = 0.0333 +ij[8703] = 27.4 +id[8704] = "2548-11-24T01:14:45" +ik[8704] = 1.653 +il[8704] = 61 +im[8704] = 0.0856 +ij[8704] = 28.8 +id[8705] = "2548-12-14T09:52:42" +ik[8705] = 5.382 +il[8705] = 122 +im[8705] = 0.0606 +ij[8705] = 28.1 +id[8706] = "2549-01-01T07:44:24" +ik[8706] = 0.733 +il[8706] = 177 +im[8706] = 0.0134 +ij[8706] = 28.1 +id[8707] = "2549-01-13T02:22:02" +ik[8707] = 0.203 +il[8707] = -147 +im[8707] = 0.0674 +ij[8707] = 27.3 +id[8708] = "2549-01-27T06:35:42" +ik[8708] = 0.747 +il[8708] = -103 +im[8708] = 0.0867 +ij[8708] = 28.7 +id[8709] = "2549-01-29T05:24:43" +ik[8709] = 0.381 +il[8709] = -97 +im[8709] = 0.0605 +ij[8709] = 28.5 +id[8710] = "2549-01-30T20:22:29" +ik[8710] = 1.087 +il[8710] = -92 +im[8710] = 0.0323 +ij[8710] = 27.5 +id[8711] = "2549-03-16T08:35:18" +ik[8711] = 1.98 +il[8711] = 47 +im[8711] = 0.0355 +ij[8711] = 27.6 +id[8712] = "2549-03-17T23:35:42" +ik[8712] = 54.036 +il[8712] = 52 +im[8712] = 0.0118 +ij[8712] = 9 +id[8713] = "2549-04-24T10:02:29" +ik[8713] = 2.387 +il[8713] = 169 +im[8713] = 0.1544 +ij[8713] = 27.2 +id[8714] = "2549-05-28T04:08:52" +ik[8714] = 90 +il[8714] = -87 +im[8714] = 0.1474 +ij[8714] = 6 +id[8715] = "2549-05-30T20:26:44" +ik[8715] = 3.02 +il[8715] = -80 +im[8715] = 0.0399 +ij[8715] = 28.6 +id[8716] = "2549-07-14T12:22:47" +ik[8716] = 0 +il[8716] = 29 +im[8716] = 0.0512 +ij[8716] = 13 +id[8717] = "2549-08-02T13:31:57" +ik[8717] = 0.5119 +il[8717] = 69 +im[8717] = 0.5119 +ij[8717] = 2 +id[8718] = "2549-08-05T15:38:52" +ik[8718] = 6.76 +il[8718] = 76 +im[8718] = 0.3841 +ij[8718] = 11 +id[8719] = "2549-08-10T07:40:22" +ik[8719] = 0.422 +il[8719] = 65 +im[8719] = 0.1199 +ij[8719] = 27.8 +id[8720] = "2549-08-27T16:30:23" +ik[8720] = 44.17 +il[8720] = 85 +im[8720] = 0.3925 +ij[8720] = 7.1656 +id[8721] = "2549-09-30T06:43:09" +ik[8721] = 77.76 +il[8721] = 151 +im[8721] = 0.1749 +ij[8721] = 14 +id[8722] = "2549-10-15T06:29:30" +ik[8722] = 90 +il[8722] = -170 +im[8722] = 0.1427 +ij[8722] = 5 +id[8723] = "2549-12-29T12:09:30" +ik[8723] = 53.8 +il[8723] = 62 +im[8723] = 0.0836 +ij[8723] = 8 +id[8724] = "2550-01-07T23:32:47" +ik[8724] = 0.054 +il[8724] = 91 +im[8724] = 0.1074 +ij[8724] = 28.8 +id[8725] = "2550-01-11T16:46:02" +ik[8725] = 4.046 +il[8725] = 103 +im[8725] = 0.088 +ij[8725] = 27.1 +id[8726] = "2550-02-27T01:52:42" +ik[8726] = 0.849 +il[8726] = -113 +im[8726] = 0.0742 +ij[8726] = 27.3 +id[8727] = "2550-03-15T05:54:18" +ik[8727] = 0.369 +il[8727] = -63 +im[8727] = 0.0468 +ij[8727] = 28.7 +id[8728] = "2550-03-16T17:53:35" +ik[8728] = 0.679 +il[8728] = -58 +im[8728] = 0.0226 +ij[8728] = 27.5 +id[8729] = "2550-04-04T22:16:27" +ik[8729] = 0.029 +il[8729] = 1 +im[8729] = 0.0567 +ij[8729] = 28.5 +id[8730] = "2550-04-15T04:43:58" +ik[8730] = 0.303 +il[8730] = 32 +im[8730] = 0.0378 +ij[8730] = 28.4 +id[8731] = "2550-04-25T05:29:11" +ik[8731] = 1.067 +il[8731] = 52 +im[8731] = 0.0839 +ij[8731] = 28.1 +id[8732] = "2550-05-29T14:49:55" +ik[8732] = 0.32 +il[8732] = 145 +im[8732] = 0.0389 +ij[8732] = 12 +id[8733] = "2550-06-30T04:50:18" +ik[8733] = 3.088 +il[8733] = 60 +im[8733] = 0.0147 +ij[8733] = 28.1 +id[8734] = "2550-07-14T07:25:32" +ik[8734] = 0.873 +il[8734] = 104 +im[8734] = 0.0438 +ij[8734] = 28.6 +id[8735] = "2550-08-13T02:34:48" +ik[8735] = 3.954 +il[8735] = -164 +im[8735] = 0.0486 +ij[8735] = 28.1 +id[8736] = "2550-10-15T15:14:25" +ik[8736] = 53.956 +il[8736] = 29 +im[8736] = 0.0359 +ij[8736] = 9 +id[8737] = "2550-10-22T16:18:28" +ik[8737] = 2.904 +il[8737] = 51 +im[8737] = 0.1294 +ij[8737] = 27.4 +id[8738] = "2550-10-31T08:59:25" +ik[8738] = 3.232 +il[8738] = 77 +im[8738] = 0.0299 +ij[8738] = 28.8 +id[8739] = "2550-12-20T05:41:35" +ik[8739] = 0.867 +il[8739] = -129 +im[8739] = 0.1906 +ij[8739] = 27.3 +id[8740] = "2551-01-04T12:11:49" +ik[8740] = 90 +il[8740] = -81 +im[8740] = 0.2152 +ij[8740] = 6 +id[8741] = "2551-01-11T02:43:22" +ik[8741] = 0.155 +il[8741] = -62 +im[8741] = 0.0583 +ij[8741] = 27.5 +id[8742] = "2551-01-16T18:27:56" +ik[8742] = 0.714 +il[8742] = -49 +im[8742] = 0.2048 +ij[8742] = 28.7 +id[8743] = "2551-02-22T06:43:36" +ik[8743] = 0 +il[8743] = 38 +im[8743] = 0.197 +ij[8743] = 13 +id[8744] = "2551-03-16T05:16:48" +ik[8744] = 8.83 +il[8744] = 60 +im[8744] = 0.5402 +ij[8744] = 11 +id[8745] = "2551-03-16T09:20:45" +ik[8745] = 0.5406 +il[8745] = 71 +im[8745] = 0.5407 +ij[8745] = 2 +id[8746] = "2551-04-06T05:46:10" +ik[8746] = 42.96 +il[8746] = 95 +im[8746] = 0.1339 +ij[8746] = 7.1604 +id[8747] = "2551-05-08T17:43:01" +ik[8747] = 75.46 +il[8747] = -170 +im[8747] = 0.2436 +ij[8747] = 14 +id[8748] = "2551-05-26T04:46:01" +ik[8748] = 90 +il[8748] = -155 +im[8748] = 0.2003 +ij[8748] = 5 +id[8749] = "2551-06-04T04:54:11" +ik[8749] = 0.629 +il[8749] = -127 +im[8749] = 0.097 +ij[8749] = 28.5 +id[8750] = "2551-06-07T10:52:06" +ik[8750] = 4.35 +il[8750] = -117 +im[8750] = 0.1707 +ij[8750] = 27.6 +id[8751] = "2551-08-07T02:05:06" +ik[8751] = 54.516 +il[8751] = 68 +im[8751] = 0.1117 +ij[8751] = 8 +id[8752] = "2551-09-04T17:31:12" +ik[8752] = 0.475 +il[8752] = 155 +im[8752] = 0.0904 +ij[8752] = 28.6 +id[8753] = "2551-12-29T07:23:31" +ik[8753] = 0.38 +il[8753] = 132 +im[8753] = 0.0147 +ij[8753] = 12 +id[8754] = "2552-02-13T17:01:32" +ik[8754] = 0.091 +il[8754] = 87 +im[8754] = 0.0233 +ij[8754] = 28.1 +id[8755] = "2552-02-15T02:42:29" +ik[8755] = 1.003 +il[8755] = 91 +im[8755] = 0.0464 +ij[8755] = 27.5 +id[8756] = "2552-02-22T13:54:46" +ik[8756] = 0.58 +il[8756] = 114 +im[8756] = 0.0694 +ij[8756] = 28.7 +id[8757] = "2552-03-04T08:00:05" +ik[8757] = 3.654 +il[8757] = 148 +im[8757] = 0.089 +ij[8757] = 28.1 +id[8758] = "2552-03-29T22:01:04" +ik[8758] = 2.62 +il[8758] = -132 +im[8758] = 0.0301 +ij[8758] = 27.6 +id[8759] = "2552-04-24T10:43:14" +ik[8759] = 0.399 +il[8759] = -52 +im[8759] = 0.0617 +ij[8759] = 28.4 +id[8760] = "2552-04-26T17:20:58" +ik[8760] = 1.399 +il[8760] = -45 +im[8760] = 0.02 +ij[8760] = 28.5 +id[8761] = "2552-05-06T05:40:15" +ik[8761] = 3.522 +il[8761] = -15 +im[8761] = 0.1032 +ij[8761] = 27.2 +id[8762] = "2552-05-27T00:00:40" +ik[8762] = 54.595 +il[8762] = 49 +im[8762] = 0.0257 +ij[8762] = 9 +id[8763] = "2552-07-07T15:47:37" +ik[8763] = 0.355 +il[8763] = 177 +im[8763] = 0.1018 +ij[8763] = 28.6 +id[8764] = "2552-08-05T03:45:00" +ik[8764] = 90 +il[8764] = -96 +im[8764] = 0.1665 +ij[8764] = 6 +id[8765] = "2552-09-23T17:43:28" +ik[8765] = 0 +il[8765] = 27 +im[8765] = 0.1521 +ij[8765] = 13 +id[8766] = "2552-10-12T10:49:28" +ik[8766] = 0.5454 +il[8766] = 66 +im[8766] = 0.5455 +ij[8766] = 2 +id[8767] = "2552-10-16T09:57:36" +ik[8767] = 7.56 +il[8767] = 75 +im[8767] = 0.3238 +ij[8767] = 11 +id[8768] = "2552-11-06T07:02:06" +ik[8768] = 43.55 +il[8768] = 83 +im[8768] = 0.4386 +ij[8768] = 7.1584 +id[8769] = "2552-12-08T04:24:47" +ik[8769] = 75.45 +il[8769] = 146 +im[8769] = 0.2681 +ij[8769] = 14 +id[8770] = "2552-12-26T01:25:14" +ik[8770] = 90 +il[8770] = -170 +im[8770] = 0.078 +ij[8770] = 5 +id[8771] = "2553-01-22T16:26:55" +ik[8771] = 2.809 +il[8771] = -84 +im[8771] = 0.1231 +ij[8771] = 27.1 +id[8772] = "2553-01-24T11:51:21" +ik[8772] = 1.156 +il[8772] = -79 +im[8772] = 0.0751 +ij[8772] = 28.8 +id[8773] = "2553-03-12T13:08:15" +ik[8773] = 1.501 +il[8773] = 68 +im[8773] = 0.0129 +ij[8773] = 27.3 +id[8774] = "2553-03-14T18:12:15" +ik[8774] = 53.801 +il[8774] = 75 +im[8774] = 0.0499 +ij[8774] = 8 +id[8775] = "2553-03-30T14:27:48" +ik[8775] = 0.346 +il[8775] = 124 +im[8775] = 0.0471 +ij[8775] = 27.5 +id[8776] = "2553-04-09T13:14:26" +ik[8776] = 0.389 +il[8776] = 155 +im[8776] = 0.0489 +ij[8776] = 28.7 +id[8777] = "2553-05-14T01:25:05" +ik[8777] = 3.67 +il[8777] = -99 +im[8777] = 0.0418 +ij[8777] = 27.6 +id[8778] = "2553-06-20T18:03:35" +ik[8778] = 5.184 +il[8778] = 15 +im[8778] = 0.0856 +ij[8778] = 27.2 +id[8779] = "2553-07-03T04:47:42" +ik[8779] = 0.195 +il[8779] = 53 +im[8779] = 0.0852 +ij[8779] = 28.5 +id[8780] = "2553-08-04T18:37:26" +ik[8780] = 1.1 +il[8780] = 131 +im[8780] = 0.0803 +ij[8780] = 12 +id[8781] = "2553-10-16T09:13:14" +ik[8781] = 3.296 +il[8781] = 173 +im[8781] = 0.0872 +ij[8781] = 28.1 +id[8782] = "2553-11-04T18:30:55" +ik[8782] = 3.77 +il[8782] = -129 +im[8782] = 0.0819 +ij[8782] = 27.4 +id[8783] = "2553-11-18T12:36:00" +ik[8783] = 2.448 +il[8783] = -87 +im[8783] = 0.0893 +ij[8783] = 28.8 +id[8784] = "2553-12-30T03:51:49" +ik[8784] = 53.565 +il[8784] = 41 +im[8784] = 0.1086 +ij[8784] = 9 +id[8785] = "2553-12-30T04:14:28" +ik[8785] = 0.548 +il[8785] = 41 +im[8785] = 0.1088 +ij[8785] = 27.3 +id[8786] = "2554-01-17T13:06:02" +ik[8786] = 1.062 +il[8786] = 98 +im[8786] = 0.1273 +ij[8786] = 27.5 +id[8787] = "2554-02-03T08:59:08" +ik[8787] = 0.083 +il[8787] = 150 +im[8787] = 0.1026 +ij[8787] = 28.7 +id[8788] = "2554-03-06T03:55:05" +ik[8788] = 0.39 +il[8788] = -113 +im[8788] = 0.0964 +ij[8788] = 27.6 +id[8789] = "2554-03-18T06:59:35" +ik[8789] = 90 +il[8789] = -75 +im[8789] = 0.2126 +ij[8789] = 6 +id[8790] = "2554-05-04T04:25:15" +ik[8790] = 0 +il[8790] = 39 +im[8790] = 0.1279 +ij[8790] = 13 +id[8791] = "2554-05-04T21:28:28" +ik[8791] = 4.161 +il[8791] = 26 +im[8791] = 0.0816 +ij[8791] = 27.2 +id[8792] = "2554-05-26T06:38:52" +ik[8792] = 2.41 +il[8792] = 97 +im[8792] = 0.487 +ij[8792] = 11 +id[8793] = "2554-06-07T13:34:17" +ik[8793] = 0.4984 +il[8793] = 83 +im[8793] = 0.4984 +ij[8793] = 2 +id[8794] = "2554-06-16T12:49:58" +ik[8794] = 43.35 +il[8794] = 94 +im[8794] = 0.1513 +ij[8794] = 7.1655 +id[8795] = "2554-07-20T11:40:43" +ik[8795] = 77.3 +il[8795] = -170 +im[8795] = 0.2317 +ij[8795] = 14 +id[8796] = "2554-08-04T07:27:54" +ik[8796] = 90 +il[8796] = -160 +im[8796] = 0.2169 +ij[8796] = 5 +id[8797] = "2554-08-22T19:42:40" +ik[8797] = 2.79 +il[8797] = -104 +im[8797] = 0.0825 +ij[8797] = 28.4 +id[8798] = "2554-09-08T00:00:25" +ik[8798] = 1.536 +il[8798] = -55 +im[8798] = 0.0644 +ij[8798] = 28.5 +id[8799] = "2554-10-15T12:52:17" +ik[8799] = 54.273 +il[8799] = 60 +im[8799] = 0.1151 +ij[8799] = 8 +id[8800] = "2554-10-17T00:59:45" +ik[8800] = 0.954 +il[8800] = 65 +im[8800] = 0.1188 +ij[8800] = 28.6 +id[8801] = "2554-12-28T14:02:54" +ik[8801] = 4.782 +il[8801] = -70 +im[8801] = 0.0725 +ij[8801] = 27.1 +id[8802] = "2555-01-03T01:48:34" +ik[8802] = 0.816 +il[8802] = -52 +im[8802] = 0.073 +ij[8802] = 28.8 +id[8803] = "2555-03-16T10:49:26" +ik[8803] = 1.43 +il[8803] = 149 +im[8803] = 0.0847 +ij[8803] = 12 +id[8804] = "2555-05-21T06:38:01" +ik[8804] = 4.204 +il[8804] = 167 +im[8804] = 0.0397 +ij[8804] = 27.2 +id[8805] = "2555-06-07T21:23:54" +ik[8805] = 0.253 +il[8805] = -138 +im[8805] = 0.0123 +ij[8805] = 27.9 +id[8806] = "2555-08-03T02:20:06" +ik[8806] = 0.044 +il[8806] = 35 +im[8806] = 0.0896 +ij[8806] = 28.5 +id[8807] = "2555-08-03T15:39:25" +ik[8807] = 54.565 +il[8807] = 37 +im[8807] = 0.0798 +ij[8807] = 9 +id[8808] = "2555-08-19T09:44:29" +ik[8808] = 1.635 +il[8808] = 85 +im[8808] = 0.0629 +ij[8808] = 28.6 +id[8809] = "2555-10-14T03:30:28" +ik[8809] = 0.962 +il[8809] = -106 +im[8809] = 0.209 +ij[8809] = 27.4 +id[8810] = "2555-10-18T08:52:49" +ik[8810] = 90 +il[8810] = -93 +im[8810] = 0.1137 +ij[8810] = 6 +id[8811] = "2555-11-05T18:33:15" +ik[8811] = 5.551 +il[8811] = -45 +im[8811] = 0.1272 +ij[8811] = 28.8 +id[8812] = "2555-12-08T11:41:10" +ik[8812] = 0 +il[8812] = 32 +im[8812] = 0.4615 +ij[8812] = 13 +id[8813] = "2555-12-29T18:11:31" +ik[8813] = 2.55 +il[8813] = 88 +im[8813] = 0.0585 +ij[8813] = 11 +id[8814] = "2556-01-05T01:09:15" +ik[8814] = 0.5694 +il[8814] = 72 +im[8814] = 0.5695 +ij[8814] = 2 +id[8815] = "2556-01-16T13:18:02" +ik[8815] = 5.442 +il[8815] = 85 +im[8815] = 0.4014 +ij[8815] = 28.8 +id[8816] = "2556-01-19T11:46:45" +ik[8816] = 42 +il[8816] = 89 +im[8816] = 0.4315 +ij[8816] = 7.1544 +id[8817] = "2556-02-20T00:15:30" +ik[8817] = 73.52 +il[8817] = 152 +im[8817] = 0.1511 +ij[8817] = 14 +id[8818] = "2556-03-10T06:39:15" +ik[8818] = 90 +il[8818] = -160 +im[8818] = 0.0416 +ij[8818] = 5 +id[8819] = "2556-03-22T09:30:01" +ik[8819] = 3.086 +il[8819] = -123 +im[8819] = 0.0304 +ij[8819] = 27.3 +id[8820] = "2556-04-11T03:29:08" +ik[8820] = 0.465 +il[8820] = -61 +im[8820] = 0.0984 +ij[8820] = 27.5 +id[8821] = "2556-05-03T15:50:58" +ik[8821] = 0.6 +il[8821] = 9 +im[8821] = 0.1095 +ij[8821] = 28.7 +id[8822] = "2556-05-26T12:41:39" +ik[8822] = 54.255 +il[8822] = 79 +im[8822] = 0.0881 +ij[8822] = 8 +id[8823] = "2556-05-27T12:44:00" +ik[8823] = 4.01 +il[8823] = 82 +im[8823] = 0.1019 +ij[8823] = 27.6 +id[8824] = "2556-07-05T03:36:28" +ik[8824] = 5.774 +il[8824] = -160 +im[8824] = 0.0283 +ij[8824] = 27.2 +id[8825] = "2556-07-22T04:56:38" +ik[8825] = 0.007 +il[8825] = -108 +im[8825] = 0.0088 +ij[8825] = 27.91 +id[8826] = "2556-10-13T01:01:55" +ik[8826] = 1.25 +il[8826] = 126 +im[8826] = 0.0882 +ij[8826] = 12 +id[8827] = "2556-11-19T00:28:14" +ik[8827] = 4.366 +il[8827] = 55 +im[8827] = 0.0072 +ij[8827] = 27.4 +id[8828] = "2556-12-07T18:23:36" +ik[8828] = 1.917 +il[8828] = 112 +im[8828] = 0.0541 +ij[8828] = 28.8 +id[8829] = "2556-12-14T18:33:24" +ik[8829] = 0.292 +il[8829] = 133 +im[8829] = 0.0737 +ij[8829] = 28.1 +id[8830] = "2557-01-12T15:57:08" +ik[8830] = 0.209 +il[8830] = -138 +im[8830] = 0.0873 +ij[8830] = 27.3 +id[8831] = "2557-01-30T10:10:55" +ik[8831] = 1.086 +il[8831] = -83 +im[8831] = 0.0705 +ij[8831] = 27.5 +id[8832] = "2557-02-27T00:24:46" +ik[8832] = 0.022 +il[8832] = 3 +im[8832] = 0.11 +ij[8832] = 28.7 +id[8833] = "2557-03-15T13:20:47" +ik[8833] = 54.012 +il[8833] = 55 +im[8833] = 0.0866 +ij[8833] = 9 +id[8834] = "2557-03-15T23:23:54" +ik[8834] = 1.95 +il[8834] = 56 +im[8834] = 0.0795 +ij[8834] = 27.6 +id[8835] = "2557-04-24T03:40:14" +ik[8835] = 2.335 +il[8835] = 178 +im[8835] = 0.1341 +ij[8835] = 27.2 +id[8836] = "2557-05-25T22:02:42" +ik[8836] = 90 +il[8836] = -84 +im[8836] = 0.1997 +ij[8836] = 6 +id[8837] = "2557-07-12T00:15:57" +ik[8837] = 0 +il[8837] = 32 +im[8837] = 0.276 +ij[8837] = 13 +id[8838] = "2557-08-03T07:46:33" +ik[8838] = 6.55 +il[8838] = 91 +im[8838] = 0.524 +ij[8838] = 11 +id[8839] = "2557-08-03T13:29:45" +ik[8839] = 0.5248 +il[8839] = 64 +im[8839] = 0.5248 +ij[8839] = 2 +id[8840] = "2557-08-04T11:46:27" +ik[8840] = 0.183 +il[8840] = 65 +im[8840] = 0.513 +ij[8840] = 27.8 +id[8841] = "2557-08-25T13:32:34" +ik[8841] = 44.55 +il[8841] = 88 +im[8841] = 0.1974 +ij[8841] = 7.1657 +id[8842] = "2557-09-28T00:11:19" +ik[8842] = 78 +il[8842] = 154 +im[8842] = 0.2616 +ij[8842] = 14 +id[8843] = "2557-10-12T22:12:26" +ik[8843] = 90 +il[8843] = -168 +im[8843] = 0.204 +ij[8843] = 5 +id[8844] = "2557-11-29T04:36:28" +ik[8844] = 0.607 +il[8844] = -23 +im[8844] = 0.1313 +ij[8844] = 28.6 +id[8845] = "2557-12-21T07:12:08" +ik[8845] = 0.736 +il[8845] = 46 +im[8845] = 0.0648 +ij[8845] = 28.5 +id[8846] = "2557-12-27T00:36:22" +ik[8846] = 53.811 +il[8846] = 64 +im[8846] = 0.1262 +ij[8846] = 8 +id[8847] = "2558-01-11T07:14:54" +ik[8847] = 4.075 +il[8847] = 112 +im[8847] = 0.1066 +ij[8847] = 27.1 +id[8848] = "2558-01-22T02:36:23" +ik[8848] = 0.24 +il[8848] = 145 +im[8848] = 0.0795 +ij[8848] = 28.8 +id[8849] = "2558-02-26T15:27:48" +ik[8849] = 0.836 +il[8849] = -104 +im[8849] = 0.0908 +ij[8849] = 27.3 +id[8850] = "2558-03-16T07:13:35" +ik[8850] = 0.686 +il[8850] = -49 +im[8850] = 0.0598 +ij[8850] = 27.5 +id[8851] = "2558-04-02T00:00:08" +ik[8851] = 1.927 +il[8851] = 2 +im[8851] = 0.0246 +ij[8851] = 28.1 +id[8852] = "2558-04-15T00:58:27" +ik[8852] = 0.665 +il[8852] = 42 +im[8852] = 0.0659 +ij[8852] = 28.7 +id[8853] = "2558-05-27T08:21:07" +ik[8853] = 0.37 +il[8853] = 148 +im[8853] = 0.0796 +ij[8853] = 12 +id[8854] = "2558-07-21T05:26:44" +ik[8854] = 2.979 +il[8854] = 135 +im[8854] = 0.0593 +ij[8854] = 28.1 +id[8855] = "2558-10-02T23:49:03" +ik[8855] = 2.654 +il[8855] = 1 +im[8855] = 0.0299 +ij[8855] = 28.6 +id[8856] = "2558-10-13T04:41:43" +ik[8856] = 53.979 +il[8856] = 32 +im[8856] = 0.064 +ij[8856] = 9 +id[8857] = "2558-10-22T07:40:41" +ik[8857] = 2.87 +il[8857] = 60 +im[8857] = 0.1251 +ij[8857] = 27.4 +id[8858] = "2558-11-01T17:03:59" +ik[8858] = 0.649 +il[8858] = 91 +im[8858] = 0.0295 +ij[8858] = 28.4 +id[8859] = "2558-11-15T05:34:56" +ik[8859] = 3.502 +il[8859] = 133 +im[8859] = 0.0121 +ij[8859] = 28.8 +id[8860] = "2558-11-15T17:38:49" +ik[8860] = 2.328 +il[8860] = 134 +im[8860] = 0.0231 +ij[8860] = 28.5 +id[8861] = "2558-12-20T02:58:54" +ik[8861] = 0.863 +il[8861] = -119 +im[8861] = 0.1605 +ij[8861] = 27.3 +id[8862] = "2559-01-02T00:05:39" +ik[8862] = 90 +il[8862] = -79 +im[8862] = 0.1361 +ij[8862] = 6 +id[8863] = "2559-01-11T09:21:08" +ik[8863] = 0.033 +il[8863] = -54 +im[8863] = 0.1276 +ij[8863] = 27.5 +id[8864] = "2559-02-20T00:11:46" +ik[8864] = 0 +il[8864] = 41 +im[8864] = 0.4115 +ij[8864] = 13 +id[8865] = "2559-03-13T18:37:26" +ik[8865] = 8.86 +il[8865] = 63 +im[8865] = 0.3554 +ij[8865] = 11 +id[8866] = "2559-03-17T09:08:14" +ik[8866] = 0.5259 +il[8866] = 78 +im[8866] = 0.526 +ij[8866] = 2 +id[8867] = "2559-04-04T02:17:21" +ik[8867] = 43.09 +il[8867] = 98 +im[8867] = 0.2094 +ij[8867] = 7.1602 +id[8868] = "2559-05-06T06:21:08" +ik[8868] = 75.26 +il[8868] = 162 +im[8868] = 0.0804 +ij[8868] = 14 +id[8869] = "2559-05-23T19:28:48" +ik[8869] = 90 +il[8869] = -153 +im[8869] = 0.1792 +ij[8869] = 5 +id[8870] = "2559-05-24T19:18:11" +ik[8870] = 0.851 +il[8870] = -150 +im[8870] = 0.1974 +ij[8870] = 28.7 +id[8871] = "2559-06-07T08:16:48" +ik[8871] = 4.35 +il[8871] = -108 +im[8871] = 0.1293 +ij[8871] = 27.6 +id[8872] = "2559-08-04T19:16:24" +ik[8872] = 54.516 +il[8872] = 71 +im[8872] = 0.0604 +ij[8872] = 8 +id[8873] = "2559-11-11T00:25:29" +ik[8873] = 0.159 +il[8873] = 13 +im[8873] = 0.0686 +ij[8873] = 28.1 +id[8874] = "2559-12-26T18:30:14" +ik[8874] = 0.32 +il[8874] = 134 +im[8874] = 0.0554 +ij[8874] = 12 +id[8875] = "2560-02-13T06:58:53" +ik[8875] = 3.188 +il[8875] = 96 +im[8875] = 0.0146 +ij[8875] = 28.1 +id[8876] = "2560-02-14T15:55:48" +ik[8876] = 1.004 +il[8876] = 100 +im[8876] = 0.0137 +ij[8876] = 27.5 +id[8877] = "2560-03-24T02:37:49" +ik[8877] = 0.057 +il[8877] = -140 +im[8877] = 0.0893 +ij[8877] = 28.7 +id[8878] = "2560-03-29T11:32:46" +ik[8878] = 2.6 +il[8878] = -124 +im[8878] = 0.0155 +ij[8878] = 27.6 +id[8879] = "2560-05-05T19:53:07" +ik[8879] = 3.498 +il[8879] = -7 +im[8879] = 0.1008 +ij[8879] = 27.2 +id[8880] = "2560-05-24T17:43:58" +ik[8880] = 54.584 +il[8880] = 52 +im[8880] = 0.1028 +ij[8880] = 9 +id[8881] = "2560-08-02T19:13:45" +ik[8881] = 90 +il[8881] = -94 +im[8881] = 0.1947 +ij[8881] = 6 +id[8882] = "2560-09-21T06:21:35" +ik[8882] = 0 +il[8882] = 29 +im[8882] = 0.2163 +ij[8882] = 13 +id[8883] = "2560-10-13T15:36:29" +ik[8883] = 0.5393 +il[8883] = 78 +im[8883] = 0.5393 +ij[8883] = 2 +id[8884] = "2560-10-13T23:35:31" +ik[8884] = 7.74 +il[8884] = 77 +im[8884] = 0.5374 +ij[8884] = 11 +id[8885] = "2560-11-03T17:01:14" +ik[8885] = 43.44 +il[8885] = 85 +im[8885] = 0.1813 +ij[8885] = 7.1587 +id[8886] = "2560-12-05T20:21:56" +ik[8886] = 75.58 +il[8886] = 148 +im[8886] = 0.2552 +ij[8886] = 14 +id[8887] = "2560-12-23T14:53:43" +ik[8887] = 90 +il[8887] = -168 +im[8887] = 0.2032 +ij[8887] = 5 +id[8888] = "2561-01-11T21:55:09" +ik[8888] = 0.893 +il[8888] = -108 +im[8888] = 0.0667 +ij[8888] = 28.6 +id[8889] = "2561-01-22T11:02:54" +ik[8889] = 2.868 +il[8889] = -75 +im[8889] = 0.1578 +ij[8889] = 27.1 +id[8890] = "2561-02-08T14:26:52" +ik[8890] = 0.726 +il[8890] = -22 +im[8890] = 0.1039 +ij[8890] = 28.8 +id[8891] = "2561-02-15T08:24:08" +ik[8891] = 2.214 +il[8891] = 0 +im[8891] = 0.0853 +ij[8891] = 28.4 +id[8892] = "2561-03-12T04:00:41" +ik[8892] = 1.474 +il[8892] = 77 +im[8892] = 0.0508 +ij[8892] = 27.3 +id[8893] = "2561-03-12T06:14:13" +ik[8893] = 53.79 +il[8893] = 77 +im[8893] = 0.0487 +ij[8893] = 8 +id[8894] = "2561-03-26T15:16:50" +ik[8894] = 0.365 +il[8894] = 122 +im[8894] = 0.0776 +ij[8894] = 28.5 +id[8895] = "2561-03-30T04:48:14" +ik[8895] = 0.36 +il[8895] = 133 +im[8895] = 0.0079 +ij[8895] = 27.5 +id[8896] = "2561-05-10T16:15:27" +ik[8896] = 0.907 +il[8896] = -100 +im[8896] = 0.0516 +ij[8896] = 28.7 +id[8897] = "2561-05-13T14:57:47" +ik[8897] = 3.66 +il[8897] = -91 +im[8897] = 0.0027 +ij[8897] = 27.6 +id[8898] = "2561-06-20T07:09:21" +ik[8898] = 5.166 +il[8898] = 24 +im[8898] = 0.087 +ij[8898] = 27.2 +id[8899] = "2561-08-02T12:53:16" +ik[8899] = 1.06 +il[8899] = 134 +im[8899] = 0.0819 +ij[8899] = 12 +id[8900] = "2561-09-25T16:25:58" +ik[8900] = 3.454 +il[8900] = 120 +im[8900] = 0.0077 +ij[8900] = 28.1 +id[8901] = "2561-11-04T08:14:27" +ik[8901] = 3.752 +il[8901] = -120 +im[8901] = 0.0971 +ij[8901] = 27.4 +id[8902] = "2561-11-18T19:14:44" +ik[8902] = 2.392 +il[8902] = -76 +im[8902] = 0.1019 +ij[8902] = 28.6 +id[8903] = "2561-12-02T16:00:28" +ik[8903] = 2.587 +il[8903] = -34 +im[8903] = 0.1039 +ij[8903] = 28.8 +id[8904] = "2561-12-27T14:24:54" +ik[8904] = 53.564 +il[8904] = 43 +im[8904] = 0.0326 +ij[8904] = 9 +id[8905] = "2561-12-29T19:10:27" +ik[8905] = 0.556 +il[8905] = 50 +im[8905] = 0.0786 +ij[8905] = 27.3 +id[8906] = "2562-01-17T04:54:27" +ik[8906] = 1.053 +il[8906] = 107 +im[8906] = 0.1416 +ij[8906] = 27.5 +id[8907] = "2562-02-15T04:36:28" +ik[8907] = 1.357 +il[8907] = -162 +im[8907] = 0.1685 +ij[8907] = 28.5 +id[8908] = "2562-03-06T01:31:39" +ik[8908] = 0.29 +il[8908] = -103 +im[8908] = 0.1496 +ij[8908] = 27.6 +id[8909] = "2562-03-09T10:07:06" +ik[8909] = 2.586 +il[8909] = -93 +im[8909] = 0.0382 +ij[8909] = 28.7 +id[8910] = "2562-03-15T22:45:10" +ik[8910] = 90 +il[8910] = -72 +im[8910] = 0.2019 +ij[8910] = 6 +id[8911] = "2562-05-01T20:22:23" +ik[8911] = 0 +il[8911] = 42 +im[8911] = 0.3739 +ij[8911] = 13 +id[8912] = "2562-05-02T12:01:47" +ik[8912] = 6.457 +il[8912] = 28 +im[8912] = 0.3475 +ij[8912] = 27.2 +id[8913] = "2562-05-14T00:37:48" +ik[8913] = 0.5031 +il[8913] = 63 +im[8913] = 0.5031 +ij[8913] = 2 +id[8914] = "2562-05-23T23:22:33" +ik[8914] = 2.74 +il[8914] = 88 +im[8914] = 0.3961 +ij[8914] = 11 +id[8915] = "2562-06-14T20:25:58" +ik[8915] = 44 +il[8915] = 98 +im[8915] = 0.1273 +ij[8915] = 7.1652 +id[8916] = "2562-07-18T02:36:45" +ik[8916] = 77.26 +il[8916] = 164 +im[8916] = 0.1817 +ij[8916] = 14 +id[8917] = "2562-08-02T00:10:05" +ik[8917] = 90 +il[8917] = -157 +im[8917] = 0.1721 +ij[8917] = 5 +id[8918] = "2562-10-13T04:27:35" +ik[8918] = 54.288 +il[8918] = 63 +im[8918] = 0.0564 +ij[8918] = 8 +id[8919] = "2562-12-28T03:24:40" +ik[8919] = 4.801 +il[8919] = -61 +im[8919] = 0.0444 +ij[8919] = 27.1 +id[8920] = "2563-01-08T18:49:40" +ik[8920] = 2.426 +il[8920] = -25 +im[8920] = 0.0116 +ij[8920] = 28.1 +id[8921] = "2563-01-11T06:06:28" +ik[8921] = 0.693 +il[8921] = -17 +im[8921] = 0.0348 +ij[8921] = 28.6 +id[8922] = "2563-01-16T22:06:14" +ik[8922] = 1.022 +il[8922] = 1 +im[8922] = 0.0919 +ij[8922] = 28.8 +id[8923] = "2563-03-13T21:51:50" +ik[8923] = 1.43 +il[8923] = 151 +im[8923] = 0.0433 +ij[8923] = 12 +id[8924] = "2563-04-18T10:10:50" +ik[8924] = 2.227 +il[8924] = 85 +im[8924] = 0.0828 +ij[8924] = 28.1 +id[8925] = "2563-04-18T19:35:02" +ik[8925] = 0.511 +il[8925] = 86 +im[8925] = 0.0816 +ij[8925] = 28.5 +id[8926] = "2563-04-19T16:58:39" +ik[8926] = 0.194 +il[8926] = 89 +im[8926] = 0.0764 +ij[8926] = 28.7 +id[8927] = "2563-05-20T19:54:27" +ik[8927] = 4.188 +il[8927] = 175 +im[8927] = 0.0688 +ij[8927] = 27.2 +id[8928] = "2563-08-01T09:12:03" +ik[8928] = 54.576 +il[8928] = 40 +im[8928] = 0.1159 +ij[8928] = 9 +id[8929] = "2563-10-14T04:21:07" +ik[8929] = 0.853 +il[8929] = -96 +im[8929] = 0.2217 +ij[8929] = 27.4 +id[8930] = "2563-10-15T20:42:13" +ik[8930] = 90 +il[8930] = -91 +im[8930] = 0.2199 +ij[8930] = 6 +id[8931] = "2563-12-06T02:37:12" +ik[8931] = 0 +il[8931] = 37 +im[8931] = 0.2303 +ij[8931] = 13 +id[8932] = "2563-12-10T19:28:07" +ik[8932] = 4.443 +il[8932] = 38 +im[8932] = 0.5081 +ij[8932] = 28.8 +id[8933] = "2563-12-10T19:49:09" +ik[8933] = 4.443 +il[8933] = 30 +im[8933] = 0.5083 +ij[8933] = 28.8 +id[8934] = "2563-12-11T06:40:19" +ik[8934] = 4.439 +il[8934] = 30 +im[8934] = 0.5116 +ij[8934] = 28.8 +id[8935] = "2563-12-27T07:13:26" +ik[8935] = 2.15 +il[8935] = 72 +im[8935] = 0.3754 +ij[8935] = 11 +id[8936] = "2564-01-06T05:15:50" +ik[8936] = 0.5547 +il[8936] = 78 +im[8936] = 0.5547 +ij[8936] = 2 +id[8937] = "2564-01-17T01:39:46" +ik[8937] = 41.96 +il[8937] = 92 +im[8937] = 0.3473 +ij[8937] = 7.1543 +id[8938] = "2564-02-17T12:33:30" +ik[8938] = 73.41 +il[8938] = 154 +im[8938] = 0.2609 +ij[8938] = 14 +id[8939] = "2564-02-19T10:14:00" +ik[8939] = 3.422 +il[8939] = 158 +im[8939] = 0.222 +ij[8939] = 28.8 +id[8940] = "2564-02-23T15:40:19" +ik[8940] = 3.531 +il[8940] = 168 +im[8940] = 0.0486 +ij[8940] = 28.6 +id[8941] = "2564-03-07T18:49:00" +ik[8941] = 90 +il[8941] = -158 +im[8941] = 0.1404 +ij[8941] = 5 +id[8942] = "2564-03-22T06:22:27" +ik[8942] = 2.992 +il[8942] = -113 +im[8942] = 0.093 +ij[8942] = 27.3 +id[8943] = "2564-04-10T21:14:27" +ik[8943] = 0.418 +il[8943] = -52 +im[8943] = 0.0482 +ij[8943] = 27.5 +id[8944] = "2564-05-24T04:16:57" +ik[8944] = 54.239 +il[8944] = 82 +im[8944] = 0.0074 +ij[8944] = 8 +id[8945] = "2564-05-27T03:37:27" +ik[8945] = 4 +il[8945] = 91 +im[8945] = 0.0649 +ij[8945] = 27.6 +id[8946] = "2564-06-04T17:57:15" +ik[8946] = 1.326 +il[8946] = 117 +im[8946] = 0.072 +ij[8946] = 28.7 +id[8947] = "2564-06-23T03:54:51" +ik[8947] = 0.438 +il[8947] = 173 +im[8947] = 0.0122 +ij[8947] = 28.5 +id[8948] = "2564-07-04T17:17:20" +ik[8948] = 5.751 +il[8948] = -152 +im[8948] = 0.0608 +ij[8948] = 27.2 +id[8949] = "2564-07-21T18:18:43" +ik[8949] = 0.028 +il[8949] = -100 +im[8949] = 0.0375 +ij[8949] = 27.91 +id[8950] = "2564-08-20T11:02:41" +ik[8950] = 2.942 +il[8950] = -9 +im[8950] = 0.0419 +ij[8950] = 28.1 +id[8951] = "2564-10-10T15:56:09" +ik[8951] = 1.27 +il[8951] = 128 +im[8951] = 0.0634 +ij[8951] = 12 +id[8952] = "2564-11-18T13:43:20" +ik[8952] = 4.353 +il[8952] = 64 +im[8952] = 0.0369 +ij[8952] = 27.4 +id[8953] = "2564-11-24T20:36:05" +ik[8953] = 0.565 +il[8953] = 83 +im[8953] = 0.0732 +ij[8953] = 28.1 +id[8954] = "2564-12-21T15:26:29" +ik[8954] = 1.995 +il[8954] = 164 +im[8954] = 0.0222 +ij[8954] = 28.8 +id[8955] = "2565-01-05T10:38:55" +ik[8955] = 1.062 +il[8955] = -150 +im[8955] = 0.004 +ij[8955] = 28.6 +id[8956] = "2565-01-12T05:32:14" +ik[8956] = 0.216 +il[8956] = -130 +im[8956] = 0.0926 +ij[8956] = 27.3 +id[8957] = "2565-01-30T00:02:54" +ik[8957] = 1.084 +il[8957] = -75 +im[8957] = 0.0962 +ij[8957] = 27.5 +id[8958] = "2565-02-26T16:44:49" +ik[8958] = 1.056 +il[8958] = 12 +im[8958] = 0.114 +ij[8958] = 28.4 +id[8959] = "2565-03-13T02:51:38" +ik[8959] = 53.989 +il[8959] = 57 +im[8959] = 0.1194 +ij[8959] = 9 +id[8960] = "2565-03-15T14:13:20" +ik[8960] = 1.92 +il[8960] = 65 +im[8960] = 0.1119 +ij[8960] = 27.6 +id[8961] = "2565-03-30T03:58:17" +ik[8961] = 1.386 +il[8961] = 110 +im[8961] = 0.1269 +ij[8961] = 28.7 +id[8962] = "2565-04-23T21:32:13" +ik[8962] = 2.281 +il[8962] = -172 +im[8962] = 0.0926 +ij[8962] = 27.2 +id[8963] = "2565-05-17T23:14:29" +ik[8963] = 2.895 +il[8963] = -98 +im[8963] = 0.0988 +ij[8963] = 28.5 +id[8964] = "2565-05-23T15:54:45" +ik[8964] = 90 +il[8964] = -81 +im[8964] = 0.1223 +ij[8964] = 6 +id[8965] = "2565-07-09T12:33:57" +ik[8965] = 0 +il[8965] = 34 +im[8965] = 0.429 +ij[8965] = 13 +id[8966] = "2565-07-29T20:56:32" +ik[8966] = 0.982 +il[8966] = 77 +im[8966] = 0.1227 +ij[8966] = 27.8 +id[8967] = "2565-07-31T23:58:33" +ik[8967] = 6.33 +il[8967] = 81 +im[8967] = 0.3423 +ij[8967] = 11 +id[8968] = "2565-08-04T19:06:35" +ik[8968] = 0.5285 +il[8968] = 70 +im[8968] = 0.5285 +ij[8968] = 2 +id[8969] = "2565-08-22T23:20:43" +ik[8969] = 44.45 +il[8969] = 91 +im[8969] = 0.1788 +ij[8969] = 7.1658 +id[8970] = "2565-09-25T17:15:28" +ik[8970] = 78.2 +il[8970] = 157 +im[8970] = 0.1885 +ij[8970] = 14 +id[8971] = "2565-10-10T13:58:00" +ik[8971] = 90 +il[8971] = -165 +im[8971] = 0.1298 +ij[8971] = 5 +id[8972] = "2565-12-24T13:06:46" +ik[8972] = 53.823 +il[8972] = 66 +im[8972] = 0.0891 +ij[8972] = 8 +id[8973] = "2566-01-10T21:36:40" +ik[8973] = 4.103 +il[8973] = 120 +im[8973] = 0.1081 +ij[8973] = 27.1 +id[8974] = "2566-02-05T02:46:19" +ik[8974] = 0.493 +il[8974] = -161 +im[8974] = 0.0308 +ij[8974] = 28.8 +id[8975] = "2566-02-26T05:02:54" +ik[8975] = 0.823 +il[8975] = -95 +im[8975] = 0.0923 +ij[8975] = 27.3 +id[8976] = "2566-02-27T21:05:45" +ik[8976] = 0.255 +il[8976] = -90 +im[8976] = 0.0888 +ij[8976] = 28.6 +id[8977] = "2566-03-11T02:09:53" +ik[8977] = 2.462 +il[8977] = -55 +im[8977] = 0.0862 +ij[8977] = 28.1 +id[8978] = "2566-03-15T20:37:34" +ik[8978] = 0.691 +il[8978] = -41 +im[8978] = 0.0867 +ij[8978] = 27.5 +id[8979] = "2566-05-25T01:42:14" +ik[8979] = 0.42 +il[8979] = 151 +im[8979] = 0.071 +ij[8979] = 12 +id[8980] = "2566-06-27T00:29:13" +ik[8980] = 1.85 +il[8980] = 70 +im[8980] = 0.0877 +ij[8980] = 28.1 +id[8981] = "2566-07-20T18:45:12" +ik[8981] = 0.55 +il[8981] = 144 +im[8981] = 0.0281 +ij[8981] = 28.5 +id[8982] = "2566-10-10T18:16:07" +ik[8982] = 54.002 +il[8982] = 34 +im[8982] = 0.1146 +ij[8982] = 9 +id[8983] = "2566-10-21T23:10:00" +ik[8983] = 2.835 +il[8983] = 68 +im[8983] = 0.0972 +ij[8983] = 27.4 +id[8984] = "2566-11-30T10:51:53" +ik[8984] = 3.337 +il[8984] = -170 +im[8984] = 0.0463 +ij[8984] = 28.8 +id[8985] = "2566-12-20T00:48:13" +ik[8985] = 0.857 +il[8985] = -110 +im[8985] = 0.1094 +ij[8985] = 27.3 +id[8986] = "2566-12-30T11:55:03" +ik[8986] = 90 +il[8986] = -77 +im[8986] = 0.0389 +ij[8986] = 6 +id[8987] = "2567-01-09T14:25:26" +ik[8987] = 0.71 +il[8987] = -50 +im[8987] = 0.2434 +ij[8987] = 28.6 +id[8988] = "2567-01-11T18:02:54" +ik[8988] = 0.11 +il[8988] = -44 +im[8988] = 0.1908 +ij[8988] = 27.5 +id[8989] = "2567-02-17T17:15:55" +ik[8989] = 0 +il[8989] = 44 +im[8989] = 0.3547 +ij[8989] = 13 +id[8990] = "2567-03-05T06:10:00" +ik[8990] = 0.5481 +il[8990] = 74 +im[8990] = 0.5481 +ij[8990] = 2 +id[8991] = "2567-04-01T16:18:30" +ik[8991] = 42.96 +il[8991] = 79 +im[8991] = 0.4316 +ij[8991] = 7.16 +id[8992] = "2567-05-03T18:47:18" +ik[8992] = 75.06 +il[8992] = 164 +im[8992] = 0.1461 +ij[8992] = 14 +id[8993] = "2567-05-21T10:04:29" +ik[8993] = 90 +il[8993] = -150 +im[8993] = 0.0468 +ij[8993] = 5 +id[8994] = "2567-06-06T01:23:05" +ik[8994] = 1.124 +il[8994] = -102 +im[8994] = 0.0395 +ij[8994] = 28.4 +id[8995] = "2567-06-07T05:01:11" +ik[8995] = 4.35 +il[8995] = -98 +im[8995] = 0.0762 +ij[8995] = 27.6 +id[8996] = "2567-06-29T04:49:43" +ik[8996] = 2.062 +il[8996] = -31 +im[8996] = 0.1422 +ij[8996] = 28.7 +id[8997] = "2567-08-02T12:24:09" +ik[8997] = 54.515 +il[8997] = 74 +im[8997] = 0.0349 +ij[8997] = 8 +id[8998] = "2567-09-29T21:05:02" +ik[8998] = 0.108 +il[8998] = -108 +im[8998] = 0.0518 +ij[8998] = 28.5 +id[8999] = "2567-10-22T17:20:58" +ik[8999] = 0.608 +il[8999] = -37 +im[8999] = 0.0747 +ij[8999] = 28.1 +id[9000] = "2567-11-15T08:47:28" +ik[9000] = 0.372 +il[9000] = 37 +im[9000] = 0.0341 +ij[9000] = 28.1 +id[9001] = "2567-12-24T05:45:36" +ik[9001] = 0.25 +il[9001] = 136 +im[9001] = 0.0833 +ij[9001] = 11 +id[9002] = "2568-02-14T05:12:40" +ik[9002] = 1.005 +il[9002] = 109 +im[9002] = 0.0236 +ij[9002] = 27.5 +id[9003] = "2568-02-22T07:59:05" +ik[9003] = 0.479 +il[9003] = 134 +im[9003] = 0.0909 +ij[9003] = 28.6 +id[9004] = "2568-03-29T01:02:05" +ik[9004] = 2.58 +il[9004] = -115 +im[9004] = 0.0556 +ij[9004] = 27.6 +id[9005] = "2568-04-23T09:48:23" +ik[9005] = 0.841 +il[9005] = -36 +im[9005] = 0.1098 +ij[9005] = 28.7 +id[9006] = "2568-05-05T10:10:00" +ik[9006] = 3.473 +il[9006] = 2 +im[9006] = 0.0828 +ij[9006] = 27.2 +id[9007] = "2568-05-22T11:23:43" +ik[9007] = 54.572 +il[9007] = 55 +im[9007] = 0.1229 +ij[9007] = 9 +id[9008] = "2568-07-31T10:49:36" +ik[9008] = 90 +il[9008] = -91 +im[9008] = 0.0979 +ij[9008] = 6 +id[9009] = "2568-09-18T18:47:45" +ik[9009] = 0 +il[9009] = 39 +im[9009] = 0.4033 +ij[9009] = 13 +id[9010] = "2568-10-11T13:12:00" +ik[9010] = 7.9 +il[9010] = 64 +im[9010] = 0.3913 +ij[9010] = 1 +id[9011] = "2568-10-14T14:55:01" +ik[9011] = 0.5256 +il[9011] = 67 +im[9011] = 0.5257 +ij[9011] = 2 +id[9012] = "2568-11-01T18:51:20" +ik[9012] = 44 +il[9012] = 88 +im[9012] = 0.1451 +ij[9012] = 7.1588 +id[9013] = "2568-11-25T18:49:58" +ik[9013] = 0.546 +il[9013] = 134 +im[9013] = 0.2876 +ij[9013] = 28.5 +id[9014] = "2568-12-03T12:04:00" +ik[9014] = 75.72 +il[9014] = 151 +im[9014] = 0.0943 +ij[9014] = 14 +id[9015] = "2568-12-21T04:30:08" +ik[9015] = 90 +il[9015] = -165 +im[9015] = 0.193 +ij[9015] = 5 +id[9016] = "2569-01-22T05:21:06" +ik[9016] = 2.926 +il[9016] = -66 +im[9016] = 0.1677 +ij[9016] = 27.1 +id[9017] = "2569-02-23T04:57:47" +ik[9017] = 0.288 +il[9017] = 34 +im[9017] = 0.1317 +ij[9017] = 28.8 +id[9018] = "2569-03-09T18:12:37" +ik[9018] = 53.781 +il[9018] = 79 +im[9018] = 0.1099 +ij[9018] = 8 +id[9019] = "2569-03-11T18:49:33" +ik[9019] = 1.448 +il[9019] = 86 +im[9019] = 0.0854 +ij[9019] = 27.3 +id[9020] = "2569-03-29T19:01:33" +ik[9020] = 0.374 +il[9020] = 142 +im[9020] = 0.0461 +ij[9020] = 27.5 +id[9021] = "2569-04-15T07:43:49" +ik[9021] = 0.845 +il[9021] = -167 +im[9021] = 0.0131 +ij[9021] = 28.6 +id[9022] = "2569-05-13T04:26:06" +ik[9022] = 3.65 +il[9022] = -82 +im[9022] = 0.0419 +ij[9022] = 27.6 +id[9023] = "2569-05-17T23:09:36" +ik[9023] = 0.754 +il[9023] = -67 +im[9023] = 0.0444 +ij[9023] = 28.1 +id[9024] = "2569-06-09T22:46:59" +ik[9024] = 0.658 +il[9024] = 2 +im[9024] = 0.074 +ij[9024] = 28.7 +id[9025] = "2569-06-19T20:08:53" +ik[9025] = 5.148 +il[9025] = 33 +im[9025] = 0.0733 +ij[9025] = 27.2 +id[9026] = "2569-06-25T05:50:38" +ik[9026] = 0.826 +il[9026] = 49 +im[9026] = 0.0673 +ij[9026] = 28.4 +id[9027] = "2569-06-25T17:47:02" +ik[9027] = 0.482 +il[9027] = 50 +im[9027] = 0.0612 +ij[9027] = 28.1 +id[9028] = "2569-07-31T07:14:52" +ik[9028] = 1.03 +il[9028] = 137 +im[9028] = 0.0349 +ij[9028] = 11 +id[9029] = "2569-09-03T18:31:23" +ik[9029] = 3.482 +il[9029] = 62 +im[9029] = 0.0844 +ij[9029] = 28.1 +id[9030] = "2569-11-01T14:48:46" +ik[9030] = 1.183 +il[9030] = -119 +im[9030] = 0.0728 +ij[9030] = 28.5 +id[9031] = "2569-11-03T22:01:33" +ik[9031] = 3.733 +il[9031] = -112 +im[9031] = 0.094 +ij[9031] = 27.4 +id[9032] = "2569-12-16T19:24:23" +ik[9032] = 2.423 +il[9032] = 19 +im[9032] = 0.1027 +ij[9032] = 28.8 +id[9033] = "2569-12-25T00:57:59" +ik[9033] = 53.564 +il[9033] = 45 +im[9033] = 0.0678 +ij[9033] = 9 +id[9034] = "2569-12-29T10:10:00" +ik[9034] = 0.563 +il[9034] = 58 +im[9034] = 0.0392 +ij[9034] = 27.3 +id[9035] = "2570-01-16T20:54:00" +ik[9035] = 1.043 +il[9035] = 116 +im[9035] = 0.1316 +ij[9035] = 27.5 +id[9036] = "2570-02-18T14:03:33" +ik[9036] = 2.808 +il[9036] = -142 +im[9036] = 0.1769 +ij[9036] = 28.6 +id[9037] = "2570-03-05T23:40:03" +ik[9037] = 0.18 +il[9037] = -94 +im[9037] = 0.1869 +ij[9037] = 27.6 +id[9038] = "2570-03-13T14:21:53" +ik[9038] = 90 +il[9038] = -70 +im[9038] = 0.0655 +ij[9038] = 6 +id[9039] = "2570-04-29T12:04:27" +ik[9039] = 0 +il[9039] = 52 +im[9039] = 0.394 +ij[9039] = 13 +id[9040] = "2570-05-03T02:17:48" +ik[9040] = 6.45 +il[9040] = 57 +im[9040] = 0.4027 +ij[9040] = 28.7 +id[9041] = "2570-05-15T02:16:32" +ik[9041] = 0.5068 +il[9041] = 71 +im[9041] = 0.5069 +ij[9041] = 2 +id[9042] = "2570-05-21T16:01:55" +ik[9042] = 3.05 +il[9042] = 76 +im[9042] = 0.0459 +ij[9042] = 1 +id[9043] = "2570-06-11T19:42:12" +ik[9043] = 43.32 +il[9043] = 100 +im[9043] = 0.4106 +ij[9043] = 7.1651 +id[9044] = "2570-07-15T17:33:58" +ik[9044] = 77.23 +il[9044] = 166 +im[9044] = 0.017 +ij[9044] = 14 +id[9045] = "2570-07-15T21:23:36" +ik[9045] = 3.653 +il[9045] = 167 +im[9045] = 0.0177 +ij[9045] = 28.7 +id[9046] = "2570-07-30T16:54:02" +ik[9046] = 90 +il[9046] = -154 +im[9046] = 0.0238 +ij[9046] = 5 +id[9047] = "2570-10-10T20:06:26" +ik[9047] = 54.302 +il[9047] = 66 +im[9047] = 0.0388 +ij[9047] = 8 +id[9048] = "2570-12-21T00:16:07" +ik[9048] = 2.096 +il[9048] = -73 +im[9048] = 0.0939 +ij[9048] = 28.1 +id[9049] = "2570-12-27T16:46:26" +ik[9049] = 4.821 +il[9049] = -52 +im[9049] = 0.0076 +ij[9049] = 27.1 +id[9050] = "2571-01-10T00:40:27" +ik[9050] = 0.039 +il[9050] = -11 +im[9050] = 0.0204 +ij[9050] = 28.5 +id[9051] = "2571-01-25T18:53:34" +ik[9051] = 4.655 +il[9051] = 38 +im[9051] = 0.0115 +ij[9051] = 28.1 +id[9052] = "2571-01-30T16:09:07" +ik[9052] = 1.097 +il[9052] = 53 +im[9052] = 0.0736 +ij[9052] = 28.8 +id[9053] = "2571-03-11T08:45:36" +ik[9053] = 1.43 +il[9053] = -12 +im[9053] = 0.03 +ij[9053] = 11 +id[9054] = "2571-05-19T07:54:11" +ik[9054] = 0.482 +il[9054] = -179 +im[9054] = 0.0895 +ij[9054] = 28.7 +id[9055] = "2571-05-20T09:11:19" +ik[9055] = 4.171 +il[9055] = -176 +im[9055] = 0.087 +ij[9055] = 27.2 +id[9056] = "2571-06-07T00:13:58" +ik[9056] = 0.291 +il[9056] = -121 +im[9056] = 0.0748 +ij[9056] = 27.9 +id[9057] = "2571-07-29T05:50:21" +ik[9057] = 1.15 +il[9057] = 40 +im[9057] = 0.0617 +ij[9057] = 28.4 +id[9058] = "2571-07-30T02:48:14" +ik[9058] = 54.588 +il[9058] = 43 +im[9058] = 0.078 +ij[9058] = 9 +id[9059] = "2571-10-13T08:40:28" +ik[9059] = 90 +il[9059] = -88 +im[9059] = 0.1888 +ij[9059] = 6 +id[9060] = "2571-10-14T06:04:39" +ik[9060] = 0.737 +il[9060] = -82 +im[9060] = 0.2088 +ij[9060] = 27.4 +id[9061] = "2571-12-03T17:34:25" +ik[9061] = 0 +il[9061] = 48 +im[9061] = 0.1497 +ij[9061] = 13 +id[9062] = "2571-12-24T20:15:21" +ik[9062] = 1.75 +il[9062] = 71 +im[9062] = 0.5423 +ij[9062] = 1 +id[9063] = "2571-12-25T00:22:53" +ik[9063] = 0.5428 +il[9063] = 71 +im[9063] = 0.5428 +ij[9063] = 2 +id[9064] = "2572-01-14T17:38:00" +ik[9064] = 42 +il[9064] = 94 +im[9064] = 0.018 +ij[9064] = 7.1544 +id[9065] = "2572-02-15T00:45:47" +ik[9065] = 73.3 +il[9065] = 156 +im[9065] = 0.1786 +ij[9065] = 14 +id[9066] = "2572-03-05T06:57:52" +ik[9066] = 90 +il[9066] = -158 +im[9066] = 0.2231 +ij[9066] = 5 +id[9067] = "2572-03-09T03:28:48" +ik[9067] = 2.07 +il[9067] = -144 +im[9067] = 0.133 +ij[9067] = 28.8 +id[9068] = "2572-03-12T02:39:15" +ik[9068] = 2.543 +il[9068] = -135 +im[9068] = 0.0108 +ij[9068] = 28.5 +id[9069] = "2572-03-22T02:50:26" +ik[9069] = 2.904 +il[9069] = -103 +im[9069] = 0.1424 +ij[9069] = 27.3 +id[9070] = "2572-04-10T14:45:33" +ik[9070] = 0.374 +il[9070] = -43 +im[9070] = 0.0134 +ij[9070] = 27.5 +id[9071] = "2572-05-21T19:45:09" +ik[9071] = 54.223 +il[9071] = 85 +im[9071] = 0.091 +ij[9071] = 8 +id[9072] = "2572-05-26T18:24:04" +ik[9072] = 3.99 +il[9072] = 100 +im[9072] = 0.0162 +ij[9072] = 27.6 +id[9073] = "2572-05-29T18:18:51" +ik[9073] = 0.674 +il[9073] = 109 +im[9073] = 0.0775 +ij[9073] = 28.6 +id[9074] = "2572-07-04T06:52:53" +ik[9074] = 5.729 +il[9074] = -143 +im[9074] = 0.0836 +ij[9074] = 27.2 +id[9075] = "2572-07-05T00:59:54" +ik[9075] = 1.013 +il[9075] = -141 +im[9075] = 0.0751 +ij[9075] = 28.7 +id[9076] = "2572-07-21T07:33:36" +ik[9076] = 0.049 +il[9076] = -91 +im[9076] = 0.071 +ij[9076] = 27.91 +id[9077] = "2572-07-31T01:20:47" +ik[9077] = 2.942 +il[9077] = -61 +im[9077] = 0.086 +ij[9077] = 28.1 +id[9078] = "2572-08-16T09:47:13" +ik[9078] = 0.039 +il[9078] = -11 +im[9078] = 0.0916 +ij[9078] = 28.1 +id[9079] = "2572-10-08T07:03:21" +ik[9079] = 1.3 +il[9079] = -30 +im[9079] = 0.0037 +ij[9079] = 11 +id[9080] = "2572-11-18T02:58:52" +ik[9080] = 4.34 +il[9080] = 72 +im[9080] = 0.0645 +ij[9080] = 27.4 +id[9081] = "2573-01-04T11:27:27" +ik[9081] = 1.837 +il[9081] = -143 +im[9081] = 0.0503 +ij[9081] = 28.8 +id[9082] = "2573-01-11T19:10:53" +ik[9082] = 0.221 +il[9082] = -121 +im[9082] = 0.084 +ij[9082] = 27.3 +id[9083] = "2573-01-29T13:55:19" +ik[9083] = 1.083 +il[9083] = -66 +im[9083] = 0.1038 +ij[9083] = 27.5 +id[9084] = "2573-02-04T01:05:57" +ik[9084] = 0.19 +il[9084] = -49 +im[9084] = 0.0424 +ij[9084] = 28.5 +id[9085] = "2573-03-10T16:11:50" +ik[9085] = 53.966 +il[9085] = 59 +im[9085] = 0.0738 +ij[9085] = 9 +id[9086] = "2573-03-15T05:13:59" +ik[9086] = 1.89 +il[9086] = 73 +im[9086] = 0.1269 +ij[9086] = 27.6 +id[9087] = "2573-04-01T06:45:21" +ik[9087] = 3.367 +il[9087] = 127 +im[9087] = 0.1219 +ij[9087] = 28.6 +id[9088] = "2573-04-23T15:41:59" +ik[9088] = 2.226 +il[9088] = -163 +im[9088] = 0.0437 +ij[9088] = 27.2 +id[9089] = "2573-04-30T23:01:23" +ik[9089] = 2.586 +il[9089] = -141 +im[9089] = 0.1516 +ij[9089] = 28.7 +id[9090] = "2573-05-21T09:45:55" +ik[9090] = 90 +il[9090] = -78 +im[9090] = 0.0429 +ij[9090] = 6 +id[9091] = "2573-07-07T00:46:14" +ik[9091] = 0 +il[9091] = 44 +im[9091] = 0.2993 +ij[9091] = 13 +id[9092] = "2573-07-29T16:14:52" +ik[9092] = 6.1 +il[9092] = 69 +im[9092] = 0.0579 +ij[9092] = 1 +id[9093] = "2573-08-05T22:16:09" +ik[9093] = 0.5201 +il[9093] = 76 +im[9093] = 0.5202 +ij[9093] = 2 +id[9094] = "2573-08-20T23:48:48" +ik[9094] = 44.96 +il[9094] = 94 +im[9094] = 0.3627 +ij[9094] = 7.1658 +id[9095] = "2573-09-23T10:17:38" +ik[9095] = 78.4 +il[9095] = -170 +im[9095] = 0.008 +ij[9095] = 14 +id[9096] = "2573-10-08T05:45:20" +ik[9096] = 90 +il[9096] = -162 +im[9096] = 0.0366 +ij[9096] = 5 +id[9097] = "2573-12-12T14:28:45" +ik[9097] = 1.052 +il[9097] = 39 +im[9097] = 0.1164 +ij[9097] = 28.4 +id[9098] = "2573-12-22T01:47:51" +ik[9098] = 53.836 +il[9098] = 68 +im[9098] = 0.0074 +ij[9098] = 8 +id[9099] = "2574-01-10T11:58:26" +ik[9099] = 4.131 +il[9099] = 129 +im[9099] = 0.0903 +ij[9099] = 27.1 +id[9100] = "2574-02-19T00:12:05" +ik[9100] = 0.645 +il[9100] = -108 +im[9100] = 0.0407 +ij[9100] = 28.8 +id[9101] = "2574-02-25T18:34:26" +ik[9101] = 0.811 +il[9101] = -87 +im[9101] = 0.0795 +ij[9101] = 27.3 +id[9102] = "2574-03-15T09:57:59" +ik[9102] = 0.697 +il[9102] = -32 +im[9102] = 0.096 +ij[9102] = 27.5 +id[9103] = "2574-04-01T10:14:09" +ik[9103] = 2.849 +il[9103] = 20 +im[9103] = 0.0748 +ij[9103] = 28.1 +id[9104] = "2574-04-10T12:43:37" +ik[9104] = 0.059 +il[9104] = 48 +im[9104] = 0.0633 +ij[9104] = 28.5 +id[9105] = "2574-05-22T18:54:43" +ik[9105] = 0.47 +il[9105] = -8 +im[9105] = 0.0163 +ij[9105] = 11 +id[9106] = "2574-10-08T08:01:12" +ik[9106] = 54.025 +il[9106] = 37 +im[9106] = 0.0884 +ij[9106] = 9 +id[9107] = "2574-10-21T14:46:52" +ik[9107] = 2.8 +il[9107] = 77 +im[9107] = 0.0528 +ij[9107] = 27.4 +id[9108] = "2574-12-16T07:45:50" +ik[9108] = 2.579 +il[9108] = -111 +im[9108] = 0.0989 +ij[9108] = 28.8 +id[9109] = "2574-12-19T23:19:46" +ik[9109] = 0.848 +il[9109] = -100 +im[9109] = 0.0467 +ij[9109] = 27.3 +id[9110] = "2574-12-27T23:38:16" +ik[9110] = 90 +il[9110] = -75 +im[9110] = 0.1859 +ij[9110] = 6 +id[9111] = "2575-01-12T05:23:19" +ik[9111] = 0.278 +il[9111] = -35 +im[9111] = 0.24 +ij[9111] = 27.5 +id[9112] = "2575-02-15T10:18:05" +ik[9112] = 0 +il[9112] = 56 +im[9112] = 0.0959 +ij[9112] = 13 +id[9113] = "2575-03-06T06:50:14" +ik[9113] = 0.5603 +il[9113] = 77 +im[9113] = 0.5604 +ij[9113] = 2 +id[9114] = "2575-03-29T14:25:41" +ik[9114] = 42.17 +il[9114] = 102 +im[9114] = 0.3488 +ij[9114] = 7.1599 +id[9115] = "2575-04-06T13:08:30" +ik[9115] = 6.374 +il[9115] = 115 +im[9115] = 0.2257 +ij[9115] = 27.5 +id[9116] = "2575-05-01T07:09:24" +ik[9116] = 74.87 +il[9116] = 167 +im[9116] = 0.2728 +ij[9116] = 14 +id[9117] = "2575-05-19T00:33:59" +ik[9117] = 90 +il[9117] = -148 +im[9117] = 0.1183 +ij[9117] = 5 +id[9118] = "2575-06-07T01:25:54" +ik[9118] = 4.34 +il[9118] = -89 +im[9118] = 0.0126 +ij[9118] = 27.6 +id[9119] = "2575-06-11T17:10:27" +ik[9119] = 0.882 +il[9119] = -74 +im[9119] = 0.1441 +ij[9119] = 28.5 +id[9120] = "2575-07-12T02:12:28" +ik[9120] = 0.222 +il[9120] = 18 +im[9120] = 0.1229 +ij[9120] = 28.6 +id[9121] = "2575-07-30T05:35:31" +ik[9121] = 1.534 +il[9121] = 74 +im[9121] = 0.1158 +ij[9121] = 28.7 +id[9122] = "2575-07-31T05:31:53" +ik[9122] = 54.513 +il[9122] = 77 +im[9122] = 0.1055 +ij[9122] = 8 +id[9123] = "2575-10-06T09:50:41" +ik[9123] = 2.445 +il[9123] = -78 +im[9123] = 0.0493 +ij[9123] = 28.1 +id[9124] = "2575-12-21T17:05:16" +ik[9124] = 0.19 +il[9124] = 138 +im[9124] = 0.0518 +ij[9124] = 12 +id[9125] = "2576-02-13T18:25:59" +ik[9125] = 1.006 +il[9125] = 117 +im[9125] = 0.0551 +ij[9125] = 27.5 +id[9126] = "2576-03-28T14:33:49" +ik[9126] = 2.57 +il[9126] = -106 +im[9126] = 0.086 +ij[9126] = 27.6 +id[9127] = "2576-05-02T19:55:03" +ik[9127] = 1.606 +il[9127] = 4 +im[9127] = 0.0108 +ij[9127] = 28.5 +id[9128] = "2576-05-05T00:26:52" +ik[9128] = 3.448 +il[9128] = 11 +im[9128] = 0.0534 +ij[9128] = 27.2 +id[9129] = "2576-05-12T20:25:00" +ik[9129] = 2.746 +il[9129] = 35 +im[9129] = 0.087 +ij[9129] = 28.6 +id[9130] = "2576-05-20T04:56:21" +ik[9130] = 54.559 +il[9130] = 58 +im[9130] = 0.0699 +ij[9130] = 9 +id[9131] = "2576-05-22T20:34:04" +ik[9131] = 1.53 +il[9131] = 66 +im[9131] = 0.1114 +ij[9131] = 28.7 +id[9132] = "2576-07-29T02:33:24" +ik[9132] = 90 +il[9132] = -88 +im[9132] = 0.0674 +ij[9132] = 6 +id[9133] = "2576-09-17T07:09:49" +ik[9133] = 0 +il[9133] = 37 +im[9133] = 0.3688 +ij[9133] = 13 +id[9134] = "2576-10-02T05:41:59" +ik[9134] = 0.5332 +il[9134] = 66 +im[9134] = 0.5332 +ij[9134] = 2 +id[9135] = "2576-10-09T02:52:48" +ik[9135] = 8.04 +il[9135] = 83 +im[9135] = 0.1181 +ij[9135] = 11 +id[9136] = "2576-10-30T07:13:24" +ik[9136] = 43 +il[9136] = 91 +im[9136] = 0.417 +ij[9136] = 7.1595 +id[9137] = "2576-12-01T05:06:06" +ik[9137] = 74.91 +il[9137] = 154 +im[9137] = 0.1313 +ij[9137] = 14 +id[9138] = "2576-12-18T18:13:39" +ik[9138] = 90 +il[9138] = -163 +im[9138] = 0.0543 +ij[9138] = 5 +id[9139] = "2577-01-21T23:21:32" +ik[9139] = 2.981 +il[9139] = -57 +im[9139] = 0.1503 +ij[9139] = 27.1 +id[9140] = "2577-03-07T06:03:56" +ik[9140] = 53.771 +il[9140] = 82 +im[9140] = 0.0925 +ij[9140] = 8 +id[9141] = "2577-03-09T12:44:47" +ik[9141] = 0.062 +il[9141] = 89 +im[9141] = 0.1133 +ij[9141] = 28.8 +id[9142] = "2577-03-11T09:35:46" +ik[9142] = 1.423 +il[9142] = 95 +im[9142] = 0.1086 +ij[9142] = 27.3 +id[9143] = "2577-03-29T09:14:52" +ik[9143] = 0.387 +il[9143] = 150 +im[9143] = 0.0801 +ij[9143] = 27.5 +id[9144] = "2577-04-25T22:17:36" +ik[9144] = 0.104 +il[9144] = -125 +im[9144] = 0.0949 +ij[9144] = 28.1 +id[9145] = "2577-05-12T17:52:49" +ik[9145] = 3.64 +il[9145] = -73 +im[9145] = 0.075 +ij[9145] = 27.6 +id[9146] = "2577-06-19T09:10:12" +ik[9146] = 5.131 +il[9146] = 41 +im[9146] = 0.0476 +ij[9146] = 27.2 +id[9147] = "2577-07-29T01:37:55" +ik[9147] = 0.99 +il[9147] = 141 +im[9147] = 0.0326 +ij[9147] = 12 +id[9148] = "2577-11-03T11:52:12" +ik[9148] = 3.715 +il[9148] = -103 +im[9148] = 0.0748 +ij[9148] = 27.4 +id[9149] = "2577-12-22T11:31:03" +ik[9149] = 53.566 +il[9149] = 47 +im[9149] = 0.1241 +ij[9149] = 9 +id[9150] = "2577-12-29T01:17:06" +ik[9150] = 0.571 +il[9150] = 67 +im[9150] = 0.0101 +ij[9150] = 27.3 +id[9151] = "2577-12-31T00:24:37" +ik[9151] = 1.921 +il[9151] = 73 +im[9151] = 0.0417 +ij[9151] = 28.8 +id[9152] = "2578-01-06T16:42:31" +ik[9152] = 0.779 +il[9152] = 94 +im[9152] = 0.1211 +ij[9152] = 28.4 +id[9153] = "2578-01-16T13:00:12" +ik[9153] = 1.032 +il[9153] = 125 +im[9153] = 0.0966 +ij[9153] = 27.5 +id[9154] = "2578-03-05T22:18:48" +ik[9154] = 0.07 +il[9154] = -84 +im[9154] = 0.2061 +ij[9154] = 27.6 +id[9155] = "2578-03-11T05:51:32" +ik[9155] = 90 +il[9155] = -67 +im[9155] = 0.1152 +ij[9155] = 6 +id[9156] = "2578-04-26T05:06:34" +ik[9156] = 0 +il[9156] = 44 +im[9156] = 0.088 +ij[9156] = 13 +id[9157] = "2578-05-16T04:09:04" +ik[9157] = 0.5047 +il[9157] = 86 +im[9157] = 0.5047 +ij[9157] = 2 +id[9158] = "2578-05-19T08:38:24" +ik[9158] = 3.37 +il[9158] = 93 +im[9158] = 0.3506 +ij[9158] = 11 +id[9159] = "2578-06-09T10:44:18" +ik[9159] = 44.23 +il[9159] = 102 +im[9159] = 0.3697 +ij[9159] = 7.1646 +id[9160] = "2578-07-13T07:38:03" +ik[9160] = 78.11 +il[9160] = -170 +im[9160] = 0.1803 +ij[9160] = 14 +id[9161] = "2578-07-28T09:33:33" +ik[9161] = 90 +il[9161] = -151 +im[9161] = 0.1396 +ij[9161] = 5 +id[9162] = "2578-08-21T02:54:05" +ik[9162] = 2.512 +il[9162] = -79 +im[9162] = 0.1607 +ij[9162] = 28.7 +id[9163] = "2578-08-21T09:16:59" +ik[9163] = 1.598 +il[9163] = -78 +im[9163] = 0.1632 +ij[9163] = 28.6 +id[9164] = "2578-09-15T19:29:08" +ik[9164] = 1.084 +il[9164] = -1 +im[9164] = 0.0543 +ij[9164] = 28.5 +id[9165] = "2578-10-08T11:52:24" +ik[9165] = 54.317 +il[9165] = 68 +im[9165] = 0.1042 +ij[9165] = 8 +id[9166] = "2578-12-04T05:30:46" +ik[9166] = 6.131 +il[9166] = -116 +im[9166] = 0.0903 +ij[9166] = 28.1 +id[9167] = "2578-12-27T06:07:45" +ik[9167] = 4.84 +il[9167] = -44 +im[9167] = 0.0291 +ij[9167] = 27.1 +id[9168] = "2579-03-08T19:27:50" +ik[9168] = 1.43 +il[9168] = 156 +im[9168] = 0.0828 +ij[9168] = 12 +id[9169] = "2579-04-13T01:12:47" +ik[9169] = 2.99 +il[9169] = 88 +im[9169] = 0.0121 +ij[9169] = 27.6 +id[9170] = "2579-05-19T22:31:45" +ik[9170] = 4.155 +il[9170] = -167 +im[9170] = 0.0912 +ij[9170] = 27.2 +id[9171] = "2579-06-09T18:04:36" +ik[9171] = 0.631 +il[9171] = -102 +im[9171] = 0.0538 +ij[9171] = 28.1 +id[9172] = "2579-06-16T15:27:38" +ik[9172] = 0.983 +il[9172] = -81 +im[9172] = 0.0809 +ij[9172] = 28.7 +id[9173] = "2579-06-24T11:08:44" +ik[9173] = 1.462 +il[9173] = -57 +im[9173] = 0.0671 +ij[9173] = 28.6 +id[9174] = "2579-07-27T20:27:59" +ik[9174] = 54.598 +il[9174] = 46 +im[9174] = 0.0114 +ij[9174] = 9 +id[9175] = "2579-08-10T22:20:47" +ik[9175] = 0.384 +il[9175] = 89 +im[9175] = 0.0115 +ij[9175] = 28.5 +id[9176] = "2579-10-10T20:41:22" +ik[9176] = 90 +il[9176] = -86 +im[9176] = 0.0344 +ij[9176] = 6 +id[9177] = "2579-10-14T08:58:52" +ik[9177] = 0.614 +il[9177] = -76 +im[9177] = 0.1686 +ij[9177] = 27.4 +id[9178] = "2579-12-01T07:38:30" +ik[9178] = 0 +il[9178] = 42 +im[9178] = 0.4194 +ij[9178] = 13 +id[9179] = "2579-12-22T09:20:09" +ik[9179] = 1.35 +il[9179] = 97 +im[9179] = 0.3421 +ij[9179] = 11 +id[9180] = "2579-12-25T22:12:39" +ik[9180] = 0.5479 +il[9180] = 77 +im[9180] = 0.548 +ij[9180] = 2 +id[9181] = "2580-01-12T06:43:04" +ik[9181] = 41.96 +il[9181] = 97 +im[9181] = 0.3387 +ij[9181] = 7.1545 +id[9182] = "2580-02-12T13:12:54" +ik[9182] = 73.23 +il[9182] = 158 +im[9182] = 0.051 +ij[9182] = 14 +id[9183] = "2580-03-02T19:09:23" +ik[9183] = 90 +il[9183] = -155 +im[9183] = 0.1642 +ij[9183] = 5 +id[9184] = "2580-03-21T22:50:25" +ik[9184] = 2.822 +il[9184] = -94 +im[9184] = 0.1746 +ij[9184] = 27.3 +id[9185] = "2580-03-25T09:46:56" +ik[9185] = 1.048 +il[9185] = -83 +im[9185] = 0.1033 +ij[9185] = 28.8 +id[9186] = "2580-04-10T08:02:25" +ik[9186] = 0.333 +il[9186] = -34 +im[9186] = 0.0568 +ij[9186] = 27.5 +id[9187] = "2580-04-13T02:34:39" +ik[9187] = 1.112 +il[9187] = -25 +im[9187] = 0.0358 +ij[9187] = 28.4 +id[9188] = "2580-05-19T11:02:40" +ik[9188] = 54.207 +il[9188] = 87 +im[9188] = 0.1242 +ij[9188] = 8 +id[9189] = "2580-05-26T09:01:43" +ik[9189] = 3.98 +il[9189] = 109 +im[9189] = 0.034 +ij[9189] = 27.6 +id[9190] = "2580-07-03T20:29:45" +ik[9190] = 5.707 +il[9190] = -134 +im[9190] = 0.0941 +ij[9190] = 27.2 +id[9191] = "2580-07-20T20:57:07" +ik[9191] = 0.069 +il[9191] = -83 +im[9191] = 0.0905 +ij[9191] = 27.91 +id[9192] = "2580-08-02T06:54:25" +ik[9192] = 0.29 +il[9192] = -45 +im[9192] = 0.0893 +ij[9192] = 28.7 +id[9193] = "2580-08-14T22:21:21" +ik[9193] = 0.099 +il[9193] = -6 +im[9193] = 0.0695 +ij[9193] = 28.6 +id[9194] = "2580-10-05T22:13:26" +ik[9194] = 1.32 +il[9194] = 133 +im[9194] = 0.0653 +ij[9194] = 12 +id[9195] = "2580-11-17T16:17:31" +ik[9195] = 4.326 +il[9195] = 81 +im[9195] = 0.0815 +ij[9195] = 27.4 +id[9196] = "2581-01-11T08:49:32" +ik[9196] = 0.228 +il[9196] = -112 +im[9196] = 0.0621 +ij[9196] = 27.3 +id[9197] = "2581-01-18T09:38:42" +ik[9197] = 1.443 +il[9197] = -91 +im[9197] = 0.0844 +ij[9197] = 28.8 +id[9198] = "2581-01-29T03:47:19" +ik[9198] = 1.081 +il[9198] = -57 +im[9198] = 0.0919 +ij[9198] = 27.5 +id[9199] = "2581-03-08T05:21:21" +ik[9199] = 53.943 +il[9199] = 62 +im[9199] = 0.0239 +ij[9199] = 9 +id[9200] = "2581-03-14T20:19:43" +ik[9200] = 1.86 +il[9200] = 82 +im[9200] = 0.1203 +ij[9200] = 27.6 +id[9201] = "2581-04-23T10:09:31" +ik[9201] = 2.168 +il[9201] = -154 +im[9201] = 0.0191 +ij[9201] = 27.2 +id[9202] = "2581-05-19T03:39:45" +ik[9202] = 90 +il[9202] = -75 +im[9202] = 0.1696 +ij[9202] = 6 +id[9203] = "2581-06-06T08:14:03" +ik[9203] = 2.109 +il[9203] = -31 +im[9203] = 0.0131 +ij[9203] = 28.7 +id[9204] = "2581-07-05T13:13:21" +ik[9204] = 0 +il[9204] = 36 +im[9204] = 0.0756 +ij[9204] = 13 +id[9205] = "2581-07-27T08:36:57" +ik[9205] = 5.86 +il[9205] = 93 +im[9205] = 0.4098 +ij[9205] = 11 +id[9206] = "2581-08-07T02:52:58" +ik[9206] = 0.5007 +il[9206] = 82 +im[9206] = 0.5007 +ij[9206] = 2 +id[9207] = "2581-08-18T15:20:56" +ik[9207] = 44.09 +il[9207] = 97 +im[9207] = 0.3593 +ij[9207] = 7.1662 +id[9208] = "2581-09-21T04:34:49" +ik[9208] = 77.64 +il[9208] = -170 +im[9208] = 0.1769 +ij[9208] = 14 +id[9209] = "2581-09-27T14:34:13" +ik[9209] = 3.303 +il[9209] = -170 +im[9209] = 0.1235 +ij[9209] = 28.6 +id[9210] = "2581-10-05T21:38:52" +ik[9210] = 90 +il[9210] = -159 +im[9210] = 0.1791 +ij[9210] = 5 +id[9211] = "2581-12-19T14:28:56" +ik[9211] = 53.849 +il[9211] = 71 +im[9211] = 0.0977 +ij[9211] = 8 +id[9212] = "2581-12-28T13:38:40" +ik[9212] = 0.673 +il[9212] = 100 +im[9212] = 0.0899 +ij[9212] = 28.5 +id[9213] = "2582-01-10T02:16:11" +ik[9213] = 4.158 +il[9213] = 138 +im[9213] = 0.0575 +ij[9213] = 27.1 +id[9214] = "2582-02-10T08:12:46" +ik[9214] = 1.682 +il[9214] = -125 +im[9214] = 0.0682 +ij[9214] = 28.1 +id[9215] = "2582-02-25T08:06:25" +ik[9215] = 0.799 +il[9215] = -78 +im[9215] = 0.0539 +ij[9215] = 27.3 +id[9216] = "2582-03-04T18:39:01" +ik[9216] = 0.661 +il[9216] = -55 +im[9216] = 0.0683 +ij[9216] = 28.8 +id[9217] = "2582-03-14T23:18:25" +ik[9217] = 0.703 +il[9217] = -24 +im[9217] = 0.0862 +ij[9217] = 27.5 +id[9218] = "2582-05-20T11:58:33" +ik[9218] = 0.53 +il[9218] = 157 +im[9218] = 0.0508 +ij[9218] = 12 +id[9219] = "2582-07-10T23:41:16" +ik[9219] = 0.648 +il[9219] = 134 +im[9219] = 0.0487 +ij[9219] = 28.7 +id[9220] = "2582-07-22T21:46:13" +ik[9220] = 0.386 +il[9220] = 171 +im[9220] = 0.0092 +ij[9220] = 28.1 +id[9221] = "2582-08-05T18:53:51" +ik[9221] = 0.01 +il[9221] = -147 +im[9221] = 0.0289 +ij[9221] = 28.6 +id[9222] = "2582-10-05T21:56:57" +ik[9222] = 54.049 +il[9222] = 39 +im[9222] = 0.0048 +ij[9222] = 9 +id[9223] = "2582-10-21T06:30:25" +ik[9223] = 2.764 +il[9223] = 86 +im[9223] = 0.0077 +ij[9223] = 27.4 +id[9224] = "2582-11-23T04:48:17" +ik[9224] = 2.418 +il[9224] = -173 +im[9224] = 0.0816 +ij[9224] = 28.5 +id[9225] = "2582-12-19T22:30:52" +ik[9225] = 0.835 +il[9225] = -90 +im[9225] = 0.0227 +ij[9225] = 27.3 +id[9226] = "2582-12-25T11:17:56" +ik[9226] = 90 +il[9226] = -73 +im[9226] = 0.1891 +ij[9226] = 6 +id[9227] = "2583-01-02T18:12:29" +ik[9227] = 0.967 +il[9227] = -50 +im[9227] = 0.0247 +ij[9227] = 28.8 +id[9228] = "2583-01-12T19:58:25" +ik[9228] = 0.479 +il[9228] = -26 +im[9228] = 0.2725 +ij[9228] = 27.5 +id[9229] = "2583-02-12T04:35:16" +ik[9229] = 0 +il[9229] = 44 +im[9229] = 0.3382 +ij[9229] = 13 +id[9230] = "2583-03-06T10:00:28" +ik[9230] = 8.86 +il[9230] = 70 +im[9230] = 0.5415 +ij[9230] = 11 +id[9231] = "2583-03-07T13:54:54" +ik[9231] = 0.5594 +il[9231] = 83 +im[9231] = 0.5595 +ij[9231] = 2 +id[9232] = "2583-03-27T03:37:50" +ik[9232] = 42.96 +il[9232] = 105 +im[9232] = 0.0707 +ij[9232] = 7.1593 +id[9233] = "2583-04-07T11:55:09" +ik[9233] = 5.302 +il[9233] = 124 +im[9233] = 0.2531 +ij[9233] = 27.5 +id[9234] = "2583-04-28T18:14:33" +ik[9234] = 75.57 +il[9234] = -170 +im[9234] = 0.2202 +ij[9234] = 14 +id[9235] = "2583-05-16T14:55:32" +ik[9235] = 90 +il[9235] = -145 +im[9235] = 0.1994 +ij[9235] = 5 +id[9236] = "2583-06-06T21:24:38" +ik[9236] = 4.33 +il[9236] = -79 +im[9236] = 0.0486 +ij[9236] = 27.6 +id[9237] = "2583-07-28T22:39:38" +ik[9237] = 54.511 +il[9237] = 80 +im[9237] = 0.1117 +ij[9237] = 8 +id[9238] = "2583-08-27T10:15:01" +ik[9238] = 0.538 +il[9238] = 169 +im[9238] = 0.0922 +ij[9238] = 28.7 +id[9239] = "2583-09-27T15:27:30" +ik[9239] = 0.654 +il[9239] = -95 +im[9239] = 0.0896 +ij[9239] = 28.6 +id[9240] = "2583-12-19T04:37:55" +ik[9240] = 0.13 +il[9240] = 141 +im[9240] = 0.0208 +ij[9240] = 12 +id[9241] = "2584-01-26T14:14:55" +ik[9241] = 0.453 +il[9241] = 82 +im[9241] = 0.0911 +ij[9241] = 28.5 +id[9242] = "2584-01-26T17:47:45" +ik[9242] = 0.082 +il[9242] = 83 +im[9242] = 0.0912 +ij[9242] = 27.3 +id[9243] = "2584-02-07T11:07:26" +ik[9243] = 1.064 +il[9243] = 108 +im[9243] = 0.058 +ij[9243] = 28.8 +id[9244] = "2584-02-13T07:43:18" +ik[9244] = 1.007 +il[9244] = 126 +im[9244] = 0.0769 +ij[9244] = 27.5 +id[9245] = "2584-03-12T05:32:29" +ik[9245] = 5.06 +il[9245] = -148 +im[9245] = 0.09 +ij[9245] = 28.1 +id[9246] = "2584-03-28T04:09:31" +ik[9246] = 2.55 +il[9246] = -98 +im[9246] = 0.1007 +ij[9246] = 27.6 +id[9247] = "2584-05-01T09:34:59" +ik[9247] = 0.367 +il[9247] = 9 +im[9247] = 0.0614 +ij[9247] = 28.4 +id[9248] = "2584-05-04T14:50:51" +ik[9248] = 3.422 +il[9248] = 19 +im[9248] = 0.0159 +ij[9248] = 27.2 +id[9249] = "2584-05-17T22:25:26" +ik[9249] = 54.546 +il[9249] = 61 +im[9249] = 0.0254 +ij[9249] = 9 +id[9250] = "2584-06-20T20:13:37" +ik[9250] = 1.383 +il[9250] = 166 +im[9250] = 0.0732 +ij[9250] = 28.7 +id[9251] = "2584-07-26T18:26:56" +ik[9251] = 90 +il[9251] = -85 +im[9251] = 0.1838 +ij[9251] = 6 +id[9252] = "2584-08-05T22:33:18" +ik[9252] = 3.057 +il[9252] = -58 +im[9252] = 0.2126 +ij[9252] = 28.6 +id[9253] = "2584-09-14T18:14:58" +ik[9253] = 0 +il[9253] = 38 +im[9253] = 0.093 +ij[9253] = 13 +id[9254] = "2584-10-03T10:36:57" +ik[9254] = 0.5482 +il[9254] = 77 +im[9254] = 0.5482 +ij[9254] = 2 +id[9255] = "2584-10-06T16:37:55" +ik[9255] = 8.17 +il[9255] = 84 +im[9255] = 0.4071 +ij[9255] = 11 +id[9256] = "2584-10-24T06:45:47" +ik[9256] = 3.159 +il[9256] = 88 +im[9256] = 0.1512 +ij[9256] = 27.7 +id[9257] = "2584-10-27T17:19:33" +ik[9257] = 42.96 +il[9257] = 93 +im[9257] = 0.4074 +ij[9257] = 7.1598 +id[9258] = "2584-11-28T21:24:19" +ik[9258] = 75.13 +il[9258] = 156 +im[9258] = 0.2732 +ij[9258] = 14 +id[9259] = "2584-12-16T07:59:48" +ik[9259] = 90 +il[9259] = -161 +im[9259] = 0.1175 +ij[9259] = 5 +id[9260] = "2585-01-21T17:11:18" +ik[9260] = 3.035 +il[9260] = -48 +im[9260] = 0.1102 +ij[9260] = 27.1 +id[9261] = "2585-03-04T17:51:40" +ik[9261] = 53.762 +il[9261] = 84 +im[9261] = 0.0055 +ij[9261] = 8 +id[9262] = "2585-03-11T00:14:51" +ik[9262] = 1.399 +il[9262] = 103 +im[9262] = 0.1143 +ij[9262] = 27.3 +id[9263] = "2585-03-23T15:06:11" +ik[9263] = 0.268 +il[9263] = 143 +im[9263] = 0.0805 +ij[9263] = 28.8 +id[9264] = "2585-03-28T23:25:05" +ik[9264] = 0.4 +il[9264] = 159 +im[9264] = 0.0996 +ij[9264] = 27.5 +id[9265] = "2585-04-01T13:34:36" +ik[9265] = 0.203 +il[9265] = 170 +im[9265] = 0.0424 +ij[9265] = 28.5 +id[9266] = "2585-05-12T07:20:30" +ik[9266] = 3.63 +il[9266] = -65 +im[9266] = 0.0948 +ij[9266] = 27.6 +id[9267] = "2585-06-18T22:09:45" +ik[9267] = 5.113 +il[9267] = 50 +im[9267] = 0.0152 +ij[9267] = 27.2 +id[9268] = "2585-07-26T20:05:16" +ik[9268] = 0.95 +il[9268] = 144 +im[9268] = 0.0784 +ij[9268] = 12 +id[9269] = "2585-09-18T13:25:06" +ik[9269] = 1.215 +il[9269] = 128 +im[9269] = 0.0505 +ij[9269] = 28.6 +id[9270] = "2585-09-19T12:17:51" +ik[9270] = 3.476 +il[9270] = 131 +im[9270] = 0.0649 +ij[9270] = 28.1 +id[9271] = "2585-10-25T12:23:19" +ik[9271] = 3.998 +il[9271] = -120 +im[9271] = 0.0965 +ij[9271] = 28.1 +id[9272] = "2585-11-03T01:43:18" +ik[9272] = 3.696 +il[9272] = -94 +im[9272] = 0.0447 +ij[9272] = 27.4 +id[9273] = "2585-12-19T22:04:08" +ik[9273] = 53.57 +il[9273] = 49 +im[9273] = 0.0973 +ij[9273] = 9 +id[9274] = "2585-12-28T16:28:11" +ik[9274] = 0.578 +il[9274] = 76 +im[9274] = 0.0554 +ij[9274] = 27.3 +id[9275] = "2586-01-14T07:57:47" +ik[9275] = 1.064 +il[9275] = 128 +im[9275] = 0.0125 +ij[9275] = 28.8 +id[9276] = "2586-01-16T05:13:58" +ik[9276] = 1.02 +il[9276] = 134 +im[9276] = 0.0445 +ij[9276] = 27.5 +id[9277] = "2586-02-22T02:26:18" +ik[9277] = 2.132 +il[9277] = -111 +im[9277] = 0.1767 +ij[9277] = 28.5 +id[9278] = "2586-03-05T21:54:20" +ik[9278] = 0.06 +il[9278] = -74 +im[9278] = 0.2039 +ij[9278] = 27.6 +id[9279] = "2586-03-08T21:09:41" +ik[9279] = 90 +il[9279] = -65 +im[9279] = 0.2192 +ij[9279] = 6 +id[9280] = "2586-04-23T21:24:46" +ik[9280] = 0 +il[9280] = 48 +im[9280] = 0.2496 +ij[9280] = 13 +id[9281] = "2586-05-17T01:09:07" +ik[9281] = 3.68 +il[9281] = 70 +im[9281] = 0.4998 +ij[9281] = 11 +id[9282] = "2586-05-17T01:47:38" +ik[9282] = 0.4997 +il[9282] = 81 +im[9282] = 0.4998 +ij[9282] = 2 +id[9283] = "2586-06-07T01:51:30" +ik[9283] = 44.19 +il[9283] = 105 +im[9283] = 0.1022 +ij[9283] = 7.1646 +id[9284] = "2586-07-10T22:35:14" +ik[9284] = 78.05 +il[9284] = -169 +im[9284] = 0.239 +ij[9284] = 14 +id[9285] = "2586-07-26T02:13:05" +ik[9285] = 90 +il[9285] = -148 +im[9285] = 0.2171 +ij[9285] = 5 +id[9286] = "2586-09-05T06:41:28" +ik[9286] = 2.077 +il[9286] = -23 +im[9286] = 0.1038 +ij[9286] = 28.4 +id[9287] = "2586-09-19T08:12:37" +ik[9287] = 0.888 +il[9287] = 20 +im[9287] = 0.0932 +ij[9287] = 28.7 +id[9288] = "2586-10-06T03:41:56" +ik[9288] = 54.331 +il[9288] = 71 +im[9288] = 0.1031 +ij[9288] = 8 +id[9289] = "2586-11-10T14:09:44" +ik[9289] = 0.889 +il[9289] = -179 +im[9289] = 0.0792 +ij[9289] = 28.6 +id[9290] = "2586-12-26T19:29:31" +ik[9290] = 4.859 +il[9290] = -35 +im[9290] = 0.0597 +ij[9290] = 27.1 +id[9291] = "2587-03-06T05:58:33" +ik[9291] = 1.43 +il[9291] = 157 +im[9291] = 0.0809 +ij[9291] = 12 +id[9292] = "2587-04-12T14:19:22" +ik[9292] = 2.98 +il[9292] = 97 +im[9292] = 0.0458 +ij[9292] = 27.6 +id[9293] = "2587-04-24T12:24:54" +ik[9293] = 0.667 +il[9293] = 123 +im[9293] = 0.0804 +ij[9293] = 28.5 +id[9294] = "2587-05-01T07:01:03" +ik[9294] = 3.938 +il[9294] = 144 +im[9294] = 0.0193 +ij[9294] = 28.1 +id[9295] = "2587-05-19T11:52:11" +ik[9295] = 4.139 +il[9295] = -159 +im[9295] = 0.0793 +ij[9295] = 27.2 +id[9296] = "2587-05-22T05:27:44" +ik[9296] = 1.021 +il[9296] = -150 +im[9296] = 0.0961 +ij[9296] = 28.1 +id[9297] = "2587-07-13T19:18:20" +ik[9297] = 0.91 +il[9297] = 13 +im[9297] = 0.0101 +ij[9297] = 28.7 +id[9298] = "2587-07-25T14:11:17" +ik[9298] = 54.608 +il[9298] = 49 +im[9298] = 0.0917 +ij[9298] = 9 +id[9299] = "2587-09-15T22:27:07" +ik[9299] = 3.913 +il[9299] = -152 +im[9299] = 0.1192 +ij[9299] = 28.6 +id[9300] = "2587-10-08T08:48:28" +ik[9300] = 90 +il[9300] = -84 +im[9300] = 0.1415 +ij[9300] = 6 +id[9301] = "2587-10-14T13:07:44" +ik[9301] = 0.484 +il[9301] = -66 +im[9301] = 0.1131 +ij[9301] = 27.4 +id[9302] = "2587-11-28T22:35:41" +ik[9302] = 0 +il[9302] = 45 +im[9302] = 0.4366 +ij[9302] = 13 +id[9303] = "2587-12-19T22:26:24" +ik[9303] = 0.95 +il[9303] = 100 +im[9303] = 0.1185 +ij[9303] = 11 +id[9304] = "2587-12-26T23:51:33" +ik[9304] = 0.5485 +il[9304] = 82 +im[9304] = 0.5486 +ij[9304] = 2 +id[9305] = "2588-01-09T21:38:15" +ik[9305] = 41.96 +il[9305] = 99 +im[9305] = 0.4548 +ij[9305] = 7.1544 +id[9306] = "2588-02-10T01:39:08" +ik[9306] = 73.13 +il[9306] = 161 +im[9306] = 0.229 +ij[9306] = 14 +id[9307] = "2588-02-29T07:16:28" +ik[9307] = 90 +il[9307] = -152 +im[9307] = 0.0089 +ij[9307] = 5 +id[9308] = "2588-03-21T18:22:51" +ik[9308] = 2.744 +il[9308] = -85 +im[9308] = 0.1809 +ij[9308] = 27.3 +id[9309] = "2588-04-09T16:49:43" +ik[9309] = 0.346 +il[9309] = -26 +im[9309] = 0.1051 +ij[9309] = 28.8 +id[9310] = "2588-04-10T01:09:04" +ik[9310] = 0.293 +il[9310] = -24 +im[9310] = 0.0972 +ij[9310] = 27.5 +id[9311] = "2588-05-17T02:16:38" +ik[9311] = 54.191 +il[9311] = 90 +im[9311] = 0.0816 +ij[9311] = 8 +id[9312] = "2588-05-25T23:38:23" +ik[9312] = 3.97 +il[9312] = 117 +im[9312] = 0.0768 +ij[9312] = 27.6 +id[9313] = "2588-06-29T08:37:40" +ik[9313] = 0.338 +il[9313] = -138 +im[9313] = 0.0264 +ij[9313] = 28.5 +id[9314] = "2588-07-03T10:01:18" +ik[9314] = 5.685 +il[9314] = -126 +im[9314] = 0.0891 +ij[9314] = 27.2 +id[9315] = "2588-07-20T10:12:00" +ik[9315] = 0.09 +il[9315] = -74 +im[9315] = 0.0929 +ij[9315] = 27.91 +id[9316] = "2588-08-28T17:16:56" +ik[9316] = 0.324 +il[9316] = 47 +im[9316] = 0.0357 +ij[9316] = 28.7 +id[9317] = "2588-10-03T13:33:36" +ik[9317] = 1.34 +il[9317] = 136 +im[9317] = 0.0897 +ij[9317] = 12 +id[9318] = "2588-11-17T05:33:31" +ik[9318] = 4.313 +il[9318] = 90 +im[9318] = 0.0859 +ij[9318] = 27.4 +id[9319] = "2588-12-04T22:33:36" +ik[9319] = 6.104 +il[9319] = 143 +im[9319] = 0.0875 +ij[9319] = 28.1 +id[9320] = "2588-12-23T01:39:21" +ik[9320] = 0.077 +il[9320] = -162 +im[9320] = 0.0501 +ij[9320] = 28.1 +id[9321] = "2589-01-10T22:29:04" +ik[9321] = 0.234 +il[9321] = -104 +im[9321] = 0.0299 +ij[9321] = 27.3 +id[9322] = "2589-01-28T17:47:18" +ik[9322] = 1.079 +il[9322] = -49 +im[9322] = 0.0648 +ij[9322] = 27.5 +id[9323] = "2589-02-01T00:43:37" +ik[9323] = 0.791 +il[9323] = -38 +im[9323] = 0.0994 +ij[9323] = 28.8 +id[9324] = "2589-03-05T18:23:46" +ik[9324] = 53.919 +il[9324] = 64 +im[9324] = 0.1027 +ij[9324] = 9 +id[9325] = "2589-03-14T11:25:18" +ik[9325] = 1.82 +il[9325] = 91 +im[9325] = 0.0911 +ij[9325] = 27.6 +id[9326] = "2589-04-23T04:54:51" +ik[9326] = 2.109 +il[9326] = -145 +im[9326] = 0.0736 +ij[9326] = 27.2 +id[9327] = "2589-05-16T21:29:09" +ik[9327] = 90 +il[9327] = -72 +im[9327] = 0.2092 +ij[9327] = 6 +id[9328] = "2589-05-28T05:17:19" +ik[9328] = 2.776 +il[9328] = -37 +im[9328] = 0.1731 +ij[9328] = 28.5 +id[9329] = "2589-07-03T01:39:35" +ik[9329] = 0 +il[9329] = 44 +im[9329] = 0.2751 +ij[9329] = 13 +id[9330] = "2589-07-25T01:03:21" +ik[9330] = 5.62 +il[9330] = 102 +im[9330] = 0.4951 +ij[9330] = 11 +id[9331] = "2589-07-25T21:28:18" +ik[9331] = 0.506 +il[9331] = 76 +im[9331] = 0.506 +ij[9331] = 2 +id[9332] = "2589-08-16T02:26:20" +ik[9332] = 44.03 +il[9332] = 99 +im[9332] = 0.083 +ij[9332] = 7.1662 +id[9333] = "2589-09-18T21:36:06" +ik[9333] = 77.83 +il[9333] = -170 +im[9333] = 0.2469 +ij[9333] = 14 +id[9334] = "2589-10-03T13:35:56" +ik[9334] = 90 +il[9334] = -156 +im[9334] = 0.2091 +ij[9334] = 5 +id[9335] = "2589-10-08T13:22:39" +ik[9335] = 1.813 +il[9335] = -141 +im[9335] = 0.1259 +ij[9335] = 28.7 +id[9336] = "2589-12-17T03:20:40" +ik[9336] = 53.862 +il[9336] = 73 +im[9336] = 0.1253 +ij[9336] = 8 +id[9337] = "2589-12-26T02:45:18" +ik[9337] = 0.343 +il[9337] = 101 +im[9337] = 0.0043 +ij[9337] = 28.6 +id[9338] = "2590-01-09T16:27:17" +ik[9338] = 4.184 +il[9338] = 147 +im[9338] = 0.0136 +ij[9338] = 27.1 +id[9339] = "2590-02-24T21:35:17" +ik[9339] = 0.787 +il[9339] = -69 +im[9339] = 0.0204 +ij[9339] = 27.3 +id[9340] = "2590-03-14T12:39:17" +ik[9340] = 0.709 +il[9340] = -15 +im[9340] = 0.0609 +ij[9340] = 27.5 +id[9341] = "2590-03-18T11:42:17" +ik[9341] = 0.528 +il[9341] = -3 +im[9341] = 0.0905 +ij[9341] = 28.8 +id[9342] = "2590-04-14T20:45:01" +ik[9342] = 1.587 +il[9342] = 70 +im[9342] = 0.0686 +ij[9342] = 28.1 +id[9343] = "2590-05-18T04:52:19" +ik[9343] = 0.58 +il[9343] = 179 +im[9343] = 0.0817 +ij[9343] = 12 +id[9344] = "2590-06-20T16:51:18" +ik[9344] = 0.196 +il[9344] = 80 +im[9344] = 0.0543 +ij[9344] = 27.9 +id[9345] = "2590-06-22T01:04:22" +ik[9345] = 2.891 +il[9345] = 84 +im[9345] = 0.0343 +ij[9345] = 28.1 +id[9346] = "2590-07-27T17:13:12" +ik[9346] = 0.465 +il[9346] = -164 +im[9346] = 0.0588 +ij[9346] = 28.5 +id[9347] = "2590-08-02T10:02:55" +ik[9347] = 3.627 +il[9347] = -147 +im[9347] = 0.0923 +ij[9347] = 28.1 +id[9348] = "2590-08-06T06:07:20" +ik[9348] = 0.66 +il[9348] = -135 +im[9348] = 0.0477 +ij[9348] = 28.7 +id[9349] = "2590-10-03T11:59:48" +ik[9349] = 54.072 +il[9349] = 42 +im[9349] = 0.0867 +ij[9349] = 9 +id[9350] = "2590-10-20T22:17:57" +ik[9350] = 2.726 +il[9350] = 95 +im[9350] = 0.0587 +ij[9350] = 27.4 +id[9351] = "2590-10-30T22:57:56" +ik[9351] = 3.496 +il[9351] = 126 +im[9351] = 0.1306 +ij[9351] = 28.6 +id[9352] = "2590-11-10T00:16:24" +ik[9352] = 0.633 +il[9352] = 156 +im[9352] = 0.1108 +ij[9352] = 28.4 +id[9353] = "2590-12-19T22:34:51" +ik[9353] = 0.819 +il[9353] = -80 +im[9353] = 0.0875 +ij[9353] = 27.3 +id[9354] = "2590-12-22T22:54:04" +ik[9354] = 90 +il[9354] = -70 +im[9354] = 0.061 +ij[9354] = 6 +id[9355] = "2591-01-13T14:54:51" +ik[9355] = 0.725 +il[9355] = -16 +im[9355] = 0.2902 +ij[9355] = 27.5 +id[9356] = "2591-01-24T01:20:03" +ik[9356] = 2.611 +il[9356] = 7 +im[9356] = 0.2747 +ij[9356] = 28.8 +id[9357] = "2591-02-10T21:36:33" +ik[9357] = 0 +il[9357] = 44 +im[9357] = 0.4461 +ij[9357] = 13 +id[9358] = "2591-03-03T23:00:57" +ik[9358] = 8.82 +il[9358] = 99 +im[9358] = 0.2723 +ij[9358] = 11 +id[9359] = "2591-03-08T13:10:40" +ik[9359] = 0.5465 +il[9359] = 88 +im[9359] = 0.5465 +ij[9359] = 2 +id[9360] = "2591-03-24T20:39:07" +ik[9360] = 41.96 +il[9360] = 107 +im[9360] = 0.2911 +ij[9360] = 7.1593 +id[9361] = "2591-04-09T03:07:44" +ik[9361] = 4.59 +il[9361] = 134 +im[9361] = 0.2147 +ij[9361] = 27.5 +id[9362] = "2591-04-17T17:57:50" +ik[9362] = 3.061 +il[9362] = 152 +im[9362] = 0.2814 +ij[9362] = 28.8 +id[9363] = "2591-04-26T07:12:52" +ik[9363] = 74.4 +il[9363] = 171 +im[9363] = 0.032 +ij[9363] = 14 +id[9364] = "2591-05-14T05:10:53" +ik[9364] = 90 +il[9364] = -143 +im[9364] = 0.1394 +ij[9364] = 5 +id[9365] = "2591-06-06T16:50:17" +ik[9365] = 4.33 +il[9365] = -70 +im[9365] = 0.096 +ij[9365] = 27.6 +id[9366] = "2591-07-17T16:52:51" +ik[9366] = 6.487 +il[9366] = 55 +im[9366] = 0.1244 +ij[9366] = 27.2 +id[9367] = "2591-07-26T15:47:23" +ik[9367] = 54.508 +il[9367] = 83 +im[9367] = 0.0493 +ij[9367] = 8 +id[9368] = "2591-09-22T16:34:01" +ik[9368] = 0.291 +il[9368] = -100 +im[9368] = 0.0074 +ij[9368] = 28.7 +id[9369] = "2591-10-07T01:33:01" +ik[9369] = 0.063 +il[9369] = -56 +im[9369] = 0.0059 +ij[9369] = 28.5 +id[9370] = "2591-12-16T16:13:26" +ik[9370] = 0.06 +il[9370] = 143 +im[9370] = 0.0757 +ij[9370] = 12 +id[9371] = "2592-01-26T06:58:24" +ik[9371] = 0.076 +il[9371] = 91 +im[9371] = 0.0835 +ij[9371] = 27.3 +id[9372] = "2592-02-05T20:32:03" +ik[9372] = 0.267 +il[9372] = 113 +im[9372] = 0.0091 +ij[9372] = 28.1 +id[9373] = "2592-02-12T20:59:44" +ik[9373] = 1.007 +il[9373] = 134 +im[9373] = 0.0862 +ij[9373] = 27.5 +id[9374] = "2592-02-21T01:42:31" +ik[9374] = 0.556 +il[9374] = 160 +im[9374] = 0.023 +ij[9374] = 28.8 +id[9375] = "2592-02-23T10:16:36" +ik[9375] = 3.544 +il[9375] = 167 +im[9375] = 0.0613 +ij[9375] = 28.1 +id[9376] = "2592-03-27T17:45:11" +ik[9376] = 2.53 +il[9376] = -89 +im[9376] = 0.0958 +ij[9376] = 27.6 +id[9377] = "2592-05-04T05:14:50" +ik[9377] = 3.396 +il[9377] = 28 +im[9377] = 0.0302 +ij[9377] = 27.2 +id[9378] = "2592-05-15T15:50:57" +ik[9378] = 54.531 +il[9378] = 64 +im[9378] = 0.1037 +ij[9378] = 9 +id[9379] = "2592-07-20T21:32:41" +ik[9379] = 0.256 +il[9379] = -93 +im[9379] = 0.0489 +ij[9379] = 28.7 +id[9380] = "2592-07-24T10:27:32" +ik[9380] = 90 +il[9380] = -82 +im[9380] = 0.1707 +ij[9380] = 6 +id[9381] = "2592-09-12T07:13:19" +ik[9381] = 0 +il[9381] = 41 +im[9381] = 0.2467 +ij[9381] = 13 +id[9382] = "2592-10-04T06:27:21" +ik[9382] = 8.29 +il[9382] = 99 +im[9382] = 0.5496 +ij[9382] = 11 +id[9383] = "2592-10-04T12:15:18" +ik[9383] = 0.5503 +il[9383] = 72 +im[9383] = 0.5504 +ij[9383] = 2 +id[9384] = "2592-10-19T13:07:14" +ik[9384] = 1.104 +il[9384] = 87 +im[9384] = 0.4003 +ij[9384] = 27.7 +id[9385] = "2592-10-26T06:15:53" +ik[9385] = 43.96 +il[9385] = 97 +im[9385] = 0.2198 +ij[9385] = 7.16 +id[9386] = "2592-11-26T13:56:37" +ik[9386] = 75.28 +il[9386] = 159 +im[9386] = 0.2512 +ij[9386] = 14 +id[9387] = "2592-12-08T17:52:48" +ik[9387] = 0.739 +il[9387] = -169 +im[9387] = 0.0967 +ij[9387] = 28.5 +id[9388] = "2592-12-13T21:49:30" +ik[9388] = 90 +il[9388] = -158 +im[9388] = 0.2057 +ij[9388] = 5 +id[9389] = "2593-01-21T10:43:17" +ik[9389] = 3.087 +il[9389] = -38 +im[9389] = 0.0523 +ij[9389] = 27.1 +id[9390] = "2593-02-10T16:17:54" +ik[9390] = 0.778 +il[9390] = 25 +im[9390] = 0.1323 +ij[9390] = 28.6 +id[9391] = "2593-02-20T22:15:36" +ik[9391] = 1.916 +il[9391] = 57 +im[9391] = 0.0466 +ij[9391] = 28.4 +id[9392] = "2593-03-02T05:35:52" +ik[9392] = 53.754 +il[9392] = 86 +im[9392] = 0.0864 +ij[9392] = 8 +id[9393] = "2593-03-10T14:50:24" +ik[9393] = 1.375 +il[9393] = 112 +im[9393] = 0.0998 +ij[9393] = 27.3 +id[9394] = "2593-03-28T13:30:50" +ik[9394] = 0.412 +il[9394] = 168 +im[9394] = 0.1031 +ij[9394] = 27.5 +id[9395] = "2593-04-06T13:55:12" +ik[9395] = 0.31 +il[9395] = -168 +im[9395] = 0.0387 +ij[9395] = 28.8 +id[9396] = "2593-05-11T20:46:09" +ik[9396] = 3.62 +il[9396] = -56 +im[9396] = 0.0955 +ij[9396] = 27.6 +id[9397] = "2593-06-18T11:10:38" +ik[9397] = 5.096 +il[9397] = 58 +im[9397] = 0.0238 +ij[9397] = 27.2 +id[9398] = "2593-07-24T14:32:38" +ik[9398] = 0.91 +il[9398] = 147 +im[9398] = 0.0774 +ij[9398] = 12 +id[9399] = "2593-08-30T03:45:21" +ik[9399] = 0.555 +il[9399] = 78 +im[9399] = 0.0623 +ij[9399] = 28.7 +id[9400] = "2593-10-06T23:43:43" +ik[9400] = 3.697 +il[9400] = -166 +im[9400] = 0.0648 +ij[9400] = 28.1 +id[9401] = "2593-11-02T15:37:57" +ik[9401] = 3.676 +il[9401] = -86 +im[9401] = 0.012 +ij[9401] = 27.4 +id[9402] = "2593-11-08T14:12:28" +ik[9402] = 1.377 +il[9402] = -68 +im[9402] = 0.098 +ij[9402] = 28.5 +id[9403] = "2593-12-16T19:30:34" +ik[9403] = 1.794 +il[9403] = 49 +im[9403] = 0.0144 +ij[9403] = 28.6 +id[9404] = "2593-12-17T08:40:46" +ik[9404] = 53.574 +il[9404] = 51 +im[9404] = 0.0112 +ij[9404] = 9 +id[9405] = "2593-12-28T07:42:24" +ik[9405] = 0.585 +il[9405] = 85 +im[9405] = 0.0943 +ij[9405] = 27.3 +id[9406] = "2594-01-15T21:37:30" +ik[9406] = 1.008 +il[9406] = 143 +im[9406] = 0.019 +ij[9406] = 27.5 +id[9407] = "2594-01-28T21:21:53" +ik[9407] = 0.144 +il[9407] = -179 +im[9407] = 0.0651 +ij[9407] = 28.8 +id[9408] = "2594-03-05T22:20:00" +ik[9408] = 0.19 +il[9408] = -64 +im[9408] = 0.1786 +ij[9408] = 27.6 +id[9409] = "2594-03-06T12:19:53" +ik[9409] = 90 +il[9409] = -62 +im[9409] = 0.1947 +ij[9409] = 6 +id[9410] = "2594-04-22T13:57:04" +ik[9410] = 0 +il[9410] = 54 +im[9410] = 0.3868 +ij[9410] = 13 +id[9411] = "2594-05-05T03:32:23" +ik[9411] = 0.5182 +il[9411] = 76 +im[9411] = 0.5183 +ij[9411] = 2 +id[9412] = "2594-05-14T17:35:31" +ik[9412] = 3.99 +il[9412] = 100 +im[9412] = 0.3381 +ij[9412] = 11 +id[9413] = "2594-06-04T17:16:47" +ik[9413] = 43.14 +il[9413] = 108 +im[9413] = 0.253 +ij[9413] = 7.1649 +id[9414] = "2594-07-08T14:30:34" +ik[9414] = 77.02 +il[9414] = -170 +im[9414] = 0.1371 +ij[9414] = 14 +id[9415] = "2594-07-23T18:48:11" +ik[9415] = 90 +il[9415] = -146 +im[9415] = 0.1624 +ij[9415] = 5 +id[9416] = "2594-10-03T19:38:34" +ik[9416] = 54.345 +il[9416] = 74 +im[9416] = 0.0292 +ij[9416] = 8 +id[9417] = "2594-10-15T22:37:03" +ik[9417] = 0.336 +il[9417] = 111 +im[9417] = 0.0351 +ij[9417] = 28.7 +id[9418] = "2594-12-26T08:47:16" +ik[9418] = 4.878 +il[9418] = -27 +im[9418] = 0.0796 +ij[9418] = 27.1 +id[9419] = "2595-01-16T09:57:10" +ik[9419] = 0.131 +il[9419] = 39 +im[9419] = 0.0045 +ij[9419] = 28.5 +id[9420] = "2595-01-20T02:56:24" +ik[9420] = 2.593 +il[9420] = 51 +im[9420] = 0.0622 +ij[9420] = 28.1 +id[9421] = "2595-03-03T16:22:04" +ik[9421] = 1.42 +il[9421] = 157 +im[9421] = 0.0242 +ij[9421] = 12 +id[9422] = "2595-04-12T03:28:01" +ik[9422] = 2.96 +il[9422] = 94 +im[9422] = 0.0705 +ij[9422] = 27.6 +id[9423] = "2595-04-30T04:55:03" +ik[9423] = 1.925 +il[9423] = 154 +im[9423] = 0.0334 +ij[9423] = 28.1 +id[9424] = "2595-05-19T01:12:36" +ik[9424] = 4.122 +il[9424] = -150 +im[9424] = 0.0518 +ij[9424] = 27.2 +id[9425] = "2595-07-23T08:01:42" +ik[9425] = 54.617 +il[9425] = 52 +im[9425] = 0.1211 +ij[9425] = 9 +id[9426] = "2595-08-09T14:42:43" +ik[9426] = 0.059 +il[9426] = 105 +im[9426] = 0.1124 +ij[9426] = 28.7 +id[9427] = "2595-10-05T20:59:06" +ik[9427] = 90 +il[9427] = -81 +im[9427] = 0.2218 +ij[9427] = 6 +id[9428] = "2595-10-14T18:44:36" +ik[9428] = 0.344 +il[9428] = -56 +im[9428] = 0.0574 +ij[9428] = 27.4 +id[9429] = "2595-11-26T14:31:01" +ik[9429] = 0 +il[9429] = 48 +im[9429] = 0.1804 +ij[9429] = 13 +id[9430] = "2595-12-17T11:35:31" +ik[9430] = 0.54 +il[9430] = 103 +im[9430] = 0.4791 +ij[9430] = 11 +id[9431] = "2595-12-28T02:23:14" +ik[9431] = 0.5414 +il[9431] = 88 +im[9431] = 0.5415 +ij[9431] = 2 +id[9432] = "2596-01-02T12:55:43" +ik[9432] = 1.544 +il[9432] = 94 +im[9432] = 0.2068 +ij[9432] = 27.1 +id[9433] = "2596-01-07T00:36:49" +ik[9433] = 41.42 +il[9433] = 101 +im[9433] = 0.2463 +ij[9433] = 7.1545 +id[9434] = "2596-01-11T01:56:10" +ik[9434] = 0.646 +il[9434] = 107 +im[9434] = 0.4181 +ij[9434] = 27.1 +id[9435] = "2596-02-07T14:02:36" +ik[9435] = 72.98 +il[9435] = -170 +im[9435] = 0.2582 +ij[9435] = 14 +id[9436] = "2596-02-26T19:27:06" +ik[9436] = 90 +il[9436] = -149 +im[9436] = 0.1746 +ij[9436] = 5 +id[9437] = "2596-03-19T22:23:57" +ik[9437] = 1.793 +il[9437] = -80 +im[9437] = 0.1273 +ij[9437] = 28.5 +id[9438] = "2596-03-21T13:37:03" +ik[9438] = 2.669 +il[9438] = -75 +im[9438] = 0.16 +ij[9438] = 27.3 +id[9439] = "2596-03-28T13:08:32" +ik[9439] = 1.701 +il[9439] = -53 +im[9439] = 0.1108 +ij[9439] = 28.6 +id[9440] = "2596-04-09T18:04:10" +ik[9440] = 0.255 +il[9440] = -15 +im[9440] = 0.1262 +ij[9440] = 27.5 +id[9441] = "2596-04-24T10:27:50" +ik[9441] = 0.058 +il[9441] = 30 +im[9441] = 0.1352 +ij[9441] = 28.8 +id[9442] = "2596-05-14T17:23:30" +ik[9442] = 54.175 +il[9442] = 93 +im[9442] = 0.0124 +ij[9442] = 8 +id[9443] = "2596-05-25T14:13:58" +ik[9443] = 3.96 +il[9443] = 126 +im[9443] = 0.1023 +ij[9443] = 27.6 +id[9444] = "2596-07-02T23:30:37" +ik[9444] = 5.664 +il[9444] = -117 +im[9444] = 0.0682 +ij[9444] = 27.2 +id[9445] = "2596-07-20T00:23:02" +ik[9445] = 0.116 +il[9445] = -65 +im[9445] = 0.0796 +ij[9445] = 27.91 +id[9446] = "2596-10-01T05:00:57" +ik[9446] = 1.35 +il[9446] = 139 +im[9446] = 0.0584 +ij[9446] = 12 +id[9447] = "2596-11-16T18:53:03" +ik[9447] = 4.3 +il[9447] = 98 +im[9447] = 0.0762 +ij[9447] = 27.4 +id[9448] = "2596-12-05T18:40:01" +ik[9448] = 0.345 +il[9448] = 156 +im[9448] = 0.0887 +ij[9448] = 28.1 +id[9449] = "2597-01-10T12:11:17" +ik[9449] = 0.24 +il[9449] = -95 +im[9449] = 0.0129 +ij[9449] = 27.3 +id[9450] = "2597-01-28T07:45:57" +ik[9450] = 1.077 +il[9450] = -40 +im[9450] = 0.0271 +ij[9450] = 27.5 +id[9451] = "2597-02-01T09:14:06" +ik[9451] = 0.251 +il[9451] = -27 +im[9451] = 0.0927 +ij[9451] = 28.6 +id[9452] = "2597-02-09T21:15:41" +ik[9452] = 0.055 +il[9452] = -1 +im[9452] = 0.0101 +ij[9452] = 28.5 +id[9453] = "2597-02-14T19:47:25" +ik[9453] = 0.051 +il[9453] = 15 +im[9453] = 0.0931 +ij[9453] = 28.8 +id[9454] = "2597-03-03T07:15:31" +ik[9454] = 53.897 +il[9454] = 66 +im[9454] = 0.1056 +ij[9454] = 9 +id[9455] = "2597-03-03T16:43:23" +ik[9455] = 1.159 +il[9455] = 67 +im[9455] = 0.1096 +ij[9455] = 28.4 +id[9456] = "2597-03-14T02:43:56" +ik[9456] = 1.79 +il[9456] = 100 +im[9456] = 0.0442 +ij[9456] = 27.6 +id[9457] = "2597-04-23T00:01:03" +ik[9457] = 2.048 +il[9457] = -135 +im[9457] = 0.1209 +ij[9457] = 27.2 +id[9458] = "2597-05-14T15:22:06" +ik[9458] = 90 +il[9458] = -69 +im[9458] = 0.1186 +ij[9458] = 6 +id[9459] = "2597-06-30T14:03:03" +ik[9459] = 0 +il[9459] = 46 +im[9459] = 0.4251 +ij[9459] = 13 +id[9460] = "2597-07-22T17:38:24" +ik[9460] = 5.36 +il[9460] = 104 +im[9460] = 0.2763 +ij[9460] = 11 +id[9461] = "2597-07-26T21:36:37" +ik[9461] = 0.5125 +il[9461] = 82 +im[9461] = 0.5126 +ij[9461] = 2 +id[9462] = "2597-08-13T18:30:40" +ik[9462] = 44.19 +il[9462] = 102 +im[9462] = 0.2407 +ij[9462] = 7.1662 +id[9463] = "2597-09-16T14:22:25" +ik[9463] = 78.01 +il[9463] = -170 +im[9463] = 0.1598 +ij[9463] = 14 +id[9464] = "2597-10-01T05:39:12" +ik[9464] = 90 +il[9464] = -154 +im[9464] = 0.1119 +ij[9464] = 5 +id[9465] = "2597-11-06T10:09:41" +ik[9465] = 0.43 +il[9465] = -43 +im[9465] = 0.1315 +ij[9465] = 28.7 +id[9466] = "2597-12-14T16:15:58" +ik[9466] = 53.876 +il[9466] = 75 +im[9466] = 0.0724 +ij[9466] = 8 +id[9467] = "2598-01-09T06:39:43" +ik[9467] = 4.211 +il[9467] = 155 +im[9467] = 0.0317 +ij[9467] = 27.1 +id[9468] = "2598-02-24T11:03:16" +ik[9468] = 0.775 +il[9468] = -61 +im[9468] = 0.02 +ij[9468] = 27.3 +id[9469] = "2598-03-14T01:55:43" +ik[9469] = 0.714 +il[9469] = -6 +im[9469] = 0.0251 +ij[9469] = 27.5 +id[9470] = "2598-03-22T23:59:42" +ik[9470] = 2.309 +il[9470] = 21 +im[9470] = 0.0719 +ij[9470] = 28.1 +id[9471] = "2598-03-26T08:33:56" +ik[9471] = 0.705 +il[9471] = 31 +im[9471] = 0.0192 +ij[9471] = 28.6 +id[9472] = "2598-04-01T03:21:10" +ik[9472] = 0.255 +il[9472] = 49 +im[9472] = 0.0774 +ij[9472] = 28.8 +id[9473] = "2598-05-15T21:34:33" +ik[9473] = 0.63 +il[9473] = 179 +im[9473] = 0.0602 +ij[9473] = 12 +id[9474] = "2598-06-20T05:18:05" +ik[9474] = 0.181 +il[9474] = 89 +im[9474] = 0.0774 +ij[9474] = 27.9 +id[9475] = "2598-07-10T06:58:19" +ik[9475] = 2.489 +il[9475] = 151 +im[9475] = 0.0161 +ij[9475] = 28.1 +id[9476] = "2598-09-01T00:01:17" +ik[9476] = 0.129 +il[9476] = -47 +im[9476] = 0.0974 +ij[9476] = 28.7 +id[9477] = "2598-10-01T02:13:20" +ik[9477] = 54.096 +il[9477] = 45 +im[9477] = 0.1109 +ij[9477] = 9 +id[9478] = "2598-10-20T14:13:03" +ik[9478] = 2.688 +il[9478] = 104 +im[9478] = 0.1029 +ij[9478] = 27.4 +id[9479] = "2598-12-19T23:31:16" +ik[9479] = 0.799 +il[9479] = -70 +im[9479] = 0.1385 +ij[9479] = 27.3 +id[9480] = "2598-12-20T10:25:47" +ik[9480] = 90 +il[9480] = -68 +im[9480] = 0.1211 +ij[9480] = 6 +id[9481] = "2599-01-14T15:50:23" +ik[9481] = 1.034 +il[9481] = -6 +im[9481] = 0.2995 +ij[9481] = 27.5 +id[9482] = "2599-02-07T14:22:52" +ik[9482] = 0 +il[9482] = 47 +im[9482] = 0.2836 +ij[9482] = 13 +id[9483] = "2599-02-24T05:40:09" +ik[9483] = 0.5359 +il[9483] = 80 +im[9483] = 0.536 +ij[9483] = 2 +id[9484] = "2599-03-01T11:51:21" +ik[9484] = 8.77 +il[9484] = 93 +im[9484] = 0.218 +ij[9484] = 11 +id[9485] = "2599-03-22T13:25:26" +ik[9485] = 42.96 +il[9485] = 110 +im[9485] = 0.4302 +ij[9485] = 7.1588 +id[9486] = "2599-04-10T18:32:36" +ik[9486] = 4.024 +il[9486] = 145 +im[9486] = 0.1785 +ij[9486] = 27.5 +id[9487] = "2599-04-23T18:39:14" +ik[9487] = 75.18 +il[9487] = 174 +im[9487] = 0.1826 +ij[9487] = 14 +id[9488] = "2599-05-08T04:26:49" +ik[9488] = 0.739 +il[9488] = -150 +im[9488] = 0.1737 +ij[9488] = 28.8 +id[9489] = "2599-05-10T22:11:34" +ik[9489] = 1.647 +il[9489] = -142 +im[9489] = 0.0635 +ij[9489] = 28.6 +id[9490] = "2599-05-11T19:18:16" +ik[9490] = 90 +il[9490] = -140 +im[9490] = 0.0235 +ij[9490] = 5 +id[9491] = "2599-06-06T12:03:51" +ik[9491] = 4.32 +il[9491] = -61 +im[9491] = 0.1285 +ij[9491] = 27.6 +id[9492] = "2599-06-13T21:03:36" +ik[9492] = 1.332 +il[9492] = -38 +im[9492] = 0.0996 +ij[9492] = 28.4 +id[9493] = "2599-06-18T16:35:45" +ik[9493] = 0.972 +il[9493] = -23 +im[9493] = 0.1525 +ij[9493] = 28.5 +id[9494] = "2599-07-17T08:01:44" +ik[9494] = 6.453 +il[9494] = 64 +im[9494] = 0.1267 +ij[9494] = 27.2 +id[9495] = "2599-07-24T08:55:07" +ik[9495] = 54.504 +il[9495] = 86 +im[9495] = 0.0473 +ij[9495] = 8 +id[9496] = "2599-10-17T23:09:18" +ik[9496] = 0.682 +il[9496] = -12 +im[9496] = 0.0879 +ij[9496] = 28.7 +id[9497] = "2599-11-02T00:57:01" +ik[9497] = 0.648 +il[9497] = 35 +im[9497] = 0.0842 +ij[9497] = 28.1 +id[9498] = "2599-12-14T04:00:28" +ik[9498] = 0 +il[9498] = 145 +im[9498] = 0.0763 +ij[9498] = 12 +id[9499] = "2600-01-25T20:12:36" +ik[9499] = 0.069 +il[9499] = 89 +im[9499] = 0.0589 +ij[9499] = 27.3 +id[9500] = "2600-02-04T00:30:31" +ik[9500] = 2.947 +il[9500] = 117 +im[9500] = 0.0551 +ij[9500] = 28.1 +id[9501] = "2600-02-12T10:13:56" +ik[9501] = 1.008 +il[9501] = 143 +im[9501] = 0.0821 +ij[9501] = 27.5 +id[9502] = "2600-03-06T16:04:30" +ik[9502] = 0.095 +il[9502] = -148 +im[9502] = 0.0466 +ij[9502] = 28.8 +id[9503] = "2600-03-19T14:10:19" +ik[9503] = 1.636 +il[9503] = -108 +im[9503] = 0.0749 +ij[9503] = 28.6 +id[9504] = "2600-03-28T07:19:47" +ik[9504] = 2.51 +il[9504] = -81 +im[9504] = 0.0723 +ij[9504] = 27.6 +id[9505] = "2600-05-04T19:45:56" +ik[9505] = 3.37 +il[9505] = 37 +im[9505] = 0.0682 +ij[9505] = 27.2 +id[9506] = "2600-05-10T00:41:28" +ik[9506] = 1.794 +il[9506] = 53 +im[9506] = 0.0568 +ij[9506] = 28.5 +id[9507] = "2600-05-14T09:05:49" +ik[9507] = 54.517 +il[9507] = 67 +im[9507] = 0.122 +ij[9507] = 9 +id[9508] = "2600-07-23T02:35:13" +ik[9508] = 90 +il[9508] = -79 +im[9508] = 0.047 +ij[9508] = 6 +id[9509] = "2600-08-29T06:29:05" +ik[9509] = 5.604 +il[9509] = 10 +im[9509] = 0.2941 +ij[9509] = 28.7 +id[9510] = "2600-09-10T18:39:41" +ik[9510] = 0 +il[9510] = 32 +im[9510] = 0.4262 +ij[9510] = 13 +id[9511] = "2600-10-02T20:16:48" +ik[9511] = 8.39 +il[9511] = 90 +im[9511] = 0.3435 +ij[9511] = 11 +id[9512] = "2600-10-06T18:11:43" +ik[9512] = 0.5391 +il[9512] = 78 +im[9512] = 0.5392 +ij[9512] = 2 +id[9513] = "2600-10-15T10:30:25" +ik[9513] = 0.439 +il[9513] = 87 +im[9513] = 0.2323 +ij[9513] = 27.7 +id[9514] = "2600-10-24T17:42:15" +ik[9514] = 43.96 +il[9514] = 99 +im[9514] = 0.1567 +ij[9514] = 7.1604 +id[9515] = "2600-11-20T09:34:50" +ik[9515] = 0.248 +il[9515] = 151 +im[9515] = 0.1827 +ij[9515] = 28.7 +id[9516] = "2600-11-25T06:21:57" +ik[9516] = 75.49 +il[9516] = 162 +im[9516] = 0.0828 +ij[9516] = 14 +id[9517] = "2600-12-12T11:43:38" +ik[9517] = 90 +il[9517] = -156 +im[9517] = 0.1498 +ij[9517] = 5 +id[9518] = "2601-01-22T03:59:16" +ik[9518] = 3.137 +il[9518] = -29 +im[9518] = 0.0226 +ij[9518] = 27.1 +id[9519] = "2601-02-28T17:20:03" +ik[9519] = 53.747 +il[9519] = 88 +im[9519] = 0.1151 +ij[9519] = 8 +id[9520] = "2601-03-11T05:22:23" +ik[9520] = 1.352 +il[9520] = 121 +im[9520] = 0.0681 +ij[9520] = 27.3 +id[9521] = "2601-03-29T03:34:23" +ik[9521] = 0.424 +il[9521] = 176 +im[9521] = 0.091 +ij[9521] = 27.5 +id[9522] = "2601-04-21T10:49:09" +ik[9522] = 0.195 +il[9522] = -112 +im[9522] = 0.0371 +ij[9522] = 28.8 +id[9523] = "2601-05-11T11:47:54" +ik[9523] = 1.021 +il[9523] = -50 +im[9523] = 0.0668 +ij[9523] = 28.6 +id[9524] = "2601-05-12T10:06:43" +ik[9524] = 3.61 +il[9524] = -48 +im[9524] = 0.0778 +ij[9524] = 27.6 +id[9525] = "2601-05-31T17:57:24" +ik[9525] = 1.074 +il[9525] = 11 +im[9525] = 0.0822 +ij[9525] = 28.1 +id[9526] = "2601-06-19T00:09:17" +ik[9526] = 5.078 +il[9526] = 67 +im[9526] = 0.0547 +ij[9526] = 27.2 +id[9527] = "2601-07-23T09:04:19" +ik[9527] = 0.87 +il[9527] = 150 +im[9527] = 0.0281 +ij[9527] = 12 +id[9528] = "2601-09-17T01:23:57" +ik[9528] = 3.683 +il[9528] = 140 +im[9528] = 0.0512 +ij[9528] = 28.1 +id[9529] = "2601-09-25T10:33:27" +ik[9529] = 0.221 +il[9529] = 165 +im[9529] = 0.0835 +ij[9529] = 28.7 +id[9530] = "2601-11-03T05:32:36" +ik[9530] = 3.657 +il[9530] = -77 +im[9530] = 0.0325 +ij[9530] = 27.4 +id[9531] = "2601-12-15T19:20:58" +ik[9531] = 53.579 +il[9531] = 53 +im[9531] = 0.0911 +ij[9531] = 9 +id[9532] = "2601-12-28T23:07:16" +ik[9532] = 0.593 +il[9532] = 94 +im[9532] = 0.1176 +ij[9532] = 27.3 +id[9533] = "2602-01-16T14:09:03" +ik[9533] = 0.995 +il[9533] = 152 +im[9533] = 0.0764 +ij[9533] = 27.5 +id[9534] = "2602-02-13T23:40:50" +ik[9534] = 1.701 +il[9534] = -119 +im[9534] = 0.1414 +ij[9534] = 28.8 +id[9535] = "2602-03-05T03:24:45" +ik[9535] = 90 +il[9535] = -59 +im[9535] = 0.0476 +ij[9535] = 6 +id[9536] = "2602-03-06T23:28:39" +ik[9536] = 0.33 +il[9536] = -55 +im[9536] = 0.1264 +ij[9536] = 27.6 +id[9537] = "2602-03-23T04:37:19" +ik[9537] = 6.414 +il[9537] = -15 +im[9537] = 0.1877 +ij[9537] = 28.6 +id[9538] = "2602-04-21T06:22:24" +ik[9538] = 0 +il[9538] = 56 +im[9538] = 0.3464 +ij[9538] = 13 +id[9539] = "2602-05-07T08:20:18" +ik[9539] = 0.528 +il[9539] = 88 +im[9539] = 0.528 +ij[9539] = 2 +id[9540] = "2602-05-13T09:57:36" +ik[9540] = 4.29 +il[9540] = 103 +im[9540] = 0.062 +ij[9540] = 11 +id[9541] = "2602-06-03T09:23:11" +ik[9541] = 43.13 +il[9541] = 111 +im[9541] = 0.4379 +ij[9541] = 7.1648 +id[9542] = "2602-06-06T13:38:47" +ik[9542] = 2.063 +il[9542] = 116 +im[9542] = 0.2791 +ij[9542] = 28.6 +id[9543] = "2602-07-07T05:32:04" +ik[9543] = 76.97 +il[9543] = -170 +im[9543] = 0.0736 +ij[9543] = 14 +id[9544] = "2602-07-22T11:25:03" +ik[9544] = 90 +il[9544] = -143 +im[9544] = 0.0349 +ij[9544] = 5 +id[9545] = "2602-09-24T01:19:29" +ik[9545] = 0.731 +il[9545] = 51 +im[9545] = 0.087 +ij[9545] = 28.5 +id[9546] = "2602-10-02T11:38:45" +ik[9546] = 54.358 +il[9546] = 77 +im[9546] = 0.0633 +ij[9546] = 8 +id[9547] = "2602-11-11T11:07:09" +ik[9547] = 0.934 +il[9547] = -160 +im[9547] = 0.1059 +ij[9547] = 28.7 +id[9548] = "2602-12-26T22:06:49" +ik[9548] = 4.896 +il[9548] = -18 +im[9548] = 0.0875 +ij[9548] = 27.1 +id[9549] = "2602-12-31T17:29:36" +ik[9549] = 2.13 +il[9549] = -3 +im[9549] = 0.0439 +ij[9549] = 28.1 +id[9550] = "2603-03-02T02:35:31" +ik[9550] = 1.41 +il[9550] = 179 +im[9550] = 0.048 +ij[9550] = 12 +id[9551] = "2603-04-12T16:30:38" +ik[9551] = 2.95 +il[9551] = 103 +im[9551] = 0.0829 +ij[9551] = 27.6 +id[9552] = "2603-05-03T06:16:24" +ik[9552] = 2.001 +il[9552] = 167 +im[9552] = 0.0284 +ij[9552] = 28.6 +id[9553] = "2603-05-19T14:36:36" +ik[9553] = 4.106 +il[9553] = -142 +im[9553] = 0.0146 +ij[9553] = 27.2 +id[9554] = "2603-07-22T01:52:06" +ik[9554] = 54.625 +il[9554] = 55 +im[9554] = 0.0772 +ij[9554] = 9 +id[9555] = "2603-08-12T19:39:04" +ik[9555] = 1.446 +il[9555] = 121 +im[9555] = 0.1117 +ij[9555] = 28.4 +id[9556] = "2603-08-19T16:25:06" +ik[9556] = 0.918 +il[9556] = 142 +im[9556] = 0.054 +ij[9556] = 28.5 +id[9557] = "2603-09-07T04:33:44" +ik[9557] = 1.581 +il[9557] = -162 +im[9557] = 0.1633 +ij[9557] = 28.7 +id[9558] = "2603-10-04T09:18:34" +ik[9558] = 90 +il[9558] = -79 +im[9558] = 0.1582 +ij[9558] = 6 +id[9559] = "2603-10-16T02:11:15" +ik[9559] = 0.195 +il[9559] = -47 +im[9559] = 0.0151 +ij[9559] = 27.4 +id[9560] = "2603-11-24T05:32:31" +ik[9560] = 0 +il[9560] = 47 +im[9560] = 0.282 +ij[9560] = 13 +id[9561] = "2603-12-04T11:34:06" +ik[9561] = 0.5432 +il[9561] = 63 +im[9561] = 0.5433 +ij[9561] = 2 +id[9562] = "2603-12-16T00:44:38" +ik[9562] = 0.14 +il[9562] = 93 +im[9562] = 0.4979 +ij[9562] = 11 +id[9563] = "2603-12-24T00:29:29" +ik[9563] = 3.408 +il[9563] = 88 +im[9563] = 0.0767 +ij[9563] = 27.1 +id[9564] = "2604-01-05T13:50:08" +ik[9564] = 42.35 +il[9564] = 103 +im[9564] = 0.151 +ij[9564] = 7.1541 +id[9565] = "2604-01-17T23:47:42" +ik[9565] = 0.486 +il[9565] = 124 +im[9565] = 0.1734 +ij[9565] = 27.1 +id[9566] = "2604-02-06T01:29:50" +ik[9566] = 73.83 +il[9566] = 165 +im[9566] = 0.1071 +ij[9566] = 14 +id[9567] = "2604-02-25T07:35:58" +ik[9567] = 90 +il[9567] = -147 +im[9567] = 0.2284 +ij[9567] = 5 +id[9568] = "2604-03-22T08:29:56" +ik[9568] = 2.599 +il[9568] = -66 +im[9568] = 0.1148 +ij[9568] = 27.3 +id[9569] = "2604-04-10T10:46:49" +ik[9569] = 0.219 +il[9569] = -6 +im[9569] = 0.1392 +ij[9569] = 27.5 +id[9570] = "2604-05-09T20:46:45" +ik[9570] = 0.205 +il[9570] = 85 +im[9570] = 0.1188 +ij[9570] = 28.8 +id[9571] = "2604-05-13T08:23:14" +ik[9571] = 54.158 +il[9571] = 95 +im[9571] = 0.0949 +ij[9571] = 8 +id[9572] = "2604-05-26T04:01:19" +ik[9572] = 3.947 +il[9572] = 135 +im[9572] = 0.1105 +ij[9572] = 27.6 +id[9573] = "2604-06-23T19:54:11" +ik[9573] = 0.636 +il[9573] = -138 +im[9573] = 0.0944 +ij[9573] = 28.6 +id[9574] = "2604-07-03T13:01:16" +ik[9574] = 5.643 +il[9574] = -108 +im[9574] = 0.0355 +ij[9574] = 27.2 +id[9575] = "2604-07-20T12:44:38" +ik[9575] = 0.13 +il[9575] = -57 +im[9575] = 0.0527 +ij[9575] = 27.91 +id[9576] = "2604-08-11T04:29:42" +ik[9576] = 3.052 +il[9576] = 9 +im[9576] = 0.0834 +ij[9576] = 28.1 +id[9577] = "2604-09-29T20:36:57" +ik[9577] = 1.37 +il[9577] = 141 +im[9577] = 0.0117 +ij[9577] = 12 +id[9578] = "2604-11-16T21:21:10" +ik[9578] = 1.13 +il[9578] = 105 +im[9578] = 0.0451 +ij[9578] = 28.1 +id[9579] = "2604-11-17T08:09:02" +ik[9579] = 4.287 +il[9579] = 107 +im[9579] = 0.0525 +ij[9579] = 27.4 +id[9580] = "2605-01-11T01:53:56" +ik[9580] = 0.247 +il[9580] = -86 +im[9580] = 0.0518 +ij[9580] = 27.3 +id[9581] = "2605-01-28T21:45:56" +ik[9581] = 1.075 +il[9581] = -31 +im[9581] = 0.0167 +ij[9581] = 27.5 +id[9582] = "2605-03-01T17:31:29" +ik[9582] = 1.039 +il[9582] = 68 +im[9582] = 0.0345 +ij[9582] = 28.8 +id[9583] = "2605-03-01T19:56:35" +ik[9583] = 53.875 +il[9583] = 68 +im[9583] = 0.037 +ij[9583] = 9 +id[9584] = "2605-03-14T18:07:39" +ik[9584] = 1.75 +il[9584] = 109 +im[9584] = 0.0179 +ij[9584] = 27.6 +id[9585] = "2605-04-23T19:28:35" +ik[9585] = 1.984 +il[9585] = -126 +im[9585] = 0.1523 +ij[9585] = 27.2 +id[9586] = "2605-04-28T02:06:43" +ik[9586] = 4.274 +il[9586] = -113 +im[9586] = 0.0293 +ij[9586] = 28.6 +id[9587] = "2605-05-13T09:09:44" +ik[9587] = 90 +il[9587] = -66 +im[9587] = 0.0431 +ij[9587] = 6 +id[9588] = "2605-06-29T01:30:17" +ik[9588] = 0 +il[9588] = 49 +im[9588] = 0.2932 +ij[9588] = 13 +id[9589] = "2605-07-21T10:13:26" +ik[9589] = 5.1 +il[9589] = 108 +im[9589] = 0.1441 +ij[9589] = 11 +id[9590] = "2605-07-29T03:01:17" +ik[9590] = 0.5122 +il[9590] = 88 +im[9590] = 0.5122 +ij[9590] = 2 +id[9591] = "2605-08-12T10:41:59" +ik[9591] = 44.38 +il[9591] = 105 +im[9591] = 0.4006 +ij[9591] = 7.1661 +id[9592] = "2605-09-15T07:25:43" +ik[9592] = 78.25 +il[9592] = 172 +im[9592] = 0.0307 +ij[9592] = 14 +id[9593] = "2605-09-29T21:40:41" +ik[9593] = 90 +il[9593] = -151 +im[9593] = 0.0638 +ij[9593] = 5 +id[9594] = "2605-12-04T02:00:40" +ik[9594] = 1.39 +il[9594] = 49 +im[9594] = 0.0987 +ij[9594] = 28.7 +id[9595] = "2605-12-13T05:18:23" +ik[9595] = 53.891 +il[9595] = 78 +im[9595] = 0.0288 +ij[9595] = 8 +id[9596] = "2605-12-22T02:24:25" +ik[9596] = 1.173 +il[9596] = 105 +im[9596] = 0.1189 +ij[9596] = 28.4 +id[9597] = "2606-01-05T13:38:12" +ik[9597] = 0.568 +il[9597] = 151 +im[9597] = 0.1069 +ij[9597] = 28.5 +id[9598] = "2606-01-09T20:45:28" +ik[9598] = 4.236 +il[9598] = 164 +im[9598] = 0.0732 +ij[9598] = 27.1 +id[9599] = "2606-02-25T00:31:42" +ik[9599] = 0.764 +il[9599] = -52 +im[9599] = 0.0522 +ij[9599] = 27.3 +id[9600] = "2606-03-02T08:58:50" +ik[9600] = 2.699 +il[9600] = -36 +im[9600] = 0.0509 +ij[9600] = 28.1 +id[9601] = "2606-03-14T15:13:29" +ik[9601] = 0.719 +il[9601] = 2 +im[9601] = 0.0181 +ij[9601] = 27.5 +id[9602] = "2606-05-14T14:06:43" +ik[9602] = 0.68 +il[9602] = 168 +im[9602] = 0.0061 +ij[9602] = 12 +id[9603] = "2606-06-15T02:28:01" +ik[9603] = 1.559 +il[9603] = 80 +im[9603] = 0.0295 +ij[9603] = 28.6 +id[9604] = "2606-06-16T23:57:15" +ik[9604] = 1.242 +il[9604] = 96 +im[9604] = 0.0604 +ij[9604] = 28.1 +id[9605] = "2606-06-20T15:24:54" +ik[9605] = 0.236 +il[9605] = 97 +im[9605] = 0.0874 +ij[9605] = 27.9 +id[9606] = "2606-09-28T02:52:22" +ik[9606] = 0.849 +il[9606] = 43 +im[9606] = 0.0222 +ij[9606] = 28.7 +id[9607] = "2606-09-29T16:33:58" +ik[9607] = 54.119 +il[9607] = 47 +im[9607] = 0.0586 +ij[9607] = 9 +id[9608] = "2606-10-21T06:18:22" +ik[9608] = 2.648 +il[9608] = 113 +im[9608] = 0.1301 +ij[9608] = 27.4 +id[9609] = "2606-12-02T02:57:50" +ik[9609] = 2.375 +il[9609] = -119 +im[9609] = 0.1837 +ij[9609] = 28.5 +id[9610] = "2606-12-18T21:54:51" +ik[9610] = 90 +il[9610] = -66 +im[9610] = 0.2133 +ij[9610] = 6 +id[9611] = "2606-12-21T01:35:15" +ik[9611] = 0.772 +il[9611] = -61 +im[9611] = 0.1813 +ij[9611] = 27.3 +id[9612] = "2607-01-17T01:47:42" +ik[9612] = 1.44 +il[9612] = 5 +im[9612] = 0.3086 +ij[9612] = 27.5 +id[9613] = "2607-02-06T07:26:10" +ik[9613] = 0 +il[9613] = 48 +im[9613] = 0.0543 +ij[9613] = 13 +id[9614] = "2607-02-26T05:36:21" +ik[9614] = 0.5536 +il[9614] = 90 +im[9614] = 0.5536 +ij[9614] = 2 +id[9615] = "2607-02-28T00:43:12" +ik[9615] = 8.7 +il[9615] = 93 +im[9615] = 0.5083 +ij[9615] = 11 +id[9616] = "2607-03-20T17:30:52" +ik[9616] = 42.42 +il[9616] = 112 +im[9616] = 0.2468 +ij[9616] = 7.1587 +id[9617] = "2607-04-12T22:58:22" +ik[9617] = 3.582 +il[9617] = 155 +im[9617] = 0.1599 +ij[9617] = 27.5 +id[9618] = "2607-04-22T06:48:32" +ik[9618] = 74.97 +il[9618] = 176 +im[9618] = 0.2702 +ij[9618] = 14 +id[9619] = "2607-05-10T09:22:07" +ik[9619] = 90 +il[9619] = -138 +im[9619] = 0.1641 +ij[9619] = 5 +id[9620] = "2607-05-26T08:52:00" +ik[9620] = 0.27 +il[9620] = -88 +im[9620] = 0.1253 +ij[9620] = 28.8 +id[9621] = "2607-06-07T06:55:29" +ik[9621] = 4.31 +il[9621] = -51 +im[9621] = 0.147 +ij[9621] = 27.6 +id[9622] = "2607-07-17T23:05:43" +ik[9622] = 6.42 +il[9622] = 73 +im[9622] = 0.1054 +ij[9622] = 27.2 +id[9623] = "2607-07-23T02:02:52" +ik[9623] = 54.5 +il[9623] = 89 +im[9623] = 0.1145 +ij[9623] = 8 +id[9624] = "2607-08-05T20:33:47" +ik[9624] = 0.191 +il[9624] = 130 +im[9624] = 0.1021 +ij[9624] = 28.6 +id[9625] = "2607-10-14T11:31:03" +ik[9625] = 1.115 +il[9625] = -16 +im[9625] = 0.0463 +ij[9625] = 28.1 +id[9626] = "2607-11-07T12:36:25" +ik[9626] = 0.583 +il[9626] = 59 +im[9626] = 0.0598 +ij[9626] = 28.1 +id[9627] = "2607-12-12T15:54:43" +ik[9627] = 0.06 +il[9627] = 147 +im[9627] = 0.0233 +ij[9627] = 12 +id[9628] = "2608-01-26T09:27:15" +ik[9628] = 0.065 +il[9628] = 97 +im[9628] = 0.0246 +ij[9628] = 27.3 +id[9629] = "2608-02-02T15:52:51" +ik[9629] = 0.403 +il[9629] = 119 +im[9629] = 0.0898 +ij[9629] = 28.5 +id[9630] = "2608-02-12T23:33:02" +ik[9630] = 1.008 +il[9630] = 151 +im[9630] = 0.065 +ij[9630] = 27.5 +id[9631] = "2608-03-20T06:23:54" +ik[9631] = 0.834 +il[9631] = -96 +im[9631] = 0.0895 +ij[9631] = 28.8 +id[9632] = "2608-03-27T20:59:23" +ik[9632] = 2.49 +il[9632] = -72 +im[9632] = 0.0363 +ij[9632] = 27.6 +id[9633] = "2608-05-04T10:20:35" +ik[9633] = 3.343 +il[9633] = 46 +im[9633] = 0.097 +ij[9633] = 27.2 +id[9634] = "2608-05-12T02:17:07" +ik[9634] = 54.501 +il[9634] = 70 +im[9634] = 0.0685 +ij[9634] = 9 +id[9635] = "2608-06-06T14:41:42" +ik[9635] = 2.288 +il[9635] = 149 +im[9635] = 0.0496 +ij[9635] = 28.6 +id[9636] = "2608-07-20T18:49:06" +ik[9636] = 90 +il[9636] = -77 +im[9636] = 0.1125 +ij[9636] = 6 +id[9637] = "2608-09-08T06:48:59" +ik[9637] = 0 +il[9637] = 45 +im[9637] = 0.3103 +ij[9637] = 13 +id[9638] = "2608-09-30T10:14:52" +ik[9638] = 8.47 +il[9638] = 103 +im[9638] = 0.0892 +ij[9638] = 11 +id[9639] = "2608-10-07T18:45:14" +ik[9639] = 0.519 +il[9639] = 84 +im[9639] = 0.519 +ij[9639] = 2 +id[9640] = "2608-10-08T18:59:45" +ik[9640] = 1.482 +il[9640] = 85 +im[9640] = 0.5045 +ij[9640] = 27.7 +id[9641] = "2608-10-21T10:58:35" +ik[9641] = 43.17 +il[9641] = 100 +im[9641] = 0.4239 +ij[9641] = 7.1608 +id[9642] = "2608-11-22T23:01:20" +ik[9642] = 75.68 +il[9642] = -170 +im[9642] = 0.1353 +ij[9642] = 14 +id[9643] = "2608-12-10T01:43:03" +ik[9643] = 90 +il[9643] = -153 +im[9643] = 0.0206 +ij[9643] = 5 +id[9644] = "2608-12-23T18:19:17" +ik[9644] = 2.255 +il[9644] = -111 +im[9644] = 0.0607 +ij[9644] = 28.7 +id[9645] = "2609-01-21T21:05:01" +ik[9645] = 3.186 +il[9645] = -20 +im[9645] = 0.0762 +ij[9645] = 27.1 +id[9646] = "2609-02-26T04:57:08" +ik[9646] = 53.74 +il[9646] = 90 +im[9646] = 0.0622 +ij[9646] = 8 +id[9647] = "2609-03-10T19:54:22" +ik[9647] = 1.33 +il[9647] = 130 +im[9647] = 0.0268 +ij[9647] = 27.3 +id[9648] = "2609-03-28T17:35:42" +ik[9648] = 0.436 +il[9648] = -175 +im[9648] = 0.0647 +ij[9648] = 27.5 +id[9649] = "2609-04-08T12:36:08" +ik[9649] = 0.088 +il[9649] = -142 +im[9649] = 0.0135 +ij[9649] = 28.5 +id[9650] = "2609-05-05T05:15:38" +ik[9650] = 0.05 +il[9650] = -60 +im[9650] = 0.0679 +ij[9650] = 28.8 +id[9651] = "2609-05-07T22:28:16" +ik[9651] = 0.114 +il[9651] = -51 +im[9651] = 0.026 +ij[9651] = 28.1 +id[9652] = "2609-05-11T23:30:16" +ik[9652] = 3.6 +il[9652] = -39 +im[9652] = 0.0452 +ij[9652] = 27.6 +id[9653] = "2609-06-18T13:09:43" +ik[9653] = 5.061 +il[9653] = 64 +im[9653] = 0.0751 +ij[9653] = 27.2 +id[9654] = "2609-06-19T05:26:44" +ik[9654] = 0.627 +il[9654] = 66 +im[9654] = 0.0684 +ij[9654] = 28.1 +id[9655] = "2609-07-21T03:37:26" +ik[9655] = 0.83 +il[9655] = 153 +im[9655] = 0.0394 +ij[9655] = 12 +id[9656] = "2609-10-21T04:53:02" +ik[9656] = 0.456 +il[9656] = -107 +im[9656] = 0.0191 +ij[9656] = 28.7 +id[9657] = "2609-11-02T19:30:48" +ik[9657] = 3.637 +il[9657] = -68 +im[9657] = 0.0667 +ij[9657] = 27.4 +id[9658] = "2609-12-13T06:04:42" +ik[9658] = 53.586 +il[9658] = 55 +im[9658] = 0.1257 +ij[9658] = 9 +id[9659] = "2609-12-28T14:35:42" +ik[9659] = 0.6 +il[9659] = 103 +im[9659] = 0.1228 +ij[9659] = 27.3 +id[9660] = "2610-01-12T22:45:15" +ik[9660] = 0.943 +il[9660] = 150 +im[9660] = 0.1508 +ij[9660] = 28.4 +id[9661] = "2610-01-16T06:56:09" +ik[9661] = 0.98 +il[9661] = 161 +im[9661] = 0.1227 +ij[9661] = 27.5 +id[9662] = "2610-03-02T04:07:14" +ik[9662] = 3.62 +il[9662] = -59 +im[9662] = 0.1463 +ij[9662] = 28.8 +id[9663] = "2610-03-02T18:17:15" +ik[9663] = 90 +il[9663] = -57 +im[9663] = 0.1271 +ij[9663] = 6 +id[9664] = "2610-03-02T21:27:47" +ik[9664] = 3.162 +il[9664] = -57 +im[9664] = 0.1225 +ij[9664] = 28.5 +id[9665] = "2610-03-07T01:58:16" +ik[9665] = 0.49 +il[9665] = -45 +im[9665] = 0.0603 +ij[9665] = 27.6 +id[9666] = "2610-04-18T23:01:47" +ik[9666] = 0 +il[9666] = 59 +im[9666] = 0.1085 +ij[9666] = 13 +id[9667] = "2610-05-08T10:16:18" +ik[9667] = 0.5274 +il[9667] = 100 +im[9667] = 0.5274 +ij[9667] = 2 +id[9668] = "2610-05-11T02:12:28" +ik[9668] = 4.59 +il[9668] = 106 +im[9668] = 0.4248 +ij[9668] = 11 +id[9669] = "2610-06-01T00:57:33" +ik[9669] = 43.08 +il[9669] = 113 +im[9669] = 0.3547 +ij[9669] = 7.1646 +id[9670] = "2610-07-04T19:59:13" +ik[9670] = 76.87 +il[9670] = 180 +im[9670] = 0.2263 +ij[9670] = 14 +id[9671] = "2610-07-20T03:56:37" +ik[9671] = 90 +il[9671] = -140 +im[9671] = 0.1416 +ij[9671] = 5 +id[9672] = "2610-09-16T05:19:40" +ik[9672] = 1.048 +il[9672] = 37 +im[9672] = 0.1203 +ij[9672] = 28.6 +id[9673] = "2610-09-30T03:42:30" +ik[9673] = 54.371 +il[9673] = 79 +im[9673] = 0.1129 +ij[9673] = 8 +id[9674] = "2610-12-06T18:51:06" +ik[9674] = 0.985 +il[9674] = -71 +im[9674] = 0.0219 +ij[9674] = 28.7 +id[9675] = "2610-12-12T20:18:31" +ik[9675] = 1.754 +il[9675] = -52 +im[9675] = 0.0948 +ij[9675] = 28.1 +id[9676] = "2610-12-26T11:22:48" +ik[9676] = 4.914 +il[9676] = -9 +im[9676] = 0.0816 +ij[9676] = 27.1 +id[9677] = "2611-01-16T11:38:06" +ik[9677] = 4.354 +il[9677] = 56 +im[9677] = 0.067 +ij[9677] = 28.1 +id[9678] = "2611-02-27T12:43:12" +ik[9678] = 1.39 +il[9678] = 168 +im[9678] = 0.0885 +ij[9678] = 12 +id[9679] = "2611-04-09T15:58:53" +ik[9679] = 0.71 +il[9679] = 103 +im[9679] = 0.0582 +ij[9679] = 28.8 +id[9680] = "2611-04-12T05:40:14" +ik[9680] = 2.94 +il[9680] = 111 +im[9680] = 0.082 +ij[9680] = 27.6 +id[9681] = "2611-05-01T05:40:24" +ik[9681] = 0.83 +il[9681] = 170 +im[9681] = 0.0805 +ij[9681] = 28.5 +id[9682] = "2611-05-19T04:00:35" +ik[9682] = 4.089 +il[9682] = -133 +im[9682] = 0.0298 +ij[9682] = 27.2 +id[9683] = "2611-07-18T19:04:22" +ik[9683] = 0.311 +il[9683] = 55 +im[9683] = 0.0374 +ij[9683] = 28.6 +id[9684] = "2611-07-19T19:49:38" +ik[9684] = 54.633 +il[9684] = 58 +im[9684] = 0.0155 +ij[9684] = 9 +id[9685] = "2611-10-01T21:42:28" +ik[9685] = 90 +il[9685] = -77 +im[9685] = 0.0305 +ij[9685] = 6 +id[9686] = "2611-10-08T04:49:17" +ik[9686] = 3.814 +il[9686] = -58 +im[9686] = 0.2256 +ij[9686] = 28.7 +id[9687] = "2611-10-16T11:41:28" +ik[9687] = 0.037 +il[9687] = -38 +im[9687] = 0.0792 +ij[9687] = 27.4 +id[9688] = "2611-11-21T19:59:40" +ik[9688] = 0 +il[9688] = 49 +im[9688] = 0.4342 +ij[9688] = 13 +id[9689] = "2611-12-05T16:28:12" +ik[9689] = 0.5578 +il[9689] = 75 +im[9689] = 0.5579 +ij[9689] = 2 +id[9690] = "2611-12-13T13:56:38" +ik[9690] = 0.25 +il[9690] = 95 +im[9690] = 0.1823 +ij[9690] = 11 +id[9691] = "2612-01-03T01:46:19" +ik[9691] = 42.24 +il[9691] = 105 +im[9691] = 0.4327 +ij[9691] = 7.1541 +id[9692] = "2612-01-20T14:39:14" +ik[9692] = 0.574 +il[9692] = 137 +im[9692] = 0.0529 +ij[9692] = 27.1 +id[9693] = "2612-02-03T14:05:12" +ik[9693] = 73.75 +il[9693] = 167 +im[9693] = 0.1311 +ij[9693] = 14 +id[9694] = "2612-02-22T19:45:43" +ik[9694] = 90 +il[9694] = -145 +im[9694] = 0.136 +ij[9694] = 5 +id[9695] = "2612-03-22T03:01:55" +ik[9695] = 2.533 +il[9695] = -57 +im[9695] = 0.0536 +ij[9695] = 27.3 +id[9696] = "2612-04-10T03:19:15" +ik[9696] = 0.185 +il[9696] = 3 +im[9696] = 0.1314 +ij[9696] = 27.5 +id[9697] = "2612-04-19T09:44:21" +ik[9697] = 0.727 +il[9697] = 31 +im[9697] = 0.0078 +ij[9697] = 28.4 +id[9698] = "2612-05-10T23:15:52" +ik[9698] = 54.142 +il[9698] = 98 +im[9698] = 0.1186 +ij[9698] = 8 +id[9699] = "2612-05-24T01:57:38" +ik[9699] = 0.143 +il[9699] = 138 +im[9699] = 0.0823 +ij[9699] = 28.8 +id[9700] = "2612-05-25T18:24:52" +ik[9700] = 3.936 +il[9700] = 143 +im[9700] = 0.1008 +ij[9700] = 27.6 +id[9701] = "2612-07-03T02:27:56" +ik[9701] = 5.621 +il[9701] = -100 +im[9701] = 0.0079 +ij[9701] = 27.2 +id[9702] = "2612-07-06T10:45:15" +ik[9702] = 0.226 +il[9702] = -90 +im[9702] = 0.0579 +ij[9702] = 28.5 +id[9703] = "2612-07-20T02:00:57" +ik[9703] = 0.15 +il[9703] = -48 +im[9703] = 0.018 +ij[9703] = 27.91 +id[9704] = "2612-07-20T14:44:00" +ik[9704] = 2.975 +il[9704] = -47 +im[9704] = 0.0279 +ij[9704] = 28.1 +id[9705] = "2612-08-10T05:17:31" +ik[9705] = 0.143 +il[9705] = 16 +im[9705] = 0.0914 +ij[9705] = 28.1 +id[9706] = "2612-09-27T12:24:28" +ik[9706] = 1.38 +il[9706] = 144 +im[9706] = 0.0686 +ij[9706] = 12 +id[9707] = "2612-11-14T01:34:01" +ik[9707] = 0.151 +il[9707] = 107 +im[9707] = 0.0366 +ij[9707] = 28.7 +id[9708] = "2612-11-16T21:28:34" +ik[9708] = 4.274 +il[9708] = 115 +im[9708] = 0.0192 +ij[9708] = 27.4 +id[9709] = "2613-01-10T15:39:41" +ik[9709] = 0.253 +il[9709] = -78 +im[9709] = 0.0827 +ij[9709] = 27.3 +id[9710] = "2613-01-28T11:50:21" +ik[9710] = 1.072 +il[9710] = -23 +im[9710] = 0.0547 +ij[9710] = 27.5 +id[9711] = "2613-02-27T08:27:00" +ik[9711] = 53.853 +il[9711] = 71 +im[9711] = 0.0623 +ij[9711] = 9 +id[9712] = "2613-03-14T09:32:17" +ik[9712] = 1.71 +il[9712] = 118 +im[9712] = 0.0698 +ij[9712] = 27.6 +id[9713] = "2613-03-15T20:17:13" +ik[9713] = 2.099 +il[9713] = 122 +im[9713] = 0.0373 +ij[9713] = 28.8 +id[9714] = "2613-04-23T15:21:01" +ik[9714] = 1.918 +il[9714] = -117 +im[9714] = 0.1656 +ij[9714] = 27.2 +id[9715] = "2613-05-11T02:58:15" +ik[9715] = 90 +il[9715] = -63 +im[9715] = 0.183 +ij[9715] = 6 +id[9716] = "2613-06-14T05:44:09" +ik[9716] = 1.683 +il[9716] = 18 +im[9716] = 0.0321 +ij[9716] = 28.5 +id[9717] = "2613-06-26T14:05:39" +ik[9717] = 0 +il[9717] = 40 +im[9717] = 0.0364 +ij[9717] = 13 +id[9718] = "2613-07-19T02:54:14" +ik[9718] = 4.83 +il[9718] = 99 +im[9718] = 0.4369 +ij[9718] = 11 +id[9719] = "2613-07-30T06:13:42" +ik[9719] = 0.5019 +il[9719] = 94 +im[9719] = 0.5019 +ij[9719] = 2 +id[9720] = "2613-08-10T15:12:14" +ik[9720] = 45.05 +il[9720] = 109 +im[9720] = 0.3333 +ij[9720] = 7.1661 +id[9721] = "2613-08-28T10:22:22" +ik[9721] = 5.094 +il[9721] = 140 +im[9721] = 0.315 +ij[9721] = 28.5 +id[9722] = "2613-09-13T00:16:01" +ik[9722] = 78.42 +il[9722] = -170 +im[9722] = 0.191 +ij[9722] = 14 +id[9723] = "2613-09-27T13:50:08" +ik[9723] = 90 +il[9723] = -148 +im[9723] = 0.1972 +ij[9723] = 5 +id[9724] = "2613-10-27T07:56:21" +ik[9724] = 1.397 +il[9724] = -57 +im[9724] = 0.1484 +ij[9724] = 28.6 +id[9725] = "2613-12-10T18:27:55" +ik[9725] = 53.906 +il[9725] = 80 +im[9725] = 0.1049 +ij[9725] = 8 +id[9726] = "2613-12-30T13:39:47" +ik[9726] = 1.391 +il[9726] = 142 +im[9726] = 0.0171 +ij[9726] = 28.7 +id[9727] = "2614-01-09T10:51:14" +ik[9727] = 4.261 +il[9727] = 173 +im[9727] = 0.101 +ij[9727] = 27.1 +id[9728] = "2614-02-10T18:16:16" +ik[9728] = 2.733 +il[9728] = -86 +im[9728] = 0.0737 +ij[9728] = 28.1 +id[9729] = "2614-02-24T14:00:08" +ik[9729] = 0.753 +il[9729] = -44 +im[9729] = 0.076 +ij[9729] = 27.3 +id[9730] = "2614-03-14T04:32:08" +ik[9730] = 0.724 +il[9730] = 11 +im[9730] = 0.0535 +ij[9730] = 27.5 +id[9731] = "2614-03-25T01:28:42" +ik[9731] = 3.151 +il[9731] = 44 +im[9731] = 0.0831 +ij[9731] = 28.1 +id[9732] = "2614-05-12T06:27:21" +ik[9732] = 0.73 +il[9732] = 168 +im[9732] = 0.0643 +ij[9732] = 12 +id[9733] = "2614-06-20T06:22:01" +ik[9733] = 0.163 +il[9733] = 106 +im[9733] = 0.0815 +ij[9733] = 27.9 +id[9734] = "2614-08-04T14:21:07" +ik[9734] = 0.326 +il[9734] = -113 +im[9734] = 0.0797 +ij[9734] = 28.5 +id[9735] = "2614-08-30T19:30:00" +ik[9735] = 1.316 +il[9735] = -33 +im[9735] = 0.0242 +ij[9735] = 28.6 +id[9736] = "2614-09-27T07:08:49" +ik[9736] = 54.142 +il[9736] = 50 +im[9736] = 0.0359 +ij[9736] = 9 +id[9737] = "2614-10-20T22:30:48" +ik[9737] = 2.608 +il[9737] = 122 +im[9737] = 0.1356 +ij[9737] = 27.4 +id[9738] = "2614-10-25T14:24:25" +ik[9738] = 1.942 +il[9738] = 136 +im[9738] = 0.0824 +ij[9738] = 28.7 +id[9739] = "2614-12-16T09:18:36" +ik[9739] = 90 +il[9739] = -64 +im[9739] = 0.1481 +ij[9739] = 6 +id[9740] = "2614-12-21T04:49:28" +ik[9740] = 0.739 +il[9740] = -50 +im[9740] = 0.2108 +ij[9740] = 27.3 +id[9741] = "2615-01-17T03:04:26" +ik[9741] = 1.503 +il[9741] = 13 +im[9741] = 0.3117 +ij[9741] = 27.5 +id[9742] = "2615-01-19T03:17:55" +ik[9742] = 2.016 +il[9742] = 17 +im[9742] = 0.3159 +ij[9742] = 27.5 +id[9743] = "2615-02-04T00:16:28" +ik[9743] = 0 +il[9743] = 48 +im[9743] = 0.3639 +ij[9743] = 13 +id[9744] = "2615-02-25T13:27:50" +ik[9744] = 8.62 +il[9744] = 105 +im[9744] = 0.5179 +ij[9744] = 11 +id[9745] = "2615-02-27T07:54:32" +ik[9745] = 0.5616 +il[9745] = 93 +im[9745] = 0.5616 +ij[9745] = 2 +id[9746] = "2615-03-18T06:27:10" +ik[9746] = 42.26 +il[9746] = 114 +im[9746] = 0.1301 +ij[9746] = 7.1586 +id[9747] = "2615-04-13T20:25:01" +ik[9747] = 3.22 +il[9747] = 165 +im[9747] = 0.1644 +ij[9747] = 27.5 +id[9748] = "2615-04-19T18:54:58" +ik[9748] = 74.78 +il[9748] = 178 +im[9748] = 0.1766 +ij[9748] = 14 +id[9749] = "2615-05-07T23:14:28" +ik[9749] = 90 +il[9749] = -135 +im[9749] = 0.1956 +ij[9749] = 5 +id[9750] = "2615-06-07T01:20:08" +ik[9750] = 4.3 +il[9750] = -42 +im[9750] = 0.1483 +ij[9750] = 27.6 +id[9751] = "2615-06-10T22:30:08" +ik[9751] = 0.53 +il[9751] = -30 +im[9751] = 0.1028 +ij[9751] = 28.8 +id[9752] = "2615-07-17T14:01:15" +ik[9752] = 6.387 +il[9752] = 82 +im[9752] = 0.0662 +ij[9752] = 27.2 +id[9753] = "2615-07-20T19:10:37" +ik[9753] = 54.496 +il[9753] = 91 +im[9753] = 0.1128 +ij[9753] = 8 +id[9754] = "2615-09-29T10:11:25" +ik[9754] = 1.145 +il[9754] = -52 +im[9754] = 0.0311 +ij[9754] = 28.1 +id[9755] = "2615-10-15T03:54:51" +ik[9755] = 0.064 +il[9755] = -4 +im[9755] = 0.0287 +ij[9755] = 28.5 +id[9756] = "2615-10-22T16:35:36" +ik[9756] = 1.032 +il[9756] = 20 +im[9756] = 0.078 +ij[9756] = 28.6 +id[9757] = "2615-12-10T03:57:36" +ik[9757] = 0.12 +il[9757] = 149 +im[9757] = 0.0487 +ij[9757] = 12 +id[9758] = "2616-01-25T22:41:28" +ik[9758] = 0.059 +il[9758] = 106 +im[9758] = 0.0181 +ij[9758] = 27.3 +id[9759] = "2616-02-12T12:52:34" +ik[9759] = 1.008 +il[9759] = 160 +im[9759] = 0.0353 +ij[9759] = 27.5 +id[9760] = "2616-03-27T10:40:07" +ik[9760] = 2.48 +il[9760] = -63 +im[9760] = 0.0084 +ij[9760] = 27.6 +id[9761] = "2616-04-02T22:53:45" +ik[9761] = 1.594 +il[9761] = -43 +im[9761] = 0.0952 +ij[9761] = 28.8 +id[9762] = "2616-05-04T00:58:47" +ik[9762] = 3.315 +il[9762] = 55 +im[9762] = 0.1109 +ij[9762] = 27.2 +id[9763] = "2616-05-09T19:21:18" +ik[9763] = 54.485 +il[9763] = 73 +im[9763] = 0.0287 +ij[9763] = 9 +id[9764] = "2616-05-10T01:12:17" +ik[9764] = 0.321 +il[9764] = 73 +im[9764] = 0.023 +ij[9764] = 28.4 +id[9765] = "2616-07-18T11:10:03" +ik[9765] = 90 +il[9765] = -74 +im[9765] = 0.1989 +ij[9765] = 6 +id[9766] = "2616-09-05T18:55:25" +ik[9766] = 0 +il[9766] = 48 +im[9766] = 0.0878 +ij[9766] = 13 +id[9767] = "2616-09-25T13:18:48" +ik[9767] = 0.5335 +il[9767] = 90 +im[9767] = 0.5335 +ij[9767] = 2 +id[9768] = "2616-09-28T00:12:57" +ik[9768] = 8.55 +il[9768] = 95 +im[9768] = 0.4542 +ij[9768] = 11 +id[9769] = "2616-09-29T16:31:09" +ik[9769] = 1.982 +il[9769] = 81 +im[9769] = 0.324 +ij[9769] = 27.7 +id[9770] = "2616-10-19T03:11:01" +ik[9770] = 43.34 +il[9770] = 103 +im[9770] = 0.3425 +ij[9770] = 7.1611 +id[9771] = "2616-11-20T15:31:48" +ik[9771] = 75.86 +il[9771] = 167 +im[9771] = 0.2667 +ij[9771] = 14 +id[9772] = "2616-12-06T08:09:27" +ik[9772] = 0.554 +il[9772] = -154 +im[9772] = 0.1984 +ij[9772] = 28.6 +id[9773] = "2616-12-07T15:49:33" +ik[9773] = 90 +il[9773] = -150 +im[9773] = 0.1635 +ij[9773] = 5 +id[9774] = "2616-12-19T16:21:38" +ik[9774] = 1.175 +il[9774] = -113 +im[9774] = 0.1985 +ij[9774] = 28.5 +id[9775] = "2617-01-21T14:00:07" +ik[9775] = 3.233 +il[9775] = -11 +im[9775] = 0.1229 +ij[9775] = 27.1 +id[9776] = "2617-01-21T19:16:19" +ik[9776] = 2.222 +il[9776] = -10 +im[9776] = 0.1186 +ij[9776] = 28.7 +id[9777] = "2617-02-23T16:34:13" +ik[9777] = 53.734 +il[9777] = 92 +im[9777] = 0.0408 +ij[9777] = 8 +id[9778] = "2617-03-10T10:19:14" +ik[9778] = 1.309 +il[9778] = 138 +im[9778] = 0.0242 +ij[9778] = 27.3 +id[9779] = "2617-03-28T07:37:54" +ik[9779] = 0.447 +il[9779] = -166 +im[9779] = 0.028 +ij[9779] = 27.5 +id[9780] = "2617-04-16T02:45:18" +ik[9780] = 0.542 +il[9780] = -108 +im[9780] = 0.0846 +ij[9780] = 28.1 +id[9781] = "2617-05-11T12:51:06" +ik[9781] = 3.59 +il[9781] = -31 +im[9781] = 0.0054 +ij[9781] = 27.6 +id[9782] = "2617-05-18T22:45:33" +ik[9782] = 0.38 +il[9782] = -8 +im[9782] = 0.0883 +ij[9782] = 28.8 +id[9783] = "2617-05-20T09:11:48" +ik[9783] = 1.619 +il[9783] = -4 +im[9783] = 0.083 +ij[9783] = 28.1 +id[9784] = "2617-06-18T02:09:15" +ik[9784] = 5.043 +il[9784] = 73 +im[9784] = 0.0829 +ij[9784] = 27.2 +id[9785] = "2617-07-18T22:16:19" +ik[9785] = 0.79 +il[9785] = 156 +im[9785] = 0.0789 +ij[9785] = 12 +id[9786] = "2617-10-14T23:01:06" +ik[9786] = 2.159 +il[9786] = -116 +im[9786] = 0.0977 +ij[9786] = 28.6 +id[9787] = "2617-11-02T09:29:27" +ik[9787] = 3.618 +il[9787] = -60 +im[9787] = 0.0901 +ij[9787] = 27.4 +id[9788] = "2617-11-16T15:20:18" +ik[9788] = 1.548 +il[9788] = -16 +im[9788] = 0.1091 +ij[9788] = 28.5 +id[9789] = "2617-11-17T04:00:54" +ik[9789] = 1.18 +il[9789] = -15 +im[9789] = 0.1056 +ij[9789] = 28.7 +id[9790] = "2617-12-10T16:48:27" +ik[9790] = 53.594 +il[9790] = 57 +im[9790] = 0.077 +ij[9790] = 9 +id[9791] = "2617-12-28T06:11:14" +ik[9791] = 0.607 +il[9791] = 112 +im[9791] = 0.1106 +ij[9791] = 27.3 +id[9792] = "2618-01-15T23:51:41" +ik[9792] = 0.965 +il[9792] = 170 +im[9792] = 0.1485 +ij[9792] = 27.5 +id[9793] = "2618-02-28T09:02:41" +ik[9793] = 90 +il[9793] = -54 +im[9793] = 0.2164 +ij[9793] = 6 +id[9794] = "2618-03-07T05:38:58" +ik[9794] = 0.65 +il[9794] = -36 +im[9794] = 0.0279 +ij[9794] = 27.6 +id[9795] = "2618-03-21T09:39:27" +ik[9795] = 6.051 +il[9795] = -4 +im[9795] = 0.0481 +ij[9795] = 28.8 +id[9796] = "2618-04-15T15:32:15" +ik[9796] = 0 +il[9796] = 53 +im[9796] = 0.3184 +ij[9796] = 13 +id[9797] = "2618-05-08T18:17:16" +ik[9797] = 4.88 +il[9797] = 114 +im[9797] = 0.5082 +ij[9797] = 11 +id[9798] = "2618-05-09T14:09:51" +ik[9798] = 0.5174 +il[9798] = 94 +im[9798] = 0.5174 +ij[9798] = 2 +id[9799] = "2618-05-20T10:22:04" +ik[9799] = 4.678 +il[9799] = 104 +im[9799] = 0.4396 +ij[9799] = 28.8 +id[9800] = "2618-05-20T10:45:24" +ik[9800] = 4.678 +il[9800] = 104 +im[9800] = 0.4402 +ij[9800] = 28.8 +id[9801] = "2618-05-20T11:01:06" +ik[9801] = 4.678 +il[9801] = 104 +im[9801] = 0.4407 +ij[9801] = 28.8 +id[9802] = "2618-05-20T20:24:17" +ik[9802] = 4.677 +il[9802] = 105 +im[9802] = 0.4539 +ij[9802] = 28.8 +id[9803] = "2618-05-20T20:50:38" +ik[9803] = 4.677 +il[9803] = 105 +im[9803] = 0.4544 +ij[9803] = 28.8 +id[9804] = "2618-05-29T16:33:49" +ik[9804] = 44.04 +il[9804] = 116 +im[9804] = 0.0599 +ij[9804] = 7.164 +id[9805] = "2618-06-13T07:10:33" +ik[9805] = 0.394 +il[9805] = 142 +im[9805] = 0.0888 +ij[9805] = 28.8 +id[9806] = "2618-07-02T09:09:32" +ik[9806] = 77.73 +il[9806] = -170 +im[9806] = 0.2397 +ij[9806] = 14 +id[9807] = "2618-07-17T20:28:11" +ik[9807] = 90 +il[9807] = -137 +im[9807] = 0.2086 +ij[9807] = 5 +id[9808] = "2618-09-19T16:04:56" +ik[9808] = 1.484 +il[9808] = 57 +im[9808] = 0.0959 +ij[9808] = 28.4 +id[9809] = "2618-09-27T19:53:21" +ik[9809] = 54.383 +il[9809] = 82 +im[9809] = 0.0893 +ij[9809] = 8 +id[9810] = "2618-11-26T03:24:37" +ik[9810] = 5.351 +il[9810] = -94 +im[9810] = 0.0653 +ij[9810] = 28.1 +id[9811] = "2618-12-07T09:06:46" +ik[9811] = 0.978 +il[9811] = -59 +im[9811] = 0.0053 +ij[9811] = 28.6 +id[9812] = "2618-12-26T00:39:14" +ik[9812] = 4.932 +il[9812] = -1 +im[9812] = 0.0612 +ij[9812] = 27.1 +id[9813] = "2619-01-02T17:09:01" +ik[9813] = 0.424 +il[9813] = 23 +im[9813] = 0.0665 +ij[9813] = 28.7 +id[9814] = "2619-02-24T22:45:07" +ik[9814] = 1.38 +il[9814] = 168 +im[9814] = 0.0679 +ij[9814] = 12 +id[9815] = "2619-04-11T18:49:58" +ik[9815] = 2.92 +il[9815] = 120 +im[9815] = 0.0684 +ij[9815] = 27.6 +id[9816] = "2619-04-23T05:23:16" +ik[9816] = 1.294 +il[9816] = 156 +im[9816] = 0.0182 +ij[9816] = 28.8 +id[9817] = "2619-05-18T17:25:00" +ik[9817] = 4.073 +il[9817] = -124 +im[9817] = 0.0651 +ij[9817] = 27.2 +id[9818] = "2619-05-31T12:23:19" +ik[9818] = 2.381 +il[9818] = -84 +im[9818] = 0.0935 +ij[9818] = 28.1 +id[9819] = "2619-07-17T13:47:09" +ik[9819] = 54.639 +il[9819] = 61 +im[9819] = 0.0956 +ij[9819] = 9 +id[9820] = "2619-09-29T10:17:52" +ik[9820] = 90 +il[9820] = -74 +im[9820] = 0.1687 +ij[9820] = 6 +id[9821] = "2619-10-16T23:50:47" +ik[9821] = 0.14 +il[9821] = -28 +im[9821] = 0.1151 +ij[9821] = 27.4 +id[9822] = "2619-10-22T20:17:17" +ik[9822] = 6.47 +il[9822] = -15 +im[9822] = 0.2178 +ij[9822] = 28.6 +id[9823] = "2619-11-19T09:09:59" +ik[9823] = 0 +il[9823] = 63 +im[9823] = 0.2933 +ij[9823] = 13 +id[9824] = "2619-12-06T18:37:41" +ik[9824] = 0.5613 +il[9824] = 59 +im[9824] = 0.5614 +ij[9824] = 2 +id[9825] = "2619-12-11T03:11:31" +ik[9825] = 0.66 +il[9825] = 73 +im[9825] = 0.2821 +ij[9825] = 11 +id[9826] = "2619-12-27T15:20:44" +ik[9826] = 2.172 +il[9826] = 102 +im[9826] = 0.1912 +ij[9826] = 28.6 +id[9827] = "2619-12-31T13:54:44" +ik[9827] = 42.2 +il[9827] = 108 +im[9827] = 0.4484 +ij[9827] = 7.1542 +id[9828] = "2620-01-22T07:37:00" +ik[9828] = 0.701 +il[9828] = 148 +im[9828] = 0.0657 +ij[9828] = 27.1 +id[9829] = "2620-02-01T02:55:29" +ik[9829] = 73.74 +il[9829] = 170 +im[9829] = 0.2759 +ij[9829] = 14 +id[9830] = "2620-02-08T04:35:45" +ik[9830] = 4.312 +il[9830] = -174 +im[9830] = 0.0728 +ij[9830] = 28.7 +id[9831] = "2620-02-20T07:56:21" +ik[9831] = 90 +il[9831] = -143 +im[9831] = 0.0546 +ij[9831] = 5 +id[9832] = "2620-03-21T21:20:07" +ik[9832] = 2.47 +il[9832] = -47 +im[9832] = 0.0221 +ij[9832] = 27.3 +id[9833] = "2620-03-28T02:40:24" +ik[9833] = 1.222 +il[9833] = -28 +im[9833] = 0.1407 +ij[9833] = 28.5 +id[9834] = "2620-04-09T19:43:14" +ik[9834] = 0.153 +il[9834] = 12 +im[9834] = 0.103 +ij[9834] = 27.5 +id[9835] = "2620-05-08T13:57:50" +ik[9835] = 54.125 +il[9835] = 101 +im[9835] = 0.0652 +ij[9835] = 8 +id[9836] = "2620-05-25T08:46:38" +ik[9836] = 3.924 +il[9836] = 152 +im[9836] = 0.076 +ij[9836] = 27.6 +id[9837] = "2620-06-07T03:07:55" +ik[9837] = 0.065 +il[9837] = -169 +im[9837] = 0.0486 +ij[9837] = 28.8 +id[9838] = "2620-07-02T15:54:35" +ik[9838] = 5.6 +il[9838] = -91 +im[9838] = 0.0432 +ij[9838] = 27.2 +id[9839] = "2620-07-09T05:36:40" +ik[9839] = 2.372 +il[9839] = -71 +im[9839] = 0.0712 +ij[9839] = 28.1 +id[9840] = "2620-07-19T15:15:50" +ik[9840] = 0.17 +il[9840] = -40 +im[9840] = 0.0227 +ij[9840] = 27.91 +id[9841] = "2620-09-25T04:13:26" +ik[9841] = 1.39 +il[9841] = 147 +im[9841] = 0.0874 +ij[9841] = 12 +id[9842] = "2620-11-16T10:48:33" +ik[9842] = 4.26 +il[9842] = 124 +im[9842] = 0.0219 +ij[9842] = 27.4 +id[9843] = "2620-11-30T23:47:28" +ik[9843] = 1.907 +il[9843] = 168 +im[9843] = 0.046 +ij[9843] = 28.6 +id[9844] = "2620-12-11T04:41:22" +ik[9844] = 0.727 +il[9844] = -161 +im[9844] = 0.0898 +ij[9844] = 28.7 +id[9845] = "2621-01-10T05:29:54" +ik[9845] = 0.26 +il[9845] = -69 +im[9845] = 0.0996 +ij[9845] = 27.3 +id[9846] = "2621-01-28T01:56:34" +ik[9846] = 1.069 +il[9846] = -14 +im[9846] = 0.0855 +ij[9846] = 27.5 +id[9847] = "2621-02-16T17:25:09" +ik[9847] = 0.357 +il[9847] = 47 +im[9847] = 0.0044 +ij[9847] = 28.5 +id[9848] = "2621-02-24T20:50:18" +ik[9848] = 53.831 +il[9848] = 73 +im[9848] = 0.1149 +ij[9848] = 9 +id[9849] = "2621-03-14T01:10:05" +ik[9849] = 1.67 +il[9849] = 127 +im[9849] = 0.1129 +ij[9849] = 27.6 +id[9850] = "2621-03-30T07:41:31" +ik[9850] = 3.14 +il[9850] = 178 +im[9850] = 0.0806 +ij[9850] = 28.8 +id[9851] = "2621-04-23T11:38:20" +ik[9851] = 1.849 +il[9851] = -107 +im[9851] = 0.16 +ij[9851] = 27.2 +id[9852] = "2621-05-08T20:44:07" +ik[9852] = 90 +il[9852] = -59 +im[9852] = 0.2164 +ij[9852] = 6 +id[9853] = "2621-06-24T02:55:56" +ik[9853] = 0 +il[9853] = 72 +im[9853] = 0.3281 +ij[9853] = 13 +id[9854] = "2621-07-05T17:49:33" +ik[9854] = 0.4929 +il[9854] = 96 +im[9854] = 0.493 +ij[9854] = 2 +id[9855] = "2621-07-16T19:37:55" +ik[9855] = 4.56 +il[9855] = 75 +im[9855] = 0.4574 +ij[9855] = 11 +id[9856] = "2621-08-08T02:59:31" +ik[9856] = 45 +il[9856] = 111 +im[9856] = 0.0789 +ij[9856] = 7.1662 +id[9857] = "2621-09-10T17:07:16" +ik[9857] = 78.59 +il[9857] = 177 +im[9857] = 0.2318 +ij[9857] = 14 +id[9858] = "2621-09-25T05:57:49" +ik[9858] = 90 +il[9858] = -145 +im[9858] = 0.2098 +ij[9858] = 5 +id[9859] = "2621-12-08T07:44:33" +ik[9859] = 53.921 +il[9859] = 82 +im[9859] = 0.1152 +ij[9859] = 8 +id[9860] = "2622-01-09T00:52:07" +ik[9860] = 4.286 +il[9860] = -179 +im[9860] = 0.1099 +ij[9860] = 27.1 +id[9861] = "2622-01-23T11:39:07" +ik[9861] = 0.245 +il[9861] = -133 +im[9861] = 0.0937 +ij[9861] = 28.6 +id[9862] = "2622-01-27T01:15:10" +ik[9862] = 0.756 +il[9862] = -122 +im[9862] = 0.0804 +ij[9862] = 28.7 +id[9863] = "2622-02-01T21:28:48" +ik[9863] = 2.084 +il[9863] = -104 +im[9863] = 0.0262 +ij[9863] = 28.1 +id[9864] = "2622-02-24T03:25:27" +ik[9864] = 0.742 +il[9864] = -35 +im[9864] = 0.0881 +ij[9864] = 27.3 +id[9865] = "2622-03-13T17:48:34" +ik[9865] = 0.729 +il[9865] = 19 +im[9865] = 0.0796 +ij[9865] = 27.5 +id[9866] = "2622-05-09T22:39:21" +ik[9866] = 0.77 +il[9866] = 179 +im[9866] = 0.0837 +ij[9866] = 12 +id[9867] = "2622-06-19T18:04:27" +ik[9867] = 0.189 +il[9867] = 114 +im[9867] = 0.0588 +ij[9867] = 27.9 +id[9868] = "2622-07-16T08:48:20" +ik[9868] = 0.616 +il[9868] = -163 +im[9868] = 0.0013 +ij[9868] = 28.1 +id[9869] = "2622-08-13T00:01:00" +ik[9869] = 4.346 +il[9869] = -78 +im[9869] = 0.0505 +ij[9869] = 28.1 +id[9870] = "2622-09-24T21:50:47" +ik[9870] = 54.165 +il[9870] = 53 +im[9870] = 0.1065 +ij[9870] = 9 +id[9871] = "2622-10-20T14:50:47" +ik[9871] = 2.566 +il[9871] = 131 +im[9871] = 0.1184 +ij[9871] = 27.4 +id[9872] = "2622-11-19T01:38:47" +ik[9872] = 0.603 +il[9872] = -139 +im[9872] = 0.1358 +ij[9872] = 28.4 +id[9873] = "2622-11-24T21:59:45" +ik[9873] = 2.428 +il[9873] = -121 +im[9873] = 0.1253 +ij[9873] = 28.7 +id[9874] = "2622-12-01T19:12:51" +ik[9874] = 2.994 +il[9874] = -100 +im[9874] = 0.1318 +ij[9874] = 28.6 +id[9875] = "2622-12-13T20:40:35" +ik[9875] = 90 +il[9875] = -62 +im[9875] = 0.0211 +ij[9875] = 6 +id[9876] = "2622-12-21T09:32:34" +ik[9876] = 0.698 +il[9876] = -40 +im[9876] = 0.2266 +ij[9876] = 27.3 +id[9877] = "2623-01-18T16:42:39" +ik[9877] = 2.041 +il[9877] = 23 +im[9877] = 0.3384 +ij[9877] = 27.5 +id[9878] = "2623-01-22T17:53:54" +ik[9878] = 3.001 +il[9878] = 48 +im[9878] = 0.2431 +ij[9878] = 27.5 +id[9879] = "2623-02-01T17:07:43" +ik[9879] = 0 +il[9879] = 67 +im[9879] = 0.4666 +ij[9879] = 13 +id[9880] = "2623-02-23T02:08:09" +ik[9880] = 8.52 +il[9880] = 82 +im[9880] = 0.1773 +ij[9880] = 11 +id[9881] = "2623-02-28T13:41:05" +ik[9881] = 0.5572 +il[9881] = 99 +im[9881] = 0.5573 +ij[9881] = 2 +id[9882] = "2623-03-16T00:18:19" +ik[9882] = 42.3 +il[9882] = 117 +im[9882] = 0.3731 +ij[9882] = 7.1585 +id[9883] = "2623-04-14T12:53:54" +ik[9883] = 2.915 +il[9883] = -170 +im[9883] = 0.1811 +ij[9883] = 27.5 +id[9884] = "2623-04-17T07:13:05" +ik[9884] = 74.59 +il[9884] = -179 +im[9884] = 0.0342 +ij[9884] = 14 +id[9885] = "2623-05-05T13:05:03" +ik[9885] = 90 +il[9885] = -133 +im[9885] = 0.0889 +ij[9885] = 5 +id[9886] = "2623-06-06T19:35:57" +ik[9886] = 4.29 +il[9886] = -33 +im[9886] = 0.1317 +ij[9886] = 27.6 +id[9887] = "2623-06-25T23:26:35" +ik[9887] = 0.496 +il[9887] = 26 +im[9887] = 0.1312 +ij[9887] = 28.8 +id[9888] = "2623-06-26T07:45:07" +ik[9888] = 0.962 +il[9888] = 27 +im[9888] = 0.1275 +ij[9888] = 28.5 +id[9889] = "2623-07-17T04:53:41" +ik[9889] = 6.355 +il[9889] = 91 +im[9889] = 0.019 +ij[9889] = 27.2 +id[9890] = "2623-07-18T12:14:48" +ik[9890] = 54.49 +il[9890] = 95 +im[9890] = 0.0454 +ij[9890] = 8 +id[9891] = "2623-12-07T16:06:14" +ik[9891] = 0.19 +il[9891] = 152 +im[9891] = 0.0866 +ij[9891] = 12 +id[9892] = "2624-01-18T17:57:33" +ik[9892] = 0.758 +il[9892] = 94 +im[9892] = 0.0841 +ij[9892] = 28.6 +id[9893] = "2624-01-25T11:56:33" +ik[9893] = 0.055 +il[9893] = 115 +im[9893] = 0.0549 +ij[9893] = 27.3 +id[9894] = "2624-02-12T02:10:47" +ik[9894] = 1.009 +il[9894] = 169 +im[9894] = 0.008 +ij[9894] = 27.5 +id[9895] = "2624-03-04T21:45:38" +ik[9895] = 6.088 +il[9895] = -124 +im[9895] = 0.0864 +ij[9895] = 28.1 +id[9896] = "2624-03-27T00:19:50" +ik[9896] = 2.46 +il[9896] = -55 +im[9896] = 0.0466 +ij[9896] = 27.6 +id[9897] = "2624-04-16T22:31:59" +ik[9897] = 2.304 +il[9897] = 11 +im[9897] = 0.0843 +ij[9897] = 28.8 +id[9898] = "2624-05-03T15:41:00" +ik[9898] = 3.287 +il[9898] = 63 +im[9898] = 0.1085 +ij[9898] = 27.2 +id[9899] = "2624-05-07T12:21:56" +ik[9899] = 54.468 +il[9899] = 75 +im[9899] = 0.1042 +ij[9899] = 9 +id[9900] = "2624-05-16T13:18:46" +ik[9900] = 1.95 +il[9900] = 104 +im[9900] = 0.084 +ij[9900] = 28.5 +id[9901] = "2624-07-16T03:39:51" +ik[9901] = 90 +il[9901] = -71 +im[9901] = 0.1541 +ij[9901] = 6 +id[9902] = "2624-08-16T17:44:00" +ik[9902] = 3.362 +il[9902] = 15 +im[9902] = 0.2984 +ij[9902] = 27.7 +id[9903] = "2624-09-03T07:13:32" +ik[9903] = 0 +il[9903] = 58 +im[9903] = 0.3355 +ij[9903] = 13 +id[9904] = "2624-09-23T13:43:58" +ik[9904] = 7.777 +il[9904] = 109 +im[9904] = 0.4122 +ij[9904] = 27.7 +id[9905] = "2624-09-25T14:16:48" +ik[9905] = 8.6 +il[9905] = 114 +im[9905] = 0.5272 +ij[9905] = 11 +id[9906] = "2624-09-26T14:47:52" +ik[9906] = 0.5429 +il[9906] = 83 +im[9906] = 0.5429 +ij[9906] = 2 +id[9907] = "2624-10-16T18:28:09" +ik[9907] = 43.47 +il[9907] = 106 +im[9907] = 0.0314 +ij[9907] = 7.1613 +id[9908] = "2624-11-18T08:05:51" +ik[9908] = 76.04 +il[9908] = -170 +im[9908] = 0.2328 +ij[9908] = 14 +id[9909] = "2624-12-05T05:57:50" +ik[9909] = 90 +il[9909] = -148 +im[9909] = 0.2035 +ij[9909] = 5 +id[9910] = "2625-01-21T06:43:40" +ik[9910] = 3.279 +il[9910] = -2 +im[9910] = 0.1469 +ij[9910] = 27.1 +id[9911] = "2625-02-19T20:37:40" +ik[9911] = 1.197 +il[9911] = 90 +im[9911] = 0.1236 +ij[9911] = 28.7 +id[9912] = "2625-02-21T04:07:44" +ik[9912] = 53.729 +il[9912] = 94 +im[9912] = 0.1137 +ij[9912] = 8 +id[9913] = "2625-02-27T05:06:00" +ik[9913] = 1.656 +il[9913] = 113 +im[9913] = 0.0157 +ij[9913] = 28.4 +id[9914] = "2625-03-10T00:41:27" +ik[9914] = 1.288 +il[9914] = 147 +im[9914] = 0.0671 +ij[9914] = 27.3 +id[9915] = "2625-03-11T18:35:08" +ik[9915] = 0.644 +il[9915] = 152 +im[9915] = 0.0339 +ij[9915] = 28.6 +id[9916] = "2625-03-27T21:34:47" +ik[9916] = 0.458 +il[9916] = -157 +im[9916] = 0.0164 +ij[9916] = 27.5 +id[9917] = "2625-03-31T15:05:36" +ik[9917] = 0.363 +il[9917] = -146 +im[9917] = 0.0667 +ij[9917] = 28.1 +id[9918] = "2625-05-11T02:08:46" +ik[9918] = 3.58 +il[9918] = -22 +im[9918] = 0.0375 +ij[9918] = 27.6 +id[9919] = "2625-06-01T15:46:39" +ik[9919] = 0.742 +il[9919] = 44 +im[9919] = 0.0804 +ij[9919] = 28.8 +id[9920] = "2625-07-16T16:50:52" +ik[9920] = 0.75 +il[9920] = 168 +im[9920] = 0.0708 +ij[9920] = 12 +id[9921] = "2625-09-11T16:18:02" +ik[9921] = 2.893 +il[9921] = 153 +im[9921] = 0.0348 +ij[9921] = 28.1 +id[9922] = "2625-10-17T02:51:38" +ik[9922] = 4.462 +il[9922] = -99 +im[9922] = 0.1023 +ij[9922] = 28.1 +id[9923] = "2625-11-01T23:32:06" +ik[9923] = 3.597 +il[9923] = -51 +im[9923] = 0.0984 +ij[9923] = 27.4 +id[9924] = "2625-12-08T03:39:18" +ik[9924] = 53.602 +il[9924] = 59 +im[9924] = 0.0258 +ij[9924] = 9 +id[9925] = "2625-12-16T00:36:17" +ik[9925] = 1.443 +il[9925] = 84 +im[9925] = 0.1261 +ij[9925] = 28.7 +id[9926] = "2625-12-27T21:51:13" +ik[9926] = 0.613 +il[9926] = 120 +im[9926] = 0.0845 +ij[9926] = 27.3 +id[9927] = "2626-01-15T00:08:47" +ik[9927] = 0.011 +il[9927] = 177 +im[9927] = 0.1454 +ij[9927] = 28.6 +id[9928] = "2626-01-15T16:58:47" +ik[9928] = 0.948 +il[9928] = 179 +im[9928] = 0.1503 +ij[9928] = 27.5 +id[9929] = "2626-02-25T23:35:43" +ik[9929] = 90 +il[9929] = -52 +im[9929] = 0.1667 +ij[9929] = 6 +id[9930] = "2626-03-07T10:39:46" +ik[9930] = 0.83 +il[9930] = -28 +im[9930] = 0.0969 +ij[9930] = 27.6 +id[9931] = "2626-04-13T08:06:19" +ik[9931] = 0 +il[9931] = 74 +im[9931] = 0.3945 +ij[9931] = 13 +id[9932] = "2626-04-27T01:09:41" +ik[9932] = 0.5157 +il[9932] = 65 +im[9932] = 0.5157 +ij[9932] = 2 +id[9933] = "2626-05-06T10:20:38" +ik[9933] = 5.16 +il[9933] = 92 +im[9933] = 0.2778 +ij[9933] = 11 +id[9934] = "2626-05-25T17:09:44" +ik[9934] = 4.88 +il[9934] = 117 +im[9934] = 0.3801 +ij[9934] = 27.6 +id[9935] = "2626-05-27T07:42:56" +ik[9935] = 43.98 +il[9935] = 119 +im[9935] = 0.2743 +ij[9935] = 7.1638 +id[9936] = "2626-06-29T23:39:41" +ik[9936] = 77.65 +il[9936] = -170 +im[9936] = 0.0973 +ij[9936] = 14 +id[9937] = "2626-07-08T00:20:26" +ik[9937] = 1.656 +il[9937] = -156 +im[9937] = 0.1788 +ij[9937] = 28.8 +id[9938] = "2626-07-15T12:57:06" +ik[9938] = 90 +il[9938] = -134 +im[9938] = 0.1417 +ij[9938] = 5 +id[9939] = "2626-09-25T12:04:13" +ik[9939] = 54.395 +il[9939] = 85 +im[9939] = 0.0112 +ij[9939] = 8 +id[9940] = "2626-10-01T13:24:48" +ik[9940] = 0.447 +il[9940] = 104 +im[9940] = 0.1094 +ij[9940] = 28.5 +id[9941] = "2626-12-25T13:54:19" +ik[9941] = 4.95 +il[9941] = 8 +im[9941] = 0.029 +ij[9941] = 27.1 +id[9942] = "2627-02-22T08:41:16" +ik[9942] = 1.36 +il[9942] = 168 +im[9942] = 0.0096 +ij[9942] = 12 +id[9943] = "2627-04-11T07:56:37" +ik[9943] = 2.91 +il[9943] = 128 +im[9943] = 0.043 +ij[9943] = 27.6 +id[9944] = "2627-04-25T08:43:17" +ik[9944] = 4.025 +il[9944] = 172 +im[9944] = 0.0216 +ij[9944] = 28.1 +id[9945] = "2627-05-07T00:58:38" +ik[9945] = 1.828 +il[9945] = -151 +im[9945] = 0.0384 +ij[9945] = 28.8 +id[9946] = "2627-05-12T02:27:53" +ik[9946] = 1.904 +il[9946] = -135 +im[9946] = 0.0609 +ij[9946] = 28.1 +id[9947] = "2627-05-18T06:52:59" +ik[9947] = 4.056 +il[9947] = -116 +im[9947] = 0.0903 +ij[9947] = 27.2 +id[9948] = "2627-07-15T07:48:14" +ik[9948] = 54.645 +il[9948] = 64 +im[9948] = 0.124 +ij[9948] = 9 +id[9949] = "2627-08-28T05:37:32" +ik[9949] = 1.628 +il[9949] = -162 +im[9949] = 0.1482 +ij[9949] = 28.5 +id[9950] = "2627-09-26T22:54:09" +ik[9950] = 90 +il[9950] = -72 +im[9950] = 0.2049 +ij[9950] = 6 +id[9951] = "2627-10-17T15:18:19" +ik[9951] = 0.328 +il[9951] = -19 +im[9951] = 0.1503 +ij[9951] = 27.4 +id[9952] = "2627-11-16T23:40:08" +ik[9952] = 0 +il[9952] = 63 +im[9952] = 0.0732 +ij[9952] = 13 +id[9953] = "2627-12-07T19:19:29" +ik[9953] = 0.5556 +il[9953] = 65 +im[9953] = 0.5557 +ij[9953] = 2 +id[9954] = "2627-12-08T16:24:57" +ik[9954] = 1.06 +il[9954] = 75 +im[9954] = 0.544 +ij[9954] = 11 +id[9955] = "2627-12-29T02:20:53" +ik[9955] = 42.11 +il[9955] = 110 +im[9955] = 0.1723 +ij[9955] = 7.1544 +id[9956] = "2628-01-23T13:05:53" +ik[9956] = 0.838 +il[9956] = 158 +im[9956] = 0.0661 +ij[9956] = 27.1 +id[9957] = "2628-01-29T16:02:36" +ik[9957] = 73.68 +il[9957] = 172 +im[9957] = 0.2418 +ij[9957] = 14 +id[9958] = "2628-02-17T20:11:24" +ik[9958] = 90 +il[9958] = -141 +im[9958] = 0.1934 +ij[9958] = 5 +id[9959] = "2628-03-13T16:49:17" +ik[9959] = 2.032 +il[9959] = -63 +im[9959] = 0.1524 +ij[9959] = 28.7 +id[9960] = "2628-03-21T15:17:26" +ik[9960] = 2.41 +il[9960] = -38 +im[9960] = 0.082 +ij[9960] = 27.3 +id[9961] = "2628-04-09T11:57:26" +ik[9961] = 0.121 +il[9961] = 21 +im[9961] = 0.0598 +ij[9961] = 27.5 +id[9962] = "2628-04-26T16:35:45" +ik[9962] = 0.969 +il[9962] = 74 +im[9962] = 0.0814 +ij[9962] = 28.6 +id[9963] = "2628-05-06T04:36:15" +ik[9963] = 54.108 +il[9963] = 103 +im[9963] = 0.0295 +ij[9963] = 8 +id[9964] = "2628-05-24T23:04:24" +ik[9964] = 3.913 +il[9964] = 161 +im[9964] = 0.0379 +ij[9964] = 27.6 +id[9965] = "2628-06-05T14:33:38" +ik[9965] = 6.183 +il[9965] = -164 +im[9965] = 0.0186 +ij[9965] = 28.1 +id[9966] = "2628-06-21T02:33:38" +ik[9966] = 0.35 +il[9966] = -117 +im[9966] = 0.0244 +ij[9966] = 28.8 +id[9967] = "2628-07-02T05:19:01" +ik[9967] = 5.58 +il[9967] = -83 +im[9967] = 0.0741 +ij[9967] = 27.2 +id[9968] = "2628-07-19T04:24:57" +ik[9968] = 0.189 +il[9968] = -31 +im[9968] = 0.0549 +ij[9968] = 27.91 +id[9969] = "2628-09-22T20:13:55" +ik[9969] = 1.4 +il[9969] = 149 +im[9969] = 0.051 +ij[9969] = 12 +id[9970] = "2628-11-03T17:00:49" +ik[9970] = 0.665 +il[9970] = 94 +im[9970] = 0.0214 +ij[9970] = 28.5 +id[9971] = "2628-11-16T00:08:59" +ik[9971] = 4.247 +il[9971] = 132 +im[9971] = 0.0556 +ij[9971] = 27.4 +id[9972] = "2628-12-14T21:53:51" +ik[9972] = 0.899 +il[9972] = -140 +im[9972] = 0.0782 +ij[9972] = 28.1 +id[9973] = "2629-01-09T00:01:52" +ik[9973] = 0.94 +il[9973] = -63 +im[9973] = 0.0943 +ij[9973] = 28.7 +id[9974] = "2629-01-09T19:16:33" +ik[9974] = 0.266 +il[9974] = -60 +im[9974] = 0.1005 +ij[9974] = 27.3 +id[9975] = "2629-01-27T16:07:13" +ik[9975] = 1.066 +il[9975] = -5 +im[9975] = 0.1019 +ij[9975] = 27.5 +id[9976] = "2629-02-22T09:02:56" +ik[9976] = 53.811 +il[9976] = 75 +im[9976] = 0.0831 +ij[9976] = 9 +id[9977] = "2629-02-28T04:55:29" +ik[9977] = 1.977 +il[9977] = 93 +im[9977] = 0.0997 +ij[9977] = 28.6 +id[9978] = "2629-03-09T22:57:33" +ik[9978] = 1.302 +il[9978] = 124 +im[9978] = 0.1208 +ij[9978] = 28.4 +id[9979] = "2629-03-13T16:10:37" +ik[9979] = 1.636 +il[9979] = 136 +im[9979] = 0.1379 +ij[9979] = 27.6 +id[9980] = "2629-04-14T12:32:15" +ik[9980] = 4.05 +il[9980] = -125 +im[9980] = 0.1473 +ij[9980] = 28.8 +id[9981] = "2629-04-23T08:24:06" +ik[9981] = 1.777 +il[9981] = -97 +im[9981] = 0.1397 +ij[9981] = 27.2 +id[9982] = "2629-05-06T14:27:19" +ik[9982] = 90 +il[9982] = -57 +im[9982] = 0.1263 +ij[9982] = 6 +id[9983] = "2629-06-22T16:03:03" +ik[9983] = 0 +il[9983] = 76 +im[9983] = 0.4107 +ij[9983] = 13 +id[9984] = "2629-07-06T21:43:40" +ik[9984] = 0.4989 +il[9984] = 61 +im[9984] = 0.499 +ij[9984] = 2 +id[9985] = "2629-07-14T12:27:21" +ik[9985] = 4.28 +il[9985] = 83 +im[9985] = 0.1764 +ij[9985] = 11 +id[9986] = "2629-08-05T17:09:38" +ik[9986] = 44.05 +il[9986] = 114 +im[9986] = 0.2946 +ij[9986] = 7.1666 +id[9987] = "2629-09-08T11:07:23" +ik[9987] = 77.79 +il[9987] = 180 +im[9987] = 0.1158 +ij[9987] = 14 +id[9988] = "2629-09-22T22:12:35" +ik[9988] = 90 +il[9988] = -142 +im[9988] = 0.0984 +ij[9988] = 5 +id[9989] = "2629-12-05T21:08:17" +ik[9989] = 53.937 +il[9989] = 85 +im[9989] = 0.0473 +ij[9989] = 8 +id[9990] = "2630-01-08T14:52:59" +ik[9990] = 4.31 +il[9990] = -172 +im[9990] = 0.0976 +ij[9990] = 27.1 +id[9991] = "2630-01-12T12:58:53" +ik[9991] = 0.441 +il[9991] = -158 +im[9991] = 0.1048 +ij[9991] = 28.5 +id[9992] = "2630-02-23T16:50:46" +ik[9992] = 0.732 +il[9992] = -26 +im[9992] = 0.0864 +ij[9992] = 27.3 +id[9993] = "2630-02-24T23:18:40" +ik[9993] = 0.067 +il[9993] = -22 +im[9993] = 0.09 +ij[9993] = 28.7 +id[9994] = "2630-03-13T07:02:46" +ik[9994] = 0.733 +il[9994] = 28 +im[9994] = 0.09 +ij[9994] = 27.5 +id[9995] = "2630-05-07T14:35:31" +ik[9995] = 0.82 +il[9995] = 179 +im[9995] = 0.05 +ij[9995] = 12 +id[9996] = "2630-06-15T12:27:38" +ik[9996] = 3.071 +il[9996] = 111 +im[9996] = 0.043 +ij[9996] = 28.1 +id[9997] = "2630-06-19T09:43:46" +ik[9997] = 0.113 +il[9997] = 123 +im[9997] = 0.0272 +ij[9997] = 27.9 +id[9998] = "2630-07-23T11:26:18" +ik[9998] = 3.157 +il[9998] = -131 +im[9998] = 0.0822 +ij[9998] = 28.1 +id[9999] = "2630-09-22T12:39:52" +ik[9999] = 54.188 +il[9999] = 55 +im[9999] = 0.1054 +ij[9999] = 9 +id[10000] = "2630-10-20T07:21:52" +ik[10000] = 2.523 +il[10000] = 140 +im[10000] = 0.0843 +ij[10000] = 27.4 +id[10001] = "2630-12-10T17:43:35" +ik[10001] = 2.109 +il[10001] = -62 +im[10001] = 0.1951 +ij[10001] = 28.5 +id[10002] = "2630-12-11T08:02:34" +ik[10002] = 90 +il[10002] = -60 +im[10002] = 0.1807 +ij[10002] = 6 +id[10003] = "2630-12-21T15:54:19" +ik[10003] = 0.646 +il[10003] = -31 +im[10003] = 0.2319 +ij[10003] = 27.3 +id[10004] = "2631-01-01T00:38:18" +ik[10004] = 0.343 +il[10004] = -7 +im[10004] = 0.1385 +ij[10004] = 28.7 +id[10005] = "2631-01-20T12:40:52" +ik[10005] = 2.829 +il[10005] = 34 +im[10005] = 0.3739 +ij[10005] = 27.5 +id[10006] = "2631-01-30T11:07:50" +ik[10006] = 0 +il[10006] = 72 +im[10006] = 0.2977 +ij[10006] = 13 +id[10007] = "2631-02-20T14:48:28" +ik[10007] = 8.4 +il[10007] = 84 +im[10007] = 0.278 +ij[10007] = 11 +id[10008] = "2631-03-01T15:09:42" +ik[10008] = 0.5407 +il[10008] = 104 +im[10008] = 0.5408 +ij[10008] = 2 +id[10009] = "2631-03-13T10:12:24" +ik[10009] = 41.96 +il[10009] = 119 +im[10009] = 0.3906 +ij[10009] = 7.1583 +id[10010] = "2631-04-14T19:14:05" +ik[10010] = 74.34 +il[10010] = -169 +im[10010] = 0.2158 +ij[10010] = 14 +id[10011] = "2631-04-15T01:44:59" +ik[10011] = 2.653 +il[10011] = -176 +im[10011] = 0.2065 +ij[10011] = 27.5 +id[10012] = "2631-05-03T02:47:40" +ik[10012] = 90 +il[10012] = -130 +im[10012] = 0.0864 +ij[10012] = 5 +id[10013] = "2631-06-06T12:34:37" +ik[10013] = 4.285 +il[10013] = -24 +im[10013] = 0.0961 +ij[10013] = 27.6 +id[10014] = "2631-06-10T03:15:24" +ik[10014] = 0.347 +il[10014] = -13 +im[10014] = 0.1462 +ij[10014] = 28.6 +id[10015] = "2631-06-22T14:31:55" +ik[10015] = 1.423 +il[10015] = 26 +im[10015] = 0.104 +ij[10015] = 28.4 +id[10016] = "2631-07-10T14:52:13" +ik[10016] = 0.267 +il[10016] = 80 +im[10016] = 0.1239 +ij[10016] = 28.8 +id[10017] = "2631-07-16T05:19:00" +ik[10017] = 54.485 +il[10017] = 97 +im[10017] = 0.0516 +ij[10017] = 8 +id[10018] = "2631-07-16T19:40:47" +ik[10018] = 6.324 +il[10018] = 99 +im[10018] = 0.0386 +ij[10018] = 27.2 +id[10019] = "2631-12-05T04:23:31" +ik[10019] = 0.25 +il[10019] = 154 +im[10019] = 0.0651 +ij[10019] = 12 +id[10020] = "2632-01-25T01:11:13" +ik[10020] = 0.047 +il[10020] = 123 +im[10020] = 0.0821 +ij[10020] = 27.3 +id[10021] = "2632-01-30T00:25:03" +ik[10021] = 0.648 +il[10021] = 138 +im[10021] = 0.0103 +ij[10021] = 28.1 +id[10022] = "2632-02-04T00:37:09" +ik[10022] = 0.67 +il[10022] = 154 +im[10022] = 0.0714 +ij[10022] = 28.7 +id[10023] = "2632-02-08T11:49:20" +ik[10023] = 0.318 +il[10023] = 167 +im[10023] = 0.0804 +ij[10023] = 28.5 +id[10024] = "2632-02-11T15:33:26" +ik[10024] = 1.009 +il[10024] = 177 +im[10024] = 0.0399 +ij[10024] = 27.5 +id[10025] = "2632-02-14T11:23:34" +ik[10025] = 3.253 +il[10025] = -174 +im[10025] = 0.0131 +ij[10025] = 28.1 +id[10026] = "2632-03-26T14:06:13" +ik[10026] = 2.44 +il[10026] = -46 +im[10026] = 0.0787 +ij[10026] = 27.6 +id[10027] = "2632-04-12T10:14:00" +ik[10027] = 2.611 +il[10027] = 7 +im[10027] = 0.0431 +ij[10027] = 28.6 +id[10028] = "2632-05-01T00:05:18" +ik[10028] = 2.858 +il[10028] = 65 +im[10028] = 0.0419 +ij[10028] = 28.8 +id[10029] = "2632-05-03T06:26:45" +ik[10029] = 3.259 +il[10029] = 72 +im[10029] = 0.0896 +ij[10029] = 27.2 +id[10030] = "2632-05-05T05:11:54" +ik[10030] = 54.451 +il[10030] = 78 +im[10030] = 0.1151 +ij[10030] = 9 +id[10031] = "2632-07-13T20:14:57" +ik[10031] = 90 +il[10031] = -68 +im[10031] = 0.0106 +ij[10031] = 6 +id[10032] = "2632-08-19T02:35:57" +ik[10032] = 2.774 +il[10032] = 32 +im[10032] = 0.319 +ij[10032] = 27.7 +id[10033] = "2632-08-31T19:14:32" +ik[10033] = 0 +il[10033] = 60 +im[10033] = 0.4349 +ij[10033] = 13 +id[10034] = "2632-09-16T22:35:54" +ik[10034] = 7.777 +il[10034] = 98 +im[10034] = 0.4126 +ij[10034] = 27.7 +id[10035] = "2632-09-23T04:23:31" +ik[10035] = 8.64 +il[10035] = 116 +im[10035] = 0.289 +ij[10035] = 11 +id[10036] = "2632-09-27T18:12:58" +ik[10036] = 0.5411 +il[10036] = 89 +im[10036] = 0.5412 +ij[10036] = 2 +id[10037] = "2632-10-15T01:24:08" +ik[10037] = 44.26 +il[10037] = 109 +im[10037] = 0.2348 +ij[10037] = 7.1614 +id[10038] = "2632-11-16T00:40:55" +ik[10038] = 76.23 +il[10038] = -170 +im[10038] = 0.0636 +ij[10038] = 14 +id[10039] = "2632-12-02T20:12:18" +ik[10039] = 90 +il[10039] = -145 +im[10039] = 0.1005 +ij[10039] = 5 +id[10040] = "2633-01-20T23:16:05" +ik[10040] = 3.323 +il[10040] = 7 +im[10040] = 0.1449 +ij[10040] = 27.1 +id[10041] = "2633-02-18T15:41:15" +ik[10041] = 53.725 +il[10041] = 97 +im[10041] = 0.1099 +ij[10041] = 8 +id[10042] = "2633-03-09T14:59:39" +ik[10042] = 1.268 +il[10042] = 156 +im[10042] = 0.1 +ij[10042] = 27.3 +id[10043] = "2633-03-21T22:49:52" +ik[10043] = 0.007 +il[10043] = -166 +im[10043] = 0.1009 +ij[10043] = 28.7 +id[10044] = "2633-03-27T11:28:59" +ik[10044] = 0.468 +il[10044] = -149 +im[10044] = 0.0502 +ij[10044] = 27.5 +id[10045] = "2633-04-14T06:02:09" +ik[10045] = 0.021 +il[10045] = -94 +im[10045] = 0.0084 +ij[10045] = 28.5 +id[10046] = "2633-05-10T15:28:13" +ik[10046] = 3.57 +il[10046] = -13 +im[10046] = 0.0702 +ij[10046] = 27.6 +id[10047] = "2633-06-03T19:26:49" +ik[10047] = 1.189 +il[10047] = 60 +im[10047] = 0.0823 +ij[10047] = 28.6 +id[10048] = "2633-07-14T11:29:45" +ik[10048] = 0.7 +il[10048] = 168 +im[10048] = 0.017 +ij[10048] = 12 +id[10049] = "2633-09-28T10:43:40" +ik[10049] = 4.013 +il[10049] = -146 +im[10049] = 0.0232 +ij[10049] = 28.1 +id[10050] = "2633-11-01T13:34:45" +ik[10050] = 3.577 +il[10050] = -42 +im[10050] = 0.0916 +ij[10050] = 27.4 +id[10051] = "2633-12-05T14:33:43" +ik[10051] = 53.612 +il[10051] = 61 +im[10051] = 0.1058 +ij[10051] = 9 +id[10052] = "2633-12-27T13:41:26" +ik[10052] = 0.62 +il[10052] = 129 +im[10052] = 0.0438 +ij[10052] = 27.3 +id[10053] = "2634-01-15T10:17:52" +ik[10053] = 0.93 +il[10053] = -172 +im[10053] = 0.1275 +ij[10053] = 27.5 +id[10054] = "2634-01-16T05:11:45" +ik[10054] = 0.572 +il[10054] = -169 +im[10054] = 0.1392 +ij[10054] = 28.7 +id[10055] = "2634-02-23T14:04:20" +ik[10055] = 90 +il[10055] = -49 +im[10055] = 0.0257 +ij[10055] = 6 +id[10056] = "2634-03-07T17:34:09" +ik[10056] = 1.04 +il[10056] = -19 +im[10056] = 0.1666 +ij[10056] = 27.6 +id[10057] = "2634-03-12T07:53:15" +ik[10057] = 4.617 +il[10057] = 3 +im[10057] = 0.0748 +ij[10057] = 28.5 +id[10058] = "2634-04-11T00:41:22" +ik[10058] = 0 +il[10058] = 75 +im[10058] = 0.2211 +ij[10058] = 13 +id[10059] = "2634-04-28T07:53:44" +ik[10059] = 0.5357 +il[10059] = 72 +im[10059] = 0.5358 +ij[10059] = 2 +id[10060] = "2634-05-04T02:16:48" +ik[10060] = 5.44 +il[10060] = 88 +im[10060] = 0.1597 +ij[10060] = 11 +id[10061] = "2634-05-22T16:51:04" +ik[10061] = 2.58 +il[10061] = 118 +im[10061] = 0.4149 +ij[10061] = 27.6 +id[10062] = "2634-05-24T19:30:25" +ik[10062] = 5.75 +il[10062] = 121 +im[10062] = 0.4418 +ij[10062] = 28.5 +id[10063] = "2634-05-25T00:44:57" +ik[10063] = 44 +il[10063] = 122 +im[10063] = 0.4391 +ij[10063] = 7.1636 +id[10064] = "2634-06-27T13:52:42" +ik[10064] = 77.55 +il[10064] = -172 +im[10064] = 0.113 +ij[10064] = 14 +id[10065] = "2634-07-13T05:22:28" +ik[10065] = 90 +il[10065] = -131 +im[10065] = 0.0105 +ij[10065] = 5 +id[10066] = "2634-07-20T03:18:34" +ik[10066] = 1.293 +il[10066] = -110 +im[10066] = 0.1973 +ij[10066] = 28.6 +id[10067] = "2634-07-25T21:26:38" +ik[10067] = 1.496 +il[10067] = -92 +im[10067] = 0.1208 +ij[10067] = 28.8 +id[10068] = "2634-09-23T04:22:11" +ik[10068] = 54.406 +il[10068] = 88 +im[10068] = 0.0856 +ij[10068] = 8 +id[10069] = "2634-12-25T03:19:38" +ik[10069] = 4.97 +il[10069] = 16 +im[10069] = 0.0077 +ij[10069] = 27.1 +id[10070] = "2635-01-12T01:56:12" +ik[10070] = 2.333 +il[10070] = 72 +im[10070] = 0.0299 +ij[10070] = 28.1 +id[10071] = "2635-02-19T18:31:40" +ik[10071] = 1.33 +il[10071] = 168 +im[10071] = 0.0652 +ij[10071] = 12 +id[10072] = "2635-04-10T21:06:03" +ik[10072] = 2.9 +il[10072] = 137 +im[10072] = 0.0099 +ij[10072] = 27.6 +id[10073] = "2635-04-20T17:29:54" +ik[10073] = 2.526 +il[10073] = 168 +im[10073] = 0.0784 +ij[10073] = 28.1 +id[10074] = "2635-05-07T01:08:06" +ik[10074] = 0.995 +il[10074] = -141 +im[10074] = 0.0616 +ij[10074] = 28.5 +id[10075] = "2635-05-17T20:20:58" +ik[10075] = 4.039 +il[10075] = -107 +im[10075] = 0.0994 +ij[10075] = 27.2 +id[10076] = "2635-05-20T15:00:17" +ik[10076] = 2.208 +il[10076] = -98 +im[10076] = 0.0887 +ij[10076] = 28.8 +id[10077] = "2635-05-25T18:10:04" +ik[10077] = 2.173 +il[10077] = -82 +im[10077] = 0.0097 +ij[10077] = 28.6 +id[10078] = "2635-07-13T01:52:52" +ik[10078] = 54.65 +il[10078] = 67 +im[10078] = 0.0798 +ij[10078] = 9 +id[10079] = "2635-08-26T22:53:11" +ik[10079] = 1.871 +il[10079] = -156 +im[10079] = 0.1047 +ij[10079] = 28.4 +id[10080] = "2635-09-24T11:40:10" +ik[10080] = 90 +il[10080] = -69 +im[10080] = 0.1035 +ij[10080] = 6 +id[10081] = "2635-10-18T11:03:38" +ik[10081] = 0.534 +il[10081] = -7 +im[10081] = 0.1788 +ij[10081] = 27.4 +id[10082] = "2635-11-14T13:53:09" +ik[10082] = 0 +il[10082] = 65 +im[10082] = 0.3576 +ij[10082] = 13 +id[10083] = "2635-12-06T05:41:16" +ik[10083] = 1.46 +il[10083] = 78 +im[10083] = 0.437 +ij[10083] = 11 +id[10084] = "2635-12-08T19:34:21" +ik[10084] = 0.5426 +il[10084] = 92 +im[10084] = 0.5427 +ij[10084] = 2 +id[10085] = "2635-12-26T16:00:45" +ik[10085] = 42.09 +il[10085] = 112 +im[10085] = 0.2088 +ij[10085] = 7.1545 +id[10086] = "2636-01-24T11:16:32" +ik[10086] = 0.975 +il[10086] = 168 +im[10086] = 0.1127 +ij[10086] = 27.1 +id[10087] = "2636-01-27T05:09:30" +ik[10087] = 73.64 +il[10087] = 174 +im[10087] = 0.0589 +ij[10087] = 14 +id[10088] = "2636-02-15T08:25:34" +ik[10088] = 90 +il[10088] = -138 +im[10088] = 0.2134 +ij[10088] = 5 +id[10089] = "2636-03-21T09:04:05" +ik[10089] = 2.353 +il[10089] = -29 +im[10089] = 0.1312 +ij[10089] = 27.3 +id[10090] = "2636-04-09T04:02:19" +ik[10090] = 0.093 +il[10090] = 30 +im[10090] = 0.0131 +ij[10090] = 27.5 +id[10091] = "2636-04-15T01:41:05" +ik[10091] = 0.005 +il[10091] = 48 +im[10091] = 0.1286 +ij[10091] = 28.7 +id[10092] = "2636-05-03T19:04:00" +ik[10092] = 54.091 +il[10092] = 106 +im[10092] = 0.1015 +ij[10092] = 8 +id[10093] = "2636-05-24T14:02:58" +ik[10093] = 3.9 +il[10093] = 169 +im[10093] = 0.0041 +ij[10093] = 27.6 +id[10094] = "2636-07-01T18:44:20" +ik[10094] = 5.559 +il[10094] = -74 +im[10094] = 0.0932 +ij[10094] = 27.2 +id[10095] = "2636-07-05T00:20:00" +ik[10095] = 0.644 +il[10095] = -64 +im[10095] = 0.0626 +ij[10095] = 28.8 +id[10096] = "2636-07-12T17:59:51" +ik[10096] = 0.112 +il[10096] = -41 +im[10096] = 0.0661 +ij[10096] = 28.5 +id[10097] = "2636-07-16T07:43:49" +ik[10097] = 0.571 +il[10097] = -30 +im[10097] = 0.0895 +ij[10097] = 28.6 +id[10098] = "2636-09-20T12:23:02" +ik[10098] = 1.41 +il[10098] = 152 +im[10098] = 0.0172 +ij[10098] = 12 +id[10099] = "2636-11-15T13:29:25" +ik[10099] = 4.234 +il[10099] = 141 +im[10099] = 0.081 +ij[10099] = 27.4 +id[10100] = "2636-11-27T18:28:48" +ik[10100] = 0.989 +il[10100] = 178 +im[10100] = 0.0878 +ij[10100] = 28.1 +id[10101] = "2637-01-09T09:10:19" +ik[10101] = 0.272 +il[10101] = -52 +im[10101] = 0.0833 +ij[10101] = 27.3 +id[10102] = "2637-01-27T06:19:12" +ik[10102] = 1.063 +il[10102] = 4 +im[10102] = 0.101 +ij[10102] = 27.5 +id[10103] = "2637-02-08T10:46:42" +ik[10103] = 0.38 +il[10103] = 42 +im[10103] = 0.0913 +ij[10103] = 28.7 +id[10104] = "2637-02-19T21:08:28" +ik[10104] = 53.79 +il[10104] = 77 +im[10104] = 0.0081 +ij[10104] = 9 +id[10105] = "2637-03-13T08:37:49" +ik[10105] = 1.59 +il[10105] = 145 +im[10105] = 0.1383 +ij[10105] = 27.6 +id[10106] = "2637-04-23T05:41:25" +ik[10106] = 1.702 +il[10106] = -88 +im[10106] = 0.1032 +ij[10106] = 27.2 +id[10107] = "2637-05-01T06:55:31" +ik[10107] = 4.664 +il[10107] = -63 +im[10107] = 0.1489 +ij[10107] = 28.8 +id[10108] = "2637-05-04T08:09:39" +ik[10108] = 90 +il[10108] = -54 +im[10108] = 0.0434 +ij[10108] = 6 +id[10109] = "2637-05-31T20:03:41" +ik[10109] = 3.484 +il[10109] = 19 +im[10109] = 0.1642 +ij[10109] = 28.6 +id[10110] = "2637-06-20T05:09:57" +ik[10110] = 0 +il[10110] = 67 +im[10110] = 0.2746 +ij[10110] = 13 +id[10111] = "2637-07-07T23:16:53" +ik[10111] = 0.4989 +il[10111] = 110 +im[10111] = 0.499 +ij[10111] = 2 +id[10112] = "2637-07-12T05:16:48" +ik[10112] = 3.99 +il[10112] = 122 +im[10112] = 0.2426 +ij[10112] = 11 +id[10113] = "2637-07-12T22:41:22" +ik[10113] = 3.756 +il[10113] = 93 +im[10113] = 0.1622 +ij[10113] = 28.6 +id[10114] = "2637-08-03T04:16:32" +ik[10114] = 43.96 +il[10114] = 116 +im[10114] = 0.4198 +ij[10114] = 7.1666 +id[10115] = "2637-08-20T07:01:12" +ik[10115] = 4.733 +il[10115] = 147 +im[10115] = 0.2243 +ij[10115] = 28.6 +id[10116] = "2637-09-06T04:01:16" +ik[10116] = 77.95 +il[10116] = -177 +im[10116] = 0.0866 +ij[10116] = 14 +id[10117] = "2637-09-11T12:05:45" +ik[10117] = 3.364 +il[10117] = -164 +im[10117] = 0.1832 +ij[10117] = 28.5 +id[10118] = "2637-09-20T14:30:00" +ik[10118] = 90 +il[10118] = -139 +im[10118] = 0.0779 +ij[10118] = 5 +id[10119] = "2637-12-03T10:35:35" +ik[10119] = 53.952 +il[10119] = 87 +im[10119] = 0.0487 +ij[10119] = 8 +id[10120] = "2637-12-29T20:59:34" +ik[10120] = 1.224 +il[10120] = 170 +im[10120] = 0.0968 +ij[10120] = 28.4 +id[10121] = "2638-01-08T04:49:25" +ik[10121] = 4.334 +il[10121] = -161 +im[10121] = 0.0678 +ij[10121] = 27.1 +id[10122] = "2638-02-23T06:12:58" +ik[10122] = 0.721 +il[10122] = -18 +im[10122] = 0.0697 +ij[10122] = 27.3 +id[10123] = "2638-03-12T20:18:19" +ik[10123] = 0.738 +il[10123] = 37 +im[10123] = 0.084 +ij[10123] = 27.5 +id[10124] = "2638-03-27T04:45:24" +ik[10124] = 0.577 +il[10124] = 70 +im[10124] = 0.0851 +ij[10124] = 28.7 +id[10125] = "2638-05-05T06:23:02" +ik[10125] = 0.87 +il[10125] = 179 +im[10125] = 0.0172 +ij[10125] = 12 +id[10126] = "2638-06-09T05:52:13" +ik[10126] = 1.742 +il[10126] = 101 +im[10126] = 0.0663 +ij[10126] = 28.8 +id[10127] = "2638-06-19T00:12:48" +ik[10127] = 0.251 +il[10127] = 132 +im[10127] = 0.0138 +ij[10127] = 27.9 +id[10128] = "2638-06-30T05:43:09" +ik[10128] = 1.893 +il[10128] = 167 +im[10128] = 0.0798 +ij[10128] = 28.1 +id[10129] = "2638-07-06T19:06:57" +ik[10129] = 1.11 +il[10129] = -173 +im[10129] = 0.0333 +ij[10129] = 28.6 +id[10130] = "2638-08-11T22:32:26" +ik[10130] = 0.118 +il[10130] = -61 +im[10130] = 0.1018 +ij[10130] = 28.5 +id[10131] = "2638-09-20T03:39:37" +ik[10131] = 54.211 +il[10131] = 58 +im[10131] = 0.0347 +ij[10131] = 9 +id[10132] = "2638-10-20T00:00:05" +ik[10132] = 2.479 +il[10132] = 149 +im[10132] = 0.0377 +ij[10132] = 27.4 +id[10133] = "2638-12-08T19:20:07" +ik[10133] = 90 +il[10133] = -58 +im[10133] = 0.222 +ij[10133] = 6 +id[10134] = "2638-12-22T00:20:05" +ik[10134] = 0.581 +il[10134] = -22 +im[10134] = 0.2303 +ij[10134] = 27.3 +id[10135] = "2639-01-21T23:07:04" +ik[10135] = 4.027 +il[10135] = 43 +im[10135] = 0.4099 +ij[10135] = 27.5 +id[10136] = "2639-01-27T04:01:43" +ik[10136] = 0 +il[10136] = 78 +im[10136] = 0.1625 +ij[10136] = 13 +id[10137] = "2639-02-17T12:36:19" +ik[10137] = 0.5385 +il[10137] = 76 +im[10137] = 0.5385 +ij[10137] = 2 +id[10138] = "2639-02-18T03:25:55" +ik[10138] = 8.26 +il[10138] = 87 +im[10138] = 0.5327 +ij[10138] = 11 +id[10139] = "2639-03-11T05:06:18" +ik[10139] = 43.04 +il[10139] = 122 +im[10139] = 0.1531 +ij[10139] = 7.1576 +id[10140] = "2639-04-12T05:28:06" +ik[10140] = 75.06 +il[10140] = -175 +im[10140] = 0.243 +ij[10140] = 14 +id[10141] = "2639-04-15T11:46:18" +ik[10141] = 2.424 +il[10141] = -167 +im[10141] = 0.2332 +ij[10141] = 27.5 +id[10142] = "2639-04-30T16:19:41" +ik[10142] = 90 +il[10142] = -128 +im[10142] = 0.2014 +ij[10142] = 5 +id[10143] = "2639-05-06T19:58:04" +ik[10143] = 0.142 +il[10143] = -109 +im[10143] = 0.0261 +ij[10143] = 28.7 +id[10144] = "2639-06-06T07:10:47" +ik[10144] = 4.27 +il[10144] = -15 +im[10144] = 0.0525 +ij[10144] = 27.6 +id[10145] = "2639-07-13T22:19:38" +ik[10145] = 54.478 +il[10145] = 100 +im[10145] = 0.1169 +ij[10145] = 8 +id[10146] = "2639-07-16T10:24:46" +ik[10146] = 6.293 +il[10146] = 108 +im[10146] = 0.0841 +ij[10146] = 27.2 +id[10147] = "2639-07-25T00:25:55" +ik[10147] = 0.041 +il[10147] = 134 +im[10147] = 0.0935 +ij[10147] = 28.8 +id[10148] = "2639-08-28T09:33:41" +ik[10148] = 0.251 +il[10148] = -121 +im[10148] = 0.0824 +ij[10148] = 28.6 +id[10149] = "2639-10-22T11:45:10" +ik[10149] = 0.106 +il[10149] = 49 +im[10149] = 0.0732 +ij[10149] = 28.5 +id[10150] = "2639-10-25T00:20:52" +ik[10150] = 1.125 +il[10150] = 57 +im[10150] = 0.0878 +ij[10150] = 28.1 +id[10151] = "2639-12-02T16:49:26" +ik[10151] = 0.31 +il[10151] = 156 +im[10151] = 0.0081 +ij[10151] = 12 +id[10152] = "2640-01-11T12:44:21" +ik[10152] = 0.798 +il[10152] = 103 +im[10152] = 0.0726 +ij[10152] = 28.4 +id[10153] = "2640-01-24T14:26:18" +ik[10153] = 0.04 +il[10153] = 132 +im[10153] = 0.0931 +ij[10153] = 27.3 +id[10154] = "2640-01-26T19:47:16" +ik[10154] = 2.603 +il[10154] = 138 +im[10154] = 0.0819 +ij[10154] = 28.1 +id[10155] = "2640-02-11T04:52:32" +ik[10155] = 1.009 +il[10155] = -174 +im[10155] = 0.0701 +ij[10155] = 27.5 +id[10156] = "2640-03-05T09:24:46" +ik[10156] = 0.309 +il[10156] = -102 +im[10156] = 0.0652 +ij[10156] = 28.7 +id[10157] = "2640-03-26T03:52:39" +ik[10157] = 2.42 +il[10157] = -37 +im[10157] = 0.0973 +ij[10157] = 27.6 +id[10158] = "2640-05-02T21:19:38" +ik[10158] = 3.23 +il[10158] = 81 +im[10158] = 0.0548 +ij[10158] = 27.2 +id[10159] = "2640-05-02T21:54:46" +ik[10159] = 54.433 +il[10159] = 81 +im[10159] = 0.0554 +ij[10159] = 9 +id[10160] = "2640-05-15T04:59:31" +ik[10160] = 3.16 +il[10160] = 119 +im[10160] = 0.0357 +ij[10160] = 28.8 +id[10161] = "2640-07-02T10:57:21" +ik[10161] = 0.561 +il[10161] = -93 +im[10161] = 0.1145 +ij[10161] = 28.6 +id[10162] = "2640-07-11T12:57:08" +ik[10162] = 90 +il[10162] = -65 +im[10162] = 0.1434 +ij[10162] = 6 +id[10163] = "2640-08-26T04:59:39" +ik[10163] = 2.823 +il[10163] = 64 +im[10163] = 0.0291 +ij[10163] = 27.7 +id[10164] = "2640-08-30T05:28:33" +ik[10164] = 0 +il[10164] = 65 +im[10164] = 0.3126 +ij[10164] = 13 +id[10165] = "2640-09-20T18:38:52" +ik[10165] = 8.67 +il[10165] = 76 +im[10165] = 0.1693 +ij[10165] = 11 +id[10166] = "2640-09-29T00:45:31" +ik[10166] = 0.5265 +il[10166] = 95 +im[10166] = 0.5265 +ij[10166] = 2 +id[10167] = "2640-10-12T04:31:07" +ik[10167] = 42.96 +il[10167] = 111 +im[10167] = 0.4122 +ij[10167] = 7.162 +id[10168] = "2640-11-13T18:14:50" +ik[10168] = 75.53 +il[10168] = -170 +im[10168] = 0.1403 +ij[10168] = 14 +id[10169] = "2640-11-30T10:29:25" +ik[10169] = 90 +il[10169] = -143 +im[10169] = 0.0802 +ij[10169] = 5 +id[10170] = "2640-12-28T09:50:58" +ik[10170] = 1.293 +il[10170] = -56 +im[10170] = 0.1116 +ij[10170] = 28.5 +id[10171] = "2641-01-20T15:36:58" +ik[10171] = 3.366 +il[10171] = 16 +im[10171] = 0.1206 +ij[10171] = 27.1 +id[10172] = "2641-02-16T03:11:13" +ik[10172] = 53.721 +il[10172] = 99 +im[10172] = 0.0325 +ij[10172] = 8 +id[10173] = "2641-03-09T05:14:45" +ik[10173] = 1.248 +il[10173] = 165 +im[10173] = 0.1141 +ij[10173] = 27.3 +id[10174] = "2641-03-27T01:20:05" +ik[10174] = 0.478 +il[10174] = -140 +im[10174] = 0.078 +ij[10174] = 27.5 +id[10175] = "2641-04-21T19:30:25" +ik[10175] = 0.733 +il[10175] = -61 +im[10175] = 0.0866 +ij[10175] = 28.7 +id[10176] = "2641-05-10T04:47:35" +ik[10176] = 3.56 +il[10176] = -5 +im[10176] = 0.0896 +ij[10176] = 27.6 +id[10177] = "2641-05-20T16:46:07" +ik[10177] = 0.464 +il[10177] = 27 +im[10177] = 0.0742 +ij[10177] = 28.1 +id[10178] = "2641-07-12T06:08:38" +ik[10178] = 0.66 +il[10178] = 168 +im[10178] = 0.0483 +ij[10178] = 12 +id[10179] = "2641-08-18T08:48:54" +ik[10179] = 0.129 +il[10179] = 98 +im[10179] = 0.0729 +ij[10179] = 28.6 +id[10180] = "2641-09-07T05:58:42" +ik[10180] = 3.816 +il[10180] = 160 +im[10180] = 0.0821 +ij[10180] = 28.1 +id[10181] = "2641-11-01T03:40:58" +ik[10181] = 3.556 +il[10181] = -34 +im[10181] = 0.0716 +ij[10181] = 27.4 +id[10182] = "2641-11-23T13:17:41" +ik[10182] = 1.678 +il[10182] = 33 +im[10182] = 0.0898 +ij[10182] = 28.5 +id[10183] = "2641-12-03T01:31:41" +ik[10183] = 53.623 +il[10183] = 64 +im[10183] = 0.1131 +ij[10183] = 9 +id[10184] = "2641-12-27T05:38:45" +ik[10184] = 0.626 +il[10184] = 138 +im[10184] = 0.008 +ij[10184] = 27.3 +id[10185] = "2642-01-15T03:51:11" +ik[10185] = 0.911 +il[10185] = -163 +im[10185] = 0.0865 +ij[10185] = 27.5 +id[10186] = "2642-01-18T06:29:39" +ik[10186] = 1.179 +il[10186] = -153 +im[10186] = 0.1458 +ij[10186] = 28.4 +id[10187] = "2642-02-19T17:04:07" +ik[10187] = 2.099 +il[10187] = -51 +im[10187] = 0.1896 +ij[10187] = 28.7 +id[10188] = "2642-02-21T04:21:27" +ik[10188] = 90 +il[10188] = -47 +im[10188] = 0.1572 +ij[10188] = 6 +id[10189] = "2642-03-08T02:34:28" +ik[10189] = 1.26 +il[10189] = -10 +im[10189] = 0.2157 +ij[10189] = 27.6 +id[10190] = "2642-04-08T18:15:18" +ik[10190] = 0 +il[10190] = 76 +im[10190] = 0.0973 +ij[10190] = 13 +id[10191] = "2642-04-29T11:11:59" +ik[10191] = 0.5433 +il[10191] = 77 +im[10191] = 0.5433 +ij[10191] = 2 +id[10192] = "2642-05-01T18:02:52" +ik[10192] = 5.71 +il[10192] = 89 +im[10192] = 0.4704 +ij[10192] = 11 +id[10193] = "2642-05-18T08:16:18" +ik[10193] = 0.37 +il[10193] = 118 +im[10193] = 0.0557 +ij[10193] = 27.6 +id[10194] = "2642-05-22T18:20:53" +ik[10194] = 44 +il[10194] = 125 +im[10194] = 0.3403 +ij[10194] = 7.1635 +id[10195] = "2642-06-25T04:10:39" +ik[10195] = 77.41 +il[10195] = -169 +im[10195] = 0.2532 +ij[10195] = 14 +id[10196] = "2642-07-10T21:43:25" +ik[10196] = 90 +il[10196] = -128 +im[10196] = 0.1551 +ij[10196] = 5 +id[10197] = "2642-08-10T23:33:30" +ik[10197] = 1.034 +il[10197] = -34 +im[10197] = 0.0841 +ij[10197] = 28.8 +id[10198] = "2642-09-20T20:47:16" +ik[10198] = 54.418 +il[10198] = 91 +im[10198] = 0.1194 +ij[10198] = 8 +id[10199] = "2642-10-09T18:55:55" +ik[10199] = 0.842 +il[10199] = 149 +im[10199] = 0.0711 +ij[10199] = 28.6 +id[10200] = "2642-12-22T17:43:17" +ik[10200] = 1.775 +il[10200] = 19 +im[10200] = 0.0698 +ij[10200] = 28.1 +id[10201] = "2642-12-24T16:40:31" +ik[10201] = 4.991 +il[10201] = 25 +im[10201] = 0.0431 +ij[10201] = 27.1 +id[10202] = "2643-02-17T04:22:04" +ik[10202] = 1.31 +il[10202] = -180 +im[10202] = 0.0846 +ij[10202] = 12 +id[10203] = "2643-03-29T17:41:42" +ik[10203] = 2.983 +il[10203] = 120 +im[10203] = 0.0239 +ij[10203] = 28.1 +id[10204] = "2643-03-31T23:02:49" +ik[10204] = 0.349 +il[10204] = 116 +im[10204] = 0.0566 +ij[10204] = 28.7 +id[10205] = "2643-04-10T10:18:15" +ik[10205] = 2.89 +il[10205] = 146 +im[10205] = 0.0285 +ij[10205] = 27.6 +id[10206] = "2643-05-17T09:49:24" +ik[10206] = 4.022 +il[10206] = -98 +im[10206] = 0.0889 +ij[10206] = 27.2 +id[10207] = "2643-06-03T13:07:06" +ik[10207] = 2.4 +il[10207] = -45 +im[10207] = 0.0965 +ij[10207] = 28.8 +id[10208] = "2643-07-10T19:57:30" +ik[10208] = 54.655 +il[10208] = 70 +im[10208] = 0.0163 +ij[10208] = 9 +id[10209] = "2643-08-12T16:23:29" +ik[10209] = 1.632 +il[10209] = 170 +im[10209] = 0.0605 +ij[10209] = 28.6 +id[10210] = "2643-09-22T00:33:15" +ik[10210] = 90 +il[10210] = -67 +im[10210] = 0.0698 +ij[10210] = 6 +id[10211] = "2643-10-19T12:45:24" +ik[10211] = 0.76 +il[10211] = 6 +im[10211] = 0.1946 +ij[10211] = 27.4 +id[10212] = "2643-11-12T04:11:05" +ik[10212] = 0 +il[10212] = 67 +im[10212] = 0.4102 +ij[10212] = 13 +id[10213] = "2643-11-26T16:20:52" +ik[10213] = 0.5637 +il[10213] = 100 +im[10213] = 0.5638 +ij[10213] = 2 +id[10214] = "2643-12-03T19:00:28" +ik[10214] = 1.85 +il[10214] = 120 +im[10214] = 0.0396 +ij[10214] = 11 +id[10215] = "2643-12-08T03:38:44" +ik[10215] = 3.672 +il[10215] = 96 +im[10215] = 0.486 +ij[10215] = 27.4 +id[10216] = "2643-12-24T05:17:40" +ik[10216] = 42.05 +il[10216] = 115 +im[10216] = 0.4609 +ij[10216] = 7.1547 +id[10217] = "2644-01-24T18:37:28" +ik[10217] = 73.6 +il[10217] = 177 +im[10217] = 0.1838 +ij[10217] = 14 +id[10218] = "2644-01-25T04:23:11" +ik[10218] = 1.108 +il[10218] = 178 +im[10218] = 0.1639 +ij[10218] = 27.1 +id[10219] = "2644-02-12T20:43:17" +ik[10219] = 90 +il[10219] = -136 +im[10219] = 0.0911 +ij[10219] = 5 +id[10220] = "2644-03-21T02:33:24" +ik[10220] = 2.298 +il[10220] = -20 +im[10220] = 0.1564 +ij[10220] = 27.3 +id[10221] = "2644-04-03T17:04:24" +ik[10221] = 0.793 +il[10221] = 23 +im[10221] = 0.1329 +ij[10221] = 28.5 +id[10222] = "2644-04-08T20:00:31" +ik[10222] = 0.064 +il[10222] = 38 +im[10222] = 0.0485 +ij[10222] = 27.5 +id[10223] = "2644-04-24T14:56:49" +ik[10223] = 0.427 +il[10223] = 87 +im[10223] = 0.0469 +ij[10223] = 28.4 +id[10224] = "2644-05-01T09:24:38" +ik[10224] = 54.074 +il[10224] = 108 +im[10224] = 0.1067 +ij[10224] = 8 +id[10225] = "2644-05-16T23:29:28" +ik[10225] = 1.055 +il[10225] = 156 +im[10225] = 0.1029 +ij[10225] = 28.7 +id[10226] = "2644-05-24T04:18:11" +ik[10226] = 3.89 +il[10226] = 178 +im[10226] = 0.0454 +ij[10226] = 27.6 +id[10227] = "2644-07-01T08:02:59" +ik[10227] = 5.539 +il[10227] = -66 +im[10227] = 0.0947 +ij[10227] = 27.2 +id[10228] = "2644-07-18T21:19:52" +ik[10228] = 0.883 +il[10228] = -12 +im[10228] = 0.0841 +ij[10228] = 28.8 +id[10229] = "2644-07-31T15:54:34" +ik[10229] = 3.046 +il[10229] = 27 +im[10229] = 0.0906 +ij[10229] = 28.1 +id[10230] = "2644-09-18T04:35:02" +ik[10230] = 1.41 +il[10230] = 155 +im[10230] = 0.0721 +ij[10230] = 12 +id[10231] = "2644-11-07T20:53:05" +ik[10231] = 1.679 +il[10231] = 128 +im[10231] = 0.0063 +ij[10231] = 28.1 +id[10232] = "2644-11-15T02:50:44" +ik[10232] = 4.22 +il[10232] = 150 +im[10232] = 0.0926 +ij[10232] = 27.4 +id[10233] = "2645-01-08T23:00:58" +ik[10233] = 0.278 +il[10233] = -43 +im[10233] = 0.0503 +ij[10233] = 27.3 +id[10234] = "2645-01-26T20:35:11" +ik[10234] = 1.06 +il[10234] = 12 +im[10234] = 0.0855 +ij[10234] = 27.5 +id[10235] = "2645-02-17T09:03:19" +ik[10235] = 53.771 +il[10235] = 79 +im[10235] = 0.0957 +ij[10235] = 9 +id[10236] = "2645-02-22T13:49:09" +ik[10236] = 0.718 +il[10236] = 96 +im[10236] = 0.0294 +ij[10236] = 28.5 +id[10237] = "2645-03-11T23:14:12" +ik[10237] = 1.025 +il[10237] = 150 +im[10237] = 0.0939 +ij[10237] = 28.7 +id[10238] = "2645-03-13T00:39:08" +ik[10238] = 1.55 +il[10238] = 154 +im[10238] = 0.1134 +ij[10238] = 27.6 +id[10239] = "2645-04-23T03:34:17" +ik[10239] = 1.624 +il[10239] = -78 +im[10239] = 0.0583 +ij[10239] = 27.2 +id[10240] = "2645-05-02T01:45:47" +ik[10240] = 90 +il[10240] = -51 +im[10240] = 0.1821 +ij[10240] = 6 +id[10241] = "2645-05-21T11:21:43" +ik[10241] = 4.566 +il[10241] = -4 +im[10241] = 0.0419 +ij[10241] = 28.8 +id[10242] = "2645-06-17T18:37:55" +ik[10242] = 0 +il[10242] = 81 +im[10242] = 0.0659 +ij[10242] = 13 +id[10243] = "2645-07-08T23:02:32" +ik[10243] = 0.4949 +il[10243] = 72 +im[10243] = 0.4949 +ij[10243] = 2 +id[10244] = "2645-07-09T22:12:00" +ik[10244] = 3.7 +il[10244] = 83 +im[10244] = 0.4801 +ij[10244] = 11 +id[10245] = "2645-07-18T05:47:02" +ik[10245] = 4.241 +il[10245] = 103 +im[10245] = 0.3578 +ij[10245] = 28.8 +id[10246] = "2645-07-31T21:16:39" +ik[10246] = 44.11 +il[10246] = 119 +im[10246] = 0.2706 +ij[10246] = 7.1665 +id[10247] = "2645-08-12T17:38:49" +ik[10247] = 4.636 +il[10247] = 139 +im[10247] = 0.1248 +ij[10247] = 28.8 +id[10248] = "2645-09-03T20:33:27" +ik[10248] = 78.08 +il[10248] = -174 +im[10248] = 0.2193 +ij[10248] = 14 +id[10249] = "2645-09-18T06:48:18" +ik[10249] = 90 +il[10249] = -136 +im[10249] = 0.2004 +ij[10249] = 5 +id[10250] = "2645-11-22T05:33:12" +ik[10250] = 0.742 +il[10250] = 62 +im[10250] = 0.0239 +ij[10250] = 28.6 +id[10251] = "2645-12-01T00:13:34" +ik[10251] = 53.969 +il[10251] = 90 +im[10251] = 0.1111 +ij[10251] = 8 +id[10252] = "2646-01-07T18:45:24" +ik[10252] = 4.358 +il[10252] = -153 +im[10252] = 0.0247 +ij[10252] = 27.1 +id[10253] = "2646-02-20T19:30:43" +ik[10253] = 2.841 +il[10253] = -15 +im[10253] = 0.0087 +ij[10253] = 28.1 +id[10254] = "2646-02-22T19:35:11" +ik[10254] = 0.711 +il[10254] = -9 +im[10254] = 0.0405 +ij[10254] = 27.3 +id[10255] = "2646-03-12T09:34:18" +ik[10255] = 0.742 +il[10255] = 45 +im[10255] = 0.0644 +ij[10255] = 27.5 +id[10256] = "2646-05-02T21:57:36" +ik[10256] = 0.91 +il[10256] = -180 +im[10256] = 0.0748 +ij[10256] = 12 +id[10257] = "2646-06-06T00:04:10" +ik[10257] = 0.582 +il[10257] = 101 +im[10257] = 0.0133 +ij[10257] = 28.1 +id[10258] = "2646-06-18T11:24:51" +ik[10258] = 0.083 +il[10258] = 140 +im[10258] = 0.0508 +ij[10258] = 27.9 +id[10259] = "2646-06-23T00:16:24" +ik[10259] = 1.873 +il[10259] = 154 +im[10259] = 0.0259 +ij[10259] = 28.8 +id[10260] = "2646-09-17T18:50:01" +ik[10260] = 54.233 +il[10260] = 61 +im[10260] = 0.0593 +ij[10260] = 9 +id[10261] = "2646-09-25T13:38:47" +ik[10261] = 2.822 +il[10261] = 84 +im[10261] = 0.1087 +ij[10261] = 28.6 +id[10262] = "2646-10-19T16:52:57" +ik[10262] = 2.433 +il[10262] = 158 +im[10262] = 0.0171 +ij[10262] = 27.4 +id[10263] = "2646-12-06T06:38:34" +ik[10263] = 90 +il[10263] = -56 +im[10263] = 0.1158 +ij[10263] = 6 +id[10264] = "2646-12-22T11:17:51" +ik[10264] = 0.498 +il[10264] = -13 +im[10264] = 0.2221 +ij[10264] = 27.3 +id[10265] = "2647-01-22T00:55:57" +ik[10265] = 5.711 +il[10265] = 50 +im[10265] = 0.4317 +ij[10265] = 27.5 +id[10266] = "2647-01-24T20:33:54" +ik[10266] = 0 +il[10266] = 78 +im[10266] = 0.4195 +ij[10266] = 13 +id[10267] = "2647-02-15T16:00:28" +ik[10267] = 8.11 +il[10267] = 89 +im[10267] = 0.4263 +ij[10267] = 11 +id[10268] = "2647-02-18T10:47:27" +ik[10268] = 0.5467 +il[10268] = 103 +im[10268] = 0.5468 +ij[10268] = 2 +id[10269] = "2647-03-08T19:36:28" +ik[10269] = 42.96 +il[10269] = 124 +im[10269] = 0.2164 +ij[10269] = 7.1574 +id[10270] = "2647-04-09T17:28:13" +ik[10270] = 74.87 +il[10270] = -173 +im[10270] = 0.0876 +ij[10270] = 14 +id[10271] = "2647-04-15T19:27:11" +ik[10271] = 2.223 +il[10271] = -158 +im[10271] = 0.2477 +ij[10271] = 27.5 +id[10272] = "2647-04-28T05:49:02" +ik[10272] = 90 +il[10272] = -125 +im[10272] = 0.1847 +ij[10272] = 5 +id[10273] = "2647-06-06T00:40:02" +ik[10273] = 4.26 +il[10273] = -5 +im[10273] = 0.0038 +ij[10273] = 27.6 +id[10274] = "2647-06-10T18:06:11" +ik[10274] = 1.635 +il[10274] = 9 +im[10274] = 0.1214 +ij[10274] = 28.7 +id[10275] = "2647-07-02T20:34:04" +ik[10275] = 0.888 +il[10275] = 77 +im[10275] = 0.0723 +ij[10275] = 28.5 +id[10276] = "2647-07-11T15:16:42" +ik[10276] = 54.471 +il[10276] = 103 +im[10276] = 0.1116 +ij[10276] = 8 +id[10277] = "2647-07-16T01:02:06" +ik[10277] = 6.263 +il[10277] = 117 +im[10277] = 0.112 +ij[10277] = 27.2 +id[10278] = "2647-08-08T05:29:11" +ik[10278] = 0.334 +il[10278] = -173 +im[10278] = 0.0637 +ij[10278] = 28.8 +id[10279] = "2647-10-05T03:48:48" +ik[10279] = 1.596 +il[10279] = 5 +im[10279] = 0.0095 +ij[10279] = 28.1 +id[10280] = "2647-11-30T05:21:07" +ik[10280] = 0.37 +il[10280] = 157 +im[10280] = 0.0659 +ij[10280] = 12 +id[10281] = "2648-01-24T03:41:51" +ik[10281] = 0.037 +il[10281] = 140 +im[10281] = 0.0854 +ij[10281] = 27.3 +id[10282] = "2648-02-10T18:15:37" +ik[10282] = 1.008 +il[10282] = -166 +im[10282] = 0.0892 +ij[10282] = 27.5 +id[10283] = "2648-03-25T17:38:56" +ik[10283] = 2.4 +il[10283] = -29 +im[10283] = 0.0982 +ij[10283] = 27.6 +id[10284] = "2648-04-04T20:31:03" +ik[10284] = 0.658 +il[10284] = 3 +im[10284] = 0.0578 +ij[10284] = 28.7 +id[10285] = "2648-04-30T14:30:30" +ik[10285] = 54.414 +il[10285] = 84 +im[10285] = 0.0425 +ij[10285] = 9 +id[10286] = "2648-05-02T12:16:04" +ik[10286] = 3.2 +il[10286] = 90 +im[10286] = 0.0153 +ij[10286] = 27.2 +id[10287] = "2648-05-18T12:17:42" +ik[10287] = 0.244 +il[10287] = 140 +im[10287] = 0.0187 +ij[10287] = 28.4 +id[10288] = "2648-05-23T11:07:52" +ik[10288] = 2.052 +il[10288] = 155 +im[10288] = 0.1196 +ij[10288] = 28.5 +id[10289] = "2648-05-30T01:41:48" +ik[10289] = 3.122 +il[10289] = 175 +im[10289] = 0.0639 +ij[10289] = 28.8 +id[10290] = "2648-07-09T05:44:37" +ik[10290] = 90 +il[10290] = -62 +im[10290] = 0.2113 +ij[10290] = 6 +id[10291] = "2648-08-26T17:28:40" +ik[10291] = 0 +il[10291] = 76 +im[10291] = 0.1131 +ij[10291] = 13 +id[10292] = "2648-08-27T23:14:42" +ik[10292] = 2.725 +il[10292] = 68 +im[10292] = 0.0512 +ij[10292] = 27.7 +id[10293] = "2648-09-16T14:44:48" +ik[10293] = 0.5093 +il[10293] = 67 +im[10293] = 0.5094 +ij[10293] = 2 +id[10294] = "2648-09-18T08:55:40" +ik[10294] = 8.69 +il[10294] = 78 +im[10294] = 0.4641 +ij[10294] = 11 +id[10295] = "2648-10-09T18:35:15" +ik[10295] = 44.05 +il[10295] = 114 +im[10295] = 0.2703 +ij[10295] = 7.162 +id[10296] = "2648-11-11T10:22:59" +ik[10296] = 76.7 +il[10296] = 178 +im[10296] = 0.2551 +ij[10296] = 14 +id[10297] = "2648-11-28T00:55:23" +ik[10297] = 90 +il[10297] = -140 +im[10297] = 0.2022 +ij[10297] = 5 +id[10298] = "2649-01-05T16:05:48" +ik[10298] = 0.345 +il[10298] = -21 +im[10298] = 0.1126 +ij[10298] = 28.6 +id[10299] = "2649-01-20T07:50:43" +ik[10299] = 3.408 +il[10299] = 25 +im[10299] = 0.0785 +ij[10299] = 27.1 +id[10300] = "2649-02-13T14:41:11" +ik[10300] = 53.719 +il[10300] = 101 +im[10300] = 0.0704 +ij[10300] = 8 +id[10301] = "2649-03-08T19:30:17" +ik[10301] = 1.229 +il[10301] = 173 +im[10301] = 0.1059 +ij[10301] = 27.3 +id[10302] = "2649-03-26T15:11:11" +ik[10302] = 0.488 +il[10302] = -132 +im[10302] = 0.0946 +ij[10302] = 27.5 +id[10303] = "2649-04-27T03:33:50" +ik[10303] = 0.509 +il[10303] = -35 +im[10303] = 0.0778 +ij[10303] = 28.1 +id[10304] = "2649-05-09T18:00:56" +ik[10304] = 3.55 +il[10304] = 4 +im[10304] = 0.0914 +ij[10304] = 27.6 +id[10305] = "2649-05-22T11:27:27" +ik[10305] = 0.715 +il[10305] = 42 +im[10305] = 0.0784 +ij[10305] = 28.7 +id[10306] = "2649-07-10T00:47:31" +ik[10306] = 0.61 +il[10306] = 168 +im[10306] = 0.0814 +ij[10306] = 12 +id[10307] = "2649-08-15T14:46:27" +ik[10307] = 3.465 +il[10307] = 100 +im[10307] = 0.0043 +ij[10307] = 28.1 +id[10308] = "2649-10-31T17:48:03" +ik[10308] = 3.535 +il[10308] = -25 +im[10308] = 0.0402 +ij[10308] = 27.4 +id[10309] = "2649-11-10T22:25:23" +ik[10309] = 2.684 +il[10309] = 6 +im[10309] = 0.0714 +ij[10309] = 28.6 +id[10310] = "2649-11-30T12:36:46" +ik[10310] = 53.635 +il[10310] = 66 +im[10310] = 0.0431 +ij[10310] = 9 +id[10311] = "2649-12-26T21:43:37" +ik[10311] = 0.632 +il[10311] = 147 +im[10311] = 0.0581 +ij[10311] = 27.3 +id[10312] = "2650-01-14T21:38:44" +ik[10312] = 0.89 +il[10312] = -154 +im[10312] = 0.0329 +ij[10312] = 27.5 +id[10313] = "2650-02-18T18:29:44" +ik[10313] = 90 +il[10313] = -44 +im[10313] = 0.2057 +ij[10313] = 6 +id[10314] = "2650-03-08T13:49:49" +ik[10314] = 1.51 +il[10314] = -1 +im[10314] = 0.2519 +ij[10314] = 27.6 +id[10315] = "2650-04-06T10:23:26" +ik[10315] = 0 +il[10315] = 76 +im[10315] = 0.3672 +ij[10315] = 13 +id[10316] = "2650-04-29T09:44:38" +ik[10316] = 5.97 +il[10316] = 92 +im[10316] = 0.5197 +ij[10316] = 11 +id[10317] = "2650-04-30T14:05:24" +ik[10317] = 0.5387 +il[10317] = 105 +im[10317] = 0.5388 +ij[10317] = 2 +id[10318] = "2650-05-11T08:18:44" +ik[10318] = 1.44 +il[10318] = 115 +im[10318] = 0.3978 +ij[10318] = 27.6 +id[10319] = "2650-05-20T09:26:00" +ik[10319] = 43.96 +il[10319] = 127 +im[10319] = 0.0554 +ij[10319] = 7.1635 +id[10320] = "2650-06-22T18:35:48" +ik[10320] = 77.34 +il[10320] = -167 +im[10320] = 0.234 +ij[10320] = 14 +id[10321] = "2650-06-28T19:47:16" +ik[10321] = 2.717 +il[10321] = -153 +im[10321] = 0.1783 +ij[10321] = 28.7 +id[10322] = "2650-07-08T14:02:36" +ik[10322] = 90 +il[10322] = -126 +im[10322] = 0.1963 +ij[10322] = 5 +id[10323] = "2650-08-26T05:15:47" +ik[10323] = 0.528 +il[10323] = 23 +im[10323] = 0.1125 +ij[10323] = 28.8 +id[10324] = "2650-09-18T13:12:20" +ik[10324] = 54.428 +il[10324] = 94 +im[10324] = 0.0793 +ij[10324] = 8 +id[10325] = "2650-10-02T19:17:28" +ik[10325] = 0.994 +il[10325] = 137 +im[10325] = 0.0749 +ij[10325] = 28.4 +id[10326] = "2650-10-08T21:34:50" +ik[10326] = 0.24 +il[10326] = 156 +im[10326] = 0.1064 +ij[10326] = 28.5 +id[10327] = "2650-12-03T17:06:08" +ik[10327] = 1.351 +il[10327] = -31 +im[10327] = 0.0805 +ij[10327] = 28.1 +id[10328] = "2651-01-03T03:17:08" +ik[10328] = 0.92 +il[10328] = 65 +im[10328] = 0.0757 +ij[10328] = 28.6 +id[10329] = "2651-01-06T02:57:33" +ik[10329] = 3.843 +il[10329] = 63 +im[10329] = 0.0896 +ij[10329] = 28.1 +id[10330] = "2651-02-14T14:05:16" +ik[10330] = 1.28 +il[10330] = 179 +im[10330] = 0.0421 +ij[10330] = 12 +id[10331] = "2651-04-09T23:27:41" +ik[10331] = 2.87 +il[10331] = 154 +im[10331] = 0.059 +ij[10331] = 27.6 +id[10332] = "2651-05-01T03:20:52" +ik[10332] = 0.321 +il[10332] = -139 +im[10332] = 0.0366 +ij[10332] = 28.7 +id[10333] = "2651-05-16T23:20:57" +ik[10333] = 4.005 +il[10333] = -90 +im[10333] = 0.0603 +ij[10333] = 27.2 +id[10334] = "2651-06-17T16:00:28" +ik[10334] = 2.329 +il[10334] = 9 +im[10334] = 0.0859 +ij[10334] = 28.8 +id[10335] = "2651-07-08T14:05:42" +ik[10335] = 54.658 +il[10335] = 73 +im[10335] = 0.095 +ij[10335] = 9 +id[10336] = "2651-09-06T03:33:33" +ik[10336] = 2.518 +il[10336] = -106 +im[10336] = 0.1633 +ij[10336] = 28.5 +id[10337] = "2651-09-19T13:34:18" +ik[10337] = 90 +il[10337] = -65 +im[10337] = 0.1904 +ij[10337] = 6 +id[10338] = "2651-10-20T23:10:43" +ik[10338] = 1.012 +il[10338] = 20 +im[10338] = 0.2087 +ij[10338] = 27.4 +id[10339] = "2651-11-09T18:36:15" +ik[10339] = 0 +il[10339] = 69 +im[10339] = 0.1919 +ij[10339] = 13 +id[10340] = "2651-11-27T21:09:25" +ik[10340] = 0.5749 +il[10340] = 113 +im[10340] = 0.5749 +ij[10340] = 2 +id[10341] = "2651-11-30T22:47:37" +ik[10341] = 2.05 +il[10341] = 111 +im[10341] = 0.4384 +ij[10341] = 27.4 +id[10342] = "2651-12-01T08:16:48" +ik[10342] = 2.24 +il[10342] = 111 +im[10342] = 0.4024 +ij[10342] = 11 +id[10343] = "2651-12-21T18:02:52" +ik[10343] = 41.98 +il[10343] = 117 +im[10343] = 0.409 +ij[10343] = 7.1548 +id[10344] = "2652-01-22T08:04:30" +ik[10344] = 73.56 +il[10344] = -170 +im[10344] = 0.2928 +ij[10344] = 14 +id[10345] = "2652-01-25T17:43:36" +ik[10345] = 1.236 +il[10345] = -173 +im[10345] = 0.201 +ij[10345] = 27.1 +id[10346] = "2652-02-10T09:01:52" +ik[10346] = 90 +il[10346] = -134 +im[10346] = 0.0842 +ij[10346] = 5 +id[10347] = "2652-02-20T00:15:50" +ik[10347] = 2.225 +il[10347] = -104 +im[10347] = 0.2064 +ij[10347] = 28.6 +id[10348] = "2652-03-20T19:48:57" +ik[10348] = 2.246 +il[10348] = -11 +im[10348] = 0.1556 +ij[10348] = 27.3 +id[10349] = "2652-04-08T11:51:10" +ik[10349] = 0.036 +il[10349] = 47 +im[10349] = 0.0946 +ij[10349] = 27.5 +id[10350] = "2652-04-28T23:34:36" +ik[10350] = 54.057 +il[10350] = 111 +im[10350] = 0.0366 +ij[10350] = 8 +id[10351] = "2652-05-23T18:26:37" +ik[10351] = 3.88 +il[10351] = -173 +im[10351] = 0.0753 +ij[10351] = 27.6 +id[10352] = "2652-06-16T15:05:43" +ik[10352] = 1.083 +il[10352] = -100 +im[10352] = 0.0777 +ij[10352] = 28.7 +id[10353] = "2652-06-30T21:25:12" +ik[10353] = 5.518 +il[10353] = -57 +im[10353] = 0.0776 +ij[10353] = 27.2 +id[10354] = "2652-07-09T02:51:47" +ik[10354] = 2.824 +il[10354] = -32 +im[10354] = 0.0567 +ij[10354] = 28.1 +id[10355] = "2652-08-01T18:13:14" +ik[10355] = 1.013 +il[10355] = 40 +im[10355] = 0.0864 +ij[10355] = 28.8 +id[10356] = "2652-08-02T21:57:18" +ik[10356] = 0.311 +il[10356] = 44 +im[10356] = 0.0909 +ij[10356] = 28.1 +id[10357] = "2652-09-15T20:57:07" +ik[10357] = 1.41 +il[10357] = 157 +im[10357] = 0.0816 +ij[10357] = 12 +id[10358] = "2652-10-18T19:18:20" +ik[10358] = 2.596 +il[10358] = 77 +im[10358] = 0.0864 +ij[10358] = 28.1 +id[10359] = "2652-11-05T13:30:51" +ik[10359] = 0.112 +il[10359] = 130 +im[10359] = 0.0609 +ij[10359] = 28.4 +id[10360] = "2652-11-10T16:18:20" +ik[10360] = 0.827 +il[10360] = 146 +im[10360] = 0.0329 +ij[10360] = 28.5 +id[10361] = "2652-11-14T16:13:23" +ik[10361] = 4.207 +il[10361] = 158 +im[10361] = 0.087 +ij[10361] = 27.4 +id[10362] = "2652-12-28T10:53:36" +ik[10362] = 1.364 +il[10362] = -69 +im[10362] = 0.0665 +ij[10362] = 28.6 +id[10363] = "2653-01-08T12:58:43" +ik[10363] = 0.283 +il[10363] = -35 +im[10363] = 0.0054 +ij[10363] = 27.3 +id[10364] = "2653-01-26T10:53:50" +ik[10364] = 1.056 +il[10364] = 21 +im[10364] = 0.0572 +ij[10364] = 27.5 +id[10365] = "2653-02-14T20:51:04" +ik[10365] = 53.752 +il[10365] = 82 +im[10365] = 0.1196 +ij[10365] = 9 +id[10366] = "2653-03-12T16:46:34" +ik[10366] = 1.51 +il[10366] = 162 +im[10366] = 0.0689 +ij[10366] = 27.6 +id[10367] = "2653-04-13T16:55:03" +ik[10367] = 2.747 +il[10367] = -97 +im[10367] = 0.138 +ij[10367] = 28.7 +id[10368] = "2653-04-23T02:06:16" +ik[10368] = 1.542 +il[10368] = -68 +im[10368] = 0.0139 +ij[10368] = 27.2 +id[10369] = "2653-04-29T19:21:55" +ik[10369] = 90 +il[10369] = -48 +im[10369] = 0.2163 +ij[10369] = 6 +id[10370] = "2653-06-15T08:04:58" +ik[10370] = 0 +il[10370] = 84 +im[10370] = 0.3384 +ij[10370] = 13 +id[10371] = "2653-06-26T17:00:12" +ik[10371] = 0.5021 +il[10371] = 107 +im[10371] = 0.5022 +ij[10371] = 2 +id[10372] = "2653-07-07T15:10:04" +ik[10372] = 3.4 +il[10372] = 86 +im[10372] = 0.4152 +ij[10372] = 11 +id[10373] = "2653-07-29T13:48:43" +ik[10373] = 44.24 +il[10373] = 122 +im[10373] = 0.0664 +ij[10373] = 7.1664 +id[10374] = "2653-09-01T13:06:30" +ik[10374] = 78.21 +il[10374] = -171 +im[10374] = 0.2193 +ij[10374] = 14 +id[10375] = "2653-09-07T10:47:08" +ik[10375] = 2.728 +il[10375] = -157 +im[10375] = 0.124 +ij[10375] = 28.8 +id[10376] = "2653-09-15T23:11:01" +ik[10376] = 90 +il[10376] = -134 +im[10376] = 0.2055 +ij[10376] = 5 +id[10377] = "2653-11-28T13:55:05" +ik[10377] = 53.985 +il[10377] = 92 +im[10377] = 0.0959 +ij[10377] = 8 +id[10378] = "2654-01-07T08:37:50" +ik[10378] = 4.381 +il[10378] = -144 +im[10378] = 0.0224 +ij[10378] = 27.1 +id[10379] = "2654-01-19T03:24:02" +ik[10379] = 0.31 +il[10379] = -107 +im[10379] = 0.0762 +ij[10379] = 28.5 +id[10380] = "2654-02-01T07:45:07" +ik[10380] = 2.785 +il[10380] = -66 +im[10380] = 0.0947 +ij[10380] = 28.1 +id[10381] = "2654-02-19T21:06:20" +ik[10381] = 0.044 +il[10381] = -8 +im[10381] = 0.0438 +ij[10381] = 28.6 +id[10382] = "2654-02-22T08:57:50" +ik[10382] = 0.702 +il[10382] = -1 +im[10382] = 0.0065 +ij[10382] = 27.3 +id[10383] = "2654-03-11T22:45:50" +ik[10383] = 0.746 +il[10383] = 54 +im[10383] = 0.0341 +ij[10383] = 27.5 +id[10384] = "2654-03-16T12:31:49" +ik[10384] = 3.502 +il[10384] = 68 +im[10384] = 0.0838 +ij[10384] = 28.1 +id[10385] = "2654-04-30T13:17:45" +ik[10385] = 0.96 +il[10385] = -177 +im[10385] = 0.0848 +ij[10385] = 12 +id[10386] = "2654-06-18T01:12:00" +ik[10386] = 0.122 +il[10386] = 149 +im[10386] = 0.0784 +ij[10386] = 27.9 +id[10387] = "2654-07-06T21:45:47" +ik[10387] = 1.793 +il[10387] = -152 +im[10387] = 0.0201 +ij[10387] = 28.8 +id[10388] = "2654-08-15T23:30:20" +ik[10388] = 6.427 +il[10388] = -29 +im[10388] = 0.1059 +ij[10388] = 28.1 +id[10389] = "2654-09-15T10:07:33" +ik[10389] = 54.256 +il[10389] = 64 +im[10389] = 0.1182 +ij[10389] = 9 +id[10390] = "2654-10-19T09:51:10" +ik[10390] = 2.386 +il[10390] = 167 +im[10390] = 0.0631 +ij[10390] = 27.4 +id[10391] = "2654-11-27T08:58:07" +ik[10391] = 0.51 +il[10391] = -73 +im[10391] = 0.2106 +ij[10391] = 28.4 +id[10392] = "2654-12-03T17:54:21" +ik[10392] = 90 +il[10392] = -54 +im[10392] = 0.0738 +ij[10392] = 6 +id[10393] = "2654-12-20T21:08:47" +ik[10393] = 1.384 +il[10393] = -9 +im[10393] = 0.0898 +ij[10393] = 28.5 +id[10394] = "2654-12-23T01:26:43" +ik[10394] = 0.392 +il[10394] = -4 +im[10394] = 0.2057 +ij[10394] = 27.3 +id[10395] = "2655-01-13T13:35:28" +ik[10395] = 2.693 +il[10395] = 51 +im[10395] = 0.2825 +ij[10395] = 28.6 +id[10396] = "2655-01-22T13:06:57" +ik[10396] = 0 +il[10396] = 67 +im[10396] = 0.4389 +ij[10396] = 13 +id[10397] = "2655-02-13T04:35:02" +ik[10397] = 7.94 +il[10397] = 91 +im[10397] = 0.1153 +ij[10397] = 11 +id[10398] = "2655-02-19T13:23:37" +ik[10398] = 0.5479 +il[10398] = 109 +im[10398] = 0.548 +ij[10398] = 2 +id[10399] = "2655-03-06T01:22:34" +ik[10399] = 42.51 +il[10399] = 126 +im[10399] = 0.4323 +ij[10399] = 7.1572 +id[10400] = "2655-03-31T08:08:48" +ik[10400] = 4.646 +il[10400] = 174 +im[10400] = 0.2532 +ij[10400] = 28.6 +id[10401] = "2655-04-07T05:08:19" +ik[10401] = 74.67 +il[10401] = -170 +im[10401] = 0.1316 +ij[10401] = 14 +id[10402] = "2655-04-16T01:17:23" +ik[10402] = 2.043 +il[10402] = -150 +im[10402] = 0.2436 +ij[10402] = 27.5 +id[10403] = "2655-04-25T19:11:19" +ik[10403] = 90 +il[10403] = -123 +im[10403] = 0.0454 +ij[10403] = 5 +id[10404] = "2655-06-05T17:56:29" +ik[10404] = 4.25 +il[10404] = 4 +im[10404] = 0.0516 +ij[10404] = 27.6 +id[10405] = "2655-07-09T08:13:47" +ik[10405] = 54.463 +il[10405] = 106 +im[10405] = 0.0422 +ij[10405] = 8 +id[10406] = "2655-07-12T03:39:02" +ik[10406] = 1.598 +il[10406] = 115 +im[10406] = 0.0935 +ij[10406] = 28.7 +id[10407] = "2655-07-15T15:35:52" +ik[10407] = 6.233 +il[10407] = 126 +im[10407] = 0.1187 +ij[10407] = 27.2 +id[10408] = "2655-08-22T07:51:27" +ik[10408] = 0.544 +il[10408] = -120 +im[10408] = 0.0095 +ij[10408] = 28.8 +id[10409] = "2655-09-22T20:17:39" +ik[10409] = 0.201 +il[10409] = -23 +im[10409] = 0.0378 +ij[10409] = 28.1 +id[10410] = "2655-11-27T18:02:52" +ik[10410] = 0.43 +il[10410] = 168 +im[10410] = 0.0898 +ij[10410] = 12 +id[10411] = "2656-01-23T17:00:56" +ik[10411] = 0.03 +il[10411] = 149 +im[10411] = 0.0614 +ij[10411] = 27.3 +id[10412] = "2656-02-10T07:41:23" +ik[10412] = 1.008 +il[10412] = -157 +im[10412] = 0.093 +ij[10412] = 27.5 +id[10413] = "2656-02-14T06:28:39" +ik[10413] = 0.194 +il[10413] = -145 +im[10413] = 0.079 +ij[10413] = 28.5 +id[10414] = "2656-02-14T10:48:34" +ik[10414] = 0.3 +il[10414] = -144 +im[10414] = 0.0771 +ij[10414] = 28.6 +id[10415] = "2656-03-25T07:32:19" +ik[10415] = 2.38 +il[10415] = -20 +im[10415] = 0.0828 +ij[10415] = 27.6 +id[10416] = "2656-04-28T06:59:08" +ik[10416] = 54.395 +il[10416] = 87 +im[10416] = 0.1076 +ij[10416] = 9 +id[10417] = "2656-05-02T03:16:03" +ik[10417] = 3.17 +il[10417] = 99 +im[10417] = 0.0433 +ij[10417] = 27.2 +id[10418] = "2656-05-05T06:33:24" +ik[10418] = 1.581 +il[10418] = 108 +im[10418] = 0.0356 +ij[10418] = 28.7 +id[10419] = "2656-06-14T16:11:08" +ik[10419] = 2.607 +il[10419] = -127 +im[10419] = 0.1177 +ij[10419] = 28.8 +id[10420] = "2656-07-06T22:38:18" +ik[10420] = 90 +il[10420] = -59 +im[10420] = 0.1477 +ij[10420] = 6 +id[10421] = "2656-08-23T18:38:26" +ik[10421] = 2.865 +il[10421] = 77 +im[10421] = 0.3947 +ij[10421] = 27.7 +id[10422] = "2656-08-24T05:08:46" +ik[10422] = 0 +il[10422] = 67 +im[10422] = 0.3819 +ij[10422] = 13 +id[10423] = "2656-09-15T23:19:40" +ik[10423] = 8.69 +il[10423] = 81 +im[10423] = 0.476 +ij[10423] = 11 +id[10424] = "2656-09-17T17:30:31" +ik[10424] = 0.5213 +il[10424] = 94 +im[10424] = 0.5214 +ij[10424] = 2 +id[10425] = "2656-10-07T06:38:29" +ik[10425] = 44.06 +il[10425] = 116 +im[10425] = 0.1103 +ij[10425] = 7.1623 +id[10426] = "2656-11-09T03:21:13" +ik[10426] = 76.93 +il[10426] = -170 +im[10426] = 0.2016 +ij[10426] = 14 +id[10427] = "2656-11-25T15:21:20" +ik[10427] = 90 +il[10427] = -138 +im[10427] = 0.1956 +ij[10427] = 5 +id[10428] = "2657-01-19T23:53:49" +ik[10428] = 3.449 +il[10428] = 34 +im[10428] = 0.029 +ij[10428] = 27.1 +id[10429] = "2657-02-11T02:11:09" +ik[10429] = 53.717 +il[10429] = 103 +im[10429] = 0.1256 +ij[10429] = 8 +id[10430] = "2657-03-04T07:32:18" +ik[10430] = 1.428 +il[10430] = 169 +im[10430] = 0.009 +ij[10430] = 28.4 +id[10431] = "2657-03-08T09:38:43" +ik[10431] = 1.211 +il[10431] = -178 +im[10431] = 0.0783 +ij[10431] = 27.3 +id[10432] = "2657-03-26T04:58:16" +ik[10432] = 0.497 +il[10432] = -123 +im[10432] = 0.0963 +ij[10432] = 27.5 +id[10433] = "2657-04-05T14:44:26" +ik[10433] = 1.127 +il[10433] = -91 +im[10433] = 0.0355 +ij[10433] = 28.1 +id[10434] = "2657-04-07T15:01:17" +ik[10434] = 0.775 +il[10434] = -85 +im[10434] = 0.0677 +ij[10434] = 28.6 +id[10435] = "2657-04-19T23:41:25" +ik[10435] = 0.006 +il[10435] = -47 +im[10435] = 0.0194 +ij[10435] = 28.5 +id[10436] = "2657-05-09T07:20:14" +ik[10436] = 3.54 +il[10436] = 12 +im[10436] = 0.077 +ij[10436] = 27.6 +id[10437] = "2657-05-12T18:49:58" +ik[10437] = 1.602 +il[10437] = 23 +im[10437] = 0.0865 +ij[10437] = 28.1 +id[10438] = "2657-07-07T19:24:57" +ik[10438] = 0.56 +il[10438] = 179 +im[10438] = 0.0642 +ij[10438] = 12 +id[10439] = "2657-10-31T08:00:29" +ik[10439] = 3.514 +il[10439] = -16 +im[10439] = 0.007 +ij[10439] = 27.4 +id[10440] = "2657-11-27T23:48:57" +ik[10440] = 53.648 +il[10440] = 68 +im[10440] = 0.06 +ij[10440] = 9 +id[10441] = "2657-12-26T13:59:10" +ik[10441] = 0.638 +il[10441] = 156 +im[10441] = 0.1022 +ij[10441] = 27.3 +id[10442] = "2658-01-14T15:43:36" +ik[10442] = 0.867 +il[10442] = -144 +im[10442] = 0.0223 +ij[10442] = 27.5 +id[10443] = "2658-02-13T14:20:58" +ik[10443] = 3.263 +il[10443] = -51 +im[10443] = 0.0133 +ij[10443] = 28.6 +id[10444] = "2658-02-16T08:30:56" +ik[10444] = 90 +il[10444] = -42 +im[10444] = 0.1136 +ij[10444] = 6 +id[10445] = "2658-03-09T04:34:11" +ik[10445] = 1.79 +il[10445] = 11 +im[10445] = 0.2732 +ij[10445] = 27.6 +id[10446] = "2658-04-04T03:21:40" +ik[10446] = 0 +il[10446] = 79 +im[10446] = 0.4026 +ij[10446] = 13 +id[10447] = "2658-04-27T01:17:45" +ik[10447] = 6.23 +il[10447] = 95 +im[10447] = 0.242 +ij[10447] = 11 +id[10448] = "2658-05-01T17:37:12" +ik[10448] = 0.5228 +il[10448] = 111 +im[10448] = 0.5228 +ij[10448] = 2 +id[10449] = "2658-05-04T09:50:05" +ik[10449] = 2.83 +il[10449] = 113 +im[10449] = 0.4215 +ij[10449] = 27.6 +id[10450] = "2658-05-18T02:24:14" +ik[10450] = 43.96 +il[10450] = 130 +im[10450] = 0.2834 +ij[10450] = 7.1633 +id[10451] = "2658-06-01T14:52:56" +ik[10451] = 3.32 +il[10451] = 155 +im[10451] = 0.2387 +ij[10451] = 27.6 +id[10452] = "2658-06-10T07:08:24" +ik[10452] = 0.689 +il[10452] = 173 +im[10452] = 0.2705 +ij[10452] = 28.5 +id[10453] = "2658-06-20T08:35:02" +ik[10453] = 77.22 +il[10453] = -164 +im[10453] = 0.0776 +ij[10453] = 14 +id[10454] = "2658-07-06T06:17:22" +ik[10454] = 90 +il[10454] = -123 +im[10454] = 0.1075 +ij[10454] = 5 +id[10455] = "2658-08-03T21:00:25" +ik[10455] = 2.516 +il[10455] = -35 +im[10455] = 0.0566 +ij[10455] = 28.7 +id[10456] = "2658-09-09T22:56:03" +ik[10456] = 0.099 +il[10456] = 77 +im[10456] = 0.1247 +ij[10456] = 28.8 +id[10457] = "2658-09-16T05:40:58" +ik[10457] = 54.438 +il[10457] = 97 +im[10457] = 0.0137 +ij[10457] = 8 +id[10458] = "2658-11-17T05:48:46" +ik[10458] = 4.443 +il[10458] = -72 +im[10458] = 0.0308 +ij[10458] = 28.1 +id[10459] = "2659-02-11T23:49:55" +ik[10459] = 1.25 +il[10459] = 179 +im[10459] = 0.0319 +ij[10459] = 12 +id[10460] = "2659-03-31T22:19:37" +ik[10460] = 1.415 +il[10460] = 136 +im[10460] = 0.0083 +ij[10460] = 28.6 +id[10461] = "2659-04-09T12:39:49" +ik[10461] = 2.86 +il[10461] = 163 +im[10461] = 0.0802 +ij[10461] = 27.6 +id[10462] = "2659-05-12T22:42:05" +ik[10462] = 1.156 +il[10462] = -92 +im[10462] = 0.0467 +ij[10462] = 28.5 +id[10463] = "2659-05-16T12:52:56" +ik[10463] = 3.988 +il[10463] = -81 +im[10463] = 0.0207 +ij[10463] = 27.2 +id[10464] = "2659-05-30T05:20:06" +ik[10464] = 0.994 +il[10464] = -38 +im[10464] = 0.0078 +ij[10464] = 28.7 +id[10465] = "2659-07-02T00:22:36" +ik[10465] = 1.946 +il[10465] = 63 +im[10465] = 0.0659 +ij[10465] = 28.8 +id[10466] = "2659-07-06T08:13:53" +ik[10466] = 54.661 +il[10466] = 77 +im[10466] = 0.1225 +ij[10466] = 9 +id[10467] = "2659-09-17T02:42:26" +ik[10467] = 90 +il[10467] = -62 +im[10467] = 0.1694 +ij[10467] = 6 +id[10468] = "2659-10-23T00:13:22" +ik[10468] = 1.293 +il[10468] = 37 +im[10468] = 0.1858 +ij[10468] = 27.4 +id[10469] = "2659-11-07T08:35:29" +ik[10469] = 0 +il[10469] = 73 +im[10469] = 0.1719 +ij[10469] = 13 +id[10470] = "2659-11-23T18:16:02" +ik[10470] = 0.577 +il[10470] = 112 +im[10470] = 0.2201 +ij[10470] = 27.4 +id[10471] = "2659-11-28T21:40:19" +ik[10471] = 2.62 +il[10471] = 126 +im[10471] = 0.5724 +ij[10471] = 11 +id[10472] = "2659-11-28T23:48:44" +ik[10472] = 0.5725 +il[10472] = 97 +im[10472] = 0.5726 +ij[10472] = 2 +id[10473] = "2659-12-19T09:40:04" +ik[10473] = 42.04 +il[10473] = 119 +im[10473] = 0.125 +ij[10473] = 7.1549 +id[10474] = "2660-01-19T21:04:51" +ik[10474] = 73.52 +il[10474] = -178 +im[10474] = 0.2212 +ij[10474] = 14 +id[10475] = "2660-01-26T04:04:29" +ik[10475] = 1.358 +il[10475] = -164 +im[10475] = 0.2296 +ij[10475] = 27.1 +id[10476] = "2660-02-07T21:24:00" +ik[10476] = 90 +il[10476] = -132 +im[10476] = 0.2035 +ij[10476] = 5 +id[10477] = "2660-03-20T12:53:49" +ik[10477] = 2.197 +il[10477] = -2 +im[10477] = 0.1309 +ij[10477] = 27.3 +id[10478] = "2660-04-08T03:35:09" +ik[10478] = 0.02 +il[10478] = 56 +im[10478] = 0.1265 +ij[10478] = 27.5 +id[10479] = "2660-04-26T13:41:01" +ik[10479] = 54.04 +il[10479] = 113 +im[10479] = 0.0582 +ij[10479] = 8 +id[10480] = "2660-05-22T13:04:22" +ik[10480] = 0.805 +il[10480] = -167 +im[10480] = 0.0993 +ij[10480] = 28.6 +id[10481] = "2660-05-23T08:32:45" +ik[10481] = 3.87 +il[10481] = -164 +im[10481] = 0.0943 +ij[10481] = 27.6 +id[10482] = "2660-06-17T23:48:02" +ik[10482] = 2.603 +il[10482] = -86 +im[10482] = 0.0754 +ij[10482] = 28.1 +id[10483] = "2660-06-30T10:42:58" +ik[10483] = 5.498 +il[10483] = -48 +im[10483] = 0.0459 +ij[10483] = 27.2 +id[10484] = "2660-07-03T05:00:31" +ik[10484] = 1.959 +il[10484] = -40 +im[10484] = 0.0822 +ij[10484] = 28.1 +id[10485] = "2660-07-03T05:02:49" +ik[10485] = 1.959 +il[10485] = -40 +im[10485] = 0.0822 +ij[10485] = 28.1 +id[10486] = "2660-07-15T21:11:48" +ik[10486] = 0.464 +il[10486] = -2 +im[10486] = 0.0415 +ij[10486] = 28.7 +id[10487] = "2660-07-18T23:26:52" +ik[10487] = 0.005 +il[10487] = 8 +im[10487] = 0.0809 +ij[10487] = 28.5 +id[10488] = "2660-09-13T13:26:24" +ik[10488] = 1.41 +il[10488] = 168 +im[10488] = 0.0391 +ij[10488] = 12 +id[10489] = "2660-11-14T05:38:15" +ik[10489] = 4.193 +il[10489] = 167 +im[10489] = 0.064 +ij[10489] = 27.4 +id[10490] = "2661-01-08T02:56:29" +ik[10490] = 0.289 +il[10490] = -26 +im[10490] = 0.0417 +ij[10490] = 27.3 +id[10491] = "2661-01-26T01:16:56" +ik[10491] = 1.052 +il[10491] = 30 +im[10491] = 0.0212 +ij[10491] = 27.5 +id[10492] = "2661-02-12T08:28:09" +ik[10492] = 53.734 +il[10492] = 84 +im[10492] = 0.0619 +ij[10492] = 9 +id[10493] = "2661-03-12T08:55:43" +ik[10493] = 1.46 +il[10493] = 171 +im[10493] = 0.0167 +ij[10493] = 27.6 +id[10494] = "2661-03-15T11:07:09" +ik[10494] = 1.495 +il[10494] = -179 +im[10494] = 0.0931 +ij[10494] = 28.4 +id[10495] = "2661-03-26T00:24:02" +ik[10495] = 3.773 +il[10495] = -146 +im[10495] = 0.0083 +ij[10495] = 28.6 +id[10496] = "2661-04-23T01:24:02" +ik[10496] = 1.456 +il[10496] = -58 +im[10496] = 0.0676 +ij[10496] = 27.2 +id[10497] = "2661-04-27T12:50:59" +ik[10497] = 90 +il[10497] = -45 +im[10497] = 0.1234 +ij[10497] = 6 +id[10498] = "2661-05-23T07:03:30" +ik[10498] = 3.21 +il[10498] = 23 +im[10498] = 0.0405 +ij[10498] = 28.7 +id[10499] = "2661-06-12T21:05:18" +ik[10499] = 0 +il[10499] = 75 +im[10499] = 0.3692 +ij[10499] = 13 +id[10500] = "2661-06-27T23:25:27" +ik[10500] = 0.5168 +il[10500] = 110 +im[10500] = 0.5169 +ij[10500] = 2 +id[10501] = "2661-07-05T08:08:09" +ik[10501] = 3.1 +il[10501] = 131 +im[10501] = 0.0872 +ij[10501] = 11 +id[10502] = "2661-07-05T14:48:11" +ik[10502] = 3.668 +il[10502] = 101 +im[10502] = 0.1195 +ij[10502] = 28.7 +id[10503] = "2661-07-27T06:12:06" +ik[10503] = 44.38 +il[10503] = 125 +im[10503] = 0.348 +ij[10503] = 7.1663 +id[10504] = "2661-08-15T12:14:49" +ik[10504] = 5.397 +il[10504] = 160 +im[10504] = 0.1285 +ij[10504] = 28.7 +id[10505] = "2661-08-30T05:32:54" +ik[10505] = 78.35 +il[10505] = -168 +im[10505] = 0.0695 +ij[10505] = 14 +id[10506] = "2661-09-13T15:36:23" +ik[10506] = 90 +il[10506] = -131 +im[10506] = 0.0871 +ij[10506] = 5 +id[10507] = "2661-09-21T07:25:40" +ik[10507] = 2.295 +il[10507] = -107 +im[10507] = 0.1921 +ij[10507] = 28.5 +id[10508] = "2661-09-25T08:28:45" +ik[10508] = 1.434 +il[10508] = -95 +im[10508] = 0.0787 +ij[10508] = 28.8 +id[10509] = "2661-11-26T03:43:43" +ik[10509] = 54.002 +il[10509] = 94 +im[10509] = 0.0174 +ij[10509] = 8 +id[10510] = "2662-01-06T22:26:42" +ik[10510] = 4.403 +il[10510] = -135 +im[10510] = 0.0657 +ij[10510] = 27.1 +id[10511] = "2662-01-23T03:54:51" +ik[10511] = 2.521 +il[10511] = -85 +im[10511] = 0.0294 +ij[10511] = 28.1 +id[10512] = "2662-02-21T22:16:56" +ik[10512] = 0.693 +il[10512] = 8 +im[10512] = 0.0339 +ij[10512] = 27.3 +id[10513] = "2662-03-11T12:02:16" +ik[10513] = 0.75 +il[10513] = 62 +im[10513] = 0.0086 +ij[10513] = 27.5 +id[10514] = "2662-04-28T04:26:24" +ik[10514] = 1 +il[10514] = -174 +im[10514] = 0.0421 +ij[10514] = 12 +id[10515] = "2662-05-31T01:03:35" +ik[10515] = 4.567 +il[10515] = 113 +im[10515] = 0.0728 +ij[10515] = 27.2 +id[10516] = "2662-06-17T13:53:28" +ik[10516] = 0.047 +il[10516] = 157 +im[10516] = 0.0922 +ij[10516] = 27.9 +id[10517] = "2662-06-23T13:20:49" +ik[10517] = 0.689 +il[10517] = 176 +im[10517] = 0.0301 +ij[10517] = 28.7 +id[10518] = "2662-07-09T01:28:24" +ik[10518] = 0.798 +il[10518] = -136 +im[10518] = 0.0095 +ij[10518] = 28.1 +id[10519] = "2662-07-20T22:06:23" +ik[10519] = 1.472 +il[10519] = -99 +im[10519] = 0.077 +ij[10519] = 28.8 +id[10520] = "2662-08-01T14:02:06" +ik[10520] = 3.784 +il[10520] = -63 +im[10520] = 0.095 +ij[10520] = 28.1 +id[10521] = "2662-08-19T00:59:19" +ik[10521] = 0.149 +il[10521] = -10 +im[10521] = 0.0963 +ij[10521] = 28.5 +id[10522] = "2662-09-13T01:35:44" +ik[10522] = 54.277 +il[10522] = 66 +im[10522] = 0.1024 +ij[10522] = 9 +id[10523] = "2662-10-19T03:05:22" +ik[10523] = 2.337 +il[10523] = 176 +im[10523] = 0.1052 +ij[10523] = 27.4 +id[10524] = "2662-12-01T05:11:55" +ik[10524] = 90 +il[10524] = -52 +im[10524] = 0.2107 +ij[10524] = 6 +id[10525] = "2662-12-23T19:46:16" +ik[10525] = 0.253 +il[10525] = 6 +im[10525] = 0.1849 +ij[10525] = 27.3 +id[10526] = "2663-01-20T05:33:21" +ik[10526] = 0 +il[10526] = 79 +im[10526] = 0.1918 +ij[10526] = 13 +id[10527] = "2663-02-10T17:06:43" +ik[10527] = 7.76 +il[10527] = 94 +im[10527] = 0.3962 +ij[10527] = 11 +id[10528] = "2663-02-20T17:52:21" +ik[10528] = 0.5392 +il[10528] = 115 +im[10528] = 0.5393 +ij[10528] = 2 +id[10529] = "2663-03-03T11:54:04" +ik[10529] = 42.26 +il[10529] = 128 +im[10529] = 0.3198 +ij[10529] = 7.1571 +id[10530] = "2663-04-04T16:55:44" +ik[10530] = 74.47 +il[10530] = -168 +im[10530] = 0.2511 +ij[10530] = 14 +id[10531] = "2663-04-16T05:30:16" +ik[10531] = 1.882 +il[10531] = -141 +im[10531] = 0.2174 +ij[10531] = 27.5 +id[10532] = "2663-04-23T08:25:38" +ik[10532] = 90 +il[10532] = -121 +im[10532] = 0.1346 +ij[10532] = 5 +id[10533] = "2663-06-05T10:54:37" +ik[10533] = 4.24 +il[10533] = 13 +im[10533] = 0.0982 +ij[10533] = 27.6 +id[10534] = "2663-06-30T16:34:27" +ik[10534] = 1.447 +il[10534] = 90 +im[10534] = 0.1155 +ij[10534] = 28.4 +id[10535] = "2663-07-05T11:50:55" +ik[10535] = 0.12 +il[10535] = 105 +im[10535] = 0.083 +ij[10535] = 28.6 +id[10536] = "2663-07-07T01:10:52" +ik[10536] = 54.455 +il[10536] = 109 +im[10536] = 0.0532 +ij[10536] = 8 +id[10537] = "2663-07-15T06:06:04" +ik[10537] = 6.204 +il[10537] = 134 +im[10537] = 0.1041 +ij[10537] = 27.2 +id[10538] = "2663-08-10T09:36:08" +ik[10538] = 0.773 +il[10538] = -146 +im[10538] = 0.0335 +ij[10538] = 28.7 +id[10539] = "2663-09-05T08:51:04" +ik[10539] = 0.622 +il[10539] = -67 +im[10539] = 0.0491 +ij[10539] = 28.8 +id[10540] = "2663-11-25T06:47:31" +ik[10540] = 0.49 +il[10540] = 168 +im[10540] = 0.0548 +ij[10540] = 12 +id[10541] = "2664-01-23T06:16:55" +ik[10541] = 0.029 +il[10541] = 157 +im[10541] = 0.0282 +ij[10541] = 27.3 +id[10542] = "2664-02-09T21:04:56" +ik[10542] = 1.007 +il[10542] = -148 +im[10542] = 0.0799 +ij[10542] = 27.5 +id[10543] = "2664-03-24T21:26:29" +ik[10543] = 2.35 +il[10543] = -11 +im[10543] = 0.0549 +ij[10543] = 27.6 +id[10544] = "2664-04-25T23:17:06" +ik[10544] = 54.376 +il[10544] = 89 +im[10544] = 0.1024 +ij[10544] = 9 +id[10545] = "2664-05-01T18:23:08" +ik[10545] = 3.139 +il[10545] = 107 +im[10545] = 0.0873 +ij[10545] = 27.2 +id[10546] = "2664-05-06T04:56:38" +ik[10546] = 3.112 +il[10546] = 121 +im[10546] = 0.0164 +ij[10546] = 28.6 +id[10547] = "2664-06-04T06:41:45" +ik[10547] = 1.855 +il[10547] = -149 +im[10547] = 0.0269 +ij[10547] = 28.7 +id[10548] = "2664-07-01T13:24:48" +ik[10548] = 1.407 +il[10548] = -66 +im[10548] = 0.1229 +ij[10548] = 28.8 +id[10549] = "2664-07-04T15:35:31" +ik[10549] = 90 +il[10549] = -56 +im[10549] = 0.0253 +ij[10549] = 6 +id[10550] = "2664-08-23T16:56:11" +ik[10550] = 0 +il[10550] = 87 +im[10550] = 0.4427 +ij[10550] = 13 +id[10551] = "2664-09-13T13:48:00" +ik[10551] = 8.67 +il[10551] = 84 +im[10551] = 0.1684 +ij[10551] = 11 +id[10552] = "2664-09-18T17:51:13" +ik[10552] = 0.5251 +il[10552] = 100 +im[10552] = 0.5252 +ij[10552] = 2 +id[10553] = "2664-10-04T22:41:56" +ik[10553] = 42.24 +il[10553] = 119 +im[10553] = 0.3599 +ij[10553] = 7.1629 +id[10554] = "2664-11-06T21:43:43" +ik[10554] = 75.2 +il[10554] = -176 +im[10554] = 0.0269 +ij[10554] = 14 +id[10555] = "2664-11-23T05:53:30" +ik[10555] = 90 +il[10555] = -135 +im[10555] = 0.0615 +ij[10555] = 5 +id[10556] = "2665-01-05T06:40:19" +ik[10556] = 1.252 +il[10556] = -2 +im[10556] = 0.0175 +ij[10556] = 28.5 +id[10557] = "2665-01-19T15:49:48" +ik[10557] = 3.489 +il[10557] = 43 +im[10557] = 0.0315 +ij[10557] = 27.1 +id[10558] = "2665-02-08T13:41:08" +ik[10558] = 53.716 +il[10558] = 105 +im[10558] = 0.0987 +ij[10558] = 8 +id[10559] = "2665-03-07T23:47:35" +ik[10559] = 1.193 +il[10559] = -169 +im[10559] = 0.0379 +ij[10559] = 27.3 +id[10560] = "2665-03-21T05:47:19" +ik[10560] = 0.281 +il[10560] = -128 +im[10560] = 0.0117 +ij[10560] = 28.1 +id[10561] = "2665-03-25T18:46:42" +ik[10561] = 0.506 +il[10561] = -114 +im[10561] = 0.0814 +ij[10561] = 27.5 +id[10562] = "2665-05-08T20:36:27" +ik[10562] = 3.53 +il[10562] = 21 +im[10562] = 0.049 +ij[10562] = 27.6 +id[10563] = "2665-07-05T14:00:57" +ik[10563] = 0.51 +il[10563] = 179 +im[10563] = 0.0098 +ij[10563] = 12 +id[10564] = "2665-08-09T14:37:23" +ik[10564] = 1.106 +il[10564] = 101 +im[10564] = 0.0808 +ij[10564] = 28.8 +id[10565] = "2665-10-07T13:47:16" +ik[10565] = 4.823 +il[10565] = -78 +im[10565] = 0.0852 +ij[10565] = 28.1 +id[10566] = "2665-10-30T22:14:42" +ik[10566] = 3.492 +il[10566] = -7 +im[10566] = 0.0448 +ij[10566] = 27.4 +id[10567] = "2665-11-25T11:04:42" +ik[10567] = 53.662 +il[10567] = 70 +im[10567] = 0.1137 +ij[10567] = 9 +id[10568] = "2665-11-30T10:03:25" +ik[10568] = 1.755 +il[10568] = 84 +im[10568] = 0.043 +ij[10568] = 28.5 +id[10569] = "2665-12-26T06:22:15" +ik[10569] = 0.644 +il[10569] = 165 +im[10569] = 0.1329 +ij[10569] = 27.3 +id[10570] = "2666-01-14T10:04:02" +ik[10570] = 0.843 +il[10570] = -135 +im[10570] = 0.0771 +ij[10570] = 27.5 +id[10571] = "2666-02-13T22:21:30" +ik[10571] = 90 +il[10571] = -39 +im[10571] = 0.0561 +ij[10571] = 6 +id[10572] = "2666-03-09T23:11:19" +ik[10572] = 2.11 +il[10572] = 23 +im[10572] = 0.2849 +ij[10572] = 27.6 +id[10573] = "2666-04-02T21:44:10" +ik[10573] = 0 +il[10573] = 85 +im[10573] = 0.2822 +ij[10573] = 13 +id[10574] = "2666-04-19T09:27:43" +ik[10574] = 0.5265 +il[10574] = 83 +im[10574] = 0.5265 +ij[10574] = 2 +id[10575] = "2666-04-24T16:46:33" +ik[10575] = 6.47 +il[10575] = 98 +im[10575] = 0.1893 +ij[10575] = 11 +id[10576] = "2666-04-27T23:12:10" +ik[10576] = 3.95 +il[10576] = 112 +im[10576] = 0.2174 +ij[10576] = 27.6 +id[10577] = "2666-05-15T22:48:45" +ik[10577] = 43.04 +il[10577] = 133 +im[10577] = 0.4229 +ij[10577] = 7.1635 +id[10578] = "2666-06-03T23:35:04" +ik[10578] = 3.65 +il[10578] = 168 +im[10578] = 0.1506 +ij[10578] = 27.6 +id[10579] = "2666-06-17T23:27:27" +ik[10579] = 76.07 +il[10579] = -162 +im[10579] = 0.1388 +ij[10579] = 14 +id[10580] = "2666-07-03T22:29:28" +ik[10580] = 90 +il[10580] = -120 +im[10580] = 0.0552 +ij[10580] = 5 +id[10581] = "2666-08-15T17:23:34" +ik[10581] = 1.015 +il[10581] = 11 +im[10581] = 0.0992 +ij[10581] = 28.6 +id[10582] = "2666-09-02T18:33:50" +ik[10582] = 1.217 +il[10582] = 65 +im[10582] = 0.0135 +ij[10582] = 28.7 +id[10583] = "2666-09-13T22:16:43" +ik[10583] = 54.447 +il[10583] = 99 +im[10583] = 0.0983 +ij[10583] = 8 +id[10584] = "2666-09-24T10:11:08" +ik[10584] = 0.185 +il[10584] = 131 +im[10584] = 0.1059 +ij[10584] = 28.8 +id[10585] = "2667-02-09T09:36:00" +ik[10585] = 1.21 +il[10585] = 179 +im[10585] = 0.0798 +ij[10585] = 12 +id[10586] = "2667-04-09T01:52:02" +ik[10586] = 2.84 +il[10586] = 176 +im[10586] = 0.0887 +ij[10586] = 27.6 +id[10587] = "2667-04-18T23:45:53" +ik[10587] = 4.081 +il[10587] = -158 +im[10587] = 0.0351 +ij[10587] = 28.1 +id[10588] = "2667-04-30T22:44:32" +ik[10588] = 2.752 +il[10588] = -120 +im[10588] = 0.023 +ij[10588] = 28.1 +id[10589] = "2667-05-16T02:24:28" +ik[10589] = 3.97 +il[10589] = -73 +im[10589] = 0.0266 +ij[10589] = 27.2 +id[10590] = "2667-06-17T14:08:09" +ik[10590] = 1.754 +il[10590] = 29 +im[10590] = 0.0226 +ij[10590] = 28.6 +id[10591] = "2667-06-27T04:18:20" +ik[10591] = 1.168 +il[10591] = 58 +im[10591] = 0.0803 +ij[10591] = 28.7 +id[10592] = "2667-07-04T02:25:38" +ik[10592] = 54.662 +il[10592] = 80 +im[10592] = 0.0784 +ij[10592] = 9 +id[10593] = "2667-07-16T16:55:46" +ik[10593] = 1.214 +il[10593] = 118 +im[10593] = 0.0077 +ij[10593] = 28.8 +id[10594] = "2667-09-10T23:48:37" +ik[10594] = 2.543 +il[10594] = -71 +im[10594] = 0.1264 +ij[10594] = 28.4 +id[10595] = "2667-09-14T15:57:38" +ik[10595] = 90 +il[10595] = -60 +im[10595] = 0.0389 +ij[10595] = 6 +id[10596] = "2667-10-26T09:33:21" +ik[10596] = 1.606 +il[10596] = 57 +im[10596] = 0.102 +ij[10596] = 27.4 +id[10597] = "2667-11-04T23:27:53" +ik[10597] = 0 +il[10597] = 75 +im[10597] = 0.4183 +ij[10597] = 13 +id[10598] = "2667-11-15T14:24:28" +ik[10598] = 0.757 +il[10598] = 96 +im[10598] = 0.5076 +ij[10598] = 27.4 +id[10599] = "2667-11-26T11:00:57" +ik[10599] = 2.99 +il[10599] = 128 +im[10599] = 0.3796 +ij[10599] = 11 +id[10600] = "2667-11-30T02:31:24" +ik[10600] = 0.5582 +il[10600] = 102 +im[10600] = 0.5583 +ij[10600] = 2 +id[10601] = "2667-12-17T02:36:29" +ik[10601] = 42.13 +il[10601] = 122 +im[10601] = 0.2389 +ij[10601] = 7.155 +id[10602] = "2668-01-17T10:41:16" +ik[10602] = 73.47 +il[10602] = -176 +im[10602] = 0.0139 +ij[10602] = 14 +id[10603] = "2668-01-26T12:07:08" +ik[10603] = 1.475 +il[10603] = -155 +im[10603] = 0.2384 +ij[10603] = 27.1 +id[10604] = "2668-02-05T09:49:40" +ik[10604] = 90 +il[10604] = -129 +im[10604] = 0.1766 +ij[10604] = 5 +id[10605] = "2668-03-20T05:48:28" +ik[10605] = 2.149 +il[10605] = 7 +im[10605] = 0.0876 +ij[10605] = 27.3 +id[10606] = "2668-04-07T19:09:48" +ik[10606] = 0.014 +il[10606] = 65 +im[10606] = 0.1356 +ij[10606] = 27.5 +id[10607] = "2668-04-10T04:24:18" +ik[10607] = 0.466 +il[10607] = 74 +im[10607] = 0.1246 +ij[10607] = 28.5 +id[10608] = "2668-04-24T03:36:45" +ik[10608] = 54.023 +il[10608] = 116 +im[10608] = 0.111 +ij[10608] = 8 +id[10609] = "2668-05-22T22:37:57" +ik[10609] = 3.86 +il[10609] = -156 +im[10609] = 0.0993 +ij[10609] = 27.6 +id[10610] = "2668-05-27T11:29:19" +ik[10610] = 4.542 +il[10610] = -142 +im[10610] = 0.0576 +ij[10610] = 28.1 +id[10611] = "2668-06-30T00:00:44" +ik[10611] = 5.479 +il[10611] = -40 +im[10611] = 0.0087 +ij[10611] = 27.2 +id[10612] = "2668-08-07T17:52:56" +ik[10612] = 0.293 +il[10612] = 69 +im[10612] = 0.0845 +ij[10612] = 28.6 +id[10613] = "2668-09-11T06:04:19" +ik[10613] = 1.41 +il[10613] = 168 +im[10613] = 0.0302 +ij[10613] = 12 +id[10614] = "2668-11-13T19:00:55" +ik[10614] = 4.18 +il[10614] = 175 +im[10614] = 0.0289 +ij[10614] = 27.4 +id[10615] = "2668-12-05T19:35:11" +ik[10615] = 1.7 +il[10615] = -118 +im[10615] = 0.0929 +ij[10615] = 28.1 +id[10616] = "2669-01-07T16:54:42" +ik[10616] = 0.296 +il[10616] = -17 +im[10616] = 0.081 +ij[10616] = 27.3 +id[10617] = "2669-01-25T15:40:55" +ik[10617] = 1.048 +il[10617] = 38 +im[10617] = 0.0248 +ij[10617] = 27.5 +id[10618] = "2669-02-09T20:01:40" +ik[10618] = 53.716 +il[10618] = 86 +im[10618] = 0.039 +ij[10618] = 9 +id[10619] = "2669-02-28T15:09:30" +ik[10619] = 1.151 +il[10619] = 145 +im[10619] = 0.0829 +ij[10619] = 28.5 +id[10620] = "2669-03-12T01:21:49" +ik[10620] = 1.41 +il[10620] = 180 +im[10620] = 0.0462 +ij[10620] = 27.6 +id[10621] = "2669-04-23T01:27:34" +ik[10621] = 1.366 +il[10621] = -48 +im[10621] = 0.1319 +ij[10621] = 27.2 +id[10622] = "2669-04-25T06:16:30" +ik[10622] = 90 +il[10622] = -42 +im[10622] = 0.0551 +ij[10622] = 6 +id[10623] = "2669-06-10T10:41:43" +ik[10623] = 0 +il[10623] = 89 +im[10623] = 0.1467 +ij[10623] = 13 +id[10624] = "2669-06-29T03:05:07" +ik[10624] = 0.5204 +il[10624] = 78 +im[10624] = 0.5205 +ij[10624] = 2 +id[10625] = "2669-07-03T01:10:33" +ik[10625] = 2.79 +il[10625] = 92 +im[10625] = 0.3096 +ij[10625] = 11 +id[10626] = "2669-07-24T21:49:25" +ik[10626] = 44.46 +il[10626] = 128 +im[10626] = 0.4307 +ij[10626] = 7.1662 +id[10627] = "2669-08-27T22:00:09" +ik[10627] = 78.47 +il[10627] = -165 +im[10627] = 0.1282 +ij[10627] = 14 +id[10628] = "2669-09-11T08:05:18" +ik[10628] = 90 +il[10628] = -128 +im[10628] = 0.0794 +ij[10628] = 5 +id[10629] = "2669-09-23T01:03:38" +ik[10629] = 2.207 +il[10629] = -92 +im[10629] = 0.1774 +ij[10629] = 28.7 +id[10630] = "2669-09-24T05:11:00" +ik[10630] = 2.233 +il[10630] = -89 +im[10630] = 0.1535 +ij[10630] = 28.6 +id[10631] = "2669-10-11T09:47:48" +ik[10631] = 0.555 +il[10631] = -36 +im[10631] = 0.056 +ij[10631] = 28.8 +id[10632] = "2669-11-23T17:39:28" +ik[10632] = 54.018 +il[10632] = 97 +im[10632] = 0.0789 +ij[10632] = 8 +id[10633] = "2670-01-06T01:08:58" +ik[10633] = 1.232 +il[10633] = -130 +im[10633] = 0.0989 +ij[10633] = 28.4 +id[10634] = "2670-01-06T12:15:08" +ik[10634] = 4.426 +il[10634] = -127 +im[10634] = 0.0948 +ij[10634] = 27.1 +id[10635] = "2670-02-21T11:39:35" +ik[10635] = 0.683 +il[10635] = 17 +im[10635] = 0.0651 +ij[10635] = 27.3 +id[10636] = "2670-03-11T01:12:02" +ik[10636] = 0.754 +il[10636] = 71 +im[10636] = 0.0386 +ij[10636] = 27.5 +id[10637] = "2670-04-25T19:19:12" +ik[10637] = 1.04 +il[10637] = -172 +im[10637] = 0.028 +ij[10637] = 12 +id[10638] = "2670-05-30T14:07:08" +ik[10638] = 4.554 +il[10638] = 111 +im[10638] = 0.0483 +ij[10638] = 27.2 +id[10639] = "2670-06-08T01:19:55" +ik[10639] = 3.242 +il[10639] = 137 +im[10639] = 0.0504 +ij[10639] = 28.1 +id[10640] = "2670-06-17T01:18:20" +ik[10640] = 0.088 +il[10640] = 166 +im[10640] = 0.0872 +ij[10640] = 27.9 +id[10641] = "2670-07-12T07:53:28" +ik[10641] = 2.549 +il[10641] = -116 +im[10641] = 0.023 +ij[10641] = 28.1 +id[10642] = "2670-07-20T17:23:08" +ik[10642] = 0.799 +il[10642] = -90 +im[10642] = 0.0941 +ij[10642] = 28.7 +id[10643] = "2670-07-29T16:16:36" +ik[10643] = 0.179 +il[10643] = -62 +im[10643] = 0.0599 +ij[10643] = 28.6 +id[10644] = "2670-08-04T01:53:19" +ik[10644] = 0.904 +il[10644] = -45 +im[10644] = 0.0953 +ij[10644] = 28.8 +id[10645] = "2670-09-10T17:11:02" +ik[10645] = 54.299 +il[10645] = 69 +im[10645] = 0.0244 +ij[10645] = 9 +id[10646] = "2670-10-18T20:28:01" +ik[10646] = 2.286 +il[10646] = -175 +im[10646] = 0.1343 +ij[10646] = 27.4 +id[10647] = "2670-11-28T16:26:50" +ik[10647] = 90 +il[10647] = -49 +im[10647] = 0.2122 +ij[10647] = 6 +id[10648] = "2670-12-24T19:51:35" +ik[10648] = 0.067 +il[10648] = 20 +im[10648] = 0.1581 +ij[10648] = 27.3 +id[10649] = "2671-01-17T22:00:36" +ik[10649] = 0 +il[10649] = 83 +im[10649] = 0.1753 +ij[10649] = 13 +id[10650] = "2671-01-27T01:53:38" +ik[10650] = 0.5312 +il[10650] = 100 +im[10650] = 0.5313 +ij[10650] = 2 +id[10651] = "2671-02-08T05:38:24" +ik[10651] = 7.56 +il[10651] = 96 +im[10651] = 0.5232 +ij[10651] = 11 +id[10652] = "2671-03-01T03:11:12" +ik[10652] = 42.22 +il[10652] = 131 +im[10652] = 0.0744 +ij[10652] = 7.157 +id[10653] = "2671-04-02T04:55:57" +ik[10653] = 74.29 +il[10653] = -166 +im[10653] = 0.1941 +ij[10653] = 14 +id[10654] = "2671-04-16T08:25:48" +ik[10654] = 1.736 +il[10654] = -132 +im[10654] = 0.1706 +ij[10654] = 27.5 +id[10655] = "2671-04-20T21:37:18" +ik[10655] = 90 +il[10655] = -118 +im[10655] = 0.222 +ij[10655] = 5 +id[10656] = "2671-06-05T03:46:38" +ik[10656] = 4.23 +il[10656] = 22 +im[10656] = 0.1293 +ij[10656] = 27.6 +id[10657] = "2671-07-04T18:00:50" +ik[10657] = 54.446 +il[10657] = 112 +im[10657] = 0.1147 +ij[10657] = 8 +id[10658] = "2671-07-09T04:29:34" +ik[10658] = 0.775 +il[10658] = 126 +im[10658] = 0.0477 +ij[10658] = 28.5 +id[10659] = "2671-07-14T20:32:43" +ik[10659] = 6.175 +il[10659] = 143 +im[10659] = 0.0726 +ij[10659] = 27.2 +id[10660] = "2671-09-06T06:21:53" +ik[10660] = 0.064 +il[10660] = -54 +im[10660] = 0.0629 +ij[10660] = 28.7 +id[10661] = "2671-09-19T08:27:01" +ik[10661] = 0.542 +il[10661] = -14 +im[10661] = 0.0725 +ij[10661] = 28.8 +id[10662] = "2671-09-20T10:22:22" +ik[10662] = 0.538 +il[10662] = -11 +im[10662] = 0.0592 +ij[10662] = 28.6 +id[10663] = "2671-11-22T19:45:07" +ik[10663] = 0.55 +il[10663] = 168 +im[10663] = 0.015 +ij[10663] = 12 +id[10664] = "2672-01-17T02:08:18" +ik[10664] = 0.814 +il[10664] = 148 +im[10664] = 0.0887 +ij[10664] = 28.4 +id[10665] = "2672-01-22T05:59:16" +ik[10665] = 1.035 +il[10665] = 164 +im[10665] = 0.0234 +ij[10665] = 28.1 +id[10666] = "2672-01-22T19:36:28" +ik[10666] = 0.02 +il[10666] = 166 +im[10666] = 0.0134 +ij[10666] = 27.3 +id[10667] = "2672-02-04T09:18:43" +ik[10667] = 2.761 +il[10667] = -155 +im[10667] = 0.0447 +ij[10667] = 28.1 +id[10668] = "2672-02-09T10:32:01" +ik[10668] = 1.007 +il[10668] = -140 +im[10668] = 0.0506 +ij[10668] = 27.5 +id[10669] = "2672-03-24T11:19:30" +ik[10669] = 2.33 +il[10669] = -3 +im[10669] = 0.0196 +ij[10669] = 27.6 +id[10670] = "2672-04-23T15:27:58" +ik[10670] = 54.356 +il[10670] = 92 +im[10670] = 0.031 +ij[10670] = 9 +id[10671] = "2672-05-01T09:37:21" +ik[10671] = 3.108 +il[10671] = 116 +im[10671] = 0.1184 +ij[10671] = 27.2 +id[10672] = "2672-05-30T14:42:08" +ik[10672] = 2.073 +il[10672] = -153 +im[10672] = 0.1537 +ij[10672] = 28.5 +id[10673] = "2672-07-02T08:39:48" +ik[10673] = 90 +il[10673] = -53 +im[10673] = 0.157 +ij[10673] = 6 +id[10674] = "2672-07-05T20:41:34" +ik[10674] = 0.472 +il[10674] = -44 +im[10674] = 0.0316 +ij[10674] = 28.7 +id[10675] = "2672-07-21T05:11:45" +ik[10675] = 0.992 +il[10675] = -6 +im[10675] = 0.0683 +ij[10675] = 28.8 +id[10676] = "2672-08-08T13:41:57" +ik[10676] = 5.532 +il[10676] = 39 +im[10676] = 0.2674 +ij[10676] = 28.6 +id[10677] = "2672-08-20T04:56:23" +ik[10677] = 0 +il[10677] = 63 +im[10677] = 0.2482 +ij[10677] = 13 +id[10678] = "2672-09-11T04:22:04" +ik[10678] = 8.65 +il[10678] = 129 +im[10678] = 0.2788 +ij[10678] = 11 +id[10679] = "2672-09-19T22:30:04" +ik[10679] = 0.5204 +il[10679] = 106 +im[10679] = 0.5205 +ij[10679] = 2 +id[10680] = "2672-10-02T15:16:01" +ik[10680] = 43.43 +il[10680] = 122 +im[10680] = 0.3986 +ij[10680] = 7.1631 +id[10681] = "2672-10-14T08:45:36" +ik[10681] = 4.988 +il[10681] = 142 +im[10681] = 0.2969 +ij[10681] = 28.8 +id[10682] = "2672-10-29T05:47:45" +ik[10682] = 3.477 +il[10682] = 173 +im[10682] = 0.2189 +ij[10682] = 28.6 +id[10683] = "2672-11-04T14:38:49" +ik[10683] = 76.4 +il[10683] = -173 +im[10683] = 0.168 +ij[10683] = 14 +id[10684] = "2672-11-20T20:32:44" +ik[10684] = 90 +il[10684] = -132 +im[10684] = 0.1185 +ij[10684] = 5 +id[10685] = "2673-01-19T07:38:14" +ik[10685] = 3.528 +il[10685] = 52 +im[10685] = 0.0782 +ij[10685] = 27.1 +id[10686] = "2673-02-06T01:14:39" +ik[10686] = 53.716 +il[10686] = 107 +im[10686] = 0.0123 +ij[10686] = 8 +id[10687] = "2673-03-07T13:53:21" +ik[10687] = 1.176 +il[10687] = -161 +im[10687] = 0.0142 +ij[10687] = 27.3 +id[10688] = "2673-03-25T08:31:08" +ik[10688] = 0.515 +il[10688] = -106 +im[10688] = 0.0521 +ij[10688] = 27.5 +id[10689] = "2673-05-08T09:47:31" +ik[10689] = 3.52 +il[10689] = 29 +im[10689] = 0.0133 +ij[10689] = 27.6 +id[10690] = "2673-07-03T08:39:50" +ik[10690] = 0.46 +il[10690] = 179 +im[10690] = 0.0574 +ij[10690] = 12 +id[10691] = "2673-08-05T21:26:47" +ik[10691] = 0.346 +il[10691] = 100 +im[10691] = 0.009 +ij[10691] = 28.5 +id[10692] = "2673-08-13T18:15:24" +ik[10692] = 0.602 +il[10692] = 124 +im[10692] = 0.0881 +ij[10692] = 28.7 +id[10693] = "2673-08-23T14:05:16" +ik[10693] = 0.648 +il[10693] = 154 +im[10693] = 0.0443 +ij[10693] = 28.8 +id[10694] = "2673-09-11T03:53:25" +ik[10694] = 1.155 +il[10694] = -149 +im[10694] = 0.0948 +ij[10694] = 28.6 +id[10695] = "2673-09-18T17:31:55" +ik[10695] = 4.229 +il[10695] = -126 +im[10695] = 0.0287 +ij[10695] = 28.1 +id[10696] = "2673-10-30T12:33:47" +ik[10696] = 3.47 +il[10696] = 1 +im[10696] = 0.0801 +ij[10696] = 27.4 +id[10697] = "2673-11-22T22:27:33" +ik[10697] = 53.676 +il[10697] = 72 +im[10697] = 0.0841 +ij[10697] = 9 +id[10698] = "2673-12-25T22:56:01" +ik[10698] = 0.65 +il[10698] = 174 +im[10698] = 0.1446 +ij[10698] = 27.3 +id[10699] = "2674-01-14T04:41:21" +ik[10699] = 0.817 +il[10699] = -126 +im[10699] = 0.1216 +ij[10699] = 27.5 +id[10700] = "2674-01-24T00:14:48" +ik[10700] = 1.54 +il[10700] = -95 +im[10700] = 0.1806 +ij[10700] = 28.4 +id[10701] = "2674-02-11T12:04:08" +ik[10701] = 90 +il[10701] = -37 +im[10701] = 0.1907 +ij[10701] = 6 +id[10702] = "2674-03-10T22:51:25" +ik[10702] = 2.49 +il[10702] = 36 +im[10702] = 0.2956 +ij[10702] = 27.6 +id[10703] = "2674-03-30T14:39:16" +ik[10703] = 0 +il[10703] = 85 +im[10703] = 0.1561 +ij[10703] = 13 +id[10704] = "2674-04-20T14:33:01" +ik[10704] = 0.5427 +il[10704] = 89 +im[10704] = 0.5428 +ij[10704] = 2 +id[10705] = "2674-04-21T13:58:15" +ik[10705] = 4.83 +il[10705] = 89 +im[10705] = 0.5294 +ij[10705] = 27.6 +id[10706] = "2674-04-22T08:03:50" +ik[10706] = 6.71 +il[10706] = 100 +im[10706] = 0.5014 +ij[10706] = 11 +id[10707] = "2674-05-13T01:12:01" +ik[10707] = 43.44 +il[10707] = 135 +im[10707] = 0.2601 +ij[10707] = 7.163 +id[10708] = "2674-06-05T12:19:09" +ik[10708] = 3.86 +il[10708] = -170 +im[10708] = 0.1154 +ij[10708] = 27.6 +id[10709] = "2674-06-15T12:26:49" +ik[10709] = 76.91 +il[10709] = -159 +im[10709] = 0.2602 +ij[10709] = 14 +id[10710] = "2674-07-01T14:37:09" +ik[10710] = 90 +il[10710] = -117 +im[10710] = 0.1755 +ij[10710] = 5 +id[10711] = "2674-09-11T14:52:28" +ik[10711] = 54.456 +il[10711] = 102 +im[10711] = 0.1229 +ij[10711] = 8 +id[10712] = "2674-09-29T19:42:05" +ik[10712] = 0.012 +il[10712] = 158 +im[10712] = 0.0838 +ij[10712] = 28.7 +id[10713] = "2674-10-08T16:56:55" +ik[10713] = 0.294 +il[10713] = -175 +im[10713] = 0.0808 +ij[10713] = 28.8 +id[10714] = "2674-10-16T00:39:36" +ik[10714] = 0.103 +il[10714] = -152 +im[10714] = 0.0747 +ij[10714] = 28.5 +id[10715] = "2674-11-03T06:31:06" +ik[10715] = 0.928 +il[10715] = -96 +im[10715] = 0.0083 +ij[10715] = 28.6 +id[10716] = "2675-02-06T19:20:38" +ik[10716] = 1.18 +il[10716] = -180 +im[10716] = 0.0684 +ij[10716] = 12 +id[10717] = "2675-03-18T06:37:35" +ik[10717] = 2.051 +il[10717] = 124 +im[10717] = 0.0202 +ij[10717] = 28.1 +id[10718] = "2675-04-08T15:04:03" +ik[10718] = 2.83 +il[10718] = 180 +im[10718] = 0.0824 +ij[10718] = 27.6 +id[10719] = "2675-04-10T09:11:05" +ik[10719] = 3.032 +il[10719] = -174 +im[10719] = 0.0916 +ij[10719] = 28.1 +id[10720] = "2675-05-15T16:00:00" +ik[10720] = 3.953 +il[10720] = -64 +im[10720] = 0.0643 +ij[10720] = 27.2 +id[10721] = "2675-07-01T20:33:49" +ik[10721] = 54.664 +il[10721] = 83 +im[10721] = 0.0143 +ij[10721] = 9 +id[10722] = "2675-07-24T14:40:42" +ik[10722] = 0.496 +il[10722] = 152 +im[10722] = 0.1303 +ij[10722] = 28.7 +id[10723] = "2675-07-31T19:16:36" +ik[10723] = 0.116 +il[10723] = 174 +im[10723] = 0.0204 +ij[10723] = 28.8 +id[10724] = "2675-09-11T02:50:38" +ik[10724] = 4.621 +il[10724] = -61 +im[10724] = 0.1662 +ij[10724] = 28.6 +id[10725] = "2675-09-12T05:23:27" +ik[10725] = 90 +il[10725] = -57 +im[10725] = 0.1325 +ij[10725] = 6 +id[10726] = "2675-09-16T00:45:12" +ik[10726] = 3.681 +il[10726] = -47 +im[10726] = 0.0402 +ij[10726] = 28.5 +id[10727] = "2675-11-02T12:27:14" +ik[10727] = 0 +il[10727] = 88 +im[10727] = 0.3728 +ij[10727] = 13 +id[10728] = "2675-11-17T15:01:38" +ik[10728] = 0.5483 +il[10728] = 74 +im[10728] = 0.5483 +ij[10728] = 2 +id[10729] = "2675-11-24T00:20:09" +ik[10729] = 3.36 +il[10729] = 92 +im[10729] = 0.0555 +ij[10729] = 11 +id[10730] = "2675-12-14T13:31:49" +ik[10730] = 42.04 +il[10730] = 124 +im[10730] = 0.4507 +ij[10730] = 7.1551 +id[10731] = "2676-01-15T00:16:32" +ik[10731] = 73.49 +il[10731] = -174 +im[10731] = 0.2035 +ij[10731] = 14 +id[10732] = "2676-01-26T18:09:47" +ik[10732] = 1.586 +il[10732] = -146 +im[10732] = 0.2338 +ij[10732] = 27.1 +id[10733] = "2676-02-02T22:15:20" +ik[10733] = 90 +il[10733] = -127 +im[10733] = 0.0392 +ij[10733] = 5 +id[10734] = "2676-03-19T22:29:47" +ik[10734] = 2.104 +il[10734] = 17 +im[10734] = 0.0335 +ij[10734] = 27.3 +id[10735] = "2676-04-07T10:40:01" +ik[10735] = 0.041 +il[10735] = 74 +im[10735] = 0.12 +ij[10735] = 27.5 +id[10736] = "2676-04-21T17:25:24" +ik[10736] = 54.007 +il[10736] = 118 +im[10736] = 0.0875 +ij[10736] = 8 +id[10737] = "2676-04-29T21:33:41" +ik[10737] = 0.187 +il[10737] = 144 +im[10737] = 0.0458 +ij[10737] = 28.4 +id[10738] = "2676-05-22T12:38:55" +ik[10738] = 3.85 +il[10738] = -147 +im[10738] = 0.0891 +ij[10738] = 27.6 +id[10739] = "2676-06-29T13:18:56" +ik[10739] = 5.459 +il[10739] = -31 +im[10739] = 0.0373 +ij[10739] = 27.2 +id[10740] = "2676-09-08T22:49:26" +ik[10740] = 1.4 +il[10740] = 168 +im[10740] = 0.0766 +ij[10740] = 12 +id[10741] = "2676-10-26T10:19:52" +ik[10741] = 1.807 +il[10741] = 130 +im[10741] = 0.067 +ij[10741] = 28.6 +id[10742] = "2676-11-13T08:28:00" +ik[10742] = 4.166 +il[10742] = -176 +im[10742] = 0.0155 +ij[10742] = 27.4 +id[10743] = "2676-11-17T15:37:00" +ik[10743] = 0.984 +il[10743] = -163 +im[10743] = 0.0591 +ij[10743] = 28.5 +id[10744] = "2676-11-18T17:24:00" +ik[10744] = 1.622 +il[10744] = -160 +im[10744] = 0.0727 +ij[10744] = 28.1 +id[10745] = "2677-01-07T06:57:21" +ik[10745] = 0.301 +il[10745] = -8 +im[10745] = 0.1057 +ij[10745] = 27.3 +id[10746] = "2677-01-25T06:11:07" +ik[10746] = 1.043 +il[10746] = 47 +im[10746] = 0.0657 +ij[10746] = 27.5 +id[10747] = "2677-02-07T07:28:05" +ik[10747] = 53.699 +il[10747] = 88 +im[10747] = 0.1148 +ij[10747] = 9 +id[10748] = "2677-03-11T17:57:54" +ik[10748] = 1.37 +il[10748] = -170 +im[10748] = 0.0945 +ij[10748] = 27.6 +id[10749] = "2677-04-22T23:42:01" +ik[10749] = 90 +il[10749] = -39 +im[10749] = 0.1829 +ij[10749] = 6 +id[10750] = "2677-04-23T02:27:34" +ik[10750] = 1.272 +il[10750] = -39 +im[10750] = 0.1807 +ij[10750] = 27.2 +id[10751] = "2677-06-08T00:16:59" +ik[10751] = 0 +il[10751] = 91 +im[10751] = 0.1848 +ij[10751] = 13 +id[10752] = "2677-06-30T05:55:16" +ik[10752] = 0.5145 +il[10752] = 84 +im[10752] = 0.5146 +ij[10752] = 2 +id[10753] = "2677-06-30T18:14:24" +ik[10753] = 2.48 +il[10753] = 95 +im[10753] = 0.5107 +ij[10753] = 11 +id[10754] = "2677-07-23T02:22:34" +ik[10754] = 45.09 +il[10754] = 131 +im[10754] = 0.2933 +ij[10754] = 7.1661 +id[10755] = "2677-08-25T14:24:16" +ik[10755] = 78.59 +il[10755] = -162 +im[10755] = 0.2447 +ij[10755] = 14 +id[10756] = "2677-09-09T00:34:13" +ik[10756] = 90 +il[10756] = -125 +im[10756] = 0.1977 +ij[10756] = 5 +id[10757] = "2677-10-21T20:07:35" +ik[10757] = 0.109 +il[10757] = 5 +im[10757] = 0.1382 +ij[10757] = 28.7 +id[10758] = "2677-10-26T15:22:27" +ik[10758] = 0.026 +il[10758] = 20 +im[10758] = 0.0813 +ij[10758] = 28.8 +id[10759] = "2677-11-21T07:38:46" +ik[10759] = 54.035 +il[10759] = 99 +im[10759] = 0.1148 +ij[10759] = 8 +id[10760] = "2677-12-18T15:35:51" +ik[10760] = 0.589 +il[10760] = -176 +im[10760] = 0.0836 +ij[10760] = 28.6 +id[10761] = "2678-01-06T02:00:00" +ik[10761] = 4.447 +il[10761] = -118 +im[10761] = 0.1049 +ij[10761] = 27.1 +id[10762] = "2678-01-25T17:03:50" +ik[10762] = 0.182 +il[10762] = -57 +im[10762] = 0.0418 +ij[10762] = 28.5 +id[10763] = "2678-02-21T01:00:01" +ik[10763] = 0.674 +il[10763] = 25 +im[10763] = 0.086 +ij[10763] = 27.3 +id[10764] = "2678-03-04T12:43:46" +ik[10764] = 2.801 +il[10764] = 61 +im[10764] = 0.0746 +ij[10764] = 28.1 +id[10765] = "2678-03-10T14:24:27" +ik[10765] = 0.758 +il[10765] = 79 +im[10765] = 0.0659 +ij[10765] = 27.5 +id[10766] = "2678-04-23T10:00:28" +ik[10766] = 1.08 +il[10766] = -170 +im[10766] = 0.0807 +ij[10766] = 12 +id[10767] = "2678-05-30T03:14:13" +ik[10767] = 4.542 +il[10767] = 120 +im[10767] = 0.017 +ij[10767] = 27.2 +id[10768] = "2678-06-16T14:34:39" +ik[10768] = 0.077 +il[10768] = 174 +im[10768] = 0.0644 +ij[10768] = 27.9 +id[10769] = "2678-06-19T03:17:25" +ik[10769] = 1.211 +il[10769] = -178 +im[10769] = 0.0881 +ij[10769] = 28.1 +id[10770] = "2678-08-15T20:52:13" +ik[10770] = 0.394 +il[10770] = 1 +im[10770] = 0.0683 +ij[10770] = 28.7 +id[10771] = "2678-08-18T09:56:09" +ik[10771] = 0.108 +il[10771] = 8 +im[10771] = 0.0991 +ij[10771] = 28.8 +id[10772] = "2678-09-08T08:53:27" +ik[10772] = 54.32 +il[10772] = 72 +im[10772] = 0.0721 +ij[10772] = 9 +id[10773] = "2678-10-18T14:05:47" +ik[10773] = 2.234 +il[10773] = -166 +im[10773] = 0.1445 +ij[10773] = 27.4 +id[10774] = "2678-10-24T06:20:35" +ik[10774] = 4.029 +il[10774] = -149 +im[10774] = 0.0453 +ij[10774] = 28.6 +id[10775] = "2678-11-26T03:38:12" +ik[10775] = 90 +il[10775] = -47 +im[10775] = 0.0744 +ij[10775] = 6 +id[10776] = "2678-12-26T04:26:40" +ik[10776] = 0.192 +il[10776] = 34 +im[10776] = 0.1459 +ij[10776] = 27.3 +id[10777] = "2679-01-06T00:48:40" +ik[10777] = 1.141 +il[10777] = 56 +im[10777] = 0.1362 +ij[10777] = 28.5 +id[10778] = "2679-01-15T14:24:43" +ik[10778] = 0 +il[10778] = 74 +im[10778] = 0.4216 +ij[10778] = 13 +id[10779] = "2679-01-28T07:51:14" +ik[10779] = 0.5415 +il[10779] = 102 +im[10779] = 0.5416 +ij[10779] = 2 +id[10780] = "2679-02-05T18:10:04" +ik[10780] = 7.34 +il[10780] = 126 +im[10780] = 0.2833 +ij[10780] = 11 +id[10781] = "2679-02-26T13:33:18" +ik[10781] = 41.96 +il[10781] = 133 +im[10781] = 0.3701 +ij[10781] = 7.1569 +id[10782] = "2679-03-18T23:22:24" +ik[10782] = 5.107 +il[10782] = 170 +im[10782] = 0.2009 +ij[10782] = 28.5 +id[10783] = "2679-03-30T16:41:04" +ik[10783] = 74.09 +il[10783] = -164 +im[10783] = 0.0197 +ij[10783] = 14 +id[10784] = "2679-04-16T10:10:14" +ik[10784] = 1.604 +il[10784] = -121 +im[10784] = 0.1047 +ij[10784] = 27.5 +id[10785] = "2679-04-18T10:41:53" +ik[10785] = 90 +il[10785] = -116 +im[10785] = 0.1691 +ij[10785] = 5 +id[10786] = "2679-06-04T20:28:49" +ik[10786] = 4.22 +il[10786] = 31 +im[10786] = 0.141 +ij[10786] = 27.6 +id[10787] = "2679-07-02T10:50:48" +ik[10787] = 54.437 +il[10787] = 115 +im[10787] = 0.1052 +ij[10787] = 8 +id[10788] = "2679-07-14T10:52:16" +ik[10788] = 6.147 +il[10788] = 152 +im[10788] = 0.03 +ij[10788] = 27.2 +id[10789] = "2679-10-01T20:28:19" +ik[10789] = 0.562 +il[10789] = 35 +im[10789] = 0.0846 +ij[10789] = 28.7 +id[10790] = "2679-10-03T07:47:51" +ik[10790] = 0.308 +il[10790] = 39 +im[10790] = 0.0904 +ij[10790] = 28.8 +id[10791] = "2679-10-15T22:02:03" +ik[10791] = 1.578 +il[10791] = 79 +im[10791] = 0.0761 +ij[10791] = 28.1 +id[10792] = "2679-11-20T08:48:28" +ik[10792] = 0.61 +il[10792] = 168 +im[10792] = 0.0748 +ij[10792] = 12 +id[10793] = "2680-01-17T16:28:33" +ik[10793] = 2.164 +il[10793] = 160 +im[10793] = 0.0939 +ij[10793] = 28.1 +id[10794] = "2680-01-22T08:57:20" +ik[10794] = 0.015 +il[10794] = 175 +im[10794] = 0.0497 +ij[10794] = 27.3 +id[10795] = "2680-02-08T23:58:40" +ik[10795] = 1.006 +il[10795] = -131 +im[10795] = 0.0139 +ij[10795] = 27.5 +id[10796] = "2680-02-20T00:07:03" +ik[10796] = 0.03 +il[10796] = -97 +im[10796] = 0.0755 +ij[10796] = 28.5 +id[10797] = "2680-03-24T01:20:43" +ik[10797] = 2.31 +il[10797] = 6 +im[10797] = 0.0235 +ij[10797] = 27.6 +id[10798] = "2680-04-21T07:31:43" +ik[10798] = 54.335 +il[10798] = 95 +im[10798] = 0.0631 +ij[10798] = 9 +id[10799] = "2680-05-01T00:55:07" +ik[10799] = 3.076 +il[10799] = 125 +im[10799] = 0.1304 +ij[10799] = 27.2 +id[10800] = "2680-05-28T03:33:41" +ik[10800] = 0.097 +il[10800] = -151 +im[10800] = 0.1291 +ij[10800] = 28.4 +id[10801] = "2680-06-30T01:51:10" +ik[10801] = 90 +il[10801] = -50 +im[10801] = 0.2176 +ij[10801] = 6 +id[10802] = "2680-08-17T16:41:31" +ik[10802] = 0 +il[10802] = 88 +im[10802] = 0.1156 +ij[10802] = 13 +id[10803] = "2680-09-08T19:01:55" +ik[10803] = 8.61 +il[10803] = 89 +im[10803] = 0.4887 +ij[10803] = 11 +id[10804] = "2680-09-21T03:46:16" +ik[10804] = 0.5052 +il[10804] = 113 +im[10804] = 0.5052 +ij[10804] = 2 +id[10805] = "2680-10-01T15:44:06" +ik[10805] = 44.96 +il[10805] = 127 +im[10805] = 0.2808 +ij[10805] = 7.1629 +id[10806] = "2680-11-02T07:32:49" +ik[10806] = 76.62 +il[10806] = -170 +im[10806] = 0.2482 +ij[10806] = 14 +id[10807] = "2680-11-06T19:13:09" +ik[10807] = 0.889 +il[10807] = -160 +im[10807] = 0.1226 +ij[10807] = 28.7 +id[10808] = "2680-11-07T07:14:44" +ik[10808] = 1.201 +il[10808] = -159 +im[10808] = 0.0996 +ij[10808] = 28.8 +id[10809] = "2680-11-18T11:16:23" +ik[10809] = 90 +il[10809] = -130 +im[10809] = 0.2213 +ij[10809] = 5 +id[10810] = "2681-01-18T23:19:33" +ik[10810] = 3.565 +il[10810] = 61 +im[10810] = 0.1101 +ij[10810] = 27.1 +id[10811] = "2681-02-03T05:00:19" +ik[10811] = 0.375 +il[10811] = 108 +im[10811] = 0.0932 +ij[10811] = 28.6 +id[10812] = "2681-02-03T12:44:37" +ik[10812] = 53.716 +il[10812] = 109 +im[10812] = 0.0879 +ij[10812] = 8 +id[10813] = "2681-03-07T03:56:27" +ik[10813] = 1.159 +il[10813] = -152 +im[10813] = 0.0577 +ij[10813] = 27.3 +id[10814] = "2681-03-24T22:15:34" +ik[10814] = 0.524 +il[10814] = -97 +im[10814] = 0.0169 +ij[10814] = 27.5 +id[10815] = "2681-04-25T15:10:57" +ik[10815] = 0.006 +il[10815] = 1 +im[10815] = 0.0412 +ij[10815] = 28.5 +id[10816] = "2681-05-07T23:03:37" +ik[10816] = 3.51 +il[10816] = 38 +im[10816] = 0.0264 +ij[10816] = 27.6 +id[10817] = "2681-05-09T19:55:20" +ik[10817] = 0.153 +il[10817] = 44 +im[10817] = 0.0137 +ij[10817] = 28.1 +id[10818] = "2681-07-01T03:14:24" +ik[10818] = 0.41 +il[10818] = -179 +im[10818] = 0.0846 +ij[10818] = 12 +id[10819] = "2681-08-28T05:14:55" +ik[10819] = 3.843 +il[10819] = 179 +im[10819] = 0.08 +ij[10819] = 28.1 +id[10820] = "2681-09-06T15:27:21" +ik[10820] = 0.023 +il[10820] = -153 +im[10820] = 0.017 +ij[10820] = 28.8 +id[10821] = "2681-09-08T06:32:49" +ik[10821] = 0.375 +il[10821] = -148 +im[10821] = 0.0451 +ij[10821] = 28.7 +id[10822] = "2681-10-30T02:54:13" +ik[10822] = 3.447 +il[10822] = 10 +im[10822] = 0.1028 +ij[10822] = 27.4 +id[10823] = "2681-11-20T09:53:58" +ik[10823] = 53.692 +il[10823] = 75 +im[10823] = 0.0087 +ij[10823] = 9 +id[10824] = "2681-12-09T07:33:53" +ik[10824] = 2.22 +il[10824] = 133 +im[10824] = 0.0855 +ij[10824] = 28.6 +id[10825] = "2681-12-25T15:38:13" +ik[10825] = 0.655 +il[10825] = -177 +im[10825] = 0.1362 +ij[10825] = 27.3 +id[10826] = "2682-01-13T23:40:00" +ik[10826] = 0.788 +il[10826] = -116 +im[10826] = 0.1523 +ij[10826] = 27.5 +id[10827] = "2682-02-09T01:37:01" +ik[10827] = 90 +il[10827] = -35 +im[10827] = 0.1848 +ij[10827] = 6 +id[10828] = "2682-03-12T05:40:30" +ik[10828] = 2.95 +il[10828] = 49 +im[10828] = 0.3126 +ij[10828] = 27.6 +id[10829] = "2682-03-28T07:33:16" +ik[10829] = 0 +il[10829] = 87 +im[10829] = 0.3971 +ij[10829] = 13 +id[10830] = "2682-04-14T17:48:23" +ik[10830] = 5.47 +il[10830] = 88 +im[10830] = 0.0411 +ij[10830] = 27.6 +id[10831] = "2682-04-19T23:13:55" +ik[10831] = 6.94 +il[10831] = 103 +im[10831] = 0.5058 +ij[10831] = 11 +id[10832] = "2682-04-21T16:12:47" +ik[10832] = 0.5463 +il[10832] = 116 +im[10832] = 0.5463 +ij[10832] = 2 +id[10833] = "2682-05-10T15:56:54" +ik[10833] = 43.35 +il[10833] = 137 +im[10833] = 0.0706 +ij[10833] = 7.1628 +id[10834] = "2682-06-06T15:07:17" +ik[10834] = 4.01 +il[10834] = -171 +im[10834] = 0.117 +ij[10834] = 27.6 +id[10835] = "2682-06-13T02:07:42" +ik[10835] = 76.77 +il[10835] = -157 +im[10835] = 0.2117 +ij[10835] = 14 +id[10836] = "2682-06-22T02:07:35" +ik[10836] = 1.437 +il[10836] = -136 +im[10836] = 0.1025 +ij[10836] = 28.5 +id[10837] = "2682-06-29T06:41:18" +ik[10837] = 90 +il[10837] = -114 +im[10837] = 0.1821 +ij[10837] = 5 +id[10838] = "2682-09-09T07:35:19" +ik[10838] = 54.464 +il[10838] = 105 +im[10838] = 0.0751 +ij[10838] = 8 +id[10839] = "2682-10-15T13:01:20" +ik[10839] = 0.589 +il[10839] = -144 +im[10839] = 0.0942 +ij[10839] = 28.4 +id[10840] = "2682-10-22T20:12:02" +ik[10840] = 0.225 +il[10840] = -121 +im[10840] = 0.0405 +ij[10840] = 28.8 +id[10841] = "2682-10-25T10:52:36" +ik[10841] = 0.712 +il[10841] = -113 +im[10841] = 0.0828 +ij[10841] = 28.7 +id[10842] = "2682-12-13T18:41:36" +ik[10842] = 1.37 +il[10842] = 41 +im[10842] = 0.0841 +ij[10842] = 28.1 +id[10843] = "2683-02-04T05:02:24" +ik[10843] = 1.14 +il[10843] = -178 +im[10843] = 0.0095 +ij[10843] = 12 +id[10844] = "2683-03-19T22:15:01" +ik[10844] = 3.239 +il[10844] = 129 +im[10844] = 0.0258 +ij[10844] = 28.1 +id[10845] = "2683-04-08T04:16:12" +ik[10845] = 2.82 +il[10845] = -171 +im[10845] = 0.0603 +ij[10845] = 27.6 +id[10846] = "2683-05-15T05:39:06" +ik[10846] = 3.935 +il[10846] = -55 +im[10846] = 0.092 +ij[10846] = 27.2 +id[10847] = "2683-05-18T22:56:17" +ik[10847] = 1.303 +il[10847] = -45 +im[10847] = 0.0382 +ij[10847] = 28.5 +id[10848] = "2683-06-29T14:45:34" +ik[10848] = 54.664 +il[10848] = 86 +im[10848] = 0.0946 +ij[10848] = 9 +id[10849] = "2683-08-16T11:10:36" +ik[10849] = 1.347 +il[10849] = -129 +im[10849] = 0.0587 +ij[10849] = 28.8 +id[10850] = "2683-08-21T17:26:09" +ik[10850] = 1.211 +il[10850] = -113 +im[10850] = 0.1269 +ij[10850] = 28.7 +id[10851] = "2683-09-09T18:55:27" +ik[10851] = 90 +il[10851] = -55 +im[10851] = 0.202 +ij[10851] = 6 +id[10852] = "2683-10-30T02:08:09" +ik[10852] = 0 +il[10852] = 88 +im[10852] = 0.0684 +ij[10852] = 13 +id[10853] = "2683-11-18T16:28:59" +ik[10853] = 0.5672 +il[10853] = 79 +im[10853] = 0.5672 +ij[10853] = 2 +id[10854] = "2683-11-21T13:40:48" +ik[10854] = 3.72 +il[10854] = 92 +im[10854] = 0.4508 +ij[10854] = 11 +id[10855] = "2683-12-12T03:14:44" +ik[10855] = 43.05 +il[10855] = 127 +im[10855] = 0.3508 +ij[10855] = 7.155 +id[10856] = "2684-01-12T13:04:30" +ik[10856] = 74.46 +il[10856] = -169 +im[10856] = 0.2872 +ij[10856] = 14 +id[10857] = "2684-01-26T22:36:53" +ik[10857] = 1.692 +il[10857] = -137 +im[10857] = 0.2161 +ij[10857] = 27.1 +id[10858] = "2684-01-31T10:48:05" +ik[10858] = 90 +il[10858] = -125 +im[10858] = 0.1416 +ij[10858] = 5 +id[10859] = "2684-03-19T15:00:53" +ik[10859] = 2.061 +il[10859] = 26 +im[10859] = 0.0285 +ij[10859] = 27.3 +id[10860] = "2684-03-21T16:53:54" +ik[10860] = 1.291 +il[10860] = 32 +im[10860] = 0.0387 +ij[10860] = 28.6 +id[10861] = "2684-04-07T02:00:00" +ik[10861] = 0.063 +il[10861] = 83 +im[10861] = 0.0838 +ij[10861] = 27.5 +id[10862] = "2684-04-19T07:06:55" +ik[10862] = 53.99 +il[10862] = 121 +im[10862] = 0.0086 +ij[10862] = 8 +id[10863] = "2684-05-22T02:34:11" +ik[10863] = 3.83 +il[10863] = -139 +im[10863] = 0.0631 +ij[10863] = 27.6 +id[10864] = "2684-06-29T02:32:42" +ik[10864] = 5.439 +il[10864] = -23 +im[10864] = 0.0714 +ij[10864] = 27.2 +id[10865] = "2684-07-20T21:20:52" +ik[10865] = 2.917 +il[10865] = 44 +im[10865] = 0.054 +ij[10865] = 28.1 +id[10866] = "2684-07-25T10:07:58" +ik[10866] = 0.088 +il[10866] = 57 +im[10866] = 0.0916 +ij[10866] = 28.5 +id[10867] = "2684-09-06T15:41:45" +ik[10867] = 1.4 +il[10867] = 179 +im[10867] = 0.0737 +ij[10867] = 12 +id[10868] = "2684-10-29T18:42:46" +ik[10868] = 2.199 +il[10868] = 150 +im[10868] = 0.0363 +ij[10868] = 28.1 +id[10869] = "2684-11-12T21:51:59" +ik[10869] = 4.153 +il[10869] = -168 +im[10869] = 0.0528 +ij[10869] = 27.4 +id[10870] = "2684-11-14T16:56:33" +ik[10870] = 0.041 +il[10870] = -162 +im[10870] = 0.0243 +ij[10870] = 28.4 +id[10871] = "2685-01-06T21:03:33" +ik[10871] = 0.307 +il[10871] = 1 +im[10871] = 0.1116 +ij[10871] = 27.3 +id[10872] = "2685-01-24T14:59:34" +ik[10872] = 0.009 +il[10872] = 55 +im[10872] = 0.0994 +ij[10872] = 28.6 +id[10873] = "2685-01-24T20:41:46" +ik[10873] = 1.038 +il[10873] = 56 +im[10873] = 0.0969 +ij[10873] = 27.5 +id[10874] = "2685-02-04T18:43:49" +ik[10874] = 53.684 +il[10874] = 90 +im[10874] = 0.1165 +ij[10874] = 9 +id[10875] = "2685-03-11T10:37:07" +ik[10875] = 1.31 +il[10875] = -161 +im[10875] = 0.1304 +ij[10875] = 27.6 +id[10876] = "2685-04-20T17:00:28" +ik[10876] = 90 +il[10876] = -36 +im[10876] = 0.2057 +ij[10876] = 6 +id[10877] = "2685-04-23T04:31:33" +ik[10877] = 1.173 +il[10877] = -29 +im[10877] = 0.2164 +ij[10877] = 27.2 +id[10878] = "2685-06-06T13:04:57" +ik[10878] = 0 +il[10878] = 96 +im[10878] = 0.3598 +ij[10878] = 13 +id[10879] = "2685-06-28T11:18:14" +ik[10879] = 2.17 +il[10879] = 98 +im[10879] = 0.3916 +ij[10879] = 11 +id[10880] = "2685-07-01T05:45:22" +ik[10880] = 0.5021 +il[10880] = 112 +im[10880] = 0.5022 +ij[10880] = 2 +id[10881] = "2685-07-20T13:08:31" +ik[10881] = 44 +il[10881] = 134 +im[10881] = 0.0483 +ij[10881] = 7.1665 +id[10882] = "2685-08-23T07:56:16" +ik[10882] = 77.79 +il[10882] = -159 +im[10882] = 0.2107 +ij[10882] = 14 +id[10883] = "2685-09-06T17:06:40" +ik[10883] = 90 +il[10883] = -122 +im[10883] = 0.1878 +ij[10883] = 5 +id[10884] = "2685-09-30T03:45:47" +ik[10884] = 1.514 +il[10884] = -51 +im[10884] = 0.0368 +ij[10884] = 28.5 +id[10885] = "2685-11-10T08:44:35" +ik[10885] = 0.204 +il[10885] = 75 +im[10885] = 0.1198 +ij[10885] = 28.8 +id[10886] = "2685-11-17T05:53:13" +ik[10886] = 1.018 +il[10886] = 97 +im[10886] = 0.0328 +ij[10886] = 28.7 +id[10887] = "2685-11-18T21:48:44" +ik[10887] = 54.052 +il[10887] = 102 +im[10887] = 0.0713 +ij[10887] = 8 +id[10888] = "2686-01-05T15:44:52" +ik[10888] = 4.469 +il[10888] = -109 +im[10888] = 0.0953 +ij[10888] = 27.1 +id[10889] = "2686-02-20T14:16:53" +ik[10889] = 0.665 +il[10889] = 34 +im[10889] = 0.0915 +ij[10889] = 27.3 +id[10890] = "2686-03-10T03:37:20" +ik[10890] = 0.761 +il[10890] = 88 +im[10890] = 0.0814 +ij[10890] = 27.5 +id[10891] = "2686-04-21T00:25:55" +ik[10891] = 1.12 +il[10891] = -167 +im[10891] = 0.0836 +ij[10891] = 12 +id[10892] = "2686-05-26T02:24:51" +ik[10892] = 0.101 +il[10892] = 117 +im[10892] = 0.0744 +ij[10892] = 28.1 +id[10893] = "2686-05-29T16:18:12" +ik[10893] = 4.529 +il[10893] = 128 +im[10893] = 0.021 +ij[10893] = 27.2 +id[10894] = "2686-06-16T07:05:05" +ik[10894] = 0.181 +il[10894] = -177 +im[10894] = 0.032 +ij[10894] = 27.9 +id[10895] = "2686-08-26T16:12:25" +ik[10895] = 0.502 +il[10895] = 43 +im[10895] = 0.0388 +ij[10895] = 28.5 +id[10896] = "2686-09-01T21:43:12" +ik[10896] = 0.864 +il[10896] = 62 +im[10896] = 0.0983 +ij[10896] = 28.8 +id[10897] = "2686-09-06T00:46:32" +ik[10897] = 54.34 +il[10897] = 75 +im[10897] = 0.1231 +ij[10897] = 9 +id[10898] = "2686-09-10T14:36:20" +ik[10898] = 0.75 +il[10898] = 89 +im[10898] = 0.064 +ij[10898] = 28.7 +id[10899] = "2686-10-18T07:57:46" +ik[10899] = 2.18 +il[10899] = -157 +im[10899] = 0.1373 +ij[10899] = 27.4 +id[10900] = "2686-11-23T14:53:06" +ik[10900] = 90 +il[10900] = -45 +im[10900] = 0.1163 +ij[10900] = 6 +id[10901] = "2686-12-06T23:09:10" +ik[10901] = 0.197 +il[10901] = -9 +im[10901] = 0.2082 +ij[10901] = 28.4 +id[10902] = "2686-12-28T03:34:13" +ik[10902] = 0.584 +il[10902] = 45 +im[10902] = 0.1689 +ij[10902] = 27.3 +id[10903] = "2687-01-13T07:56:42" +ik[10903] = 0 +il[10903] = 83 +im[10903] = 0.4148 +ij[10903] = 13 +id[10904] = "2687-01-29T07:30:48" +ik[10904] = 0.5437 +il[10904] = 121 +im[10904] = 0.5437 +ij[10904] = 2 +id[10905] = "2687-02-03T06:43:12" +ik[10905] = 7.11 +il[10905] = 135 +im[10905] = 0.1777 +ij[10905] = 11 +id[10906] = "2687-02-24T09:03:18" +ik[10906] = 42.05 +il[10906] = 136 +im[10906] = 0.4561 +ij[10906] = 7.1567 +id[10907] = "2687-03-28T04:25:05" +ik[10907] = 73.85 +il[10907] = -161 +im[10907] = 0.2142 +ij[10907] = 14 +id[10908] = "2687-04-15T23:38:31" +ik[10908] = 90 +il[10908] = -114 +im[10908] = 0.0101 +ij[10908] = 5 +id[10909] = "2687-04-16T10:54:40" +ik[10909] = 1.483 +il[10909] = -112 +im[10909] = 0.029 +ij[10909] = 27.5 +id[10910] = "2687-05-05T23:12:46" +ik[10910] = 1.367 +il[10910] = -52 +im[10910] = 0.1642 +ij[10910] = 28.6 +id[10911] = "2687-06-04T12:56:04" +ik[10911] = 4.21 +il[10911] = 40 +im[10911] = 0.1292 +ij[10911] = 27.6 +id[10912] = "2687-06-30T03:37:13" +ik[10912] = 54.427 +il[10912] = 118 +im[10912] = 0.0316 +ij[10912] = 8 +id[10913] = "2687-07-14T01:11:48" +ik[10913] = 6.119 +il[10913] = 160 +im[10913] = 0.0198 +ij[10913] = 27.2 +id[10914] = "2687-09-25T17:51:30" +ik[10914] = 2.033 +il[10914] = 26 +im[10914] = 0.0313 +ij[10914] = 28.1 +id[10915] = "2687-11-17T21:56:09" +ik[10915] = 0.66 +il[10915] = 179 +im[10915] = 0.0868 +ij[10915] = 12 +id[10916] = "2687-12-28T16:36:02" +ik[10916] = 1.287 +il[10916] = 109 +im[10916] = 0.0227 +ij[10916] = 28.1 +id[10917] = "2688-01-21T22:15:33" +ik[10917] = 0.024 +il[10917] = -177 +im[10917] = 0.0777 +ij[10917] = 27.3 +id[10918] = "2688-02-08T13:25:46" +ik[10918] = 1.005 +il[10918] = -123 +im[10918] = 0.0317 +ij[10918] = 27.5 +id[10919] = "2688-03-10T19:39:21" +ik[10919] = 1.606 +il[10919] = -25 +im[10919] = 0.0198 +ij[10919] = 28.6 +id[10920] = "2688-03-23T15:24:03" +ik[10920] = 2.29 +il[10920] = 15 +im[10920] = 0.0605 +ij[10920] = 27.6 +id[10921] = "2688-04-18T23:24:47" +ik[10921] = 54.314 +il[10921] = 97 +im[10921] = 0.113 +ij[10921] = 9 +id[10922] = "2688-04-30T16:19:59" +ik[10922] = 3.043 +il[10922] = 134 +im[10922] = 0.1202 +ij[10922] = 27.2 +id[10923] = "2688-06-27T19:02:32" +ik[10923] = 90 +il[10923] = -47 +im[10923] = 0.1494 +ij[10923] = 6 +id[10924] = "2688-08-15T04:25:32" +ik[10924] = 0 +il[10924] = 90 +im[10924] = 0.3766 +ij[10924] = 13 +id[10925] = "2688-09-06T09:44:38" +ik[10925] = 8.55 +il[10925] = 92 +im[10925] = 0.3966 +ij[10925] = 11 +id[10926] = "2688-09-09T00:11:19" +ik[10926] = 0.4984 +il[10926] = 106 +im[10926] = 0.4984 +ij[10926] = 2 +id[10927] = "2688-09-28T06:31:07" +ik[10927] = 44.09 +il[10927] = 128 +im[10927] = 0.1504 +ij[10927] = 7.1634 +id[10928] = "2688-10-31T00:43:00" +ik[10928] = 76.85 +il[10928] = -167 +im[10928] = 0.1642 +ij[10928] = 14 +id[10929] = "2688-11-16T02:02:41" +ik[10929] = 90 +il[10929] = -127 +im[10929] = 0.1883 +ij[10929] = 5 +id[10930] = "2688-11-25T07:21:21" +ik[10930] = 0.111 +il[10930] = -99 +im[10930] = 0.0467 +ij[10930] = 28.8 +id[10931] = "2688-12-07T15:06:37" +ik[10931] = 1.57 +il[10931] = -61 +im[10931] = 0.1052 +ij[10931] = 28.7 +id[10932] = "2689-01-12T22:18:28" +ik[10932] = 1.128 +il[10932] = 52 +im[10932] = 0.0703 +ij[10932] = 28.5 +id[10933] = "2689-01-18T14:53:45" +ik[10933] = 3.602 +il[10933] = 70 +im[10933] = 0.1236 +ij[10933] = 27.1 +id[10934] = "2689-02-01T00:18:08" +ik[10934] = 53.718 +il[10934] = 112 +im[10934] = 0.1247 +ij[10934] = 8 +id[10935] = "2689-03-06T17:56:53" +ik[10935] = 1.143 +il[10935] = -143 +im[10935] = 0.0917 +ij[10935] = 27.3 +id[10936] = "2689-03-09T08:23:39" +ik[10936] = 1.228 +il[10936] = -135 +im[10936] = 0.0497 +ij[10936] = 28.4 +id[10937] = "2689-03-24T11:56:53" +ik[10937] = 0.532 +il[10937] = -88 +im[10937] = 0.0267 +ij[10937] = 27.5 +id[10938] = "2689-05-02T15:31:06" +ik[10938] = 1.073 +il[10938] = 32 +im[10938] = 0.0912 +ij[10938] = 28.6 +id[10939] = "2689-05-07T12:18:59" +ik[10939] = 3.5 +il[10939] = 47 +im[10939] = 0.0578 +ij[10939] = 27.6 +id[10940] = "2689-06-28T21:47:31" +ik[10940] = 0.36 +il[10940] = -175 +im[10940] = 0.0603 +ij[10940] = 12 +id[10941] = "2689-08-05T04:42:05" +ik[10941] = 3.293 +il[10941] = 117 +im[10941] = 0.0552 +ij[10941] = 28.1 +id[10942] = "2689-09-20T18:47:57" +ik[10942] = 0.717 +il[10942] = -100 +im[10942] = 0.05 +ij[10942] = 28.8 +id[10943] = "2689-10-03T20:40:16" +ik[10943] = 0.276 +il[10943] = -60 +im[10943] = 0.0726 +ij[10943] = 28.7 +id[10944] = "2689-10-29T17:14:39" +ik[10944] = 3.424 +il[10944] = 18 +im[10944] = 0.1095 +ij[10944] = 27.4 +id[10945] = "2689-11-17T21:31:03" +ik[10945] = 53.709 +il[10945] = 77 +im[10945] = 0.0938 +ij[10945] = 9 +id[10946] = "2689-12-07T08:10:10" +ik[10946] = 1.761 +il[10946] = 136 +im[10946] = 0.0096 +ij[10946] = 28.5 +id[10947] = "2689-12-25T08:35:06" +ik[10947] = 0.66 +il[10947] = -168 +im[10947] = 0.1048 +ij[10947] = 27.3 +id[10948] = "2690-01-13T19:03:33" +ik[10948] = 0.757 +il[10948] = -107 +im[10948] = 0.1641 +ij[10948] = 27.5 +id[10949] = "2690-02-06T15:05:30" +ik[10949] = 90 +il[10949] = -32 +im[10949] = 0.0545 +ij[10949] = 6 +id[10950] = "2690-03-13T21:48:01" +ik[10950] = 3.52 +il[10950] = 65 +im[10950] = 0.3365 +ij[10950] = 27.6 +id[10951] = "2690-03-26T00:43:27" +ik[10951] = 0 +il[10951] = 91 +im[10951] = 0.418 +ij[10951] = 13 +id[10952] = "2690-04-17T14:13:55" +ik[10952] = 7.15 +il[10952] = 105 +im[10952] = 0.2173 +ij[10952] = 11 +id[10953] = "2690-04-22T21:12:39" +ik[10953] = 0.5371 +il[10953] = 122 +im[10953] = 0.5372 +ij[10953] = 2 +id[10954] = "2690-05-08T06:53:03" +ik[10954] = 43.26 +il[10954] = 140 +im[10954] = 0.3476 +ij[10954] = 7.1626 +id[10955] = "2690-06-07T11:28:49" +ik[10955] = 4.11 +il[10955] = -161 +im[10955] = 0.1352 +ij[10955] = 27.6 +id[10956] = "2690-06-10T15:38:48" +ik[10956] = 76.62 +il[10956] = -154 +im[10956] = 0.0335 +ij[10956] = 14 +id[10957] = "2690-06-13T18:29:57" +ik[10957] = 0.158 +il[10957] = -147 +im[10957] = 0.1719 +ij[10957] = 28.6 +id[10958] = "2690-06-26T22:38:22" +ik[10958] = 90 +il[10958] = -112 +im[10958] = 0.061 +ij[10958] = 5 +id[10959] = "2690-09-07T00:18:11" +ik[10959] = 54.472 +il[10959] = 108 +im[10959] = 0.0197 +ij[10959] = 8 +id[10960] = "2690-11-05T21:46:39" +ik[10960] = 0.006 +il[10960] = -67 +im[10960] = 0.0282 +ij[10960] = 28.8 +id[10961] = "2690-11-19T19:17:54" +ik[10961] = 0.863 +il[10961] = -24 +im[10961] = 0.0318 +ij[10961] = 28.7 +id[10962] = "2690-11-24T14:40:50" +ik[10962] = 0.901 +il[10962] = -9 +im[10962] = 0.0546 +ij[10962] = 28.1 +id[10963] = "2690-12-26T20:00:14" +ik[10963] = 3.183 +il[10963] = 81 +im[10963] = 0.074 +ij[10963] = 28.1 +id[10964] = "2691-02-01T14:51:21" +ik[10964] = 1.1 +il[10964] = -176 +im[10964] = 0.0641 +ij[10964] = 12 +id[10965] = "2691-03-14T23:23:08" +ik[10965] = 0.705 +il[10965] = 134 +im[10965] = 0.0916 +ij[10965] = 28.4 +id[10966] = "2691-04-07T17:32:45" +ik[10966] = 2.8 +il[10966] = -163 +im[10966] = 0.0261 +ij[10966] = 27.6 +id[10967] = "2691-04-24T14:03:33" +ik[10967] = 2.13 +il[10967] = -110 +im[10967] = 0.0436 +ij[10967] = 28.6 +id[10968] = "2691-05-14T19:17:45" +ik[10968] = 3.917 +il[10968] = -47 +im[10968] = 0.1024 +ij[10968] = 27.2 +id[10969] = "2691-06-27T08:57:18" +ik[10969] = 54.663 +il[10969] = 89 +im[10969] = 0.1166 +ij[10969] = 9 +id[10970] = "2691-09-02T03:20:18" +ik[10970] = 3.183 +il[10970] = -68 +im[10970] = 0.0815 +ij[10970] = 28.8 +id[10971] = "2691-09-07T08:34:32" +ik[10971] = 90 +il[10971] = -52 +im[10971] = 0.1275 +ij[10971] = 6 +id[10972] = "2691-09-22T21:58:36" +ik[10972] = 4.164 +il[10972] = -11 +im[10972] = 0.2316 +ij[10972] = 28.7 +id[10973] = "2691-10-27T15:39:15" +ik[10973] = 0 +il[10973] = 84 +im[10973] = 0.3413 +ij[10973] = 13 +id[10974] = "2691-11-19T03:05:45" +ik[10974] = 4.07 +il[10974] = 94 +im[10974] = 0.5665 +ij[10974] = 11 +id[10975] = "2691-11-19T21:06:30" +ik[10975] = 0.5747 +il[10975] = 107 +im[10975] = 0.5748 +ij[10975] = 2 +id[10976] = "2691-12-08T11:50:12" +ik[10976] = 5.319 +il[10976] = 127 +im[10976] = 0.1157 +ij[10976] = 28.7 +id[10977] = "2691-12-09T14:41:50" +ik[10977] = 42.96 +il[10977] = 129 +im[10977] = 0.0066 +ij[10977] = 7.1553 +id[10978] = "2692-01-10T03:25:32" +ik[10978] = 74.49 +il[10978] = -169 +im[10978] = 0.1879 +ij[10978] = 14 +id[10979] = "2692-01-27T01:42:38" +ik[10979] = 1.794 +il[10979] = -128 +im[10979] = 0.1867 +ij[10979] = 27.1 +id[10980] = "2692-01-28T23:23:29" +ik[10980] = 90 +il[10980] = -123 +im[10980] = 0.2065 +ij[10980] = 5 +id[10981] = "2692-03-19T07:26:12" +ik[10981] = 2.019 +il[10981] = 35 +im[10981] = 0.0773 +ij[10981] = 27.3 +id[10982] = "2692-04-06T17:19:32" +ik[10982] = 0.083 +il[10982] = 92 +im[10982] = 0.0345 +ij[10982] = 27.5 +id[10983] = "2692-04-16T05:48:02" +ik[10983] = 0.229 +il[10983] = 121 +im[10983] = 0.0996 +ij[10983] = 28.5 +id[10984] = "2692-04-16T20:37:46" +ik[10984] = 53.974 +il[10984] = 123 +im[10984] = 0.0894 +ij[10984] = 8 +id[10985] = "2692-05-21T16:32:42" +ik[10985] = 3.82 +il[10985] = -130 +im[10985] = 0.0272 +ij[10985] = 27.6 +id[10986] = "2692-06-15T06:12:17" +ik[10986] = 0.835 +il[10986] = -55 +im[10986] = 0.0721 +ij[10986] = 28.6 +id[10987] = "2692-06-27T13:34:10" +ik[10987] = 2.51 +il[10987] = -18 +im[10987] = 0.0959 +ij[10987] = 28.1 +id[10988] = "2692-06-28T15:46:55" +ik[10988] = 5.42 +il[10988] = -14 +im[10988] = 0.0922 +ij[10988] = 27.2 +id[10989] = "2692-07-26T12:53:34" +ik[10989] = 0.474 +il[10989] = 71 +im[10989] = 0.0898 +ij[10989] = 28.1 +id[10990] = "2692-09-04T08:41:16" +ik[10990] = 1.39 +il[10990] = 179 +im[10990] = 0.0228 +ij[10990] = 12 +id[10991] = "2692-10-08T19:05:57" +ik[10991] = 2.732 +il[10991] = 96 +im[10991] = 0.084 +ij[10991] = 28.1 +id[10992] = "2692-10-10T09:18:51" +ik[10992] = 0.623 +il[10992] = 101 +im[10992] = 0.0889 +ij[10992] = 28.8 +id[10993] = "2692-10-27T12:48:57" +ik[10993] = 0.025 +il[10993] = 153 +im[10993] = 0.0825 +ij[10993] = 28.7 +id[10994] = "2692-11-12T11:19:32" +ik[10994] = 4.139 +il[10994] = -159 +im[10994] = 0.0822 +ij[10994] = 27.4 +id[10995] = "2693-01-06T11:11:05" +ik[10995] = 0.312 +il[10995] = 9 +im[10995] = 0.0958 +ij[10995] = 27.3 +id[10996] = "2693-01-24T11:18:39" +ik[10996] = 1.033 +il[10996] = 65 +im[10996] = 0.1124 +ij[10996] = 27.5 +id[10997] = "2693-02-02T05:56:01" +ik[10997] = 53.669 +il[10997] = 92 +im[10997] = 0.0401 +ij[10997] = 9 +id[10998] = "2693-03-06T17:25:43" +ik[10998] = 1.652 +il[10998] = -166 +im[10998] = 0.0992 +ij[10998] = 28.5 +id[10999] = "2693-03-11T03:36:39" +ik[10999] = 1.26 +il[10999] = -152 +im[10999] = 0.1464 +ij[10999] = 27.6 +id[11000] = "2693-03-21T14:42:19" +ik[11000] = 1.762 +il[11000] = -120 +im[11000] = 0.1265 +ij[11000] = 28.4 +id[11001] = "2693-04-18T10:11:50" +ik[11001] = 90 +il[11001] = -33 +im[11001] = 0.1035 +ij[11001] = 6 +id[11002] = "2693-04-23T00:10:48" +ik[11002] = 5.205 +il[11002] = -21 +im[11002] = 0.2308 +ij[11002] = 28.6 +id[11003] = "2693-04-23T07:45:45" +ik[11003] = 1.068 +il[11003] = -20 +im[11003] = 0.2333 +ij[11003] = 27.2 +id[11004] = "2693-06-04T03:25:59" +ik[11004] = 0 +il[11004] = 97 +im[11004] = 0.3603 +ij[11004] = 13 +id[11005] = "2693-06-19T02:24:10" +ik[11005] = 0.5191 +il[11005] = 84 +im[11005] = 0.5191 +ij[11005] = 2 +id[11006] = "2693-06-26T04:23:31" +ik[11006] = 1.85 +il[11006] = 104 +im[11006] = 0.066 +ij[11006] = 11 +id[11007] = "2693-07-18T03:31:34" +ik[11007] = 44 +il[11007] = 137 +im[11007] = 0.3499 +ij[11007] = 7.1665 +id[11008] = "2693-08-21T00:11:18" +ik[11008] = 77.86 +il[11008] = -157 +im[11008] = 0.0582 +ij[11008] = 14 +id[11009] = "2693-09-04T09:39:07" +ik[11009] = 90 +il[11009] = -119 +im[11009] = 0.0673 +ij[11009] = 5 +id[11010] = "2693-11-16T12:05:49" +ik[11010] = 54.069 +il[11010] = 104 +im[11010] = 0.025 +ij[11010] = 8 +id[11011] = "2693-11-24T19:10:33" +ik[11011] = 0.194 +il[11011] = 130 +im[11011] = 0.1111 +ij[11011] = 28.8 +id[11012] = "2693-12-13T05:15:38" +ik[11012] = 1.284 +il[11012] = -174 +im[11012] = 0.0851 +ij[11012] = 28.7 +id[11013] = "2694-01-05T05:25:45" +ik[11013] = 4.49 +il[11013] = -101 +im[11013] = 0.0694 +ij[11013] = 27.1 +id[11014] = "2694-01-22T23:25:35" +ik[11014] = 2.747 +il[11014] = -45 +im[11014] = 0.0963 +ij[11014] = 28.1 +id[11015] = "2694-02-20T03:34:39" +ik[11015] = 0.657 +il[11015] = 42 +im[11015] = 0.0791 +ij[11015] = 27.3 +id[11016] = "2694-03-07T18:45:04" +ik[11016] = 3.891 +il[11016] = 80 +im[11016] = 0.0725 +ij[11016] = 28.1 +id[11017] = "2694-03-09T16:49:45" +ik[11017] = 0.765 +il[11017] = 86 +im[11017] = 0.0837 +ij[11017] = 27.5 +id[11018] = "2694-04-18T14:38:24" +ik[11018] = 1.15 +il[11018] = -164 +im[11018] = 0.0338 +ij[11018] = 12 +id[11019] = "2694-05-29T05:25:18" +ik[11019] = 4.516 +il[11019] = 137 +im[11019] = 0.0522 +ij[11019] = 27.2 +id[11020] = "2694-06-06T06:02:35" +ik[11020] = 1.734 +il[11020] = 162 +im[11020] = 0.0813 +ij[11020] = 28.6 +id[11021] = "2694-06-15T18:14:24" +ik[11021] = 0.022 +il[11021] = -168 +im[11021] = 0.0129 +ij[11021] = 27.9 +id[11022] = "2694-09-03T16:46:43" +ik[11022] = 54.361 +il[11022] = 78 +im[11022] = 0.1003 +ij[11022] = 9 +id[11023] = "2694-09-16T14:55:14" +ik[11023] = 1.936 +il[11023] = 117 +im[11023] = 0.0507 +ij[11023] = 28.8 +id[11024] = "2694-10-08T07:35:11" +ik[11024] = 1.904 +il[11024] = -177 +im[11024] = 0.145 +ij[11024] = 28.7 +id[11025] = "2694-10-18T02:04:25" +ik[11025] = 2.123 +il[11025] = -148 +im[11025] = 0.1133 +ij[11025] = 27.4 +id[11026] = "2694-11-21T02:11:33" +ik[11026] = 90 +il[11026] = -43 +im[11026] = 0.2191 +ij[11026] = 6 +id[11027] = "2694-12-31T11:15:59" +ik[11027] = 1.291 +il[11027] = 70 +im[11027] = 0.2903 +ij[11027] = 27.3 +id[11028] = "2695-01-11T00:11:45" +ik[11028] = 0 +il[11028] = 91 +im[11028] = 0.1494 +ij[11028] = 13 +id[11029] = "2695-01-30T09:22:23" +ik[11029] = 0.5394 +il[11029] = 92 +im[11029] = 0.5394 +ij[11029] = 2 +id[11030] = "2695-01-31T19:14:52" +ik[11030] = 6.86 +il[11030] = 103 +im[11030] = 0.5069 +ij[11030] = 11 +id[11031] = "2695-02-21T23:16:19" +ik[11031] = 41.96 +il[11031] = 138 +im[11031] = 0.2823 +ij[11031] = 7.1565 +id[11032] = "2695-03-25T16:06:03" +ik[11032] = 73.66 +il[11032] = -159 +im[11032] = 0.2625 +ij[11032] = 14 +id[11033] = "2695-04-13T12:32:29" +ik[11033] = 90 +il[11033] = -111 +im[11033] = 0.1605 +ij[11033] = 5 +id[11034] = "2695-04-16T10:45:45" +ik[11034] = 1.372 +il[11034] = -102 +im[11034] = 0.051 +ij[11034] = 27.5 +id[11035] = "2695-06-04T05:17:30" +ik[11035] = 4.19 +il[11035] = 49 +im[11035] = 0.0967 +ij[11035] = 27.6 +id[11036] = "2695-06-27T20:20:04" +ik[11036] = 54.417 +il[11036] = 121 +im[11036] = 0.0606 +ij[11036] = 8 +id[11037] = "2695-07-09T07:48:43" +ik[11037] = 1.426 +il[11037] = 156 +im[11037] = 0.1155 +ij[11037] = 28.4 +id[11038] = "2695-07-13T15:27:48" +ik[11038] = 6.092 +il[11038] = 169 +im[11038] = 0.0622 +ij[11038] = 27.2 +id[11039] = "2695-07-15T13:24:48" +ik[11039] = 0.639 +il[11039] = 175 +im[11039] = 0.0218 +ij[11039] = 28.5 +id[11040] = "2695-07-28T15:36:17" +ik[11040] = 0.099 +il[11040] = -145 +im[11040] = 0.0417 +ij[11040] = 28.6 +id[11041] = "2695-09-08T12:12:14" +ik[11041] = 1.889 +il[11041] = -17 +im[11041] = 0.0853 +ij[11041] = 28.1 +id[11042] = "2695-09-16T15:17:34" +ik[11042] = 0.122 +il[11042] = 8 +im[11042] = 0.0502 +ij[11042] = 28.1 +id[11043] = "2695-11-15T11:13:55" +ik[11043] = 0.72 +il[11043] = -180 +im[11043] = 0.0427 +ij[11043] = 12 +id[11044] = "2696-01-21T11:39:58" +ik[11044] = 0.017 +il[11044] = -168 +im[11044] = 0.0903 +ij[11044] = 27.3 +id[11045] = "2696-02-08T02:55:32" +ik[11045] = 1.004 +il[11045] = -114 +im[11045] = 0.068 +ij[11045] = 27.5 +id[11046] = "2696-03-23T05:23:26" +ik[11046] = 2.27 +il[11046] = 24 +im[11046] = 0.0888 +ij[11046] = 27.6 +id[11047] = "2696-04-16T15:07:12" +ik[11047] = 54.293 +il[11047] = 100 +im[11047] = 0.0853 +ij[11047] = 9 +id[11048] = "2696-04-30T07:51:58" +ik[11048] = 3.009 +il[11048] = 143 +im[11048] = 0.0874 +ij[11048] = 27.2 +id[11049] = "2696-05-30T13:55:55" +ik[11049] = 2.761 +il[11049] = -123 +im[11049] = 0.1109 +ij[11049] = 28.6 +id[11050] = "2696-06-07T15:16:33" +ik[11050] = 1.954 +il[11050] = -99 +im[11050] = 0.1232 +ij[11050] = 28.5 +id[11051] = "2696-06-25T12:24:31" +ik[11051] = 90 +il[11051] = -44 +im[11051] = 0.009 +ij[11051] = 6 +id[11052] = "2696-08-12T16:06:30" +ik[11052] = 0 +il[11052] = 93 +im[11052] = 0.3732 +ij[11052] = 13 +id[11053] = "2696-08-28T17:16:57" +ik[11053] = 0.501 +il[11053] = 79 +im[11053] = 0.5011 +ij[11053] = 2 +id[11054] = "2696-09-04T00:37:26" +ik[11054] = 8.48 +il[11054] = 97 +im[11054] = 0.0622 +ij[11054] = 11 +id[11055] = "2696-09-25T19:13:05" +ik[11055] = 44.13 +il[11055] = 130 +im[11055] = 0.4007 +ij[11055] = 7.1636 +id[11056] = "2696-10-28T17:42:54" +ik[11056] = 77.07 +il[11056] = -165 +im[11056] = 0.0334 +ij[11056] = 14 +id[11057] = "2696-11-13T16:52:32" +ik[11057] = 90 +il[11057] = -125 +im[11057] = 0.0424 +ij[11057] = 5 +id[11058] = "2696-12-11T09:40:10" +ik[11058] = 0.592 +il[11058] = -39 +im[11058] = 0.0504 +ij[11058] = 28.8 +id[11059] = "2697-01-04T12:27:12" +ik[11059] = 2.007 +il[11059] = 36 +im[11059] = 0.1439 +ij[11059] = 28.7 +id[11060] = "2697-01-18T06:20:24" +ik[11060] = 3.638 +il[11060] = 79 +im[11060] = 0.12 +ij[11060] = 27.1 +id[11061] = "2697-01-29T11:55:13" +ik[11061] = 53.72 +il[11061] = 114 +im[11061] = 0.0778 +ij[11061] = 8 +id[11062] = "2697-03-06T07:53:18" +ik[11062] = 1.127 +il[11062] = -135 +im[11062] = 0.1072 +ij[11062] = 27.3 +id[11063] = "2697-03-24T01:33:45" +ik[11063] = 0.54 +il[11063] = -80 +im[11063] = 0.0626 +ij[11063] = 27.5 +id[11064] = "2697-03-26T08:37:23" +ik[11064] = 1.637 +il[11064] = -73 +im[11064] = 0.0239 +ij[11064] = 28.1 +id[11065] = "2697-05-07T01:26:23" +ik[11065] = 3.49 +il[11065] = 55 +im[11065] = 0.0788 +ij[11065] = 27.6 +id[11066] = "2697-06-26T16:20:38" +ik[11066] = 0.31 +il[11066] = -173 +im[11066] = 0.0043 +ij[11066] = 12 +id[11067] = "2697-08-10T11:34:04" +ik[11067] = 0.974 +il[11067] = 144 +im[11067] = 0.0085 +ij[11067] = 28.4 +id[11068] = "2697-08-12T23:29:19" +ik[11068] = 0.263 +il[11068] = 151 +im[11068] = 0.0492 +ij[11068] = 28.5 +id[11069] = "2697-10-04T23:31:46" +ik[11069] = 1.496 +il[11069] = -47 +im[11069] = 0.0832 +ij[11069] = 28.8 +id[11070] = "2697-10-29T07:42:11" +ik[11070] = 3.401 +il[11070] = 27 +im[11070] = 0.0983 +ij[11070] = 27.4 +id[11071] = "2697-10-30T07:46:50" +ik[11071] = 1.12 +il[11071] = 30 +im[11071] = 0.1087 +ij[11071] = 28.7 +id[11072] = "2697-11-15T09:15:14" +ik[11072] = 53.726 +il[11072] = 79 +im[11072] = 0.1104 +ij[11072] = 9 +id[11073] = "2697-12-25T01:38:38" +ik[11073] = 0.664 +il[11073] = -159 +im[11073] = 0.0551 +ij[11073] = 27.3 +id[11074] = "2698-01-13T14:47:32" +ik[11074] = 0.723 +il[11074] = -98 +im[11074] = 0.1578 +ij[11074] = 27.5 +id[11075] = "2698-02-04T04:20:42" +ik[11075] = 90 +il[11075] = -30 +im[11075] = 0.123 +ij[11075] = 6 +id[11076] = "2698-03-15T21:14:16" +ik[11076] = 4.29 +il[11076] = 81 +im[11076] = 0.3574 +ij[11076] = 27.6 +id[11077] = "2698-03-23T17:43:21" +ik[11077] = 0 +il[11077] = 94 +im[11077] = 0.1859 +ij[11077] = 13 +id[11078] = "2698-04-15T05:11:02" +ik[11078] = 7.36 +il[11078] = 108 +im[11078] = 0.2271 +ij[11078] = 11 +id[11079] = "2698-04-24T00:48:47" +ik[11079] = 0.5168 +il[11079] = 128 +im[11079] = 0.5169 +ij[11079] = 2 +id[11080] = "2698-05-05T21:50:56" +ik[11080] = 43.17 +il[11080] = 143 +im[11080] = 0.3946 +ij[11080] = 7.1625 +id[11081] = "2698-06-08T02:46:05" +ik[11081] = 4.19 +il[11081] = -152 +im[11081] = 0.1715 +ij[11081] = 27.6 +id[11082] = "2698-06-08T05:12:45" +ik[11082] = 76.48 +il[11082] = -152 +im[11082] = 0.1674 +ij[11082] = 14 +id[11083] = "2698-06-24T14:32:47" +ik[11083] = 90 +il[11083] = -109 +im[11083] = 0.1075 +ij[11083] = 5 +id[11084] = "2698-09-04T17:04:35" +ik[11084] = 54.479 +il[11084] = 111 +im[11084] = 0.1013 +ij[11084] = 8 +id[11085] = "2698-09-08T09:08:55" +ik[11085] = 0.741 +il[11085] = 122 +im[11085] = 0.0302 +ij[11085] = 28.6 +id[11086] = "2698-10-23T10:35:02" +ik[11086] = 0.024 +il[11086] = -100 +im[11086] = 0.0147 +ij[11086] = 28.5 +id[11087] = "2698-11-08T12:02:44" +ik[11087] = 3.429 +il[11087] = -49 +im[11087] = 0.0126 +ij[11087] = 28.1 +id[11088] = "2698-11-19T21:16:33" +ik[11088] = 0.316 +il[11088] = -14 +im[11088] = 0.0574 +ij[11088] = 28.8 +id[11089] = "2698-12-15T17:38:32" +ik[11089] = 0.524 +il[11089] = 67 +im[11089] = 0.0877 +ij[11089] = 28.7 +id[11090] = "2699-01-30T00:40:19" +ik[11090] = 1.05 +il[11090] = -174 +im[11090] = 0.0831 +ij[11090] = 12 +id[11091] = "2699-04-07T06:46:01" +ik[11091] = 2.79 +il[11091] = -154 +im[11091] = 0.0166 +ij[11091] = 27.6 +id[11092] = "2699-05-13T16:29:08" +ik[11092] = 6.171 +il[11092] = -40 +im[11092] = 0.0863 +ij[11092] = 28.1 +id[11093] = "2699-05-14T08:56:51" +ik[11093] = 3.899 +il[11093] = -38 +im[11093] = 0.0926 +ij[11093] = 27.2 +id[11094] = "2699-06-25T03:09:03" +ik[11094] = 54.661 +il[11094] = 92 +im[11094] = 0.0698 +ij[11094] = 9 +id[11095] = "2699-07-11T00:14:32" +ik[11095] = 0.563 +il[11095] = 140 +im[11095] = 0.0741 +ij[11095] = 28.6 +id[11096] = "2699-09-04T22:22:28" +ik[11096] = 90 +il[11096] = -50 +im[11096] = 0.0337 +ij[11096] = 6 +id[11097] = "2699-09-21T00:22:10" +ik[11097] = 5.446 +il[11097] = -8 +im[11097] = 0.0873 +ij[11097] = 28.8 +id[11098] = "2699-09-28T15:12:40" +ik[11098] = 5.352 +il[11098] = 10 +im[11098] = 0.2842 +ij[11098] = 28.5 +id[11099] = "2699-09-29T04:26:32" +ik[11099] = 3.774 +il[11099] = 11 +im[11099] = 0.2747 +ij[11099] = 28.4 +id[11100] = "2699-10-25T05:13:12" +ik[11100] = 0 +il[11100] = 80 +im[11100] = 0.451 +ij[11100] = 13 +id[11101] = "2699-11-16T16:29:16" +ik[11101] = 4.41 +il[11101] = 97 +im[11101] = 0.3162 +ij[11101] = 11 +id[11102] = "2699-11-20T23:46:13" +ik[11102] = 0.568 +il[11102] = 112 +im[11102] = 0.5681 +ij[11102] = 2 +id[11103] = "2699-12-06T03:57:36" +ik[11103] = 3.408 +il[11103] = 130 +im[11103] = 0.3921 +ij[11103] = 28.5 +id[11104] = "2699-12-06T04:13:43" +ik[11104] = 3.408 +il[11104] = 130 +im[11104] = 0.3915 +ij[11104] = 28.5 +id[11105] = "2699-12-06T05:11:19" +ik[11105] = 5.499 +il[11105] = 130 +im[11105] = 0.3893 +ij[11105] = 28.4 +id[11106] = "2699-12-07T05:16:47" +ik[11106] = 43 +il[11106] = 131 +im[11106] = 0.3235 +ij[11106] = 7.1556 +id[11107] = "2699-12-07T20:09:53" +ik[11107] = 3.919 +il[11107] = 132 +im[11107] = 0.2747 +ij[11107] = 28.8 +id[11108] = "2700-01-07T17:42:34" +ik[11108] = 74.52 +il[11108] = -166 +im[11108] = 0.0426 +ij[11108] = 14 +id[11109] = "2700-01-23T06:30:14" +ik[11109] = 3.611 +il[11109] = -129 +im[11109] = 0.038 +ij[11109] = 28.7 +id[11110] = "2700-01-26T12:00:39" +ik[11110] = 90 +il[11110] = -120 +im[11110] = 0.1191 +ij[11110] = 5 +id[11111] = "2700-01-27T03:37:17" +ik[11111] = 1.89 +il[11111] = -118 +im[11111] = 0.1427 +ij[11111] = 27.1 +id[11112] = "2700-03-19T23:36:51" +ik[11112] = 1.979 +il[11112] = 44 +im[11112] = 0.1117 +ij[11112] = 27.3 +id[11113] = "2700-04-07T08:28:25" +ik[11113] = 0.104 +il[11113] = 101 +im[11113] = 0.0261 +ij[11113] = 27.5 +id[11114] = "2700-04-15T10:05:04" +ik[11114] = 53.958 +il[11114] = 126 +im[11114] = 0.1165 +ij[11114] = 8 +id[11115] = "2700-05-22T06:24:55" +ik[11115] = 3.81 +il[11115] = -121 +im[11115] = 0.016 +ij[11115] = 27.6 +id[11116] = "2700-06-06T06:35:08" +ik[11116] = 2.1 +il[11116] = -75 +im[11116] = 0.0309 +ij[11116] = 28.1 +id[11117] = "2700-06-27T13:01:37" +ik[11117] = 1.669 +il[11117] = -11 +im[11117] = 0.0851 +ij[11117] = 28.1 +id[11118] = "2700-06-29T04:57:34" +ik[11118] = 5.401 +il[11118] = -6 +im[11118] = 0.0943 +ij[11118] = 27.2 +id[11119] = "2700-09-03T01:46:33" +ik[11119] = 1.38 +il[11119] = -176 +im[11119] = 0.0459 +ij[11119] = 12 +id[11120] = "2700-10-25T09:36:34" +ik[11120] = 1.223 +il[11120] = 153 +im[11120] = 0.066 +ij[11120] = 28.8 +id[11121] = "2700-11-13T00:47:04" +ik[11121] = 4.125 +il[11121] = -150 +im[11121] = 0.0965 +ij[11121] = 27.4 +id[11122] = "2700-11-23T23:49:55" +ik[11122] = 0.66 +il[11122] = -117 +im[11122] = 0.0643 +ij[11122] = 28.7 +id[11123] = "2700-11-25T12:33:33" +ik[11123] = 1.122 +il[11123] = -113 +im[11123] = 0.0823 +ij[11123] = 28.5 +id[11124] = "2701-01-07T01:21:45" +ik[11124] = 0.318 +il[11124] = 18 +im[11124] = 0.0619 +ij[11124] = 27.3 +id[11125] = "2701-01-25T01:59:31" +ik[11125] = 1.028 +il[11125] = 73 +im[11125] = 0.1113 +ij[11125] = 27.5 +id[11126] = "2701-01-31T17:04:39" +ik[11126] = 53.655 +il[11126] = 94 +im[11126] = 0.064 +ij[11126] = 9 +id[11127] = "2701-03-11T20:47:52" +ik[11127] = 1.21 +il[11127] = -143 +im[11127] = 0.1395 +ij[11127] = 27.6 +id[11128] = "2701-04-17T03:20:33" +ik[11128] = 90 +il[11128] = -30 +im[11128] = 0.0644 +ij[11128] = 6 +id[11129] = "2701-04-24T12:28:24" +ik[11129] = 0.958 +il[11129] = -12 +im[11129] = 0.2288 +ij[11129] = 27.2 +id[11130] = "2701-06-02T17:43:01" +ik[11130] = 0 +il[11130] = 97 +im[11130] = 0.1253 +ij[11130] = 13 +id[11131] = "2701-06-21T06:48:22" +ik[11131] = 0.532 +il[11131] = 90 +im[11131] = 0.5321 +ij[11131] = 2 +id[11132] = "2701-06-24T21:28:48" +ik[11132] = 1.53 +il[11132] = 103 +im[11132] = 0.3601 +ij[11132] = 11 +id[11133] = "2701-07-16T20:49:36" +ik[11133] = 44.13 +il[11133] = 139 +im[11133] = 0.4264 +ij[11133] = 7.1664 +id[11134] = "2701-08-19T16:20:19" +ik[11134] = 77.94 +il[11134] = -154 +im[11134] = 0.158 +ij[11134] = 14 +id[11135] = "2701-09-03T02:13:20" +ik[11135] = 90 +il[11135] = -116 +im[11135] = 0.0982 +ij[11135] = 5 +id[11136] = "2701-10-21T02:06:34" +ik[11136] = 1.189 +il[11136] = 30 +im[11136] = 0.0127 +ij[11136] = 28.6 +id[11137] = "2701-11-15T02:26:27" +ik[11137] = 54.086 +il[11137] = 107 +im[11137] = 0.1043 +ij[11137] = 8 +id[11138] = "2701-12-10T01:21:12" +ik[11138] = 0.011 +il[11138] = -175 +im[11138] = 0.0928 +ij[11138] = 28.8 +id[11139] = "2702-01-05T19:06:37" +ik[11139] = 4.511 +il[11139] = -92 +im[11139] = 0.031 +ij[11139] = 27.1 +id[11140] = "2702-01-09T20:41:34" +ik[11140] = 0.883 +il[11140] = -79 +im[11140] = 0.088 +ij[11140] = 28.7 +id[11141] = "2702-01-13T16:56:38" +ik[11141] = 1.212 +il[11141] = -67 +im[11141] = 0.083 +ij[11141] = 28.4 +id[11142] = "2702-01-14T04:28:42" +ik[11142] = 2.891 +il[11142] = -66 +im[11142] = 0.0779 +ij[11142] = 28.1 +id[11143] = "2702-02-02T00:46:13" +ik[11143] = 0.07 +il[11143] = -7 +im[11143] = 0.0293 +ij[11143] = 28.5 +id[11144] = "2702-02-20T16:52:24" +ik[11144] = 0.649 +il[11144] = 51 +im[11144] = 0.0518 +ij[11144] = 27.3 +id[11145] = "2702-03-10T05:58:38" +ik[11145] = 0.768 +il[11145] = 94 +im[11145] = 0.0731 +ij[11145] = 27.5 +id[11146] = "2702-04-17T04:33:36" +ik[11146] = 1.19 +il[11146] = -161 +im[11146] = 0.0373 +ij[11146] = 12 +id[11147] = "2702-05-29T18:32:51" +ik[11147] = 4.503 +il[11147] = 145 +im[11147] = 0.0746 +ij[11147] = 27.2 +id[11148] = "2702-06-16T07:21:30" +ik[11148] = 0.039 +il[11148] = -160 +im[11148] = 0.0501 +ij[11148] = 27.9 +id[11149] = "2702-07-03T02:55:14" +ik[11149] = 0.907 +il[11149] = -107 +im[11149] = 0.0115 +ij[11149] = 28.1 +id[11150] = "2702-07-21T13:39:47" +ik[11150] = 2.994 +il[11150] = -50 +im[11150] = 0.0455 +ij[11150] = 28.1 +id[11151] = "2702-08-23T12:51:15" +ik[11151] = 1.244 +il[11151] = 51 +im[11151] = 0.1009 +ij[11151] = 28.6 +id[11152] = "2702-09-02T08:57:34" +ik[11152] = 54.38 +il[11152] = 80 +im[11152] = 0.0162 +ij[11152] = 9 +id[11153] = "2702-10-02T15:40:53" +ik[11153] = 3.004 +il[11153] = 172 +im[11153] = 0.0212 +ij[11153] = 28.8 +id[11154] = "2702-10-18T20:28:24" +ik[11154] = 2.065 +il[11154] = -138 +im[11154] = 0.076 +ij[11154] = 27.4 +id[11155] = "2702-11-08T11:19:14" +ik[11155] = 2.964 +il[11155] = -75 +im[11155] = 0.1864 +ij[11155] = 28.7 +id[11156] = "2702-11-19T13:28:13" +ik[11156] = 90 +il[11156] = -41 +im[11156] = 0.1804 +ij[11156] = 6 +id[11157] = "2703-01-08T16:20:46" +ik[11157] = 0 +il[11157] = 102 +im[11157] = 0.3056 +ij[11157] = 13 +id[11158] = "2703-01-19T00:00:59" +ik[11158] = 0.542 +il[11158] = 122 +im[11158] = 0.5421 +ij[11158] = 2 +id[11159] = "2703-01-30T07:50:52" +ik[11159] = 6.6 +il[11159] = 105 +im[11159] = 0.4709 +ij[11159] = 11 +id[11160] = "2703-02-20T17:25:21" +ik[11160] = 43.04 +il[11160] = 141 +im[11160] = 0.0662 +ij[11160] = 7.1558 +id[11161] = "2703-03-24T02:21:07" +ik[11161] = 74.42 +il[11161] = -157 +im[11161] = 0.1254 +ij[11161] = 14 +id[11162] = "2703-03-25T17:21:18" +ik[11162] = 4.931 +il[11162] = -153 +im[11162] = 0.1943 +ij[11162] = 27.3 +id[11163] = "2703-04-01T01:13:00" +ik[11163] = 3.05 +il[11163] = -138 +im[11163] = 0.1704 +ij[11163] = 28.5 +id[11164] = "2703-04-01T01:15:10" +ik[11164] = 3.05 +il[11164] = -138 +im[11164] = 0.1704 +ij[11164] = 28.5 +id[11165] = "2703-04-12T01:17:37" +ik[11165] = 90 +il[11165] = -109 +im[11165] = 0.2244 +ij[11165] = 5 +id[11166] = "2703-04-17T09:51:04" +ik[11166] = 1.27 +il[11166] = -92 +im[11166] = 0.1186 +ij[11166] = 27.5 +id[11167] = "2703-06-04T21:31:52" +ik[11167] = 4.18 +il[11167] = 58 +im[11167] = 0.0469 +ij[11167] = 27.6 +id[11168] = "2703-06-26T12:59:22" +ik[11168] = 54.406 +il[11168] = 124 +im[11168] = 0.1124 +ij[11168] = 8 +id[11169] = "2703-07-14T05:36:40" +ik[11169] = 6.065 +il[11169] = 178 +im[11169] = 0.091 +ij[11169] = 27.2 +id[11170] = "2703-08-17T19:59:22" +ik[11170] = 5.785 +il[11170] = -77 +im[11170] = 0.0108 +ij[11170] = 28.1 +id[11171] = "2703-11-14T00:38:52" +ik[11171] = 0.77 +il[11171] = 179 +im[11171] = 0.0288 +ij[11171] = 12 +id[11172] = "2704-01-22T01:02:37" +ik[11172] = 0.022 +il[11172] = -160 +im[11172] = 0.0861 +ij[11172] = 27.3 +id[11173] = "2704-01-23T10:02:55" +ik[11173] = 0.83 +il[11173] = -156 +im[11173] = 0.0895 +ij[11173] = 28.4 +id[11174] = "2704-02-08T16:25:44" +ik[11174] = 1.003 +il[11174] = -105 +im[11174] = 0.0928 +ij[11174] = 27.5 +id[11175] = "2704-02-26T15:34:59" +ik[11175] = 0.172 +il[11175] = -50 +im[11175] = 0.0536 +ij[11175] = 28.5 +id[11176] = "2704-03-23T19:31:47" +ik[11176] = 2.24 +il[11176] = 32 +im[11176] = 0.1027 +ij[11176] = 27.6 +id[11177] = "2704-04-15T06:42:30" +ik[11177] = 54.271 +il[11177] = 103 +im[11177] = 0.0112 +ij[11177] = 9 +id[11178] = "2704-04-30T23:31:30" +ik[11178] = 2.974 +il[11178] = 152 +im[11178] = 0.0399 +ij[11178] = 27.2 +id[11179] = "2704-06-24T05:44:44" +ik[11179] = 90 +il[11179] = -41 +im[11179] = 0.1612 +ij[11179] = 6 +id[11180] = "2704-08-11T02:21:34" +ik[11180] = 0 +il[11180] = 95 +im[11180] = 0.1112 +ij[11180] = 13 +id[11181] = "2704-08-30T15:26:02" +ik[11181] = 0.4996 +il[11181] = 85 +im[11181] = 0.4996 +ij[11181] = 2 +id[11182] = "2704-09-02T15:34:33" +ik[11182] = 8.41 +il[11182] = 97 +im[11182] = 0.3636 +ij[11182] = 11 +id[11183] = "2704-09-24T06:51:11" +ik[11183] = 44.19 +il[11183] = 133 +im[11183] = 0.3876 +ij[11183] = 7.1637 +id[11184] = "2704-10-27T10:42:57" +ik[11184] = 77.35 +il[11184] = -162 +im[11184] = 0.2031 +ij[11184] = 14 +id[11185] = "2704-11-12T07:48:34" +ik[11185] = 90 +il[11185] = -122 +im[11185] = 0.1361 +ij[11185] = 5 +id[11186] = "2704-12-01T19:36:20" +ik[11186] = 0.647 +il[11186] = -62 +im[11186] = 0.0728 +ij[11186] = 28.6 +id[11187] = "2704-12-27T15:18:51" +ik[11187] = 0.629 +il[11187] = 18 +im[11187] = 0.059 +ij[11187] = 28.8 +id[11188] = "2705-01-18T21:43:30" +ik[11188] = 3.672 +il[11188] = 87 +im[11188] = 0.0993 +ij[11188] = 27.1 +id[11189] = "2705-01-27T23:32:18" +ik[11189] = 53.723 +il[11189] = 116 +im[11189] = 0.0201 +ij[11189] = 8 +id[11190] = "2705-02-02T12:28:04" +ik[11190] = 1.387 +il[11190] = 133 +im[11190] = 0.0971 +ij[11190] = 28.7 +id[11191] = "2705-03-06T21:51:04" +ik[11191] = 1.112 +il[11191] = -126 +im[11191] = 0.1021 +ij[11191] = 27.3 +id[11192] = "2705-03-12T05:19:23" +ik[11192] = 0.81 +il[11192] = -109 +im[11192] = 0.0697 +ij[11192] = 28.1 +id[11193] = "2705-03-24T15:14:37" +ik[11193] = 0.547 +il[11193] = -71 +im[11193] = 0.089 +ij[11193] = 27.5 +id[11194] = "2705-05-02T06:19:43" +ik[11194] = 0.042 +il[11194] = 47 +im[11194] = 0.0404 +ij[11194] = 28.5 +id[11195] = "2705-05-07T14:40:44" +ik[11195] = 3.48 +il[11195] = 64 +im[11195] = 0.0857 +ij[11195] = 27.6 +id[11196] = "2705-06-25T10:49:26" +ik[11196] = 0.26 +il[11196] = -169 +im[11196] = 0.0628 +ij[11196] = 12 +id[11197] = "2705-08-26T16:12:08" +ik[11197] = 1.909 +il[11197] = -160 +im[11197] = 0.0285 +ij[11197] = 28.1 +id[11198] = "2705-09-28T19:49:35" +ik[11198] = 5.072 +il[11198] = -58 +im[11198] = 0.0409 +ij[11198] = 28.1 +id[11199] = "2705-10-07T07:02:55" +ik[11199] = 2.258 +il[11199] = -33 +im[11199] = 0.0914 +ij[11199] = 28.6 +id[11200] = "2705-10-20T06:52:24" +ik[11200] = 2.222 +il[11200] = 7 +im[11200] = 0.1022 +ij[11200] = 28.8 +id[11201] = "2705-10-29T22:13:17" +ik[11201] = 3.377 +il[11201] = 36 +im[11201] = 0.0692 +ij[11201] = 27.4 +id[11202] = "2705-11-13T21:02:59" +ik[11202] = 53.744 +il[11202] = 81 +im[11202] = 0.0487 +ij[11202] = 9 +id[11203] = "2705-11-28T13:47:42" +ik[11203] = 1.695 +il[11203] = 126 +im[11203] = 0.0684 +ij[11203] = 28.7 +id[11204] = "2705-12-25T19:00:51" +ik[11204] = 0.668 +il[11204] = -149 +im[11204] = 0.0134 +ij[11204] = 27.3 +id[11205] = "2706-01-14T10:56:51" +ik[11205] = 0.686 +il[11205] = -88 +im[11205] = 0.1346 +ij[11205] = 27.5 +id[11206] = "2706-01-31T08:02:06" +ik[11206] = 2.124 +il[11206] = -35 +im[11206] = 0.202 +ij[11206] = 28.4 +id[11207] = "2706-02-02T17:30:35" +ik[11207] = 90 +il[11207] = -28 +im[11207] = 0.2169 +ij[11207] = 6 +id[11208] = "2706-03-18T04:31:37" +ik[11208] = 5.43 +il[11208] = 94 +im[11208] = 0.391 +ij[11208] = 27.6 +id[11209] = "2706-03-22T10:43:24" +ik[11209] = 0 +il[11209] = 96 +im[11209] = 0.1748 +ij[11209] = 13 +id[11210] = "2706-04-12T13:48:15" +ik[11210] = 0.5262 +il[11210] = 99 +im[11210] = 0.5263 +ij[11210] = 2 +id[11211] = "2706-04-13T19:53:45" +ik[11211] = 7.56 +il[11211] = 111 +im[11211] = 0.5038 +ij[11211] = 11 +id[11212] = "2706-05-04T09:53:59" +ik[11212] = 42.97 +il[11212] = 145 +im[11212] = 0.1611 +ij[11212] = 7.1624 +id[11213] = "2706-06-06T18:48:45" +ik[11213] = 76.34 +il[11213] = -149 +im[11213] = 0.2536 +ij[11213] = 14 +id[11214] = "2706-06-09T14:58:35" +ik[11214] = 4.26 +il[11214] = -143 +im[11214] = 0.2056 +ij[11214] = 27.6 +id[11215] = "2706-06-23T06:24:33" +ik[11215] = 90 +il[11215] = -106 +im[11215] = 0.1999 +ij[11215] = 5 +id[11216] = "2706-07-02T00:11:22" +ik[11216] = 1.601 +il[11216] = -79 +im[11216] = 0.1135 +ij[11216] = 28.5 +id[11217] = "2706-09-03T09:54:33" +ik[11217] = 54.486 +il[11217] = 114 +im[11217] = 0.1227 +ij[11217] = 8 +id[11218] = "2706-11-29T13:29:42" +ik[11218] = 1.124 +il[11218] = 23 +im[11218] = 0.0564 +ij[11218] = 28.6 +id[11219] = "2706-12-04T19:51:10" +ik[11219] = 0.681 +il[11219] = 40 +im[11219] = 0.0882 +ij[11219] = 28.8 +id[11220] = "2707-01-28T10:33:36" +ik[11220] = 1 +il[11220] = -172 +im[11220] = 0.0418 +ij[11220] = 12 +id[11221] = "2707-04-07T20:00:31" +ik[11221] = 2.77 +il[11221] = -146 +im[11221] = 0.0521 +ij[11221] = 27.6 +id[11222] = "2707-04-20T15:09:38" +ik[11222] = 3.547 +il[11222] = -106 +im[11222] = 0.0878 +ij[11222] = 28.1 +id[11223] = "2707-05-14T22:39:57" +ik[11223] = 3.881 +il[11223] = -29 +im[11223] = 0.0653 +ij[11223] = 27.2 +id[11224] = "2707-05-26T05:24:08" +ik[11224] = 1.425 +il[11224] = 6 +im[11224] = 0.0097 +ij[11224] = 28.5 +id[11225] = "2707-06-23T21:20:48" +ik[11225] = 54.659 +il[11225] = 95 +im[11225] = 0.0229 +ij[11225] = 9 +id[11226] = "2707-09-03T12:17:28" +ik[11226] = 90 +il[11226] = -47 +im[11226] = 0.176 +ij[11226] = 6 +id[11227] = "2707-10-23T18:49:13" +ik[11227] = 0 +il[11227] = 96 +im[11227] = 0.2774 +ij[11227] = 13 +id[11228] = "2707-11-15T05:54:14" +ik[11228] = 4.74 +il[11228] = 99 +im[11228] = 0.164 +ij[11228] = 11 +id[11229] = "2707-11-23T03:46:09" +ik[11229] = 0.5482 +il[11229] = 118 +im[11229] = 0.5483 +ij[11229] = 2 +id[11230] = "2707-12-05T17:53:47" +ik[11230] = 42.96 +il[11230] = 134 +im[11230] = 0.4322 +ij[11230] = 7.1558 +id[11231] = "2708-01-06T07:57:32" +ik[11231] = 74.55 +il[11231] = -164 +im[11231] = 0.2201 +ij[11231] = 14 +id[11232] = "2708-01-07T15:54:05" +ik[11232] = 1.997 +il[11232] = -161 +im[11232] = 0.1649 +ij[11232] = 28.8 +id[11233] = "2708-01-11T12:03:27" +ik[11233] = 1.568 +il[11233] = -152 +im[11233] = 0.0332 +ij[11233] = 28.6 +id[11234] = "2708-01-25T00:41:21" +ik[11234] = 90 +il[11234] = -118 +im[11234] = 0.0573 +ij[11234] = 5 +id[11235] = "2708-01-28T04:28:50" +ik[11235] = 1.982 +il[11235] = -108 +im[11235] = 0.0915 +ij[11235] = 27.1 +id[11236] = "2708-02-25T11:21:41" +ik[11236] = 2.299 +il[11236] = -20 +im[11236] = 0.0264 +ij[11236] = 28.7 +id[11237] = "2708-03-19T15:44:50" +ik[11237] = 1.941 +il[11237] = 52 +im[11237] = 0.1288 +ij[11237] = 27.3 +id[11238] = "2708-04-06T23:34:10" +ik[11238] = 0.125 +il[11238] = 109 +im[11238] = 0.0747 +ij[11238] = 27.5 +id[11239] = "2708-04-12T23:21:42" +ik[11239] = 53.942 +il[11239] = 128 +im[11239] = 0.0658 +ij[11239] = 8 +id[11240] = "2708-05-06T07:15:27" +ik[11240] = 0.006 +il[11240] = -160 +im[11240] = 0.0808 +ij[11240] = 28.4 +id[11241] = "2708-05-18T18:57:01" +ik[11241] = 3.091 +il[11241] = -122 +im[11241] = 0.0912 +ij[11241] = 28.1 +id[11242] = "2708-05-21T20:13:30" +ik[11242] = 3.8 +il[11242] = -113 +im[11242] = 0.0504 +ij[11242] = 27.6 +id[11243] = "2708-06-28T18:10:53" +ik[11243] = 5.382 +il[11243] = 3 +im[11243] = 0.0779 +ij[11243] = 27.2 +id[11244] = "2708-08-31T18:59:02" +ik[11244] = 1.36 +il[11244] = 179 +im[11244] = 0.0817 +ij[11244] = 12 +id[11245] = "2708-11-08T10:11:25" +ik[11245] = 1.766 +il[11245] = -155 +im[11245] = 0.0411 +ij[11245] = 28.8 +id[11246] = "2708-11-12T14:18:10" +ik[11246] = 4.111 +il[11246] = -142 +im[11246] = 0.0915 +ij[11246] = 27.4 +id[11247] = "2708-11-23T01:30:08" +ik[11247] = 2.138 +il[11247] = -110 +im[11247] = 0.0245 +ij[11247] = 28.6 +id[11248] = "2708-11-27T17:16:48" +ik[11248] = 2.463 +il[11248] = -96 +im[11248] = 0.0907 +ij[11248] = 28.1 +id[11249] = "2708-12-22T01:41:22" +ik[11249] = 1.076 +il[11249] = -22 +im[11249] = 0.0066 +ij[11249] = 28.7 +id[11250] = "2709-01-06T15:36:50" +ik[11250] = 0.324 +il[11250] = 26 +im[11250] = 0.0146 +ij[11250] = 27.3 +id[11251] = "2709-01-24T16:43:57" +ik[11251] = 1.022 +il[11251] = 82 +im[11251] = 0.0924 +ij[11251] = 27.5 +id[11252] = "2709-01-29T04:02:37" +ik[11252] = 53.642 +il[11252] = 96 +im[11252] = 0.1226 +ij[11252] = 9 +id[11253] = "2709-03-11T14:05:23" +ik[11253] = 1.15 +il[11253] = -134 +im[11253] = 0.1131 +ij[11253] = 27.6 +id[11254] = "2709-04-14T20:22:12" +ik[11254] = 90 +il[11254] = -27 +im[11254] = 0.1877 +ij[11254] = 6 +id[11255] = "2709-04-24T18:50:10" +ik[11255] = 0.841 +il[11255] = -3 +im[11255] = 0.1994 +ij[11255] = 27.2 +id[11256] = "2709-05-31T07:58:00" +ik[11256] = 0 +il[11256] = 98 +im[11256] = 0.2169 +ij[11256] = 13 +id[11257] = "2709-06-22T10:39:10" +ik[11257] = 0.5325 +il[11257] = 96 +im[11257] = 0.5326 +ij[11257] = 2 +id[11258] = "2709-06-22T14:35:31" +ik[11258] = 1.2 +il[11258] = 106 +im[11258] = 0.5322 +ij[11258] = 11 +id[11259] = "2709-07-14T09:04:35" +ik[11259] = 44.05 +il[11259] = 142 +im[11259] = 0.2388 +ij[11259] = 7.1662 +id[11260] = "2709-08-17T08:30:23" +ik[11260] = 78.02 +il[11260] = -151 +im[11260] = 0.2584 +ij[11260] = 14 +id[11261] = "2709-08-31T18:50:12" +ik[11261] = 90 +il[11261] = -113 +im[11261] = 0.1943 +ij[11261] = 5 +id[11262] = "2709-10-09T08:09:18" +ik[11262] = 0.941 +il[11262] = 4 +im[11262] = 0.0653 +ij[11262] = 28.5 +id[11263] = "2709-11-12T16:54:11" +ik[11263] = 54.103 +il[11263] = 109 +im[11263] = 0.1141 +ij[11263] = 8 +id[11264] = "2709-12-24T03:31:06" +ik[11264] = 0.267 +il[11264] = -121 +im[11264] = 0.0629 +ij[11264] = 28.8 +id[11265] = "2710-01-05T08:47:30" +ik[11265] = 4.531 +il[11265] = -83 +im[11265] = 0.0126 +ij[11265] = 27.1 +id[11266] = "2710-01-15T14:49:55" +ik[11266] = 0.504 +il[11266] = -51 +im[11266] = 0.076 +ij[11266] = 28.6 +id[11267] = "2710-02-06T21:01:00" +ik[11267] = 0.154 +il[11267] = 18 +im[11267] = 0.0353 +ij[11267] = 28.7 +id[11268] = "2710-02-20T06:11:03" +ik[11268] = 0.641 +il[11268] = 60 +im[11268] = 0.0151 +ij[11268] = 27.3 +id[11269] = "2710-03-09T19:11:30" +ik[11269] = 0.771 +il[11269] = 103 +im[11269] = 0.0502 +ij[11269] = 27.5 +id[11270] = "2710-04-14T18:18:43" +ik[11270] = 1.22 +il[11270] = -159 +im[11270] = 0.0835 +ij[11270] = 12 +id[11271] = "2710-05-18T12:37:00" +ik[11271] = 0.256 +il[11271] = 131 +im[11271] = 0.052 +ij[11271] = 28.4 +id[11272] = "2710-05-29T07:40:23" +ik[11272] = 4.49 +il[11272] = 154 +im[11272] = 0.084 +ij[11272] = 27.2 +id[11273] = "2710-06-01T16:15:27" +ik[11273] = 3.404 +il[11273] = 164 +im[11273] = 0.0565 +ij[11273] = 28.1 +id[11274] = "2710-06-15T20:31:20" +ik[11274] = 0.056 +il[11274] = -151 +im[11274] = 0.0791 +ij[11274] = 27.9 +id[11275] = "2710-08-31T01:11:59" +ik[11275] = 54.399 +il[11275] = 83 +im[11275] = 0.077 +ij[11275] = 9 +id[11276] = "2710-09-04T07:22:04" +ik[11276] = 0.926 +il[11276] = 96 +im[11276] = 0.0173 +ij[11276] = 28.5 +id[11277] = "2710-10-18T02:50:47" +ik[11277] = 3.931 +il[11277] = -131 +im[11277] = 0.0043 +ij[11277] = 28.8 +id[11278] = "2710-10-18T15:10:10" +ik[11278] = 2.004 +il[11278] = -129 +im[11278] = 0.0215 +ij[11278] = 27.4 +id[11279] = "2710-11-17T00:44:01" +ik[11279] = 90 +il[11279] = -39 +im[11279] = 0.016 +ij[11279] = 6 +id[11280] = "2710-11-28T04:36:54" +ik[11280] = 3.732 +il[11280] = -8 +im[11280] = 0.1972 +ij[11280] = 28.6 +id[11281] = "2710-12-18T09:45:47" +ik[11281] = 1.463 +il[11281] = 43 +im[11281] = 0.1699 +ij[11281] = 28.7 +id[11282] = "2711-01-06T08:30:50" +ik[11282] = 0 +il[11282] = 90 +im[11282] = 0.4306 +ij[11282] = 13 +id[11283] = "2711-01-20T04:28:07" +ik[11283] = 0.5621 +il[11283] = 121 +im[11283] = 0.5621 +ij[11283] = 2 +id[11284] = "2711-01-27T20:25:26" +ik[11284] = 6.32 +il[11284] = 143 +im[11284] = 0.1551 +ij[11284] = 11 +id[11285] = "2711-02-17T16:10:35" +ik[11285] = 42.32 +il[11285] = 142 +im[11285] = 0.4219 +ij[11285] = 7.1557 +id[11286] = "2711-03-08T17:12:37" +ik[11286] = 5.833 +il[11286] = 177 +im[11286] = 0.0797 +ij[11286] = 28.7 +id[11287] = "2711-03-21T14:12:14" +ik[11287] = 74.24 +il[11287] = -155 +im[11287] = 0.1126 +ij[11287] = 14 +id[11288] = "2711-03-26T03:12:23" +ik[11288] = 4.695 +il[11288] = -144 +im[11288] = 0.1454 +ij[11288] = 27.3 +id[11289] = "2711-04-09T14:01:51" +ik[11289] = 90 +il[11289] = -107 +im[11289] = 0.1456 +ij[11289] = 5 +id[11290] = "2711-04-17T08:14:37" +ik[11290] = 1.176 +il[11290] = -83 +im[11290] = 0.167 +ij[11290] = 27.5 +id[11291] = "2711-06-04T13:33:20" +ik[11291] = 4.17 +il[11291] = 67 +im[11291] = 0.0095 +ij[11291] = 27.6 +id[11292] = "2711-06-24T05:31:34" +ik[11292] = 54.394 +il[11292] = 127 +im[11292] = 0.0917 +ij[11292] = 8 +id[11293] = "2711-07-13T19:46:00" +ik[11293] = 6.039 +il[11293] = -174 +im[11293] = 0.104 +ij[11293] = 27.2 +id[11294] = "2711-11-11T14:15:21" +ik[11294] = 0.82 +il[11294] = -179 +im[11294] = 0.0791 +ij[11294] = 12 +id[11295] = "2712-01-10T18:35:42" +ik[11295] = 1.013 +il[11295] = 176 +im[11295] = 0.0901 +ij[11295] = 28.6 +id[11296] = "2712-01-15T17:14:47" +ik[11296] = 1.396 +il[11296] = -169 +im[11296] = 0.0316 +ij[11296] = 28.1 +id[11297] = "2712-01-16T17:32:21" +ik[11297] = 0.72 +il[11297] = -166 +im[11297] = 0.0145 +ij[11297] = 28.7 +id[11298] = "2712-01-21T14:25:43" +ik[11298] = 0.022 +il[11298] = -151 +im[11298] = 0.0677 +ij[11298] = 27.3 +id[11299] = "2712-01-26T02:27:10" +ik[11299] = 2.05 +il[11299] = -137 +im[11299] = 0.0851 +ij[11299] = 28.1 +id[11300] = "2712-02-08T05:56:23" +ik[11300] = 1.002 +il[11300] = -97 +im[11300] = 0.1 +ij[11300] = 27.5 +id[11301] = "2712-03-23T09:43:16" +ik[11301] = 2.22 +il[11301] = 41 +im[11301] = 0.1012 +ij[11301] = 27.6 +id[11302] = "2712-04-12T22:07:08" +ik[11302] = 54.249 +il[11302] = 105 +im[11302] = 0.0861 +ij[11302] = 9 +id[11303] = "2712-04-30T15:17:43" +ik[11303] = 2.939 +il[11303] = 161 +im[11303] = 0.0225 +ij[11303] = 27.2 +id[11304] = "2712-06-09T20:31:46" +ik[11304] = 0.226 +il[11304] = -75 +im[11304] = 0.1595 +ij[11304] = 28.4 +id[11305] = "2712-06-21T23:14:41" +ik[11305] = 90 +il[11305] = -38 +im[11305] = 0.2152 +ij[11305] = 6 +id[11306] = "2712-08-09T14:12:42" +ik[11306] = 0 +il[11306] = 100 +im[11306] = 0.1616 +ij[11306] = 13 +id[11307] = "2712-08-31T06:37:26" +ik[11307] = 8.31 +il[11307] = 100 +im[11307] = 0.4922 +ij[11307] = 11 +id[11308] = "2712-08-31T14:56:47" +ik[11308] = 0.4943 +il[11308] = 112 +im[11308] = 0.4944 +ij[11308] = 2 +id[11309] = "2712-09-21T22:21:24" +ik[11309] = 43.34 +il[11309] = 136 +im[11309] = 0.1408 +ij[11309] = 7.1643 +id[11310] = "2712-10-25T05:06:09" +ik[11310] = 76.62 +il[11310] = -159 +im[11310] = 0.2462 +ij[11310] = 14 +id[11311] = "2712-11-09T22:46:23" +ik[11311] = 90 +il[11311] = -119 +im[11311] = 0.2248 +ij[11311] = 5 +id[11312] = "2713-01-11T08:49:37" +ik[11312] = 0.422 +il[11312] = 74 +im[11312] = 0.1145 +ij[11312] = 28.8 +id[11313] = "2713-01-18T12:56:23" +ik[11313] = 3.706 +il[11313] = 96 +im[11313] = 0.0643 +ij[11313] = 27.1 +id[11314] = "2713-01-21T00:28:04" +ik[11314] = 0.963 +il[11314] = 104 +im[11314] = 0.1075 +ij[11314] = 28.5 +id[11315] = "2713-01-25T11:12:56" +ik[11315] = 53.727 +il[11315] = 118 +im[11315] = 0.1007 +ij[11315] = 8 +id[11316] = "2713-03-03T14:37:58" +ik[11316] = 0.339 +il[11316] = -126 +im[11316] = 0.0329 +ij[11316] = 28.7 +id[11317] = "2713-03-04T02:36:40" +ik[11317] = 0.408 +il[11317] = -125 +im[11317] = 0.042 +ij[11317] = 28.6 +id[11318] = "2713-03-06T11:42:36" +ik[11318] = 1.097 +il[11318] = -117 +im[11318] = 0.0794 +ij[11318] = 27.3 +id[11319] = "2713-03-24T04:48:23" +ik[11319] = 0.555 +il[11319] = -62 +im[11319] = 0.0992 +ij[11319] = 27.5 +id[11320] = "2713-05-07T03:52:14" +ik[11320] = 3.47 +il[11320] = 72 +im[11320] = 0.0792 +ij[11320] = 27.6 +id[11321] = "2713-06-23T05:15:21" +ik[11321] = 0.21 +il[11321] = -167 +im[11321] = 0.0878 +ij[11321] = 12 +id[11322] = "2713-09-09T19:22:13" +ik[11322] = 4.333 +il[11322] = -106 +im[11322] = 0.0732 +ij[11322] = 28.1 +id[11323] = "2713-10-29T12:44:23" +ik[11323] = 3.353 +il[11323] = 45 +im[11323] = 0.0255 +ij[11323] = 27.4 +id[11324] = "2713-11-03T16:34:19" +ik[11324] = 2.796 +il[11324] = 60 +im[11324] = 0.1131 +ij[11324] = 28.8 +id[11325] = "2713-11-11T09:01:24" +ik[11325] = 53.763 +il[11325] = 84 +im[11325] = 0.05 +ij[11325] = 9 +id[11326] = "2713-12-15T04:19:46" +ik[11326] = 1.675 +il[11326] = -172 +im[11326] = 0.0622 +ij[11326] = 28.5 +id[11327] = "2713-12-25T12:31:30" +ik[11327] = 0.671 +il[11327] = -140 +im[11327] = 0.0737 +ij[11327] = 27.3 +id[11328] = "2713-12-29T07:43:40" +ik[11328] = 1.25 +il[11328] = -129 +im[11328] = 0.042 +ij[11328] = 28.7 +id[11329] = "2714-01-08T20:03:24" +ik[11329] = 0.231 +il[11329] = -96 +im[11329] = 0.1104 +ij[11329] = 28.6 +id[11330] = "2714-01-14T07:30:36" +ik[11330] = 0.646 +il[11330] = -79 +im[11330] = 0.097 +ij[11330] = 27.5 +id[11331] = "2714-01-31T06:31:38" +ik[11331] = 90 +il[11331] = -25 +im[11331] = 0.1615 +ij[11331] = 6 +id[11332] = "2714-03-20T05:06:36" +ik[11332] = 0 +il[11332] = 111 +im[11332] = 0.4073 +ij[11332] = 13 +id[11333] = "2714-04-11T10:32:09" +ik[11333] = 7.74 +il[11333] = 113 +im[11333] = 0.4607 +ij[11333] = 11 +id[11334] = "2714-04-13T16:51:37" +ik[11334] = 0.5361 +il[11334] = 127 +im[11334] = 0.5362 +ij[11334] = 2 +id[11335] = "2714-05-02T04:09:10" +ik[11335] = 42.96 +il[11335] = 148 +im[11335] = 0.1831 +ij[11335] = 7.1623 +id[11336] = "2714-06-04T08:21:52" +ik[11336] = 76.14 +il[11336] = -147 +im[11336] = 0.1682 +ij[11336] = 14 +id[11337] = "2714-06-10T00:21:17" +ik[11337] = 4.3 +il[11337] = -133 +im[11337] = 0.2324 +ij[11337] = 27.6 +id[11338] = "2714-06-20T22:08:21" +ik[11338] = 90 +il[11338] = -103 +im[11338] = 0.1692 +ij[11338] = 5 +id[11339] = "2714-09-01T02:44:32" +ik[11339] = 54.491 +il[11339] = 117 +im[11339] = 0.0709 +ij[11339] = 8 +id[11340] = "2714-10-28T16:24:31" +ik[11340] = 0.26 +il[11340] = -66 +im[11340] = 0.0077 +ij[11340] = 28.4 +id[11341] = "2714-12-18T17:32:55" +ik[11341] = 1.022 +il[11341] = 93 +im[11341] = 0.0872 +ij[11341] = 28.8 +id[11342] = "2715-01-25T20:32:38" +ik[11342] = 0.96 +il[11342] = -170 +im[11342] = 0.0313 +ij[11342] = 12 +id[11343] = "2715-03-11T15:48:57" +ik[11343] = 1.905 +il[11343] = 140 +im[11343] = 0.029 +ij[11343] = 28.1 +id[11344] = "2715-04-01T03:47:22" +ik[11344] = 3.419 +il[11344] = -156 +im[11344] = 0.0662 +ij[11344] = 28.1 +id[11345] = "2715-04-07T09:18:13" +ik[11345] = 2.76 +il[11345] = -137 +im[11345] = 0.0804 +ij[11345] = 27.6 +id[11346] = "2715-05-14T12:26:09" +ik[11346] = 3.862 +il[11346] = -21 +im[11346] = 0.0277 +ij[11346] = 27.2 +id[11347] = "2715-06-21T15:28:59" +ik[11347] = 54.656 +il[11347] = 98 +im[11347] = 0.098 +ij[11347] = 9 +id[11348] = "2715-09-01T02:22:12" +ik[11348] = 90 +il[11348] = -45 +im[11348] = 0.2062 +ij[11348] = 6 +id[11349] = "2715-10-21T08:22:19" +ik[11349] = 0 +il[11349] = 98 +im[11349] = 0.0834 +ij[11349] = 13 +id[11350] = "2715-11-10T21:32:54" +ik[11350] = 0.5449 +il[11350] = 90 +im[11350] = 0.545 +ij[11350] = 2 +id[11351] = "2715-11-12T19:20:38" +ik[11351] = 5.06 +il[11351] = 101 +im[11351] = 0.4872 +ij[11351] = 11 +id[11352] = "2715-12-03T08:25:53" +ik[11352] = 43 +il[11352] = 136 +im[11352] = 0.2379 +ij[11352] = 7.156 +id[11353] = "2716-01-03T22:32:37" +ik[11353] = 74.59 +il[11353] = -162 +im[11353] = 0.2645 +ij[11353] = 14 +id[11354] = "2716-01-22T13:28:15" +ik[11354] = 90 +il[11354] = -116 +im[11354] = 0.1935 +ij[11354] = 5 +id[11355] = "2716-01-26T07:59:39" +ik[11355] = 1.931 +il[11355] = -104 +im[11355] = 0.0587 +ij[11355] = 28.8 +id[11356] = "2716-01-28T04:27:29" +ik[11356] = 2.07 +il[11356] = -98 +im[11356] = 0.0421 +ij[11356] = 27.1 +id[11357] = "2716-03-19T07:39:56" +ik[11357] = 1.904 +il[11357] = 61 +im[11357] = 0.1282 +ij[11357] = 27.3 +id[11358] = "2716-03-27T15:42:37" +ik[11358] = 0.539 +il[11358] = 87 +im[11358] = 0.0216 +ij[11358] = 28.7 +id[11359] = "2716-04-06T14:36:23" +ik[11359] = 0.143 +il[11359] = 118 +im[11359] = 0.1109 +ij[11359] = 27.5 +id[11360] = "2716-04-10T12:31:14" +ik[11360] = 53.927 +il[11360] = 130 +im[11360] = 0.0341 +ij[11360] = 8 +id[11361] = "2716-04-19T11:48:20" +ik[11361] = 0.901 +il[11361] = 158 +im[11361] = 0.1067 +ij[11361] = 28.6 +id[11362] = "2716-04-23T05:25:43" +ik[11362] = 0.063 +il[11362] = 170 +im[11362] = 0.0581 +ij[11362] = 28.5 +id[11363] = "2716-05-21T10:03:08" +ik[11363] = 3.79 +il[11363] = -104 +im[11363] = 0.0804 +ij[11363] = 27.6 +id[11364] = "2716-06-28T07:21:59" +ik[11364] = 5.363 +il[11364] = 11 +im[11364] = 0.0473 +ij[11364] = 27.2 +id[11365] = "2716-08-29T12:18:43" +ik[11365] = 1.35 +il[11365] = -180 +im[11365] = 0.0662 +ij[11365] = 12 +id[11366] = "2716-11-12T03:45:42" +ik[11366] = 4.097 +il[11366] = -133 +im[11366] = 0.0683 +ij[11366] = 27.4 +id[11367] = "2716-11-22T11:26:18" +ik[11367] = 2.171 +il[11367] = -102 +im[11367] = 0.0164 +ij[11367] = 28.8 +id[11368] = "2716-11-23T19:05:22" +ik[11368] = 0.104 +il[11368] = -98 +im[11368] = 0.0127 +ij[11368] = 28.4 +id[11369] = "2717-01-06T05:53:16" +ik[11369] = 0.329 +il[11369] = 35 +im[11369] = 0.0351 +ij[11369] = 27.3 +id[11370] = "2717-01-20T23:48:11" +ik[11370] = 0.786 +il[11370] = 81 +im[11370] = 0.0288 +ij[11370] = 28.7 +id[11371] = "2717-01-24T07:32:23" +ik[11371] = 1.016 +il[11371] = 91 +im[11371] = 0.0572 +ij[11371] = 27.5 +id[11372] = "2717-01-26T15:00:35" +ik[11372] = 53.63 +il[11372] = 98 +im[11372] = 0.102 +ij[11372] = 9 +id[11373] = "2717-02-21T08:26:00" +ik[11373] = 2.018 +il[11373] = 179 +im[11373] = 0.0148 +ij[11373] = 28.6 +id[11374] = "2717-03-11T07:44:00" +ik[11374] = 1.09 +il[11374] = -125 +im[11374] = 0.0736 +ij[11374] = 27.6 +id[11375] = "2717-03-14T05:03:24" +ik[11375] = 2.247 +il[11375] = -116 +im[11375] = 0.1408 +ij[11375] = 28.5 +id[11376] = "2717-04-12T13:19:25" +ik[11376] = 90 +il[11376] = -24 +im[11376] = 0.1855 +ij[11376] = 6 +id[11377] = "2717-04-25T03:15:29" +ik[11377] = 0.718 +il[11377] = 6 +im[11377] = 0.1538 +ij[11377] = 27.2 +id[11378] = "2717-05-28T22:33:04" +ik[11378] = 0 +il[11378] = 99 +im[11378] = 0.4057 +ij[11378] = 13 +id[11379] = "2717-06-20T07:43:40" +ik[11379] = 0.88 +il[11379] = 109 +im[11379] = 0.3805 +ij[11379] = 11 +id[11380] = "2717-06-23T14:15:35" +ik[11380] = 0.5211 +il[11380] = 124 +im[11380] = 0.5212 +ij[11380] = 2 +id[11381] = "2717-07-11T23:55:40" +ik[11381] = 44.06 +il[11381] = 145 +im[11381] = 0.1104 +ij[11381] = 7.1661 +id[11382] = "2717-08-15T00:24:29" +ik[11382] = 78.08 +il[11382] = -148 +im[11382] = 0.2024 +ij[11382] = 14 +id[11383] = "2717-08-29T11:29:44" +ik[11383] = 90 +il[11383] = -110 +im[11383] = 0.1613 +ij[11383] = 5 +id[11384] = "2717-11-10T07:29:03" +ik[11384] = 54.12 +il[11384] = 112 +im[11384] = 0.0516 +ij[11384] = 8 +id[11385] = "2718-01-04T22:21:15" +ik[11385] = 4.551 +il[11385] = -75 +im[11385] = 0.0531 +ij[11385] = 27.1 +id[11386] = "2718-01-07T03:39:01" +ik[11386] = 0.564 +il[11386] = -68 +im[11386] = 0.0091 +ij[11386] = 28.8 +id[11387] = "2718-02-19T19:27:29" +ik[11387] = 0.633 +il[11387] = 68 +im[11387] = 0.0268 +ij[11387] = 27.3 +id[11388] = "2718-02-24T00:46:48" +ik[11388] = 2.907 +il[11388] = 81 +im[11388] = 0.0452 +ij[11388] = 28.1 +id[11389] = "2718-04-12T07:46:33" +ik[11389] = 1.25 +il[11389] = -156 +im[11389] = 0.0763 +ij[11389] = 12 +id[11390] = "2718-05-16T12:29:57" +ik[11390] = 0.679 +il[11390] = 135 +im[11390] = 0.0888 +ij[11390] = 28.5 +id[11391] = "2718-05-28T20:48:22" +ik[11391] = 4.477 +il[11391] = 162 +im[11391] = 0.08 +ij[11391] = 27.2 +id[11392] = "2718-06-09T01:20:29" +ik[11392] = 0.471 +il[11392] = -163 +im[11392] = 0.0439 +ij[11392] = 28.1 +id[11393] = "2718-06-15T09:40:53" +ik[11393] = 0.074 +il[11393] = -143 +im[11393] = 0.0931 +ij[11393] = 27.9 +id[11394] = "2718-08-28T17:37:04" +ik[11394] = 54.418 +il[11394] = 86 +im[11394] = 0.1218 +ij[11394] = 9 +id[11395] = "2718-10-18T10:09:15" +ik[11395] = 1.941 +il[11395] = -120 +im[11395] = 0.0387 +ij[11395] = 27.4 +id[11396] = "2718-11-03T08:58:33" +ik[11396] = 4.546 +il[11396] = -71 +im[11396] = 0.0434 +ij[11396] = 28.8 +id[11397] = "2718-11-14T12:02:28" +ik[11397] = 90 +il[11397] = -37 +im[11397] = 0.1551 +ij[11397] = 6 +id[11398] = "2718-12-22T10:25:49" +ik[11398] = 1.182 +il[11398] = 68 +im[11398] = 0.3241 +ij[11398] = 28.4 +id[11399] = "2719-01-04T00:24:56" +ik[11399] = 0 +il[11399] = 95 +im[11399] = 0.2775 +ij[11399] = 13 +id[11400] = "2719-01-21T08:38:23" +ik[11400] = 0.5698 +il[11400] = 96 +im[11400] = 0.5699 +ij[11400] = 2 +id[11401] = "2719-01-25T09:00:00" +ik[11401] = 6.03 +il[11401] = 110 +im[11401] = 0.3368 +ij[11401] = 11 +id[11402] = "2719-02-16T00:30:31" +ik[11402] = 43 +il[11402] = 146 +im[11402] = 0.4618 +ij[11402] = 7.1555 +id[11403] = "2719-03-19T01:47:18" +ik[11403] = 74.06 +il[11403] = -153 +im[11403] = 0.2681 +ij[11403] = 14 +id[11404] = "2719-03-26T10:46:36" +ik[11404] = 4.484 +il[11404] = -135 +im[11404] = 0.087 +ij[11404] = 27.3 +id[11405] = "2719-04-07T02:38:08" +ik[11405] = 90 +il[11405] = -105 +im[11405] = 0.0288 +ij[11405] = 5 +id[11406] = "2719-04-17T06:03:02" +ik[11406] = 1.088 +il[11406] = -73 +im[11406] = 0.1901 +ij[11406] = 27.5 +id[11407] = "2719-04-18T20:54:23" +ik[11407] = 1.023 +il[11407] = -68 +im[11407] = 0.1577 +ij[11407] = 28.7 +id[11408] = "2719-06-03T18:10:56" +ik[11408] = 0.548 +il[11408] = 74 +im[11408] = 0.0768 +ij[11408] = 28.6 +id[11409] = "2719-06-04T05:28:51" +ik[11409] = 4.16 +il[11409] = 75 +im[11409] = 0.0665 +ij[11409] = 27.6 +id[11410] = "2719-06-21T22:03:45" +ik[11410] = 54.383 +il[11410] = 130 +im[11410] = 0.0113 +ij[11410] = 8 +id[11411] = "2719-07-13T09:49:32" +ik[11411] = 6.013 +il[11411] = -165 +im[11411] = 0.1006 +ij[11411] = 27.2 +id[11412] = "2719-07-22T20:56:41" +ik[11412] = 0.493 +il[11412] = -136 +im[11412] = 0.0325 +ij[11412] = 28.5 +id[11413] = "2719-11-09T03:53:16" +ik[11413] = 0.87 +il[11413] = 179 +im[11413] = 0.0776 +ij[11413] = 12 +id[11414] = "2720-01-09T14:12:28" +ik[11414] = 1.645 +il[11414] = -178 +im[11414] = 0.0913 +ij[11414] = 28.1 +id[11415] = "2720-01-21T03:49:16" +ik[11415] = 0.017 +il[11415] = -143 +im[11415] = 0.0399 +ij[11415] = 27.3 +id[11416] = "2720-02-07T19:30:36" +ik[11416] = 1.001 +il[11416] = -88 +im[11416] = 0.0874 +ij[11416] = 27.5 +id[11417] = "2720-02-15T16:32:00" +ik[11417] = 0.556 +il[11417] = -64 +im[11417] = 0.0506 +ij[11417] = 28.7 +id[11418] = "2720-03-22T23:50:48" +ik[11418] = 2.19 +il[11418] = 50 +im[11418] = 0.0843 +ij[11418] = 27.6 +id[11419] = "2720-04-05T10:23:39" +ik[11419] = 2.814 +il[11419] = 92 +im[11419] = 0.0516 +ij[11419] = 28.6 +id[11420] = "2720-04-10T13:24:40" +ik[11420] = 54.226 +il[11420] = 108 +im[11420] = 0.1177 +ij[11420] = 9 +id[11421] = "2720-04-30T07:11:28" +ik[11421] = 2.902 +il[11421] = 170 +im[11421] = 0.0772 +ij[11421] = 27.2 +id[11422] = "2720-06-17T10:41:22" +ik[11422] = 1.607 +il[11422] = -42 +im[11422] = 0.0608 +ij[11422] = 28.5 +id[11423] = "2720-06-19T16:43:44" +ik[11423] = 90 +il[11423] = -35 +im[11423] = 0.1455 +ij[11423] = 6 +id[11424] = "2720-08-07T01:47:45" +ik[11424] = 0 +il[11424] = 102 +im[11424] = 0.3818 +ij[11424] = 13 +id[11425] = "2720-08-19T16:39:24" +ik[11425] = 0.5111 +il[11425] = 129 +im[11425] = 0.5112 +ij[11425] = 2 +id[11426] = "2720-08-28T21:47:31" +ik[11426] = 8.21 +il[11426] = 103 +im[11426] = 0.2958 +ij[11426] = 11 +id[11427] = "2720-09-20T01:51:20" +ik[11427] = 44 +il[11427] = 139 +im[11427] = 0.1843 +ij[11427] = 7.1645 +id[11428] = "2720-10-22T22:28:03" +ik[11428] = 76.86 +il[11428] = -156 +im[11428] = 0.1322 +ij[11428] = 14 +id[11429] = "2720-11-07T13:53:55" +ik[11429] = 90 +il[11429] = -117 +im[11429] = 0.1738 +ij[11429] = 5 +id[11430] = "2721-01-18T04:05:15" +ik[11430] = 3.739 +il[11430] = 105 +im[11430] = 0.0184 +ij[11430] = 27.1 +id[11431] = "2721-01-22T22:57:07" +ik[11431] = 53.732 +il[11431] = 120 +im[11431] = 0.1125 +ij[11431] = 8 +id[11432] = "2721-01-25T18:08:29" +ik[11432] = 0.109 +il[11432] = 129 +im[11432] = 0.1152 +ij[11432] = 28.8 +id[11433] = "2721-03-06T01:34:09" +ik[11433] = 1.082 +il[11433] = -111 +im[11433] = 0.0441 +ij[11433] = 27.3 +id[11434] = "2721-03-15T04:00:11" +ik[11434] = 1.049 +il[11434] = -80 +im[11434] = 0.0619 +ij[11434] = 28.4 +id[11435] = "2721-03-23T18:26:09" +ik[11435] = 0.562 +il[11435] = -54 +im[11435] = 0.0902 +ij[11435] = 27.5 +id[11436] = "2721-04-02T22:54:02" +ik[11436] = 0.505 +il[11436] = -22 +im[11436] = 0.0091 +ij[11436] = 28.7 +id[11437] = "2721-04-30T03:50:15" +ik[11437] = 0.748 +il[11437] = 61 +im[11437] = 0.0559 +ij[11437] = 28.1 +id[11438] = "2721-05-06T16:58:45" +ik[11438] = 3.46 +il[11438] = 81 +im[11438] = 0.0597 +ij[11438] = 27.6 +id[11439] = "2721-06-20T23:36:57" +ik[11439] = 0.16 +il[11439] = -163 +im[11439] = 0.061 +ij[11439] = 12 +id[11440] = "2721-08-18T23:16:48" +ik[11440] = 3.753 +il[11440] = -163 +im[11440] = 0.0404 +ij[11440] = 28.1 +id[11441] = "2721-08-20T19:47:08" +ik[11441] = 0.136 +il[11441] = -158 +im[11441] = 0.0667 +ij[11441] = 28.5 +id[11442] = "2721-10-29T03:22:35" +ik[11442] = 3.328 +il[11442] = 55 +im[11442] = 0.0269 +ij[11442] = 27.4 +id[11443] = "2721-11-08T21:10:28" +ik[11443] = 53.782 +il[11443] = 86 +im[11443] = 0.1155 +ij[11443] = 9 +id[11444] = "2721-11-18T04:07:06" +ik[11444] = 3.114 +il[11444] = 114 +im[11444] = 0.0878 +ij[11444] = 28.8 +id[11445] = "2721-12-25T06:19:29" +ik[11445] = 0.674 +il[11445] = -131 +im[11445] = 0.1286 +ij[11445] = 27.3 +id[11446] = "2722-01-14T04:39:55" +ik[11446] = 0.601 +il[11446] = -69 +im[11446] = 0.0457 +ij[11446] = 27.5 +id[11447] = "2722-01-28T19:25:37" +ik[11447] = 90 +il[11447] = -23 +im[11447] = 0.0081 +ij[11447] = 6 +id[11448] = "2722-02-02T06:52:42" +ik[11448] = 1.366 +il[11448] = -10 +im[11448] = 0.1785 +ij[11448] = 28.7 +id[11449] = "2722-03-18T22:28:30" +ik[11449] = 0 +il[11449] = 116 +im[11449] = 0.458 +ij[11449] = 13 +id[11450] = "2722-04-09T01:01:55" +ik[11450] = 7.91 +il[11450] = 116 +im[11450] = 0.1344 +ij[11450] = 11 +id[11451] = "2722-04-14T18:03:53" +ik[11451] = 0.5362 +il[11451] = 133 +im[11451] = 0.5362 +ij[11451] = 2 +id[11452] = "2722-04-30T21:31:05" +ik[11452] = 42.96 +il[11452] = 152 +im[11452] = 0.344 +ij[11452] = 7.1619 +id[11453] = "2722-06-01T21:51:53" +ik[11453] = 74.97 +il[11453] = -144 +im[11453] = 0.0312 +ij[11453] = 14 +id[11454] = "2722-06-10T07:29:49" +ik[11454] = 4.34 +il[11454] = -124 +im[11454] = 0.2415 +ij[11454] = 27.6 +id[11455] = "2722-06-18T13:45:04" +ik[11455] = 90 +il[11455] = -101 +im[11455] = 0.0228 +ij[11455] = 5 +id[11456] = "2722-07-15T09:50:32" +ik[11456] = 0.677 +il[11456] = -18 +im[11456] = 0.0766 +ij[11456] = 28.6 +id[11457] = "2722-08-29T19:38:03" +ik[11457] = 54.496 +il[11457] = 120 +im[11457] = 0.0235 +ij[11457] = 8 +id[11458] = "2722-10-31T11:07:00" +ik[11458] = 0.001 +il[11458] = -47 +im[11458] = 0.0182 +ij[11458] = 28.5 +id[11459] = "2722-12-05T20:29:28" +ik[11459] = 0.926 +il[11459] = 63 +im[11459] = 0.0829 +ij[11459] = 28.1 +id[11460] = "2723-01-23T06:36:00" +ik[11460] = 0.91 +il[11460] = -168 +im[11460] = 0.0836 +ij[11460] = 12 +id[11461] = "2723-03-11T06:13:58" +ik[11461] = 3.381 +il[11461] = 148 +im[11461] = 0.0626 +ij[11461] = 28.1 +id[11462] = "2723-03-13T03:19:26" +ik[11462] = 0.486 +il[11462] = 154 +im[11462] = 0.0358 +ij[11462] = 28.7 +id[11463] = "2723-03-21T00:06:20" +ik[11463] = 0.671 +il[11463] = 179 +im[11463] = 0.0803 +ij[11463] = 28.4 +id[11464] = "2723-04-06T22:36:44" +ik[11464] = 2.74 +il[11464] = -128 +im[11464] = 0.095 +ij[11464] = 27.6 +id[11465] = "2723-05-14T02:12:48" +ik[11465] = 3.844 +il[11465] = -12 +im[11465] = 0.0185 +ij[11465] = 27.2 +id[11466] = "2723-05-18T18:24:11" +ik[11466] = 2.432 +il[11466] = 3 +im[11466] = 0.0749 +ij[11466] = 28.6 +id[11467] = "2723-06-19T09:40:44" +ik[11467] = 54.652 +il[11467] = 101 +im[11467] = 0.1085 +ij[11467] = 9 +id[11468] = "2723-08-29T16:37:33" +ik[11468] = 90 +il[11468] = -42 +im[11468] = 0.102 +ij[11468] = 6 +id[11469] = "2723-10-18T21:52:20" +ik[11469] = 0 +il[11469] = 101 +im[11469] = 0.3832 +ij[11469] = 13 +id[11470] = "2723-11-10T08:45:36" +ik[11470] = 5.37 +il[11470] = 104 +im[11470] = 0.5212 +ij[11470] = 11 +id[11471] = "2723-11-11T20:34:54" +ik[11471] = 0.556 +il[11471] = 117 +im[11471] = 0.556 +ij[11471] = 2 +id[11472] = "2723-11-30T20:54:54" +ik[11472] = 42.96 +il[11472] = 138 +im[11472] = 0.1371 +ij[11472] = 7.1561 +id[11473] = "2723-12-29T02:51:56" +ik[11473] = 1.935 +il[11473] = -167 +im[11473] = 0.0841 +ij[11473] = 28.5 +id[11474] = "2724-01-01T12:55:39" +ik[11474] = 74.63 +il[11474] = -159 +im[11474] = 0.1274 +ij[11474] = 14 +id[11475] = "2724-01-20T02:18:41" +ik[11475] = 90 +il[11475] = -114 +im[11475] = 0.1982 +ij[11475] = 5 +id[11476] = "2724-01-28T03:39:28" +ik[11476] = 2.154 +il[11476] = -88 +im[11476] = 0.0239 +ij[11476] = 27.1 +id[11477] = "2724-02-11T17:27:01" +ik[11477] = 1.423 +il[11477] = -43 +im[11477] = 0.0607 +ij[11477] = 28.8 +id[11478] = "2724-03-18T23:31:28" +ik[11478] = 1.869 +il[11478] = 70 +im[11478] = 0.1099 +ij[11478] = 27.3 +id[11479] = "2724-04-06T05:31:29" +ik[11479] = 0.162 +il[11479] = 127 +im[11479] = 0.1254 +ij[11479] = 27.5 +id[11480] = "2724-04-08T01:30:05" +ik[11480] = 53.911 +il[11480] = 133 +im[11480] = 0.1112 +ij[11480] = 8 +id[11481] = "2724-04-28T02:32:12" +ik[11481] = 0.701 +il[11481] = -166 +im[11481] = 0.0093 +ij[11481] = 28.7 +id[11482] = "2724-05-20T23:51:43" +ik[11482] = 3.78 +il[11482] = -95 +im[11482] = 0.0973 +ij[11482] = 27.6 +id[11483] = "2724-06-27T20:33:05" +ik[11483] = 5.344 +il[11483] = 20 +im[11483] = 0.0104 +ij[11483] = 27.2 +id[11484] = "2724-07-09T04:14:28" +ik[11484] = 0.784 +il[11484] = 54 +im[11484] = 0.05 +ij[11484] = 28.6 +id[11485] = "2724-07-10T21:47:48" +ik[11485] = 2.664 +il[11485] = 60 +im[11485] = 0.0201 +ij[11485] = 28.1 +id[11486] = "2724-08-27T05:44:09" +ik[11486] = 1.33 +il[11486] = -167 +im[11486] = 0.0083 +ij[11486] = 12 +id[11487] = "2724-10-21T14:21:15" +ik[11487] = 2.673 +il[11487] = 179 +im[11487] = 0.0711 +ij[11487] = 28.1 +id[11488] = "2724-11-11T17:16:48" +ik[11488] = 4.083 +il[11488] = -125 +im[11488] = 0.0334 +ij[11488] = 27.4 +id[11489] = "2724-12-02T05:18:40" +ik[11489] = 1.232 +il[11489] = -62 +im[11489] = 0.1024 +ij[11489] = 28.5 +id[11490] = "2724-12-06T11:53:39" +ik[11490] = 2.366 +il[11490] = -49 +im[11490] = 0.0698 +ij[11490] = 28.8 +id[11491] = "2725-01-05T20:12:48" +ik[11491] = 0.335 +il[11491] = 44 +im[11491] = 0.0778 +ij[11491] = 27.3 +id[11492] = "2725-01-23T22:27:28" +ik[11492] = 1.009 +il[11492] = 100 +im[11492] = 0.0072 +ij[11492] = 27.5 +id[11493] = "2725-01-24T01:51:26" +ik[11493] = 53.619 +il[11493] = 100 +im[11493] = 0.0108 +ij[11493] = 9 +id[11494] = "2725-02-21T12:30:48" +ik[11494] = 0.538 +il[11494] = -171 +im[11494] = 0.0382 +ij[11494] = 28.7 +id[11495] = "2725-03-11T01:37:36" +ik[11495] = 1.03 +il[11495] = -116 +im[11495] = 0.0294 +ij[11495] = 27.6 +id[11496] = "2725-03-29T16:16:02" +ik[11496] = 2.134 +il[11496] = -57 +im[11496] = 0.1536 +ij[11496] = 28.4 +id[11497] = "2725-04-10T06:10:26" +ik[11497] = 90 +il[11497] = -21 +im[11497] = 0.071 +ij[11497] = 6 +id[11498] = "2725-04-25T14:09:15" +ik[11498] = 0.587 +il[11498] = 16 +im[11498] = 0.1013 +ij[11498] = 27.2 +id[11499] = "2725-05-26T12:56:06" +ik[11499] = 0 +il[11499] = 100 +im[11499] = 0.3212 +ij[11499] = 13 +id[11500] = "2725-06-11T04:42:43" +ik[11500] = 0.5062 +il[11500] = 137 +im[11500] = 0.5062 +ij[11500] = 2 +id[11501] = "2725-06-18T00:47:31" +ik[11501] = 0.55 +il[11501] = 112 +im[11501] = 0.0301 +ij[11501] = 11 +id[11502] = "2725-07-09T15:42:51" +ik[11502] = 44.12 +il[11502] = 148 +im[11502] = 0.3607 +ij[11502] = 7.1659 +id[11503] = "2725-08-12T16:08:40" +ik[11503] = 78.13 +il[11503] = -145 +im[11503] = 0.0267 +ij[11503] = 14 +id[11504] = "2725-08-22T08:09:36" +ik[11504] = 2.773 +il[11504] = -121 +im[11504] = 0.1835 +ij[11504] = 28.6 +id[11505] = "2725-08-27T04:10:08" +ik[11505] = 90 +il[11505] = -108 +im[11505] = 0.0203 +ij[11505] = 5 +id[11506] = "2725-11-07T22:11:01" +ik[11506] = 54.138 +il[11506] = 115 +im[11506] = 0.05 +ij[11506] = 8 +id[11507] = "2726-01-04T11:58:08" +ik[11507] = 4.571 +il[11507] = -66 +im[11507] = 0.0816 +ij[11507] = 27.1 +id[11508] = "2726-01-21T01:06:23" +ik[11508] = 0.81 +il[11508] = -14 +im[11508] = 0.0474 +ij[11508] = 28.8 +id[11509] = "2726-02-03T01:54:54" +ik[11509] = 2.847 +il[11509] = 26 +im[11509] = 0.0797 +ij[11509] = 28.1 +id[11510] = "2726-02-08T06:38:26" +ik[11510] = 0.022 +il[11510] = 42 +im[11510] = 0.008 +ij[11510] = 28.5 +id[11511] = "2726-02-19T08:43:28" +ik[11511] = 0.625 +il[11511] = 77 +im[11511] = 0.0619 +ij[11511] = 27.3 +id[11512] = "2726-04-09T21:00:00" +ik[11512] = 1.28 +il[11512] = -154 +im[11512] = 0.0186 +ij[11512] = 12 +id[11513] = "2726-05-16T07:53:19" +ik[11513] = 0.78 +il[11513] = 133 +im[11513] = 0.0891 +ij[11513] = 28.1 +id[11514] = "2726-05-28T09:55:54" +ik[11514] = 4.464 +il[11514] = 171 +im[11514] = 0.0635 +ij[11514] = 27.2 +id[11515] = "2726-06-14T22:49:26" +ik[11515] = 0.091 +il[11515] = -134 +im[11515] = 0.0884 +ij[11515] = 27.9 +id[11516] = "2726-06-29T18:43:12" +ik[11516] = 1.347 +il[11516] = -88 +im[11516] = 0.0925 +ij[11516] = 28.6 +id[11517] = "2726-08-26T10:09:15" +ik[11517] = 54.436 +il[11517] = 89 +im[11517] = 0.0937 +ij[11517] = 9 +id[11518] = "2726-10-18T05:30:08" +ik[11518] = 1.875 +il[11518] = -111 +im[11518] = 0.0995 +ij[11518] = 27.4 +id[11519] = "2726-11-11T23:25:20" +ik[11519] = 90 +il[11519] = -34 +im[11519] = 0.2076 +ij[11519] = 6 +id[11520] = "2726-11-21T07:12:00" +ik[11520] = 4.551 +il[11520] = -8 +im[11520] = 0.0634 +ij[11520] = 28.8 +id[11521] = "2727-01-01T16:09:07" +ik[11521] = 0 +il[11521] = 108 +im[11521] = 0.0632 +ij[11521] = 13 +id[11522] = "2727-01-22T09:35:18" +ik[11522] = 0.5658 +il[11522] = 102 +im[11522] = 0.5659 +ij[11522] = 2 +id[11523] = "2727-01-22T21:40:19" +ik[11523] = 5.73 +il[11523] = 112 +im[11523] = 0.5619 +ij[11523] = 11 +id[11524] = "2727-02-12T16:22:42" +ik[11524] = 42.01 +il[11524] = 147 +im[11524] = 0.199 +ij[11524] = 7.1555 +id[11525] = "2727-03-16T13:29:28" +ik[11525] = 73.89 +il[11525] = -150 +im[11525] = 0.2546 +ij[11525] = 14 +id[11526] = "2727-03-26T16:27:28" +ik[11526] = 4.293 +il[11526] = -126 +im[11526] = 0.0378 +ij[11526] = 27.3 +id[11527] = "2727-04-04T15:10:53" +ik[11527] = 90 +il[11527] = -102 +im[11527] = 0.1776 +ij[11527] = 5 +id[11528] = "2727-04-10T02:23:08" +ik[11528] = 1.876 +il[11528] = -85 +im[11528] = 0.0303 +ij[11528] = 28.5 +id[11529] = "2727-04-17T03:15:28" +ik[11529] = 1.007 +il[11529] = -63 +im[11529] = 0.189 +ij[11529] = 27.5 +id[11530] = "2727-05-23T01:43:49" +ik[11530] = 1.088 +il[11530] = 48 +im[11530] = 0.0328 +ij[11530] = 28.7 +id[11531] = "2727-06-03T21:18:30" +ik[11531] = 4.15 +il[11531] = 84 +im[11531] = 0.1086 +ij[11531] = 27.6 +id[11532] = "2727-06-19T14:28:50" +ik[11532] = 54.371 +il[11532] = 132 +im[11532] = 0.0758 +ij[11532] = 8 +id[11533] = "2727-07-12T23:52:38" +ik[11533] = 5.986 +il[11533] = -156 +im[11533] = 0.0818 +ij[11533] = 27.2 +id[11534] = "2727-07-19T16:52:27" +ik[11534] = 1.376 +il[11534] = -136 +im[11534] = 0.0623 +ij[11534] = 28.4 +id[11535] = "2727-07-30T04:19:12" +ik[11535] = 0.183 +il[11535] = -104 +im[11535] = 0.103 +ij[11535] = 27.91 +id[11536] = "2727-08-21T10:16:53" +ik[11536] = 0.041 +il[11536] = -36 +im[11536] = 0.0127 +ij[11536] = 28.6 +id[11537] = "2727-11-06T17:39:50" +ik[11537] = 0.91 +il[11537] = -178 +im[11537] = 0.023 +ij[11537] = 12 +id[11538] = "2727-12-20T18:28:30" +ik[11538] = 0.755 +il[11538] = 132 +im[11538] = 0.0136 +ij[11538] = 28.1 +id[11539] = "2727-12-26T18:38:44" +ik[11539] = 1.837 +il[11539] = 150 +im[11539] = 0.0787 +ij[11539] = 28.8 +id[11540] = "2728-01-20T17:12:21" +ik[11540] = 0.021 +il[11540] = -134 +im[11540] = 0.0052 +ij[11540] = 27.3 +id[11541] = "2728-02-07T09:03:55" +ik[11541] = 0.999 +il[11541] = -79 +im[11541] = 0.0573 +ij[11541] = 27.5 +id[11542] = "2728-03-03T09:35:51" +ik[11542] = 0.418 +il[11542] = -2 +im[11542] = 0.0444 +ij[11542] = 28.5 +id[11543] = "2728-03-17T11:21:24" +ik[11543] = 0.304 +il[11543] = 42 +im[11543] = 0.0658 +ij[11543] = 28.7 +id[11544] = "2728-03-22T14:08:22" +ik[11544] = 2.17 +il[11544] = 58 +im[11544] = 0.0534 +ij[11544] = 27.6 +id[11545] = "2728-04-08T04:27:58" +ik[11545] = 54.204 +il[11545] = 111 +im[11545] = 0.0703 +ij[11545] = 9 +id[11546] = "2728-04-29T23:11:54" +ik[11546] = 2.865 +il[11546] = 179 +im[11546] = 0.1201 +ij[11546] = 27.2 +id[11547] = "2728-06-17T10:16:20" +ik[11547] = 90 +il[11547] = -32 +im[11547] = 0.016 +ij[11547] = 6 +id[11548] = "2728-06-30T01:36:37" +ik[11548] = 0.538 +il[11548] = 0 +im[11548] = 0.1567 +ij[11548] = 28.6 +id[11549] = "2728-08-04T13:29:55" +ik[11549] = 0 +il[11549] = 98 +im[11549] = 0.3316 +ij[11549] = 13 +id[11550] = "2728-08-20T21:29:53" +ik[11550] = 0.5194 +il[11550] = 137 +im[11550] = 0.5194 +ij[11550] = 2 +id[11551] = "2728-08-26T13:03:21" +ik[11551] = 8.09 +il[11551] = 153 +im[11551] = 0.1557 +ij[11551] = 11 +id[11552] = "2728-09-17T15:35:30" +ik[11552] = 44.09 +il[11552] = 142 +im[11552] = 0.421 +ij[11552] = 7.1647 +id[11553] = "2728-10-20T15:42:17" +ik[11553] = 77.09 +il[11553] = -153 +im[11553] = 0.0799 +ij[11553] = 14 +id[11554] = "2728-11-05T05:02:20" +ik[11554] = 90 +il[11554] = -114 +im[11554] = 0.0273 +ij[11554] = 5 +id[11555] = "2729-01-17T19:10:07" +ik[11555] = 3.772 +il[11555] = 114 +im[11555] = 0.0273 +ij[11555] = 27.1 +id[11556] = "2729-01-20T10:44:52" +ik[11556] = 53.738 +il[11556] = 122 +im[11556] = 0.0435 +ij[11556] = 8 +id[11557] = "2729-02-08T22:44:24" +ik[11557] = 0.203 +il[11557] = -177 +im[11557] = 0.0992 +ij[11557] = 28.8 +id[11558] = "2729-03-05T15:25:41" +ik[11558] = 1.068 +il[11558] = -100 +im[11558] = 0.0076 +ij[11558] = 27.3 +id[11559] = "2729-03-23T07:59:28" +ik[11559] = 0.568 +il[11559] = -45 +im[11559] = 0.0641 +ij[11559] = 27.5 +id[11560] = "2729-04-07T06:20:18" +ik[11560] = 1.605 +il[11560] = 1 +im[11560] = 0.0486 +ij[11560] = 28.1 +id[11561] = "2729-05-03T17:06:08" +ik[11561] = 0.715 +il[11561] = 82 +im[11561] = 0.0195 +ij[11561] = 28.7 +id[11562] = "2729-05-06T06:08:18" +ik[11562] = 3.45 +il[11562] = 89 +im[11562] = 0.0301 +ij[11562] = 27.6 +id[11563] = "2729-05-07T22:50:52" +ik[11563] = 0.108 +il[11563] = 94 +im[11563] = 0.0582 +ij[11563] = 28.5 +id[11564] = "2729-06-18T17:55:40" +ik[11564] = 0.1 +il[11564] = -160 +im[11564] = 0.0041 +ij[11564] = 12 +id[11565] = "2729-07-26T13:18:46" +ik[11565] = 3.004 +il[11565] = 134 +im[11565] = 0.0837 +ij[11565] = 28.1 +id[11566] = "2729-08-11T05:42:25" +ik[11566] = 0.034 +il[11566] = -177 +im[11566] = 0.0922 +ij[11566] = 28.6 +id[11567] = "2729-08-24T18:45:12" +ik[11567] = 0.985 +il[11567] = -135 +im[11567] = 0.087 +ij[11567] = 28.4 +id[11568] = "2729-10-28T18:04:21" +ik[11568] = 3.303 +il[11568] = 62 +im[11568] = 0.0718 +ij[11568] = 27.4 +id[11569] = "2729-11-06T09:23:06" +ik[11569] = 53.802 +il[11569] = 88 +im[11569] = 0.1016 +ij[11569] = 9 +id[11570] = "2729-12-02T20:04:07" +ik[11570] = 3.082 +il[11570] = 169 +im[11570] = 0.0354 +ij[11570] = 28.8 +id[11571] = "2729-12-25T00:21:41" +ik[11571] = 0.677 +il[11571] = -122 +im[11571] = 0.1632 +ij[11571] = 27.3 +id[11572] = "2730-01-14T02:23:55" +ik[11572] = 0.553 +il[11572] = -59 +im[11572] = 0.023 +ij[11572] = 27.5 +id[11573] = "2730-01-26T08:08:58" +ik[11573] = 90 +il[11573] = -21 +im[11573] = 0.1686 +ij[11573] = 6 +id[11574] = "2730-03-15T15:42:44" +ik[11574] = 0 +il[11574] = 116 +im[11574] = 0.1975 +ij[11574] = 13 +id[11575] = "2730-04-06T15:24:28" +ik[11575] = 8.07 +il[11575] = 118 +im[11575] = 0.3249 +ij[11575] = 11 +id[11576] = "2730-04-16T01:22:43" +ik[11576] = 0.5248 +il[11576] = 139 +im[11576] = 0.5249 +ij[11576] = 2 +id[11577] = "2730-04-27T15:46:18" +ik[11577] = 43 +il[11577] = 154 +im[11577] = 0.3595 +ij[11577] = 7.1619 +id[11578] = "2730-05-30T10:52:04" +ik[11578] = 75.8 +il[11578] = -142 +im[11578] = 0.2035 +ij[11578] = 14 +id[11579] = "2730-06-10T12:55:17" +ik[11579] = 4.36 +il[11579] = -114 +im[11579] = 0.228 +ij[11579] = 27.6 +id[11580] = "2730-06-11T05:35:13" +ik[11580] = 1.69 +il[11580] = -112 +im[11580] = 0.2318 +ij[11580] = 28.7 +id[11581] = "2730-06-16T05:20:55" +ik[11581] = 90 +il[11581] = -98 +im[11581] = 0.1401 +ij[11581] = 5 +id[11582] = "2730-07-09T17:24:34" +ik[11582] = 1.557 +il[11582] = -26 +im[11582] = 0.1621 +ij[11582] = 28.5 +id[11583] = "2730-08-27T12:35:08" +ik[11583] = 54.501 +il[11583] = 123 +im[11583] = 0.1007 +ij[11583] = 8 +id[11584] = "2730-10-02T22:55:12" +ik[11584] = 0.719 +il[11584] = -126 +im[11584] = 0.0203 +ij[11584] = 28.6 +id[11585] = "2730-11-16T12:31:32" +ik[11585] = 0.416 +il[11585] = 13 +im[11585] = 0.0199 +ij[11585] = 28.1 +id[11586] = "2731-01-20T16:43:40" +ik[11586] = 0.85 +il[11586] = -166 +im[11586] = 0.0764 +ij[11586] = 12 +id[11587] = "2731-04-06T11:52:12" +ik[11587] = 2.73 +il[11587] = -120 +im[11587] = 0.0916 +ij[11587] = 27.6 +id[11588] = "2731-04-12T15:19:52" +ik[11588] = 0.117 +il[11588] = -101 +im[11588] = 0.0646 +ij[11588] = 28.7 +id[11589] = "2731-05-13T15:59:27" +ik[11589] = 3.825 +il[11589] = -3 +im[11589] = 0.055 +ij[11589] = 27.2 +id[11590] = "2731-06-01T12:30:23" +ik[11590] = 1.513 +il[11590] = 56 +im[11590] = 0.0396 +ij[11590] = 28.5 +id[11591] = "2731-06-17T03:45:22" +ik[11591] = 54.647 +il[11591] = 104 +im[11591] = 0.052 +ij[11591] = 9 +id[11592] = "2731-08-07T05:28:45" +ik[11592] = 1.737 +il[11592] = -100 +im[11592] = 0.1623 +ij[11592] = 28.6 +id[11593] = "2731-08-27T06:55:34" +ik[11593] = 90 +il[11593] = -39 +im[11593] = 0.0714 +ij[11593] = 6 +id[11594] = "2731-10-16T10:52:31" +ik[11594] = 0 +il[11594] = 104 +im[11594] = 0.4391 +ij[11594] = 13 +id[11595] = "2731-11-07T22:14:52" +ik[11595] = 5.66 +il[11595] = 106 +im[11595] = 0.2029 +ij[11595] = 11 +id[11596] = "2731-11-13T01:18:53" +ik[11596] = 0.5577 +il[11596] = 123 +im[11596] = 0.5578 +ij[11596] = 2 +id[11597] = "2731-11-28T09:55:06" +ik[11597] = 42.96 +il[11597] = 141 +im[11597] = 0.3989 +ij[11597] = 7.1564 +id[11598] = "2731-12-27T19:51:44" +ik[11598] = 2.694 +il[11598] = -162 +im[11598] = 0.2087 +ij[11598] = 28.4 +id[11599] = "2731-12-30T03:35:49" +ik[11599] = 74.7 +il[11599] = -157 +im[11599] = 0.091 +ij[11599] = 14 +id[11600] = "2732-01-17T15:11:47" +ik[11600] = 90 +il[11600] = -111 +im[11600] = 0.0708 +ij[11600] = 5 +id[11601] = "2732-01-28T02:05:40" +ik[11601] = 2.235 +il[11601] = -79 +im[11601] = 0.082 +ij[11601] = 27.1 +id[11602] = "2732-02-27T01:09:59" +ik[11602] = 0.834 +il[11602] = 15 +im[11602] = 0.0602 +ij[11602] = 28.8 +id[11603] = "2732-03-18T15:12:48" +ik[11603] = 1.835 +il[11603] = 79 +im[11603] = 0.0754 +ij[11603] = 27.3 +id[11604] = "2732-04-05T14:25:23" +ik[11604] = 53.896 +il[11604] = 135 +im[11604] = 0.1153 +ij[11604] = 8 +id[11605] = "2732-04-05T20:22:34" +ik[11605] = 0.18 +il[11605] = 136 +im[11605] = 0.117 +ij[11605] = 27.5 +id[11606] = "2732-05-20T13:32:06" +ik[11606] = 3.77 +il[11606] = -87 +im[11606] = 0.0972 +ij[11606] = 27.6 +id[11607] = "2732-05-29T06:39:36" +ik[11607] = 1.017 +il[11607] = -60 +im[11607] = 0.0151 +ij[11607] = 28.7 +id[11608] = "2732-06-17T01:16:36" +ik[11608] = 2.064 +il[11608] = -3 +im[11608] = 0.066 +ij[11608] = 28.1 +id[11609] = "2732-06-27T09:41:31" +ik[11609] = 5.325 +il[11609] = 28 +im[11609] = 0.0334 +ij[11609] = 27.2 +id[11610] = "2732-07-20T02:21:59" +ik[11610] = 0.631 +il[11610] = 98 +im[11610] = 0.0882 +ij[11610] = 28.1 +id[11611] = "2732-08-24T23:15:21" +ik[11611] = 1.31 +il[11611] = -164 +im[11611] = 0.0566 +ij[11611] = 12 +id[11612] = "2732-09-30T10:06:31" +ik[11612] = 3.068 +il[11612] = 117 +im[11612] = 0.059 +ij[11612] = 28.1 +id[11613] = "2732-11-11T06:51:27" +ik[11613] = 4.069 +il[11613] = -116 +im[11613] = 0.0117 +ij[11613] = 27.4 +id[11614] = "2732-12-20T12:15:41" +ik[11614] = 2.296 +il[11614] = 4 +im[11614] = 0.0959 +ij[11614] = 28.8 +id[11615] = "2733-01-05T10:36:47" +ik[11615] = 0.341 +il[11615] = 52 +im[11615] = 0.1063 +ij[11615] = 27.3 +id[11616] = "2733-01-21T12:38:44" +ik[11616] = 53.609 +il[11616] = 102 +im[11616] = 0.0853 +ij[11616] = 9 +id[11617] = "2733-01-23T13:25:14" +ik[11617] = 1.002 +il[11617] = 109 +im[11617] = 0.0445 +ij[11617] = 27.5 +id[11618] = "2733-03-10T19:40:03" +ik[11618] = 0.96 +il[11618] = -106 +im[11618] = 0.0305 +ij[11618] = 27.6 +id[11619] = "2733-03-26T23:38:15" +ik[11619] = 2.709 +il[11619] = -56 +im[11619] = 0.0097 +ij[11619] = 28.7 +id[11620] = "2733-04-07T22:56:09" +ik[11620] = 90 +il[11620] = -19 +im[11620] = 0.0999 +ij[11620] = 6 +id[11621] = "2733-04-26T04:10:34" +ik[11621] = 0.448 +il[11621] = 26 +im[11621] = 0.0396 +ij[11621] = 27.2 +id[11622] = "2733-05-24T03:36:16" +ik[11622] = 0 +il[11622] = 101 +im[11622] = 0.0308 +ij[11622] = 13 +id[11623] = "2733-06-12T06:53:38" +ik[11623] = 0.5258 +il[11623] = 102 +im[11623] = 0.5259 +ij[11623] = 2 +id[11624] = "2733-06-15T17:54:14" +ik[11624] = 0.22 +il[11624] = 115 +im[11624] = 0.3718 +ij[11624] = 11 +id[11625] = "2733-06-19T19:52:37" +ik[11625] = 6.274 +il[11625] = 130 +im[11625] = 0.0885 +ij[11625] = 27.2 +id[11626] = "2733-07-08T02:38:50" +ik[11626] = 44.96 +il[11626] = 152 +im[11626] = 0.4129 +ij[11626] = 7.1657 +id[11627] = "2733-08-10T08:13:34" +ik[11627] = 78.19 +il[11627] = -143 +im[11627] = 0.1728 +ij[11627] = 14 +id[11628] = "2733-08-24T20:52:19" +ik[11628] = 90 +il[11628] = -105 +im[11628] = 0.1337 +ij[11628] = 5 +id[11629] = "2733-10-16T22:43:23" +ik[11629] = 0.529 +il[11629] = 57 +im[11629] = 0.1078 +ij[11629] = 28.5 +id[11630] = "2733-11-05T12:56:32" +ik[11630] = 54.154 +il[11630] = 117 +im[11630] = 0.1178 +ij[11630] = 8 +id[11631] = "2733-11-15T11:02:49" +ik[11631] = 0.82 +il[11631] = 148 +im[11631] = 0.0882 +ij[11631] = 28.6 +id[11632] = "2734-01-04T01:31:00" +ik[11632] = 4.59 +il[11632] = -60 +im[11632] = 0.0946 +ij[11632] = 27.1 +id[11633] = "2734-01-14T16:51:10" +ik[11633] = 2.623 +il[11633] = -24 +im[11633] = 0.0784 +ij[11633] = 28.1 +id[11634] = "2734-01-19T23:30:02" +ik[11634] = 1.175 +il[11634] = -8 +im[11634] = 0.085 +ij[11634] = 28.4 +id[11635] = "2734-02-03T20:14:21" +ik[11635] = 0.949 +il[11635] = 39 +im[11635] = 0.0826 +ij[11635] = 28.8 +id[11636] = "2734-02-18T21:57:14" +ik[11636] = 0.617 +il[11636] = 85 +im[11636] = 0.0858 +ij[11636] = 27.3 +id[11637] = "2734-02-27T19:35:28" +ik[11637] = 4.299 +il[11637] = 102 +im[11637] = 0.0478 +ij[11637] = 28.1 +id[11638] = "2734-04-07T09:57:36" +ik[11638] = 1.31 +il[11638] = -151 +im[11638] = 0.0509 +ij[11638] = 12 +id[11639] = "2734-05-27T23:07:54" +ik[11639] = 4.452 +il[11639] = 180 +im[11639] = 0.0362 +ij[11639] = 27.2 +id[11640] = "2734-06-14T11:58:24" +ik[11640] = 0.109 +il[11640] = -125 +im[11640] = 0.0669 +ij[11640] = 27.9 +id[11641] = "2734-08-24T02:48:33" +ik[11641] = 54.453 +il[11641] = 92 +im[11641] = 0.012 +ij[11641] = 9 +id[11642] = "2734-09-11T23:10:01" +ik[11642] = 1.422 +il[11642] = 149 +im[11642] = 0.0832 +ij[11642] = 28.5 +id[11643] = "2734-09-18T21:54:25" +ik[11643] = 3.047 +il[11643] = 170 +im[11643] = 0.1016 +ij[11643] = 28.6 +id[11644] = "2734-10-18T01:11:53" +ik[11644] = 1.806 +il[11644] = -101 +im[11644] = 0.1459 +ij[11644] = 27.4 +id[11645] = "2734-11-09T10:49:05" +ik[11645] = 90 +il[11645] = -32 +im[11645] = 0.1134 +ij[11645] = 6 +id[11646] = "2734-12-16T15:02:29" +ik[11646] = 2.801 +il[11646] = 57 +im[11646] = 0.2849 +ij[11646] = 28.8 +id[11647] = "2734-12-30T08:14:01" +ik[11647] = 0 +il[11647] = 113 +im[11647] = 0.3665 +ij[11647] = 13 +id[11648] = "2735-01-14T03:59:36" +ik[11648] = 3.717 +il[11648] = 99 +im[11648] = 0.3186 +ij[11648] = 28.8 +id[11649] = "2735-01-20T10:20:38" +ik[11649] = 5.41 +il[11649] = 117 +im[11649] = 0.4107 +ij[11649] = 11 +id[11650] = "2735-01-23T12:04:31" +ik[11650] = 0.5509 +il[11650] = 129 +im[11650] = 0.5509 +ij[11650] = 2 +id[11651] = "2735-02-10T09:18:36" +ik[11651] = 42.04 +il[11651] = 149 +im[11651] = 0.1946 +ij[11651] = 7.1555 +id[11652] = "2735-03-05T20:58:16" +ik[11652] = 4.348 +il[11652] = -166 +im[11652] = 0.3045 +ij[11652] = 28.8 +id[11653] = "2735-03-14T01:25:22" +ik[11653] = 73.72 +il[11653] = -148 +im[11653] = 0.0737 +ij[11653] = 14 +id[11654] = "2735-03-26T20:34:34" +ik[11654] = 4.12 +il[11654] = -118 +im[11654] = 0.0262 +ij[11654] = 27.3 +id[11655] = "2735-04-02T03:41:51" +ik[11655] = 90 +il[11655] = -100 +im[11655] = 0.208 +ij[11655] = 5 +id[11656] = "2735-04-16T23:55:54" +ik[11656] = 0.932 +il[11656] = -54 +im[11656] = 0.1661 +ij[11656] = 27.5 +id[11657] = "2735-06-03T12:57:53" +ik[11657] = 4.13 +il[11657] = 93 +im[11657] = 0.1314 +ij[11657] = 27.6 +id[11658] = "2735-06-17T06:50:21" +ik[11658] = 54.358 +il[11658] = 135 +im[11658] = 0.1121 +ij[11658] = 8 +id[11659] = "2735-06-24T03:05:11" +ik[11659] = 1.503 +il[11659] = 156 +im[11659] = 0.0151 +ij[11659] = 28.7 +id[11660] = "2735-07-12T13:49:31" +ik[11660] = 5.961 +il[11660] = -148 +im[11660] = 0.0497 +ij[11660] = 27.2 +id[11661] = "2735-07-29T17:55:40" +ik[11661] = 0.16 +il[11661] = -96 +im[11661] = 0.0848 +ij[11661] = 27.91 +id[11662] = "2735-08-29T07:48:25" +ik[11662] = 2.457 +il[11662] = -2 +im[11662] = 0.0799 +ij[11662] = 28.1 +id[11663] = "2735-09-10T18:21:53" +ik[11663] = 0.287 +il[11663] = 36 +im[11663] = 0.0515 +ij[11663] = 28.1 +id[11664] = "2735-11-04T07:35:02" +ik[11664] = 0.96 +il[11664] = -169 +im[11664] = 0.0473 +ij[11664] = 12 +id[11665] = "2736-01-09T13:24:57" +ik[11665] = 1.76 +il[11665] = -158 +im[11665] = 0.0506 +ij[11665] = 28.8 +id[11666] = "2736-01-20T06:40:47" +ik[11666] = 0.025 +il[11666] = -125 +im[11666] = 0.0336 +ij[11666] = 27.3 +id[11667] = "2736-01-28T14:18:14" +ik[11667] = 0.851 +il[11667] = -100 +im[11667] = 0.0946 +ij[11667] = 28.4 +id[11668] = "2736-02-06T22:41:14" +ik[11668] = 0.998 +il[11668] = -71 +im[11668] = 0.0191 +ij[11668] = 27.5 +id[11669] = "2736-03-22T04:28:42" +ik[11669] = 2.14 +il[11669] = 67 +im[11669] = 0.0137 +ij[11669] = 27.6 +id[11670] = "2736-04-05T19:24:09" +ik[11670] = 54.181 +il[11670] = 113 +im[11670] = 0.0237 +ij[11670] = 9 +id[11671] = "2736-04-17T08:49:46" +ik[11671] = 1.504 +il[11671] = 149 +im[11671] = 0.0838 +ij[11671] = 28.7 +id[11672] = "2736-04-29T15:24:20" +ik[11672] = 2.826 +il[11672] = -172 +im[11672] = 0.1425 +ij[11672] = 27.2 +id[11673] = "2736-06-15T03:55:08" +ik[11673] = 90 +il[11673] = -29 +im[11673] = 0.1601 +ij[11673] = 6 +id[11674] = "2736-08-02T01:25:49" +ik[11674] = 0 +il[11674] = 107 +im[11674] = 0.0387 +ij[11674] = 13 +id[11675] = "2736-08-22T00:23:37" +ik[11675] = 0.5175 +il[11675] = 96 +im[11675] = 0.5176 +ij[11675] = 2 +id[11676] = "2736-08-24T04:24:57" +ik[11676] = 7.97 +il[11676] = 108 +im[11676] = 0.4518 +ij[11676] = 11 +id[11677] = "2736-09-15T00:28:23" +ik[11677] = 43.96 +il[11677] = 144 +im[11677] = 0.3739 +ij[11677] = 7.1648 +id[11678] = "2736-10-18T09:02:07" +ik[11678] = 77.32 +il[11678] = -150 +im[11678] = 0.2319 +ij[11678] = 14 +id[11679] = "2736-11-02T20:16:04" +ik[11679] = 90 +il[11679] = -111 +im[11679] = 0.1444 +ij[11679] = 5 +id[11680] = "2736-12-30T03:53:16" +ik[11680] = 0.049 +il[11680] = 66 +im[11680] = 0.1338 +ij[11680] = 28.6 +id[11681] = "2737-01-17T10:07:53" +ik[11681] = 3.803 +il[11681] = 123 +im[11681] = 0.0668 +ij[11681] = 27.1 +id[11682] = "2737-01-17T22:36:10" +ik[11682] = 53.744 +il[11682] = 124 +im[11682] = 0.0553 +ij[11682] = 8 +id[11683] = "2737-01-27T22:16:01" +ik[11683] = 0.778 +il[11683] = 156 +im[11683] = 0.1209 +ij[11683] = 28.5 +id[11684] = "2737-02-22T22:51:36" +ik[11684] = 0.439 +il[11684] = -123 +im[11684] = 0.0721 +ij[11684] = 28.8 +id[11685] = "2737-03-05T05:11:27" +ik[11685] = 1.055 +il[11685] = -91 +im[11685] = 0.043 +ij[11685] = 27.3 +id[11686] = "2737-03-17T07:41:39" +ik[11686] = 2.063 +il[11686] = -54 +im[11686] = 0.0714 +ij[11686] = 28.1 +id[11687] = "2737-03-22T21:30:07" +ik[11687] = 0.575 +il[11687] = -37 +im[11687] = 0.0278 +ij[11687] = 27.5 +id[11688] = "2737-04-28T05:47:11" +ik[11688] = 1.717 +il[11688] = 75 +im[11688] = 0.0883 +ij[11688] = 28.1 +id[11689] = "2737-05-05T19:19:36" +ik[11689] = 3.44 +il[11689] = 98 +im[11689] = 0.0091 +ij[11689] = 27.6 +id[11690] = "2737-06-16T12:07:12" +ik[11690] = 0.05 +il[11690] = -157 +im[11690] = 0.0638 +ij[11690] = 12 +id[11691] = "2737-10-28T08:46:33" +ik[11691] = 3.277 +il[11691] = 71 +im[11691] = 0.106 +ij[11691] = 27.4 +id[11692] = "2737-11-03T14:19:58" +ik[11692] = 3.001 +il[11692] = 90 +im[11692] = 0.0127 +ij[11692] = 28.6 +id[11693] = "2737-11-03T21:46:25" +ik[11693] = 53.822 +il[11693] = 91 +im[11693] = 0.0197 +ij[11693] = 9 +id[11694] = "2737-12-17T23:42:29" +ik[11694] = 2.624 +il[11694] = -134 +im[11694] = 0.0307 +ij[11694] = 28.8 +id[11695] = "2737-12-22T06:14:41" +ik[11695] = 1.464 +il[11695] = -121 +im[11695] = 0.1446 +ij[11695] = 28.5 +id[11696] = "2737-12-24T18:42:34" +ik[11696] = 0.678 +il[11696] = -113 +im[11696] = 0.174 +ij[11696] = 27.3 +id[11697] = "2738-01-14T00:40:47" +ik[11697] = 0.499 +il[11697] = -49 +im[11697] = 0.089 +ij[11697] = 27.5 +id[11698] = "2738-01-23T20:47:54" +ik[11698] = 90 +il[11698] = -19 +im[11698] = 0.2295 +ij[11698] = 6 +id[11699] = "2738-02-08T06:48:31" +ik[11699] = 3.181 +il[11699] = 21 +im[11699] = 0.2533 +ij[11699] = 28.4 +id[11700] = "2738-03-13T09:02:34" +ik[11700] = 0 +il[11700] = 111 +im[11700] = 0.1595 +ij[11700] = 13 +id[11701] = "2738-04-03T23:11:42" +ik[11701] = 0.5119 +il[11701] = 111 +im[11701] = 0.5119 +ij[11701] = 2 +id[11702] = "2738-04-04T05:35:31" +ik[11702] = 8.22 +il[11702] = 121 +im[11702] = 0.5107 +ij[11702] = 11 +id[11703] = "2738-04-24T20:20:18" +ik[11703] = 42.47 +il[11703] = 156 +im[11703] = 0.0387 +ij[11703] = 7.1617 +id[11704] = "2738-05-27T23:47:13" +ik[11704] = 75.61 +il[11704] = -139 +im[11704] = 0.2334 +ij[11704] = 14 +id[11705] = "2738-06-10T16:55:32" +ik[11705] = 4.38 +il[11705] = -104 +im[11705] = 0.1921 +ij[11705] = 27.6 +id[11706] = "2738-06-13T20:49:41" +ik[11706] = 90 +il[11706] = -95 +im[11706] = 0.2156 +ij[11706] = 5 +id[11707] = "2738-07-17T03:02:44" +ik[11707] = 2.356 +il[11707] = 7 +im[11707] = 0.1025 +ij[11707] = 28.7 +id[11708] = "2738-08-25T05:35:46" +ik[11708] = 54.505 +il[11708] = 126 +im[11708] = 0.1171 +ij[11708] = 8 +id[11709] = "2738-10-31T20:32:03" +ik[11709] = 2.331 +il[11709] = -26 +im[11709] = 0.0404 +ij[11709] = 28.1 +id[11710] = "2739-01-18T02:57:07" +ik[11710] = 0.8 +il[11710] = -164 +im[11710] = 0.0193 +ij[11710] = 12 +id[11711] = "2739-02-24T09:36:00" +ik[11711] = 0.795 +il[11711] = 133 +im[11711] = 0.0836 +ij[11711] = 28.5 +id[11712] = "2739-04-06T01:15:31" +ik[11712] = 2.71 +il[11712] = -111 +im[11712] = 0.0694 +ij[11712] = 27.6 +id[11713] = "2739-05-12T10:29:25" +ik[11713] = 0.928 +il[11713] = 3 +im[11713] = 0.0939 +ij[11713] = 28.7 +id[11714] = "2739-05-13T05:50:33" +ik[11714] = 3.805 +il[11714] = 5 +im[11714] = 0.0852 +ij[11714] = 27.2 +id[11715] = "2739-06-14T21:53:34" +ik[11715] = 54.641 +il[11715] = 107 +im[11715] = 0.041 +ij[11715] = 9 +id[11716] = "2739-08-24T21:27:43" +ik[11716] = 90 +il[11716] = -37 +im[11716] = 0.1986 +ij[11716] = 6 +id[11717] = "2739-10-13T23:47:40" +ik[11717] = 0 +il[11717] = 106 +im[11717] = 0.2257 +ij[11717] = 13 +id[11718] = "2739-11-05T11:42:43" +ik[11718] = 5.95 +il[11718] = 109 +im[11718] = 0.2383 +ij[11718] = 11 +id[11719] = "2739-11-14T04:25:39" +ik[11719] = 0.5475 +il[11719] = 129 +im[11719] = 0.5476 +ij[11719] = 2 +id[11720] = "2739-11-25T22:50:14" +ik[11720] = 42.96 +il[11720] = 143 +im[11720] = 0.3907 +ij[11720] = 7.1567 +id[11721] = "2739-12-27T18:51:54" +ik[11721] = 74.79 +il[11721] = -154 +im[11721] = 0.2409 +ij[11721] = 14 +id[11722] = "2740-01-15T04:11:57" +ik[11722] = 90 +il[11722] = -109 +im[11722] = 0.1205 +ij[11722] = 5 +id[11723] = "2740-01-27T23:56:19" +ik[11723] = 2.312 +il[11723] = -69 +im[11723] = 0.1282 +ij[11723] = 27.1 +id[11724] = "2740-02-14T11:25:52" +ik[11724] = 1.417 +il[11724] = -14 +im[11724] = 0.0712 +ij[11724] = 28.6 +id[11725] = "2740-03-12T19:25:58" +ik[11725] = 0.316 +il[11725] = 71 +im[11725] = 0.1127 +ij[11725] = 28.8 +id[11726] = "2740-03-18T06:47:27" +ik[11726] = 1.802 +il[11726] = 88 +im[11726] = 0.0316 +ij[11726] = 27.3 +id[11727] = "2740-04-03T03:13:35" +ik[11727] = 53.882 +il[11727] = 137 +im[11727] = 0.0464 +ij[11727] = 8 +id[11728] = "2740-04-05T11:11:00" +ik[11728] = 0.196 +il[11728] = 145 +im[11728] = 0.0892 +ij[11728] = 27.5 +id[11729] = "2740-04-29T01:23:05" +ik[11729] = 0.043 +il[11729] = -143 +im[11729] = 0.0504 +ij[11729] = 28.5 +id[11730] = "2740-05-11T22:08:49" +ik[11730] = 0.164 +il[11730] = -103 +im[11730] = 0.0762 +ij[11730] = 28.4 +id[11731] = "2740-05-20T03:18:29" +ik[11731] = 3.76 +il[11731] = -78 +im[11731] = 0.0784 +ij[11731] = 27.6 +id[11732] = "2740-05-25T07:44:58" +ik[11732] = 1.48 +il[11732] = -62 +im[11732] = 0.0963 +ij[11732] = 28.1 +id[11733] = "2740-06-20T12:36:34" +ik[11733] = 1.446 +il[11733] = 18 +im[11733] = 0.0851 +ij[11733] = 28.1 +id[11734] = "2740-06-26T22:49:30" +ik[11734] = 5.306 +il[11734] = 37 +im[11734] = 0.0664 +ij[11734] = 27.2 +id[11735] = "2740-06-28T01:35:02" +ik[11735] = 0.603 +il[11735] = 40 +im[11735] = 0.0499 +ij[11735] = 28.7 +id[11736] = "2740-08-22T16:52:19" +ik[11736] = 1.29 +il[11736] = -171 +im[11736] = 0.0858 +ij[11736] = 12 +id[11737] = "2740-11-10T20:22:59" +ik[11737] = 4.054 +il[11737] = -108 +im[11737] = 0.0486 +ij[11737] = 27.4 +id[11738] = "2740-12-20T18:01:52" +ik[11738] = 1.683 +il[11738] = 14 +im[11738] = 0.1031 +ij[11738] = 28.6 +id[11739] = "2741-01-03T13:10:33" +ik[11739] = 1.928 +il[11739] = 57 +im[11739] = 0.1106 +ij[11739] = 28.8 +id[11740] = "2741-01-05T01:00:47" +ik[11740] = 0.346 +il[11740] = 61 +im[11740] = 0.1158 +ij[11740] = 27.3 +id[11741] = "2741-01-18T23:22:29" +ik[11741] = 53.6 +il[11741] = 105 +im[11741] = 0.1186 +ij[11741] = 9 +id[11742] = "2741-01-23T04:27:53" +ik[11742] = 0.995 +il[11742] = 118 +im[11742] = 0.0904 +ij[11742] = 27.5 +id[11743] = "2741-03-10T14:07:24" +ik[11743] = 0.89 +il[11743] = -97 +im[11743] = 0.083 +ij[11743] = 27.6 +id[11744] = "2741-03-21T02:07:43" +ik[11744] = 2.946 +il[11744] = -64 +im[11744] = 0.1887 +ij[11744] = 28.5 +id[11745] = "2741-04-05T15:32:08" +ik[11745] = 90 +il[11745] = -16 +im[11745] = 0.1979 +ij[11745] = 6 +id[11746] = "2741-04-26T22:19:26" +ik[11746] = 0.301 +il[11746] = 38 +im[11746] = 0.0471 +ij[11746] = 27.2 +id[11747] = "2741-05-10T23:19:58" +ik[11747] = 4.463 +il[11747] = 70 +im[11747] = 0.0765 +ij[11747] = 28.7 +id[11748] = "2741-05-21T18:52:21" +ik[11748] = 0 +il[11748] = 92 +im[11748] = 0.287 +ij[11748] = 13 +id[11749] = "2741-06-07T01:32:44" +ik[11749] = 1.563 +il[11749] = 131 +im[11749] = 0.0752 +ij[11749] = 28.7 +id[11750] = "2741-06-13T10:16:24" +ik[11750] = 0.5359 +il[11750] = 139 +im[11750] = 0.5359 +ij[11750] = 2 +id[11751] = "2741-06-13T10:59:31" +ik[11751] = 0.1 +il[11751] = 138 +im[11751] = 0.5359 +ij[11751] = 11 +id[11752] = "2741-06-14T11:30:50" +ik[11752] = 5.153 +il[11752] = 130 +im[11752] = 0.5208 +ij[11752] = 27.2 +id[11753] = "2741-07-04T22:51:01" +ik[11753] = 44.17 +il[11753] = 153 +im[11753] = 0.174 +ij[11753] = 7.1658 +id[11754] = "2741-07-31T13:52:27" +ik[11754] = 4.485 +il[11754] = -157 +im[11754] = 0.0235 +ij[11754] = 28.7 +id[11755] = "2741-08-07T23:58:48" +ik[11755] = 78.21 +il[11755] = -140 +im[11755] = 0.2604 +ij[11755] = 14 +id[11756] = "2741-08-22T13:31:51" +ik[11756] = 90 +il[11756] = -102 +im[11756] = 0.1969 +ij[11756] = 5 +id[11757] = "2741-11-03T03:49:10" +ik[11757] = 54.171 +il[11757] = 120 +im[11757] = 0.1117 +ij[11757] = 8 +id[11758] = "2742-01-03T15:04:19" +ik[11758] = 4.61 +il[11758] = -49 +im[11758] = 0.0917 +ij[11758] = 27.1 +id[11759] = "2742-01-04T01:56:38" +ik[11759] = 3.095 +il[11759] = -47 +im[11759] = 0.0929 +ij[11759] = 28.1 +id[11760] = "2742-02-11T23:14:38" +ik[11760] = 0.17 +il[11760] = 74 +im[11760] = 0.0233 +ij[11760] = 28.6 +id[11761] = "2742-02-17T14:16:22" +ik[11761] = 0.945 +il[11761] = 91 +im[11761] = 0.0904 +ij[11761] = 28.8 +id[11762] = "2742-02-18T11:10:33" +ik[11762] = 0.61 +il[11762] = 94 +im[11762] = 0.0926 +ij[11762] = 27.3 +id[11763] = "2742-04-04T22:40:48" +ik[11763] = 1.33 +il[11763] = -149 +im[11763] = 0.0839 +ij[11763] = 12 +id[11764] = "2742-05-22T07:20:29" +ik[11764] = 0.81 +il[11764] = 179 +im[11764] = 0.0799 +ij[11764] = 28.5 +id[11765] = "2742-05-25T10:36:11" +ik[11765] = 0.221 +il[11765] = -178 +im[11765] = 0.0399 +ij[11765] = 28.4 +id[11766] = "2742-05-27T12:16:46" +ik[11766] = 4.439 +il[11766] = -172 +im[11766] = 0.0079 +ij[11766] = 27.2 +id[11767] = "2742-06-06T06:12:05" +ik[11767] = 0.549 +il[11767] = -141 +im[11767] = 0.0847 +ij[11767] = 28.7 +id[11768] = "2742-06-26T22:09:15" +ik[11768] = 0.869 +il[11768] = -77 +im[11768] = 0.0132 +ij[11768] = 28.1 +id[11769] = "2742-07-08T11:00:31" +ik[11769] = 1.9 +il[11769] = -41 +im[11769] = 0.071 +ij[11769] = 28.1 +id[11770] = "2742-08-21T19:34:58" +ik[11770] = 54.47 +il[11770] = 95 +im[11770] = 0.0823 +ij[11770] = 9 +id[11771] = "2742-10-17T21:14:59" +ik[11771] = 1.734 +il[11771] = -92 +im[11771] = 0.1764 +ij[11771] = 27.4 +id[11772] = "2742-11-06T22:14:36" +ik[11772] = 90 +il[11772] = -30 +im[11772] = 0.0694 +ij[11772] = 6 +id[11773] = "2742-12-27T23:59:15" +ik[11773] = 0 +il[11773] = 116 +im[11773] = 0.4227 +ij[11773] = 13 +id[11774] = "2743-01-11T04:35:19" +ik[11774] = 0.5631 +il[11774] = 101 +im[11774] = 0.5632 +ij[11774] = 2 +id[11775] = "2743-01-17T23:00:57" +ik[11775] = 5.08 +il[11775] = 120 +im[11775] = 0.0227 +ij[11775] = 11 +id[11776] = "2743-02-07T23:03:49" +ik[11776] = 41.96 +il[11776] = 152 +im[11776] = 0.4371 +ij[11776] = 7.1554 +id[11777] = "2743-03-11T13:12:35" +ik[11777] = 73.55 +il[11777] = -146 +im[11777] = 0.1588 +ij[11777] = 14 +id[11778] = "2743-03-26T12:29:05" +ik[11778] = 2.254 +il[11778] = -110 +im[11778] = 0.0968 +ij[11778] = 28.8 +id[11779] = "2743-03-26T23:23:00" +ik[11779] = 3.962 +il[11779] = -108 +im[11779] = 0.0759 +ij[11779] = 27.3 +id[11780] = "2743-03-29T23:36:39" +ik[11780] = 2.873 +il[11780] = -99 +im[11780] = 0.0664 +ij[11780] = 28.6 +id[11781] = "2743-03-30T16:07:32" +ik[11781] = 90 +il[11781] = -98 +im[11781] = 0.0957 +ij[11781] = 5 +id[11782] = "2743-04-16T20:09:13" +ik[11782] = 0.861 +il[11782] = -44 +im[11782] = 0.1246 +ij[11782] = 27.5 +id[11783] = "2743-06-03T04:28:19" +ik[11783] = 4.12 +il[11783] = 102 +im[11783] = 0.1297 +ij[11783] = 27.6 +id[11784] = "2743-06-14T23:08:19" +ik[11784] = 54.345 +il[11784] = 138 +im[11784] = 0.0733 +ij[11784] = 8 +id[11785] = "2743-07-12T03:45:57" +ik[11785] = 5.936 +il[11785] = -139 +im[11785] = 0.011 +ij[11785] = 27.2 +id[11786] = "2743-07-23T22:24:48" +ik[11786] = 0.951 +il[11786] = -103 +im[11786] = 0.0484 +ij[11786] = 28.7 +id[11787] = "2743-07-29T05:54:23" +ik[11787] = 0.348 +il[11787] = -87 +im[11787] = 0.0506 +ij[11787] = 28.5 +id[11788] = "2743-07-29T07:26:24" +ik[11788] = 0.136 +il[11788] = -87 +im[11788] = 0.0516 +ij[11788] = 27.91 +id[11789] = "2743-08-09T17:27:27" +ik[11789] = 4.282 +il[11789] = -52 +im[11789] = 0.0181 +ij[11789] = 28.1 +id[11790] = "2743-11-01T21:37:26" +ik[11790] = 1 +il[11790] = -173 +im[11790] = 0.0822 +ij[11790] = 12 +id[11791] = "2744-01-19T20:07:53" +ik[11791] = 0.027 +il[11791] = -117 +im[11791] = 0.065 +ij[11791] = 27.3 +id[11792] = "2744-01-23T12:50:55" +ik[11792] = 1.476 +il[11792] = -105 +im[11792] = 0.0056 +ij[11792] = 28.8 +id[11793] = "2744-02-06T12:19:00" +ik[11793] = 0.996 +il[11793] = -62 +im[11793] = 0.0277 +ij[11793] = 27.5 +id[11794] = "2744-02-06T15:52:50" +ik[11794] = 0.1 +il[11794] = -62 +im[11794] = 0.025 +ij[11794] = 28.6 +id[11795] = "2744-03-21T18:45:15" +ik[11795] = 2.12 +il[11795] = 76 +im[11795] = 0.0374 +ij[11795] = 27.6 +id[11796] = "2744-04-03T10:09:40" +ik[11796] = 54.158 +il[11796] = 116 +im[11796] = 0.104 +ij[11796] = 9 +id[11797] = "2744-04-29T07:43:26" +ik[11797] = 2.787 +il[11797] = -163 +im[11797] = 0.1404 +ij[11797] = 27.2 +id[11798] = "2744-05-18T09:09:21" +ik[11798] = 2.265 +il[11798] = -104 +im[11798] = 0.1205 +ij[11798] = 28.7 +id[11799] = "2744-06-12T21:34:48" +ik[11799] = 90 +il[11799] = -26 +im[11799] = 0.2048 +ij[11799] = 6 +id[11800] = "2744-06-25T13:07:49" +ik[11800] = 1.113 +il[11800] = 6 +im[11800] = 0.1806 +ij[11800] = 28.4 +id[11801] = "2744-06-28T14:07:09" +ik[11801] = 0.731 +il[11801] = 13 +im[11801] = 0.2469 +ij[11801] = 28.5 +id[11802] = "2744-07-30T13:13:02" +ik[11802] = 0 +il[11802] = 100 +im[11802] = 0.286 +ij[11802] = 13 +id[11803] = "2744-08-21T19:53:45" +ik[11803] = 7.83 +il[11803] = 111 +im[11803] = 0.4882 +ij[11803] = 11 +id[11804] = "2744-08-23T00:39:17" +ik[11804] = 0.5085 +il[11804] = 124 +im[11804] = 0.5086 +ij[11804] = 2 +id[11805] = "2744-09-12T19:24:38" +ik[11805] = 44.26 +il[11805] = 147 +im[11805] = 0.1298 +ij[11805] = 7.1649 +id[11806] = "2744-10-16T02:09:23" +ik[11806] = 77.54 +il[11806] = -147 +im[11806] = 0.2476 +ij[11806] = 14 +id[11807] = "2744-10-31T11:30:41" +ik[11807] = 90 +il[11807] = -108 +im[11807] = 0.2162 +ij[11807] = 5 +id[11808] = "2745-01-15T10:31:01" +ik[11808] = 53.751 +il[11808] = 127 +im[11808] = 0.1122 +ij[11808] = 8 +id[11809] = "2745-01-17T01:02:32" +ik[11809] = 3.834 +il[11809] = 132 +im[11809] = 0.0961 +ij[11809] = 27.1 +id[11810] = "2745-03-02T11:40:24" +ik[11810] = 1.243 +il[11810] = -90 +im[11810] = 0.0999 +ij[11810] = 28.1 +id[11811] = "2745-03-04T18:59:53" +ik[11811] = 1.042 +il[11811] = -83 +im[11811] = 0.0757 +ij[11811] = 27.3 +id[11812] = "2745-03-08T20:22:24" +ik[11812] = 0.551 +il[11812] = -70 +im[11812] = 0.0053 +ij[11812] = 28.8 +id[11813] = "2745-03-18T17:20:49" +ik[11813] = 2.807 +il[11813] = -40 +im[11813] = 0.0756 +ij[11813] = 28.1 +id[11814] = "2745-03-22T11:00:46" +ik[11814] = 0.581 +il[11814] = -28 +im[11814] = 0.0175 +ij[11814] = 27.5 +id[11815] = "2745-03-30T20:30:28" +ik[11815] = 0.684 +il[11815] = -2 +im[11815] = 0.0932 +ij[11815] = 28.6 +id[11816] = "2745-05-05T08:23:07" +ik[11816] = 3.43 +il[11816] = 106 +im[11816] = 0.0391 +ij[11816] = 27.6 +id[11817] = "2745-06-14T06:18:43" +ik[11817] = 0 +il[11817] = -154 +im[11817] = 0.0892 +ij[11817] = 12 +id[11818] = "2745-08-18T11:33:21" +ik[11818] = 1.501 +il[11818] = -135 +im[11818] = 0.0518 +ij[11818] = 28.1 +id[11819] = "2745-08-28T02:24:00" +ik[11819] = 0.049 +il[11819] = -105 +im[11819] = 0.0935 +ij[11819] = 28.5 +id[11820] = "2745-09-18T20:06:51" +ik[11820] = 5.19 +il[11820] = -39 +im[11820] = 0.0267 +ij[11820] = 28.1 +id[11821] = "2745-10-27T23:35:26" +ik[11821] = 3.251 +il[11821] = 79 +im[11821] = 0.1225 +ij[11821] = 27.4 +id[11822] = "2745-11-01T10:16:49" +ik[11822] = 53.843 +il[11822] = 93 +im[11822] = 0.0771 +ij[11822] = 9 +id[11823] = "2745-12-24T13:20:19" +ik[11823] = 0.679 +il[11823] = -103 +im[11823] = 0.1565 +ij[11823] = 27.3 +id[11824] = "2746-01-02T01:59:57" +ik[11824] = 1.597 +il[11824] = -77 +im[11824] = 0.0597 +ij[11824] = 28.8 +id[11825] = "2746-01-13T23:46:33" +ik[11825] = 0.44 +il[11825] = -40 +im[11825] = 0.1474 +ij[11825] = 27.5 +id[11826] = "2746-01-21T09:19:46" +ik[11826] = 90 +il[11826] = -16 +im[11826] = 0.1423 +ij[11826] = 6 +id[11827] = "2746-02-11T14:15:12" +ik[11827] = 4.478 +il[11827] = 38 +im[11827] = 0.245 +ij[11827] = 28.6 +id[11828] = "2746-03-10T02:09:50" +ik[11828] = 0 +il[11828] = 108 +im[11828] = 0.4281 +ij[11828] = 13 +id[11829] = "2746-04-01T19:42:14" +ik[11829] = 8.35 +il[11829] = 123 +im[11829] = 0.3745 +ij[11829] = 11 +id[11830] = "2746-04-04T23:12:03" +ik[11830] = 0.5175 +il[11830] = 138 +im[11830] = 0.5176 +ij[11830] = 2 +id[11831] = "2746-04-23T03:14:25" +ik[11831] = 44.04 +il[11831] = 159 +im[11831] = 0.2465 +ij[11831] = 7.161 +id[11832] = "2746-05-01T22:13:52" +ik[11832] = 5.307 +il[11832] = 174 +im[11832] = 0.3597 +ij[11832] = 28.6 +id[11833] = "2746-05-25T11:27:06" +ik[11833] = 76.39 +il[11833] = -137 +im[11833] = 0.0875 +ij[11833] = 14 +id[11834] = "2746-06-10T19:24:09" +ik[11834] = 4.4 +il[11834] = -94 +im[11834] = 0.1387 +ij[11834] = 27.6 +id[11835] = "2746-06-11T12:11:22" +ik[11835] = 90 +il[11835] = -93 +im[11835] = 0.1587 +ij[11835] = 5 +id[11836] = "2746-08-16T18:29:22" +ik[11836] = 1.455 +il[11836] = 110 +im[11836] = 0.0851 +ij[11836] = 28.7 +id[11837] = "2746-08-22T22:36:24" +ik[11837] = 54.509 +il[11837] = 129 +im[11837] = 0.0612 +ij[11837] = 8 +id[11838] = "2746-11-07T19:50:44" +ik[11838] = 0.023 +il[11838] = 5 +im[11838] = 0.065 +ij[11838] = 28.5 +id[11839] = "2746-11-08T19:46:42" +ik[11839] = 0.001 +il[11839] = 9 +im[11839] = 0.0771 +ij[11839] = 28.4 +id[11840] = "2747-01-15T13:16:19" +ik[11840] = 0.74 +il[11840] = -155 +im[11840] = 0.0543 +ij[11840] = 12 +id[11841] = "2747-03-24T05:05:34" +ik[11841] = 1.389 +il[11841] = -141 +im[11841] = 0.0692 +ij[11841] = 28.6 +id[11842] = "2747-04-05T14:38:05" +ik[11842] = 2.7 +il[11842] = -102 +im[11842] = 0.0333 +ij[11842] = 27.6 +id[11843] = "2747-04-09T09:26:38" +ik[11843] = 4.343 +il[11843] = -91 +im[11843] = 0.0849 +ij[11843] = 28.1 +id[11844] = "2747-05-12T19:45:12" +ik[11844] = 3.786 +il[11844] = 14 +im[11844] = 0.1002 +ij[11844] = 27.2 +id[11845] = "2747-06-10T06:21:01" +ik[11845] = 1.379 +il[11845] = 103 +im[11845] = 0.1112 +ij[11845] = 28.7 +id[11846] = "2747-06-12T15:54:38" +ik[11846] = 54.635 +il[11846] = 110 +im[11846] = 0.1054 +ij[11846] = 9 +id[11847] = "2747-08-22T12:04:18" +ik[11847] = 90 +il[11847] = -34 +im[11847] = 0.2046 +ij[11847] = 6 +id[11848] = "2747-10-11T11:27:33" +ik[11848] = 0 +il[11848] = 108 +im[11848] = 0.1659 +ij[11848] = 13 +id[11849] = "2747-11-03T01:14:52" +ik[11849] = 6.22 +il[11849] = 111 +im[11849] = 0.5085 +ij[11849] = 11 +id[11850] = "2747-11-15T10:49:33" +ik[11850] = 0.5249 +il[11850] = 135 +im[11850] = 0.5249 +ij[11850] = 2 +id[11851] = "2747-11-23T11:43:09" +ik[11851] = 43.01 +il[11851] = 146 +im[11851] = 0.0997 +ij[11851] = 7.157 +id[11852] = "2747-12-25T09:41:54" +ik[11852] = 74.93 +il[11852] = -151 +im[11852] = 0.2328 +ij[11852] = 14 +id[11853] = "2748-01-10T12:17:25" +ik[11853] = 2.203 +il[11853] = -112 +im[11853] = 0.2283 +ij[11853] = 28.5 +id[11854] = "2748-01-12T17:16:32" +ik[11854] = 90 +il[11854] = -106 +im[11854] = 0.2225 +ij[11854] = 5 +id[11855] = "2748-01-27T21:08:45" +ik[11855] = 2.386 +il[11855] = -59 +im[11855] = 0.1654 +ij[11855] = 27.1 +id[11856] = "2748-03-17T22:14:59" +ik[11856] = 1.771 +il[11856] = 97 +im[11856] = 0.0204 +ij[11856] = 27.3 +id[11857] = "2748-03-27T04:51:53" +ik[11857] = 0.051 +il[11857] = 126 +im[11857] = 0.1221 +ij[11857] = 28.8 +id[11858] = "2748-03-31T15:54:39" +ik[11858] = 53.868 +il[11858] = 140 +im[11858] = 0.0557 +ij[11858] = 8 +id[11859] = "2748-04-05T01:52:19" +ik[11859] = 0.213 +il[11859] = 153 +im[11859] = 0.0475 +ij[11859] = 27.5 +id[11860] = "2748-05-07T11:25:35" +ik[11860] = 1.944 +il[11860] = -107 +im[11860] = 0.0787 +ij[11860] = 28.1 +id[11861] = "2748-05-15T01:11:16" +ik[11861] = 0.898 +il[11861] = -84 +im[11861] = 0.046 +ij[11861] = 28.6 +id[11862] = "2748-05-19T17:01:05" +ik[11862] = 3.75 +il[11862] = -69 +im[11862] = 0.0455 +ij[11862] = 27.6 +id[11863] = "2748-06-26T11:54:49" +ik[11863] = 5.288 +il[11863] = 45 +im[11863] = 0.0864 +ij[11863] = 27.2 +id[11864] = "2748-08-20T10:36:28" +ik[11864] = 1.27 +il[11864] = -167 +im[11864] = 0.0621 +ij[11864] = 12 +id[11865] = "2748-11-10T09:58:05" +ik[11865] = 4.04 +il[11865] = -99 +im[11865] = 0.0791 +ij[11865] = 27.4 +id[11866] = "2748-11-18T14:38:32" +ik[11866] = 3.168 +il[11866] = -74 +im[11866] = 0.0692 +ij[11866] = 28.1 +id[11867] = "2748-12-01T05:46:01" +ik[11867] = 0.187 +il[11867] = -36 +im[11867] = 0.0364 +ij[11867] = 28.4 +id[11868] = "2748-12-08T23:23:08" +ik[11868] = 1.304 +il[11868] = -12 +im[11868] = 0.1002 +ij[11868] = 28.5 +id[11869] = "2749-01-04T15:31:52" +ik[11869] = 0.351 +il[11869] = 70 +im[11869] = 0.1035 +ij[11869] = 27.3 +id[11870] = "2749-01-16T10:02:41" +ik[11870] = 53.592 +il[11870] = 106 +im[11870] = 0.0689 +ij[11870] = 9 +id[11871] = "2749-01-17T14:11:36" +ik[11871] = 1.254 +il[11871] = 110 +im[11871] = 0.0925 +ij[11871] = 28.8 +id[11872] = "2749-01-22T19:37:39" +ik[11872] = 0.987 +il[11872] = 126 +im[11872] = 0.1207 +ij[11872] = 27.5 +id[11873] = "2749-03-10T08:52:58" +ik[11873] = 0.82 +il[11873] = -88 +im[11873] = 0.1284 +ij[11873] = 27.6 +id[11874] = "2749-03-20T08:37:58" +ik[11874] = 4.353 +il[11874] = -57 +im[11874] = 0.1827 +ij[11874] = 28.6 +id[11875] = "2749-04-03T08:04:35" +ik[11875] = 90 +il[11875] = -13 +im[11875] = 0.1594 +ij[11875] = 6 +id[11876] = "2749-04-27T22:03:52" +ik[11876] = 0.144 +il[11876] = 51 +im[11876] = 0.0312 +ij[11876] = 27.2 +id[11877] = "2749-05-19T09:42:22" +ik[11877] = 0 +il[11877] = 106 +im[11877] = 0.4287 +ij[11877] = 13 +id[11878] = "2749-06-09T04:01:56" +ik[11878] = 4.033 +il[11878] = 109 +im[11878] = 0.1721 +ij[11878] = 27.2 +id[11879] = "2749-06-11T04:00:28" +ik[11879] = 0.43 +il[11879] = 120 +im[11879] = 0.3789 +ij[11879] = 11 +id[11880] = "2749-06-12T02:19:52" +ik[11880] = 4.636 +il[11880] = 133 +im[11880] = 0.45 +ij[11880] = 27.2 +id[11881] = "2749-06-14T14:13:17" +ik[11881] = 0.5339 +il[11881] = 135 +im[11881] = 0.534 +ij[11881] = 2 +id[11882] = "2749-07-02T15:00:58" +ik[11882] = 44.22 +il[11882] = 156 +im[11882] = 0.159 +ij[11882] = 7.1657 +id[11883] = "2749-08-05T15:37:41" +ik[11883] = 78.25 +il[11883] = -137 +im[11883] = 0.1944 +ij[11883] = 14 +id[11884] = "2749-08-20T06:14:55" +ik[11884] = 90 +il[11884] = -99 +im[11884] = 0.1326 +ij[11884] = 5 +id[11885] = "2749-09-06T22:05:57" +ik[11885] = 2.471 +il[11885] = -45 +im[11885] = 0.178 +ij[11885] = 28.7 +id[11886] = "2749-10-31T18:48:55" +ik[11886] = 54.188 +il[11886] = 122 +im[11886] = 0.0372 +ij[11886] = 8 +id[11887] = "2750-01-03T04:34:05" +ik[11887] = 4.629 +il[11887] = -40 +im[11887] = 0.0745 +ij[11887] = 27.1 +id[11888] = "2750-02-14T09:21:53" +ik[11888] = 0.09 +il[11888] = 91 +im[11888] = 0.0348 +ij[11888] = 28.5 +id[11889] = "2750-02-18T00:27:25" +ik[11889] = 0.603 +il[11889] = 102 +im[11889] = 0.0807 +ij[11889] = 27.3 +id[11890] = "2750-04-02T11:11:02" +ik[11890] = 1.35 +il[11890] = -146 +im[11890] = 0.0597 +ij[11890] = 12 +id[11891] = "2750-05-07T04:36:28" +ik[11891] = 1.767 +il[11891] = 146 +im[11891] = 0.0891 +ij[11891] = 28.6 +id[11892] = "2750-05-25T09:51:15" +ik[11892] = 3.55 +il[11892] = -168 +im[11892] = 0.0616 +ij[11892] = 28.1 +id[11893] = "2750-05-27T01:27:52" +ik[11893] = 4.426 +il[11893] = -163 +im[11893] = 0.0358 +ij[11893] = 27.2 +id[11894] = "2750-06-13T14:26:09" +ik[11894] = 0.144 +il[11894] = -108 +im[11894] = 0.0077 +ij[11894] = 27.9 +id[11895] = "2750-06-20T16:10:59" +ik[11895] = 0.974 +il[11895] = -86 +im[11895] = 0.0895 +ij[11895] = 28.1 +id[11896] = "2750-07-03T22:50:35" +ik[11896] = 0.905 +il[11896] = -45 +im[11896] = 0.094 +ij[11896] = 28.7 +id[11897] = "2750-08-19T12:24:56" +ik[11897] = 54.486 +il[11897] = 98 +im[11897] = 0.1168 +ij[11897] = 9 +id[11898] = "2750-10-17T17:46:32" +ik[11898] = 1.659 +il[11898] = -82 +im[11898] = 0.185 +ij[11898] = 27.4 +id[11899] = "2750-11-04T09:43:40" +ik[11899] = 90 +il[11899] = -28 +im[11899] = 0.1927 +ij[11899] = 6 +id[11900] = "2750-12-25T15:38:08" +ik[11900] = 0 +il[11900] = 118 +im[11900] = 0.2022 +ij[11900] = 13 +id[11901] = "2751-01-12T08:48:21" +ik[11901] = 0.5796 +il[11901] = 106 +im[11901] = 0.5797 +ij[11901] = 2 +id[11902] = "2751-01-15T11:45:36" +ik[11902] = 4.74 +il[11902] = 119 +im[11902] = 0.4428 +ij[11902] = 11 +id[11903] = "2751-02-05T14:40:43" +ik[11903] = 41.96 +il[11903] = 154 +im[11903] = 0.4155 +ij[11903] = 7.1553 +id[11904] = "2751-03-07T10:45:15" +ik[11904] = 4.999 +il[11904] = -147 +im[11904] = 0.2894 +ij[11904] = 28.4 +id[11905] = "2751-03-09T00:59:31" +ik[11905] = 73.39 +il[11905] = -144 +im[11905] = 0.2865 +ij[11905] = 14 +id[11906] = "2751-03-27T01:01:12" +ik[11906] = 3.817 +il[11906] = -98 +im[11906] = 0.1256 +ij[11906] = 27.3 +id[11907] = "2751-03-28T04:29:39" +ik[11907] = 90 +il[11907] = -96 +im[11907] = 0.0797 +ij[11907] = 5 +id[11908] = "2751-04-12T10:33:53" +ik[11908] = 0.974 +il[11908] = -48 +im[11908] = 0.0915 +ij[11908] = 28.8 +id[11909] = "2751-04-16T15:57:39" +ik[11909] = 0.795 +il[11909] = -35 +im[11909] = 0.0692 +ij[11909] = 27.5 +id[11910] = "2751-04-17T17:06:43" +ik[11910] = 1.116 +il[11910] = -32 +im[11910] = 0.103 +ij[11910] = 28.5 +id[11911] = "2751-06-02T19:56:51" +ik[11911] = 4.11 +il[11911] = 111 +im[11911] = 0.1061 +ij[11911] = 27.6 +id[11912] = "2751-06-12T15:19:11" +ik[11912] = 54.332 +il[11912] = 141 +im[11912] = 0.0212 +ij[11912] = 8 +id[11913] = "2751-06-28T09:49:14" +ik[11913] = 0.396 +il[11913] = -171 +im[11913] = 0.0149 +ij[11913] = 28.6 +id[11914] = "2751-07-11T17:41:29" +ik[11914] = 5.911 +il[11914] = -130 +im[11914] = 0.0323 +ij[11914] = 27.2 +id[11915] = "2751-07-28T21:00:00" +ik[11915] = 0.114 +il[11915] = -78 +im[11915] = 0.0128 +ij[11915] = 27.91 +id[11916] = "2751-08-20T13:35:19" +ik[11916] = 0.151 +il[11916] = -9 +im[11916] = 0.0943 +ij[11916] = 28.7 +id[11917] = "2751-10-30T11:49:55" +ik[11917] = 1.04 +il[11917] = -171 +im[11917] = 0.0626 +ij[11917] = 12 +id[11918] = "2752-01-19T09:35:25" +ik[11918] = 0.03 +il[11918] = -108 +im[11918] = 0.0845 +ij[11918] = 27.3 +id[11919] = "2752-02-06T01:56:45" +ik[11919] = 0.994 +il[11919] = -54 +im[11919] = 0.066 +ij[11919] = 27.5 +id[11920] = "2752-02-06T05:35:47" +ik[11920] = 0.955 +il[11920] = -53 +im[11920] = 0.0637 +ij[11920] = 28.8 +id[11921] = "2752-03-09T00:26:21" +ik[11921] = 0.7 +il[11921] = 46 +im[11921] = 0.0395 +ij[11921] = 28.5 +id[11922] = "2752-03-21T09:13:46" +ik[11922] = 2.09 +il[11922] = 85 +im[11922] = 0.0777 +ij[11922] = 27.6 +id[11923] = "2752-04-01T00:48:05" +ik[11923] = 54.134 +il[11923] = 118 +im[11923] = 0.1208 +ij[11923] = 9 +id[11924] = "2752-04-29T00:12:18" +ik[11924] = 2.746 +il[11924] = -154 +im[11924] = 0.1133 +ij[11924] = 27.2 +id[11925] = "2752-04-29T15:40:45" +ik[11925] = 3.552 +il[11925] = -152 +im[11925] = 0.1238 +ij[11925] = 28.6 +id[11926] = "2752-06-10T15:18:01" +ik[11926] = 90 +il[11926] = -23 +im[11926] = 0.1259 +ij[11926] = 6 +id[11927] = "2752-06-20T23:09:01" +ik[11927] = 1.324 +il[11927] = 3 +im[11927] = 0.0995 +ij[11927] = 28.7 +id[11928] = "2752-07-28T00:59:58" +ik[11928] = 0 +il[11928] = 106 +im[11928] = 0.3883 +ij[11928] = 13 +id[11929] = "2752-08-10T17:52:11" +ik[11929] = 0.5075 +il[11929] = 137 +im[11929] = 0.5075 +ij[11929] = 2 +id[11930] = "2752-08-19T11:26:52" +ik[11930] = 7.68 +il[11930] = 114 +im[11930] = 0.2182 +ij[11930] = 11 +id[11931] = "2752-09-10T08:48:38" +ik[11931] = 44.33 +il[11931] = 150 +im[11931] = 0.2466 +ij[11931] = 7.1649 +id[11932] = "2752-10-13T19:11:28" +ik[11932] = 77.76 +il[11932] = -144 +im[11932] = 0.1114 +ij[11932] = 14 +id[11933] = "2752-10-29T02:53:15" +ik[11933] = 90 +il[11933] = -106 +im[11933] = 0.1482 +ij[11933] = 5 +id[11934] = "2753-01-12T22:29:26" +ik[11934] = 53.759 +il[11934] = 129 +im[11934] = 0.0888 +ij[11934] = 8 +id[11935] = "2753-01-16T15:49:38" +ik[11935] = 3.864 +il[11935] = 140 +im[11935] = 0.1125 +ij[11935] = 27.1 +id[11936] = "2753-03-04T08:41:38" +ik[11936] = 1.029 +il[11936] = -74 +im[11936] = 0.0938 +ij[11936] = 27.3 +id[11937] = "2753-03-20T01:05:31" +ik[11937] = 0.891 +il[11937] = -25 +im[11937] = 0.0823 +ij[11937] = 28.4 +id[11938] = "2753-03-22T00:31:25" +ik[11938] = 0.587 +il[11938] = -19 +im[11938] = 0.0571 +ij[11938] = 27.5 +id[11939] = "2753-03-22T15:32:58" +ik[11939] = 0.513 +il[11939] = -17 +im[11939] = 0.0472 +ij[11939] = 28.8 +id[11940] = "2753-05-04T20:27:20" +ik[11940] = 3.416 +il[11940] = 115 +im[11940] = 0.0657 +ij[11940] = 27.6 +id[11941] = "2753-06-12T00:21:36" +ik[11941] = 0.05 +il[11941] = -150 +im[11941] = 0.0617 +ij[11941] = 12 +id[11942] = "2753-07-16T20:45:53" +ik[11942] = 2.116 +il[11942] = 134 +im[11942] = 0.0876 +ij[11942] = 28.1 +id[11943] = "2753-07-28T03:42:46" +ik[11943] = 0.628 +il[11943] = 169 +im[11943] = 0.0746 +ij[11943] = 28.7 +id[11944] = "2753-08-30T15:30:23" +ik[11944] = 4.314 +il[11944] = -88 +im[11944] = 0.0967 +ij[11944] = 28.1 +id[11945] = "2753-10-27T14:31:25" +ik[11945] = 3.224 +il[11945] = 90 +im[11945] = 0.1166 +ij[11945] = 27.4 +id[11946] = "2753-10-29T22:57:54" +ik[11946] = 53.864 +il[11946] = 95 +im[11946] = 0.1248 +ij[11946] = 9 +id[11947] = "2753-12-24T08:16:18" +ik[11947] = 0.679 +il[11947] = -94 +im[11947] = 0.1132 +ij[11947] = 27.3 +id[11948] = "2754-01-13T23:34:58" +ik[11948] = 0.374 +il[11948] = -30 +im[11948] = 0.1938 +ij[11948] = 27.5 +id[11949] = "2754-01-18T09:31:40" +ik[11949] = 0.111 +il[11949] = -16 +im[11949] = 0.0636 +ij[11949] = 28.8 +id[11950] = "2754-01-18T21:42:47" +ik[11950] = 90 +il[11950] = -14 +im[11950] = 0.0433 +ij[11950] = 6 +id[11951] = "2754-03-07T19:11:55" +ik[11951] = 0 +il[11951] = 122 +im[11951] = 0.3556 +ij[11951] = 13 +id[11952] = "2754-03-30T09:38:52" +ik[11952] = 8.47 +il[11952] = 126 +im[11952] = 0.0519 +ij[11952] = 11 +id[11953] = "2754-04-05T22:15:23" +ik[11953] = 0.5187 +il[11953] = 144 +im[11953] = 0.5187 +ij[11953] = 2 +id[11954] = "2754-04-19T23:48:39" +ik[11954] = 43.19 +il[11954] = 161 +im[11954] = 0.436 +ij[11954] = 7.1609 +id[11955] = "2754-05-23T00:34:24" +ik[11955] = 76.22 +il[11955] = -134 +im[11955] = 0.123 +ij[11955] = 14 +id[11956] = "2754-06-09T03:26:52" +ik[11956] = 90 +il[11956] = -90 +im[11956] = 0.0278 +ij[11956] = 5 +id[11957] = "2754-06-10T20:58:55" +ik[11957] = 4.41 +il[11957] = -85 +im[11957] = 0.0762 +ij[11957] = 27.6 +id[11958] = "2754-07-16T21:00:34" +ik[11958] = 1.419 +il[11958] = 26 +im[11958] = 0.138 +ij[11958] = 28.5 +id[11959] = "2754-08-09T06:00:43" +ik[11959] = 0.572 +il[11959] = 97 +im[11959] = 0.035 +ij[11959] = 28.6 +id[11960] = "2754-08-20T15:37:02" +ik[11960] = 54.511 +il[11960] = 132 +im[11960] = 0.0306 +ij[11960] = 8 +id[11961] = "2754-09-13T01:49:07" +ik[11961] = 0.531 +il[11961] = -157 +im[11961] = 0.1009 +ij[11961] = 28.7 +id[11962] = "2755-01-12T23:45:36" +ik[11962] = 0.68 +il[11962] = -160 +im[11962] = 0.0902 +ij[11962] = 12 +id[11963] = "2755-02-20T10:30:32" +ik[11963] = 0.913 +il[11963] = 141 +im[11963] = 0.0176 +ij[11963] = 27.5 +id[11964] = "2755-02-25T07:37:20" +ik[11964] = 0.666 +il[11964] = 145 +im[11964] = 0.0822 +ij[11964] = 28.8 +id[11965] = "2755-03-04T01:36:02" +ik[11965] = 1.738 +il[11965] = 166 +im[11965] = 0.0381 +ij[11965] = 28.1 +id[11966] = "2755-03-21T23:48:37" +ik[11966] = 3.668 +il[11966] = -138 +im[11966] = 0.0121 +ij[11966] = 28.1 +id[11967] = "2755-03-26T02:57:50" +ik[11967] = 0.645 +il[11967] = -125 +im[11967] = 0.0776 +ij[11967] = 28.4 +id[11968] = "2755-04-05T03:56:51" +ik[11968] = 2.68 +il[11968] = -94 +im[11968] = 0.0129 +ij[11968] = 27.6 +id[11969] = "2755-05-12T09:42:04" +ik[11969] = 3.766 +il[11969] = 23 +im[11969] = 0.0972 +ij[11969] = 27.2 +id[11970] = "2755-06-08T04:34:19" +ik[11970] = 1.547 +il[11970] = 106 +im[11970] = 0.0661 +ij[11970] = 28.5 +id[11971] = "2755-06-10T09:55:43" +ik[11971] = 54.628 +il[11971] = 113 +im[11971] = 0.1015 +ij[11971] = 9 +id[11972] = "2755-06-10T15:59:28" +ik[11972] = 2.089 +il[11972] = 114 +im[11972] = 0.1042 +ij[11972] = 28.6 +id[11973] = "2755-07-08T11:16:56" +ik[11973] = 0.968 +il[11973] = -161 +im[11973] = 0.0901 +ij[11973] = 28.7 +id[11974] = "2755-08-20T02:51:29" +ik[11974] = 90 +il[11974] = -31 +im[11974] = 0.0836 +ij[11974] = 6 +id[11975] = "2755-10-09T00:34:51" +ik[11975] = 0 +il[11975] = 111 +im[11975] = 0.4013 +ij[11975] = 13 +id[11976] = "2755-10-31T14:47:02" +ik[11976] = 6.48 +il[11976] = 113 +im[11976] = 0.437 +ij[11976] = 11 +id[11977] = "2755-11-02T23:42:00" +ik[11977] = 0.5284 +il[11977] = 128 +im[11977] = 0.5285 +ij[11977] = 2 +id[11978] = "2755-11-21T03:43:26" +ik[11978] = 43.13 +il[11978] = 148 +im[11978] = 0.2638 +ij[11978] = 7.1573 +id[11979] = "2755-12-23T00:58:13" +ik[11979] = 75.02 +il[11979] = -149 +im[11979] = 0.0618 +ij[11979] = 14 +id[11980] = "2756-01-10T06:22:00" +ik[11980] = 90 +il[11980] = -104 +im[11980] = 0.182 +ij[11980] = 5 +id[11981] = "2756-01-27T17:51:51" +ik[11981] = 2.457 +il[11981] = -50 +im[11981] = 0.1833 +ij[11981] = 27.1 +id[11982] = "2756-03-17T13:38:58" +ik[11982] = 1.741 +il[11982] = 106 +im[11982] = 0.0602 +ij[11982] = 27.3 +id[11983] = "2756-03-29T04:25:04" +ik[11983] = 53.854 +il[11983] = 142 +im[11983] = 0.1208 +ij[11983] = 8 +id[11984] = "2756-04-04T16:33:12" +ik[11984] = 0.229 +il[11984] = 162 +im[11984] = 0.012 +ij[11984] = 27.5 +id[11985] = "2756-04-10T09:11:05" +ik[11985] = 0.237 +il[11985] = -180 +im[11985] = 0.1022 +ij[11985] = 28.8 +id[11986] = "2756-05-19T06:36:45" +ik[11986] = 3.74 +il[11986] = -61 +im[11986] = 0.0096 +ij[11986] = 27.6 +id[11987] = "2756-06-26T01:02:22" +ik[11987] = 5.27 +il[11987] = 54 +im[11987] = 0.0896 +ij[11987] = 27.2 +id[11988] = "2756-08-18T04:24:57" +ik[11988] = 1.25 +il[11988] = -165 +im[11988] = 0.0093 +ij[11988] = 12 +id[11989] = "2756-11-01T11:12:28" +ik[11989] = 2.792 +il[11989] = -116 +im[11989] = 0.0109 +ij[11989] = 28.1 +id[11990] = "2756-11-09T23:32:44" +ik[11990] = 4.025 +il[11990] = -90 +im[11990] = 0.0949 +ij[11990] = 27.4 +id[11991] = "2757-01-04T06:06:31" +ik[11991] = 0.357 +il[11991] = 80 +im[11991] = 0.0739 +ij[11991] = 27.3 +id[11992] = "2757-01-13T20:39:19" +ik[11992] = 53.586 +il[11992] = 108 +im[11992] = 0.0346 +ij[11992] = 9 +id[11993] = "2757-01-22T10:53:38" +ik[11993] = 0.979 +il[11993] = 135 +im[11993] = 0.1316 +ij[11993] = 27.5 +id[11994] = "2757-01-31T17:55:40" +ik[11994] = 0.287 +il[11994] = 164 +im[11994] = 0.0234 +ij[11994] = 28.8 +id[11995] = "2757-03-10T03:51:42" +ik[11995] = 0.75 +il[11995] = -79 +im[11995] = 0.1582 +ij[11995] = 27.6 +id[11996] = "2757-04-01T00:28:12" +ik[11996] = 90 +il[11996] = -10 +im[11996] = 0.0226 +ij[11996] = 6 +id[11997] = "2757-04-07T14:43:09" +ik[11997] = 2.669 +il[11997] = 6 +im[11997] = 0.222 +ij[11997] = 28.4 +id[11998] = "2757-04-29T06:04:44" +ik[11998] = 0.02 +il[11998] = 61 +im[11998] = 0.0414 +ij[11998] = 27.2 +id[11999] = "2757-05-17T00:58:40" +ik[11999] = 0 +il[11999] = 104 +im[11999] = 0.3089 +ij[11999] = 13 +id[12000] = "2757-06-05T23:26:04" +ik[12000] = 3.411 +il[12000] = 111 +im[12000] = 0.3278 +ij[12000] = 27.2 +id[12001] = "2757-06-08T21:00:00" +ik[12001] = 0.76 +il[12001] = 123 +im[12001] = 0.0262 +ij[12001] = 11 +id[12002] = "2757-06-15T18:32:01" +ik[12002] = 0.5195 +il[12002] = 141 +im[12002] = 0.5196 +ij[12002] = 2 +id[12003] = "2757-06-30T07:15:23" +ik[12003] = 44.26 +il[12003] = 159 +im[12003] = 0.3782 +ij[12003] = 7.1656 +id[12004] = "2757-08-03T07:24:09" +ik[12004] = 78.27 +il[12004] = -134 +im[12004] = 0.0105 +ij[12004] = 14 +id[12005] = "2757-08-17T22:59:45" +ik[12005] = 90 +il[12005] = -96 +im[12005] = 0.0277 +ij[12005] = 5 +id[12006] = "2757-09-18T22:05:22" +ik[12006] = 1.603 +il[12006] = 1 +im[12006] = 0.0657 +ij[12006] = 28.6 +id[12007] = "2757-10-05T22:50:52" +ik[12007] = 0.583 +il[12007] = 53 +im[12007] = 0.1009 +ij[12007] = 28.7 +id[12008] = "2757-10-24T16:54:11" +ik[12008] = 0.225 +il[12008] = 111 +im[12008] = 0.1249 +ij[12008] = 28.5 +id[12009] = "2757-10-29T09:55:46" +ik[12009] = 54.205 +il[12009] = 125 +im[12009] = 0.0628 +ij[12009] = 8 +id[12010] = "2758-01-02T18:03:24" +ik[12010] = 4.647 +il[12010] = -31 +im[12010] = 0.0446 +ij[12010] = 27.1 +id[12011] = "2758-02-14T16:04:13" +ik[12011] = 2.92 +il[12011] = 102 +im[12011] = 0.0121 +ij[12011] = 28.1 +id[12012] = "2758-02-17T13:40:45" +ik[12012] = 0.596 +il[12012] = 111 +im[12012] = 0.0541 +ij[12012] = 27.3 +id[12013] = "2758-03-30T23:24:00" +ik[12013] = 1.37 +il[12013] = -144 +im[12013] = 0.0105 +ij[12013] = 12 +id[12014] = "2758-05-26T14:37:37" +ik[12014] = 4.413 +il[12014] = -155 +im[12014] = 0.065 +ij[12014] = 27.2 +id[12015] = "2758-05-29T01:30:51" +ik[12015] = 0.294 +il[12015] = -147 +im[12015] = 0.0274 +ij[12015] = 28.1 +id[12016] = "2758-07-22T12:04:01" +ik[12016] = 0.397 +il[12016] = 22 +im[12016] = 0.1042 +ij[12016] = 28.6 +id[12017] = "2758-07-30T15:10:30" +ik[12017] = 0.67 +il[12017] = 47 +im[12017] = 0.0158 +ij[12017] = 28.7 +id[12018] = "2758-08-17T05:25:34" +ik[12018] = 54.502 +il[12018] = 101 +im[12018] = 0.0788 +ij[12018] = 9 +id[12019] = "2758-09-20T03:13:58" +ik[12019] = 2.013 +il[12019] = -156 +im[12019] = 0.1528 +ij[12019] = 28.5 +id[12020] = "2758-10-17T14:49:37" +ik[12020] = 1.581 +il[12020] = -73 +im[12020] = 0.1693 +ij[12020] = 27.4 +id[12021] = "2758-11-01T21:18:02" +ik[12021] = 90 +il[12021] = -26 +im[12021] = 0.1751 +ij[12021] = 6 +id[12022] = "2758-12-22T07:24:36" +ik[12022] = 0 +il[12022] = 118 +im[12022] = 0.2524 +ij[12022] = 13 +id[12023] = "2759-01-13T00:31:40" +ik[12023] = 4.39 +il[12023] = 121 +im[12023] = 0.5791 +ij[12023] = 11 +id[12024] = "2759-01-13T11:39:48" +ik[12024] = 0.5822 +il[12024] = 133 +im[12024] = 0.5823 +ij[12024] = 2 +id[12025] = "2759-02-03T06:27:11" +ik[12025] = 42.96 +il[12025] = 157 +im[12025] = 0.1375 +ij[12025] = 7.1547 +id[12026] = "2759-03-06T11:24:57" +ik[12026] = 74.17 +il[12026] = -141 +im[12026] = 0.2224 +ij[12026] = 14 +id[12027] = "2759-03-25T16:46:29" +ik[12027] = 90 +il[12027] = -93 +im[12027] = 0.1949 +ij[12027] = 5 +id[12028] = "2759-03-27T01:39:24" +ik[12028] = 3.683 +il[12028] = -89 +im[12028] = 0.1648 +ij[12028] = 27.3 +id[12029] = "2759-04-16T11:24:18" +ik[12029] = 0.733 +il[12029] = -25 +im[12029] = 0.0127 +ij[12029] = 27.5 +id[12030] = "2759-04-28T00:54:34" +ik[12030] = 0.204 +il[12030] = 11 +im[12030] = 0.0734 +ij[12030] = 28.8 +id[12031] = "2759-06-02T11:15:28" +ik[12031] = 4.1 +il[12031] = 120 +im[12031] = 0.0637 +ij[12031] = 27.6 +id[12032] = "2759-06-10T07:26:29" +ik[12032] = 54.318 +il[12032] = 144 +im[12032] = 0.096 +ij[12032] = 8 +id[12033] = "2759-07-11T07:29:02" +ik[12033] = 5.887 +il[12033] = -122 +im[12033] = 0.0641 +ij[12033] = 27.2 +id[12034] = "2759-07-28T10:29:16" +ik[12034] = 0.091 +il[12034] = -70 +im[12034] = 0.0354 +ij[12034] = 27.91 +id[12035] = "2759-07-30T03:21:44" +ik[12035] = 1.301 +il[12035] = -65 +im[12035] = 0.0079 +ij[12035] = 28.4 +id[12036] = "2759-09-13T00:41:45" +ik[12036] = 0.408 +il[12036] = 73 +im[12036] = 0.0106 +ij[12036] = 28.6 +id[12037] = "2759-09-15T14:48:11" +ik[12037] = 0.428 +il[12037] = 81 +im[12037] = 0.0511 +ij[12037] = 28.7 +id[12038] = "2759-10-28T02:05:16" +ik[12038] = 1.08 +il[12038] = -169 +im[12038] = 0.0026 +ij[12038] = 12 +id[12039] = "2759-12-31T12:43:46" +ik[12039] = 1.061 +il[12039] = -156 +im[12039] = 0.0747 +ij[12039] = 28.1 +id[12040] = "2760-01-18T23:03:24" +ik[12040] = 0.041 +il[12040] = -100 +im[12040] = 0.0901 +ij[12040] = 27.3 +id[12041] = "2760-02-05T15:41:11" +ik[12041] = 0.992 +il[12041] = -45 +im[12041] = 0.0928 +ij[12041] = 27.5 +id[12042] = "2760-02-19T17:07:17" +ik[12042] = 0.205 +il[12042] = -1 +im[12042] = 0.0943 +ij[12042] = 28.8 +id[12043] = "2760-03-20T23:44:26" +ik[12043] = 2.06 +il[12043] = 93 +im[12043] = 0.1065 +ij[12043] = 27.6 +id[12044] = "2760-03-29T15:12:16" +ik[12044] = 54.111 +il[12044] = 121 +im[12044] = 0.0611 +ij[12044] = 9 +id[12045] = "2760-04-28T16:54:04" +ik[12045] = 2.704 +il[12045] = -145 +im[12045] = 0.0689 +ij[12045] = 27.2 +id[12046] = "2760-06-08T09:03:00" +ik[12046] = 90 +il[12046] = -20 +im[12046] = 0.0411 +ij[12046] = 6 +id[12047] = "2760-07-25T11:25:24" +ik[12047] = 0 +il[12047] = 113 +im[12047] = 0.2036 +ij[12047] = 13 +id[12048] = "2760-08-11T20:17:46" +ik[12048] = 0.5249 +il[12048] = 102 +im[12048] = 0.5249 +ij[12048] = 2 +id[12049] = "2760-08-17T03:07:12" +ik[12049] = 7.52 +il[12049] = 117 +im[12049] = 0.1935 +ij[12049] = 11 +id[12050] = "2760-09-08T12:29:59" +ik[12050] = 45.04 +il[12050] = 153 +im[12050] = 0.4169 +ij[12050] = 7.1649 +id[12051] = "2760-10-11T12:22:44" +ik[12051] = 78.04 +il[12051] = -142 +im[12051] = 0.0958 +ij[12051] = 14 +id[12052] = "2760-10-23T20:08:00" +ik[12052] = 1.475 +il[12052] = -111 +im[12052] = 0.1364 +ij[12052] = 28.7 +id[12053] = "2760-10-26T18:20:15" +ik[12053] = 90 +il[12053] = -103 +im[12053] = 0.0108 +ij[12053] = 5 +id[12054] = "2760-10-27T22:33:36" +ik[12054] = 2.205 +il[12054] = -99 +im[12054] = 0.0416 +ij[12054] = 28.6 +id[12055] = "2761-01-10T10:34:58" +ik[12055] = 53.767 +il[12055] = 131 +im[12055] = 0.0072 +ij[12055] = 8 +id[12056] = "2761-01-16T06:33:10" +ik[12056] = 3.893 +il[12056] = 149 +im[12056] = 0.111 +ij[12056] = 27.1 +id[12057] = "2761-02-03T13:58:56" +ik[12057] = 0.596 +il[12057] = -154 +im[12057] = 0.104 +ij[12057] = 28.5 +id[12058] = "2761-03-03T22:26:58" +ik[12058] = 1.016 +il[12058] = -65 +im[12058] = 0.0959 +ij[12058] = 27.3 +id[12059] = "2761-03-21T14:01:38" +ik[12059] = 0.593 +il[12059] = -11 +im[12059] = 0.0865 +ij[12059] = 27.5 +id[12060] = "2761-04-05T08:12:54" +ik[12060] = 0.329 +il[12060] = 35 +im[12060] = 0.0782 +ij[12060] = 28.8 +id[12061] = "2761-04-19T16:35:28" +ik[12061] = 1.3 +il[12061] = 79 +im[12061] = 0.0902 +ij[12061] = 28.1 +id[12062] = "2761-05-04T10:40:24" +ik[12062] = 3.4 +il[12062] = 112 +im[12062] = 0.0806 +ij[12062] = 27.6 +id[12063] = "2761-06-09T18:20:09" +ik[12063] = 0.1 +il[12063] = -148 +im[12063] = 0.0076 +ij[12063] = 12 +id[12064] = "2761-08-08T11:27:10" +ik[12064] = 3.541 +il[12064] = -146 +im[12064] = 0.0206 +ij[12064] = 28.1 +id[12065] = "2761-08-23T01:34:36" +ik[12065] = 0.529 +il[12065] = -101 +im[12065] = 0.0177 +ij[12065] = 28.7 +id[12066] = "2761-09-03T17:32:12" +ik[12066] = 1.079 +il[12066] = -65 +im[12066] = 0.0845 +ij[12066] = 28.6 +id[12067] = "2761-09-07T05:00:31" +ik[12067] = 0.984 +il[12067] = -55 +im[12067] = 0.032 +ij[12067] = 28.4 +id[12068] = "2761-10-27T05:27:50" +ik[12068] = 3.196 +il[12068] = 97 +im[12068] = 0.0885 +ij[12068] = 27.4 +id[12069] = "2761-10-27T11:46:05" +ik[12069] = 53.886 +il[12069] = 98 +im[12069] = 0.0928 +ij[12069] = 9 +id[12070] = "2761-12-24T03:33:37" +ik[12070] = 0.678 +il[12070] = -85 +im[12070] = 0.0493 +ij[12070] = 27.3 +id[12071] = "2761-12-29T13:04:39" +ik[12071] = 1.082 +il[12071] = -68 +im[12071] = 0.1766 +ij[12071] = 28.5 +id[12072] = "2762-01-14T00:19:24" +ik[12072] = 0.301 +il[12072] = -20 +im[12072] = 0.2218 +ij[12072] = 27.5 +id[12073] = "2762-01-16T10:02:16" +ik[12073] = 90 +il[12073] = -12 +im[12073] = 0.1948 +ij[12073] = 6 +id[12074] = "2762-02-06T02:32:38" +ik[12074] = 2.957 +il[12074] = 40 +im[12074] = 0.1071 +ij[12074] = 28.8 +id[12075] = "2762-03-05T12:23:11" +ik[12075] = 0 +il[12075] = 113 +im[12075] = 0.1009 +ij[12075] = 13 +id[12076] = "2762-03-27T23:28:19" +ik[12076] = 8.58 +il[12076] = 128 +im[12076] = 0.4156 +ij[12076] = 11 +id[12077] = "2762-04-07T01:02:32" +ik[12077] = 0.5139 +il[12077] = 150 +im[12077] = 0.514 +ij[12077] = 2 +id[12078] = "2762-04-17T13:27:46" +ik[12078] = 43.04 +il[12078] = 163 +im[12078] = 0.2928 +ij[12078] = 7.1608 +id[12079] = "2762-04-30T08:06:34" +ik[12079] = 3.685 +il[12079] = -175 +im[12079] = 0.2028 +ij[12079] = 28.8 +id[12080] = "2762-05-20T13:23:31" +ik[12080] = 76.04 +il[12080] = -132 +im[12080] = 0.2433 +ij[12080] = 14 +id[12081] = "2762-06-06T18:36:10" +ik[12081] = 90 +il[12081] = -87 +im[12081] = 0.16 +ij[12081] = 5 +id[12082] = "2762-06-10T21:33:23" +ik[12082] = 4.42 +il[12082] = -75 +im[12082] = 0.0094 +ij[12082] = 27.6 +id[12083] = "2762-08-18T08:41:13" +ik[12083] = 54.514 +il[12083] = 135 +im[12083] = 0.1014 +ij[12083] = 8 +id[12084] = "2762-10-09T09:26:21" +ik[12084] = 0.478 +il[12084] = -66 +im[12084] = 0.0276 +ij[12084] = 28.7 +id[12085] = "2762-10-26T19:37:55" +ik[12085] = 0.942 +il[12085] = -12 +im[12085] = 0.0588 +ij[12085] = 28.6 +id[12086] = "2762-11-26T22:25:49" +ik[12086] = 0.455 +il[12086] = 85 +im[12086] = 0.0667 +ij[12086] = 28.1 +id[12087] = "2763-01-10T10:20:38" +ik[12087] = 0.62 +il[12087] = -158 +im[12087] = 0.0648 +ij[12087] = 12 +id[12088] = "2763-02-19T23:43:24" +ik[12088] = 0.913 +il[12088] = 150 +im[12088] = 0.0204 +ij[12088] = 27.5 +id[12089] = "2763-03-01T06:10:22" +ik[12089] = 0.064 +il[12089] = 167 +im[12089] = 0.087 +ij[12089] = 28.5 +id[12090] = "2763-03-01T17:17:13" +ik[12090] = 3.403 +il[12090] = 169 +im[12090] = 0.0849 +ij[12090] = 28.1 +id[12091] = "2763-03-10T20:51:12" +ik[12091] = 0.101 +il[12091] = -163 +im[12091] = 0.0459 +ij[12091] = 28.8 +id[12092] = "2763-04-04T17:22:16" +ik[12092] = 2.67 +il[12092] = -85 +im[12092] = 0.0506 +ij[12092] = 27.6 +id[12093] = "2763-05-11T23:38:30" +ik[12093] = 3.747 +il[12093] = 31 +im[12093] = 0.0784 +ij[12093] = 27.2 +id[12094] = "2763-06-08T03:53:14" +ik[12094] = 54.62 +il[12094] = 116 +im[12094] = 0.0333 +ij[12094] = 9 +id[12095] = "2763-08-06T10:52:53" +ik[12095] = 0.721 +il[12095] = -63 +im[12095] = 0.0559 +ij[12095] = 28.7 +id[12096] = "2763-08-17T17:46:38" +ik[12096] = 90 +il[12096] = -29 +im[12096] = 0.0916 +ij[12096] = 6 +id[12097] = "2763-09-09T07:29:25" +ik[12097] = 6.113 +il[12097] = 29 +im[12097] = 0.2746 +ij[12097] = 28.6 +id[12098] = "2763-10-06T13:23:58" +ik[12098] = 0 +il[12098] = 101 +im[12098] = 0.391 +ij[12098] = 13 +id[12099] = "2763-10-29T04:17:45" +ik[12099] = 6.72 +il[12099] = 116 +im[12099] = 0.1113 +ij[12099] = 11 +id[12100] = "2763-11-04T01:44:23" +ik[12100] = 0.5311 +il[12100] = 133 +im[12100] = 0.5311 +ij[12100] = 2 +id[12101] = "2763-11-18T16:59:43" +ik[12101] = 43.15 +il[12101] = 151 +im[12101] = 0.4482 +ij[12101] = 7.1576 +id[12102] = "2763-11-26T03:28:30" +ik[12102] = 3.433 +il[12102] = 163 +im[12102] = 0.1331 +ij[12102] = 28.6 +id[12103] = "2763-12-20T16:29:31" +ik[12103] = 75.13 +il[12103] = -146 +im[12103] = 0.1548 +ij[12103] = 14 +id[12104] = "2764-01-07T19:34:33" +ik[12104] = 90 +il[12104] = -102 +im[12104] = 0.025 +ij[12104] = 5 +id[12105] = "2764-01-10T19:45:50" +ik[12105] = 2.829 +il[12105] = -92 +im[12105] = 0.1403 +ij[12105] = 28.4 +id[12106] = "2764-01-27T14:07:23" +ik[12106] = 2.525 +il[12106] = -40 +im[12106] = 0.1754 +ij[12106] = 27.1 +id[12107] = "2764-03-17T04:56:17" +ik[12107] = 1.712 +il[12107] = 115 +im[12107] = 0.0938 +ij[12107] = 27.3 +id[12108] = "2764-03-26T16:51:56" +ik[12108] = 53.841 +il[12108] = 144 +im[12108] = 0.108 +ij[12108] = 8 +id[12109] = "2764-04-04T07:07:24" +ik[12109] = 0.244 +il[12109] = 171 +im[12109] = 0.0505 +ij[12109] = 27.5 +id[12110] = "2764-04-24T09:10:56" +ik[12110] = 0.241 +il[12110] = -127 +im[12110] = 0.0728 +ij[12110] = 28.8 +id[12111] = "2764-05-04T19:16:01" +ik[12111] = 0.096 +il[12111] = -95 +im[12111] = 0.0332 +ij[12111] = 28.5 +id[12112] = "2764-05-18T20:17:12" +ik[12112] = 3.73 +il[12112] = -52 +im[12112] = 0.0386 +ij[12112] = 27.6 +id[12113] = "2764-06-25T14:04:35" +ik[12113] = 5.251 +il[12113] = 63 +im[12113] = 0.0767 +ij[12113] = 27.2 +id[12114] = "2764-06-29T18:44:03" +ik[12114] = 2.293 +il[12114] = 75 +im[12114] = 0.0793 +ij[12114] = 28.1 +id[12115] = "2764-08-15T22:16:19" +ik[12115] = 1.22 +il[12115] = -162 +im[12115] = 0.0624 +ij[12115] = 12 +id[12116] = "2764-09-15T13:07:14" +ik[12116] = 0.653 +il[12116] = 122 +im[12116] = 0.0571 +ij[12116] = 28.7 +id[12117] = "2764-10-12T07:17:36" +ik[12117] = 3.093 +il[12117] = -167 +im[12117] = 0.0901 +ij[12117] = 28.1 +id[12118] = "2764-10-18T19:57:30" +ik[12118] = 1.887 +il[12118] = -148 +im[12118] = 0.0054 +ij[12118] = 28.6 +id[12119] = "2764-11-09T13:11:23" +ik[12119] = 4.01 +il[12119] = -82 +im[12119] = 0.0925 +ij[12119] = 27.4 +id[12120] = "2765-01-03T20:41:10" +ik[12120] = 0.361 +il[12120] = 87 +im[12120] = 0.0314 +ij[12120] = 27.3 +id[12121] = "2765-01-11T07:15:57" +ik[12121] = 53.58 +il[12121] = 111 +im[12121] = 0.1071 +ij[12121] = 9 +id[12122] = "2765-01-22T02:13:37" +ik[12122] = 0.97 +il[12122] = 144 +im[12122] = 0.1193 +ij[12122] = 27.5 +id[12123] = "2765-02-15T02:48:37" +ik[12123] = 0.94 +il[12123] = -141 +im[12123] = 0.0214 +ij[12123] = 28.8 +id[12124] = "2765-03-09T23:18:08" +ik[12124] = 0.67 +il[12124] = -69 +im[12124] = 0.1698 +ij[12124] = 27.6 +id[12125] = "2765-03-28T22:00:46" +ik[12125] = 3.801 +il[12125] = -10 +im[12125] = 0.165 +ij[12125] = 28.5 +id[12126] = "2765-03-29T16:43:50" +ik[12126] = 90 +il[12126] = -8 +im[12126] = 0.1407 +ij[12126] = 6 +id[12127] = "2765-05-01T04:05:37" +ik[12127] = 0.183 +il[12127] = 80 +im[12127] = 0.0437 +ij[12127] = 27.2 +id[12128] = "2765-05-14T16:29:58" +ik[12128] = 0 +il[12128] = 110 +im[12128] = 0.0369 +ij[12128] = 13 +id[12129] = "2765-05-30T13:32:17" +ik[12129] = 2.202 +il[12129] = 147 +im[12129] = 0.2804 +ij[12129] = 27.2 +id[12130] = "2765-06-03T13:26:20" +ik[12130] = 0.51 +il[12130] = 148 +im[12130] = 0.5101 +ij[12130] = 2 +id[12131] = "2765-06-06T14:00:57" +ik[12131] = 1.1 +il[12131] = 156 +im[12131] = 0.3826 +ij[12131] = 11 +id[12132] = "2765-06-27T23:33:40" +ik[12132] = 44.29 +il[12132] = 162 +im[12132] = 0.3545 +ij[12132] = 7.1655 +id[12133] = "2765-07-31T22:44:26" +ik[12133] = 78.26 +il[12133] = -132 +im[12133] = 0.1776 +ij[12133] = 14 +id[12134] = "2765-08-15T15:40:09" +ik[12134] = 90 +il[12134] = -93 +im[12134] = 0.1657 +ij[12134] = 5 +id[12135] = "2765-10-27T01:06:11" +ik[12135] = 54.221 +il[12135] = 128 +im[12135] = 0.1223 +ij[12135] = 8 +id[12136] = "2765-11-01T09:33:59" +ik[12136] = 0.638 +il[12136] = 144 +im[12136] = 0.0362 +ij[12136] = 28.7 +id[12137] = "2765-12-11T03:42:11" +ik[12137] = 0.789 +il[12137] = -94 +im[12137] = 0.092 +ij[12137] = 28.6 +id[12138] = "2766-01-02T07:29:10" +ik[12138] = 4.665 +il[12138] = -23 +im[12138] = 0.0076 +ij[12138] = 27.1 +id[12139] = "2766-01-24T20:51:12" +ik[12139] = 2.719 +il[12139] = 48 +im[12139] = 0.0915 +ij[12139] = 28.1 +id[12140] = "2766-01-25T21:52:07" +ik[12140] = 1.128 +il[12140] = 51 +im[12140] = 0.0884 +ij[12140] = 28.4 +id[12141] = "2766-02-17T02:54:30" +ik[12141] = 0.59 +il[12141] = 109 +im[12141] = 0.018 +ij[12141] = 27.3 +id[12142] = "2766-03-28T11:25:26" +ik[12142] = 1.39 +il[12142] = -142 +im[12142] = 0.0693 +ij[12142] = 12 +id[12143] = "2766-05-05T17:28:45" +ik[12143] = 1.423 +il[12143] = 150 +im[12143] = 0.0608 +ij[12143] = 28.1 +id[12144] = "2766-05-26T03:50:56" +ik[12144] = 4.4 +il[12144] = -146 +im[12144] = 0.0837 +ij[12144] = 27.2 +id[12145] = "2766-05-28T07:13:35" +ik[12145] = 0.933 +il[12145] = -139 +im[12145] = 0.0646 +ij[12145] = 28.5 +id[12146] = "2766-06-12T16:55:37" +ik[12146] = 0.18 +il[12146] = -91 +im[12146] = 0.0723 +ij[12146] = 27.9 +id[12147] = "2766-08-14T22:29:46" +ik[12147] = 54.517 +il[12147] = 104 +im[12147] = 0.0118 +ij[12147] = 9 +id[12148] = "2766-08-26T01:00:37" +ik[12148] = 0.251 +il[12148] = 137 +im[12148] = 0.1103 +ij[12148] = 28.7 +id[12149] = "2766-10-17T12:21:10" +ik[12149] = 1.498 +il[12149] = -63 +im[12149] = 0.1258 +ij[12149] = 27.4 +id[12150] = "2766-10-18T15:33:50" +ik[12150] = 4.757 +il[12150] = -60 +im[12150] = 0.1579 +ij[12150] = 28.6 +id[12151] = "2766-10-30T08:55:03" +ik[12151] = 90 +il[12151] = -24 +im[12151] = 0.029 +ij[12151] = 6 +id[12152] = "2766-12-19T22:44:53" +ik[12152] = 0 +il[12152] = 120 +im[12152] = 0.4514 +ij[12152] = 13 +id[12153] = "2767-01-10T13:20:38" +ik[12153] = 4.03 +il[12153] = 124 +im[12153] = 0.3538 +ij[12153] = 11 +id[12154] = "2767-01-14T14:01:27" +ik[12154] = 0.5714 +il[12154] = 139 +im[12154] = 0.5715 +ij[12154] = 2 +id[12155] = "2767-01-31T07:37:40" +ik[12155] = 42.37 +il[12155] = 158 +im[12155] = 0.2706 +ij[12155] = 7.1546 +id[12156] = "2767-03-03T23:10:22" +ik[12156] = 74.02 +il[12156] = -139 +im[12156] = 0.0492 +ij[12156] = 14 +id[12157] = "2767-03-23T05:02:25" +ik[12157] = 90 +il[12157] = -91 +im[12157] = 0.1731 +ij[12157] = 5 +id[12158] = "2767-03-27T01:24:43" +ik[12158] = 3.559 +il[12158] = -79 +im[12158] = 0.1932 +ij[12158] = 27.3 +id[12159] = "2767-04-16T06:26:30" +ik[12159] = 0.675 +il[12159] = -16 +im[12159] = 0.0499 +ij[12159] = 27.5 +id[12160] = "2767-05-13T05:02:53" +ik[12160] = 0.301 +il[12160] = 67 +im[12160] = 0.1054 +ij[12160] = 28.8 +id[12161] = "2767-06-02T02:27:03" +ik[12161] = 4.09 +il[12161] = 129 +im[12161] = 0.0125 +ij[12161] = 27.6 +id[12162] = "2767-06-07T23:26:40" +ik[12162] = 54.304 +il[12162] = 147 +im[12162] = 0.1117 +ij[12162] = 8 +id[12163] = "2767-07-10T21:20:08" +ik[12163] = 5.863 +il[12163] = -113 +im[12163] = 0.0867 +ij[12163] = 27.2 +id[12164] = "2767-07-27T23:58:33" +ik[12164] = 0.069 +il[12164] = -61 +im[12164] = 0.0713 +ij[12164] = 27.91 +id[12165] = "2767-08-04T18:51:15" +ik[12165] = 0.214 +il[12165] = -37 +im[12165] = 0.0715 +ij[12165] = 28.5 +id[12166] = "2767-09-07T11:13:29" +ik[12166] = 2.72 +il[12166] = 66 +im[12166] = 0.0853 +ij[12166] = 28.1 +id[12167] = "2767-10-25T16:32:09" +ik[12167] = 1.12 +il[12167] = -166 +im[12167] = 0.065 +ij[12167] = 12 +id[12168] = "2767-12-05T17:07:26" +ik[12168] = 1.709 +il[12168] = 135 +im[12168] = 0.0915 +ij[12168] = 28.6 +id[12169] = "2767-12-11T20:11:54" +ik[12169] = 0.191 +il[12169] = 154 +im[12169] = 0.0466 +ij[12169] = 28.1 +id[12170] = "2768-01-18T12:34:30" +ik[12170] = 0.043 +il[12170] = -91 +im[12170] = 0.082 +ij[12170] = 27.3 +id[12171] = "2768-02-02T12:05:28" +ik[12171] = 0.879 +il[12171] = -45 +im[12171] = 0.0878 +ij[12171] = 28.4 +id[12172] = "2768-02-05T05:22:03" +ik[12172] = 0.99 +il[12172] = -36 +im[12172] = 0.1014 +ij[12172] = 27.5 +id[12173] = "2768-03-04T11:01:58" +ik[12173] = 0.657 +il[12173] = 52 +im[12173] = 0.1 +ij[12173] = 28.8 +id[12174] = "2768-03-20T14:13:58" +ik[12174] = 2.03 +il[12174] = 102 +im[12174] = 0.1187 +ij[12174] = 27.6 +id[12175] = "2768-03-27T05:25:48" +ik[12175] = 54.088 +il[12175] = 123 +im[12175] = 0.0381 +ij[12175] = 9 +id[12176] = "2768-04-28T09:46:03" +ik[12176] = 2.661 +il[12176] = -136 +im[12176] = 0.0116 +ij[12176] = 27.2 +id[12177] = "2768-06-06T02:47:05" +ik[12177] = 90 +il[12177] = -17 +im[12177] = 0.1691 +ij[12177] = 6 +id[12178] = "2768-07-16T16:25:14" +ik[12178] = 2.341 +il[12178] = 96 +im[12178] = 0.3818 +ij[12178] = 28.5 +id[12179] = "2768-07-23T23:10:49" +ik[12179] = 0 +il[12179] = 107 +im[12179] = 0.0581 +ij[12179] = 13 +id[12180] = "2768-08-13T02:14:11" +ik[12180] = 0.5312 +il[12180] = 108 +im[12180] = 0.5313 +ij[12180] = 2 +id[12181] = "2768-08-14T18:51:50" +ik[12181] = 7.34 +il[12181] = 119 +im[12181] = 0.4935 +ij[12181] = 11 +id[12182] = "2768-09-05T22:13:23" +ik[12182] = 43.96 +il[12182] = 155 +im[12182] = 0.371 +ij[12182] = 7.1655 +id[12183] = "2768-09-06T20:30:28" +ik[12183] = 0.157 +il[12183] = 157 +im[12183] = 0.404 +ij[12183] = 27.8 +id[12184] = "2768-09-29T19:52:01" +ik[12184] = 4.228 +il[12184] = -160 +im[12184] = 0.0519 +ij[12184] = 28.5 +id[12185] = "2768-10-09T06:42:13" +ik[12185] = 77.31 +il[12185] = -139 +im[12185] = 0.2459 +ij[12185] = 14 +id[12186] = "2768-10-24T09:49:54" +ik[12186] = 90 +il[12186] = -100 +im[12186] = 0.1593 +ij[12186] = 5 +id[12187] = "2768-11-22T09:06:37" +ik[12187] = 0.921 +il[12187] = -12 +im[12187] = 0.1369 +ij[12187] = 28.7 +id[12188] = "2769-01-07T22:40:29" +ik[12188] = 53.776 +il[12188] = 133 +im[12188] = 0.0917 +ij[12188] = 8 +id[12189] = "2769-01-15T21:13:09" +ik[12189] = 3.922 +il[12189] = 158 +im[12189] = 0.0909 +ij[12189] = 27.1 +id[12190] = "2769-01-26T20:27:10" +ik[12190] = 0.028 +il[12190] = -168 +im[12190] = 0.0149 +ij[12190] = 28.6 +id[12191] = "2769-03-03T12:08:43" +ik[12191] = 1.005 +il[12191] = -57 +im[12191] = 0.0831 +ij[12191] = 27.3 +id[12192] = "2769-03-21T03:28:17" +ik[12192] = 0.599 +il[12192] = -2 +im[12192] = 0.0982 +ij[12192] = 27.5 +id[12193] = "2769-03-28T03:31:40" +ik[12193] = 2.046 +il[12193] = 19 +im[12193] = 0.0118 +ij[12193] = 28.1 +id[12194] = "2769-04-19T00:00:34" +ik[12194] = 0.02 +il[12194] = 86 +im[12194] = 0.0899 +ij[12194] = 28.8 +id[12195] = "2769-05-03T23:44:01" +ik[12195] = 3.39 +il[12195] = 121 +im[12195] = 0.0837 +ij[12195] = 27.6 +id[12196] = "2769-06-07T12:12:57" +ik[12196] = 0.15 +il[12196] = -145 +im[12196] = 0.0631 +ij[12196] = 12 +id[12197] = "2769-07-15T17:16:13" +ik[12197] = 2.603 +il[12197] = 150 +im[12197] = 0.0574 +ij[12197] = 28.1 +id[12198] = "2769-09-04T09:25:37" +ik[12198] = 0.286 +il[12198] = -53 +im[12198] = 0.0948 +ij[12198] = 28.5 +id[12199] = "2769-09-17T15:51:15" +ik[12199] = 0.063 +il[12199] = -13 +im[12199] = 0.0979 +ij[12199] = 28.7 +id[12200] = "2769-10-25T00:44:57" +ik[12200] = 53.908 +il[12200] = 100 +im[12200] = 0.0079 +ij[12200] = 9 +id[12201] = "2769-10-26T20:30:56" +ik[12201] = 3.168 +il[12201] = 106 +im[12201] = 0.0429 +ij[12201] = 27.4 +id[12202] = "2769-12-02T12:46:48" +ik[12202] = 2.705 +il[12202] = -142 +im[12202] = 0.1444 +ij[12202] = 28.6 +id[12203] = "2769-12-23T23:15:23" +ik[12203] = 0.675 +il[12203] = -75 +im[12203] = 0.0207 +ij[12203] = 27.3 +id[12204] = "2770-01-13T22:14:40" +ik[12204] = 90 +il[12204] = -10 +im[12204] = 0.2246 +ij[12204] = 6 +id[12205] = "2770-01-14T02:03:50" +ik[12205] = 0.218 +il[12205] = -10 +im[12205] = 0.2267 +ij[12205] = 27.5 +id[12206] = "2770-02-20T03:32:32" +ik[12206] = 5.761 +il[12206] = 93 +im[12206] = 0.0838 +ij[12206] = 28.4 +id[12207] = "2770-03-03T06:42:40" +ik[12207] = 0 +il[12207] = 116 +im[12207] = 0.2685 +ij[12207] = 13 +id[12208] = "2770-03-13T12:51:47" +ik[12208] = 0.522 +il[12208] = 136 +im[12208] = 0.5221 +ij[12208] = 2 +id[12209] = "2770-03-25T13:10:33" +ik[12209] = 8.67 +il[12209] = 131 +im[12209] = 0.4963 +ij[12209] = 11 +id[12210] = "2770-04-16T05:45:14" +ik[12210] = 43.96 +il[12210] = -170 +im[12210] = 0.055 +ij[12210] = 7.1605 +id[12211] = "2770-04-24T16:06:31" +ik[12211] = 4.255 +il[12211] = -179 +im[12211] = 0.2998 +ij[12211] = 28.4 +id[12212] = "2770-05-18T02:17:57" +ik[12212] = 75.82 +il[12212] = -130 +im[12212] = 0.1974 +ij[12212] = 14 +id[12213] = "2770-05-24T04:06:23" +ik[12213] = 0.331 +il[12213] = -115 +im[12213] = 0.1623 +ij[12213] = 28.8 +id[12214] = "2770-06-04T09:41:03" +ik[12214] = 90 +il[12214] = -85 +im[12214] = 0.2205 +ij[12214] = 5 +id[12215] = "2770-06-10T21:12:04" +ik[12215] = 4.42 +il[12215] = -65 +im[12215] = 0.0694 +ij[12215] = 27.6 +id[12216] = "2770-08-16T01:45:25" +ik[12216] = 54.515 +il[12216] = 138 +im[12216] = 0.1078 +ij[12216] = 8 +id[12217] = "2770-11-03T15:28:56" +ik[12217] = 0.777 +il[12217] = 22 +im[12217] = 0.0767 +ij[12217] = 28.7 +id[12218] = "2770-11-07T10:28:59" +ik[12218] = 0.087 +il[12218] = 34 +im[12218] = 0.0211 +ij[12218] = 28.1 +id[12219] = "2770-11-14T22:52:27" +ik[12219] = 0.081 +il[12219] = 58 +im[12219] = 0.0901 +ij[12219] = 28.5 +id[12220] = "2771-01-07T21:02:52" +ik[12220] = 0.56 +il[12220] = -156 +im[12220] = 0.006 +ij[12220] = 12 +id[12221] = "2771-02-19T12:55:50" +ik[12221] = 0.913 +il[12221] = 158 +im[12221] = 0.0524 +ij[12221] = 27.5 +id[12222] = "2771-03-24T10:12:00" +ik[12222] = 0.563 +il[12222] = -111 +im[12222] = 0.0077 +ij[12222] = 28.8 +id[12223] = "2771-04-04T06:49:57" +ik[12223] = 2.65 +il[12223] = -77 +im[12223] = 0.0818 +ij[12223] = 27.6 +id[12224] = "2771-05-11T13:41:09" +ik[12224] = 3.726 +il[12224] = 40 +im[12224] = 0.0486 +ij[12224] = 27.2 +id[12225] = "2771-06-05T21:47:12" +ik[12225] = 54.611 +il[12225] = 119 +im[12225] = 0.0571 +ij[12225] = 9 +id[12226] = "2771-08-15T08:47:59" +ik[12226] = 90 +il[12226] = -26 +im[12226] = 0.2042 +ij[12226] = 6 +id[12227] = "2771-09-09T19:48:34" +ik[12227] = 4.568 +il[12227] = 41 +im[12227] = 0.2725 +ij[12227] = 28.7 +id[12228] = "2771-10-04T02:18:24" +ik[12228] = 0 +il[12228] = 104 +im[12228] = 0.1137 +ij[12228] = 13 +id[12229] = "2771-10-26T17:52:48" +ik[12229] = 6.95 +il[12229] = 118 +im[12229] = 0.3686 +ij[12229] = 11 +id[12230] = "2771-11-05T02:38:02" +ik[12230] = 0.5274 +il[12230] = 139 +im[12230] = 0.5275 +ij[12230] = 2 +id[12231] = "2771-11-17T01:20:58" +ik[12231] = 43.96 +il[12231] = 154 +im[12231] = 0.3781 +ij[12231] = 7.1578 +id[12232] = "2771-11-30T07:27:07" +ik[12232] = 0.1 +il[12232] = 177 +im[12232] = 0.3125 +ij[12232] = 28.7 +id[12233] = "2771-12-18T07:48:47" +ik[12233] = 75.23 +il[12233] = -144 +im[12233] = 0.2622 +ij[12233] = 14 +id[12234] = "2772-01-05T08:53:17" +ik[12234] = 90 +il[12234] = -99 +im[12234] = 0.1543 +ij[12234] = 5 +id[12235] = "2772-01-19T20:12:11" +ik[12235] = 2.063 +il[12235] = -54 +im[12235] = 0.1183 +ij[12235] = 28.5 +id[12236] = "2772-01-27T09:58:02" +ik[12236] = 2.59 +il[12236] = -31 +im[12236] = 0.1427 +ij[12236] = 27.1 +id[12237] = "2772-03-14T18:31:49" +ik[12237] = 0.949 +il[12237] = 117 +im[12237] = 0.1175 +ij[12237] = 28.6 +id[12238] = "2772-03-16T20:06:30" +ik[12238] = 1.684 +il[12238] = 124 +im[12238] = 0.1152 +ij[12238] = 27.3 +id[12239] = "2772-03-24T05:11:40" +ik[12239] = 53.828 +il[12239] = 147 +im[12239] = 0.027 +ij[12239] = 8 +id[12240] = "2772-04-03T21:37:36" +ik[12240] = 0.258 +il[12240] = -180 +im[12240] = 0.0865 +ij[12240] = 27.5 +id[12241] = "2772-05-08T06:31:49" +ik[12241] = 0.087 +il[12241] = -74 +im[12241] = 0.0181 +ij[12241] = 28.8 +id[12242] = "2772-05-17T19:51:53" +ik[12242] = 0.295 +il[12242] = -45 +im[12242] = 0.0813 +ij[12242] = 28.4 +id[12243] = "2772-05-18T09:54:55" +ik[12243] = 3.72 +il[12243] = -43 +im[12243] = 0.0745 +ij[12243] = 27.6 +id[12244] = "2772-06-05T15:13:58" +ik[12244] = 1.517 +il[12244] = 12 +im[12244] = 0.019 +ij[12244] = 28.1 +id[12245] = "2772-06-25T03:10:47" +ik[12245] = 5.233 +il[12245] = 71 +im[12245] = 0.0511 +ij[12245] = 27.2 +id[12246] = "2772-07-12T14:51:21" +ik[12246] = 0.786 +il[12246] = 124 +im[12246] = 0.0856 +ij[12246] = 28.1 +id[12247] = "2772-08-13T16:16:19" +ik[12247] = 1.19 +il[12247] = -159 +im[12247] = 0.0887 +ij[12247] = 12 +id[12248] = "2772-09-20T21:28:48" +ik[12248] = 3.33 +il[12248] = 137 +im[12248] = 0.0162 +ij[12248] = 28.1 +id[12249] = "2772-10-11T05:11:45" +ik[12249] = 0.11 +il[12249] = -161 +im[12249] = 0.0829 +ij[12249] = 28.7 +id[12250] = "2772-11-09T02:50:02" +ik[12250] = 3.996 +il[12250] = -73 +im[12250] = 0.0737 +ij[12250] = 27.4 +id[12251] = "2772-12-15T10:56:55" +ik[12251] = 1.327 +il[12251] = 38 +im[12251] = 0.0756 +ij[12251] = 28.5 +id[12252] = "2773-01-03T11:23:23" +ik[12252] = 0.366 +il[12252] = 96 +im[12252] = 0.0165 +ij[12252] = 27.3 +id[12253] = "2773-01-08T17:52:35" +ik[12253] = 53.576 +il[12253] = 113 +im[12253] = 0.0994 +ij[12253] = 9 +id[12254] = "2773-01-17T10:53:45" +ik[12254] = 0.242 +il[12254] = 140 +im[12254] = 0.0237 +ij[12254] = 28.6 +id[12255] = "2773-01-21T17:40:43" +ik[12255] = 0.961 +il[12255] = 153 +im[12255] = 0.0848 +ij[12255] = 27.5 +id[12256] = "2773-03-01T22:16:27" +ik[12256] = 2.377 +il[12256] = -84 +im[12256] = 0.0966 +ij[12256] = 28.8 +id[12257] = "2773-03-09T19:08:53" +ik[12257] = 0.58 +il[12257] = -60 +im[12257] = 0.1626 +ij[12257] = 27.6 +id[12258] = "2773-03-27T08:52:24" +ik[12258] = 90 +il[12258] = -5 +im[12258] = 0.21 +ij[12258] = 6 +id[12259] = "2773-05-04T08:53:36" +ik[12259] = 0.323 +il[12259] = 100 +im[12259] = 0.2057 +ij[12259] = 27.2 +id[12260] = "2773-05-12T07:49:14" +ik[12260] = 0 +il[12260] = 113 +im[12260] = 0.3177 +ij[12260] = 13 +id[12261] = "2773-05-23T01:41:09" +ik[12261] = 0.991 +il[12261] = 135 +im[12261] = 0.4654 +ij[12261] = 27.2 +id[12262] = "2773-06-04T06:56:09" +ik[12262] = 1.43 +il[12262] = 129 +im[12262] = 0.5221 +ij[12262] = 11 +id[12263] = "2773-06-04T13:56:53" +ik[12263] = 0.5235 +il[12263] = 140 +im[12263] = 0.5236 +ij[12263] = 2 +id[12264] = "2773-06-25T16:02:50" +ik[12264] = 44.34 +il[12264] = 164 +im[12264] = 0.0956 +ij[12264] = 7.1653 +id[12265] = "2773-07-29T14:04:30" +ik[12265] = 78.26 +il[12265] = -129 +im[12265] = 0.2505 +ij[12265] = 14 +id[12266] = "2773-08-13T08:24:06" +ik[12266] = 90 +il[12266] = -90 +im[12266] = 0.2003 +ij[12266] = 5 +id[12267] = "2773-10-24T16:23:42" +ik[12267] = 54.237 +il[12267] = 130 +im[12267] = 0.1069 +ij[12267] = 8 +id[12268] = "2773-11-27T02:10:27" +ik[12268] = 1.115 +il[12268] = -126 +im[12268] = 0.1079 +ij[12268] = 28.7 +id[12269] = "2774-01-01T20:55:22" +ik[12269] = 4.683 +il[12269] = -14 +im[12269] = 0.0311 +ij[12269] = 27.1 +id[12270] = "2774-01-05T12:06:28" +ik[12270] = 2.418 +il[12270] = -3 +im[12270] = 0.0437 +ij[12270] = 28.1 +id[12271] = "2774-02-16T16:04:43" +ik[12271] = 0.583 +il[12271] = 117 +im[12271] = 0.0235 +ij[12271] = 27.3 +id[12272] = "2774-03-25T23:15:21" +ik[12272] = 1.4 +il[12272] = -139 +im[12272] = 0.079 +ij[12272] = 12 +id[12273] = "2774-05-25T17:03:22" +ik[12273] = 4.387 +il[12273] = -137 +im[12273] = 0.089 +ij[12273] = 27.2 +id[12274] = "2774-06-02T12:30:14" +ik[12274] = 0.311 +il[12274] = -113 +im[12274] = 0.0118 +ij[12274] = 28.4 +id[12275] = "2774-06-12T06:17:42" +ik[12275] = 0.198 +il[12275] = -82 +im[12275] = 0.0889 +ij[12275] = 27.9 +id[12276] = "2774-08-12T15:41:04" +ik[12276] = 54.531 +il[12276] = 107 +im[12276] = 0.0917 +ij[12276] = 9 +id[12277] = "2774-09-22T09:23:11" +ik[12277] = 1.754 +il[12277] = -130 +im[12277] = 0.1546 +ij[12277] = 28.7 +id[12278] = "2774-10-17T10:28:15" +ik[12278] = 1.412 +il[12278] = -53 +im[12278] = 0.0642 +ij[12278] = 27.4 +id[12279] = "2774-10-27T20:35:36" +ik[12279] = 90 +il[12279] = -21 +im[12279] = 0.1389 +ij[12279] = 6 +id[12280] = "2774-12-17T14:04:57" +ik[12280] = 0 +il[12280] = 124 +im[12280] = 0.3639 +ij[12280] = 13 +id[12281] = "2775-01-08T02:13:55" +ik[12281] = 3.66 +il[12281] = 126 +im[12281] = 0.1032 +ij[12281] = 11 +id[12282] = "2775-01-15T17:16:53" +ik[12282] = 0.5484 +il[12282] = 145 +im[12282] = 0.5485 +ij[12282] = 2 +id[12283] = "2775-01-28T19:14:38" +ik[12283] = 42.22 +il[12283] = 161 +im[12283] = 0.4447 +ij[12283] = 7.1545 +id[12284] = "2775-03-01T11:07:20" +ik[12284] = 73.88 +il[12284] = -137 +im[12284] = 0.1966 +ij[12284] = 14 +id[12285] = "2775-03-20T17:18:22" +ik[12285] = 90 +il[12285] = -89 +im[12285] = 0.0213 +ij[12285] = 5 +id[12286] = "2775-03-27T00:24:43" +ik[12286] = 3.444 +il[12286] = -69 +im[12286] = 0.2012 +ij[12286] = 27.3 +id[12287] = "2775-04-16T01:11:23" +ik[12287] = 0.621 +il[12287] = -7 +im[12287] = 0.0954 +ij[12287] = 27.5 +id[12288] = "2775-04-24T15:49:06" +ik[12288] = 0.592 +il[12288] = 20 +im[12288] = 0.1509 +ij[12288] = 28.5 +id[12289] = "2775-04-30T03:27:47" +ik[12289] = 1.193 +il[12289] = 37 +im[12289] = 0.1116 +ij[12289] = 28.6 +id[12290] = "2775-05-27T13:15:18" +ik[12290] = 0.277 +il[12290] = 122 +im[12290] = 0.127 +ij[12290] = 28.8 +id[12291] = "2775-06-01T17:35:51" +ik[12291] = 4.07 +il[12291] = 137 +im[12291] = 0.0426 +ij[12291] = 27.6 +id[12292] = "2775-06-05T15:19:45" +ik[12292] = 54.289 +il[12292] = 149 +im[12292] = 0.0543 +ij[12292] = 8 +id[12293] = "2775-07-10T11:05:00" +ik[12293] = 5.839 +il[12293] = -105 +im[12293] = 0.0968 +ij[12293] = 27.2 +id[12294] = "2775-07-27T13:27:50" +ik[12294] = 0.047 +il[12294] = -53 +im[12294] = 0.0929 +ij[12294] = 27.91 +id[12295] = "2775-08-18T11:19:32" +ik[12295] = 2.815 +il[12295] = 14 +im[12295] = 0.0298 +ij[12295] = 28.1 +id[12296] = "2775-09-03T14:53:05" +ik[12296] = 0.414 +il[12296] = 64 +im[12296] = 0.0478 +ij[12296] = 28.1 +id[12297] = "2775-10-23T07:03:21" +ik[12297] = 1.15 +il[12297] = -164 +im[12297] = 0.0818 +ij[12297] = 12 +id[12298] = "2776-01-18T02:09:36" +ik[12298] = 0.046 +il[12298] = -82 +im[12298] = 0.0615 +ij[12298] = 27.3 +id[12299] = "2776-02-04T19:06:56" +ik[12299] = 0.987 +il[12299] = -28 +im[12299] = 0.0906 +ij[12299] = 27.5 +id[12300] = "2776-03-03T13:54:28" +ik[12300] = 1.581 +il[12300] = 59 +im[12300] = 0.0636 +ij[12300] = 28.6 +id[12301] = "2776-03-14T18:47:48" +ik[12301] = 1.025 +il[12301] = 94 +im[12301] = 0.0041 +ij[12301] = 28.5 +id[12302] = "2776-03-18T12:16:12" +ik[12302] = 1.612 +il[12302] = 106 +im[12302] = 0.086 +ij[12302] = 28.8 +id[12303] = "2776-03-20T04:53:51" +ik[12303] = 2.01 +il[12303] = 111 +im[12303] = 0.1108 +ij[12303] = 27.6 +id[12304] = "2776-03-24T19:32:13" +ik[12304] = 54.064 +il[12304] = 126 +im[12304] = 0.1132 +ij[12304] = 9 +id[12305] = "2776-04-28T02:47:49" +ik[12305] = 2.616 +il[12305] = -127 +im[12305] = 0.0477 +ij[12305] = 27.2 +id[12306] = "2776-06-03T20:34:43" +ik[12306] = 90 +il[12306] = -14 +im[12306] = 0.1904 +ij[12306] = 6 +id[12307] = "2776-07-12T06:43:29" +ik[12307] = 6.093 +il[12307] = 93 +im[12307] = 0.0847 +ij[12307] = 28.4 +id[12308] = "2776-07-21T11:07:47" +ik[12308] = 0 +il[12308] = 110 +im[12308] = 0.3327 +ij[12308] = 13 +id[12309] = "2776-08-12T10:43:40" +ik[12309] = 7.16 +il[12309] = 122 +im[12309] = 0.483 +ij[12309] = 11 +id[12310] = "2776-08-14T05:04:18" +ik[12310] = 0.5256 +il[12310] = 136 +im[12310] = 0.5257 +ij[12310] = 2 +id[12311] = "2776-08-24T02:51:47" +ik[12311] = 0.926 +il[12311] = 145 +im[12311] = 0.34 +ij[12311] = 27.8 +id[12312] = "2776-09-03T10:10:22" +ik[12312] = 43.96 +il[12312] = 158 +im[12312] = 0.0767 +ij[12312] = 7.1657 +id[12313] = "2776-10-07T00:02:06" +ik[12313] = 77.54 +il[12313] = -136 +im[12313] = 0.2505 +ij[12313] = 14 +id[12314] = "2776-10-09T22:42:40" +ik[12314] = 2.96 +il[12314] = -129 +im[12314] = 0.2477 +ij[12314] = 28.4 +id[12315] = "2776-10-22T01:23:58" +ik[12315] = 90 +il[12315] = -97 +im[12315] = 0.2014 +ij[12315] = 5 +id[12316] = "2776-12-18T23:58:52" +ik[12316] = 1.805 +il[12316] = 81 +im[12316] = 0.1139 +ij[12316] = 28.7 +id[12317] = "2777-01-05T10:56:40" +ik[12317] = 53.787 +il[12317] = 135 +im[12317] = 0.1158 +ij[12317] = 8 +id[12318] = "2777-01-15T11:49:35" +ik[12318] = 3.95 +il[12318] = 167 +im[12318] = 0.0548 +ij[12318] = 27.1 +id[12319] = "2777-03-03T01:47:22" +ik[12319] = 0.993 +il[12319] = -48 +im[12319] = 0.0573 +ij[12319] = 27.3 +id[12320] = "2777-03-07T11:26:44" +ik[12320] = 2.398 +il[12320] = -34 +im[12320] = 0.0919 +ij[12320] = 28.1 +id[12321] = "2777-03-20T16:55:49" +ik[12321] = 0.604 +il[12321] = 6 +im[12321] = 0.0904 +ij[12321] = 27.5 +id[12322] = "2777-04-20T07:25:14" +ik[12322] = 1.854 +il[12322] = 100 +im[12322] = 0.0851 +ij[12322] = 28.1 +id[12323] = "2777-04-25T05:00:05" +ik[12323] = 1.102 +il[12323] = 115 +im[12323] = 0.0677 +ij[12323] = 28.6 +id[12324] = "2777-05-02T14:47:36" +ik[12324] = 0.375 +il[12324] = 127 +im[12324] = 0.0613 +ij[12324] = 28.8 +id[12325] = "2777-05-03T12:51:49" +ik[12325] = 3.38 +il[12325] = 130 +im[12325] = 0.0724 +ij[12325] = 27.6 +id[12326] = "2777-06-05T05:58:33" +ik[12326] = 0.21 +il[12326] = -142 +im[12326] = 0.0877 +ij[12326] = 12 +id[12327] = "2777-10-13T20:16:39" +ik[12327] = 0.987 +il[12327] = 76 +im[12327] = 0.0567 +ij[12327] = 28.7 +id[12328] = "2777-10-22T13:50:55" +ik[12328] = 53.93 +il[12328] = 103 +im[12328] = 0.0912 +ij[12328] = 9 +id[12329] = "2777-10-26T11:38:02" +ik[12329] = 3.139 +il[12329] = 115 +im[12329] = 0.0161 +ij[12329] = 27.4 +id[12330] = "2777-12-23T19:22:02" +ik[12330] = 0.671 +il[12330] = -66 +im[12330] = 0.0894 +ij[12330] = 27.3 +id[12331] = "2778-01-11T10:20:52" +ik[12331] = 90 +il[12331] = -8 +im[12331] = 0.1093 +ij[12331] = 6 +id[12332] = "2778-01-14T04:59:22" +ik[12332] = 0.125 +il[12332] = 0 +im[12332] = 0.2057 +ij[12332] = 27.5 +id[12333] = "2778-03-01T00:02:33" +ik[12333] = 0 +il[12333] = 129 +im[12333] = 0.4207 +ij[12333] = 13 +id[12334] = "2778-03-14T15:26:07" +ik[12334] = 0.5357 +il[12334] = 116 +im[12334] = 0.5358 +ij[12334] = 2 +id[12335] = "2778-03-23T02:45:36" +ik[12335] = 8.74 +il[12335] = 141 +im[12335] = 0.2515 +ij[12335] = 11 +id[12336] = "2778-04-13T00:08:08" +ik[12336] = 43 +il[12336] = -170 +im[12336] = 0.3559 +ij[12336] = 7.1606 +id[12337] = "2778-05-15T15:22:54" +ik[12337] = 75.64 +il[12337] = -127 +im[12337] = 0.0033 +ij[12337] = 14 +id[12338] = "2778-06-02T00:37:05" +ik[12338] = 90 +il[12338] = -82 +im[12338] = 0.1458 +ij[12338] = 5 +id[12339] = "2778-06-10T20:05:50" +ik[12339] = 4.42 +il[12339] = -55 +im[12339] = 0.1216 +ij[12339] = 27.6 +id[12340] = "2778-06-11T03:37:52" +ik[12340] = 0.289 +il[12340] = -54 +im[12340] = 0.1107 +ij[12340] = 28.6 +id[12341] = "2778-06-11T05:00:23" +ik[12341] = 0.614 +il[12341] = -54 +im[12341] = 0.1086 +ij[12341] = 28.8 +id[12342] = "2778-07-23T17:39:50" +ik[12342] = 1.234 +il[12342] = 77 +im[12342] = 0.1025 +ij[12342] = 28.5 +id[12343] = "2778-08-13T18:53:09" +ik[12343] = 54.516 +il[12343] = 141 +im[12343] = 0.043 +ij[12343] = 8 +id[12344] = "2778-11-19T01:21:21" +ik[12344] = 0.2 +il[12344] = 80 +im[12344] = 0.0912 +ij[12344] = 28.4 +id[12345] = "2778-11-29T03:01:26" +ik[12345] = 0.583 +il[12345] = 112 +im[12345] = 0.0577 +ij[12345] = 28.7 +id[12346] = "2779-01-05T07:50:52" +ik[12346] = 0.5 +il[12346] = -154 +im[12346] = 0.0686 +ij[12346] = 12 +id[12347] = "2779-02-19T02:09:09" +ik[12347] = 0.913 +il[12347] = 156 +im[12347] = 0.0751 +ij[12347] = 27.5 +id[12348] = "2779-04-03T20:11:46" +ik[12348] = 2.63 +il[12348] = -68 +im[12348] = 0.0979 +ij[12348] = 27.6 +id[12349] = "2779-04-07T00:51:59" +ik[12349] = 1.262 +il[12349] = -58 +im[12349] = 0.0695 +ij[12349] = 28.8 +id[12350] = "2779-04-17T09:57:36" +ik[12350] = 2.266 +il[12350] = -26 +im[12350] = 0.0944 +ij[12350] = 28.6 +id[12351] = "2779-05-11T03:46:28" +ik[12351] = 3.706 +il[12351] = 49 +im[12351] = 0.0152 +ij[12351] = 27.2 +id[12352] = "2779-06-03T15:37:37" +ik[12352] = 54.602 +il[12352] = 122 +im[12352] = 0.1141 +ij[12352] = 9 +id[12353] = "2779-06-15T00:06:28" +ik[12353] = 1.512 +il[12353] = 157 +im[12353] = 0.1195 +ij[12353] = 28.5 +id[12354] = "2779-08-12T23:57:17" +ik[12354] = 90 +il[12354] = -23 +im[12354] = 0.1943 +ij[12354] = 6 +id[12355] = "2779-10-01T15:23:21" +ik[12355] = 0 +il[12355] = 118 +im[12355] = 0.2451 +ij[12355] = 13 +id[12356] = "2779-10-24T07:26:24" +ik[12356] = 7.17 +il[12356] = 121 +im[12356] = 0.5122 +ij[12356] = 11 +id[12357] = "2779-11-06T08:07:49" +ik[12357] = 0.5159 +il[12357] = 146 +im[12357] = 0.516 +ij[12357] = 2 +id[12358] = "2779-11-14T14:25:56" +ik[12358] = 43.96 +il[12358] = 157 +im[12358] = 0.0901 +ij[12358] = 7.158 +id[12359] = "2779-12-15T23:20:42" +ik[12359] = 75.33 +il[12359] = -141 +im[12359] = 0.198 +ij[12359] = 14 +id[12360] = "2780-01-02T22:16:27" +ik[12360] = 90 +il[12360] = -97 +im[12360] = 0.231 +ij[12360] = 5 +id[12361] = "2780-01-07T17:05:05" +ik[12361] = 2.95 +il[12361] = -82 +im[12361] = 0.1245 +ij[12361] = 28.7 +id[12362] = "2780-01-27T05:23:48" +ik[12362] = 2.653 +il[12362] = -21 +im[12362] = 0.0904 +ij[12362] = 27.1 +id[12363] = "2780-03-16T11:13:09" +ik[12363] = 1.657 +il[12363] = 132 +im[12363] = 0.1189 +ij[12363] = 27.3 +id[12364] = "2780-03-21T17:27:52" +ik[12364] = 53.816 +il[12364] = 149 +im[12364] = 0.0713 +ij[12364] = 8 +id[12365] = "2780-04-03T12:05:09" +ik[12365] = 0.272 +il[12365] = -172 +im[12365] = 0.1063 +ij[12365] = 27.5 +id[12366] = "2780-05-13T20:10:53" +ik[12366] = 0.811 +il[12366] = -48 +im[12366] = 0.0855 +ij[12366] = 28.1 +id[12367] = "2780-05-17T23:24:45" +ik[12367] = 3.7 +il[12367] = -35 +im[12367] = 0.096 +ij[12367] = 27.6 +id[12368] = "2780-05-22T02:25:43" +ik[12368] = 0.182 +il[12368] = -22 +im[12368] = 0.0477 +ij[12368] = 28.8 +id[12369] = "2780-06-08T03:17:16" +ik[12369] = 1.002 +il[12369] = 29 +im[12369] = 0.0076 +ij[12369] = 28.6 +id[12370] = "2780-06-24T16:14:20" +ik[12370] = 5.215 +il[12370] = 80 +im[12370] = 0.0177 +ij[12370] = 27.2 +id[12371] = "2780-08-11T10:20:38" +ik[12371] = 1.16 +il[12371] = -156 +im[12371] = 0.062 +ij[12371] = 12 +id[12372] = "2780-11-06T04:08:41" +ik[12372] = 0.552 +il[12372] = -72 +im[12372] = 0.0102 +ij[12372] = 28.7 +id[12373] = "2780-11-08T16:32:15" +ik[12373] = 3.981 +il[12373] = -65 +im[12373] = 0.044 +ij[12373] = 27.4 +id[12374] = "2780-12-08T02:55:40" +ik[12374] = 0.263 +il[12374] = 25 +im[12374] = 0.0359 +ij[12374] = 28.4 +id[12375] = "2781-01-03T02:08:42" +ik[12375] = 0.371 +il[12375] = 105 +im[12375] = 0.0591 +ij[12375] = 27.3 +id[12376] = "2781-01-06T04:25:39" +ik[12376] = 53.573 +il[12376] = 115 +im[12376] = 0.0191 +ij[12376] = 9 +id[12377] = "2781-01-21T09:14:55" +ik[12377] = 0.951 +il[12377] = 162 +im[12377] = 0.0315 +ij[12377] = 27.5 +id[12378] = "2781-03-09T15:18:38" +ik[12378] = 0.49 +il[12378] = -50 +im[12378] = 0.1362 +ij[12378] = 27.6 +id[12379] = "2781-03-17T17:17:13" +ik[12379] = 3.977 +il[12379] = -25 +im[12379] = 0.1385 +ij[12379] = 28.8 +id[12380] = "2781-03-25T00:53:54" +ik[12380] = 90 +il[12380] = -2 +im[12380] = 0.1427 +ij[12380] = 6 +id[12381] = "2781-05-09T23:21:09" +ik[12381] = 0 +il[12381] = 128 +im[12381] = 0.4313 +ij[12381] = 13 +id[12382] = "2781-05-11T21:47:13" +ik[12382] = 0.747 +il[12382] = 99 +im[12382] = 0.4215 +ij[12382] = 27.2 +id[12383] = "2781-06-01T05:30:28" +ik[12383] = 4.118 +il[12383] = 121 +im[12383] = 0.2608 +ij[12383] = 28.6 +id[12384] = "2781-06-01T23:47:02" +ik[12384] = 1.76 +il[12384] = 132 +im[12384] = 0.3389 +ij[12384] = 11 +id[12385] = "2781-06-05T16:44:03" +ik[12385] = 0.5288 +il[12385] = 147 +im[12385] = 0.5288 +ij[12385] = 2 +id[12386] = "2781-06-23T07:41:52" +ik[12386] = 44.35 +il[12386] = 167 +im[12386] = 0.2334 +ij[12386] = 7.1651 +id[12387] = "2781-07-14T12:50:15" +ik[12387] = 2.129 +il[12387] = -154 +im[12387] = 0.2329 +ij[12387] = 28.6 +id[12388] = "2781-07-27T05:23:35" +ik[12388] = 78.25 +il[12388] = -126 +im[12388] = 0.1596 +ij[12388] = 14 +id[12389] = "2781-08-11T01:08:03" +ik[12389] = 90 +il[12389] = -87 +im[12389] = 0.1076 +ij[12389] = 5 +id[12390] = "2781-10-22T07:44:47" +ik[12390] = 54.253 +il[12390] = 133 +im[12390] = 0.0279 +ij[12390] = 8 +id[12391] = "2781-10-31T22:40:30" +ik[12391] = 0.032 +il[12391] = 163 +im[12391] = 0.1025 +ij[12391] = 28.5 +id[12392] = "2781-12-23T01:35:19" +ik[12392] = 0.936 +il[12392] = -35 +im[12392] = 0.0385 +ij[12392] = 28.7 +id[12393] = "2782-01-01T10:21:08" +ik[12393] = 4.701 +il[12393] = -6 +im[12393] = 0.0617 +ij[12393] = 27.1 +id[12394] = "2782-03-23T10:48:00" +ik[12394] = 1.42 +il[12394] = -137 +im[12394] = 0.0323 +ij[12394] = 12 +id[12395] = "2782-04-26T17:06:25" +ik[12395] = 1.062 +il[12395] = 151 +im[12395] = 0.0845 +ij[12395] = 28.8 +id[12396] = "2782-05-25T06:15:48" +ik[12396] = 4.374 +il[12396] = -129 +im[12396] = 0.0789 +ij[12396] = 27.2 +id[12397] = "2782-05-30T04:27:50" +ik[12397] = 1.944 +il[12397] = -113 +im[12397] = 0.0851 +ij[12397] = 28.6 +id[12398] = "2782-06-11T19:29:34" +ik[12398] = 0.217 +il[12398] = -74 +im[12398] = 0.0894 +ij[12398] = 27.9 +id[12399] = "2782-06-24T03:33:59" +ik[12399] = 0.137 +il[12399] = -35 +im[12399] = 0.0842 +ij[12399] = 28.1 +id[12400] = "2782-08-10T08:59:28" +ik[12400] = 54.544 +il[12400] = 110 +im[12400] = 0.1101 +ij[12400] = 9 +id[12401] = "2782-09-28T06:46:13" +ik[12401] = 2.669 +il[12401] = -102 +im[12401] = 0.1399 +ij[12401] = 28.5 +id[12402] = "2782-10-17T09:10:28" +ik[12402] = 1.32 +il[12402] = -44 +im[12402] = 0.025 +ij[12402] = 27.4 +id[12403] = "2782-10-22T16:08:58" +ik[12403] = 3.408 +il[12403] = -27 +im[12403] = 0.1745 +ij[12403] = 28.7 +id[12404] = "2782-10-25T08:18:49" +ik[12404] = 90 +il[12404] = -19 +im[12404] = 0.2118 +ij[12404] = 6 +id[12405] = "2782-12-16T05:24:02" +ik[12405] = 0 +il[12405] = 129 +im[12405] = 0.1446 +ij[12405] = 13 +id[12406] = "2783-01-03T05:00:02" +ik[12406] = 0.5676 +il[12406] = 116 +im[12406] = 0.5677 +ij[12406] = 2 +id[12407] = "2783-01-05T15:08:38" +ik[12407] = 3.29 +il[12407] = 128 +im[12407] = 0.4808 +ij[12407] = 11 +id[12408] = "2783-01-26T07:06:41" +ik[12408] = 41.07 +il[12408] = 163 +im[12408] = 0.3088 +ij[12408] = 7.1547 +id[12409] = "2783-02-26T23:54:25" +ik[12409] = 72.77 +il[12409] = -135 +im[12409] = 0.2781 +ij[12409] = 14 +id[12410] = "2783-03-16T13:01:46" +ik[12410] = 3.543 +il[12410] = -91 +im[12410] = 0.1941 +ij[12410] = 28.4 +id[12411] = "2783-03-18T05:29:53" +ik[12411] = 90 +il[12411] = -87 +im[12411] = 0.1434 +ij[12411] = 5 +id[12412] = "2783-03-26T22:42:02" +ik[12412] = 3.336 +il[12412] = -60 +im[12412] = 0.1856 +ij[12412] = 27.3 +id[12413] = "2783-04-15T19:38:28" +ik[12413] = 0.569 +il[12413] = 2 +im[12413] = 0.1285 +ij[12413] = 27.5 +id[12414] = "2783-06-01T08:38:35" +ik[12414] = 4.06 +il[12414] = 146 +im[12414] = 0.0846 +ij[12414] = 27.6 +id[12415] = "2783-06-03T07:09:16" +ik[12415] = 54.274 +il[12415] = 152 +im[12415] = 0.0423 +ij[12415] = 8 +id[12416] = "2783-06-10T20:51:12" +ik[12416] = 0.161 +il[12416] = 175 +im[12416] = 0.1063 +ij[12416] = 28.8 +id[12417] = "2783-07-10T00:49:00" +ik[12417] = 5.816 +il[12417] = -96 +im[12417] = 0.0914 +ij[12417] = 27.2 +id[12418] = "2783-07-21T18:40:36" +ik[12418] = 0.353 +il[12418] = -60 +im[12418] = 0.0442 +ij[12418] = 28.6 +id[12419] = "2783-07-27T02:51:21" +ik[12419] = 0.025 +il[12419] = -44 +im[12419] = 0.0966 +ij[12419] = 27.91 +id[12420] = "2783-08-02T00:26:03" +ik[12420] = 2.989 +il[12420] = -26 +im[12420] = 0.0335 +ij[12420] = 28.1 +id[12421] = "2783-10-20T21:44:38" +ik[12421] = 1.19 +il[12421] = -161 +im[12421] = 0.0444 +ij[12421] = 12 +id[12422] = "2783-11-23T23:29:08" +ik[12422] = 4.57 +il[12422] = 131 +im[12422] = 0.0846 +ij[12422] = 27.4 +id[12423] = "2783-12-01T06:07:37" +ik[12423] = 0.223 +il[12423] = 142 +im[12423] = 0.0119 +ij[12423] = 28.7 +id[12424] = "2783-12-04T11:51:56" +ik[12424] = 0.784 +il[12424] = 152 +im[12424] = 0.043 +ij[12424] = 28.5 +id[12425] = "2784-01-17T15:41:08" +ik[12425] = 0.048 +il[12425] = -74 +im[12425] = 0.0289 +ij[12425] = 27.3 +id[12426] = "2784-02-04T08:51:48" +ik[12426] = 0.985 +il[12426] = -19 +im[12426] = 0.0637 +ij[12426] = 27.5 +id[12427] = "2784-03-19T19:39:31" +ik[12427] = 1.98 +il[12427] = 120 +im[12427] = 0.0821 +ij[12427] = 27.6 +id[12428] = "2784-03-22T09:24:24" +ik[12428] = 54.041 +il[12428] = 128 +im[12428] = 0.1188 +ij[12428] = 9 +id[12429] = "2784-04-01T08:49:55" +ik[12429] = 2.515 +il[12429] = 159 +im[12429] = 0.0071 +ij[12429] = 28.8 +id[12430] = "2784-04-27T20:03:48" +ik[12430] = 2.571 +il[12430] = -118 +im[12430] = 0.0973 +ij[12430] = 27.2 +id[12431] = "2784-05-26T03:53:16" +ik[12431] = 3.321 +il[12431] = -31 +im[12431] = 0.1609 +ij[12431] = 28.6 +id[12432] = "2784-06-01T14:25:01" +ik[12432] = 90 +il[12432] = -11 +im[12432] = 0.0919 +ij[12432] = 6 +id[12433] = "2784-07-18T23:54:52" +ik[12433] = 0 +il[12433] = 123 +im[12433] = 0.3986 +ij[12433] = 13 +id[12434] = "2784-08-10T02:42:43" +ik[12434] = 6.97 +il[12434] = 125 +im[12434] = 0.2069 +ij[12434] = 11 +id[12435] = "2784-08-15T06:40:40" +ik[12435] = 0.5103 +il[12435] = 141 +im[12435] = 0.5104 +ij[12435] = 2 +id[12436] = "2784-08-16T20:25:43" +ik[12436] = 0.749 +il[12436] = 143 +im[12436] = 0.4767 +ij[12436] = 27.8 +id[12437] = "2784-09-01T03:03:27" +ik[12437] = 44.13 +il[12437] = 161 +im[12437] = 0.2556 +ij[12437] = 7.1658 +id[12438] = "2784-10-04T17:23:14" +ik[12438] = 77.73 +il[12438] = -133 +im[12438] = 0.1151 +ij[12438] = 14 +id[12439] = "2784-10-19T17:03:21" +ik[12439] = 90 +il[12439] = -95 +im[12439] = 0.1061 +ij[12439] = 5 +id[12440] = "2785-01-02T23:16:25" +ik[12440] = 53.797 +il[12440] = 138 +im[12440] = 0.0594 +ij[12440] = 8 +id[12441] = "2785-01-15T02:18:54" +ik[12441] = 3.977 +il[12441] = 175 +im[12441] = 0.0125 +ij[12441] = 27.1 +id[12442] = "2785-01-15T14:27:18" +ik[12442] = 1.449 +il[12442] = 177 +im[12442] = 0.0234 +ij[12442] = 28.7 +id[12443] = "2785-02-10T00:32:06" +ik[12443] = 0.425 +il[12443] = -104 +im[12443] = 0.0713 +ij[12443] = 28.5 +id[12444] = "2785-02-20T22:59:57" +ik[12444] = 1.593 +il[12444] = -70 +im[12444] = 0.1013 +ij[12444] = 28.1 +id[12445] = "2785-03-02T15:26:01" +ik[12445] = 0.981 +il[12445] = -39 +im[12445] = 0.022 +ij[12445] = 27.3 +id[12446] = "2785-03-09T16:05:31" +ik[12446] = 2.795 +il[12446] = -18 +im[12446] = 0.0904 +ij[12446] = 28.1 +id[12447] = "2785-03-20T06:19:21" +ik[12447] = 0.61 +il[12447] = 15 +im[12447] = 0.0658 +ij[12447] = 27.5 +id[12448] = "2785-03-24T21:54:00" +ik[12448] = 0.751 +il[12448] = 29 +im[12448] = 0.0924 +ij[12448] = 28.4 +id[12449] = "2785-06-02T23:36:57" +ik[12449] = 0.26 +il[12449] = -139 +im[12449] = 0.0594 +ij[12449] = 12 +id[12450] = "2785-07-11T10:40:36" +ik[12450] = 1.005 +il[12450] = 160 +im[12450] = 0.0653 +ij[12450] = 28.6 +id[12451] = "2785-08-10T11:42:51" +ik[12451] = 1.144 +il[12451] = -110 +im[12451] = 0.0681 +ij[12451] = 28.1 +id[12452] = "2785-09-08T12:55:26" +ik[12452] = 5.162 +il[12452] = -21 +im[12452] = 0.0844 +ij[12452] = 28.1 +id[12453] = "2785-10-20T03:07:33" +ik[12453] = 53.953 +il[12453] = 105 +im[12453] = 0.1241 +ij[12453] = 9 +id[12454] = "2785-10-26T02:52:14" +ik[12454] = 3.109 +il[12454] = 123 +im[12454] = 0.0628 +ij[12454] = 27.4 +id[12455] = "2785-11-10T13:54:02" +ik[12455] = 1.851 +il[12455] = 171 +im[12455] = 0.0356 +ij[12455] = 28.7 +id[12456] = "2785-12-23T15:57:08" +ik[12456] = 0.665 +il[12456] = -56 +im[12456] = 0.1413 +ij[12456] = 27.3 +id[12457] = "2786-01-06T13:05:48" +ik[12457] = 0.424 +il[12457] = -13 +im[12457] = 0.1621 +ij[12457] = 28.5 +id[12458] = "2786-01-08T22:20:53" +ik[12458] = 90 +il[12458] = -5 +im[12458] = 0.0799 +ij[12458] = 6 +id[12459] = "2786-01-14T09:16:15" +ik[12459] = 0.021 +il[12459] = 10 +im[12459] = 0.1611 +ij[12459] = 27.5 +id[12460] = "2786-02-26T17:23:41" +ik[12460] = 0 +il[12460] = 132 +im[12460] = 0.315 +ij[12460] = 13 +id[12461] = "2786-03-15T21:23:17" +ik[12461] = 0.5389 +il[12461] = 122 +im[12461] = 0.5389 +ij[12461] = 2 +id[12462] = "2786-03-20T16:10:33" +ik[12462] = 8.8 +il[12462] = 136 +im[12462] = 0.2319 +ij[12462] = 11 +id[12463] = "2786-04-10T16:26:16" +ik[12463] = 42.96 +il[12463] = 171 +im[12463] = 0.4483 +ij[12463] = 7.1604 +id[12464] = "2786-05-13T03:57:00" +ik[12464] = 75.44 +il[12464] = -125 +im[12464] = 0.198 +ij[12464] = 14 +id[12465] = "2786-05-30T15:26:56" +ik[12465] = 90 +il[12465] = -79 +im[12465] = 0.0156 +ij[12465] = 5 +id[12466] = "2786-06-10T18:25:33" +ik[12466] = 4.42 +il[12466] = -45 +im[12466] = 0.1561 +ij[12466] = 27.6 +id[12467] = "2786-06-27T08:41:51" +ik[12467] = 0.813 +il[12467] = 6 +im[12467] = 0.0782 +ij[12467] = 28.8 +id[12468] = "2786-08-11T12:00:54" +ik[12468] = 54.517 +il[12468] = 143 +im[12468] = 0.0497 +ij[12468] = 8 +id[12469] = "2786-09-01T19:03:38" +ik[12469] = 0.473 +il[12469] = -152 +im[12469] = 0.0724 +ij[12469] = 28.6 +id[12470] = "2787-01-02T18:50:24" +ik[12470] = 0.44 +il[12470] = -152 +im[12470] = 0.0873 +ij[12470] = 12 +id[12471] = "2787-02-18T15:22:28" +ik[12471] = 0.913 +il[12471] = 164 +im[12471] = 0.0846 +ij[12471] = 27.5 +id[12472] = "2787-03-06T23:04:33" +ik[12472] = 0.074 +il[12472] = -145 +im[12472] = 0.0903 +ij[12472] = 28.5 +id[12473] = "2787-03-31T00:54:17" +ik[12473] = 5.365 +il[12473] = -70 +im[12473] = 0.0594 +ij[12473] = 28.1 +id[12474] = "2787-03-31T09:07:20" +ik[12474] = 0.628 +il[12474] = -69 +im[12474] = 0.0644 +ij[12474] = 28.4 +id[12475] = "2787-04-03T09:41:29" +ik[12475] = 2.62 +il[12475] = -59 +im[12475] = 0.0947 +ij[12475] = 27.6 +id[12476] = "2787-04-20T17:01:23" +ik[12476] = 1.924 +il[12476] = -5 +im[12476] = 0.0949 +ij[12476] = 28.8 +id[12477] = "2787-05-10T17:51:21" +ik[12477] = 3.685 +il[12477] = 58 +im[12477] = 0.0312 +ij[12477] = 27.2 +id[12478] = "2787-06-01T09:28:02" +ik[12478] = 54.591 +il[12478] = 125 +im[12478] = 0.0982 +ij[12478] = 9 +id[12479] = "2787-07-05T03:41:19" +ik[12479] = 0.803 +il[12479] = -131 +im[12479] = 0.1333 +ij[12479] = 28.6 +id[12480] = "2787-08-10T15:18:59" +ik[12480] = 90 +il[12480] = -20 +im[12480] = 0.0626 +ij[12480] = 6 +id[12481] = "2787-09-29T03:57:27" +ik[12481] = 0 +il[12481] = 121 +im[12481] = 0.4083 +ij[12481] = 13 +id[12482] = "2787-10-12T18:14:54" +ik[12482] = 0.5289 +il[12482] = 151 +im[12482] = 0.5289 +ij[12482] = 2 +id[12483] = "2787-10-21T21:07:12" +ik[12483] = 7.37 +il[12483] = 123 +im[12483] = 0.3054 +ij[12483] = 11 +id[12484] = "2787-11-11T12:46:13" +ik[12484] = 43.37 +il[12484] = 158 +im[12484] = 0.3349 +ij[12484] = 7.1583 +id[12485] = "2787-12-13T14:49:59" +ik[12485] = 75.45 +il[12485] = -139 +im[12485] = 0.0218 +ij[12485] = 14 +id[12486] = "2787-12-31T11:41:23" +ik[12486] = 90 +il[12486] = -95 +im[12486] = 0.1668 +ij[12486] = 5 +id[12487] = "2788-01-27T00:28:14" +ik[12487] = 2.714 +il[12487] = -12 +im[12487] = 0.0346 +ij[12487] = 27.1 +id[12488] = "2788-02-07T16:06:57" +ik[12488] = 2.353 +il[12488] = 24 +im[12488] = 0.1004 +ij[12488] = 28.7 +id[12489] = "2788-03-16T02:16:14" +ik[12489] = 1.631 +il[12489] = 141 +im[12489] = 0.1024 +ij[12489] = 27.3 +id[12490] = "2788-03-19T05:36:56" +ik[12490] = 53.805 +il[12490] = 151 +im[12490] = 0.1215 +ij[12490] = 8 +id[12491] = "2788-04-03T02:28:41" +ik[12491] = 0.286 +il[12491] = -163 +im[12491] = 0.1085 +ij[12491] = 27.5 +id[12492] = "2788-04-25T14:46:10" +ik[12492] = 1.053 +il[12492] = -93 +im[12492] = 0.0125 +ij[12492] = 28.1 +id[12493] = "2788-05-10T14:10:10" +ik[12493] = 0.107 +il[12493] = -48 +im[12493] = 0.0081 +ij[12493] = 28.5 +id[12494] = "2788-05-17T13:00:29" +ik[12494] = 3.69 +il[12494] = -26 +im[12494] = 0.0988 +ij[12494] = 27.6 +id[12495] = "2788-06-04T20:39:07" +ik[12495] = 0.513 +il[12495] = 29 +im[12495] = 0.0731 +ij[12495] = 28.8 +id[12496] = "2788-06-24T05:17:53" +ik[12496] = 5.197 +il[12496] = 88 +im[12496] = 0.0221 +ij[12496] = 27.2 +id[12497] = "2788-08-09T04:24:57" +ik[12497] = 1.13 +il[12497] = -143 +im[12497] = 0.0028 +ij[12497] = 12 +id[12498] = "2788-10-12T07:51:36" +ik[12498] = 6.03 +il[12498] = -138 +im[12498] = 0.0599 +ij[12498] = 28.1 +id[12499] = "2788-11-08T06:11:20" +ik[12499] = 3.965 +il[12499] = -56 +im[12499] = 0.0098 +ij[12499] = 27.4 +id[12500] = "2788-11-09T10:25:06" +ik[12500] = 3.804 +il[12500] = -52 +im[12500] = 0.0312 +ij[12500] = 28.1 +id[12501] = "2788-12-03T14:05:34" +ik[12501] = 1.146 +il[12501] = 21 +im[12501] = 0.0861 +ij[12501] = 28.7 +id[12502] = "2789-01-02T16:57:34" +ik[12502] = 0.377 +il[12502] = 114 +im[12502] = 0.0938 +ij[12502] = 27.3 +id[12503] = "2789-01-03T14:58:44" +ik[12503] = 53.571 +il[12503] = 117 +im[12503] = 0.0772 +ij[12503] = 9 +id[12504] = "2789-01-21T00:56:14" +ik[12504] = 0.941 +il[12504] = 171 +im[12504] = 0.0269 +ij[12504] = 27.5 +id[12505] = "2789-03-09T12:00:24" +ik[12505] = 0.4 +il[12505] = -41 +im[12505] = 0.0881 +ij[12505] = 27.6 +id[12506] = "2789-03-22T16:47:26" +ik[12506] = 90 +il[12506] = 1 +im[12506] = 0.0208 +ij[12506] = 6 +id[12507] = "2789-04-04T19:05:48" +ik[12507] = 5.685 +il[12507] = 33 +im[12507] = 0.0531 +ij[12507] = 28.8 +id[12508] = "2789-04-07T15:36:51" +ik[12508] = 4.885 +il[12508] = 39 +im[12508] = 0.1047 +ij[12508] = 28.5 +id[12509] = "2789-04-23T14:34:48" +ik[12509] = 3.444 +il[12509] = 77 +im[12509] = 0.1663 +ij[12509] = 28.4 +id[12510] = "2789-05-07T14:50:26" +ik[12510] = 0 +il[12510] = 109 +im[12510] = 0.2788 +ij[12510] = 13 +id[12511] = "2789-05-09T07:31:39" +ik[12511] = 2.994 +il[12511] = 101 +im[12511] = 0.3879 +ij[12511] = 27.2 +id[12512] = "2789-05-30T16:37:55" +ik[12512] = 2.08 +il[12512] = 135 +im[12512] = 0.0621 +ij[12512] = 11 +id[12513] = "2789-06-06T21:46:10" +ik[12513] = 0.5232 +il[12513] = 153 +im[12513] = 0.5233 +ij[12513] = 2 +id[12514] = "2789-06-08T04:01:55" +ik[12514] = 1.849 +il[12514] = 154 +im[12514] = 0.5025 +ij[12514] = 28.4 +id[12515] = "2789-06-18T02:10:36" +ik[12515] = 5.579 +il[12515] = -170 +im[12515] = 0.353 +ij[12515] = 28.5 +id[12516] = "2789-06-19T13:04:39" +ik[12516] = 2.308 +il[12516] = -170 +im[12516] = 0.4007 +ij[12516] = 28.8 +id[12517] = "2789-06-20T23:02:03" +ik[12517] = 44.34 +il[12517] = -170 +im[12517] = 0.3977 +ij[12517] = 7.1649 +id[12518] = "2789-07-24T20:29:51" +ik[12518] = 78.24 +il[12518] = -123 +im[12518] = 0.0492 +ij[12518] = 14 +id[12519] = "2789-08-08T17:51:07" +ik[12519] = 90 +il[12519] = -84 +im[12519] = 0.0673 +ij[12519] = 5 +id[12520] = "2789-10-13T20:01:02" +ik[12520] = 1.012 +il[12520] = 117 +im[12520] = 0.1142 +ij[12520] = 28.6 +id[12521] = "2789-10-19T23:12:59" +ik[12521] = 54.268 +il[12521] = 136 +im[12521] = 0.0673 +ij[12521] = 8 +id[12522] = "2789-12-31T23:46:27" +ik[12522] = 4.719 +il[12522] = 0 +im[12522] = 0.0817 +ij[12522] = 27.1 +id[12523] = "2790-01-19T06:04:19" +ik[12523] = 0.335 +il[12523] = 60 +im[12523] = 0.0513 +ij[12523] = 28.7 +id[12524] = "2790-03-20T22:10:33" +ik[12524] = 1.42 +il[12524] = -135 +im[12524] = 0.0409 +ij[12524] = 12 +id[12525] = "2790-05-10T02:31:20" +ik[12525] = 1.542 +il[12525] = -166 +im[12525] = 0.0432 +ij[12525] = 28.8 +id[12526] = "2790-05-18T07:09:50" +ik[12526] = 3.675 +il[12526] = -141 +im[12526] = 0.0644 +ij[12526] = 28.1 +id[12527] = "2790-05-24T19:31:20" +ik[12527] = 4.361 +il[12527] = -120 +im[12527] = 0.0536 +ij[12527] = 27.2 +id[12528] = "2790-06-03T07:31:14" +ik[12528] = 1.041 +il[12528] = -91 +im[12528] = 0.0611 +ij[12528] = 28.5 +id[12529] = "2790-06-09T07:15:36" +ik[12529] = 0.058 +il[12529] = -72 +im[12529] = 0.0457 +ij[12529] = 28.1 +id[12530] = "2790-08-08T02:21:26" +ik[12530] = 54.557 +il[12530] = 113 +im[12530] = 0.0594 +ij[12530] = 9 +id[12531] = "2790-08-15T22:16:09" +ik[12531] = 1.2 +il[12531] = 137 +im[12531] = 0.095 +ij[12531] = 28.6 +id[12532] = "2790-10-17T08:38:54" +ik[12532] = 1.224 +il[12532] = -34 +im[12532] = 0.0848 +ij[12532] = 27.4 +id[12533] = "2790-10-22T20:05:34" +ik[12533] = 90 +il[12533] = -17 +im[12533] = 0.132 +ij[12533] = 6 +id[12534] = "2790-12-12T20:30:18" +ik[12534] = 0 +il[12534] = 128 +im[12534] = 0.2992 +ij[12534] = 13 +id[12535] = "2790-12-19T05:49:37" +ik[12535] = 0.686 +il[12535] = 136 +im[12535] = 0.3247 +ij[12535] = 28.7 +id[12536] = "2791-01-03T04:04:48" +ik[12536] = 2.91 +il[12536] = 130 +im[12536] = 0.5581 +ij[12536] = 11 +id[12537] = "2791-01-04T08:11:11" +ik[12537] = 0.579 +il[12537] = 143 +im[12537] = 0.5791 +ij[12537] = 2 +id[12538] = "2791-01-23T19:32:52" +ik[12538] = 41.96 +il[12538] = 165 +im[12538] = 0.0897 +ij[12538] = 7.1546 +id[12539] = "2791-02-21T20:55:14" +ik[12539] = 5.041 +il[12539] = -138 +im[12539] = 0.035 +ij[12539] = 28.7 +id[12540] = "2791-02-24T11:20:36" +ik[12540] = 73.62 +il[12540] = -133 +im[12540] = 0.1672 +ij[12540] = 14 +id[12541] = "2791-03-15T17:37:51" +ik[12541] = 90 +il[12541] = -85 +im[12541] = 0.2058 +ij[12541] = 5 +id[12542] = "2791-03-26T20:23:21" +ik[12542] = 3.236 +il[12542] = -50 +im[12542] = 0.1459 +ij[12542] = 27.3 +id[12543] = "2791-04-15T13:47:47" +ik[12543] = 0.521 +il[12543] = 12 +im[12543] = 0.1475 +ij[12543] = 27.5 +id[12544] = "2791-05-31T22:51:41" +ik[12544] = 54.259 +il[12544] = 155 +im[12544] = 0.1116 +ij[12544] = 8 +id[12545] = "2791-05-31T23:32:16" +ik[12545] = 4.05 +il[12545] = 155 +im[12545] = 0.1113 +ij[12545] = 27.6 +id[12546] = "2791-06-25T00:30:05" +ik[12546] = 0.085 +il[12546] = -132 +im[12546] = 0.0764 +ij[12546] = 28.8 +id[12547] = "2791-07-09T14:29:52" +ik[12547] = 5.793 +il[12547] = -87 +im[12547] = 0.0699 +ij[12547] = 27.2 +id[12548] = "2791-07-26T16:13:26" +ik[12548] = 0.004 +il[12548] = -35 +im[12548] = 0.0832 +ij[12548] = 27.91 +id[12549] = "2791-08-10T13:47:42" +ik[12549] = 1.205 +il[12549] = 10 +im[12549] = 0.0874 +ij[12549] = 28.4 +id[12550] = "2791-08-11T04:45:59" +ik[12550] = 0.098 +il[12550] = 12 +im[12550] = 0.0912 +ij[12550] = 28.5 +id[12551] = "2791-10-18T12:33:07" +ik[12551] = 1.22 +il[12551] = -158 +im[12551] = 0.0262 +ij[12551] = 12 +id[12552] = "2791-11-23T12:43:20" +ik[12552] = 4.559 +il[12552] = 139 +im[12552] = 0.0759 +ij[12552] = 27.4 +id[12553] = "2791-12-28T21:14:49" +ik[12553] = 0.727 +il[12553] = -124 +im[12553] = 0.0814 +ij[12553] = 28.7 +id[12554] = "2792-01-06T10:53:45" +ik[12554] = 0.147 +il[12554] = -98 +im[12554] = 0.0551 +ij[12554] = 28.1 +id[12555] = "2792-01-17T05:15:21" +ik[12555] = 0.054 +il[12555] = -65 +im[12555] = 0.0122 +ij[12555] = 27.3 +id[12556] = "2792-02-03T22:39:47" +ik[12556] = 0.982 +il[12556] = -10 +im[12556] = 0.0286 +ij[12556] = 27.5 +id[12557] = "2792-03-19T10:21:11" +ik[12557] = 1.95 +il[12557] = 129 +im[12557] = 0.0369 +ij[12557] = 27.6 +id[12558] = "2792-03-19T23:09:29" +ik[12558] = 54.017 +il[12558] = 130 +im[12558] = 0.049 +ij[12558] = 9 +id[12559] = "2792-04-16T01:20:37" +ik[12559] = 3.339 +il[12559] = -145 +im[12559] = 0.0311 +ij[12559] = 28.8 +id[12560] = "2792-04-27T13:33:33" +ik[12560] = 2.523 +il[12560] = -109 +im[12560] = 0.1331 +ij[12560] = 27.2 +id[12561] = "2792-05-30T08:15:18" +ik[12561] = 90 +il[12561] = -8 +im[12561] = 0.0659 +ij[12561] = 6 +id[12562] = "2792-07-16T11:21:03" +ik[12562] = 0 +il[12562] = 126 +im[12562] = 0.1828 +ij[12562] = 13 +id[12563] = "2792-08-03T01:45:44" +ik[12563] = 0.5146 +il[12563] = 114 +im[12563] = 0.5147 +ij[12563] = 2 +id[12564] = "2792-08-07T18:46:04" +ik[12564] = 6.77 +il[12564] = 128 +im[12564] = 0.2407 +ij[12564] = 11 +id[12565] = "2792-08-10T16:24:40" +ik[12565] = 0.275 +il[12565] = 142 +im[12565] = 0.1003 +ij[12565] = 27.8 +id[12566] = "2792-08-29T18:09:49" +ik[12566] = 44.28 +il[12566] = 164 +im[12566] = 0.4187 +ij[12566] = 7.1658 +id[12567] = "2792-10-02T10:34:30" +ik[12567] = 77.97 +il[12567] = -130 +im[12567] = 0.0973 +ij[12567] = 14 +id[12568] = "2792-10-12T00:44:55" +ik[12568] = 2.377 +il[12568] = -107 +im[12568] = 0.2201 +ij[12568] = 28.5 +id[12569] = "2792-10-17T08:42:43" +ik[12569] = 90 +il[12569] = -92 +im[12569] = 0.0608 +ij[12569] = 5 +id[12570] = "2792-11-25T10:43:49" +ik[12570] = 0.732 +il[12570] = 28 +im[12570] = 0.1571 +ij[12570] = 28.6 +id[12571] = "2792-12-31T11:39:43" +ik[12571] = 53.808 +il[12571] = 140 +im[12571] = 0.0442 +ij[12571] = 8 +id[12572] = "2793-01-14T16:47:47" +ik[12572] = 4.004 +il[12572] = -176 +im[12572] = 0.0361 +ij[12572] = 27.1 +id[12573] = "2793-02-12T17:34:30" +ik[12573] = 0.617 +il[12573] = -85 +im[12573] = 0.0556 +ij[12573] = 28.7 +id[12574] = "2793-03-02T05:00:14" +ik[12574] = 0.97 +il[12574] = -31 +im[12574] = 0.0193 +ij[12574] = 27.3 +id[12575] = "2793-03-19T19:46:01" +ik[12575] = 0.615 +il[12575] = 24 +im[12575] = 0.0311 +ij[12575] = 27.5 +id[12576] = "2793-05-31T17:09:36" +ik[12576] = 0.32 +il[12576] = -135 +im[12576] = 0.0056 +ij[12576] = 12 +id[12577] = "2793-08-20T05:33:04" +ik[12577] = 4.159 +il[12577] = -70 +im[12577] = 0.0823 +ij[12577] = 28.1 +id[12578] = "2793-09-11T13:29:34" +ik[12578] = 0.568 +il[12578] = -2 +im[12578] = 0.061 +ij[12578] = 28.5 +id[12579] = "2793-09-20T03:20:22" +ik[12579] = 0.98 +il[12579] = 24 +im[12579] = 0.1016 +ij[12579] = 28.4 +id[12580] = "2793-09-29T06:37:52" +ik[12580] = 2.373 +il[12580] = 52 +im[12580] = 0.0234 +ij[12580] = 28.6 +id[12581] = "2793-10-17T16:31:18" +ik[12581] = 53.976 +il[12581] = 108 +im[12581] = 0.0779 +ij[12581] = 9 +id[12582] = "2793-10-25T18:10:00" +ik[12582] = 3.079 +il[12582] = 132 +im[12582] = 0.1033 +ij[12582] = 27.4 +id[12583] = "2793-12-10T22:19:12" +ik[12583] = 1.898 +il[12583] = -86 +im[12583] = 0.0881 +ij[12583] = 28.7 +id[12584] = "2793-12-23T13:03:20" +ik[12584] = 0.657 +il[12584] = -47 +im[12584] = 0.1777 +ij[12584] = 27.3 +id[12585] = "2794-01-06T10:14:43" +ik[12585] = 90 +il[12585] = -3 +im[12585] = 0.208 +ij[12585] = 6 +id[12586] = "2794-01-14T15:11:20" +ik[12586] = 0.101 +il[12586] = 19 +im[12586] = 0.1011 +ij[12586] = 27.5 +id[12587] = "2794-02-24T10:34:57" +ik[12587] = 0 +il[12587] = 133 +im[12587] = 0.0143 +ij[12587] = 13 +id[12588] = "2794-03-16T21:49:05" +ik[12588] = 0.534 +il[12588] = 127 +im[12588] = 0.5341 +ij[12588] = 2 +id[12589] = "2794-03-18T05:31:12" +ik[12589] = 8.85 +il[12589] = 138 +im[12589] = 0.5056 +ij[12589] = 11 +id[12590] = "2794-04-07T20:44:46" +ik[12590] = 42.42 +il[12590] = -170 +im[12590] = 0.2363 +ij[12590] = 7.1602 +id[12591] = "2794-05-10T16:12:32" +ik[12591] = 75.23 +il[12591] = -122 +im[12591] = 0.2632 +ij[12591] = 14 +id[12592] = "2794-05-28T06:13:15" +ik[12592] = 90 +il[12592] = -77 +im[12592] = 0.1692 +ij[12592] = 5 +id[12593] = "2794-06-10T15:59:03" +ik[12593] = 4.41 +il[12593] = -35 +im[12593] = 0.1725 +ij[12593] = 27.6 +id[12594] = "2794-07-12T15:37:35" +ik[12594] = 0.658 +il[12594] = 63 +im[12594] = 0.0933 +ij[12594] = 28.8 +id[12595] = "2794-08-09T05:08:39" +ik[12595] = 54.517 +il[12595] = 146 +im[12595] = 0.107 +ij[12595] = 8 +id[12596] = "2794-11-21T05:43:35" +ik[12596] = 1.24 +il[12596] = 107 +im[12596] = 0.0868 +ij[12596] = 28.6 +id[12597] = "2794-11-21T23:08:07" +ik[12597] = 0.17 +il[12597] = 111 +im[12597] = 0.0865 +ij[12597] = 28.5 +id[12598] = "2794-12-31T05:52:48" +ik[12598] = 0.38 +il[12598] = -150 +im[12598] = 0.0462 +ij[12598] = 12 +id[12599] = "2795-02-18T04:35:20" +ik[12599] = 0.913 +il[12599] = 179 +im[12599] = 0.0812 +ij[12599] = 27.5 +id[12600] = "2795-02-24T12:24:46" +ik[12600] = 1.558 +il[12600] = -167 +im[12600] = 0.0458 +ij[12600] = 28.1 +id[12601] = "2795-03-11T19:02:12" +ik[12601] = 3.752 +il[12601] = -120 +im[12601] = 0.0548 +ij[12601] = 28.1 +id[12602] = "2795-04-02T23:11:01" +ik[12602] = 2.6 +il[12602] = -51 +im[12602] = 0.0727 +ij[12602] = 27.6 +id[12603] = "2795-05-04T13:22:04" +ik[12603] = 2.471 +il[12603] = 48 +im[12603] = 0.0936 +ij[12603] = 28.8 +id[12604] = "2795-05-10T08:00:13" +ik[12604] = 3.664 +il[12604] = 66 +im[12604] = 0.068 +ij[12604] = 27.2 +id[12605] = "2795-05-30T03:07:47" +ik[12605] = 54.581 +il[12605] = 128 +im[12605] = 0.0259 +ij[12605] = 9 +id[12606] = "2795-08-08T06:44:12" +ik[12606] = 90 +il[12606] = -18 +im[12606] = 0.1082 +ij[12606] = 6 +id[12607] = "2795-09-26T16:12:58" +ik[12607] = 0 +il[12607] = 122 +im[12607] = 0.2944 +ij[12607] = 13 +id[12608] = "2795-10-13T20:08:45" +ik[12608] = 0.5342 +il[12608] = 111 +im[12608] = 0.5343 +ij[12608] = 2 +id[12609] = "2795-10-19T10:43:40" +ik[12609] = 7.56 +il[12609] = 127 +im[12609] = 0.1265 +ij[12609] = 11 +id[12610] = "2795-11-09T04:28:36" +ik[12610] = 43.51 +il[12610] = -170 +im[12610] = 0.4645 +ij[12610] = 7.1586 +id[12611] = "2795-12-11T06:44:23" +ik[12611] = 75.61 +il[12611] = -136 +im[12611] = 0.2057 +ij[12611] = 14 +id[12612] = "2795-12-29T01:14:17" +ik[12612] = 90 +il[12612] = -92 +im[12612] = 0.0066 +ij[12612] = 5 +id[12613] = "2796-01-07T22:42:14" +ik[12613] = 0.832 +il[12613] = -61 +im[12613] = 0.1861 +ij[12613] = 28.6 +id[12614] = "2796-01-20T05:06:34" +ik[12614] = 2.641 +il[12614] = -23 +im[12614] = 0.1729 +ij[12614] = 28.4 +id[12615] = "2796-01-26T19:11:20" +ik[12615] = 2.772 +il[12615] = -3 +im[12615] = 0.0448 +ij[12615] = 27.1 +id[12616] = "2796-01-28T01:33:00" +ik[12616] = 1.807 +il[12616] = 2 +im[12616] = 0.0057 +ij[12616] = 28.5 +id[12617] = "2796-03-08T14:57:07" +ik[12617] = 0.975 +il[12617] = 128 +im[12617] = 0.0989 +ij[12617] = 28.7 +id[12618] = "2796-03-15T17:11:47" +ik[12618] = 1.606 +il[12618] = 150 +im[12618] = 0.0691 +ij[12618] = 27.3 +id[12619] = "2796-03-16T17:38:54" +ik[12619] = 53.793 +il[12619] = 153 +im[12619] = 0.0886 +ij[12619] = 8 +id[12620] = "2796-04-02T16:48:40" +ik[12620] = 0.299 +il[12620] = -154 +im[12620] = 0.0944 +ij[12620] = 27.5 +id[12621] = "2796-05-17T02:32:01" +ik[12621] = 3.68 +il[12621] = -18 +im[12621] = 0.0819 +ij[12621] = 27.6 +id[12622] = "2796-06-18T14:27:53" +ik[12622] = 0.846 +il[12622] = 81 +im[12622] = 0.089 +ij[12622] = 28.8 +id[12623] = "2796-06-23T18:20:32" +ik[12623] = 5.179 +il[12623] = 97 +im[12623] = 0.0537 +ij[12623] = 27.2 +id[12624] = "2796-08-06T22:37:55" +ik[12624] = 1.1 +il[12624] = -150 +im[12624] = 0.063 +ij[12624] = 12 +id[12625] = "2796-11-07T19:57:33" +ik[12625] = 3.95 +il[12625] = -47 +im[12625] = 0.0328 +ij[12625] = 27.4 +id[12626] = "2796-11-14T15:54:51" +ik[12626] = 2.371 +il[12626] = -27 +im[12626] = 0.0914 +ij[12626] = 28.6 +id[12627] = "2796-12-21T22:51:27" +ik[12627] = 1.293 +il[12627] = 87 +im[12627] = 0.059 +ij[12627] = 28.5 +id[12628] = "2797-01-01T01:35:22" +ik[12628] = 53.57 +il[12628] = 119 +im[12628] = 0.1166 +ij[12628] = 9 +id[12629] = "2797-01-01T21:02:44" +ik[12629] = 1.158 +il[12629] = 121 +im[12629] = 0.1158 +ij[12629] = 28.7 +id[12630] = "2797-01-02T07:53:07" +ik[12630] = 0.381 +il[12630] = 123 +im[12630] = 0.1137 +ij[12630] = 27.3 +id[12631] = "2797-01-20T16:41:07" +ik[12631] = 0.929 +il[12631] = 180 +im[12631] = 0.0818 +ij[12631] = 27.5 +id[12632] = "2797-03-09T09:16:55" +ik[12632] = 0.3 +il[12632] = -31 +im[12632] = 0.0282 +ij[12632] = 27.6 +id[12633] = "2797-03-20T08:33:53" +ik[12633] = 90 +il[12633] = 3 +im[12633] = 0.1714 +ij[12633] = 6 +id[12634] = "2797-05-05T06:44:50" +ik[12634] = 0 +il[12634] = 133 +im[12634] = 0.0864 +ij[12634] = 13 +id[12635] = "2797-05-06T22:32:58" +ik[12635] = 5.282 +il[12635] = 104 +im[12635] = 0.1331 +ij[12635] = 27.2 +id[12636] = "2797-05-28T09:21:36" +ik[12636] = 2.41 +il[12636] = 137 +im[12636] = 0.4035 +ij[12636] = 11 +id[12637] = "2797-06-08T02:43:27" +ik[12637] = 0.5066 +il[12637] = 159 +im[12637] = 0.5067 +ij[12637] = 2 +id[12638] = "2797-06-18T15:59:27" +ik[12638] = 44.39 +il[12638] = 173 +im[12638] = 0.302 +ij[12638] = 7.1648 +id[12639] = "2797-07-22T11:37:10" +ik[12639] = 78.2 +il[12639] = -121 +im[12639] = 0.1957 +ij[12639] = 14 +id[12640] = "2797-07-23T02:47:45" +ik[12640] = 2.366 +il[12640] = -119 +im[12640] = 0.1735 +ij[12640] = 28.8 +id[12641] = "2797-08-06T10:30:39" +ik[12641] = 90 +il[12641] = -81 +im[12641] = 0.1904 +ij[12641] = 5 +id[12642] = "2797-10-17T14:48:17" +ik[12642] = 54.284 +il[12642] = 139 +im[12642] = 0.1202 +ij[12642] = 8 +id[12643] = "2797-12-31T13:08:39" +ik[12643] = 4.736 +il[12643] = 9 +im[12643] = 0.089 +ij[12643] = 27.1 +id[12644] = "2798-01-07T03:00:34" +ik[12644] = 0.733 +il[12644] = 32 +im[12644] = 0.0135 +ij[12644] = 28.6 +id[12645] = "2798-01-31T13:51:53" +ik[12645] = 1.075 +il[12645] = 108 +im[12645] = 0.084 +ij[12645] = 28.4 +id[12646] = "2798-02-05T10:19:37" +ik[12646] = 2.844 +il[12646] = 123 +im[12646] = 0.0295 +ij[12646] = 28.1 +id[12647] = "2798-03-18T09:18:43" +ik[12647] = 1.43 +il[12647] = -134 +im[12647] = 0.0833 +ij[12647] = 12 +id[12648] = "2798-05-18T04:18:20" +ik[12648] = 1.055 +il[12648] = -131 +im[12648] = 0.08 +ij[12648] = 28.1 +id[12649] = "2798-05-23T18:25:20" +ik[12649] = 1.947 +il[12649] = -114 +im[12649] = 0.0101 +ij[12649] = 28.8 +id[12650] = "2798-05-24T08:47:19" +ik[12650] = 4.348 +il[12650] = -112 +im[12650] = 0.0188 +ij[12650] = 27.2 +id[12651] = "2798-06-10T22:12:43" +ik[12651] = 0.254 +il[12651] = -57 +im[12651] = 0.0496 +ij[12651] = 27.9 +id[12652] = "2798-08-05T19:46:58" +ik[12652] = 54.569 +il[12652] = 116 +im[12652] = 0.0318 +ij[12652] = 9 +id[12653] = "2798-10-17T08:53:33" +ik[12653] = 1.123 +il[12653] = -24 +im[12653] = 0.1503 +ij[12653] = 27.4 +id[12654] = "2798-10-20T07:59:24" +ik[12654] = 90 +il[12654] = -15 +im[12654] = 0.0506 +ij[12654] = 6 +id[12655] = "2798-12-10T11:37:37" +ik[12655] = 0 +il[12655] = 131 +im[12655] = 0.4742 +ij[12655] = 13 +id[12656] = "2798-12-21T17:14:12" +ik[12656] = 1.025 +il[12656] = 154 +im[12656] = 0.453 +ij[12656] = 28.6 +id[12657] = "2798-12-31T17:02:24" +ik[12657] = 2.52 +il[12657] = 133 +im[12657] = 0.2631 +ij[12657] = 11 +id[12658] = "2799-01-05T10:03:39" +ik[12658] = 0.577 +il[12658] = 149 +im[12658] = 0.5771 +ij[12658] = 2 +id[12659] = "2799-01-21T10:40:11" +ik[12659] = 41.96 +il[12659] = -170 +im[12659] = 0.3586 +ij[12659] = 7.1546 +id[12660] = "2799-02-15T01:40:35" +ik[12660] = 4.208 +il[12660] = -146 +im[12660] = 0.2827 +ij[12660] = 28.6 +id[12661] = "2799-02-21T23:46:51" +ik[12661] = 73.51 +il[12661] = -130 +im[12661] = 0.0507 +ij[12661] = 14 +id[12662] = "2799-03-13T05:49:22" +ik[12662] = 90 +il[12662] = -82 +im[12662] = 0.1189 +ij[12662] = 5 +id[12663] = "2799-03-26T17:33:06" +ik[12663] = 3.142 +il[12663] = -40 +im[12663] = 0.0888 +ij[12663] = 27.3 +id[12664] = "2799-03-31T04:08:41" +ik[12664] = 1.706 +il[12664] = -26 +im[12664] = 0.1838 +ij[12664] = 28.7 +id[12665] = "2799-04-15T07:39:46" +ik[12665] = 0.475 +il[12665] = 21 +im[12665] = 0.1489 +ij[12665] = 27.5 +id[12666] = "2799-05-01T03:50:32" +ik[12666] = 0.229 +il[12666] = 70 +im[12666] = 0.1449 +ij[12666] = 28.5 +id[12667] = "2799-05-29T14:26:59" +ik[12667] = 54.243 +il[12667] = 158 +im[12667] = 0.1109 +ij[12667] = 8 +id[12668] = "2799-05-31T14:28:44" +ik[12668] = 4.04 +il[12668] = 164 +im[12668] = 0.1177 +ij[12668] = 27.6 +id[12669] = "2799-07-09T00:45:04" +ik[12669] = 0.38 +il[12669] = -79 +im[12669] = 0.0336 +ij[12669] = 28.8 +id[12670] = "2799-07-09T04:10:18" +ik[12670] = 5.77 +il[12670] = -79 +im[12670] = 0.0364 +ij[12670] = 27.2 +id[12671] = "2799-07-26T05:35:31" +ik[12671] = 0.018 +il[12671] = -27 +im[12671] = 0.0562 +ij[12671] = 27.91 +id[12672] = "2799-10-16T03:27:21" +ik[12672] = 1.25 +il[12672] = -147 +im[12672] = 0.0784 +ij[12672] = 12 +id[12673] = "2799-11-23T01:57:59" +ik[12673] = 4.549 +il[12673] = 137 +im[12673] = 0.0536 +ij[12673] = 27.4 +id[12674] = "2799-12-22T11:56:15" +ik[12674] = 0.43 +il[12674] = -134 +im[12674] = 0.0454 +ij[12674] = 28.1 +id[12675] = "2800-01-02T03:48:14" +ik[12675] = 1.271 +il[12675] = -101 +im[12675] = 0.0522 +ij[12675] = 28.6 +id[12676] = "2800-01-16T18:53:33" +ik[12676] = 0.056 +il[12676] = -56 +im[12676] = 0.0486 +ij[12676] = 27.3 +id[12677] = "2800-01-27T05:35:22" +ik[12677] = 0.775 +il[12677] = -24 +im[12677] = 0.1044 +ij[12677] = 28.7 +id[12678] = "2800-02-03T12:31:46" +ik[12678] = 0.979 +il[12678] = -2 +im[12678] = 0.0146 +ij[12678] = 27.5 +id[12679] = "2800-02-07T09:12:05" +ik[12679] = 0.922 +il[12679] = 10 +im[12679] = 0.0638 +ij[12679] = 28.4 +id[12680] = "2800-03-17T12:43:53" +ik[12680] = 53.994 +il[12680] = 133 +im[12680] = 0.0537 +ij[12680] = 9 +id[12681] = "2800-03-19T01:15:38" +ik[12681] = 1.91 +il[12681] = 137 +im[12681] = 0.0214 +ij[12681] = 27.6 +id[12682] = "2800-03-20T13:17:11" +ik[12682] = 1.385 +il[12682] = 142 +im[12682] = 0.0216 +ij[12682] = 28.5 +id[12683] = "2800-04-27T07:14:26" +ik[12683] = 2.474 +il[12683] = -100 +im[12683] = 0.1502 +ij[12683] = 27.2 +id[12684] = "2800-04-30T20:57:41" +ik[12684] = 3.906 +il[12684] = -89 +im[12684] = 0.0929 +ij[12684] = 28.8 +id[12685] = "2800-05-28T02:05:35" +ik[12685] = 90 +il[12685] = -5 +im[12685] = 0.1831 +ij[12685] = 6 +id[12686] = "2800-07-13T23:47:17" +ik[12686] = 0 +il[12686] = 128 +im[12686] = 0.1573 +ij[12686] = 13 +id[12687] = "2800-08-04T03:30:50" +ik[12687] = 0.5287 +il[12687] = 119 +im[12687] = 0.5288 +ij[12687] = 2 +id[12688] = "2800-08-04T22:37:46" +ik[12688] = 0.411 +il[12688] = 120 +im[12688] = 0.5201 +ij[12688] = 27.8 +id[12689] = "2800-08-05T10:53:45" +ik[12689] = 6.56 +il[12689] = 130 +im[12689] = 0.5056 +ij[12689] = 11 +id[12690] = "2800-08-27T11:15:02" +ik[12690] = 44.48 +il[12690] = 166 +im[12690] = 0.3224 +ij[12690] = 7.1658 +id[12691] = "2800-09-30T03:31:48" +ik[12691] = 78.16 +il[12691] = -127 +im[12691] = 0.2456 +ij[12691] = 14 +id[12692] = "2800-10-15T00:30:04" +ik[12692] = 90 +il[12692] = -89 +im[12692] = 0.1812 +ij[12692] = 5 +id[12693] = "2800-12-29T00:10:08" +ik[12693] = 53.82 +il[12693] = 142 +im[12693] = 0.1154 +ij[12693] = 8 +id[12694] = "2801-01-14T07:13:32" +ik[12694] = 4.03 +il[12694] = -167 +im[12694] = 0.0766 +ij[12694] = 27.1 +id[12695] = "2801-02-23T14:18:57" +ik[12695] = 0.182 +il[12695] = -41 +im[12695] = 0.09 +ij[12695] = 28.6 +id[12696] = "2801-03-01T18:38:26" +ik[12696] = 0.96 +il[12696] = -22 +im[12696] = 0.0521 +ij[12696] = 27.3 +id[12697] = "2801-03-13T23:25:03" +ik[12697] = 0.496 +il[12697] = 16 +im[12697] = 0.0889 +ij[12697] = 28.7 +id[12698] = "2801-03-19T09:06:26" +ik[12698] = 0.62 +il[12698] = 32 +im[12698] = 0.0128 +ij[12698] = 27.5 +id[12699] = "2801-04-09T10:33:53" +ik[12699] = 1.787 +il[12699] = 97 +im[12699] = 0.0872 +ij[12699] = 28.1 +id[12700] = "2801-05-29T10:32:09" +ik[12700] = 0.37 +il[12700] = -133 +im[12700] = 0.0647 +ij[12700] = 12 +id[12701] = "2801-07-28T18:00:25" +ik[12701] = 3.202 +il[12701] = -129 +im[12701] = 0.0738 +ij[12701] = 28.1 +id[12702] = "2801-10-15T06:09:16" +ik[12702] = 53.999 +il[12702] = 110 +im[12702] = 0.0213 +ij[12702] = 9 +id[12703] = "2801-10-25T09:31:46" +ik[12703] = 3.048 +il[12703] = 141 +im[12703] = 0.1265 +ij[12703] = 27.4 +id[12704] = "2801-12-23T10:41:33" +ik[12704] = 0.647 +il[12704] = -37 +im[12704] = 0.1919 +ij[12704] = 27.3 +id[12705] = "2802-01-03T06:24:37" +ik[12705] = 0.386 +il[12705] = -3 +im[12705] = 0.1767 +ij[12705] = 28.6 +id[12706] = "2802-01-03T22:02:21" +ik[12706] = 90 +il[12706] = -1 +im[12706] = 0.1953 +ij[12706] = 6 +id[12707] = "2802-01-14T23:03:20" +ik[12707] = 0.24 +il[12707] = 28 +im[12707] = 0.0358 +ij[12707] = 27.5 +id[12708] = "2802-01-15T13:24:40" +ik[12708] = 0.442 +il[12708] = 30 +im[12708] = 0.0629 +ij[12708] = 28.7 +id[12709] = "2802-02-22T03:32:16" +ik[12709] = 0 +il[12709] = 134 +im[12709] = 0.3224 +ij[12709] = 13 +id[12710] = "2802-03-17T20:29:27" +ik[12710] = 0.5226 +il[12710] = 133 +im[12710] = 0.5227 +ij[12710] = 2 +id[12711] = "2802-04-05T10:31:02" +ik[12711] = 42.29 +il[12711] = 179 +im[12711] = 0.146 +ij[12711] = 7.1599 +id[12712] = "2802-05-07T21:11:22" +ik[12712] = 1.235 +il[12712] = -121 +im[12712] = 0.1418 +ij[12712] = 28.4 +id[12713] = "2802-05-08T04:45:49" +ik[12713] = 75.05 +il[12713] = -120 +im[12713] = 0.1551 +ij[12713] = 14 +id[12714] = "2802-05-25T20:50:42" +ik[12714] = 90 +il[12714] = -74 +im[12714] = 0.2131 +ij[12714] = 5 +id[12715] = "2802-06-10T13:04:32" +ik[12715] = 4.41 +il[12715] = -26 +im[12715] = 0.1701 +ij[12715] = 27.6 +id[12716] = "2802-07-27T10:24:40" +ik[12716] = 0.342 +il[12716] = 118 +im[12716] = 0.1236 +ij[12716] = 28.8 +id[12717] = "2802-07-30T09:02:09" +ik[12717] = 1.029 +il[12717] = 126 +im[12717] = 0.0768 +ij[12717] = 28.5 +id[12718] = "2802-08-06T22:16:24" +ik[12718] = 54.516 +il[12718] = 149 +im[12718] = 0.0966 +ij[12718] = 8 +id[12719] = "2802-11-18T00:13:06" +ik[12719] = 0.032 +il[12719] = 107 +im[12719] = 0.0401 +ij[12719] = 28.1 +id[12720] = "2802-12-28T17:08:09" +ik[12720] = 0.31 +il[12720] = -148 +im[12720] = 0.0267 +ij[12720] = 11 +id[12721] = "2803-02-17T17:51:46" +ik[12721] = 0.912 +il[12721] = -178 +im[12721] = 0.065 +ij[12721] = 27.5 +id[12722] = "2803-02-18T06:32:41" +ik[12722] = 0.211 +il[12722] = -177 +im[12722] = 0.0715 +ij[12722] = 28.6 +id[12723] = "2803-02-20T06:57:36" +ik[12723] = 3.304 +il[12723] = -171 +im[12723] = 0.087 +ij[12723] = 28.1 +id[12724] = "2803-02-21T11:23:25" +ik[12724] = 0.595 +il[12724] = -167 +im[12724] = 0.0886 +ij[12724] = 28.7 +id[12725] = "2803-04-02T12:36:23" +ik[12725] = 2.58 +il[12725] = -42 +im[12725] = 0.0378 +ij[12725] = 27.6 +id[12726] = "2803-05-09T22:16:12" +ik[12726] = 3.642 +il[12726] = 75 +im[12726] = 0.0942 +ij[12726] = 27.2 +id[12727] = "2803-05-18T14:44:09" +ik[12727] = 2.816 +il[12727] = 102 +im[12727] = 0.0824 +ij[12727] = 28.8 +id[12728] = "2803-05-27T20:47:31" +ik[12728] = 54.569 +il[12728] = 131 +im[12728] = 0.0691 +ij[12728] = 9 +id[12729] = "2803-06-22T06:24:33" +ik[12729] = 1.375 +il[12729] = -152 +im[12729] = 0.1444 +ij[12729] = 28.5 +id[12730] = "2803-08-05T22:18:16" +ik[12730] = 90 +il[12730] = -16 +im[12730] = 0.2028 +ij[12730] = 6 +id[12731] = "2803-09-24T04:46:16" +ik[12731] = 0 +il[12731] = 115 +im[12731] = 0.0737 +ij[12731] = 13 +id[12732] = "2803-10-15T00:20:21" +ik[12732] = 0.53 +il[12732] = 139 +im[12732] = 0.53 +ij[12732] = 2 +id[12733] = "2803-10-17T00:27:21" +ik[12733] = 7.73 +il[12733] = 140 +im[12733] = 0.4698 +ij[12733] = 1 +id[12734] = "2803-11-07T04:49:51" +ik[12734] = 44 +il[12734] = 164 +im[12734] = 0.3361 +ij[12734] = 7.1589 +id[12735] = "2803-12-08T22:41:35" +ik[12735] = 75.75 +il[12735] = -133 +im[12735] = 0.2755 +ij[12735] = 14 +id[12736] = "2803-12-26T14:48:03" +ik[12736] = 90 +il[12736] = -90 +im[12736] = 0.1677 +ij[12736] = 5 +id[12737] = "2804-01-26T13:37:05" +ik[12737] = 2.829 +il[12737] = 7 +im[12737] = 0.1063 +ij[12737] = 27.1 +id[12738] = "2804-03-14T05:37:19" +ik[12738] = 53.783 +il[12738] = 155 +im[12738] = 0.011 +ij[12738] = 8 +id[12739] = "2804-03-15T08:01:06" +ik[12739] = 1.582 +il[12739] = 159 +im[12739] = 0.0264 +ij[12739] = 27.3 +id[12740] = "2804-04-02T07:08:39" +ik[12740] = 0.312 +il[12740] = -145 +im[12740] = 0.0658 +ij[12740] = 27.5 +id[12741] = "2804-04-08T09:29:13" +ik[12741] = 0.309 +il[12741] = -127 +im[12741] = 0.0903 +ij[12741] = 28.7 +id[12742] = "2804-04-11T04:11:14" +ik[12742] = 0.82 +il[12742] = -118 +im[12742] = 0.0476 +ij[12742] = 28.6 +id[12743] = "2804-05-16T15:57:23" +ik[12743] = 3.67 +il[12743] = -9 +im[12743] = 0.0502 +ij[12743] = 27.6 +id[12744] = "2804-05-24T02:31:46" +ik[12744] = 0.405 +il[12744] = 14 +im[12744] = 0.0841 +ij[12744] = 28.4 +id[12745] = "2804-06-23T07:23:11" +ik[12745] = 5.161 +il[12745] = 105 +im[12745] = 0.0754 +ij[12745] = 27.2 +id[12746] = "2804-07-02T08:35:57" +ik[12746] = 1.12 +il[12746] = 123 +im[12746] = 0.0715 +ij[12746] = 28.8 +id[12747] = "2804-08-04T16:53:45" +ik[12747] = 1.07 +il[12747] = -147 +im[12747] = 0.089 +ij[12747] = 11 +id[12748] = "2804-10-02T21:04:53" +ik[12748] = 3.442 +il[12748] = -146 +im[12748] = 0.0892 +ij[12748] = 28.1 +id[12749] = "2804-11-07T09:40:12" +ik[12749] = 3.934 +il[12749] = -39 +im[12749] = 0.0659 +ij[12749] = 27.4 +id[12750] = "2804-12-29T12:08:27" +ik[12750] = 53.571 +il[12750] = 121 +im[12750] = 0.0691 +ij[12750] = 9 +id[12751] = "2805-01-01T22:53:06" +ik[12751] = 0.386 +il[12751] = 131 +im[12751] = 0.1147 +ij[12751] = 27.3 +id[12752] = "2805-01-20T08:36:12" +ik[12752] = 0.917 +il[12752] = -171 +im[12752] = 0.1216 +ij[12752] = 27.5 +id[12753] = "2805-02-01T21:20:10" +ik[12753] = 0.388 +il[12753] = -132 +im[12753] = 0.1388 +ij[12753] = 28.7 +id[12754] = "2805-02-14T01:59:48" +ik[12754] = 2.121 +il[12754] = -94 +im[12754] = 0.1485 +ij[12754] = 28.6 +id[12755] = "2805-03-09T07:00:18" +ik[12755] = 0.2 +il[12755] = -21 +im[12755] = 0.0502 +ij[12755] = 27.6 +id[12756] = "2805-03-18T00:11:30" +ik[12756] = 90 +il[12756] = 5 +im[12756] = 0.2207 +ij[12756] = 6 +id[12757] = "2805-05-03T22:42:02" +ik[12757] = 0 +il[12757] = 128 +im[12757] = 0.2782 +ij[12757] = 13 +id[12758] = "2805-05-26T02:05:16" +ik[12758] = 2.73 +il[12758] = 152 +im[12758] = 0.496 +ij[12758] = 1 +id[12759] = "2805-05-26T20:06:14" +ik[12759] = 0.5049 +il[12759] = 153 +im[12759] = 0.505 +ij[12759] = 2 +id[12760] = "2805-06-16T05:52:38" +ik[12760] = 43.3 +il[12760] = 176 +im[12760] = 0.0344 +ij[12760] = 7.1652 +id[12761] = "2805-07-20T04:06:25" +ik[12761] = 77.23 +il[12761] = -118 +im[12761] = 0.2329 +ij[12761] = 14 +id[12762] = "2805-08-04T03:14:36" +ik[12762] = 90 +il[12762] = -78 +im[12762] = 0.204 +ij[12762] = 5 +id[12763] = "2805-08-11T02:13:37" +ik[12763] = 1.853 +il[12763] = -57 +im[12763] = 0.0761 +ij[12763] = 28.8 +id[12764] = "2805-10-15T06:27:08" +ik[12764] = 54.298 +il[12764] = 141 +im[12764] = 0.0958 +ij[12764] = 8 +id[12765] = "2805-11-08T10:47:42" +ik[12765] = 0.086 +il[12765] = -144 +im[12765] = 0.0332 +ij[12765] = 28.5 +id[12766] = "2805-12-31T02:30:52" +ik[12766] = 4.753 +il[12766] = 20 +im[12766] = 0.0827 +ij[12766] = 27.1 +id[12767] = "2806-01-15T17:56:41" +ik[12767] = 2.511 +il[12767] = 69 +im[12767] = 0.0859 +ij[12767] = 28.1 +id[12768] = "2806-03-15T20:15:21" +ik[12768] = 1.43 +il[12768] = 64 +im[12768] = 0.066 +ij[12768] = 11 +id[12769] = "2806-04-25T07:23:13" +ik[12769] = 2.009 +il[12769] = 167 +im[12769] = 0.0082 +ij[12769] = 28.1 +id[12770] = "2806-05-23T22:03:18" +ik[12770] = 4.334 +il[12770] = -103 +im[12770] = 0.0244 +ij[12770] = 27.2 +id[12771] = "2806-06-06T13:40:13" +ik[12771] = 2.183 +il[12771] = -60 +im[12771] = 0.0616 +ij[12771] = 28.8 +id[12772] = "2806-06-11T10:31:17" +ik[12772] = 0.418 +il[12772] = -45 +im[12772] = 0.0351 +ij[12772] = 28.4 +id[12773] = "2806-08-03T13:19:36" +ik[12773] = 54.58 +il[12773] = 119 +im[12773] = 0.1025 +ij[12773] = 9 +id[12774] = "2806-10-07T09:14:24" +ik[12774] = 3.438 +il[12774] = -44 +im[12774] = 0.0209 +ij[12774] = 28.5 +id[12775] = "2806-10-17T10:04:12" +ik[12775] = 1.015 +il[12775] = -14 +im[12775] = 0.1954 +ij[12775] = 27.4 +id[12776] = "2806-10-17T19:57:38" +ik[12776] = 90 +il[12776] = -13 +im[12776] = 0.1866 +ij[12776] = 6 +id[12777] = "2806-12-08T04:06:52" +ik[12777] = 0 +il[12777] = 123 +im[12777] = 0.3607 +ij[12777] = 13 +id[12778] = "2806-12-29T06:04:19" +ik[12778] = 2.12 +il[12778] = 147 +im[12778] = 0.2131 +ij[12778] = 1 +id[12779] = "2807-01-06T14:54:45" +ik[12779] = 0.5617 +il[12779] = 155 +im[12779] = 0.5617 +ij[12779] = 2 +id[12780] = "2807-01-19T04:10:27" +ik[12780] = 42 +il[12780] = -170 +im[12780] = 0.4246 +ij[12780] = 7.1546 +id[12781] = "2807-02-19T11:56:12" +ik[12781] = 73.33 +il[12781] = -128 +im[12781] = 0.233 +ij[12781] = 14 +id[12782] = "2807-03-10T17:57:21" +ik[12782] = 90 +il[12782] = -80 +im[12782] = 0.066 +ij[12782] = 5 +id[12783] = "2807-03-26T14:08:39" +ik[12783] = 3.054 +il[12783] = -31 +im[12783] = 0.0231 +ij[12783] = 27.3 +id[12784] = "2807-04-15T01:21:06" +ik[12784] = 0.432 +il[12784] = 30 +im[12784] = 0.1299 +ij[12784] = 27.5 +id[12785] = "2807-05-03T10:22:39" +ik[12785] = 0.481 +il[12785] = 87 +im[12785] = 0.1358 +ij[12785] = 28.7 +id[12786] = "2807-05-26T22:44:49" +ik[12786] = 0.697 +il[12786] = 160 +im[12786] = 0.0364 +ij[12786] = 28.6 +id[12787] = "2807-05-27T05:58:44" +ik[12787] = 54.228 +il[12787] = 160 +im[12787] = 0.0429 +ij[12787] = 8 +id[12788] = "2807-05-31T05:17:15" +ik[12788] = 4.03 +il[12788] = 173 +im[12788] = 0.1057 +ij[12788] = 27.6 +id[12789] = "2807-07-08T17:47:37" +ik[12789] = 5.748 +il[12789] = -70 +im[12789] = 0.0109 +ij[12789] = 27.2 +id[12790] = "2807-07-23T00:00:00" +ik[12790] = 0.653 +il[12790] = -27 +im[12790] = 0.0369 +ij[12790] = 28.8 +id[12791] = "2807-07-25T18:59:02" +ik[12791] = 0.039 +il[12791] = -18 +im[12791] = 0.021 +ij[12791] = 27.91 +id[12792] = "2807-08-28T13:21:56" +ik[12792] = 2.943 +il[12792] = 85 +im[12792] = 0.0757 +ij[12792] = 28.1 +id[12793] = "2807-10-13T18:33:07" +ik[12793] = 1.27 +il[12793] = 46 +im[12793] = 0.0798 +ij[12793] = 11 +id[12794] = "2807-11-22T15:12:12" +ik[12794] = 4.538 +il[12794] = 145 +im[12794] = 0.0213 +ij[12794] = 27.4 +id[12795] = "2807-12-02T21:41:19" +ik[12795] = 0.388 +il[12795] = 179 +im[12795] = 0.0721 +ij[12795] = 28.1 +id[12796] = "2807-12-11T07:27:07" +ik[12796] = 0.885 +il[12796] = -158 +im[12796] = 0.0638 +ij[12796] = 28.5 +id[12797] = "2808-01-16T08:29:05" +ik[12797] = 0.063 +il[12797] = -48 +im[12797] = 0.0781 +ij[12797] = 27.3 +id[12798] = "2808-02-03T02:23:45" +ik[12798] = 0.976 +il[12798] = 7 +im[12798] = 0.0532 +ij[12798] = 27.5 +id[12799] = "2808-02-26T13:43:16" +ik[12799] = 0.362 +il[12799] = 80 +im[12799] = 0.1054 +ij[12799] = 28.7 +id[12800] = "2808-03-15T02:07:38" +ik[12800] = 53.971 +il[12800] = 135 +im[12800] = 0.1174 +ij[12800] = 9 +id[12801] = "2808-03-18T16:14:11" +ik[12801] = 1.88 +il[12801] = 146 +im[12801] = 0.0698 +ij[12801] = 27.6 +id[12802] = "2808-03-28T14:36:23" +ik[12802] = 3.054 +il[12802] = 177 +im[12802] = 0.1242 +ij[12802] = 28.6 +id[12803] = "2808-04-27T01:12:38" +ik[12803] = 2.423 +il[12803] = -91 +im[12803] = 0.1451 +ij[12803] = 27.2 +id[12804] = "2808-05-17T02:05:34" +ik[12804] = 4.075 +il[12804] = -29 +im[12804] = 0.1322 +ij[12804] = 28.8 +id[12805] = "2808-05-25T19:55:53" +ik[12805] = 90 +il[12805] = -3 +im[12805] = 0.1771 +ij[12805] = 6 +id[12806] = "2808-07-11T11:56:39" +ik[12806] = 0 +il[12806] = 120 +im[12806] = 0.3986 +ij[12806] = 13 +id[12807] = "2808-08-03T03:07:12" +ik[12807] = 6.34 +il[12807] = 145 +im[12807] = 0.4642 +ij[12807] = 1 +id[12808] = "2808-08-05T09:36:52" +ik[12808] = 0.532 +il[12808] = 147 +im[12808] = 0.5321 +ij[12808] = 2 +id[12809] = "2808-08-25T10:59:13" +ik[12809] = 44.96 +il[12809] = 170 +im[12809] = 0.077 +ij[12809] = 7.1657 +id[12810] = "2808-09-27T20:32:57" +ik[12810] = 78.36 +il[12810] = -124 +im[12810] = 0.2444 +ij[12810] = 14 +id[12811] = "2808-10-12T16:20:03" +ik[12811] = 90 +il[12811] = -86 +im[12811] = 0.184 +ij[12811] = 5 +id[12812] = "2808-10-26T16:58:56" +ik[12812] = 1.158 +il[12812] = -44 +im[12812] = 0.1654 +ij[12812] = 28.4 +id[12813] = "2808-12-26T12:47:39" +ik[12813] = 53.833 +il[12813] = 144 +im[12813] = 0.1113 +ij[12813] = 8 +id[12814] = "2809-01-13T21:32:11" +ik[12814] = 4.055 +il[12814] = -158 +im[12814] = 0.1053 +ij[12814] = 27.1 +id[12815] = "2809-02-16T09:18:51" +ik[12815] = 0.274 +il[12815] = -54 +im[12815] = 0.0585 +ij[12815] = 28.5 +id[12816] = "2809-03-01T08:10:25" +ik[12816] = 0.949 +il[12816] = -14 +im[12816] = 0.0766 +ij[12816] = 27.3 +id[12817] = "2809-03-18T05:26:09" +ik[12817] = 2.4 +il[12817] = 39 +im[12817] = 0.0621 +ij[12817] = 28.1 +id[12818] = "2809-03-18T22:29:59" +ik[12818] = 0.624 +il[12818] = 41 +im[12818] = 0.0511 +ij[12818] = 27.5 +id[12819] = "2809-04-13T21:00:51" +ik[12819] = 0.658 +il[12819] = 120 +im[12819] = 0.0906 +ij[12819] = 28.7 +id[12820] = "2809-05-27T03:46:04" +ik[12820] = 0.42 +il[12820] = 67 +im[12820] = 0.0839 +ij[12820] = 11 +id[12821] = "2809-07-04T17:59:42" +ik[12821] = 2.097 +il[12821] = 166 +im[12821] = 0.0049 +ij[12821] = 28.1 +id[12822] = "2809-10-12T19:50:47" +ik[12822] = 54.022 +il[12822] = 113 +im[12822] = 0.1008 +ij[12822] = 9 +id[12823] = "2809-10-25T01:03:45" +ik[12823] = 3.015 +il[12823] = 150 +im[12823] = 0.1268 +ij[12823] = 27.4 +id[12824] = "2809-12-23T08:55:45" +ik[12824] = 0.635 +il[12824] = -27 +im[12824] = 0.1833 +ij[12824] = 27.3 +id[12825] = "2810-01-01T09:48:13" +ik[12825] = 90 +il[12825] = 0 +im[12825] = 0.053 +ij[12825] = 6 +id[12826] = "2810-01-15T09:20:12" +ik[12826] = 0.403 +il[12826] = 38 +im[12826] = 0.0402 +ij[12826] = 27.5 +id[12827] = "2810-01-15T19:45:33" +ik[12827] = 0.735 +il[12827] = 39 +im[12827] = 0.0223 +ij[12827] = 28.5 +id[12828] = "2810-02-19T20:33:25" +ik[12828] = 0 +il[12828] = 132 +im[12828] = 0.4183 +ij[12828] = 13 +id[12829] = "2810-03-05T15:50:43" +ik[12829] = 0.5457 +il[12829] = 148 +im[12829] = 0.5458 +ij[12829] = 2 +id[12830] = "2810-04-02T23:41:06" +ik[12830] = 42.13 +il[12830] = 178 +im[12830] = 0.4084 +ij[12830] = 7.1597 +id[12831] = "2810-05-05T16:51:52" +ik[12831] = 74.85 +il[12831] = -118 +im[12831] = 0.0673 +ij[12831] = 14 +id[12832] = "2810-05-23T10:20:38" +ik[12832] = 0.635 +il[12832] = -71 +im[12832] = 0.1213 +ij[12832] = 28.7 +id[12833] = "2810-05-23T11:19:19" +ik[12833] = 90 +il[12833] = -72 +im[12833] = 0.1227 +ij[12833] = 5 +id[12834] = "2810-06-10T09:41:08" +ik[12834] = 4.4 +il[12834] = -16 +im[12834] = 0.1508 +ij[12834] = 27.6 +id[12835] = "2810-07-08T11:21:24" +ik[12835] = 0.227 +il[12835] = 70 +im[12835] = 0.0926 +ij[12835] = 28.6 +id[12836] = "2810-08-04T15:24:08" +ik[12836] = 54.514 +il[12836] = 152 +im[12836] = 0.0195 +ij[12836] = 8 +id[12837] = "2810-08-10T21:46:30" +ik[12837] = 0.009 +il[12837] = 171 +im[12837] = 0.1114 +ij[12837] = 28.8 +id[12838] = "2810-10-29T07:44:24" +ik[12838] = 0.594 +il[12838] = 55 +im[12838] = 0.0568 +ij[12838] = 28.1 +id[12839] = "2810-12-26T04:29:16" +ik[12839] = 0.25 +il[12839] = -146 +im[12839] = 0.0782 +ij[12839] = 12 +id[12840] = "2811-02-17T07:08:38" +ik[12840] = 0.912 +il[12840] = -170 +im[12840] = 0.0376 +ij[12840] = 27.5 +id[12841] = "2811-03-12T11:51:21" +ik[12841] = 0.241 +il[12841] = -98 +im[12841] = 0.0808 +ij[12841] = 28.5 +id[12842] = "2811-03-23T23:47:11" +ik[12842] = 0.115 +il[12842] = -62 +im[12842] = 0.0967 +ij[12842] = 28.7 +id[12843] = "2811-04-02T02:10:06" +ik[12843] = 2.56 +il[12843] = -34 +im[12843] = 0.0088 +ij[12843] = 27.6 +id[12844] = "2811-05-09T12:32:11" +ik[12844] = 3.62 +il[12844] = 84 +im[12844] = 0.1052 +ij[12844] = 27.2 +id[12845] = "2811-05-10T17:34:04" +ik[12845] = 2.717 +il[12845] = 87 +im[12845] = 0.1013 +ij[12845] = 28.6 +id[12846] = "2811-05-25T14:20:09" +ik[12846] = 54.556 +il[12846] = 134 +im[12846] = 0.1209 +ij[12846] = 9 +id[12847] = "2811-06-02T07:07:42" +ik[12847] = 2.899 +il[12847] = 158 +im[12847] = 0.0295 +ij[12847] = 28.8 +id[12848] = "2811-08-03T14:01:11" +ik[12848] = 90 +il[12848] = -12 +im[12848] = 0.1681 +ij[12848] = 6 +id[12849] = "2811-09-21T16:52:19" +ik[12849] = 0 +il[12849] = 128 +im[12849] = 0.3341 +ij[12849] = 13 +id[12850] = "2811-10-14T14:12:28" +ik[12850] = 7.89 +il[12850] = 131 +im[12850] = 0.4918 +ij[12850] = 11 +id[12851] = "2811-10-15T22:41:33" +ik[12851] = 0.5202 +il[12851] = 144 +im[12851] = 0.5203 +ij[12851] = 2 +id[12852] = "2811-11-04T15:54:54" +ik[12852] = 43.96 +il[12852] = 166 +im[12852] = 0.0151 +ij[12852] = 7.1592 +id[12853] = "2811-12-06T14:51:39" +ik[12853] = 75.92 +il[12853] = -130 +im[12853] = 0.1778 +ij[12853] = 14 +id[12854] = "2811-12-24T04:30:41" +ik[12854] = 90 +il[12854] = -87 +im[12854] = 0.2224 +ij[12854] = 5 +id[12855] = "2812-01-26T07:45:04" +ik[12855] = 2.883 +il[12855] = 16 +im[12855] = 0.1494 +ij[12855] = 27.1 +id[12856] = "2812-03-11T17:32:11" +ik[12856] = 53.774 +il[12856] = 158 +im[12856] = 0.0894 +ij[12856] = 8 +id[12857] = "2812-03-14T22:50:25" +ik[12857] = 1.559 +il[12857] = 168 +im[12857] = 0.0257 +ij[12857] = 27.3 +id[12858] = "2812-04-01T21:21:58" +ik[12858] = 0.323 +il[12858] = -137 +im[12858] = 0.028 +ij[12858] = 27.5 +id[12859] = "2812-05-09T12:38:52" +ik[12859] = 0.892 +il[12859] = -21 +im[12859] = 0.0902 +ij[12859] = 28.7 +id[12860] = "2812-05-16T04:57:04" +ik[12860] = 0.083 +il[12860] = -1 +im[12860] = 0.0116 +ij[12860] = 28.5 +id[12861] = "2812-05-16T05:27:06" +ik[12861] = 3.66 +il[12861] = -1 +im[12861] = 0.0119 +ij[12861] = 27.6 +id[12862] = "2812-05-25T09:18:25" +ik[12862] = 0.909 +il[12862] = 27 +im[12862] = 0.0828 +ij[12862] = 28.1 +id[12863] = "2812-06-22T20:23:10" +ik[12863] = 5.143 +il[12863] = 114 +im[12863] = 0.084 +ij[12863] = 27.2 +id[12864] = "2812-06-30T20:53:48" +ik[12864] = 0.984 +il[12864] = 138 +im[12864] = 0.0266 +ij[12864] = 28.6 +id[12865] = "2812-08-02T11:12:28" +ik[12865] = 1.03 +il[12865] = -144 +im[12865] = 0.0632 +ij[12865] = 12 +id[12866] = "2812-09-11T04:30:51" +ik[12866] = 3.509 +il[12866] = 157 +im[12866] = 0.0399 +ij[12866] = 28.1 +id[12867] = "2812-11-06T23:29:58" +ik[12867] = 3.919 +il[12867] = -30 +im[12867] = 0.088 +ij[12867] = 27.4 +id[12868] = "2812-12-14T12:34:16" +ik[12868] = 0.338 +il[12868] = 85 +im[12868] = 0.0592 +ij[12868] = 28.4 +id[12869] = "2812-12-26T22:45:05" +ik[12869] = 53.572 +il[12869] = 123 +im[12869] = 0.0311 +ij[12869] = 9 +id[12870] = "2813-01-01T13:56:38" +ik[12870] = 0.391 +il[12870] = 140 +im[12870] = 0.0991 +ij[12870] = 27.3 +id[12871] = "2813-01-20T00:42:25" +ik[12871] = 0.905 +il[12871] = -162 +im[12871] = 0.1416 +ij[12871] = 27.5 +id[12872] = "2813-03-07T21:27:15" +ik[12872] = 2.454 +il[12872] = -16 +im[12872] = 0.1561 +ij[12872] = 28.7 +id[12873] = "2813-03-09T05:25:01" +ik[12873] = 0.08 +il[12873] = -11 +im[12873] = 0.1192 +ij[12873] = 27.6 +id[12874] = "2813-03-15T15:40:16" +ik[12874] = 90 +il[12874] = 9 +im[12874] = 0.1315 +ij[12874] = 6 +id[12875] = "2813-04-27T01:41:57" +ik[12875] = 6.34 +il[12875] = 128 +im[12875] = 0.2242 +ij[12875] = 28.5 +id[12876] = "2813-05-01T14:52:06" +ik[12876] = 0 +il[12876] = 130 +im[12876] = 0.4275 +ij[12876] = 13 +id[12877] = "2813-05-16T23:01:40" +ik[12877] = 5.481 +il[12877] = 127 +im[12877] = 0.4662 +ij[12877] = 28.5 +id[12878] = "2813-05-23T18:41:45" +ik[12878] = 3.05 +il[12878] = 146 +im[12878] = 0.2715 +ij[12878] = 11 +id[12879] = "2813-05-27T19:28:53" +ik[12879] = 0.5104 +il[12879] = 159 +im[12879] = 0.5105 +ij[12879] = 2 +id[12880] = "2813-06-13T20:57:54" +ik[12880] = 43.25 +il[12880] = 178 +im[12880] = 0.326 +ij[12880] = 7.1651 +id[12881] = "2813-07-06T23:28:27" +ik[12881] = 2.542 +il[12881] = -139 +im[12881] = 0.2705 +ij[12881] = 28.5 +id[12882] = "2813-07-17T19:07:40" +ik[12882] = 77.18 +il[12882] = -115 +im[12882] = 0.1067 +ij[12882] = 14 +id[12883] = "2813-08-01T19:54:07" +ik[12883] = 90 +il[12883] = -76 +im[12883] = 0.094 +ij[12883] = 5 +id[12884] = "2813-08-17T13:45:33" +ik[12884] = 1.775 +il[12884] = -28 +im[12884] = 0.1254 +ij[12884] = 28.6 +id[12885] = "2813-08-27T12:59:54" +ik[12885] = 1.172 +il[12885] = 3 +im[12885] = 0.0578 +ij[12885] = 28.8 +id[12886] = "2813-10-12T22:09:33" +ik[12886] = 54.313 +il[12886] = 144 +im[12886] = 0.0163 +ij[12886] = 8 +id[12887] = "2813-12-27T08:36:31" +ik[12887] = 2.138 +il[12887] = 19 +im[12887] = 0.0031 +ij[12887] = 28.1 +id[12888] = "2813-12-30T15:52:37" +ik[12888] = 4.77 +il[12888] = 29 +im[12888] = 0.0619 +ij[12888] = 27.1 +id[12889] = "2814-03-13T07:03:21" +ik[12889] = 1.44 +il[12889] = -128 +im[12889] = 0.0076 +ij[12889] = 12 +id[12890] = "2814-04-18T14:46:01" +ik[12890] = 0.239 +il[12890] = 167 +im[12890] = 0.0833 +ij[12890] = 28.7 +id[12891] = "2814-05-23T11:22:51" +ik[12891] = 4.321 +il[12891] = -94 +im[12891] = 0.0598 +ij[12891] = 27.2 +id[12892] = "2814-06-09T12:02:09" +ik[12892] = 1.121 +il[12892] = -41 +im[12892] = 0.0347 +ij[12892] = 28.5 +id[12893] = "2814-06-10T00:52:42" +ik[12893] = 0.291 +il[12893] = -39 +im[12893] = 0.0244 +ij[12893] = 27.9 +id[12894] = "2814-06-20T12:19:35" +ik[12894] = 2.191 +il[12894] = -7 +im[12894] = 0.092 +ij[12894] = 28.8 +id[12895] = "2814-06-21T15:12:05" +ik[12895] = 1.61 +il[12895] = -3 +im[12895] = 0.0813 +ij[12895] = 28.6 +id[12896] = "2814-08-01T06:55:47" +ik[12896] = 54.591 +il[12896] = 122 +im[12896] = 0.1044 +ij[12896] = 9 +id[12897] = "2814-10-15T08:01:12" +ik[12897] = 90 +il[12897] = -10 +im[12897] = 0.2156 +ij[12897] = 6 +id[12898] = "2814-10-17T12:15:17" +ik[12898] = 0.901 +il[12898] = -4 +im[12898] = 0.2212 +ij[12898] = 27.4 +id[12899] = "2814-12-05T19:08:07" +ik[12899] = 0 +il[12899] = 136 +im[12899] = 0.07 +ij[12899] = 13 +id[12900] = "2814-12-25T10:56:42" +ik[12900] = 0.5481 +il[12900] = 126 +im[12900] = 0.5481 +ij[12900] = 2 +id[12901] = "2814-12-26T19:09:07" +ik[12901] = 1.73 +il[12901] = 137 +im[12901] = 0.5186 +ij[12901] = 11 +id[12902] = "2815-01-16T20:12:42" +ik[12902] = 42.04 +il[12902] = 173 +im[12902] = 0.2082 +ij[12902] = 7.1545 +id[12903] = "2815-02-17T00:03:27" +ik[12903] = 73.21 +il[12903] = -126 +im[12903] = 0.246 +ij[12903] = 14 +id[12904] = "2815-03-08T06:04:27" +ik[12904] = 90 +il[12904] = -78 +im[12904] = 0.197 +ij[12904] = 5 +id[12905] = "2815-03-23T09:47:22" +ik[12905] = 2.624 +il[12905] = -31 +im[12905] = 0.1459 +ij[12905] = 28.4 +id[12906] = "2815-03-26T10:19:18" +ik[12906] = 2.972 +il[12906] = -21 +im[12906] = 0.0549 +ij[12906] = 27.3 +id[12907] = "2815-04-14T18:44:38" +ik[12907] = 0.39 +il[12907] = 39 +im[12907] = 0.0928 +ij[12907] = 27.5 +id[12908] = "2815-05-24T21:19:48" +ik[12908] = 54.212 +il[12908] = 163 +im[12908] = 0.0571 +ij[12908] = 8 +id[12909] = "2815-05-30T19:57:55" +ik[12909] = 4.01 +il[12909] = -179 +im[12909] = 0.0768 +ij[12909] = 27.6 +id[12910] = "2815-06-04T14:23:42" +ik[12910] = 1.306 +il[12910] = -164 +im[12910] = 0.103 +ij[12910] = 28.7 +id[12911] = "2815-07-08T07:22:17" +ik[12911] = 5.725 +il[12911] = -62 +im[12911] = 0.0423 +ij[12911] = 27.2 +id[12912] = "2815-07-25T08:21:07" +ik[12912] = 0.059 +il[12912] = -10 +im[12912] = 0.0214 +ij[12912] = 27.91 +id[12913] = "2815-08-05T22:11:16" +ik[12913] = 0.841 +il[12913] = 26 +im[12913] = 0.0627 +ij[12913] = 28.8 +id[12914] = "2815-08-07T13:35:28" +ik[12914] = 3 +il[12914] = 31 +im[12914] = 0.0388 +ij[12914] = 28.1 +id[12915] = "2815-08-13T04:45:50" +ik[12915] = 0.166 +il[12915] = 48 +im[12915] = 0.0567 +ij[12915] = 28.6 +id[12916] = "2815-08-17T21:54:00" +ik[12916] = 0.006 +il[12916] = 62 +im[12916] = 0.0911 +ij[12916] = 28.5 +id[12917] = "2815-08-27T07:48:00" +ik[12917] = 0.529 +il[12917] = 91 +im[12917] = 0.041 +ij[12917] = 28.1 +id[12918] = "2815-10-11T09:41:45" +ik[12918] = 1.3 +il[12918] = -151 +im[12918] = 0.0304 +ij[12918] = 12 +id[12919] = "2815-11-22T04:26:51" +ik[12919] = 4.528 +il[12919] = 154 +im[12919] = 0.0186 +ij[12919] = 27.4 +id[12920] = "2816-01-15T22:11:18" +ik[12920] = 0.066 +il[12920] = -39 +im[12920] = 0.0953 +ij[12920] = 27.3 +id[12921] = "2816-02-02T16:19:18" +ik[12921] = 0.973 +il[12921] = 16 +im[12921] = 0.0837 +ij[12921] = 27.5 +id[12922] = "2816-03-12T15:20:43" +ik[12922] = 53.948 +il[12922] = 137 +im[12922] = 0.1065 +ij[12922] = 9 +id[12923] = "2816-03-18T07:12:54" +ik[12923] = 1.85 +il[12923] = 155 +im[12923] = 0.1092 +ij[12923] = 27.6 +id[12924] = "2816-03-29T05:36:23" +ik[12924] = 1.284 +il[12924] = -171 +im[12924] = 0.1171 +ij[12924] = 28.7 +id[12925] = "2816-04-26T19:28:37" +ik[12925] = 2.371 +il[12925] = -81 +im[12925] = 0.1219 +ij[12925] = 27.2 +id[12926] = "2816-05-23T13:45:17" +ik[12926] = 90 +il[12926] = 1 +im[12926] = 0.0633 +ij[12926] = 6 +id[12927] = "2816-06-04T19:37:55" +ik[12927] = 3.463 +il[12927] = 32 +im[12927] = 0.0324 +ij[12927] = 28.8 +id[12928] = "2816-07-07T09:44:55" +ik[12928] = 2.168 +il[12928] = 121 +im[12928] = 0.2831 +ij[12928] = 28.6 +id[12929] = "2816-07-10T00:03:54" +ik[12929] = 0 +il[12929] = 117 +im[12929] = 0.4124 +ij[12929] = 13 +id[12930] = "2816-07-31T19:24:57" +ik[12930] = 6.11 +il[12930] = 136 +im[12930] = 0.1457 +ij[12930] = 11 +id[12931] = "2816-08-06T11:56:17" +ik[12931] = 0.5228 +il[12931] = 153 +im[12931] = 0.5228 +ij[12931] = 2 +id[12932] = "2816-08-23T01:08:29" +ik[12932] = 44.04 +il[12932] = 173 +im[12932] = 0.2619 +ij[12932] = 7.1661 +id[12933] = "2816-09-22T01:22:30" +ik[12933] = 4.109 +il[12933] = -129 +im[12933] = 0.081 +ij[12933] = 28.6 +id[12934] = "2816-09-25T14:41:11" +ik[12934] = 77.61 +il[12934] = -121 +im[12934] = 0.1039 +ij[12934] = 14 +id[12935] = "2816-10-10T08:12:42" +ik[12935] = 90 +il[12935] = -83 +im[12935] = 0.0567 +ij[12935] = 5 +id[12936] = "2816-10-21T23:59:42" +ik[12936] = 1.288 +il[12936] = -48 +im[12936] = 0.0421 +ij[12936] = 28.5 +id[12937] = "2816-12-24T01:28:44" +ik[12937] = 53.845 +il[12937] = 147 +im[12937] = 0.0351 +ij[12937] = 8 +id[12938] = "2817-01-13T11:50:24" +ik[12938] = 4.08 +il[12938] = -151 +im[12938] = 0.1139 +ij[12938] = 27.1 +id[12939] = "2817-02-25T18:53:51" +ik[12939] = 2.64 +il[12939] = -15 +im[12939] = 0.0789 +ij[12939] = 28.1 +id[12940] = "2817-02-28T21:41:58" +ik[12940] = 0.939 +il[12940] = -5 +im[12940] = 0.0896 +ij[12940] = 27.3 +id[12941] = "2817-03-18T11:50:24" +ik[12941] = 0.629 +il[12941] = 49 +im[12941] = 0.0797 +ij[12941] = 27.5 +id[12942] = "2817-03-29T20:21:41" +ik[12942] = 0.626 +il[12942] = 84 +im[12942] = 0.0865 +ij[12942] = 28.4 +id[12943] = "2817-04-12T06:20:18" +ik[12943] = 2.049 +il[12943] = 125 +im[12943] = 0.079 +ij[12943] = 28.1 +id[12944] = "2817-05-24T20:51:21" +ik[12944] = 0.47 +il[12944] = -127 +im[12944] = 0.0505 +ij[12944] = 12 +id[12945] = "2817-07-10T01:36:46" +ik[12945] = 1.698 +il[12945] = -167 +im[12945] = 0.0546 +ij[12945] = 28.8 +id[12946] = "2817-08-02T23:14:12" +ik[12946] = 0.22 +il[12946] = -93 +im[12946] = 0.054 +ij[12946] = 28.6 +id[12947] = "2817-09-19T04:02:45" +ik[12947] = 0.908 +il[12947] = 50 +im[12947] = 0.0099 +ij[12947] = 28.5 +id[12948] = "2817-10-10T09:46:32" +ik[12948] = 54.045 +il[12948] = 115 +im[12948] = 0.1143 +ij[12948] = 9 +id[12949] = "2817-10-24T16:39:17" +ik[12949] = 2.983 +il[12949] = 159 +im[12949] = 0.105 +ij[12949] = 27.4 +id[12950] = "2817-12-23T07:55:44" +ik[12950] = 0.619 +il[12950] = -17 +im[12950] = 0.1551 +ij[12950] = 27.3 +id[12951] = "2817-12-29T21:30:32" +ik[12951] = 90 +il[12951] = 3 +im[12951] = 0.1319 +ij[12951] = 6 +id[12952] = "2818-01-15T22:33:31" +ik[12952] = 0.595 +il[12952] = 47 +im[12952] = 0.0917 +ij[12952] = 27.5 +id[12953] = "2818-02-16T14:41:38" +ik[12953] = 0 +il[12953] = 133 +im[12953] = 0.1762 +ij[12953] = 13 +id[12954] = "2818-03-06T17:18:00" +ik[12954] = 0.5583 +il[12954] = 132 +im[12954] = 0.5583 +ij[12954] = 2 +id[12955] = "2818-03-31T13:46:13" +ik[12955] = 42.96 +il[12955] = 158 +im[12955] = 0.4346 +ij[12955] = 7.1592 +id[12956] = "2818-04-10T06:55:42" +ik[12956] = 5.708 +il[12956] = -163 +im[12956] = 0.069 +ij[12956] = 27.5 +id[12957] = "2818-05-03T04:05:00" +ik[12957] = 75.56 +il[12957] = -113 +im[12957] = 0.2448 +ij[12957] = 14 +id[12958] = "2818-05-21T01:43:31" +ik[12958] = 90 +il[12958] = -69 +im[12958] = 0.0456 +ij[12958] = 5 +id[12959] = "2818-06-10T05:46:53" +ik[12959] = 4.4 +il[12959] = -7 +im[12959] = 0.115 +ij[12959] = 27.6 +id[12960] = "2818-06-28T00:28:22" +ik[12960] = 2.033 +il[12960] = 48 +im[12960] = 0.15 +ij[12960] = 28.7 +id[12961] = "2818-08-02T08:31:53" +ik[12961] = 54.512 +il[12961] = 155 +im[12961] = 0.0705 +ij[12961] = 8 +id[12962] = "2818-08-25T05:03:24" +ik[12962] = 0.303 +il[12962] = -135 +im[12962] = 0.088 +ij[12962] = 28.8 +id[12963] = "2818-09-24T18:58:53" +ik[12963] = 0.591 +il[12963] = -42 +im[12963] = 0.0832 +ij[12963] = 28.6 +id[12964] = "2818-10-14T02:47:11" +ik[12964] = 0.023 +il[12964] = 18 +im[12964] = 0.0874 +ij[12964] = 28.1 +id[12965] = "2818-12-23T15:56:09" +ik[12965] = 0.19 +il[12965] = -144 +im[12965] = 0.0751 +ij[12965] = 11 +id[12966] = "2819-01-30T07:23:17" +ik[12966] = 0.236 +il[12966] = 156 +im[12966] = 0.0493 +ij[12966] = 27.3 +id[12967] = "2819-02-16T20:21:58" +ik[12967] = 0.912 +il[12967] = -161 +im[12967] = 0.0025 +ij[12967] = 27.5 +id[12968] = "2819-04-01T15:44:49" +ik[12968] = 2.55 +il[12968] = -25 +im[12968] = 0.0438 +ij[12968] = 27.6 +id[12969] = "2819-04-05T19:59:57" +ik[12969] = 0.621 +il[12969] = -12 +im[12969] = 0.0408 +ij[12969] = 28.4 +id[12970] = "2819-04-23T09:05:54" +ik[12970] = 0.777 +il[12970] = 43 +im[12970] = 0.0932 +ij[12970] = 28.7 +id[12971] = "2819-05-09T02:48:37" +ik[12971] = 3.598 +il[12971] = 92 +im[12971] = 0.1005 +ij[12971] = 27.2 +id[12972] = "2819-05-23T07:49:14" +ik[12972] = 54.543 +il[12972] = 137 +im[12972] = 0.0997 +ij[12972] = 9 +id[12973] = "2819-06-16T19:40:56" +ik[12973] = 2.56 +il[12973] = -148 +im[12973] = 0.0217 +ij[12973] = 28.8 +id[12974] = "2819-08-01T05:52:57" +ik[12974] = 90 +il[12974] = -10 +im[12974] = 0.0313 +ij[12974] = 6 +id[12975] = "2819-08-01T21:32:32" +ik[12975] = 2.028 +il[12975] = -8 +im[12975] = 0.0591 +ij[12975] = 28.6 +id[12976] = "2819-09-20T04:05:27" +ik[12976] = 0 +il[12976] = 121 +im[12976] = 0.4042 +ij[12976] = 13 +id[12977] = "2819-10-03T19:46:03" +ik[12977] = 0.5297 +il[12977] = 138 +im[12977] = 0.5297 +ij[12977] = 2 +id[12978] = "2819-10-12T04:00:28" +ik[12978] = 8.03 +il[12978] = 145 +im[12978] = 0.2215 +ij[12978] = 1 +id[12979] = "2819-11-02T04:11:02" +ik[12979] = 43 +il[12979] = 169 +im[12979] = 0.3545 +ij[12979] = 7.16 +id[12980] = "2819-12-04T08:15:48" +ik[12980] = 75.17 +il[12980] = -128 +im[12980] = 0.0373 +ij[12980] = 14 +id[12981] = "2819-12-21T18:15:04" +ik[12981] = 90 +il[12981] = -85 +im[12981] = 0.1319 +ij[12981] = 5 +id[12982] = "2820-01-26T01:34:50" +ik[12982] = 2.935 +il[12982] = 25 +im[12982] = 0.165 +ij[12982] = 27.1 +id[12983] = "2820-02-04T15:44:31" +ik[12983] = 1.515 +il[12983] = 56 +im[12983] = 0.069 +ij[12983] = 28.5 +id[12984] = "2820-03-09T05:19:55" +ik[12984] = 53.764 +il[12984] = 160 +im[12984] = 0.1138 +ij[12984] = 8 +id[12985] = "2820-03-14T13:33:04" +ik[12985] = 1.536 +il[12985] = 176 +im[12985] = 0.0694 +ij[12985] = 27.3 +id[12986] = "2820-04-01T11:31:44" +ik[12986] = 0.335 +il[12986] = -129 +im[12986] = 0.0175 +ij[12986] = 27.5 +id[12987] = "2820-05-02T17:21:07" +ik[12987] = 0.138 +il[12987] = -32 +im[12987] = 0.0162 +ij[12987] = 28.1 +id[12988] = "2820-05-15T18:54:48" +ik[12988] = 3.65 +il[12988] = 8 +im[12988] = 0.0336 +ij[12988] = 27.6 +id[12989] = "2820-06-05T21:54:34" +ik[12989] = 1.135 +il[12989] = 72 +im[12989] = 0.0792 +ij[12989] = 28.1 +id[12990] = "2820-06-08T21:57:36" +ik[12990] = 0.697 +il[12990] = 81 +im[12990] = 0.0931 +ij[12990] = 28.7 +id[12991] = "2820-06-22T09:24:03" +ik[12991] = 5.126 +il[12991] = 122 +im[12991] = 0.0792 +ij[12991] = 27.2 +id[12992] = "2820-07-31T05:34:04" +ik[12992] = 1 +il[12992] = -141 +im[12992] = 0.0028 +ij[12992] = 11 +id[12993] = "2820-09-15T11:45:18" +ik[12993] = 0.993 +il[12993] = 180 +im[12993] = 0.0182 +ij[12993] = 28.6 +id[12994] = "2820-11-06T13:16:10" +ik[12994] = 3.902 +il[12994] = -21 +im[12994] = 0.0951 +ij[12994] = 27.4 +id[12995] = "2820-12-24T09:21:43" +ik[12995] = 53.575 +il[12995] = 125 +im[12995] = 0.1087 +ij[12995] = 9 +id[12996] = "2820-12-28T09:02:45" +ik[12996] = 1.187 +il[12996] = 136 +im[12996] = 0.0298 +ij[12996] = 28.5 +id[12997] = "2821-01-01T05:07:44" +ik[12997] = 0.395 +il[12997] = 149 +im[12997] = 0.0693 +ij[12997] = 27.3 +id[12998] = "2821-01-19T16:52:11" +ik[12998] = 0.891 +il[12998] = -153 +im[12998] = 0.137 +ij[12998] = 27.5 +id[12999] = "2821-03-09T04:35:42" +ik[12999] = 0.04 +il[12999] = -2 +im[12999] = 0.178 +ij[12999] = 27.6 +id[13000] = "2821-03-13T07:00:11" +ik[13000] = 90 +il[13000] = 10 +im[13000] = 0.048 +ij[13000] = 6 +id[13001] = "2821-04-29T08:16:15" +ik[13001] = 0 +il[13001] = 133 +im[13001] = 0.3205 +ij[13001] = 13 +id[13002] = "2821-05-03T08:19:23" +ik[13002] = 6.262 +il[13002] = 139 +im[13002] = 0.4613 +ij[13002] = 28.7 +id[13003] = "2821-05-21T11:13:55" +ik[13003] = 3.37 +il[13003] = 158 +im[13003] = 0.1552 +ij[13003] = 1 +id[13004] = "2821-05-28T22:23:03" +ik[13004] = 0.5108 +il[13004] = 164 +im[13004] = 0.5109 +ij[13004] = 2 +id[13005] = "2821-06-11T13:26:51" +ik[13005] = 43.22 +il[13005] = -179 +im[13005] = 0.4134 +ij[13005] = 7.165 +id[13006] = "2821-07-14T09:53:08" +ik[13006] = 3.567 +il[13006] = -115 +im[13006] = 0.1402 +ij[13006] = 28.7 +id[13007] = "2821-07-14T21:20:26" +ik[13007] = 3.437 +il[13007] = -114 +im[13007] = 0.1164 +ij[13007] = 28.4 +id[13008] = "2821-07-15T10:01:34" +ik[13008] = 77.07 +il[13008] = -112 +im[13008] = 0.0889 +ij[13008] = 14 +id[13009] = "2821-07-30T12:31:53" +ik[13009] = 90 +il[13009] = -73 +im[13009] = 0.075 +ij[13009] = 5 +id[13010] = "2821-09-11T23:14:55" +ik[13010] = 0.552 +il[13010] = 60 +im[13010] = 0.0592 +ij[13010] = 28.8 +id[13011] = "2821-10-10T13:59:04" +ik[13011] = 54.327 +il[13011] = 147 +im[13011] = 0.0768 +ij[13011] = 8 +id[13012] = "2821-11-07T08:36:57" +ik[13012] = 0.868 +il[13012] = -128 +im[13012] = 0.0971 +ij[13012] = 28.6 +id[13013] = "2821-12-14T23:57:33" +ik[13013] = 2.845 +il[13013] = -10 +im[13013] = 0.0213 +ij[13013] = 28.1 +id[13014] = "2821-12-30T05:10:50" +ik[13014] = 4.786 +il[13014] = 37 +im[13014] = 0.0298 +ij[13014] = 27.1 +id[13015] = "2822-03-10T17:39:50" +ik[13015] = 1.43 +il[13015] = 68 +im[13015] = 0.066 +ij[13015] = 11 +id[13016] = "2822-04-16T02:07:36" +ik[13016] = 2.98 +il[13016] = 169 +im[13016] = 0.0442 +ij[13016] = 27.6 +id[13017] = "2822-05-18T02:16:08" +ik[13017] = 0.541 +il[13017] = -101 +im[13017] = 0.0773 +ij[13017] = 28.7 +id[13018] = "2822-05-23T00:42:50" +ik[13018] = 4.308 +il[13018] = -86 +im[13018] = 0.0857 +ij[13018] = 27.2 +id[13019] = "2822-06-16T04:49:17" +ik[13019] = 1.755 +il[13019] = -10 +im[13019] = 0.0728 +ij[13019] = 28.1 +id[13020] = "2822-07-04T15:38:35" +ik[13020] = 1.926 +il[13020] = 47 +im[13020] = 0.0982 +ij[13020] = 28.8 +id[13021] = "2822-07-30T00:39:05" +ik[13021] = 54.601 +il[13021] = 125 +im[13021] = 0.0408 +ij[13021] = 9 +id[13022] = "2822-09-11T16:28:33" +ik[13022] = 3.359 +il[13022] = -103 +im[13022] = 0.0395 +ij[13022] = 28.6 +id[13023] = "2822-10-12T20:10:57" +ik[13023] = 90 +il[13023] = -9 +im[13023] = 0.0992 +ij[13023] = 6 +id[13024] = "2822-10-17T15:37:03" +ik[13024] = 0.78 +il[13024] = 6 +im[13024] = 0.2244 +ij[13024] = 27.4 +id[13025] = "2822-12-02T10:02:01" +ik[13025] = 0 +il[13025] = 127 +im[13025] = 0.3858 +ij[13025] = 13 +id[13026] = "2822-12-24T08:13:55" +ik[13026] = 1.33 +il[13026] = 152 +im[13026] = 0.4885 +ij[13026] = 1 +id[13027] = "2822-12-26T09:51:04" +ik[13027] = 0.558 +il[13027] = 153 +im[13027] = 0.558 +ij[13027] = 2 +id[13028] = "2823-01-14T11:06:36" +ik[13028] = 43.04 +il[13028] = 175 +im[13028] = 0.1645 +ij[13028] = 7.154 +id[13029] = "2823-02-14T11:12:20" +ik[13029] = 74.05 +il[13029] = -124 +im[13029] = 0.0846 +ij[13029] = 14 +id[13030] = "2823-03-05T18:10:39" +ik[13030] = 90 +il[13030] = -76 +im[13030] = 0.2021 +ij[13030] = 5 +id[13031] = "2823-03-26T06:02:24" +ik[13031] = 2.894 +il[13031] = -12 +im[13031] = 0.119 +ij[13031] = 27.3 +id[13032] = "2823-04-14T11:57:57" +ik[13032] = 0.352 +il[13032] = 48 +im[13032] = 0.0448 +ij[13032] = 27.5 +id[13033] = "2823-05-07T08:49:03" +ik[13033] = 0.014 +il[13033] = 119 +im[13033] = 0.1159 +ij[13033] = 28.5 +id[13034] = "2823-05-22T12:37:20" +ik[13034] = 54.196 +il[13034] = 166 +im[13034] = 0.1196 +ij[13034] = 8 +id[13035] = "2823-05-30T10:39:31" +ik[13035] = 4 +il[13035] = -170 +im[13035] = 0.0366 +ij[13035] = 27.6 +id[13036] = "2823-07-05T01:53:28" +ik[13036] = 1.056 +il[13036] = -61 +im[13036] = 0.0952 +ij[13036] = 28.7 +id[13037] = "2823-07-07T20:55:09" +ik[13037] = 5.703 +il[13037] = -53 +im[13037] = 0.0742 +ij[13037] = 27.2 +id[13038] = "2823-07-24T21:36:00" +ik[13038] = 0.08 +il[13038] = -1 +im[13038] = 0.0553 +ij[13038] = 27.91 +id[13039] = "2823-07-26T13:23:31" +ik[13039] = 2.149 +il[13039] = 4 +im[13039] = 0.0247 +ij[13039] = 28.1 +id[13040] = "2823-08-19T19:44:15" +ik[13040] = 0.898 +il[13040] = 78 +im[13040] = 0.0876 +ij[13040] = 28.8 +id[13041] = "2823-08-22T23:20:06" +ik[13041] = 1.089 +il[13041] = 88 +im[13041] = 0.0632 +ij[13041] = 28.4 +id[13042] = "2823-10-09T01:00:28" +ik[13042] = 1.32 +il[13042] = 52 +im[13042] = 0.0387 +ij[13042] = 11 +id[13043] = "2823-11-21T17:41:30" +ik[13043] = 4.517 +il[13043] = 163 +im[13043] = 0.0519 +ij[13043] = 27.4 +id[13044] = "2824-01-15T11:50:50" +ik[13044] = 0.068 +il[13044] = -31 +im[13044] = 0.0968 +ij[13044] = 27.3 +id[13045] = "2824-02-02T06:14:50" +ik[13045] = 0.969 +il[13045] = 24 +im[13045] = 0.0987 +ij[13045] = 27.5 +id[13046] = "2824-03-10T04:23:08" +ik[13046] = 53.925 +il[13046] = 140 +im[13046] = 0.0248 +ij[13046] = 9 +id[13047] = "2824-03-17T22:21:25" +ik[13047] = 1.82 +il[13047] = 164 +im[13047] = 0.1305 +ij[13047] = 27.6 +id[13048] = "2824-03-26T12:54:43" +ik[13048] = 1.789 +il[13048] = -169 +im[13048] = 0.0345 +ij[13048] = 28.5 +id[13049] = "2824-04-26T14:02:50" +ik[13049] = 2.316 +il[13049] = -72 +im[13049] = 0.0835 +ij[13049] = 27.2 +id[13050] = "2824-04-30T04:20:03" +ik[13050] = 2.561 +il[13050] = -61 +im[13050] = 0.1586 +ij[13050] = 28.7 +id[13051] = "2824-05-21T07:33:48" +ik[13051] = 90 +il[13051] = 3 +im[13051] = 0.1 +ij[13051] = 6 +id[13052] = "2824-07-06T03:29:22" +ik[13052] = 1.215 +il[13052] = 124 +im[13052] = 0.0792 +ij[13052] = 28.8 +id[13053] = "2824-07-07T11:12:47" +ik[13053] = 0 +il[13053] = 126 +im[13053] = 0.1861 +ij[13053] = 13 +id[13054] = "2824-07-29T11:51:21" +ik[13054] = 5.88 +il[13054] = 151 +im[13054] = 0.2735 +ij[13054] = 1 +id[13055] = "2824-08-07T16:35:04" +ik[13055] = 0.5023 +il[13055] = 159 +im[13055] = 0.5023 +ij[13055] = 2 +id[13056] = "2824-08-20T12:06:26" +ik[13056] = 44.04 +il[13056] = -170 +im[13056] = 0.401 +ij[13056] = 7.1662 +id[13057] = "2824-09-22T17:09:18" +ik[13057] = 3.067 +il[13057] = -120 +im[13057] = 0.1297 +ij[13057] = 28.8 +id[13058] = "2824-09-23T07:44:09" +ik[13058] = 77.86 +il[13058] = -118 +im[13058] = 0.1024 +ij[13058] = 14 +id[13059] = "2824-10-08T00:08:53" +ik[13059] = 90 +il[13059] = -81 +im[13059] = 0.1122 +ij[13059] = 5 +id[13060] = "2824-12-21T14:16:55" +ik[13060] = 53.859 +il[13060] = 149 +im[13060] = 0.0671 +ij[13060] = 8 +id[13061] = "2824-12-22T06:13:32" +ik[13061] = 0.355 +il[13061] = 151 +im[13061] = 0.053 +ij[13061] = 28.6 +id[13062] = "2825-01-13T02:05:03" +ik[13062] = 4.105 +il[13062] = -142 +im[13062] = 0.1013 +ij[13062] = 27.1 +id[13063] = "2825-02-11T14:15:30" +ik[13063] = 1.867 +il[13063] = -49 +im[13063] = 0.0824 +ij[13063] = 28.1 +id[13064] = "2825-02-28T03:34:59" +ik[13064] = 2.65 +il[13064] = 3 +im[13064] = 0.0868 +ij[13064] = 28.1 +id[13065] = "2825-02-28T11:14:23" +ik[13065] = 0.929 +il[13065] = 4 +im[13065] = 0.0886 +ij[13065] = 27.3 +id[13066] = "2825-03-18T01:13:57" +ik[13066] = 0.633 +il[13066] = 58 +im[13066] = 0.0919 +ij[13066] = 27.5 +id[13067] = "2825-05-22T13:46:33" +ik[13067] = 0.53 +il[13067] = 73 +im[13067] = 0.0179 +ij[13067] = 11 +id[13068] = "2825-07-23T23:28:53" +ik[13068] = 1.471 +il[13068] = -114 +im[13068] = 0.0237 +ij[13068] = 28.8 +id[13069] = "2825-08-02T17:08:26" +ik[13069] = 0.841 +il[13069] = -84 +im[13069] = 0.0789 +ij[13069] = 28.1 +id[13070] = "2825-08-28T19:53:11" +ik[13070] = 4.964 +il[13070] = -4 +im[13070] = 0.0982 +ij[13070] = 28.1 +id[13071] = "2825-10-01T21:26:47" +ik[13071] = 0.981 +il[13071] = 99 +im[13071] = 0.0901 +ij[13071] = 28.4 +id[13072] = "2825-10-07T23:49:23" +ik[13072] = 54.068 +il[13072] = 118 +im[13072] = 0.0534 +ij[13072] = 9 +id[13073] = "2825-10-24T08:22:23" +ik[13073] = 2.949 +il[13073] = 168 +im[13073] = 0.066 +ij[13073] = 27.4 +id[13074] = "2825-10-26T14:19:06" +ik[13074] = 3.371 +il[13074] = 174 +im[13074] = 0.1084 +ij[13074] = 28.6 +id[13075] = "2825-12-23T07:38:50" +ik[13075] = 0.599 +il[13075] = -7 +im[13075] = 0.1163 +ij[13075] = 27.3 +id[13076] = "2825-12-27T09:05:48" +ik[13076] = 90 +il[13076] = 4 +im[13076] = 0.2097 +ij[13076] = 6 +id[13077] = "2826-01-16T15:36:10" +ik[13077] = 0.828 +il[13077] = 57 +im[13077] = 0.1323 +ij[13077] = 27.5 +id[13078] = "2826-02-14T07:44:36" +ik[13078] = 0 +il[13078] = 135 +im[13078] = 0.1791 +ij[13078] = 13 +id[13079] = "2826-03-07T23:06:27" +ik[13079] = 0.5577 +il[13079] = 160 +im[13079] = 0.5577 +ij[13079] = 2 +id[13080] = "2826-03-29T06:49:11" +ik[13080] = 42.96 +il[13080] = -177 +im[13080] = 0.1969 +ij[13080] = 7.1591 +id[13081] = "2826-04-11T11:47:43" +ik[13081] = 4.924 +il[13081] = -154 +im[13081] = 0.0452 +ij[13081] = 27.5 +id[13082] = "2826-04-30T16:41:57" +ik[13082] = 75.37 +il[13082] = -113 +im[13082] = 0.2633 +ij[13082] = 14 +id[13083] = "2826-05-18T16:01:31" +ik[13083] = 90 +il[13083] = -67 +im[13083] = 0.1789 +ij[13083] = 5 +id[13084] = "2826-06-10T01:26:20" +ik[13084] = 4.39 +il[13084] = 3 +im[13084] = 0.069 +ij[13084] = 27.6 +id[13085] = "2826-07-29T08:00:23" +ik[13085] = 1.589 +il[13085] = 153 +im[13085] = 0.1131 +ij[13085] = 28.7 +id[13086] = "2826-07-31T01:39:38" +ik[13086] = 54.509 +il[13086] = 158 +im[13086] = 0.1144 +ij[13086] = 8 +id[13087] = "2826-08-06T02:07:43" +ik[13087] = 0.819 +il[13087] = 177 +im[13087] = 0.0154 +ij[13087] = 28.5 +id[13088] = "2826-09-08T08:34:39" +ik[13088] = 0.479 +il[13088] = -82 +im[13088] = 0.0588 +ij[13088] = 28.8 +id[13089] = "2826-12-21T03:33:07" +ik[13089] = 0.12 +il[13089] = -141 +im[13089] = 0.0179 +ij[13089] = 12 +id[13090] = "2827-01-29T20:37:56" +ik[13090] = 0.233 +il[13090] = 164 +im[13090] = 0.0779 +ij[13090] = 27.3 +id[13091] = "2827-02-16T09:39:43" +ik[13091] = 0.911 +il[13091] = -153 +im[13091] = 0.0362 +ij[13091] = 27.5 +id[13092] = "2827-04-01T05:14:13" +ik[13092] = 2.53 +il[13092] = -16 +im[13092] = 0.0761 +ij[13092] = 27.6 +id[13093] = "2827-05-08T17:11:43" +ik[13093] = 3.575 +il[13093] = 101 +im[13093] = 0.0809 +ij[13093] = 27.2 +id[13094] = "2827-05-21T01:11:12" +ik[13094] = 54.529 +il[13094] = 140 +im[13094] = 0.0184 +ij[13094] = 9 +id[13095] = "2827-05-23T00:33:59" +ik[13095] = 1.513 +il[13095] = 146 +im[13095] = 0.0618 +ij[13095] = 28.7 +id[13096] = "2827-06-30T01:52:19" +ik[13096] = 1.087 +il[13096] = -97 +im[13096] = 0.1066 +ij[13096] = 28.5 +id[13097] = "2827-07-02T05:54:14" +ik[13097] = 1.773 +il[13097] = -90 +im[13097] = 0.0444 +ij[13097] = 28.8 +id[13098] = "2827-07-29T21:50:01" +ik[13098] = 90 +il[13098] = -5 +im[13098] = 0.132 +ij[13098] = 6 +id[13099] = "2827-09-17T16:42:24" +ik[13099] = 0 +il[13099] = 137 +im[13099] = 0.24 +ij[13099] = 13 +id[13100] = "2827-10-05T01:01:01" +ik[13100] = 0.5432 +il[13100] = 122 +im[13100] = 0.5432 +ij[13100] = 2 +id[13101] = "2827-10-09T17:51:21" +ik[13101] = 8.16 +il[13101] = 136 +im[13101] = 0.2506 +ij[13101] = 11 +id[13102] = "2827-10-26T06:39:18" +ik[13102] = 2.152 +il[13102] = 165 +im[13102] = 0.2182 +ij[13102] = 27.7 +id[13103] = "2827-10-30T15:44:58" +ik[13103] = 42.96 +il[13103] = 171 +im[13103] = 0.4565 +ij[13103] = 7.1603 +id[13104] = "2827-12-02T00:38:44" +ik[13104] = 75.33 +il[13104] = -125 +im[13104] = 0.2273 +ij[13104] = 14 +id[13105] = "2827-12-19T08:05:39" +ik[13105] = 90 +il[13105] = -82 +im[13105] = 0.0482 +ij[13105] = 5 +id[13106] = "2828-01-25T19:10:49" +ik[13106] = 2.986 +il[13106] = 34 +im[13106] = 0.1537 +ij[13106] = 27.1 +id[13107] = "2828-01-27T21:46:56" +ik[13107] = 2.401 +il[13107] = 41 +im[13107] = 0.1567 +ij[13107] = 28.4 +id[13108] = "2828-02-07T03:39:10" +ik[13108] = 0.839 +il[13108] = 73 +im[13108] = 0.0953 +ij[13108] = 28.6 +id[13109] = "2828-03-06T17:07:40" +ik[13109] = 53.756 +il[13109] = 162 +im[13109] = 0.0538 +ij[13109] = 8 +id[13110] = "2828-03-14T04:12:10" +ik[13110] = 1.515 +il[13110] = -175 +im[13110] = 0.1035 +ij[13110] = 27.3 +id[13111] = "2828-04-01T01:42:23" +ik[13111] = 0.346 +il[13111] = -119 +im[13111] = 0.0541 +ij[13111] = 27.5 +id[13112] = "2828-05-01T19:52:53" +ik[13112] = 2.751 +il[13112] = -25 +im[13112] = 0.0332 +ij[13112] = 28.1 +id[13113] = "2828-05-15T08:15:11" +ik[13113] = 3.64 +il[13113] = 17 +im[13113] = 0.0697 +ij[13113] = 27.6 +id[13114] = "2828-06-21T22:22:15" +ik[13114] = 5.108 +il[13114] = 131 +im[13114] = 0.0616 +ij[13114] = 27.2 +id[13115] = "2828-07-29T00:01:26" +ik[13115] = 0.96 +il[13115] = -137 +im[13115] = 0.0612 +ij[13115] = 12 +id[13116] = "2828-09-05T05:51:04" +ik[13116] = 0.003 +il[13116] = 159 +im[13116] = 0.0592 +ij[13116] = 28.5 +id[13117] = "2828-10-02T14:26:18" +ik[13117] = 5.377 +il[13117] = -117 +im[13117] = 0.0171 +ij[13117] = 28.1 +id[13118] = "2828-10-31T03:59:45" +ik[13118] = 4.359 +il[13118] = -31 +im[13118] = 0.0177 +ij[13118] = 28.1 +id[13119] = "2828-11-06T03:06:22" +ik[13119] = 3.886 +il[13119] = -13 +im[13119] = 0.0873 +ij[13119] = 27.4 +id[13120] = "2828-12-12T09:44:47" +ik[13120] = 2.031 +il[13120] = 98 +im[13120] = 0.067 +ij[13120] = 28.6 +id[13121] = "2828-12-21T20:01:54" +ik[13121] = 53.579 +il[13121] = 127 +im[13121] = 0.1153 +ij[13121] = 9 +id[13122] = "2828-12-31T20:21:56" +ik[13122] = 0.4 +il[13122] = 158 +im[13122] = 0.031 +ij[13122] = 27.3 +id[13123] = "2829-01-19T09:13:30" +ik[13123] = 0.877 +il[13123] = -144 +im[13123] = 0.1089 +ij[13123] = 27.5 +id[13124] = "2829-03-09T04:31:08" +ik[13124] = 0.16 +il[13124] = 8 +im[13124] = 0.2156 +ij[13124] = 27.6 +id[13125] = "2829-03-10T22:12:08" +ik[13125] = 90 +il[13125] = 14 +im[13125] = 0.1886 +ij[13125] = 6 +id[13126] = "2829-04-27T00:39:12" +ik[13126] = 0 +il[13126] = 147 +im[13126] = 0.024 +ij[13126] = 13 +id[13127] = "2829-05-19T03:40:19" +ik[13127] = 3.68 +il[13127] = 149 +im[13127] = 0.4524 +ij[13127] = 11 +id[13128] = "2829-05-30T02:37:46" +ik[13128] = 0.5033 +il[13128] = 171 +im[13128] = 0.5034 +ij[13128] = 2 +id[13129] = "2829-06-09T05:47:47" +ik[13129] = 43.21 +il[13129] = -176 +im[13129] = 0.2438 +ij[13129] = 7.1647 +id[13130] = "2829-07-13T00:46:32" +ik[13130] = 77.01 +il[13130] = -110 +im[13130] = 0.2239 +ij[13130] = 14 +id[13131] = "2829-07-28T05:08:45" +ik[13131] = 90 +il[13131] = -70 +im[13131] = 0.2006 +ij[13131] = 5 +id[13132] = "2829-08-20T05:32:55" +ik[13132] = 2.591 +il[13132] = 0 +im[13132] = 0.1093 +ij[13132] = 28.7 +id[13133] = "2829-09-26T20:00:14" +ik[13133] = 0.088 +il[13133] = 115 +im[13133] = 0.1089 +ij[13133] = 28.8 +id[13134] = "2829-10-08T05:52:09" +ik[13134] = 54.341 +il[13134] = 150 +im[13134] = 0.1156 +ij[13134] = 8 +id[13135] = "2829-11-15T18:01:24" +ik[13135] = 0.134 +il[13135] = -90 +im[13135] = 0.0147 +ij[13135] = 28.5 +id[13136] = "2829-12-29T18:29:02" +ik[13136] = 4.802 +il[13136] = 43 +im[13136] = 0.008 +ij[13136] = 27.1 +id[13137] = "2830-03-08T04:04:48" +ik[13137] = 1.43 +il[13137] = -124 +im[13137] = 0.088 +ij[13137] = 12 +id[13138] = "2830-04-15T15:15:06" +ik[13138] = 2.97 +il[13138] = 178 +im[13138] = 0.0128 +ij[13138] = 27.6 +id[13139] = "2830-05-11T11:44:26" +ik[13139] = 3.768 +il[13139] = -112 +im[13139] = 0.0633 +ij[13139] = 28.1 +id[13140] = "2830-05-22T14:02:22" +ik[13140] = 4.295 +il[13140] = -77 +im[13140] = 0.0965 +ij[13140] = 27.2 +id[13141] = "2830-05-28T22:50:09" +ik[13141] = 0.908 +il[13141] = -57 +im[13141] = 0.0337 +ij[13141] = 28.1 +id[13142] = "2830-06-15T21:17:34" +ik[13142] = 0.965 +il[13142] = -1 +im[13142] = 0.0411 +ij[13142] = 28.7 +id[13143] = "2830-07-19T00:26:47" +ik[13143] = 1.358 +il[13143] = 101 +im[13143] = 0.0986 +ij[13143] = 28.8 +id[13144] = "2830-07-27T18:22:23" +ik[13144] = 54.61 +il[13144] = 128 +im[13144] = 0.0513 +ij[13144] = 9 +id[13145] = "2830-10-10T08:26:53" +ik[13145] = 90 +il[13145] = -6 +im[13145] = 0.0808 +ij[13145] = 6 +id[13146] = "2830-10-17T09:36:17" +ik[13146] = 4.296 +il[13146] = 15 +im[13146] = 0.198 +ij[13146] = 28.5 +id[13147] = "2830-10-17T20:23:42" +ik[13147] = 0.651 +il[13147] = 16 +im[13147] = 0.2084 +ij[13147] = 27.4 +id[13148] = "2830-12-02T00:46:59" +ik[13148] = 0 +il[13148] = 144 +im[13148] = 0.4722 +ij[13148] = 13 +id[13149] = "2830-12-21T21:23:02" +ik[13149] = 0.92 +il[13149] = 142 +im[13149] = 0.1174 +ij[13149] = 11 +id[13150] = "2830-12-27T12:00:39" +ik[13150] = 0.5611 +il[13150] = 159 +im[13150] = 0.5611 +ij[13150] = 2 +id[13151] = "2831-01-11T11:04:36" +ik[13151] = 40.43 +il[13151] = -170 +im[13151] = 0.4387 +ij[13151] = 7.1543 +id[13152] = "2831-02-12T00:25:23" +ik[13152] = 71.98 +il[13152] = -121 +im[13152] = 0.1446 +ij[13152] = 14 +id[13153] = "2831-03-03T06:15:59" +ik[13153] = 90 +il[13153] = -74 +im[13153] = 0.0675 +ij[13153] = 5 +id[13154] = "2831-03-24T11:50:55" +ik[13154] = 2.008 +il[13154] = -7 +im[13154] = 0.1815 +ij[13154] = 28.6 +id[13155] = "2831-03-26T01:27:16" +ik[13155] = 2.82 +il[13155] = -2 +im[13155] = 0.1617 +ij[13155] = 27.3 +id[13156] = "2831-04-14T04:57:56" +ik[13156] = 0.315 +il[13156] = 57 +im[13156] = 0.0178 +ij[13156] = 27.5 +id[13157] = "2831-05-20T03:44:11" +ik[13157] = 54.179 +il[13157] = 168 +im[13157] = 0.1079 +ij[13157] = 8 +id[13158] = "2831-05-30T01:18:05" +ik[13158] = 3.99 +il[13158] = -161 +im[13158] = 0.0128 +ij[13158] = 27.6 +id[13159] = "2831-06-24T01:23:48" +ik[13159] = 6.275 +il[13159] = -85 +im[13159] = 0.0933 +ij[13159] = 28.1 +id[13160] = "2831-07-07T10:25:22" +ik[13160] = 5.681 +il[13160] = -44 +im[13160] = 0.0944 +ij[13160] = 27.2 +id[13161] = "2831-07-24T10:52:19" +ik[13161] = 0.1 +il[13161] = 7 +im[13161] = 0.0786 +ij[13161] = 27.91 +id[13162] = "2831-08-02T13:02:12" +ik[13162] = 0.347 +il[13162] = 35 +im[13162] = 0.077 +ij[13162] = 28.7 +id[13163] = "2831-09-02T17:39:33" +ik[13163] = 0.795 +il[13163] = 131 +im[13163] = 0.0839 +ij[13163] = 28.8 +id[13164] = "2831-10-06T16:26:24" +ik[13164] = 1.34 +il[13164] = -145 +im[13164] = 0.0852 +ij[13164] = 12 +id[13165] = "2831-11-21T06:56:35" +ik[13165] = 4.507 +il[13165] = 171 +im[13165] = 0.0775 +ij[13165] = 27.4 +id[13166] = "2831-12-17T19:21:04" +ik[13166] = 0.957 +il[13166] = -108 +im[13166] = 0.0907 +ij[13166] = 28.5 +id[13167] = "2831-12-28T10:57:47" +ik[13167] = 0.819 +il[13167] = -76 +im[13167] = 0.0257 +ij[13167] = 28.1 +id[13168] = "2832-01-15T01:33:29" +ik[13168] = 0.072 +il[13168] = -22 +im[13168] = 0.0817 +ij[13168] = 27.3 +id[13169] = "2832-01-29T06:35:25" +ik[13169] = 0.113 +il[13169] = 22 +im[13169] = 0.0539 +ij[13169] = 28.6 +id[13170] = "2832-02-01T20:14:49" +ik[13170] = 0.966 +il[13170] = 33 +im[13170] = 0.097 +ij[13170] = 27.5 +id[13171] = "2832-02-12T04:15:01" +ik[13171] = 0.981 +il[13171] = 65 +im[13171] = 0.0549 +ij[13171] = 28.4 +id[13172] = "2832-03-07T17:18:26" +ik[13172] = 53.903 +il[13172] = 142 +im[13172] = 0.0736 +ij[13172] = 9 +id[13173] = "2832-03-17T13:36:01" +ik[13173] = 1.78 +il[13173] = 173 +im[13173] = 0.1281 +ij[13173] = 27.6 +id[13174] = "2832-04-26T08:54:22" +ik[13174] = 2.259 +il[13174] = -63 +im[13174] = 0.0401 +ij[13174] = 27.2 +id[13175] = "2832-05-19T01:24:58" +ik[13175] = 90 +il[13175] = 7 +im[13175] = 0.1995 +ij[13175] = 6 +id[13176] = "2832-06-05T06:54:00" +ik[13176] = 2.294 +il[13176] = 49 +im[13176] = 0.1638 +ij[13176] = 28.7 +id[13177] = "2832-07-05T00:25:51" +ik[13177] = 0 +il[13177] = 129 +im[13177] = 0.1601 +ij[13177] = 13 +id[13178] = "2832-07-26T06:31:03" +ik[13178] = 0.5119 +il[13178] = 131 +im[13178] = 0.5119 +ij[13178] = 2 +id[13179] = "2832-07-27T04:17:45" +ik[13179] = 5.63 +il[13179] = 142 +im[13179] = 0.5 +ij[13179] = 11 +id[13180] = "2832-08-18T05:36:27" +ik[13180] = 44.22 +il[13180] = 178 +im[13180] = 0.2574 +ij[13180] = 7.1662 +id[13181] = "2832-09-21T00:45:19" +ik[13181] = 78.01 +il[13181] = -115 +im[13181] = 0.237 +ij[13181] = 14 +id[13182] = "2832-10-05T16:10:23" +ik[13182] = 90 +il[13182] = -78 +im[13182] = 0.2036 +ij[13182] = 5 +id[13183] = "2832-10-11T12:13:14" +ik[13183] = 1.376 +il[13183] = -60 +im[13183] = 0.0141 +ij[13183] = 28.8 +id[13184] = "2832-12-19T03:12:13" +ik[13184] = 53.873 +il[13184] = 151 +im[13184] = 0.1251 +ij[13184] = 8 +id[13185] = "2833-01-12T16:16:09" +ik[13185] = 4.129 +il[13185] = -132 +im[13185] = 0.0698 +ij[13185] = 27.1 +id[13186] = "2833-02-22T11:22:07" +ik[13186] = 0.151 +il[13186] = -5 +im[13186] = 0.035 +ij[13186] = 28.5 +id[13187] = "2833-02-28T00:46:49" +ik[13187] = 0.92 +il[13187] = 12 +im[13187] = 0.0727 +ij[13187] = 27.3 +id[13188] = "2833-03-17T14:31:43" +ik[13188] = 0.637 +il[13188] = 67 +im[13188] = 0.0872 +ij[13188] = 27.5 +id[13189] = "2833-03-22T09:27:12" +ik[13189] = 0.576 +il[13189] = 81 +im[13189] = 0.065 +ij[13189] = 28.6 +id[13190] = "2833-05-20T06:34:33" +ik[13190] = 0.58 +il[13190] = -121 +im[13190] = 0.0707 +ij[13190] = 12 +id[13191] = "2833-06-23T17:10:10" +ik[13191] = 0.193 +il[13191] = 162 +im[13191] = 0.012 +ij[13191] = 27.9 +id[13192] = "2833-07-01T14:56:32" +ik[13192] = 2.511 +il[13192] = -174 +im[13192] = 0.0897 +ij[13192] = 28.1 +id[13193] = "2833-07-10T07:07:06" +ik[13193] = 0.626 +il[13193] = -147 +im[13193] = 0.0135 +ij[13193] = 28.7 +id[13194] = "2833-08-07T00:32:58" +ik[13194] = 1.014 +il[13194] = -61 +im[13194] = 0.0346 +ij[13194] = 28.8 +id[13195] = "2833-08-09T13:02:03" +ik[13195] = 3.859 +il[13195] = -53 +im[13195] = 0.0205 +ij[13195] = 28.1 +id[13196] = "2833-10-05T13:59:21" +ik[13196] = 54.092 +il[13196] = 121 +im[13196] = 0.0453 +ij[13196] = 9 +id[13197] = "2833-10-24T00:12:35" +ik[13197] = 2.914 +il[13197] = 177 +im[13197] = 0.0224 +ij[13197] = 27.4 +id[13198] = "2833-12-23T08:14:49" +ik[13198] = 0.575 +il[13198] = 3 +im[13198] = 0.0723 +ij[13198] = 27.3 +id[13199] = "2833-12-24T20:39:16" +ik[13199] = 90 +il[13199] = 7 +im[13199] = 0.1353 +ij[13199] = 6 +id[13200] = "2834-01-17T13:54:22" +ik[13200] = 1.116 +il[13200] = 68 +im[13200] = 0.1564 +ij[13200] = 27.5 +id[13201] = "2834-01-28T17:42:00" +ik[13201] = 3.311 +il[13201] = 91 +im[13201] = 0.3259 +ij[13201] = 28.5 +id[13202] = "2834-02-12T00:45:46" +ik[13202] = 0 +il[13202] = 123 +im[13202] = 0.4114 +ij[13202] = 13 +id[13203] = "2834-03-05T22:46:33" +ik[13203] = 8.84 +il[13203] = 151 +im[13203] = 0.4198 +ij[13203] = 11 +id[13204] = "2834-03-08T22:53:08" +ik[13204] = 0.5461 +il[13204] = 165 +im[13204] = 0.5462 +ij[13204] = 2 +id[13205] = "2834-03-26T23:48:21" +ik[13205] = 42.96 +il[13205] = -174 +im[13205] = 0.1521 +ij[13205] = 7.1589 +id[13206] = "2834-04-13T10:29:02" +ik[13206] = 4.276 +il[13206] = -143 +im[13206] = 0.094 +ij[13206] = 27.5 +id[13207] = "2834-04-13T17:23:10" +ik[13207] = 4.291 +il[13207] = -166 +im[13207] = 0.1144 +ij[13207] = 28.5 +id[13208] = "2834-04-28T04:55:08" +ik[13208] = 75.17 +il[13208] = -111 +im[13208] = 0.1135 +ij[13208] = 14 +id[13209] = "2834-05-04T17:00:57" +ik[13209] = 2.398 +il[13209] = -95 +im[13209] = 0.2437 +ij[13209] = 28.6 +id[13210] = "2834-05-16T06:13:20" +ik[13210] = 90 +il[13210] = -64 +im[13210] = 0.1917 +ij[13210] = 5 +id[13211] = "2834-05-17T00:17:37" +ik[13211] = 0.155 +il[13211] = -62 +im[13211] = 0.2007 +ij[13211] = 28.4 +id[13212] = "2834-06-09T20:49:55" +ik[13212] = 4.38 +il[13212] = 12 +im[13212] = 0.0132 +ij[13212] = 27.6 +id[13213] = "2834-07-20T18:06:15" +ik[13213] = 6.483 +il[13213] = 137 +im[13213] = 0.0919 +ij[13213] = 27.2 +id[13214] = "2834-07-28T18:47:22" +ik[13214] = 54.506 +il[13214] = 161 +im[13214] = 0.0868 +ij[13214] = 8 +id[13215] = "2834-08-26T17:58:50" +ik[13215] = 0.609 +il[13215] = -111 +im[13215] = 0.0605 +ij[13215] = 28.7 +id[13216] = "2834-09-22T10:06:40" +ik[13216] = 0.503 +il[13216] = -29 +im[13216] = 0.0106 +ij[13216] = 28.8 +id[13217] = "2834-12-18T15:21:36" +ik[13217] = 0.06 +il[13217] = -139 +im[13217] = 0.0536 +ij[13217] = 12 +id[13218] = "2835-01-29T09:49:02" +ik[13218] = 0.228 +il[13218] = 162 +im[13218] = 0.0917 +ij[13218] = 27.3 +id[13219] = "2835-02-15T23:00:09" +ik[13219] = 0.91 +il[13219] = -144 +im[13219] = 0.0667 +ij[13219] = 27.5 +id[13220] = "2835-02-17T01:00:46" +ik[13220] = 1.385 +il[13220] = -141 +im[13220] = 0.0521 +ij[13220] = 28.1 +id[13221] = "2835-03-01T09:06:11" +ik[13221] = 3.634 +il[13221] = -103 +im[13221] = 0.092 +ij[13221] = 28.1 +id[13222] = "2835-03-15T22:06:40" +ik[13222] = 1.357 +il[13222] = -57 +im[13222] = 0.0905 +ij[13222] = 28.6 +id[13223] = "2835-03-18T02:32:30" +ik[13223] = 0.441 +il[13223] = -51 +im[13223] = 0.0721 +ij[13223] = 28.5 +id[13224] = "2835-03-31T18:52:50" +ik[13224] = 2.51 +il[13224] = -8 +im[13224] = 0.0947 +ij[13224] = 27.6 +id[13225] = "2835-05-08T07:38:48" +ik[13225] = 3.552 +il[13225] = 110 +im[13225] = 0.0479 +ij[13225] = 27.2 +id[13226] = "2835-05-18T18:29:37" +ik[13226] = 54.514 +il[13226] = 143 +im[13226] = 0.0755 +ij[13226] = 9 +id[13227] = "2835-06-21T03:25:29" +ik[13227] = 1.446 +il[13227] = -114 +im[13227] = 0.0131 +ij[13227] = 28.7 +id[13228] = "2835-07-18T16:05:13" +ik[13228] = 0.378 +il[13228] = -31 +im[13228] = 0.0857 +ij[13228] = 28.8 +id[13229] = "2835-07-27T13:55:03" +ik[13229] = 90 +il[13229] = -4 +im[13229] = 0.1966 +ij[13229] = 6 +id[13230] = "2835-09-14T18:05:35" +ik[13230] = 0 +il[13230] = 125 +im[13230] = 0.1522 +ij[13230] = 13 +id[13231] = "2835-10-06T02:13:31" +ik[13231] = 0.5448 +il[13231] = 157 +im[13231] = 0.5448 +ij[13231] = 2 +id[13232] = "2835-10-07T07:45:07" +ik[13232] = 8.28 +il[13232] = 159 +im[13232] = 0.5237 +ij[13232] = 11 +id[13233] = "2835-10-21T08:31:37" +ik[13233] = 0.355 +il[13233] = 164 +im[13233] = 0.3749 +ij[13233] = 27.7 +id[13234] = "2835-10-28T18:09:10" +ik[13234] = 44 +il[13234] = 136 +im[13234] = 0.3078 +ij[13234] = 7.1602 +id[13235] = "2835-11-29T16:16:56" +ik[13235] = 75.92 +il[13235] = -122 +im[13235] = 0.2804 +ij[13235] = 14 +id[13236] = "2835-12-16T22:03:19" +ik[13236] = 90 +il[13236] = -80 +im[13236] = 0.1807 +ij[13236] = 5 +id[13237] = "2836-01-25T12:35:41" +ik[13237] = 3.035 +il[13237] = 43 +im[13237] = 0.1195 +ij[13237] = 27.1 +id[13238] = "2836-03-04T04:48:18" +ik[13238] = 53.749 +il[13238] = 164 +im[13238] = 0.0448 +ij[13238] = 8 +id[13239] = "2836-03-13T18:48:09" +ik[13239] = 1.494 +il[13239] = -166 +im[13239] = 0.1187 +ij[13239] = 27.3 +id[13240] = "2836-03-31T15:49:02" +ik[13240] = 0.357 +il[13240] = -111 +im[13240] = 0.082 +ij[13240] = 27.5 +id[13241] = "2836-05-06T21:05:19" +ik[13241] = 0.958 +il[13241] = 1 +im[13241] = 0.0363 +ij[13241] = 28.6 +id[13242] = "2836-05-14T21:41:45" +ik[13242] = 3.63 +il[13242] = 25 +im[13242] = 0.091 +ij[13242] = 27.6 +id[13243] = "2836-05-21T22:34:45" +ik[13243] = 0.028 +il[13243] = 47 +im[13243] = 0.0227 +ij[13243] = 28.5 +id[13244] = "2836-05-30T20:12:37" +ik[13244] = 0.499 +il[13244] = 74 +im[13244] = 0.0682 +ij[13244] = 28.4 +id[13245] = "2836-06-21T11:21:48" +ik[13245] = 5.091 +il[13245] = 139 +im[13245] = 0.0335 +ij[13245] = 27.2 +id[13246] = "2836-07-26T18:27:21" +ik[13246] = 0.92 +il[13246] = -134 +im[13246] = 0.0867 +ij[13246] = 12 +id[13247] = "2836-08-27T02:32:33" +ik[13247] = 0.867 +il[13247] = 141 +im[13247] = 0.0889 +ij[13247] = 28.8 +id[13248] = "2836-10-13T20:08:09" +ik[13248] = 3.735 +il[13248] = -73 +im[13248] = 0.0673 +ij[13248] = 28.1 +id[13249] = "2836-11-05T17:00:08" +ik[13249] = 3.87 +il[13249] = -4 +im[13249] = 0.0669 +ij[13249] = 27.4 +id[13250] = "2836-12-19T06:42:06" +ik[13250] = 53.585 +il[13250] = 130 +im[13250] = 0.0417 +ij[13250] = 9 +id[13251] = "2836-12-31T11:43:42" +ik[13251] = 0.404 +il[13251] = 167 +im[13251] = 0.0183 +ij[13251] = 27.3 +id[13252] = "2837-01-19T01:45:02" +ik[13252] = 0.862 +il[13252] = -135 +im[13252] = 0.0618 +ij[13252] = 27.5 +id[13253] = "2837-03-08T13:16:08" +ik[13253] = 90 +il[13253] = 16 +im[13253] = 0.2242 +ij[13253] = 6 +id[13254] = "2837-03-09T05:17:38" +ik[13254] = 0.3 +il[13254] = 17 +im[13254] = 0.2297 +ij[13254] = 27.6 +id[13255] = "2837-03-15T21:49:58" +ik[13255] = 5.403 +il[13255] = 35 +im[13255] = 0.0837 +ij[13255] = 28.6 +id[13256] = "2837-04-24T08:29:41" +ik[13256] = 0 +il[13256] = 145 +im[13256] = 0.3298 +ij[13256] = 13 +id[13257] = "2837-05-05T13:51:01" +ik[13257] = 0.5086 +il[13257] = 131 +im[13257] = 0.5087 +ij[13257] = 2 +id[13258] = "2837-05-16T20:05:16" +ik[13258] = 3.99 +il[13258] = 164 +im[13258] = 0.4582 +ij[13258] = 11 +id[13259] = "2837-06-07T10:35:16" +ik[13259] = 44.09 +il[13259] = -173 +im[13259] = 0.049 +ij[13259] = 7.1644 +id[13260] = "2837-07-10T15:07:00" +ik[13260] = 77.28 +il[13260] = -107 +im[13260] = 0.2051 +ij[13260] = 14 +id[13261] = "2837-07-19T07:26:32" +ik[13261] = 2.539 +il[13261] = -86 +im[13261] = 0.0207 +ij[13261] = 28.5 +id[13262] = "2837-07-25T21:44:44" +ik[13262] = 90 +il[13262] = -67 +im[13262] = 0.2044 +ij[13262] = 5 +id[13263] = "2837-09-18T17:24:25" +ik[13263] = 0.984 +il[13263] = 100 +im[13263] = 0.0315 +ij[13263] = 28.7 +id[13264] = "2837-10-05T21:52:20" +ik[13264] = 54.354 +il[13264] = 152 +im[13264] = 0.0769 +ij[13264] = 8 +id[13265] = "2837-10-11T08:28:10" +ik[13265] = 0.181 +il[13265] = 169 +im[13265] = 0.1115 +ij[13265] = 28.8 +id[13266] = "2837-12-29T07:46:48" +ik[13266] = 4.818 +il[13266] = 55 +im[13266] = 0.0427 +ij[13266] = 27.1 +id[13267] = "2838-01-27T06:59:45" +ik[13267] = 2.684 +il[13267] = 134 +im[13267] = 0.059 +ij[13267] = 28.1 +id[13268] = "2838-03-05T14:22:33" +ik[13268] = 1.42 +il[13268] = -122 +im[13268] = 0.0495 +ij[13268] = 12 +id[13269] = "2838-04-11T05:19:06" +ik[13269] = 2.968 +il[13269] = 174 +im[13269] = 0.079 +ij[13269] = 28.1 +id[13270] = "2838-04-15T04:19:38" +ik[13270] = 2.95 +il[13270] = 176 +im[13270] = 0.0254 +ij[13270] = 27.6 +id[13271] = "2838-04-29T00:55:43" +ik[13271] = 1.881 +il[13271] = -141 +im[13271] = 0.0545 +ij[13271] = 28.6 +id[13272] = "2838-05-07T10:38:38" +ik[13272] = 1.778 +il[13272] = -115 +im[13272] = 0.0774 +ij[13272] = 28.1 +id[13273] = "2838-05-22T03:22:21" +ik[13273] = 4.281 +il[13273] = -69 +im[13273] = 0.0885 +ij[13273] = 27.2 +id[13274] = "2838-06-15T20:04:16" +ik[13274] = 1.167 +il[13274] = 9 +im[13274] = 0.0052 +ij[13274] = 28.5 +id[13275] = "2838-06-21T04:47:08" +ik[13275] = 0.55 +il[13275] = 25 +im[13275] = 0.094 +ij[13275] = 28.4 +id[13276] = "2838-07-13T05:09:01" +ik[13276] = 0.942 +il[13276] = 93 +im[13276] = 0.0559 +ij[13276] = 28.7 +id[13277] = "2838-07-25T12:12:48" +ik[13277] = 54.618 +il[13277] = 131 +im[13277] = 0.1122 +ij[13277] = 9 +id[13278] = "2838-08-02T15:12:48" +ik[13278] = 0.484 +il[13278] = 156 +im[13278] = 0.0663 +ij[13278] = 28.8 +id[13279] = "2838-10-07T20:49:01" +ik[13279] = 90 +il[13279] = -3 +im[13279] = 0.2092 +ij[13279] = 6 +id[13280] = "2838-10-18T02:42:21" +ik[13280] = 0.512 +il[13280] = 26 +im[13280] = 0.1777 +ij[13280] = 27.4 +id[13281] = "2838-11-27T15:07:26" +ik[13281] = 0 +il[13281] = 139 +im[13281] = 0.2386 +ij[13281] = 13 +id[13282] = "2838-12-19T10:35:02" +ik[13282] = 0.52 +il[13282] = 144 +im[13282] = 0.3266 +ij[13282] = 11 +id[13283] = "2838-12-28T14:56:38" +ik[13283] = 0.5544 +il[13283] = 165 +im[13283] = 0.5544 +ij[13283] = 2 +id[13284] = "2838-12-30T14:01:28" +ik[13284] = 2.31 +il[13284] = 167 +im[13284] = 0.5018 +ij[13284] = 27.1 +id[13285] = "2839-01-08T22:49:12" +ik[13285] = 42.32 +il[13285] = 179 +im[13285] = 0.3669 +ij[13285] = 7.1541 +id[13286] = "2839-01-18T07:53:54" +ik[13286] = 0.316 +il[13286] = -166 +im[13286] = 0.038 +ij[13286] = 27.1 +id[13287] = "2839-02-09T12:05:58" +ik[13287] = 73.87 +il[13287] = -119 +im[13287] = 0.2617 +ij[13287] = 14 +id[13288] = "2839-02-28T18:23:57" +ik[13288] = 90 +il[13288] = -71 +im[13288] = 0.118 +ij[13288] = 5 +id[13289] = "2839-03-25T20:27:42" +ik[13289] = 2.751 +il[13289] = 7 +im[13289] = 0.1782 +ij[13289] = 27.3 +id[13290] = "2839-04-13T21:47:42" +ik[13290] = 0.28 +il[13290] = 66 +im[13290] = 0.0648 +ij[13290] = 27.5 +id[13291] = "2839-05-17T18:47:29" +ik[13291] = 54.163 +il[13291] = 171 +im[13291] = 0.0319 +ij[13291] = 8 +id[13292] = "2839-05-29T15:44:41" +ik[13292] = 3.98 +il[13292] = -152 +im[13292] = 0.051 +ij[13292] = 27.6 +id[13293] = "2839-06-20T14:29:28" +ik[13293] = 0.621 +il[13293] = -86 +im[13293] = 0.0837 +ij[13293] = 28.6 +id[13294] = "2839-07-06T23:56:54" +ik[13294] = 5.66 +il[13294] = -36 +im[13294] = 0.0972 +ij[13294] = 27.2 +id[13295] = "2839-07-24T00:07:12" +ik[13295] = 0.12 +il[13295] = 16 +im[13295] = 0.0885 +ij[13295] = 27.91 +id[13296] = "2839-08-24T12:45:04" +ik[13296] = 0.055 +il[13296] = 113 +im[13296] = 0.074 +ij[13296] = 28.5 +id[13297] = "2839-08-29T04:14:44" +ik[13297] = 0.287 +il[13297] = 127 +im[13297] = 0.0073 +ij[13297] = 28.7 +id[13298] = "2839-10-04T08:02:24" +ik[13298] = 1.35 +il[13298] = -143 +im[13298] = 0.078 +ij[13298] = 12 +id[13299] = "2839-11-20T20:15:14" +ik[13299] = 4.496 +il[13299] = 180 +im[13299] = 0.0902 +ij[13299] = 27.4 +id[13300] = "2839-12-13T11:12:28" +ik[13300] = 0.23 +il[13300] = -112 +im[13300] = 0.0063 +ij[13300] = 28.1 +id[13301] = "2840-01-14T15:16:08" +ik[13301] = 0.078 +il[13301] = -13 +im[13301] = 0.0498 +ij[13301] = 27.3 +id[13302] = "2840-02-01T10:15:15" +ik[13302] = 0.962 +il[13302] = 42 +im[13302] = 0.0805 +ij[13302] = 27.5 +id[13303] = "2840-03-05T05:59:30" +ik[13303] = 53.881 +il[13303] = 144 +im[13303] = 0.1167 +ij[13303] = 9 +id[13304] = "2840-03-17T04:49:35" +ik[13304] = 1.74 +il[13304] = -179 +im[13304] = 0.1012 +ij[13304] = 27.6 +id[13305] = "2840-04-23T04:03:12" +ik[13305] = 4.124 +il[13305] = -63 +im[13305] = 0.1166 +ij[13305] = 28.6 +id[13306] = "2840-04-26T04:10:48" +ik[13306] = 2.201 +il[13306] = -53 +im[13306] = 0.0188 +ij[13306] = 27.2 +id[13307] = "2840-05-16T19:11:43" +ik[13307] = 90 +il[13307] = 10 +im[13307] = 0.1716 +ij[13307] = 6 +id[13308] = "2840-07-02T12:06:25" +ik[13308] = 0 +il[13308] = 142 +im[13308] = 0.3998 +ij[13308] = 13 +id[13309] = "2840-07-24T20:49:55" +ik[13309] = 5.38 +il[13309] = 145 +im[13309] = 0.4368 +ij[13309] = 11 +id[13310] = "2840-07-27T07:53:31" +ik[13310] = 0.5211 +il[13310] = 159 +im[13310] = 0.5212 +ij[13310] = 2 +id[13311] = "2840-08-15T22:22:02" +ik[13311] = 44.43 +il[13311] = -170 +im[13311] = 0.0914 +ij[13311] = 7.1663 +id[13312] = "2840-09-18T17:56:44" +ik[13312] = 78.24 +il[13312] = -113 +im[13312] = 0.2302 +ij[13312] = 14 +id[13313] = "2840-10-03T08:14:31" +ik[13313] = 90 +il[13313] = -75 +im[13313] = 0.1683 +ij[13313] = 5 +id[13314] = "2840-10-07T23:34:22" +ik[13314] = 1.962 +il[13314] = -61 +im[13314] = 0.1739 +ij[13314] = 28.7 +id[13315] = "2840-10-27T21:50:49" +ik[13315] = 0.387 +il[13315] = 0 +im[13315] = 0.0299 +ij[13315] = 28.8 +id[13316] = "2840-10-30T11:50:47" +ik[13316] = 0.612 +il[13316] = 8 +im[13316] = 0.0617 +ij[13316] = 28.5 +id[13317] = "2840-11-09T05:07:43" +ik[13317] = 0.247 +il[13317] = 38 +im[13317] = 0.0731 +ij[13317] = 28.4 +id[13318] = "2840-12-16T16:11:05" +ik[13318] = 53.887 +il[13318] = 153 +im[13318] = 0.1031 +ij[13318] = 8 +id[13319] = "2841-01-12T06:23:14" +ik[13319] = 4.152 +il[13319] = -123 +im[13319] = 0.0269 +ij[13319] = 27.1 +id[13320] = "2841-02-27T14:15:15" +ik[13320] = 0.911 +il[13320] = 21 +im[13320] = 0.0437 +ij[13320] = 27.3 +id[13321] = "2841-03-17T03:49:55" +ik[13321] = 0.641 +il[13321] = 75 +im[13321] = 0.068 +ij[13321] = 27.5 +id[13322] = "2841-03-30T09:18:17" +ik[13322] = 2.198 +il[13322] = 116 +im[13322] = 0.0535 +ij[13322] = 28.1 +id[13323] = "2841-05-17T23:11:02" +ik[13323] = 0.63 +il[13323] = -118 +im[13323] = 0.0787 +ij[13323] = 12 +id[13324] = "2841-06-23T06:19:09" +ik[13324] = 0.176 +il[13324] = 179 +im[13324] = 0.0453 +ij[13324] = 27.9 +id[13325] = "2841-07-17T20:02:49" +ik[13325] = 2.738 +il[13325] = -113 +im[13325] = 0.0909 +ij[13325] = 28.1 +id[13326] = "2841-08-05T17:33:04" +ik[13326] = 0.676 +il[13326] = -55 +im[13326] = 0.0765 +ij[13326] = 28.7 +id[13327] = "2841-08-21T04:24:23" +ik[13327] = 0.342 +il[13327] = -7 +im[13327] = 0.0793 +ij[13327] = 28.8 +id[13328] = "2841-09-26T09:49:32" +ik[13328] = 1.278 +il[13328] = 104 +im[13328] = 0.0353 +ij[13328] = 28.5 +id[13329] = "2841-10-03T04:19:59" +ik[13329] = 54.115 +il[13329] = 123 +im[13329] = 0.1089 +ij[13329] = 9 +id[13330] = "2841-10-23T16:10:21" +ik[13330] = 2.878 +il[13330] = -175 +im[13330] = 0.0326 +ij[13330] = 27.4 +id[13331] = "2841-12-22T08:10:59" +ik[13331] = 90 +il[13331] = 10 +im[13331] = 0.0374 +ij[13331] = 6 +id[13332] = "2841-12-23T09:53:55" +ik[13332] = 0.546 +il[13332] = 12 +im[13332] = 0.0203 +ij[13332] = 27.3 +id[13333] = "2842-01-18T19:48:35" +ik[13333] = 1.486 +il[13333] = 82 +im[13333] = 0.1621 +ij[13333] = 27.5 +id[13334] = "2842-02-09T17:57:12" +ik[13334] = 0 +il[13334] = 138 +im[13334] = 0.3868 +ij[13334] = 13 +id[13335] = "2842-02-24T18:39:03" +ik[13335] = 0.5397 +il[13335] = 137 +im[13335] = 0.5398 +ij[13335] = 2 +id[13336] = "2842-03-03T11:35:31" +ik[13336] = 8.79 +il[13336] = 156 +im[13336] = 0.1268 +ij[13336] = 11 +id[13337] = "2842-03-24T08:16:49" +ik[13337] = 42.6 +il[13337] = -172 +im[13337] = 0.4212 +ij[13337] = 7.1588 +id[13338] = "2842-04-14T19:05:55" +ik[13338] = 3.785 +il[13338] = -133 +im[13338] = 0.1059 +ij[13338] = 27.5 +id[13339] = "2842-04-25T17:07:35" +ik[13339] = 74.97 +il[13339] = -108 +im[13339] = 0.1147 +ij[13339] = 14 +id[13340] = "2842-05-13T20:17:11" +ik[13340] = 90 +il[13340] = -62 +im[13340] = 0.0706 +ij[13340] = 5 +id[13341] = "2842-06-09T15:45:26" +ik[13341] = 4.37 +il[13341] = 21 +im[13341] = 0.0387 +ij[13341] = 27.6 +id[13342] = "2842-07-20T09:10:41" +ik[13342] = 6.449 +il[13342] = 146 +im[13342] = 0.1204 +ij[13342] = 27.2 +id[13343] = "2842-07-26T11:55:07" +ik[13343] = 54.502 +il[13343] = 164 +im[13343] = 0.0118 +ij[13343] = 8 +id[13344] = "2842-08-01T21:23:11" +ik[13344] = 0.213 +il[13344] = -176 +im[13344] = 0.1082 +ij[13344] = 28.6 +id[13345] = "2842-09-22T04:45:41" +ik[13345] = 0.241 +il[13345] = -20 +im[13345] = 0.0425 +ij[13345] = 28.7 +id[13346] = "2842-10-06T10:37:03" +ik[13346] = 0.365 +il[13346] = 24 +im[13346] = 0.0463 +ij[13346] = 28.8 +id[13347] = "2842-11-09T01:29:34" +ik[13347] = 0.522 +il[13347] = 129 +im[13347] = 0.0094 +ij[13347] = 28.1 +id[13348] = "2842-12-16T03:12:57" +ik[13348] = 0 +il[13348] = -137 +im[13348] = 0.0829 +ij[13348] = 12 +id[13349] = "2843-01-28T23:03:41" +ik[13349] = 0.225 +il[13349] = 170 +im[13349] = 0.0868 +ij[13349] = 27.3 +id[13350] = "2843-02-10T22:27:59" +ik[13350] = 3.086 +il[13350] = -150 +im[13350] = 0.0668 +ij[13350] = 28.1 +id[13351] = "2843-02-15T12:15:41" +ik[13351] = 0.909 +il[13351] = -136 +im[13351] = 0.0857 +ij[13351] = 27.5 +id[13352] = "2843-03-31T08:32:18" +ik[13352] = 2.49 +il[13352] = 1 +im[13352] = 0.0958 +ij[13352] = 27.6 +id[13353] = "2843-05-07T22:09:54" +ik[13353] = 3.529 +il[13353] = 119 +im[13353] = 0.0067 +ij[13353] = 27.2 +id[13354] = "2843-05-16T11:40:55" +ik[13354] = 54.499 +il[13354] = 145 +im[13354] = 0.124 +ij[13354] = 9 +id[13355] = "2843-06-03T12:07:46" +ik[13355] = 2.459 +il[13355] = -159 +im[13355] = 0.085 +ij[13355] = 28.6 +id[13356] = "2843-07-21T07:30:25" +ik[13356] = 0.109 +il[13356] = -13 +im[13356] = 0.0383 +ij[13356] = 28.7 +id[13357] = "2843-07-25T06:05:23" +ik[13357] = 90 +il[13357] = -1 +im[13357] = 0.1298 +ij[13357] = 6 +id[13358] = "2843-08-06T01:28:50" +ik[13358] = 1.92 +il[13358] = 30 +im[13358] = 0.03 +ij[13358] = 28.8 +id[13359] = "2843-09-12T17:08:02" +ik[13359] = 0 +il[13359] = 134 +im[13359] = 0.3756 +ij[13359] = 13 +id[13360] = "2843-10-04T21:43:12" +ik[13360] = 8.38 +il[13360] = 141 +im[13360] = 0.4546 +ij[13360] = 11 +id[13361] = "2843-10-07T07:31:04" +ik[13361] = 0.5338 +il[13361] = 155 +im[13361] = 0.5339 +ij[13361] = 2 +id[13362] = "2843-10-12T19:41:57" +ik[13362] = 0.917 +il[13362] = 160 +im[13362] = 0.1406 +ij[13362] = 27.7 +id[13363] = "2843-10-25T21:46:47" +ik[13363] = 43.19 +il[13363] = -170 +im[13363] = 0.0864 +ij[13363] = 7.1607 +id[13364] = "2843-11-27T09:20:28" +ik[13364] = 75.68 +il[13364] = -120 +im[13364] = 0.1694 +ij[13364] = 14 +id[13365] = "2843-12-14T12:02:44" +ik[13365] = 90 +il[13365] = -77 +im[13365] = 0.2009 +ij[13365] = 5 +id[13366] = "2844-01-25T05:46:21" +ik[13366] = 3.082 +il[13366] = 52 +im[13366] = 0.07 +ij[13366] = 27.1 +id[13367] = "2844-02-11T15:23:28" +ik[13367] = 1.223 +il[13367] = 107 +im[13367] = 0.1224 +ij[13367] = 28.5 +id[13368] = "2844-03-01T16:28:56" +ik[13368] = 53.742 +il[13368] = 166 +im[13368] = 0.1092 +ij[13368] = 8 +id[13369] = "2844-03-13T09:17:01" +ik[13369] = 1.474 +il[13369] = -157 +im[13369] = 0.1112 +ij[13369] = 27.3 +id[13370] = "2844-03-31T05:50:21" +ik[13370] = 0.367 +il[13370] = -102 +im[13370] = 0.0979 +ij[13370] = 27.5 +id[13371] = "2844-05-14T11:06:11" +ik[13371] = 3.62 +il[13371] = 34 +im[13371] = 0.0945 +ij[13371] = 27.6 +id[13372] = "2844-06-21T00:20:00" +ik[13372] = 5.073 +il[13372] = 148 +im[13372] = 0.0077 +ij[13372] = 27.2 +id[13373] = "2844-07-24T12:56:09" +ik[13373] = 0.88 +il[13373] = -131 +im[13373] = 0.06 +ij[13373] = 12 +id[13374] = "2844-08-29T16:04:04" +ik[13374] = 0.559 +il[13374] = 159 +im[13374] = 0.0863 +ij[13374] = 28.7 +id[13375] = "2844-09-10T02:52:59" +ik[13375] = 0.508 +il[13375] = -166 +im[13375] = 0.0784 +ij[13375] = 28.8 +id[13376] = "2844-09-23T07:10:16" +ik[13376] = 3.709 +il[13376] = -126 +im[13376] = 0.0678 +ij[13376] = 28.1 +id[13377] = "2844-11-05T06:54:21" +ik[13377] = 3.853 +il[13377] = 4 +im[13377] = 0.0355 +ij[13377] = 27.4 +id[13378] = "2844-12-16T17:25:51" +ik[13378] = 53.591 +il[13378] = 131 +im[13378] = 0.0595 +ij[13378] = 9 +id[13379] = "2844-12-20T13:21:30" +ik[13379] = 0.424 +il[13379] = 143 +im[13379] = 0.0292 +ij[13379] = 28.4 +id[13380] = "2844-12-31T03:12:34" +ik[13380] = 0.408 +il[13380] = 176 +im[13380] = 0.0645 +ij[13380] = 27.3 +id[13381] = "2845-01-03T18:22:10" +ik[13381] = 0.998 +il[13381] = -173 +im[13381] = 0.0366 +ij[13381] = 28.5 +id[13382] = "2845-01-18T18:25:01" +ik[13382] = 0.846 +il[13382] = -126 +im[13382] = 0.0086 +ij[13382] = 27.5 +id[13383] = "2845-03-06T04:08:38" +ik[13383] = 90 +il[13383] = 19 +im[13383] = 0.1213 +ij[13383] = 6 +id[13384] = "2845-03-09T07:15:07" +ik[13384] = 0.45 +il[13384] = 28 +im[13384] = 0.2165 +ij[13384] = 27.6 +id[13385] = "2845-04-21T09:20:55" +ik[13385] = 0 +il[13385] = 149 +im[13385] = 0.382 +ij[13385] = 13 +id[13386] = "2845-05-06T18:04:57" +ik[13386] = 0.518 +il[13386] = 137 +im[13386] = 0.5181 +ij[13386] = 2 +id[13387] = "2845-05-14T12:20:09" +ik[13387] = 4.29 +il[13387] = 159 +im[13387] = 0.1642 +ij[13387] = 11 +id[13388] = "2845-06-04T12:28:38" +ik[13388] = 44.13 +il[13388] = -171 +im[13388] = 0.3767 +ij[13388] = 7.1639 +id[13389] = "2845-07-08T04:41:25" +ik[13389] = 77.81 +il[13389] = -104 +im[13389] = 0.0496 +ij[13389] = 14 +id[13390] = "2845-07-23T14:16:18" +ik[13390] = 90 +il[13390] = -64 +im[13390] = 0.0927 +ij[13390] = 5 +id[13391] = "2845-09-12T06:02:00" +ik[13391] = 1.147 +il[13391] = 90 +im[13391] = 0.1341 +ij[13391] = 28.6 +id[13392] = "2845-10-03T13:56:05" +ik[13392] = 54.367 +il[13392] = 155 +im[13392] = 0.013 +ij[13392] = 8 +id[13393] = "2845-10-15T11:20:49" +ik[13393] = 0.267 +il[13393] = -169 +im[13393] = 0.0858 +ij[13393] = 28.7 +id[13394] = "2845-10-25T16:15:10" +ik[13394] = 0.248 +il[13394] = -137 +im[13394] = 0.1001 +ij[13394] = 28.8 +id[13395] = "2845-12-28T21:04:34" +ik[13395] = 4.834 +il[13395] = 63 +im[13395] = 0.0711 +ij[13395] = 27.1 +id[13396] = "2846-01-06T16:54:54" +ik[13396] = 2.232 +il[13396] = 91 +im[13396] = 0.0675 +ij[13396] = 28.1 +id[13397] = "2846-03-03T00:34:33" +ik[13397] = 1.41 +il[13397] = -122 +im[13397] = 0.0227 +ij[13397] = 12 +id[13398] = "2846-04-14T17:30:11" +ik[13398] = 2.94 +il[13398] = -176 +im[13398] = 0.0563 +ij[13398] = 27.6 +id[13399] = "2846-04-15T01:46:24" +ik[13399] = 2.516 +il[13399] = -175 +im[13399] = 0.0513 +ij[13399] = 28.1 +id[13400] = "2846-05-21T16:42:47" +ik[13400] = 4.268 +il[13400] = -60 +im[13400] = 0.0625 +ij[13400] = 27.2 +id[13401] = "2846-07-14T23:07:43" +ik[13401] = 0.611 +il[13401] = 109 +im[13401] = 0.0591 +ij[13401] = 28.6 +id[13402] = "2846-07-23T06:06:46" +ik[13402] = 54.625 +il[13402] = 134 +im[13402] = 0.1044 +ij[13402] = 9 +id[13403] = "2846-08-09T02:33:21" +ik[13403] = 0.137 +il[13403] = -175 +im[13403] = 0.1344 +ij[13403] = 28.7 +id[13404] = "2846-08-17T14:48:54" +ik[13404] = 0.681 +il[13404] = -149 +im[13404] = 0.0212 +ij[13404] = 28.8 +id[13405] = "2846-10-05T09:16:27" +ik[13405] = 90 +il[13405] = -1 +im[13405] = 0.2031 +ij[13405] = 6 +id[13406] = "2846-10-18T10:57:54" +ik[13406] = 0.364 +il[13406] = 35 +im[13406] = 0.1441 +ij[13406] = 27.4 +id[13407] = "2846-11-25T04:41:51" +ik[13407] = 0 +il[13407] = 140 +im[13407] = 0.1306 +ij[13407] = 13 +id[13408] = "2846-12-16T23:47:02" +ik[13408] = 0.11 +il[13408] = 147 +im[13408] = 0.5341 +ij[13408] = 11 +id[13409] = "2846-12-22T10:08:07" +ik[13409] = 3.943 +il[13409] = 163 +im[13409] = 0.0924 +ij[13409] = 27.1 +id[13410] = "2846-12-29T20:48:02" +ik[13410] = 0.5363 +il[13410] = 171 +im[13410] = 0.5363 +ij[13410] = 2 +id[13411] = "2847-01-06T11:24:37" +ik[13411] = 42.28 +il[13411] = -179 +im[13411] = 0.068 +ij[13411] = 7.1543 +id[13412] = "2847-01-21T19:25:00" +ik[13412] = 0.368 +il[13412] = -152 +im[13412] = 0.1945 +ij[13412] = 27.1 +id[13413] = "2847-02-07T01:13:20" +ik[13413] = 73.86 +il[13413] = -117 +im[13413] = 0.1939 +ij[13413] = 14 +id[13414] = "2847-02-26T06:33:42" +ik[13414] = 90 +il[13414] = -69 +im[13414] = 0.225 +ij[13414] = 5 +id[13415] = "2847-03-25T15:06:47" +ik[13415] = 2.685 +il[13415] = 16 +im[13415] = 0.1666 +ij[13415] = 27.3 +id[13416] = "2847-03-29T07:13:43" +ik[13416] = 1.972 +il[13416] = 28 +im[13416] = 0.1506 +ij[13416] = 28.4 +id[13417] = "2847-04-13T14:23:41" +ik[13417] = 0.247 +il[13417] = 75 +im[13417] = 0.1096 +ij[13417] = 27.5 +id[13418] = "2847-05-13T12:15:09" +ik[13418] = 0.171 +il[13418] = 169 +im[13418] = 0.098 +ij[13418] = 28.5 +id[13419] = "2847-05-15T09:40:07" +ik[13419] = 54.146 +il[13419] = 174 +im[13419] = 0.066 +ij[13419] = 8 +id[13420] = "2847-05-29T04:42:18" +ik[13420] = 3.968 +il[13420] = -144 +im[13420] = 0.0835 +ij[13420] = 27.6 +id[13421] = "2847-07-06T13:23:34" +ik[13421] = 5.638 +il[13421] = -27 +im[13421] = 0.081 +ij[13421] = 27.2 +id[13422] = "2847-07-23T13:23:31" +ik[13422] = 0.14 +il[13422] = 24 +im[13422] = 0.0845 +ij[13422] = 27.91 +id[13423] = "2847-08-18T09:45:12" +ik[13423] = 3.07 +il[13423] = 104 +im[13423] = 0.0301 +ij[13423] = 28.1 +id[13424] = "2847-10-01T23:42:43" +ik[13424] = 1.37 +il[13424] = -140 +im[13424] = 0.0251 +ij[13424] = 12 +id[13425] = "2847-11-20T09:30:47" +ik[13425] = 4.486 +il[13425] = -172 +im[13425] = 0.0864 +ij[13425] = 27.4 +id[13426] = "2847-11-23T22:22:39" +ik[13426] = 0.971 +il[13426] = -161 +im[13426] = 0.0884 +ij[13426] = 28.1 +id[13427] = "2848-01-14T05:02:21" +ik[13427] = 0.081 +il[13427] = -5 +im[13427] = 0.0113 +ij[13427] = 27.3 +id[13428] = "2848-02-01T00:19:14" +ik[13428] = 0.958 +il[13428] = 50 +im[13428] = 0.0531 +ij[13428] = 27.5 +id[13429] = "2848-03-02T18:33:28" +ik[13429] = 53.86 +il[13429] = 146 +im[13429] = 0.0797 +ij[13429] = 9 +id[13430] = "2848-03-16T20:16:13" +ik[13430] = 1.71 +il[13430] = -169 +im[13430] = 0.0561 +ij[13430] = 27.6 +id[13431] = "2848-04-01T19:07:40" +ik[13431] = 2.234 +il[13431] = -119 +im[13431] = 0.1012 +ij[13431] = 28.5 +id[13432] = "2848-04-25T23:45:27" +ik[13432] = 2.139 +il[13432] = -44 +im[13432] = 0.0729 +ij[13432] = 27.2 +id[13433] = "2848-05-14T12:56:42" +ik[13433] = 90 +il[13433] = 13 +im[13433] = 0.0408 +ij[13433] = 6 +id[13434] = "2848-06-30T01:13:47" +ik[13434] = 0 +il[13434] = 145 +im[13434] = 0.3849 +ij[13434] = 13 +id[13435] = "2848-07-22T13:27:50" +ik[13435] = 5.12 +il[13435] = 148 +im[13435] = 0.086 +ij[13435] = 11 +id[13436] = "2848-07-28T13:03:04" +ik[13436] = 0.5215 +il[13436] = 165 +im[13436] = 0.5216 +ij[13436] = 2 +id[13437] = "2848-08-13T13:14:29" +ik[13437] = 44.5 +il[13437] = -177 +im[13437] = 0.337 +ij[13437] = 7.1663 +id[13438] = "2848-09-16T10:44:17" +ik[13438] = 78.4 +il[13438] = -110 +im[13438] = 0.0792 +ij[13438] = 14 +id[13439] = "2848-10-01T00:20:26" +ik[13439] = 90 +il[13439] = -72 +im[13439] = 0.021 +ij[13439] = 5 +id[13440] = "2848-10-22T22:06:48" +ik[13440] = 1.653 +il[13440] = -5 +im[13440] = 0.179 +ij[13440] = 28.6 +id[13441] = "2848-11-05T23:39:24" +ik[13441] = 0.324 +il[13441] = 38 +im[13441] = 0.1444 +ij[13441] = 28.7 +id[13442] = "2848-11-12T07:15:53" +ik[13442] = 0.135 +il[13442] = 57 +im[13442] = 0.0323 +ij[13442] = 28.8 +id[13443] = "2848-12-14T05:20:36" +ik[13443] = 53.902 +il[13443] = 156 +im[13443] = 0.02 +ij[13443] = 8 +id[13444] = "2849-01-11T20:26:20" +ik[13444] = 4.175 +il[13444] = -115 +im[13444] = 0.0233 +ij[13444] = 27.1 +id[13445] = "2849-02-27T03:43:41" +ik[13445] = 0.902 +il[13445] = 30 +im[13445] = 0.0104 +ij[13445] = 27.3 +id[13446] = "2849-03-08T11:35:22" +ik[13446] = 2.662 +il[13446] = 58 +im[13446] = 0.0899 +ij[13446] = 28.1 +id[13447] = "2849-03-16T17:11:14" +ik[13447] = 0.645 +il[13447] = 84 +im[13447] = 0.0384 +ij[13447] = 27.5 +id[13448] = "2849-04-03T20:40:59" +ik[13448] = 0.515 +il[13448] = 139 +im[13448] = 0.0843 +ij[13448] = 28.4 +id[13449] = "2849-05-15T15:38:52" +ik[13449] = 0.68 +il[13449] = -116 +im[13449] = 0.0351 +ij[13449] = 12 +id[13450] = "2849-06-22T19:22:04" +ik[13450] = 0.16 +il[13450] = 179 +im[13450] = 0.0742 +ij[13450] = 27.9 +id[13451] = "2849-06-23T17:09:01" +ik[13451] = 1.503 +il[13451] = -178 +im[13451] = 0.0646 +ij[13451] = 28.1 +id[13452] = "2849-08-26T21:44:21" +ik[13452] = 1.013 +il[13452] = 20 +im[13452] = 0.0149 +ij[13452] = 28.6 +id[13453] = "2849-08-31T12:38:00" +ik[13453] = 0.178 +il[13453] = 34 +im[13453] = 0.0779 +ij[13453] = 28.7 +id[13454] = "2849-09-04T21:28:59" +ik[13454] = 0.699 +il[13454] = 47 +im[13454] = 0.0959 +ij[13454] = 28.8 +id[13455] = "2849-09-30T18:51:17" +ik[13455] = 54.138 +il[13455] = 126 +im[13455] = 0.0959 +ij[13455] = 9 +id[13456] = "2849-10-23T08:18:47" +ik[13456] = 2.841 +il[13456] = -166 +im[13456] = 0.078 +ij[13456] = 27.4 +id[13457] = "2849-12-19T19:38:17" +ik[13457] = 90 +il[13457] = 12 +im[13457] = 0.1843 +ij[13457] = 6 +id[13458] = "2849-12-23T12:40:07" +ik[13458] = 0.51 +il[13458] = 22 +im[13458] = 0.0478 +ij[13458] = 27.3 +id[13459] = "2850-01-20T13:52:34" +ik[13459] = 1.989 +il[13459] = 97 +im[13459] = 0.1348 +ij[13459] = 27.5 +id[13460] = "2850-02-07T10:44:44" +ik[13460] = 0 +il[13460] = 140 +im[13460] = 0.118 +ij[13460] = 13 +id[13461] = "2850-02-25T18:22:51" +ik[13461] = 0.5586 +il[13461] = 143 +im[13461] = 0.5587 +ij[13461] = 2 +id[13462] = "2850-03-01T00:20:09" +ik[13462] = 8.72 +il[13462] = 155 +im[13462] = 0.4145 +ij[13462] = 11 +id[13463] = "2850-03-21T19:57:20" +ik[13463] = 42.38 +il[13463] = -170 +im[13463] = 0.3808 +ij[13463] = 7.1586 +id[13464] = "2850-04-15T19:17:01" +ik[13464] = 3.392 +il[13464] = -123 +im[13464] = 0.0871 +ij[13464] = 27.5 +id[13465] = "2850-04-23T05:20:09" +ik[13465] = 74.77 +il[13465] = -106 +im[13465] = 0.2639 +ij[13465] = 14 +id[13466] = "2850-05-11T10:13:04" +ik[13466] = 90 +il[13466] = -59 +im[13466] = 0.0962 +ij[13466] = 5 +id[13467] = "2850-06-09T10:23:06" +ik[13467] = 4.36 +il[13467] = 30 +im[13467] = 0.0869 +ij[13467] = 27.6 +id[13468] = "2850-07-20T00:13:47" +ik[13468] = 6.416 +il[13468] = 154 +im[13468] = 0.126 +ij[13468] = 27.2 +id[13469] = "2850-07-24T04:59:19" +ik[13469] = 54.497 +il[13469] = 167 +im[13469] = 0.0874 +ij[13469] = 8 +id[13470] = "2850-08-12T14:52:39" +ik[13470] = 0.618 +il[13470] = -134 +im[13470] = 0.0287 +ij[13470] = 28.5 +id[13471] = "2850-10-17T12:50:41" +ik[13471] = 0.666 +il[13471] = 69 +im[13471] = 0.0853 +ij[13471] = 28.7 +id[13472] = "2850-10-18T20:18:05" +ik[13472] = 0.935 +il[13472] = 73 +im[13472] = 0.0867 +ij[13472] = 28.6 +id[13473] = "2850-10-20T03:53:42" +ik[13473] = 1.092 +il[13473] = 77 +im[13473] = 0.081 +ij[13473] = 28.1 +id[13474] = "2850-10-20T09:51:07" +ik[13474] = 0.082 +il[13474] = 78 +im[13474] = 0.0792 +ij[13474] = 28.8 +id[13475] = "2850-12-13T15:15:50" +ik[13475] = 0.06 +il[13475] = -135 +im[13475] = 0.0541 +ij[13475] = 12 +id[13476] = "2851-01-21T16:59:05" +ik[13476] = 2.373 +il[13476] = 169 +im[13476] = 0.0441 +ij[13476] = 28.1 +id[13477] = "2851-01-28T12:21:27" +ik[13477] = 0.221 +il[13477] = 179 +im[13477] = 0.0653 +ij[13477] = 27.3 +id[13478] = "2851-02-15T01:37:27" +ik[13478] = 0.908 +il[13478] = -127 +im[13478] = 0.0908 +ij[13478] = 27.5 +id[13479] = "2851-03-30T22:08:01" +ik[13479] = 2.47 +il[13479] = 10 +im[13479] = 0.0802 +ij[13479] = 27.6 +id[13480] = "2851-04-11T12:40:19" +ik[13480] = 0.621 +il[13480] = 46 +im[13480] = 0.0466 +ij[13480] = 28.4 +id[13481] = "2851-05-07T12:44:06" +ik[13481] = 3.505 +il[13481] = 127 +im[13481] = 0.0456 +ij[13481] = 27.2 +id[13482] = "2851-05-14T04:45:06" +ik[13482] = 54.483 +il[13482] = 148 +im[13482] = 0.1011 +ij[13482] = 9 +id[13483] = "2851-07-08T07:51:27" +ik[13483] = 0.597 +il[13483] = -42 +im[13483] = 0.022 +ij[13483] = 28.5 +id[13484] = "2851-07-22T22:26:20" +ik[13484] = 90 +il[13484] = 2 +im[13484] = 0.0265 +ij[13484] = 6 +id[13485] = "2851-08-28T14:24:25" +ik[13485] = 5.388 +il[13485] = 103 +im[13485] = 0.3511 +ij[13485] = 28.7 +id[13486] = "2851-09-10T05:20:36" +ik[13486] = 0 +il[13486] = 130 +im[13486] = 0.3801 +ij[13486] = 13 +id[13487] = "2851-10-02T11:42:43" +ik[13487] = 8.46 +il[13487] = 144 +im[13487] = 0.1254 +ij[13487] = 11 +id[13488] = "2851-10-06T01:03:21" +ik[13488] = 1.693 +il[13488] = 159 +im[13488] = 0.4465 +ij[13488] = 27.7 +id[13489] = "2851-10-08T06:19:00" +ik[13489] = 0.5158 +il[13489] = 161 +im[13489] = 0.5158 +ij[13489] = 2 +id[13490] = "2851-10-23T12:42:19" +ik[13490] = 43.31 +il[13490] = 179 +im[13490] = 0.3671 +ij[13490] = 7.1609 +id[13491] = "2851-11-20T00:16:07" +ik[13491] = 0.468 +il[13491] = -128 +im[13491] = 0.2673 +ij[13491] = 28.7 +id[13492] = "2851-11-22T18:32:24" +ik[13492] = 0.821 +il[13492] = -122 +im[13492] = 0.1626 +ij[13492] = 28.8 +id[13493] = "2851-11-25T01:44:58" +ik[13493] = 75.85 +il[13493] = -117 +im[13493] = 0.0442 +ij[13493] = 14 +id[13494] = "2851-12-01T08:24:00" +ik[13494] = 1.08 +il[13494] = -102 +im[13494] = 0.2223 +ij[13494] = 28.6 +id[13495] = "2851-12-12T02:05:42" +ik[13495] = 90 +il[13495] = -75 +im[13495] = 0.079 +ij[13495] = 5 +id[13496] = "2852-01-24T22:42:20" +ik[13496] = 3.128 +il[13496] = 61 +im[13496] = 0.0081 +ij[13496] = 27.1 +id[13497] = "2852-02-28T04:02:28" +ik[13497] = 53.736 +il[13497] = 168 +im[13497] = 0.0957 +ij[13497] = 8 +id[13498] = "2852-03-12T23:45:00" +ik[13498] = 1.454 +il[13498] = -149 +im[13498] = 0.0835 +ij[13498] = 27.3 +id[13499] = "2852-03-30T19:54:20" +ik[13499] = 0.377 +il[13499] = -93 +im[13499] = 0.0991 +ij[13499] = 27.5 +id[13500] = "2852-05-14T00:25:01" +ik[13500] = 3.61 +il[13500] = 42 +im[13500] = 0.0806 +ij[13500] = 27.6 +id[13501] = "2852-05-14T08:18:57" +ik[13501] = 0.277 +il[13501] = 43 +im[13501] = 0.0833 +ij[13501] = 28.1 +id[13502] = "2852-06-20T13:19:33" +ik[13502] = 5.056 +il[13502] = 145 +im[13502] = 0.0357 +ij[13502] = 27.2 +id[13503] = "2852-07-22T07:29:16" +ik[13503] = 0.84 +il[13503] = -128 +im[13503] = 0.0089 +ij[13503] = 12 +id[13504] = "2852-09-01T06:38:26" +ik[13504] = 3.593 +il[13504] = 177 +im[13504] = 0.0793 +ij[13504] = 28.1 +id[13505] = "2852-09-12T04:57:12" +ik[13505] = 0.156 +il[13505] = -150 +im[13505] = 0.0846 +ij[13505] = 28.5 +id[13506] = "2852-09-23T18:52:07" +ik[13506] = 0.451 +il[13506] = -115 +im[13506] = 0.047 +ij[13506] = 28.8 +id[13507] = "2852-09-23T23:53:48" +ik[13507] = 0.253 +il[13507] = -114 +im[13507] = 0.0502 +ij[13507] = 28.7 +id[13508] = "2852-10-10T18:08:38" +ik[13508] = 1.967 +il[13508] = -63 +im[13508] = 0.0807 +ij[13508] = 28.6 +id[13509] = "2852-11-04T20:52:06" +ik[13509] = 3.836 +il[13509] = 14 +im[13509] = 0.0098 +ij[13509] = 27.4 +id[13510] = "2852-12-14T04:16:42" +ik[13510] = 53.598 +il[13510] = 133 +im[13510] = 0.1227 +ij[13510] = 9 +id[13511] = "2852-12-30T18:47:40" +ik[13511] = 0.413 +il[13511] = -175 +im[13511] = 0.1033 +ij[13511] = 27.3 +id[13512] = "2853-01-18T11:18:20" +ik[13512] = 0.828 +il[13512] = -117 +im[13512] = 0.0487 +ij[13512] = 27.5 +id[13513] = "2853-03-03T18:54:03" +ik[13513] = 90 +il[13513] = 21 +im[13513] = 0.0602 +ij[13513] = 6 +id[13514] = "2853-03-09T10:18:56" +ik[13514] = 0.61 +il[13514] = 36 +im[13514] = 0.1793 +ij[13514] = 27.6 +id[13515] = "2853-04-19T01:45:26" +ik[13515] = 0 +il[13515] = 150 +im[13515] = 0.1825 +ij[13515] = 13 +id[13516] = "2853-05-07T19:26:43" +ik[13516] = 0.5189 +il[13516] = 143 +im[13516] = 0.519 +ij[13516] = 2 +id[13517] = "2853-05-12T04:32:09" +ik[13517] = 4.59 +il[13517] = 157 +im[13517] = 0.2554 +ij[13517] = 11 +id[13518] = "2853-06-02T02:06:08" +ik[13518] = 44.01 +il[13518] = -168 +im[13518] = 0.4213 +ij[13518] = 7.1638 +id[13519] = "2853-07-05T19:10:54" +ik[13519] = 77.73 +il[13519] = -102 +im[13519] = 0.16 +ij[13519] = 14 +id[13520] = "2853-07-21T06:46:59" +ik[13520] = 90 +il[13520] = -61 +im[13520] = 0.0801 +ij[13520] = 5 +id[13521] = "2853-07-28T23:00:31" +ik[13521] = 3 +il[13521] = -38 +im[13521] = 0.1752 +ij[13521] = 28.4 +id[13522] = "2853-10-01T06:06:56" +ik[13522] = 54.38 +il[13522] = 158 +im[13522] = 0.0916 +ij[13522] = 8 +id[13523] = "2853-11-08T20:43:43" +ik[13523] = 0.133 +il[13523] = -83 +im[13523] = 0.0791 +ij[13523] = 28.8 +id[13524] = "2853-11-10T01:20:29" +ik[13524] = 0.906 +il[13524] = -79 +im[13524] = 0.0929 +ij[13524] = 28.7 +id[13525] = "2853-11-22T20:08:02" +ik[13525] = 0.134 +il[13525] = -38 +im[13525] = 0.0491 +ij[13525] = 28.5 +id[13526] = "2853-12-03T03:00:17" +ik[13526] = 0.945 +il[13526] = -7 +im[13526] = 0.0317 +ij[13526] = 28.6 +id[13527] = "2853-12-18T06:23:11" +ik[13527] = 1.792 +il[13527] = 40 +im[13527] = 0.0436 +ij[13527] = 28.1 +id[13528] = "2853-12-28T10:17:53" +ik[13528] = 4.85 +il[13528] = 72 +im[13528] = 0.0879 +ij[13528] = 27.1 +id[13529] = "2854-02-28T10:35:02" +ik[13529] = 1.39 +il[13529] = -118 +im[13529] = 0.0804 +ij[13529] = 12 +id[13530] = "2854-04-14T06:38:58" +ik[13530] = 2.93 +il[13530] = -167 +im[13530] = 0.0775 +ij[13530] = 27.6 +id[13531] = "2854-05-21T06:06:19" +ik[13531] = 4.254 +il[13531] = -51 +im[13531] = 0.0254 +ij[13531] = 27.2 +id[13532] = "2854-07-21T00:00:44" +ik[13532] = 54.632 +il[13532] = 137 +im[13532] = 0.0316 +ij[13532] = 9 +id[13533] = "2854-09-02T02:10:27" +ik[13533] = 2.089 +il[13533] = -92 +im[13533] = 0.0207 +ij[13533] = 28.8 +id[13534] = "2854-09-05T17:05:08" +ik[13534] = 1.487 +il[13534] = -81 +im[13534] = 0.1261 +ij[13534] = 28.7 +id[13535] = "2854-10-02T21:50:58" +ik[13535] = 90 +il[13535] = 2 +im[13535] = 0.0729 +ij[13535] = 6 +id[13536] = "2854-10-14T17:19:49" +ik[13536] = 5.919 +il[13536] = 34 +im[13536] = 0.1184 +ij[13536] = 28.6 +id[13537] = "2854-10-18T21:34:19" +ik[13537] = 0.203 +il[13537] = 44 +im[13537] = 0.1173 +ij[13537] = 27.4 +id[13538] = "2854-10-30T14:14:21" +ik[13538] = 5.236 +il[13538] = 70 +im[13538] = 0.0549 +ij[13538] = 28.5 +id[13539] = "2854-11-22T19:11:21" +ik[13539] = 0 +il[13539] = 130 +im[13539] = 0.4043 +ij[13539] = 13 +id[13540] = "2854-12-05T05:26:12" +ik[13540] = 0.544 +il[13540] = 157 +im[13540] = 0.544 +ij[13540] = 2 +id[13541] = "2854-12-14T13:01:55" +ik[13541] = 0.28 +il[13541] = -175 +im[13541] = 0.377 +ij[13541] = 11 +id[13542] = "2854-12-27T10:20:12" +ik[13542] = 2.605 +il[13542] = -170 +im[13542] = 0.3497 +ij[13542] = 28.5 +id[13543] = "2855-01-04T00:29:03" +ik[13543] = 42.22 +il[13543] = -177 +im[13543] = 0.3351 +ij[13543] = 7.1544 +id[13544] = "2855-01-23T20:33:53" +ik[13544] = 0.493 +il[13544] = -140 +im[13544] = 0.2107 +ij[13544] = 27.1 +id[13545] = "2855-02-04T14:06:46" +ik[13545] = 73.79 +il[13545] = -114 +im[13545] = 0.0214 +ij[13545] = 14 +id[13546] = "2855-02-23T18:43:27" +ik[13546] = 90 +il[13546] = -67 +im[13546] = 0.1861 +ij[13546] = 5 +id[13547] = "2855-03-25T09:31:40" +ik[13547] = 2.623 +il[13547] = 26 +im[13547] = 0.131 +ij[13547] = 27.3 +id[13548] = "2855-04-13T06:52:33" +ik[13548] = 0.215 +il[13548] = 84 +im[13548] = 0.1382 +ij[13548] = 27.5 +id[13549] = "2855-05-13T00:29:12" +ik[13549] = 54.13 +il[13549] = 176 +im[13549] = 0.1209 +ij[13549] = 8 +id[13550] = "2855-05-28T19:05:51" +ik[13550] = 3.957 +il[13550] = -135 +im[13550] = 0.1004 +ij[13550] = 27.6 +id[13551] = "2855-07-06T02:51:33" +ik[13551] = 5.617 +il[13551] = -19 +im[13551] = 0.0498 +ij[13551] = 27.2 +id[13552] = "2855-07-23T02:38:24" +ik[13552] = 0.16 +il[13552] = 33 +im[13552] = 0.067 +ij[13552] = 27.91 +id[13553] = "2855-07-27T12:01:09" +ik[13553] = 3.024 +il[13553] = 47 +im[13553] = 0.0843 +ij[13553] = 28.1 +id[13554] = "2855-08-19T22:34:36" +ik[13554] = 0.645 +il[13554] = 118 +im[13554] = 0.0323 +ij[13554] = 28.1 +id[13555] = "2855-09-29T15:33:07" +ik[13555] = 1.38 +il[13555] = -137 +im[13555] = 0.0455 +ij[13555] = 12 +id[13556] = "2855-11-03T08:53:57" +ik[13556] = 1.746 +il[13556] = 157 +im[13556] = 0.0276 +ij[13556] = 28.1 +id[13557] = "2855-11-19T22:49:26" +ik[13557] = 4.475 +il[13557] = -163 +im[13557] = 0.0656 +ij[13557] = 27.4 +id[13558] = "2855-11-27T09:53:42" +ik[13558] = 1.905 +il[13558] = -141 +im[13558] = 0.0755 +ij[13558] = 28.6 +id[13559] = "2855-12-24T05:39:59" +ik[13559] = 0.996 +il[13559] = -59 +im[13559] = 0.099 +ij[13559] = 28.5 +id[13560] = "2856-01-13T18:52:06" +ik[13560] = 0.083 +il[13560] = 4 +im[13560] = 0.0372 +ij[13560] = 27.3 +id[13561] = "2856-01-31T14:27:13" +ik[13561] = 0.954 +il[13561] = 59 +im[13561] = 0.015 +ij[13561] = 27.5 +id[13562] = "2856-02-29T07:00:20" +ik[13562] = 53.838 +il[13562] = 149 +im[13562] = 0.0168 +ij[13562] = 9 +id[13563] = "2856-03-16T11:49:04" +ik[13563] = 1.67 +il[13563] = -161 +im[13563] = 0.0133 +ij[13563] = 27.6 +id[13564] = "2856-04-25T19:47:39" +ik[13564] = 2.076 +il[13564] = -35 +im[13564] = 0.1245 +ij[13564] = 27.2 +id[13565] = "2856-05-12T06:42:34" +ik[13565] = 90 +il[13565] = 16 +im[13565] = 0.1237 +ij[13565] = 6 +id[13566] = "2856-06-27T14:07:12" +ik[13566] = 0 +il[13566] = 147 +im[13566] = 0.1146 +ij[13566] = 13 +id[13567] = "2856-07-20T06:10:04" +ik[13567] = 4.85 +il[13567] = 150 +im[13567] = 0.3055 +ij[13567] = 11 +id[13568] = "2856-07-29T15:10:31" +ik[13568] = 0.5109 +il[13568] = 171 +im[13568] = 0.511 +ij[13568] = 2 +id[13569] = "2856-08-11T13:09:47" +ik[13569] = 44.96 +il[13569] = -173 +im[13569] = 0.3881 +ij[13569] = 7.1662 +id[13570] = "2856-09-14T03:27:34" +ik[13570] = 78.56 +il[13570] = -107 +im[13570] = 0.1134 +ij[13570] = 14 +id[13571] = "2856-09-28T16:31:40" +ik[13571] = 90 +il[13571] = -69 +im[13571] = 0.144 +ij[13571] = 5 +id[13572] = "2856-11-27T03:55:17" +ik[13572] = 0.312 +il[13572] = 113 +im[13572] = 0.0869 +ij[13572] = 28.8 +id[13573] = "2856-12-02T15:39:10" +ik[13573] = 1.344 +il[13573] = 130 +im[13573] = 0.0605 +ij[13573] = 28.7 +id[13574] = "2856-12-11T18:33:41" +ik[13574] = 53.917 +il[13574] = 158 +im[13574] = 0.0799 +ij[13574] = 8 +id[13575] = "2857-01-11T10:28:06" +ik[13575] = 4.198 +il[13575] = -106 +im[13575] = 0.0674 +ij[13575] = 27.1 +id[13576] = "2857-01-18T18:59:19" +ik[13576] = 0.26 +il[13576] = -83 +im[13576] = 0.0742 +ij[13576] = 28.6 +id[13577] = "2857-02-16T05:45:36" +ik[13577] = 2.787 +il[13577] = 6 +im[13577] = 0.041 +ij[13577] = 28.1 +id[13578] = "2857-02-26T17:09:00" +ik[13578] = 0.893 +il[13578] = 38 +im[13578] = 0.0306 +ij[13578] = 27.3 +id[13579] = "2857-02-28T11:38:49" +ik[13579] = 0.055 +il[13579] = 44 +im[13579] = 0.0043 +ij[13579] = 28.5 +id[13580] = "2857-03-16T06:26:20" +ik[13580] = 0.648 +il[13580] = 92 +im[13580] = 0.0043 +ij[13580] = 27.5 +id[13581] = "2857-04-04T02:36:57" +ik[13581] = 2.3 +il[13581] = 139 +im[13581] = 0.0686 +ij[13581] = 28.1 +id[13582] = "2857-05-13T07:50:52" +ik[13582] = 0.73 +il[13582] = -113 +im[13582] = 0.0341 +ij[13582] = 12 +id[13583] = "2857-06-22T08:16:56" +ik[13583] = 0.143 +il[13583] = -173 +im[13583] = 0.0899 +ij[13583] = 27.9 +id[13584] = "2857-09-18T22:39:56" +ik[13584] = 1.445 +il[13584] = 100 +im[13584] = 0.1111 +ij[13584] = 28.8 +id[13585] = "2857-09-26T14:51:47" +ik[13585] = 0.785 +il[13585] = 123 +im[13585] = 0.0288 +ij[13585] = 28.7 +id[13586] = "2857-09-28T09:33:15" +ik[13586] = 54.16 +il[13586] = 128 +im[13586] = 0.0207 +ij[13586] = 9 +id[13587] = "2857-10-13T01:26:02" +ik[13587] = 1.001 +il[13587] = 173 +im[13587] = 0.0137 +ij[13587] = 28.4 +id[13588] = "2857-10-23T00:30:19" +ik[13588] = 2.803 +il[13588] = -157 +im[13588] = 0.1135 +ij[13588] = 27.4 +id[13589] = "2857-11-25T22:25:58" +ik[13589] = 3.276 +il[13589] = -53 +im[13589] = 0.0081 +ij[13589] = 28.6 +id[13590] = "2857-12-17T07:00:16" +ik[13590] = 90 +il[13590] = 14 +im[13590] = 0.192 +ij[13590] = 6 +id[13591] = "2857-12-23T16:51:13" +ik[13591] = 0.466 +il[13591] = 33 +im[13591] = 0.1004 +ij[13591] = 27.3 +id[13592] = "2858-01-20T03:23:12" +ik[13592] = 1.888 +il[13592] = 95 +im[13592] = 0.2471 +ij[13592] = 27.5 +id[13593] = "2858-01-23T08:30:20" +ik[13593] = 2.763 +il[13593] = 116 +im[13593] = 0.0498 +ij[13593] = 27.5 +id[13594] = "2858-02-05T03:28:01" +ik[13594] = 0 +il[13594] = 144 +im[13594] = 0.2394 +ij[13594] = 13 +id[13595] = "2858-02-26T12:57:36" +ik[13595] = 8.63 +il[13595] = 158 +im[13595] = 0.5648 +ij[13595] = 11 +id[13596] = "2858-02-26T22:51:09" +ik[13596] = 0.5666 +il[13596] = 170 +im[13596] = 0.5667 +ij[13596] = 2 +id[13597] = "2858-03-19T07:09:46" +ik[13597] = 42.15 +il[13597] = -168 +im[13597] = 0.1149 +ij[13597] = 7.1583 +id[13598] = "2858-04-16T13:48:06" +ik[13598] = 3.065 +il[13598] = -113 +im[13598] = 0.063 +ij[13598] = 27.5 +id[13599] = "2858-04-20T17:03:32" +ik[13599] = 74.57 +il[13599] = -104 +im[13599] = 0.2396 +ij[13599] = 14 +id[13600] = "2858-04-26T01:12:34" +ik[13600] = 2.002 +il[13600] = -91 +im[13600] = 0.2278 +ij[13600] = 28.5 +id[13601] = "2858-05-09T00:00:07" +ik[13601] = 90 +il[13601] = -57 +im[13601] = 0.1947 +ij[13601] = 5 +id[13602] = "2858-06-09T04:46:00" +ik[13602] = 4.35 +il[13602] = 40 +im[13602] = 0.1236 +ij[13602] = 27.6 +id[13603] = "2858-07-19T15:07:06" +ik[13603] = 6.383 +il[13603] = 163 +im[13603] = 0.1093 +ij[13603] = 27.2 +id[13604] = "2858-07-21T22:03:30" +ik[13604] = 54.492 +il[13604] = 170 +im[13604] = 0.1203 +ij[13604] = 8 +id[13605] = "2858-10-03T05:21:59" +ik[13605] = 0.929 +il[13605] = 34 +im[13605] = 0.0915 +ij[13605] = 28.1 +id[13606] = "2858-10-10T12:48:14" +ik[13606] = 0.711 +il[13606] = 57 +im[13606] = 0.0413 +ij[13606] = 28.1 +id[13607] = "2858-11-03T08:59:42" +ik[13607] = 0.306 +il[13607] = 131 +im[13607] = 0.0911 +ij[13607] = 28.8 +id[13608] = "2858-12-11T03:24:28" +ik[13608] = 0.13 +il[13608] = -132 +im[13608] = 0.0154 +ij[13608] = 12 +id[13609] = "2859-01-28T01:36:06" +ik[13609] = 0.217 +il[13609] = -172 +im[13609] = 0.0317 +ij[13609] = 27.3 +id[13610] = "2859-02-14T14:57:53" +ik[13610] = 0.907 +il[13610] = -118 +im[13610] = 0.0797 +ij[13610] = 27.5 +id[13611] = "2859-03-23T14:46:19" +ik[13611] = 0.664 +il[13611] = -3 +im[13611] = 0.0765 +ij[13611] = 28.5 +id[13612] = "2859-03-30T11:52:57" +ik[13612] = 2.45 +il[13612] = 18 +im[13612] = 0.0525 +ij[13612] = 27.6 +id[13613] = "2859-05-07T03:24:59" +ik[13613] = 3.48 +il[13613] = 136 +im[13613] = 0.0854 +ij[13613] = 27.2 +id[13614] = "2859-05-11T21:42:11" +ik[13614] = 54.467 +il[13614] = 151 +im[13614] = 0.0163 +ij[13614] = 9 +id[13615] = "2859-07-20T14:51:43" +ik[13615] = 90 +il[13615] = 5 +im[13615] = 0.1625 +ij[13615] = 6 +id[13616] = "2859-09-08T17:03:58" +ik[13616] = 0 +il[13616] = 148 +im[13616] = 0.2136 +ij[13616] = 13 +id[13617] = "2859-09-25T23:39:02" +ik[13617] = 0.5343 +il[13617] = 133 +im[13617] = 0.5343 +ij[13617] = 2 +id[13618] = "2859-09-29T05:33:47" +ik[13618] = 2.138 +il[13618] = 136 +im[13618] = 0.4019 +ij[13618] = 27.7 +id[13619] = "2859-09-30T01:50:52" +ik[13619] = 8.54 +il[13619] = 146 +im[13619] = 0.3315 +ij[13619] = 11 +id[13620] = "2859-10-21T03:33:37" +ik[13620] = 42.44 +il[13620] = -178 +im[13620] = 0.427 +ij[13620] = 7.1614 +id[13621] = "2859-11-22T18:50:23" +ik[13621] = 75.07 +il[13621] = -114 +im[13621] = 0.2281 +ij[13621] = 14 +id[13622] = "2859-12-09T16:17:31" +ik[13622] = 90 +il[13622] = -72 +im[13622] = 0.0908 +ij[13622] = 5 +id[13623] = "2859-12-12T02:33:21" +ik[13623] = 0.604 +il[13623] = -65 +im[13623] = 0.0205 +ij[13623] = 28.8 +id[13624] = "2859-12-22T14:58:18" +ik[13624] = 2.276 +il[13624] = -32 +im[13624] = 0.161 +ij[13624] = 28.7 +id[13625] = "2860-01-24T15:29:52" +ik[13625] = 3.173 +il[13625] = 70 +im[13625] = 0.0538 +ij[13625] = 27.1 +id[13626] = "2860-02-03T15:48:40" +ik[13626] = 2.16 +il[13626] = 102 +im[13626] = 0.1218 +ij[13626] = 28.4 +id[13627] = "2860-02-25T15:35:59" +ik[13627] = 53.73 +il[13627] = 171 +im[13627] = 0.0136 +ij[13627] = 8 +id[13628] = "2860-03-06T21:10:56" +ik[13628] = 0.655 +il[13628] = -158 +im[13628] = 0.078 +ij[13628] = 28.6 +id[13629] = "2860-03-12T14:10:19" +ik[13629] = 1.435 +il[13629] = -140 +im[13629] = 0.0418 +ij[13629] = 27.3 +id[13630] = "2860-03-30T09:50:19" +ik[13630] = 0.387 +il[13630] = -85 +im[13630] = 0.0837 +ij[13630] = 27.5 +id[13631] = "2860-04-21T22:22:13" +ik[13631] = 0.504 +il[13631] = -15 +im[13631] = 0.062 +ij[13631] = 28.1 +id[13632] = "2860-05-13T13:47:54" +ik[13632] = 3.6 +il[13632] = 51 +im[13632] = 0.0532 +ij[13632] = 27.6 +id[13633] = "2860-05-27T13:39:34" +ik[13633] = 0.048 +il[13633] = 95 +im[13633] = 0.0479 +ij[13633] = 28.5 +id[13634] = "2860-05-29T09:55:35" +ik[13634] = 1.04 +il[13634] = 99 +im[13634] = 0.0735 +ij[13634] = 28.1 +id[13635] = "2860-07-20T02:02:24" +ik[13635] = 0.79 +il[13635] = -125 +im[13635] = 0.0624 +ij[13635] = 12 +id[13636] = "2860-10-07T21:39:01" +ik[13636] = 1.165 +il[13636] = -62 +im[13636] = 0.0075 +ij[13636] = 28.8 +id[13637] = "2860-10-19T15:44:12" +ik[13637] = 0.407 +il[13637] = -26 +im[13637] = 0.0651 +ij[13637] = 28.7 +id[13638] = "2860-11-04T10:49:25" +ik[13638] = 3.819 +il[13638] = 22 +im[13638] = 0.0451 +ij[13638] = 27.4 +id[13639] = "2860-12-11T15:07:33" +ik[13639] = 53.607 +il[13639] = 135 +im[13639] = 0.1054 +ij[13639] = 9 +id[13640] = "2860-12-30T10:27:13" +ik[13640] = 0.416 +il[13640] = -167 +im[13640] = 0.1257 +ij[13640] = 27.3 +id[13641] = "2861-01-09T21:44:38" +ik[13641] = 0.499 +il[13641] = -134 +im[13641] = 0.1045 +ij[13641] = 28.6 +id[13642] = "2861-01-18T04:21:26" +ik[13642] = 0.81 +il[13642] = -108 +im[13642] = 0.096 +ij[13642] = 27.5 +id[13643] = "2861-03-01T09:30:38" +ik[13643] = 90 +il[13643] = 24 +im[13643] = 0.1987 +ij[13643] = 6 +id[13644] = "2861-03-09T14:40:48" +ik[13644] = 0.79 +il[13644] = 45 +im[13644] = 0.1194 +ij[13644] = 27.6 +id[13645] = "2861-04-16T18:50:50" +ik[13645] = 0 +il[13645] = 151 +im[13645] = 0.1646 +ij[13645] = 13 +id[13646] = "2861-05-08T21:47:40" +ik[13646] = 0.5125 +il[13646] = 149 +im[13646] = 0.5126 +ij[13646] = 2 +id[13647] = "2861-05-09T20:36:57" +ik[13647] = 4.88 +il[13647] = 160 +im[13647] = 0.4983 +ij[13647] = 11 +id[13648] = "2861-05-29T03:45:39" +ik[13648] = 6.08 +il[13648] = -168 +im[13648] = 0.0645 +ij[13648] = 27.6 +id[13649] = "2861-05-30T17:53:25" +ik[13649] = 43.96 +il[13649] = -165 +im[13649] = 0.2036 +ij[13649] = 7.1638 +id[13650] = "2861-07-03T09:44:09" +ik[13650] = 77.62 +il[13650] = -99 +im[13650] = 0.2479 +ij[13650] = 14 +id[13651] = "2861-07-18T23:16:47" +ik[13651] = 90 +il[13651] = -58 +im[13651] = 0.1993 +ij[13651] = 5 +id[13652] = "2861-07-28T06:38:35" +ik[13652] = 2.256 +il[13652] = -30 +im[13652] = 0.1159 +ij[13652] = 28.5 +id[13653] = "2861-09-28T22:17:48" +ik[13653] = 54.392 +il[13653] = 161 +im[13653] = 0.1107 +ij[13653] = 8 +id[13654] = "2861-11-22T22:12:43" +ik[13654] = 0.118 +il[13654] = -29 +im[13654] = 0.0238 +ij[13654] = 28.8 +id[13655] = "2861-12-05T03:40:36" +ik[13655] = 2.424 +il[13655] = 9 +im[13655] = 0.0289 +ij[13655] = 28.1 +id[13656] = "2861-12-05T13:56:55" +ik[13656] = 0.924 +il[13656] = 10 +im[13656] = 0.0217 +ij[13656] = 28.7 +id[13657] = "2861-12-27T23:33:52" +ik[13657] = 4.865 +il[13657] = 80 +im[13657] = 0.0894 +ij[13657] = 27.1 +id[13658] = "2862-02-25T20:35:31" +ik[13658] = 1.38 +il[13658] = -108 +im[13658] = 0.0838 +ij[13658] = 12 +id[13659] = "2862-04-13T19:44:34" +ik[13659] = 2.91 +il[13659] = -159 +im[13659] = 0.0866 +ij[13659] = 27.6 +id[13660] = "2862-05-20T19:33:25" +ik[13660] = 4.24 +il[13660] = -43 +im[13660] = 0.0206 +ij[13660] = 27.2 +id[13661] = "2862-06-07T15:53:16" +ik[13661] = 3.689 +il[13661] = 13 +im[13661] = 0.0463 +ij[13661] = 28.1 +id[13662] = "2862-06-22T07:37:20" +ik[13662] = 1.163 +il[13662] = 59 +im[13662] = 0.0234 +ij[13662] = 28.5 +id[13663] = "2862-07-18T17:58:16" +ik[13663] = 54.638 +il[13663] = 140 +im[13663] = 0.0601 +ij[13663] = 9 +id[13664] = "2862-09-18T08:04:24" +ik[13664] = 3.669 +il[13664] = -33 +im[13664] = 0.0212 +ij[13664] = 28.8 +id[13665] = "2862-09-30T10:30:47" +ik[13665] = 90 +il[13665] = 4 +im[13665] = 0.1121 +ij[13665] = 6 +id[13666] = "2862-10-06T13:23:31" +ik[13666] = 3.766 +il[13666] = 22 +im[13666] = 0.1442 +ij[13666] = 28.7 +id[13667] = "2862-10-19T11:03:38" +ik[13667] = 0.03 +il[13667] = 53 +im[13667] = 0.0833 +ij[13667] = 27.4 +id[13668] = "2862-11-21T09:44:36" +ik[13668] = 0 +il[13668] = 143 +im[13668] = 0.4488 +ij[13668] = 13 +id[13669] = "2862-12-06T07:47:18" +ik[13669] = 0.5482 +il[13669] = 177 +im[13669] = 0.5482 +ij[13669] = 2 +id[13670] = "2862-12-12T02:16:48" +ik[13670] = 0.68 +il[13670] = -166 +im[13670] = 0.0723 +ij[13670] = 11 +id[13671] = "2863-01-02T08:47:10" +ik[13671] = 41.96 +il[13671] = -173 +im[13671] = 0.4611 +ij[13671] = 7.1546 +id[13672] = "2863-01-25T06:38:18" +ik[13672] = 0.634 +il[13672] = -130 +im[13672] = 0.1905 +ij[13672] = 27.1 +id[13673] = "2863-02-02T03:41:55" +ik[13673] = 72.75 +il[13673] = -112 +im[13673] = 0.2234 +ij[13673] = 14 +id[13674] = "2863-02-21T06:54:58" +ik[13674] = 90 +il[13674] = -65 +im[13674] = 0.0424 +ij[13674] = 5 +id[13675] = "2863-03-25T03:35:39" +ik[13675] = 2.564 +il[13675] = 35 +im[13675] = 0.077 +ij[13675] = 27.3 +id[13676] = "2863-04-12T23:12:59" +ik[13676] = 0.184 +il[13676] = 93 +im[13676] = 0.1431 +ij[13676] = 27.5 +id[13677] = "2863-04-22T19:57:38" +ik[13677] = 1.06 +il[13677] = 124 +im[13677] = 0.0273 +ij[13677] = 28.6 +id[13678] = "2863-05-10T15:07:37" +ik[13678] = 54.113 +il[13678] = 179 +im[13678] = 0.1002 +ij[13678] = 8 +id[13679] = "2863-05-28T09:24:03" +ik[13679] = 3.945 +il[13679] = -127 +im[13679] = 0.1031 +ij[13679] = 27.6 +id[13680] = "2863-07-05T16:16:52" +ik[13680] = 5.596 +il[13680] = -10 +im[13680] = 0.0137 +ij[13680] = 27.2 +id[13681] = "2863-07-07T07:20:12" +ik[13681] = 2.882 +il[13681] = -5 +im[13681] = 0.0395 +ij[13681] = 28.1 +id[13682] = "2863-07-20T08:46:36" +ik[13682] = 1.686 +il[13682] = 35 +im[13682] = 0.0111 +ij[13682] = 28.1 +id[13683] = "2863-07-22T15:47:31" +ik[13683] = 0.179 +il[13683] = 42 +im[13683] = 0.0381 +ij[13683] = 27.91 +id[13684] = "2863-09-27T07:30:43" +ik[13684] = 1.39 +il[13684] = -135 +im[13684] = 0.0869 +ij[13684] = 12 +id[13685] = "2863-11-13T11:36:14" +ik[13685] = 0.11 +il[13685] = -173 +im[13685] = 0.068 +ij[13685] = 28.7 +id[13686] = "2863-11-19T12:08:05" +ik[13686] = 4.465 +il[13686] = -155 +im[13686] = 0.032 +ij[13686] = 27.4 +id[13687] = "2864-01-13T08:41:52" +ik[13687] = 0.087 +il[13687] = 13 +im[13687] = 0.075 +ij[13687] = 27.3 +id[13688] = "2864-01-31T04:36:59" +ik[13688] = 0.949 +il[13688] = 68 +im[13688] = 0.0267 +ij[13688] = 27.5 +id[13689] = "2864-02-16T23:41:16" +ik[13689] = 1.066 +il[13689] = 120 +im[13689] = 0.0078 +ij[13689] = 28.4 +id[13690] = "2864-02-24T16:17:11" +ik[13690] = 1.567 +il[13690] = 144 +im[13690] = 0.1138 +ij[13690] = 28.6 +id[13691] = "2864-02-26T19:16:31" +ik[13691] = 53.817 +il[13691] = 151 +im[13691] = 0.0985 +ij[13691] = 9 +id[13692] = "2864-03-16T03:23:36" +ik[13692] = 1.63 +il[13692] = -152 +im[13692] = 0.0549 +ij[13692] = 27.6 +id[13693] = "2864-04-25T16:14:45" +ik[13693] = 2.009 +il[13693] = -25 +im[13693] = 0.1603 +ij[13693] = 27.2 +id[13694] = "2864-05-10T00:22:14" +ik[13694] = 90 +il[13694] = 19 +im[13694] = 0.2127 +ij[13694] = 6 +id[13695] = "2864-06-26T03:42:22" +ik[13695] = 0 +il[13695] = 153 +im[13695] = 0.1473 +ij[13695] = 13 +id[13696] = "2864-07-17T17:25:01" +ik[13696] = 0.4952 +il[13696] = 143 +im[13696] = 0.4952 +ij[13696] = 2 +id[13697] = "2864-07-17T22:56:38" +ik[13697] = 4.58 +il[13697] = 153 +im[13697] = 0.4944 +ij[13697] = 11 +id[13698] = "2864-08-09T02:44:56" +ik[13698] = 43.96 +il[13698] = -170 +im[13698] = 0.1952 +ij[13698] = 7.1665 +id[13699] = "2864-09-11T21:25:40" +ik[13699] = 77.74 +il[13699] = -104 +im[13699] = 0.2332 +ij[13699] = 14 +id[13700] = "2864-09-26T08:42:53" +ik[13700] = 90 +il[13700] = -66 +im[13700] = 0.2173 +ij[13700] = 5 +id[13701] = "2864-11-07T17:43:26" +ik[13701] = 0.157 +il[13701] = 63 +im[13701] = 0.1389 +ij[13701] = 28.5 +id[13702] = "2864-12-09T07:53:52" +ik[13702] = 53.932 +il[13702] = 161 +im[13702] = 0.1243 +ij[13702] = 8 +id[13703] = "2864-12-11T15:49:23" +ik[13703] = 0.24 +il[13703] = 168 +im[13703] = 0.1103 +ij[13703] = 28.8 +id[13704] = "2864-12-29T00:03:01" +ik[13704] = 1.404 +il[13704] = -138 +im[13704] = 0.0596 +ij[13704] = 28.7 +id[13705] = "2865-01-11T00:28:58" +ik[13705] = 4.22 +il[13705] = -97 +im[13705] = 0.0986 +ij[13705] = 27.1 +id[13706] = "2865-02-02T06:59:36" +ik[13706] = 2.077 +il[13706] = -28 +im[13706] = 0.0485 +ij[13706] = 28.1 +id[13707] = "2865-02-18T06:19:09" +ik[13707] = 2.338 +il[13707] = 22 +im[13707] = 0.0502 +ij[13707] = 28.1 +id[13708] = "2865-02-26T06:37:25" +ik[13708] = 0.885 +il[13708] = 47 +im[13708] = 0.0627 +ij[13708] = 27.3 +id[13709] = "2865-03-15T19:43:12" +ik[13709] = 0.651 +il[13709] = 101 +im[13709] = 0.0368 +ij[13709] = 27.5 +id[13710] = "2865-05-10T23:54:14" +ik[13710] = 0.78 +il[13710] = -110 +im[13710] = 0.0791 +ij[13710] = 12 +id[13711] = "2865-06-21T21:18:51" +ik[13711] = 0.127 +il[13711] = -164 +im[13711] = 0.0879 +ij[13711] = 27.9 +id[13712] = "2865-07-26T04:31:35" +ik[13712] = 0.596 +il[13712] = -57 +im[13712] = 0.0851 +ij[13712] = 28.1 +id[13713] = "2865-08-17T13:46:33" +ik[13713] = 4.569 +il[13713] = 11 +im[13713] = 0.0519 +ij[13713] = 28.1 +id[13714] = "2865-09-26T00:22:20" +ik[13714] = 54.183 +il[13714] = 131 +im[13714] = 0.0734 +ij[13714] = 9 +id[13715] = "2865-10-03T13:48:00" +ik[13715] = 2.395 +il[13715] = 154 +im[13715] = 0.1059 +ij[13715] = 28.8 +id[13716] = "2865-10-04T03:17:08" +ik[13716] = 1.695 +il[13716] = 156 +im[13716] = 0.1137 +ij[13716] = 28.5 +id[13717] = "2865-10-22T16:56:05" +ik[13717] = 2.764 +il[13717] = -148 +im[13717] = 0.1311 +ij[13717] = 27.4 +id[13718] = "2865-10-23T08:00:31" +ik[13718] = 2.026 +il[13718] = -146 +im[13718] = 0.1271 +ij[13718] = 28.7 +id[13719] = "2865-12-14T18:22:15" +ik[13719] = 90 +il[13719] = 16 +im[13719] = 0.0618 +ij[13719] = 6 +id[13720] = "2865-12-23T22:33:52" +ik[13720] = 0.411 +il[13720] = 42 +im[13720] = 0.1568 +ij[13720] = 27.3 +id[13721] = "2866-01-21T19:58:45" +ik[13721] = 2.543 +il[13721] = 106 +im[13721] = 0.2452 +ij[13721] = 27.5 +id[13722] = "2866-02-02T21:26:07" +ik[13722] = 0 +il[13722] = 157 +im[13722] = 0.4491 +ij[13722] = 13 +id[13723] = "2866-02-24T01:35:02" +ik[13723] = 8.53 +il[13723] = 160 +im[13723] = 0.3423 +ij[13723] = 11 +id[13724] = "2866-02-28T02:18:48" +ik[13724] = 0.5613 +il[13724] = 176 +im[13724] = 0.5613 +ij[13724] = 2 +id[13725] = "2866-03-16T21:31:42" +ik[13725] = 42 +il[13725] = -165 +im[13725] = 0.265 +ij[13725] = 7.1581 +id[13726] = "2866-04-17T04:07:39" +ik[13726] = 2.786 +il[13726] = -104 +im[13726] = 0.0106 +ij[13726] = 27.5 +id[13727] = "2866-04-18T04:51:30" +ik[13727] = 74.31 +il[13727] = -101 +im[13727] = 0.0608 +ij[13727] = 14 +id[13728] = "2866-05-06T13:42:44" +ik[13728] = 90 +il[13728] = -54 +im[13728] = 0.1587 +ij[13728] = 5 +id[13729] = "2866-05-24T08:26:26" +ik[13729] = 0.416 +il[13729] = 1 +im[13729] = 0.1825 +ij[13729] = 28.4 +id[13730] = "2866-06-05T06:02:09" +ik[13730] = 0.473 +il[13730] = 38 +im[13730] = 0.1232 +ij[13730] = 28.6 +id[13731] = "2866-06-08T22:51:36" +ik[13731] = 4.34 +il[13731] = 49 +im[13731] = 0.1465 +ij[13731] = 27.6 +id[13732] = "2866-07-19T05:55:05" +ik[13732] = 6.351 +il[13732] = 172 +im[13732] = 0.074 +ij[13732] = 27.2 +id[13733] = "2866-07-19T15:07:41" +ik[13733] = 54.486 +il[13733] = 173 +im[13733] = 0.0807 +ij[13733] = 8 +id[13734] = "2866-12-08T15:43:12" +ik[13734] = 0.19 +il[13734] = -130 +im[13734] = 0.0745 +ij[13734] = 12 +id[13735] = "2867-01-27T14:50:45" +ik[13735] = 0.214 +il[13735] = -164 +im[13735] = 0.0108 +ij[13735] = 27.3 +id[13736] = "2867-02-14T04:17:25" +ik[13736] = 0.905 +il[13736] = -110 +im[13736] = 0.0532 +ij[13736] = 27.5 +id[13737] = "2867-03-30T01:38:30" +ik[13737] = 2.43 +il[13737] = 27 +im[13737] = 0.0181 +ij[13737] = 27.6 +id[13738] = "2867-04-09T08:46:53" +ik[13738] = 2.412 +il[13738] = 59 +im[13738] = 0.0669 +ij[13738] = 28.6 +id[13739] = "2867-05-06T18:06:45" +ik[13739] = 3.455 +il[13739] = 145 +im[13739] = 0.1121 +ij[13739] = 27.2 +id[13740] = "2867-05-09T14:35:42" +ik[13740] = 54.45 +il[13740] = 154 +im[13740] = 0.0763 +ij[13740] = 9 +id[13741] = "2867-07-18T07:24:10" +ik[13741] = 90 +il[13741] = 8 +im[13741] = 0.1901 +ij[13741] = 6 +id[13742] = "2867-08-20T22:29:42" +ik[13742] = 3.021 +il[13742] = 100 +im[13742] = 0.2022 +ij[13742] = 27.7 +id[13743] = "2867-09-05T04:51:57" +ik[13743] = 0 +il[13743] = 135 +im[13743] = 0.221 +ij[13743] = 13 +id[13744] = "2867-09-23T18:29:42" +ik[13744] = 7.777 +il[13744] = -179 +im[13744] = 0.3969 +ij[13744] = 27.7 +id[13745] = "2867-09-27T01:39:45" +ik[13745] = 0.5442 +il[13745] = -180 +im[13745] = 0.5443 +ij[13745] = 2 +id[13746] = "2867-09-27T15:59:02" +ik[13746] = 8.59 +il[13746] = -180 +im[13746] = 0.5393 +ij[13746] = 11 +id[13747] = "2867-10-19T05:56:32" +ik[13747] = 44.04 +il[13747] = -175 +im[13747] = 0.2454 +ij[13747] = 7.1615 +id[13748] = "2867-11-20T11:13:20" +ik[13748] = 76.26 +il[13748] = -111 +im[13748] = 0.2752 +ij[13748] = 14 +id[13749] = "2867-12-07T06:31:59" +ik[13749] = 90 +il[13749] = -70 +im[13749] = 0.1984 +ij[13749] = 5 +id[13750] = "2867-12-28T17:00:57" +ik[13750] = 0.963 +il[13750] = -3 +im[13750] = 0.0198 +ij[13750] = 28.8 +id[13751] = "2868-01-21T03:56:26" +ik[13751] = 2.236 +il[13751] = 70 +im[13751] = 0.15 +ij[13751] = 28.7 +id[13752] = "2868-01-24T08:06:18" +ik[13752] = 3.216 +il[13752] = 80 +im[13752] = 0.1008 +ij[13752] = 27.1 +id[13753] = "2868-02-18T13:11:34" +ik[13753] = 0.948 +il[13753] = 159 +im[13753] = 0.1248 +ij[13753] = 28.5 +id[13754] = "2868-02-23T03:09:30" +ik[13754] = 53.726 +il[13754] = 173 +im[13754] = 0.0858 +ij[13754] = 8 +id[13755] = "2868-03-12T04:32:05" +ik[13755] = 1.417 +il[13755] = -131 +im[13755] = 0.0133 +ij[13755] = 27.3 +id[13756] = "2868-03-29T23:48:32" +ik[13756] = 0.396 +il[13756] = -76 +im[13756] = 0.0542 +ij[13756] = 27.5 +id[13757] = "2868-04-03T15:59:54" +ik[13757] = 0.385 +il[13757] = -61 +im[13757] = 0.1038 +ij[13757] = 28.1 +id[13758] = "2868-04-24T17:26:26" +ik[13758] = 2.871 +il[13758] = 3 +im[13758] = 0.0358 +ij[13758] = 28.1 +id[13759] = "2868-05-13T03:09:23" +ik[13759] = 3.59 +il[13759] = 59 +im[13759] = 0.0174 +ij[13759] = 27.6 +id[13760] = "2868-05-30T21:59:36" +ik[13760] = 1.149 +il[13760] = 114 +im[13760] = 0.0709 +ij[13760] = 28.6 +id[13761] = "2868-06-07T02:32:55" +ik[13761] = 0.58 +il[13761] = 135 +im[13761] = 0.0699 +ij[13761] = 28.4 +id[13762] = "2868-07-17T20:36:57" +ik[13762] = 0.75 +il[13762] = -122 +im[13762] = 0.0832 +ij[13762] = 12 +id[13763] = "2868-09-23T06:31:49" +ik[13763] = 4.726 +il[13763] = -96 +im[13763] = 0.0282 +ij[13763] = 28.1 +id[13764] = "2868-10-21T18:23:19" +ik[13764] = 4.82 +il[13764] = -10 +im[13764] = 0.0611 +ij[13764] = 28.1 +id[13765] = "2868-10-22T02:06:34" +ik[13765] = 1.852 +il[13765] = -9 +im[13765] = 0.0558 +ij[13765] = 28.8 +id[13766] = "2868-11-04T00:50:44" +ik[13766] = 3.801 +il[13766] = 30 +im[13766] = 0.0779 +ij[13766] = 27.4 +id[13767] = "2868-11-15T11:02:06" +ik[13767] = 1.146 +il[13767] = 65 +im[13767] = 0.1122 +ij[13767] = 28.7 +id[13768] = "2868-12-09T02:05:31" +ik[13768] = 53.616 +il[13768] = 137 +im[13768] = 0.022 +ij[13768] = 9 +id[13769] = "2868-12-30T02:13:52" +ik[13769] = 0.42 +il[13769] = -158 +im[13769] = 0.1307 +ij[13769] = 27.3 +id[13770] = "2869-01-10T06:13:49" +ik[13770] = 0.704 +il[13770] = -123 +im[13770] = 0.0707 +ij[13770] = 28.5 +id[13771] = "2869-01-17T21:37:25" +ik[13771] = 0.79 +il[13771] = -99 +im[13771] = 0.1315 +ij[13771] = 27.5 +id[13772] = "2869-02-26T23:59:15" +ik[13772] = 90 +il[13772] = 27 +im[13772] = 0.2126 +ij[13772] = 6 +id[13773] = "2869-03-09T20:46:13" +ik[13773] = 0.98 +il[13773] = 54 +im[13773] = 0.0561 +ij[13773] = 27.6 +id[13774] = "2869-04-14T11:13:47" +ik[13774] = 0 +il[13774] = 152 +im[13774] = 0.3796 +ij[13774] = 13 +id[13775] = "2869-04-26T15:04:01" +ik[13775] = 0.5132 +il[13775] = 142 +im[13775] = 0.5133 +ij[13775] = 2 +id[13776] = "2869-05-07T12:30:14" +ik[13776] = 5.17 +il[13776] = 174 +im[13776] = 0.424 +ij[13776] = 11 +id[13777] = "2869-05-26T07:42:07" +ik[13777] = 3.76 +il[13777] = -166 +im[13777] = 0.3204 +ij[13777] = 27.6 +id[13778] = "2869-05-28T10:16:21" +ik[13778] = 43.96 +il[13778] = -163 +im[13778] = 0.1429 +ij[13778] = 7.1637 +id[13779] = "2869-07-01T00:09:05" +ik[13779] = 77.54 +il[13779] = -96 +im[13779] = 0.1733 +ij[13779] = 14 +id[13780] = "2869-07-14T13:58:22" +ik[13780] = 1.291 +il[13780] = -61 +im[13780] = 0.1405 +ij[13780] = 28.6 +id[13781] = "2869-07-16T15:42:09" +ik[13781] = 90 +il[13781] = -55 +im[13781] = 0.194 +ij[13781] = 5 +id[13782] = "2869-09-26T14:35:46" +ik[13782] = 54.403 +il[13782] = 164 +im[13782] = 0.055 +ij[13782] = 8 +id[13783] = "2869-12-06T22:19:12" +ik[13783] = 0.446 +il[13783] = 25 +im[13783] = 0.031 +ij[13783] = 28.8 +id[13784] = "2869-12-27T12:48:58" +ik[13784] = 4.88 +il[13784] = 89 +im[13784] = 0.0737 +ij[13784] = 27.1 +id[13785] = "2870-01-01T00:00:51" +ik[13785] = 0.469 +il[13785] = 103 +im[13785] = 0.0912 +ij[13785] = 28.7 +id[13786] = "2870-02-23T06:25:55" +ik[13786] = 1.36 +il[13786] = -114 +im[13786] = 0.0306 +ij[13786] = 12 +id[13787] = "2870-04-13T08:55:05" +ik[13787] = 2.9 +il[13787] = -150 +im[13787] = 0.0815 +ij[13787] = 27.6 +id[13788] = "2870-05-05T16:29:08" +ik[13788] = 3.781 +il[13788] = -80 +im[13788] = 0.0458 +ij[13788] = 28.1 +id[13789] = "2870-05-20T08:57:24" +ik[13789] = 4.226 +il[13789] = -34 +im[13789] = 0.0591 +ij[13789] = 27.2 +id[13790] = "2870-05-22T01:32:00" +ik[13790] = 2.164 +il[13790] = -29 +im[13790] = 0.0317 +ij[13790] = 28.6 +id[13791] = "2870-07-02T02:35:47" +ik[13791] = 0.725 +il[13791] = 99 +im[13791] = 0.0932 +ij[13791] = 28.4 +id[13792] = "2870-07-16T11:59:20" +ik[13792] = 54.643 +il[13792] = 143 +im[13792] = 0.1186 +ij[13792] = 9 +id[13793] = "2870-09-27T23:17:41" +ik[13793] = 90 +il[13793] = 6 +im[13793] = 0.2111 +ij[13793] = 6 +id[13794] = "2870-10-06T05:45:44" +ik[13794] = 5.334 +il[13794] = 30 +im[13794] = 0.0645 +ij[13794] = 28.8 +id[13795] = "2870-10-20T04:12:31" +ik[13795] = 0.158 +il[13795] = 63 +im[13795] = 0.0728 +ij[13795] = 27.4 +id[13796] = "2870-11-18T00:09:32" +ik[13796] = 0 +il[13796] = 140 +im[13796] = 0.1646 +ij[13796] = 13 +id[13797] = "2870-12-07T07:41:13" +ik[13797] = 0.5456 +il[13797] = 141 +im[13797] = 0.5456 +ij[13797] = 2 +id[13798] = "2870-12-09T15:34:33" +ik[13798] = 1.08 +il[13798] = 153 +im[13798] = 0.4553 +ij[13798] = 11 +id[13799] = "2870-12-30T04:19:08" +ik[13799] = 42.17 +il[13799] = -172 +im[13799] = 0.3097 +ij[13799] = 7.1546 +id[13800] = "2871-01-26T07:49:24" +ik[13800] = 0.775 +il[13800] = -120 +im[13800] = 0.1393 +ij[13800] = 27.1 +id[13801] = "2871-01-30T16:11:52" +ik[13801] = 73.67 +il[13801] = -110 +im[13801] = 0.2727 +ij[13801] = 14 +id[13802] = "2871-02-06T09:06:37" +ik[13802] = 4.307 +il[13802] = -94 +im[13802] = 0.0566 +ij[13802] = 28.7 +id[13803] = "2871-02-18T19:06:29" +ik[13803] = 90 +il[13803] = -63 +im[13803] = 0.1489 +ij[13803] = 5 +id[13804] = "2871-03-24T21:26:18" +ik[13804] = 2.508 +il[13804] = 44 +im[13804] = 0.0162 +ij[13804] = 27.3 +id[13805] = "2871-04-12T15:21:51" +ik[13805] = 0.156 +il[13805] = 102 +im[13805] = 0.123 +ij[13805] = 27.5 +id[13806] = "2871-05-08T05:38:55" +ik[13806] = 54.096 +il[13806] = -179 +im[13806] = 0.0172 +ij[13806] = 8 +id[13807] = "2871-05-19T07:58:48" +ik[13807] = 0.254 +il[13807] = -144 +im[13807] = 0.0889 +ij[13807] = 28.5 +id[13808] = "2871-05-27T23:36:56" +ik[13808] = 3.933 +il[13808] = -118 +im[13808] = 0.0899 +ij[13808] = 27.6 +id[13809] = "2871-06-15T02:22:33" +ik[13809] = 4.631 +il[13809] = -63 +im[13809] = 0.1035 +ij[13809] = 28.1 +id[13810] = "2871-07-05T05:40:24" +ik[13810] = 5.575 +il[13810] = -1 +im[13810] = 0.0338 +ij[13810] = 27.2 +id[13811] = "2871-07-13T16:37:46" +ik[13811] = 0.583 +il[13811] = 24 +im[13811] = 0.0898 +ij[13811] = 28.6 +id[13812] = "2871-07-22T04:56:38" +ik[13812] = 0.199 +il[13812] = 50 +im[13812] = 0.0074 +ij[13812] = 27.91 +id[13813] = "2871-09-24T23:32:38" +ik[13813] = 1.4 +il[13813] = -123 +im[13813] = 0.0749 +ij[13813] = 12 +id[13814] = "2871-11-11T12:19:35" +ik[13814] = 1.487 +il[13814] = -169 +im[13814] = 0.0865 +ij[13814] = 28.8 +id[13815] = "2871-11-19T01:27:37" +ik[13815] = 4.454 +il[13815] = -146 +im[13815] = 0.012 +ij[13815] = 27.4 +id[13816] = "2871-12-10T09:26:12" +ik[13816] = 0.693 +il[13816] = -81 +im[13816] = 0.0883 +ij[13816] = 28.7 +id[13817] = "2872-01-12T22:32:31" +ik[13817] = 0.091 +il[13817] = 21 +im[13817] = 0.1004 +ij[13817] = 27.3 +id[13818] = "2872-01-30T18:49:25" +ik[13818] = 0.944 +il[13818] = 77 +im[13818] = 0.0657 +ij[13818] = 27.5 +id[13819] = "2872-02-24T07:22:03" +ik[13819] = 53.797 +il[13819] = 153 +im[13819] = 0.1072 +ij[13819] = 9 +id[13820] = "2872-03-15T17:46:16" +ik[13820] = 1.59 +il[13820] = -143 +im[13820] = 0.1011 +ij[13820] = 27.6 +id[13821] = "2872-04-08T06:36:25" +ik[13821] = 2.713 +il[13821] = -69 +im[13821] = 0.1441 +ij[13821] = 28.5 +id[13822] = "2872-04-25T13:14:17" +ik[13822] = 1.94 +il[13822] = -16 +im[13822] = 0.1802 +ij[13822] = 27.2 +id[13823] = "2872-05-07T18:01:55" +ik[13823] = 90 +il[13823] = 22 +im[13823] = 0.1777 +ij[13823] = 6 +id[13824] = "2872-05-23T09:04:27" +ik[13824] = 4.022 +il[13824] = 60 +im[13824] = 0.242 +ij[13824] = 28.6 +id[13825] = "2872-06-23T16:12:19" +ik[13825] = 0 +il[13825] = 145 +im[13825] = 0.3925 +ij[13825] = 13 +id[13826] = "2872-07-15T15:41:45" +ik[13826] = 4.3 +il[13826] = 156 +im[13826] = 0.3679 +ij[13826] = 11 +id[13827] = "2872-07-18T14:59:08" +ik[13827] = 0.5021 +il[13827] = 171 +im[13827] = 0.5022 +ij[13827] = 2 +id[13828] = "2872-08-05T10:56:03" +ik[13828] = 6.474 +il[13828] = -169 +im[13828] = 0.261 +ij[13828] = 28.6 +id[13829] = "2872-08-06T15:42:56" +ik[13829] = 43.98 +il[13829] = -168 +im[13829] = 0.1526 +ij[13829] = 7.1664 +id[13830] = "2872-09-09T14:08:44" +ik[13830] = 77.91 +il[13830] = -101 +im[13830] = 0.2002 +ij[13830] = 14 +id[13831] = "2872-09-24T01:01:11" +ik[13831] = 90 +il[13831] = -64 +im[13831] = 0.1592 +ij[13831] = 5 +id[13832] = "2872-11-20T22:50:09" +ik[13832] = 0.287 +il[13832] = 114 +im[13832] = 0.0544 +ij[13832] = 28.4 +id[13833] = "2872-12-06T21:21:10" +ik[13833] = 53.948 +il[13833] = 163 +im[13833] = 0.0871 +ij[13833] = 8 +id[13834] = "2872-12-25T22:36:11" +ik[13834] = 0.012 +il[13834] = -138 +im[13834] = 0.1053 +ij[13834] = 28.8 +id[13835] = "2873-01-10T14:25:50" +ik[13835] = 4.241 +il[13835] = -89 +im[13835] = 0.1094 +ij[13835] = 27.1 +id[13836] = "2873-01-25T05:38:58" +ik[13836] = 0.813 +il[13836] = -43 +im[13836] = 0.0957 +ij[13836] = 28.7 +id[13837] = "2873-02-25T19:59:38" +ik[13837] = 0.877 +il[13837] = 55 +im[13837] = 0.0854 +ij[13837] = 27.3 +id[13838] = "2873-03-15T08:59:11" +ik[13838] = 0.655 +il[13838] = 109 +im[13838] = 0.0657 +ij[13838] = 27.5 +id[13839] = "2873-05-08T15:44:38" +ik[13839] = 0.82 +il[13839] = -107 +im[13839] = 0.0717 +ij[13839] = 12 +id[13840] = "2873-06-11T14:10:01" +ik[13840] = 0.724 +il[13840] = 174 +im[13840] = 0.0779 +ij[13840] = 28.5 +id[13841] = "2873-06-21T10:20:47" +ik[13841] = 0.111 +il[13841] = -156 +im[13841] = 0.0679 +ij[13841] = 27.9 +id[13842] = "2873-06-24T02:42:51" +ik[13842] = 2.699 +il[13842] = -147 +im[13842] = 0.0895 +ij[13842] = 28.1 +id[13843] = "2873-07-03T07:30:00" +ik[13843] = 1.226 +il[13843] = -118 +im[13843] = 0.0106 +ij[13843] = 28.6 +id[13844] = "2873-07-29T13:55:29" +ik[13844] = 3.408 +il[13844] = -37 +im[13844] = 0.0613 +ij[13844] = 28.1 +id[13845] = "2873-09-23T15:18:32" +ik[13845] = 54.206 +il[13845] = 135 +im[13845] = 0.1136 +ij[13845] = 9 +id[13846] = "2873-10-18T10:34:53" +ik[13846] = 3.234 +il[13846] = -151 +im[13846] = 0.0592 +ij[13846] = 28.8 +id[13847] = "2873-10-22T09:26:17" +ik[13847] = 2.723 +il[13847] = -139 +im[13847] = 0.1295 +ij[13847] = 27.4 +id[13848] = "2873-11-22T23:58:33" +ik[13848] = 2.484 +il[13848] = -42 +im[13848] = 0.169 +ij[13848] = 28.7 +id[13849] = "2873-12-12T05:44:14" +ik[13849] = 90 +il[13849] = 18 +im[13849] = 0.1195 +ij[13849] = 6 +id[13850] = "2873-12-24T06:10:18" +ik[13850] = 0.345 +il[13850] = 51 +im[13850] = 0.2079 +ij[13850] = 27.3 +id[13851] = "2874-01-23T12:37:24" +ik[13851] = 3.514 +il[13851] = 116 +im[13851] = 0.248 +ij[13851] = 27.5 +id[13852] = "2874-01-30T14:09:11" +ik[13852] = 0 +il[13852] = 154 +im[13852] = 0.3382 +ij[13852] = 13 +id[13853] = "2874-02-21T14:11:02" +ik[13853] = 8.41 +il[13853] = 162 +im[13853] = 0.1261 +ij[13853] = 11 +id[13854] = "2874-03-01T03:53:03" +ik[13854] = 0.5442 +il[13854] = -169 +im[13854] = 0.5442 +ij[13854] = 2 +id[13855] = "2874-03-14T13:11:46" +ik[13855] = 42.96 +il[13855] = -162 +im[13855] = 0.4235 +ij[13855] = 7.1575 +id[13856] = "2874-04-15T15:38:34" +ik[13856] = 75.06 +il[13856] = -99 +im[13856] = 0.1565 +ij[13856] = 14 +id[13857] = "2874-04-17T15:20:31" +ik[13857] = 2.545 +il[13857] = -95 +im[13857] = 0.0593 +ij[13857] = 27.5 +id[13858] = "2874-05-04T03:19:10" +ik[13858] = 90 +il[13858] = -52 +im[13858] = 0.0117 +ij[13858] = 5 +id[13859] = "2874-06-08T14:47:09" +ik[13859] = 4.329 +il[13859] = 58 +im[13859] = 0.1477 +ij[13859] = 27.6 +id[13860] = "2874-07-17T08:08:19" +ik[13860] = 54.48 +il[13860] = 176 +im[13860] = 0.0103 +ij[13860] = 8 +id[13861] = "2874-07-18T20:40:51" +ik[13861] = 6.32 +il[13861] = -179 +im[13861] = 0.0275 +ij[13861] = 27.2 +id[13862] = "2874-08-19T06:54:43" +ik[13862] = 0.435 +il[13862] = -84 +im[13862] = 0.0506 +ij[13862] = 28.5 +id[13863] = "2874-08-24T20:56:41" +ik[13863] = 0.23 +il[13863] = -67 +im[13863] = 0.0929 +ij[13863] = 28.6 +id[13864] = "2874-12-06T04:09:07" +ik[13864] = 0.25 +il[13864] = -128 +im[13864] = 0.08 +ij[13864] = 12 +id[13865] = "2875-01-27T04:09:24" +ik[13865] = 0.21 +il[13865] = -155 +im[13865] = 0.0451 +ij[13865] = 27.3 +id[13866] = "2875-02-09T16:54:20" +ik[13866] = 1.24 +il[13866] = -114 +im[13866] = 0.0567 +ij[13866] = 28.1 +id[13867] = "2875-02-13T17:40:58" +ik[13867] = 0.904 +il[13867] = -101 +im[13867] = 0.0148 +ij[13867] = 27.5 +id[13868] = "2875-03-29T15:20:43" +ik[13868] = 2.41 +il[13868] = 36 +im[13868] = 0.0242 +ij[13868] = 27.6 +id[13869] = "2875-05-06T08:55:37" +ik[13869] = 3.43 +il[13869] = 154 +im[13869] = 0.1212 +ij[13869] = 27.2 +id[13870] = "2875-05-07T07:18:34" +ik[13870] = 54.432 +il[13870] = 157 +im[13870] = 0.1224 +ij[13870] = 9 +id[13871] = "2875-06-28T19:55:20" +ik[13871] = 1.071 +il[13871] = -41 +im[13871] = 0.032 +ij[13871] = 28.6 +id[13872] = "2875-07-16T00:03:41" +ik[13872] = 90 +il[13872] = 11 +im[13872] = 0.0923 +ij[13872] = 6 +id[13873] = "2875-07-18T00:53:34" +ik[13873] = 0.28 +il[13873] = 16 +im[13873] = 0.1629 +ij[13873] = 28.5 +id[13874] = "2875-08-19T23:36:57" +ik[13874] = 2.869 +il[13874] = 106 +im[13874] = 0.3035 +ij[13874] = 27.7 +id[13875] = "2875-09-02T15:39:01" +ik[13875] = 0 +il[13875] = 137 +im[13875] = 0.4236 +ij[13875] = 13 +id[13876] = "2875-09-16T19:29:42" +ik[13876] = 7.777 +il[13876] = 169 +im[13876] = 0.4379 +ij[13876] = 27.7 +id[13877] = "2875-09-25T06:12:57" +ik[13877] = 8.64 +il[13877] = -167 +im[13877] = 0.4308 +ij[13877] = 11 +id[13878] = "2875-09-28T05:14:37" +ik[13878] = 0.5424 +il[13878] = 166 +im[13878] = 0.5425 +ij[13878] = 2 +id[13879] = "2875-10-16T16:45:36" +ik[13879] = 44.05 +il[13879] = -173 +im[13879] = 0.1325 +ij[13879] = 7.1618 +id[13880] = "2875-11-18T04:06:25" +ik[13880] = 76.52 +il[13880] = -108 +im[13880] = 0.1598 +ij[13880] = 14 +id[13881] = "2875-12-04T20:49:59" +ik[13881] = 90 +il[13881] = -67 +im[13881] = 0.1675 +ij[13881] = 5 +id[13882] = "2876-01-13T03:33:41" +ik[13882] = 0.857 +il[13882] = 55 +im[13882] = 0.0187 +ij[13882] = 28.8 +id[13883] = "2876-01-24T00:31:10" +ik[13883] = 3.257 +il[13883] = 89 +im[13883] = 0.1285 +ij[13883] = 27.1 +id[13884] = "2876-02-18T22:32:35" +ik[13884] = 1.278 +il[13884] = 170 +im[13884] = 0.1112 +ij[13884] = 28.7 +id[13885] = "2876-02-20T14:43:02" +ik[13885] = 53.723 +il[13885] = 175 +im[13885] = 0.1191 +ij[13885] = 8 +id[13886] = "2876-03-11T18:50:44" +ik[13886] = 1.4 +il[13886] = -122 +im[13886] = 0.0574 +ij[13886] = 27.3 +id[13887] = "2876-03-29T13:43:38" +ik[13887] = 0.405 +il[13887] = -67 +im[13887] = 0.016 +ij[13887] = 27.5 +id[13888] = "2876-05-12T16:25:41" +ik[13888] = 3.58 +il[13888] = 68 +im[13888] = 0.0234 +ij[13888] = 27.6 +id[13889] = "2876-07-15T15:11:31" +ik[13889] = 0.7 +il[13889] = -119 +im[13889] = 0.0529 +ij[13889] = 12 +id[13890] = "2876-08-17T05:53:05" +ik[13890] = 0.835 +il[13890] = 160 +im[13890] = 0.0837 +ij[13890] = 28.1 +id[13891] = "2876-09-19T13:45:15" +ik[13891] = 0.359 +il[13891] = -98 +im[13891] = 0.0936 +ij[13891] = 28.5 +id[13892] = "2876-10-04T07:37:29" +ik[13892] = 4.085 +il[13892] = -53 +im[13892] = 0.0895 +ij[13892] = 28.1 +id[13893] = "2876-11-03T14:56:03" +ik[13893] = 3.784 +il[13893] = 40 +im[13893] = 0.0984 +ij[13893] = 27.4 +id[13894] = "2876-11-05T07:11:25" +ik[13894] = 2.419 +il[13894] = 44 +im[13894] = 0.0842 +ij[13894] = 28.8 +id[13895] = "2876-12-06T13:07:03" +ik[13895] = 53.627 +il[13895] = 140 +im[13895] = 0.0813 +ij[13895] = 9 +id[13896] = "2876-12-14T01:17:11" +ik[13896] = 1.469 +il[13896] = 163 +im[13896] = 0.0838 +ij[13896] = 28.7 +id[13897] = "2876-12-26T08:28:53" +ik[13897] = 0.532 +il[13897] = -159 +im[13897] = 0.036 +ij[13897] = 28.4 +id[13898] = "2876-12-29T18:11:11" +ik[13898] = 0.423 +il[13898] = -149 +im[13898] = 0.1167 +ij[13898] = 27.3 +id[13899] = "2877-01-17T15:08:04" +ik[13899] = 0.769 +il[13899] = -90 +im[13899] = 0.1476 +ij[13899] = 27.5 +id[13900] = "2877-02-24T14:17:15" +ik[13900] = 90 +il[13900] = 29 +im[13900] = 0.0945 +ij[13900] = 6 +id[13901] = "2877-03-10T04:43:36" +ik[13901] = 1.19 +il[13901] = 63 +im[13901] = 0.0321 +ij[13901] = 27.6 +id[13902] = "2877-04-12T04:06:52" +ik[13902] = 0 +il[13902] = 153 +im[13902] = 0.3423 +ij[13902] = 13 +id[13903] = "2877-04-27T22:03:16" +ik[13903] = 0.5324 +il[13903] = 149 +im[13903] = 0.5325 +ij[13903] = 2 +id[13904] = "2877-05-05T04:23:31" +ik[13904] = 5.45 +il[13904] = 170 +im[13904] = 0.0977 +ij[13904] = 11 +id[13905] = "2877-05-22T18:31:25" +ik[13905] = 1.52 +il[13905] = -165 +im[13905] = 0.447 +ij[13905] = 27.6 +id[13906] = "2877-05-26T03:11:27" +ik[13906] = 43.96 +il[13906] = -160 +im[13906] = 0.4041 +ij[13906] = 7.1635 +id[13907] = "2877-06-28T14:23:15" +ik[13907] = 77.43 +il[13907] = -94 +im[13907] = 0.0233 +ij[13907] = 14 +id[13908] = "2877-07-14T08:03:59" +ik[13908] = 90 +il[13908] = -53 +im[13908] = 0.0735 +ij[13908] = 5 +id[13909] = "2877-09-24T06:57:17" +ik[13909] = 54.414 +il[13909] = 167 +im[13909] = 0.0415 +ij[13909] = 8 +id[13910] = "2877-10-06T03:57:18" +ik[13910] = 0.854 +il[13910] = -157 +im[13910] = 0.0873 +ij[13910] = 28.6 +id[13911] = "2877-11-30T01:12:00" +ik[13911] = 0.077 +il[13911] = 13 +im[13911] = 0.0884 +ij[13911] = 28.5 +id[13912] = "2877-12-20T20:24:00" +ik[13912] = 0.784 +il[13912] = 78 +im[13912] = 0.0643 +ij[13912] = 28.8 +id[13913] = "2877-12-27T01:59:37" +ik[13913] = 4.895 +il[13913] = 98 +im[13913] = 0.0437 +ij[13913] = 27.1 +id[13914] = "2878-02-20T16:14:52" +ik[13914] = 1.33 +il[13914] = -112 +im[13914] = 0.0435 +ij[13914] = 12 +id[13915] = "2878-04-03T17:15:12" +ik[13915] = 2.953 +il[13915] = -170 +im[13915] = 0.083 +ij[13915] = 28.1 +id[13916] = "2878-04-12T22:06:18" +ik[13916] = 2.89 +il[13916] = -141 +im[13916] = 0.0613 +ij[13916] = 27.6 +id[13917] = "2878-04-26T20:13:46" +ik[13917] = 2.436 +il[13917] = -98 +im[13917] = 0.0291 +ij[13917] = 28.1 +id[13918] = "2878-05-19T22:24:57" +ik[13918] = 4.213 +il[13918] = -25 +im[13918] = 0.0877 +ij[13918] = 27.2 +id[13919] = "2878-07-14T06:00:25" +ik[13919] = 54.648 +il[13919] = 146 +im[13919] = 0.1071 +ij[13919] = 9 +id[13920] = "2878-08-08T13:31:00" +ik[13920] = 1.154 +il[13920] = -137 +im[13920] = 0.0186 +ij[13920] = 28.6 +id[13921] = "2878-09-25T12:14:19" +ik[13921] = 90 +il[13921] = 10 +im[13921] = 0.1714 +ij[13921] = 6 +id[13922] = "2878-10-21T02:21:23" +ik[13922] = 0.364 +il[13922] = 77 +im[13922] = 0.0407 +ij[13922] = 27.4 +id[13923] = "2878-11-15T14:23:41" +ik[13923] = 0 +il[13923] = 144 +im[13923] = 0.2218 +ij[13923] = 13 +id[13924] = "2878-12-06T01:58:13" +ik[13924] = 3.591 +il[13924] = 145 +im[13924] = 0.4611 +ij[13924] = 28.8 +id[13925] = "2878-12-07T04:56:38" +ik[13925] = 1.48 +il[13925] = 156 +im[13925] = 0.5196 +ij[13925] = 11 +id[13926] = "2878-12-08T05:46:02" +ik[13926] = 0.5378 +il[13926] = 169 +im[13926] = 0.5378 +ij[13926] = 2 +id[13927] = "2878-12-14T02:29:23" +ik[13927] = 4.944 +il[13927] = 174 +im[13927] = 0.0412 +ij[13927] = 27.4 +id[13928] = "2878-12-27T16:23:28" +ik[13928] = 42.08 +il[13928] = -170 +im[13928] = 0.0661 +ij[13928] = 7.1546 +id[13929] = "2879-01-19T03:49:58" +ik[13929] = 2.995 +il[13929] = -128 +im[13929] = 0.3171 +ij[13929] = 28.8 +id[13930] = "2879-01-27T03:03:36" +ik[13930] = 0.913 +il[13930] = -110 +im[13930] = 0.0937 +ij[13930] = 27.1 +id[13931] = "2879-01-27T13:24:57" +ik[13931] = 3.579 +il[13931] = -109 +im[13931] = 0.1151 +ij[13931] = 28.5 +id[13932] = "2879-01-28T05:13:12" +ik[13932] = 73.62 +il[13932] = -107 +im[13932] = 0.1464 +ij[13932] = 14 +id[13933] = "2879-02-16T07:24:11" +ik[13933] = 90 +il[13933] = -60 +im[13933] = 0.2288 +ij[13933] = 5 +id[13934] = "2879-03-12T15:51:07" +ik[13934] = 2.166 +il[13934] = 16 +im[13934] = 0.0881 +ij[13934] = 28.7 +id[13935] = "2879-03-24T15:02:17" +ik[13935] = 2.455 +il[13935] = 53 +im[13935] = 0.052 +ij[13935] = 27.3 +id[13936] = "2879-04-03T15:56:09" +ik[13936] = 1.482 +il[13936] = 84 +im[13936] = 0.1264 +ij[13936] = 28.4 +id[13937] = "2879-04-12T07:24:04" +ik[13937] = 0.129 +il[13937] = 111 +im[13937] = 0.0829 +ij[13937] = 27.5 +id[13938] = "2879-05-05T19:59:33" +ik[13938] = 54.079 +il[13938] = -176 +im[13938] = 0.0746 +ij[13938] = 8 +id[13939] = "2879-05-27T15:32:18" +ik[13939] = 3.92 +il[13939] = -109 +im[13939] = 0.0636 +ij[13939] = 27.6 +id[13940] = "2879-07-04T19:00:50" +ik[13940] = 5.555 +il[13940] = 7 +im[13940] = 0.07 +ij[13940] = 27.2 +id[13941] = "2879-09-22T15:44:38" +ik[13941] = 1.41 +il[13941] = -129 +im[13941] = 0.0172 +ij[13941] = 12 +id[13942] = "2879-11-18T14:48:03" +ik[13942] = 4.444 +il[13942] = -138 +im[13942] = 0.048 +ij[13942] = 27.4 +id[13943] = "2879-11-25T21:24:56" +ik[13943] = 1.965 +il[13943] = -116 +im[13943] = 0.0691 +ij[13943] = 28.8 +id[13944] = "2879-12-04T10:33:36" +ik[13944] = 0.899 +il[13944] = -90 +im[13944] = 0.0361 +ij[13944] = 28.1 +id[13945] = "2879-12-30T13:44:32" +ik[13945] = 0.992 +il[13945] = -10 +im[13945] = 0.0911 +ij[13945] = 28.5 +id[13946] = "2880-01-07T23:10:45" +ik[13946] = 0.952 +il[13946] = 16 +im[13946] = 0.0579 +ij[13946] = 28.7 +id[13947] = "2880-01-12T12:26:17" +ik[13947] = 0.094 +il[13947] = 30 +im[13947] = 0.1074 +ij[13947] = 27.3 +id[13948] = "2880-01-30T09:02:17" +ik[13948] = 0.94 +il[13948] = 85 +im[13948] = 0.0933 +ij[13948] = 27.5 +id[13949] = "2880-02-21T19:20:27" +ik[13949] = 53.778 +il[13949] = 155 +im[13949] = 0.0395 +ij[13949] = 9 +id[13950] = "2880-03-15T11:05:08" +ik[13950] = 1.55 +il[13950] = -134 +im[13950] = 0.1297 +ij[13950] = 27.6 +id[13951] = "2880-04-25T10:45:23" +ik[13951] = 1.868 +il[13951] = -6 +im[13951] = 0.1814 +ij[13951] = 27.2 +id[13952] = "2880-05-05T11:40:42" +ik[13952] = 90 +il[13952] = 25 +im[13952] = 0.0334 +ij[13952] = 6 +id[13953] = "2880-06-21T05:13:39" +ik[13953] = 0 +il[13953] = 157 +im[13953] = 0.3761 +ij[13953] = 13 +id[13954] = "2880-07-13T08:35:31" +ik[13954] = 4.01 +il[13954] = 159 +im[13954] = 0.0731 +ij[13954] = 11 +id[13955] = "2880-07-19T17:05:04" +ik[13955] = 0.5051 +il[13955] = 177 +im[13955] = 0.5051 +ij[13955] = 2 +id[13956] = "2880-08-04T07:42:22" +ik[13956] = 44.1 +il[13956] = -165 +im[13956] = 0.384 +ij[13956] = 7.1663 +id[13957] = "2880-09-07T06:36:07" +ik[13957] = 78.06 +il[13957] = -98 +im[13957] = 0.048 +ij[13957] = 14 +id[13958] = "2880-09-21T17:18:35" +ik[13958] = 90 +il[13958] = -61 +im[13958] = 0.0254 +ij[13958] = 5 +id[13959] = "2880-11-18T03:23:02" +ik[13959] = 0.806 +il[13959] = 115 +im[13959] = 0.0658 +ij[13959] = 28.6 +id[13960] = "2880-12-04T10:55:35" +ik[13960] = 53.964 +il[13960] = 165 +im[13960] = 0.01 +ij[13960] = 8 +id[13961] = "2881-01-09T01:49:00" +ik[13961] = 0.283 +il[13961] = -83 +im[13961] = 0.0898 +ij[13961] = 28.8 +id[13962] = "2881-01-10T04:22:16" +ik[13962] = 4.262 +il[13962] = -80 +im[13962] = 0.0997 +ij[13962] = 27.1 +id[13963] = "2881-02-22T21:55:26" +ik[13963] = 0.006 +il[13963] = 56 +im[13963] = 0.0772 +ij[13963] = 28.7 +id[13964] = "2881-02-25T09:25:24" +ik[13964] = 0.869 +il[13964] = 64 +im[13964] = 0.0929 +ij[13964] = 27.3 +id[13965] = "2881-03-06T08:15:21" +ik[13965] = 0.008 +il[13965] = 92 +im[13965] = 0.0095 +ij[13965] = 28.5 +id[13966] = "2881-03-14T22:15:37" +ik[13966] = 0.658 +il[13966] = 118 +im[13966] = 0.082 +ij[13966] = 27.5 +id[13967] = "2881-03-20T12:32:24" +ik[13967] = 2.523 +il[13967] = 135 +im[13967] = 0.002 +ij[13967] = 28.1 +id[13968] = "2881-05-06T07:24:57" +ik[13968] = 0.87 +il[13968] = -104 +im[13968] = 0.0188 +ij[13968] = 12 +id[13969] = "2881-06-20T23:22:50" +ik[13969] = 0.094 +il[13969] = -147 +im[13969] = 0.0347 +ij[13969] = 27.9 +id[13970] = "2881-07-06T18:16:59" +ik[13970] = 2.157 +il[13970] = -98 +im[13970] = 0.0492 +ij[13970] = 28.1 +id[13971] = "2881-09-21T06:14:41" +ik[13971] = 2.499 +il[13971] = 137 +im[13971] = 0.0758 +ij[13971] = 28.6 +id[13972] = "2881-09-21T06:25:23" +ik[13972] = 54.228 +il[13972] = 137 +im[13972] = 0.0759 +ij[13972] = 9 +id[13973] = "2881-10-22T02:08:03" +ik[13973] = 2.681 +il[13973] = -130 +im[13973] = 0.1108 +ij[13973] = 27.4 +id[13974] = "2881-11-02T16:08:32" +ik[13974] = 3.827 +il[13974] = -94 +im[13974] = 0.0541 +ij[13974] = 28.8 +id[13975] = "2881-12-09T17:05:20" +ik[13975] = 90 +il[13975] = 20 +im[13975] = 0.2181 +ij[13975] = 6 +id[13976] = "2881-12-24T16:08:03" +ik[13976] = 0.262 +il[13976] = 60 +im[13976] = 0.249 +ij[13976] = 27.3 +id[13977] = "2881-12-29T18:15:15" +ik[13977] = 0.646 +il[13977] = 72 +im[13977] = 0.0535 +ij[13977] = 28.7 +id[13978] = "2882-01-24T06:33:50" +ik[13978] = 4.962 +il[13978] = 124 +im[13978] = 0.3159 +ij[13978] = 27.5 +id[13979] = "2882-01-28T06:36:34" +ik[13979] = 0 +il[13979] = 151 +im[13979] = 0.0341 +ij[13979] = 13 +id[13980] = "2882-02-16T20:52:51" +ik[13980] = 0.5444 +il[13980] = 153 +im[13980] = 0.5445 +ij[13980] = 2 +id[13981] = "2882-02-19T02:45:36" +ik[13981] = 8.27 +il[13981] = 165 +im[13981] = 0.4709 +ij[13981] = 11 +id[13982] = "2882-03-12T06:40:09" +ik[13982] = 43 +il[13982] = -160 +im[13982] = 0.3093 +ij[13982] = 7.1574 +id[13983] = "2882-04-13T03:37:54" +ik[13983] = 74.88 +il[13983] = -97 +im[13983] = 0.2643 +ij[13983] = 14 +id[13984] = "2882-04-18T00:01:24" +ik[13984] = 2.334 +il[13984] = -86 +im[13984] = 0.1229 +ij[13984] = 27.5 +id[13985] = "2882-05-01T16:51:10" +ik[13985] = 90 +il[13985] = -50 +im[13985] = 0.1534 +ij[13985] = 5 +id[13986] = "2882-05-05T00:21:10" +ik[13986] = 0.899 +il[13986] = -39 +im[13986] = 0.0151 +ij[13986] = 28.5 +id[13987] = "2882-06-08T10:15:54" +ik[13987] = 4.31 +il[13987] = 67 +im[13987] = 0.1278 +ij[13987] = 27.6 +id[13988] = "2882-07-15T01:08:57" +ik[13988] = 54.473 +il[13988] = 179 +im[13988] = 0.0956 +ij[13988] = 8 +id[13989] = "2882-07-18T11:19:57" +ik[13989] = 6.289 +il[13989] = -171 +im[13989] = 0.0271 +ij[13989] = 27.2 +id[13990] = "2882-12-03T16:40:48" +ik[13990] = 0.31 +il[13990] = -126 +im[13990] = 0.0322 +ij[13990] = 12 +id[13991] = "2883-01-26T17:24:57" +ik[13991] = 0.208 +il[13991] = -147 +im[13991] = 0.0741 +ij[13991] = 27.3 +id[13992] = "2883-02-01T15:43:55" +ik[13992] = 2.754 +il[13992] = -128 +im[13992] = 0.0295 +ij[13992] = 28.1 +id[13993] = "2883-02-01T22:06:57" +ik[13993] = 0.67 +il[13993] = -128 +im[13993] = 0.0344 +ij[13993] = 28.7 +id[13994] = "2883-02-13T07:04:03" +ik[13994] = 0.902 +il[13994] = -93 +im[13994] = 0.0267 +ij[13994] = 27.5 +id[13995] = "2883-03-29T05:11:48" +ik[13995] = 2.39 +il[13995] = 44 +im[13995] = 0.06 +ij[13995] = 27.6 +id[13996] = "2883-03-29T05:19:49" +ik[13996] = 0.917 +il[13996] = 44 +im[13996] = 0.0599 +ij[13996] = 28.5 +id[13997] = "2883-04-17T13:14:09" +ik[13997] = 0.63 +il[13997] = 105 +im[13997] = 0.0219 +ij[13997] = 28.4 +id[13998] = "2883-05-04T23:54:19" +ik[13998] = 54.414 +il[13998] = 159 +im[13998] = 0.0948 +ij[13998] = 9 +id[13999] = "2883-05-05T23:47:36" +ik[13999] = 3.404 +il[13999] = 163 +im[13999] = 0.1096 +ij[13999] = 27.2 +id[14000] = "2883-07-13T16:46:45" +ik[14000] = 90 +il[14000] = 14 +im[14000] = 0.0657 +ij[14000] = 6 +id[14001] = "2883-08-21T20:58:42" +ik[14001] = 2.499 +il[14001] = 123 +im[14001] = 0.3149 +ij[14001] = 27.7 +id[14002] = "2883-08-31T03:38:21" +ik[14002] = 0 +il[14002] = 140 +im[14002] = 0.336 +ij[14002] = 13 +id[14003] = "2883-09-22T20:29:45" +ik[14003] = 8.66 +il[14003] = 154 +im[14003] = 0.0575 +ij[14003] = 11 +id[14004] = "2883-09-29T10:23:55" +ik[14004] = 0.5279 +il[14004] = 172 +im[14004] = 0.528 +ij[14004] = 2 +id[14005] = "2883-10-14T03:41:56" +ik[14005] = 44 +il[14005] = -170 +im[14005] = 0.382 +ij[14005] = 7.162 +id[14006] = "2883-11-15T20:47:41" +ik[14006] = 76.71 +il[14006] = -106 +im[14006] = 0.0522 +ij[14006] = 14 +id[14007] = "2883-12-02T11:15:57" +ik[14007] = 90 +il[14007] = -65 +im[14007] = 0.0277 +ij[14007] = 5 +id[14008] = "2884-01-01T19:27:33" +ik[14008] = 0.3 +il[14008] = 29 +im[14008] = 0.0433 +ij[14008] = 28.6 +id[14009] = "2884-01-23T16:45:23" +ik[14009] = 3.298 +il[14009] = 98 +im[14009] = 0.1366 +ij[14009] = 27.1 +id[14010] = "2884-01-28T00:21:36" +ik[14010] = 0.541 +il[14010] = 111 +im[14010] = 0.0702 +ij[14010] = 28.8 +id[14011] = "2884-02-18T02:13:00" +ik[14011] = 53.72 +il[14011] = 177 +im[14011] = 0.0703 +ij[14011] = 8 +id[14012] = "2884-03-11T09:06:17" +ik[14012] = 1.383 +il[14012] = -115 +im[14012] = 0.0941 +ij[14012] = 27.3 +id[14013] = "2884-03-19T19:12:43" +ik[14013] = 0.079 +il[14013] = -87 +im[14013] = 0.0717 +ij[14013] = 28.7 +id[14014] = "2884-03-29T03:35:10" +ik[14014] = 0.413 +il[14014] = -59 +im[14014] = 0.0265 +ij[14014] = 27.5 +id[14015] = "2884-05-12T05:44:41" +ik[14015] = 3.57 +il[14015] = 77 +im[14015] = 0.0578 +ij[14015] = 27.6 +id[14016] = "2884-05-27T08:49:46" +ik[14016] = 0.67 +il[14016] = 123 +im[14016] = 0.0442 +ij[14016] = 28.1 +id[14017] = "2884-06-02T07:53:36" +ik[14017] = 0.137 +il[14017] = 141 +im[14017] = 0.0533 +ij[14017] = 28.5 +id[14018] = "2884-07-13T09:46:04" +ik[14018] = 0.66 +il[14018] = -116 +im[14018] = 0.0118 +ij[14018] = 12 +id[14019] = "2884-09-13T12:41:19" +ik[14019] = 3.882 +il[14019] = -106 +im[14019] = 0.0277 +ij[14019] = 28.1 +id[14020] = "2884-11-03T04:59:09" +ik[14020] = 3.766 +il[14020] = 48 +im[14020] = 0.1035 +ij[14020] = 27.4 +id[14021] = "2884-11-06T07:47:16" +ik[14021] = 2.622 +il[14021] = 57 +im[14021] = 0.0945 +ij[14021] = 28.6 +id[14022] = "2884-11-19T14:27:10" +ik[14022] = 2.776 +il[14022] = 98 +im[14022] = 0.1108 +ij[14022] = 28.8 +id[14023] = "2884-12-04T00:12:08" +ik[14023] = 53.639 +il[14023] = 142 +im[14023] = 0.1233 +ij[14023] = 9 +id[14024] = "2884-12-29T10:12:30" +ik[14024] = 0.427 +il[14024] = -140 +im[14024] = 0.0843 +ij[14024] = 27.3 +id[14025] = "2885-01-14T00:57:18" +ik[14025] = 0.7 +il[14025] = -91 +im[14025] = 0.0783 +ij[14025] = 28.7 +id[14026] = "2885-01-17T08:52:30" +ik[14026] = 0.746 +il[14026] = -81 +im[14026] = 0.1433 +ij[14026] = 27.5 +id[14027] = "2885-02-22T04:25:32" +ik[14027] = 90 +il[14027] = 31 +im[14027] = 0.089 +ij[14027] = 6 +id[14028] = "2885-03-10T14:49:38" +ik[14028] = 1.43 +il[14028] = 72 +im[14028] = 0.063 +ij[14028] = 27.6 +id[14029] = "2885-04-09T20:48:08" +ik[14029] = 0 +il[14029] = 154 +im[14029] = 0.0886 +ij[14029] = 13 +id[14030] = "2885-04-29T00:48:27" +ik[14030] = 0.5389 +il[14030] = 154 +im[14030] = 0.539 +ij[14030] = 2 +id[14031] = "2885-05-02T20:06:43" +ik[14031] = 5.72 +il[14031] = 168 +im[14031] = 0.3388 +ij[14031] = 11 +id[14032] = "2885-05-16T21:49:31" +ik[14032] = 0.47 +il[14032] = -166 +im[14032] = 0.1347 +ij[14032] = 27.6 +id[14033] = "2885-05-23T22:53:43" +ik[14033] = 44.09 +il[14033] = -157 +im[14033] = 0.4211 +ij[14033] = 7.1634 +id[14034] = "2885-06-26T04:37:28" +ik[14034] = 77.33 +il[14034] = -91 +im[14034] = 0.2104 +ij[14034] = 14 +id[14035] = "2885-07-12T00:25:50" +ik[14035] = 90 +il[14035] = -50 +im[14035] = 0.0938 +ij[14035] = 5 +id[14036] = "2885-08-05T07:08:41" +ik[14036] = 1.914 +il[14036] = 24 +im[14036] = 0.1573 +ij[14036] = 28.5 +id[14037] = "2885-08-10T00:20:35" +ik[14037] = 2.519 +il[14037] = 39 +im[14037] = 0.0908 +ij[14037] = 28.4 +id[14038] = "2885-09-21T23:22:22" +ik[14038] = 54.425 +il[14038] = 169 +im[14038] = 0.1073 +ij[14038] = 8 +id[14039] = "2885-12-26T15:13:49" +ik[14039] = 4.91 +il[14039] = 106 +im[14039] = 0.0056 +ij[14039] = 27.1 +id[14040] = "2885-12-28T17:07:52" +ik[14040] = 1.89 +il[14040] = 113 +im[14040] = 0.0408 +ij[14040] = 28.1 +id[14041] = "2885-12-29T13:59:57" +ik[14041] = 0.948 +il[14041] = 115 +im[14041] = 0.054 +ij[14041] = 28.6 +id[14042] = "2886-01-03T17:18:48" +ik[14042] = 1.065 +il[14042] = 131 +im[14042] = 0.0917 +ij[14042] = 28.8 +id[14043] = "2886-02-18T02:00:57" +ik[14043] = 1.31 +il[14043] = -110 +im[14043] = 0.0858 +ij[14043] = 12 +id[14044] = "2886-04-05T00:27:30" +ik[14044] = 2.927 +il[14044] = -156 +im[14044] = 0.0827 +ij[14044] = 28.1 +id[14045] = "2886-04-12T11:11:29" +ik[14045] = 2.87 +il[14045] = -133 +im[14045] = 0.029 +ij[14045] = 27.6 +id[14046] = "2886-05-19T11:56:02" +ik[14046] = 4.198 +il[14046] = -17 +im[14046] = 0.0997 +ij[14046] = 27.2 +id[14047] = "2886-06-29T04:07:23" +ik[14047] = 1.093 +il[14047] = 110 +im[14047] = 0.0772 +ij[14047] = 28.5 +id[14048] = "2886-07-12T00:08:36" +ik[14048] = 54.651 +il[14048] = 149 +im[14048] = 0.035 +ij[14048] = 9 +id[14049] = "2886-09-23T01:15:22" +ik[14049] = 90 +il[14049] = 11 +im[14049] = 0.0181 +ij[14049] = 6 +id[14050] = "2886-10-22T07:24:56" +ik[14050] = 0.592 +il[14050] = 90 +im[14050] = 0.0423 +ij[14050] = 27.4 +id[14051] = "2886-11-13T04:37:55" +ik[14051] = 0 +il[14051] = 146 +im[14051] = 0.4203 +ij[14051] = 13 +id[14052] = "2886-11-26T01:39:39" +ik[14052] = 0.5557 +il[14052] = 174 +im[14052] = 0.5558 +ij[14052] = 2 +id[14053] = "2886-12-04T18:18:43" +ik[14053] = 1.87 +il[14053] = -161 +im[14053] = 0.239 +ij[14053] = 11 +id[14054] = "2886-12-06T16:28:56" +ik[14054] = 3.268 +il[14054] = 172 +im[14054] = 0.4309 +ij[14054] = 27.4 +id[14055] = "2886-12-25T06:43:30" +ik[14055] = 42.09 +il[14055] = -167 +im[14055] = 0.3872 +ij[14055] = 7.1547 +id[14056] = "2887-01-25T18:17:12" +ik[14056] = 73.57 +il[14056] = -105 +im[14056] = 0.0945 +ij[14056] = 14 +id[14057] = "2887-01-27T18:00:02" +ik[14057] = 1.046 +il[14057] = -100 +im[14057] = 0.0282 +ij[14057] = 27.1 +id[14058] = "2887-02-10T04:51:36" +ik[14058] = 2.545 +il[14058] = -68 +im[14058] = 0.0122 +ij[14058] = 28.8 +id[14059] = "2887-02-13T19:26:41" +ik[14059] = 2.495 +il[14059] = -57 +im[14059] = 0.1587 +ij[14059] = 28.6 +id[14060] = "2887-02-13T19:39:15" +ik[14060] = 90 +il[14060] = -58 +im[14060] = 0.1589 +ij[14060] = 5 +id[14061] = "2887-03-24T08:28:03" +ik[14061] = 2.404 +il[14061] = 62 +im[14061] = 0.101 +ij[14061] = 27.3 +id[14062] = "2887-04-11T23:19:36" +ik[14062] = 0.102 +il[14062] = 120 +im[14062] = 0.0317 +ij[14062] = 27.5 +id[14063] = "2887-04-13T19:31:17" +ik[14063] = 0.125 +il[14063] = 126 +im[14063] = 0.0737 +ij[14063] = 28.7 +id[14064] = "2887-05-03T10:16:38" +ik[14064] = 54.062 +il[14064] = -173 +im[14064] = 0.1176 +ij[14064] = 8 +id[14065] = "2887-05-27T05:36:29" +ik[14065] = 3.91 +il[14065] = -100 +im[14065] = 0.0261 +ij[14065] = 27.6 +id[14066] = "2887-07-04T08:20:23" +ik[14066] = 5.534 +il[14066] = 16 +im[14066] = 0.0931 +ij[14066] = 27.2 +id[14067] = "2887-08-08T00:19:17" +ik[14067] = 3.088 +il[14067] = 121 +im[14067] = 0.0346 +ij[14067] = 28.1 +id[14068] = "2887-09-20T08:06:43" +ik[14068] = 1.41 +il[14068] = -127 +im[14068] = 0.0502 +ij[14068] = 12 +id[14069] = "2887-11-14T22:03:47" +ik[14069] = 1.542 +il[14069] = -139 +im[14069] = 0.0928 +ij[14069] = 28.1 +id[14070] = "2887-11-18T04:08:56" +ik[14070] = 4.433 +il[14070] = -129 +im[14070] = 0.0781 +ij[14070] = 27.4 +id[14071] = "2887-12-09T11:08:09" +ik[14071] = 2.149 +il[14071] = -64 +im[14071] = 0.0374 +ij[14071] = 28.8 +id[14072] = "2887-12-24T16:25:14" +ik[14072] = 1.547 +il[14072] = -18 +im[14072] = 0.0241 +ij[14072] = 28.6 +id[14073] = "2888-01-12T02:23:36" +ik[14073] = 0.097 +il[14073] = 39 +im[14073] = 0.094 +ij[14073] = 27.3 +id[14074] = "2888-01-29T23:22:16" +ik[14074] = 0.934 +il[14074] = 94 +im[14074] = 0.1064 +ij[14074] = 27.5 +id[14075] = "2888-02-07T05:50:55" +ik[14075] = 0.459 +il[14075] = 120 +im[14075] = 0.0286 +ij[14075] = 28.7 +id[14076] = "2888-02-19T07:11:45" +ik[14076] = 53.759 +il[14076] = 157 +im[14076] = 0.0587 +ij[14076] = 9 +id[14077] = "2888-03-15T03:04:27" +ik[14077] = 1.5 +il[14077] = -125 +im[14077] = 0.1376 +ij[14077] = 27.6 +id[14078] = "2888-04-25T08:55:09" +ik[14078] = 1.792 +il[14078] = 4 +im[14078] = 0.1634 +ij[14078] = 27.2 +id[14079] = "2888-05-03T05:13:18" +ik[14079] = 90 +il[14079] = 28 +im[14079] = 0.1316 +ij[14079] = 6 +id[14080] = "2888-06-18T18:17:39" +ik[14080] = 0 +il[14080] = 160 +im[14080] = 0.1169 +ij[14080] = 13 +id[14081] = "2888-07-11T01:29:16" +ik[14081] = 3.72 +il[14081] = 162 +im[14081] = 0.3691 +ij[14081] = 11 +id[14082] = "2888-07-20T20:59:07" +ik[14082] = 0.5012 +il[14082] = -177 +im[14082] = 0.5013 +ij[14082] = 2 +id[14083] = "2888-08-01T23:33:21" +ik[14083] = 44.22 +il[14083] = -162 +im[14083] = 0.3676 +ij[14083] = 7.1663 +id[14084] = "2888-09-04T23:26:06" +ik[14084] = 78.21 +il[14084] = -95 +im[14084] = 0.1487 +ij[14084] = 14 +id[14085] = "2888-09-19T09:41:19" +ik[14085] = 90 +il[14085] = -58 +im[14085] = 0.1589 +ij[14085] = 5 +id[14086] = "2888-11-15T14:08:44" +ik[14086] = 0.127 +il[14086] = 117 +im[14086] = 0.1345 +ij[14086] = 28.5 +id[14087] = "2888-12-02T00:37:07" +ik[14087] = 53.98 +il[14087] = 168 +im[14087] = 0.0908 +ij[14087] = 8 +id[14088] = "2889-01-09T18:15:09" +ik[14088] = 4.283 +il[14088] = -71 +im[14088] = 0.0723 +ij[14088] = 27.1 +id[14089] = "2889-01-23T01:27:50" +ik[14089] = 0.564 +il[14089] = -30 +im[14089] = 0.0463 +ij[14089] = 28.8 +id[14090] = "2889-02-15T03:24:02" +ik[14090] = 0.04 +il[14090] = 42 +im[14090] = 0.0792 +ij[14090] = 28.6 +id[14091] = "2889-02-24T22:47:09" +ik[14091] = 0.861 +il[14091] = 73 +im[14091] = 0.0828 +ij[14091] = 27.3 +id[14092] = "2889-02-26T21:23:19" +ik[14092] = 2.831 +il[14092] = 79 +im[14092] = 0.094 +ij[14092] = 28.1 +id[14093] = "2889-03-14T11:32:03" +ik[14093] = 0.661 +il[14093] = 127 +im[14093] = 0.0851 +ij[14093] = 27.5 +id[14094] = "2889-03-24T23:03:41" +ik[14094] = 0.553 +il[14094] = 148 +im[14094] = 0.0527 +ij[14094] = 28.7 +id[14095] = "2889-05-03T22:50:52" +ik[14095] = 0.91 +il[14095] = -101 +im[14095] = 0.0507 +ij[14095] = 12 +id[14096] = "2889-06-12T16:28:59" +ik[14096] = 0.844 +il[14096] = -163 +im[14096] = 0.0877 +ij[14096] = 28.1 +id[14097] = "2889-06-20T12:25:46" +ik[14097] = 0.078 +il[14097] = -138 +im[14097] = 0.011 +ij[14097] = 27.9 +id[14098] = "2889-09-18T21:42:54" +ik[14098] = 54.249 +il[14098] = 139 +im[14098] = 0.0126 +ij[14098] = 9 +id[14099] = "2889-10-11T19:14:26" +ik[14099] = 2.13 +il[14099] = -151 +im[14099] = 0.1397 +ij[14099] = 28.5 +id[14100] = "2889-10-21T19:00:29" +ik[14100] = 2.638 +il[14100] = -121 +im[14100] = 0.0795 +ij[14100] = 27.4 +id[14101] = "2889-10-23T01:27:41" +ik[14101] = 1.045 +il[14101] = -117 +im[14101] = 0.1098 +ij[14101] = 28.4 +id[14102] = "2889-11-18T10:47:34" +ik[14102] = 4.009 +il[14102] = -36 +im[14102] = 0.035 +ij[14102] = 28.8 +id[14103] = "2889-12-07T04:21:07" +ik[14103] = 90 +il[14103] = 22 +im[14103] = 0.1653 +ij[14103] = 6 +id[14104] = "2889-12-25T05:01:49" +ik[14104] = 0.157 +il[14104] = 69 +im[14104] = 0.281 +ij[14104] = 27.3 +id[14105] = "2890-01-01T23:39:07" +ik[14105] = 0.049 +il[14105] = 87 +im[14105] = 0.0405 +ij[14105] = 28.6 +id[14106] = "2890-01-25T23:26:33" +ik[14106] = 0 +il[14106] = 155 +im[14106] = 0.3216 +ij[14106] = 13 +id[14107] = "2890-02-16T15:15:50" +ik[14107] = 8.12 +il[14107] = 167 +im[14107] = 0.5351 +ij[14107] = 11 +id[14108] = "2890-02-17T19:19:36" +ik[14108] = 0.5561 +il[14108] = 180 +im[14108] = 0.5562 +ij[14108] = 2 +id[14109] = "2890-03-09T22:29:08" +ik[14109] = 42.96 +il[14109] = -157 +im[14109] = 0.0316 +ij[14109] = 7.1573 +id[14110] = "2890-04-10T15:38:54" +ik[14110] = 74.68 +il[14110] = -95 +im[14110] = 0.1834 +ij[14110] = 14 +id[14111] = "2890-04-18T06:39:09" +ik[14111] = 2.147 +il[14111] = -77 +im[14111] = 0.1803 +ij[14111] = 27.5 +id[14112] = "2890-04-29T06:13:27" +ik[14112] = 90 +il[14112] = -47 +im[14112] = 0.2051 +ij[14112] = 5 +id[14113] = "2890-05-04T10:02:21" +ik[14113] = 0.375 +il[14113] = -31 +im[14113] = 0.0905 +ij[14113] = 28.7 +id[14114] = "2890-06-08T03:37:17" +ik[14114] = 4.3 +il[14114] = 76 +im[14114] = 0.0869 +ij[14114] = 27.6 +id[14115] = "2890-07-12T18:06:02" +ik[14115] = 54.465 +il[14115] = -178 +im[14115] = 0.1235 +ij[14115] = 8 +id[14116] = "2890-07-18T01:55:03" +ik[14116] = 6.259 +il[14116] = -162 +im[14116] = 0.0686 +ij[14116] = 27.2 +id[14117] = "2890-12-01T05:21:07" +ik[14117] = 0.38 +il[14117] = -124 +im[14117] = 0.0406 +ij[14117] = 12 +id[14118] = "2891-01-12T16:55:55" +ik[14118] = 1.957 +il[14118] = 180 +im[14118] = 0.0689 +ij[14118] = 28.1 +id[14119] = "2891-01-26T06:43:09" +ik[14119] = 0.205 +il[14119] = -138 +im[14119] = 0.0888 +ij[14119] = 27.3 +id[14120] = "2891-02-09T20:48:46" +ik[14120] = 0.032 +il[14120] = -93 +im[14120] = 0.0899 +ij[14120] = 28.6 +id[14121] = "2891-02-12T20:28:02" +ik[14121] = 0.901 +il[14121] = -84 +im[14121] = 0.0632 +ij[14121] = 27.5 +id[14122] = "2891-03-04T04:00:54" +ik[14122] = 0.362 +il[14122] = -24 +im[14122] = 0.0155 +ij[14122] = 28.7 +id[14123] = "2891-03-28T19:04:15" +ik[14123] = 2.37 +il[14123] = 53 +im[14123] = 0.0864 +ij[14123] = 27.6 +id[14124] = "2891-05-02T16:22:57" +ik[14124] = 54.395 +il[14124] = 162 +im[14124] = 0.0154 +ij[14124] = 9 +id[14125] = "2891-05-05T14:43:08" +ik[14125] = 3.377 +il[14125] = 172 +im[14125] = 0.0776 +ij[14125] = 27.2 +id[14126] = "2891-07-11T09:36:54" +ik[14126] = 90 +il[14126] = 17 +im[14126] = 0.1865 +ij[14126] = 6 +id[14127] = "2891-08-21T14:34:30" +ik[14127] = 3.43 +il[14127] = 132 +im[14127] = 0.3709 +ij[14127] = 27.7 +id[14128] = "2891-08-28T15:39:20" +ik[14128] = 0 +il[14128] = 142 +im[14128] = 0.0684 +ij[14128] = 13 +id[14129] = "2891-09-17T02:36:40" +ik[14129] = 0.5129 +il[14129] = -170 +im[14129] = 0.513 +ij[14129] = 2 +id[14130] = "2891-09-20T10:55:12" +ik[14130] = 8.68 +il[14130] = -161 +im[14130] = 0.3637 +ij[14130] = 11 +id[14131] = "2891-10-11T18:28:06" +ik[14131] = 44.12 +il[14131] = -168 +im[14131] = 0.3797 +ij[14131] = 7.1622 +id[14132] = "2891-11-13T13:47:51" +ik[14132] = 76.92 +il[14132] = -103 +im[14132] = 0.2232 +ij[14132] = 14 +id[14133] = "2891-11-30T01:44:34" +ik[14133] = 90 +il[14133] = -62 +im[14133] = 0.1471 +ij[14133] = 5 +id[14134] = "2892-01-23T08:52:28" +ik[14134] = 3.337 +il[14134] = 106 +im[14134] = 0.1253 +ij[14134] = 27.1 +id[14135] = "2892-02-09T19:01:55" +ik[14135] = 1.932 +il[14135] = 161 +im[14135] = 0.1279 +ij[14135] = 28.4 +id[14136] = "2892-02-11T12:00:25" +ik[14136] = 0.166 +il[14136] = 166 +im[14136] = 0.1118 +ij[14136] = 28.8 +id[14137] = "2892-02-15T13:42:58" +ik[14137] = 53.718 +il[14137] = 179 +im[14137] = 0.031 +ij[14137] = 8 +id[14138] = "2892-02-24T23:13:29" +ik[14138] = 0.703 +il[14138] = -152 +im[14138] = 0.105 +ij[14138] = 28.5 +id[14139] = "2892-03-10T23:17:22" +ik[14139] = 1.366 +il[14139] = -105 +im[14139] = 0.1117 +ij[14139] = 27.3 +id[14140] = "2892-03-28T17:23:36" +ik[14140] = 0.422 +il[14140] = -50 +im[14140] = 0.0627 +ij[14140] = 27.5 +id[14141] = "2892-04-03T01:22:30" +ik[14141] = 0.719 +il[14141] = -33 +im[14141] = 0.0374 +ij[14141] = 28.6 +id[14142] = "2892-04-19T13:27:41" +ik[14142] = 0.696 +il[14142] = 17 +im[14142] = 0.0554 +ij[14142] = 28.7 +id[14143] = "2892-05-03T12:29:48" +ik[14143] = 0.35 +il[14143] = 60 +im[14143] = 0.0358 +ij[14143] = 28.1 +id[14144] = "2892-05-11T19:03:11" +ik[14144] = 3.56 +il[14144] = 85 +im[14144] = 0.0798 +ij[14144] = 27.6 +id[14145] = "2892-07-11T04:22:04" +ik[14145] = 0.61 +il[14145] = -113 +im[14145] = 0.0676 +ij[14145] = 12 +id[14146] = "2892-11-02T19:09:22" +ik[14146] = 3.747 +il[14146] = 56 +im[14146] = 0.0918 +ij[14146] = 27.4 +id[14147] = "2892-12-01T11:24:19" +ik[14147] = 53.651 +il[14147] = 144 +im[14147] = 0.0829 +ij[14147] = 9 +id[14148] = "2892-12-03T23:13:03" +ik[14148] = 2.837 +il[14148] = 152 +im[14148] = 0.1195 +ij[14148] = 28.8 +id[14149] = "2892-12-29T02:27:09" +ik[14149] = 0.429 +il[14149] = -131 +im[14149] = 0.033 +ij[14149] = 27.3 +id[14150] = "2893-01-16T19:47:08" +ik[14150] = 0.283 +il[14150] = -72 +im[14150] = 0.1139 +ij[14150] = 28.5 +id[14151] = "2893-01-17T02:48:02" +ik[14151] = 0.722 +il[14151] = -72 +im[14151] = 0.1205 +ij[14151] = 27.5 +id[14152] = "2893-02-07T23:56:06" +ik[14152] = 2.387 +il[14152] = -3 +im[14152] = 0.1405 +ij[14152] = 28.6 +id[14153] = "2893-02-17T08:47:19" +ik[14153] = 1.884 +il[14153] = 26 +im[14153] = 0.1971 +ij[14153] = 28.7 +id[14154] = "2893-02-19T18:25:50" +ik[14154] = 90 +il[14154] = 34 +im[14154] = 0.2045 +ij[14154] = 6 +id[14155] = "2893-03-11T04:01:08" +ik[14155] = 1.69 +il[14155] = 82 +im[14155] = 0.1134 +ij[14155] = 27.6 +id[14156] = "2893-04-07T13:48:18" +ik[14156] = 0 +il[14156] = 155 +im[14156] = 0.249 +ij[14156] = 13 +id[14157] = "2893-04-30T04:06:46" +ik[14157] = 0.5342 +il[14157] = 160 +im[14157] = 0.5342 +ij[14157] = 2 +id[14158] = "2893-04-30T11:39:50" +ik[14158] = 5.99 +il[14158] = 170 +im[14158] = 0.5328 +ij[14158] = 11 +id[14159] = "2893-05-09T20:17:00" +ik[14159] = 2.04 +il[14159] = -169 +im[14159] = 0.3582 +ij[14159] = 27.6 +id[14160] = "2893-05-21T15:53:53" +ik[14160] = 44.09 +il[14160] = -154 +im[14160] = 0.2025 +ij[14160] = 7.1631 +id[14161] = "2893-06-01T22:27:52" +ik[14161] = 3.2 +il[14161] = -135 +im[14161] = 0.0925 +ij[14161] = 27.6 +id[14162] = "2893-06-23T18:27:36" +ik[14162] = 77.19 +il[14162] = -89 +im[14162] = 0.2589 +ij[14162] = 14 +id[14163] = "2893-07-09T16:40:35" +ik[14163] = 90 +il[14163] = -47 +im[14163] = 0.1958 +ij[14163] = 5 +id[14164] = "2893-09-19T15:51:00" +ik[14164] = 54.435 +il[14164] = 172 +im[14164] = 0.1058 +ij[14164] = 8 +id[14165] = "2893-12-26T04:24:28" +ik[14165] = 4.925 +il[14165] = 115 +im[14165] = 0.0341 +ij[14165] = 27.1 +id[14166] = "2894-02-15T11:45:36" +ik[14166] = 1.28 +il[14166] = -100 +im[14166] = 0.0682 +ij[14166] = 12 +id[14167] = "2894-03-27T17:08:44" +ik[14167] = 1.215 +il[14167] = -161 +im[14167] = 0.0295 +ij[14167] = 28.6 +id[14168] = "2894-03-29T18:07:03" +ik[14168] = 0.384 +il[14168] = -166 +im[14168] = 0.0099 +ij[14168] = 28.7 +id[14169] = "2894-04-12T00:24:47" +ik[14169] = 2.86 +il[14169] = -124 +im[14169] = 0.0121 +ij[14169] = 27.6 +id[14170] = "2894-05-19T01:26:41" +ik[14170] = 4.184 +il[14170] = -8 +im[14170] = 0.0918 +ij[14170] = 27.2 +id[14171] = "2894-07-09T18:13:15" +ik[14171] = 54.654 +il[14171] = 152 +im[14171] = 0.0615 +ij[14171] = 9 +id[14172] = "2894-09-20T14:26:08" +ik[14172] = 90 +il[14172] = 14 +im[14172] = 0.1487 +ij[14172] = 6 +id[14173] = "2894-10-23T23:21:48" +ik[14173] = 0.844 +il[14173] = 105 +im[14173] = 0.0583 +ij[14173] = 27.4 +id[14174] = "2894-11-10T18:28:03" +ik[14174] = 0 +il[14174] = 148 +im[14174] = 0.3283 +ij[14174] = 13 +id[14175] = "2894-11-27T07:02:25" +ik[14175] = 0.5667 +il[14175] = -173 +im[14175] = 0.5668 +ij[14175] = 2 +id[14176] = "2894-11-29T15:44:28" +ik[14176] = 1.741 +il[14176] = -177 +im[14176] = 0.485 +ij[14176] = 27.4 +id[14177] = "2894-12-02T07:40:48" +ik[14177] = 2.26 +il[14177] = -170 +im[14177] = 0.2205 +ij[14177] = 11 +id[14178] = "2894-12-22T17:30:37" +ik[14178] = 41.96 +il[14178] = -165 +im[14178] = 0.4724 +ij[14178] = 7.1548 +id[14179] = "2895-01-23T07:51:24" +ik[14179] = 73.56 +il[14179] = -103 +im[14179] = 0.2645 +ij[14179] = 14 +id[14180] = "2895-01-28T05:35:08" +ik[14180] = 1.172 +il[14180] = -91 +im[14180] = 0.0336 +ij[14180] = 27.1 +id[14181] = "2895-02-11T08:01:23" +ik[14181] = 90 +il[14181] = -56 +im[14181] = 0.017 +ij[14181] = 5 +id[14182] = "2895-02-26T19:05:05" +ik[14182] = 1.661 +il[14182] = -8 +im[14182] = 0.0226 +ij[14182] = 28.8 +id[14183] = "2895-03-24T01:36:02" +ik[14183] = 2.355 +il[14183] = 71 +im[14183] = 0.1328 +ij[14183] = 27.3 +id[14184] = "2895-04-11T15:04:29" +ik[14184] = 0.079 +il[14184] = 129 +im[14184] = 0.0318 +ij[14184] = 27.5 +id[14185] = "2895-05-01T00:23:02" +ik[14185] = 54.045 +il[14185] = -171 +im[14185] = 0.0804 +ij[14185] = 8 +id[14186] = "2895-05-15T17:19:40" +ik[14186] = 1.004 +il[14186] = -126 +im[14186] = 0.0562 +ij[14186] = 28.7 +id[14187] = "2895-05-19T05:28:27" +ik[14187] = 0.799 +il[14187] = -115 +im[14187] = 0.1018 +ij[14187] = 28.6 +id[14188] = "2895-05-25T05:14:12" +ik[14188] = 0.282 +il[14188] = -96 +im[14188] = 0.05 +ij[14188] = 28.5 +id[14189] = "2895-05-26T19:47:47" +ik[14189] = 3.9 +il[14189] = -92 +im[14189] = 0.0156 +ij[14189] = 27.6 +id[14190] = "2895-07-03T21:40:22" +ik[14190] = 5.514 +il[14190] = 24 +im[14190] = 0.0973 +ij[14190] = 27.2 +id[14191] = "2895-07-16T06:24:54" +ik[14191] = 2.888 +il[14191] = 62 +im[14191] = 0.0677 +ij[14191] = 28.1 +id[14192] = "2895-08-12T11:58:16" +ik[14192] = 0.767 +il[14192] = 145 +im[14192] = 0.0233 +ij[14192] = 28.1 +id[14193] = "2895-09-18T00:31:40" +ik[14193] = 1.41 +il[14193] = -124 +im[14193] = 0.0854 +ij[14193] = 12 +id[14194] = "2895-10-25T06:13:06" +ik[14194] = 2.218 +il[14194] = 168 +im[14194] = 0.0097 +ij[14194] = 28.1 +id[14195] = "2895-11-17T17:28:01" +ik[14195] = 4.422 +il[14195] = -120 +im[14195] = 0.094 +ij[14195] = 27.4 +id[14196] = "2895-12-23T10:10:42" +ik[14196] = 2.159 +il[14196] = -12 +im[14196] = 0.0347 +ij[14196] = 28.8 +id[14197] = "2896-01-11T16:20:55" +ik[14197] = 0.101 +il[14197] = 47 +im[14197] = 0.0613 +ij[14197] = 27.3 +id[14198] = "2896-01-29T13:42:42" +ik[14198] = 0.929 +il[14198] = 103 +im[14198] = 0.1037 +ij[14198] = 27.5 +id[14199] = "2896-02-16T18:52:24" +ik[14199] = 53.741 +il[14199] = 160 +im[14199] = 0.1168 +ij[14199] = 9 +id[14200] = "2896-02-21T20:22:33" +ik[14200] = 1.184 +il[14200] = 175 +im[14200] = 0.0292 +ij[14200] = 28.4 +id[14201] = "2896-03-09T18:32:24" +ik[14201] = 0.911 +il[14201] = -132 +im[14201] = 0.0143 +ij[14201] = 28.7 +id[14202] = "2896-03-14T19:14:45" +ik[14202] = 1.46 +il[14202] = -116 +im[14202] = 0.1222 +ij[14202] = 27.6 +id[14203] = "2896-03-21T12:02:09" +ik[14203] = 3.381 +il[14203] = -95 +im[14203] = 0.0682 +ij[14203] = 28.6 +id[14204] = "2896-04-15T11:26:52" +ik[14204] = 3.236 +il[14204] = -17 +im[14204] = 0.1698 +ij[14204] = 28.5 +id[14205] = "2896-04-25T07:43:35" +ik[14205] = 1.713 +il[14205] = 14 +im[14205] = 0.1208 +ij[14205] = 27.2 +id[14206] = "2896-04-30T22:42:22" +ik[14206] = 90 +il[14206] = 31 +im[14206] = 0.2195 +ij[14206] = 6 +id[14207] = "2896-06-16T07:51:51" +ik[14207] = 0 +il[14207] = 162 +im[14207] = 0.2269 +ij[14207] = 13 +id[14208] = "2896-06-26T06:12:43" +ik[14208] = 0.4933 +il[14208] = -179 +im[14208] = 0.4933 +ij[14208] = 2 +id[14209] = "2896-07-08T18:25:55" +ik[14209] = 3.42 +il[14209] = 165 +im[14209] = 0.4866 +ij[14209] = 11 +id[14210] = "2896-07-30T15:19:35" +ik[14210] = 44.31 +il[14210] = -159 +im[14210] = 0.1299 +ij[14210] = 7.1663 +id[14211] = "2896-09-02T15:54:18" +ik[14211] = 78.34 +il[14211] = -92 +im[14211] = 0.2351 +ij[14211] = 14 +id[14212] = "2896-09-17T02:06:41" +ik[14212] = 90 +il[14212] = -55 +im[14212] = 0.2213 +ij[14212] = 5 +id[14213] = "2896-11-29T14:25:45" +ik[14213] = 53.997 +il[14213] = 170 +im[14213] = 0.1166 +ij[14213] = 8 +id[14214] = "2897-01-09T08:04:28" +ik[14214] = 4.303 +il[14214] = -63 +im[14214] = 0.0332 +ij[14214] = 27.1 +id[14215] = "2897-02-05T23:02:24" +ik[14215] = 0.764 +il[14215] = 24 +im[14215] = 0.0226 +ij[14215] = 28.8 +id[14216] = "2897-02-06T19:25:40" +ik[14216] = 2.842 +il[14216] = 26 +im[14216] = 0.0087 +ij[14216] = 28.1 +id[14217] = "2897-02-24T12:12:55" +ik[14217] = 0.854 +il[14217] = 81 +im[14217] = 0.0567 +ij[14217] = 27.3 +id[14218] = "2897-03-14T00:45:22" +ik[14218] = 0.663 +il[14218] = 135 +im[14218] = 0.0751 +ij[14218] = 27.5 +id[14219] = "2897-03-26T19:38:12" +ik[14219] = 2.612 +il[14219] = 163 +im[14219] = 0.0536 +ij[14219] = 28.1 +id[14220] = "2897-05-01T14:02:24" +ik[14220] = 0.96 +il[14220] = -99 +im[14220] = 0.0857 +ij[14220] = 12 +id[14221] = "2897-06-02T14:05:21" +ik[14221] = 4.761 +il[14221] = -179 +im[14221] = 0.0724 +ij[14221] = 27.2 +id[14222] = "2897-06-17T17:25:35" +ik[14222] = 0.806 +il[14222] = -137 +im[14222] = 0.0746 +ij[14222] = 28.5 +id[14223] = "2897-06-20T02:37:40" +ik[14223] = 0.081 +il[14223] = -130 +im[14223] = 0.044 +ij[14223] = 27.9 +id[14224] = "2897-09-16T13:07:32" +ik[14224] = 54.271 +il[14224] = 142 +im[14224] = 0.095 +ij[14224] = 9 +id[14225] = "2897-10-21T12:05:21" +ik[14225] = 2.593 +il[14225] = -112 +im[14225] = 0.034 +ij[14225] = 27.4 +id[14226] = "2897-12-04T15:38:41" +ik[14226] = 90 +il[14226] = 24 +im[14226] = 0.0089 +ij[14226] = 6 +id[14227] = "2897-12-05T08:36:05" +ik[14227] = 3.539 +il[14227] = 26 +im[14227] = 0.0299 +ij[14227] = 28.8 +id[14228] = "2897-12-25T21:38:42" +ik[14228] = 0.024 +il[14228] = 79 +im[14228] = 0.3015 +ij[14228] = 27.3 +id[14229] = "2898-01-23T15:54:45" +ik[14229] = 0 +il[14229] = 156 +im[14229] = 0.4722 +ij[14229] = 13 +id[14230] = "2898-02-14T03:46:04" +ik[14230] = 7.95 +il[14230] = 169 +im[14230] = 0.2548 +ij[14230] = 11 +id[14231] = "2898-02-18T23:13:31" +ik[14231] = 0.5592 +il[14231] = -174 +im[14231] = 0.5593 +ij[14231] = 2 +id[14232] = "2898-03-07T02:10:22" +ik[14232] = 42.43 +il[14232] = -156 +im[14232] = 0.3677 +ij[14232] = 7.1572 +id[14233] = "2898-04-08T03:36:10" +ik[14233] = 74.49 +il[14233] = -92 +im[14233] = 0.041 +ij[14233] = 14 +id[14234] = "2898-04-18T11:34:42" +ik[14234] = 1.98 +il[14234] = -68 +im[14234] = 0.2218 +ij[14234] = 27.5 +id[14235] = "2898-04-26T19:31:19" +ik[14235] = 90 +il[14235] = -45 +im[14235] = 0.1156 +ij[14235] = 5 +id[14236] = "2898-05-31T03:45:04" +ik[14236] = 0.745 +il[14236] = 62 +im[14236] = 0.1436 +ij[14236] = 28.4 +id[14237] = "2898-06-07T20:44:35" +ik[14237] = 4.29 +il[14237] = 85 +im[14237] = 0.0351 +ij[14237] = 27.6 +id[14238] = "2898-06-08T11:06:17" +ik[14238] = 1.561 +il[14238] = 87 +im[14238] = 0.0515 +ij[14238] = 28.7 +id[14239] = "2898-07-01T09:22:01" +ik[14239] = 0.115 +il[14239] = 157 +im[14239] = 0.1075 +ij[14239] = 28.6 +id[14240] = "2898-07-10T10:59:34" +ik[14240] = 54.457 +il[14240] = -175 +im[14240] = 0.0796 +ij[14240] = 8 +id[14241] = "2898-07-17T16:27:02" +ik[14241] = 6.229 +il[14241] = -153 +im[14241] = 0.0986 +ij[14241] = 27.2 +id[14242] = "2898-08-25T22:24:23" +ik[14242] = 0.278 +il[14242] = -34 +im[14242] = 0.0857 +ij[14242] = 28.5 +id[14243] = "2898-09-22T19:58:04" +ik[14243] = 1.608 +il[14243] = 52 +im[14243] = 0.053 +ij[14243] = 28.1 +id[14244] = "2898-10-03T16:56:29" +ik[14244] = 0.777 +il[14244] = 86 +im[14244] = 0.0365 +ij[14244] = 28.1 +id[14245] = "2898-11-28T18:08:38" +ik[14245] = 0.44 +il[14245] = -114 +im[14245] = 0.086 +ij[14245] = 12 +id[14246] = "2899-01-11T17:20:41" +ik[14246] = 1.663 +il[14246] = -173 +im[14246] = 0.0882 +ij[14246] = 28.8 +id[14247] = "2899-01-25T20:02:41" +ik[14247] = 0.201 +il[14247] = -129 +im[14247] = 0.0864 +ij[14247] = 27.3 +id[14248] = "2899-02-12T09:51:35" +ik[14248] = 0.899 +il[14248] = -75 +im[14248] = 0.0883 +ij[14248] = 27.5 +id[14249] = "2899-03-28T08:52:29" +ik[14249] = 2.35 +il[14249] = 62 +im[14249] = 0.0986 +ij[14249] = 27.6 +id[14250] = "2899-04-03T21:57:53" +ik[14250] = 0.538 +il[14250] = 82 +im[14250] = 0.005 +ij[14250] = 28.7 +id[14251] = "2899-04-30T08:40:55" +ik[14251] = 54.376 +il[14251] = 165 +im[14251] = 0.0831 +ij[14251] = 9 +id[14252] = "2899-05-03T06:59:45" +ik[14252] = 3.045 +il[14252] = 174 +im[14252] = 0.0213 +ij[14252] = 28.6 +id[14253] = "2899-05-05T05:45:48" +ik[14253] = 3.35 +il[14253] = 180 +im[14253] = 0.0289 +ij[14253] = 27.2 +id[14254] = "2899-07-09T02:34:07" +ik[14254] = 90 +il[14254] = 20 +im[14254] = 0.1889 +ij[14254] = 6 +id[14255] = "2899-07-29T19:51:10" +ik[14255] = 1.898 +il[14255] = 72 +im[14255] = 0.1531 +ij[14255] = 28.5 +id[14256] = "2899-08-27T03:36:37" +ik[14256] = 0 +il[14256] = 148 +im[14256] = 0.2426 +ij[14256] = 13 +id[14257] = "2899-09-18T01:22:04" +ik[14257] = 8.68 +il[14257] = 159 +im[14257] = 0.5274 +ij[14257] = 11 +id[14258] = "2899-09-18T06:40:08" +ik[14258] = 0.5281 +il[14258] = 170 +im[14258] = 0.5281 +ij[14258] = 2 +id[14259] = "2899-10-10T02:39:11" +ik[14259] = 43.96 +il[14259] = -164 +im[14259] = 0.181 +ij[14259] = 7.1627 +id[14260] = "2899-11-11T07:39:55" +ik[14260] = 76.17 +il[14260] = -100 +im[14260] = 0.2577 +ij[14260] = 14 +id[14261] = "2899-11-27T16:16:43" +ik[14261] = 90 +il[14261] = -59 +im[14261] = 0.2104 +ij[14261] = 5 +id[14262] = "2900-01-23T00:52:01" +ik[14262] = 3.375 +il[14262] = 115 +im[14262] = 0.097 +ij[14262] = 27.1 +id[14263] = "2900-02-13T01:12:56" +ik[14263] = 53.716 +il[14263] = -179 +im[14263] = 0.1119 +ij[14263] = 8 +id[14264] = "2900-02-25T17:05:25" +ik[14264] = 0.165 +il[14264] = -139 +im[14264] = 0.108 +ij[14264] = 28.8 +id[14265] = "2900-03-11T13:29:48" +ik[14265] = 1.351 +il[14265] = -96 +im[14265] = 0.1078 +ij[14265] = 27.3 +id[14266] = "2900-03-29T07:12:01" +ik[14266] = 0.429 +il[14266] = -41 +im[14266] = 0.0897 +ij[14266] = 27.5 +id[14267] = "2900-04-12T09:48:14" +ik[14267] = 1.093 +il[14267] = 2 +im[14267] = 0.0964 +ij[14267] = 28.1 +id[14268] = "2900-05-12T08:16:30" +ik[14268] = 3.54 +il[14268] = 94 +im[14268] = 0.0876 +ij[14268] = 27.6 +id[14269] = "2900-05-21T07:38:38" +ik[14269] = 0.737 +il[14269] = 121 +im[14269] = 0.0438 +ij[14269] = 28.7 +id[14270] = "2900-05-22T19:39:38" +ik[14270] = 0.985 +il[14270] = 126 +im[14270] = 0.0661 +ij[14270] = 28.1 +id[14271] = "2900-07-09T22:56:38" +ik[14271] = 0.56 +il[14271] = -109 +im[14271] = 0.0799 +ij[14271] = 12 +id[14272] = "2900-09-27T14:56:58" +ik[14272] = 0.59 +il[14272] = -46 +im[14272] = 0.0734 +ij[14272] = 28.5 +id[14273] = "2900-11-03T09:21:21" +ik[14273] = 3.728 +il[14273] = 65 +im[14273] = 0.0633 +ij[14273] = 27.4 +id[14274] = "2900-11-29T22:43:37" +ik[14274] = 53.664 +il[14274] = 146 +im[14274] = 0.0158 +ij[14274] = 9 +id[14275] = "2900-12-19T09:49:58" +ik[14275] = 2.537 +il[14275] = -154 +im[14275] = 0.0757 +ij[14275] = 28.8 +id[14276] = "2900-12-29T18:46:41" +ik[14276] = 0.432 +il[14276] = -122 +im[14276] = 0.0258 +ij[14276] = 27.3 +id[14277] = "2901-01-17T21:04:28" +ik[14277] = 0.695 +il[14277] = -62 +im[14277] = 0.0848 +ij[14277] = 27.5 +id[14278] = "2901-02-18T08:19:58" +ik[14278] = 90 +il[14278] = 36 +im[14278] = 0.1814 +ij[14278] = 6 +id[14279] = "2901-03-12T20:37:26" +ik[14279] = 1.99 +il[14279] = 94 +im[14279] = 0.1418 +ij[14279] = 27.6 +id[14280] = "2901-04-06T07:40:22" +ik[14280] = 0 +il[14280] = 158 +im[14280] = 0.4096 +ij[14280] = 13 +id[14281] = "2901-04-29T03:10:04" +ik[14281] = 6.24 +il[14281] = 173 +im[14281] = 0.3857 +ij[14281] = 11 +id[14282] = "2901-05-02T05:57:04" +ik[14282] = 0.5203 +il[14282] = -172 +im[14282] = 0.5203 +ij[14282] = 2 +id[14283] = "2901-05-04T06:52:21" +ik[14283] = 3.29 +il[14283] = -169 +im[14283] = 0.4577 +ij[14283] = 27.6 +id[14284] = "2901-05-20T07:43:57" +ik[14284] = 44 +il[14284] = -151 +im[14284] = 0.1414 +ij[14284] = 7.1629 +id[14285] = "2901-06-06T04:23:06" +ik[14285] = 3.63 +il[14285] = -121 +im[14285] = 0.0822 +ij[14285] = 27.6 +id[14286] = "2901-06-22T08:17:40" +ik[14286] = 77.03 +il[14286] = -86 +im[14286] = 0.1492 +ij[14286] = 14 +id[14287] = "2901-06-27T06:51:33" +ik[14287] = 2.561 +il[14287] = -75 +im[14287] = 0.2371 +ij[14287] = 28.7 +id[14288] = "2901-07-08T08:52:41" +ik[14288] = 90 +il[14288] = -44 +im[14288] = 0.1737 +ij[14288] = 5 +id[14289] = "2901-08-12T15:26:38" +ik[14289] = 1.113 +il[14289] = 64 +im[14289] = 0.133 +ij[14289] = 28.6 +id[14290] = "2901-09-18T08:23:11" +ik[14290] = 54.444 +il[14290] = 175 +im[14290] = 0.0349 +ij[14290] = 8 +id[14291] = "2901-11-26T04:24:40" +ik[14291] = 1.878 +il[14291] = 28 +im[14291] = 0.0713 +ij[14291] = 28.1 +id[14292] = "2901-12-07T20:55:49" +ik[14292] = 0.002 +il[14292] = 64 +im[14292] = 0.0914 +ij[14292] = 28.5 +id[14293] = "2901-12-26T17:38:14" +ik[14293] = 4.939 +il[14293] = 123 +im[14293] = 0.0677 +ij[14293] = 27.1 +id[14294] = "2902-02-13T21:27:21" +ik[14294] = 1.25 +il[14294] = -98 +im[14294] = 0.0029 +ij[14294] = 12 +id[14295] = "2902-04-12T13:36:05" +ik[14295] = 2.85 +il[14295] = -116 +im[14295] = 0.0478 +ij[14295] = 27.6 +id[14296] = "2902-04-30T01:18:11" +ik[14296] = 0.264 +il[14296] = -61 +im[14296] = 0.0157 +ij[14296] = 28.7 +id[14297] = "2902-05-19T14:57:47" +ik[14297] = 4.17 +il[14297] = 0 +im[14297] = 0.0663 +ij[14297] = 27.2 +id[14298] = "2902-05-31T02:23:08" +ik[14298] = 5.643 +il[14298] = 36 +im[14298] = 0.0123 +ij[14298] = 28.1 +id[14299] = "2902-06-15T00:39:18" +ik[14299] = 1.884 +il[14299] = 83 +im[14299] = 0.0018 +ij[14299] = 28.6 +id[14300] = "2902-07-08T12:21:26" +ik[14300] = 54.656 +il[14300] = 155 +im[14300] = 0.1194 +ij[14300] = 9 +id[14301] = "2902-07-14T22:24:40" +ik[14301] = 0.967 +il[14301] = 175 +im[14301] = 0.0117 +ij[14301] = 28.4 +id[14302] = "2902-09-19T03:42:14" +ik[14302] = 90 +il[14302] = 16 +im[14302] = 0.2013 +ij[14302] = 6 +id[14303] = "2902-10-27T11:10:14" +ik[14303] = 1.123 +il[14303] = 122 +im[14303] = 0.1086 +ij[14303] = 27.4 +id[14304] = "2902-11-09T08:18:07" +ik[14304] = 0 +il[14304] = 150 +im[14304] = 0.0228 +ij[14304] = 13 +id[14305] = "2902-11-23T05:59:07" +ik[14305] = 0.34 +il[14305] = -179 +im[14305] = 0.1024 +ij[14305] = 27.4 +id[14306] = "2902-11-29T09:58:17" +ik[14306] = 0.5652 +il[14306] = -172 +im[14306] = 0.5652 +ij[14306] = 2 +id[14307] = "2902-11-30T21:02:52" +ik[14307] = 2.64 +il[14307] = -169 +im[14307] = 0.5307 +ij[14307] = 11 +id[14308] = "2902-12-21T07:20:41" +ik[14308] = 41.96 +il[14308] = -163 +im[14308] = 0.2577 +ij[14308] = 7.155 +id[14309] = "2903-01-21T21:24:27" +ik[14309] = 73.55 +il[14309] = -100 +im[14309] = 0.2699 +ij[14309] = 14 +id[14310] = "2903-01-29T14:34:40" +ik[14310] = 1.293 +il[14310] = -82 +im[14310] = 0.0895 +ij[14310] = 27.1 +id[14311] = "2903-02-08T16:08:32" +ik[14311] = 2.98 +il[14311] = -56 +im[14311] = 0.2005 +ij[14311] = 28.5 +id[14312] = "2903-02-09T20:24:23" +ik[14312] = 90 +il[14312] = -54 +im[14312] = 0.1725 +ij[14312] = 5 +id[14313] = "2903-03-15T09:41:54" +ik[14313] = 0.893 +il[14313] = 51 +im[14313] = 0.0332 +ij[14313] = 28.8 +id[14314] = "2903-03-24T18:34:14" +ik[14314] = 2.309 +il[14314] = 80 +im[14314] = 0.1444 +ij[14314] = 27.3 +id[14315] = "2903-04-12T06:45:48" +ik[14315] = 0.054 +il[14315] = 138 +im[14315] = 0.0838 +ij[14315] = 27.5 +id[14316] = "2903-04-29T14:22:20" +ik[14316] = 54.028 +il[14316] = -169 +im[14316] = 0.0158 +ij[14316] = 8 +id[14317] = "2903-05-27T09:53:04" +ik[14317] = 3.89 +il[14317] = -83 +im[14317] = 0.0538 +ij[14317] = 27.6 +id[14318] = "2903-06-16T17:30:46" +ik[14318] = 1.081 +il[14318] = -21 +im[14318] = 0.0385 +ij[14318] = 28.7 +id[14319] = "2903-06-25T05:29:02" +ik[14319] = 2.605 +il[14319] = 5 +im[14319] = 0.067 +ij[14319] = 28.1 +id[14320] = "2903-07-04T10:57:41" +ik[14320] = 5.494 +il[14320] = 33 +im[14320] = 0.0822 +ij[14320] = 27.2 +id[14321] = "2903-07-14T16:06:31" +ik[14321] = 1.364 +il[14321] = 64 +im[14321] = 0.0042 +ij[14321] = 28.1 +id[14322] = "2903-08-06T08:38:06" +ik[14322] = 0.362 +il[14322] = 133 +im[14322] = 0.0884 +ij[14322] = 28.6 +id[14323] = "2903-09-16T17:03:50" +ik[14323] = 1.41 +il[14323] = -112 +im[14323] = 0.0685 +ij[14323] = 12 +id[14324] = "2903-11-18T06:53:20" +ik[14324] = 4.412 +il[14324] = -112 +im[14324] = 0.0912 +ij[14324] = 27.4 +id[14325] = "2904-01-06T18:16:50" +ik[14325] = 0.939 +il[14325] = 38 +im[14325] = 0.0824 +ij[14325] = 28.5 +id[14326] = "2904-01-07T08:08:35" +ik[14326] = 1.901 +il[14326] = 41 +im[14326] = 0.075 +ij[14326] = 28.8 +id[14327] = "2904-01-12T06:22:41" +ik[14327] = 0.104 +il[14327] = 56 +im[14327] = 0.0194 +ij[14327] = 27.3 +id[14328] = "2904-01-30T04:09:48" +ik[14328] = 0.923 +il[14328] = 111 +im[14328] = 0.085 +ij[14328] = 27.5 +id[14329] = "2904-02-15T06:25:55" +ik[14329] = 53.724 +il[14329] = 162 +im[14329] = 0.0914 +ij[14329] = 9 +id[14330] = "2904-03-15T11:35:57" +ik[14330] = 1.41 +il[14330] = -107 +im[14330] = 0.0885 +ij[14330] = 27.6 +id[14331] = "2904-04-12T13:22:30" +ik[14331] = 2.687 +il[14331] = -19 +im[14331] = 0.0551 +ij[14331] = 28.7 +id[14332] = "2904-04-26T07:18:14" +ik[14332] = 1.63 +il[14332] = 24 +im[14332] = 0.0621 +ij[14332] = 27.2 +id[14333] = "2904-04-29T16:08:46" +ik[14333] = 90 +il[14333] = 34 +im[14333] = 0.1813 +ij[14333] = 6 +id[14334] = "2904-06-14T21:24:54" +ik[14334] = 0 +il[14334] = 165 +im[14334] = 0.3948 +ij[14334] = 13 +id[14335] = "2904-06-28T12:47:25" +ik[14335] = 0.5063 +il[14335] = 150 +im[14335] = 0.5064 +ij[14335] = 2 +id[14336] = "2904-07-07T11:24:00" +ik[14336] = 3.12 +il[14336] = 176 +im[14336] = 0.2916 +ij[14336] = 11 +id[14337] = "2904-07-29T07:53:38" +ik[14337] = 44.44 +il[14337] = -157 +im[14337] = 0.2318 +ij[14337] = 7.1663 +id[14338] = "2904-09-01T08:25:21" +ik[14338] = 78.46 +il[14338] = -89 +im[14338] = 0.1635 +ij[14338] = 14 +id[14339] = "2904-09-15T18:32:57" +ik[14339] = 90 +il[14339] = -52 +im[14339] = 0.1518 +ij[14339] = 5 +id[14340] = "2904-09-20T15:36:43" +ik[14340] = 2.6 +il[14340] = -37 +im[14340] = 0.2051 +ij[14340] = 28.6 +id[14341] = "2904-11-28T04:17:56" +ik[14341] = 54.013 +il[14341] = 173 +im[14341] = 0.0617 +ij[14341] = 8 +id[14342] = "2904-12-02T12:10:13" +ik[14342] = 0.617 +il[14342] = -174 +im[14342] = 0.1191 +ij[14342] = 28.4 +id[14343] = "2905-01-09T21:53:20" +ik[14343] = 4.323 +il[14343] = -54 +im[14343] = 0.0133 +ij[14343] = 27.1 +id[14344] = "2905-01-24T23:51:30" +ik[14344] = 2.226 +il[14344] = -7 +im[14344] = 0.0058 +ij[14344] = 28.1 +id[14345] = "2905-02-09T04:04:04" +ik[14345] = 1.852 +il[14345] = 40 +im[14345] = 0.0119 +ij[14345] = 28.1 +id[14346] = "2905-02-20T18:07:20" +ik[14346] = 0.838 +il[14346] = 76 +im[14346] = 0.0551 +ij[14346] = 28.8 +id[14347] = "2905-02-25T01:32:27" +ik[14347] = 0.847 +il[14347] = 90 +im[14347] = 0.0216 +ij[14347] = 27.3 +id[14348] = "2905-03-13T03:35:42" +ik[14348] = 0.04 +il[14348] = 139 +im[14348] = 0.029 +ij[14348] = 28.5 +id[14349] = "2905-03-14T13:58:14" +ik[14349] = 0.666 +il[14349] = 144 +im[14349] = 0.053 +ij[14349] = 27.5 +id[14350] = "2905-04-30T05:03:50" +ik[14350] = 1 +il[14350] = -96 +im[14350] = 0.0648 +ij[14350] = 12 +id[14351] = "2905-06-03T03:08:27" +ik[14351] = 4.751 +il[14351] = -165 +im[14351] = 0.0829 +ij[14351] = 27.2 +id[14352] = "2905-06-20T14:32:55" +ik[14352] = 0.044 +il[14352] = -121 +im[14352] = 0.0751 +ij[14352] = 27.9 +id[14353] = "2905-07-20T00:23:28" +ik[14353] = 0.434 +il[14353] = -30 +im[14353] = 0.088 +ij[14353] = 28.1 +id[14354] = "2905-07-27T05:10:27" +ik[14354] = 0.403 +il[14354] = -7 +im[14354] = 0.0381 +ij[14354] = 28.6 +id[14355] = "2905-08-06T08:00:57" +ik[14355] = 3.922 +il[14355] = 24 +im[14355] = 0.0487 +ij[14355] = 28.1 +id[14356] = "2905-09-15T04:39:17" +ik[14356] = 54.292 +il[14356] = 146 +im[14356] = 0.1165 +ij[14356] = 9 +id[14357] = "2905-10-22T05:20:27" +ik[14357] = 2.547 +il[14357] = -103 +im[14357] = 0.0188 +ij[14357] = 27.4 +id[14358] = "2905-12-03T02:54:28" +ik[14358] = 90 +il[14358] = 26 +im[14358] = 0.1699 +ij[14358] = 6 +id[14359] = "2905-12-26T05:58:59" +ik[14359] = 1.796 +il[14359] = 86 +im[14359] = 0.274 +ij[14359] = 28.8 +id[14360] = "2905-12-27T19:19:34" +ik[14360] = 0.151 +il[14360] = 89 +im[14360] = 0.3123 +ij[14360] = 27.3 +id[14361] = "2906-01-22T08:25:48" +ik[14361] = 0 +il[14361] = 156 +im[14361] = 0.3411 +ij[14361] = 13 +id[14362] = "2906-02-12T16:13:26" +ik[14362] = 7.76 +il[14362] = 172 +im[14362] = 0.2269 +ij[14362] = 11 +id[14363] = "2906-02-21T02:53:57" +ik[14363] = 0.5503 +il[14363] = -169 +im[14363] = 0.5503 +ij[14363] = 2 +id[14364] = "2906-03-05T11:34:23" +ik[14364] = 42.13 +il[14364] = -153 +im[14364] = 0.4057 +ij[14364] = 7.1571 +id[14365] = "2906-03-17T11:46:45" +ik[14365] = 5.858 +il[14365] = -133 +im[14365] = 0.3022 +ij[14365] = 28.8 +id[14366] = "2906-04-06T15:24:06" +ik[14366] = 74.29 +il[14366] = -90 +im[14366] = 0.2106 +ij[14366] = 14 +id[14367] = "2906-04-19T15:01:47" +ik[14367] = 1.829 +il[14367] = -59 +im[14367] = 0.2379 +ij[14367] = 27.5 +id[14368] = "2906-04-25T08:40:19" +ik[14368] = 90 +il[14368] = -42 +im[14368] = 0.0622 +ij[14368] = 5 +id[14369] = "2906-05-13T17:27:27" +ik[14369] = 0.249 +il[14369] = 15 +im[14369] = 0.1091 +ij[14369] = 28.5 +id[14370] = "2906-06-08T13:43:52" +ik[14370] = 4.28 +il[14370] = 94 +im[14370] = 0.0276 +ij[14370] = 27.6 +id[14371] = "2906-07-09T03:53:05" +ik[14371] = 54.449 +il[14371] = -172 +im[14371] = 0.0125 +ij[14371] = 8 +id[14372] = "2906-07-11T01:18:14" +ik[14372] = 1.639 +il[14372] = -166 +im[14372] = 0.0308 +ij[14372] = 28.7 +id[14373] = "2906-07-18T06:52:21" +ik[14373] = 6.2 +il[14373] = -144 +im[14373] = 0.1109 +ij[14373] = 27.2 +id[14374] = "2906-09-18T00:09:12" +ik[14374] = 0.464 +il[14374] = 44 +im[14374] = 0.0736 +ij[14374] = 28.6 +id[14375] = "2906-11-27T07:04:48" +ik[14375] = 0.49 +il[14375] = -119 +im[14375] = 0.0744 +ij[14375] = 12 +id[14376] = "2907-01-26T09:22:14" +ik[14376] = 0.198 +il[14376] = -121 +im[14376] = 0.0694 +ij[14376] = 27.3 +id[14377] = "2907-01-26T10:59:22" +ik[14377] = 1.445 +il[14377] = -121 +im[14377] = 0.0701 +ij[14377] = 28.8 +id[14378] = "2907-02-12T23:18:41" +ik[14378] = 0.897 +il[14378] = -67 +im[14378] = 0.0975 +ij[14378] = 27.5 +id[14379] = "2907-03-28T22:48:49" +ik[14379] = 2.33 +il[14379] = 70 +im[14379] = 0.0956 +ij[14379] = 27.6 +id[14380] = "2907-04-04T23:01:06" +ik[14380] = 1.195 +il[14380] = 92 +im[14380] = 0.037 +ij[14380] = 28.5 +id[14381] = "2907-04-29T00:55:19" +ik[14381] = 54.356 +il[14381] = 168 +im[14381] = 0.1175 +ij[14381] = 9 +id[14382] = "2907-05-05T07:43:58" +ik[14382] = 1.542 +il[14382] = -173 +im[14382] = 0.0412 +ij[14382] = 28.7 +id[14383] = "2907-05-05T20:56:00" +ik[14383] = 3.322 +il[14383] = -171 +im[14383] = 0.0292 +ij[14383] = 27.2 +id[14384] = "2907-07-07T19:35:45" +ik[14384] = 90 +il[14384] = 23 +im[14384] = 0.0728 +ij[14384] = 6 +id[14385] = "2907-08-01T21:28:56" +ik[14385] = 3.206 +il[14385] = 89 +im[14385] = 0.1426 +ij[14385] = 28.6 +id[14386] = "2907-08-25T15:24:33" +ik[14386] = 0 +il[14386] = 151 +im[14386] = 0.4314 +ij[14386] = 13 +id[14387] = "2907-09-16T15:57:36" +ik[14387] = 8.67 +il[14387] = 162 +im[14387] = 0.355 +ij[14387] = 11 +id[14388] = "2907-09-20T07:07:38" +ik[14388] = 0.5331 +il[14388] = 177 +im[14388] = 0.5331 +ij[14388] = 2 +id[14389] = "2907-10-08T02:13:19" +ik[14389] = 43.45 +il[14389] = -162 +im[14389] = 0.2165 +ij[14389] = 7.1629 +id[14390] = "2907-10-23T03:27:38" +ik[14390] = 5.2 +il[14390] = -136 +im[14390] = 0.1276 +ij[14390] = 28.6 +id[14391] = "2907-11-10T00:37:01" +ik[14391] = 76.38 +il[14391] = -97 +im[14391] = 0.1315 +ij[14391] = 14 +id[14392] = "2907-11-26T06:56:50" +ik[14392] = 90 +il[14392] = -57 +im[14392] = 0.1335 +ij[14392] = 5 +id[14393] = "2908-01-23T16:44:26" +ik[14393] = 3.412 +il[14393] = 124 +im[14393] = 0.0536 +ij[14393] = 27.1 +id[14394] = "2908-02-11T12:42:54" +ik[14394] = 53.716 +il[14394] = -177 +im[14394] = 0.1177 +ij[14394] = 8 +id[14395] = "2908-03-11T03:35:34" +ik[14395] = 1.335 +il[14395] = -87 +im[14395] = 0.085 +ij[14395] = 27.3 +id[14396] = "2908-03-11T18:26:03" +ik[14396] = 0.383 +il[14396] = -86 +im[14396] = 0.092 +ij[14396] = 28.8 +id[14397] = "2908-03-28T21:00:27" +ik[14397] = 0.436 +il[14397] = -33 +im[14397] = 0.1014 +ij[14397] = 27.5 +id[14398] = "2908-04-18T01:08:58" +ik[14398] = 3.009 +il[14398] = 30 +im[14398] = 0.0483 +ij[14398] = 28.1 +id[14399] = "2908-05-11T21:32:43" +ik[14399] = 3.53 +il[14399] = 102 +im[14399] = 0.0813 +ij[14399] = 27.6 +id[14400] = "2908-07-07T17:31:12" +ik[14400] = 0.52 +il[14400] = -107 +im[14400] = 0.0433 +ij[14400] = 12 +id[14401] = "2908-09-08T14:01:14" +ik[14401] = 0.932 +il[14401] = -94 +im[14401] = 0.0862 +ij[14401] = 28.6 +id[14402] = "2908-09-15T06:46:22" +ik[14402] = 4.12 +il[14402] = -74 +im[14402] = 0.0582 +ij[14402] = 28.1 +id[14403] = "2908-10-13T04:37:55" +ik[14403] = 5.179 +il[14403] = 11 +im[14403] = 0.0938 +ij[14403] = 28.1 +id[14404] = "2908-11-02T23:32:53" +ik[14404] = 3.709 +il[14404] = 74 +im[14404] = 0.0234 +ij[14404] = 27.4 +id[14405] = "2908-11-27T10:06:28" +ik[14405] = 53.679 +il[14405] = 148 +im[14405] = 0.0999 +ij[14405] = 9 +id[14406] = "2908-12-29T11:17:20" +ik[14406] = 0.435 +il[14406] = -113 +im[14406] = 0.0842 +ij[14406] = 27.3 +id[14407] = "2909-01-02T00:56:00" +ik[14407] = 0.683 +il[14407] = -102 +im[14407] = 0.0196 +ij[14407] = 28.4 +id[14408] = "2909-01-03T00:59:45" +ik[14408] = 1.822 +il[14408] = -99 +im[14408] = 0.0448 +ij[14408] = 28.8 +id[14409] = "2909-01-17T15:39:07" +ik[14409] = 0.667 +il[14409] = -53 +im[14409] = 0.0378 +ij[14409] = 27.5 +id[14410] = "2909-02-15T22:03:28" +ik[14410] = 90 +il[14410] = 39 +im[14410] = 0.0386 +ij[14410] = 6 +id[14411] = "2909-03-13T17:39:39" +ik[14411] = 2.34 +il[14411] = 107 +im[14411] = 0.1681 +ij[14411] = 27.6 +id[14412] = "2909-04-05T00:37:28" +ik[14412] = 0 +il[14412] = 164 +im[14412] = 0.3752 +ij[14412] = 13 +id[14413] = "2909-04-19T19:05:32" +ik[14413] = 0.5276 +il[14413] = 160 +im[14413] = 0.5277 +ij[14413] = 2 +id[14414] = "2909-04-26T18:31:40" +ik[14414] = 6.49 +il[14414] = -180 +im[14414] = 0.0899 +ij[14414] = 11 +id[14415] = "2909-04-27T23:37:30" +ik[14415] = 4.3 +il[14415] = -171 +im[14415] = 0.1736 +ij[14415] = 27.6 +id[14416] = "2909-05-17T11:04:12" +ik[14416] = 42.44 +il[14416] = -149 +im[14416] = 0.4145 +ij[14416] = 7.1631 +id[14417] = "2909-06-08T01:30:20" +ik[14417] = 3.88 +il[14417] = -110 +im[14417] = 0.1198 +ij[14417] = 27.6 +id[14418] = "2909-06-19T23:03:59" +ik[14418] = 75.94 +il[14418] = -83 +im[14418] = 0.0607 +ij[14418] = 14 +id[14419] = "2909-07-06T01:01:16" +ik[14419] = 90 +il[14419] = -41 +im[14419] = 0.0374 +ij[14419] = 5 +id[14420] = "2909-08-02T21:04:01" +ik[14420] = 2.557 +il[14420] = 44 +im[14420] = 0.0288 +ij[14420] = 28.7 +id[14421] = "2909-08-13T15:26:10" +ik[14421] = 1.568 +il[14421] = 78 +im[14421] = 0.142 +ij[14421] = 28.5 +id[14422] = "2909-09-16T00:58:56" +ik[14422] = 54.453 +il[14422] = 178 +im[14422] = 0.0614 +ij[14422] = 8 +id[14423] = "2909-10-31T15:13:58" +ik[14423] = 0.885 +il[14423] = -42 +im[14423] = 0.0271 +ij[14423] = 28.6 +id[14424] = "2909-12-26T06:47:59" +ik[14424] = 4.953 +il[14424] = 132 +im[14424] = 0.0884 +ij[14424] = 27.1 +id[14425] = "2910-02-11T07:13:26" +ik[14425] = 1.21 +il[14425] = -104 +im[14425] = 0.0648 +ij[14425] = 12 +id[14426] = "2910-04-12T02:45:17" +ik[14426] = 2.83 +il[14426] = -107 +im[14426] = 0.0762 +ij[14426] = 27.6 +id[14427] = "2910-05-07T05:12:02" +ik[14427] = 2.9 +il[14427] = -28 +im[14427] = 0.0866 +ij[14427] = 28.1 +id[14428] = "2910-05-19T04:28:53" +ik[14428] = 4.156 +il[14428] = 9 +im[14428] = 0.0304 +ij[14428] = 27.2 +id[14429] = "2910-05-29T09:16:33" +ik[14429] = 0.962 +il[14429] = 41 +im[14429] = 0.055 +ij[14429] = 28.7 +id[14430] = "2910-07-06T06:29:37" +ik[14430] = 54.657 +il[14430] = 158 +im[14430] = 0.109 +ij[14430] = 9 +id[14431] = "2910-07-07T01:14:52" +ik[14431] = 0.947 +il[14431] = 161 +im[14431] = 0.1173 +ij[14431] = 28.5 +id[14432] = "2910-09-06T23:05:34" +ik[14432] = 3.906 +il[14432] = -11 +im[14432] = 0.1923 +ij[14432] = 28.6 +id[14433] = "2910-09-16T17:04:30" +ik[14433] = 90 +il[14433] = 19 +im[14433] = 0.1191 +ij[14433] = 6 +id[14434] = "2910-11-01T10:56:00" +ik[14434] = 1.412 +il[14434] = 148 +im[14434] = 0.3471 +ij[14434] = 27.4 +id[14435] = "2910-11-06T23:04:25" +ik[14435] = 0 +il[14435] = 153 +im[14435] = 0.3206 +ij[14435] = 13 +id[14436] = "2910-11-13T15:24:53" +ik[14436] = 0.951 +il[14436] = 162 +im[14436] = 0.3695 +ij[14436] = 27.4 +id[14437] = "2910-11-28T10:27:50" +ik[14437] = 3.01 +il[14437] = -154 +im[14437] = 0.493 +ij[14437] = 11 +id[14438] = "2910-11-30T09:31:42" +ik[14438] = 0.5532 +il[14438] = 179 +im[14438] = 0.5533 +ij[14438] = 2 +id[14439] = "2910-12-18T23:09:59" +ik[14439] = 42 +il[14439] = -160 +im[14439] = 0.113 +ij[14439] = 7.1553 +id[14440] = "2911-01-19T11:22:45" +ik[14440] = 73.51 +il[14440] = -98 +im[14440] = 0.1074 +ij[14440] = 14 +id[14441] = "2911-01-29T21:30:13" +ik[14441] = 1.407 +il[14441] = -73 +im[14441] = 0.125 +ij[14441] = 27.1 +id[14442] = "2911-02-07T08:50:04" +ik[14442] = 90 +il[14442] = -51 +im[14442] = 0.2141 +ij[14442] = 5 +id[14443] = "2911-03-24T11:22:13" +ik[14443] = 2.265 +il[14443] = 90 +im[14443] = 0.1363 +ij[14443] = 27.3 +id[14444] = "2911-03-30T07:44:41" +ik[14444] = 0.3 +il[14444] = 108 +im[14444] = 0.063 +ij[14444] = 28.8 +id[14445] = "2911-04-09T19:02:12" +ik[14445] = 1.098 +il[14445] = 140 +im[14445] = 0.1374 +ij[14445] = 28.4 +id[14446] = "2911-04-11T22:20:00" +ik[14446] = 0.036 +il[14446] = 147 +im[14446] = 0.1207 +ij[14446] = 27.5 +id[14447] = "2911-04-27T04:14:32" +ik[14447] = 54.012 +il[14447] = -166 +im[14447] = 0.0911 +ij[14447] = 8 +id[14448] = "2911-05-26T23:51:15" +ik[14448] = 3.87 +il[14448] = -74 +im[14448] = 0.0826 +ij[14448] = 27.6 +id[14449] = "2911-06-06T11:38:58" +ik[14449] = 3.223 +il[14449] = -42 +im[14449] = 0.0934 +ij[14449] = 28.1 +id[14450] = "2911-07-04T00:15:01" +ik[14450] = 5.474 +il[14450] = 41 +im[14450] = 0.0521 +ij[14450] = 27.2 +id[14451] = "2911-07-16T01:22:13" +ik[14451] = 0.516 +il[14451] = 78 +im[14451] = 0.005 +ij[14451] = 28.7 +id[14452] = "2911-09-14T09:46:04" +ik[14452] = 1.41 +il[14452] = -118 +im[14452] = 0.0077 +ij[14452] = 12 +id[14453] = "2911-10-24T15:57:18" +ik[14453] = 1.672 +il[14453] = -177 +im[14453] = 0.081 +ij[14453] = 28.6 +id[14454] = "2911-11-17T20:15:33" +ik[14454] = 4.401 +il[14454] = -103 +im[14454] = 0.07 +ij[14454] = 27.4 +id[14455] = "2911-12-11T14:45:01" +ik[14455] = 2.563 +il[14455] = -31 +im[14455] = 0.0427 +ij[14455] = 28.1 +id[14456] = "2912-01-11T20:24:53" +ik[14456] = 0.107 +il[14456] = 65 +im[14456] = 0.0313 +ij[14456] = 27.3 +id[14457] = "2912-01-21T05:36:14" +ik[14457] = 1.368 +il[14457] = 94 +im[14457] = 0.1049 +ij[14457] = 28.8 +id[14458] = "2912-01-29T18:36:53" +ik[14458] = 0.917 +il[14458] = 120 +im[14458] = 0.0496 +ij[14458] = 27.5 +id[14459] = "2912-02-12T17:55:53" +ik[14459] = 53.707 +il[14459] = 164 +im[14459] = 0.0072 +ij[14459] = 9 +id[14460] = "2912-03-15T04:07:13" +ik[14460] = 1.36 +il[14460] = -98 +im[14460] = 0.0452 +ij[14460] = 27.6 +id[14461] = "2912-04-26T07:45:46" +ik[14461] = 1.543 +il[14461] = 34 +im[14461] = 0.0276 +ij[14461] = 27.2 +id[14462] = "2912-04-27T09:30:45" +ik[14462] = 90 +il[14462] = 37 +im[14462] = 0.0405 +ij[14462] = 6 +id[14463] = "2912-05-21T21:48:57" +ik[14463] = 3.39 +il[14463] = 101 +im[14463] = 0.2168 +ij[14463] = 28.7 +id[14464] = "2912-06-12T11:23:12" +ik[14464] = 0 +il[14464] = 156 +im[14464] = 0.2935 +ij[14464] = 13 +id[14465] = "2912-06-29T16:22:07" +ik[14465] = 0.5099 +il[14465] = -163 +im[14465] = 0.51 +ij[14465] = 2 +id[14466] = "2912-07-05T04:24:57" +ik[14466] = 2.81 +il[14466] = -148 +im[14466] = 0.1043 +ij[14466] = 11 +id[14467] = "2912-07-06T20:01:40" +ik[14467] = 3.653 +il[14467] = -176 +im[14467] = 0.1129 +ij[14467] = 28.7 +id[14468] = "2912-07-27T11:26:47" +ik[14468] = 45 +il[14468] = -153 +im[14468] = 0.4043 +ij[14468] = 7.1662 +id[14469] = "2912-08-13T21:35:25" +ik[14469] = 5.442 +il[14469] = -122 +im[14469] = 0.0934 +ij[14469] = 28.7 +id[14470] = "2912-08-30T00:54:34" +ik[14470] = 78.56 +il[14470] = -87 +im[14470] = 0.0272 +ij[14470] = 14 +id[14471] = "2912-09-13T11:01:51" +ik[14471] = 90 +il[14471] = -49 +im[14471] = 0.0147 +ij[14471] = 5 +id[14472] = "2912-11-23T23:27:53" +ik[14472] = 0.283 +il[14472] = 170 +im[14472] = 0.0755 +ij[14472] = 28.5 +id[14473] = "2912-11-25T18:20:47" +ik[14473] = 54.031 +il[14473] = 175 +im[14473] = 0.0348 +ij[14473] = 8 +id[14474] = "2912-12-15T15:56:00" +ik[14474] = 0.584 +il[14474] = -123 +im[14474] = 0.0585 +ij[14474] = 28.6 +id[14475] = "2913-01-09T11:38:12" +ik[14475] = 4.343 +il[14475] = -45 +im[14475] = 0.055 +ij[14475] = 27.1 +id[14476] = "2913-02-24T14:55:33" +ik[14476] = 0.84 +il[14476] = 98 +im[14476] = 0.0209 +ij[14476] = 27.3 +id[14477] = "2913-03-06T11:02:58" +ik[14477] = 0.762 +il[14477] = 129 +im[14477] = 0.0895 +ij[14477] = 28.8 +id[14478] = "2913-03-14T03:11:33" +ik[14478] = 0.669 +il[14478] = 152 +im[14478] = 0.0207 +ij[14478] = 27.5 +id[14479] = "2913-04-27T19:49:26" +ik[14479] = 1.04 +il[14479] = -94 +im[14479] = 0.0059 +ij[14479] = 12 +id[14480] = "2913-06-02T16:11:06" +ik[14480] = 4.741 +il[14480] = -167 +im[14480] = 0.0798 +ij[14480] = 27.2 +id[14481] = "2913-06-17T16:50:35" +ik[14481] = 2.875 +il[14481] = -120 +im[14481] = 0.0891 +ij[14481] = 28.1 +id[14482] = "2913-06-23T01:20:03" +ik[14482] = 0.589 +il[14482] = -104 +im[14482] = 0.0666 +ij[14482] = 28.7 +id[14483] = "2913-07-19T09:03:18" +ik[14483] = 2.806 +il[14483] = -22 +im[14483] = 0.0972 +ij[14483] = 28.1 +id[14484] = "2913-09-12T20:21:42" +ik[14484] = 54.313 +il[14484] = 148 +im[14484] = 0.0626 +ij[14484] = 9 +id[14485] = "2913-10-20T12:19:35" +ik[14485] = 2.572 +il[14485] = -98 +im[14485] = 0.108 +ij[14485] = 28.5 +id[14486] = "2913-10-20T13:01:37" +ik[14486] = 3.833 +il[14486] = -98 +im[14486] = 0.1073 +ij[14486] = 28.6 +id[14487] = "2913-10-21T22:49:46" +ik[14487] = 2.499 +il[14487] = -94 +im[14487] = 0.0724 +ij[14487] = 27.4 +id[14488] = "2913-11-30T14:12:55" +ik[14488] = 90 +il[14488] = 29 +im[14488] = 0.229 +ij[14488] = 6 +id[14489] = "2913-12-29T00:15:06" +ik[14489] = 0.39 +il[14489] = 105 +im[14489] = 0.3185 +ij[14489] = 27.3 +id[14490] = "2914-01-20T00:55:01" +ik[14490] = 0 +il[14490] = 161 +im[14490] = 0.0597 +ij[14490] = 13 +id[14491] = "2914-02-09T03:43:42" +ik[14491] = 0.5308 +il[14491] = 163 +im[14491] = 0.5309 +ij[14491] = 2 +id[14492] = "2914-02-10T04:43:40" +ik[14492] = 7.56 +il[14492] = 174 +im[14492] = 0.5128 +ij[14492] = 11 +id[14493] = "2914-03-03T23:59:36" +ik[14493] = 42.96 +il[14493] = -150 +im[14493] = 0.2503 +ij[14493] = 7.1566 +id[14494] = "2914-04-04T03:03:22" +ik[14494] = 74.09 +il[14494] = -88 +im[14494] = 0.2455 +ij[14494] = 14 +id[14495] = "2914-04-10T09:29:48" +ik[14495] = 2.373 +il[14495] = -73 +im[14495] = 0.1057 +ij[14495] = 28.8 +id[14496] = "2914-04-19T17:18:13" +ik[14496] = 1.693 +il[14496] = -49 +im[14496] = 0.2284 +ij[14496] = 27.5 +id[14497] = "2914-04-22T21:44:54" +ik[14497] = 90 +il[14497] = -40 +im[14497] = 0.1966 +ij[14497] = 5 +id[14498] = "2914-06-08T06:32:01" +ik[14498] = 4.27 +il[14498] = 103 +im[14498] = 0.0807 +ij[14498] = 27.6 +id[14499] = "2914-07-06T20:43:03" +ik[14499] = 54.44 +il[14499] = -169 +im[14499] = 0.0965 +ij[14499] = 8 +id[14500] = "2914-07-17T21:18:34" +ik[14500] = 6.171 +il[14500] = -136 +im[14500] = 0.1054 +ij[14500] = 27.2 +id[14501] = "2914-08-09T15:18:43" +ik[14501] = 0.837 +il[14501] = -67 +im[14501] = 0.0247 +ij[14501] = 28.7 +id[14502] = "2914-11-24T20:12:28" +ik[14502] = 0.55 +il[14502] = -117 +im[14502] = 0.0151 +ij[14502] = 12 +id[14503] = "2915-01-25T22:42:40" +ik[14503] = 0.196 +il[14503] = -112 +im[14503] = 0.0413 +ij[14503] = 27.3 +id[14504] = "2915-02-09T02:56:24" +ik[14504] = 1.017 +il[14504] = -69 +im[14504] = 0.0418 +ij[14504] = 28.8 +id[14505] = "2915-02-12T12:45:46" +ik[14505] = 0.895 +il[14505] = -58 +im[14505] = 0.0875 +ij[14505] = 27.5 +id[14506] = "2915-03-28T12:48:00" +ik[14506] = 2.31 +il[14506] = 79 +im[14506] = 0.0783 +ij[14506] = 27.6 +id[14507] = "2915-04-24T23:36:57" +ik[14507] = 0.644 +il[14507] = 165 +im[14507] = 0.0379 +ij[14507] = 28.4 +id[14508] = "2915-04-26T16:55:31" +ik[14508] = 54.336 +il[14508] = 170 +im[14508] = 0.0777 +ij[14508] = 9 +id[14509] = "2915-05-05T12:09:19" +ik[14509] = 3.293 +il[14509] = -162 +im[14509] = 0.0784 +ij[14509] = 27.2 +id[14510] = "2915-06-04T02:46:13" +ik[14510] = 1.947 +il[14510] = -70 +im[14510] = 0.1092 +ij[14510] = 28.7 +id[14511] = "2915-07-05T12:40:03" +ik[14511] = 90 +il[14511] = 26 +im[14511] = 0.0928 +ij[14511] = 6 +id[14512] = "2915-08-23T03:03:49" +ik[14512] = 0 +il[14512] = 164 +im[14512] = 0.3435 +ij[14512] = 13 +id[14513] = "2915-09-14T06:36:00" +ik[14513] = 8.64 +il[14513] = 165 +im[14513] = 0.1268 +ij[14513] = 11 +id[14514] = "2915-09-21T12:57:38" +ik[14514] = 0.5276 +il[14514] = -169 +im[14514] = 0.5276 +ij[14514] = 2 +id[14515] = "2915-10-06T02:06:24" +ik[14515] = 43.96 +il[14515] = -159 +im[14515] = 0.3928 +ij[14515] = 7.1631 +id[14516] = "2915-11-07T17:42:06" +ik[14516] = 76.61 +il[14516] = -94 +im[14516] = 0.0719 +ij[14516] = 14 +id[14517] = "2915-11-23T21:36:57" +ik[14517] = 90 +il[14517] = -54 +im[14517] = 0.0399 +ij[14517] = 5 +id[14518] = "2916-01-23T08:25:45" +ik[14518] = 3.447 +il[14518] = 133 +im[14518] = 0.0112 +ij[14518] = 27.1 +id[14519] = "2916-01-31T19:53:28" +ik[14519] = 0.398 +il[14519] = 160 +im[14519] = 0.1167 +ij[14519] = 28.6 +id[14520] = "2916-02-09T00:12:52" +ik[14520] = 53.716 +il[14520] = -175 +im[14520] = 0.0485 +ij[14520] = 8 +id[14521] = "2916-03-03T06:11:31" +ik[14521] = 0.49 +il[14521] = -102 +im[14521] = 0.093 +ij[14521] = 28.5 +id[14522] = "2916-03-10T17:41:46" +ik[14522] = 1.321 +il[14522] = -79 +im[14522] = 0.0485 +ij[14522] = 27.3 +id[14523] = "2916-03-25T16:02:03" +ik[14523] = 0.453 +il[14523] = -33 +im[14523] = 0.0565 +ij[14523] = 28.8 +id[14524] = "2916-03-28T10:44:53" +ik[14524] = 0.444 +il[14524] = -24 +im[14524] = 0.0938 +ij[14524] = 27.5 +id[14525] = "2916-05-11T10:47:56" +ik[14525] = 3.52 +il[14525] = 111 +im[14525] = 0.0622 +ij[14525] = 27.6 +id[14526] = "2916-07-05T12:04:19" +ik[14526] = 0.47 +il[14526] = -103 +im[14526] = 0.0239 +ij[14526] = 12 +id[14527] = "2916-08-10T07:06:48" +ik[14527] = 1.072 +il[14527] = -175 +im[14527] = 0.0757 +ij[14527] = 28.1 +id[14528] = "2916-09-25T15:12:23" +ik[14528] = 4.337 +il[14528] = -33 +im[14528] = 0.0825 +ij[14528] = 28.1 +id[14529] = "2916-11-02T13:51:32" +ik[14529] = 3.69 +il[14529] = 82 +im[14529] = 0.0267 +ij[14529] = 27.4 +id[14530] = "2916-11-24T21:36:26" +ik[14530] = 53.694 +il[14530] = 150 +im[14530] = 0.1108 +ij[14530] = 9 +id[14531] = "2916-12-05T17:38:06" +ik[14531] = 2.406 +il[14531] = -176 +im[14531] = 0.0398 +ij[14531] = 28.6 +id[14532] = "2916-12-29T03:58:39" +ik[14532] = 0.437 +il[14532] = -104 +im[14532] = 0.1277 +ij[14532] = 27.3 +id[14533] = "2917-01-17T10:30:13" +ik[14533] = 0.637 +il[14533] = -44 +im[14533] = 0.0191 +ij[14533] = 27.5 +id[14534] = "2917-01-18T00:00:43" +ik[14534] = 0.647 +il[14534] = -42 +im[14534] = 0.0074 +ij[14534] = 28.8 +id[14535] = "2917-01-24T16:49:09" +ik[14535] = 0.312 +il[14535] = -21 +im[14535] = 0.1846 +ij[14535] = 28.5 +id[14536] = "2917-02-13T11:36:22" +ik[14536] = 90 +il[14536] = 41 +im[14536] = 0.1363 +ij[14536] = 6 +id[14537] = "2917-03-14T21:07:56" +ik[14537] = 2.75 +il[14537] = 120 +im[14537] = 0.1852 +ij[14537] = 27.6 +id[14538] = "2917-04-01T17:42:33" +ik[14538] = 0 +il[14538] = 163 +im[14538] = 0.045 +ij[14538] = 13 +id[14539] = "2917-04-21T01:05:16" +ik[14539] = 0.5448 +il[14539] = 166 +im[14539] = 0.5448 +ij[14539] = 2 +id[14540] = "2917-04-21T11:53:43" +ik[14540] = 5.09 +il[14540] = 166 +im[14540] = 0.5418 +ij[14540] = 27.6 +id[14541] = "2917-04-24T09:44:38" +ik[14541] = 6.73 +il[14541] = 178 +im[14541] = 0.3944 +ij[14541] = 11 +id[14542] = "2917-05-15T01:04:16" +ik[14542] = 43.31 +il[14542] = -147 +im[14542] = 0.3795 +ij[14542] = 7.1627 +id[14543] = "2917-06-09T09:01:35" +ik[14543] = 4.05 +il[14543] = -99 +im[14543] = 0.1199 +ij[14543] = 27.6 +id[14544] = "2917-06-17T12:06:04" +ik[14544] = 76.77 +il[14544] = -81 +im[14544] = 0.2333 +ij[14544] = 14 +id[14545] = "2917-07-03T17:05:24" +ik[14545] = 90 +il[14545] = -39 +im[14545] = 0.1184 +ij[14545] = 5 +id[14546] = "2917-08-22T21:22:27" +ik[14546] = 2.065 +il[14546] = 114 +im[14546] = 0.0529 +ij[14546] = 28.4 +id[14547] = "2917-09-02T01:53:11" +ik[14547] = 1.301 +il[14547] = 145 +im[14547] = 0.0545 +ij[14547] = 28.7 +id[14548] = "2917-09-13T17:38:14" +ik[14548] = 54.462 +il[14548] = -179 +im[14548] = 0.1182 +ij[14548] = 8 +id[14549] = "2917-12-25T19:57:45" +ik[14549] = 4.967 +il[14549] = 141 +im[14549] = 0.0918 +ij[14549] = 27.1 +id[14550] = "2918-02-08T16:55:12" +ik[14550] = 1.17 +il[14550] = -104 +im[14550] = 0.0823 +ij[14550] = 12 +id[14551] = "2918-03-27T06:22:53" +ik[14551] = 0.264 +il[14551] = -147 +im[14551] = 0.0871 +ij[14551] = 28.5 +id[14552] = "2918-03-28T06:10:56" +ik[14552] = 2.919 +il[14552] = -143 +im[14552] = 0.0861 +ij[14552] = 28.1 +id[14553] = "2918-04-11T15:59:31" +ik[14553] = 2.82 +il[14553] = -99 +im[14553] = 0.0919 +ij[14553] = 27.6 +id[14554] = "2918-04-17T08:30:37" +ik[14554] = 3.001 +il[14554] = -81 +im[14554] = 0.0316 +ij[14554] = 28.1 +id[14555] = "2918-05-18T18:07:05" +ik[14555] = 4.141 +il[14555] = 18 +im[14555] = 0.0144 +ij[14555] = 27.2 +id[14556] = "2918-06-26T03:00:26" +ik[14556] = 1.277 +il[14556] = 137 +im[14556] = 0.1078 +ij[14556] = 28.7 +id[14557] = "2918-07-04T00:37:49" +ik[14557] = 54.657 +il[14557] = 161 +im[14557] = 0.0339 +ij[14557] = 9 +id[14558] = "2918-09-14T06:37:24" +ik[14558] = 90 +il[14558] = 21 +im[14558] = 0.0485 +ij[14558] = 6 +id[14559] = "2918-11-04T12:06:29" +ik[14559] = 0 +il[14559] = 167 +im[14559] = 0.424 +ij[14559] = 13 +id[14560] = "2918-11-18T03:37:12" +ik[14560] = 0.5475 +il[14560] = 150 +im[14560] = 0.5475 +ij[14560] = 2 +id[14561] = "2918-11-25T23:54:14" +ik[14561] = 3.38 +il[14561] = 173 +im[14561] = 0.1339 +ij[14561] = 11 +id[14562] = "2918-12-16T12:12:04" +ik[14562] = 42 +il[14562] = -158 +im[14562] = 0.4118 +ij[14562] = 7.1555 +id[14563] = "2919-01-17T01:20:50" +ik[14563] = 73.55 +il[14563] = -95 +im[14563] = 0.1325 +ij[14563] = 14 +id[14564] = "2919-01-30T02:39:32" +ik[14564] = 1.516 +il[14564] = -64 +im[14564] = 0.161 +ij[14564] = 27.1 +id[14565] = "2919-02-04T21:19:16" +ik[14565] = 90 +il[14565] = -49 +im[14565] = 0.1115 +ij[14565] = 5 +id[14566] = "2919-03-18T22:12:24" +ik[14566] = 1.448 +il[14566] = 82 +im[14566] = 0.0375 +ij[14566] = 28.6 +id[14567] = "2919-03-24T04:00:26" +ik[14567] = 2.223 +il[14567] = 99 +im[14567] = 0.1098 +ij[14567] = 27.3 +id[14568] = "2919-04-11T13:46:39" +ik[14568] = 0.021 +il[14568] = 156 +im[14568] = 0.1343 +ij[14568] = 27.5 +id[14569] = "2919-04-13T20:27:44" +ik[14569] = 0.077 +il[14569] = 163 +im[14569] = 0.1154 +ij[14569] = 28.8 +id[14570] = "2919-04-24T17:56:03" +ik[14570] = 53.995 +il[14570] = -164 +im[14570] = 0.1104 +ij[14570] = 8 +id[14571] = "2919-05-26T13:52:26" +ik[14571] = 3.86 +il[14571] = -66 +im[14571] = 0.0997 +ij[14571] = 27.6 +id[14572] = "2919-05-31T22:21:38" +ik[14572] = 0.267 +il[14572] = -49 +im[14572] = 0.0322 +ij[14572] = 28.5 +id[14573] = "2919-07-03T13:29:13" +ik[14573] = 5.454 +il[14573] = 50 +im[14573] = 0.0155 +ij[14573] = 27.2 +id[14574] = "2919-08-12T01:00:00" +ik[14574] = 0.491 +il[14574] = 160 +im[14574] = 0.0698 +ij[14574] = 28.7 +id[14575] = "2919-09-12T02:34:04" +ik[14575] = 1.4 +il[14575] = -115 +im[14575] = 0.0562 +ij[14575] = 12 +id[14576] = "2919-11-17T09:38:38" +ik[14576] = 4.39 +il[14576] = -95 +im[14576] = 0.036 +ij[14576] = 27.4 +id[14577] = "2919-11-26T09:15:24" +ik[14577] = 1.56 +il[14577] = -68 +im[14577] = 0.0709 +ij[14577] = 28.1 +id[14578] = "2920-01-11T10:31:32" +ik[14578] = 0.111 +il[14578] = 73 +im[14578] = 0.0728 +ij[14578] = 27.3 +id[14579] = "2920-01-22T08:06:43" +ik[14579] = 0.33 +il[14579] = 107 +im[14579] = 0.1055 +ij[14579] = 28.6 +id[14580] = "2920-01-29T09:10:39" +ik[14580] = 0.911 +il[14580] = 129 +im[14580] = 0.0066 +ij[14580] = 27.5 +id[14581] = "2920-02-04T04:19:20" +ik[14581] = 0.573 +il[14581] = 147 +im[14581] = 0.1141 +ij[14581] = 28.8 +id[14582] = "2920-02-10T05:15:11" +ik[14582] = 53.691 +il[14582] = 166 +im[14582] = 0.0909 +ij[14582] = 9 +id[14583] = "2920-03-14T20:45:21" +ik[14583] = 1.31 +il[14583] = -89 +im[14583] = 0.0126 +ij[14583] = 27.6 +id[14584] = "2920-04-24T11:27:18" +ik[14584] = 3.781 +il[14584] = 38 +im[14584] = 0.1508 +ij[14584] = 28.5 +id[14585] = "2920-04-25T02:50:05" +ik[14585] = 90 +il[14585] = 40 +im[14585] = 0.1315 +ij[14585] = 6 +id[14586] = "2920-04-26T09:10:12" +ik[14586] = 1.451 +il[14586] = 43 +im[14586] = 0.0866 +ij[14586] = 27.2 +id[14587] = "2920-06-11T01:21:17" +ik[14587] = 0 +il[14587] = 172 +im[14587] = 0.0894 +ij[14587] = 13 +id[14588] = "2920-06-30T18:36:26" +ik[14588] = 0.506 +il[14588] = 162 +im[14588] = 0.5061 +ij[14588] = 2 +id[14589] = "2920-07-02T21:27:21" +ik[14589] = 2.5 +il[14589] = 173 +im[14589] = 0.4381 +ij[14589] = 11 +id[14590] = "2920-07-25T04:27:52" +ik[14590] = 44.13 +il[14590] = -150 +im[14590] = 0.3736 +ij[14590] = 7.1664 +id[14591] = "2920-08-27T18:14:36" +ik[14591] = 77.7 +il[14591] = -84 +im[14591] = 0.1941 +ij[14591] = 14 +id[14592] = "2920-09-11T03:31:39" +ik[14592] = 90 +il[14592] = -46 +im[14592] = 0.1611 +ij[14592] = 5 +id[14593] = "2920-09-22T09:23:02" +ik[14593] = 2.331 +il[14593] = -12 +im[14593] = 0.1814 +ij[14593] = 28.7 +id[14594] = "2920-11-23T08:27:12" +ik[14594] = 54.047 +il[14594] = 178 +im[14594] = 0.1043 +ij[14594] = 8 +id[14595] = "2921-01-09T01:23:05" +ik[14595] = 4.362 +il[14595] = -37 +im[14595] = 0.0855 +ij[14595] = 27.1 +id[14596] = "2921-02-24T04:12:52" +ik[14596] = 0.833 +il[14596] = 107 +im[14596] = 0.0577 +ij[14596] = 27.3 +id[14597] = "2921-03-11T20:07:09" +ik[14597] = 2.757 +il[14597] = 155 +im[14597] = 0.0486 +ij[14597] = 28.1 +id[14598] = "2921-03-13T16:27:32" +ik[14598] = 0.671 +il[14598] = 161 +im[14598] = 0.0162 +ij[14598] = 27.5 +id[14599] = "2921-03-15T04:26:24" +ik[14599] = 0.462 +il[14599] = 155 +im[14599] = 0.0153 +ij[14599] = 28.6 +id[14600] = "2921-03-20T02:53:05" +ik[14600] = 0.532 +il[14600] = 179 +im[14600] = 0.0838 +ij[14600] = 28.8 +id[14601] = "2921-04-25T10:20:38" +ik[14601] = 1.08 +il[14601] = -91 +im[14601] = 0.0633 +ij[14601] = 12 +id[14602] = "2921-06-02T05:17:45" +ik[14602] = 4.732 +il[14602] = -159 +im[14602] = 0.0644 +ij[14602] = 27.2 +id[14603] = "2921-06-19T16:40:04" +ik[14603] = 0.01 +il[14603] = -104 +im[14603] = 0.0887 +ij[14603] = 27.9 +id[14604] = "2921-06-24T20:40:07" +ik[14604] = 0.861 +il[14604] = -88 +im[14604] = 0.0624 +ij[14604] = 28.5 +id[14605] = "2921-06-26T14:58:50" +ik[14605] = 1.48 +il[14605] = -82 +im[14605] = 0.0327 +ij[14605] = 28.1 +id[14606] = "2921-07-20T03:53:42" +ik[14606] = 0.805 +il[14606] = -9 +im[14606] = 0.0936 +ij[14606] = 28.7 +id[14607] = "2921-09-10T12:11:13" +ik[14607] = 54.334 +il[14607] = 151 +im[14607] = 0.0327 +ij[14607] = 9 +id[14608] = "2921-10-21T16:30:12" +ik[14608] = 2.449 +il[14608] = -84 +im[14608] = 0.1169 +ij[14608] = 27.4 +id[14609] = "2921-11-02T18:36:25" +ik[14609] = 1.109 +il[14609] = -47 +im[14609] = 0.1778 +ij[14609] = 28.4 +id[14610] = "2921-11-28T01:32:15" +ik[14610] = 90 +il[14610] = 31 +im[14610] = 0.1383 +ij[14610] = 6 +id[14611] = "2921-12-30T16:50:39" +ik[14611] = 0.734 +il[14611] = 120 +im[14611] = 0.332 +ij[14611] = 27.3 +id[14612] = "2922-01-17T18:15:03" +ik[14612] = 0 +il[14612] = 164 +im[14612] = 0.3354 +ij[14612] = 13 +id[14613] = "2922-02-07T17:12:28" +ik[14613] = 7.34 +il[14613] = 176 +im[14613] = 0.4446 +ij[14613] = 11 +id[14614] = "2922-02-10T02:35:11" +ik[14614] = 0.5382 +il[14614] = -169 +im[14614] = 0.5382 +ij[14614] = 2 +id[14615] = "2922-02-28T17:17:37" +ik[14615] = 41.96 +il[14615] = -148 +im[14615] = 0.2142 +ij[14615] = 7.1566 +id[14616] = "2922-04-01T14:32:24" +ik[14616] = 73.85 +il[14616] = -86 +im[14616] = 0.091 +ij[14616] = 14 +id[14617] = "2922-04-19T18:30:39" +ik[14617] = 1.569 +il[14617] = -39 +im[14617] = 0.1954 +ij[14617] = 27.5 +id[14618] = "2922-04-20T10:42:25" +ik[14618] = 90 +il[14618] = -38 +im[14618] = 0.2053 +ij[14618] = 5 +id[14619] = "2922-04-28T06:12:40" +ik[14619] = 0.796 +il[14619] = -13 +im[14619] = 0.0487 +ij[14619] = 28.8 +id[14620] = "2922-05-01T20:53:13" +ik[14620] = 1.717 +il[14620] = -2 +im[14620] = 0.1032 +ij[14620] = 28.6 +id[14621] = "2922-06-07T23:03:18" +ik[14621] = 4.25 +il[14621] = 112 +im[14621] = 0.1233 +ij[14621] = 27.6 +id[14622] = "2922-07-04T13:29:28" +ik[14622] = 54.43 +il[14622] = -166 +im[14622] = 0.1217 +ij[14622] = 8 +id[14623] = "2922-07-17T11:34:33" +ik[14623] = 6.143 +il[14623] = -127 +im[14623] = 0.0835 +ij[14623] = 27.2 +id[14624] = "2922-09-02T15:31:49" +ik[14624] = 0.153 +il[14624] = 17 +im[14624] = 0.0957 +ij[14624] = 28.5 +id[14625] = "2922-09-05T17:38:24" +ik[14625] = 0.012 +il[14625] = 26 +im[14625] = 0.0896 +ij[14625] = 28.7 +id[14626] = "2922-11-22T09:23:02" +ik[14626] = 0.61 +il[14626] = -114 +im[14626] = 0.0546 +ij[14626] = 12 +id[14627] = "2923-01-24T10:18:37" +ik[14627] = 2.317 +il[14627] = -107 +im[14627] = 0.0164 +ij[14627] = 28.1 +id[14628] = "2923-01-25T12:03:59" +ik[14628] = 0.193 +il[14628] = -104 +im[14628] = 0.0103 +ij[14628] = 27.3 +id[14629] = "2923-02-12T02:15:59" +ik[14629] = 0.893 +il[14629] = -50 +im[14629] = 0.0603 +ij[14629] = 27.5 +id[14630] = "2923-02-22T18:39:18" +ik[14630] = 0.403 +il[14630] = -16 +im[14630] = 0.0305 +ij[14630] = 28.8 +id[14631] = "2923-03-08T21:44:47" +ik[14631] = 1.327 +il[14631] = 28 +im[14631] = 0.0429 +ij[14631] = 28.6 +id[14632] = "2923-03-28T02:43:10" +ik[14632] = 2.28 +il[14632] = 88 +im[14632] = 0.0481 +ij[14632] = 27.6 +id[14633] = "2923-04-24T08:52:09" +ik[14633] = 54.315 +il[14633] = 173 +im[14633] = 0.0132 +ij[14633] = 9 +id[14634] = "2923-05-05T03:30:11" +ik[14634] = 3.263 +il[14634] = -153 +im[14634] = 0.1162 +ij[14634] = 27.2 +id[14635] = "2923-07-03T05:52:18" +ik[14635] = 90 +il[14635] = 29 +im[14635] = 0.2025 +ij[14635] = 6 +id[14636] = "2923-07-06T05:30:02" +ik[14636] = 0.63 +il[14636] = 37 +im[14636] = 0.1282 +ij[14636] = 28.7 +id[14637] = "2923-08-20T14:32:51" +ik[14637] = 0 +il[14637] = 165 +im[14637] = 0.025 +ij[14637] = 13 +id[14638] = "2923-09-11T21:17:16" +ik[14638] = 8.6 +il[14638] = 168 +im[14638] = 0.4066 +ij[14638] = 11 +id[14639] = "2923-09-22T17:46:37" +ik[14639] = 0.5107 +il[14639] = -170 +im[14639] = 0.5107 +ij[14639] = 2 +id[14640] = "2923-10-03T15:39:26" +ik[14640] = 44.05 +il[14640] = -156 +im[14640] = 0.3354 +ij[14640] = 7.1634 +id[14641] = "2923-11-01T03:23:54" +ik[14641] = 2.4 +il[14641] = -101 +im[14641] = 0.2248 +ij[14641] = 28.5 +id[14642] = "2923-11-05T10:53:13" +ik[14642] = 76.85 +il[14642] = -92 +im[14642] = 0.2229 +ij[14642] = 14 +id[14643] = "2923-11-21T12:24:08" +ik[14643] = 90 +il[14643] = -51 +im[14643] = 0.1873 +ij[14643] = 5 +id[14644] = "2924-01-22T23:59:58" +ik[14644] = 3.482 +il[14644] = 142 +im[14644] = 0.0431 +ij[14644] = 27.1 +id[14645] = "2924-02-06T11:46:23" +ik[14645] = 53.717 +il[14645] = -173 +im[14645] = 0.0556 +ij[14645] = 8 +id[14646] = "2924-02-16T12:56:44" +ik[14646] = 1.721 +il[14646] = -141 +im[14646] = 0.1114 +ij[14646] = 28.4 +id[14647] = "2924-03-10T07:41:45" +ik[14647] = 1.306 +il[14647] = -70 +im[14647] = 0.0098 +ij[14647] = 27.3 +id[14648] = "2924-03-28T00:29:19" +ik[14648] = 0.451 +il[14648] = -15 +im[14648] = 0.0687 +ij[14648] = 27.5 +id[14649] = "2924-04-08T11:24:00" +ik[14649] = 0.368 +il[14649] = 20 +im[14649] = 0.0207 +ij[14649] = 28.8 +id[14650] = "2924-04-29T19:36:28" +ik[14650] = 0.997 +il[14650] = 85 +im[14650] = 0.0883 +ij[14650] = 28.6 +id[14651] = "2924-05-10T23:58:09" +ik[14651] = 3.51 +il[14651] = 119 +im[14651] = 0.0324 +ij[14651] = 27.6 +id[14652] = "2924-07-03T06:38:52" +ik[14652] = 0.42 +il[14652] = -100 +im[14652] = 0.0742 +ij[14652] = 12 +id[14653] = "2924-08-13T06:21:53" +ik[14653] = 0.598 +il[14653] = -156 +im[14653] = 0.0875 +ij[14653] = 28.7 +id[14654] = "2924-09-04T13:17:45" +ik[14654] = 3.949 +il[14654] = -87 +im[14654] = 0.0302 +ij[14654] = 28.1 +id[14655] = "2924-10-05T00:29:39" +ik[14655] = 0.86 +il[14655] = 6 +im[14655] = 0.0259 +ij[14655] = 28.5 +id[14656] = "2924-11-02T04:11:05" +ik[14656] = 3.67 +il[14656] = 91 +im[14656] = 0.0696 +ij[14656] = 27.4 +id[14657] = "2924-11-22T09:13:31" +ik[14657] = 53.711 +il[14657] = 153 +im[14657] = 0.046 +ij[14657] = 9 +id[14658] = "2924-12-28T20:51:32" +ik[14658] = 0.438 +il[14658] = -95 +im[14658] = 0.1532 +ij[14658] = 27.3 +id[14659] = "2925-01-17T05:43:05" +ik[14659] = 0.604 +il[14659] = -34 +im[14659] = 0.0775 +ij[14659] = 27.5 +id[14660] = "2925-02-02T16:08:41" +ik[14660] = 1.054 +il[14660] = 17 +im[14660] = 0.0655 +ij[14660] = 28.8 +id[14661] = "2925-02-11T01:02:11" +ik[14661] = 90 +il[14661] = 43 +im[14661] = 0.2064 +ij[14661] = 6 +id[14662] = "2925-03-16T08:57:05" +ik[14662] = 3.26 +il[14662] = 134 +im[14662] = 0.1856 +ij[14662] = 27.6 +id[14663] = "2925-03-30T10:53:40" +ik[14663] = 0 +il[14663] = 166 +im[14663] = 0.2871 +ij[14663] = 13 +id[14664] = "2925-04-14T00:32:50" +ik[14664] = 5.61 +il[14664] = 164 +im[14664] = 0.1535 +ij[14664] = 27.6 +id[14665] = "2925-04-22T00:47:31" +ik[14665] = 6.95 +il[14665] = -173 +im[14665] = 0.5489 +ij[14665] = 11 +id[14666] = "2925-04-22T02:19:44" +ik[14666] = 0.5489 +il[14666] = -167 +im[14666] = 0.549 +ij[14666] = 2 +id[14667] = "2925-05-12T15:14:23" +ik[14667] = 43.18 +il[14667] = -144 +im[14667] = 0.0967 +ij[14667] = 7.1626 +id[14668] = "2925-06-07T08:21:33" +ik[14668] = 0.858 +il[14668] = -96 +im[14668] = 0.0886 +ij[14668] = 28.6 +id[14669] = "2925-06-10T08:13:40" +ik[14669] = 4.17 +il[14669] = -89 +im[14669] = 0.0895 +ij[14669] = 27.6 +id[14670] = "2925-06-15T01:36:12" +ik[14670] = 76.61 +il[14670] = -78 +im[14670] = 0.256 +ij[14670] = 14 +id[14671] = "2925-07-01T09:06:54" +ik[14671] = 90 +il[14671] = -36 +im[14671] = 0.196 +ij[14671] = 5 +id[14672] = "2925-09-11T10:21:06" +ik[14672] = 54.47 +il[14672] = -176 +im[14672] = 0.1033 +ij[14672] = 8 +id[14673] = "2925-09-29T08:13:29" +ik[14673] = 0.082 +il[14673] = -121 +im[14673] = 0.1093 +ij[14673] = 28.7 +id[14674] = "2925-12-14T22:14:26" +ik[14674] = 0.096 +il[14674] = 116 +im[14674] = 0.078 +ij[14674] = 28.5 +id[14675] = "2925-12-20T18:30:23" +ik[14675] = 1.497 +il[14675] = 135 +im[14675] = 0.01 +ij[14675] = 28.1 +id[14676] = "2925-12-25T09:07:04" +ik[14676] = 4.981 +il[14676] = 149 +im[14676] = 0.0768 +ij[14676] = 27.1 +id[14677] = "2926-02-06T02:42:43" +ik[14677] = 1.13 +il[14677] = -100 +im[14677] = 0.0394 +ij[14677] = 12 +id[14678] = "2926-03-13T17:22:59" +ik[14678] = 0.552 +il[14678] = -168 +im[14678] = 0.0898 +ij[14678] = 28.8 +id[14679] = "2926-03-27T02:49:55" +ik[14679] = 3.232 +il[14679] = -137 +im[14679] = 0.078 +ij[14679] = 28.1 +id[14680] = "2926-04-11T05:16:35" +ik[14680] = 2.8 +il[14680] = -90 +im[14680] = 0.0905 +ij[14680] = 27.6 +id[14681] = "2926-04-21T23:59:08" +ik[14681] = 1.996 +il[14681] = -56 +im[14681] = 0.0215 +ij[14681] = 28.6 +id[14682] = "2926-05-18T07:42:11" +ik[14682] = 4.126 +il[14682] = 26 +im[14682] = 0.0523 +ij[14682] = 27.2 +id[14683] = "2926-07-01T18:46:00" +ik[14683] = 54.657 +il[14683] = 164 +im[14683] = 0.0622 +ij[14683] = 9 +id[14684] = "2926-07-24T02:33:12" +ik[14684] = 0.572 +il[14684] = -127 +im[14684] = 0.1151 +ij[14684] = 28.7 +id[14685] = "2926-09-11T20:17:22" +ik[14685] = 90 +il[14685] = 24 +im[14685] = 0.1799 +ij[14685] = 6 +id[14686] = "2926-11-01T01:36:39" +ik[14686] = 0 +il[14686] = 167 +im[14686] = 0.1645 +ij[14686] = 13 +id[14687] = "2926-11-19T06:12:34" +ik[14687] = 0.5667 +il[14687] = 156 +im[14687] = 0.5668 +ij[14687] = 2 +id[14688] = "2926-11-23T13:20:38" +ik[14688] = 3.73 +il[14688] = 170 +im[14688] = 0.3199 +ij[14688] = 11 +id[14689] = "2926-12-14T00:39:13" +ik[14689] = 42.96 +il[14689] = -155 +im[14689] = 0.4386 +ij[14689] = 7.1553 +id[14690] = "2927-01-14T14:13:55" +ik[14690] = 74.53 +il[14690] = -93 +im[14690] = 0.2801 +ij[14690] = 14 +id[14691] = "2927-01-30T06:17:17" +ik[14691] = 1.619 +il[14691] = -55 +im[14691] = 0.185 +ij[14691] = 27.1 +id[14692] = "2927-02-02T09:52:01" +ik[14692] = 90 +il[14692] = -47 +im[14692] = 0.0658 +ij[14692] = 5 +id[14693] = "2927-02-17T16:41:05" +ik[14693] = 2.39 +il[14693] = 1 +im[14693] = 0.0802 +ij[14693] = 28.5 +id[14694] = "2927-03-23T20:24:51" +ik[14694] = 2.183 +il[14694] = 108 +im[14694] = 0.0683 +ij[14694] = 27.3 +id[14695] = "2927-04-11T05:06:38" +ik[14695] = 0.017 +il[14695] = 165 +im[14695] = 0.1236 +ij[14695] = 27.5 +id[14696] = "2927-04-22T07:34:01" +ik[14696] = 53.979 +il[14696] = -161 +im[14696] = 0.0493 +ij[14696] = 8 +id[14697] = "2927-04-28T02:21:41" +ik[14697] = 0.234 +il[14697] = -143 +im[14697] = 0.112 +ij[14697] = 28.8 +id[14698] = "2927-05-26T03:52:28" +ik[14698] = 3.85 +il[14698] = -57 +im[14698] = 0.0998 +ij[14698] = 27.6 +id[14699] = "2927-06-13T16:57:47" +ik[14699] = 0.811 +il[14699] = 0 +im[14699] = 0.0877 +ij[14699] = 28.6 +id[14700] = "2927-07-03T02:43:26" +ik[14700] = 5.435 +il[14700] = 59 +im[14700] = 0.03 +ij[14700] = 27.2 +id[14701] = "2927-07-29T08:48:46" +ik[14701] = 2.99 +il[14701] = 139 +im[14701] = 0.0817 +ij[14701] = 28.1 +id[14702] = "2927-09-09T19:27:50" +ik[14702] = 1.4 +il[14702] = -113 +im[14702] = 0.0831 +ij[14702] = 12 +id[14703] = "2927-11-06T20:08:09" +ik[14703] = 2.087 +il[14703] = -117 +im[14703] = 0.0828 +ij[14703] = 28.1 +id[14704] = "2927-11-16T23:05:18" +ik[14704] = 4.379 +il[14704] = -86 +im[14704] = 0.01 +ij[14704] = 27.4 +id[14705] = "2928-01-11T00:38:11" +ik[14705] = 0.114 +il[14705] = 82 +im[14705] = 0.102 +ij[14705] = 27.3 +id[14706] = "2928-01-12T23:00:48" +ik[14706] = 0.83 +il[14706] = 88 +im[14706] = 0.0777 +ij[14706] = 28.5 +id[14707] = "2928-01-28T23:44:52" +ik[14707] = 0.904 +il[14707] = 138 +im[14707] = 0.0456 +ij[14707] = 27.5 +id[14708] = "2928-02-07T16:30:56" +ik[14708] = 53.676 +il[14708] = 168 +im[14708] = 0.1246 +ij[14708] = 9 +id[14709] = "2928-02-18T04:34:19" +ik[14709] = 0.443 +il[14709] = -159 +im[14709] = 0.0672 +ij[14709] = 28.8 +id[14710] = "2928-02-27T19:42:23" +ik[14710] = 1.347 +il[14710] = -129 +im[14710] = 0.0624 +ij[14710] = 28.4 +id[14711] = "2928-03-14T13:40:23" +ik[14711] = 1.26 +il[14711] = -80 +im[14711] = 0.0594 +ij[14711] = 27.6 +id[14712] = "2928-04-18T20:03:24" +ik[14712] = 4.945 +il[14712] = 30 +im[14712] = 0.1572 +ij[14712] = 28.6 +id[14713] = "2928-04-22T20:01:27" +ik[14713] = 90 +il[14713] = 43 +im[14713] = 0.2167 +ij[14713] = 6 +id[14714] = "2928-04-26T11:41:44" +ik[14714] = 1.354 +il[14714] = 52 +im[14714] = 0.1558 +ij[14714] = 27.2 +id[14715] = "2928-06-08T18:14:00" +ik[14715] = 0 +il[14715] = 164 +im[14715] = 0.2407 +ij[14715] = 13 +id[14716] = "2928-06-30T14:32:38" +ik[14716] = 2.19 +il[14716] = -153 +im[14716] = 0.4785 +ij[14716] = 11 +id[14717] = "2928-07-01T17:29:42" +ik[14717] = 0.4978 +il[14717] = -171 +im[14717] = 0.4979 +ij[14717] = 2 +id[14718] = "2928-07-23T17:16:34" +ik[14718] = 44.96 +il[14718] = 175 +im[14718] = 0.1876 +ij[14718] = 7.166 +id[14719] = "2928-08-25T10:22:21" +ik[14719] = 77.67 +il[14719] = -81 +im[14719] = 0.2397 +ij[14719] = 14 +id[14720] = "2928-09-08T20:07:38" +ik[14720] = 90 +il[14720] = -43 +im[14720] = 0.2155 +ij[14720] = 5 +id[14721] = "2928-10-21T09:00:08" +ik[14721] = 0.212 +il[14721] = 86 +im[14721] = 0.1116 +ij[14721] = 28.7 +id[14722] = "2928-11-20T22:40:44" +ik[14722] = 54.064 +il[14722] = -180 +im[14722] = 0.1032 +ij[14722] = 8 +id[14723] = "2929-01-08T15:04:24" +ik[14723] = 4.381 +il[14723] = -28 +im[14723] = 0.0987 +ij[14723] = 27.1 +id[14724] = "2929-02-18T10:41:57" +ik[14724] = 2.905 +il[14724] = 99 +im[14724] = 0.0767 +ij[14724] = 28.1 +id[14725] = "2929-02-23T17:33:45" +ik[14725] = 0.827 +il[14725] = 116 +im[14725] = 0.0844 +ij[14725] = 27.3 +id[14726] = "2929-03-13T05:36:51" +ik[14726] = 0.673 +il[14726] = 159 +im[14726] = 0.0476 +ij[14726] = 27.5 +id[14727] = "2929-03-18T20:20:32" +ik[14727] = 0.04 +il[14727] = 179 +im[14727] = 0.0512 +ij[14727] = 28.5 +id[14728] = "2929-04-23T00:38:52" +ik[14728] = 1.12 +il[14728] = -88 +im[14728] = 0.0892 +ij[14728] = 12 +id[14729] = "2929-06-01T18:21:17" +ik[14729] = 4.722 +il[14729] = -150 +im[14729] = 0.0383 +ij[14729] = 27.2 +id[14730] = "2929-06-02T17:26:26" +ik[14730] = 0.15 +il[14730] = -147 +im[14730] = 0.054 +ij[14730] = 28.1 +id[14731] = "2929-06-03T21:48:05" +ik[14731] = 1.735 +il[14731] = -144 +im[14731] = 0.0698 +ij[14731] = 28.6 +id[14732] = "2929-06-19T05:50:03" +ik[14732] = 0.007 +il[14732] = -95 +im[14732] = 0.069 +ij[14732] = 27.9 +id[14733] = "2929-08-15T09:26:47" +ik[14733] = 0.44 +il[14733] = 81 +im[14733] = 0.0219 +ij[14733] = 28.7 +id[14734] = "2929-09-08T04:07:51" +ik[14734] = 54.354 +il[14734] = 153 +im[14734] = 0.1069 +ij[14734] = 9 +id[14735] = "2929-10-21T10:28:51" +ik[14735] = 2.397 +il[14735] = -75 +im[14735] = 0.1474 +ij[14735] = 27.4 +id[14736] = "2929-11-25T12:47:09" +ik[14736] = 90 +il[14736] = 33 +im[14736] = 0.0537 +ij[14736] = 6 +id[14737] = "2930-01-02T08:02:38" +ik[14737] = 1.297 +il[14737] = 138 +im[14737] = 0.359 +ij[14737] = 27.3 +id[14738] = "2930-01-14T20:12:23" +ik[14738] = 0 +il[14738] = 165 +im[14738] = 0.4552 +ij[14738] = 13 +id[14739] = "2930-02-05T05:39:50" +ik[14739] = 7.1 +il[14739] = 179 +im[14739] = 0.0881 +ij[14739] = 11 +id[14740] = "2930-02-11T00:15:39" +ik[14740] = 0.5403 +il[14740] = -164 +im[14740] = 0.5404 +ij[14740] = 2 +id[14741] = "2930-02-26T03:24:59" +ik[14741] = 42.3 +il[14741] = -146 +im[14741] = 0.4388 +ij[14741] = 7.1562 +id[14742] = "2930-03-30T01:33:46" +ik[14742] = 74.22 +il[14742] = -83 +im[14742] = 0.1308 +ij[14742] = 14 +id[14743] = "2930-04-17T23:36:23" +ik[14743] = 90 +il[14743] = -36 +im[14743] = 0.0814 +ij[14743] = 5 +id[14744] = "2930-04-19T18:47:05" +ik[14744] = 1.456 +il[14744] = -30 +im[14744] = 0.1436 +ij[14744] = 27.5 +id[14745] = "2930-05-14T07:33:18" +ik[14745] = 0.019 +il[14745] = 46 +im[14745] = 0.0566 +ij[14745] = 28.8 +id[14746] = "2930-05-20T14:26:18" +ik[14746] = 0.142 +il[14746] = 66 +im[14746] = 0.1261 +ij[14746] = 28.5 +id[14747] = "2930-06-07T15:32:15" +ik[14747] = 4.24 +il[14747] = 121 +im[14747] = 0.1423 +ij[14747] = 27.6 +id[14748] = "2930-06-07T19:55:37" +ik[14748] = 0.946 +il[14748] = 122 +im[14748] = 0.1415 +ij[14748] = 28.4 +id[14749] = "2930-07-02T06:12:19" +ik[14749] = 54.42 +il[14749] = -163 +im[14749] = 0.0732 +ij[14749] = 8 +id[14750] = "2930-07-17T01:50:32" +ik[14750] = 6.115 +il[14750] = -118 +im[14750] = 0.0487 +ij[14750] = 27.2 +id[14751] = "2930-07-26T04:27:56" +ik[14751] = 0.095 +il[14751] = -91 +im[14751] = 0.0584 +ij[14751] = 28.6 +id[14752] = "2930-10-01T09:46:30" +ik[14752] = 0.538 +il[14752] = 115 +im[14752] = 0.0576 +ij[14752] = 28.7 +id[14753] = "2930-10-02T14:32:12" +ik[14753] = 1.996 +il[14753] = 119 +im[14753] = 0.0717 +ij[14753] = 28.1 +id[14754] = "2930-11-19T22:39:21" +ik[14754] = 0.66 +il[14754] = -112 +im[14754] = 0.0898 +ij[14754] = 12 +id[14755] = "2931-01-04T17:37:40" +ik[14755] = 1.477 +il[14755] = -157 +im[14755] = 0.0837 +ij[14755] = 28.1 +id[14756] = "2931-01-25T01:26:38" +ik[14756] = 0.19 +il[14756] = -95 +im[14756] = 0.0303 +ij[14756] = 27.3 +id[14757] = "2931-02-11T15:42:38" +ik[14757] = 0.89 +il[14757] = -41 +im[14757] = 0.0205 +ij[14757] = 27.5 +id[14758] = "2931-03-08T16:12:25" +ik[14758] = 0.462 +il[14758] = 37 +im[14758] = 0.0762 +ij[14758] = 28.8 +id[14759] = "2931-03-27T16:46:12" +ik[14759] = 2.26 +il[14759] = 96 +im[14759] = 0.0109 +ij[14759] = 27.6 +id[14760] = "2931-04-10T15:46:04" +ik[14760] = 1.485 +il[14760] = 140 +im[14760] = 0.0383 +ij[14760] = 28.5 +id[14761] = "2931-04-22T00:38:07" +ik[14761] = 54.294 +il[14761] = 176 +im[14761] = 0.0955 +ij[14761] = 9 +id[14762] = "2931-05-04T18:55:04" +ik[14762] = 3.233 +il[14762] = -144 +im[14762] = 0.1347 +ij[14762] = 27.2 +id[14763] = "2931-05-28T15:40:19" +ik[14763] = 2.908 +il[14763] = -70 +im[14763] = 0.0703 +ij[14763] = 28.6 +id[14764] = "2931-06-30T23:07:12" +ik[14764] = 90 +il[14764] = 32 +im[14764] = 0.1929 +ij[14764] = 6 +id[14765] = "2931-08-18T01:34:13" +ik[14765] = 0 +il[14765] = 169 +im[14765] = 0.3036 +ij[14765] = 13 +id[14766] = "2931-09-09T12:10:04" +ik[14766] = 8.55 +il[14766] = 170 +im[14766] = 0.4928 +ij[14766] = 11 +id[14767] = "2931-09-10T08:23:30" +ik[14767] = 0.5039 +il[14767] = -177 +im[14767] = 0.5039 +ij[14767] = 2 +id[14768] = "2931-10-01T00:36:47" +ik[14768] = 43.96 +il[14768] = -154 +im[14768] = 0.0742 +ij[14768] = 7.1636 +id[14769] = "2931-11-03T03:57:31" +ik[14769] = 77.1 +il[14769] = -89 +im[14769] = 0.2343 +ij[14769] = 14 +id[14770] = "2931-11-06T14:11:32" +ik[14770] = 1.271 +il[14770] = -81 +im[14770] = 0.2251 +ij[14770] = 28.7 +id[14771] = "2931-11-19T03:17:32" +ik[14771] = 90 +il[14771] = -49 +im[14771] = 0.2149 +ij[14771] = 5 +id[14772] = "2932-01-22T15:31:04" +ik[14772] = 3.516 +il[14772] = 151 +im[14772] = 0.0807 +ij[14772] = 27.1 +id[14773] = "2932-02-03T23:19:55" +ik[14773] = 53.719 +il[14773] = -172 +im[14773] = 0.122 +ij[14773] = 8 +id[14774] = "2932-03-09T21:43:31" +ik[14774] = 1.292 +il[14774] = -61 +im[14774] = 0.0424 +ij[14774] = 27.3 +id[14775] = "2932-03-27T14:10:11" +ik[14775] = 0.458 +il[14775] = -7 +im[14775] = 0.031 +ij[14775] = 27.5 +id[14776] = "2932-04-22T05:05:34" +ik[14776] = 0.141 +il[14776] = 72 +im[14776] = 0.0537 +ij[14776] = 28.8 +id[14777] = "2932-04-23T22:15:27" +ik[14777] = 0.94 +il[14777] = 77 +im[14777] = 0.0263 +ij[14777] = 28.1 +id[14778] = "2932-05-10T13:10:12" +ik[14778] = 3.5 +il[14778] = 128 +im[14778] = 0.0053 +ij[14778] = 27.6 +id[14779] = "2932-07-01T01:06:14" +ik[14779] = 0.37 +il[14779] = -97 +im[14779] = 0.0779 +ij[14779] = 12 +id[14780] = "2932-08-12T18:52:59" +ik[14780] = 3.439 +il[14780] = -147 +im[14780] = 0.0678 +ij[14780] = 28.1 +id[14781] = "2932-09-07T19:46:59" +ik[14781] = 0.403 +il[14781] = -67 +im[14781] = 0.0061 +ij[14781] = 28.7 +id[14782] = "2932-11-01T18:34:37" +ik[14782] = 3.65 +il[14782] = 102 +im[14782] = 0.1016 +ij[14782] = 27.4 +id[14783] = "2932-11-19T20:57:43" +ik[14783] = 53.727 +il[14783] = 155 +im[14783] = 0.0555 +ij[14783] = 9 +id[14784] = "2932-12-28T13:53:17" +ik[14784] = 0.44 +il[14784] = -86 +im[14784] = 0.1546 +ij[14784] = 27.3 +id[14785] = "2933-01-17T01:20:24" +ik[14785] = 0.569 +il[14785] = -25 +im[14785] = 0.127 +ij[14785] = 27.5 +id[14786] = "2933-02-08T14:20:55" +ik[14786] = 90 +il[14786] = 46 +im[14786] = 0.1293 +ij[14786] = 6 +id[14787] = "2933-02-20T00:25:12" +ik[14787] = 3.462 +il[14787] = 75 +im[14787] = 0.0354 +ij[14787] = 28.8 +id[14788] = "2933-03-18T06:02:05" +ik[14788] = 3.92 +il[14788] = 144 +im[14788] = 0.1832 +ij[14788] = 27.6 +id[14789] = "2933-03-28T03:57:58" +ik[14789] = 0 +il[14789] = 163 +im[14789] = 0.4363 +ij[14789] = 13 +id[14790] = "2933-04-19T15:44:38" +ik[14790] = 7.17 +il[14790] = -176 +im[14790] = 0.3675 +ij[14790] = 11 +id[14791] = "2933-04-23T07:41:23" +ik[14791] = 0.5397 +il[14791] = -161 +im[14791] = 0.5397 +ij[14791] = 2 +id[14792] = "2933-05-10T07:05:41" +ik[14792] = 43.13 +il[14792] = -142 +im[14792] = 0.2417 +ij[14792] = 7.1625 +id[14793] = "2933-06-11T01:49:56" +ik[14793] = 4.26 +il[14793] = -79 +im[14793] = 0.0415 +ij[14793] = 27.6 +id[14794] = "2933-06-12T15:31:30" +ik[14794] = 76.48 +il[14794] = -76 +im[14794] = 0.1192 +ij[14794] = 14 +id[14795] = "2933-06-29T01:01:19" +ik[14795] = 90 +il[14795] = -33 +im[14795] = 0.1399 +ij[14795] = 5 +id[14796] = "2933-08-20T17:45:01" +ik[14796] = 1.241 +il[14796] = 128 +im[14796] = 0.0825 +ij[14796] = 28.5 +id[14797] = "2933-09-05T22:32:18" +ik[14797] = 0.791 +il[14797] = 177 +im[14797] = 0.0506 +ij[14797] = 28.6 +id[14798] = "2933-09-09T03:07:30" +ik[14798] = 54.477 +il[14798] = -174 +im[14798] = 0.0273 +ij[14798] = 8 +id[14799] = "2933-10-25T00:52:42" +ik[14799] = 0.675 +il[14799] = -32 +im[14799] = 0.0504 +ij[14799] = 28.7 +id[14800] = "2933-12-01T04:12:43" +ik[14800] = 0.942 +il[14800] = 84 +im[14800] = 0.0915 +ij[14800] = 28.1 +id[14801] = "2934-02-03T12:31:40" +ik[14801] = 1.09 +il[14801] = -98 +im[14801] = 0.0361 +ij[14801] = 12 +id[14802] = "2934-03-27T16:18:46" +ik[14802] = 0.33 +il[14802] = -125 +im[14802] = 0.0693 +ij[14802] = 28.8 +id[14803] = "2934-04-10T18:25:46" +ik[14803] = 2.79 +il[14803] = -81 +im[14803] = 0.0709 +ij[14803] = 27.6 +id[14804] = "2934-05-17T21:21:17" +ik[14804] = 4.111 +il[14804] = 35 +im[14804] = 0.0823 +ij[14804] = 27.2 +id[14805] = "2934-06-29T12:54:12" +ik[14805] = 54.656 +il[14805] = 168 +im[14805] = 0.1172 +ij[14805] = 9 +id[14806] = "2934-07-08T10:09:50" +ik[14806] = 0.864 +il[14806] = -165 +im[14806] = 0.0485 +ij[14806] = 28.6 +id[14807] = "2934-07-14T09:57:44" +ik[14807] = 0.69 +il[14807] = -147 +im[14807] = 0.1245 +ij[14807] = 28.5 +id[14808] = "2934-07-28T01:30:51" +ik[14808] = 1.325 +il[14808] = -105 +im[14808] = 0.1467 +ij[14808] = 28.4 +id[14809] = "2934-08-21T05:51:21" +ik[14809] = 1.099 +il[14809] = -32 +im[14809] = 0.0645 +ij[14809] = 28.7 +id[14810] = "2934-09-09T10:07:57" +ik[14810] = 90 +il[14810] = 26 +im[14810] = 0.1788 +ij[14810] = 6 +id[14811] = "2934-10-29T15:31:57" +ik[14811] = 0 +il[14811] = 169 +im[14811] = 0.2124 +ij[14811] = 13 +id[14812] = "2934-11-20T11:02:07" +ik[14812] = 0.5736 +il[14812] = 162 +im[14812] = 0.5736 +ij[14812] = 2 +id[14813] = "2934-11-21T02:48:28" +ik[14813] = 4.08 +il[14813] = 172 +im[14813] = 0.5672 +ij[14813] = 11 +id[14814] = "2934-12-11T16:36:32" +ik[14814] = 43.04 +il[14814] = -153 +im[14814] = 0.1882 +ij[14814] = 7.1555 +id[14815] = "2935-01-12T04:16:14" +ik[14815] = 74.53 +il[14815] = -91 +im[14815] = 0.2542 +ij[14815] = 14 +id[14816] = "2935-01-30T08:40:50" +ik[14816] = 1.717 +il[14816] = -45 +im[14816] = 0.2016 +ij[14816] = 27.1 +id[14817] = "2935-01-30T22:28:18" +ik[14817] = 90 +il[14817] = -45 +im[14817] = 0.192 +ij[14817] = 5 +id[14818] = "2935-03-23T12:44:24" +ik[14818] = 2.145 +il[14818] = 116 +im[14818] = 0.0216 +ij[14818] = 27.3 +id[14819] = "2935-04-10T20:18:37" +ik[14819] = 0.035 +il[14819] = 174 +im[14819] = 0.0925 +ij[14819] = 27.5 +id[14820] = "2935-04-19T21:01:19" +ik[14820] = 53.963 +il[14820] = -158 +im[14820] = 0.0479 +ij[14820] = 8 +id[14821] = "2935-05-12T04:17:28" +ik[14821] = 0.196 +il[14821] = -90 +im[14821] = 0.0924 +ij[14821] = 28.8 +id[14822] = "2935-05-25T17:41:45" +ik[14822] = 3.84 +il[14822] = -48 +im[14822] = 0.0814 +ij[14822] = 27.6 +id[14823] = "2935-07-02T15:57:38" +ik[14823] = 5.415 +il[14823] = 67 +im[14823] = 0.0653 +ij[14823] = 27.2 +id[14824] = "2935-07-05T21:46:39" +ik[14824] = 2.603 +il[14824] = 77 +im[14824] = 0.0115 +ij[14824] = 28.1 +id[14825] = "2935-08-06T00:24:02" +ik[14825] = 0.893 +il[14825] = 172 +im[14825] = 0.014 +ij[14825] = 28.1 +id[14826] = "2935-09-07T12:31:40" +ik[14826] = 1.39 +il[14826] = -110 +im[14826] = 0.0572 +ij[14826] = 12 +id[14827] = "2935-10-17T01:04:30" +ik[14827] = 2.644 +il[14827] = -170 +im[14827] = 0.044 +ij[14827] = 28.1 +id[14828] = "2935-11-16T12:28:50" +ik[14828] = 4.368 +il[14828] = -78 +im[14828] = 0.045 +ij[14828] = 27.4 +id[14829] = "2936-01-10T14:50:37" +ik[14829] = 0.118 +il[14829] = 91 +im[14829] = 0.1116 +ij[14829] = 27.3 +id[14830] = "2936-01-28T14:24:51" +ik[14830] = 0.897 +il[14830] = 146 +im[14830] = 0.0866 +ij[14830] = 27.5 +id[14831] = "2936-02-05T03:39:34" +ik[14831] = 53.662 +il[14831] = 170 +im[14831] = 0.0737 +ij[14831] = 9 +id[14832] = "2936-03-03T16:40:51" +ik[14832] = 1.653 +il[14832] = -104 +im[14832] = 0.0143 +ij[14832] = 28.8 +id[14833] = "2936-03-14T06:42:39" +ik[14833] = 1.2 +il[14833] = -71 +im[14833] = 0.1038 +ij[14833] = 27.6 +id[14834] = "2936-04-20T13:09:17" +ik[14834] = 90 +il[14834] = 46 +im[14834] = 0.1736 +ij[14834] = 6 +id[14835] = "2936-04-26T15:31:30" +ik[14835] = 1.252 +il[14835] = 61 +im[14835] = 0.206 +ij[14835] = 27.2 +id[14836] = "2936-06-06T04:16:41" +ik[14836] = 0 +il[14836] = 174 +im[14836] = 0.393 +ij[14836] = 13 +id[14837] = "2936-06-17T03:49:40" +ik[14837] = 0.256 +il[14837] = -164 +im[14837] = 0.444 +ij[14837] = 27.9 +id[14838] = "2936-06-19T13:22:48" +ik[14838] = 0.5142 +il[14838] = -168 +im[14838] = 0.5143 +ij[14838] = 2 +id[14839] = "2936-06-28T07:36:28" +ik[14839] = 1.87 +il[14839] = -143 +im[14839] = 0.2308 +ij[14839] = 11 +id[14840] = "2936-07-20T05:21:16" +ik[14840] = 44.04 +il[14840] = -145 +im[14840] = 0.2484 +ij[14840] = 7.1662 +id[14841] = "2936-08-23T02:35:03" +ik[14841] = 77.93 +il[14841] = -78 +im[14841] = 0.1356 +ij[14841] = 14 +id[14842] = "2936-09-06T12:40:05" +ik[14842] = 90 +il[14842] = -40 +im[14842] = 0.1398 +ij[14842] = 5 +id[14843] = "2936-10-17T07:56:22" +ik[14843] = 1.33 +il[14843] = 84 +im[14843] = 0.0435 +ij[14843] = 28.6 +id[14844] = "2936-11-16T20:18:14" +ik[14844] = 0.961 +il[14844] = 178 +im[14844] = 0.0189 +ij[14844] = 28.7 +id[14845] = "2936-11-18T13:01:22" +ik[14845] = 54.082 +il[14845] = -177 +im[14845] = 0.028 +ij[14845] = 8 +id[14846] = "2936-12-01T12:56:44" +ik[14846] = 0.353 +il[14846] = -137 +im[14846] = 0.0156 +ij[14846] = 28.5 +id[14847] = "2936-12-11T22:37:20" +ik[14847] = 0.818 +il[14847] = -104 +im[14847] = 0.1013 +ij[14847] = 28.4 +id[14848] = "2937-01-08T04:45:16" +ik[14848] = 4.399 +il[14848] = -19 +im[14848] = 0.0952 +ij[14848] = 27.1 +id[14849] = "2937-01-29T11:31:12" +ik[14849] = 2.806 +il[14849] = 47 +im[14849] = 0.0467 +ij[14849] = 28.1 +id[14850] = "2937-02-23T06:53:17" +ik[14850] = 0.821 +il[14850] = 124 +im[14850] = 0.0941 +ij[14850] = 27.3 +id[14851] = "2937-03-12T18:48:50" +ik[14851] = 0.675 +il[14851] = 167 +im[14851] = 0.0713 +ij[14851] = 27.5 +id[14852] = "2937-04-20T14:42:43" +ik[14852] = 1.16 +il[14852] = -85 +im[14852] = 0.0588 +ij[14852] = 12 +id[14853] = "2937-06-01T07:28:50" +ik[14853] = 4.712 +il[14853] = -142 +im[14853] = 0.0076 +ij[14853] = 27.2 +id[14854] = "2937-06-18T18:52:50" +ik[14854] = 0.024 +il[14854] = -87 +im[14854] = 0.0374 +ij[14854] = 27.9 +id[14855] = "2937-08-19T22:23:13" +ik[14855] = 0.925 +il[14855] = 105 +im[14855] = 0.0809 +ij[14855] = 28.6 +id[14856] = "2937-09-05T20:15:09" +ik[14856] = 54.373 +il[14856] = 156 +im[14856] = 0.119 +ij[14856] = 9 +id[14857] = "2937-09-10T13:30:51" +ik[14857] = 0.514 +il[14857] = 171 +im[14857] = 0.0972 +ij[14857] = 28.7 +id[14858] = "2937-10-21T04:38:10" +ik[14858] = 2.343 +il[14858] = -66 +im[14858] = 0.1587 +ij[14858] = 27.4 +id[14859] = "2937-10-28T18:27:21" +ik[14859] = 3.012 +il[14859] = -43 +im[14859] = 0.0264 +ij[14859] = 28.5 +id[14860] = "2937-11-23T00:09:08" +ik[14860] = 90 +il[14860] = 35 +im[14860] = 0.1971 +ij[14860] = 6 +id[14861] = "2938-01-08T21:44:24" +ik[14861] = 2.834 +il[14861] = 168 +im[14861] = 0.1028 +ij[14861] = 27.3 +id[14862] = "2938-01-12T02:35:30" +ik[14862] = 0 +il[14862] = 166 +im[14862] = 0.2249 +ij[14862] = 13 +id[14863] = "2938-02-02T18:12:57" +ik[14863] = 6.85 +il[14863] = -179 +im[14863] = 0.3818 +ij[14863] = 11 +id[14864] = "2938-02-12T05:09:04" +ik[14864] = 0.537 +il[14864] = -158 +im[14864] = 0.537 +ij[14864] = 2 +id[14865] = "2938-02-23T13:24:16" +ik[14865] = 42.45 +il[14865] = -144 +im[14865] = 0.3631 +ij[14865] = 7.1559 +id[14866] = "2938-03-27T12:45:04" +ik[14866] = 74.42 +il[14866] = -81 +im[14866] = 0.2585 +ij[14866] = 14 +id[14867] = "2938-04-15T12:23:17" +ik[14867] = 90 +il[14867] = -33 +im[14867] = 0.1027 +ij[14867] = 5 +id[14868] = "2938-04-19T18:13:17" +ik[14868] = 1.352 +il[14868] = -20 +im[14868] = 0.0772 +ij[14868] = 27.5 +id[14869] = "2938-05-29T12:18:00" +ik[14869] = 0.359 +il[14869] = 103 +im[14869] = 0.0615 +ij[14869] = 28.8 +id[14870] = "2938-06-07T07:48:34" +ik[14870] = 4.23 +il[14870] = 130 +im[14870] = 0.1366 +ij[14870] = 27.6 +id[14871] = "2938-06-29T22:51:37" +ik[14871] = 54.409 +il[14871] = -160 +im[14871] = 0.0229 +ij[14871] = 8 +id[14872] = "2938-07-16T16:03:25" +ik[14872] = 6.088 +il[14872] = -110 +im[14872] = 0.0125 +ij[14872] = 27.2 +id[14873] = "2938-09-13T14:44:09" +ik[14873] = 2.151 +il[14873] = 70 +im[14873] = 0.0092 +ij[14873] = 28.1 +id[14874] = "2938-09-27T11:49:37" +ik[14874] = 0.811 +il[14874] = 113 +im[14874] = 0.0381 +ij[14874] = 28.1 +id[14875] = "2938-10-11T13:15:01" +ik[14875] = 0.907 +il[14875] = 157 +im[14875] = 0.0446 +ij[14875] = 28.6 +id[14876] = "2938-11-17T12:05:45" +ik[14876] = 0.72 +il[14876] = -110 +im[14876] = 0.0675 +ij[14876] = 12 +id[14877] = "2938-12-29T14:11:19" +ik[14877] = 0.667 +il[14877] = -166 +im[14877] = 0.0123 +ij[14877] = 28.4 +id[14878] = "2939-01-02T06:01:09" +ik[14878] = 0.716 +il[14878] = -155 +im[14878] = 0.0718 +ij[14878] = 28.5 +id[14879] = "2939-01-24T14:50:37" +ik[14879] = 0.186 +il[14879] = -87 +im[14879] = 0.0617 +ij[14879] = 27.3 +id[14880] = "2939-02-11T05:15:57" +ik[14880] = 0.888 +il[14880] = -32 +im[14880] = 0.0232 +ij[14880] = 27.5 +id[14881] = "2939-03-22T02:37:32" +ik[14881] = 1.189 +il[14881] = 89 +im[14881] = 0.1008 +ij[14881] = 28.8 +id[14882] = "2939-03-27T06:52:29" +ik[14882] = 2.24 +il[14882] = 105 +im[14882] = 0.0378 +ij[14882] = 27.6 +id[14883] = "2939-04-19T16:13:25" +ik[14883] = 54.272 +il[14883] = 178 +im[14883] = 0.1095 +ij[14883] = 9 +id[14884] = "2939-05-04T10:30:36" +ik[14884] = 3.202 +il[14884] = -135 +im[14884] = 0.1286 +ij[14884] = 27.2 +id[14885] = "2939-06-28T16:29:11" +ik[14885] = 90 +il[14885] = 35 +im[14885] = 0.0677 +ij[14885] = 6 +id[14886] = "2939-08-15T12:45:31" +ik[14886] = 0 +il[14886] = 171 +im[14886] = 0.4183 +ij[14886] = 13 +id[14887] = "2939-09-07T03:02:52" +ik[14887] = 8.48 +il[14887] = 173 +im[14887] = 0.2445 +ij[14887] = 11 +id[14888] = "2939-09-11T09:41:58" +ik[14888] = 0.5104 +il[14888] = -171 +im[14888] = 0.5105 +ij[14888] = 2 +id[14889] = "2939-09-28T17:14:15" +ik[14889] = 44.19 +il[14889] = -151 +im[14889] = 0.3094 +ij[14889] = 7.1638 +id[14890] = "2939-10-31T21:16:01" +ik[14890] = 77.35 +il[14890] = -86 +im[14890] = 0.0886 +ij[14890] = 14 +id[14891] = "2939-11-16T18:15:20" +ik[14891] = 90 +il[14891] = -46 +im[14891] = 0.1113 +ij[14891] = 5 +id[14892] = "2939-11-28T07:34:45" +ik[14892] = 0.905 +il[14892] = -11 +im[14892] = 0.0249 +ij[14892] = 28.6 +id[14893] = "2939-12-08T04:57:47" +ik[14893] = 1.468 +il[14893] = 20 +im[14893] = 0.164 +ij[14893] = 28.7 +id[14894] = "2940-01-22T06:54:09" +ik[14894] = 3.549 +il[14894] = 160 +im[14894] = 0.1079 +ij[14894] = 27.1 +id[14895] = "2940-02-01T10:57:00" +ik[14895] = 53.722 +il[14895] = -168 +im[14895] = 0.1072 +ij[14895] = 8 +id[14896] = "2940-03-09T09:13:49" +ik[14896] = 0.316 +il[14896] = -53 +im[14896] = 0.0791 +ij[14896] = 28.5 +id[14897] = "2940-03-09T11:39:03" +ik[14897] = 1.279 +il[14897] = -53 +im[14897] = 0.0775 +ij[14897] = 27.3 +id[14898] = "2940-03-27T03:47:03" +ik[14898] = 0.464 +il[14898] = 2 +im[14898] = 0.0151 +ij[14898] = 27.5 +id[14899] = "2940-04-02T03:16:24" +ik[14899] = 1.612 +il[14899] = 20 +im[14899] = 0.0838 +ij[14899] = 28.1 +id[14900] = "2940-05-05T20:43:17" +ik[14900] = 0.191 +il[14900] = 124 +im[14900] = 0.0864 +ij[14900] = 28.8 +id[14901] = "2940-05-10T02:23:30" +ik[14901] = 3.49 +il[14901] = 137 +im[14901] = 0.0387 +ij[14901] = 27.6 +id[14902] = "2940-05-15T03:28:48" +ik[14902] = 0.971 +il[14902] = 152 +im[14902] = 0.0558 +ij[14902] = 28.1 +id[14903] = "2940-06-28T19:32:09" +ik[14903] = 0.32 +il[14903] = -94 +im[14903] = 0.0339 +ij[14903] = 12 +id[14904] = "2940-10-03T08:56:24" +ik[14904] = 0.227 +il[14904] = 21 +im[14904] = 0.0981 +ij[14904] = 28.7 +id[14905] = "2940-10-03T11:15:21" +ik[14905] = 2.04 +il[14905] = 21 +im[14905] = 0.0976 +ij[14905] = 28.6 +id[14906] = "2940-11-01T09:01:16" +ik[14906] = 3.629 +il[14906] = 109 +im[14906] = 0.116 +ij[14906] = 27.4 +id[14907] = "2940-11-17T08:52:34" +ik[14907] = 53.745 +il[14907] = 157 +im[14907] = 0.1122 +ij[14907] = 9 +id[14908] = "2940-12-28T07:10:10" +ik[14908] = 0.441 +il[14908] = -77 +im[14908] = 0.1299 +ij[14908] = 27.3 +id[14909] = "2941-01-07T19:10:33" +ik[14909] = 0.909 +il[14909] = -44 +im[14909] = 0.0256 +ij[14909] = 28.4 +id[14910] = "2941-01-16T21:18:37" +ik[14910] = 0.53 +il[14910] = -15 +im[14910] = 0.1636 +ij[14910] = 27.5 +id[14911] = "2941-02-01T02:58:33" +ik[14911] = 1.163 +il[14911] = 32 +im[14911] = 0.2013 +ij[14911] = 28.5 +id[14912] = "2941-02-06T03:32:35" +ik[14912] = 90 +il[14912] = 48 +im[14912] = 0.0411 +ij[14912] = 6 +id[14913] = "2941-03-20T03:45:29" +ik[14913] = 4.85 +il[14913] = 166 +im[14913] = 0.1586 +ij[14913] = 27.6 +id[14914] = "2941-03-25T21:16:28" +ik[14914] = 0 +il[14914] = 172 +im[14914] = 0.3164 +ij[14914] = 13 +id[14915] = "2941-04-17T06:34:33" +ik[14915] = 7.38 +il[14915] = -180 +im[14915] = 0.0526 +ij[14915] = 11 +id[14916] = "2941-04-24T09:51:55" +ik[14916] = 0.5201 +il[14916] = -155 +im[14916] = 0.5202 +ij[14916] = 2 +id[14917] = "2941-05-07T22:23:03" +ik[14917] = 43.05 +il[14917] = -139 +im[14917] = 0.4151 +ij[14917] = 7.1623 +id[14918] = "2941-06-07T12:17:16" +ik[14918] = 0.21 +il[14918] = -80 +im[14918] = 0.2123 +ij[14918] = 28.8 +id[14919] = "2941-06-10T04:53:44" +ik[14919] = 76.32 +il[14919] = -73 +im[14919] = 0.0983 +ij[14919] = 14 +id[14920] = "2941-06-11T15:42:35" +ik[14920] = 4.32 +il[14920] = -70 +im[14920] = 0.037 +ij[14920] = 27.6 +id[14921] = "2941-06-26T16:51:18" +ik[14921] = 90 +il[14921] = -30 +im[14921] = 0.0277 +ij[14921] = 5 +id[14922] = "2941-09-06T19:53:55" +ik[14922] = 54.483 +il[14922] = -170 +im[14922] = 0.0704 +ij[14922] = 8 +id[14923] = "2941-11-15T21:02:44" +ik[14923] = 1.273 +il[14923] = 46 +im[14923] = 0.0906 +ij[14923] = 28.1 +id[14924] = "2941-11-18T16:27:58" +ik[14924] = 1.159 +il[14924] = 54 +im[14924] = 0.0749 +ij[14924] = 28.7 +id[14925] = "2941-11-25T18:07:03" +ik[14925] = 1.076 +il[14925] = 77 +im[14925] = 0.0396 +ij[14925] = 28.6 +id[14926] = "2942-01-31T22:23:31" +ik[14926] = 1.05 +il[14926] = -96 +im[14926] = 0.0811 +ij[14926] = 12 +id[14927] = "2942-04-01T18:50:15" +ik[14927] = 0.427 +il[14927] = -99 +im[14927] = 0.0854 +ij[14927] = 28.5 +id[14928] = "2942-04-10T05:15:47" +ik[14928] = 0.973 +il[14928] = -73 +im[14928] = 0.0352 +ij[14928] = 28.8 +id[14929] = "2942-04-10T07:45:30" +ik[14929] = 2.77 +il[14929] = -73 +im[14929] = 0.0369 +ij[14929] = 27.6 +id[14930] = "2942-05-17T11:03:29" +ik[14930] = 4.096 +il[14930] = 44 +im[14930] = 0.0974 +ij[14930] = 27.2 +id[14931] = "2942-06-27T07:05:56" +ik[14931] = 54.653 +il[14931] = 171 +im[14931] = 0.1053 +ij[14931] = 9 +id[14932] = "2942-09-07T00:02:04" +ik[14932] = 90 +il[14932] = 29 +im[14932] = 0.0537 +ij[14932] = 6 +id[14933] = "2942-09-22T07:23:39" +ik[14933] = 4.075 +il[14933] = 69 +im[14933] = 0.1336 +ij[14933] = 28.7 +id[14934] = "2942-10-27T04:54:11" +ik[14934] = 0 +il[14934] = 165 +im[14934] = 0.4289 +ij[14934] = 13 +id[14935] = "2942-11-18T16:16:19" +ik[14935] = 4.42 +il[14935] = 175 +im[14935] = 0.451 +ij[14935] = 11 +id[14936] = "2942-11-21T13:15:38" +ik[14936] = 0.5665 +il[14936] = -171 +im[14936] = 0.5666 +ij[14936] = 2 +id[14937] = "2942-12-08T09:43:12" +ik[14937] = 5.304 +il[14937] = -152 +im[14937] = 0.255 +ij[14937] = 28.7 +id[14938] = "2942-12-09T04:59:46" +ik[14938] = 43 +il[14938] = -150 +im[14938] = 0.182 +ij[14938] = 7.1556 +id[14939] = "2943-01-03T21:51:59" +ik[14939] = 1.258 +il[14939] = -101 +im[14939] = 0.2429 +ij[14939] = 28.6 +id[14940] = "2943-01-09T18:28:34" +ik[14940] = 74.57 +il[14940] = -88 +im[14940] = 0.0738 +ij[14940] = 14 +id[14941] = "2943-01-28T11:08:07" +ik[14941] = 90 +il[14941] = -42 +im[14941] = 0.1819 +ij[14941] = 5 +id[14942] = "2943-01-30T09:56:49" +ik[14942] = 1.81 +il[14942] = -36 +im[14942] = 0.2052 +ij[14942] = 27.1 +id[14943] = "2943-03-23T04:54:10" +ik[14943] = 2.108 +il[14943] = 126 +im[14943] = 0.0332 +ij[14943] = 27.3 +id[14944] = "2943-04-10T11:31:03" +ik[14944] = 0.054 +il[14944] = -178 +im[14944] = 0.0478 +ij[14944] = 27.5 +id[14945] = "2943-04-14T19:23:48" +ik[14945] = 0.79 +il[14945] = -164 +im[14945] = 0.1136 +ij[14945] = 28.4 +id[14946] = "2943-04-17T10:21:31" +ik[14946] = 53.947 +il[14946] = -156 +im[14946] = 0.11 +ij[14946] = 8 +id[14947] = "2943-05-25T07:38:26" +ik[14947] = 3.83 +il[14947] = -40 +im[14947] = 0.048 +ij[14947] = 27.6 +id[14948] = "2943-05-26T03:00:34" +ik[14948] = 0.005 +il[14948] = -37 +im[14948] = 0.0622 +ij[14948] = 28.8 +id[14949] = "2943-06-06T18:03:53" +ik[14949] = 0.218 +il[14949] = -1 +im[14949] = 0.0246 +ij[14949] = 28.5 +id[14950] = "2943-06-13T00:22:45" +ik[14950] = 2.127 +il[14950] = 17 +im[14950] = 0.0836 +ij[14950] = 28.1 +id[14951] = "2943-07-02T05:08:44" +ik[14951] = 5.396 +il[14951] = 76 +im[14951] = 0.0876 +ij[14951] = 27.2 +id[14952] = "2943-07-07T15:56:18" +ik[14952] = 1.11 +il[14952] = 92 +im[14952] = 0.0053 +ij[14952] = 28.1 +id[14953] = "2943-09-05T05:36:57" +ik[14953] = 1.38 +il[14953] = -107 +im[14953] = 0.0113 +ij[14953] = 12 +id[14954] = "2943-10-28T00:16:50" +ik[14954] = 0.013 +il[14954] = -127 +im[14954] = 0.0848 +ij[14954] = 28.7 +id[14955] = "2943-11-16T01:55:29" +ik[14955] = 4.357 +il[14955] = -69 +im[14955] = 0.0761 +ij[14955] = 27.4 +id[14956] = "2943-11-19T22:36:37" +ik[14956] = 2.108 +il[14956] = -57 +im[14956] = 0.0127 +ij[14956] = 28.6 +id[14957] = "2944-01-10T05:03:56" +ik[14957] = 0.12 +il[14957] = 100 +im[14957] = 0.1002 +ij[14957] = 27.3 +id[14958] = "2944-01-28T05:09:16" +ik[14958] = 0.889 +il[14958] = 155 +im[14958] = 0.1143 +ij[14958] = 27.5 +id[14959] = "2944-02-02T14:41:05" +ik[14959] = 53.65 +il[14959] = 172 +im[14959] = 0.0295 +ij[14959] = 9 +id[14960] = "2944-03-13T23:57:22" +ik[14960] = 1.15 +il[14960] = -61 +im[14960] = 0.1349 +ij[14960] = 27.6 +id[14961] = "2944-03-18T02:13:12" +ik[14961] = 2.892 +il[14961] = -49 +im[14961] = 0.0331 +ij[14961] = 28.8 +id[14962] = "2944-04-18T06:10:02" +ik[14962] = 90 +il[14962] = 49 +im[14962] = 0.0345 +ij[14962] = 6 +id[14963] = "2944-04-26T20:56:22" +ik[14963] = 1.144 +il[14963] = 70 +im[14963] = 0.2389 +ij[14963] = 27.2 +id[14964] = "2944-05-04T21:35:34" +ik[14964] = 4.311 +il[14964] = 89 +im[14964] = 0.0913 +ij[14964] = 28.5 +id[14965] = "2944-06-04T18:29:01" +ik[14965] = 0 +il[14965] = 172 +im[14965] = 0.3327 +ij[14965] = 13 +id[14966] = "2944-06-20T18:17:32" +ik[14966] = 0.5267 +il[14966] = 167 +im[14966] = 0.5268 +ij[14966] = 2 +id[14967] = "2944-06-26T00:41:45" +ik[14967] = 1.55 +il[14967] = -178 +im[14967] = 0.1785 +ij[14967] = 11 +id[14968] = "2944-07-13T16:06:05" +ik[14968] = 6.392 +il[14968] = -148 +im[14968] = 0.3441 +ij[14968] = 28.5 +id[14969] = "2944-07-17T20:34:36" +ik[14969] = 43.09 +il[14969] = -142 +im[14969] = 0.4305 +ij[14969] = 7.1662 +id[14970] = "2944-08-20T18:56:24" +ik[14970] = 77.02 +il[14970] = -75 +im[14970] = 0.0675 +ij[14970] = 14 +id[14971] = "2944-09-04T05:16:58" +ik[14971] = 90 +il[14971] = -38 +im[14971] = 0.0206 +ij[14971] = 5 +id[14972] = "2944-11-16T03:29:06" +ik[14972] = 54.099 +il[14972] = -175 +im[14972] = 0.0682 +ij[14972] = 8 +id[14973] = "2944-12-12T17:08:35" +ik[14973] = 1.278 +il[14973] = -92 +im[14973] = 0.1018 +ij[14973] = 28.7 +id[14974] = "2945-01-07T18:22:35" +ik[14974] = 4.417 +il[14974] = -11 +im[14974] = 0.0764 +ij[14974] = 27.1 +id[14975] = "2945-01-11T10:42:23" +ik[14975] = 0.519 +il[14975] = 1 +im[14975] = 0.0921 +ij[14975] = 28.6 +id[14976] = "2945-01-15T12:55:17" +ik[14976] = 2.317 +il[14976] = 14 +im[14976] = 0.0432 +ij[14976] = 28.1 +id[14977] = "2945-01-30T01:28:50" +ik[14977] = 1.244 +il[14977] = 59 +im[14977] = 0.0654 +ij[14977] = 28.1 +id[14978] = "2945-02-22T20:10:09" +ik[14978] = 0.815 +il[14978] = 133 +im[14978] = 0.0849 +ij[14978] = 27.3 +id[14979] = "2945-03-12T08:01:16" +ik[14979] = 0.677 +il[14979] = 179 +im[14979] = 0.0843 +ij[14979] = 27.5 +id[14980] = "2945-04-18T04:32:09" +ik[14980] = 1.19 +il[14980] = -83 +im[14980] = 0.0089 +ij[14980] = 12 +id[14981] = "2945-05-31T20:35:55" +ik[14981] = 4.702 +il[14981] = -133 +im[14981] = 0.0324 +ij[14981] = 27.2 +id[14982] = "2945-06-18T08:27:36" +ik[14982] = 0.285 +il[14982] = -78 +im[14982] = 0.0096 +ij[14982] = 27.9 +id[14983] = "2945-07-01T08:26:00" +ik[14983] = 0.879 +il[14983] = -38 +im[14983] = 0.0255 +ij[14983] = 28.5 +id[14984] = "2945-07-13T09:27:21" +ik[14984] = 0.402 +il[14984] = 0 +im[14984] = 0.0854 +ij[14984] = 28.1 +id[14985] = "2945-09-03T12:29:34" +ik[14985] = 54.392 +il[14985] = 160 +im[14985] = 0.0573 +ij[14985] = 9 +id[14986] = "2945-10-07T17:28:10" +ik[14986] = 1.844 +il[14986] = -97 +im[14986] = 0.139 +ij[14986] = 28.7 +id[14987] = "2945-10-20T23:08:22" +ik[14987] = 2.287 +il[14987] = -57 +im[14987] = 0.1496 +ij[14987] = 27.4 +id[14988] = "2945-11-20T11:28:28" +ik[14988] = 90 +il[14988] = 37 +im[14988] = 0.2174 +ij[14988] = 6 +id[14989] = "2945-11-21T16:55:03" +ik[14989] = 4.025 +il[14989] = 40 +im[14989] = 0.2316 +ij[14989] = 28.6 +id[14990] = "2946-01-09T18:56:51" +ik[14990] = 0 +il[14990] = -180 +im[14990] = 0.1378 +ij[14990] = 13 +id[14991] = "2946-01-18T12:05:44" +ik[14991] = 0.5349 +il[14991] = -165 +im[14991] = 0.5349 +ij[14991] = 2 +id[14992] = "2946-01-31T06:41:45" +ik[14992] = 6.59 +il[14992] = -177 +im[14992] = 0.5302 +ij[14992] = 11 +id[14993] = "2946-02-21T01:28:29" +ik[14993] = 42.27 +il[14993] = -142 +im[14993] = 0.0398 +ij[14993] = 7.1558 +id[14994] = "2946-03-25T00:35:16" +ik[14994] = 74.24 +il[14994] = -79 +im[14994] = 0.2033 +ij[14994] = 14 +id[14995] = "2946-03-28T10:21:16" +ik[14995] = 4.934 +il[14995] = -71 +im[14995] = 0.245 +ij[14995] = 27.3 +id[14996] = "2946-04-13T01:07:32" +ik[14996] = 90 +il[14996] = -31 +im[14996] = 0.2181 +ij[14996] = 5 +id[14997] = "2946-04-19T16:53:43" +ik[14997] = 1.256 +il[14997] = -10 +im[14997] = 0.0078 +ij[14997] = 27.5 +id[14998] = "2946-06-06T23:51:15" +ik[14998] = 4.22 +il[14998] = 139 +im[14998] = 0.1072 +ij[14998] = 27.6 +id[14999] = "2946-06-13T06:05:02" +ik[14999] = 0.38 +il[14999] = 158 +im[14999] = 0.1123 +ij[14999] = 28.8 +id[15000] = "2946-06-27T15:27:22" +ik[15000] = 54.398 +il[15000] = -158 +im[15000] = 0.0966 +ij[15000] = 8 +id[15001] = "2946-07-16T06:13:37" +ik[15001] = 6.061 +il[15001] = -101 +im[15001] = 0.0361 +ij[15001] = 27.2 +id[15002] = "2946-08-25T23:40:16" +ik[15002] = 3.935 +il[15002] = 23 +im[15002] = 0.0912 +ij[15002] = 28.1 +id[15003] = "2946-09-09T14:17:48" +ik[15003] = 0.065 +il[15003] = 68 +im[15003] = 0.085 +ij[15003] = 28.5 +id[15004] = "2946-11-15T01:37:55" +ik[15004] = 0.77 +il[15004] = -107 +im[15004] = 0.0061 +ij[15004] = 12 +id[15005] = "2947-01-06T12:14:49" +ik[15005] = 1.156 +il[15005] = -132 +im[15005] = 0.0914 +ij[15005] = 28.6 +id[15006] = "2947-01-24T04:16:49" +ik[15006] = 0.185 +il[15006] = -78 +im[15006] = 0.0822 +ij[15006] = 27.3 +id[15007] = "2947-02-10T18:45:43" +ik[15007] = 0.886 +il[15007] = -24 +im[15007] = 0.0617 +ij[15007] = 27.5 +id[15008] = "2947-03-26T20:57:10" +ik[15008] = 2.21 +il[15008] = 114 +im[15008] = 0.0753 +ij[15008] = 27.6 +id[15009] = "2947-04-04T22:38:47" +ik[15009] = 2.027 +il[15009] = 142 +im[15009] = 0.1017 +ij[15009] = 28.8 +id[15010] = "2947-04-17T07:38:03" +ik[15010] = 54.251 +il[15010] = -179 +im[15010] = 0.0524 +ij[15010] = 9 +id[15011] = "2947-05-02T00:30:31" +ik[15011] = 0.656 +il[15011] = -133 +im[15011] = 0.0563 +ij[15011] = 28.4 +id[15012] = "2947-05-04T02:09:42" +ik[15012] = 3.171 +il[15012] = -127 +im[15012] = 0.099 +ij[15012] = 27.2 +id[15013] = "2947-06-26T09:52:03" +ik[15013] = 90 +il[15013] = 38 +im[15013] = 0.1007 +ij[15013] = 6 +id[15014] = "2947-08-13T00:35:42" +ik[15014] = 0 +il[15014] = 173 +im[15014] = 0.2563 +ij[15014] = 13 +id[15015] = "2947-09-04T18:04:19" +ik[15015] = 8.4 +il[15015] = 176 +im[15015] = 0.184 +ij[15015] = 11 +id[15016] = "2947-09-12T10:04:03" +ik[15016] = 0.5108 +il[15016] = -165 +im[15016] = 0.5108 +ij[15016] = 2 +id[15017] = "2947-09-26T09:48:19" +ik[15017] = 44.38 +il[15017] = -149 +im[15017] = 0.4181 +ij[15017] = 7.164 +id[15018] = "2947-10-29T14:21:03" +ik[15018] = 77.57 +il[15018] = -83 +im[15018] = 0.1109 +ij[15018] = 14 +id[15019] = "2947-11-13T00:44:29" +ik[15019] = 0.832 +il[15019] = -47 +im[15019] = 0.1234 +ij[15019] = 28.5 +id[15020] = "2947-11-14T09:13:08" +ik[15020] = 90 +il[15020] = -43 +im[15020] = 0.0681 +ij[15020] = 5 +id[15021] = "2948-01-04T23:13:12" +ik[15021] = 1.992 +il[15021] = 116 +im[15021] = 0.1364 +ij[15021] = 28.7 +id[15022] = "2948-01-21T22:10:08" +ik[15022] = 3.581 +il[15022] = 169 +im[15022] = 0.1195 +ij[15022] = 27.1 +id[15023] = "2948-01-29T22:37:38" +ik[15023] = 53.726 +il[15023] = -166 +im[15023] = 0.0245 +ij[15023] = 8 +id[15024] = "2948-02-28T17:59:25" +ik[15024] = 0.389 +il[15024] = -73 +im[15024] = 0.0093 +ij[15024] = 28.6 +id[15025] = "2948-03-09T01:37:16" +ik[15025] = 1.266 +il[15025] = -44 +im[15025] = 0.0974 +ij[15025] = 27.3 +id[15026] = "2948-03-15T06:46:04" +ik[15026] = 1.456 +il[15026] = -25 +im[15026] = 0.014 +ij[15026] = 28.1 +id[15027] = "2948-03-26T17:27:29" +ik[15027] = 0.47 +il[15027] = 11 +im[15027] = 0.0548 +ij[15027] = 27.5 +id[15028] = "2948-04-09T23:51:47" +ik[15028] = 3.175 +il[15028] = 55 +im[15028] = 0.0658 +ij[15028] = 28.1 +id[15029] = "2948-05-09T15:32:03" +ik[15029] = 3.48 +il[15029] = 145 +im[15029] = 0.0646 +ij[15029] = 27.6 +id[15030] = "2948-05-19T12:12:23" +ik[15030] = 0.583 +il[15030] = 175 +im[15030] = 0.0853 +ij[15030] = 28.8 +id[15031] = "2948-06-26T13:59:31" +ik[15031] = 0.26 +il[15031] = -91 +im[15031] = 0.0333 +ij[15031] = 12 +id[15032] = "2948-09-06T14:04:16" +ik[15032] = 3.569 +il[15032] = -51 +im[15032] = 0.0781 +ij[15032] = 28.1 +id[15033] = "2948-10-03T09:23:45" +ik[15033] = 5.418 +il[15033] = 31 +im[15033] = 0.1046 +ij[15033] = 28.1 +id[15034] = "2948-10-12T08:18:14" +ik[15034] = 1.15 +il[15034] = 58 +im[15034] = 0.0133 +ij[15034] = 28.5 +id[15035] = "2948-10-29T16:57:47" +ik[15035] = 1.075 +il[15035] = 110 +im[15035] = 0.0794 +ij[15035] = 28.7 +id[15036] = "2948-10-31T23:27:55" +ik[15036] = 3.608 +il[15036] = 117 +im[15036] = 0.1095 +ij[15036] = 27.4 +id[15037] = "2948-11-14T20:50:59" +ik[15037] = 53.763 +il[15037] = 160 +im[15037] = 0.0854 +ij[15037] = 9 +id[15038] = "2948-12-28T00:40:22" +ik[15038] = 0.441 +il[15038] = -67 +im[15038] = 0.0794 +ij[15038] = 27.3 +id[15039] = "2949-01-03T21:40:01" +ik[15039] = 0.785 +il[15039] = -46 +im[15039] = 0.158 +ij[15039] = 28.6 +id[15040] = "2949-01-16T17:48:22" +ik[15040] = 0.488 +il[15040] = -6 +im[15040] = 0.1823 +ij[15040] = 27.5 +id[15041] = "2949-02-03T16:33:38" +ik[15041] = 90 +il[15041] = 50 +im[15041] = 0.1839 +ij[15041] = 6 +id[15042] = "2949-03-20T13:18:56" +ik[15042] = 6.23 +il[15042] = 177 +im[15042] = 0.2638 +ij[15042] = 27.6 +id[15043] = "2949-03-24T14:21:29" +ik[15043] = 0 +il[15043] = 179 +im[15043] = 0.1357 +ij[15043] = 13 +id[15044] = "2949-04-12T03:02:36" +ik[15044] = 0.5337 +il[15044] = 177 +im[15044] = 0.5337 +ij[15044] = 2 +id[15045] = "2949-04-14T21:14:24" +ik[15045] = 7.58 +il[15045] = -171 +im[15045] = 0.4319 +ij[15045] = 11 +id[15046] = "2949-05-05T18:31:05" +ik[15046] = 42.17 +il[15046] = -136 +im[15046] = 0.3307 +ij[15046] = 7.1622 +id[15047] = "2949-06-07T18:31:51" +ik[15047] = 75.17 +il[15047] = -71 +im[15047] = 0.2442 +ij[15047] = 14 +id[15048] = "2949-06-12T02:22:48" +ik[15048] = 4.37 +il[15048] = -61 +im[15048] = 0.0856 +ij[15048] = 27.6 +id[15049] = "2949-06-24T08:35:06" +ik[15049] = 90 +il[15049] = -28 +im[15049] = 0.1568 +ij[15049] = 5 +id[15050] = "2949-06-27T00:57:10" +ik[15050] = 1.102 +il[15050] = -19 +im[15050] = 0.0534 +ij[15050] = 28.8 +id[15051] = "2949-09-04T07:37:12" +ik[15051] = 1.641 +il[15051] = -168 +im[15051] = 0.1239 +ij[15051] = 28.4 +id[15052] = "2949-09-04T12:47:27" +ik[15052] = 54.49 +il[15052] = -167 +im[15052] = 0.123 +ij[15052] = 8 +id[15053] = "2949-12-15T03:10:30" +ik[15053] = 0.557 +il[15053] = 147 +im[15053] = 0.0787 +ij[15053] = 28.7 +id[15054] = "2949-12-21T16:44:58" +ik[15054] = 0.198 +il[15054] = 168 +im[15054] = 0.0651 +ij[15054] = 28.5 +id[15055] = "2950-01-29T08:16:48" +ik[15055] = 1 +il[15055] = -86 +im[15055] = 0.0661 +ij[15055] = 12 +id[15056] = "2950-04-09T21:04:39" +ik[15056] = 2.76 +il[15056] = -64 +im[15056] = 0.0083 +ij[15056] = 27.6 +id[15057] = "2950-04-23T19:41:48" +ik[15057] = 1.6 +il[15057] = -20 +im[15057] = 0.028 +ij[15057] = 28.8 +id[15058] = "2950-04-26T05:57:41" +ik[15058] = 3.987 +il[15058] = -13 +im[15058] = 0.0242 +ij[15058] = 28.1 +id[15059] = "2950-05-17T00:46:08" +ik[15059] = 4.081 +il[15059] = 52 +im[15059] = 0.0945 +ij[15059] = 27.2 +id[15060] = "2950-06-25T01:10:34" +ik[15060] = 54.65 +il[15060] = 174 +im[15060] = 0.0293 +ij[15060] = 9 +id[15061] = "2950-09-04T14:06:48" +ik[15061] = 90 +il[15061] = 31 +im[15061] = 0.113 +ij[15061] = 6 +id[15062] = "2950-10-24T18:32:18" +ik[15062] = 0 +il[15062] = 174 +im[15062] = 0.3643 +ij[15062] = 13 +id[15063] = "2950-11-16T05:48:28" +ik[15063] = 4.75 +il[15063] = 177 +im[15063] = 0.0925 +ij[15063] = 11 +id[15064] = "2950-11-22T15:53:49" +ik[15064] = 0.5466 +il[15064] = -165 +im[15064] = 0.5466 +ij[15064] = 2 +id[15065] = "2950-12-06T17:34:53" +ik[15065] = 42.96 +il[15065] = -148 +im[15065] = 0.4231 +ij[15065] = 7.1559 +id[15066] = "2951-01-07T08:56:40" +ik[15066] = 74.6 +il[15066] = -86 +im[15066] = 0.1479 +ij[15066] = 14 +id[15067] = "2951-01-22T15:23:11" +ik[15067] = 3.557 +il[15067] = -49 +im[15067] = 0.1273 +ij[15067] = 28.7 +id[15068] = "2951-01-25T23:55:01" +ik[15068] = 90 +il[15068] = -40 +im[15068] = 0.0373 +ij[15068] = 5 +id[15069] = "2951-01-30T10:19:55" +ik[15069] = 1.899 +il[15069] = -26 +im[15069] = 0.1906 +ij[15069] = 27.1 +id[15070] = "2951-02-25T10:34:59" +ik[15070] = 1.875 +il[15070] = 56 +im[15070] = 0.0595 +ij[15070] = 28.5 +id[15071] = "2951-03-22T20:52:49" +ik[15071] = 2.073 +il[15071] = 134 +im[15071] = 0.0743 +ij[15071] = 27.3 +id[15072] = "2951-04-10T02:33:15" +ik[15072] = 0.068 +il[15072] = -169 +im[15072] = 0.0111 +ij[15072] = 27.5 +id[15073] = "2951-04-14T23:31:02" +ik[15073] = 53.931 +il[15073] = -154 +im[15073] = 0.0971 +ij[15073] = 8 +id[15074] = "2951-04-16T04:03:28" +ik[15074] = 0.939 +il[15074] = -150 +im[15074] = 0.1086 +ij[15074] = 28.6 +id[15075] = "2951-05-24T21:29:40" +ik[15075] = 3.82 +il[15075] = -31 +im[15075] = 0.0074 +ij[15075] = 27.6 +id[15076] = "2951-06-08T23:26:26" +ik[15076] = 0.283 +il[15076] = 15 +im[15076] = 0.0092 +ij[15076] = 28.8 +id[15077] = "2951-07-01T18:20:17" +ik[15077] = 5.377 +il[15077] = 84 +im[15077] = 0.0924 +ij[15077] = 27.2 +id[15078] = "2951-09-02T22:55:12" +ik[15078] = 1.36 +il[15078] = -104 +im[15078] = 0.0659 +ij[15078] = 12 +id[15079] = "2951-10-14T23:50:21" +ik[15079] = 0.489 +il[15079] = -156 +im[15079] = 0.092 +ij[15079] = 28.4 +id[15080] = "2951-11-15T15:25:41" +ik[15080] = 4.346 +il[15080] = -60 +im[15080] = 0.0929 +ij[15080] = 27.4 +id[15081] = "2951-11-23T07:28:50" +ik[15081] = 0.62 +il[15081] = -37 +im[15081] = 0.0283 +ij[15081] = 28.7 +id[15082] = "2951-12-02T14:50:29" +ik[15082] = 3.32 +il[15082] = -9 +im[15082] = 0.0711 +ij[15082] = 28.1 +id[15083] = "2952-01-09T19:20:22" +ik[15083] = 0.123 +il[15083] = 108 +im[15083] = 0.0704 +ij[15083] = 27.3 +id[15084] = "2952-01-18T23:55:23" +ik[15084] = 0.659 +il[15084] = 137 +im[15084] = 0.0438 +ij[15084] = 28.5 +id[15085] = "2952-01-27T19:57:15" +ik[15085] = 0.882 +il[15085] = 164 +im[15085] = 0.123 +ij[15085] = 27.5 +id[15086] = "2952-01-31T01:42:37" +ik[15086] = 53.637 +il[15086] = 174 +im[15086] = 0.1093 +ij[15086] = 9 +id[15087] = "2952-02-18T03:39:27" +ik[15087] = 1.567 +il[15087] = -129 +im[15087] = 0.0443 +ij[15087] = 28.6 +id[15088] = "2952-03-13T17:29:34" +ik[15088] = 1.09 +il[15088] = -52 +im[15088] = 0.1478 +ij[15088] = 27.6 +id[15089] = "2952-04-02T13:39:12" +ik[15089] = 4.154 +il[15089] = 10 +im[15089] = 0.1076 +ij[15089] = 28.8 +id[15090] = "2952-04-15T23:08:08" +ik[15090] = 90 +il[15090] = 51 +im[15090] = 0.1406 +ij[15090] = 6 +id[15091] = "2952-04-27T04:07:01" +ik[15091] = 1.03 +il[15091] = 79 +im[15091] = 0.251 +ij[15091] = 27.2 +id[15092] = "2952-06-01T08:57:07" +ik[15092] = 0 +il[15092] = 176 +im[15092] = 0.0483 +ij[15092] = 13 +id[15093] = "2952-06-21T21:08:44" +ik[15093] = 0.5277 +il[15093] = 173 +im[15093] = 0.5278 +ij[15093] = 2 +id[15094] = "2952-06-23T17:45:36" +ik[15094] = 1.22 +il[15094] = -175 +im[15094] = 0.4789 +ij[15094] = 11 +id[15095] = "2952-07-15T09:33:51" +ik[15095] = 44.03 +il[15095] = -139 +im[15095] = 0.3505 +ij[15095] = 7.166 +id[15096] = "2952-08-18T10:33:37" +ik[15096] = 78.07 +il[15096] = -72 +im[15096] = 0.2252 +ij[15096] = 14 +id[15097] = "2952-09-01T21:57:22" +ik[15097] = 90 +il[15097] = -35 +im[15097] = 0.1627 +ij[15097] = 5 +id[15098] = "2952-11-13T18:00:24" +ik[15098] = 54.116 +il[15098] = -172 +im[15098] = 0.1157 +ij[15098] = 8 +id[15099] = "2953-01-07T07:59:54" +ik[15099] = 4.435 +il[15099] = -2 +im[15099] = 0.0455 +ij[15099] = 27.1 +id[15100] = "2953-01-08T04:20:29" +ik[15100] = 0.923 +il[15100] = 1 +im[15100] = 0.0601 +ij[15100] = 28.7 +id[15101] = "2953-02-22T09:30:08" +ik[15101] = 0.809 +il[15101] = 141 +im[15101] = 0.0596 +ij[15101] = 27.3 +id[15102] = "2953-04-15T18:08:38" +ik[15102] = 1.22 +il[15102] = -80 +im[15102] = 0.0706 +ij[15102] = 12 +id[15103] = "2953-05-31T09:43:01" +ik[15103] = 4.692 +il[15103] = -124 +im[15103] = 0.0615 +ij[15103] = 27.2 +id[15104] = "2953-06-10T10:03:12" +ik[15104] = 3.036 +il[15104] = -93 +im[15104] = 0.0891 +ij[15104] = 28.1 +id[15105] = "2953-06-17T22:10:42" +ik[15105] = 0.26 +il[15105] = -70 +im[15105] = 0.0381 +ij[15105] = 27.9 +id[15106] = "2953-09-01T04:51:06" +ik[15106] = 54.41 +il[15106] = 162 +im[15106] = 0.039 +ij[15106] = 9 +id[15107] = "2953-10-20T17:56:21" +ik[15107] = 2.228 +il[15107] = -48 +im[15107] = 0.117 +ij[15107] = 27.4 +id[15108] = "2953-11-06T16:12:08" +ik[15108] = 2.985 +il[15108] = 4 +im[15108] = 0.1545 +ij[15108] = 28.7 +id[15109] = "2953-11-12T15:56:44" +ik[15109] = 1.162 +il[15109] = 23 +im[15109] = 0.1306 +ij[15109] = 28.4 +id[15110] = "2953-11-17T22:51:20" +ik[15110] = 90 +il[15110] = 39 +im[15110] = 0.0941 +ij[15110] = 6 +id[15111] = "2954-01-08T10:34:03" +ik[15111] = 0 +il[15111] = -174 +im[15111] = 0.3587 +ij[15111] = 13 +id[15112] = "2954-01-19T17:46:10" +ik[15112] = 0.5529 +il[15112] = 167 +im[15112] = 0.553 +ij[15112] = 2 +id[15113] = "2954-01-28T19:17:45" +ik[15113] = 6.31 +il[15113] = -167 +im[15113] = 0.3273 +ij[15113] = 11 +id[15114] = "2954-02-18T14:29:49" +ik[15114] = 41.16 +il[15114] = -140 +im[15114] = 0.3385 +ij[15114] = 7.156 +id[15115] = "2954-03-22T13:19:33" +ik[15115] = 73.11 +il[15115] = -77 +im[15115] = 0.0398 +ij[15115] = 14 +id[15116] = "2954-03-28T18:45:15" +ik[15116] = 4.715 +il[15116] = -62 +im[15116] = 0.2358 +ij[15116] = 27.3 +id[15117] = "2954-04-10T13:44:42" +ik[15117] = 90 +il[15117] = -29 +im[15117] = 0.193 +ij[15117] = 5 +id[15118] = "2954-04-19T14:56:22" +ik[15118] = 1.168 +il[15118] = 0 +im[15118] = 0.0614 +ij[15118] = 27.5 +id[15119] = "2954-05-27T03:47:22" +ik[15119] = 0.375 +il[15119] = 116 +im[15119] = 0.1375 +ij[15119] = 28.5 +id[15120] = "2954-05-30T13:38:29" +ik[15120] = 0.618 +il[15120] = 126 +im[15120] = 0.1085 +ij[15120] = 28.6 +id[15121] = "2954-06-06T15:52:22" +ik[15121] = 4.2 +il[15121] = 148 +im[15121] = 0.0617 +ij[15121] = 27.6 +id[15122] = "2954-06-25T07:59:33" +ik[15122] = 54.386 +il[15122] = -155 +im[15122] = 0.1153 +ij[15122] = 8 +id[15123] = "2954-06-27T15:59:02" +ik[15123] = 0.2 +il[15123] = -148 +im[15123] = 0.1146 +ij[15123] = 28.8 +id[15124] = "2954-07-15T20:17:10" +ik[15124] = 6.034 +il[15124] = -92 +im[15124] = 0.0695 +ij[15124] = 27.2 +id[15125] = "2954-11-12T15:21:36" +ik[15125] = 0.82 +il[15125] = -105 +im[15125] = 0.0628 +ij[15125] = 12 +id[15126] = "2955-01-23T17:40:48" +ik[15126] = 0.181 +il[15126] = -69 +im[15126] = 0.0882 +ij[15126] = 27.3 +id[15127] = "2955-02-10T08:20:22" +ik[15127] = 0.883 +il[15127] = -15 +im[15127] = 0.0888 +ij[15127] = 27.5 +id[15128] = "2955-03-26T11:08:19" +ik[15128] = 2.19 +il[15128] = 123 +im[15128] = 0.1014 +ij[15128] = 27.6 +id[15129] = "2955-04-02T16:16:01" +ik[15129] = 2.58 +il[15129] = 145 +im[15129] = 0.0281 +ij[15129] = 28.6 +id[15130] = "2955-04-14T22:55:34" +ik[15130] = 54.229 +il[15130] = -176 +im[15130] = 0.0434 +ij[15130] = 9 +id[15131] = "2955-04-16T15:59:52" +ik[15131] = 1.797 +il[15131] = -172 +im[15131] = 0.0065 +ij[15131] = 28.5 +id[15132] = "2955-04-18T23:36:40" +ik[15132] = 2.778 +il[15132] = -164 +im[15132] = 0.0624 +ij[15132] = 28.8 +id[15133] = "2955-05-03T17:59:01" +ik[15133] = 3.138 +il[15133] = -118 +im[15133] = 0.0509 +ij[15133] = 27.2 +id[15134] = "2955-06-24T03:22:00" +ik[15134] = 90 +il[15134] = 41 +im[15134] = 0.2068 +ij[15134] = 6 +id[15135] = "2955-08-11T13:20:00" +ik[15135] = 0 +il[15135] = 178 +im[15135] = 0.0401 +ij[15135] = 13 +id[15136] = "2955-09-02T09:12:57" +ik[15136] = 8.31 +il[15136] = 178 +im[15136] = 0.4646 +ij[15136] = 11 +id[15137] = "2955-09-13T18:01:01" +ik[15137] = 0.5036 +il[15137] = -159 +im[15137] = 0.5036 +ij[15137] = 2 +id[15138] = "2955-09-24T12:24:35" +ik[15138] = 43.96 +il[15138] = -145 +im[15138] = 0.2957 +ij[15138] = 7.1645 +id[15139] = "2955-10-27T08:39:23" +ik[15139] = 76.81 +il[15139] = -80 +im[15139] = 0.2349 +ij[15139] = 14 +id[15140] = "2955-11-12T00:18:01" +ik[15140] = 90 +il[15140] = -41 +im[15140] = 0.2037 +ij[15140] = 5 +id[15141] = "2956-01-21T13:19:01" +ik[15141] = 3.612 +il[15141] = 178 +im[15141] = 0.1135 +ij[15141] = 27.1 +id[15142] = "2956-01-27T10:18:16" +ik[15142] = 53.731 +il[15142] = -164 +im[15142] = 0.0749 +ij[15142] = 8 +id[15143] = "2956-02-01T17:28:01" +ik[15143] = 1.441 +il[15143] = -148 +im[15143] = 0.045 +ij[15143] = 28.7 +id[15144] = "2956-02-21T23:42:00" +ik[15144] = 1.527 +il[15144] = -84 +im[15144] = 0.1081 +ij[15144] = 28.4 +id[15145] = "2956-03-08T15:29:15" +ik[15145] = 1.254 +il[15145] = -36 +im[15145] = 0.1002 +ij[15145] = 27.3 +id[15146] = "2956-03-26T07:02:08" +ik[15146] = 0.476 +il[15146] = 19 +im[15146] = 0.0862 +ij[15146] = 27.5 +id[15147] = "2956-05-09T04:42:10" +ik[15147] = 3.47 +il[15147] = 154 +im[15147] = 0.0806 +ij[15147] = 27.6 +id[15148] = "2956-06-24T08:18:14" +ik[15148] = 0.21 +il[15148] = -87 +im[15148] = 0.0804 +ij[15148] = 12 +id[15149] = "2956-08-02T10:22:30" +ik[15149] = 1.302 +il[15149] = -149 +im[15149] = 0.0656 +ij[15149] = 28.1 +id[15150] = "2956-10-31T14:02:07" +ik[15150] = 3.586 +il[15150] = 126 +im[15150] = 0.0816 +ij[15150] = 27.4 +id[15151] = "2956-11-12T08:56:30" +ik[15151] = 53.782 +il[15151] = 162 +im[15151] = 0.0065 +ij[15151] = 9 +id[15152] = "2956-11-26T17:12:46" +ik[15152] = 1.697 +il[15152] = -154 +im[15152] = 0.0079 +ij[15152] = 28.7 +id[15153] = "2956-12-27T18:21:41" +ik[15153] = 0.441 +il[15153] = -58 +im[15153] = 0.0158 +ij[15153] = 27.3 +id[15154] = "2957-01-16T14:44:21" +ik[15154] = 0.442 +il[15154] = 4 +im[15154] = 0.1806 +ij[15154] = 27.5 +id[15155] = "2957-02-01T05:28:29" +ik[15155] = 90 +il[15155] = 53 +im[15155] = 0.1995 +ij[15155] = 6 +id[15156] = "2957-03-21T08:39:50" +ik[15156] = 0 +il[15156] = 157 +im[15156] = 0.317 +ij[15156] = 13 +id[15157] = "2957-04-12T11:47:02" +ik[15157] = 7.76 +il[15157] = -136 +im[15157] = 0.5366 +ij[15157] = 11 +id[15158] = "2957-04-13T05:55:27" +ik[15158] = 0.5449 +il[15158] = -156 +im[15158] = 0.5449 +ij[15158] = 2 +id[15159] = "2957-05-03T07:42:24" +ik[15159] = 42.96 +il[15159] = -133 +im[15159] = 0.0128 +ij[15159] = 7.1619 +id[15160] = "2957-06-05T07:30:09" +ik[15160] = 75.95 +il[15160] = -68 +im[15160] = 0.2323 +ij[15160] = 14 +id[15161] = "2957-06-12T10:36:11" +ik[15161] = 4.41 +il[15161] = -52 +im[15161] = 0.1468 +ij[15161] = 27.6 +id[15162] = "2957-06-22T00:16:15" +ik[15162] = 90 +il[15162] = -25 +im[15162] = 0.1972 +ij[15162] = 5 +id[15163] = "2957-07-11T00:43:12" +ik[15163] = 0.674 +il[15163] = 34 +im[15163] = 0.1374 +ij[15163] = 28.6 +id[15164] = "2957-07-13T18:21:36" +ik[15164] = 1.123 +il[15164] = 42 +im[15164] = 0.0587 +ij[15164] = 28.8 +id[15165] = "2957-08-27T17:39:50" +ik[15165] = 0.94 +il[15165] = 179 +im[15165] = 0.0129 +ij[15165] = 28.5 +id[15166] = "2957-09-02T05:40:58" +ik[15166] = 54.495 +il[15166] = -165 +im[15166] = 0.1016 +ij[15166] = 8 +id[15167] = "2958-01-26T18:18:43" +ik[15167] = 0.95 +il[15167] = -92 +im[15167] = 0.0017 +ij[15167] = 12 +id[15168] = "2958-03-20T20:29:36" +ik[15168] = 2.874 +il[15168] = -117 +im[15168] = 0.0884 +ij[15168] = 28.1 +id[15169] = "2958-04-06T22:28:07" +ik[15169] = 3.448 +il[15169] = -63 +im[15169] = 0.0779 +ij[15169] = 28.1 +id[15170] = "2958-04-09T10:18:03" +ik[15170] = 2.74 +il[15170] = -56 +im[15170] = 0.0459 +ij[15170] = 27.6 +id[15171] = "2958-05-07T12:59:19" +ik[15171] = 2.138 +il[15171] = 33 +im[15171] = 0.082 +ij[15171] = 28.8 +id[15172] = "2958-05-15T07:55:55" +ik[15172] = 2.399 +il[15172] = 57 +im[15172] = 0.0568 +ij[15172] = 28.6 +id[15173] = "2958-05-16T14:28:47" +ik[15173] = 4.065 +il[15173] = 61 +im[15173] = 0.0759 +ij[15173] = 27.2 +id[15174] = "2958-06-22T19:18:46" +ik[15174] = 54.646 +il[15174] = 177 +im[15174] = 0.0635 +ij[15174] = 9 +id[15175] = "2958-07-21T23:59:34" +ik[15175] = 0.305 +il[15175] = -94 +im[15175] = 0.0953 +ij[15175] = 28.5 +id[15176] = "2958-09-02T04:19:30" +ik[15176] = 90 +il[15176] = 34 +im[15176] = 0.2038 +ij[15176] = 6 +id[15177] = "2958-10-22T07:30:36" +ik[15177] = 0 +il[15177] = 177 +im[15177] = 0.0658 +ij[15177] = 13 +id[15178] = "2958-11-10T04:49:21" +ik[15178] = 0.5472 +il[15178] = 166 +im[15178] = 0.5472 +ij[15178] = 2 +id[15179] = "2958-11-13T19:17:45" +ik[15179] = 5.07 +il[15179] = -180 +im[15179] = 0.3681 +ij[15179] = 11 +id[15180] = "2958-12-04T09:38:11" +ik[15180] = 43.09 +il[15180] = -146 +im[15180] = 0.38 +ij[15180] = 7.1561 +id[15181] = "2959-01-04T23:34:55" +ik[15181] = 74.67 +il[15181] = -83 +im[15181] = 0.2753 +ij[15181] = 14 +id[15182] = "2959-01-23T12:42:48" +ik[15182] = 90 +il[15182] = -38 +im[15182] = 0.1363 +ij[15182] = 5 +id[15183] = "2959-01-30T09:46:34" +ik[15183] = 1.984 +il[15183] = -16 +im[15183] = 0.1555 +ij[15183] = 27.1 +id[15184] = "2959-02-23T13:32:35" +ik[15184] = 2.385 +il[15184] = 59 +im[15184] = 0.0536 +ij[15184] = 28.7 +id[15185] = "2959-03-22T12:47:54" +ik[15185] = 2.04 +il[15185] = 143 +im[15185] = 0.1058 +ij[15185] = 27.3 +id[15186] = "2959-04-09T17:32:21" +ik[15186] = 0.085 +il[15186] = -160 +im[15186] = 0.0575 +ij[15186] = 27.5 +id[15187] = "2959-04-12T12:37:00" +ik[15187] = 53.916 +il[15187] = -151 +im[15187] = 0.017 +ij[15187] = 8 +id[15188] = "2959-05-24T11:15:00" +ik[15188] = 3.8 +il[15188] = -22 +im[15188] = 0.0386 +ij[15188] = 27.6 +id[15189] = "2959-06-22T19:25:58" +ik[15189] = 0.606 +il[15189] = 67 +im[15189] = 0.0511 +ij[15189] = 28.8 +id[15190] = "2959-07-01T07:29:09" +ik[15190] = 5.358 +il[15190] = 93 +im[15190] = 0.0802 +ij[15190] = 27.2 +id[15191] = "2959-07-06T21:08:38" +ik[15191] = 0.793 +il[15191] = 110 +im[15191] = 0.0657 +ij[15191] = 28.6 +id[15192] = "2959-08-31T16:14:52" +ik[15192] = 1.35 +il[15192] = -101 +im[15192] = 0.0806 +ij[15192] = 12 +id[15193] = "2959-11-15T04:52:47" +ik[15193] = 4.334 +il[15193] = -52 +im[15193] = 0.0916 +ij[15193] = 27.4 +id[15194] = "2959-11-17T06:50:24" +ik[15194] = 2.196 +il[15194] = -46 +im[15194] = 0.0911 +ij[15194] = 28.1 +id[15195] = "2959-12-21T03:06:20" +ik[15195] = 1.071 +il[15195] = 58 +im[15195] = 0.0462 +ij[15195] = 28.7 +id[15196] = "2960-01-09T09:39:54" +ik[15196] = 0.126 +il[15196] = 117 +im[15196] = 0.0313 +ij[15196] = 27.3 +id[15197] = "2960-01-27T10:49:14" +ik[15197] = 0.874 +il[15197] = 173 +im[15197] = 0.1103 +ij[15197] = 27.5 +id[15198] = "2960-01-28T12:33:28" +ik[15198] = 53.626 +il[15198] = 176 +im[15198] = 0.1213 +ij[15198] = 9 +id[15199] = "2960-03-04T02:02:41" +ik[15199] = 1.573 +il[15199] = -73 +im[15199] = 0.1141 +ij[15199] = 28.4 +id[15200] = "2960-03-13T11:12:54" +ik[15200] = 1.03 +il[15200] = -43 +im[15200] = 0.1421 +ij[15200] = 27.6 +id[15201] = "2960-04-13T15:59:10" +ik[15201] = 90 +il[15201] = 54 +im[15201] = 0.2093 +ij[15201] = 6 +id[15202] = "2960-04-19T22:26:49" +ik[15202] = 5.27 +il[15202] = 70 +im[15202] = 0.0581 +ij[15202] = 28.8 +id[15203] = "2960-04-27T13:32:20" +ik[15203] = 0.91 +il[15203] = 88 +im[15203] = 0.2438 +ij[15203] = 27.2 +id[15204] = "2960-05-29T23:35:23" +ik[15204] = 0 +il[15204] = 176 +im[15204] = 0.3319 +ij[15204] = 13 +id[15205] = "2960-06-04T01:14:26" +ik[15205] = 6.273 +il[15205] = -180 +im[15205] = 0.1319 +ij[15205] = 28.6 +id[15206] = "2960-06-21T10:50:52" +ik[15206] = 0.89 +il[15206] = -172 +im[15206] = 0.4839 +ij[15206] = 11 +id[15207] = "2960-06-23T01:07:09" +ik[15207] = 0.518 +il[15207] = -159 +im[15207] = 0.5181 +ij[15207] = 2 +id[15208] = "2960-07-13T01:16:01" +ik[15208] = 44.07 +il[15208] = -137 +im[15208] = 0.0617 +ij[15208] = 7.166 +id[15209] = "2960-08-16T02:38:49" +ik[15209] = 78.13 +il[15209] = -70 +im[15209] = 0.243 +ij[15209] = 14 +id[15210] = "2960-08-16T14:13:03" +ik[15210] = 3.127 +il[15210] = -69 +im[15210] = 0.2471 +ij[15210] = 28.6 +id[15211] = "2960-08-30T14:34:15" +ik[15211] = 90 +il[15211] = -32 +im[15211] = 0.2013 +ij[15211] = 5 +id[15212] = "2960-11-11T08:38:49" +ik[15212] = 54.132 +il[15212] = -170 +im[15212] = 0.0876 +ij[15212] = 8 +id[15213] = "2960-12-08T14:19:32" +ik[15213] = 0.351 +il[15213] = -85 +im[15213] = 0.0243 +ij[15213] = 28.5 +id[15214] = "2961-01-06T21:33:14" +ik[15214] = 4.452 +il[15214] = 7 +im[15214] = 0.0058 +ij[15214] = 27.1 +id[15215] = "2961-02-04T22:12:00" +ik[15215] = 0.212 +il[15215] = 97 +im[15215] = 0.0145 +ij[15215] = 28.7 +id[15216] = "2961-02-21T22:46:08" +ik[15216] = 0.803 +il[15216] = 150 +im[15216] = 0.025 +ij[15216] = 27.3 +id[15217] = "2961-03-02T07:17:02" +ik[15217] = 2.897 +il[15217] = 165 +im[15217] = 0.0802 +ij[15217] = 28.1 +id[15218] = "2961-04-13T07:27:50" +ik[15218] = 1.25 +il[15218] = -78 +im[15218] = 0.088 +ij[15218] = 12 +id[15219] = "2961-05-27T00:32:41" +ik[15219] = 1.697 +il[15219] = -128 +im[15219] = 0.0727 +ij[15219] = 28.8 +id[15220] = "2961-05-30T22:47:00" +ik[15220] = 4.682 +il[15220] = -116 +im[15220] = 0.0807 +ij[15220] = 27.2 +id[15221] = "2961-06-15T11:36:40" +ik[15221] = 0.729 +il[15221] = -67 +im[15221] = 0.0881 +ij[15221] = 28.1 +id[15222] = "2961-06-17T10:18:20" +ik[15222] = 0.075 +il[15222] = -61 +im[15222] = 0.0694 +ij[15222] = 27.9 +id[15223] = "2961-06-26T13:04:39" +ik[15223] = 1.453 +il[15223] = -33 +im[15223] = 0.084 +ij[15223] = 28.6 +id[15224] = "2961-08-29T21:19:44" +ik[15224] = 54.428 +il[15224] = 165 +im[15224] = 0.1113 +ij[15224] = 9 +id[15225] = "2961-10-20T13:02:07" +ik[15225] = 2.167 +il[15225] = -38 +im[15225] = 0.0657 +ij[15225] = 27.4 +id[15226] = "2961-11-06T05:53:13" +ik[15226] = 3.404 +il[15226] = 13 +im[15226] = 0.1092 +ij[15226] = 28.5 +id[15227] = "2961-11-15T10:13:19" +ik[15227] = 90 +il[15227] = 41 +im[15227] = 0.0934 +ij[15227] = 6 +id[15228] = "2961-12-16T02:49:46" +ik[15228] = 1.793 +il[15228] = 124 +im[15228] = 0.0663 +ij[15228] = 28.7 +id[15229] = "2962-01-05T02:39:16" +ik[15229] = 0 +il[15229] = 174 +im[15229] = 0.4057 +ij[15229] = 13 +id[15230] = "2962-01-20T21:30:55" +ik[15230] = 0.5599 +il[15230] = 173 +im[15230] = 0.5599 +ij[15230] = 2 +id[15231] = "2962-01-26T07:49:26" +ik[15231] = 6.01 +il[15231] = -172 +im[15231] = 0.138 +ij[15231] = 11 +id[15232] = "2962-02-17T01:41:51" +ik[15232] = 42.96 +il[15232] = -136 +im[15232] = 0.4591 +ij[15232] = 7.1555 +id[15233] = "2962-03-06T07:23:39" +ik[15233] = 6.013 +il[15233] = -105 +im[15233] = 0.1583 +ij[15233] = 28.7 +id[15234] = "2962-03-20T00:21:34" +ik[15234] = 73.9 +il[15234] = -74 +im[15234] = 0.2154 +ij[15234] = 14 +id[15235] = "2962-03-29T01:05:14" +ik[15235] = 4.518 +il[15235] = -53 +im[15235] = 0.2172 +ij[15235] = 27.3 +id[15236] = "2962-04-08T02:16:34" +ik[15236] = 90 +il[15236] = -26 +im[15236] = 0.0493 +ij[15236] = 5 +id[15237] = "2962-04-19T12:27:01" +ik[15237] = 1.086 +il[15237] = 9 +im[15237] = 0.1131 +ij[15237] = 27.5 +id[15238] = "2962-06-06T07:43:43" +ik[15238] = 4.19 +il[15238] = 157 +im[15238] = 0.0089 +ij[15238] = 27.6 +id[15239] = "2962-06-14T15:36:51" +ik[15239] = 1.068 +il[15239] = -177 +im[15239] = 0.1169 +ij[15239] = 28.4 +id[15240] = "2962-06-23T00:24:38" +ik[15240] = 54.374 +il[15240] = -152 +im[15240] = 0.0589 +ij[15240] = 8 +id[15241] = "2962-07-11T21:45:21" +ik[15241] = 0.084 +il[15241] = -94 +im[15241] = 0.0972 +ij[15241] = 28.8 +id[15242] = "2962-07-15T10:21:36" +ik[15242] = 6.008 +il[15242] = -84 +im[15242] = 0.0916 +ij[15242] = 27.2 +id[15243] = "2962-08-01T15:30:14" +ik[15243] = 0.194 +il[15243] = -31 +im[15243] = 0.0721 +ij[15243] = 27.91 +id[15244] = "2962-08-18T04:49:26" +ik[15244] = 0.008 +il[15244] = 19 +im[15244] = 0.0268 +ij[15244] = 28.6 +id[15245] = "2962-11-10T05:08:09" +ik[15245] = 0.87 +il[15245] = -102 +im[15245] = 0.0877 +ij[15245] = 12 +id[15246] = "2963-01-08T10:38:03" +ik[15246] = 0.738 +il[15246] = -106 +im[15246] = 0.0887 +ij[15246] = 28.5 +id[15247] = "2963-01-14T17:24:34" +ik[15247] = 0.707 +il[15247] = -87 +im[15247] = 0.0622 +ij[15247] = 28.7 +id[15248] = "2963-01-15T06:10:39" +ik[15248] = 1.789 +il[15248] = -85 +im[15248] = 0.0544 +ij[15248] = 28.1 +id[15249] = "2963-01-23T07:04:21" +ik[15249] = 0.18 +il[15249] = -61 +im[15249] = 0.0808 +ij[15249] = 27.3 +id[15250] = "2963-02-09T21:54:34" +ik[15250] = 0.88 +il[15250] = -6 +im[15250] = 0.0991 +ij[15250] = 27.5 +id[15251] = "2963-03-26T01:23:34" +ik[15251] = 2.16 +il[15251] = 131 +im[15251] = 0.1116 +ij[15251] = 27.6 +id[15252] = "2963-04-12T14:02:26" +ik[15252] = 54.206 +il[15252] = -174 +im[15252] = 0.1095 +ij[15252] = 9 +id[15253] = "2963-05-03T09:37:00" +ik[15253] = 3.341 +il[15253] = -109 +im[15253] = 0.0156 +ij[15253] = 28.8 +id[15254] = "2963-05-03T09:55:53" +ik[15254] = 3.104 +il[15254] = -109 +im[15254] = 0.0155 +ij[15254] = 27.2 +id[15255] = "2963-06-21T20:51:03" +ik[15255] = 90 +il[15255] = 44 +im[15255] = 0.1954 +ij[15255] = 6 +id[15256] = "2963-06-25T14:02:06" +ik[15256] = 1.247 +il[15256] = 54 +im[15256] = 0.2195 +ij[15256] = 28.6 +id[15257] = "2963-08-09T00:22:01" +ik[15257] = 0 +il[15257] = 179 +im[15257] = 0.3133 +ij[15257] = 13 +id[15258] = "2963-08-20T02:16:16" +ik[15258] = 0.4998 +il[15258] = -158 +im[15258] = 0.4999 +ij[15258] = 2 +id[15259] = "2963-08-31T00:27:21" +ik[15259] = 8.21 +il[15259] = -179 +im[15259] = 0.4349 +ij[15259] = 11 +id[15260] = "2963-09-21T23:24:36" +ik[15260] = 43.96 +il[15260] = -143 +im[15260] = 0.0423 +ij[15260] = 7.1645 +id[15261] = "2963-10-25T01:45:24" +ik[15261] = 77.06 +il[15261] = -77 +im[15261] = 0.2093 +ij[15261] = 14 +id[15262] = "2963-11-09T15:29:59" +ik[15262] = 90 +il[15262] = -38 +im[15262] = 0.2132 +ij[15262] = 5 +id[15263] = "2964-01-21T04:24:20" +ik[15263] = 3.642 +il[15263] = -174 +im[15263] = 0.0888 +ij[15263] = 27.1 +id[15264] = "2964-01-24T22:06:00" +ik[15264] = 53.736 +il[15264] = -162 +im[15264] = 0.1215 +ij[15264] = 8 +id[15265] = "2964-03-01T13:51:18" +ik[15265] = 0.42 +il[15265] = -47 +im[15265] = 0.0331 +ij[15265] = 28.7 +id[15266] = "2964-03-08T05:21:14" +ik[15266] = 1.242 +il[15266] = -27 +im[15266] = 0.0872 +ij[15266] = 27.3 +id[15267] = "2964-03-15T08:22:50" +ik[15267] = 0.18 +il[15267] = -5 +im[15267] = 0.0423 +ij[15267] = 28.5 +id[15268] = "2964-03-25T20:39:54" +ik[15268] = 0.482 +il[15268] = 28 +im[15268] = 0.1005 +ij[15268] = 27.5 +id[15269] = "2964-05-06T17:48:20" +ik[15269] = 0.552 +il[15269] = 156 +im[15269] = 0.0717 +ij[15269] = 28.1 +id[15270] = "2964-05-08T17:52:34" +ik[15270] = 3.46 +il[15270] = 162 +im[15270] = 0.0844 +ij[15270] = 27.6 +id[15271] = "2964-06-22T02:36:57" +ik[15271] = 0.16 +il[15271] = -85 +im[15271] = 0.0781 +ij[15271] = 12 +id[15272] = "2964-08-08T00:35:51" +ik[15272] = 0.206 +il[15272] = -122 +im[15272] = 0.092 +ij[15272] = 28.6 +id[15273] = "2964-08-25T08:14:55" +ik[15273] = 3.899 +il[15273] = -69 +im[15273] = 0.0765 +ij[15273] = 28.1 +id[15274] = "2964-10-31T04:39:27" +ik[15274] = 3.564 +il[15274] = 136 +im[15274] = 0.039 +ij[15274] = 27.4 +id[15275] = "2964-11-09T21:12:41" +ik[15275] = 53.802 +il[15275] = 164 +im[15275] = 0.0906 +ij[15275] = 9 +id[15276] = "2964-12-27T05:35:57" +ik[15276] = 1.359 +il[15276] = -50 +im[15276] = 0.0629 +ij[15276] = 28.7 +id[15277] = "2964-12-27T12:20:47" +ik[15277] = 0.439 +il[15277] = -49 +im[15277] = 0.0549 +ij[15277] = 27.3 +id[15278] = "2965-01-16T12:15:01" +ik[15278] = 0.392 +il[15278] = 13 +im[15278] = 0.1553 +ij[15278] = 27.5 +id[15279] = "2965-01-29T18:11:51" +ik[15279] = 90 +il[15279] = 55 +im[15279] = 0.0732 +ij[15279] = 6 +id[15280] = "2965-02-09T18:14:32" +ik[15280] = 2.46 +il[15280] = 84 +im[15280] = 0.0559 +ij[15280] = 28.5 +id[15281] = "2965-03-19T01:45:51" +ik[15281] = 0 +il[15281] = -173 +im[15281] = 0.455 +ij[15281] = 13 +id[15282] = "2965-04-10T02:08:09" +ik[15282] = 7.93 +il[15282] = -180 +im[15282] = 0.3158 +ij[15282] = 11 +id[15283] = "2965-04-14T07:39:44" +ik[15283] = 0.5449 +il[15283] = -156 +im[15283] = 0.545 +ij[15283] = 2 +id[15284] = "2965-05-01T01:49:26" +ik[15284] = 43 +il[15284] = -131 +im[15284] = 0.2849 +ij[15284] = 7.1616 +id[15285] = "2965-06-02T20:25:08" +ik[15285] = 75.78 +il[15285] = -66 +im[15285] = 0.0671 +ij[15285] = 14 +id[15286] = "2965-06-12T16:54:34" +ik[15286] = 4.44 +il[15286] = -43 +im[15286] = 0.1911 +ij[15286] = 27.6 +id[15287] = "2965-06-19T15:52:06" +ik[15287] = 90 +il[15287] = -22 +im[15287] = 0.1041 +ij[15287] = 5 +id[15288] = "2965-07-29T07:21:56" +ik[15288] = 0.818 +il[15288] = 99 +im[15288] = 0.0444 +ij[15288] = 28.8 +id[15289] = "2965-08-30T22:34:29" +ik[15289] = 54.5 +il[15289] = -162 +im[15289] = 0.0221 +ij[15289] = 8 +id[15290] = "2965-09-29T15:34:42" +ik[15290] = 0.705 +il[15290] = -71 +im[15290] = 0.0066 +ij[15290] = 28.6 +id[15291] = "2965-12-11T20:34:39" +ik[15291] = 1.061 +il[15291] = 157 +im[15291] = 0.0253 +ij[15291] = 28.1 +id[15292] = "2966-01-24T04:24:57" +ik[15292] = 0.9 +il[15292] = -90 +im[15292] = 0.0665 +ij[15292] = 12 +id[15293] = "2966-03-17T08:47:02" +ik[15293] = 3.418 +il[15293] = -117 +im[15293] = 0.0477 +ij[15293] = 28.1 +id[15294] = "2966-04-07T09:06:20" +ik[15294] = 0.612 +il[15294] = -52 +im[15294] = 0.0908 +ij[15294] = 28.5 +id[15295] = "2966-04-08T23:38:28" +ik[15295] = 2.73 +il[15295] = -47 +im[15295] = 0.0774 +ij[15295] = 27.6 +id[15296] = "2966-05-16T04:15:00" +ik[15296] = 4.049 +il[15296] = 70 +im[15296] = 0.0465 +ij[15296] = 27.2 +id[15297] = "2966-05-21T09:27:30" +ik[15297] = 2.509 +il[15297] = 86 +im[15297] = 0.0988 +ij[15297] = 28.8 +id[15298] = "2966-06-20T13:23:24" +ik[15298] = 54.642 +il[15298] = 180 +im[15298] = 0.1143 +ij[15298] = 9 +id[15299] = "2966-08-03T02:07:53" +ik[15299] = 1.186 +il[15299] = -47 +im[15299] = 0.1524 +ij[15299] = 28.6 +id[15300] = "2966-08-11T13:51:01" +ik[15300] = 1.898 +il[15300] = -22 +im[15300] = 0.0181 +ij[15300] = 28.4 +id[15301] = "2966-08-30T18:41:02" +ik[15301] = 90 +il[15301] = 37 +im[15301] = 0.158 +ij[15301] = 6 +id[15302] = "2966-10-19T20:25:35" +ik[15302] = 0 +il[15302] = -180 +im[15302] = 0.2897 +ij[15302] = 13 +id[15303] = "2966-11-11T06:39:05" +ik[15303] = 0.5609 +il[15303] = 172 +im[15303] = 0.5609 +ij[15303] = 2 +id[15304] = "2966-11-11T08:48:28" +ik[15304] = 5.37 +il[15304] = -178 +im[15304] = 0.5609 +ij[15304] = 11 +id[15305] = "2966-12-01T19:30:10" +ik[15305] = 42.96 +il[15305] = -143 +im[15305] = 0.0667 +ij[15305] = 7.1564 +id[15306] = "2967-01-02T14:23:55" +ik[15306] = 74.75 +il[15306] = -81 +im[15306] = 0.2207 +ij[15306] = 14 +id[15307] = "2967-01-21T01:35:53" +ik[15307] = 90 +il[15307] = -35 +im[15307] = 0.2092 +ij[15307] = 5 +id[15308] = "2967-01-30T08:34:06" +ik[15308] = 2.065 +il[15308] = -6 +im[15308] = 0.1049 +ij[15308] = 27.1 +id[15309] = "2967-03-22T04:33:14" +ik[15309] = 2.007 +il[15309] = 152 +im[15309] = 0.1238 +ij[15309] = 27.3 +id[15310] = "2967-03-26T12:02:52" +ik[15310] = 0.66 +il[15310] = 166 +im[15310] = 0.0531 +ij[15310] = 28.7 +id[15311] = "2967-04-09T08:27:54" +ik[15311] = 0.103 +il[15311] = -151 +im[15311] = 0.0948 +ij[15311] = 27.5 +id[15312] = "2967-04-10T01:32:18" +ik[15312] = 53.9 +il[15312] = -149 +im[15312] = 0.0817 +ij[15312] = 8 +id[15313] = "2967-05-24T01:02:28" +ik[15313] = 3.79 +il[15313] = -14 +im[15313] = 0.074 +ij[15313] = 27.6 +id[15314] = "2967-06-12T14:25:11" +ik[15314] = 0.143 +il[15314] = 47 +im[15314] = 0.0116 +ij[15314] = 28.5 +id[15315] = "2967-06-30T20:38:02" +ik[15315] = 5.339 +il[15315] = 101 +im[15315] = 0.0547 +ij[15315] = 27.2 +id[15316] = "2967-07-06T21:46:35" +ik[15316] = 0.974 +il[15316] = 120 +im[15316] = 0.0782 +ij[15316] = 28.8 +id[15317] = "2967-07-18T11:46:01" +ik[15317] = 2.772 +il[15317] = 155 +im[15317] = 0.0883 +ij[15317] = 28.1 +id[15318] = "2967-08-29T09:41:45" +ik[15318] = 1.33 +il[15318] = -98 +im[15318] = 0.0443 +ij[15318] = 12 +id[15319] = "2967-10-28T16:05:31" +ik[15319] = 2.592 +il[15319] = -95 +im[15319] = 0.0558 +ij[15319] = 28.1 +id[15320] = "2967-11-14T18:23:00" +ik[15320] = 4.323 +il[15320] = -43 +im[15320] = 0.0735 +ij[15320] = 27.4 +id[15321] = "2968-01-09T00:04:20" +ik[15321] = 0.13 +il[15321] = 126 +im[15321] = 0.0162 +ij[15321] = 27.3 +id[15322] = "2968-01-19T20:19:32" +ik[15322] = 0.851 +il[15322] = 159 +im[15322] = 0.0865 +ij[15322] = 28.7 +id[15323] = "2968-01-25T23:24:19" +ik[15323] = 53.616 +il[15323] = 178 +im[15323] = 0.0519 +ij[15323] = 9 +id[15324] = "2968-01-27T01:48:20" +ik[15324] = 0.865 +il[15324] = -178 +im[15324] = 0.0756 +ij[15324] = 27.5 +id[15325] = "2968-03-13T05:07:25" +ik[15325] = 0.96 +il[15325] = -34 +im[15325] = 0.1198 +ij[15325] = 27.6 +id[15326] = "2968-04-11T08:41:20" +ik[15326] = 90 +il[15326] = 57 +im[15326] = 0.1485 +ij[15326] = 6 +id[15327] = "2968-04-28T01:43:26" +ik[15327] = 0.782 +il[15327] = 97 +im[15327] = 0.222 +ij[15327] = 27.2 +id[15328] = "2968-05-15T08:12:46" +ik[15328] = 5.682 +il[15328] = 139 +im[15328] = 0.341 +ij[15328] = 28.8 +id[15329] = "2968-05-27T14:24:22" +ik[15329] = 0 +il[15329] = 165 +im[15329] = 0.3864 +ij[15329] = 13 +id[15330] = "2968-06-08T20:20:24" +ik[15330] = 2.475 +il[15330] = -169 +im[15330] = 0.4601 +ij[15330] = 28.5 +id[15331] = "2968-06-10T16:35:56" +ik[15331] = 0.5071 +il[15331] = -175 +im[15331] = 0.5072 +ij[15331] = 2 +id[15332] = "2968-06-13T23:46:45" +ik[15332] = 2.125 +il[15332] = -176 +im[15332] = 0.3701 +ij[15332] = 28.8 +id[15333] = "2968-06-19T03:56:09" +ik[15333] = 0.56 +il[15333] = -162 +im[15333] = 0.1945 +ij[15333] = 11 +id[15334] = "2968-07-10T17:44:06" +ik[15334] = 44.14 +il[15334] = -134 +im[15334] = 0.2711 +ij[15334] = 7.1659 +id[15335] = "2968-08-04T07:01:03" +ik[15335] = 3.88 +il[15335] = -88 +im[15335] = 0.2838 +ij[15335] = 28.5 +id[15336] = "2968-08-06T16:38:21" +ik[15336] = 3.19 +il[15336] = -83 +im[15336] = 0.2296 +ij[15336] = 28.8 +id[15337] = "2968-08-13T18:33:50" +ik[15337] = 78.17 +il[15337] = -67 +im[15337] = 0.1134 +ij[15337] = 14 +id[15338] = "2968-08-28T07:16:26" +ik[15338] = 90 +il[15338] = -29 +im[15338] = 0.1094 +ij[15338] = 5 +id[15339] = "2968-11-08T23:27:54" +ik[15339] = 54.15 +il[15339] = -167 +im[15339] = 0.0076 +ij[15339] = 8 +id[15340] = "2968-11-11T21:31:14" +ik[15340] = 0.845 +il[15340] = -158 +im[15340] = 0.0681 +ij[15340] = 28.6 +id[15341] = "2968-12-20T13:11:34" +ik[15341] = 0.937 +il[15341] = -38 +im[15341] = 0.056 +ij[15341] = 28.4 +id[15342] = "2969-01-06T11:06:59" +ik[15342] = 4.469 +il[15342] = 15 +im[15342] = 0.0331 +ij[15342] = 27.1 +id[15343] = "2969-02-09T02:57:07" +ik[15343] = 2.887 +il[15343] = 120 +im[15343] = 0.0424 +ij[15343] = 28.1 +id[15344] = "2969-02-21T12:03:27" +ik[15344] = 0.798 +il[15344] = 159 +im[15344] = 0.0173 +ij[15344] = 27.3 +id[15345] = "2969-03-06T06:32:06" +ik[15345] = 0.416 +il[15345] = -173 +im[15345] = 0.0477 +ij[15345] = 28.7 +id[15346] = "2969-04-10T20:31:12" +ik[15346] = 1.28 +il[15346] = -75 +im[15346] = 0.0479 +ij[15346] = 12 +id[15347] = "2969-05-22T21:30:40" +ik[15347] = 0.55 +il[15347] = -131 +im[15347] = 0.0185 +ij[15347] = 28.1 +id[15348] = "2969-05-30T11:58:06" +ik[15348] = 4.672 +il[15348] = -107 +im[15348] = 0.087 +ij[15348] = 27.2 +id[15349] = "2969-06-09T17:36:57" +ik[15349] = 1.969 +il[15349] = -75 +im[15349] = 0.0359 +ij[15349] = 28.8 +id[15350] = "2969-06-16T23:27:18" +ik[15350] = 0.093 +il[15350] = -53 +im[15350] = 0.0871 +ij[15350] = 27.9 +id[15351] = "2969-07-07T19:52:53" +ik[15351] = 0.854 +il[15351] = 12 +im[15351] = 0.0046 +ij[15351] = 28.5 +id[15352] = "2969-08-27T13:55:28" +ik[15352] = 54.446 +il[15352] = 168 +im[15352] = 0.1177 +ij[15352] = 9 +id[15353] = "2969-09-14T23:22:50" +ik[15353] = 2.681 +il[15353] = -136 +im[15353] = 0.1176 +ij[15353] = 28.6 +id[15354] = "2969-10-20T08:29:13" +ik[15354] = 2.104 +il[15354] = -29 +im[15354] = 0.0123 +ij[15354] = 27.4 +id[15355] = "2969-11-12T21:41:29" +ik[15355] = 90 +il[15355] = 44 +im[15355] = 0.2081 +ij[15355] = 6 +id[15356] = "2970-01-02T18:34:18" +ik[15356] = 0 +il[15356] = -171 +im[15356] = 0.1514 +ij[15356] = 13 +id[15357] = "2970-01-21T21:44:59" +ik[15357] = 0.5572 +il[15357] = 178 +im[15357] = 0.5573 +ij[15357] = 2 +id[15358] = "2970-01-23T20:28:19" +ik[15358] = 5.71 +il[15358] = -170 +im[15358] = 0.4982 +ij[15358] = 11 +id[15359] = "2970-02-13T17:36:52" +ik[15359] = 41.96 +il[15359] = -135 +im[15359] = 0.3249 +ij[15359] = 7.1555 +id[15360] = "2970-03-17T11:54:39" +ik[15360] = 73.72 +il[15360] = -72 +im[15360] = 0.277 +ij[15360] = 14 +id[15361] = "2970-03-29T05:43:53" +ik[15361] = 4.339 +il[15361] = -44 +im[15361] = 0.1865 +ij[15361] = 27.3 +id[15362] = "2970-04-05T14:48:25" +ik[15362] = 90 +il[15362] = -24 +im[15362] = 0.1298 +ij[15362] = 5 +id[15363] = "2970-04-16T13:16:53" +ik[15363] = 1.237 +il[15363] = 10 +im[15363] = 0.1897 +ij[15363] = 28.7 +id[15364] = "2970-04-19T09:22:33" +ik[15364] = 1.01 +il[15364] = 19 +im[15364] = 0.1485 +ij[15364] = 27.5 +id[15365] = "2970-06-05T23:21:23" +ik[15365] = 4.18 +il[15365] = 166 +im[15365] = 0.0513 +ij[15365] = 27.6 +id[15366] = "2970-06-20T16:49:43" +ik[15366] = 54.362 +il[15366] = -149 +im[15366] = 0.0321 +ij[15366] = 8 +id[15367] = "2970-07-15T00:19:48" +ik[15367] = 5.982 +il[15367] = -75 +im[15367] = 0.1004 +ij[15367] = 27.2 +id[15368] = "2970-07-26T00:10:39" +ik[15368] = 0.385 +il[15368] = -42 +im[15368] = 0.0732 +ij[15368] = 28.8 +id[15369] = "2970-08-01T04:59:31" +ik[15369] = 0.17 +il[15369] = -23 +im[15369] = 0.0958 +ij[15369] = 27.91 +id[15370] = "2970-09-16T08:51:38" +ik[15370] = 0.016 +il[15370] = 119 +im[15370] = 0.0671 +ij[15370] = 28.5 +id[15371] = "2970-09-23T03:36:25" +ik[15371] = 2.376 +il[15371] = 140 +im[15371] = 0.0408 +ij[15371] = 28.1 +id[15372] = "2970-11-07T19:04:48" +ik[15372] = 0.91 +il[15372] = -100 +im[15372] = 0.055 +ij[15372] = 12 +id[15373] = "2970-12-26T18:48:57" +ik[15373] = 0.945 +il[15373] = -135 +im[15373] = 0.0843 +ij[15373] = 28.1 +id[15374] = "2971-01-04T19:38:47" +ik[15374] = 0.705 +il[15374] = -107 +im[15374] = 0.0156 +ij[15374] = 28.4 +id[15375] = "2971-01-22T20:32:20" +ik[15375] = 0.177 +il[15375] = -52 +im[15375] = 0.061 +ij[15375] = 27.3 +id[15376] = "2971-02-09T11:32:20" +ik[15376] = 0.877 +il[15376] = 2 +im[15376] = 0.09 +ij[15376] = 27.5 +id[15377] = "2971-02-13T00:32:22" +ik[15377] = 0.808 +il[15377] = 13 +im[15377] = 0.0918 +ij[15377] = 28.7 +id[15378] = "2971-03-25T15:39:20" +ik[15378] = 2.14 +il[15378] = 140 +im[15378] = 0.1032 +ij[15378] = 27.6 +id[15379] = "2971-04-10T05:02:11" +ik[15379] = 54.183 +il[15379] = -171 +im[15379] = 0.0992 +ij[15379] = 9 +id[15380] = "2971-05-03T02:00:19" +ik[15380] = 3.07 +il[15380] = -100 +im[15380] = 0.0606 +ij[15380] = 27.2 +id[15381] = "2971-05-18T09:37:17" +ik[15381] = 3.594 +il[15381] = -52 +im[15381] = 0.0271 +ij[15381] = 28.8 +id[15382] = "2971-06-19T14:26:19" +ik[15382] = 90 +il[15382] = 47 +im[15382] = 0.0676 +ij[15382] = 6 +id[15383] = "2971-08-06T11:55:06" +ik[15383] = 0 +il[15383] = -177 +im[15383] = 0.3954 +ij[15383] = 13 +id[15384] = "2971-08-21T08:00:55" +ik[15384] = 0.5076 +il[15384] = 167 +im[15384] = 0.5077 +ij[15384] = 2 +id[15385] = "2971-08-28T15:44:38" +ik[15385] = 8.09 +il[15385] = -172 +im[15385] = 0.1521 +ij[15385] = 11 +id[15386] = "2971-09-19T12:00:41" +ik[15386] = 44 +il[15386] = -140 +im[15386] = 0.3557 +ij[15386] = 7.1646 +id[15387] = "2971-10-22T19:00:27" +ik[15387] = 77.3 +il[15387] = -74 +im[15387] = 0.0477 +ij[15387] = 14 +id[15388] = "2971-11-07T06:43:42" +ik[15388] = 90 +il[15388] = -35 +im[15388] = 0.0952 +ij[15388] = 5 +id[15389] = "2971-11-22T09:50:24" +ik[15389] = 0.052 +il[15389] = 11 +im[15389] = 0.0794 +ij[15389] = 28.5 +id[15390] = "2971-12-27T03:00:46" +ik[15390] = 0.108 +il[15390] = 118 +im[15390] = 0.1415 +ij[15390] = 28.6 +id[15391] = "2972-01-20T19:22:32" +ik[15391] = 3.672 +il[15391] = -165 +im[15391] = 0.0511 +ij[15391] = 27.1 +id[15392] = "2972-01-22T09:53:45" +ik[15392] = 53.742 +il[15392] = -160 +im[15392] = 0.0849 +ij[15392] = 8 +id[15393] = "2972-03-07T19:10:06" +ik[15393] = 1.23 +il[15393] = -18 +im[15393] = 0.0606 +ij[15393] = 27.3 +id[15394] = "2972-03-25T10:14:06" +ik[15394] = 0.487 +il[15394] = 36 +im[15394] = 0.0947 +ij[15394] = 27.5 +id[15395] = "2972-03-31T16:59:05" +ik[15395] = 0.453 +il[15395] = 56 +im[15395] = 0.0604 +ij[15395] = 28.7 +id[15396] = "2972-04-13T13:22:39" +ik[15396] = 1.475 +il[15396] = 95 +im[15396] = 0.073 +ij[15396] = 28.1 +id[15397] = "2972-05-08T07:02:19" +ik[15397] = 3.45 +il[15397] = 171 +im[15397] = 0.0742 +ij[15397] = 27.6 +id[15398] = "2972-06-19T20:51:21" +ik[15398] = 0.11 +il[15398] = -81 +im[15398] = 0.0302 +ij[15398] = 12 +id[15399] = "2972-08-02T04:49:17" +ik[15399] = 3.189 +il[15399] = -130 +im[15399] = 0.0128 +ij[15399] = 28.1 +id[15400] = "2972-10-19T11:49:03" +ik[15400] = 1.446 +il[15400] = 110 +im[15400] = 0.0727 +ij[15400] = 28.5 +id[15401] = "2972-10-30T14:15:12" +ik[15401] = 2.901 +il[15401] = 143 +im[15401] = 0.0199 +ij[15401] = 28.6 +id[15402] = "2972-10-30T19:20:46" +ik[15402] = 3.541 +il[15402] = 143 +im[15402] = 0.0154 +ij[15402] = 27.4 +id[15403] = "2972-11-07T09:36:00" +ik[15403] = 53.822 +il[15403] = 167 +im[15403] = 0.1153 +ij[15403] = 9 +id[15404] = "2972-12-27T06:34:06" +ik[15404] = 0.438 +il[15404] = -40 +im[15404] = 0.1114 +ij[15404] = 27.3 +id[15405] = "2973-01-13T21:06:02" +ik[15405] = 1.27 +il[15405] = 15 +im[15405] = 0.0097 +ij[15405] = 28.4 +id[15406] = "2973-01-16T10:21:13" +ik[15406] = 0.338 +il[15406] = 23 +im[15406] = 0.1072 +ij[15406] = 27.5 +id[15407] = "2973-01-27T06:50:47" +ik[15407] = 90 +il[15407] = 57 +im[15407] = 0.105 +ij[15407] = 6 +id[15408] = "2973-01-30T21:53:08" +ik[15408] = 1.108 +il[15408] = 68 +im[15408] = 0.0637 +ij[15408] = 28.7 +id[15409] = "2973-03-15T19:00:54" +ik[15409] = 0 +il[15409] = -167 +im[15409] = 0.2476 +ij[15409] = 13 +id[15410] = "2973-04-07T16:23:31" +ik[15410] = 8.09 +il[15410] = -163 +im[15410] = 0.149 +ij[15410] = 11 +id[15411] = "2973-04-15T15:14:03" +ik[15411] = 0.5321 +il[15411] = -144 +im[15411] = 0.5321 +ij[15411] = 2 +id[15412] = "2973-04-28T05:37:40" +ik[15412] = 43.44 +il[15412] = -129 +im[15412] = 0.4071 +ij[15412] = 7.1611 +id[15413] = "2973-05-31T08:13:23" +ik[15413] = 76.55 +il[15413] = -64 +im[15413] = 0.1381 +ij[15413] = 14 +id[15414] = "2973-06-12T21:35:13" +ik[15414] = 4.46 +il[15414] = -32 +im[15414] = 0.2156 +ij[15414] = 27.6 +id[15415] = "2973-06-17T07:20:52" +ik[15415] = 90 +il[15415] = -19 +im[15415] = 0.0659 +ij[15415] = 5 +id[15416] = "2973-08-13T06:11:22" +ik[15416] = 0.407 +il[15416] = 155 +im[15416] = 0.093 +ij[15416] = 28.8 +id[15417] = "2973-08-28T15:35:07" +ik[15417] = 54.504 +il[15417] = -159 +im[15417] = 0.0726 +ij[15417] = 8 +id[15418] = "2973-11-22T03:47:57" +ik[15418] = 0.464 +il[15418] = 105 +im[15418] = 0.094 +ij[15418] = 28.1 +id[15419] = "2974-01-21T14:35:31" +ik[15419] = 0.85 +il[15419] = -88 +im[15419] = 0.0852 +ij[15419] = 12 +id[15420] = "2974-03-10T21:37:52" +ik[15420] = 0.511 +il[15420] = -128 +im[15420] = 0.0795 +ij[15420] = 28.7 +id[15421] = "2974-04-08T13:01:11" +ik[15421] = 2.71 +il[15421] = -38 +im[15421] = 0.095 +ij[15421] = 27.6 +id[15422] = "2974-05-15T18:05:12" +ik[15422] = 4.033 +il[15422] = 78 +im[15422] = 0.0109 +ij[15422] = 27.2 +id[15423] = "2974-06-04T11:51:21" +ik[15423] = 2.641 +il[15423] = 140 +im[15423] = 0.099 +ij[15423] = 28.8 +id[15424] = "2974-06-18T07:28:02" +ik[15424] = 54.636 +il[15424] = -177 +im[15424] = 0.0942 +ij[15424] = 9 +id[15425] = "2974-08-28T09:09:39" +ik[15425] = 90 +il[15425] = 39 +im[15425] = 0.0073 +ij[15425] = 6 +id[15426] = "2974-10-17T08:13:50" +ik[15426] = 0 +il[15426] = -179 +im[15426] = 0.4508 +ij[15426] = 13 +id[15427] = "2974-11-08T22:23:31" +ik[15427] = 5.67 +il[15427] = 179 +im[15427] = 0.3864 +ij[15427] = 11 +id[15428] = "2974-11-12T11:08:26" +ik[15428] = 0.5634 +il[15428] = -161 +im[15428] = 0.5634 +ij[15428] = 2 +id[15429] = "2974-11-29T08:30:32" +ik[15429] = 43.01 +il[15429] = -141 +im[15429] = 0.293 +ij[15429] = 7.1568 +id[15430] = "2974-12-31T05:26:17" +ik[15430] = 74.88 +il[15430] = -78 +im[15430] = 0.0476 +ij[15430] = 14 +id[15431] = "2975-01-18T14:33:24" +ik[15431] = 90 +il[15431] = -33 +im[15431] = 0.1393 +ij[15431] = 5 +id[15432] = "2975-01-30T06:35:52" +ik[15432] = 2.142 +il[15432] = 3 +im[15432] = 0.0502 +ij[15432] = 27.1 +id[15433] = "2975-02-09T20:35:13" +ik[15433] = 1.543 +il[15433] = 36 +im[15433] = 0.1438 +ij[15433] = 28.6 +id[15434] = "2975-03-04T13:23:05" +ik[15434] = 1.427 +il[15434] = 107 +im[15434] = 0.1129 +ij[15434] = 28.5 +id[15435] = "2975-03-21T20:10:59" +ik[15435] = 1.977 +il[15435] = 161 +im[15435] = 0.1238 +ij[15435] = 27.3 +id[15436] = "2975-04-07T14:24:03" +ik[15436] = 53.886 +il[15436] = -147 +im[15436] = 0.121 +ij[15436] = 8 +id[15437] = "2975-04-08T23:16:19" +ik[15437] = 0.118 +il[15437] = -142 +im[15437] = 0.1143 +ij[15437] = 27.5 +id[15438] = "2975-04-19T18:40:19" +ik[15438] = 0.539 +il[15438] = -109 +im[15438] = 0.1008 +ij[15438] = 28.4 +id[15439] = "2975-04-26T19:50:35" +ik[15439] = 0.628 +il[15439] = -87 +im[15439] = 0.0612 +ij[15439] = 28.7 +id[15440] = "2975-05-23T14:49:06" +ik[15440] = 3.78 +il[15440] = -5 +im[15440] = 0.0975 +ij[15440] = 27.6 +id[15441] = "2975-06-24T11:46:53" +ik[15441] = 2.187 +il[15441] = 92 +im[15441] = 0.0785 +ij[15441] = 28.1 +id[15442] = "2975-06-30T09:44:15" +ik[15442] = 5.32 +il[15442] = 110 +im[15442] = 0.0212 +ij[15442] = 27.2 +id[15443] = "2975-07-20T09:11:05" +ik[15443] = 1.106 +il[15443] = 171 +im[15443] = 0.0884 +ij[15443] = 28.8 +id[15444] = "2975-08-27T03:14:24" +ik[15444] = 1.31 +il[15444] = -95 +im[15444] = 0.0224 +ij[15444] = 12 +id[15445] = "2975-10-07T16:59:31" +ik[15445] = 3.011 +il[15445] = -149 +im[15445] = 0.0725 +ij[15445] = 28.1 +id[15446] = "2975-11-14T07:53:39" +ik[15446] = 4.311 +il[15446] = -34 +im[15446] = 0.0438 +ij[15446] = 27.4 +id[15447] = "2975-12-17T17:19:49" +ik[15447] = 1.831 +il[15447] = 67 +im[15447] = 0.0937 +ij[15447] = 28.6 +id[15448] = "2976-01-08T14:27:52" +ik[15448] = 0.133 +il[15448] = 134 +im[15448] = 0.0585 +ij[15448] = 27.3 +id[15449] = "2976-01-23T10:11:37" +ik[15449] = 53.607 +il[15449] = 180 +im[15449] = 0.0523 +ij[15449] = 9 +id[15450] = "2976-01-25T00:56:44" +ik[15450] = 0.418 +il[15450] = -175 +im[15450] = 0.016 +ij[15450] = 28.5 +id[15451] = "2976-01-26T16:50:59" +ik[15451] = 0.856 +il[15451] = -169 +im[15451] = 0.0266 +ij[15451] = 27.5 +id[15452] = "2976-02-20T06:35:16" +ik[15452] = 0.408 +il[15452] = -93 +im[15452] = 0.1139 +ij[15452] = 28.7 +id[15453] = "2976-03-12T23:25:59" +ik[15453] = 0.89 +il[15453] = -25 +im[15453] = 0.0811 +ij[15453] = 27.6 +id[15454] = "2976-04-09T01:21:45" +ik[15454] = 90 +il[15454] = 60 +im[15454] = 0.0091 +ij[15454] = 6 +id[15455] = "2976-04-28T17:23:25" +ik[15455] = 0.646 +il[15455] = 109 +im[15455] = 0.1997 +ij[15455] = 27.2 +id[15456] = "2976-05-25T05:26:44" +ik[15456] = 0 +il[15456] = 179 +im[15456] = 0.1811 +ij[15456] = 13 +id[15457] = "2976-06-11T21:22:44" +ik[15457] = 0.5277 +il[15457] = 179 +im[15457] = 0.5278 +ij[15457] = 2 +id[15458] = "2976-06-16T21:00:00" +ik[15458] = 0.23 +il[15458] = -167 +im[15458] = 0.2209 +ij[15458] = 11 +id[15459] = "2976-06-19T07:14:54" +ik[15459] = 5.92 +il[15459] = -153 +im[15459] = 0.0819 +ij[15459] = 27.2 +id[15460] = "2976-07-08T10:35:19" +ik[15460] = 44.21 +il[15460] = -131 +im[15460] = 0.4285 +ij[15460] = 7.1658 +id[15461] = "2976-08-11T10:13:03" +ik[15461] = 78.2 +il[15461] = -64 +im[15461] = 0.1013 +ij[15461] = 14 +id[15462] = "2976-08-25T23:56:50" +ik[15462] = 90 +il[15462] = -26 +im[15462] = 0.0548 +ij[15462] = 5 +id[15463] = "2976-08-27T14:02:35" +ik[15463] = 2.226 +il[15463] = -21 +im[15463] = 0.0271 +ij[15463] = 28.8 +id[15464] = "2976-11-06T14:16:59" +ik[15464] = 54.166 +il[15464] = -164 +im[15464] = 0.0927 +ij[15464] = 8 +id[15465] = "2977-01-06T00:36:45" +ik[15465] = 4.486 +il[15465] = 24 +im[15465] = 0.0649 +ij[15465] = 27.1 +id[15466] = "2977-01-20T05:44:09" +ik[15466] = 2.684 +il[15466] = 68 +im[15466] = 0.0755 +ij[15466] = 28.1 +id[15467] = "2977-02-08T01:04:30" +ik[15467] = 0.25 +il[15467] = 127 +im[15467] = 0.0057 +ij[15467] = 28.6 +id[15468] = "2977-02-21T01:19:52" +ik[15468] = 0.793 +il[15468] = 167 +im[15468] = 0.0541 +ij[15468] = 27.3 +id[15469] = "2977-04-08T09:20:09" +ik[15469] = 1.31 +il[15469] = -74 +im[15469] = 0.0246 +ij[15469] = 12 +id[15470] = "2977-05-30T01:06:32" +ik[15470] = 4.662 +il[15470] = -99 +im[15470] = 0.0787 +ij[15470] = 27.2 +id[15471] = "2977-06-16T12:43:20" +ik[15471] = 0.11 +il[15471] = -44 +im[15471] = 0.0884 +ij[15471] = 27.9 +id[15472] = "2977-06-23T13:17:11" +ik[15472] = 2.044 +il[15472] = -22 +im[15472] = 0.0104 +ij[15472] = 28.8 +id[15473] = "2977-08-25T06:34:46" +ik[15473] = 54.463 +il[15473] = 171 +im[15473] = 0.0543 +ij[15473] = 9 +id[15474] = "2977-10-20T04:17:12" +ik[15474] = 2.037 +il[15474] = -19 +im[15474] = 0.0716 +ij[15474] = 27.4 +id[15475] = "2977-11-10T09:11:26" +ik[15475] = 90 +il[15475] = 46 +im[15475] = 0.1794 +ij[15475] = 6 +id[15476] = "2977-12-31T10:13:30" +ik[15476] = 0 +il[15476] = -168 +im[15476] = 0.2191 +ij[15476] = 13 +id[15477] = "2978-01-21T09:08:38" +ik[15477] = 5.39 +il[15477] = -168 +im[15477] = 0.5056 +ij[15477] = 11 +id[15478] = "2978-01-22T23:23:27" +ik[15478] = 0.546 +il[15478] = -154 +im[15478] = 0.5461 +ij[15478] = 2 +id[15479] = "2978-02-11T10:19:04" +ik[15479] = 42 +il[15479] = -132 +im[15479] = 0.061 +ij[15479] = 7.1553 +id[15480] = "2978-03-14T23:40:51" +ik[15480] = 73.56 +il[15480] = -70 +im[15480] = 0.1533 +ij[15480] = 14 +id[15481] = "2978-03-24T05:38:24" +ik[15481] = 3.496 +il[15481] = -48 +im[15481] = 0.1139 +ij[15481] = 28.6 +id[15482] = "2978-03-29T09:00:19" +ik[15482] = 4.177 +il[15482] = -36 +im[15482] = 0.1402 +ij[15482] = 27.3 +id[15483] = "2978-04-03T03:11:26" +ik[15483] = 90 +il[15483] = -22 +im[15483] = 0.2204 +ij[15483] = 5 +id[15484] = "2978-04-19T05:49:39" +ik[15484] = 0.939 +il[15484] = 28 +im[15484] = 0.1668 +ij[15484] = 27.5 +id[15485] = "2978-05-20T17:55:14" +ik[15485] = 0.98 +il[15485] = 126 +im[15485] = 0.1013 +ij[15485] = 28.7 +id[15486] = "2978-06-02T08:23:51" +ik[15486] = 0.498 +il[15486] = 165 +im[15486] = 0.1353 +ij[15486] = 28.5 +id[15487] = "2978-06-05T14:59:51" +ik[15487] = 4.16 +il[15487] = 175 +im[15487] = 0.0969 +ij[15487] = 27.6 +id[15488] = "2978-06-18T09:07:41" +ik[15488] = 54.349 +il[15488] = -146 +im[15488] = 0.1019 +ij[15488] = 8 +id[15489] = "2978-07-14T14:18:28" +ik[15489] = 5.957 +il[15489] = -66 +im[15489] = 0.0935 +ij[15489] = 27.2 +id[15490] = "2978-07-31T18:40:19" +ik[15490] = 0.147 +il[15490] = -14 +im[15490] = 0.1007 +ij[15490] = 27.91 +id[15491] = "2978-08-09T00:01:52" +ik[15491] = 0.631 +il[15491] = 11 +im[15491] = 0.0154 +ij[15491] = 28.8 +id[15492] = "2978-09-03T08:29:11" +ik[15492] = 2.573 +il[15492] = 88 +im[15492] = 0.0673 +ij[15492] = 28.1 +id[15493] = "2978-09-20T03:02:35" +ik[15493] = 0.846 +il[15493] = 140 +im[15493] = 0.0426 +ij[15493] = 28.1 +id[15494] = "2978-11-05T09:10:04" +ik[15494] = 0.96 +il[15494] = -97 +im[15494] = 0.0157 +ij[15494] = 12 +id[15495] = "2979-01-22T10:02:59" +ik[15495] = 0.175 +il[15495] = -44 +im[15495] = 0.0313 +ij[15495] = 27.3 +id[15496] = "2979-02-02T20:04:59" +ik[15496] = 0.149 +il[15496] = -8 +im[15496] = 0.0458 +ij[15496] = 28.6 +id[15497] = "2979-02-09T01:10:06" +ik[15497] = 0.874 +il[15497] = 11 +im[15497] = 0.0649 +ij[15497] = 27.5 +id[15498] = "2979-03-16T06:21:44" +ik[15498] = 0.221 +il[15498] = 121 +im[15498] = 0.0997 +ij[15498] = 28.7 +id[15499] = "2979-03-25T06:00:45" +ik[15499] = 2.11 +il[15499] = 149 +im[15499] = 0.0754 +ij[15499] = 27.6 +id[15500] = "2979-04-07T19:47:42" +ik[15500] = 54.161 +il[15500] = -169 +im[15500] = 0.0232 +ij[15500] = 9 +id[15501] = "2979-04-22T16:15:27" +ik[15501] = 2.106 +il[15501] = -122 +im[15501] = 0.0472 +ij[15501] = 28.5 +id[15502] = "2979-05-02T18:11:51" +ik[15502] = 3.034 +il[15502] = -91 +im[15502] = 0.1053 +ij[15502] = 27.2 +id[15503] = "2979-05-09T21:08:12" +ik[15503] = 0.653 +il[15503] = -69 +im[15503] = 0.0901 +ij[15503] = 28.4 +id[15504] = "2979-06-03T07:39:30" +ik[15504] = 3.374 +il[15504] = 7 +im[15504] = 0.0789 +ij[15504] = 28.8 +id[15505] = "2979-06-17T08:03:20" +ik[15505] = 90 +il[15505] = 50 +im[15505] = 0.102 +ij[15505] = 6 +id[15506] = "2979-08-03T23:41:18" +ik[15506] = 0 +il[15506] = -175 +im[15506] = 0.1993 +ij[15506] = 13 +id[15507] = "2979-08-22T10:36:09" +ik[15507] = 0.5075 +il[15507] = 173 +im[15507] = 0.5075 +ij[15507] = 2 +id[15508] = "2979-08-26T07:10:33" +ik[15508] = 7.97 +il[15508] = -173 +im[15508] = 0.2944 +ij[15508] = 11 +id[15509] = "2979-09-17T02:51:54" +ik[15509] = 44.13 +il[15509] = -137 +im[15509] = 0.4271 +ij[15509] = 7.1648 +id[15510] = "2979-10-20T12:09:49" +ik[15510] = 77.52 +il[15510] = -72 +im[15510] = 0.1549 +ij[15510] = 14 +id[15511] = "2979-11-04T22:02:44" +ik[15511] = 90 +il[15511] = -33 +im[15511] = 0.0837 +ij[15511] = 5 +id[15512] = "2980-01-19T21:45:03" +ik[15512] = 53.749 +il[15512] = -158 +im[15512] = 0.0093 +ij[15512] = 8 +id[15513] = "2980-01-20T10:17:11" +ik[15513] = 3.7 +il[15513] = -156 +im[15513] = 0.0042 +ij[15513] = 27.1 +id[15514] = "2980-03-07T08:58:32" +ik[15514] = 1.219 +il[15514] = -9 +im[15514] = 0.0249 +ij[15514] = 27.3 +id[15515] = "2980-03-23T01:54:28" +ik[15515] = 2.049 +il[15515] = 39 +im[15515] = 0.0435 +ij[15515] = 28.1 +id[15516] = "2980-03-24T23:44:45" +ik[15516] = 0.492 +il[15516] = 45 +im[15516] = 0.0713 +ij[15516] = 27.5 +id[15517] = "2980-03-27T02:10:45" +ik[15517] = 0.613 +il[15517] = 51 +im[15517] = 0.0912 +ij[15517] = 28.6 +id[15518] = "2980-05-01T11:34:30" +ik[15518] = 0.72 +il[15518] = 160 +im[15518] = 0.0645 +ij[15518] = 28.7 +id[15519] = "2980-05-07T09:13:49" +ik[15519] = 1.003 +il[15519] = 178 +im[15519] = 0.0424 +ij[15519] = 28.1 +id[15520] = "2980-05-07T20:09:41" +ik[15520] = 3.44 +il[15520] = 179 +im[15520] = 0.0499 +ij[15520] = 27.6 +id[15521] = "2980-06-17T15:01:26" +ik[15521] = 0.05 +il[15521] = -79 +im[15521] = 0.0375 +ij[15521] = 12 +id[15522] = "2980-10-30T10:05:11" +ik[15522] = 3.518 +il[15522] = 152 +im[15522] = 0.0636 +ij[15522] = 27.4 +id[15523] = "2980-11-04T22:09:58" +ik[15523] = 53.842 +il[15523] = 169 +im[15523] = 0.0597 +ij[15523] = 9 +id[15524] = "2980-12-27T01:08:45" +ik[15524] = 0.435 +il[15524] = -31 +im[15524] = 0.1542 +ij[15524] = 27.3 +id[15525] = "2981-01-16T09:06:05" +ik[15525] = 0.277 +il[15525] = 33 +im[15525] = 0.044 +ij[15525] = 27.5 +id[15526] = "2981-01-24T19:23:32" +ik[15526] = 90 +il[15526] = 59 +im[15526] = 0.2184 +ij[15526] = 6 +id[15527] = "2981-02-05T07:51:27" +ik[15527] = 3.144 +il[15527] = 90 +im[15527] = 0.2317 +ij[15527] = 28.6 +id[15528] = "2981-03-13T12:10:16" +ik[15528] = 0 +il[15528] = -170 +im[15528] = 0.0949 +ij[15528] = 13 +id[15529] = "2981-04-03T06:23:50" +ik[15529] = 0.5169 +il[15529] = -173 +im[15529] = 0.517 +ij[15529] = 2 +id[15530] = "2981-04-05T06:31:40" +ik[15530] = 8.24 +il[15530] = -161 +im[15530] = 0.4557 +ij[15530] = 11 +id[15531] = "2981-04-25T19:24:53" +ik[15531] = 43.3 +il[15531] = -126 +im[15531] = 0.2103 +ij[15531] = 7.161 +id[15532] = "2981-05-28T21:36:40" +ik[15532] = 76.39 +il[15532] = -61 +im[15532] = 0.2478 +ij[15532] = 14 +id[15533] = "2981-06-08T16:33:18" +ik[15533] = 1.48 +il[15533] = -35 +im[15533] = 0.1603 +ij[15533] = 28.7 +id[15534] = "2981-06-13T00:41:38" +ik[15534] = 4.47 +il[15534] = -22 +im[15534] = 0.2185 +ij[15534] = 27.6 +id[15535] = "2981-06-14T22:46:05" +ik[15535] = 90 +il[15535] = -17 +im[15535] = 0.1913 +ij[15535] = 5 +id[15536] = "2981-08-26T08:32:12" +ik[15536] = 54.508 +il[15536] = -156 +im[15536] = 0.1219 +ij[15536] = 8 +id[15537] = "2981-08-27T19:52:27" +ik[15537] = 0.017 +il[15537] = -151 +im[15537] = 0.112 +ij[15537] = 28.8 +id[15538] = "2981-09-03T13:14:26" +ik[15538] = 0.679 +il[15538] = -131 +im[15538] = 0.02 +ij[15538] = 28.5 +id[15539] = "2981-09-17T04:35:45" +ik[15539] = 1.249 +il[15539] = -89 +im[15539] = 0.0109 +ij[15539] = 28.4 +id[15540] = "2981-11-05T17:44:44" +ik[15540] = 0.63 +il[15540] = 64 +im[15540] = 0.068 +ij[15540] = 28.1 +id[15541] = "2981-11-12T09:10:56" +ik[15541] = 1.465 +il[15541] = 85 +im[15541] = 0.065 +ij[15541] = 28.1 +id[15542] = "2982-01-19T00:54:43" +ik[15542] = 0.79 +il[15542] = -86 +im[15542] = 0.0449 +ij[15542] = 12 +id[15543] = "2982-03-20T17:04:16" +ik[15543] = 1.189 +il[15543] = -87 +im[15543] = 0.0511 +ij[15543] = 28.6 +id[15544] = "2982-04-08T02:17:29" +ik[15544] = 2.7 +il[15544] = -30 +im[15544] = 0.0938 +ij[15544] = 27.6 +id[15545] = "2982-04-10T10:59:57" +ik[15545] = 0.058 +il[15545] = -22 +im[15545] = 0.0939 +ij[15545] = 28.7 +id[15546] = "2982-05-15T07:55:24" +ik[15546] = 4.017 +il[15546] = 87 +im[15546] = 0.0323 +ij[15546] = 27.2 +id[15547] = "2982-06-16T01:29:07" +ik[15547] = 54.63 +il[15547] = -174 +im[15547] = 0.0204 +ij[15547] = 9 +id[15548] = "2982-06-18T20:44:09" +ik[15548] = 2.46 +il[15548] = -166 +im[15548] = 0.0831 +ij[15548] = 28.8 +id[15549] = "2982-07-30T02:59:16" +ik[15549] = 0.265 +il[15549] = -40 +im[15549] = 0.0346 +ij[15549] = 28.5 +id[15550] = "2982-08-25T23:45:21" +ik[15550] = 90 +il[15550] = 42 +im[15550] = 0.1497 +ij[15550] = 6 +id[15551] = "2982-10-14T21:37:07" +ik[15551] = 0 +il[15551] = -176 +im[15551] = 0.3364 +ij[15551] = 13 +id[15552] = "2982-11-06T11:57:07" +ik[15552] = 5.95 +il[15552] = -180 +im[15552] = 0.0851 +ij[15552] = 11 +id[15553] = "2982-11-13T14:58:50" +ik[15553] = 0.5531 +il[15553] = -155 +im[15553] = 0.5531 +ij[15553] = 2 +id[15554] = "2982-11-26T23:00:50" +ik[15554] = 43.06 +il[15554] = -139 +im[15554] = 0.4296 +ij[15554] = 7.157 +id[15555] = "2982-12-28T20:31:33" +ik[15555] = 74.95 +il[15555] = -76 +im[15555] = 0.1769 +ij[15555] = 14 +id[15556] = "2983-01-16T03:37:06" +ik[15556] = 90 +il[15556] = -31 +im[15556] = 0.0386 +ij[15556] = 5 +id[15557] = "2983-01-30T04:05:38" +ik[15557] = 2.216 +il[15557] = 13 +im[15557] = 0.0282 +ij[15557] = 27.1 +id[15558] = "2983-03-21T11:45:38" +ik[15558] = 1.947 +il[15558] = 170 +im[15558] = 0.1039 +ij[15558] = 27.3 +id[15559] = "2983-04-05T03:05:08" +ik[15559] = 53.872 +il[15559] = -144 +im[15559] = 0.0808 +ij[15559] = 8 +id[15560] = "2983-04-08T14:01:12" +ik[15560] = 0.133 +il[15560] = -134 +im[15560] = 0.1149 +ij[15560] = 27.5 +id[15561] = "2983-05-12T12:23:54" +ik[15561] = 0.871 +il[15561] = -29 +im[15561] = 0.0682 +ij[15561] = 28.6 +id[15562] = "2983-05-23T04:27:28" +ik[15562] = 3.77 +il[15562] = 4 +im[15562] = 0.1019 +ij[15562] = 27.6 +id[15563] = "2983-05-28T01:33:36" +ik[15563] = 1.018 +il[15563] = 18 +im[15563] = 0.0704 +ij[15563] = 28.7 +id[15564] = "2983-06-01T06:09:56" +ik[15564] = 1.536 +il[15564] = 31 +im[15564] = 0.008 +ij[15564] = 28.1 +id[15565] = "2983-06-29T22:51:47" +ik[15565] = 5.302 +il[15565] = 118 +im[15565] = 0.0198 +ij[15565] = 27.2 +id[15566] = "2983-06-30T11:01:23" +ik[15566] = 0.901 +il[15566] = 120 +im[15566] = 0.011 +ij[15566] = 28.1 +id[15567] = "2983-08-24T20:49:55" +ik[15567] = 1.29 +il[15567] = -92 +im[15567] = 0.0751 +ij[15567] = 12 +id[15568] = "2983-10-06T15:58:01" +ik[15568] = 0.379 +il[15568] = -142 +im[15568] = 0.0914 +ij[15568] = 28.5 +id[15569] = "2983-10-26T03:46:30" +ik[15569] = 0.349 +il[15569] = -83 +im[15569] = 0.0462 +ij[15569] = 28.4 +id[15570] = "2983-11-13T21:27:24" +ik[15570] = 4.3 +il[15570] = -26 +im[15570] = 0.0111 +ij[15570] = 27.4 +id[15571] = "2984-01-08T04:58:58" +ik[15571] = 0.134 +il[15571] = 143 +im[15571] = 0.0923 +ij[15571] = 27.3 +id[15572] = "2984-01-20T20:55:22" +ik[15572] = 53.599 +il[15572] = -178 +im[15572] = 0.1179 +ij[15572] = 9 +id[15573] = "2984-01-26T08:00:45" +ik[15573] = 0.847 +il[15573] = -161 +im[15573] = 0.031 +ij[15573] = 27.5 +id[15574] = "2984-03-12T18:00:18" +ik[15574] = 0.82 +il[15574] = -15 +im[15574] = 0.0311 +ij[15574] = 27.6 +id[15575] = "2984-03-16T05:08:35" +ik[15575] = 3.871 +il[15575] = -5 +im[15575] = 0.1391 +ij[15575] = 28.6 +id[15576] = "2984-03-24T17:11:19" +ik[15576] = 2.593 +il[15576] = 22 +im[15576] = 0.1141 +ij[15576] = 28.7 +id[15577] = "2984-04-06T17:53:19" +ik[15577] = 90 +il[15577] = 63 +im[15577] = 0.1594 +ij[15577] = 6 +id[15578] = "2984-04-29T13:49:11" +ik[15578] = 0.503 +il[15578] = 122 +im[15578] = 0.1896 +ij[15578] = 27.2 +id[15579] = "2984-05-23T20:32:00" +ik[15579] = 0 +il[15579] = -175 +im[15579] = 0.0859 +ij[15579] = 13 +id[15580] = "2984-06-13T00:41:43" +ik[15580] = 0.5374 +il[15580] = -175 +im[15580] = 0.5375 +ij[15580] = 2 +id[15581] = "2984-06-13T23:24:14" +ik[15581] = 4.804 +il[15581] = -174 +im[15581] = 0.5253 +ij[15581] = 27.2 +id[15582] = "2984-06-14T14:00:57" +ik[15582] = 0.09 +il[15582] = -164 +im[15582] = 0.5046 +ij[15582] = 11 +id[15583] = "2984-07-06T02:33:48" +ik[15583] = 43.25 +il[15583] = -128 +im[15583] = 0.3166 +ij[15583] = 7.1659 +id[15584] = "2984-08-09T02:47:35" +ik[15584] = 77.26 +il[15584] = -61 +im[15584] = 0.2414 +ij[15584] = 14 +id[15585] = "2984-08-23T16:39:01" +ik[15585] = 90 +il[15585] = -23 +im[15585] = 0.1735 +ij[15585] = 5 +id[15586] = "2984-09-13T01:18:02" +ik[15586] = 1.253 +il[15586] = 39 +im[15586] = 0.0134 +ij[15586] = 28.8 +id[15587] = "2984-11-04T05:16:43" +ik[15587] = 54.183 +il[15587] = -162 +im[15587] = 0.1216 +ij[15587] = 8 +id[15588] = "2984-12-15T20:17:48" +ik[15588] = 0.301 +il[15588] = -32 +im[15588] = 0.0799 +ij[15588] = 28.5 +id[15589] = "2985-01-05T14:10:04" +ik[15589] = 4.503 +il[15589] = 33 +im[15589] = 0.0844 +ij[15589] = 27.1 +id[15590] = "2985-01-05T19:46:16" +ik[15590] = 2.339 +il[15590] = 33 +im[15590] = 0.0823 +ij[15590] = 28.1 +id[15591] = "2985-01-20T00:19:52" +ik[15591] = 0.594 +il[15591] = 78 +im[15591] = 0.0938 +ij[15591] = 28.1 +id[15592] = "2985-02-20T14:33:11" +ik[15592] = 0.788 +il[15592] = 176 +im[15592] = 0.0805 +ij[15592] = 27.3 +id[15593] = "2985-04-05T21:56:09" +ik[15593] = 1.33 +il[15593] = -71 +im[15593] = 0.077 +ij[15593] = 12 +id[15594] = "2985-05-29T14:14:31" +ik[15594] = 4.652 +il[15594] = -90 +im[15594] = 0.0556 +ij[15594] = 27.2 +id[15595] = "2985-06-16T01:52:19" +ik[15595] = 0.128 +il[15595] = -35 +im[15595] = 0.0745 +ij[15595] = 27.9 +id[15596] = "2985-07-07T13:02:47" +ik[15596] = 1.877 +il[15596] = 31 +im[15596] = 0.0722 +ij[15596] = 28.8 +id[15597] = "2985-07-07T18:25:29" +ik[15597] = 0.693 +il[15597] = 32 +im[15597] = 0.069 +ij[15597] = 28.1 +id[15598] = "2985-08-22T23:24:44" +ik[15598] = 54.479 +il[15598] = 174 +im[15598] = 0.0434 +ij[15598] = 9 +id[15599] = "2985-10-20T00:33:37" +ik[15599] = 1.967 +il[15599] = -10 +im[15599] = 0.1338 +ij[15599] = 27.4 +id[15600] = "2985-11-07T20:43:09" +ik[15600] = 90 +il[15600] = 48 +im[15600] = 0.0356 +ij[15600] = 6 +id[15601] = "2985-11-16T05:44:26" +ik[15601] = 3.681 +il[15601] = 72 +im[15601] = 0.2415 +ij[15601] = 28.5 +id[15602] = "2985-11-24T00:20:52" +ik[15602] = 1.083 +il[15602] = 91 +im[15602] = 0.0634 +ij[15602] = 28.4 +id[15603] = "2985-12-29T02:48:02" +ik[15603] = 0 +il[15603] = -172 +im[15603] = 0.4278 +ij[15603] = 13 +id[15604] = "2986-01-10T13:41:37" +ik[15604] = 0.5596 +il[15604] = -145 +im[15604] = 0.5596 +ij[15604] = 2 +id[15605] = "2986-01-18T21:48:57" +ik[15605] = 5.06 +il[15605] = -165 +im[15605] = 0.1861 +ij[15605] = 11 +id[15606] = "2986-02-09T02:51:36" +ik[15606] = 42 +il[15606] = -130 +im[15606] = 0.3501 +ij[15606] = 7.1551 +id[15607] = "2986-03-12T11:14:17" +ik[15607] = 73.35 +il[15607] = -68 +im[15607] = 0.0774 +ij[15607] = 14 +id[15608] = "2986-03-29T11:03:25" +ik[15608] = 4.028 +il[15608] = -26 +im[15608] = 0.0852 +ij[15608] = 27.3 +id[15609] = "2986-03-31T15:32:41" +ik[15609] = 90 +il[15609] = -20 +im[15609] = 0.1652 +ij[15609] = 5 +id[15610] = "2986-04-19T01:48:45" +ik[15610] = 0.873 +il[15610] = 38 +im[15610] = 0.1682 +ij[15610] = 27.5 +id[15611] = "2986-06-05T06:31:14" +ik[15611] = 4.15 +il[15611] = -176 +im[15611] = 0.1219 +ij[15611] = 27.6 +id[15612] = "2986-06-16T01:18:32" +ik[15612] = 54.335 +il[15612] = -143 +im[15612] = 0.1045 +ij[15612] = 8 +id[15613] = "2986-06-21T22:31:09" +ik[15613] = 1.502 +il[15613] = -125 +im[15613] = 0.0728 +ij[15613] = 28.7 +id[15614] = "2986-06-25T00:28:30" +ik[15614] = 0.388 +il[15614] = -116 +im[15614] = 0.011 +ij[15614] = 28.6 +id[15615] = "2986-07-14T04:10:54" +ik[15615] = 5.932 +il[15615] = -58 +im[15615] = 0.0709 +ij[15615] = 27.2 +id[15616] = "2986-07-31T08:09:36" +ik[15616] = 0.124 +il[15616] = -6 +im[15616] = 0.0876 +ij[15616] = 27.91 +id[15617] = "2986-08-18T07:45:24" +ik[15617] = 2.657 +il[15617] = 49 +im[15617] = 0.0928 +ij[15617] = 28.1 +id[15618] = "2986-08-22T23:22:24" +ik[15618] = 0.765 +il[15618] = 64 +im[15618] = 0.0383 +ij[15618] = 28.8 +id[15619] = "2986-11-02T23:18:14" +ik[15619] = 1 +il[15619] = -95 +im[15619] = 0.0711 +ij[15619] = 12 +id[15620] = "2987-01-14T17:23:23" +ik[15620] = 0.721 +il[15620] = -58 +im[15620] = 0.089 +ij[15620] = 28.5 +id[15621] = "2987-01-21T23:30:58" +ik[15621] = 0.172 +il[15621] = -35 +im[15621] = 0.0078 +ij[15621] = 27.3 +id[15622] = "2987-02-08T14:51:25" +ik[15622] = 0.871 +il[15622] = 19 +im[15622] = 0.0283 +ij[15622] = 27.5 +id[15623] = "2987-03-24T20:27:07" +ik[15623] = 2.08 +il[15623] = 158 +im[15623] = 0.0328 +ij[15623] = 27.6 +id[15624] = "2987-04-05T10:26:07" +ik[15624] = 54.138 +il[15624] = -166 +im[15624] = 0.0709 +ij[15624] = 9 +id[15625] = "2987-04-16T06:22:45" +ik[15625] = 1.436 +il[15625] = -132 +im[15625] = 0.1207 +ij[15625] = 28.7 +id[15626] = "2987-04-27T03:34:07" +ik[15626] = 3.445 +il[15626] = -98 +im[15626] = 0.1063 +ij[15626] = 28.6 +id[15627] = "2987-05-02T10:37:37" +ik[15627] = 2.997 +il[15627] = -82 +im[15627] = 0.1342 +ij[15627] = 27.2 +id[15628] = "2987-06-15T01:42:07" +ik[15628] = 90 +il[15628] = 53 +im[15628] = 0.2044 +ij[15628] = 6 +id[15629] = "2987-06-21T03:07:03" +ik[15629] = 2.372 +il[15629] = 69 +im[15629] = 0.0248 +ij[15629] = 28.8 +id[15630] = "2987-08-01T11:14:44" +ik[15630] = 0 +il[15630] = -175 +im[15630] = 0.1498 +ij[15630] = 13 +id[15631] = "2987-08-23T09:34:06" +ik[15631] = 0.5018 +il[15631] = 179 +im[15631] = 0.5018 +ij[15631] = 2 +id[15632] = "2987-08-23T22:45:07" +ik[15632] = 7.83 +il[15632] = -171 +im[15632] = 0.4974 +ij[15632] = 11 +id[15633] = "2987-09-14T18:30:27" +ik[15633] = 44.3 +il[15633] = -135 +im[15633] = 0.2501 +ij[15633] = 7.1649 +id[15634] = "2987-10-18T05:25:14" +ik[15634] = 77.76 +il[15634] = -69 +im[15634] = 0.2505 +ij[15634] = 14 +id[15635] = "2987-11-02T13:24:26" +ik[15635] = 90 +il[15635] = -30 +im[15635] = 0.2064 +ij[15635] = 5 +id[15636] = "2988-01-17T09:43:28" +ik[15636] = 53.756 +il[15636] = -157 +im[15636] = 0.0931 +ij[15636] = 8 +id[15637] = "2988-01-20T01:08:17" +ik[15637] = 3.728 +il[15637] = -147 +im[15637] = 0.042 +ij[15637] = 27.1 +id[15638] = "2988-02-27T05:34:13" +ik[15638] = 1.351 +il[15638] = -28 +im[15638] = 0.0962 +ij[15638] = 28.4 +id[15639] = "2988-03-05T10:51:18" +ik[15639] = 1.859 +il[15639] = -5 +im[15639] = 0.0487 +ij[15639] = 28.1 +id[15640] = "2988-03-06T22:44:18" +ik[15640] = 1.208 +il[15640] = -1 +im[15640] = 0.0176 +ij[15640] = 27.3 +id[15641] = "2988-03-21T05:58:50" +ik[15641] = 0.082 +il[15641] = 43 +im[15641] = 0.0261 +ij[15641] = 28.5 +id[15642] = "2988-03-24T13:15:25" +ik[15642] = 0.497 +il[15642] = 54 +im[15642] = 0.0352 +ij[15642] = 27.5 +id[15643] = "2988-04-01T14:56:58" +ik[15643] = 3.362 +il[15643] = 79 +im[15643] = 0.0826 +ij[15643] = 28.1 +id[15644] = "2988-05-07T09:20:01" +ik[15644] = 3.43 +il[15644] = -172 +im[15644] = 0.0168 +ij[15644] = 27.6 +id[15645] = "2988-06-15T09:04:19" +ik[15645] = 0 +il[15645] = -76 +im[15645] = 0.0837 +ij[15645] = 12 +id[15646] = "2988-07-27T03:19:52" +ik[15646] = 1.441 +il[15646] = -129 +im[15646] = 0.0828 +ij[15646] = 28.8 +id[15647] = "2988-08-29T04:16:27" +ik[15647] = 3.086 +il[15647] = -27 +im[15647] = 0.0894 +ij[15647] = 28.1 +id[15648] = "2988-09-23T06:50:06" +ik[15648] = 5.521 +il[15648] = 50 +im[15648] = 0.0814 +ij[15648] = 28.1 +id[15649] = "2988-10-30T00:53:37" +ik[15649] = 3.494 +il[15649] = 161 +im[15649] = 0.1018 +ij[15649] = 27.4 +id[15650] = "2988-11-02T10:47:29" +ik[15650] = 53.863 +il[15650] = 171 +im[15650] = 0.038 +ij[15650] = 9 +id[15651] = "2988-12-26T19:58:04" +ik[15651] = 0.431 +il[15651] = -21 +im[15651] = 0.1738 +ij[15651] = 27.3 +id[15652] = "2989-01-16T08:36:44" +ik[15652] = 0.21 +il[15652] = 43 +im[15652] = 0.0399 +ij[15652] = 27.5 +id[15653] = "2989-01-22T07:49:12" +ik[15653] = 90 +il[15653] = 62 +im[15653] = 0.1875 +ij[15653] = 6 +id[15654] = "2989-02-21T03:43:37" +ik[15654] = 4.771 +il[15654] = 142 +im[15654] = 0.2875 +ij[15654] = 28.5 +id[15655] = "2989-03-11T05:25:42" +ik[15655] = 0 +il[15655] = -174 +im[15655] = 0.3775 +ij[15655] = 13 +id[15656] = "2989-04-02T20:31:12" +ik[15656] = 8.37 +il[15656] = -180 +im[15656] = 0.496 +ij[15656] = 11 +id[15657] = "2989-04-04T07:22:15" +ik[15657] = 0.5277 +il[15657] = -165 +im[15657] = 0.5278 +ij[15657] = 2 +id[15658] = "2989-04-23T09:33:17" +ik[15658] = 43.17 +il[15658] = -124 +im[15658] = 0.1626 +ij[15658] = 7.1609 +id[15659] = "2989-05-07T18:10:30" +ik[15659] = 2.912 +il[15659] = -99 +im[15659] = 0.0635 +ij[15659] = 28.5 +id[15660] = "2989-05-26T10:35:03" +ik[15660] = 76.21 +il[15660] = -59 +im[15660] = 0.1801 +ij[15660] = 14 +id[15661] = "2989-06-12T14:01:35" +ik[15661] = 90 +il[15661] = -14 +im[15661] = 0.1958 +ij[15661] = 5 +id[15662] = "2989-06-13T02:49:03" +ik[15662] = 4.48 +il[15662] = -12 +im[15662] = 0.2011 +ij[15662] = 27.6 +id[15663] = "2989-07-14T23:14:47" +ik[15663] = 2.356 +il[15663] = 85 +im[15663] = 0.1431 +ij[15663] = 28.7 +id[15664] = "2989-08-05T20:26:09" +ik[15664] = 0.626 +il[15664] = 152 +im[15664] = 0.0147 +ij[15664] = 28.6 +id[15665] = "2989-08-24T01:36:23" +ik[15665] = 54.511 +il[15665] = -153 +im[15665] = 0.098 +ij[15665] = 8 +id[15666] = "2989-09-11T04:11:34" +ik[15666] = 0.272 +il[15666] = -98 +im[15666] = 0.1034 +ij[15666] = 28.8 +id[15667] = "2990-01-16T11:21:07" +ik[15667] = 0.74 +il[15667] = -84 +im[15667] = 0.0286 +ij[15667] = 12 +id[15668] = "2990-02-22T23:28:44" +ik[15668] = 0.802 +il[15668] = -146 +im[15668] = 0.0808 +ij[15668] = 27.5 +id[15669] = "2990-03-04T05:47:11" +ik[15669] = 0.8 +il[15669] = -128 +im[15669] = 0.0116 +ij[15669] = 28.4 +id[15670] = "2990-04-07T15:40:55" +ik[15670] = 2.68 +il[15670] = -21 +im[15670] = 0.0739 +ij[15670] = 27.6 +id[15671] = "2990-04-12T21:02:18" +ik[15671] = 0.811 +il[15671] = -5 +im[15671] = 0.0876 +ij[15671] = 28.5 +id[15672] = "2990-04-16T17:23:51" +ik[15672] = 5.275 +il[15672] = 7 +im[15672] = 0.031 +ij[15672] = 28.1 +id[15673] = "2990-05-10T02:59:53" +ik[15673] = 0.959 +il[15673] = 81 +im[15673] = 0.0975 +ij[15673] = 28.7 +id[15674] = "2990-05-14T21:49:37" +ik[15674] = 4.001 +il[15674] = 96 +im[15674] = 0.067 +ij[15674] = 27.2 +id[15675] = "2990-06-07T10:45:50" +ik[15675] = 2.199 +il[15675] = 169 +im[15675] = 0.0916 +ij[15675] = 28.6 +id[15676] = "2990-06-13T19:26:38" +ik[15676] = 54.623 +il[15676] = -171 +im[15676] = 0.0744 +ij[15676] = 9 +id[15677] = "2990-07-03T14:45:10" +ik[15677] = 1.903 +il[15677] = -110 +im[15677] = 0.0222 +ij[15677] = 28.8 +id[15678] = "2990-08-23T14:32:33" +ik[15678] = 90 +il[15678] = 46 +im[15678] = 0.216 +ij[15678] = 6 +id[15679] = "2990-10-12T10:35:30" +ik[15679] = 0 +il[15679] = -172 +im[15679] = 0.0514 +ij[15679] = 13 +id[15680] = "2990-11-04T01:33:36" +ik[15680] = 6.22 +il[15680] = -180 +im[15680] = 0.4293 +ij[15680] = 11 +id[15681] = "2990-11-14T18:50:22" +ik[15681] = 0.5298 +il[15681] = -149 +im[15681] = 0.5299 +ij[15681] = 2 +id[15682] = "2990-11-24T13:45:12" +ik[15682] = 43.13 +il[15682] = -136 +im[15682] = 0.2714 +ij[15682] = 7.1572 +id[15683] = "2990-12-26T11:28:56" +ik[15683] = 75.04 +il[15683] = -73 +im[15683] = 0.2635 +ij[15683] = 14 +id[15684] = "2991-01-13T16:45:13" +ik[15684] = 90 +il[15684] = -28 +im[15684] = 0.1868 +ij[15684] = 5 +id[15685] = "2991-01-30T01:00:17" +ik[15685] = 2.287 +il[15685] = 23 +im[15685] = 0.096 +ij[15685] = 27.1 +id[15686] = "2991-03-21T03:10:04" +ik[15686] = 1.919 +il[15686] = 179 +im[15686] = 0.0679 +ij[15686] = 27.3 +id[15687] = "2991-04-02T15:39:06" +ik[15687] = 53.858 +il[15687] = -142 +im[15687] = 0.0172 +ij[15687] = 8 +id[15688] = "2991-04-08T04:42:04" +ik[15688] = 0.148 +il[15688] = -125 +im[15688] = 0.0981 +ij[15688] = 27.5 +id[15689] = "2991-05-12T08:36:48" +ik[15689] = 1.422 +il[15689] = -20 +im[15689] = 0.0866 +ij[15689] = 28.1 +id[15690] = "2991-05-22T18:08:57" +ik[15690] = 3.76 +il[15690] = 12 +im[15690] = 0.0865 +ij[15690] = 27.6 +id[15691] = "2991-06-18T08:00:57" +ik[15691] = 0.053 +il[15691] = 93 +im[15691] = 0.0285 +ij[15691] = 28.5 +id[15692] = "2991-06-27T02:13:55" +ik[15692] = 0.647 +il[15692] = 120 +im[15692] = 0.0829 +ij[15692] = 28.7 +id[15693] = "2991-06-29T11:56:13" +ik[15693] = 5.283 +il[15693] = 127 +im[15693] = 0.0531 +ij[15693] = 27.2 +id[15694] = "2991-08-22T14:36:57" +ik[15694] = 1.27 +il[15694] = -89 +im[15694] = 0.0788 +ij[15694] = 12 +id[15695] = "2991-11-13T11:02:03" +ik[15695] = 4.288 +il[15695] = -18 +im[15695] = 0.0317 +ij[15695] = 27.4 +id[15696] = "2991-11-23T12:42:54" +ik[15696] = 4 +il[15696] = 13 +im[15696] = 0.0913 +ij[15696] = 28.1 +id[15697] = "2992-01-07T19:34:04" +ik[15697] = 0.139 +il[15697] = 152 +im[15697] = 0.1096 +ij[15697] = 27.3 +id[15698] = "2992-01-18T07:35:34" +ik[15698] = 53.593 +il[15698] = -176 +im[15698] = 0.1025 +ij[15698] = 9 +id[15699] = "2992-01-25T23:13:11" +ik[15699] = 0.837 +il[15699] = -152 +im[15699] = 0.0808 +ij[15699] = 27.5 +id[15700] = "2992-03-09T18:46:22" +ik[15700] = 1.892 +il[15700] = -15 +im[15700] = 0.1194 +ij[15700] = 28.4 +id[15701] = "2992-03-12T12:46:48" +ik[15701] = 0.75 +il[15701] = -6 +im[15701] = 0.0358 +ij[15701] = 27.6 +id[15702] = "2992-04-04T10:16:02" +ik[15702] = 90 +il[15702] = 65 +im[15702] = 0.1987 +ij[15702] = 6 +id[15703] = "2992-04-30T16:50:57" +ik[15703] = 0.353 +il[15703] = 134 +im[15703] = 0.1939 +ij[15703] = 27.2 +id[15704] = "2992-05-07T11:47:36" +ik[15704] = 4.637 +il[15704] = 143 +im[15704] = 0.2366 +ij[15704] = 28.7 +id[15705] = "2992-05-20T11:29:23" +ik[15705] = 0 +il[15705] = 171 +im[15705] = 0.3899 +ij[15705] = 13 +id[15706] = "2992-06-07T13:00:28" +ik[15706] = 1.528 +il[15706] = -145 +im[15706] = 0.0477 +ij[15706] = 28.7 +id[15707] = "2992-06-11T07:31:50" +ik[15707] = 4.452 +il[15707] = -145 +im[15707] = 0.4248 +ij[15707] = 27.2 +id[15708] = "2992-06-12T07:01:55" +ik[15708] = 0.42 +il[15708] = -143 +im[15708] = 0.4856 +ij[15708] = 11 +id[15709] = "2992-06-14T05:07:45" +ik[15709] = 0.5345 +il[15709] = -147 +im[15709] = 0.5346 +ij[15709] = 2 +id[15710] = "2992-07-04T10:31:57" +ik[15710] = 44.96 +il[15710] = -124 +im[15710] = 0.0974 +ij[15710] = 7.1653 +id[15711] = "2992-07-28T23:34:13" +ik[15711] = 4.448 +il[15711] = -78 +im[15711] = 0.16 +ij[15711] = 28.7 +id[15712] = "2992-08-06T17:18:43" +ik[15712] = 78.24 +il[15712] = -59 +im[15712] = 0.241 +ij[15712] = 14 +id[15713] = "2992-08-16T06:57:09" +ik[15713] = 3.104 +il[15713] = -36 +im[15713] = 0.0325 +ij[15713] = 28.5 +id[15714] = "2992-08-21T09:19:26" +ik[15714] = 90 +il[15714] = -20 +im[15714] = 0.1847 +ij[15714] = 5 +id[15715] = "2992-09-15T05:26:44" +ik[15715] = 1.801 +il[15715] = 55 +im[15715] = 0.0223 +ij[15715] = 28.6 +id[15716] = "2992-09-28T16:12:08" +ik[15716] = 0.524 +il[15716] = 96 +im[15716] = 0.0186 +ij[15716] = 28.8 +id[15717] = "2992-11-01T20:20:01" +ik[15717] = 54.2 +il[15717] = -159 +im[15717] = 0.0749 +ij[15717] = 8 +id[15718] = "2993-01-05T03:36:16" +ik[15718] = 4.519 +il[15718] = 41 +im[15718] = 0.0912 +ij[15718] = 27.1 +id[15719] = "2993-02-20T03:47:24" +ik[15719] = 0.783 +il[15719] = -178 +im[15719] = 0.0903 +ij[15719] = 27.3 +id[15720] = "2993-04-03T10:19:12" +ik[15720] = 1.36 +il[15720] = -68 +im[15720] = 0.0798 +ij[15720] = 12 +id[15721] = "2993-05-29T03:25:36" +ik[15721] = 4.642 +il[15721] = -82 +im[15721] = 0.0216 +ij[15721] = 27.2 +id[15722] = "2993-06-03T07:43:58" +ik[15722] = 3.17 +il[15722] = -65 +im[15722] = 0.0897 +ij[15722] = 28.1 +id[15723] = "2993-06-04T09:00:43" +ik[15723] = 0.508 +il[15723] = -62 +im[15723] = 0.0941 +ij[15723] = 28.7 +id[15724] = "2993-06-15T15:05:11" +ik[15724] = 0.145 +il[15724] = -27 +im[15724] = 0.0493 +ij[15724] = 27.9 +id[15725] = "2993-06-26T11:10:45" +ik[15725] = 1.185 +il[15725] = 7 +im[15725] = 0.0147 +ij[15725] = 28.1 +id[15726] = "2993-07-14T14:11:49" +ik[15726] = 0.771 +il[15726] = 62 +im[15726] = 0.0361 +ij[15726] = 28.5 +id[15727] = "2993-07-19T07:39:30" +ik[15727] = 0.617 +il[15727] = 78 +im[15727] = 0.0986 +ij[15727] = 28.6 +id[15728] = "2993-07-21T16:31:43" +ik[15728] = 1.439 +il[15728] = 85 +im[15728] = 0.0937 +ij[15728] = 28.8 +id[15729] = "2993-08-20T16:21:49" +ik[15729] = 54.494 +il[15729] = 177 +im[15729] = 0.1106 +ij[15729] = 9 +id[15730] = "2993-10-19T21:15:23" +ik[15730] = 1.895 +il[15730] = 0 +im[15730] = 0.176 +ij[15730] = 27.4 +id[15731] = "2993-11-05T08:16:38" +ik[15731] = 90 +il[15731] = 50 +im[15731] = 0.1462 +ij[15731] = 6 +id[15732] = "2993-12-26T11:24:11" +ik[15732] = 0 +il[15732] = -170 +im[15732] = 0.3269 +ij[15732] = 13 +id[15733] = "2994-01-11T17:52:12" +ik[15733] = 0.5763 +il[15733] = -159 +im[15733] = 0.5764 +ij[15733] = 2 +id[15734] = "2994-01-16T10:33:36" +ik[15734] = 4.72 +il[15734] = -146 +im[15734] = 0.2879 +ij[15734] = 11 +id[15735] = "2994-02-06T10:26:45" +ik[15735] = 41.96 +il[15735] = -159 +im[15735] = 0.4685 +ij[15735] = 7.1549 +id[15736] = "2994-03-09T22:37:32" +ik[15736] = 73.47 +il[15736] = -66 +im[15736] = 0.2615 +ij[15736] = 14 +id[15737] = "2994-03-29T03:52:10" +ik[15737] = 90 +il[15737] = -17 +im[15737] = 0.013 +ij[15737] = 5 +id[15738] = "2994-03-29T12:03:24" +ik[15738] = 3.892 +il[15738] = -16 +im[15738] = 0.0213 +ij[15738] = 27.3 +id[15739] = "2994-04-18T21:26:04" +ik[15739] = 0.811 +il[15739] = 47 +im[15739] = 0.1513 +ij[15739] = 27.5 +id[15740] = "2994-06-04T21:48:40" +ik[15740] = 4.14 +il[15740] = -167 +im[15740] = 0.126 +ij[15740] = 27.6 +id[15741] = "2994-06-13T17:25:50" +ik[15741] = 54.321 +il[15741] = -140 +im[15741] = 0.0373 +ij[15741] = 8 +id[15742] = "2994-06-21T19:38:47" +ik[15742] = 1.139 +il[15742] = -116 +im[15742] = 0.1011 +ij[15742] = 28.4 +id[15743] = "2994-07-13T18:02:53" +ik[15743] = 5.907 +il[15743] = -49 +im[15743] = 0.037 +ij[15743] = 27.2 +id[15744] = "2994-07-22T01:06:31" +ik[15744] = 1.003 +il[15744] = -24 +im[15744] = 0.0919 +ij[15744] = 28.7 +id[15745] = "2994-07-30T21:43:12" +ik[15745] = 0.101 +il[15745] = 3 +im[15745] = 0.0599 +ij[15745] = 27.91 +id[15746] = "2994-09-05T21:58:27" +ik[15746] = 0.749 +il[15746] = 116 +im[15746] = 0.0669 +ij[15746] = 28.8 +id[15747] = "2994-09-09T22:06:14" +ik[15747] = 0.323 +il[15747] = 129 +im[15747] = 0.0033 +ij[15747] = 28.6 +id[15748] = "2994-09-23T11:12:28" +ik[15748] = 0.008 +il[15748] = 171 +im[15748] = 0.0447 +ij[15748] = 28.5 +id[15749] = "2994-10-31T13:37:55" +ik[15749] = 1.04 +il[15749] = -93 +im[15749] = 0.0811 +ij[15749] = 12 +id[15750] = "2995-01-19T21:37:43" +ik[15750] = 1.926 +il[15750] = -31 +im[15750] = 0.0699 +ij[15750] = 28.1 +id[15751] = "2995-01-21T13:02:30" +ik[15751] = 0.17 +il[15751] = -26 +im[15751] = 0.0446 +ij[15751] = 27.3 +id[15752] = "2995-02-08T04:32:17" +ik[15752] = 0.867 +il[15752] = 28 +im[15752] = 0.0137 +ij[15752] = 27.5 +id[15753] = "2995-03-24T10:54:34" +ik[15753] = 2.06 +il[15753] = 166 +im[15753] = 0.022 +ij[15753] = 27.6 +id[15754] = "2995-04-03T00:53:51" +ik[15754] = 54.115 +il[15754] = -164 +im[15754] = 0.1206 +ij[15754] = 9 +id[15755] = "2995-05-02T03:10:03" +ik[15755] = 2.959 +il[15755] = -73 +im[15755] = 0.1406 +ij[15755] = 27.2 +id[15756] = "2995-05-17T11:33:04" +ik[15756] = 2.282 +il[15756] = -25 +im[15756] = 0.1624 +ij[15756] = 28.7 +id[15757] = "2995-06-12T19:26:13" +ik[15757] = 90 +il[15757] = 56 +im[15757] = 0.1871 +ij[15757] = 6 +id[15758] = "2995-07-14T17:11:19" +ik[15758] = 0.611 +il[15758] = 143 +im[15758] = 0.3362 +ij[15758] = 28.8 +id[15759] = "2995-07-29T22:38:00" +ik[15759] = 0 +il[15759] = 179 +im[15759] = 0.3733 +ij[15759] = 13 +id[15760] = "2995-08-11T07:27:05" +ik[15760] = 0.5031 +il[15760] = -177 +im[15760] = 0.5032 +ij[15760] = 2 +id[15761] = "2995-08-15T20:39:31" +ik[15761] = 0 +il[15761] = -174 +im[15761] = 0.2573 +ij[15761] = 13 +id[15762] = "2995-08-21T14:21:07" +ik[15762] = 7.68 +il[15762] = -158 +im[15762] = 0.3738 +ij[15762] = 11 +id[15763] = "2995-09-13T01:44:35" +ik[15763] = 45.13 +il[15763] = -170 +im[15763] = 0.0644 +ij[15763] = 7.165 +id[15764] = "2995-10-08T07:31:26" +ik[15764] = 3.403 +il[15764] = -83 +im[15764] = 0.1996 +ij[15764] = 28.8 +id[15765] = "2995-10-15T22:45:21" +ik[15765] = 78.01 +il[15765] = -66 +im[15765] = 0.1918 +ij[15765] = 14 +id[15766] = "2995-10-24T02:33:04" +ik[15766] = 2.772 +il[15766] = -47 +im[15766] = 0.0821 +ij[15766] = 28.6 +id[15767] = "2995-10-31T04:50:32" +ik[15767] = 90 +il[15767] = -27 +im[15767] = 0.2003 +ij[15767] = 5 +id[15768] = "2995-12-01T04:32:18" +ik[15768] = 0.389 +il[15768] = 68 +im[15768] = 0.1641 +ij[15768] = 28.5 +id[15769] = "2996-01-14T21:45:26" +ik[15769] = 53.765 +il[15769] = -153 +im[15769] = 0.1123 +ij[15769] = 8 +id[15770] = "2996-01-19T15:51:49" +ik[15770] = 3.756 +il[15770] = -138 +im[15770] = 0.0836 +ij[15770] = 27.1 +id[15771] = "2996-03-06T12:29:37" +ik[15771] = 1.198 +il[15771] = 8 +im[15771] = 0.0524 +ij[15771] = 27.3 +id[15772] = "2996-03-24T02:45:37" +ik[15772] = 0.502 +il[15772] = 62 +im[15772] = 0.011 +ij[15772] = 27.5 +id[15773] = "2996-05-06T22:26:28" +ik[15773] = 3.42 +il[15773] = -164 +im[15773] = 0.022 +ij[15773] = 27.6 +id[15774] = "2996-06-13T03:01:26" +ik[15774] = 0.05 +il[15774] = -73 +im[15774] = 0.0797 +ij[15774] = 12 +id[15775] = "2996-07-15T14:00:23" +ik[15775] = 0.87 +il[15775] = -155 +im[15775] = 0.087 +ij[15775] = 28.4 +id[15776] = "2996-08-10T02:32:21" +ik[15776] = 1.083 +il[15776] = -76 +im[15776] = 0.0521 +ij[15776] = 28.8 +id[15777] = "2996-08-31T09:38:44" +ik[15777] = 0.843 +il[15777] = -10 +im[15777] = 0.0894 +ij[15777] = 28.6 +id[15778] = "2996-09-05T14:22:42" +ik[15778] = 4.491 +il[15778] = 6 +im[15778] = 0.0175 +ij[15778] = 28.1 +id[15779] = "2996-10-26T22:52:01" +ik[15779] = 1.749 +il[15779] = 161 +im[15779] = 0.1159 +ij[15779] = 28.5 +id[15780] = "2996-10-29T15:49:09" +ik[15780] = 3.47 +il[15780] = 170 +im[15780] = 0.1216 +ij[15780] = 27.4 +id[15781] = "2996-10-30T23:39:14" +ik[15781] = 53.884 +il[15781] = 174 +im[15781] = 0.1119 +ij[15781] = 9 +id[15782] = "2996-12-26T15:11:23" +ik[15782] = 0.427 +il[15782] = -12 +im[15782] = 0.1676 +ij[15782] = 27.3 +id[15783] = "2997-01-16T08:59:50" +ik[15783] = 0.136 +il[15783] = 53 +im[15783] = 0.1118 +ij[15783] = 27.5 +id[15784] = "2997-01-19T20:07:47" +ik[15784] = 90 +il[15784] = 64 +im[15784] = 0.0377 +ij[15784] = 6 +id[15785] = "2997-03-09T04:19:14" +ik[15785] = 0 +il[15785] = -159 +im[15785] = 0.4449 +ij[15785] = 13 +id[15786] = "2997-03-31T10:22:04" +ik[15786] = 8.49 +il[15786] = -156 +im[15786] = 0.1934 +ij[15786] = 11 +id[15787] = "2997-04-05T08:26:27" +ik[15787] = 0.5318 +il[15787] = -139 +im[15787] = 0.5318 +ij[15787] = 2 +id[15788] = "2997-04-21T04:24:48" +ik[15788] = 43 +il[15788] = -121 +im[15788] = 0.3889 +ij[15788] = 7.1609 +id[15789] = "2997-05-23T23:49:36" +ik[15789] = 75.81 +il[15789] = -56 +im[15789] = 0.0306 +ij[15789] = 14 +id[15790] = "2997-06-10T05:13:33" +ik[15790] = 90 +il[15790] = -11 +im[15790] = 0.0782 +ij[15790] = 5 +id[15791] = "2997-06-13T03:47:31" +ik[15791] = 4.49 +il[15791] = -2 +im[15791] = 0.1667 +ij[15791] = 27.6 +id[15792] = "2997-08-14T22:39:04" +ik[15792] = 1.524 +il[15792] = -170 +im[15792] = 0.1134 +ij[15792] = 28.7 +id[15793] = "2997-08-21T18:37:02" +ik[15793] = 54.513 +il[15793] = -150 +im[15793] = 0.0162 +ij[15793] = 8 +id[15794] = "2997-09-25T09:24:02" +ik[15794] = 0.411 +il[15794] = -44 +im[15794] = 0.0872 +ij[15794] = 28.8 +id[15795] = "2997-10-23T11:12:20" +ik[15795] = 0.88 +il[15795] = 43 +im[15795] = 0.0493 +ij[15795] = 28.6 +id[15796] = "2998-01-13T21:51:50" +ik[15796] = 0.68 +il[15796] = -82 +im[15796] = 0.083 +ij[15796] = 12 +id[15797] = "2998-02-22T12:41:37" +ik[15797] = 0.801 +il[15797] = -137 +im[15797] = 0.0658 +ij[15797] = 27.5 +id[15798] = "2998-03-13T13:00:20" +ik[15798] = 2.828 +il[15798] = -89 +im[15798] = 0.0902 +ij[15798] = 28.1 +id[15799] = "2998-03-27T11:26:52" +ik[15799] = 3.749 +il[15799] = -46 +im[15799] = 0.0924 +ij[15799] = 28.1 +id[15800] = "2998-04-07T05:04:29" +ik[15800] = 2.66 +il[15800] = -12 +im[15800] = 0.0404 +ij[15800] = 27.6 +id[15801] = "2998-05-14T11:46:56" +ik[15801] = 3.984 +il[15801] = 104 +im[15801] = 0.0911 +ij[15801] = 27.2 +id[15802] = "2998-06-08T11:58:42" +ik[15802] = 1.382 +il[15802] = -178 +im[15802] = 0.0866 +ij[15802] = 28.7 +id[15803] = "2998-06-11T13:24:09" +ik[15803] = 54.615 +il[15803] = -168 +im[15803] = 0.1127 +ij[15803] = 9 +id[15804] = "2998-07-18T21:57:44" +ik[15804] = 0.909 +il[15804] = -54 +im[15804] = 0.022 +ij[15804] = 28.8 +id[15805] = "2998-08-21T05:23:16" +ik[15805] = 90 +il[15805] = 48 +im[15805] = 0.145 +ij[15805] = 6 +id[15806] = "2998-08-28T14:34:56" +ik[15806] = 2.967 +il[15806] = 68 +im[15806] = 0.1667 +ij[15806] = 28.4 +id[15807] = "2998-09-02T20:38:58" +ik[15807] = 4.919 +il[15807] = 81 +im[15807] = 0.0864 +ij[15807] = 28.6 +id[15808] = "2998-10-09T23:50:03" +ik[15808] = 0 +il[15808] = -176 +im[15808] = 0.3306 +ij[15808] = 13 +id[15809] = "2998-11-01T15:08:38" +ik[15809] = 6.47 +il[15809] = -168 +im[15809] = 0.5249 +ij[15809] = 11 +id[15810] = "2998-11-02T09:56:55" +ik[15810] = 0.5357 +il[15810] = -156 +im[15810] = 0.5357 +ij[15810] = 2 +id[15811] = "2998-11-22T05:00:39" +ik[15811] = 43.22 +il[15811] = -133 +im[15811] = 0.0799 +ij[15811] = 7.1574 +id[15812] = "2998-12-24T02:48:23" +ik[15812] = 75.12 +il[15812] = -70 +im[15812] = 0.167 +ij[15812] = 14 +id[15813] = "2999-01-11T05:56:53" +ik[15813] = 90 +il[15813] = -26 +im[15813] = 0.2126 +ij[15813] = 5 +id[15814] = "2999-01-29T21:26:02" +ik[15814] = 2.355 +il[15814] = 32 +im[15814] = 0.1495 +ij[15814] = 27.1 +id[15815] = "2999-03-11T08:12:02" +ik[15815] = 1.048 +il[15815] = 158 +im[15815] = 0.1197 +ij[15815] = 28.5 +id[15816] = "2999-03-20T18:30:30" +ik[15816] = 1.891 +il[15816] = -172 +im[15816] = 0.0238 +ij[15816] = 27.3 +id[15817] = "2999-03-31T04:09:30" +ik[15817] = 53.845 +il[15817] = -140 +im[15817] = 0.1032 +ij[15817] = 8 +id[15818] = "2999-04-07T19:19:50" +ik[15818] = 0.162 +il[15818] = -116 +im[15818] = 0.0666 +ij[15818] = 27.5 +id[15819] = "2999-05-22T07:48:24" +ik[15819] = 3.75 +il[15819] = 21 +im[15819] = 0.0546 +ij[15819] = 27.6 +id[15820] = "2999-06-29T01:02:52" +ik[15820] = 5.265 +il[15820] = 135 +im[15820] = 0.0761 +ij[15820] = 27.2 +id[15821] = "2999-08-20T08:25:26" +ik[15821] = 1.25 +il[15821] = -85 +im[15821] = 0.0355 +ij[15821] = 12 +id[15822] = "2999-09-22T02:48:20" +ik[15822] = 1.675 +il[15822] = -167 +im[15822] = 0.072 +ij[15822] = 28.1 +id[15823] = "2999-10-16T05:00:43" +ik[15823] = 1.73 +il[15823] = -93 +im[15823] = 0.0243 +ij[15823] = 28.6 +id[15824] = "2999-11-08T03:07:46" +ik[15824] = 2.79 +il[15824] = -23 +im[15824] = 0.0936 +ij[15824] = 28.1 +id[15825] = "2999-11-13T00:36:16" +ik[15825] = 4.276 +il[15825] = -9 +im[15825] = 0.0646 +ij[15825] = 27.4 +id[15826] = "3000-01-07T10:08:43" +ik[15826] = 0.14 +il[15826] = 161 +im[15826] = 0.1084 +ij[15826] = 27.3 +id[15827] = "3000-01-15T18:15:45" +ik[15827] = 53.587 +il[15827] = -174 +im[15827] = 0.0201 +ij[15827] = 9 +id[15828] = "3000-01-25T14:33:10" +ik[15828] = 0.826 +il[15828] = -143 +im[15828] = 0.1179 +ij[15828] = 27.5 +id[15829] = "3000-01-31T02:38:41" +ik[15829] = 0.095 +il[15829] = -126 +im[15829] = 0.0126 +ij[15829] = 28.5 +id[15830] = "3000-03-13T08:03:21" +ik[15830] = 0.67 +il[15830] = 3 +im[15830] = 0.0969 +ij[15830] = 27.6 +id[15831] = "3000-04-03T02:34:20" +ik[15831] = 90 +il[15831] = 68 +im[15831] = 0.1097 +ij[15831] = 6 +id[15832] = "3000-05-03T06:13:36" +ik[15832] = 0.199 +il[15832] = 149 +im[15832] = 0.2359 +ij[15832] = 27.2 +id[15833] = "3000-06-06T03:35:22" +ik[15833] = 3.243 +il[15833] = -172 +im[15833] = 0.3495 +ij[15833] = 27.2 +id[15834] = "3000-06-11T00:00:00" +ik[15834] = 0.75 +il[15834] = -158 +im[15834] = 0.1836 +ij[15834] = 11 +id[15835] = "3000-08-20T02:02:30" +ik[15835] = 90 +il[15835] = -17 +im[15835] = 0.0673 +ij[15835] = 5 +id[15836] = "3000-09-05T15:12:19" +ik[15836] = 2.619 +il[15836] = 33 +im[15836] = 0.1157 +ij[15836] = 28.7 +id[15837] = "3000-10-15T03:34:59" +ik[15837] = 0.556 +il[15837] = 153 +im[15837] = 0.045 +ij[15837] = 28.8 +id[15838] = "3000-10-31T11:30:26" +ik[15838] = 54.216 +il[15838] = -156 +im[15838] = 0.0227 +ij[15838] = 8 +id[15839] = "3000-12-08T10:54:30" +ik[15839] = 0.771 +il[15839] = -39 +im[15839] = 0.0978 +ij[15839] = 28.6 +id[15840] = "3000-12-29T15:32:00" +ik[15840] = 1.004 +il[15840] = 28 +im[15840] = 0.041 +ij[15840] = 28.4 + +l = 15840; + + +woe = "E"; + +wc = 1; + + +for(c=1; c 5) +{ +wc = 1; +} + +if (wc ==1) +{ +cycle[c] = "A"; +} + +if (wc ==2) +{ +cycle[c] = "M"; +} + +if (wc ==3) +{ +cycle[c] = "O"; +} + +if (wc ==4) +{ +cycle[c] = "R"; +} + +if (wc ==5) +{ +cycle[c] = "E"; +} + + + + +} + + + +for(i=1; i", 710*x, ((au*20)-12)*y, false, 25, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +core.wait(0.07); + + +d = Math.floor(core.getJDay()); +r = d; + +while (d==r) +{ +r = Math.floor(core.getJDay()); +} + + + + + +if (r - d > sd -2) +{ + +if (r - d < sd +2) +{ +au = au + 1; +core.setDate(nsds); +if (au > 32) +{ +au = 1; +} +} +} + + +if (r - d < -115) +{ + + +if (r - d > -119) +{ +au = au - 1; +core.setDate(sds); +if (au < 1 ) +{ +au = 32 +} +} +} + +if (r - d == 817) +{ +q = 1; +ss = 1; +} + +if (r - d == 818) +{ +q = 1; +ss = 1; +} + + +LabelMgr.setLabelShow(txt1, false); + + + + +if (r - d == -817) +{ +q = 1; +ss = 0; +} + +if (r - d == -818) +{ +q = 1; +ss = 0; +} + + + + +} // end main screen + + + + + +txt1 = LabelMgr.labelScreen("-->", 710*x, ((au*20)-12)*y, false, 25, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); +core.wait(.05); + +LabelMgr.deleteAllLabels(); + +LandscapeMgr.setFlagAtmosphere(oatmo); +LandscapeMgr.getFlagLandscape(oland); + + + + + +// Basics + + + +StelMovementMgr.zoomTo(87, 1); + +SolarSystem.setLabelsAmount(20); +StelSkyDrawer.setFlagLuminanceAdaptation(false); +core.selectObjectByName("Earth", pointer = true); +StelMovementMgr.setFlagTracking(true); + + + +LandscapeMgr.setFlagAtmosphere(true); + +LandscapeMgr.setFlagLandscape(true); + +p = 0; + + + +// Label +if (ss == 0) +{ + + +txt1 = LabelMgr.labelScreen("Press + for next event", 700 * x, 400*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press - for previous event", 700*x, 440*y, false,15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Press [ go back to start date ", 700*x, 460*y,false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press ] go back to Main Menu", 700*x, 480*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +} + +else +{ +txt1 = LabelMgr.labelScreen("Press + - [ or ] for Main Menu ", 700*x, 460*y,false, 15,"#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} + + +// Pick where to start + +j = core.getJDay(); + +core.setDate("now"); +initj = core.getJDay(); + + + +core.setDate(id[f]); +jj = core.getJDay(); + +core.setDate(id[l]); +jjj = core.getJDay(); + + + + +if (j > jjj) +{ +core.setDate("now"); +} + +if (j < jj) +{ +core.setDate("now"); +} + + + +km = 1; +i = 1; + +j = core.getJDay(); + +while (km == 1) +{ +i = i + 1; + +core.setDate(id[i]); +jj = core.getJDay(); +if (jj +1> j) +{ +km = i; +} +} + + + + +q = 0; +p = 1; +i = i -1; + + + + +while(q == 0) +{ + + + +// program + + + +i = i + p; + +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} + + +if (au == 2) // Orbit +{ +ag = 0; + +if (ij[i] < 20) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] < 20) +{ +ag = 2; +} +} +} + + + +if (au == 3) // Opposition +{ +ag = 0; +if (ij[i] == 11) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 11) +{ +ag = 2; +} +} +} + +if (au == 4) // Quadratures +{ +ag = 0; +if (ij[i] == 5 || ij[i] == 6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 5 || ij[i] == 6) +{ +ag = 2; +} +} +} + + +if (au == 5) // Eastern Quadratures +{ +ag = 0; +if (ij[i] == 5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 5) +{ +ag = 2; +} +} +} + + +if (au == 6) // Western Quadratures +{ +ag = 0; +if (ij[i] == 6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 6) +{ +ag = 2; +} +} +} + + + + +if (au == 7) // CoQuads +{ +ag = 0; +if (ij[i] == 8 || ij[i] == 9) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 8 || ij[i] == 9) +{ +ag = 2; +} +} +} + + + +if (au == 8) // Eastern CoQuads +{ +ag = 0; +if (ij[i] == 8) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 8) +{ +ag = 2; +} +} +} + + + + +if (au == 9) // Western CoQuads +{ +ag = 0; +if (ij[i] == 2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 2) +{ +ag = 2; +} +} +} + + + +if (au == 10) // Retro +{ +ag = 0; + + +if (ij[i] == 13 || ij[i] == 14 || Math.floor(ij[i]) == 7) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 13 || ij[i] == 14 || Math.floor(ij[i]) == 7) +{ +ag = 2; +} +} +} + + +if (au == 11) //Sup conjunction +{ +ag = 0; +if (ij[i] == 12) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 12) +{ +ag = 2; +} +} +} + + +if (au == 12) //Moon elongations +{ +ag = 0; +if (ij[i] == 2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 2) +{ +ag = 2; +} +} +} + + + +if (au == 13) // Conjunctions +{ +ag = 0; +if (ij[i] > 20) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] > 20) +{ +ag = 2; +} +} +} + + + +if (au == 14) // Stars +{ +ag = 0; +if (Math.floor(ij[i]) == 27) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (Math.floor(ij[i]) == 27) +{ +ag = 2; +} +} +} + + +if (au == 15) // Aldebaran +{ +ag = 0; +if (ij[i] == 27.1) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.1) +{ +ag = 2; +} +} +} + + +if (au == 16) // Alpha Cap +{ +ag = 0; +if (ij[i] == 27.8) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.8) +{ +ag = 2; +} +} +} + + + + +if (au == 17) // Antares +{ +ag = 0; +if (ij[i] == 27.2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.2) +{ +ag = 2; +} +} +} + +if (au == 18) // Beehive +{ +ag = 0; +if (ij[i] == 27.3) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.3) +{ +ag = 2; +} +} +} + + +if (au == 19) // Circelt +{ +ag = 0; +if (ij[i] == 27.7) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.7) +{ +ag = 2; +} +} +} + +if (au == 20) // Lagoon +{ +ag = 0; +if (ij[i] == 27.9) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.9) +{ +ag = 2; +} +} +} + + + +if (au == 21) // Ple +{ +ag = 0; +if (ij[i] == 27.4) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.4) +{ +ag = 2; +} +} +} + + +if (au == 22) // Reg +{ +ag = 0; +if (ij[i] == 27.5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.5) +{ +ag = 2; +} +} +} + + +if (au == 23) // Spica +{ +ag = 0; +if (ij[i] == 27.6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.6) +{ +ag = 2; +} +} +} + + +if (au == 24) // Trifed Nebula +{ +ag = 0; +if (ij[i] == 27.91) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 27.91) +{ +ag = 2; +} +} +} + + + +if (au == 25) // Planets +{ +ag = 0; +if (Math.floor(ij[i]) == 28) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (Math.floor(ij[i]) == 28) +{ +ag = 2; +} +} +} + +if (au == 26) // Mercury +{ +ag = 0; +if (ij[i] == 28.1) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.1) +{ +ag = 2; +} +} +} + +if (au == 27) // Mars +{ +ag = 0; +if (ij[i] == 28.4) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.4) +{ +ag = 2; +} +} +} + +if (au == 28) // Jupiter +{ +ag = 0; +if (ij[i] == 28.5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.5) +{ +ag = 2; +} +} +} + + + + + +if (au == 29) // Saturn +{ +ag = 0; +if (ij[i] == 28.6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.6) +{ +ag = 2; +} +} +} + + +if (au == 30) // Uranus +{ +ag = 0; +if (ij[i] == 28.7) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.7) +{ +ag = 2; +} +} +} + + +if (au == 31) // Nep +{ +ag = 0; +if (ij[i] == 28.8) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.8) +{ +ag = 2; +} +} +} + + +if (au == 32) +{ +txt1 = LabelMgr.labelScreen("Later!!!", 400, 20, false, 75, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); +core.stopScript(); +} + + + + + +// #&!@)#& + + +// Find best times + + + +core.setDate(id[i]); + + + + +jd = core.getJDay(); + +d = jd - 2451543.5; + + +core.setObserverLocation(il[i], 30.1, 20, 0, "", "Venus"); + + + +// Sun + +w = 282.9404 + 0.0000470935 * d; +Me = 356.0470 + 0.9856002585 * d; +e = 0.016709 - 0.000000001151 * d; +wme = w + Me; +ob = 23.439281 - 0.0000003563 * d; +ob = ob * rad; + +if (wme < 0) +{ +while (wme < 0) +{ +wme = wme + 360; +} +} + +if (wme > 360) +{ +while (wme > 360) +{ +wme = wme - 360; +} +} + +EA = Me + (deg) * e * Math.sin(Me*rad) * (1 + e * Math.cos(Me*rad)); +xx = Math.cos(EA*rad) - e; +ysun = Math.sin(EA*rad) * Math.sqrt(1 - e*e); + +r = Math.sqrt(xx*xx + ysun*ysun); +rapp = r; +v = Math.atan2(ysun, xx) * deg; + +Lon = v + w; + +if (Lon < 0) +{ +while (Lon < 0) +{ +Lon = Lon + 360; +} +} + +if (Lon > 360) +{ +while (Lon > 360) +{ +Lon = Lon - 360; +} +} + +xx = r * Math.cos(Lon*rad); +ysun = r * Math.sin(Lon*rad); +z = 0.0; + +xe = xx; +ye = ysun * Math.cos(ob) + 0.0 * Math.sin(ob); +ze = ysun * Math.sin(ob) + 0.0 * Math.cos(ob); + +ra = Math.atan2( ye, xe ) * deg; +dec = Math.atan2( ze, Math.sqrt(xe*xe+ye*ye) )* deg; + +sundec = dec; +dd = dec + 50; + +if (ra<0) +{ +ra = (360+ra); +} + +sunra = ra; + +GMSTO = wme + 180; + +if (GMSTO > 360) +{ +GMSTO = GMSTO - 360; +} + + + + + + + +// Earth set + N = 76.6799 + 0.0000246590 * d + ii = 3.3946 + 0.0000000275 * d + w = 54.8910 + 0.0000138374 * d + a = 0.723330 + e = 0.006773 - 0.000000001302 * d + Me = 48.0052 + 1.6021302244 * d +Pet = 0 +pety = 0 + + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + +Mj = Me * rad; + + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + +Ms = Me * rad; + + + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + + + + + + +if (w<0) +{ +while (w >0) +{ +w = w + 360; +} +} + + +if (w>360) +{ +while (w <360) +{ +w = w - 360; +} +} + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + + + + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + + + +if (N<0) +{ +while (N >0) +{ +N = N + 360; +} +} + +if (N>360) +{ +while (N <360) +{ +N = N - 360; +} +} + +if (ii<0) +{ +while (ii >0) +{ +ii = ii + 360; +} +} + +if (ii>360) +{ +while (ii <360) +{ +ii = ii - 360; +} +} + +ii = ii * rad; + + + +Merad = Me * rad; +N = N * rad; +E4 = 0; +E0 = Me + e*(deg) * Math.sin(Merad) * ( 1.0 + e * Math.cos(Merad) ); + + +while (E4 == 0) +{ + +E2 = E0 * rad; +E1 = E0 - (E2 - (e * Math.sin(E2)) - (Me* rad)) / ( 1 - e * Math.cos(E2)); + + +if (Math.abs(E1-E0)< 0.000001) +{ +E4 = 1; +} +else +{ +E0 = E1; +} +} + + +E0 = E1 * rad // Might as well use E0 as Radians + +xx = a * (Math.cos(E0) - e); +yy = a * (Math.sqrt(1 - e*e))* Math.sin(E0); + +r = Math.sqrt(xx*xx + yy*yy ); // Distance from sun + +rsun[i] = r; + + +v = Math.atan2(yy, xx ); +v = v * deg; +v = v *rad + w * rad; + + +// The position in space + +pxe = r * ( Math.cos(N) * Math.cos(v) - Math.sin(N) * Math.sin(v) * Math.cos(ii)); +pye = r * ( Math.sin(N) * Math.cos(v) + Math.cos(N) * Math.sin(v) * Math.cos(ii)); +pze = r * Math.sin(v) * Math.sin(ii); + + +// Helio Lat and Long + Petrubs + +ra = Math.atan2(pye, pxe ) + pet * rad; +dec = Math.atan2(pze, Math.sqrt(pxe*pxe+pye*pye) ) + pety * rad; + +// convert to earth centered + +xx = r * Math.cos(ra) * Math.cos(dec); +yy = r * Math.sin(ra) * Math.cos(dec); +zz = r * Math.sin(dec); // Distance to sun in AU - Not needed in this script + +gxe = xe + xx; +gye = ysun + yy; +gze = zz; + +// Precession + +xx = gxe; +yy = gye*Math.cos(ob) - gze*Math.sin(ob); +zz = gye*Math.sin(ob) + gze*Math.cos(ob); + + +ra = Math.atan2(yy, xx ) * deg; + + +dec = Math.atan2(zz, Math.sqrt(xx*xx+yy*yy) )* deg; +r = Math.sqrt( xx*xx + yy*yy + zz*zz ); + + + +ltravel = r * 499.02; +jlight = ltravel / 86400; +d = d - jlight; + + +lhrs = Math.floor(ltravel / 3600); + +lmin = (ltravel - (lhrs * 3600))/60 + +lsec = (lmin - Math.floor(lmin)) * 60 + +lmin = Math.floor(lmin); +lsec = Math.floor(lsec); + + + +hstring = " hours "; +if (lhrs == 1) +{ +hstring = " hour "; +} + + +mstring = " minutes " +if (lmin == 1) +{ +mstring = " minute "; +} + + +sstring = " seconds " +if (lsec == 1) +{ +sstring = " second "; +} + + + +txt1 = LabelMgr.labelScreen("Light Travel Time: " + lmin + mstring + lsec + sstring, 700*x, 670*y, false, 15, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + + +stardec = dec; + +dd = (dec + 50) - dd; + +dd = dd.toFixed(3) + + + + +if (ra<0) +{ +ra = (360+ra); +} + +// Earth Phase + +fv[i] = (rsun[i]*rsun[i] + r*r - rapp*rapp) / (2*rsun[i]*r); +fv[i] = (Math.acos(fv[i])); +fv[i] = fv[i] * deg; + +// Earth Mag + +mag[i] = r*rsun[i]; +mag[i] = Math.log(mag[i]); +mag[i] = mag[i] / Math.log(10); +mag[i] = -3.88 + 5* mag[i] + 0.0124 * fv[i] + 0.00000042 * (fv[i] *fv[i]*fv[i] ); + + +// Earth Illum % +fvp[i] = (rapp*rapp + r*r - rsun[i]*rsun[i]) / (2*rapp*r); + +fvp[i] = (1 + fvp[i])/2; +fvp[i] = fvp[i] * 100; + + + +// Earth Mag +efv[i] = (rapp*rapp + r*r - rsun[i]*rsun[i]) / (2*rapp*r); +efv[i] = (Math.acos(efv[i] )); +efv[i] = 2/3 * ((1-(efv[i])/pi) * Math.cos(efv[i]) + (1/pi)*Math.sin(efv[i])); +efv[i] = (rapp * rapp * r * r)/efv[i]; +efv[i] = Math.log(efv[i]) / Math.log(10); +efv[i] = root * efv[i]; +mfv[i] = +0.21 + efv[i]; +emag[i] = -3.88 + efv[i]; + +tmag = Math.pow(root, -emag[i]) + Math.pow(root, -mfv[i]) + +tmag = Math.log(tmag) / Math.log(10) + + +tmag = -2.5 * tmag + + + + +// Reverse -Earth Phase + + +efv[i] = (rapp*rapp + r*r - rsun[i]*rsun[i]) / (2*rapp*r); +efv[i] = (Math.acos(efv[i] ) * deg); + +efv[i] = Math.cos(efv[i]*rad); +efv[i] = (1 + efv[i])/2; +efv[i] = efv[i] * 100; + + +// Earth Elong + +elong[i] = (rapp*rapp + r*r - rsun[i] * rsun[i]); +elong[i] = elong[i] / (2 * rapp * r); +elong[i] = Math.acos(elong[i]) * deg ; + +// west or east + + + +// n/a + + + + +txt1 = LabelMgr.labelScreen("Elongation:", 10*x, 530*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +if (fv[i] < 10) +{ +txt1 = LabelMgr.labelScreen(fv[i].toFixed(3) + degstring + woes[i], 205*x, 530*y, false, 20,"#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + +else + +if (fv[i] < 100) +{ +txt1 = LabelMgr.labelScreen(fv[i].toFixed(3) + degstring + woes[i], 195*x, 530*y, false, 20,"#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + +else + +{ +txt1 = LabelMgr.labelScreen(fv[i].toFixed(3) + degstring + woes[i], 185*x, 530*y, false, 20,"#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +} + + + + +txt1 = LabelMgr.labelScreen(fvp[i].toFixed(3)+"%", 195*x, 555*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Illumination:", 10*x, 555*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Total Magnitude:", 10*x, 580*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(tmag.toFixed(3), 200*x, 580*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + + +txt1 = LabelMgr.labelScreen("Earth Magnitude:", 10*x, 610*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(emag[i].toFixed(3), 200*x, 610*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Moon Magnitude:", 10*x, 640*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +if (mfv[i] < 0) +{ + +txt1 = LabelMgr.labelScreen(mfv[i].toFixed(3), 200*x, 640*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} +else +{ +txt1 = LabelMgr.labelScreen(mfv[i].toFixed(3), 205*x, 640*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + + + +txt1 = LabelMgr.labelScreen("Moon Elongation:", 10*x, 665*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(im[i].toFixed(3) + degstring, 205*x, 665*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + + + + + +if (il[i] > 0) +{ +txt1 = LabelMgr.labelScreen("Viewing Longitude: " + il[i] + "E", 10*x, 695*y, false, 20, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} +else +{ +txt1 = LabelMgr.labelScreen("Viewing Longitude: " + Math.abs(il[i])+"W", 10*x, 695*y, false, 20, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} + + + + +txt1 = LabelMgr.labelScreen("Cycle: "+ cycle[i], 10*x, 505*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + + + + + + +flo = Math.floor(ij[i]); + +// Yes an Array would be nice but for some !@^# reason it won't work so I have to do it the hard //way + +if (flo == 1) +{ +ename = "Eastern Greatest Elongation"; +} + +if (flo == 2) +{ +ename = "Greatest Moon Elongation "+ik[i].toFixed(4) + degstring; +} + +if (flo == 3) +{ +ename = "Western Greatest Brilliancy"; +} + +if (flo == 4) +{ +ename = "Western Greatest Elongation"; +} + +if (flo == 5) +{ +ename = "Eastern Quadrature"; +} + +if (flo == 6) +{ +ename = "Western Quadrature"; +} + +if (flo == 7) +{ +ename = "End Retrograde Motion after "+ ik[i] + " days and " + ((ij[i]-flo) * 100).toFixed(2) + degstring; + +} + +if (flo == 8) +{ +ename = "Eastern CoQuadrature"; +} + +if (flo == 9) +{ +ename = "Western CoQuadrature"; +} + + + +if (flo == 11) +{ +ename = "Opposition"; +} + +if (flo == 12) +{ +ename = "Superior Conjunction"; +} + + +if (flo == 13) +{ +ename = "Start Retrograde Motion"; +} + + +if (flo == 14) +{ +ename = "Regain lost after Retrograde Motion after "+ ik[i] + " days"; + +} + + + + +if (flo == 27) +{ +if (ij[i] == 27.1) +{ +ename = "Conjunction - Aldebaran "+ik[i].toFixed(3) + degstring ; +} +if (ij[i] == 27.2) +{ +ename = "Conjunction - Antares " +ik[i].toFixed(3) + degstring; +} +if (ij[i] == 27.3) +{ +ename = "Conjunction - Beehive "+ik[i].toFixed(3) + degstring; +} +if (ij[i] == 27.4) +{ +ename = "Conjunction - Pleiades "+ik[i].toFixed(3) + degstring ; +} +if (ij[i] == 27.5) +{ +ename = "Conjunction - Regulus "+ik[i].toFixed(3) + degstring; +} +if (ij[i] == 27.6) +{ +ename = "Conjunction - Spica "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.7) +{ +ename = "Conjunction - Circlet "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.8) +{ +ename = "Conjunction - Alpha Capricorn "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.9) +{ +ename = "Conjunction - Lagoon Nebulea "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.91) +{ +ename = "Conjunction - Lagoon Nebulea "+ik[i].toFixed(3) + degstring; +} + + + +//txt1 = LabelMgr.labelScreen(+ik[i].toFixed(3) + degstring, 340*x, 505*y, false, 20, "#00FF00"); +//LabelMgr.setLabelShow(txt1, true); + + +} + + + +if (flo == 28) +{ +if (ij[i] == 28.1) +{ +ename = "Conjunction - Mercury "+ik[i].toFixed(3) + degstring ; +} +if (ij[i] == 28.4) +{ +ename = "Conjunction - Mars "+ik[i].toFixed(3) + degstring ; +} + + +if (ij[i] == 28.5) +{ +ename = "Conjunction - Jupiter " +ik[i].toFixed(3) + degstring; +} +if (ij[i] == 28.6) +{ +ename = "Conjunction - Saturn " +ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 28.7) +{ +ename = "Conjunction - Uranus "+ik[i].toFixed(3) + degstring ; +} + + +if (ij[i] == 28.8) +{ +ename = "Conjunction - Neptune "+ik[i].toFixed(3) + degstring ; +} + + + + +} + + + + +txt1 = LabelMgr.labelScreen(ename, 450*x, 0*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(ename, 10*x, 475*y, false, 20, "#00FF71"); +LabelMgr.setLabelShow(txt1, true); + + + + +txt1 = LabelMgr.labelScreen("Julian Date:", 700*x, 635*y, false, 15, "#00FF71"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(core.getJDay().toFixed(3), 775*x, 635*y, false, 15, "#00FF71"); +LabelMgr.setLabelShow(txt1, true); + + + + +// Wait for Keypress + + +d = Math.floor(core.getJDay()); +r = d; + + +pak = 0 + +if (ss ==1) +{ +while (pak < spd) +{ +core.wait(0.25); +pak = pak + 1; + +r = Math.floor(core.getJDay()); + +if (Math.abs(r-d) > 0) +{ +pak = spd + 1; +core.setDate(sws); + + +if (Math.abs(initj - r) < 2) +{ + + +i = km - p +} +else +{ + + + +q = 1; +} + + +} +} +r = Math.floor(core.getJDay()) + 1; +} + + + +while (d == r) +{ +r = Math.floor(core.getJDay()); +} + +LabelMgr.deleteAllLabels(); + +if (r - d == -117) +{ +p = - 1; +} + +if (r - d == -116) +{ +p = - 1; +} + + +if (r - d == 117) +{ +p = 1; +} + + +if (r - d == 116) +{ +p = 1; +} + +// Start +if (r - d == 816) +{ +//if (id[km].substring(10,11) == "T") +//{ +//core.setDate(id[km]); +//} +//else +//{ +//tt = id[km] + "T12:00:00"; +//core.setDate(tt,"local"); +//} +q = 1; +} + + +if (r - d == 817) +{ +q = 1; +} + + +//t +if (r - d == -818) +{ +i = km - p +} + +if (r - d == -817) +{ +i = km - p +} + + +LabelMgr.deleteAllLabels(); + +} +} + + +txt1 = LabelMgr.labelScreen("Later!!!", 400, 20, false, 75, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); + +core.wait(2); + +LabelMgr.deleteAllLabels(); + + diff -Nru stellarium-0.12.1/scripts/earth_4.ssc stellarium-0.12.4/scripts/earth_4.ssc --- stellarium-0.12.1/scripts/earth_4.ssc 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/scripts/earth_4.ssc 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,69635 @@ +// Author: Qam1 +// Name: Earth Events from Mars +// License: Public Domain +// Version: 5.1 +// Description: Earth Events from Mars + +// Made on Stellarium 0.12.1 + + +spd = 3; // speed for screen saver mode in seconds +long = -73.4 +lat = 30.1 + +y = core.getScreenHeight()/768; +x = core.getScreenWidth()/1024; +wt = 0.05; +q = 0; + +pi = 3.14159265358979323846264338327950288419716939937510; +rad = pi/180; +deg = 180/pi; +root = Math.pow(100,0.2); + + +degstring = "\u00B0"; + + +ah = "7777-07-07T07:07:07"; //why o why is this necessary?? + +id = new Array(length= 24000); +ik = new Array(length= 24000); +ij = new Array(length= 24000); +il = new Array(length= 24000); +im = new Array(length= 24000); +fv = new Array(length= 24000); +fvp = new Array(length= 24000); +efv = new Array(length= 24000); +mfv = new Array(length= 24000); +emag = new Array(length= 24000); +elong = new Array(length = 24000); +oes = new Array(length= 24000); +mag = new Array(length = 24000); +woes = new Array(length = 24000); +rsun = new Array(length = 24000); + + +wc = 5 + +pet = 0; + +LabelMgr.deleteAllLabels(); + + +core.setObserverLocation(long, 30.1, 20, 1, "", "Mars"); + + +core.selectObjectByName("Earth", pointer = true); +StelMovementMgr.setFlagTracking(true); + + + +spd = spd * 4; + +p = 0; +f = 1; + + +sd = 1; +sds = "+1 days"; +nsds ="-1 days"; + +sw = 7; +sws = "+7 days"; +nsws ="-7 days"; + +// Data + +id[1] = "2000-01-03T21:48:12" +ik[1] = 0.572 +il[1] = 109 +im[1] = 0.0818 +ij[1] = 27.5 +id[2] = "2000-02-05T07:11:20" +ik[2] = -26.084 +il[2] = -77 +im[2] = 0.0501 +ij[2] = 15 +id[3] = "2000-03-14T18:03:21" +ik[3] = 2.183 +il[3] = 130 +im[3] = 0.0622 +ij[3] = 27.6 +id[4] = "2000-06-08T01:41:48" +ik[4] = 12 +il[4] = 115 +im[4] = 0.0521 +ij[4] = 18 +id[5] = "2000-07-01T14:43:33" +ik[5] = 0.87 +il[5] = 149 +im[5] = 0.0035 +ij[5] = 12 +id[6] = "2000-10-23T04:37:51" +ik[6] = 25.429 +il[6] = 154 +im[6] = 0.0164 +ij[6] = 16 +id[7] = "2000-12-17T00:07:33" +ik[7] = 30.713 +il[7] = 29 +im[7] = 0.0514 +ij[7] = 8 +id[8] = "2001-02-03T21:04:23" +ik[8] = 0.806 +il[8] = -178 +im[8] = 0.0329 +ij[8] = 28.6 +id[9] = "2001-02-14T10:33:22" +ik[9] = 5.167 +il[9] = 81 +im[9] = 0.0244 +ij[9] = 27.4 +id[10] = "2001-02-19T01:56:23" +ik[10] = 0.291 +il[10] = -106 +im[10] = 0.0799 +ij[10] = 28.5 +id[11] = "2001-03-05T19:34:53" +ik[11] = 38.216 +il[11] = 129 +im[11] = 0.0799 +ij[11] = 3 +id[12] = "2001-03-06T02:42:50" +ik[12] = 4.67 +il[12] = 25 +im[12] = 0.0863 +ij[12] = 27.1 +id[13] = "2001-03-12T16:36:44" +ik[13] = -1.715 +il[13] = -121 +im[13] = 0.0863 +ij[13] = 2 +id[14] = "2001-04-06T09:57:14" +ik[14] = 23 +il[14] = -147 +im[14] = 0.1639 +ij[14] = 17 +id[15] = "2001-05-13T00:03:17" +ik[15] = 0 +il[15] = -12 +im[15] = 0.1208 +ij[15] = 13 +id[16] = "2001-05-27T00:50:10" +ik[16] = 0.396 +il[16] = 98 +im[16] = 0.1381 +ij[16] = 28.1 +id[17] = "2001-05-28T00:55:33" +ik[17] = 0 +il[17] = 106 +im[17] = 0.1961 +ij[17] = 18 +id[18] = "2001-06-13T13:41:20" +ik[18] = 3.07 +il[18] = 61 +im[18] = 0.3362 +ij[18] = 11 +id[19] = "2001-07-19T14:11:49" +ik[19] = 4.376 +il[19] = -142 +im[19] = 0.1166 +ij[19] = 28.2 +id[20] = "2001-07-19T23:05:53" +ik[20] = 67.96 +il[20] = 88 +im[20] = 0.1386 +ij[20] = 7.1114 +id[21] = "2001-09-04T14:29:38" +ik[21] = 114.6 +il[21] = -45 +im[21] = 0.2138 +ij[21] = 14 +id[22] = "2001-09-08T07:08:45" +ik[22] = 0 +il[22] = 102 +im[22] = 0.1414 +ij[22] = 17 +id[23] = "2001-09-15T09:49:38" +ik[23] = -2.351 +il[23] = 132 +im[23] = 0.1346 +ij[23] = 4 +id[24] = "2001-10-04T00:52:06" +ik[24] = 2.539 +il[24] = 90 +im[24] = 0.1665 +ij[24] = 28.5 +id[25] = "2001-10-07T18:29:57" +ik[25] = 46.282 +il[25] = -138 +im[25] = 0.0862 +ij[25] = 1 +id[26] = "2001-11-07T09:10:33" +ik[26] = 0.662 +il[26] = -57 +im[26] = 0.0161 +ij[26] = 27.3 +id[27] = "2001-12-08T17:36:45" +ik[27] = 0.728 +il[27] = 123 +im[27] = 0.0516 +ij[27] = 27.5 +id[28] = "2002-01-13T03:59:23" +ik[28] = -26.214 +il[28] = -50 +im[28] = 0.0882 +ij[28] = 15 +id[29] = "2002-02-06T00:00:53" +ik[29] = 33.932 +il[29] = -123 +im[29] = 0.0651 +ij[29] = 9 +id[30] = "2002-02-21T01:10:37" +ik[30] = 1.906 +il[30] = 3 +im[30] = 0.0556 +ij[30] = 27.6 +id[31] = "2002-04-28T04:51:41" +ik[31] = 3.765 +il[31] = -146 +im[31] = 0.0183 +ij[31] = 27.2 +id[32] = "2002-05-10T19:30:19" +ik[32] = 0.43 +il[32] = 124 +im[32] = 0.047 +ij[32] = 28.2 +id[33] = "2002-05-12T10:56:43" +ik[33] = 3.881 +il[33] = -91 +im[33] = 0.0298 +ij[33] = 28.1 +id[34] = "2002-05-20T14:01:05" +ik[34] = 12 +il[34] = -68 +im[34] = 0.0557 +ij[34] = 18 +id[35] = "2002-08-10T22:47:07" +ik[35] = 1.14 +il[35] = -126 +im[35] = 0.0257 +ij[35] = 12 +id[36] = "2002-10-05T05:41:48" +ik[36] = 25.617 +il[36] = 146 +im[36] = 0.0036 +ij[36] = 16 +id[37] = "2002-12-05T13:52:51" +ik[37] = 0.344 +il[37] = -98 +im[37] = 0.053 +ij[37] = 28.2 +id[38] = "2003-01-16T21:00:52" +ik[38] = 4.692 +il[38] = -162 +im[38] = 0.0467 +ij[38] = 27.4 +id[39] = "2003-01-21T18:50:39" +ik[39] = 31.667 +il[39] = -83 +im[39] = 0.0745 +ij[39] = 8 +id[40] = "2003-02-01T06:38:10" +ik[40] = 5.09 +il[40] = -161 +im[40] = 0.072 +ij[40] = 27.1 +id[41] = "2003-02-20T13:16:12" +ik[41] = 0.848 +il[41] = -77 +im[41] = 0.0773 +ij[41] = 28.6 +id[42] = "2003-02-21T11:53:30" +ik[42] = 23 +il[42] = -48 +im[42] = 0.0669 +ij[42] = 17 +id[43] = "2003-05-04T09:52:04" +ik[43] = 0.326 +il[43] = -57 +im[43] = 0.1268 +ij[43] = 27.3 +id[44] = "2003-05-08T13:35:35" +ik[44] = 0.785 +il[44] = -73 +im[44] = 0.013 +ij[44] = 28.5 +id[45] = "2003-05-10T20:39:50" +ik[45] = 43.147 +il[45] = -158 +im[45] = 0.0687 +ij[45] = 3 +id[46] = "2003-06-08T19:58:33" +ik[46] = -2.168 +il[46] = 128 +im[46] = 0.113 +ij[46] = 2 +id[47] = "2003-06-15T22:19:16" +ik[47] = 3.02 +il[47] = 160 +im[47] = 0.1531 +ij[47] = 27.5 +id[48] = "2003-07-29T14:30:08" +ik[48] = 0 +il[48] = -24 +im[48] = 0.1725 +ij[48] = 13 +id[49] = "2003-08-05T21:33:32" +ik[49] = 4.828 +il[49] = -59 +im[49] = 0.3308 +ij[49] = 28.1 +id[50] = "2003-08-28T20:19:33" +ik[50] = 6.42 +il[50] = 168 +im[50] = 0.0968 +ij[50] = 11 +id[51] = "2003-09-28T13:32:44" +ik[51] = 60.96 +il[51] = 46 +im[51] = 0.2912 +ij[51] = 7.1068 +id[52] = "2003-10-10T21:05:44" +ik[52] = 3.629 +il[52] = 53 +im[52] = 0.2433 +ij[52] = 27.5 +id[53] = "2003-11-09T01:03:28" +ik[53] = 102.44 +il[53] = -83 +im[53] = 0.2077 +ij[53] = 14 +id[54] = "2003-11-19T07:25:40" +ik[54] = -2.162 +il[54] = -79 +im[54] = 0.0266 +ij[54] = 4 +id[55] = "2003-11-20T16:16:13" +ik[55] = 0.248 +il[55] = 162 +im[55] = 0.0806 +ij[55] = 28.5 +id[56] = "2003-12-14T09:07:55" +ik[56] = 42.285 +il[56] = 136 +im[56] = 0.0907 +ij[56] = 1 +id[57] = "2003-12-14T22:53:31" +ik[57] = -26.156 +il[57] = -65 +im[57] = 0.0738 +ij[57] = 15 +id[58] = "2004-01-24T19:49:39" +ik[58] = 1.532 +il[58] = 11 +im[58] = 0.0728 +ij[58] = 27.6 +id[59] = "2004-03-24T18:59:06" +ik[59] = 32.257 +il[59] = -130 +im[59] = 0.0194 +ij[59] = 9 +id[60] = "2004-04-05T16:25:14" +ik[60] = 3.412 +il[60] = 20 +im[60] = 0.0556 +ij[60] = 27.2 +id[61] = "2004-04-30T02:04:51" +ik[61] = 12 +il[61] = 109 +im[61] = 0.065 +ij[61] = 18 +id[62] = "2004-05-04T16:33:07" +ik[62] = 1.545 +il[62] = -69 +im[62] = 0.0456 +ij[62] = 28.2 +id[63] = "2004-07-11T00:15:11" +ik[63] = 0.12 +il[63] = 102 +im[63] = 0.0596 +ij[63] = 28.1 +id[64] = "2004-09-15T14:15:07" +ik[64] = 0.96 +il[64] = 180 +im[64] = 0.0114 +ij[64] = 12 +id[65] = "2004-09-16T19:22:00" +ik[65] = 25.759 +il[65] = -47 +im[65] = 0.0251 +ij[65] = 16 +id[66] = "2004-12-05T22:12:38" +ik[66] = 1.742 +il[66] = -34 +im[66] = 0.0492 +ij[66] = 28.2 +id[67] = "2004-12-25T09:55:25" +ik[67] = 4.375 +il[67] = -14 +im[67] = 0.0243 +ij[67] = 27.4 +id[68] = "2005-01-08T20:01:10" +ik[68] = 5.395 +il[68] = -37 +im[68] = 0.0167 +ij[68] = 27.1 +id[69] = "2005-01-28T05:11:07" +ik[69] = 0 +il[69] = 17 +im[69] = 0.072 +ij[69] = 17 +id[70] = "2005-03-06T13:31:32" +ik[70] = 33.723 +il[70] = -116 +im[70] = 0.008 +ij[70] = 8 +id[71] = "2005-03-07T15:38:51" +ik[71] = 0.498 +il[71] = -139 +im[71] = 0.0261 +ij[71] = 28.6 +id[72] = "2005-03-31T00:06:44" +ik[72] = 0.197 +il[72] = -42 +im[72] = 0.072 +ij[72] = 27.3 +id[73] = "2005-04-30T22:42:15" +ik[73] = 1.146 +il[73] = -87 +im[73] = 0.0412 +ij[73] = 27.5 +id[74] = "2005-05-29T11:33:25" +ik[74] = -24.604 +il[74] = -7 +im[74] = 0.0511 +ij[74] = 15 +id[75] = "2005-06-25T23:35:48" +ik[75] = 0.957 +il[75] = 77 +im[75] = 0.09 +ij[75] = 28.5 +id[76] = "2005-07-13T05:07:52" +ik[76] = 47.377 +il[76] = 161 +im[76] = 0.0459 +ij[76] = 3 +id[77] = "2005-07-18T00:42:34" +ik[77] = 4.751 +il[77] = -85 +im[77] = 0.1087 +ij[77] = 27.6 +id[78] = "2005-08-10T20:15:28" +ik[78] = -2.364 +il[78] = -146 +im[78] = 0.0551 +ij[78] = 2 +id[79] = "2005-10-02T00:14:05" +ik[79] = 2.727 +il[79] = -54 +im[79] = 0.2553 +ij[79] = 28.2 +id[80] = "2005-10-02T01:03:59" +ik[80] = 0 +il[80] = -66 +im[80] = 0.2543 +ij[80] = 13 +id[81] = "2005-10-22T15:48:22" +ik[81] = 2.483 +il[81] = -89 +im[81] = 0.2206 +ij[81] = 28.1 +id[82] = "2005-11-07T08:55:07" +ik[82] = 0.26 +il[82] = 157 +im[82] = 0.2796 +ij[82] = 11 +id[83] = "2005-12-04T03:11:10" +ik[83] = 1.775 +il[83] = -36 +im[83] = 0.2264 +ij[83] = 28.5 +id[84] = "2005-12-09T04:11:43" +ik[84] = 68.13 +il[84] = -2 +im[84] = 0.1567 +ij[84] = 7.1334 +id[85] = "2006-01-15T02:14:32" +ik[85] = 2.439 +il[85] = 16 +im[85] = 0.1671 +ij[85] = 28.5 +id[86] = "2006-01-31T02:19:33" +ik[86] = 121.05 +il[86] = 165 +im[86] = 0.1282 +ij[86] = 14 +id[87] = "2006-01-31T18:50:08" +ik[87] = -1.759 +il[87] = -76 +im[87] = 0.1218 +ij[87] = 4 +id[88] = "2006-02-13T09:45:47" +ik[88] = 38.468 +il[88] = 179 +im[88] = 0.1313 +ij[88] = 1 +id[89] = "2006-03-08T23:09:53" +ik[89] = 2.795 +il[89] = -160 +im[89] = 0.0584 +ij[89] = 27.2 +id[90] = "2006-04-07T14:58:11" +ik[90] = 12 +il[90] = -118 +im[90] = 0.0639 +ij[90] = 18 +id[91] = "2006-05-03T01:39:32" +ik[91] = 31.394 +il[91] = -38 +im[91] = 0.0107 +ij[91] = 9 +id[92] = "2006-07-02T12:09:53" +ik[92] = 6.17 +il[92] = 18 +im[92] = 0.0421 +ij[92] = 28.1 +id[93] = "2006-07-05T12:54:49" +ik[93] = 0.935 +il[93] = 41 +im[93] = 0.0615 +ij[93] = 28.8 +id[94] = "2006-08-13T12:36:51" +ik[94] = 0.126 +il[94] = 53 +im[94] = 0.0304 +ij[94] = 28.7 +id[95] = "2006-08-30T08:16:54" +ik[95] = 25.88 +il[95] = -69 +im[95] = 0.0478 +ij[95] = 16 +id[96] = "2006-10-23T07:50:14" +ik[96] = 0.38 +il[96] = 110 +im[96] = 0.0131 +ij[96] = 12 +id[97] = "2007-01-08T07:38:52" +ik[97] = 0 +il[97] = -34 +im[97] = 0.0641 +ij[97] = 17 +id[98] = "2007-03-07T20:59:23" +ik[98] = 0.264 +il[98] = -30 +im[98] = 0.0749 +ij[98] = 27.3 +id[99] = "2007-03-22T19:23:29" +ik[99] = 0.139 +il[99] = 137 +im[99] = 0.0707 +ij[99] = 28.6 +id[100] = "2007-04-06T06:17:45" +ik[100] = 0.816 +il[100] = 111 +im[100] = 0.081 +ij[100] = 27.5 +id[101] = "2007-05-05T12:30:20" +ik[101] = -25.253 +il[101] = -61 +im[101] = 0.0869 +ij[101] = 15 +id[102] = "2007-05-13T04:46:12" +ik[102] = 36.111 +il[102] = 129 +im[102] = 0.0062 +ij[102] = 8 +id[103] = "2007-06-16T14:34:21" +ik[103] = 3.56 +il[103] = -43 +im[103] = 0.0913 +ij[103] = 27.6 +id[104] = "2007-08-23T02:40:23" +ik[104] = 5.461 +il[104] = 78 +im[104] = 0.0315 +ij[104] = 27.2 +id[105] = "2007-08-23T15:03:57" +ik[105] = 0.341 +il[105] = -103 +im[105] = 0.0433 +ij[105] = 28.5 +id[106] = "2007-08-28T20:16:48" +ik[106] = 44.346 +il[106] = -130 +im[106] = 0.1202 +ij[106] = 3 +id[107] = "2007-09-12T22:52:07" +ik[107] = 11 +il[107] = -21 +im[107] = 0.1386 +ij[107] = 18 +id[108] = "2007-09-15T14:20:49" +ik[108] = -2.074 +il[108] = 133 +im[108] = 0.1058 +ij[108] = 2 +id[109] = "2007-11-16T02:20:03" +ik[109] = 0 +il[109] = -168 +im[109] = 0.0711 +ij[109] = 13 +id[110] = "2007-12-24T19:04:01" +ik[110] = 3.16 +il[110] = -66 +im[110] = 0.0414 +ij[110] = 11 +id[111] = "2007-12-31T17:29:28" +ik[111] = 12 +il[111] = -144 +im[111] = 0.2453 +ij[111] = 17 +id[112] = "2008-01-20T07:09:12" +ik[112] = 3.122 +il[112] = -179 +im[112] = 0.0164 +ij[112] = 28.2 +id[113] = "2008-01-31T10:31:40" +ik[113] = 76.34 +il[113] = -123 +im[113] = 0.0994 +ij[113] = 7.1574 +id[114] = "2008-02-29T00:36:29" +ik[114] = 12 +il[114] = -74 +im[114] = 0.051 +ij[114] = 18 +id[115] = "2008-03-26T14:37:43" +ik[115] = -1.582 +il[115] = -33 +im[115] = 0.0746 +ij[115] = 4 +id[116] = "2008-03-30T15:41:54" +ik[116] = 37.08 +il[116] = -11 +im[116] = 0.0169 +ij[116] = 1 +id[117] = "2008-04-04T05:24:30" +ik[117] = 140.13 +il[117] = -179 +im[117] = 0.0951 +ij[117] = 14 +id[118] = "2008-04-24T17:30:36" +ik[118] = 1.462 +il[118] = -161 +im[118] = 0.0499 +ij[118] = 28.5 +id[119] = "2008-06-08T00:27:32" +ik[119] = 31.403 +il[119] = 179 +im[119] = 0.0016 +ij[119] = 9 +id[120] = "2008-06-21T15:59:27" +ik[120] = 0.85 +il[120] = 54 +im[120] = 0.0266 +ij[120] = 28.8 +id[121] = "2008-08-06T18:19:34" +ik[121] = 0.04 +il[121] = 103 +im[121] = 0.0321 +ij[121] = 28.7 +id[122] = "2008-08-11T07:38:51" +ik[122] = 25.994 +il[122] = -52 +im[122] = 0.0655 +ij[122] = 16 +id[123] = "2008-09-07T21:00:25" +ik[123] = 1.806 +il[123] = 15 +im[123] = 0.0582 +ij[123] = 28.1 +id[124] = "2008-09-12T03:05:39" +ik[124] = 0.47 +il[124] = -36 +im[124] = 0.0559 +ij[124] = 28.2 +id[125] = "2008-09-24T12:03:46" +ik[125] = 1.794 +il[125] = -50 +im[125] = 0.0574 +ij[125] = 28.1 +id[126] = "2008-12-05T21:09:21" +ik[126] = 0.46 +il[126] = 180 +im[126] = 0.0602 +ij[126] = 12 +id[127] = "2008-12-19T12:28:15" +ik[127] = 0 +il[127] = -113 +im[127] = 0.0601 +ij[127] = 17 +id[128] = "2009-02-14T07:10:06" +ik[128] = 0.254 +il[128] = 157 +im[128] = 0.0628 +ij[128] = 27.3 +id[129] = "2009-03-02T00:17:34" +ik[129] = 0.666 +il[129] = 57 +im[129] = 0.0631 +ij[129] = 28.1 +id[130] = "2009-03-15T01:57:17" +ik[130] = 0.679 +il[130] = 163 +im[130] = 0.0646 +ij[130] = 27.5 +id[131] = "2009-04-05T00:43:08" +ik[131] = 0.872 +il[131] = 19 +im[131] = 0.0324 +ij[131] = 28.6 +id[132] = "2009-04-13T19:28:17" +ik[132] = -25.551 +il[132] = -172 +im[132] = 0.0704 +ij[132] = 15 +id[133] = "2009-04-23T10:35:11" +ik[133] = 0.902 +il[133] = 55 +im[133] = 0.0143 +ij[133] = 28.2 +id[134] = "2009-05-23T21:35:11" +ik[134] = 3.067 +il[134] = -172 +im[134] = 0.0355 +ij[134] = 27.6 +id[135] = "2009-06-20T09:16:36" +ik[135] = 1.459 +il[135] = -78 +im[135] = 0.0152 +ij[135] = 28.2 +id[136] = "2009-07-26T11:59:03" +ik[136] = 4.937 +il[136] = -124 +im[136] = 0.0735 +ij[136] = 27.2 +id[137] = "2009-07-31T06:03:59" +ik[137] = 35.053 +il[137] = 11 +im[137] = 0.0143 +ij[137] = 8 +id[138] = "2009-08-14T15:56:25" +ik[138] = 11 +il[138] = 4 +im[138] = 0.0293 +ij[138] = 18 +id[139] = "2009-10-14T17:28:53" +ik[139] = 39.858 +il[139] = -145 +im[139] = 0.0647 +ij[139] = 3 +id[140] = "2009-10-15T20:30:37" +ik[140] = -1.808 +il[140] = -180 +im[140] = 0.0862 +ij[140] = 2 +id[141] = "2009-12-05T05:06:14" +ik[141] = 3.148 +il[141] = 179 +im[141] = 0.0664 +ij[141] = 28.5 +id[142] = "2009-12-16T17:52:00" +ik[142] = 5.173 +il[142] = 99 +im[142] = 0.1448 +ij[142] = 28.8 +id[143] = "2009-12-22T05:24:58" +ik[143] = 0 +il[143] = -21 +im[143] = 0.0494 +ij[143] = 13 +id[144] = "2010-01-29T19:22:41" +ik[144] = 4.33 +il[144] = 120 +im[144] = 0.0311 +ij[144] = 11 +id[145] = "2010-02-13T13:01:10" +ik[145] = 2.007 +il[145] = 154 +im[145] = 0.0601 +ij[145] = 28.1 +id[146] = "2010-03-12T04:27:34" +ik[146] = 79.96 +il[146] = 167 +im[146] = 0.0381 +ij[146] = 7.1898 +id[147] = "2010-05-09T23:12:46" +ik[147] = 37.454 +il[147] = 86 +im[147] = 0.0788 +ij[147] = 1 +id[148] = "2010-05-11T22:06:37" +ik[148] = -1.568 +il[148] = 122 +im[148] = 0.1005 +ij[148] = 4 +id[149] = "2010-05-18T09:20:24" +ik[149] = 147.16 +il[149] = 15 +im[149] = 0.0452 +ij[149] = 14 +id[150] = "2010-06-04T19:10:29" +ik[150] = 0.835 +il[150] = 35 +im[150] = 0.0251 +ij[150] = 28.8 +id[151] = "2010-07-17T08:10:38" +ik[151] = 32.259 +il[151] = -109 +im[151] = 0.0242 +ij[151] = 9 +id[152] = "2010-07-22T20:11:46" +ik[152] = 26.103 +il[152] = 124 +im[152] = 0.0778 +ij[152] = 16 +id[153] = "2010-07-30T13:01:08" +ik[153] = 0.267 +il[153] = -53 +im[153] = 0.0095 +ij[153] = 28.7 +id[154] = "2010-08-04T03:09:46" +ik[154] = 0.703 +il[154] = 139 +im[154] = 0.056 +ij[154] = 28.5 +id[155] = "2010-08-19T19:59:18" +ik[155] = 0.924 +il[155] = 39 +im[155] = 0.0714 +ij[155] = 28.2 +id[156] = "2010-10-05T10:59:32" +ik[156] = 1.211 +il[156] = -92 +im[156] = 0.0551 +ij[156] = 28.2 +id[157] = "2010-10-28T03:14:37" +ik[157] = 3.614 +il[157] = -115 +im[157] = 0.0355 +ij[157] = 27.4 +id[158] = "2010-11-10T20:24:36" +ik[158] = 6.123 +il[158] = 121 +im[158] = 0.0381 +ij[158] = 27.1 +id[159] = "2010-11-20T20:25:50" +ik[159] = 1.786 +il[159] = -135 +im[159] = 0.0313 +ij[159] = 28.1 +id[160] = "2010-11-30T21:25:47" +ik[160] = 0 +il[160] = -57 +im[160] = 0.0588 +ij[160] = 17 +id[161] = "2011-02-04T17:13:48" +ik[161] = 1.07 +il[161] = -47 +im[161] = 0.0207 +ij[161] = 12 +id[162] = "2011-03-25T05:45:09" +ik[162] = -25.743 +il[162] = 28 +im[162] = 0.0615 +ij[162] = 15 +id[163] = "2011-05-03T09:30:03" +ik[163] = 2.757 +il[163] = 5 +im[163] = 0.0227 +ij[163] = 27.6 +id[164] = "2011-05-21T02:53:50" +ik[164] = 1.8 +il[164] = -84 +im[164] = 0.0598 +ij[164] = 28.1 +id[165] = "2011-05-23T08:31:01" +ik[165] = 2.031 +il[165] = -142 +im[165] = 0.0655 +ij[165] = 28.2 +id[166] = "2011-07-05T05:30:36" +ik[166] = 4.609 +il[166] = -37 +im[166] = 0.0637 +ij[166] = 27.2 +id[167] = "2011-07-24T16:47:03" +ik[167] = 12 +il[167] = -17 +im[167] = 0.0416 +ij[167] = 18 +id[168] = "2011-09-23T10:32:52" +ik[168] = 32.592 +il[168] = -54 +im[168] = 0.0069 +ij[168] = 8 +id[169] = "2011-11-07T10:27:04" +ik[169] = 1.117 +il[169] = 23 +im[169] = 0.0651 +ij[169] = 28.8 +id[170] = "2011-11-17T17:48:51" +ik[170] = -1.645 +il[170] = 12 +im[170] = 0.0355 +ij[170] = 2 +id[171] = "2011-11-25T17:21:50" +ik[171] = 37.083 +il[171] = 96 +im[171] = 0.1012 +ij[171] = 3 +id[172] = "2012-01-23T09:20:53" +ik[172] = 0 +il[172] = 63 +im[172] = 0.1308 +ij[172] = 13 +id[173] = "2012-02-01T20:22:29" +ik[173] = 1.741 +il[173] = -11 +im[173] = 0.1809 +ij[173] = 28.2 +id[174] = "2012-03-03T20:45:21" +ik[174] = 3.98 +il[174] = -100 +im[174] = 0.1887 +ij[174] = 11 +id[175] = "2012-04-14T14:29:30" +ik[175] = 82.21 +il[175] = 173 +im[175] = 0.0774 +ij[175] = 7.2104 +id[176] = "2012-04-21T01:43:35" +ik[176] = 2.264 +il[176] = 67 +im[176] = 0.1462 +ij[176] = 28.8 +id[177] = "2012-06-18T09:36:51" +ik[177] = 39.387 +il[177] = 153 +im[177] = 0.1155 +ij[177] = 1 +id[178] = "2012-06-19T20:05:18" +ik[178] = 148.45 +il[178] = 10 +im[178] = 0.1138 +ij[178] = 14 +id[179] = "2012-06-24T05:39:05" +ik[179] = -1.689 +il[179] = -91 +im[179] = 0.0528 +ij[179] = 4 +id[180] = "2012-06-28T18:05:57" +ik[180] = 26.164 +il[180] = 126 +im[180] = 0.052 +ij[180] = 16 +id[181] = "2012-07-19T01:55:30" +ik[181] = 0.588 +il[181] = -154 +im[181] = 0.0933 +ij[181] = 28.7 +id[182] = "2012-09-02T01:09:18" +ik[182] = 33.902 +il[182] = -64 +im[182] = 0.0518 +ij[182] = 9 +id[183] = "2012-10-07T00:21:07" +ik[183] = 3.273 +il[183] = -71 +im[183] = 0.0392 +ij[183] = 27.4 +id[184] = "2012-10-20T23:18:34" +ik[184] = 6.443 +il[184] = 81 +im[184] = 0.0384 +ij[184] = 27.1 +id[185] = "2012-10-28T12:28:25" +ik[185] = 1.252 +il[185] = -43 +im[185] = 0.061 +ij[185] = 28.5 +id[186] = "2012-11-10T18:28:28" +ik[186] = 0 +il[186] = -3 +im[186] = 0.0668 +ij[186] = 17 +id[187] = "2013-01-04T14:49:19" +ik[187] = 0.135 +il[187] = -129 +im[187] = 0.0564 +ij[187] = 27.3 +id[188] = "2013-03-04T22:26:24" +ik[188] = -25.895 +il[188] = -7 +im[188] = 0.0592 +ij[188] = 15 +id[189] = "2013-04-18T02:36:28" +ik[189] = 0.39 +il[189] = 8 +im[189] = 0.0631 +ij[189] = 12 +id[190] = "2013-07-04T15:24:48" +ik[190] = 12 +il[190] = 14 +im[190] = 0.0229 +ij[190] = 18 +id[191] = "2013-07-25T07:31:46" +ik[191] = 3.431 +il[191] = -31 +im[191] = 0.0506 +ij[191] = 28.1 +id[192] = "2013-10-20T01:11:14" +ik[192] = 0.712 +il[192] = -179 +im[192] = 0.0681 +ij[192] = 28.8 +id[193] = "2013-10-31T18:49:18" +ik[193] = 31.084 +il[193] = 36 +im[193] = 0.0314 +ij[193] = 8 +id[194] = "2013-12-24T20:49:19" +ik[194] = -1.582 +il[194] = 168 +im[194] = 0.0264 +ij[194] = 2 +id[195] = "2013-12-25T06:23:06" +ik[195] = 1.315 +il[195] = 28 +im[195] = 0.0183 +ij[195] = 28.7 +id[196] = "2014-01-02T23:30:46" +ik[196] = 36.171 +il[196] = -145 +im[196] = 0.095 +ij[196] = 3 +id[197] = "2014-02-28T20:05:46" +ik[197] = 0 +il[197] = 91 +im[197] = 0.1393 +ij[197] = 13 +id[198] = "2014-04-08T22:13:22" +ik[198] = 2.27 +il[198] = 57 +im[198] = 0.2391 +ij[198] = 11 +id[199] = "2014-04-23T16:06:31" +ik[199] = 1.248 +il[199] = 80 +im[199] = 0.1798 +ij[199] = 28.7 +id[200] = "2014-05-11T08:54:51" +ik[200] = 0.336 +il[200] = -11 +im[200] = 0.0125 +ij[200] = 28.2 +id[201] = "2014-05-20T19:10:22" +ik[201] = 80.96 +il[201] = -73 +im[201] = 0.1471 +ij[201] = 7.1908 +id[202] = "2014-06-06T19:27:03" +ik[202] = 25.187 +il[202] = 88 +im[202] = 0.0464 +ij[202] = 16 +id[203] = "2014-06-25T03:05:56" +ik[203] = 0.973 +il[203] = 151 +im[203] = 0.1258 +ij[203] = 28.7 +id[204] = "2014-07-19T05:40:20" +ik[204] = 140.4 +il[204] = -13 +im[204] = 0.0048 +ij[204] = 14 +id[205] = "2014-08-01T14:42:13" +ik[205] = -1.935 +il[205] = -18 +im[205] = 0.0485 +ij[205] = 4 +id[206] = "2014-08-01T22:59:48" +ik[206] = 42.794 +il[206] = -139 +im[206] = 0.0399 +ij[206] = 1 +id[207] = "2014-09-13T19:08:35" +ik[207] = 2.718 +il[207] = -22 +im[207] = 0.0134 +ij[207] = 27.4 +id[208] = "2014-10-21T03:49:12" +ik[208] = 0 +il[208] = -146 +im[208] = 0.0939 +ij[208] = 17 +id[209] = "2014-11-05T10:36:25" +ik[209] = 35.479 +il[209] = -98 +im[209] = 0.0799 +ij[209] = 9 +id[210] = "2014-12-14T17:17:05" +ik[210] = 0.006 +il[210] = -171 +im[210] = 0.0597 +ij[210] = 27.3 +id[211] = "2015-01-01T19:43:05" +ik[211] = 0.188 +il[211] = -29 +im[211] = 0.074 +ij[211] = 28.5 +id[212] = "2015-01-12T11:39:41" +ik[212] = 0.557 +il[212] = -164 +im[212] = 0.0504 +ij[212] = 27.5 +id[213] = "2015-02-13T06:58:27" +ik[213] = -26.033 +il[213] = -141 +im[213] = 0.0648 +ij[213] = 15 +id[214] = "2015-02-22T06:57:20" +ik[214] = 0.741 +il[214] = -52 +im[214] = 0.0191 +ij[214] = 28.2 +id[215] = "2015-03-23T17:36:36" +ik[215] = 2.276 +il[215] = 70 +im[215] = 0.0252 +ij[215] = 27.6 +id[216] = "2015-06-14T14:06:15" +ik[216] = 0.61 +il[216] = -157 +im[216] = 0.0246 +ij[216] = 12 +id[217] = "2015-06-16T05:42:14" +ik[217] = 12 +il[217] = 157 +im[217] = 0.0068 +ij[217] = 18 +id[218] = "2015-08-31T15:58:49" +ik[218] = 1.292 +il[218] = 35 +im[218] = 0.0419 +ij[218] = 28.2 +id[219] = "2015-10-07T02:29:35" +ik[219] = 0.446 +il[219] = -125 +im[219] = 0.0313 +ij[219] = 28.8 +id[220] = "2015-10-31T13:22:56" +ik[220] = 25.333 +il[220] = -52 +im[220] = 0.0647 +ij[220] = 16 +id[221] = "2015-11-03T07:11:14" +ik[221] = 0.356 +il[221] = 67 +im[221] = 0.0502 +ij[221] = 28.2 +id[222] = "2015-12-04T22:52:51" +ik[222] = 30.622 +il[222] = 137 +im[222] = 0.0182 +ij[222] = 8 +id[223] = "2015-12-11T01:07:30" +ik[223] = 0.758 +il[223] = 162 +im[223] = 0.0672 +ij[223] = 28.7 +id[224] = "2016-02-14T12:51:07" +ik[224] = -1.638 +il[224] = -107 +im[224] = 0.0142 +ij[224] = 2 +id[225] = "2016-02-15T00:17:42" +ik[225] = 37.174 +il[225] = 86 +im[225] = 0.0063 +ij[225] = 3 +id[226] = "2016-03-06T06:41:03" +ik[226] = 5.42 +il[226] = -177 +im[226] = 0.1292 +ij[226] = 27.4 +id[227] = "2016-04-09T18:21:05" +ik[227] = 5.018 +il[227] = -24 +im[227] = 0.0537 +ij[227] = 27.1 +id[228] = "2016-04-18T05:40:49" +ik[228] = 0 +il[228] = -114 +im[228] = 0.2327 +ij[228] = 13 +id[229] = "2016-05-22T10:26:42" +ik[229] = 0.96 +il[229] = 124 +im[229] = 0.0452 +ij[229] = 11 +id[230] = "2016-06-09T19:35:16" +ik[230] = 3.301 +il[230] = -39 +im[230] = 0.2883 +ij[230] = 28.1 +id[231] = "2016-06-30T04:43:25" +ik[231] = 72.96 +il[231] = 22 +im[231] = 0.0582 +ij[231] = 7.1333 +id[232] = "2016-08-02T12:48:41" +ik[232] = 1.282 +il[232] = -133 +im[232] = 0.1833 +ij[232] = 27.4 +id[233] = "2016-08-19T10:57:08" +ik[233] = 123.22 +il[233] = 60 +im[233] = 0.172 +ij[233] = 14 +id[234] = "2016-08-31T09:24:01" +ik[234] = -2.257 +il[234] = -159 +im[234] = 0.1601 +ij[234] = 4 +id[235] = "2016-09-17T15:44:47" +ik[235] = 46.122 +il[235] = -85 +im[235] = 0.1367 +ij[235] = 1 +id[236] = "2016-09-24T08:40:00" +ik[236] = 0 +il[236] = 87 +im[236] = 0.0413 +ij[236] = 17 +id[237] = "2016-11-19T12:27:47" +ik[237] = 0.345 +il[237] = -137 +im[237] = 0.0093 +ij[237] = 27.3 +id[238] = "2016-12-19T11:45:16" +ik[238] = 0.629 +il[238] = 167 +im[238] = 0.0157 +ij[238] = 27.5 +id[239] = "2017-01-14T01:42:38" +ik[239] = 34.689 +il[239] = -154 +im[239] = 0.0469 +ij[239] = 9 +id[240] = "2017-01-22T07:06:24" +ik[240] = -26.169 +il[240] = -155 +im[240] = 0.0771 +ij[240] = 15 +id[241] = "2017-02-10T13:20:00" +ik[241] = 1.953 +il[241] = -64 +im[241] = 0.0608 +ij[241] = 28.2 +id[242] = "2017-02-27T13:23:42" +ik[242] = 1.058 +il[242] = 98 +im[242] = 0.0372 +ij[242] = 28.5 +id[243] = "2017-03-01T21:33:59" +ik[243] = 2.02 +il[243] = -2 +im[243] = 0.005 +ij[243] = 27.6 +id[244] = "2017-05-06T00:53:05" +ik[244] = 3.875 +il[244] = -144 +im[244] = 0.0609 +ij[244] = 27.2 +id[245] = "2017-05-27T21:25:19" +ik[245] = 12 +il[245] = 114 +im[245] = 0.0116 +ij[245] = 18 +id[246] = "2017-07-27T00:06:16" +ik[246] = 1.1 +il[246] = -69 +im[246] = 0.0402 +ij[246] = 12 +id[247] = "2017-10-05T16:49:36" +ik[247] = 0.305 +il[247] = -158 +im[247] = 0.0214 +ij[247] = 28.2 +id[248] = "2017-10-12T03:55:48" +ik[248] = 25.552 +il[248] = 102 +im[248] = 0.0529 +ij[248] = 16 +id[249] = "2017-12-01T09:54:08" +ik[249] = 0.418 +il[249] = 137 +im[249] = 0.0147 +ij[249] = 28.7 +id[250] = "2018-01-07T06:54:38" +ik[250] = 31.165 +il[250] = 175 +im[250] = 0.0597 +ij[250] = 8 +id[251] = "2018-01-26T13:35:09" +ik[251] = 4.848 +il[251] = -102 +im[251] = 0.0074 +ij[251] = 27.4 +id[252] = "2018-02-11T19:08:25" +ik[252] = 4.943 +il[252] = -31 +im[252] = 0.0471 +ij[252] = 27.1 +id[253] = "2018-03-05T03:40:35" +ik[253] = 23 +il[253] = 43 +im[253] = 0.0917 +ij[253] = 17 +id[254] = "2018-04-12T05:52:48" +ik[254] = 40.81 +il[254] = 10 +im[254] = 0.1179 +ij[254] = 3 +id[255] = "2018-05-03T22:19:09" +ik[255] = -1.946 +il[255] = -31 +im[255] = 0.0858 +ij[255] = 2 +id[256] = "2018-06-07T10:37:26" +ik[256] = 2.103 +il[256] = 111 +im[256] = 0.194 +ij[256] = 27.3 +id[257] = "2018-06-21T12:51:02" +ik[257] = 1.62 +il[257] = -179 +im[257] = 0.2686 +ij[257] = 28.2 +id[258] = "2018-06-27T10:57:38" +ik[258] = 0 +il[258] = -64 +im[258] = 0.2259 +ij[258] = 13 +id[259] = "2018-07-05T00:09:51" +ik[259] = 3.098 +il[259] = 170 +im[259] = 0.2632 +ij[259] = 28.1 +id[260] = "2018-07-27T02:24:02" +ik[260] = 6.28 +il[260] = -23 +im[260] = 0.078 +ij[260] = 11 +id[261] = "2018-08-29T10:00:13" +ik[261] = 62.96 +il[261] = 13 +im[261] = 0.3238 +ij[261] = 7.0973 +id[262] = "2018-10-05T18:29:59" +ik[262] = 2.355 +il[262] = -107 +im[262] = 0.0741 +ij[262] = 27.3 +id[263] = "2018-10-09T18:57:01" +ik[263] = 104.33 +il[263] = -74 +im[263] = 0.2149 +ij[263] = 14 +id[264] = "2018-10-19T23:52:29" +ik[264] = -2.32 +il[264] = -48 +im[264] = 0.0639 +ij[264] = 4 +id[265] = "2018-11-15T18:54:43" +ik[265] = 44.312 +il[265] = -72 +im[265] = 0.0147 +ij[265] = 1 +id[266] = "2018-11-16T04:33:49" +ik[266] = 1.21 +il[266] = 147 +im[266] = 0.0029 +ij[266] = 27.5 +id[267] = "2018-12-27T23:40:16" +ik[267] = -26.253 +il[267] = -97 +im[267] = 0.0203 +ij[267] = 15 +id[268] = "2019-02-05T18:50:02" +ik[268] = 1.692 +il[268] = -4 +im[268] = 0.0842 +ij[268] = 27.6 +id[269] = "2019-03-08T15:53:18" +ik[269] = 32.824 +il[269] = -28 +im[269] = 0.0489 +ij[269] = 9 +id[270] = "2019-04-15T11:52:43" +ik[270] = 3.568 +il[270] = 29 +im[270] = 0.0649 +ij[270] = 27.2 +id[271] = "2019-05-05T21:44:23" +ik[271] = 1.142 +il[271] = 74 +im[271] = 0.0298 +ij[271] = 28.5 +id[272] = "2019-05-08T22:24:41" +ik[272] = 12 +il[272] = 97 +im[272] = 0.0133 +ij[272] = 18 +id[273] = "2019-06-14T15:40:26" +ik[273] = 1.197 +il[273] = -179 +im[273] = 0.05 +ij[273] = 28.6 +id[274] = "2019-06-18T18:11:30" +ik[274] = 0.125 +il[274] = -168 +im[274] = 0.0086 +ij[274] = 28.1 +id[275] = "2019-09-02T11:30:43" +ik[275] = 1.08 +il[275] = -57 +im[275] = 0.0355 +ij[275] = 12 +id[276] = "2019-09-24T14:36:41" +ik[276] = 25.708 +il[276] = -45 +im[276] = 0.0413 +ij[276] = 16 +id[277] = "2019-11-21T12:45:18" +ik[277] = 5.229 +il[277] = -179 +im[277] = 0.0381 +ij[277] = 28.1 +id[278] = "2019-11-24T16:36:43" +ik[278] = 0.148 +il[278] = 157 +im[278] = 0.0048 +ij[278] = 28.7 +id[279] = "2020-01-03T10:50:43" +ik[279] = 4.487 +il[279] = -95 +im[279] = 0.0505 +ij[279] = 27.4 +id[280] = "2020-01-18T03:37:31" +ik[280] = 5.287 +il[280] = 152 +im[280] = 0.0399 +ij[280] = 27.1 +id[281] = "2020-02-06T16:43:17" +ik[281] = 0 +il[281] = 140 +im[281] = 0.0243 +ij[281] = 17 +id[282] = "2020-02-16T09:11:31" +ik[282] = 32.788 +il[282] = -15 +im[282] = 0.0366 +ij[282] = 8 +id[283] = "2020-04-10T18:51:39" +ik[283] = 0.107 +il[283] = -5 +im[283] = 0.0944 +ij[283] = 27.3 +id[284] = "2020-05-13T06:09:18" +ik[284] = 1.446 +il[284] = 134 +im[284] = 0.0503 +ij[284] = 27.5 +id[285] = "2020-06-22T00:29:39" +ik[285] = 46.59 +il[285] = -121 +im[285] = 0.164 +ij[285] = 3 +id[286] = "2020-07-22T08:44:57" +ik[286] = -2.388 +il[286] = 49 +im[286] = 0.1622 +ij[286] = 2 +id[287] = "2020-08-15T14:15:56" +ik[287] = 6.161 +il[287] = -158 +im[287] = 0.2496 +ij[287] = 27.6 +id[288] = "2020-09-08T18:57:32" +ik[288] = 0 +il[288] = 8 +im[288] = 0.1688 +ij[288] = 13 +id[289] = "2020-09-24T05:14:50" +ik[289] = 4.317 +il[289] = 6 +im[289] = 0.3124 +ij[289] = 28.1 +id[290] = "2020-10-14T02:08:03" +ik[290] = 2.8 +il[290] = -127 +im[290] = 0.2054 +ij[290] = 11 +id[291] = "2020-11-02T13:45:10" +ik[291] = 6.179 +il[291] = 80 +im[291] = 0.2349 +ij[291] = 28.1 +id[292] = "2020-11-09T15:39:35" +ik[292] = 0.417 +il[292] = 119 +im[292] = 0.1973 +ij[292] = 28.2 +id[293] = "2020-11-13T01:09:24" +ik[293] = 65.26 +il[293] = 9 +im[293] = 0.0285 +ij[293] = 7.126 +id[294] = "2020-12-01T02:14:22" +ik[294] = -24.229 +il[294] = 166 +im[294] = 0.207 +ij[294] = 15 +id[295] = "2020-12-24T08:49:29" +ik[295] = 1.351 +il[295] = -72 +im[295] = 0.0219 +ij[295] = 27.6 +id[296] = "2020-12-30T11:49:10" +ik[296] = 112.7 +il[296] = -58 +im[296] = 0.1649 +ij[296] = 14 +id[297] = "2021-01-05T10:03:11" +ik[297] = -1.89 +il[297] = 24 +im[297] = 0.0703 +ij[297] = 4 +id[298] = "2021-01-22T17:39:41" +ik[298] = 39.634 +il[298] = 74 +im[298] = 0.0379 +ij[298] = 1 +id[299] = "2021-03-21T06:35:17" +ik[299] = 3.093 +il[299] = 62 +im[299] = 0.0269 +ij[299] = 27.2 +id[300] = "2021-04-17T01:14:17" +ik[300] = 12 +il[300] = 35 +im[300] = 0.0075 +ij[300] = 18 +id[301] = "2021-04-18T08:35:31" +ik[301] = 31.625 +il[301] = -63 +im[301] = 0.0133 +ij[301] = 9 +id[302] = "2021-07-01T13:04:05" +ik[302] = 0.409 +il[302] = -149 +im[302] = 0.0502 +ij[302] = 28.6 +id[303] = "2021-07-13T14:04:03" +ik[303] = 0.629 +il[303] = -49 +im[303] = 0.0139 +ij[303] = 28.2 +id[304] = "2021-07-29T15:36:03" +ik[304] = 0.015 +il[304] = 92 +im[304] = 0.0424 +ij[304] = 28.5 +id[305] = "2021-09-06T05:24:50" +ik[305] = 25.836 +il[305] = -106 +im[305] = 0.0202 +ij[305] = 16 +id[306] = "2021-10-08T05:14:43" +ik[306] = 0.65 +il[306] = -144 +im[306] = 0.0214 +ij[306] = 12 +id[307] = "2021-12-13T11:48:16" +ik[307] = 4.214 +il[307] = -125 +im[307] = 0.0408 +ij[307] = 27.4 +id[308] = "2021-12-27T15:06:02" +ik[308] = 5.55 +il[308] = -41 +im[308] = 0.0518 +ij[308] = 27.1 +id[309] = "2022-01-15T22:23:33" +ik[309] = 0 +il[309] = 32 +im[309] = 0.0112 +ij[309] = 17 +id[310] = "2022-02-08T07:19:33" +ik[310] = 1.579 +il[310] = 130 +im[310] = 0.0587 +ij[310] = 28.2 +id[311] = "2022-03-16T11:42:18" +ik[311] = 0.252 +il[311] = 48 +im[311] = 0.0344 +ij[311] = 27.3 +id[312] = "2022-04-13T00:49:44" +ik[312] = 35.331 +il[312] = 113 +im[312] = 0.012 +ij[312] = 8 +id[313] = "2022-04-15T06:51:48" +ik[313] = 0.907 +il[313] = 44 +im[313] = 0.0487 +ij[313] = 27.5 +id[314] = "2022-05-14T07:35:16" +ik[314] = -25.07 +il[314] = -48 +im[314] = 0.0535 +ij[314] = 15 +id[315] = "2022-06-26T23:29:31" +ik[315] = 3.873 +il[315] = 136 +im[315] = 0.0874 +ij[315] = 27.6 +id[316] = "2022-08-10T11:18:40" +ik[316] = 46.08 +il[316] = 35 +im[316] = 0.1119 +ij[316] = 3 +id[317] = "2022-09-02T23:12:32" +ik[317] = -2.198 +il[317] = 87 +im[317] = 0.0205 +ij[317] = 2 +id[318] = "2022-09-08T04:35:50" +ik[318] = 5.756 +il[318] = 57 +im[318] = 0.1379 +ij[318] = 27.2 +id[319] = "2022-10-08T08:51:14" +ik[319] = 11 +il[319] = -71 +im[319] = 0.1929 +ij[319] = 18 +id[320] = "2022-10-31T11:49:40" +ik[320] = 0 +il[320] = 110 +im[320] = 0.1212 +ij[320] = 13 +id[321] = "2022-11-08T22:00:53" +ik[321] = 12 +il[321] = 39 +im[321] = 0.1405 +ij[321] = 17 +id[322] = "2022-12-08T04:31:10" +ik[322] = 2.1 +il[322] = -156 +im[322] = 0.0027 +ij[322] = 11 +id[323] = "2022-12-27T05:35:23" +ik[323] = 1.807 +il[323] = -161 +im[323] = 0.2237 +ij[323] = 27.2 +id[324] = "2023-01-12T18:00:25" +ik[324] = 73.26 +il[324] = 157 +im[324] = 0.2036 +ij[324] = 7.1464 +id[325] = "2023-01-30T15:16:45" +ik[325] = 1.849 +il[325] = 7 +im[325] = 0.0205 +ij[325] = 27.2 +id[326] = "2023-03-07T20:15:39" +ik[326] = -1.629 +il[326] = -87 +im[326] = 0.1262 +ij[326] = 4 +id[327] = "2023-03-14T07:02:04" +ik[327] = 133.8 +il[327] = 172 +im[327] = 0.0227 +ij[327] = 14 +id[328] = "2023-03-14T19:11:42" +ik[328] = 37.387 +il[328] = -5 +im[328] = 0.0099 +ij[328] = 1 +id[329] = "2023-03-20T09:22:47" +ik[329] = 12 +il[329] = -166 +im[329] = 0.0996 +ij[329] = 18 +id[330] = "2023-05-25T15:23:57" +ik[330] = 31.299 +il[330] = 11 +im[330] = 0.0138 +ij[330] = 9 +id[331] = "2023-07-04T15:27:26" +ik[331] = 0.995 +il[331] = 32 +im[331] = 0.0292 +ij[331] = 28.2 +id[332] = "2023-07-20T19:58:43" +ik[332] = 0.537 +il[332] = 121 +im[332] = 0.0071 +ij[332] = 28.6 +id[333] = "2023-08-16T02:07:07" +ik[333] = 2.418 +il[333] = -80 +im[333] = 0.0353 +ij[333] = 28.1 +id[334] = "2023-08-19T11:58:49" +ik[334] = 25.952 +il[334] = 165 +im[334] = 0.0058 +ij[334] = 16 +id[335] = "2023-08-22T19:59:48" +ik[335] = 0.502 +il[335] = 77 +im[335] = 0.0421 +ij[335] = 28.8 +id[336] = "2023-11-18T05:16:30" +ik[336] = 0.11 +il[336] = 88 +im[336] = 0.0493 +ij[336] = 12 +id[337] = "2023-12-27T20:03:08" +ik[337] = 0 +il[337] = 65 +im[337] = 0.0225 +ij[337] = 17 +id[338] = "2024-01-27T16:24:45" +ik[338] = 0.277 +il[338] = 58 +im[338] = 0.0437 +ij[338] = 28.1 +id[339] = "2024-02-22T09:27:18" +ik[339] = 1.189 +il[339] = 47 +im[339] = 0.0056 +ij[339] = 28.2 +id[340] = "2024-02-23T05:20:55" +ik[340] = 0.263 +il[340] = 116 +im[340] = 0.015 +ij[340] = 27.3 +id[341] = "2024-03-23T04:37:21" +ik[341] = 0.721 +il[341] = 55 +im[341] = 0.0129 +ij[341] = 27.5 +id[342] = "2024-04-21T17:50:14" +ik[342] = -25.454 +il[342] = 142 +im[342] = 0.0186 +ij[342] = 15 +id[343] = "2024-06-01T10:06:21" +ik[343] = 3.226 +il[343] = -66 +im[343] = 0.0265 +ij[343] = 27.6 +id[344] = "2024-07-02T13:07:31" +ik[344] = 35.937 +il[344] = -165 +im[344] = 0.0175 +ij[344] = 8 +id[345] = "2024-08-04T20:18:14" +ik[345] = 5.107 +il[345] = 54 +im[345] = 0.0889 +ij[345] = 27.2 +id[346] = "2024-08-24T03:15:45" +ik[346] = 11 +il[346] = 138 +im[346] = 0.074 +ij[346] = 18 +id[347] = "2024-09-26T14:08:44" +ik[347] = 41.468 +il[347] = -59 +im[347] = 0.028 +ij[347] = 3 +id[348] = "2024-10-03T16:34:20" +ik[348] = -1.9 +il[348] = -26 +im[348] = 0.1269 +ij[348] = 2 +id[349] = "2024-12-07T07:02:32" +ik[349] = 0 +il[349] = 23 +im[349] = 0.0707 +ij[349] = 13 +id[350] = "2024-12-12T09:59:43" +ik[350] = 0.422 +il[350] = 28 +im[350] = 0.1891 +ij[350] = 28.2 +id[351] = "2025-01-16T02:02:43" +ik[351] = 4.09 +il[351] = 101 +im[351] = 0.1019 +ij[351] = 11 +id[352] = "2025-02-25T06:05:08" +ik[352] = 79.96 +il[352] = -135 +im[352] = 0.0393 +ij[352] = 7.1772 +id[353] = "2025-04-24T08:34:20" +ik[353] = -1.556 +il[353] = 12 +im[353] = 0.0709 +ij[353] = 4 +id[354] = "2025-04-24T13:25:40" +ik[354] = 37.119 +il[354] = -59 +im[354] = 0.0742 +ij[354] = 1 +id[355] = "2025-05-02T22:56:57" +ik[355] = 146.66 +il[355] = -122 +im[355] = 0.0242 +ij[355] = 14 +id[356] = "2025-07-01T10:43:57" +ik[356] = 31.822 +il[356] = -87 +im[356] = 0.0224 +ij[356] = 9 +id[357] = "2025-07-30T18:03:39" +ik[357] = 26.064 +il[357] = 86 +im[357] = 0.0284 +ij[357] = 16 +id[358] = "2025-08-09T01:10:22" +ik[358] = 1.517 +il[358] = 69 +im[358] = 0.0504 +ij[358] = 28.6 +id[359] = "2025-08-09T21:21:28" +ik[359] = 0.789 +il[359] = 135 +im[359] = 0.0406 +ij[359] = 28.8 +id[360] = "2025-10-20T02:55:53" +ik[360] = 1.904 +il[360] = 24 +im[360] = 0.0393 +ij[360] = 28.1 +id[361] = "2025-12-08T05:29:44" +ik[361] = 0 +il[361] = 113 +im[361] = 0.0349 +ij[361] = 17 +id[362] = "2026-01-09T09:26:17" +ik[362] = 0.94 +il[362] = 22 +im[362] = 0.0607 +ij[362] = 12 +id[363] = "2026-04-01T20:16:05" +ik[363] = -25.676 +il[363] = 96 +im[363] = 0.0177 +ij[363] = 15 +id[364] = "2026-04-20T20:14:57" +ik[364] = 1.635 +il[364] = -70 +im[364] = 0.0573 +ij[364] = 28.1 +id[365] = "2026-05-11T07:19:12" +ik[365] = 2.866 +il[365] = -32 +im[365] = 0.0486 +ij[365] = 27.6 +id[366] = "2026-07-13T06:45:55" +ik[366] = 4.724 +il[366] = -126 +im[366] = 0.0281 +ij[366] = 27.2 +id[367] = "2026-08-01T13:50:17" +ik[367] = 12 +il[367] = -44 +im[367] = 0.0737 +ij[367] = 18 +id[368] = "2026-09-04T22:11:04" +ik[368] = 33.475 +il[368] = 165 +im[368] = 0.0341 +ij[368] = 8 +id[369] = "2026-11-04T14:14:47" +ik[369] = -1.696 +il[369] = 152 +im[369] = 0.0463 +ij[369] = 2 +id[370] = "2026-11-10T01:00:37" +ik[370] = 37.94 +il[370] = 43 +im[370] = 0.1126 +ij[370] = 3 +id[371] = "2027-01-09T22:57:25" +ik[371] = 0 +il[371] = -57 +im[371] = 0.0868 +ij[371] = 13 +id[372] = "2027-02-19T16:01:50" +ik[372] = 4.27 +il[372] = 58 +im[372] = 0.0649 +ij[372] = 11 +id[373] = "2027-03-12T04:29:56" +ik[373] = 2.183 +il[373] = -140 +im[373] = 0.194 +ij[373] = 28.1 +id[374] = "2027-03-19T20:30:01" +ik[374] = 2.077 +il[374] = 42 +im[374] = 0.0156 +ij[374] = 28.2 +id[375] = "2027-04-02T22:00:01" +ik[375] = 82.96 +il[375] = 153 +im[375] = 0.0175 +ij[375] = 7.2057 +id[376] = "2027-06-03T08:32:38" +ik[376] = 38.443 +il[376] = -133 +im[376] = 0.101 +ij[376] = 1 +id[377] = "2027-06-08T03:12:35" +ik[377] = -1.626 +il[377] = -7 +im[377] = 0.0611 +ij[377] = 4 +id[378] = "2027-06-09T03:01:38" +ik[378] = 150.17 +il[378] = 5 +im[378] = 0.0402 +ij[378] = 14 +id[379] = "2027-07-09T11:58:48" +ik[379] = 26.159 +il[379] = 179 +im[379] = 0.0092 +ij[379] = 16 +id[380] = "2027-07-26T11:57:01" +ik[380] = 1.131 +il[380] = -29 +im[380] = 0.0355 +ij[380] = 28.8 +id[381] = "2027-08-13T22:43:57" +ik[381] = 33.181 +il[381] = -11 +im[381] = 0.0836 +ij[381] = 9 +id[382] = "2027-08-29T05:13:59" +ik[382] = 2.374 +il[382] = 40 +im[382] = 0.0715 +ij[382] = 28.6 +id[383] = "2027-10-16T03:26:30" +ik[383] = 3.421 +il[383] = 174 +im[383] = 0.0361 +ij[383] = 27.4 +id[384] = "2027-10-28T17:33:40" +ik[384] = 0.827 +il[384] = 85 +im[384] = 0.047 +ij[384] = 28.7 +id[385] = "2027-10-30T00:00:42" +ik[385] = 6.305 +il[385] = 0 +im[385] = 0.0322 +ij[385] = 27.1 +id[386] = "2027-11-19T09:47:26" +ik[386] = 0 +il[386] = 53 +im[386] = 0.0411 +ij[386] = 17 +id[387] = "2027-11-25T01:03:22" +ik[387] = 0.582 +il[387] = -121 +im[387] = 0.0591 +ij[387] = 28.2 +id[388] = "2028-03-12T12:35:10" +ik[388] = -25.84 +il[388] = 67 +im[388] = 0.0195 +ij[388] = 15 +id[389] = "2028-03-21T06:16:57" +ik[389] = 0.81 +il[389] = -102 +im[389] = 0.0524 +ij[389] = 12 +id[390] = "2028-06-13T21:10:50" +ik[390] = 0.303 +il[390] = -62 +im[390] = 0.0644 +ij[390] = 28.2 +id[391] = "2028-06-17T14:19:08" +ik[391] = 1.744 +il[391] = 77 +im[391] = 0.0439 +ij[391] = 28.1 +id[392] = "2028-06-22T04:09:34" +ik[392] = 4.449 +il[392] = -89 +im[392] = 0.0139 +ij[392] = 27.2 +id[393] = "2028-06-24T13:58:17" +ik[393] = 1.875 +il[393] = 146 +im[393] = 0.0421 +ij[393] = 28.1 +id[394] = "2028-07-11T23:38:50" +ik[394] = 12 +il[394] = 174 +im[394] = 0.0655 +ij[394] = 18 +id[395] = "2028-09-08T02:00:14" +ik[395] = 1.714 +il[395] = -18 +im[395] = 0.0717 +ij[395] = 28.2 +id[396] = "2028-10-17T11:27:03" +ik[396] = 31.546 +il[396] = -139 +im[396] = 0.055 +ij[396] = 8 +id[397] = "2028-12-09T01:15:15" +ik[397] = -1.594 +il[397] = 162 +im[397] = 0.0196 +ij[397] = 2 +id[398] = "2028-12-18T15:58:36" +ik[398] = 36.313 +il[398] = 34 +im[398] = 0.0948 +ij[398] = 3 +id[399] = "2029-01-06T01:11:36" +ik[399] = 1.054 +il[399] = 74 +im[399] = 0.0263 +ij[399] = 28.8 +id[400] = "2029-02-14T03:02:05" +ik[400] = 0 +il[400] = 63 +im[400] = 0.1211 +ij[400] = 13 +id[401] = "2029-03-25T08:19:37" +ik[401] = 3.11 +il[401] = -26 +im[401] = 0.2021 +ij[401] = 11 +id[402] = "2029-05-06T02:04:41" +ik[402] = 80.96 +il[402] = -107 +im[402] = 0.1035 +ij[402] = 7.2044 +id[403] = "2029-06-11T19:04:54" +ik[403] = 25.962 +il[403] = -6 +im[403] = 0.1426 +ij[403] = 16 +id[404] = "2029-07-03T03:51:17" +ik[404] = 1.525 +il[404] = 70 +im[404] = 0.0182 +ij[404] = 28.8 +id[405] = "2029-07-07T23:06:31" +ik[405] = 143.84 +il[405] = -172 +im[405] = 0.0954 +ij[405] = 14 +id[406] = "2029-07-15T00:32:41" +ik[406] = 41.313 +il[406] = -124 +im[406] = 0.0756 +ij[406] = 1 +id[407] = "2029-07-19T04:52:09" +ik[407] = -1.825 +il[407] = -149 +im[407] = 0.0309 +ij[407] = 4 +id[408] = "2029-09-15T20:24:34" +ik[408] = 2.943 +il[408] = -170 +im[408] = 0.0551 +ij[408] = 28.6 +id[409] = "2029-09-23T13:09:59" +ik[409] = 2.978 +il[409] = 14 +im[409] = 0.071 +ij[409] = 27.4 +id[410] = "2029-10-09T01:10:10" +ik[410] = 35.017 +il[410] = -14 +im[410] = 0.0479 +ij[410] = 9 +id[411] = "2029-10-19T02:46:15" +ik[411] = 1.161 +il[411] = 60 +im[411] = 0.086 +ij[411] = 28.7 +id[412] = "2029-10-29T13:17:09" +ik[412] = 0 +il[412] = 5 +im[412] = 0.0403 +ij[412] = 17 +id[413] = "2029-11-30T16:55:30" +ik[413] = 0.526 +il[413] = -93 +im[413] = 0.0681 +ij[413] = 28.2 +id[414] = "2029-12-23T03:46:37" +ik[414] = 0.063 +il[414] = -35 +im[414] = 0.0148 +ij[414] = 27.3 +id[415] = "2030-01-20T18:12:43" +ik[415] = 0.553 +il[415] = 30 +im[415] = 0.0201 +ij[415] = 27.5 +id[416] = "2030-02-21T02:46:18" +ik[416] = -25.981 +il[416] = -146 +im[416] = 0.0171 +ij[416] = 15 +id[417] = "2030-05-25T10:23:11" +ik[417] = 0.27 +il[417] = -68 +im[417] = 0.0579 +ij[417] = 12 +id[418] = "2030-06-23T10:11:32" +ik[418] = 12 +il[418] = 20 +im[418] = 0.0576 +ij[418] = 18 +id[419] = "2030-08-05T20:48:03" +ik[419] = 1.215 +il[419] = -69 +im[419] = 0.0562 +ij[419] = 28.2 +id[420] = "2030-11-08T05:12:47" +ik[420] = 25.215 +il[420] = -2 +im[420] = 0.0396 +ij[420] = 16 +id[421] = "2030-11-21T22:10:10" +ik[421] = 30.683 +il[421] = -124 +im[421] = 0.0181 +ij[421] = 8 +id[422] = "2030-12-09T23:22:47" +ik[422] = 0.093 +il[422] = 32 +im[422] = 0.0809 +ij[422] = 28.8 +id[423] = "2031-01-22T21:49:03" +ik[423] = -1.598 +il[423] = 118 +im[423] = 0.1025 +ij[423] = 2 +id[424] = "2031-01-28T07:13:35" +ik[424] = 36.526 +il[424] = 28 +im[424] = 0.0426 +ij[424] = 3 +id[425] = "2031-03-28T23:06:59" +ik[425] = 0 +il[425] = -3 +im[425] = 0.0856 +ij[425] = 13 +id[426] = "2031-04-03T09:11:32" +ik[426] = 1.685 +il[426] = -103 +im[426] = 0.2191 +ij[426] = 28.2 +id[427] = "2031-05-04T11:48:31" +ik[427] = 0.34 +il[427] = 135 +im[427] = 0.1501 +ij[427] = 11 +id[428] = "2031-05-19T23:48:21" +ik[428] = 1.684 +il[428] = -102 +im[428] = 0.0266 +ij[428] = 28.1 +id[429] = "2031-06-12T22:09:35" +ik[429] = 75.96 +il[429] = 155 +im[429] = 0.1248 +ij[429] = 7.1577 +id[430] = "2031-08-06T23:29:18" +ik[430] = 131.02 +il[430] = -48 +im[430] = 0.1038 +ij[430] = 14 +id[431] = "2031-08-20T02:18:24" +ik[431] = -2.131 +il[431] = 38 +im[431] = 0.1398 +ij[431] = 4 +id[432] = "2031-08-25T14:09:44" +ik[432] = 2.07 +il[432] = -86 +im[432] = 0.0066 +ij[432] = 27.4 +id[433] = "2031-08-30T21:54:34" +ik[433] = 45.095 +il[433] = -150 +im[433] = 0.1238 +ij[433] = 1 +id[434] = "2031-09-30T12:55:37" +ik[434] = 3.124 +il[434] = -75 +im[434] = 0.1122 +ij[434] = 28.6 +id[435] = "2031-10-06T16:16:53" +ik[435] = 1.727 +il[435] = -65 +im[435] = 0.0126 +ij[435] = 28.7 +id[436] = "2031-10-06T16:20:54" +ik[436] = 0 +il[436] = -66 +im[436] = 0.0126 +ij[436] = 17 +id[437] = "2031-11-30T17:03:18" +ik[437] = 0.166 +il[437] = 105 +im[437] = 0.0622 +ij[437] = 27.3 +id[438] = "2031-12-20T00:31:03" +ik[438] = 35.309 +il[438] = -177 +im[438] = 0.0331 +ij[438] = 9 +id[439] = "2031-12-30T00:08:18" +ik[439] = 0.581 +il[439] = -74 +im[439] = 0.0551 +ij[439] = 27.5 +id[440] = "2032-01-31T19:31:17" +ik[440] = -26.118 +il[440] = -46 +im[440] = 0.0068 +ij[440] = 15 +id[441] = "2032-03-10T07:06:57" +ik[441] = 2.125 +il[441] = 150 +im[441] = 0.0512 +ij[441] = 27.6 +id[442] = "2032-06-04T03:12:58" +ik[442] = 12 +il[442] = -47 +im[442] = 0.0485 +ij[442] = 18 +id[443] = "2032-07-11T04:24:58" +ik[443] = 0.97 +il[443] = -65 +im[443] = 0.0377 +ij[443] = 12 +id[444] = "2032-10-19T05:41:45" +ik[444] = 25.478 +il[444] = 0 +im[444] = 0.0366 +ij[444] = 16 +id[445] = "2032-11-23T18:21:26" +ik[445] = 0.381 +il[445] = 152 +im[445] = 0.0592 +ij[445] = 28.8 +id[446] = "2032-12-24T14:58:36" +ik[446] = 30.829 +il[446] = 138 +im[446] = 0.0448 +ij[446] = 8 +id[447] = "2033-02-06T21:18:04" +ik[447] = 5.037 +il[447] = 106 +im[447] = 0.0136 +ij[447] = 27.4 +id[448] = "2033-02-24T17:36:30" +ik[448] = 4.775 +il[448] = -29 +im[448] = 0.0441 +ij[448] = 27.1 +id[449] = "2033-03-18T07:04:39" +ik[449] = 38.991 +il[449] = -27 +im[449] = 0.1207 +ij[449] = 3 +id[450] = "2033-03-21T08:45:15" +ik[450] = 23 +il[450] = -23 +im[450] = 0.0572 +ij[450] = 17 +id[451] = "2033-03-30T05:09:58" +ik[451] = -1.778 +il[451] = 115 +im[451] = 0.1375 +ij[451] = 2 +id[452] = "2033-04-01T11:28:26" +ik[452] = 0.234 +il[452] = 41 +im[452] = 0.1119 +ij[452] = 28.7 +id[453] = "2033-04-10T00:09:15" +ik[453] = 0.815 +il[453] = -68 +im[453] = 0.1449 +ij[453] = 28.6 +id[454] = "2033-05-28T23:29:48" +ik[454] = 0 +il[454] = 45 +im[454] = 0.1297 +ij[454] = 13 +id[455] = "2033-06-07T21:38:57" +ik[455] = 1.2 +il[455] = 166 +im[455] = 0.3181 +ij[455] = 28.1 +id[456] = "2033-06-27T21:34:18" +ik[456] = 4.36 +il[456] = -14 +im[456] = 0.0925 +ij[456] = 11 +id[457] = "2033-07-09T03:31:54" +ik[457] = 0 +il[457] = -179 +im[457] = 0.1658 +ij[457] = 18 +id[458] = "2033-07-30T20:51:20" +ik[458] = 4.765 +il[458] = 130 +im[458] = 0.3321 +ij[458] = 28.2 +id[459] = "2033-08-02T01:37:39" +ik[459] = 65.09 +il[459] = 80 +im[459] = 0.2969 +ij[459] = 7.1029 +id[460] = "2033-08-21T20:35:07" +ik[460] = 0 +il[460] = -10 +im[460] = 0.1075 +ij[460] = 17 +id[461] = "2033-09-01T07:51:05" +ik[461] = 3.907 +il[461] = -76 +im[461] = 0.1502 +ij[461] = 28.7 +id[462] = "2033-09-15T16:39:22" +ik[462] = 109.71 +il[462] = -67 +im[462] = 0.0768 +ij[462] = 14 +id[463] = "2033-09-26T00:52:12" +ik[463] = -2.372 +il[463] = -88 +im[463] = 0.2054 +ij[463] = 4 +id[464] = "2033-10-02T09:30:54" +ik[464] = 3.3 +il[464] = -155 +im[464] = 0.0292 +ij[464] = 28.6 +id[465] = "2033-10-20T14:13:37" +ik[465] = 45.874 +il[465] = -47 +im[465] = 0.1452 +ij[465] = 1 +id[466] = "2033-10-30T03:31:03" +ik[466] = 0.956 +il[466] = -152 +im[466] = 0.0419 +ij[466] = 27.3 +id[467] = "2033-12-01T23:21:54" +ik[467] = 0.818 +il[467] = -129 +im[467] = 0.0767 +ij[467] = 27.5 +id[468] = "2034-01-07T19:28:15" +ik[468] = -26.242 +il[468] = -75 +im[468] = 0.0543 +ij[468] = 15 +id[469] = "2034-02-15T22:11:58" +ik[469] = 1.831 +il[469] = -102 +im[469] = 0.0824 +ij[469] = 27.6 +id[470] = "2034-02-17T18:00:23" +ik[470] = 33.515 +il[470] = -22 +im[470] = 0.0766 +ij[470] = 9 +id[471] = "2034-04-23T18:57:58" +ik[471] = 3.7 +il[471] = -142 +im[471] = 0.0341 +ij[471] = 27.2 +id[472] = "2034-05-12T08:21:46" +ik[472] = 0.581 +il[472] = -157 +im[472] = 0.0572 +ij[472] = 28.2 +id[473] = "2034-05-16T12:06:27" +ik[473] = 12 +il[473] = 179 +im[473] = 0.0459 +ij[473] = 18 +id[474] = "2034-05-27T13:37:41" +ik[474] = 2.346 +il[474] = -91 +im[474] = 0.0626 +ij[474] = 28.1 +id[475] = "2034-08-19T06:10:45" +ik[475] = 1.14 +il[475] = 100 +im[475] = 0.0495 +ij[475] = 12 +id[476] = "2034-10-01T10:51:43" +ik[476] = 25.653 +il[476] = -69 +im[476] = 0.0461 +ij[476] = 16 +id[477] = "2034-10-21T01:27:46" +ik[477] = 0.372 +il[477] = -92 +im[477] = 0.0524 +ij[477] = 28.5 +id[478] = "2034-10-23T11:38:19" +ik[478] = 2.593 +il[478] = 131 +im[478] = 0.0306 +ij[478] = 28.1 +id[479] = "2034-11-11T10:22:57" +ik[479] = 0.731 +il[479] = -17 +im[479] = 0.0347 +ij[479] = 28.8 +id[480] = "2034-11-13T01:59:15" +ik[480] = 0.418 +il[480] = 125 +im[480] = 0.05 +ij[480] = 28.2 +id[481] = "2034-12-28T20:59:32" +ik[481] = 1.224 +il[481] = -84 +im[481] = 0.0673 +ij[481] = 28.2 +id[482] = "2035-01-11T22:11:31" +ik[482] = 4.611 +il[482] = 31 +im[482] = 0.073 +ij[482] = 27.4 +id[483] = "2035-01-27T00:34:30" +ik[483] = 5.168 +il[483] = 139 +im[483] = 0.0766 +ij[483] = 27.1 +id[484] = "2035-01-30T14:35:56" +ik[484] = 32.017 +il[484] = -37 +im[484] = 0.0523 +ij[484] = 8 +id[485] = "2035-02-15T22:01:51" +ik[485] = 23 +il[485] = 5 +im[485] = 0.0311 +ij[485] = 17 +id[486] = "2035-03-07T22:37:36" +ik[486] = 0.046 +il[486] = -174 +im[486] = 0.0695 +ij[486] = 28.7 +id[487] = "2035-04-10T12:28:28" +ik[487] = 0.453 +il[487] = -64 +im[487] = 0.1054 +ij[487] = 28.6 +id[488] = "2035-04-24T23:14:37" +ik[488] = 0.095 +il[488] = -89 +im[488] = 0.1258 +ij[488] = 27.3 +id[489] = "2035-05-27T10:53:36" +ik[489] = 44.531 +il[489] = 45 +im[489] = 0.0742 +ij[489] = 3 +id[490] = "2035-05-31T05:33:27" +ik[490] = 2.102 +il[490] = 161 +im[490] = 0.0604 +ij[490] = 27.5 +id[491] = "2035-06-27T01:27:46" +ik[491] = -2.281 +il[491] = 118 +im[491] = 0.0118 +ij[491] = 2 +id[492] = "2035-08-14T16:39:53" +ik[492] = 0 +il[492] = -1 +im[492] = 0.3588 +ij[492] = 13 +id[493] = "2035-08-24T00:24:44" +ik[493] = 5.243 +il[493] = -26 +im[493] = 0.193 +ij[493] = 28.1 +id[494] = "2035-09-16T00:23:12" +ik[494] = 5.44 +il[494] = 179 +im[494] = 0.132 +ij[494] = 11 +id[495] = "2035-10-05T00:43:08" +ik[495] = 6.079 +il[495] = -157 +im[495] = 0.3251 +ij[495] = 28.1 +id[496] = "2035-10-15T15:42:28" +ik[496] = 61.96 +il[496] = 81 +im[496] = 0.0867 +ij[496] = 7.1148 +id[497] = "2035-11-27T17:43:15" +ik[497] = 105.04 +il[497] = 107 +im[497] = 0.1412 +ij[497] = 14 +id[498] = "2035-12-06T20:30:22" +ik[498] = -25.947 +il[498] = 152 +im[498] = 0.0981 +ij[498] = 15 +id[499] = "2035-12-07T06:46:00" +ik[499] = -2.059 +il[499] = 3 +im[499] = 0.0829 +ij[499] = 4 +id[500] = "2035-12-29T20:32:38" +ik[500] = 41.23 +il[500] = 11 +im[500] = 0.154 +ij[500] = 1 +id[501] = "2036-01-16T19:09:53" +ik[501] = 1.43 +il[501] = -157 +im[501] = 0.0801 +ij[501] = 27.6 +id[502] = "2036-03-31T12:58:29" +ik[502] = 3.312 +il[502] = -79 +im[502] = 0.0204 +ij[502] = 27.2 +id[503] = "2036-04-02T23:55:29" +ik[503] = 31.99 +il[503] = 140 +im[503] = 0.0252 +ij[503] = 9 +id[504] = "2036-04-25T14:50:40" +ik[504] = 12 +il[504] = 129 +im[504] = 0.0613 +ij[504] = 18 +id[505] = "2036-05-01T08:19:15" +ik[505] = 3.062 +il[505] = -79 +im[505] = 0.0198 +ij[505] = 28.2 +id[506] = "2036-07-23T15:13:31" +ik[506] = 0.032 +il[506] = -104 +im[506] = 0.0163 +ij[506] = 28.1 +id[507] = "2036-09-13T01:34:50" +ik[507] = 25.789 +il[507] = -117 +im[507] = 0.0539 +ij[507] = 16 +id[508] = "2036-09-23T17:41:25" +ik[508] = 0.86 +il[508] = 104 +im[508] = 0.0411 +ij[508] = 12 +id[509] = "2036-12-07T04:22:46" +ik[509] = 1.809 +il[509] = 143 +im[509] = 0.0553 +ij[509] = 28.2 +id[510] = "2036-12-21T03:21:05" +ik[510] = 4.314 +il[510] = -69 +im[510] = 0.0612 +ij[510] = 27.4 +id[511] = "2037-01-04T10:41:19" +ik[511] = 5.454 +il[511] = -33 +im[511] = 0.0559 +ij[511] = 27.1 +id[512] = "2037-01-14T12:06:23" +ik[512] = 0.365 +il[512] = 41 +im[512] = 0.0194 +ij[512] = 28.5 +id[513] = "2037-01-23T18:38:40" +ik[513] = 0 +il[513] = 29 +im[513] = 0.0613 +ij[513] = 17 +id[514] = "2037-02-23T11:52:15" +ik[514] = 0.155 +il[514] = 63 +im[514] = 0.0475 +ij[514] = 28.7 +id[515] = "2037-03-18T20:59:29" +ik[515] = 34.293 +il[515] = 147 +im[515] = 0.0847 +ij[515] = 8 +id[516] = "2037-03-25T15:00:23" +ik[516] = 0.224 +il[516] = -59 +im[516] = 0.0314 +ij[516] = 27.3 +id[517] = "2037-04-19T06:24:04" +ik[517] = 0.153 +il[517] = -56 +im[517] = 0.0922 +ij[517] = 28.6 +id[518] = "2037-04-25T01:07:58" +ik[518] = 1.04 +il[518] = 79 +im[518] = 0.0013 +ij[518] = 27.5 +id[519] = "2037-05-23T19:21:12" +ik[519] = -24.809 +il[519] = 81 +im[519] = 0.0039 +ij[519] = 15 +id[520] = "2037-07-09T08:28:45" +ik[520] = 4.346 +il[520] = -26 +im[520] = 0.0808 +ij[520] = 27.6 +id[521] = "2037-07-23T17:05:34" +ik[521] = 47.21 +il[521] = -15 +im[521] = 0.1096 +ij[521] = 3 +id[522] = "2037-08-19T23:34:01" +ik[522] = -2.315 +il[522] = 155 +im[522] = 0.0926 +ij[522] = 2 +id[523] = "2037-10-12T18:30:13" +ik[523] = 2.442 +il[523] = 39 +im[523] = 0.0202 +ij[523] = 28.2 +id[524] = "2037-10-13T17:43:46" +ik[524] = 0 +il[524] = 60 +im[524] = 0.0769 +ij[524] = 13 +id[525] = "2037-11-05T13:07:44" +ik[525] = 1.553 +il[525] = -8 +im[525] = 0.201 +ij[525] = 28.1 +id[526] = "2037-11-19T08:47:12" +ik[526] = 0.53 +il[526] = 179 +im[526] = 0.2004 +ij[526] = 11 +id[527] = "2037-12-22T16:46:21" +ik[527] = 69.96 +il[527] = -166 +im[527] = 0.1545 +ij[527] = 7.1374 +id[528] = "2038-02-14T04:18:28" +ik[528] = -1.704 +il[528] = 166 +im[528] = 0.0299 +ij[528] = 4 +id[529] = "2038-02-16T10:00:12" +ik[529] = 125.68 +il[529] = 101 +im[529] = 0.0819 +ij[529] = 14 +id[530] = "2038-02-24T14:04:33" +ik[530] = 37.99 +il[530] = 117 +im[530] = 0.0496 +ij[530] = 1 +id[531] = "2038-02-28T08:28:31" +ik[531] = 2.564 +il[531] = -123 +im[531] = 0.0496 +ij[531] = 27.2 +id[532] = "2038-04-01T20:03:06" +ik[532] = 12 +il[532] = 9 +im[532] = 0.0934 +ij[532] = 18 +id[533] = "2038-05-11T08:12:49" +ik[533] = 31.324 +il[533] = -160 +im[533] = 0.0268 +ij[533] = 9 +id[534] = "2038-07-17T04:56:34" +ik[534] = 4.894 +il[534] = 165 +im[534] = 0.0267 +ij[534] = 28.1 +id[535] = "2038-08-26T12:45:44" +ik[535] = 25.909 +il[535] = 86 +im[535] = 0.0553 +ij[535] = 16 +id[536] = "2038-11-01T08:41:52" +ik[536] = 0.21 +il[536] = 85 +im[536] = 0.0468 +ij[536] = 12 +id[537] = "2039-01-04T06:14:32" +ik[537] = 0 +il[537] = -155 +im[537] = 0.0494 +ij[537] = 17 +id[538] = "2039-02-15T04:03:52" +ik[538] = 0.276 +il[538] = -74 +im[538] = 0.0612 +ij[538] = 28.7 +id[539] = "2039-03-03T08:36:00" +ik[539] = 0.266 +il[539] = 11 +im[539] = 0.0576 +ij[539] = 27.3 +id[540] = "2039-03-22T08:38:42" +ik[540] = 0.018 +il[540] = -168 +im[540] = 0.0142 +ij[540] = 28.5 +id[541] = "2039-04-01T13:34:35" +ik[541] = 0.777 +il[541] = -144 +im[541] = 0.0613 +ij[541] = 27.5 +id[542] = "2039-04-30T21:10:38" +ik[542] = 0.842 +il[542] = 24 +im[542] = 0.0634 +ij[542] = 28.6 +id[543] = "2039-04-30T22:18:07" +ik[543] = -25.334 +il[543] = 7 +im[543] = 0.0629 +ij[543] = 15 +id[544] = "2039-05-31T18:57:42" +ik[544] = 36.273 +il[544] = -3 +im[544] = 0.0401 +ij[544] = 8 +id[545] = "2039-06-11T09:26:33" +ik[545] = 3.424 +il[545] = -116 +im[545] = 0.0759 +ij[545] = 27.6 +id[546] = "2039-08-16T07:17:50" +ik[546] = 5.316 +il[546] = -158 +im[546] = 0.0604 +ij[546] = 27.2 +id[547] = "2039-09-05T06:03:46" +ik[547] = 11 +il[547] = 56 +im[547] = 0.1138 +ij[547] = 18 +id[548] = "2039-09-08T15:16:33" +ik[548] = 43.301 +il[548] = -49 +im[548] = 0.0636 +ij[548] = 3 +id[549] = "2039-09-22T14:51:22" +ik[549] = -2.008 +il[549] = 94 +im[549] = 0.0757 +ij[549] = 2 +id[550] = "2039-11-24T10:00:41" +ik[550] = 0 +il[550] = 57 +im[550] = 0.1763 +ij[550] = 13 +id[551] = "2040-01-02T14:11:39" +ik[551] = 3.6 +il[551] = -10 +im[551] = 0.1381 +ij[551] = 11 +id[552] = "2040-01-26T02:53:33" +ik[552] = 3.085 +il[552] = -159 +im[552] = 0.0169 +ij[552] = 28.2 +id[553] = "2040-02-10T09:15:18" +ik[553] = 77.97 +il[553] = -114 +im[553] = 0.0517 +ij[553] = 7.1643 +id[554] = "2040-04-06T06:40:43" +ik[554] = -1.566 +il[554] = 85 +im[554] = 0.0397 +ij[554] = 4 +id[555] = "2040-04-08T20:56:32" +ik[555] = 37.024 +il[555] = -105 +im[555] = 0.0896 +ij[555] = 1 +id[556] = "2040-04-15T10:30:10" +ik[556] = 143.02 +il[556] = 114 +im[556] = 0.0715 +ij[556] = 14 +id[557] = "2040-06-16T09:33:16" +ik[557] = 31.523 +il[557] = 0 +im[557] = 0.02 +ij[557] = 9 +id[558] = "2040-08-07T06:43:41" +ik[558] = 26.022 +il[558] = -178 +im[558] = 0.0515 +ij[558] = 16 +id[559] = "2040-09-13T04:24:55" +ik[559] = 0.327 +il[559] = -144 +im[559] = 0.0461 +ij[559] = 28.2 +id[560] = "2040-09-21T03:31:11" +ik[560] = 1.852 +il[560] = -55 +im[560] = 0.0207 +ij[560] = 28.1 +id[561] = "2040-10-06T18:49:19" +ik[561] = 1.632 +il[561] = -132 +im[561] = 0.0152 +ij[561] = 28.8 +id[562] = "2040-10-11T07:00:35" +ik[562] = 1.483 +il[562] = 89 +im[562] = 0.0401 +ij[562] = 28.1 +id[563] = "2040-12-15T13:07:21" +ik[563] = 0 +il[563] = -65 +im[563] = 0.0347 +ij[563] = 17 +id[564] = "2040-12-17T12:07:12" +ik[564] = 0.65 +il[564] = -31 +im[564] = 0.0125 +ij[564] = 12 +id[565] = "2041-03-10T18:10:07" +ik[565] = 0.658 +il[565] = 126 +im[565] = 0.0567 +ij[565] = 27.5 +id[566] = "2041-03-19T01:01:22" +ik[566] = 1.131 +il[566] = 114 +im[566] = 0.0389 +ij[566] = 28.1 +id[567] = "2041-04-05T20:56:19" +ik[567] = 1.182 +il[567] = -11 +im[567] = 0.0672 +ij[567] = 28.2 +id[568] = "2041-04-09T14:03:02" +ik[568] = -25.6 +il[568] = 128 +im[568] = 0.0544 +ij[568] = 15 +id[569] = "2041-05-12T02:33:08" +ik[569] = 1.407 +il[569] = -102 +im[569] = 0.0173 +ij[569] = 28.6 +id[570] = "2041-05-17T21:26:17" +ik[570] = 0.361 +il[570] = 32 +im[570] = 0.0575 +ij[570] = 28.5 +id[571] = "2041-05-19T10:00:20" +ik[571] = 2.99 +il[571] = -142 +im[571] = 0.0661 +ij[571] = 27.6 +id[572] = "2041-06-28T02:36:44" +ik[572] = 1.859 +il[572] = -1 +im[572] = 0.0479 +ij[572] = 28.2 +id[573] = "2041-07-21T16:43:30" +ik[573] = 4.855 +il[573] = 18 +im[573] = 0.0325 +ij[573] = 27.2 +id[574] = "2041-08-09T20:50:38" +ik[574] = 11 +il[574] = 144 +im[574] = 0.0304 +ij[574] = 18 +id[575] = "2041-08-14T07:02:36" +ik[575] = 34.483 +il[575] = 34 +im[575] = 0.0769 +ij[575] = 8 +id[576] = "2041-10-22T23:03:50" +ik[576] = -1.763 +il[576] = 111 +im[576] = 0.0983 +ij[576] = 2 +id[577] = "2041-10-24T13:44:32" +ik[577] = 39.091 +il[577] = -94 +im[577] = 0.112 +ij[577] = 3 +id[578] = "2041-12-13T23:50:25" +ik[578] = 20.783 +il[578] = -118 +im[578] = 0.026 +ij[578] = 16 +id[579] = "2041-12-27T10:30:38" +ik[579] = 0 +il[579] = -148 +im[579] = 0.0079 +ij[579] = 13 +id[580] = "2042-02-06T11:42:19" +ik[580] = 4.37 +il[580] = -151 +im[580] = 0.0617 +ij[580] = 11 +id[581] = "2042-02-23T20:33:25" +ik[581] = 1.939 +il[581] = 40 +im[581] = 0.188 +ij[581] = 28.1 +id[582] = "2042-03-19T17:41:16" +ik[582] = 82.3 +il[582] = -62 +im[582] = 0.0627 +ij[582] = 7.1964 +id[583] = "2042-05-18T18:36:34" +ik[583] = 37.739 +il[583] = 139 +im[583] = 0.1016 +ij[583] = 1 +id[584] = "2042-05-21T20:08:44" +ik[584] = -1.583 +il[584] = 146 +im[584] = 0.0834 +ij[584] = 4 +id[585] = "2042-05-26T12:18:03" +ik[585] = 150.07 +il[585] = -52 +im[585] = 0.0097 +ij[585] = 14 +id[586] = "2042-07-26T22:03:02" +ik[586] = 32.554 +il[586] = 36 +im[586] = 0.0632 +ij[586] = 9 +id[587] = "2042-09-03T00:25:16" +ik[587] = 1.38 +il[587] = 11 +im[587] = 0.0048 +ij[587] = 28.2 +id[588] = "2042-09-24T15:07:58" +ik[588] = 1.977 +il[588] = 1 +im[588] = 0.0651 +ij[588] = 28.8 +id[589] = "2042-10-23T22:48:18" +ik[589] = 3.548 +il[589] = 171 +im[589] = 0.0629 +ij[589] = 27.4 +id[590] = "2042-11-06T18:04:55" +ik[590] = 6.185 +il[590] = 17 +im[590] = 0.0669 +ij[590] = 27.1 +id[591] = "2042-11-26T20:29:25" +ik[591] = 0 +il[591] = 177 +im[591] = 0.0264 +ij[591] = 17 +id[592] = "2042-12-07T07:18:55" +ik[592] = 1.538 +il[592] = 117 +im[592] = 0.0646 +ij[592] = 28.1 +id[593] = "2043-02-20T20:22:20" +ik[593] = 1.05 +il[593] = -34 +im[593] = 0.0374 +ij[593] = 12 +id[594] = "2043-03-21T02:27:52" +ik[594] = -25.781 +il[594] = -68 +im[594] = 0.045 +ij[594] = 15 +id[595] = "2043-05-24T22:17:49" +ik[595] = 1.717 +il[595] = -80 +im[595] = 0.0335 +ij[595] = 28.6 +id[596] = "2043-05-25T11:58:48" +ik[596] = 2.072 +il[596] = 88 +im[596] = 0.0395 +ij[596] = 28.2 +id[597] = "2043-06-04T06:34:51" +ik[597] = 1.815 +il[597] = -95 +im[597] = 0.0231 +ij[597] = 28.1 +id[598] = "2043-06-30T22:23:08" +ik[598] = 4.55 +il[598] = -72 +im[598] = 0.0484 +ij[598] = 27.2 +id[599] = "2043-07-20T12:14:17" +ik[599] = 12 +il[599] = -89 +im[599] = 0.018 +ij[599] = 18 +id[600] = "2043-07-22T01:52:58" +ik[600] = 0.357 +il[600] = 82 +im[600] = 0.0371 +ij[600] = 28.5 +id[601] = "2043-10-02T23:56:49" +ik[601] = 32.173 +il[601] = 98 +im[601] = 0.067 +ij[601] = 8 +id[602] = "2043-11-25T14:13:11" +ik[602] = -1.622 +il[602] = 42 +im[602] = 0.0283 +ij[602] = 2 +id[603] = "2043-12-04T11:48:28" +ik[603] = 36.732 +il[603] = 164 +im[603] = 0.0993 +ij[603] = 3 +id[604] = "2044-01-30T12:18:31" +ik[604] = 0 +il[604] = -13 +im[604] = 0.1282 +ij[604] = 13 +id[605] = "2044-02-06T23:20:17" +ik[605] = 1.831 +il[605] = -106 +im[605] = 0.1409 +ij[605] = 28.2 +id[606] = "2044-03-11T13:34:20" +ik[606] = 3.72 +il[606] = -19 +im[606] = 0.1029 +ij[606] = 11 +id[607] = "2044-04-22T11:23:07" +ik[607] = 82.96 +il[607] = -165 +im[607] = 0.0517 +ij[607] = 7.2102 +id[608] = "2044-06-22T19:23:36" +ik[608] = 26.148 +il[608] = -51 +im[608] = 0.091 +ij[608] = 16 +id[609] = "2044-06-26T13:31:59" +ik[609] = 148.05 +il[609] = 74 +im[609] = 0.0992 +ij[609] = 14 +id[610] = "2044-06-27T20:22:33" +ik[610] = 40.009 +il[610] = -17 +im[610] = 0.0823 +ij[610] = 1 +id[611] = "2044-07-03T17:41:12" +ik[611] = -1.732 +il[611] = 81 +im[611] = 0.0499 +ij[611] = 4 +id[612] = "2044-09-09T10:57:27" +ik[612] = 2.424 +il[612] = 121 +im[612] = 0.0465 +ij[612] = 28.8 +id[613] = "2044-09-14T13:25:15" +ik[613] = 34.316 +il[613] = 134 +im[613] = 0.0433 +ij[613] = 9 +id[614] = "2044-10-02T10:06:51" +ik[614] = 3.178 +il[614] = -2 +im[614] = 0.0793 +ij[614] = 27.4 +id[615] = "2044-11-06T13:01:38" +ik[615] = 0 +il[615] = -62 +im[615] = 0.0326 +ij[615] = 17 +id[616] = "2044-12-31T06:51:42" +ik[616] = 0.115 +il[616] = -151 +im[616] = 0.0616 +ij[616] = 27.3 +id[617] = "2045-01-22T19:38:22" +ik[617] = 0.261 +il[617] = -117 +im[617] = 0.032 +ij[617] = 28.7 +id[618] = "2045-01-28T18:54:06" +ik[618] = 0.556 +il[618] = -50 +im[618] = 0.0613 +ij[618] = 27.5 +id[619] = "2045-02-28T18:43:03" +ik[619] = -25.929 +il[619] = -93 +im[619] = 0.0453 +ij[619] = 15 +id[620] = "2045-05-02T11:43:13" +ik[620] = 0.14 +il[620] = -91 +im[620] = 0.0165 +ij[620] = 12 +id[621] = "2045-06-30T15:40:56" +ik[621] = 12 +il[621] = -136 +im[621] = 0.0307 +ij[621] = 18 +id[622] = "2045-08-09T01:02:09" +ik[622] = 4.461 +il[622] = 113 +im[622] = 0.0254 +ij[622] = 28.1 +id[623] = "2045-10-14T14:29:33" +ik[623] = 0.047 +il[623] = -179 +im[623] = 0.0684 +ij[623] = 28.5 +id[624] = "2045-11-08T15:23:28" +ik[624] = 30.898 +il[624] = 63 +im[624] = 0.0616 +ij[624] = 8 +id[625] = "2045-11-16T07:18:26" +ik[625] = 25.063 +il[625] = -102 +im[625] = 0.0432 +ij[625] = 16 +id[626] = "2046-01-03T16:31:53" +ik[626] = -1.582 +il[626] = -133 +im[626] = 0.075 +ij[626] = 2 +id[627] = "2046-01-11T22:37:29" +ik[627] = 36.214 +il[627] = -145 +im[627] = 0.0709 +ij[627] = 3 +id[628] = "2046-03-10T13:32:27" +ik[628] = 0 +il[628] = -177 +im[628] = 0.0579 +ij[628] = 13 +id[629] = "2046-04-17T18:33:00" +ik[629] = 1.66 +il[629] = 91 +im[629] = 0.1551 +ij[629] = 11 +id[630] = "2046-05-17T16:54:45" +ik[630] = 0.823 +il[630] = -169 +im[630] = 0.0289 +ij[630] = 28.2 +id[631] = "2046-05-27T23:47:13" +ik[631] = 78.43 +il[631] = -172 +im[631] = 0.1383 +ij[631] = 7.1803 +id[632] = "2046-06-10T14:29:46" +ik[632] = 4.774 +il[632] = 99 +im[632] = 0.1268 +ij[632] = 28.5 +id[633] = "2046-07-25T21:39:02" +ik[633] = 137.34 +il[633] = 73 +im[633] = 0.0155 +ij[633] = 14 +id[634] = "2046-08-08T13:47:26" +ik[634] = -2.002 +il[634] = -36 +im[634] = 0.0098 +ij[634] = 4 +id[635] = "2046-08-12T09:32:32" +ik[635] = 43.645 +il[635] = 66 +im[635] = 0.0941 +ij[635] = 1 +id[636] = "2046-08-21T00:20:29" +ik[636] = 3.156 +il[636] = -72 +im[636] = 0.0703 +ij[636] = 28.8 +id[637] = "2046-09-07T18:39:21" +ik[637] = 2.53 +il[637] = -173 +im[637] = 0.038 +ij[637] = 27.4 +id[638] = "2046-10-16T07:12:58" +ik[638] = 0 +il[638] = 16 +im[638] = 0.0774 +ij[638] = 17 +id[639] = "2046-11-21T14:52:48" +ik[639] = 35.553 +il[639] = -101 +im[639] = 0.0543 +ij[639] = 9 +id[640] = "2046-12-09T23:06:24" +ik[640] = 0.049 +il[640] = -44 +im[640] = 0.0859 +ij[640] = 27.3 +id[641] = "2047-01-07T20:54:40" +ik[641] = 0.558 +il[641] = -87 +im[641] = 0.0784 +ij[641] = 27.5 +id[642] = "2047-01-14T18:49:59" +ik[642] = 0.136 +il[642] = 12 +im[642] = 0.0094 +ij[642] = 28.7 +id[643] = "2047-02-08T23:15:54" +ik[643] = -26.067 +il[643] = -170 +im[643] = 0.0574 +ij[643] = 15 +id[644] = "2047-02-25T04:41:13" +ik[644] = 0.49 +il[644] = -92 +im[644] = 0.0319 +ij[644] = 28.2 +id[645] = "2047-03-19T09:55:46" +ik[645] = 2.222 +il[645] = 52 +im[645] = 0.0613 +ij[645] = 27.6 +id[646] = "2047-06-12T07:34:23" +ik[646] = 12 +il[646] = 174 +im[646] = 0.0446 +ij[646] = 18 +id[647] = "2047-06-25T01:57:27" +ik[647] = 0.77 +il[647] = 28 +im[647] = 0.0188 +ij[647] = 12 +id[648] = "2047-10-27T11:14:21" +ik[648] = 25.391 +il[648] = -179 +im[648] = 0.0323 +ij[648] = 16 +id[649] = "2047-11-07T12:10:53" +ik[649] = 0.076 +il[649] = -68 +im[649] = 0.0689 +ij[649] = 28.2 +id[650] = "2047-12-12T10:31:28" +ik[650] = 30.653 +il[650] = -67 +im[650] = 0.0097 +ij[650] = 8 +id[651] = "2048-01-25T12:19:14" +ik[651] = 0.258 +il[651] = -31 +im[651] = 0.0312 +ij[651] = 28.5 +id[652] = "2048-01-30T15:54:58" +ik[652] = 0.462 +il[652] = -36 +im[652] = 0.1001 +ij[652] = 28.8 +id[653] = "2048-02-22T17:28:49" +ik[653] = 5.27 +il[653] = 160 +im[653] = 0.0295 +ij[653] = 27.4 +id[654] = "2048-02-25T22:23:31" +ik[654] = 37.696 +il[654] = 117 +im[654] = 0.0976 +ij[654] = 3 +id[655] = "2048-02-29T05:08:21" +ik[655] = -1.675 +il[655] = 47 +im[655] = 0.1256 +ij[655] = 2 +id[656] = "2048-03-16T05:54:36" +ik[656] = 4.625 +il[656] = -172 +im[656] = 0.124 +ij[656] = 27.1 +id[657] = "2048-05-01T21:39:31" +ik[657] = 0 +il[657] = 33 +im[657] = 0.039 +ij[657] = 13 +id[658] = "2048-05-19T00:43:10" +ik[658] = 4.012 +il[658] = 138 +im[658] = 0.2155 +ij[658] = 28.1 +id[659] = "2048-06-03T11:47:40" +ik[659] = 2.12 +il[659] = 115 +im[659] = 0.3075 +ij[659] = 11 +id[660] = "2048-06-21T12:20:33" +ik[660] = 4.175 +il[660] = 84 +im[660] = 0.1935 +ij[660] = 28.1 +id[661] = "2048-07-10T20:42:07" +ik[661] = 69.96 +il[661] = 147 +im[661] = 0.1884 +ij[661] = 7.1205 +id[662] = "2048-07-11T00:29:04" +ik[662] = 5.169 +il[662] = 92 +im[662] = 0.1952 +ij[662] = 27.4 +id[663] = "2048-08-28T06:27:00" +ik[663] = 118.37 +il[663] = 116 +im[663] = 0.1447 +ij[663] = 14 +id[664] = "2048-09-08T12:06:08" +ik[664] = -2.316 +il[664] = 141 +im[664] = 0.1765 +ij[664] = 4 +id[665] = "2048-09-16T11:26:56" +ik[665] = 0 +il[665] = -131 +im[665] = 0.0331 +ij[665] = 17 +id[666] = "2048-09-16T17:36:58" +ik[666] = 2.934 +il[666] = 140 +im[666] = 0.0423 +ij[666] = 28.5 +id[667] = "2048-09-28T18:22:27" +ik[667] = 46.346 +il[667] = -113 +im[667] = 0.0437 +ij[667] = 1 +id[668] = "2048-11-13T04:25:09" +ik[668] = 0.488 +il[668] = -177 +im[668] = 0.0378 +ij[668] = 27.3 +id[669] = "2048-12-13T18:58:15" +ik[669] = 0.667 +il[669] = -96 +im[669] = 0.0671 +ij[669] = 27.5 +id[670] = "2049-01-03T10:09:36" +ik[670] = 0.053 +il[670] = -124 +im[670] = 0.0827 +ij[670] = 28.7 +id[671] = "2049-01-17T09:10:49" +ik[671] = -26.201 +il[671] = 26 +im[671] = 0.0905 +ij[671] = 15 +id[672] = "2049-01-27T10:09:42" +ik[672] = 34.277 +il[672] = 107 +im[672] = 0.0538 +ij[672] = 9 +id[673] = "2049-02-11T12:59:21" +ik[673] = 3.757 +il[673] = -150 +im[673] = 0.0715 +ij[673] = 28.2 +id[674] = "2049-02-25T03:10:08" +ik[674] = 1.955 +il[674] = 127 +im[674] = 0.0469 +ij[674] = 27.6 +id[675] = "2049-04-26T02:42:05" +ik[675] = 5.92 +il[675] = -18 +im[675] = 0.0591 +ij[675] = 28.1 +id[676] = "2049-05-01T18:38:30" +ik[676] = 3.816 +il[676] = 167 +im[676] = 0.033 +ij[676] = 27.2 +id[677] = "2049-05-23T21:42:11" +ik[677] = 12 +il[677] = -31 +im[677] = 0.0521 +ij[677] = 18 +id[678] = "2049-08-04T15:41:27" +ik[678] = 1.13 +il[678] = 36 +im[678] = 0.0511 +ij[678] = 12 +id[679] = "2049-10-06T06:44:50" +ik[679] = 0.462 +il[679] = -107 +im[679] = 0.0387 +ij[679] = 28.2 +id[680] = "2049-10-08T08:22:16" +ik[680] = 25.592 +il[680] = -111 +im[680] = 0.016 +ij[680] = 16 +id[681] = "2050-01-10T00:43:36" +ik[681] = 0.988 +il[681] = -168 +im[681] = 0.0785 +ij[681] = 28.8 +id[682] = "2050-01-15T10:59:55" +ik[682] = 31.422 +il[682] = 89 +im[682] = 0.0528 +ij[682] = 8 +id[683] = "2050-01-21T02:26:37" +ik[683] = 4.754 +il[683] = -89 +im[683] = 0.0394 +ij[683] = 27.4 +id[684] = "2050-02-05T19:43:33" +ik[684] = 5.033 +il[684] = 161 +im[684] = 0.0756 +ij[684] = 27.1 +id[685] = "2050-02-26T10:33:31" +ik[685] = 23 +il[685] = 134 +im[685] = 0.062 +ij[685] = 17 +id[686] = "2050-04-21T22:58:33" +ik[686] = 0.465 +il[686] = 103 +im[686] = 0.1381 +ij[686] = 28.5 +id[687] = "2050-04-28T00:15:24" +ik[687] = 42.05 +il[687] = 141 +im[687] = 0.0178 +ij[687] = 3 +id[688] = "2050-05-14T14:00:44" +ik[688] = 0.69 +il[688] = 92 +im[688] = 0.0724 +ij[688] = 27.3 +id[689] = "2050-05-24T08:02:36" +ik[689] = -2.067 +il[689] = -86 +im[689] = 0.0964 +ij[689] = 2 +id[690] = "2050-07-04T15:52:18" +ik[690] = 2.224 +il[690] = -170 +im[690] = 0.208 +ij[690] = 28.2 +id[691] = "2050-07-08T22:13:52" +ik[691] = 6.263 +il[691] = 135 +im[691] = 0.1034 +ij[691] = 27.5 +id[692] = "2050-07-08T23:24:45" +ik[692] = 6.263 +il[692] = 118 +im[692] = 0.1065 +ij[692] = 27.5 +id[693] = "2050-07-15T06:27:30" +ik[693] = 0 +il[693] = 73 +im[693] = 0.328 +ij[693] = 13 +id[694] = "2050-07-21T19:51:59" +ik[694] = 4.288 +il[694] = -66 +im[694] = 0.0788 +ij[694] = 28.1 +id[695] = "2050-08-14T07:31:41" +ik[695] = 6.66 +il[695] = -25 +im[695] = 0.2447 +ij[695] = 11 +id[696] = "2050-09-16T05:30:06" +ik[696] = 62.96 +il[696] = 157 +im[696] = 0.2198 +ij[696] = 7.1011 +id[697] = "2050-10-26T03:34:50" +ik[697] = 102.88 +il[697] = -143 +im[697] = 0.0475 +ij[697] = 14 +id[698] = "2050-11-02T09:14:26" +ik[698] = 1.803 +il[698] = -157 +im[698] = 0.1916 +ij[698] = 27.5 +id[699] = "2050-11-05T11:42:09" +ik[699] = -2.242 +il[699] = -164 +im[699] = 0.1056 +ij[699] = 4 +id[700] = "2050-11-07T00:39:20" +ik[700] = 1.065 +il[700] = 17 +im[700] = 0.0491 +ij[700] = 28.5 +id[701] = "2050-12-01T21:23:28" +ik[701] = 43.199 +il[701] = -54 +im[701] = 0.1345 +ij[701] = 1 +id[702] = "2050-12-16T01:37:14" +ik[702] = 0.235 +il[702] = 19 +im[702] = 0.1289 +ij[702] = 28.7 +id[703] = "2050-12-21T02:01:44" +ik[703] = -26.235 +il[703] = 61 +im[703] = 0.0089 +ij[703] = 15 +id[704] = "2051-01-30T11:46:05" +ik[704] = 1.599 +il[704] = -60 +im[704] = 0.0601 +ij[704] = 27.6 +id[705] = "2051-03-18T14:51:55" +ik[705] = 32.49 +il[705] = -21 +im[705] = 0.0308 +ij[705] = 9 +id[706] = "2051-04-10T17:18:08" +ik[706] = 3.485 +il[706] = 160 +im[706] = 0.055 +ij[706] = 27.2 +id[707] = "2051-05-04T15:41:47" +ik[707] = 12 +il[707] = 49 +im[707] = 0.0552 +ij[707] = 18 +id[708] = "2051-06-29T19:30:45" +ik[708] = 0.113 +il[708] = 171 +im[708] = 0.0409 +ij[708] = 28.1 +id[709] = "2051-09-10T13:41:28" +ik[709] = 1.01 +il[709] = -124 +im[709] = 0.0496 +ij[709] = 12 +id[710] = "2051-09-20T20:58:09" +ik[710] = 25.74 +il[710] = 72 +im[710] = 0.0089 +ij[710] = 16 +id[711] = "2051-12-05T19:26:36" +ik[711] = 6.091 +il[711] = 111 +im[711] = 0.0529 +ij[711] = 28.1 +id[712] = "2051-12-26T18:08:15" +ik[712] = 1.33 +il[712] = -20 +im[712] = 0.0385 +ij[712] = 28.8 +id[713] = "2051-12-30T00:20:12" +ik[713] = 4.421 +il[713] = -87 +im[713] = 0.0046 +ij[713] = 27.4 +id[714] = "2052-01-13T13:15:38" +ik[714] = 5.352 +il[714] = -143 +im[714] = 0.0099 +ij[714] = 27.1 +id[715] = "2052-02-01T23:52:35" +ik[715] = 0 +il[715] = -113 +im[715] = 0.0652 +ij[715] = 17 +id[716] = "2052-02-26T21:52:48" +ik[716] = 33.287 +il[716] = 152 +im[716] = 0.0208 +ij[716] = 8 +id[717] = "2052-04-04T16:46:36" +ik[717] = 0.162 +il[717] = -133 +im[717] = 0.066 +ij[717] = 27.3 +id[718] = "2052-05-06T04:33:59" +ik[718] = 1.259 +il[718] = -11 +im[718] = 0.0222 +ij[718] = 27.5 +id[719] = "2052-06-03T11:42:31" +ik[719] = -24.39 +il[719] = 152 +im[719] = 0.0399 +ij[719] = 15 +id[720] = "2052-06-11T23:18:45" +ik[720] = 1.602 +il[720] = 60 +im[720] = 0.1471 +ij[720] = 28.7 +id[721] = "2052-06-12T22:09:50" +ik[721] = 0.938 +il[721] = 86 +im[721] = 0.1496 +ij[721] = 28.5 +id[722] = "2052-07-04T14:26:26" +ik[722] = 47.208 +il[722] = 51 +im[722] = 0.0307 +ij[722] = 3 +id[723] = "2052-07-27T02:38:06" +ik[723] = 5.205 +il[723] = 87 +im[723] = 0.1695 +ij[723] = 27.6 +id[724] = "2052-08-03T02:24:50" +ik[724] = -2.388 +il[724] = 158 +im[724] = 0.0689 +ij[724] = 2 +id[725] = "2052-09-22T03:35:21" +ik[725] = 0 +il[725] = -89 +im[725] = 0.2402 +ij[725] = 13 +id[726] = "2052-10-10T00:50:07" +ik[726] = 3.427 +il[726] = 124 +im[726] = 0.0127 +ij[726] = 28.1 +id[727] = "2052-10-28T08:28:34" +ik[727] = 1.29 +il[727] = 179 +im[727] = 0.3072 +ij[727] = 11 +id[728] = "2052-11-16T17:15:31" +ik[728] = 6.187 +il[728] = 62 +im[728] = 0.1348 +ij[728] = 28.1 +id[729] = "2052-11-19T08:44:29" +ik[729] = 1.143 +il[729] = -145 +im[729] = 0.0325 +ij[729] = 28.2 +id[730] = "2052-11-28T02:37:56" +ik[730] = 66.96 +il[730] = 30 +im[730] = 0.25 +ij[730] = 7.13 +id[731] = "2052-11-30T09:46:27" +ik[731] = 4.916 +il[731] = -55 +im[731] = 0.1618 +ij[731] = 27.6 +id[732] = "2052-12-08T03:10:10" +ik[732] = 1.843 +il[732] = 117 +im[732] = 0.2086 +ij[732] = 28.5 +id[733] = "2053-01-17T14:51:53" +ik[733] = 117.47 +il[733] = -35 +im[733] = 0.1227 +ij[733] = 14 +id[734] = "2053-01-20T17:51:04" +ik[734] = -1.813 +il[734] = -50 +im[734] = 0.1515 +ij[734] = 4 +id[735] = "2053-02-04T08:42:25" +ik[735] = 38.94 +il[735] = -135 +im[735] = 0.1206 +ij[735] = 1 +id[736] = "2053-03-14T19:14:42" +ik[736] = 2.938 +il[736] = 69 +im[736] = 0.0652 +ij[736] = 27.2 +id[737] = "2053-04-11T23:13:51" +ik[737] = 12 +il[737] = -86 +im[737] = 0.0478 +ij[737] = 18 +id[738] = "2053-04-26T20:28:21" +ik[738] = 31.48 +il[738] = 96 +im[738] = 0.0569 +ij[738] = 9 +id[739] = "2053-07-14T13:26:53" +ik[739] = 0.607 +il[739] = -133 +im[739] = 0.0416 +ij[739] = 28.2 +id[740] = "2053-08-14T04:28:38" +ik[740] = 0.788 +il[740] = -55 +im[740] = 0.0177 +ij[740] = 28.6 +id[741] = "2053-09-02T10:51:02" +ik[741] = 25.865 +il[741] = 34 +im[741] = 0.0316 +ij[741] = 16 +id[742] = "2053-10-16T18:09:54" +ik[742] = 0.5 +il[742] = 5 +im[742] = 0.0496 +ij[742] = 12 +id[743] = "2053-12-23T10:37:03" +ik[743] = 5.604 +il[743] = -117 +im[743] = 0.0078 +ij[743] = 27.1 +id[744] = "2054-01-11T18:07:12" +ik[744] = 0 +il[744] = -45 +im[744] = 0.0568 +ij[744] = 17 +id[745] = "2054-01-18T22:11:43" +ik[745] = 1.109 +il[745] = -39 +im[745] = 0.0393 +ij[745] = 28.2 +id[746] = "2054-03-11T17:43:17" +ik[746] = 0.26 +il[746] = 168 +im[746] = 0.0704 +ij[746] = 27.3 +id[747] = "2054-03-24T16:04:06" +ik[747] = 1.612 +il[747] = -42 +im[747] = 0.0632 +ij[747] = 28.2 +id[748] = "2054-04-10T06:59:32" +ik[748] = 0.852 +il[748] = -107 +im[748] = 0.0779 +ij[748] = 27.5 +id[749] = "2054-04-29T09:49:14" +ik[749] = 35.822 +il[749] = 34 +im[749] = 0.0591 +ij[749] = 8 +id[750] = "2054-05-09T11:03:21" +ik[750] = -25.179 +il[750] = 112 +im[750] = 0.0843 +ij[750] = 15 +id[751] = "2054-05-26T20:00:18" +ik[751] = 0.813 +il[751] = 146 +im[751] = 0.0855 +ij[751] = 28.7 +id[752] = "2054-06-21T03:31:28" +ik[752] = 3.685 +il[752] = -81 +im[752] = 0.1026 +ij[752] = 27.6 +id[753] = "2054-08-06T21:33:52" +ik[753] = 0.453 +il[753] = 107 +im[753] = 0.0978 +ij[753] = 28.5 +id[754] = "2054-08-20T19:17:19" +ik[754] = 45.164 +il[754] = -82 +im[754] = 0.1299 +ij[754] = 3 +id[755] = "2054-08-29T09:50:12" +ik[755] = 5.583 +il[755] = 144 +im[755] = 0.0739 +ij[755] = 27.2 +id[756] = "2054-09-10T08:09:45" +ik[756] = -2.129 +il[756] = -74 +im[756] = 0.0447 +ij[756] = 2 +id[757] = "2054-09-20T21:27:47" +ik[757] = 11 +il[757] = -170 +im[757] = 0.1058 +ij[757] = 18 +id[758] = "2054-11-09T14:52:22" +ik[758] = 0 +il[758] = 54 +im[758] = 0.2145 +ij[758] = 13 +id[759] = "2054-12-10T15:09:07" +ik[759] = 12 +il[759] = -24 +im[759] = 0.2375 +ij[759] = 17 +id[760] = "2054-12-17T21:21:01" +ik[760] = 2.77 +il[760] = -47 +im[760] = 0.1546 +ij[760] = 11 +id[761] = "2055-01-23T20:40:40" +ik[761] = 75.24 +il[761] = 119 +im[761] = 0.0273 +ij[761] = 7.1523 +id[762] = "2055-03-11T04:49:02" +ik[762] = 12 +il[762] = 74 +im[762] = 0.0918 +ij[762] = 18 +id[763] = "2055-03-19T06:14:12" +ik[763] = -1.599 +il[763] = 128 +im[763] = 0.0313 +ij[763] = 4 +id[764] = "2055-03-24T13:11:25" +ik[764] = 37.182 +il[764] = 74 +im[764] = 0.0894 +ij[764] = 1 +id[765] = "2055-03-27T02:35:31" +ik[765] = 137.49 +il[765] = -103 +im[765] = 0.1142 +ij[765] = 14 +id[766] = "2055-03-31T11:26:34" +ik[766] = 2.014 +il[766] = 166 +im[766] = 0.0876 +ij[766] = 28.5 +id[767] = "2055-06-02T20:43:28" +ik[767] = 31.34 +il[767] = -92 +im[767] = 0.0399 +ij[767] = 9 +id[768] = "2055-07-03T06:52:40" +ik[768] = 2.569 +il[768] = 47 +im[768] = 0.0573 +ij[768] = 28.2 +id[769] = "2055-08-15T13:29:54" +ik[769] = 25.98 +il[769] = 4 +im[769] = 0.0534 +ij[769] = 16 +id[770] = "2055-08-29T20:31:27" +ik[770] = 1.974 +il[770] = 38 +im[770] = 0.0552 +ij[770] = 28.1 +id[771] = "2055-09-04T06:43:17" +ik[771] = 1.611 +il[771] = -63 +im[771] = 0.0452 +ij[771] = 28.6 +id[772] = "2055-11-28T13:12:08" +ik[772] = 0.31 +il[772] = -29 +im[772] = 0.0554 +ij[772] = 12 +id[773] = "2055-12-23T20:18:22" +ik[773] = 0 +il[773] = -74 +im[773] = 0.0597 +ij[773] = 17 +id[774] = "2056-02-13T18:19:20" +ik[774] = 0.245 +il[774] = 90 +im[774] = 0.0014 +ij[774] = 28.1 +id[775] = "2056-02-18T21:26:57" +ik[775] = 0.26 +il[775] = 92 +im[775] = 0.058 +ij[775] = 27.3 +id[776] = "2056-02-25T00:46:13" +ik[776] = 0.858 +il[776] = 101 +im[776] = 0.0529 +ij[776] = 28.2 +id[777] = "2056-03-18T18:00:05" +ik[777] = 0.695 +il[777] = 67 +im[777] = 0.0584 +ij[777] = 27.5 +id[778] = "2056-04-17T09:39:19" +ik[778] = -25.512 +il[778] = 123 +im[778] = 0.0648 +ij[778] = 15 +id[779] = "2056-05-16T03:39:53" +ik[779] = 0.416 +il[779] = 133 +im[779] = 0.0645 +ij[779] = 28.7 +id[780] = "2056-05-27T17:24:18" +ik[780] = 3.133 +il[780] = 40 +im[780] = 0.0279 +ij[780] = 27.6 +id[781] = "2056-07-19T08:18:34" +ik[781] = 35.487 +il[781] = -27 +im[781] = 0.0567 +ij[781] = 8 +id[782] = "2056-07-30T14:39:13" +ik[782] = 5.007 +il[782] = -12 +im[782] = 0.0862 +ij[782] = 27.2 +id[783] = "2056-08-18T18:59:41" +ik[783] = 11 +il[783] = 111 +im[783] = 0.029 +ij[783] = 18 +id[784] = "2056-10-07T01:10:24" +ik[784] = 40.544 +il[784] = 138 +im[784] = 0.0878 +ij[784] = 3 +id[785] = "2056-10-10T16:10:40" +ik[785] = -1.847 +il[785] = -52 +im[785] = 0.1046 +ij[785] = 2 +id[786] = "2056-10-30T12:04:07" +ik[786] = 0.576 +il[786] = -158 +im[786] = 0.0221 +ij[786] = 28.5 +id[787] = "2056-12-15T02:36:00" +ik[787] = 0 +il[787] = 65 +im[787] = 0.1546 +ij[787] = 13 +id[788] = "2056-12-18T18:02:44" +ik[788] = 0.611 +il[788] = -131 +im[788] = 0.2014 +ij[788] = 28.2 +id[789] = "2056-12-26T15:37:29" +ik[789] = 2.617 +il[789] = -19 +im[789] = 0.0497 +ij[789] = 28.5 +id[790] = "2057-01-24T00:58:48" +ik[790] = 4.26 +il[790] = 93 +im[790] = 0.1378 +ij[790] = 11 +id[791] = "2057-03-06T01:38:36" +ik[791] = 80.96 +il[791] = -94 +im[791] = 0.1476 +ij[791] = 7.1845 +id[792] = "2057-05-03T09:19:26" +ik[792] = 37.274 +il[792] = -15 +im[792] = 0.1125 +ij[792] = 1 +id[793] = "2057-05-04T10:04:27" +ik[793] = -1.56 +il[793] = -16 +im[793] = 0.1104 +ij[793] = 4 +id[794] = "2057-05-12T00:30:23" +ik[794] = 147.91 +il[794] = -160 +im[794] = 0.0157 +ij[794] = 14 +id[795] = "2057-07-10T09:31:54" +ik[795] = 32.046 +il[795] = -83 +im[795] = 0.0482 +ij[795] = 9 +id[796] = "2057-07-11T16:40:53" +ik[796] = 0.306 +il[796] = -178 +im[796] = 0.0618 +ij[796] = 28.5 +id[797] = "2057-07-26T10:08:53" +ik[797] = 26.092 +il[797] = 63 +im[797] = 0.0726 +ij[797] = 16 +id[798] = "2057-09-24T12:04:57" +ik[798] = 2.228 +il[798] = -103 +im[798] = 0.0661 +ij[798] = 28.6 +id[799] = "2057-10-31T13:53:21" +ik[799] = 3.662 +il[799] = -129 +im[799] = 0.0245 +ij[799] = 27.4 +id[800] = "2057-11-04T19:50:35" +ik[800] = 1.887 +il[800] = -177 +im[800] = 0.0601 +ij[800] = 28.1 +id[801] = "2057-11-14T07:13:42" +ik[801] = 6.078 +il[801] = 105 +im[801] = 0.0172 +ij[801] = 27.1 +id[802] = "2057-12-04T05:47:05" +ik[802] = 0 +il[802] = -28 +im[802] = 0.0612 +ij[802] = 17 +id[803] = "2058-01-23T19:29:02" +ik[803] = 1.04 +il[803] = -87 +im[803] = 0.0102 +ij[803] = 12 +id[804] = "2058-03-28T17:02:18" +ik[804] = -25.717 +il[804] = 5 +im[804] = 0.0594 +ij[804] = 15 +id[805] = "2058-05-06T06:53:25" +ik[805] = 1.748 +il[805] = -174 +im[805] = 0.0074 +ij[805] = 28.1 +id[806] = "2058-05-06T23:39:06" +ik[806] = 2.803 +il[806] = -58 +im[806] = 0.005 +ij[806] = 27.6 +id[807] = "2058-05-08T15:43:29" +ik[807] = 0.118 +il[807] = 77 +im[807] = 0.0266 +ij[807] = 28.7 +id[808] = "2058-07-08T20:14:46" +ik[808] = 4.658 +il[808] = -111 +im[808] = 0.0621 +ij[808] = 27.2 +id[809] = "2058-07-28T05:16:32" +ik[809] = 12 +il[809] = -57 +im[809] = 0.0578 +ij[809] = 18 +id[810] = "2058-09-15T18:36:47" +ik[810] = 32.968 +il[810] = -136 +im[810] = 0.0458 +ij[810] = 8 +id[811] = "2058-11-12T01:25:21" +ik[811] = -1.666 +il[811] = -44 +im[811] = 0.0579 +ij[811] = 2 +id[812] = "2058-11-19T02:04:24" +ik[812] = 37.43 +il[812] = 14 +im[812] = 0.0866 +ij[812] = 3 +id[813] = "2059-01-17T00:30:50" +ik[813] = 0 +il[813] = -113 +im[813] = 0.0313 +ij[813] = 13 +id[814] = "2059-02-27T05:48:35" +ik[814] = 4.12 +il[814] = -180 +im[814] = 0.0084 +ij[814] = 11 +id[815] = "2059-03-18T13:36:56" +ik[815] = 3.492 +il[815] = 42 +im[815] = 0.2038 +ij[815] = 28.1 +id[816] = "2059-03-24T18:48:17" +ik[816] = 1.82 +il[816] = 13 +im[816] = 0.0513 +ij[816] = 28.2 +id[817] = "2059-04-10T02:52:43" +ik[817] = 83.1 +il[817] = 48 +im[817] = 0.0564 +ij[817] = 7.209 +id[818] = "2059-06-12T10:39:21" +ik[818] = 38.933 +il[818] = -177 +im[818] = 0.0967 +ij[818] = 1 +id[819] = "2059-06-15T18:13:34" +ik[819] = 149.74 +il[819] = 101 +im[819] = 0.0397 +ij[819] = 14 +id[820] = "2059-06-17T22:52:28" +ik[820] = -1.658 +il[820] = 53 +im[820] = 0.0123 +ij[820] = 4 +id[821] = "2059-07-04T05:01:02" +ik[821] = 26.174 +il[821] = 119 +im[821] = 0.0579 +ij[821] = 16 +id[822] = "2059-08-25T01:04:21" +ik[822] = 33.57 +il[822] = -38 +im[822] = 0.0414 +ij[822] = 9 +id[823] = "2059-10-11T00:27:34" +ik[823] = 1.326 +il[823] = 69 +im[823] = 0.0078 +ij[823] = 28.5 +id[824] = "2059-10-11T17:32:52" +ik[824] = 3.34 +il[824] = 179 +im[824] = 0.0184 +ij[824] = 27.4 +id[825] = "2059-10-14T13:54:24" +ik[825] = 2.47 +il[825] = -98 +im[825] = 0.0539 +ij[825] = 28.6 +id[826] = "2059-10-25T15:28:37" +ik[826] = 6.381 +il[826] = -13 +im[826] = 0.026 +ij[826] = 27.1 +id[827] = "2059-11-04T21:07:05" +ik[827] = 2.309 +il[827] = 2 +im[827] = 0.0479 +ij[827] = 28.8 +id[828] = "2059-11-15T06:06:46" +ik[828] = 0 +il[828] = -31 +im[828] = 0.0652 +ij[828] = 17 +id[829] = "2059-11-27T13:06:47" +ik[829] = 0.799 +il[829] = -16 +im[829] = 0.0648 +ij[829] = 28.2 +id[830] = "2060-01-09T05:30:12" +ik[830] = 0.156 +il[830] = 161 +im[830] = 0.0498 +ij[830] = 27.3 +id[831] = "2060-03-08T09:36:25" +ik[831] = -25.874 +il[831] = -25 +im[831] = 0.0575 +ij[831] = 15 +id[832] = "2060-04-06T07:13:56" +ik[832] = 0.58 +il[832] = -62 +im[832] = 0.0568 +ij[832] = 12 +id[833] = "2060-07-07T22:53:05" +ik[833] = 12 +il[833] = 47 +im[833] = 0.0444 +ij[833] = 18 +id[834] = "2060-07-09T07:54:17" +ik[834] = 2.168 +il[834] = -75 +im[834] = 0.0302 +ij[834] = 28.1 +id[835] = "2060-09-11T04:49:38" +ik[835] = 1.564 +il[835] = -130 +im[835] = 0.0501 +ij[835] = 28.2 +id[836] = "2060-10-25T19:08:47" +ik[836] = 31.27 +il[836] = 86 +im[836] = 0.078 +ij[836] = 8 +id[837] = "2060-12-17T20:59:35" +ik[837] = -1.585 +il[837] = -179 +im[837] = 0.0509 +ij[837] = 2 +id[838] = "2060-12-27T09:12:23" +ik[838] = 36.199 +il[838] = 120 +im[838] = 0.0674 +ij[838] = 3 +id[839] = "2061-02-22T18:14:02" +ik[839] = 0 +il[839] = 177 +im[839] = 0.0436 +ij[839] = 13 +id[840] = "2061-04-02T13:48:36" +ik[840] = 2.65 +il[840] = -128 +im[840] = 0.1064 +ij[840] = 11 +id[841] = "2061-05-13T17:16:37" +ik[841] = 79.96 +il[841] = -1 +im[841] = 0.0897 +ij[841] = 7.1978 +id[842] = "2061-06-07T13:48:12" +ik[842] = 25.66 +il[842] = -67 +im[842] = 0.1479 +ij[842] = 16 +id[843] = "2061-07-14T11:07:26" +ik[843] = 141.7 +il[843] = -28 +im[843] = 0.0988 +ij[843] = 14 +id[844] = "2061-07-25T03:32:24" +ik[844] = 42.115 +il[844] = -170 +im[844] = 0.0326 +ij[844] = 1 +id[845] = "2061-07-27T04:32:02" +ik[845] = -1.884 +il[845] = -165 +im[845] = 0.0774 +ij[845] = 4 +id[846] = "2061-09-18T08:12:21" +ik[846] = 2.841 +il[846] = -62 +im[846] = 0.0223 +ij[846] = 27.4 +id[847] = "2061-10-20T00:38:39" +ik[847] = 2.67 +il[847] = 2 +im[847] = 0.0269 +ij[847] = 28.8 +id[848] = "2061-10-24T04:03:00" +ik[848] = 35.317 +il[848] = -8 +im[848] = 0.0779 +ij[848] = 9 +id[849] = "2061-10-25T00:29:30" +ik[849] = 0 +il[849] = 54 +im[849] = 0.082 +ij[849] = 17 +id[850] = "2061-10-31T08:43:00" +ik[850] = 2.217 +il[850] = -8 +im[850] = 0.0245 +ij[850] = 28.6 +id[851] = "2061-11-20T06:38:22" +ik[851] = 2.246 +il[851] = -140 +im[851] = 0.054 +ij[851] = 28.2 +id[852] = "2061-12-18T10:27:13" +ik[852] = 0.509 +il[852] = 80 +im[852] = 0.0389 +ij[852] = 28.5 +id[853] = "2061-12-18T14:17:53" +ik[853] = 0.032 +il[853] = 24 +im[853] = 0.0409 +ij[853] = 27.3 +id[854] = "2062-01-16T06:33:26" +ik[854] = 0.549 +il[854] = 62 +im[854] = 0.0336 +ij[854] = 27.5 +id[855] = "2062-02-16T20:33:42" +ik[855] = -26.015 +il[855] = 162 +im[855] = 0.0569 +ij[855] = 15 +id[856] = "2062-03-27T07:40:53" +ik[856] = 2.315 +il[856] = 16 +im[856] = 0.0098 +ij[856] = 27.6 +id[857] = "2062-06-06T04:25:56" +ik[857] = 0.48 +il[857] = 30 +im[857] = 0.0175 +ij[857] = 12 +id[858] = "2062-06-19T11:32:44" +ik[858] = 12 +il[858] = -139 +im[858] = 0.0242 +ij[858] = 18 +id[859] = "2062-11-03T22:48:10" +ik[859] = 25.287 +il[859] = -48 +im[859] = 0.0698 +ij[859] = 16 +id[860] = "2062-11-29T10:23:54" +ik[860] = 30.629 +il[860] = 24 +im[860] = 0.0516 +ij[860] = 8 +id[861] = "2063-02-04T05:02:17" +ik[861] = -1.617 +il[861] = 26 +im[861] = 0.0524 +ij[861] = 2 +id[862] = "2063-02-07T04:09:15" +ik[862] = 36.839 +il[862] = 68 +im[862] = 0.0251 +ij[862] = 3 +id[863] = "2063-04-09T11:07:55" +ik[863] = 0 +il[863] = -174 +im[863] = 0.202 +ij[863] = 13 +id[864] = "2063-04-10T08:57:07" +ik[864] = 1.667 +il[864] = -133 +im[864] = 0.1994 +ij[864] = 28.2 +id[865] = "2063-04-26T11:38:56" +ik[865] = 4.665 +il[865] = -31 +im[865] = 0.192 +ij[865] = 27.4 +id[866] = "2063-05-14T22:09:03" +ik[866] = 0.19 +il[866] = -26 +im[866] = 0.1377 +ij[866] = 11 +id[867] = "2063-05-31T18:11:26" +ik[867] = 2.461 +il[867] = -3 +im[867] = 0.2491 +ij[867] = 28.1 +id[868] = "2063-06-22T11:16:37" +ik[868] = 74.01 +il[868] = -49 +im[868] = 0.0256 +ij[868] = 7.1442 +id[869] = "2063-08-14T11:46:30" +ik[869] = 127.03 +il[869] = 102 +im[869] = 0.1138 +ij[869] = 14 +id[870] = "2063-08-15T15:07:17" +ik[870] = 1.689 +il[870] = 63 +im[870] = 0.0787 +ij[870] = 27.4 +id[871] = "2063-08-26T23:30:44" +ik[871] = -2.202 +il[871] = 48 +im[871] = 0.1163 +ij[871] = 4 +id[872] = "2063-09-10T12:02:18" +ik[872] = 45.743 +il[872] = 3 +im[872] = 0.1274 +ij[872] = 1 +id[873] = "2063-09-29T21:59:23" +ik[873] = 3.406 +il[873] = 44 +im[873] = 0.0357 +ij[873] = 28.8 +id[874] = "2063-09-30T18:47:01" +ik[874] = 0 +il[874] = 101 +im[874] = 0.0576 +ij[874] = 17 +id[875] = "2063-11-14T02:18:33" +ik[875] = 1.467 +il[875] = 64 +im[875] = 0.0508 +ij[875] = 28.6 +id[876] = "2063-11-25T07:22:35" +ik[876] = 0.247 +il[876] = 99 +im[876] = 0.0079 +ij[876] = 27.3 +id[877] = "2063-12-24T22:01:02" +ik[877] = 0.596 +il[877] = 169 +im[877] = 0.0025 +ij[877] = 27.5 +id[878] = "2064-01-04T02:15:00" +ik[878] = 34.996 +il[878] = -155 +im[878] = 0.0712 +ij[878] = 9 +id[879] = "2064-01-27T05:01:41" +ik[879] = -26.153 +il[879] = 27 +im[879] = 0.0591 +ij[879] = 15 +id[880] = "2064-02-14T07:48:54" +ik[880] = 0.853 +il[880] = 159 +im[880] = 0.0751 +ij[880] = 28.5 +id[881] = "2064-03-05T17:52:20" +ik[881] = 2.065 +il[881] = -156 +im[881] = 0.0076 +ij[881] = 27.6 +id[882] = "2064-04-17T22:55:11" +ik[882] = 0.662 +il[882] = 180 +im[882] = 0.0169 +ij[882] = 28.7 +id[883] = "2064-05-09T12:30:12" +ik[883] = 3.921 +il[883] = -168 +im[883] = 0.0624 +ij[883] = 27.2 +id[884] = "2064-05-31T03:53:15" +ik[884] = 12 +il[884] = 163 +im[884] = 0.0065 +ij[884] = 18 +id[885] = "2064-07-20T08:44:36" +ik[885] = 1.05 +il[885] = -146 +im[885] = 0.0526 +ij[885] = 12 +id[886] = "2064-10-15T07:42:05" +ik[886] = 25.523 +il[886] = -169 +im[886] = 0.058 +ij[886] = 16 +id[887] = "2065-01-01T09:13:40" +ik[887] = 30.995 +il[887] = -162 +im[887] = 0.0182 +ij[887] = 8 +id[888] = "2065-01-31T08:57:47" +ik[888] = 4.922 +il[888] = 127 +im[888] = 0.0147 +ij[888] = 27.4 +id[889] = "2065-02-17T04:07:51" +ik[889] = 4.878 +il[889] = -1 +im[889] = 0.0515 +ij[889] = 27.1 +id[890] = "2065-03-11T12:28:35" +ik[890] = 23 +il[890] = 86 +im[890] = 0.0853 +ij[890] = 17 +id[891] = "2065-03-18T07:09:58" +ik[891] = 1.059 +il[891] = -130 +im[891] = 0.0737 +ij[891] = 28.8 +id[892] = "2065-03-31T21:07:20" +ik[892] = 39.927 +il[892] = 149 +im[892] = 0.0956 +ij[892] = 3 +id[893] = "2065-04-18T05:48:31" +ik[893] = -1.862 +il[893] = -177 +im[893] = 0.147 +ij[893] = 2 +id[894] = "2065-06-16T11:47:00" +ik[894] = 0 +il[894] = -66 +im[894] = 0.2449 +ij[894] = 13 +id[895] = "2065-06-22T00:06:24" +ik[895] = 2.318 +il[895] = 157 +im[895] = 0.1245 +ij[895] = 28.1 +id[896] = "2065-07-13T17:24:36" +ik[896] = 5.57 +il[896] = 90 +im[896] = 0.2837 +ij[896] = 11 +id[897] = "2065-08-11T18:43:07" +ik[897] = 4.907 +il[897] = 180 +im[897] = 0.1278 +ij[897] = 28.2 +id[898] = "2065-08-16T20:24:17" +ik[898] = 61.36 +il[898] = -155 +im[898] = 0.2431 +ij[898] = 7.098 +id[899] = "2065-09-28T12:23:05" +ik[899] = 104.03 +il[899] = 25 +im[899] = 0.1611 +ij[899] = 14 +id[900] = "2065-10-08T15:48:32" +ik[900] = -2.359 +il[900] = 74 +im[900] = 0.0314 +ij[900] = 4 +id[901] = "2065-10-19T07:34:31" +ik[901] = 1.476 +il[901] = -58 +im[901] = 0.145 +ij[901] = 27.3 +id[902] = "2065-11-03T19:52:19" +ik[902] = 45.119 +il[902] = -91 +im[902] = 0.0621 +ij[902] = 1 +id[903] = "2065-11-18T14:43:29" +ik[903] = 0.444 +il[903] = 131 +im[903] = 0.0765 +ij[903] = 28.6 +id[904] = "2065-11-24T02:03:37" +ik[904] = 0.972 +il[904] = 14 +im[904] = 0.0858 +ij[904] = 27.5 +id[905] = "2066-01-02T01:33:34" +ik[905] = -26.264 +il[905] = 38 +im[905] = 0.0106 +ij[905] = 15 +id[906] = "2066-02-10T12:25:15" +ik[906] = 1.751 +il[906] = -109 +im[906] = 0.0784 +ij[906] = 27.6 +id[907] = "2066-02-28T18:21:40" +ik[907] = 33.121 +il[907] = -25 +im[907] = 0.0086 +ij[907] = 9 +id[908] = "2066-04-11T04:24:54" +ik[908] = 0.945 +il[908] = -145 +im[908] = 0.0365 +ij[908] = 28.7 +id[909] = "2066-04-18T03:38:24" +ik[909] = 1.279 +il[909] = -67 +im[909] = 0.0582 +ij[909] = 28.5 +id[910] = "2066-04-19T06:51:12" +ik[910] = 3.629 +il[910] = -105 +im[910] = 0.0646 +ij[910] = 27.2 +id[911] = "2066-05-12T08:50:03" +ik[911] = 12 +il[911] = 83 +im[911] = 0.0021 +ij[911] = 18 +id[912] = "2066-05-14T00:16:29" +ik[912] = 0.707 +il[912] = -123 +im[912] = 0.0253 +ij[912] = 28.2 +id[913] = "2066-06-10T22:58:12" +ik[913] = 0.818 +il[913] = 160 +im[913] = 0.0149 +ij[913] = 28.1 +id[914] = "2066-08-27T10:41:03" +ik[914] = 1.11 +il[914] = 8 +im[914] = 0.0525 +ij[914] = 12 +id[915] = "2066-09-27T16:13:57" +ik[915] = 25.687 +il[915] = 74 +im[915] = 0.0489 +ij[915] = 16 +id[916] = "2066-10-26T08:19:01" +ik[916] = 0.765 +il[916] = 108 +im[916] = 0.0501 +ij[916] = 28.2 +id[917] = "2066-11-06T10:03:53" +ik[917] = 3.654 +il[917] = -179 +im[917] = 0.0591 +ij[917] = 28.1 +id[918] = "2067-01-06T05:56:26" +ik[918] = 1.595 +il[918] = 119 +im[918] = 0.069 +ij[918] = 28.2 +id[919] = "2067-01-07T05:13:16" +ik[919] = 4.538 +il[919] = 139 +im[919] = 0.0631 +ij[919] = 27.4 +id[920] = "2067-01-22T01:46:45" +ik[920] = 5.24 +il[920] = -28 +im[920] = 0.0491 +ij[920] = 27.1 +id[921] = "2067-02-08T22:07:53" +ik[921] = 32.422 +il[921] = -164 +im[921] = 0.0154 +ij[921] = 8 +id[922] = "2067-02-10T18:11:27" +ik[922] = 0 +il[922] = -88 +im[922] = 0.0182 +ij[922] = 17 +id[923] = "2067-02-22T02:35:42" +ik[923] = 1.256 +il[923] = -107 +im[923] = 0.0239 +ij[923] = 28.8 +id[924] = "2067-04-17T07:22:59" +ik[924] = 0.035 +il[924] = -26 +im[924] = 0.1006 +ij[924] = 27.3 +id[925] = "2067-05-20T23:25:10" +ik[925] = 1.668 +il[925] = 53 +im[925] = 0.0222 +ij[925] = 27.5 +id[926] = "2067-05-26T18:03:02" +ik[926] = 0.447 +il[926] = -171 +im[926] = 0.1337 +ij[926] = 28.6 +id[927] = "2067-06-12T02:30:20" +ik[927] = 45.79 +il[927] = -142 +im[927] = 0.1742 +ij[927] = 3 +id[928] = "2067-07-12T21:21:00" +ik[928] = -2.358 +il[928] = -129 +im[928] = 0.1915 +ij[928] = 2 +id[929] = "2067-08-29T12:23:36" +ik[929] = 0 +il[929] = 109 +im[929] = 0.1455 +ij[929] = 13 +id[930] = "2067-09-10T23:38:17" +ik[930] = 5.049 +il[930] = 62 +im[930] = 0.0613 +ij[930] = 28.1 +id[931] = "2067-10-02T23:42:23" +ik[931] = 4 +il[931] = -104 +im[931] = 0.3364 +ij[931] = 11 +id[932] = "2067-10-19T07:10:37" +ik[932] = 3.921 +il[932] = 144 +im[932] = 0.1291 +ij[932] = 28.1 +id[933] = "2067-11-01T15:21:18" +ik[933] = 64.12 +il[933] = 151 +im[933] = 0.1449 +ij[933] = 7.1216 +id[934] = "2067-12-01T03:15:41" +ik[934] = -25.335 +il[934] = -105 +im[934] = 0.0307 +ij[934] = 15 +id[935] = "2067-12-16T18:23:05" +ik[935] = 109.25 +il[935] = 177 +im[935] = 0.0708 +ij[935] = 14 +id[936] = "2067-12-24T15:54:47" +ik[936] = -1.961 +il[936] = -70 +im[936] = 0.1532 +ij[936] = 4 +id[937] = "2068-01-06T11:30:34" +ik[937] = 1.338 +il[937] = 117 +im[937] = 0.1368 +ij[937] = 27.6 +id[938] = "2068-01-13T08:00:14" +ik[938] = 40.295 +il[938] = -125 +im[938] = 0.0343 +ij[938] = 1 +id[939] = "2068-03-26T01:05:43" +ik[939] = 3.197 +il[939] = -55 +im[939] = 0.024 +ij[939] = 27.2 +id[940] = "2068-04-01T10:47:31" +ik[940] = 1.297 +il[940] = -140 +im[940] = 0.0735 +ij[940] = 28.7 +id[941] = "2068-04-11T21:27:53" +ik[941] = 31.771 +il[941] = 158 +im[941] = 0.0695 +ij[941] = 9 +id[942] = "2068-04-20T23:14:34" +ik[942] = 12 +il[942] = -143 +im[942] = 0.0215 +ij[942] = 18 +id[943] = "2068-04-28T20:00:07" +ik[943] = 4.592 +il[943] = -21 +im[943] = 0.0682 +ij[943] = 28.2 +id[944] = "2068-07-08T01:36:04" +ik[944] = 0.287 +il[944] = -150 +im[944] = 0.0566 +ij[944] = 28.5 +id[945] = "2068-09-09T07:16:00" +ik[945] = 25.819 +il[945] = 9 +im[945] = 0.0354 +ij[945] = 16 +id[946] = "2068-10-01T23:20:10" +ik[946] = 0.74 +il[946] = -2 +im[946] = 0.0499 +ij[946] = 12 +id[947] = "2068-12-08T09:42:37" +ik[947] = 1.847 +il[947] = -25 +im[947] = 0.0145 +ij[947] = 28.2 +id[948] = "2068-12-16T22:32:50" +ik[948] = 4.256 +il[948] = -136 +im[948] = 0.0567 +ij[948] = 27.4 +id[949] = "2068-12-31T03:33:04" +ik[949] = 5.511 +il[949] = -80 +im[949] = 0.0557 +ij[949] = 27.1 +id[950] = "2069-01-19T11:13:07" +ik[950] = 0 +il[950] = -1 +im[950] = 0.0125 +ij[950] = 17 +id[951] = "2069-02-05T01:35:19" +ik[951] = 1.407 +il[951] = -60 +im[951] = 0.0324 +ij[951] = 28.8 +id[952] = "2069-03-20T13:29:43" +ik[952] = 0.241 +il[952] = 174 +im[952] = 0.0242 +ij[952] = 27.3 +id[953] = "2069-04-01T11:20:46" +ik[953] = 34.877 +il[953] = -41 +im[953] = 0.0104 +ij[953] = 8 +id[954] = "2069-04-19T14:28:38" +ik[954] = 0.96 +il[954] = 85 +im[954] = 0.047 +ij[954] = 27.5 +id[955] = "2069-05-18T12:36:22" +ik[955] = -24.966 +il[955] = 30 +im[955] = 0.0538 +ij[955] = 15 +id[956] = "2069-05-29T00:28:55" +ik[956] = 0.551 +il[956] = -47 +im[956] = 0.0202 +ij[956] = 28.6 +id[957] = "2069-07-02T05:18:28" +ik[957] = 4.055 +il[957] = -148 +im[957] = 0.0945 +ij[957] = 27.6 +id[958] = "2069-08-02T19:44:15" +ik[958] = 46.693 +il[958] = -55 +im[958] = 0.1387 +ij[958] = 3 +id[959] = "2069-08-28T06:04:35" +ik[959] = -2.253 +il[959] = 40 +im[959] = 0.1114 +ij[959] = 2 +id[960] = "2069-09-19T23:08:16" +ik[960] = 5.847 +il[960] = 7 +im[960] = 0.0831 +ij[960] = 27.2 +id[961] = "2069-10-06T02:14:06" +ik[961] = 0.852 +il[961] = 118 +im[961] = 0.0408 +ij[961] = 28.7 +id[962] = "2069-10-23T18:23:35" +ik[962] = 0 +il[962] = 49 +im[962] = 0.1853 +ij[962] = 13 +id[963] = "2069-10-24T14:36:02" +ik[963] = 2.113 +il[963] = 114 +im[963] = 0.2122 +ij[963] = 28.2 +id[964] = "2069-11-03T00:57:26" +ik[964] = 0.275 +il[964] = 51 +im[964] = 0.082 +ij[964] = 28.7 +id[965] = "2069-11-30T09:26:24" +ik[965] = 1.51 +il[965] = 168 +im[965] = 0.1165 +ij[965] = 11 +id[966] = "2070-01-04T01:36:28" +ik[966] = 72.3 +il[966] = 76 +im[966] = 0.1693 +ij[966] = 7.1421 +id[967] = "2070-02-16T14:22:56" +ik[967] = 2.242 +il[967] = -65 +im[967] = 0.0711 +ij[967] = 27.2 +id[968] = "2070-02-26T17:38:48" +ik[968] = -1.658 +il[968] = -19 +im[968] = 0.1241 +ij[968] = 4 +id[969] = "2070-03-03T11:02:19" +ik[969] = 130.69 +il[969] = 125 +im[969] = 0.0473 +ij[969] = 14 +id[970] = "2070-03-07T03:45:12" +ik[970] = 37.617 +il[970] = -91 +im[970] = 0.0457 +ij[970] = 1 +id[971] = "2070-03-17T14:20:51" +ik[971] = 1.877 +il[971] = -151 +im[971] = 0.037 +ij[971] = 28.7 +id[972] = "2070-03-26T07:46:23" +ik[972] = 12 +il[972] = 29 +im[972] = 0.1038 +ij[972] = 18 +id[973] = "2070-05-19T13:18:06" +ik[973] = 31.293 +il[973] = 99 +im[973] = 0.0674 +ij[973] = 9 +id[974] = "2070-07-31T20:10:57" +ik[974] = 3.768 +il[974] = -24 +im[974] = 0.0556 +ij[974] = 28.1 +id[975] = "2070-08-22T16:08:50" +ik[975] = 25.937 +il[975] = -113 +im[975] = 0.0163 +ij[975] = 16 +id[976] = "2070-11-10T18:35:44" +ik[976] = 0.02 +il[976] = -79 +im[976] = 0.0597 +ij[976] = 12 +id[977] = "2070-12-31T04:48:53" +ik[977] = 0 +il[977] = 86 +im[977] = 0.0059 +ij[977] = 17 +id[978] = "2071-01-22T06:42:59" +ik[978] = 1.505 +il[978] = -94 +im[978] = 0.0625 +ij[978] = 28.8 +id[979] = "2071-02-26T21:43:26" +ik[979] = 0.266 +il[979] = 31 +im[979] = 0.0097 +ij[979] = 27.3 +id[980] = "2071-03-27T23:22:13" +ik[980] = 0.743 +il[980] = -80 +im[980] = 0.0107 +ij[980] = 27.5 +id[981] = "2071-04-26T10:41:12" +ik[981] = -25.405 +il[981] = 38 +im[981] = 0.0058 +ij[981] = 15 +id[982] = "2071-06-06T10:25:33" +ik[982] = 3.308 +il[982] = 81 +im[982] = 0.031 +ij[982] = 27.6 +id[983] = "2071-06-07T02:09:29" +ik[983] = 1.18 +il[983] = -149 +im[983] = 0.0201 +ij[983] = 28.6 +id[984] = "2071-06-19T12:15:26" +ik[984] = 36.182 +il[984] = -178 +im[984] = 0.0699 +ij[984] = 8 +id[985] = "2071-08-10T09:27:31" +ik[985] = 5.192 +il[985] = 13 +im[985] = 0.0913 +ij[985] = 27.2 +id[986] = "2071-08-29T20:23:10" +ik[986] = 11 +il[986] = 40 +im[986] = 0.0789 +ij[986] = 18 +id[987] = "2071-08-30T19:03:23" +ik[987] = 0.415 +il[987] = 69 +im[987] = 0.0639 +ij[987] = 28.7 +id[988] = "2071-09-19T11:14:12" +ik[988] = 42.268 +il[988] = 18 +im[988] = 0.0455 +ij[988] = 3 +id[989] = "2071-09-29T13:56:36" +ik[989] = -1.946 +il[989] = 76 +im[989] = 0.0501 +ij[989] = 2 +id[990] = "2071-12-02T11:02:48" +ik[990] = 0 +il[990] = 20 +im[990] = 0.1868 +ij[990] = 13 +id[991] = "2072-01-11T00:30:24" +ik[991] = 3.92 +il[991] = 179 +im[991] = 0.2153 +ij[991] = 11 +id[992] = "2072-01-31T14:53:32" +ik[992] = 3.003 +il[992] = -30 +im[992] = 0.0831 +ij[992] = 28.2 +id[993] = "2072-02-19T11:07:32" +ik[993] = 79 +il[993] = -167 +im[993] = 0.1517 +ij[993] = 7.1715 +id[994] = "2072-04-16T16:01:56" +ik[994] = -1.558 +il[994] = -59 +im[994] = 0.1064 +ij[994] = 4 +id[995] = "2072-04-17T21:32:15" +ik[995] = 37.046 +il[995] = -130 +im[995] = 0.1109 +ij[995] = 1 +id[996] = "2072-04-25T17:16:24" +ik[996] = 145.26 +il[996] = 8 +im[996] = 0.0137 +ij[996] = 14 +id[997] = "2072-06-24T22:19:26" +ik[997] = 31.667 +il[997] = 149 +im[997] = 0.061 +ij[997] = 9 +id[998] = "2072-08-03T04:07:45" +ik[998] = 26.051 +il[998] = 81 +im[998] = 0.0015 +ij[998] = 16 +id[999] = "2072-09-14T09:48:56" +ik[999] = 0.161 +il[999] = 46 +im[999] = 0.0042 +ij[999] = 28.2 +id[1000] = "2072-10-05T09:18:39" +ik[1000] = 1.906 +il[1000] = -103 +im[1000] = 0.0561 +ij[1000] = 28.1 +id[1001] = "2072-12-11T13:27:20" +ik[1001] = 0 +il[1001] = 140 +im[1001] = 0.0191 +ij[1001] = 17 +id[1002] = "2072-12-30T00:43:44" +ik[1002] = 0.83 +il[1002] = 163 +im[1002] = 0.0514 +ij[1002] = 12 +id[1003] = "2073-03-21T06:44:23" +ik[1003] = 1.309 +il[1003] = -61 +im[1003] = 0.0166 +ij[1003] = 28.2 +id[1004] = "2073-04-04T16:34:38" +ik[1004] = 1.465 +il[1004] = -57 +im[1004] = 0.0118 +ij[1004] = 28.1 +id[1005] = "2073-04-05T08:30:13" +ik[1005] = -25.646 +il[1005] = 71 +im[1005] = 0.0033 +ij[1005] = 15 +id[1006] = "2073-05-14T23:10:30" +ik[1006] = 2.918 +il[1006] = -122 +im[1006] = 0.0557 +ij[1006] = 27.6 +id[1007] = "2073-06-17T08:41:03" +ik[1007] = 1.482 +il[1007] = 63 +im[1007] = 0.0078 +ij[1007] = 28.6 +id[1008] = "2073-07-03T07:34:51" +ik[1008] = 2.091 +il[1008] = -124 +im[1008] = 0.0213 +ij[1008] = 28.2 +id[1009] = "2073-07-17T00:56:03" +ik[1009] = 4.779 +il[1009] = 111 +im[1009] = 0.0218 +ij[1009] = 27.2 +id[1010] = "2073-08-05T06:19:59" +ik[1010] = 12 +il[1010] = -143 +im[1010] = 0.0689 +ij[1010] = 18 +id[1011] = "2073-08-18T08:38:08" +ik[1011] = 0.031 +il[1011] = -50 +im[1011] = 0.0712 +ij[1011] = 28.7 +id[1012] = "2073-08-27T00:11:53" +ik[1012] = 33.914 +il[1012] = 161 +im[1012] = 0.031 +ij[1012] = 8 +id[1013] = "2073-10-30T04:08:10" +ik[1013] = -1.724 +il[1013] = 4 +im[1013] = 0.0947 +ij[1013] = 2 +id[1014] = "2073-11-03T02:10:10" +ik[1014] = 38.417 +il[1014] = 72 +im[1014] = 0.0809 +ij[1014] = 3 +id[1015] = "2074-01-04T17:16:52" +ik[1015] = 0 +il[1015] = 90 +im[1015] = 0.1005 +ij[1015] = 13 +id[1016] = "2074-02-14T02:05:31" +ik[1016] = 4.33 +il[1016] = -32 +im[1016] = 0.101 +ij[1016] = 11 +id[1017] = "2074-03-05T14:58:51" +ik[1017] = 1.861 +il[1017] = 114 +im[1017] = 0.1993 +ij[1017] = 28.1 +id[1018] = "2074-03-27T17:47:38" +ik[1018] = 82.02 +il[1018] = -88 +im[1018] = 0.1441 +ij[1018] = 7.2022 +id[1019] = "2074-05-27T15:24:11" +ik[1019] = 38.097 +il[1019] = 172 +im[1019] = 0.1052 +ij[1019] = 1 +id[1020] = "2074-05-31T17:29:58" +ik[1020] = -1.604 +il[1020] = 180 +im[1020] = 0.0353 +ij[1020] = 4 +id[1021] = "2074-06-03T05:17:32" +ik[1021] = 149.5 +il[1021] = 27 +im[1021] = 0.0222 +ij[1021] = 14 +id[1022] = "2074-07-13T12:25:59" +ik[1022] = 26.155 +il[1022] = -50 +im[1022] = 0.0088 +ij[1022] = 16 +id[1023] = "2074-08-05T22:49:39" +ik[1023] = 32.886 +il[1023] = 22 +im[1023] = 0.0724 +ij[1023] = 9 +id[1024] = "2074-09-04T06:23:24" +ik[1024] = 2.665 +il[1024] = -166 +im[1024] = 0.0646 +ij[1024] = 28.2 +id[1025] = "2074-10-19T17:29:02" +ik[1025] = 3.479 +il[1025] = 110 +im[1025] = 0.045 +ij[1025] = 27.4 +id[1026] = "2074-11-02T13:27:03" +ik[1026] = 6.251 +il[1026] = -54 +im[1026] = 0.0485 +ij[1026] = 27.1 +id[1027] = "2074-11-22T19:48:21" +ik[1027] = 0 +il[1027] = 49 +im[1027] = 0.0311 +ij[1027] = 17 +id[1028] = "2075-03-09T10:22:25" +ik[1028] = 0.94 +il[1028] = -179 +im[1028] = 0.0594 +ij[1028] = 12 +id[1029] = "2075-03-16T23:30:25" +ik[1029] = -25.817 +il[1029] = -168 +im[1029] = 0.0055 +ij[1029] = 15 +id[1030] = "2075-06-17T17:35:32" +ik[1030] = 1.812 +il[1030] = 132 +im[1030] = 0.0601 +ij[1030] = 28.1 +id[1031] = "2075-06-26T15:53:39" +ik[1031] = 4.492 +il[1031] = -116 +im[1031] = 0.0032 +ij[1031] = 27.2 +id[1032] = "2075-06-30T08:27:31" +ik[1032] = 1.455 +il[1032] = 32 +im[1032] = 0.0469 +ij[1032] = 28.6 +id[1033] = "2075-07-16T08:28:04" +ik[1033] = 12 +il[1033] = -173 +im[1033] = 0.0594 +ij[1033] = 18 +id[1034] = "2075-08-10T17:35:54" +ik[1034] = 0.192 +il[1034] = -63 +im[1034] = 0.0279 +ij[1034] = 28.7 +id[1035] = "2075-10-12T00:39:26" +ik[1035] = 31.805 +il[1035] = 74 +im[1035] = 0.0752 +ij[1035] = 8 +id[1036] = "2075-12-03T17:29:05" +ik[1036] = -1.605 +il[1036] = -29 +im[1036] = 0.0452 +ij[1036] = 2 +id[1037] = "2075-12-13T04:21:12" +ik[1037] = 36.465 +il[1037] = -101 +im[1037] = 0.0368 +ij[1037] = 3 +id[1038] = "2076-02-08T05:18:00" +ik[1038] = 0 +il[1038] = 76 +im[1038] = 0.011 +ij[1038] = 13 +id[1039] = "2076-02-12T11:05:13" +ik[1039] = 1.959 +il[1039] = 30 +im[1039] = 0.1474 +ij[1039] = 28.2 +id[1040] = "2076-03-19T09:37:58" +ik[1040] = 3.39 +il[1040] = 15 +im[1040] = 0.0596 +ij[1040] = 11 +id[1041] = "2076-05-01T04:20:36" +ik[1041] = 82.96 +il[1041] = -75 +im[1041] = 0.0803 +ij[1041] = 7.2079 +id[1042] = "2076-06-16T11:20:03" +ik[1042] = 26.089 +il[1042] = -91 +im[1042] = 0.1214 +ij[1042] = 16 +id[1043] = "2076-07-03T04:18:25" +ik[1043] = 145.96 +il[1043] = 177 +im[1043] = 0.1133 +ij[1043] = 14 +id[1044] = "2076-07-07T12:49:14" +ik[1044] = 40.702 +il[1044] = 91 +im[1044] = 0.0348 +ij[1044] = 1 +id[1045] = "2076-07-12T20:02:52" +ik[1045] = -1.781 +il[1045] = 34 +im[1045] = 0.0826 +ij[1045] = 4 +id[1046] = "2076-09-27T15:46:36" +ik[1046] = 3.072 +il[1046] = 127 +im[1046] = 0.0774 +ij[1046] = 27.4 +id[1047] = "2076-09-27T23:43:26" +ik[1047] = 34.725 +il[1047] = 11 +im[1047] = 0.0744 +ij[1047] = 9 +id[1048] = "2076-11-02T05:33:07" +ik[1048] = 0 +il[1048] = -91 +im[1048] = 0.0259 +ij[1048] = 17 +id[1049] = "2076-12-11T03:25:32" +ik[1049] = 1.679 +il[1049] = -36 +im[1049] = 0.0346 +ij[1049] = 28.8 +id[1050] = "2076-12-26T21:44:10" +ik[1050] = 0.092 +il[1050] = -156 +im[1050] = 0.0239 +ij[1050] = 27.3 +id[1051] = "2077-01-24T10:51:34" +ik[1051] = 0.55 +il[1051] = -72 +im[1051] = 0.0288 +ij[1051] = 27.5 +id[1052] = "2077-02-24T15:09:28" +ik[1052] = -25.962 +il[1052] = 180 +im[1052] = 0.0066 +ij[1052] = 15 +id[1053] = "2077-05-15T20:41:58" +ik[1053] = 0.1 +il[1053] = 160 +im[1053] = 0.0566 +ij[1053] = 12 +id[1054] = "2077-06-26T16:30:44" +ik[1054] = 12 +il[1054] = 71 +im[1054] = 0.0606 +ij[1054] = 18 +id[1055] = "2077-08-03T18:22:26" +ik[1055] = 0.325 +il[1055] = 59 +im[1055] = 0.0127 +ij[1055] = 28.7 +id[1056] = "2077-08-23T11:55:03" +ik[1056] = 5.559 +il[1056] = -11 +im[1056] = 0.0631 +ij[1056] = 28.1 +id[1057] = "2077-11-11T18:47:52" +ik[1057] = 25.155 +il[1057] = -58 +im[1057] = 0.0196 +ij[1057] = 16 +id[1058] = "2077-11-16T07:50:05" +ik[1058] = 30.759 +il[1058] = 150 +im[1058] = 0.0721 +ij[1058] = 8 +id[1059] = "2078-01-14T05:48:39" +ik[1059] = -1.588 +il[1059] = 28 +im[1059] = 0.105 +ij[1059] = 2 +id[1060] = "2078-01-21T03:32:15" +ik[1060] = 36.347 +il[1060] = 129 +im[1060] = 0.0087 +ij[1060] = 3 +id[1061] = "2078-03-21T04:18:53" +ik[1061] = 0 +il[1061] = -39 +im[1061] = 0.1527 +ij[1061] = 13 +id[1062] = "2078-04-27T01:53:58" +ik[1062] = 0.94 +il[1062] = -34 +im[1062] = 0.0054 +ij[1062] = 11 +id[1063] = "2078-05-24T05:52:43" +ik[1063] = 1.31 +il[1063] = -40 +im[1063] = 0.0281 +ij[1063] = 28.2 +id[1064] = "2078-06-06T03:21:29" +ik[1064] = 76.96 +il[1064] = 123 +im[1064] = 0.0251 +ij[1064] = 7.1682 +id[1065] = "2078-08-01T17:57:15" +ik[1065] = 133.57 +il[1065] = 96 +im[1065] = 0.0186 +ij[1065] = 14 +id[1066] = "2078-08-15T07:45:06" +ik[1066] = -2.072 +il[1066] = 22 +im[1066] = 0.0075 +ij[1066] = 4 +id[1067] = "2078-08-22T21:57:10" +ik[1067] = 44.474 +il[1067] = -117 +im[1067] = 0.1291 +ij[1067] = 1 +id[1068] = "2078-09-01T00:01:14" +ik[1068] = 2.297 +il[1068] = -59 +im[1068] = 0.0667 +ij[1068] = 27.4 +id[1069] = "2078-10-11T04:20:52" +ik[1069] = 0 +il[1069] = -90 +im[1069] = 0.0247 +ij[1069] = 17 +id[1070] = "2078-11-25T04:18:08" +ik[1070] = 1.806 +il[1070] = -6 +im[1070] = 0.0287 +ij[1070] = 28.8 +id[1071] = "2078-12-05T00:17:49" +ik[1071] = 0.102 +il[1071] = 151 +im[1071] = 0.0704 +ij[1071] = 27.3 +id[1072] = "2078-12-07T18:57:39" +ik[1072] = 35.474 +il[1072] = -102 +im[1072] = 0.0287 +ij[1072] = 9 +id[1073] = "2079-01-03T02:34:06" +ik[1073] = 0.563 +il[1073] = 42 +im[1073] = 0.064 +ij[1073] = 27.5 +id[1074] = "2079-02-04T13:29:19" +ik[1074] = -26.101 +il[1074] = -166 +im[1074] = 0.0116 +ij[1074] = 15 +id[1075] = "2079-02-28T06:36:15" +ik[1075] = 0.208 +il[1075] = 166 +im[1075] = 0.0675 +ij[1075] = 28.2 +id[1076] = "2079-03-15T00:22:04" +ik[1076] = 2.166 +il[1076] = 41 +im[1076] = 0.0577 +ij[1076] = 27.6 +id[1077] = "2079-06-08T09:13:11" +ik[1077] = 12 +il[1077] = 8 +im[1077] = 0.057 +ij[1077] = 18 +id[1078] = "2079-07-05T00:41:59" +ik[1078] = 0.9 +il[1078] = 31 +im[1078] = 0.0557 +ij[1078] = 12 +id[1079] = "2079-10-23T11:07:42" +ik[1079] = 25.444 +il[1079] = 62 +im[1079] = 0.0227 +ij[1079] = 16 +id[1080] = "2079-11-10T13:55:58" +ik[1080] = 0.176 +il[1080] = -165 +im[1080] = 0.0547 +ij[1080] = 28.2 +id[1081] = "2079-12-19T23:26:59" +ik[1081] = 30.731 +il[1081] = 71 +im[1081] = 0.0319 +ij[1081] = 8 +id[1082] = "2080-02-13T20:21:41" +ik[1082] = 5.128 +il[1082] = -69 +im[1082] = 0.0173 +ij[1082] = 27.4 +id[1083] = "2080-03-04T00:42:34" +ik[1083] = 4.707 +il[1083] = 48 +im[1083] = 0.108 +ij[1083] = 27.1 +id[1084] = "2080-03-08T15:29:13" +ik[1084] = 38.351 +il[1084] = -130 +im[1084] = 0.0975 +ij[1084] = 3 +id[1085] = "2080-03-16T10:40:14" +ik[1085] = -1.725 +il[1085] = 16 +im[1085] = 0.0985 +ij[1085] = 2 +id[1086] = "2080-04-02T02:07:50" +ik[1086] = 23 +il[1086] = -58 +im[1086] = 0.1533 +ij[1086] = 17 +id[1087] = "2080-05-16T17:57:45" +ik[1087] = 0 +il[1087] = 127 +im[1087] = 0.2434 +ij[1087] = 13 +id[1088] = "2080-05-31T22:42:27" +ik[1088] = 1.739 +il[1088] = -172 +im[1088] = 0.1912 +ij[1088] = 28.1 +id[1089] = "2080-06-06T01:12:56" +ik[1089] = 0 +il[1089] = -161 +im[1089] = 0.1394 +ij[1089] = 18 +id[1090] = "2080-06-16T17:12:12" +ik[1090] = 3.38 +il[1090] = 58 +im[1090] = 0.0799 +ij[1090] = 11 +id[1091] = "2080-07-03T06:56:50" +ik[1091] = 5.065 +il[1091] = 180 +im[1091] = 0.1877 +ij[1091] = 28.1 +id[1092] = "2080-07-23T17:00:20" +ik[1092] = 67.96 +il[1092] = -131 +im[1092] = 0.2206 +ij[1092] = 7.1097 +id[1093] = "2080-09-05T21:39:04" +ik[1093] = 0 +il[1093] = -126 +im[1093] = 0.1079 +ij[1093] = 17 +id[1094] = "2080-09-07T04:21:10" +ik[1094] = 113.43 +il[1094] = 146 +im[1094] = 0.0518 +ij[1094] = 14 +id[1095] = "2080-09-17T19:52:15" +ik[1095] = -2.357 +il[1095] = 18 +im[1095] = 0.141 +ij[1095] = 4 +id[1096] = "2080-10-10T15:28:13" +ik[1096] = 46.236 +il[1096] = -51 +im[1096] = 0.1257 +ij[1096] = 1 +id[1097] = "2080-11-01T18:04:43" +ik[1097] = 2.292 +il[1097] = 127 +im[1097] = 0.0745 +ij[1097] = 28.8 +id[1098] = "2080-11-06T00:51:26" +ik[1098] = 0.694 +il[1098] = 67 +im[1098] = 0.0541 +ij[1098] = 27.3 +id[1099] = "2080-12-07T14:40:40" +ik[1099] = 0.727 +il[1099] = 169 +im[1099] = 0.0993 +ij[1099] = 27.5 +id[1100] = "2081-01-12T06:12:12" +ik[1100] = -26.233 +il[1100] = -80 +im[1100] = 0.0645 +ij[1100] = 15 +id[1101] = "2081-02-08T20:27:52" +ik[1101] = 33.852 +il[1101] = -30 +im[1101] = 0.0732 +ij[1101] = 9 +id[1102] = "2081-02-11T03:27:32" +ik[1102] = 5.549 +il[1102] = -113 +im[1102] = 0.0445 +ij[1102] = 28.2 +id[1103] = "2081-02-20T04:15:26" +ik[1103] = 1.884 +il[1103] = -39 +im[1103] = 0.074 +ij[1103] = 27.6 +id[1104] = "2081-04-27T10:16:16" +ik[1104] = 3.753 +il[1104] = 138 +im[1104] = 0.0197 +ij[1104] = 27.2 +id[1105] = "2081-05-11T10:40:16" +ik[1105] = 4.458 +il[1105] = -91 +im[1105] = 0.005 +ij[1105] = 28.1 +id[1106] = "2081-05-19T20:32:25" +ik[1106] = 12 +il[1106] = -154 +im[1106] = 0.053 +ij[1106] = 18 +id[1107] = "2081-08-13T02:08:12" +ik[1107] = 1.14 +il[1107] = -143 +im[1107] = 0.0528 +ij[1107] = 12 +id[1108] = "2081-10-04T13:02:38" +ik[1108] = 25.63 +il[1108] = 42 +im[1108] = 0.0367 +ij[1108] = 16 +id[1109] = "2082-01-15T22:47:11" +ik[1109] = 4.669 +il[1109] = 175 +im[1109] = 0.0685 +ij[1109] = 27.4 +id[1110] = "2082-01-23T22:56:18" +ik[1110] = 31.729 +il[1110] = -111 +im[1110] = 0.0077 +ij[1110] = 8 +id[1111] = "2082-01-31T06:51:50" +ik[1111] = 5.116 +il[1111] = -160 +im[1111] = 0.0852 +ij[1111] = 27.1 +id[1112] = "2082-02-20T10:53:44" +ik[1112] = 23 +il[1112] = -30 +im[1112] = 0.0243 +ij[1112] = 17 +id[1113] = "2082-04-26T07:48:13" +ik[1113] = 1.494 +il[1113] = -90 +im[1113] = 0.1413 +ij[1113] = 28.8 +id[1114] = "2082-05-02T10:01:05" +ik[1114] = 0.276 +il[1114] = -66 +im[1114] = 0.0903 +ij[1114] = 27.3 +id[1115] = "2082-05-14T13:57:04" +ik[1115] = 43.412 +il[1115] = -9 +im[1115] = 0.1232 +ij[1115] = 3 +id[1116] = "2082-06-12T00:23:11" +ik[1116] = 2.759 +il[1116] = 105 +im[1116] = 0.163 +ij[1116] = 27.5 +id[1117] = "2082-06-13T00:25:09" +ik[1117] = -2.192 +il[1117] = 114 +im[1117] = 0.1331 +ij[1117] = 2 +id[1118] = "2082-07-19T19:54:16" +ik[1118] = 2.993 +il[1118] = 174 +im[1118] = 0.29 +ij[1118] = 28.2 +id[1119] = "2082-08-01T04:21:41" +ik[1119] = 0 +il[1119] = 166 +im[1119] = 0.2569 +ij[1119] = 13 +id[1120] = "2082-08-08T15:52:00" +ik[1120] = 5.168 +il[1120] = 66 +im[1120] = 0.1734 +ij[1120] = 28.1 +id[1121] = "2082-09-01T21:46:52" +ik[1121] = 6.25 +il[1121] = -158 +im[1121] = 0.3451 +ij[1121] = 11 +id[1122] = "2082-09-19T18:08:26" +ik[1122] = 5.653 +il[1122] = -97 +im[1122] = 0.0947 +ij[1122] = 28.1 +id[1123] = "2082-10-02T04:25:16" +ik[1123] = 62 +il[1123] = -129 +im[1123] = 0.1054 +ij[1123] = 7.1083 +id[1124] = "2082-10-06T15:12:28" +ik[1124] = 5.48 +il[1124] = 113 +im[1124] = 0.202 +ij[1124] = 27.5 +id[1125] = "2082-11-13T00:18:02" +ik[1125] = 103.83 +il[1125] = -20 +im[1125] = 0.1082 +ij[1125] = 14 +id[1126] = "2082-11-23T06:10:03" +ik[1126] = -2.143 +il[1126] = -9 +im[1126] = 0.1699 +ij[1126] = 4 +id[1127] = "2082-12-13T10:16:20" +ik[1127] = -26.151 +il[1127] = 123 +im[1127] = 0.0128 +ij[1127] = 15 +id[1128] = "2082-12-17T22:17:11" +ik[1128] = 42.08 +il[1128] = -14 +im[1128] = 0.1237 +ij[1128] = 1 +id[1129] = "2083-01-23T10:48:19" +ik[1129] = 1.499 +il[1129] = 145 +im[1129] = 0.0375 +ij[1129] = 27.6 +id[1130] = "2083-03-28T03:08:18" +ik[1130] = 32.204 +il[1130] = 142 +im[1130] = 0.0611 +ij[1130] = 9 +id[1131] = "2083-04-05T18:26:55" +ik[1131] = 3.393 +il[1131] = -6 +im[1131] = 0.0162 +ij[1131] = 27.2 +id[1132] = "2083-04-30T06:41:37" +ik[1132] = 12 +il[1132] = 41 +im[1132] = 0.0617 +ij[1132] = 18 +id[1133] = "2083-07-11T20:15:54" +ik[1133] = 0.045 +il[1133] = 174 +im[1133] = 0.0514 +ij[1133] = 28.1 +id[1134] = "2083-07-18T23:40:20" +ik[1134] = 0.41 +il[1134] = -168 +im[1134] = 0.0259 +ij[1134] = 28.7 +id[1135] = "2083-09-17T03:02:44" +ik[1135] = 25.772 +il[1135] = 4 +im[1135] = 0.0489 +ij[1135] = 16 +id[1136] = "2083-09-18T16:07:19" +ik[1136] = 0.93 +il[1136] = -179 +im[1136] = 0.0532 +ij[1136] = 12 +id[1137] = "2083-12-25T16:00:44" +ik[1137] = 4.358 +il[1137] = -100 +im[1137] = 0.0508 +ij[1137] = 27.4 +id[1138] = "2083-12-27T21:36:36" +ik[1138] = 0.429 +il[1138] = -167 +im[1138] = 0.0642 +ij[1138] = 28.5 +id[1139] = "2084-01-08T23:37:40" +ik[1139] = 5.414 +il[1139] = -79 +im[1139] = 0.0515 +ij[1139] = 27.1 +id[1140] = "2084-01-28T10:45:51" +ik[1140] = 0 +il[1140] = -62 +im[1140] = 0.0671 +ij[1140] = 17 +id[1141] = "2084-03-09T08:14:58" +ik[1141] = 33.831 +il[1141] = 3 +im[1141] = 0.0833 +ij[1141] = 8 +id[1142] = "2084-03-30T00:50:44" +ik[1142] = 0.2 +il[1142] = -50 +im[1142] = 0.0256 +ij[1142] = 27.3 +id[1143] = "2084-03-31T04:20:46" +ik[1143] = 1.094 +il[1143] = -92 +im[1143] = 0.0043 +ij[1143] = 28.8 +id[1144] = "2084-04-29T20:28:04" +ik[1144] = 1.125 +il[1144] = -52 +im[1144] = 0.0203 +ij[1144] = 27.5 +id[1145] = "2084-05-28T11:05:10" +ik[1145] = -24.65 +il[1145] = 3 +im[1145] = 0.0215 +ij[1145] = 15 +id[1146] = "2084-07-15T19:23:05" +ik[1146] = 47.378 +il[1146] = -14 +im[1146] = 0.1294 +ij[1146] = 3 +id[1147] = "2084-07-16T05:18:08" +ik[1147] = 4.652 +il[1147] = -159 +im[1147] = 0.1357 +ij[1147] = 27.6 +id[1148] = "2084-08-13T05:07:51" +ik[1148] = -2.356 +il[1148] = 117 +im[1148] = 0.1539 +ij[1148] = 2 +id[1149] = "2084-10-05T00:18:32" +ik[1149] = 0 +il[1149] = -12 +im[1149] = 0.0948 +ij[1149] = 13 +id[1150] = "2084-10-24T15:40:00" +ik[1150] = 2.448 +il[1150] = -50 +im[1150] = 0.3144 +ij[1150] = 28.1 +id[1151] = "2084-11-10T06:44:39" +ik[1151] = 0.05 +il[1151] = -128 +im[1151] = 0.1375 +ij[1151] = 11 +id[1152] = "2084-11-28T05:55:54" +ik[1152] = 1.678 +il[1152] = -116 +im[1152] = 0.1235 +ij[1152] = 28.2 +id[1153] = "2084-12-12T23:21:08" +ik[1153] = 68.96 +il[1153] = 118 +im[1153] = 0.1901 +ij[1153] = 7.1339 +id[1154] = "2085-02-03T21:22:52" +ik[1154] = 121.88 +il[1154] = -72 +im[1154] = 0.0399 +ij[1154] = 14 +id[1155] = "2085-02-03T22:37:38" +ik[1155] = -1.748 +il[1155] = -90 +im[1155] = 0.0414 +ij[1155] = 4 +id[1156] = "2085-02-16T03:12:05" +ik[1156] = 38.369 +il[1156] = -44 +im[1156] = 0.0452 +ij[1156] = 1 +id[1157] = "2085-03-07T09:37:35" +ik[1157] = 2.749 +il[1157] = 41 +im[1157] = 0.0878 +ij[1157] = 27.2 +id[1158] = "2085-04-06T13:10:09" +ik[1158] = 12 +il[1158] = -88 +im[1158] = 0.0855 +ij[1158] = 18 +id[1159] = "2085-05-05T04:54:58" +ik[1159] = 31.376 +il[1159] = -54 +im[1159] = 0.0732 +ij[1159] = 9 +id[1160] = "2085-07-12T15:07:59" +ik[1160] = 0.359 +il[1160] = 82 +im[1160] = 0.0363 +ij[1160] = 28.7 +id[1161] = "2085-07-15T15:57:20" +ik[1161] = 0.561 +il[1161] = 105 +im[1161] = 0.0594 +ij[1161] = 28.2 +id[1162] = "2085-08-29T15:40:38" +ik[1162] = 25.894 +il[1162] = -179 +im[1162] = 0.0559 +ij[1162] = 16 +id[1163] = "2085-10-25T12:57:59" +ik[1163] = 0.34 +il[1163] = 68 +im[1163] = 0.0548 +ij[1163] = 12 +id[1164] = "2086-01-02T12:08:48" +ik[1164] = 0.704 +il[1164] = -145 +im[1164] = 0.0492 +ij[1164] = 28.2 +id[1165] = "2086-01-07T15:50:26" +ik[1165] = 0 +il[1165] = -152 +im[1165] = 0.0623 +ij[1165] = 17 +id[1166] = "2086-03-07T03:13:27" +ik[1166] = 0.265 +il[1166] = -118 +im[1166] = 0.068 +ij[1166] = 27.3 +id[1167] = "2086-03-07T20:37:47" +ik[1167] = 0.109 +il[1167] = -12 +im[1167] = 0.0629 +ij[1167] = 28.5 +id[1168] = "2086-03-14T10:46:24" +ik[1168] = 0.941 +il[1168] = -161 +im[1168] = 0.0315 +ij[1168] = 28.8 +id[1169] = "2086-04-01T21:25:15" +ik[1169] = 1.251 +il[1169] = -145 +im[1169] = 0.0758 +ij[1169] = 28.2 +id[1170] = "2086-04-05T11:25:43" +ik[1170] = 0.807 +il[1170] = 39 +im[1170] = 0.0699 +ij[1170] = 27.5 +id[1171] = "2086-05-04T18:17:00" +ik[1171] = -25.271 +il[1171] = -142 +im[1171] = 0.0713 +ij[1171] = 15 +id[1172] = "2086-05-17T05:30:05" +ik[1172] = 36.163 +il[1172] = 170 +im[1172] = 0.0831 +ij[1172] = 8 +id[1173] = "2086-06-15T16:17:59" +ik[1173] = 3.529 +il[1173] = -65 +im[1173] = 0.0901 +ij[1173] = 27.6 +id[1174] = "2086-08-21T17:37:09" +ik[1174] = 5.422 +il[1174] = -147 +im[1174] = 0.0708 +ij[1174] = 27.2 +id[1175] = "2086-08-31T10:18:02" +ik[1175] = 44.148 +il[1175] = 58 +im[1175] = 0.0157 +ij[1175] = 3 +id[1176] = "2086-09-11T07:10:43" +ik[1176] = 11 +il[1176] = -149 +im[1176] = 0.1196 +ij[1176] = 18 +id[1177] = "2086-09-17T11:15:52" +ik[1177] = -2.061 +il[1177] = -150 +im[1177] = 0.032 +ij[1177] = 2 +id[1178] = "2086-11-17T21:23:21" +ik[1178] = 0 +il[1178] = -64 +im[1178] = 0.2 +ij[1178] = 13 +id[1179] = "2086-12-27T01:08:40" +ik[1179] = 3.3 +il[1179] = -120 +im[1179] = 0.2544 +ij[1179] = 11 +id[1180] = "2087-01-07T23:26:36" +ik[1180] = 12 +il[1180] = -163 +im[1180] = 0.1883 +ij[1180] = 17 +id[1181] = "2087-02-02T22:30:12" +ik[1181] = 77.05 +il[1181] = 84 +im[1181] = 0.1194 +ij[1181] = 7.1588 +id[1182] = "2087-02-24T23:08:52" +ik[1182] = 12 +il[1182] = -78 +im[1182] = 0.0839 +ij[1182] = 18 +id[1183] = "2087-03-30T05:23:52" +ik[1183] = -1.578 +il[1183] = 142 +im[1183] = 0.0596 +ij[1183] = 4 +id[1184] = "2087-04-02T23:22:07" +ik[1184] = 37.062 +il[1184] = -92 +im[1184] = 0.103 +ij[1184] = 1 +id[1185] = "2087-04-08T01:38:04" +ik[1185] = 141.18 +il[1185] = -78 +im[1185] = 0.0401 +ij[1185] = 14 +id[1186] = "2087-06-11T03:36:45" +ik[1186] = 31.427 +il[1186] = 143 +im[1186] = 0.0722 +ij[1186] = 9 +id[1187] = "2087-06-30T23:22:59" +ik[1187] = 4.113 +il[1187] = 36 +im[1187] = 0.047 +ij[1187] = 28.2 +id[1188] = "2087-07-06T02:37:00" +ik[1188] = 0.272 +il[1188] = 37 +im[1188] = 0.0274 +ij[1188] = 28.7 +id[1189] = "2087-08-11T13:41:33" +ik[1189] = 26.009 +il[1189] = -138 +im[1189] = 0.0608 +ij[1189] = 16 +id[1190] = "2087-09-10T02:31:29" +ik[1190] = 1.895 +il[1190] = -44 +im[1190] = 0.0527 +ij[1190] = 28.1 +id[1191] = "2087-09-22T02:37:50" +ik[1191] = 1.886 +il[1191] = 78 +im[1191] = 0.0586 +ij[1191] = 28.1 +id[1192] = "2087-12-09T13:01:33" +ik[1192] = 0.51 +il[1192] = -20 +im[1192] = 0.0063 +ij[1192] = 12 +id[1193] = "2087-12-19T21:02:39" +ik[1193] = 0 +il[1193] = 125 +im[1193] = 0.0507 +ij[1193] = 17 +id[1194] = "2088-02-14T15:06:09" +ik[1194] = 0.256 +il[1194] = 47 +im[1194] = 0.0632 +ij[1194] = 27.3 +id[1195] = "2088-02-27T14:03:30" +ik[1195] = 0.505 +il[1195] = -176 +im[1195] = 0.062 +ij[1195] = 28.2 +id[1196] = "2088-02-28T00:20:56" +ik[1196] = 0.809 +il[1196] = 36 +im[1196] = 0.0621 +ij[1196] = 28.8 +id[1197] = "2088-03-01T22:39:54" +ik[1197] = 0.77 +il[1197] = 88 +im[1197] = 0.0478 +ij[1197] = 28.1 +id[1198] = "2088-03-14T09:27:17" +ik[1198] = 0.672 +il[1198] = 54 +im[1198] = 0.0674 +ij[1198] = 27.5 +id[1199] = "2088-04-13T03:27:55" +ik[1199] = -25.564 +il[1199] = 74 +im[1199] = 0.068 +ij[1199] = 15 +id[1200] = "2088-05-03T22:04:22" +ik[1200] = 0.305 +il[1200] = -2 +im[1200] = 0.0179 +ij[1200] = 28.5 +id[1201] = "2088-05-23T03:54:45" +ik[1201] = 3.05 +il[1201] = 98 +im[1201] = 0.0642 +ij[1201] = 27.6 +id[1202] = "2088-07-25T15:19:51" +ik[1202] = 4.918 +il[1202] = -170 +im[1202] = 0.0481 +ij[1202] = 27.2 +id[1203] = "2088-08-03T14:18:58" +ik[1203] = 34.945 +il[1203] = -67 +im[1203] = 0.0787 +ij[1203] = 8 +id[1204] = "2088-08-13T18:55:59" +ik[1204] = 11 +il[1204] = -37 +im[1204] = 0.026 +ij[1204] = 18 +id[1205] = "2088-10-17T04:11:08" +ik[1205] = 39.704 +il[1205] = 91 +im[1205] = 0.1069 +ij[1205] = 3 +id[1206] = "2088-10-17T17:08:47" +ik[1206] = -1.799 +il[1206] = -98 +im[1206] = 0.1022 +ij[1206] = 2 +id[1207] = "2088-12-22T01:38:32" +ik[1207] = 0 +il[1207] = 47 +im[1207] = 0.1363 +ij[1207] = 13 +id[1208] = "2088-12-25T21:25:00" +ik[1208] = 0.889 +il[1208] = 147 +im[1208] = 0.1722 +ij[1208] = 28.2 +id[1209] = "2089-01-31T19:46:53" +ik[1209] = 4.35 +il[1209] = 146 +im[1209] = 0.209 +ij[1209] = 11 +id[1210] = "2089-03-14T01:42:08" +ik[1210] = 82 +il[1210] = -121 +im[1210] = 0.1653 +ij[1210] = 7.1914 +id[1211] = "2089-05-12T04:26:06" +ik[1211] = 37.501 +il[1211] = 42 +im[1211] = 0.0925 +ij[1211] = 1 +id[1212] = "2089-05-14T09:19:27" +ik[1212] = -1.57 +il[1212] = -10 +im[1212] = 0.0556 +ij[1212] = 4 +id[1213] = "2089-05-20T12:58:08" +ik[1213] = 149.47 +il[1213] = -6 +im[1213] = 0.0784 +ij[1213] = 14 +id[1214] = "2089-06-26T01:59:58" +ik[1214] = 0.155 +il[1214] = 151 +im[1214] = 0.0491 +ij[1214] = 28.7 +id[1215] = "2089-07-19T15:54:04" +ik[1215] = 32.309 +il[1215] = 171 +im[1215] = 0.081 +ij[1215] = 9 +id[1216] = "2089-07-21T23:27:26" +ik[1216] = 26.12 +il[1216] = 80 +im[1216] = 0.073 +ij[1216] = 16 +id[1217] = "2089-10-27T10:25:01" +ik[1217] = 3.599 +il[1217] = 147 +im[1217] = 0.0588 +ij[1217] = 27.4 +id[1218] = "2089-11-08T03:56:58" +ik[1218] = 2.096 +il[1218] = -5 +im[1218] = 0.0456 +ij[1218] = 28.6 +id[1219] = "2089-11-10T05:28:15" +ik[1219] = 6.138 +il[1219] = -8 +im[1219] = 0.0609 +ij[1219] = 27.1 +id[1220] = "2089-11-21T00:15:13" +ik[1220] = 1.754 +il[1220] = 176 +im[1220] = 0.0194 +ij[1220] = 28.1 +id[1221] = "2089-11-30T05:30:59" +ik[1221] = 0 +il[1221] = -168 +im[1221] = 0.0404 +ij[1221] = 17 +id[1222] = "2090-02-08T06:26:53" +ik[1222] = 1.08 +il[1222] = 162 +im[1222] = 0.062 +ij[1222] = 12 +id[1223] = "2090-03-24T13:46:52" +ik[1223] = -25.756 +il[1223] = -86 +im[1223] = 0.0579 +ij[1223] = 15 +id[1224] = "2090-05-02T16:50:44" +ik[1224] = 2.743 +il[1224] = -98 +im[1224] = 0.05 +ij[1224] = 27.6 +id[1225] = "2090-05-21T02:54:11" +ik[1225] = 1.786 +il[1225] = -67 +im[1225] = 0.0635 +ij[1225] = 28.1 +id[1226] = "2090-07-04T11:47:23" +ik[1226] = 4.596 +il[1226] = -126 +im[1226] = 0.0539 +ij[1226] = 27.2 +id[1227] = "2090-07-05T01:19:39" +ik[1227] = 0.419 +il[1227] = 37 +im[1227] = 0.0492 +ij[1227] = 28.5 +id[1228] = "2090-07-23T23:16:18" +ik[1228] = 12 +il[1228] = -108 +im[1228] = 0.0079 +ij[1228] = 18 +id[1229] = "2090-09-25T20:26:58" +ik[1229] = 32.507 +il[1229] = -166 +im[1229] = 0.0743 +ij[1229] = 8 +id[1230] = "2090-11-19T17:26:34" +ik[1230] = -1.64 +il[1230] = 50 +im[1230] = 0.0811 +ij[1230] = 2 +id[1231] = "2090-11-27T22:46:59" +ik[1231] = 37.008 +il[1231] = 49 +im[1231] = 0.0303 +ij[1231] = 3 +id[1232] = "2090-12-02T12:49:30" +ik[1232] = 1.339 +il[1232] = -117 +im[1232] = 0.0699 +ij[1232] = 28.7 +id[1233] = "2091-01-24T12:58:36" +ik[1233] = 0 +il[1233] = 33 +im[1233] = 0.0124 +ij[1233] = 13 +id[1234] = "2091-03-06T20:46:27" +ik[1234] = 3.91 +il[1234] = -67 +im[1234] = 0.0597 +ij[1234] = 11 +id[1235] = "2091-03-29T17:16:23" +ik[1235] = 1.554 +il[1235] = -11 +im[1235] = 0.1369 +ij[1235] = 28.2 +id[1236] = "2091-04-17T16:57:32" +ik[1236] = 83.17 +il[1236] = 169 +im[1236] = 0.1174 +ij[1236] = 7.2106 +id[1237] = "2091-06-09T06:47:15" +ik[1237] = 0.1 +il[1237] = 110 +im[1237] = 0.0041 +ij[1237] = 28.7 +id[1238] = "2091-06-21T17:14:03" +ik[1238] = 39.497 +il[1238] = 74 +im[1238] = 0.053 +ij[1238] = 1 +id[1239] = "2091-06-22T15:28:25" +ik[1239] = 149.1 +il[1239] = 110 +im[1239] = 0.031 +ij[1239] = 14 +id[1240] = "2091-06-27T15:35:28" +ik[1240] = -1.697 +il[1240] = 156 +im[1240] = 0.0813 +ij[1240] = 4 +id[1241] = "2091-06-28T13:28:36" +ik[1241] = 26.177 +il[1241] = -163 +im[1241] = 0.0929 +ij[1241] = 16 +id[1242] = "2091-09-05T21:08:44" +ik[1242] = 33.98 +il[1242] = 36 +im[1242] = 0.0441 +ij[1242] = 9 +id[1243] = "2091-10-07T05:56:30" +ik[1243] = 3.253 +il[1243] = -150 +im[1243] = 0.0655 +ij[1243] = 27.4 +id[1244] = "2091-10-21T05:38:15" +ik[1244] = 6.463 +il[1244] = -8 +im[1244] = 0.0698 +ij[1244] = 27.1 +id[1245] = "2091-11-11T01:57:44" +ik[1245] = 0 +il[1245] = -109 +im[1245] = 0.0417 +ij[1245] = 17 +id[1246] = "2091-11-27T00:27:38" +ik[1246] = 1.647 +il[1246] = 70 +im[1246] = 0.0305 +ij[1246] = 28.6 +id[1247] = "2091-11-30T07:49:48" +ik[1247] = 0.977 +il[1247] = -8 +im[1247] = 0.0177 +ij[1247] = 28.2 +id[1248] = "2092-01-04T22:21:25" +ik[1248] = 0.139 +il[1248] = 125 +im[1248] = 0.0623 +ij[1248] = 27.3 +id[1249] = "2092-01-30T13:21:02" +ik[1249] = 0.516 +il[1249] = 159 +im[1249] = 0.0518 +ij[1249] = 28.8 +id[1250] = "2092-02-02T09:45:20" +ik[1250] = 0.556 +il[1250] = -124 +im[1250] = 0.0617 +ij[1250] = 27.5 +id[1251] = "2092-03-04T06:08:58" +ik[1251] = -25.909 +il[1251] = -118 +im[1251] = 0.053 +ij[1251] = 15 +id[1252] = "2092-04-21T11:43:21" +ik[1252] = 0.33 +il[1252] = -84 +im[1252] = 0.0097 +ij[1252] = 12 +id[1253] = "2092-07-03T22:36:09" +ik[1253] = 12 +il[1253] = -96 +im[1253] = 0.0095 +ij[1253] = 18 +id[1254] = "2092-07-24T10:56:52" +ik[1254] = 2.927 +il[1254] = -74 +im[1254] = 0.0619 +ij[1254] = 28.1 +id[1255] = "2092-09-13T14:01:39" +ik[1255] = 1.394 +il[1255] = 15 +im[1255] = 0.0125 +ij[1255] = 28.2 +id[1256] = "2092-09-22T14:53:15" +ik[1256] = 0.089 +il[1256] = 89 +im[1256] = 0.0611 +ij[1256] = 28.5 +id[1257] = "2092-11-02T20:02:57" +ik[1257] = 31.043 +il[1257] = 50 +im[1257] = 0.0708 +ij[1257] = 8 +id[1258] = "2092-11-15T23:28:45" +ik[1258] = 0.824 +il[1258] = 125 +im[1258] = 0.0852 +ij[1258] = 28.7 +id[1259] = "2092-12-27T04:55:29" +ik[1259] = -1.581 +il[1259] = 82 +im[1259] = 0.0861 +ij[1259] = 2 +id[1260] = "2093-01-05T05:00:05" +ik[1260] = 36.171 +il[1260] = 167 +im[1260] = 0.0158 +ij[1260] = 3 +id[1261] = "2093-03-02T15:28:53" +ik[1261] = 0 +il[1261] = -167 +im[1261] = 0.0466 +ij[1261] = 13 +id[1262] = "2093-04-11T02:47:21" +ik[1262] = 2.11 +il[1262] = 18 +im[1262] = 0.0321 +ij[1262] = 11 +id[1263] = "2093-05-21T17:37:52" +ik[1263] = 80.09 +il[1263] = -28 +im[1263] = 0.0348 +ij[1263] = 7.1887 +id[1264] = "2093-06-07T06:09:30" +ik[1264] = 25.025 +il[1264] = -56 +im[1264] = 0.0965 +ij[1264] = 16 +id[1265] = "2093-07-21T00:28:42" +ik[1265] = 140.37 +il[1265] = 96 +im[1265] = 0.1255 +ij[1265] = 14 +id[1266] = "2093-08-03T12:57:16" +ik[1266] = -1.947 +il[1266] = 40 +im[1266] = 0.0861 +ij[1266] = 4 +id[1267] = "2093-08-04T11:19:06" +ik[1267] = 42.954 +il[1267] = 74 +im[1267] = 0.1008 +ij[1267] = 1 +id[1268] = "2093-09-13T05:34:52" +ik[1268] = 2.699 +il[1268] = -179 +im[1268] = 0.0485 +ij[1268] = 27.4 +id[1269] = "2093-10-20T08:13:29" +ik[1269] = 0 +il[1269] = 153 +im[1269] = 0.0784 +ij[1269] = 17 +id[1270] = "2093-11-09T00:28:44" +ik[1270] = 35.506 +il[1270] = 102 +im[1270] = 0.0172 +ij[1270] = 9 +id[1271] = "2093-11-18T05:08:15" +ik[1271] = 4.294 +il[1271] = 123 +im[1271] = 0.0713 +ij[1271] = 28.2 +id[1272] = "2093-12-12T03:12:14" +ik[1272] = 0.75 +il[1272] = 28 +im[1272] = 0.0662 +ij[1272] = 28.6 +id[1273] = "2093-12-13T23:02:04" +ik[1273] = 0.004 +il[1273] = 108 +im[1273] = 0.0765 +ij[1273] = 27.3 +id[1274] = "2094-01-11T17:55:54" +ik[1274] = 0.547 +il[1274] = 108 +im[1274] = 0.0694 +ij[1274] = 27.5 +id[1275] = "2094-01-15T00:47:42" +ik[1275] = 0.347 +il[1275] = 37 +im[1275] = 0.0613 +ij[1275] = 28.8 +id[1276] = "2094-02-12T14:05:55" +ik[1276] = -26.049 +il[1276] = 116 +im[1276] = 0.0602 +ij[1276] = 15 +id[1277] = "2094-03-23T00:39:21" +ik[1277] = 2.262 +il[1277] = -21 +im[1277] = 0.0556 +ij[1277] = 27.6 +id[1278] = "2094-06-15T13:14:06" +ik[1278] = 12 +il[1278] = -116 +im[1278] = 0.0284 +ij[1278] = 18 +id[1279] = "2094-06-17T04:40:14" +ik[1279] = 0.66 +il[1279] = 28 +im[1279] = 0.0441 +ij[1279] = 12 +id[1280] = "2094-10-30T18:59:21" +ik[1280] = 25.35 +il[1280] = -131 +im[1280] = 0.0522 +ij[1280] = 16 +id[1281] = "2094-11-07T05:10:19" +ik[1281] = 0.554 +il[1281] = 148 +im[1281] = 0.0406 +ij[1281] = 28.7 +id[1282] = "2094-12-06T21:50:04" +ik[1282] = 30.622 +il[1282] = -176 +im[1282] = 0.0566 +ij[1282] = 8 +id[1283] = "2094-12-31T19:03:14" +ik[1283] = 0.163 +il[1283] = 105 +im[1283] = 0.0053 +ij[1283] = 28.5 +id[1284] = "2095-02-17T13:41:05" +ik[1284] = 37.263 +il[1284] = -78 +im[1284] = 0.1214 +ij[1284] = 3 +id[1285] = "2095-02-17T18:00:23" +ik[1285] = -1.644 +il[1285] = -141 +im[1285] = 0.1228 +ij[1285] = 2 +id[1286] = "2095-03-04T02:09:16" +ik[1286] = 5.375 +il[1286] = -126 +im[1286] = 0.1225 +ij[1286] = 27.4 +id[1287] = "2095-04-03T13:42:51" +ik[1287] = 4.755 +il[1287] = -11 +im[1287] = 0.1648 +ij[1287] = 27.1 +id[1288] = "2095-04-18T09:43:01" +ik[1288] = 1.62 +il[1288] = -170 +im[1288] = 0.1965 +ij[1288] = 28.2 +id[1289] = "2095-04-22T00:29:11" +ik[1289] = 0 +il[1289] = 3 +im[1289] = 0.0611 +ij[1289] = 13 +id[1290] = "2095-05-26T04:17:08" +ik[1290] = 1.25 +il[1290] = -108 +im[1290] = 0.2815 +ij[1290] = 11 +id[1291] = "2095-06-11T12:21:36" +ik[1291] = 2.773 +il[1291] = 89 +im[1291] = 0.2455 +ij[1291] = 28.5 +id[1292] = "2095-06-12T19:17:49" +ik[1292] = 3.282 +il[1292] = -3 +im[1292] = 0.1849 +ij[1292] = 28.1 +id[1293] = "2095-07-02T23:31:47" +ik[1293] = 71.96 +il[1293] = 131 +im[1293] = 0.2254 +ij[1293] = 7.1306 +id[1294] = "2095-07-29T15:26:52" +ik[1294] = 1.136 +il[1294] = 152 +im[1294] = 0.1551 +ij[1294] = 27.4 +id[1295] = "2095-08-22T15:19:34" +ik[1295] = 122.62 +il[1295] = 29 +im[1295] = 0.0251 +ij[1295] = 14 +id[1296] = "2095-08-29T04:01:58" +ik[1296] = 3.149 +il[1296] = -97 +im[1296] = 0.1727 +ij[1296] = 28.5 +id[1297] = "2095-09-03T09:37:17" +ik[1297] = -2.269 +il[1297] = -130 +im[1297] = 0.1288 +ij[1297] = 4 +id[1298] = "2095-09-21T06:27:04" +ik[1298] = 46.189 +il[1298] = 94 +im[1298] = 0.0212 +ij[1298] = 1 +id[1299] = "2095-09-23T23:47:35" +ik[1299] = 0 +il[1299] = -140 +im[1299] = 0.0998 +ij[1299] = 17 +id[1300] = "2095-11-19T10:43:44" +ik[1300] = 0.357 +il[1300] = -108 +im[1300] = 0.0495 +ij[1300] = 27.3 +id[1301] = "2095-12-19T12:39:23" +ik[1301] = 0.622 +il[1301] = 157 +im[1301] = 0.0599 +ij[1301] = 27.5 +id[1302] = "2095-12-24T18:22:00" +ik[1302] = 0.441 +il[1302] = 123 +im[1302] = 0.097 +ij[1302] = 28.6 +id[1303] = "2095-12-29T04:19:17" +ik[1303] = 0.181 +il[1303] = 16 +im[1303] = 0.0487 +ij[1303] = 28.8 +id[1304] = "2096-01-18T05:38:30" +ik[1304] = 34.615 +il[1304] = -169 +im[1304] = 0.0598 +ij[1304] = 9 +id[1305] = "2096-01-22T10:58:49" +ik[1305] = -26.187 +il[1305] = 151 +im[1305] = 0.0854 +ij[1305] = 15 +id[1306] = "2096-03-01T01:07:33" +ik[1306] = 2.001 +il[1306] = -51 +im[1306] = 0.0438 +ij[1306] = 27.6 +id[1307] = "2096-05-05T07:14:52" +ik[1307] = 3.864 +il[1307] = 126 +im[1307] = 0.0486 +ij[1307] = 27.2 +id[1308] = "2096-05-27T04:39:54" +ik[1308] = 12 +il[1308] = 11 +im[1308] = 0.0445 +ij[1308] = 18 +id[1309] = "2096-07-29T05:21:08" +ik[1309] = 1.11 +il[1309] = -115 +im[1309] = 0.0542 +ij[1309] = 12 +id[1310] = "2096-10-11T11:31:13" +ik[1310] = 25.565 +il[1310] = -4 +im[1310] = 0.0304 +ij[1310] = 16 +id[1311] = "2096-10-30T15:47:54" +ik[1311] = 0.338 +il[1311] = 117 +im[1311] = 0.0196 +ij[1311] = 28.7 +id[1312] = "2097-01-09T08:22:04" +ik[1312] = 31.209 +il[1312] = -175 +im[1312] = 0.0171 +ij[1312] = 8 +id[1313] = "2097-01-25T12:58:17" +ik[1313] = 4.821 +il[1313] = -90 +im[1313] = 0.0444 +ij[1313] = 27.4 +id[1314] = "2097-02-10T15:40:58" +ik[1314] = 4.973 +il[1314] = 22 +im[1314] = 0.0751 +ij[1314] = 27.1 +id[1315] = "2097-03-03T20:38:37" +ik[1315] = 23 +il[1315] = 149 +im[1315] = 0.0624 +ij[1315] = 17 +id[1316] = "2097-04-03T12:42:29" +ik[1316] = 0.174 +il[1316] = -162 +im[1316] = 0.0318 +ij[1316] = 28.5 +id[1317] = "2097-04-15T16:37:03" +ik[1317] = 41.034 +il[1317] = -106 +im[1317] = 0.0844 +ij[1317] = 3 +id[1318] = "2097-05-08T08:37:45" +ik[1318] = -1.968 +il[1318] = -132 +im[1318] = 0.1601 +ij[1318] = 2 +id[1319] = "2097-05-31T01:50:21" +ik[1319] = 1.564 +il[1319] = -175 +im[1319] = 0.0205 +ij[1319] = 27.3 +id[1320] = "2097-07-01T15:20:05" +ik[1320] = 0 +il[1320] = -77 +im[1320] = 0.2257 +ij[1320] = 13 +id[1321] = "2097-07-07T15:07:10" +ik[1321] = 3.577 +il[1321] = -17 +im[1321] = 0.2495 +ij[1321] = 28.1 +id[1322] = "2097-07-31T00:42:55" +ik[1322] = 6.42 +il[1322] = 53 +im[1322] = 0.3713 +ij[1322] = 11 +id[1323] = "2097-08-24T13:13:12" +ik[1323] = 4.731 +il[1323] = -70 +im[1323] = 0.2654 +ij[1323] = 28.2 +id[1324] = "2097-09-02T14:22:40" +ik[1324] = 62.96 +il[1324] = 1 +im[1324] = 0.0485 +ij[1324] = 7.0979 +id[1325] = "2097-09-30T13:38:45" +ik[1325] = 2.748 +il[1325] = -72 +im[1325] = 0.0204 +ij[1325] = 27.3 +id[1326] = "2097-10-13T07:38:27" +ik[1326] = 103.68 +il[1326] = 143 +im[1326] = 0.1003 +ij[1326] = 14 +id[1327] = "2097-10-23T12:15:32" +ik[1327] = -2.308 +il[1327] = 174 +im[1327] = 0.1929 +ij[1327] = 4 +id[1328] = "2097-10-24T13:44:09" +ik[1328] = 1.856 +il[1328] = 162 +im[1328] = 0.1722 +ij[1328] = 28.5 +id[1329] = "2097-11-13T23:27:58" +ik[1329] = 1.27 +il[1329] = -145 +im[1329] = 0.0338 +ij[1329] = 27.5 +id[1330] = "2097-11-19T08:26:00" +ik[1330] = 44.11 +il[1330] = 132 +im[1330] = 0.1538 +ij[1330] = 1 +id[1331] = "2097-12-02T20:04:51" +ik[1331] = 0.211 +il[1331] = 88 +im[1331] = 0.1492 +ij[1331] = 28.8 +id[1332] = "2097-12-26T17:23:42" +ik[1332] = -26.27 +il[1332] = -2 +im[1332] = 0.0428 +ij[1332] = 15 +id[1333] = "2097-12-31T02:51:41" +ik[1333] = 1.727 +il[1333] = -102 +im[1333] = 0.1188 +ij[1333] = 28.6 +id[1334] = "2098-02-04T16:01:29" +ik[1334] = 1.663 +il[1334] = 40 +im[1334] = 0.0543 +ij[1334] = 27.6 +id[1335] = "2098-03-11T03:42:30" +ik[1335] = 32.757 +il[1335] = -168 +im[1335] = 0.0489 +ij[1335] = 9 +id[1336] = "2098-04-14T15:15:21" +ik[1336] = 3.552 +il[1336] = -17 +im[1336] = 0.0593 +ij[1336] = 27.2 +id[1337] = "2098-05-08T03:45:35" +ik[1337] = 12 +il[1337] = 17 +im[1337] = 0.0486 +ij[1337] = 18 +id[1338] = "2098-05-15T20:31:41" +ik[1338] = 0.804 +il[1338] = -163 +im[1338] = 0.0317 +ij[1338] = 28.2 +id[1339] = "2098-06-19T15:05:48" +ik[1339] = 0.038 +il[1339] = -107 +im[1339] = 0.0387 +ij[1339] = 28.1 +id[1340] = "2098-09-04T13:23:48" +ik[1340] = 1.06 +il[1340] = -62 +im[1340] = 0.0531 +ij[1340] = 12 +id[1341] = "2098-09-23T22:31:10" +ik[1341] = 25.721 +il[1341] = -162 +im[1341] = 0.0079 +ij[1341] = 16 +id[1342] = "2098-11-20T10:43:27" +ik[1342] = 4.633 +il[1342] = -150 +im[1342] = 0.0064 +ij[1342] = 28.1 +id[1343] = "2099-01-02T16:16:53" +ik[1343] = 4.469 +il[1343] = -173 +im[1343] = 0.0188 +ij[1343] = 27.4 +id[1344] = "2099-01-11T12:00:29" +ik[1344] = 1.832 +il[1344] = -24 +im[1344] = 0.0639 +ij[1344] = 28.2 +id[1345] = "2099-01-17T08:24:00" +ik[1345] = 5.308 +il[1345] = 86 +im[1345] = 0.0058 +ij[1345] = 27.1 +id[1346] = "2099-02-05T21:31:11" +ik[1346] = 0 +il[1346] = 74 +im[1346] = 0.0603 +ij[1346] = 17 +id[1347] = "2099-02-18T20:25:10" +ik[1347] = 32.88 +il[1347] = -147 +im[1347] = 0.058 +ij[1347] = 8 +id[1348] = "2099-04-10T16:42:23" +ik[1348] = 0.114 +il[1348] = 30 +im[1348] = 0.0652 +ij[1348] = 27.3 +id[1349] = "2099-05-12T22:26:29" +ik[1349] = 1.408 +il[1349] = -110 +im[1349] = 0.0024 +ij[1349] = 27.5 +id[1350] = "2099-05-29T06:04:25" +ik[1350] = 1.295 +il[1350] = -69 +im[1350] = 0.0493 +ij[1350] = 28.8 +id[1351] = "2099-05-31T16:20:41" +ik[1351] = 0.867 +il[1351] = 160 +im[1351] = 0.1113 +ij[1351] = 28.5 +id[1352] = "2099-06-09T21:02:32" +ik[1352] = -24.108 +il[1352] = 178 +im[1352] = 0.0329 +ij[1352] = 15 +id[1353] = "2099-06-26T02:07:00" +ik[1353] = 46.744 +il[1353] = -103 +im[1353] = 0.0352 +ij[1353] = 3 +id[1354] = "2099-07-08T15:36:11" +ik[1354] = 0.723 +il[1354] = 176 +im[1354] = 0.0446 +ij[1354] = 28.6 +id[1355] = "2099-07-26T07:11:33" +ik[1355] = -2.392 +il[1355] = 113 +im[1355] = 0.1237 +ij[1355] = 2 +id[1356] = "2099-08-10T22:58:23" +ik[1356] = 5.895 +il[1356] = 29 +im[1356] = 0.1669 +ij[1356] = 27.6 +id[1357] = "2099-09-13T07:38:58" +ik[1357] = 0 +il[1357] = -134 +im[1357] = 0.2561 +ij[1357] = 13 +id[1358] = "2099-09-27T22:51:54" +ik[1358] = 4.349 +il[1358] = 141 +im[1358] = 0.2432 +ij[1358] = 28.1 +id[1359] = "2099-10-03T06:08:56" +ik[1359] = 2.3 +il[1359] = 84 +im[1359] = 0.145 +ij[1359] = 28.2 +id[1360] = "2099-10-18T10:54:28" +ik[1360] = 2.42 +il[1360] = 140 +im[1360] = 0.2947 +ij[1360] = 11 +id[1361] = "2099-11-02T03:31:37" +ik[1361] = 2.806 +il[1361] = -124 +im[1361] = 0.2942 +ij[1361] = 28.1 +id[1362] = "2099-11-05T00:36:40" +ik[1362] = 0.822 +il[1362] = -46 +im[1362] = 0.3011 +ij[1362] = 28.6 +id[1363] = "2099-11-17T11:47:42" +ik[1363] = 65.17 +il[1363] = -105 +im[1363] = 0.2756 +ij[1363] = 7.1266 +id[1364] = "2099-12-01T05:20:59" +ik[1364] = 3.336 +il[1364] = 123 +im[1364] = 0.2368 +ij[1364] = 28.5 +id[1365] = "2099-12-17T11:14:02" +ik[1365] = 2.792 +il[1365] = -170 +im[1365] = 0.1615 +ij[1365] = 28.6 +id[1366] = "2099-12-20T19:25:00" +ik[1366] = 1.367 +il[1366] = 99 +im[1366] = 0.046 +ij[1366] = 27.6 +id[1367] = "2100-01-04T11:47:29" +ik[1367] = 113.17 +il[1367] = -8 +im[1367] = 0.0136 +ij[1367] = 14 +id[1368] = "2100-01-09T22:58:14" +ik[1368] = -1.874 +il[1368] = -124 +im[1368] = 0.1433 +ij[1368] = 4 +id[1369] = "2100-01-26T18:07:55" +ik[1369] = 39.493 +il[1369] = 108 +im[1369] = 0.1272 +ij[1369] = 1 +id[1370] = "2100-03-21T00:04:54" +ik[1370] = 3.062 +il[1370] = 160 +im[1370] = 0.0596 +ij[1370] = 27.2 +id[1371] = "2100-04-17T02:10:18" +ik[1371] = 12 +il[1371] = 24 +im[1371] = 0.0305 +ij[1371] = 18 +id[1372] = "2100-04-21T13:06:57" +ik[1372] = 31.593 +il[1372] = -98 +im[1372] = 0.0717 +ij[1372] = 9 +id[1373] = "2100-04-27T07:13:20" +ik[1373] = 6.048 +il[1373] = 45 +im[1373] = 0.0199 +ij[1373] = 28.2 +id[1374] = "2100-09-06T12:58:01" +ik[1374] = 25.849 +il[1374] = 145 +im[1374] = 0.0167 +ij[1374] = 16 +id[1375] = "2100-10-11T08:26:02" +ik[1375] = 0.61 +il[1375] = -157 +im[1375] = 0.0546 +ij[1375] = 12 +id[1376] = "2100-12-10T14:27:43" +ik[1376] = 1.855 +il[1376] = 168 +im[1376] = 0.046 +ij[1376] = 28.2 +id[1377] = "2100-12-13T18:57:22" +ik[1377] = 4.2 +il[1377] = 134 +im[1377] = 0.0138 +ij[1377] = 27.4 +id[1378] = "2100-12-27T22:03:29" +ik[1378] = 5.566 +il[1378] = -139 +im[1378] = 0.0186 +ij[1378] = 27.1 +id[1379] = "2101-01-16T05:38:35" +ik[1379] = 0 +il[1379] = -71 +im[1379] = 0.0422 +ij[1379] = 17 +id[1380] = "2101-03-16T16:36:55" +ik[1380] = 0.253 +il[1380] = -21 +im[1380] = 0.064 +ij[1380] = 27.3 +id[1381] = "2101-04-15T10:34:03" +ik[1381] = 0.896 +il[1381] = -7 +im[1381] = 0.0757 +ij[1381] = 27.5 +id[1382] = "2101-04-17T13:34:30" +ik[1382] = 35.434 +il[1382] = -32 +im[1382] = 0.0783 +ij[1382] = 8 +id[1383] = "2101-05-06T02:26:04" +ik[1383] = 0.486 +il[1383] = -47 +im[1383] = 0.0553 +ij[1383] = 28.8 +id[1384] = "2101-05-14T12:31:16" +ik[1384] = -25.093 +il[1384] = -117 +im[1384] = 0.0842 +ij[1384] = 15 +id[1385] = "2101-06-26T22:32:55" +ik[1385] = 3.831 +il[1385] = 153 +im[1385] = 0.11 +ij[1385] = 27.6 +id[1386] = "2101-07-06T12:18:37" +ik[1386] = 0.664 +il[1386] = 40 +im[1386] = 0.0219 +ij[1386] = 28.6 +id[1387] = "2101-07-23T09:43:32" +ik[1387] = 0.535 +il[1387] = -116 +im[1387] = 0.0911 +ij[1387] = 28.5 +id[1388] = "2101-08-13T22:57:56" +ik[1388] = 45.918 +il[1388] = -103 +im[1388] = 0.087 +ij[1388] = 3 +id[1389] = "2101-09-05T22:20:55" +ik[1389] = -2.185 +il[1389] = 132 +im[1389] = 0.1385 +ij[1389] = 2 +id[1390] = "2101-09-07T00:17:29" +ik[1390] = 5.71 +il[1390] = 114 +im[1390] = 0.1499 +ij[1390] = 27.2 +id[1391] = "2101-10-04T00:17:58" +ik[1391] = 11 +il[1391] = 18 +im[1391] = 0.1679 +ij[1391] = 18 +id[1392] = "2101-11-03T11:47:59" +ik[1392] = 0 +il[1392] = 143 +im[1392] = 0.2315 +ij[1392] = 13 +id[1393] = "2101-11-13T09:04:11" +ik[1393] = 1.377 +il[1393] = -80 +im[1393] = 0.1812 +ij[1393] = 28.2 +id[1394] = "2101-11-18T17:32:06" +ik[1394] = 12 +il[1394] = -155 +im[1394] = 0.2234 +ij[1394] = 17 +id[1395] = "2101-12-11T15:04:15" +ik[1395] = 2.3 +il[1395] = 91 +im[1395] = 0.2496 +ij[1395] = 11 +id[1396] = "2102-01-03T21:10:02" +ik[1396] = 3.259 +il[1396] = 40 +im[1396] = 0.0989 +ij[1396] = 28.5 +id[1397] = "2102-01-14T08:00:54" +ik[1397] = 1.633 +il[1397] = -35 +im[1397] = 0.0803 +ij[1397] = 27.2 +id[1398] = "2102-01-16T12:52:35" +ik[1398] = 74.04 +il[1398] = -87 +im[1398] = 0.0284 +ij[1398] = 7.1474 +id[1399] = "2102-03-05T04:15:27" +ik[1399] = 2.537 +il[1399] = 131 +im[1399] = 0.1288 +ij[1399] = 28.5 +id[1400] = "2102-03-11T14:36:55" +ik[1400] = -1.622 +il[1400] = 36 +im[1400] = 0.0265 +ij[1400] = 4 +id[1401] = "2102-03-18T05:34:56" +ik[1401] = 37.34 +il[1401] = -126 +im[1401] = 0.1084 +ij[1401] = 1 +id[1402] = "2102-03-18T06:55:25" +ik[1402] = 134.8 +il[1402] = -145 +im[1402] = 0.1087 +ij[1402] = 14 +id[1403] = "2102-03-19T16:22:26" +ik[1403] = 12 +il[1403] = 86 +im[1403] = 0.1099 +ij[1403] = 18 +id[1404] = "2102-05-28T18:02:03" +ik[1404] = 31.301 +il[1404] = 4 +im[1404] = 0.0712 +ij[1404] = 9 +id[1405] = "2102-08-16T10:06:35" +ik[1405] = 2.85 +il[1405] = 167 +im[1405] = 0.0066 +ij[1405] = 28.1 +id[1406] = "2102-08-19T18:29:46" +ik[1406] = 25.966 +il[1406] = 73 +im[1406] = 0.0364 +ij[1406] = 16 +id[1407] = "2102-11-21T15:41:35" +ik[1407] = 0.16 +il[1407] = -31 +im[1407] = 0.0358 +ij[1407] = 12 +id[1408] = "2102-12-28T04:37:44" +ik[1408] = 0 +il[1408] = -54 +im[1408] = 0.0495 +ij[1408] = 17 +id[1409] = "2103-01-28T14:32:21" +ik[1409] = 0.156 +il[1409] = 97 +im[1409] = 0.0638 +ij[1409] = 28.1 +id[1410] = "2103-02-23T12:39:36" +ik[1410] = 0.265 +il[1410] = 19 +im[1410] = 0.0454 +ij[1410] = 27.3 +id[1411] = "2103-03-24T11:14:36" +ik[1411] = 0.714 +il[1411] = -38 +im[1411] = 0.0453 +ij[1411] = 27.5 +id[1412] = "2103-04-19T14:36:40" +ik[1412] = 0.084 +il[1412] = 163 +im[1412] = 0.0097 +ij[1412] = 28.8 +id[1413] = "2103-04-23T01:06:09" +ik[1413] = -25.468 +il[1413] = 39 +im[1413] = 0.0521 +ij[1413] = 15 +id[1414] = "2103-06-02T15:02:40" +ik[1414] = 3.205 +il[1414] = -134 +im[1414] = 0.0248 +ij[1414] = 27.6 +id[1415] = "2103-07-08T10:06:30" +ik[1415] = 35.862 +il[1415] = -69 +im[1415] = 0.0884 +ij[1415] = 8 +id[1416] = "2103-07-14T11:33:15" +ik[1416] = 1.141 +il[1416] = -31 +im[1416] = 0.0202 +ij[1416] = 28.6 +id[1417] = "2103-08-05T21:09:31" +ik[1417] = 5.082 +il[1417] = 44 +im[1417] = 0.0968 +ij[1417] = 27.2 +id[1418] = "2103-08-25T03:16:06" +ik[1418] = 11 +il[1418] = 141 +im[1418] = 0.0294 +ij[1418] = 18 +id[1419] = "2103-10-01T03:34:59" +ik[1419] = 41.285 +il[1419] = 138 +im[1419] = 0.1195 +ij[1419] = 3 +id[1420] = "2103-10-05T08:15:55" +ik[1420] = 0.178 +il[1420] = 108 +im[1420] = 0.0948 +ij[1420] = 28.5 +id[1421] = "2103-10-07T12:48:29" +ik[1421] = -1.889 +il[1421] = 61 +im[1421] = 0.0502 +ij[1421] = 2 +id[1422] = "2103-12-11T06:55:54" +ik[1422] = 0 +il[1422] = 57 +im[1422] = 0.1828 +ij[1422] = 13 +id[1423] = "2104-01-20T03:54:02" +ik[1423] = 4.15 +il[1423] = 106 +im[1423] = 0.2381 +ij[1423] = 11 +id[1424] = "2104-02-06T22:21:39" +ik[1424] = 2.888 +il[1424] = 162 +im[1424] = 0.0861 +ij[1424] = 28.2 +id[1425] = "2104-03-01T05:58:30" +ik[1425] = 80.96 +il[1425] = -100 +im[1425] = 0.1601 +ij[1425] = 7.1788 +id[1426] = "2104-04-27T18:57:53" +ik[1426] = 37.141 +il[1426] = -108 +im[1426] = 0.0802 +ij[1426] = 1 +id[1427] = "2104-04-27T20:24:30" +ik[1427] = -1.556 +il[1427] = -129 +im[1427] = 0.0793 +ij[1427] = 4 +id[1428] = "2104-05-06T06:55:20" +ik[1428] = 147 +il[1428] = 154 +im[1428] = 0.0865 +ij[1428] = 14 +id[1429] = "2104-06-18T17:18:41" +ik[1429] = 0.183 +il[1429] = 54 +im[1429] = 0.0689 +ij[1429] = 28.5 +id[1430] = "2104-07-04T16:01:36" +ik[1430] = 31.859 +il[1430] = -133 +im[1430] = 0.0772 +ij[1430] = 9 +id[1431] = "2104-07-30T22:13:40" +ik[1431] = 26.08 +il[1431] = 28 +im[1431] = 0.056 +ij[1431] = 16 +id[1432] = "2104-09-16T20:44:00" +ik[1432] = 0.025 +il[1432] = 156 +im[1432] = 0.058 +ij[1432] = 28.2 +id[1433] = "2104-10-07T00:14:49" +ik[1433] = 0.556 +il[1433] = -61 +im[1433] = 0.0104 +ij[1433] = 28.7 +id[1434] = "2104-10-21T10:05:25" +ik[1434] = 1.929 +il[1434] = -68 +im[1434] = 0.0037 +ij[1434] = 28.1 +id[1435] = "2104-11-05T00:09:11" +ik[1435] = 3.708 +il[1435] = -137 +im[1435] = 0.0127 +ij[1435] = 27.4 +id[1436] = "2104-12-08T14:07:28" +ik[1436] = 0 +il[1436] = -4 +im[1436] = 0.0593 +ij[1436] = 17 +id[1437] = "2105-01-13T13:49:36" +ik[1437] = 0.97 +il[1437] = 0 +im[1437] = 0.0334 +ij[1437] = 12 +id[1438] = "2105-04-02T04:47:09" +ik[1438] = -25.688 +il[1438] = -23 +im[1438] = 0.0487 +ij[1438] = 15 +id[1439] = "2105-04-04T03:29:16" +ik[1439] = 0.226 +il[1439] = 14 +im[1439] = 0.0624 +ij[1439] = 28.8 +id[1440] = "2105-04-21T17:27:23" +ik[1440] = 1.661 +il[1440] = -20 +im[1440] = 0.0583 +ij[1440] = 28.1 +id[1441] = "2105-05-11T14:28:26" +ik[1441] = 2.851 +il[1441] = -133 +im[1441] = 0.0115 +ij[1441] = 27.6 +id[1442] = "2105-07-08T05:03:41" +ik[1442] = 2.217 +il[1442] = -147 +im[1442] = 0.0112 +ij[1442] = 28.2 +id[1443] = "2105-07-13T12:16:08" +ik[1443] = 4.709 +il[1443] = 157 +im[1443] = 0.0616 +ij[1443] = 27.2 +id[1444] = "2105-07-25T01:07:51" +ik[1444] = 1.164 +il[1444] = 77 +im[1444] = 0.0241 +ij[1444] = 28.6 +id[1445] = "2105-08-01T19:29:43" +ik[1445] = 12 +il[1445] = -123 +im[1445] = 0.064 +ij[1445] = 18 +id[1446] = "2105-09-08T14:38:56" +ik[1446] = 33.374 +il[1446] = -43 +im[1446] = 0.0685 +ij[1446] = 8 +id[1447] = "2105-11-07T12:20:57" +ik[1447] = -1.69 +il[1447] = -148 +im[1447] = 0.1101 +ij[1447] = 2 +id[1448] = "2105-11-13T07:47:51" +ik[1448] = 37.834 +il[1448] = -24 +im[1448] = 0.0478 +ij[1448] = 3 +id[1449] = "2106-01-13T06:55:48" +ik[1449] = 0 +il[1449] = -141 +im[1449] = 0.1137 +ij[1449] = 13 +id[1450] = "2106-02-22T15:42:29" +ik[1450] = 4.23 +il[1450] = 91 +im[1450] = 0.1819 +ij[1450] = 11 +id[1451] = "2106-03-15T09:01:21" +ik[1451] = 1.863 +il[1451] = 180 +im[1451] = 0.0986 +ij[1451] = 28.1 +id[1452] = "2106-04-06T05:58:23" +ik[1452] = 82.96 +il[1452] = 69 +im[1452] = 0.1622 +ij[1452] = 7.2067 +id[1453] = "2106-06-06T14:42:51" +ik[1453] = 38.528 +il[1453] = 169 +im[1453] = 0.0421 +ij[1453] = 1 +id[1454] = "2106-06-11T13:37:12" +ik[1454] = 149.28 +il[1454] = -127 +im[1454] = 0.0712 +ij[1454] = 14 +id[1455] = "2106-06-11T14:10:18" +ik[1455] = -1.631 +il[1455] = -135 +im[1455] = 0.0716 +ij[1455] = 4 +id[1456] = "2106-07-09T10:42:55" +ik[1456] = 26.176 +il[1456] = -173 +im[1456] = 0.0531 +ij[1456] = 16 +id[1457] = "2106-08-17T12:41:36" +ik[1457] = 33.251 +il[1457] = 177 +im[1457] = 0.036 +ij[1457] = 9 +id[1458] = "2106-09-03T08:19:26" +ik[1458] = 4.316 +il[1458] = 46 +im[1458] = 0.0214 +ij[1458] = 28.2 +id[1459] = "2106-09-22T10:27:23" +ik[1459] = 1.298 +il[1459] = -160 +im[1459] = 0.065 +ij[1459] = 28.5 +id[1460] = "2106-09-29T19:29:26" +ik[1460] = 0.873 +il[1460] = 137 +im[1460] = 0.0169 +ij[1460] = 28.7 +id[1461] = "2106-10-16T09:19:46" +ik[1461] = 3.403 +il[1461] = 91 +im[1461] = 0.0072 +ij[1461] = 27.4 +id[1462] = "2106-10-30T05:17:50" +ik[1462] = 6.323 +il[1462] = -74 +im[1462] = 0.0062 +ij[1462] = 27.1 +id[1463] = "2106-11-19T17:10:10" +ik[1463] = 0 +il[1463] = -51 +im[1463] = 0.0647 +ij[1463] = 17 +id[1464] = "2107-03-13T20:53:22" +ik[1464] = -25.852 +il[1464] = -43 +im[1464] = 0.0518 +ij[1464] = 15 +id[1465] = "2107-03-26T22:10:03" +ik[1465] = 0.76 +il[1465] = 68 +im[1465] = 0.0275 +ij[1465] = 12 +id[1466] = "2107-06-15T15:38:35" +ik[1466] = 1.601 +il[1466] = 23 +im[1466] = 0.0486 +ij[1466] = 28.1 +id[1467] = "2107-06-23T11:17:43" +ik[1467] = 4.439 +il[1467] = 173 +im[1467] = 0.0464 +ij[1467] = 27.2 +id[1468] = "2107-07-01T01:27:50" +ik[1468] = 1.821 +il[1468] = 29 +im[1468] = 0.028 +ij[1468] = 28.1 +id[1469] = "2107-07-13T07:06:30" +ik[1469] = 12 +il[1469] = 69 +im[1469] = 0.0585 +ij[1469] = 18 +id[1470] = "2107-08-08T05:06:00" +ik[1470] = 0.854 +il[1470] = -10 +im[1470] = 0.0659 +ij[1470] = 28.6 +id[1471] = "2107-10-21T15:06:56" +ik[1471] = 31.487 +il[1471] = -160 +im[1471] = 0.0655 +ij[1471] = 8 +id[1472] = "2107-12-13T05:04:32" +ik[1472] = -1.592 +il[1472] = 139 +im[1472] = 0.0933 +ij[1472] = 2 +id[1473] = "2107-12-22T20:38:49" +ik[1473] = 36.283 +il[1473] = -2 +im[1473] = 0.0079 +ij[1473] = 3 +id[1474] = "2108-02-18T13:37:39" +ik[1474] = 0 +il[1474] = -60 +im[1474] = 0.0752 +ij[1474] = 13 +id[1475] = "2108-02-19T14:54:12" +ik[1475] = 2.138 +il[1475] = -69 +im[1475] = 0.1105 +ij[1475] = 28.2 +id[1476] = "2108-03-28T10:22:30" +ik[1476] = 2.98 +il[1476] = -21 +im[1476] = 0.0575 +ij[1476] = 11 +id[1477] = "2108-05-08T17:56:39" +ik[1477] = 80.18 +il[1477] = 44 +im[1477] = 0.0807 +ij[1477] = 7.2032 +id[1478] = "2108-06-11T14:43:00" +ik[1478] = 25.935 +il[1478] = 61 +im[1478] = 0.1424 +ij[1478] = 16 +id[1479] = "2108-07-10T16:42:22" +ik[1479] = 143.13 +il[1479] = -46 +im[1479] = 0.1073 +ij[1479] = 14 +id[1480] = "2108-07-18T11:12:54" +ik[1480] = 41.459 +il[1480] = 112 +im[1480] = 0.076 +ij[1480] = 1 +id[1481] = "2108-07-22T08:30:45" +ik[1481] = -1.836 +il[1481] = -169 +im[1481] = 0.1174 +ij[1481] = 4 +id[1482] = "2108-09-19T09:01:58" +ik[1482] = 1.323 +il[1482] = 38 +im[1482] = 0.0906 +ij[1482] = 28.7 +id[1483] = "2108-09-23T15:50:16" +ik[1483] = 2.95 +il[1483] = -22 +im[1483] = 0.038 +ij[1483] = 27.4 +id[1484] = "2108-09-29T15:39:20" +ik[1484] = 5.083 +il[1484] = 40 +im[1484] = 0.0644 +ij[1484] = 27.4 +id[1485] = "2108-10-13T09:00:43" +ik[1485] = 35.081 +il[1485] = -86 +im[1485] = 0.07 +ij[1485] = 9 +id[1486] = "2108-10-29T19:04:56" +ik[1486] = 0 +il[1486] = -76 +im[1486] = 0.0708 +ij[1486] = 17 +id[1487] = "2108-12-04T11:27:01" +ik[1487] = 0.81 +il[1487] = 29 +im[1487] = 0.0271 +ij[1487] = 28.5 +id[1488] = "2108-12-23T09:53:17" +ik[1488] = 0.066 +il[1488] = -121 +im[1488] = 0.0299 +ij[1488] = 27.3 +id[1489] = "2109-01-21T00:26:54" +ik[1489] = 0.544 +il[1489] = -58 +im[1489] = 0.0241 +ij[1489] = 27.5 +id[1490] = "2109-02-21T09:48:25" +ik[1490] = -25.996 +il[1490] = 109 +im[1490] = 0.0519 +ij[1490] = 15 +id[1491] = "2109-03-06T14:49:15" +ik[1491] = 0.808 +il[1491] = 165 +im[1491] = 0.037 +ij[1491] = 28.8 +id[1492] = "2109-05-29T07:06:03" +ik[1492] = 0.33 +il[1492] = 20 +im[1492] = 0.0085 +ij[1492] = 12 +id[1493] = "2109-06-23T17:49:56" +ik[1493] = 12 +il[1493] = -91 +im[1493] = 0.0437 +ij[1493] = 18 +id[1494] = "2109-08-23T18:30:41" +ik[1494] = 0.309 +il[1494] = 143 +im[1494] = 0.0094 +ij[1494] = 28.6 +id[1495] = "2109-11-08T10:10:46" +ik[1495] = 25.234 +il[1495] = -72 +im[1495] = 0.0652 +ij[1495] = 16 +id[1496] = "2109-11-24T21:26:02" +ik[1496] = 30.668 +il[1496] = -81 +im[1496] = 0.0717 +ij[1496] = 8 +id[1497] = "2110-01-26T16:36:06" +ik[1497] = -1.601 +il[1497] = -125 +im[1497] = 0.0276 +ij[1497] = 2 +id[1498] = "2110-01-31T16:17:54" +ik[1498] = 36.577 +il[1498] = -72 +im[1498] = 0.0828 +ij[1498] = 3 +id[1499] = "2110-03-29T07:55:31" +ik[1499] = 5.041 +il[1499] = -126 +im[1499] = 0.159 +ij[1499] = 28.7 +id[1500] = "2110-04-01T16:42:51" +ik[1500] = 0 +il[1500] = 134 +im[1500] = 0.2027 +ij[1500] = 13 +id[1501] = "2110-05-07T22:54:30" +ik[1501] = 0.11 +il[1501] = 1 +im[1501] = 0.1923 +ij[1501] = 11 +id[1502] = "2110-05-22T01:08:50" +ik[1502] = 1.649 +il[1502] = -100 +im[1502] = 0.2257 +ij[1502] = 28.1 +id[1503] = "2110-06-01T03:28:39" +ik[1503] = 1.803 +il[1503] = -37 +im[1503] = 0.042 +ij[1503] = 28.2 +id[1504] = "2110-06-16T15:45:27" +ik[1504] = 75.96 +il[1504] = -70 +im[1504] = 0.155 +ij[1504] = 7.155 +id[1505] = "2110-08-09T21:43:15" +ik[1505] = 130.21 +il[1505] = 10 +im[1505] = 0.0588 +ij[1505] = 14 +id[1506] = "2110-08-22T22:16:33" +ik[1506] = -2.144 +il[1506] = 129 +im[1506] = 0.0187 +ij[1506] = 4 +id[1507] = "2110-08-24T22:49:13" +ik[1507] = 1.997 +il[1507] = 141 +im[1507] = 0.0641 +ij[1507] = 27.4 +id[1508] = "2110-09-03T11:04:50" +ik[1508] = 45.23 +il[1508] = 50 +im[1508] = 0.0681 +ij[1508] = 1 +id[1509] = "2110-09-03T12:45:56" +ik[1509] = 2.186 +il[1509] = 25 +im[1509] = 0.0664 +ij[1509] = 28.7 +id[1510] = "2110-10-06T16:57:37" +ik[1510] = 0 +il[1510] = -72 +im[1510] = 0.0458 +ij[1510] = 17 +id[1511] = "2110-11-30T20:14:02" +ik[1511] = 0.168 +il[1511] = 62 +im[1511] = 0.0231 +ij[1511] = 27.3 +id[1512] = "2110-12-24T11:50:02" +ik[1512] = 35.255 +il[1512] = 60 +im[1512] = 0.0875 +ij[1512] = 9 +id[1513] = "2110-12-30T04:18:28" +ik[1513] = 0.572 +il[1513] = -131 +im[1513] = 0.0168 +ij[1513] = 27.5 +id[1514] = "2111-02-01T01:10:14" +ik[1514] = -26.136 +il[1514] = -125 +im[1514] = 0.0432 +ij[1514] = 15 +id[1515] = "2111-02-01T12:26:39" +ik[1515] = 0.593 +il[1515] = 71 +im[1515] = 0.0489 +ij[1515] = 28.5 +id[1516] = "2111-02-20T01:55:53" +ik[1516] = 1.134 +il[1516] = 47 +im[1516] = 0.075 +ij[1516] = 28.8 +id[1517] = "2111-03-04T14:21:06" +ik[1517] = 0.091 +il[1517] = -19 +im[1517] = 0.0627 +ij[1517] = 28.2 +id[1518] = "2111-03-11T12:45:44" +ik[1518] = 2.108 +il[1518] = 71 +im[1518] = 0.0178 +ij[1518] = 27.6 +id[1519] = "2111-06-05T10:12:27" +ik[1519] = 12 +il[1519] = -146 +im[1519] = 0.0253 +ij[1519] = 18 +id[1520] = "2111-07-15T12:26:04" +ik[1520] = 1 +il[1520] = -151 +im[1520] = 0.0536 +ij[1520] = 12 +id[1521] = "2111-10-20T12:19:42" +ik[1521] = 25.492 +il[1521] = -94 +im[1521] = 0.0593 +ij[1521] = 16 +id[1522] = "2111-11-13T23:23:55" +ik[1522] = 0.406 +il[1522] = -24 +im[1522] = 0.0227 +ij[1522] = 28.2 +id[1523] = "2111-12-28T14:49:36" +ik[1523] = 30.856 +il[1523] = 173 +im[1523] = 0.0384 +ij[1523] = 8 +id[1524] = "2112-02-07T13:54:44" +ik[1524] = 5.003 +il[1524] = -143 +im[1524] = 0.0319 +ij[1524] = 27.4 +id[1525] = "2112-02-17T18:01:42" +ik[1525] = 0.631 +il[1525] = -108 +im[1525] = 0.0766 +ij[1525] = 28.7 +id[1526] = "2112-02-25T03:52:10" +ik[1526] = 4.811 +il[1526] = 174 +im[1526] = 0.0783 +ij[1526] = 27.1 +id[1527] = "2112-03-20T05:00:47" +ik[1527] = 23 +il[1527] = 25 +im[1527] = 0.0208 +ij[1527] = 17 +id[1528] = "2112-03-22T07:42:48" +ik[1528] = 39.155 +il[1528] = 5 +im[1528] = 0.0425 +ij[1528] = 3 +id[1529] = "2112-04-04T06:31:41" +ik[1529] = -1.793 +il[1529] = 145 +im[1529] = 0.0404 +ij[1529] = 2 +id[1530] = "2112-06-01T21:43:44" +ik[1530] = 0 +il[1530] = 111 +im[1530] = 0.2147 +ij[1530] = 13 +id[1531] = "2112-06-12T14:41:12" +ik[1531] = 1.963 +il[1531] = -44 +im[1531] = 0.035 +ij[1531] = 28.1 +id[1532] = "2112-07-02T07:40:44" +ik[1532] = 4.66 +il[1532] = -122 +im[1532] = 0.364 +ij[1532] = 11 +id[1533] = "2112-07-17T21:49:37" +ik[1533] = 5.902 +il[1533] = -9 +im[1533] = 0.2695 +ij[1533] = 28.1 +id[1534] = "2112-07-23T10:34:06" +ik[1534] = 0 +il[1534] = -146 +im[1534] = 0.1288 +ij[1534] = 18 +id[1535] = "2112-08-06T03:54:29" +ik[1535] = 65.26 +il[1535] = 89 +im[1535] = 0.0769 +ij[1535] = 7.1017 +id[1536] = "2112-08-14T04:36:43" +ik[1536] = 0 +il[1536] = 157 +im[1536] = 0.2199 +ij[1536] = 17 +id[1537] = "2112-09-19T13:18:19" +ik[1537] = 109.65 +il[1537] = 25 +im[1537] = 0.1844 +ij[1537] = 14 +id[1538] = "2112-09-29T19:10:48" +ik[1538] = -2.373 +il[1538] = 38 +im[1538] = 0.0213 +ij[1538] = 4 +id[1539] = "2112-10-24T17:22:50" +ik[1539] = 45.759 +il[1539] = -50 +im[1539] = 0.13 +ij[1539] = 1 +id[1540] = "2112-10-29T10:07:40" +ik[1540] = 1.019 +il[1540] = 105 +im[1540] = 0.0254 +ij[1540] = 27.3 +id[1541] = "2112-12-01T16:11:01" +ik[1541] = 0.825 +il[1541] = -21 +im[1541] = 0.1172 +ij[1541] = 27.5 +id[1542] = "2113-01-07T20:00:10" +ik[1542] = -26.262 +il[1542] = -80 +im[1542] = 0.014 +ij[1542] = 15 +id[1543] = "2113-02-02T01:32:19" +ik[1543] = 1.527 +il[1543] = 79 +im[1543] = 0.0707 +ij[1543] = 28.8 +id[1544] = "2113-02-16T00:17:42" +ik[1544] = 1.808 +il[1544] = -130 +im[1544] = 0.07 +ij[1544] = 27.6 +id[1545] = "2113-02-21T10:58:55" +ik[1545] = 33.439 +il[1545] = 121 +im[1545] = 0.0214 +ij[1545] = 9 +id[1546] = "2113-04-02T17:46:16" +ik[1546] = 1.336 +il[1546] = 41 +im[1546] = 0.0366 +ij[1546] = 28.5 +id[1547] = "2113-04-23T23:58:14" +ik[1547] = 3.686 +il[1547] = 152 +im[1547] = 0.0611 +ij[1547] = 27.2 +id[1548] = "2113-05-16T18:20:04" +ik[1548] = 12 +il[1548] = 98 +im[1548] = 0.0122 +ij[1548] = 18 +id[1549] = "2113-05-27T13:30:03" +ik[1549] = 2.926 +il[1549] = -88 +im[1549] = 0.0562 +ij[1549] = 28.1 +id[1550] = "2113-08-22T08:49:11" +ik[1550] = 1.13 +il[1550] = 93 +im[1550] = 0.0481 +ij[1550] = 12 +id[1551] = "2113-10-01T18:15:38" +ik[1551] = 25.666 +il[1551] = -174 +im[1551] = 0.0543 +ij[1551] = 16 +id[1552] = "2113-10-23T10:32:41" +ik[1552] = 1.991 +il[1552] = 157 +im[1552] = 0.0042 +ij[1552] = 28.1 +id[1553] = "2114-01-12T01:49:20" +ik[1553] = 4.591 +il[1553] = -18 +im[1553] = 0.0662 +ij[1553] = 27.4 +id[1554] = "2114-01-27T03:05:10" +ik[1554] = 5.192 +il[1554] = 105 +im[1554] = 0.0647 +ij[1554] = 27.1 +id[1555] = "2114-02-02T20:45:09" +ik[1555] = 32.09 +il[1555] = -96 +im[1555] = 0.0318 +ij[1555] = 8 +id[1556] = "2114-02-03T00:26:21" +ik[1556] = 0.215 +il[1556] = -152 +im[1556] = 0.0341 +ij[1556] = 28.7 +id[1557] = "2114-02-15T23:55:22" +ik[1557] = 23 +il[1557] = -19 +im[1557] = 0.022 +ij[1557] = 17 +id[1558] = "2114-04-24T09:57:10" +ik[1558] = 0.071 +il[1558] = 108 +im[1558] = 0.0989 +ij[1558] = 27.3 +id[1559] = "2114-05-30T00:47:28" +ik[1559] = 1.998 +il[1559] = -136 +im[1559] = 0.0951 +ij[1559] = 27.5 +id[1560] = "2114-06-01T01:53:45" +ik[1560] = 44.787 +il[1560] = -133 +im[1560] = 0.1436 +ij[1560] = 3 +id[1561] = "2114-07-01T19:44:36" +ik[1561] = -2.299 +il[1561] = -107 +im[1561] = 0.2037 +ij[1561] = 2 +id[1562] = "2114-08-09T14:42:07" +ik[1562] = 4.164 +il[1562] = -17 +im[1562] = 0.2736 +ij[1562] = 28.2 +id[1563] = "2114-08-18T13:18:50" +ik[1563] = 0 +il[1563] = 90 +im[1563] = 0.0722 +ij[1563] = 13 +id[1564] = "2114-08-28T03:10:03" +ik[1564] = 5.499 +il[1564] = -24 +im[1564] = 0.2951 +ij[1564] = 28.1 +id[1565] = "2114-09-20T21:26:31" +ik[1565] = 5.14 +il[1565] = -80 +im[1565] = 0.3613 +ij[1565] = 11 +id[1566] = "2114-10-06T02:21:27" +ik[1566] = 3.158 +il[1566] = -169 +im[1566] = 0.371 +ij[1566] = 28.1 +id[1567] = "2114-10-20T12:23:26" +ik[1567] = 62.96 +il[1567] = -179 +im[1567] = 0.2696 +ij[1567] = 7.1161 +id[1568] = "2114-10-28T15:31:25" +ik[1568] = 3.321 +il[1568] = -147 +im[1568] = 0.2035 +ij[1568] = 28.2 +id[1569] = "2114-12-02T19:58:11" +ik[1569] = 106.28 +il[1569] = 125 +im[1569] = 0.1638 +ij[1569] = 14 +id[1570] = "2114-12-06T07:05:11" +ik[1570] = -25.892 +il[1570] = -9 +im[1570] = 0.0384 +ij[1570] = 15 +id[1571] = "2114-12-12T04:18:23" +ik[1571] = -2.04 +il[1571] = 89 +im[1571] = 0.1568 +ij[1571] = 4 +id[1572] = "2115-01-03T05:35:48" +ik[1572] = 41.044 +il[1572] = -80 +im[1572] = 0.0423 +ij[1572] = 1 +id[1573] = "2115-01-06T05:15:55" +ik[1573] = 2.009 +il[1573] = -46 +im[1573] = 0.0528 +ij[1573] = 28.8 +id[1574] = "2115-01-16T00:57:39" +ik[1574] = 1.394 +il[1574] = 111 +im[1574] = 0.0456 +ij[1574] = 27.6 +id[1575] = "2115-04-01T13:04:53" +ik[1575] = 3.29 +il[1575] = -78 +im[1575] = 0.0285 +ij[1575] = 27.2 +id[1576] = "2115-04-07T06:29:09" +ik[1576] = 31.944 +il[1576] = 75 +im[1576] = 0.0763 +ij[1576] = 9 +id[1577] = "2115-04-26T18:12:41" +ik[1577] = 12 +il[1577] = 87 +im[1577] = 0.0276 +ij[1577] = 18 +id[1578] = "2115-06-19T08:27:59" +ik[1578] = 0.591 +il[1578] = 15 +im[1578] = 0.0566 +ij[1578] = 28.5 +id[1579] = "2115-07-25T09:00:59" +ik[1579] = 0.038 +il[1579] = -1 +im[1579] = 0.0275 +ij[1579] = 28.1 +id[1580] = "2115-09-14T09:02:37" +ik[1580] = 25.802 +il[1580] = 137 +im[1580] = 0.045 +ij[1580] = 16 +id[1581] = "2115-09-27T19:46:57" +ik[1581] = 0.83 +il[1581] = 105 +im[1581] = 0.0545 +ij[1581] = 12 +id[1582] = "2115-12-22T09:57:54" +ik[1582] = 4.299 +il[1582] = -163 +im[1582] = 0.0648 +ij[1582] = 27.4 +id[1583] = "2116-01-05T17:03:08" +ik[1583] = 5.472 +il[1583] = -123 +im[1583] = 0.0601 +ij[1583] = 27.1 +id[1584] = "2116-01-25T01:18:27" +ik[1584] = 0 +il[1584] = -64 +im[1584] = 0.0296 +ij[1584] = 17 +id[1585] = "2116-01-25T01:42:59" +ik[1585] = 0.059 +il[1585] = -76 +im[1585] = 0.0293 +ij[1585] = 28.7 +id[1586] = "2116-03-22T21:13:35" +ik[1586] = 34.406 +il[1586] = -175 +im[1586] = 0.0322 +ij[1586] = 8 +id[1587] = "2116-03-25T18:19:56" +ik[1587] = 0.225 +il[1587] = -104 +im[1587] = 0.023 +ij[1587] = 27.3 +id[1588] = "2116-04-25T02:26:01" +ik[1588] = 1.026 +il[1588] = 63 +im[1588] = 0.0559 +ij[1588] = 27.5 +id[1589] = "2116-05-23T21:44:59" +ik[1589] = -24.842 +il[1589] = 49 +im[1589] = 0.0641 +ij[1589] = 15 +id[1590] = "2116-06-30T07:13:28" +ik[1590] = 0.514 +il[1590] = -92 +im[1590] = 0.0934 +ij[1590] = 28.8 +id[1591] = "2116-07-08T23:37:29" +ik[1591] = 4.279 +il[1591] = 106 +im[1591] = 0.1136 +ij[1591] = 27.6 +id[1592] = "2116-07-27T04:38:47" +ik[1592] = 47.137 +il[1592] = -151 +im[1592] = 0.1429 +ij[1592] = 3 +id[1593] = "2116-08-23T03:44:38" +ik[1593] = -2.304 +il[1593] = 127 +im[1593] = 0.1836 +ij[1593] = 2 +id[1594] = "2116-10-16T19:58:41" +ik[1594] = 0 +il[1594] = 60 +im[1594] = 0.2702 +ij[1594] = 13 +id[1595] = "2116-10-24T17:06:30" +ik[1595] = 5.46 +il[1595] = -180 +im[1595] = 0.0231 +ij[1595] = 27.2 +id[1596] = "2116-11-09T04:51:58" +ik[1596] = 1.871 +il[1596] = 146 +im[1596] = 0.1754 +ij[1596] = 28.1 +id[1597] = "2116-11-23T01:54:04" +ik[1597] = 0.8 +il[1597] = -48 +im[1597] = 0.161 +ij[1597] = 11 +id[1598] = "2116-12-07T09:29:28" +ik[1598] = 2.049 +il[1598] = 173 +im[1598] = 0.2281 +ij[1598] = 28.2 +id[1599] = "2116-12-26T19:01:17" +ik[1599] = 70.96 +il[1599] = -157 +im[1599] = 0.1598 +ij[1599] = 7.1381 +id[1600] = "2117-02-18T04:06:51" +ik[1600] = -1.694 +il[1600] = -151 +im[1600] = 0.1193 +ij[1600] = 4 +id[1601] = "2117-02-20T22:16:09" +ik[1601] = 127.1 +il[1601] = -37 +im[1601] = 0.0782 +ij[1601] = 14 +id[1602] = "2117-02-27T06:55:30" +ik[1602] = 2.501 +il[1602] = -107 +im[1602] = 0.0815 +ij[1602] = 27.2 +id[1603] = "2117-02-28T04:33:44" +ik[1603] = 37.911 +il[1603] = -63 +im[1603] = 0.0974 +ij[1603] = 1 +id[1604] = "2117-04-01T14:34:34" +ik[1604] = 12 +il[1604] = 92 +im[1604] = 0.0995 +ij[1604] = 18 +id[1605] = "2117-05-14T11:02:28" +ik[1605] = 31.313 +il[1605] = -170 +im[1605] = 0.0707 +ij[1605] = 9 +id[1606] = "2117-07-17T06:03:42" +ik[1606] = 5.429 +il[1606] = 152 +im[1606] = 0.0042 +ij[1606] = 28.1 +id[1607] = "2117-07-17T22:18:44" +ik[1607] = 0.486 +il[1607] = -85 +im[1607] = 0.0124 +ij[1607] = 28.2 +id[1608] = "2117-08-26T19:45:22" +ik[1608] = 25.923 +il[1608] = -18 +im[1608] = 0.0314 +ij[1608] = 16 +id[1609] = "2117-11-04T15:21:11" +ik[1609] = 0.16 +il[1609] = 16 +im[1609] = 0.048 +ij[1609] = 12 +id[1610] = "2118-01-04T13:49:52" +ik[1610] = 0 +il[1610] = 97 +im[1610] = 0.023 +ij[1610] = 17 +id[1611] = "2118-01-16T18:09:38" +ik[1611] = 0.253 +il[1611] = 147 +im[1611] = 0.0423 +ij[1611] = 28.7 +id[1612] = "2118-03-03T14:55:35" +ik[1612] = 0.267 +il[1612] = -78 +im[1612] = 0.027 +ij[1612] = 27.3 +id[1613] = "2118-04-01T19:16:34" +ik[1613] = 0.769 +il[1613] = 135 +im[1613] = 0.0267 +ij[1613] = 27.5 +id[1614] = "2118-04-09T00:33:48" +ik[1614] = 0.834 +il[1614] = 126 +im[1614] = 0.0688 +ij[1614] = 28.2 +id[1615] = "2118-05-01T04:40:47" +ik[1615] = -25.35 +il[1615] = -83 +im[1615] = 0.0215 +ij[1615] = 15 +id[1616] = "2118-06-05T22:18:55" +ik[1616] = 36.277 +il[1616] = 0 +im[1616] = 0.0807 +ij[1616] = 8 +id[1617] = "2118-06-09T13:05:04" +ik[1617] = 0.349 +il[1617] = 174 +im[1617] = 0.0704 +ij[1617] = 28.8 +id[1618] = "2118-06-11T13:16:23" +ik[1618] = 3.398 +il[1618] = -169 +im[1618] = 0.0453 +ij[1618] = 27.6 +id[1619] = "2118-08-16T05:23:04" +ik[1619] = 5.285 +il[1619] = -126 +im[1619] = 0.0916 +ij[1619] = 27.2 +id[1620] = "2118-09-05T00:04:07" +ik[1620] = 11 +il[1620] = 147 +im[1620] = 0.0897 +ij[1620] = 18 +id[1621] = "2118-09-12T05:53:48" +ik[1621] = 43.101 +il[1621] = 130 +im[1621] = 0.074 +ij[1621] = 3 +id[1622] = "2118-09-25T11:17:59" +ik[1622] = -1.996 +il[1622] = 179 +im[1622] = 0.0764 +ij[1622] = 2 +id[1623] = "2118-11-27T22:16:38" +ik[1623] = 0 +il[1623] = -89 +im[1623] = 0.173 +ij[1623] = 13 +id[1624] = "2118-12-21T07:14:13" +ik[1624] = 1.422 +il[1624] = 3 +im[1624] = 0.2431 +ij[1624] = 28.2 +id[1625] = "2119-01-05T18:27:51" +ik[1625] = 3.7 +il[1625] = -31 +im[1625] = 0.224 +ij[1625] = 11 +id[1626] = "2119-02-13T21:19:14" +ik[1626] = 77.96 +il[1626] = 102 +im[1626] = 0.1845 +ij[1626] = 7.1659 +id[1627] = "2119-04-10T20:05:06" +ik[1627] = -1.564 +il[1627] = -80 +im[1627] = 0.1137 +ij[1627] = 4 +id[1628] = "2119-04-13T03:35:42" +ik[1628] = 37.021 +il[1628] = -170 +im[1628] = 0.0931 +ij[1628] = 1 +id[1629] = "2119-04-20T00:53:09" +ik[1629] = 143.11 +il[1629] = -64 +im[1629] = 0.0461 +ij[1629] = 14 +id[1630] = "2119-06-20T13:15:48" +ik[1630] = 31.547 +il[1630] = -23 +im[1630] = 0.0712 +ij[1630] = 9 +id[1631] = "2119-06-29T07:14:23" +ik[1631] = 5.593 +il[1631] = 152 +im[1631] = 0.0351 +ij[1631] = 28.2 +id[1632] = "2119-08-08T12:33:18" +ik[1632] = 26.038 +il[1632] = 100 +im[1632] = 0.0215 +ij[1632] = 16 +id[1633] = "2119-09-23T21:35:33" +ik[1633] = 1.916 +il[1633] = 54 +im[1633] = 0.0334 +ij[1633] = 28.1 +id[1634] = "2119-10-10T13:24:48" +ik[1634] = 1.603 +il[1634] = -21 +im[1634] = 0.0484 +ij[1634] = 28.1 +id[1635] = "2119-12-16T21:11:56" +ik[1635] = 0 +il[1635] = 180 +im[1635] = 0.0054 +ij[1635] = 17 +id[1636] = "2119-12-22T07:56:45" +ik[1636] = 0.7 +il[1636] = 72 +im[1636] = 0.053 +ij[1636] = 12 +id[1637] = "2120-03-02T03:56:51" +ik[1637] = 0.136 +il[1637] = -94 +im[1637] = 0.0456 +ij[1637] = 28.2 +id[1638] = "2120-03-11T00:50:04" +ik[1638] = 0.65 +il[1638] = 32 +im[1638] = 0.0331 +ij[1638] = 27.5 +id[1639] = "2120-03-19T23:38:46" +ik[1639] = 1.211 +il[1639] = 147 +im[1639] = 0.0623 +ij[1639] = 28.1 +id[1640] = "2120-04-09T21:08:41" +ik[1640] = -25.613 +il[1640] = 25 +im[1640] = 0.0265 +ij[1640] = 15 +id[1641] = "2120-05-19T15:56:10" +ik[1641] = 2.973 +il[1641] = 135 +im[1641] = 0.0594 +ij[1641] = 27.6 +id[1642] = "2120-05-23T20:34:45" +ik[1642] = 0.824 +il[1642] = 106 +im[1642] = 0.012 +ij[1642] = 28.8 +id[1643] = "2120-07-21T20:50:43" +ik[1643] = 4.837 +il[1643] = -38 +im[1643] = 0.0113 +ij[1643] = 27.2 +id[1644] = "2120-08-10T01:08:59" +ik[1644] = 12 +il[1644] = 84 +im[1644] = 0.0666 +ij[1644] = 18 +id[1645] = "2120-08-18T08:48:15" +ik[1645] = 34.372 +il[1645] = 51 +im[1645] = 0.0143 +ij[1645] = 8 +id[1646] = "2120-10-25T20:06:00" +ik[1646] = -1.756 +il[1646] = -174 +im[1646] = 0.0897 +ij[1646] = 2 +id[1647] = "2120-10-27T22:54:46" +ik[1647] = 38.954 +il[1647] = 165 +im[1647] = 0.0516 +ij[1647] = 3 +id[1648] = "2120-12-16T06:25:07" +ik[1648] = 21.106 +il[1648] = 169 +im[1648] = 0.1389 +ij[1648] = 16 +id[1649] = "2120-12-31T00:53:37" +ik[1649] = 0 +il[1649] = 35 +im[1649] = 0.1788 +ij[1649] = 13 +id[1650] = "2121-01-05T02:21:21" +ik[1650] = 1.363 +il[1650] = 62 +im[1650] = 0.1021 +ij[1650] = 28.2 +id[1651] = "2121-02-09T11:39:52" +ik[1651] = 4.36 +il[1651] = -118 +im[1651] = 0.2181 +ij[1651] = 11 +id[1652] = "2121-02-25T22:14:00" +ik[1652] = 1.822 +il[1652] = 37 +im[1652] = 0.1602 +ij[1652] = 28.1 +id[1653] = "2121-03-14T05:31:45" +ik[1653] = 5.482 +il[1653] = 71 +im[1653] = 0.0716 +ij[1653] = 28.2 +id[1654] = "2121-03-22T23:56:13" +ik[1654] = 81.96 +il[1654] = -121 +im[1654] = 0.1628 +ij[1654] = 7.1979 +id[1655] = "2121-05-21T23:58:42" +ik[1655] = 37.799 +il[1655] = 93 +im[1655] = 0.0441 +ij[1655] = 1 +id[1656] = "2121-05-25T07:14:27" +ik[1656] = -1.586 +il[1656] = 16 +im[1656] = 0.0302 +ij[1656] = 4 +id[1657] = "2121-05-29T13:23:05" +ik[1657] = 149.52 +il[1657] = -36 +im[1657] = 0.0955 +ij[1657] = 14 +id[1658] = "2121-07-30T07:38:55" +ik[1658] = 32.612 +il[1658] = -72 +im[1658] = 0.0594 +ij[1658] = 9 +id[1659] = "2121-10-24T06:11:08" +ik[1659] = 3.533 +il[1659] = 67 +im[1659] = 0.051 +ij[1659] = 27.4 +id[1660] = "2121-11-07T01:51:45" +ik[1660] = 6.201 +il[1660] = -94 +im[1660] = 0.061 +ij[1660] = 27.1 +id[1661] = "2121-11-27T05:09:43" +ik[1661] = 0 +il[1661] = 54 +im[1661] = 0.0146 +ij[1661] = 17 +id[1662] = "2121-12-08T10:38:47" +ik[1662] = 1.462 +il[1662] = 88 +im[1662] = 0.0395 +ij[1662] = 28.1 +id[1663] = "2122-02-25T12:42:58" +ik[1663] = 1.03 +il[1663] = 133 +im[1663] = 0.0467 +ij[1663] = 12 +id[1664] = "2122-03-21T10:27:36" +ik[1664] = -25.793 +il[1664] = -176 +im[1664] = 0.0166 +ij[1664] = 15 +id[1665] = "2122-06-05T09:04:46" +ik[1665] = 1.781 +il[1665] = -119 +im[1665] = 0.0306 +ij[1665] = 28.1 +id[1666] = "2122-07-01T04:15:27" +ik[1666] = 4.537 +il[1666] = -154 +im[1666] = 0.0118 +ij[1666] = 27.2 +id[1667] = "2122-07-20T18:28:58" +ik[1667] = 12 +il[1667] = -177 +im[1667] = 0.0474 +ij[1667] = 18 +id[1668] = "2122-10-06T07:11:21" +ik[1668] = 32.098 +il[1668] = 24 +im[1668] = 0.0713 +ij[1668] = 8 +id[1669] = "2122-11-28T15:04:41" +ik[1669] = -1.619 +il[1669] = 61 +im[1669] = 0.1038 +ij[1669] = 2 +id[1670] = "2122-12-07T16:35:45" +ik[1670] = 36.673 +il[1670] = 126 +im[1670] = 0.018 +ij[1670] = 3 +id[1671] = "2123-02-02T13:23:33" +ik[1671] = 0 +il[1671] = 3 +im[1671] = 0.0718 +ij[1671] = 13 +id[1672] = "2123-03-15T14:02:59" +ik[1672] = 3.63 +il[1672] = 6 +im[1672] = 0.1459 +ij[1672] = 11 +id[1673] = "2123-04-04T17:23:59" +ik[1673] = 1.283 +il[1673] = -73 +im[1673] = 0.1504 +ij[1673] = 28.2 +id[1674] = "2123-04-26T12:26:09" +ik[1674] = 82.96 +il[1674] = -148 +im[1674] = 0.144 +ij[1674] = 7.21 +id[1675] = "2123-06-23T12:31:22" +ik[1675] = 26.156 +il[1675] = 53 +im[1675] = 0.1113 +ij[1675] = 16 +id[1676] = "2123-06-30T08:19:58" +ik[1676] = 147.79 +il[1676] = -178 +im[1676] = 0.011 +ij[1676] = 14 +id[1677] = "2123-07-02T05:00:48" +ik[1677] = 40.133 +il[1677] = -110 +im[1677] = 0.0468 +ij[1677] = 1 +id[1678] = "2123-07-08T02:11:22" +ik[1678] = -1.741 +il[1678] = -11 +im[1678] = 0.115 +ij[1678] = 4 +id[1679] = "2123-09-19T13:23:48" +ik[1679] = 34.394 +il[1679] = 177 +im[1679] = 0.071 +ij[1679] = 9 +id[1680] = "2123-10-03T14:55:37" +ik[1680] = 3.156 +il[1680] = -69 +im[1680] = 0.0756 +ij[1680] = 27.4 +id[1681] = "2123-11-07T20:14:21" +ik[1681] = 0 +il[1681] = -164 +im[1681] = 0.0176 +ij[1681] = 17 +id[1682] = "2123-12-04T11:39:25" +ik[1682] = 1.1 +il[1682] = -133 +im[1682] = 0.0203 +ij[1682] = 28.2 +id[1683] = "2123-12-25T19:22:05" +ik[1683] = 0.528 +il[1683] = -39 +im[1683] = 0.0584 +ij[1683] = 28.7 +id[1684] = "2124-01-01T14:26:20" +ik[1684] = 0.119 +il[1684] = 102 +im[1684] = 0.0318 +ij[1684] = 27.3 +id[1685] = "2124-01-08T14:36:52" +ik[1685] = 0.262 +il[1685] = 169 +im[1685] = 0.0616 +ij[1685] = 28.6 +id[1686] = "2124-01-30T02:31:02" +ik[1686] = 0.548 +il[1686] = -157 +im[1686] = 0.037 +ij[1686] = 27.5 +id[1687] = "2124-03-01T02:58:49" +ik[1687] = -25.942 +il[1687] = 149 +im[1687] = 0.0108 +ij[1687] = 15 +id[1688] = "2124-05-06T16:11:52" +ik[1688] = 0.07 +il[1688] = -113 +im[1688] = 0.0622 +ij[1688] = 12 +id[1689] = "2124-06-30T22:57:40" +ik[1689] = 12 +il[1689] = 124 +im[1689] = 0.0527 +ij[1689] = 18 +id[1690] = "2124-08-09T03:04:26" +ik[1690] = 3.906 +il[1690] = 86 +im[1690] = 0.0134 +ij[1690] = 28.1 +id[1691] = "2124-09-16T11:34:16" +ik[1691] = 1.212 +il[1691] = -31 +im[1691] = 0.0463 +ij[1691] = 28.2 +id[1692] = "2124-11-11T15:39:48" +ik[1692] = 30.867 +il[1692] = 91 +im[1692] = 0.0692 +ij[1692] = 8 +id[1693] = "2124-11-16T10:27:19" +ik[1693] = 25.087 +il[1693] = -145 +im[1693] = 0.0112 +ij[1693] = 16 +id[1694] = "2125-01-07T03:48:16" +ik[1694] = -1.583 +il[1694] = 94 +im[1694] = 0.102 +ij[1694] = 2 +id[1695] = "2125-01-15T05:02:41" +ik[1695] = 36.231 +il[1695] = 153 +im[1695] = 0.0524 +ij[1695] = 3 +id[1696] = "2125-03-13T08:20:26" +ik[1696] = 0 +il[1696] = -69 +im[1696] = 0.1347 +ij[1696] = 13 +id[1697] = "2125-04-21T00:57:12" +ik[1697] = 1.47 +il[1697] = 28 +im[1697] = 0.152 +ij[1697] = 11 +id[1698] = "2125-05-31T07:23:02" +ik[1698] = 78.96 +il[1698] = 109 +im[1698] = 0.096 +ij[1698] = 7.1778 +id[1699] = "2125-07-28T16:52:54" +ik[1699] = 137.36 +il[1699] = 175 +im[1699] = 0.1171 +ij[1699] = 14 +id[1700] = "2125-08-11T10:07:49" +ik[1700] = -2.015 +il[1700] = 50 +im[1700] = 0.1228 +ij[1700] = 4 +id[1701] = "2125-08-15T22:22:48" +ik[1701] = 43.804 +il[1701] = -89 +im[1701] = 0.123 +ij[1701] = 1 +id[1702] = "2125-09-07T14:23:12" +ik[1702] = 2.484 +il[1702] = -108 +im[1702] = 0.0872 +ij[1702] = 27.4 +id[1703] = "2125-10-16T10:29:02" +ik[1703] = 0 +il[1703] = -28 +im[1703] = 0.0351 +ij[1703] = 17 +id[1704] = "2125-11-17T18:50:58" +ik[1704] = 6.311 +il[1704] = 165 +im[1704] = 0.0378 +ij[1704] = 28.2 +id[1705] = "2125-11-26T05:44:14" +ik[1705] = 35.552 +il[1705] = 85 +im[1705] = 0.0575 +ij[1705] = 9 +id[1706] = "2125-12-10T03:43:01" +ik[1706] = 0.048 +il[1706] = -108 +im[1706] = 0.0715 +ij[1706] = 27.3 +id[1707] = "2125-12-16T00:01:37" +ik[1707] = 0.551 +il[1707] = 5 +im[1707] = 0.0249 +ij[1707] = 28.7 +id[1708] = "2126-01-08T02:11:28" +ik[1708] = 0.549 +il[1708] = -161 +im[1708] = 0.0656 +ij[1708] = 27.5 +id[1709] = "2126-01-22T02:46:27" +ik[1709] = 0.833 +il[1709] = -33 +im[1709] = 0.0637 +ij[1709] = 28.6 +id[1710] = "2126-02-09T05:55:50" +ik[1710] = -26.083 +il[1710] = 96 +im[1710] = 0.0199 +ij[1710] = 15 +id[1711] = "2126-03-19T16:27:42" +ik[1711] = 2.207 +il[1711] = -52 +im[1711] = 0.0652 +ij[1711] = 27.6 +id[1712] = "2126-04-12T13:35:36" +ik[1712] = 1.8 +il[1712] = -130 +im[1712] = 0.0434 +ij[1712] = 28.8 +id[1713] = "2126-06-12T15:03:18" +ik[1713] = 12 +il[1713] = 66 +im[1713] = 0.0594 +ij[1713] = 18 +id[1714] = "2126-06-28T13:49:39" +ik[1714] = 0.81 +il[1714] = -114 +im[1714] = 0.0539 +ij[1714] = 12 +id[1715] = "2126-10-27T17:23:20" +ik[1715] = 25.407 +il[1715] = 113 +im[1715] = 0.0037 +ij[1715] = 16 +id[1716] = "2126-12-15T09:35:48" +ik[1716] = 30.662 +il[1716] = -21 +im[1716] = 0.0709 +ij[1716] = 8 +id[1717] = "2127-02-21T18:14:45" +ik[1717] = 5.226 +il[1717] = 143 +im[1717] = 0.0544 +ij[1717] = 27.4 +id[1718] = "2127-02-28T18:03:49" +ik[1718] = 6.208 +il[1718] = -148 +im[1718] = 0.1022 +ij[1718] = 27.4 +id[1719] = "2127-03-01T15:03:44" +ik[1719] = 37.809 +il[1719] = -95 +im[1719] = 0.0881 +ij[1719] = 3 +id[1720] = "2127-03-05T17:26:57" +ik[1720] = -1.683 +il[1720] = -92 +im[1720] = 0.0211 +ij[1720] = 2 +id[1721] = "2127-03-15T06:28:05" +ik[1721] = 4.656 +il[1721] = 164 +im[1721] = 0.1172 +ij[1721] = 27.1 +id[1722] = "2127-04-29T02:45:42" +ik[1722] = 1.492 +il[1722] = -76 +im[1722] = 0.0463 +ij[1722] = 28.2 +id[1723] = "2127-05-06T16:53:23" +ik[1723] = 0 +il[1723] = 144 +im[1723] = 0.2525 +ij[1723] = 13 +id[1724] = "2127-06-08T10:33:13" +ik[1724] = 2.42 +il[1724] = 179 +im[1724] = 0.1099 +ij[1724] = 11 +id[1725] = "2127-06-26T08:46:52" +ik[1725] = 4.116 +il[1725] = 178 +im[1725] = 0.2315 +ij[1725] = 28.1 +id[1726] = "2127-07-15T15:55:59" +ik[1726] = 69.96 +il[1726] = -101 +im[1726] = 0.2463 +ij[1726] = 7.1183 +id[1727] = "2127-09-01T15:08:47" +ik[1727] = 117.93 +il[1727] = 21 +im[1727] = 0.0608 +ij[1727] = 14 +id[1728] = "2127-09-12T16:55:51" +ik[1728] = -2.325 +il[1728] = 103 +im[1728] = 0.0594 +ij[1728] = 4 +id[1729] = "2127-09-16T18:33:29" +ik[1729] = 0 +il[1729] = 119 +im[1729] = 0.1037 +ij[1729] = 17 +id[1730] = "2127-10-03T11:47:45" +ik[1730] = 46.355 +il[1730] = 25 +im[1730] = 0.1262 +ij[1730] = 1 +id[1731] = "2127-11-14T00:04:46" +ik[1731] = 0.508 +il[1731] = -110 +im[1731] = 0.0916 +ij[1731] = 27.3 +id[1732] = "2127-12-03T13:12:13" +ik[1732] = 0.606 +il[1732] = -116 +im[1732] = 0.1006 +ij[1732] = 28.7 +id[1733] = "2127-12-14T18:11:57" +ik[1733] = 0.662 +il[1733] = -82 +im[1733] = 0.1012 +ij[1733] = 27.5 +id[1734] = "2128-01-18T12:19:48" +ik[1734] = -26.221 +il[1734] = -17 +im[1734] = 0.0701 +ij[1734] = 15 +id[1735] = "2128-02-01T09:49:34" +ik[1735] = 34.198 +il[1735] = 154 +im[1735] = 0.0598 +ij[1735] = 9 +id[1736] = "2128-02-03T06:54:05" +ik[1736] = 1.901 +il[1736] = -144 +im[1736] = 0.0321 +ij[1736] = 28.6 +id[1737] = "2128-02-26T06:54:21" +ik[1737] = 1.934 +il[1737] = 75 +im[1737] = 0.0716 +ij[1737] = 27.6 +id[1738] = "2128-03-28T16:40:14" +ik[1738] = 2.14 +il[1738] = -133 +im[1738] = 0.0624 +ij[1738] = 28.8 +id[1739] = "2128-05-02T00:12:59" +ik[1739] = 3.804 +il[1739] = 88 +im[1739] = 0.007 +ij[1739] = 27.2 +id[1740] = "2128-05-24T04:19:48" +ik[1740] = 12 +il[1740] = -124 +im[1740] = 0.0596 +ij[1740] = 18 +id[1741] = "2128-08-07T19:45:13" +ik[1741] = 1.14 +il[1741] = 9 +im[1741] = 0.0333 +ij[1741] = 12 +id[1742] = "2128-10-08T15:40:16" +ik[1742] = 25.605 +il[1742] = 146 +im[1742] = 0.0219 +ij[1742] = 16 +id[1743] = "2129-01-18T13:46:54" +ik[1743] = 31.476 +il[1743] = 79 +im[1743] = 0.0392 +ij[1743] = 8 +id[1744] = "2129-01-21T02:57:29" +ik[1744] = 4.729 +il[1744] = -93 +im[1744] = 0.0689 +ij[1744] = 27.4 +id[1745] = "2129-02-05T18:16:51" +ik[1745] = 5.061 +il[1745] = -175 +im[1745] = 0.0883 +ij[1745] = 27.1 +id[1746] = "2129-02-26T07:13:27" +ik[1746] = 23 +il[1746] = -174 +im[1746] = 0.0241 +ij[1746] = 17 +id[1747] = "2129-05-02T15:48:40" +ik[1747] = 42.303 +il[1747] = -45 +im[1747] = 0.1528 +ij[1747] = 3 +id[1748] = "2129-05-12T19:12:24" +ik[1748] = 0.585 +il[1748] = 0 +im[1748] = 0.0942 +ij[1748] = 27.3 +id[1749] = "2129-05-29T17:26:59" +ik[1749] = -2.091 +il[1749] = -173 +im[1749] = 0.1746 +ij[1749] = 2 +id[1750] = "2129-06-14T21:02:17" +ik[1750] = 2.742 +il[1750] = -73 +im[1750] = 0.2401 +ij[1750] = 28.7 +id[1751] = "2129-07-05T07:56:24" +ik[1751] = 4.614 +il[1751] = -42 +im[1751] = 0.0189 +ij[1751] = 27.5 +id[1752] = "2129-07-05T08:46:28" +ik[1752] = 4.614 +il[1752] = -54 +im[1752] = 0.0184 +ij[1752] = 27.5 +id[1753] = "2129-07-19T15:09:18" +ik[1753] = 0 +il[1753] = -13 +im[1753] = 0.0279 +ij[1753] = 13 +id[1754] = "2129-07-25T17:12:26" +ik[1754] = 4.755 +il[1754] = 15 +im[1754] = 0.3399 +ij[1754] = 28.1 +id[1755] = "2129-08-01T08:35:35" +ik[1755] = 6.092 +il[1755] = -152 +im[1755] = 0.0548 +ij[1755] = 27.5 +id[1756] = "2129-08-19T09:27:26" +ik[1756] = 6.64 +il[1756] = -2 +im[1756] = 0.2998 +ij[1756] = 11 +id[1757] = "2129-09-05T16:15:50" +ik[1757] = 5.663 +il[1757] = -105 +im[1757] = 0.3562 +ij[1757] = 28.1 +id[1758] = "2129-09-07T15:05:05" +ik[1758] = 4.2 +il[1758] = -68 +im[1758] = 0.2703 +ij[1758] = 28.2 +id[1759] = "2129-09-22T14:11:53" +ik[1759] = 64.96 +il[1759] = 92 +im[1759] = 0.1916 +ij[1759] = 7.102 +id[1760] = "2129-10-30T12:57:14" +ik[1760] = 2.006 +il[1760] = 122 +im[1760] = 0.2185 +ij[1760] = 27.5 +id[1761] = "2129-10-30T22:38:43" +ik[1761] = 103.31 +il[1761] = -19 +im[1761] = 0.213 +ij[1761] = 14 +id[1762] = "2129-10-31T17:37:02" +ik[1762] = 1.62 +il[1762] = 64 +im[1762] = 0.1977 +ij[1762] = 28.7 +id[1763] = "2129-11-10T07:46:32" +ik[1763] = -2.224 +il[1763] = -55 +im[1763] = 0.1587 +ij[1763] = 4 +id[1764] = "2129-12-06T12:19:43" +ik[1764] = 42.986 +il[1764] = 130 +im[1764] = 0.0608 +ij[1764] = 1 +id[1765] = "2129-12-20T16:29:39" +ik[1765] = -26.245 +il[1765] = -157 +im[1765] = 0.068 +ij[1765] = 15 +id[1766] = "2130-01-30T06:43:22" +ik[1766] = 1.568 +il[1766] = 17 +im[1766] = 0.0241 +ij[1766] = 27.6 +id[1767] = "2130-02-11T20:31:38" +ik[1767] = 2.793 +il[1767] = -71 +im[1767] = 0.0388 +ij[1767] = 28.6 +id[1768] = "2130-03-12T12:29:42" +ik[1768] = 2.57 +il[1768] = -40 +im[1768] = 0.0341 +ij[1768] = 28.8 +id[1769] = "2130-03-22T00:32:14" +ik[1769] = 32.439 +il[1769] = -131 +im[1769] = 0.0838 +ij[1769] = 9 +id[1770] = "2130-04-10T20:08:46" +ik[1770] = 3.468 +il[1770] = 121 +im[1770] = 0.0215 +ij[1770] = 27.2 +id[1771] = "2130-05-04T20:44:49" +ik[1771] = 12 +il[1771] = -21 +im[1771] = 0.0628 +ij[1771] = 18 +id[1772] = "2130-05-18T22:19:33" +ik[1772] = 0.869 +il[1772] = 90 +im[1772] = 0.067 +ij[1772] = 28.2 +id[1773] = "2130-06-30T23:08:15" +ik[1773] = 0.011 +il[1773] = 124 +im[1773] = 0.0562 +ij[1773] = 28.1 +id[1774] = "2130-09-13T15:30:06" +ik[1774] = 0.99 +il[1774] = -113 +im[1774] = 0.0443 +ij[1774] = 12 +id[1775] = "2130-09-21T04:33:05" +ik[1775] = 25.753 +il[1775] = -36 +im[1775] = 0.0413 +ij[1775] = 16 +id[1776] = "2130-12-05T19:10:09" +ik[1776] = 5.486 +il[1776] = 118 +im[1776] = 0.0602 +ij[1776] = 28.1 +id[1777] = "2130-12-09T03:50:54" +ik[1777] = 0.471 +il[1777] = 29 +im[1777] = 0.0441 +ij[1777] = 28.5 +id[1778] = "2130-12-30T05:47:52" +ik[1778] = 4.404 +il[1778] = -158 +im[1778] = 0.0355 +ij[1778] = 27.4 +id[1779] = "2131-01-13T18:08:55" +ik[1779] = 5.372 +il[1779] = 146 +im[1779] = 0.0475 +ij[1779] = 27.1 +id[1780] = "2131-01-16T14:03:21" +ik[1780] = 1.995 +il[1780] = -118 +im[1780] = 0.0695 +ij[1780] = 28.2 +id[1781] = "2131-02-02T04:48:04" +ik[1781] = 0 +il[1781] = 178 +im[1781] = 0.068 +ij[1781] = 17 +id[1782] = "2131-03-02T12:54:00" +ik[1782] = 33.388 +il[1782] = -36 +im[1782] = 0.0764 +ij[1782] = 8 +id[1783] = "2131-04-05T15:51:01" +ik[1783] = 0.168 +il[1783] = -117 +im[1783] = 0.0202 +ij[1783] = 27.3 +id[1784] = "2131-05-06T23:52:49" +ik[1784] = 1.232 +il[1784] = 60 +im[1784] = 0.0325 +ij[1784] = 27.5 +id[1785] = "2131-05-09T12:11:32" +ik[1785] = 0.907 +il[1785] = -100 +im[1785] = 0.0835 +ij[1785] = 28.7 +id[1786] = "2131-06-04T09:30:30" +ik[1786] = -24.448 +il[1786] = -173 +im[1786] = 0.0231 +ij[1786] = 15 +id[1787] = "2131-07-09T08:49:37" +ik[1787] = 47.277 +il[1787] = 175 +im[1787] = 0.1619 +ij[1787] = 3 +id[1788] = "2131-07-26T16:04:20" +ik[1788] = 5.064 +il[1788] = -126 +im[1788] = 0.1497 +ij[1788] = 27.6 +id[1789] = "2131-08-07T16:26:34" +ik[1789] = -2.384 +il[1789] = -14 +im[1789] = 0.197 +ij[1789] = 2 +id[1790] = "2131-08-26T12:41:12" +ik[1790] = 0.864 +il[1790] = -133 +im[1790] = 0.1045 +ij[1790] = 28.6 +id[1791] = "2131-09-26T03:12:40" +ik[1791] = 5.441 +il[1791] = -51 +im[1791] = 0.0352 +ij[1791] = 28.8 +id[1792] = "2131-09-26T22:39:14" +ik[1792] = 0 +il[1792] = 26 +im[1792] = 0.0852 +ij[1792] = 13 +id[1793] = "2131-10-14T13:01:35" +ik[1793] = 3.388 +il[1793] = -19 +im[1793] = 0.3189 +ij[1793] = 28.1 +id[1794] = "2131-10-14T16:34:45" +ik[1794] = 1.716 +il[1794] = -69 +im[1794] = 0.3213 +ij[1794] = 28.2 +id[1795] = "2131-10-14T20:51:38" +ik[1795] = 0.065 +il[1795] = -131 +im[1795] = 0.3237 +ij[1795] = 28.6 +id[1796] = "2131-11-02T10:49:13" +ik[1796] = 0.94 +il[1796] = -176 +im[1796] = 0.1883 +ij[1796] = 11 +id[1797] = "2131-11-16T23:57:19" +ik[1797] = 3.12 +il[1797] = -32 +im[1797] = 0.0728 +ij[1797] = 28.1 +id[1798] = "2131-12-03T21:41:50" +ik[1798] = 67.96 +il[1798] = 153 +im[1798] = 0.1176 +ij[1798] = 7.1305 +id[1799] = "2132-01-23T12:55:33" +ik[1799] = 118.59 +il[1799] = 44 +im[1799] = 0.0965 +ij[1799] = 14 +id[1800] = "2132-01-26T01:32:21" +ik[1800] = -1.799 +il[1800] = -122 +im[1800] = 0.022 +ij[1800] = 4 +id[1801] = "2132-02-09T05:02:41" +ik[1801] = 38.823 +il[1801] = -41 +im[1801] = 0.0143 +ij[1801] = 1 +id[1802] = "2132-02-16T07:54:03" +ik[1802] = 3.274 +il[1802] = -17 +im[1802] = 0.1182 +ij[1802] = 28.8 +id[1803] = "2132-02-16T21:21:04" +ik[1803] = 3.48 +il[1803] = 147 +im[1803] = 0.1186 +ij[1803] = 28.6 +id[1804] = "2132-03-14T10:53:20" +ik[1804] = 2.901 +il[1804] = -166 +im[1804] = 0.0872 +ij[1804] = 27.2 +id[1805] = "2132-04-11T23:08:25" +ik[1805] = 12 +il[1805] = -81 +im[1805] = 0.072 +ij[1805] = 18 +id[1806] = "2132-04-30T00:15:20" +ik[1806] = 31.456 +il[1806] = 72 +im[1806] = 0.0709 +ij[1806] = 9 +id[1807] = "2132-09-02T18:20:00" +ik[1807] = 25.878 +il[1807] = -71 +im[1807] = 0.0522 +ij[1807] = 16 +id[1808] = "2132-10-19T22:17:13" +ik[1808] = 0.46 +il[1808] = -26 +im[1808] = 0.0503 +ij[1808] = 12 +id[1809] = "2132-12-23T18:19:17" +ik[1809] = 5.62 +il[1809] = 135 +im[1809] = 0.0338 +ij[1809] = 27.1 +id[1810] = "2133-01-12T02:03:13" +ik[1810] = 0 +il[1810] = -158 +im[1810] = 0.0646 +ij[1810] = 17 +id[1811] = "2133-02-21T18:33:30" +ik[1811] = 0.202 +il[1811] = -10 +im[1811] = 0.0627 +ij[1811] = 28.5 +id[1812] = "2133-03-11T23:20:46" +ik[1812] = 0.262 +il[1812] = 91 +im[1812] = 0.07 +ij[1812] = 27.3 +id[1813] = "2133-04-10T09:42:20" +ik[1813] = 0.843 +il[1813] = -144 +im[1813] = 0.0716 +ij[1813] = 27.5 +id[1814] = "2133-04-25T15:50:14" +ik[1814] = 0.573 +il[1814] = -89 +im[1814] = 0.0746 +ij[1814] = 28.7 +id[1815] = "2133-05-04T05:50:00" +ik[1815] = 35.903 +il[1815] = 143 +im[1815] = 0.0574 +ij[1815] = 8 +id[1816] = "2133-05-09T16:09:23" +ik[1816] = -25.2 +il[1816] = 41 +im[1816] = 0.0737 +ij[1816] = 15 +id[1817] = "2133-06-21T03:49:05" +ik[1817] = 3.649 +il[1817] = -82 +im[1817] = 0.103 +ij[1817] = 27.6 +id[1818] = "2133-08-04T06:27:34" +ik[1818] = 0.403 +il[1818] = -49 +im[1818] = 0.0966 +ij[1818] = 28.8 +id[1819] = "2133-08-13T17:09:00" +ik[1819] = 0.598 +il[1819] = -117 +im[1819] = 0.1048 +ij[1819] = 28.6 +id[1820] = "2133-08-24T08:18:40" +ik[1820] = 44.976 +il[1820] = 120 +im[1820] = 0.0041 +ij[1820] = 3 +id[1821] = "2133-08-28T18:52:57" +ik[1821] = 5.539 +il[1821] = 5 +im[1821] = 0.1099 +ij[1821] = 27.2 +id[1822] = "2133-09-13T05:49:15" +ik[1822] = -2.116 +il[1822] = -7 +im[1822] = 0.1449 +ij[1822] = 2 +id[1823] = "2133-09-19T16:28:29" +ik[1823] = 11 +il[1823] = -104 +im[1823] = 0.0656 +ij[1823] = 18 +id[1824] = "2133-11-12T12:56:03" +ik[1824] = 0 +il[1824] = 114 +im[1824] = 0.1704 +ij[1824] = 13 +id[1825] = "2133-11-21T17:25:01" +ik[1825] = 5.635 +il[1825] = 136 +im[1825] = 0.2258 +ij[1825] = 28.2 +id[1826] = "2133-12-17T20:55:17" +ik[1826] = 12 +il[1826] = -34 +im[1826] = 0.2336 +ij[1826] = 17 +id[1827] = "2133-12-21T05:12:20" +ik[1827] = 2.93 +il[1827] = -134 +im[1827] = 0.2223 +ij[1827] = 11 +id[1828] = "2134-01-26T13:59:23" +ik[1828] = 3.236 +il[1828] = -111 +im[1828] = 0.178 +ij[1828] = 28.2 +id[1829] = "2134-01-27T12:59:39" +ik[1829] = 76 +il[1829] = -88 +im[1829] = 0.1933 +ij[1829] = 7.1537 +id[1830] = "2134-02-05T02:09:17" +ik[1830] = 5.283 +il[1830] = 155 +im[1830] = 0.0075 +ij[1830] = 28.6 +id[1831] = "2134-03-09T19:04:03" +ik[1831] = 12 +il[1831] = -150 +im[1831] = 0.1121 +ij[1831] = 18 +id[1832] = "2134-03-22T22:23:55" +ik[1832] = -1.594 +il[1832] = -76 +im[1832] = 0.1009 +ij[1832] = 4 +id[1833] = "2134-03-27T21:55:35" +ik[1833] = 37.152 +il[1833] = -22 +im[1833] = 0.1058 +ij[1833] = 1 +id[1834] = "2134-03-31T02:20:31" +ik[1834] = 138.56 +il[1834] = -58 +im[1834] = 0.0498 +ij[1834] = 14 +id[1835] = "2134-06-05T23:34:00" +ik[1835] = 31.35 +il[1835] = -102 +im[1835] = 0.0706 +ij[1835] = 9 +id[1836] = "2134-08-15T19:55:52" +ik[1836] = 25.995 +il[1836] = -86 +im[1836] = 0.0605 +ij[1836] = 16 +id[1837] = "2134-08-31T03:16:20" +ik[1837] = 2.229 +il[1837] = -48 +im[1837] = 0.0584 +ij[1837] = 28.1 +id[1838] = "2134-12-02T02:24:20" +ik[1838] = 0.36 +il[1838] = 170 +im[1838] = 0.0056 +ij[1838] = 12 +id[1839] = "2134-12-24T05:08:19" +ik[1839] = 0 +il[1839] = 161 +im[1839] = 0.0613 +ij[1839] = 17 +id[1840] = "2135-02-14T16:00:11" +ik[1840] = 0.359 +il[1840] = 138 +im[1840] = 0.041 +ij[1840] = 28.1 +id[1841] = "2135-02-19T05:27:30" +ik[1841] = 0.262 +il[1841] = -17 +im[1841] = 0.0672 +ij[1841] = 27.3 +id[1842] = "2135-03-20T01:27:51" +ik[1842] = 0.688 +il[1842] = -40 +im[1842] = 0.0693 +ij[1842] = 27.5 +id[1843] = "2135-04-16T20:39:50" +ik[1843] = 0.353 +il[1843] = -54 +im[1843] = 0.0678 +ij[1843] = 28.7 +id[1844] = "2135-04-18T17:33:15" +ik[1844] = -25.525 +il[1844] = 10 +im[1844] = 0.0714 +ij[1844] = 15 +id[1845] = "2135-04-22T06:59:09" +ik[1845] = 0.229 +il[1845] = -157 +im[1845] = 0.0483 +ij[1845] = 28.5 +id[1846] = "2135-05-28T23:19:51" +ik[1846] = 3.115 +il[1846] = -43 +im[1846] = 0.0644 +ij[1846] = 27.6 +id[1847] = "2135-07-16T05:00:07" +ik[1847] = 1.034 +il[1847] = -15 +im[1847] = 0.0706 +ij[1847] = 28.8 +id[1848] = "2135-07-24T22:18:27" +ik[1848] = 35.389 +il[1848] = 171 +im[1848] = 0.066 +ij[1848] = 8 +id[1849] = "2135-07-31T15:53:48" +ik[1849] = 4.985 +il[1849] = -27 +im[1849] = 0.0688 +ij[1849] = 27.2 +id[1850] = "2135-08-19T20:46:10" +ik[1850] = 11 +il[1850] = 88 +im[1850] = 0.0265 +ij[1850] = 18 +id[1851] = "2135-08-21T04:57:52" +ik[1851] = 0.843 +il[1851] = -22 +im[1851] = 0.0504 +ij[1851] = 28.6 +id[1852] = "2135-10-11T13:10:33" +ik[1852] = 40.375 +il[1852] = -5 +im[1852] = 0.0698 +ij[1852] = 3 +id[1853] = "2135-10-14T12:32:50" +ik[1853] = -1.837 +il[1853] = 33 +im[1853] = 0.0088 +ij[1853] = 2 +id[1854] = "2135-12-19T02:20:59" +ik[1854] = 0 +il[1854] = 101 +im[1854] = 0.1785 +ij[1854] = 13 +id[1855] = "2136-01-28T01:55:54" +ik[1855] = 4.3 +il[1855] = 112 +im[1855] = 0.1975 +ij[1855] = 11 +id[1856] = "2136-02-12T02:26:32" +ik[1856] = 2.748 +il[1856] = 51 +im[1856] = 0.1649 +ij[1856] = 28.2 +id[1857] = "2136-03-09T01:23:35" +ik[1857] = 80.96 +il[1857] = -59 +im[1857] = 0.1599 +ij[1857] = 7.1862 +id[1858] = "2136-05-06T14:34:39" +ik[1858] = 37.309 +il[1858] = -60 +im[1858] = 0.0544 +ij[1858] = 1 +id[1859] = "2136-05-07T21:30:37" +ik[1859] = -1.561 +il[1859] = -151 +im[1859] = 0.0262 +ij[1859] = 4 +id[1860] = "2136-05-15T06:40:27" +ik[1860] = 148.18 +il[1860] = 142 +im[1860] = 0.0945 +ij[1860] = 14 +id[1861] = "2136-07-13T16:04:13" +ik[1861] = 32.091 +il[1861] = -146 +im[1861] = 0.0621 +ij[1861] = 9 +id[1862] = "2136-07-26T14:15:43" +ik[1862] = 26.109 +il[1862] = 6 +im[1862] = 0.076 +ij[1862] = 16 +id[1863] = "2136-09-18T13:52:01" +ik[1863] = 0.229 +il[1863] = 176 +im[1863] = 0.0563 +ij[1863] = 28.2 +id[1864] = "2136-10-31T21:23:05" +ik[1864] = 3.648 +il[1864] = 125 +im[1864] = 0.0555 +ij[1864] = 27.4 +id[1865] = "2136-11-06T02:35:15" +ik[1865] = 1.879 +il[1865] = 98 +im[1865] = 0.0504 +ij[1865] = 28.1 +id[1866] = "2136-11-14T15:09:15" +ik[1866] = 6.093 +il[1866] = -7 +im[1866] = 0.0454 +ij[1866] = 27.1 +id[1867] = "2136-12-04T14:08:56" +ik[1867] = 0 +il[1867] = -147 +im[1867] = 0.0542 +ij[1867] = 17 +id[1868] = "2137-01-28T04:58:07" +ik[1868] = 1.05 +il[1868] = 178 +im[1868] = 0.0629 +ij[1868] = 12 +id[1869] = "2137-03-29T01:13:09" +ik[1869] = -25.729 +il[1869] = -111 +im[1869] = 0.0659 +ij[1869] = 15 +id[1870] = "2137-05-07T03:59:14" +ik[1870] = 1.748 +il[1870] = -123 +im[1870] = 0.0396 +ij[1870] = 28.1 +id[1871] = "2137-05-07T07:05:39" +ik[1871] = 2.789 +il[1871] = -168 +im[1871] = 0.041 +ij[1871] = 27.6 +id[1872] = "2137-06-19T23:41:44" +ik[1872] = 0.455 +il[1872] = 16 +im[1872] = 0.0506 +ij[1872] = 28.5 +id[1873] = "2137-06-30T13:07:45" +ik[1873] = 1.396 +il[1873] = -82 +im[1873] = 0.0092 +ij[1873] = 28.8 +id[1874] = "2137-07-09T02:22:29" +ik[1874] = 4.644 +il[1874] = 163 +im[1874] = 0.0622 +ij[1874] = 27.2 +id[1875] = "2137-07-11T07:09:55" +ik[1875] = 2.263 +il[1875] = 113 +im[1875] = 0.0456 +ij[1875] = 28.2 +id[1876] = "2137-07-28T11:35:14" +ik[1876] = 12 +il[1876] = -146 +im[1876] = 0.0212 +ij[1876] = 18 +id[1877] = "2137-09-01T16:54:30" +ik[1877] = 0.62 +il[1877] = 116 +im[1877] = 0.0704 +ij[1877] = 28.6 +id[1878] = "2137-09-19T07:09:06" +ik[1878] = 32.875 +il[1878] = 73 +im[1878] = 0.0757 +ij[1878] = 8 +id[1879] = "2137-11-15T00:23:57" +ik[1879] = -1.66 +il[1879] = 3 +im[1879] = 0.0954 +ij[1879] = 2 +id[1880] = "2137-11-22T07:54:37" +ik[1880] = 37.341 +il[1880] = -39 +im[1880] = 0.0419 +ij[1880] = 3 +id[1881] = "2138-01-20T06:40:55" +ik[1881] = 0 +il[1881] = -170 +im[1881] = 0.1603 +ij[1881] = 13 +id[1882] = "2138-03-02T05:35:28" +ik[1882] = 4.06 +il[1882] = -141 +im[1882] = 0.1915 +ij[1882] = 11 +id[1883] = "2138-03-21T10:04:04" +ik[1883] = 2.357 +il[1883] = 126 +im[1883] = 0.1167 +ij[1883] = 28.1 +id[1884] = "2138-04-13T05:43:31" +ik[1884] = 82.96 +il[1884] = 39 +im[1884] = 0.1777 +ij[1884] = 7.2097 +id[1885] = "2138-06-15T17:39:33" +ik[1885] = 39.032 +il[1885] = 113 +im[1885] = 0.0103 +ij[1885] = 1 +id[1886] = "2138-06-18T15:08:25" +ik[1886] = 149.35 +il[1886] = 179 +im[1886] = 0.0689 +ij[1886] = 14 +id[1887] = "2138-06-21T09:27:58" +ik[1887] = -1.665 +il[1887] = -69 +im[1887] = 0.0997 +ij[1887] = 4 +id[1888] = "2138-07-04T02:33:57" +ik[1888] = 26.19 +il[1888] = 158 +im[1888] = 0.0943 +ij[1888] = 16 +id[1889] = "2138-08-28T18:11:20" +ik[1889] = 33.645 +il[1889] = 104 +im[1889] = 0.0628 +ij[1889] = 9 +id[1890] = "2138-08-31T23:56:32" +ik[1890] = 5.995 +il[1890] = 50 +im[1890] = 0.0841 +ij[1890] = 28.2 +id[1891] = "2138-10-11T23:42:37" +ik[1891] = 3.322 +il[1891] = 93 +im[1891] = 0.0544 +ij[1891] = 27.4 +id[1892] = "2138-10-25T22:18:12" +ik[1892] = 6.399 +il[1892] = -110 +im[1892] = 0.0589 +ij[1892] = 27.1 +id[1893] = "2138-11-15T13:55:14" +ik[1893] = 0 +il[1893] = -142 +im[1893] = 0.0517 +ij[1893] = 17 +id[1894] = "2139-01-09T13:12:45" +ik[1894] = 0.16 +il[1894] = 49 +im[1894] = 0.0642 +ij[1894] = 27.3 +id[1895] = "2139-03-09T17:26:20" +ik[1895] = -25.887 +il[1895] = -135 +im[1895] = 0.0612 +ij[1895] = 15 +id[1896] = "2139-04-11T19:47:01" +ik[1896] = 0.52 +il[1896] = 157 +im[1896] = 0.0314 +ij[1896] = 12 +id[1897] = "2139-07-09T06:09:46" +ik[1897] = 12 +il[1897] = -56 +im[1897] = 0.0147 +ij[1897] = 18 +id[1898] = "2139-07-11T10:17:18" +ik[1898] = 1.923 +il[1898] = -101 +im[1898] = 0.0148 +ij[1898] = 28.1 +id[1899] = "2139-09-03T12:21:20" +ik[1899] = 0.169 +il[1899] = 36 +im[1899] = 0.0336 +ij[1899] = 28.5 +id[1900] = "2139-09-17T12:27:04" +ik[1900] = 0.134 +il[1900] = 170 +im[1900] = 0.0247 +ij[1900] = 28.6 +id[1901] = "2139-10-29T21:19:20" +ik[1901] = 31.221 +il[1901] = 87 +im[1901] = 0.0516 +ij[1901] = 8 +id[1902] = "2139-12-22T02:58:38" +ik[1902] = -1.584 +il[1902] = 156 +im[1902] = 0.1022 +ij[1902] = 2 +id[1903] = "2139-12-31T14:11:36" +ik[1903] = 36.186 +il[1903] = 79 +im[1903] = 0.0673 +ij[1903] = 3 +id[1904] = "2140-02-25T15:08:53" +ik[1904] = 0 +il[1904] = -116 +im[1904] = 0.1268 +ij[1904] = 13 +id[1905] = "2140-02-27T04:40:22" +ik[1905] = 2.39 +il[1905] = 56 +im[1905] = 0.1657 +ij[1905] = 28.2 +id[1906] = "2140-04-05T17:07:01" +ik[1906] = 2.5 +il[1906] = -144 +im[1906] = 0.1458 +ij[1906] = 11 +id[1907] = "2140-05-16T16:35:46" +ik[1907] = 81.06 +il[1907] = 41 +im[1907] = 0.1421 +ij[1907] = 7.1959 +id[1908] = "2140-06-08T05:06:05" +ik[1908] = 25.573 +il[1908] = 73 +im[1908] = 0.0669 +ij[1908] = 16 +id[1909] = "2140-07-17T04:57:31" +ik[1909] = 142.58 +il[1909] = 94 +im[1909] = 0.1041 +ij[1909] = 14 +id[1910] = "2140-07-28T15:12:31" +ik[1910] = 42.27 +il[1910] = 52 +im[1910] = 0.1207 +ij[1910] = 1 +id[1911] = "2140-07-30T04:56:52" +ik[1911] = -1.895 +il[1911] = -139 +im[1911] = 0.1171 +ij[1911] = 4 +id[1912] = "2140-09-18T09:11:07" +ik[1912] = 2.808 +il[1912] = -73 +im[1912] = 0.0221 +ij[1912] = 27.4 +id[1913] = "2140-10-25T05:58:57" +ik[1913] = 0 +il[1913] = -23 +im[1913] = 0.0747 +ij[1913] = 17 +id[1914] = "2140-10-28T15:45:06" +ik[1914] = 35.364 +il[1914] = -136 +im[1914] = 0.0251 +ij[1914] = 9 +id[1915] = "2140-12-18T20:47:32" +ik[1915] = 0.035 +il[1915] = -68 +im[1915] = 0.0677 +ij[1915] = 27.3 +id[1916] = "2141-01-16T13:22:22" +ik[1916] = 0.54 +il[1916] = -34 +im[1916] = 0.0625 +ij[1916] = 27.5 +id[1917] = "2141-02-17T04:05:30" +ik[1917] = -26.03 +il[1917] = 55 +im[1917] = 0.0628 +ij[1917] = 15 +id[1918] = "2141-03-25T08:10:19" +ik[1918] = 0.333 +il[1918] = -7 +im[1918] = 0.0152 +ij[1918] = 28.7 +id[1919] = "2141-03-27T15:03:37" +ik[1919] = 2.3 +il[1919] = -89 +im[1919] = 0.041 +ij[1919] = 27.6 +id[1920] = "2141-06-09T21:32:48" +ik[1920] = 0.53 +il[1920] = 171 +im[1920] = 0.0534 +ij[1920] = 12 +id[1921] = "2141-06-19T19:17:13" +ik[1921] = 12 +il[1921] = 104 +im[1921] = 0.0064 +ij[1921] = 18 +id[1922] = "2141-10-05T01:33:43" +ik[1922] = 0.476 +il[1922] = -15 +im[1922] = 0.0654 +ij[1922] = 28.6 +id[1923] = "2141-11-04T03:59:55" +ik[1923] = 25.304 +il[1923] = -120 +im[1923] = 0.0684 +ij[1923] = 16 +id[1924] = "2141-12-02T09:21:33" +ik[1924] = 30.623 +il[1924] = 72 +im[1924] = 0.0785 +ij[1924] = 8 +id[1925] = "2141-12-08T03:15:58" +ik[1925] = 0.065 +il[1925] = -142 +im[1925] = 0.0172 +ij[1925] = 28.5 +id[1926] = "2142-02-08T05:13:46" +ik[1926] = -1.621 +il[1926] = 65 +im[1926] = 0.0937 +ij[1926] = 2 +id[1927] = "2142-02-10T15:22:36" +ik[1927] = 36.91 +il[1927] = -64 +im[1927] = 0.1102 +ij[1927] = 3 +id[1928] = "2142-03-20T20:13:41" +ik[1928] = 5.431 +il[1928] = -133 +im[1928] = 0.1212 +ij[1928] = 27.4 +id[1929] = "2142-04-14T04:57:59" +ik[1929] = 0 +il[1929] = -33 +im[1929] = 0.0177 +ij[1929] = 13 +id[1930] = "2142-05-18T12:40:22" +ik[1930] = 0.45 +il[1930] = 154 +im[1930] = 0.2891 +ij[1930] = 11 +id[1931] = "2142-06-03T02:35:34" +ik[1931] = 2.423 +il[1931] = -102 +im[1931] = 0.1924 +ij[1931] = 28.1 +id[1932] = "2142-06-08T15:31:00" +ik[1932] = 2.31 +il[1932] = 116 +im[1932] = 0.1369 +ij[1932] = 28.2 +id[1933] = "2142-06-17T08:25:49" +ik[1933] = 2.634 +il[1933] = -53 +im[1933] = 0.1911 +ij[1933] = 28.5 +id[1934] = "2142-06-26T04:00:35" +ik[1934] = 72.96 +il[1934] = 100 +im[1934] = 0.2309 +ij[1934] = 7.1414 +id[1935] = "2142-08-04T21:38:13" +ik[1935] = 3.129 +il[1935] = -137 +im[1935] = 0.1608 +ij[1935] = 28.5 +id[1936] = "2142-08-14T01:46:23" +ik[1936] = 1.582 +il[1936] = -109 +im[1936] = 0.0529 +ij[1936] = 27.4 +id[1937] = "2142-08-17T13:31:20" +ik[1937] = 125.36 +il[1937] = 109 +im[1937] = 0.0787 +ij[1937] = 14 +id[1938] = "2142-08-29T21:12:00" +ik[1938] = -2.215 +il[1938] = 114 +im[1938] = 0.0441 +ij[1938] = 4 +id[1939] = "2142-09-14T01:40:30" +ik[1939] = 45.847 +il[1939] = -164 +im[1939] = 0.0399 +ij[1939] = 1 +id[1940] = "2142-09-30T14:28:40" +ik[1940] = 0 +il[1940] = 167 +im[1940] = 0.1043 +ij[1940] = 17 +id[1941] = "2142-11-25T06:26:09" +ik[1941] = 0.255 +il[1941] = 116 +im[1941] = 0.0386 +ij[1941] = 27.3 +id[1942] = "2142-12-25T00:41:02" +ik[1942] = 0.588 +il[1942] = 133 +im[1942] = 0.0429 +ij[1942] = 27.5 +id[1943] = "2143-01-08T09:41:06" +ik[1943] = 34.93 +il[1943] = 138 +im[1943] = 0.0496 +ij[1943] = 9 +id[1944] = "2143-01-27T10:02:26" +ik[1944] = -26.17 +il[1944] = -43 +im[1944] = 0.076 +ij[1944] = 15 +id[1945] = "2143-03-06T23:35:41" +ik[1945] = 2.047 +il[1945] = 123 +im[1945] = 0.0379 +ij[1945] = 27.6 +id[1946] = "2143-03-08T04:21:23" +ik[1946] = 0.394 +il[1946] = 63 +im[1946] = 0.0524 +ij[1946] = 28.2 +id[1947] = "2143-03-18T08:09:57" +ik[1947] = 0.627 +il[1947] = 108 +im[1947] = 0.022 +ij[1947] = 28.7 +id[1948] = "2143-05-10T19:18:04" +ik[1948] = 3.911 +il[1948] = 93 +im[1948] = 0.0588 +ij[1948] = 27.2 +id[1949] = "2143-06-01T11:25:54" +ik[1949] = 12 +il[1949] = 55 +im[1949] = 0.0286 +ij[1949] = 18 +id[1950] = "2143-07-24T15:04:22" +ik[1950] = 1.07 +il[1950] = 144 +im[1950] = 0.0248 +ij[1950] = 12 +id[1951] = "2143-10-16T15:07:53" +ik[1951] = 25.537 +il[1951] = 86 +im[1951] = 0.0481 +ij[1951] = 16 +id[1952] = "2143-10-25T18:48:21" +ik[1952] = 1.073 +il[1952] = 119 +im[1952] = 0.0498 +ij[1952] = 28.6 +id[1953] = "2143-11-15T22:11:10" +ik[1953] = 0.619 +il[1953] = -88 +im[1953] = 0.0381 +ij[1953] = 28.2 +id[1954] = "2144-01-05T09:53:33" +ik[1954] = 31.031 +il[1954] = -140 +im[1954] = 0.0684 +ij[1954] = 8 +id[1955] = "2144-02-01T05:57:52" +ik[1955] = 4.893 +il[1955] = 174 +im[1955] = 0.057 +ij[1955] = 27.4 +id[1956] = "2144-02-17T21:16:11" +ik[1956] = 4.91 +il[1956] = 102 +im[1956] = 0.0799 +ij[1956] = 27.1 +id[1957] = "2144-03-10T23:22:16" +ik[1957] = 23 +il[1957] = -80 +im[1957] = 0.0494 +ij[1957] = 17 +id[1958] = "2144-03-15T03:27:41" +ik[1958] = 0.034 +il[1958] = -102 +im[1958] = 0.053 +ij[1958] = 28.5 +id[1959] = "2144-04-05T03:14:32" +ik[1959] = 40.124 +il[1959] = 100 +im[1959] = 0.1327 +ij[1959] = 3 +id[1960] = "2144-04-23T13:13:48" +ik[1960] = -1.881 +il[1960] = 124 +im[1960] = 0.0178 +ij[1960] = 2 +id[1961] = "2144-06-19T13:31:50" +ik[1961] = 0 +il[1961] = -60 +im[1961] = 0.0973 +ij[1961] = 13 +id[1962] = "2144-06-26T06:50:56" +ik[1962] = 2.994 +il[1962] = 104 +im[1962] = 0.3389 +ij[1962] = 28.1 +id[1963] = "2144-07-04T09:46:34" +ik[1963] = 3.065 +il[1963] = 126 +im[1963] = 0.1439 +ij[1963] = 28.2 +id[1964] = "2144-07-18T10:37:42" +ik[1964] = 5.8 +il[1964] = -113 +im[1964] = 0.2522 +ij[1964] = 11 +id[1965] = "2144-08-01T13:04:03" +ik[1965] = 5.724 +il[1965] = 167 +im[1965] = 0.2425 +ij[1965] = 28.5 +id[1966] = "2144-08-04T11:46:23" +ik[1966] = 6.252 +il[1966] = -144 +im[1966] = 0.3474 +ij[1966] = 28.1 +id[1967] = "2144-08-21T12:34:26" +ik[1967] = 62.96 +il[1967] = 11 +im[1967] = 0.2759 +ij[1967] = 7.0979 +id[1968] = "2144-10-02T18:28:13" +ik[1968] = 105.21 +il[1968] = -21 +im[1968] = 0.1372 +ij[1968] = 14 +id[1969] = "2144-10-11T17:04:20" +ik[1969] = 2.58 +il[1969] = 88 +im[1969] = 0.2094 +ij[1969] = 28.5 +id[1970] = "2144-10-12T20:01:48" +ik[1970] = -2.353 +il[1970] = 54 +im[1970] = 0.218 +ij[1970] = 4 +id[1971] = "2144-10-17T14:26:12" +ik[1971] = 1.623 +il[1971] = -175 +im[1971] = 0.1397 +ij[1971] = 27.3 +id[1972] = "2144-11-08T05:32:29" +ik[1972] = 44.947 +il[1972] = 170 +im[1972] = 0.15 +ij[1972] = 1 +id[1973] = "2144-11-23T09:08:43" +ik[1973] = 0.999 +il[1973] = -96 +im[1973] = 0.1247 +ij[1973] = 27.5 +id[1974] = "2145-01-01T22:07:23" +ik[1974] = -26.283 +il[1974] = 91 +im[1974] = 0.047 +ij[1974] = 15 +id[1975] = "2145-02-10T11:51:37" +ik[1975] = 1.725 +il[1975] = -98 +im[1975] = 0.0419 +ij[1975] = 27.6 +id[1976] = "2145-03-04T08:17:06" +ik[1976] = 33.049 +il[1976] = 163 +im[1976] = 0.0733 +ij[1976] = 9 +id[1977] = "2145-03-08T20:09:35" +ik[1977] = 0.995 +il[1977] = 27 +im[1977] = 0.0672 +ij[1977] = 28.7 +id[1978] = "2145-04-19T11:06:38" +ik[1978] = 3.615 +il[1978] = -164 +im[1978] = 0.0665 +ij[1978] = 27.2 +id[1979] = "2145-05-09T09:28:48" +ik[1979] = 2.263 +il[1979] = 48 +im[1979] = 0.0068 +ij[1979] = 28.8 +id[1980] = "2145-05-12T14:46:52" +ik[1980] = 12 +il[1980] = -1 +im[1980] = 0.0412 +ij[1980] = 18 +id[1981] = "2145-06-11T05:02:52" +ik[1981] = 1.384 +il[1981] = 77 +im[1981] = 0.047 +ij[1981] = 28.1 +id[1982] = "2145-08-30T12:49:16" +ik[1982] = 1.1 +il[1982] = 9 +im[1982] = 0.0222 +ij[1982] = 12 +id[1983] = "2145-09-28T00:17:50" +ik[1983] = 25.7 +il[1983] = -47 +im[1983] = 0.0244 +ij[1983] = 16 +id[1984] = "2145-11-06T09:00:29" +ik[1984] = 3.061 +il[1984] = -147 +im[1984] = 0.0607 +ij[1984] = 28.1 +id[1985] = "2145-11-15T18:07:01" +ik[1985] = 1.514 +il[1985] = 168 +im[1985] = 0.0355 +ij[1985] = 28.6 +id[1986] = "2146-01-07T10:08:26" +ik[1986] = 4.519 +il[1986] = 68 +im[1986] = 0.0313 +ij[1986] = 27.4 +id[1987] = "2146-01-22T05:58:06" +ik[1987] = 5.263 +il[1987] = -86 +im[1987] = 0.017 +ij[1987] = 27.1 +id[1988] = "2146-02-10T22:07:07" +ik[1988] = 0 +il[1988] = -142 +im[1988] = 0.0612 +ij[1988] = 17 +id[1989] = "2146-02-12T06:52:39" +ik[1989] = 32.505 +il[1989] = 99 +im[1989] = 0.0737 +ij[1989] = 8 +id[1990] = "2146-04-17T02:10:49" +ik[1990] = 0.047 +il[1990] = 53 +im[1990] = 0.07 +ij[1990] = 27.3 +id[1991] = "2146-05-19T03:04:53" +ik[1991] = 0.747 +il[1991] = -16 +im[1991] = 0.0106 +ij[1991] = 28.5 +id[1992] = "2146-05-20T09:49:19" +ik[1992] = 1.612 +il[1992] = -105 +im[1992] = 0.0357 +ij[1992] = 27.5 +id[1993] = "2146-06-16T10:46:33" +ik[1993] = 46.002 +il[1993] = 139 +im[1993] = 0.0225 +ij[1993] = 3 +id[1994] = "2146-07-17T04:06:16" +ik[1994] = -2.369 +il[1994] = 174 +im[1994] = 0.0739 +ij[1994] = 2 +id[1995] = "2146-09-03T00:01:21" +ik[1995] = 0 +il[1995] = -19 +im[1995] = 0.334 +ij[1995] = 13 +id[1996] = "2146-09-15T07:39:54" +ik[1996] = 5.17 +il[1996] = -13 +im[1996] = 0.3358 +ij[1996] = 28.1 +id[1997] = "2146-10-07T14:08:22" +ik[1997] = 3.63 +il[1997] = 87 +im[1997] = 0.1312 +ij[1997] = 11 +id[1998] = "2146-10-21T09:37:17" +ik[1998] = 1.106 +il[1998] = 132 +im[1998] = 0.2067 +ij[1998] = 28.1 +id[1999] = "2146-11-06T04:10:05" +ik[1999] = 64.17 +il[1999] = 5 +im[1999] = 0.2406 +ij[1999] = 7.1224 +id[2000] = "2146-11-18T01:18:59" +ik[2000] = 0.037 +il[2000] = 162 +im[2000] = 0.1764 +ij[2000] = 28.2 +id[2001] = "2146-11-20T09:36:21" +ik[2001] = 4.943 +il[2001] = 60 +im[2001] = 0.2472 +ij[2001] = 28.5 +id[2002] = "2146-12-01T21:07:25" +ik[2002] = -25.139 +il[2002] = -3 +im[2002] = 0.1091 +ij[2002] = 15 +id[2003] = "2146-12-21T19:28:55" +ik[2003] = 109.81 +il[2003] = -148 +im[2003] = 0.1756 +ij[2003] = 14 +id[2004] = "2146-12-29T09:08:30" +ik[2004] = -1.944 +il[2004] = 79 +im[2004] = 0.0589 +ij[2004] = 4 +id[2005] = "2147-01-04T21:41:22" +ik[2005] = 1.306 +il[2005] = -47 +im[2005] = 0.1321 +ij[2005] = 27.6 +id[2006] = "2147-01-17T12:15:33" +ik[2006] = 40.133 +il[2006] = -146 +im[2006] = 0.1453 +ij[2006] = 1 +id[2007] = "2147-02-23T23:27:13" +ik[2007] = 1.528 +il[2007] = 40 +im[2007] = 0.0307 +ij[2007] = 28.7 +id[2008] = "2147-03-26T22:32:20" +ik[2008] = 3.17 +il[2008] = -15 +im[2008] = 0.0624 +ij[2008] = 27.2 +id[2009] = "2147-04-16T02:47:46" +ik[2009] = 31.733 +il[2009] = 111 +im[2009] = 0.067 +ij[2009] = 9 +id[2010] = "2147-04-22T01:22:24" +ik[2010] = 12 +il[2010] = -168 +im[2010] = 0.0235 +ij[2010] = 18 +id[2011] = "2147-04-25T03:05:22" +ik[2011] = 2.527 +il[2011] = -168 +im[2011] = 0.0614 +ij[2011] = 28.8 +id[2012] = "2147-09-10T15:02:51" +ik[2012] = 25.832 +il[2012] = -101 +im[2012] = 0.0015 +ij[2012] = 16 +id[2013] = "2147-10-06T01:55:56" +ik[2013] = 0.7 +il[2013] = -12 +im[2013] = 0.0376 +ij[2013] = 12 +id[2014] = "2147-12-07T20:12:49" +ik[2014] = 1.664 +il[2014] = 163 +im[2014] = 0.0275 +ij[2014] = 28.6 +id[2015] = "2147-12-18T05:31:57" +ik[2015] = 4.242 +il[2015] = 118 +im[2015] = 0.0346 +ij[2015] = 27.4 +id[2016] = "2148-01-01T10:19:48" +ik[2016] = 5.528 +il[2016] = -176 +im[2016] = 0.0282 +ij[2016] = 27.1 +id[2017] = "2148-01-20T18:12:47" +ik[2017] = 0 +il[2017] = -100 +im[2017] = 0.0272 +ij[2017] = 17 +id[2018] = "2148-03-20T17:46:26" +ik[2018] = 0.243 +il[2018] = 113 +im[2018] = 0.0624 +ij[2018] = 27.3 +id[2019] = "2148-04-05T18:08:12" +ik[2019] = 34.988 +il[2019] = -99 +im[2019] = 0.0837 +ij[2019] = 8 +id[2020] = "2148-04-19T17:17:00" +ik[2020] = 0.948 +il[2020] = 47 +im[2020] = 0.0802 +ij[2020] = 27.5 +id[2021] = "2148-05-18T16:45:14" +ik[2021] = -24.993 +il[2021] = -27 +im[2021] = 0.0916 +ij[2021] = 15 +id[2022] = "2148-07-02T01:52:07" +ik[2022] = 4.004 +il[2022] = -94 +im[2022] = 0.1137 +ij[2022] = 27.6 +id[2023] = "2148-07-08T19:53:50" +ik[2023] = 0.594 +il[2023] = 61 +im[2023] = 0.0273 +ij[2023] = 28.5 +id[2024] = "2148-08-06T06:44:29" +ik[2024] = 46.564 +il[2024] = 177 +im[2024] = 0.0349 +ij[2024] = 3 +id[2025] = "2148-08-13T14:06:43" +ik[2025] = 1.443 +il[2025] = 138 +im[2025] = 0.1473 +ij[2025] = 28.7 +id[2026] = "2148-08-31T06:55:11" +ik[2026] = -2.241 +il[2026] = 60 +im[2026] = 0.1355 +ij[2026] = 2 +id[2027] = "2148-09-17T08:05:49" +ik[2027] = 5.818 +il[2027] = -150 +im[2027] = 0.097 +ij[2027] = 27.2 +id[2028] = "2148-10-26T19:29:26" +ik[2028] = 0 +il[2028] = 65 +im[2028] = 0.1888 +ij[2028] = 13 +id[2029] = "2148-12-03T22:39:29" +ik[2029] = 1.74 +il[2029] = 9 +im[2029] = 0.2848 +ij[2029] = 11 +id[2030] = "2149-01-08T18:34:01" +ik[2030] = 73.96 +il[2030] = -131 +im[2030] = 0.1094 +ij[2030] = 7.1429 +id[2031] = "2149-01-11T17:36:12" +ik[2031] = 4.244 +il[2031] = -86 +im[2031] = 0.1876 +ij[2031] = 28.7 +id[2032] = "2149-01-26T17:04:18" +ik[2032] = 3.07 +il[2032] = 61 +im[2032] = 0.1778 +ij[2032] = 28.5 +id[2033] = "2149-02-14T05:44:41" +ik[2033] = 2.143 +il[2033] = 45 +im[2033] = 0.0697 +ij[2033] = 27.2 +id[2034] = "2149-03-02T14:10:45" +ik[2034] = -1.651 +il[2034] = 73 +im[2034] = 0.0214 +ij[2034] = 4 +id[2035] = "2149-03-07T17:15:49" +ik[2035] = 131.91 +il[2035] = 75 +im[2035] = 0.0966 +ij[2035] = 14 +id[2036] = "2149-03-10T15:45:30" +ik[2036] = 37.557 +il[2036] = 125 +im[2036] = 0.1087 +ij[2036] = 1 +id[2037] = "2149-03-25T21:08:13" +ik[2037] = 12 +il[2037] = -172 +im[2037] = 0.1 +ij[2037] = 18 +id[2038] = "2149-04-04T23:34:27" +ik[2038] = 2.992 +il[2038] = -114 +im[2038] = 0.0764 +ij[2038] = 28.8 +id[2039] = "2149-05-22T15:58:52" +ik[2039] = 31.29 +il[2039] = 92 +im[2039] = 0.0678 +ij[2039] = 9 +id[2040] = "2149-07-19T13:20:18" +ik[2040] = 0.383 +il[2040] = -36 +im[2040] = 0.0511 +ij[2040] = 28.2 +id[2041] = "2149-07-31T22:32:49" +ik[2041] = 4.29 +il[2041] = -55 +im[2041] = 0.0556 +ij[2041] = 28.1 +id[2042] = "2149-08-22T22:59:47" +ik[2042] = 25.952 +il[2042] = 150 +im[2042] = 0.0216 +ij[2042] = 16 +id[2043] = "2149-11-14T03:07:03" +ik[2043] = 0.02 +il[2043] = -168 +im[2043] = 0.0182 +ij[2043] = 12 +id[2044] = "2149-12-31T13:01:40" +ik[2044] = 0 +il[2044] = -31 +im[2044] = 0.032 +ij[2044] = 17 +id[2045] = "2150-02-27T04:32:14" +ik[2045] = 0.268 +il[2045] = -76 +im[2045] = 0.0291 +ij[2045] = 27.3 +id[2046] = "2150-03-28T05:26:37" +ik[2046] = 0.736 +il[2046] = -165 +im[2046] = 0.0302 +ij[2046] = 27.5 +id[2047] = "2150-04-14T02:21:09" +ik[2047] = 0.388 +il[2047] = 47 +im[2047] = 0.0677 +ij[2047] = 28.2 +id[2048] = "2150-04-26T17:28:14" +ik[2048] = -25.42 +il[2048] = -58 +im[2048] = 0.0386 +ij[2048] = 15 +id[2049] = "2150-06-06T14:43:54" +ik[2049] = 3.285 +il[2049] = 21 +im[2049] = 0.0148 +ij[2049] = 27.6 +id[2050] = "2150-06-24T13:34:25" +ik[2050] = 36.138 +il[2050] = -145 +im[2050] = 0.0585 +ij[2050] = 8 +id[2051] = "2150-07-28T01:55:49" +ik[2051] = 0.582 +il[2051] = -1 +im[2051] = 0.0851 +ij[2051] = 28.7 +id[2052] = "2150-08-10T08:46:16" +ik[2052] = 5.164 +il[2052] = 26 +im[2052] = 0.0998 +ij[2052] = 27.2 +id[2053] = "2150-08-29T18:15:54" +ik[2053] = 11 +il[2053] = 74 +im[2053] = 0.0399 +ij[2053] = 18 +id[2054] = "2150-09-13T11:19:57" +ik[2054] = 0.023 +il[2054] = -38 +im[2054] = 0.0415 +ij[2054] = 28.5 +id[2055] = "2150-09-13T20:16:58" +ik[2055] = 1.075 +il[2055] = -169 +im[2055] = 0.0325 +ij[2055] = 28.8 +id[2056] = "2150-09-23T01:30:25" +ik[2056] = 42.075 +il[2056] = -157 +im[2056] = 0.1136 +ij[2056] = 3 +id[2057] = "2150-10-02T10:08:59" +ik[2057] = -1.935 +il[2057] = 164 +im[2057] = 0.0733 +ij[2057] = 2 +id[2058] = "2150-12-05T17:16:18" +ik[2058] = 0 +il[2058] = -39 +im[2058] = 0.1021 +ij[2058] = 13 +id[2059] = "2150-12-26T21:59:33" +ik[2059] = 1.424 +il[2059] = 95 +im[2059] = 0.2005 +ij[2059] = 28.2 +id[2060] = "2151-01-14T03:19:30" +ik[2060] = 4 +il[2060] = 168 +im[2060] = 0.1573 +ij[2060] = 11 +id[2061] = "2151-02-22T16:18:54" +ik[2061] = 78.96 +il[2061] = 149 +im[2061] = 0.1556 +ij[2061] = 7.1732 +id[2062] = "2151-04-21T04:25:53" +ik[2062] = -1.557 +il[2062] = 152 +im[2062] = 0.0595 +ij[2062] = 4 +id[2063] = "2151-04-22T03:27:30" +ik[2063] = 37.056 +il[2063] = 179 +im[2063] = 0.0377 +ij[2063] = 1 +id[2064] = "2151-04-30T04:08:42" +ik[2064] = 145.45 +il[2064] = -119 +im[2064] = 0.1021 +ij[2064] = 14 +id[2065] = "2151-05-25T22:40:35" +ik[2065] = 0.748 +il[2065] = -150 +im[2065] = 0.0713 +ij[2065] = 28.5 +id[2066] = "2151-06-29T02:46:25" +ik[2066] = 31.698 +il[2066] = 116 +im[2066] = 0.0667 +ij[2066] = 9 +id[2067] = "2151-08-04T08:43:45" +ik[2067] = 26.067 +il[2067] = 17 +im[2067] = 0.0346 +ij[2067] = 16 +id[2068] = "2151-10-07T22:57:57" +ik[2068] = 1.946 +il[2068] = 73 +im[2068] = 0.0465 +ij[2068] = 28.1 +id[2069] = "2151-10-26T12:46:18" +ik[2069] = 1.231 +il[2069] = 44 +im[2069] = 0.0077 +ij[2069] = 28.1 +id[2070] = "2151-12-12T22:03:25" +ik[2070] = 0 +il[2070] = 18 +im[2070] = 0.0476 +ij[2070] = 17 +id[2071] = "2152-01-04T01:05:16" +ik[2071] = 0.86 +il[2071] = -168 +im[2071] = 0.0329 +ij[2071] = 12 +id[2072] = "2152-04-05T13:10:00" +ik[2072] = 1.511 +il[2072] = 6 +im[2072] = 0.0293 +ij[2072] = 28.1 +id[2073] = "2152-04-05T16:42:11" +ik[2073] = -25.658 +il[2073] = -50 +im[2073] = 0.031 +ij[2073] = 15 +id[2074] = "2152-05-15T05:57:41" +ik[2074] = 2.902 +il[2074] = 142 +im[2074] = 0.0195 +ij[2074] = 27.6 +id[2075] = "2152-07-17T04:35:44" +ik[2075] = 4.763 +il[2075] = 60 +im[2075] = 0.057 +ij[2075] = 27.2 +id[2076] = "2152-07-17T18:07:26" +ik[2076] = 0.145 +il[2076] = -137 +im[2076] = 0.0626 +ij[2076] = 28.7 +id[2077] = "2152-08-05T11:22:42" +ik[2077] = 12 +il[2077] = 147 +im[2077] = 0.068 +ij[2077] = 18 +id[2078] = "2152-08-25T01:23:56" +ik[2078] = 1.286 +il[2078] = 127 +im[2078] = 0.0227 +ij[2078] = 28.8 +id[2079] = "2152-08-30T20:24:38" +ik[2079] = 33.807 +il[2079] = -101 +im[2079] = 0.0677 +ij[2079] = 8 +id[2080] = "2152-11-02T01:41:27" +ik[2080] = -1.717 +il[2080] = 72 +im[2080] = 0.0574 +ij[2080] = 2 +id[2081] = "2152-11-06T09:56:26" +ik[2081] = 38.297 +il[2081] = -10 +im[2081] = 0.0376 +ij[2081] = 3 +id[2082] = "2153-01-07T04:09:10" +ik[2082] = 0 +il[2082] = -46 +im[2082] = 0.178 +ij[2082] = 13 +id[2083] = "2153-01-19T21:24:57" +ik[2083] = 2.687 +il[2083] = 178 +im[2083] = 0.1884 +ij[2083] = 28.2 +id[2084] = "2153-02-17T01:46:10" +ik[2084] = 4.31 +il[2084] = 3 +im[2084] = 0.2063 +ij[2084] = 11 +id[2085] = "2153-03-07T22:00:01" +ik[2085] = 1.703 +il[2085] = 37 +im[2085] = 0.0396 +ij[2085] = 28.1 +id[2086] = "2153-03-21T11:28:21" +ik[2086] = 3.025 +il[2086] = -50 +im[2086] = 0.0071 +ij[2086] = 28.2 +id[2087] = "2153-03-31T03:11:46" +ik[2087] = 82.96 +il[2087] = 166 +im[2087] = 0.159 +ij[2087] = 7.2034 +id[2088] = "2153-05-30T21:07:29" +ik[2088] = 38.171 +il[2088] = 121 +im[2088] = 0.0069 +ij[2088] = 1 +id[2089] = "2153-06-04T04:30:21" +ik[2089] = -1.609 +il[2089] = 52 +im[2089] = 0.0878 +ij[2089] = 4 +id[2090] = "2153-06-06T03:59:35" +ik[2090] = 149.99 +il[2090] = 78 +im[2090] = 0.0989 +ij[2090] = 14 +id[2091] = "2153-07-13T12:19:54" +ik[2091] = 26.173 +il[2091] = -45 +im[2091] = 0.033 +ij[2091] = 16 +id[2092] = "2153-08-09T10:38:52" +ik[2092] = 32.95 +il[2092] = -118 +im[2092] = 0.0023 +ij[2092] = 9 +id[2093] = "2153-09-01T22:29:44" +ik[2093] = 1.16 +il[2093] = -67 +im[2093] = 0.0664 +ij[2093] = 28.5 +id[2094] = "2153-10-19T23:39:11" +ik[2094] = 3.462 +il[2094] = 23 +im[2094] = 0.004 +ij[2094] = 27.4 +id[2095] = "2153-11-02T20:09:15" +ik[2095] = 6.268 +il[2095] = -149 +im[2095] = 0.0188 +ij[2095] = 27.1 +id[2096] = "2153-11-23T03:23:43" +ik[2096] = 0 +il[2096] = -59 +im[2096] = 0.0608 +ij[2096] = 17 +id[2097] = "2153-12-24T21:48:45" +ik[2097] = 1.001 +il[2097] = -24 +im[2097] = 0.0667 +ij[2097] = 28.1 +id[2098] = "2154-03-14T03:33:43" +ik[2098] = 0.9 +il[2098] = -28 +im[2098] = 0.002 +ij[2098] = 12 +id[2099] = "2154-03-17T07:57:16" +ik[2099] = -25.83 +il[2099] = 71 +im[2099] = 0.0381 +ij[2099] = 15 +id[2100] = "2154-06-18T23:29:42" +ik[2100] = 1.761 +il[2100] = 59 +im[2100] = 0.0576 +ij[2100] = 28.1 +id[2101] = "2154-06-26T22:50:15" +ik[2101] = 4.481 +il[2101] = 146 +im[2101] = 0.0391 +ij[2101] = 27.2 +id[2102] = "2154-07-10T19:15:04" +ik[2102] = 0.133 +il[2102] = -25 +im[2102] = 0.0301 +ij[2102] = 28.7 +id[2103] = "2154-07-16T15:50:00" +ik[2103] = 12 +il[2103] = 83 +im[2103] = 0.0625 +ij[2103] = 18 +id[2104] = "2154-08-11T01:59:31" +ik[2104] = 1.407 +il[2104] = 178 +im[2104] = 0.0548 +ij[2104] = 28.8 +id[2105] = "2154-10-07T01:57:07" +ik[2105] = 5.368 +il[2105] = 10 +im[2105] = 0.0572 +ij[2105] = 28.2 +id[2106] = "2154-10-15T05:42:52" +ik[2106] = 31.739 +il[2106] = 32 +im[2106] = 0.0219 +ij[2106] = 8 +id[2107] = "2154-12-06T19:49:28" +ik[2107] = -1.602 +il[2107] = -31 +im[2107] = 0.0905 +ij[2107] = 2 +id[2108] = "2154-12-16T08:56:24" +ik[2108] = 36.423 +il[2108] = -135 +im[2108] = 0.0854 +ij[2108] = 3 +id[2109] = "2155-02-11T04:00:03" +ik[2109] = 0 +il[2109] = 127 +im[2109] = 0.1603 +ij[2109] = 13 +id[2110] = "2155-03-23T10:54:37" +ik[2110] = 3.28 +il[2110] = 27 +im[2110] = 0.1785 +ij[2110] = 11 +id[2111] = "2155-04-09T20:14:35" +ik[2111] = 1.009 +il[2111] = -166 +im[2111] = 0.2126 +ij[2111] = 28.2 +id[2112] = "2155-05-04T03:02:39" +ik[2112] = 81.96 +il[2112] = -34 +im[2112] = 0.1916 +ij[2112] = 7.2072 +id[2113] = "2155-06-17T04:46:01" +ik[2113] = 26.084 +il[2113] = 8 +im[2113] = 0.1183 +ij[2113] = 16 +id[2114] = "2155-07-06T22:13:30" +ik[2114] = 145.76 +il[2114] = -62 +im[2114] = 0.0177 +ij[2114] = 14 +id[2115] = "2155-07-11T22:34:27" +ik[2115] = 40.839 +il[2115] = -19 +im[2115] = 0.0922 +ij[2115] = 1 +id[2116] = "2155-07-17T02:07:15" +ik[2116] = -1.791 +il[2116] = -22 +im[2116] = 0.0782 +ij[2116] = 4 +id[2117] = "2155-09-28T19:09:42" +ik[2117] = 3.046 +il[2117] = 81 +im[2117] = 0.045 +ij[2117] = 27.4 +id[2118] = "2155-10-03T04:01:05" +ik[2118] = 34.798 +il[2118] = -9 +im[2118] = 0.0343 +ij[2118] = 9 +id[2119] = "2155-11-03T11:35:25" +ik[2119] = 0 +il[2119] = -176 +im[2119] = 0.0651 +ij[2119] = 17 +id[2120] = "2155-11-19T23:08:26" +ik[2120] = 1.068 +il[2120] = 179 +im[2120] = 0.0753 +ij[2120] = 28.5 +id[2121] = "2155-12-08T04:03:54" +ik[2121] = 1.153 +il[2121] = -82 +im[2121] = 0.0547 +ij[2121] = 28.2 +id[2122] = "2155-12-28T04:00:57" +ik[2122] = 0.096 +il[2122] = 116 +im[2122] = 0.0232 +ij[2122] = 27.3 +id[2123] = "2156-01-25T17:15:06" +ik[2123] = 0.54 +il[2123] = -162 +im[2123] = 0.0163 +ij[2123] = 27.5 +id[2124] = "2156-02-16T05:50:45" +ik[2124] = 1.052 +il[2124] = -139 +im[2124] = 0.0632 +ij[2124] = 28.6 +id[2125] = "2156-02-25T22:17:23" +ik[2125] = -25.977 +il[2125] = 79 +im[2125] = 0.0443 +ij[2125] = 15 +id[2126] = "2156-05-19T20:44:51" +ik[2126] = 0.16 +il[2126] = -168 +im[2126] = 0.0068 +ij[2126] = 12 +id[2127] = "2156-06-27T00:01:41" +ik[2127] = 12 +il[2127] = -37 +im[2127] = 0.0565 +ij[2127] = 18 +id[2128] = "2156-08-23T12:58:11" +ik[2128] = 4.993 +il[2128] = -23 +im[2128] = 0.0582 +ij[2128] = 28.1 +id[2129] = "2156-09-17T23:52:46" +ik[2129] = 1.024 +il[2129] = 59 +im[2129] = 0.0614 +ij[2129] = 28.2 +id[2130] = "2156-11-11T23:01:47" +ik[2130] = 25.176 +il[2130] = -117 +im[2130] = 0.051 +ij[2130] = 16 +id[2131] = "2156-11-19T07:28:38" +ik[2131] = 30.736 +il[2131] = -173 +im[2131] = 0.0521 +ij[2131] = 8 +id[2132] = "2157-01-17T20:55:16" +ik[2132] = -1.59 +il[2132] = -160 +im[2132] = 0.0142 +ij[2132] = 2 +id[2133] = "2157-01-24T11:14:29" +ik[2133] = 36.382 +il[2133] = 48 +im[2133] = 0.1141 +ij[2133] = 3 +id[2134] = "2157-03-23T22:13:58" +ik[2134] = 0 +il[2134] = 80 +im[2134] = 0.1911 +ij[2134] = 13 +id[2135] = "2157-04-30T10:42:11" +ik[2135] = 0.72 +il[2135] = -131 +im[2135] = 0.2346 +ij[2135] = 11 +id[2136] = "2157-06-08T23:19:42" +ik[2136] = 77.05 +il[2136] = -146 +im[2136] = 0.2063 +ij[2136] = 7.1656 +id[2137] = "2157-08-04T14:39:30" +ik[2137] = 133.68 +il[2137] = 177 +im[2137] = 0.1499 +ij[2137] = 14 +id[2138] = "2157-08-18T01:37:56" +ik[2138] = -2.086 +il[2138] = 143 +im[2138] = 0.115 +ij[2138] = 4 +id[2139] = "2157-08-26T11:00:23" +ik[2139] = 44.625 +il[2139] = 85 +im[2139] = 0.0154 +ij[2139] = 1 +id[2140] = "2157-08-31T15:20:13" +ik[2140] = 2.239 +il[2140] = 71 +im[2140] = 0.1144 +ij[2140] = 27.4 +id[2141] = "2157-10-11T06:22:51" +ik[2141] = 0 +il[2141] = -116 +im[2141] = 0.0288 +ij[2141] = 17 +id[2142] = "2157-12-05T04:08:39" +ik[2142] = 0.102 +il[2142] = 98 +im[2142] = 0.0312 +ij[2142] = 27.3 +id[2143] = "2157-12-12T08:39:18" +ik[2143] = 35.45 +il[2143] = 101 +im[2143] = 0.0785 +ij[2143] = 9 +id[2144] = "2158-01-03T07:06:37" +ik[2144] = 0.553 +il[2144] = -21 +im[2144] = 0.0254 +ij[2144] = 27.5 +id[2145] = "2158-01-18T18:12:03" +ik[2145] = 0.288 +il[2145] = -36 +im[2145] = 0.0068 +ij[2145] = 28.5 +id[2146] = "2158-02-04T19:14:17" +ik[2146] = -26.118 +il[2146] = 113 +im[2146] = 0.0354 +ij[2146] = 15 +id[2147] = "2158-02-28T21:20:24" +ik[2147] = 1.916 +il[2147] = -46 +im[2147] = 0.0386 +ij[2147] = 28.6 +id[2148] = "2158-03-15T06:08:06" +ik[2148] = 2.149 +il[2148] = -34 +im[2148] = 0.0341 +ij[2148] = 27.6 +id[2149] = "2158-06-08T16:12:09" +ik[2149] = 12 +il[2149] = -91 +im[2149] = 0.0437 +ij[2149] = 18 +id[2150] = "2158-07-08T10:16:24" +ik[2150] = 0.93 +il[2150] = -71 +im[2150] = 0.0352 +ij[2150] = 12 +id[2151] = "2158-10-23T17:24:44" +ik[2151] = 25.459 +il[2151] = -26 +im[2151] = 0.0513 +ij[2151] = 16 +id[2152] = "2158-12-22T22:49:04" +ik[2152] = 30.75 +il[2152] = 112 +im[2152] = 0.0793 +ij[2152] = 8 +id[2153] = "2159-02-13T08:02:40" +ik[2153] = 5.09 +il[2153] = 114 +im[2153] = 0.0482 +ij[2153] = 27.4 +id[2154] = "2159-03-04T02:14:36" +ik[2154] = 4.745 +il[2154] = 19 +im[2154] = 0.1174 +ij[2154] = 27.1 +id[2155] = "2159-03-13T12:12:23" +ik[2155] = 38.492 +il[2155] = -41 +im[2155] = 0.0498 +ij[2155] = 3 +id[2156] = "2159-03-22T06:08:11" +ik[2156] = -1.736 +il[2156] = 133 +im[2156] = 0.1017 +ij[2156] = 2 +id[2157] = "2159-03-31T14:23:40" +ik[2157] = 23 +il[2157] = 97 +im[2157] = 0.1485 +ij[2157] = 17 +id[2158] = "2159-05-13T00:28:36" +ik[2158] = 1.11 +il[2158] = -14 +im[2158] = 0.2302 +ij[2158] = 28.2 +id[2159] = "2159-05-21T14:39:59" +ik[2159] = 0 +il[2159] = -147 +im[2159] = 0.0782 +ij[2159] = 13 +id[2160] = "2159-06-03T18:59:25" +ik[2160] = 4.305 +il[2160] = -95 +im[2160] = 0.0415 +ij[2160] = 28.1 +id[2161] = "2159-06-16T14:33:41" +ik[2161] = 0 +il[2161] = 92 +im[2161] = 0.0173 +ij[2161] = 18 +id[2162] = "2159-06-21T21:55:04" +ik[2162] = 3.69 +il[2162] = 25 +im[2162] = 0.3221 +ij[2162] = 11 +id[2163] = "2159-07-09T15:14:51" +ik[2163] = 4.894 +il[2163] = 114 +im[2163] = 0.2655 +ij[2163] = 28.1 +id[2164] = "2159-07-27T15:46:50" +ik[2164] = 67.05 +il[2164] = -80 +im[2164] = 0.0675 +ij[2164] = 7.1081 +id[2165] = "2159-09-05T03:56:10" +ik[2165] = 0 +il[2165] = 125 +im[2165] = 0.0777 +ij[2165] = 17 +id[2166] = "2159-09-11T19:17:41" +ik[2166] = 113.19 +il[2166] = -40 +im[2166] = 0.1901 +ij[2166] = 14 +id[2167] = "2159-09-22T07:16:38" +ik[2167] = -2.363 +il[2167] = -116 +im[2167] = 0.0637 +ij[2167] = 4 +id[2168] = "2159-10-15T13:40:22" +ik[2168] = 46.177 +il[2168] = 17 +im[2168] = 0.1189 +ij[2168] = 1 +id[2169] = "2159-11-06T15:21:22" +ik[2169] = 0.731 +il[2169] = -151 +im[2169] = 0.1126 +ij[2169] = 27.3 +id[2170] = "2159-12-08T11:15:13" +ik[2170] = 0.726 +il[2170] = -138 +im[2170] = 0.1206 +ij[2170] = 27.5 +id[2171] = "2160-01-13T08:03:10" +ik[2171] = -26.254 +il[2171] = -104 +im[2171] = 0.026 +ij[2171] = 15 +id[2172] = "2160-02-13T16:15:18" +ik[2172] = 33.774 +il[2172] = 73 +im[2172] = 0.0221 +ij[2172] = 9 +id[2173] = "2160-02-21T07:16:03" +ik[2173] = 1.862 +il[2173] = -80 +im[2173] = 0.0662 +ij[2173] = 27.6 +id[2174] = "2160-03-12T12:56:57" +ik[2174] = 2.524 +il[2174] = 27 +im[2174] = 0.0059 +ij[2174] = 28.6 +id[2175] = "2160-03-17T22:23:43" +ik[2175] = 1.311 +il[2175] = -63 +im[2175] = 0.0666 +ij[2175] = 28.5 +id[2176] = "2160-04-27T14:16:36" +ik[2176] = 3.741 +il[2176] = 92 +im[2176] = 0.0479 +ij[2176] = 27.2 +id[2177] = "2160-05-11T10:36:21" +ik[2177] = 5.04 +il[2177] = -81 +im[2177] = 0.0363 +ij[2177] = 28.1 +id[2178] = "2160-05-20T02:54:19" +ik[2178] = 12 +il[2178] = 116 +im[2178] = 0.0297 +ij[2178] = 18 +id[2179] = "2160-08-16T05:18:38" +ik[2179] = 1.14 +il[2179] = -157 +im[2179] = 0.0108 +ij[2179] = 12 +id[2180] = "2160-10-04T20:19:37" +ik[2180] = 25.642 +il[2180] = -61 +im[2180] = 0.0562 +ij[2180] = 16 +id[2181] = "2161-01-15T23:41:06" +ik[2181] = 4.647 +il[2181] = 165 +im[2181] = 0.0675 +ij[2181] = 27.4 +id[2182] = "2161-01-27T03:26:24" +ik[2182] = 31.793 +il[2182] = -145 +im[2182] = 0.076 +ij[2182] = 8 +id[2183] = "2161-01-31T07:58:37" +ik[2183] = 5.141 +il[2183] = -174 +im[2183] = 0.0776 +ij[2183] = 27.1 +id[2184] = "2161-02-20T10:53:55" +ik[2184] = 23 +il[2184] = -27 +im[2184] = 0.0245 +ij[2184] = 17 +id[2185] = "2161-05-01T13:26:59" +ik[2185] = 0.232 +il[2185] = -122 +im[2185] = 0.0426 +ij[2185] = 27.3 +id[2186] = "2161-05-19T07:00:20" +ik[2186] = 43.679 +il[2186] = 143 +im[2186] = 0.0935 +ij[2186] = 3 +id[2187] = "2161-06-09T16:01:45" +ik[2187] = 2.552 +il[2187] = -150 +im[2187] = 0.1605 +ij[2187] = 27.5 +id[2188] = "2161-06-18T03:08:39" +ik[2188] = -2.215 +il[2188] = 124 +im[2188] = 0.1625 +ij[2188] = 2 +id[2189] = "2161-08-05T19:18:12" +ik[2189] = 0 +il[2189] = -10 +im[2189] = 0.2323 +ij[2189] = 13 +id[2190] = "2161-08-13T00:37:50" +ik[2190] = 5.592 +il[2190] = -20 +im[2190] = 0.281 +ij[2190] = 28.1 +id[2191] = "2161-09-06T22:41:18" +ik[2191] = 6.05 +il[2191] = -120 +im[2191] = 0.1858 +ij[2191] = 11 +id[2192] = "2161-09-20T17:50:11" +ik[2192] = 3.376 +il[2192] = -75 +im[2192] = 0.1927 +ij[2192] = 28.2 +id[2193] = "2161-09-22T15:21:10" +ik[2193] = 3.665 +il[2193] = -19 +im[2193] = 0.307 +ij[2193] = 28.1 +id[2194] = "2161-10-06T18:20:47" +ik[2194] = 61.96 +il[2194] = 70 +im[2194] = 0.3005 +ij[2194] = 7.1099 +id[2195] = "2161-11-18T01:33:33" +ik[2195] = 104.26 +il[2195] = 13 +im[2195] = 0.1929 +ij[2195] = 14 +id[2196] = "2161-11-28T05:02:26" +ik[2196] = -2.123 +il[2196] = 58 +im[2196] = 0.0688 +ij[2196] = 4 +id[2197] = "2161-12-12T20:20:03" +ik[2197] = -26.141 +il[2197] = -31 +im[2197] = 0.0655 +ij[2197] = 15 +id[2198] = "2161-12-22T10:48:25" +ik[2198] = 41.877 +il[2198] = -156 +im[2198] = 0.0796 +ij[2198] = 1 +id[2199] = "2162-01-22T23:53:05" +ik[2199] = 1.464 +il[2199] = -52 +im[2199] = 0.0041 +ij[2199] = 27.6 +id[2200] = "2162-03-24T13:35:31" +ik[2200] = 2.798 +il[2200] = -45 +im[2200] = 0.0475 +ij[2200] = 28.6 +id[2201] = "2162-03-31T10:56:11" +ik[2201] = 32.153 +il[2201] = 59 +im[2201] = 0.0569 +ij[2201] = 9 +id[2202] = "2162-04-05T19:55:11" +ik[2202] = 3.373 +il[2202] = -25 +im[2202] = 0.0307 +ij[2202] = 27.2 +id[2203] = "2162-04-30T10:55:12" +ik[2203] = 12 +il[2203] = -13 +im[2203] = 0.0343 +ij[2203] = 18 +id[2204] = "2162-05-21T07:39:28" +ik[2204] = 0.896 +il[2204] = -133 +im[2204] = 0.0419 +ij[2204] = 28.2 +id[2205] = "2162-05-30T10:07:22" +ik[2205] = 0.876 +il[2205] = -77 +im[2205] = 0.0152 +ij[2205] = 28.5 +id[2206] = "2162-06-17T11:21:55" +ik[2206] = 0.634 +il[2206] = 68 +im[2206] = 0.0235 +ij[2206] = 28.7 +id[2207] = "2162-06-24T01:42:34" +ik[2207] = 1.506 +il[2207] = -74 +im[2207] = 0.053 +ij[2207] = 28.8 +id[2208] = "2162-07-12T18:05:36" +ik[2208] = 0.038 +il[2208] = -143 +im[2208] = 0.0208 +ij[2208] = 28.1 +id[2209] = "2162-09-17T10:30:30" +ik[2209] = 25.784 +il[2209] = -109 +im[2209] = 0.0521 +ij[2209] = 16 +id[2210] = "2162-09-21T17:58:38" +ik[2210] = 0.9 +il[2210] = -179 +im[2210] = 0.0195 +ij[2210] = 12 +id[2211] = "2162-12-20T08:18:19" +ik[2211] = 6.187 +il[2211] = -43 +im[2211] = 0.0173 +ij[2211] = 28.1 +id[2212] = "2162-12-25T22:22:39" +ik[2212] = 4.342 +il[2212] = 159 +im[2212] = 0.0633 +ij[2212] = 27.4 +id[2213] = "2163-01-09T07:36:34" +ik[2213] = 5.432 +il[2213] = 168 +im[2213] = 0.0663 +ij[2213] = 27.1 +id[2214] = "2163-01-19T23:08:14" +ik[2214] = 2.095 +il[2214] = 35 +im[2214] = 0.0399 +ij[2214] = 28.2 +id[2215] = "2163-01-28T16:58:02" +ik[2215] = 0 +il[2215] = -149 +im[2215] = 0.0378 +ij[2215] = 17 +id[2216] = "2163-03-14T03:58:24" +ik[2216] = 33.939 +il[2216] = 106 +im[2216] = 0.0333 +ij[2216] = 8 +id[2217] = "2163-03-31T01:16:31" +ik[2217] = 0.204 +il[2217] = -53 +im[2217] = 0.0281 +ij[2217] = 27.3 +id[2218] = "2163-04-30T19:55:38" +ik[2218] = 1.106 +il[2218] = -41 +im[2218] = 0.0682 +ij[2218] = 27.5 +id[2219] = "2163-05-29T11:51:57" +ik[2219] = -24.691 +il[2219] = -6 +im[2219] = 0.0732 +ij[2219] = 15 +id[2220] = "2163-07-16T13:22:59" +ik[2220] = 4.562 +il[2220] = 76 +im[2220] = 0.1421 +ij[2220] = 27.6 +id[2221] = "2163-07-20T08:57:24" +ik[2221] = 47.364 +il[2221] = -180 +im[2221] = 0.0841 +ij[2221] = 3 +id[2222] = "2163-08-17T12:58:00" +ik[2222] = -2.348 +il[2222] = 35 +im[2222] = 0.1169 +ij[2222] = 2 +id[2223] = "2163-10-09T01:34:04" +ik[2223] = 0 +il[2223] = 2 +im[2223] = 0.2694 +ij[2223] = 13 +id[2224] = "2163-10-24T02:54:40" +ik[2224] = 1.262 +il[2224] = 129 +im[2224] = 0.2899 +ij[2224] = 28.2 +id[2225] = "2163-10-28T19:38:50" +ik[2225] = 2.382 +il[2225] = -76 +im[2225] = 0.0435 +ij[2225] = 28.1 +id[2226] = "2163-11-15T03:36:25" +ik[2226] = 0.01 +il[2226] = -48 +im[2226] = 0.2359 +ij[2226] = 11 +id[2227] = "2163-12-01T06:28:03" +ik[2227] = 4.418 +il[2227] = -95 +im[2227] = 0.2687 +ij[2227] = 28.1 +id[2228] = "2163-12-18T00:39:46" +ik[2228] = 69.96 +il[2228] = 140 +im[2228] = 0.2064 +ij[2228] = 7.1344 +id[2229] = "2164-02-09T01:40:41" +ik[2229] = -1.737 +il[2229] = -94 +im[2229] = 0.141 +ij[2229] = 4 +id[2230] = "2164-02-09T13:54:37" +ik[2230] = 123.51 +il[2230] = 87 +im[2230] = 0.1391 +ij[2230] = 14 +id[2231] = "2164-02-20T20:03:24" +ik[2231] = 38.274 +il[2231] = 101 +im[2231] = 0.104 +ij[2231] = 1 +id[2232] = "2164-03-06T17:35:13" +ik[2232] = 2.7 +il[2232] = -82 +im[2232] = 0.1058 +ij[2232] = 27.2 +id[2233] = "2164-04-04T02:34:28" +ik[2233] = 2.718 +il[2233] = 51 +im[2233] = 0.0852 +ij[2233] = 28.6 +id[2234] = "2164-04-06T10:09:20" +ik[2234] = 12 +il[2234] = -41 +im[2234] = 0.0891 +ij[2234] = 18 +id[2235] = "2164-05-08T08:06:51" +ik[2235] = 31.36 +il[2235] = -69 +im[2235] = 0.0481 +ij[2235] = 9 +id[2236] = "2164-06-10T07:11:30" +ik[2236] = 0.684 +il[2236] = -103 +im[2236] = 0.0241 +ij[2236] = 28.7 +id[2237] = "2164-06-10T16:49:14" +ik[2237] = 1.515 +il[2237] = 116 +im[2237] = 0.0296 +ij[2237] = 28.8 +id[2238] = "2164-08-27T12:50:57" +ik[2238] = 0.412 +il[2238] = -157 +im[2238] = 0.055 +ij[2238] = 28.5 +id[2239] = "2164-08-29T22:48:28" +ik[2239] = 25.907 +il[2239] = 85 +im[2239] = 0.0426 +ij[2239] = 16 +id[2240] = "2164-10-28T18:19:05" +ik[2240] = 0.29 +il[2240] = 22 +im[2240] = 0.017 +ij[2240] = 12 +id[2241] = "2165-01-07T23:27:07" +ik[2241] = 0 +il[2241] = 100 +im[2241] = 0.041 +ij[2241] = 17 +id[2242] = "2165-03-07T09:25:14" +ik[2242] = 0.266 +il[2242] = 155 +im[2242] = 0.0389 +ij[2242] = 27.3 +id[2243] = "2165-04-05T16:53:14" +ik[2243] = 0.799 +il[2243] = -38 +im[2243] = 0.0347 +ij[2243] = 27.5 +id[2244] = "2165-05-05T00:23:50" +ik[2244] = -25.289 +il[2244] = 132 +im[2244] = 0.0287 +ij[2244] = 15 +id[2245] = "2165-05-22T07:05:57" +ik[2245] = 36.206 +il[2245] = -162 +im[2245] = 0.0152 +ij[2245] = 8 +id[2246] = "2165-06-15T19:20:46" +ik[2246] = 3.5 +il[2246] = -106 +im[2246] = 0.0654 +ij[2246] = 27.6 +id[2247] = "2165-08-21T11:18:51" +ik[2247] = 5.387 +il[2247] = -52 +im[2247] = 0.1016 +ij[2247] = 27.2 +id[2248] = "2165-09-04T00:31:23" +ik[2248] = 43.949 +il[2248] = -117 +im[2248] = 0.118 +ij[2248] = 3 +id[2249] = "2165-09-10T19:31:22" +ik[2249] = 11 +il[2249] = 24 +im[2249] = 0.0837 +ij[2249] = 18 +id[2250] = "2165-09-20T08:05:35" +ik[2250] = -2.049 +il[2250] = -71 +im[2250] = 0.126 +ij[2250] = 2 +id[2251] = "2165-09-25T21:36:01" +ik[2251] = 0.587 +il[2251] = 141 +im[2251] = 0.0364 +ij[2251] = 28.6 +id[2252] = "2165-11-21T13:55:06" +ik[2252] = 0 +il[2252] = 87 +im[2252] = 0.0298 +ij[2252] = 13 +id[2253] = "2165-12-30T06:51:05" +ik[2253] = 3.43 +il[2253] = -174 +im[2253] = 0.152 +ij[2253] = 11 +id[2254] = "2166-01-17T08:15:44" +ik[2254] = 12 +il[2254] = 179 +im[2254] = 0.1389 +ij[2254] = 17 +id[2255] = "2166-02-06T08:20:11" +ik[2255] = 3.26 +il[2255] = -28 +im[2255] = 0.153 +ij[2255] = 28.2 +id[2256] = "2166-02-06T12:57:42" +ik[2256] = 76.96 +il[2256] = -96 +im[2256] = 0.1484 +ij[2256] = 7.1604 +id[2257] = "2166-02-20T14:44:16" +ik[2257] = 12 +il[2257] = 10 +im[2257] = 0.1473 +ij[2257] = 18 +id[2258] = "2166-04-02T19:54:02" +ik[2258] = -1.575 +il[2258] = -38 +im[2258] = 0.0936 +ij[2258] = 4 +id[2259] = "2166-04-06T06:50:15" +ik[2259] = 37.047 +il[2259] = -170 +im[2259] = 0.0283 +ij[2259] = 1 +id[2260] = "2166-04-11T19:28:37" +ik[2260] = 141.23 +il[2260] = 53 +im[2260] = 0.089 +ij[2260] = 14 +id[2261] = "2166-04-14T16:57:47" +ik[2261] = 2.312 +il[2261] = 118 +im[2261] = 0.1097 +ij[2261] = 28.6 +id[2262] = "2166-05-26T15:18:55" +ik[2262] = 1.587 +il[2262] = -178 +im[2262] = 0.0753 +ij[2262] = 28.8 +id[2263] = "2166-06-02T00:41:09" +ik[2263] = 0.739 +il[2263] = 102 +im[2263] = 0.0222 +ij[2263] = 28.7 +id[2264] = "2166-06-14T06:51:44" +ik[2264] = 31.445 +il[2264] = 127 +im[2264] = 0.0608 +ij[2264] = 9 +id[2265] = "2166-08-11T19:53:23" +ik[2265] = 26.024 +il[2265] = 135 +im[2265] = 0.0356 +ij[2265] = 16 +id[2266] = "2166-09-18T00:46:23" +ik[2266] = 1.982 +il[2266] = 63 +im[2266] = 0.0597 +ij[2266] = 28.1 +id[2267] = "2166-12-13T05:39:05" +ik[2267] = 0.56 +il[2267] = 130 +im[2267] = 0.0595 +ij[2267] = 12 +id[2268] = "2166-12-20T05:08:16" +ik[2268] = 0 +il[2268] = 19 +im[2268] = 0.0267 +ij[2268] = 17 +id[2269] = "2167-03-03T20:56:08" +ik[2269] = 0.869 +il[2269] = 126 +im[2269] = 0.0043 +ij[2269] = 28.1 +id[2270] = "2167-03-15T16:08:52" +ik[2270] = 0.664 +il[2270] = -40 +im[2270] = 0.0503 +ij[2270] = 27.5 +id[2271] = "2167-04-14T10:35:44" +ik[2271] = -25.577 +il[2271] = -27 +im[2271] = 0.0446 +ij[2271] = 15 +id[2272] = "2167-05-24T09:47:33" +ik[2272] = 3.032 +il[2272] = 16 +im[2272] = 0.0665 +ij[2272] = 27.6 +id[2273] = "2167-07-26T19:02:55" +ik[2273] = 4.898 +il[2273] = 139 +im[2273] = 0.0133 +ij[2273] = 27.2 +id[2274] = "2167-07-29T22:46:00" +ik[2274] = 5.142 +il[2274] = 114 +im[2274] = 0.0391 +ij[2274] = 28.2 +id[2275] = "2167-08-08T21:15:17" +ik[2275] = 34.836 +il[2275] = -126 +im[2275] = 0.0355 +ij[2275] = 8 +id[2276] = "2167-08-14T22:34:34" +ik[2276] = 11 +il[2276] = -87 +im[2276] = 0.0683 +ij[2276] = 18 +id[2277] = "2167-10-01T23:41:26" +ik[2277] = 0.501 +il[2277] = 4 +im[2277] = 0.087 +ij[2277] = 28.6 +id[2278] = "2167-10-21T13:48:43" +ik[2278] = -1.79 +il[2278] = -17 +im[2278] = 0.0079 +ij[2278] = 2 +id[2279] = "2167-10-21T14:36:23" +ik[2279] = 39.552 +il[2279] = -29 +im[2279] = 0.0071 +ij[2279] = 3 +id[2280] = "2167-11-02T04:20:27" +ik[2280] = 1.496 +il[2280] = -123 +im[2280] = 0.049 +ij[2280] = 28.8 +id[2281] = "2167-11-12T09:18:40" +ik[2281] = 1.063 +il[2281] = -99 +im[2281] = 0.1321 +ij[2281] = 28.7 +id[2282] = "2167-12-26T19:29:05" +ik[2282] = 0 +il[2282] = 178 +im[2282] = 0.1156 +ij[2282] = 13 +id[2283] = "2168-02-04T20:03:06" +ik[2283] = 4.36 +il[2283] = 179 +im[2283] = 0.173 +ij[2283] = 11 +id[2284] = "2168-02-29T08:00:54" +ik[2284] = 3.52 +il[2284] = 28 +im[2284] = 0.1983 +ij[2284] = 28.6 +id[2285] = "2168-03-16T21:34:42" +ik[2285] = 81.09 +il[2285] = -30 +im[2285] = 0.1029 +ij[2285] = 7.1931 +id[2286] = "2168-04-20T08:15:19" +ik[2286] = 1.721 +il[2286] = 139 +im[2286] = 0.1063 +ij[2286] = 28.6 +id[2287] = "2168-04-30T14:09:07" +ik[2287] = 2.019 +il[2287] = 148 +im[2287] = 0.0078 +ij[2287] = 28.8 +id[2288] = "2168-05-15T09:38:18" +ik[2288] = 37.549 +il[2288] = -2 +im[2288] = 0.0303 +ij[2288] = 1 +id[2289] = "2168-05-17T19:22:25" +ik[2289] = 0.921 +il[2289] = -125 +im[2289] = 0.0786 +ij[2289] = 28.7 +id[2290] = "2168-05-17T20:27:50" +ik[2290] = -1.572 +il[2290] = -141 +im[2290] = 0.0794 +ij[2290] = 4 +id[2291] = "2168-05-23T15:45:33" +ik[2291] = 148.84 +il[2291] = -15 +im[2291] = 0.0965 +ij[2291] = 14 +id[2292] = "2168-07-22T03:00:17" +ik[2292] = 26.138 +il[2292] = 31 +im[2292] = 0.0489 +ij[2292] = 16 +id[2293] = "2168-07-23T00:01:30" +ik[2293] = 32.362 +il[2293] = 85 +im[2293] = 0.0366 +ij[2293] = 9 +id[2294] = "2168-09-20T14:30:41" +ik[2294] = 0.448 +il[2294] = 86 +im[2294] = 0.0056 +ij[2294] = 28.2 +id[2295] = "2168-10-27T18:07:01" +ik[2295] = 3.585 +il[2295] = 34 +im[2295] = 0.0578 +ij[2295] = 27.4 +id[2296] = "2168-11-10T13:30:04" +ik[2296] = 6.154 +il[2296] = -122 +im[2296] = 0.0645 +ij[2296] = 27.1 +id[2297] = "2168-11-22T06:54:23" +ik[2297] = 1.704 +il[2297] = 92 +im[2297] = 0.058 +ij[2297] = 28.1 +id[2298] = "2168-11-30T14:07:09" +ik[2298] = 0 +il[2298] = 65 +im[2298] = 0.0081 +ij[2298] = 17 +id[2299] = "2169-02-12T20:24:26" +ik[2299] = 1.07 +il[2299] = 1 +im[2299] = 0.0148 +ij[2299] = 12 +id[2300] = "2169-03-24T21:35:39" +ik[2300] = -25.768 +il[2300] = 163 +im[2300] = 0.0366 +ij[2300] = 15 +id[2301] = "2169-05-22T00:58:20" +ik[2301] = 1.764 +il[2301] = -26 +im[2301] = 0.0387 +ij[2301] = 28.1 +id[2302] = "2169-07-04T17:33:29" +ik[2302] = 4.583 +il[2302] = 153 +im[2302] = 0.0238 +ij[2302] = 27.2 +id[2303] = "2169-07-13T20:54:30" +ik[2303] = 2.247 +il[2303] = -179 +im[2303] = 0.0695 +ij[2303] = 28.2 +id[2304] = "2169-07-24T05:22:15" +ik[2304] = 12 +il[2304] = 166 +im[2304] = 0.0354 +ij[2304] = 18 +id[2305] = "2169-09-29T05:51:43" +ik[2305] = 32.423 +il[2305] = 89 +im[2305] = 0.0264 +ij[2305] = 8 +id[2306] = "2169-10-10T03:12:41" +ik[2306] = 1.098 +il[2306] = -126 +im[2306] = 0.0787 +ij[2306] = 28.8 +id[2307] = "2169-10-14T16:31:56" +ik[2307] = 0.089 +il[2307] = 78 +im[2307] = 0.019 +ij[2307] = 28.6 +id[2308] = "2169-10-23T20:45:00" +ik[2308] = 0.67 +il[2308] = 104 +im[2308] = 0.08 +ij[2308] = 28.7 +id[2309] = "2169-11-22T17:17:37" +ik[2309] = -1.635 +il[2309] = 84 +im[2309] = 0.0815 +ij[2309] = 2 +id[2310] = "2169-12-01T03:56:18" +ik[2310] = 36.936 +il[2310] = 6 +im[2310] = 0.0798 +ij[2310] = 3 +id[2311] = "2170-01-27T15:46:00" +ik[2311] = 0 +il[2311] = 24 +im[2311] = 0.1558 +ij[2311] = 13 +id[2312] = "2170-02-21T20:42:54" +ik[2312] = 1.906 +il[2312] = -178 +im[2312] = 0.1461 +ij[2312] = 28.2 +id[2313] = "2170-03-09T20:49:19" +ik[2313] = 3.83 +il[2313] = -37 +im[2313] = 0.2202 +ij[2313] = 11 +id[2314] = "2170-04-01T08:41:59" +ik[2314] = 5.533 +il[2314] = 139 +im[2314] = 0.0995 +ij[2314] = 28.1 +id[2315] = "2170-04-20T14:48:36" +ik[2315] = 82.96 +il[2315] = -127 +im[2315] = 0.1797 +ij[2315] = 7.2107 +id[2316] = "2170-04-27T12:32:15" +ik[2316] = 4.754 +il[2316] = -27 +im[2316] = 0.0401 +ij[2316] = 28.6 +id[2317] = "2170-06-25T01:02:21" +ik[2317] = 39.61 +il[2317] = -7 +im[2317] = 0.0854 +ij[2317] = 1 +id[2318] = "2170-06-25T10:51:26" +ik[2318] = 148.8 +il[2318] = -151 +im[2318] = 0.0915 +ij[2318] = 14 +id[2319] = "2170-06-28T08:39:26" +ik[2319] = 26.191 +il[2319] = -90 +im[2319] = 0.1089 +ij[2319] = 16 +id[2320] = "2170-07-01T01:23:51" +ik[2320] = -1.704 +il[2320] = 46 +im[2320] = 0.0864 +ij[2320] = 4 +id[2321] = "2170-09-09T17:48:10" +ik[2321] = 34.057 +il[2321] = 127 +im[2321] = 0.0717 +ij[2321] = 9 +id[2322] = "2170-10-07T11:35:34" +ik[2322] = 3.233 +il[2322] = 131 +im[2322] = 0.0716 +ij[2322] = 27.4 +id[2323] = "2170-10-21T12:03:53" +ik[2323] = 6.483 +il[2323] = -99 +im[2323] = 0.0775 +ij[2323] = 27.1 +id[2324] = "2170-11-11T09:38:36" +ik[2324] = 0 +il[2324] = 142 +im[2324] = 0.0033 +ij[2324] = 17 +id[2325] = "2171-01-05T06:18:58" +ik[2325] = 0.142 +il[2325] = 11 +im[2325] = 0.0416 +ij[2325] = 27.3 +id[2326] = "2171-02-02T17:39:46" +ik[2326] = 0.547 +il[2326] = 122 +im[2326] = 0.0466 +ij[2326] = 27.5 +id[2327] = "2171-03-05T14:33:51" +ik[2327] = -25.922 +il[2327] = 122 +im[2327] = 0.027 +ij[2327] = 15 +id[2328] = "2171-04-26T19:56:00" +ik[2328] = 0.27 +il[2328] = -168 +im[2328] = 0.0602 +ij[2328] = 12 +id[2329] = "2171-07-05T05:50:55" +ik[2329] = 12 +il[2329] = 170 +im[2329] = 0.0382 +ij[2329] = 18 +id[2330] = "2171-07-25T16:54:17" +ik[2330] = 2.466 +il[2330] = -158 +im[2330] = 0.0546 +ij[2330] = 28.1 +id[2331] = "2171-09-25T20:17:18" +ik[2331] = 0.913 +il[2331] = 33 +im[2331] = 0.0099 +ij[2331] = 28.8 +id[2332] = "2171-10-14T12:16:48" +ik[2332] = 0.536 +il[2332] = -27 +im[2332] = 0.061 +ij[2332] = 28.7 +id[2333] = "2171-11-01T10:36:50" +ik[2333] = 0.454 +il[2333] = 172 +im[2333] = 0.0688 +ij[2333] = 28.6 +id[2334] = "2171-11-06T21:03:43" +ik[2334] = 31.004 +il[2334] = 67 +im[2334] = 0.0085 +ij[2334] = 8 +id[2335] = "2171-11-21T05:05:15" +ik[2335] = 25.008 +il[2335] = 85 +im[2335] = 0.027 +ij[2335] = 16 +id[2336] = "2171-12-31T13:35:25" +ik[2336] = -1.581 +il[2336] = -13 +im[2336] = 0.0569 +ij[2336] = 2 +id[2337] = "2172-01-09T10:37:20" +ik[2337] = 36.174 +il[2337] = 118 +im[2337] = 0.1081 +ij[2337] = 3 +id[2338] = "2172-03-06T10:51:54" +ik[2338] = 0 +il[2338] = -59 +im[2338] = 0.1874 +ij[2338] = 13 +id[2339] = "2172-03-09T13:55:57" +ik[2339] = 2.783 +il[2339] = -75 +im[2339] = 0.155 +ij[2339] = 28.2 +id[2340] = "2172-04-14T07:37:20" +ik[2340] = 1.93 +il[2340] = -21 +im[2340] = 0.22 +ij[2340] = 11 +id[2341] = "2172-05-09T06:40:19" +ik[2341] = 2.719 +il[2341] = 18 +im[2341] = 0.1519 +ij[2341] = 28.2 +id[2342] = "2172-05-24T19:04:40" +ik[2342] = 79.34 +il[2342] = -17 +im[2342] = 0.2062 +ij[2342] = 7.1866 +id[2343] = "2172-07-23T19:15:37" +ik[2343] = 139.35 +il[2343] = -156 +im[2343] = 0.1206 +ij[2343] = 14 +id[2344] = "2172-08-06T10:42:59" +ik[2344] = -1.96 +il[2344] = 105 +im[2344] = 0.101 +ij[2344] = 4 +id[2345] = "2172-08-07T23:46:19" +ik[2345] = 43.114 +il[2345] = -75 +im[2345] = 0.0722 +ij[2345] = 1 +id[2346] = "2172-09-12T16:31:07" +ik[2346] = 2.64 +il[2346] = 22 +im[2346] = 0.0781 +ij[2346] = 27.4 +id[2347] = "2172-10-20T12:30:18" +ik[2347] = 0 +il[2347] = 93 +im[2347] = 0.0343 +ij[2347] = 17 +id[2348] = "2172-11-13T14:43:43" +ik[2348] = 35.528 +il[2348] = -63 +im[2348] = 0.084 +ij[2348] = 9 +id[2349] = "2172-12-14T04:31:41" +ik[2349] = 0.002 +il[2349] = 31 +im[2349] = 0.0687 +ij[2349] = 27.3 +id[2350] = "2173-01-11T23:58:25" +ik[2350] = 0.538 +il[2350] = 23 +im[2350] = 0.0648 +ij[2350] = 27.5 +id[2351] = "2173-02-12T21:20:45" +ik[2351] = -26.064 +il[2351] = 13 +im[2351] = 0.0294 +ij[2351] = 15 +id[2352] = "2173-03-23T07:47:57" +ik[2352] = 2.246 +il[2352] = -122 +im[2352] = 0.067 +ij[2352] = 27.6 +id[2353] = "2173-06-15T21:00:36" +ik[2353] = 12 +il[2353] = 133 +im[2353] = 0.0508 +ij[2353] = 18 +id[2354] = "2173-06-20T18:43:07" +ik[2354] = 0.7 +il[2354] = -146 +im[2354] = 0.0518 +ij[2354] = 12 +id[2355] = "2173-09-12T22:55:57" +ik[2355] = 0.754 +il[2355] = 71 +im[2355] = 0.0589 +ij[2355] = 28.8 +id[2356] = "2173-10-06T19:44:29" +ik[2356] = 0.424 +il[2356] = -11 +im[2356] = 0.0331 +ij[2356] = 28.7 +id[2357] = "2173-10-31T00:54:08" +ik[2357] = 25.366 +il[2357] = 146 +im[2357] = 0.0254 +ij[2357] = 16 +id[2358] = "2173-11-20T20:19:27" +ik[2358] = 0.972 +il[2358] = 55 +im[2358] = 0.0653 +ij[2358] = 28.6 +id[2359] = "2173-12-06T14:42:10" +ik[2359] = 5.897 +il[2359] = -69 +im[2359] = 0.0699 +ij[2359] = 28.2 +id[2360] = "2173-12-09T20:42:23" +ik[2360] = 30.626 +il[2360] = -127 +im[2360] = 0.0613 +ij[2360] = 8 +id[2361] = "2174-02-21T03:37:17" +ik[2361] = 37.356 +il[2361] = 111 +im[2361] = 0.079 +ij[2361] = 3 +id[2362] = "2174-02-22T00:27:00" +ik[2362] = -1.65 +il[2362] = 166 +im[2362] = 0.0607 +ij[2362] = 2 +id[2363] = "2174-03-02T08:56:32" +ik[2363] = 5.329 +il[2363] = 118 +im[2363] = 0.1213 +ij[2363] = 27.4 +id[2364] = "2174-03-29T11:00:21" +ik[2364] = 4.697 +il[2364] = -15 +im[2364] = 0.1504 +ij[2364] = 27.1 +id[2365] = "2174-04-26T19:16:06" +ik[2365] = 0 +il[2365] = 129 +im[2365] = 0.2166 +ij[2365] = 13 +id[2366] = "2174-05-13T20:11:44" +ik[2366] = 6.475 +il[2366] = -95 +im[2366] = 0.2319 +ij[2366] = 27.1 +id[2367] = "2174-05-29T23:02:40" +ik[2367] = 1.53 +il[2367] = 4 +im[2367] = 0.0543 +ij[2367] = 11 +id[2368] = "2174-06-15T12:24:57" +ik[2368] = 3.226 +il[2368] = 137 +im[2368] = 0.1183 +ij[2368] = 28.1 +id[2369] = "2174-06-16T18:20:32" +ik[2369] = 2.819 +il[2369] = 53 +im[2369] = 0.1907 +ij[2369] = 28.2 +id[2370] = "2174-06-21T21:19:55" +ik[2370] = 1.462 +il[2370] = 58 +im[2370] = 0.2494 +ij[2370] = 27.4 +id[2371] = "2174-07-06T18:18:42" +ik[2371] = 70.96 +il[2371] = -111 +im[2371] = 0.2191 +ij[2371] = 7.1283 +id[2372] = "2174-07-23T16:16:12" +ik[2372] = 0.986 +il[2372] = 85 +im[2372] = 0.0086 +ij[2372] = 27.4 +id[2373] = "2174-08-25T20:23:29" +ik[2373] = 121.05 +il[2373] = -12 +im[2373] = 0.1686 +ij[2373] = 14 +id[2374] = "2174-09-06T10:32:20" +ik[2374] = -2.281 +il[2374] = -110 +im[2374] = 0.0493 +ij[2374] = 4 +id[2375] = "2174-09-23T15:00:59" +ik[2375] = 0 +il[2375] = -9 +im[2375] = 0.1435 +ij[2375] = 17 +id[2376] = "2174-09-24T21:32:15" +ik[2376] = 46.247 +il[2376] = -94 +im[2376] = 0.1562 +ij[2376] = 1 +id[2377] = "2174-11-19T09:20:21" +ik[2377] = 0.369 +il[2377] = -85 +im[2377] = 0.0907 +ij[2377] = 27.3 +id[2378] = "2174-12-19T13:47:00" +ik[2378] = 0.615 +il[2378] = 144 +im[2378] = 0.0894 +ij[2378] = 27.5 +id[2379] = "2175-01-22T08:45:30" +ik[2379] = 34.539 +il[2379] = -179 +im[2379] = 0.0712 +ij[2379] = 9 +id[2380] = "2175-01-22T15:07:40" +ik[2380] = -26.206 +il[2380] = 94 +im[2380] = 0.0683 +ij[2380] = 15 +id[2381] = "2175-03-02T06:52:33" +ik[2381] = 1.982 +il[2381] = -132 +im[2381] = 0.0718 +ij[2381] = 27.6 +id[2382] = "2175-03-12T06:09:58" +ik[2382] = 0.686 +il[2382] = -27 +im[2382] = 0.0126 +ij[2382] = 28.2 +id[2383] = "2175-05-06T13:20:00" +ik[2383] = 3.854 +il[2383] = 40 +im[2383] = 0.0231 +ij[2383] = 27.2 +id[2384] = "2175-05-28T11:37:29" +ik[2384] = 12 +il[2384] = -88 +im[2384] = 0.0608 +ij[2384] = 18 +id[2385] = "2175-08-02T10:20:54" +ik[2385] = 1.12 +il[2385] = -156 +im[2385] = 0.0022 +ij[2385] = 12 +id[2386] = "2175-10-12T18:42:04" +ik[2386] = 25.579 +il[2386] = -105 +im[2386] = 0.0041 +ij[2386] = 16 +id[2387] = "2175-11-17T14:17:48" +ik[2387] = 0.816 +il[2387] = -55 +im[2387] = 0.0644 +ij[2387] = 28.2 +id[2388] = "2175-12-12T14:05:02" +ik[2388] = 1.326 +il[2388] = -172 +im[2388] = 0.0441 +ij[2388] = 28.6 +id[2389] = "2176-01-13T10:01:03" +ik[2389] = 31.256 +il[2389] = -168 +im[2389] = 0.0753 +ij[2389] = 8 +id[2390] = "2176-01-26T12:04:39" +ik[2390] = 4.794 +il[2390] = -74 +im[2390] = 0.0757 +ij[2390] = 27.4 +id[2391] = "2176-02-11T12:11:05" +ik[2391] = 5.003 +il[2391] = 76 +im[2391] = 0.0875 +ij[2391] = 27.1 +id[2392] = "2176-03-03T14:04:34" +ik[2392] = 23 +il[2392] = -112 +im[2392] = 0.0264 +ij[2392] = 17 +id[2393] = "2176-04-20T04:25:14" +ik[2393] = 41.264 +il[2393] = 122 +im[2393] = 0.1256 +ij[2393] = 3 +id[2394] = "2176-05-13T19:13:15" +ik[2394] = -1.991 +il[2394] = 124 +im[2394] = 0.0138 +ij[2394] = 2 +id[2395] = "2176-05-26T18:13:58" +ik[2395] = 1.245 +il[2395] = -99 +im[2395] = 0.112 +ij[2395] = 27.3 +id[2396] = "2176-07-06T20:24:00" +ik[2396] = 0 +il[2396] = -100 +im[2396] = 0.153 +ij[2396] = 13 +id[2397] = "2176-07-11T21:50:27" +ik[2397] = 4.222 +il[2397] = -74 +im[2397] = 0.228 +ij[2397] = 28.1 +id[2398] = "2176-07-16T14:35:08" +ik[2398] = 3.415 +il[2398] = 80 +im[2398] = 0.3701 +ij[2398] = 28.2 +id[2399] = "2176-08-05T00:01:20" +ik[2399] = 6.53 +il[2399] = 114 +im[2399] = 0.0459 +ij[2399] = 11 +id[2400] = "2176-08-22T03:52:49" +ik[2400] = 5.679 +il[2400] = 49 +im[2400] = 0.2512 +ij[2400] = 28.1 +id[2401] = "2176-09-06T19:26:35" +ik[2401] = 61.96 +il[2401] = -30 +im[2401] = 0.3396 +ij[2401] = 7.0989 +id[2402] = "2176-09-24T18:14:12" +ik[2402] = 3.34 +il[2402] = 165 +im[2402] = 0.2117 +ij[2402] = 27.3 +id[2403] = "2176-10-17T21:37:23" +ik[2403] = 103.05 +il[2403] = -19 +im[2403] = 0.1896 +ij[2403] = 14 +id[2404] = "2176-10-28T02:20:48" +ik[2404] = -2.294 +il[2404] = 10 +im[2404] = 0.0723 +ij[2404] = 4 +id[2405] = "2176-11-12T15:53:38" +ik[2405] = 1.342 +il[2405] = -41 +im[2405] = 0.0705 +ij[2405] = 27.5 +id[2406] = "2176-11-23T22:32:09" +ik[2406] = 43.904 +il[2406] = -32 +im[2406] = 0.0124 +ij[2406] = 1 +id[2407] = "2176-12-26T12:14:30" +ik[2407] = -26.287 +il[2407] = 76 +im[2407] = 0.0945 +ij[2407] = 15 +id[2408] = "2177-02-04T13:46:32" +ik[2408] = 1.634 +il[2408] = 75 +im[2408] = 0.0109 +ij[2408] = 27.6 +id[2409] = "2177-03-14T15:07:43" +ik[2409] = 32.693 +il[2409] = 55 +im[2409] = 0.0663 +ij[2409] = 9 +id[2410] = "2177-04-14T18:56:34" +ik[2410] = 3.536 +il[2410] = -68 +im[2410] = 0.0343 +ij[2410] = 27.2 +id[2411] = "2177-05-08T09:16:06" +ik[2411] = 12 +il[2411] = -56 +im[2411] = 0.065 +ij[2411] = 18 +id[2412] = "2177-06-21T23:08:20" +ik[2412] = 0.261 +il[2412] = 162 +im[2412] = 0.0571 +ij[2412] = 28.1 +id[2413] = "2177-09-07T15:16:00" +ik[2413] = 1.04 +il[2413] = -52 +im[2413] = 0.0087 +ij[2413] = 12 +id[2414] = "2177-09-24T06:06:55" +ik[2414] = 25.733 +il[2414] = 84 +im[2414] = 0.0282 +ij[2414] = 16 +id[2415] = "2177-11-18T10:37:45" +ik[2415] = 0.479 +il[2415] = -165 +im[2415] = 0.0059 +ij[2415] = 28.5 +id[2416] = "2177-11-20T11:27:24" +ik[2416] = 4.032 +il[2416] = -158 +im[2416] = 0.0272 +ij[2416] = 28.1 +id[2417] = "2178-01-02T06:19:43" +ik[2417] = 1.395 +il[2417] = -23 +im[2417] = 0.0128 +ij[2417] = 28.6 +id[2418] = "2178-01-02T21:14:13" +ik[2418] = 4.451 +il[2418] = 119 +im[2418] = 0.0217 +ij[2418] = 27.4 +id[2419] = "2178-01-17T12:38:00" +ik[2419] = 5.329 +il[2419] = 27 +im[2419] = 0.037 +ij[2419] = 27.1 +id[2420] = "2178-02-06T01:34:24" +ik[2420] = 0 +il[2420] = 15 +im[2420] = 0.0716 +ij[2420] = 17 +id[2421] = "2178-02-22T08:18:49" +ik[2421] = 32.973 +il[2421] = 70 +im[2421] = 0.0788 +ij[2421] = 8 +id[2422] = "2178-04-10T13:43:53" +ik[2422] = 0.122 +il[2422] = 76 +im[2422] = 0.0252 +ij[2422] = 27.3 +id[2423] = "2178-05-12T14:21:15" +ik[2423] = 1.371 +il[2423] = 11 +im[2423] = 0.0465 +ij[2423] = 27.5 +id[2424] = "2178-06-09T16:35:24" +ik[2424] = -24.186 +il[2424] = -114 +im[2424] = 0.0334 +ij[2424] = 15 +id[2425] = "2178-06-30T02:13:12" +ik[2425] = 46.883 +il[2425] = -63 +im[2425] = 0.1725 +ij[2425] = 3 +id[2426] = "2178-07-30T03:47:56" +ik[2426] = -2.393 +il[2426] = -155 +im[2426] = 0.2063 +ij[2426] = 2 +id[2427] = "2178-08-07T16:31:26" +ik[2427] = 5.669 +il[2427] = 97 +im[2427] = 0.1138 +ij[2427] = 27.6 +id[2428] = "2178-09-16T21:37:54" +ik[2428] = 0 +il[2428] = 54 +im[2428] = 0.1286 +ij[2428] = 13 +id[2429] = "2178-10-02T06:35:50" +ik[2429] = 4.336 +il[2429] = 71 +im[2429] = 0.1943 +ij[2429] = 28.1 +id[2430] = "2178-10-22T18:28:54" +ik[2430] = 2.05 +il[2430] = 72 +im[2430] = 0.2519 +ij[2430] = 11 +id[2431] = "2178-11-05T19:12:52" +ik[2431] = 3.516 +il[2431] = 46 +im[2431] = 0.1752 +ij[2431] = 27.6 +id[2432] = "2178-11-21T22:43:37" +ik[2432] = 66.05 +il[2432] = 137 +im[2432] = 0.0291 +ij[2432] = 7.1271 +id[2433] = "2178-12-01T23:32:41" +ik[2433] = 1.288 +il[2433] = -139 +im[2433] = 0.1769 +ij[2433] = 28.2 +id[2434] = "2178-12-15T18:53:04" +ik[2434] = 1.437 +il[2434] = 62 +im[2434] = 0.1646 +ij[2434] = 27.6 +id[2435] = "2179-01-09T11:37:25" +ik[2435] = 114.58 +il[2435] = 45 +im[2435] = 0.166 +ij[2435] = 14 +id[2436] = "2179-01-14T10:55:30" +ik[2436] = -1.859 +il[2436] = 103 +im[2436] = 0.0844 +ij[2436] = 4 +id[2437] = "2179-01-30T17:47:11" +ik[2437] = 39.356 +il[2437] = 153 +im[2437] = 0.01 +ij[2437] = 1 +id[2438] = "2179-03-20T20:53:11" +ik[2438] = 3.031 +il[2438] = -150 +im[2438] = 0.083 +ij[2438] = 27.2 +id[2439] = "2179-04-17T03:37:22" +ik[2439] = 12 +il[2439] = 6 +im[2439] = 0.0632 +ij[2439] = 18 +id[2440] = "2179-04-24T17:25:29" +ik[2440] = 31.562 +il[2440] = -130 +im[2440] = 0.0215 +ij[2440] = 9 +id[2441] = "2179-08-10T23:24:25" +ik[2441] = 0.237 +il[2441] = 98 +im[2441] = 0.0555 +ij[2441] = 28.8 +id[2442] = "2179-09-06T20:37:54" +ik[2442] = 25.862 +il[2442] = 38 +im[2442] = 0.0467 +ij[2442] = 16 +id[2443] = "2179-10-14T11:47:07" +ik[2443] = 0.57 +il[2443] = -179 +im[2443] = 0.0146 +ij[2443] = 12 +id[2444] = "2179-12-14T02:34:43" +ik[2444] = 4.186 +il[2444] = 25 +im[2444] = 0.0194 +ij[2444] = 27.4 +id[2445] = "2179-12-28T05:27:34" +ik[2445] = 5.583 +il[2445] = 115 +im[2445] = 0.0235 +ij[2445] = 27.1 +id[2446] = "2180-01-16T13:15:02" +ik[2446] = 0 +il[2446] = -179 +im[2446] = 0.0608 +ij[2446] = 17 +id[2447] = "2180-01-22T16:48:24" +ik[2447] = 1.106 +il[2447] = -174 +im[2447] = 0.0232 +ij[2447] = 28.6 +id[2448] = "2180-02-06T15:57:26" +ik[2448] = 0.294 +il[2448] = -9 +im[2448] = 0.0271 +ij[2448] = 28.5 +id[2449] = "2180-03-15T21:27:34" +ik[2449] = 0.255 +il[2449] = -89 +im[2449] = 0.0708 +ij[2449] = 27.3 +id[2450] = "2180-04-14T13:54:41" +ik[2450] = 0.885 +il[2450] = -53 +im[2450] = 0.0742 +ij[2450] = 27.5 +id[2451] = "2180-04-21T03:45:56" +ik[2451] = 35.534 +il[2451] = 162 +im[2451] = 0.0221 +ij[2451] = 8 +id[2452] = "2180-05-13T16:41:19" +ik[2452] = -25.117 +il[2452] = -175 +im[2452] = 0.0811 +ij[2452] = 15 +id[2453] = "2180-06-25T20:52:01" +ik[2453] = 3.789 +il[2453] = -179 +im[2453] = 0.1074 +ij[2453] = 27.6 +id[2454] = "2180-08-16T10:51:10" +ik[2454] = 45.75 +il[2454] = 117 +im[2454] = 0.0613 +ij[2454] = 3 +id[2455] = "2180-09-04T22:42:44" +ik[2455] = 5.663 +il[2455] = 130 +im[2455] = 0.1493 +ij[2455] = 27.2 +id[2456] = "2180-09-07T21:07:58" +ik[2456] = -2.172 +il[2456] = -177 +im[2456] = 0.1124 +ij[2456] = 2 +id[2457] = "2180-09-30T01:51:21" +ik[2457] = 11 +il[2457] = -31 +im[2457] = 0.1527 +ij[2457] = 18 +id[2458] = "2180-11-05T11:37:55" +ik[2458] = 0 +il[2458] = 179 +im[2458] = 0.068 +ij[2458] = 13 +id[2459] = "2180-11-26T03:45:10" +ik[2459] = 12 +il[2459] = 134 +im[2459] = 0.2672 +ij[2459] = 17 +id[2460] = "2180-12-14T01:04:28" +ik[2460] = 2.49 +il[2460] = -32 +im[2460] = 0.159 +ij[2460] = 11 +id[2461] = "2181-01-18T15:57:11" +ik[2461] = 2.764 +il[2461] = -101 +im[2461] = 0.1999 +ij[2461] = 27.2 +id[2462] = "2181-01-19T10:40:31" +ik[2462] = 74.96 +il[2462] = -12 +im[2462] = 0.1986 +ij[2462] = 7.1487 +id[2463] = "2181-03-14T08:29:45" +ik[2463] = -1.616 +il[2463] = 166 +im[2463] = 0.1133 +ij[2463] = 4 +id[2464] = "2181-03-17T20:55:07" +ik[2464] = 12 +il[2464] = 13 +im[2464] = 0.1065 +ij[2464] = 18 +id[2465] = "2181-03-20T15:37:09" +ik[2465] = 37.297 +il[2465] = 119 +im[2465] = 0.0611 +ij[2465] = 1 +id[2466] = "2181-03-21T10:36:20" +ik[2466] = 135.96 +il[2466] = -159 +im[2466] = 0.0446 +ij[2466] = 14 +id[2467] = "2181-05-30T20:45:56" +ik[2467] = 31.306 +il[2467] = -4 +im[2467] = 0.0339 +ij[2467] = 9 +id[2468] = "2181-07-21T10:50:54" +ik[2468] = 0.25 +il[2468] = -82 +im[2468] = 0.0588 +ij[2468] = 28.2 +id[2469] = "2181-07-29T15:12:00" +ik[2469] = 0.032 +il[2469] = -68 +im[2469] = 0.0097 +ij[2469] = 28.8 +id[2470] = "2181-08-15T15:49:13" +ik[2470] = 3.321 +il[2470] = 87 +im[2470] = 0.0295 +ij[2470] = 28.1 +id[2471] = "2181-08-19T01:14:48" +ik[2471] = 25.981 +il[2471] = -22 +im[2471] = 0.056 +ij[2471] = 16 +id[2472] = "2181-09-13T21:37:28" +ik[2472] = 0.212 +il[2472] = -77 +im[2472] = 0.0352 +ij[2472] = 28.7 +id[2473] = "2181-11-24T02:35:08" +ik[2473] = 0.21 +il[2473] = -157 +im[2473] = 0.0325 +ij[2473] = 12 +id[2474] = "2181-12-27T13:24:10" +ik[2474] = 0 +il[2474] = -180 +im[2474] = 0.0614 +ij[2474] = 17 +id[2475] = "2182-01-28T11:22:59" +ik[2475] = 0.042 +il[2475] = 157 +im[2475] = 0.055 +ij[2475] = 28.1 +id[2476] = "2182-02-09T06:40:01" +ik[2476] = 0.48 +il[2476] = -21 +im[2476] = 0.0638 +ij[2476] = 28.6 +id[2477] = "2182-02-22T20:25:15" +ik[2477] = 0.266 +il[2477] = -99 +im[2477] = 0.063 +ij[2477] = 27.3 +id[2478] = "2182-03-23T16:44:10" +ik[2478] = 0.707 +il[2478] = -122 +im[2478] = 0.0643 +ij[2478] = 27.5 +id[2479] = "2182-04-08T15:27:54" +ik[2479] = 0.139 +il[2479] = 57 +im[2479] = 0.0722 +ij[2479] = 28.5 +id[2480] = "2182-04-18T10:57:45" +ik[2480] = 0.06 +il[2480] = -141 +im[2480] = 0.0365 +ij[2480] = 28.2 +id[2481] = "2182-04-22T08:38:15" +ik[2481] = -25.482 +il[2481] = -68 +im[2481] = 0.0688 +ij[2481] = 15 +id[2482] = "2182-06-01T20:15:57" +ik[2482] = 3.185 +il[2482] = 153 +im[2482] = 0.062 +ij[2482] = 27.6 +id[2483] = "2182-07-12T05:46:22" +ik[2483] = 35.782 +il[2483] = 46 +im[2483] = 0.0053 +ij[2483] = 8 +id[2484] = "2182-08-04T22:06:49" +ik[2484] = 5.058 +il[2484] = 34 +im[2484] = 0.0815 +ij[2484] = 27.2 +id[2485] = "2182-08-24T03:17:30" +ik[2485] = 11 +il[2485] = 144 +im[2485] = 0.0206 +ij[2485] = 18 +id[2486] = "2182-10-03T16:46:07" +ik[2486] = 41.104 +il[2486] = -23 +im[2486] = 0.0559 +ij[2486] = 3 +id[2487] = "2182-10-09T09:03:33" +ik[2487] = -1.879 +il[2487] = 148 +im[2487] = 0.0844 +ij[2487] = 2 +id[2488] = "2182-12-13T10:36:49" +ik[2488] = 0 +il[2488] = 35 +im[2488] = 0.0492 +ij[2488] = 13 +id[2489] = "2183-01-01T07:04:11" +ik[2489] = 1.422 +il[2489] = -89 +im[2489] = 0.1842 +ij[2489] = 28.2 +id[2490] = "2183-01-22T05:34:41" +ik[2490] = 4.21 +il[2490] = 114 +im[2490] = 0.0987 +ij[2490] = 11 +id[2491] = "2183-03-03T10:40:25" +ik[2491] = 80 +il[2491] = -146 +im[2491] = 0.0548 +ij[2491] = 7.1806 +id[2492] = "2183-05-01T00:25:12" +ik[2492] = 37.165 +il[2492] = -156 +im[2492] = 0.0351 +ij[2492] = 1 +id[2493] = "2183-05-01T08:12:00" +ik[2493] = -1.557 +il[2493] = 90 +im[2493] = 0.0416 +ij[2493] = 4 +id[2494] = "2183-05-09T15:57:18" +ik[2494] = 147.22 +il[2494] = 53 +im[2494] = 0.0892 +ij[2494] = 14 +id[2495] = "2183-07-07T21:31:42" +ik[2495] = 31.898 +il[2495] = 179 +im[2495] = 0.0343 +ij[2495] = 9 +id[2496] = "2183-07-16T15:12:22" +ik[2496] = 0.194 +il[2496] = -1 +im[2496] = 0.0745 +ij[2496] = 28.8 +id[2497] = "2183-07-31T02:45:46" +ik[2497] = 26.096 +il[2497] = -35 +im[2497] = 0.0693 +ij[2497] = 16 +id[2498] = "2183-09-07T16:31:03" +ik[2498] = 0.466 +il[2498] = 133 +im[2498] = 0.0384 +ij[2498] = 28.7 +id[2499] = "2183-10-22T21:50:05" +ik[2499] = 1.941 +il[2499] = 134 +im[2499] = 0.0465 +ij[2499] = 28.1 +id[2500] = "2183-11-05T07:43:41" +ik[2500] = 3.695 +il[2500] = 116 +im[2500] = 0.0472 +ij[2500] = 27.4 +id[2501] = "2183-12-08T22:31:16" +ik[2501] = 0 +il[2501] = -124 +im[2501] = 0.0631 +ij[2501] = 17 +id[2502] = "2184-01-17T19:13:21" +ik[2502] = 0.99 +il[2502] = -35 +im[2502] = 0.0481 +ij[2502] = 12 +id[2503] = "2184-04-01T13:02:14" +ik[2503] = -25.701 +il[2503] = -135 +im[2503] = 0.0642 +ij[2503] = 15 +id[2504] = "2184-04-21T13:22:02" +ik[2504] = 1.677 +il[2504] = 58 +im[2504] = 0.0298 +ij[2504] = 28.1 +id[2505] = "2184-05-10T21:46:46" +ik[2505] = 2.837 +il[2505] = 123 +im[2505] = 0.0333 +ij[2505] = 27.6 +id[2506] = "2184-06-04T20:10:30" +ik[2506] = 0.461 +il[2506] = 32 +im[2506] = 0.0249 +ij[2506] = 28.5 +id[2507] = "2184-07-12T18:02:24" +ik[2507] = 4.695 +il[2507] = 76 +im[2507] = 0.0718 +ij[2507] = 27.2 +id[2508] = "2184-08-01T01:20:34" +ik[2508] = 12 +il[2508] = 155 +im[2508] = 0.03 +ij[2508] = 18 +id[2509] = "2184-09-11T06:16:09" +ik[2509] = 33.274 +il[2509] = 122 +im[2509] = 0.0683 +ij[2509] = 8 +id[2510] = "2184-11-09T10:30:40" +ik[2510] = -1.684 +il[2510] = -89 +im[2510] = 0.0561 +ij[2510] = 2 +id[2511] = "2184-11-15T14:22:07" +ik[2511] = 37.731 +il[2511] = -87 +im[2511] = 0.077 +ij[2511] = 3 +id[2512] = "2185-01-11T11:34:52" +ik[2512] = 3.948 +il[2512] = 144 +im[2512] = 0.1442 +ij[2512] = 28.8 +id[2513] = "2185-01-14T12:52:59" +ik[2513] = 6.436 +il[2513] = 154 +im[2513] = 0.1563 +ij[2513] = 28.2 +id[2514] = "2185-01-14T15:57:45" +ik[2514] = 0 +il[2514] = 109 +im[2514] = 0.1548 +ij[2514] = 13 +id[2515] = "2185-02-09T01:58:50" +ik[2515] = 5.13 +il[2515] = -166 +im[2515] = 0.2 +ij[2515] = 28.1 +id[2516] = "2185-02-24T15:18:42" +ik[2516] = 4.19 +il[2516] = 135 +im[2516] = 0.2071 +ij[2516] = 11 +id[2517] = "2185-03-17T03:37:10" +ik[2517] = 1.618 +il[2517] = -64 +im[2517] = 0.1313 +ij[2517] = 28.1 +id[2518] = "2185-04-02T12:17:24" +ik[2518] = 2.263 +il[2518] = -49 +im[2518] = 0.1629 +ij[2518] = 28.2 +id[2519] = "2185-04-07T15:02:22" +ik[2519] = 82.96 +il[2519] = -41 +im[2519] = 0.0966 +ij[2519] = 7.2076 +id[2520] = "2185-06-08T20:59:08" +ik[2520] = 38.615 +il[2520] = 109 +im[2520] = 0.0847 +ij[2520] = 1 +id[2521] = "2185-06-13T11:13:13" +ik[2521] = 149.8 +il[2521] = -60 +im[2521] = 0.1106 +ij[2521] = 14 +id[2522] = "2185-06-14T01:05:21" +ik[2522] = -1.637 +il[2522] = 98 +im[2522] = 0.107 +ij[2522] = 4 +id[2523] = "2185-06-28T06:39:19" +ik[2523] = 0.416 +il[2523] = 152 +im[2523] = 0.0853 +ij[2523] = 28.8 +id[2524] = "2185-07-08T09:48:58" +ik[2524] = 26.193 +il[2524] = -157 +im[2524] = 0.0853 +ij[2524] = 16 +id[2525] = "2185-08-20T03:16:35" +ik[2525] = 33.323 +il[2525] = -3 +im[2525] = 0.0623 +ij[2525] = 9 +id[2526] = "2185-08-29T21:26:37" +ik[2526] = 0.804 +il[2526] = 179 +im[2526] = 0.008 +ij[2526] = 28.7 +id[2527] = "2185-10-15T15:47:13" +ik[2527] = 3.386 +il[2527] = 0 +im[2527] = 0.0486 +ij[2527] = 27.4 +id[2528] = "2185-10-29T13:23:44" +ik[2528] = 6.34 +il[2528] = 179 +im[2528] = 0.0388 +ij[2528] = 27.1 +id[2529] = "2185-11-19T01:02:56" +ik[2529] = 0 +il[2529] = -163 +im[2529] = 0.0628 +ij[2529] = 17 +id[2530] = "2186-01-10T03:33:56" +ik[2530] = 0.42 +il[2530] = -41 +im[2530] = 0.0434 +ij[2530] = 28.1 +id[2531] = "2186-03-13T04:47:22" +ik[2531] = -25.866 +il[2531] = -155 +im[2531] = 0.0649 +ij[2531] = 15 +id[2532] = "2186-03-30T13:34:42" +ik[2532] = 0.7 +il[2532] = -121 +im[2532] = 0.0504 +ij[2532] = 12 +id[2533] = "2186-06-22T18:06:09" +ik[2533] = 4.428 +il[2533] = 69 +im[2533] = 0.0593 +ij[2533] = 27.2 +id[2534] = "2186-07-01T20:21:54" +ik[2534] = 1.748 +il[2534] = 131 +im[2534] = 0.024 +ij[2534] = 28.1 +id[2535] = "2186-07-12T14:14:55" +ik[2535] = 12 +il[2535] = -32 +im[2535] = 0.0319 +ij[2535] = 18 +id[2536] = "2186-08-14T15:43:06" +ik[2536] = 0.267 +il[2536] = -94 +im[2536] = 0.0297 +ij[2536] = 28.5 +id[2537] = "2186-10-04T11:39:09" +ik[2537] = 3.894 +il[2537] = 99 +im[2537] = 0.0593 +ij[2537] = 28.2 +id[2538] = "2186-10-23T18:24:09" +ik[2538] = 31.432 +il[2538] = -179 +im[2538] = 0.0077 +ij[2538] = 8 +id[2539] = "2186-12-01T00:01:10" +ik[2539] = 0.719 +il[2539] = 110 +im[2539] = 0.065 +ij[2539] = 28.8 +id[2540] = "2186-12-15T09:18:41" +ik[2540] = -1.59 +il[2540] = 109 +im[2540] = 0.0785 +ij[2540] = 2 +id[2541] = "2186-12-25T01:20:12" +ik[2541] = 36.257 +il[2541] = -38 +im[2541] = 0.0976 +ij[2541] = 3 +id[2542] = "2187-02-19T11:13:41" +ik[2542] = 0 +il[2542] = -3 +im[2542] = 0.1645 +ij[2542] = 13 +id[2543] = "2187-03-31T12:36:55" +ik[2543] = 2.85 +il[2543] = -22 +im[2543] = 0.2364 +ij[2543] = 11 +id[2544] = "2187-04-15T03:38:41" +ik[2544] = 0.729 +il[2544] = 45 +im[2544] = 0.2193 +ij[2544] = 28.2 +id[2545] = "2187-05-11T17:51:35" +ik[2545] = 81.28 +il[2545] = 78 +im[2545] = 0.1883 +ij[2545] = 7.2018 +id[2546] = "2187-05-14T00:01:21" +ik[2546] = 3.132 +il[2546] = 7 +im[2546] = 0.1551 +ij[2546] = 28.8 +id[2547] = "2187-06-11T13:37:02" +ik[2547] = 25.896 +il[2547] = 80 +im[2547] = 0.1019 +ij[2547] = 16 +id[2548] = "2187-07-13T10:59:25" +ik[2548] = 143.99 +il[2548] = 70 +im[2548] = 0.0214 +ij[2548] = 14 +id[2549] = "2187-07-21T22:04:04" +ik[2549] = 41.607 +il[2549] = -14 +im[2549] = 0.1156 +ij[2549] = 1 +id[2550] = "2187-07-25T11:29:22" +ik[2550] = -1.846 +il[2550] = 180 +im[2550] = 0.0585 +ij[2550] = 4 +id[2551] = "2187-08-18T13:14:32" +ik[2551] = 1.324 +il[2551] = 28 +im[2551] = 0.1077 +ij[2551] = 28.7 +id[2552] = "2187-09-23T18:19:43" +ik[2552] = 2.921 +il[2552] = -55 +im[2552] = 0.0104 +ij[2552] = 27.4 +id[2553] = "2187-10-17T17:35:42" +ik[2553] = 35.143 +il[2553] = -169 +im[2553] = 0.07 +ij[2553] = 9 +id[2554] = "2187-10-30T01:13:27" +ik[2554] = 0 +il[2554] = -163 +im[2554] = 0.0749 +ij[2554] = 17 +id[2555] = "2187-12-12T14:02:10" +ik[2555] = 1.112 +il[2555] = 73 +im[2555] = 0.0753 +ij[2555] = 28.2 +id[2556] = "2187-12-23T16:46:56" +ik[2556] = 0.069 +il[2556] = 142 +im[2556] = 0.064 +ij[2556] = 27.3 +id[2557] = "2188-01-21T07:29:40" +ik[2557] = 0.534 +il[2557] = -157 +im[2557] = 0.0594 +ij[2557] = 27.5 +id[2558] = "2188-02-21T17:22:25" +ik[2558] = -26.011 +il[2558] = 9 +im[2558] = 0.0663 +ij[2558] = 15 +id[2559] = "2188-06-01T03:07:09" +ik[2559] = 0.38 +il[2559] = 120 +im[2559] = 0.0536 +ij[2559] = 12 +id[2560] = "2188-06-23T01:17:39" +ik[2560] = 12 +il[2560] = 166 +im[2560] = 0.0162 +ij[2560] = 18 +id[2561] = "2188-09-06T18:14:15" +ik[2561] = 6.123 +il[2561] = -65 +im[2561] = 0.0397 +ij[2561] = 28.1 +id[2562] = "2188-09-19T06:18:02" +ik[2562] = 0.831 +il[2562] = -125 +im[2562] = 0.0095 +ij[2562] = 28.2 +id[2563] = "2188-11-07T14:40:53" +ik[2563] = 25.253 +il[2563] = -134 +im[2563] = 0.073 +ij[2563] = 16 +id[2564] = "2188-11-12T21:58:54" +ik[2564] = 0.197 +il[2564] = 168 +im[2564] = 0.0315 +ij[2564] = 28.8 +id[2565] = "2188-11-13T21:16:43" +ik[2565] = 0.005 +il[2565] = -172 +im[2565] = 0.0168 +ij[2565] = 28.5 +id[2566] = "2188-11-26T20:35:42" +ik[2566] = 30.655 +il[2566] = -37 +im[2566] = 0.0261 +ij[2566] = 8 +id[2567] = "2189-01-27T22:45:15" +ik[2567] = 1.207 +il[2567] = 168 +im[2567] = 0.0678 +ij[2567] = 28.7 +id[2568] = "2189-01-29T12:18:16" +ik[2568] = -1.604 +il[2568] = -20 +im[2568] = 0.0932 +ij[2568] = 2 +id[2569] = "2189-02-03T01:44:06" +ik[2569] = 36.631 +il[2569] = -178 +im[2569] = 0.1017 +ij[2569] = 3 +id[2570] = "2189-04-05T10:59:53" +ik[2570] = 0 +il[2570] = -98 +im[2570] = 0.0549 +ij[2570] = 13 +id[2571] = "2189-04-24T22:12:28" +ik[2571] = 0.626 +il[2571] = -87 +im[2571] = 0.2444 +ij[2571] = 28.2 +id[2572] = "2189-05-10T10:34:16" +ik[2572] = 0.12 +il[2572] = -132 +im[2572] = 0.2266 +ij[2572] = 11 +id[2573] = "2189-05-10T12:20:56" +ik[2573] = 0.07 +il[2573] = 12 +im[2573] = 0.2241 +ij[2573] = 11 +id[2574] = "2189-05-27T09:35:41" +ik[2574] = 1.076 +il[2574] = -162 +im[2574] = 0.0646 +ij[2574] = 28.7 +id[2575] = "2189-06-18T10:02:29" +ik[2575] = 73.96 +il[2575] = 46 +im[2575] = 0.24 +ij[2575] = 7.1522 +id[2576] = "2189-07-01T09:06:02" +ik[2576] = 3.714 +il[2576] = -174 +im[2576] = 0.2103 +ij[2576] = 28.5 +id[2577] = "2189-07-19T11:44:06" +ik[2577] = 2.374 +il[2577] = -36 +im[2577] = 0.1147 +ij[2577] = 28.7 +id[2578] = "2189-08-11T21:38:15" +ik[2578] = 128.44 +il[2578] = 44 +im[2578] = 0.1594 +ij[2578] = 14 +id[2579] = "2189-08-23T02:09:40" +ik[2579] = 1.916 +il[2579] = 85 +im[2579] = 0.1125 +ij[2579] = 27.4 +id[2580] = "2189-08-24T18:26:16" +ik[2580] = -2.158 +il[2580] = -142 +im[2580] = 0.1399 +ij[2580] = 4 +id[2581] = "2189-09-06T00:17:08" +ik[2581] = 45.361 +il[2581] = -110 +im[2581] = 0.0869 +ij[2581] = 1 +id[2582] = "2189-10-05T15:32:01" +ik[2582] = 0 +il[2582] = -48 +im[2582] = 0.0881 +ij[2582] = 17 +id[2583] = "2189-11-29T22:30:35" +ik[2583] = 0.171 +il[2583] = 32 +im[2583] = 0.0251 +ij[2583] = 27.3 +id[2584] = "2189-12-27T22:32:08" +ik[2584] = 35.203 +il[2584] = -54 +im[2584] = 0.0073 +ij[2584] = 9 +id[2585] = "2189-12-29T08:06:21" +ik[2585] = 0.562 +il[2585] = 176 +im[2585] = 0.0291 +ij[2585] = 27.5 +id[2586] = "2190-01-31T06:49:22" +ik[2586] = -26.153 +il[2586] = 156 +im[2586] = 0.07 +ij[2586] = 15 +id[2587] = "2190-03-10T18:51:44" +ik[2587] = 2.09 +il[2587] = -15 +im[2587] = 0.0214 +ij[2587] = 27.6 +id[2588] = "2190-04-07T09:38:55" +ik[2588] = 2.296 +il[2588] = 30 +im[2588] = 0.0008 +ij[2588] = 28.6 +id[2589] = "2190-05-14T06:28:09" +ik[2589] = 3.956 +il[2589] = 75 +im[2589] = 0.0601 +ij[2589] = 27.2 +id[2590] = "2190-06-04T17:42:16" +ik[2590] = 12 +il[2590] = 109 +im[2590] = 0.0063 +ij[2590] = 18 +id[2591] = "2190-07-17T20:04:03" +ik[2591] = 1.02 +il[2591] = 129 +im[2591] = 0.0078 +ij[2591] = 12 +id[2592] = "2190-10-19T19:21:44" +ik[2592] = 25.506 +il[2592] = 166 +im[2592] = 0.0616 +ij[2592] = 16 +id[2593] = "2190-10-31T02:13:33" +ik[2593] = 0.155 +il[2593] = 172 +im[2593] = 0.0528 +ij[2593] = 28.8 +id[2594] = "2190-12-30T14:45:28" +ik[2594] = 30.885 +il[2594] = -155 +im[2594] = 0.0684 +ij[2594] = 8 +id[2595] = "2191-01-11T19:33:39" +ik[2595] = 0.606 +il[2595] = -110 +im[2595] = 0.0842 +ij[2595] = 28.7 +id[2596] = "2191-02-06T07:37:10" +ik[2596] = 4.97 +il[2596] = -48 +im[2596] = 0.0665 +ij[2596] = 27.4 +id[2597] = "2191-02-22T05:25:40" +ik[2597] = 0.131 +il[2597] = 136 +im[2597] = 0.085 +ij[2597] = 28.5 +id[2598] = "2191-02-23T15:48:12" +ik[2598] = 4.845 +il[2598] = -6 +im[2598] = 0.0982 +ij[2598] = 27.1 +id[2599] = "2191-03-19T04:59:22" +ik[2599] = 23 +il[2599] = 19 +im[2599] = 0.027 +ij[2599] = 17 +id[2600] = "2191-03-26T09:21:10" +ik[2600] = 39.326 +il[2600] = 22 +im[2600] = 0.1222 +ij[2600] = 3 +id[2601] = "2191-04-09T09:08:57" +ik[2601] = -1.808 +il[2601] = 157 +im[2601] = 0.1543 +ij[2601] = 2 +id[2602] = "2191-06-04T20:01:16" +ik[2602] = 2.919 +il[2602] = 168 +im[2602] = 0.2663 +ij[2602] = 28.2 +id[2603] = "2191-06-06T21:38:44" +ik[2603] = 0 +il[2603] = 163 +im[2603] = 0.195 +ij[2603] = 13 +id[2604] = "2191-06-17T10:37:58" +ik[2604] = 3.489 +il[2604] = 63 +im[2604] = 0.3039 +ij[2604] = 28.1 +id[2605] = "2191-07-06T19:15:09" +ik[2605] = 4.94 +il[2605] = 112 +im[2605] = 0.0178 +ij[2605] = 11 +id[2606] = "2191-07-24T08:04:24" +ik[2606] = 5.45 +il[2606] = -91 +im[2606] = 0.2951 +ij[2606] = 28.1 +id[2607] = "2191-07-25T06:01:03" +ik[2607] = 5.367 +il[2607] = -56 +im[2607] = 0.3299 +ij[2607] = 28.5 +id[2608] = "2191-08-11T20:41:19" +ik[2608] = 65.96 +il[2608] = -104 +im[2608] = 0.2432 +ij[2608] = 7.1007 +id[2609] = "2191-08-16T19:56:41" +ik[2609] = 5.179 +il[2609] = -44 +im[2609] = 0.0572 +ij[2609] = 28.2 +id[2610] = "2191-09-23T12:25:03" +ik[2610] = 108.62 +il[2610] = 80 +im[2610] = 0.1813 +ij[2610] = 14 +id[2611] = "2191-09-27T14:33:25" +ik[2611] = 3.208 +il[2611] = 89 +im[2611] = 0.0074 +ij[2611] = 28.5 +id[2612] = "2191-10-03T15:12:31" +ik[2612] = -2.372 +il[2612] = 138 +im[2612] = 0.192 +ij[2612] = 4 +id[2613] = "2191-10-28T11:35:15" +ik[2613] = 1.095 +il[2613] = 77 +im[2613] = 0.0862 +ij[2613] = 27.3 +id[2614] = "2191-10-28T21:48:05" +ik[2614] = 45.632 +il[2614] = -72 +im[2614] = 0.0991 +ij[2614] = 1 +id[2615] = "2191-12-01T05:56:57" +ik[2615] = 0.835 +il[2615] = 131 +im[2615] = 0.1297 +ij[2615] = 27.5 +id[2616] = "2192-01-07T18:43:16" +ik[2616] = -26.282 +il[2616] = -58 +im[2616] = 0.0338 +ij[2616] = 15 +id[2617] = "2192-02-16T01:15:44" +ik[2617] = 1.783 +il[2617] = -141 +im[2617] = 0.0317 +ij[2617] = 27.6 +id[2618] = "2192-02-25T03:21:01" +ik[2618] = 33.364 +il[2618] = -86 +im[2618] = 0.0858 +ij[2618] = 9 +id[2619] = "2192-04-20T03:07:34" +ik[2619] = 2.359 +il[2619] = 77 +im[2619] = 0.0591 +ij[2619] = 28.6 +id[2620] = "2192-04-23T04:47:50" +ik[2620] = 3.673 +il[2620] = 89 +im[2620] = 0.0695 +ij[2620] = 27.2 +id[2621] = "2192-05-16T00:37:11" +ik[2621] = 12 +il[2621] = 9 +im[2621] = 0.0251 +ij[2621] = 18 +id[2622] = "2192-05-26T11:53:44" +ik[2622] = 3.503 +il[2622] = -61 +im[2622] = 0.0365 +ij[2622] = 28.1 +id[2623] = "2192-08-24T11:18:43" +ik[2623] = 1.12 +il[2623] = 88 +im[2623] = 0.0145 +ij[2623] = 12 +id[2624] = "2192-10-01T02:15:40" +ik[2624] = 25.678 +il[2624] = 76 +im[2624] = 0.0416 +ij[2624] = 16 +id[2625] = "2193-01-01T10:50:17" +ik[2625] = 0.238 +il[2625] = 118 +im[2625] = 0.0254 +ij[2625] = 28.7 +id[2626] = "2193-01-11T06:03:45" +ik[2626] = 4.571 +il[2626] = -77 +im[2626] = 0.0358 +ij[2626] = 27.4 +id[2627] = "2193-01-26T06:18:15" +ik[2627] = 5.215 +il[2627] = 61 +im[2627] = 0.0372 +ij[2627] = 27.1 +id[2628] = "2193-02-05T03:21:01" +ik[2628] = 32.165 +il[2628] = -161 +im[2628] = 0.0748 +ij[2628] = 8 +id[2629] = "2193-02-15T02:38:29" +ik[2629] = 23 +il[2629] = -56 +im[2629] = 0.0641 +ij[2629] = 17 +id[2630] = "2193-04-23T01:09:48" +ik[2630] = 0.05 +il[2630] = -121 +im[2630] = 0.0545 +ij[2630] = 27.3 +id[2631] = "2193-05-04T23:14:59" +ik[2631] = 0.587 +il[2631] = 21 +im[2631] = 0.0872 +ij[2631] = 28.5 +id[2632] = "2193-05-28T00:37:34" +ik[2632] = 1.908 +il[2632] = -141 +im[2632] = 0.1277 +ij[2632] = 27.5 +id[2633] = "2193-06-04T15:53:08" +ik[2633] = 45.039 +il[2633] = 63 +im[2633] = 0.0492 +ij[2633] = 3 +id[2634] = "2193-07-05T11:47:12" +ik[2634] = -2.316 +il[2634] = 60 +im[2634] = 0.0434 +ij[2634] = 2 +id[2635] = "2193-08-22T12:25:34" +ik[2635] = 0 +il[2635] = 155 +im[2635] = 0.3305 +ij[2635] = 13 +id[2636] = "2193-09-01T03:24:36" +ik[2636] = 5.795 +il[2636] = 24 +im[2636] = 0.2068 +ij[2636] = 28.1 +id[2637] = "2193-09-24T17:24:03" +ik[2637] = 4.81 +il[2637] = 24 +im[2637] = 0.0681 +ij[2637] = 11 +id[2638] = "2193-10-09T10:53:05" +ik[2638] = 1.826 +il[2638] = 113 +im[2638] = 0.0349 +ij[2638] = 28.1 +id[2639] = "2193-10-24T11:28:10" +ik[2639] = 62.96 +il[2639] = -114 +im[2639] = 0.1538 +ij[2639] = 7.1174 +id[2640] = "2193-11-07T17:13:24" +ik[2640] = 6.033 +il[2640] = -62 +im[2640] = 0.1201 +ij[2640] = 28.5 +id[2641] = "2193-12-04T21:05:14" +ik[2641] = -25.817 +il[2641] = 141 +im[2641] = 0.0528 +ij[2641] = 15 +id[2642] = "2193-12-06T22:16:57" +ik[2642] = 106.41 +il[2642] = 142 +im[2642] = 0.1294 +ij[2642] = 14 +id[2643] = "2193-12-16T01:15:13" +ik[2643] = -2.021 +il[2643] = -175 +im[2643] = 0.0337 +ij[2643] = 4 +id[2644] = "2194-01-06T13:45:07" +ik[2644] = 40.862 +il[2644] = -158 +im[2644] = 0.1329 +ij[2644] = 1 +id[2645] = "2194-01-14T02:58:42" +ik[2645] = 1.357 +il[2645] = 75 +im[2645] = 0.0134 +ij[2645] = 27.6 +id[2646] = "2194-03-31T12:11:30" +ik[2646] = 3.266 +il[2646] = -62 +im[2646] = 0.0669 +ij[2646] = 27.2 +id[2647] = "2194-04-09T12:51:15" +ik[2647] = 31.9 +il[2647] = 16 +im[2647] = 0.0221 +ij[2647] = 9 +id[2648] = "2194-04-25T21:08:49" +ik[2648] = 12 +il[2648] = 43 +im[2648] = 0.0182 +ij[2648] = 18 +id[2649] = "2194-05-04T11:47:10" +ik[2649] = 2.063 +il[2649] = -96 +im[2649] = 0.0627 +ij[2649] = 28.6 +id[2650] = "2194-05-24T08:39:09" +ik[2650] = 0.878 +il[2650] = 139 +im[2650] = 0.0149 +ij[2650] = 28.2 +id[2651] = "2194-07-25T03:44:30" +ik[2651] = 0.112 +il[2651] = 89 +im[2651] = 0.0555 +ij[2651] = 28.1 +id[2652] = "2194-09-13T16:46:38" +ik[2652] = 25.815 +il[2652] = 27 +im[2652] = 0.0172 +ij[2652] = 16 +id[2653] = "2194-09-29T21:58:43" +ik[2653] = 0.79 +il[2653] = 105 +im[2653] = 0.0059 +ij[2653] = 12 +id[2654] = "2194-12-21T16:43:16" +ik[2654] = 4.284 +il[2654] = 102 +im[2654] = 0.0487 +ij[2654] = 27.4 +id[2655] = "2194-12-25T04:16:53" +ik[2655] = 0.036 +il[2655] = -31 +im[2655] = 0.0076 +ij[2655] = 28.7 +id[2656] = "2195-01-04T23:32:08" +ik[2656] = 5.49 +il[2656] = 135 +im[2656] = 0.042 +ij[2656] = 27.1 +id[2657] = "2195-01-22T22:24:42" +ik[2657] = 2.142 +il[2657] = -28 +im[2657] = 0.0079 +ij[2657] = 28.2 +id[2658] = "2195-01-24T08:03:16" +ik[2658] = 0 +il[2658] = -161 +im[2658] = 0.0155 +ij[2658] = 17 +id[2659] = "2195-03-25T21:56:28" +ik[2659] = 0.227 +il[2659] = -154 +im[2659] = 0.066 +ij[2659] = 27.3 +id[2660] = "2195-03-26T22:39:41" +ik[2660] = 34.519 +il[2660] = -155 +im[2660] = 0.0764 +ij[2660] = 8 +id[2661] = "2195-04-25T04:13:06" +ik[2661] = 1.011 +il[2661] = 40 +im[2661] = 0.0899 +ij[2661] = 27.5 +id[2662] = "2195-05-24T01:06:06" +ik[2662] = -24.874 +il[2662] = 3 +im[2662] = 0.1024 +ij[2662] = 15 +id[2663] = "2195-06-26T02:10:58" +ik[2663] = 0.63 +il[2663] = -54 +im[2663] = 0.1186 +ij[2663] = 28.5 +id[2664] = "2195-07-08T16:23:31" +ik[2664] = 4.216 +il[2664] = -145 +im[2664] = 0.1215 +ij[2664] = 27.6 +id[2665] = "2195-07-30T15:56:00" +ik[2665] = 47.053 +il[2665] = 77 +im[2665] = 0.0191 +ij[2665] = 3 +id[2666] = "2195-08-26T07:09:54" +ik[2666] = -2.293 +il[2666] = 110 +im[2666] = 0.0686 +ij[2666] = 2 +id[2667] = "2195-10-20T22:17:27" +ik[2667] = 0 +il[2667] = 68 +im[2667] = 0.1069 +ij[2667] = 13 +id[2668] = "2195-11-01T15:34:09" +ik[2668] = 0.926 +il[2668] = -76 +im[2668] = 0.1731 +ij[2668] = 28.2 +id[2669] = "2195-11-05T14:27:08" +ik[2669] = 4.533 +il[2669] = -21 +im[2669] = 0.0684 +ij[2669] = 27.2 +id[2670] = "2195-11-11T01:41:47" +ik[2670] = 1.45 +il[2670] = -143 +im[2670] = 0.2981 +ij[2670] = 28.1 +id[2671] = "2195-11-26T18:11:10" +ik[2671] = 1.07 +il[2671] = 113 +im[2671] = 0.2467 +ij[2671] = 11 +id[2672] = "2195-12-16T01:53:11" +ik[2672] = 6.21 +il[2672] = 12 +im[2672] = 0.0446 +ij[2672] = 28.1 +id[2673] = "2195-12-30T21:20:02" +ik[2673] = 70.96 +il[2673] = -151 +im[2673] = 0.1339 +ij[2673] = 7.1389 +id[2674] = "2196-01-13T20:11:17" +ik[2674] = 5.75 +il[2674] = -2 +im[2674] = 0.0888 +ij[2674] = 28.5 +id[2675] = "2196-02-22T03:17:01" +ik[2675] = -1.685 +il[2675] = -98 +im[2675] = 0.0155 +ij[2675] = 4 +id[2676] = "2196-02-25T10:12:50" +ik[2676] = 127.5 +il[2676] = -171 +im[2676] = 0.0933 +ij[2676] = 14 +id[2677] = "2196-02-26T00:47:38" +ik[2677] = 2.431 +il[2677] = -24 +im[2677] = 0.1035 +ij[2677] = 27.2 +id[2678] = "2196-03-02T18:29:05" +ik[2678] = 37.836 +il[2678] = 125 +im[2678] = 0.11 +ij[2678] = 1 +id[2679] = "2196-03-31T07:44:16" +ik[2679] = 12 +il[2679] = -165 +im[2679] = 0.0869 +ij[2679] = 18 +id[2680] = "2196-05-16T13:53:28" +ik[2680] = 31.304 +il[2680] = 180 +im[2680] = 0.0107 +ij[2680] = 9 +id[2681] = "2196-05-18T19:29:46" +ik[2681] = 1.429 +il[2681] = 117 +im[2681] = 0.0249 +ij[2681] = 28.6 +id[2682] = "2196-07-16T06:55:37" +ik[2682] = 5.962 +il[2682] = 142 +im[2682] = 0.0319 +ij[2682] = 28.1 +id[2683] = "2196-08-26T02:41:34" +ik[2683] = 25.936 +il[2683] = -113 +im[2683] = 0.0087 +ij[2683] = 16 +id[2684] = "2196-11-06T22:14:43" +ik[2684] = 0.11 +il[2684] = -46 +im[2684] = 0.0114 +ij[2684] = 12 +id[2685] = "2197-01-03T21:57:04" +ik[2685] = 0 +il[2685] = -19 +im[2685] = 0.0134 +ij[2685] = 17 +id[2686] = "2197-03-02T21:29:57" +ik[2686] = 0.269 +il[2686] = -174 +im[2686] = 0.0162 +ij[2686] = 27.3 +id[2687] = "2197-04-01T01:05:48" +ik[2687] = 0.761 +il[2687] = 54 +im[2687] = 0.0207 +ij[2687] = 27.5 +id[2688] = "2197-04-30T11:20:57" +ik[2688] = -25.367 +il[2688] = -177 +im[2688] = 0.0306 +ij[2688] = 15 +id[2689] = "2197-06-10T01:37:28" +ik[2689] = 36.271 +il[2689] = 4 +im[2689] = 0.0189 +ij[2689] = 8 +id[2690] = "2197-06-10T17:01:19" +ik[2690] = 3.373 +il[2690] = 139 +im[2690] = 0.0107 +ij[2690] = 27.6 +id[2691] = "2197-08-15T02:47:12" +ik[2691] = 5.254 +il[2691] = -85 +im[2691] = 0.1 +ij[2691] = 27.2 +id[2692] = "2197-08-25T07:14:54" +ik[2692] = 0.144 +il[2692] = -52 +im[2692] = 0.0795 +ij[2692] = 28.5 +id[2693] = "2197-09-03T18:54:54" +ik[2693] = 11 +il[2693] = -135 +im[2693] = 0.0498 +ij[2693] = 18 +id[2694] = "2197-09-14T20:32:03" +ik[2694] = 42.902 +il[2694] = -51 +im[2694] = 0.0964 +ij[2694] = 3 +id[2695] = "2197-09-27T07:41:55" +ik[2695] = -1.984 +il[2695] = -96 +im[2695] = 0.1344 +ij[2695] = 2 +id[2696] = "2197-11-22T07:07:23" +ik[2696] = 5.608 +il[2696] = 96 +im[2696] = 0.2008 +ij[2696] = 28.6 +id[2697] = "2197-11-29T10:13:19" +ik[2697] = 0 +il[2697] = 119 +im[2697] = 0.023 +ij[2697] = 13 +id[2698] = "2198-01-07T22:22:44" +ik[2698] = 3.8 +il[2698] = -63 +im[2698] = 0.031 +ij[2698] = 11 +id[2699] = "2198-02-13T22:15:38" +ik[2699] = 3.177 +il[2699] = 92 +im[2699] = 0.1407 +ij[2699] = 28.2 +id[2700] = "2198-02-16T09:15:55" +ik[2700] = 78.96 +il[2700] = -50 +im[2700] = 0.0557 +ij[2700] = 7.1674 +id[2701] = "2198-04-13T09:19:42" +ik[2701] = -1.562 +il[2701] = 118 +im[2701] = 0.0319 +ij[2701] = 4 +id[2702] = "2198-04-15T10:04:56" +ik[2702] = 37.02 +il[2702] = 126 +im[2702] = 0.0214 +ij[2702] = 1 +id[2703] = "2198-04-22T14:01:44" +ik[2703] = 144.16 +il[2703] = 135 +im[2703] = 0.0921 +ij[2703] = 14 +id[2704] = "2198-04-29T16:41:34" +ik[2704] = 1.392 +il[2704] = 163 +im[2704] = 0.044 +ij[2704] = 28.5 +id[2705] = "2198-06-04T03:00:49" +ik[2705] = 0.502 +il[2705] = -14 +im[2705] = 0.0833 +ij[2705] = 28.6 +id[2706] = "2198-06-22T17:02:21" +ik[2706] = 31.564 +il[2706] = -46 +im[2706] = 0.0176 +ij[2706] = 9 +id[2707] = "2198-08-07T17:38:30" +ik[2707] = 26.054 +il[2707] = 29 +im[2707] = 0.0185 +ij[2707] = 16 +id[2708] = "2198-09-15T00:06:36" +ik[2708] = 1.329 +il[2708] = -57 +im[2708] = 0.0361 +ij[2708] = 28.8 +id[2709] = "2198-09-25T08:22:18" +ik[2709] = 1.969 +il[2709] = -80 +im[2709] = 0.0629 +ij[2709] = 28.1 +id[2710] = "2198-10-07T14:57:36" +ik[2710] = 1.73 +il[2710] = -57 +im[2710] = 0.0539 +ij[2710] = 28.1 +id[2711] = "2198-12-16T05:50:38" +ik[2711] = 0 +il[2711] = 54 +im[2711] = 0.0285 +ij[2711] = 17 +id[2712] = "2198-12-25T04:35:10" +ik[2712] = 0.74 +il[2712] = 165 +im[2712] = 0.0391 +ij[2712] = 12 +id[2713] = "2199-03-11T08:29:27" +ik[2713] = 0.643 +il[2713] = -77 +im[2713] = 0.007 +ij[2713] = 27.5 +id[2714] = "2199-03-20T20:00:28" +ik[2714] = 1.278 +il[2714] = -155 +im[2714] = 0.0518 +ij[2714] = 28.1 +id[2715] = "2199-04-10T05:17:54" +ik[2715] = -25.626 +il[2715] = -88 +im[2715] = 0.0131 +ij[2715] = 15 +id[2716] = "2199-05-19T22:25:02" +ik[2716] = 2.957 +il[2716] = 44 +im[2716] = 0.0297 +ij[2716] = 27.6 +id[2717] = "2199-07-22T01:10:51" +ik[2717] = 4.819 +il[2717] = -98 +im[2717] = 0.0455 +ij[2717] = 27.2 +id[2718] = "2199-07-27T01:41:31" +ik[2718] = 3.358 +il[2718] = -57 +im[2718] = 0.0791 +ij[2718] = 28.2 +id[2719] = "2199-08-10T05:31:11" +ik[2719] = 12 +il[2719] = 24 +im[2719] = 0.0762 +ij[2719] = 18 +id[2720] = "2199-08-22T09:23:41" +ik[2720] = 34.262 +il[2720] = 84 +im[2720] = 0.0753 +ij[2720] = 8 +id[2721] = "2199-10-28T17:09:03" +ik[2721] = -1.748 +il[2721] = -98 +im[2721] = 0.033 +ij[2721] = 2 +id[2722] = "2199-10-31T07:46:59" +ik[2722] = 38.82 +il[2722] = 67 +im[2722] = 0.0854 +ij[2722] = 3 +id[2723] = "2199-11-25T11:31:20" +ik[2723] = 0.671 +il[2723] = -105 +im[2723] = 0.0311 +ij[2723] = 28.6 +id[2724] = "2199-12-11T03:22:39" +ik[2724] = 1.446 +il[2724] = 168 +im[2724] = 0.0613 +ij[2724] = 28.5 +id[2725] = "2199-12-18T10:50:16" +ik[2725] = 21.413 +il[2725] = 127 +im[2725] = 0.1236 +ij[2725] = 16 +id[2726] = "2200-01-02T14:02:12" +ik[2726] = 0 +il[2726] = -135 +im[2726] = 0.1176 +ij[2726] = 13 +id[2727] = "2200-01-23T10:03:41" +ik[2727] = 2.685 +il[2727] = 124 +im[2727] = 0.1904 +ij[2727] = 28.6 +id[2728] = "2200-02-12T11:29:24" +ik[2728] = 4.36 +il[2728] = -83 +im[2728] = 0.1143 +ij[2728] = 11 +id[2729] = "2200-02-27T22:38:09" +ik[2729] = 1.72 +il[2729] = 53 +im[2729] = 0.0356 +ij[2729] = 28.1 +id[2730] = "2200-03-25T17:08:49" +ik[2730] = 82.13 +il[2730] = 10 +im[2730] = 0.0537 +ij[2730] = 7.1993 +id[2731] = "2200-05-25T05:21:59" +ik[2731] = 37.862 +il[2731] = 46 +im[2731] = 0.0699 +ij[2731] = 1 +id[2732] = "2200-05-28T18:17:30" +ik[2732] = -1.59 +il[2732] = -114 +im[2732] = 0.1028 +ij[2732] = 4 +id[2733] = "2200-06-01T13:41:43" +ik[2733] = 149.99 +il[2733] = -8 +im[2733] = 0.0684 +ij[2733] = 14 +id[2734] = "2200-06-20T23:32:09" +ik[2734] = 0.65 +il[2734] = 32 +im[2734] = 0.0312 +ij[2734] = 28.6 +id[2735] = "2200-07-06T00:00:00" +ik[2735] = -32.496 +il[2735] = 170 +im[2735] = 0.055 +ij[2735] = 15 +id[2736] = "2200-08-02T17:39:14" +ik[2736] = 32.672 +il[2736] = 175 +im[2736] = 0.0388 +ij[2736] = 9 +id[2737] = "2200-08-11T22:06:07" +ik[2737] = 0.904 +il[2737] = -163 +im[2737] = 0.0546 +ij[2737] = 28.5 +id[2738] = "2200-09-02T11:27:16" +ik[2738] = 1.693 +il[2738] = -154 +im[2738] = 0.0609 +ij[2738] = 28.8 +id[2739] = "2200-09-24T03:10:12" +ik[2739] = 0.678 +il[2739] = -179 +im[2739] = 0.0394 +ij[2739] = 28.2 +id[2740] = "2200-10-24T12:52:34" +ik[2740] = 3.517 +il[2740] = -28 +im[2740] = 0.0176 +ij[2740] = 27.4 +id[2741] = "2200-11-07T09:00:31" +ik[2741] = 6.218 +il[2741] = 165 +im[2741] = 0.0364 +ij[2741] = 27.1 +id[2742] = "2200-11-27T13:09:35" +ik[2742] = 0 +il[2742] = -58 +im[2742] = 0.0475 +ij[2742] = 17 +id[2743] = "2200-12-04T13:43:15" +ik[2743] = 0.629 +il[2743] = 0 +im[2743] = 0.0535 +ij[2743] = 28.7 +id[2744] = "2200-12-09T18:11:00" +ik[2744] = 1.36 +il[2744] = -16 +im[2744] = 0.0131 +ij[2744] = 28.1 +id[2745] = "2201-03-02T05:30:17" +ik[2745] = 1.01 +il[2745] = -72 +im[2745] = 0.0465 +ij[2745] = 12 +id[2746] = "2201-03-21T19:07:18" +ik[2746] = -25.806 +il[2746] = 50 +im[2746] = 0.018 +ij[2746] = 15 +id[2747] = "2201-06-06T07:27:52" +ik[2747] = 1.74 +il[2747] = -83 +im[2747] = 0.0616 +ij[2747] = 28.1 +id[2748] = "2201-07-01T11:03:28" +ik[2748] = 4.526 +il[2748] = 109 +im[2748] = 0.0292 +ij[2748] = 27.2 +id[2749] = "2201-07-16T23:24:05" +ik[2749] = 2.182 +il[2749] = 76 +im[2749] = 0.0327 +ij[2749] = 28.2 +id[2750] = "2201-07-21T01:32:51" +ik[2750] = 12 +il[2750] = 83 +im[2750] = 0.0619 +ij[2750] = 18 +id[2751] = "2201-10-09T14:01:00" +ik[2751] = 32.023 +il[2751] = -43 +im[2751] = 0.0144 +ij[2751] = 8 +id[2752] = "2201-12-01T16:13:58" +ik[2752] = -1.615 +il[2752] = 77 +im[2752] = 0.0637 +ij[2752] = 2 +id[2753] = "2201-12-06T16:42:42" +ik[2753] = 0.031 +il[2753] = 118 +im[2753] = 0.0471 +ij[2753] = 28.6 +id[2754] = "2201-12-10T21:19:00" +ik[2754] = 36.617 +il[2754] = 89 +im[2754] = 0.1027 +ij[2754] = 3 +id[2755] = "2202-02-05T13:42:11" +ik[2755] = 0 +il[2755] = 31 +im[2755] = 0.1684 +ij[2755] = 13 +id[2756] = "2202-02-27T18:36:31" +ik[2756] = 1.86 +il[2756] = 160 +im[2756] = 0.1055 +ij[2756] = 28.2 +id[2757] = "2202-03-18T14:40:31" +ik[2757] = 3.53 +il[2757] = 27 +im[2757] = 0.2238 +ij[2757] = 11 +id[2758] = "2202-04-30T12:44:46" +ik[2758] = 83.96 +il[2758] = -111 +im[2758] = 0.0986 +ij[2758] = 7.2095 +id[2759] = "2202-06-23T04:15:54" +ik[2759] = 26.163 +il[2759] = 176 +im[2759] = 0.104 +ij[2759] = 16 +id[2760] = "2202-07-03T02:40:35" +ik[2760] = 147.54 +il[2760] = -63 +im[2760] = 0.1025 +ij[2760] = 14 +id[2761] = "2202-07-05T13:51:01" +ik[2761] = 40.259 +il[2761] = 153 +im[2761] = 0.117 +ij[2761] = 1 +id[2762] = "2202-07-06T20:48:50" +ik[2762] = 1.942 +il[2762] = 61 +im[2762] = 0.1123 +ij[2762] = 28.6 +id[2763] = "2202-07-11T10:16:38" +ik[2763] = -1.75 +il[2763] = -96 +im[2763] = 0.0361 +ij[2763] = 4 +id[2764] = "2202-08-18T01:31:52" +ik[2764] = 2.176 +il[2764] = 41 +im[2764] = 0.0896 +ij[2764] = 28.8 +id[2765] = "2202-09-23T14:11:14" +ik[2765] = 34.471 +il[2765] = -153 +im[2765] = 0.0235 +ij[2765] = 9 +id[2766] = "2202-10-03T18:59:06" +ik[2766] = 3.133 +il[2766] = -125 +im[2766] = 0.0459 +ij[2766] = 27.4 +id[2767] = "2202-11-04T11:19:39" +ik[2767] = 1.268 +il[2767] = -60 +im[2767] = 0.0092 +ij[2767] = 28.5 +id[2768] = "2202-11-08T02:38:10" +ik[2768] = 0 +il[2768] = 106 +im[2768] = 0.059 +ij[2768] = 17 +id[2769] = "2202-11-26T21:44:53" +ik[2769] = 0.803 +il[2769] = 4 +im[2769] = 0.069 +ij[2769] = 28.7 +id[2770] = "2203-01-01T21:05:48" +ik[2770] = 0.122 +il[2770] = 8 +im[2770] = 0.0125 +ij[2770] = 27.3 +id[2771] = "2203-01-30T09:19:31" +ik[2771] = 0.539 +il[2771] = 108 +im[2771] = 0.0033 +ij[2771] = 27.5 +id[2772] = "2203-03-02T10:33:20" +ik[2772] = -25.956 +il[2772] = 42 +im[2772] = 0.0284 +ij[2772] = 15 +id[2773] = "2203-05-11T19:51:38" +ik[2773] = 0.01 +il[2773] = -135 +im[2773] = 0.0087 +ij[2773] = 12 +id[2774] = "2203-07-02T06:42:23" +ik[2774] = 12 +il[2774] = 7 +im[2774] = 0.059 +ij[2774] = 18 +id[2775] = "2203-08-10T05:39:44" +ik[2775] = 3.373 +il[2775] = 51 +im[2775] = 0.045 +ij[2775] = 28.1 +id[2776] = "2203-11-15T15:47:40" +ik[2776] = 30.837 +il[2776] = 121 +im[2776] = 0.0019 +ij[2776] = 8 +id[2777] = "2203-11-17T14:26:43" +ik[2777] = 25.11 +il[2777] = 160 +im[2777] = 0.033 +ij[2777] = 16 +id[2778] = "2203-12-24T09:10:25" +ik[2778] = 0.591 +il[2778] = -126 +im[2778] = 0.0533 +ij[2778] = 28.6 +id[2779] = "2204-01-11T15:42:52" +ik[2779] = -1.583 +il[2779] = -48 +im[2779] = 0.0054 +ij[2779] = 2 +id[2780] = "2204-01-19T11:38:58" +ik[2780] = 36.251 +il[2780] = 89 +im[2780] = 0.0968 +ij[2780] = 3 +id[2781] = "2204-01-30T01:58:29" +ik[2781] = 0.364 +il[2781] = -25 +im[2781] = 0.1166 +ij[2781] = 28.8 +id[2782] = "2204-03-17T02:41:03" +ik[2782] = 0 +il[2782] = 55 +im[2782] = 0.1257 +ij[2782] = 13 +id[2783] = "2204-03-24T19:33:12" +ik[2783] = 4.52 +il[2783] = -125 +im[2783] = 0.1785 +ij[2783] = 28.2 +id[2784] = "2204-04-24T07:49:51" +ik[2784] = 1.27 +il[2784] = -41 +im[2784] = 0.2543 +ij[2784] = 11 +id[2785] = "2204-05-11T21:11:50" +ik[2785] = 1.449 +il[2785] = 81 +im[2785] = 0.0596 +ij[2785] = 28.6 +id[2786] = "2204-05-28T10:13:34" +ik[2786] = 0.613 +il[2786] = 42 +im[2786] = 0.0667 +ij[2786] = 28.2 +id[2787] = "2204-06-03T03:45:39" +ik[2787] = 78.04 +il[2787] = -166 +im[2787] = 0.2021 +ij[2787] = 7.1754 +id[2788] = "2204-07-14T16:32:16" +ik[2788] = 3.343 +il[2788] = 47 +im[2788] = 0.1679 +ij[2788] = 28.6 +id[2789] = "2204-07-21T08:52:15" +ik[2789] = 2.952 +il[2789] = -133 +im[2789] = 0.0227 +ij[2789] = 28.8 +id[2790] = "2204-07-31T12:47:21" +ik[2790] = 136.42 +il[2790] = -93 +im[2790] = 0.0939 +ij[2790] = 14 +id[2791] = "2204-08-14T06:08:39" +ik[2791] = -2.028 +il[2791] = 141 +im[2791] = 0.1194 +ij[2791] = 4 +id[2792] = "2204-08-19T11:11:54" +ik[2792] = 43.963 +il[2792] = 116 +im[2792] = 0.0168 +ij[2792] = 1 +id[2793] = "2204-09-07T09:59:35" +ik[2793] = 2.436 +il[2793] = -41 +im[2793] = 0.1164 +ij[2793] = 27.4 +id[2794] = "2204-10-16T13:44:26" +ik[2794] = 0 +il[2794] = -73 +im[2794] = 0.0259 +ij[2794] = 17 +id[2795] = "2204-11-16T06:39:32" +ik[2795] = 1.02 +il[2795] = -24 +im[2795] = 0.0577 +ij[2795] = 28.7 +id[2796] = "2204-11-30T20:34:20" +ik[2796] = 35.545 +il[2796] = -89 +im[2796] = 0.0565 +ij[2796] = 9 +id[2797] = "2204-12-10T08:19:32" +ik[2797] = 0.047 +il[2797] = -172 +im[2797] = 0.0311 +ij[2797] = 27.3 +id[2798] = "2205-01-06T00:25:16" +ik[2798] = 0.044 +il[2798] = -151 +im[2798] = 0.0602 +ij[2798] = 28.5 +id[2799] = "2205-01-08T07:19:59" +ik[2799] = 0.538 +il[2799] = 127 +im[2799] = 0.0274 +ij[2799] = 27.5 +id[2800] = "2205-02-09T12:07:08" +ik[2800] = -26.099 +il[2800] = 9 +im[2800] = 0.0279 +ij[2800] = 15 +id[2801] = "2205-03-19T22:38:39" +ik[2801] = 2.19 +il[2801] = -139 +im[2801] = 0.0497 +ij[2801] = 27.6 +id[2802] = "2205-04-20T03:57:03" +ik[2802] = 0.487 +il[2802] = 90 +im[2802] = 0.0235 +ij[2802] = 28.2 +id[2803] = "2205-06-12T22:25:00" +ik[2803] = 12 +il[2803] = -38 +im[2803] = 0.0559 +ij[2803] = 18 +id[2804] = "2205-07-02T01:14:18" +ik[2804] = 0.84 +il[2804] = 106 +im[2804] = 0.003 +ij[2804] = 12 +id[2805] = "2205-10-27T23:42:31" +ik[2805] = 25.422 +il[2805] = 24 +im[2805] = 0.0329 +ij[2805] = 16 +id[2806] = "2205-12-04T16:55:30" +ik[2806] = 4.496 +il[2806] = 129 +im[2806] = 0.042 +ij[2806] = 28.2 +id[2807] = "2205-12-18T08:39:13" +ik[2807] = 30.675 +il[2807] = 25 +im[2807] = 0.0521 +ij[2807] = 8 +id[2808] = "2206-01-03T01:09:52" +ik[2808] = 0.459 +il[2808] = -72 +im[2808] = 0.0331 +ij[2808] = 28.8 +id[2809] = "2206-01-12T03:03:48" +ik[2809] = 0.971 +il[2809] = -14 +im[2809] = 0.0887 +ij[2809] = 28.6 +id[2810] = "2206-02-20T22:37:01" +ik[2810] = 5.185 +il[2810] = 72 +im[2810] = 0.0787 +ij[2810] = 27.4 +id[2811] = "2206-03-05T08:26:00" +ik[2811] = 37.927 +il[2811] = 43 +im[2811] = 0.0751 +ij[2811] = 3 +id[2812] = "2206-03-10T06:41:33" +ik[2812] = -1.692 +il[2812] = 116 +im[2812] = 0.1371 +ij[2812] = 2 +id[2813] = "2206-03-13T15:40:26" +ik[2813] = 4.689 +il[2813] = 13 +im[2813] = 0.1038 +ij[2813] = 27.1 +id[2814] = "2206-04-25T10:36:33" +ik[2814] = 0 +il[2814] = 134 +im[2814] = 0.1006 +ij[2814] = 17 +id[2815] = "2206-05-09T04:28:36" +ik[2815] = 0 +il[2815] = -10 +im[2815] = 0.1548 +ij[2815] = 18 +id[2816] = "2206-05-10T12:47:51" +ik[2816] = 0 +il[2816] = -121 +im[2816] = 0.0932 +ij[2816] = 13 +id[2817] = "2206-06-12T10:23:38" +ik[2817] = 2.72 +il[2817] = -144 +im[2817] = 0.2605 +ij[2817] = 11 +id[2818] = "2206-06-26T16:29:47" +ik[2818] = 3.322 +il[2818] = 69 +im[2818] = 0.3204 +ij[2818] = 28.2 +id[2819] = "2206-06-29T11:23:41" +ik[2819] = 4.014 +il[2819] = 172 +im[2819] = 0.2999 +ij[2819] = 28.1 +id[2820] = "2206-07-20T11:50:26" +ik[2820] = 70.96 +il[2820] = 11 +im[2820] = 0.1685 +ij[2820] = 7.1161 +id[2821] = "2206-09-05T00:40:13" +ik[2821] = 117.49 +il[2821] = -85 +im[2821] = 0.1865 +ij[2821] = 14 +id[2822] = "2206-09-15T22:52:14" +ik[2822] = -2.335 +il[2822] = 50 +im[2822] = 0.1547 +ij[2822] = 4 +id[2823] = "2206-09-15T23:03:59" +ik[2823] = 0 +il[2823] = 47 +im[2823] = 0.1549 +ij[2823] = 17 +id[2824] = "2206-10-07T05:57:59" +ik[2824] = 46.352 +il[2824] = 153 +im[2824] = 0.0896 +ij[2824] = 1 +id[2825] = "2206-10-31T21:36:07" +ik[2825] = 1.506 +il[2825] = 161 +im[2825] = 0.126 +ij[2825] = 28.7 +id[2826] = "2206-11-13T19:27:15" +ik[2826] = 0.53 +il[2826] = -40 +im[2826] = 0.1258 +ij[2826] = 27.3 +id[2827] = "2206-12-14T17:31:39" +ik[2827] = 0.657 +il[2827] = -69 +im[2827] = 0.1124 +ij[2827] = 27.5 +id[2828] = "2207-01-18T15:30:55" +ik[2828] = -26.241 +il[2828] = -61 +im[2828] = 0.0278 +ij[2828] = 15 +id[2829] = "2207-02-05T08:47:13" +ik[2829] = 34.119 +il[2829] = -150 +im[2829] = 0.0426 +ij[2829] = 9 +id[2830] = "2207-02-26T10:51:27" +ik[2830] = 1.913 +il[2830] = 20 +im[2830] = 0.0698 +ij[2830] = 27.6 +id[2831] = "2207-03-04T20:06:04" +ik[2831] = 1.203 +il[2831] = -58 +im[2831] = 0.015 +ij[2831] = 28.5 +id[2832] = "2207-03-18T02:57:14" +ik[2832] = 0.954 +il[2832] = -34 +im[2832] = 0.0072 +ij[2832] = 28.2 +id[2833] = "2207-05-03T05:51:52" +ik[2833] = 3.793 +il[2833] = 0 +im[2833] = 0.0289 +ij[2833] = 27.2 +id[2834] = "2207-05-25T10:57:15" +ik[2834] = 12 +il[2834] = 144 +im[2834] = 0.0474 +ij[2834] = 18 +id[2835] = "2207-06-09T22:34:37" +ik[2835] = 0.021 +il[2835] = 113 +im[2835] = 0.0342 +ij[2835] = 28.2 +id[2836] = "2207-08-11T23:38:18" +ik[2836] = 1.14 +il[2836] = -17 +im[2836] = 0.0345 +ij[2836] = 12 +id[2837] = "2207-10-09T22:58:22" +ik[2837] = 25.618 +il[2837] = 42 +im[2837] = 0.0486 +ij[2837] = 16 +id[2838] = "2207-11-20T00:45:08" +ik[2838] = 0.995 +il[2838] = 61 +im[2838] = 0.0237 +ij[2838] = 28.2 +id[2839] = "2207-12-18T16:35:32" +ik[2839] = 0.909 +il[2839] = 98 +im[2839] = 0.0252 +ij[2839] = 28.8 +id[2840] = "2208-01-22T04:25:47" +ik[2840] = 4.706 +il[2840] = -112 +im[2840] = 0.0733 +ij[2840] = 27.4 +id[2841] = "2208-01-22T16:51:13" +ik[2841] = 31.532 +il[2841] = 67 +im[2841] = 0.0711 +ij[2841] = 8 +id[2842] = "2208-01-31T21:29:28" +ik[2842] = 1.068 +il[2842] = 85 +im[2842] = 0.0545 +ij[2842] = 28.6 +id[2843] = "2208-02-06T17:53:54" +ik[2843] = 5.087 +il[2843] = -166 +im[2843] = 0.0808 +ij[2843] = 27.1 +id[2844] = "2208-02-27T05:04:37" +ik[2844] = 23 +il[2844] = -140 +im[2844] = 0.0191 +ij[2844] = 17 +id[2845] = "2208-04-26T06:13:35" +ik[2845] = 0.641 +il[2845] = 41 +im[2845] = 0.068 +ij[2845] = 28.7 +id[2846] = "2208-05-07T08:02:58" +ik[2846] = 42.56 +il[2846] = 119 +im[2846] = 0.0144 +ij[2846] = 3 +id[2847] = "2208-05-11T07:03:51" +ik[2847] = 0.499 +il[2847] = 171 +im[2847] = 0.1212 +ij[2847] = 27.3 +id[2848] = "2208-06-04T02:05:08" +ik[2848] = -2.115 +il[2848] = 111 +im[2848] = 0.0415 +ij[2848] = 2 +id[2849] = "2208-06-28T15:00:09" +ik[2849] = 3.814 +il[2849] = 151 +im[2849] = 0.2213 +ij[2849] = 27.5 +id[2850] = "2208-07-25T00:40:44" +ik[2850] = 0 +il[2850] = -101 +im[2850] = 0.3214 +ij[2850] = 13 +id[2851] = "2208-07-30T07:49:12" +ik[2851] = 5.391 +il[2851] = -157 +im[2851] = 0.0268 +ij[2851] = 28.1 +id[2852] = "2208-07-30T14:53:34" +ik[2852] = 3.649 +il[2852] = 100 +im[2852] = 0.0078 +ij[2852] = 28.2 +id[2853] = "2208-08-24T11:30:19" +ik[2853] = 6.57 +il[2853] = 11 +im[2853] = 0.2073 +ij[2853] = 11 +id[2854] = "2208-09-09T15:15:38" +ik[2854] = 4.388 +il[2854] = -48 +im[2854] = 0.0119 +ij[2854] = 28.1 +id[2855] = "2208-09-24T06:50:21" +ik[2855] = 61.26 +il[2855] = -137 +im[2855] = 0.1196 +ij[2855] = 7.104 +id[2856] = "2208-10-26T17:21:53" +ik[2856] = 2.302 +il[2856] = 22 +im[2856] = 0.2454 +ij[2856] = 27.5 +id[2857] = "2208-11-04T20:52:03" +ik[2857] = 102.84 +il[2857] = 59 +im[2857] = 0.0441 +ij[2857] = 14 +id[2858] = "2208-11-15T04:46:55" +ik[2858] = -2.206 +il[2858] = 40 +im[2858] = 0.1002 +ij[2858] = 4 +id[2859] = "2208-12-11T02:51:56" +ik[2859] = 42.774 +il[2859] = -41 +im[2859] = 0.1346 +ij[2859] = 1 +id[2860] = "2208-12-20T07:12:55" +ik[2860] = -26.253 +il[2860] = -18 +im[2860] = 0.1219 +ij[2860] = 15 +id[2861] = "2209-01-30T00:38:30" +ik[2861] = 1.536 +il[2861] = 108 +im[2861] = 0.024 +ij[2861] = 27.6 +id[2862] = "2209-03-25T09:45:26" +ik[2862] = 32.38 +il[2862] = 125 +im[2862] = 0.0322 +ij[2862] = 9 +id[2863] = "2209-04-10T21:41:23" +ik[2863] = 3.45 +il[2863] = 102 +im[2863] = 0.0186 +ij[2863] = 27.2 +id[2864] = "2209-05-05T01:39:52" +ik[2864] = 12 +il[2864] = -90 +im[2864] = 0.0459 +ij[2864] = 18 +id[2865] = "2209-05-12T05:50:42" +ik[2865] = 1.118 +il[2865] = -78 +im[2865] = 0.0467 +ij[2865] = 28.5 +id[2866] = "2209-07-02T06:39:07" +ik[2866] = 0.106 +il[2866] = 33 +im[2866] = 0.0338 +ij[2866] = 28.1 +id[2867] = "2209-09-16T17:15:12" +ik[2867] = 0.97 +il[2867] = -106 +im[2867] = 0.0222 +ij[2867] = 12 +id[2868] = "2209-09-21T12:13:20" +ik[2868] = 25.765 +il[2868] = -140 +im[2868] = 0.0561 +ij[2868] = 16 +id[2869] = "2209-12-05T01:00:42" +ik[2869] = 1.242 +il[2869] = 26 +im[2869] = 0.0537 +ij[2869] = 28.8 +id[2870] = "2209-12-05T18:39:59" +ik[2870] = 4.885 +il[2870] = 129 +im[2870] = 0.049 +ij[2870] = 28.1 +id[2871] = "2209-12-30T11:56:17" +ik[2871] = 4.387 +il[2871] = 106 +im[2871] = 0.0583 +ij[2871] = 27.4 +id[2872] = "2210-01-13T23:53:00" +ik[2872] = 5.391 +il[2872] = 72 +im[2872] = 0.0684 +ij[2872] = 27.1 +id[2873] = "2210-02-02T10:36:22" +ik[2873] = 0 +il[2873] = 96 +im[2873] = 0.0441 +ij[2873] = 17 +id[2874] = "2210-02-18T13:17:04" +ik[2874] = 0.812 +il[2874] = -152 +im[2874] = 0.0402 +ij[2874] = 28.6 +id[2875] = "2210-03-06T04:45:53" +ik[2875] = 33.49 +il[2875] = 124 +im[2875] = 0.0073 +ij[2875] = 8 +id[2876] = "2210-04-05T16:33:37" +ik[2876] = 0.172 +il[2876] = -124 +im[2876] = 0.0273 +ij[2876] = 27.3 +id[2877] = "2210-04-06T15:55:08" +ik[2877] = 0.424 +il[2877] = -105 +im[2877] = 0.0448 +ij[2877] = 28.7 +id[2878] = "2210-05-06T21:05:27" +ik[2878] = 1.207 +il[2878] = 104 +im[2878] = 0.0737 +ij[2878] = 27.5 +id[2879] = "2210-06-04T08:38:45" +ik[2879] = -24.502 +il[2879] = -157 +im[2879] = 0.0738 +ij[2879] = 15 +id[2880] = "2210-07-13T02:05:51" +ik[2880] = 47.33 +il[2880] = -45 +im[2880] = 0.0542 +ij[2880] = 3 +id[2881] = "2210-07-25T11:35:34" +ik[2881] = 4.939 +il[2881] = -67 +im[2881] = 0.1221 +ij[2881] = 27.6 +id[2882] = "2210-08-11T05:05:37" +ik[2882] = -2.38 +il[2882] = -166 +im[2882] = 0.0376 +ij[2882] = 2 +id[2883] = "2210-10-01T00:01:28" +ik[2883] = 0 +il[2883] = 48 +im[2883] = 0.2752 +ij[2883] = 13 +id[2884] = "2210-10-18T12:44:27" +ik[2884] = 3.293 +il[2884] = 30 +im[2884] = 0.1526 +ij[2884] = 28.1 +id[2885] = "2210-11-06T12:05:52" +ik[2885] = 0.59 +il[2885] = -158 +im[2885] = 0.2645 +ij[2885] = 11 +id[2886] = "2210-12-08T00:16:12" +ik[2886] = 68.01 +il[2886] = 156 +im[2886] = 0.2303 +ij[2886] = 7.131 +id[2887] = "2210-12-13T13:27:43" +ik[2887] = 2.039 +il[2887] = 11 +im[2887] = 0.0152 +ij[2887] = 28.2 +id[2888] = "2211-01-28T09:51:58" +ik[2888] = 119.41 +il[2888] = 138 +im[2888] = 0.1236 +ij[2888] = 14 +id[2889] = "2211-01-30T08:16:44" +ik[2889] = -1.786 +il[2889] = -179 +im[2889] = 0.1424 +ij[2889] = 4 +id[2890] = "2211-02-13T00:40:53" +ik[2890] = 38.709 +il[2890] = 63 +im[2890] = 0.1152 +ij[2890] = 1 +id[2891] = "2211-03-15T00:55:01" +ik[2891] = 2.861 +il[2891] = -17 +im[2891] = 0.0957 +ij[2891] = 27.2 +id[2892] = "2211-04-12T22:14:45" +ik[2892] = 12 +il[2892] = -65 +im[2892] = 0.0793 +ij[2892] = 18 +id[2893] = "2211-05-04T03:49:53" +ik[2893] = 31.433 +il[2893] = 51 +im[2893] = 0.005 +ij[2893] = 9 +id[2894] = "2211-08-08T00:55:14" +ik[2894] = 0.153 +il[2894] = -74 +im[2894] = 0.0409 +ij[2894] = 28.5 +id[2895] = "2211-09-04T01:42:13" +ik[2895] = 25.891 +il[2895] = -179 +im[2895] = 0.0511 +ij[2895] = 16 +id[2896] = "2211-10-24T02:35:12" +ik[2896] = 0.41 +il[2896] = -57 +im[2896] = 0.0143 +ij[2896] = 12 +id[2897] = "2211-12-25T01:38:26" +ik[2897] = 5.636 +il[2897] = 31 +im[2897] = 0.0579 +ij[2897] = 27.1 +id[2898] = "2212-01-13T09:34:27" +ik[2898] = 0 +il[2898] = 95 +im[2898] = 0.0503 +ij[2898] = 17 +id[2899] = "2212-03-06T15:58:40" +ik[2899] = 0.232 +il[2899] = 154 +im[2899] = 0.0649 +ij[2899] = 28.6 +id[2900] = "2212-03-12T05:19:16" +ik[2900] = 0.263 +il[2900] = 7 +im[2900] = 0.0429 +ij[2900] = 27.3 +id[2901] = "2212-03-25T23:59:45" +ik[2901] = 0.38 +il[2901] = -142 +im[2901] = 0.0604 +ij[2901] = 28.7 +id[2902] = "2212-04-10T16:24:06" +ik[2902] = 0.834 +il[2902] = 122 +im[2902] = 0.037 +ij[2902] = 27.5 +id[2903] = "2212-05-09T03:06:46" +ik[2903] = 35.979 +il[2903] = -126 +im[2903] = 0.0467 +ij[2903] = 8 +id[2904] = "2212-05-09T09:38:33" +ik[2904] = 5.443 +il[2904] = 139 +im[2904] = 0.0426 +ij[2904] = 28.2 +id[2905] = "2212-05-09T21:53:37" +ik[2905] = -25.219 +il[2905] = -40 +im[2905] = 0.0344 +ij[2905] = 15 +id[2906] = "2212-06-21T05:35:51" +ik[2906] = 3.616 +il[2906] = -105 +im[2906] = 0.0783 +ij[2906] = 27.6 +id[2907] = "2212-08-27T21:36:51" +ik[2907] = 44.785 +il[2907] = -41 +im[2907] = 0.123 +ij[2907] = 3 +id[2908] = "2212-08-28T07:18:38" +ik[2908] = 5.499 +il[2908] = 177 +im[2908] = 0.124 +ij[2908] = 27.2 +id[2909] = "2212-09-16T03:18:05" +ik[2909] = -2.103 +il[2909] = 62 +im[2909] = 0.0894 +ij[2909] = 2 +id[2910] = "2212-09-18T17:55:18" +ik[2910] = 11 +il[2910] = -132 +im[2910] = 0.017 +ij[2910] = 18 +id[2911] = "2212-11-17T09:52:27" +ik[2911] = 0 +il[2911] = -149 +im[2911] = 0.17 +ij[2911] = 13 +id[2912] = "2212-12-24T12:38:46" +ik[2912] = 3.09 +il[2912] = 146 +im[2912] = 0.0266 +ij[2912] = 11 +id[2913] = "2212-12-25T01:03:15" +ik[2913] = 12 +il[2913] = 161 +im[2913] = 0.0555 +ij[2913] = 17 +id[2914] = "2213-01-30T21:31:37" +ik[2914] = 74.49 +il[2914] = -179 +im[2914] = 0.1275 +ij[2914] = 7.1551 +id[2915] = "2213-03-08T03:22:45" +ik[2915] = 12 +il[2915] = 72 +im[2915] = 0.1268 +ij[2915] = 18 +id[2916] = "2213-03-26T14:16:45" +ik[2916] = -1.59 +il[2916] = 83 +im[2916] = 0.092 +ij[2916] = 4 +id[2917] = "2213-03-31T06:23:54" +ik[2917] = 37.125 +il[2917] = -115 +im[2917] = 0.0177 +ij[2917] = 1 +id[2918] = "2213-04-04T00:09:26" +ik[2918] = 137.6 +il[2918] = 14 +im[2918] = 0.0916 +ij[2918] = 14 +id[2919] = "2213-06-09T02:26:19" +ik[2919] = 31.361 +il[2919] = -112 +im[2919] = 0.008 +ij[2919] = 9 +id[2920] = "2213-07-24T19:54:12" +ik[2920] = 0.082 +il[2920] = 65 +im[2920] = 0.0399 +ij[2920] = 28.2 +id[2921] = "2213-08-16T02:20:06" +ik[2921] = 26.01 +il[2921] = -179 +im[2921] = 0.0454 +ij[2921] = 16 +id[2922] = "2213-08-31T12:23:46" +ik[2922] = 2.593 +il[2922] = -178 +im[2922] = 0.0389 +ij[2922] = 28.1 +id[2923] = "2213-12-05T16:11:13" +ik[2923] = 0.41 +il[2923] = 1 +im[2923] = 0.0569 +ij[2923] = 12 +id[2924] = "2213-12-24T13:06:06" +ik[2924] = 0 +il[2924] = 37 +im[2924] = 0.0438 +ij[2924] = 17 +id[2925] = "2214-02-15T13:43:34" +ik[2925] = 0.47 +il[2925] = -178 +im[2925] = 0.0636 +ij[2925] = 28.1 +id[2926] = "2214-02-19T12:29:52" +ik[2926] = 0.264 +il[2926] = -122 +im[2926] = 0.0555 +ij[2926] = 27.3 +id[2927] = "2214-03-17T20:55:21" +ik[2927] = 0.313 +il[2927] = 15 +im[2927] = 0.0676 +ij[2927] = 28.7 +id[2928] = "2214-03-20T08:04:39" +ik[2928] = 0.681 +il[2928] = -129 +im[2928] = 0.0585 +ij[2928] = 27.5 +id[2929] = "2214-03-22T06:02:15" +ik[2929] = 0.525 +il[2929] = -79 +im[2929] = 0.0395 +ij[2929] = 28.6 +id[2930] = "2214-04-19T00:41:31" +ik[2930] = -25.539 +il[2930] = -91 +im[2930] = 0.0537 +ij[2930] = 15 +id[2931] = "2214-04-23T08:21:53" +ik[2931] = 0.494 +il[2931] = -164 +im[2931] = 0.0098 +ij[2931] = 28.2 +id[2932] = "2214-05-29T05:05:43" +ik[2932] = 3.096 +il[2932] = -124 +im[2932] = 0.0758 +ij[2932] = 27.6 +id[2933] = "2214-07-29T10:55:39" +ik[2933] = 35.288 +il[2933] = 29 +im[2933] = 0.0675 +ij[2933] = 8 +id[2934] = "2214-07-31T19:59:41" +ik[2934] = 4.964 +il[2934] = -83 +im[2934] = 0.034 +ij[2934] = 27.2 +id[2935] = "2214-08-19T23:33:22" +ik[2935] = 11 +il[2935] = 51 +im[2935] = 0.0676 +ij[2935] = 18 +id[2936] = "2214-10-15T00:52:50" +ik[2936] = 40.21 +il[2936] = -144 +im[2936] = 0.0637 +ij[2936] = 3 +id[2937] = "2214-10-17T08:59:26" +ik[2937] = -1.828 +il[2937] = 117 +im[2937] = 0.1035 +ij[2937] = 2 +id[2938] = "2214-12-22T00:09:54" +ik[2938] = 0 +il[2938] = 165 +im[2938] = 0.0195 +ij[2938] = 13 +id[2939] = "2215-01-07T10:28:17" +ik[2939] = 1.423 +il[2939] = 169 +im[2939] = 0.1485 +ij[2939] = 28.2 +id[2940] = "2215-01-31T02:45:00" +ik[2940] = 4.33 +il[2940] = 135 +im[2940] = 0.0348 +ij[2940] = 11 +id[2941] = "2215-03-12T23:12:30" +ik[2941] = 80.96 +il[2941] = 4 +im[2941] = 0.016 +ij[2941] = 7.1879 +id[2942] = "2215-05-10T19:47:51" +ik[2942] = 37.347 +il[2942] = -104 +im[2942] = 0.0712 +ij[2942] = 1 +id[2943] = "2215-05-12T08:50:33" +ik[2943] = -1.563 +il[2943] = 75 +im[2943] = 0.0914 +ij[2943] = 4 +id[2944] = "2215-05-19T11:08:21" +ik[2944] = 148.46 +il[2944] = 109 +im[2944] = 0.0266 +ij[2944] = 14 +id[2945] = "2215-07-17T22:52:06" +ik[2945] = 32.138 +il[2945] = 147 +im[2945] = 0.0202 +ij[2945] = 9 +id[2946] = "2215-07-27T18:20:04" +ik[2946] = 26.126 +il[2946] = -50 +im[2946] = 0.0578 +ij[2946] = 16 +id[2947] = "2215-10-29T19:56:17" +ik[2947] = 2.077 +il[2947] = 120 +im[2947] = 0.0533 +ij[2947] = 28.8 +id[2948] = "2215-11-02T05:03:25" +ik[2948] = 3.634 +il[2948] = 16 +im[2948] = 0.0639 +ij[2948] = 27.4 +id[2949] = "2215-11-08T14:02:40" +ik[2949] = 1.854 +il[2949] = -56 +im[2949] = 0.0101 +ij[2949] = 28.1 +id[2950] = "2215-11-16T00:29:18" +ik[2950] = 6.108 +il[2950] = -141 +im[2950] = 0.0602 +ij[2950] = 27.1 +id[2951] = "2215-12-05T22:26:11" +ik[2951] = 0 +il[2951] = 96 +im[2951] = 0.0302 +ij[2951] = 17 +id[2952] = "2216-02-02T15:23:13" +ik[2952] = 1.07 +il[2952] = 68 +im[2952] = 0.0252 +ij[2952] = 12 +id[2953] = "2216-03-29T08:53:23" +ik[2953] = -25.742 +il[2953] = 140 +im[2953] = 0.0524 +ij[2953] = 15 +id[2954] = "2216-05-07T13:46:43" +ik[2954] = 2.774 +il[2954] = 95 +im[2954] = 0.061 +ij[2954] = 27.6 +id[2955] = "2216-05-08T00:14:37" +ik[2955] = 1.739 +il[2955] = -51 +im[2955] = 0.0618 +ij[2955] = 28.1 +id[2956] = "2216-07-09T07:57:19" +ik[2956] = 4.63 +il[2956] = 85 +im[2956] = 0.0418 +ij[2956] = 27.2 +id[2957] = "2216-07-28T17:24:27" +ik[2957] = 12 +il[2957] = 132 +im[2957] = 0.0256 +ij[2957] = 18 +id[2958] = "2216-09-22T19:03:39" +ik[2958] = 32.783 +il[2958] = -68 +im[2958] = 0.0116 +ij[2958] = 8 +id[2959] = "2216-11-17T23:27:00" +ik[2959] = -1.655 +il[2959] = 49 +im[2959] = 0.0127 +ij[2959] = 2 +id[2960] = "2216-11-25T13:34:53" +ik[2960] = 37.256 +il[2960] = -89 +im[2960] = 0.1132 +ij[2960] = 3 +id[2961] = "2217-01-23T11:08:49" +ik[2961] = 0 +il[2961] = 157 +im[2961] = 0.1469 +ij[2961] = 13 +id[2962] = "2217-03-05T05:21:27" +ik[2962] = 4 +il[2962] = -105 +im[2962] = 0.1475 +ij[2962] = 11 +id[2963] = "2217-03-25T13:07:41" +ik[2963] = 1.762 +il[2963] = 123 +im[2963] = 0.1469 +ij[2963] = 28.1 +id[2964] = "2217-04-11T09:34:59" +ik[2964] = 1.73 +il[2964] = -34 +im[2964] = 0.1893 +ij[2964] = 28.2 +id[2965] = "2217-04-16T10:11:25" +ik[2965] = 82.96 +il[2965] = 6 +im[2965] = 0.0734 +ij[2965] = 7.2102 +id[2966] = "2217-06-19T00:37:52" +ik[2966] = 39.133 +il[2966] = 43 +im[2966] = 0.1014 +ij[2966] = 1 +id[2967] = "2217-06-21T11:23:17" +ik[2967] = 149.01 +il[2967] = -94 +im[2967] = 0.094 +ij[2967] = 14 +id[2968] = "2217-06-24T20:00:48" +ik[2968] = -1.672 +il[2968] = 169 +im[2968] = 0.0355 +ij[2968] = 4 +id[2969] = "2217-07-03T23:30:54" +ik[2969] = 26.207 +il[2969] = -155 +im[2969] = 0.1073 +ij[2969] = 16 +id[2970] = "2217-09-01T11:54:46" +ik[2970] = 33.721 +il[2970] = -122 +im[2970] = 0.0754 +ij[2970] = 9 +id[2971] = "2217-10-12T05:52:54" +ik[2971] = 3.304 +il[2971] = 6 +im[2971] = 0.0704 +ij[2971] = 27.4 +id[2972] = "2217-10-15T17:39:51" +ik[2972] = 2.414 +il[2972] = -137 +im[2972] = 0.0481 +ij[2972] = 28.8 +id[2973] = "2217-10-26T05:11:18" +ik[2973] = 6.418 +il[2973] = 153 +im[2973] = 0.0738 +ij[2973] = 27.1 +id[2974] = "2217-11-15T21:54:47" +ik[2974] = 0 +il[2974] = 104 +im[2974] = 0.0188 +ij[2974] = 17 +id[2975] = "2218-01-09T21:20:05" +ik[2975] = 0.163 +il[2975] = -67 +im[2975] = 0.0538 +ij[2975] = 27.3 +id[2976] = "2218-01-23T11:07:24" +ik[2976] = 1.06 +il[2976] = -140 +im[2976] = 0.0612 +ij[2976] = 28.2 +id[2977] = "2218-01-26T23:36:15" +ik[2977] = 0.194 +il[2977] = 68 +im[2977] = 0.0288 +ij[2977] = 28.1 +id[2978] = "2218-03-10T01:54:20" +ik[2978] = -25.901 +il[2978] = 102 +im[2978] = 0.0451 +ij[2978] = 15 +id[2979] = "2218-04-16T07:37:27" +ik[2979] = 0.46 +il[2979] = 26 +im[2979] = 0.0476 +ij[2979] = 12 +id[2980] = "2218-07-05T04:58:56" +ik[2980] = 1.857 +il[2980] = -75 +im[2980] = 0.0341 +ij[2980] = 28.1 +id[2981] = "2218-07-09T13:13:02" +ik[2981] = 12 +il[2981] = -164 +im[2981] = 0.0232 +ij[2981] = 18 +id[2982] = "2218-07-14T11:39:15" +ik[2982] = 1.785 +il[2982] = -85 +im[2982] = 0.0582 +ij[2982] = 28.1 +id[2983] = "2218-10-03T10:53:51" +ik[2983] = 2.453 +il[2983] = -9 +im[2983] = 0.0245 +ij[2983] = 28.2 +id[2984] = "2218-11-01T23:13:26" +ik[2984] = 31.175 +il[2984] = 91 +im[2984] = 0.0421 +ij[2984] = 8 +id[2985] = "2218-12-25T09:29:42" +ik[2985] = -1.583 +il[2985] = 93 +im[2985] = 0.0178 +ij[2985] = 2 +id[2986] = "2219-01-03T19:16:53" +ik[2986] = 36.176 +il[2986] = 37 +im[2986] = 0.1033 +ij[2986] = 3 +id[2987] = "2219-03-01T11:23:45" +ik[2987] = 0 +il[2987] = -20 +im[2987] = 0.1579 +ij[2987] = 13 +id[2988] = "2219-04-09T20:43:14" +ik[2988] = 2.34 +il[2988] = -165 +im[2988] = 0.225 +ij[2988] = 11 +id[2989] = "2219-05-20T12:28:21" +ik[2989] = 80.04 +il[2989] = 134 +im[2989] = 0.1768 +ij[2989] = 7.1942 +id[2990] = "2219-06-10T02:48:51" +ik[2990] = 25.468 +il[2990] = 119 +im[2990] = 0.0662 +ij[2990] = 16 +id[2991] = "2219-07-20T23:44:12" +ik[2991] = 141.51 +il[2991] = -157 +im[2991] = 0.0119 +ij[2991] = 14 +id[2992] = "2219-08-02T03:02:52" +ik[2992] = 42.426 +il[2992] = -89 +im[2992] = 0.0372 +ij[2992] = 1 +id[2993] = "2219-08-03T04:48:49" +ik[2993] = -1.907 +il[2993] = -105 +im[2993] = 0.0091 +ij[2993] = 4 +id[2994] = "2219-09-19T09:40:26" +ik[2994] = 2.775 +il[2994] = -77 +im[2994] = 0.0638 +ij[2994] = 27.4 +id[2995] = "2219-09-30T01:31:28" +ik[2995] = 2.911 +il[2995] = 150 +im[2995] = 0.0144 +ij[2995] = 28.8 +id[2996] = "2219-10-26T11:06:09" +ik[2996] = 0 +il[2996] = -95 +im[2996] = 0.0374 +ij[2996] = 17 +id[2997] = "2219-11-03T04:00:32" +ik[2997] = 35.406 +il[2997] = 87 +im[2997] = 0.0844 +ij[2997] = 9 +id[2998] = "2219-12-18T21:26:34" +ik[2998] = 0.955 +il[2998] = -84 +im[2998] = 0.0726 +ij[2998] = 28.2 +id[2999] = "2219-12-20T02:53:45" +ik[2999] = 0.038 +il[2999] = -154 +im[2999] = 0.0686 +ij[2999] = 27.3 +id[3000] = "2220-01-17T19:54:09" +ik[3000] = 0.53 +il[3000] = -127 +im[3000] = 0.0665 +ij[3000] = 27.5 +id[3001] = "2220-02-18T11:41:15" +ik[3001] = -26.045 +il[3001] = -54 +im[3001] = 0.0429 +ij[3001] = 15 +id[3002] = "2220-02-23T20:57:51" +ik[3002] = 0.166 +il[3002] = -141 +im[3002] = 0.0281 +ij[3002] = 28.7 +id[3003] = "2220-03-26T12:37:01" +ik[3003] = 1.223 +il[3003] = -63 +im[3003] = 0.0514 +ij[3003] = 28.2 +id[3004] = "2220-03-27T22:21:49" +ik[3004] = 2.286 +il[3004] = 179 +im[3004] = 0.0599 +ij[3004] = 27.6 +id[3005] = "2220-06-13T14:03:14" +ik[3005] = 0.58 +il[3005] = -47 +im[3005] = 0.0377 +ij[3005] = 12 +id[3006] = "2220-06-20T02:55:35" +ik[3006] = 12 +il[3006] = -8 +im[3006] = 0.0353 +ij[3006] = 18 +id[3007] = "2220-09-21T07:52:33" +ik[3007] = 0.639 +il[3007] = 121 +im[3007] = 0.043 +ij[3007] = 28.2 +id[3008] = "2220-11-04T09:26:37" +ik[3008] = 25.321 +il[3008] = 163 +im[3008] = 0.0482 +ij[3008] = 16 +id[3009] = "2220-12-05T08:17:52" +ik[3009] = 30.619 +il[3009] = 119 +im[3009] = 0.0199 +ij[3009] = 8 +id[3010] = "2221-02-12T06:29:16" +ik[3010] = -1.625 +il[3010] = 88 +im[3010] = 0.0605 +ij[3010] = 2 +id[3011] = "2221-02-14T03:02:52" +ik[3011] = 36.985 +il[3011] = 157 +im[3011] = 0.0191 +ij[3011] = 3 +id[3012] = "2221-03-16T03:24:51" +ik[3012] = 5.409 +il[3012] = 77 +im[3012] = 0.0359 +ij[3012] = 27.4 +id[3013] = "2221-04-13T16:30:17" +ik[3013] = 2.235 +il[3013] = 152 +im[3013] = 0.0815 +ij[3013] = 28.8 +id[3014] = "2221-04-16T23:44:41" +ik[3014] = 0 +il[3014] = 74 +im[3014] = 0.1961 +ij[3014] = 13 +id[3015] = "2221-05-03T00:37:55" +ik[3015] = 0.459 +il[3015] = -158 +im[3015] = 0.2453 +ij[3015] = 28.2 +id[3016] = "2221-05-22T03:53:27" +ik[3016] = 0.72 +il[3016] = -37 +im[3016] = 0.0421 +ij[3016] = 11 +id[3017] = "2221-06-05T07:19:01" +ik[3017] = 2.362 +il[3017] = -150 +im[3017] = 0.0616 +ij[3017] = 28.1 +id[3018] = "2221-06-29T03:52:17" +ik[3018] = 73.17 +il[3018] = 134 +im[3018] = 0.122 +ij[3018] = 7.1387 +id[3019] = "2221-08-12T06:01:25" +ik[3019] = 1.468 +il[3019] = 172 +im[3019] = 0.0378 +ij[3019] = 27.4 +id[3020] = "2221-08-20T15:16:02" +ik[3020] = 125.65 +il[3020] = 116 +im[3020] = 0.1594 +ij[3020] = 14 +id[3021] = "2221-09-01T19:21:43" +ik[3021] = -2.229 +il[3021] = 174 +im[3021] = 0.1588 +ij[3021] = 4 +id[3022] = "2221-09-04T10:38:45" +ik[3022] = 4.015 +il[3022] = -30 +im[3022] = 0.1541 +ij[3022] = 28.8 +id[3023] = "2221-09-17T15:29:48" +ik[3023] = 45.943 +il[3023] = 27 +im[3023] = 0.1399 +ij[3023] = 1 +id[3024] = "2221-09-30T09:57:51" +ik[3024] = 0 +il[3024] = -124 +im[3024] = 0.1316 +ij[3024] = 17 +id[3025] = "2221-11-25T08:25:29" +ik[3025] = 0.261 +il[3025] = 90 +im[3025] = 0.0768 +ij[3025] = 27.3 +id[3026] = "2221-12-25T02:54:36" +ik[3026] = 0.58 +il[3026] = 104 +im[3026] = 0.0749 +ij[3026] = 27.5 +id[3027] = "2222-01-12T16:22:45" +ik[3027] = 34.862 +il[3027] = 82 +im[3027] = 0.0819 +ij[3027] = 9 +id[3028] = "2222-01-27T14:47:05" +ik[3028] = -26.189 +il[3028] = -109 +im[3028] = 0.0664 +ij[3028] = 15 +id[3029] = "2222-02-14T18:54:29" +ik[3029] = 0.451 +il[3029] = 4 +im[3029] = 0.0273 +ij[3029] = 28.7 +id[3030] = "2222-03-07T04:37:13" +ik[3030] = 2.028 +il[3030] = 53 +im[3030] = 0.0663 +ij[3030] = 27.6 +id[3031] = "2222-05-11T01:33:48" +ik[3031] = 3.901 +il[3031] = 5 +im[3031] = 0.0375 +ij[3031] = 27.2 +id[3032] = "2222-05-15T15:06:17" +ik[3032] = 2.01 +il[3032] = -156 +im[3032] = 0.0225 +ij[3032] = 28.6 +id[3033] = "2222-06-01T18:30:08" +ik[3033] = 12 +il[3033] = -45 +im[3033] = 0.0513 +ij[3033] = 18 +id[3034] = "2222-07-27T21:05:27" +ik[3034] = 1.09 +il[3034] = 88 +im[3034] = 0.036 +ij[3034] = 12 +id[3035] = "2222-10-16T22:07:29" +ik[3035] = 25.55 +il[3035] = -13 +im[3035] = 0.0238 +ij[3035] = 16 +id[3036] = "2223-01-08T10:38:45" +ik[3036] = 31.069 +il[3036] = -120 +im[3036] = 0.0681 +ij[3036] = 8 +id[3037] = "2223-02-01T03:01:57" +ik[3037] = 4.864 +il[3037] = -140 +im[3037] = 0.0836 +ij[3037] = 27.4 +id[3038] = "2223-02-17T14:50:42" +ik[3038] = 4.942 +il[3038] = -161 +im[3038] = 0.0897 +ij[3038] = 27.1 +id[3039] = "2223-02-19T16:16:17" +ik[3039] = 0.969 +il[3039] = -163 +im[3039] = 0.0792 +ij[3039] = 28.8 +id[3040] = "2223-03-11T11:46:29" +ik[3040] = 23 +il[3040] = 92 +im[3040] = 0.0077 +ij[3040] = 17 +id[3041] = "2223-04-10T10:28:50" +ik[3041] = 40.328 +il[3041] = 35 +im[3041] = 0.0427 +ij[3041] = 3 +id[3042] = "2223-04-29T21:31:31" +ik[3042] = -1.9 +il[3042] = 53 +im[3042] = 0.1792 +ij[3042] = 2 +id[3043] = "2223-06-20T00:59:05" +ik[3043] = 5.216 +il[3043] = 126 +im[3043] = 0.1655 +ij[3043] = 27.3 +id[3044] = "2223-06-24T15:16:32" +ik[3044] = 0 +il[3044] = -45 +im[3044] = 0.3197 +ij[3044] = 13 +id[3045] = "2223-07-02T01:41:25" +ik[3045] = 4.088 +il[3045] = -134 +im[3045] = 0.0422 +ij[3045] = 28.1 +id[3046] = "2223-07-24T05:11:41" +ik[3046] = 6.01 +il[3046] = 18 +im[3046] = 0.3308 +ij[3046] = 11 +id[3047] = "2223-08-10T10:29:50" +ik[3047] = 5.506 +il[3047] = -73 +im[3047] = 0.0456 +ij[3047] = 28.1 +id[3048] = "2223-08-26T15:21:15" +ik[3048] = 63 +il[3048] = 13 +im[3048] = 0.1504 +ij[3048] = 7.098 +id[3049] = "2223-09-05T21:01:22" +ik[3049] = 4.72 +il[3049] = 29 +im[3049] = 0.0526 +ij[3049] = 28.2 +id[3050] = "2223-10-08T00:59:01" +ik[3050] = 105.4 +il[3050] = -74 +im[3050] = 0.1608 +ij[3050] = 14 +id[3051] = "2223-10-16T13:48:24" +ik[3051] = 1.795 +il[3051] = 178 +im[3051] = 0.1353 +ij[3051] = 27.3 +id[3052] = "2223-10-18T02:10:38" +ik[3052] = -2.345 +il[3052] = 7 +im[3052] = 0.0723 +ij[3052] = 4 +id[3053] = "2223-11-13T16:16:45" +ik[3053] = 44.766 +il[3053] = 56 +im[3053] = 0.1164 +ij[3053] = 1 +id[3054] = "2223-11-23T15:30:09" +ik[3054] = 1.029 +il[3054] = 165 +im[3054] = 0.1459 +ij[3054] = 27.5 +id[3055] = "2224-01-02T19:26:59" +ik[3055] = -26.302 +il[3055] = 133 +im[3055] = 0.0879 +ij[3055] = 15 +id[3056] = "2224-02-03T20:38:01" +ik[3056] = 0.846 +il[3056] = 61 +im[3056] = 0.0939 +ij[3056] = 28.7 +id[3057] = "2224-02-11T11:26:05" +ik[3057] = 1.698 +il[3057] = -89 +im[3057] = 0.014 +ij[3057] = 27.6 +id[3058] = "2224-03-07T21:45:52" +ik[3058] = 32.98 +il[3058] = -3 +im[3058] = 0.0472 +ij[3058] = 9 +id[3059] = "2224-04-19T15:13:08" +ik[3059] = 3.6 +il[3059] = 141 +im[3059] = 0.0498 +ij[3059] = 27.2 +id[3060] = "2224-05-12T20:31:45" +ik[3060] = 12 +il[3060] = -80 +im[3060] = 0.0634 +ij[3060] = 18 +id[3061] = "2224-05-30T01:53:59" +ik[3061] = 1.612 +il[3061] = 9 +im[3061] = 0.0569 +ij[3061] = 28.6 +id[3062] = "2224-06-11T08:13:16" +ik[3062] = 1.954 +il[3062] = 32 +im[3062] = 0.0616 +ij[3062] = 28.1 +id[3063] = "2224-06-28T17:14:50" +ik[3063] = 0.468 +il[3063] = 55 +im[3063] = 0.0497 +ij[3063] = 28.2 +id[3064] = "2224-09-02T14:53:01" +ik[3064] = 1.08 +il[3064] = 10 +im[3064] = 0.0395 +ij[3064] = 12 +id[3065] = "2224-09-28T07:50:26" +ik[3065] = 25.713 +il[3065] = -148 +im[3065] = 0.0085 +ij[3065] = 16 +id[3066] = "2224-11-06T07:33:50" +ik[3066] = 2.46 +il[3066] = -130 +im[3066] = 0.0478 +ij[3066] = 28.1 +id[3067] = "2225-01-07T14:19:33" +ik[3067] = 4.5 +il[3067] = 13 +im[3067] = 0.0132 +ij[3067] = 27.4 +id[3068] = "2225-01-22T09:19:33" +ik[3068] = 5.284 +il[3068] = -132 +im[3068] = 0.019 +ij[3068] = 27.1 +id[3069] = "2225-01-31T02:25:55" +ik[3069] = 1.296 +il[3069] = 54 +im[3069] = 0.0622 +ij[3069] = 28.8 +id[3070] = "2225-02-08T15:24:19" +ik[3070] = 5.719 +il[3070] = -60 +im[3070] = 0.064 +ij[3070] = 28.2 +id[3071] = "2225-02-11T01:08:02" +ik[3071] = 0 +il[3071] = 177 +im[3071] = 0.0791 +ij[3071] = 17 +id[3072] = "2225-02-15T16:07:12" +ik[3072] = 32.59 +il[3072] = -5 +im[3072] = 0.0522 +ij[3072] = 8 +id[3073] = "2225-04-16T20:23:59" +ik[3073] = 0.06 +il[3073] = 140 +im[3073] = 0.0272 +ij[3073] = 27.3 +id[3074] = "2225-05-19T20:32:41" +ik[3074] = 1.56 +il[3074] = 92 +im[3074] = 0.0803 +ij[3074] = 27.5 +id[3075] = "2225-06-20T17:29:45" +ik[3075] = 46.202 +il[3075] = 82 +im[3075] = 0.1568 +ij[3075] = 3 +id[3076] = "2225-07-21T08:48:53" +ik[3076] = -2.377 +il[3076] = 147 +im[3076] = 0.1866 +ij[3076] = 2 +id[3077] = "2225-08-23T07:26:32" +ik[3077] = 3.809 +il[3077] = 128 +im[3077] = 0.0099 +ij[3077] = 28.7 +id[3078] = "2225-09-07T00:59:31" +ik[3078] = 0 +il[3078] = 9 +im[3078] = 0.0035 +ij[3078] = 13 +id[3079] = "2225-09-17T09:25:53" +ik[3079] = 3.862 +il[3079] = -16 +im[3079] = 0.1893 +ij[3079] = 28.7 +id[3080] = "2225-09-21T05:51:20" +ik[3080] = 5.248 +il[3080] = 76 +im[3080] = 0.1073 +ij[3080] = 28.1 +id[3081] = "2225-10-12T03:15:15" +ik[3081] = 3.25 +il[3081] = -57 +im[3081] = 0.3127 +ij[3081] = 11 +id[3082] = "2225-10-26T09:18:50" +ik[3082] = 0.317 +il[3082] = -162 +im[3082] = 0.2983 +ij[3082] = 28.1 +id[3083] = "2225-11-11T00:02:07" +ik[3083] = 64.96 +il[3083] = 117 +im[3083] = 0.1072 +ij[3083] = 7.1232 +id[3084] = "2225-12-03T02:50:51" +ik[3084] = -24.897 +il[3084] = -74 +im[3084] = 0.2097 +ij[3084] = 15 +id[3085] = "2225-12-26T21:24:56" +ik[3085] = 110.85 +il[3085] = -126 +im[3085] = 0.0571 +ij[3085] = 14 +id[3086] = "2226-01-03T01:24:26" +ik[3086] = -1.927 +il[3086] = -117 +im[3086] = 0.1297 +ij[3086] = 4 +id[3087] = "2226-01-03T01:50:28" +ik[3087] = 1.28 +il[3087] = -124 +im[3087] = 0.1294 +ij[3087] = 27.6 +id[3088] = "2226-01-11T07:52:21" +ik[3088] = 1.435 +il[3088] = -136 +im[3088] = 0.1125 +ij[3088] = 28.7 +id[3089] = "2226-01-21T15:35:42" +ik[3089] = 39.976 +il[3089] = -154 +im[3089] = 0.0349 +ij[3089] = 1 +id[3090] = "2226-03-26T20:15:39" +ik[3090] = 3.143 +il[3090] = 21 +im[3090] = 0.0831 +ij[3090] = 27.2 +id[3091] = "2226-04-19T07:55:38" +ik[3091] = 31.697 +il[3091] = 68 +im[3091] = 0.022 +ij[3091] = 9 +id[3092] = "2226-04-22T03:43:29" +ik[3092] = 12 +il[3092] = 157 +im[3092] = 0.0607 +ij[3092] = 18 +id[3093] = "2226-05-29T04:57:00" +ik[3093] = 0.803 +il[3093] = 128 +im[3093] = 0.0236 +ij[3093] = 28.2 +id[3094] = "2226-06-15T20:56:37" +ik[3094] = 0.921 +il[3094] = 55 +im[3094] = 0.0256 +ij[3094] = 28.6 +id[3095] = "2226-08-07T22:32:14" +ik[3095] = 0.191 +il[3095] = -179 +im[3095] = 0.0302 +ij[3095] = 28.1 +id[3096] = "2226-09-10T22:38:13" +ik[3096] = 25.845 +il[3096] = 151 +im[3096] = 0.0354 +ij[3096] = 16 +id[3097] = "2226-10-09T04:38:48" +ik[3097] = 0.67 +il[3097] = -16 +im[3097] = 0.0302 +ij[3097] = 12 +id[3098] = "2226-12-18T12:41:05" +ik[3098] = 4.227 +il[3098] = 21 +im[3098] = 0.0008 +ij[3098] = 27.4 +id[3099] = "2227-01-01T17:15:00" +ik[3099] = 5.545 +il[3099] = 86 +im[3099] = 0.0091 +ij[3099] = 27.1 +id[3100] = "2227-01-16T19:21:31" +ik[3100] = 1.516 +il[3100] = -163 +im[3100] = 0.007 +ij[3100] = 28.8 +id[3101] = "2227-01-21T01:15:06" +ik[3101] = 0 +il[3101] = 157 +im[3101] = 0.0567 +ij[3101] = 17 +id[3102] = "2227-01-21T16:35:12" +ik[3102] = 0.379 +il[3102] = -64 +im[3102] = 0.0602 +ij[3102] = 28.5 +id[3103] = "2227-01-26T15:44:50" +ik[3103] = 2.136 +il[3103] = -4 +im[3103] = 0.0421 +ij[3103] = 28.2 +id[3104] = "2227-03-21T21:41:42" +ik[3104] = 0.245 +il[3104] = 60 +im[3104] = 0.0764 +ij[3104] = 27.3 +id[3105] = "2227-04-11T02:23:11" +ik[3105] = 35.098 +il[3105] = -178 +im[3105] = 0.0343 +ij[3105] = 8 +id[3106] = "2227-04-20T19:29:17" +ik[3106] = 0.935 +il[3106] = 18 +im[3106] = 0.0842 +ij[3106] = 27.5 +id[3107] = "2227-05-19T19:55:38" +ik[3107] = -25.021 +il[3107] = -71 +im[3107] = 0.0957 +ij[3107] = 15 +id[3108] = "2227-07-02T21:40:28" +ik[3108] = 3.954 +il[3108] = -30 +im[3108] = 0.1042 +ij[3108] = 27.6 +id[3109] = "2227-07-09T19:48:53" +ik[3109] = 1.282 +il[3109] = 66 +im[3109] = 0.044 +ij[3109] = 28.7 +id[3110] = "2227-08-10T17:49:46" +ik[3110] = 46.426 +il[3110] = 48 +im[3110] = 0.1258 +ij[3110] = 3 +id[3111] = "2227-09-04T07:19:07" +ik[3111] = -2.228 +il[3111] = 87 +im[3111] = 0.0369 +ij[3111] = 2 +id[3112] = "2227-09-16T05:28:08" +ik[3112] = 5.78 +il[3112] = -128 +im[3112] = 0.0885 +ij[3112] = 27.2 +id[3113] = "2227-11-01T00:01:30" +ik[3113] = 0 +il[3113] = 41 +im[3113] = 0.1398 +ij[3113] = 13 +id[3114] = "2227-11-10T11:42:16" +ik[3114] = 0.674 +il[3114] = -41 +im[3114] = 0.1369 +ij[3114] = 28.2 +id[3115] = "2227-11-24T15:48:25" +ik[3115] = 0.632 +il[3115] = 35 +im[3115] = 0.0545 +ij[3115] = 28.1 +id[3116] = "2227-12-08T11:10:48" +ik[3116] = 1.96 +il[3116] = -142 +im[3116] = 0.0682 +ij[3116] = 11 +id[3117] = "2228-01-12T23:04:06" +ik[3117] = 72.96 +il[3117] = -165 +im[3117] = 0.1921 +ij[3117] = 7.1442 +id[3118] = "2228-02-12T03:18:53" +ik[3118] = 2.029 +il[3118] = 55 +im[3118] = 0.0888 +ij[3118] = 27.2 +id[3119] = "2228-03-06T10:12:28" +ik[3119] = -1.643 +il[3119] = 171 +im[3119] = 0.1107 +ij[3119] = 4 +id[3120] = "2228-03-12T02:32:00" +ik[3120] = 132.1 +il[3120] = -20 +im[3120] = 0.0479 +ij[3120] = 14 +id[3121] = "2228-03-14T03:21:44" +ik[3121] = 37.5 +il[3121] = -13 +im[3121] = 0.0057 +ij[3121] = 1 +id[3122] = "2228-03-25T09:04:09" +ik[3122] = 12 +il[3122] = 7 +im[3122] = 0.0811 +ij[3122] = 18 +id[3123] = "2228-05-25T18:38:45" +ik[3123] = 31.288 +il[3123] = 84 +im[3123] = 0.0108 +ij[3123] = 9 +id[3124] = "2228-07-03T01:33:10" +ik[3124] = 0.006 +il[3124] = -14 +im[3124] = 0.0418 +ij[3124] = 28.6 +id[3125] = "2228-08-01T00:05:13" +ik[3125] = 4.813 +il[3125] = -75 +im[3125] = 0.0368 +ij[3125] = 28.1 +id[3126] = "2228-08-23T05:55:03" +ik[3126] = 25.966 +il[3126] = 52 +im[3126] = 0.0511 +ij[3126] = 16 +id[3127] = "2228-11-17T12:04:08" +ik[3127] = 0.07 +il[3127] = 97 +im[3127] = 0.0518 +ij[3127] = 12 +id[3128] = "2228-12-31T21:46:58" +ik[3128] = 0 +il[3128] = -156 +im[3128] = 0.0545 +ij[3128] = 17 +id[3129] = "2229-02-27T12:02:25" +ik[3129] = 0.269 +il[3129] = -179 +im[3129] = 0.057 +ij[3129] = 27.3 +id[3130] = "2229-03-26T21:14:49" +ik[3130] = 0.04 +il[3130] = -49 +im[3130] = 0.0448 +ij[3130] = 28.5 +id[3131] = "2229-03-28T12:10:51" +ik[3131] = 0.728 +il[3131] = 103 +im[3131] = 0.0601 +ij[3131] = 27.5 +id[3132] = "2229-04-27T00:39:27" +ik[3132] = -25.435 +il[3132] = -160 +im[3132] = 0.0672 +ij[3132] = 15 +id[3133] = "2229-06-06T19:19:15" +ik[3133] = 3.263 +il[3133] = -42 +im[3133] = 0.052 +ij[3133] = 27.6 +id[3134] = "2229-06-26T06:22:28" +ik[3134] = 0.585 +il[3134] = -17 +im[3134] = 0.0798 +ij[3134] = 28.7 +id[3135] = "2229-06-29T14:04:31" +ik[3135] = 36.085 +il[3135] = -100 +im[3135] = 0.0482 +ij[3135] = 8 +id[3136] = "2229-08-10T08:05:33" +ik[3136] = 5.137 +il[3136] = 39 +im[3136] = 0.0832 +ij[3136] = 27.2 +id[3137] = "2229-08-29T16:07:56" +ik[3137] = 11 +il[3137] = 108 +im[3137] = 0.011 +ij[3137] = 18 +id[3138] = "2229-09-26T15:37:43" +ik[3138] = 41.884 +il[3138] = 29 +im[3138] = 0.0177 +ij[3138] = 3 +id[3139] = "2229-10-05T06:20:29" +ik[3139] = -1.924 +il[3139] = -108 +im[3139] = 0.1137 +ij[3139] = 2 +id[3140] = "2229-12-08T02:32:29" +ik[3140] = 0 +il[3140] = -152 +im[3140] = 0.1097 +ij[3140] = 13 +id[3141] = "2230-01-17T05:54:22" +ik[3141] = 4.08 +il[3141] = 168 +im[3141] = 0.0852 +ij[3141] = 11 +id[3142] = "2230-02-21T06:24:48" +ik[3142] = 3.042 +il[3142] = -69 +im[3142] = 0.1334 +ij[3142] = 28.2 +id[3143] = "2230-02-26T01:35:04" +ik[3143] = 79.96 +il[3143] = 45 +im[3143] = 0.0621 +ij[3143] = 7.1749 +id[3144] = "2230-04-24T16:45:23" +ik[3144] = -1.556 +il[3144] = 3 +im[3144] = 0.0809 +ij[3144] = 4 +id[3145] = "2230-04-25T09:19:43" +ik[3145] = 37.07 +il[3145] = 121 +im[3145] = 0.0911 +ij[3145] = 1 +id[3146] = "2230-05-03T15:19:50" +ik[3146] = 146.53 +il[3146] = 110 +im[3146] = 0.0448 +ij[3146] = 14 +id[3147] = "2230-07-02T07:24:31" +ik[3147] = 31.731 +il[3147] = 81 +im[3147] = 0.0073 +ij[3147] = 9 +id[3148] = "2230-07-22T09:15:47" +ik[3148] = 1.032 +il[3148] = -113 +im[3148] = 0.075 +ij[3148] = 28.6 +id[3149] = "2230-08-04T13:44:55" +ik[3149] = 26.083 +il[3149] = -53 +im[3149] = 0.0598 +ij[3149] = 16 +id[3150] = "2230-10-09T21:42:58" +ik[3150] = 1.971 +il[3150] = 112 +im[3150] = 0.0084 +ij[3150] = 28.1 +id[3151] = "2230-10-24T22:17:16" +ik[3151] = 1.377 +il[3151] = -111 +im[3151] = 0.0072 +ij[3151] = 28.1 +id[3152] = "2230-12-13T06:39:51" +ik[3152] = 0 +il[3152] = -104 +im[3152] = 0.0613 +ij[3152] = 17 +id[3153] = "2231-01-08T02:21:02" +ik[3153] = 0.9 +il[3153] = -136 +im[3153] = 0.0419 +ij[3153] = 12 +id[3154] = "2231-04-07T01:04:21" +ik[3154] = -25.671 +il[3154] = -170 +im[3154] = 0.0563 +ij[3154] = 15 +id[3155] = "2231-04-07T08:31:04" +ik[3155] = 1.548 +il[3155] = 80 +im[3155] = 0.0582 +ij[3155] = 28.1 +id[3156] = "2231-05-16T11:56:58" +ik[3156] = 2.888 +il[3156] = 57 +im[3156] = 0.0238 +ij[3156] = 27.6 +id[3157] = "2231-05-23T13:53:26" +ik[3157] = 0.438 +il[3157] = 99 +im[3157] = 0.0688 +ij[3157] = 28.5 +id[3158] = "2231-06-17T21:23:03" +ik[3158] = 0.181 +il[3158] = -125 +im[3158] = 0.063 +ij[3158] = 28.7 +id[3159] = "2231-07-18T11:10:13" +ik[3159] = 4.747 +il[3159] = -32 +im[3159] = 0.0747 +ij[3159] = 27.2 +id[3160] = "2231-07-22T03:13:33" +ik[3160] = 1.803 +il[3160] = 123 +im[3160] = 0.0661 +ij[3160] = 28.2 +id[3161] = "2231-08-06T16:41:04" +ik[3161] = 12 +il[3161] = 73 +im[3161] = 0.0416 +ij[3161] = 18 +id[3162] = "2231-09-04T15:41:24" +ik[3162] = 33.701 +il[3162] = 9 +im[3162] = 0.0419 +ij[3162] = 8 +id[3163] = "2231-11-05T23:16:30" +ik[3163] = -1.71 +il[3163] = 140 +im[3163] = 0.0503 +ij[3163] = 2 +id[3164] = "2231-11-10T17:26:44" +ik[3164] = 38.181 +il[3164] = -87 +im[3164] = 0.1095 +ij[3164] = 3 +id[3165] = "2232-01-11T15:20:18" +ik[3165] = 0 +il[3165] = -177 +im[3165] = 0.0425 +ij[3165] = 13 +id[3166] = "2232-02-21T01:24:09" +ik[3166] = 4.28 +il[3166] = 36 +im[3166] = 0.042 +ij[3166] = 11 +id[3167] = "2232-03-10T02:06:51" +ik[3167] = 1.568 +il[3167] = -4 +im[3167] = 0.1624 +ij[3167] = 28.1 +id[3168] = "2232-04-02T17:01:12" +ik[3168] = 82.07 +il[3168] = -14 +im[3168] = 0.0124 +ij[3168] = 7.2046 +id[3169] = "2232-06-03T02:55:40" +ik[3169] = 38.247 +il[3169] = 68 +im[3169] = 0.104 +ij[3169] = 1 +id[3170] = "2232-06-07T15:33:24" +ik[3170] = -1.614 +il[3170] = -78 +im[3170] = 0.0665 +ij[3170] = 4 +id[3171] = "2232-06-09T03:41:01" +ik[3171] = 149.51 +il[3171] = 115 +im[3171] = 0.0377 +ij[3171] = 14 +id[3172] = "2232-07-13T12:56:56" +ik[3172] = 26.19 +il[3172] = -51 +im[3172] = 0.0663 +ij[3172] = 16 +id[3173] = "2232-08-10T02:28:25" +ik[3173] = 2.059 +il[3173] = 14 +im[3173] = 0.0452 +ij[3173] = 28.6 +id[3174] = "2232-08-12T23:00:04" +ik[3174] = 33.017 +il[3174] = 94 +im[3174] = 0.0729 +ij[3174] = 9 +id[3175] = "2232-09-27T06:43:16" +ik[3175] = 0.911 +il[3175] = 59 +im[3175] = 0.0715 +ij[3175] = 28.2 +id[3176] = "2232-10-20T06:23:21" +ik[3176] = 3.446 +il[3176] = -72 +im[3176] = 0.0396 +ij[3176] = 27.4 +id[3177] = "2232-11-03T01:46:24" +ik[3177] = 6.285 +il[3177] = 132 +im[3177] = 0.017 +ij[3177] = 27.1 +id[3178] = "2232-11-23T11:22:38" +ik[3178] = 0 +il[3178] = -172 +im[3178] = 0.0688 +ij[3178] = 17 +id[3179] = "2232-12-07T07:46:59" +ik[3179] = 1.953 +il[3179] = 17 +im[3179] = 0.0618 +ij[3179] = 28.8 +id[3180] = "2232-12-26T05:08:31" +ik[3180] = 0.851 +il[3180] = -117 +im[3180] = 0.0455 +ij[3180] = 28.1 +id[3181] = "2233-03-17T15:55:19" +ik[3181] = -25.843 +il[3181] = -179 +im[3181] = 0.0589 +ij[3181] = 15 +id[3182] = "2233-03-18T20:35:16" +ik[3182] = 0.86 +il[3182] = 126 +im[3182] = 0.063 +ij[3182] = 12 +id[3183] = "2233-06-10T04:38:41" +ik[3183] = 0.112 +il[3183] = -101 +im[3183] = 0.0362 +ij[3183] = 28.7 +id[3184] = "2233-06-20T00:57:27" +ik[3184] = 1.702 +il[3184] = 50 +im[3184] = 0.0198 +ij[3184] = 28.1 +id[3185] = "2233-06-27T05:42:46" +ik[3185] = 4.47 +il[3185] = 49 +im[3185] = 0.0611 +ij[3185] = 27.2 +id[3186] = "2233-07-16T22:59:55" +ik[3186] = 12 +il[3186] = -18 +im[3186] = 0.0419 +ij[3186] = 18 +id[3187] = "2233-07-18T18:24:02" +ik[3187] = 2.078 +il[3187] = 68 +im[3187] = 0.0197 +ij[3187] = 28.2 +id[3188] = "2233-07-28T10:26:01" +ik[3188] = 0.361 +il[3188] = -78 +im[3188] = 0.0646 +ij[3188] = 28.5 +id[3189] = "2233-10-18T10:25:24" +ik[3189] = 31.675 +il[3189] = -4 +im[3189] = 0.0649 +ij[3189] = 8 +id[3190] = "2233-12-09T22:29:24" +ik[3190] = -1.599 +il[3190] = -38 +im[3190] = 0.0129 +ij[3190] = 2 +id[3191] = "2233-12-19T13:31:43" +ik[3191] = 36.383 +il[3191] = -170 +im[3191] = 0.1046 +ij[3191] = 3 +id[3192] = "2234-02-14T03:41:29" +ik[3192] = 0 +il[3192] = 163 +im[3192] = 0.1518 +ij[3192] = 13 +id[3193] = "2234-03-04T18:43:29" +ik[3193] = 1.831 +il[3193] = 107 +im[3193] = 0.0687 +ij[3193] = 28.2 +id[3194] = "2234-03-26T12:19:16" +ik[3194] = 3.16 +il[3194] = 40 +im[3194] = 0.1673 +ij[3194] = 11 +id[3195] = "2234-05-07T02:44:05" +ik[3195] = 81.96 +il[3195] = 3 +im[3195] = 0.1295 +ij[3195] = 7.2063 +id[3196] = "2234-06-16T21:11:55" +ik[3196] = 26.073 +il[3196] = 121 +im[3196] = 0.0856 +ij[3196] = 16 +id[3197] = "2234-07-09T16:48:54" +ik[3197] = 145.55 +il[3197] = 49 +im[3197] = 0.0991 +ij[3197] = 14 +id[3198] = "2234-07-15T08:32:38" +ik[3198] = 40.978 +il[3198] = -132 +im[3198] = 0.0685 +ij[3198] = 1 +id[3199] = "2234-07-20T07:37:52" +ik[3199] = -1.801 +il[3199] = -70 +im[3199] = 0.0489 +ij[3199] = 4 +id[3200] = "2234-08-28T17:53:17" +ik[3200] = 2.925 +il[3200] = 160 +im[3200] = 0.0471 +ij[3200] = 28.6 +id[3201] = "2234-09-28T22:47:52" +ik[3201] = 3.021 +il[3201] = 31 +im[3201] = 0.0063 +ij[3201] = 27.4 +id[3202] = "2234-10-07T09:08:31" +ik[3202] = 34.864 +il[3202] = -42 +im[3202] = 0.075 +ij[3202] = 9 +id[3203] = "2234-11-03T18:07:33" +ik[3203] = 0 +il[3203] = 92 +im[3203] = 0.0783 +ij[3203] = 17 +id[3204] = "2234-11-23T06:37:47" +ik[3204] = 2.124 +il[3204] = 96 +im[3204] = 0.0316 +ij[3204] = 28.8 +id[3205] = "2234-12-28T11:11:06" +ik[3205] = 0.1 +il[3205] = 14 +im[3205] = 0.0607 +ij[3205] = 27.3 +id[3206] = "2235-01-26T00:29:16" +ik[3206] = 0.531 +il[3206] = 96 +im[3206] = 0.054 +ij[3206] = 27.5 +id[3207] = "2235-02-26T05:59:18" +ik[3207] = -25.991 +il[3207] = -41 +im[3207] = 0.0654 +ij[3207] = 15 +id[3208] = "2235-05-24T19:58:49" +ik[3208] = 0.22 +il[3208] = -107 +im[3208] = 0.0602 +ij[3208] = 12 +id[3209] = "2235-06-28T07:35:41" +ik[3209] = 12 +il[3209] = -141 +im[3209] = 0.0335 +ij[3209] = 18 +id[3210] = "2235-08-24T14:23:48" +ik[3210] = 4.428 +il[3210] = -41 +im[3210] = 0.0362 +ij[3210] = 28.1 +id[3211] = "2235-10-23T17:00:38" +ik[3211] = 0.001 +il[3211] = 141 +im[3211] = 0.008 +ij[3211] = 28.5 +id[3212] = "2235-11-13T03:06:43" +ik[3212] = 25.196 +il[3212] = -173 +im[3212] = 0.0688 +ij[3212] = 16 +id[3213] = "2235-11-23T06:56:04" +ik[3213] = 30.716 +il[3213] = -133 +im[3213] = 0.0387 +ij[3213] = 8 +id[3214] = "2236-01-22T12:53:26" +ik[3214] = -1.592 +il[3214] = -2 +im[3214] = 0.1071 +ij[3214] = 2 +id[3215] = "2236-01-28T19:13:43" +ik[3215] = 36.421 +il[3215] = -37 +im[3215] = 0.0711 +ij[3215] = 3 +id[3216] = "2236-03-19T17:33:50" +ik[3216] = 1.023 +il[3216] = 115 +im[3216] = 0.1917 +ij[3216] = 28.6 +id[3217] = "2236-03-27T16:49:22" +ik[3217] = 0 +il[3217] = -158 +im[3217] = 0.0099 +ij[3217] = 13 +id[3218] = "2236-05-03T19:56:10" +ik[3218] = 0.5 +il[3218] = 124 +im[3218] = 0.1347 +ij[3218] = 11 +id[3219] = "2236-06-10T04:23:14" +ik[3219] = 1.717 +il[3219] = 154 +im[3219] = 0.2286 +ij[3219] = 28.2 +id[3220] = "2236-06-12T15:51:58" +ik[3220] = 76.96 +il[3220] = 5 +im[3220] = 0.1581 +ij[3220] = 7.1628 +id[3221] = "2236-08-07T12:22:45" +ik[3221] = 132.81 +il[3221] = -118 +im[3221] = 0.1092 +ij[3221] = 14 +id[3222] = "2236-08-20T21:19:13" +ik[3222] = -2.1 +il[3222] = -121 +im[3222] = 0.0973 +ij[3222] = 4 +id[3223] = "2236-08-30T00:04:36" +ik[3223] = 44.773 +il[3223] = -73 +im[3223] = 0.1306 +ij[3223] = 1 +id[3224] = "2236-08-31T03:39:23" +ik[3224] = 2.175 +il[3224] = -116 +im[3224] = 0.1389 +ij[3224] = 27.4 +id[3225] = "2236-09-11T10:24:16" +ik[3225] = 3.54 +il[3225] = -106 +im[3225] = 0.0678 +ij[3225] = 28.6 +id[3226] = "2236-10-11T07:18:07" +ik[3226] = 0 +il[3226] = -127 +im[3226] = 0.0794 +ij[3226] = 17 +id[3227] = "2236-11-05T12:30:24" +ik[3227] = 2.435 +il[3227] = 44 +im[3227] = 0.0117 +ij[3227] = 28.8 +id[3228] = "2236-12-05T07:48:45" +ik[3228] = 0.103 +il[3228] = 48 +im[3228] = 0.0239 +ij[3228] = 27.3 +id[3229] = "2236-12-16T21:52:30" +ik[3229] = 35.415 +il[3229] = -49 +im[3229] = 0.0222 +ij[3229] = 9 +id[3230] = "2237-01-03T11:57:55" +ik[3230] = 0.543 +il[3230] = -89 +im[3230] = 0.0269 +ij[3230] = 27.5 +id[3231] = "2237-02-05T01:36:15" +ik[3231] = -26.135 +il[3231] = 24 +im[3231] = 0.0681 +ij[3231] = 15 +id[3232] = "2237-03-15T12:50:15" +ik[3232] = 2.133 +il[3232] = -135 +im[3232] = 0.0011 +ij[3232] = 27.6 +id[3233] = "2237-04-21T20:41:44" +ik[3233] = 0.248 +il[3233] = 113 +im[3233] = 0.0582 +ij[3233] = 28.2 +id[3234] = "2237-06-09T00:00:25" +ik[3234] = 12 +il[3234] = 158 +im[3234] = 0.0174 +ij[3234] = 18 +id[3235] = "2237-07-11T19:24:10" +ik[3235] = 0.96 +il[3235] = -179 +im[3235] = 0.0308 +ij[3235] = 12 +id[3236] = "2237-10-24T00:16:37" +ik[3236] = 25.473 +il[3236] = -123 +im[3236] = 0.0636 +ij[3236] = 16 +id[3237] = "2237-12-02T03:29:09" +ik[3237] = 3.003 +il[3237] = -154 +im[3237] = 0.0378 +ij[3237] = 28.2 +id[3238] = "2237-12-25T22:18:17" +ik[3238] = 30.771 +il[3238] = 152 +im[3238] = 0.0378 +ij[3238] = 8 +id[3239] = "2238-01-31T00:43:14" +ik[3239] = 0.128 +il[3239] = 100 +im[3239] = 0.0876 +ij[3239] = 28.5 +id[3240] = "2238-02-12T21:17:57" +ik[3240] = 5.054 +il[3240] = -86 +im[3240] = 0.0752 +ij[3240] = 27.4 +id[3241] = "2238-03-03T06:30:39" +ik[3241] = 4.78 +il[3241] = -50 +im[3241] = 0.1134 +ij[3241] = 27.1 +id[3242] = "2238-03-12T09:59:49" +ik[3242] = 0.679 +il[3242] = -15 +im[3242] = 0.0719 +ij[3242] = 28.6 +id[3243] = "2238-03-17T09:48:40" +ik[3243] = 38.638 +il[3243] = 35 +im[3243] = 0.1236 +ij[3243] = 3 +id[3244] = "2238-03-27T02:59:40" +ik[3244] = -1.748 +il[3244] = -131 +im[3244] = 0.1122 +ij[3244] = 2 +id[3245] = "2238-03-29T14:28:44" +ik[3245] = 23 +il[3245] = 80 +im[3245] = 0.1478 +ij[3245] = 17 +id[3246] = "2238-05-26T12:23:14" +ik[3246] = 0 +il[3246] = -64 +im[3246] = 0.2653 +ij[3246] = 13 +id[3247] = "2238-06-26T03:54:23" +ik[3247] = 3.99 +il[3247] = -14 +im[3247] = 0.1522 +ij[3247] = 11 +id[3248] = "2238-06-26T08:22:43" +ik[3248] = 0 +il[3248] = 108 +im[3248] = 0.1405 +ij[3248] = 18 +id[3249] = "2238-07-13T07:54:58" +ik[3249] = 4.694 +il[3249] = -99 +im[3249] = 0.1724 +ij[3249] = 28.1 +id[3250] = "2238-07-22T08:33:38" +ik[3250] = 4.921 +il[3250] = -21 +im[3250] = 0.1769 +ij[3250] = 28.5 +id[3251] = "2238-08-01T11:25:50" +ik[3251] = 66.96 +il[3251] = 35 +im[3251] = 0.2964 +ij[3251] = 7.1065 +id[3252] = "2238-09-02T19:25:57" +ik[3252] = 0 +il[3252] = -127 +im[3252] = 0.0807 +ij[3252] = 17 +id[3253] = "2238-09-09T22:34:27" +ik[3253] = 4.55 +il[3253] = -104 +im[3253] = 0.2147 +ij[3253] = 28.6 +id[3254] = "2238-09-10T15:20:57" +ik[3254] = 3.734 +il[3254] = 11 +im[3254] = 0.2202 +ij[3254] = 28.5 +id[3255] = "2238-09-15T11:54:40" +ik[3255] = 111.98 +il[3255] = 111 +im[3255] = 0.134 +ij[3255] = 14 +id[3256] = "2238-09-25T20:07:14" +ik[3256] = -2.368 +il[3256] = 90 +im[3256] = 0.188 +ij[3256] = 4 +id[3257] = "2238-10-09T04:48:26" +ik[3257] = 3.525 +il[3257] = 91 +im[3257] = 0.18 +ij[3257] = 28.8 +id[3258] = "2238-10-19T12:52:42" +ik[3258] = 46.105 +il[3258] = 72 +im[3258] = 0.0735 +ij[3258] = 1 +id[3259] = "2238-11-06T02:24:22" +ik[3259] = 0.774 +il[3259] = 41 +im[3259] = 0.1459 +ij[3259] = 27.3 +id[3260] = "2238-12-08T05:40:30" +ik[3260] = 0.728 +il[3260] = -54 +im[3260] = 0.1169 +ij[3260] = 27.5 +id[3261] = "2239-01-13T08:43:04" +ik[3261] = -26.274 +il[3261] = -110 +im[3261] = 0.0256 +ij[3261] = 15 +id[3262] = "2239-02-17T11:20:57" +ik[3262] = 33.695 +il[3262] = -174 +im[3262] = 0.0767 +ij[3262] = 9 +id[3263] = "2239-02-21T09:49:05" +ik[3263] = 1.839 +il[3263] = -114 +im[3263] = 0.0338 +ij[3263] = 27.6 +id[3264] = "2239-03-24T13:04:50" +ik[3264] = 1.175 +il[3264] = 133 +im[3264] = 0.0065 +ij[3264] = 28.2 +id[3265] = "2239-04-28T21:05:14" +ik[3265] = 3.729 +il[3265] = -14 +im[3265] = 0.0638 +ij[3265] = 27.2 +id[3266] = "2239-05-12T10:31:27" +ik[3266] = 5.612 +il[3266] = -77 +im[3266] = 0.0586 +ij[3266] = 28.1 +id[3267] = "2239-05-21T09:42:14" +ik[3267] = 12 +il[3267] = 12 +im[3267] = 0.0069 +ij[3267] = 18 +id[3268] = "2239-05-23T06:22:14" +ik[3268] = 0.724 +il[3268] = 79 +im[3268] = 0.025 +ij[3268] = 28.7 +id[3269] = "2239-05-25T18:16:47" +ik[3269] = 0.377 +il[3269] = -68 +im[3269] = 0.0486 +ij[3269] = 28.2 +id[3270] = "2239-08-20T08:21:03" +ik[3270] = 1.14 +il[3270] = -168 +im[3270] = 0.0449 +ij[3270] = 12 +id[3271] = "2239-10-06T04:23:26" +ik[3271] = 25.655 +il[3271] = -176 +im[3271] = 0.056 +ij[3271] = 16 +id[3272] = "2239-11-21T06:53:15" +ik[3272] = 1.157 +il[3272] = -120 +im[3272] = 0.0301 +ij[3272] = 28.2 +id[3273] = "2240-01-17T04:51:26" +ik[3273] = 4.625 +il[3273] = 93 +im[3273] = 0.0416 +ij[3273] = 27.4 +id[3274] = "2240-01-31T08:14:17" +ik[3274] = 31.86 +il[3274] = 176 +im[3274] = 0.0634 +ij[3274] = 8 +id[3275] = "2240-02-01T10:13:36" +ik[3275] = 5.166 +il[3275] = 156 +im[3275] = 0.0501 +ij[3275] = 27.1 +id[3276] = "2240-02-21T12:09:50" +ik[3276] = 23 +il[3276] = -43 +im[3276] = 0.062 +ij[3276] = 17 +id[3277] = "2240-03-22T06:49:00" +ik[3277] = 0.589 +il[3277] = -41 +im[3277] = 0.0866 +ij[3277] = 28.6 +id[3278] = "2240-04-01T09:38:59" +ik[3278] = 1.28 +il[3278] = 12 +im[3278] = 0.0115 +ij[3278] = 28.8 +id[3279] = "2240-04-20T12:35:34" +ik[3279] = 0.399 +il[3279] = 149 +im[3279] = 0.1103 +ij[3279] = 28.5 +id[3280] = "2240-04-30T20:19:58" +ik[3280] = 0.195 +il[3280] = 131 +im[3280] = 0.0212 +ij[3280] = 27.3 +id[3281] = "2240-05-24T00:17:34" +ik[3281] = 43.946 +il[3281] = -69 +im[3281] = 0.1433 +ij[3281] = 3 +id[3282] = "2240-06-07T18:20:00" +ik[3282] = 2.385 +il[3282] = 161 +im[3282] = 0.1483 +ij[3282] = 27.5 +id[3283] = "2240-06-23T04:06:22" +ik[3283] = -2.237 +il[3283] = 161 +im[3283] = 0.1288 +ij[3283] = 2 +id[3284] = "2240-08-10T11:55:11" +ik[3284] = 0 +il[3284] = 149 +im[3284] = 0.2207 +ij[3284] = 13 +id[3285] = "2240-08-13T01:05:41" +ik[3285] = 3.735 +il[3285] = -24 +im[3285] = 0.3284 +ij[3285] = 28.2 +id[3286] = "2240-08-18T12:23:33" +ik[3286] = 6.163 +il[3286] = -140 +im[3286] = 0.1682 +ij[3286] = 28.1 +id[3287] = "2240-09-11T22:53:04" +ik[3287] = 5.81 +il[3287] = -71 +im[3287] = 0.3523 +ij[3287] = 11 +id[3288] = "2240-09-26T18:20:15" +ik[3288] = 2.835 +il[3288] = -24 +im[3288] = 0.2462 +ij[3288] = 28.1 +id[3289] = "2240-10-11T14:00:47" +ik[3289] = 62.09 +il[3289] = -175 +im[3289] = 0.1598 +ij[3289] = 7.1113 +id[3290] = "2240-11-23T02:35:32" +ik[3290] = 104.61 +il[3290] = 49 +im[3290] = 0.0581 +ij[3290] = 14 +id[3291] = "2240-12-03T03:51:16" +ik[3291] = -2.104 +il[3291] = 127 +im[3291] = 0.1734 +ij[3291] = 4 +id[3292] = "2240-12-12T04:23:43" +ik[3292] = -26.123 +il[3292] = -155 +im[3292] = 0.1285 +ij[3292] = 15 +id[3293] = "2240-12-26T22:35:36" +ik[3293] = 41.677 +il[3293] = 73 +im[3293] = 0.1099 +ij[3293] = 1 +id[3294] = "2241-01-22T10:21:09" +ik[3294] = 1.428 +il[3294] = 149 +im[3294] = 0.0433 +ij[3294] = 27.6 +id[3295] = "2241-04-03T18:26:17" +ik[3295] = 32.095 +il[3295] = -19 +im[3295] = 0.0384 +ij[3295] = 9 +id[3296] = "2241-04-05T20:38:40" +ik[3296] = 3.353 +il[3296] = -33 +im[3296] = 0.0646 +ij[3296] = 27.2 +id[3297] = "2241-04-30T14:49:13" +ik[3297] = 12 +il[3297] = -72 +im[3297] = 0.0084 +ij[3297] = 18 +id[3298] = "2241-05-15T23:55:48" +ik[3298] = 0.899 +il[3298] = -60 +im[3298] = 0.0076 +ij[3298] = 28.7 +id[3299] = "2241-07-13T17:34:43" +ik[3299] = 0.128 +il[3299] = -123 +im[3299] = 0.0247 +ij[3299] = 28.1 +id[3300] = "2241-09-17T18:31:10" +ik[3300] = 25.797 +il[3300] = 144 +im[3300] = 0.0353 +ij[3300] = 16 +id[3301] = "2241-09-24T19:52:37" +ik[3301] = 0.87 +il[3301] = -168 +im[3301] = 0.0389 +ij[3301] = 12 +id[3302] = "2241-12-20T08:03:35" +ik[3302] = 5.584 +il[3302] = -36 +im[3302] = 0.0426 +ij[3302] = 28.1 +id[3303] = "2241-12-26T05:03:59" +ik[3303] = 4.327 +il[3303] = 64 +im[3303] = 0.0544 +ij[3303] = 27.4 +id[3304] = "2242-01-09T14:00:34" +ik[3304] = 5.45 +il[3304] = 77 +im[3304] = 0.0584 +ij[3304] = 27.1 +id[3305] = "2242-01-28T23:33:01" +ik[3305] = 0 +il[3305] = 118 +im[3305] = 0.0078 +ij[3305] = 17 +id[3306] = "2242-03-11T23:08:38" +ik[3306] = 1.223 +il[3306] = 161 +im[3306] = 0.0301 +ij[3306] = 28.8 +id[3307] = "2242-03-18T00:44:30" +ik[3307] = 34.049 +il[3307] = -166 +im[3307] = 0.066 +ij[3307] = 8 +id[3308] = "2242-03-31T05:46:44" +ik[3308] = 0.205 +il[3308] = -116 +im[3308] = 0.0687 +ij[3308] = 27.3 +id[3309] = "2242-04-04T05:19:34" +ik[3309] = 0.091 +il[3309] = -72 +im[3309] = 0.094 +ij[3309] = 28.6 +id[3310] = "2242-04-30T20:26:58" +ik[3310] = 1.088 +il[3310] = -45 +im[3310] = 0.0972 +ij[3310] = 27.5 +id[3311] = "2242-05-29T14:04:30" +ik[3311] = -24.73 +il[3311] = -35 +im[3311] = 0.1079 +ij[3311] = 15 +id[3312] = "2242-06-13T19:00:20" +ik[3312] = 0.638 +il[3312] = 38 +im[3312] = 0.1122 +ij[3312] = 28.5 +id[3313] = "2242-07-16T00:29:02" +ik[3313] = 4.481 +il[3313] = -92 +im[3313] = 0.1235 +ij[3313] = 27.6 +id[3314] = "2242-07-23T21:53:34" +ik[3314] = 47.336 +il[3314] = 24 +im[3314] = 0.0897 +ij[3314] = 3 +id[3315] = "2242-08-20T19:46:50" +ik[3315] = -2.339 +il[3315] = -31 +im[3315] = 0.0793 +ij[3315] = 2 +id[3316] = "2242-10-14T02:36:03" +ik[3316] = 0 +il[3316] = 39 +im[3316] = 0.0222 +ij[3316] = 13 +id[3317] = "2242-11-01T06:24:05" +ik[3317] = 2.267 +il[3317] = 160 +im[3317] = 0.2878 +ij[3317] = 28.1 +id[3318] = "2242-11-18T23:33:57" +ik[3318] = 0.28 +il[3318] = 60 +im[3318] = 0.2567 +ij[3318] = 11 +id[3319] = "2242-12-22T01:38:38" +ik[3319] = 68.96 +il[3319] = 171 +im[3319] = 0.1085 +ij[3319] = 7.1352 +id[3320] = "2242-12-22T10:44:49" +ik[3320] = 2.523 +il[3320] = 34 +im[3320] = 0.126 +ij[3320] = 28.2 +id[3321] = "2243-02-13T03:59:17" +ik[3321] = -1.726 +il[3321] = -87 +im[3321] = 0.0211 +ij[3321] = 4 +id[3322] = "2243-02-14T06:07:29" +ik[3322] = 123.15 +il[3322] = -109 +im[3322] = 0.0202 +ij[3322] = 14 +id[3323] = "2243-02-24T12:17:34" +ik[3323] = 38.182 +il[3323] = -105 +im[3323] = 0.0745 +ij[3323] = 1 +id[3324] = "2243-03-06T23:12:41" +ik[3324] = 2.646 +il[3324] = -170 +im[3324] = 0.1117 +ij[3324] = 27.2 +id[3325] = "2243-04-07T06:22:55" +ik[3325] = 12 +il[3325] = 17 +im[3325] = 0.071 +ij[3325] = 18 +id[3326] = "2243-05-07T23:34:15" +ik[3326] = 1.104 +il[3326] = 49 +im[3326] = 0.0287 +ij[3326] = 28.7 +id[3327] = "2243-05-12T11:11:10" +ik[3327] = 31.345 +il[3327] = -83 +im[3327] = 0.046 +ij[3327] = 9 +id[3328] = "2243-08-29T17:51:16" +ik[3328] = 0.698 +il[3328] = 151 +im[3328] = 0.0293 +ij[3328] = 28.2 +id[3329] = "2243-08-31T06:09:57" +ik[3329] = 25.921 +il[3329] = -19 +im[3329] = 0.0115 +ij[3329] = 16 +id[3330] = "2243-11-01T23:57:57" +ik[3330] = 0.24 +il[3330] = -28 +im[3330] = 0.0462 +ij[3330] = 12 +id[3331] = "2244-01-09T07:17:13" +ik[3331] = 0 +il[3331] = -12 +im[3331] = 0.0026 +ij[3331] = 17 +id[3332] = "2244-02-24T12:33:17" +ik[3332] = 1.198 +il[3332] = -2 +im[3332] = 0.0383 +ij[3332] = 28.8 +id[3333] = "2244-03-07T15:42:33" +ik[3333] = 0.267 +il[3333] = 66 +im[3333] = 0.0079 +ij[3333] = 27.3 +id[3334] = "2244-04-05T22:20:34" +ik[3334] = 0.79 +il[3334] = -114 +im[3334] = 0.0155 +ij[3334] = 27.5 +id[3335] = "2244-04-16T09:55:06" +ik[3335] = 0.597 +il[3335] = 173 +im[3335] = 0.0523 +ij[3335] = 28.6 +id[3336] = "2244-05-05T06:45:18" +ik[3336] = -25.306 +il[3336] = 42 +im[3336] = 0.0251 +ij[3336] = 15 +id[3337] = "2244-05-09T11:52:44" +ik[3337] = 3.31 +il[3337] = 6 +im[3337] = 0.079 +ij[3337] = 28.2 +id[3338] = "2244-05-27T09:27:36" +ik[3338] = 36.239 +il[3338] = -144 +im[3338] = 0.0774 +ij[3338] = 8 +id[3339] = "2244-06-15T22:24:50" +ik[3339] = 3.472 +il[3339] = -148 +im[3339] = 0.0249 +ij[3339] = 27.6 +id[3340] = "2244-08-09T04:04:12" +ik[3340] = 0.228 +il[3340] = -61 +im[3340] = 0.0954 +ij[3340] = 28.5 +id[3341] = "2244-08-21T05:55:13" +ik[3341] = 5.352 +il[3341] = 30 +im[3341] = 0.1043 +ij[3341] = 27.2 +id[3342] = "2244-09-07T14:52:30" +ik[3342] = 43.749 +il[3342] = 66 +im[3342] = 0.0947 +ij[3342] = 3 +id[3343] = "2244-09-10T09:34:32" +ik[3343] = 11 +il[3343] = 173 +im[3343] = 0.0306 +ij[3343] = 18 +id[3344] = "2244-09-23T04:46:25" +ik[3344] = -2.036 +il[3344] = 10 +im[3344] = 0.0443 +ij[3344] = 2 +id[3345] = "2244-10-30T02:31:46" +ik[3345] = 0.541 +il[3345] = 43 +im[3345] = 0.1753 +ij[3345] = 28.7 +id[3346] = "2244-11-24T06:07:58" +ik[3346] = 0 +il[3346] = -127 +im[3346] = 0.1701 +ij[3346] = 13 +id[3347] = "2244-12-09T02:31:53" +ik[3347] = 2.345 +il[3347] = 71 +im[3347] = 0.2139 +ij[3347] = 28.7 +id[3348] = "2245-01-02T12:11:18" +ik[3348] = 3.55 +il[3348] = 141 +im[3348] = 0.1477 +ij[3348] = 11 +id[3349] = "2245-01-25T09:31:42" +ik[3349] = 3.671 +il[3349] = -146 +im[3349] = 0.0684 +ij[3349] = 28.5 +id[3350] = "2245-02-01T01:41:38" +ik[3350] = 12 +il[3350] = 36 +im[3350] = 0.1883 +ij[3350] = 17 +id[3351] = "2245-02-10T05:10:34" +ik[3351] = 77.96 +il[3351] = 59 +im[3351] = 0.0729 +ij[3351] = 7.1618 +id[3352] = "2245-02-10T18:05:47" +ik[3352] = 12 +il[3352] = -130 +im[3352] = 0.0925 +ij[3352] = 18 +id[3353] = "2245-04-02T04:51:08" +ik[3353] = 2.109 +il[3353] = -175 +im[3353] = 0.0673 +ij[3353] = 28.5 +id[3354] = "2245-04-06T10:08:12" +ik[3354] = -1.571 +il[3354] = 145 +im[3354] = 0.0324 +ij[3354] = 4 +id[3355] = "2245-04-09T14:05:34" +ik[3355] = 37.034 +il[3355] = 116 +im[3355] = 0.0919 +ij[3355] = 1 +id[3356] = "2245-04-15T11:47:23" +ik[3356] = 142.24 +il[3356] = -154 +im[3356] = 0.0926 +ij[3356] = 14 +id[3357] = "2245-04-24T00:54:18" +ik[3357] = 1.46 +il[3357] = 91 +im[3357] = 0.0759 +ij[3357] = 28.7 +id[3358] = "2245-06-17T10:09:50" +ik[3358] = 31.464 +il[3358] = 111 +im[3358] = 0.0284 +ij[3358] = 9 +id[3359] = "2245-07-27T21:59:31" +ik[3359] = 0.123 +il[3359] = -37 +im[3359] = 0.0098 +ij[3359] = 28.2 +id[3360] = "2245-08-12T01:32:43" +ik[3360] = 26.039 +il[3360] = 56 +im[3360] = 0.0063 +ij[3360] = 16 +id[3361] = "2245-09-16T01:37:24" +ik[3361] = 2.147 +il[3361] = 34 +im[3361] = 0.0624 +ij[3361] = 28.1 +id[3362] = "2245-12-16T22:58:24" +ik[3362] = 0.61 +il[3362] = -90 +im[3362] = 0.0361 +ij[3362] = 12 +id[3363] = "2245-12-20T13:53:11" +ik[3363] = 0 +il[3363] = -113 +im[3363] = 0.0087 +ij[3363] = 17 +id[3364] = "2246-03-04T17:10:17" +ik[3364] = 0.957 +il[3364] = -169 +im[3364] = 0.0381 +ij[3364] = 28.1 +id[3365] = "2246-03-15T23:32:12" +ik[3365] = 0.657 +il[3365] = -154 +im[3365] = 0.0155 +ij[3365] = 27.5 +id[3366] = "2246-04-14T18:31:05" +ik[3366] = -25.591 +il[3366] = -139 +im[3366] = 0.0042 +ij[3366] = 15 +id[3367] = "2246-04-26T19:56:19" +ik[3367] = 0.891 +il[3367] = -43 +im[3367] = 0.0292 +ij[3367] = 28.2 +id[3368] = "2246-04-29T10:13:37" +ik[3368] = 1.251 +il[3368] = 128 +im[3368] = 0.0065 +ij[3368] = 28.6 +id[3369] = "2246-05-24T15:02:32" +ik[3369] = 3.015 +il[3369] = -58 +im[3369] = 0.0465 +ij[3369] = 27.6 +id[3370] = "2246-07-26T22:47:55" +ik[3370] = 4.879 +il[3370] = 88 +im[3370] = 0.0277 +ij[3370] = 27.2 +id[3371] = "2246-08-13T02:52:56" +ik[3371] = 34.727 +il[3371] = -166 +im[3371] = 0.0753 +ij[3371] = 8 +id[3372] = "2246-08-15T02:12:27" +ik[3372] = 11 +il[3372] = -136 +im[3372] = 0.0857 +ij[3372] = 18 +id[3373] = "2246-10-01T21:33:48" +ik[3373] = 0.26 +il[3373] = 39 +im[3373] = 0.0486 +ij[3373] = 28.7 +id[3374] = "2246-10-24T10:33:59" +ik[3374] = -1.782 +il[3374] = 62 +im[3374] = 0.0942 +ij[3374] = 2 +id[3375] = "2246-10-25T00:42:37" +ik[3375] = 39.404 +il[3375] = -144 +im[3375] = 0.0995 +ij[3375] = 3 +id[3376] = "2246-11-02T20:27:40" +ik[3376] = 0.533 +il[3376] = 5 +im[3376] = 0.0328 +ij[3376] = 28.5 +id[3377] = "2246-12-16T02:35:26" +ik[3377] = 20.305 +il[3377] = -29 +im[3377] = 0.047 +ij[3377] = 16 +id[3378] = "2246-12-29T11:47:51" +ik[3378] = 0 +il[3378] = -37 +im[3378] = 0.0797 +ij[3378] = 13 +id[3379] = "2247-01-12T11:14:46" +ik[3379] = 1.437 +il[3379] = 106 +im[3379] = 0.065 +ij[3379] = 28.2 +id[3380] = "2247-01-17T23:32:06" +ik[3380] = 3.009 +il[3380] = -27 +im[3380] = 0.1961 +ij[3380] = 28.5 +id[3381] = "2247-02-07T20:17:31" +ik[3381] = 4.37 +il[3381] = -160 +im[3381] = 0.0592 +ij[3381] = 11 +id[3382] = "2247-03-21T10:50:27" +ik[3382] = 81.96 +il[3382] = 168 +im[3382] = 0.1196 +ij[3382] = 7.1946 +id[3383] = "2247-03-24T18:06:14" +ik[3383] = 6.119 +il[3383] = 91 +im[3383] = 0.1738 +ij[3383] = 28.7 +id[3384] = "2247-05-19T14:52:30" +ik[3384] = 37.601 +il[3384] = -47 +im[3384] = 0.1128 +ij[3384] = 1 +id[3385] = "2247-05-22T07:38:00" +ik[3385] = -1.575 +il[3385] = 88 +im[3385] = 0.1018 +ij[3385] = 4 +id[3386] = "2247-05-27T18:04:19" +ik[3386] = 149.26 +il[3386] = -16 +im[3386] = 0.0062 +ij[3386] = 14 +id[3387] = "2247-07-20T12:25:30" +ik[3387] = 0.526 +il[3387] = -132 +im[3387] = 0.0526 +ij[3387] = 28.5 +id[3388] = "2247-07-27T08:25:23" +ik[3388] = 32.416 +il[3388] = -6 +im[3388] = 0.0543 +ij[3388] = 9 +id[3389] = "2247-10-29T01:05:13" +ik[3389] = 3.57 +il[3389] = -64 +im[3389] = 0.0352 +ij[3389] = 27.4 +id[3390] = "2247-11-11T20:56:05" +ik[3390] = 6.169 +il[3390] = 133 +im[3390] = 0.0465 +ij[3390] = 27.1 +id[3391] = "2247-11-24T19:39:53" +ik[3391] = 1.627 +il[3391] = -80 +im[3391] = 0.0549 +ij[3391] = 28.1 +id[3392] = "2247-12-01T22:18:56" +ik[3392] = 0 +il[3392] = -46 +im[3392] = 0.0259 +ij[3392] = 17 +id[3393] = "2248-02-18T11:07:18" +ik[3393] = 1.06 +il[3393] = -168 +im[3393] = 0.0635 +ij[3393] = 12 +id[3394] = "2248-03-25T06:15:52" +ik[3394] = -25.781 +il[3394] = 36 +im[3394] = 0.0026 +ij[3394] = 15 +id[3395] = "2248-05-11T10:33:08" +ik[3395] = 1.7 +il[3395] = 90 +im[3395] = 0.0504 +ij[3395] = 28.6 +id[3396] = "2248-05-22T20:24:57" +ik[3396] = 1.734 +il[3396] = 54 +im[3396] = 0.0064 +ij[3396] = 28.1 +id[3397] = "2248-07-05T00:11:31" +ik[3397] = 4.571 +il[3397] = 60 +im[3397] = 0.0136 +ij[3397] = 27.2 +id[3398] = "2248-07-24T12:11:14" +ik[3398] = 12 +il[3398] = 70 +im[3398] = 0.0617 +ij[3398] = 18 +id[3399] = "2248-09-20T04:41:10" +ik[3399] = 0.336 +il[3399] = 22 +im[3399] = 0.0723 +ij[3399] = 28.7 +id[3400] = "2248-10-02T14:40:03" +ik[3400] = 32.342 +il[3400] = -7 +im[3400] = 0.0572 +ij[3400] = 8 +id[3401] = "2248-11-25T17:23:47" +ik[3401] = -1.631 +il[3401] = 115 +im[3401] = 0.0149 +ij[3401] = 2 +id[3402] = "2248-12-04T08:58:33" +ik[3402] = 36.867 +il[3402] = -35 +im[3402] = 0.0863 +ij[3402] = 3 +id[3403] = "2249-01-31T18:04:47" +ik[3403] = 0 +il[3403] = 32 +im[3403] = 0.0577 +ij[3403] = 13 +id[3404] = "2249-03-12T21:01:05" +ik[3404] = 3.74 +il[3404] = -13 +im[3404] = 0.1012 +ij[3404] = 11 +id[3405] = "2249-04-01T08:30:39" +ik[3405] = 3.684 +il[3405] = 156 +im[3405] = 0.1849 +ij[3405] = 28.1 +id[3406] = "2249-04-17T21:28:03" +ik[3406] = 1.27 +il[3406] = 110 +im[3406] = 0.1867 +ij[3406] = 28.2 +id[3407] = "2249-04-23T17:07:23" +ik[3407] = 81.96 +il[3407] = -129 +im[3407] = 0.0178 +ij[3407] = 7.2109 +id[3408] = "2249-06-28T02:07:24" +ik[3408] = 26.203 +il[3408] = 9 +im[3408] = 0.1009 +ij[3408] = 16 +id[3409] = "2249-06-28T06:31:14" +ik[3409] = 147.52 +il[3409] = -55 +im[3409] = 0.0987 +ij[3409] = 14 +id[3410] = "2249-06-28T09:01:35" +ik[3410] = 39.725 +il[3410] = -92 +im[3410] = 0.0973 +ij[3410] = 1 +id[3411] = "2249-07-04T10:55:21" +ik[3411] = -1.713 +il[3411] = -61 +im[3411] = 0.0262 +ij[3411] = 4 +id[3412] = "2249-09-13T15:14:43" +ik[3412] = 34.135 +il[3412] = -153 +im[3412] = 0.0305 +ij[3412] = 9 +id[3413] = "2249-10-07T16:08:45" +ik[3413] = 3.212 +il[3413] = 68 +im[3413] = 0.0496 +ij[3413] = 27.4 +id[3414] = "2249-10-17T18:18:51" +ik[3414] = 1.388 +il[3414] = 134 +im[3414] = 0.079 +ij[3414] = 28.5 +id[3415] = "2249-11-11T16:07:19" +ik[3415] = 0 +il[3415] = 51 +im[3415] = 0.0431 +ij[3415] = 17 +id[3416] = "2250-01-05T13:16:17" +ik[3416] = 0.146 +il[3416] = -87 +im[3416] = 0.0063 +ij[3416] = 27.3 +id[3417] = "2250-01-12T12:13:49" +ik[3417] = 1.019 +il[3417] = -3 +im[3417] = 0.0662 +ij[3417] = 28.8 +id[3418] = "2250-01-26T03:29:32" +ik[3418] = 1.143 +il[3418] = -97 +im[3418] = 0.0599 +ij[3418] = 28.2 +id[3419] = "2250-02-03T00:46:19" +ik[3419] = 0.538 +il[3419] = 25 +im[3419] = 0.0156 +ij[3419] = 27.5 +id[3420] = "2250-02-11T14:56:07" +ik[3420] = 0.75 +il[3420] = -96 +im[3420] = 0.0651 +ij[3420] = 28.1 +id[3421] = "2250-03-05T22:25:49" +ik[3421] = -25.935 +il[3421] = 15 +im[3421] = 0.0079 +ij[3421] = 15 +id[3422] = "2250-05-01T03:16:12" +ik[3422] = 0.2 +il[3422] = 126 +im[3422] = 0.0195 +ij[3422] = 12 +id[3423] = "2250-07-05T13:34:43" +ik[3423] = 12 +il[3423] = 59 +im[3423] = 0.056 +ij[3423] = 18 +id[3424] = "2250-07-26T03:21:44" +ik[3424] = 2.085 +il[3424] = 47 +im[3424] = 0.0297 +ij[3424] = 28.1 +id[3425] = "2250-09-12T22:57:47" +ik[3425] = 0.373 +il[3425] = -129 +im[3425] = 0.0516 +ij[3425] = 28.7 +id[3426] = "2250-10-05T18:12:01" +ik[3426] = 1.389 +il[3426] = 163 +im[3426] = 0.0222 +ij[3426] = 28.2 +id[3427] = "2250-11-09T21:51:36" +ik[3427] = 30.967 +il[3427] = 88 +im[3427] = 0.0666 +ij[3427] = 8 +id[3428] = "2250-11-21T08:03:14" +ik[3428] = 25.035 +il[3428] = 45 +im[3428] = 0.023 +ij[3428] = 16 +id[3429] = "2251-01-03T22:51:48" +ik[3429] = -1.581 +il[3429] = -116 +im[3429] = 0.0581 +ij[3429] = 2 +id[3430] = "2251-01-12T16:24:31" +ik[3430] = 36.181 +il[3430] = 65 +im[3430] = 0.0708 +ij[3430] = 3 +id[3431] = "2251-03-11T06:31:42" +ik[3431] = 0 +il[3431] = 46 +im[3431] = 0.0462 +ij[3431] = 13 +id[3432] = "2251-04-18T12:50:25" +ik[3432] = 1.75 +il[3432] = -65 +im[3432] = 0.1451 +ij[3432] = 11 +id[3433] = "2251-05-29T05:34:18" +ik[3433] = 78.96 +il[3433] = -138 +im[3433] = 0.1377 +ij[3433] = 7.1845 +id[3434] = "2251-07-27T14:07:03" +ik[3434] = 138.32 +il[3434] = -48 +im[3434] = 0.0215 +ij[3434] = 14 +id[3435] = "2251-08-10T08:00:15" +ik[3435] = -1.973 +il[3435] = 177 +im[3435] = 0.0175 +ij[3435] = 4 +id[3436] = "2251-08-12T12:20:26" +ik[3436] = 43.275 +il[3436] = 134 +im[3436] = 0.0684 +ij[3436] = 1 +id[3437] = "2251-09-13T14:49:15" +ik[3437] = 2.599 +il[3437] = 50 +im[3437] = 0.1025 +ij[3437] = 27.4 +id[3438] = "2251-10-21T16:36:03" +ik[3438] = 0 +il[3438] = 37 +im[3438] = 0.026 +ij[3438] = 17 +id[3439] = "2251-11-19T05:13:49" +ik[3439] = 35.545 +il[3439] = 128 +im[3439] = 0.0185 +ij[3439] = 9 +id[3440] = "2251-12-15T09:32:00" +ik[3440] = 0 +il[3440] = -38 +im[3440] = 0.0325 +ij[3440] = 27.3 +id[3441] = "2251-12-24T02:33:29" +ik[3441] = 0.383 +il[3441] = 152 +im[3441] = 0.082 +ij[3441] = 28.5 +id[3442] = "2251-12-25T19:18:47" +ik[3442] = 0.65 +il[3442] = -83 +im[3442] = 0.0809 +ij[3442] = 28.2 +id[3443] = "2251-12-28T15:28:28" +ik[3443] = 0.946 +il[3443] = 3 +im[3443] = 0.0595 +ij[3443] = 28.8 +id[3444] = "2252-01-13T05:20:50" +ik[3444] = 0.528 +il[3444] = -52 +im[3444] = 0.0332 +ij[3444] = 27.5 +id[3445] = "2252-02-14T03:37:39" +ik[3445] = -26.08 +il[3445] = -75 +im[3445] = 0.0137 +ij[3445] = 15 +id[3446] = "2252-03-10T14:17:03" +ik[3446] = 1.306 +il[3446] = 14 +im[3446] = 0.0382 +ij[3446] = 28.2 +id[3447] = "2252-03-23T14:03:55" +ik[3447] = 2.231 +il[3447] = 147 +im[3447] = 0.0588 +ij[3447] = 27.6 +id[3448] = "2252-06-16T04:21:20" +ik[3448] = 12 +il[3448] = 29 +im[3448] = 0.0578 +ij[3448] = 18 +id[3449] = "2252-06-24T08:13:05" +ik[3449] = 0.74 +il[3449] = 48 +im[3449] = 0.0181 +ij[3449] = 12 +id[3450] = "2252-09-06T04:31:28" +ik[3450] = 0.366 +il[3450] = -75 +im[3450] = 0.0362 +ij[3450] = 28.7 +id[3451] = "2252-09-22T05:10:31" +ik[3451] = 0.448 +il[3451] = 70 +im[3451] = 0.0563 +ij[3451] = 28.2 +id[3452] = "2252-10-31T06:50:04" +ik[3452] = 25.382 +il[3452] = 63 +im[3452] = 0.0117 +ij[3452] = 16 +id[3453] = "2252-12-12T19:39:36" +ik[3453] = 30.63 +il[3453] = -80 +im[3453] = 0.021 +ij[3453] = 8 +id[3454] = "2253-02-24T18:09:30" +ik[3454] = 37.454 +il[3454] = -70 +im[3454] = 0.0722 +ij[3454] = 3 +id[3455] = "2253-02-26T08:11:50" +ik[3455] = -1.657 +il[3455] = 94 +im[3455] = 0.1016 +ij[3455] = 2 +id[3456] = "2253-02-28T22:41:47" +ik[3456] = 5.284 +il[3456] = -98 +im[3456] = 0.1174 +ij[3456] = 27.4 +id[3457] = "2253-03-25T19:15:27" +ik[3457] = 4.689 +il[3457] = -171 +im[3457] = 0.12 +ij[3457] = 27.1 +id[3458] = "2253-04-30T00:03:24" +ik[3458] = 0 +il[3458] = 90 +im[3458] = 0.0914 +ij[3458] = 13 +id[3459] = "2253-05-10T16:44:55" +ik[3459] = 0.268 +il[3459] = -70 +im[3459] = 0.2498 +ij[3459] = 28.2 +id[3460] = "2253-06-02T18:37:06" +ik[3460] = 1.82 +il[3460] = 109 +im[3460] = 0.2796 +ij[3460] = 11 +id[3461] = "2253-06-17T22:50:24" +ik[3461] = 3.145 +il[3461] = 1 +im[3461] = 0.2877 +ij[3461] = 28.1 +id[3462] = "2253-07-10T23:06:00" +ik[3462] = 71.96 +il[3462] = -139 +im[3462] = 0.1322 +ij[3462] = 7.1258 +id[3463] = "2253-07-11T13:04:13" +ik[3463] = 1.15 +il[3463] = 17 +im[3463] = 0.1618 +ij[3463] = 27.4 +id[3464] = "2253-08-07T12:53:19" +ik[3464] = 5.692 +il[3464] = -76 +im[3464] = 0.0991 +ij[3464] = 27.4 +id[3465] = "2253-08-29T02:04:47" +ik[3465] = 121.08 +il[3465] = -62 +im[3465] = 0.1616 +ij[3465] = 14 +id[3466] = "2253-09-09T12:13:37" +ik[3466] = -2.292 +il[3466] = -102 +im[3466] = 0.1602 +ij[3466] = 4 +id[3467] = "2253-09-23T04:50:50" +ik[3467] = 0 +il[3467] = 143 +im[3467] = 0.1643 +ij[3467] = 17 +id[3468] = "2253-09-28T13:03:30" +ik[3468] = 46.294 +il[3468] = 72 +im[3468] = 0.085 +ij[3468] = 1 +id[3469] = "2253-11-19T07:40:42" +ik[3469] = 0.382 +il[3469] = -57 +im[3469] = 0.1138 +ij[3469] = 27.3 +id[3470] = "2253-12-09T14:24:04" +ik[3470] = 0.941 +il[3470] = 41 +im[3470] = 0.0475 +ij[3470] = 28.8 +id[3471] = "2253-12-19T14:46:30" +ik[3471] = 0.607 +il[3471] = 133 +im[3471] = 0.0984 +ij[3471] = 27.5 +id[3472] = "2254-01-22T18:53:26" +ik[3472] = -26.226 +il[3472] = 42 +im[3472] = 0.0259 +ij[3472] = 15 +id[3473] = "2254-01-26T11:04:02" +ik[3473] = 34.462 +il[3473] = -165 +im[3473] = 0.0444 +ij[3473] = 9 +id[3474] = "2254-02-18T12:09:06" +ik[3474] = 1.019 +il[3474] = 39 +im[3474] = 0.0542 +ij[3474] = 28.5 +id[3475] = "2254-03-02T11:16:30" +ik[3475] = 1.962 +il[3475] = 167 +im[3475] = 0.0754 +ij[3475] = 27.6 +id[3476] = "2254-05-06T17:38:25" +ik[3476] = 3.842 +il[3476] = -20 +im[3476] = 0.011 +ij[3476] = 27.2 +id[3477] = "2254-05-28T18:15:06" +ik[3477] = 12 +il[3477] = 179 +im[3477] = 0.0584 +ij[3477] = 18 +id[3478] = "2254-08-05T15:04:39" +ik[3478] = 1.13 +il[3478] = 166 +im[3478] = 0.052 +ij[3478] = 12 +id[3479] = "2254-10-13T01:43:47" +ik[3479] = 25.592 +il[3479] = 154 +im[3479] = 0.031 +ij[3479] = 16 +id[3480] = "2255-01-16T11:54:42" +ik[3480] = 31.304 +il[3480] = -164 +im[3480] = 0.0382 +ij[3480] = 8 +id[3481] = "2255-01-26T11:57:48" +ik[3481] = 4.769 +il[3481] = -69 +im[3481] = 0.0836 +ij[3481] = 27.4 +id[3482] = "2255-02-11T08:05:51" +ik[3482] = 5.032 +il[3482] = 139 +im[3482] = 0.0778 +ij[3482] = 27.1 +id[3483] = "2255-03-04T08:41:24" +ik[3483] = 23 +il[3483] = -31 +im[3483] = 0.019 +ij[3483] = 17 +id[3484] = "2255-04-25T17:14:29" +ik[3484] = 41.5 +il[3484] = -24 +im[3484] = 0.1174 +ij[3484] = 3 +id[3485] = "2255-05-20T05:52:18" +ik[3485] = -2.014 +il[3485] = 19 +im[3485] = 0.2006 +ij[3485] = 2 +id[3486] = "2255-05-24T12:24:18" +ik[3486] = 1.023 +il[3486] = -39 +im[3486] = 0.1416 +ij[3486] = 27.3 +id[3487] = "2255-07-02T16:36:46" +ik[3487] = 5.602 +il[3487] = -90 +im[3487] = 0.2711 +ij[3487] = 28.8 +id[3488] = "2255-07-12T02:05:18" +ik[3488] = 0 +il[3488] = -142 +im[3488] = 0.2748 +ij[3488] = 13 +id[3489] = "2255-07-17T17:37:53" +ik[3489] = 5.219 +il[3489] = 39 +im[3489] = 0.3094 +ij[3489] = 28.1 +id[3490] = "2255-08-11T00:11:19" +ik[3490] = 6.6 +il[3490] = 163 +im[3490] = 0.4091 +ij[3490] = 11 +id[3491] = "2255-08-27T08:01:18" +ik[3491] = 4.893 +il[3491] = 31 +im[3491] = 0.2769 +ij[3491] = 28.1 +id[3492] = "2255-09-12T03:53:04" +ik[3492] = 62.07 +il[3492] = -111 +im[3492] = 0.173 +ij[3492] = 7.0998 +id[3493] = "2255-09-18T22:24:43" +ik[3493] = 4.543 +il[3493] = 38 +im[3493] = 0.2758 +ij[3493] = 27.3 +id[3494] = "2255-09-20T17:50:19" +ik[3494] = 3.916 +il[3494] = 125 +im[3494] = 0.2972 +ij[3494] = 28.2 +id[3495] = "2255-10-23T12:47:51" +ik[3495] = 103.45 +il[3495] = 162 +im[3495] = 0.0847 +ij[3495] = 14 +id[3496] = "2255-11-02T18:04:45" +ik[3496] = -2.28 +il[3496] = -179 +im[3496] = 0.2149 +ij[3496] = 4 +id[3497] = "2255-11-06T01:35:15" +ik[3497] = 1.745 +il[3497] = 102 +im[3497] = 0.1413 +ij[3497] = 28.8 +id[3498] = "2255-11-12T01:40:31" +ik[3498] = 1.433 +il[3498] = 160 +im[3498] = 0.102 +ij[3498] = 27.5 +id[3499] = "2255-11-29T13:03:30" +ik[3499] = 43.695 +il[3499] = 158 +im[3499] = 0.1682 +ij[3499] = 1 +id[3500] = "2255-12-27T05:45:15" +ik[3500] = -26.303 +il[3500] = 174 +im[3500] = 0.1261 +ij[3500] = 15 +id[3501] = "2256-02-05T10:41:15" +ik[3501] = 1.605 +il[3501] = 123 +im[3501] = 0.0462 +ij[3501] = 27.6 +id[3502] = "2256-03-18T02:05:22" +ik[3502] = 32.63 +il[3502] = -74 +im[3502] = 0.0174 +ij[3502] = 9 +id[3503] = "2256-04-14T22:18:00" +ik[3503] = 3.52 +il[3503] = -114 +im[3503] = 0.0064 +ij[3503] = 27.2 +id[3504] = "2256-04-24T00:14:43" +ik[3504] = 1.299 +il[3504] = -58 +im[3504] = 0.0629 +ij[3504] = 28.5 +id[3505] = "2256-05-08T14:32:45" +ik[3505] = 12 +il[3505] = -135 +im[3505] = 0.0588 +ij[3505] = 18 +id[3506] = "2256-06-24T06:38:45" +ik[3506] = 0.609 +il[3506] = 74 +im[3506] = 0.016 +ij[3506] = 28.1 +id[3507] = "2256-06-29T12:04:47" +ik[3507] = 0.552 +il[3507] = 42 +im[3507] = 0.0479 +ij[3507] = 28.2 +id[3508] = "2256-07-09T08:33:48" +ik[3508] = 0.549 +il[3508] = -179 +im[3508] = 0.0141 +ij[3508] = 28.6 +id[3509] = "2256-09-10T17:06:26" +ik[3509] = 1.02 +il[3509] = -46 +im[3509] = 0.0475 +ij[3509] = 12 +id[3510] = "2256-09-24T13:40:37" +ik[3510] = 25.746 +il[3510] = -23 +im[3510] = 0.0511 +ij[3510] = 16 +id[3511] = "2256-11-20T10:24:24" +ik[3511] = 3.434 +il[3511] = -134 +im[3511] = 0.0495 +ij[3511] = 28.1 +id[3512] = "2257-01-03T02:48:19" +ik[3512] = 4.434 +il[3512] = 41 +im[3512] = 0.0544 +ij[3512] = 27.4 +id[3513] = "2257-01-17T17:35:44" +ik[3513] = 5.349 +il[3513] = -48 +im[3513] = 0.0621 +ij[3513] = 27.1 +id[3514] = "2257-02-06T06:28:05" +ik[3514] = 0 +il[3514] = -51 +im[3514] = 0.057 +ij[3514] = 17 +id[3515] = "2257-02-06T11:26:18" +ik[3515] = 4.139 +il[3515] = -123 +im[3515] = 0.055 +ij[3515] = 28.2 +id[3516] = "2257-02-25T20:52:02" +ik[3516] = 33.069 +il[3516] = -82 +im[3516] = 0.0125 +ij[3516] = 8 +id[3517] = "2257-04-10T12:12:20" +ik[3517] = 0.13 +il[3517] = 101 +im[3517] = 0.0215 +ij[3517] = 27.3 +id[3518] = "2257-05-07T02:02:52" +ik[3518] = 1.142 +il[3518] = 146 +im[3518] = 0.0381 +ij[3518] = 28.8 +id[3519] = "2257-05-12T08:01:05" +ik[3519] = 1.338 +il[3519] = 106 +im[3519] = 0.0833 +ij[3519] = 27.5 +id[3520] = "2257-06-09T13:11:04" +ik[3520] = -24.258 +il[3520] = -62 +im[3520] = 0.0821 +ij[3520] = 15 +id[3521] = "2257-07-04T00:51:24" +ik[3521] = 47.005 +il[3521] = -1 +im[3521] = 0.0497 +ij[3521] = 3 +id[3522] = "2257-08-02T22:43:00" +ik[3522] = -2.394 +il[3522] = -39 +im[3522] = 0.0053 +ij[3522] = 2 +id[3523] = "2257-08-05T04:09:08" +ik[3523] = 5.476 +il[3523] = -99 +im[3523] = 0.095 +ij[3523] = 27.6 +id[3524] = "2257-09-21T12:48:22" +ik[3524] = 0 +il[3524] = -125 +im[3524] = 0.312 +ij[3524] = 13 +id[3525] = "2257-10-09T03:56:49" +ik[3525] = 4.174 +il[3525] = 179 +im[3525] = 0.0872 +ij[3525] = 28.1 +id[3526] = "2257-10-27T00:43:20" +ik[3526] = 1.68 +il[3526] = 24 +im[3526] = 0.1978 +ij[3526] = 11 +id[3527] = "2257-11-10T08:29:16" +ik[3527] = 0.887 +il[3527] = -106 +im[3527] = 0.2707 +ij[3527] = 28.1 +id[3528] = "2257-11-26T13:25:07" +ik[3528] = 66.03 +il[3528] = -36 +im[3528] = 0.2564 +ij[3528] = 7.1277 +id[3529] = "2257-12-07T00:02:12" +ik[3529] = 1.725 +il[3529] = -96 +im[3529] = 0.1877 +ij[3529] = 27.6 +id[3530] = "2258-01-14T12:33:57" +ik[3530] = 114.99 +il[3530] = 82 +im[3530] = 0.0203 +ij[3530] = 14 +id[3531] = "2258-01-18T21:50:33" +ik[3531] = -1.844 +il[3531] = -16 +im[3531] = 0.1141 +ij[3531] = 4 +id[3532] = "2258-02-03T16:37:29" +ik[3532] = 39.224 +il[3532] = -149 +im[3532] = 0.1354 +ij[3532] = 1 +id[3533] = "2258-03-20T14:37:38" +ik[3533] = 2.997 +il[3533] = -56 +im[3533] = 0.0836 +ij[3533] = 27.2 +id[3534] = "2259-09-05T02:02:15" +ik[3534] = 5.62 +il[3534] = 75 +im[3534] = 0.1358 +ij[3534] = 27.2 +id[3535] = "2258-04-17T04:07:32" +ik[3535] = 12 +il[3535] = 2 +im[3535] = 0.076 +ij[3535] = 18 +id[3536] = "2258-04-27T21:37:48" +ik[3536] = 31.534 +il[3536] = -160 +im[3536] = 0.0608 +ij[3536] = 9 +id[3537] = "2258-06-03T19:37:06" +ik[3537] = 0.642 +il[3537] = -137 +im[3537] = 0.0362 +ij[3537] = 28.2 +id[3538] = "2258-07-17T07:59:19" +ik[3538] = 0.151 +il[3538] = 87 +im[3538] = 0.0205 +ij[3538] = 28.5 +id[3539] = "2258-07-28T06:52:09" +ik[3539] = 0.313 +il[3539] = -152 +im[3539] = 0.0545 +ij[3539] = 28.6 +id[3540] = "2258-07-28T17:53:16" +ik[3540] = 0.825 +il[3540] = 47 +im[3540] = 0.0518 +ij[3540] = 28.2 +id[3541] = "2258-09-07T03:54:32" +ik[3541] = 25.875 +il[3541] = -65 +im[3541] = 0.0571 +ij[3541] = 16 +id[3542] = "2258-10-17T15:13:33" +ik[3542] = 0.52 +il[3542] = 167 +im[3542] = 0.0434 +ij[3542] = 12 +id[3543] = "2258-12-28T12:31:45" +ik[3543] = 5.599 +il[3543] = 15 +im[3543] = 0.0532 +ij[3543] = 27.1 +id[3544] = "2259-01-16T20:43:37" +ik[3544] = 0 +il[3544] = 75 +im[3544] = 0.0552 +ij[3544] = 17 +id[3545] = "2259-01-29T04:08:51" +ik[3545] = 2.079 +il[3545] = 91 +im[3545] = 0.0694 +ij[3545] = 28.2 +id[3546] = "2259-03-17T02:54:59" +ik[3546] = 0.256 +il[3546] = -166 +im[3546] = 0.0499 +ij[3546] = 27.3 +id[3547] = "2259-04-15T18:14:44" +ik[3547] = 0.875 +il[3547] = -113 +im[3547] = 0.0465 +ij[3547] = 27.5 +id[3548] = "2259-04-16T22:15:30" +ik[3548] = 0.677 +il[3548] = -162 +im[3548] = 0.0292 +ij[3548] = 28.8 +id[3549] = "2259-04-26T19:22:42" +ik[3549] = 35.631 +il[3549] = -24 +im[3549] = 0.0884 +ij[3549] = 8 +id[3550] = "2259-05-14T21:42:54" +ik[3550] = -25.139 +il[3550] = 114 +im[3550] = 0.0504 +ij[3550] = 15 +id[3551] = "2259-06-26T20:54:11" +ik[3551] = 3.75 +il[3551] = -177 +im[3551] = 0.0762 +ij[3551] = 27.6 +id[3552] = "2259-08-20T23:00:23" +ik[3552] = 45.576 +il[3552] = -28 +im[3552] = 0.1235 +ij[3552] = 3 +id[3553] = "2259-09-11T19:38:08" +ik[3553] = -2.159 +il[3553] = -123 +im[3553] = 0.0362 +ij[3553] = 2 +id[3554] = "2259-09-28T23:08:53" +ik[3554] = 11 +il[3554] = -8 +im[3554] = 0.1529 +ij[3554] = 18 +id[3555] = "2259-11-10T12:34:27" +ik[3555] = 0 +il[3555] = -154 +im[3555] = 0.1954 +ij[3555] = 13 +id[3556] = "2259-11-17T18:43:15" +ik[3556] = 0.477 +il[3556] = -175 +im[3556] = 0.047 +ij[3556] = 28.2 +id[3557] = "2259-12-04T21:59:26" +ik[3557] = 12 +il[3557] = -58 +im[3557] = 0.1263 +ij[3557] = 17 +id[3558] = "2259-12-18T10:34:27" +ik[3558] = 2.67 +il[3558] = -136 +im[3558] = 0.1784 +ij[3558] = 11 +id[3559] = "2260-01-23T07:15:43" +ik[3559] = 4.632 +il[3559] = 67 +im[3559] = 0.0875 +ij[3559] = 27.2 +id[3560] = "2260-01-23T14:40:04" +ik[3560] = 74.09 +il[3560] = -41 +im[3560] = 0.0754 +ij[3560] = 7.1501 +id[3561] = "2260-03-16T22:11:23" +ik[3561] = 12 +il[3561] = -12 +im[3561] = 0.0961 +ij[3561] = 18 +id[3562] = "2260-03-18T02:02:08" +ik[3562] = -1.61 +il[3562] = -59 +im[3562] = 0.0744 +ij[3562] = 4 +id[3563] = "2260-03-24T01:19:29" +ik[3563] = 37.257 +il[3563] = 8 +im[3563] = 0.065 +ij[3563] = 1 +id[3564] = "2260-03-25T13:07:57" +ik[3564] = 136.02 +il[3564] = -155 +im[3564] = 0.0888 +ij[3564] = 14 +id[3565] = "2260-06-02T23:26:15" +ik[3565] = 31.311 +il[3565] = -11 +im[3565] = 0.0554 +ij[3565] = 9 +id[3566] = "2260-08-14T22:26:34" +ik[3566] = 0.044 +il[3566] = -16 +im[3566] = 0.0483 +ij[3566] = 28.7 +id[3567] = "2260-08-15T18:25:41" +ik[3567] = 3.824 +il[3567] = 52 +im[3567] = 0.0539 +ij[3567] = 28.1 +id[3568] = "2260-08-16T12:16:49" +ik[3568] = 1.223 +il[3568] = 152 +im[3568] = 0.0571 +ij[3568] = 28.6 +id[3569] = "2260-08-19T07:44:21" +ik[3569] = 25.995 +il[3569] = -113 +im[3569] = 0.0536 +ij[3569] = 16 +id[3570] = "2260-11-27T13:58:53" +ik[3570] = 0.27 +il[3570] = 68 +im[3570] = 0.0584 +ij[3570] = 12 +id[3571] = "2260-12-27T21:16:03" +ik[3571] = 0 +il[3571] = 71 +im[3571] = 0.053 +ij[3571] = 17 +id[3572] = "2261-02-23T03:24:43" +ik[3572] = 0.268 +il[3572] = 163 +im[3572] = 0.0591 +ij[3572] = 27.3 +id[3573] = "2261-03-24T00:55:14" +ik[3573] = 0.699 +il[3573] = 128 +im[3573] = 0.0611 +ij[3573] = 27.5 +id[3574] = "2261-03-31T06:21:08" +ik[3574] = 0.397 +il[3574] = 116 +im[3574] = 0.0302 +ij[3574] = 28.8 +id[3575] = "2261-04-22T15:47:43" +ik[3575] = -25.496 +il[3575] = -169 +im[3575] = 0.0585 +ij[3575] = 15 +id[3576] = "2261-06-02T01:50:17" +ik[3576] = 3.165 +il[3576] = 74 +im[3576] = 0.0797 +ij[3576] = 27.6 +id[3577] = "2261-07-17T00:11:35" +ik[3577] = 35.697 +il[3577] = -180 +im[3577] = 0.0782 +ij[3577] = 8 +id[3578] = "2261-08-05T00:17:18" +ik[3578] = 5.035 +il[3578] = 5 +im[3578] = 0.0435 +ij[3578] = 27.2 +id[3579] = "2261-08-24T04:48:54" +ik[3579] = 11 +il[3579] = 125 +im[3579] = 0.0592 +ij[3579] = 18 +id[3580] = "2261-10-07T05:42:25" +ik[3580] = 40.926 +il[3580] = -179 +im[3580] = 0.0901 +ij[3580] = 3 +id[3581] = "2261-10-12T05:18:36" +ik[3581] = -1.869 +il[3581] = -125 +im[3581] = 0.104 +ij[3581] = 2 +id[3582] = "2261-12-16T13:08:26" +ik[3582] = 0 +il[3582] = 31 +im[3582] = 0.1449 +ij[3582] = 13 +id[3583] = "2262-01-25T07:02:00" +ik[3583] = 4.25 +il[3583] = 125 +im[3583] = 0.1777 +ij[3583] = 11 +id[3584] = "2262-02-26T21:42:36" +ik[3584] = 2.875 +il[3584] = 8 +im[3584] = 0.1396 +ij[3584] = 28.2 +id[3585] = "2262-03-07T12:11:01" +ik[3585] = 80.96 +il[3585] = -127 +im[3585] = 0.1528 +ij[3585] = 7.1823 +id[3586] = "2262-05-04T05:48:20" +ik[3586] = 37.192 +il[3586] = 157 +im[3586] = 0.107 +ij[3586] = 1 +id[3587] = "2262-05-04T19:52:23" +ik[3587] = -1.557 +il[3587] = -49 +im[3587] = 0.1072 +ij[3587] = 4 +id[3588] = "2262-05-12T22:42:49" +ik[3588] = 147.4 +il[3588] = -13 +im[3588] = 0.0303 +ij[3588] = 14 +id[3589] = "2262-07-11T03:11:35" +ik[3589] = 31.938 +il[3589] = 129 +im[3589] = 0.0599 +ij[3589] = 9 +id[3590] = "2262-07-31T07:25:09" +ik[3590] = 26.113 +il[3590] = -99 +im[3590] = 0.0606 +ij[3590] = 16 +id[3591] = "2262-08-08T06:21:08" +ik[3591] = 0.264 +il[3591] = -6 +im[3591] = 0.051 +ij[3591] = 28.7 +id[3592] = "2262-09-06T09:11:28" +ik[3592] = 2.032 +il[3592] = -126 +im[3592] = 0.0525 +ij[3592] = 28.6 +id[3593] = "2262-10-24T18:53:29" +ik[3593] = 1.932 +il[3593] = -161 +im[3593] = 0.056 +ij[3593] = 28.1 +id[3594] = "2262-11-03T22:57:20" +ik[3594] = 0.265 +il[3594] = -116 +im[3594] = 0.0559 +ij[3594] = 28.2 +id[3595] = "2262-11-05T15:23:39" +ik[3595] = 3.681 +il[3595] = 7 +im[3595] = 0.0637 +ij[3595] = 27.4 +id[3596] = "2262-11-09T04:56:45" +ik[3596] = 0.978 +il[3596] = -161 +im[3596] = 0.0562 +ij[3596] = 28.1 +id[3597] = "2262-12-09T06:53:10" +ik[3597] = 0 +il[3597] = 114 +im[3597] = 0.0472 +ij[3597] = 17 +id[3598] = "2263-01-22T01:34:54" +ik[3598] = 1.02 +il[3598] = -91 +im[3598] = 0.0362 +ij[3598] = 12 +id[3599] = "2263-04-02T20:32:32" +ik[3599] = -25.714 +il[3599] = 113 +im[3599] = 0.0593 +ij[3599] = 15 +id[3600] = "2263-04-23T08:51:38" +ik[3600] = 1.686 +il[3600] = 138 +im[3600] = 0.0105 +ij[3600] = 28.1 +id[3601] = "2263-05-12T04:18:02" +ik[3601] = 2.822 +il[3601] = 27 +im[3601] = 0.061 +ij[3601] = 27.6 +id[3602] = "2263-07-04T15:17:11" +ik[3602] = 0.932 +il[3602] = 31 +im[3602] = 0.0158 +ij[3602] = 28.2 +id[3603] = "2263-07-13T23:22:55" +ik[3603] = 4.68 +il[3603] = 1 +im[3603] = 0.0606 +ij[3603] = 27.2 +id[3604] = "2263-08-02T06:58:57" +ik[3604] = 12 +il[3604] = 76 +im[3604] = 0.0151 +ij[3604] = 18 +id[3605] = "2263-08-08T07:17:25" +ik[3605] = 1.928 +il[3605] = 130 +im[3605] = 0.0756 +ij[3605] = 28.2 +id[3606] = "2263-09-15T21:09:48" +ik[3606] = 33.175 +il[3606] = -64 +im[3606] = 0.0256 +ij[3606] = 8 +id[3607] = "2263-11-13T08:51:57" +ik[3607] = -1.678 +il[3607] = -33 +im[3607] = 0.063 +ij[3607] = 2 +id[3608] = "2263-11-19T20:46:27" +ik[3608] = 37.632 +il[3608] = -149 +im[3608] = 0.0784 +ij[3608] = 3 +id[3609] = "2264-01-18T22:43:17" +ik[3609] = 0 +il[3609] = 43 +im[3609] = 0.012 +ij[3609] = 13 +id[3610] = "2264-02-28T14:55:47" +ik[3610] = 4.14 +il[3610] = 168 +im[3610] = 0.0077 +ij[3610] = 11 +id[3611] = "2264-03-19T15:35:44" +ik[3611] = 1.422 +il[3611] = 143 +im[3611] = 0.2148 +ij[3611] = 28.1 +id[3612] = "2264-04-10T04:54:01" +ik[3612] = 82.26 +il[3612] = 139 +im[3612] = 0.0844 +ij[3612] = 7.2085 +id[3613] = "2264-06-12T03:23:19" +ik[3613] = 38.705 +il[3613] = 48 +im[3613] = 0.1061 +ij[3613] = 1 +id[3614] = "2264-06-16T08:34:50" +ik[3614] = 149.41 +il[3614] = 11 +im[3614] = 0.0328 +ij[3614] = 14 +id[3615] = "2264-06-17T12:00:24" +ik[3615] = -1.643 +il[3615] = -29 +im[3615] = 0.0085 +ij[3615] = 4 +id[3616] = "2264-07-08T08:44:07" +ik[3616] = 26.211 +il[3616] = -138 +im[3616] = 0.0984 +ij[3616] = 16 +id[3617] = "2264-07-29T01:49:46" +ik[3617] = 0.572 +il[3617] = 167 +im[3617] = 0.012 +ij[3617] = 28.7 +id[3618] = "2264-08-23T18:21:48" +ik[3618] = 33.395 +il[3618] = 169 +im[3618] = 0.0562 +ij[3618] = 9 +id[3619] = "2264-09-25T17:50:10" +ik[3619] = 2.566 +il[3619] = 138 +im[3619] = 0.0051 +ij[3619] = 28.6 +id[3620] = "2264-10-01T09:29:10" +ik[3620] = 1.133 +il[3620] = -42 +im[3620] = 0.0686 +ij[3620] = 28.2 +id[3621] = "2264-10-15T22:28:12" +ik[3621] = 3.369 +il[3621] = -95 +im[3621] = 0.0711 +ij[3621] = 27.4 +id[3622] = "2264-10-29T20:38:30" +ik[3622] = 6.358 +il[3622] = 69 +im[3622] = 0.0621 +ij[3622] = 27.1 +id[3623] = "2264-11-19T09:14:17" +ik[3623] = 0 +il[3623] = 81 +im[3623] = 0.0404 +ij[3623] = 17 +id[3624] = "2264-12-27T00:58:39" +ik[3624] = 0.338 +il[3624] = -146 +im[3624] = 0.0585 +ij[3624] = 28.2 +id[3625] = "2265-01-11T10:18:21" +ik[3625] = 0.231 +il[3625] = -134 +im[3625] = 0.0674 +ij[3625] = 28.1 +id[3626] = "2265-01-13T11:43:53" +ik[3626] = 0.182 +il[3626] = -135 +im[3626] = 0.0638 +ij[3626] = 27.3 +id[3627] = "2265-03-13T13:02:33" +ik[3627] = -25.879 +il[3627] = 88 +im[3627] = 0.0578 +ij[3627] = 15 +id[3628] = "2265-04-04T04:27:21" +ik[3628] = 0.65 +il[3628] = 68 +im[3628] = 0.0327 +ij[3628] = 12 +id[3629] = "2265-06-23T00:38:34" +ik[3629] = 4.417 +il[3629] = -21 +im[3629] = 0.0494 +ij[3629] = 27.2 +id[3630] = "2265-07-03T04:17:19" +ik[3630] = 1.669 +il[3630] = 29 +im[3630] = 0.0563 +ij[3630] = 28.1 +id[3631] = "2265-07-12T21:07:59" +ik[3631] = 12 +il[3631] = -130 +im[3631] = 0.0098 +ij[3631] = 18 +id[3632] = "2265-07-20T07:59:10" +ik[3632] = 1.943 +il[3632] = 140 +im[3632] = 0.0596 +ij[3632] = 28.2 +id[3633] = "2265-10-26T21:26:14" +ik[3633] = 31.377 +il[3633] = 172 +im[3633] = 0.0713 +ij[3633] = 8 +id[3634] = "2265-12-18T13:55:04" +ik[3634] = -1.588 +il[3634] = 74 +im[3634] = 0.029 +ij[3634] = 2 +id[3635] = "2265-12-28T06:04:19" +ik[3635] = 36.234 +il[3635] = -75 +im[3635] = 0.0451 +ij[3635] = 3 +id[3636] = "2266-01-08T10:21:27" +ik[3636] = 1.613 +il[3636] = -31 +im[3636] = 0.1177 +ij[3636] = 28.7 +id[3637] = "2266-02-23T08:35:18" +ik[3637] = 0 +il[3637] = 78 +im[3637] = 0.0271 +ij[3637] = 13 +id[3638] = "2266-03-09T22:10:35" +ik[3638] = 1.822 +il[3638] = 11 +im[3638] = 0.0278 +ij[3638] = 28.2 +id[3639] = "2266-04-03T15:05:34" +ik[3639] = 2.71 +il[3639] = -23 +im[3639] = 0.1268 +ij[3639] = 11 +id[3640] = "2266-05-14T12:42:54" +ik[3640] = 80.17 +il[3640] = -175 +im[3640] = 0.0521 +ij[3640] = 7.2005 +id[3641] = "2266-06-11T18:43:06" +ik[3641] = 25.846 +il[3641] = 9 +im[3641] = 0.0167 +ij[3641] = 16 +id[3642] = "2266-07-12T07:30:13" +ik[3642] = 1.021 +il[3642] = 114 +im[3642] = 0.0557 +ij[3642] = 28.7 +id[3643] = "2266-07-16T05:31:43" +ik[3643] = 142.87 +il[3643] = -179 +im[3643] = 0.1246 +ij[3643] = 14 +id[3644] = "2266-07-25T09:08:21" +ik[3644] = 41.757 +il[3644] = -143 +im[3644] = 0.0066 +ij[3644] = 1 +id[3645] = "2266-07-28T13:50:38" +ik[3645] = -1.858 +il[3645] = 178 +im[3645] = 0.0692 +ij[3645] = 4 +id[3646] = "2266-09-23T20:26:44" +ik[3646] = 2.891 +il[3646] = -83 +im[3646] = 0.0568 +ij[3646] = 27.4 +id[3647] = "2266-10-14T02:29:05" +ik[3647] = 2.67 +il[3647] = 25 +im[3647] = 0.0825 +ij[3647] = 28.6 +id[3648] = "2266-10-22T02:59:08" +ik[3648] = 35.201 +il[3648] = 96 +im[3648] = 0.0462 +ij[3648] = 9 +id[3649] = "2266-10-30T07:04:06" +ik[3649] = 0 +il[3649] = 115 +im[3649] = 0.049 +ij[3649] = 17 +id[3650] = "2266-12-23T23:27:42" +ik[3650] = 0.073 +il[3650] = 47 +im[3650] = 0.0724 +ij[3650] = 27.3 +id[3651] = "2267-01-21T14:29:41" +ik[3651] = 0.525 +il[3651] = 104 +im[3651] = 0.0706 +ij[3651] = 27.5 +id[3652] = "2267-02-16T09:07:31" +ik[3652] = 0.343 +il[3652] = 76 +im[3652] = 0.0566 +ij[3652] = 28.8 +id[3653] = "2267-02-22T01:15:27" +ik[3653] = -26.025 +il[3653] = -110 +im[3653] = 0.057 +ij[3653] = 15 +id[3654] = "2267-06-05T22:25:34" +ik[3654] = 0.44 +il[3654] = -131 +im[3654] = 0.0222 +ij[3654] = 12 +id[3655] = "2267-06-24T08:57:28" +ik[3655] = 12 +il[3655] = 57 +im[3655] = 0.0192 +ij[3655] = 18 +id[3656] = "2267-09-07T18:56:44" +ik[3656] = 5.547 +il[3656] = -76 +im[3656] = 0.057 +ij[3656] = 28.1 +id[3657] = "2267-11-08T19:53:51" +ik[3657] = 25.272 +il[3657] = 153 +im[3657] = 0.0591 +ij[3657] = 16 +id[3658] = "2267-11-30T19:41:21" +ik[3658] = 30.643 +il[3658] = 8 +im[3658] = 0.0508 +ij[3658] = 8 +id[3659] = "2267-12-20T16:24:44" +ik[3659] = 0.878 +il[3659] = -111 +im[3659] = 0.0753 +ij[3659] = 28.7 +id[3660] = "2268-02-03T09:03:32" +ik[3660] = -1.607 +il[3660] = 68 +im[3660] = 0.0679 +ij[3660] = 2 +id[3661] = "2268-02-07T11:33:21" +ik[3661] = 36.689 +il[3661] = 70 +im[3661] = 0.0357 +ij[3661] = 3 +id[3662] = "2268-04-08T05:32:11" +ik[3662] = 0 +il[3662] = 12 +im[3662] = 0.2138 +ij[3662] = 13 +id[3663] = "2268-04-12T13:29:14" +ik[3663] = 5.678 +il[3663] = -66 +im[3663] = 0.1656 +ij[3663] = 27.4 +id[3664] = "2268-05-13T22:53:08" +ik[3664] = 0 +il[3664] = 75 +im[3664] = 0.0575 +ij[3664] = 11 +id[3665] = "2268-06-20T01:17:02" +ik[3665] = 2.517 +il[3665] = -163 +im[3665] = 0.1175 +ij[3665] = 28.2 +id[3666] = "2268-06-22T04:34:47" +ik[3666] = 74.96 +il[3666] = 168 +im[3666] = 0.0131 +ij[3666] = 7.1495 +id[3667] = "2268-08-14T20:42:37" +ik[3667] = 128.63 +il[3667] = 90 +im[3667] = 0.0692 +ij[3667] = 14 +id[3668] = "2268-08-22T03:49:40" +ik[3668] = 1.831 +il[3668] = 55 +im[3668] = 0.1484 +ij[3668] = 27.4 +id[3669] = "2268-08-27T14:52:53" +ik[3669] = -2.172 +il[3669] = -58 +im[3669] = 0.112 +ij[3669] = 4 +id[3670] = "2268-09-09T13:34:19" +ik[3670] = 45.486 +il[3670] = 89 +im[3670] = 0.1189 +ij[3670] = 1 +id[3671] = "2268-10-05T14:09:52" +ik[3671] = 0 +il[3671] = -24 +im[3671] = 0.1142 +ij[3671] = 17 +id[3672] = "2268-10-27T08:48:45" +ik[3672] = 2.281 +il[3672] = -90 +im[3672] = 0.0222 +ij[3672] = 28.6 +id[3673] = "2268-11-30T00:30:23" +ik[3673] = 0.175 +il[3673] = 6 +im[3673] = 0.0689 +ij[3673] = 27.3 +id[3674] = "2268-12-29T11:29:17" +ik[3674] = 0.553 +il[3674] = 130 +im[3674] = 0.0687 +ij[3674] = 27.5 +id[3675] = "2269-01-01T08:35:07" +ik[3675] = 35.147 +il[3675] = -158 +im[3675] = 0.081 +ij[3675] = 9 +id[3676] = "2269-01-31T03:26:33" +ik[3676] = 0.632 +il[3676] = -152 +im[3676] = 0.0716 +ij[3676] = 28.8 +id[3677] = "2269-01-31T12:16:20" +ik[3677] = -26.171 +il[3677] = 79 +im[3677] = 0.0695 +ij[3677] = 15 +id[3678] = "2269-03-11T00:34:07" +ik[3678] = 2.073 +il[3678] = -96 +im[3678] = 0.0517 +ij[3678] = 27.6 +id[3679] = "2269-04-23T14:15:32" +ik[3679] = 0.013 +il[3679] = 124 +im[3679] = 0.0506 +ij[3679] = 28.2 +id[3680] = "2269-05-14T13:12:35" +ik[3680] = 3.946 +il[3680] = -22 +im[3680] = 0.0455 +ij[3680] = 27.2 +id[3681] = "2269-06-05T01:09:09" +ik[3681] = 12 +il[3681] = 1 +im[3681] = 0.0341 +ij[3681] = 18 +id[3682] = "2269-07-21T03:20:41" +ik[3682] = 1.04 +il[3682] = 46 +im[3682] = 0.0571 +ij[3682] = 12 +id[3683] = "2269-10-20T02:19:43" +ik[3683] = 25.52 +il[3683] = 68 +im[3683] = 0.0458 +ij[3683] = 16 +id[3684] = "2269-11-29T18:15:51" +ik[3684] = 1.43 +il[3684] = -140 +im[3684] = 0.0589 +ij[3684] = 28.2 +id[3685] = "2269-12-09T23:58:19" +ik[3685] = 0.492 +il[3685] = -127 +im[3685] = 0.0617 +ij[3685] = 28.7 +id[3686] = "2270-01-02T14:51:34" +ik[3686] = 30.915 +il[3686] = -124 +im[3686] = 0.0087 +ij[3686] = 8 +id[3687] = "2270-02-06T02:16:12" +ik[3687] = 4.938 +il[3687] = 33 +im[3687] = 0.087 +ij[3687] = 27.4 +id[3688] = "2270-02-23T05:28:43" +ik[3688] = 4.879 +il[3688] = 147 +im[3688] = 0.0964 +ij[3688] = 27.1 +id[3689] = "2270-03-18T09:09:29" +ik[3689] = 23 +il[3689] = -48 +im[3689] = 0.0703 +ij[3689] = 17 +id[3690] = "2270-03-30T12:00:17" +ik[3690] = 39.504 +il[3690] = 24 +im[3690] = 0.0216 +ij[3690] = 3 +id[3691] = "2270-04-14T13:03:34" +ik[3691] = -1.823 +il[3691] = 150 +im[3691] = 0.0568 +ij[3691] = 2 +id[3692] = "2270-05-28T04:15:15" +ik[3692] = 3.473 +il[3692] = -25 +im[3692] = 0.1501 +ij[3692] = 28.6 +id[3693] = "2270-06-11T20:43:06" +ik[3693] = 0 +il[3693] = -136 +im[3693] = 0.2508 +ij[3693] = 13 +id[3694] = "2270-06-18T20:59:28" +ik[3694] = 5.905 +il[3694] = -71 +im[3694] = 0.1702 +ij[3694] = 28.1 +id[3695] = "2270-07-11T08:07:48" +ik[3695] = 5.21 +il[3695] = -35 +im[3695] = 0.3578 +ij[3695] = 11 +id[3696] = "2270-07-28T04:57:59" +ik[3696] = 5.102 +il[3696] = -8 +im[3696] = 0.2751 +ij[3696] = 28.1 +id[3697] = "2270-08-14T21:47:42" +ik[3697] = 64.04 +il[3697] = -87 +im[3697] = 0.0662 +ij[3697] = 7.1003 +id[3698] = "2270-09-27T12:11:33" +ik[3698] = 107.64 +il[3698] = 126 +im[3698] = 0.1171 +ij[3698] = 14 +id[3699] = "2270-10-07T13:07:08" +ik[3699] = -2.37 +il[3699] = -149 +im[3699] = 0.068 +ij[3699] = 4 +id[3700] = "2270-10-27T11:54:08" +ik[3700] = 1.178 +il[3700] = 66 +im[3700] = 0.1388 +ij[3700] = 27.3 +id[3701] = "2270-10-31T16:13:42" +ik[3701] = 1.677 +il[3701] = 42 +im[3701] = 0.1626 +ij[3701] = 28.6 +id[3702] = "2270-11-02T03:29:22" +ik[3702] = 45.493 +il[3702] = -113 +im[3702] = 0.1398 +ij[3702] = 1 +id[3703] = "2270-11-30T19:54:52" +ik[3703] = 0.846 +il[3703] = -79 +im[3703] = 0.1187 +ij[3703] = 27.5 +id[3704] = "2271-01-07T18:14:08" +ik[3704] = -26.303 +il[3704] = -48 +im[3704] = 0.0761 +ij[3704] = 15 +id[3705] = "2271-01-12T03:49:13" +ik[3705] = 0.964 +il[3705] = -149 +im[3705] = 0.093 +ij[3705] = 28.8 +id[3706] = "2271-02-16T02:22:11" +ik[3706] = 1.758 +il[3706] = -154 +im[3706] = 0.0188 +ij[3706] = 27.6 +id[3707] = "2271-02-28T19:08:01" +ik[3707] = 33.289 +il[3707] = 75 +im[3707] = 0.033 +ij[3707] = 9 +id[3708] = "2271-04-05T16:14:37" +ik[3708] = 1.287 +il[3708] = 98 +im[3708] = 0.0626 +ij[3708] = 28.2 +id[3709] = "2271-04-24T08:02:03" +ik[3709] = 3.66 +il[3709] = 36 +im[3709] = 0.0592 +ij[3709] = 27.2 +id[3710] = "2271-05-07T17:31:01" +ik[3710] = 0.814 +il[3710] = 20 +im[3710] = 0.0561 +ij[3710] = 28.2 +id[3711] = "2271-05-17T06:41:10" +ik[3711] = 12 +il[3711] = -87 +im[3711] = 0.0517 +ij[3711] = 18 +id[3712] = "2271-05-27T13:43:25" +ik[3712] = 4.074 +il[3712] = -85 +im[3712] = 0.0034 +ij[3712] = 28.1 +id[3713] = "2271-08-28T13:44:42" +ik[3713] = 1.11 +il[3713] = 84 +im[3713] = 0.0552 +ij[3713] = 12 +id[3714] = "2271-10-02T09:46:28" +ik[3714] = 25.691 +il[3714] = -38 +im[3714] = 0.0177 +ij[3714] = 16 +id[3715] = "2271-11-22T10:51:34" +ik[3715] = 1.302 +il[3715] = 90 +im[3715] = 0.0623 +ij[3715] = 28.2 +id[3716] = "2271-12-02T20:52:55" +ik[3716] = 0.205 +il[3716] = 34 +im[3716] = 0.0297 +ij[3716] = 28.7 +id[3717] = "2272-01-12T09:44:45" +ik[3717] = 4.551 +il[3717] = -128 +im[3717] = 0.0074 +ij[3717] = 27.4 +id[3718] = "2272-01-27T08:54:35" +ik[3718] = 5.238 +il[3718] = 26 +im[3718] = 0.0019 +ij[3718] = 27.1 +id[3719] = "2272-02-09T10:25:47" +ik[3719] = 32.241 +il[3719] = 127 +im[3719] = 0.0034 +ij[3719] = 8 +id[3720] = "2272-02-16T04:45:16" +ik[3720] = 0 +il[3720] = -84 +im[3720] = 0.0843 +ij[3720] = 17 +id[3721] = "2272-04-22T15:36:44" +ik[3721] = 0.03 +il[3721] = 22 +im[3721] = 0.0114 +ij[3721] = 27.3 +id[3722] = "2272-05-08T03:07:17" +ik[3722] = 0.378 +il[3722] = -4 +im[3722] = 0.0586 +ij[3722] = 28.6 +id[3723] = "2272-05-27T01:44:19" +ik[3723] = 1.828 +il[3723] = -163 +im[3723] = 0.1446 +ij[3723] = 27.5 +id[3724] = "2272-06-09T04:44:15" +ik[3724] = 45.283 +il[3724] = -83 +im[3724] = 0.1534 +ij[3724] = 3 +id[3725] = "2272-07-10T01:37:22" +ik[3725] = -2.331 +il[3725] = -101 +im[3725] = 0.2199 +ij[3725] = 2 +id[3726] = "2272-07-18T13:14:43" +ik[3726] = 2.767 +il[3726] = 167 +im[3726] = 0.0928 +ij[3726] = 28.8 +id[3727] = "2272-08-26T08:02:04" +ik[3727] = 3.674 +il[3727] = -99 +im[3727] = 0.1154 +ij[3727] = 28.2 +id[3728] = "2272-08-26T12:12:04" +ik[3728] = 0 +il[3728] = -159 +im[3728] = 0.1055 +ij[3728] = 13 +id[3729] = "2272-09-29T12:02:29" +ik[3729] = 4.46 +il[3729] = 157 +im[3729] = 0.3688 +ij[3729] = 11 +id[3730] = "2272-10-13T04:47:09" +ik[3730] = 1.342 +il[3730] = -113 +im[3730] = 0.3464 +ij[3730] = 28.1 +id[3731] = "2272-10-28T17:22:56" +ik[3731] = 63.22 +il[3731] = -158 +im[3731] = 0.3084 +ij[3731] = 7.1185 +id[3732] = "2272-11-29T00:52:18" +ik[3732] = 0.745 +il[3732] = 31 +im[3732] = 0.1105 +ij[3732] = 28.8 +id[3733] = "2272-12-04T17:35:00" +ik[3733] = -25.72 +il[3733] = -165 +im[3733] = 0.1481 +ij[3733] = 15 +id[3734] = "2272-12-11T23:54:40" +ik[3734] = 107.49 +il[3734] = 169 +im[3734] = 0.1074 +ij[3734] = 14 +id[3735] = "2272-12-20T21:25:49" +ik[3735] = -2.002 +il[3735] = -69 +im[3735] = 0.1667 +ij[3735] = 4 +id[3736] = "2273-01-10T21:01:17" +ik[3736] = 40.685 +il[3736] = 137 +im[3736] = 0.044 +ij[3736] = 1 +id[3737] = "2273-01-13T03:40:03" +ik[3737] = 1.321 +il[3737] = 59 +im[3737] = 0.0228 +ij[3737] = 27.6 +id[3738] = "2273-03-31T11:52:36" +ik[3738] = 3.243 +il[3738] = -54 +im[3738] = 0.0848 +ij[3738] = 27.2 +id[3739] = "2273-04-12T18:56:00" +ik[3739] = 31.858 +il[3739] = -42 +im[3739] = 0.0584 +ij[3739] = 9 +id[3740] = "2273-04-26T00:35:14" +ik[3740] = 12 +il[3740] = -4 +im[3740] = 0.0569 +ij[3740] = 18 +id[3741] = "2273-07-25T23:12:38" +ik[3741] = 0.19 +il[3741] = 167 +im[3741] = 0.0588 +ij[3741] = 28.1 +id[3742] = "2273-09-14T00:28:25" +ik[3742] = 25.828 +il[3742] = -91 +im[3742] = 0.0163 +ij[3742] = 16 +id[3743] = "2273-10-03T00:13:09" +ik[3743] = 0.76 +il[3743] = 104 +im[3743] = 0.0513 +ij[3743] = 12 +id[3744] = "2273-12-21T23:38:18" +ik[3744] = 4.269 +il[3744] = 4 +im[3744] = 0.0137 +ij[3744] = 27.4 +id[3745] = "2274-01-04T00:27:38" +ik[3745] = 0.451 +il[3745] = 115 +im[3745] = 0.027 +ij[3745] = 28.5 +id[3746] = "2274-01-04T05:31:25" +ik[3746] = 6.084 +il[3746] = 48 +im[3746] = 0.0245 +ij[3746] = 28.1 +id[3747] = "2274-01-05T06:06:35" +ik[3747] = 5.507 +il[3747] = 42 +im[3747] = 0.0119 +ij[3747] = 27.1 +id[3748] = "2274-01-24T14:44:11" +ik[3748] = 0 +il[3748] = 106 +im[3748] = 0.0529 +ij[3748] = 17 +id[3749] = "2274-03-26T01:04:30" +ik[3749] = 0.23 +il[3749] = 163 +im[3749] = 0.0845 +ij[3749] = 27.3 +id[3750] = "2274-03-31T01:23:34" +ik[3750] = 34.631 +il[3750] = -154 +im[3750] = 0.0546 +ij[3750] = 8 +id[3751] = "2274-04-25T05:20:51" +ik[3751] = 0.996 +il[3751] = 26 +im[3751] = 0.0963 +ij[3751] = 27.5 +id[3752] = "2274-05-14T13:48:52" +ik[3752] = 0.429 +il[3752] = 84 +im[3752] = 0.029 +ij[3752] = 28.6 +id[3753] = "2274-05-24T03:25:48" +ik[3753] = -24.907 +il[3753] = -28 +im[3753] = 0.1095 +ij[3753] = 15 +id[3754] = "2274-06-09T06:17:56" +ik[3754] = 0.493 +il[3754] = 84 +im[3754] = 0.0897 +ij[3754] = 28.8 +id[3755] = "2274-07-08T09:07:01" +ik[3755] = 4.154 +il[3755] = -36 +im[3755] = 0.0983 +ij[3755] = 27.6 +id[3756] = "2274-08-03T03:03:18" +ik[3756] = 46.957 +il[3756] = -53 +im[3756] = 0.136 +ij[3756] = 3 +id[3757] = "2274-08-29T09:56:57" +ik[3757] = -2.281 +il[3757] = 102 +im[3757] = 0.1296 +ij[3757] = 2 +id[3758] = "2274-10-02T19:16:10" +ik[3758] = 5.758 +il[3758] = -61 +im[3758] = 0.1457 +ij[3758] = 27.2 +id[3759] = "2274-10-25T00:55:09" +ik[3759] = 0 +il[3759] = 72 +im[3759] = 0.2288 +ij[3759] = 13 +id[3760] = "2274-11-14T01:31:01" +ik[3760] = 1.345 +il[3760] = -101 +im[3760] = 0.1583 +ij[3760] = 28.1 +id[3761] = "2274-11-16T15:47:30" +ik[3761] = 3.83 +il[3761] = 70 +im[3761] = 0.0274 +ij[3761] = 27.2 +id[3762] = "2274-11-30T09:40:16" +ik[3762] = 1.32 +il[3762] = -85 +im[3762] = 0.0736 +ij[3762] = 11 +id[3763] = "2274-12-15T03:55:23" +ik[3763] = 3.97 +il[3763] = -29 +im[3763] = 0.1238 +ij[3763] = 28.1 +id[3764] = "2274-12-30T07:03:15" +ik[3764] = 2.824 +il[3764] = 71 +im[3764] = 0.1915 +ij[3764] = 28.2 +id[3765] = "2275-01-03T23:57:45" +ik[3765] = 70.96 +il[3765] = -146 +im[3765] = 0.2154 +ij[3765] = 7.1399 +id[3766] = "2275-02-24T14:15:59" +ik[3766] = 2.356 +il[3766] = 123 +im[3766] = 0.1185 +ij[3766] = 27.2 +id[3767] = "2275-02-26T01:52:31" +ik[3767] = -1.676 +il[3767] = -37 +im[3767] = 0.1305 +ij[3767] = 4 +id[3768] = "2275-03-01T22:19:37" +ik[3768] = 127.89 +il[3768] = 53 +im[3768] = 0.1055 +ij[3768] = 14 +id[3769] = "2275-03-07T07:57:12" +ik[3769] = 37.764 +il[3769] = -41 +im[3769] = 0.0291 +ij[3769] = 1 +id[3770] = "2275-04-01T00:40:17" +ik[3770] = 12 +il[3770] = -59 +im[3770] = 0.0553 +ij[3770] = 18 +id[3771] = "2275-05-20T16:37:47" +ik[3771] = 31.296 +il[3771] = 179 +im[3771] = 0.0625 +ij[3771] = 9 +id[3772] = "2275-07-17T07:23:53" +ik[3772] = 6.49 +il[3772] = 139 +im[3772] = 0.0523 +ij[3772] = 28.1 +id[3773] = "2275-08-27T09:59:10" +ik[3773] = 25.95 +il[3773] = 135 +im[3773] = 0.0419 +ij[3773] = 16 +id[3774] = "2275-08-30T09:41:37" +ik[3774] = 0.636 +il[3774] = 169 +im[3774] = 0.0598 +ij[3774] = 28.2 +id[3775] = "2275-11-11T05:34:56" +ik[3775] = 0.06 +il[3775] = -124 +im[3775] = 0.0554 +ij[3775] = 12 +id[3776] = "2276-01-05T06:41:26" +ik[3776] = 0 +il[3776] = -147 +im[3776] = 0.0467 +ij[3776] = 17 +id[3777] = "2276-03-03T04:41:07" +ik[3777] = 0.27 +il[3777] = 80 +im[3777] = 0.0528 +ij[3777] = 27.3 +id[3778] = "2276-03-12T20:10:14" +ik[3778] = 0.064 +il[3778] = -53 +im[3778] = 0.0082 +ij[3778] = 28.5 +id[3779] = "2276-04-01T07:22:29" +ik[3779] = 0.753 +il[3779] = -35 +im[3779] = 0.0581 +ij[3779] = 27.5 +id[3780] = "2276-04-30T18:06:35" +ik[3780] = -25.383 +il[3780] = 88 +im[3780] = 0.0672 +ij[3780] = 15 +id[3781] = "2276-05-10T23:08:02" +ik[3781] = 1.127 +il[3781] = 111 +im[3781] = 0.0061 +ij[3781] = 28.2 +id[3782] = "2276-05-20T11:28:34" +ik[3782] = 0.168 +il[3782] = 18 +im[3782] = 0.0676 +ij[3782] = 28.8 +id[3783] = "2276-05-23T18:51:27" +ik[3783] = 1.094 +il[3783] = -60 +im[3783] = 0.0208 +ij[3783] = 28.6 +id[3784] = "2276-06-10T20:43:44" +ik[3784] = 3.348 +il[3784] = 88 +im[3784] = 0.0361 +ij[3784] = 27.6 +id[3785] = "2276-06-15T04:46:13" +ik[3785] = 36.256 +il[3785] = 10 +im[3785] = 0.0821 +ij[3785] = 8 +id[3786] = "2276-08-15T00:05:33" +ik[3786] = 5.223 +il[3786] = -43 +im[3786] = 0.0793 +ij[3786] = 27.2 +id[3787] = "2276-09-03T13:53:46" +ik[3787] = 11 +il[3787] = -58 +im[3787] = 0.0097 +ij[3787] = 18 +id[3788] = "2276-09-18T11:07:17" +ik[3788] = 42.704 +il[3788] = 129 +im[3788] = 0.0461 +ij[3788] = 3 +id[3789] = "2276-09-30T03:56:58" +ik[3789] = -1.973 +il[3789] = -9 +im[3789] = 0.0544 +ij[3789] = 2 +id[3790] = "2276-12-03T22:20:04" +ik[3790] = 0 +il[3790] = -16 +im[3790] = 0.1908 +ij[3790] = 13 +id[3791] = "2277-01-11T02:05:09" +ik[3791] = 3.9 +il[3791] = -83 +im[3791] = 0.2329 +ij[3791] = 11 +id[3792] = "2277-02-19T02:27:41" +ik[3792] = 77.17 +il[3792] = 81 +im[3792] = 0.13 +ij[3792] = 7.1692 +id[3793] = "2277-04-16T22:21:52" +ik[3793] = -1.56 +il[3793] = -40 +im[3793] = 0.0914 +ij[3793] = 4 +id[3794] = "2277-04-18T16:26:15" +ik[3794] = 37.022 +il[3794] = 65 +im[3794] = 0.1012 +ij[3794] = 1 +id[3795] = "2277-04-26T04:59:29" +ik[3795] = 143.28 +il[3795] = -52 +im[3795] = 0.0224 +ij[3795] = 14 +id[3796] = "2277-06-25T20:57:47" +ik[3796] = 31.591 +il[3796] = -71 +im[3796] = 0.0636 +ij[3796] = 9 +id[3797] = "2277-08-01T04:12:48" +ik[3797] = 0.377 +il[3797] = 179 +im[3797] = 0.0396 +ij[3797] = 28.2 +id[3798] = "2277-08-07T23:55:55" +ik[3798] = 26.069 +il[3798] = -59 +im[3798] = 0.053 +ij[3798] = 16 +id[3799] = "2277-10-05T03:47:28" +ik[3799] = 1.875 +il[3799] = 87 +im[3799] = 0.0561 +ij[3799] = 28.1 +id[3800] = "2277-10-08T03:18:13" +ik[3800] = 1.122 +il[3800] = 123 +im[3800] = 0.0594 +ij[3800] = 28.2 +id[3801] = "2277-12-16T14:33:59" +ik[3801] = 0 +il[3801] = -69 +im[3801] = 0.0519 +ij[3801] = 17 +id[3802] = "2277-12-29T02:02:29" +ik[3802] = 0.78 +il[3802] = -117 +im[3802] = 0.0441 +ij[3802] = 12 +id[3803] = "2278-03-11T16:28:07" +ik[3803] = 0.636 +il[3803] = 168 +im[3803] = 0.0375 +ij[3803] = 27.5 +id[3804] = "2278-03-21T15:10:46" +ik[3804] = 1.337 +il[3804] = -74 +im[3804] = 0.0122 +ij[3804] = 28.1 +id[3805] = "2278-04-10T13:42:24" +ik[3805] = -25.638 +il[3805] = 146 +im[3805] = 0.048 +ij[3805] = 15 +id[3806] = "2278-04-29T23:12:43" +ik[3806] = 1.237 +il[3806] = -161 +im[3806] = 0.0669 +ij[3806] = 28.2 +id[3807] = "2278-05-05T07:13:09" +ik[3807] = 0.582 +il[3807] = 131 +im[3807] = 0.0098 +ij[3807] = 28.8 +id[3808] = "2278-05-09T15:05:57" +ik[3808] = 0.387 +il[3808] = 55 +im[3808] = 0.0506 +ij[3808] = 28.5 +id[3809] = "2278-05-20T05:29:33" +ik[3809] = 2.941 +il[3809] = -56 +im[3809] = 0.0099 +ij[3809] = 27.6 +id[3810] = "2278-06-04T09:47:02" +ik[3810] = 1.511 +il[3810] = 28 +im[3810] = 0.0106 +ij[3810] = 28.6 +id[3811] = "2278-07-22T05:57:07" +ik[3811] = 4.803 +il[3811] = -165 +im[3811] = 0.069 +ij[3811] = 27.2 +id[3812] = "2278-08-10T10:10:34" +ik[3812] = 12 +il[3812] = -41 +im[3812] = 0.0605 +ij[3812] = 18 +id[3813] = "2278-08-26T08:54:13" +ik[3813] = 34.152 +il[3813] = 134 +im[3813] = 0.0459 +ij[3813] = 8 +id[3814] = "2278-10-31T14:21:00" +ik[3814] = -1.74 +il[3814] = -25 +im[3814] = 0.1109 +ij[3814] = 2 +id[3815] = "2278-11-03T16:22:13" +ik[3815] = 38.69 +il[3815] = -26 +im[3815] = 0.0995 +ij[3815] = 3 +id[3816] = "2278-12-20T14:47:45" +ik[3816] = 21.704 +il[3816] = 92 +im[3816] = 0.0233 +ij[3816] = 16 +id[3817] = "2279-01-06T04:59:57" +ik[3817] = 0 +il[3817] = 39 +im[3817] = 0.0917 +ij[3817] = 13 +id[3818] = "2279-01-17T10:37:12" +ik[3818] = 1.472 +il[3818] = 63 +im[3818] = 0.0463 +ij[3818] = 28.2 +id[3819] = "2279-02-15T11:18:03" +ik[3819] = 4.34 +il[3819] = -48 +im[3819] = 0.1522 +ij[3819] = 11 +id[3820] = "2279-03-29T04:02:33" +ik[3820] = 81.96 +il[3820] = -118 +im[3820] = 0.1371 +ij[3820] = 7.2008 +id[3821] = "2279-05-28T10:49:17" +ik[3821] = 37.927 +il[3821] = -1 +im[3821] = 0.0925 +ij[3821] = 1 +id[3822] = "2279-06-01T05:25:00" +ik[3822] = -1.594 +il[3822] = 116 +im[3822] = 0.0211 +ij[3822] = 4 +id[3823] = "2279-06-04T15:06:23" +ik[3823] = 149.42 +il[3823] = 4 +im[3823] = 0.0564 +ij[3823] = 14 +id[3824] = "2279-08-06T04:00:00" +ik[3824] = 32.732 +il[3824] = 56 +im[3824] = 0.0821 +ij[3824] = 9 +id[3825] = "2279-10-24T19:49:32" +ik[3825] = 3.502 +il[3825] = -126 +im[3825] = 0.0216 +ij[3825] = 27.4 +id[3826] = "2279-11-06T02:52:43" +ik[3826] = 0.744 +il[3826] = -112 +im[3826] = 0.0203 +ij[3826] = 28.7 +id[3827] = "2279-11-07T16:20:03" +ik[3827] = 6.234 +il[3827] = 62 +im[3827] = 0.0052 +ij[3827] = 27.1 +id[3828] = "2279-11-27T21:12:55" +ik[3828] = 0 +il[3828] = -174 +im[3828] = 0.0643 +ij[3828] = 17 +id[3829] = "2279-12-11T07:53:46" +ik[3829] = 1.225 +il[3829] = 157 +im[3829] = 0.0575 +ij[3829] = 28.1 +id[3830] = "2280-03-05T22:31:50" +ik[3830] = 0.98 +il[3830] = 82 +im[3830] = 0.0478 +ij[3830] = 12 +id[3831] = "2280-03-21T03:13:14" +ik[3831] = -25.819 +il[3831] = -62 +im[3831] = 0.0465 +ij[3831] = 15 +id[3832] = "2280-06-06T03:56:49" +ik[3832] = 1.693 +il[3832] = -18 +im[3832] = 0.0623 +ij[3832] = 28.1 +id[3833] = "2280-06-16T03:59:39" +ik[3833] = 1.62 +il[3833] = 79 +im[3833] = 0.0474 +ij[3833] = 28.6 +id[3834] = "2280-06-30T17:55:45" +ik[3834] = 4.514 +il[3834] = 12 +im[3834] = 0.0564 +ij[3834] = 27.2 +id[3835] = "2280-07-11T04:16:35" +ik[3835] = 0.44 +il[3835] = -41 +im[3835] = 0.0021 +ij[3835] = 28.5 +id[3836] = "2280-07-20T08:41:14" +ik[3836] = 12 +il[3836] = -18 +im[3836] = 0.0506 +ij[3836] = 18 +id[3837] = "2280-10-11T20:21:46" +ik[3837] = 31.951 +il[3837] = -104 +im[3837] = 0.0749 +ij[3837] = 8 +id[3838] = "2280-12-03T17:38:21" +ik[3838] = -1.611 +il[3838] = 88 +im[3838] = 0.0592 +ij[3838] = 2 +id[3839] = "2280-12-13T01:59:13" +ik[3839] = 36.565 +il[3839] = 54 +im[3839] = 0.0436 +ij[3839] = 3 +id[3840] = "2281-02-07T15:06:51" +ik[3840] = 0 +il[3840] = 42 +im[3840] = 0.0489 +ij[3840] = 13 +id[3841] = "2281-03-20T15:28:43" +ik[3841] = 3.42 +il[3841] = 49 +im[3841] = 0.028 +ij[3841] = 11 +id[3842] = "2281-04-23T18:58:45" +ik[3842] = 0.841 +il[3842] = 104 +im[3842] = 0.1881 +ij[3842] = 28.2 +id[3843] = "2281-05-01T14:09:27" +ik[3843] = 82.96 +il[3843] = -109 +im[3843] = 0.0594 +ij[3843] = 7.2091 +id[3844] = "2281-06-21T19:53:43" +ik[3844] = 26.167 +il[3844] = -58 +im[3844] = 0.0768 +ij[3844] = 16 +id[3845] = "2281-07-04T21:39:15" +ik[3845] = 147.27 +il[3845] = 42 +im[3845] = 0.0975 +ij[3845] = 14 +id[3846] = "2281-07-07T22:54:11" +ik[3846] = 40.388 +il[3846] = 53 +im[3846] = 0.0349 +ij[3846] = 1 +id[3847] = "2281-07-13T17:57:54" +ik[3847] = -1.759 +il[3847] = -176 +im[3847] = 0.0942 +ij[3847] = 4 +id[3848] = "2281-09-26T15:43:06" +ik[3848] = 34.553 +il[3848] = -133 +im[3848] = 0.079 +ij[3848] = 9 +id[3849] = "2281-10-02T23:34:03" +ik[3849] = 3.11 +il[3849] = 171 +im[3849] = 0.0052 +ij[3849] = 27.4 +id[3850] = "2281-10-28T02:19:24" +ik[3850] = 1.036 +il[3850] = 16 +im[3850] = 0.0544 +ij[3850] = 28.7 +id[3851] = "2281-11-07T09:42:34" +ik[3851] = 0 +il[3851] = 6 +im[3851] = 0.0787 +ij[3851] = 17 +id[3852] = "2282-01-01T03:07:44" +ik[3852] = 0.126 +il[3852] = -77 +im[3852] = 0.0485 +ij[3852] = 27.3 +id[3853] = "2282-01-28T22:34:10" +ik[3853] = 1.154 +il[3853] = -95 +im[3853] = 0.0305 +ij[3853] = 28.2 +id[3854] = "2282-01-29T16:43:12" +ik[3854] = 0.529 +il[3854] = 5 +im[3854] = 0.0396 +ij[3854] = 27.5 +id[3855] = "2282-02-26T20:31:52" +ik[3855] = 1.167 +il[3855] = -130 +im[3855] = 0.0258 +ij[3855] = 28.1 +id[3856] = "2282-03-01T18:20:09" +ik[3856] = -25.97 +il[3856] = -74 +im[3856] = 0.0548 +ij[3856] = 15 +id[3857] = "2282-05-14T22:35:23" +ik[3857] = 0.04 +il[3857] = -126 +im[3857] = 0.0591 +ij[3857] = 12 +id[3858] = "2282-07-01T14:10:49" +ik[3858] = 12 +il[3858] = -99 +im[3858] = 0.044 +ij[3858] = 18 +id[3859] = "2282-08-09T09:40:37" +ik[3859] = 2.858 +il[3859] = -4 +im[3859] = 0.061 +ij[3859] = 28.1 +id[3860] = "2282-09-02T16:35:21" +ik[3860] = 1.396 +il[3860] = 127 +im[3860] = 0.028 +ij[3860] = 28.2 +id[3861] = "2282-10-01T15:01:14" +ik[3861] = 0.045 +il[3861] = 71 +im[3861] = 0.0333 +ij[3861] = 28.5 +id[3862] = "2282-10-17T16:52:45" +ik[3862] = 0.999 +il[3862] = -162 +im[3862] = 0.0444 +ij[3862] = 28.2 +id[3863] = "2282-11-16T17:43:35" +ik[3863] = 25.133 +il[3863] = 116 +im[3863] = 0.0635 +ij[3863] = 16 +id[3864] = "2282-11-17T15:47:33" +ik[3864] = 30.809 +il[3864] = 153 +im[3864] = 0.0693 +ij[3864] = 8 +id[3865] = "2283-01-14T04:24:35" +ik[3865] = -1.584 +il[3865] = 159 +im[3865] = 0.0988 +ij[3865] = 2 +id[3866] = "2283-01-21T18:30:14" +ik[3866] = 36.275 +il[3866] = 20 +im[3866] = 0.0121 +ij[3866] = 3 +id[3867] = "2283-03-20T21:39:44" +ik[3867] = 0 +il[3867] = 169 +im[3867] = 0.1076 +ij[3867] = 13 +id[3868] = "2283-04-27T15:02:04" +ik[3868] = 1.06 +il[3868] = -115 +im[3868] = 0.0352 +ij[3868] = 11 +id[3869] = "2283-06-06T20:42:20" +ik[3869] = 77.96 +il[3869] = -21 +im[3869] = 0.0105 +ij[3869] = 7.1729 +id[3870] = "2283-08-03T09:06:11" +ik[3870] = 135.48 +il[3870] = -6 +im[3870] = 0.0572 +ij[3870] = 14 +id[3871] = "2283-08-17T01:59:42" +ik[3871] = -2.042 +il[3871] = -126 +im[3871] = 0.012 +ij[3871] = 4 +id[3872] = "2283-08-23T00:05:11" +ik[3872] = 44.12 +il[3872] = -39 +im[3872] = 0.1228 +ij[3872] = 1 +id[3873] = "2283-09-07T03:34:31" +ik[3873] = 2.384 +il[3873] = 56 +im[3873] = 0.1243 +ij[3873] = 27.4 +id[3874] = "2283-10-16T16:30:12" +ik[3874] = 0 +il[3874] = -110 +im[3874] = 0.0788 +ij[3874] = 17 +id[3875] = "2283-10-17T05:38:00" +ik[3875] = 1.479 +il[3875] = 59 +im[3875] = 0.0858 +ij[3875] = 28.7 +id[3876] = "2283-12-05T11:16:26" +ik[3876] = 35.533 +il[3876] = 99 +im[3876] = 0.0662 +ij[3876] = 9 +id[3877] = "2283-12-10T13:04:26" +ik[3877] = 0.046 +il[3877] = 122 +im[3877] = 0.0245 +ij[3877] = 27.3 +id[3878] = "2284-01-04T18:26:27" +ik[3878] = 0.136 +il[3878] = -71 +im[3878] = 0.0421 +ij[3878] = 28.2 +id[3879] = "2284-01-08T12:52:47" +ik[3879] = 0.528 +il[3879] = 50 +im[3879] = 0.0239 +ij[3879] = 27.5 +id[3880] = "2284-02-09T18:52:01" +ik[3880] = -26.116 +il[3880] = -86 +im[3880] = 0.0628 +ij[3880] = 15 +id[3881] = "2284-02-19T09:47:51" +ik[3881] = 1.238 +il[3881] = 143 +im[3881] = 0.0173 +ij[3881] = 28.2 +id[3882] = "2284-03-19T05:27:58" +ik[3882] = 2.175 +il[3882] = 125 +im[3882] = 0.0185 +ij[3882] = 27.6 +id[3883] = "2284-03-23T06:26:46" +ik[3883] = 1.566 +il[3883] = 148 +im[3883] = 0.0356 +ij[3883] = 28.8 +id[3884] = "2284-06-12T06:01:29" +ik[3884] = 12 +il[3884] = -146 +im[3884] = 0.0343 +ij[3884] = 18 +id[3885] = "2284-07-04T12:08:44" +ik[3885] = 0.88 +il[3885] = -24 +im[3885] = 0.053 +ij[3885] = 12 +id[3886] = "2284-09-22T23:25:22" +ik[3886] = 0.263 +il[3886] = 63 +im[3886] = 0.0052 +ij[3886] = 28.2 +id[3887] = "2284-10-27T06:06:27" +ik[3887] = 25.437 +il[3887] = -66 +im[3887] = 0.0552 +ij[3887] = 16 +id[3888] = "2284-12-20T07:48:26" +ik[3888] = 30.688 +il[3888] = 69 +im[3888] = 0.0258 +ij[3888] = 8 +id[3889] = "2285-01-07T12:50:45" +ik[3889] = 0.068 +il[3889] = 168 +im[3889] = 0.0849 +ij[3889] = 28.5 +id[3890] = "2285-02-19T04:35:03" +ik[3890] = 5.145 +il[3890] = -21 +im[3890] = 0.0967 +ij[3890] = 27.4 +id[3891] = "2285-03-08T02:33:12" +ik[3891] = 38.051 +il[3891] = 170 +im[3891] = 0.1283 +ij[3891] = 3 +id[3892] = "2285-03-11T04:17:48" +ik[3892] = 4.722 +il[3892] = 173 +im[3892] = 0.0849 +ij[3892] = 27.1 +id[3893] = "2285-03-13T21:36:37" +ik[3893] = -1.701 +il[3893] = -61 +im[3893] = 0.0194 +ij[3893] = 2 +id[3894] = "2285-04-14T13:01:27" +ik[3894] = 23 +il[3894] = 8 +im[3894] = 0.1136 +ij[3894] = 17 +id[3895] = "2285-05-07T07:54:36" +ik[3895] = 1.532 +il[3895] = -60 +im[3895] = 0.0939 +ij[3895] = 28.7 +id[3896] = "2285-05-14T09:06:40" +ik[3896] = 0 +il[3896] = -12 +im[3896] = 0.2277 +ij[3896] = 13 +id[3897] = "2285-05-19T04:13:46" +ik[3897] = 0.037 +il[3897] = 107 +im[3897] = 0.1564 +ij[3897] = 28.2 +id[3898] = "2285-05-24T09:56:45" +ik[3898] = 0 +il[3898] = 62 +im[3898] = 0.1555 +ij[3898] = 18 +id[3899] = "2285-06-15T11:19:51" +ik[3899] = 3.03 +il[3899] = -123 +im[3899] = 0.1672 +ij[3899] = 11 +id[3900] = "2285-07-01T06:24:37" +ik[3900] = 3.89 +il[3900] = -78 +im[3900] = 0.0467 +ij[3900] = 28.1 +id[3901] = "2285-07-22T08:09:16" +ik[3901] = 68.96 +il[3901] = 97 +im[3901] = 0.2989 +ij[3901] = 7.1142 +id[3902] = "2285-08-17T14:55:17" +ik[3902] = 4.122 +il[3902] = -107 +im[3902] = 0.2439 +ij[3902] = 28.5 +id[3903] = "2285-09-07T12:38:06" +ik[3903] = 116.15 +il[3903] = 133 +im[3903] = 0.0235 +ij[3903] = 14 +id[3904] = "2285-09-13T20:49:03" +ik[3904] = 0 +il[3904] = 73 +im[3904] = 0.1879 +ij[3904] = 17 +id[3905] = "2285-09-18T05:53:30" +ik[3905] = -2.343 +il[3905] = -20 +im[3905] = 0.1702 +ij[3905] = 4 +id[3906] = "2285-09-24T21:24:58" +ik[3906] = 2.671 +il[3906] = 179 +im[3906] = 0.0553 +ij[3906] = 28.7 +id[3907] = "2285-10-10T00:56:09" +ik[3907] = 46.337 +il[3907] = -91 +im[3907] = 0.1098 +ij[3907] = 1 +id[3908] = "2285-11-12T12:03:06" +ik[3908] = 0.556 +il[3908] = 71 +im[3908] = 0.1358 +ij[3908] = 27.3 +id[3909] = "2285-12-13T15:01:25" +ik[3909] = 0.654 +il[3909] = -29 +im[3909] = 0.0983 +ij[3909] = 27.5 +id[3910] = "2286-01-17T17:39:52" +ik[3910] = -26.261 +il[3910] = -89 +im[3910] = 0.0289 +ij[3910] = 15 +id[3911] = "2286-02-08T06:56:53" +ik[3911] = 34.039 +il[3911] = -82 +im[3911] = 0.0805 +ij[3911] = 9 +id[3912] = "2286-02-25T14:25:39" +ik[3912] = 1.892 +il[3912] = -29 +im[3912] = 0.0463 +ij[3912] = 27.6 +id[3913] = "2286-03-08T09:12:21" +ik[3913] = 1.945 +il[3913] = 152 +im[3913] = 0.0731 +ij[3913] = 28.8 +id[3914] = "2286-05-02T11:46:16" +ik[3914] = 3.782 +il[3914] = -80 +im[3914] = 0.0531 +ij[3914] = 27.2 +id[3915] = "2286-05-24T17:53:40" +ik[3915] = 12 +il[3915] = 42 +im[3915] = 0.0218 +ij[3915] = 18 +id[3916] = "2286-08-14T03:18:57" +ik[3916] = 1.14 +il[3916] = -39 +im[3916] = 0.0568 +ij[3916] = 12 +id[3917] = "2286-10-09T06:48:15" +ik[3917] = 25.631 +il[3917] = -62 +im[3917] = 0.0595 +ij[3917] = 16 +id[3918] = "2287-01-21T06:41:34" +ik[3918] = 4.683 +il[3918] = -142 +im[3918] = 0.0557 +ij[3918] = 27.4 +id[3919] = "2287-01-24T20:15:06" +ik[3919] = 31.589 +il[3919] = 49 +im[3919] = 0.0098 +ij[3919] = 8 +id[3920] = "2287-02-05T18:27:09" +ik[3920] = 5.114 +il[3920] = -179 +im[3920] = 0.0503 +ij[3920] = 27.1 +id[3921] = "2287-02-26T04:05:56" +ik[3921] = 23 +il[3921] = -123 +im[3921] = 0.0558 +ij[3921] = 17 +id[3922] = "2287-03-19T03:31:32" +ik[3922] = 0.045 +il[3922] = 84 +im[3922] = 0.0898 +ij[3922] = 28.7 +id[3923] = "2287-04-04T17:15:53" +ik[3923] = 0.217 +il[3923] = 35 +im[3923] = 0.0492 +ij[3923] = 28.5 +id[3924] = "2287-05-10T00:34:38" +ik[3924] = 0.427 +il[3924] = -101 +im[3924] = 0.1424 +ij[3924] = 27.3 +id[3925] = "2287-05-12T00:48:14" +ik[3925] = 42.821 +il[3925] = -85 +im[3925] = 0.1663 +ij[3925] = 3 +id[3926] = "2287-06-09T09:36:38" +ik[3926] = -2.14 +il[3926] = 52 +im[3926] = 0.2171 +ij[3926] = 2 +id[3927] = "2287-06-23T16:19:54" +ik[3927] = 3.341 +il[3927] = 87 +im[3927] = 0.2206 +ij[3927] = 27.5 +id[3928] = "2287-07-29T12:38:37" +ik[3928] = 0 +il[3928] = 126 +im[3928] = 0.0962 +ij[3928] = 13 +id[3929] = "2287-08-04T14:07:19" +ik[3929] = 6.39 +il[3929] = 162 +im[3929] = 0.3766 +ij[3929] = 28.1 +id[3930] = "2287-08-29T13:37:38" +ik[3930] = 6.46 +il[3930] = 40 +im[3930] = 0.3768 +ij[3930] = 11 +id[3931] = "2287-09-13T09:06:44" +ik[3931] = 3.763 +il[3931] = 85 +im[3931] = 0.3583 +ij[3931] = 28.1 +id[3932] = "2287-09-29T11:41:12" +ik[3932] = 61.96 +il[3932] = -156 +im[3932] = 0.3201 +ij[3932] = 7.1054 +id[3933] = "2287-10-04T08:26:39" +ik[3933] = 2.881 +il[3933] = -59 +im[3933] = 0.0498 +ij[3933] = 28.2 +id[3934] = "2287-10-21T04:41:27" +ik[3934] = 2.79 +il[3934] = 162 +im[3934] = 0.182 +ij[3934] = 27.5 +id[3935] = "2287-11-09T18:22:57" +ik[3935] = 103.24 +il[3935] = 147 +im[3935] = 0.1968 +ij[3935] = 14 +id[3936] = "2287-11-20T02:35:18" +ik[3936] = -2.187 +il[3936] = 124 +im[3936] = 0.1826 +ij[3936] = 4 +id[3937] = "2287-12-15T17:08:09" +ik[3937] = 42.562 +il[3937] = 152 +im[3937] = 0.0771 +ij[3937] = 1 +id[3938] = "2287-12-19T17:56:49" +ik[3938] = -26.259 +il[3938] = 178 +im[3938] = 0.153 +ij[3938] = 15 +id[3939] = "2288-01-29T16:12:37" +ik[3939] = 1.502 +il[3939] = -126 +im[3939] = 0.0694 +ij[3939] = 27.6 +id[3940] = "2288-02-17T18:56:57" +ik[3940] = 2.45 +il[3940] = 14 +im[3940] = 0.0985 +ij[3940] = 28.8 +id[3941] = "2288-03-27T18:41:19" +ik[3941] = 32.324 +il[3941] = 26 +im[3941] = 0.0616 +ij[3941] = 9 +id[3942] = "2288-04-10T00:34:51" +ik[3942] = 3.431 +il[3942] = 63 +im[3942] = 0.0511 +ij[3942] = 27.2 +id[3943] = "2288-05-04T06:07:17" +ik[3943] = 12 +il[3943] = -152 +im[3943] = 0.0151 +ij[3943] = 18 +id[3944] = "2288-06-30T08:23:57" +ik[3944] = 0.613 +il[3944] = 3 +im[3944] = 0.0192 +ij[3944] = 28.2 +id[3945] = "2288-07-02T19:27:14" +ik[3945] = 0.245 +il[3945] = -140 +im[3945] = 0.0104 +ij[3945] = 28.1 +id[3946] = "2288-09-18T19:01:11" +ik[3946] = 0.94 +il[3946] = -106 +im[3946] = 0.0572 +ij[3946] = 12 +id[3947] = "2288-09-20T20:09:14" +ik[3947] = 25.778 +il[3947] = 103 +im[3947] = 0.0514 +ij[3947] = 16 +id[3948] = "2288-12-04T17:58:59" +ik[3948] = 4.288 +il[3948] = 142 +im[3948] = 0.0229 +ij[3948] = 28.1 +id[3949] = "2288-12-29T18:10:04" +ik[3949] = 4.371 +il[3949] = 20 +im[3949] = 0.0581 +ij[3949] = 27.4 +id[3950] = "2289-01-13T05:43:05" +ik[3950] = 5.41 +il[3950] = -14 +im[3950] = 0.0688 +ij[3950] = 27.1 +id[3951] = "2289-02-01T16:36:38" +ik[3951] = 0 +il[3951] = 11 +im[3951] = 0.0065 +ij[3951] = 17 +id[3952] = "2289-02-03T13:05:25" +ik[3952] = 2.576 +il[3952] = 82 +im[3952] = 0.0219 +ij[3952] = 28.2 +id[3953] = "2289-03-04T20:19:07" +ik[3953] = 0.142 +il[3953] = -110 +im[3953] = 0.0301 +ij[3953] = 28.7 +id[3954] = "2289-03-08T21:30:12" +ik[3954] = 33.594 +il[3954] = -89 +im[3954] = 0.0788 +ij[3954] = 8 +id[3955] = "2289-04-04T17:58:21" +ik[3955] = 0.176 +il[3955] = -142 +im[3955] = 0.0647 +ij[3955] = 27.3 +id[3956] = "2289-05-05T19:23:59" +ik[3956] = 1.185 +il[3956] = 132 +im[3956] = 0.0998 +ij[3956] = 27.5 +id[3957] = "2289-05-31T16:56:42" +ik[3957] = 0.616 +il[3957] = 56 +im[3957] = 0.0625 +ij[3957] = 28.5 +id[3958] = "2289-06-03T09:12:37" +ik[3958] = -24.551 +il[3958] = -162 +im[3958] = 0.1096 +ij[3958] = 15 +id[3959] = "2289-07-15T18:21:10" +ik[3959] = 47.367 +il[3959] = 110 +im[3959] = 0.1422 +ij[3959] = 3 +id[3960] = "2289-07-23T12:00:33" +ik[3960] = 4.828 +il[3960] = -80 +im[3960] = 0.0889 +ij[3960] = 27.6 +id[3961] = "2289-08-13T10:47:31" +ik[3961] = 1.085 +il[3961] = 143 +im[3961] = 0.1771 +ij[3961] = 28.8 +id[3962] = "2289-08-13T16:28:13" +ik[3962] = -2.374 +il[3962] = 60 +im[3962] = 0.182 +ij[3962] = 2 +id[3963] = "2289-10-04T18:23:28" +ik[3963] = 0 +il[3963] = -177 +im[3963] = 0.0924 +ij[3963] = 13 +id[3964] = "2289-10-23T02:49:22" +ik[3964] = 3.041 +il[3964] = -124 +im[3964] = 0.2889 +ij[3964] = 28.1 +id[3965] = "2289-11-09T12:18:31" +ik[3965] = 0.26 +il[3965] = -118 +im[3965] = 0.2545 +ij[3965] = 11 +id[3966] = "2289-11-24T04:26:43" +ik[3966] = 1.819 +il[3966] = -18 +im[3966] = 0.1525 +ij[3966] = 28.1 +id[3967] = "2289-12-11T17:26:03" +ik[3967] = 67.96 +il[3967] = -54 +im[3967] = 0.0728 +ij[3967] = 7.1316 +id[3968] = "2290-01-04T13:05:12" +ik[3968] = 3.238 +il[3968] = -123 +im[3968] = 0.0993 +ij[3968] = 28.8 +id[3969] = "2290-02-01T06:16:51" +ik[3969] = 119.5 +il[3969] = -119 +im[3969] = 0.0866 +ij[3969] = 14 +id[3970] = "2290-02-02T14:08:40" +ik[3970] = -1.774 +il[3970] = 136 +im[3970] = 0.0507 +ij[3970] = 4 +id[3971] = "2290-02-15T19:37:12" +ik[3971] = 38.6 +il[3971] = 178 +im[3971] = 0.0484 +ij[3971] = 1 +id[3972] = "2290-03-13T12:50:31" +ik[3972] = 2.817 +il[3972] = 162 +im[3972] = 0.0842 +ij[3972] = 27.2 +id[3973] = "2290-04-11T20:22:01" +ik[3973] = 12 +il[3973] = -35 +im[3973] = 0.0612 +ij[3973] = 18 +id[3974] = "2290-05-06T07:20:25" +ik[3974] = 31.412 +il[3974] = 32 +im[3974] = 0.0683 +ij[3974] = 9 +id[3975] = "2290-06-15T11:28:10" +ik[3975] = 0.268 +il[3975] = -10 +im[3975] = 0.0482 +ij[3975] = 28.2 +id[3976] = "2290-07-05T04:58:33" +ik[3976] = 0.386 +il[3976] = -85 +im[3976] = 0.056 +ij[3976] = 28.2 +id[3977] = "2290-09-03T08:56:03" +ik[3977] = 25.905 +il[3977] = 83 +im[3977] = 0.031 +ij[3977] = 16 +id[3978] = "2290-10-26T07:08:18" +ik[3978] = 0.36 +il[3978] = -88 +im[3978] = 0.0568 +ij[3978] = 12 +id[3979] = "2291-01-12T17:24:17" +ik[3979] = 0 +il[3979] = -17 +im[3979] = 0.0146 +ij[3979] = 17 +id[3980] = "2291-01-31T13:39:07" +ik[3980] = 1.97 +il[3980] = -139 +im[3980] = 0.0369 +ij[3980] = 28.2 +id[3981] = "2291-02-23T20:41:59" +ik[3981] = 0.26 +il[3981] = -16 +im[3981] = 0.0414 +ij[3981] = 28.7 +id[3982] = "2291-03-12T11:10:57" +ik[3982] = 0.264 +il[3982] = -76 +im[3982] = 0.0067 +ij[3982] = 27.3 +id[3983] = "2291-04-10T21:20:35" +ik[3983] = 0.825 +il[3983] = 53 +im[3983] = 0.0121 +ij[3983] = 27.5 +id[3984] = "2291-05-10T03:51:25" +ik[3984] = -25.238 +il[3984] = -124 +im[3984] = 0.0166 +ij[3984] = 15 +id[3985] = "2291-05-14T01:40:25" +ik[3985] = 36.046 +il[3985] = -53 +im[3985] = 0.0722 +ij[3985] = 8 +id[3986] = "2291-06-21T07:31:17" +ik[3986] = 3.584 +il[3986] = -130 +im[3986] = 0.0318 +ij[3986] = 27.6 +id[3987] = "2291-07-13T14:58:47" +ik[3987] = 0.358 +il[3987] = -23 +im[3987] = 0.1053 +ij[3987] = 28.8 +id[3988] = "2291-07-25T18:13:34" +ik[3988] = 0.294 +il[3988] = 47 +im[3988] = 0.0892 +ij[3988] = 28.5 +id[3989] = "2291-08-27T21:25:00" +ik[3989] = 5.46 +il[3989] = -35 +im[3989] = 0.1132 +ij[3989] = 27.2 +id[3990] = "2291-08-31T11:09:10" +ik[3990] = 44.592 +il[3990] = 154 +im[3990] = 0.0485 +ij[3990] = 3 +id[3991] = "2291-09-17T22:57:48" +ik[3991] = 11 +il[3991] = 148 +im[3991] = 0.0478 +ij[3991] = 18 +id[3992] = "2291-09-19T00:30:55" +ik[3992] = -2.09 +il[3992] = 135 +im[3992] = 0.0785 +ij[3992] = 2 +id[3993] = "2291-11-19T06:17:20" +ik[3993] = 0 +il[3993] = -74 +im[3993] = 0.2195 +ij[3993] = 13 +id[3994] = "2291-11-24T17:19:31" +ik[3994] = 0.303 +il[3994] = 173 +im[3994] = 0.0498 +ij[3994] = 28.2 +id[3995] = "2291-12-27T19:41:11" +ik[3995] = 3.23 +il[3995] = 84 +im[3995] = 0.2391 +ij[3995] = 11 +id[3996] = "2292-01-01T11:39:09" +ik[3996] = 12 +il[3996] = 75 +im[3996] = 0.1678 +ij[3996] = 17 +id[3997] = "2292-02-03T09:28:11" +ik[3997] = 76.13 +il[3997] = 35 +im[3997] = 0.1254 +ij[3997] = 7.1565 +id[3998] = "2292-02-26T15:04:01" +ik[3998] = 3.05 +il[3998] = 170 +im[3998] = 0.0512 +ij[3998] = 28.5 +id[3999] = "2292-03-05T01:23:13" +ik[3999] = 12 +il[3999] = 86 +im[3999] = 0.1382 +ij[3999] = 18 +id[4000] = "2292-03-29T05:49:08" +ik[4000] = -1.586 +il[4000] = -113 +im[4000] = 0.0591 +ij[4000] = 4 +id[4001] = "2292-04-02T14:36:05" +ik[4001] = 37.1 +il[4001] = 157 +im[4001] = 0.1114 +ij[4001] = 1 +id[4002] = "2292-04-06T20:19:59" +ik[4002] = 139.59 +il[4002] = 111 +im[4002] = 0.0712 +ij[4002] = 14 +id[4003] = "2292-06-11T05:24:52" +ik[4003] = 31.382 +il[4003] = -124 +im[4003] = 0.0633 +ij[4003] = 9 +id[4004] = "2292-08-15T08:10:54" +ik[4004] = 26.025 +il[4004] = 101 +im[4004] = 0.0118 +ij[4004] = 16 +id[4005] = "2292-08-30T16:22:36" +ik[4005] = 3.029 +il[4005] = 127 +im[4005] = 0.0099 +ij[4005] = 28.1 +id[4006] = "2292-09-30T18:15:34" +ik[4006] = 1.969 +il[4006] = 40 +im[4006] = 0.0214 +ij[4006] = 28.6 +id[4007] = "2292-12-08T06:38:58" +ik[4007] = 0.46 +il[4007] = -179 +im[4007] = 0.0156 +ij[4007] = 12 +id[4008] = "2292-12-23T21:42:37" +ik[4008] = 0 +il[4008] = -86 +im[4008] = 0.0096 +ij[4008] = 17 +id[4009] = "2293-02-15T09:29:32" +ik[4009] = 0.312 +il[4009] = -98 +im[4009] = 0.0581 +ij[4009] = 28.7 +id[4010] = "2293-02-15T09:54:22" +ik[4010] = 0.573 +il[4010] = -110 +im[4010] = 0.058 +ij[4010] = 28.1 +id[4011] = "2293-02-18T20:09:39" +ik[4011] = 0.266 +il[4011] = 135 +im[4011] = 0.0232 +ij[4011] = 27.3 +id[4012] = "2293-03-19T15:10:11" +ik[4012] = 0.673 +il[4012] = 123 +im[4012] = 0.0257 +ij[4012] = 27.5 +id[4013] = "2293-04-18T08:24:18" +ik[4013] = -25.552 +il[4013] = 160 +im[4013] = 0.0144 +ij[4013] = 15 +id[4014] = "2293-05-28T10:55:03" +ik[4014] = 3.078 +il[4014] = 154 +im[4014] = 0.0644 +ij[4014] = 27.6 +id[4015] = "2293-06-25T05:27:26" +ik[4015] = 0.953 +il[4015] = 148 +im[4015] = 0.077 +ij[4015] = 28.8 +id[4016] = "2293-07-30T22:55:40" +ik[4016] = 4.943 +il[4016] = -123 +im[4016] = 0.0138 +ij[4016] = 27.2 +id[4017] = "2293-08-01T22:10:38" +ik[4017] = 35.184 +il[4017] = -92 +im[4017] = 0.047 +ij[4017] = 8 +id[4018] = "2293-08-19T02:14:51" +ik[4018] = 11 +il[4018] = 14 +im[4018] = 0.089 +ij[4018] = 18 +id[4019] = "2293-10-08T11:18:39" +ik[4019] = 0.242 +il[4019] = 9 +im[4019] = 0.0167 +ij[4019] = 28.5 +id[4020] = "2293-10-17T12:17:08" +ik[4020] = 40.048 +il[4020] = 82 +im[4020] = 0.1142 +ij[4020] = 3 +id[4021] = "2293-10-19T05:26:56" +ik[4021] = -1.819 +il[4021] = -159 +im[4021] = 0.1006 +ij[4021] = 2 +id[4022] = "2293-12-23T20:20:27" +ik[4022] = 0 +il[4022] = -107 +im[4022] = 0.1716 +ij[4022] = 13 +id[4023] = "2294-02-02T03:27:52" +ik[4023] = 4.35 +il[4023] = 157 +im[4023] = 0.2123 +ij[4023] = 11 +id[4024] = "2294-03-04T04:14:56" +ik[4024] = 2.682 +il[4024] = -135 +im[4024] = 0.1883 +ij[4024] = 28.2 +id[4025] = "2294-03-14T21:25:03" +ik[4025] = 81.04 +il[4025] = 62 +im[4025] = 0.1608 +ij[4025] = 7.1895 +id[4026] = "2294-05-13T01:00:02" +ik[4026] = 37.388 +il[4026] = -148 +im[4026] = 0.086 +ij[4026] = 1 +id[4027] = "2294-05-14T20:11:23" +ik[4027] = -1.564 +il[4027] = -59 +im[4027] = 0.0564 +ij[4027] = 4 +id[4028] = "2294-05-21T15:16:52" +ik[4028] = 148.79 +il[4028] = 80 +im[4028] = 0.0799 +ij[4028] = 14 +id[4029] = "2294-06-26T08:42:20" +ik[4029] = 0.041 +il[4029] = 163 +im[4029] = 0.0567 +ij[4029] = 28.5 +id[4030] = "2294-07-20T05:52:52" +ik[4030] = 32.185 +il[4030] = 76 +im[4030] = 0.0759 +ij[4030] = 9 +id[4031] = "2294-07-26T21:00:42" +ik[4031] = 26.143 +il[4031] = -86 +im[4031] = 0.0188 +ij[4031] = 16 +id[4032] = "2294-10-22T00:31:14" +ik[4032] = 2.266 +il[4032] = -12 +im[4032] = 0.0053 +ij[4032] = 28.6 +id[4033] = "2294-11-01T12:21:15" +ik[4033] = 3.62 +il[4033] = -87 +im[4033] = 0.0516 +ij[4033] = 27.4 +id[4034] = "2294-11-05T10:56:18" +ik[4034] = 0.04 +il[4034] = -27 +im[4034] = 0.0094 +ij[4034] = 28.2 +id[4035] = "2294-11-09T12:08:26" +ik[4035] = 1.796 +il[4035] = -4 +im[4035] = 0.0418 +ij[4035] = 28.1 +id[4036] = "2294-11-15T08:11:30" +ik[4036] = 6.124 +il[4036] = 118 +im[4036] = 0.0524 +ij[4036] = 27.1 +id[4037] = "2294-11-23T20:05:47" +ik[4037] = 0.564 +il[4037] = 15 +im[4037] = 0.0505 +ij[4037] = 28.1 +id[4038] = "2294-12-05T07:04:15" +ik[4038] = 0 +il[4038] = -27 +im[4038] = 0.0075 +ij[4038] = 17 +id[4039] = "2295-02-06T02:46:05" +ik[4039] = 1.07 +il[4039] = -55 +im[4039] = 0.0551 +ij[4039] = 12 +id[4040] = "2295-03-29T17:29:10" +ik[4040] = -25.754 +il[4040] = 18 +im[4040] = 0.0194 +ij[4040] = 15 +id[4041] = "2295-05-07T20:00:49" +ik[4041] = 2.76 +il[4041] = 6 +im[4041] = 0.0567 +ij[4041] = 27.6 +id[4042] = "2295-05-08T18:20:40" +ik[4042] = 1.724 +il[4042] = 49 +im[4042] = 0.0503 +ij[4042] = 28.1 +id[4043] = "2295-06-10T20:25:12" +ik[4043] = 1.33 +il[4043] = -18 +im[4043] = 0.0077 +ij[4043] = 28.8 +id[4044] = "2295-06-17T20:29:47" +ik[4044] = 0.411 +il[4044] = 50 +im[4044] = 0.0641 +ij[4044] = 28.2 +id[4045] = "2295-07-09T14:05:20" +ik[4045] = 4.618 +il[4045] = -2 +im[4045] = 0.012 +ij[4045] = 27.2 +id[4046] = "2295-07-28T23:54:18" +ik[4046] = 12 +il[4046] = 41 +im[4046] = 0.0597 +ij[4046] = 18 +id[4047] = "2295-08-20T17:34:12" +ik[4047] = 2.048 +il[4047] = -3 +im[4047] = 0.0223 +ij[4047] = 28.2 +id[4048] = "2295-09-26T06:18:38" +ik[4048] = 32.694 +il[4048] = 160 +im[4048] = 0.0815 +ij[4048] = 8 +id[4049] = "2295-11-20T22:38:03" +ik[4049] = -1.65 +il[4049] = 94 +im[4049] = 0.0961 +ij[4049] = 2 +id[4050] = "2295-11-28T19:06:05" +ik[4050] = 37.173 +il[4050] = -138 +im[4050] = 0.0497 +ij[4050] = 3 +id[4051] = "2296-01-26T15:17:20" +ik[4051] = 0 +il[4051] = 128 +im[4051] = 0.0416 +ij[4051] = 13 +id[4052] = "2296-03-07T05:10:59" +ik[4052] = 3.93 +il[4052] = -71 +im[4052] = 0.1041 +ij[4052] = 11 +id[4053] = "2296-03-28T00:05:38" +ik[4053] = 1.39 +il[4053] = -15 +im[4053] = 0.1582 +ij[4053] = 28.1 +id[4054] = "2296-04-17T23:33:12" +ik[4054] = 82.34 +il[4054] = -167 +im[4054] = 0.1066 +ij[4054] = 7.2106 +id[4055] = "2296-06-21T07:51:01" +ik[4055] = 39.237 +il[4055] = -30 +im[4055] = 0.0361 +ij[4055] = 1 +id[4056] = "2296-06-23T07:28:03" +ik[4056] = 148.67 +il[4056] = -5 +im[4056] = 0.012 +ij[4056] = 14 +id[4057] = "2296-06-27T06:23:51" +ik[4057] = -1.679 +il[4057] = 50 +im[4057] = 0.0897 +ij[4057] = 4 +id[4058] = "2296-07-02T18:51:47" +ik[4058] = 26.222 +il[4058] = -84 +im[4058] = 0.0988 +ij[4058] = 16 +id[4059] = "2296-09-04T06:15:32" +ik[4059] = 33.797 +il[4059] = 3 +im[4059] = 0.0203 +ij[4059] = 9 +id[4060] = "2296-09-28T17:35:57" +ik[4060] = 1.412 +il[4060] = 71 +im[4060] = 0.0498 +ij[4060] = 28.5 +id[4061] = "2296-10-07T11:24:56" +ik[4061] = 1.32 +il[4061] = -111 +im[4061] = 0.0704 +ij[4061] = 28.2 +id[4062] = "2296-10-11T10:57:45" +ik[4062] = 3.284 +il[4062] = -65 +im[4062] = 0.059 +ij[4062] = 27.4 +id[4063] = "2296-10-25T10:56:21" +ik[4063] = 6.437 +il[4063] = 72 +im[4063] = 0.0669 +ij[4063] = 27.1 +id[4064] = "2296-11-09T16:38:50" +ik[4064] = 2.102 +il[4064] = 136 +im[4064] = 0.0545 +ij[4064] = 28.6 +id[4065] = "2296-11-15T04:49:59" +ik[4065] = 0 +il[4065] = 7 +im[4065] = 0.0191 +ij[4065] = 17 +id[4066] = "2296-12-10T21:23:21" +ik[4066] = 0.091 +il[4066] = 10 +im[4066] = 0.0297 +ij[4066] = 28.2 +id[4067] = "2297-01-09T04:33:51" +ik[4067] = 0.167 +il[4067] = -169 +im[4067] = 0.0272 +ij[4067] = 27.3 +id[4068] = "2297-01-27T08:17:10" +ik[4068] = 0.411 +il[4068] = -36 +im[4068] = 0.0298 +ij[4068] = 28.1 +id[4069] = "2297-01-31T10:02:33" +ik[4069] = 0.238 +il[4069] = -24 +im[4069] = 0.0648 +ij[4069] = 28.7 +id[4070] = "2297-03-09T09:59:13" +ik[4070] = -25.914 +il[4070] = -17 +im[4070] = 0.015 +ij[4070] = 15 +id[4071] = "2297-04-19T18:40:46" +ik[4071] = 0.4 +il[4071] = -94 +im[4071] = 0.0321 +ij[4071] = 12 +id[4072] = "2297-07-08T20:55:14" +ik[4072] = 12 +il[4072] = 95 +im[4072] = 0.0519 +ij[4072] = 18 +id[4073] = "2297-07-15T10:26:55" +ik[4073] = 1.673 +il[4073] = -49 +im[4073] = 0.0318 +ij[4073] = 28.1 +id[4074] = "2297-07-21T15:21:51" +ik[4074] = 1.785 +il[4074] = -61 +im[4074] = 0.0414 +ij[4074] = 28.2 +id[4075] = "2297-11-04T00:51:58" +ik[4075] = 31.131 +il[4075] = 99 +im[4075] = 0.0746 +ij[4075] = 8 +id[4076] = "2297-12-27T16:26:31" +ik[4076] = -1.582 +il[4076] = 24 +im[4076] = 0.0956 +ij[4076] = 2 +id[4077] = "2298-01-06T00:27:04" +ik[4077] = 36.169 +il[4077] = -6 +im[4077] = 0.0111 +ij[4077] = 3 +id[4078] = "2298-03-03T07:28:31" +ik[4078] = 0 +il[4078] = 69 +im[4078] = 0.009 +ij[4078] = 13 +id[4079] = "2298-03-15T06:10:15" +ik[4079] = 1.831 +il[4079] = -157 +im[4079] = 0.0344 +ij[4079] = 28.2 +id[4080] = "2298-04-12T00:32:46" +ik[4080] = 2.18 +il[4080] = 179 +im[4080] = 0.0136 +ij[4080] = 11 +id[4081] = "2298-05-22T16:41:09" +ik[4081] = 80.38 +il[4081] = 105 +im[4081] = 0.0176 +ij[4081] = 7.1923 +id[4082] = "2298-06-10T04:06:47" +ik[4082] = 25.346 +il[4082] = 113 +im[4082] = 0.1661 +ij[4082] = 16 +id[4083] = "2298-07-22T17:37:59" +ik[4083] = 141.42 +il[4083] = -36 +im[4083] = 0.1164 +ij[4083] = 14 +id[4084] = "2298-08-04T15:04:01" +ik[4084] = 42.584 +il[4084] = 128 +im[4084] = 0.1085 +ij[4084] = 1 +id[4085] = "2298-08-05T04:03:25" +ik[4085] = -1.919 +il[4085] = -61 +im[4085] = 0.115 +ij[4085] = 4 +id[4086] = "2298-09-18T09:49:16" +ik[4086] = 2.739 +il[4086] = -76 +im[4086] = 0.0906 +ij[4086] = 27.4 +id[4087] = "2298-10-25T15:50:43" +ik[4087] = 0 +il[4087] = -161 +im[4087] = 0.0155 +ij[4087] = 17 +id[4088] = "2298-11-06T16:53:18" +ik[4088] = 35.445 +il[4088] = -58 +im[4088] = 0.0482 +ij[4088] = 9 +id[4089] = "2298-11-26T15:50:30" +ik[4089] = 1.433 +il[4089] = 154 +im[4089] = 0.0589 +ij[4089] = 28.6 +id[4090] = "2298-12-09T13:52:37" +ik[4090] = 0.715 +il[4090] = -49 +im[4090] = 0.0217 +ij[4090] = 28.5 +id[4091] = "2298-12-19T08:17:30" +ik[4091] = 0.041 +il[4091] = 131 +im[4091] = 0.0421 +ij[4091] = 27.3 +id[4092] = "2299-01-17T01:34:41" +ik[4092] = 0.52 +il[4092] = 154 +im[4092] = 0.0449 +ij[4092] = 27.5 +id[4093] = "2299-01-23T18:12:10" +ik[4093] = 0.109 +il[4093] = -30 +im[4093] = 0.0473 +ij[4093] = 28.7 +id[4094] = "2299-02-17T18:14:13" +ik[4094] = -26.061 +il[4094] = -147 +im[4094] = 0.0114 +ij[4094] = 15 +id[4095] = "2299-03-28T04:51:28" +ik[4095] = 2.271 +il[4095] = 76 +im[4095] = 0.0606 +ij[4095] = 27.6 +id[4096] = "2299-06-17T05:57:13" +ik[4096] = 0.62 +il[4096] = 121 +im[4096] = 0.0302 +ij[4096] = 12 +id[4097] = "2299-06-20T10:28:31" +ik[4097] = 12 +il[4097] = -115 +im[4097] = 0.0533 +ij[4097] = 18 +id[4098] = "2299-11-04T15:22:38" +ik[4098] = 25.338 +il[4098] = 80 +im[4098] = 0.0119 +ij[4098] = 16 +id[4099] = "2299-12-08T07:12:25" +ik[4099] = 30.616 +il[4099] = 167 +im[4099] = 0.0633 +ij[4099] = 8 +id[4100] = "2300-02-16T08:57:39" +ik[4100] = -1.63 +il[4100] = 93 +im[4100] = 0.0813 +ij[4100] = 2 +id[4101] = "2300-02-17T15:13:06" +ik[4101] = 37.064 +il[4101] = 11 +im[4101] = 0.1019 +ij[4101] = 3 +id[4102] = "2300-03-13T00:53:48" +ik[4102] = 5.373 +il[4102] = 88 +im[4102] = 0.0009 +ij[4102] = 27.4 +id[4103] = "2300-04-15T20:47:21" +ik[4103] = 5.516 +il[4103] = 111 +im[4103] = 0.1979 +ij[4103] = 27.1 +id[4104] = "2300-04-21T17:38:27" +ik[4104] = 0 +il[4104] = -146 +im[4104] = 0.0839 +ij[4104] = 13 +id[4105] = "2300-05-25T19:55:26" +ik[4105] = 0.99 +il[4105] = 124 +im[4105] = 0.2778 +ij[4105] = 11 +id[4106] = "2300-06-30T05:07:21" +ik[4106] = 3.196 +il[4106] = 129 +im[4106] = 0.0465 +ij[4106] = 28.2 +id[4107] = "2300-07-02T20:46:12" +ik[4107] = 72.13 +il[4107] = -80 +im[4107] = 0.1752 +ij[4107] = 7.1362 +id[4108] = "2300-08-10T01:03:24" +ik[4108] = 1.344 +il[4108] = -132 +im[4108] = 0.0202 +ij[4108] = 27.4 +id[4109] = "2300-08-23T17:41:00" +ik[4109] = 124 +il[4109] = 113 +im[4109] = 0.0232 +ij[4109] = 14 +id[4110] = "2300-09-04T18:05:13" +ik[4110] = -2.242 +il[4110] = -135 +im[4110] = 0.0987 +ij[4110] = 4 +id[4111] = "2300-09-21T05:32:03" +ik[4111] = 46.032 +il[4111] = -145 +im[4111] = 0.0239 +ij[4111] = 1 +id[4112] = "2300-09-30T05:18:32" +ik[4112] = 0 +il[4112] = -53 +im[4112] = 0.1335 +ij[4112] = 17 +id[4113] = "2300-11-25T08:58:10" +ik[4113] = 0.269 +il[4113] = 85 +im[4113] = 0.0993 +ij[4113] = 27.3 +id[4114] = "2300-12-09T18:38:05" +ik[4114] = 0.348 +il[4114] = 81 +im[4114] = 0.1044 +ij[4114] = 28.6 +id[4115] = "2300-12-25T05:16:16" +ik[4115] = 0.571 +il[4115] = 73 +im[4115] = 0.0875 +ij[4115] = 27.5 +id[4116] = "2301-01-14T09:51:43" +ik[4116] = 0.09 +il[4116] = -160 +im[4116] = 0.0308 +ij[4116] = 28.7 +id[4117] = "2301-01-16T22:12:51" +ik[4117] = 34.791 +il[4117] = 39 +im[4117] = 0.0161 +ij[4117] = 9 +id[4118] = "2301-01-27T19:21:06" +ik[4118] = -26.208 +il[4118] = -173 +im[4118] = 0.0302 +ij[4118] = 15 +id[4119] = "2301-02-05T14:41:15" +ik[4119] = 0.769 +il[4119] = -18 +im[4119] = 0.0831 +ij[4119] = 28.5 +id[4120] = "2301-03-07T09:34:10" +ik[4120] = 2.009 +il[4120] = -16 +im[4120] = 0.0752 +ij[4120] = 27.6 +id[4121] = "2301-04-26T09:40:46" +ik[4121] = 0.21 +il[4121] = 106 +im[4121] = 0.0018 +ij[4121] = 28.2 +id[4122] = "2301-05-02T05:43:41" +ik[4122] = 2.144 +il[4122] = -146 +im[4122] = 0.0583 +ij[4122] = 28.8 +id[4123] = "2301-05-11T07:35:58" +ik[4123] = 3.89 +il[4123] = -79 +im[4123] = 0.001 +ij[4123] = 27.2 +id[4124] = "2301-06-02T01:23:48" +ik[4124] = 12 +il[4124] = -143 +im[4124] = 0.0593 +ij[4124] = 18 +id[4125] = "2301-07-31T02:51:26" +ik[4125] = 1.1 +il[4125] = 43 +im[4125] = 0.0521 +ij[4125] = 12 +id[4126] = "2301-10-17T05:10:29" +ik[4126] = 25.564 +il[4126] = -113 +im[4126] = 0.008 +ij[4126] = 16 +id[4127] = "2301-11-29T03:41:29" +ik[4127] = 0.21 +il[4127] = -38 +im[4127] = 0.0179 +ij[4127] = 28.2 +id[4128] = "2302-01-11T11:39:31" +ik[4128] = 31.109 +il[4128] = -103 +im[4128] = 0.0098 +ij[4128] = 8 +id[4129] = "2302-02-01T01:09:54" +ik[4129] = 4.836 +il[4129] = -110 +im[4129] = 0.0907 +ij[4129] = 27.4 +id[4130] = "2302-02-17T09:45:40" +ik[4130] = 4.973 +il[4130] = -83 +im[4130] = 0.0745 +ij[4130] = 27.1 +id[4131] = "2302-03-11T02:08:08" +ik[4131] = 23 +il[4131] = -124 +im[4131] = 0.0471 +ij[4131] = 17 +id[4132] = "2302-04-14T18:49:06" +ik[4132] = 40.538 +il[4132] = -46 +im[4132] = 0.1279 +ij[4132] = 3 +id[4133] = "2302-05-05T06:41:41" +ik[4133] = -1.92 +il[4133] = -30 +im[4133] = 0.023 +ij[4133] = 2 +id[4134] = "2302-06-19T03:00:41" +ik[4134] = 3.041 +il[4134] = 90 +im[4134] = 0.2025 +ij[4134] = 27.3 +id[4135] = "2302-06-29T17:41:30" +ik[4135] = 0 +il[4135] = -32 +im[4135] = 0.0291 +ij[4135] = 13 +id[4136] = "2302-07-05T00:15:46" +ik[4136] = 5.986 +il[4136] = -78 +im[4136] = 0.3196 +ij[4136] = 28.1 +id[4137] = "2302-07-29T00:59:27" +ik[4137] = 6.19 +il[4137] = 124 +im[4137] = 0.2253 +ij[4137] = 11 +id[4138] = "2302-08-14T03:32:09" +ik[4138] = 5.034 +il[4138] = 71 +im[4138] = 0.3635 +ij[4138] = 28.1 +id[4139] = "2302-08-31T16:44:06" +ik[4139] = 62.96 +il[4139] = 46 +im[4139] = 0.2443 +ij[4139] = 7.0983 +id[4140] = "2302-10-12T09:26:50" +ik[4140] = 104.66 +il[4140] = -155 +im[4140] = 0.2033 +ij[4140] = 14 +id[4141] = "2302-10-14T05:08:14" +ik[4141] = 2.011 +il[4141] = -72 +im[4141] = 0.1396 +ij[4141] = 27.3 +id[4142] = "2302-10-22T10:16:48" +ik[4142] = -2.335 +il[4142] = -69 +im[4142] = 0.1906 +ij[4142] = 4 +id[4143] = "2302-11-18T04:01:03" +ik[4143] = 44.577 +il[4143] = -73 +im[4143] = 0.1212 +ij[4143] = 1 +id[4144] = "2302-11-22T19:24:50" +ik[4144] = 1.065 +il[4144] = 101 +im[4144] = 0.1469 +ij[4144] = 27.5 +id[4145] = "2302-12-16T03:00:45" +ik[4145] = 0.939 +il[4145] = -147 +im[4145] = 0.0857 +ij[4145] = 28.6 +id[4146] = "2302-12-30T20:46:20" +ik[4146] = 0.353 +il[4146] = 88 +im[4146] = 0.0769 +ij[4146] = 28.7 +id[4147] = "2303-01-02T16:10:56" +ik[4147] = -26.322 +il[4147] = -179 +im[4147] = 0.1121 +ij[4147] = 15 +id[4148] = "2303-02-11T10:48:10" +ik[4148] = 1.671 +il[4148] = -76 +im[4148] = 0.0615 +ij[4148] = 27.6 +id[4149] = "2303-03-12T10:39:58" +ik[4149] = 32.91 +il[4149] = -160 +im[4149] = 0.0573 +ij[4149] = 9 +id[4150] = "2303-04-08T21:09:58" +ik[4150] = 1.402 +il[4150] = -58 +im[4150] = 0.034 +ij[4150] = 28.5 +id[4151] = "2303-04-18T12:25:17" +ik[4151] = 2.442 +il[4151] = 164 +im[4151] = 0.0485 +ij[4151] = 28.8 +id[4152] = "2303-04-20T19:15:49" +ik[4152] = 3.585 +il[4152] = 83 +im[4152] = 0.0192 +ij[4152] = 27.2 +id[4153] = "2303-04-21T15:05:14" +ik[4153] = 1.667 +il[4153] = 153 +im[4153] = 0.008 +ij[4153] = 28.2 +id[4154] = "2303-05-14T02:02:11" +ik[4154] = 12 +il[4154] = -157 +im[4154] = 0.0663 +ij[4154] = 18 +id[4155] = "2303-06-12T10:17:35" +ik[4155] = 2.524 +il[4155] = 4 +im[4155] = 0.0599 +ij[4155] = 28.1 +id[4156] = "2303-09-06T16:52:20" +ik[4156] = 1.07 +il[4156] = 13 +im[4156] = 0.0542 +ij[4156] = 12 +id[4157] = "2303-09-29T15:27:24" +ik[4157] = 25.725 +il[4157] = 104 +im[4157] = 0.0352 +ij[4157] = 16 +id[4158] = "2303-11-07T05:01:14" +ik[4158] = 1.875 +il[4158] = -90 +im[4158] = 0.0209 +ij[4158] = 28.1 +id[4159] = "2303-11-24T12:10:49" +ik[4159] = 1.426 +il[4159] = -32 +im[4159] = 0.0185 +ij[4159] = 28.2 +id[4160] = "2304-01-08T19:24:25" +ik[4160] = 4.482 +il[4160] = -59 +im[4160] = 0.0514 +ij[4160] = 27.4 +id[4161] = "2304-01-23T13:42:39" +ik[4161] = 5.305 +il[4161] = 167 +im[4161] = 0.0507 +ij[4161] = 27.1 +id[4162] = "2304-02-12T05:14:45" +ik[4162] = 0 +il[4162] = 119 +im[4162] = 0.073 +ij[4162] = 17 +id[4163] = "2304-02-20T01:58:11" +ik[4163] = 32.678 +il[4163] = -117 +im[4163] = 0.0376 +ij[4163] = 8 +id[4164] = "2304-04-16T16:19:48" +ik[4164] = 0.071 +il[4164] = -157 +im[4164] = 0.0239 +ij[4164] = 27.3 +id[4165] = "2304-05-19T09:34:25" +ik[4165] = 1.513 +il[4165] = -105 +im[4165] = 0.1133 +ij[4165] = 27.5 +id[4166] = "2304-06-22T06:26:21" +ik[4166] = 0.542 +il[4166] = -94 +im[4166] = 0.1044 +ij[4166] = 28.6 +id[4167] = "2304-06-24T22:39:04" +ik[4167] = 46.389 +il[4167] = 48 +im[4167] = 0.0211 +ij[4167] = 3 +id[4168] = "2304-06-28T03:14:54" +ik[4168] = 2.168 +il[4168] = 10 +im[4168] = 0.0934 +ij[4168] = 28.7 +id[4169] = "2304-07-25T11:27:02" +ik[4169] = -2.384 +il[4169] = 151 +im[4169] = 0.0641 +ij[4169] = 2 +id[4170] = "2304-08-27T15:31:02" +ik[4170] = 6.362 +il[4170] = 53 +im[4170] = 0.2809 +ij[4170] = 27.6 +id[4171] = "2304-09-09T08:20:17" +ik[4171] = 3.527 +il[4171] = -75 +im[4171] = 0.278 +ij[4171] = 28.2 +id[4172] = "2304-09-12T09:27:21" +ik[4172] = 0 +il[4172] = -62 +im[4172] = 0.3046 +ij[4172] = 13 +id[4173] = "2304-10-01T13:47:04" +ik[4173] = 6.034 +il[4173] = 61 +im[4173] = 0.0486 +ij[4173] = 27.6 +id[4174] = "2304-10-02T09:55:43" +ik[4174] = 5.213 +il[4174] = 127 +im[4174] = 0.0608 +ij[4174] = 28.1 +id[4175] = "2304-10-16T15:02:07" +ik[4175] = 2.87 +il[4175] = 168 +im[4175] = 0.146 +ij[4175] = 11 +id[4176] = "2304-11-15T09:08:00" +ik[4176] = 63.99 +il[4176] = 25 +im[4176] = 0.2546 +ij[4176] = 7.124 +id[4177] = "2304-11-22T14:54:44" +ik[4177] = 5.232 +il[4177] = 8 +im[4177] = 0.1492 +ij[4177] = 28.6 +id[4178] = "2304-12-04T18:27:50" +ik[4178] = -24.606 +il[4178] = 71 +im[4178] = 0.1516 +ij[4178] = 15 +id[4179] = "2304-12-31T19:07:28" +ik[4179] = 1.258 +il[4179] = -42 +im[4179] = 0.1367 +ij[4179] = 27.6 +id[4180] = "2305-01-01T00:29:52" +ik[4180] = 110.63 +il[4180] = -120 +im[4180] = 0.1317 +ij[4180] = 14 +id[4181] = "2305-01-07T16:43:29" +ik[4181] = -1.91 +il[4181] = 60 +im[4181] = 0.0809 +ij[4181] = 4 +id[4182] = "2305-01-25T18:03:01" +ik[4182] = 39.824 +il[4182] = -149 +im[4182] = 0.1248 +ij[4182] = 1 +id[4183] = "2305-03-26T17:01:24" +ik[4183] = 3.115 +il[4183] = 71 +im[4183] = 0.0801 +ij[4183] = 27.2 +id[4184] = "2305-03-31T22:37:54" +ik[4184] = 2.858 +il[4184] = 37 +im[4184] = 0.0071 +ij[4184] = 28.8 +id[4185] = "2305-04-22T05:46:17" +ik[4185] = 12 +il[4185] = 130 +im[4185] = 0.0777 +ij[4185] = 18 +id[4186] = "2305-04-22T12:50:11" +ik[4186] = 31.661 +il[4186] = 27 +im[4186] = 0.0777 +ij[4186] = 9 +id[4187] = "2305-06-27T01:36:39" +ik[4187] = 0.474 +il[4187] = 94 +im[4187] = 0.0077 +ij[4187] = 28.5 +id[4188] = "2305-08-08T16:17:19" +ik[4188] = 0.266 +il[4188] = -69 +im[4188] = 0.0125 +ij[4188] = 28.1 +id[4189] = "2305-09-11T06:09:14" +ik[4189] = 25.858 +il[4189] = 42 +im[4189] = 0.0553 +ij[4189] = 16 +id[4190] = "2305-10-12T07:27:00" +ik[4190] = 0.63 +il[4190] = -24 +im[4190] = 0.0585 +ij[4190] = 12 +id[4191] = "2305-12-18T19:53:56" +ik[4191] = 4.213 +il[4191] = -80 +im[4191] = 0.0375 +ij[4191] = 27.4 +id[4192] = "2306-01-02T00:23:01" +ik[4192] = 5.562 +il[4192] = -15 +im[4192] = 0.0404 +ij[4192] = 27.1 +id[4193] = "2306-01-20T12:35:05" +ik[4193] = 6.353 +il[4193] = -23 +im[4193] = 0.0631 +ij[4193] = 28.1 +id[4194] = "2306-01-21T08:42:25" +ik[4194] = 0 +il[4194] = 43 +im[4194] = 0.0618 +ij[4194] = 17 +id[4195] = "2306-03-22T02:46:33" +ik[4195] = 0.246 +il[4195] = -13 +im[4195] = 0.064 +ij[4195] = 27.3 +id[4196] = "2306-04-15T11:59:31" +ik[4196] = 35.207 +il[4196] = 83 +im[4196] = 0.0793 +ij[4196] = 8 +id[4197] = "2306-04-20T23:09:58" +ik[4197] = 0.924 +il[4197] = -33 +im[4197] = 0.0637 +ij[4197] = 27.5 +id[4198] = "2306-05-20T00:23:38" +ik[4198] = -25.046 +il[4198] = -133 +im[4198] = 0.0729 +ij[4198] = 15 +id[4199] = "2306-06-07T01:18:54" +ik[4199] = 0.985 +il[4199] = 27 +im[4199] = 0.0122 +ij[4199] = 28.7 +id[4200] = "2306-06-22T23:26:17" +ik[4200] = 0.665 +il[4200] = -150 +im[4200] = 0.0221 +ij[4200] = 28.6 +id[4201] = "2306-07-02T19:35:27" +ik[4201] = 3.908 +il[4201] = 4 +im[4201] = 0.0644 +ij[4201] = 27.6 +id[4202] = "2306-08-14T05:02:58" +ik[4202] = 46.28 +il[4202] = -83 +im[4202] = 0.1189 +ij[4202] = 3 +id[4203] = "2306-09-07T07:19:04" +ik[4203] = -2.215 +il[4203] = 120 +im[4203] = 0.1598 +ij[4203] = 2 +id[4204] = "2306-09-14T14:30:00" +ik[4204] = 5.739 +il[4204] = 84 +im[4204] = 0.0626 +ij[4204] = 27.2 +id[4205] = "2306-09-19T17:19:25" +ik[4205] = 0.423 +il[4205] = 91 +im[4205] = 0.1178 +ij[4205] = 28.8 +id[4206] = "2306-10-19T02:00:43" +ik[4206] = 11 +il[4206] = -111 +im[4206] = 0.1842 +ij[4206] = 18 +id[4207] = "2306-11-04T00:30:22" +ik[4207] = 0 +il[4207] = 67 +im[4207] = 0.2485 +ij[4207] = 13 +id[4208] = "2306-11-06T09:37:57" +ik[4208] = 12 +il[4208] = -47 +im[4208] = 0.2088 +ij[4208] = 17 +id[4209] = "2306-11-27T06:41:33" +ik[4209] = 0.551 +il[4209] = -160 +im[4209] = 0.2118 +ij[4209] = 28.1 +id[4210] = "2306-12-11T23:03:54" +ik[4210] = 2.17 +il[4210] = 80 +im[4210] = 0.2358 +ij[4210] = 11 +id[4211] = "2306-12-26T18:20:25" +ik[4211] = 1.841 +il[4211] = 114 +im[4211] = 0.2631 +ij[4211] = 27.2 +id[4212] = "2306-12-31T07:42:56" +ik[4212] = 6.124 +il[4212] = -40 +im[4212] = 0.1581 +ij[4212] = 28.1 +id[4213] = "2307-01-07T08:52:11" +ik[4213] = 2.996 +il[4213] = 5 +im[4213] = 0.1842 +ij[4213] = 28.2 +id[4214] = "2307-01-16T08:42:00" +ik[4214] = 73.34 +il[4214] = 94 +im[4214] = 0.0186 +ij[4214] = 7.1452 +id[4215] = "2307-02-07T18:26:52" +ik[4215] = 1.89 +il[4215] = 150 +im[4215] = 0.14 +ij[4215] = 27.2 +id[4216] = "2307-03-03T04:28:05" +ik[4216] = 3.747 +il[4216] = -140 +im[4216] = 0.0915 +ij[4216] = 28.8 +id[4217] = "2307-03-11T05:43:04" +ik[4217] = -1.636 +il[4217] = -82 +im[4217] = 0.0361 +ij[4217] = 4 +id[4218] = "2307-03-17T07:47:48" +ik[4218] = 133.3 +il[4218] = -56 +im[4218] = 0.1012 +ij[4218] = 14 +id[4219] = "2307-03-18T14:33:56" +ik[4219] = 37.446 +il[4219] = -146 +im[4219] = 0.1146 +ij[4219] = 1 +id[4220] = "2307-03-25T19:13:16" +ik[4220] = 12 +il[4220] = -148 +im[4220] = 0.0492 +ij[4220] = 18 +id[4221] = "2307-05-29T21:15:30" +ik[4221] = 31.287 +il[4221] = 78 +im[4221] = 0.0722 +ij[4221] = 9 +id[4222] = "2307-08-02T01:09:25" +ik[4222] = 5.346 +il[4222] = -87 +im[4222] = 0.0105 +ij[4222] = 28.1 +id[4223] = "2307-08-24T12:45:08" +ik[4223] = 25.98 +il[4223] = -42 +im[4223] = 0.0601 +ij[4223] = 16 +id[4224] = "2307-09-01T04:47:36" +ik[4224] = 0.55 +il[4224] = 149 +im[4224] = 0.0098 +ij[4224] = 28.2 +id[4225] = "2307-11-21T21:27:01" +ik[4225] = 0.12 +il[4225] = -6 +im[4225] = 0.0463 +ij[4225] = 12 +id[4226] = "2308-01-02T05:45:31" +ik[4226] = 0 +il[4226] = 90 +im[4226] = 0.0563 +ij[4226] = 17 +id[4227] = "2308-02-28T19:01:15" +ik[4227] = 0.271 +il[4227] = 78 +im[4227] = 0.0616 +ij[4227] = 27.3 +id[4228] = "2308-03-28T18:41:29" +ik[4228] = 0.721 +il[4228] = 11 +im[4228] = 0.0649 +ij[4228] = 27.5 +id[4229] = "2308-04-11T21:23:22" +ik[4229] = 6.176 +il[4229] = 106 +im[4229] = 0.0746 +ij[4229] = 28.1 +id[4230] = "2308-04-18T01:47:57" +ik[4230] = 1.135 +il[4230] = 100 +im[4230] = 0.0195 +ij[4230] = 28.2 +id[4231] = "2308-04-27T07:45:31" +ik[4231] = -25.45 +il[4231] = 100 +im[4231] = 0.0669 +ij[4231] = 15 +id[4232] = "2308-05-26T07:12:26" +ik[4232] = 0.51 +il[4232] = 30 +im[4232] = 0.0722 +ij[4232] = 28.7 +id[4233] = "2308-05-26T23:58:20" +ik[4233] = 0.387 +il[4233] = 145 +im[4233] = 0.0679 +ij[4233] = 28.2 +id[4234] = "2308-06-07T00:35:32" +ik[4234] = 3.241 +il[4234] = -116 +im[4234] = 0.0753 +ij[4234] = 27.6 +id[4235] = "2308-06-30T09:13:53" +ik[4235] = 1.208 +il[4235] = -17 +im[4235] = 0.0081 +ij[4235] = 28.6 +id[4236] = "2308-07-04T13:33:44" +ik[4236] = 36.026 +il[4236] = -40 +im[4236] = 0.0657 +ij[4236] = 8 +id[4237] = "2308-08-10T09:01:21" +ik[4237] = 5.112 +il[4237] = 29 +im[4237] = 0.0399 +ij[4237] = 27.2 +id[4238] = "2308-08-20T16:12:36" +ik[4238] = 1.009 +il[4238] = 22 +im[4238] = 0.0981 +ij[4238] = 28.8 +id[4239] = "2308-08-29T15:59:54" +ik[4239] = 11 +il[4239] = 113 +im[4239] = 0.0486 +ij[4239] = 18 +id[4240] = "2308-09-30T05:33:56" +ik[4240] = 41.695 +il[4240] = -142 +im[4240] = 0.1023 +ij[4240] = 3 +id[4241] = "2308-10-08T02:32:52" +ik[4241] = -1.913 +il[4241] = -20 +im[4241] = 0.0055 +ij[4241] = 2 +id[4242] = "2308-12-11T07:48:16" +ik[4242] = 0 +il[4242] = 164 +im[4242] = 0.2013 +ij[4242] = 13 +id[4243] = "2309-01-20T08:12:21" +ik[4243] = 4.14 +il[4243] = 168 +im[4243] = 0.2223 +ij[4243] = 11 +id[4244] = "2309-03-01T06:50:52" +ik[4244] = 79.96 +il[4244] = -1 +im[4244] = 0.1831 +ij[4244] = 7.1766 +id[4245] = "2309-04-28T04:57:46" +ik[4245] = -1.556 +il[4245] = -143 +im[4245] = 0.1008 +ij[4245] = 4 +id[4246] = "2309-04-28T14:58:59" +ik[4246] = 37.085 +il[4246] = 70 +im[4246] = 0.0958 +ij[4246] = 1 +id[4247] = "2309-05-07T00:30:40" +ik[4247] = 146.7 +il[4247] = 7 +im[4247] = 0.069 +ij[4247] = 14 +id[4248] = "2309-07-05T12:11:57" +ik[4248] = 31.766 +il[4248] = 43 +im[4248] = 0.0706 +ij[4248] = 9 +id[4249] = "2309-08-04T18:52:59" +ik[4249] = 26.1 +il[4249] = -125 +im[4249] = 0.0636 +ij[4249] = 16 +id[4250] = "2309-08-08T21:18:07" +ik[4250] = 0.704 +il[4250] = -121 +im[4250] = 0.0228 +ij[4250] = 28.2 +id[4251] = "2309-09-19T21:43:24" +ik[4251] = 1.259 +il[4251] = -80 +im[4251] = 0.0435 +ij[4251] = 28.2 +id[4252] = "2309-10-23T00:00:50" +ik[4252] = 1.541 +il[4252] = -152 +im[4252] = 0.0152 +ij[4252] = 28.1 +id[4253] = "2309-12-13T14:53:18" +ik[4253] = 0 +il[4253] = 139 +im[4253] = 0.0554 +ij[4253] = 17 +id[4254] = "2310-01-12T04:37:14" +ik[4254] = 0.93 +il[4254] = -135 +im[4254] = 0.0513 +ij[4254] = 12 +id[4255] = "2310-04-07T08:31:19" +ik[4255] = -25.684 +il[4255] = 80 +im[4255] = 0.0611 +ij[4255] = 15 +id[4256] = "2310-04-08T03:44:38" +ik[4256] = 1.579 +il[4256] = 169 +im[4256] = 0.0581 +ij[4256] = 28.1 +id[4257] = "2310-05-03T21:30:47" +ik[4257] = 1.525 +il[4257] = 154 +im[4257] = 0.0586 +ij[4257] = 28.2 +id[4258] = "2310-05-16T19:44:23" +ik[4258] = 2.872 +il[4258] = -52 +im[4258] = 0.0552 +ij[4258] = 27.6 +id[4259] = "2310-05-18T08:26:30" +ik[4259] = 0.182 +il[4259] = 132 +im[4259] = 0.0657 +ij[4259] = 28.7 +id[4260] = "2310-07-11T14:47:27" +ik[4260] = 1.343 +il[4260] = -151 +im[4260] = 0.0338 +ij[4260] = 28.6 +id[4261] = "2310-07-18T16:22:00" +ik[4261] = 4.732 +il[4261] = -105 +im[4261] = 0.071 +ij[4261] = 27.2 +id[4262] = "2310-08-04T05:28:13" +ik[4262] = 1.339 +il[4262] = -140 +im[4262] = 0.0417 +ij[4262] = 28.8 +id[4263] = "2310-08-06T22:08:22" +ik[4263] = 12 +il[4263] = -4 +im[4263] = 0.0047 +ij[4263] = 18 +id[4264] = "2310-09-08T10:00:24" +ik[4264] = 33.597 +il[4264] = 135 +im[4264] = 0.0529 +ij[4264] = 8 +id[4265] = "2310-11-08T21:03:06" +ik[4265] = -1.704 +il[4265] = -156 +im[4265] = 0.1032 +ij[4265] = 2 +id[4266] = "2310-11-14T00:43:55" +ik[4266] = 38.067 +il[4266] = -161 +im[4266] = 0.037 +ij[4266] = 3 +id[4267] = "2311-01-14T00:31:07" +ik[4267] = 0 +il[4267] = 72 +im[4267] = 0.1399 +ij[4267] = 13 +id[4268] = "2311-01-23T10:04:09" +ik[4268] = 1.534 +il[4268] = 19 +im[4268] = 0.0491 +ij[4268] = 28.2 +id[4269] = "2311-02-24T01:02:08" +ik[4269] = 4.24 +il[4269] = 78 +im[4269] = 0.1735 +ij[4269] = 11 +id[4270] = "2311-03-13T03:40:34" +ik[4270] = 1.454 +il[4270] = -5 +im[4270] = 0.1932 +ij[4270] = 28.1 +id[4271] = "2311-04-07T23:33:43" +ik[4271] = 83.96 +il[4271] = -68 +im[4271] = 0.1684 +ij[4271] = 7.2056 +id[4272] = "2311-06-07T08:48:54" +ik[4272] = 38.326 +il[4272] = 14 +im[4272] = 0.0538 +ij[4272] = 1 +id[4273] = "2311-06-12T02:32:53" +ik[4273] = -1.619 +il[4273] = 154 +im[4273] = 0.0499 +ij[4273] = 4 +id[4274] = "2311-06-13T01:35:28" +ik[4274] = 150.04 +il[4274] = 178 +im[4274] = 0.0668 +ij[4274] = 14 +id[4275] = "2311-07-14T13:17:50" +ik[4275] = 26.208 +il[4275] = -53 +im[4275] = 0.0848 +ij[4275] = 16 +id[4276] = "2311-08-17T11:48:23" +ik[4276] = 33.085 +il[4276] = -61 +im[4276] = 0.0363 +ij[4276] = 9 +id[4277] = "2311-10-21T13:24:11" +ik[4277] = 3.43 +il[4277] = -171 +im[4277] = 0.0664 +ij[4277] = 27.4 +id[4278] = "2311-11-04T10:55:56" +ik[4278] = 6.302 +il[4278] = 2 +im[4278] = 0.0511 +ij[4278] = 27.1 +id[4279] = "2311-11-24T19:43:43" +ik[4279] = 0 +il[4279] = 69 +im[4279] = 0.0556 +ij[4279] = 17 +id[4280] = "2311-12-28T19:21:24" +ik[4280] = 0.657 +il[4280] = 48 +im[4280] = 0.0104 +ij[4280] = 28.1 +id[4281] = "2312-03-18T00:03:14" +ik[4281] = -25.856 +il[4281] = 69 +im[4281] = 0.0616 +ij[4281] = 15 +id[4282] = "2312-03-23T13:23:28" +ik[4282] = 0.81 +il[4282] = -77 +im[4282] = 0.0093 +ij[4282] = 12 +id[4283] = "2312-06-20T23:46:08" +ik[4283] = 1.638 +il[4283] = 80 +im[4283] = 0.03 +ij[4283] = 28.1 +id[4284] = "2312-06-27T12:09:35" +ik[4284] = 4.459 +il[4284] = -42 +im[4284] = 0.0618 +ij[4284] = 27.2 +id[4285] = "2312-07-17T05:51:57" +ik[4285] = 12 +il[4285] = -115 +im[4285] = 0.0067 +ij[4285] = 18 +id[4286] = "2312-07-20T18:16:50" +ik[4286] = 1.538 +il[4286] = 91 +im[4286] = 0.0419 +ij[4286] = 28.8 +id[4287] = "2312-07-23T23:50:06" +ik[4287] = 1.139 +il[4287] = 41 +im[4287] = 0.0647 +ij[4287] = 28.6 +id[4288] = "2312-10-21T14:45:17" +ik[4288] = 31.613 +il[4288] = -35 +im[4288] = 0.0733 +ij[4288] = 8 +id[4289] = "2312-12-13T01:31:34" +ik[4289] = -1.596 +il[4289] = -50 +im[4289] = 0.0927 +ij[4289] = 2 +id[4290] = "2312-12-22T18:06:54" +ik[4290] = 36.347 +il[4290] = 155 +im[4290] = 0.0066 +ij[4290] = 3 +id[4291] = "2313-02-17T01:35:56" +ik[4291] = 0 +il[4291] = -134 +im[4291] = 0.0378 +ij[4291] = 13 +id[4292] = "2313-03-29T13:55:28" +ik[4292] = 3.03 +il[4292] = 48 +im[4292] = 0.0721 +ij[4292] = 11 +id[4293] = "2313-04-30T10:59:49" +ik[4293] = 0.424 +il[4293] = 178 +im[4293] = 0.2112 +ij[4293] = 28.2 +id[4294] = "2313-05-10T00:38:31" +ik[4294] = 81.96 +il[4294] = 66 +im[4294] = 0.085 +ij[4294] = 7.2052 +id[4295] = "2313-06-16T15:47:43" +ik[4295] = 26.057 +il[4295] = -156 +im[4295] = 0.0312 +ij[4295] = 16 +id[4296] = "2313-07-12T10:56:24" +ik[4296] = 145.39 +il[4296] = 167 +im[4296] = 0.0823 +ij[4296] = 14 +id[4297] = "2313-07-18T18:43:55" +ik[4297] = 41.119 +il[4297] = 112 +im[4297] = 0.0644 +ij[4297] = 1 +id[4298] = "2313-07-23T12:33:48" +ik[4298] = -1.811 +il[4298] = -110 +im[4298] = 0.1172 +ij[4298] = 4 +id[4299] = "2313-09-29T02:07:41" +ik[4299] = 2.995 +il[4299] = -14 +im[4299] = 0.0578 +ij[4299] = 27.4 +id[4300] = "2313-10-11T15:07:03" +ik[4300] = 34.933 +il[4300] = -86 +im[4300] = 0.0216 +ij[4300] = 9 +id[4301] = "2313-11-04T00:47:20" +ik[4301] = 0 +il[4301] = -2 +im[4301] = 0.0647 +ij[4301] = 17 +id[4302] = "2313-12-28T18:23:49" +ik[4302] = 0.103 +il[4302] = -88 +im[4302] = 0.0749 +ij[4302] = 27.3 +id[4303] = "2314-01-26T07:52:53" +ik[4303] = 0.521 +il[4303] = -9 +im[4303] = 0.071 +ij[4303] = 27.5 +id[4304] = "2314-02-01T20:45:15" +ik[4304] = 1.088 +il[4304] = -138 +im[4304] = 0.0284 +ij[4304] = 28.2 +id[4305] = "2314-02-26T14:10:08" +ik[4305] = -26.005 +il[4305] = -157 +im[4305] = 0.0656 +ij[4305] = 15 +id[4306] = "2314-03-14T17:27:01" +ik[4306] = 1.412 +il[4306] = -46 +im[4306] = 0.0471 +ij[4306] = 28.1 +id[4307] = "2314-05-28T18:27:28" +ik[4307] = 0.28 +il[4307] = -44 +im[4307] = 0.0243 +ij[4307] = 12 +id[4308] = "2314-06-28T15:08:00" +ik[4308] = 12 +il[4308] = 109 +im[4308] = 0.0064 +ij[4308] = 18 +id[4309] = "2314-08-08T11:50:37" +ik[4309] = 0.668 +il[4309] = -155 +im[4309] = 0.0239 +ij[4309] = 28.6 +id[4310] = "2314-08-17T06:25:44" +ik[4310] = 1.243 +il[4310] = 11 +im[4310] = 0.0585 +ij[4310] = 28.2 +id[4311] = "2314-08-24T14:52:30" +ik[4311] = 3.865 +il[4311] = -45 +im[4311] = 0.0041 +ij[4311] = 28.1 +id[4312] = "2314-10-24T14:42:12" +ik[4312] = 0.717 +il[4312] = -172 +im[4312] = 0.0507 +ij[4312] = 28.2 +id[4313] = "2314-11-13T07:38:35" +ik[4313] = 25.217 +il[4313] = 124 +im[4313] = 0.0636 +ij[4313] = 16 +id[4314] = "2314-11-26T06:20:23" +ik[4314] = 30.698 +il[4314] = -92 +im[4314] = 0.0795 +ij[4314] = 8 +id[4315] = "2315-01-26T05:38:42" +ik[4315] = -1.594 +il[4315] = 146 +im[4315] = 0.0731 +ij[4315] = 2 +id[4316] = "2315-02-01T03:30:57" +ik[4316] = 36.463 +il[4316] = -126 +im[4316] = 0.0619 +ij[4316] = 3 +id[4317] = "2315-04-01T10:56:52" +ik[4317] = 0 +il[4317] = -31 +im[4317] = 0.1892 +ij[4317] = 13 +id[4318] = "2315-05-08T05:43:02" +ik[4318] = 0.27 +il[4318] = 14 +im[4318] = 0.1831 +ij[4318] = 11 +id[4319] = "2315-06-16T12:01:28" +ik[4319] = 76.04 +il[4319] = 94 +im[4319] = 0.0801 +ij[4319] = 7.1601 +id[4320] = "2315-08-11T09:58:18" +ik[4320] = 131.96 +il[4320] = -50 +im[4320] = 0.0536 +ij[4320] = 14 +id[4321] = "2315-08-24T16:55:09" +ik[4321] = -2.114 +il[4321] = -24 +im[4321] = 0.0566 +ij[4321] = 4 +id[4322] = "2315-08-31T14:53:31" +ik[4322] = 2.109 +il[4322] = 74 +im[4322] = 0.143 +ij[4322] = 27.4 +id[4323] = "2315-09-03T13:10:50" +ik[4323] = 44.918 +il[4323] = 128 +im[4323] = 0.1027 +ij[4323] = 1 +id[4324] = "2315-10-12T08:00:26" +ik[4324] = 0 +il[4324] = -134 +im[4324] = 0.1059 +ij[4324] = 17 +id[4325] = "2315-12-06T10:58:26" +ik[4325] = 0.104 +il[4325] = 5 +im[4325] = 0.0699 +ij[4325] = 27.3 +id[4326] = "2315-12-22T10:41:16" +ik[4326] = 35.377 +il[4326] = 166 +im[4326] = 0.0797 +ij[4326] = 9 +id[4327] = "2316-01-04T16:10:32" +ik[4327] = 0.533 +il[4327] = -147 +im[4327] = 0.0686 +ij[4327] = 27.5 +id[4328] = "2316-01-21T15:07:49" +ik[4328] = 0.96 +il[4328] = 34 +im[4328] = 0.0761 +ij[4328] = 28.2 +id[4329] = "2316-02-06T07:36:02" +ik[4329] = -26.152 +il[4329] = -61 +im[4329] = 0.0752 +ij[4329] = 15 +id[4330] = "2316-03-15T18:56:56" +ik[4330] = 2.116 +il[4330] = 139 +im[4330] = 0.034 +ij[4330] = 27.6 +id[4331] = "2316-04-27T14:21:54" +ik[4331] = 0.598 +il[4331] = -102 +im[4331] = 0.0359 +ij[4331] = 28.7 +id[4332] = "2316-06-09T07:15:53" +ik[4332] = 12 +il[4332] = 53 +im[4332] = 0.0171 +ij[4332] = 18 +id[4333] = "2316-07-15T04:11:29" +ik[4333] = 0.98 +il[4333] = 87 +im[4333] = 0.0497 +ij[4333] = 12 +id[4334] = "2316-09-24T15:21:27" +ik[4334] = 0.082 +il[4334] = 90 +im[4334] = 0.0586 +ij[4334] = 28.2 +id[4335] = "2316-10-24T06:58:27" +ik[4335] = 25.487 +il[4335] = 142 +im[4335] = 0.0572 +ij[4335] = 16 +id[4336] = "2316-12-28T21:51:30" +ik[4336] = 30.794 +il[4336] = -170 +im[4336] = 0.054 +ij[4336] = 8 +id[4337] = "2317-02-12T11:56:01" +ik[4337] = 5.019 +il[4337] = 54 +im[4337] = 0.0913 +ij[4337] = 27.4 +id[4338] = "2317-03-02T13:31:22" +ik[4338] = 4.816 +il[4338] = -159 +im[4338] = 0.0974 +ij[4338] = 27.1 +id[4339] = "2317-03-21T08:18:57" +ik[4339] = 38.79 +il[4339] = 98 +im[4339] = 0.0214 +ij[4339] = 3 +id[4340] = "2317-03-28T00:37:02" +ik[4340] = 23 +il[4340] = -84 +im[4340] = 0.1465 +ij[4340] = 17 +id[4341] = "2317-04-01T01:19:10" +ik[4341] = -1.761 +il[4341] = -56 +im[4341] = 0.1052 +ij[4341] = 2 +id[4342] = "2317-05-29T12:06:53" +ik[4342] = 0.259 +il[4342] = -25 +im[4342] = 0.0571 +ij[4342] = 28.2 +id[4343] = "2317-05-30T09:58:47" +ik[4343] = 0 +il[4343] = 15 +im[4343] = 0.012 +ij[4343] = 13 +id[4344] = "2317-06-30T11:06:36" +ik[4344] = 4.28 +il[4344] = -85 +im[4344] = 0.2755 +ij[4344] = 11 +id[4345] = "2317-07-06T08:17:43" +ik[4345] = 0 +il[4345] = -159 +im[4345] = 0.2134 +ij[4345] = 18 +id[4346] = "2317-07-16T07:56:50" +ik[4346] = 4.497 +il[4346] = -67 +im[4346] = 0.3506 +ij[4346] = 28.1 +id[4347] = "2317-08-05T09:01:23" +ik[4347] = 66.96 +il[4347] = 113 +im[4347] = 0.0365 +ij[4347] = 7.1052 +id[4348] = "2317-08-30T18:59:14" +ik[4348] = 0 +il[4348] = -147 +im[4348] = 0.1085 +ij[4348] = 17 +id[4349] = "2317-09-19T05:07:10" +ik[4349] = 111.8 +il[4349] = -107 +im[4349] = 0.1144 +ij[4349] = 14 +id[4350] = "2317-09-29T10:32:57" +ik[4350] = -2.371 +il[4350] = -88 +im[4350] = 0.0209 +ij[4350] = 4 +id[4351] = "2317-10-23T13:13:52" +ik[4351] = 46.02 +il[4351] = 109 +im[4351] = 0.1402 +ij[4351] = 1 +id[4352] = "2317-11-05T13:01:07" +ik[4352] = 0.821 +il[4352] = -120 +im[4352] = 0.1582 +ij[4352] = 27.3 +id[4353] = "2317-12-08T00:03:06" +ik[4353] = 0.73 +il[4353] = 31 +im[4353] = 0.0897 +ij[4353] = 27.5 +id[4354] = "2318-01-13T09:42:52" +ik[4354] = -26.295 +il[4354] = -122 +im[4354] = 0.0734 +ij[4354] = 15 +id[4355] = "2318-02-21T05:47:29" +ik[4355] = 33.617 +il[4355] = -52 +im[4355] = 0.0075 +ij[4355] = 9 +id[4356] = "2318-02-21T12:01:48" +ik[4356] = 1.815 +il[4356] = -143 +im[4356] = 0.0097 +ij[4356] = 27.6 +id[4357] = "2318-04-21T03:13:34" +ik[4357] = 0.862 +il[4357] = -176 +im[4357] = 0.0139 +ij[4357] = 28.7 +id[4358] = "2318-04-29T02:05:06" +ik[4358] = 3.716 +il[4358] = -76 +im[4358] = 0.0608 +ij[4358] = 27.2 +id[4359] = "2318-05-12T10:35:15" +ik[4359] = 6.183 +il[4359] = -75 +im[4359] = 0.0622 +ij[4359] = 28.1 +id[4360] = "2318-05-21T15:56:13" +ik[4360] = 12 +il[4360] = -68 +im[4360] = 0.0315 +ij[4360] = 18 +id[4361] = "2318-06-14T08:53:27" +ik[4361] = 1.862 +il[4361] = -99 +im[4361] = 0.0291 +ij[4361] = 28.8 +id[4362] = "2318-08-23T11:13:42" +ik[4362] = 1.13 +il[4362] = 179 +im[4362] = 0.0403 +ij[4362] = 12 +id[4363] = "2318-10-06T11:45:17" +ik[4363] = 25.668 +il[4363] = 79 +im[4363] = 0.039 +ij[4363] = 16 +id[4364] = "2319-01-17T07:32:31" +ik[4364] = 4.604 +il[4364] = 56 +im[4364] = 0.0056 +ij[4364] = 27.4 +id[4365] = "2319-02-01T11:40:18" +ik[4365] = 5.19 +il[4365] = 138 +im[4365] = 0.0066 +ij[4365] = 27.1 +id[4366] = "2319-02-03T13:30:09" +ik[4366] = 31.928 +il[4366] = 131 +im[4366] = 0.0301 +ij[4366] = 8 +id[4367] = "2319-02-21T12:44:33" +ik[4367] = 23 +il[4367] = -48 +im[4367] = 0.083 +ij[4367] = 17 +id[4368] = "2319-05-01T04:42:41" +ik[4368] = 0.162 +il[4368] = 2 +im[4368] = 0.0754 +ij[4368] = 27.3 +id[4369] = "2319-05-29T16:56:55" +ik[4369] = 44.211 +il[4369] = 89 +im[4369] = 0.0955 +ij[4369] = 3 +id[4370] = "2319-06-07T04:14:42" +ik[4370] = 2.246 +il[4370] = 0 +im[4370] = 0.1284 +ij[4370] = 27.5 +id[4371] = "2319-06-29T03:05:52" +ik[4371] = -2.258 +il[4371] = -133 +im[4371] = 0.1935 +ij[4371] = 2 +id[4372] = "2319-08-16T05:07:41" +ik[4372] = 0 +il[4372] = -60 +im[4372] = 0.2251 +ij[4372] = 13 +id[4373] = "2319-09-17T22:15:03" +ik[4373] = 5.54 +il[4373] = -20 +im[4373] = 0.2312 +ij[4373] = 11 +id[4374] = "2319-10-01T02:05:34" +ik[4374] = 2.421 +il[4374] = -105 +im[4374] = 0.1515 +ij[4374] = 28.1 +id[4375] = "2319-10-17T04:10:16" +ik[4375] = 61.96 +il[4375] = 21 +im[4375] = 0.2982 +ij[4375] = 7.1128 +id[4376] = "2319-10-17T23:31:41" +ik[4376] = 1.759 +il[4376] = 98 +im[4376] = 0.3172 +ij[4376] = 28.2 +id[4377] = "2319-11-29T03:11:56" +ik[4377] = 104.92 +il[4377] = 91 +im[4377] = 0.1893 +ij[4377] = 14 +id[4378] = "2319-12-09T02:32:59" +ik[4378] = -2.084 +il[4378] = -163 +im[4378] = 0.0885 +ij[4378] = 4 +id[4379] = "2319-12-12T13:45:39" +ik[4379] = -26.097 +il[4379] = 62 +im[4379] = 0.1732 +ij[4379] = 15 +id[4380] = "2320-01-01T09:36:51" +ik[4380] = 41.482 +il[4380] = -47 +im[4380] = 0.0868 +ij[4380] = 1 +id[4381] = "2320-01-22T20:26:47" +ik[4381] = 1.392 +il[4381] = -5 +im[4381] = 0.0801 +ij[4381] = 27.6 +id[4382] = "2320-04-05T21:37:40" +ik[4382] = 3.332 +il[4382] = -44 +im[4382] = 0.0815 +ij[4382] = 27.2 +id[4383] = "2320-04-07T01:39:03" +ik[4383] = 32.046 +il[4383] = -93 +im[4383] = 0.0823 +ij[4383] = 9 +id[4384] = "2320-04-12T05:23:12" +ik[4384] = 1.171 +il[4384] = -101 +im[4384] = 0.0361 +ij[4384] = 28.7 +id[4385] = "2320-04-30T18:51:34" +ik[4385] = 12 +il[4385] = -128 +im[4385] = 0.0422 +ij[4385] = 18 +id[4386] = "2320-06-01T03:11:08" +ik[4386] = 1.959 +il[4386] = 42 +im[4386] = 0.0597 +ij[4386] = 28.8 +id[4387] = "2320-07-02T06:42:09" +ik[4387] = 0.651 +il[4387] = -65 +im[4387] = 0.0608 +ij[4387] = 28.2 +id[4388] = "2320-07-14T19:14:01" +ik[4388] = 0.227 +il[4388] = -134 +im[4388] = 0.0554 +ij[4388] = 28.1 +id[4389] = "2320-09-18T02:07:04" +ik[4389] = 25.81 +il[4389] = 36 +im[4389] = 0.0089 +ij[4389] = 16 +id[4390] = "2320-09-27T21:51:03" +ik[4390] = 0.84 +il[4390] = -168 +im[4390] = 0.0516 +ij[4390] = 12 +id[4391] = "2320-12-17T03:35:07" +ik[4391] = 0.504 +il[4391] = 4 +im[4391] = 0.0338 +ij[4391] = 28.5 +id[4392] = "2320-12-20T07:51:51" +ik[4392] = 4.976 +il[4392] = -30 +im[4392] = 0.058 +ij[4392] = 28.1 +id[4393] = "2320-12-26T11:15:01" +ik[4393] = 4.312 +il[4393] = -23 +im[4393] = 0.0236 +ij[4393] = 27.4 +id[4394] = "2321-01-09T19:48:27" +ik[4394] = 5.468 +il[4394] = -4 +im[4394] = 0.0341 +ij[4394] = 27.1 +id[4395] = "2321-01-24T10:17:35" +ik[4395] = 1.398 +il[4395] = -93 +im[4395] = 0.0223 +ij[4395] = 28.2 +id[4396] = "2321-01-29T05:20:06" +ik[4396] = 0 +il[4396] = 36 +im[4396] = 0.0459 +ij[4396] = 17 +id[4397] = "2321-03-21T22:33:43" +ik[4397] = 34.159 +il[4397] = -93 +im[4397] = 0.0448 +ij[4397] = 8 +id[4398] = "2321-03-31T07:29:21" +ik[4398] = 0.209 +il[4398] = -138 +im[4398] = 0.0882 +ij[4398] = 27.3 +id[4399] = "2321-04-30T19:47:16" +ik[4399] = 1.07 +il[4399] = -33 +im[4399] = 0.1023 +ij[4399] = 27.5 +id[4400] = "2321-05-29T14:55:25" +ik[4400] = -24.769 +il[4400] = -44 +im[4400] = 0.115 +ij[4400] = 15 +id[4401] = "2321-07-15T11:57:22" +ik[4401] = 4.402 +il[4401] = 94 +im[4401] = 0.0881 +ij[4401] = 27.6 +id[4402] = "2321-07-27T10:18:46" +ik[4402] = 47.293 +il[4402] = -125 +im[4402] = 0.1424 +ij[4402] = 3 +id[4403] = "2321-08-24T01:43:13" +ik[4403] = -2.329 +il[4403] = -85 +im[4403] = 0.1731 +ij[4403] = 2 +id[4404] = "2321-10-17T03:12:27" +ik[4404] = 0 +il[4404] = 63 +im[4404] = 0.2427 +ij[4404] = 13 +id[4405] = "2321-11-05T11:05:19" +ik[4405] = 2.042 +il[4405] = 134 +im[4405] = 0.1538 +ij[4405] = 28.1 +id[4406] = "2321-11-22T18:35:30" +ik[4406] = 0.57 +il[4406] = 168 +im[4406] = 0.1416 +ij[4406] = 11 +id[4407] = "2321-12-07T18:44:48" +ik[4407] = 2.521 +il[4407] = 149 +im[4407] = 0.193 +ij[4407] = 28.1 +id[4408] = "2321-12-27T02:15:02" +ik[4408] = 70.96 +il[4408] = -146 +im[4408] = 0.184 +ij[4408] = 7.1358 +id[4409] = "2322-02-17T05:29:54" +ik[4409] = -1.715 +il[4409] = -69 +im[4409] = 0.1316 +ij[4409] = 4 +id[4410] = "2322-02-18T22:02:50" +ik[4410] = 124.78 +il[4410] = 59 +im[4410] = 0.1299 +ij[4410] = 14 +id[4411] = "2322-02-28T03:58:53" +ik[4411] = 38.094 +il[4411] = 57 +im[4411] = 0.0644 +ij[4411] = 1 +id[4412] = "2322-03-06T02:52:41" +ik[4412] = 2.589 +il[4412] = 130 +im[4412] = 0.1046 +ij[4412] = 27.2 +id[4413] = "2322-03-31T05:20:03" +ik[4413] = 1.628 +il[4413] = -31 +im[4413] = 0.0843 +ij[4413] = 28.7 +id[4414] = "2322-04-07T02:23:11" +ik[4414] = 12 +il[4414] = 78 +im[4414] = 0.0308 +ij[4414] = 18 +id[4415] = "2322-05-15T14:11:02" +ik[4415] = 31.331 +il[4415] = -95 +im[4415] = 0.0775 +ij[4415] = 9 +id[4416] = "2322-05-18T01:20:45" +ik[4416] = 2.106 +il[4416] = 121 +im[4416] = 0.0592 +ij[4416] = 28.8 +id[4417] = "2322-06-24T04:23:27" +ik[4417] = 1.211 +il[4417] = 67 +im[4417] = 0.0515 +ij[4417] = 28.2 +id[4418] = "2322-08-31T13:24:58" +ik[4418] = 25.935 +il[4418] = -122 +im[4418] = 0.0234 +ij[4418] = 16 +id[4419] = "2322-11-05T05:51:03" +ik[4419] = 0.19 +il[4419] = -88 +im[4419] = 0.0526 +ij[4419] = 12 +id[4420] = "2323-01-09T15:43:28" +ik[4420] = 0 +il[4420] = -133 +im[4420] = 0.0381 +ij[4420] = 17 +id[4421] = "2323-02-03T20:54:56" +ik[4421] = 1.813 +il[4421] = 29 +im[4421] = 0.0127 +ij[4421] = 28.2 +id[4422] = "2323-02-28T06:51:45" +ik[4422] = 0.17 +il[4422] = 122 +im[4422] = 0.0626 +ij[4422] = 28.5 +id[4423] = "2323-03-08T22:07:58" +ik[4423] = 0.269 +il[4423] = -25 +im[4423] = 0.0487 +ij[4423] = 27.3 +id[4424] = "2323-03-10T12:48:18" +ik[4424] = 6.347 +il[4424] = 130 +im[4424] = 0.0638 +ij[4424] = 28.1 +id[4425] = "2323-04-07T03:43:53" +ik[4425] = 0.782 +il[4425] = 170 +im[4425] = 0.0558 +ij[4425] = 27.5 +id[4426] = "2323-05-06T12:39:25" +ik[4426] = -25.324 +il[4426] = -41 +im[4426] = 0.0649 +ij[4426] = 15 +id[4427] = "2323-06-02T12:19:56" +ik[4427] = 36.264 +il[4427] = -134 +im[4427] = 0.0417 +ij[4427] = 8 +id[4428] = "2323-06-17T00:55:10" +ik[4428] = 3.444 +il[4428] = 179 +im[4428] = 0.0261 +ij[4428] = 27.6 +id[4429] = "2323-08-22T00:12:19" +ik[4429] = 5.318 +il[4429] = 117 +im[4429] = 0.0806 +ij[4429] = 27.2 +id[4430] = "2323-09-11T00:00:46" +ik[4430] = 11 +il[4430] = -45 +im[4430] = 0.0318 +ij[4430] = 18 +id[4431] = "2323-09-12T05:12:46" +ik[4431] = 43.549 +il[4431] = -111 +im[4431] = 0.062 +ij[4431] = 3 +id[4432] = "2323-09-12T13:31:38" +ik[4432] = 0.482 +il[4432] = 128 +im[4432] = 0.0701 +ij[4432] = 28.7 +id[4433] = "2323-09-27T01:19:15" +ik[4433] = -2.024 +il[4433] = 93 +im[4433] = 0.0877 +ij[4433] = 2 +id[4434] = "2323-11-13T16:10:14" +ik[4434] = 2.148 +il[4434] = -26 +im[4434] = 0.17 +ij[4434] = 28.8 +id[4435] = "2323-11-28T22:03:19" +ik[4435] = 0 +il[4435] = 33 +im[4435] = 0.1633 +ij[4435] = 13 +id[4436] = "2323-12-02T14:33:23" +ik[4436] = 0.122 +il[4436] = -179 +im[4436] = 0.0052 +ij[4436] = 28.2 +id[4437] = "2324-01-06T17:11:03" +ik[4437] = 3.66 +il[4437] = 102 +im[4437] = 0.2185 +ij[4437] = 11 +id[4438] = "2324-02-14T01:09:56" +ik[4438] = 77.13 +il[4438] = 148 +im[4438] = 0.1908 +ij[4438] = 7.1635 +id[4439] = "2324-02-20T17:31:55" +ik[4439] = 3.533 +il[4439] = -34 +im[4439] = 0.0425 +ij[4439] = 28.7 +id[4440] = "2324-04-10T00:07:15" +ik[4440] = -1.568 +il[4440] = -27 +im[4440] = 0.1143 +ij[4440] = 4 +id[4441] = "2324-04-12T21:07:46" +ik[4441] = 37.025 +il[4441] = 45 +im[4441] = 0.0968 +ij[4441] = 1 +id[4442] = "2324-04-19T05:58:46" +ik[4442] = 142.33 +il[4442] = -28 +im[4442] = 0.0396 +ij[4442] = 14 +id[4443] = "2324-04-27T09:49:40" +ik[4443] = 2.461 +il[4443] = -8 +im[4443] = 0.0729 +ij[4443] = 28.8 +id[4444] = "2324-06-20T13:30:36" +ik[4444] = 31.484 +il[4444] = 94 +im[4444] = 0.0758 +ij[4444] = 9 +id[4445] = "2324-08-12T07:22:49" +ik[4445] = 26.055 +il[4445] = -26 +im[4445] = 0.0443 +ij[4445] = 16 +id[4446] = "2324-09-16T00:34:03" +ik[4446] = 2.454 +il[4446] = 53 +im[4446] = 0.059 +ij[4446] = 28.1 +id[4447] = "2324-12-20T17:02:10" +ik[4447] = 0.65 +il[4447] = 39 +im[4447] = 0.0397 +ij[4447] = 12 +id[4448] = "2324-12-20T22:36:27" +ik[4448] = 0 +il[4448] = 121 +im[4448] = 0.042 +ij[4448] = 17 +id[4449] = "2325-03-05T12:32:54" +ik[4449] = 1.037 +il[4449] = -87 +im[4449] = 0.0625 +ij[4449] = 28.1 +id[4450] = "2325-03-16T07:18:24" +ik[4450] = 0.65 +il[4450] = 102 +im[4450] = 0.0285 +ij[4450] = 27.5 +id[4451] = "2325-04-15T02:40:14" +ik[4451] = -25.604 +il[4451] = 105 +im[4451] = 0.041 +ij[4451] = 15 +id[4452] = "2325-04-27T00:34:20" +ik[4452] = 0.312 +il[4452] = -108 +im[4452] = 0.0079 +ij[4452] = 28.5 +id[4453] = "2325-05-24T22:40:05" +ik[4453] = 2.999 +il[4453] = -166 +im[4453] = 0.0151 +ij[4453] = 27.6 +id[4454] = "2325-07-27T02:43:53" +ik[4454] = 4.861 +il[4454] = 33 +im[4454] = 0.0603 +ij[4454] = 27.2 +id[4455] = "2325-08-15T05:54:42" +ik[4455] = 11 +il[4455] = 173 +im[4455] = 0.0788 +ij[4455] = 18 +id[4456] = "2325-08-17T07:17:42" +ik[4456] = 34.616 +il[4456] = 172 +im[4456] = 0.0583 +ij[4456] = 8 +id[4457] = "2325-08-28T18:44:31" +ik[4457] = 0.073 +il[4457] = 112 +im[4457] = 0.0765 +ij[4457] = 28.7 +id[4458] = "2325-10-03T12:27:11" +ik[4458] = 1.27 +il[4458] = -166 +im[4458] = 0.0361 +ij[4458] = 28.8 +id[4459] = "2325-10-27T07:21:56" +ik[4459] = -1.773 +il[4459] = 141 +im[4459] = 0.0646 +ij[4459] = 2 +id[4460] = "2325-10-28T10:31:43" +ik[4460] = 39.259 +il[4460] = 105 +im[4460] = 0.0418 +ij[4460] = 3 +id[4461] = "2325-12-18T13:23:36" +ik[4461] = 20.659 +il[4461] = -164 +im[4461] = 0.1514 +ij[4461] = 16 +id[4462] = "2326-01-01T05:59:14" +ik[4462] = 0 +il[4462] = 80 +im[4462] = 0.1857 +ij[4462] = 13 +id[4463] = "2326-02-10T20:23:57" +ik[4463] = 4.37 +il[4463] = -126 +im[4463] = 0.2119 +ij[4463] = 11 +id[4464] = "2326-03-10T05:36:51" +ik[4464] = 2.471 +il[4464] = 143 +im[4464] = 0.1814 +ij[4464] = 28.2 +id[4465] = "2326-03-24T05:01:50" +ik[4465] = 81.96 +il[4465] = -75 +im[4465] = 0.1787 +ij[4465] = 7.1962 +id[4466] = "2326-05-22T20:07:43" +ik[4466] = 37.655 +il[4466] = -91 +im[4466] = 0.0609 +ij[4466] = 1 +id[4467] = "2326-05-25T18:47:16" +ik[4467] = -1.578 +il[4467] = -43 +im[4467] = 0.0107 +ij[4467] = 4 +id[4468] = "2326-05-30T20:37:37" +ik[4468] = 149.61 +il[4468] = -22 +im[4468] = 0.092 +ij[4468] = 14 +id[4469] = "2326-07-30T17:07:55" +ik[4469] = 32.471 +il[4469] = -101 +im[4469] = 0.0596 +ij[4469] = 9 +id[4470] = "2326-10-29T08:12:16" +ik[4470] = 3.555 +il[4470] = -165 +im[4470] = 0.0041 +ij[4470] = 27.4 +id[4471] = "2326-11-08T03:43:17" +ik[4471] = 0.194 +il[4471] = -2 +im[4471] = 0.0558 +ij[4471] = 28.2 +id[4472] = "2326-11-12T04:25:37" +ik[4472] = 6.185 +il[4472] = 27 +im[4472] = 0.0083 +ij[4472] = 27.1 +id[4473] = "2326-11-26T20:53:55" +ik[4473] = 1.506 +il[4473] = -77 +im[4473] = 0.0094 +ij[4473] = 28.1 +id[4474] = "2326-12-02T06:27:00" +ik[4474] = 0 +il[4474] = -167 +im[4474] = 0.0516 +ij[4474] = 17 +id[4475] = "2326-12-05T14:34:26" +ik[4475] = 1.672 +il[4475] = 103 +im[4475] = 0.0609 +ij[4475] = 28.6 +id[4476] = "2326-12-08T22:55:16" +ik[4476] = 0.166 +il[4476] = 11 +im[4476] = 0.0364 +ij[4476] = 28.1 +id[4477] = "2327-02-23T02:28:24" +ik[4477] = 1.05 +il[4477] = 8 +im[4477] = 0.0063 +ij[4477] = 12 +id[4478] = "2327-03-26T14:21:01" +ik[4478] = -25.793 +il[4478] = -81 +im[4478] = 0.0346 +ij[4478] = 15 +id[4479] = "2327-05-24T14:36:05" +ik[4479] = 1.699 +il[4479] = 146 +im[4479] = 0.0469 +ij[4479] = 28.1 +id[4480] = "2327-06-04T00:42:44" +ik[4480] = 0.001 +il[4480] = 101 +im[4480] = 0.0052 +ij[4480] = 28.2 +id[4481] = "2327-06-26T19:38:58" +ik[4481] = 0.494 +il[4481] = 41 +im[4481] = 0.0601 +ij[4481] = 28.5 +id[4482] = "2327-07-06T06:45:30" +ik[4482] = 4.559 +il[4482] = -33 +im[4482] = 0.0428 +ij[4482] = 27.2 +id[4483] = "2327-07-25T18:57:20" +ik[4483] = 12 +il[4483] = -26 +im[4483] = 0.0622 +ij[4483] = 18 +id[4484] = "2327-08-20T09:58:09" +ik[4484] = 0.161 +il[4484] = -2 +im[4484] = 0.0641 +ij[4484] = 28.7 +id[4485] = "2327-08-27T01:05:14" +ik[4485] = 2.01 +il[4485] = -164 +im[4485] = 0.036 +ij[4485] = 28.2 +id[4486] = "2327-09-16T19:59:57" +ik[4486] = 1.209 +il[4486] = 113 +im[4486] = 0.0587 +ij[4486] = 28.8 +id[4487] = "2327-10-06T22:58:09" +ik[4487] = 32.262 +il[4487] = -96 +im[4487] = 0.0649 +ij[4487] = 8 +id[4488] = "2327-11-29T17:43:17" +ik[4488] = -1.627 +il[4488] = 142 +im[4488] = 0.0935 +ij[4488] = 2 +id[4489] = "2327-12-08T13:54:46" +ik[4489] = 36.801 +il[4489] = -75 +im[4489] = 0.0397 +ij[4489] = 3 +id[4490] = "2328-02-04T20:38:05" +ik[4490] = 0 +il[4490] = 27 +im[4490] = 0.1422 +ij[4490] = 13 +id[4491] = "2328-03-15T21:16:24" +ik[4491] = 3.65 +il[4491] = 21 +im[4491] = 0.1346 +ij[4491] = 11 +id[4492] = "2328-04-03T02:01:42" +ik[4492] = 2.145 +il[4492] = -87 +im[4492] = 0.2067 +ij[4492] = 28.1 +id[4493] = "2328-04-26T19:40:41" +ik[4493] = 81.96 +il[4493] = -134 +im[4493] = 0.1715 +ij[4493] = 7.2108 +id[4494] = "2328-06-27T19:43:38" +ik[4494] = 26.215 +il[4494] = 106 +im[4494] = 0.0753 +ij[4494] = 16 +id[4495] = "2328-07-01T02:08:35" +ik[4495] = 147.23 +il[4495] = 41 +im[4495] = 0.0106 +ij[4495] = 14 +id[4496] = "2328-07-01T17:11:45" +ik[4496] = 39.843 +il[4496] = -179 +im[4496] = 0.0173 +ij[4496] = 1 +id[4497] = "2328-07-07T20:08:11" +ik[4497] = -1.721 +il[4497] = -163 +im[4497] = 0.1021 +ij[4497] = 4 +id[4498] = "2328-09-17T13:24:22" +ik[4498] = 34.214 +il[4498] = -84 +im[4498] = 0.0865 +ij[4498] = 9 +id[4499] = "2328-10-07T21:20:45" +ik[4499] = 3.191 +il[4499] = -5 +im[4499] = 0.0079 +ij[4499] = 27.4 +id[4500] = "2328-10-21T17:49:52" +ik[4500] = 1.369 +il[4500] = -177 +im[4500] = 0.0316 +ij[4500] = 28.2 +id[4501] = "2328-11-11T23:33:30" +ik[4501] = 0 +il[4501] = -55 +im[4501] = 0.0689 +ij[4501] = 17 +id[4502] = "2328-11-22T18:15:08" +ik[4502] = 0.667 +il[4502] = 131 +im[4502] = 0.0207 +ij[4502] = 28.2 +id[4503] = "2328-12-22T13:01:11" +ik[4503] = 0.908 +il[4503] = 142 +im[4503] = 0.0332 +ij[4503] = 28.6 +id[4504] = "2329-01-05T20:39:42" +ik[4504] = 0.15 +il[4504] = 169 +im[4504] = 0.0298 +ij[4504] = 27.3 +id[4505] = "2329-02-03T08:05:28" +ik[4505] = 0.529 +il[4505] = -80 +im[4505] = 0.0198 +ij[4505] = 27.5 +id[4506] = "2329-02-12T22:16:12" +ik[4506] = 0.967 +il[4506] = 159 +im[4506] = 0.0454 +ij[4506] = 28.1 +id[4507] = "2329-03-06T06:05:05" +ik[4507] = -25.949 +il[4507] = -102 +im[4507] = 0.0379 +ij[4507] = 15 +id[4508] = "2329-05-05T09:46:37" +ik[4508] = 0.14 +il[4508] = 75 +im[4508] = 0.0524 +ij[4508] = 12 +id[4509] = "2329-07-05T20:58:47" +ik[4509] = 12 +il[4509] = -47 +im[4509] = 0.051 +ij[4509] = 18 +id[4510] = "2329-07-23T19:07:42" +ik[4510] = 1.609 +il[4510] = 157 +im[4510] = 0.0287 +ij[4510] = 28.2 +id[4511] = "2329-07-27T11:57:49" +ik[4511] = 1.805 +il[4511] = -60 +im[4511] = 0.0207 +ij[4511] = 28.1 +id[4512] = "2329-08-13T01:42:43" +ik[4512] = 0.299 +il[4512] = -106 +im[4512] = 0.0508 +ij[4512] = 28.7 +id[4513] = "2329-09-02T20:27:34" +ik[4513] = 1.155 +il[4513] = 174 +im[4513] = 0.0414 +ij[4513] = 28.8 +id[4514] = "2329-09-11T11:53:38" +ik[4514] = 0.129 +il[4514] = 26 +im[4514] = 0.0574 +ij[4514] = 28.5 +id[4515] = "2329-11-12T22:29:42" +ik[4515] = 30.932 +il[4515] = 111 +im[4515] = 0.0666 +ij[4515] = 8 +id[4516] = "2329-11-21T10:30:32" +ik[4516] = 25.06 +il[4516] = 13 +im[4516] = 0.062 +ij[4516] = 16 +id[4517] = "2330-01-07T08:42:51" +ik[4517] = -1.581 +il[4517] = 133 +im[4517] = 0.099 +ij[4517] = 2 +id[4518] = "2330-01-15T22:21:47" +ik[4518] = 36.191 +il[4518] = 10 +im[4518] = 0.0675 +ij[4518] = 3 +id[4519] = "2330-03-14T02:09:03" +ik[4519] = 0 +il[4519] = 142 +im[4519] = 0.1608 +ij[4519] = 13 +id[4520] = "2330-03-21T22:08:00" +ik[4520] = 1.857 +il[4520] = -83 +im[4520] = 0.0847 +ij[4520] = 28.2 +id[4521] = "2330-04-21T18:24:51" +ik[4521] = 1.57 +il[4521] = -117 +im[4521] = 0.1161 +ij[4521] = 11 +id[4522] = "2330-06-01T01:33:41" +ik[4522] = 78.98 +il[4522] = -47 +im[4522] = 0.1084 +ij[4522] = 7.1821 +id[4523] = "2330-07-30T09:35:36" +ik[4523] = 138.31 +il[4523] = 50 +im[4523] = 0.1356 +ij[4523] = 14 +id[4524] = "2330-08-13T04:55:19" +ik[4524] = -1.986 +il[4524] = -105 +im[4524] = 0.1171 +ij[4524] = 4 +id[4525] = "2330-08-16T01:00:46" +ik[4525] = 43.435 +il[4525] = -19 +im[4525] = 0.119 +ij[4525] = 1 +id[4526] = "2330-09-13T12:01:12" +ik[4526] = 2.557 +il[4526] = 94 +im[4526] = 0.1033 +ij[4526] = 27.4 +id[4527] = "2330-10-21T20:34:09" +ik[4527] = 0 +il[4527] = -18 +im[4527] = 0.0763 +ij[4527] = 17 +id[4528] = "2330-11-23T20:02:35" +ik[4528] = 35.557 +il[4528] = -45 +im[4528] = 0.0909 +ij[4528] = 9 +id[4529] = "2330-12-15T15:03:25" +ik[4529] = 0.002 +il[4529] = -116 +im[4529] = 0.0184 +ij[4529] = 27.3 +id[4530] = "2331-01-06T19:51:45" +ik[4530] = 0.172 +il[4530] = 30 +im[4530] = 0.0717 +ij[4530] = 28.6 +id[4531] = "2331-01-13T11:26:07" +ik[4531] = 0.518 +il[4531] = -138 +im[4531] = 0.0124 +ij[4531] = 27.5 +id[4532] = "2331-02-14T10:39:00" +ik[4532] = -26.096 +il[4532] = -175 +im[4532] = 0.0472 +ij[4532] = 15 +id[4533] = "2331-03-24T21:02:44" +ik[4533] = 2.215 +il[4533] = 40 +im[4533] = 0.0299 +ij[4533] = 27.6 +id[4534] = "2331-06-17T11:58:41" +ik[4534] = 12 +il[4534] = -90 +im[4534] = 0.0448 +ij[4534] = 18 +id[4535] = "2331-06-28T21:10:11" +ik[4535] = 0.78 +il[4535] = -110 +im[4535] = 0.058 +ij[4535] = 12 +id[4536] = "2331-11-01T12:54:23" +ik[4536] = 25.398 +il[4536] = -23 +im[4536] = 0.0429 +ij[4536] = 16 +id[4537] = "2331-12-16T18:37:42" +ik[4537] = 30.636 +il[4537] = -33 +im[4537] = 0.0778 +ij[4537] = 8 +id[4538] = "2331-12-17T07:13:19" +ik[4538] = 0.003 +il[4538] = 143 +im[4538] = 0.0797 +ij[4538] = 28.5 +id[4539] = "2332-02-28T16:41:39" +ik[4539] = 5.241 +il[4539] = -17 +im[4539] = 0.107 +ij[4539] = 27.4 +id[4540] = "2332-02-29T09:18:43" +ik[4540] = 37.557 +il[4540] = 100 +im[4540] = 0.0988 +ij[4540] = 3 +id[4541] = "2332-03-02T17:24:39" +ik[4541] = -1.664 +il[4541] = 1 +im[4541] = 0.0549 +ij[4541] = 2 +id[4542] = "2332-03-22T22:44:12" +ik[4542] = 4.701 +il[4542] = 113 +im[4542] = 0.1076 +ij[4542] = 27.1 +id[4543] = "2332-05-04T09:36:05" +ik[4543] = 0 +il[4543] = -9 +im[4543] = 0.1982 +ij[4543] = 13 +id[4544] = "2332-06-06T15:07:31" +ik[4544] = 2.11 +il[4544] = -153 +im[4544] = 0.2083 +ij[4544] = 11 +id[4545] = "2332-07-09T13:43:08" +ik[4545] = 3.799 +il[4545] = -8 +im[4545] = 0.1873 +ij[4545] = 28.2 +id[4546] = "2332-07-14T08:38:40" +ik[4546] = 70.96 +il[4546] = 115 +im[4546] = 0.2405 +ij[4546] = 7.1234 +id[4547] = "2332-07-14T11:13:06" +ik[4547] = 3.445 +il[4547] = 77 +im[4547] = 0.2378 +ij[4547] = 27.4 +id[4548] = "2332-07-28T01:13:38" +ik[4548] = 5.327 +il[4548] = 0 +im[4548] = 0.2504 +ij[4548] = 28.5 +id[4549] = "2332-09-01T09:05:30" +ik[4549] = 119.98 +il[4549] = -132 +im[4549] = 0.0566 +ij[4549] = 14 +id[4550] = "2332-09-12T14:47:20" +ik[4550] = -2.304 +il[4550] = -107 +im[4550] = 0.046 +ij[4550] = 4 +id[4551] = "2332-09-22T14:53:12" +ik[4551] = 0 +il[4551] = -10 +im[4551] = 0.1615 +ij[4551] = 17 +id[4552] = "2332-10-02T05:05:42" +ik[4552] = 46.33 +il[4552] = -129 +im[4552] = 0.1129 +ij[4552] = 1 +id[4553] = "2332-11-19T04:18:06" +ik[4553] = 0.398 +il[4553] = -5 +im[4553] = 0.1115 +ij[4553] = 27.3 +id[4554] = "2332-12-19T14:47:44" +ik[4554] = 0.601 +il[4554] = 136 +im[4554] = 0.0789 +ij[4554] = 27.5 +id[4555] = "2333-01-18T03:37:24" +ik[4555] = 1.368 +il[4555] = -131 +im[4555] = 0.0596 +ij[4555] = 28.6 +id[4556] = "2333-01-22T22:25:47" +ik[4556] = -26.245 +il[4556] = -7 +im[4556] = 0.0295 +ij[4556] = 15 +id[4557] = "2333-01-30T12:38:08" +ik[4557] = 34.385 +il[4557] = -147 +im[4557] = 0.0839 +ij[4557] = 9 +id[4558] = "2333-03-02T15:56:12" +ik[4558] = 1.942 +il[4558] = 102 +im[4558] = 0.058 +ij[4558] = 27.6 +id[4559] = "2333-04-28T05:48:34" +ik[4559] = 0.416 +il[4559] = 80 +im[4559] = 0.0586 +ij[4559] = 28.2 +id[4560] = "2333-05-07T01:32:03" +ik[4560] = 3.832 +il[4560] = -135 +im[4560] = 0.0448 +ij[4560] = 27.2 +id[4561] = "2333-05-29T01:34:30" +ik[4561] = 12 +il[4561] = 74 +im[4561] = 0.0382 +ij[4561] = 18 +id[4562] = "2333-08-08T19:33:18" +ik[4562] = 1.13 +il[4562] = 130 +im[4562] = 0.0297 +ij[4562] = 12 +id[4563] = "2333-10-13T09:28:12" +ik[4563] = 25.605 +il[4563] = 41 +im[4563] = 0.0516 +ij[4563] = 16 +id[4564] = "2333-10-28T03:52:57" +ik[4564] = 0.8 +il[4564] = -88 +im[4564] = 0.0579 +ij[4564] = 28.2 +id[4565] = "2333-12-18T19:02:23" +ik[4565] = 0.895 +il[4565] = 179 +im[4565] = 0.0057 +ij[4565] = 28.2 +id[4566] = "2334-01-19T14:03:55" +ik[4566] = 31.354 +il[4566] = -163 +im[4566] = 0.0541 +ij[4566] = 8 +id[4567] = "2334-01-26T12:51:35" +ik[4567] = 4.744 +il[4567] = -79 +im[4567] = 0.071 +ij[4567] = 27.4 +id[4568] = "2334-02-11T08:20:43" +ik[4568] = 5.059 +il[4568] = 138 +im[4568] = 0.0436 +ij[4568] = 27.1 +id[4569] = "2334-03-04T04:47:46" +ik[4569] = 23 +il[4569] = 29 +im[4569] = 0.0605 +ij[4569] = 17 +id[4570] = "2334-03-18T15:57:12" +ik[4570] = 0.075 +il[4570] = -2 +im[4570] = 0.089 +ij[4570] = 28.5 +id[4571] = "2334-04-30T06:56:44" +ik[4571] = 41.742 +il[4571] = 177 +im[4571] = 0.0931 +ij[4571] = 3 +id[4572] = "2334-05-21T23:14:45" +ik[4572] = 0.857 +il[4572] = 137 +im[4572] = 0.1384 +ij[4572] = 27.3 +id[4573] = "2334-05-25T16:23:21" +ik[4573] = -2.037 +il[4573] = -85 +im[4573] = 0.0089 +ij[4573] = 2 +id[4574] = "2334-07-17T09:06:01" +ik[4574] = 0 +il[4574] = 166 +im[4574] = 0.2082 +ij[4574] = 13 +id[4575] = "2334-08-16T01:06:38" +ik[4575] = 6.64 +il[4575] = -160 +im[4575] = 0.0421 +ij[4575] = 11 +id[4576] = "2334-08-30T18:22:13" +ik[4576] = 4.417 +il[4576] = -82 +im[4576] = 0.156 +ij[4576] = 28.1 +id[4577] = "2334-09-17T08:08:36" +ik[4577] = 61.96 +il[4577] = -120 +im[4577] = 0.3083 +ij[4577] = 7.1007 +id[4578] = "2334-10-28T05:37:25" +ik[4578] = 102.86 +il[4578] = -41 +im[4578] = 0.2092 +ij[4578] = 14 +id[4579] = "2334-11-07T11:21:08" +ik[4579] = -2.264 +il[4579] = -27 +im[4579] = 0.0161 +ij[4579] = 4 +id[4580] = "2334-11-10T01:20:48" +ik[4580] = 1.555 +il[4580] = 148 +im[4580] = 0.1234 +ij[4580] = 27.5 +id[4581] = "2334-12-04T03:51:41" +ik[4581] = 43.483 +il[4581] = -16 +im[4581] = 0.0501 +ij[4581] = 1 +id[4582] = "2334-12-26T20:38:40" +ik[4582] = -26.318 +il[4582] = -50 +im[4582] = 0.1373 +ij[4582] = 15 +id[4583] = "2335-01-26T12:51:00" +ik[4583] = 2.499 +il[4583] = 0 +im[4583] = 0.0985 +ij[4583] = 28.6 +id[4584] = "2335-02-05T05:59:09" +ik[4584] = 1.574 +il[4584] = -165 +im[4584] = 0.0875 +ij[4584] = 27.6 +id[4585] = "2335-03-22T12:39:01" +ik[4585] = 32.574 +il[4585] = 163 +im[4585] = 0.0766 +ij[4585] = 9 +id[4586] = "2335-04-16T01:15:31" +ik[4586] = 3.503 +il[4586] = -155 +im[4586] = 0.0328 +ij[4586] = 27.2 +id[4587] = "2335-04-18T09:06:08" +ik[4587] = 3.166 +il[4587] = 110 +im[4587] = 0.0576 +ij[4587] = 28.2 +id[4588] = "2335-05-09T19:42:38" +ik[4588] = 12 +il[4588] = 155 +im[4588] = 0.0365 +ij[4588] = 18 +id[4589] = "2335-06-26T08:38:44" +ik[4589] = 1.078 +il[4589] = 58 +im[4589] = 0.0322 +ij[4589] = 28.1 +id[4590] = "2335-09-14T18:51:32" +ik[4590] = 1 +il[4590] = -41 +im[4590] = 0.0351 +ij[4590] = 12 +id[4591] = "2335-09-25T21:45:05" +ik[4591] = 25.758 +il[4591] = -130 +im[4591] = 0.0579 +ij[4591] = 16 +id[4592] = "2335-11-21T08:46:27" +ik[4592] = 2.852 +il[4592] = -112 +im[4592] = 0.0601 +ij[4592] = 28.1 +id[4593] = "2335-11-25T11:34:40" +ik[4593] = 1.529 +il[4593] = -115 +im[4593] = 0.0483 +ij[4593] = 28.2 +id[4594] = "2336-01-04T08:51:07" +ik[4594] = 4.417 +il[4594] = -44 +im[4594] = 0.0643 +ij[4594] = 27.4 +id[4595] = "2336-01-18T23:07:38" +ik[4595] = 5.369 +il[4595] = -122 +im[4595] = 0.0698 +ij[4595] = 27.1 +id[4596] = "2336-02-07T12:00:55" +ik[4596] = 0 +il[4596] = -134 +im[4596] = 0.0267 +ij[4596] = 17 +id[4597] = "2336-03-01T10:11:01" +ik[4597] = 33.166 +il[4597] = 113 +im[4597] = 0.082 +ij[4597] = 8 +id[4598] = "2336-04-10T11:59:30" +ik[4598] = 0.136 +il[4598] = 107 +im[4598] = 0.0606 +ij[4598] = 27.3 +id[4599] = "2336-05-12T03:33:24" +ik[4599] = 1.308 +il[4599] = 174 +im[4599] = 0.1067 +ij[4599] = 27.5 +id[4600] = "2336-05-19T10:46:05" +ik[4600] = 0.56 +il[4600] = 136 +im[4600] = 0.0093 +ij[4600] = 28.5 +id[4601] = "2336-06-09T11:43:29" +ik[4601] = -24.322 +il[4601] = -37 +im[4601] = 0.1209 +ij[4601] = 15 +id[4602] = "2336-07-07T22:05:39" +ik[4602] = 47.112 +il[4602] = 81 +im[4602] = 0.1409 +ij[4602] = 3 +id[4603] = "2336-08-03T03:56:57" +ik[4603] = 5.31 +il[4603] = -112 +im[4603] = 0.1065 +ij[4603] = 27.6 +id[4604] = "2336-08-03T19:46:33" +ik[4604] = 0.768 +il[4604] = 17 +im[4604] = 0.1299 +ij[4604] = 28.6 +id[4605] = "2336-08-06T15:59:23" +ik[4605] = -2.393 +il[4605] = 101 +im[4605] = 0.19 +ij[4605] = 2 +id[4606] = "2336-09-22T03:23:58" +ik[4606] = 3.348 +il[4606] = 26 +im[4606] = 0.2065 +ij[4606] = 28.2 +id[4607] = "2336-09-26T05:37:57" +ik[4607] = 0 +il[4607] = 32 +im[4607] = 0.0584 +ij[4607] = 13 +id[4608] = "2336-10-17T00:56:56" +ik[4608] = 4.108 +il[4608] = -57 +im[4608] = 0.3314 +ij[4608] = 28.1 +id[4609] = "2336-10-31T05:47:32" +ik[4609] = 1.31 +il[4609] = -8 +im[4609] = 0.2583 +ij[4609] = 11 +id[4610] = "2336-12-01T04:40:32" +ik[4610] = 65.96 +il[4610] = 147 +im[4610] = 0.026 +ij[4610] = 7.1282 +id[4611] = "2336-12-03T19:58:23" +ik[4611] = 3.285 +il[4611] = -58 +im[4611] = 0.1568 +ij[4611] = 27.6 +id[4612] = "2337-01-19T11:37:26" +ik[4612] = 115.25 +il[4612] = 146 +im[4612] = 0.1427 +ij[4612] = 14 +id[4613] = "2337-01-23T07:46:03" +ik[4613] = -1.83 +il[4613] = -120 +im[4613] = 0.0716 +ij[4613] = 4 +id[4614] = "2337-01-24T09:59:21" +ik[4614] = 3.536 +il[4614] = -143 +im[4614] = 0.0399 +ij[4614] = 28.6 +id[4615] = "2337-02-07T14:40:42" +ik[4615] = 39.097 +il[4615] = -80 +im[4615] = 0.0653 +ij[4615] = 1 +id[4616] = "2337-03-20T07:07:08" +ik[4616] = 2.961 +il[4616] = 57 +im[4616] = 0.063 +ij[4616] = 27.2 +id[4617] = "2337-04-17T04:04:12" +ik[4617] = 12 +il[4617] = 5 +im[4617] = 0.0636 +ij[4617] = 18 +id[4618] = "2337-05-01T01:39:01" +ik[4618] = 31.506 +il[4618] = 173 +im[4618] = 0.0705 +ij[4618] = 9 +id[4619] = "2337-07-18T17:19:37" +ik[4619] = 0.769 +il[4619] = -37 +im[4619] = 0.0241 +ij[4619] = 28.8 +id[4620] = "2337-07-21T19:16:37" +ik[4620] = 0.324 +il[4620] = -37 +im[4620] = 0.0515 +ij[4620] = 28.7 +id[4621] = "2337-09-07T11:27:58" +ik[4621] = 25.888 +il[4621] = -168 +im[4621] = 0.0483 +ij[4621] = 16 +id[4622] = "2337-10-20T18:52:25" +ik[4622] = 0.48 +il[4622] = 146 +im[4622] = 0.0443 +ij[4622] = 12 +id[4623] = "2337-12-28T19:52:46" +ik[4623] = 5.615 +il[4623] = -89 +im[4623] = 0.0644 +ij[4623] = 27.1 +id[4624] = "2338-01-17T04:21:18" +ik[4624] = 0 +il[4624] = -33 +im[4624] = 0.0271 +ij[4624] = 17 +id[4625] = "2338-02-05T05:51:46" +ik[4625] = 6.362 +il[4625] = 135 +im[4625] = 0.0244 +ij[4625] = 28.1 +id[4626] = "2338-03-17T08:33:08" +ik[4626] = 0.257 +il[4626] = 112 +im[4626] = 0.0145 +ij[4626] = 27.3 +id[4627] = "2338-04-15T22:49:02" +ik[4627] = 0.865 +il[4627] = -177 +im[4627] = 0.0093 +ij[4627] = 27.5 +id[4628] = "2338-05-01T12:27:01" +ik[4628] = 35.723 +il[4628] = 128 +im[4628] = 0.0073 +ij[4628] = 8 +id[4629] = "2338-05-15T03:21:20" +ik[4629] = -25.161 +il[4629] = 35 +im[4629] = 0.0095 +ij[4629] = 15 +id[4630] = "2338-06-26T21:43:10" +ik[4630] = 3.713 +il[4630] = 175 +im[4630] = 0.0201 +ij[4630] = 27.6 +id[4631] = "2338-07-12T03:25:40" +ik[4631] = 0.348 +il[4631] = -122 +im[4631] = 0.0151 +ij[4631] = 28.5 +id[4632] = "2338-07-29T21:37:54" +ik[4632] = 0.661 +il[4632] = 139 +im[4632] = 0.0814 +ij[4632] = 28.6 +id[4633] = "2338-08-24T11:25:43" +ik[4633] = 45.397 +il[4633] = -177 +im[4633] = 0.0136 +ij[4633] = 3 +id[4634] = "2338-09-04T09:04:38" +ik[4634] = 5.578 +il[4634] = -34 +im[4634] = 0.1078 +ij[4634] = 27.2 +id[4635] = "2338-09-14T17:45:11" +ik[4635] = -2.146 +il[4635] = -63 +im[4635] = 0.1372 +ij[4635] = 2 +id[4636] = "2338-09-27T08:37:36" +ik[4636] = 11 +il[4636] = -162 +im[4636] = 0.1582 +ij[4636] = 18 +id[4637] = "2338-11-13T11:37:56" +ik[4637] = 0 +il[4637] = -108 +im[4637] = 0.1392 +ij[4637] = 13 +id[4638] = "2338-12-12T06:01:52" +ik[4638] = 12 +il[4638] = -115 +im[4638] = 0.0663 +ij[4638] = 17 +id[4639] = "2338-12-21T19:30:39" +ik[4639] = 2.85 +il[4639] = 124 +im[4639] = 0.2563 +ij[4639] = 11 +id[4640] = "2339-01-13T23:48:02" +ik[4640] = 3.07 +il[4640] = 105 +im[4640] = 0.212 +ij[4640] = 28.2 +id[4641] = "2339-01-27T12:30:43" +ik[4641] = 75.04 +il[4641] = 31 +im[4641] = 0.1622 +ij[4641] = 7.1512 +id[4642] = "2339-03-16T19:50:12" +ik[4642] = 12 +il[4642] = 16 +im[4642] = 0.0791 +ij[4642] = 18 +id[4643] = "2339-03-22T19:07:51" +ik[4643] = -1.605 +il[4643] = 83 +im[4643] = 0.0676 +ij[4643] = 4 +id[4644] = "2339-03-28T10:42:40" +ik[4644] = 37.219 +il[4644] = -98 +im[4644] = 0.0939 +ij[4644] = 1 +id[4645] = "2339-03-30T12:26:33" +ik[4645] = 137.03 +il[4645] = -104 +im[4645] = 0.0581 +ij[4645] = 14 +id[4646] = "2339-06-07T02:10:07" +ik[4646] = 31.318 +il[4646] = -20 +im[4646] = 0.0758 +ij[4646] = 9 +id[4647] = "2339-07-06T11:52:10" +ik[4647] = 0.644 +il[4647] = 116 +im[4647] = 0.0636 +ij[4647] = 28.8 +id[4648] = "2339-07-15T17:21:15" +ik[4648] = 0.23 +il[4648] = 122 +im[4648] = 0.0514 +ij[4648] = 28.7 +id[4649] = "2339-08-16T20:04:30" +ik[4649] = 4.342 +il[4649] = 31 +im[4649] = 0.059 +ij[4649] = 28.1 +id[4650] = "2339-08-20T14:12:44" +ik[4650] = 26.01 +il[4650] = 155 +im[4650] = 0.0305 +ij[4650] = 16 +id[4651] = "2339-09-02T02:36:26" +ik[4651] = 0.442 +il[4651] = 90 +im[4651] = 0.0536 +ij[4651] = 28.2 +id[4652] = "2339-12-02T01:56:26" +ik[4652] = 0.32 +il[4652] = -74 +im[4652] = 0.0028 +ij[4652] = 12 +id[4653] = "2339-12-29T05:51:32" +ik[4653] = 0 +il[4653] = -51 +im[4653] = 0.0223 +ij[4653] = 17 +id[4654] = "2340-02-24T10:49:44" +ik[4654] = 0.27 +il[4654] = 58 +im[4654] = 0.031 +ij[4654] = 27.3 +id[4655] = "2340-03-24T07:42:40" +ik[4655] = 0.692 +il[4655] = 32 +im[4655] = 0.0327 +ij[4655] = 27.5 +id[4656] = "2340-03-26T13:35:53" +ik[4656] = 1.384 +il[4656] = -35 +im[4656] = 0.0034 +ij[4656] = 28.2 +id[4657] = "2340-04-22T23:14:08" +ik[4657] = -25.511 +il[4657] = 85 +im[4657] = 0.0248 +ij[4657] = 15 +id[4658] = "2340-04-27T23:23:32" +ik[4658] = 6.049 +il[4658] = 132 +im[4658] = 0.0465 +ij[4658] = 28.1 +id[4659] = "2340-06-02T07:17:55" +ik[4659] = 3.146 +il[4659] = -2 +im[4659] = 0.0747 +ij[4659] = 27.6 +id[4660] = "2340-06-06T19:09:16" +ik[4660] = 1.083 +il[4660] = -136 +im[4660] = 0.0216 +ij[4660] = 28.2 +id[4661] = "2340-07-21T17:15:54" +ik[4661] = 35.606 +il[4661] = -26 +im[4661] = 0.0178 +ij[4661] = 8 +id[4662] = "2340-08-05T02:26:42" +ik[4662] = 5.012 +il[4662] = -23 +im[4662] = 0.0125 +ij[4662] = 27.2 +id[4663] = "2340-08-05T15:28:32" +ik[4663] = 1.003 +il[4663] = 147 +im[4663] = 0.0223 +ij[4663] = 28.6 +id[4664] = "2340-08-24T06:24:48" +ik[4664] = 11 +il[4664] = 105 +im[4664] = 0.0851 +ij[4664] = 18 +id[4665] = "2340-09-17T23:18:31" +ik[4665] = 0.089 +il[4665] = 93 +im[4665] = 0.0301 +ij[4665] = 28.5 +id[4666] = "2340-10-10T18:21:36" +ik[4666] = 40.751 +il[4666] = 29 +im[4666] = 0.0934 +ij[4666] = 3 +id[4667] = "2340-10-15T01:36:19" +ik[4667] = -1.859 +il[4667] = -38 +im[4667] = 0.0104 +ij[4667] = 2 +id[4668] = "2340-12-19T12:27:02" +ik[4668] = 0 +il[4668] = 73 +im[4668] = 0.1491 +ij[4668] = 13 +id[4669] = "2341-01-28T08:23:59" +ik[4669] = 4.29 +il[4669] = 137 +im[4669] = 0.2007 +ij[4669] = 11 +id[4670] = "2341-03-09T21:32:59" +ik[4670] = 80.38 +il[4670] = 118 +im[4670] = 0.1527 +ij[4670] = 7.184 +id[4671] = "2341-05-07T11:08:35" +ik[4671] = 37.222 +il[4671] = 111 +im[4671] = 0.0376 +ij[4671] = 1 +id[4672] = "2341-05-08T07:31:52" +ik[4672] = -1.558 +il[4672] = 173 +im[4672] = 0.0175 +ij[4672] = 4 +id[4673] = "2341-05-16T04:40:51" +ik[4673] = 147.68 +il[4673] = -69 +im[4673] = 0.104 +ij[4673] = 14 +id[4674] = "2341-06-01T23:09:20" +ik[4674] = 0.553 +il[4674] = 175 +im[4674] = 0.0756 +ij[4674] = 28.5 +id[4675] = "2341-06-20T10:00:49" +ik[4675] = 0.544 +il[4675] = -170 +im[4675] = 0.0147 +ij[4675] = 28.8 +id[4676] = "2341-07-06T17:10:42" +ik[4676] = 0.096 +il[4676] = -121 +im[4676] = 0.0361 +ij[4676] = 28.7 +id[4677] = "2341-07-14T09:05:41" +ik[4677] = 31.98 +il[4677] = 75 +im[4677] = 0.0716 +ij[4677] = 9 +id[4678] = "2341-07-31T10:59:34" +ik[4678] = 26.13 +il[4678] = -148 +im[4678] = 0.0277 +ij[4678] = 16 +id[4679] = "2341-08-21T04:57:44" +ik[4679] = 1.277 +il[4679] = 143 +im[4679] = 0.0483 +ij[4679] = 28.2 +id[4680] = "2341-11-05T23:01:18" +ik[4680] = 3.668 +il[4680] = -101 +im[4680] = 0.0609 +ij[4680] = 27.4 +id[4681] = "2341-11-07T12:01:11" +ik[4681] = 1.159 +il[4681] = 79 +im[4681] = 0.0508 +ij[4681] = 28.1 +id[4682] = "2341-12-09T15:30:06" +ik[4682] = 0 +il[4682] = -8 +im[4682] = 0.0139 +ij[4682] = 17 +id[4683] = "2342-01-26T08:59:33" +ik[4683] = 1.04 +il[4683] = -152 +im[4683] = 0.0419 +ij[4683] = 12 +id[4684] = "2342-04-03T05:03:57" +ik[4684] = -25.726 +il[4684] = -10 +im[4684] = 0.0306 +ij[4684] = 15 +id[4685] = "2342-04-24T02:23:02" +ik[4685] = 1.688 +il[4685] = -121 +im[4685] = 0.0458 +ij[4685] = 28.1 +id[4686] = "2342-05-06T12:49:15" +ik[4686] = 1.743 +il[4686] = -155 +im[4686] = 0.0316 +ij[4686] = 28.2 +id[4687] = "2342-05-12T11:35:40" +ik[4687] = 2.807 +il[4687] = -72 +im[4687] = 0.0664 +ij[4687] = 27.6 +id[4688] = "2342-07-14T05:12:18" +ik[4688] = 4.666 +il[4688] = -81 +im[4688] = 0.0325 +ij[4688] = 27.2 +id[4689] = "2342-08-02T12:57:23" +ik[4689] = 12 +il[4689] = -8 +im[4689] = 0.0512 +ij[4689] = 18 +id[4690] = "2342-08-17T13:36:10" +ik[4690] = 0.873 +il[4690] = 128 +im[4690] = 0.0499 +ij[4690] = 28.6 +id[4691] = "2342-09-19T11:14:07" +ik[4691] = 33.078 +il[4691] = 123 +im[4691] = 0.0733 +ij[4691] = 8 +id[4692] = "2342-11-16T07:15:00" +ik[4692] = -1.672 +il[4692] = 23 +im[4692] = 0.0913 +ij[4692] = 2 +id[4693] = "2342-11-23T02:58:42" +ik[4693] = 37.536 +il[4693] = 153 +im[4693] = 0.0357 +ij[4693] = 3 +id[4694] = "2342-11-24T21:11:25" +ik[4694] = 1.313 +il[4694] = -103 +im[4694] = 0.071 +ij[4694] = 28.8 +id[4695] = "2342-12-20T02:07:16" +ik[4695] = 1.769 +il[4695] = 67 +im[4695] = 0.012 +ij[4695] = 28.7 +id[4696] = "2343-01-07T08:39:59" +ik[4696] = 5.85 +il[4696] = 145 +im[4696] = 0.1314 +ij[4696] = 28.5 +id[4697] = "2343-01-22T04:41:19" +ik[4697] = 0 +il[4697] = -12 +im[4697] = 0.1628 +ij[4697] = 13 +id[4698] = "2343-01-28T13:35:42" +ik[4698] = 1.631 +il[4698] = -84 +im[4698] = 0.0766 +ij[4698] = 28.2 +id[4699] = "2343-02-14T09:31:43" +ik[4699] = 3.36 +il[4699] = 139 +im[4699] = 0.0786 +ij[4699] = 28.7 +id[4700] = "2343-03-03T14:35:33" +ik[4700] = 4.08 +il[4700] = -153 +im[4700] = 0.2091 +ij[4700] = 11 +id[4701] = "2343-03-22T23:28:11" +ik[4701] = 1.259 +il[4701] = 50 +im[4701] = 0.1029 +ij[4701] = 28.1 +id[4702] = "2343-04-14T04:44:55" +ik[4702] = 82 +il[4702] = 173 +im[4702] = 0.1831 +ij[4702] = 7.2092 +id[4703] = "2343-05-25T05:53:18" +ik[4703] = 0.732 +il[4703] = -169 +im[4703] = 0.1207 +ij[4703] = 28.8 +id[4704] = "2343-06-16T09:55:35" +ik[4704] = 38.798 +il[4704] = -15 +im[4704] = 0.0096 +ij[4704] = 1 +id[4705] = "2343-06-20T05:29:43" +ik[4705] = 149.03 +il[4705] = 89 +im[4705] = 0.0858 +ij[4705] = 14 +id[4706] = "2343-06-21T22:46:34" +ik[4706] = -1.649 +il[4706] = -154 +im[4706] = 0.1009 +ij[4706] = 4 +id[4707] = "2343-06-23T15:22:09" +ik[4707] = 0.049 +il[4707] = -27 +im[4707] = 0.0999 +ij[4707] = 28.7 +id[4708] = "2343-07-09T05:50:30" +ik[4708] = 26.228 +il[4708] = -92 +im[4708] = 0.0896 +ij[4708] = 16 +id[4709] = "2343-08-28T10:02:07" +ik[4709] = 33.468 +il[4709] = -27 +im[4709] = 0.0348 +ij[4709] = 9 +id[4710] = "2343-09-10T15:00:30" +ik[4710] = 1.323 +il[4710] = 27 +im[4710] = 0.0238 +ij[4710] = 28.5 +id[4711] = "2343-10-17T04:03:54" +ik[4711] = 3.351 +il[4711] = -173 +im[4711] = 0.0691 +ij[4711] = 27.4 +id[4712] = "2343-10-31T02:53:07" +ik[4712] = 6.376 +il[4712] = -19 +im[4712] = 0.0657 +ij[4712] = 27.1 +id[4713] = "2343-11-20T16:30:42" +ik[4713] = 0 +il[4713] = -22 +im[4713] = 0.0069 +ij[4713] = 17 +id[4714] = "2344-01-14T00:48:34" +ik[4714] = 0.018 +il[4714] = 34 +im[4714] = 0.051 +ij[4714] = 28.1 +id[4715] = "2344-01-14T19:17:55" +ik[4715] = 0.186 +il[4715] = 123 +im[4715] = 0.0433 +ij[4715] = 27.3 +id[4716] = "2344-03-13T21:24:50" +ik[4716] = -25.892 +il[4716] = -42 +im[4716] = 0.0312 +ij[4716] = 15 +id[4717] = "2344-04-08T18:40:00" +ik[4717] = 0.59 +il[4717] = -97 +im[4717] = 0.0584 +ij[4717] = 12 +id[4718] = "2344-07-04T05:58:20" +ik[4718] = 1.59 +il[4718] = 17 +im[4718] = 0.0572 +ij[4718] = 28.1 +id[4719] = "2344-07-13T04:48:57" +ik[4719] = 12 +il[4719] = 121 +im[4719] = 0.0455 +ij[4719] = 18 +id[4720] = "2344-08-31T10:36:45" +ik[4720] = 0.444 +il[4720] = 152 +im[4720] = 0.0543 +ij[4720] = 28.6 +id[4721] = "2344-10-30T00:10:07" +ik[4721] = 31.325 +il[4721] = 165 +im[4721] = 0.0326 +ij[4721] = 8 +id[4722] = "2344-11-03T06:26:50" +ik[4722] = 0.731 +il[4722] = 112 +im[4722] = 0.038 +ij[4722] = 28.8 +id[4723] = "2344-11-27T00:05:41" +ik[4723] = 0.953 +il[4723] = 76 +im[4723] = 0.0448 +ij[4723] = 28.7 +id[4724] = "2344-12-21T18:57:14" +ik[4724] = -1.586 +il[4724] = 33 +im[4724] = 0.0935 +ij[4724] = 2 +id[4725] = "2344-12-31T10:51:36" +ik[4725] = 36.213 +il[4725] = -113 +im[4725] = 0.0777 +ij[4725] = 3 +id[4726] = "2345-02-26T05:30:11" +ik[4726] = 0 +il[4726] = 155 +im[4726] = 0.1505 +ij[4726] = 13 +id[4727] = "2345-04-06T17:47:33" +ik[4727] = 2.56 +il[4727] = -34 +im[4727] = 0.1408 +ij[4727] = 11 +id[4728] = "2345-05-06T02:12:53" +ik[4728] = 0.014 +il[4728] = -96 +im[4728] = 0.1958 +ij[4728] = 28.2 +id[4729] = "2345-05-18T04:32:47" +ik[4729] = 80.96 +il[4729] = -14 +im[4729] = 0.1768 +ij[4729] = 7.1989 +id[4730] = "2345-05-21T02:56:14" +ik[4730] = 5.895 +il[4730] = 39 +im[4730] = 0.2006 +ij[4730] = 28.7 +id[4731] = "2345-06-12T02:23:24" +ik[4731] = 25.785 +il[4731] = -100 +im[4731] = 0.0782 +ij[4731] = 16 +id[4732] = "2345-07-18T23:15:35" +ik[4732] = 142.74 +il[4732] = -54 +im[4732] = 0.103 +ij[4732] = 14 +id[4733] = "2345-07-28T20:24:34" +ik[4733] = 41.909 +il[4733] = 85 +im[4733] = 0.1089 +ij[4733] = 1 +id[4734] = "2345-07-31T15:36:21" +ik[4734] = -1.869 +il[4734] = -176 +im[4734] = 0.0982 +ij[4734] = 4 +id[4735] = "2345-09-23T21:56:28" +ik[4735] = 2.86 +il[4735] = -101 +im[4735] = 0.0875 +ij[4735] = 27.4 +id[4736] = "2345-10-26T13:07:27" +ik[4736] = 35.257 +il[4736] = -9 +im[4736] = 0.0679 +ij[4736] = 9 +id[4737] = "2345-10-30T12:16:36" +ik[4737] = 0 +il[4737] = 42 +im[4737] = 0.0083 +ij[4737] = 17 +id[4738] = "2345-11-25T11:23:10" +ik[4738] = 1.013 +il[4738] = -49 +im[4738] = 0.0544 +ij[4738] = 28.5 +id[4739] = "2345-12-24T05:15:37" +ik[4739] = 0.076 +il[4739] = -34 +im[4739] = 0.0561 +ij[4739] = 27.3 +id[4740] = "2346-01-21T20:34:06" +ik[4740] = 0.515 +il[4740] = 18 +im[4740] = 0.0585 +ij[4740] = 27.5 +id[4741] = "2346-02-05T01:05:19" +ik[4741] = 0.946 +il[4741] = 89 +im[4741] = 0.0568 +ij[4741] = 28.2 +id[4742] = "2346-02-22T08:08:47" +ik[4742] = -26.041 +il[4742] = 156 +im[4742] = 0.0318 +ij[4742] = 15 +id[4743] = "2346-03-29T04:29:05" +ik[4743] = 1.501 +il[4743] = -168 +im[4743] = 0.0422 +ij[4743] = 28.1 +id[4744] = "2346-06-09T17:04:00" +ik[4744] = 0.49 +il[4744] = -13 +im[4744] = 0.0478 +ij[4744] = 12 +id[4745] = "2346-06-24T16:34:30" +ik[4745] = 12 +il[4745] = -58 +im[4745] = 0.0479 +ij[4745] = 18 +id[4746] = "2346-09-07T19:42:49" +ik[4746] = 4.979 +il[4746] = -81 +im[4746] = 0.0606 +ij[4746] = 28.1 +id[4747] = "2346-09-17T21:33:20" +ik[4747] = 0.16 +il[4747] = -10 +im[4747] = 0.0439 +ij[4747] = 28.6 +id[4748] = "2346-10-20T10:42:23" +ik[4748] = 0.409 +il[4748] = 107 +im[4748] = 0.0645 +ij[4748] = 28.8 +id[4749] = "2346-10-28T09:53:05" +ik[4749] = 0.465 +il[4749] = -164 +im[4749] = 0.0162 +ij[4749] = 28.2 +id[4750] = "2346-11-09T01:13:08" +ik[4750] = 25.29 +il[4750] = 79 +im[4750] = 0.0246 +ij[4750] = 16 +id[4751] = "2346-11-16T22:03:48" +ik[4751] = 0.625 +il[4751] = -158 +im[4751] = 0.0711 +ij[4751] = 28.7 +id[4752] = "2346-12-03T18:44:47" +ik[4752] = 30.633 +il[4752] = 54 +im[4752] = 0.0694 +ij[4752] = 8 +id[4753] = "2347-02-07T06:51:55" +ik[4753] = -1.61 +il[4753] = 142 +im[4753] = 0.0828 +ij[4753] = 2 +id[4754] = "2347-02-10T21:45:38" +ik[4754] = 36.751 +il[4754] = -47 +im[4754] = 0.1221 +ij[4754] = 3 +id[4755] = "2347-04-12T23:16:03" +ik[4755] = 0 +il[4755] = 151 +im[4755] = 0.1089 +ij[4755] = 13 +id[4756] = "2347-04-24T23:00:00" +ik[4756] = 4.866 +il[4756] = -102 +im[4756] = 0.1603 +ij[4756] = 27.4 +id[4757] = "2347-05-18T11:46:40" +ik[4757] = 0.24 +il[4757] = -82 +im[4757] = 0.2639 +ij[4757] = 11 +id[4758] = "2347-06-26T04:12:00" +ik[4758] = 74.21 +il[4758] = -154 +im[4758] = 0.2374 +ij[4758] = 7.1468 +id[4759] = "2347-08-18T20:16:49" +ik[4759] = 127.88 +il[4759] = 129 +im[4759] = 0.1225 +ij[4759] = 14 +id[4760] = "2347-08-22T02:31:21" +ik[4760] = 1.74 +il[4760] = 67 +im[4760] = 0.1686 +ij[4760] = 27.4 +id[4761] = "2347-08-31T11:36:23" +ik[4761] = -2.186 +il[4761] = 23 +im[4761] = 0.0372 +ij[4761] = 4 +id[4762] = "2347-09-14T02:46:36" +ik[4762] = 45.606 +il[4762] = -71 +im[4762] = 0.0487 +ij[4762] = 1 +id[4763] = "2347-10-06T12:41:47" +ik[4763] = 0 +il[4763] = 0 +im[4763] = 0.1063 +ij[4763] = 17 +id[4764] = "2347-12-01T02:29:18" +ik[4764] = 0.179 +il[4764] = -19 +im[4764] = 0.093 +ij[4764] = 27.3 +id[4765] = "2347-12-30T14:44:43" +ik[4765] = 0.543 +il[4765] = 86 +im[4765] = 0.0847 +ij[4765] = 27.5 +id[4766] = "2348-01-06T17:50:07" +ik[4766] = 35.087 +il[4766] = 109 +im[4766] = 0.0109 +ij[4766] = 9 +id[4767] = "2348-01-24T00:39:51" +ik[4767] = 0.468 +il[4767] = 174 +im[4767] = 0.0449 +ij[4767] = 28.5 +id[4768] = "2348-01-24T11:04:52" +ik[4768] = 2.93 +il[4768] = 22 +im[4768] = 0.051 +ij[4768] = 28.2 +id[4769] = "2348-02-01T17:11:37" +ik[4769] = -26.19 +il[4769] = 10 +im[4769] = 0.0445 +ij[4769] = 15 +id[4770] = "2348-03-11T05:46:26" +ik[4770] = 2.055 +il[4770] = -169 +im[4770] = 0.0676 +ij[4770] = 27.6 +id[4771] = "2348-05-14T19:20:44" +ik[4771] = 3.936 +il[4771] = -113 +im[4771] = 0.0118 +ij[4771] = 27.2 +id[4772] = "2348-06-05T08:02:04" +ik[4772] = 12 +il[4772] = -90 +im[4772] = 0.0532 +ij[4772] = 18 +id[4773] = "2348-07-24T10:21:20" +ik[4773] = 1.06 +il[4773] = -23 +im[4773] = 0.0328 +ij[4773] = 12 +id[4774] = "2348-09-25T05:12:24" +ik[4774] = 0.089 +il[4774] = 148 +im[4774] = 0.0309 +ij[4774] = 28.2 +id[4775] = "2348-10-06T14:46:00" +ik[4775] = 0.816 +il[4775] = 114 +im[4775] = 0.0069 +ij[4775] = 28.6 +id[4776] = "2348-10-07T19:08:57" +ik[4776] = 0.147 +il[4776] = 58 +im[4776] = 0.0195 +ij[4776] = 28.8 +id[4777] = "2348-10-20T09:03:59" +ik[4777] = 25.534 +il[4777] = -31 +im[4777] = 0.0153 +ij[4777] = 16 +id[4778] = "2348-11-08T19:08:25" +ik[4778] = 0.387 +il[4778] = 9 +im[4778] = 0.0539 +ij[4778] = 28.7 +id[4779] = "2349-01-05T15:06:33" +ik[4779] = 30.948 +il[4779] = -96 +im[4779] = 0.0684 +ij[4779] = 8 +id[4780] = "2349-02-05T21:42:54" +ik[4780] = 4.908 +il[4780] = 102 +im[4780] = 0.0912 +ij[4780] = 27.4 +id[4781] = "2349-02-22T20:25:52" +ik[4781] = 4.912 +il[4781] = -77 +im[4781] = 0.0766 +ij[4781] = 27.1 +id[4782] = "2349-03-17T15:52:52" +ik[4782] = 23 +il[4782] = -153 +im[4782] = 0.1039 +ij[4782] = 17 +id[4783] = "2349-04-03T15:43:37" +ik[4783] = 39.687 +il[4783] = 10 +im[4783] = 0.1336 +ij[4783] = 3 +id[4784] = "2349-04-19T18:08:24" +ik[4784] = -1.84 +il[4784] = 126 +im[4784] = 0.147 +ij[4784] = 2 +id[4785] = "2349-06-09T01:10:50" +ik[4785] = 0.658 +il[4785] = 136 +im[4785] = 0.2163 +ij[4785] = 28.2 +id[4786] = "2349-06-15T20:17:19" +ik[4786] = 0 +il[4786] = -86 +im[4786] = 0.224 +ij[4786] = 13 +id[4787] = "2349-07-15T22:24:01" +ik[4787] = 5.47 +il[4787] = 157 +im[4787] = 0.0819 +ij[4787] = 11 +id[4788] = "2349-07-31T08:16:50" +ik[4788] = 4.812 +il[4788] = -24 +im[4788] = 0.1629 +ij[4788] = 28.1 +id[4789] = "2349-08-19T19:19:54" +ik[4789] = 64.96 +il[4789] = 1 +im[4789] = 0.3173 +ij[4789] = 7.0999 +id[4790] = "2349-10-01T13:42:43" +ik[4790] = 107.73 +il[4790] = 147 +im[4790] = 0.2074 +ij[4790] = 14 +id[4791] = "2349-10-11T12:51:57" +ik[4791] = -2.367 +il[4791] = -102 +im[4791] = 0.1645 +ij[4791] = 4 +id[4792] = "2349-10-26T08:15:59" +ik[4792] = 1.276 +il[4792] = 112 +im[4792] = 0.174 +ij[4792] = 27.3 +id[4793] = "2349-11-06T10:26:32" +ik[4793] = 45.343 +il[4793] = -172 +im[4793] = 0.0576 +ij[4793] = 1 +id[4794] = "2349-11-30T08:35:18" +ik[4794] = 0.861 +il[4794] = 89 +im[4794] = 0.0912 +ij[4794] = 27.5 +id[4795] = "2350-01-07T17:11:25" +ik[4795] = -26.324 +il[4795] = -29 +im[4795] = 0.1003 +ij[4795] = 15 +id[4796] = "2350-02-16T03:19:22" +ik[4796] = 1.733 +il[4796] = -165 +im[4796] = 0.0598 +ij[4796] = 27.6 +id[4797] = "2350-03-04T10:17:40" +ik[4797] = 33.215 +il[4797] = -115 +im[4797] = 0.0642 +ij[4797] = 9 +id[4798] = "2350-03-23T22:49:30" +ik[4798] = 1.419 +il[4798] = -119 +im[4798] = 0.0676 +ij[4798] = 28.5 +id[4799] = "2350-04-24T13:59:18" +ik[4799] = 3.646 +il[4799] = -41 +im[4799] = 0.0294 +ij[4799] = 27.2 +id[4800] = "2350-05-17T12:32:28" +ik[4800] = 12 +il[4800] = -170 +im[4800] = 0.0635 +ij[4800] = 18 +id[4801] = "2350-05-27T14:03:16" +ik[4801] = 4.647 +il[4801] = -92 +im[4801] = 0.0328 +ij[4801] = 28.1 +id[4802] = "2350-08-31T16:01:47" +ik[4802] = 1.1 +il[4802] = 82 +im[4802] = 0.024 +ij[4802] = 12 +id[4803] = "2350-10-02T17:09:46" +ik[4803] = 25.703 +il[4803] = -138 +im[4803] = 0.0132 +ij[4803] = 16 +id[4804] = "2350-11-02T21:27:03" +ik[4804] = 0.174 +il[4804] = 102 +im[4804] = 0.0397 +ij[4804] = 28.7 +id[4805] = "2351-01-12T13:59:30" +ik[4805] = 4.532 +il[4805] = 173 +im[4805] = 0.0445 +ij[4805] = 27.4 +id[4806] = "2351-01-27T12:10:51" +ik[4806] = 5.26 +il[4806] = -19 +im[4806] = 0.0419 +ij[4806] = 27.1 +id[4807] = "2351-02-12T17:56:46" +ik[4807] = 32.321 +il[4807] = 49 +im[4807] = 0.0754 +ij[4807] = 8 +id[4808] = "2351-02-16T07:31:50" +ik[4808] = 0 +il[4808] = -121 +im[4808] = 0.0827 +ij[4808] = 17 +id[4809] = "2351-04-23T07:28:37" +ik[4809] = 0.012 +il[4809] = 144 +im[4809] = 0.0591 +ij[4809] = 27.3 +id[4810] = "2351-05-27T08:16:47" +ik[4810] = 1.757 +il[4810] = 95 +im[4810] = 0.1428 +ij[4810] = 27.5 +id[4811] = "2351-06-14T16:18:37" +ik[4811] = 45.519 +il[4811] = 149 +im[4811] = 0.088 +ij[4811] = 3 +id[4812] = "2351-07-15T13:15:05" +ik[4812] = -2.345 +il[4812] = 131 +im[4812] = 0.0112 +ij[4812] = 2 +id[4813] = "2351-09-01T00:01:19" +ik[4813] = 0 +il[4813] = 70 +im[4813] = 0.2935 +ij[4813] = 13 +id[4814] = "2351-10-05T05:28:01" +ik[4814] = 4.1 +il[4814] = -52 +im[4814] = 0.0801 +ij[4814] = 11 +id[4815] = "2351-10-29T19:02:41" +ik[4815] = 0.684 +il[4815] = -179 +im[4815] = 0.2344 +ij[4815] = 28.2 +id[4816] = "2351-11-03T23:05:55" +ik[4816] = 63.96 +il[4816] = 170 +im[4816] = 0.129 +ij[4816] = 7.1194 +id[4817] = "2351-12-05T21:10:12" +ik[4817] = -25.592 +il[4817] = 145 +im[4817] = 0.2091 +ij[4817] = 15 +id[4818] = "2351-12-18T02:57:41" +ik[4818] = 108.12 +il[4818] = 175 +im[4818] = 0.1471 +ij[4818] = 14 +id[4819] = "2351-12-26T16:45:46" +ik[4819] = -1.984 +il[4819] = 50 +im[4819] = 0.0438 +ij[4819] = 4 +id[4820] = "2352-01-12T23:35:18" +ik[4820] = 1.284 +il[4820] = 112 +im[4820] = 0.052 +ij[4820] = 27.6 +id[4821] = "2352-01-16T03:21:36" +ik[4821] = 40.513 +il[4821] = 85 +im[4821] = 0.1191 +ij[4821] = 1 +id[4822] = "2352-03-31T08:48:46" +ik[4822] = 3.218 +il[4822] = -6 +im[4822] = 0.082 +ij[4822] = 27.2 +id[4823] = "2352-04-16T00:44:46" +ik[4823] = 31.817 +il[4823] = -98 +im[4823] = 0.0561 +ij[4823] = 9 +id[4824] = "2352-04-26T03:34:10" +ik[4824] = 12 +il[4824] = -42 +im[4824] = 0.0764 +ij[4824] = 18 +id[4825] = "2352-06-06T22:49:53" +ik[4825] = 0.783 +il[4825] = 60 +im[4825] = 0.0509 +ij[4825] = 28.5 +id[4826] = "2352-07-03T08:00:05" +ik[4826] = 0.663 +il[4826] = -179 +im[4826] = 0.0268 +ij[4826] = 28.2 +id[4827] = "2352-07-26T20:29:41" +ik[4827] = 0.276 +il[4827] = -145 +im[4827] = 0.0364 +ij[4827] = 28.1 +id[4828] = "2352-09-14T07:54:36" +ik[4828] = 25.841 +il[4828] = 161 +im[4828] = 0.0416 +ij[4828] = 16 +id[4829] = "2352-10-06T02:32:54" +ik[4829] = 0.72 +il[4829] = 103 +im[4829] = 0.033 +ij[4829] = 12 +id[4830] = "2352-12-22T06:30:56" +ik[4830] = 4.254 +il[4830] = -94 +im[4830] = 0.0278 +ij[4830] = 27.4 +id[4831] = "2353-01-04T05:42:57" +ik[4831] = 5.472 +il[4831] = 41 +im[4831] = 0.007 +ij[4831] = 28.1 +id[4832] = "2353-01-05T03:42:34" +ik[4832] = 0.78 +il[4832] = 80 +im[4832] = 0.0172 +ij[4832] = 28.2 +id[4833] = "2353-01-05T12:44:50" +ik[4833] = 5.524 +il[4833] = -53 +im[4833] = 0.0217 +ij[4833] = 27.1 +id[4834] = "2353-01-24T21:39:26" +ik[4834] = 0 +il[4834] = 8 +im[4834] = 0.0683 +ij[4834] = 17 +id[4835] = "2353-03-01T23:03:00" +ik[4835] = 1.978 +il[4835] = -37 +im[4835] = 0.0165 +ij[4835] = 28.2 +id[4836] = "2353-03-26T05:03:16" +ik[4836] = 0.232 +il[4836] = 108 +im[4836] = 0.079 +ij[4836] = 27.3 +id[4837] = "2353-04-04T05:19:00" +ik[4837] = 34.744 +il[4837] = -170 +im[4837] = 0.0537 +ij[4837] = 8 +id[4838] = "2353-04-25T07:34:26" +ik[4838] = 0.982 +il[4838] = -3 +im[4838] = 0.0791 +ij[4838] = 27.5 +id[4839] = "2353-05-24T06:32:59" +ik[4839] = -24.937 +il[4839] = -71 +im[4839] = 0.089 +ij[4839] = 15 +id[4840] = "2353-07-08T03:36:13" +ik[4840] = 4.097 +il[4840] = 48 +im[4840] = 0.0544 +ij[4840] = 27.6 +id[4841] = "2353-08-06T14:03:33" +ik[4841] = 46.85 +il[4841] = 179 +im[4841] = 0.049 +ij[4841] = 3 +id[4842] = "2353-09-01T12:03:07" +ik[4842] = -2.27 +il[4842] = 104 +im[4842] = 0.134 +ij[4842] = 2 +id[4843] = "2353-09-27T15:14:23" +ik[4843] = 5.788 +il[4843] = -48 +im[4843] = 0.1982 +ij[4843] = 27.2 +id[4844] = "2353-10-29T02:58:11" +ik[4844] = 0 +il[4844] = 85 +im[4844] = 0.1435 +ij[4844] = 13 +id[4845] = "2353-11-17T09:34:25" +ik[4845] = 1.172 +il[4845] = 174 +im[4845] = 0.2028 +ij[4845] = 28.1 +id[4846] = "2353-12-04T00:28:28" +ik[4846] = 1.57 +il[4846] = 96 +im[4846] = 0.2844 +ij[4846] = 11 +id[4847] = "2354-01-07T08:07:56" +ik[4847] = 70.22 +il[4847] = 130 +im[4847] = 0.0258 +ij[4847] = 7.1408 +id[4848] = "2354-02-22T19:59:02" +ik[4848] = 2.271 +il[4848] = 24 +im[4848] = 0.1258 +ij[4848] = 27.2 +id[4849] = "2354-03-01T23:47:07" +ik[4849] = -1.668 +il[4849] = 34 +im[4849] = 0.0525 +ij[4849] = 4 +id[4850] = "2354-03-06T08:35:49" +ik[4850] = 128.23 +il[4850] = -57 +im[4850] = 0.0683 +ij[4850] = 14 +id[4851] = "2354-03-10T20:57:33" +ik[4851] = 37.696 +il[4851] = 160 +im[4851] = 0.1144 +ij[4851] = 1 +id[4852] = "2354-03-31T15:46:15" +ik[4852] = 12 +il[4852] = 74 +im[4852] = 0.01 +ij[4852] = 18 +id[4853] = "2354-05-23T19:22:59" +ik[4853] = 31.29 +il[4853] = 163 +im[4853] = 0.0587 +ij[4853] = 9 +id[4854] = "2354-06-21T23:47:43" +ik[4854] = 2.799 +il[4854] = 14 +im[4854] = 0.0457 +ij[4854] = 28.2 +id[4855] = "2354-08-27T16:44:28" +ik[4855] = 25.964 +il[4855] = 48 +im[4855] = 0.0601 +ij[4855] = 16 +id[4856] = "2354-09-04T20:32:28" +ik[4856] = 0.61 +il[4856] = 71 +im[4856] = 0.0108 +ij[4856] = 28.8 +id[4857] = "2354-09-06T14:27:32" +ik[4857] = 0.547 +il[4857] = 171 +im[4857] = 0.0127 +ij[4857] = 28.5 +id[4858] = "2354-11-14T13:12:01" +ik[4858] = 0.01 +il[4858] = 159 +im[4858] = 0.016 +ij[4858] = 12 +id[4859] = "2355-01-05T14:28:14" +ik[4859] = 0 +il[4859] = 103 +im[4859] = 0.0591 +ij[4859] = 17 +id[4860] = "2355-02-06T03:13:18" +ik[4860] = 1.607 +il[4860] = -147 +im[4860] = 0.0521 +ij[4860] = 28.2 +id[4861] = "2355-03-04T11:23:01" +ik[4861] = 0.272 +il[4861] = -8 +im[4861] = 0.0667 +ij[4861] = 27.3 +id[4862] = "2355-03-26T19:44:42" +ik[4862] = 5.873 +il[4862] = 80 +im[4862] = 0.0058 +ij[4862] = 28.1 +id[4863] = "2355-04-02T13:30:03" +ik[4863] = 0.745 +il[4863] = -121 +im[4863] = 0.0719 +ij[4863] = 27.5 +id[4864] = "2355-05-02T00:50:52" +ik[4864] = -25.398 +il[4864] = -8 +im[4864] = 0.0777 +ij[4864] = 15 +id[4865] = "2355-06-12T01:12:00" +ik[4865] = 3.325 +il[4865] = 26 +im[4865] = 0.0689 +ij[4865] = 27.6 +id[4866] = "2355-06-21T07:34:06" +ik[4866] = 36.232 +il[4866] = 21 +im[4866] = 0.0065 +ij[4866] = 8 +id[4867] = "2355-08-15T23:02:37" +ik[4867] = 5.195 +il[4867] = -24 +im[4867] = 0.0352 +ij[4867] = 27.2 +id[4868] = "2355-09-04T10:53:33" +ik[4868] = 11 +il[4868] = -11 +im[4868] = 0.0542 +ij[4868] = 18 +id[4869] = "2355-09-23T01:39:30" +ik[4869] = 42.507 +il[4869] = -51 +im[4869] = 0.1248 +ij[4869] = 3 +id[4870] = "2355-10-04T00:10:15" +ik[4870] = -1.961 +il[4870] = 78 +im[4870] = 0.0866 +ij[4870] = 2 +id[4871] = "2355-12-06T08:36:18" +ik[4871] = 0 +il[4871] = -179 +im[4871] = 0.1018 +ij[4871] = 13 +id[4872] = "2355-12-09T17:49:44" +ik[4872] = 0.101 +il[4872] = 101 +im[4872] = 0.0434 +ij[4872] = 28.2 +id[4873] = "2356-01-15T05:28:01" +ik[4873] = 3.98 +il[4873] = -102 +im[4873] = 0.1731 +ij[4873] = 11 +id[4874] = "2356-02-23T15:47:09" +ik[4874] = 79.3 +il[4874] = -79 +im[4874] = 0.126 +ij[4874] = 7.1708 +id[4875] = "2356-04-20T11:15:09" +ik[4875] = -1.558 +il[4875] = 163 +im[4875] = 0.0567 +ij[4875] = 4 +id[4876] = "2356-04-21T22:37:29" +ik[4876] = 37.027 +il[4876] = 6 +im[4876] = 0.0245 +ij[4876] = 1 +id[4877] = "2356-04-29T16:21:56" +ik[4877] = 145.32 +il[4877] = 174 +im[4877] = 0.1058 +ij[4877] = 14 +id[4878] = "2356-06-29T01:01:13" +ik[4878] = 31.619 +il[4878] = -98 +im[4878] = 0.0676 +ij[4878] = 9 +id[4879] = "2356-08-08T04:32:17" +ik[4879] = 26.085 +il[4879] = -124 +im[4879] = 0.067 +ij[4879] = 16 +id[4880] = "2356-08-23T07:30:07" +ik[4880] = 0.905 +il[4880] = -21 +im[4880] = 0.0646 +ij[4880] = 28.8 +id[4881] = "2356-10-02T16:39:30" +ik[4881] = 2.074 +il[4881] = -127 +im[4881] = 0.0579 +ij[4881] = 28.1 +id[4882] = "2356-10-15T03:14:31" +ik[4882] = 0.502 +il[4882] = -164 +im[4882] = 0.0336 +ij[4882] = 28.7 +id[4883] = "2356-12-16T22:47:19" +ik[4883] = 0 +il[4883] = 165 +im[4883] = 0.0575 +ij[4883] = 17 +id[4884] = "2357-01-02T00:24:55" +ik[4884] = 0.82 +il[4884] = -58 +im[4884] = 0.0554 +ij[4884] = 12 +id[4885] = "2357-03-22T10:40:14" +ik[4885] = 1.391 +il[4885] = 4 +im[4885] = 0.0312 +ij[4885] = 28.1 +id[4886] = "2357-04-10T21:05:37" +ik[4886] = -25.651 +il[4886] = 48 +im[4886] = 0.0632 +ij[4886] = 15 +id[4887] = "2357-05-20T11:50:49" +ik[4887] = 2.925 +il[4887] = -146 +im[4887] = 0.0416 +ij[4887] = 27.6 +id[4888] = "2357-07-22T10:42:13" +ik[4888] = 4.786 +il[4888] = 129 +im[4888] = 0.0727 +ij[4888] = 27.2 +id[4889] = "2357-08-10T15:05:35" +ik[4889] = 12 +il[4889] = -109 +im[4889] = 0.0289 +ij[4889] = 18 +id[4890] = "2357-08-30T07:22:06" +ik[4890] = 34.043 +il[4890] = -162 +im[4890] = 0.0643 +ij[4890] = 8 +id[4891] = "2357-11-03T11:38:16" +ik[4891] = -1.733 +il[4891] = 46 +im[4891] = 0.0676 +ij[4891] = 2 +id[4892] = "2357-11-07T00:42:28" +ik[4892] = 38.562 +il[4892] = -115 +im[4892] = 0.0124 +ij[4892] = 3 +id[4893] = "2358-01-08T16:22:24" +ik[4893] = 0 +il[4893] = -104 +im[4893] = 0.1631 +ij[4893] = 13 +id[4894] = "2358-02-18T11:04:02" +ik[4894] = 4.32 +il[4894] = -13 +im[4894] = 0.219 +ij[4894] = 11 +id[4895] = "2358-03-15T03:15:39" +ik[4895] = 2.246 +il[4895] = 134 +im[4895] = 0.2039 +ij[4895] = 28.2 +id[4896] = "2358-03-31T21:31:02" +ik[4896] = 82.21 +il[4896] = 9 +im[4896] = 0.1375 +ij[4896] = 7.2021 +id[4897] = "2358-05-31T16:20:29" +ik[4897] = 37.995 +il[4897] = -50 +im[4897] = 0.0268 +ij[4897] = 1 +id[4898] = "2358-06-04T16:28:03" +ik[4898] = -1.598 +il[4898] = -13 +im[4898] = 0.0975 +ij[4898] = 4 +id[4899] = "2358-06-07T14:16:50" +ik[4899] = 149.91 +il[4899] = 48 +im[4899] = 0.109 +ij[4899] = 14 +id[4900] = "2358-07-18T13:18:09" +ik[4900] = 26.201 +il[4900] = 99 +im[4900] = 0.0749 +ij[4900] = 16 +id[4901] = "2358-08-09T14:50:06" +ik[4901] = 32.795 +il[4901] = -70 +im[4901] = 0.021 +ij[4901] = 9 +id[4902] = "2358-08-09T21:35:27" +ik[4902] = 1.255 +il[4902] = -168 +im[4902] = 0.0163 +ij[4902] = 28.8 +id[4903] = "2358-10-08T08:09:08" +ik[4903] = 0.794 +il[4903] = -108 +im[4903] = 0.0193 +ij[4903] = 28.7 +id[4904] = "2358-10-25T03:07:18" +ik[4904] = 3.487 +il[4904] = 131 +im[4904] = 0.0513 +ij[4904] = 27.4 +id[4905] = "2358-11-08T00:01:22" +ik[4905] = 6.25 +il[4905] = -47 +im[4905] = 0.0438 +ij[4905] = 27.1 +id[4906] = "2358-11-10T01:35:07" +ik[4906] = 0.43 +il[4906] = -51 +im[4906] = 0.0606 +ij[4906] = 28.2 +id[4907] = "2358-11-28T05:36:43" +ik[4907] = 0 +il[4907] = 71 +im[4907] = 0.0616 +ij[4907] = 17 +id[4908] = "2358-12-13T14:54:49" +ik[4908] = 1.024 +il[4908] = 83 +im[4908] = 0.0516 +ij[4908] = 28.1 +id[4909] = "2358-12-22T13:07:11" +ik[4909] = 0.186 +il[4909] = -168 +im[4909] = 0.0498 +ij[4909] = 28.1 +id[4910] = "2359-03-11T15:47:35" +ik[4910] = 0.95 +il[4910] = -134 +im[4910] = 0.0467 +ij[4910] = 12 +id[4911] = "2359-03-22T11:04:33" +ik[4911] = -25.831 +il[4911] = -168 +im[4911] = 0.0598 +ij[4911] = 15 +id[4912] = "2359-06-07T23:13:17" +ik[4912] = 1.64 +il[4912] = 58 +im[4912] = 0.0367 +ij[4912] = 28.1 +id[4913] = "2359-07-01T23:59:50" +ik[4913] = 4.502 +il[4913] = -75 +im[4913] = 0.0661 +ij[4913] = 27.2 +id[4914] = "2359-07-21T15:08:11" +ik[4914] = 12 +il[4914] = -109 +im[4914] = 0.0218 +ij[4914] = 18 +id[4915] = "2359-08-30T16:02:49" +ik[4915] = 1.91 +il[4915] = -94 +im[4915] = 0.0652 +ij[4915] = 28.2 +id[4916] = "2359-10-16T02:15:26" +ik[4916] = 31.882 +il[4916] = -158 +im[4916] = 0.0259 +ij[4916] = 8 +id[4917] = "2359-12-07T19:19:37" +ik[4917] = -1.608 +il[4917] = 96 +im[4917] = 0.0982 +ij[4917] = 2 +id[4918] = "2359-12-17T06:37:26" +ik[4918] = 36.515 +il[4918] = 18 +im[4918] = 0.0694 +ij[4918] = 3 +id[4919] = "2360-02-09T19:38:59" +ik[4919] = 2.806 +il[4919] = -11 +im[4919] = 0.069 +ij[4919] = 28.8 +id[4920] = "2360-02-12T14:17:17" +ik[4920] = 0 +il[4920] = 96 +im[4920] = 0.1468 +ij[4920] = 13 +id[4921] = "2360-03-23T16:20:29" +ik[4921] = 3.31 +il[4921] = 73 +im[4921] = 0.2091 +ij[4921] = 11 +id[4922] = "2360-04-15T16:01:40" +ik[4922] = 6.133 +il[4922] = 73 +im[4922] = 0.0515 +ij[4922] = 28.1 +id[4923] = "2360-05-04T13:19:53" +ik[4923] = 81.96 +il[4923] = -65 +im[4923] = 0.1827 +ij[4923] = 7.2086 +id[4924] = "2360-06-21T11:57:07" +ik[4924] = 26.168 +il[4924] = 61 +im[4924] = 0.0358 +ij[4924] = 16 +id[4925] = "2360-07-07T16:46:46" +ik[4925] = 146.1 +il[4925] = 146 +im[4925] = 0.0289 +ij[4925] = 14 +id[4926] = "2360-07-11T08:10:27" +ik[4926] = 40.519 +il[4926] = -50 +im[4926] = 0.1013 +ij[4926] = 1 +id[4927] = "2360-07-17T01:09:51" +ik[4927] = -1.769 +il[4927] = 111 +im[4927] = 0.087 +ij[4927] = 4 +id[4928] = "2360-07-21T08:36:26" +ik[4928] = 1.704 +il[4928] = 41 +im[4928] = 0.0046 +ij[4928] = 28.8 +id[4929] = "2360-09-28T16:51:43" +ik[4929] = 1.186 +il[4929] = -127 +im[4929] = 0.0275 +ij[4929] = 28.7 +id[4930] = "2360-09-30T18:08:45" +ik[4930] = 34.63 +il[4930] = -126 +im[4930] = 0.0125 +ij[4930] = 9 +id[4931] = "2360-10-03T03:56:49" +ik[4931] = 3.087 +il[4931] = 111 +im[4931] = 0.052 +ij[4931] = 27.4 +id[4932] = "2360-11-05T06:42:29" +ik[4932] = 1.801 +il[4932] = 33 +im[4932] = 0.0807 +ij[4932] = 28.2 +id[4933] = "2360-11-07T16:42:32" +ik[4933] = 0 +il[4933] = -93 +im[4933] = 0.0745 +ij[4933] = 17 +id[4934] = "2361-01-01T12:00:45" +ik[4934] = 0.13 +il[4934] = 157 +im[4934] = 0.0693 +ij[4934] = 27.3 +id[4935] = "2361-01-30T00:17:40" +ik[4935] = 0.52 +il[4935] = -107 +im[4935] = 0.0624 +ij[4935] = 27.5 +id[4936] = "2361-01-31T15:24:20" +ik[4936] = 0.519 +il[4936] = 48 +im[4936] = 0.0681 +ij[4936] = 28.6 +id[4937] = "2361-02-28T05:41:05" +ik[4937] = 1.36 +il[4937] = 104 +im[4937] = 0.0595 +ij[4937] = 28.1 +id[4938] = "2361-03-02T02:30:29" +ik[4938] = -25.984 +il[4938] = 171 +im[4938] = 0.0648 +ij[4938] = 15 +id[4939] = "2361-05-19T00:32:02" +ik[4939] = 0.1 +il[4939] = -113 +im[4939] = 0.023 +ij[4939] = 12 +id[4940] = "2361-07-01T21:29:49" +ik[4940] = 12 +il[4940] = 157 +im[4940] = 0.011 +ij[4940] = 18 +id[4941] = "2361-08-09T16:22:04" +ik[4941] = 2.376 +il[4941] = -98 +im[4941] = 0.0586 +ij[4941] = 28.1 +id[4942] = "2361-11-16T21:39:53" +ik[4942] = 25.155 +il[4942] = 61 +im[4942] = 0.0695 +ij[4942] = 16 +id[4943] = "2361-11-20T15:37:12" +ik[4943] = 30.783 +il[4943] = -172 +im[4943] = 0.036 +ij[4943] = 8 +id[4944] = "2361-12-25T17:37:00" +ik[4944] = 0.189 +il[4944] = 137 +im[4944] = 0.0706 +ij[4944] = 28.8 +id[4945] = "2362-01-17T17:48:05" +ik[4945] = -1.585 +il[4945] = -5 +im[4945] = 0.0323 +ij[4945] = 2 +id[4946] = "2362-01-25T01:34:27" +ik[4946] = 36.302 +il[4946] = -51 +im[4946] = 0.108 +ij[4946] = 3 +id[4947] = "2362-03-23T16:47:15" +ik[4947] = 0 +il[4947] = -88 +im[4947] = 0.1913 +ij[4947] = 13 +id[4948] = "2362-03-28T00:41:18" +ik[4948] = 1.895 +il[4948] = -166 +im[4948] = 0.0946 +ij[4948] = 28.2 +id[4949] = "2362-04-30T22:46:16" +ik[4949] = 0.86 +il[4949] = 168 +im[4949] = 0.2351 +ij[4949] = 11 +id[4950] = "2362-06-09T16:50:51" +ik[4950] = 78 +il[4950] = 68 +im[4950] = 0.2019 +ij[4950] = 7.1702 +id[4951] = "2362-08-06T04:53:40" +ik[4951] = 135.5 +il[4951] = 88 +im[4951] = 0.149 +ij[4951] = 14 +id[4952] = "2362-08-19T21:39:12" +ik[4952] = -2.056 +il[4952] = -30 +im[4952] = 0.1287 +ij[4952] = 4 +id[4953] = "2362-08-26T13:15:27" +ik[4953] = 44.277 +il[4953] = 161 +im[4953] = 0.0369 +ij[4953] = 1 +id[4954] = "2362-09-06T20:25:20" +ik[4954] = 2.33 +il[4954] = 164 +im[4954] = 0.1074 +ij[4954] = 27.4 +id[4955] = "2362-09-15T14:47:21" +ik[4955] = 1.863 +il[4955] = -26 +im[4955] = 0.0951 +ij[4955] = 28.7 +id[4956] = "2362-10-16T18:50:00" +ik[4956] = 0 +il[4956] = -140 +im[4956] = 0.105 +ij[4956] = 17 +id[4957] = "2362-12-10T01:48:19" +ik[4957] = 35.516 +il[4957] = -70 +im[4957] = 0.0612 +ij[4957] = 9 +id[4958] = "2362-12-10T17:18:28" +ik[4958] = 0.046 +il[4958] = 63 +im[4958] = 0.0695 +ij[4958] = 27.3 +id[4959] = "2363-01-08T17:57:14" +ik[4959] = 0.518 +il[4959] = -21 +im[4959] = 0.0643 +ij[4959] = 27.5 +id[4960] = "2363-02-10T01:24:19" +ik[4960] = -26.132 +il[4960] = -179 +im[4960] = 0.0764 +ij[4960] = 15 +id[4961] = "2363-02-14T16:28:54" +ik[4961] = 1.536 +il[4961] = 0 +im[4961] = 0.0485 +ij[4961] = 28.6 +id[4962] = "2363-03-20T11:59:21" +ik[4962] = 2.158 +il[4962] = 34 +im[4962] = 0.0217 +ij[4962] = 27.6 +id[4963] = "2363-06-13T13:35:31" +ik[4963] = 12 +il[4963] = 112 +im[4963] = 0.0026 +ij[4963] = 18 +id[4964] = "2363-07-08T22:37:23" +ik[4964] = 0.91 +il[4964] = -146 +im[4964] = 0.0383 +ij[4964] = 12 +id[4965] = "2363-10-28T12:43:46" +ik[4965] = 25.452 +il[4965] = -159 +im[4965] = 0.0598 +ij[4965] = 16 +id[4966] = "2363-12-08T14:42:51" +ik[4966] = 0.366 +il[4966] = -153 +im[4966] = 0.0731 +ij[4966] = 28.8 +id[4967] = "2363-12-24T07:01:12" +ik[4967] = 30.703 +il[4967] = 113 +im[4967] = 0.0716 +ij[4967] = 8 +id[4968] = "2364-02-19T13:41:50" +ik[4968] = 5.106 +il[4968] = -161 +im[4968] = 0.0992 +ij[4968] = 27.4 +id[4969] = "2364-03-01T15:45:54" +ik[4969] = 0.721 +il[4969] = -86 +im[4969] = 0.1044 +ij[4969] = 28.7 +id[4970] = "2364-03-10T01:33:46" +ik[4970] = 4.757 +il[4970] = -154 +im[4970] = 0.0529 +ij[4970] = 27.1 +id[4971] = "2364-03-11T21:25:29" +ik[4971] = 38.179 +il[4971] = -74 +im[4971] = 0.0072 +ij[4971] = 3 +id[4972] = "2364-03-18T13:56:06" +ik[4972] = -1.711 +il[4972] = 102 +im[4972] = 0.1264 +ij[4972] = 2 +id[4973] = "2364-04-10T02:31:39" +ik[4973] = 23 +il[4973] = 126 +im[4973] = 0.0378 +ij[4973] = 17 +id[4974] = "2364-05-19T00:03:25" +ik[4974] = 0 +il[4974] = 171 +im[4974] = 0.0502 +ij[4974] = 13 +id[4975] = "2364-06-04T06:08:06" +ik[4975] = 0 +il[4975] = -138 +im[4975] = 0.0863 +ij[4975] = 18 +id[4976] = "2364-06-19T13:23:36" +ik[4976] = 3.33 +il[4976] = -102 +im[4976] = 0.2498 +ij[4976] = 11 +id[4977] = "2364-07-03T17:39:51" +ik[4977] = 3.76 +il[4977] = 136 +im[4977] = 0.2586 +ij[4977] = 28.1 +id[4978] = "2364-07-19T09:33:25" +ik[4978] = 4.31 +il[4978] = 51 +im[4978] = 0.3194 +ij[4978] = 28.2 +id[4979] = "2364-07-26T01:08:00" +ik[4979] = 68.04 +il[4979] = -118 +im[4979] = 0.0634 +ij[4979] = 7.1125 +id[4980] = "2364-07-29T20:25:49" +ik[4980] = 5.505 +il[4980] = -10 +im[4980] = 0.1771 +ij[4980] = 28.7 +id[4981] = "2364-09-11T00:24:49" +ik[4981] = 115.01 +il[4981] = -6 +im[4981] = 0.1887 +ij[4981] = 14 +id[4982] = "2364-09-12T15:56:27" +ik[4982] = 0 +il[4982] = 137 +im[4982] = 0.2083 +ij[4982] = 17 +id[4983] = "2364-09-21T14:08:33" +ik[4983] = -2.351 +il[4983] = -108 +im[4983] = 0.0275 +ij[4983] = 4 +id[4984] = "2364-10-13T20:46:27" +ik[4984] = 46.308 +il[4984] = 12 +im[4984] = 0.1556 +ij[4984] = 1 +id[4985] = "2364-11-12T04:42:13" +ik[4985] = 0.584 +il[4985] = -179 +im[4985] = 0.1207 +ij[4985] = 27.3 +id[4986] = "2364-12-13T12:35:48" +ik[4986] = 0.65 +il[4986] = 10 +im[4986] = 0.0575 +ij[4986] = 27.5 +id[4987] = "2365-01-17T20:04:13" +ik[4987] = -26.281 +il[4987] = -121 +im[4987] = 0.0763 +ij[4987] = 15 +id[4988] = "2365-02-12T04:24:45" +ik[4988] = 33.96 +il[4988] = -3 +im[4988] = 0.0165 +ij[4988] = 9 +id[4989] = "2365-02-25T17:41:39" +ik[4989] = 1.869 +il[4989] = -73 +im[4989] = 0.0128 +ij[4989] = 27.6 +id[4990] = "2365-02-26T01:23:31" +ik[4990] = 2.377 +il[4990] = 174 +im[4990] = 0.0085 +ij[4990] = 28.6 +id[4991] = "2365-04-30T05:13:52" +ik[4991] = 0.599 +il[4991] = -6 +im[4991] = 0.0546 +ij[4991] = 28.2 +id[4992] = "2365-05-02T17:18:18" +ik[4992] = 3.77 +il[4992] = -163 +im[4992] = 0.06 +ij[4992] = 27.2 +id[4993] = "2365-05-25T00:18:33" +ik[4993] = 12 +il[4993] = -52 +im[4993] = 0.0127 +ij[4993] = 18 +id[4994] = "2365-08-17T06:48:56" +ik[4994] = 1.14 +il[4994] = -59 +im[4994] = 0.012 +ij[4994] = 12 +id[4995] = "2365-10-09T14:09:36" +ik[4995] = 25.644 +il[4995] = -170 +im[4995] = 0.0521 +ij[4995] = 16 +id[4996] = "2365-11-24T14:50:21" +ik[4996] = 0.746 +il[4996] = -90 +im[4996] = 0.0211 +ij[4996] = 28.8 +id[4997] = "2365-12-25T06:03:27" +ik[4997] = 1.247 +il[4997] = -26 +im[4997] = 0.0037 +ij[4997] = 28.2 +id[4998] = "2366-01-21T08:33:20" +ik[4998] = 4.66 +il[4998] = -166 +im[4998] = 0.0254 +ij[4998] = 27.4 +id[4999] = "2366-01-27T23:53:38" +ik[4999] = 31.65 +il[4999] = 27 +im[4999] = 0.0677 +ij[4999] = 8 +id[5000] = "2366-02-05T18:43:11" +ik[5000] = 5.139 +il[5000] = -172 +im[5000] = 0.0027 +ij[5000] = 27.1 +id[5001] = "2366-02-12T12:56:20" +ik[5001] = 0.275 +il[5001] = -21 +im[5001] = 0.0862 +ij[5001] = 28.7 +id[5002] = "2366-02-26T03:04:43" +ik[5002] = 23 +il[5002] = -105 +im[5002] = 0.0806 +ij[5002] = 17 +id[5003] = "2366-05-08T22:46:50" +ik[5003] = 0.368 +il[5003] = -81 +im[5003] = 0.1538 +ij[5003] = 27.3 +id[5004] = "2366-05-16T17:55:23" +ik[5004] = 43.085 +il[5004] = 66 +im[5004] = 0.0494 +ij[5004] = 3 +id[5005] = "2366-06-14T15:55:15" +ik[5005] = -2.164 +il[5005] = 10 +im[5005] = 0.0476 +ij[5005] = 2 +id[5006] = "2366-06-20T03:51:23" +ik[5006] = 3.018 +il[5006] = -116 +im[5006] = 0.1872 +ij[5006] = 27.5 +id[5007] = "2366-08-03T00:25:20" +ik[5007] = 0 +il[5007] = -4 +im[5007] = 0.3566 +ij[5007] = 13 +id[5008] = "2366-09-03T15:35:10" +ik[5008] = 6.31 +il[5008] = 64 +im[5008] = 0.21 +ij[5008] = 11 +id[5009] = "2366-09-16T11:16:34" +ik[5009] = 3.392 +il[5009] = 87 +im[5009] = 0.1887 +ij[5009] = 28.1 +id[5010] = "2366-10-04T00:30:03" +ik[5010] = 62 +il[5010] = 60 +im[5010] = 0.0975 +ij[5010] = 7.10689999999999 +id[5011] = "2366-10-14T06:22:50" +ik[5011] = 3.743 +il[5011] = 72 +im[5011] = 0.1106 +ij[5011] = 27.5 +id[5012] = "2366-11-14T14:59:54" +ik[5012] = 103.61 +il[5012] = -112 +im[5012] = 0.093 +ij[5012] = 14 +id[5013] = "2366-11-25T00:53:02" +ik[5013] = -2.168 +il[5013] = -160 +im[5013] = 0.1199 +ij[5013] = 4 +id[5014] = "2366-12-19T05:43:05" +ik[5014] = -26.261 +il[5014] = 0 +im[5014] = 0.1633 +ij[5014] = 15 +id[5015] = "2366-12-20T07:05:22" +ik[5015] = 42.353 +il[5015] = -10 +im[5015] = 0.1552 +ij[5015] = 1 +id[5016] = "2367-01-29T08:04:42" +ik[5016] = 1.468 +il[5016] = -4 +im[5016] = 0.1014 +ij[5016] = 27.6 +id[5017] = "2367-03-08T20:19:43" +ik[5017] = 2.933 +il[5017] = 179 +im[5017] = 0.0279 +ij[5017] = 28.6 +id[5018] = "2367-04-01T03:16:18" +ik[5018] = 32.27 +il[5018] = -68 +im[5018] = 0.0592 +ij[5018] = 9 +id[5019] = "2367-04-11T02:40:58" +ik[5019] = 3.413 +il[5019] = 35 +im[5019] = 0.0711 +ij[5019] = 27.2 +id[5020] = "2367-04-16T05:10:09" +ik[5020] = 4.723 +il[5020] = 47 +im[5020] = 0.052 +ij[5020] = 28.2 +id[5021] = "2367-05-05T10:43:02" +ik[5021] = 12 +il[5021] = 147 +im[5021] = 0.0202 +ij[5021] = 18 +id[5022] = "2367-07-05T14:42:04" +ik[5022] = 0.412 +il[5022] = -48 +im[5022] = 0.0498 +ij[5022] = 28.1 +id[5023] = "2367-09-22T03:45:31" +ik[5023] = 25.791 +il[5023] = 155 +im[5023] = 0.0316 +ij[5023] = 16 +id[5024] = "2367-09-22T20:48:03" +ik[5024] = 0.91 +il[5024] = -91 +im[5024] = 0.0243 +ij[5024] = 12 +id[5025] = "2367-11-26T10:31:40" +ik[5025] = 1.61 +il[5025] = 179 +im[5025] = 0.0524 +ij[5025] = 28.2 +id[5026] = "2367-11-28T04:07:30" +ik[5026] = 0.526 +il[5026] = -79 +im[5026] = 0.0568 +ij[5026] = 28.5 +id[5027] = "2367-12-05T17:03:43" +ik[5027] = 3.693 +il[5027] = 157 +im[5027] = 0.0091 +ij[5027] = 28.1 +id[5028] = "2367-12-31T00:02:52" +ik[5028] = 4.355 +il[5028] = -56 +im[5028] = 0.0355 +ij[5028] = 27.4 +id[5029] = "2368-01-14T11:04:09" +ik[5029] = 5.429 +il[5029] = -90 +im[5029] = 0.0492 +ij[5029] = 27.1 +id[5030] = "2368-02-02T16:26:00" +ik[5030] = 0.014 +il[5030] = 17 +im[5030] = 0.0284 +ij[5030] = 28.7 +id[5031] = "2368-02-02T21:56:18" +ik[5031] = 0 +il[5031] = -63 +im[5031] = 0.0314 +ij[5031] = 17 +id[5032] = "2368-03-12T15:07:25" +ik[5032] = 33.7 +il[5032] = 45 +im[5032] = 0.0519 +ij[5032] = 8 +id[5033] = "2368-04-04T18:32:29" +ik[5033] = 0.18 +il[5033] = -147 +im[5033] = 0.086 +ij[5033] = 27.3 +id[5034] = "2368-05-05T15:12:20" +ik[5034] = 1.162 +il[5034] = -164 +im[5034] = 0.1021 +ij[5034] = 27.5 +id[5035] = "2368-06-03T08:46:56" +ik[5035] = -24.599 +il[5035] = -153 +im[5035] = 0.116 +ij[5035] = 15 +id[5036] = "2368-07-19T09:38:26" +ik[5036] = 47.387 +il[5036] = -81 +im[5036] = 0.1296 +ij[5036] = 3 +id[5037] = "2368-07-22T15:18:37" +ik[5037] = 4.723 +il[5037] = -134 +im[5037] = 0.0413 +ij[5037] = 27.6 +id[5038] = "2368-08-17T02:40:36" +ik[5038] = -2.368 +il[5038] = -56 +im[5038] = 0.1542 +ij[5038] = 2 +id[5039] = "2368-10-02T05:54:20" +ik[5039] = 2.252 +il[5039] = -11 +im[5039] = 0.0607 +ij[5039] = 28.6 +id[5040] = "2368-10-05T21:23:10" +ik[5040] = 3.138 +il[5040] = 152 +im[5040] = 0.2473 +ij[5040] = 28.2 +id[5041] = "2368-10-07T15:00:25" +ik[5041] = 0 +il[5041] = -95 +im[5041] = 0.2915 +ij[5041] = 13 +id[5042] = "2368-11-13T11:25:23" +ik[5042] = 0.06 +il[5042] = -62 +im[5042] = 0.135 +ij[5042] = 11 +id[5043] = "2368-11-27T17:21:27" +ik[5043] = 1.902 +il[5043] = -179 +im[5043] = 0.2177 +ij[5043] = 28.1 +id[5044] = "2368-12-15T14:03:00" +ik[5044] = 68.96 +il[5044] = 37 +im[5044] = 0.2303 +ij[5044] = 7.1322 +id[5045] = "2369-02-06T00:40:46" +ik[5045] = 121.4 +il[5045] = 13 +im[5045] = 0.1057 +ij[5045] = 14 +id[5046] = "2369-02-06T19:12:37" +ik[5046] = -1.762 +il[5046] = 102 +im[5046] = 0.1173 +ij[5046] = 4 +id[5047] = "2369-02-19T13:54:20" +ik[5047] = 38.496 +il[5047] = -58 +im[5047] = 0.106 +ij[5047] = 1 +id[5048] = "2369-03-13T00:35:34" +ik[5048] = 2.773 +il[5048] = -16 +im[5048] = 0.0548 +ij[5048] = 27.2 +id[5049] = "2369-03-16T12:46:44" +ik[5049] = 3.182 +il[5049] = -166 +im[5049] = 0.0266 +ij[5049] = 28.6 +id[5050] = "2369-04-11T18:54:10" +ik[5050] = 12 +il[5050] = -10 +im[5050] = 0.0257 +ij[5050] = 18 +id[5051] = "2369-05-09T10:43:51" +ik[5051] = 31.393 +il[5051] = 13 +im[5051] = 0.0368 +ij[5051] = 9 +id[5052] = "2369-09-03T16:25:22" +ik[5052] = 25.918 +il[5052] = -24 +im[5052] = 0.0015 +ij[5052] = 16 +id[5053] = "2369-10-29T11:52:57" +ik[5053] = 0.32 +il[5053] = -125 +im[5053] = 0.0231 +ij[5053] = 12 +id[5054] = "2370-01-13T01:34:50" +ik[5054] = 0 +il[5054] = -133 +im[5054] = 0.0265 +ij[5054] = 17 +id[5055] = "2370-01-25T01:31:38" +ik[5055] = 0.212 +il[5055] = -19 +im[5055] = 0.0191 +ij[5055] = 28.7 +id[5056] = "2370-02-13T00:16:09" +ik[5056] = 0.273 +il[5056] = -174 +im[5056] = 0.0515 +ij[5056] = 28.5 +id[5057] = "2370-02-21T07:47:49" +ik[5057] = 6.116 +il[5057] = 156 +im[5057] = 0.0434 +ij[5057] = 28.1 +id[5058] = "2370-03-12T17:12:08" +ik[5058] = 0.266 +il[5058] = -161 +im[5058] = 0.0399 +ij[5058] = 27.3 +id[5059] = "2370-04-11T02:11:55" +ik[5059] = 0.815 +il[5059] = -15 +im[5059] = 0.0471 +ij[5059] = 27.5 +id[5060] = "2370-05-10T09:19:44" +ik[5060] = -25.258 +il[5060] = 159 +im[5060] = 0.0534 +ij[5060] = 15 +id[5061] = "2370-05-19T01:21:11" +ik[5061] = 36.107 +il[5061] = 3 +im[5061] = 0.0574 +ij[5061] = 8 +id[5062] = "2370-06-21T08:55:30" +ik[5062] = 3.552 +il[5062] = -147 +im[5062] = 0.0281 +ij[5062] = 27.6 +id[5063] = "2370-08-27T11:54:11" +ik[5063] = 5.422 +il[5063] = 107 +im[5063] = 0.0855 +ij[5063] = 27.2 +id[5064] = "2370-09-04T00:57:18" +ik[5064] = 44.395 +il[5064] = -15 +im[5064] = 0.0906 +ij[5064] = 3 +id[5065] = "2370-09-07T12:16:21" +ik[5065] = 0.574 +il[5065] = -150 +im[5065] = 0.1225 +ij[5065] = 28.6 +id[5066] = "2370-09-17T06:08:07" +ik[5066] = 11 +il[5066] = 37 +im[5066] = 0.0954 +ij[5066] = 18 +id[5067] = "2370-09-21T21:30:24" +ik[5067] = -2.078 +il[5067] = -148 +im[5067] = 0.1422 +ij[5067] = 2 +id[5068] = "2370-11-22T00:41:15" +ik[5068] = 0 +il[5068] = 40 +im[5068] = 0.0794 +ij[5068] = 13 +id[5069] = "2370-12-31T02:16:04" +ik[5069] = 3.37 +il[5069] = 17 +im[5069] = 0.1296 +ij[5069] = 11 +id[5070] = "2371-01-09T09:59:27" +ik[5070] = 12 +il[5070] = 172 +im[5070] = 0.2451 +ij[5070] = 17 +id[5071] = "2371-01-15T22:23:48" +ik[5071] = 4.465 +il[5071] = 42 +im[5071] = 0.0331 +ij[5071] = 28.6 +id[5072] = "2371-01-20T04:01:32" +ik[5072] = 3.067 +il[5072] = -3 +im[5072] = 0.1827 +ij[5072] = 28.2 +id[5073] = "2371-02-06T23:43:51" +ik[5073] = 76.96 +il[5073] = -142 +im[5073] = 0.1718 +ij[5073] = 7.1579 +id[5074] = "2371-03-03T09:26:24" +ik[5074] = 12 +il[5074] = -57 +im[5074] = 0.1473 +ij[5074] = 18 +id[5075] = "2371-03-19T18:32:13" +ik[5075] = 3.266 +il[5075] = -39 +im[5075] = 0.1207 +ij[5075] = 28.6 +id[5076] = "2371-04-02T21:01:05" +ik[5076] = -1.581 +il[5076] = 57 +im[5076] = 0.1135 +ij[5076] = 4 +id[5077] = "2371-04-06T22:33:18" +ik[5077] = 37.078 +il[5077] = 72 +im[5077] = 0.0513 +ij[5077] = 1 +id[5078] = "2371-04-11T16:37:40" +ik[5078] = 140.66 +il[5078] = -154 +im[5078] = 0.0553 +ij[5078] = 14 +id[5079] = "2371-06-15T08:23:51" +ik[5079] = 31.397 +il[5079] = -135 +im[5079] = 0.0472 +ij[5079] = 9 +id[5080] = "2371-08-16T14:34:10" +ik[5080] = 26.04 +il[5080] = 11 +im[5080] = 0.0268 +ij[5080] = 16 +id[5081] = "2371-08-31T18:26:53" +ik[5081] = 3.506 +il[5081] = 100 +im[5081] = 0.0254 +ij[5081] = 28.1 +id[5082] = "2371-09-03T03:49:48" +ik[5082] = 0.311 +il[5082] = -18 +im[5082] = 0.0494 +ij[5082] = 28.2 +id[5083] = "2371-12-12T21:42:17" +ik[5083] = 0.51 +il[5083] = -5 +im[5083] = 0.0494 +ij[5083] = 12 +id[5084] = "2371-12-25T06:41:45" +ik[5084] = 0 +il[5084] = 146 +im[5084] = 0.0319 +ij[5084] = 17 +id[5085] = "2372-02-17T04:54:41" +ik[5085] = 0.668 +il[5085] = -20 +im[5085] = 0.0218 +ij[5085] = 28.1 +id[5086] = "2372-02-20T04:21:52" +ik[5086] = 0.268 +il[5086] = 12 +im[5086] = 0.0211 +ij[5086] = 27.3 +id[5087] = "2372-03-09T14:28:15" +ik[5087] = 1.407 +il[5087] = 37 +im[5087] = 0.0563 +ij[5087] = 28.2 +id[5088] = "2372-03-19T22:50:26" +ik[5088] = 0.666 +il[5088] = 14 +im[5088] = 0.0194 +ij[5088] = 27.5 +id[5089] = "2372-04-13T15:59:45" +ik[5089] = 0.219 +il[5089] = 2 +im[5089] = 0.0408 +ij[5089] = 28.5 +id[5090] = "2372-04-18T16:25:33" +ik[5090] = -25.566 +il[5090] = 46 +im[5090] = 0.0312 +ij[5090] = 15 +id[5091] = "2372-05-13T22:30:00" +ik[5091] = 6.216 +il[5091] = -159 +im[5091] = 0.024 +ij[5091] = 28.1 +id[5092] = "2372-05-28T17:07:19" +ik[5092] = 3.06 +il[5092] = 66 +im[5092] = 0.0345 +ij[5092] = 27.6 +id[5093] = "2372-06-13T14:28:27" +ik[5093] = 1.548 +il[5093] = -98 +im[5093] = 0.0062 +ij[5093] = 28.2 +id[5094] = "2372-07-31T02:00:47" +ik[5094] = 4.923 +il[5094] = -165 +im[5094] = 0.0565 +ij[5094] = 27.2 +id[5095] = "2372-08-06T08:04:44" +ik[5095] = 35.077 +il[5095] = 165 +im[5095] = 0.0602 +ij[5095] = 8 +id[5096] = "2372-08-19T05:01:09" +ik[5096] = 11 +il[5096] = -23 +im[5096] = 0.0873 +ij[5096] = 18 +id[5097] = "2372-09-13T17:05:44" +ik[5097] = 0.639 +il[5097] = 45 +im[5097] = 0.0877 +ij[5097] = 28.6 +id[5098] = "2372-10-20T23:23:16" +ik[5098] = 39.889 +il[5098] = -48 +im[5098] = 0.0088 +ij[5098] = 3 +id[5099] = "2372-10-22T01:56:12" +ik[5099] = -1.81 +il[5099] = -75 +im[5099] = 0.0197 +ij[5099] = 2 +id[5100] = "2372-12-26T16:38:08" +ik[5100] = 0 +il[5100] = -21 +im[5100] = 0.1268 +ij[5100] = 13 +id[5101] = "2373-02-05T04:00:57" +ik[5101] = 4.36 +il[5101] = 179 +im[5101] = 0.1595 +ij[5101] = 11 +id[5102] = "2373-03-18T15:40:44" +ik[5102] = 81.96 +il[5102] = -173 +im[5102] = 0.0629 +ij[5102] = 7.1912 +id[5103] = "2373-05-16T06:12:23" +ik[5103] = 37.431 +il[5103] = 168 +im[5103] = 0.0221 +ij[5103] = 1 +id[5104] = "2373-05-18T07:26:53" +ik[5104] = -1.566 +il[5104] = 169 +im[5104] = 0.0631 +ij[5104] = 4 +id[5105] = "2373-05-24T19:34:34" +ik[5105] = 149.12 +il[5105] = 50 +im[5105] = 0.0909 +ij[5105] = 14 +id[5106] = "2373-07-23T13:12:18" +ik[5106] = 32.234 +il[5106] = 2 +im[5106] = 0.0309 +ij[5106] = 9 +id[5107] = "2373-07-27T00:23:00" +ik[5107] = 26.16 +il[5107] = -132 +im[5107] = 0.03 +ij[5107] = 16 +id[5108] = "2373-08-22T04:39:08" +ik[5108] = 2.632 +il[5108] = 58 +im[5108] = 0.0121 +ij[5108] = 28.2 +id[5109] = "2373-10-07T20:19:10" +ik[5109] = 1.974 +il[5109] = -84 +im[5109] = 0.0278 +ij[5109] = 28.8 +id[5110] = "2373-11-01T19:45:08" +ik[5110] = 3.606 +il[5110] = 168 +im[5110] = 0.0241 +ij[5110] = 27.4 +id[5111] = "2373-11-15T15:52:50" +ik[5111] = 6.139 +il[5111] = 1 +im[5111] = 0.0216 +ij[5111] = 27.1 +id[5112] = "2373-11-22T05:51:43" +ik[5112] = 0.764 +il[5112] = -144 +im[5112] = 0.0571 +ij[5112] = 28.1 +id[5113] = "2373-12-05T15:24:34" +ik[5113] = 0 +il[5113] = -146 +im[5113] = 0.0389 +ij[5113] = 17 +id[5114] = "2374-02-10T15:06:44" +ik[5114] = 1.08 +il[5114] = 167 +im[5114] = 0.0227 +ij[5114] = 12 +id[5115] = "2374-03-30T01:51:26" +ik[5115] = -25.767 +il[5115] = -101 +im[5115] = 0.0238 +ij[5115] = 15 +id[5116] = "2374-05-08T04:52:14" +ik[5116] = 2.746 +il[5116] = -113 +im[5116] = 0.0339 +ij[5116] = 27.6 +id[5117] = "2374-05-08T22:46:43" +ik[5117] = 1.891 +il[5117] = -13 +im[5117] = 0.0254 +ij[5117] = 28.2 +id[5118] = "2374-05-09T11:22:31" +ik[5118] = 1.702 +il[5118] = 163 +im[5118] = 0.0191 +ij[5118] = 28.1 +id[5119] = "2374-06-11T11:04:23" +ik[5119] = 0.516 +il[5119] = 129 +im[5119] = 0.0316 +ij[5119] = 28.5 +id[5120] = "2374-07-09T20:29:24" +ik[5120] = 4.605 +il[5120] = -92 +im[5120] = 0.0249 +ij[5120] = 27.2 +id[5121] = "2374-07-29T06:29:50" +ik[5121] = 12 +il[5121] = -53 +im[5121] = 0.0712 +ij[5121] = 18 +id[5122] = "2374-09-26T18:47:44" +ik[5122] = 0.296 +il[5122] = -19 +im[5122] = 0.0767 +ij[5122] = 28.6 +id[5123] = "2374-09-29T16:55:51" +ik[5123] = 32.606 +il[5123] = 37 +im[5123] = 0.0466 +ij[5123] = 8 +id[5124] = "2374-11-23T22:04:13" +ik[5124] = -1.645 +il[5124] = 134 +im[5124] = 0.0882 +ij[5124] = 2 +id[5125] = "2374-12-02T00:30:23" +ik[5125] = 37.094 +il[5125] = 176 +im[5125] = 0.0769 +ij[5125] = 3 +id[5126] = "2375-01-29T19:35:02" +ik[5126] = 0 +il[5126] = 98 +im[5126] = 0.1666 +ij[5126] = 13 +id[5127] = "2375-02-03T01:00:11" +ik[5127] = 1.772 +il[5127] = 57 +im[5127] = 0.0866 +ij[5127] = 28.2 +id[5128] = "2375-02-24T07:16:06" +ik[5128] = 5.001 +il[5128] = 157 +im[5128] = 0.1924 +ij[5128] = 28.1 +id[5129] = "2375-03-11T05:05:51" +ik[5129] = 3.85 +il[5129] = -37 +im[5129] = 0.228 +ij[5129] = 11 +id[5130] = "2375-03-31T22:23:29" +ik[5130] = 1.12 +il[5130] = 41 +im[5130] = 0.0604 +ij[5130] = 28.1 +id[5131] = "2375-04-21T19:38:38" +ik[5131] = 82 +il[5131] = -78 +im[5131] = 0.1541 +ij[5131] = 7.211 +id[5132] = "2375-06-25T15:13:23" +ik[5132] = 39.344 +il[5132] = -105 +im[5132] = 0.0868 +ij[5132] = 1 +id[5133] = "2375-06-27T03:40:23" +ik[5133] = 148.34 +il[5133] = 83 +im[5133] = 0.1053 +ij[5133] = 14 +id[5134] = "2375-07-01T16:43:20" +ik[5134] = -1.686 +il[5134] = -69 +im[5134] = 0.0984 +ij[5134] = 4 +id[5135] = "2375-07-03T14:26:03" +ik[5135] = 26.237 +il[5135] = -16 +im[5135] = 0.0689 +ij[5135] = 16 +id[5136] = "2375-09-09T01:18:31" +ik[5136] = 33.875 +il[5136] = 117 +im[5136] = 0.0787 +ij[5136] = 9 +id[5137] = "2375-09-24T09:10:45" +ik[5137] = 2.381 +il[5137] = 148 +im[5137] = 0.0759 +ij[5137] = 28.8 +id[5138] = "2375-10-12T16:44:40" +ik[5138] = 3.265 +il[5138] = -146 +im[5138] = 0.0284 +ij[5138] = 27.4 +id[5139] = "2375-10-26T17:23:40" +ik[5139] = 6.457 +il[5139] = -19 +im[5139] = 0.035 +ij[5139] = 27.1 +id[5140] = "2375-11-16T12:23:14" +ik[5140] = 0 +il[5140] = -100 +im[5140] = 0.05 +ij[5140] = 17 +id[5141] = "2376-01-03T06:01:32" +ik[5141] = 0.474 +il[5141] = 104 +im[5141] = 0.0672 +ij[5141] = 28.7 +id[5142] = "2376-01-10T12:08:05" +ik[5142] = 0.171 +il[5142] = 84 +im[5142] = 0.0094 +ij[5142] = 27.3 +id[5143] = "2376-01-29T20:38:11" +ik[5143] = 0.69 +il[5143] = 151 +im[5143] = 0.0656 +ij[5143] = 28.1 +id[5144] = "2376-03-09T17:49:28" +ik[5144] = -25.928 +il[5144] = -124 +im[5144] = 0.0223 +ij[5144] = 15 +id[5145] = "2376-04-24T04:52:31" +ik[5145] = 0.33 +il[5145] = 159 +im[5145] = 0.0489 +ij[5145] = 12 +id[5146] = "2376-07-09T04:27:24" +ik[5146] = 12 +il[5146] = -12 +im[5146] = 0.0583 +ij[5146] = 18 +id[5147] = "2376-07-16T20:55:24" +ik[5147] = 1.567 +il[5147] = 176 +im[5147] = 0.0141 +ij[5147] = 28.1 +id[5148] = "2376-08-22T07:47:59" +ik[5148] = 0.236 +il[5148] = 6 +im[5148] = 0.0606 +ij[5148] = 28.5 +id[5149] = "2376-10-12T10:45:21" +ik[5149] = 0.239 +il[5149] = 96 +im[5149] = 0.0304 +ij[5149] = 28.6 +id[5150] = "2376-11-07T02:19:51" +ik[5150] = 31.087 +il[5150] = 110 +im[5150] = 0.0165 +ij[5150] = 8 +id[5151] = "2376-12-30T23:55:21" +ik[5151] = -1.581 +il[5151] = -53 +im[5151] = 0.0815 +ij[5151] = 2 +id[5152] = "2377-01-09T05:45:18" +ik[5152] = 36.165 +il[5152] = -52 +im[5152] = 0.095 +ij[5152] = 3 +id[5153] = "2377-03-07T03:40:50" +ik[5153] = 0 +il[5153] = 166 +im[5153] = 0.1708 +ij[5153] = 13 +id[5154] = "2377-04-15T04:41:52" +ik[5154] = 2.01 +il[5154] = 143 +im[5154] = 0.236 +ij[5154] = 11 +id[5155] = "2377-05-11T20:46:43" +ik[5155] = 0.399 +il[5155] = -59 +im[5155] = 0.2197 +ij[5155] = 28.2 +id[5156] = "2377-05-26T02:43:26" +ik[5156] = 79.96 +il[5156] = -9 +im[5156] = 0.1888 +ij[5156] = 7.1903 +id[5157] = "2377-06-11T11:30:01" +ik[5157] = 25.198 +il[5157] = 18 +im[5157] = 0.1732 +ij[5157] = 16 +id[5158] = "2377-07-25T12:55:16" +ik[5158] = 140.39 +il[5158] = 65 +im[5158] = 0.0771 +ij[5158] = 14 +id[5159] = "2377-08-08T02:45:08" +ik[5159] = -1.932 +il[5159] = -10 +im[5159] = 0.1041 +ij[5159] = 4 +id[5160] = "2377-08-08T03:13:14" +ik[5160] = 42.743 +il[5160] = -17 +im[5160] = 0.1038 +ij[5160] = 1 +id[5161] = "2377-09-06T02:00:13" +ik[5161] = 3.007 +il[5161] = -76 +im[5161] = 0.0862 +ij[5161] = 28.8 +id[5162] = "2377-09-18T09:30:11" +ik[5162] = 2.703 +il[5162] = -68 +im[5162] = 0.0898 +ij[5162] = 27.4 +id[5163] = "2377-10-25T20:51:55" +ik[5163] = 0 +il[5163] = 129 +im[5163] = 0.0599 +ij[5163] = 17 +id[5164] = "2377-11-11T06:17:37" +ik[5164] = 35.478 +il[5164] = 149 +im[5164] = 0.0707 +ij[5164] = 9 +id[5165] = "2377-12-19T14:30:49" +ik[5165] = 0.044 +il[5165] = 43 +im[5165] = 0.0053 +ij[5165] = 27.3 +id[5166] = "2377-12-24T23:45:15" +ik[5166] = 0.477 +il[5166] = -42 +im[5166] = 0.0681 +ij[5166] = 28.7 +id[5167] = "2378-01-17T08:11:51" +ik[5167] = 0.51 +il[5167] = 60 +im[5167] = 0.0102 +ij[5167] = 27.5 +id[5168] = "2378-02-08T08:48:08" +ik[5168] = 0.737 +il[5168] = -93 +im[5168] = 0.0706 +ij[5168] = 28.2 +id[5169] = "2378-02-18T01:35:24" +ik[5169] = -26.076 +il[5169] = 109 +im[5169] = 0.0252 +ij[5169] = 15 +id[5170] = "2378-03-28T12:00:11" +ik[5170] = 2.256 +il[5170] = -25 +im[5170] = 0.0378 +ij[5170] = 27.6 +id[5171] = "2378-04-12T02:37:11" +ik[5171] = 1.48 +il[5171] = -105 +im[5171] = 0.0393 +ij[5171] = 28.1 +id[5172] = "2378-06-20T18:02:11" +ik[5172] = 12 +il[5172] = -27 +im[5172] = 0.0509 +ij[5172] = 18 +id[5173] = "2378-06-20T21:13:52" +ik[5173] = 0.67 +il[5173] = -71 +im[5173] = 0.0503 +ij[5173] = 12 +id[5174] = "2378-09-21T20:24:02" +ik[5174] = 6.132 +il[5174] = -55 +im[5174] = 0.0215 +ij[5174] = 28.1 +id[5175] = "2378-10-31T05:14:52" +ik[5175] = 0.229 +il[5175] = -168 +im[5175] = 0.0364 +ij[5175] = 28.2 +id[5176] = "2378-10-31T19:41:59" +ik[5176] = 0.816 +il[5176] = -18 +im[5176] = 0.0286 +ij[5176] = 28.6 +id[5177] = "2378-11-04T20:55:49" +ik[5177] = 25.355 +il[5177] = 2 +im[5177] = 0.0313 +ij[5177] = 16 +id[5178] = "2378-11-23T18:42:41" +ik[5178] = 0.052 +il[5178] = -142 +im[5178] = 0.0718 +ij[5178] = 28.5 +id[5179] = "2378-12-11T06:06:57" +ik[5179] = 30.615 +il[5179] = -145 +im[5179] = 0.0567 +ij[5179] = 8 +id[5180] = "2379-02-18T10:04:48" +ik[5180] = 0.367 +il[5180] = 98 +im[5180] = 0.1107 +ij[5180] = 28.8 +id[5181] = "2379-02-20T12:38:56" +ik[5181] = -1.636 +il[5181] = 80 +im[5181] = 0.089 +ij[5181] = 2 +id[5182] = "2379-02-21T03:54:17" +ik[5182] = 37.148 +il[5182] = -143 +im[5182] = 0.0776 +ij[5182] = 3 +id[5183] = "2379-03-10T13:16:40" +ik[5183] = 5.333 +il[5183] = -118 +im[5183] = 0.0204 +ij[5183] = 27.4 +id[5184] = "2379-04-12T08:08:43" +ik[5184] = 4.97 +il[5184] = -90 +im[5184] = 0.1572 +ij[5184] = 27.1 +id[5185] = "2379-04-24T12:55:45" +ik[5185] = 0 +il[5185] = -46 +im[5185] = 0.1674 +ij[5185] = 13 +id[5186] = "2379-05-29T12:41:52" +ik[5186] = 1.27 +il[5186] = -91 +im[5186] = 0.1509 +ij[5186] = 11 +id[5187] = "2379-06-21T19:50:14" +ik[5187] = 4.066 +il[5187] = -171 +im[5187] = 0.2727 +ij[5187] = 28.8 +id[5188] = "2379-07-06T11:59:27" +ik[5188] = 72.96 +il[5188] = 90 +im[5188] = 0.231 +ij[5188] = 7.1334 +id[5189] = "2379-07-24T01:01:38" +ik[5189] = 4.538 +il[5189] = 66 +im[5189] = 0.0493 +ij[5189] = 28.8 +id[5190] = "2379-08-06T22:05:13" +ik[5190] = 1.202 +il[5190] = -114 +im[5190] = 0.0442 +ij[5190] = 27.4 +id[5191] = "2379-08-26T20:44:13" +ik[5191] = 124.33 +il[5191] = 101 +im[5191] = 0.1472 +ij[5191] = 14 +id[5192] = "2379-09-07T17:18:56" +ik[5192] = -2.254 +il[5192] = -91 +im[5192] = 0.0958 +ij[5192] = 4 +id[5193] = "2379-09-24T19:50:18" +ik[5193] = 46.112 +il[5193] = 39 +im[5193] = 0.1265 +ij[5193] = 1 +id[5194] = "2379-09-29T21:46:41" +ik[5194] = 0 +il[5194] = 60 +im[5194] = 0.1021 +ij[5194] = 17 +id[5195] = "2379-11-25T08:17:27" +ik[5195] = 0.278 +il[5195] = 98 +im[5195] = 0.0907 +ij[5195] = 27.3 +id[5196] = "2379-12-14T01:16:47" +ik[5196] = 0.471 +il[5196] = 27 +im[5196] = 0.0334 +ij[5196] = 28.7 +id[5197] = "2379-12-25T07:06:28" +ik[5197] = 0.563 +il[5197] = 49 +im[5197] = 0.0679 +ij[5197] = 27.5 +id[5198] = "2380-01-21T03:18:04" +ik[5198] = 34.719 +il[5198] = 7 +im[5198] = 0.0789 +ij[5198] = 9 +id[5199] = "2380-01-24T13:33:38" +ik[5199] = 4.905 +il[5199] = -114 +im[5199] = 0.043 +ij[5199] = 28.2 +id[5200] = "2380-01-27T23:56:15" +ik[5200] = -26.227 +il[5200] = 123 +im[5200] = 0.017 +ij[5200] = 15 +id[5201] = "2380-03-06T14:55:35" +ik[5201] = 1.99 +il[5201] = -91 +im[5201] = 0.0628 +ij[5201] = 27.6 +id[5202] = "2380-05-10T14:12:53" +ik[5202] = 3.88 +il[5202] = -179 +im[5202] = 0.0383 +ij[5202] = 27.2 +id[5203] = "2380-06-01T08:47:22" +ik[5203] = 12 +il[5203] = 112 +im[5203] = 0.0476 +ij[5203] = 18 +id[5204] = "2380-08-02T08:21:25" +ik[5204] = 1.11 +il[5204] = -6 +im[5204] = 0.0072 +ij[5204] = 12 +id[5205] = "2380-10-16T12:41:36" +ik[5205] = 25.577 +il[5205] = 141 +im[5205] = 0.0388 +ij[5205] = 16 +id[5206] = "2380-11-21T01:37:38" +ik[5206] = 1.294 +il[5206] = -71 +im[5206] = 0.0415 +ij[5206] = 28.6 +id[5207] = "2381-01-13T12:47:50" +ik[5207] = 31.151 +il[5207] = -88 +im[5207] = 0.0727 +ij[5207] = 8 +id[5208] = "2381-01-24T12:22:17" +ik[5208] = 0.945 +il[5208] = 23 +im[5208] = 0.0584 +ij[5208] = 28.8 +id[5209] = "2381-01-30T23:56:42" +ik[5209] = 4.809 +il[5209] = -89 +im[5209] = 0.0778 +ij[5209] = 27.4 +id[5210] = "2381-02-16T05:29:00" +ik[5210] = 5.002 +il[5210] = -18 +im[5210] = 0.0433 +ij[5210] = 27.1 +id[5211] = "2381-02-26T22:05:26" +ik[5211] = 0.006 +il[5211] = -166 +im[5211] = 0.1012 +ij[5211] = 28.5 +id[5212] = "2381-03-09T17:34:55" +ik[5212] = 23 +il[5212] = 4 +im[5212] = 0.0861 +ij[5212] = 17 +id[5213] = "2381-04-18T04:15:18" +ik[5213] = 40.754 +il[5213] = -143 +im[5213] = 0.0372 +ij[5213] = 3 +id[5214] = "2381-05-09T16:25:37" +ik[5214] = -1.941 +il[5214] = -122 +im[5214] = 0.1678 +ij[5214] = 2 +id[5215] = "2381-06-10T10:57:04" +ik[5215] = 2.026 +il[5215] = -99 +im[5215] = 0.108 +ij[5215] = 27.3 +id[5216] = "2381-06-21T09:28:26" +ik[5216] = 1.234 +il[5216] = 27 +im[5216] = 0.2489 +ij[5216] = 28.2 +id[5217] = "2381-07-03T20:44:44" +ik[5217] = 0 +il[5217] = -23 +im[5217] = 0.3151 +ij[5217] = 13 +id[5218] = "2381-08-01T22:00:59" +ik[5218] = 6.35 +il[5218] = -134 +im[5218] = 0.2896 +ij[5218] = 11 +id[5219] = "2381-08-16T06:49:06" +ik[5219] = 4.687 +il[5219] = 56 +im[5219] = 0.2537 +ij[5219] = 28.1 +id[5220] = "2381-09-03T20:48:19" +ik[5220] = 62 +il[5220] = 29 +im[5220] = 0.1649 +ij[5220] = 7.0986 +id[5221] = "2381-10-09T21:30:35" +ik[5221] = 2.309 +il[5221] = 13 +im[5221] = 0.1823 +ij[5221] = 27.3 +id[5222] = "2381-10-15T20:28:04" +ik[5222] = 103.99 +il[5222] = 87 +im[5222] = 0.1146 +ij[5222] = 14 +id[5223] = "2381-10-25T20:17:38" +ik[5223] = -2.325 +il[5223] = -172 +im[5223] = 0.0781 +ij[5223] = 4 +id[5224] = "2381-11-20T17:35:09" +ik[5224] = 1.113 +il[5224] = 121 +im[5224] = 0.1378 +ij[5224] = 27.5 +id[5225] = "2381-11-21T16:37:12" +ik[5225] = 44.382 +il[5225] = 145 +im[5225] = 0.1155 +ij[5225] = 1 +id[5226] = "2381-11-22T03:27:22" +ik[5226] = 0.749 +il[5226] = -13 +im[5226] = 0.1035 +ij[5226] = 28.7 +id[5227] = "2382-01-01T10:31:03" +ik[5227] = -26.341 +il[5227] = -91 +im[5227] = 0.1118 +ij[5227] = 15 +id[5228] = "2382-02-10T08:46:30" +ik[5228] = 1.642 +il[5228] = -44 +im[5228] = 0.0925 +ij[5228] = 27.6 +id[5229] = "2382-03-14T23:06:03" +ik[5229] = 32.842 +il[5229] = 50 +im[5229] = 0.0792 +ij[5229] = 9 +id[5230] = "2382-04-19T23:02:29" +ik[5230] = 3.57 +il[5230] = 30 +im[5230] = 0.0198 +ij[5230] = 27.2 +id[5231] = "2382-05-13T07:51:05" +ik[5231] = 12 +il[5231] = 119 +im[5231] = 0.0502 +ij[5231] = 18 +id[5232] = "2382-06-11T11:46:31" +ik[5232] = 3.089 +il[5232] = -15 +im[5232] = 0.0423 +ij[5232] = 28.1 +id[5233] = "2382-09-08T18:46:19" +ik[5233] = 1.05 +il[5233] = 19 +im[5233] = 0.0049 +ij[5233] = 12 +id[5234] = "2382-09-28T23:31:21" +ik[5234] = 25.738 +il[5234] = -15 +im[5234] = 0.0525 +ij[5234] = 16 +id[5235] = "2382-12-13T01:31:07" +ik[5235] = 1.537 +il[5235] = -38 +im[5235] = 0.0587 +ij[5235] = 28.6 +id[5236] = "2383-01-08T00:54:12" +ik[5236] = 4.464 +il[5236] = -138 +im[5236] = 0.0692 +ij[5236] = 27.4 +id[5237] = "2383-01-09T04:48:25" +ik[5237] = 1.297 +il[5237] = 177 +im[5237] = 0.0704 +ij[5237] = 28.8 +id[5238] = "2383-01-22T18:32:58" +ik[5238] = 5.326 +il[5238] = 99 +im[5238] = 0.0671 +ij[5238] = 27.1 +id[5239] = "2383-02-11T09:48:08" +ik[5239] = 0 +il[5239] = 54 +im[5239] = 0.0477 +ij[5239] = 17 +id[5240] = "2383-02-22T12:24:17" +ik[5240] = 32.767 +il[5240] = 122 +im[5240] = 0.0717 +ij[5240] = 8 +id[5241] = "2383-04-16T13:28:12" +ik[5241] = 0.08 +il[5241] = -112 +im[5241] = 0.0716 +ij[5241] = 27.3 +id[5242] = "2383-05-06T18:20:21" +ik[5242] = 0.475 +il[5242] = 6 +im[5242] = 0.1101 +ij[5242] = 28.5 +id[5243] = "2383-05-19T00:29:41" +ik[5243] = 1.47 +il[5243] = 30 +im[5243] = 0.12 +ij[5243] = 27.5 +id[5244] = "2383-05-21T12:10:54" +ik[5244] = 1.158 +il[5244] = -121 +im[5244] = 0.0944 +ij[5244] = 28.7 +id[5245] = "2383-06-29T02:13:12" +ik[5245] = 46.562 +il[5245] = 38 +im[5245] = 0.1596 +ij[5245] = 3 +id[5246] = "2383-07-29T12:08:46" +ik[5246] = -2.389 +il[5246] = -177 +im[5246] = 0.2128 +ij[5246] = 2 +id[5247] = "2383-08-20T07:15:22" +ik[5247] = 6.06 +il[5247] = 108 +im[5247] = 0.0564 +ij[5247] = 27.6 +id[5248] = "2383-09-15T20:28:34" +ik[5248] = 0 +il[5248] = 170 +im[5248] = 0.0549 +ij[5248] = 13 +id[5249] = "2383-10-21T01:29:52" +ik[5249] = 2.49 +il[5249] = 59 +im[5249] = 0.3496 +ij[5249] = 11 +id[5250] = "2383-11-09T17:09:51" +ik[5250] = 0.24 +il[5250] = -146 +im[5250] = 0.0706 +ij[5250] = 28.2 +id[5251] = "2383-11-20T19:31:10" +ik[5251] = 65.96 +il[5251] = -75 +im[5251] = 0.1344 +ij[5251] = 7.1245 +id[5252] = "2383-12-06T17:41:55" +ik[5252] = -24.259 +il[5252] = 104 +im[5252] = 0.0365 +ij[5252] = 15 +id[5253] = "2383-12-28T19:38:58" +ik[5253] = 1.249 +il[5253] = -75 +im[5253] = 0.1633 +ij[5253] = 27.6 +id[5254] = "2384-01-06T01:34:58" +ik[5254] = 112.21 +il[5254] = -86 +im[5254] = 0.0977 +ij[5254] = 14 +id[5255] = "2384-01-12T06:59:26" +ik[5255] = -1.894 +il[5255] = -108 +im[5255] = 0.1487 +ij[5255] = 4 +id[5256] = "2384-01-29T19:38:12" +ik[5256] = 39.677 +il[5256] = -132 +im[5256] = 0.0485 +ij[5256] = 1 +id[5257] = "2384-03-25T12:27:08" +ik[5257] = 3.084 +il[5257] = 141 +im[5257] = 0.0595 +ij[5257] = 27.2 +id[5258] = "2384-04-21T06:58:38" +ik[5258] = 12 +il[5258] = 116 +im[5258] = 0.0719 +ij[5258] = 18 +id[5259] = "2384-04-24T17:34:03" +ik[5259] = 31.628 +il[5259] = -11 +im[5259] = 0.0314 +ij[5259] = 9 +id[5260] = "2384-07-04T12:55:14" +ik[5260] = 0.648 +il[5260] = 12 +im[5260] = 0.0273 +ij[5260] = 28.2 +id[5261] = "2384-08-08T10:54:05" +ik[5261] = 0.345 +il[5261] = 22 +im[5261] = 0.0469 +ij[5261] = 28.1 +id[5262] = "2384-09-10T13:44:21" +ik[5262] = 25.871 +il[5262] = -63 +im[5262] = 0.0576 +ij[5262] = 16 +id[5263] = "2384-10-14T10:25:53" +ik[5263] = 0.59 +il[5263] = -40 +im[5263] = 0.0179 +ij[5263] = 12 +id[5264] = "2384-12-18T02:59:46" +ik[5264] = 4.199 +il[5264] = 179 +im[5264] = 0.0579 +ij[5264] = 27.4 +id[5265] = "2384-12-19T15:59:48" +ik[5265] = 0.328 +il[5265] = -3 +im[5265] = 0.0586 +ij[5265] = 28.2 +id[5266] = "2384-12-26T05:12:05" +ik[5266] = 1.557 +il[5266] = -136 +im[5266] = 0.0019 +ij[5266] = 28.8 +id[5267] = "2385-01-01T07:20:28" +ik[5267] = 5.578 +il[5267] = -114 +im[5267] = 0.0593 +ij[5267] = 27.1 +id[5268] = "2385-01-02T13:27:42" +ik[5268] = 1.438 +il[5268] = 177 +im[5268] = 0.0633 +ij[5268] = 28.6 +id[5269] = "2385-01-19T13:23:48" +ik[5269] = 5.735 +il[5269] = -32 +im[5269] = 0.0538 +ij[5269] = 28.1 +id[5270] = "2385-01-20T15:56:58" +ik[5270] = 0 +il[5270] = -55 +im[5270] = 0.0444 +ij[5270] = 17 +id[5271] = "2385-03-11T04:13:17" +ik[5271] = 1.901 +il[5271] = -124 +im[5271] = 0.0402 +ij[5271] = 28.2 +id[5272] = "2385-03-21T07:42:54" +ik[5272] = 0.247 +il[5272] = -80 +im[5272] = 0.0354 +ij[5272] = 27.3 +id[5273] = "2385-04-18T23:00:43" +ik[5273] = 35.314 +il[5273] = -37 +im[5273] = 0.0473 +ij[5273] = 8 +id[5274] = "2385-04-20T01:19:10" +ik[5274] = 0.913 +il[5274] = -61 +im[5274] = 0.0306 +ij[5274] = 27.5 +id[5275] = "2385-05-05T04:48:33" +ik[5275] = 0.672 +il[5275] = 31 +im[5275] = 0.0102 +ij[5275] = 28.7 +id[5276] = "2385-05-19T05:16:41" +ik[5276] = -25.07 +il[5276] = 159 +im[5276] = 0.033 +ij[5276] = 15 +id[5277] = "2385-06-28T05:09:52" +ik[5277] = 0.391 +il[5277] = -172 +im[5277] = 0.08 +ij[5277] = 28.5 +id[5278] = "2385-07-01T18:13:53" +ik[5278] = 3.864 +il[5278] = 27 +im[5278] = 0.0106 +ij[5278] = 27.6 +id[5279] = "2385-08-16T16:26:15" +ik[5279] = 46.126 +il[5279] = 144 +im[5279] = 0.0403 +ij[5279] = 3 +id[5280] = "2385-09-09T06:51:27" +ik[5280] = -2.202 +il[5280] = 159 +im[5280] = 0.1106 +ij[5280] = 2 +id[5281] = "2385-09-12T06:37:42" +ik[5281] = 5.696 +il[5281] = -168 +im[5281] = 0.0179 +ij[5281] = 27.2 +id[5282] = "2385-10-11T03:08:15" +ik[5282] = 11 +il[5282] = 167 +im[5282] = 0.0174 +ij[5282] = 18 +id[5283] = "2385-11-06T01:35:27" +ik[5283] = 0 +il[5283] = 83 +im[5283] = 0.075 +ij[5283] = 13 +id[5284] = "2385-11-17T17:43:28" +ik[5284] = 12 +il[5284] = -45 +im[5284] = 0.1542 +ij[5284] = 17 +id[5285] = "2385-11-29T01:11:35" +ik[5285] = 0.427 +il[5285] = -47 +im[5285] = 0.2615 +ij[5285] = 28.1 +id[5286] = "2385-12-14T10:22:19" +ik[5286] = 2.37 +il[5286] = -57 +im[5286] = 0.1592 +ij[5286] = 11 +id[5287] = "2385-12-29T11:00:50" +ik[5287] = 4.235 +il[5287] = -95 +im[5287] = 0.1024 +ij[5287] = 28.1 +id[5288] = "2386-01-08T05:47:31" +ik[5288] = 1.594 +il[5288] = 76 +im[5288] = 0.1952 +ij[5288] = 27.2 +id[5289] = "2386-01-20T00:38:03" +ik[5289] = 74.96 +il[5289] = -107 +im[5289] = 0.2139 +ij[5289] = 7.1462 +id[5290] = "2386-01-29T09:42:52" +ik[5290] = 1.699 +il[5290] = -155 +im[5290] = 0.0834 +ij[5290] = 27.2 +id[5291] = "2386-03-14T00:46:07" +ik[5291] = -1.629 +il[5291] = 31 +im[5291] = 0.1041 +ij[5291] = 4 +id[5292] = "2386-03-20T11:37:52" +ik[5292] = 134.42 +il[5292] = -72 +im[5292] = 0.0899 +ij[5292] = 14 +id[5293] = "2386-03-21T01:24:14" +ik[5293] = 37.395 +il[5293] = 87 +im[5293] = 0.0793 +ij[5293] = 1 +id[5294] = "2386-03-24T02:51:43" +ik[5294] = 12 +il[5294] = 94 +im[5294] = 0.0144 +ij[5294] = 18 +id[5295] = "2386-05-31T23:56:16" +ik[5295] = 31.289 +il[5295] = 70 +im[5295] = 0.0324 +ij[5295] = 9 +id[5296] = "2386-06-19T11:26:03" +ik[5296] = 4.325 +il[5296] = 74 +im[5296] = 0.0332 +ij[5296] = 28.2 +id[5297] = "2386-08-01T01:57:18" +ik[5297] = 5.878 +il[5297] = -96 +im[5297] = 0.0201 +ij[5297] = 28.1 +id[5298] = "2386-08-23T19:14:08" +ik[5298] = 25.995 +il[5298] = -136 +im[5298] = 0.0491 +ij[5298] = 16 +id[5299] = "2386-11-24T07:15:40" +ik[5299] = 0.17 +il[5299] = -117 +im[5299] = 0.0192 +ij[5299] = 12 +id[5300] = "2387-01-01T14:01:05" +ik[5300] = 0 +il[5300] = -27 +im[5300] = 0.0343 +ij[5300] = 17 +id[5301] = "2387-02-08T08:34:35" +ik[5301] = 1.358 +il[5301] = 52 +im[5301] = 0.0621 +ij[5301] = 28.2 +id[5302] = "2387-02-28T02:00:36" +ik[5302] = 0.273 +il[5302] = -15 +im[5302] = 0.0421 +ij[5302] = 27.3 +id[5303] = "2387-03-29T01:00:37" +ik[5303] = 0.713 +il[5303] = -82 +im[5303] = 0.0458 +ij[5303] = 27.5 +id[5304] = "2387-04-11T23:19:22" +ik[5304] = 5.508 +il[5304] = 81 +im[5304] = 0.0619 +ij[5304] = 28.1 +id[5305] = "2387-04-25T15:19:10" +ik[5305] = 0.412 +il[5305] = -27 +im[5305] = 0.0628 +ij[5305] = 28.7 +id[5306] = "2387-04-27T14:48:28" +ik[5306] = -25.465 +il[5306] = 0 +im[5306] = 0.0437 +ij[5306] = 15 +id[5307] = "2387-06-07T05:24:45" +ik[5307] = 3.219 +il[5307] = 177 +im[5307] = 0.0765 +ij[5307] = 27.6 +id[5308] = "2387-07-09T11:59:50" +ik[5308] = 35.959 +il[5308] = 35 +im[5308] = 0.0448 +ij[5308] = 8 +id[5309] = "2387-08-10T09:47:30" +ik[5309] = 5.087 +il[5309] = 21 +im[5309] = 0.0169 +ij[5309] = 27.2 +id[5310] = "2387-08-29T15:56:24" +ik[5310] = 11 +il[5310] = 117 +im[5310] = 0.0827 +ij[5310] = 18 +id[5311] = "2387-08-30T18:07:42" +ik[5311] = 0.001 +il[5311] = 95 +im[5311] = 0.0913 +ij[5311] = 28.5 +id[5312] = "2387-10-03T19:18:11" +ik[5312] = 41.508 +il[5312] = 50 +im[5312] = 0.0495 +ij[5312] = 3 +id[5313] = "2387-10-10T22:42:35" +ik[5313] = -1.903 +il[5313] = 68 +im[5313] = 0.1113 +ij[5313] = 2 +id[5314] = "2387-12-14T11:38:21" +ik[5314] = 0 +il[5314] = 140 +im[5314] = 0.0616 +ij[5314] = 13 +id[5315] = "2387-12-17T21:26:00" +ik[5315] = 0.429 +il[5315] = 26 +im[5315] = 0.0931 +ij[5315] = 28.2 +id[5316] = "2388-01-23T10:20:33" +ik[5316] = 4.2 +il[5316] = 168 +im[5316] = 0.0551 +ij[5316] = 11 +id[5317] = "2388-02-09T07:21:08" +ik[5317] = 3.737 +il[5317] = 177 +im[5317] = 0.1019 +ij[5317] = 28.5 +id[5318] = "2388-03-03T12:59:12" +ik[5318] = 80.06 +il[5318] = -58 +im[5318] = 0.0774 +ij[5318] = 7.1783 +id[5319] = "2388-04-30T17:01:15" +ik[5319] = -1.555 +il[5319] = 72 +im[5319] = 0.0144 +ij[5319] = 4 +id[5320] = "2388-04-30T20:36:14" +ik[5320] = 37.104 +il[5320] = 20 +im[5320] = 0.0168 +ij[5320] = 1 +id[5321] = "2388-05-05T08:52:31" +ik[5321] = 1.274 +il[5321] = -121 +im[5321] = 0.0913 +ij[5321] = 28.5 +id[5322] = "2388-05-09T09:05:03" +ik[5322] = 146.89 +il[5322] = -86 +im[5322] = 0.0767 +ij[5322] = 14 +id[5323] = "2388-07-07T17:10:30" +ik[5323] = 31.801 +il[5323] = 2 +im[5323] = 0.026 +ij[5323] = 9 +id[5324] = "2388-08-03T22:56:56" +ik[5324] = 26.116 +il[5324] = 179 +im[5324] = 0.0428 +ij[5324] = 16 +id[5325] = "2388-10-19T22:15:10" +ik[5325] = 1.738 +il[5325] = -143 +im[5325] = 0.0238 +ij[5325] = 28.1 +id[5326] = "2388-12-12T23:35:41" +ik[5326] = 0 +il[5326] = 12 +im[5326] = 0.0271 +ij[5326] = 17 +id[5327] = "2389-01-15T07:55:40" +ik[5327] = 0.96 +il[5327] = -133 +im[5327] = 0.0333 +ij[5327] = 12 +id[5328] = "2389-04-06T16:53:19" +ik[5328] = -25.696 +il[5328] = -41 +im[5328] = 0.0401 +ij[5328] = 15 +id[5329] = "2389-04-07T21:27:02" +ik[5329] = 1.601 +il[5329] = -97 +im[5329] = 0.0262 +ij[5329] = 28.1 +id[5330] = "2389-04-17T01:00:52" +ik[5330] = 0.187 +il[5330] = -50 +im[5330] = 0.0675 +ij[5330] = 28.7 +id[5331] = "2389-05-16T02:41:35" +ik[5331] = 2.857 +il[5331] = -151 +im[5331] = 0.0688 +ij[5331] = 27.6 +id[5332] = "2389-07-17T21:35:07" +ik[5332] = 4.717 +il[5332] = -178 +im[5332] = 0.0453 +ij[5332] = 27.2 +id[5333] = "2389-08-06T03:31:03" +ik[5333] = 12 +il[5333] = -79 +im[5333] = 0.0334 +ij[5333] = 18 +id[5334] = "2389-09-11T03:26:56" +ik[5334] = 33.494 +il[5334] = -88 +im[5334] = 0.0726 +ij[5334] = 8 +id[5335] = "2389-11-10T18:54:09" +ik[5335] = -1.697 +il[5335] = -92 +im[5335] = 0.0251 +ij[5335] = 2 +id[5336] = "2389-11-16T07:46:07" +ik[5336] = 37.958 +il[5336] = 128 +im[5336] = 0.0928 +ij[5336] = 3 +id[5337] = "2389-12-11T10:55:07" +ik[5337] = 1.09 +il[5337] = -36 +im[5337] = 0.0434 +ij[5337] = 28.5 +id[5338] = "2390-01-16T09:05:31" +ik[5338] = 0 +il[5338] = -21 +im[5338] = 0.1594 +ij[5338] = 13 +id[5339] = "2390-01-18T22:58:32" +ik[5339] = 2.314 +il[5339] = 155 +im[5339] = 0.0922 +ij[5339] = 28.5 +id[5340] = "2390-02-26T00:41:00" +ik[5340] = 4.2 +il[5340] = 110 +im[5340] = 0.1793 +ij[5340] = 11 +id[5341] = "2390-03-14T03:58:40" +ik[5341] = 1.355 +il[5341] = 13 +im[5341] = 0.0686 +ij[5341] = 28.1 +id[5342] = "2390-03-20T00:13:32" +ik[5342] = 2.011 +il[5342] = 124 +im[5342] = 0.1687 +ij[5342] = 28.2 +id[5343] = "2390-04-08T14:14:08" +ik[5343] = 82.21 +il[5343] = 91 +im[5343] = 0.1089 +ij[5343] = 7.2067 +id[5344] = "2390-06-09T14:48:11" +ik[5344] = 38.407 +il[5344] = -41 +im[5344] = 0.0637 +ij[5344] = 1 +id[5345] = "2390-06-14T13:36:50" +ik[5345] = -1.624 +il[5345] = 25 +im[5345] = 0.0979 +ij[5345] = 4 +id[5346] = "2390-06-14T23:45:09" +ik[5346] = 149.61 +il[5346] = -123 +im[5346] = 0.0948 +ij[5346] = 14 +id[5347] = "2390-07-13T11:44:51" +ik[5347] = 26.226 +il[5347] = -27 +im[5347] = 0.0805 +ij[5347] = 16 +id[5348] = "2390-08-20T01:05:09" +ik[5348] = 33.154 +il[5348] = 138 +im[5348] = 0.0634 +ij[5348] = 9 +id[5349] = "2390-08-20T06:32:57" +ik[5349] = 1.114 +il[5349] = 58 +im[5349] = 0.0658 +ij[5349] = 28.5 +id[5350] = "2390-10-20T19:29:00" +ik[5350] = 3.413 +il[5350] = 104 +im[5350] = 0.0724 +ij[5350] = 27.4 +id[5351] = "2390-11-03T17:37:07" +ik[5351] = 6.319 +il[5351] = -92 +im[5351] = 0.0651 +ij[5351] = 27.1 +id[5352] = "2390-11-12T07:04:58" +ik[5352] = 0.659 +il[5352] = 149 +im[5352] = 0.025 +ij[5352] = 28.2 +id[5353] = "2390-11-17T22:38:25" +ik[5353] = 2.196 +il[5353] = -29 +im[5353] = 0.0695 +ij[5353] = 28.8 +id[5354] = "2390-11-24T03:22:25" +ik[5354] = 0 +il[5354] = -39 +im[5354] = 0.0237 +ij[5354] = 17 +id[5355] = "2390-12-30T04:47:58" +ik[5355] = 0.357 +il[5355] = -67 +im[5355] = 0.0608 +ij[5355] = 28.1 +id[5356] = "2391-01-03T19:44:16" +ik[5356] = 0.421 +il[5356] = 115 +im[5356] = 0.0472 +ij[5356] = 28.1 +id[5357] = "2391-03-18T08:33:13" +ik[5357] = -25.868 +il[5357] = -58 +im[5357] = 0.0415 +ij[5357] = 15 +id[5358] = "2391-03-28T05:57:27" +ik[5358] = 0.76 +il[5358] = 86 +im[5358] = 0.0629 +ij[5358] = 12 +id[5359] = "2391-06-21T19:31:06" +ik[5359] = 1.572 +il[5359] = 155 +im[5359] = 0.0594 +ij[5359] = 28.1 +id[5360] = "2391-06-27T19:11:38" +ik[5360] = 4.449 +il[5360] = -141 +im[5360] = 0.0446 +ij[5360] = 27.2 +id[5361] = "2391-07-17T13:10:44" +ik[5361] = 12 +il[5361] = 141 +im[5361] = 0.0329 +ij[5361] = 18 +id[5362] = "2391-09-02T08:35:46" +ik[5362] = 1.775 +il[5362] = -56 +im[5362] = 0.0606 +ij[5362] = 28.2 +id[5363] = "2391-10-24T18:48:16" +ik[5363] = 31.552 +il[5363] = -62 +im[5363] = 0.0087 +ij[5363] = 8 +id[5364] = "2391-12-16T04:55:04" +ik[5364] = -1.594 +il[5364] = -67 +im[5364] = 0.0771 +ij[5364] = 2 +id[5365] = "2391-12-25T22:43:06" +ik[5365] = 36.313 +il[5365] = 120 +im[5365] = 0.1042 +ij[5365] = 3 +id[5366] = "2392-02-20T23:45:35" +ik[5366] = 0 +il[5366] = -66 +im[5366] = 0.1761 +ij[5366] = 13 +id[5367] = "2392-03-31T15:42:21" +ik[5367] = 2.9 +il[5367] = 53 +im[5367] = 0.2274 +ij[5367] = 11 +id[5368] = "2392-05-11T22:48:11" +ik[5368] = 80.96 +il[5368] = 125 +im[5368] = 0.1785 +ij[5368] = 7.2041 +id[5369] = "2392-06-15T11:03:51" +ik[5369] = 26.034 +il[5369] = -84 +im[5369] = 0.0303 +ij[5369] = 16 +id[5370] = "2392-07-14T05:20:59" +ik[5370] = 144.23 +il[5370] = -79 +im[5370] = 0.0355 +ij[5370] = 14 +id[5371] = "2392-07-21T05:07:09" +ik[5371] = 41.263 +il[5371] = -7 +im[5371] = 0.1155 +ij[5371] = 1 +id[5372] = "2392-07-25T16:53:18" +ik[5372] = -1.822 +il[5372] = -140 +im[5372] = 0.0426 +ij[5372] = 4 +id[5373] = "2392-09-28T04:33:36" +ik[5373] = 2.967 +il[5373] = -46 +im[5373] = 0.0874 +ij[5373] = 27.4 +id[5374] = "2392-10-14T21:56:16" +ik[5374] = 35.001 +il[5374] = -144 +im[5374] = 0.0804 +ij[5374] = 9 +id[5375] = "2392-11-01T18:44:29" +ik[5375] = 3.659 +il[5375] = 80 +im[5375] = 0.0539 +ij[5375] = 28.2 +id[5376] = "2392-11-02T17:45:00" +ik[5376] = 2.487 +il[5376] = 104 +im[5376] = 0.0407 +ij[5376] = 28.8 +id[5377] = "2392-11-03T06:22:07" +ik[5377] = 0 +il[5377] = -80 +im[5377] = 0.0327 +ij[5377] = 17 +id[5378] = "2392-11-09T17:54:39" +ik[5378] = 1.255 +il[5378] = 179 +im[5378] = 0.0626 +ij[5378] = 28.5 +id[5379] = "2392-12-28T00:29:19" +ik[5379] = 0.107 +il[5379] = -173 +im[5379] = 0.0667 +ij[5379] = 27.3 +id[5380] = "2393-01-25T14:13:10" +ik[5380] = 0.511 +il[5380] = -98 +im[5380] = 0.0667 +ij[5380] = 27.5 +id[5381] = "2393-02-25T21:18:17" +ik[5381] = -26.02 +il[5381] = 102 +im[5381] = 0.0456 +ij[5381] = 15 +id[5382] = "2393-03-10T02:58:29" +ik[5382] = 1.599 +il[5382] = 147 +im[5382] = 0.0561 +ij[5382] = 28.6 +id[5383] = "2393-03-15T07:37:11" +ik[5383] = 1.559 +il[5383] = 127 +im[5383] = 0.0048 +ij[5383] = 28.1 +id[5384] = "2393-05-31T16:05:27" +ik[5384] = 0.34 +il[5384] = 31 +im[5384] = 0.0522 +ij[5384] = 12 +id[5385] = "2393-06-27T22:38:32" +ik[5385] = 12 +il[5385] = -3 +im[5385] = 0.0399 +ij[5385] = 18 +id[5386] = "2393-08-23T18:41:52" +ik[5386] = 3.32 +il[5386] = -103 +im[5386] = 0.0346 +ij[5386] = 28.1 +id[5387] = "2393-11-12T12:32:42" +ik[5387] = 25.236 +il[5387] = 55 +im[5387] = 0.0343 +ij[5387] = 16 +id[5388] = "2393-11-28T05:41:09" +ik[5388] = 30.68 +il[5388] = -50 +im[5388] = 0.0324 +ij[5388] = 8 +id[5389] = "2394-01-28T23:22:38" +ik[5389] = -1.596 +il[5389] = -81 +im[5389] = 0.0659 +ij[5389] = 2 +id[5390] = "2394-02-03T12:08:12" +ik[5390] = 36.509 +il[5390] = 140 +im[5390] = 0.0954 +ij[5390] = 3 +id[5391] = "2394-04-03T19:33:19" +ik[5391] = 1.936 +il[5391] = -125 +im[5391] = 0.0548 +ij[5391] = 28.2 +id[5392] = "2394-04-04T05:21:27" +ik[5392] = 0 +il[5392] = 92 +im[5392] = 0.0372 +ij[5392] = 13 +id[5393] = "2394-05-10T16:04:34" +ik[5393] = 0.04 +il[5393] = -106 +im[5393] = 0.2588 +ij[5393] = 11 +id[5394] = "2394-06-19T04:24:03" +ik[5394] = 75.96 +il[5394] = -113 +im[5394] = 0.2106 +ij[5394] = 7.1574 +id[5395] = "2394-08-13T07:34:55" +ik[5395] = 131.09 +il[5395] = 17 +im[5395] = 0.1458 +ij[5395] = 14 +id[5396] = "2394-08-26T12:35:32" +ik[5396] = -2.128 +il[5396] = 71 +im[5396] = 0.1493 +ij[5396] = 4 +id[5397] = "2394-08-30T00:58:26" +ik[5397] = 2.039 +il[5397] = -80 +im[5397] = 0.1269 +ij[5397] = 27.4 +id[5398] = "2394-09-06T02:19:06" +ik[5398] = 45.059 +il[5398] = -31 +im[5398] = 0.0649 +ij[5398] = 1 +id[5399] = "2394-10-11T08:40:48" +ik[5399] = 0 +il[5399] = -140 +im[5399] = 0.0969 +ij[5399] = 17 +id[5400] = "2394-10-15T17:16:26" +ik[5400] = 3.025 +il[5400] = 134 +im[5400] = 0.0124 +ij[5400] = 28.8 +id[5401] = "2394-12-05T13:59:55" +ik[5401] = 0.105 +il[5401] = -36 +im[5401] = 0.0931 +ij[5401] = 27.3 +id[5402] = "2394-12-25T22:57:09" +ik[5402] = 35.329 +il[5402] = 30 +im[5402] = 0.0334 +ij[5402] = 9 +id[5403] = "2395-01-03T20:07:45" +ik[5403] = 0.523 +il[5403] = 159 +im[5403] = 0.0861 +ij[5403] = 27.5 +id[5404] = "2395-01-10T13:40:15" +ik[5404] = 0.131 +il[5404] = -39 +im[5404] = 0.0201 +ij[5404] = 28.5 +id[5405] = "2395-02-05T12:57:09" +ik[5405] = -26.17 +il[5405] = -136 +im[5405] = 0.0596 +ij[5405] = 15 +id[5406] = "2395-03-16T00:28:58" +ik[5406] = 2.099 +il[5406] = 61 +im[5406] = 0.0589 +ij[5406] = 27.6 +id[5407] = "2395-03-23T17:03:05" +ik[5407] = 2.229 +il[5407] = -114 +im[5407] = 0.0109 +ij[5407] = 28.6 +id[5408] = "2395-03-27T01:19:18" +ik[5408] = 0.574 +il[5408] = 154 +im[5408] = 0.0368 +ij[5408] = 28.7 +id[5409] = "2395-06-09T14:33:49" +ik[5409] = 12 +il[5409] = -47 +im[5409] = 0.0464 +ij[5409] = 18 +id[5410] = "2395-07-18T12:35:41" +ik[5410] = 1.01 +il[5410] = -2 +im[5410] = 0.0077 +ij[5410] = 12 +id[5411] = "2395-10-24T13:45:29" +ik[5411] = 25.502 +il[5411] = 46 +im[5411] = 0.0298 +ij[5411] = 16 +id[5412] = "2395-12-31T21:31:49" +ik[5412] = 30.819 +il[5412] = -133 +im[5412] = 0.0737 +ij[5412] = 8 +id[5413] = "2396-02-12T04:10:54" +ik[5413] = 4.986 +il[5413] = 170 +im[5413] = 0.0885 +ij[5413] = 27.4 +id[5414] = "2396-02-29T23:03:24" +ik[5414] = 4.85 +il[5414] = 56 +im[5414] = 0.0695 +ij[5414] = 27.1 +id[5415] = "2396-03-24T07:44:06" +ik[5415] = 38.947 +il[5415] = 147 +im[5415] = 0.1398 +ij[5415] = 3 +id[5416] = "2396-03-25T17:36:03" +ik[5416] = 23 +il[5416] = 12 +im[5416] = 0.1398 +ij[5416] = 17 +id[5417] = "2396-04-05T01:00:27" +ik[5417] = -1.774 +il[5417] = -1 +im[5417] = 0.1027 +ij[5417] = 2 +id[5418] = "2396-04-09T13:50:56" +ik[5418] = 1.254 +il[5418] = -151 +im[5418] = 0.1334 +ij[5418] = 28.8 +id[5419] = "2396-06-03T07:35:25" +ik[5419] = 0 +il[5419] = 100 +im[5419] = 0.2599 +ij[5419] = 13 +id[5420] = "2396-07-03T19:38:48" +ik[5420] = 4.57 +il[5420] = -162 +im[5420] = 0.1702 +ij[5420] = 11 +id[5421] = "2396-07-16T12:18:45" +ik[5421] = 0 +il[5421] = -117 +im[5421] = 0.2631 +ij[5421] = 18 +id[5422] = "2396-07-17T23:31:59" +ik[5422] = 4.312 +il[5422] = 88 +im[5422] = 0.1687 +ij[5422] = 28.1 +id[5423] = "2396-07-18T03:16:26" +ik[5423] = 6.23 +il[5423] = 33 +im[5423] = 0.1574 +ij[5423] = 28.8 +id[5424] = "2396-07-30T00:27:27" +ik[5424] = 4.69 +il[5424] = -168 +im[5424] = 0.2005 +ij[5424] = 28.2 +id[5425] = "2396-08-08T07:02:03" +ik[5425] = 65.98 +il[5425] = -176 +im[5425] = 0.3204 +ij[5425] = 7.1043 +id[5426] = "2396-08-25T07:33:58" +ik[5426] = 0 +il[5426] = -16 +im[5426] = 0.2095 +ij[5426] = 17 +id[5427] = "2396-09-02T13:43:54" +ik[5427] = 5.408 +il[5427] = -27 +im[5427] = 0.2084 +ij[5427] = 28.8 +id[5428] = "2396-09-22T00:29:54" +ik[5428] = 110.7 +il[5428] = 3 +im[5428] = 0.1735 +ij[5428] = 14 +id[5429] = "2396-10-02T02:34:40" +ik[5429] = -2.374 +il[5429] = 71 +im[5429] = 0.1926 +ij[5429] = 4 +id[5430] = "2396-10-26T14:47:11" +ik[5430] = 45.921 +il[5430] = 129 +im[5430] = 0.0581 +ij[5430] = 1 +id[5431] = "2396-11-03T22:12:38" +ik[5431] = 0.873 +il[5431] = 99 +im[5431] = 0.1496 +ij[5431] = 27.3 +id[5432] = "2396-12-06T18:02:21" +ik[5432] = 0.733 +il[5432] = 122 +im[5432] = 0.0405 +ij[5432] = 27.5 +id[5433] = "2397-01-12T10:30:54" +ik[5433] = -26.316 +il[5433] = -130 +im[5433] = 0.0973 +ij[5433] = 15 +id[5434] = "2397-02-20T14:20:58" +ik[5434] = 1.791 +il[5434] = -174 +im[5434] = 0.0444 +ij[5434] = 27.6 +id[5435] = "2397-02-23T23:37:35" +ik[5435] = 33.54 +il[5435] = 79 +im[5435] = 0.0784 +ij[5435] = 9 +id[5436] = "2397-03-08T15:39:53" +ik[5436] = 1.35 +il[5436] = -41 +im[5436] = 0.0649 +ij[5436] = 28.5 +id[5437] = "2397-03-18T06:39:57" +ik[5437] = 0.914 +il[5437] = -175 +im[5437] = 0.0106 +ij[5437] = 28.7 +id[5438] = "2397-04-04T21:20:44" +ik[5438] = 2.534 +il[5438] = 131 +im[5438] = 0.0433 +ij[5438] = 28.6 +id[5439] = "2397-04-28T07:05:11" +ik[5439] = 3.704 +il[5439] = -146 +im[5439] = 0.0354 +ij[5439] = 27.2 +id[5440] = "2397-05-02T09:02:51" +ik[5440] = 0.756 +il[5440] = -145 +im[5440] = 0.0244 +ij[5440] = 28.2 +id[5441] = "2397-05-20T22:09:18" +ik[5441] = 12 +il[5441] = -156 +im[5441] = 0.0537 +ij[5441] = 18 +id[5442] = "2397-08-25T14:00:08" +ik[5442] = 1.13 +il[5442] = 170 +im[5442] = 0.0237 +ij[5442] = 12 +id[5443] = "2397-10-05T19:11:17" +ik[5443] = 25.681 +il[5443] = -26 +im[5443] = 0.0083 +ij[5443] = 16 +id[5444] = "2397-12-29T15:01:41" +ik[5444] = 1.506 +il[5444] = 139 +im[5444] = 0.0298 +ij[5444] = 28.2 +id[5445] = "2398-01-16T11:00:28" +ik[5445] = 4.584 +il[5445] = 9 +im[5445] = 0.0305 +ij[5445] = 27.4 +id[5446] = "2398-01-31T14:01:16" +ik[5446] = 5.213 +il[5446] = 107 +im[5446] = 0.0407 +ij[5446] = 27.1 +id[5447] = "2398-02-05T19:06:02" +ik[5447] = 31.999 +il[5447] = 80 +im[5447] = 0.0765 +ij[5447] = 8 +id[5448] = "2398-02-20T14:14:36" +ik[5448] = 23 +il[5448] = -67 +im[5448] = 0.0837 +ij[5448] = 17 +id[5449] = "2398-03-08T23:03:32" +ik[5449] = 1.244 +il[5449] = -44 +im[5449] = 0.0726 +ij[5449] = 28.8 +id[5450] = "2398-04-29T15:14:15" +ik[5450] = 0.133 +il[5450] = -158 +im[5450] = 0.1136 +ij[5450] = 27.3 +id[5451] = "2398-06-02T09:00:08" +ik[5451] = 44.473 +il[5451] = -105 +im[5451] = 0.1555 +ij[5451] = 3 +id[5452] = "2398-06-04T19:44:53" +ik[5452] = 2.126 +il[5452] = 118 +im[5452] = 0.1004 +ij[5452] = 27.5 +id[5453] = "2398-07-03T00:01:48" +ik[5453] = -2.278 +il[5453] = -38 +im[5453] = 0.1418 +ij[5453] = 2 +id[5454] = "2398-08-20T00:30:25" +ik[5454] = 0 +il[5454] = 59 +im[5454] = 0.2748 +ij[5454] = 13 +id[5455] = "2398-09-08T06:03:07" +ik[5455] = 3.76 +il[5455] = 163 +im[5455] = 0.3109 +ij[5455] = 28.2 +id[5456] = "2398-09-21T20:37:28" +ik[5456] = 5.24 +il[5456] = 63 +im[5456] = 0.3442 +ij[5456] = 11 +id[5457] = "2398-10-21T01:36:08" +ik[5457] = 62.05 +il[5457] = 110 +im[5457] = 0.1708 +ij[5457] = 7.1142 +id[5458] = "2398-12-03T04:45:56" +ik[5458] = 105.18 +il[5458] = 120 +im[5458] = 0.0156 +ij[5458] = 14 +id[5459] = "2398-12-10T23:55:45" +ik[5459] = -26.059 +il[5459] = -93 +im[5459] = 0.1951 +ij[5459] = 15 +id[5460] = "2398-12-13T00:42:42" +ik[5460] = -2.065 +il[5460] = -85 +im[5460] = 0.1747 +ij[5460] = 4 +id[5461] = "2399-01-04T19:48:08" +ik[5461] = 41.29 +il[5461] = -154 +im[5461] = 0.1158 +ij[5461] = 1 +id[5462] = "2399-01-21T04:14:46" +ik[5462] = 1.355 +il[5462] = -126 +im[5462] = 0.11 +ij[5462] = 27.6 +id[5463] = "2399-03-07T10:44:35" +ik[5463] = 1.378 +il[5463] = -155 +im[5463] = 0.0968 +ij[5463] = 28.7 +id[5464] = "2399-04-05T22:07:47" +ik[5464] = 3.31 +il[5464] = -48 +im[5464] = 0.079 +ij[5464] = 27.2 +id[5465] = "2399-04-10T08:32:15" +ik[5465] = 31.999 +il[5465] = -163 +im[5465] = 0.0265 +ij[5465] = 9 +id[5466] = "2399-04-14T00:59:32" +ik[5466] = 6.213 +il[5466] = -15 +im[5466] = 0.0359 +ij[5466] = 28.2 +id[5467] = "2399-04-18T01:48:22" +ik[5467] = 2.475 +il[5467] = 11 +im[5467] = 0.0719 +ij[5467] = 28.6 +id[5468] = "2399-04-30T22:35:56" +ik[5468] = 12 +il[5468] = 180 +im[5468] = 0.0656 +ij[5468] = 18 +id[5469] = "2399-05-19T09:42:31" +ik[5469] = 1.064 +il[5469] = -168 +im[5469] = 0.0578 +ij[5469] = 28.5 +id[5470] = "2399-07-15T23:48:10" +ik[5470] = 0.338 +il[5470] = 172 +im[5470] = 0.0504 +ij[5470] = 28.1 +id[5471] = "2399-09-18T09:44:09" +ik[5471] = 25.822 +il[5471] = -80 +im[5471] = 0.0214 +ij[5471] = 16 +id[5472] = "2399-09-30T23:46:48" +ik[5472] = 0.81 +il[5472] = -168 +im[5472] = 0.0083 +ij[5472] = 12 +id[5473] = "2399-12-20T07:20:53" +ik[5473] = 4.379 +il[5473] = -20 +im[5473] = 0.0554 +ij[5473] = 28.1 +id[5474] = "2399-12-26T18:02:01" +ik[5474] = 4.296 +il[5474] = -120 +im[5474] = 0.016 +ij[5474] = 27.4 +id[5475] = "2400-01-10T02:20:16" +ik[5475] = 5.486 +il[5475] = -97 +im[5475] = 0.0049 +ij[5475] = 27.1 +id[5476] = "2400-01-29T12:01:44" +ik[5476] = 0 +il[5476] = -59 +im[5476] = 0.0678 +ij[5476] = 17 +id[5477] = "2400-02-19T13:48:06" +ik[5477] = 1.358 +il[5477] = 114 +im[5477] = 0.026 +ij[5477] = 28.8 +id[5478] = "2400-03-24T21:24:15" +ik[5478] = 34.271 +il[5478] = -35 +im[5478] = 0.0571 +ij[5478] = 8 +id[5479] = "2400-03-30T10:37:58" +ik[5479] = 0.212 +il[5479] = 179 +im[5479] = 0.0853 +ij[5479] = 27.3 +id[5480] = "2400-04-29T20:44:28" +ik[5480] = 1.053 +il[5480] = -44 +im[5480] = 0.0821 +ij[5480] = 27.5 +id[5481] = "2400-05-28T16:56:34" +ik[5481] = -24.805 +il[5481] = -71 +im[5481] = 0.0913 +ij[5481] = 15 +id[5482] = "2400-07-14T01:51:31" +ik[5482] = 4.33 +il[5482] = -116 +im[5482] = 0.0464 +ij[5482] = 27.6 +id[5483] = "2400-07-29T22:16:01" +ik[5483] = 47.237 +il[5483] = 93 +im[5483] = 0.0273 +ij[5483] = 3 +id[5484] = "2400-08-26T06:49:50" +ik[5484] = -2.319 +il[5484] = -127 +im[5484] = 0.0282 +ij[5484] = 2 +id[5485] = "2400-08-30T04:48:07" +ik[5485] = 1.79 +il[5485] = -58 +im[5485] = 0.1279 +ij[5485] = 28.7 +id[5486] = "2400-10-19T04:46:27" +ik[5486] = 0 +il[5486] = 73 +im[5486] = 0.1451 +ij[5486] = 13 +id[5487] = "2400-10-24T03:18:24" +ik[5487] = 6.15 +il[5487] = 143 +im[5487] = 0.1545 +ij[5487] = 27.2 +id[5488] = "2400-10-26T08:32:17" +ik[5488] = 2.669 +il[5488] = 86 +im[5488] = 0.2536 +ij[5488] = 28.2 +id[5489] = "2400-11-25T12:44:35" +ik[5489] = 0.85 +il[5489] = -58 +im[5489] = 0.2988 +ij[5489] = 11 +id[5490] = "2400-12-10T18:07:35" +ik[5490] = 2.559 +il[5490] = -161 +im[5490] = 0.2126 +ij[5490] = 28.1 +id[5491] = "2400-12-11T03:53:42" +ik[5491] = 1.767 +il[5491] = 56 +im[5491] = 0.195 +ij[5491] = 28.2 +id[5492] = "2400-12-29T03:49:02" +ik[5492] = 70.96 +il[5492] = -143 +im[5492] = 0.0361 +ij[5492] = 7.1366 +id[5493] = "2401-02-10T02:03:53" +ik[5493] = 2.267 +il[5493] = -72 +im[5493] = 0.0794 +ij[5493] = 28.7 +id[5494] = "2401-02-20T06:21:23" +ik[5494] = -1.705 +il[5494] = -41 +im[5494] = 0.0577 +ij[5494] = 4 +id[5495] = "2401-02-22T11:54:45" +ik[5495] = 126.3 +il[5495] = -103 +im[5495] = 0.0038 +ij[5495] = 14 +id[5496] = "2401-03-02T19:07:06" +ik[5496] = 38.01 +il[5496] = -133 +im[5496] = 0.1048 +ij[5496] = 1 +id[5497] = "2401-03-04T03:08:21" +ik[5497] = 2.528 +il[5497] = 119 +im[5497] = 0.0844 +ij[5497] = 27.2 +id[5498] = "2401-04-05T21:18:43" +ik[5498] = 12 +il[5498] = 155 +im[5498] = 0.0188 +ij[5498] = 18 +id[5499] = "2401-04-30T13:53:58" +ik[5499] = 2.054 +il[5499] = 139 +im[5499] = 0.0496 +ij[5499] = 28.6 +id[5500] = "2401-05-17T17:09:08" +ik[5500] = 31.319 +il[5500] = -107 +im[5500] = 0.0194 +ij[5500] = 9 +id[5501] = "2401-08-16T03:42:10" +ik[5501] = 0.304 +il[5501] = -123 +im[5501] = 0.043 +ij[5501] = 28.5 +id[5502] = "2401-08-30T20:29:00" +ik[5502] = 25.949 +il[5502] = 127 +im[5502] = 0.0482 +ij[5502] = 16 +id[5503] = "2401-11-07T12:03:42" +ik[5503] = 0.14 +il[5503] = -146 +im[5503] = 0.0129 +ij[5503] = 12 +id[5504] = "2402-01-08T23:43:25" +ik[5504] = 0 +il[5504] = 113 +im[5504] = 0.0604 +ij[5504] = 17 +id[5505] = "2402-02-04T07:21:39" +ik[5505] = 1.43 +il[5505] = -111 +im[5505] = 0.0443 +ij[5505] = 28.8 +id[5506] = "2402-03-08T04:53:41" +ik[5506] = 0.271 +il[5506] = -123 +im[5506] = 0.0701 +ij[5506] = 27.3 +id[5507] = "2402-03-09T14:31:53" +ik[5507] = 5.688 +il[5507] = 102 +im[5507] = 0.0723 +ij[5507] = 28.1 +id[5508] = "2402-04-06T09:47:05" +ik[5508] = 0.774 +il[5508] = 85 +im[5508] = 0.076 +ij[5508] = 27.5 +id[5509] = "2402-05-05T19:16:22" +ik[5509] = -25.341 +il[5509] = -135 +im[5509] = 0.0827 +ij[5509] = 15 +id[5510] = "2402-06-06T15:31:22" +ik[5510] = 36.28 +il[5510] = -129 +im[5510] = 0.0832 +ij[5510] = 8 +id[5511] = "2402-06-16T04:49:18" +ik[5511] = 3.418 +il[5511] = 125 +im[5511] = 0.0683 +ij[5511] = 27.6 +id[5512] = "2402-08-07T08:01:27" +ik[5512] = 0.714 +il[5512] = -132 +im[5512] = 0.0326 +ij[5512] = 28.7 +id[5513] = "2402-08-20T20:43:51" +ik[5513] = 5.286 +il[5513] = 171 +im[5513] = 0.0406 +ij[5513] = 27.2 +id[5514] = "2402-09-09T17:16:18" +ik[5514] = 11 +il[5514] = 57 +im[5514] = 0.0843 +ij[5514] = 18 +id[5515] = "2402-09-14T19:56:03" +ik[5515] = 43.348 +il[5515] = 67 +im[5515] = 0.1126 +ij[5515] = 3 +id[5516] = "2402-09-28T21:44:04" +ik[5516] = -2.012 +il[5516] = 178 +im[5516] = 0.125 +ij[5516] = 2 +id[5517] = "2402-10-27T12:25:18" +ik[5517] = 0.88 +il[5517] = -124 +im[5517] = 0.1441 +ij[5517] = 28.6 +id[5518] = "2402-11-30T11:55:14" +ik[5518] = 0 +il[5518] = -147 +im[5518] = 0.0633 +ij[5518] = 13 +id[5519] = "2402-12-16T19:00:39" +ik[5519] = 2.951 +il[5519] = -95 +im[5519] = 0.1613 +ij[5519] = 28.6 +id[5520] = "2403-01-08T21:50:22" +ik[5520] = 3.77 +il[5520] = 64 +im[5520] = 0.0314 +ij[5520] = 11 +id[5521] = "2403-01-25T23:55:55" +ik[5521] = 3.011 +il[5521] = 11 +im[5521] = 0.1806 +ij[5521] = 28.2 +id[5522] = "2403-02-16T11:58:50" +ik[5522] = 78 +il[5522] = 23 +im[5522] = 0.0805 +ij[5522] = 7.1651 +id[5523] = "2403-04-13T13:54:45" +ik[5523] = -1.566 +il[5523] = 163 +im[5523] = 0.0358 +ij[5523] = 4 +id[5524] = "2403-04-16T04:00:02" +ik[5524] = 37.018 +il[5524] = -24 +im[5524] = 0.0328 +ij[5524] = 1 +id[5525] = "2403-04-22T20:24:45" +ik[5525] = 143.35 +il[5525] = 153 +im[5525] = 0.1019 +ij[5525] = 14 +id[5526] = "2403-05-14T10:39:59" +ik[5526] = 1.303 +il[5526] = 145 +im[5526] = 0.0293 +ij[5526] = 28.6 +id[5527] = "2403-06-23T17:00:15" +ik[5527] = 31.499 +il[5527] = 75 +im[5527] = 0.0272 +ij[5527] = 9 +id[5528] = "2403-08-12T13:17:48" +ik[5528] = 26.071 +il[5528] = -109 +im[5528] = 0.0659 +ij[5528] = 16 +id[5529] = "2403-09-04T09:59:22" +ik[5529] = 0.157 +il[5529] = 179 +im[5529] = 0.0051 +ij[5529] = 28.2 +id[5530] = "2403-09-16T00:12:38" +ik[5530] = 2.862 +il[5530] = 61 +im[5530] = 0.0421 +ij[5530] = 28.1 +id[5531] = "2403-12-21T06:42:49" +ik[5531] = 0 +il[5531] = -157 +im[5531] = 0.0582 +ij[5531] = 17 +id[5532] = "2403-12-24T11:52:09" +ik[5532] = 0.7 +il[5532] = 156 +im[5532] = 0.0467 +ij[5532] = 12 +id[5533] = "2404-03-05T07:55:30" +ik[5533] = 1.113 +il[5533] = -10 +im[5533] = 0.0606 +ij[5533] = 28.1 +id[5534] = "2404-03-15T14:16:39" +ik[5534] = 0.643 +il[5534] = -3 +im[5534] = 0.0584 +ij[5534] = 27.5 +id[5535] = "2404-04-14T10:07:12" +ik[5535] = -25.617 +il[5535] = -1 +im[5535] = 0.0652 +ij[5535] = 15 +id[5536] = "2404-05-24T05:04:08" +ik[5536] = 2.982 +il[5536] = 104 +im[5536] = 0.0237 +ij[5536] = 27.6 +id[5537] = "2404-06-18T15:12:02" +ik[5537] = 1.873 +il[5537] = -158 +im[5537] = 0.0303 +ij[5537] = 28.2 +id[5538] = "2404-07-26T07:16:26" +ik[5538] = 4.843 +il[5538] = -30 +im[5538] = 0.073 +ij[5538] = 27.2 +id[5539] = "2404-07-26T19:21:06" +ik[5539] = 0.218 +il[5539] = 154 +im[5539] = 0.0724 +ij[5539] = 28.7 +id[5540] = "2404-08-14T10:29:30" +ik[5540] = 11 +il[5540] = 109 +im[5540] = 0.0505 +ij[5540] = 18 +id[5541] = "2404-08-20T10:29:35" +ik[5541] = 34.505 +il[5541] = 168 +im[5541] = 0.051 +ij[5541] = 8 +id[5542] = "2404-10-28T17:27:32" +ik[5542] = 0.42 +il[5542] = 16 +im[5542] = 0.0408 +ij[5542] = 28.6 +id[5543] = "2404-10-29T04:11:39" +ik[5543] = -1.765 +il[5543] = -140 +im[5543] = 0.0499 +ij[5543] = 2 +id[5544] = "2404-10-30T20:01:58" +ik[5544] = 39.118 +il[5544] = -2 +im[5544] = 0.081 +ij[5544] = 3 +id[5545] = "2404-12-19T21:58:32" +ik[5545] = 20.987 +il[5545] = 94 +im[5545] = 0.0834 +ij[5545] = 16 +id[5546] = "2405-01-02T20:25:13" +ik[5546] = 0 +il[5546] = -108 +im[5546] = 0.1051 +ij[5546] = 13 +id[5547] = "2405-02-12T20:22:22" +ik[5547] = 4.36 +il[5547] = -93 +im[5547] = 0.0785 +ij[5547] = 11 +id[5548] = "2405-03-26T00:32:50" +ik[5548] = 82.17 +il[5548] = 22 +im[5548] = 0.0583 +ij[5548] = 7.1976 +id[5549] = "2405-05-25T01:24:05" +ik[5549] = 37.712 +il[5549] = -136 +im[5549] = 0.0681 +ij[5549] = 1 +id[5550] = "2405-05-26T22:58:57" +ik[5550] = 0.274 +il[5550] = -82 +im[5550] = 0.0935 +ij[5550] = 28.6 +id[5551] = "2405-05-28T05:54:46" +ik[5551] = -1.581 +il[5551] = -173 +im[5551] = 0.0998 +ij[5551] = 4 +id[5552] = "2405-06-01T21:01:42" +ik[5552] = 150.03 +il[5552] = 5 +im[5552] = 0.0524 +ij[5552] = 14 +id[5553] = "2405-08-02T02:13:35" +ik[5553] = 32.528 +il[5553] = 159 +im[5553] = 0.0237 +ij[5553] = 9 +id[5554] = "2405-08-20T04:13:44" +ik[5554] = 4.221 +il[5554] = -55 +im[5554] = 0.068 +ij[5554] = 28.2 +id[5555] = "2405-10-28T15:38:18" +ik[5555] = 3.541 +il[5555] = 90 +im[5555] = 0.0313 +ij[5555] = 27.4 +id[5556] = "2405-11-11T10:53:34" +ik[5556] = 6.2 +il[5556] = -64 +im[5556] = 0.0338 +ij[5556] = 27.1 +id[5557] = "2405-12-01T14:51:48" +ik[5557] = 0 +il[5557] = 80 +im[5557] = 0.061 +ij[5557] = 17 +id[5558] = "2405-12-06T06:05:34" +ik[5558] = 0.396 +il[5558] = -110 +im[5558] = 0.0254 +ij[5558] = 28.1 +id[5559] = "2406-02-26T18:24:09" +ik[5559] = 1.03 +il[5559] = 178 +im[5559] = 0.0594 +ij[5559] = 12 +id[5560] = "2406-03-25T22:11:01" +ik[5560] = -25.806 +il[5560] = 168 +im[5560] = 0.0579 +ij[5560] = 15 +id[5561] = "2406-05-24T08:05:26" +ik[5561] = 1.657 +il[5561] = -100 +im[5561] = 0.0618 +ij[5561] = 28.1 +id[5562] = "2406-07-05T12:49:57" +ik[5562] = 4.546 +il[5562] = -118 +im[5562] = 0.0613 +ij[5562] = 27.2 +id[5563] = "2406-07-19T08:10:47" +ik[5563] = 0.081 +il[5563] = 86 +im[5563] = 0.0623 +ij[5563] = 28.7 +id[5564] = "2406-07-25T01:25:46" +ik[5564] = 12 +il[5564] = -117 +im[5564] = 0.0434 +ij[5564] = 18 +id[5565] = "2406-10-09T06:46:01" +ik[5565] = 32.184 +il[5565] = -178 +im[5565] = 0.0271 +ij[5565] = 8 +id[5566] = "2406-11-11T10:17:35" +ik[5566] = 0.096 +il[5566] = 90 +im[5566] = 0.0915 +ij[5566] = 28.6 +id[5567] = "2406-12-01T18:18:47" +ik[5567] = -1.623 +il[5567] = 166 +im[5567] = 0.0389 +ij[5567] = 2 +id[5568] = "2406-12-10T18:46:04" +ik[5568] = 36.739 +il[5568] = -114 +im[5568] = 0.1131 +ij[5568] = 3 +id[5569] = "2407-02-05T21:02:10" +ik[5569] = 0 +il[5569] = 44 +im[5569] = 0.1778 +ij[5569] = 13 +id[5570] = "2407-02-09T04:27:27" +ik[5570] = 1.974 +il[5570] = -36 +im[5570] = 0.1165 +ij[5570] = 28.2 +id[5571] = "2407-03-18T21:37:56" +ik[5571] = 3.56 +il[5571] = 48 +im[5571] = 0.1975 +ij[5571] = 11 +id[5572] = "2407-04-07T11:55:24" +ik[5572] = 1.309 +il[5572] = 159 +im[5572] = 0.0391 +ij[5572] = 28.1 +id[5573] = "2407-04-10T08:54:59" +ik[5573] = 1.219 +il[5573] = -124 +im[5573] = 0.1555 +ij[5573] = 28.6 +id[5574] = "2407-04-29T20:04:46" +ik[5574] = 82.96 +il[5574] = -108 +im[5574] = 0.1448 +ij[5574] = 7.2105 +id[5575] = "2407-06-05T07:44:15" +ik[5575] = 0.915 +il[5575] = 70 +im[5575] = 0.1146 +ij[5575] = 28.6 +id[5576] = "2407-06-27T13:05:34" +ik[5576] = 26.225 +il[5576] = -154 +im[5576] = 0.0327 +ij[5576] = 16 +id[5577] = "2407-07-03T20:22:38" +ik[5577] = 147.97 +il[5577] = 158 +im[5577] = 0.0983 +ij[5577] = 14 +id[5578] = "2407-07-05T01:34:01" +ik[5578] = 39.963 +il[5578] = 92 +im[5578] = 0.1046 +ij[5578] = 1 +id[5579] = "2407-07-11T05:05:01" +ik[5579] = -1.729 +il[5579] = 99 +im[5579] = 0.0153 +ij[5579] = 4 +id[5580] = "2407-09-21T12:21:08" +ik[5580] = 34.292 +il[5580] = -27 +im[5580] = 0.0174 +ij[5580] = 9 +id[5581] = "2407-10-08T02:32:51" +ik[5581] = 3.17 +il[5581] = -78 +im[5581] = 0.0346 +ij[5581] = 27.4 +id[5582] = "2407-11-12T06:54:17" +ik[5582] = 0 +il[5582] = -159 +im[5582] = 0.0741 +ij[5582] = 17 +id[5583] = "2407-12-25T05:46:09" +ik[5583] = 1.505 +il[5583] = -79 +im[5583] = 0.0694 +ij[5583] = 28.8 +id[5584] = "2408-01-06T04:29:23" +ik[5584] = 0.154 +il[5584] = 57 +im[5584] = 0.0559 +ij[5584] = 27.3 +id[5585] = "2408-02-03T15:53:42" +ik[5585] = 0.52 +il[5585] = 168 +im[5585] = 0.0481 +ij[5585] = 27.5 +id[5586] = "2408-02-14T08:57:53" +ik[5586] = 1.25 +il[5586] = 16 +im[5586] = 0.0112 +ij[5586] = 28.1 +id[5587] = "2408-03-05T14:25:57" +ik[5587] = -25.963 +il[5587] = 138 +im[5587] = 0.0584 +ij[5587] = 15 +id[5588] = "2408-05-08T15:21:56" +ik[5588] = 0.07 +il[5588] = 39 +im[5588] = 0.0249 +ij[5588] = 12 +id[5589] = "2408-07-05T04:22:25" +ik[5589] = 12 +il[5589] = -161 +im[5589] = 0.0265 +ij[5589] = 18 +id[5590] = "2408-07-28T11:57:22" +ik[5590] = 1.615 +il[5590] = -37 +im[5590] = 0.0573 +ij[5590] = 28.1 +id[5591] = "2408-11-14T22:56:14" +ik[5591] = 30.898 +il[5591] = 137 +im[5591] = 0.0193 +ij[5591] = 8 +id[5592] = "2408-11-20T13:43:23" +ik[5592] = 25.085 +il[5592] = -31 +im[5592] = 0.0784 +ij[5592] = 16 +id[5593] = "2408-11-28T14:10:44" +ik[5593] = 0.633 +il[5593] = 40 +im[5593] = 0.0058 +ij[5593] = 28.6 +id[5594] = "2409-01-09T19:14:48" +ik[5594] = -1.581 +il[5594] = 11 +im[5594] = 0.0099 +ij[5594] = 2 +id[5595] = "2409-01-18T04:30:00" +ik[5595] = 36.204 +il[5595] = -47 +im[5595] = 0.1091 +ij[5595] = 3 +id[5596] = "2409-03-16T20:23:04" +ik[5596] = 0 +il[5596] = -93 +im[5596] = 0.1486 +ij[5596] = 13 +id[5597] = "2409-04-24T00:19:43" +ik[5597] = 1.38 +il[5597] = -171 +im[5597] = 0.2361 +ij[5597] = 11 +id[5598] = "2409-05-17T21:01:48" +ik[5598] = 0.816 +il[5598] = -104 +im[5598] = 0.2039 +ij[5598] = 28.2 +id[5599] = "2409-06-03T02:32:41" +ik[5599] = 78.26 +il[5599] = -29 +im[5599] = 0.2086 +ij[5599] = 7.1797 +id[5600] = "2409-06-09T09:11:04" +ik[5600] = 5.794 +il[5600] = -67 +im[5600] = 0.0201 +ij[5600] = 28.6 +id[5601] = "2409-08-01T04:53:34" +ik[5601] = 137.35 +il[5601] = 151 +im[5601] = 0.0904 +ij[5601] = 14 +id[5602] = "2409-08-15T01:28:08" +ik[5602] = -1.999 +il[5602] = -22 +im[5602] = 0.0807 +ij[5602] = 4 +id[5603] = "2409-08-18T13:45:59" +ik[5603] = 43.596 +il[5603] = -172 +im[5603] = 0.0215 +ij[5603] = 1 +id[5604] = "2409-09-12T08:26:28" +ik[5604] = 2.512 +il[5604] = 150 +im[5604] = 0.0742 +ij[5604] = 27.4 +id[5605] = "2409-10-21T00:07:49" +ik[5605] = 0 +il[5605] = -66 +im[5605] = 0.101 +ij[5605] = 17 +id[5606] = "2409-11-27T10:57:07" +ik[5606] = 35.563 +il[5606] = 140 +im[5606] = 0.006 +ij[5606] = 9 +id[5607] = "2409-12-08T23:12:48" +ik[5607] = 1.558 +il[5607] = 69 +im[5607] = 0.0399 +ij[5607] = 28.8 +id[5608] = "2409-12-14T20:13:01" +ik[5608] = 0.004 +il[5608] = 172 +im[5608] = 0.0574 +ij[5608] = 27.3 +id[5609] = "2410-01-12T17:16:22" +ik[5609] = 0.507 +il[5609] = 140 +im[5609] = 0.0489 +ij[5609] = 27.5 +id[5610] = "2410-02-11T22:22:17" +ik[5610] = 0.47 +il[5610] = -2 +im[5610] = 0.0554 +ij[5610] = 28.2 +id[5611] = "2410-02-13T17:45:51" +ik[5611] = -26.112 +il[5611] = 85 +im[5611] = 0.068 +ij[5611] = 15 +id[5612] = "2410-03-24T02:57:21" +ik[5612] = 2.2 +il[5612] = -44 +im[5612] = 0.0132 +ij[5612] = 27.6 +id[5613] = "2410-06-16T19:39:07" +ik[5613] = 12 +il[5613] = 179 +im[5613] = 0.0124 +ij[5613] = 18 +id[5614] = "2410-07-01T09:37:57" +ik[5614] = 0.82 +il[5614] = 99 +im[5614] = 0.0163 +ij[5614] = 12 +id[5615] = "2410-10-31T19:09:15" +ik[5615] = 25.414 +il[5615] = -111 +im[5615] = 0.0604 +ij[5615] = 16 +id[5616] = "2410-11-02T09:54:37" +ik[5616] = 0.006 +il[5616] = 43 +im[5616] = 0.0589 +ij[5616] = 28.2 +id[5617] = "2410-12-18T17:36:14" +ik[5617] = 30.644 +il[5617] = 14 +im[5617] = 0.052 +ij[5617] = 8 +id[5618] = "2410-12-19T03:18:38" +ik[5618] = 1.062 +il[5618] = -128 +im[5618] = 0.0467 +ij[5618] = 28.6 +id[5619] = "2411-02-26T15:52:01" +ik[5619] = 5.199 +il[5619] = -11 +im[5619] = 0.0893 +ij[5619] = 27.4 +id[5620] = "2411-03-04T01:05:57" +ik[5620] = 37.664 +il[5620] = -99 +im[5620] = 0.0328 +ij[5620] = 3 +id[5621] = "2411-03-07T03:44:09" +ik[5621] = -1.672 +il[5621] = -109 +im[5621] = 0.101 +ij[5621] = 2 +id[5622] = "2411-03-20T18:05:51" +ik[5622] = 4.723 +il[5622] = 165 +im[5622] = 0.1113 +ij[5622] = 27.1 +id[5623] = "2411-05-08T04:54:03" +ik[5623] = 0 +il[5623] = 98 +im[5623] = 0.1663 +ij[5623] = 13 +id[5624] = "2411-06-10T12:38:24" +ik[5624] = 2.41 +il[5624] = -71 +im[5624] = 0.2142 +ij[5624] = 11 +id[5625] = "2411-07-18T01:07:27" +ik[5625] = 6.018 +il[5625] = -93 +im[5625] = 0.0393 +ij[5625] = 27.4 +id[5626] = "2411-07-18T03:56:38" +ik[5626] = 70.96 +il[5626] = -135 +im[5626] = 0.0448 +ij[5626] = 7.1211 +id[5627] = "2411-09-04T16:01:27" +ik[5627] = 119.46 +il[5627] = 159 +im[5627] = 0.1867 +ij[5627] = 14 +id[5628] = "2411-09-15T18:13:30" +ik[5628] = -2.314 +il[5628] = -124 +im[5628] = 0.1353 +ij[5628] = 4 +id[5629] = "2411-09-21T23:44:37" +ik[5629] = 0 +il[5629] = -146 +im[5629] = 0.1329 +ij[5629] = 17 +id[5630] = "2411-10-05T21:41:02" +ik[5630] = 46.355 +il[5630] = 22 +im[5630] = 0.1235 +ij[5630] = 1 +id[5631] = "2411-11-19T00:32:45" +ik[5631] = 0.415 +il[5631] = 53 +im[5631] = 0.0777 +ij[5631] = 27.3 +id[5632] = "2411-11-19T03:55:23" +ik[5632] = 1.804 +il[5632] = 4 +im[5632] = 0.0747 +ij[5632] = 28.8 +id[5633] = "2411-12-19T14:23:59" +ik[5633] = 0.595 +il[5633] = 145 +im[5633] = 0.0314 +ij[5633] = 27.5 +id[5634] = "2412-01-23T01:45:39" +ik[5634] = -26.265 +il[5634] = -52 +im[5634] = 0.0719 +ij[5634] = 15 +id[5635] = "2412-02-03T13:23:21" +ik[5635] = 34.306 +il[5635] = -116 +im[5635] = 0.007 +ij[5635] = 9 +id[5636] = "2412-03-01T20:00:06" +ik[5636] = 1.921 +il[5636] = 45 +im[5636] = 0.0242 +ij[5636] = 27.6 +id[5637] = "2412-05-06T07:26:27" +ik[5637] = 3.821 +il[5637] = 145 +im[5637] = 0.0606 +ij[5637] = 27.2 +id[5638] = "2412-05-28T08:26:55" +ik[5638] = 12 +il[5638] = -23 +im[5638] = 0.0023 +ij[5638] = 18 +id[5639] = "2412-08-10T23:51:17" +ik[5639] = 1.14 +il[5639] = 99 +im[5639] = 0.0299 +ij[5639] = 12 +id[5640] = "2412-10-12T16:44:02" +ik[5640] = 25.618 +il[5640] = -68 +im[5640] = 0.0556 +ij[5640] = 16 +id[5641] = "2413-01-08T10:19:19" +ik[5641] = 1.261 +il[5641] = 159 +im[5641] = 0.0569 +ij[5641] = 28.6 +id[5642] = "2413-01-21T16:31:21" +ik[5642] = 31.405 +il[5642] = -168 +im[5642] = 0.0794 +ij[5642] = 8 +id[5643] = "2413-01-25T13:22:57" +ik[5643] = 4.72 +il[5643] = -84 +im[5643] = 0.0416 +ij[5643] = 27.4 +id[5644] = "2413-02-10T06:53:36" +ik[5644] = 5.087 +il[5644] = 163 +im[5644] = 0.0033 +ij[5644] = 27.1 +id[5645] = "2413-03-03T01:11:14" +ik[5645] = 23 +il[5645] = 85 +im[5645] = 0.0872 +ij[5645] = 17 +id[5646] = "2413-05-03T21:40:53" +ik[5646] = 41.989 +il[5646] = 2 +im[5646] = 0.1017 +ij[5646] = 3 +id[5647] = "2413-05-17T22:59:56" +ik[5647] = 2.004 +il[5647] = 115 +im[5647] = 0.1427 +ij[5647] = 28.8 +id[5648] = "2413-05-18T22:33:22" +ik[5648] = 0.73 +il[5648] = 131 +im[5648] = 0.1172 +ij[5648] = 27.3 +id[5649] = "2413-05-30T02:36:37" +ik[5649] = -2.061 +il[5649] = 176 +im[5649] = 0.183 +ij[5649] = 2 +id[5650] = "2413-07-06T13:37:56" +ik[5650] = 2.135 +il[5650] = 8 +im[5650] = 0.2038 +ij[5650] = 28.2 +id[5651] = "2413-07-13T18:15:33" +ik[5651] = 5.909 +il[5651] = 7 +im[5651] = 0.2132 +ij[5651] = 27.5 +id[5652] = "2413-07-20T16:01:58" +ik[5652] = 0 +il[5652] = 106 +im[5652] = 0.265 +ij[5652] = 13 +id[5653] = "2413-07-23T18:04:38" +ik[5653] = 6.293 +il[5653] = 105 +im[5653] = 0.34 +ij[5653] = 27.5 +id[5654] = "2413-07-25T17:54:43" +ik[5654] = 6.447 +il[5654] = 127 +im[5654] = 0.2979 +ij[5654] = 27.5 +id[5655] = "2413-08-20T02:33:57" +ik[5655] = 6.63 +il[5655] = -129 +im[5655] = 0.381 +ij[5655] = 11 +id[5656] = "2413-09-01T16:20:43" +ik[5656] = 4.099 +il[5656] = -18 +im[5656] = 0.3924 +ij[5656] = 28.1 +id[5657] = "2413-09-20T15:04:33" +ik[5657] = 61.96 +il[5657] = -179 +im[5657] = 0.1065 +ij[5657] = 7.1019 +id[5658] = "2413-10-31T22:02:20" +ik[5658] = 103.25 +il[5658] = 122 +im[5658] = 0.1329 +ij[5658] = 14 +id[5659] = "2413-11-06T17:03:02" +ik[5659] = 1.708 +il[5659] = -107 +im[5659] = 0.1389 +ij[5659] = 27.5 +id[5660] = "2413-11-11T05:58:24" +ik[5660] = -2.248 +il[5660] = 103 +im[5660] = 0.1897 +ij[5660] = 4 +id[5661] = "2413-12-07T18:46:56" +ik[5661] = 43.27 +il[5661] = 168 +im[5661] = 0.1524 +ij[5661] = 1 +id[5662] = "2413-12-25T12:12:30" +ik[5662] = -26.332 +il[5662] = 77 +im[5662] = 0.1234 +ij[5662] = 15 +id[5663] = "2414-02-04T01:24:04" +ik[5663] = 1.542 +il[5663] = -95 +im[5663] = 0.1053 +ij[5663] = 27.6 +id[5664] = "2414-03-24T22:46:54" +ik[5664] = 32.513 +il[5664] = 49 +im[5664] = 0.022 +ij[5664] = 9 +id[5665] = "2414-04-15T04:10:01" +ik[5665] = 3.487 +il[5665] = 166 +im[5665] = 0.0598 +ij[5665] = 27.2 +id[5666] = "2414-05-09T00:42:41" +ik[5666] = 12 +il[5666] = 82 +im[5666] = 0.0047 +ij[5666] = 18 +id[5667] = "2414-06-25T19:37:12" +ik[5667] = 1.599 +il[5667] = -100 +im[5667] = 0.0565 +ij[5667] = 28.1 +id[5668] = "2414-06-25T21:17:39" +ik[5668] = 0.577 +il[5668] = -124 +im[5668] = 0.0568 +ij[5668] = 28.7 +id[5669] = "2414-09-16T20:36:37" +ik[5669] = 0.98 +il[5669] = -35 +im[5669] = 0.0252 +ij[5669] = 12 +id[5670] = "2414-09-25T05:18:55" +ik[5670] = 25.771 +il[5670] = 115 +im[5670] = 0.0466 +ij[5670] = 16 +id[5671] = "2414-11-20T06:16:53" +ik[5671] = 2.27 +il[5671] = -73 +im[5671] = 0.0572 +ij[5671] = 28.1 +id[5672] = "2415-01-03T14:08:28" +ik[5672] = 4.4 +il[5672] = -119 +im[5672] = 0.0522 +ij[5672] = 27.4 +id[5673] = "2415-01-18T03:50:36" +ik[5673] = 5.388 +il[5673] = 174 +im[5673] = 0.0549 +ij[5673] = 27.1 +id[5674] = "2415-01-29T01:32:59" +ik[5674] = 1.133 +il[5674] = -49 +im[5674] = 0.072 +ij[5674] = 28.6 +id[5675] = "2415-02-06T16:35:03" +ik[5675] = 0 +il[5675] = 167 +im[5675] = 0.0118 +ij[5675] = 17 +id[5676] = "2415-03-05T00:14:54" +ik[5676] = 33.265 +il[5676] = -59 +im[5676] = 0.0346 +ij[5676] = 8 +id[5677] = "2415-04-10T10:46:17" +ik[5677] = 0.142 +il[5677] = 128 +im[5677] = 0.0864 +ij[5677] = 27.3 +id[5678] = "2415-04-15T20:08:41" +ik[5678] = 1.138 +il[5678] = 39 +im[5678] = 0.0528 +ij[5678] = 28.8 +id[5679] = "2415-05-11T22:27:40" +ik[5679] = 1.278 +il[5679] = -108 +im[5679] = 0.1004 +ij[5679] = 27.5 +id[5680] = "2415-06-09T09:09:18" +ik[5680] = -24.384 +il[5680] = 3 +im[5680] = 0.1211 +ij[5680] = 15 +id[5681] = "2415-07-11T18:00:00" +ik[5681] = 47.202 +il[5681] = -177 +im[5681] = 0.0723 +ij[5681] = 3 +id[5682] = "2415-08-01T14:27:04" +ik[5682] = 5.16 +il[5682] = 78 +im[5682] = 0.1344 +ij[5682] = 27.6 +id[5683] = "2415-08-10T07:45:59" +ik[5683] = -2.391 +il[5683] = -96 +im[5683] = 0.056 +ij[5683] = 2 +id[5684] = "2415-09-29T22:02:50" +ik[5684] = 0 +il[5684] = -174 +im[5684] = 0.2932 +ij[5684] = 13 +id[5685] = "2415-11-04T09:41:31" +ik[5685] = 0.95 +il[5685] = -23 +im[5685] = 0.161 +ij[5685] = 11 +id[5686] = "2415-11-19T15:44:30" +ik[5686] = 0.962 +il[5686] = -120 +im[5686] = 0.2308 +ij[5686] = 28.2 +id[5687] = "2415-12-05T06:15:35" +ik[5687] = 66.34 +il[5687] = 160 +im[5687] = 0.2662 +ij[5687] = 7.1288 +id[5688] = "2415-12-07T00:09:29" +ik[5688] = 5.758 +il[5688] = -91 +im[5688] = 0.2653 +ij[5688] = 27.6 +id[5689] = "2416-01-24T10:10:22" +ik[5689] = 116.51 +il[5689] = -143 +im[5689] = 0.0333 +ij[5689] = 14 +id[5690] = "2416-01-27T16:44:39" +ik[5690] = -1.816 +il[5690] = 149 +im[5690] = 0.1171 +ij[5690] = 4 +id[5691] = "2416-02-11T11:57:59" +ik[5691] = 38.973 +il[5691] = 3 +im[5691] = 0.1018 +ij[5691] = 1 +id[5692] = "2416-03-18T23:36:40" +ik[5692] = 2.925 +il[5692] = 170 +im[5692] = 0.0307 +ij[5692] = 27.2 +id[5693] = "2416-04-16T04:20:26" +ik[5693] = 12 +il[5693] = 4 +im[5693] = 0.0346 +ij[5693] = 18 +id[5694] = "2416-05-03T05:32:40" +ik[5694] = 31.48 +il[5694] = 147 +im[5694] = 0.0137 +ij[5694] = 9 +id[5695] = "2416-06-19T01:21:14" +ik[5695] = 0.611 +il[5695] = -67 +im[5695] = 0.05 +ij[5695] = 28.7 +id[5696] = "2416-07-05T21:57:58" +ik[5696] = 0.605 +il[5696] = 144 +im[5696] = 0.064 +ij[5696] = 28.2 +id[5697] = "2416-08-21T10:34:07" +ik[5697] = 0.42 +il[5697] = 50 +im[5697] = 0.0399 +ij[5697] = 28.1 +id[5698] = "2416-09-06T18:58:45" +ik[5698] = 25.902 +il[5698] = 84 +im[5698] = 0.025 +ij[5698] = 16 +id[5699] = "2416-10-22T22:41:58" +ik[5699] = 0.44 +il[5699] = 118 +im[5699] = 0.021 +ij[5699] = 12 +id[5700] = "2416-12-28T03:17:01" +ik[5700] = 5.63 +il[5700] = 166 +im[5700] = 0.0562 +ij[5700] = 27.1 +id[5701] = "2417-01-16T11:54:16" +ik[5701] = 0 +il[5701] = -141 +im[5701] = 0.0097 +ij[5701] = 17 +id[5702] = "2417-01-27T16:42:34" +ik[5702] = 0.372 +il[5702] = -107 +im[5702] = 0.0453 +ij[5702] = 28.5 +id[5703] = "2417-02-04T07:21:54" +ik[5703] = 5.727 +il[5703] = 113 +im[5703] = 0.0548 +ij[5703] = 28.1 +id[5704] = "2417-02-16T03:11:34" +ik[5704] = 0.655 +il[5704] = -69 +im[5704] = 0.0306 +ij[5704] = 28.6 +id[5705] = "2417-03-16T12:35:50" +ik[5705] = 0.259 +il[5705] = 59 +im[5705] = 0.0228 +ij[5705] = 27.3 +id[5706] = "2417-03-17T12:58:47" +ik[5706] = 1.7 +il[5706] = 63 +im[5706] = 0.037 +ij[5706] = 28.2 +id[5707] = "2417-03-27T20:07:17" +ik[5707] = 0.903 +il[5707] = 54 +im[5707] = 0.032 +ij[5707] = 28.8 +id[5708] = "2417-04-15T02:36:18" +ik[5708] = 0.854 +il[5708] = 131 +im[5708] = 0.0316 +ij[5708] = 27.5 +id[5709] = "2417-05-05T06:55:47" +ik[5709] = 35.811 +il[5709] = -101 +im[5709] = 0.0859 +ij[5709] = 8 +id[5710] = "2417-05-14T07:52:07" +ik[5710] = -25.183 +il[5710] = -28 +im[5710] = 0.036 +ij[5710] = 15 +id[5711] = "2417-06-25T20:06:18" +ik[5711] = 3.676 +il[5711] = -159 +im[5711] = 0.0387 +ij[5711] = 27.6 +id[5712] = "2417-08-27T00:06:54" +ik[5712] = 45.213 +il[5712] = 31 +im[5712] = 0.1327 +ij[5712] = 3 +id[5713] = "2417-09-02T16:55:15" +ik[5713] = 5.535 +il[5713] = -155 +im[5713] = 0.0686 +ij[5713] = 27.2 +id[5714] = "2417-09-16T15:52:14" +ik[5714] = -2.133 +il[5714] = -3 +im[5714] = 0.0479 +ij[5714] = 2 +id[5715] = "2417-09-25T00:05:32" +ik[5715] = 11 +il[5715] = -44 +im[5715] = 0.1591 +ij[5715] = 18 +id[5716] = "2417-11-15T10:10:52" +ik[5716] = 0 +il[5716] = -54 +im[5716] = 0.1054 +ij[5716] = 13 +id[5717] = "2417-12-08T02:38:13" +ik[5717] = 0.988 +il[5717] = -88 +im[5717] = 0.1243 +ij[5717] = 28.2 +id[5718] = "2417-12-10T12:30:24" +ik[5718] = 0.2 +il[5718] = 146 +im[5718] = 0.0142 +ij[5718] = 28.1 +id[5719] = "2417-12-18T13:08:47" +ik[5719] = 12 +il[5719] = -148 +im[5719] = 0.2623 +ij[5719] = 17 +id[5720] = "2417-12-24T04:01:04" +ik[5720] = 3.01 +il[5720] = 32 +im[5720] = 0.0085 +ij[5720] = 11 +id[5721] = "2418-01-30T09:13:28" +ik[5721] = 75.96 +il[5721] = 121 +im[5721] = 0.1036 +ij[5721] = 7.1526 +id[5722] = "2418-03-14T12:35:32" +ik[5722] = 12 +il[5722] = 115 +im[5722] = 0.0597 +ij[5722] = 18 +id[5723] = "2418-03-25T11:52:14" +ik[5723] = -1.599 +il[5723] = -130 +im[5723] = 0.0903 +ij[5723] = 4 +id[5724] = "2418-03-30T19:48:51" +ik[5724] = 37.185 +il[5724] = 161 +im[5724] = 0.0301 +ij[5724] = 1 +id[5725] = "2418-04-02T12:52:16" +ik[5725] = 138.11 +il[5725] = -69 +im[5725] = 0.0844 +ij[5725] = 14 +id[5726] = "2418-06-09T04:56:40" +ik[5726] = 31.335 +il[5726] = -28 +im[5726] = 0.0077 +ij[5726] = 9 +id[5727] = "2418-06-11T14:15:49" +ik[5727] = 0.637 +il[5727] = -145 +im[5727] = 0.032 +ij[5727] = 28.7 +id[5728] = "2418-06-16T19:07:40" +ik[5728] = 5.773 +il[5728] = -169 +im[5728] = 0.0698 +ij[5728] = 28.2 +id[5729] = "2418-08-15T19:47:04" +ik[5729] = 4.866 +il[5729] = 38 +im[5729] = 0.0458 +ij[5729] = 28.1 +id[5730] = "2418-08-19T20:42:31" +ik[5730] = 26.025 +il[5730] = 64 +im[5730] = 0.0055 +ij[5730] = 16 +id[5731] = "2418-12-04T14:25:05" +ik[5731] = 0.37 +il[5731] = 131 +im[5731] = 0.0597 +ij[5731] = 12 +id[5732] = "2418-12-28T14:39:47" +ik[5732] = 0 +il[5732] = -177 +im[5732] = 0.0185 +ij[5732] = 17 +id[5733] = "2419-02-10T12:53:08" +ik[5733] = 1.073 +il[5733] = -93 +im[5733] = 0.0149 +ij[5733] = 28.2 +id[5734] = "2419-02-23T18:40:31" +ik[5734] = 0.273 +il[5734] = -54 +im[5734] = 0.0095 +ij[5734] = 27.3 +id[5735] = "2419-03-05T08:14:26" +ik[5735] = 0.083 +il[5735] = -165 +im[5735] = 0.0605 +ij[5735] = 28.6 +id[5736] = "2419-03-12T21:56:47" +ik[5736] = 0.731 +il[5736] = 69 +im[5736] = 0.034 +ij[5736] = 28.8 +id[5737] = "2419-03-24T14:53:56" +ik[5737] = 0.684 +il[5737] = -75 +im[5737] = 0.0085 +ij[5737] = 27.5 +id[5738] = "2419-04-01T03:25:11" +ik[5738] = 0.113 +il[5738] = 175 +im[5738] = 0.0714 +ij[5738] = 28.5 +id[5739] = "2419-04-23T06:43:53" +ik[5739] = -25.525 +il[5739] = -21 +im[5739] = 0.0168 +ij[5739] = 15 +id[5740] = "2419-04-27T23:21:07" +ik[5740] = 5.391 +il[5740] = 135 +im[5740] = 0.0673 +ij[5740] = 28.1 +id[5741] = "2419-06-02T12:47:07" +ik[5741] = 3.126 +il[5741] = -79 +im[5741] = 0.0467 +ij[5741] = 27.6 +id[5742] = "2419-07-26T08:57:33" +ik[5742] = 35.512 +il[5742] = 147 +im[5742] = 0.0832 +ij[5742] = 8 +id[5743] = "2419-08-05T04:19:15" +ik[5743] = 4.99 +il[5743] = -47 +im[5743] = 0.0587 +ij[5743] = 27.2 +id[5744] = "2419-08-24T07:42:35" +ik[5744] = 11 +il[5744] = 89 +im[5744] = 0.088 +ij[5744] = 18 +id[5745] = "2419-10-14T06:44:55" +ik[5745] = 40.579 +il[5745] = -120 +im[5745] = 0.0292 +ij[5745] = 3 +id[5746] = "2419-10-17T21:54:02" +ik[5746] = -1.849 +il[5746] = 48 +im[5746] = 0.0982 +ij[5746] = 2 +id[5747] = "2419-12-05T05:26:22" +ik[5747] = 1.804 +il[5747] = 43 +im[5747] = 0.1053 +ij[5747] = 28.7 +id[5748] = "2419-12-22T12:52:44" +ik[5748] = 0 +il[5748] = 99 +im[5748] = 0.0658 +ij[5748] = 13 +id[5749] = "2419-12-29T04:14:37" +ik[5749] = 1.052 +il[5749] = -67 +im[5749] = 0.2037 +ij[5749] = 28.2 +id[5750] = "2420-01-31T09:30:51" +ik[5750] = 4.32 +il[5750] = 157 +im[5750] = 0.0308 +ij[5750] = 11 +id[5751] = "2420-02-26T18:45:57" +ik[5751] = 4.516 +il[5751] = 68 +im[5751] = 0.0216 +ij[5751] = 28.2 +id[5752] = "2420-03-12T11:55:20" +ik[5752] = 80.96 +il[5752] = -61 +im[5752] = 0.0647 +ij[5752] = 7.1858 +id[5753] = "2420-05-09T16:24:48" +ik[5753] = 37.254 +il[5753] = 66 +im[5753] = 0.0895 +ij[5753] = 1 +id[5754] = "2420-05-10T19:03:22" +ik[5754] = -1.559 +il[5754] = 37 +im[5754] = 0.102 +ij[5754] = 4 +id[5755] = "2420-05-18T11:22:13" +ik[5755] = 147.94 +il[5755] = -135 +im[5755] = 0.0436 +ij[5755] = 14 +id[5756] = "2420-05-30T01:43:53" +ik[5756] = 0.714 +il[5756] = 121 +im[5756] = 0.0684 +ij[5756] = 28.7 +id[5757] = "2420-07-16T15:15:47" +ik[5757] = 32.023 +il[5757] = 17 +im[5757] = 0.0084 +ij[5757] = 9 +id[5758] = "2420-07-30T14:59:19" +ik[5758] = 26.147 +il[5758] = 157 +im[5758] = 0.0165 +ij[5758] = 16 +id[5759] = "2420-11-04T16:46:51" +ik[5759] = 1.374 +il[5759] = -7 +im[5759] = 0.0441 +ij[5759] = 28.1 +id[5760] = "2420-11-05T06:30:45" +ik[5760] = 3.654 +il[5760] = 153 +im[5760] = 0.038 +ij[5760] = 27.4 +id[5761] = "2420-11-19T02:37:38" +ik[5761] = 6.094 +il[5761] = -14 +im[5761] = 0.037 +ij[5761] = 27.1 +id[5762] = "2420-12-08T23:55:27" +ik[5762] = 0 +il[5762] = -128 +im[5762] = 0.0283 +ij[5762] = 17 +id[5763] = "2421-01-29T17:26:25" +ik[5763] = 1.05 +il[5763] = 127 +im[5763] = 0.0501 +ij[5763] = 12 +id[5764] = "2421-04-02T13:27:42" +ik[5764] = -25.739 +il[5764] = -129 +im[5764] = 0.013 +ij[5764] = 15 +id[5765] = "2421-04-23T19:11:58" +ik[5765] = 1.683 +il[5765] = 4 +im[5765] = 0.0615 +ij[5765] = 28.1 +id[5766] = "2421-05-11T19:08:59" +ik[5766] = 2.793 +il[5766] = -179 +im[5766] = 0.0519 +ij[5766] = 27.6 +id[5767] = "2421-05-27T21:54:51" +ik[5767] = 0.507 +il[5767] = -62 +im[5767] = 0.0241 +ij[5767] = 28.5 +id[5768] = "2421-07-13T11:12:52" +ik[5768] = 4.653 +il[5768] = -165 +im[5768] = 0.0089 +ij[5768] = 27.2 +id[5769] = "2421-08-01T19:00:43" +ik[5769] = 12 +il[5769] = -93 +im[5769] = 0.0705 +ij[5769] = 18 +id[5770] = "2421-09-22T00:34:53" +ik[5770] = 32.984 +il[5770] = -39 +im[5770] = 0.0074 +ij[5770] = 8 +id[5771] = "2421-11-03T09:35:26" +ik[5771] = 0.788 +il[5771] = -124 +im[5771] = 0.0211 +ij[5771] = 28.7 +id[5772] = "2421-11-18T06:01:10" +ik[5772] = -1.666 +il[5772] = 73 +im[5772] = 0.0141 +ij[5772] = 2 +id[5773] = "2421-11-25T08:59:51" +ik[5773] = 37.444 +il[5773] = 97 +im[5773] = 0.1059 +ij[5773] = 3 +id[5774] = "2422-01-23T11:22:41" +ik[5774] = 0 +il[5774] = -87 +im[5774] = 0.128 +ij[5774] = 13 +id[5775] = "2422-03-05T14:17:05" +ik[5775] = 4.02 +il[5775] = -121 +im[5775] = 0.1333 +ij[5775] = 11 +id[5776] = "2422-03-24T04:14:09" +ik[5776] = 1.123 +il[5776] = 1 +im[5776] = 0.1176 +ij[5776] = 28.1 +id[5777] = "2422-03-24T21:06:02" +ik[5777] = 1.77 +il[5777] = 112 +im[5777] = 0.1439 +ij[5777] = 28.2 +id[5778] = "2422-04-16T10:25:17" +ik[5778] = 82.96 +il[5778] = 122 +im[5778] = 0.066 +ij[5778] = 7.2099 +id[5779] = "2422-04-23T09:35:37" +ik[5779] = 2.135 +il[5779] = -159 +im[5779] = 0.1575 +ij[5779] = 28.7 +id[5780] = "2422-06-18T16:12:51" +ik[5780] = 38.893 +il[5780] = -74 +im[5780] = 0.108 +ij[5780] = 1 +id[5781] = "2422-06-22T02:17:05" +ik[5781] = 149.62 +il[5781] = 168 +im[5781] = 0.0894 +ij[5781] = 14 +id[5782] = "2422-06-24T09:34:30" +ik[5782] = -1.656 +il[5782] = 81 +im[5782] = 0.0506 +ij[5782] = 4 +id[5783] = "2422-07-08T03:23:15" +ik[5783] = 26.245 +il[5783] = -53 +im[5783] = 0.0555 +ij[5783] = 16 +id[5784] = "2422-08-31T02:15:46" +ik[5784] = 33.542 +il[5784] = 128 +im[5784] = 0.0749 +ij[5784] = 9 +id[5785] = "2422-10-16T10:12:18" +ik[5785] = 3.333 +il[5785] = 101 +im[5785] = 0.0469 +ij[5785] = 27.4 +id[5786] = "2422-10-30T09:37:34" +ik[5786] = 6.394 +il[5786] = -114 +im[5786] = 0.0421 +ij[5786] = 27.1 +id[5787] = "2422-11-14T20:38:16" +ik[5787] = 0.87 +il[5787] = -128 +im[5787] = 0.0394 +ij[5787] = 28.2 +id[5788] = "2422-11-20T00:11:04" +ik[5788] = 0 +il[5788] = -131 +im[5788] = 0.0333 +ij[5788] = 17 +id[5789] = "2423-01-14T02:54:48" +ik[5789] = 0.19 +il[5789] = 13 +im[5789] = 0.0095 +ij[5789] = 27.3 +id[5790] = "2423-01-14T22:15:36" +ik[5790] = 0.39 +il[5790] = 91 +im[5790] = 0.0084 +ij[5790] = 28.1 +id[5791] = "2423-03-14T05:11:35" +ik[5791] = -25.905 +il[5791] = -146 +im[5791] = 0.0105 +ij[5791] = 15 +id[5792] = "2423-04-13T08:16:12" +ik[5792] = 0.53 +il[5792] = 106 +im[5792] = 0.026 +ij[5792] = 12 +id[5793] = "2423-07-05T04:29:26" +ik[5793] = 1.508 +il[5793] = 50 +im[5793] = 0.0243 +ij[5793] = 28.1 +id[5794] = "2423-07-13T11:56:07" +ik[5794] = 12 +il[5794] = 16 +im[5794] = 0.0625 +ij[5794] = 18 +id[5795] = "2423-08-04T10:59:29" +ik[5795] = 0.346 +il[5795] = -112 +im[5795] = 0.0065 +ij[5795] = 28.5 +id[5796] = "2423-09-04T11:31:05" +ik[5796] = 1.617 +il[5796] = -179 +im[5796] = 0.0301 +ij[5796] = 28.2 +id[5797] = "2423-10-23T12:27:12" +ik[5797] = 0.593 +il[5797] = -79 +im[5797] = 0.0687 +ij[5797] = 28.7 +id[5798] = "2423-11-02T02:34:26" +ik[5798] = 31.275 +il[5798] = 162 +im[5798] = 0.0531 +ij[5798] = 8 +id[5799] = "2423-12-25T00:22:31" +ik[5799] = -1.585 +il[5799] = -14 +im[5799] = 0.0146 +ij[5799] = 2 +id[5800] = "2424-01-03T15:42:54" +ik[5800] = 36.196 +il[5800] = -151 +im[5800] = 0.1078 +ij[5800] = 3 +id[5801] = "2424-02-29T02:17:33" +ik[5801] = 0 +il[5801] = -127 +im[5801] = 0.1638 +ij[5801] = 13 +id[5802] = "2424-04-08T20:43:46" +ik[5802] = 2.41 +il[5802] = -45 +im[5802] = 0.2063 +ij[5802] = 11 +id[5803] = "2424-05-20T01:20:09" +ik[5803] = 80.96 +il[5803] = 65 +im[5803] = 0.1805 +ij[5803] = 7.1972 +id[5804] = "2424-06-11T15:01:03" +ik[5804] = 25.706 +il[5804] = 79 +im[5804] = 0.1495 +ij[5804] = 16 +id[5805] = "2424-07-20T17:58:56" +ik[5805] = 142.65 +il[5805] = 55 +im[5805] = 0.0297 +ij[5805] = 14 +id[5806] = "2424-07-31T07:51:53" +ik[5806] = 42.063 +il[5806] = -50 +im[5806] = 0.0431 +ij[5806] = 1 +id[5807] = "2424-08-02T16:38:31" +ik[5807] = -1.881 +il[5807] = -158 +im[5807] = 0.0173 +ij[5807] = 4 +id[5808] = "2424-09-22T23:23:50" +ik[5808] = 2.829 +il[5808] = -119 +im[5808] = 0.0883 +ij[5808] = 27.4 +id[5809] = "2424-10-29T17:55:59" +ik[5809] = 0 +il[5809] = -37 +im[5809] = 0.0351 +ij[5809] = 17 +id[5810] = "2424-10-30T00:00:13" +ik[5810] = 35.309 +il[5810] = -126 +im[5810] = 0.0389 +ij[5810] = 9 +id[5811] = "2424-10-30T19:47:44" +ik[5811] = 5.604 +il[5811] = -54 +im[5811] = 0.0507 +ij[5811] = 28.2 +id[5812] = "2424-12-23T11:47:29" +ik[5812] = 0.08 +il[5812] = -126 +im[5812] = 0.025 +ij[5812] = 27.3 +id[5813] = "2425-01-21T03:20:26" +ik[5813] = 0.504 +il[5813] = -77 +im[5813] = 0.0298 +ij[5813] = 27.5 +id[5814] = "2425-01-28T04:14:16" +ik[5814] = 0.186 +il[5814] = -22 +im[5814] = 0.0595 +ij[5814] = 28.8 +id[5815] = "2425-02-21T15:29:29" +ik[5815] = -26.056 +il[5815] = 48 +im[5815] = 0.0058 +ij[5815] = 15 +id[5816] = "2425-03-29T19:53:10" +ik[5816] = 1.588 +il[5816] = -17 +im[5816] = 0.0593 +ij[5816] = 28.1 +id[5817] = "2425-04-01T02:13:40" +ik[5817] = 2.296 +il[5817] = -91 +im[5817] = 0.0458 +ij[5817] = 27.6 +id[5818] = "2425-06-12T10:59:46" +ik[5818] = 0.54 +il[5818] = 117 +im[5818] = 0.0489 +ij[5818] = 12 +id[5819] = "2425-06-23T23:51:23" +ik[5819] = 12 +il[5819] = -154 +im[5819] = 0.0563 +ij[5819] = 18 +id[5820] = "2425-09-06T20:48:57" +ik[5820] = 4.408 +il[5820] = -93 +im[5820] = 0.0471 +ij[5820] = 28.1 +id[5821] = "2425-10-15T05:34:48" +ik[5821] = 0.459 +il[5821] = 146 +im[5821] = 0.0628 +ij[5821] = 28.7 +id[5822] = "2425-10-31T14:33:05" +ik[5822] = 0.056 +il[5822] = 170 +im[5822] = 0.0643 +ij[5822] = 28.5 +id[5823] = "2425-11-08T06:11:56" +ik[5823] = 25.308 +il[5823] = 9 +im[5823] = 0.0204 +ij[5823] = 16 +id[5824] = "2425-12-05T17:42:53" +ik[5824] = 30.625 +il[5824] = 101 +im[5824] = 0.006 +ij[5824] = 8 +id[5825] = "2426-02-10T05:44:19" +ik[5825] = -1.614 +il[5825] = -160 +im[5825] = 0.1069 +ij[5825] = 2 +id[5826] = "2426-02-13T08:23:51" +ik[5826] = 36.817 +il[5826] = -171 +im[5826] = 0.0545 +ij[5826] = 3 +id[5827] = "2426-03-29T10:57:17" +ik[5827] = 5.33 +il[5827] = -149 +im[5827] = 0.0418 +ij[5827] = 27.4 +id[5828] = "2426-04-11T21:23:30" +ik[5828] = 1.961 +il[5828] = 179 +im[5828] = 0.0212 +ij[5828] = 28.2 +id[5829] = "2426-04-15T17:59:24" +ik[5829] = 0 +il[5829] = -91 +im[5829] = 0.1528 +ij[5829] = 13 +id[5830] = "2426-05-21T01:23:46" +ik[5830] = 0.5 +il[5830] = 110 +im[5830] = 0.056 +ij[5830] = 11 +id[5831] = "2426-06-28T17:02:00" +ik[5831] = 73.96 +il[5831] = 51 +im[5831] = 0.1682 +ij[5831] = 7.144 +id[5832] = "2426-08-19T17:39:49" +ik[5832] = 1.639 +il[5832] = -170 +im[5832] = 0.178 +ij[5832] = 27.4 +id[5833] = "2426-08-20T21:19:49" +ik[5833] = 127.14 +il[5833] = 146 +im[5833] = 0.1689 +ij[5833] = 14 +id[5834] = "2426-09-02T08:37:39" +ik[5834] = -2.199 +il[5834] = 99 +im[5834] = 0.1439 +ij[5834] = 4 +id[5835] = "2426-09-16T16:24:48" +ik[5835] = 45.719 +il[5835] = 122 +im[5835] = 0.1507 +ij[5835] = 1 +id[5836] = "2426-10-05T09:20:24" +ik[5836] = 0 +il[5836] = 52 +im[5836] = 0.0671 +ij[5836] = 17 +id[5837] = "2426-11-30T03:54:10" +ik[5837] = 0.183 +il[5837] = -37 +im[5837] = 0.0843 +ij[5837] = 27.3 +id[5838] = "2426-12-29T17:59:57" +ik[5838] = 0.534 +il[5838] = 42 +im[5838] = 0.0706 +ij[5838] = 27.5 +id[5839] = "2427-01-10T02:23:19" +ik[5839] = 35.025 +il[5839] = 26 +im[5839] = 0.0852 +ij[5839] = 9 +id[5840] = "2427-01-12T04:20:54" +ik[5840] = 0.029 +il[5840] = 17 +im[5840] = 0.0809 +ij[5840] = 28.8 +id[5841] = "2427-01-31T22:32:24" +ik[5841] = -26.208 +il[5841] = -64 +im[5841] = 0.0075 +ij[5841] = 15 +id[5842] = "2427-03-11T11:39:59" +ik[5842] = 2.037 +il[5842] = 108 +im[5842] = 0.0627 +ij[5842] = 27.6 +id[5843] = "2427-04-30T03:28:15" +ik[5843] = 2.217 +il[5843] = -6 +im[5843] = 0.0107 +ij[5843] = 28.6 +id[5844] = "2427-05-15T02:12:23" +ik[5844] = 3.926 +il[5844] = 149 +im[5844] = 0.0272 +ij[5844] = 27.2 +id[5845] = "2427-06-05T15:33:45" +ik[5845] = 12 +il[5845] = 157 +im[5845] = 0.0527 +ij[5845] = 18 +id[5846] = "2427-07-27T16:58:53" +ik[5846] = 1.08 +il[5846] = -91 +im[5846] = 0.0337 +ij[5846] = 12 +id[5847] = "2427-10-09T10:16:24" +ik[5847] = 0.326 +il[5847] = -148 +im[5847] = 0.0544 +ij[5847] = 28.7 +id[5848] = "2427-10-20T16:25:49" +ik[5848] = 25.547 +il[5848] = -131 +im[5848] = 0.0247 +ij[5848] = 16 +id[5849] = "2428-01-08T15:29:06" +ik[5849] = 30.982 +il[5849] = -70 +im[5849] = 0.0604 +ij[5849] = 8 +id[5850] = "2428-02-05T18:03:13" +ik[5850] = 4.879 +il[5850] = 159 +im[5850] = 0.0734 +ij[5850] = 27.4 +id[5851] = "2428-02-06T16:31:45" +ik[5851] = 0.02 +il[5851] = -169 +im[5851] = 0.062 +ij[5851] = 28.5 +id[5852] = "2428-02-22T12:33:28" +ik[5852] = 4.943 +il[5852] = 41 +im[5852] = 0.0465 +ij[5852] = 27.1 +id[5853] = "2428-03-16T00:35:43" +ik[5853] = 23 +il[5853] = 73 +im[5853] = 0.1192 +ij[5853] = 17 +id[5854] = "2428-04-06T20:30:46" +ik[5854] = 39.877 +il[5854] = -19 +im[5854] = 0.0057 +ij[5854] = 3 +id[5855] = "2428-04-24T00:21:40" +ik[5855] = -1.857 +il[5855] = 85 +im[5855] = 0.0687 +ij[5855] = 2 +id[5856] = "2428-06-19T21:20:19" +ik[5856] = 0 +il[5856] = -51 +im[5856] = 0.1911 +ij[5856] = 13 +id[5857] = "2428-07-19T14:00:13" +ik[5857] = 5.7 +il[5857] = -29 +im[5857] = 0.3483 +ij[5857] = 11 +id[5858] = "2428-08-02T03:47:05" +ik[5858] = 4.571 +il[5858] = 82 +im[5858] = 0.3779 +ij[5858] = 28.1 +id[5859] = "2428-08-10T16:57:06" +ik[5859] = 4.872 +il[5859] = -39 +im[5859] = 0.1015 +ij[5859] = 28.2 +id[5860] = "2428-08-22T20:22:55" +ik[5860] = 63.96 +il[5860] = 29 +im[5860] = 0.041 +ij[5860] = 7.0994 +id[5861] = "2428-10-04T17:42:50" +ik[5861] = 106.85 +il[5861] = 131 +im[5861] = 0.0351 +ij[5861] = 14 +id[5862] = "2428-10-14T14:34:07" +ik[5862] = -2.363 +il[5862] = -85 +im[5862] = 0.1174 +ij[5862] = 4 +id[5863] = "2428-10-23T20:38:02" +ik[5863] = 1.398 +il[5863] = -85 +im[5863] = 0.1962 +ij[5863] = 27.3 +id[5864] = "2428-11-09T18:37:52" +ik[5864] = 45.183 +il[5864] = 111 +im[5864] = 0.1453 +ij[5864] = 1 +id[5865] = "2428-11-28T17:38:28" +ik[5865] = 0.88 +il[5865] = -49 +im[5865] = 0.0497 +ij[5865] = 27.5 +id[5866] = "2428-12-20T11:10:23" +ik[5866] = 0.192 +il[5866] = -102 +im[5866] = 0.1294 +ij[5866] = 28.8 +id[5867] = "2429-01-06T14:23:15" +ik[5867] = -26.344 +il[5867] = 15 +im[5867] = 0.0941 +ij[5867] = 15 +id[5868] = "2429-02-15T03:26:56" +ik[5868] = 1.707 +il[5868] = -164 +im[5868] = 0.0854 +ij[5868] = 27.6 +id[5869] = "2429-03-07T00:58:52" +ik[5869] = 33.143 +il[5869] = 62 +im[5869] = 0.0526 +ij[5869] = 9 +id[5870] = "2429-04-23T18:40:02" +ik[5870] = 3.633 +il[5870] = -113 +im[5870] = 0.0142 +ij[5870] = 27.2 +id[5871] = "2429-05-04T18:14:35" +ik[5871] = 0.88 +il[5871] = -2 +im[5871] = 0.0325 +ij[5871] = 28.2 +id[5872] = "2429-05-13T15:40:48" +ik[5872] = 2.004 +il[5872] = 120 +im[5872] = 0.0618 +ij[5872] = 28.6 +id[5873] = "2429-05-16T18:46:27" +ik[5873] = 12 +il[5873] = 102 +im[5873] = 0.0562 +ij[5873] = 18 +id[5874] = "2429-05-26T14:22:31" +ik[5874] = 5.213 +il[5874] = -89 +im[5874] = 0.057 +ij[5874] = 28.1 +id[5875] = "2429-09-02T18:12:40" +ik[5875] = 1.09 +il[5875] = 82 +im[5875] = 0.0356 +ij[5875] = 12 +id[5876] = "2429-10-02T01:16:39" +ik[5876] = 25.716 +il[5876] = 106 +im[5876] = 0.0411 +ij[5876] = 16 +id[5877] = "2430-01-02T00:24:26" +ik[5877] = 1.708 +il[5877] = -71 +im[5877] = 0.0496 +ij[5877] = 28.2 +id[5878] = "2430-01-11T19:00:45" +ik[5878] = 4.513 +il[5878] = 103 +im[5878] = 0.0668 +ij[5878] = 27.4 +id[5879] = "2430-01-26T16:21:24" +ik[5879] = 5.282 +il[5879] = -77 +im[5879] = 0.0672 +ij[5879] = 27.1 +id[5880] = "2430-02-15T01:58:52" +ik[5880] = 32.402 +il[5880] = -37 +im[5880] = 0.063 +ij[5880] = 8 +id[5881] = "2430-02-15T11:19:51" +ik[5881] = 0 +il[5881] = -174 +im[5881] = 0.0584 +ij[5881] = 17 +id[5882] = "2430-04-22T01:17:38" +ik[5882] = 0.003 +il[5882] = -123 +im[5882] = 0.1003 +ij[5882] = 27.3 +id[5883] = "2430-04-22T07:58:43" +ik[5883] = 0.368 +il[5883] = 139 +im[5883] = 0.1036 +ij[5883] = 28.5 +id[5884] = "2430-05-25T16:31:01" +ik[5884] = 1.694 +il[5884] = -32 +im[5884] = 0.1227 +ij[5884] = 27.5 +id[5885] = "2430-06-17T02:40:02" +ik[5885] = 1.78 +il[5885] = 30 +im[5885] = 0.126 +ij[5885] = 28.8 +id[5886] = "2430-06-18T02:28:45" +ik[5886] = 45.746 +il[5886] = 42 +im[5886] = 0.1496 +ij[5886] = 3 +id[5887] = "2430-07-18T22:42:08" +ik[5887] = -2.357 +il[5887] = 35 +im[5887] = 0.2279 +ij[5887] = 2 +id[5888] = "2430-09-04T17:43:21" +ik[5888] = 0 +il[5888] = -146 +im[5888] = 0.0839 +ij[5888] = 13 +id[5889] = "2430-09-20T22:58:52" +ik[5889] = 3.153 +il[5889] = -66 +im[5889] = 0.0657 +ij[5889] = 28.2 +id[5890] = "2430-10-08T21:36:13" +ik[5890] = 3.73 +il[5890] = 113 +im[5890] = 0.3777 +ij[5890] = 11 +id[5891] = "2430-11-07T16:45:56" +ik[5891] = 63.96 +il[5891] = -46 +im[5891] = 0.2759 +ij[5891] = 7.1203 +id[5892] = "2430-12-05T08:19:13" +ik[5892] = -25.424 +il[5892] = -14 +im[5892] = 0.2045 +ij[5892] = 15 +id[5893] = "2430-12-22T06:12:54" +ik[5893] = 108.52 +il[5893] = 179 +im[5893] = 0.0811 +ij[5893] = 14 +id[5894] = "2430-12-30T11:16:49" +ik[5894] = -1.966 +il[5894] = -179 +im[5894] = 0.1693 +ij[5894] = 4 +id[5895] = "2431-01-10T13:14:12" +ik[5895] = 1.247 +il[5895] = -103 +im[5895] = 0.0735 +ij[5895] = 27.6 +id[5896] = "2431-01-19T08:47:45" +ik[5896] = 40.345 +il[5896] = 47 +im[5896] = 0.0643 +ij[5896] = 1 +id[5897] = "2431-03-31T08:27:36" +ik[5897] = 3.192 +il[5897] = 2 +im[5897] = 0.0602 +ij[5897] = 27.2 +id[5898] = "2431-04-19T06:18:52" +ik[5898] = 31.776 +il[5898] = -148 +im[5898] = 0.0341 +ij[5898] = 9 +id[5899] = "2431-04-26T05:54:14" +ik[5899] = 12 +il[5899] = -76 +im[5899] = 0.0761 +ij[5899] = 18 +id[5900] = "2431-05-29T01:30:17" +ik[5900] = 1.462 +il[5900] = -61 +im[5900] = 0.0294 +ij[5900] = 28.6 +id[5901] = "2431-07-27T19:02:09" +ik[5901] = 0.367 +il[5901] = -107 +im[5901] = 0.0084 +ij[5901] = 28.1 +id[5902] = "2431-09-14T15:43:40" +ik[5902] = 25.854 +il[5902] = 50 +im[5902] = 0.0549 +ij[5902] = 16 +id[5903] = "2431-10-09T04:57:07" +ik[5903] = 0.69 +il[5903] = 95 +im[5903] = 0.0258 +ij[5903] = 12 +id[5904] = "2431-12-22T13:40:15" +ik[5904] = 4.24 +il[5904] = 165 +im[5904] = 0.0557 +ij[5904] = 27.4 +id[5905] = "2432-01-04T05:49:58" +ik[5905] = 4.872 +il[5905] = 43 +im[5905] = 0.0338 +ij[5905] = 28.1 +id[5906] = "2432-01-05T19:42:43" +ik[5906] = 5.541 +il[5906] = -151 +im[5906] = 0.0494 +ij[5906] = 27.1 +id[5907] = "2432-01-25T04:43:14" +ik[5907] = 0 +il[5907] = -92 +im[5907] = 0.0616 +ij[5907] = 17 +id[5908] = "2432-03-25T09:36:22" +ik[5908] = 0.233 +il[5908] = 44 +im[5908] = 0.0521 +ij[5908] = 27.3 +id[5909] = "2432-04-07T10:34:52" +ik[5909] = 34.856 +il[5909] = 154 +im[5909] = 0.0565 +ij[5909] = 8 +id[5910] = "2432-04-24T10:36:39" +ik[5910] = 0.969 +il[5910] = -45 +im[5910] = 0.0401 +ij[5910] = 27.5 +id[5911] = "2432-05-19T07:44:40" +ik[5911] = 0.563 +il[5911] = -124 +im[5911] = 0.0986 +ij[5911] = 28.8 +id[5912] = "2432-05-23T10:49:04" +ik[5912] = -24.965 +il[5912] = -130 +im[5912] = 0.0419 +ij[5912] = 15 +id[5913] = "2432-06-15T00:24:23" +ik[5913] = 0.42 +il[5913] = -116 +im[5913] = 0.1114 +ij[5913] = 28.5 +id[5914] = "2432-07-06T23:46:10" +ik[5914] = 4.044 +il[5914] = 107 +im[5914] = 0.0038 +ij[5914] = 27.6 +id[5915] = "2432-08-09T01:01:46" +ik[5915] = 46.732 +il[5915] = 52 +im[5915] = 0.104 +ij[5915] = 3 +id[5916] = "2432-09-03T13:34:37" +ik[5916] = -2.257 +il[5916] = 114 +im[5916] = 0.0277 +ij[5916] = 2 +id[5917] = "2432-09-23T10:20:09" +ik[5917] = 5.777 +il[5917] = -2 +im[5917] = 0.1933 +ij[5917] = 27.2 +id[5918] = "2432-10-30T06:13:24" +ik[5918] = 0 +il[5918] = 60 +im[5918] = 0.0727 +ij[5918] = 13 +id[5919] = "2432-11-06T04:55:25" +ik[5919] = 6.449 +il[5919] = 147 +im[5919] = 0.2349 +ij[5919] = 28.2 +id[5920] = "2432-11-20T11:53:21" +ik[5920] = 0.858 +il[5920] = -179 +im[5920] = 0.2317 +ij[5920] = 28.1 +id[5921] = "2432-12-06T14:34:53" +ik[5921] = 1.8 +il[5921] = -84 +im[5921] = 0.085 +ij[5921] = 11 +id[5922] = "2432-12-22T13:48:52" +ik[5922] = 3.067 +il[5922] = -87 +im[5922] = 0.0735 +ij[5922] = 28.1 +id[5923] = "2433-01-10T05:16:00" +ik[5923] = 71.96 +il[5923] = -154 +im[5923] = 0.213 +ij[5923] = 7.1417 +id[5924] = "2433-01-12T13:52:50" +ik[5924] = 2.937 +il[5924] = 99 +im[5924] = 0.1801 +ij[5924] = 28.2 +id[5925] = "2433-02-19T16:30:52" +ik[5925] = 2.175 +il[5925] = 59 +im[5925] = 0.1296 +ij[5925] = 27.2 +id[5926] = "2433-03-04T21:10:37" +ik[5926] = -1.659 +il[5926] = 113 +im[5926] = 0.1109 +ij[5926] = 4 +id[5927] = "2433-03-09T16:30:50" +ik[5927] = 130.43 +il[5927] = -132 +im[5927] = 0.1028 +ij[5927] = 14 +id[5928] = "2433-03-13T09:30:48" +ik[5928] = 37.63 +il[5928] = 8 +im[5928] = 0.0276 +ij[5928] = 1 +id[5929] = "2433-03-30T05:31:39" +ik[5929] = 12 +il[5929] = -133 +im[5929] = 0.044 +ij[5929] = 18 +id[5930] = "2433-05-25T22:03:45" +ik[5930] = 31.285 +il[5930] = 155 +im[5930] = 0.0311 +ij[5930] = 9 +id[5931] = "2433-06-13T19:11:50" +ik[5931] = 0.639 +il[5931] = 17 +im[5931] = 0.063 +ij[5931] = 28.6 +id[5932] = "2433-08-26T23:37:28" +ik[5932] = 25.979 +il[5932] = -58 +im[5932] = 0.0597 +ij[5932] = 16 +id[5933] = "2433-11-16T21:11:20" +ik[5933] = 0.03 +il[5933] = 75 +im[5933] = 0.0471 +ij[5933] = 12 +id[5934] = "2434-01-04T22:46:25" +ik[5934] = 0 +il[5934] = -14 +im[5934] = 0.0481 +ij[5934] = 17 +id[5935] = "2434-03-03T18:20:03" +ik[5935] = 0.274 +il[5935] = -114 +im[5935] = 0.0571 +ij[5935] = 27.3 +id[5936] = "2434-03-25T21:11:17" +ik[5936] = 5.205 +il[5936] = 62 +im[5936] = 0.0446 +ij[5936] = 28.1 +id[5937] = "2434-04-01T19:45:18" +ik[5937] = 0.737 +il[5937] = 150 +im[5937] = 0.0622 +ij[5937] = 27.5 +id[5938] = "2434-05-01T07:50:54" +ik[5938] = -25.414 +il[5938] = -107 +im[5938] = 0.0639 +ij[5938] = 15 +id[5939] = "2434-05-01T20:25:16" +ik[5939] = 0.072 +il[5939] = 70 +im[5939] = 0.0588 +ij[5939] = 28.8 +id[5940] = "2434-06-11T05:41:56" +ik[5940] = 3.301 +il[5940] = -36 +im[5940] = 0.0774 +ij[5940] = 27.6 +id[5941] = "2434-06-25T09:53:32" +ik[5941] = 36.197 +il[5941] = 40 +im[5941] = 0.0904 +ij[5941] = 8 +id[5942] = "2434-08-13T09:32:03" +ik[5942] = 0.063 +il[5942] = 166 +im[5942] = 0.0202 +ij[5942] = 28.5 +id[5943] = "2434-08-14T22:30:34" +ik[5943] = 5.168 +il[5943] = -13 +im[5943] = 0.0171 +ij[5943] = 27.2 +id[5944] = "2434-09-03T08:39:44" +ik[5944] = 11 +il[5944] = 25 +im[5944] = 0.0928 +ij[5944] = 18 +id[5945] = "2434-09-25T16:06:48" +ik[5945] = 42.311 +il[5945] = 131 +im[5945] = 0.0377 +ij[5945] = 3 +id[5946] = "2434-10-05T20:24:25" +ik[5946] = -1.95 +il[5946] = 166 +im[5946] = 0.1057 +ij[5946] = 2 +id[5947] = "2434-12-08T16:31:19" +ik[5947] = 0 +il[5947] = 124 +im[5947] = 0.1153 +ij[5947] = 13 +id[5948] = "2435-01-17T08:34:54" +ik[5948] = 4.06 +il[5948] = -115 +im[5948] = 0.1145 +ij[5948] = 11 +id[5949] = "2435-01-31T13:38:00" +ik[5949] = 2.913 +il[5949] = 115 +im[5949] = 0.1521 +ij[5949] = 28.2 +id[5950] = "2435-02-23T21:32:23" +ik[5950] = 3.409 +il[5950] = -154 +im[5950] = 0.0076 +ij[5950] = 28.5 +id[5951] = "2435-02-25T22:07:06" +ik[5951] = 79.23 +il[5951] = -142 +im[5951] = 0.0709 +ij[5951] = 7.1725 +id[5952] = "2435-04-03T10:05:41" +ik[5952] = 2.226 +il[5952] = 22 +im[5952] = 0.1037 +ij[5952] = 28.5 +id[5953] = "2435-04-23T23:58:38" +ik[5953] = -1.557 +il[5953] = 9 +im[5953] = 0.0686 +ij[5953] = 4 +id[5954] = "2435-04-25T04:41:48" +ik[5954] = 37.034 +il[5954] = -51 +im[5954] = 0.0876 +ij[5954] = 1 +id[5955] = "2435-05-03T03:20:58" +ik[5955] = 145.45 +il[5955] = 45 +im[5955] = 0.054 +ij[5955] = 14 +id[5956] = "2435-07-01T13:54:25" +ik[5956] = 0.392 +il[5956] = 96 +im[5956] = 0.008 +ij[5956] = 28.6 +id[5957] = "2435-07-02T05:14:25" +ik[5957] = 31.649 +il[5957] = -128 +im[5957] = 0.0189 +ij[5957] = 9 +id[5958] = "2435-08-08T09:29:18" +ik[5958] = 26.102 +il[5958] = 167 +im[5958] = 0.0584 +ij[5958] = 16 +id[5959] = "2435-09-05T21:35:26" +ik[5959] = 0.019 +il[5959] = -98 +im[5959] = 0.0574 +ij[5959] = 28.2 +id[5960] = "2435-09-16T00:02:13" +ik[5960] = 0.43 +il[5960] = -36 +im[5960] = 0.0531 +ij[5960] = 28.7 +id[5961] = "2435-10-01T18:55:02" +ik[5961] = 2.384 +il[5961] = -166 +im[5961] = 0.0642 +ij[5961] = 28.1 +id[5962] = "2435-12-17T07:38:15" +ik[5962] = 0 +il[5962] = 39 +im[5962] = 0.0383 +ij[5962] = 17 +id[5963] = "2436-01-05T23:43:21" +ik[5963] = 0.86 +il[5963] = 1 +im[5963] = 0.0172 +ij[5963] = 12 +id[5964] = "2436-03-22T04:21:49" +ik[5964] = 1.436 +il[5964] = 109 +im[5964] = 0.0591 +ij[5964] = 28.1 +id[5965] = "2436-04-10T05:18:40" +ik[5965] = -25.664 +il[5965] = -69 +im[5965] = 0.0527 +ij[5965] = 15 +id[5966] = "2436-04-16T00:24:54" +ik[5966] = 0.275 +il[5966] = 61 +im[5966] = 0.0164 +ij[5966] = 28.8 +id[5967] = "2436-05-19T18:36:46" +ik[5967] = 2.909 +il[5967] = 119 +im[5967] = 0.0631 +ij[5967] = 27.6 +id[5968] = "2436-06-22T15:07:21" +ik[5968] = 2.092 +il[5968] = 143 +im[5968] = 0.0521 +ij[5968] = 28.2 +id[5969] = "2436-07-21T15:39:13" +ik[5969] = 4.77 +il[5969] = 60 +im[5969] = 0.0505 +ij[5969] = 27.2 +id[5970] = "2436-08-09T20:05:56" +ik[5970] = 12 +il[5970] = -179 +im[5970] = 0.0121 +ij[5970] = 18 +id[5971] = "2436-09-02T04:45:58" +ik[5971] = 33.935 +il[5971] = -82 +im[5971] = 0.0713 +ij[5971] = 8 +id[5972] = "2436-11-05T08:59:06" +ik[5972] = -1.726 +il[5972] = 117 +im[5972] = 0.0497 +ij[5972] = 2 +id[5973] = "2436-11-07T11:27:20" +ik[5973] = 0.52 +il[5973] = 101 +im[5973] = 0.0866 +ij[5973] = 28.5 +id[5974] = "2436-11-09T08:46:45" +ik[5974] = 38.438 +il[5974] = 159 +im[5974] = 0.1014 +ij[5974] = 3 +id[5975] = "2437-01-03T14:58:57" +ik[5975] = 4.279 +il[5975] = -120 +im[5975] = 0.1524 +ij[5975] = 28.6 +id[5976] = "2437-01-10T03:21:26" +ik[5976] = 0 +il[5976] = 118 +im[5976] = 0.0412 +ij[5976] = 13 +id[5977] = "2437-02-04T09:44:48" +ik[5977] = 3.078 +il[5977] = -105 +im[5977] = 0.125 +ij[5977] = 28.5 +id[5978] = "2437-02-20T10:46:27" +ik[5978] = 4.29 +il[5978] = 24 +im[5978] = 0.0425 +ij[5978] = 11 +id[5979] = "2437-04-03T02:24:02" +ik[5979] = 82.96 +il[5979] = -30 +im[5979] = 0.0601 +ij[5979] = 7.2032 +id[5980] = "2437-06-02T21:55:43" +ik[5980] = 38.065 +il[5980] = -99 +im[5980] = 0.1124 +ij[5980] = 1 +id[5981] = "2437-06-07T03:33:46" +ik[5981] = -1.602 +il[5981] = -143 +im[5981] = 0.0873 +ij[5981] = 4 +id[5982] = "2437-06-09T12:53:56" +ik[5982] = 150.4 +il[5982] = 100 +im[5982] = 0.0439 +ij[5982] = 14 +id[5983] = "2437-07-17T13:14:13" +ik[5983] = 26.219 +il[5983] = 103 +im[5983] = 0.0783 +ij[5983] = 16 +id[5984] = "2437-07-18T21:00:24" +ik[5984] = 1.529 +il[5984] = -1 +im[5984] = 0.0674 +ij[5984] = 28.6 +id[5985] = "2437-07-28T03:45:08" +ik[5985] = 0.773 +il[5985] = -12 +im[5985] = 0.074 +ij[5985] = 28.5 +id[5986] = "2437-08-12T02:04:12" +ik[5986] = 32.859 +il[5986] = 159 +im[5986] = 0.0682 +ij[5986] = 9 +id[5987] = "2437-08-17T18:27:01" +ik[5987] = 5.821 +il[5987] = -32 +im[5987] = 0.0476 +ij[5987] = 28.2 +id[5988] = "2437-09-07T18:50:47" +ik[5988] = 0.743 +il[5988] = 167 +im[5988] = 0.0458 +ij[5988] = 28.7 +id[5989] = "2437-10-24T09:40:29" +ik[5989] = 3.471 +il[5989] = 38 +im[5989] = 0.0663 +ij[5989] = 27.4 +id[5990] = "2437-11-07T07:07:14" +ik[5990] = 6.266 +il[5990] = -148 +im[5990] = 0.0656 +ij[5990] = 27.1 +id[5991] = "2437-11-27T13:35:16" +ik[5991] = 0 +il[5991] = -47 +im[5991] = 0.0348 +ij[5991] = 17 +id[5992] = "2437-12-19T10:05:53" +ik[5992] = 0.117 +il[5992] = -140 +im[5992] = 0.0513 +ij[5992] = 28.1 +id[5993] = "2438-03-15T09:07:48" +ik[5993] = 0.91 +il[5993] = 26 +im[5993] = 0.0392 +ij[5993] = 12 +id[5994] = "2438-03-21T19:47:34" +ik[5994] = -25.844 +il[5994] = 60 +im[5994] = 0.0487 +ij[5994] = 15 +id[5995] = "2438-06-07T16:14:37" +ik[5995] = 1.584 +il[5995] = 179 +im[5995] = 0.0079 +ij[5995] = 28.1 +id[5996] = "2438-07-01T06:59:52" +ik[5996] = 4.491 +il[5996] = -172 +im[5996] = 0.0561 +ij[5996] = 27.2 +id[5997] = "2438-07-20T22:21:34" +ik[5997] = 12 +il[5997] = 149 +im[5997] = 0.0128 +ij[5997] = 18 +id[5998] = "2438-10-18T07:46:51" +ik[5998] = 31.813 +il[5998] = 154 +im[5998] = 0.0561 +ij[5998] = 8 +id[5999] = "2438-12-09T21:20:27" +ik[5999] = -1.605 +il[5999] = 99 +im[5999] = 0.0231 +ij[5999] = 2 +id[6000] = "2438-12-19T11:12:46" +ik[6000] = 36.469 +il[6000] = -17 +im[6000] = 0.0896 +ij[6000] = 3 +id[6001] = "2439-01-14T14:43:54" +ik[6001] = 0.288 +il[6001] = -179 +im[6001] = 0.1229 +ij[6001] = 28.6 +id[6002] = "2439-02-14T12:54:24" +ik[6002] = 0 +il[6002] = 149 +im[6002] = 0.1159 +ij[6002] = 13 +id[6003] = "2439-02-16T18:55:47" +ik[6003] = 2.275 +il[6003] = 80 +im[6003] = 0.0415 +ij[6003] = 28.2 +id[6004] = "2439-03-01T03:35:14" +ik[6004] = 1.177 +il[6004] = 68 +im[6004] = 0.1232 +ij[6004] = 28.6 +id[6005] = "2439-03-26T17:21:08" +ik[6005] = 3.2 +il[6005] = 86 +im[6005] = 0.1767 +ij[6005] = 11 +id[6006] = "2439-04-15T06:52:16" +ik[6006] = 4.122 +il[6006] = -151 +im[6006] = 0.1413 +ij[6006] = 28.1 +id[6007] = "2439-05-07T11:57:00" +ik[6007] = 81.96 +il[6007] = -12 +im[6007] = 0.0844 +ij[6007] = 7.2079 +id[6008] = "2439-06-21T01:37:02" +ik[6008] = 26.167 +il[6008] = -145 +im[6008] = 0.0164 +ij[6008] = 16 +id[6009] = "2439-07-10T10:38:48" +ik[6009] = 145.91 +il[6009] = -92 +im[6009] = 0.1202 +ij[6009] = 14 +id[6010] = "2439-07-14T17:38:41" +ik[6010] = 40.653 +il[6010] = -155 +im[6010] = 0.0934 +ij[6010] = 1 +id[6011] = "2439-07-20T07:51:34" +ik[6011] = -1.778 +il[6011] = 46 +im[6011] = 0.0295 +ij[6011] = 4 +id[6012] = "2439-08-05T07:41:40" +ik[6012] = 2.658 +il[6012] = -156 +im[6012] = 0.0808 +ij[6012] = 28.6 +id[6013] = "2439-08-28T21:03:25" +ik[6013] = 1.201 +il[6013] = -127 +im[6013] = 0.0217 +ij[6013] = 28.7 +id[6014] = "2439-10-03T07:17:01" +ik[6014] = 3.062 +il[6014] = 65 +im[6014] = 0.0811 +ij[6014] = 27.4 +id[6015] = "2439-10-04T21:22:25" +ik[6015] = 34.705 +il[6015] = -131 +im[6015] = 0.0878 +ij[6015] = 9 +id[6016] = "2439-10-24T18:41:46" +ik[6016] = 1.428 +il[6016] = 104 +im[6016] = 0.0304 +ij[6016] = 28.5 +id[6017] = "2439-11-07T22:42:41" +ik[6017] = 0 +il[6017] = -177 +im[6017] = 0.0477 +ij[6017] = 17 +id[6018] = "2440-01-01T18:32:45" +ik[6018] = 0.134 +il[6018] = 65 +im[6018] = 0.0691 +ij[6018] = 27.3 +id[6019] = "2440-01-30T07:04:46" +ik[6019] = 0.51 +il[6019] = 157 +im[6019] = 0.0668 +ij[6019] = 27.5 +id[6020] = "2440-02-29T19:06:45" +ik[6020] = 1.623 +il[6020] = -80 +im[6020] = 0.0575 +ij[6020] = 28.1 +id[6021] = "2440-03-01T10:07:21" +ik[6021] = -25.999 +il[6021] = 64 +im[6021] = 0.053 +ij[6021] = 15 +id[6022] = "2440-05-22T01:33:35" +ik[6022] = 0.17 +il[6022] = -87 +im[6022] = 0.048 +ij[6022] = 12 +id[6023] = "2440-07-01T05:27:59" +ik[6023] = 12 +il[6023] = 45 +im[6023] = 0.0267 +ij[6023] = 18 +id[6024] = "2440-08-09T04:30:14" +ik[6024] = 1.962 +il[6024] = 88 +im[6024] = 0.0365 +ij[6024] = 28.1 +id[6025] = "2440-11-16T02:03:43" +ik[6025] = 25.176 +il[6025] = 0 +im[6025] = 0.0515 +ij[6025] = 16 +id[6026] = "2440-11-22T15:21:58" +ik[6026] = 30.758 +il[6026] = -136 +im[6026] = 0.0434 +ij[6026] = 8 +id[6027] = "2441-01-20T07:59:35" +ik[6027] = -1.586 +il[6027] = -180 +im[6027] = 0.084 +ij[6027] = 2 +id[6028] = "2441-01-25T12:36:11" +ik[6028] = 0.471 +il[6028] = 161 +im[6028] = 0.0953 +ij[6028] = 28.6 +id[6029] = "2441-01-27T08:54:40" +ik[6029] = 36.333 +il[6029] = -126 +im[6029] = 0.0655 +ij[6029] = 3 +id[6030] = "2441-02-13T12:00:57" +ik[6030] = 1.455 +il[6030] = -8 +im[6030] = 0.0075 +ij[6030] = 28.7 +id[6031] = "2441-03-26T10:39:16" +ik[6031] = 0 +il[6031] = 43 +im[6031] = 0.01 +ij[6031] = 13 +id[6032] = "2441-05-03T06:52:42" +ik[6032] = 0.64 +il[6032] = 77 +im[6032] = 0.1543 +ij[6032] = 11 +id[6033] = "2441-05-24T04:44:19" +ik[6033] = 1.239 +il[6033] = 102 +im[6033] = 0.2243 +ij[6033] = 28.2 +id[6034] = "2441-06-12T09:41:52" +ik[6034] = 77.96 +il[6034] = -145 +im[6034] = 0.1581 +ij[6034] = 7.1677 +id[6035] = "2441-08-08T01:03:43" +ik[6035] = 134.6 +il[6035] = 176 +im[6035] = 0.0776 +ij[6035] = 14 +id[6036] = "2441-08-09T03:01:38" +ik[6036] = 2.062 +il[6036] = 157 +im[6036] = 0.0442 +ij[6036] = 28.7 +id[6037] = "2441-08-17T07:10:44" +ik[6037] = 3.745 +il[6037] = 175 +im[6037] = 0.1401 +ij[6037] = 28.6 +id[6038] = "2441-08-21T17:02:42" +ik[6038] = -2.069 +il[6038] = 70 +im[6038] = 0.0811 +ij[6038] = 4 +id[6039] = "2441-08-29T02:17:39" +ik[6039] = 44.431 +il[6039] = 3 +im[6039] = 0.104 +ij[6039] = 1 +id[6040] = "2441-09-05T12:34:34" +ik[6040] = 2.274 +il[6040] = -78 +im[6040] = 0.063 +ij[6040] = 27.4 +id[6041] = "2441-10-15T20:57:26" +ik[6041] = 0 +il[6041] = -168 +im[6041] = 0.0998 +ij[6041] = 17 +id[6042] = "2441-12-09T21:10:25" +ik[6042] = 0.045 +il[6042] = 10 +im[6042] = 0.0914 +ij[6042] = 27.3 +id[6043] = "2441-12-13T16:04:38" +ik[6043] = 35.498 +il[6043] = 124 +im[6043] = 0.0766 +ij[6043] = 9 +id[6044] = "2441-12-27T23:45:25" +ik[6044] = 0.225 +il[6044] = 149 +im[6044] = 0.0645 +ij[6044] = 28.5 +id[6045] = "2442-01-07T22:32:25" +ik[6045] = 0.508 +il[6045] = -85 +im[6045] = 0.0834 +ij[6045] = 27.5 +id[6046] = "2442-02-09T07:09:12" +ik[6046] = -26.15 +il[6046] = 101 +im[6046] = 0.0682 +ij[6046] = 15 +id[6047] = "2442-02-15T21:35:43" +ik[6047] = 0.154 +il[6047] = -52 +im[6047] = 0.0211 +ij[6047] = 28.2 +id[6048] = "2442-03-04T05:49:22" +ik[6048] = 1.216 +il[6048] = -18 +im[6048] = 0.0516 +ij[6048] = 28.8 +id[6049] = "2442-03-19T17:53:11" +ik[6049] = 2.142 +il[6049] = -51 +im[6049] = 0.0545 +ij[6049] = 27.6 +id[6050] = "2442-06-12T20:51:49" +ik[6050] = 12 +il[6050] = 5 +im[6050] = 0.0385 +ij[6050] = 18 +id[6051] = "2442-07-11T08:38:28" +ik[6051] = 0.94 +il[6051] = 105 +im[6051] = 0.0356 +ij[6051] = 12 +id[6052] = "2442-10-27T19:16:37" +ik[6052] = 25.467 +il[6052] = 108 +im[6052] = 0.0407 +ij[6052] = 16 +id[6053] = "2442-11-04T04:16:26" +ik[6053] = 0.206 +il[6053] = 44 +im[6053] = 0.0505 +ij[6053] = 28.2 +id[6054] = "2442-12-26T06:15:18" +ik[6054] = 30.721 +il[6054] = 156 +im[6054] = 0.0156 +ij[6054] = 8 +id[6055] = "2443-01-21T21:55:12" +ik[6055] = 0.711 +il[6055] = 176 +im[6055] = 0.0506 +ij[6055] = 28.7 +id[6056] = "2443-02-10T22:57:13" +ik[6056] = 0.843 +il[6056] = -9 +im[6056] = 0.0402 +ij[6056] = 28.6 +id[6057] = "2443-02-18T01:12:58" +ik[6057] = 5.07 +il[6057] = 25 +im[6057] = 0.0827 +ij[6057] = 27.4 +id[6058] = "2443-03-09T01:49:41" +ik[6058] = 4.792 +il[6058] = -179 +im[6058] = 0.0134 +ij[6058] = 27.1 +id[6059] = "2443-03-15T17:06:43" +ik[6059] = 38.313 +il[6059] = 30 +im[6059] = 0.1221 +ij[6059] = 3 +id[6060] = "2443-03-23T07:38:16" +ik[6060] = -1.721 +il[6060] = -116 +im[6060] = 0.0165 +ij[6060] = 2 +id[6061] = "2443-04-07T01:39:10" +ik[6061] = 23 +il[6061] = 113 +im[6061] = 0.022 +ij[6061] = 17 +id[6062] = "2443-05-23T01:04:12" +ik[6062] = 0 +il[6062] = -163 +im[6062] = 0.2349 +ij[6062] = 13 +id[6063] = "2443-06-14T00:12:29" +ik[6063] = 0 +il[6063] = 47 +im[6063] = 0.047 +ij[6063] = 18 +id[6064] = "2443-06-23T16:35:49" +ik[6064] = 3.63 +il[6064] = -119 +im[6064] = 0.2775 +ij[6064] = 11 +id[6065] = "2443-07-30T00:30:50" +ik[6065] = 67.98 +il[6065] = -66 +im[6065] = 0.2726 +ij[6065] = 7.1109 +id[6066] = "2443-09-11T05:11:46" +ik[6066] = 0 +il[6066] = -72 +im[6066] = 0.2182 +ij[6066] = 17 +id[6067] = "2443-09-14T13:40:40" +ik[6067] = 114.53 +il[6067] = -167 +im[6067] = 0.162 +ij[6067] = 14 +id[6068] = "2443-09-24T23:42:43" +ik[6068] = -2.358 +il[6068] = 145 +im[6068] = 0.1807 +ij[6068] = 4 +id[6069] = "2443-10-17T17:33:38" +ik[6069] = 46.267 +il[6069] = 102 +im[6069] = 0.0344 +ij[6069] = 1 +id[6070] = "2443-11-11T20:33:08" +ik[6070] = 0.615 +il[6070] = -56 +im[6070] = 0.0787 +ij[6070] = 27.3 +id[6071] = "2443-12-13T09:52:05" +ik[6071] = 0.647 +il[6071] = 53 +im[6071] = 0.008 +ij[6071] = 27.5 +id[6072] = "2444-01-17T22:04:00" +ik[6072] = -26.302 +il[6072] = -147 +im[6072] = 0.0979 +ij[6072] = 15 +id[6073] = "2444-02-16T01:07:44" +ik[6073] = 33.88 +il[6073] = 86 +im[6073] = 0.0871 +ij[6073] = 9 +id[6074] = "2444-02-16T04:57:00" +ik[6074] = 1.609 +il[6074] = 30 +im[6074] = 0.0871 +ij[6074] = 28.8 +id[6075] = "2444-02-23T02:29:59" +ik[6075] = 1.196 +il[6075] = 132 +im[6075] = 0.0176 +ij[6075] = 28.5 +id[6076] = "2444-02-25T20:50:02" +ik[6076] = 1.847 +il[6076] = -116 +im[6076] = 0.0287 +ij[6076] = 27.6 +id[6077] = "2444-05-01T22:37:21" +ik[6077] = 3.758 +il[6077] = 122 +im[6077] = 0.0433 +ij[6077] = 27.2 +id[6078] = "2444-05-24T06:52:41" +ik[6078] = 12 +il[6078] = -146 +im[6078] = 0.0445 +ij[6078] = 18 +id[6079] = "2444-08-19T10:09:09" +ik[6079] = 1.14 +il[6079] = -79 +im[6079] = 0.0495 +ij[6079] = 12 +id[6080] = "2444-10-08T21:28:26" +ik[6080] = 25.657 +il[6080] = 83 +im[6080] = 0.0253 +ij[6080] = 16 +id[6081] = "2445-01-10T05:45:49" +ik[6081] = 0.306 +il[6081] = 143 +im[6081] = 0.0694 +ij[6081] = 28.7 +id[6082] = "2445-01-20T11:02:27" +ik[6082] = 4.638 +il[6082] = 161 +im[6082] = 0.0131 +ij[6082] = 27.4 +id[6083] = "2445-01-30T03:57:31" +ik[6083] = 31.711 +il[6083] = -1 +im[6083] = 0.0501 +ij[6083] = 8 +id[6084] = "2445-02-04T19:39:27" +ik[6084] = 5.164 +il[6084] = 177 +im[6084] = 0.0435 +ij[6084] = 27.1 +id[6085] = "2445-02-25T02:45:01" +ik[6085] = 23 +il[6085] = -97 +im[6085] = 0.0825 +ij[6085] = 17 +id[6086] = "2445-02-26T21:13:07" +ik[6086] = 0.828 +il[6086] = 3 +im[6086] = 0.069 +ij[6086] = 28.6 +id[6087] = "2445-05-07T00:03:50" +ik[6087] = 0.317 +il[6087] = -107 +im[6087] = 0.1532 +ij[6087] = 27.3 +id[6088] = "2445-05-20T11:16:39" +ik[6088] = 43.351 +il[6088] = -147 +im[6088] = 0.1498 +ij[6088] = 3 +id[6089] = "2445-06-16T09:00:41" +ik[6089] = 2.767 +il[6089] = 143 +im[6089] = 0.1688 +ij[6089] = 27.5 +id[6090] = "2445-06-18T20:46:44" +ik[6090] = -2.187 +il[6090] = -10 +im[6090] = 0.2014 +ij[6090] = 2 +id[6091] = "2445-07-28T16:54:49" +ik[6091] = 4.175 +il[6091] = 70 +im[6091] = 0.291 +ij[6091] = 28.2 +id[6092] = "2445-08-07T13:41:10" +ik[6092] = 0 +il[6092] = -179 +im[6092] = 0.068 +ij[6092] = 13 +id[6093] = "2445-09-07T17:08:42" +ik[6093] = 6.12 +il[6093] = 91 +im[6093] = 0.3595 +ij[6093] = 11 +id[6094] = "2445-10-07T16:47:47" +ik[6094] = 61.13 +il[6094] = -136 +im[6094] = 0.2942 +ij[6094] = 7.1085 +id[6095] = "2445-10-11T09:00:52" +ik[6095] = 5.879 +il[6095] = 17 +im[6095] = 0.0946 +ij[6095] = 27.5 +id[6096] = "2445-10-20T08:10:16" +ik[6096] = 2.919 +il[6096] = 117 +im[6096] = 0.3084 +ij[6096] = 28.2 +id[6097] = "2445-11-18T14:20:30" +ik[6097] = 103.03 +il[6097] = -51 +im[6097] = 0.2148 +ij[6097] = 14 +id[6098] = "2445-11-28T23:37:25" +ik[6098] = -2.149 +il[6098] = -90 +im[6098] = 0.1602 +ij[6098] = 4 +id[6099] = "2445-12-17T16:32:00" +ik[6099] = -26.259 +il[6099] = -164 +im[6099] = 0.1506 +ij[6099] = 15 +id[6100] = "2445-12-23T20:27:36" +ik[6100] = 42.146 +il[6100] = -164 +im[6100] = 0.0337 +ij[6100] = 1 +id[6101] = "2446-01-23T22:30:40" +ik[6101] = 2.129 +il[6101] = 101 +im[6101] = 0.0854 +ij[6101] = 28.8 +id[6102] = "2446-01-27T22:30:57" +ik[6102] = 1.433 +il[6102] = 139 +im[6102] = 0.1097 +ij[6102] = 27.6 +id[6103] = "2446-04-03T11:27:17" +ik[6103] = 32.209 +il[6103] = -156 +im[6103] = 0.0242 +ij[6103] = 9 +id[6104] = "2446-04-10T04:24:05" +ik[6104] = 3.393 +il[6104] = 13 +im[6104] = 0.0727 +ij[6104] = 27.2 +id[6105] = "2446-04-30T15:31:39" +ik[6105] = 1.293 +il[6105] = 39 +im[6105] = 0.007 +ij[6105] = 28.5 +id[6106] = "2446-05-04T15:02:19" +ik[6106] = 12 +il[6106] = 84 +im[6106] = 0.0484 +ij[6106] = 18 +id[6107] = "2446-07-06T18:29:15" +ik[6107] = 0.633 +il[6107] = -82 +im[6107] = 0.047 +ij[6107] = 28.1 +id[6108] = "2446-09-21T11:23:21" +ik[6108] = 25.804 +il[6108] = 40 +im[6108] = 0.003 +ij[6108] = 16 +id[6109] = "2446-09-24T22:34:56" +ik[6109] = 0.89 +il[6109] = -88 +im[6109] = 0.0389 +ij[6109] = 12 +id[6110] = "2446-12-04T15:30:57" +ik[6110] = 3.109 +il[6110] = -177 +im[6110] = 0.0356 +ij[6110] = 28.1 +id[6111] = "2446-12-30T06:32:02" +ik[6111] = 4.339 +il[6111] = -148 +im[6111] = 0.0057 +ij[6111] = 27.4 +id[6112] = "2447-01-02T11:44:32" +ik[6112] = 0.017 +il[6112] = 157 +im[6112] = 0.0372 +ij[6112] = 28.7 +id[6113] = "2447-01-13T17:09:23" +ik[6113] = 5.447 +il[6113] = -170 +im[6113] = 0.0119 +ij[6113] = 27.1 +id[6114] = "2447-02-02T04:07:01" +ik[6114] = 0 +il[6114] = -151 +im[6114] = 0.0583 +ij[6114] = 17 +id[6115] = "2447-03-15T04:16:43" +ik[6115] = 0.43 +il[6115] = -125 +im[6115] = 0.0408 +ij[6115] = 28.6 +id[6116] = "2447-03-16T09:37:57" +ik[6116] = 33.808 +il[6116] = 166 +im[6116] = 0.0591 +ij[6116] = 8 +id[6117] = "2447-04-04T20:15:32" +ik[6117] = 0.185 +il[6117] = -169 +im[6117] = 0.0846 +ij[6117] = 27.3 +id[6118] = "2447-05-05T15:52:27" +ik[6118] = 1.14 +il[6118] = -171 +im[6118] = 0.0746 +ij[6118] = 27.5 +id[6119] = "2447-06-03T09:00:39" +ik[6119] = -24.644 +il[6119] = -153 +im[6119] = 0.0861 +ij[6119] = 15 +id[6120] = "2447-07-17T07:05:12" +ik[6120] = 0.835 +il[6120] = -60 +im[6120] = 0.12 +ij[6120] = 28.8 +id[6121] = "2447-07-21T21:13:50" +ik[6121] = 4.628 +il[6121] = 133 +im[6121] = 0.016 +ij[6121] = 27.6 +id[6122] = "2447-07-23T00:06:37" +ik[6122] = 47.392 +il[6122] = 100 +im[6122] = 0.0521 +ij[6122] = 3 +id[6123] = "2447-08-20T11:44:33" +ik[6123] = -2.36 +il[6123] = -156 +im[6123] = 0.0615 +ij[6123] = 2 +id[6124] = "2447-10-11T14:21:01" +ik[6124] = 0 +il[6124] = -43 +im[6124] = 0.1315 +ij[6124] = 13 +id[6125] = "2447-10-29T20:19:25" +ik[6125] = 5.2 +il[6125] = 46 +im[6125] = 0.2157 +ij[6125] = 28.1 +id[6126] = "2447-11-17T09:34:29" +ik[6126] = 0 +il[6126] = 12 +im[6126] = 0.2782 +ij[6126] = 11 +id[6127] = "2447-12-19T14:03:40" +ik[6127] = 68.99 +il[6127] = 79 +im[6127] = 0.0354 +ij[6127] = 7.1328 +id[6128] = "2448-02-10T20:04:28" +ik[6128] = 122.24 +il[6128] = 130 +im[6128] = 0.0569 +ij[6128] = 14 +id[6129] = "2448-02-10T23:22:20" +ik[6129] = -1.75 +il[6129] = 82 +im[6129] = 0.0532 +ij[6129] = 4 +id[6130] = "2448-02-23T07:32:35" +ik[6130] = 38.395 +il[6130] = 76 +im[6130] = 0.1091 +ij[6130] = 1 +id[6131] = "2448-03-11T09:45:45" +ik[6131] = 2.725 +il[6131] = -157 +im[6131] = 0.0189 +ij[6131] = 27.2 +id[6132] = "2448-04-10T16:16:51" +ik[6132] = 12 +il[6132] = 31 +im[6132] = 0.0174 +ij[6132] = 18 +id[6133] = "2448-05-11T13:57:04" +ik[6133] = 31.374 +il[6133] = -3 +im[6133] = 0.0465 +ij[6133] = 9 +id[6134] = "2448-07-07T13:37:38" +ik[6134] = 0.532 +il[6134] = -177 +im[6134] = 0.0323 +ij[6134] = 28.2 +id[6135] = "2448-07-25T12:11:16" +ik[6135] = 0.007 +il[6135] = 16 +im[6135] = 0.0604 +ij[6135] = 28.5 +id[6136] = "2448-09-02T23:31:09" +ik[6136] = 25.932 +il[6136] = -124 +im[6136] = 0.028 +ij[6136] = 16 +id[6137] = "2448-10-31T16:51:49" +ik[6137] = 0.27 +il[6137] = -168 +im[6137] = 0.0386 +ij[6137] = 12 +id[6138] = "2449-01-12T09:25:14" +ik[6138] = 0 +il[6138] = 113 +im[6138] = 0.0545 +ij[6138] = 17 +id[6139] = "2449-02-20T09:37:55" +ik[6139] = 5.471 +il[6139] = 133 +im[6139] = 0.0079 +ij[6139] = 28.1 +id[6140] = "2449-03-11T23:34:16" +ik[6140] = 0.267 +il[6140] = 109 +im[6140] = 0.0656 +ij[6140] = 27.3 +id[6141] = "2449-03-22T14:54:22" +ik[6141] = 1.418 +il[6141] = -19 +im[6141] = 0.0138 +ij[6141] = 28.2 +id[6142] = "2449-03-29T12:12:17" +ik[6142] = 0.236 +il[6142] = 87 +im[6142] = 0.069 +ij[6142] = 28.6 +id[6143] = "2449-04-10T07:44:02" +ik[6143] = 0.806 +il[6143] = -93 +im[6143] = 0.0718 +ij[6143] = 27.5 +id[6144] = "2449-05-09T15:27:31" +ik[6144] = -25.276 +il[6144] = 73 +im[6144] = 0.0782 +ij[6144] = 15 +id[6145] = "2449-05-23T02:01:57" +ik[6145] = 36.16 +il[6145] = 44 +im[6145] = 0.0733 +ij[6145] = 8 +id[6146] = "2449-06-20T11:36:35" +ik[6146] = 3.522 +il[6146] = 177 +im[6146] = 0.0751 +ij[6146] = 27.6 +id[6147] = "2449-06-22T09:14:47" +ik[6147] = 0.271 +il[6147] = -129 +im[6147] = 0.0921 +ij[6147] = 28.8 +id[6148] = "2449-08-26T04:34:16" +ik[6148] = 5.386 +il[6148] = -143 +im[6148] = 0.0438 +ij[6148] = 27.2 +id[6149] = "2449-09-06T14:57:33" +ik[6149] = 44.197 +il[6149] = 174 +im[6149] = 0.0894 +ij[6149] = 3 +id[6150] = "2449-09-15T16:34:29" +ik[6150] = 11 +il[6150] = -122 +im[6150] = 0.1254 +ij[6150] = 18 +id[6151] = "2449-09-23T18:26:21" +ik[6151] = -2.065 +il[6151] = -71 +im[6151] = 0.0529 +ij[6151] = 2 +id[6152] = "2449-11-24T20:04:57" +ik[6152] = 0 +il[6152] = 149 +im[6152] = 0.1732 +ij[6152] = 13 +id[6153] = "2449-12-14T10:52:50" +ik[6153] = 1.054 +il[6153] = 115 +im[6153] = 0.1574 +ij[6153] = 28.2 +id[6154] = "2450-01-02T08:26:03" +ik[6154] = 3.5 +il[6154] = -40 +im[6154] = 0.1789 +ij[6154] = 11 +id[6155] = "2450-01-17T05:23:48" +ik[6155] = 12 +il[6155] = -39 +im[6155] = 0.1892 +ij[6155] = 17 +id[6156] = "2450-02-09T19:07:33" +ik[6156] = 76.96 +il[6156] = -27 +im[6156] = 0.0309 +ij[6156] = 7.1595 +id[6157] = "2450-02-26T16:25:23" +ik[6157] = 12 +il[6157] = 166 +im[6157] = 0.1406 +ij[6157] = 18 +id[6158] = "2450-04-05T11:58:48" +ik[6158] = -1.578 +il[6158] = -130 +im[6158] = 0.0113 +ij[6158] = 4 +id[6159] = "2450-04-09T06:17:34" +ik[6159] = 37.059 +il[6159] = -9 +im[6159] = 0.0726 +ij[6159] = 1 +id[6160] = "2450-04-14T11:59:22" +ik[6160] = 140.66 +il[6160] = -45 +im[6160] = 0.0884 +ij[6160] = 14 +id[6161] = "2450-06-17T11:25:57" +ik[6161] = 31.412 +il[6161] = -148 +im[6161] = 0.041 +ij[6161] = 9 +id[6162] = "2450-08-15T20:28:58" +ik[6162] = 26.055 +il[6162] = -72 +im[6162] = 0.0534 +ij[6162] = 16 +id[6163] = "2450-08-30T18:27:56" +ik[6163] = 4.016 +il[6163] = 103 +im[6163] = 0.052 +ij[6163] = 28.1 +id[6164] = "2450-12-15T13:29:10" +ik[6164] = 0.56 +il[6164] = 159 +im[6164] = 0.045 +ij[6164] = 12 +id[6165] = "2450-12-24T14:38:42" +ik[6165] = 0 +il[6165] = 37 +im[6165] = 0.0571 +ij[6165] = 17 +id[6166] = "2451-03-20T05:42:39" +ik[6166] = 0.659 +il[6166] = -85 +im[6166] = 0.0532 +ij[6166] = 27.5 +id[6167] = "2451-04-12T21:06:49" +ik[6167] = 0.968 +il[6167] = -78 +im[6167] = 0.0164 +ij[6167] = 28.6 +id[6168] = "2451-04-18T23:51:22" +ik[6168] = -25.579 +il[6168] = -59 +im[6168] = 0.0611 +ij[6168] = 15 +id[6169] = "2451-05-13T21:39:57" +ik[6169] = 5.568 +il[6169] = -144 +im[6169] = 0.0135 +ij[6169] = 28.1 +id[6170] = "2451-05-28T23:18:16" +ik[6170] = 3.042 +il[6170] = -21 +im[6170] = 0.009 +ij[6170] = 27.6 +id[6171] = "2451-06-05T22:55:39" +ik[6171] = 0.806 +il[6171] = 63 +im[6171] = 0.0624 +ij[6171] = 28.8 +id[6172] = "2451-07-31T05:53:55" +ik[6172] = 4.904 +il[6172] = 142 +im[6172] = 0.0779 +ij[6172] = 27.2 +id[6173] = "2451-08-10T16:37:30" +ik[6173] = 34.969 +il[6173] = 83 +im[6173] = 0.0446 +ij[6173] = 8 +id[6174] = "2451-08-19T08:43:59" +ik[6174] = 11 +il[6174] = -74 +im[6174] = 0.06 +ij[6174] = 18 +id[6175] = "2451-10-24T10:11:34" +ik[6175] = 39.734 +il[6175] = -173 +im[6175] = 0.1088 +ij[6175] = 3 +id[6176] = "2451-10-24T22:31:42" +ik[6176] = -1.801 +il[6176] = 7 +im[6176] = 0.112 +ij[6176] = 2 +id[6177] = "2451-12-29T11:59:50" +ik[6177] = 0 +il[6177] = 79 +im[6177] = 0.0497 +ij[6177] = 13 +id[6178] = "2452-01-11T03:28:08" +ik[6178] = 3.55 +il[6178] = -30 +im[6178] = 0.0496 +ij[6178] = 28.2 +id[6179] = "2452-02-08T04:23:23" +ik[6179] = 4.37 +il[6179] = -152 +im[6179] = 0.1139 +ij[6179] = 11 +id[6180] = "2452-03-13T21:07:30" +ik[6180] = 3.11 +il[6180] = 72 +im[6180] = 0.1272 +ij[6180] = 28.2 +id[6181] = "2452-03-20T11:02:26" +ik[6181] = 81.96 +il[6181] = -74 +im[6181] = 0.1074 +ij[6181] = 7.1927 +id[6182] = "2452-05-18T11:22:33" +ik[6182] = 37.476 +il[6182] = 124 +im[6182] = 0.1029 +ij[6182] = 1 +id[6183] = "2452-05-20T18:45:02" +ik[6183] = -1.568 +il[6183] = 36 +im[6183] = 0.0973 +ij[6183] = 4 +id[6184] = "2452-05-26T21:59:17" +ik[6184] = 149.42 +il[6184] = 46 +im[6184] = 0.022 +ij[6184] = 14 +id[6185] = "2452-07-25T20:52:10" +ik[6185] = 32.285 +il[6185] = -78 +im[6185] = 0.0636 +ij[6185] = 9 +id[6186] = "2452-07-26T03:37:48" +ik[6186] = 26.178 +il[6186] = -176 +im[6186] = 0.0664 +ij[6186] = 16 +id[6187] = "2452-11-01T03:11:22" +ik[6187] = 3.592 +il[6187] = 63 +im[6187] = 0.0147 +ij[6187] = 27.4 +id[6188] = "2452-11-14T23:36:50" +ik[6188] = 6.154 +il[6188] = -108 +im[6188] = 0.0173 +ij[6188] = 27.1 +id[6189] = "2452-11-19T10:23:39" +ik[6189] = 1.013 +il[6189] = 133 +im[6189] = 0.0605 +ij[6189] = 28.1 +id[6190] = "2452-12-04T23:42:26" +ik[6190] = 0 +il[6190] = 86 +im[6190] = 0.0595 +ij[6190] = 17 +id[6191] = "2453-02-14T04:18:03" +ik[6191] = 1.07 +il[6191] = 17 +im[6191] = 0.0541 +ij[6191] = 12 +id[6192] = "2453-03-29T09:35:11" +ik[6192] = -25.78 +il[6192] = 149 +im[6192] = 0.055 +ij[6192] = 15 +id[6193] = "2453-05-07T11:41:15" +ik[6193] = 2.732 +il[6193] = 152 +im[6193] = 0.0041 +ij[6193] = 27.6 +id[6194] = "2453-05-09T04:16:27" +ik[6194] = 1.674 +il[6194] = -80 +im[6194] = 0.0207 +ij[6194] = 28.1 +id[6195] = "2453-05-21T17:28:29" +ik[6195] = 1.18 +il[6195] = -158 +im[6195] = 0.0047 +ij[6195] = 28.8 +id[6196] = "2453-07-09T00:43:27" +ik[6196] = 4.592 +il[6196] = -150 +im[6196] = 0.0534 +ij[6196] = 27.2 +id[6197] = "2453-07-28T12:41:45" +ik[6197] = 12 +il[6197] = -140 +im[6197] = 0.0617 +ij[6197] = 18 +id[6198] = "2453-09-23T21:14:55" +ik[6198] = 5.44 +il[6198] = -71 +im[6198] = 0.0717 +ij[6198] = 28.2 +id[6199] = "2453-10-02T02:56:37" +ik[6199] = 32.521 +il[6199] = -77 +im[6199] = 0.0509 +ij[6199] = 8 +id[6200] = "2453-11-25T21:40:10" +ik[6200] = -1.64 +il[6200] = 172 +im[6200] = 0.0237 +ij[6200] = 2 +id[6201] = "2453-12-04T05:45:36" +ik[6201] = 37.018 +il[6201] = 131 +im[6201] = 0.0828 +ij[6201] = 3 +id[6202] = "2454-01-30T21:59:45" +ik[6202] = 0 +il[6202] = 85 +im[6202] = 0.0865 +ij[6202] = 13 +id[6203] = "2454-03-13T05:04:17" +ik[6203] = 3.77 +il[6203] = -4 +im[6203] = 0.0887 +ij[6203] = 11 +id[6204] = "2454-03-29T18:42:24" +ik[6204] = 1.526 +il[6204] = 96 +im[6204] = 0.099 +ij[6204] = 28.2 +id[6205] = "2454-04-02T13:08:41" +ik[6205] = 0.91 +il[6205] = -146 +im[6205] = 0.2072 +ij[6205] = 28.1 +id[6206] = "2454-04-23T21:02:21" +ik[6206] = 82.96 +il[6206] = -66 +im[6206] = 0.0165 +ij[6206] = 7.2111 +id[6207] = "2454-06-27T22:45:33" +ik[6207] = 39.453 +il[6207] = 177 +im[6207] = 0.1039 +ij[6207] = 1 +id[6208] = "2454-06-28T22:34:08" +ik[6208] = 149.02 +il[6208] = -170 +im[6208] = 0.0907 +ij[6208] = 14 +id[6209] = "2454-07-02T09:32:47" +ik[6209] = 26.252 +il[6209] = 59 +im[6209] = 0.0186 +ij[6209] = 16 +id[6210] = "2454-07-04T02:41:30" +ik[6210] = -1.694 +il[6210] = 178 +im[6210] = 0.0247 +ij[6210] = 4 +id[6211] = "2454-09-11T21:05:03" +ik[6211] = 33.953 +il[6211] = -139 +im[6211] = 0.0105 +ij[6211] = 9 +id[6212] = "2454-10-11T22:37:56" +ik[6212] = 3.246 +il[6212] = 131 +im[6212] = 0.0109 +ij[6212] = 27.4 +id[6213] = "2454-10-26T00:01:52" +ik[6213] = 6.476 +il[6213] = -113 +im[6213] = 0.0141 +ij[6213] = 27.1 +id[6214] = "2454-11-15T20:13:07" +ik[6214] = 0 +il[6214] = 149 +im[6214] = 0.0675 +ij[6214] = 17 +id[6215] = "2454-11-17T19:53:51" +ik[6215] = 1.046 +il[6215] = 173 +im[6215] = 0.0648 +ij[6215] = 28.2 +id[6216] = "2454-12-04T13:36:28" +ik[6216] = 0.717 +il[6216] = 71 +im[6216] = 0.0502 +ij[6216] = 28.7 +id[6217] = "2455-01-09T20:06:00" +ik[6217] = 0.176 +il[6217] = -29 +im[6217] = 0.0434 +ij[6217] = 27.3 +id[6218] = "2455-01-30T05:02:10" +ik[6218] = 1.094 +il[6218] = 38 +im[6218] = 0.0604 +ij[6218] = 28.1 +id[6219] = "2455-02-07T06:49:41" +ik[6219] = 0.521 +il[6219] = 94 +im[6219] = 0.0367 +ij[6219] = 27.5 +id[6220] = "2455-03-10T02:03:13" +ik[6220] = -25.941 +il[6220] = 117 +im[6220] = 0.0529 +ij[6220] = 15 +id[6221] = "2455-04-28T14:11:50" +ik[6221] = 0.27 +il[6221] = 64 +im[6221] = 0.0469 +ij[6221] = 12 +id[6222] = "2455-07-09T11:30:23" +ik[6222] = 12 +il[6222] = -112 +im[6222] = 0.0446 +ij[6222] = 18 +id[6223] = "2455-07-18T01:03:00" +ik[6223] = 1.463 +il[6223] = 124 +im[6223] = 0.0487 +ij[6223] = 28.1 +id[6224] = "2455-09-06T05:09:48" +ik[6224] = 1.44 +il[6224] = -168 +im[6224] = 0.0384 +ij[6224] = 28.2 +id[6225] = "2455-11-10T03:34:23" +ik[6225] = 31.046 +il[6225] = 124 +im[6225] = 0.0619 +ij[6225] = 8 +id[6226] = "2456-01-03T07:56:11" +ik[6226] = -1.58 +il[6226] = -138 +im[6226] = 0.0357 +ij[6226] = 2 +id[6227] = "2456-01-12T11:10:36" +ik[6227] = 36.164 +il[6227] = -99 +im[6227] = 0.054 +ij[6227] = 3 +id[6228] = "2456-03-08T22:34:35" +ik[6228] = 0 +il[6228] = -87 +im[6228] = 0.071 +ij[6228] = 13 +id[6229] = "2456-04-17T09:06:57" +ik[6229] = 1.84 +il[6229] = 109 +im[6229] = 0.173 +ij[6229] = 11 +id[6230] = "2456-05-27T21:37:11" +ik[6230] = 79.96 +il[6230] = 97 +im[6230] = 0.1024 +ij[6230] = 7.1881 +id[6231] = "2456-06-11T23:48:46" +ik[6231] = 25.027 +il[6231] = -149 +im[6231] = 0.0805 +ij[6231] = 16 +id[6232] = "2456-07-27T07:29:59" +ik[6232] = 140.37 +il[6232] = 177 +im[6232] = 0.0674 +ij[6232] = 14 +id[6233] = "2456-08-10T00:59:18" +ik[6233] = -1.944 +il[6233] = 48 +im[6233] = 0.0214 +ij[6233] = 4 +id[6234] = "2456-08-10T15:32:32" +ik[6234] = 42.903 +il[6234] = -164 +im[6234] = 0.0367 +ij[6234] = 1 +id[6235] = "2456-09-17T08:28:31" +ik[6235] = 2.665 +il[6235] = -50 +im[6235] = 0.0594 +ij[6235] = 27.4 +id[6236] = "2456-10-25T01:23:48" +ik[6236] = 0 +il[6236] = 66 +im[6236] = 0.0873 +ij[6236] = 17 +id[6237] = "2456-11-14T20:10:50" +ik[6237] = 35.508 +il[6237] = -11 +im[6237] = 0.0418 +ij[6237] = 9 +id[6238] = "2456-11-24T15:37:11" +ik[6238] = 0.887 +il[6238] = 154 +im[6238] = 0.0844 +ij[6238] = 28.7 +id[6239] = "2456-12-18T20:20:42" +ik[6239] = 0.046 +il[6239] = -39 +im[6239] = 0.0367 +ij[6239] = 27.3 +id[6240] = "2457-01-16T14:32:17" +ik[6240] = 0.5 +il[6240] = -29 +im[6240] = 0.0284 +ij[6240] = 27.5 +id[6241] = "2457-02-17T09:02:11" +ik[6241] = -26.092 +il[6241] = 5 +im[6241] = 0.0544 +ij[6241] = 15 +id[6242] = "2457-03-27T19:12:49" +ik[6242] = 2.241 +il[6242] = -128 +im[6242] = 0.0055 +ij[6242] = 27.6 +id[6243] = "2457-04-12T12:30:41" +ik[6243] = 1.523 +il[6243] = 123 +im[6243] = 0.0083 +ij[6243] = 28.1 +id[6244] = "2457-06-20T01:37:09" +ik[6244] = 12 +il[6244] = -135 +im[6244] = 0.0274 +ij[6244] = 18 +id[6245] = "2457-06-23T11:56:44" +ik[6245] = 0.71 +il[6245] = 105 +im[6245] = 0.0136 +ij[6245] = 12 +id[6246] = "2457-09-20T20:56:18" +ik[6246] = 5.554 +il[6246] = -60 +im[6246] = 0.0451 +ij[6246] = 28.1 +id[6247] = "2457-11-04T02:52:34" +ik[6247] = 25.372 +il[6247] = -81 +im[6247] = 0.0601 +ij[6247] = 16 +id[6248] = "2457-12-13T05:02:23" +ik[6248] = 30.616 +il[6248] = -97 +im[6248] = 0.0184 +ij[6248] = 8 +id[6249] = "2458-02-23T17:07:35" +ik[6249] = 37.236 +il[6249] = 56 +im[6249] = 0.0758 +ij[6249] = 3 +id[6250] = "2458-02-23T17:36:39" +ik[6250] = -1.641 +il[6250] = 49 +im[6250] = 0.0762 +ij[6250] = 2 +id[6251] = "2458-03-07T15:26:59" +ik[6251] = 5.291 +il[6251] = -165 +im[6251] = 0.0087 +ij[6251] = 27.4 +id[6252] = "2458-04-05T09:44:22" +ik[6252] = 4.828 +il[6252] = -167 +im[6252] = 0.0214 +ij[6252] = 27.1 +id[6253] = "2458-04-22T13:59:09" +ik[6253] = 1.915 +il[6253] = -68 +im[6253] = 0.197 +ij[6253] = 28.2 +id[6254] = "2458-04-28T07:30:28" +ik[6254] = 0 +il[6254] = 83 +im[6254] = 0.1792 +ij[6254] = 13 +id[6255] = "2458-06-01T06:17:11" +ik[6255] = 1.55 +il[6255] = 49 +im[6255] = 0.1952 +ij[6255] = 11 +id[6256] = "2458-06-17T22:41:20" +ik[6256] = 1.713 +il[6256] = 127 +im[6256] = 0.3011 +ij[6256] = 27.4 +id[6257] = "2458-07-09T06:33:03" +ik[6257] = 71.96 +il[6257] = -148 +im[6257] = 0.0914 +ij[6257] = 7.131 +id[6258] = "2458-08-29T00:56:55" +ik[6258] = 122.73 +il[6258] = 72 +im[6258] = 0.1225 +ij[6258] = 14 +id[6259] = "2458-09-09T17:13:33" +ik[6259] = -2.267 +il[6259] = -57 +im[6259] = 0.1719 +ij[6259] = 4 +id[6260] = "2458-09-27T10:26:32" +ik[6260] = 46.182 +il[6260] = -141 +im[6260] = 0.0766 +ij[6260] = 1 +id[6261] = "2458-09-28T13:43:36" +ik[6261] = 0 +il[6261] = -179 +im[6261] = 0.0429 +ij[6261] = 17 +id[6262] = "2458-11-11T16:23:46" +ik[6262] = 1.199 +il[6262] = -145 +im[6262] = 0.0406 +ij[6262] = 28.7 +id[6263] = "2458-11-24T07:10:22" +ik[6263] = 0.288 +il[6263] = 118 +im[6263] = 0.0522 +ij[6263] = 27.3 +id[6264] = "2458-12-24T08:21:52" +ik[6264] = 0.554 +il[6264] = 34 +im[6264] = 0.0277 +ij[6264] = 27.5 +id[6265] = "2459-01-24T07:34:50" +ik[6265] = 34.645 +il[6265] = -14 +im[6265] = 0.0125 +ij[6265] = 9 +id[6266] = "2459-01-27T04:06:01" +ik[6266] = -26.246 +il[6266] = 66 +im[6266] = 0.0551 +ij[6266] = 15 +id[6267] = "2459-03-06T19:36:09" +ik[6267] = 1.971 +il[6267] = -157 +im[6267] = 0.0283 +ij[6267] = 27.6 +id[6268] = "2459-04-10T21:09:01" +ik[6268] = 2.114 +il[6268] = 153 +im[6268] = 0.0575 +ij[6268] = 28.8 +id[6269] = "2459-05-10T20:26:50" +ik[6269] = 3.87 +il[6269] = 98 +im[6269] = 0.0606 +ij[6269] = 27.2 +id[6270] = "2459-06-01T15:52:46" +ik[6270] = 12 +il[6270] = 12 +im[6270] = 0.0156 +ij[6270] = 18 +id[6271] = "2459-08-05T13:36:18" +ik[6271] = 1.12 +il[6271] = -52 +im[6271] = 0.0566 +ij[6271] = 12 +id[6272] = "2459-10-16T19:59:26" +ik[6272] = 25.591 +il[6272] = 37 +im[6272] = 0.0552 +ij[6272] = 16 +id[6273] = "2460-01-16T14:11:43" +ik[6273] = 31.195 +il[6273] = -77 +im[6273] = 0.03 +ij[6273] = 8 +id[6274] = "2460-01-30T23:04:08" +ik[6274] = 4.783 +il[6274] = -73 +im[6274] = 0.044 +ij[6274] = 27.4 +id[6275] = "2460-02-16T01:54:54" +ik[6275] = 5.031 +il[6275] = 37 +im[6275] = 0.0057 +ij[6275] = 27.1 +id[6276] = "2460-03-08T10:33:36" +ik[6276] = 23 +il[6276] = 110 +im[6276] = 0.103 +ij[6276] = 17 +id[6277] = "2460-04-21T14:47:28" +ik[6277] = 40.977 +il[6277] = 104 +im[6277] = 0.1409 +ij[6277] = 3 +id[6278] = "2460-05-14T02:43:20" +ik[6278] = -1.963 +il[6278] = 138 +im[6278] = 0.069 +ij[6278] = 2 +id[6279] = "2460-05-14T07:15:20" +ik[6279] = 1.168 +il[6279] = 72 +im[6279] = 0.0754 +ij[6279] = 28.7 +id[6280] = "2460-06-03T18:58:00" +ik[6280] = 1.561 +il[6280] = 90 +im[6280] = 0.2183 +ij[6280] = 27.3 +id[6281] = "2460-07-07T00:57:25" +ik[6281] = 0 +il[6281] = -44 +im[6281] = 0.0597 +ij[6281] = 13 +id[6282] = "2460-08-05T20:08:18" +ik[6282] = 6.47 +il[6282] = -56 +im[6282] = 0.2356 +ij[6282] = 11 +id[6283] = "2460-08-23T04:50:36" +ik[6283] = 4.764 +il[6283] = 166 +im[6283] = 0.3773 +ij[6283] = 28.2 +id[6284] = "2460-09-08T00:00:00" +ik[6284] = 62.96 +il[6284] = 35 +im[6284] = 0.2884 +ij[6284] = 7.0991 +id[6285] = "2460-10-02T14:10:47" +ik[6285] = 3.494 +il[6285] = 64 +im[6285] = 0.2593 +ij[6285] = 28.7 +id[6286] = "2460-10-04T14:46:25" +ik[6286] = 2.713 +il[6286] = 75 +im[6286] = 0.248 +ij[6286] = 27.3 +id[6287] = "2460-10-19T06:38:52" +ik[6287] = 104.24 +il[6287] = -19 +im[6287] = 0.2095 +ij[6287] = 14 +id[6288] = "2460-10-29T08:11:21" +ik[6288] = -2.313 +il[6288] = 57 +im[6288] = 0.1745 +ij[6288] = 4 +id[6289] = "2460-11-18T13:52:32" +ik[6289] = 1.169 +il[6289] = 169 +im[6289] = 0.1238 +ij[6289] = 27.5 +id[6290] = "2460-11-25T05:59:34" +ik[6290] = 44.181 +il[6290] = -8 +im[6290] = 0.0963 +ij[6290] = 1 +id[6291] = "2460-12-31T05:39:51" +ik[6291] = -26.36 +il[6291] = -17 +im[6291] = 0.0798 +ij[6291] = 15 +id[6292] = "2461-02-09T06:47:27" +ik[6292] = 1.613 +il[6292] = -12 +im[6292] = 0.1018 +ij[6292] = 27.6 +id[6293] = "2461-03-17T11:05:29" +ik[6293] = 32.776 +il[6293] = -94 +im[6293] = 0.0051 +ij[6293] = 9 +id[6294] = "2461-03-25T17:11:37" +ik[6294] = 2.503 +il[6294] = -107 +im[6294] = 0.0678 +ij[6294] = 28.8 +id[6295] = "2461-04-19T02:39:53" +ik[6295] = 3.555 +il[6295] = -18 +im[6295] = 0.0548 +ij[6295] = 27.2 +id[6296] = "2461-05-07T12:24:00" +ik[6296] = 0.965 +il[6296] = 8 +im[6296] = 0.0664 +ij[6296] = 28.2 +id[6297] = "2461-05-12T13:15:28" +ik[6297] = 12 +il[6297] = 42 +im[6297] = 0.0177 +ij[6297] = 18 +id[6298] = "2461-06-10T12:56:02" +ik[6298] = 3.651 +il[6298] = -29 +im[6298] = 0.0121 +ij[6298] = 28.1 +id[6299] = "2461-06-21T17:09:02" +ik[6299] = 1.052 +il[6299] = 5 +im[6299] = 0.0416 +ij[6299] = 28.6 +id[6300] = "2461-09-10T20:38:31" +ik[6300] = 1.03 +il[6300] = 21 +im[6300] = 0.0539 +ij[6300] = 12 +id[6301] = "2461-09-28T07:02:17" +ik[6301] = 25.751 +il[6301] = -128 +im[6301] = 0.0526 +ij[6301] = 16 +id[6302] = "2462-01-04T21:22:53" +ik[6302] = 1.866 +il[6302] = -100 +im[6302] = 0.0695 +ij[6302] = 28.2 +id[6303] = "2462-01-07T04:42:33" +ik[6303] = 4.446 +il[6303] = 168 +im[6303] = 0.0665 +ij[6303] = 27.4 +id[6304] = "2462-01-21T22:41:55" +ik[6304] = 5.346 +il[6304] = 35 +im[6304] = 0.0583 +ij[6304] = 27.1 +id[6305] = "2462-02-10T13:54:46" +ik[6305] = 0 +il[6305] = -1 +im[6305] = 0.0105 +ij[6305] = 17 +id[6306] = "2462-02-24T23:30:49" +ik[6306] = 32.858 +il[6306] = -9 +im[6306] = 0.0131 +ij[6306] = 8 +id[6307] = "2462-04-15T10:24:01" +ik[6307] = 0.09 +il[6307] = -65 +im[6307] = 0.0965 +ij[6307] = 27.3 +id[6308] = "2462-04-16T02:33:22" +ik[6308] = 0.509 +il[6308] = 59 +im[6308] = 0.0985 +ij[6308] = 28.7 +id[6309] = "2462-05-17T16:00:08" +ik[6309] = 1.43 +il[6309] = 157 +im[6309] = 0.1005 +ij[6309] = 27.5 +id[6310] = "2462-06-14T19:06:42" +ik[6310] = -24.102 +il[6310] = 20 +im[6310] = 0.134 +ij[6310] = 15 +id[6311] = "2462-07-02T04:13:26" +ik[6311] = 46.72 +il[6311] = 50 +im[6311] = 0.0842 +ij[6311] = 3 +id[6312] = "2462-08-01T11:00:15" +ik[6312] = -2.393 +il[6312] = -119 +im[6312] = 0.0194 +ij[6312] = 2 +id[6313] = "2462-08-15T01:32:24" +ik[6313] = 5.814 +il[6313] = 156 +im[6313] = 0.0714 +ij[6313] = 27.6 +id[6314] = "2462-09-19T06:39:23" +ik[6314] = 0 +il[6314] = 64 +im[6314] = 0.2961 +ij[6314] = 13 +id[6315] = "2462-10-02T14:30:20" +ik[6315] = 2.554 +il[6315] = 77 +im[6315] = 0.3468 +ij[6315] = 28.2 +id[6316] = "2462-10-24T10:40:18" +ik[6316] = 2.11 +il[6316] = -34 +im[6316] = 0.0822 +ij[6316] = 11 +id[6317] = "2462-11-24T05:41:58" +ik[6317] = 65.96 +il[6317] = 177 +im[6317] = 0.2495 +ij[6317] = 7.1252 +id[6318] = "2462-12-23T22:49:56" +ik[6318] = 1.268 +il[6318] = -156 +im[6318] = 0.1963 +ij[6318] = 27.6 +id[6319] = "2463-01-10T02:33:46" +ik[6319] = 112.83 +il[6319] = -50 +im[6319] = 0.1284 +ij[6319] = 14 +id[6320] = "2463-01-15T20:14:56" +ik[6320] = -1.878 +il[6320] = 99 +im[6320] = 0.0639 +ij[6320] = 4 +id[6321] = "2463-02-01T20:21:24" +ik[6321] = 39.534 +il[6321] = -101 +im[6321] = 0.1054 +ij[6321] = 1 +id[6322] = "2463-03-05T07:09:16" +ik[6322] = 3.096 +il[6322] = 33 +im[6322] = 0.0988 +ij[6322] = 28.8 +id[6323] = "2463-03-25T08:10:27" +ik[6323] = 3.054 +il[6323] = -153 +im[6323] = 0.0294 +ij[6323] = 27.2 +id[6324] = "2463-04-21T08:31:09" +ik[6324] = 12 +il[6324] = 96 +im[6324] = 0.0492 +ij[6324] = 18 +id[6325] = "2463-04-27T22:09:02" +ik[6325] = 31.596 +il[6325] = -47 +im[6325] = 0.0512 +ij[6325] = 9 +id[6326] = "2463-07-09T12:16:40" +ik[6326] = 0.237 +il[6326] = 75 +im[6326] = 0.0575 +ij[6326] = 28.6 +id[6327] = "2463-08-09T06:09:30" +ik[6327] = 0.426 +il[6327] = 98 +im[6327] = 0.0602 +ij[6327] = 28.1 +id[6328] = "2463-09-10T21:18:12" +ik[6328] = 25.885 +il[6328] = -168 +im[6328] = 0.0419 +ij[6328] = 16 +id[6329] = "2463-10-17T13:29:12" +ik[6329] = 0.55 +il[6329] = -46 +im[6329] = 0.0473 +ij[6329] = 12 +id[6330] = "2463-12-18T10:21:10" +ik[6330] = 4.185 +il[6330] = 73 +im[6330] = 0.0554 +ij[6330] = 27.4 +id[6331] = "2464-01-01T14:29:24" +ik[6331] = 5.594 +il[6331] = 145 +im[6331] = 0.0602 +ij[6331] = 27.1 +id[6332] = "2464-01-11T13:05:40" +ik[6332] = 0.459 +il[6332] = -100 +im[6332] = 0.0512 +ij[6332] = 28.5 +id[6333] = "2464-01-19T14:22:14" +ik[6333] = 5.116 +il[6333] = -43 +im[6333] = 0.0322 +ij[6333] = 28.1 +id[6334] = "2464-01-20T23:04:08" +ik[6334] = 0 +il[6334] = -154 +im[6334] = 0.0161 +ij[6334] = 17 +id[6335] = "2464-03-20T12:16:41" +ik[6335] = 0.25 +il[6335] = -144 +im[6335] = 0.0049 +ij[6335] = 27.3 +id[6336] = "2464-04-03T00:34:52" +ik[6336] = 0.417 +il[6336] = 160 +im[6336] = 0.0031 +ij[6336] = 28.7 +id[6337] = "2464-04-19T05:59:44" +ik[6337] = 0.9 +il[6337] = -127 +im[6337] = 0.0162 +ij[6337] = 27.5 +id[6338] = "2464-04-22T11:31:42" +ik[6338] = 35.418 +il[6338] = -179 +im[6338] = 0.0657 +ij[6338] = 8 +id[6339] = "2464-05-18T09:21:34" +ik[6339] = -25.096 +il[6339] = 102 +im[6339] = 0.0207 +ij[6339] = 15 +id[6340] = "2464-06-30T16:24:49" +ik[6340] = 3.821 +il[6340] = 56 +im[6340] = 0.0443 +ij[6340] = 27.6 +id[6341] = "2464-08-19T04:02:29" +ik[6341] = 45.965 +il[6341] = 7 +im[6341] = 0.1285 +ij[6341] = 3 +id[6342] = "2464-08-19T14:47:48" +ik[6342] = 0.261 +il[6342] = -150 +im[6342] = 0.1259 +ij[6342] = 28.8 +id[6343] = "2464-09-10T03:20:00" +ik[6343] = 5.652 +il[6343] = -127 +im[6343] = 0.0349 +ij[6343] = 27.2 +id[6344] = "2464-09-11T05:58:57" +ik[6344] = -2.189 +il[6344] = -155 +im[6344] = 0.0708 +ij[6344] = 2 +id[6345] = "2464-10-06T10:42:44" +ik[6345] = 11 +il[6345] = 21 +im[6345] = 0.0372 +ij[6345] = 18 +id[6346] = "2464-11-09T02:34:16" +ik[6346] = 0 +il[6346] = 111 +im[6346] = 0.2205 +ij[6346] = 13 +id[6347] = "2464-11-25T21:55:57" +ik[6347] = 12 +il[6347] = -16 +im[6347] = 0.249 +ij[6347] = 17 +id[6348] = "2464-12-01T02:13:40" +ik[6348] = 0.237 +il[6348] = -30 +im[6348] = 0.0232 +ij[6348] = 28.1 +id[6349] = "2464-12-16T21:08:45" +ik[6349] = 2.57 +il[6349] = -174 +im[6349] = 0.146 +ij[6349] = 11 +id[6350] = "2465-01-20T23:36:28" +ik[6350] = 2.016 +il[6350] = -63 +im[6350] = 0.1427 +ij[6350] = 27.2 +id[6351] = "2465-01-22T01:36:52" +ik[6351] = 73.96 +il[6351] = -90 +im[6351] = 0.0997 +ij[6351] = 7.1475 +id[6352] = "2465-01-24T07:45:53" +ik[6352] = 3.199 +il[6352] = -161 +im[6352] = 0.0251 +ij[6352] = 28.2 +id[6353] = "2465-03-16T19:20:44" +ik[6353] = -1.623 +il[6353] = 150 +im[6353] = 0.0965 +ij[6353] = 4 +id[6354] = "2465-03-22T08:51:27" +ik[6354] = 12 +il[6354] = 0 +im[6354] = 0.0409 +ij[6354] = 18 +id[6355] = "2465-03-23T11:52:30" +ik[6355] = 37.347 +il[6355] = -34 +im[6355] = 0.0659 +ij[6355] = 1 +id[6356] = "2465-03-23T16:13:39" +ik[6356] = 134.57 +il[6356] = -98 +im[6356] = 0.0695 +ij[6356] = 14 +id[6357] = "2465-06-03T02:34:22" +ik[6357] = 31.292 +il[6357] = 63 +im[6357] = 0.047 +ij[6357] = 9 +id[6358] = "2465-07-27T15:33:16" +ik[6358] = 0.711 +il[6358] = 30 +im[6358] = 0.006 +ij[6358] = 28.6 +id[6359] = "2465-07-31T00:51:10" +ik[6359] = 6.405 +il[6359] = -77 +im[6359] = 0.0446 +ij[6359] = 28.1 +id[6360] = "2465-08-23T02:03:58" +ik[6360] = 26.009 +il[6360] = 128 +im[6360] = 0.0238 +ij[6360] = 16 +id[6361] = "2465-11-26T17:30:05" +ik[6361] = 0.23 +il[6361] = 126 +im[6361] = 0.0556 +ij[6361] = 12 +id[6362] = "2465-12-31T22:58:33" +ik[6362] = 0 +il[6362] = -155 +im[6362] = 0.0027 +ij[6362] = 17 +id[6363] = "2466-02-27T09:46:25" +ik[6363] = 0.275 +il[6363] = -132 +im[6363] = 0.0092 +ij[6363] = 27.3 +id[6364] = "2466-03-18T09:00:19" +ik[6364] = 0.001 +il[6364] = 69 +im[6364] = 0.0481 +ij[6364] = 28.5 +id[6365] = "2466-03-25T10:46:27" +ik[6365] = 0.336 +il[6365] = 113 +im[6365] = 0.048 +ij[6365] = 28.7 +id[6366] = "2466-03-28T08:00:10" +ik[6366] = 0.705 +il[6366] = -177 +im[6366] = 0.0134 +ij[6366] = 27.5 +id[6367] = "2466-04-10T23:58:12" +ik[6367] = 4.84 +il[6367] = 75 +im[6367] = 0.0294 +ij[6367] = 28.1 +id[6368] = "2466-04-26T22:07:21" +ik[6368] = -25.48 +il[6368] = -104 +im[6368] = 0.0095 +ij[6368] = 15 +id[6369] = "2466-06-06T10:20:37" +ik[6369] = 3.199 +il[6369] = 108 +im[6369] = 0.0502 +ij[6369] = 27.6 +id[6370] = "2466-07-13T09:19:42" +ik[6370] = 35.885 +il[6370] = 126 +im[6370] = 0.0771 +ij[6370] = 8 +id[6371] = "2466-07-14T01:42:36" +ik[6371] = 5.989 +il[6371] = -113 +im[6371] = 0.0827 +ij[6371] = 28.2 +id[6372] = "2466-07-28T21:43:46" +ik[6372] = 0.972 +il[6372] = 92 +im[6372] = 0.0777 +ij[6372] = 28.8 +id[6373] = "2466-08-09T10:26:05" +ik[6373] = 5.062 +il[6373] = 15 +im[6373] = 0.0607 +ij[6373] = 27.2 +id[6374] = "2466-08-28T15:41:54" +ik[6374] = 11 +il[6374] = 124 +im[6374] = 0.0902 +ij[6374] = 18 +id[6375] = "2466-10-06T08:48:28" +ik[6375] = 41.324 +il[6375] = -115 +im[6375] = 0.0871 +ij[6375] = 3 +id[6376] = "2466-10-12T18:52:18" +ik[6376] = -1.892 +il[6376] = 157 +im[6376] = 0.1082 +ij[6376] = 2 +id[6377] = "2466-12-16T16:14:07" +ik[6377] = 0 +il[6377] = 105 +im[6377] = 0.1577 +ij[6377] = 13 +id[6378] = "2467-01-25T12:14:32" +ik[6378] = 4.25 +il[6378] = 168 +im[6378] = 0.1944 +ij[6378] = 11 +id[6379] = "2467-03-06T16:17:43" +ik[6379] = 80 +il[6379] = -76 +im[6379] = 0.1261 +ij[6379] = 7.1801 +id[6380] = "2467-05-04T02:07:26" +ik[6380] = 37.125 +il[6380] = -29 +im[6380] = 0.1007 +ij[6380] = 1 +id[6381] = "2467-05-04T05:01:12" +ik[6381] = -1.555 +il[6381] = -71 +im[6381] = 0.1007 +ij[6381] = 4 +id[6382] = "2467-05-12T18:00:32" +ik[6382] = 147.07 +il[6382] = 175 +im[6382] = 0.0395 +ij[6382] = 14 +id[6383] = "2467-07-10T22:20:35" +ik[6383] = 31.839 +il[6383] = -41 +im[6383] = 0.0564 +ij[6383] = 9 +id[6384] = "2467-08-04T03:41:45" +ik[6384] = 26.133 +il[6384] = 113 +im[6384] = 0.0109 +ij[6384] = 16 +id[6385] = "2467-08-16T16:17:49" +ik[6385] = 1.664 +il[6385] = 45 +im[6385] = 0.0396 +ij[6385] = 28.6 +id[6386] = "2467-09-07T16:25:19" +ik[6386] = 0.215 +il[6386] = -103 +im[6386] = 0.0569 +ij[6386] = 28.2 +id[6387] = "2467-10-18T02:03:51" +ik[6387] = 2.006 +il[6387] = 145 +im[6387] = 0.0339 +ij[6387] = 28.1 +id[6388] = "2467-11-09T16:41:56" +ik[6388] = 3.7 +il[6388] = 146 +im[6388] = 0.0464 +ij[6388] = 27.4 +id[6389] = "2467-12-13T08:17:22" +ik[6389] = 0 +il[6389] = -113 +im[6389] = 0.0146 +ij[6389] = 17 +id[6390] = "2468-01-19T12:10:59" +ik[6390] = 0.99 +il[6390] = -153 +im[6390] = 0.0604 +ij[6390] = 12 +id[6391] = "2468-04-06T01:26:07" +ik[6391] = -25.709 +il[6391] = -162 +im[6391] = 0.0062 +ij[6391] = 15 +id[6392] = "2468-04-07T14:06:39" +ik[6392] = 1.616 +il[6392] = 25 +im[6392] = 0.0163 +ij[6392] = 28.1 +id[6393] = "2468-05-14T00:40:19" +ik[6393] = 0.466 +il[6393] = -130 +im[6393] = 0.0672 +ij[6393] = 28.5 +id[6394] = "2468-05-15T10:11:28" +ik[6394] = 2.842 +il[6394] = 102 +im[6394] = 0.0616 +ij[6394] = 27.6 +id[6395] = "2468-06-25T21:34:16" +ik[6395] = 2.223 +il[6395] = -20 +im[6395] = 0.0669 +ij[6395] = 28.2 +id[6396] = "2468-07-12T13:11:25" +ik[6396] = 1.351 +il[6396] = -91 +im[6396] = 0.0612 +ij[6396] = 28.8 +id[6397] = "2468-07-17T03:18:40" +ik[6397] = 4.702 +il[6397] = 102 +im[6397] = 0.0016 +ij[6397] = 27.2 +id[6398] = "2468-08-05T09:17:22" +ik[6398] = 12 +il[6398] = -160 +im[6398] = 0.0608 +ij[6398] = 18 +id[6399] = "2468-09-13T20:05:02" +ik[6399] = 33.392 +il[6399] = 62 +im[6399] = 0.0256 +ij[6399] = 8 +id[6400] = "2468-11-12T16:55:53" +ik[6400] = -1.691 +il[6400] = -31 +im[6400] = 0.0881 +ij[6400] = 2 +id[6401] = "2468-11-18T14:36:23" +ik[6401] = 37.851 +il[6401] = 61 +im[6401] = 0.0967 +ij[6401] = 3 +id[6402] = "2469-01-17T18:01:01" +ik[6402] = 0 +il[6402] = -129 +im[6402] = 0.0201 +ij[6402] = 13 +id[6403] = "2469-02-11T04:34:35" +ik[6403] = 1.925 +il[6403] = -62 +im[6403] = 0.132 +ij[6403] = 28.2 +id[6404] = "2469-02-28T00:16:19" +ik[6404] = 4.15 +il[6404] = 154 +im[6404] = 0.0669 +ij[6404] = 11 +id[6405] = "2469-03-15T02:48:25" +ik[6405] = 1.271 +il[6405] = 52 +im[6405] = 0.1118 +ij[6405] = 28.1 +id[6406] = "2469-04-10T17:03:38" +ik[6406] = 82.96 +il[6406] = 81 +im[6406] = 0.0774 +ij[6406] = 7.2077 +id[6407] = "2469-06-11T20:54:23" +ik[6407] = 38.491 +il[6407] = -98 +im[6407] = 0.0928 +ij[6407] = 1 +id[6408] = "2469-06-16T21:23:30" +ik[6408] = 150.14 +il[6408] = -56 +im[6408] = 0.0103 +ij[6408] = 14 +id[6409] = "2469-06-17T00:38:06" +ik[6409] = -1.629 +il[6409] = -104 +im[6409] = 0.013 +ij[6409] = 4 +id[6410] = "2469-07-12T10:56:39" +ik[6410] = 26.244 +il[6410] = -12 +im[6410] = 0.049 +ij[6410] = 16 +id[6411] = "2469-08-22T14:51:42" +ik[6411] = 33.224 +il[6411] = -31 +im[6411] = 0.0744 +ij[6411] = 9 +id[6412] = "2469-09-04T16:49:27" +ik[6412] = 2.466 +il[6412] = 67 +im[6412] = 0.0701 +ij[6412] = 28.6 +id[6413] = "2469-10-20T01:57:31" +ik[6413] = 3.396 +il[6413] = 12 +im[6413] = 0.057 +ij[6413] = 27.4 +id[6414] = "2469-11-03T00:36:27" +ik[6414] = 6.336 +il[6414] = 169 +im[6414] = 0.0527 +ij[6414] = 27.1 +id[6415] = "2469-11-23T11:13:43" +ik[6415] = 0 +il[6415] = -151 +im[6415] = 0.0213 +ij[6415] = 17 +id[6416] = "2469-12-31T13:02:55" +ik[6416] = 0.273 +il[6416] = -164 +im[6416] = 0.047 +ij[6416] = 28.1 +id[6417] = "2470-03-17T16:36:01" +ik[6417] = -25.881 +il[6417] = -179 +im[6417] = 0.0031 +ij[6417] = 15 +id[6418] = "2470-03-31T22:02:59" +ik[6418] = 0.71 +il[6418] = -112 +im[6418] = 0.0141 +ij[6418] = 12 +id[6419] = "2470-06-21T13:36:41" +ik[6419] = 1.502 +il[6419] = -105 +im[6419] = 0.0627 +ij[6419] = 28.1 +id[6420] = "2470-06-27T02:18:16" +ik[6420] = 4.438 +il[6420] = 113 +im[6420] = 0.0124 +ij[6420] = 27.2 +id[6421] = "2470-06-29T06:25:03" +ik[6421] = 1.606 +il[6421] = 78 +im[6421] = 0.0184 +ij[6421] = 28.8 +id[6422] = "2470-07-16T20:26:09" +ik[6422] = 12 +il[6422] = 38 +im[6422] = 0.0571 +ij[6422] = 18 +id[6423] = "2470-07-18T02:24:56" +ik[6423] = 0.441 +il[6423] = -40 +im[6423] = 0.0632 +ij[6423] = 28.5 +id[6424] = "2470-10-26T22:27:42" +ik[6424] = 31.494 +il[6424] = -83 +im[6424] = 0.0754 +ij[6424] = 8 +id[6425] = "2470-12-18T08:40:47" +ik[6425] = -1.592 +il[6425] = -90 +im[6425] = 0.0452 +ij[6425] = 2 +id[6426] = "2470-12-28T03:20:26" +ik[6426] = 36.283 +il[6426] = 85 +im[6426] = 0.0583 +ij[6426] = 3 +id[6427] = "2471-02-22T21:23:58" +ik[6427] = 0 +il[6427] = 1 +im[6427] = 0.0653 +ij[6427] = 13 +id[6428] = "2471-02-28T12:59:50" +ik[6428] = 2.804 +il[6428] = -179 +im[6428] = 0.1401 +ij[6428] = 28.2 +id[6429] = "2471-04-03T17:40:46" +ik[6429] = 2.76 +il[6429] = 58 +im[6429] = 0.099 +ij[6429] = 11 +id[6430] = "2471-04-29T20:17:17" +ik[6430] = 2.373 +il[6430] = 49 +im[6430] = 0.1248 +ij[6430] = 28.2 +id[6431] = "2471-05-14T22:29:42" +ik[6431] = 81.05 +il[6431] = 162 +im[6431] = 0.0365 +ij[6431] = 7.2029 +id[6432] = "2471-06-15T08:55:37" +ik[6432] = 26.002 +il[6432] = -50 +im[6432] = 0.0858 +ij[6432] = 16 +id[6433] = "2471-07-16T23:37:33" +ik[6433] = 144.09 +il[6433] = 37 +im[6433] = 0.1171 +ij[6433] = 14 +id[6434] = "2471-07-24T15:43:20" +ik[6434] = 41.408 +il[6434] = -130 +im[6434] = 0.0028 +ij[6434] = 1 +id[6435] = "2471-07-28T20:35:27" +ik[6435] = -1.833 +il[6435] = -162 +im[6435] = 0.0942 +ij[6435] = 4 +id[6436] = "2471-09-23T05:48:00" +ik[6436] = 2.956 +il[6436] = -110 +im[6436] = 0.067 +ij[6436] = 28.6 +id[6437] = "2471-09-28T07:28:03" +ik[6437] = 2.94 +il[6437] = -86 +im[6437] = 0.0912 +ij[6437] = 27.4 +id[6438] = "2471-10-19T05:32:08" +ik[6438] = 35.067 +il[6438] = 148 +im[6438] = 0.0168 +ij[6438] = 9 +id[6439] = "2471-11-03T12:41:15" +ik[6439] = 0 +il[6439] = -169 +im[6439] = 0.0121 +ij[6439] = 17 +id[6440] = "2471-12-28T07:25:10" +ik[6440] = 0.111 +il[6440] = 89 +im[6440] = 0.0378 +ij[6440] = 27.3 +id[6441] = "2472-01-25T21:16:34" +ik[6441] = 0.501 +il[6441] = 162 +im[6441] = 0.0412 +ij[6441] = 27.5 +id[6442] = "2472-02-26T04:55:02" +ik[6442] = -26.035 +il[6442] = -6 +im[6442] = 0.007 +ij[6442] = 15 +id[6443] = "2472-03-02T08:39:57" +ik[6443] = 0.146 +il[6443] = -12 +im[6443] = 0.0566 +ij[6443] = 28.7 +id[6444] = "2472-03-16T07:09:45" +ik[6444] = 1.753 +il[6444] = 154 +im[6444] = 0.0505 +ij[6444] = 28.1 +id[6445] = "2472-06-03T13:02:33" +ik[6445] = 0.39 +il[6445] = 117 +im[6445] = 0.0395 +ij[6445] = 12 +id[6446] = "2472-06-27T06:20:26" +ik[6446] = 12 +il[6446] = -107 +im[6446] = 0.0584 +ij[6446] = 18 +id[6447] = "2472-08-22T22:15:21" +ik[6447] = 2.787 +il[6447] = -152 +im[6447] = 0.0564 +ij[6447] = 28.1 +id[6448] = "2472-10-09T14:49:37" +ik[6448] = 0.011 +il[6448] = 66 +im[6448] = 0.0493 +ij[6448] = 28.5 +id[6449] = "2472-11-11T17:11:26" +ik[6449] = 25.256 +il[6449] = -9 +im[6449] = 0.0064 +ij[6449] = 16 +id[6450] = "2472-11-24T05:26:05" +ik[6450] = 5.511 +il[6450] = -72 +im[6450] = 0.0398 +ij[6450] = 28.2 +id[6451] = "2472-11-30T04:53:55" +ik[6451] = 30.664 +il[6451] = -6 +im[6451] = 0.054 +ij[6451] = 8 +id[6452] = "2473-01-31T17:59:02" +ik[6452] = -1.599 +il[6452] = 39 +im[6452] = 0.0866 +ij[6452] = 2 +id[6453] = "2473-02-05T21:05:19" +ik[6453] = 36.559 +il[6453] = 42 +im[6453] = 0.0242 +ij[6453] = 3 +id[6454] = "2473-04-05T23:38:01" +ik[6454] = 0 +il[6454] = -153 +im[6454] = 0.152 +ij[6454] = 13 +id[6455] = "2473-05-13T02:57:13" +ik[6455] = 0.18 +il[6455] = 124 +im[6455] = 0.0302 +ij[6455] = 11 +id[6456] = "2473-05-13T04:43:53" +ik[6456] = 0.09 +il[6456] = -80 +im[6456] = 0.0338 +ij[6456] = 11 +id[6457] = "2473-05-31T00:21:30" +ik[6457] = 1.674 +il[6457] = 134 +im[6457] = 0.2512 +ij[6457] = 28.2 +id[6458] = "2473-06-21T01:43:37" +ik[6458] = 76.09 +il[6458] = -41 +im[6458] = 0.0264 +ij[6458] = 7.1546 +id[6459] = "2473-08-15T06:03:27" +ik[6459] = 131.27 +il[6459] = 72 +im[6459] = 0.0389 +ij[6459] = 14 +id[6460] = "2473-08-28T07:04:52" +ik[6460] = 1.962 +il[6460] = -179 +im[6460] = 0.0922 +ij[6460] = 27.4 +id[6461] = "2473-08-28T08:22:09" +ik[6461] = -2.141 +il[6461] = 166 +im[6461] = 0.0907 +ij[6461] = 4 +id[6462] = "2473-09-08T15:30:23" +ik[6462] = 45.196 +il[6462] = 169 +im[6462] = 0.1234 +ij[6462] = 1 +id[6463] = "2473-10-06T18:36:50" +ik[6463] = 3.044 +il[6463] = 39 +im[6463] = 0.1146 +ij[6463] = 28.6 +id[6464] = "2473-10-10T08:17:34" +ik[6464] = 0 +il[6464] = -131 +im[6464] = 0.0619 +ij[6464] = 17 +id[6465] = "2473-12-04T17:03:49" +ik[6465] = 0.107 +il[6465] = -78 +im[6465] = 0.087 +ij[6465] = 27.3 +id[6466] = "2473-12-29T10:36:08" +ik[6466] = 35.282 +il[6466] = -98 +im[6466] = 0.0827 +ij[6466] = 9 +id[6467] = "2474-01-03T00:31:10" +ik[6467] = 0.513 +il[6467] = 98 +im[6467] = 0.0776 +ij[6467] = 27.5 +id[6468] = "2474-02-04T19:00:52" +ik[6468] = -26.188 +il[6468] = 139 +im[6468] = 0.0267 +ij[6468] = 15 +id[6469] = "2474-02-20T06:09:56" +ik[6469] = 0.191 +il[6469] = 121 +im[6469] = 0.0078 +ij[6469] = 28.2 +id[6470] = "2474-02-22T17:06:36" +ik[6470] = 0.419 +il[6470] = -20 +im[6470] = 0.0422 +ij[6470] = 28.7 +id[6471] = "2474-03-15T06:51:25" +ik[6471] = 2.082 +il[6471] = -29 +im[6471] = 0.0632 +ij[6471] = 27.6 +id[6472] = "2474-06-08T22:09:54" +ik[6472] = 12 +il[6472] = -157 +im[6472] = 0.0566 +ij[6472] = 18 +id[6473] = "2474-07-20T20:34:07" +ik[6473] = 1.03 +il[6473] = -90 +im[6473] = 0.0543 +ij[6473] = 12 +id[6474] = "2474-10-23T20:52:15" +ik[6474] = 25.516 +il[6474] = -54 +im[6474] = 0.0118 +ij[6474] = 16 +id[6475] = "2474-11-05T15:50:00" +ik[6475] = 0.406 +il[6475] = 145 +im[6475] = 0.0175 +ij[6475] = 28.2 +id[6476] = "2475-01-02T21:17:55" +ik[6476] = 30.845 +il[6476] = -98 +im[6476] = 0.0129 +ij[6476] = 8 +id[6477] = "2475-01-15T13:12:19" +ik[6477] = 0.016 +il[6477] = 144 +im[6477] = 0.0227 +ij[6477] = 28.5 +id[6478] = "2475-02-10T21:07:19" +ik[6478] = 4.954 +il[6478] = -84 +im[6478] = 0.0637 +ij[6478] = 27.4 +id[6479] = "2475-02-28T09:45:54" +ik[6479] = 4.883 +il[6479] = -107 +im[6479] = 0.032 +ij[6479] = 27.1 +id[6480] = "2475-03-24T13:59:15" +ik[6480] = 23 +il[6480] = 59 +im[6480] = 0.1252 +ij[6480] = 17 +id[6481] = "2475-03-28T08:08:18" +ik[6481] = 39.111 +il[6481] = -178 +im[6481] = 0.0521 +ij[6481] = 3 +id[6482] = "2475-04-10T02:03:30" +ik[6482] = -1.788 +il[6482] = 34 +im[6482] = 0.0669 +ij[6482] = 2 +id[6483] = "2475-04-15T11:34:21" +ik[6483] = 0.843 +il[6483] = -58 +im[6483] = 0.1035 +ij[6483] = 28.6 +id[6484] = "2475-06-08T06:03:57" +ik[6484] = 0 +il[6484] = 173 +im[6484] = 0.0759 +ij[6484] = 13 +id[6485] = "2475-06-22T06:19:27" +ik[6485] = 2.146 +il[6485] = -69 +im[6485] = 0.08 +ij[6485] = 28.2 +id[6486] = "2475-07-08T05:32:47" +ik[6486] = 4.85 +il[6486] = 94 +im[6486] = 0.2896 +ij[6486] = 11 +id[6487] = "2475-08-03T02:51:35" +ik[6487] = 0 +il[6487] = -160 +im[6487] = 0.2323 +ij[6487] = 18 +id[6488] = "2475-08-12T07:08:32" +ik[6488] = 65.04 +il[6488] = -135 +im[6488] = 0.1431 +ij[6488] = 7.1032 +id[6489] = "2475-08-14T08:46:48" +ik[6489] = 0 +il[6489] = -139 +im[6489] = 0.0249 +ij[6489] = 17 +id[6490] = "2475-09-25T22:12:13" +ik[6490] = 109.67 +il[6490] = 79 +im[6490] = 0.0851 +ij[6490] = 14 +id[6491] = "2475-10-05T20:20:23" +ik[6491] = -2.375 +il[6491] = -156 +im[6491] = 0.1448 +ij[6491] = 4 +id[6492] = "2475-10-08T12:19:00" +ik[6492] = 3.18 +il[6492] = -9 +im[6492] = 0.042 +ij[6492] = 28.6 +id[6493] = "2475-10-30T17:35:22" +ik[6493] = 45.81 +il[6493] = 130 +im[6493] = 0.1729 +ij[6493] = 1 +id[6494] = "2475-11-03T02:28:34" +ik[6494] = 0.938 +il[6494] = 30 +im[6494] = 0.1236 +ij[6494] = 27.3 +id[6495] = "2475-12-06T09:18:47" +ik[6495] = 0.739 +il[6495] = -107 +im[6495] = 0.0259 +ij[6495] = 27.5 +id[6496] = "2476-01-12T10:02:37" +ik[6496] = -26.337 +il[6496] = -120 +im[6496] = 0.0906 +ij[6496] = 15 +id[6497] = "2476-02-12T23:49:12" +ik[6497] = 0.79 +il[6497] = -25 +im[6497] = 0.0465 +ij[6497] = 28.7 +id[6498] = "2476-02-20T14:35:16" +ik[6498] = 1.767 +il[6498] = -174 +im[6498] = 0.0714 +ij[6498] = 27.6 +id[6499] = "2476-02-27T16:47:15" +ik[6499] = 33.464 +il[6499] = -140 +im[6499] = 0.0361 +ij[6499] = 9 +id[6500] = "2476-04-27T12:21:51" +ik[6500] = 3.691 +il[6500] = 132 +im[6500] = 0.0057 +ij[6500] = 27.2 +id[6501] = "2476-05-20T04:46:12" +ik[6501] = 12 +il[6501] = 110 +im[6501] = 0.0579 +ij[6501] = 18 +id[6502] = "2476-05-21T11:23:42" +ik[6502] = 2.15 +il[6502] = 23 +im[6502] = 0.0515 +ij[6502] = 28.8 +id[6503] = "2476-08-27T16:33:14" +ik[6503] = 1.12 +il[6503] = 167 +im[6503] = 0.0575 +ij[6503] = 12 +id[6504] = "2476-10-05T03:21:02" +ik[6504] = 25.694 +il[6504] = -142 +im[6504] = 0.0284 +ij[6504] = 16 +id[6505] = "2477-01-15T15:16:52" +ik[6505] = 4.564 +il[6505] = -51 +im[6505] = 0.0573 +ij[6505] = 27.4 +id[6506] = "2477-01-30T17:13:43" +ik[6506] = 5.236 +il[6506] = 63 +im[6506] = 0.0709 +ij[6506] = 27.1 +id[6507] = "2477-02-08T01:08:35" +ik[6507] = 32.071 +il[6507] = 23 +im[6507] = 0.0176 +ij[6507] = 8 +id[6508] = "2477-02-19T16:44:33" +ik[6508] = 0 +il[6508] = -100 +im[6508] = 0.0579 +ij[6508] = 17 +id[6509] = "2477-04-06T14:34:10" +ik[6509] = 0.252 +il[6509] = 6 +im[6509] = 0.0316 +ij[6509] = 28.5 +id[6510] = "2477-04-16T17:55:31" +ik[6510] = 0.421 +il[6510] = 52 +im[6510] = 0.0963 +ij[6510] = 28.6 +id[6511] = "2477-04-28T03:53:14" +ik[6511] = 0.107 +il[6511] = 10 +im[6511] = 0.1305 +ij[6511] = 27.3 +id[6512] = "2477-06-02T15:52:16" +ik[6512] = 2.023 +il[6512] = 168 +im[6512] = 0.0657 +ij[6512] = 27.5 +id[6513] = "2477-06-06T00:17:16" +ik[6513] = 44.732 +il[6513] = 73 +im[6513] = 0.06 +ij[6513] = 3 +id[6514] = "2477-07-06T18:46:11" +ik[6514] = -2.296 +il[6514] = 90 +im[6514] = 0.1647 +ij[6514] = 2 +id[6515] = "2477-08-23T22:12:44" +ik[6515] = 0 +il[6515] = 144 +im[6515] = 0.2634 +ij[6515] = 13 +id[6516] = "2477-09-25T18:00:20" +ik[6516] = 4.92 +il[6516] = 146 +im[6516] = 0.2025 +ij[6516] = 11 +id[6517] = "2477-10-24T22:16:19" +ik[6517] = 62 +il[6517] = -149 +im[6517] = 0.2696 +ij[6517] = 7.1153 +id[6518] = "2477-11-07T19:55:48" +ik[6518] = 0.737 +il[6518] = 21 +im[6518] = 0.2656 +ij[6518] = 28.2 +id[6519] = "2477-12-07T07:37:09" +ik[6519] = 105.39 +il[6519] = 129 +im[6519] = 0.2082 +ij[6519] = 14 +id[6520] = "2477-12-09T09:50:36" +ik[6520] = -26.003 +il[6520] = 116 +im[6520] = 0.1936 +ij[6520] = 15 +id[6521] = "2477-12-16T22:28:25" +ik[6521] = -2.045 +il[6521] = -2 +im[6521] = 0.063 +ij[6521] = 4 +id[6522] = "2478-01-08T05:08:18" +ik[6522] = 41.102 +il[6522] = 110 +im[6522] = 0.1243 +ij[6522] = 1 +id[6523] = "2478-01-19T08:05:10" +ik[6523] = 1.316 +il[6523] = 172 +im[6523] = 0.1229 +ij[6523] = 27.6 +id[6524] = "2478-01-26T09:25:47" +ik[6524] = 1.349 +il[6524] = -142 +im[6524] = 0.0126 +ij[6524] = 28.7 +id[6525] = "2478-04-04T21:40:30" +ik[6525] = 3.287 +il[6525] = -39 +im[6525] = 0.0554 +ij[6525] = 27.2 +id[6526] = "2478-04-12T15:13:54" +ik[6526] = 31.953 +il[6526] = 131 +im[6526] = 0.0653 +ij[6526] = 9 +id[6527] = "2478-04-30T01:49:52" +ik[6527] = 12 +il[6527] = 136 +im[6527] = 0.0723 +ij[6527] = 18 +id[6528] = "2478-05-07T22:21:17" +ik[6528] = 2.362 +il[6528] = -98 +im[6528] = 0.02 +ij[6528] = 28.8 +id[6529] = "2478-07-16T08:02:00" +ik[6529] = 0.461 +il[6529] = 64 +im[6529] = 0.0178 +ij[6529] = 28.1 +id[6530] = "2478-09-17T17:44:00" +ik[6530] = 25.835 +il[6530] = 175 +im[6530] = 0.0452 +ij[6530] = 16 +id[6531] = "2478-10-03T01:47:54" +ik[6531] = 0.78 +il[6531] = -157 +im[6531] = 0.0563 +ij[6531] = 12 +id[6532] = "2478-12-19T06:34:46" +ik[6532] = 3.793 +il[6532] = -6 +im[6532] = 0.0349 +ij[6532] = 28.1 +id[6533] = "2478-12-26T01:01:28" +ik[6533] = 4.282 +il[6533] = 142 +im[6533] = 0.0464 +ij[6533] = 27.4 +id[6534] = "2479-01-09T09:06:37" +ik[6534] = 5.503 +il[6534] = 156 +im[6534] = 0.04 +ij[6534] = 27.1 +id[6535] = "2479-01-28T19:00:01" +ik[6535] = 0 +il[6535] = -158 +im[6535] = 0.0698 +ij[6535] = 17 +id[6536] = "2479-03-28T21:27:14" +ik[6536] = 34.384 +il[6536] = 5 +im[6536] = 0.0759 +ij[6536] = 8 +id[6537] = "2479-03-30T14:22:00" +ik[6537] = 0.214 +il[6537] = 127 +im[6537] = 0.0576 +ij[6537] = 27.3 +id[6538] = "2479-04-26T20:32:03" +ik[6538] = 0.224 +il[6538] = -66 +im[6538] = 0.0827 +ij[6538] = 28.6 +id[6539] = "2479-04-29T22:29:52" +ik[6539] = 1.037 +il[6539] = -66 +im[6539] = 0.0371 +ij[6539] = 27.5 +id[6540] = "2479-05-28T20:10:26" +ik[6540] = -24.839 +il[6540] = -115 +im[6540] = 0.0376 +ij[6540] = 15 +id[6541] = "2479-06-02T22:00:52" +ik[6541] = 0.429 +il[6541] = -93 +im[6541] = 0.0787 +ij[6541] = 28.5 +id[6542] = "2479-07-13T17:38:01" +ik[6542] = 4.264 +il[6542] = 7 +im[6542] = 0.0111 +ij[6542] = 27.6 +id[6543] = "2479-07-20T21:52:22" +ik[6543] = 1.604 +il[6543] = 14 +im[6543] = 0.1285 +ij[6543] = 28.7 +id[6544] = "2479-08-02T09:53:16" +ik[6544] = 47.168 +il[6544] = -44 +im[6544] = 0.1533 +ij[6544] = 3 +id[6545] = "2479-08-29T11:03:06" +ik[6545] = -2.308 +il[6545] = -156 +im[6545] = 0.1617 +ij[6545] = 2 +id[6546] = "2479-10-23T07:37:39" +ik[6546] = 0 +il[6546] = 74 +im[6546] = 0.2058 +ij[6546] = 13 +id[6547] = "2479-11-03T04:47:08" +ik[6547] = 4.897 +il[6547] = -137 +im[6547] = 0.0246 +ij[6547] = 27.2 +id[6548] = "2479-11-13T14:08:10" +ik[6548] = 3.145 +il[6548] = 179 +im[6548] = 0.135 +ij[6548] = 28.1 +id[6549] = "2479-11-29T06:04:47" +ik[6549] = 1.12 +il[6549] = 79 +im[6549] = 0.036 +ij[6549] = 11 +id[6550] = "2479-12-13T19:46:30" +ik[6550] = 2.526 +il[6550] = -157 +im[6550] = 0.0998 +ij[6550] = 28.1 +id[6551] = "2480-01-02T06:40:15" +ik[6551] = 70.96 +il[6551] = -144 +im[6551] = 0.2138 +ij[6551] = 7.1374 +id[6552] = "2480-02-24T06:26:40" +ik[6552] = -1.696 +il[6552] = -1 +im[6552] = 0.1011 +ij[6552] = 4 +id[6553] = "2480-02-27T01:23:02" +ik[6553] = 126.74 +il[6553] = 101 +im[6553] = 0.1181 +ij[6553] = 14 +id[6554] = "2480-03-01T22:55:35" +ik[6554] = 2.459 +il[6554] = 174 +im[6554] = 0.0587 +ij[6554] = 27.2 +id[6555] = "2480-03-05T09:44:21" +ik[6555] = 37.93 +il[6555] = 45 +im[6555] = 0.0355 +ij[6555] = 1 +id[6556] = "2480-04-04T14:56:31" +ik[6556] = 12 +il[6556] = -109 +im[6556] = 0.0613 +ij[6556] = 18 +id[6557] = "2480-04-20T00:08:54" +ik[6557] = 2.706 +il[6557] = -102 +im[6557] = 0.0544 +ij[6557] = 28.8 +id[6558] = "2480-05-19T19:58:21" +ik[6558] = 31.308 +il[6558] = -117 +im[6558] = 0.0617 +ij[6558] = 9 +id[6559] = "2480-07-09T13:36:19" +ik[6559] = 0.425 +il[6559] = 101 +im[6559] = 0.0264 +ij[6559] = 28.2 +id[6560] = "2480-08-30T03:29:57" +ik[6560] = 25.963 +il[6560] = 28 +im[6560] = 0.0587 +ij[6560] = 16 +id[6561] = "2480-11-09T18:31:28" +ik[6561] = 0.09 +il[6561] = 161 +im[6561] = 0.0584 +ij[6561] = 12 +id[6562] = "2481-01-08T07:44:03" +ik[6562] = 0 +il[6562] = 0 +im[6562] = 0.0609 +ij[6562] = 17 +id[6563] = "2481-03-07T11:28:43" +ik[6563] = 0.272 +il[6563] = 146 +im[6563] = 0.0693 +ij[6563] = 27.3 +id[6564] = "2481-03-08T16:39:59" +ik[6564] = 5.029 +il[6564] = 79 +im[6564] = 0.0624 +ij[6564] = 28.1 +id[6565] = "2481-03-27T00:37:12" +ik[6565] = 1.075 +il[6565] = 136 +im[6565] = 0.006 +ij[6565] = 28.2 +id[6566] = "2481-04-05T15:40:27" +ik[6566] = 0.765 +il[6566] = 2 +im[6566] = 0.0737 +ij[6566] = 27.5 +id[6567] = "2481-05-05T02:00:23" +ik[6567] = -25.358 +il[6567] = 130 +im[6567] = 0.0764 +ij[6567] = 15 +id[6568] = "2481-05-07T15:54:39" +ik[6568] = 0.916 +il[6568] = -53 +im[6568] = 0.0505 +ij[6568] = 28.6 +id[6569] = "2481-06-10T18:59:41" +ik[6569] = 36.286 +il[6569] = -128 +im[6569] = 0.0413 +ij[6569] = 8 +id[6570] = "2481-06-15T08:40:49" +ik[6570] = 3.392 +il[6570] = 72 +im[6570] = 0.0839 +ij[6570] = 27.6 +id[6571] = "2481-07-04T18:46:56" +ik[6571] = 0.72 +il[6571] = 110 +im[6571] = 0.0511 +ij[6571] = 28.7 +id[6572] = "2481-07-28T12:49:28" +ik[6572] = 0.113 +il[6572] = 73 +im[6572] = 0.0979 +ij[6572] = 28.5 +id[6573] = "2481-08-19T17:54:08" +ik[6573] = 5.256 +il[6573] = -145 +im[6573] = 0.0102 +ij[6573] = 27.2 +id[6574] = "2481-09-08T11:29:52" +ik[6574] = 11 +il[6574] = 144 +im[6574] = 0.1138 +ij[6574] = 18 +id[6575] = "2481-09-17T10:35:19" +ik[6575] = 43.148 +il[6575] = -114 +im[6575] = 0.0113 +ij[6575] = 3 +id[6576] = "2481-09-29T21:29:29" +ik[6576] = 1.131 +il[6576] = -156 +im[6576] = 0.0329 +ij[6576] = 28.8 +id[6577] = "2481-09-30T18:07:08" +ik[6577] = -2 +il[6577] = -97 +im[6577] = 0.0128 +ij[6577] = 2 +id[6578] = "2481-12-03T01:23:32" +ik[6578] = 0 +il[6578] = 49 +im[6578] = 0.2144 +ij[6578] = 13 +id[6579] = "2481-12-20T09:25:38" +ik[6579] = 1.092 +il[6579] = 96 +im[6579] = 0.1452 +ij[6579] = 28.2 +id[6580] = "2482-01-11T02:12:48" +ik[6580] = 3.87 +il[6580] = 40 +im[6580] = 0.2175 +ij[6580] = 11 +id[6581] = "2482-01-31T13:14:53" +ik[6581] = 4.877 +il[6581] = -124 +im[6581] = 0.0605 +ij[6581] = 28.8 +id[6582] = "2482-02-19T00:48:10" +ik[6582] = 77.98 +il[6582] = -134 +im[6582] = 0.1525 +ij[6582] = 7.1667 +id[6583] = "2482-03-06T05:53:55" +ik[6583] = 5.189 +il[6583] = -67 +im[6583] = 0.1453 +ij[6583] = 28.5 +id[6584] = "2482-03-16T16:59:15" +ik[6584] = 3.793 +il[6584] = -135 +im[6584] = 0.0732 +ij[6584] = 28.8 +id[6585] = "2482-04-16T03:29:48" +ik[6585] = -1.563 +il[6585] = -4 +im[6585] = 0.0997 +ij[6585] = 4 +id[6586] = "2482-04-18T10:41:13" +ik[6586] = 37.013 +il[6586] = -90 +im[6586] = 0.1123 +ij[6586] = 1 +id[6587] = "2482-04-25T10:54:02" +ik[6587] = 143.4 +il[6587] = -27 +im[6587] = 0.017 +ij[6587] = 14 +id[6588] = "2482-06-25T20:36:34" +ik[6588] = 31.522 +il[6588] = 54 +im[6588] = 0.0535 +ij[6588] = 9 +id[6589] = "2482-08-11T18:28:51" +ik[6589] = 26.087 +il[6589] = 178 +im[6589] = 0.0675 +ij[6589] = 16 +id[6590] = "2482-09-15T00:00:57" +ik[6590] = 3.328 +il[6590] = 67 +im[6590] = 0.0136 +ij[6590] = 28.1 +id[6591] = "2482-12-20T15:23:55" +ik[6591] = 0 +il[6591] = 79 +im[6591] = 0.0503 +ij[6591] = 17 +id[6592] = "2482-12-27T07:33:41" +ik[6592] = 0.74 +il[6592] = -99 +im[6592] = 0.0231 +ij[6592] = 12 +id[6593] = "2483-03-15T21:40:59" +ik[6593] = 0.635 +il[6593] = -108 +im[6593] = 0.0651 +ij[6593] = 27.5 +id[6594] = "2483-04-14T18:05:12" +ik[6594] = -25.63 +il[6594] = -120 +im[6594] = 0.0659 +ij[6594] = 15 +id[6595] = "2483-05-20T01:12:15" +ik[6595] = 1.456 +il[6595] = 124 +im[6595] = 0.0051 +ij[6595] = 28.6 +id[6596] = "2483-05-24T11:30:35" +ik[6596] = 2.965 +il[6596] = 13 +im[6596] = 0.0553 +ij[6596] = 27.6 +id[6597] = "2483-05-29T20:18:01" +ik[6597] = 6.024 +il[6597] = -66 +im[6597] = 0.0525 +ij[6597] = 28.1 +id[6598] = "2483-06-25T14:47:40" +ik[6598] = 0.261 +il[6598] = -80 +im[6598] = 0.0676 +ij[6598] = 28.7 +id[6599] = "2483-07-26T11:36:42" +ik[6599] = 4.826 +il[6599] = -90 +im[6599] = 0.0575 +ij[6599] = 27.2 +id[6600] = "2483-08-14T14:45:06" +ik[6600] = 12 +il[6600] = 50 +im[6600] = 0.0076 +ij[6600] = 18 +id[6601] = "2483-08-24T12:26:47" +ik[6601] = 34.395 +il[6601] = -179 +im[6601] = 0.0591 +ij[6601] = 8 +id[6602] = "2483-09-07T22:36:51" +ik[6602] = 1.26 +il[6602] = 169 +im[6602] = 0.0752 +ij[6602] = 28.8 +id[6603] = "2483-10-14T04:09:35" +ik[6603] = 0.282 +il[6603] = 78 +im[6603] = 0.0644 +ij[6603] = 28.5 +id[6604] = "2483-11-01T01:11:09" +ik[6604] = -1.757 +il[6604] = -64 +im[6604] = 0.1097 +ij[6604] = 2 +id[6605] = "2483-11-03T05:07:17" +ik[6605] = 38.979 +il[6605] = -102 +im[6605] = 0.1018 +ij[6605] = 3 +id[6606] = "2483-12-22T04:14:37" +ik[6606] = 21.303 +il[6606] = 25 +im[6606] = 0.059 +ij[6606] = 16 +id[6607] = "2484-01-06T10:54:30" +ik[6607] = 0 +il[6607] = 72 +im[6607] = 0.1309 +ij[6607] = 13 +id[6608] = "2484-02-15T20:19:01" +ik[6608] = 4.35 +il[6608] = -61 +im[6608] = 0.1546 +ij[6608] = 11 +id[6609] = "2484-03-24T05:38:51" +ik[6609] = 2.582 +il[6609] = -59 +im[6609] = 0.0115 +ij[6609] = 28.2 +id[6610] = "2484-03-28T09:57:06" +ik[6610] = 81.96 +il[6610] = -84 +im[6610] = 0.1484 +ij[6610] = 7.1991 +id[6611] = "2484-05-27T06:42:20" +ik[6611] = 37.771 +il[6611] = 178 +im[6611] = 0.0922 +ij[6611] = 1 +id[6612] = "2484-05-30T17:04:02" +ik[6612] = -1.585 +il[6612] = 56 +im[6612] = 0.0322 +ij[6612] = 4 +id[6613] = "2484-06-03T21:56:58" +ik[6613] = 149.46 +il[6613] = 23 +im[6613] = 0.0561 +ij[6613] = 14 +id[6614] = "2484-07-03T11:25:18" +ik[6614] = 0.295 +il[6614] = 107 +im[6614] = 0.0624 +ij[6614] = 28.5 +id[6615] = "2484-08-04T11:39:40" +ik[6615] = 32.586 +il[6615] = 54 +im[6615] = 0.0762 +ij[6615] = 9 +id[6616] = "2484-10-27T22:29:50" +ik[6616] = 3.526 +il[6616] = -7 +im[6616] = 0.0562 +ij[6616] = 27.4 +id[6617] = "2484-11-10T19:39:10" +ik[6617] = 6.216 +il[6617] = 171 +im[6617] = 0.0612 +ij[6617] = 27.1 +id[6618] = "2484-11-30T23:05:17" +ik[6618] = 0 +il[6618] = -44 +im[6618] = 0.0448 +ij[6618] = 17 +id[6619] = "2484-12-03T08:25:49" +ik[6619] = 0.711 +il[6619] = -161 +im[6619] = 0.0159 +ij[6619] = 28.1 +id[6620] = "2485-03-02T10:51:02" +ik[6620] = 1.01 +il[6620] = -17 +im[6620] = 0.0096 +ij[6620] = 12 +id[6621] = "2485-03-25T06:54:00" +ik[6621] = -25.819 +il[6621] = 50 +im[6621] = 0.0567 +ij[6621] = 15 +id[6622] = "2485-05-23T23:58:43" +ik[6622] = 1.611 +il[6622] = 27 +im[6622] = 0.0478 +ij[6622] = 28.1 +id[6623] = "2485-05-31T23:26:50" +ik[6623] = 1.721 +il[6623] = 117 +im[6623] = 0.0442 +ij[6623] = 28.6 +id[6624] = "2485-06-17T11:37:08" +ik[6624] = 0.053 +il[6624] = 94 +im[6624] = 0.0627 +ij[6624] = 28.7 +id[6625] = "2485-07-04T19:27:18" +ik[6625] = 4.535 +il[6625] = 148 +im[6625] = 0.0598 +ij[6625] = 27.2 +id[6626] = "2485-07-24T08:16:53" +ik[6626] = 12 +il[6626] = 146 +im[6626] = 0.0121 +ij[6626] = 18 +id[6627] = "2485-08-23T04:10:28" +ik[6627] = 1.354 +il[6627] = 137 +im[6627] = 0.0013 +ij[6627] = 28.8 +id[6628] = "2485-09-21T07:47:41" +ik[6628] = 3.914 +il[6628] = 6 +im[6628] = 0.0073 +ij[6628] = 28.2 +id[6629] = "2485-10-11T14:08:34" +ik[6629] = 32.107 +il[6629] = 107 +im[6629] = 0.0825 +ij[6629] = 8 +id[6630] = "2485-12-03T19:06:43" +ik[6630] = -1.619 +il[6630] = -174 +im[6630] = 0.0714 +ij[6630] = 2 +id[6631] = "2485-12-12T23:32:12" +ik[6631] = 36.679 +il[6631] = -151 +im[6631] = 0.0564 +ij[6631] = 3 +id[6632] = "2486-02-07T21:57:25" +ik[6632] = 0 +il[6632] = 62 +im[6632] = 0.0416 +ij[6632] = 13 +id[6633] = "2486-03-20T22:05:42" +ik[6633] = 3.46 +il[6633] = 73 +im[6633] = 0.0171 +ij[6633] = 11 +id[6634] = "2486-04-10T10:20:38" +ik[6634] = 0.854 +il[6634] = -136 +im[6634] = 0.1987 +ij[6634] = 28.1 +id[6635] = "2486-05-01T21:00:01" +ik[6635] = 82.96 +il[6635] = -89 +im[6635] = 0.05 +ij[6635] = 7.2102 +id[6636] = "2486-06-26T04:21:37" +ik[6636] = 26.234 +il[6636] = -24 +im[6636] = 0.022 +ij[6636] = 16 +id[6637] = "2486-07-05T14:55:50" +ik[6637] = 147.71 +il[6637] = -91 +im[6637] = 0.0668 +ij[6637] = 14 +id[6638] = "2486-07-07T10:08:15" +ik[6638] = 40.086 +il[6638] = -1 +im[6638] = 0.0275 +ij[6638] = 1 +id[6639] = "2486-07-13T13:38:44" +ik[6639] = -1.738 +il[6639] = 6 +im[6639] = 0.099 +ij[6639] = 4 +id[6640] = "2486-09-24T12:05:54" +ik[6640] = 34.376 +il[6640] = 19 +im[6640] = 0.0785 +ij[6640] = 9 +id[6641] = "2486-10-06T09:12:09" +ik[6641] = 1.509 +il[6641] = 179 +im[6641] = 0.0546 +ij[6641] = 28.5 +id[6642] = "2486-10-07T06:34:26" +ik[6642] = 3.147 +il[6642] = -133 +im[6642] = 0.0645 +ij[6642] = 27.4 +id[6643] = "2486-11-11T13:26:16" +ik[6643] = 0 +il[6643] = 109 +im[6643] = 0.0545 +ij[6643] = 17 +id[6644] = "2486-11-21T10:59:27" +ik[6644] = 1.17 +il[6644] = -117 +im[6644] = 0.0731 +ij[6644] = 28.2 +id[6645] = "2487-01-05T11:21:30" +ik[6645] = 0.158 +il[6645] = -39 +im[6645] = 0.0659 +ij[6645] = 27.3 +id[6646] = "2487-02-02T22:57:06" +ik[6646] = 0.51 +il[6646] = 72 +im[6646] = 0.0629 +ij[6646] = 27.5 +id[6647] = "2487-02-14T10:22:06" +ik[6647] = 1.666 +il[6647] = 9 +im[6647] = 0.055 +ij[6647] = 28.1 +id[6648] = "2487-03-05T22:16:59" +ik[6648] = -25.977 +il[6648] = 32 +im[6648] = 0.0568 +ij[6648] = 15 +id[6649] = "2487-05-12T20:07:29" +ik[6649] = 0.01 +il[6649] = 11 +im[6649] = 0.0511 +ij[6649] = 12 +id[6650] = "2487-07-05T12:11:36" +ik[6650] = 12 +il[6650] = 88 +im[6650] = 0.0067 +ij[6650] = 18 +id[6651] = "2487-07-30T02:46:44" +ik[6651] = 1.47 +il[6651] = 119 +im[6651] = 0.0418 +ij[6651] = 28.1 +id[6652] = "2487-08-10T16:40:33" +ik[6652] = 1.396 +il[6652] = 19 +im[6652] = 0.0611 +ij[6652] = 28.8 +id[6653] = "2487-09-07T14:37:13" +ik[6653] = 1.256 +il[6653] = -36 +im[6653] = 0.062 +ij[6653] = 28.2 +id[6654] = "2487-11-17T23:15:40" +ik[6654] = 30.866 +il[6654] = 164 +im[6654] = 0.0782 +ij[6654] = 8 +id[6655] = "2487-11-20T17:22:23" +ik[6655] = 25.109 +il[6655] = -81 +im[6655] = 0.0709 +ij[6655] = 16 +id[6656] = "2488-01-13T06:24:04" +ik[6656] = -1.581 +il[6656] = -120 +im[6656] = 0.1069 +ij[6656] = 2 +id[6657] = "2488-01-21T10:49:17" +ik[6657] = 36.22 +il[6657] = -107 +im[6657] = 0.0163 +ij[6657] = 3 +id[6658] = "2488-03-18T14:56:18" +ik[6658] = 0 +il[6658] = 14 +im[6658] = 0.0348 +ij[6658] = 13 +id[6659] = "2488-04-10T20:00:52" +ik[6659] = 1.117 +il[6659] = 152 +im[6659] = 0.1439 +ij[6659] = 28.2 +id[6660] = "2488-04-26T06:35:02" +ik[6660] = 1.18 +il[6660] = 129 +im[6660] = 0.0077 +ij[6660] = 11 +id[6661] = "2488-06-05T14:00:54" +ik[6661] = 78.96 +il[6661] = -179 +im[6661] = 0.0355 +ij[6661] = 7.1773 +id[6662] = "2488-08-02T23:54:42" +ik[6662] = 137.37 +il[6662] = -104 +im[6662] = 0.0501 +ij[6662] = 14 +id[6663] = "2488-08-16T21:40:31" +ik[6663] = -2.012 +il[6663] = 66 +im[6663] = 0.0682 +ij[6663] = 4 +id[6664] = "2488-08-21T02:37:14" +ik[6664] = 43.756 +il[6664] = 32 +im[6664] = 0.1324 +ij[6664] = 1 +id[6665] = "2488-09-11T04:08:58" +ik[6665] = 2.465 +il[6665] = -145 +im[6665] = 0.0211 +ij[6665] = 27.4 +id[6666] = "2488-10-20T03:12:04" +ik[6666] = 0 +il[6666] = -108 +im[6666] = 0.0995 +ij[6666] = 17 +id[6667] = "2488-12-01T01:58:47" +ik[6667] = 35.564 +il[6667] = -37 +im[6667] = 0.083 +ij[6667] = 9 +id[6668] = "2488-12-13T23:01:38" +ik[6668] = 0.582 +il[6668] = 134 +im[6668] = 0.0807 +ij[6668] = 28.5 +id[6669] = "2488-12-14T00:33:10" +ik[6669] = 0.006 +il[6669] = 112 +im[6669] = 0.0811 +ij[6669] = 27.3 +id[6670] = "2489-01-11T22:09:44" +ik[6670] = 0.497 +il[6670] = 72 +im[6670] = 0.0721 +ij[6670] = 27.5 +id[6671] = "2489-02-12T23:44:51" +ik[6671] = -26.129 +il[6671] = 0 +im[6671] = 0.0685 +ij[6671] = 15 +id[6672] = "2489-03-23T10:12:09" +ik[6672] = 2.184 +il[6672] = -146 +im[6672] = 0.0501 +ij[6672] = 27.6 +id[6673] = "2489-04-25T18:57:30" +ik[6673] = 1.414 +il[6673] = 51 +im[6673] = 0.0623 +ij[6673] = 28.1 +id[6674] = "2489-06-16T03:02:25" +ik[6674] = 12 +il[6674] = 67 +im[6674] = 0.0248 +ij[6674] = 18 +id[6675] = "2489-07-03T21:32:49" +ik[6675] = 0.85 +il[6675] = -43 +im[6675] = 0.0471 +ij[6675] = 12 +id[6676] = "2489-10-31T01:29:11" +ik[6676] = 25.429 +il[6676] = 160 +im[6676] = 0.0529 +ij[6676] = 16 +id[6677] = "2489-12-20T16:33:27" +ik[6677] = 30.655 +il[6677] = 61 +im[6677] = 0.0393 +ij[6677] = 8 +id[6678] = "2490-02-24T18:59:28" +ik[6678] = 5.159 +il[6678] = -64 +im[6678] = 0.0651 +ij[6678] = 27.4 +id[6679] = "2490-03-06T17:34:13" +ik[6679] = 37.776 +il[6679] = 52 +im[6679] = 0.1201 +ij[6679] = 3 +id[6680] = "2490-03-10T15:27:12" +ik[6680] = -1.68 +il[6680] = 121 +im[6680] = 0.0743 +ij[6680] = 2 +id[6681] = "2490-03-17T23:41:40" +ik[6681] = 4.75 +il[6681] = 67 +im[6681] = 0.1218 +ij[6681] = 27.1 +id[6682] = "2490-05-11T23:55:12" +ik[6682] = 0 +il[6682] = -136 +im[6682] = 0.1999 +ij[6682] = 13 +id[6683] = "2490-06-13T11:08:49" +ik[6683] = 2.7 +il[6683] = -19 +im[6683] = 0.2626 +ij[6683] = 11 +id[6684] = "2490-07-20T22:57:47" +ik[6684] = 69.96 +il[6684] = -20 +im[6684] = 0.2741 +ij[6684] = 7.1192 +id[6685] = "2490-09-07T01:04:35" +ik[6685] = 118.05 +il[6685] = 60 +im[6685] = 0.0575 +ij[6685] = 14 +id[6686] = "2490-09-17T22:41:53" +ik[6686] = -2.324 +il[6686] = -157 +im[6686] = 0.1484 +ij[6686] = 4 +id[6687] = "2490-09-20T06:46:54" +ik[6687] = 0 +il[6687] = 105 +im[6687] = 0.0782 +ij[6687] = 17 +id[6688] = "2490-10-08T14:55:14" +ik[6688] = 46.368 +il[6688] = 163 +im[6688] = 0.0461 +ij[6688] = 1 +id[6689] = "2490-11-17T20:30:51" +ik[6689] = 0.433 +il[6689] = 115 +im[6689] = 0.0184 +ij[6689] = 27.3 +id[6690] = "2490-12-18T13:52:18" +ik[6690] = 0.588 +il[6690] = 155 +im[6690] = 0.0275 +ij[6690] = 27.5 +id[6691] = "2491-01-22T04:40:38" +ik[6691] = -26.286 +il[6691] = -92 +im[6691] = 0.0929 +ij[6691] = 15 +id[6692] = "2491-02-06T13:21:27" +ik[6692] = 34.227 +il[6692] = -74 +im[6692] = 0.0794 +ij[6692] = 9 +id[6693] = "2491-02-09T05:26:39" +ik[6693] = 0.968 +il[6693] = 70 +im[6693] = 0.0644 +ij[6693] = 28.5 +id[6694] = "2491-03-01T23:46:03" +ik[6694] = 1.9 +il[6694] = -7 +im[6694] = 0.022 +ij[6694] = 27.6 +id[6695] = "2491-05-06T12:58:45" +ik[6695] = 3.809 +il[6695] = 60 +im[6695] = 0.0534 +ij[6695] = 27.2 +id[6696] = "2491-05-28T15:00:29" +ik[6696] = 12 +il[6696] = -116 +im[6696] = 0.0361 +ij[6696] = 18 +id[6697] = "2491-05-30T13:03:34" +ik[6697] = 0.66 +il[6697] = -71 +im[6697] = 0.0528 +ij[6697] = 28.7 +id[6698] = "2491-08-14T03:53:16" +ik[6698] = 1.14 +il[6698] = 73 +im[6698] = 0.0527 +ij[6698] = 12 +id[6699] = "2491-10-13T00:02:04" +ik[6699] = 25.631 +il[6699] = -172 +im[6699] = 0.0372 +ij[6699] = 16 +id[6700] = "2492-01-24T19:11:40" +ik[6700] = 31.459 +il[6700] = -175 +im[6700] = 0.0152 +ij[6700] = 8 +id[6701] = "2492-01-25T14:38:22" +ik[6701] = 4.696 +il[6701] = -99 +im[6701] = 0.0076 +ij[6701] = 27.4 +id[6702] = "2492-02-10T06:15:36" +ik[6702] = 5.113 +il[6702] = 175 +im[6702] = 0.0409 +ij[6702] = 27.1 +id[6703] = "2492-03-01T22:32:28" +ik[6703] = 23 +il[6703] = 126 +im[6703] = 0.0868 +ij[6703] = 17 +id[6704] = "2492-05-07T13:09:15" +ik[6704] = 42.242 +il[6704] = 177 +im[6704] = 0.0996 +ij[6704] = 3 +id[6705] = "2492-05-16T05:53:25" +ik[6705] = 0.627 +il[6705] = 8 +im[6705] = 0.0832 +ij[6705] = 27.3 +id[6706] = "2492-06-03T12:08:07" +ik[6706] = -2.085 +il[6706] = 88 +im[6706] = 0.0715 +ij[6706] = 2 +id[6707] = "2492-07-07T22:35:52" +ik[6707] = 4.471 +il[6707] = -101 +im[6707] = 0.273 +ij[6707] = 27.5 +id[6708] = "2492-07-25T01:05:06" +ik[6708] = 0 +il[6708] = 25 +im[6708] = 0.1807 +ij[6708] = 13 +id[6709] = "2492-08-24T04:27:03" +ik[6709] = 6.58 +il[6709] = -108 +im[6709] = 0.0891 +ij[6709] = 11 +id[6710] = "2492-09-24T10:41:07" +ik[6710] = 61.4 +il[6710] = -62 +im[6710] = 0.3104 +ij[6710] = 7.1034 +id[6711] = "2492-11-02T17:24:27" +ik[6711] = 1.918 +il[6711] = -138 +im[6711] = 0.1323 +ij[6711] = 27.5 +id[6712] = "2492-11-04T16:34:54" +ik[6712] = 102.65 +il[6712] = -107 +im[6712] = 0.1955 +ij[6712] = 14 +id[6713] = "2492-11-15T01:45:01" +ik[6713] = -2.23 +il[6713] = -144 +im[6713] = 0.042 +ij[6713] = 4 +id[6714] = "2492-12-11T09:41:11" +ik[6714] = 43.057 +il[6714] = -8 +im[6714] = 0.0472 +ij[6714] = 1 +id[6715] = "2492-12-24T02:53:30" +ik[6715] = -26.345 +il[6715] = -144 +im[6715] = 0.0799 +ij[6715] = 15 +id[6716] = "2493-02-02T20:07:03" +ik[6716] = 1.51 +il[6716] = -15 +im[6716] = 0.1 +ij[6716] = 27.6 +id[6717] = "2493-03-27T08:30:46" +ik[6717] = 32.453 +il[6717] = -64 +im[6717] = 0.0698 +ij[6717] = 9 +id[6718] = "2493-04-12T23:29:17" +ik[6718] = 1.448 +il[6718] = -132 +im[6718] = 0.0679 +ij[6718] = 28.5 +id[6719] = "2493-04-14T06:52:21" +ik[6719] = 3.469 +il[6719] = 129 +im[6719] = 0.0687 +ij[6719] = 27.2 +id[6720] = "2493-05-08T05:36:02" +ik[6720] = 12 +il[6720] = 14 +im[6720] = 0.0344 +ij[6720] = 18 +id[6721] = "2493-05-10T20:07:57" +ik[6721] = 1.004 +il[6721] = 180 +im[6721] = 0.0585 +ij[6721] = 28.2 +id[6722] = "2493-05-23T15:24:13" +ik[6722] = 0.817 +il[6722] = 12 +im[6722] = 0.0539 +ij[6722] = 28.7 +id[6723] = "2493-06-25T01:32:32" +ik[6723] = 2.143 +il[6723] = 177 +im[6723] = 0.0616 +ij[6723] = 28.1 +id[6724] = "2493-07-06T00:13:32" +ik[6724] = 1.358 +il[6724] = -58 +im[6724] = 0.0457 +ij[6724] = 28.8 +id[6725] = "2493-09-18T22:19:03" +ik[6725] = 0.95 +il[6725] = -24 +im[6725] = 0.0561 +ij[6725] = 12 +id[6726] = "2493-09-24T12:57:53" +ik[6726] = 25.784 +il[6726] = 6 +im[6726] = 0.0178 +ij[6726] = 16 +id[6727] = "2493-11-19T01:25:13" +ik[6727] = 1.722 +il[6727] = 1 +im[6727] = 0.0397 +ij[6727] = 28.1 +id[6728] = "2494-01-02T20:11:55" +ik[6728] = 4.384 +il[6728] = 156 +im[6728] = 0.0264 +ij[6728] = 27.4 +id[6729] = "2494-01-07T08:46:45" +ik[6729] = 1.981 +il[6729] = 10 +im[6729] = 0.0342 +ij[6729] = 28.2 +id[6730] = "2494-01-17T09:25:52" +ik[6730] = 5.407 +il[6730] = 95 +im[6730] = 0.0189 +ij[6730] = 27.1 +id[6731] = "2494-02-05T22:06:20" +ik[6731] = 0 +il[6731] = 90 +im[6731] = 0.0456 +ij[6731] = 17 +id[6732] = "2494-03-07T15:08:33" +ik[6732] = 33.365 +il[6732] = 115 +im[6732] = 0.0611 +ij[6732] = 8 +id[6733] = "2494-04-09T10:55:07" +ik[6733] = 0.148 +il[6733] = 129 +im[6733] = 0.0846 +ij[6733] = 27.3 +id[6734] = "2494-05-10T18:51:02" +ik[6734] = 1.251 +il[6734] = -52 +im[6734] = 0.0666 +ij[6734] = 27.5 +id[6735] = "2494-06-08T07:33:13" +ik[6735] = -24.442 +il[6735] = 30 +im[6735] = 0.0869 +ij[6735] = 15 +id[6736] = "2494-07-14T12:40:10" +ik[6736] = 47.275 +il[6736] = -58 +im[6736] = 0.116 +ij[6736] = 3 +id[6737] = "2494-07-30T05:36:19" +ik[6737] = 5.026 +il[6737] = -159 +im[6737] = 0.1576 +ij[6737] = 27.6 +id[6738] = "2494-08-12T22:04:36" +ik[6738] = -2.387 +il[6738] = 87 +im[6738] = 0.1584 +ij[6738] = 2 +id[6739] = "2494-10-02T16:35:24" +ik[6739] = 0 +il[6739] = -52 +im[6739] = 0.069 +ij[6739] = 13 +id[6740] = "2494-10-13T05:45:11" +ik[6740] = 2.039 +il[6740] = -146 +im[6740] = 0.2556 +ij[6740] = 28.2 +id[6741] = "2494-11-07T12:20:50" +ik[6741] = 0.6 +il[6741] = -19 +im[6741] = 0.3218 +ij[6741] = 11 +id[6742] = "2494-12-08T15:38:00" +ik[6742] = 66.96 +il[6742] = 70 +im[6742] = 0.0907 +ij[6742] = 7.1294 +id[6743] = "2495-01-28T09:04:51" +ik[6743] = 117.69 +il[6743] = -77 +im[6743] = 0.1494 +ij[6743] = 14 +id[6744] = "2495-01-31T00:46:23" +ik[6744] = -1.802 +il[6744] = 73 +im[6744] = 0.111 +ij[6744] = 4 +id[6745] = "2495-02-14T08:24:08" +ik[6745] = 38.855 +il[6745] = 93 +im[6745] = 0.0821 +ij[6745] = 1 +id[6746] = "2495-03-18T14:21:59" +ik[6746] = 2.886 +il[6746] = -52 +im[6746] = 0.0056 +ij[6746] = 27.2 +id[6747] = "2495-04-16T03:41:32" +ik[6747] = 12 +il[6747] = 17 +im[6747] = 0.0042 +ij[6747] = 18 +id[6748] = "2495-05-06T09:19:13" +ik[6748] = 31.456 +il[6748] = 123 +im[6748] = 0.0778 +ij[6748] = 9 +id[6749] = "2495-05-16T10:18:49" +ik[6749] = 0.986 +il[6749] = -157 +im[6749] = 0.0253 +ij[6749] = 28.7 +id[6750] = "2495-06-24T02:57:08" +ik[6750] = 1.327 +il[6750] = -35 +im[6750] = 0.0266 +ij[6750] = 28.8 +id[6751] = "2495-07-04T21:01:56" +ik[6751] = 0.326 +il[6751] = 151 +im[6751] = 0.0624 +ij[6751] = 28.5 +id[6752] = "2495-08-21T10:48:06" +ik[6752] = 0.921 +il[6752] = 50 +im[6752] = 0.0123 +ij[6752] = 28.6 +id[6753] = "2495-08-22T04:28:46" +ik[6753] = 0.499 +il[6753] = 150 +im[6753] = 0.006 +ij[6753] = 28.1 +id[6754] = "2495-09-07T02:18:39" +ik[6754] = 25.915 +il[6754] = -22 +im[6754] = 0.0093 +ij[6754] = 16 +id[6755] = "2495-10-26T02:43:03" +ik[6755] = 0.39 +il[6755] = 89 +im[6755] = 0.0589 +ij[6755] = 12 +id[6756] = "2495-12-28T10:45:13" +ik[6756] = 5.646 +il[6756] = 55 +im[6756] = 0.0285 +ij[6756] = 27.1 +id[6757] = "2496-01-16T19:33:41" +ik[6757] = 0 +il[6757] = 110 +im[6757] = 0.0397 +ij[6757] = 17 +id[6758] = "2496-02-04T08:50:33" +ik[6758] = 5.1 +il[6758] = 87 +im[6758] = 0.0648 +ij[6758] = 28.1 +id[6759] = "2496-03-15T18:44:42" +ik[6759] = 0.261 +il[6759] = -28 +im[6759] = 0.0547 +ij[6759] = 27.3 +id[6760] = "2496-04-14T07:42:38" +ik[6760] = 0.845 +il[6760] = 59 +im[6760] = 0.0636 +ij[6760] = 27.5 +id[6761] = "2496-05-09T02:44:59" +ik[6761] = 35.894 +il[6761] = 12 +im[6761] = 0.0098 +ij[6761] = 8 +id[6762] = "2496-05-13T13:33:05" +ik[6762] = -25.203 +il[6762] = -108 +im[6762] = 0.0705 +ij[6762] = 15 +id[6763] = "2496-06-24T23:03:39" +ik[6763] = 3.642 +il[6763] = 161 +im[6763] = 0.0817 +ij[6763] = 27.6 +id[6764] = "2496-08-29T13:06:05" +ik[6764] = 45.026 +il[6764] = -126 +im[6764] = 0.0814 +ij[6764] = 3 +id[6765] = "2496-09-01T04:05:29" +ik[6765] = 5.495 +il[6765] = 35 +im[6765] = 0.0119 +ij[6765] = 27.2 +id[6766] = "2496-09-18T13:16:37" +ik[6766] = -2.12 +il[6766] = 68 +im[6766] = 0.1016 +ij[6766] = 2 +id[6767] = "2496-09-22T22:26:12" +ik[6767] = 11 +il[6767] = -27 +im[6767] = 0.1533 +ij[6767] = 18 +id[6768] = "2496-11-19T09:05:20" +ik[6768] = 0 +il[6768] = 14 +im[6768] = 0.2093 +ij[6768] = 13 +id[6769] = "2496-12-12T01:13:05" +ik[6769] = 0.324 +il[6769] = -9 +im[6769] = 0.2251 +ij[6769] = 28.1 +id[6770] = "2496-12-24T18:56:26" +ik[6770] = 12 +il[6770] = -164 +im[6770] = 0.2001 +ij[6770] = 17 +id[6771] = "2496-12-26T12:01:17" +ik[6771] = 3.16 +il[6771] = -52 +im[6771] = 0.2423 +ij[6771] = 11 +id[6772] = "2497-01-12T08:20:29" +ik[6772] = 4.77 +il[6772] = -18 +im[6772] = 0.2153 +ij[6772] = 28.1 +id[6773] = "2497-02-01T13:21:17" +ik[6773] = 3.256 +il[6773] = 93 +im[6773] = 0.1182 +ij[6773] = 28.2 +id[6774] = "2497-02-01T14:13:57" +ik[6774] = 74.21 +il[6774] = 77 +im[6774] = 0.1194 +ij[6774] = 7.1541 +id[6775] = "2497-03-11T23:27:40" +ik[6775] = 12 +il[6775] = -59 +im[6775] = 0.0413 +ij[6775] = 18 +id[6776] = "2497-03-28T04:15:17" +ik[6776] = -1.594 +il[6776] = 22 +im[6776] = 0.0474 +ij[6776] = 4 +id[6777] = "2497-04-02T04:37:12" +ik[6777] = 37.153 +il[6777] = 64 +im[6777] = 0.1157 +ij[6777] = 1 +id[6778] = "2497-04-05T12:00:46" +ik[6778] = 137.12 +il[6778] = -16 +im[6778] = 0.0993 +ij[6778] = 14 +id[6779] = "2497-05-04T18:08:32" +ik[6779] = 1.238 +il[6779] = 169 +im[6779] = 0.0706 +ij[6779] = 28.7 +id[6780] = "2497-06-09T05:57:38" +ik[6780] = 1.328 +il[6780] = -31 +im[6780] = 0.0514 +ij[6780] = 28.8 +id[6781] = "2497-06-11T07:42:46" +ik[6781] = 31.345 +il[6781] = -37 +im[6781] = 0.0699 +ij[6781] = 9 +id[6782] = "2497-08-14T21:52:51" +ik[6782] = 5.401 +il[6782] = 11 +im[6782] = 0.0213 +ij[6782] = 28.1 +id[6783] = "2497-08-19T02:59:33" +ik[6783] = 26.04 +il[6783] = -25 +im[6783] = 0.0316 +ij[6783] = 16 +id[6784] = "2497-09-10T04:53:41" +ik[6784] = 1.71 +il[6784] = 160 +im[6784] = 0.0461 +ij[6784] = 28.6 +id[6785] = "2497-12-07T03:27:30" +ik[6785] = 0.42 +il[6785] = -22 +im[6785] = 0.0341 +ij[6785] = 12 +id[6786] = "2497-12-27T22:44:06" +ik[6786] = 0 +il[6786] = 68 +im[6786] = 0.0491 +ij[6786] = 17 +id[6787] = "2498-02-23T02:00:26" +ik[6787] = 0.275 +il[6787] = -179 +im[6787] = 0.0428 +ij[6787] = 27.3 +id[6788] = "2498-03-23T21:51:15" +ik[6788] = 0.677 +il[6788] = -169 +im[6788] = 0.0409 +ij[6788] = 27.5 +id[6789] = "2498-04-22T14:13:56" +ik[6789] = -25.539 +il[6789] = -127 +im[6789] = 0.0481 +ij[6789] = 15 +id[6790] = "2498-04-26T22:57:10" +ik[6790] = 4.73 +il[6790] = 144 +im[6790] = 0.072 +ij[6790] = 28.1 +id[6791] = "2498-06-01T18:53:33" +ik[6791] = 3.108 +il[6791] = -165 +im[6791] = 0.0011 +ij[6791] = 27.6 +id[6792] = "2498-07-11T21:23:07" +ik[6792] = 4.041 +il[6792] = -168 +im[6792] = 0.0527 +ij[6792] = 28.2 +id[6793] = "2498-07-29T23:17:52" +ik[6793] = 35.413 +il[6793] = -20 +im[6793] = 0.015 +ij[6793] = 8 +id[6794] = "2498-08-04T07:31:25" +ik[6794] = 4.969 +il[6794] = -91 +im[6794] = 0.0849 +ij[6794] = 27.2 +id[6795] = "2498-08-23T10:30:27" +ik[6795] = 11 +il[6795] = 52 +im[6795] = 0.0615 +ij[6795] = 18 +id[6796] = "2498-10-12T07:20:01" +ik[6796] = 0.333 +il[6796] = -135 +im[6796] = 0.0584 +ij[6796] = 28.7 +id[6797] = "2498-10-16T18:50:06" +ik[6797] = 40.41 +il[6797] = 96 +im[6797] = 0.1047 +ij[6797] = 3 +id[6798] = "2498-10-19T18:11:45" +ik[6798] = -1.84 +il[6798] = 135 +im[6798] = 0.072 +ij[6798] = 2 +id[6799] = "2498-11-23T21:09:13" +ik[6799] = 1.966 +il[6799] = 71 +im[6799] = 0.11 +ij[6799] = 28.8 +id[6800] = "2498-12-24T12:01:14" +ik[6800] = 0 +il[6800] = 144 +im[6800] = 0.1932 +ij[6800] = 13 +id[6801] = "2499-01-14T23:49:35" +ik[6801] = 4.012 +il[6801] = 175 +im[6801] = 0.0526 +ij[6801] = 28.8 +id[6802] = "2499-02-02T10:28:50" +ik[6802] = 4.35 +il[6802] = 168 +im[6802] = 0.2077 +ij[6802] = 11 +id[6803] = "2499-03-02T05:45:29" +ik[6803] = 3.421 +il[6803] = -62 +im[6803] = 0.1863 +ij[6803] = 28.7 +id[6804] = "2499-03-15T11:03:50" +ik[6804] = 80.96 +il[6804] = -17 +im[6804] = 0.1816 +ij[6804] = 7.1874 +id[6805] = "2499-04-07T11:45:44" +ik[6805] = 2.147 +il[6805] = -169 +im[6805] = 0.076 +ij[6805] = 28.7 +id[6806] = "2499-05-12T21:39:10" +ik[6806] = 37.288 +il[6806] = 21 +im[6806] = 0.1011 +ij[6806] = 1 +id[6807] = "2499-05-14T06:35:45" +ik[6807] = -1.56 +il[6807] = -100 +im[6807] = 0.0823 +ij[6807] = 4 +id[6808] = "2499-05-20T09:00:01" +ik[6808] = 1.501 +il[6808] = -78 +im[6808] = 0.0466 +ij[6808] = 28.8 +id[6809] = "2499-05-21T15:43:38" +ik[6809] = 148.15 +il[6809] = -166 +im[6809] = 0.0687 +ij[6809] = 14 +id[6810] = "2499-07-19T21:39:12" +ik[6810] = 32.068 +il[6810] = -44 +im[6810] = 0.0713 +ij[6810] = 9 +id[6811] = "2499-07-30T19:08:23" +ik[6811] = 26.165 +il[6811] = 99 +im[6811] = 0.0509 +ij[6811] = 16 +id[6812] = "2499-09-09T20:44:42" +ik[6812] = 0.43 +il[6812] = 114 +im[6812] = 0.0122 +ij[6812] = 28.2 +id[6813] = "2499-10-01T03:37:16" +ik[6813] = 2.276 +il[6813] = -142 +im[6813] = 0.0658 +ij[6813] = 28.6 +id[6814] = "2499-11-02T20:45:54" +ik[6814] = 1.659 +il[6814] = -81 +im[6814] = 0.0359 +ij[6814] = 28.1 +id[6815] = "2499-11-05T14:01:02" +ik[6815] = 3.64 +il[6815] = 52 +im[6815] = 0.0057 +ij[6815] = 27.4 +id[6816] = "2499-11-19T10:24:09" +ik[6816] = 6.109 +il[6816] = -124 +im[6816] = 0.0087 +ij[6816] = 27.1 +id[6817] = "2499-12-09T08:08:37" +ik[6817] = 0 +il[6817] = 115 +im[6817] = 0.057 +ij[6817] = 17 +id[6818] = "2500-02-03T02:52:51" +ik[6818] = 1.06 +il[6818] = 32 +im[6818] = 0.039 +ij[6818] = 12 +id[6819] = "2500-04-02T21:06:43" +ik[6819] = -25.752 +il[6819] = 123 +im[6819] = 0.0463 +ij[6819] = 15 +id[6820] = "2500-04-24T11:50:45" +ik[6820] = 1.672 +il[6820] = 124 +im[6820] = 0.0451 +ij[6820] = 28.1 +id[6821] = "2500-05-12T02:00:42" +ik[6821] = 2.778 +il[6821] = 79 +im[6821] = 0.0206 +ij[6821] = 27.6 +id[6822] = "2500-06-29T16:03:27" +ik[6822] = 2.279 +il[6822] = -9 +im[6822] = 0.0546 +ij[6822] = 28.2 +id[6823] = "2500-07-13T17:06:00" +ik[6823] = 4.639 +il[6823] = 112 +im[6823] = 0.0479 +ij[6823] = 27.2 +id[6824] = "2500-08-02T01:13:07" +ik[6824] = 12 +il[6824] = 179 +im[6824] = 0.0695 +ij[6824] = 18 +id[6825] = "2500-09-25T13:15:39" +ik[6825] = 32.89 +il[6825] = 168 +im[6825] = 0.0737 +ij[6825] = 8 +id[6826] = "2500-09-29T10:33:16" +ik[6826] = 0.36 +il[6826] = -114 +im[6826] = 0.0711 +ij[6826] = 28.7 +id[6827] = "2500-10-24T20:44:35" +ik[6827] = 1.146 +il[6827] = -20 +im[6827] = 0.085 +ij[6827] = 28.8 +id[6828] = "2500-11-21T04:48:13" +ik[6828] = -1.661 +il[6828] = 123 +im[6828] = 0.0877 +ij[6828] = 2 +id[6829] = "2500-11-28T14:50:03" +ik[6829] = 37.354 +il[6829] = 44 +im[6829] = 0.0296 +ij[6829] = 3 +id[6830] = "2501-01-27T15:44:05" +ik[6830] = 0 +il[6830] = -109 +im[6830] = 0.1169 +ij[6830] = 13 +id[6831] = "2501-02-16T23:39:51" +ik[6831] = 1.878 +il[6831] = -32 +im[6831] = 0.1613 +ij[6831] = 28.2 +id[6832] = "2501-03-08T14:00:24" +ik[6832] = 3.95 +il[6832] = -77 +im[6832] = 0.0966 +ij[6832] = 11 +id[6833] = "2501-03-26T06:16:45" +ik[6833] = 1.009 +il[6833] = -10 +im[6833] = 0.2116 +ij[6833] = 28.1 +id[6834] = "2501-04-19T14:46:41" +ik[6834] = 81.96 +il[6834] = 90 +im[6834] = 0.1463 +ij[6834] = 7.2105 +id[6835] = "2501-06-21T23:25:09" +ik[6835] = 38.991 +il[6835] = -147 +im[6835] = 0.0574 +ij[6835] = 1 +id[6836] = "2501-06-24T22:32:30" +ik[6836] = 148.28 +il[6836] = -105 +im[6836] = 0.0095 +ij[6836] = 14 +id[6837] = "2501-06-27T20:16:13" +ik[6837] = -1.663 +il[6837] = -43 +im[6837] = 0.0678 +ij[6837] = 4 +id[6838] = "2501-07-08T00:45:15" +ik[6838] = 26.262 +il[6838] = -12 +im[6838] = 0.0051 +ij[6838] = 16 +id[6839] = "2501-09-03T19:09:26" +ik[6839] = 33.618 +il[6839] = -86 +im[6839] = 0.0148 +ij[6839] = 9 +id[6840] = "2501-10-16T16:36:32" +ik[6840] = 3.315 +il[6840] = 10 +im[6840] = 0.0122 +ij[6840] = 27.4 +id[6841] = "2501-10-21T01:26:43" +ik[6841] = 2.456 +il[6841] = -80 +im[6841] = 0.052 +ij[6841] = 28.6 +id[6842] = "2501-10-30T16:43:12" +ik[6842] = 6.412 +il[6842] = 145 +im[6842] = 0.0068 +ij[6842] = 27.1 +id[6843] = "2501-11-20T08:13:43" +ik[6843] = 0 +il[6843] = 115 +im[6843] = 0.0616 +ij[6843] = 17 +id[6844] = "2502-01-14T10:54:40" +ik[6844] = 0.195 +il[6844] = -102 +im[6844] = 0.0352 +ij[6844] = 27.3 +id[6845] = "2502-01-15T22:36:13" +ik[6845] = 0.958 +il[6845] = 95 +im[6845] = 0.0511 +ij[6845] = 28.1 +id[6846] = "2502-03-14T13:21:35" +ik[6846] = -25.918 +il[6846] = 92 +im[6846] = 0.0472 +ij[6846] = 15 +id[6847] = "2502-04-17T21:07:04" +ik[6847] = 0.47 +il[6847] = -39 +im[6847] = 0.0575 +ij[6847] = 12 +id[6848] = "2502-07-06T00:49:58" +ik[6848] = 1.424 +il[6848] = 118 +im[6848] = 0.022 +ij[6848] = 28.1 +id[6849] = "2502-07-13T19:01:30" +ik[6849] = 12 +il[6849] = -80 +im[6849] = 0.0595 +ij[6849] = 18 +id[6850] = "2502-09-21T10:52:47" +ik[6850] = 0.384 +il[6850] = -2 +im[6850] = 0.0633 +ij[6850] = 28.7 +id[6851] = "2502-10-09T06:31:30" +ik[6851] = 0.885 +il[6851] = -125 +im[6851] = 0.0609 +ij[6851] = 28.8 +id[6852] = "2502-11-05T04:48:59" +ik[6852] = 31.225 +il[6852] = 161 +im[6852] = 0.0776 +ij[6852] = 8 +id[6853] = "2502-12-28T06:19:47" +ik[6853] = -1.583 +il[6853] = -69 +im[6853] = 0.0868 +ij[6853] = 2 +id[6854] = "2503-01-06T20:38:06" +ik[6854] = 36.182 +il[6854] = 169 +im[6854] = 0.0061 +ij[6854] = 3 +id[6855] = "2503-03-03T22:32:58" +ik[6855] = 0 +il[6855] = -40 +im[6855] = 0.0196 +ij[6855] = 13 +id[6856] = "2503-03-09T22:24:44" +ik[6856] = 5.035 +il[6856] = 19 +im[6856] = 0.1886 +ij[6856] = 28.2 +id[6857] = "2503-04-12T23:57:44" +ik[6857] = 2.25 +il[6857] = -59 +im[6857] = 0.0151 +ij[6857] = 11 +id[6858] = "2503-05-17T20:50:12" +ik[6858] = 0.266 +il[6858] = 105 +im[6858] = 0.206 +ij[6858] = 28.2 +id[6859] = "2503-05-23T22:51:42" +ik[6859] = 81.01 +il[6859] = 134 +im[6859] = 0.0248 +ij[6859] = 7.1954 +id[6860] = "2503-06-13T11:50:12" +ik[6860] = 25.611 +il[6860] = 139 +im[6860] = 0.1741 +ij[6860] = 16 +id[6861] = "2503-07-24T11:45:30" +ik[6861] = 142.55 +il[6861] = 179 +im[6861] = 0.1241 +ij[6861] = 14 +id[6862] = "2503-08-04T19:30:08" +ik[6862] = 42.218 +il[6862] = 173 +im[6862] = 0.0887 +ij[6862] = 1 +id[6863] = "2503-08-06T17:07:48" +ik[6863] = -1.892 +il[6863] = -133 +im[6863] = 0.1128 +ij[6863] = 4 +id[6864] = "2503-09-24T00:27:04" +ik[6864] = 2.797 +il[6864] = -132 +im[6864] = 0.0648 +ij[6864] = 27.4 +id[6865] = "2503-10-30T23:24:22" +ik[6865] = 0 +il[6865] = -114 +im[6865] = 0.0681 +ij[6865] = 17 +id[6866] = "2503-11-04T11:36:05" +ik[6866] = 35.358 +il[6866] = 108 +im[6866] = 0.0747 +ij[6866] = 9 +id[6867] = "2503-11-07T18:13:15" +ik[6867] = 2.138 +il[6867] = 41 +im[6867] = 0.0288 +ij[6867] = 28.6 +id[6868] = "2503-12-24T18:19:25" +ik[6868] = 0.083 +il[6868] = 142 +im[6868] = 0.0174 +ij[6868] = 27.3 +id[6869] = "2504-01-22T10:14:41" +ik[6869] = 0.494 +il[6869] = -175 +im[6869] = 0.0118 +ij[6869] = 27.5 +id[6870] = "2504-02-22T23:21:34" +ik[6870] = -26.071 +il[6870] = -64 +im[6870] = 0.0441 +ij[6870] = 15 +id[6871] = "2504-04-01T09:48:24" +ik[6871] = 2.281 +il[6871] = 162 +im[6871] = 0.0153 +ij[6871] = 27.6 +id[6872] = "2504-04-01T18:20:37" +ik[6872] = 0.904 +il[6872] = 37 +im[6872] = 0.011 +ij[6872] = 28.2 +id[6873] = "2504-04-04T08:58:45" +ik[6873] = 1.648 +il[6873] = -157 +im[6873] = 0.0241 +ij[6873] = 28.1 +id[6874] = "2504-06-16T04:19:05" +ik[6874] = 0.59 +il[6874] = -112 +im[6874] = 0.027 +ij[6874] = 12 +id[6875] = "2504-06-24T07:47:56" +ik[6875] = 12 +il[6875] = 91 +im[6875] = 0.0439 +ij[6875] = 18 +id[6876] = "2504-09-06T22:17:21" +ik[6876] = 3.839 +il[6876] = -111 +im[6876] = 0.0169 +ij[6876] = 28.1 +id[6877] = "2504-09-14T08:30:21" +ik[6877] = 0.371 +il[6877] = 167 +im[6877] = 0.0601 +ij[6877] = 28.7 +id[6878] = "2504-09-25T21:19:06" +ik[6878] = 0.69 +il[6878] = 86 +im[6878] = 0.0347 +ij[6878] = 28.8 +id[6879] = "2504-11-08T11:47:02" +ik[6879] = 25.325 +il[6879] = -69 +im[6879] = 0.0546 +ij[6879] = 16 +id[6880] = "2504-11-22T11:42:32" +ik[6880] = 4.09 +il[6880] = 67 +im[6880] = 0.0424 +ij[6880] = 28.2 +id[6881] = "2504-12-08T16:41:52" +ik[6881] = 30.618 +il[6881] = 148 +im[6881] = 0.0747 +ij[6881] = 8 +id[6882] = "2505-02-14T05:42:28" +ik[6882] = -1.618 +il[6882] = -119 +im[6882] = 0.0287 +ij[6882] = 2 +id[6883] = "2505-02-16T19:28:07" +ik[6883] = 36.887 +il[6883] = 60 +im[6883] = 0.0857 +ij[6883] = 3 +id[6884] = "2505-03-22T18:57:31" +ik[6884] = 5.342 +il[6884] = 31 +im[6884] = 0.1118 +ij[6884] = 27.4 +id[6885] = "2505-04-19T11:45:59" +ik[6885] = 0 +il[6885] = 41 +im[6885] = 0.1501 +ij[6885] = 13 +id[6886] = "2505-05-24T15:38:12" +ik[6886] = 0.76 +il[6886] = -59 +im[6886] = 0.2555 +ij[6886] = 11 +id[6887] = "2505-06-08T08:49:56" +ik[6887] = 2.117 +il[6887] = -14 +im[6887] = 0.2642 +ij[6887] = 28.2 +id[6888] = "2505-07-02T10:48:35" +ik[6888] = 73.96 +il[6888] = -176 +im[6888] = 0.1416 +ij[6888] = 7.1414 +id[6889] = "2505-08-18T03:41:01" +ik[6889] = 1.529 +il[6889] = 27 +im[6889] = 0.1822 +ij[6889] = 27.4 +id[6890] = "2505-08-23T22:11:25" +ik[6890] = 126.43 +il[6890] = 166 +im[6890] = 0.0297 +ij[6890] = 14 +id[6891] = "2505-09-05T06:05:35" +ik[6891] = -2.213 +il[6891] = 168 +im[6891] = 0.0519 +ij[6891] = 4 +id[6892] = "2505-09-20T06:01:09" +ik[6892] = 45.826 +il[6892] = -43 +im[6892] = 0.0586 +ij[6892] = 1 +id[6893] = "2505-10-05T05:34:03" +ik[6893] = 0 +il[6893] = 111 +im[6893] = 0.0096 +ij[6893] = 17 +id[6894] = "2505-11-20T07:28:46" +ik[6894] = 1.324 +il[6894] = 176 +im[6894] = 0.0442 +ij[6894] = 28.6 +id[6895] = "2505-11-30T04:47:11" +ik[6895] = 0.188 +il[6895] = -46 +im[6895] = 0.0511 +ij[6895] = 27.3 +id[6896] = "2505-12-29T20:38:22" +ik[6896] = 0.524 +il[6896] = 6 +im[6896] = 0.0377 +ij[6896] = 27.5 +id[6897] = "2506-01-14T10:11:12" +ik[6897] = 34.96 +il[6897] = -46 +im[6897] = 0.013 +ij[6897] = 9 +id[6898] = "2506-02-01T03:31:27" +ik[6898] = -26.227 +il[6898] = -134 +im[6898] = 0.033 +ij[6898] = 15 +id[6899] = "2506-02-26T08:28:12" +ik[6899] = 0.549 +il[6899] = 34 +im[6899] = 0.0275 +ij[6899] = 28.2 +id[6900] = "2506-03-11T17:05:42" +ik[6900] = 2.018 +il[6900] = 32 +im[6900] = 0.0323 +ij[6900] = 27.6 +id[6901] = "2506-05-15T08:47:30" +ik[6901] = 3.916 +il[6901] = 55 +im[6901] = 0.0536 +ij[6901] = 27.2 +id[6902] = "2506-05-27T15:01:24" +ik[6902] = 0.33 +il[6902] = 78 +im[6902] = 0.0231 +ij[6902] = 28.2 +id[6903] = "2506-06-05T22:53:20" +ik[6903] = 12 +il[6903] = 53 +im[6903] = 0.0298 +ij[6903] = 18 +id[6904] = "2506-07-30T23:19:32" +ik[6904] = 1.09 +il[6904] = -145 +im[6904] = 0.0484 +ij[6904] = 12 +id[6905] = "2506-10-20T23:33:51" +ik[6905] = 25.561 +il[6905] = 124 +im[6905] = 0.0527 +ij[6905] = 16 +id[6906] = "2506-11-07T22:22:02" +ik[6906] = 0.594 +il[6906] = -42 +im[6906] = 0.0603 +ij[6906] = 28.2 +id[6907] = "2507-01-11T16:02:45" +ik[6907] = 31.018 +il[6907] = -47 +im[6907] = 0.0299 +ij[6907] = 8 +id[6908] = "2507-02-05T15:10:36" +ik[6908] = 4.85 +il[6908] = -156 +im[6908] = 0.034 +ij[6908] = 27.4 +id[6909] = "2507-02-22T06:03:09" +ik[6909] = 4.974 +il[6909] = 139 +im[6909] = 0.0097 +ij[6909] = 27.1 +id[6910] = "2507-03-16T12:08:37" +ik[6910] = 23 +il[6910] = -102 +im[6910] = 0.1168 +ij[6910] = 17 +id[6911] = "2507-04-12T02:24:00" +ik[6911] = 40.073 +il[6911] = -64 +im[6911] = 0.147 +ij[6911] = 3 +id[6912] = "2507-04-30T07:36:17" +ik[6912] = -1.876 +il[6912] = 30 +im[6912] = 0.1134 +ij[6912] = 2 +id[6913] = "2507-06-25T22:11:55" +ik[6913] = 0 +il[6913] = -15 +im[6913] = 0.1683 +ij[6913] = 13 +id[6914] = "2507-07-04T05:40:30" +ik[6914] = 2.545 +il[6914] = -49 +im[6914] = 0.3305 +ij[6914] = 28.2 +id[6915] = "2507-07-25T06:59:58" +ik[6915] = 5.92 +il[6915] = 124 +im[6915] = 0.014 +ij[6915] = 11 +id[6916] = "2507-08-28T00:18:39" +ik[6916] = 63.09 +il[6916] = 14 +im[6916] = 0.3441 +ij[6916] = 7.0993 +id[6917] = "2507-10-09T21:52:23" +ik[6917] = 105.99 +il[6917] = 113 +im[6917] = 0.2092 +ij[6917] = 14 +id[6918] = "2507-10-19T18:11:50" +ik[6918] = -2.356 +il[6918] = -95 +im[6918] = 0.1573 +ij[6918] = 4 +id[6919] = "2507-10-23T04:46:57" +ik[6919] = 1.54 +il[6919] = 140 +im[6919] = 0.2121 +ij[6919] = 27.3 +id[6920] = "2507-11-15T03:59:02" +ik[6920] = 45.012 +il[6920] = 17 +im[6920] = 0.0622 +ij[6920] = 1 +id[6921] = "2507-11-25T03:16:40" +ik[6921] = 0.257 +il[6921] = 125 +im[6921] = 0.1145 +ij[6921] = 28.6 +id[6922] = "2507-11-29T01:55:01" +ik[6922] = 0.903 +il[6922] = -179 +im[6922] = 0.0077 +ij[6922] = 27.5 +id[6923] = "2508-01-07T12:00:21" +ik[6923] = -26.366 +il[6923] = 52 +im[6923] = 0.0595 +ij[6923] = 15 +id[6924] = "2508-02-16T03:17:40" +ik[6924] = 1.679 +il[6924] = -159 +im[6924] = 0.0919 +ij[6924] = 27.6 +id[6925] = "2508-03-10T15:04:58" +ik[6925] = 33.071 +il[6925] = -113 +im[6925] = 0.0401 +ij[6925] = 9 +id[6926] = "2508-04-23T22:55:07" +ik[6926] = 3.619 +il[6926] = -172 +im[6926] = 0.0519 +ij[6926] = 27.2 +id[6927] = "2508-05-17T00:34:10" +ik[6927] = 12 +il[6927] = 20 +im[6927] = 0.0269 +ij[6927] = 18 +id[6928] = "2508-05-26T14:42:23" +ik[6928] = 5.775 +il[6928] = -101 +im[6928] = 0.0638 +ij[6928] = 28.1 +id[6929] = "2508-09-05T20:19:05" +ik[6929] = 1.07 +il[6929] = 83 +im[6929] = 0.0475 +ij[6929] = 12 +id[6930] = "2508-10-02T08:46:45" +ik[6930] = 25.729 +il[6930] = -6 +im[6930] = 0.0534 +ij[6930] = 16 +id[6931] = "2509-01-11T23:20:07" +ik[6931] = 4.494 +il[6931] = 42 +im[6931] = 0.0708 +ij[6931] = 27.4 +id[6932] = "2509-01-26T19:51:05" +ik[6932] = 5.303 +il[6932] = -125 +im[6932] = 0.0665 +ij[6932] = 27.1 +id[6933] = "2509-02-15T14:27:31" +ik[6933] = 0 +il[6933] = 143 +im[6933] = 0.0157 +ij[6933] = 17 +id[6934] = "2509-02-18T10:33:25" +ik[6934] = 32.485 +il[6934] = -131 +im[6934] = 0.0369 +ij[6934] = 8 +id[6935] = "2509-04-21T19:26:31" +ik[6935] = 0.018 +il[6935] = -35 +im[6935] = 0.1139 +ij[6935] = 27.3 +id[6936] = "2509-05-25T01:44:22" +ik[6936] = 1.636 +il[6936] = -173 +im[6936] = 0.0897 +ij[6936] = 27.5 +id[6937] = "2509-06-01T12:52:09" +ik[6937] = 0.377 +il[6937] = 91 +im[6937] = 0.1101 +ij[6937] = 28.6 +id[6938] = "2509-06-22T11:09:01" +ik[6938] = 45.961 +il[6938] = -43 +im[6938] = 0.1218 +ij[6938] = 3 +id[6939] = "2509-07-23T05:59:25" +ik[6939] = -2.368 +il[6939] = -30 +im[6939] = 0.071 +ij[6939] = 2 +id[6940] = "2509-09-08T21:52:54" +ik[6940] = 0 +il[6940] = -164 +im[6940] = 0.316 +ij[6940] = 13 +id[6941] = "2509-10-13T12:21:45" +ik[6941] = 3.35 +il[6941] = -64 +im[6941] = 0.1287 +ij[6941] = 11 +id[6942] = "2509-11-12T00:14:45" +ik[6942] = 64.1 +il[6942] = -114 +im[6942] = 0.0711 +ij[6942] = 7.1212 +id[6943] = "2509-11-22T02:08:43" +ik[6943] = 0.563 +il[6943] = -46 +im[6943] = 0.1114 +ij[6943] = 28.2 +id[6944] = "2509-12-06T06:04:19" +ik[6944] = -25.22 +il[6944] = 31 +im[6944] = 0.1165 +ij[6944] = 15 +id[6945] = "2509-12-27T07:11:32" +ik[6945] = 109.39 +il[6945] = -145 +im[6945] = 0.1732 +ij[6945] = 14 +id[6946] = "2510-01-04T04:51:52" +ik[6946] = -1.948 +il[6946] = -35 +im[6946] = 0.0616 +ij[6946] = 4 +id[6947] = "2510-01-08T23:02:59" +ik[6947] = 1.212 +il[6947] = 97 +im[6947] = 0.0962 +ij[6947] = 27.6 +id[6948] = "2510-01-23T13:19:03" +ik[6948] = 40.181 +il[6948] = 22 +im[6948] = 0.118 +ij[6948] = 1 +id[6949] = "2510-03-31T06:31:42" +ik[6949] = 3.165 +il[6949] = 33 +im[6949] = 0.0231 +ij[6949] = 27.2 +id[6950] = "2510-04-22T11:42:45" +ik[6950] = 31.738 +il[6950] = 166 +im[6950] = 0.0804 +ij[6950] = 9 +id[6951] = "2510-04-26T08:28:20" +ik[6951] = 12 +il[6951] = -111 +im[6951] = 0.0554 +ij[6951] = 18 +id[6952] = "2510-07-28T19:17:01" +ik[6952] = 0.463 +il[6952] = -99 +im[6952] = 0.0483 +ij[6952] = 28.1 +id[6953] = "2510-09-14T23:21:47" +ik[6953] = 25.867 +il[6953] = -54 +im[6953] = 0.0503 +ij[6953] = 16 +id[6954] = "2510-10-12T07:27:32" +ik[6954] = 0.65 +il[6954] = 95 +im[6954] = 0.0544 +ij[6954] = 12 +id[6955] = "2510-12-22T20:38:41" +ik[6955] = 4.226 +il[6955] = 72 +im[6955] = 0.0636 +ij[6955] = 27.4 +id[6956] = "2510-12-25T12:42:27" +ik[6956] = 0.526 +il[6956] = -150 +im[6956] = 0.0528 +ij[6956] = 28.5 +id[6957] = "2511-01-04T06:02:51" +ik[6957] = 4.268 +il[6957] = 42 +im[6957] = 0.055 +ij[6957] = 28.1 +id[6958] = "2511-01-06T02:23:29" +ik[6958] = 5.557 +il[6958] = 114 +im[6958] = 0.0601 +ij[6958] = 27.1 +id[6959] = "2511-01-25T11:38:59" +ik[6959] = 0 +il[6959] = 159 +im[6959] = 0.0371 +ij[6959] = 17 +id[6960] = "2511-03-26T13:15:10" +ik[6960] = 0.236 +il[6960] = -6 +im[6960] = 0.0083 +ij[6960] = 27.3 +id[6961] = "2511-04-12T17:09:25" +ik[6961] = 34.968 +il[6961] = 99 +im[6961] = 0.051 +ij[6961] = 8 +id[6962] = "2511-04-25T12:36:01" +ik[6962] = 0.955 +il[6962] = -71 +im[6962] = 0.014 +ij[6962] = 27.5 +id[6963] = "2511-05-24T13:55:07" +ik[6963] = -24.994 +il[6963] = -172 +im[6963] = 0.022 +ij[6963] = 15 +id[6964] = "2511-06-05T16:23:40" +ik[6964] = 0.607 +il[6964] = -93 +im[6964] = 0.0262 +ij[6964] = 28.6 +id[6965] = "2511-07-07T19:29:54" +ik[6965] = 3.992 +il[6965] = 179 +im[6965] = 0.0465 +ij[6965] = 27.6 +id[6966] = "2511-08-13T12:00:00" +ik[6966] = 46.605 +il[6966] = -76 +im[6966] = 0.1125 +ij[6966] = 3 +id[6967] = "2511-09-07T14:32:20" +ik[6967] = -2.245 +il[6967] = 133 +im[6967] = 0.1497 +ij[6967] = 2 +id[6968] = "2511-09-22T01:13:13" +ik[6968] = 5.75 +il[6968] = 114 +im[6968] = 0.1869 +ij[6968] = 27.2 +id[6969] = "2511-11-03T07:12:02" +ik[6969] = 0 +il[6969] = 78 +im[6969] = 0.2317 +ij[6969] = 13 +id[6970] = "2511-12-11T03:57:46" +ik[6970] = 2.03 +il[6970] = 113 +im[6970] = 0.2531 +ij[6970] = 11 +id[6971] = "2511-12-27T01:18:31" +ik[6971] = 2.99 +il[6971] = 136 +im[6971] = 0.2492 +ij[6971] = 28.1 +id[6972] = "2512-01-15T06:14:38" +ik[6972] = 72.96 +il[6972] = -124 +im[6972] = 0.0536 +ij[6972] = 7.1427 +id[6973] = "2512-02-18T00:23:28" +ik[6973] = 2.066 +il[6973] = -81 +im[6973] = 0.1278 +ij[6973] = 27.2 +id[6974] = "2512-03-08T17:56:47" +ik[6974] = -1.651 +il[6974] = -159 +im[6974] = 0.0874 +ij[6974] = 4 +id[6975] = "2512-03-14T00:27:29" +ik[6975] = 131.72 +il[6975] = 153 +im[6975] = 0.0402 +ij[6975] = 14 +id[6976] = "2512-03-16T21:38:00" +ik[6976] = 37.569 +il[6976] = -137 +im[6976] = 0.0943 +ij[6976] = 1 +id[6977] = "2512-03-29T18:29:27" +ik[6977] = 12 +il[6977] = 31 +im[6977] = 0.0845 +ij[6977] = 18 +id[6978] = "2512-05-29T00:42:18" +ik[6978] = 31.282 +il[6978] = 148 +im[6978] = 0.0797 +ij[6978] = 9 +id[6979] = "2512-07-13T00:42:09" +ik[6979] = 0.283 +il[6979] = -143 +im[6979] = 0.0557 +ij[6979] = 28.2 +id[6980] = "2512-08-11T18:15:11" +ik[6980] = 0.111 +il[6980] = -120 +im[6980] = 0.0447 +ij[6980] = 28.8 +id[6981] = "2512-08-23T04:57:19" +ik[6981] = 0.043 +il[6981] = -171 +im[6981] = 0.0624 +ij[6981] = 28.7 +id[6982] = "2512-08-27T06:38:31" +ik[6982] = 25.993 +il[6982] = -157 +im[6982] = 0.0411 +ij[6982] = 16 +id[6983] = "2512-11-20T05:38:13" +ik[6983] = 0.08 +il[6983] = -24 +im[6983] = 0.0505 +ij[6983] = 12 +id[6984] = "2513-01-05T07:23:47" +ik[6984] = 0 +il[6984] = -135 +im[6984] = 0.022 +ij[6984] = 17 +id[6985] = "2513-03-04T01:31:51" +ik[6985] = 0.276 +il[6985] = 146 +im[6985] = 0.0309 +ij[6985] = 27.3 +id[6986] = "2513-03-05T07:26:05" +ik[6986] = 0.118 +il[6986] = 68 +im[6986] = 0.015 +ij[6986] = 28.5 +id[6987] = "2513-03-25T22:55:09" +ik[6987] = 4.533 +il[6987] = 40 +im[6987] = 0.068 +ij[6987] = 28.1 +id[6988] = "2513-03-31T23:33:00" +ik[6988] = 0.689 +il[6988] = 88 +im[6988] = 0.0483 +ij[6988] = 28.2 +id[6989] = "2513-04-02T02:05:40" +ik[6989] = 0.729 +il[6989] = 61 +im[6989] = 0.0351 +ij[6989] = 27.5 +id[6990] = "2513-05-01T14:34:55" +ik[6990] = -25.43 +il[6990] = 158 +im[6990] = 0.0323 +ij[6990] = 15 +id[6991] = "2513-06-11T09:51:39" +ik[6991] = 3.278 +il[6991] = -94 +im[6991] = 0.0566 +ij[6991] = 27.6 +id[6992] = "2513-06-14T03:30:14" +ik[6992] = 1.213 +il[6992] = 28 +im[6992] = 0.018 +ij[6992] = 28.6 +id[6993] = "2513-06-30T11:28:31" +ik[6993] = 36.155 +il[6993] = 69 +im[6993] = 0.0073 +ij[6993] = 8 +id[6994] = "2513-08-14T21:28:02" +ik[6994] = 5.14 +il[6994] = 5 +im[6994] = 0.0546 +ij[6994] = 27.2 +id[6995] = "2513-09-03T06:06:48" +ik[6995] = 11 +il[6995] = 65 +im[6995] = 0.1007 +ij[6995] = 18 +id[6996] = "2513-09-29T06:26:55" +ik[6996] = 42.117 +il[6996] = -46 +im[6996] = 0.1051 +ij[6996] = 3 +id[6997] = "2513-10-08T16:30:34" +ik[6997] = -1.938 +il[6997] = -105 +im[6997] = 0.0064 +ij[6997] = 2 +id[6998] = "2513-12-12T00:27:57" +ik[6998] = 0 +il[6998] = 40 +im[6998] = 0.1825 +ij[6998] = 13 +id[6999] = "2513-12-27T01:00:31" +ik[6999] = 1.12 +il[6999] = 177 +im[6999] = 0.1686 +ij[6999] = 28.2 +id[7000] = "2514-01-20T11:25:46" +ik[7000] = 4.12 +il[7000] = -125 +im[7000] = 0.2271 +ij[7000] = 11 +id[7001] = "2514-03-01T23:30:33" +ik[7001] = 79.96 +il[7001] = -124 +im[7001] = 0.1795 +ij[7001] = 7.1743 +id[7002] = "2514-04-27T12:34:08" +ik[7002] = -1.556 +il[7002] = -144 +im[7002] = 0.103 +ij[7002] = 4 +id[7003] = "2514-04-28T10:37:55" +ik[7003] = 37.044 +il[7003] = -106 +im[7003] = 0.0928 +ij[7003] = 1 +id[7004] = "2514-05-06T15:22:21" +ik[7004] = 145.62 +il[7004] = -99 +im[7004] = 0.0778 +ij[7004] = 14 +id[7005] = "2514-07-05T09:36:04" +ik[7005] = 31.68 +il[7005] = -159 +im[7005] = 0.078 +ij[7005] = 9 +id[7006] = "2514-07-30T10:15:39" +ik[7006] = 0.36 +il[7006] = 72 +im[7006] = 0.0504 +ij[7006] = 28.8 +id[7007] = "2514-08-08T14:34:21" +ik[7007] = 26.118 +il[7007] = 96 +im[7007] = 0.0342 +ij[7007] = 16 +id[7008] = "2514-08-16T21:52:58" +ik[7008] = 0.256 +il[7008] = 67 +im[7008] = 0.0617 +ij[7008] = 28.7 +id[7009] = "2514-10-01T11:29:52" +ik[7009] = 2.794 +il[7009] = -55 +im[7009] = 0.0617 +ij[7009] = 28.1 +id[7010] = "2514-12-17T16:20:13" +ik[7010] = 0 +il[7010] = -84 +im[7010] = 0.0049 +ij[7010] = 17 +id[7011] = "2515-01-09T23:56:00" +ik[7011] = 0.9 +il[7011] = 38 +im[7011] = 0.0573 +ij[7011] = 12 +id[7012] = "2515-03-23T21:19:44" +ik[7012] = 1.474 +il[7012] = -128 +im[7012] = 0.0635 +ij[7012] = 28.1 +id[7013] = "2515-04-11T13:40:45" +ik[7013] = -25.677 +il[7013] = 168 +im[7013] = 0.0265 +ij[7013] = 15 +id[7014] = "2515-05-02T10:23:19" +ik[7014] = 0.398 +il[7014] = 65 +im[7014] = 0.0567 +ij[7014] = 28.5 +id[7015] = "2515-05-21T01:47:24" +ik[7015] = 2.894 +il[7015] = 17 +im[7015] = 0.064 +ij[7015] = 27.6 +id[7016] = "2515-06-25T16:24:48" +ik[7016] = 1.476 +il[7016] = 147 +im[7016] = 0.0159 +ij[7016] = 28.6 +id[7017] = "2515-07-22T20:48:44" +ik[7017] = 4.754 +il[7017] = -12 +im[7017] = 0.0092 +ij[7017] = 27.2 +id[7018] = "2515-08-11T01:11:32" +ik[7018] = 12 +il[7018] = 110 +im[7018] = 0.0498 +ij[7018] = 18 +id[7019] = "2515-09-07T01:07:11" +ik[7019] = 33.828 +il[7019] = 14 +im[7019] = 0.0268 +ij[7019] = 8 +id[7020] = "2515-11-09T06:29:42" +ik[7020] = -1.719 +il[7020] = -174 +im[7020] = 0.0969 +ij[7020] = 2 +id[7021] = "2515-11-13T16:35:02" +ik[7021] = 38.318 +il[7021] = 77 +im[7021] = 0.0321 +ij[7021] = 3 +id[7022] = "2516-01-14T15:22:50" +ik[7022] = 0 +il[7022] = -26 +im[7022] = 0.1487 +ij[7022] = 13 +id[7023] = "2516-02-24T10:25:20" +ik[7023] = 4.26 +il[7023] = 61 +im[7023] = 0.1916 +ij[7023] = 11 +id[7024] = "2516-04-01T11:52:53" +ik[7024] = 2.16 +il[7024] = 175 +im[7024] = 0.0833 +ij[7024] = 28.2 +id[7025] = "2516-04-05T20:31:27" +ik[7025] = 82.21 +il[7025] = 87 +im[7025] = 0.1787 +ij[7025] = 7.2045 +id[7026] = "2516-06-06T03:34:59" +ik[7026] = 38.138 +il[7026] = -150 +im[7026] = 0.0658 +ij[7026] = 1 +id[7027] = "2516-06-10T14:39:29" +ik[7027] = -1.607 +il[7027] = 87 +im[7027] = 0.0385 +ij[7027] = 4 +id[7028] = "2516-06-12T12:43:18" +ik[7028] = 149.89 +il[7028] = 135 +im[7028] = 0.0742 +ij[7028] = 14 +id[7029] = "2516-07-13T23:25:35" +ik[7029] = 0.638 +il[7029] = -81 +im[7029] = 0.0855 +ij[7029] = 28.8 +id[7030] = "2516-07-17T13:45:17" +ik[7030] = 26.237 +il[7030] = 99 +im[7030] = 0.0565 +ij[7030] = 16 +id[7031] = "2516-08-07T15:38:31" +ik[7031] = 0.549 +il[7031] = -85 +im[7031] = 0.051 +ij[7031] = 28.7 +id[7032] = "2516-08-15T13:44:04" +ik[7032] = 32.924 +il[7032] = 21 +im[7032] = 0.0472 +ij[7032] = 9 +id[7033] = "2516-10-24T16:19:55" +ik[7033] = 3.455 +il[7033] = -56 +im[7033] = 0.0603 +ij[7033] = 27.4 +id[7034] = "2516-11-07T14:14:59" +ik[7034] = 6.282 +il[7034] = 111 +im[7034] = 0.0634 +ij[7034] = 27.1 +id[7035] = "2516-11-27T21:28:59" +ik[7035] = 0 +il[7035] = -157 +im[7035] = 0.0103 +ij[7035] = 17 +id[7036] = "2516-12-17T16:25:04" +ik[7036] = 0.618 +il[7036] = 111 +im[7036] = 0.056 +ij[7036] = 28.1 +id[7037] = "2517-03-20T02:28:00" +ik[7037] = 0.87 +il[7037] = 167 +im[7037] = 0.0412 +ij[7037] = 12 +id[7038] = "2517-03-22T03:54:41" +ik[7038] = -25.857 +il[7038] = -56 +im[7038] = 0.0178 +ij[7038] = 15 +id[7039] = "2517-06-08T08:23:57" +ik[7039] = 1.524 +il[7039] = -54 +im[7039] = 0.0476 +ij[7039] = 28.1 +id[7040] = "2517-07-01T13:56:20" +ik[7040] = 4.48 +il[7040] = 90 +im[7040] = 0.0257 +ij[7040] = 27.2 +id[7041] = "2517-07-02T11:20:59" +ik[7041] = 0.515 +il[7041] = 138 +im[7041] = 0.0137 +ij[7041] = 28.5 +id[7042] = "2517-07-07T18:49:25" +ik[7042] = 1.405 +il[7042] = 77 +im[7042] = 0.0536 +ij[7042] = 28.6 +id[7043] = "2517-07-21T05:21:27" +ik[7043] = 12 +il[7043] = 50 +im[7043] = 0.0428 +ij[7043] = 18 +id[7044] = "2517-09-19T21:44:41" +ik[7044] = 2.472 +il[7044] = 33 +im[7044] = 0.0675 +ij[7044] = 28.2 +id[7045] = "2517-10-21T12:55:11" +ik[7045] = 31.747 +il[7045] = 111 +im[7045] = 0.0623 +ij[7045] = 8 +id[7046] = "2517-12-12T23:39:03" +ik[7046] = -1.602 +il[7046] = 97 +im[7046] = 0.0821 +ij[7046] = 2 +id[7047] = "2517-12-18T05:38:16" +ik[7047] = 0.901 +il[7047] = 58 +im[7047] = 0.0685 +ij[7047] = 28.8 +id[7048] = "2517-12-22T15:46:56" +ik[7048] = 36.425 +il[7048] = -51 +im[7048] = 0.0275 +ij[7048] = 3 +id[7049] = "2518-01-31T11:28:03" +ik[7049] = 2.184 +il[7049] = 38 +im[7049] = 0.0701 +ij[7049] = 28.7 +id[7050] = "2518-02-17T12:43:46" +ik[7050] = 0 +il[7050] = -177 +im[7050] = 0.0828 +ij[7050] = 13 +id[7051] = "2518-02-25T05:54:32" +ik[7051] = 2.624 +il[7051] = 0 +im[7051] = 0.1679 +ij[7051] = 28.7 +id[7052] = "2518-03-29T18:32:27" +ik[7052] = 3.07 +il[7052] = 100 +im[7052] = 0.061 +ij[7052] = 11 +id[7053] = "2518-04-15T20:39:37" +ik[7053] = 2.165 +il[7053] = 22 +im[7053] = 0.2187 +ij[7053] = 28.1 +id[7054] = "2518-05-10T12:47:22" +ik[7054] = 82 +il[7054] = 8 +im[7054] = 0.1352 +ij[7054] = 7.2071 +id[7055] = "2518-06-15T03:24:47" +ik[7055] = 0.759 +il[7055] = 134 +im[7055] = 0.0967 +ij[7055] = 28.8 +id[7056] = "2518-06-20T18:27:11" +ik[7056] = 26.16 +il[7056] = -37 +im[7056] = 0.0639 +ij[7056] = 16 +id[7057] = "2518-07-13T05:16:14" +ik[7057] = 145.69 +il[7057] = 19 +im[7057] = 0.0841 +ij[7057] = 14 +id[7058] = "2518-07-18T03:21:01" +ik[7058] = 40.789 +il[7058] = 95 +im[7058] = 0.033 +ij[7058] = 1 +id[7059] = "2518-07-23T14:00:24" +ik[7059] = -1.788 +il[7059] = -12 +im[7059] = 0.1041 +ij[7059] = 4 +id[7060] = "2518-07-25T10:37:01" +ik[7060] = 0.984 +il[7060] = 57 +im[7060] = 0.0902 +ij[7060] = 28.7 +id[7061] = "2518-10-03T11:11:29" +ik[7061] = 3.037 +il[7061] = 11 +im[7061] = 0.0886 +ij[7061] = 27.4 +id[7062] = "2518-10-09T01:27:37" +ik[7062] = 34.773 +il[7062] = -148 +im[7062] = 0.0289 +ij[7062] = 9 +id[7063] = "2518-11-08T05:15:39" +ik[7063] = 0 +il[7063] = 90 +im[7063] = 0.0085 +ij[7063] = 17 +id[7064] = "2518-11-26T20:34:24" +ik[7064] = 1.216 +il[7064] = 44 +im[7064] = 0.0606 +ij[7064] = 28.2 +id[7065] = "2519-01-01T23:58:26" +ik[7065] = 0.139 +il[7065] = -11 +im[7065] = 0.0458 +ij[7065] = 27.3 +id[7066] = "2519-01-30T14:09:07" +ik[7066] = 0.5 +il[7066] = 57 +im[7066] = 0.0478 +ij[7066] = 27.5 +id[7067] = "2519-03-02T16:21:03" +ik[7067] = 2.013 +il[7067] = -31 +im[7067] = 0.0189 +ij[7067] = 28.1 +id[7068] = "2519-03-02T17:35:35" +ik[7068] = -26.013 +il[7068] = -49 +im[7068] = 0.0181 +ij[7068] = 15 +id[7069] = "2519-03-14T18:01:54" +ik[7069] = 1.282 +il[7069] = 73 +im[7069] = 0.0503 +ij[7069] = 28.2 +id[7070] = "2519-05-27T01:52:27" +ik[7070] = 0.23 +il[7070] = -51 +im[7070] = 0.0332 +ij[7070] = 12 +id[7071] = "2519-07-02T12:56:49" +ik[7071] = 12 +il[7071] = -61 +im[7071] = 0.0515 +ij[7071] = 18 +id[7072] = "2519-08-11T06:18:43" +ik[7072] = 1.637 +il[7072] = 74 +im[7072] = 0.01 +ij[7072] = 28.1 +id[7073] = "2519-09-09T18:55:24" +ik[7073] = 1.064 +il[7073] = 170 +im[7073] = 0.0212 +ij[7073] = 28.2 +id[7074] = "2519-09-20T07:27:38" +ik[7074] = 0.075 +il[7074] = 84 +im[7074] = 0.022 +ij[7074] = 28.5 +id[7075] = "2519-11-17T05:54:00" +ik[7075] = 25.197 +il[7075] = -52 +im[7075] = 0.0197 +ij[7075] = 16 +id[7076] = "2519-11-26T15:00:04" +ik[7076] = 30.735 +il[7076] = -98 +im[7076] = 0.0751 +ij[7076] = 8 +id[7077] = "2519-11-28T00:58:21" +ik[7077] = 0.225 +il[7077] = 126 +im[7077] = 0.0683 +ij[7077] = 28.8 +id[7078] = "2519-12-31T05:29:32" +ik[7078] = 1.027 +il[7078] = 18 +im[7078] = 0.004 +ij[7078] = 28.7 +id[7079] = "2520-01-24T22:56:24" +ik[7079] = -1.588 +il[7079] = -6 +im[7079] = 0.0762 +ij[7079] = 2 +id[7080] = "2520-01-31T16:31:00" +ik[7080] = 36.367 +il[7080] = 155 +im[7080] = 0.0762 +ij[7080] = 3 +id[7081] = "2520-03-30T05:16:42" +ik[7081] = 0 +il[7081] = 157 +im[7081] = 0.1982 +ij[7081] = 13 +id[7082] = "2520-04-17T22:53:49" +ik[7082] = 1.013 +il[7082] = 68 +im[7082] = 0.1364 +ij[7082] = 28.2 +id[7083] = "2520-05-06T15:28:27" +ik[7083] = 0.42 +il[7083] = -10 +im[7083] = 0.1293 +ij[7083] = 11 +id[7084] = "2520-06-15T06:22:26" +ik[7084] = 77.05 +il[7084] = -65 +im[7084] = 0.1038 +ij[7084] = 7.165 +id[7085] = "2520-06-18T07:41:00" +ik[7085] = 6.281 +il[7085] = -54 +im[7085] = 0.2049 +ij[7085] = 28.7 +id[7086] = "2520-08-10T23:02:13" +ik[7086] = 133.74 +il[7086] = -122 +im[7086] = 0.0992 +ij[7086] = 14 +id[7087] = "2520-08-24T12:40:25" +ik[7087] = -2.083 +il[7087] = 166 +im[7087] = 0.0564 +ij[7087] = 4 +id[7088] = "2520-09-01T15:21:53" +ik[7088] = 44.583 +il[7088] = -155 +im[7088] = 0.0952 +ij[7088] = 1 +id[7089] = "2520-09-05T02:22:57" +ik[7089] = 2.213 +il[7089] = 74 +im[7089] = 0.0153 +ij[7089] = 27.4 +id[7090] = "2520-10-15T22:31:09" +ik[7090] = 0 +il[7090] = 172 +im[7090] = 0.0707 +ij[7090] = 17 +id[7091] = "2520-12-10T01:19:09" +ik[7091] = 0.044 +il[7091] = -47 +im[7091] = 0.0886 +ij[7091] = 27.3 +id[7092] = "2520-12-18T06:04:04" +ik[7092] = 35.471 +il[7092] = -38 +im[7092] = 0.0382 +ij[7092] = 9 +id[7093] = "2521-01-08T03:37:46" +ik[7093] = 0.497 +il[7093] = -156 +im[7093] = 0.0799 +ij[7093] = 27.5 +id[7094] = "2521-02-09T13:30:25" +ik[7094] = -26.167 +il[7094] = 11 +im[7094] = 0.0374 +ij[7094] = 15 +id[7095] = "2521-03-20T00:24:55" +ik[7095] = 2.125 +il[7095] = -143 +im[7095] = 0.0662 +ij[7095] = 27.6 +id[7096] = "2521-05-09T20:36:27" +ik[7096] = 1.283 +il[7096] = 48 +im[7096] = 0.0082 +ij[7096] = 28.1 +id[7097] = "2521-06-13T04:08:00" +ik[7097] = 12 +il[7097] = -101 +im[7097] = 0.0577 +ij[7097] = 18 +id[7098] = "2521-07-14T18:15:34" +ik[7098] = 0.96 +il[7098] = -12 +im[7098] = 0.0553 +ij[7098] = 12 +id[7099] = "2521-10-28T01:53:50" +ik[7099] = 25.481 +il[7099] = 15 +im[7099] = 0.0072 +ij[7099] = 16 +id[7100] = "2521-11-13T07:58:57" +ik[7100] = 0.177 +il[7100] = 80 +im[7100] = 0.0081 +ij[7100] = 28.8 +id[7101] = "2521-12-18T23:42:33" +ik[7101] = 0.578 +il[7101] = -173 +im[7101] = 0.0672 +ij[7101] = 28.7 +id[7102] = "2521-12-24T23:32:17" +ik[7102] = 0.069 +il[7102] = -113 +im[7102] = 0.0055 +ij[7102] = 28.5 +id[7103] = "2521-12-29T05:34:17" +ik[7103] = 30.74 +il[7103] = -163 +im[7103] = 0.0612 +ij[7103] = 8 +id[7104] = "2522-02-17T12:54:29" +ik[7104] = 5.035 +il[7104] = -153 +im[7104] = 0.0548 +ij[7104] = 27.4 +id[7105] = "2522-03-08T04:01:22" +ik[7105] = 4.825 +il[7105] = 158 +im[7105] = 0.0349 +ij[7105] = 27.1 +id[7106] = "2522-03-19T13:36:54" +ik[7106] = 38.453 +il[7106] = 122 +im[7106] = 0.0337 +ij[7106] = 3 +id[7107] = "2522-03-28T02:51:06" +ik[7107] = -1.732 +il[7107] = 4 +im[7107] = 0.139 +ij[7107] = 2 +id[7108] = "2522-04-04T15:48:44" +ik[7108] = 23 +il[7108] = -119 +im[7108] = 0.0222 +ij[7108] = 17 +id[7109] = "2522-05-27T23:02:42" +ik[7109] = 0 +il[7109] = -83 +im[7109] = 0.0984 +ij[7109] = 13 +id[7110] = "2522-06-23T17:40:03" +ik[7110] = 0 +il[7110] = -128 +im[7110] = 0.1484 +ij[7110] = 18 +id[7111] = "2522-06-27T21:00:01" +ik[7111] = 3.92 +il[7111] = -131 +im[7111] = 0.1777 +ij[7111] = 11 +id[7112] = "2522-08-02T22:05:18" +ik[7112] = 66.96 +il[7112] = 11 +im[7112] = 0.1211 +ij[7112] = 7.1093 +id[7113] = "2522-08-07T14:47:03" +ik[7113] = 4.775 +il[7113] = 167 +im[7113] = 0.1704 +ij[7113] = 28.2 +id[7114] = "2522-09-09T06:09:27" +ik[7114] = 0 +il[7114] = -103 +im[7114] = 0.225 +ij[7114] = 17 +id[7115] = "2522-09-18T05:41:03" +ik[7115] = 113.28 +il[7115] = -7 +im[7115] = 0.1028 +ij[7115] = 14 +id[7116] = "2522-09-28T10:37:46" +ik[7116] = -2.364 +il[7116] = 19 +im[7116] = 0.0597 +ij[7116] = 4 +id[7117] = "2522-10-21T15:20:52" +ik[7117] = 46.212 +il[7117] = 177 +im[7117] = 0.1616 +ij[7117] = 1 +id[7118] = "2522-11-11T09:21:51" +ik[7118] = 0.651 +il[7118] = 110 +im[7118] = 0.0147 +ij[7118] = 27.3 +id[7119] = "2522-12-13T05:25:22" +ik[7119] = 0.646 +il[7119] = 121 +im[7119] = 0.0672 +ij[7119] = 27.5 +id[7120] = "2523-01-17T23:19:21" +ik[7120] = -26.323 +il[7120] = -162 +im[7120] = 0.0932 +ij[7120] = 15 +id[7121] = "2523-02-19T21:09:50" +ik[7121] = 33.801 +il[7121] = -175 +im[7121] = 0.0326 +ij[7121] = 9 +id[7122] = "2523-02-25T23:50:53" +ik[7122] = 1.824 +il[7122] = -157 +im[7122] = 0.0629 +ij[7122] = 27.6 +id[7123] = "2523-05-03T04:23:53" +ik[7123] = 3.746 +il[7123] = 41 +im[7123] = 0.0103 +ij[7123] = 27.2 +id[7124] = "2523-05-25T13:45:47" +ik[7124] = 12 +il[7124] = 119 +im[7124] = 0.0592 +ij[7124] = 18 +id[7125] = "2523-06-16T11:05:36" +ik[7125] = 0.346 +il[7125] = 8 +im[7125] = 0.0025 +ij[7125] = 28.2 +id[7126] = "2523-08-23T13:18:41" +ik[7126] = 1.13 +il[7126] = -91 +im[7126] = 0.0385 +ij[7126] = 12 +id[7127] = "2523-10-10T05:28:47" +ik[7127] = 25.67 +il[7127] = -30 +im[7127] = 0.0137 +ij[7127] = 16 +id[7128] = "2523-11-01T16:39:34" +ik[7128] = 0.497 +il[7128] = 18 +im[7128] = 0.0535 +ij[7128] = 28.8 +id[7129] = "2523-12-11T06:48:10" +ik[7129] = 0.266 +il[7129] = -164 +im[7129] = 0.0632 +ij[7129] = 28.7 +id[7130] = "2524-01-21T14:14:59" +ik[7130] = 4.617 +il[7130] = 117 +im[7130] = 0.0476 +ij[7130] = 27.4 +id[7131] = "2524-01-24T20:56:04" +ik[7131] = 5.383 +il[7131] = 48 +im[7131] = 0.0709 +ij[7131] = 28.2 +id[7132] = "2524-02-03T08:17:23" +ik[7132] = 31.776 +il[7132] = -33 +im[7132] = 0.0426 +ij[7132] = 8 +id[7133] = "2524-02-05T19:40:14" +ik[7133] = 5.188 +il[7133] = -180 +im[7133] = 0.0725 +ij[7133] = 27.1 +id[7134] = "2524-02-26T03:20:56" +ik[7134] = 23 +il[7134] = -103 +im[7134] = 0.0564 +ij[7134] = 17 +id[7135] = "2524-03-21T14:59:01" +ik[7135] = 0.154 +il[7135] = -46 +im[7135] = 0.0933 +ij[7135] = 28.5 +id[7136] = "2524-05-06T04:17:28" +ik[7136] = 0.271 +il[7136] = -175 +im[7136] = 0.1388 +ij[7136] = 27.3 +id[7137] = "2524-05-25T04:34:53" +ik[7137] = 43.618 +il[7137] = 3 +im[7137] = 0.019 +ij[7137] = 3 +id[7138] = "2524-06-14T02:22:55" +ik[7138] = 2.566 +il[7138] = -136 +im[7138] = 0.1676 +ij[7138] = 27.5 +id[7139] = "2524-06-23T23:57:48" +ik[7139] = -2.21 +il[7139] = -6 +im[7139] = 0.0327 +ij[7139] = 2 +id[7140] = "2524-08-12T05:41:34" +ik[7140] = 0 +il[7140] = 21 +im[7140] = 0.3315 +ij[7140] = 13 +id[7141] = "2524-09-12T18:09:21" +ik[7141] = 5.9 +il[7141] = 130 +im[7141] = 0.1003 +ij[7141] = 11 +id[7142] = "2524-10-12T11:52:19" +ik[7142] = 61.26 +il[7142] = -12 +im[7142] = 0.1233 +ij[7142] = 7.1097 +id[7143] = "2524-11-23T14:45:05" +ik[7143] = 103.38 +il[7143] = -6 +im[7143] = 0.0742 +ij[7143] = 14 +id[7144] = "2524-12-03T22:28:54" +ik[7144] = -2.13 +il[7144] = -22 +im[7144] = 0.0687 +ij[7144] = 4 +id[7145] = "2524-12-17T00:08:16" +ik[7145] = -26.251 +il[7145] = 78 +im[7145] = 0.1154 +ij[7145] = 15 +id[7146] = "2524-12-28T09:11:57" +ik[7146] = 41.942 +il[7146] = 51 +im[7146] = 0.1416 +ij[7146] = 1 +id[7147] = "2525-01-27T08:29:34" +ik[7147] = 1.396 +il[7147] = -13 +im[7147] = 0.0992 +ij[7147] = 27.6 +id[7148] = "2525-04-06T19:22:17" +ik[7148] = 32.157 +il[7148] = 120 +im[7148] = 0.0747 +ij[7148] = 9 +id[7149] = "2525-04-10T05:26:30" +ik[7149] = 3.373 +il[7149] = 0 +im[7149] = 0.0501 +ij[7149] = 27.2 +id[7150] = "2525-05-04T18:55:43" +ik[7150] = 12 +il[7150] = 34 +im[7150] = 0.0654 +ij[7150] = 18 +id[7151] = "2525-05-16T03:01:51" +ik[7151] = 0.981 +il[7151] = 15 +im[7151] = 0.0547 +ij[7151] = 28.2 +id[7152] = "2525-07-08T18:42:22" +ik[7152] = 0.946 +il[7152] = -63 +im[7152] = 0.0063 +ij[7152] = 28.1 +id[7153] = "2525-09-21T19:21:44" +ik[7153] = 25.816 +il[7153] = -67 +im[7153] = 0.0341 +ij[7153] = 16 +id[7154] = "2525-09-28T00:21:48" +ik[7154] = 0.86 +il[7154] = -82 +im[7154] = 0.0458 +ij[7154] = 12 +id[7155] = "2525-12-03T21:16:49" +ik[7155] = 0.01 +il[7155] = 93 +im[7155] = 0.0486 +ij[7155] = 28.7 +id[7156] = "2525-12-04T12:58:59" +ik[7156] = 2.549 +il[7156] = -136 +im[7156] = 0.0531 +ij[7156] = 28.1 +id[7157] = "2525-12-30T13:17:29" +ik[7157] = 4.324 +il[7157] = 113 +im[7157] = 0.0293 +ij[7157] = 27.4 +id[7158] = "2526-01-10T13:56:27" +ik[7158] = 2.056 +il[7158] = -149 +im[7158] = 0.0181 +ij[7158] = 28.2 +id[7159] = "2526-01-13T23:33:03" +ik[7159] = 5.465 +il[7159] = 91 +im[7159] = 0.0325 +ij[7159] = 27.1 +id[7160] = "2526-02-02T10:42:35" +ik[7160] = 0 +il[7160] = 116 +im[7160] = 0.069 +ij[7160] = 17 +id[7161] = "2526-03-20T05:09:50" +ik[7161] = 33.916 +il[7161] = -88 +im[7161] = 0.0735 +ij[7161] = 8 +id[7162] = "2526-04-04T22:55:05" +ik[7162] = 0.188 +il[7162] = 155 +im[7162] = 0.0542 +ij[7162] = 27.3 +id[7163] = "2526-05-05T15:55:43" +ik[7163] = 1.121 +il[7163] = -169 +im[7163] = 0.0241 +ij[7163] = 27.5 +id[7164] = "2526-05-21T17:56:40" +ik[7164] = 0.416 +il[7164] = -45 +im[7164] = 0.0145 +ij[7164] = 28.5 +id[7165] = "2526-06-03T10:45:11" +ik[7165] = -24.686 +il[7165] = -176 +im[7165] = 0.0285 +ij[7165] = 15 +id[7166] = "2526-07-21T06:15:28" +ik[7166] = 4.542 +il[7166] = -6 +im[7166] = 0.0741 +ij[7166] = 27.6 +id[7167] = "2526-07-26T13:48:51" +ik[7167] = 47.382 +il[7167] = -67 +im[7167] = 0.1411 +ij[7167] = 3 +id[7168] = "2526-08-23T19:43:36" +ik[7168] = -2.352 +il[7168] = 120 +im[7168] = 0.1744 +ij[7168] = 2 +id[7169] = "2526-10-15T14:45:36" +ik[7169] = 0 +il[7169] = -7 +im[7169] = 0.2322 +ij[7169] = 13 +id[7170] = "2526-10-23T21:35:59" +ik[7170] = 1.631 +il[7170] = -28 +im[7170] = 0.0557 +ij[7170] = 28.2 +id[7171] = "2526-11-21T06:44:01" +ik[7171] = 0.31 +il[7171] = 91 +im[7171] = 0.0671 +ij[7171] = 11 +id[7172] = "2526-12-23T17:54:27" +ik[7172] = 69.13 +il[7172] = 62 +im[7172] = 0.2474 +ij[7172] = 7.1334 +id[7173] = "2527-02-15T02:44:03" +ik[7173] = -1.739 +il[7173] = 74 +im[7173] = 0.1147 +ij[7173] = 4 +id[7174] = "2527-02-15T13:59:18" +ik[7174] = 122.97 +il[7174] = -91 +im[7174] = 0.1216 +ij[7174] = 14 +id[7175] = "2527-02-27T00:33:50" +ik[7175] = 38.298 +il[7175] = -142 +im[7175] = 0.0412 +ij[7175] = 1 +id[7176] = "2527-03-11T16:11:24" +ik[7176] = 2.672 +il[7176] = 103 +im[7176] = 0.0183 +ij[7176] = 27.2 +id[7177] = "2527-04-11T12:36:56" +ik[7177] = 12 +il[7177] = 87 +im[7177] = 0.0529 +ij[7177] = 18 +id[7178] = "2527-05-15T17:07:36" +ik[7178] = 31.357 +il[7178] = -18 +im[7178] = 0.0736 +ij[7178] = 9 +id[7179] = "2527-09-04T06:44:39" +ik[7179] = 25.946 +il[7179] = 134 +im[7179] = 0.0498 +ij[7179] = 16 +id[7180] = "2527-11-04T22:06:42" +ik[7180] = 0.22 +il[7180] = 151 +im[7180] = 0.0472 +ij[7180] = 12 +id[7181] = "2528-01-13T17:21:14" +ik[7181] = 0 +il[7181] = 7 +im[7181] = 0.0648 +ij[7181] = 17 +id[7182] = "2528-02-21T11:51:58" +ik[7182] = 4.83 +il[7182] = 103 +im[7182] = 0.0329 +ij[7182] = 28.1 +id[7183] = "2528-03-12T05:59:48" +ik[7183] = 0.269 +il[7183] = 14 +im[7183] = 0.0722 +ij[7183] = 27.3 +id[7184] = "2528-04-10T13:22:23" +ik[7184] = 0.798 +il[7184] = -172 +im[7184] = 0.0759 +ij[7184] = 27.5 +id[7185] = "2528-05-09T22:03:03" +ik[7185] = -25.295 +il[7185] = -20 +im[7185] = 0.0791 +ij[7185] = 15 +id[7186] = "2528-05-28T03:33:50" +ik[7186] = 36.206 +il[7186] = 73 +im[7186] = 0.0431 +ij[7186] = 8 +id[7187] = "2528-06-20T14:49:15" +ik[7187] = 3.494 +il[7187] = 133 +im[7187] = 0.0945 +ij[7187] = 27.6 +id[7188] = "2528-07-14T20:56:18" +ik[7188] = 0.159 +il[7188] = -81 +im[7188] = 0.0519 +ij[7188] = 28.5 +id[7189] = "2528-08-25T22:51:56" +ik[7189] = 5.353 +il[7189] = -56 +im[7189] = 0.0143 +ij[7189] = 27.2 +id[7190] = "2528-09-10T05:08:52" +ik[7190] = 43.998 +il[7190] = -1 +im[7190] = 0.0639 +ij[7190] = 3 +id[7191] = "2528-09-15T05:36:51" +ik[7191] = 11 +il[7191] = 41 +im[7191] = 0.1349 +ij[7191] = 18 +id[7192] = "2528-09-26T15:13:24" +ik[7192] = -2.052 +il[7192] = 9 +im[7192] = 0.0918 +ij[7192] = 2 +id[7193] = "2528-11-27T13:59:48" +ik[7193] = 0 +il[7193] = -90 +im[7193] = 0.1517 +ij[7193] = 13 +id[7194] = "2529-01-05T14:16:28" +ik[7194] = 3.62 +il[7194] = -98 +im[7194] = 0.2424 +ij[7194] = 11 +id[7195] = "2529-01-28T11:50:11" +ik[7195] = 12 +il[7195] = -31 +im[7195] = 0.2008 +ij[7195] = 17 +id[7196] = "2529-02-09T08:34:09" +ik[7196] = 3.218 +il[7196] = 123 +im[7196] = 0.1016 +ij[7196] = 28.2 +id[7197] = "2529-02-12T16:07:40" +ik[7197] = 77.09 +il[7197] = 41 +im[7197] = 0.1754 +ij[7197] = 7.161 +id[7198] = "2529-02-20T10:18:19" +ik[7198] = 12 +il[7198] = -158 +im[7198] = 0.0285 +ij[7198] = 18 +id[7199] = "2529-04-09T02:40:31" +ik[7199] = -1.574 +il[7199] = 46 +im[7199] = 0.1023 +ij[7199] = 4 +id[7200] = "2529-04-12T13:47:51" +ik[7200] = 37.043 +il[7200] = -88 +im[7200] = 0.0839 +ij[7200] = 1 +id[7201] = "2529-04-18T04:55:28" +ik[7201] = 141.62 +il[7201] = 99 +im[7201] = 0.0376 +ij[7201] = 14 +id[7202] = "2529-06-20T14:36:56" +ik[7202] = 31.43 +il[7202] = -163 +im[7202] = 0.0785 +ij[7202] = 9 +id[7203] = "2529-08-16T02:12:30" +ik[7203] = 26.071 +il[7203] = -152 +im[7203] = 0.065 +ij[7203] = 16 +id[7204] = "2529-08-30T20:37:58" +ik[7204] = 4.539 +il[7204] = 74 +im[7204] = 0.0616 +ij[7204] = 28.1 +id[7205] = "2529-09-27T23:27:48" +ik[7205] = 1.383 +il[7205] = -56 +im[7205] = 0.0604 +ij[7205] = 28.8 +id[7206] = "2529-12-19T05:53:22" +ik[7206] = 0.61 +il[7206] = -50 +im[7206] = 0.0344 +ij[7206] = 12 +id[7207] = "2529-12-24T23:21:41" +ik[7207] = 0 +il[7207] = -84 +im[7207] = 0.0605 +ij[7207] = 17 +id[7208] = "2530-03-20T12:57:49" +ik[7208] = 0.651 +il[7208] = 179 +im[7208] = 0.0681 +ij[7208] = 27.5 +id[7209] = "2530-04-19T07:37:57" +ik[7209] = -25.593 +il[7209] = -170 +im[7209] = 0.0711 +ij[7209] = 15 +id[7210] = "2530-05-13T20:34:56" +ik[7210] = 4.925 +il[7210] = -125 +im[7210] = 0.0446 +ij[7210] = 28.1 +id[7211] = "2530-05-29T05:24:57" +ik[7211] = 3.025 +il[7211] = -107 +im[7211] = 0.0504 +ij[7211] = 27.6 +id[7212] = "2530-07-09T09:13:53" +ik[7212] = 2.162 +il[7212] = -119 +im[7212] = 0.026 +ij[7212] = 28.2 +id[7213] = "2530-07-31T09:40:35" +ik[7213] = 4.886 +il[7213] = 90 +im[7213] = 0.0715 +ij[7213] = 27.2 +id[7214] = "2530-08-14T23:49:23" +ik[7214] = 34.86 +il[7214] = 20 +im[7214] = 0.0757 +ij[7214] = 8 +id[7215] = "2530-08-19T12:15:36" +ik[7215] = 11 +il[7215] = -122 +im[7215] = 0.0119 +ij[7215] = 18 +id[7216] = "2530-09-23T21:08:09" +ik[7216] = 0.164 +il[7216] = 90 +im[7216] = 0.095 +ij[7216] = 28.5 +id[7217] = "2530-10-27T19:08:58" +ik[7217] = -1.792 +il[7217] = 89 +im[7217] = 0.0721 +ij[7217] = 2 +id[7218] = "2530-10-27T20:40:50" +ik[7218] = 39.581 +il[7218] = 66 +im[7218] = 0.0709 +ij[7218] = 3 +id[7219] = "2530-12-19T16:06:22" +ik[7219] = 20.166 +il[7219] = -74 +im[7219] = 0.1668 +ij[7219] = 16 +id[7220] = "2531-01-01T04:55:56" +ik[7220] = 0 +il[7220] = -145 +im[7220] = 0.1688 +ij[7220] = 13 +id[7221] = "2531-02-11T04:43:09" +ik[7221] = 4.38 +il[7221] = -128 +im[7221] = 0.2268 +ij[7221] = 11 +id[7222] = "2531-03-24T06:00:32" +ik[7222] = 82.04 +il[7222] = 31 +im[7222] = 0.1638 +ij[7222] = 7.1942 +id[7223] = "2531-05-22T16:33:53" +ik[7223] = 37.524 +il[7223] = 81 +im[7223] = 0.0411 +ij[7223] = 1 +id[7224] = "2531-05-25T06:00:32" +ik[7224] = -1.571 +il[7224] = -96 +im[7224] = 0.023 +ij[7224] = 4 +id[7225] = "2531-05-30T23:48:21" +ik[7225] = 149.79 +il[7225] = 52 +im[7225] = 0.1051 +ij[7225] = 14 +id[7226] = "2531-06-09T15:15:55" +ik[7226] = 0.313 +il[7226] = -87 +im[7226] = 0.0262 +ij[7226] = 28.5 +id[7227] = "2531-07-30T04:47:09" +ik[7227] = 32.337 +il[7227] = -161 +im[7227] = 0.0718 +ij[7227] = 9 +id[7228] = "2531-09-13T14:48:36" +ik[7228] = 0.661 +il[7228] = 130 +im[7228] = 0.0286 +ij[7228] = 28.2 +id[7229] = "2531-09-15T21:02:22" +ik[7229] = 1.734 +il[7229] = 58 +im[7229] = 0.0075 +ij[7229] = 28.8 +id[7230] = "2531-11-04T10:43:37" +ik[7230] = 3.577 +il[7230] = -24 +im[7230] = 0.0608 +ij[7230] = 27.4 +id[7231] = "2531-11-14T09:59:22" +ik[7231] = 0.671 +il[7231] = 87 +im[7231] = 0.0265 +ij[7231] = 28.7 +id[7232] = "2531-11-15T16:35:32" +ik[7232] = 2.062 +il[7232] = -3 +im[7232] = 0.0409 +ij[7232] = 28.6 +id[7233] = "2531-11-16T07:20:30" +ik[7233] = 6.169 +il[7233] = 142 +im[7233] = 0.0469 +ij[7233] = 27.1 +id[7234] = "2531-11-18T17:42:46" +ik[7234] = 1.349 +il[7234] = 10 +im[7234] = 0.0629 +ij[7234] = 28.1 +id[7235] = "2531-12-06T08:10:20" +ik[7235] = 0 +il[7235] = -35 +im[7235] = 0.0547 +ij[7235] = 17 +id[7236] = "2532-02-19T18:16:29" +ik[7236] = 1.07 +il[7236] = -144 +im[7236] = 0.033 +ij[7236] = 12 +id[7237] = "2532-03-29T18:12:51" +ik[7237] = -25.792 +il[7237] = 25 +im[7237] = 0.0642 +ij[7237] = 15 +id[7238] = "2532-05-09T19:34:37" +ik[7238] = 1.642 +il[7238] = 60 +im[7238] = 0.052 +ij[7238] = 28.1 +id[7239] = "2532-07-02T00:21:49" +ik[7239] = 2.273 +il[7239] = 150 +im[7239] = 0.0035 +ij[7239] = 28.2 +id[7240] = "2532-07-09T08:46:13" +ik[7240] = 4.58 +il[7240] = 95 +im[7240] = 0.062 +ij[7240] = 27.2 +id[7241] = "2532-07-28T19:20:34" +ik[7241] = 12 +il[7241] = 126 +im[7241] = 0.0331 +ij[7241] = 18 +id[7242] = "2532-10-05T12:26:43" +ik[7242] = 32.436 +il[7242] = 177 +im[7242] = 0.0638 +ij[7242] = 8 +id[7243] = "2532-11-28T21:31:13" +ik[7243] = -1.636 +il[7243] = -154 +im[7243] = 0.1004 +ij[7243] = 2 +id[7244] = "2532-12-07T10:54:46" +ik[7244] = 36.945 +il[7244] = 88 +im[7244] = 0.0282 +ij[7244] = 3 +id[7245] = "2533-01-19T13:42:27" +ik[7245] = 4.176 +il[7245] = 103 +im[7245] = 0.0809 +ij[7245] = 28.5 +id[7246] = "2533-02-02T23:48:49" +ik[7246] = 0 +il[7246] = 91 +im[7246] = 0.0936 +ij[7246] = 13 +id[7247] = "2533-02-21T19:33:15" +ik[7247] = 1.852 +il[7247] = -31 +im[7247] = 0.192 +ij[7247] = 28.2 +id[7248] = "2533-03-16T05:04:29" +ik[7248] = 3.68 +il[7248] = 27 +im[7248] = 0.1734 +ij[7248] = 11 +id[7249] = "2533-04-04T23:03:33" +ik[7249] = 0.741 +il[7249] = 94 +im[7249] = 0.1609 +ij[7249] = 28.1 +id[7250] = "2533-04-26T22:51:25" +ik[7250] = 82.96 +il[7250] = -61 +im[7250] = 0.1684 +ij[7250] = 7.2112 +id[7251] = "2533-07-01T06:29:48" +ik[7251] = 39.565 +il[7251] = 97 +im[7251] = 0.0216 +ij[7251] = 1 +id[7252] = "2533-07-01T17:30:12" +ik[7252] = 148.74 +il[7252] = -64 +im[7252] = 0.0322 +ij[7252] = 14 +id[7253] = "2533-07-02T02:40:28" +ik[7253] = 26.267 +il[7253] = 162 +im[7253] = 0.041 +ij[7253] = 16 +id[7254] = "2533-07-07T12:33:27" +ik[7254] = -1.702 +il[7254] = 67 +im[7254] = 0.1068 +ij[7254] = 4 +id[7255] = "2533-08-31T13:30:52" +ik[7255] = 2.187 +il[7255] = -133 +im[7255] = 0.081 +ij[7255] = 28.8 +id[7256] = "2533-09-15T17:31:09" +ik[7256] = 34.031 +il[7256] = -45 +im[7256] = 0.0735 +ij[7256] = 9 +id[7257] = "2533-09-17T18:14:53" +ik[7257] = 1.479 +il[7257] = -36 +im[7257] = 0.0773 +ij[7257] = 28.5 +id[7258] = "2533-10-12T03:24:04" +ik[7258] = 3.225 +il[7258] = 65 +im[7258] = 0.0457 +ij[7258] = 27.4 +id[7259] = "2533-10-26T05:34:23" +ik[7259] = 6.496 +il[7259] = 170 +im[7259] = 0.055 +ij[7259] = 27.1 +id[7260] = "2533-11-05T20:12:00" +ik[7260] = 0.93 +il[7260] = 54 +im[7260] = 0.0178 +ij[7260] = 28.7 +id[7261] = "2533-11-16T03:02:26" +ik[7261] = 0 +il[7261] = 52 +im[7261] = 0.0591 +ij[7261] = 17 +id[7262] = "2533-12-03T13:04:08" +ik[7262] = 1.554 +il[7262] = 73 +im[7262] = 0.0348 +ij[7262] = 28.6 +id[7263] = "2534-01-10T03:23:30" +ik[7263] = 0.18 +il[7263] = -132 +im[7263] = 0.0633 +ij[7263] = 27.3 +id[7264] = "2534-01-30T20:42:05" +ik[7264] = 1.65 +il[7264] = 172 +im[7264] = 0.0298 +ij[7264] = 28.1 +id[7265] = "2534-02-07T14:17:42" +ik[7265] = 0.512 +il[7265] = -14 +im[7265] = 0.0605 +ij[7265] = 27.5 +id[7266] = "2534-03-10T10:12:47" +ik[7266] = -25.955 +il[7266] = -2 +im[7266] = 0.0609 +ij[7266] = 15 +id[7267] = "2534-05-02T22:42:16" +ik[7267] = 0.2 +il[7267] = -18 +im[7267] = 0.0409 +ij[7267] = 12 +id[7268] = "2534-07-09T19:22:42" +ik[7268] = 12 +il[7268] = 136 +im[7268] = 0.0178 +ij[7268] = 18 +id[7269] = "2534-07-19T00:12:55" +ik[7269] = 1.366 +il[7269] = 153 +im[7269] = 0.0579 +ij[7269] = 28.1 +id[7270] = "2534-11-13T04:36:02" +ik[7270] = 31.006 +il[7270] = 141 +im[7270] = 0.0508 +ij[7270] = 8 +id[7271] = "2534-11-25T11:52:09" +ik[7271] = 25.031 +il[7271] = 151 +im[7271] = 0.0831 +ij[7271] = 16 +id[7272] = "2535-01-06T16:32:34" +ik[7272] = -1.58 +il[7272] = 128 +im[7272] = 0.0946 +ij[7272] = 2 +id[7273] = "2535-01-15T16:43:49" +ik[7273] = 36.167 +il[7273] = -148 +im[7273] = 0.0685 +ij[7273] = 3 +id[7274] = "2535-03-10T09:56:30" +ik[7274] = 0.754 +il[7274] = 110 +im[7274] = 0.0328 +ij[7274] = 28.8 +id[7275] = "2535-03-13T17:30:40" +ik[7275] = 0 +il[7275] = 28 +im[7275] = 0.1462 +ij[7275] = 13 +id[7276] = "2535-04-21T13:49:49" +ik[7276] = 1.66 +il[7276] = 71 +im[7276] = 0.1148 +ij[7276] = 11 +id[7277] = "2535-05-28T13:18:42" +ik[7277] = 0.671 +il[7277] = -138 +im[7277] = 0.0218 +ij[7277] = 28.2 +id[7278] = "2535-05-31T21:38:17" +ik[7278] = 79.17 +il[7278] = 130 +im[7278] = 0.1252 +ij[7278] = 7.186 +id[7279] = "2535-07-31T01:51:06" +ik[7279] = 139.35 +il[7279] = -68 +im[7279] = 0.1414 +ij[7279] = 14 +id[7280] = "2535-08-10T13:43:57" +ik[7280] = 2.906 +il[7280] = -144 +im[7280] = 0.0746 +ij[7280] = 28.8 +id[7281] = "2535-08-13T22:40:34" +ik[7281] = -1.957 +il[7281] = 115 +im[7281] = 0.1177 +ij[7281] = 4 +id[7282] = "2535-08-15T03:58:45" +ik[7282] = 43.063 +il[7282] = 47 +im[7282] = 0.115 +ij[7282] = 1 +id[7283] = "2535-09-18T06:54:31" +ik[7283] = 2.626 +il[7283] = -24 +im[7283] = 0.0172 +ij[7283] = 27.4 +id[7284] = "2535-10-26T05:22:42" +ik[7284] = 0 +il[7284] = 11 +im[7284] = 0.0917 +ij[7284] = 17 +id[7285] = "2535-10-27T01:51:34" +ik[7285] = 1.288 +il[7285] = 72 +im[7285] = 0.0871 +ij[7285] = 28.7 +id[7286] = "2535-11-20T10:26:42" +ik[7286] = 35.532 +il[7286] = -177 +im[7286] = 0.0672 +ij[7286] = 9 +id[7287] = "2535-12-01T07:14:31" +ik[7287] = 0.921 +il[7287] = -22 +im[7287] = 0.0217 +ij[7287] = 28.5 +id[7288] = "2535-12-19T15:47:41" +ik[7288] = 0.609 +il[7288] = 31 +im[7288] = 0.0622 +ij[7288] = 28.6 +id[7289] = "2535-12-20T01:21:11" +ik[7289] = 0.049 +il[7289] = -108 +im[7289] = 0.0658 +ij[7289] = 27.3 +id[7290] = "2536-01-17T20:00:18" +ik[7290] = 0.489 +il[7290] = -105 +im[7290] = 0.058 +ij[7290] = 27.5 +id[7291] = "2536-02-18T15:29:35" +ik[7291] = -26.108 +il[7291] = -88 +im[7291] = 0.0658 +ij[7291] = 15 +id[7292] = "2536-03-28T01:46:40" +ik[7292] = 2.225 +il[7292] = 140 +im[7292] = 0.0386 +ij[7292] = 27.6 +id[7293] = "2536-04-03T22:08:10" +ik[7293] = 0.662 +il[7293] = -102 +im[7293] = 0.0605 +ij[7293] = 28.2 +id[7294] = "2536-06-20T09:19:17" +ik[7294] = 12 +il[7294] = 118 +im[7294] = 0.0074 +ij[7294] = 18 +id[7295] = "2536-06-27T02:03:10" +ik[7295] = 0.75 +il[7295] = -69 +im[7295] = 0.0584 +ij[7295] = 12 +id[7296] = "2536-09-20T21:28:06" +ik[7296] = 4.983 +il[7296] = -64 +im[7296] = 0.0576 +ij[7296] = 28.1 +id[7297] = "2536-11-04T09:02:55" +ik[7297] = 25.388 +il[7297] = -168 +im[7297] = 0.0657 +ij[7297] = 16 +id[7298] = "2536-11-20T01:37:43" +ik[7298] = 2.596 +il[7298] = 94 +im[7298] = 0.0606 +ij[7298] = 28.2 +id[7299] = "2536-12-16T03:55:36" +ik[7299] = 30.618 +il[7299] = -49 +im[7299] = 0.0719 +ij[7299] = 8 +id[7300] = "2537-01-17T12:25:35" +ik[7300] = 0.386 +il[7300] = 134 +im[7300] = 0.0601 +ij[7300] = 28.8 +id[7301] = "2537-02-27T06:53:42" +ik[7301] = 37.328 +il[7301] = -114 +im[7301] = 0.1227 +ij[7301] = 3 +id[7302] = "2537-02-27T23:48:09" +ik[7302] = -1.648 +il[7302] = -1 +im[7302] = 0.117 +ij[7302] = 2 +id[7303] = "2537-03-06T02:49:04" +ik[7303] = 5.25 +il[7303] = 13 +im[7303] = 0.0183 +ij[7303] = 27.4 +id[7304] = "2537-04-01T03:46:10" +ik[7304] = 4.791 +il[7304] = -115 +im[7304] = 0.0534 +ij[7304] = 27.1 +id[7305] = "2537-05-02T01:51:35" +ik[7305] = 0 +il[7305] = -160 +im[7305] = 0.099 +ij[7305] = 13 +id[7306] = "2537-06-05T00:44:03" +ik[7306] = 1.83 +il[7306] = 168 +im[7306] = 0.2265 +ij[7306] = 11 +id[7307] = "2537-07-02T13:14:28" +ik[7307] = 1.139 +il[7307] = 49 +im[7307] = 0.1813 +ij[7307] = 27.4 +id[7308] = "2537-07-13T00:54:10" +ik[7308] = 71.96 +il[7308] = -24 +im[7308] = 0.2765 +ij[7308] = 7.1287 +id[7309] = "2537-07-25T01:10:49" +ik[7309] = 0.887 +il[7309] = 90 +im[7309] = 0.216 +ij[7309] = 27.4 +id[7310] = "2537-09-01T05:25:55" +ik[7310] = 122.15 +il[7310] = 40 +im[7310] = 0.091 +ij[7310] = 14 +id[7311] = "2537-09-12T17:49:56" +ik[7311] = -2.279 +il[7311] = -33 +im[7311] = 0.0624 +ij[7311] = 4 +id[7312] = "2537-09-28T05:11:32" +ik[7312] = 0 +il[7312] = -51 +im[7312] = 0.0329 +ij[7312] = 17 +id[7313] = "2537-10-01T01:24:48" +ik[7313] = 46.243 +il[7313] = 33 +im[7313] = 0.108 +ij[7313] = 1 +id[7314] = "2537-10-09T20:57:11" +ik[7314] = 2.062 +il[7314] = -173 +im[7314] = 0.0917 +ij[7314] = 28.7 +id[7315] = "2537-11-24T06:03:50" +ik[7315] = 0.298 +il[7315] = 137 +im[7315] = 0.008 +ij[7315] = 27.3 +id[7316] = "2537-12-24T09:36:51" +ik[7316] = 0.545 +il[7316] = 19 +im[7316] = 0.0215 +ij[7316] = 27.5 +id[7317] = "2537-12-31T06:03:15" +ik[7317] = 0.617 +il[7317] = 139 +im[7317] = 0.0972 +ij[7317] = 28.6 +id[7318] = "2538-01-27T07:53:23" +ik[7318] = -26.267 +il[7318] = 13 +im[7318] = 0.0795 +ij[7318] = 15 +id[7319] = "2538-01-27T14:28:01" +ik[7319] = 0.675 +il[7319] = -83 +im[7319] = 0.0811 +ij[7319] = 28.5 +id[7320] = "2538-01-28T11:00:29" +ik[7320] = 34.57 +il[7320] = -23 +im[7320] = 0.0842 +ij[7320] = 9 +id[7321] = "2538-03-04T19:15:25" +ik[7321] = 0.906 +il[7321] = -168 +im[7321] = 0.0184 +ij[7321] = 28.2 +id[7322] = "2538-03-06T23:59:14" +ik[7322] = 1.951 +il[7322] = 142 +im[7322] = 0.0203 +ij[7322] = 27.6 +id[7323] = "2538-05-11T02:15:41" +ik[7323] = 3.859 +il[7323] = 16 +im[7323] = 0.0622 +ij[7323] = 27.2 +id[7324] = "2538-05-12T16:03:48" +ik[7324] = 0.666 +il[7324] = -179 +im[7324] = 0.0538 +ij[7324] = 28.2 +id[7325] = "2538-06-01T22:34:49" +ik[7325] = 12 +il[7325] = -90 +im[7325] = 0.0231 +ij[7325] = 18 +id[7326] = "2538-08-08T18:34:17" +ik[7326] = 1.13 +il[7326] = -93 +im[7326] = 0.0357 +ij[7326] = 12 +id[7327] = "2538-10-17T03:08:48" +ik[7327] = 25.604 +il[7327] = -64 +im[7327] = 0.0485 +ij[7327] = 16 +id[7328] = "2538-11-09T00:40:15" +ik[7328] = 0.769 +il[7328] = -166 +im[7328] = 0.0398 +ij[7328] = 28.2 +id[7329] = "2538-12-31T09:36:11" +ik[7329] = 0.884 +il[7329] = -159 +im[7329] = 0.0291 +ij[7329] = 28.8 +id[7330] = "2539-01-19T15:47:35" +ik[7330] = 31.241 +il[7330] = -68 +im[7330] = 0.0499 +ij[7330] = 8 +id[7331] = "2539-01-30T23:00:10" +ik[7331] = 4.758 +il[7331] = -69 +im[7331] = 0.0074 +ij[7331] = 27.4 +id[7332] = "2539-02-15T23:14:45" +ik[7332] = 5.059 +il[7332] = 79 +im[7332] = 0.0334 +ij[7332] = 27.1 +id[7333] = "2539-03-09T04:47:04" +ik[7333] = 23 +il[7333] = -163 +im[7333] = 0.0965 +ij[7333] = 17 +id[7334] = "2539-03-31T13:18:45" +ik[7334] = 0.004 +il[7334] = -79 +im[7334] = 0.0733 +ij[7334] = 28.7 +id[7335] = "2539-04-27T02:22:42" +ik[7335] = 41.206 +il[7335] = -24 +im[7335] = 0.0357 +ij[7335] = 3 +id[7336] = "2539-05-20T13:17:57" +ik[7336] = -1.985 +il[7336] = 34 +im[7336] = 0.1396 +ij[7336] = 2 +id[7337] = "2539-05-31T18:59:27" +ik[7337] = 1.266 +il[7337] = 55 +im[7337] = 0.2195 +ij[7337] = 27.3 +id[7338] = "2539-07-13T05:26:25" +ik[7338] = 0 +il[7338] = -59 +im[7338] = 0.3072 +ij[7338] = 13 +id[7339] = "2539-07-16T05:05:44" +ik[7339] = 2.932 +il[7339] = -25 +im[7339] = 0.2068 +ij[7339] = 28.2 +id[7340] = "2539-08-11T19:17:50" +ik[7340] = 6.56 +il[7340] = 6 +im[7340] = 0.2731 +ij[7340] = 11 +id[7341] = "2539-09-14T04:29:00" +ik[7341] = 62.96 +il[7341] = 22 +im[7341] = 0.2264 +ij[7341] = 7.1001 +id[7342] = "2539-09-29T10:38:54" +ik[7342] = 3.36 +il[7342] = 80 +im[7342] = 0.2258 +ij[7342] = 27.3 +id[7343] = "2539-10-24T19:30:42" +ik[7343] = 103.59 +il[7343] = -164 +im[7343] = 0.0626 +ij[7343] = 14 +id[7344] = "2539-11-03T21:49:57" +ik[7344] = -2.3 +il[7344] = -100 +im[7344] = 0.0833 +ij[7344] = 4 +id[7345] = "2539-11-18T05:41:28" +ik[7345] = 1.24 +il[7345] = -79 +im[7345] = 0.1043 +ij[7345] = 27.5 +id[7346] = "2539-11-30T19:57:47" +ik[7346] = 43.976 +il[7346] = -171 +im[7346] = 0.1098 +ij[7346] = 1 +id[7347] = "2540-01-01T00:04:13" +ik[7347] = -26.379 +il[7347] = 68 +im[7347] = 0.0266 +ij[7347] = 15 +id[7348] = "2540-01-07T08:41:45" +ik[7348] = 1.92 +il[7348] = 0 +im[7348] = 0.1155 +ij[7348] = 28.6 +id[7349] = "2540-02-10T04:26:16" +ik[7349] = 1.583 +il[7349] = 26 +im[7349] = 0.0891 +ij[7349] = 27.6 +id[7350] = "2540-03-20T22:37:49" +ik[7350] = 32.717 +il[7350] = 129 +im[7350] = 0.0761 +ij[7350] = 9 +id[7351] = "2540-03-28T08:52:41" +ik[7351] = 1.517 +il[7351] = 45 +im[7351] = 0.0077 +ij[7351] = 28.5 +id[7352] = "2540-04-19T06:09:15" +ik[7352] = 3.539 +il[7352] = -68 +im[7352] = 0.0695 +ij[7352] = 27.2 +id[7353] = "2540-05-12T18:33:35" +ik[7353] = 12 +il[7353] = -32 +im[7353] = 0.0257 +ij[7353] = 18 +id[7354] = "2540-06-10T13:51:25" +ik[7354] = 4.215 +il[7354] = -50 +im[7354] = 0.0266 +ij[7354] = 28.1 +id[7355] = "2540-09-13T22:25:24" +ik[7355] = 1.01 +il[7355] = 28 +im[7355] = 0.038 +ij[7355] = 12 +id[7356] = "2540-09-28T14:39:34" +ik[7356] = 25.763 +il[7356] = 124 +im[7356] = 0.0314 +ij[7356] = 16 +id[7357] = "2540-12-17T02:59:19" +ik[7357] = 1.229 +il[7357] = 0 +im[7357] = 0.0502 +ij[7357] = 28.8 +id[7358] = "2541-01-07T11:19:44" +ik[7358] = 4.429 +il[7358] = 78 +im[7358] = 0.0447 +ij[7358] = 27.4 +id[7359] = "2541-01-22T03:39:46" +ik[7359] = 5.366 +il[7359] = -33 +im[7359] = 0.0285 +ij[7359] = 27.1 +id[7360] = "2541-02-10T18:42:43" +ik[7360] = 0 +il[7360] = -68 +im[7360] = 0.0368 +ij[7360] = 17 +id[7361] = "2541-02-28T11:16:02" +ik[7361] = 32.95 +il[7361] = -149 +im[7361] = 0.081 +ij[7361] = 8 +id[7362] = "2541-03-14T07:07:20" +ik[7362] = 0.14 +il[7362] = 43 +im[7362] = 0.0769 +ij[7362] = 28.7 +id[7363] = "2541-04-15T08:27:31" +ik[7363] = 0.099 +il[7363] = -33 +im[7363] = 0.0922 +ij[7363] = 27.3 +id[7364] = "2541-05-17T08:55:04" +ik[7364] = 1.393 +il[7364] = -96 +im[7364] = 0.0635 +ij[7364] = 27.5 +id[7365] = "2541-06-14T15:18:57" +ik[7365] = -24.18 +il[7365] = 78 +im[7365] = 0.094 +ij[7365] = 15 +id[7366] = "2541-07-06T04:41:39" +ik[7366] = 46.863 +il[7366] = 85 +im[7366] = 0.1398 +ij[7366] = 3 +id[7367] = "2541-07-14T05:57:17" +ik[7367] = 0.583 +il[7367] = 143 +im[7367] = 0.093 +ij[7367] = 28.6 +id[7368] = "2541-08-05T07:58:52" +ik[7368] = -2.395 +il[7368] = -33 +im[7368] = 0.2094 +ij[7368] = 2 +id[7369] = "2541-08-11T23:41:13" +ik[7369] = 5.604 +il[7369] = 157 +im[7369] = 0.1093 +ij[7369] = 27.6 +id[7370] = "2541-09-23T19:31:13" +ik[7370] = 0 +il[7370] = -81 +im[7370] = 0.0323 +ij[7370] = 13 +id[7371] = "2541-10-28T18:34:17" +ik[7371] = 1.73 +il[7371] = -104 +im[7371] = 0.3542 +ij[7371] = 11 +id[7372] = "2541-11-16T11:05:30" +ik[7372] = 2.977 +il[7372] = 29 +im[7372] = 0.0622 +ij[7372] = 27.6 +id[7373] = "2541-11-22T05:57:27" +ik[7373] = 1.894 +il[7373] = 162 +im[7373] = 0.2733 +ij[7373] = 28.6 +id[7374] = "2541-11-28T18:33:49" +ik[7374] = 65.96 +il[7374] = 31 +im[7374] = 0.1448 +ij[7374] = 7.1258 +id[7375] = "2541-12-03T01:33:55" +ik[7375] = 1.47 +il[7375] = -33 +im[7375] = 0.1018 +ij[7375] = 28.2 +id[7376] = "2541-12-17T23:30:54" +ik[7376] = 1.361 +il[7376] = 140 +im[7376] = 0.1545 +ij[7376] = 27.6 +id[7377] = "2542-01-15T03:58:39" +ik[7377] = 113.35 +il[7377] = -20 +im[7377] = 0.12 +ij[7377] = 14 +id[7378] = "2542-01-20T08:35:19" +ik[7378] = -1.862 +il[7378] = -40 +im[7378] = 0.15 +ij[7378] = 4 +id[7379] = "2542-02-05T20:15:47" +ik[7379] = 39.395 +il[7379] = -59 +im[7379] = 0.0783 +ij[7379] = 1 +id[7380] = "2542-03-25T02:40:48" +ik[7380] = 3.021 +il[7380] = -70 +im[7380] = 0.0124 +ij[7380] = 27.2 +id[7381] = "2542-04-21T09:22:06" +ik[7381] = 12 +il[7381] = 87 +im[7381] = 0.0118 +ij[7381] = 18 +id[7382] = "2542-05-01T02:29:48" +ik[7382] = 31.565 +il[7382] = -79 +im[7382] = 0.0602 +ij[7382] = 9 +id[7383] = "2542-06-14T21:57:20" +ik[7383] = 0.665 +il[7383] = 53 +im[7383] = 0.0434 +ij[7383] = 28.5 +id[7384] = "2542-08-10T03:01:56" +ik[7384] = 0.513 +il[7384] = 153 +im[7384] = 0.0478 +ij[7384] = 28.1 +id[7385] = "2542-08-17T10:27:22" +ik[7385] = 0.685 +il[7385] = 121 +im[7385] = 0.038 +ij[7385] = 28.2 +id[7386] = "2542-09-11T04:46:27" +ik[7386] = 25.898 +il[7386] = 84 +im[7386] = 0.0101 +ij[7386] = 16 +id[7387] = "2542-10-20T16:41:24" +ik[7387] = 0.5 +il[7387] = -63 +im[7387] = 0.0434 +ij[7387] = 12 +id[7388] = "2543-01-01T21:49:27" +ik[7388] = 5.61 +il[7388] = 41 +im[7388] = 0.0379 +ij[7388] = 27.1 +id[7389] = "2543-01-19T15:16:41" +ik[7389] = 4.508 +il[7389] = -48 +im[7389] = 0.003 +ij[7389] = 28.1 +id[7390] = "2543-01-21T06:54:25" +ik[7390] = 0 +il[7390] = 88 +im[7390] = 0.0202 +ij[7390] = 17 +id[7391] = "2543-03-04T11:18:55" +ik[7391] = 0.252 +il[7391] = 72 +im[7391] = 0.0167 +ij[7391] = 28.7 +id[7392] = "2543-03-21T17:47:16" +ik[7392] = 0.252 +il[7392] = 138 +im[7392] = 0.0446 +ij[7392] = 27.3 +id[7393] = "2543-04-18T21:13:50" +ik[7393] = 4.586 +il[7393] = -5 +im[7393] = 0.0358 +ij[7393] = 28.2 +id[7394] = "2543-04-20T10:14:44" +ik[7394] = 0.889 +il[7394] = 174 +im[7394] = 0.0585 +ij[7394] = 27.5 +id[7395] = "2543-04-28T01:30:42" +ik[7395] = 35.519 +il[7395] = 18 +im[7395] = 0.0388 +ij[7395] = 8 +id[7396] = "2543-05-19T14:15:52" +ik[7396] = -25.119 +il[7396] = 34 +im[7396] = 0.0678 +ij[7396] = 15 +id[7397] = "2543-07-01T16:00:05" +ik[7397] = 3.78 +il[7397] = 65 +im[7397] = 0.0827 +ij[7397] = 27.6 +id[7398] = "2543-07-13T08:43:01" +ik[7398] = 0.712 +il[7398] = -71 +im[7398] = 0.023 +ij[7398] = 28.6 +id[7399] = "2543-08-23T15:51:41" +ik[7399] = 45.797 +il[7399] = -133 +im[7399] = 0.0202 +ij[7399] = 3 +id[7400] = "2543-09-10T04:35:28" +ik[7400] = 5.61 +il[7400] = -152 +im[7400] = 0.0849 +ij[7400] = 27.2 +id[7401] = "2543-09-15T04:46:53" +ik[7401] = -2.176 +il[7401] = -105 +im[7401] = 0.1519 +ij[7401] = 2 +id[7402] = "2543-10-04T21:32:46" +ik[7402] = 11 +il[7402] = -164 +im[7402] = 0.0343 +ij[7402] = 18 +id[7403] = "2543-11-13T03:59:09" +ik[7403] = 0 +il[7403] = 123 +im[7403] = 0.1704 +ij[7403] = 13 +id[7404] = "2543-12-05T01:01:02" +ik[7404] = 12 +il[7404] = 20 +im[7404] = 0.2535 +ij[7404] = 17 +id[7405] = "2543-12-05T18:25:26" +ik[7405] = 0.09 +il[7405] = 126 +im[7405] = 0.2655 +ij[7405] = 28.1 +id[7406] = "2543-12-21T07:17:51" +ik[7406] = 2.75 +il[7406] = 70 +im[7406] = 0.2562 +ij[7406] = 11 +id[7407] = "2544-01-07T02:12:58" +ik[7407] = 3.365 +il[7407] = 126 +im[7407] = 0.1042 +ij[7407] = 28.1 +id[7408] = "2544-01-25T21:23:01" +ik[7408] = 3.73 +il[7408] = 3 +im[7408] = 0.1395 +ij[7408] = 27.2 +id[7409] = "2544-01-26T13:14:02" +ik[7409] = 74.39 +il[7409] = 136 +im[7409] = 0.1595 +ij[7409] = 7.1488 +id[7410] = "2544-03-20T13:32:14" +ik[7410] = -1.616 +il[7410] = -84 +im[7410] = 0.062 +ij[7410] = 4 +id[7411] = "2544-03-21T11:33:16" +ik[7411] = 12 +il[7411] = -46 +im[7411] = 0.0814 +ij[7411] = 18 +id[7412] = "2544-03-26T21:59:45" +ik[7412] = 37.303 +il[7412] = -151 +im[7412] = 0.1056 +ij[7412] = 1 +id[7413] = "2544-03-27T19:01:52" +ik[7413] = 135.63 +il[7413] = -98 +im[7413] = 0.0949 +ij[7413] = 14 +id[7414] = "2544-06-06T05:12:55" +ik[7414] = 31.295 +il[7414] = 56 +im[7414] = 0.0666 +ij[7414] = 9 +id[7415] = "2544-07-16T06:17:28" +ik[7415] = 0.095 +il[7415] = 63 +im[7415] = 0.0683 +ij[7415] = 28.2 +id[7416] = "2544-08-23T08:28:19" +ik[7416] = 26.024 +il[7416] = 37 +im[7416] = 0.0102 +ij[7416] = 16 +id[7417] = "2544-09-14T22:54:56" +ik[7417] = 0.681 +il[7417] = 39 +im[7417] = 0.0554 +ij[7417] = 28.5 +id[7418] = "2544-11-30T04:18:18" +ik[7418] = 0.28 +il[7418] = 1 +im[7418] = 0.0058 +ij[7418] = 12 +id[7419] = "2545-01-01T06:59:35" +ik[7419] = 0 +il[7419] = 91 +im[7419] = 0.0322 +ij[7419] = 17 +id[7420] = "2545-02-23T16:30:24" +ik[7420] = 0.302 +il[7420] = 95 +im[7420] = 0.0274 +ij[7420] = 28.7 +id[7421] = "2545-02-27T16:59:58" +ik[7421] = 0.277 +il[7421] = 126 +im[7421] = 0.025 +ij[7421] = 27.3 +id[7422] = "2545-03-28T14:49:19" +ik[7422] = 0.698 +il[7422] = 81 +im[7422] = 0.0226 +ij[7422] = 27.5 +id[7423] = "2545-04-04T13:45:12" +ik[7423] = 0.28 +il[7423] = 169 +im[7423] = 0.0652 +ij[7423] = 28.2 +id[7424] = "2545-04-11T00:33:22" +ik[7424] = 4.168 +il[7424] = 69 +im[7424] = 0.0135 +ij[7424] = 28.1 +id[7425] = "2545-04-27T05:31:42" +ik[7425] = -25.494 +il[7425] = 151 +im[7425] = 0.03 +ij[7425] = 15 +id[7426] = "2545-06-06T16:01:54" +ik[7426] = 3.179 +il[7426] = 28 +im[7426] = 0.0053 +ij[7426] = 27.6 +id[7427] = "2545-07-18T05:21:48" +ik[7427] = 35.805 +il[7427] = -124 +im[7427] = 0.0538 +ij[7427] = 8 +id[7428] = "2545-07-20T16:10:38" +ik[7428] = 1.142 +il[7428] = 98 +im[7428] = 0.0137 +ij[7428] = 28.6 +id[7429] = "2545-08-09T12:26:55" +ik[7429] = 5.04 +il[7429] = -11 +im[7429] = 0.0876 +ij[7429] = 27.2 +id[7430] = "2545-08-28T16:50:36" +ik[7430] = 11 +il[7430] = 111 +im[7430] = 0.0674 +ij[7430] = 18 +id[7431] = "2545-10-09T22:05:39" +ik[7431] = 41.142 +il[7431] = 84 +im[7431] = 0.1077 +ij[7431] = 3 +id[7432] = "2545-10-15T15:04:41" +ik[7432] = -1.882 +il[7432] = -116 +im[7432] = 0.0153 +ij[7432] = 2 +id[7433] = "2545-12-20T19:02:20" +ik[7433] = 0 +il[7433] = 106 +im[7433] = 0.109 +ij[7433] = 13 +id[7434] = "2546-01-01T10:31:43" +ik[7434] = 1.151 +il[7434] = -14 +im[7434] = 0.192 +ij[7434] = 28.2 +id[7435] = "2546-01-28T13:56:58" +ik[7435] = 4.29 +il[7435] = 179 +im[7435] = 0.2035 +ij[7435] = 11 +id[7436] = "2546-03-09T19:05:57" +ik[7436] = 79 +il[7436] = -80 +im[7436] = 0.1343 +ij[7436] = 7.1819 +id[7437] = "2546-05-07T07:33:44" +ik[7437] = 37.148 +il[7437] = -77 +im[7437] = 0.0317 +ij[7437] = 1 +id[7438] = "2546-05-07T16:53:08" +ik[7438] = -1.555 +il[7438] = 147 +im[7438] = 0.0231 +ij[7438] = 4 +id[7439] = "2546-05-16T01:19:49" +ik[7439] = 146.26 +il[7439] = 100 +im[7439] = 0.1046 +ij[7439] = 14 +id[7440] = "2546-07-14T03:40:28" +ik[7440] = 31.877 +il[7440] = -87 +im[7440] = 0.0697 +ij[7440] = 9 +id[7441] = "2546-08-04T08:06:06" +ik[7441] = 26.15 +il[7441] = 52 +im[7441] = 0.0257 +ij[7441] = 16 +id[7442] = "2546-10-17T04:49:10" +ik[7442] = 2.384 +il[7442] = 99 +im[7442] = 0.052 +ij[7442] = 28.1 +id[7443] = "2546-11-10T00:05:04" +ik[7443] = 3.687 +il[7443] = 41 +im[7443] = 0.0122 +ij[7443] = 27.4 +id[7444] = "2546-11-10T16:35:16" +ik[7444] = 2.029 +il[7444] = 163 +im[7444] = 0.0048 +ij[7444] = 28.8 +id[7445] = "2546-12-13T16:19:17" +ik[7445] = 0 +il[7445] = 137 +im[7445] = 0.0476 +ij[7445] = 17 +id[7446] = "2547-01-23T17:26:45" +ik[7446] = 1.01 +il[7446] = 171 +im[7446] = 0.0099 +ij[7446] = 12 +id[7447] = "2547-04-07T09:01:27" +ik[7447] = -25.722 +il[7447] = 93 +im[7447] = 0.03 +ij[7447] = 15 +id[7448] = "2547-05-16T15:39:35" +ik[7448] = 2.827 +il[7448] = 26 +im[7448] = 0.0333 +ij[7448] = 27.6 +id[7449] = "2547-07-18T08:58:34" +ik[7449] = 4.688 +il[7449] = 22 +im[7449] = 0.0426 +ij[7449] = 27.2 +id[7450] = "2547-08-01T07:51:10" +ik[7450] = 1.12 +il[7450] = 175 +im[7450] = 0.0287 +ij[7450] = 28.6 +id[7451] = "2547-08-06T15:15:38" +ik[7451] = 12 +il[7451] = 116 +im[7451] = 0.0698 +ij[7451] = 18 +id[7452] = "2547-09-18T11:49:21" +ik[7452] = 33.292 +il[7452] = -136 +im[7452] = 0.0842 +ij[7452] = 8 +id[7453] = "2547-11-16T15:06:29" +ik[7453] = -1.685 +il[7453] = 28 +im[7453] = 0.1004 +ij[7453] = 2 +id[7454] = "2547-11-22T21:15:41" +ik[7454] = 37.748 +il[7454] = -4 +im[7454] = 0.0172 +ij[7454] = 3 +id[7455] = "2548-01-22T01:20:17" +ik[7455] = 0 +il[7455] = 156 +im[7455] = 0.1556 +ij[7455] = 13 +id[7456] = "2548-03-02T23:52:31" +ik[7456] = 4.1 +il[7456] = -168 +im[7456] = 0.2261 +ij[7456] = 11 +id[7457] = "2548-04-07T13:29:35" +ik[7457] = 1.779 +il[7457] = 108 +im[7457] = 0.0433 +ij[7457] = 28.2 +id[7458] = "2548-04-14T00:22:53" +ik[7458] = 82.96 +il[7458] = 6 +im[7458] = 0.1583 +ij[7458] = 7.2085 +id[7459] = "2548-06-15T03:07:37" +ik[7459] = 38.578 +il[7459] = -156 +im[7459] = 0.0259 +ij[7459] = 1 +id[7460] = "2548-06-19T18:27:43" +ik[7460] = 149.71 +il[7460] = 19 +im[7460] = 0.1034 +ij[7460] = 14 +id[7461] = "2548-06-20T11:36:43" +ik[7461] = -1.635 +il[7461] = 128 +im[7461] = 0.1082 +ij[7461] = 4 +id[7462] = "2548-07-12T09:43:57" +ik[7462] = 26.262 +il[7462] = 9 +im[7462] = 0.0076 +ij[7462] = 16 +id[7463] = "2548-08-26T05:12:54" +ik[7463] = 33.295 +il[7463] = 152 +im[7463] = 0.0166 +ij[7463] = 9 +id[7464] = "2548-10-20T08:40:35" +ik[7464] = 3.38 +il[7464] = -83 +im[7464] = 0.0205 +ij[7464] = 27.4 +id[7465] = "2548-10-27T22:49:55" +ik[7465] = 2.328 +il[7465] = 139 +im[7465] = 0.0685 +ij[7465] = 28.8 +id[7466] = "2548-11-03T07:51:05" +ik[7466] = 6.354 +il[7466] = 66 +im[7466] = 0.0227 +ij[7466] = 27.1 +id[7467] = "2548-11-23T19:21:56" +ik[7467] = 0 +il[7467] = 94 +im[7467] = 0.0571 +ij[7467] = 17 +id[7468] = "2548-12-31T15:15:53" +ik[7468] = 0.986 +il[7468] = 172 +im[7468] = 0.0202 +ij[7468] = 28.1 +id[7469] = "2549-01-04T20:41:01" +ik[7469] = 0.807 +il[7469] = 127 +im[7469] = 0.0338 +ij[7469] = 28.2 +id[7470] = "2549-01-18T01:09:14" +ik[7470] = 0.212 +il[7470] = -170 +im[7470] = 0.0263 +ij[7470] = 27.3 +id[7471] = "2549-03-18T00:37:18" +ik[7471] = -25.895 +il[7471] = 80 +im[7471] = 0.0363 +ij[7471] = 15 +id[7472] = "2549-04-05T13:41:52" +ik[7472] = 0.66 +il[7472] = 65 +im[7472] = 0.058 +ij[7472] = 12 +id[7473] = "2549-06-27T08:43:01" +ik[7473] = 4.427 +il[7473] = 20 +im[7473] = 0.0269 +ij[7473] = 27.2 +id[7474] = "2549-07-17T03:25:49" +ik[7474] = 12 +il[7474] = -60 +im[7474] = 0.0639 +ij[7474] = 18 +id[7475] = "2549-08-14T10:16:47" +ik[7475] = 0.776 +il[7475] = 111 +im[7475] = 0.065 +ij[7475] = 28.6 +id[7476] = "2549-09-22T14:36:29" +ik[7476] = 1.575 +il[7476] = 66 +im[7476] = 0.0455 +ij[7476] = 28.2 +id[7477] = "2549-10-30T01:48:54" +ik[7477] = 31.437 +il[7477] = -100 +im[7477] = 0.0382 +ij[7477] = 8 +id[7478] = "2549-12-21T12:52:17" +ik[7478] = -1.589 +il[7478] = -119 +im[7478] = 0.1042 +ij[7478] = 2 +id[7479] = "2549-12-31T07:58:39" +ik[7479] = 36.256 +il[7479] = 49 +im[7479] = 0.0584 +ij[7479] = 3 +id[7480] = "2550-02-25T18:28:11" +ik[7480] = 0 +il[7480] = 76 +im[7480] = 0.114 +ij[7480] = 13 +id[7481] = "2550-04-06T19:50:45" +ik[7481] = 2.62 +il[7481] = 57 +im[7481] = 0.178 +ij[7481] = 11 +id[7482] = "2550-05-18T00:19:06" +ik[7482] = 81.24 +il[7482] = 167 +im[7482] = 0.1526 +ij[7482] = 7.2015 +id[7483] = "2550-06-15T11:24:52" +ik[7483] = 25.959 +il[7483] = -83 +im[7483] = 0.1352 +ij[7483] = 16 +id[7484] = "2550-07-19T17:35:51" +ik[7484] = 143.96 +il[7484] = 157 +im[7484] = 0.0629 +ij[7484] = 14 +id[7485] = "2550-07-28T02:32:38" +ik[7485] = 41.556 +il[7485] = 105 +im[7485] = 0.1182 +ij[7485] = 1 +id[7486] = "2550-07-31T23:38:31" +ik[7486] = -1.844 +il[7486] = -174 +im[7486] = 0.104 +ij[7486] = 4 +id[7487] = "2550-09-28T10:02:04" +ik[7487] = 2.911 +il[7487] = -120 +im[7487] = 0.0713 +ij[7487] = 27.4 +id[7488] = "2550-10-13T04:35:29" +ik[7488] = 2.743 +il[7488] = 106 +im[7488] = 0.0488 +ij[7488] = 28.8 +id[7489] = "2550-10-23T14:00:28" +ik[7489] = 35.13 +il[7489] = 67 +im[7489] = 0.0896 +ij[7489] = 9 +id[7490] = "2550-11-03T18:53:32" +ik[7490] = 0 +il[7490] = 103 +im[7490] = 0.0547 +ij[7490] = 17 +id[7491] = "2550-12-02T11:56:47" +ik[7491] = 1.149 +il[7491] = 130 +im[7491] = 0.0503 +ij[7491] = 28.2 +id[7492] = "2550-12-28T14:22:55" +ik[7492] = 0.115 +il[7492] = -9 +im[7492] = 0.0097 +ij[7492] = 27.3 +id[7493] = "2551-01-26T03:15:41" +ik[7493] = 0.491 +il[7493] = 78 +im[7493] = 0.0068 +ij[7493] = 27.5 +id[7494] = "2551-02-01T08:13:50" +ik[7494] = 0.096 +il[7494] = 64 +im[7494] = 0.0674 +ij[7494] = 28.7 +id[7495] = "2551-02-26T12:53:16" +ik[7495] = -26.05 +il[7495] = -113 +im[7495] = 0.0369 +ij[7495] = 15 +id[7496] = "2551-02-27T08:09:14" +ik[7496] = 1.264 +il[7496] = -35 +im[7496] = 0.046 +ij[7496] = 28.2 +id[7497] = "2551-03-18T02:10:27" +ik[7497] = 2.087 +il[7497] = -118 +im[7497] = 0.0633 +ij[7497] = 28.1 +id[7498] = "2551-06-08T09:13:25" +ik[7498] = 0.44 +il[7498] = -146 +im[7498] = 0.031 +ij[7498] = 12 +id[7499] = "2551-06-28T13:46:15" +ik[7499] = 12 +il[7499] = 146 +im[7499] = 0.0572 +ij[7499] = 18 +id[7500] = "2551-08-24T04:07:04" +ik[7500] = 2.277 +il[7500] = 132 +im[7500] = 0.0616 +ij[7500] = 28.1 +id[7501] = "2551-08-30T20:15:20" +ik[7501] = 0.211 +il[7501] = -46 +im[7501] = 0.0071 +ij[7501] = 28.6 +id[7502] = "2551-09-10T19:04:45" +ik[7502] = 0.869 +il[7502] = 78 +im[7502] = 0.0349 +ij[7502] = 28.2 +id[7503] = "2551-11-12T22:11:43" +ik[7503] = 25.275 +il[7503] = -79 +im[7503] = 0.0398 +ij[7503] = 16 +id[7504] = "2551-12-04T04:02:41" +ik[7504] = 30.651 +il[7504] = 38 +im[7504] = 0.0618 +ij[7504] = 8 +id[7505] = "2552-02-05T13:34:58" +ik[7505] = -1.602 +il[7505] = 145 +im[7505] = 0.0368 +ij[7505] = 2 +id[7506] = "2552-02-10T06:24:37" +ik[7506] = 36.612 +il[7506] = -63 +im[7506] = 0.1113 +ij[7506] = 3 +id[7507] = "2552-04-10T17:36:20" +ik[7507] = 0 +il[7507] = -15 +im[7507] = 0.1292 +ij[7507] = 13 +id[7508] = "2552-04-13T13:17:28" +ik[7508] = 6.162 +il[7508] = 77 +im[7508] = 0.0032 +ij[7508] = 27.4 +id[7509] = "2552-04-24T10:50:08" +ik[7509] = 0.909 +il[7509] = -154 +im[7509] = 0.1399 +ij[7509] = 28.2 +id[7510] = "2552-05-16T14:25:25" +ik[7510] = 0.05 +il[7510] = -9 +im[7510] = 0.267 +ij[7510] = 11 +id[7511] = "2552-06-24T16:38:56" +ik[7511] = 74.96 +il[7511] = 133 +im[7511] = 0.2165 +ij[7511] = 7.152 +id[7512] = "2552-08-18T05:55:47" +ik[7512] = 129.51 +il[7512] = 107 +im[7512] = 0.1188 +ij[7512] = 14 +id[7513] = "2552-08-27T10:33:57" +ik[7513] = 1.881 +il[7513] = 127 +im[7513] = 0.0414 +ij[7513] = 27.4 +id[7514] = "2552-08-31T04:22:05" +ik[7514] = -2.155 +il[7514] = -104 +im[7514] = 0.0824 +ij[7514] = 4 +id[7515] = "2552-09-12T04:43:40" +ik[7515] = 45.329 +il[7515] = 9 +im[7515] = 0.0132 +ij[7515] = 1 +id[7516] = "2552-09-21T15:07:07" +ik[7516] = 3.561 +il[7516] = -54 +im[7516] = 0.1108 +ij[7516] = 28.8 +id[7517] = "2552-10-10T07:14:09" +ik[7517] = 0 +il[7517] = -113 +im[7517] = 0.0179 +ij[7517] = 17 +id[7518] = "2552-12-04T19:22:37" +ik[7518] = 0.109 +il[7518] = -108 +im[7518] = 0.0593 +ij[7518] = 27.3 +id[7519] = "2553-01-02T21:35:34" +ik[7519] = 35.23 +il[7519] = 144 +im[7519] = 0.0534 +ij[7519] = 9 +id[7520] = "2553-01-03T04:12:18" +ik[7520] = 0.503 +il[7520] = 47 +im[7520] = 0.0493 +ij[7520] = 27.5 +id[7521] = "2553-01-22T15:30:28" +ik[7521] = 0.104 +il[7521] = 67 +im[7521] = 0.0527 +ij[7521] = 28.7 +id[7522] = "2553-02-05T00:40:11" +ik[7522] = -26.206 +il[7522] = 59 +im[7522] = 0.018 +ij[7522] = 15 +id[7523] = "2553-03-15T12:43:09" +ik[7523] = 2.064 +il[7523] = -112 +im[7523] = 0.0417 +ij[7523] = 27.6 +id[7524] = "2553-05-18T20:14:01" +ik[7524] = 3.962 +il[7524] = 32 +im[7524] = 0.0377 +ij[7524] = 27.2 +id[7525] = "2553-06-09T05:28:25" +ik[7525] = 12 +il[7525] = 99 +im[7525] = 0.0451 +ij[7525] = 18 +id[7526] = "2553-07-24T04:15:39" +ik[7526] = 1.05 +il[7526] = -168 +im[7526] = 0.0304 +ij[7526] = 12 +id[7527] = "2553-10-24T03:46:36" +ik[7527] = 25.53 +il[7527] = -152 +im[7527] = 0.0442 +ij[7527] = 16 +id[7528] = "2554-01-05T21:13:47" +ik[7528] = 30.873 +il[7528] = -65 +im[7528] = 0.0659 +ij[7528] = 8 +id[7529] = "2554-02-10T15:21:31" +ik[7529] = 4.923 +il[7529] = 3 +im[7529] = 0.0248 +ij[7529] = 27.4 +id[7530] = "2554-02-27T22:40:39" +ik[7530] = 4.916 +il[7530] = 58 +im[7530] = 0.018 +ij[7530] = 27.1 +id[7531] = "2554-03-07T15:14:33" +ik[7531] = 0.955 +il[7531] = -118 +im[7531] = 0.0935 +ij[7531] = 28.8 +id[7532] = "2554-03-23T15:43:43" +ik[7532] = 23 +il[7532] = 27 +im[7532] = 0.0982 +ij[7532] = 17 +id[7533] = "2554-04-01T09:32:41" +ik[7533] = 39.281 +il[7533] = -158 +im[7533] = 0.118 +ij[7533] = 3 +id[7534] = "2554-04-15T04:23:53" +ik[7534] = -1.803 +il[7534] = 50 +im[7534] = 0.1377 +ij[7534] = 2 +id[7535] = "2554-06-12T05:56:16" +ik[7535] = 0 +il[7535] = -144 +im[7535] = 0.2878 +ij[7535] = 13 +id[7536] = "2554-07-12T16:44:59" +ik[7536] = 5.12 +il[7536] = -29 +im[7536] = 0.2655 +ij[7536] = 11 +id[7537] = "2554-08-17T04:58:52" +ik[7537] = 65.96 +il[7537] = -51 +im[7537] = 0.2897 +ij[7537] = 7.1022 +id[7538] = "2554-08-22T18:00:38" +ik[7538] = 4.892 +il[7538] = 168 +im[7538] = 0.151 +ij[7538] = 28.2 +id[7539] = "2554-09-29T18:55:40" +ik[7539] = 109.54 +il[7539] = 169 +im[7539] = 0.2274 +ij[7539] = 14 +id[7540] = "2554-10-09T15:47:26" +ik[7540] = -2.375 +il[7540] = -47 +im[7540] = 0.1197 +ij[7540] = 4 +id[7541] = "2554-11-02T05:19:18" +ik[7541] = 1.009 +il[7541] = -18 +im[7541] = 0.081 +ij[7541] = 27.3 +id[7542] = "2554-11-03T21:38:35" +ik[7542] = 45.686 +il[7542] = 114 +im[7542] = 0.026 +ij[7542] = 1 +id[7543] = "2554-12-06T00:05:54" +ik[7543] = 0.746 +il[7543] = 30 +im[7543] = 0.0848 +ij[7543] = 27.5 +id[7544] = "2555-01-10T07:14:01" +ik[7544] = 0.388 +il[7544] = -96 +im[7544] = 0.0933 +ij[7544] = 28.7 +id[7545] = "2555-01-12T09:35:01" +ik[7545] = -26.359 +il[7545] = -111 +im[7545] = 0.0612 +ij[7545] = 15 +id[7546] = "2555-02-20T17:20:17" +ik[7546] = 1.742 +il[7546] = 148 +im[7546] = 0.0815 +ij[7546] = 27.6 +id[7547] = "2555-03-03T09:20:00" +ik[7547] = 33.387 +il[7547] = 10 +im[7547] = 0.069 +ij[7547] = 9 +id[7548] = "2555-04-28T17:03:36" +ik[7548] = 3.678 +il[7548] = 66 +im[7548] = 0.0429 +ij[7548] = 27.2 +id[7549] = "2555-05-21T10:50:41" +ik[7549] = 12 +il[7549] = 24 +im[7549] = 0.0385 +ij[7549] = 18 +id[7550] = "2555-06-17T10:03:07" +ik[7550] = 0.469 +il[7550] = -70 +im[7550] = 0.0507 +ij[7550] = 28.2 +id[7551] = "2555-08-31T19:01:53" +ik[7551] = 1.11 +il[7551] = 159 +im[7551] = 0.0231 +ij[7551] = 12 +id[7552] = "2555-10-06T10:45:26" +ik[7552] = 25.707 +il[7552] = 114 +im[7552] = 0.0518 +ij[7552] = 16 +id[7553] = "2556-01-16T18:47:06" +ik[7553] = 4.544 +il[7553] = -99 +im[7553] = 0.0689 +ij[7553] = 27.4 +id[7554] = "2556-01-22T06:59:38" +ik[7554] = 3.858 +il[7554] = 130 +im[7554] = 0.0255 +ij[7554] = 28.2 +id[7555] = "2556-01-31T19:44:48" +ik[7555] = 5.258 +il[7555] = 29 +im[7555] = 0.0773 +ij[7555] = 27.1 +id[7556] = "2556-02-12T07:37:47" +ik[7556] = 32.145 +il[7556] = -40 +im[7556] = 0.064 +ij[7556] = 8 +id[7557] = "2556-02-14T03:35:12" +ik[7557] = 1.261 +il[7557] = 38 +im[7557] = 0.0757 +ij[7557] = 28.8 +id[7558] = "2556-02-20T18:41:00" +ik[7558] = 0 +il[7558] = -126 +im[7558] = 0.0145 +ij[7558] = 17 +id[7559] = "2556-04-27T17:42:56" +ik[7559] = 0.083 +il[7559] = 162 +im[7559] = 0.1263 +ij[7559] = 27.3 +id[7560] = "2556-06-01T16:20:28" +ik[7560] = 1.934 +il[7560] = 154 +im[7560] = 0.0146 +ij[7560] = 27.5 +id[7561] = "2556-06-10T14:36:31" +ik[7561] = 44.985 +il[7561] = -95 +im[7561] = 0.1402 +ij[7561] = 3 +id[7562] = "2556-07-11T11:21:41" +ik[7562] = -2.314 +il[7562] = -111 +im[7562] = 0.1082 +ij[7562] = 2 +id[7563] = "2556-07-18T23:01:22" +ik[7563] = 3.297 +il[7563] = 147 +im[7563] = 0.2102 +ij[7563] = 28.7 +id[7564] = "2556-08-28T18:56:11" +ik[7564] = 0 +il[7564] = -116 +im[7564] = 0.2469 +ij[7564] = 13 +id[7565] = "2556-09-30T14:10:19" +ik[7565] = 4.57 +il[7565] = -106 +im[7565] = 0.2861 +ij[7565] = 11 +id[7566] = "2556-10-30T17:58:47" +ik[7566] = 62.96 +il[7566] = -25 +im[7566] = 0.0347 +ij[7566] = 7.1164 +id[7567] = "2556-12-07T17:21:59" +ik[7567] = 0.4 +il[7567] = -10 +im[7567] = 0.1934 +ij[7567] = 28.7 +id[7568] = "2556-12-09T00:13:00" +ik[7568] = -25.929 +il[7568] = -101 +im[7568] = 0.1592 +ij[7568] = 15 +id[7569] = "2556-12-12T08:36:33" +ik[7569] = 105.57 +il[7569] = 165 +im[7569] = 0.028 +ij[7569] = 14 +id[7570] = "2556-12-21T19:36:48" +ik[7570] = -2.026 +il[7570] = 91 +im[7570] = 0.1378 +ij[7570] = 4 +id[7571] = "2557-01-12T13:34:36" +ik[7571] = 40.918 +il[7571] = 28 +im[7571] = 0.0735 +ij[7571] = 1 +id[7572] = "2557-01-18T09:34:09" +ik[7572] = 1.276 +il[7572] = 144 +im[7572] = 0.1203 +ij[7572] = 27.6 +id[7573] = "2557-04-04T21:21:15" +ik[7573] = 3.264 +il[7573] = -31 +im[7573] = 0.0151 +ij[7573] = 27.2 +id[7574] = "2557-04-15T21:36:00" +ik[7574] = 31.908 +il[7574] = 69 +im[7574] = 0.0603 +ij[7574] = 9 +id[7575] = "2557-04-30T05:07:59" +ik[7575] = 12 +il[7575] = 92 +im[7575] = 0.0569 +ij[7575] = 18 +id[7576] = "2557-05-22T10:52:21" +ik[7576] = 0.863 +il[7576] = -146 +im[7576] = 0.0447 +ij[7576] = 28.2 +id[7577] = "2557-07-13T09:12:49" +ik[7577] = 0.541 +il[7577] = 21 +im[7577] = 0.0246 +ij[7577] = 28.2 +id[7578] = "2557-07-17T20:53:38" +ik[7578] = 0.603 +il[7578] = -111 +im[7578] = 0.029 +ij[7578] = 28.1 +id[7579] = "2557-08-03T14:19:01" +ik[7579] = 1.618 +il[7579] = 146 +im[7579] = 0.056 +ij[7579] = 28.1 +id[7580] = "2557-09-18T01:12:24" +ik[7580] = 25.848 +il[7580] = 58 +im[7580] = 0.0531 +ij[7580] = 16 +id[7581] = "2557-10-06T03:53:26" +ik[7581] = 0.74 +il[7581] = -157 +im[7581] = 0.038 +ij[7581] = 12 +id[7582] = "2557-12-06T04:34:55" +ik[7582] = 0.566 +il[7582] = -97 +im[7582] = 0.005 +ij[7582] = 28.5 +id[7583] = "2557-12-19T05:31:40" +ik[7583] = 3.213 +il[7583] = 13 +im[7583] = 0.0084 +ij[7583] = 28.1 +id[7584] = "2557-12-26T07:28:40" +ik[7584] = 4.267 +il[7584] = 51 +im[7584] = 0.0622 +ij[7584] = 27.4 +id[7585] = "2558-01-09T15:14:37" +ik[7585] = 5.52 +il[7585] = 70 +im[7585] = 0.0607 +ij[7585] = 27.1 +id[7586] = "2558-01-12T16:06:21" +ik[7586] = 2.092 +il[7586] = 96 +im[7586] = 0.055 +ij[7586] = 28.2 +id[7587] = "2558-01-28T23:47:50" +ik[7587] = 1.466 +il[7587] = 135 +im[7587] = 0.0507 +ij[7587] = 28.8 +id[7588] = "2558-01-29T01:11:15" +ik[7588] = 0 +il[7588] = 112 +im[7588] = 0.0501 +ij[7588] = 17 +id[7589] = "2558-03-30T17:03:40" +ik[7589] = 0.217 +il[7589] = 91 +im[7589] = 0.0092 +ij[7589] = 27.3 +id[7590] = "2558-04-01T22:41:47" +ik[7590] = 34.496 +il[7590] = 28 +im[7590] = 0.0324 +ij[7590] = 8 +id[7591] = "2558-04-29T23:16:06" +ik[7591] = 1.021 +il[7591] = -74 +im[7591] = 0.0213 +ij[7591] = 27.5 +id[7592] = "2558-05-28T22:16:49" +ik[7592] = -24.873 +il[7592] = -142 +im[7592] = 0.0284 +ij[7592] = 15 +id[7593] = "2558-06-16T11:35:36" +ik[7593] = 1.209 +il[7593] = -163 +im[7593] = 0.0914 +ij[7593] = 28.7 +id[7594] = "2558-07-13T09:46:56" +ik[7594] = 4.2 +il[7594] = 125 +im[7594] = 0.064 +ij[7594] = 27.6 +id[7595] = "2558-08-05T21:12:31" +ik[7595] = 47.086 +il[7595] = -177 +im[7595] = 0.0881 +ij[7595] = 3 +id[7596] = "2558-09-01T14:36:23" +ik[7596] = -2.297 +il[7596] = -175 +im[7596] = 0.1508 +ij[7596] = 2 +id[7597] = "2558-10-26T08:37:03" +ik[7597] = 0 +il[7597] = 92 +im[7597] = 0.2527 +ij[7597] = 13 +id[7598] = "2558-11-01T17:15:48" +ik[7598] = 1.315 +il[7598] = 24 +im[7598] = 0.059 +ij[7598] = 28.2 +id[7599] = "2558-11-12T20:45:09" +ik[7599] = 6.099 +il[7599] = 81 +im[7599] = 0.0522 +ij[7599] = 28.1 +id[7600] = "2558-11-15T00:00:49" +ik[7600] = 4.074 +il[7600] = 53 +im[7600] = 0.0927 +ij[7600] = 27.2 +id[7601] = "2558-12-02T22:37:00" +ik[7601] = 1.38 +il[7601] = -134 +im[7601] = 0.2717 +ij[7601] = 11 +id[7602] = "2559-01-06T07:39:38" +ik[7602] = 71.96 +il[7602] = -111 +im[7602] = 0.0264 +ij[7602] = 7.1382 +id[7603] = "2559-02-28T05:55:30" +ik[7603] = -1.686 +il[7603] = 47 +im[7603] = 0.0689 +ij[7603] = 4 +id[7604] = "2559-03-01T15:23:11" +ik[7604] = 2.386 +il[7604] = -82 +im[7604] = 0.034 +ij[7604] = 27.2 +id[7605] = "2559-03-03T13:26:28" +ik[7605] = 128.2 +il[7605] = -35 +im[7605] = 0.0231 +ij[7605] = 14 +id[7606] = "2559-03-09T23:49:29" +ik[7606] = 37.853 +il[7606] = -130 +im[7606] = 0.1249 +ij[7606] = 1 +id[7607] = "2559-04-05T08:22:41" +ik[7607] = 12 +il[7607] = -10 +im[7607] = 0.089 +ij[7607] = 18 +id[7608] = "2559-05-23T22:44:53" +ik[7608] = 31.298 +il[7608] = -126 +im[7608] = 0.0513 +ij[7608] = 9 +id[7609] = "2559-08-31T10:40:19" +ik[7609] = 25.977 +il[7609] = -70 +im[7609] = 0.0504 +ij[7609] = 16 +id[7610] = "2559-11-14T01:22:20" +ik[7610] = 0.04 +il[7610] = 91 +im[7610] = 0.0264 +ij[7610] = 12 +id[7611] = "2560-01-09T16:09:17" +ik[7611] = 0 +il[7611] = -120 +im[7611] = 0.0427 +ij[7611] = 17 +id[7612] = "2560-01-15T18:26:24" +ik[7612] = 1.611 +il[7612] = -97 +im[7612] = 0.033 +ij[7612] = 28.8 +id[7613] = "2560-02-19T12:37:34" +ik[7613] = 0.236 +il[7613] = -40 +im[7613] = 0.058 +ij[7613] = 28.5 +id[7614] = "2560-03-07T18:14:21" +ik[7614] = 0.275 +il[7614] = 50 +im[7614] = 0.0478 +ij[7614] = 27.3 +id[7615] = "2560-03-08T17:41:37" +ik[7615] = 4.366 +il[7615] = 68 +im[7615] = 0.0361 +ij[7615] = 28.1 +id[7616] = "2560-04-05T21:28:37" +ik[7616] = 0.756 +il[7616] = -80 +im[7616] = 0.0494 +ij[7616] = 27.5 +id[7617] = "2560-05-05T08:18:40" +ik[7617] = -25.375 +il[7617] = 41 +im[7617] = 0.0456 +ij[7617] = 15 +id[7618] = "2560-06-03T05:16:09" +ik[7618] = 0.62 +il[7618] = 7 +im[7618] = 0.0482 +ij[7618] = 28.7 +id[7619] = "2560-06-15T10:24:37" +ik[7619] = 3.366 +il[7619] = 50 +im[7619] = 0.0716 +ij[7619] = 27.6 +id[7620] = "2560-06-15T22:30:40" +ik[7620] = 36.282 +il[7620] = -127 +im[7620] = 0.0665 +ij[7620] = 8 +id[7621] = "2560-08-19T14:49:44" +ik[7621] = 5.225 +il[7621] = -97 +im[7621] = 0.0484 +ij[7621] = 27.2 +id[7622] = "2560-09-08T06:03:22" +ik[7622] = 11 +il[7622] = -133 +im[7622] = 0.1163 +ij[7622] = 18 +id[7623] = "2560-09-21T01:14:35" +ik[7623] = 42.948 +il[7623] = 65 +im[7623] = 0.1111 +ij[7623] = 3 +id[7624] = "2560-10-03T14:24:51" +ik[7624] = -1.988 +il[7624] = -11 +im[7624] = 0.12 +ij[7624] = 2 +id[7625] = "2560-12-05T13:26:57" +ik[7625] = 0 +il[7625] = -104 +im[7625] = 0.1202 +ij[7625] = 13 +id[7626] = "2561-01-14T06:15:40" +ik[7626] = 3.95 +il[7626] = 6 +im[7626] = 0.1362 +ij[7626] = 11 +id[7627] = "2561-02-15T09:47:54" +ik[7627] = 3.118 +il[7627] = 62 +im[7627] = 0.121 +ij[7627] = 28.2 +id[7628] = "2561-02-22T12:29:33" +ik[7628] = 78.96 +il[7628] = 86 +im[7628] = 0.1509 +ij[7628] = 7.1684 +id[7629] = "2561-04-19T16:52:24" +ik[7629] = -1.561 +il[7629] = -168 +im[7629] = 0.0874 +ij[7629] = 4 +id[7630] = "2561-04-21T17:12:28" +ik[7630] = 37.012 +il[7630] = -154 +im[7630] = 0.049 +ij[7630] = 1 +id[7631] = "2561-04-29T00:56:25" +ik[7631] = 144.48 +il[7631] = 159 +im[7631] = 0.091 +ij[7631] = 14 +id[7632] = "2561-06-29T00:19:33" +ik[7632] = 31.547 +il[7632] = 32 +im[7632] = 0.0571 +ij[7632] = 9 +id[7633] = "2561-08-12T00:05:04" +ik[7633] = 26.103 +il[7633] = 100 +im[7633] = 0.05 +ij[7633] = 16 +id[7634] = "2561-09-14T23:42:39" +ik[7634] = 3.827 +il[7634] = 75 +im[7634] = 0.0222 +ij[7634] = 28.1 +id[7635] = "2561-10-19T16:27:18" +ik[7635] = 0.494 +il[7635] = 164 +im[7635] = 0.0582 +ij[7635] = 28.2 +id[7636] = "2561-12-21T00:21:03" +ik[7636] = 0 +il[7636] = -58 +im[7636] = 0.0252 +ij[7636] = 17 +id[7637] = "2561-12-31T04:02:20" +ik[7637] = 0.78 +il[7637] = -13 +im[7637] = 0.0599 +ij[7637] = 12 +id[7638] = "2562-03-16T05:39:16" +ik[7638] = 0.627 +il[7638] = 139 +im[7638] = 0.0512 +ij[7638] = 27.5 +id[7639] = "2562-04-15T02:19:27" +ik[7639] = -25.643 +il[7639] = 127 +im[7639] = 0.0466 +ij[7639] = 15 +id[7640] = "2562-04-19T01:42:11" +ik[7640] = 0.307 +il[7640] = 177 +im[7640] = 0.0064 +ij[7640] = 28.5 +id[7641] = "2562-05-24T17:02:16" +ik[7641] = 2.949 +il[7641] = -64 +im[7641] = 0.0654 +ij[7641] = 27.6 +id[7642] = "2562-05-25T18:54:41" +ik[7642] = 0.256 +il[7642] = -82 +im[7642] = 0.0622 +ij[7642] = 28.7 +id[7643] = "2562-05-29T18:57:42" +ik[7643] = 5.401 +il[7643] = -43 +im[7643] = 0.0217 +ij[7643] = 28.1 +id[7644] = "2562-06-26T04:27:52" +ik[7644] = 0.81 +il[7644] = 84 +im[7644] = 0.0429 +ij[7644] = 28.2 +id[7645] = "2562-07-26T16:01:23" +ik[7645] = 4.809 +il[7645] = -151 +im[7645] = 0.0239 +ij[7645] = 27.2 +id[7646] = "2562-08-14T19:05:55" +ik[7646] = 12 +il[7646] = -10 +im[7646] = 0.0429 +ij[7646] = 18 +id[7647] = "2562-08-28T13:16:26" +ik[7647] = 34.284 +il[7647] = -148 +im[7647] = 0.0399 +ij[7647] = 8 +id[7648] = "2562-11-03T22:11:32" +ik[7648] = -1.749 +il[7648] = 12 +im[7648] = 0.0433 +ij[7648] = 2 +id[7649] = "2562-11-06T14:12:28" +ik[7649] = 38.844 +il[7649] = 157 +im[7649] = 0.023 +ij[7649] = 3 +id[7650] = "2562-12-24T08:28:51" +ik[7650] = 21.601 +il[7650] = -15 +im[7650] = 0.1459 +ij[7650] = 16 +id[7651] = "2563-01-09T00:56:53" +ik[7651] = 0 +il[7651] = -110 +im[7651] = 0.1734 +ij[7651] = 13 +id[7652] = "2563-02-18T20:13:00" +ik[7652] = 4.33 +il[7652] = -27 +im[7652] = 0.2031 +ij[7652] = 11 +id[7653] = "2563-04-01T04:03:30" +ik[7653] = 82.13 +il[7653] = 34 +im[7653] = 0.1294 +ij[7653] = 7.2005 +id[7654] = "2563-05-31T12:03:27" +ik[7654] = 37.832 +il[7654] = 132 +im[7654] = 0.0109 +ij[7654] = 1 +id[7655] = "2563-06-04T04:11:32" +ik[7655] = -1.588 +il[7655] = -74 +im[7655] = 0.0799 +ij[7655] = 4 +id[7656] = "2563-06-07T22:38:17" +ik[7656] = 149.9 +il[7656] = 45 +im[7656] = 0.0995 +ij[7656] = 14 +id[7657] = "2563-08-08T21:30:13" +ik[7657] = 32.645 +il[7657] = -58 +im[7657] = 0.015 +ij[7657] = 9 +id[7658] = "2563-09-17T05:05:28" +ik[7658] = 0.901 +il[7658] = -149 +im[7658] = 0.066 +ij[7658] = 28.2 +id[7659] = "2563-10-29T05:42:58" +ik[7659] = 3.511 +il[7659] = -109 +im[7659] = 0.0615 +ij[7659] = 27.4 +id[7660] = "2563-11-12T03:05:41" +ik[7660] = 6.232 +il[7660] = 65 +im[7660] = 0.0682 +ij[7660] = 27.1 +id[7661] = "2563-12-02T07:12:38" +ik[7661] = 0 +il[7661] = -157 +im[7661] = 0.0106 +ij[7661] = 17 +id[7662] = "2563-12-02T23:35:25" +ik[7662] = 1.162 +il[7662] = -35 +im[7662] = 0.0044 +ij[7662] = 28.1 +id[7663] = "2563-12-14T17:39:50" +ik[7663] = 0.006 +il[7663] = 166 +im[7663] = 0.0452 +ij[7663] = 28.2 +id[7664] = "2563-12-20T05:03:25" +ik[7664] = 1.827 +il[7664] = 48 +im[7664] = 0.0273 +ij[7664] = 28.8 +id[7665] = "2564-03-07T03:42:47" +ik[7665] = 0.98 +il[7665] = 137 +im[7665] = 0.063 +ij[7665] = 12 +id[7666] = "2564-03-25T15:12:18" +ik[7666] = -25.832 +il[7666] = -79 +im[7666] = 0.0356 +ij[7666] = 15 +id[7667] = "2564-06-16T17:33:47" +ik[7667] = 0.558 +il[7667] = 3 +im[7667] = 0.0649 +ij[7667] = 28.5 +id[7668] = "2564-07-04T00:43:21" +ik[7668] = 2.214 +il[7668] = 65 +im[7668] = 0.0458 +ij[7668] = 28.2 +id[7669] = "2564-07-05T02:19:56" +ik[7669] = 4.524 +il[7669] = 51 +im[7669] = 0.0344 +ij[7669] = 27.2 +id[7670] = "2564-07-24T15:22:52" +ik[7670] = 12 +il[7670] = 46 +im[7670] = 0.0251 +ij[7670] = 18 +id[7671] = "2564-10-14T20:59:06" +ik[7671] = 32.033 +il[7671] = 39 +im[7671] = 0.0379 +ij[7671] = 8 +id[7672] = "2564-12-06T20:13:20" +ik[7672] = -1.615 +il[7672] = -158 +im[7672] = 0.1008 +ij[7672] = 2 +id[7673] = "2564-12-16T04:15:27" +ik[7673] = 36.623 +il[7673] = 172 +im[7673] = 0.0731 +ij[7673] = 3 +id[7674] = "2565-02-10T22:38:45" +ik[7674] = 0 +il[7674] = 84 +im[7674] = 0.1481 +ij[7674] = 13 +id[7675] = "2565-02-26T16:38:45" +ik[7675] = 1.847 +il[7675] = -34 +im[7675] = 0.1995 +ij[7675] = 28.2 +id[7676] = "2565-03-23T22:37:01" +ik[7676] = 3.35 +il[7676] = 97 +im[7676] = 0.2112 +ij[7676] = 11 +id[7677] = "2565-04-13T15:21:58" +ik[7677] = 0.549 +il[7677] = -177 +im[7677] = 0.0272 +ij[7677] = 28.1 +id[7678] = "2565-05-04T21:41:21" +ik[7678] = 82.96 +il[7678] = -67 +im[7678] = 0.1725 +ij[7678] = 7.2098 +id[7679] = "2565-06-25T20:04:49" +ik[7679] = 26.241 +il[7679] = 100 +im[7679] = 0.0757 +ij[7679] = 16 +id[7680] = "2565-07-08T09:40:09" +ik[7680] = 147.46 +il[7680] = 19 +im[7680] = 0.0512 +ij[7680] = 14 +id[7681] = "2565-07-10T18:55:26" +ik[7681] = 40.212 +il[7681] = -97 +im[7681] = 0.0942 +ij[7681] = 1 +id[7682] = "2565-07-16T21:48:27" +ik[7682] = -1.747 +il[7682] = -81 +im[7682] = 0.0903 +ij[7682] = 4 +id[7683] = "2565-09-28T12:34:39" +ik[7683] = 34.454 +il[7683] = 55 +im[7683] = 0.0339 +ij[7683] = 9 +id[7684] = "2565-10-07T11:19:34" +ik[7684] = 3.125 +il[7684] = 161 +im[7684] = 0.0792 +ij[7684] = 27.4 +id[7685] = "2565-11-11T20:32:13" +ik[7685] = 0 +il[7685] = 9 +im[7685] = 0.0115 +ij[7685] = 17 +id[7686] = "2565-12-05T11:30:05" +ik[7686] = 1.948 +il[7686] = 16 +im[7686] = 0.0681 +ij[7686] = 28.8 +id[7687] = "2566-01-05T18:38:55" +ik[7687] = 0.163 +il[7687] = -143 +im[7687] = 0.0498 +ij[7687] = 27.3 +id[7688] = "2566-01-13T06:21:24" +ik[7688] = 0.167 +il[7688] = 116 +im[7688] = 0.0522 +ij[7688] = 28.6 +id[7689] = "2566-02-03T06:12:11" +ik[7689] = 0.5 +il[7689] = -35 +im[7689] = 0.0526 +ij[7689] = 27.5 +id[7690] = "2566-02-14T21:36:30" +ik[7690] = 2.2 +il[7690] = -152 +im[7690] = 0.0685 +ij[7690] = 28.1 +id[7691] = "2566-03-06T05:55:13" +ik[7691] = -25.991 +il[7691] = -85 +im[7691] = 0.0308 +ij[7691] = 15 +id[7692] = "2566-05-16T23:59:41" +ik[7692] = 0.04 +il[7692] = -7 +im[7692] = 0.0449 +ij[7692] = 12 +id[7693] = "2566-07-05T19:49:29" +ik[7693] = 12 +il[7693] = -19 +im[7693] = 0.0354 +ij[7693] = 18 +id[7694] = "2566-07-31T09:46:17" +ik[7694] = 1.341 +il[7694] = 30 +im[7694] = 0.0038 +ij[7694] = 28.1 +id[7695] = "2566-08-30T19:27:25" +ik[7695] = 0.189 +il[7695] = 179 +im[7695] = 0.0167 +ij[7695] = 28.5 +id[7696] = "2566-11-20T20:48:35" +ik[7696] = 25.132 +il[7696] = -128 +im[7696] = 0.0455 +ij[7696] = 16 +id[7697] = "2566-11-20T23:22:39" +ik[7697] = 30.836 +il[7697] = -165 +im[7697] = 0.0441 +ij[7697] = 8 +id[7698] = "2567-01-16T18:12:27" +ik[7698] = -1.582 +il[7698] = 100 +im[7698] = 0.066 +ij[7698] = 2 +id[7699] = "2567-01-24T17:20:32" +ik[7699] = 36.24 +il[7699] = -171 +im[7699] = 0.0962 +ij[7699] = 3 +id[7700] = "2567-03-23T09:40:38" +ik[7700] = 0 +il[7700] = 136 +im[7700] = 0.1788 +ij[7700] = 13 +id[7701] = "2567-04-30T13:16:08" +ik[7701] = 0.98 +il[7701] = 69 +im[7701] = 0.2411 +ij[7701] = 11 +id[7702] = "2567-06-06T01:11:10" +ik[7702] = 1.393 +il[7702] = 27 +im[7702] = 0.0432 +ij[7702] = 28.2 +id[7703] = "2567-06-09T10:45:14" +ik[7703] = 78.04 +il[7703] = -84 +im[7703] = 0.1751 +ij[7703] = 7.1748 +id[7704] = "2567-08-06T20:16:05" +ik[7704] = 136.44 +il[7704] = -18 +im[7704] = 0.1325 +ij[7704] = 14 +id[7705] = "2567-08-20T17:38:41" +ik[7705] = -2.025 +il[7705] = 157 +im[7705] = 0.1396 +ij[7705] = 4 +id[7706] = "2567-08-25T15:33:33" +ik[7706] = 43.916 +il[7706] = -124 +im[7706] = 0.0741 +ij[7706] = 1 +id[7707] = "2567-09-11T23:00:08" +ik[7707] = 2.417 +il[7707] = -66 +im[7707] = 0.0346 +ij[7707] = 27.4 +id[7708] = "2567-10-21T06:29:00" +ik[7708] = 0 +il[7708] = -153 +im[7708] = 0.0701 +ij[7708] = 17 +id[7709] = "2567-11-19T16:11:41" +ik[7709] = 2.156 +il[7709] = -9 +im[7709] = 0.0538 +ij[7709] = 28.8 +id[7710] = "2567-12-06T16:58:39" +ik[7710] = 35.559 +il[7710] = 147 +im[7710] = 0.0038 +ij[7710] = 9 +id[7711] = "2567-12-15T04:28:29" +ik[7711] = 0.008 +il[7711] = 58 +im[7711] = 0.0832 +ij[7711] = 27.3 +id[7712] = "2568-01-13T04:01:44" +ik[7712] = 0.486 +il[7712] = -11 +im[7712] = 0.0755 +ij[7712] = 27.5 +id[7713] = "2568-01-27T20:31:00" +ik[7713] = 0.945 +il[7713] = -115 +im[7713] = 0.0727 +ij[7713] = 28.6 +id[7714] = "2568-02-14T06:39:03" +ik[7714] = -26.146 +il[7714] = -97 +im[7714] = 0.0434 +ij[7714] = 15 +id[7715] = "2568-03-23T17:07:28" +ik[7715] = 2.168 +il[7715] = 116 +im[7715] = 0.0677 +ij[7715] = 27.6 +id[7716] = "2568-04-06T01:23:37" +ik[7716] = 0.406 +il[7716] = 128 +im[7716] = 0.0531 +ij[7716] = 28.2 +id[7717] = "2568-04-27T06:59:03" +ik[7717] = 1.411 +il[7717] = -113 +im[7717] = 0.0363 +ij[7717] = 28.1 +id[7718] = "2568-06-16T10:40:56" +ik[7718] = 12 +il[7718] = -46 +im[7718] = 0.0502 +ij[7718] = 18 +id[7719] = "2568-07-07T09:02:48" +ik[7719] = 0.89 +il[7719] = 180 +im[7719] = 0.0352 +ij[7719] = 12 +id[7720] = "2568-10-04T19:19:51" +ik[7720] = 6.151 +il[7720] = 2 +im[7720] = 0.006 +ij[7720] = 28.1 +id[7721] = "2568-10-31T07:51:28" +ik[7721] = 25.444 +il[7721] = 70 +im[7721] = 0.0293 +ij[7721] = 16 +id[7722] = "2568-11-18T14:51:09" +ik[7722] = 1.055 +il[7722] = 142 +im[7722] = 0.0227 +ij[7722] = 28.2 +id[7723] = "2568-12-02T03:36:09" +ik[7723] = 0.11 +il[7723] = 81 +im[7723] = 0.0134 +ij[7723] = 28.5 +id[7724] = "2568-12-23T15:39:06" +ik[7724] = 30.665 +il[7724] = 107 +im[7724] = 0.0751 +ij[7724] = 8 +id[7725] = "2569-02-23T23:41:39" +ik[7725] = 5.12 +il[7725] = -139 +im[7725] = 0.0361 +ij[7725] = 27.4 +id[7726] = "2569-03-10T10:44:32" +ik[7726] = 37.893 +il[7726] = -167 +im[7726] = 0.0105 +ij[7726] = 3 +id[7727] = "2569-03-15T04:38:15" +ik[7727] = -1.688 +il[7727] = -30 +im[7727] = 0.1112 +ij[7727] = 2 +id[7728] = "2569-03-16T10:20:01" +ik[7728] = 4.779 +il[7728] = -104 +im[7728] = 0.1292 +ij[7728] = 27.1 +id[7729] = "2569-04-25T00:18:38" +ik[7729] = 0 +il[7729] = 61 +im[7729] = 0.087 +ij[7729] = 17 +id[7730] = "2569-05-15T20:16:34" +ik[7730] = 0 +il[7730] = -42 +im[7730] = 0.2097 +ij[7730] = 13 +id[7731] = "2569-05-18T12:50:49" +ik[7731] = 0 +il[7731] = 95 +im[7731] = 0.0983 +ij[7731] = 18 +id[7732] = "2569-06-17T10:43:15" +ik[7732] = 2.99 +il[7732] = 39 +im[7732] = 0.0966 +ij[7732] = 11 +id[7733] = "2569-07-24T19:19:10" +ik[7733] = 69.96 +il[7733] = 76 +im[7733] = 0.075 +ij[7733] = 7.1171 +id[7734] = "2569-09-10T11:29:51" +ik[7734] = 117.63 +il[7734] = -59 +im[7734] = 0.1503 +ij[7734] = 14 +id[7735] = "2569-09-19T08:23:48" +ik[7735] = 0 +il[7735] = 75 +im[7735] = 0.0194 +ij[7735] = 17 +id[7736] = "2569-09-21T04:09:49" +ik[7736] = -2.334 +il[7736] = 156 +im[7736] = 0.0605 +ij[7736] = 4 +id[7737] = "2569-10-12T08:50:29" +ik[7737] = 46.37 +il[7737] = -65 +im[7737] = 0.1455 +ij[7737] = 1 +id[7738] = "2569-10-27T03:55:17" +ik[7738] = 2.787 +il[7738] = 154 +im[7738] = 0.1468 +ij[7738] = 28.8 +id[7739] = "2569-11-17T14:47:14" +ik[7739] = 0.454 +il[7739] = -158 +im[7739] = 0.046 +ij[7739] = 27.3 +id[7740] = "2569-12-18T12:35:19" +ik[7740] = 0.582 +il[7740] = 179 +im[7740] = 0.0758 +ij[7740] = 27.5 +id[7741] = "2570-01-22T07:36:52" +ik[7741] = -26.306 +il[7741] = -131 +im[7741] = 0.0902 +ij[7741] = 15 +id[7742] = "2570-02-08T02:24:34" +ik[7742] = 2.013 +il[7742] = 108 +im[7742] = 0.0502 +ij[7742] = 28.6 +id[7743] = "2570-02-10T12:35:06" +ik[7743] = 34.148 +il[7743] = -22 +im[7743] = 0.0121 +ij[7743] = 9 +id[7744] = "2570-03-02T04:00:00" +ik[7744] = 1.879 +il[7744] = -66 +im[7744] = 0.0615 +ij[7744] = 27.6 +id[7745] = "2570-03-14T12:55:52" +ik[7745] = 1.228 +il[7745] = -82 +im[7745] = 0.0349 +ij[7745] = 28.2 +id[7746] = "2570-04-24T23:40:14" +ik[7746] = 1.035 +il[7746] = 149 +im[7746] = 0.0075 +ij[7746] = 28.2 +id[7747] = "2570-04-28T13:07:32" +ik[7747] = 0.785 +il[7747] = -19 +im[7747] = 0.0519 +ij[7747] = 28.7 +id[7748] = "2570-05-06T17:46:16" +ik[7748] = 3.799 +il[7748] = -7 +im[7748] = 0.0302 +ij[7748] = 27.2 +id[7749] = "2570-05-28T22:09:28" +ik[7749] = 12 +il[7749] = 137 +im[7749] = 0.059 +ij[7749] = 18 +id[7750] = "2570-08-17T07:45:28" +ik[7750] = 1.14 +il[7750] = 48 +im[7750] = 0.0056 +ij[7750] = 12 +id[7751] = "2570-10-13T07:59:18" +ik[7751] = 25.644 +il[7751] = 75 +im[7751] = 0.007 +ij[7751] = 16 +id[7752] = "2570-11-09T23:40:30" +ik[7752] = 0.928 +il[7752] = 117 +im[7752] = 0.0179 +ij[7752] = 28.2 +id[7753] = "2571-01-25T16:35:31" +ik[7753] = 4.674 +il[7753] = -125 +im[7753] = 0.0452 +ij[7753] = 27.4 +id[7754] = "2571-01-27T22:11:06" +ik[7754] = 31.515 +il[7754] = 173 +im[7754] = 0.0696 +ij[7754] = 8 +id[7755] = "2571-02-10T06:27:32" +ik[7755] = 5.138 +il[7755] = 175 +im[7755] = 0.0691 +ij[7755] = 27.1 +id[7756] = "2571-03-02T20:47:08" +ik[7756] = 23 +il[7756] = 155 +im[7756] = 0.0632 +ij[7756] = 17 +id[7757] = "2571-03-04T09:46:49" +ik[7757] = 0.091 +il[7757] = -25 +im[7757] = 0.039 +ij[7757] = 28.5 +id[7758] = "2571-04-18T18:27:46" +ik[7758] = 1.426 +il[7758] = -87 +im[7758] = 0.0147 +ij[7758] = 28.8 +id[7759] = "2571-05-13T05:18:23" +ik[7759] = 42.498 +il[7759] = -18 +im[7759] = 0.1173 +ij[7759] = 3 +id[7760] = "2571-05-15T18:39:51" +ik[7760] = 0.54 +il[7760] = 166 +im[7760] = 0.0448 +ij[7760] = 27.3 +id[7761] = "2571-06-09T21:07:37" +ik[7761] = -2.11 +il[7761] = 7 +im[7761] = 0.169 +ij[7761] = 2 +id[7762] = "2571-07-02T09:01:56" +ik[7762] = 3.755 +il[7762] = 43 +im[7762] = 0.1684 +ij[7762] = 27.5 +id[7763] = "2571-07-29T04:52:58" +ik[7763] = 3.277 +il[7763] = 2 +im[7763] = 0.1758 +ij[7763] = 28.2 +id[7764] = "2571-07-30T11:30:22" +ik[7764] = 0 +il[7764] = -85 +im[7764] = 0.2464 +ij[7764] = 13 +id[7765] = "2571-08-30T06:32:35" +ik[7765] = 6.49 +il[7765] = -84 +im[7765] = 0.3809 +ij[7765] = 11 +id[7766] = "2571-09-30T10:32:57" +ik[7766] = 61.96 +il[7766] = -8 +im[7766] = 0.13 +ij[7766] = 7.1045 +id[7767] = "2571-10-30T12:49:37" +ik[7767] = 2.24 +il[7767] = -107 +im[7767] = 0.0607 +ij[7767] = 27.5 +id[7768] = "2571-11-10T12:46:45" +ik[7768] = 103.05 +il[7768] = 0 +im[7768] = 0.1186 +ij[7768] = 14 +id[7769] = "2571-11-20T22:31:11" +ik[7769] = -2.212 +il[7769] = -45 +im[7769] = 0.1893 +ij[7769] = 4 +id[7770] = "2571-12-17T00:26:29" +ik[7770] = 42.844 +il[7770] = 178 +im[7770] = 0.1389 +ij[7770] = 1 +id[7771] = "2571-12-24T14:17:46" +ik[7771] = -26.356 +il[7771] = 43 +im[7771] = 0.0201 +ij[7771] = 15 +id[7772] = "2572-02-03T12:54:05" +ik[7772] = 1.476 +il[7772] = 94 +im[7772] = 0.0766 +ij[7772] = 27.6 +id[7773] = "2572-02-17T13:51:09" +ik[7773] = 2.889 +il[7773] = -148 +im[7773] = 0.0575 +ij[7773] = 28.6 +id[7774] = "2572-03-30T17:51:32" +ik[7774] = 32.395 +il[7774] = -170 +im[7774] = 0.0699 +ij[7774] = 9 +id[7775] = "2572-04-14T09:14:55" +ik[7775] = 3.452 +il[7775] = 97 +im[7775] = 0.0521 +ij[7775] = 27.2 +id[7776] = "2572-04-20T06:06:07" +ik[7776] = 1.063 +il[7776] = -157 +im[7776] = 0.0349 +ij[7776] = 28.7 +id[7777] = "2572-05-08T10:28:10" +ik[7777] = 12 +il[7777] = -54 +im[7777] = 0.0613 +ij[7777] = 18 +id[7778] = "2572-06-25T05:06:43" +ik[7778] = 2.69 +il[7778] = 128 +im[7778] = 0.0492 +ij[7778] = 28.1 +id[7779] = "2572-09-21T23:59:42" +ik[7779] = 0.93 +il[7779] = -21 +im[7779] = 0.0165 +ij[7779] = 12 +id[7780] = "2572-09-24T21:08:10" +ik[7780] = 25.797 +il[7780] = -110 +im[7780] = 0.0207 +ij[7780] = 16 +id[7781] = "2573-01-03T02:42:12" +ik[7781] = 4.368 +il[7781] = 64 +im[7781] = 0.01 +ij[7781] = 27.4 +id[7782] = "2573-01-17T15:32:39" +ik[7782] = 5.426 +il[7782] = 8 +im[7782] = 0.024 +ij[7782] = 27.1 +id[7783] = "2573-02-06T04:16:31" +ik[7783] = 0 +il[7783] = -4 +im[7783] = 0.0667 +ij[7783] = 17 +id[7784] = "2573-03-11T06:49:19" +ik[7784] = 33.467 +il[7784] = -83 +im[7784] = 0.053 +ij[7784] = 8 +id[7785] = "2573-03-25T00:59:21" +ik[7785] = 1.215 +il[7785] = 135 +im[7785] = 0.0803 +ij[7785] = 28.8 +id[7786] = "2573-04-09T12:11:28" +ik[7786] = 0.153 +il[7786] = 113 +im[7786] = 0.0558 +ij[7786] = 27.3 +id[7787] = "2573-05-08T08:45:28" +ik[7787] = 0.381 +il[7787] = 79 +im[7787] = 0.0666 +ij[7787] = 28.5 +id[7788] = "2573-05-10T16:42:11" +ik[7788] = 1.225 +il[7788] = -18 +im[7788] = 0.0221 +ij[7788] = 27.5 +id[7789] = "2573-06-08T07:35:35" +ik[7789] = -24.495 +il[7789] = 32 +im[7789] = 0.0347 +ij[7789] = 15 +id[7790] = "2573-07-18T06:11:22" +ik[7790] = 47.332 +il[7790] = 79 +im[7790] = 0.1392 +ij[7790] = 3 +id[7791] = "2573-07-29T02:23:05" +ik[7791] = 4.907 +il[7791] = -119 +im[7791] = 0.1715 +ij[7791] = 27.6 +id[7792] = "2573-08-16T10:57:52" +ik[7792] = -2.383 +il[7792] = -68 +im[7792] = 0.1494 +ij[7792] = 2 +id[7793] = "2573-08-27T20:35:39" +ik[7793] = 0.64 +il[7793] = -101 +im[7793] = 0.218 +ij[7793] = 28.6 +id[7794] = "2573-10-06T12:47:16" +ik[7794] = 0 +il[7794] = 46 +im[7794] = 0.2487 +ij[7794] = 13 +id[7795] = "2573-11-11T13:57:55" +ik[7795] = 0.26 +il[7795] = 1 +im[7795] = 0.0682 +ij[7795] = 11 +id[7796] = "2573-12-12T15:33:06" +ik[7796] = 2.107 +il[7796] = 112 +im[7796] = 0.2346 +ij[7796] = 28.2 +id[7797] = "2573-12-12T21:01:09" +ik[7797] = 67.34 +il[7797] = 27 +im[7797] = 0.2387 +ij[7797] = 7.1298 +id[7798] = "2574-02-02T06:19:59" +ik[7798] = 118.73 +il[7798] = 13 +im[7798] = 0.0378 +ij[7798] = 14 +id[7799] = "2574-02-04T07:52:06" +ik[7799] = -1.789 +il[7799] = 10 +im[7799] = 0.0947 +ij[7799] = 4 +id[7800] = "2574-02-18T04:22:22" +ik[7800] = 38.74 +il[7800] = -167 +im[7800] = 0.066 +ij[7800] = 1 +id[7801] = "2574-02-20T22:13:16" +ik[7801] = 3.562 +il[7801] = -49 +im[7801] = 0.1102 +ij[7801] = 28.6 +id[7802] = "2574-03-18T03:10:31" +ik[7802] = 2.843 +il[7802] = 114 +im[7802] = 0.0418 +ij[7802] = 27.2 +id[7803] = "2574-04-10T02:00:42" +ik[7803] = 1.439 +il[7803] = -12 +im[7803] = 0.0636 +ij[7803] = 28.7 +id[7804] = "2574-04-16T02:11:56" +ik[7804] = 12 +il[7804] = 42 +im[7804] = 0.0396 +ij[7804] = 18 +id[7805] = "2574-05-09T12:53:19" +ik[7805] = 31.433 +il[7805] = 102 +im[7805] = 0.0454 +ij[7805] = 9 +id[7806] = "2574-08-18T01:38:33" +ik[7806] = 0.655 +il[7806] = 158 +im[7806] = 0.0223 +ij[7806] = 28.2 +id[7807] = "2574-08-22T23:07:10" +ik[7807] = 0.58 +il[7807] = -124 +im[7807] = 0.0362 +ij[7807] = 28.1 +id[7808] = "2574-09-07T09:49:04" +ik[7808] = 25.929 +il[7808] = -129 +im[7808] = 0.0397 +ij[7808] = 16 +id[7809] = "2574-10-29T06:53:56" +ik[7809] = 0.35 +il[7809] = 67 +im[7809] = 0.0262 +ij[7809] = 12 +id[7810] = "2574-12-28T18:18:03" +ik[7810] = 5.661 +il[7810] = -44 +im[7810] = 0.0132 +ij[7810] = 27.1 +id[7811] = "2575-01-17T03:32:16" +ik[7811] = 0 +il[7811] = -3 +im[7811] = 0.0592 +ij[7811] = 17 +id[7812] = "2575-02-04T10:41:00" +ik[7812] = 4.481 +il[7812] = 63 +im[7812] = 0.0558 +ij[7812] = 28.1 +id[7813] = "2575-03-08T17:28:02" +ik[7813] = 1.14 +il[7813] = -82 +im[7813] = 0.0257 +ij[7813] = 28.8 +id[7814] = "2575-03-17T01:48:06" +ik[7814] = 0.263 +il[7814] = -128 +im[7814] = 0.0698 +ij[7814] = 27.3 +id[7815] = "2575-04-15T12:51:49" +ik[7815] = 0.835 +il[7815] = -13 +im[7815] = 0.0749 +ij[7815] = 27.5 +id[7816] = "2575-04-19T22:48:27" +ik[7816] = 2.606 +il[7816] = -120 +im[7816] = 0.038 +ij[7816] = 28.2 +id[7817] = "2575-05-14T19:44:28" +ik[7817] = -25.223 +il[7817] = 179 +im[7817] = 0.0802 +ij[7817] = 15 +id[7818] = "2575-05-14T23:54:39" +ik[7818] = 35.97 +il[7818] = 104 +im[7818] = 0.0798 +ij[7818] = 8 +id[7819] = "2575-06-26T01:07:28" +ik[7819] = 3.609 +il[7819] = 134 +im[7819] = 0.1013 +ij[7819] = 27.6 +id[7820] = "2575-07-01T19:17:04" +ik[7820] = 0.201 +il[7820] = -82 +im[7820] = 0.0588 +ij[7820] = 28.5 +id[7821] = "2575-08-19T19:31:49" +ik[7821] = 0.637 +il[7821] = 35 +im[7821] = 0.0874 +ij[7821] = 28.6 +id[7822] = "2575-09-01T17:28:05" +ik[7822] = 5.458 +il[7822] = -167 +im[7822] = 0.0502 +ij[7822] = 27.2 +id[7823] = "2575-09-03T02:21:24" +ik[7823] = 44.835 +il[7823] = 73 +im[7823] = 0.0837 +ij[7823] = 3 +id[7824] = "2575-09-22T10:49:00" +ik[7824] = -2.107 +il[7824] = 136 +im[7824] = 0.1397 +ij[7824] = 2 +id[7825] = "2575-09-23T01:22:36" +ik[7825] = 11 +il[7825] = -76 +im[7825] = 0.1342 +ij[7825] = 18 +id[7826] = "2575-09-25T04:35:13" +ik[7826] = 0.521 +il[7826] = -103 +im[7826] = 0.0959 +ij[7826] = 28.7 +id[7827] = "2575-11-23T06:20:28" +ik[7827] = 0 +il[7827] = 86 +im[7827] = 0.0246 +ij[7827] = 13 +id[7828] = "2575-12-15T18:48:30" +ik[7828] = 0.505 +il[7828] = 118 +im[7828] = 0.2184 +ij[7828] = 28.1 +id[7829] = "2575-12-30T19:34:49" +ik[7829] = 3.31 +il[7829] = -130 +im[7829] = 0.1271 +ij[7829] = 11 +id[7830] = "2576-01-02T03:31:50" +ik[7830] = 12 +il[7830] = -41 +im[7830] = 0.0332 +ij[7830] = 17 +id[7831] = "2576-01-14T15:10:53" +ik[7831] = 3.789 +il[7831] = -101 +im[7831] = 0.0745 +ij[7831] = 28.1 +id[7832] = "2576-02-06T05:25:04" +ik[7832] = 74.96 +il[7832] = -113 +im[7832] = 0.1943 +ij[7832] = 7.1555 +id[7833] = "2576-02-14T04:32:07" +ik[7833] = 6.388 +il[7833] = -24 +im[7833] = 0.0884 +ij[7833] = 28.6 +id[7834] = "2576-03-10T01:51:52" +ik[7834] = 12 +il[7834] = -110 +im[7834] = 0.0283 +ij[7834] = 18 +id[7835] = "2576-03-18T10:04:44" +ik[7835] = 2.262 +il[7835] = -155 +im[7835] = 0.1196 +ij[7835] = 28.7 +id[7836] = "2576-03-31T20:17:54" +ik[7836] = -1.59 +il[7836] = 179 +im[7836] = 0.1184 +ij[7836] = 4 +id[7837] = "2576-04-05T13:09:24" +ik[7837] = 37.125 +il[7837] = -30 +im[7837] = 0.057 +ij[7837] = 1 +id[7838] = "2576-04-09T09:10:53" +ik[7838] = 138.12 +il[7838] = 66 +im[7838] = 0.0385 +ij[7838] = 14 +id[7839] = "2576-06-14T10:31:58" +ik[7839] = 31.356 +il[7839] = -46 +im[7839] = 0.0491 +ij[7839] = 9 +id[7840] = "2576-07-20T18:46:12" +ik[7840] = 0.152 +il[7840] = 179 +im[7840] = 0.0513 +ij[7840] = 28.2 +id[7841] = "2576-08-14T22:24:19" +ik[7841] = 5.936 +il[7841] = 7 +im[7841] = 0.0094 +ij[7841] = 28.1 +id[7842] = "2576-08-19T09:01:55" +ik[7842] = 26.055 +il[7842] = -110 +im[7842] = 0.0542 +ij[7842] = 16 +id[7843] = "2576-09-21T23:03:38" +ik[7843] = 1.198 +il[7843] = 5 +im[7843] = 0.0443 +ij[7843] = 28.2 +id[7844] = "2576-12-10T17:08:09" +ik[7844] = 0.47 +il[7844] = 171 +im[7844] = 0.0387 +ij[7844] = 12 +id[7845] = "2576-12-28T07:13:23" +ik[7845] = 0 +il[7845] = -64 +im[7845] = 0.0623 +ij[7845] = 17 +id[7846] = "2577-02-21T12:46:43" +ik[7846] = 1.065 +il[7846] = 29 +im[7846] = 0.0494 +ij[7846] = 28.8 +id[7847] = "2577-02-23T09:28:47" +ik[7847] = 0.278 +il[7847] = 96 +im[7847] = 0.0621 +ij[7847] = 27.3 +id[7848] = "2577-03-24T04:46:25" +ik[7848] = 0.669 +il[7848] = 93 +im[7848] = 0.0623 +ij[7848] = 27.5 +id[7849] = "2577-04-07T22:04:02" +ik[7849] = 0.135 +il[7849] = -29 +im[7849] = 0.0649 +ij[7849] = 28.2 +id[7850] = "2577-04-22T21:45:15" +ik[7850] = -25.553 +il[7850] = 126 +im[7850] = 0.0672 +ij[7850] = 15 +id[7851] = "2577-04-26T22:28:20" +ik[7851] = 4.068 +il[7851] = 154 +im[7851] = 0.0577 +ij[7851] = 28.1 +id[7852] = "2577-06-02T00:42:17" +ik[7852] = 3.089 +il[7852] = 113 +im[7852] = 0.0466 +ij[7852] = 27.6 +id[7853] = "2577-08-03T12:12:52" +ik[7853] = 35.312 +il[7853] = -166 +im[7853] = 0.0879 +ij[7853] = 8 +id[7854] = "2577-08-04T10:30:00" +ik[7854] = 4.949 +il[7854] = -131 +im[7854] = 0.0857 +ij[7854] = 27.2 +id[7855] = "2577-08-23T13:11:42" +ik[7855] = 11 +il[7855] = 16 +im[7855] = 0.0147 +ij[7855] = 18 +id[7856] = "2577-08-26T17:16:39" +ik[7856] = 0.823 +il[7856] = -15 +im[7856] = 0.0449 +ij[7856] = 28.6 +id[7857] = "2577-09-04T10:44:38" +ik[7857] = 0.099 +il[7857] = 169 +im[7857] = 0.0757 +ij[7857] = 28.5 +id[7858] = "2577-09-06T10:42:15" +ik[7858] = 0.111 +il[7858] = -171 +im[7858] = 0.0455 +ij[7858] = 28.7 +id[7859] = "2577-10-20T06:37:26" +ik[7859] = 40.243 +il[7859] = -44 +im[7859] = 0.0046 +ij[7859] = 3 +id[7860] = "2577-10-22T14:34:48" +ik[7860] = -1.83 +il[7860] = -140 +im[7860] = 0.0506 +ij[7860] = 2 +id[7861] = "2577-12-27T09:11:22" +ik[7861] = 0 +il[7861] = -143 +im[7861] = 0.1151 +ij[7861] = 13 +id[7862] = "2578-01-06T16:54:49" +ik[7862] = 1.198 +il[7862] = -159 +im[7862] = 0.1856 +ij[7862] = 28.2 +id[7863] = "2578-02-05T11:21:29" +ik[7863] = 4.37 +il[7863] = -170 +im[7863] = 0.1132 +ij[7863] = 11 +id[7864] = "2578-03-01T01:48:03" +ik[7864] = 3.441 +il[7864] = 0 +im[7864] = 0.1843 +ij[7864] = 28.5 +id[7865] = "2578-03-18T08:15:58" +ik[7865] = 80.96 +il[7865] = 56 +im[7865] = 0.1015 +ij[7865] = 7.1891 +id[7866] = "2578-05-11T06:12:31" +ik[7866] = 1.118 +il[7866] = -120 +im[7866] = 0.096 +ij[7866] = 28.5 +id[7867] = "2578-05-16T02:51:21" +ik[7867] = 37.325 +il[7867] = -23 +im[7867] = 0.0078 +ij[7867] = 1 +id[7868] = "2578-05-17T18:02:48" +ik[7868] = -1.561 +il[7868] = 125 +im[7868] = 0.0444 +ij[7868] = 4 +id[7869] = "2578-05-24T19:58:48" +ik[7869] = 148.45 +il[7869] = 164 +im[7869] = 0.077 +ij[7869] = 14 +id[7870] = "2578-07-23T04:17:18" +ik[7870] = 32.114 +il[7870] = -109 +im[7870] = 0.03 +ij[7870] = 9 +id[7871] = "2578-07-30T22:00:44" +ik[7871] = 26.182 +il[7871] = 60 +im[7871] = 0.0721 +ij[7871] = 16 +id[7872] = "2578-11-01T17:35:57" +ik[7872] = 2.047 +il[7872] = -41 +im[7872] = 0.016 +ij[7872] = 28.1 +id[7873] = "2578-11-05T21:30:33" +ik[7873] = 3.627 +il[7873] = -60 +im[7873] = 0.0414 +ij[7873] = 27.4 +id[7874] = "2578-11-19T18:18:44" +ik[7874] = 6.124 +il[7874] = 124 +im[7874] = 0.0264 +ij[7874] = 27.1 +id[7875] = "2578-12-09T16:30:12" +ik[7875] = 0 +il[7875] = -4 +im[7875] = 0.063 +ij[7875] = 17 +id[7876] = "2579-02-07T13:17:56" +ik[7876] = 1.07 +il[7876] = -78 +im[7876] = 0.0571 +ij[7876] = 12 +id[7877] = "2579-04-03T05:34:05" +ik[7877] = -25.764 +il[7877] = 2 +im[7877] = 0.0641 +ij[7877] = 15 +id[7878] = "2579-05-12T09:23:02" +ik[7878] = 2.764 +il[7878] = -21 +im[7878] = 0.0209 +ij[7878] = 27.6 +id[7879] = "2579-07-13T23:11:30" +ik[7879] = 4.626 +il[7879] = 27 +im[7879] = 0.066 +ij[7879] = 27.2 +id[7880] = "2579-08-02T07:30:26" +ik[7880] = 12 +il[7880] = 91 +im[7880] = 0.0451 +ij[7880] = 18 +id[7881] = "2579-08-28T02:01:53" +ik[7881] = 0.136 +il[7881] = 64 +im[7881] = 0.0703 +ij[7881] = 28.7 +id[7882] = "2579-09-08T07:34:17" +ik[7882] = 0.562 +il[7882] = 89 +im[7882] = 0.0702 +ij[7882] = 28.6 +id[7883] = "2579-09-29T01:15:05" +ik[7883] = 32.798 +il[7883] = 25 +im[7883] = 0.0423 +ij[7883] = 8 +id[7884] = "2579-11-24T03:33:29" +ik[7884] = -1.656 +il[7884] = 173 +im[7884] = 0.0657 +ij[7884] = 2 +id[7885] = "2579-12-01T20:32:21" +ik[7885] = 37.268 +il[7885] = -7 +im[7885] = 0.093 +ij[7885] = 3 +id[7886] = "2579-12-16T04:12:06" +ik[7886] = 0.933 +il[7886] = 17 +im[7886] = 0.0847 +ij[7886] = 28.5 +id[7887] = "2580-01-29T19:59:16" +ik[7887] = 0 +il[7887] = -148 +im[7887] = 0.1817 +ij[7887] = 13 +id[7888] = "2580-02-09T08:35:33" +ik[7888] = 2.415 +il[7888] = 124 +im[7888] = 0.132 +ij[7888] = 28.5 +id[7889] = "2580-03-10T13:46:23" +ik[7889] = 3.87 +il[7889] = -44 +im[7889] = 0.2092 +ij[7889] = 11 +id[7890] = "2580-03-27T06:54:19" +ik[7890] = 0.915 +il[7890] = 1 +im[7890] = 0.1307 +ij[7890] = 28.1 +id[7891] = "2580-04-13T02:47:03" +ik[7891] = 1.414 +il[7891] = -139 +im[7891] = 0.0446 +ij[7891] = 28.2 +id[7892] = "2580-04-21T05:14:09" +ik[7892] = 82.39 +il[7892] = -98 +im[7892] = 0.1628 +ij[7892] = 7.2109 +id[7893] = "2580-06-24T06:23:19" +ik[7893] = 39.092 +il[7893] = 143 +im[7893] = 0.0638 +ij[7893] = 1 +id[7894] = "2580-06-26T18:07:57" +ik[7894] = 148.92 +il[7894] = -9 +im[7894] = 0.0969 +ij[7894] = 14 +id[7895] = "2580-06-30T06:52:36" +ik[7895] = -1.67 +il[7895] = -166 +im[7895] = 0.0858 +ij[7895] = 4 +id[7896] = "2580-07-06T19:44:42" +ik[7896] = 26.279 +il[7896] = 65 +im[7896] = 0.0511 +ij[7896] = 16 +id[7897] = "2580-08-27T14:24:52" +ik[7897] = 1.323 +il[7897] = -72 +im[7897] = 0.0515 +ij[7897] = 28.5 +id[7898] = "2580-09-06T12:38:38" +ik[7898] = 33.694 +il[7898] = 51 +im[7898] = 0.0843 +ij[7898] = 9 +id[7899] = "2580-10-15T21:50:09" +ik[7899] = 3.296 +il[7899] = -63 +im[7899] = 0.0336 +ij[7899] = 27.4 +id[7900] = "2580-10-29T22:44:36" +ik[7900] = 6.431 +il[7900] = 61 +im[7900] = 0.0373 +ij[7900] = 27.1 +id[7901] = "2580-11-19T15:23:32" +ik[7901] = 0 +il[7901] = 13 +im[7901] = 0.0647 +ij[7901] = 17 +id[7902] = "2581-01-07T09:17:28" +ik[7902] = 0.977 +il[7902] = -136 +im[7902] = 0.0141 +ij[7902] = 28.2 +id[7903] = "2581-01-13T18:32:02" +ik[7903] = 0.199 +il[7903] = 148 +im[7903] = 0.0623 +ij[7903] = 27.3 +id[7904] = "2581-01-15T06:33:36" +ik[7904] = 1.628 +il[7904] = -17 +im[7904] = 0.0656 +ij[7904] = 28.1 +id[7905] = "2581-01-24T09:16:47" +ik[7905] = 0.87 +il[7905] = 39 +im[7905] = 0.0206 +ij[7905] = 28.8 +id[7906] = "2581-03-13T21:44:02" +ik[7906] = -25.932 +il[7906] = -27 +im[7906] = 0.0639 +ij[7906] = 15 +id[7907] = "2581-04-21T09:11:43" +ik[7907] = 0.4 +il[7907] = -179 +im[7907] = 0.0135 +ij[7907] = 12 +id[7908] = "2581-07-13T02:48:08" +ik[7908] = 12 +il[7908] = 170 +im[7908] = 0.0382 +ij[7908] = 18 +id[7909] = "2581-08-18T07:07:00" +ik[7909] = 1.367 +il[7909] = 96 +im[7909] = 0.0522 +ij[7909] = 28.2 +id[7910] = "2581-08-20T07:20:32" +ik[7910] = 0.277 +il[7910] = 112 +im[7910] = 0.06 +ij[7910] = 28.7 +id[7911] = "2581-09-23T02:18:49" +ik[7911] = 0.055 +il[7911] = 155 +im[7911] = 0.029 +ij[7911] = 28.6 +id[7912] = "2581-10-06T12:56:47" +ik[7912] = 1.323 +il[7912] = 125 +im[7912] = 0.0521 +ij[7912] = 28.2 +id[7913] = "2581-11-07T06:43:05" +ik[7913] = 31.178 +il[7913] = 166 +im[7913] = 0.0086 +ij[7913] = 8 +id[7914] = "2581-12-30T12:44:37" +ik[7914] = -1.582 +il[7914] = -130 +im[7914] = 0.0773 +ij[7914] = 2 +id[7915] = "2582-01-09T01:39:21" +ik[7915] = 36.171 +il[7915] = 128 +im[7915] = 0.1056 +ij[7915] = 3 +id[7916] = "2582-03-06T18:08:25" +ik[7916] = 0 +il[7916] = 66 +im[7916] = 0.1846 +ij[7916] = 13 +id[7917] = "2582-04-15T03:23:17" +ik[7917] = 2.09 +il[7917] = -79 +im[7917] = 0.2166 +ij[7917] = 11 +id[7918] = "2582-05-25T23:08:22" +ik[7918] = 80.21 +il[7918] = 162 +im[7918] = 0.1941 +ij[7918] = 7.1936 +id[7919] = "2582-06-13T12:10:38" +ik[7919] = 25.497 +il[7919] = 147 +im[7919] = 0.1155 +ij[7919] = 16 +id[7920] = "2582-07-26T06:02:12" +ik[7920] = 141.5 +il[7920] = -65 +im[7920] = 0.0653 +ij[7920] = 14 +id[7921] = "2582-08-07T07:04:22" +ik[7921] = 42.374 +il[7921] = 36 +im[7921] = 0.1023 +ij[7921] = 1 +id[7922] = "2582-08-08T16:57:57" +ik[7922] = -1.904 +il[7922] = -98 +im[7922] = 0.0769 +ij[7922] = 4 +id[7923] = "2582-09-23T00:28:44" +ik[7923] = 2.762 +il[7923] = -129 +im[7923] = 0.026 +ij[7923] = 27.4 +id[7924] = "2582-10-30T03:56:04" +ik[7924] = 0 +il[7924] = -176 +im[7924] = 0.0829 +ij[7924] = 17 +id[7925] = "2582-11-07T23:47:58" +ik[7925] = 35.402 +il[7925] = -28 +im[7925] = 0.0429 +ij[7925] = 9 +id[7926] = "2582-11-15T20:20:28" +ik[7926] = 1.216 +il[7926] = 101 +im[7926] = 0.0776 +ij[7926] = 28.5 +id[7927] = "2582-12-10T16:04:29" +ik[7927] = 0.902 +il[7927] = 50 +im[7927] = 0.0787 +ij[7927] = 28.2 +id[7928] = "2582-12-23T22:21:37" +ik[7928] = 0.087 +il[7928] = 86 +im[7928] = 0.0547 +ij[7928] = 27.3 +id[7929] = "2583-01-09T21:11:25" +ik[7929] = 0.756 +il[7929] = -89 +im[7929] = 0.077 +ij[7929] = 28.8 +id[7930] = "2583-01-21T15:58:51" +ik[7930] = 0.484 +il[7930] = 105 +im[7930] = 0.0498 +ij[7930] = 27.5 +id[7931] = "2583-02-09T13:24:55" +ik[7931] = 1.105 +il[7931] = -32 +im[7931] = 0.0707 +ij[7931] = 28.2 +id[7932] = "2583-02-22T06:01:00" +ik[7932] = -26.087 +il[7932] = -158 +im[7932] = 0.0649 +ij[7932] = 15 +id[7933] = "2583-04-01T16:33:38" +ik[7933] = 2.266 +il[7933] = 66 +im[7933] = 0.0194 +ij[7933] = 27.6 +id[7934] = "2583-04-03T00:23:07" +ik[7934] = 1.891 +il[7934] = -38 +im[7934] = 0.0348 +ij[7934] = 28.1 +id[7935] = "2583-06-19T20:56:37" +ik[7935] = 0.63 +il[7935] = 40 +im[7935] = 0.0567 +ij[7935] = 12 +id[7936] = "2583-06-24T15:15:53" +ik[7936] = 12 +il[7936] = -16 +im[7936] = 0.0192 +ij[7936] = 18 +id[7937] = "2583-09-07T00:12:44" +ik[7937] = 3.281 +il[7937] = -138 +im[7937] = 0.0187 +ij[7937] = 28.1 +id[7938] = "2583-09-11T14:59:24" +ik[7938] = 0.675 +il[7938] = 47 +im[7938] = 0.0593 +ij[7938] = 28.2 +id[7939] = "2583-10-11T11:31:26" +ik[7939] = 0.557 +il[7939] = 27 +im[7939] = 0.0654 +ij[7939] = 28.6 +id[7940] = "2583-11-08T17:27:27" +ik[7940] = 25.343 +il[7940] = -149 +im[7940] = 0.0699 +ij[7940] = 16 +id[7941] = "2583-12-11T15:38:11" +ik[7941] = 30.613 +il[7941] = -164 +im[7941] = 0.0612 +ij[7941] = 8 +id[7942] = "2584-02-18T06:49:05" +ik[7942] = -1.623 +il[7942] = -94 +im[7942] = 0.1071 +ij[7942] = 2 +id[7943] = "2584-02-20T07:00:20" +ik[7943] = 36.961 +il[7943] = -77 +im[7943] = 0.0842 +ij[7943] = 3 +id[7944] = "2584-03-18T00:06:14" +ik[7944] = 5.318 +il[7944] = -79 +im[7944] = 0.135 +ij[7944] = 27.4 +id[7945] = "2584-04-18T11:41:09" +ik[7945] = 6.197 +il[7945] = 45 +im[7945] = 0.0701 +ij[7945] = 27.1 +id[7946] = "2584-04-22T06:02:41" +ik[7946] = 0 +il[7946] = 166 +im[7946] = 0.106 +ij[7946] = 13 +id[7947] = "2584-05-01T09:46:54" +ik[7947] = 0.793 +il[7947] = -175 +im[7947] = 0.1318 +ij[7947] = 28.2 +id[7948] = "2584-05-27T06:40:37" +ik[7948] = 1.02 +il[7948] = 113 +im[7948] = 0.2119 +ij[7948] = 11 +id[7949] = "2584-07-04T12:14:34" +ik[7949] = 73.26 +il[7949] = -164 +im[7949] = 0.2203 +ij[7949] = 7.1389 +id[7950] = "2584-08-15T05:53:59" +ik[7950] = 1.41 +il[7950] = -22 +im[7950] = 0.1845 +ij[7950] = 27.4 +id[7951] = "2584-08-26T00:13:22" +ik[7951] = 125.76 +il[7951] = 179 +im[7951] = 0.1506 +ij[7951] = 14 +id[7952] = "2584-09-07T03:59:19" +ik[7952] = -2.226 +il[7952] = -128 +im[7952] = 0.109 +ij[7952] = 4 +id[7953] = "2584-09-22T19:47:16" +ik[7953] = 45.926 +il[7953] = 148 +im[7953] = 0.1189 +ij[7953] = 1 +id[7954] = "2584-10-04T01:16:11" +ik[7954] = 0 +il[7954] = 177 +im[7954] = 0.0467 +ij[7954] = 17 +id[7955] = "2584-11-29T05:19:19" +ik[7955] = 0.194 +il[7955] = -51 +im[7955] = 0.0062 +ij[7955] = 27.3 +id[7956] = "2584-12-23T00:03:01" +ik[7956] = 0.664 +il[7956] = -99 +im[7956] = 0.0883 +ij[7956] = 28.8 +id[7957] = "2584-12-28T22:50:28" +ik[7957] = 0.514 +il[7957] = -23 +im[7957] = 0.0063 +ij[7957] = 27.5 +id[7958] = "2585-01-14T02:25:07" +ik[7958] = 0.331 +il[7958] = 81 +im[7958] = 0.0506 +ij[7958] = 28.5 +id[7959] = "2585-01-17T17:10:11" +ik[7959] = 34.892 +il[7959] = -105 +im[7959] = 0.0871 +ij[7959] = 9 +id[7960] = "2585-01-31T07:45:55" +ik[7960] = -26.246 +il[7960] = 167 +im[7960] = 0.0653 +ij[7960] = 15 +id[7961] = "2585-03-10T20:38:50" +ik[7961] = 1.999 +il[7961] = -17 +im[7961] = 0.0113 +ij[7961] = 27.6 +id[7962] = "2585-05-14T14:41:59" +ik[7962] = 3.906 +il[7962] = -23 +im[7962] = 0.0633 +ij[7962] = 27.2 +id[7963] = "2585-06-05T05:38:26" +ik[7963] = 12 +il[7963] = -43 +im[7963] = 0.0039 +ij[7963] = 18 +id[7964] = "2585-08-02T05:20:37" +ik[7964] = 1.1 +il[7964] = 159 +im[7964] = 0.0058 +ij[7964] = 12 +id[7965] = "2585-10-20T06:30:18" +ik[7965] = 25.575 +il[7965] = 29 +im[7965] = 0.059 +ij[7965] = 16 +id[7966] = "2585-10-30T22:08:59" +ik[7966] = 1.138 +il[7966] = -103 +im[7966] = 0.0431 +ij[7966] = 28.6 +id[7967] = "2586-01-13T16:43:58" +ik[7967] = 31.056 +il[7967] = -25 +im[7967] = 0.0808 +ij[7967] = 8 +id[7968] = "2586-02-04T12:55:31" +ik[7968] = 4.823 +il[7968] = -120 +im[7968] = 0.0152 +ij[7968] = 27.4 +id[7969] = "2586-02-20T23:28:09" +ik[7969] = 5.004 +il[7969] = -122 +im[7969] = 0.0348 +ij[7969] = 27.1 +id[7970] = "2586-03-15T01:18:46" +ik[7970] = 23 +il[7970] = 59 +im[7970] = 0.0979 +ij[7970] = 17 +id[7971] = "2586-04-15T09:22:19" +ik[7971] = 40.275 +il[7971] = -125 +im[7971] = 0.0587 +ij[7971] = 3 +id[7972] = "2586-05-04T15:48:40" +ik[7972] = -1.895 +il[7972] = -40 +im[7972] = 0.1375 +ij[7972] = 2 +id[7973] = "2586-06-24T00:39:58" +ik[7973] = 4.733 +il[7973] = -56 +im[7973] = 0.093 +ij[7973] = 27.3 +id[7974] = "2586-06-30T00:13:52" +ik[7974] = 0 +il[7974] = 8 +im[7974] = 0.2705 +ij[7974] = 13 +id[7975] = "2586-07-29T01:19:44" +ik[7975] = 6.11 +il[7975] = -103 +im[7975] = 0.3876 +ij[7975] = 11 +id[7976] = "2586-08-31T23:16:27" +ik[7976] = 62.96 +il[7976] = 81 +im[7976] = 0.0661 +ij[7976] = 7.0996 +id[7977] = "2586-09-05T08:03:57" +ik[7977] = 4.622 +il[7977] = -7 +im[7977] = 0.2375 +ij[7977] = 28.2 +id[7978] = "2586-10-13T03:55:12" +ik[7978] = 105.15 +il[7978] = 67 +im[7978] = 0.0352 +ij[7978] = 14 +id[7979] = "2586-10-20T04:40:28" +ik[7979] = 1.714 +il[7979] = 125 +im[7979] = 0.2243 +ij[7979] = 27.3 +id[7980] = "2586-10-22T23:46:53" +ik[7980] = -2.349 +il[7980] = -134 +im[7980] = 0.1866 +ij[7980] = 4 +id[7981] = "2586-11-18T14:27:18" +ik[7981] = 44.833 +il[7981] = -94 +im[7981] = 0.1715 +ij[7981] = 1 +id[7982] = "2586-11-27T04:37:43" +ik[7982] = 0.875 +il[7982] = 137 +im[7982] = 0.0624 +ij[7982] = 28.8 +id[7983] = "2586-11-27T08:18:04" +ik[7983] = 0.931 +il[7983] = 83 +im[7983] = 0.0671 +ij[7983] = 27.5 +id[7984] = "2587-01-06T08:56:46" +ik[7984] = -26.387 +il[7984] = 100 +im[7984] = 0.0168 +ij[7984] = 15 +id[7985] = "2587-02-15T01:17:28" +ik[7985] = 1.651 +il[7985] = -127 +im[7985] = 0.075 +ij[7985] = 27.6 +id[7986] = "2587-03-13T17:17:17" +ik[7986] = 1.493 +il[7986] = -114 +im[7986] = 0.0782 +ij[7986] = 28.5 +id[7987] = "2587-03-14T04:39:04" +ik[7987] = 33 +il[7987] = 80 +im[7987] = 0.0765 +ij[7987] = 9 +id[7988] = "2587-04-24T02:56:39" +ik[7988] = 3.604 +il[7988] = 136 +im[7988] = 0.0707 +ij[7988] = 27.2 +id[7989] = "2587-05-17T06:11:11" +ik[7989] = 12 +il[7989] = -59 +im[7989] = 0.0144 +ij[7989] = 18 +id[7990] = "2587-05-26T15:07:48" +ik[7990] = 6.342 +il[7990] = -105 +im[7990] = 0.0544 +ij[7990] = 28.1 +id[7991] = "2587-06-18T10:40:28" +ik[7991] = 0.571 +il[7991] = 180 +im[7991] = 0.0508 +ij[7991] = 28.2 +id[7992] = "2587-09-08T22:19:18" +ik[7992] = 1.06 +il[7992] = 85 +im[7992] = 0.0104 +ij[7992] = 12 +id[7993] = "2587-10-02T16:17:11" +ik[7993] = 25.742 +il[7993] = -106 +im[7993] = 0.0436 +ij[7993] = 16 +id[7994] = "2587-11-21T14:52:31" +ik[7994] = 1.551 +il[7994] = 33 +im[7994] = 0.0263 +ij[7994] = 28.6 +id[7995] = "2588-01-12T04:04:11" +ik[7995] = 4.476 +il[7995] = -24 +im[7995] = 0.0534 +ij[7995] = 27.4 +id[7996] = "2588-01-18T20:08:01" +ik[7996] = 2.319 +il[7996] = 158 +im[7996] = 0.0419 +ij[7996] = 28.2 +id[7997] = "2588-01-26T23:49:56" +ik[7997] = 5.324 +il[7997] = -180 +im[7997] = 0.0459 +ij[7997] = 27.1 +id[7998] = "2588-02-15T18:01:31" +ik[7998] = 0 +il[7998] = 91 +im[7998] = 0.0353 +ij[7998] = 17 +id[7999] = "2588-02-21T19:43:04" +ik[7999] = 32.569 +il[7999] = 126 +im[7999] = 0.0788 +ij[7999] = 8 +id[8000] = "2588-04-20T14:23:04" +ik[8000] = 0.032 +il[8000] = 42 +im[8000] = 0.1033 +ij[8000] = 27.3 +id[8001] = "2588-05-22T14:33:24" +ik[8001] = 1.382 +il[8001] = -17 +im[8001] = 0.0702 +ij[8001] = 28.8 +id[8002] = "2588-05-23T14:09:38" +ik[8002] = 1.584 +il[8002] = -1 +im[8002] = 0.0464 +ij[8002] = 27.5 +id[8003] = "2588-06-25T18:17:16" +ik[8003] = 46.165 +il[8003] = -106 +im[8003] = 0.1004 +ij[8003] = 3 +id[8004] = "2588-07-26T11:08:41" +ik[8004] = -2.377 +il[8004] = -63 +im[8004] = 0.1896 +ij[8004] = 2 +id[8005] = "2588-09-12T03:55:43" +ik[8005] = 0 +il[8005] = 150 +im[8005] = 0.2114 +ij[8005] = 13 +id[8006] = "2588-10-17T01:49:58" +ik[8006] = 2.96 +il[8006] = 142 +im[8006] = 0.3311 +ij[8006] = 11 +id[8007] = "2588-11-15T13:22:36" +ik[8007] = 64.39 +il[8007] = 96 +im[8007] = 0.2642 +ij[8007] = 7.1219 +id[8008] = "2588-12-06T15:31:42" +ik[8008] = -24.965 +il[8008] = -94 +im[8008] = 0.0589 +ij[8008] = 15 +id[8009] = "2588-12-31T09:51:28" +ik[8009] = 110.25 +il[8009] = -133 +im[8009] = 0.0847 +ij[8009] = 14 +id[8010] = "2589-01-05T23:54:56" +ik[8010] = 1.181 +il[8010] = 69 +im[8010] = 0.1122 +ij[8010] = 27.6 +id[8011] = "2589-01-07T21:27:22" +ik[8011] = -1.931 +il[8011] = 124 +im[8011] = 0.1452 +ij[8011] = 4 +id[8012] = "2589-01-26T16:56:12" +ik[8012] = 40.023 +il[8012] = 10 +im[8012] = 0.1121 +ij[8012] = 1 +id[8013] = "2589-03-30T03:39:21" +ik[8013] = 3.138 +il[8013] = 78 +im[8013] = 0.0254 +ij[8013] = 27.2 +id[8014] = "2589-04-24T16:52:24" +ik[8014] = 31.701 +il[8014] = 123 +im[8014] = 0.0282 +ij[8014] = 9 +id[8015] = "2589-04-25T10:27:20" +ik[8015] = 12 +il[8015] = -135 +im[8015] = 0.0162 +ij[8015] = 18 +id[8016] = "2589-05-26T00:57:53" +ik[8016] = 0.981 +il[8016] = -66 +im[8016] = 0.0197 +ij[8016] = 28.5 +id[8017] = "2589-06-21T02:35:44" +ik[8017] = 0.006 +il[8017] = 156 +im[8017] = 0.0192 +ij[8017] = 28.2 +id[8018] = "2589-07-28T22:09:11" +ik[8018] = 0.569 +il[8018] = -135 +im[8018] = 0.0589 +ij[8018] = 28.1 +id[8019] = "2589-07-28T23:41:47" +ik[8019] = 0.295 +il[8019] = -160 +im[8019] = 0.0587 +ij[8019] = 28.7 +id[8020] = "2589-09-14T06:50:10" +ik[8020] = 25.88 +il[8020] = -164 +im[8020] = 0.0251 +ij[8020] = 16 +id[8021] = "2589-10-14T10:03:18" +ik[8021] = 0.61 +il[8021] = 89 +im[8021] = 0.0078 +ij[8021] = 12 +id[8022] = "2589-12-12T12:47:05" +ik[8022] = 1.664 +il[8022] = 98 +im[8022] = 0.0135 +ij[8022] = 28.6 +id[8023] = "2589-12-22T03:49:45" +ik[8023] = 4.212 +il[8023] = -35 +im[8023] = 0.0525 +ij[8023] = 27.4 +id[8024] = "2590-01-03T06:02:01" +ik[8024] = 3.684 +il[8024] = 45 +im[8024] = 0.0582 +ij[8024] = 28.1 +id[8025] = "2590-01-05T09:25:24" +ik[8025] = 5.574 +il[8025] = 22 +im[8025] = 0.0459 +ij[8025] = 27.1 +id[8026] = "2590-01-14T14:29:20" +ik[8026] = 2.087 +il[8026] = 26 +im[8026] = 0.0587 +ij[8026] = 28.2 +id[8027] = "2590-01-24T18:55:10" +ik[8027] = 0 +il[8027] = 66 +im[8027] = 0.0043 +ij[8027] = 17 +id[8028] = "2590-03-25T17:52:49" +ik[8028] = 0.239 +il[8028] = -71 +im[8028] = 0.041 +ij[8028] = 27.3 +id[8029] = "2590-04-16T01:07:57" +ik[8029] = 35.079 +il[8029] = 23 +im[8029] = 0.0783 +ij[8029] = 8 +id[8030] = "2590-04-24T15:40:12" +ik[8030] = 0.942 +il[8030] = -113 +im[8030] = 0.0619 +ij[8030] = 27.5 +id[8031] = "2590-04-29T17:50:03" +ik[8031] = 0.701 +il[8031] = -96 +im[8031] = 0.0817 +ij[8031] = 28.8 +id[8032] = "2590-05-23T17:40:33" +ik[8032] = -25.021 +il[8032] = 136 +im[8032] = 0.073 +ij[8032] = 15 +id[8033] = "2590-07-06T16:27:44" +ik[8033] = 3.943 +il[8033] = -140 +im[8033] = 0.0842 +ij[8033] = 27.6 +id[8034] = "2590-08-15T23:03:15" +ik[8034] = 46.469 +il[8034] = 155 +im[8034] = 0.0573 +ij[8034] = 3 +id[8035] = "2590-09-09T14:58:03" +ik[8035] = -2.232 +il[8035] = 159 +im[8035] = 0.0666 +ij[8035] = 2 +id[8036] = "2590-09-19T04:03:13" +ik[8036] = 5.715 +il[8036] = 57 +im[8036] = 0.1806 +ij[8036] = 27.2 +id[8037] = "2590-11-06T09:51:59" +ik[8037] = 0 +il[8037] = 82 +im[8037] = 0.0207 +ij[8037] = 13 +id[8038] = "2590-11-10T00:30:48" +ik[8038] = 1.056 +il[8038] = -103 +im[8038] = 0.1859 +ij[8038] = 28.2 +id[8039] = "2590-11-27T07:39:25" +ik[8039] = 3.535 +il[8039] = -42 +im[8039] = 0.2615 +ij[8039] = 28.1 +id[8040] = "2590-12-13T16:38:51" +ik[8040] = 2.24 +il[8040] = -39 +im[8040] = 0.2177 +ij[8040] = 11 +id[8041] = "2590-12-28T23:04:49" +ik[8041] = 2.891 +il[8041] = -160 +im[8041] = 0.0799 +ij[8041] = 28.1 +id[8042] = "2591-01-18T08:54:35" +ik[8042] = 72.96 +il[8042] = -126 +im[8042] = 0.1856 +ij[8042] = 7.144 +id[8043] = "2591-02-13T08:14:57" +ik[8043] = 1.934 +il[8043] = 129 +im[8043] = 0.1058 +ij[8043] = 27.2 +id[8044] = "2591-03-12T14:14:30" +ik[8044] = -1.644 +il[8044] = -64 +im[8044] = 0.0629 +ij[8044] = 4 +id[8045] = "2591-03-18T08:52:25" +ik[8045] = 131.96 +il[8045] = 71 +im[8045] = 0.1014 +ij[8045] = 14 +id[8046] = "2591-03-20T09:21:18" +ik[8046] = 37.51 +il[8046] = 83 +im[8046] = 0.0685 +ij[8046] = 1 +id[8047] = "2591-03-29T05:10:36" +ik[8047] = 12 +il[8047] = -132 +im[8047] = 0.1087 +ij[8047] = 18 +id[8048] = "2591-06-01T03:19:57" +ik[8048] = 31.28 +il[8048] = 141 +im[8048] = 0.0376 +ij[8048] = 9 +id[8049] = "2591-07-23T07:02:26" +ik[8049] = 0.196 +il[8049] = -135 +im[8049] = 0.0661 +ij[8049] = 28.7 +id[8050] = "2591-08-25T15:55:31" +ik[8050] = 0.461 +il[8050] = 51 +im[8050] = 0.0311 +ij[8050] = 28.5 +id[8051] = "2591-08-27T13:19:57" +ik[8051] = 26.008 +il[8051] = 108 +im[8051] = 0.0067 +ij[8051] = 16 +id[8052] = "2591-11-23T14:23:45" +ik[8052] = 0.14 +il[8052] = -113 +im[8052] = 0.0204 +ij[8052] = 12 +id[8053] = "2592-01-05T15:27:54" +ik[8053] = 0 +il[8053] = 113 +im[8053] = 0.0122 +ij[8053] = 17 +id[8054] = "2592-03-03T08:42:27" +ik[8054] = 0.278 +il[8054] = 46 +im[8054] = 0.0083 +ij[8054] = 27.3 +id[8055] = "2592-03-25T00:48:47" +ik[8055] = 3.86 +il[8055] = 12 +im[8055] = 0.0721 +ij[8055] = 28.1 +id[8056] = "2592-04-01T08:45:48" +ik[8056] = 0.721 +il[8056] = -34 +im[8056] = 0.0068 +ij[8056] = 27.5 +id[8057] = "2592-04-12T08:32:36" +ik[8057] = 0.357 +il[8057] = 75 +im[8057] = 0.033 +ij[8057] = 28.8 +id[8058] = "2592-04-30T21:46:24" +ik[8058] = -25.445 +il[8058] = 56 +im[8058] = 0.0139 +ij[8058] = 15 +id[8059] = "2592-06-10T14:05:24" +ik[8059] = 3.256 +il[8059] = -152 +im[8059] = 0.0185 +ij[8059] = 27.6 +id[8060] = "2592-07-04T12:12:50" +ik[8060] = 36.104 +il[8060] = 111 +im[8060] = 0.0805 +ij[8060] = 8 +id[8061] = "2592-08-13T22:00:32" +ik[8061] = 5.115 +il[8061] = 0 +im[8061] = 0.0837 +ij[8061] = 27.2 +id[8062] = "2592-09-02T05:20:15" +ik[8062] = 11 +il[8062] = 80 +im[8062] = 0.0824 +ij[8062] = 18 +id[8063] = "2592-10-01T20:37:14" +ik[8063] = 41.926 +il[8063] = 140 +im[8063] = 0.0808 +ij[8063] = 3 +id[8064] = "2592-10-10T12:39:24" +ik[8064] = -1.927 +il[8064] = -16 +im[8064] = 0.1065 +ij[8064] = 2 +id[8065] = "2592-12-13T08:52:54" +ik[8065] = 0 +il[8065] = -60 +im[8065] = 0.0278 +ij[8065] = 13 +id[8066] = "2593-01-22T14:03:18" +ik[8066] = 4.18 +il[8066] = -127 +im[8066] = 0.0634 +ij[8066] = 11 +id[8067] = "2593-02-20T23:32:13" +ik[8067] = 2.979 +il[8067] = 174 +im[8067] = 0.0785 +ij[8067] = 28.2 +id[8068] = "2593-03-03T07:55:30" +ik[8068] = 79.96 +il[8068] = 135 +im[8068] = 0.0648 +ij[8068] = 7.1759 +id[8069] = "2593-04-30T00:57:11" +ik[8069] = -1.555 +il[8069] = 67 +im[8069] = 0.0206 +ij[8069] = 4 +id[8070] = "2593-04-30T16:23:13" +ik[8070] = 37.056 +il[8070] = -158 +im[8070] = 0.0348 +ij[8070] = 1 +id[8071] = "2593-05-09T00:35:18" +ik[8071] = 146.65 +il[8071] = 158 +im[8071] = 0.0897 +ij[8071] = 14 +id[8072] = "2593-07-07T14:07:04" +ik[8072] = 31.712 +il[8072] = 167 +im[8072] = 0.0385 +ij[8072] = 9 +id[8073] = "2593-07-15T01:50:01" +ik[8073] = 0.053 +il[8073] = 63 +im[8073] = 0.0632 +ij[8073] = 28.7 +id[8074] = "2593-08-07T19:33:48" +ik[8074] = 26.135 +il[8074] = 27 +im[8074] = 0.0022 +ij[8074] = 16 +id[8075] = "2593-09-30T06:15:26" +ik[8075] = 3.275 +il[8075] = 25 +im[8075] = 0.0468 +ij[8075] = 28.1 +id[8076] = "2593-10-20T20:25:40" +ik[8076] = 0.309 +il[8076] = 13 +im[8076] = 0.0397 +ij[8076] = 28.2 +id[8077] = "2593-12-17T00:24:02" +ik[8077] = 0 +il[8077] = 168 +im[8077] = 0.0295 +ij[8077] = 17 +id[8078] = "2594-01-13T01:07:18" +ik[8078] = 0.93 +il[8078] = 65 +im[8078] = 0.0063 +ij[8078] = 12 +id[8079] = "2594-03-28T21:30:12" +ik[8079] = 0.082 +il[8079] = -79 +im[8079] = 0.0352 +ij[8079] = 28.8 +id[8080] = "2594-04-10T21:15:10" +ik[8080] = -25.69 +il[8080] = 64 +im[8080] = 0.0087 +ij[8080] = 15 +id[8081] = "2594-05-20T08:30:08" +ik[8081] = 2.879 +il[8081] = -78 +im[8081] = 0.0395 +ij[8081] = 27.6 +id[8082] = "2594-06-07T16:21:14" +ik[8082] = 0.14 +il[8082] = -15 +im[8082] = 0.006 +ij[8082] = 28.2 +id[8083] = "2594-06-14T19:11:19" +ik[8083] = 6.084 +il[8083] = 12 +im[8083] = 0.065 +ij[8083] = 28.1 +id[8084] = "2594-07-22T02:13:11" +ik[8084] = 4.739 +il[8084] = -88 +im[8084] = 0.0328 +ij[8084] = 27.2 +id[8085] = "2594-08-02T23:26:40" +ik[8085] = 2.074 +il[8085] = 70 +im[8085] = 0.023 +ij[8085] = 28.2 +id[8086] = "2594-08-10T06:45:01" +ik[8086] = 12 +il[8086] = 32 +im[8086] = 0.0702 +ij[8086] = 18 +id[8087] = "2594-09-09T20:34:37" +ik[8087] = 33.721 +il[8087] = 122 +im[8087] = 0.0733 +ij[8087] = 8 +id[8088] = "2594-11-11T04:02:05" +ik[8088] = -1.712 +il[8088] = -106 +im[8088] = 0.0144 +ij[8088] = 2 +id[8089] = "2594-11-16T00:08:12" +ik[8089] = 38.2 +il[8089] = -1 +im[8089] = 0.084 +ij[8089] = 3 +id[8090] = "2595-01-11T12:06:38" +ik[8090] = 3.788 +il[8090] = 6 +im[8090] = 0.1359 +ij[8090] = 28.7 +id[8091] = "2595-01-16T00:35:46" +ik[8091] = 0 +il[8091] = -138 +im[8091] = 0.1576 +ij[8091] = 13 +id[8092] = "2595-02-26T10:05:59" +ik[8092] = 4.22 +il[8092] = 102 +im[8092] = 0.1519 +ij[8092] = 11 +id[8093] = "2595-04-08T23:38:22" +ik[8093] = 82.96 +il[8093] = 73 +im[8093] = 0.1076 +ij[8093] = 7.2056 +id[8094] = "2595-06-09T09:19:09" +ik[8094] = 38.213 +il[8094] = 159 +im[8094] = 0.0683 +ij[8094] = 1 +id[8095] = "2595-06-14T01:46:06" +ik[8095] = -1.612 +il[8095] = -43 +im[8095] = 0.0991 +ij[8095] = 4 +id[8096] = "2595-06-15T10:17:11" +ik[8096] = 150.4 +il[8096] = -157 +im[8096] = 0.0865 +ij[8096] = 14 +id[8097] = "2595-07-04T06:05:05" +ik[8097] = 0.13 +il[8097] = 88 +im[8097] = 0.0094 +ij[8097] = 28.7 +id[8098] = "2595-07-17T14:16:46" +ik[8098] = 26.256 +il[8098] = 94 +im[8098] = 0.021 +ij[8098] = 16 +id[8099] = "2595-08-19T01:47:57" +ik[8099] = 32.989 +il[8099] = -123 +im[8099] = 0.0413 +ij[8099] = 9 +id[8100] = "2595-09-22T06:32:17" +ik[8100] = 1.141 +il[8100] = 139 +im[8100] = 0.0689 +ij[8100] = 28.2 +id[8101] = "2595-10-24T23:21:11" +ik[8101] = 3.44 +il[8101] = -155 +im[8101] = 0.0295 +ij[8101] = 27.4 +id[8102] = "2595-11-07T21:45:42" +ik[8102] = 6.299 +il[8102] = 5 +im[8102] = 0.0424 +ij[8102] = 27.1 +id[8103] = "2595-11-28T05:40:40" +ik[8103] = 0 +il[8103] = 85 +im[8103] = 0.0467 +ij[8103] = 17 +id[8104] = "2595-11-29T02:00:45" +ik[8104] = 0.414 +il[8104] = 148 +im[8104] = 0.0548 +ij[8104] = 28.2 +id[8105] = "2595-12-17T03:57:01" +ik[8105] = 1.259 +il[8105] = -58 +im[8105] = 0.0619 +ij[8105] = 28.1 +id[8106] = "2596-03-21T11:45:12" +ik[8106] = -25.87 +il[8106] = 53 +im[8106] = 0.018 +ij[8106] = 15 +id[8107] = "2596-03-23T19:42:52" +ik[8107] = 0.82 +il[8107] = -38 +im[8107] = 0.0435 +ij[8107] = 12 +id[8108] = "2596-06-30T20:19:05" +ik[8108] = 4.469 +il[8108] = 0 +im[8108] = 0.0163 +ij[8108] = 27.2 +id[8109] = "2596-07-05T19:42:13" +ik[8109] = 2.112 +il[8109] = 58 +im[8109] = 0.0622 +ij[8109] = 28.2 +id[8110] = "2596-07-20T12:17:45" +ik[8110] = 12 +il[8110] = -48 +im[8110] = 0.0599 +ij[8110] = 18 +id[8111] = "2596-10-23T17:41:17" +ik[8111] = 31.682 +il[8111] = 74 +im[8111] = 0.0252 +ij[8111] = 8 +id[8112] = "2596-12-06T23:43:37" +ik[8112] = 1.128 +il[8112] = 51 +im[8112] = 0.0393 +ij[8112] = 28.7 +id[8113] = "2596-12-15T02:16:20" +ik[8113] = -1.599 +il[8113] = 91 +im[8113] = 0.0612 +ij[8113] = 2 +id[8114] = "2596-12-24T20:21:15" +ik[8114] = 36.385 +il[8114] = -86 +im[8114] = 0.1109 +ij[8114] = 3 +id[8115] = "2597-02-20T10:17:39" +ik[8115] = 0 +il[8115] = -100 +im[8115] = 0.1799 +ij[8115] = 13 +id[8116] = "2597-03-03T16:34:36" +ik[8116] = 1.865 +il[8116] = -86 +im[8116] = 0.1763 +ij[8116] = 28.2 +id[8117] = "2597-03-31T19:55:19" +ik[8117] = 2.95 +il[8117] = 112 +im[8117] = 0.2166 +ij[8117] = 11 +id[8118] = "2597-04-18T23:05:30" +ik[8118] = 0.846 +il[8118] = 18 +im[8118] = 0.1139 +ij[8118] = 28.1 +id[8119] = "2597-04-28T05:59:05" +ik[8119] = 1.39 +il[8119] = 4 +im[8119] = 0.1928 +ij[8119] = 28.7 +id[8120] = "2597-05-12T09:20:15" +ik[8120] = 80.96 +il[8120] = 90 +im[8120] = 0.1913 +ij[8120] = 7.2062 +id[8121] = "2597-06-04T02:52:24" +ik[8121] = 0.026 +il[8121] = 48 +im[8121] = 0.1221 +ij[8121] = 28.7 +id[8122] = "2597-06-19T12:16:42" +ik[8122] = 26.148 +il[8122] = 56 +im[8122] = 0.1128 +ij[8122] = 16 +id[8123] = "2597-07-14T23:24:04" +ik[8123] = 144.55 +il[8123] = 137 +im[8123] = 0.0412 +ij[8123] = 14 +id[8124] = "2597-07-20T13:15:10" +ik[8124] = 40.928 +il[8124] = -17 +im[8124] = 0.1066 +ij[8124] = 1 +id[8125] = "2597-07-25T19:35:27" +ik[8125] = -1.798 +il[8125] = -61 +im[8125] = 0.0193 +ij[8125] = 4 +id[8126] = "2597-10-02T15:02:39" +ik[8126] = 3.012 +il[8126] = -42 +im[8126] = 0.0716 +ij[8126] = 27.4 +id[8127] = "2597-10-12T06:20:50" +ik[8127] = 34.845 +il[8127] = -177 +im[8127] = 0.0773 +ij[8127] = 9 +id[8128] = "2597-11-07T12:13:20" +ik[8128] = 0 +il[8128] = -8 +im[8128] = 0.0479 +ij[8128] = 17 +id[8129] = "2598-01-01T09:00:15" +ik[8129] = 0.143 +il[8129] = -140 +im[8129] = 0.0037 +ij[8129] = 27.3 +id[8130] = "2598-01-29T21:38:18" +ik[8130] = 0.49 +il[8130] = -49 +im[8130] = 0.0082 +ij[8130] = 27.5 +id[8131] = "2598-02-21T05:29:45" +ik[8131] = 1.148 +il[8131] = 52 +im[8131] = 0.0626 +ij[8131] = 28.6 +id[8132] = "2598-02-28T06:19:09" +ik[8132] = 0.453 +il[8132] = 109 +im[8132] = 0.0047 +ij[8132] = 28.8 +id[8133] = "2598-03-02T00:43:56" +ik[8133] = 2.518 +il[8133] = -146 +im[8133] = 0.0244 +ij[8133] = 28.1 +id[8134] = "2598-03-02T01:43:07" +ik[8134] = -26.028 +il[8134] = -165 +im[8134] = 0.0249 +ij[8134] = 15 +id[8135] = "2598-05-30T01:18:53" +ik[8135] = 0.28 +il[8135] = -10 +im[8135] = 0.0423 +ij[8135] = 12 +id[8136] = "2598-07-01T20:11:27" +ik[8136] = 12 +il[8136] = -165 +im[8136] = 0.0604 +ij[8136] = 18 +id[8137] = "2598-08-11T21:29:39" +ik[8137] = 1.407 +il[8137] = -135 +im[8137] = 0.0532 +ij[8137] = 28.1 +id[8138] = "2598-11-16T10:31:30" +ik[8138] = 25.218 +il[8138] = -117 +im[8138] = 0.0166 +ij[8138] = 16 +id[8139] = "2598-11-25T00:33:58" +ik[8139] = 0.715 +il[8139] = 116 +im[8139] = 0.0606 +ij[8139] = 28.7 +id[8140] = "2598-11-28T14:29:16" +ik[8140] = 30.714 +il[8140] = -59 +im[8140] = 0.0115 +ij[8140] = 8 +id[8141] = "2599-01-27T14:44:48" +ik[8141] = -1.59 +il[8141] = 155 +im[8141] = 0.0621 +ij[8141] = 2 +id[8142] = "2599-02-03T00:24:11" +ik[8142] = 36.405 +il[8142] = 72 +im[8142] = 0.1124 +ij[8142] = 3 +id[8143] = "2599-04-02T23:24:32" +ik[8143] = 0 +il[8143] = -71 +im[8143] = 0.1111 +ij[8143] = 13 +id[8144] = "2599-05-10T00:37:06" +ik[8144] = 0.2 +il[8144] = -116 +im[8144] = 0.2396 +ij[8144] = 11 +id[8145] = "2599-06-13T20:55:59" +ik[8145] = 2.03 +il[8145] = 67 +im[8145] = 0.1497 +ij[8145] = 28.2 +id[8146] = "2599-06-18T22:27:08" +ik[8146] = 76.96 +il[8146] = 93 +im[8146] = 0.2275 +ij[8146] = 7.1624 +id[8147] = "2599-08-13T20:18:56" +ik[8147] = 132.87 +il[8147] = -50 +im[8147] = 0.1549 +ij[8147] = 14 +id[8148] = "2599-08-27T08:04:48" +ik[8148] = -2.097 +il[8148] = -94 +im[8148] = 0.1314 +ij[8148] = 4 +id[8149] = "2599-09-04T14:57:25" +ik[8149] = 2.15 +il[8149] = -117 +im[8149] = 0.058 +ij[8149] = 27.4 +id[8150] = "2599-09-05T04:28:07" +ik[8150] = 44.733 +il[8150] = 46 +im[8150] = 0.0725 +ij[8150] = 1 +id[8151] = "2599-10-15T23:39:49" +ik[8151] = 0 +il[8151] = 159 +im[8151] = 0.0204 +ij[8151] = 17 +id[8152] = "2599-12-10T05:01:56" +ik[8152] = 0.044 +il[8152] = -98 +im[8152] = 0.0607 +ij[8152] = 27.3 +id[8153] = "2599-12-22T19:36:23" +ik[8153] = 35.433 +il[8153] = 167 +im[8153] = 0.0697 +ij[8153] = 9 +id[8154] = "2600-01-08T08:24:55" +ik[8154] = 0.487 +il[8154] = 137 +im[8154] = 0.0519 +ij[8154] = 27.5 +id[8155] = "2600-02-09T19:57:01" +ik[8155] = -26.185 +il[8155] = -80 +im[8155] = 0.0107 +ij[8155] = 15 +id[8156] = "2600-02-13T12:15:43" +ik[8156] = 0.758 +il[8156] = 71 +im[8156] = 0.0609 +ij[8156] = 28.8 +id[8157] = "2600-03-07T01:27:18" +ik[8157] = 1.998 +il[8157] = 83 +im[8157] = 0.0447 +ij[8157] = 28.6 +id[8158] = "2600-03-20T06:58:50" +ik[8158] = 2.109 +il[8158] = 128 +im[8158] = 0.0543 +ij[8158] = 27.6 +id[8159] = "2600-04-09T05:21:30" +ik[8159] = 0.145 +il[8159] = -21 +im[8159] = 0.0194 +ij[8159] = 28.2 +id[8160] = "2600-05-10T22:20:19" +ik[8160] = 1.274 +il[8160] = 35 +im[8160] = 0.0501 +ij[8160] = 28.1 +id[8161] = "2600-06-13T11:56:06" +ik[8161] = 12 +il[8161] = 146 +im[8161] = 0.0571 +ij[8161] = 18 +id[8162] = "2600-07-18T03:28:40" +ik[8162] = 0.99 +il[8162] = -113 +im[8162] = 0.0055 +ij[8162] = 12 +id[8163] = "2600-10-28T08:39:25" +ik[8163] = 25.496 +il[8163] = -81 +im[8163] = 0.0274 +ij[8163] = 16 +id[8164] = "2600-11-03T18:21:51" +ik[8164] = 0.767 +il[8164] = -164 +im[8164] = 0.0642 +ij[8164] = 28.2 +id[8165] = "2600-11-17T06:08:33" +ik[8165] = 0.447 +il[8165] = 149 +im[8165] = 0.0616 +ij[8165] = 28.7 +id[8166] = "2600-11-29T07:40:06" +ik[8166] = 0.095 +il[8166] = -118 +im[8166] = 0.0619 +ij[8166] = 28.2 +id[8167] = "2601-01-01T05:00:49" +ik[8167] = 30.76 +il[8167] = -123 +im[8167] = 0.0716 +ij[8167] = 8 +id[8168] = "2601-02-17T03:13:52" +ik[8168] = 5 +il[8168] = -8 +im[8168] = 0.0214 +ij[8168] = 27.4 +id[8169] = "2601-03-07T10:13:19" +ik[8169] = 4.858 +il[8169] = 61 +im[8169] = 0.077 +ij[8169] = 27.1 +id[8170] = "2601-03-23T11:00:05" +ik[8170] = 38.598 +il[8170] = -159 +im[8170] = 0.1092 +ij[8170] = 3 +id[8171] = "2601-04-01T23:25:42" +ik[8171] = -1.744 +il[8171] = 105 +im[8171] = 0.0218 +ij[8171] = 2 +id[8172] = "2601-04-02T20:23:22" +ik[8172] = 23 +il[8172] = 158 +im[8172] = 0.0476 +ij[8172] = 17 +id[8173] = "2601-05-31T20:19:26" +ik[8173] = 0 +il[8173] = -3 +im[8173] = 0.2409 +ij[8173] = 13 +id[8174] = "2601-07-02T02:39:46" +ik[8174] = 4.21 +il[8174] = -173 +im[8174] = 0.305 +ij[8174] = 11 +id[8175] = "2601-07-03T05:45:40" +ik[8175] = 0 +il[8175] = -29 +im[8175] = 0.2577 +ij[8175] = 18 +id[8176] = "2601-08-07T00:28:10" +ik[8176] = 67.17 +il[8176] = 19 +im[8176] = 0.2396 +ij[8176] = 7.1077 +id[8177] = "2601-09-06T20:57:55" +ik[8177] = 0 +il[8177] = 15 +im[8177] = 0.2329 +ij[8177] = 17 +id[8178] = "2601-09-21T20:13:55" +ik[8178] = 113 +il[8178] = 173 +im[8178] = 0.2014 +ij[8178] = 14 +id[8179] = "2601-10-01T23:00:49" +ik[8179] = -2.368 +il[8179] = -129 +im[8179] = 0.1471 +ij[8179] = 4 +id[8180] = "2601-10-25T14:13:12" +ik[8180] = 46.144 +il[8180] = -124 +im[8180] = 0.0347 +ij[8180] = 1 +id[8181] = "2601-11-10T21:35:33" +ik[8181] = 0.691 +il[8181] = -75 +im[8181] = 0.0546 +ij[8181] = 27.3 +id[8182] = "2601-12-13T00:37:32" +ik[8182] = 0.645 +il[8182] = -166 +im[8182] = 0.1101 +ij[8182] = 27.5 +id[8183] = "2602-01-18T00:32:49" +ik[8183] = -26.345 +il[8183] = -177 +im[8183] = 0.0653 +ij[8183] = 15 +id[8184] = "2602-01-26T23:59:17" +ik[8184] = 1.12 +il[8184] = -83 +im[8184] = 0.0849 +ij[8184] = 28.8 +id[8185] = "2602-02-23T16:29:43" +ik[8185] = 33.722 +il[8185] = -66 +im[8185] = 0.0674 +ij[8185] = 9 +id[8186] = "2602-02-26T02:21:51" +ik[8186] = 1.801 +il[8186] = 169 +im[8186] = 0.0773 +ij[8186] = 27.6 +id[8187] = "2602-03-19T20:53:57" +ik[8187] = 2.573 +il[8187] = 98 +im[8187] = 0.0047 +ij[8187] = 28.6 +id[8188] = "2602-04-03T23:28:45" +ik[8188] = 1.628 +il[8188] = -157 +im[8188] = 0.0202 +ij[8188] = 28.2 +id[8189] = "2602-05-03T09:41:35" +ik[8189] = 3.734 +il[8189] = -34 +im[8189] = 0.0241 +ij[8189] = 27.2 +id[8190] = "2602-05-25T20:12:12" +ik[8190] = 12 +il[8190] = 22 +im[8190] = 0.0509 +ij[8190] = 18 +id[8191] = "2602-08-26T16:19:20" +ik[8191] = 1.13 +il[8191] = -104 +im[8191] = 0.0189 +ij[8191] = 12 +id[8192] = "2602-10-10T12:51:07" +ik[8192] = 25.683 +il[8192] = -138 +im[8192] = 0.0445 +ij[8192] = 16 +id[8193] = "2602-11-11T02:03:08" +ik[8193] = 0.22 +il[8193] = -19 +im[8193] = 0.0614 +ij[8193] = 28.7 +id[8194] = "2602-11-11T20:57:20" +ik[8194] = 1.073 +il[8194] = 65 +im[8194] = 0.062 +ij[8194] = 28.2 +id[8195] = "2603-01-21T17:05:23" +ik[8195] = 4.596 +il[8195] = 79 +im[8195] = 0.068 +ij[8195] = 27.4 +id[8196] = "2603-02-05T23:01:21" +ik[8196] = 5.212 +il[8196] = 134 +im[8196] = 0.0829 +ij[8196] = 27.1 +id[8197] = "2603-02-06T13:01:43" +ik[8197] = 31.842 +il[8197] = -70 +im[8197] = 0.0828 +ij[8197] = 8 +id[8198] = "2603-02-26T03:57:28" +ik[8198] = 23 +il[8198] = -109 +im[8198] = 0.0177 +ij[8198] = 17 +id[8199] = "2603-05-06T11:36:10" +ik[8199] = 0.233 +il[8199] = 72 +im[8199] = 0.1067 +ij[8199] = 27.3 +id[8200] = "2603-05-30T21:52:07" +ik[8200] = 43.885 +il[8200] = 150 +im[8200] = 0.1604 +ij[8200] = 3 +id[8201] = "2603-06-13T07:18:05" +ik[8201] = 2.405 +il[8201] = 136 +im[8201] = 0.1749 +ij[8201] = 27.5 +id[8202] = "2603-06-30T01:15:04" +ik[8202] = -2.233 +il[8202] = 26 +im[8202] = 0.2097 +ij[8202] = 2 +id[8203] = "2603-08-12T18:48:45" +ik[8203] = 3.536 +il[8203] = -177 +im[8203] = 0.2773 +ij[8203] = 28.2 +id[8204] = "2603-08-17T20:14:26" +ik[8204] = 0 +il[8204] = -149 +im[8204] = 0.0696 +ij[8204] = 13 +id[8205] = "2603-09-18T18:32:40" +ik[8205] = 5.64 +il[8205] = 179 +im[8205] = 0.3755 +ij[8205] = 11 +id[8206] = "2603-10-18T19:17:01" +ik[8206] = 61.96 +il[8206] = -68 +im[8206] = 0.3042 +ij[8206] = 7.1111 +id[8207] = "2603-11-29T13:34:49" +ik[8207] = 103.72 +il[8207] = 62 +im[8207] = 0.1824 +ij[8207] = 14 +id[8208] = "2603-12-09T21:23:04" +ik[8208] = -2.11 +il[8208] = 45 +im[8208] = 0.1688 +ij[8208] = 4 +id[8209] = "2603-12-17T08:51:34" +ik[8209] = -26.236 +il[8209] = -56 +im[8209] = 0.0535 +ij[8209] = 15 +id[8210] = "2603-12-29T01:04:14" +ik[8210] = 1.474 +il[8210] = 179 +im[8210] = 0.1194 +ij[8210] = 28.8 +id[8211] = "2604-01-02T21:14:06" +ik[8211] = 41.741 +il[8211] = -84 +im[8211] = 0.0242 +ij[8211] = 1 +id[8212] = "2604-01-27T21:36:47" +ik[8212] = 1.358 +il[8212] = 149 +im[8212] = 0.0728 +ij[8212] = 27.6 +id[8213] = "2604-03-30T22:45:31" +ik[8213] = 2.798 +il[8213] = 7 +im[8213] = 0.0405 +ij[8213] = 28.6 +id[8214] = "2604-04-10T02:56:23" +ik[8214] = 32.106 +il[8214] = 41 +im[8214] = 0.0123 +ij[8214] = 9 +id[8215] = "2604-04-10T06:36:11" +ik[8215] = 3.353 +il[8215] = -14 +im[8215] = 0.0098 +ij[8215] = 27.2 +id[8216] = "2604-05-04T23:07:50" +ik[8216] = 12 +il[8216] = -29 +im[8216] = 0.0589 +ij[8216] = 18 +id[8217] = "2604-07-09T21:56:03" +ik[8217] = 1.362 +il[8217] = -97 +im[8217] = 0.0445 +ij[8217] = 28.1 +id[8218] = "2604-09-22T02:51:56" +ik[8218] = 25.829 +il[8218] = 179 +im[8218] = 0.0534 +ij[8218] = 16 +id[8219] = "2604-10-01T02:10:27" +ik[8219] = 0.82 +il[8219] = -80 +im[8219] = 0.01 +ij[8219] = 12 +id[8220] = "2604-12-04T08:21:39" +ik[8220] = 2.016 +il[8220] = -66 +im[8220] = 0.0592 +ij[8220] = 28.1 +id[8221] = "2604-12-30T19:27:55" +ik[8221] = 4.309 +il[8221] = 19 +im[8221] = 0.0531 +ij[8221] = 27.4 +id[8222] = "2605-01-14T05:18:15" +ik[8222] = 5.483 +il[8222] = 18 +im[8222] = 0.0605 +ij[8222] = 27.1 +id[8223] = "2605-02-02T16:29:06" +ik[8223] = 0 +il[8223] = 35 +im[8223] = 0.055 +ij[8223] = 17 +id[8224] = "2605-03-24T01:40:49" +ik[8224] = 34.026 +il[8224] = 4 +im[8224] = 0.0195 +ij[8224] = 8 +id[8225] = "2605-04-05T00:38:50" +ik[8225] = 0.193 +il[8225] = 132 +im[8225] = 0.0074 +ij[8225] = 27.3 +id[8226] = "2605-05-05T15:19:02" +ik[8226] = 1.101 +il[8226] = -157 +im[8226] = 0.0302 +ij[8226] = 27.5 +id[8227] = "2605-06-03T11:38:18" +ik[8227] = -24.727 +il[8227] = 179 +im[8227] = 0.033 +ij[8227] = 15 +id[8228] = "2605-06-24T18:37:54" +ik[8228] = 0.708 +il[8228] = -85 +im[8228] = 0.119 +ij[8228] = 28.8 +id[8229] = "2605-07-20T17:11:40" +ik[8229] = 4.46 +il[8229] = -172 +im[8229] = 0.1197 +ij[8229] = 27.6 +id[8230] = "2605-07-30T02:53:05" +ik[8230] = 47.357 +il[8230] = 134 +im[8230] = 0.021 +ij[8230] = 3 +id[8231] = "2605-08-27T02:44:52" +ik[8231] = -2.343 +il[8231] = 51 +im[8231] = 0.0369 +ij[8231] = 2 +id[8232] = "2605-10-19T12:39:58" +ik[8232] = 0 +il[8232] = 66 +im[8232] = 0.1838 +ij[8232] = 13 +id[8233] = "2605-11-25T02:54:00" +ik[8233] = 0.6 +il[8233] = -171 +im[8233] = 0.3069 +ij[8233] = 11 +id[8234] = "2605-12-22T03:45:00" +ik[8234] = 2.533 +il[8234] = -93 +im[8234] = 0.2568 +ij[8234] = 28.2 +id[8235] = "2605-12-27T22:19:46" +ik[8235] = 69.4 +il[8235] = 40 +im[8235] = 0.074 +ij[8235] = 7.1342 +id[8236] = "2606-02-19T05:19:33" +ik[8236] = -1.728 +il[8236] = 76 +im[8236] = 0.1015 +ij[8236] = 4 +id[8237] = "2606-02-20T06:02:32" +ik[8237] = 123.72 +il[8237] = 75 +im[8237] = 0.0772 +ij[8237] = 14 +id[8238] = "2606-03-02T16:59:05" +ik[8238] = 38.205 +il[8238] = 10 +im[8238] = 0.1156 +ij[8238] = 1 +id[8239] = "2606-03-10T21:43:53" +ik[8239] = 2.618 +il[8239] = 16 +im[8239] = 0.0488 +ij[8239] = 27.2 +id[8240] = "2606-04-11T07:33:26" +ik[8240] = 2.662 +il[8240] = 164 +im[8240] = 0.0785 +ij[8240] = 28.6 +id[8241] = "2606-04-11T09:10:31" +ik[8241] = 12 +il[8241] = 141 +im[8241] = 0.0791 +ij[8241] = 18 +id[8242] = "2606-05-18T20:11:02" +ik[8242] = 31.341 +il[8242] = -31 +im[8242] = 0.0043 +ij[8242] = 9 +id[8243] = "2606-08-19T18:40:24" +ik[8243] = 0.603 +il[8243] = 158 +im[8243] = 0.0616 +ij[8243] = 28.2 +id[8244] = "2606-09-04T14:09:44" +ik[8244] = 25.96 +il[8244] = 29 +im[8244] = 0.0541 +ij[8244] = 16 +id[8245] = "2606-09-06T04:54:57" +ik[8245] = 0.657 +il[8245] = -179 +im[8245] = 0.0461 +ij[8245] = 28.1 +id[8246] = "2606-11-08T03:35:47" +ik[8246] = 0.17 +il[8246] = 103 +im[8246] = 0.0151 +ij[8246] = 12 +id[8247] = "2607-01-14T01:27:51" +ik[8247] = 0 +il[8247] = -113 +im[8247] = 0.0551 +ij[8247] = 17 +id[8248] = "2607-02-04T19:28:36" +ik[8248] = 0.349 +il[8248] = -180 +im[8248] = 0.0379 +ij[8248] = 28.5 +id[8249] = "2607-02-21T14:49:46" +ik[8249] = 4.189 +il[8249] = 58 +im[8249] = 0.0605 +ij[8249] = 28.1 +id[8250] = "2607-03-13T12:07:36" +ik[8250] = 0.271 +il[8250] = -75 +im[8250] = 0.0555 +ij[8250] = 27.3 +id[8251] = "2607-04-11T18:27:40" +ik[8251] = 0.788 +il[8251] = 116 +im[8251] = 0.0546 +ij[8251] = 27.5 +id[8252] = "2607-04-29T16:34:54" +ik[8252] = 0.971 +il[8252] = -43 +im[8252] = 0.0129 +ij[8252] = 28.2 +id[8253] = "2607-05-11T03:42:05" +ik[8253] = -25.314 +il[8253] = -100 +im[8253] = 0.0512 +ij[8253] = 15 +id[8254] = "2607-06-03T05:51:02" +ik[8254] = 36.242 +il[8254] = 92 +im[8254] = 0.0727 +ij[8254] = 8 +id[8255] = "2607-06-04T00:16:26" +ik[8255] = 0.124 +il[8255] = -177 +im[8255] = 0.0784 +ij[8255] = 28.8 +id[8256] = "2607-06-21T17:07:42" +ik[8256] = 3.464 +il[8256] = 103 +im[8256] = 0.0874 +ij[8256] = 27.6 +id[8257] = "2607-08-26T17:00:28" +ik[8257] = 5.318 +il[8257] = 32 +im[8257] = 0.0597 +ij[8257] = 27.2 +id[8258] = "2607-09-14T19:30:08" +ik[8258] = 43.798 +il[8258] = -178 +im[8258] = 0.1289 +ij[8258] = 3 +id[8259] = "2607-09-15T19:28:55" +ik[8259] = 11 +il[8259] = -168 +im[8259] = 0.1236 +ij[8259] = 18 +id[8260] = "2607-09-30T11:47:07" +ik[8260] = -2.04 +il[8260] = 91 +im[8260] = 0.1088 +ij[8260] = 2 +id[8261] = "2607-10-02T09:23:57" +ik[8261] = 0.609 +il[8261] = 146 +im[8261] = 0.0715 +ij[8261] = 28.6 +id[8262] = "2607-12-02T06:03:01" +ik[8262] = 0 +il[8262] = 68 +im[8262] = 0.1008 +ij[8262] = 13 +id[8263] = "2608-01-09T19:41:07" +ik[8263] = 3.73 +il[8263] = -145 +im[8263] = 0.0298 +ij[8263] = 11 +id[8264] = "2608-01-29T01:46:25" +ik[8264] = 5.506 +il[8264] = 124 +im[8264] = 0.2301 +ij[8264] = 28.1 +id[8265] = "2608-02-17T05:07:37" +ik[8265] = 76.96 +il[8265] = -113 +im[8265] = 0.0559 +ij[8265] = 7.1627 +id[8266] = "2608-04-12T17:05:21" +ik[8266] = -1.571 +il[8266] = -133 +im[8266] = 0.0387 +ij[8266] = 4 +id[8267] = "2608-04-15T21:05:02" +ik[8267] = 37.03 +il[8267] = -163 +im[8267] = 0.0399 +ij[8267] = 1 +id[8268] = "2608-04-20T06:24:38" +ik[8268] = 2.214 +il[8268] = 99 +im[8268] = 0.1054 +ij[8268] = 28.6 +id[8269] = "2608-04-21T22:56:26" +ik[8269] = 141.7 +il[8269] = -133 +im[8269] = 0.1104 +ij[8269] = 14 +id[8270] = "2608-06-23T17:48:49" +ik[8270] = 31.441 +il[8270] = -177 +im[8270] = 0.0233 +ij[8270] = 9 +id[8271] = "2608-07-29T03:05:35" +ik[8271] = 0.498 +il[8271] = 24 +im[8271] = 0.0646 +ij[8271] = 28.2 +id[8272] = "2608-08-16T08:11:33" +ik[8272] = 26.087 +il[8272] = 123 +im[8272] = 0.0569 +ij[8272] = 16 +id[8273] = "2608-08-30T19:35:43" +ik[8273] = 5.068 +il[8273] = 92 +im[8273] = 0.053 +ij[8273] = 28.1 +id[8274] = "2608-09-01T16:10:56" +ik[8274] = 1.181 +il[8274] = 162 +im[8274] = 0.0358 +ij[8274] = 28.2 +id[8275] = "2608-12-22T23:03:47" +ik[8275] = 0.66 +il[8275] = 92 +im[8275] = 0.0599 +ij[8275] = 12 +id[8276] = "2608-12-25T08:16:39" +ik[8276] = 0 +il[8276] = 141 +im[8276] = 0.0447 +ij[8276] = 17 +id[8277] = "2609-03-20T19:17:09" +ik[8277] = 0.643 +il[8277] = 85 +im[8277] = 0.0628 +ij[8277] = 27.5 +id[8278] = "2609-04-06T18:32:12" +ik[8278] = 0.199 +il[8278] = -92 +im[8278] = 0.0313 +ij[8278] = 28.5 +id[8279] = "2609-04-12T00:39:32" +ik[8279] = 0.535 +il[8279] = -137 +im[8279] = 0.0381 +ij[8279] = 28.2 +id[8280] = "2609-04-19T15:35:57" +ik[8280] = -25.606 +il[8280] = 77 +im[8280] = 0.0594 +ij[8280] = 15 +id[8281] = "2609-05-13T19:00:12" +ik[8281] = 4.282 +il[8281] = -98 +im[8281] = 0.0637 +ij[8281] = 28.1 +id[8282] = "2609-05-18T05:55:01" +ik[8282] = 0.589 +il[8282] = 141 +im[8282] = 0.0637 +ij[8282] = 28.8 +id[8283] = "2609-05-29T11:43:26" +ik[8283] = 3.008 +il[8283] = 165 +im[8283] = 0.0695 +ij[8283] = 27.6 +id[8284] = "2609-07-31T11:49:53" +ik[8284] = 4.867 +il[8284] = 62 +im[8284] = 0.0468 +ij[8284] = 27.2 +id[8285] = "2609-08-19T05:43:29" +ik[8285] = 34.751 +il[8285] = -23 +im[8285] = 0.0336 +ij[8285] = 8 +id[8286] = "2609-08-19T15:44:46" +ik[8286] = 11 +il[8286] = -170 +im[8286] = 0.0406 +ij[8286] = 18 +id[8287] = "2609-10-08T03:16:08" +ik[8287] = 0.465 +il[8287] = 139 +im[8287] = 0.0886 +ij[8287] = 28.6 +id[8288] = "2609-10-30T15:47:08" +ik[8288] = -1.784 +il[8288] = 170 +im[8288] = 0.0441 +ij[8288] = 2 +id[8289] = "2609-10-31T06:52:07" +ik[8289] = 39.432 +il[8289] = -50 +im[8289] = 0.0572 +ij[8289] = 3 +id[8290] = "2609-12-22T02:18:18" +ik[8290] = 20.528 +il[8290] = 160 +im[8290] = 0.0684 +ij[8290] = 16 +id[8291] = "2610-01-04T22:56:54" +ik[8291] = 0 +il[8291] = -16 +im[8291] = 0.0374 +ij[8291] = 13 +id[8292] = "2610-01-12T22:52:00" +ik[8292] = 1.269 +il[8292] = 63 +im[8292] = 0.2029 +ij[8292] = 28.2 +id[8293] = "2610-02-14T04:56:41" +ik[8293] = 4.37 +il[8293] = -99 +im[8293] = 0.0852 +ij[8293] = 11 +id[8294] = "2610-03-17T12:54:32" +ik[8294] = 3.109 +il[8294] = -133 +im[8294] = 0.1219 +ij[8294] = 28.6 +id[8295] = "2610-03-27T07:11:55" +ik[8295] = 81.34 +il[8295] = 45 +im[8295] = 0.0246 +ij[8295] = 7.196 +id[8296] = "2610-04-24T07:17:54" +ik[8296] = 1.672 +il[8296] = -49 +im[8296] = 0.0209 +ij[8296] = 28.6 +id[8297] = "2610-05-25T21:45:04" +ik[8297] = 37.575 +il[8297] = 37 +im[8297] = 0.0852 +ij[8297] = 1 +id[8298] = "2610-05-28T17:14:15" +ik[8298] = -1.573 +il[8298] = 132 +im[8298] = 0.1103 +ij[8298] = 4 +id[8299] = "2610-06-03T03:16:43" +ik[8299] = 149.18 +il[8299] = 33 +im[8299] = 0.063 +ij[8299] = 14 +id[8300] = "2610-08-02T12:59:29" +ik[8300] = 32.39 +il[8300] = 112 +im[8300] = 0.0084 +ij[8300] = 9 +id[8301] = "2610-10-16T21:13:02" +ik[8301] = 0.72 +il[8301] = 1 +im[8301] = 0.0562 +ij[8301] = 28.7 +id[8302] = "2610-11-02T17:42:17" +ik[8302] = 3.563 +il[8302] = -143 +im[8302] = 0.0636 +ij[8302] = 27.4 +id[8303] = "2610-11-16T14:54:01" +ik[8303] = 6.184 +il[8303] = 35 +im[8303] = 0.0629 +ij[8303] = 27.1 +id[8304] = "2610-11-17T16:37:51" +ik[8304] = 1.801 +il[8304] = 19 +im[8304] = 0.0644 +ij[8304] = 28.1 +id[8305] = "2610-12-06T16:23:05" +ik[8305] = 0 +il[8305] = -151 +im[8305] = 0.0311 +ij[8305] = 17 +id[8306] = "2611-02-24T08:57:35" +ik[8306] = 1.05 +il[8306] = 37 +im[8306] = 0.0563 +ij[8306] = 12 +id[8307] = "2611-03-31T02:37:48" +ik[8307] = -25.805 +il[8307] = -96 +im[8307] = 0.0528 +ij[8307] = 15 +id[8308] = "2611-06-03T22:14:48" +ik[8308] = 0.567 +il[8308] = -100 +im[8308] = 0.0296 +ij[8308] = 28.5 +id[8309] = "2611-07-10T15:25:26" +ik[8309] = 4.568 +il[8309] = 2 +im[8309] = 0.0454 +ij[8309] = 27.2 +id[8310] = "2611-07-30T01:57:26" +ik[8310] = 12 +il[8310] = 33 +im[8310] = 0.0107 +ij[8310] = 18 +id[8311] = "2611-10-09T21:21:15" +ik[8311] = 32.354 +il[8311] = 79 +im[8311] = 0.0164 +ij[8311] = 8 +id[8312] = "2611-10-21T21:03:24" +ik[8312] = 0.026 +il[8312] = -161 +im[8312] = 0.0266 +ij[8312] = 28.6 +id[8313] = "2611-12-02T21:33:49" +ik[8313] = -1.631 +il[8313] = -122 +im[8313] = 0.0484 +ij[8313] = 2 +id[8314] = "2611-12-11T15:57:01" +ik[8314] = 36.876 +il[8314] = 47 +im[8314] = 0.1022 +ij[8314] = 3 +id[8315] = "2612-02-07T03:17:10" +ik[8315] = 0 +il[8315] = 72 +im[8315] = 0.1582 +ij[8315] = 13 +id[8316] = "2612-03-19T05:11:48" +ik[8316] = 3.59 +il[8316] = 57 +im[8316] = 0.1962 +ij[8316] = 11 +id[8317] = "2612-04-07T05:09:41" +ik[8317] = 0.604 +il[8317] = 29 +im[8317] = 0.0551 +ij[8317] = 28.1 +id[8318] = "2612-04-19T09:57:30" +ik[8318] = 1.056 +il[8318] = 63 +im[8318] = 0.0134 +ij[8318] = 28.2 +id[8319] = "2612-05-01T02:19:46" +ik[8319] = 83.96 +il[8319] = -70 +im[8319] = 0.0893 +ij[8319] = 7.2111 +id[8320] = "2612-05-06T08:48:49" +ik[8320] = 6.294 +il[8320] = -116 +im[8320] = 0.1152 +ij[8320] = 28.6 +id[8321] = "2612-07-01T20:02:24" +ik[8321] = 26.28 +il[8321] = -98 +im[8321] = 0.0901 +ij[8321] = 16 +id[8322] = "2612-07-04T13:00:36" +ik[8322] = 148.41 +il[8322] = 34 +im[8322] = 0.1136 +ij[8322] = 14 +id[8323] = "2612-07-04T14:24:00" +ik[8323] = 39.68 +il[8323] = 14 +im[8323] = 0.1137 +ij[8323] = 1 +id[8324] = "2612-07-10T22:08:30" +ik[8324] = -1.71 +il[8324] = -41 +im[8324] = 0.0356 +ij[8324] = 4 +id[8325] = "2612-09-19T14:41:42" +ik[8325] = 34.109 +il[8325] = 39 +im[8325] = 0.0306 +ij[8325] = 9 +id[8326] = "2612-10-07T21:14:38" +ik[8326] = 1.067 +il[8326] = 119 +im[8326] = 0.0212 +ij[8326] = 28.7 +id[8327] = "2612-10-12T08:36:50" +ik[8327] = 3.205 +il[8327] = -8 +im[8327] = 0.0703 +ij[8327] = 27.4 +id[8328] = "2612-11-16T10:14:58" +ik[8328] = 0 +il[8328] = -50 +im[8328] = 0.026 +ij[8328] = 17 +id[8329] = "2613-01-10T10:47:20" +ik[8329] = 0.184 +il[8329] = 123 +im[8329] = 0.0569 +ij[8329] = 27.3 +id[8330] = "2613-01-11T03:09:57" +ik[8330] = 1.088 +il[8330] = -113 +im[8330] = 0.0514 +ij[8330] = 28.2 +id[8331] = "2613-01-31T03:36:10" +ik[8331] = 2.283 +il[8331] = 75 +im[8331] = 0.0128 +ij[8331] = 28.1 +id[8332] = "2613-02-07T21:38:10" +ik[8332] = 0.502 +il[8332] = -113 +im[8332] = 0.0594 +ij[8332] = 27.5 +id[8333] = "2613-03-10T17:54:46" +ik[8333] = -25.969 +il[8333] = -110 +im[8333] = 0.0457 +ij[8333] = 15 +id[8334] = "2613-05-07T06:19:22" +ik[8334] = 0.14 +il[8334] = -88 +im[8334] = 0.05 +ij[8334] = 12 +id[8335] = "2613-07-10T02:49:15" +ik[8335] = 12 +il[8335] = 20 +im[8335] = 0.0161 +ij[8335] = 18 +id[8336] = "2613-07-19T20:54:10" +ik[8336] = 1.269 +il[8336] = -146 +im[8336] = 0.0337 +ij[8336] = 28.1 +id[8337] = "2613-08-02T21:59:16" +ik[8337] = 1.112 +il[8337] = -26 +im[8337] = 0.0452 +ij[8337] = 28.2 +id[8338] = "2613-08-12T08:56:25" +ik[8338] = 0.312 +il[8338] = -98 +im[8338] = 0.0562 +ij[8338] = 28.5 +id[8339] = "2613-10-13T07:07:37" +ik[8339] = 1.09 +il[8339] = 168 +im[8339] = 0.0435 +ij[8339] = 28.2 +id[8340] = "2613-11-07T09:45:18" +ik[8340] = 0.521 +il[8340] = 11 +im[8340] = 0.0698 +ij[8340] = 28.6 +id[8341] = "2613-11-16T05:25:42" +ik[8341] = 30.969 +il[8341] = 161 +im[8341] = 0.031 +ij[8341] = 8 +id[8342] = "2613-11-25T14:09:11" +ik[8342] = 25.058 +il[8342] = 121 +im[8342] = 0.0611 +ij[8342] = 16 +id[8343] = "2614-01-10T01:45:24" +ik[8343] = -1.58 +il[8343] = 26 +im[8343] = 0.0087 +ij[8343] = 2 +id[8344] = "2614-01-18T22:26:58" +ik[8344] = 36.173 +il[8344] = 161 +im[8344] = 0.1088 +ij[8344] = 3 +id[8345] = "2614-03-16T13:01:05" +ik[8345] = 0 +il[8345] = 125 +im[8345] = 0.1675 +ij[8345] = 13 +id[8346] = "2614-04-24T18:54:55" +ik[8346] = 1.48 +il[8346] = 25 +im[8346] = 0.2282 +ij[8346] = 11 +id[8347] = "2614-06-04T12:03:40" +ik[8347] = 79.96 +il[8347] = -49 +im[8347] = 0.2093 +ij[8347] = 7.1837 +id[8348] = "2614-08-02T21:07:29" +ik[8348] = 139.34 +il[8348] = 33 +im[8348] = 0.0709 +ij[8348] = 14 +id[8349] = "2614-08-16T19:54:17" +ik[8349] = -1.97 +il[8349] = -172 +im[8349] = 0.056 +ij[8349] = 4 +id[8350] = "2614-08-18T16:33:01" +ik[8350] = 43.224 +il[8350] = -104 +im[8350] = 0.0162 +ij[8350] = 1 +id[8351] = "2614-09-18T04:49:29" +ik[8351] = 2.584 +il[8351] = 10 +im[8351] = 0.0329 +ij[8351] = 27.4 +id[8352] = "2614-09-26T15:44:17" +ik[8352] = 1.614 +il[8352] = -71 +im[8352] = 0.0889 +ij[8352] = 28.7 +id[8353] = "2614-10-26T09:38:41" +ik[8353] = 0 +il[8353] = -48 +im[8353] = 0.0658 +ij[8353] = 17 +id[8354] = "2614-11-25T01:05:41" +ik[8354] = 35.551 +il[8354] = 12 +im[8354] = 0.0475 +ij[8354] = 9 +id[8355] = "2614-12-20T07:02:03" +ik[8355] = 0.052 +il[8355] = 172 +im[8355] = 0.0764 +ij[8355] = 27.3 +id[8356] = "2614-12-28T01:08:20" +ik[8356] = 0.229 +il[8356] = -23 +im[8356] = 0.0267 +ij[8356] = 28.2 +id[8357] = "2615-01-18T02:08:44" +ik[8357] = 0.478 +il[8357] = 168 +im[8357] = 0.071 +ij[8357] = 27.5 +id[8358] = "2615-02-18T22:24:41" +ik[8358] = -26.125 +il[8358] = 175 +im[8358] = 0.0505 +ij[8358] = 15 +id[8359] = "2615-03-29T08:38:52" +ik[8359] = 2.21 +il[8359] = 42 +im[8359] = 0.0612 +ij[8359] = 27.6 +id[8360] = "2615-04-06T03:38:32" +ik[8360] = 1.594 +il[8360] = -179 +im[8360] = 0.025 +ij[8360] = 28.8 +id[8361] = "2615-04-21T15:12:26" +ik[8361] = 1.447 +il[8361] = 166 +im[8361] = 0.0051 +ij[8361] = 28.1 +id[8362] = "2615-06-21T16:45:26" +ik[8362] = 12 +il[8362] = 12 +im[8362] = 0.0331 +ij[8362] = 18 +id[8363] = "2615-07-01T15:42:02" +ik[8363] = 0.79 +il[8363] = 123 +im[8363] = 0.0213 +ij[8363] = 12 +id[8364] = "2615-09-13T08:24:57" +ik[8364] = 0.484 +il[8364] = 45 +im[8364] = 0.0029 +ij[8364] = 28.2 +id[8365] = "2615-09-21T22:18:04" +ik[8365] = 4.405 +il[8365] = -77 +im[8365] = 0.0547 +ij[8365] = 28.1 +id[8366] = "2615-11-05T14:49:06" +ik[8366] = 25.404 +il[8366] = 111 +im[8366] = 0.0518 +ij[8366] = 16 +id[8367] = "2615-11-11T01:36:01" +ik[8367] = 0.115 +il[8367] = 2 +im[8367] = 0.0173 +ij[8367] = 28.5 +id[8368] = "2615-11-27T09:51:46" +ik[8368] = 1.026 +il[8368] = 35 +im[8368] = 0.0547 +ij[8368] = 28.6 +id[8369] = "2615-12-20T02:46:08" +ik[8369] = 30.623 +il[8369] = 0 +im[8369] = 0.0289 +ij[8369] = 8 +id[8370] = "2616-03-02T21:15:59" +ik[8370] = 37.425 +il[8370] = 68 +im[8370] = 0.0072 +ij[8370] = 3 +id[8371] = "2616-03-04T07:15:12" +ik[8371] = -1.654 +il[8371] = -68 +im[8371] = 0.0316 +ij[8371] = 2 +id[8372] = "2616-03-04T17:23:57" +ik[8372] = 5.209 +il[8372] = 144 +im[8372] = 0.0429 +ij[8372] = 27.4 +id[8373] = "2616-03-18T19:54:52" +ik[8373] = 0.776 +il[8373] = -120 +im[8373] = 0.0756 +ij[8373] = 28.7 +id[8374] = "2616-03-28T19:54:25" +ik[8374] = 4.785 +il[8374] = -25 +im[8374] = 0.0796 +ij[8374] = 27.1 +id[8375] = "2616-05-05T21:07:59" +ik[8375] = 0 +il[8375] = -48 +im[8375] = 0.206 +ij[8375] = 13 +id[8376] = "2616-05-10T01:28:23" +ik[8376] = 0.648 +il[8376] = -71 +im[8376] = 0.0446 +ij[8376] = 28.2 +id[8377] = "2616-06-08T20:06:02" +ik[8377] = 2.11 +il[8377] = -89 +im[8377] = 0.138 +ij[8377] = 11 +id[8378] = "2616-07-16T20:10:34" +ik[8378] = 71.96 +il[8378] = 88 +im[8378] = 0.0715 +ij[8378] = 7.1263 +id[8379] = "2616-07-16T23:02:16" +ik[8379] = 1.817 +il[8379] = 46 +im[8379] = 0.0645 +ij[8379] = 27.4 +id[8380] = "2616-08-31T17:24:27" +ik[8380] = 3.054 +il[8380] = -142 +im[8380] = 0.1484 +ij[8380] = 28.7 +id[8381] = "2616-09-04T12:29:25" +ik[8381] = 121.64 +il[8381] = -31 +im[8381] = 0.1952 +ij[8381] = 14 +id[8382] = "2616-09-15T19:13:25" +ik[8382] = -2.291 +il[8382] = -21 +im[8382] = 0.1287 +ij[8382] = 4 +id[8383] = "2616-09-27T16:56:21" +ik[8383] = 0 +il[8383] = 131 +im[8383] = 0.0833 +ij[8383] = 17 +id[8384] = "2616-10-04T16:48:00" +ik[8384] = 46.294 +il[8384] = -158 +im[8384] = 0.149 +ij[8384] = 1 +id[8385] = "2616-11-24T03:41:42" +ik[8385] = 0.31 +il[8385] = 179 +im[8385] = 0.0509 +ij[8385] = 27.3 +id[8386] = "2616-12-24T10:23:24" +ik[8386] = 0.537 +il[8386] = 11 +im[8386] = 0.063 +ij[8386] = 27.5 +id[8387] = "2617-01-27T11:47:31" +ik[8387] = -26.286 +il[8387] = -41 +im[8387] = 0.0826 +ij[8387] = 15 +id[8388] = "2617-02-01T13:37:41" +ik[8388] = 34.492 +il[8388] = -19 +im[8388] = 0.0165 +ij[8388] = 9 +id[8389] = "2617-03-07T04:50:25" +ik[8389] = 1.931 +il[8389] = 74 +im[8389] = 0.0594 +ij[8389] = 27.6 +id[8390] = "2617-03-21T18:53:03" +ik[8390] = 1.957 +il[8390] = 2 +im[8390] = 0.0451 +ij[8390] = 28.8 +id[8391] = "2617-05-11T08:36:54" +ik[8391] = 3.848 +il[8391] = -74 +im[8391] = 0.0458 +ij[8391] = 27.2 +id[8392] = "2617-06-02T05:31:09" +ik[8392] = 12 +il[8392] = 178 +im[8392] = 0.0506 +ij[8392] = 18 +id[8393] = "2617-08-11T23:16:16" +ik[8393] = 1.13 +il[8393] = -135 +im[8393] = 0.0315 +ij[8393] = 12 +id[8394] = "2617-10-17T10:45:57" +ik[8394] = 25.617 +il[8394] = -180 +im[8394] = 0.0253 +ij[8394] = 16 +id[8395] = "2617-12-17T17:47:21" +ik[8395] = 1.358 +il[8395] = -49 +im[8395] = 0.0204 +ij[8395] = 28.6 +id[8396] = "2618-01-22T17:39:01" +ik[8396] = 31.288 +il[8396] = -64 +im[8396] = 0.0713 +ij[8396] = 8 +id[8397] = "2618-01-30T23:09:52" +ik[8397] = 4.733 +il[8397] = -68 +im[8397] = 0.0497 +ij[8397] = 27.4 +id[8398] = "2618-02-13T11:50:44" +ik[8398] = 0.073 +il[8398] = -130 +im[8398] = 0.0281 +ij[8398] = 28.5 +id[8399] = "2618-02-15T21:00:54" +ik[8399] = 5.086 +il[8399] = 115 +im[8399] = 0.0648 +ij[8399] = 27.1 +id[8400] = "2618-02-22T22:25:01" +ik[8400] = 0.33 +il[8400] = 161 +im[8400] = 0.0504 +ij[8400] = 28.7 +id[8401] = "2618-03-08T23:28:32" +ik[8401] = 23 +il[8401] = -82 +im[8401] = 0.0722 +ij[8401] = 17 +id[8402] = "2618-05-01T15:01:00" +ik[8402] = 41.441 +il[8402] = -168 +im[8402] = 0.1587 +ij[8402] = 3 +id[8403] = "2618-05-26T00:00:33" +ik[8403] = -2.008 +il[8403] = -73 +im[8403] = 0.1484 +ij[8403] = 2 +id[8404] = "2618-05-28T15:22:19" +ik[8404] = 1.05 +il[8404] = 82 +im[8404] = 0.2015 +ij[8404] = 27.3 +id[8405] = "2618-07-17T12:29:55" +ik[8405] = 0 +il[8405] = -120 +im[8405] = 0.0442 +ij[8405] = 13 +id[8406] = "2618-08-16T19:22:29" +ik[8406] = 6.6 +il[8406] = 47 +im[8406] = 0.306 +ij[8406] = 11 +id[8407] = "2618-09-17T15:36:32" +ik[8407] = 62.13 +il[8407] = -108 +im[8407] = 0.3387 +ij[8407] = 7.1008 +id[8408] = "2618-09-19T17:58:24" +ik[8408] = 3.988 +il[8408] = -123 +im[8408] = 0.2511 +ij[8408] = 28.2 +id[8409] = "2618-09-23T05:17:47" +ik[8409] = 4.809 +il[8409] = 102 +im[8409] = 0.0143 +ij[8409] = 27.3 +id[8410] = "2618-10-29T10:38:12" +ik[8410] = 103.92 +il[8410] = 17 +im[8410] = 0.1958 +ij[8410] = 14 +id[8411] = "2618-11-08T13:06:20" +ik[8411] = -2.286 +il[8411] = 79 +im[8411] = 0.1904 +ij[8411] = 4 +id[8412] = "2618-11-16T11:49:28" +ik[8412] = 1.334 +il[8412] = 176 +im[8412] = 0.0926 +ij[8412] = 27.5 +id[8413] = "2618-12-05T10:24:57" +ik[8413] = 43.767 +il[8413] = 20 +im[8413] = 0.1138 +ij[8413] = 1 +id[8414] = "2618-12-31T15:36:23" +ik[8414] = -26.397 +il[8414] = -165 +im[8414] = 0.0304 +ij[8414] = 15 +id[8415] = "2619-02-10T00:32:18" +ik[8415] = 1.552 +il[8415] = 86 +im[8415] = 0.0544 +ij[8415] = 27.6 +id[8416] = "2619-03-04T17:45:39" +ik[8416] = 2.424 +il[8416] = 42 +im[8416] = 0.0867 +ij[8416] = 28.8 +id[8417] = "2619-03-25T09:43:54" +ik[8417] = 32.653 +il[8417] = -2 +im[8417] = 0.0308 +ij[8417] = 9 +id[8418] = "2619-04-20T09:30:30" +ik[8418] = 3.523 +il[8418] = -114 +im[8418] = 0.0606 +ij[8418] = 27.2 +id[8419] = "2619-05-13T23:57:23" +ik[8419] = 12 +il[8419] = -102 +im[8419] = 0.0581 +ij[8419] = 18 +id[8420] = "2619-06-11T14:29:04" +ik[8420] = 4.775 +il[8420] = -46 +im[8420] = 0.0539 +ij[8420] = 28.1 +id[8421] = "2619-06-20T12:36:48" +ik[8421] = 0.647 +il[8421] = 65 +im[8421] = 0.0174 +ij[8421] = 28.2 +id[8422] = "2619-09-18T00:10:29" +ik[8422] = 0.99 +il[8422] = 33 +im[8422] = 0.022 +ij[8422] = 12 +id[8423] = "2619-09-29T22:42:48" +ik[8423] = 25.776 +il[8423] = 10 +im[8423] = 0.0031 +ij[8423] = 16 +id[8424] = "2620-01-08T03:52:58" +ik[8424] = 1.399 +il[8424] = -179 +im[8424] = 0.0157 +ij[8424] = 28.6 +id[8425] = "2620-01-08T17:16:29" +ik[8425] = 4.412 +il[8425] = -6 +im[8425] = 0.0082 +ij[8425] = 27.4 +id[8426] = "2620-01-09T22:56:56" +ik[8426] = 1.053 +il[8426] = -84 +im[8426] = 0.0129 +ij[8426] = 28.2 +id[8427] = "2620-01-23T09:00:49" +ik[8427] = 5.386 +il[8427] = -107 +im[8427] = 0.0101 +ij[8427] = 27.1 +id[8428] = "2620-02-11T19:21:37" +ik[8428] = 0.028 +il[8428] = -75 +im[8428] = 0.0661 +ij[8428] = 28.7 +id[8429] = "2620-02-11T23:52:43" +ik[8429] = 0 +il[8429] = -142 +im[8429] = 0.0673 +ij[8429] = 17 +id[8430] = "2620-03-03T23:39:28" +ik[8430] = 33.046 +il[8430] = 61 +im[8430] = 0.0462 +ij[8430] = 8 +id[8431] = "2620-04-15T07:26:27" +ik[8431] = 0.107 +il[8431] = -15 +im[8431] = 0.0659 +ij[8431] = 27.3 +id[8432] = "2620-04-25T07:33:21" +ik[8432] = 0.328 +il[8432] = 78 +im[8432] = 0.1013 +ij[8432] = 28.5 +id[8433] = "2620-05-17T03:06:03" +ik[8433] = 1.359 +il[8433] = -8 +im[8433] = 0.0178 +ij[8433] = 27.5 +id[8434] = "2620-06-14T12:36:12" +ik[8434] = -24.251 +il[8434] = 121 +im[8434] = 0.038 +ij[8434] = 15 +id[8435] = "2620-07-10T03:41:02" +ik[8435] = 46.99 +il[8435] = 141 +im[8435] = 0.1375 +ij[8435] = 3 +id[8436] = "2620-08-09T03:17:02" +ik[8436] = -2.396 +il[8436] = 78 +im[8436] = 0.1285 +ij[8436] = 2 +id[8437] = "2620-08-09T13:48:14" +ik[8437] = 5.42 +il[8437] = -76 +im[8437] = 0.1129 +ij[8437] = 27.6 +id[8438] = "2620-09-27T10:38:43" +ik[8438] = 0 +il[8438] = 91 +im[8438] = 0.2967 +ij[8438] = 13 +id[8439] = "2620-09-28T03:57:17" +ik[8439] = 1.846 +il[8439] = -162 +im[8439] = 0.3144 +ij[8439] = 28.8 +id[8440] = "2620-11-02T01:11:49" +ik[8440] = 1.35 +il[8440] = -160 +im[8440] = 0.0404 +ij[8440] = 11 +id[8441] = "2620-12-02T10:27:23" +ik[8441] = 65.99 +il[8441] = -169 +im[8441] = 0.1763 +ij[8441] = 7.1262 +id[8442] = "2620-12-08T03:58:43" +ik[8442] = 1.914 +il[8442] = -14 +im[8442] = 0.2026 +ij[8442] = 27.6 +id[8443] = "2621-01-20T05:01:09" +ik[8443] = 114.77 +il[8443] = 15 +im[8443] = 0.1214 +ij[8443] = 14 +id[8444] = "2621-01-24T19:49:55" +ik[8444] = -1.847 +il[8444] = -163 +im[8444] = 0.0229 +ij[8444] = 4 +id[8445] = "2621-02-03T16:46:42" +ik[8445] = 3.195 +il[8445] = -24 +im[8445] = 0.0717 +ij[8445] = 28.8 +id[8446] = "2621-02-09T19:20:55" +ik[8446] = 39.262 +il[8446] = -5 +im[8446] = 0.0942 +ij[8446] = 1 +id[8447] = "2621-03-24T19:26:07" +ik[8447] = 2.986 +il[8447] = 39 +im[8447] = 0.0534 +ij[8447] = 27.2 +id[8448] = "2621-04-21T09:19:58" +ik[8448] = 12 +il[8448] = 90 +im[8448] = 0.032 +ij[8448] = 18 +id[8449] = "2621-05-04T06:42:34" +ik[8449] = 31.536 +il[8449] = -109 +im[8449] = 0.0225 +ij[8449] = 9 +id[8450] = "2621-06-12T00:45:48" +ik[8450] = 1.465 +il[8450] = -9 +im[8450] = 0.0479 +ij[8450] = 28.2 +id[8451] = "2621-08-11T01:03:18" +ik[8451] = 0.604 +il[8451] = -156 +im[8451] = 0.0084 +ij[8451] = 28.1 +id[8452] = "2621-09-11T12:14:31" +ik[8452] = 25.911 +il[8452] = -22 +im[8452] = 0.0284 +ij[8452] = 16 +id[8453] = "2621-10-23T20:02:29" +ik[8453] = 0.46 +il[8453] = -79 +im[8453] = 0.0144 +ij[8453] = 12 +id[8454] = "2622-01-02T05:06:16" +ik[8454] = 5.626 +il[8454] = -63 +im[8454] = 0.0049 +ij[8454] = 27.1 +id[8455] = "2622-01-17T10:55:23" +ik[8455] = 2.041 +il[8455] = -6 +im[8455] = 0.0047 +ij[8455] = 28.2 +id[8456] = "2622-01-19T16:23:01" +ik[8456] = 3.914 +il[8456] = -62 +im[8456] = 0.0303 +ij[8456] = 28.1 +id[8457] = "2622-01-21T14:31:15" +ik[8457] = 0 +il[8457] = -20 +im[8457] = 0.0501 +ij[8457] = 17 +id[8458] = "2622-01-27T12:53:26" +ik[8458] = 1.084 +il[8458] = 60 +im[8458] = 0.0445 +ij[8458] = 28.6 +id[8459] = "2622-02-02T15:55:10" +ik[8459] = 0.176 +il[8459] = 73 +im[8459] = 0.036 +ij[8459] = 28.7 +id[8460] = "2622-03-21T23:23:07" +ik[8460] = 0.254 +il[8460] = 60 +im[8460] = 0.0689 +ij[8460] = 27.3 +id[8461] = "2622-04-20T14:44:39" +ik[8461] = 0.879 +il[8461] = 112 +im[8461] = 0.0777 +ij[8461] = 27.5 +id[8462] = "2622-05-02T16:54:07" +ik[8462] = 35.617 +il[8462] = -165 +im[8462] = 0.0722 +ij[8462] = 8 +id[8463] = "2622-05-19T19:50:53" +ik[8463] = -25.141 +il[8463] = -45 +im[8463] = 0.0867 +ij[8463] = 15 +id[8464] = "2622-06-19T06:50:11" +ik[8464] = 0.239 +il[8464] = 85 +im[8464] = 0.093 +ij[8464] = 28.5 +id[8465] = "2622-07-01T16:18:55" +ik[8465] = 3.742 +il[8465] = 64 +im[8465] = 0.1024 +ij[8465] = 27.6 +id[8466] = "2622-07-28T11:33:14" +ik[8466] = 0.221 +il[8466] = 38 +im[8466] = 0.0894 +ij[8466] = 28.8 +id[8467] = "2622-08-27T03:57:53" +ik[8467] = 45.624 +il[8467] = 83 +im[8467] = 0.1136 +ij[8467] = 3 +id[8468] = "2622-09-09T09:25:40" +ik[8468] = 5.569 +il[8468] = 131 +im[8468] = 0.122 +ij[8468] = 27.2 +id[8469] = "2622-09-18T03:12:36" +ik[8469] = -2.163 +il[8469] = -50 +im[8469] = 0.0571 +ij[8469] = 2 +id[8470] = "2622-10-02T23:27:35" +ik[8470] = 11 +il[8470] = 152 +im[8470] = 0.0149 +ij[8470] = 18 +id[8471] = "2622-11-16T05:01:40" +ik[8471] = 0 +il[8471] = 140 +im[8471] = 0.0658 +ij[8471] = 13 +id[8472] = "2622-11-19T01:46:48" +ik[8472] = 0.817 +il[8472] = -143 +im[8472] = 0.1853 +ij[8472] = 28.2 +id[8473] = "2622-12-10T22:40:32" +ik[8473] = 0.988 +il[8473] = 113 +im[8473] = 0.0477 +ij[8473] = 28.1 +id[8474] = "2622-12-12T16:54:13" +ik[8474] = 12 +il[8474] = -151 +im[8474] = 0.0574 +ij[8474] = 17 +id[8475] = "2622-12-24T16:56:43" +ik[8475] = 2.92 +il[8475] = -47 +im[8475] = 0.014 +ij[8475] = 11 +id[8476] = "2623-01-10T11:23:51" +ik[8476] = 3.221 +il[8476] = 20 +im[8476] = 0.1612 +ij[8476] = 28.1 +id[8477] = "2623-01-29T11:22:06" +ik[8477] = 5.711 +il[8477] = -170 +im[8477] = 0.1772 +ij[8477] = 27.2 +id[8478] = "2623-01-30T04:54:21" +ik[8478] = 74.99 +il[8478] = -59 +im[8478] = 0.1576 +ij[8478] = 7.1501 +id[8479] = "2623-03-21T10:19:09" +ik[8479] = 12 +il[8479] = -34 +im[8479] = 0.1104 +ij[8479] = 18 +id[8480] = "2623-03-25T07:14:23" +ik[8480] = -1.61 +il[8480] = 49 +im[8480] = 0.1165 +ij[8480] = 4 +id[8481] = "2623-03-31T07:48:00" +ik[8481] = 37.261 +il[8481] = 97 +im[8481] = 0.0015 +ij[8481] = 1 +id[8482] = "2623-04-01T20:34:08" +ik[8482] = 136.65 +il[8482] = -80 +im[8482] = 0.0345 +ij[8482] = 14 +id[8483] = "2623-06-10T07:50:34" +ik[8483] = 31.308 +il[8483] = 50 +im[8483] = 0.0135 +ij[8483] = 9 +id[8484] = "2623-08-24T14:46:18" +ik[8484] = 26.039 +il[8484] = -52 +im[8484] = 0.0431 +ij[8484] = 16 +id[8485] = "2623-12-04T15:32:16" +ik[8485] = 0.33 +il[8485] = -131 +im[8485] = 0.053 +ij[8485] = 12 +id[8486] = "2624-01-02T15:23:25" +ik[8486] = 0 +il[8486] = -29 +im[8486] = 0.0539 +ij[8486] = 17 +id[8487] = "2624-02-15T04:23:56" +ik[8487] = 0.436 +il[8487] = -173 +im[8487] = 0.0609 +ij[8487] = 28.6 +id[8488] = "2624-02-29T00:19:48" +ik[8488] = 0.28 +il[8488] = 25 +im[8488] = 0.0523 +ij[8488] = 27.3 +id[8489] = "2624-03-28T21:34:15" +ik[8489] = 0.69 +il[8489] = -9 +im[8489] = 0.0529 +ij[8489] = 27.5 +id[8490] = "2624-04-11T01:24:20" +ik[8490] = 3.491 +il[8490] = 60 +im[8490] = 0.0496 +ij[8490] = 28.1 +id[8491] = "2624-04-27T12:58:43" +ik[8491] = -25.509 +il[8491] = 46 +im[8491] = 0.0602 +ij[8491] = 15 +id[8492] = "2624-06-06T21:27:20" +ik[8492] = 3.158 +il[8492] = -48 +im[8492] = 0.0395 +ij[8492] = 27.6 +id[8493] = "2624-07-08T13:48:22" +ik[8493] = 0.901 +il[8493] = 18 +im[8493] = 0.074 +ij[8493] = 28.8 +id[8494] = "2624-07-23T00:05:41" +ik[8494] = 35.72 +il[8494] = 5 +im[8494] = 0.0681 +ij[8494] = 8 +id[8495] = "2624-08-09T14:28:42" +ik[8495] = 5.017 +il[8495] = -38 +im[8495] = 0.0918 +ij[8495] = 27.2 +id[8496] = "2624-08-18T14:58:51" +ik[8496] = 0.06 +il[8496] = 43 +im[8496] = 0.0418 +ij[8496] = 28.5 +id[8497] = "2624-08-28T18:19:05" +ik[8497] = 11 +il[8497] = 92 +im[8497] = 0.0274 +ij[8497] = 18 +id[8498] = "2624-10-13T11:05:51" +ik[8498] = 40.963 +il[8498] = -74 +im[8498] = 0.0254 +ij[8498] = 3 +id[8499] = "2624-10-18T11:12:38" +ik[8499] = -1.872 +il[8499] = -27 +im[8499] = 0.114 +ij[8499] = 2 +id[8500] = "2624-12-22T19:39:14" +ik[8500] = 0 +il[8500] = 120 +im[8500] = 0.0558 +ij[8500] = 13 +id[8501] = "2625-01-31T15:32:17" +ik[8501] = 4.32 +il[8501] = -175 +im[8501] = 0.058 +ij[8501] = 11 +id[8502] = "2625-02-27T06:07:24" +ik[8502] = 2.808 +il[8502] = 23 +im[8502] = 0.036 +ij[8502] = 28.2 +id[8503] = "2625-03-12T22:45:50" +ik[8503] = 80.13 +il[8503] = -108 +im[8503] = 0.0494 +ij[8503] = 7.1835 +id[8504] = "2625-04-02T22:48:19" +ik[8504] = 2.617 +il[8504] = 90 +im[8504] = 0.1317 +ij[8504] = 28.5 +id[8505] = "2625-05-10T12:56:52" +ik[8505] = 37.174 +il[8505] = -124 +im[8505] = 0.0806 +ij[8505] = 1 +id[8506] = "2625-05-11T04:40:38" +ik[8506] = -1.556 +il[8506] = 7 +im[8506] = 0.0894 +ij[8506] = 4 +id[8507] = "2625-05-19T07:43:42" +ik[8507] = 147.5 +il[8507] = 39 +im[8507] = 0.0368 +ij[8507] = 14 +id[8508] = "2625-07-17T09:13:41" +ik[8508] = 31.917 +il[8508] = -135 +im[8508] = 0.017 +ij[8508] = 9 +id[8509] = "2625-08-04T11:48:08" +ik[8509] = 26.167 +il[8509] = 1 +im[8509] = 0.0544 +ij[8509] = 16 +id[8510] = "2625-10-16T19:32:03" +ik[8510] = 2.847 +il[8510] = -123 +im[8510] = 0.0645 +ij[8510] = 28.1 +id[8511] = "2625-10-23T03:40:44" +ik[8511] = 0.106 +il[8511] = 177 +im[8511] = 0.0327 +ij[8511] = 28.2 +id[8512] = "2625-11-10T07:58:55" +ik[8512] = 3.674 +il[8512] = -69 +im[8512] = 0.0275 +ij[8512] = 27.4 +id[8513] = "2625-12-14T01:06:26" +ik[8513] = 0 +il[8513] = 9 +im[8513] = 0.0632 +ij[8513] = 17 +id[8514] = "2626-01-27T23:45:37" +ik[8514] = 1.03 +il[8514] = 120 +im[8514] = 0.0588 +ij[8514] = 12 +id[8515] = "2626-04-07T17:21:27" +ik[8515] = -25.735 +il[8515] = -24 +im[8515] = 0.0547 +ij[8515] = 15 +id[8516] = "2626-05-17T00:00:07" +ik[8516] = 2.812 +il[8516] = -92 +im[8516] = 0.0116 +ij[8516] = 27.6 +id[8517] = "2626-05-23T20:55:13" +ik[8517] = 0.308 +il[8517] = 22 +im[8517] = 0.0663 +ij[8517] = 28.2 +id[8518] = "2626-06-23T17:08:17" +ik[8518] = 1.3 +il[8518] = 22 +im[8518] = 0.0617 +ij[8518] = 28.8 +id[8519] = "2626-07-18T14:34:19" +ik[8519] = 4.674 +il[8519] = -56 +im[8519] = 0.0677 +ij[8519] = 27.2 +id[8520] = "2626-08-06T21:02:32" +ik[8520] = 12 +il[8520] = 35 +im[8520] = 0.0518 +ij[8520] = 18 +id[8521] = "2626-08-11T00:55:48" +ik[8521] = 2.184 +il[8521] = 17 +im[8521] = 0.0077 +ij[8521] = 28.2 +id[8522] = "2626-09-22T02:50:34" +ik[8522] = 33.192 +il[8522] = 37 +im[8522] = 0.0284 +ij[8522] = 8 +id[8523] = "2626-11-15T11:57:55" +ik[8523] = 0.501 +il[8523] = 67 +im[8523] = 0.0836 +ij[8523] = 28.5 +id[8524] = "2626-11-19T13:24:12" +ik[8524] = -1.679 +il[8524] = 85 +im[8524] = 0.0132 +ij[8524] = 2 +id[8525] = "2626-11-26T03:39:53" +ik[8525] = 37.648 +il[8525] = -65 +im[8525] = 0.1016 +ij[8525] = 3 +id[8526] = "2627-01-25T06:48:47" +ik[8526] = 0 +il[8526] = 109 +im[8526] = 0.0938 +ij[8526] = 13 +id[8527] = "2627-03-06T23:30:30" +ik[8527] = 4.04 +il[8527] = -131 +im[8527] = 0.1324 +ij[8527] = 11 +id[8528] = "2627-04-17T12:58:25" +ik[8528] = 82.26 +il[8528] = -155 +im[8528] = 0.0328 +ij[8528] = 7.2093 +id[8529] = "2627-06-19T09:27:56" +ik[8529] = 38.667 +il[8529] = 143 +im[8529] = 0.1118 +ij[8529] = 1 +id[8530] = "2627-06-23T15:27:18" +ik[8530] = 149.36 +il[8530] = 95 +im[8530] = 0.0889 +ij[8530] = 14 +id[8531] = "2627-06-24T22:38:52" +ik[8531] = -1.641 +il[8531] = -1 +im[8531] = 0.067 +ij[8531] = 4 +id[8532] = "2627-07-13T06:45:02" +ik[8532] = 26.281 +il[8532] = 56 +im[8532] = 0.0408 +ij[8532] = 16 +id[8533] = "2627-08-06T19:36:36" +ik[8533] = 1.028 +il[8533] = 101 +im[8533] = 0.0373 +ij[8533] = 28.5 +id[8534] = "2627-08-30T20:03:27" +ik[8534] = 33.367 +il[8534] = -32 +im[8534] = 0.078 +ij[8534] = 9 +id[8535] = "2627-10-02T08:29:29" +ik[8535] = 1.351 +il[8535] = 98 +im[8535] = 0.0465 +ij[8535] = 28.2 +id[8536] = "2627-10-21T14:34:28" +ik[8536] = 3.362 +il[8536] = -165 +im[8536] = 0.0271 +ij[8536] = 27.4 +id[8537] = "2627-11-04T14:23:41" +ik[8537] = 6.371 +il[8537] = -26 +im[8537] = 0.0144 +ij[8537] = 27.1 +id[8538] = "2627-11-11T20:32:52" +ik[8538] = 0.888 +il[8538] = -47 +im[8538] = 0.0661 +ij[8538] = 28.2 +id[8539] = "2627-11-25T02:57:08" +ik[8539] = 0 +il[8539] = -14 +im[8539] = 0.0696 +ij[8539] = 17 +id[8540] = "2628-01-01T16:03:51" +ik[8540] = 1.696 +il[8540] = 163 +im[8540] = 0.0133 +ij[8540] = 28.1 +id[8541] = "2628-01-11T19:31:36" +ik[8541] = 0.427 +il[8541] = -154 +im[8541] = 0.0391 +ij[8541] = 28.7 +id[8542] = "2628-01-19T09:08:02" +ik[8542] = 0.216 +il[8542] = 76 +im[8542] = 0.0573 +ij[8542] = 27.3 +id[8543] = "2628-03-18T09:12:27" +ik[8543] = -25.908 +il[8543] = -53 +im[8543] = 0.0595 +ij[8543] = 15 +id[8544] = "2628-04-10T04:49:37" +ik[8544] = 0.6 +il[8544] = -114 +im[8544] = 0.0085 +ij[8544] = 12 +id[8545] = "2628-06-27T15:55:59" +ik[8545] = 4.418 +il[8545] = -74 +im[8545] = 0.0548 +ij[8545] = 27.2 +id[8546] = "2628-07-08T08:21:24" +ik[8546] = 1.976 +il[8546] = 143 +im[8546] = 0.0189 +ij[8546] = 28.2 +id[8547] = "2628-07-17T10:53:26" +ik[8547] = 12 +il[8547] = -166 +im[8547] = 0.0503 +ij[8547] = 18 +id[8548] = "2628-11-02T04:50:07" +ik[8548] = 31.383 +il[8548] = -112 +im[8548] = 0.0445 +ij[8548] = 8 +id[8549] = "2628-12-24T17:24:13" +ik[8549] = -1.587 +il[8549] = -153 +im[8549] = 0.0381 +ij[8549] = 2 +id[8550] = "2629-01-03T12:40:53" +ik[8550] = 36.232 +il[8550] = 13 +im[8550] = 0.0935 +ij[8550] = 3 +id[8551] = "2629-02-28T15:27:46" +ik[8551] = 0 +il[8551] = 151 +im[8551] = 0.1495 +ij[8551] = 13 +id[8552] = "2629-03-09T21:43:47" +ik[8552] = 1.908 +il[8552] = 146 +im[8552] = 0.1757 +ij[8552] = 28.2 +id[8553] = "2629-04-09T22:13:11" +ik[8553] = 2.47 +il[8553] = 57 +im[8553] = 0.2207 +ij[8553] = 11 +id[8554] = "2629-04-29T10:56:22" +ik[8554] = 4.749 +il[8554] = -169 +im[8554] = 0.086 +ij[8554] = 28.1 +id[8555] = "2629-05-20T21:39:38" +ik[8555] = 81.26 +il[8555] = -122 +im[8555] = 0.1528 +ij[8555] = 7.2 +id[8556] = "2629-06-15T16:47:59" +ik[8556] = 25.905 +il[8556] = -158 +im[8556] = 0.1483 +ij[8556] = 16 +id[8557] = "2629-07-22T11:03:30" +ik[8557] = 143.82 +il[8557] = -75 +im[8557] = 0.0767 +ij[8557] = 14 +id[8558] = "2629-07-31T13:33:53" +ik[8558] = 41.706 +il[8558] = -24 +im[8558] = 0.0773 +ij[8558] = 1 +id[8559] = "2629-08-04T02:02:27" +ik[8559] = -1.855 +il[8559] = -177 +im[8559] = 0.009 +ij[8559] = 4 +id[8560] = "2629-09-28T11:31:05" +ik[8560] = 2.881 +il[8560] = -138 +im[8560] = 0.0328 +ij[8560] = 27.4 +id[8561] = "2629-10-27T23:12:20" +ik[8561] = 35.19 +il[8561] = -25 +im[8561] = 0.0185 +ij[8561] = 9 +id[8562] = "2629-10-31T11:18:12" +ik[8562] = 1.445 +il[8562] = -172 +im[8562] = 0.047 +ij[8562] = 28.5 +id[8563] = "2629-11-04T00:02:42" +ik[8563] = 0 +il[8563] = 31 +im[8563] = 0.0792 +ij[8563] = 17 +id[8564] = "2629-12-28T18:57:36" +ik[8564] = 0.119 +il[8564] = -73 +im[8564] = 0.0505 +ij[8564] = 27.3 +id[8565] = "2630-01-02T22:40:39" +ik[8565] = 0.416 +il[8565] = -78 +im[8565] = 0.0692 +ij[8565] = 28.7 +id[8566] = "2630-01-26T10:45:39" +ik[8566] = 0.481 +il[8566] = -28 +im[8566] = 0.0453 +ij[8566] = 27.5 +id[8567] = "2630-02-26T20:01:22" +ik[8567] = -26.065 +il[8567] = 140 +im[8567] = 0.0637 +ij[8567] = 15 +id[8568] = "2630-03-18T07:52:49" +ik[8568] = 2.561 +il[8568] = 152 +im[8568] = 0.0503 +ij[8568] = 28.1 +id[8569] = "2630-03-31T08:07:21" +ik[8569] = 1.939 +il[8569] = -80 +im[8569] = 0.0612 +ij[8569] = 28.6 +id[8570] = "2630-06-12T04:43:24" +ik[8570] = 0.5 +il[8570] = -46 +im[8570] = 0.0499 +ij[8570] = 12 +id[8571] = "2630-06-28T21:53:04" +ik[8571] = 12 +il[8571] = 33 +im[8571] = 0.0387 +ij[8571] = 18 +id[8572] = "2630-08-24T14:17:28" +ik[8572] = 1.825 +il[8572] = -14 +im[8572] = 0.0478 +ij[8572] = 28.1 +id[8573] = "2630-11-13T03:45:45" +ik[8573] = 25.293 +il[8573] = -157 +im[8573] = 0.0626 +ij[8573] = 16 +id[8574] = "2630-12-07T03:06:07" +ik[8574] = 30.639 +il[8574] = 84 +im[8574] = 0.0091 +ij[8574] = 8 +id[8575] = "2631-02-09T10:12:14" +ik[8575] = -1.605 +il[8575] = -125 +im[8575] = 0.1068 +ij[8575] = 2 +id[8576] = "2631-02-13T16:05:57" +ik[8576] = 36.669 +il[8576] = -172 +im[8576] = 0.0462 +ij[8576] = 3 +id[8577] = "2631-04-14T11:03:58" +ik[8577] = 0 +il[8577] = 112 +im[8577] = 0.1096 +ij[8577] = 13 +id[8578] = "2631-04-22T14:35:43" +ik[8578] = 5.126 +il[8578] = 136 +im[8578] = 0.1696 +ij[8578] = 27.4 +id[8579] = "2631-05-21T02:30:58" +ik[8579] = 0.3 +il[8579] = -155 +im[8579] = 0.1181 +ij[8579] = 11 +id[8580] = "2631-06-22T14:33:00" +ik[8580] = 2.622 +il[8580] = 138 +im[8580] = 0.1917 +ij[8580] = 28.2 +id[8581] = "2631-06-28T22:38:52" +ik[8581] = 75.48 +il[8581] = 78 +im[8581] = 0.1725 +ij[8581] = 7.1493 +id[8582] = "2631-08-22T04:27:39" +ik[8582] = 129.72 +il[8582] = 160 +im[8582] = 0.1436 +ij[8582] = 14 +id[8583] = "2631-08-27T11:50:09" +ik[8583] = 1.794 +il[8583] = 102 +im[8583] = 0.0266 +ij[8583] = 27.4 +id[8584] = "2631-09-04T00:33:35" +ik[8584] = -2.169 +il[8584] = -15 +im[8584] = 0.1512 +ij[8584] = 4 +id[8585] = "2631-09-16T17:59:51" +ik[8585] = 45.457 +il[8585] = -152 +im[8585] = 0.1296 +ij[8585] = 1 +id[8586] = "2631-10-11T06:02:20" +ik[8586] = 0 +il[8586] = -92 +im[8586] = 0.0422 +ij[8586] = 17 +id[8587] = "2631-12-05T19:47:08" +ik[8587] = 0.112 +il[8587] = -111 +im[8587] = 0.0156 +ij[8587] = 27.3 +id[8588] = "2631-12-24T02:12:12" +ik[8588] = 0.372 +il[8588] = -28 +im[8588] = 0.0723 +ij[8588] = 28.7 +id[8589] = "2632-01-02T16:13:56" +ik[8589] = 0.041 +il[8589] = -145 +im[8589] = 0.0337 +ij[8589] = 28.5 +id[8590] = "2632-01-04T07:30:15" +ik[8590] = 0.492 +il[8590] = 2 +im[8590] = 0.0036 +ij[8590] = 27.5 +id[8591] = "2632-01-08T07:57:13" +ik[8591] = 35.175 +il[8591] = 35 +im[8591] = 0.0628 +ij[8591] = 9 +id[8592] = "2632-02-06T05:37:09" +ik[8592] = -26.225 +il[8592] = -10 +im[8592] = 0.0582 +ij[8592] = 15 +id[8593] = "2632-03-15T18:03:17" +ik[8593] = 2.046 +il[8593] = 173 +im[8593] = 0.0096 +ij[8593] = 27.6 +id[8594] = "2632-04-11T12:13:24" +ik[8594] = 0.115 +il[8594] = 155 +im[8594] = 0.0362 +ij[8594] = 28.2 +id[8595] = "2632-04-13T02:59:56" +ik[8595] = 2.315 +il[8595] = -47 +im[8595] = 0.0171 +ij[8595] = 28.6 +id[8596] = "2632-05-14T02:02:51" +ik[8596] = 2.083 +il[8596] = -93 +im[8596] = 0.0107 +ij[8596] = 28.8 +id[8597] = "2632-05-19T02:36:01" +ik[8597] = 3.952 +il[8597] = -59 +im[8597] = 0.0557 +ij[8597] = 27.2 +id[8598] = "2632-05-23T17:45:13" +ik[8598] = 1.128 +il[8598] = 123 +im[8598] = 0.0463 +ij[8598] = 28.1 +id[8599] = "2632-06-09T12:35:42" +ik[8599] = 12 +il[8599] = -1 +im[8599] = 0.0209 +ij[8599] = 18 +id[8600] = "2632-07-27T11:33:11" +ik[8600] = 1.07 +il[8600] = 110 +im[8600] = 0.0405 +ij[8600] = 12 +id[8601] = "2632-10-11T01:02:53" +ik[8601] = 1.078 +il[8601] = 126 +im[8601] = 0.0559 +ij[8601] = 28.2 +id[8602] = "2632-10-24T10:44:32" +ik[8602] = 25.544 +il[8602] = 110 +im[8602] = 0.0613 +ij[8602] = 16 +id[8603] = "2632-12-08T06:03:10" +ik[8603] = 0.56 +il[8603] = -109 +im[8603] = 0.0626 +ij[8603] = 28.2 +id[8604] = "2633-01-08T21:14:06" +ik[8604] = 30.904 +il[8604] = -34 +im[8604] = 0.0459 +ij[8604] = 8 +id[8605] = "2633-02-10T10:50:46" +ik[8605] = 4.893 +il[8605] = 72 +im[8605] = 0.0162 +ij[8605] = 27.4 +id[8606] = "2633-02-27T13:22:44" +ik[8606] = 4.947 +il[8606] = -163 +im[8606] = 0.063 +ij[8606] = 27.1 +id[8607] = "2633-03-22T21:04:19" +ik[8607] = 23 +il[8607] = -58 +im[8607] = 0.0567 +ij[8607] = 17 +id[8608] = "2633-04-05T11:57:50" +ik[8608] = 39.457 +il[8608] = -152 +im[8608] = 0.0669 +ij[8608] = 3 +id[8609] = "2633-04-20T08:03:23" +ik[8609] = -1.819 +il[8609] = 46 +im[8609] = 0.0651 +ij[8609] = 2 +id[8610] = "2633-06-17T04:28:09" +ik[8610] = 0 +il[8610] = -76 +im[8610] = 0.0313 +ij[8610] = 13 +id[8611] = "2633-07-17T05:20:45" +ik[8611] = 5.37 +il[8611] = -176 +im[8611] = 0.2629 +ij[8611] = 11 +id[8612] = "2633-08-21T03:30:45" +ik[8612] = 64.96 +il[8612] = 13 +im[8612] = 0.1373 +ij[8612] = 7.1018 +id[8613] = "2633-10-03T17:51:35" +ik[8613] = 108.56 +il[8613] = -133 +im[8613] = 0.0347 +ij[8613] = 14 +id[8614] = "2633-10-13T13:09:10" +ik[8614] = -2.373 +il[8614] = 34 +im[8614] = 0.1711 +ij[8614] = 4 +id[8615] = "2633-11-01T05:41:50" +ik[8615] = 1.09 +il[8615] = -30 +im[8615] = 0.0195 +ij[8615] = 27.3 +id[8616] = "2633-11-08T02:58:50" +ik[8616] = 45.551 +il[8616] = 78 +im[8616] = 0.1648 +ij[8616] = 1 +id[8617] = "2633-12-05T14:15:49" +ik[8617] = 0.755 +il[8617] = 177 +im[8617] = 0.1284 +ij[8617] = 27.5 +id[8618] = "2633-12-07T00:46:45" +ik[8618] = 0.407 +il[8618] = 33 +im[8618] = 0.1373 +ij[8618] = 28.7 +id[8619] = "2634-01-12T08:50:59" +ik[8619] = -26.381 +il[8619] = -97 +im[8619] = 0.0202 +ij[8619] = 15 +id[8620] = "2634-02-20T18:31:15" +ik[8620] = 1.716 +il[8620] = 134 +im[8620] = 0.0638 +ij[8620] = 27.6 +id[8621] = "2634-02-27T18:04:33" +ik[8621] = 1.377 +il[8621] = -153 +im[8621] = 0.0569 +ij[8621] = 28.5 +id[8622] = "2634-03-07T01:17:40" +ik[8622] = 33.312 +il[8622] = 168 +im[8622] = 0.0721 +ij[8622] = 9 +id[8623] = "2634-04-01T16:51:40" +ik[8623] = 3.091 +il[8623] = 180 +im[8623] = 0.0774 +ij[8623] = 28.2 +id[8624] = "2634-04-27T01:03:30" +ik[8624] = 2.335 +il[8624] = -67 +im[8624] = 0.0504 +ij[8624] = 28.6 +id[8625] = "2634-04-28T20:25:30" +ik[8625] = 3.665 +il[8625] = 22 +im[8625] = 0.0644 +ij[8625] = 27.2 +id[8626] = "2634-04-30T19:34:24" +ik[8626] = 2.346 +il[8626] = 56 +im[8626] = 0.0698 +ij[8626] = 28.8 +id[8627] = "2634-05-21T16:34:38" +ik[8627] = 12 +il[8627] = -67 +im[8627] = 0.005 +ij[8627] = 18 +id[8628] = "2634-09-03T21:25:12" +ik[8628] = 1.09 +il[8628] = 156 +im[8628] = 0.0435 +ij[8628] = 12 +id[8629] = "2634-10-06T18:17:26" +ik[8629] = 25.719 +il[8629] = 7 +im[8629] = 0.0545 +ij[8629] = 16 +id[8630] = "2634-11-12T16:11:14" +ik[8630] = 1.201 +il[8630] = 32 +im[8630] = 0.0211 +ij[8630] = 28.2 +id[8631] = "2635-01-16T21:29:14" +ik[8631] = 4.525 +il[8631] = -135 +im[8631] = 0.0567 +ij[8631] = 27.4 +id[8632] = "2635-01-31T22:55:47" +ik[8632] = 5.28 +il[8632] = -14 +im[8632] = 0.0634 +ij[8632] = 27.1 +id[8633] = "2635-02-15T14:31:53" +ik[8633] = 32.222 +il[8633] = -109 +im[8633] = 0.0517 +ij[8633] = 8 +id[8634] = "2635-02-20T21:09:46" +ik[8634] = 0 +il[8634] = -159 +im[8634] = 0.034 +ij[8634] = 17 +id[8635] = "2635-04-28T08:50:28" +ik[8635] = 0.062 +il[8635] = -66 +im[8635] = 0.1013 +ij[8635] = 27.3 +id[8636] = "2635-06-01T18:05:15" +ik[8636] = 1.853 +il[8636] = 122 +im[8636] = 0.0444 +ij[8636] = 27.5 +id[8637] = "2635-06-04T14:57:15" +ik[8637] = 1.572 +il[8637] = -164 +im[8637] = 0.1239 +ij[8637] = 28.7 +id[8638] = "2635-06-16T03:48:48" +ik[8638] = 45.232 +il[8638] = 114 +im[8638] = 0.0709 +ij[8638] = 3 +id[8639] = "2635-07-17T01:45:38" +ik[8639] = -2.33 +il[8639] = 81 +im[8639] = 0.1723 +ij[8639] = 2 +id[8640] = "2635-08-26T23:02:38" +ik[8640] = 3.713 +il[8640] = 158 +im[8640] = 0.2078 +ij[8640] = 28.2 +id[8641] = "2635-09-02T17:52:07" +ik[8641] = 0 +il[8641] = -59 +im[8641] = 0.2585 +ij[8641] = 13 +id[8642] = "2635-10-06T09:08:18" +ik[8642] = 4.21 +il[8642] = 20 +im[8642] = 0.2221 +ij[8642] = 11 +id[8643] = "2635-11-04T16:54:42" +ik[8643] = 62.96 +il[8643] = 32 +im[8643] = 0.2899 +ij[8643] = 7.1176 +id[8644] = "2635-12-09T20:54:56" +ik[8644] = -25.829 +il[8644] = -50 +im[8644] = 0.0781 +ij[8644] = 15 +id[8645] = "2635-12-18T10:26:25" +ik[8645] = 106.69 +il[8645] = -171 +im[8645] = 0.1831 +ij[8645] = 14 +id[8646] = "2635-12-27T16:03:25" +ik[8646] = -2.008 +il[8646] = -167 +im[8646] = 0.0916 +ij[8646] = 4 +id[8647] = "2636-01-17T21:07:46" +ik[8647] = 40.739 +il[8647] = -41 +im[8647] = 0.1177 +ij[8647] = 1 +id[8648] = "2636-01-18T10:14:20" +ik[8648] = 1.236 +il[8648] = 127 +im[8648] = 0.1076 +ij[8648] = 27.6 +id[8649] = "2636-04-04T20:35:08" +ik[8649] = 3.24 +il[8649] = -17 +im[8649] = 0.0362 +ij[8649] = 27.2 +id[8650] = "2636-04-14T11:48:02" +ik[8650] = 2.693 +il[8650] = -154 +im[8650] = 0.0519 +ij[8650] = 28.8 +id[8651] = "2636-04-19T03:44:19" +ik[8651] = 31.865 +il[8651] = 11 +im[8651] = 0.0199 +ij[8651] = 9 +id[8652] = "2636-04-30T08:01:58" +ik[8652] = 12 +il[8652] = 51 +im[8652] = 0.019 +ij[8652] = 18 +id[8653] = "2636-05-07T15:33:14" +ik[8653] = 1.26 +il[8653] = 7 +im[8653] = 0.0727 +ij[8653] = 28.5 +id[8654] = "2636-05-10T11:46:04" +ik[8654] = 1.993 +il[8654] = 96 +im[8654] = 0.07 +ij[8654] = 28.6 +id[8655] = "2636-07-19T16:31:46" +ik[8655] = 0.774 +il[8655] = -26 +im[8655] = 0.056 +ij[8655] = 28.1 +id[8656] = "2636-09-18T08:49:19" +ik[8656] = 25.862 +il[8656] = -50 +im[8656] = 0.0387 +ij[8656] = 16 +id[8657] = "2636-10-09T06:02:32" +ik[8657] = 0.71 +il[8657] = -157 +im[8657] = 0.0276 +ij[8657] = 12 +id[8658] = "2636-12-19T03:25:20" +ik[8658] = 2.666 +il[8658] = 47 +im[8658] = 0.0209 +ij[8658] = 28.1 +id[8659] = "2636-12-26T14:35:51" +ik[8659] = 4.252 +il[8659] = -53 +im[8659] = 0.0597 +ij[8659] = 27.4 +id[8660] = "2637-01-09T22:08:48" +ik[8660] = 5.537 +il[8660] = -28 +im[8660] = 0.0572 +ij[8660] = 27.1 +id[8661] = "2637-01-29T08:07:03" +ik[8661] = 0 +il[8661] = 17 +im[8661] = 0.0107 +ij[8661] = 17 +id[8662] = "2637-03-30T20:59:08" +ik[8662] = 0.221 +il[8662] = 36 +im[8662] = 0.0418 +ij[8662] = 27.3 +id[8663] = "2637-04-06T01:06:59" +ik[8663] = 34.61 +il[8663] = 33 +im[8663] = 0.0842 +ij[8663] = 8 +id[8664] = "2637-04-30T01:15:55" +ik[8664] = 1.006 +il[8664] = -101 +im[8664] = 0.0682 +ij[8664] = 27.5 +id[8665] = "2637-05-15T03:17:52" +ik[8665] = 0.804 +il[8665] = 13 +im[8665] = 0.0654 +ij[8665] = 28.7 +id[8666] = "2637-05-29T01:09:44" +ik[8666] = -24.905 +il[8666] = 179 +im[8666] = 0.0784 +ij[8666] = 15 +id[8667] = "2637-07-13T03:21:09" +ik[8667] = 4.14 +il[8667] = -138 +im[8667] = 0.1051 +ij[8667] = 27.6 +id[8668] = "2637-08-09T08:20:49" +ik[8668] = 46.992 +il[8668] = 53 +im[8668] = 0.0918 +ij[8668] = 3 +id[8669] = "2637-09-04T17:25:12" +ik[8669] = -2.286 +il[8669] = 176 +im[8669] = 0.0394 +ij[8669] = 2 +id[8670] = "2637-10-05T01:55:45" +ik[8670] = 5.702 +il[8670] = -13 +im[8670] = 0.1423 +ij[8670] = 27.2 +id[8671] = "2637-10-26T01:45:50" +ik[8671] = 1.936 +il[8671] = -165 +im[8671] = 0.1817 +ij[8671] = 28.8 +id[8672] = "2637-10-31T10:26:55" +ik[8672] = 0 +il[8672] = 117 +im[8672] = 0.117 +ij[8672] = 13 +id[8673] = "2637-12-06T14:22:05" +ik[8673] = 1.63 +il[8673] = 28 +im[8673] = 0.1107 +ij[8673] = 11 +id[8674] = "2637-12-29T22:22:46" +ik[8674] = 2.8 +il[8674] = -35 +im[8674] = 0.2197 +ij[8674] = 28.2 +id[8675] = "2638-01-09T11:31:32" +ik[8675] = 70.04 +il[8675] = -143 +im[8675] = 0.2112 +ij[8675] = 7.1394 +id[8676] = "2638-02-27T23:33:16" +ik[8676] = 2.305 +il[8676] = 143 +im[8676] = 0.0167 +ij[8676] = 27.2 +id[8677] = "2638-03-04T04:46:59" +ik[8677] = -1.677 +il[8677] = 104 +im[8677] = 0.0904 +ij[8677] = 4 +id[8678] = "2638-03-08T02:26:20" +ik[8678] = 127.67 +il[8678] = 176 +im[8678] = 0.129 +ij[8678] = 14 +id[8679] = "2638-03-13T13:19:46" +ik[8679] = 37.78 +il[8679] = 64 +im[8679] = 0.0533 +ij[8679] = 1 +id[8680] = "2638-03-23T02:10:24" +ik[8680] = 3.334 +il[8680] = -39 +im[8680] = 0.1015 +ij[8680] = 28.8 +id[8681] = "2638-04-05T00:14:33" +ik[8681] = 12 +il[8681] = 112 +im[8681] = 0.1024 +ij[8681] = 18 +id[8682] = "2638-05-25T17:56:40" +ik[8682] = 1.316 +il[8682] = -34 +im[8682] = 0.0089 +ij[8682] = 28.6 +id[8683] = "2638-05-27T01:28:19" +ik[8683] = 31.29 +il[8683] = -134 +im[8683] = 0.0278 +ij[8683] = 9 +id[8684] = "2638-08-04T20:58:54" +ik[8684] = 0.175 +il[8684] = -121 +im[8684] = 0.0034 +ij[8684] = 28.5 +id[8685] = "2638-08-20T15:01:08" +ik[8685] = 0.526 +il[8685] = 120 +im[8685] = 0.0137 +ij[8685] = 28.2 +id[8686] = "2638-08-31T17:38:12" +ik[8686] = 25.991 +il[8686] = -168 +im[8686] = 0.0208 +ij[8686] = 16 +id[8687] = "2638-11-17T08:30:59" +ik[8687] = 0 +il[8687] = 19 +im[8687] = 0.0392 +ij[8687] = 12 +id[8688] = "2639-01-10T00:19:23" +ik[8688] = 0 +il[8688] = 124 +im[8688] = 0.0104 +ij[8688] = 17 +id[8689] = "2639-03-09T01:17:46" +ik[8689] = 0.277 +il[8689] = -50 +im[8689] = 0.009 +ij[8689] = 27.3 +id[8690] = "2639-03-09T22:21:12" +ik[8690] = 3.712 +il[8690] = 3 +im[8690] = 0.006 +ij[8690] = 28.1 +id[8691] = "2639-03-15T23:03:38" +ik[8691] = 1.523 +il[8691] = 50 +im[8691] = 0.0663 +ij[8691] = 28.2 +id[8692] = "2639-04-07T03:54:30" +ik[8692] = 0.748 +il[8692] = -171 +im[8692] = 0.006 +ij[8692] = 27.5 +id[8693] = "2639-05-04T13:28:28" +ik[8693] = 0.486 +il[8693] = -50 +im[8693] = 0.0312 +ij[8693] = 28.7 +id[8694] = "2639-05-06T15:15:35" +ik[8694] = -25.391 +il[8694] = -57 +im[8694] = 0.0047 +ij[8694] = 15 +id[8695] = "2639-05-13T18:10:02" +ik[8695] = 0.127 +il[8695] = -32 +im[8695] = 0.0775 +ij[8695] = 28.2 +id[8696] = "2639-06-16T16:27:57" +ik[8696] = 3.342 +il[8696] = -36 +im[8696] = 0.0395 +ij[8696] = 27.6 +id[8697] = "2639-06-22T01:49:39" +ik[8697] = 36.269 +il[8697] = -123 +im[8697] = 0.0516 +ij[8697] = 8 +id[8698] = "2639-08-20T13:21:54" +ik[8698] = 5.197 +il[8698] = -72 +im[8698] = 0.0837 +ij[8698] = 27.2 +id[8699] = "2639-09-04T13:34:02" +ik[8699] = 0.968 +il[8699] = 72 +im[8699] = 0.1095 +ij[8699] = 28.8 +id[8700] = "2639-09-09T02:26:00" +ik[8700] = 11 +il[8700] = -77 +im[8700] = 0.0961 +ij[8700] = 18 +id[8701] = "2639-09-25T15:52:50" +ik[8701] = 42.749 +il[8701] = -117 +im[8701] = 0.034 +ij[8701] = 3 +id[8702] = "2639-10-07T10:37:14" +ik[8702] = -1.976 +il[8702] = 77 +im[8702] = 0.1145 +ij[8702] = 2 +id[8703] = "2639-12-01T23:26:17" +ik[8703] = 3.899 +il[8703] = 65 +im[8703] = 0.1786 +ij[8703] = 28.6 +id[8704] = "2639-12-10T02:26:50" +ik[8704] = 0 +il[8704] = 98 +im[8704] = 0.1269 +ij[8704] = 13 +id[8705] = "2640-01-18T10:00:46" +ik[8705] = 4.04 +il[8705] = -13 +im[8705] = 0.1456 +ij[8705] = 11 +id[8706] = "2640-02-27T01:29:25" +ik[8706] = 78.96 +il[8706] = -72 +im[8706] = 0.0534 +ij[8706] = 7.1701 +id[8707] = "2640-04-23T06:02:34" +ik[8707] = -1.559 +il[8707] = 31 +im[8707] = 0.0397 +ij[8707] = 4 +id[8708] = "2640-04-24T23:33:47" +ik[8708] = 37.013 +il[8708] = 145 +im[8708] = 0.0736 +ij[8708] = 1 +id[8709] = "2640-05-02T14:16:13" +ik[8709] = 144.49 +il[8709] = -4 +im[8709] = 0.0424 +ij[8709] = 14 +id[8710] = "2640-06-09T20:28:43" +ik[8710] = 0.359 +il[8710] = -91 +im[8710] = 0.0877 +ij[8710] = 28.6 +id[8711] = "2640-07-02T04:07:26" +ik[8711] = 31.573 +il[8711] = 8 +im[8711] = 0.0264 +ij[8711] = 9 +id[8712] = "2640-08-09T02:11:48" +ik[8712] = 1.243 +il[8712] = 43 +im[8712] = 0.0543 +ij[8712] = 28.2 +id[8713] = "2640-08-12T05:18:01" +ik[8713] = 26.119 +il[8713] = 27 +im[8713] = 0.0149 +ij[8713] = 16 +id[8714] = "2640-09-14T23:29:02" +ik[8714] = 4.356 +il[8714] = 81 +im[8714] = 0.0517 +ij[8714] = 28.1 +id[8715] = "2640-12-21T08:22:10" +ik[8715] = 0 +il[8715] = -168 +im[8715] = 0.0074 +ij[8715] = 17 +id[8716] = "2641-01-04T01:21:39" +ik[8716] = 0.82 +il[8716] = 76 +im[8716] = 0.0037 +ij[8716] = 12 +id[8717] = "2641-03-16T12:48:08" +ik[8717] = 0.62 +il[8717] = 42 +im[8717] = 0.0217 +ij[8717] = 27.5 +id[8718] = "2641-04-14T23:21:22" +ik[8718] = 0.905 +il[8718] = 175 +im[8718] = 0.0181 +ij[8718] = 28.2 +id[8719] = "2641-04-15T10:00:23" +ik[8719] = -25.656 +il[8719] = 20 +im[8719] = 0.0121 +ij[8719] = 15 +id[8720] = "2641-04-25T13:10:04" +ik[8720] = 0.24 +il[8720] = 71 +im[8720] = 0.0517 +ij[8720] = 28.7 +id[8721] = "2641-05-25T00:59:37" +ik[8721] = 2.933 +il[8721] = -177 +im[8721] = 0.049 +ij[8721] = 27.6 +id[8722] = "2641-05-29T17:03:10" +ik[8722] = 4.778 +il[8722] = -12 +im[8722] = 0.0137 +ij[8722] = 28.1 +id[8723] = "2641-07-26T21:03:32" +ik[8723] = 4.793 +il[8723] = 139 +im[8723] = 0.0152 +ij[8723] = 27.2 +id[8724] = "2641-08-15T00:21:31" +ik[8724] = 12 +il[8724] = -84 +im[8724] = 0.0731 +ij[8724] = 18 +id[8725] = "2641-08-16T14:33:39" +ik[8725] = 1.293 +il[8725] = 79 +im[8725] = 0.0777 +ij[8725] = 28.8 +id[8726] = "2641-09-01T13:00:19" +ik[8726] = 34.174 +il[8726] = -102 +im[8726] = 0.0784 +ij[8726] = 8 +id[8727] = "2641-11-06T19:20:48" +ik[8727] = -1.742 +il[8727] = 86 +im[8727] = 0.0809 +ij[8727] = 2 +id[8728] = "2641-11-09T22:51:44" +ik[8728] = 38.713 +il[8728] = 63 +im[8728] = 0.1132 +ij[8728] = 3 +id[8729] = "2641-11-29T01:06:13" +ik[8729] = 0.549 +il[8729] = -146 +im[8729] = 0.0595 +ij[8729] = 28.6 +id[8730] = "2642-01-11T14:16:42" +ik[8730] = 0 +il[8730] = 78 +im[8730] = 0.0513 +ij[8730] = 13 +id[8731] = "2642-01-18T06:39:52" +ik[8731] = 1.375 +il[8731] = -103 +im[8731] = 0.1705 +ij[8731] = 28.2 +id[8732] = "2642-02-06T08:51:36" +ik[8732] = 2.721 +il[8732] = 37 +im[8732] = 0.1083 +ij[8732] = 28.6 +id[8733] = "2642-02-21T20:00:46" +ik[8733] = 4.3 +il[8733] = 14 +im[8733] = 0.0337 +ij[8733] = 11 +id[8734] = "2642-04-04T13:19:18" +ik[8734] = 82.96 +il[8734] = -70 +im[8734] = 0.0573 +ij[8734] = 7.2018 +id[8735] = "2642-06-03T17:27:44" +ik[8735] = 37.897 +il[8735] = 85 +im[8735] = 0.0996 +ij[8735] = 1 +id[8736] = "2642-06-07T15:19:55" +ik[8736] = -1.592 +il[8736] = 155 +im[8736] = 0.0781 +ij[8736] = 4 +id[8737] = "2642-06-10T21:57:07" +ik[8737] = 150.32 +il[8737] = 87 +im[8737] = 0.0128 +ij[8737] = 14 +id[8738] = "2642-06-26T07:33:58" +ik[8738] = 0.803 +il[8738] = 92 +im[8738] = 0.0088 +ij[8738] = 28.6 +id[8739] = "2642-07-22T14:14:59" +ik[8739] = 26.246 +il[8739] = -114 +im[8739] = 0.0407 +ij[8739] = 16 +id[8740] = "2642-08-12T07:43:26" +ik[8740] = 32.706 +il[8740] = -174 +im[8740] = 0.0729 +ij[8740] = 9 +id[8741] = "2642-10-29T12:35:20" +ik[8741] = 3.496 +il[8741] = 154 +im[8741] = 0.0409 +ij[8741] = 27.4 +id[8742] = "2642-11-12T10:33:14" +ik[8742] = 6.247 +il[8742] = -40 +im[8742] = 0.0545 +ij[8742] = 27.1 +id[8743] = "2642-12-02T09:14:56" +ik[8743] = 1.735 +il[8743] = 174 +im[8743] = 0.0235 +ij[8743] = 28.1 +id[8744] = "2642-12-02T15:19:57" +ik[8744] = 0 +il[8744] = 86 +im[8744] = 0.0266 +ij[8744] = 17 +id[8745] = "2643-03-12T20:54:06" +ik[8745] = 0.95 +il[8745] = -71 +im[8745] = 0.008 +ij[8745] = 12 +id[8746] = "2643-03-26T23:00:21" +ik[8746] = -25.845 +il[8746] = 179 +im[8746] = 0.0079 +ij[8746] = 15 +id[8747] = "2643-07-06T08:39:07" +ik[8747] = 4.512 +il[8747] = -38 +im[8747] = 0.004 +ij[8747] = 27.2 +id[8748] = "2643-07-25T22:07:17" +ik[8748] = 12 +il[8748] = -50 +im[8748] = 0.0539 +ij[8748] = 18 +id[8749] = "2643-08-02T15:02:11" +ik[8749] = 1.481 +il[8749] = 132 +im[8749] = 0.0175 +ij[8749] = 28.8 +id[8750] = "2643-10-19T03:22:59" +ik[8750] = 31.961 +il[8750] = -22 +im[8750] = 0.0575 +ij[8750] = 8 +id[8751] = "2643-12-10T21:35:03" +ik[8751] = -1.611 +il[8751] = -145 +im[8751] = 0.0149 +ij[8751] = 2 +id[8752] = "2643-12-11T05:43:30" +ik[8752] = 0.128 +il[8752] = 96 +im[8752] = 0.0124 +ij[8752] = 28.6 +id[8753] = "2643-12-20T08:54:48" +ik[8753] = 36.57 +il[8753] = 136 +im[8753] = 0.092 +ij[8753] = 3 +id[8754] = "2644-02-15T21:57:35" +ik[8754] = 0 +il[8754] = 136 +im[8754] = 0.1119 +ij[8754] = 13 +id[8755] = "2644-03-09T17:51:12" +ik[8755] = 6.422 +il[8755] = 47 +im[8755] = 0.2098 +ij[8755] = 28.1 +id[8756] = "2644-03-26T23:20:46" +ik[8756] = 3.23 +il[8756] = 118 +im[8756] = 0.1632 +ij[8756] = 11 +id[8757] = "2644-04-16T10:15:36" +ik[8757] = 0.323 +il[8757] = -71 +im[8757] = 0.1733 +ij[8757] = 28.1 +id[8758] = "2644-04-24T15:08:00" +ik[8758] = 0.701 +il[8758] = -65 +im[8758] = 0.077 +ij[8758] = 28.2 +id[8759] = "2644-05-07T21:00:11" +ik[8759] = 81.96 +il[8759] = -25 +im[8759] = 0.0567 +ij[8759] = 7.2093 +id[8760] = "2644-06-25T11:48:54" +ik[8760] = 26.245 +il[8760] = -136 +im[8760] = 0.116 +ij[8760] = 16 +id[8761] = "2644-07-10T08:40:09" +ik[8761] = 2.088 +il[8761] = 56 +im[8761] = 0.1132 +ij[8761] = 28.6 +id[8762] = "2644-07-11T04:24:04" +ik[8762] = 146.27 +il[8762] = 128 +im[8762] = 0.116 +ij[8762] = 14 +id[8763] = "2644-07-14T03:53:42" +ik[8763] = 40.34 +il[8763] = 164 +im[8763] = 0.0956 +ij[8763] = 1 +id[8764] = "2644-07-20T05:36:50" +ik[8764] = -1.756 +il[8764] = -162 +im[8764] = 0.0428 +ij[8764] = 4 +id[8765] = "2644-10-02T13:54:59" +ik[8765] = 34.531 +il[8765] = 77 +im[8765] = 0.0636 +ij[8765] = 9 +id[8766] = "2644-10-07T15:58:53" +ik[8766] = 3.103 +il[8766] = 96 +im[8766] = 0.068 +ij[8766] = 27.4 +id[8767] = "2644-11-12T03:45:36" +ik[8767] = 0 +il[8767] = -93 +im[8767] = 0.0382 +ij[8767] = 17 +id[8768] = "2645-01-06T02:16:33" +ik[8768] = 0.167 +il[8768] = 109 +im[8768] = 0.0136 +ij[8768] = 27.3 +id[8769] = "2645-01-14T02:04:27" +ik[8769] = 1.127 +il[8769] = -169 +im[8769] = 0.0715 +ij[8769] = 28.2 +id[8770] = "2645-02-03T13:49:10" +ik[8770] = 0.491 +il[8770] = -143 +im[8770] = 0.0214 +ij[8770] = 27.5 +id[8771] = "2645-02-15T03:06:02" +ik[8771] = 2.803 +il[8771] = 131 +im[8771] = 0.0607 +ij[8771] = 28.1 +id[8772] = "2645-03-06T14:03:19" +ik[8772] = -26.006 +il[8772] = 165 +im[8772] = 0.008 +ij[8772] = 15 +id[8773] = "2645-05-21T02:59:27" +ik[8773] = 0.11 +il[8773] = -14 +im[8773] = 0.0396 +ij[8773] = 12 +id[8774] = "2645-07-06T03:01:52" +ik[8774] = 12 +il[8774] = -125 +im[8774] = 0.0543 +ij[8774] = 18 +id[8775] = "2645-08-01T11:45:42" +ik[8775] = 1.222 +il[8775] = 14 +im[8775] = 0.0367 +ij[8775] = 28.1 +id[8776] = "2645-10-16T23:55:22" +ik[8776] = 0.863 +il[8776] = -148 +im[8776] = 0.0691 +ij[8776] = 28.2 +id[8777] = "2645-11-21T00:39:41" +ik[8777] = 25.154 +il[8777] = 179 +im[8777] = 0.0102 +ij[8777] = 16 +id[8778] = "2645-11-23T23:20:45" +ik[8778] = 30.808 +il[8778] = -133 +im[8778] = 0.0411 +ij[8778] = 8 +id[8779] = "2645-12-27T23:22:37" +ik[8779] = 0.671 +il[8779] = -165 +im[8779] = 0.0785 +ij[8779] = 28.6 +id[8780] = "2646-01-20T06:47:04" +ik[8780] = -1.583 +il[8780] = -52 +im[8780] = 0.0643 +ij[8780] = 2 +id[8781] = "2646-01-28T00:05:45" +ik[8781] = 36.263 +il[8781] = 123 +im[8781] = 0.0568 +ij[8781] = 3 +id[8782] = "2646-03-27T04:24:32" +ik[8782] = 0 +il[8782] = -105 +im[8782] = 0.0082 +ij[8782] = 13 +id[8783] = "2646-05-03T20:23:00" +ik[8783] = 0.77 +il[8783] = -9 +im[8783] = 0.1864 +ij[8783] = 11 +id[8784] = "2646-05-27T07:22:03" +ik[8784] = 2.155 +il[8784] = -158 +im[8784] = 0.2531 +ij[8784] = 28.6 +id[8785] = "2646-06-13T03:27:08" +ik[8785] = 77.96 +il[8785] = 65 +im[8785] = 0.1216 +ij[8785] = 7.1723 +id[8786] = "2646-07-15T17:45:29" +ik[8786] = 3.477 +il[8786] = 167 +im[8786] = 0.0822 +ij[8786] = 28.6 +id[8787] = "2646-08-09T16:34:58" +ik[8787] = 135.51 +il[8787] = 68 +im[8787] = 0.0309 +ij[8787] = 14 +id[8788] = "2646-08-23T13:22:38" +ik[8788] = -2.039 +il[8788] = -108 +im[8788] = 0.0675 +ij[8788] = 4 +id[8789] = "2646-08-29T04:22:48" +ik[8789] = 44.074 +il[8789] = 82 +im[8789] = 0.0861 +ij[8789] = 1 +id[8790] = "2646-09-11T16:27:29" +ik[8790] = 2.365 +il[8790] = 32 +im[8790] = 0.0805 +ij[8790] = 27.4 +id[8791] = "2646-10-21T09:04:13" +ik[8791] = 0 +il[8791] = 173 +im[8791] = 0.0187 +ij[8791] = 17 +id[8792] = "2646-12-11T07:53:12" +ik[8792] = 35.554 +il[8792] = -28 +im[8792] = 0.0844 +ij[8792] = 9 +id[8793] = "2646-12-15T10:19:17" +ik[8793] = 0.01 +il[8793] = -24 +im[8793] = 0.0571 +ij[8793] = 27.3 +id[8794] = "2647-01-05T02:06:04" +ik[8794] = 1.843 +il[8794] = -58 +im[8794] = 0.0391 +ij[8794] = 28.2 +id[8795] = "2647-01-13T09:26:44" +ik[8795] = 0.475 +il[8795] = -87 +im[8795] = 0.0516 +ij[8795] = 27.5 +id[8796] = "2647-02-14T13:30:07" +ik[8796] = -26.163 +il[8796] = 166 +im[8796] = 0.0035 +ij[8796] = 15 +id[8797] = "2647-03-24T23:54:08" +ik[8797] = 2.152 +il[8797] = 20 +im[8797] = 0.0641 +ij[8797] = 27.6 +id[8798] = "2647-04-04T14:09:35" +ik[8798] = 0.516 +il[8798] = -93 +im[8798] = 0.0541 +ij[8798] = 28.7 +id[8799] = "2647-06-17T18:11:27" +ik[8799] = 12 +il[8799] = -160 +im[8799] = 0.0598 +ij[8799] = 18 +id[8800] = "2647-07-11T20:02:34" +ik[8800] = 0.92 +il[8800] = 50 +im[8800] = 0.0308 +ij[8800] = 12 +id[8801] = "2647-09-13T23:32:41" +ik[8801] = 0.298 +il[8801] = 91 +im[8801] = 0.055 +ij[8801] = 28.2 +id[8802] = "2647-10-05T19:36:51" +ik[8802] = 5.569 +il[8802] = 1 +im[8802] = 0.0265 +ij[8802] = 28.1 +id[8803] = "2647-11-01T14:18:29" +ik[8803] = 25.46 +il[8803] = -22 +im[8803] = 0.0039 +ij[8803] = 16 +id[8804] = "2647-12-27T14:42:05" +ik[8804] = 30.679 +il[8804] = 152 +im[8804] = 0.0216 +ij[8804] = 8 +id[8805] = "2648-01-16T16:47:00" +ik[8805] = 1.021 +il[8805] = -47 +im[8805] = 0.0788 +ij[8805] = 28.6 +id[8806] = "2648-02-24T07:27:00" +ik[8806] = 5.083 +il[8806] = 102 +im[8806] = 0.0073 +ij[8806] = 27.4 +id[8807] = "2648-03-14T04:39:38" +ik[8807] = 38.016 +il[8807] = -37 +im[8807] = 0.1256 +ij[8807] = 3 +id[8808] = "2648-03-15T03:35:36" +ik[8808] = 4.81 +il[8808] = -12 +im[8808] = 0.133 +ij[8808] = 27.1 +id[8809] = "2648-03-19T19:15:32" +ik[8809] = -1.698 +il[8809] = 157 +im[8809] = 0.0988 +ij[8809] = 2 +id[8810] = "2648-04-17T21:05:48" +ik[8810] = 0 +il[8810] = 45 +im[8810] = 0.103 +ij[8810] = 17 +id[8811] = "2648-05-18T12:30:03" +ik[8811] = 0.452 +il[8811] = 103 +im[8811] = 0.0322 +ij[8811] = 28.2 +id[8812] = "2648-05-20T16:35:27" +ik[8812] = 0 +il[8812] = 58 +im[8812] = 0.1349 +ij[8812] = 13 +id[8813] = "2648-05-31T21:43:44" +ik[8813] = 0 +il[8813] = 80 +im[8813] = 0.0712 +ij[8813] = 18 +id[8814] = "2648-06-21T11:23:27" +ik[8814] = 3.29 +il[8814] = 70 +im[8814] = 0.2968 +ij[8814] = 11 +id[8815] = "2648-07-28T16:39:03" +ik[8815] = 69 +il[8815] = 157 +im[8815] = 0.2694 +ij[8815] = 7.1152 +id[8816] = "2648-09-13T22:20:49" +ik[8816] = 116.24 +il[8816] = 175 +im[8816] = 0.134 +ij[8816] = 14 +id[8817] = "2648-09-18T06:33:12" +ik[8817] = 0 +il[8817] = 95 +im[8817] = 0.0512 +ij[8817] = 17 +id[8818] = "2648-09-24T10:46:12" +ik[8818] = -2.343 +il[8818] = 92 +im[8818] = 0.1936 +ij[8818] = 4 +id[8819] = "2648-10-16T03:33:41" +ik[8819] = 46.358 +il[8819] = 54 +im[8819] = 0.0237 +ij[8819] = 1 +id[8820] = "2648-11-17T07:57:54" +ik[8820] = 0.477 +il[8820] = -55 +im[8820] = 0.0936 +ij[8820] = 27.3 +id[8821] = "2648-12-18T10:22:21" +ik[8821] = 0.577 +il[8821] = -147 +im[8821] = 0.1051 +ij[8821] = 27.5 +id[8822] = "2649-01-22T09:58:53" +ik[8822] = -26.327 +il[8822] = -163 +im[8822] = 0.0612 +ij[8822] = 15 +id[8823] = "2649-02-14T10:59:52" +ik[8823] = 34.068 +il[8823] = 43 +im[8823] = 0.0768 +ij[8823] = 9 +id[8824] = "2649-03-02T07:20:33" +ik[8824] = 1.857 +il[8824] = -111 +im[8824] = 0.0786 +ij[8824] = 27.6 +id[8825] = "2649-03-27T06:17:14" +ik[8825] = 0.834 +il[8825] = 141 +im[8825] = 0.0479 +ij[8825] = 28.7 +id[8826] = "2649-05-07T00:43:40" +ik[8826] = 3.787 +il[8826] = -102 +im[8826] = 0.0071 +ij[8826] = 27.2 +id[8827] = "2649-05-29T04:44:30" +ik[8827] = 12 +il[8827] = 42 +im[8827] = 0.061 +ij[8827] = 18 +id[8828] = "2649-08-20T11:24:21" +ik[8828] = 1.14 +il[8828] = 26 +im[8828] = 0.0536 +ij[8828] = 12 +id[8829] = "2649-10-13T15:18:16" +ik[8829] = 25.658 +il[8829] = -30 +im[8829] = 0.0281 +ij[8829] = 16 +id[8830] = "2650-01-25T18:20:32" +ik[8830] = 4.651 +il[8830] = -147 +im[8830] = 0.0717 +ij[8830] = 27.4 +id[8831] = "2650-01-31T01:28:45" +ik[8831] = 31.572 +il[8831] = 156 +im[8831] = 0.0502 +ij[8831] = 8 +id[8832] = "2650-02-04T13:19:32" +ik[8832] = 1.083 +il[8832] = 21 +im[8832] = 0.0196 +ij[8832] = 28.6 +id[8833] = "2650-02-10T06:36:04" +ik[8833] = 5.164 +il[8833] = 176 +im[8833] = 0.0816 +ij[8833] = 27.1 +id[8834] = "2650-03-02T19:20:03" +ik[8834] = 23 +il[8834] = 179 +im[8834] = 0.0292 +ij[8834] = 17 +id[8835] = "2650-05-14T13:36:29" +ik[8835] = 0.469 +il[8835] = -127 +im[8835] = 0.0106 +ij[8835] = 27.3 +id[8836] = "2650-05-17T22:01:37" +ik[8836] = 42.759 +il[8836] = 139 +im[8836] = 0.1155 +ij[8836] = 3 +id[8837] = "2650-06-15T05:03:07" +ik[8837] = -2.134 +il[8837] = -58 +im[8837] = 0.1476 +ij[8837] = 2 +id[8838] = "2650-06-27T20:03:54" +ik[8838] = 3.325 +il[8838] = -163 +im[8838] = 0.0458 +ij[8838] = 27.5 +id[8839] = "2650-08-04T22:21:19" +ik[8839] = 0 +il[8839] = 167 +im[8839] = 0.1351 +ij[8839] = 13 +id[8840] = "2650-09-04T08:39:01" +ik[8840] = 6.36 +il[8840] = -63 +im[8840] = 0.1585 +ij[8840] = 11 +id[8841] = "2650-10-02T20:41:09" +ik[8841] = 3.067 +il[8841] = -133 +im[8841] = 0.2369 +ij[8841] = 28.2 +id[8842] = "2650-10-04T22:58:58" +ik[8842] = 61.03 +il[8842] = -147 +im[8842] = 0.3254 +ij[8842] = 7.1058 +id[8843] = "2650-10-24T18:43:23" +ik[8843] = 2.762 +il[8843] = 111 +im[8843] = 0.146 +ij[8843] = 27.5 +id[8844] = "2650-11-15T08:33:43" +ik[8844] = 102.43 +il[8844] = 114 +im[8844] = 0.176 +ij[8844] = 14 +id[8845] = "2650-11-25T20:08:00" +ik[8845] = -2.194 +il[8845] = 41 +im[8845] = 0.0699 +ij[8845] = 4 +id[8846] = "2650-12-21T14:52:39" +ik[8846] = 42.632 +il[8846] = 8 +im[8846] = 0.0354 +ij[8846] = 1 +id[8847] = "2650-12-24T01:59:45" +ik[8847] = -26.364 +il[8847] = -135 +im[8847] = 0.0493 +ij[8847] = 15 +id[8848] = "2651-02-03T05:13:33" +ik[8848] = 1.441 +il[8848] = -151 +im[8848] = 0.0385 +ij[8848] = 27.6 +id[8849] = "2651-03-17T16:56:49" +ik[8849] = 1.246 +il[8849] = 75 +im[8849] = 0.0223 +ij[8849] = 28.7 +id[8850] = "2651-04-04T02:51:25" +ik[8850] = 32.331 +il[8850] = 90 +im[8850] = 0.0205 +ij[8850] = 9 +id[8851] = "2651-04-15T11:17:15" +ik[8851] = 3.433 +il[8851] = 71 +im[8851] = 0.0205 +ij[8851] = 27.2 +id[8852] = "2651-05-09T14:59:14" +ik[8852] = 12 +il[8852] = -117 +im[8852] = 0.0646 +ij[8852] = 18 +id[8853] = "2651-06-14T05:26:09" +ik[8853] = 1.805 +il[8853] = 5 +im[8853] = 0.0107 +ij[8853] = 28.8 +id[8854] = "2651-06-21T17:24:33" +ik[8854] = 0.697 +il[8854] = -107 +im[8854] = 0.0596 +ij[8854] = 28.2 +id[8855] = "2651-06-26T07:34:05" +ik[8855] = 3.243 +il[8855] = 84 +im[8855] = 0.0197 +ij[8855] = 28.1 +id[8856] = "2651-09-26T01:41:14" +ik[8856] = 0.9 +il[8856] = -14 +im[8856] = 0.0476 +ij[8856] = 12 +id[8857] = "2651-09-26T04:31:06" +ik[8857] = 25.81 +il[8857] = 145 +im[8857] = 0.0483 +ij[8857] = 16 +id[8858] = "2651-12-22T00:01:00" +ik[8858] = 0.372 +il[8858] = -28 +im[8858] = 0.0575 +ij[8858] = 28.2 +id[8859] = "2652-01-04T08:17:03" +ik[8859] = 4.352 +il[8859] = -15 +im[8859] = 0.0429 +ij[8859] = 27.4 +id[8860] = "2652-01-18T20:41:05" +ik[8860] = 5.444 +il[8860] = -71 +im[8860] = 0.0542 +ij[8860] = 27.1 +id[8861] = "2652-02-07T09:21:14" +ik[8861] = 0 +il[8861] = -69 +im[8861] = 0.0605 +ij[8861] = 17 +id[8862] = "2652-02-10T16:26:28" +ik[8862] = 1.913 +il[8862] = -147 +im[8862] = 0.0247 +ij[8862] = 28.2 +id[8863] = "2652-02-23T09:30:10" +ik[8863] = 0.794 +il[8863] = 80 +im[8863] = 0.0635 +ij[8863] = 28.6 +id[8864] = "2652-03-14T23:19:25" +ik[8864] = 33.571 +il[8864] = 68 +im[8864] = 0.0437 +ij[8864] = 8 +id[8865] = "2652-04-09T12:32:10" +ik[8865] = 0.159 +il[8865] = 111 +im[8865] = 0.0141 +ij[8865] = 27.3 +id[8866] = "2652-05-10T14:01:57" +ik[8866] = 1.2 +il[8866] = 24 +im[8866] = 0.0272 +ij[8866] = 27.5 +id[8867] = "2652-06-08T06:51:32" +ik[8867] = -24.547 +il[8867] = 46 +im[8867] = 0.0226 +ij[8867] = 15 +id[8868] = "2652-07-21T22:39:38" +ik[8868] = 47.372 +il[8868] = -129 +im[8868] = 0.0608 +ij[8868] = 3 +id[8869] = "2652-07-28T03:19:28" +ik[8869] = 4.797 +il[8869] = -139 +im[8869] = 0.1706 +ij[8869] = 27.6 +id[8870] = "2652-08-19T22:37:22" +ik[8870] = -2.378 +il[8870] = 154 +im[8870] = 0.0957 +ij[8870] = 2 +id[8871] = "2652-10-10T22:46:16" +ik[8871] = 2.026 +il[8871] = -58 +im[8871] = 0.1096 +ij[8871] = 28.7 +id[8872] = "2652-10-11T08:34:14" +ik[8872] = 0 +il[8872] = 160 +im[8872] = 0.0832 +ij[8872] = 13 +id[8873] = "2652-11-15T14:28:21" +ik[8873] = 0.07 +il[8873] = 38 +im[8873] = 0.3307 +ij[8873] = 11 +id[8874] = "2652-12-17T08:37:50" +ik[8874] = 67 +il[8874] = -102 +im[8874] = 0.1146 +ij[8874] = 7.1305 +id[8875] = "2653-02-07T02:53:34" +ik[8875] = 118.76 +il[8875] = 114 +im[8875] = 0.1433 +ij[8875] = 14 +id[8876] = "2653-02-08T14:08:02" +ik[8876] = -1.776 +il[8876] = -41 +im[8876] = 0.124 +ij[8876] = 4 +id[8877] = "2653-02-21T23:31:37" +ik[8877] = 38.629 +il[8877] = -56 +im[8877] = 0.1093 +ij[8877] = 1 +id[8878] = "2653-02-27T14:49:42" +ik[8878] = 1.934 +il[8878] = 128 +im[8878] = 0.0226 +ij[8878] = 28.7 +id[8879] = "2653-03-17T15:30:54" +ik[8879] = 2.8 +il[8879] = -73 +im[8879] = 0.0723 +ij[8879] = 27.2 +id[8880] = "2653-04-16T00:45:54" +ik[8880] = 12 +il[8880] = 66 +im[8880] = 0.0697 +ij[8880] = 18 +id[8881] = "2653-05-12T16:23:51" +ik[8881] = 31.411 +il[8881] = 83 +im[8881] = 0.0397 +ij[8881] = 9 +id[8882] = "2653-05-30T23:22:45" +ik[8882] = 1.895 +il[8882] = 151 +im[8882] = 0.0746 +ij[8882] = 28.8 +id[8883] = "2653-06-09T08:45:08" +ik[8883] = 3.042 +il[8883] = 99 +im[8883] = 0.0248 +ij[8883] = 28.2 +id[8884] = "2653-08-23T18:24:25" +ik[8884] = 0.663 +il[8884] = -46 +im[8884] = 0.0572 +ij[8884] = 28.1 +id[8885] = "2653-09-07T17:08:00" +ik[8885] = 25.943 +il[8885] = 127 +im[8885] = 0.0557 +ij[8885] = 16 +id[8886] = "2653-11-01T11:19:01" +ik[8886] = 0.3 +il[8886] = 35 +im[8886] = 0.0436 +ij[8886] = 12 +id[8887] = "2654-01-17T11:12:11" +ik[8887] = 0 +il[8887] = -109 +im[8887] = 0.059 +ij[8887] = 17 +id[8888] = "2654-01-19T02:09:11" +ik[8888] = 0.452 +il[8888] = 39 +im[8888] = 0.049 +ij[8888] = 28.5 +id[8889] = "2654-01-19T06:43:42" +ik[8889] = 1.953 +il[8889] = -28 +im[8889] = 0.0473 +ij[8889] = 28.2 +id[8890] = "2654-02-04T13:18:10" +ik[8890] = 3.866 +il[8890] = 27 +im[8890] = 0.0325 +ij[8890] = 28.1 +id[8891] = "2654-03-11T17:50:47" +ik[8891] = 0.19 +il[8891] = -62 +im[8891] = 0.0499 +ij[8891] = 28.6 +id[8892] = "2654-03-17T07:15:49" +ik[8892] = 0.265 +il[8892] = 155 +im[8892] = 0.0585 +ij[8892] = 27.3 +id[8893] = "2654-04-15T17:10:36" +ik[8893] = 0.824 +il[8893] = -73 +im[8893] = 0.0577 +ij[8893] = 27.5 +id[8894] = "2654-05-15T00:44:21" +ik[8894] = -25.244 +il[8894] = 95 +im[8894] = 0.0581 +ij[8894] = 15 +id[8895] = "2654-05-19T22:17:38" +ik[8895] = 36.04 +il[8895] = 179 +im[8895] = 0.0228 +ij[8895] = 8 +id[8896] = "2654-06-26T02:09:17" +ik[8896] = 3.576 +il[8896] = 122 +im[8896] = 0.0953 +ij[8896] = 27.6 +id[8897] = "2654-08-18T00:25:10" +ik[8897] = 0.87 +il[8897] = -52 +im[8897] = 0.0905 +ij[8897] = 28.7 +id[8898] = "2654-09-01T07:13:25" +ik[8898] = 5.42 +il[8898] = -14 +im[8898] = 0.0977 +ij[8898] = 27.2 +id[8899] = "2654-09-06T15:51:41" +ik[8899] = 44.641 +il[8899] = -91 +im[8899] = 0.1083 +ij[8899] = 3 +id[8900] = "2654-09-22T06:52:32" +ik[8900] = 11 +il[8900] = -163 +im[8900] = 0.0971 +ij[8900] = 18 +id[8901] = "2654-09-25T07:49:23" +ik[8901] = -2.094 +il[8901] = -147 +im[8901] = 0.0137 +ij[8901] = 2 +id[8902] = "2654-11-25T02:54:04" +ik[8902] = 0 +il[8902] = 159 +im[8902] = 0.195 +ij[8902] = 13 +id[8903] = "2654-11-27T09:05:12" +ik[8903] = 0.549 +il[8903] = 88 +im[8903] = 0.2273 +ij[8903] = 28.2 +id[8904] = "2654-12-18T22:43:55" +ik[8904] = 0.792 +il[8904] = 93 +im[8904] = 0.0764 +ij[8904] = 28.1 +id[8905] = "2655-01-03T02:43:28" +ik[8905] = 3.44 +il[8905] = 157 +im[8905] = 0.1499 +ij[8905] = 11 +id[8906] = "2655-01-09T21:20:50" +ik[8906] = 12 +il[8906] = 135 +im[8906] = 0.195 +ij[8906] = 17 +id[8907] = "2655-01-20T14:09:31" +ik[8907] = 3.525 +il[8907] = -27 +im[8907] = 0.2254 +ij[8907] = 28.1 +id[8908] = "2655-02-10T01:56:40" +ik[8908] = 76.96 +il[8908] = -15 +im[8908] = 0.0194 +ij[8908] = 7.157 +id[8909] = "2655-03-08T16:28:05" +ik[8909] = 12 +il[8909] = 11 +im[8909] = 0.0199 +ij[8909] = 18 +id[8910] = "2655-04-05T12:02:44" +ik[8910] = -1.585 +il[8910] = -20 +im[8910] = 0.0191 +ij[8910] = 4 +id[8911] = "2655-04-09T21:24:37" +ik[8911] = 37.099 +il[8911] = -119 +im[8911] = 0.0836 +ij[8911] = 1 +id[8912] = "2655-04-14T05:59:31" +ik[8912] = 140.13 +il[8912] = 153 +im[8912] = 0.1043 +ij[8912] = 14 +id[8913] = "2655-05-13T22:13:52" +ik[8913] = 2.106 +il[8913] = -169 +im[8913] = 0.0786 +ij[8913] = 28.8 +id[8914] = "2655-06-18T13:23:24" +ik[8914] = 31.368 +il[8914] = -56 +im[8914] = 0.0298 +ij[8914] = 9 +id[8915] = "2655-08-15T22:42:55" +ik[8915] = 6.469 +il[8915] = 5 +im[8915] = 0.0375 +ij[8915] = 28.1 +id[8916] = "2655-08-20T15:19:44" +ik[8916] = 26.071 +il[8916] = 161 +im[8916] = 0.0588 +ij[8916] = 16 +id[8917] = "2655-12-15T07:23:28" +ik[8917] = 0.52 +il[8917] = -5 +im[8917] = 0.0478 +ij[8917] = 12 +id[8918] = "2655-12-29T15:59:59" +ik[8918] = 0 +il[8918] = 179 +im[8918] = 0.0561 +ij[8918] = 17 +id[8919] = "2656-02-24T17:33:33" +ik[8919] = 0.28 +il[8919] = -19 +im[8919] = 0.0628 +ij[8919] = 27.3 +id[8920] = "2656-03-24T02:53:47" +ik[8920] = 0.077 +il[8920] = 124 +im[8920] = 0.0657 +ij[8920] = 28.5 +id[8921] = "2656-03-24T12:12:12" +ik[8921] = 0.661 +il[8921] = -20 +im[8921] = 0.0649 +ij[8921] = 27.5 +id[8922] = "2656-03-26T13:57:21" +ik[8922] = 0.58 +il[8922] = -18 +im[8922] = 0.0529 +ij[8922] = 28.6 +id[8923] = "2656-04-23T05:28:10" +ik[8923] = -25.567 +il[8923] = 16 +im[8923] = 0.0635 +ij[8923] = 15 +id[8924] = "2656-04-26T19:58:12" +ik[8924] = 3.4 +il[8924] = -166 +im[8924] = 0.0259 +ij[8924] = 28.1 +id[8925] = "2656-06-02T06:30:08" +ik[8925] = 3.07 +il[8925] = 32 +im[8925] = 0.0722 +ij[8925] = 27.6 +id[8926] = "2656-08-04T13:07:09" +ik[8926] = 4.929 +il[8926] = -166 +im[8926] = 0.0646 +ij[8926] = 27.2 +id[8927] = "2656-08-04T18:51:51" +ik[8927] = 0.298 +il[8927] = 110 +im[8927] = 0.0617 +ij[8927] = 28.7 +id[8928] = "2656-08-07T23:48:44" +ik[8928] = 35.208 +il[8928] = 67 +im[8928] = 0.0118 +ij[8928] = 8 +id[8929] = "2656-08-23T15:28:46" +ik[8929] = 11 +il[8929] = -14 +im[8929] = 0.0334 +ij[8929] = 18 +id[8930] = "2656-10-18T09:54:24" +ik[8930] = 1.362 +il[8930] = -108 +im[8930] = 0.0092 +ij[8930] = 28.8 +id[8931] = "2656-10-23T18:07:37" +ik[8931] = 40.08 +il[8931] = -179 +im[8931] = 0.105 +ij[8931] = 3 +id[8932] = "2656-10-25T10:56:58" +ik[8932] = -1.821 +il[8932] = -55 +im[8932] = 0.1169 +ij[8932] = 2 +id[8933] = "2656-12-30T05:59:59" +ik[8933] = 0 +il[8933] = -64 +im[8933] = 0.101 +ij[8933] = 13 +id[8934] = "2657-02-08T12:03:28" +ik[8934] = 4.38 +il[8934] = -142 +im[8934] = 0.1292 +ij[8934] = 11 +id[8935] = "2657-03-04T08:25:34" +ik[8935] = 2.615 +il[8935] = -64 +im[8935] = 0.0018 +ij[8935] = 28.2 +id[8936] = "2657-03-22T05:02:35" +ik[8936] = 81.96 +il[8936] = 179 +im[8936] = 0.1264 +ij[8936] = 7.1908 +id[8937] = "2657-04-02T23:06:53" +ik[8937] = 3.404 +il[8937] = -16 +im[8937] = 0.0795 +ij[8937] = 28.8 +id[8938] = "2657-05-19T08:01:40" +ik[8938] = 37.365 +il[8938] = -67 +im[8938] = 0.1012 +ij[8938] = 1 +id[8939] = "2657-05-21T05:25:25" +ik[8939] = -1.563 +il[8939] = -10 +im[8939] = 0.095 +ij[8939] = 4 +id[8940] = "2657-05-28T00:57:24" +ik[8940] = 148.79 +il[8940] = 123 +im[8940] = 0.0303 +ij[8940] = 14 +id[8941] = "2657-07-26T11:10:57" +ik[8941] = 32.162 +il[8941] = -177 +im[8941] = 0.0531 +ij[8941] = 9 +id[8942] = "2657-07-31T01:22:41" +ik[8942] = 26.2 +il[8942] = 15 +im[8942] = 0.075 +ij[8942] = 16 +id[8943] = "2657-10-24T15:36:59" +ik[8943] = 0.109 +il[8943] = -87 +im[8943] = 0.0619 +ij[8943] = 28.2 +id[8944] = "2657-11-01T04:41:54" +ik[8944] = 2.528 +il[8944] = 150 +im[8944] = 0.0155 +ij[8944] = 28.1 +id[8945] = "2657-11-06T05:03:29" +ik[8945] = 3.613 +il[8945] = -167 +im[8945] = 0.0634 +ij[8945] = 27.4 +id[8946] = "2657-11-20T02:13:41" +ik[8946] = 6.139 +il[8946] = 11 +im[8946] = 0.0523 +ij[8946] = 27.1 +id[8947] = "2657-12-10T01:14:10" +ik[8947] = 0 +il[8947] = -128 +im[8947] = 0.0489 +ij[8947] = 17 +id[8948] = "2658-02-12T00:39:55" +ik[8948] = 1.07 +il[8948] = 159 +im[8948] = 0.0227 +ij[8948] = 12 +id[8949] = "2658-04-03T14:05:02" +ik[8949] = -25.777 +il[8949] = -119 +im[8949] = 0.062 +ij[8949] = 15 +id[8950] = "2658-05-09T07:37:57" +ik[8950] = 0.648 +il[8950] = -21 +im[8950] = 0.0151 +ij[8950] = 28.2 +id[8951] = "2658-05-12T17:05:11" +ik[8951] = 2.75 +il[8951] = -132 +im[8951] = 0.0539 +ij[8951] = 27.6 +id[8952] = "2658-05-20T17:04:18" +ik[8952] = 0.541 +il[8952] = -50 +im[8952] = 0.0229 +ij[8952] = 28.5 +id[8953] = "2658-07-14T05:26:47" +ik[8953] = 4.614 +il[8953] = -61 +im[8953] = 0.0603 +ij[8953] = 27.2 +id[8954] = "2658-07-27T18:08:30" +ik[8954] = 0.027 +il[8954] = -120 +im[8954] = 0.0657 +ij[8954] = 28.7 +id[8955] = "2658-08-02T13:52:44" +ik[8955] = 12 +il[8955] = 1 +im[8955] = 0.0058 +ij[8955] = 18 +id[8956] = "2658-08-15T12:15:23" +ik[8956] = 2.179 +il[8956] = 151 +im[8956] = 0.0296 +ij[8956] = 28.2 +id[8957] = "2658-09-29T11:15:28" +ik[8957] = 1.195 +il[8957] = -118 +im[8957] = 0.0098 +ij[8957] = 28.8 +id[8958] = "2658-10-02T12:36:44" +ik[8958] = 32.708 +il[8958] = -108 +im[8958] = 0.0571 +ij[8958] = 8 +id[8959] = "2658-11-27T02:56:59" +ik[8959] = -1.651 +il[8959] = -145 +im[8959] = 0.05 +ij[8959] = 2 +id[8960] = "2658-12-05T02:04:33" +ik[8960] = 37.185 +il[8960] = -55 +im[8960] = 0.0984 +ij[8960] = 3 +id[8961] = "2659-02-02T00:57:52" +ik[8961] = 0 +il[8961] = 171 +im[8961] = 0.0659 +ij[8961] = 13 +id[8962] = "2659-03-14T13:35:55" +ik[8962] = 3.79 +il[8962] = -10 +im[8962] = 0.0358 +ij[8962] = 11 +id[8963] = "2659-03-30T05:54:22" +ik[8963] = 0.837 +il[8963] = 46 +im[8963] = 0.0549 +ij[8963] = 28.1 +id[8964] = "2659-04-25T01:01:28" +ik[8964] = 82 +il[8964] = -5 +im[8964] = 0.0136 +ij[8964] = 7.2113 +id[8965] = "2659-06-28T13:31:35" +ik[8965] = 39.195 +il[8965] = 71 +im[8965] = 0.0909 +ij[8965] = 1 +id[8966] = "2659-06-30T14:37:15" +ik[8966] = 148.57 +il[8966] = 75 +im[8966] = 0.0562 +ij[8966] = 14 +id[8967] = "2659-07-04T17:20:59" +ik[8967] = -1.677 +il[8967] = 74 +im[8967] = 0.039 +ij[8967] = 4 +id[8968] = "2659-07-07T15:23:40" +ik[8968] = 26.296 +il[8968] = 131 +im[8968] = 0.0903 +ij[8968] = 16 +id[8969] = "2659-09-11T06:46:57" +ik[8969] = 33.77 +il[8969] = 179 +im[8969] = 0.0386 +ij[8969] = 9 +id[8970] = "2659-10-17T03:32:07" +ik[8970] = 3.278 +il[8970] = -143 +im[8970] = 0.0664 +ij[8970] = 27.4 +id[8971] = "2659-10-21T11:35:07" +ik[8971] = 1.651 +il[8971] = 139 +im[8971] = 0.0605 +ij[8971] = 28.2 +id[8972] = "2659-10-31T05:09:44" +ik[8972] = 6.45 +il[8972] = -30 +im[8972] = 0.0638 +ij[8972] = 27.1 +id[8973] = "2659-11-20T22:50:06" +ik[8973] = 0 +il[8973] = -92 +im[8973] = 0.0435 +ij[8973] = 17 +id[8974] = "2660-01-15T02:04:45" +ik[8974] = 0.204 +il[8974] = 41 +im[8974] = 0.0648 +ij[8974] = 27.3 +id[8975] = "2660-01-16T08:43:42" +ik[8975] = 2.318 +il[8975] = -46 +im[8975] = 0.0578 +ij[8975] = 28.1 +id[8976] = "2660-03-14T05:37:04" +ik[8976] = -25.946 +il[8976] = -139 +im[8976] = 0.0588 +ij[8976] = 15 +id[8977] = "2660-04-25T20:29:16" +ik[8977] = 0.34 +il[8977] = 63 +im[8977] = 0.0567 +ij[8977] = 12 +id[8978] = "2660-07-13T10:20:22" +ik[8978] = 12 +il[8978] = 63 +im[8978] = 0.0034 +ij[8978] = 18 +id[8979] = "2660-07-20T10:56:10" +ik[8979] = 0.238 +il[8979] = 123 +im[8979] = 0.0584 +ij[8979] = 28.7 +id[8980] = "2660-07-25T05:20:58" +ik[8980] = 0.428 +il[8980] = -107 +im[8980] = 0.0258 +ij[8980] = 28.5 +id[8981] = "2660-09-14T19:41:09" +ik[8981] = 1.101 +il[8981] = 177 +im[8981] = 0.0624 +ij[8981] = 28.8 +id[8982] = "2660-11-10T08:23:24" +ik[8982] = 31.134 +il[8982] = 173 +im[8982] = 0.0718 +ij[8982] = 8 +id[8983] = "2661-01-02T19:39:40" +ik[8983] = -1.581 +il[8983] = 161 +im[8983] = 0.0483 +ij[8983] = 2 +id[8984] = "2661-01-12T06:46:39" +ik[8984] = 36.163 +il[8984] = 85 +im[8984] = 0.0723 +ij[8984] = 3 +id[8985] = "2661-03-10T14:37:41" +ik[8985] = 0 +il[8985] = 158 +im[8985] = 0.0706 +ij[8985] = 13 +id[8986] = "2661-03-15T10:50:56" +ik[8986] = 1.971 +il[8986] = -98 +im[8986] = 0.1234 +ij[8986] = 28.2 +id[8987] = "2661-04-18T07:09:16" +ik[8987] = 1.92 +il[8987] = -102 +im[8987] = 0.1451 +ij[8987] = 11 +id[8988] = "2661-05-28T23:53:33" +ik[8988] = 79.39 +il[8988] = -176 +im[8988] = 0.1106 +ij[8988] = 7.1918 +id[8989] = "2661-06-14T18:44:38" +ik[8989] = 25.362 +il[8989] = 64 +im[8989] = 0.0317 +ij[8989] = 16 +id[8990] = "2661-07-29T01:05:24" +ik[8990] = 140.44 +il[8990] = 39 +im[8990] = 0.0639 +ij[8990] = 14 +id[8991] = "2661-08-10T19:19:37" +ik[8991] = 42.532 +il[8991] = -110 +im[8991] = 0.0458 +ij[8991] = 1 +id[8992] = "2661-08-11T16:13:27" +ik[8992] = -1.916 +il[8992] = -55 +im[8992] = 0.0666 +ij[8992] = 4 +id[8993] = "2661-09-23T00:44:47" +ik[8993] = 2.727 +il[8993] = -129 +im[8993] = 0.022 +ij[8993] = 27.4 +id[8994] = "2661-10-30T09:08:44" +ik[8994] = 0 +il[8994] = 111 +im[8994] = 0.0652 +ij[8994] = 17 +id[8995] = "2661-11-12T12:38:30" +ik[8995] = 35.443 +il[8995] = -173 +im[8995] = 0.0861 +ij[8995] = 9 +id[8996] = "2661-12-24T05:53:26" +ik[8996] = 0.09 +il[8996] = -20 +im[8996] = 0.0741 +ij[8996] = 27.3 +id[8997] = "2662-01-21T22:29:42" +ik[8997] = 0.473 +il[8997] = 13 +im[8997] = 0.0704 +ij[8997] = 27.5 +id[8998] = "2662-02-22T13:13:06" +ik[8998] = -26.103 +il[8998] = 102 +im[8998] = 0.0599 +ij[8998] = 15 +id[8999] = "2662-04-01T23:38:01" +ik[8999] = 2.251 +il[8999] = -34 +im[8999] = 0.0469 +ij[8999] = 27.6 +id[9000] = "2662-04-02T21:45:12" +ik[9000] = 2.3 +il[9000] = 0 +im[9000] = 0.0539 +ij[9000] = 28.1 +id[9001] = "2662-06-23T12:58:36" +ik[9001] = 0.68 +il[9001] = -168 +im[9001] = 0.0044 +ij[9001] = 12 +id[9002] = "2662-06-24T23:06:04" +ik[9002] = 12 +il[9002] = -135 +im[9002] = 0.0129 +ij[9002] = 18 +id[9003] = "2662-09-03T01:43:47" +ik[9003] = 1.003 +il[9003] = 166 +im[9003] = 0.0051 +ij[9003] = 28.8 +id[9004] = "2662-09-07T03:06:48" +ik[9004] = 2.727 +il[9004] = -175 +im[9004] = 0.0462 +ij[9004] = 28.1 +id[9005] = "2662-10-19T12:19:37" +ik[9005] = 0.073 +il[9005] = 96 +im[9005] = 0.0347 +ij[9005] = 28.5 +id[9006] = "2662-11-08T23:01:30" +ik[9006] = 25.36 +il[9006] = 133 +im[9006] = 0.0654 +ij[9006] = 16 +id[9007] = "2662-12-14T14:30:57" +ik[9007] = 30.61 +il[9007] = -116 +im[9007] = 0.0249 +ij[9007] = 8 +id[9008] = "2663-02-22T09:03:15" +ik[9008] = -1.628 +il[9008] = -85 +im[9008] = 0.0124 +ij[9008] = 2 +id[9009] = "2663-02-23T19:01:37" +ik[9009] = 37.039 +il[9009] = 139 +im[9009] = 0.0453 +ij[9009] = 3 +id[9010] = "2663-03-16T04:05:13" +ik[9010] = 5.285 +il[9010] = -163 +im[9010] = 0.1371 +ij[9010] = 27.4 +id[9011] = "2663-04-19T04:52:09" +ik[9011] = 5.313 +il[9011] = 146 +im[9011] = 0.0067 +ij[9011] = 27.1 +id[9012] = "2663-04-27T01:05:52" +ik[9012] = 0 +il[9012] = -81 +im[9012] = 0.2094 +ij[9012] = 13 +id[9013] = "2663-05-31T22:25:43" +ik[9013] = 1.29 +il[9013] = -93 +im[9013] = 0.1639 +ij[9013] = 11 +id[9014] = "2663-06-30T16:50:52" +ik[9014] = 3.185 +il[9014] = 83 +im[9014] = 0.2545 +ij[9014] = 28.2 +id[9015] = "2663-07-10T00:08:28" +ik[9015] = 73.96 +il[9015] = 64 +im[9015] = 0.0832 +ij[9015] = 7.1363 +id[9016] = "2663-08-13T16:42:01" +ik[9016] = 1.276 +il[9016] = 155 +im[9016] = 0.1928 +ij[9016] = 27.4 +id[9017] = "2663-08-30T03:32:12" +ik[9017] = 125.1 +il[9017] = 153 +im[9017] = 0.1117 +ij[9017] = 14 +id[9018] = "2663-09-11T02:25:02" +ik[9018] = -2.239 +il[9018] = -73 +im[9018] = 0.1556 +ij[9018] = 4 +id[9019] = "2663-09-27T09:45:30" +ik[9019] = 46.017 +il[9019] = -23 +im[9019] = 0.1041 +ij[9019] = 1 +id[9020] = "2663-10-04T19:10:28" +ik[9020] = 0 +il[9020] = -91 +im[9020] = 0.0957 +ij[9020] = 17 +id[9021] = "2663-11-30T05:38:56" +ik[9021] = 0.2 +il[9021] = -53 +im[9021] = 0.0436 +ij[9021] = 27.3 +id[9022] = "2663-12-30T01:26:19" +ik[9022] = 0.505 +il[9022] = -58 +im[9022] = 0.0506 +ij[9022] = 27.5 +id[9023] = "2664-01-22T23:22:04" +ik[9023] = 34.821 +il[9023] = -154 +im[9023] = 0.0423 +ij[9023] = 9 +id[9024] = "2664-02-01T12:46:55" +ik[9024] = -26.265 +il[9024] = 97 +im[9024] = 0.0772 +ij[9024] = 15 +id[9025] = "2664-03-11T03:30:52" +ik[9025] = 1.98 +il[9025] = -113 +im[9025] = 0.048 +ij[9025] = 27.6 +id[9026] = "2664-04-13T20:19:22" +ik[9026] = 0.36 +il[9026] = -46 +im[9026] = 0.0679 +ij[9026] = 28.2 +id[9027] = "2664-05-14T21:25:17" +ik[9027] = 3.896 +il[9027] = -118 +im[9027] = 0.0545 +ij[9027] = 27.2 +id[9028] = "2664-05-20T22:52:11" +ik[9028] = 1.967 +il[9028] = -84 +im[9028] = 0.0184 +ij[9028] = 28.6 +id[9029] = "2664-06-05T13:04:49" +ik[9029] = 12 +il[9029] = -149 +im[9029] = 0.0328 +ij[9029] = 18 +id[9030] = "2664-08-05T11:07:30" +ik[9030] = 1.11 +il[9030] = 105 +im[9030] = 0.0528 +ij[9030] = 12 +id[9031] = "2664-10-20T14:00:20" +ik[9031] = 25.589 +il[9031] = -77 +im[9031] = 0.0468 +ij[9031] = 16 +id[9032] = "2664-12-13T09:07:59" +ik[9032] = 0.883 +il[9032] = 153 +im[9032] = 0.0705 +ij[9032] = 28.2 +id[9033] = "2665-01-16T17:38:03" +ik[9033] = 31.096 +il[9033] = -6 +im[9033] = 0.04 +ij[9033] = 8 +id[9034] = "2665-01-23T05:00:14" +ik[9034] = 0.096 +il[9034] = -115 +im[9034] = 0.0613 +ij[9034] = 28.5 +id[9035] = "2665-02-04T11:13:37" +ik[9035] = 4.797 +il[9035] = -92 +im[9035] = 0.0527 +ij[9035] = 27.4 +id[9036] = "2665-02-20T19:35:21" +ik[9036] = 5.033 +il[9036] = -62 +im[9036] = 0.0716 +ij[9036] = 27.1 +id[9037] = "2665-03-14T15:24:52" +ik[9037] = 23 +il[9037] = -153 +im[9037] = 0.0624 +ij[9037] = 17 +id[9038] = "2665-04-19T17:28:36" +ik[9038] = 40.484 +il[9038] = 157 +im[9038] = 0.1269 +ij[9038] = 3 +id[9039] = "2665-05-10T00:51:43" +ik[9039] = -1.915 +il[9039] = -122 +im[9039] = 0.1103 +ij[9039] = 2 +id[9040] = "2665-06-21T05:00:30" +ik[9040] = 2.787 +il[9040] = -145 +im[9040] = 0.1391 +ij[9040] = 27.3 +id[9041] = "2665-07-04T03:32:41" +ik[9041] = 0 +il[9041] = 0 +im[9041] = 0.2273 +ij[9041] = 13 +id[9042] = "2665-08-02T20:54:10" +ik[9042] = 6.27 +il[9042] = 13 +im[9042] = 0.092 +ij[9042] = 11 +id[9043] = "2665-09-05T09:12:43" +ik[9043] = 63.24 +il[9043] = -21 +im[9043] = 0.3169 +ij[9043] = 7.0997 +id[9044] = "2665-10-17T10:49:56" +ik[9044] = 1.946 +il[9044] = 9 +im[9044] = 0.2339 +ij[9044] = 27.3 +id[9045] = "2665-10-17T12:02:26" +ik[9045] = 105.35 +il[9045] = -9 +im[9045] = 0.2341 +ij[9045] = 14 +id[9046] = "2665-10-27T07:21:03" +ik[9046] = -2.34 +il[9046] = 158 +im[9046] = 0.0911 +ij[9046] = 4 +id[9047] = "2665-11-23T01:56:29" +ik[9047] = 44.646 +il[9047] = 141 +im[9047] = 0.0186 +ij[9047] = 1 +id[9048] = "2665-11-26T09:49:59" +ik[9048] = 0.967 +il[9048] = 55 +im[9048] = 0.1173 +ij[9048] = 27.5 +id[9049] = "2666-01-06T04:09:46" +ik[9049] = -26.408 +il[9049] = 173 +im[9049] = 0.0348 +ij[9049] = 15 +id[9050] = "2666-02-15T01:45:49" +ik[9050] = 1.623 +il[9050] = -130 +im[9050] = 0.031 +ij[9050] = 27.6 +id[9051] = "2666-03-17T17:43:23" +ik[9051] = 32.93 +il[9051] = -79 +im[9051] = 0.0105 +ij[9051] = 9 +id[9052] = "2666-03-31T05:03:42" +ik[9052] = 4.713 +il[9052] = -122 +im[9052] = 0.022 +ij[9052] = 28.2 +id[9053] = "2666-04-24T07:13:57" +ik[9053] = 3.59 +il[9053] = 72 +im[9053] = 0.0685 +ij[9053] = 27.2 +id[9054] = "2666-05-17T12:11:31" +ik[9054] = 12 +il[9054] = -144 +im[9054] = 0.0486 +ij[9054] = 18 +id[9055] = "2666-06-05T11:46:44" +ik[9055] = 1.525 +il[9055] = 52 +im[9055] = 0.0579 +ij[9055] = 28.6 +id[9056] = "2666-07-03T22:46:40" +ik[9056] = 0.527 +il[9056] = 152 +im[9056] = 0.0554 +ij[9056] = 28.7 +id[9057] = "2666-09-12T00:15:03" +ik[9057] = 1.04 +il[9057] = 89 +im[9057] = 0.0541 +ij[9057] = 12 +id[9058] = "2666-10-03T00:31:06" +ik[9058] = 25.755 +il[9058] = 137 +im[9058] = 0.0182 +ij[9058] = 16 +id[9059] = "2666-11-13T09:43:11" +ik[9059] = 1.31 +il[9059] = 37 +im[9059] = 0.044 +ij[9059] = 28.2 +id[9060] = "2667-01-12T09:38:10" +ik[9060] = 4.459 +il[9060] = -102 +im[9060] = 0.0159 +ij[9060] = 27.4 +id[9061] = "2667-01-27T02:35:08" +ik[9061] = 5.344 +il[9061] = 143 +im[9061] = 0.016 +ij[9061] = 27.1 +id[9062] = "2667-02-15T22:35:37" +ik[9062] = 0 +il[9062] = 31 +im[9062] = 0.0697 +ij[9062] = 17 +id[9063] = "2667-02-25T05:26:03" +ik[9063] = 32.656 +il[9063] = 16 +im[9063] = 0.0163 +ij[9063] = 8 +id[9064] = "2667-04-11T07:21:23" +ik[9064] = 0.263 +il[9064] = 53 +im[9064] = 0.0419 +ij[9064] = 28.5 +id[9065] = "2667-04-21T10:50:17" +ik[9065] = 0.044 +il[9065] = 97 +im[9065] = 0.0737 +ij[9065] = 27.3 +id[9066] = "2667-05-24T03:39:31" +ik[9066] = 1.536 +il[9066] = 155 +im[9066] = 0.0139 +ij[9066] = 27.5 +id[9067] = "2667-06-30T23:51:30" +ik[9067] = 46.356 +il[9067] = -146 +im[9067] = 0.1207 +ij[9067] = 3 +id[9068] = "2667-07-31T14:15:18" +ik[9068] = -2.384 +il[9068] = -67 +im[9068] = 0.0798 +ij[9068] = 2 +id[9069] = "2667-08-30T13:51:37" +ik[9069] = 6.236 +il[9069] = -129 +im[9069] = 0.0036 +ij[9069] = 27.6 +id[9070] = "2667-09-11T03:27:02" +ik[9070] = 3.836 +il[9070] = 141 +im[9070] = 0.1843 +ij[9070] = 28.2 +id[9071] = "2667-09-17T12:02:57" +ik[9071] = 0 +il[9071] = 74 +im[9071] = 0.2415 +ij[9071] = 13 +id[9072] = "2667-10-22T13:59:03" +ik[9072] = 2.57 +il[9072] = 7 +im[9072] = 0.1042 +ij[9072] = 11 +id[9073] = "2667-11-21T11:05:32" +ik[9073] = 64.96 +il[9073] = 180 +im[9073] = 0.1112 +ij[9073] = 7.1225 +id[9074] = "2667-12-09T08:31:30" +ik[9074] = -24.653 +il[9074] = 30 +im[9074] = 0.2115 +ij[9074] = 15 +id[9075] = "2668-01-04T11:08:17" +ik[9075] = 1.156 +il[9075] = -121 +im[9075] = 0.1182 +ij[9075] = 27.6 +id[9076] = "2668-01-06T13:12:20" +ik[9076] = 111.05 +il[9076] = -132 +im[9076] = 0.1565 +ij[9076] = 14 +id[9077] = "2668-01-13T13:07:45" +ik[9077] = -1.914 +il[9077] = -64 +im[9077] = 0.0322 +ij[9077] = 4 +id[9078] = "2668-01-31T19:40:30" +ik[9078] = 39.869 +il[9078] = 10 +im[9078] = 0.0697 +ij[9078] = 1 +id[9079] = "2668-03-29T23:39:36" +ik[9079] = 3.108 +il[9079] = 139 +im[9079] = 0.0674 +ij[9079] = 27.2 +id[9080] = "2668-04-25T11:58:15" +ik[9080] = 12 +il[9080] = -156 +im[9080] = 0.0324 +ij[9080] = 18 +id[9081] = "2668-04-27T21:49:36" +ik[9081] = 31.666 +il[9081] = 79 +im[9081] = 0.0635 +ij[9081] = 9 +id[9082] = "2668-06-21T05:49:18" +ik[9082] = 0.801 +il[9082] = 113 +im[9082] = 0.0219 +ij[9082] = 28.6 +id[9083] = "2668-06-27T09:28:15" +ik[9083] = 0.551 +il[9083] = 116 +im[9083] = 0.0645 +ij[9083] = 28.7 +id[9084] = "2668-07-30T03:41:19" +ik[9084] = 0.684 +il[9084] = 161 +im[9084] = 0.0376 +ij[9084] = 28.1 +id[9085] = "2668-07-30T15:31:22" +ik[9085] = 0.62 +il[9085] = -8 +im[9085] = 0.0326 +ij[9085] = 28.8 +id[9086] = "2668-09-14T14:36:52" +ik[9086] = 25.894 +il[9086] = 92 +im[9086] = 0.0115 +ij[9086] = 16 +id[9087] = "2668-10-17T12:45:17" +ik[9087] = 0.57 +il[9087] = 82 +im[9087] = 0.0513 +ij[9087] = 12 +id[9088] = "2668-12-22T11:17:40" +ik[9088] = 4.198 +il[9088] = -142 +im[9088] = 0.0243 +ij[9088] = 27.4 +id[9089] = "2669-01-03T05:43:07" +ik[9089] = 3.125 +il[9089] = 53 +im[9089] = 0.0429 +ij[9089] = 28.1 +id[9090] = "2669-01-05T16:46:45" +ik[9090] = 5.59 +il[9090] = -91 +im[9090] = 0.0165 +ij[9090] = 27.1 +id[9091] = "2669-01-25T02:31:11" +ik[9091] = 0 +il[9091] = -53 +im[9091] = 0.042 +ij[9091] = 17 +id[9092] = "2669-03-25T23:09:00" +ik[9092] = 0.241 +il[9092] = -145 +im[9092] = 0.072 +ij[9092] = 27.3 +id[9093] = "2669-04-20T10:29:10" +ik[9093] = 35.188 +il[9093] = -72 +im[9093] = 0.036 +ij[9093] = 8 +id[9094] = "2669-04-24T19:34:07" +ik[9094] = 0.93 +il[9094] = -167 +im[9094] = 0.0856 +ij[9094] = 27.5 +id[9095] = "2669-05-23T22:39:17" +ik[9095] = -25.047 +il[9095] = 66 +im[9095] = 0.0974 +ij[9095] = 15 +id[9096] = "2669-06-06T03:46:04" +ik[9096] = 0.268 +il[9096] = 117 +im[9096] = 0.0838 +ij[9096] = 28.5 +id[9097] = "2669-07-06T14:46:19" +ik[9097] = 3.898 +il[9097] = -112 +im[9097] = 0.1053 +ij[9097] = 27.6 +id[9098] = "2669-08-19T10:13:26" +ik[9098] = 46.324 +il[9098] = 25 +im[9098] = 0.1463 +ij[9098] = 3 +id[9099] = "2669-09-12T14:57:59" +ik[9099] = -2.22 +il[9099] = -168 +im[9099] = 0.1084 +ij[9099] = 2 +id[9100] = "2669-09-17T16:00:10" +ik[9100] = 5.677 +il[9100] = -134 +im[9100] = 0.1706 +ij[9100] = 27.2 +id[9101] = "2669-10-19T12:54:53" +ik[9101] = 11 +il[9101] = -136 +im[9101] = 0.1281 +ij[9101] = 18 +id[9102] = "2669-11-09T13:12:50" +ik[9102] = 0 +il[9102] = 65 +im[9102] = 0.2247 +ij[9102] = 13 +id[9103] = "2669-11-15T10:14:39" +ik[9103] = 12 +il[9103] = 167 +im[9103] = 0.1811 +ij[9103] = 17 +id[9104] = "2669-11-26T22:26:33" +ik[9104] = 6.367 +il[9104] = 96 +im[9104] = 0.2328 +ij[9104] = 28.1 +id[9105] = "2669-12-17T04:47:57" +ik[9105] = 2.45 +il[9105] = 179 +im[9105] = 0.1073 +ij[9105] = 11 +id[9106] = "2669-12-31T14:01:52" +ik[9106] = 2.788 +il[9106] = 4 +im[9106] = 0.185 +ij[9106] = 28.1 +id[9107] = "2670-01-05T05:51:34" +ik[9107] = 1.602 +il[9107] = 170 +im[9107] = 0.2506 +ij[9107] = 27.2 +id[9108] = "2670-01-06T02:24:31" +ik[9108] = 2.945 +il[9108] = -135 +im[9108] = 0.2349 +ij[9108] = 28.2 +id[9109] = "2670-01-21T13:16:26" +ik[9109] = 73 +il[9109] = -158 +im[9109] = 0.1166 +ij[9109] = 7.1451 +id[9110] = "2670-02-07T13:22:05" +ik[9110] = 1.764 +il[9110] = 1 +im[9110] = 0.0249 +ij[9110] = 27.2 +id[9111] = "2670-03-16T09:59:20" +ik[9111] = -1.637 +il[9111] = 39 +im[9111] = 0.0995 +ij[9111] = 4 +id[9112] = "2670-03-22T14:42:19" +ik[9112] = 133.06 +il[9112] = 26 +im[9112] = 0.045 +ij[9112] = 14 +id[9113] = "2670-03-23T20:40:33" +ik[9113] = 37.455 +il[9113] = -52 +im[9113] = 0.0714 +ij[9113] = 1 +id[9114] = "2670-03-28T13:41:35" +ik[9114] = 12 +il[9114] = 98 +im[9114] = 0.1176 +ij[9114] = 18 +id[9115] = "2670-06-04T05:55:50" +ik[9115] = 31.279 +il[9115] = 135 +im[9115] = 0.0514 +ij[9115] = 9 +id[9116] = "2670-06-20T14:36:55" +ik[9116] = 0.555 +il[9116] = 160 +im[9116] = 0.0694 +ij[9116] = 28.7 +id[9117] = "2670-07-09T06:39:51" +ik[9117] = 0.129 +il[9117] = 98 +im[9117] = 0.0493 +ij[9117] = 28.6 +id[9118] = "2670-07-18T21:43:04" +ik[9118] = 0.464 +il[9118] = -36 +im[9118] = 0.061 +ij[9118] = 28.8 +id[9119] = "2670-08-21T14:31:56" +ik[9119] = 0.426 +il[9119] = 36 +im[9119] = 0.0466 +ij[9119] = 28.2 +id[9120] = "2670-08-27T20:03:39" +ik[9120] = 26.022 +il[9120] = 14 +im[9120] = 0.033 +ij[9120] = 16 +id[9121] = "2670-11-26T23:37:44" +ik[9121] = 0.19 +il[9121] = 147 +im[9121] = 0.0602 +ij[9121] = 12 +id[9122] = "2671-01-05T23:45:10" +ik[9122] = 0 +il[9122] = -8 +im[9122] = 0.0416 +ij[9122] = 17 +id[9123] = "2671-02-25T06:47:41" +ik[9123] = 1.406 +il[9123] = 3 +im[9123] = 0.0528 +ij[9123] = 28.2 +id[9124] = "2671-03-04T15:49:38" +ik[9124] = 0.28 +il[9124] = -53 +im[9124] = 0.0428 +ij[9124] = 27.3 +id[9125] = "2671-03-26T03:18:36" +ik[9125] = 3.19 +il[9125] = -18 +im[9125] = 0.0577 +ij[9125] = 28.1 +id[9126] = "2671-04-02T15:17:41" +ik[9126] = 0.713 +il[9126] = -129 +im[9126] = 0.0452 +ij[9126] = 27.5 +id[9127] = "2671-05-02T05:03:56" +ik[9127] = -25.461 +il[9127] = -47 +im[9127] = 0.0551 +ij[9127] = 15 +id[9128] = "2671-05-22T06:38:45" +ik[9128] = 0.5 +il[9128] = 124 +im[9128] = 0.0711 +ij[9128] = 28.2 +id[9129] = "2671-06-11T20:11:05" +ik[9129] = 3.234 +il[9129] = 122 +im[9129] = 0.0231 +ij[9129] = 27.6 +id[9130] = "2671-07-10T12:02:03" +ik[9130] = 36.046 +il[9130] = 165 +im[9130] = 0.0169 +ij[9130] = 8 +id[9131] = "2671-08-03T06:35:35" +ik[9131] = 0.028 +il[9131] = 121 +im[9131] = 0.071 +ij[9131] = 28.5 +id[9132] = "2671-08-14T22:57:38" +ik[9132] = 5.091 +il[9132] = -10 +im[9132] = 0.0915 +ij[9132] = 27.2 +id[9133] = "2671-09-03T05:10:51" +ik[9133] = 11 +il[9133] = 85 +im[9133] = 0.0467 +ij[9133] = 18 +id[9134] = "2671-10-06T10:38:29" +ik[9134] = 41.736 +il[9134] = -32 +im[9134] = 0.0525 +ij[9134] = 3 +id[9135] = "2671-10-14T08:44:41" +ik[9135] = -1.916 +il[9135] = 73 +im[9135] = 0.0779 +ij[9135] = 2 +id[9136] = "2671-12-17T14:42:48" +ik[9136] = 0 +il[9136] = -113 +im[9136] = 0.1845 +ij[9136] = 13 +id[9137] = "2672-01-26T16:30:11" +ik[9137] = 4.24 +il[9137] = -134 +im[9137] = 0.182 +ij[9137] = 11 +id[9138] = "2672-03-06T14:07:26" +ik[9138] = 79.98 +il[9138] = 76 +im[9138] = 0.151 +ij[9138] = 7.1777 +id[9139] = "2672-05-03T13:17:34" +ik[9139] = -1.555 +il[9139] = -81 +im[9139] = 0.1125 +ij[9139] = 4 +id[9140] = "2672-05-03T22:09:24" +ik[9140] = 37.071 +il[9140] = 149 +im[9140] = 0.1128 +ij[9140] = 1 +id[9141] = "2672-05-12T09:56:15" +ik[9141] = 146.8 +il[9141] = 53 +im[9141] = 0.0143 +ij[9141] = 14 +id[9142] = "2672-06-09T21:52:47" +ik[9142] = 0.571 +il[9142] = 147 +im[9142] = 0.014 +ij[9142] = 28.7 +id[9143] = "2672-07-04T01:12:45" +ik[9143] = 0.308 +il[9143] = -31 +im[9143] = 0.0561 +ij[9143] = 28.8 +id[9144] = "2672-07-10T18:46:03" +ik[9144] = 31.746 +il[9144] = 131 +im[9144] = 0.0465 +ij[9144] = 9 +id[9145] = "2672-07-27T07:08:29" +ik[9145] = 1.16 +il[9145] = 105 +im[9145] = 0.0736 +ij[9145] = 28.6 +id[9146] = "2672-08-07T23:52:21" +ik[9146] = 26.152 +il[9146] = -33 +im[9146] = 0.039 +ij[9146] = 16 +id[9147] = "2672-08-08T23:00:30" +ik[9147] = 2.689 +il[9147] = -11 +im[9147] = 0.0496 +ij[9147] = 28.2 +id[9148] = "2672-09-30T05:42:48" +ik[9148] = 3.791 +il[9148] = 36 +im[9148] = 0.018 +ij[9148] = 28.1 +id[9149] = "2672-12-17T09:06:41" +ik[9149] = 0 +il[9149] = 37 +im[9149] = 0.0528 +ij[9149] = 17 +id[9150] = "2673-01-17T03:14:37" +ik[9150] = 0.96 +il[9150] = 71 +im[9150] = 0.0602 +ij[9150] = 12 +id[9151] = "2673-04-11T05:24:42" +ik[9151] = -25.703 +il[9151] = -62 +im[9151] = 0.0421 +ij[9151] = 15 +id[9152] = "2673-04-17T17:49:01" +ik[9152] = 1.229 +il[9152] = -174 +im[9152] = 0.0493 +ij[9152] = 28.2 +id[9153] = "2673-05-20T15:22:56" +ik[9153] = 2.863 +il[9153] = -175 +im[9153] = 0.002 +ij[9153] = 27.6 +id[9154] = "2673-06-14T17:58:10" +ik[9154] = 5.479 +il[9154] = 33 +im[9154] = 0.0491 +ij[9154] = 28.1 +id[9155] = "2673-07-22T07:29:17" +ik[9155] = 4.725 +il[9155] = -161 +im[9155] = 0.0614 +ij[9155] = 27.2 +id[9156] = "2673-08-10T12:09:32" +ik[9156] = 12 +il[9156] = -44 +im[9156] = 0.0622 +ij[9156] = 18 +id[9157] = "2673-09-13T15:06:03" +ik[9157] = 33.616 +il[9157] = -116 +im[9157] = 0.0085 +ij[9157] = 8 +id[9158] = "2673-10-21T01:32:34" +ik[9158] = 0.3 +il[9158] = 90 +im[9158] = 0.0877 +ij[9158] = 28.5 +id[9159] = "2673-11-14T01:45:08" +ik[9159] = -1.705 +il[9159] = -40 +im[9159] = 0.0837 +ij[9159] = 2 +id[9160] = "2673-11-14T23:51:16" +ik[9160] = 0.962 +il[9160] = -3 +im[9160] = 0.0947 +ij[9160] = 28.7 +id[9161] = "2673-11-19T07:27:24" +ik[9161] = 38.086 +il[9161] = -75 +im[9161] = 0.0914 +ij[9161] = 3 +id[9162] = "2673-12-14T23:07:24" +ik[9162] = 1.705 +il[9162] = -62 +im[9162] = 0.1255 +ij[9162] = 28.8 +id[9163] = "2674-01-20T09:56:43" +ik[9163] = 0 +il[9163] = 128 +im[9163] = 0.0851 +ij[9163] = 13 +id[9164] = "2674-01-23T22:59:23" +ik[9164] = 1.533 +il[9164] = -34 +im[9164] = 0.1792 +ij[9164] = 28.2 +id[9165] = "2674-03-01T09:41:18" +ik[9165] = 4.17 +il[9165] = 136 +im[9165] = 0.0684 +ij[9165] = 11 +id[9166] = "2674-04-12T08:59:19" +ik[9166] = 81.96 +il[9166] = -31 +im[9166] = 0.116 +ij[9166] = 7.2067 +id[9167] = "2674-05-20T07:45:58" +ik[9167] = 0.855 +il[9167] = -8 +im[9167] = 0.0112 +ij[9167] = 28.7 +id[9168] = "2674-06-12T15:09:30" +ik[9168] = 38.291 +il[9168] = 106 +im[9168] = 0.098 +ij[9168] = 1 +id[9169] = "2674-06-13T17:13:10" +ik[9169] = 0.249 +il[9169] = 85 +im[9169] = 0.0842 +ij[9169] = 28.8 +id[9170] = "2674-06-17T12:52:42" +ik[9170] = -1.617 +il[9170] = -179 +im[9170] = 0.0114 +ij[9170] = 4 +id[9171] = "2674-06-18T09:06:10" +ik[9171] = 148.96 +il[9171] = -108 +im[9171] = 0.0105 +ij[9171] = 14 +id[9172] = "2674-07-12T18:08:16" +ik[9172] = 0.573 +il[9172] = -7 +im[9172] = 0.0659 +ij[9172] = 28.5 +id[9173] = "2674-07-17T12:48:20" +ik[9173] = 26.275 +il[9173] = 119 +im[9173] = 0.0188 +ij[9173] = 16 +id[9174] = "2674-08-15T12:47:02" +ik[9174] = 2.16 +il[9174] = 41 +im[9174] = 0.0215 +ij[9174] = 28.6 +id[9175] = "2674-08-22T14:23:49" +ik[9175] = 33.057 +il[9175] = 86 +im[9175] = 0.0722 +ij[9175] = 9 +id[9176] = "2674-10-25T05:38:05" +ik[9176] = 3.423 +il[9176] = 116 +im[9176] = 0.0146 +ij[9176] = 27.4 +id[9177] = "2674-11-08T04:40:32" +ik[9177] = 6.315 +il[9177] = -93 +im[9177] = 0.008 +ij[9177] = 27.1 +id[9178] = "2674-11-28T13:30:52" +ik[9178] = 0 +il[9178] = -26 +im[9178] = 0.067 +ij[9178] = 17 +id[9179] = "2674-12-16T23:34:50" +ik[9179] = 1.938 +il[9179] = 8 +im[9179] = 0.052 +ij[9179] = 28.1 +id[9180] = "2675-03-22T20:24:41" +ik[9180] = -25.884 +il[9180] = -64 +im[9180] = 0.0461 +ij[9180] = 15 +id[9181] = "2675-03-29T12:42:38" +ik[9181] = 0.77 +il[9181] = 113 +im[9181] = 0.0491 +ij[9181] = 12 +id[9182] = "2675-07-02T03:27:53" +ik[9182] = 4.459 +il[9182] = -101 +im[9182] = 0.0498 +ij[9182] = 27.2 +id[9183] = "2675-07-21T19:37:26" +ik[9183] = 12 +il[9183] = -152 +im[9183] = 0.0556 +ij[9183] = 18 +id[9184] = "2675-10-27T22:03:22" +ik[9184] = 31.62 +il[9184] = 42 +im[9184] = 0.0808 +ij[9184] = 8 +id[9185] = "2675-11-01T19:08:36" +ik[9185] = 0.667 +il[9185] = 133 +im[9185] = 0.0544 +ij[9185] = 28.7 +id[9186] = "2675-11-17T20:45:42" +ik[9186] = 0.788 +il[9186] = -96 +im[9186] = 0.0091 +ij[9186] = 28.8 +id[9187] = "2675-12-19T05:17:36" +ik[9187] = -1.596 +il[9187] = 79 +im[9187] = 0.0481 +ij[9187] = 2 +id[9188] = "2675-12-29T00:54:25" +ik[9188] = 36.348 +il[9188] = -120 +im[9188] = 0.0641 +ij[9188] = 3 +id[9189] = "2676-02-24T09:06:36" +ik[9189] = 0 +il[9189] = -50 +im[9189] = 0.0399 +ij[9189] = 13 +id[9190] = "2676-04-03T21:26:11" +ik[9190] = 2.81 +il[9190] = 122 +im[9190] = 0.0647 +ij[9190] = 11 +id[9191] = "2676-04-23T17:43:33" +ik[9191] = 0.248 +il[9191] = 147 +im[9191] = 0.1943 +ij[9191] = 28.1 +id[9192] = "2676-04-29T21:46:44" +ik[9192] = 0.345 +il[9192] = 146 +im[9192] = 0.0833 +ij[9192] = 28.2 +id[9193] = "2676-05-15T08:09:12" +ik[9193] = 80.96 +il[9193] = 140 +im[9193] = 0.0389 +ij[9193] = 7.2051 +id[9194] = "2676-06-19T05:50:16" +ik[9194] = 26.13 +il[9194] = 153 +im[9194] = 0.1356 +ij[9194] = 16 +id[9195] = "2676-07-17T17:16:11" +ik[9195] = 144.34 +il[9195] = -101 +im[9195] = 0.1136 +ij[9195] = 14 +id[9196] = "2676-07-23T23:22:24" +ik[9196] = 41.069 +il[9196] = -132 +im[9196] = 0.0073 +ij[9196] = 1 +id[9197] = "2676-07-29T00:34:03" +ik[9197] = -1.809 +il[9197] = -101 +im[9197] = 0.0972 +ij[9197] = 4 +id[9198] = "2676-09-01T12:24:54" +ik[9198] = 2.992 +il[9198] = 57 +im[9198] = 0.0787 +ij[9198] = 28.6 +id[9199] = "2676-10-02T17:24:39" +ik[9199] = 2.985 +il[9199] = -73 +im[9199] = 0.0301 +ij[9199] = 27.4 +id[9200] = "2676-10-13T12:26:22" +ik[9200] = 1.59 +il[9200] = 107 +im[9200] = 0.0751 +ij[9200] = 28.5 +id[9201] = "2676-10-16T12:07:22" +ik[9201] = 34.916 +il[9201] = 141 +im[9201] = 0.0378 +ij[9201] = 9 +id[9202] = "2676-11-07T17:45:27" +ik[9202] = 0 +il[9202] = -86 +im[9202] = 0.0779 +ij[9202] = 17 +id[9203] = "2677-01-01T15:19:23" +ik[9203] = 0.147 +il[9203] = 131 +im[9203] = 0.0443 +ij[9203] = 27.3 +id[9204] = "2677-01-17T08:52:12" +ik[9204] = 1.085 +il[9204] = 23 +im[9204] = 0.0437 +ij[9204] = 28.2 +id[9205] = "2677-01-30T04:17:14" +ik[9205] = 0.48 +il[9205] = -142 +im[9205] = 0.0356 +ij[9205] = 27.5 +id[9206] = "2677-03-02T05:11:04" +ik[9206] = 3.101 +il[9206] = 148 +im[9206] = 0.0542 +ij[9206] = 28.1 +id[9207] = "2677-03-02T09:10:42" +ik[9207] = -26.043 +il[9207] = 90 +im[9207] = 0.0556 +ij[9207] = 15 +id[9208] = "2677-06-02T23:56:25" +ik[9208] = 0.34 +il[9208] = 59 +im[9208] = 0.0534 +ij[9208] = 12 +id[9209] = "2677-07-02T04:15:00" +ik[9209] = 12 +il[9209] = 82 +im[9209] = 0.0502 +ij[9209] = 18 +id[9210] = "2677-08-13T08:47:07" +ik[9210] = 1.236 +il[9210] = 70 +im[9210] = 0.0527 +ij[9210] = 28.1 +id[9211] = "2677-10-19T16:24:16" +ik[9211] = 0.642 +il[9211] = -110 +im[9211] = 0.0521 +ij[9211] = 28.2 +id[9212] = "2677-10-23T17:55:11" +ik[9212] = 0.502 +il[9212] = -93 +im[9212] = 0.0611 +ij[9212] = 28.7 +id[9213] = "2677-11-01T19:40:36" +ik[9213] = 0.391 +il[9213] = -32 +im[9213] = 0.0508 +ij[9213] = 28.8 +id[9214] = "2677-11-16T15:19:08" +ik[9214] = 25.238 +il[9214] = 176 +im[9214] = 0.0493 +ij[9214] = 16 +id[9215] = "2677-12-01T13:50:02" +ik[9215] = 30.695 +il[9215] = -17 +im[9215] = 0.069 +ij[9215] = 8 +id[9216] = "2678-01-31T07:25:37" +ik[9216] = -1.592 +il[9216] = -56 +im[9216] = 0.1113 +ij[9216] = 2 +id[9217] = "2678-02-06T08:32:29" +ik[9217] = 36.447 +il[9217] = -15 +im[9217] = 0.0169 +ij[9217] = 3 +id[9218] = "2678-03-11T17:02:24" +ik[9218] = 0.319 +il[9218] = 176 +im[9218] = 0.133 +ij[9218] = 28.6 +id[9219] = "2678-04-06T17:16:40" +ik[9219] = 0 +il[9219] = 54 +im[9219] = 0.1368 +ij[9219] = 13 +id[9220] = "2678-04-14T04:02:38" +ik[9220] = 0.646 +il[9220] = -35 +im[9220] = 0.0985 +ij[9220] = 28.6 +id[9221] = "2678-05-13T10:11:32" +ik[9221] = 0.02 +il[9221] = 132 +im[9221] = 0.0338 +ij[9221] = 11 +id[9222] = "2678-06-21T16:19:16" +ik[9222] = 75.96 +il[9222] = -145 +im[9222] = 0.0763 +ij[9222] = 7.1598 +id[9223] = "2678-08-16T17:46:08" +ik[9223] = 132.02 +il[9223] = 20 +im[9223] = 0.0467 +ij[9223] = 14 +id[9224] = "2678-08-30T03:28:18" +ik[9224] = -2.111 +il[9224] = 5 +im[9224] = 0.0318 +ij[9224] = 4 +id[9225] = "2678-09-04T01:46:33" +ik[9225] = 2.082 +il[9225] = 79 +im[9225] = 0.1052 +ij[9225] = 27.4 +id[9226] = "2678-09-08T17:35:22" +ik[9226] = 44.879 +il[9226] = -113 +im[9226] = 0.1409 +ij[9226] = 1 +id[9227] = "2678-09-15T07:53:02" +ik[9227] = 3.595 +il[9227] = 98 +im[9227] = 0.0108 +ij[9227] = 28.6 +id[9228] = "2678-10-16T00:06:12" +ik[9228] = 0 +il[9228] = 156 +im[9228] = 0.0412 +ij[9228] = 17 +id[9229] = "2678-12-10T07:49:07" +ik[9229] = 0.044 +il[9229] = -135 +im[9229] = 0.0108 +ij[9229] = 27.3 +id[9230] = "2678-12-19T20:29:59" +ik[9230] = 0.43 +il[9230] = 128 +im[9230] = 0.0775 +ij[9230] = 28.5 +id[9231] = "2678-12-27T08:41:09" +ik[9231] = 35.396 +il[9231] = 19 +im[9231] = 0.0403 +ij[9231] = 9 +id[9232] = "2679-01-04T23:12:43" +ik[9232] = 3.991 +il[9232] = -115 +im[9232] = 0.0628 +ij[9232] = 28.2 +id[9233] = "2679-01-08T12:09:51" +ik[9233] = 0.476 +il[9233] = 86 +im[9233] = 0.0056 +ij[9233] = 27.5 +id[9234] = "2679-02-10T01:05:35" +ik[9234] = -26.203 +il[9234] = -152 +im[9234] = 0.0546 +ij[9234] = 15 +id[9235] = "2679-03-20T12:32:24" +ik[9235] = 2.091 +il[9235] = 46 +im[9235] = 0.0278 +ij[9235] = 27.6 +id[9236] = "2679-05-12T07:15:50" +ik[9236] = 1.244 +il[9236] = -82 +im[9236] = 0.063 +ij[9236] = 28.1 +id[9237] = "2679-06-13T19:08:37" +ik[9237] = 12 +il[9237] = 51 +im[9237] = 0.0396 +ij[9237] = 18 +id[9238] = "2679-07-21T12:16:52" +ik[9238] = 1.01 +il[9238] = 151 +im[9238] = 0.052 +ij[9238] = 12 +id[9239] = "2679-10-17T13:41:05" +ik[9239] = 0.357 +il[9239] = 103 +im[9239] = 0.0566 +ij[9239] = 28.7 +id[9240] = "2679-10-20T16:46:14" +ik[9240] = 0.095 +il[9240] = 87 +im[9240] = 0.0366 +ij[9240] = 28.8 +id[9241] = "2679-10-28T15:21:00" +ik[9241] = 25.511 +il[9241] = -179 +im[9241] = 0.0519 +ij[9241] = 16 +id[9242] = "2680-01-04T04:30:29" +ik[9242] = 30.783 +il[9242] = -83 +im[9242] = 0.0103 +ij[9242] = 8 +id[9243] = "2680-02-16T18:54:58" +ik[9243] = 4.967 +il[9243] = 116 +im[9243] = 0.0183 +ij[9243] = 27.4 +id[9244] = "2680-03-05T18:45:55" +ik[9244] = 4.892 +il[9244] = -71 +im[9244] = 0.1036 +ij[9244] = 27.1 +id[9245] = "2680-03-13T17:55:34" +ik[9245] = 0.73 +il[9245] = 17 +im[9245] = 0.0452 +ij[9245] = 28.6 +id[9246] = "2680-03-26T09:16:24" +ik[9246] = 38.748 +il[9246] = -93 +im[9246] = 0.0701 +ij[9246] = 3 +id[9247] = "2680-03-31T08:52:46" +ik[9247] = 23 +il[9247] = -40 +im[9247] = 0.0738 +ij[9247] = 17 +id[9248] = "2680-04-05T21:24:45" +ik[9248] = -1.757 +il[9248] = -179 +im[9248] = 0.1501 +ij[9248] = 2 +id[9249] = "2680-05-28T03:43:27" +ik[9249] = 0.161 +il[9249] = -136 +im[9249] = 0.2131 +ij[9249] = 28.2 +id[9250] = "2680-06-04T17:46:38" +ik[9250] = 0 +il[9250] = 80 +im[9250] = 0.157 +ij[9250] = 13 +id[9251] = "2680-07-05T09:38:39" +ik[9251] = 4.49 +il[9251] = 126 +im[9251] = 0.0921 +ij[9251] = 11 +id[9252] = "2680-07-12T08:03:14" +ik[9252] = 0 +il[9252] = 38 +im[9252] = 0.3086 +ij[9252] = 18 +id[9253] = "2680-07-30T12:23:01" +ik[9253] = 5.917 +il[9253] = 140 +im[9253] = 0.0465 +ij[9253] = 28.6 +id[9254] = "2680-08-10T05:17:47" +ik[9254] = 66.48 +il[9254] = -9 +im[9254] = 0.1954 +ij[9254] = 7.1067 +id[9255] = "2680-09-02T15:27:16" +ik[9255] = 0 +il[9255] = 69 +im[9255] = 0.2412 +ij[9255] = 17 +id[9256] = "2680-09-07T19:12:19" +ik[9256] = 4.912 +il[9256] = 63 +im[9256] = 0.1111 +ij[9256] = 28.6 +id[9257] = "2680-09-24T13:26:36" +ik[9257] = 111.82 +il[9257] = -45 +im[9257] = 0.0188 +ij[9257] = 14 +id[9258] = "2680-10-04T12:55:26" +ik[9258] = -2.372 +il[9258] = 61 +im[9258] = 0.1381 +ij[9258] = 4 +id[9259] = "2680-10-28T14:13:20" +ik[9259] = 46.062 +il[9259] = -82 +im[9259] = 0.1441 +ij[9259] = 1 +id[9260] = "2680-11-09T08:17:51" +ik[9260] = 0.736 +il[9260] = 123 +im[9260] = 0.1116 +ij[9260] = 27.3 +id[9261] = "2680-12-11T19:05:25" +ik[9261] = 0.645 +il[9261] = -82 +im[9261] = 0.1297 +ij[9261] = 27.5 +id[9262] = "2681-01-17T01:05:23" +ik[9262] = -26.367 +il[9262] = 178 +im[9262] = 0.0203 +ij[9262] = 15 +id[9263] = "2681-02-13T10:55:21" +ik[9263] = 1.174 +il[9263] = -67 +im[9263] = 0.0411 +ij[9263] = 28.5 +id[9264] = "2681-02-25T04:27:24" +ik[9264] = 1.777 +il[9264] = 141 +im[9264] = 0.0639 +ij[9264] = 27.6 +id[9265] = "2681-02-26T11:09:09" +ik[9265] = 33.644 +il[9265] = 53 +im[9265] = 0.0477 +ij[9265] = 9 +id[9266] = "2681-05-02T14:28:26" +ik[9266] = 3.722 +il[9266] = -101 +im[9266] = 0.0501 +ij[9266] = 27.2 +id[9267] = "2681-05-25T02:12:41" +ik[9267] = 12 +il[9267] = -56 +im[9267] = 0.0268 +ij[9267] = 18 +id[9268] = "2681-08-28T19:09:19" +ik[9268] = 1.12 +il[9268] = -114 +im[9268] = 0.0533 +ij[9268] = 12 +id[9269] = "2681-10-09T20:16:47" +ik[9269] = 25.696 +il[9269] = 124 +im[9269] = 0.0584 +ij[9269] = 16 +id[9270] = "2682-01-20T20:20:32" +ik[9270] = 4.576 +il[9270] = 34 +im[9270] = 0.0625 +ij[9270] = 27.4 +id[9271] = "2682-02-05T01:03:51" +ik[9271] = 5.235 +il[9271] = 107 +im[9271] = 0.0719 +ij[9271] = 27.1 +id[9272] = "2682-02-08T18:09:35" +ik[9272] = 31.909 +il[9272] = -114 +im[9272] = 0.0245 +ij[9272] = 8 +id[9273] = "2682-02-25T04:59:58" +ik[9273] = 23 +il[9273] = -121 +im[9273] = 0.0253 +ij[9273] = 17 +id[9274] = "2682-03-25T21:32:53" +ik[9274] = 0.59 +il[9274] = -98 +im[9274] = 0.0265 +ij[9274] = 28.6 +id[9275] = "2682-05-04T20:35:28" +ik[9275] = 0.199 +il[9275] = -66 +im[9275] = 0.0577 +ij[9275] = 27.3 +id[9276] = "2682-06-03T14:42:25" +ik[9276] = 44.151 +il[9276] = -55 +im[9276] = 0.0326 +ij[9276] = 3 +id[9277] = "2682-06-10T18:11:59" +ik[9277] = 2.267 +il[9277] = -40 +im[9277] = 0.1791 +ij[9277] = 27.5 +id[9278] = "2682-07-04T00:54:34" +ik[9278] = -2.254 +il[9278] = 82 +im[9278] = 0.0753 +ij[9278] = 2 +id[9279] = "2682-08-21T13:27:07" +ik[9279] = 0 +il[9279] = 1 +im[9279] = 0.3263 +ij[9279] = 13 +id[9280] = "2682-09-22T18:07:06" +ik[9280] = 5.35 +il[9280] = -132 +im[9280] = 0.0896 +ij[9280] = 11 +id[9281] = "2682-10-15T13:41:35" +ik[9281] = 1.992 +il[9281] = -3 +im[9281] = 0.3174 +ij[9281] = 28.2 +id[9282] = "2682-10-22T12:29:42" +ik[9282] = 61.96 +il[9282] = 83 +im[9282] = 0.1555 +ij[9282] = 7.1125 +id[9283] = "2682-12-03T14:12:28" +ik[9283] = 104.03 +il[9283] = 105 +im[9283] = 0.0869 +ij[9283] = 14 +id[9284] = "2682-12-13T20:16:21" +ik[9284] = -2.09 +il[9284] = 112 +im[9284] = 0.0551 +ij[9284] = 4 +id[9285] = "2682-12-15T17:54:17" +ik[9285] = -26.212 +il[9285] = 166 +im[9285] = 0.0275 +ij[9285] = 15 +id[9286] = "2683-01-06T08:30:20" +ik[9286] = 41.543 +il[9286] = 153 +im[9286] = 0.1392 +ij[9286] = 1 +id[9287] = "2683-01-26T06:56:17" +ik[9287] = 1.319 +il[9287] = 6 +im[9287] = 0.0381 +ij[9287] = 27.6 +id[9288] = "2683-04-10T07:15:01" +ik[9288] = 3.332 +il[9288] = -20 +im[9288] = 0.034 +ij[9288] = 27.2 +id[9289] = "2683-04-13T10:14:55" +ik[9289] = 32.057 +il[9289] = -36 +im[9289] = 0.0715 +ij[9289] = 9 +id[9290] = "2683-04-20T03:24:02" +ik[9290] = 1.473 +il[9290] = 130 +im[9290] = 0.0539 +ij[9290] = 28.5 +id[9291] = "2683-05-05T02:52:13" +ik[9291] = 12 +il[9291] = -81 +im[9291] = 0.03 +ij[9291] = 18 +id[9292] = "2683-06-23T01:51:01" +ik[9292] = 0.719 +il[9292] = 41 +im[9292] = 0.041 +ij[9292] = 28.2 +id[9293] = "2683-07-10T11:32:37" +ik[9293] = 1.849 +il[9293] = 64 +im[9293] = 0.0599 +ij[9293] = 28.1 +id[9294] = "2683-09-22T10:26:38" +ik[9294] = 25.842 +il[9294] = 79 +im[9294] = 0.0513 +ij[9294] = 16 +id[9295] = "2683-10-04T03:59:59" +ik[9295] = 0.79 +il[9295] = -71 +im[9295] = 0.0529 +ij[9295] = 12 +id[9296] = "2683-12-03T21:40:12" +ik[9296] = 1.557 +il[9296] = 93 +im[9296] = 0.0523 +ij[9296] = 28.1 +id[9297] = "2683-12-05T08:46:11" +ik[9297] = 0.077 +il[9297] = -59 +im[9297] = 0.0413 +ij[9297] = 28.2 +id[9298] = "2683-12-31T02:08:06" +ik[9298] = 4.294 +il[9298] = -71 +im[9298] = 0.0602 +ij[9298] = 27.4 +id[9299] = "2684-01-14T11:39:46" +ik[9299] = 5.5 +il[9299] = -72 +im[9299] = 0.0672 +ij[9299] = 27.1 +id[9300] = "2684-02-02T22:54:28" +ik[9300] = 0 +il[9300] = -56 +im[9300] = 0.0194 +ij[9300] = 17 +id[9301] = "2684-02-20T05:27:35" +ik[9301] = 2.066 +il[9301] = 9 +im[9301] = 0.012 +ij[9301] = 28.2 +id[9302] = "2684-03-26T23:17:08" +ik[9302] = 34.136 +il[9302] = 79 +im[9302] = 0.0763 +ij[9302] = 8 +id[9303] = "2684-04-04T03:14:08" +ik[9303] = 0.197 +il[9303] = 98 +im[9303] = 0.0397 +ij[9303] = 27.3 +id[9304] = "2684-04-07T09:37:27" +ik[9304] = 0.066 +il[9304] = 33 +im[9304] = 0.0815 +ij[9304] = 28.6 +id[9305] = "2684-05-04T15:31:32" +ik[9305] = 1.082 +il[9305] = -157 +im[9305] = 0.0695 +ij[9305] = 27.5 +id[9306] = "2684-06-02T12:54:02" +ik[9306] = -24.766 +il[9306] = 159 +im[9306] = 0.0758 +ij[9306] = 15 +id[9307] = "2684-07-19T05:22:08" +ik[9307] = 4.384 +il[9307] = 4 +im[9307] = 0.1387 +ij[9307] = 27.6 +id[9308] = "2684-08-01T15:24:20" +ik[9308] = 47.317 +il[9308] = -16 +im[9308] = 0.1398 +ij[9308] = 3 +id[9309] = "2684-08-29T08:49:15" +ik[9309] = -2.333 +il[9309] = -5 +im[9309] = 0.1473 +ij[9309] = 2 +id[9310] = "2684-10-22T14:12:58" +ik[9310] = 0 +il[9310] = 86 +im[9310] = 0.1484 +ij[9310] = 13 +id[9311] = "2684-11-14T14:27:03" +ik[9311] = 0.019 +il[9311] = -58 +im[9311] = 0.0858 +ij[9311] = 28.2 +id[9312] = "2684-11-27T22:11:33" +ik[9312] = 0.89 +il[9312] = -60 +im[9312] = 0.0753 +ij[9312] = 11 +id[9313] = "2684-12-30T22:25:44" +ik[9313] = 69.34 +il[9313] = 84 +im[9313] = 0.2166 +ij[9313] = 7.1352 +id[9314] = "2685-02-22T07:12:22" +ik[9314] = -1.717 +il[9314] = 90 +im[9314] = 0.0849 +ij[9314] = 4 +id[9315] = "2685-02-23T23:39:35" +ik[9315] = 124.39 +il[9315] = -141 +im[9315] = 0.1153 +ij[9315] = 14 +id[9316] = "2685-03-05T08:50:21" +ik[9316] = 38.116 +il[9316] = 169 +im[9316] = 0.0173 +ij[9316] = 1 +id[9317] = "2685-03-08T23:14:01" +ik[9317] = 2.557 +il[9317] = -13 +im[9317] = 0.0757 +ij[9317] = 27.2 +id[9318] = "2685-04-10T04:11:12" +ik[9318] = 12 +il[9318] = -144 +im[9318] = 0.0897 +ij[9318] = 18 +id[9319] = "2685-05-20T23:08:42" +ik[9319] = 31.327 +il[9319] = -43 +im[9319] = 0.0742 +ij[9319] = 9 +id[9320] = "2685-06-06T20:27:24" +ik[9320] = 4.555 +il[9320] = 158 +im[9320] = 0.0665 +ij[9320] = 28.2 +id[9321] = "2685-07-13T20:52:46" +ik[9321] = 0.162 +il[9321] = 144 +im[9321] = 0.0326 +ij[9321] = 28.5 +id[9322] = "2685-09-03T21:08:32" +ik[9322] = 25.974 +il[9322] = -81 +im[9322] = 0.0357 +ij[9322] = 16 +id[9323] = "2685-09-05T23:15:11" +ik[9323] = 0.739 +il[9323] = -82 +im[9323] = 0.0119 +ij[9323] = 28.1 +id[9324] = "2685-11-10T09:19:59" +ik[9324] = 0.13 +il[9324] = 51 +im[9324] = 0.0581 +ij[9324] = 12 +id[9325] = "2686-01-13T09:30:08" +ik[9325] = 0 +il[9325] = 133 +im[9325] = 0.0249 +ij[9325] = 17 +id[9326] = "2686-01-21T01:19:55" +ik[9326] = 1.823 +il[9326] = -32 +im[9326] = 0.0609 +ij[9326] = 28.2 +id[9327] = "2686-02-20T18:22:56" +ik[9327] = 3.563 +il[9327] = 3 +im[9327] = 0.0661 +ij[9327] = 28.1 +id[9328] = "2686-03-12T18:50:46" +ik[9328] = 0.273 +il[9328] = -163 +im[9328] = 0.0172 +ij[9328] = 27.3 +id[9329] = "2686-04-11T00:23:06" +ik[9329] = 0.779 +il[9329] = 33 +im[9329] = 0.0117 +ij[9329] = 27.5 +id[9330] = "2686-04-20T23:37:00" +ik[9330] = 0.633 +il[9330] = 140 +im[9330] = 0.074 +ij[9330] = 28.6 +id[9331] = "2686-05-10T10:07:54" +ik[9331] = -25.331 +il[9331] = 169 +im[9331] = 0.0027 +ij[9331] = 15 +id[9332] = "2686-06-07T08:44:41" +ik[9332] = 36.269 +il[9332] = 101 +im[9332] = 0.0203 +ij[9332] = 8 +id[9333] = "2686-06-20T20:37:02" +ik[9333] = 3.437 +il[9333] = 55 +im[9333] = 0.0576 +ij[9333] = 27.6 +id[9334] = "2686-08-25T12:41:37" +ik[9334] = 5.287 +il[9334] = 99 +im[9334] = 0.0968 +ij[9334] = 27.2 +id[9335] = "2686-09-14T11:23:26" +ik[9335] = 11 +il[9335] = -46 +im[9335] = 0.0904 +ij[9335] = 18 +id[9336] = "2686-09-17T09:57:18" +ik[9336] = 43.597 +il[9336] = 1 +im[9336] = 0.0233 +ij[9336] = 3 +id[9337] = "2686-10-02T08:16:23" +ik[9337] = -2.027 +il[9337] = 175 +im[9337] = 0.0181 +ij[9337] = 2 +id[9338] = "2686-12-03T23:40:04" +ik[9338] = 0 +il[9338] = -166 +im[9338] = 0.2074 +ij[9338] = 13 +id[9339] = "2686-12-06T23:19:25" +ik[9339] = 0.162 +il[9339] = -132 +im[9339] = 0.1712 +ij[9339] = 28.2 +id[9340] = "2686-12-28T20:08:19" +ik[9340] = 1.07 +il[9340] = 124 +im[9340] = 0.2088 +ij[9340] = 28.1 +id[9341] = "2687-01-12T00:46:13" +ik[9341] = 3.83 +il[9341] = 179 +im[9341] = 0.2319 +ij[9341] = 11 +id[9342] = "2687-01-28T11:05:42" +ik[9342] = 4.176 +il[9342] = -10 +im[9342] = 0.2173 +ij[9342] = 28.1 +id[9343] = "2687-02-19T22:42:40" +ik[9343] = 77.96 +il[9343] = 24 +im[9343] = 0.1569 +ij[9343] = 7.1643 +id[9344] = "2687-04-16T07:15:04" +ik[9344] = -1.568 +il[9344] = 52 +im[9344] = 0.0879 +ij[9344] = 4 +id[9345] = "2687-04-19T04:10:16" +ik[9345] = 37.019 +il[9345] = 125 +im[9345] = 0.1121 +ij[9345] = 1 +id[9346] = "2687-04-25T15:22:28" +ik[9346] = 142.65 +il[9346] = 19 +im[9346] = 0.0293 +ij[9346] = 14 +id[9347] = "2687-06-26T21:04:41" +ik[9347] = 31.461 +il[9347] = 167 +im[9347] = 0.0648 +ij[9347] = 9 +id[9348] = "2687-08-16T13:47:16" +ik[9348] = 26.103 +il[9348] = 45 +im[9348] = 0.0264 +ij[9348] = 16 +id[9349] = "2687-08-30T21:31:18" +ik[9349] = 5.612 +il[9349] = 68 +im[9349] = 0.0307 +ij[9349] = 28.1 +id[9350] = "2687-09-05T09:02:14" +ik[9350] = 0.999 +il[9350] = -52 +im[9350] = 0.0374 +ij[9350] = 28.8 +id[9351] = "2687-09-24T09:10:03" +ik[9351] = 0.392 +il[9351] = 130 +im[9351] = 0.0622 +ij[9351] = 28.7 +id[9352] = "2687-10-15T04:34:23" +ik[9352] = 0.923 +il[9352] = 41 +im[9352] = 0.0079 +ij[9352] = 28.5 +id[9353] = "2687-12-25T16:19:26" +ik[9353] = 0 +il[9353] = -137 +im[9353] = 0.0147 +ij[9353] = 17 +id[9354] = "2687-12-26T17:01:20" +ik[9354] = 0.7 +il[9354] = -137 +im[9354] = 0.0044 +ij[9354] = 12 +id[9355] = "2688-03-20T03:52:47" +ik[9355] = 0.635 +il[9355] = -41 +im[9355] = 0.0357 +ij[9355] = 27.5 +id[9356] = "2688-04-18T23:20:38" +ik[9356] = -25.62 +il[9356] = -33 +im[9356] = 0.0252 +ij[9356] = 15 +id[9357] = "2688-05-03T08:07:31" +ik[9357] = 1.284 +il[9357] = -25 +im[9357] = 0.0224 +ij[9357] = 28.6 +id[9358] = "2688-05-12T16:33:16" +ik[9358] = 3.639 +il[9358] = -60 +im[9358] = 0.0691 +ij[9358] = 28.1 +id[9359] = "2688-05-28T18:21:49" +ik[9359] = 2.991 +il[9359] = 71 +im[9359] = 0.0632 +ij[9359] = 27.6 +id[9360] = "2688-07-30T17:48:12" +ik[9360] = 4.85 +il[9360] = -22 +im[9360] = 0.01 +ij[9360] = 27.2 +id[9361] = "2688-08-18T20:08:44" +ik[9361] = 11 +il[9361] = 129 +im[9361] = 0.0745 +ij[9361] = 18 +id[9362] = "2688-08-22T10:23:48" +ik[9362] = 34.64 +il[9362] = -49 +im[9362] = 0.0849 +ij[9362] = 8 +id[9363] = "2688-11-01T12:31:31" +ik[9363] = -1.775 +il[9363] = -110 +im[9363] = 0.1012 +ij[9363] = 2 +id[9364] = "2688-11-02T16:45:15" +ik[9364] = 39.286 +il[9364] = -162 +im[9364] = 0.0932 +ij[9364] = 3 +id[9365] = "2688-12-23T11:22:59" +ik[9365] = 20.865 +il[9365] = 50 +im[9365] = 0.0968 +ij[9365] = 16 +id[9366] = "2689-01-06T15:22:57" +ik[9366] = 0 +il[9366] = 127 +im[9366] = 0.1447 +ij[9366] = 13 +id[9367] = "2689-02-16T05:04:00" +ik[9367] = 4.36 +il[9367] = -68 +im[9367] = 0.1642 +ij[9367] = 11 +id[9368] = "2689-03-09T07:04:03" +ik[9368] = 2.407 +il[9368] = -100 +im[9368] = 0.0994 +ij[9368] = 28.2 +id[9369] = "2689-03-29T14:25:33" +ik[9369] = 81.96 +il[9369] = -29 +im[9369] = 0.1693 +ij[9369] = 7.1975 +id[9370] = "2689-05-28T02:57:15" +ik[9370] = 37.628 +il[9370] = -7 +im[9370] = 0.1045 +ij[9370] = 1 +id[9371] = "2689-05-31T04:27:05" +ik[9371] = -1.576 +il[9371] = 0 +im[9371] = 0.0571 +ij[9371] = 4 +id[9372] = "2689-06-05T04:33:23" +ik[9372] = 149.55 +il[9372] = 47 +im[9372] = 0.0525 +ij[9372] = 14 +id[9373] = "2689-08-04T21:33:08" +ik[9373] = 32.445 +il[9373] = 19 +im[9373] = 0.0743 +ij[9373] = 9 +id[9374] = "2689-08-22T16:15:54" +ik[9374] = 1.35 +il[9374] = -89 +im[9374] = 0.0613 +ij[9374] = 28.8 +id[9375] = "2689-09-16T15:46:00" +ik[9375] = 0.683 +il[9375] = 161 +im[9375] = 0.0695 +ij[9375] = 28.7 +id[9376] = "2689-10-26T09:23:31" +ik[9376] = 0.335 +il[9376] = -76 +im[9376] = 0.0435 +ij[9376] = 28.2 +id[9377] = "2689-11-02T00:56:34" +ik[9377] = 3.549 +il[9377] = 115 +im[9377] = 0.0544 +ij[9377] = 27.4 +id[9378] = "2689-11-15T22:29:23" +ik[9378] = 6.199 +il[9378] = -73 +im[9378] = 0.0589 +ij[9378] = 27.1 +id[9379] = "2689-11-16T05:10:51" +ik[9379] = 2.349 +il[9379] = -170 +im[9379] = 0.0573 +ij[9379] = 28.1 +id[9380] = "2689-12-06T00:31:05" +ik[9380] = 0 +il[9380] = 93 +im[9380] = 0.0026 +ij[9380] = 17 +id[9381] = "2690-02-28T00:23:07" +ik[9381] = 1.04 +il[9381] = -135 +im[9381] = 0.0395 +ij[9381] = 12 +id[9382] = "2690-03-30T10:19:26" +ik[9382] = -25.818 +il[9382] = 157 +im[9382] = 0.0249 +ij[9382] = 15 +id[9383] = "2690-07-09T21:40:48" +ik[9383] = 4.556 +il[9383] = -87 +im[9383] = 0.0151 +ij[9383] = 27.2 +id[9384] = "2690-07-29T08:30:38" +ik[9384] = 12 +il[9384] = -59 +im[9384] = 0.0479 +ij[9384] = 18 +id[9385] = "2690-08-18T18:44:17" +ik[9385] = 2.107 +il[9385] = -14 +im[9385] = 0.0607 +ij[9385] = 28.2 +id[9386] = "2690-10-12T05:44:14" +ik[9386] = 32.273 +il[9386] = -11 +im[9386] = 0.0757 +ij[9386] = 8 +id[9387] = "2690-12-04T21:49:46" +ik[9387] = -1.627 +il[9387] = -94 +im[9387] = 0.0581 +ij[9387] = 2 +id[9388] = "2690-12-13T20:53:13" +ik[9388] = 36.809 +il[9388] = 7 +im[9388] = 0.0328 +ij[9388] = 3 +id[9389] = "2691-02-09T04:33:51" +ik[9389] = 0 +il[9389] = 86 +im[9389] = 0.0093 +ij[9389] = 13 +id[9390] = "2691-03-22T05:23:34" +ik[9390] = 3.49 +il[9390] = 86 +im[9390] = 0.0076 +ij[9390] = 11 +id[9391] = "2691-04-09T08:21:24" +ik[9391] = 0.494 +il[9391] = 5 +im[9391] = 0.2093 +ij[9391] = 28.1 +id[9392] = "2691-05-03T03:36:27" +ik[9392] = 82.96 +il[9392] = -66 +im[9392] = 0.0949 +ij[9392] = 7.211 +id[9393] = "2691-07-01T13:17:00" +ik[9393] = 26.292 +il[9393] = 4 +im[9393] = 0.1183 +ij[9393] = 16 +id[9394] = "2691-07-07T07:59:20" +ik[9394] = 148.14 +il[9394] = 140 +im[9394] = 0.0677 +ij[9394] = 14 +id[9395] = "2691-07-07T22:30:17" +ik[9395] = 39.797 +il[9395] = -72 +im[9395] = 0.0554 +ij[9395] = 1 +id[9396] = "2691-07-14T07:28:26" +ik[9396] = -1.718 +il[9396] = -145 +im[9396] = 0.0804 +ij[9396] = 4 +id[9397] = "2691-08-06T08:53:52" +ik[9397] = 1.804 +il[9397] = 58 +im[9397] = 0.0311 +ij[9397] = 28.8 +id[9398] = "2691-09-07T19:08:39" +ik[9398] = 1.09 +il[9398] = -140 +im[9398] = 0.0403 +ij[9398] = 28.7 +id[9399] = "2691-09-23T12:38:01" +ik[9399] = 34.194 +il[9399] = 111 +im[9399] = 0.0721 +ij[9399] = 9 +id[9400] = "2691-10-12T14:02:09" +ik[9400] = 3.184 +il[9400] = -84 +im[9400] = 0.0685 +ij[9400] = 27.4 +id[9401] = "2691-10-17T07:21:58" +ik[9401] = 3.255 +il[9401] = 62 +im[9401] = 0.0054 +ij[9401] = 28.2 +id[9402] = "2691-11-16T17:46:41" +ik[9402] = 0 +il[9402] = -156 +im[9402] = 0.0171 +ij[9402] = 17 +id[9403] = "2692-01-10T18:31:30" +ik[9403] = 0.189 +il[9403] = 13 +im[9403] = 0.0298 +ij[9403] = 27.3 +id[9404] = "2692-01-31T07:15:50" +ik[9404] = 2.945 +il[9404] = 25 +im[9404] = 0.0495 +ij[9404] = 28.1 +id[9405] = "2692-02-08T05:15:50" +ik[9405] = 0.493 +il[9405] = 136 +im[9405] = 0.0375 +ij[9405] = 27.5 +id[9406] = "2692-03-10T01:58:20" +ik[9406] = -25.983 +il[9406] = 136 +im[9406] = 0.0172 +ij[9406] = 15 +id[9407] = "2692-05-10T13:04:01" +ik[9407] = 0.07 +il[9407] = -146 +im[9407] = 0.0241 +ij[9407] = 12 +id[9408] = "2692-07-09T09:58:58" +ik[9408] = 12 +il[9408] = -81 +im[9408] = 0.0454 +ij[9408] = 18 +id[9409] = "2692-11-18T06:04:41" +ik[9409] = 30.933 +il[9409] = -176 +im[9409] = 0.0778 +ij[9409] = 8 +id[9410] = "2692-11-24T17:22:46" +ik[9410] = 25.083 +il[9410] = 77 +im[9410] = 0.0192 +ij[9410] = 16 +id[9411] = "2693-01-10T18:52:19" +ik[9411] = 0.335 +il[9411] = 149 +im[9411] = 0.069 +ij[9411] = 28.8 +id[9412] = "2693-01-12T11:29:20" +ik[9412] = -1.579 +il[9412] = -84 +im[9412] = 0.092 +ij[9412] = 2 +id[9413] = "2693-01-21T04:19:20" +ik[9413] = 36.182 +il[9413] = 107 +im[9413] = 0.0036 +ij[9413] = 3 +id[9414] = "2693-03-16T18:58:12" +ik[9414] = 2.535 +il[9414] = 50 +im[9414] = 0.0485 +ij[9414] = 28.7 +id[9415] = "2693-03-19T07:59:48" +ik[9415] = 0 +il[9415] = -120 +im[9415] = 0.0642 +ij[9415] = 13 +id[9416] = "2693-03-21T13:12:48" +ik[9416] = 2.057 +il[9416] = -177 +im[9416] = 0.1469 +ij[9416] = 28.2 +id[9417] = "2693-04-27T00:18:41" +ik[9417] = 1.29 +il[9417] = -18 +im[9417] = 0.0282 +ij[9417] = 11 +id[9418] = "2693-05-19T10:45:50" +ik[9418] = 0.968 +il[9418] = -172 +im[9418] = 0.1997 +ij[9418] = 28.8 +id[9419] = "2693-06-06T07:02:24" +ik[9419] = 78.96 +il[9419] = 57 +im[9419] = 0.0351 +ij[9419] = 7.1815 +id[9420] = "2693-06-29T06:31:14" +ik[9420] = 2.301 +il[9420] = -72 +im[9420] = 0.1675 +ij[9420] = 28.8 +id[9421] = "2693-08-04T16:33:10" +ik[9421] = 138.36 +il[9421] = 132 +im[9421] = 0.0899 +ij[9421] = 14 +id[9422] = "2693-08-18T16:21:47" +ik[9422] = -1.983 +il[9422] = -88 +im[9422] = 0.0711 +ij[9422] = 4 +id[9423] = "2693-08-21T05:14:12" +ik[9423] = 43.385 +il[9423] = 103 +im[9423] = 0.1129 +ij[9423] = 1 +id[9424] = "2693-08-23T06:17:42" +ik[9424] = 1.793 +il[9424] = 107 +im[9424] = 0.1222 +ij[9424] = 28.7 +id[9425] = "2693-09-17T02:00:42" +ik[9425] = 2.542 +il[9425] = 54 +im[9425] = 0.0731 +ij[9425] = 27.4 +id[9426] = "2693-10-25T13:27:59" +ik[9426] = 0 +il[9426] = -100 +im[9426] = 0.0132 +ij[9426] = 17 +id[9427] = "2693-11-28T15:55:21" +ik[9427] = 35.565 +il[9427] = -161 +im[9427] = 0.0756 +ij[9427] = 9 +id[9428] = "2693-12-19T12:33:11" +ik[9428] = 0.055 +il[9428] = 95 +im[9428] = 0.0567 +ij[9428] = 27.3 +id[9429] = "2694-01-17T08:17:24" +ik[9429] = 0.467 +il[9429] = 82 +im[9429] = 0.055 +ij[9429] = 27.5 +id[9430] = "2694-02-18T05:43:17" +ik[9430] = -26.141 +il[9430] = 71 +im[9430] = 0.0148 +ij[9430] = 15 +id[9431] = "2694-03-28T15:47:16" +ik[9431] = 2.194 +il[9431] = -70 +im[9431] = 0.0658 +ij[9431] = 27.6 +id[9432] = "2694-04-19T02:46:10" +ik[9432] = 1.764 +il[9432] = -25 +im[9432] = 0.009 +ij[9432] = 28.1 +id[9433] = "2694-06-21T00:24:39" +ik[9433] = 12 +il[9433] = -107 +im[9433] = 0.0525 +ij[9433] = 18 +id[9434] = "2694-07-04T04:43:34" +ik[9434] = 0.83 +il[9434] = -40 +im[9434] = 0.05 +ij[9434] = 12 +id[9435] = "2694-09-20T23:23:47" +ik[9435] = 3.824 +il[9435] = -86 +im[9435] = 0.0332 +ij[9435] = 28.1 +id[9436] = "2694-11-04T21:08:42" +ik[9436] = 25.42 +il[9436] = 21 +im[9436] = 0.0227 +ij[9436] = 16 +id[9437] = "2694-12-21T15:44:52" +ik[9437] = 0.333 +il[9437] = -167 +im[9437] = 0.0488 +ij[9437] = 28.8 +id[9438] = "2694-12-22T01:42:54" +ik[9438] = 30.629 +il[9438] = 48 +im[9438] = 0.054 +ij[9438] = 8 +id[9439] = "2695-02-01T23:07:07" +ik[9439] = 0.836 +il[9439] = 128 +im[9439] = 0.0363 +ij[9439] = 28.7 +id[9440] = "2695-03-03T14:36:14" +ik[9440] = 5.169 +il[9440] = 178 +im[9440] = 0.0757 +ij[9440] = 27.4 +id[9441] = "2695-03-06T12:14:15" +ik[9441] = 37.526 +il[9441] = -119 +im[9441] = 0.1155 +ij[9441] = 3 +id[9442] = "2695-03-08T16:04:01" +ik[9442] = -1.661 +il[9442] = -156 +im[9442] = 0.1117 +ij[9442] = 2 +id[9443] = "2695-03-26T08:44:45" +ik[9443] = 4.797 +il[9443] = 122 +im[9443] = 0.0762 +ij[9443] = 27.1 +id[9444] = "2695-05-10T16:33:38" +ik[9444] = 0 +il[9444] = 66 +im[9444] = 0.0896 +ij[9444] = 13 +id[9445] = "2695-06-12T16:24:01" +ik[9445] = 2.39 +il[9445] = 10 +im[9445] = 0.3073 +ij[9445] = 11 +id[9446] = "2695-07-09T08:16:48" +ik[9446] = 3.712 +il[9446] = -164 +im[9446] = 0.3005 +ij[9446] = 28.2 +id[9447] = "2695-07-19T21:42:15" +ik[9447] = 70.21 +il[9447] = 98 +im[9447] = 0.227 +ij[9447] = 7.1241 +id[9448] = "2695-07-20T09:07:38" +ik[9448] = 4.267 +il[9448] = -69 +im[9448] = 0.2394 +ij[9448] = 27.4 +id[9449] = "2695-09-07T18:51:06" +ik[9449] = 120.1 +il[9449] = -91 +im[9449] = 0.0691 +ij[9449] = 14 +id[9450] = "2695-09-18T21:23:09" +ik[9450] = -2.302 +il[9450] = -20 +im[9450] = 0.128 +ij[9450] = 4 +id[9451] = "2695-09-27T03:28:06" +ik[9451] = 0 +il[9451] = -30 +im[9451] = 0.1287 +ij[9451] = 17 +id[9452] = "2695-10-08T08:40:16" +ik[9452] = 46.334 +il[9452] = 3 +im[9452] = 0.0189 +ij[9452] = 1 +id[9453] = "2695-11-24T00:40:52" +ik[9453] = 0.324 +il[9453] = -138 +im[9453] = 0.0905 +ij[9453] = 27.3 +id[9454] = "2695-12-24T10:32:03" +ik[9454] = 0.529 +il[9454] = 12 +im[9454] = 0.0914 +ij[9454] = 27.5 +id[9455] = "2696-01-27T15:24:09" +ik[9455] = -26.307 +il[9455] = -90 +im[9455] = 0.056 +ij[9455] = 15 +id[9456] = "2696-02-05T15:28:14" +ik[9456] = 34.415 +il[9456] = -5 +im[9456] = 0.084 +ij[9456] = 9 +id[9457] = "2696-03-06T09:13:17" +ik[9457] = 1.91 +il[9457] = 13 +im[9457] = 0.0785 +ij[9457] = 27.6 +id[9458] = "2696-04-16T08:32:08" +ik[9458] = 0.585 +il[9458] = 58 +im[9458] = 0.0446 +ij[9458] = 28.2 +id[9459] = "2696-05-10T14:46:20" +ik[9459] = 3.838 +il[9459] = -168 +im[9459] = 0.0152 +ij[9459] = 27.2 +id[9460] = "2696-06-01T12:43:37" +ik[9460] = 12 +il[9460] = 76 +im[9460] = 0.062 +ij[9460] = 18 +id[9461] = "2696-08-14T03:43:08" +ik[9461] = 1.14 +il[9461] = -168 +im[9461] = 0.0507 +ij[9461] = 12 +id[9462] = "2696-10-16T18:04:31" +ik[9462] = 25.631 +il[9462] = 80 +im[9462] = 0.0063 +ij[9462] = 16 +id[9463] = "2696-12-06T18:43:32" +ik[9463] = 0.748 +il[9463] = -155 +im[9463] = 0.0632 +ij[9463] = 28.8 +id[9464] = "2696-12-17T01:15:53" +ik[9464] = 1.144 +il[9464] = -155 +im[9464] = 0.0504 +ij[9464] = 28.2 +id[9465] = "2697-01-19T12:13:02" +ik[9465] = 0.381 +il[9465] = 0 +im[9465] = 0.0662 +ij[9465] = 28.7 +id[9466] = "2697-01-24T19:43:20" +ik[9466] = 31.338 +il[9466] = -63 +im[9466] = 0.0102 +ij[9466] = 8 +id[9467] = "2697-01-29T23:52:18" +ik[9467] = 4.709 +il[9467] = -76 +im[9467] = 0.0768 +ij[9467] = 27.4 +id[9468] = "2697-02-14T19:37:49" +ik[9468] = 5.113 +il[9468] = 138 +im[9468] = 0.0807 +ij[9468] = 27.1 +id[9469] = "2697-03-07T19:39:56" +ik[9469] = 23 +il[9469] = -24 +im[9469] = 0.0345 +ij[9469] = 17 +id[9470] = "2697-05-05T04:38:12" +ik[9470] = 41.682 +il[9470] = 34 +im[9470] = 0.012 +ij[9470] = 3 +id[9471] = "2697-05-25T06:58:32" +ik[9471] = 0.894 +il[9471] = -171 +im[9471] = 0.1875 +ij[9471] = 27.3 +id[9472] = "2697-05-30T10:39:36" +ik[9472] = -2.032 +il[9472] = -178 +im[9472] = 0.1338 +ij[9472] = 2 +id[9473] = "2697-07-21T18:51:36" +ik[9473] = 0 +il[9473] = -162 +im[9473] = 0.3409 +ij[9473] = 13 +id[9474] = "2697-08-20T20:08:01" +ik[9474] = 6.61 +il[9474] = 91 +im[9474] = 0.2883 +ij[9474] = 11 +id[9475] = "2697-09-21T17:54:11" +ik[9475] = 61.96 +il[9475] = -89 +im[9475] = 0.1198 +ij[9475] = 7.1017 +id[9476] = "2697-11-02T00:02:57" +ik[9476] = 103.22 +il[9476] = -136 +im[9476] = 0.0926 +ij[9476] = 14 +id[9477] = "2697-11-12T05:58:43" +ik[9477] = -2.27 +il[9477] = -125 +im[9477] = 0.1331 +ij[9477] = 4 +id[9478] = "2697-11-13T12:14:01" +ik[9478] = 1.451 +il[9478] = 153 +im[9478] = 0.0829 +ij[9478] = 27.5 +id[9479] = "2697-12-09T01:11:16" +ik[9479] = 43.556 +il[9479] = -154 +im[9479] = 0.1428 +ij[9479] = 1 +id[9480] = "2697-12-30T07:35:56" +ik[9480] = -26.415 +il[9480] = -45 +im[9480] = 0.0802 +ij[9480] = 15 +id[9481] = "2698-02-08T20:21:21" +ik[9481] = 1.519 +il[9481] = 150 +im[9481] = 0.0081 +ij[9481] = 27.6 +id[9482] = "2698-03-27T20:23:47" +ik[9482] = 32.591 +il[9482] = -127 +im[9482] = 0.0551 +ij[9482] = 9 +id[9483] = "2698-03-29T10:20:40" +ik[9483] = 6.275 +il[9483] = 39 +im[9483] = 0.0697 +ij[9483] = 28.2 +id[9484] = "2698-04-19T12:30:55" +ik[9484] = 3.507 +il[9484] = -155 +im[9484] = 0.0357 +ij[9484] = 27.2 +id[9485] = "2698-05-13T05:00:04" +ik[9485] = 12 +il[9485] = -179 +im[9485] = 0.0692 +ij[9485] = 18 +id[9486] = "2698-06-10T15:00:32" +ik[9486] = 5.329 +il[9486] = -57 +im[9486] = 0.0644 +ij[9486] = 28.1 +id[9487] = "2698-07-15T11:03:35" +ik[9487] = 0.444 +il[9487] = -23 +im[9487] = 0.022 +ij[9487] = 28.6 +id[9488] = "2698-09-20T01:52:55" +ik[9488] = 0.96 +il[9488] = 44 +im[9488] = 0.0524 +ij[9488] = 12 +id[9489] = "2698-09-29T06:10:17" +ik[9489] = 25.789 +il[9489] = -96 +im[9489] = 0.0341 +ij[9489] = 16 +id[9490] = "2698-11-24T21:01:11" +ik[9490] = 1.076 +il[9490] = -119 +im[9490] = 0.0254 +ij[9490] = 28.8 +id[9491] = "2699-01-07T22:36:54" +ik[9491] = 4.396 +il[9491] = -81 +im[9491] = 0.0346 +ij[9491] = 27.4 +id[9492] = "2699-01-11T03:16:37" +ik[9492] = 0.074 +il[9492] = -126 +im[9492] = 0.0626 +ij[9492] = 28.7 +id[9493] = "2699-01-22T13:46:52" +ik[9493] = 5.405 +il[9493] = -171 +im[9493] = 0.0402 +ij[9493] = 27.1 +id[9494] = "2699-02-11T04:41:25" +ik[9494] = 0 +il[9494] = 152 +im[9494] = 0.0708 +ij[9494] = 17 +id[9495] = "2699-03-07T12:50:27" +ik[9495] = 33.142 +il[9495] = -100 +im[9495] = 0.0595 +ij[9495] = 8 +id[9496] = "2699-04-15T06:24:23" +ik[9496] = 0.115 +il[9496] = 3 +im[9496] = 0.0274 +ij[9496] = 27.3 +id[9497] = "2699-05-16T22:00:32" +ik[9497] = 1.327 +il[9497] = 69 +im[9497] = 0.0345 +ij[9497] = 27.5 +id[9498] = "2699-06-14T10:05:40" +ik[9498] = -24.317 +il[9498] = 160 +im[9498] = 0.0317 +ij[9498] = 15 +id[9499] = "2699-07-14T01:15:10" +ik[9499] = 47.1 +il[9499] = -142 +im[9499] = 0.0646 +ij[9499] = 3 +id[9500] = "2699-08-07T17:36:17" +ik[9500] = 5.262 +il[9500] = -147 +im[9500] = 0.0926 +ij[9500] = 27.6 +id[9501] = "2699-08-12T20:54:45" +ik[9501] = -2.395 +il[9501] = -147 +im[9501] = 0.1278 +ij[9501] = 2 +id[9502] = "2699-09-30T03:11:28" +ik[9502] = 3.909 +il[9502] = -128 +im[9502] = 0.2626 +ij[9502] = 28.2 +id[9503] = "2699-10-02T00:03:28" +ik[9503] = 0 +il[9503] = -63 +im[9503] = 0.1747 +ij[9503] = 13 +id[9504] = "2699-11-06T06:34:42" +ik[9504] = 0.98 +il[9504] = 168 +im[9504] = 0.3225 +ij[9504] = 11 +id[9505] = "2699-12-05T04:52:51" +ik[9505] = 3.177 +il[9505] = -56 +im[9505] = 0.2361 +ij[9505] = 28.2 +id[9506] = "2699-12-06T23:06:03" +ik[9506] = 65.96 +il[9506] = 47 +im[9506] = 0.1697 +ij[9506] = 7.1268 +id[9507] = "2699-12-09T00:25:43" +ik[9507] = 3.992 +il[9507] = 47 +im[9507] = 0.0615 +ij[9507] = 27.6 +id[9508] = "2700-01-25T03:46:49" +ik[9508] = 115.16 +il[9508] = 84 +im[9508] = 0.1038 +ij[9508] = 14 +id[9509] = "2700-01-29T06:10:18" +ik[9509] = -1.833 +il[9509] = 86 +im[9509] = 0.1343 +ij[9509] = 4 +id[9510] = "2700-02-13T17:39:15" +ik[9510] = 39.132 +il[9510] = 60 +im[9510] = 0.1236 +ij[9510] = 1 +id[9511] = "2700-03-24T12:26:22" +ik[9511] = 2.95 +il[9511] = 144 +im[9511] = 0.0848 +ij[9511] = 27.2 +id[9512] = "2700-04-21T09:40:55" +ik[9512] = 12 +il[9512] = 88 +im[9512] = 0.0685 +ij[9512] = 18 +id[9513] = "2700-05-07T10:43:20" +ik[9513] = 31.508 +il[9513] = -136 +im[9513] = 0.0771 +ij[9513] = 9 +id[9514] = "2700-08-03T08:48:09" +ik[9514] = 0.427 +il[9514] = 6 +im[9514] = 0.0565 +ij[9514] = 28.6 +id[9515] = "2700-08-12T00:26:25" +ik[9515] = 0.699 +il[9515] = -145 +im[9515] = 0.0378 +ij[9515] = 28.1 +id[9516] = "2700-09-11T19:41:06" +ik[9516] = 25.925 +il[9516] = -133 +im[9516] = 0.0531 +ij[9516] = 16 +id[9517] = "2700-10-26T23:34:15" +ik[9517] = 0.42 +il[9517] = -99 +im[9517] = 0.0543 +ij[9517] = 12 +id[9518] = "2701-01-02T09:08:22" +ik[9518] = 0.538 +il[9518] = -122 +im[9518] = 0.0343 +ij[9518] = 28.5 +id[9519] = "2701-01-02T12:22:22" +ik[9519] = 5.641 +il[9519] = -167 +im[9519] = 0.0358 +ij[9519] = 27.1 +id[9520] = "2701-01-04T05:55:12" +ik[9520] = 0.16 +il[9520] = -53 +im[9520] = 0.0522 +ij[9520] = 28.7 +id[9521] = "2701-01-19T18:15:45" +ik[9521] = 3.329 +il[9521] = -87 +im[9521] = 0.0547 +ij[9521] = 28.1 +id[9522] = "2701-01-21T21:55:11" +ik[9522] = 0 +il[9522] = -121 +im[9522] = 0.0604 +ij[9522] = 17 +id[9523] = "2701-03-22T04:22:03" +ik[9523] = 0.256 +il[9523] = -10 +im[9523] = 0.0652 +ij[9523] = 27.3 +id[9524] = "2701-04-20T18:27:12" +ik[9524] = 0.867 +il[9524] = 61 +im[9524] = 0.068 +ij[9524] = 27.5 +id[9525] = "2701-05-07T09:44:13" +ik[9525] = 35.711 +il[9525] = -9 +im[9525] = 0.0566 +ij[9525] = 8 +id[9526] = "2701-05-20T00:22:26" +ik[9526] = -25.165 +il[9526] = -108 +im[9526] = 0.0744 +ij[9526] = 15 +id[9527] = "2701-07-01T16:09:44" +ik[9527] = 3.704 +il[9527] = 69 +im[9527] = 0.0948 +ij[9527] = 27.6 +id[9528] = "2701-08-30T16:19:12" +ik[9528] = 45.446 +il[9528] = -64 +im[9528] = 0.0724 +ij[9528] = 3 +id[9529] = "2701-09-08T16:44:59" +ik[9529] = 5.528 +il[9529] = 18 +im[9529] = 0.1409 +ij[9529] = 27.2 +id[9530] = "2701-09-21T01:19:39" +ik[9530] = -2.15 +il[9530] = 10 +im[9530] = 0.0984 +ij[9530] = 2 +id[9531] = "2701-10-01T11:29:26" +ik[9531] = 11 +il[9531] = -40 +im[9531] = 0.0277 +ij[9531] = 18 +id[9532] = "2701-11-20T03:47:18" +ik[9532] = 0 +il[9532] = -160 +im[9532] = 0.2085 +ij[9532] = 13 +id[9533] = "2701-12-12T02:12:11" +ik[9533] = 3.42 +il[9533] = 77 +im[9533] = 0.1351 +ij[9533] = 28.1 +id[9534] = "2701-12-20T01:10:44" +ik[9534] = 12 +il[9534] = 159 +im[9534] = 0.1402 +ij[9534] = 17 +id[9535] = "2701-12-28T02:02:42" +ik[9535] = 3.08 +il[9535] = -147 +im[9535] = 0.2628 +ij[9535] = 11 +id[9536] = "2702-01-13T07:22:33" +ik[9536] = 3.08 +il[9536] = 112 +im[9536] = 0.2139 +ij[9536] = 28.1 +id[9537] = "2702-01-13T18:02:00" +ik[9537] = 2.991 +il[9537] = -44 +im[9537] = 0.2025 +ij[9537] = 28.2 +id[9538] = "2702-02-03T03:52:55" +ik[9538] = 75 +il[9538] = -10 +im[9538] = 0.0832 +ij[9538] = 7.1516 +id[9539] = "2702-03-20T05:54:03" +ik[9539] = 12 +il[9539] = 24 +im[9539] = 0.1288 +ij[9539] = 18 +id[9540] = "2702-03-29T00:34:20" +ik[9540] = -1.605 +il[9540] = -173 +im[9540] = 0.0151 +ij[9540] = 4 +id[9541] = "2702-04-03T17:16:13" +ik[9541] = 37.223 +il[9541] = -10 +im[9541] = 0.1022 +ij[9541] = 1 +id[9542] = "2702-04-05T21:42:43" +ik[9542] = 136.75 +il[9542] = -56 +im[9542] = 0.0997 +ij[9542] = 14 +id[9543] = "2702-06-13T10:30:53" +ik[9543] = 31.315 +il[9543] = 42 +im[9543] = 0.0765 +ij[9543] = 9 +id[9544] = "2702-08-23T10:24:38" +ik[9544] = 1.324 +il[9544] = 6 +im[9544] = 0.0547 +ij[9544] = 28.6 +id[9545] = "2702-08-23T17:44:21" +ik[9545] = 0.304 +il[9545] = -101 +im[9545] = 0.0563 +ij[9545] = 28.2 +id[9546] = "2702-08-24T21:30:53" +ik[9546] = 26.054 +il[9546] = -147 +im[9546] = 0.0596 +ij[9546] = 16 +id[9547] = "2702-12-08T03:21:49" +ik[9547] = 0.38 +il[9547] = 89 +im[9547] = 0.0397 +ij[9547] = 12 +id[9548] = "2703-01-03T00:15:22" +ik[9548] = 0 +il[9548] = -156 +im[9548] = 0.0586 +ij[9548] = 17 +id[9549] = "2703-02-10T10:16:12" +ik[9549] = 1.202 +il[9549] = 58 +im[9549] = 0.0439 +ij[9549] = 28.2 +id[9550] = "2703-03-01T08:03:49" +ik[9550] = 0.283 +il[9550] = -86 +im[9550] = 0.0623 +ij[9550] = 27.3 +id[9551] = "2703-03-12T01:43:59" +ik[9551] = 0.054 +il[9551] = 113 +im[9551] = 0.0522 +ij[9551] = 28.5 +id[9552] = "2703-03-30T04:35:48" +ik[9552] = 0.681 +il[9552] = -109 +im[9552] = 0.0645 +ij[9552] = 27.5 +id[9553] = "2703-04-12T02:33:57" +ik[9553] = 2.808 +il[9553] = 46 +im[9553] = 0.0689 +ij[9553] = 28.1 +id[9554] = "2703-04-28T20:17:17" +ik[9554] = -25.524 +il[9554] = -58 +im[9554] = 0.0661 +ij[9554] = 15 +id[9555] = "2703-05-29T12:59:40" +ik[9555] = 1.018 +il[9555] = -9 +im[9555] = 0.0589 +ij[9555] = 28.2 +id[9556] = "2703-06-08T02:41:32" +ik[9556] = 3.138 +il[9556] = -121 +im[9556] = 0.0678 +ij[9556] = 27.6 +id[9557] = "2703-07-28T17:30:26" +ik[9557] = 35.63 +il[9557] = 154 +im[9557] = 0.0384 +ij[9557] = 8 +id[9558] = "2703-08-10T16:11:54" +ik[9558] = 4.995 +il[9558] = -60 +im[9558] = 0.0715 +ij[9558] = 27.2 +id[9559] = "2703-08-29T19:24:37" +ik[9559] = 11 +il[9559] = 80 +im[9559] = 0.0179 +ij[9559] = 18 +id[9560] = "2703-10-17T23:51:12" +ik[9560] = 40.787 +il[9560] = 132 +im[9560] = 0.1159 +ij[9560] = 3 +id[9561] = "2703-10-22T07:26:47" +ik[9561] = -1.862 +il[9561] = 60 +im[9561] = 0.0733 +ij[9561] = 2 +id[9562] = "2703-12-26T21:43:12" +ik[9562] = 0 +il[9562] = 122 +im[9562] = 0.1787 +ij[9562] = 13 +id[9563] = "2704-02-04T16:50:42" +ik[9563] = 4.35 +il[9563] = -162 +im[9563] = 0.2295 +ij[9563] = 11 +id[9564] = "2704-03-16T03:55:05" +ik[9564] = 80.26 +il[9564] = -150 +im[9564] = 0.1726 +ij[9564] = 7.1853 +id[9565] = "2704-05-13T18:15:07" +ik[9565] = 37.203 +il[9565] = -169 +im[9565] = 0.0918 +ij[9565] = 1 +id[9566] = "2704-05-14T16:23:41" +ik[9566] = -1.556 +il[9566] = -133 +im[9566] = 0.0784 +ij[9566] = 4 +id[9567] = "2704-05-22T14:51:56" +ik[9567] = 147.71 +il[9567] = -34 +im[9567] = 0.0856 +ij[9567] = 14 +id[9568] = "2704-07-20T14:59:20" +ik[9568] = 31.958 +il[9568] = 173 +im[9568] = 0.0793 +ij[9568] = 9 +id[9569] = "2704-08-04T15:51:41" +ik[9569] = 26.185 +il[9569] = -55 +im[9569] = 0.0688 +ij[9569] = 16 +id[9570] = "2704-08-07T21:14:19" +ik[9570] = 4.245 +il[9570] = -104 +im[9570] = 0.0521 +ij[9570] = 28.2 +id[9571] = "2704-09-11T23:31:12" +ik[9571] = 2.102 +il[9571] = -158 +im[9571] = 0.04 +ij[9571] = 28.6 +id[9572] = "2704-10-16T14:50:43" +ik[9572] = 3.364 +il[9572] = -51 +im[9572] = 0.0651 +ij[9572] = 28.1 +id[9573] = "2704-10-20T19:11:40" +ik[9573] = 1.96 +il[9573] = -76 +im[9573] = 0.0322 +ij[9573] = 28.8 +id[9574] = "2704-11-10T15:41:17" +ik[9574] = 3.661 +il[9574] = 180 +im[9574] = 0.0545 +ij[9574] = 27.4 +id[9575] = "2704-12-14T09:44:03" +ik[9575] = 0 +il[9575] = -113 +im[9575] = 0.0591 +ij[9575] = 17 +id[9576] = "2705-02-01T07:05:49" +ik[9576] = 1.05 +il[9576] = 53 +im[9576] = 0.0056 +ij[9576] = 12 +id[9577] = "2705-04-08T01:53:05" +ik[9577] = -25.747 +il[9577] = -149 +im[9577] = 0.0627 +ij[9577] = 15 +id[9578] = "2705-04-21T07:56:49" +ik[9578] = 1.492 +il[9578] = -111 +im[9578] = 0.0649 +ij[9578] = 28.2 +id[9579] = "2705-05-07T20:59:18" +ik[9579] = 0.483 +il[9579] = -134 +im[9579] = 0.0611 +ij[9579] = 28.5 +id[9580] = "2705-05-17T07:32:21" +ik[9580] = 2.798 +il[9580] = 161 +im[9580] = 0.0486 +ij[9580] = 27.6 +id[9581] = "2705-07-01T18:47:03" +ik[9581] = 6.311 +il[9581] = 79 +im[9581] = 0.0591 +ij[9581] = 28.1 +id[9582] = "2705-07-18T20:29:33" +ik[9582] = 4.661 +il[9582] = -139 +im[9582] = 0.0714 +ij[9582] = 27.2 +id[9583] = "2705-08-07T03:00:26" +ik[9583] = 12 +il[9583] = -49 +im[9583] = 0.016 +ij[9583] = 18 +id[9584] = "2705-09-25T17:04:13" +ik[9584] = 33.095 +il[9584] = -138 +im[9584] = 0.067 +ij[9584] = 8 +id[9585] = "2705-11-22T11:43:42" +ik[9585] = -1.673 +il[9585] = 141 +im[9585] = 0.095 +ij[9585] = 2 +id[9586] = "2705-11-29T09:52:07" +ik[9586] = 37.551 +il[9586] = -124 +im[9586] = 0.0301 +ij[9586] = 3 +id[9587] = "2706-01-27T14:52:24" +ik[9587] = 0 +il[9587] = 14 +im[9587] = 0.0671 +ij[9587] = 13 +id[9588] = "2706-01-31T08:55:13" +ik[9588] = 1.765 +il[9588] = 139 +im[9588] = 0.1678 +ij[9588] = 28.2 +id[9589] = "2706-03-09T23:08:29" +ik[9589] = 3.97 +il[9589] = -93 +im[9589] = 0.1313 +ij[9589] = 11 +id[9590] = "2706-04-20T15:31:10" +ik[9590] = 83.03 +il[9590] = -161 +im[9590] = 0.1522 +ij[9590] = 7.21 +id[9591] = "2706-06-22T15:55:09" +ik[9591] = 38.759 +il[9591] = 82 +im[9591] = 0.0636 +ij[9591] = 1 +id[9592] = "2706-06-26T12:23:59" +ik[9592] = 149.9 +il[9592] = 172 +im[9592] = 0.028 +ij[9592] = 14 +id[9593] = "2706-06-28T09:28:36" +ik[9593] = -1.647 +il[9593] = -126 +im[9593] = 0.0672 +ij[9593] = 4 +id[9594] = "2706-07-13T04:10:39" +ik[9594] = 26.299 +il[9594] = 97 +im[9594] = 0.0753 +ij[9594] = 16 +id[9595] = "2706-09-03T11:30:26" +ik[9595] = 33.44 +il[9595] = 135 +im[9595] = 0.0187 +ij[9595] = 9 +id[9596] = "2706-10-01T23:02:36" +ik[9596] = 2.595 +il[9596] = -121 +im[9596] = 0.0234 +ij[9596] = 28.6 +id[9597] = "2706-10-07T20:00:16" +ik[9597] = 2.329 +il[9597] = -18 +im[9597] = 0.0579 +ij[9597] = 28.8 +id[9598] = "2706-10-21T20:36:53" +ik[9598] = 3.345 +il[9598] = 110 +im[9598] = 0.0626 +ij[9598] = 27.4 +id[9599] = "2706-11-04T20:59:56" +ik[9599] = 6.388 +il[9599] = -119 +im[9599] = 0.0461 +ij[9599] = 27.1 +id[9600] = "2706-11-25T10:29:23" +ik[9600] = 0 +il[9600] = -121 +im[9600] = 0.0597 +ij[9600] = 17 +id[9601] = "2706-12-14T05:45:40" +ik[9601] = 0.641 +il[9601] = 135 +im[9601] = 0.0044 +ij[9601] = 28.7 +id[9602] = "2707-01-01T16:48:42" +ik[9602] = 2.41 +il[9602] = 150 +im[9602] = 0.0418 +ij[9602] = 28.1 +id[9603] = "2707-01-19T16:47:02" +ik[9603] = 0.221 +il[9603] = -32 +im[9603] = 0.068 +ij[9603] = 27.3 +id[9604] = "2707-03-19T17:14:02" +ik[9604] = -25.922 +il[9604] = -167 +im[9604] = 0.0642 +ij[9604] = 15 +id[9605] = "2707-04-15T19:18:16" +ik[9605] = 0.54 +il[9605] = 77 +im[9605] = 0.0606 +ij[9605] = 12 +id[9606] = "2707-07-10T06:26:00" +ik[9606] = 0.522 +il[9606] = -179 +im[9606] = 0.0501 +ij[9606] = 28.5 +id[9607] = "2707-07-18T18:15:33" +ik[9607] = 12 +il[9607] = 90 +im[9607] = 0.0164 +ij[9607] = 18 +id[9608] = "2707-11-06T07:34:53" +ik[9608] = 31.33 +il[9608] = -120 +im[9608] = 0.0664 +ij[9608] = 8 +id[9609] = "2707-12-28T22:23:43" +ik[9609] = -1.586 +il[9609] = 167 +im[9609] = 0.0754 +ij[9609] = 2 +id[9610] = "2708-01-07T17:25:09" +ik[9610] = 36.211 +il[9610] = -24 +im[9610] = 0.0167 +ij[9610] = 3 +id[9611] = "2708-03-04T12:24:27" +ik[9611] = 0 +il[9611] = -122 +im[9611] = 0.0614 +ij[9611] = 13 +id[9612] = "2708-04-13T00:49:50" +ik[9612] = 2.32 +il[9612] = 47 +im[9612] = 0.0105 +ij[9612] = 11 +id[9613] = "2708-04-29T04:45:15" +ik[9613] = 2.512 +il[9613] = -75 +im[9613] = 0.1693 +ij[9613] = 28.1 +id[9614] = "2708-05-06T07:26:40" +ik[9614] = 0.012 +il[9614] = -47 +im[9614] = 0.1647 +ij[9614] = 28.2 +id[9615] = "2708-05-24T00:07:22" +ik[9615] = 80.49 +il[9615] = -125 +im[9615] = 0.0665 +ij[9615] = 7.1985 +id[9616] = "2708-06-16T03:25:38" +ik[9616] = 25.835 +il[9616] = 50 +im[9616] = 0.099 +ij[9616] = 16 +id[9617] = "2708-07-25T06:05:12" +ik[9617] = 142.74 +il[9617] = 30 +im[9617] = 0.1323 +ij[9617] = 14 +id[9618] = "2708-08-04T00:47:05" +ik[9618] = 41.857 +il[9618] = -155 +im[9618] = 0.0643 +ij[9618] = 1 +id[9619] = "2708-08-07T03:46:23" +ik[9619] = -1.866 +il[9619] = -170 +im[9619] = 0.1071 +ij[9619] = 4 +id[9620] = "2708-09-21T01:14:55" +ik[9620] = 2.866 +il[9620] = -54 +im[9620] = 0.0985 +ij[9620] = 28.8 +id[9621] = "2708-09-28T13:20:25" +ik[9621] = 2.851 +il[9621] = -162 +im[9621] = 0.0225 +ij[9621] = 27.4 +id[9622] = "2708-10-18T23:12:09" +ik[9622] = 2.659 +il[9622] = -110 +im[9622] = 0.0908 +ij[9622] = 28.6 +id[9623] = "2708-11-01T09:14:53" +ik[9623] = 35.247 +il[9623] = -129 +im[9623] = 0.0824 +ij[9623] = 9 +id[9624] = "2708-11-04T05:47:28" +ik[9624] = 0 +il[9624] = -49 +im[9624] = 0.0729 +ij[9624] = 17 +id[9625] = "2708-12-04T21:10:17" +ik[9625] = 0.776 +il[9625] = 21 +im[9625] = 0.0524 +ij[9625] = 28.7 +id[9626] = "2708-12-29T02:51:45" +ik[9626] = 0.123 +il[9626] = 175 +im[9626] = 0.0747 +ij[9626] = 27.3 +id[9627] = "2709-01-21T22:45:07" +ik[9627] = 0.959 +il[9627] = 111 +im[9627] = 0.0206 +ij[9627] = 28.2 +id[9628] = "2709-01-26T17:27:16" +ik[9628] = 0.47 +il[9628] = -123 +im[9628] = 0.0703 +ij[9628] = 27.5 +id[9629] = "2709-02-27T03:16:01" +ik[9629] = -26.081 +il[9629] = 43 +im[9629] = 0.0679 +ij[9629] = 15 +id[9630] = "2709-03-18T10:45:37" +ik[9630] = 3.113 +il[9630] = 121 +im[9630] = 0.0184 +ij[9630] = 28.1 +id[9631] = "2709-04-06T13:54:10" +ik[9631] = 2.292 +il[9631] = -102 +im[9631] = 0.0327 +ij[9631] = 27.6 +id[9632] = "2709-06-15T23:30:43" +ik[9632] = 0.55 +il[9632] = 75 +im[9632] = 0.018 +ij[9632] = 12 +id[9633] = "2709-06-29T05:22:50" +ik[9633] = 12 +il[9633] = -80 +im[9633] = 0.0055 +ij[9633] = 18 +id[9634] = "2709-08-25T11:21:14" +ik[9634] = 1.45 +il[9634] = 42 +im[9634] = 0.0088 +ij[9634] = 28.1 +id[9635] = "2709-09-29T02:30:40" +ik[9635] = 0.013 +il[9635] = 150 +im[9635] = 0.0575 +ij[9635] = 28.5 +id[9636] = "2709-10-22T19:00:59" +ik[9636] = 0.425 +il[9636] = 131 +im[9636] = 0.008 +ij[9636] = 28.2 +id[9637] = "2709-11-13T08:41:28" +ik[9637] = 25.312 +il[9637] = 134 +im[9637] = 0.0678 +ij[9637] = 16 +id[9638] = "2709-12-10T02:10:26" +ik[9638] = 30.628 +il[9638] = 130 +im[9638] = 0.0703 +ij[9638] = 8 +id[9639] = "2710-02-13T07:48:11" +ik[9639] = -1.608 +il[9639] = -48 +im[9639] = 0.0113 +ij[9639] = 2 +id[9640] = "2710-02-17T02:11:11" +ik[9640] = 36.73 +il[9640] = 72 +im[9640] = 0.0954 +ij[9640] = 3 +id[9641] = "2710-03-14T21:09:30" +ik[9641] = 0.305 +il[9641] = 33 +im[9641] = 0.0613 +ij[9641] = 28.8 +id[9642] = "2710-04-18T06:05:42" +ik[9642] = 0 +il[9642] = -134 +im[9642] = 0.2118 +ij[9642] = 13 +id[9643] = "2710-05-05T13:02:02" +ik[9643] = 4.423 +il[9643] = -86 +im[9643] = 0.0934 +ij[9643] = 27.4 +id[9644] = "2710-05-24T15:15:37" +ik[9644] = 0.55 +il[9644] = 51 +im[9644] = 0.1915 +ij[9644] = 11 +id[9645] = "2710-07-02T09:20:33" +ik[9645] = 75.14 +il[9645] = -45 +im[9645] = 0.1364 +ij[9645] = 7.1466 +id[9646] = "2710-08-25T05:27:17" +ik[9646] = 128.97 +il[9646] = 178 +im[9646] = 0.0295 +ij[9646] = 14 +id[9647] = "2710-08-25T07:51:10" +ik[9647] = 4.025 +il[9647] = 143 +im[9647] = 0.0331 +ij[9647] = 28.8 +id[9648] = "2710-08-26T06:54:34" +ik[9648] = 1.697 +il[9648] = 167 +im[9648] = 0.0665 +ij[9648] = 27.4 +id[9649] = "2710-09-06T21:04:38" +ik[9649] = -2.183 +il[9649] = 68 +im[9649] = 0.0547 +ij[9649] = 4 +id[9650] = "2710-09-20T07:21:04" +ik[9650] = 45.579 +il[9650] = 46 +im[9650] = 0.0476 +ij[9650] = 1 +id[9651] = "2710-10-11T03:35:12" +ik[9651] = 0 +il[9651] = -53 +im[9651] = 0.0911 +ij[9651] = 17 +id[9652] = "2710-11-01T19:43:40" +ik[9652] = 2.24 +il[9652] = -82 +im[9652] = 0.0753 +ij[9652] = 28.6 +id[9653] = "2710-11-23T13:59:51" +ik[9653] = 0.98 +il[9653] = -141 +im[9653] = 0.0948 +ij[9653] = 28.7 +id[9654] = "2710-12-05T23:25:22" +ik[9654] = 0.114 +il[9654] = -161 +im[9654] = 0.041 +ij[9654] = 27.3 +id[9655] = "2711-01-04T11:06:48" +ik[9655] = 0.482 +il[9655] = -47 +im[9655] = 0.0478 +ij[9655] = 27.5 +id[9656] = "2711-01-05T10:14:43" +ik[9656] = 6.016 +il[9656] = -25 +im[9656] = 0.0618 +ij[9656] = 28.2 +id[9657] = "2711-01-12T17:33:06" +ik[9657] = 35.116 +il[9657] = -63 +im[9657] = 0.0501 +ij[9657] = 9 +id[9658] = "2711-02-06T11:04:52" +ik[9658] = -26.243 +il[9658] = -86 +im[9658] = 0.0772 +ij[9658] = 15 +id[9659] = "2711-03-16T23:56:23" +ik[9659] = 2.028 +il[9659] = 90 +im[9659] = 0.0279 +ij[9659] = 27.6 +id[9660] = "2711-05-20T09:17:00" +ik[9660] = 3.942 +il[9660] = -146 +im[9660] = 0.0567 +ij[9660] = 27.2 +id[9661] = "2711-05-25T17:23:01" +ik[9661] = 1.102 +il[9661] = 141 +im[9661] = 0.0036 +ij[9661] = 28.1 +id[9662] = "2711-06-10T19:55:30" +ik[9662] = 12 +il[9662] = -102 +im[9662] = 0.0113 +ij[9662] = 18 +id[9663] = "2711-07-31T18:35:37" +ik[9663] = 1.08 +il[9663] = 42 +im[9663] = 0.0541 +ij[9663] = 12 +id[9664] = "2711-10-25T17:50:15" +ik[9664] = 25.558 +il[9664] = 8 +im[9664] = 0.0597 +ij[9664] = 16 +id[9665] = "2712-01-03T08:30:17" +ik[9665] = 0.137 +il[9665] = 98 +im[9665] = 0.0707 +ij[9665] = 28.5 +id[9666] = "2712-01-12T21:25:06" +ik[9666] = 30.935 +il[9666] = -5 +im[9666] = 0.0344 +ij[9666] = 8 +id[9667] = "2712-02-09T10:58:45" +ik[9667] = 0.9 +il[9667] = 54 +im[9667] = 0.0195 +ij[9667] = 28.8 +id[9668] = "2712-02-11T06:21:06" +ik[9668] = 4.864 +il[9668] = 141 +im[9668] = 0.05 +ij[9668] = 27.4 +id[9669] = "2712-02-28T04:18:56" +ik[9669] = 4.978 +il[9669] = -28 +im[9669] = 0.0922 +ij[9669] = 27.1 +id[9670] = "2712-03-22T03:19:48" +ik[9670] = 23 +il[9670] = -156 +im[9670] = 0.0108 +ij[9670] = 17 +id[9671] = "2712-04-09T15:26:03" +ik[9671] = 39.639 +il[9671] = -162 +im[9671] = 0.0984 +ij[9671] = 3 +id[9672] = "2712-04-25T12:55:46" +ik[9672] = -1.835 +il[9672] = 26 +im[9672] = 0.1584 +ij[9672] = 2 +id[9673] = "2712-05-26T16:43:11" +ik[9673] = 1.87 +il[9673] = -97 +im[9673] = 0.2104 +ij[9673] = 28.6 +id[9674] = "2712-06-09T20:42:26" +ik[9674] = 0.321 +il[9674] = -23 +im[9674] = 0.2271 +ij[9674] = 28.2 +id[9675] = "2712-06-13T19:00:25" +ik[9675] = 5.893 +il[9675] = 40 +im[9675] = 0.044 +ij[9675] = 28.7 +id[9676] = "2712-06-22T05:27:46" +ik[9676] = 0 +il[9676] = -38 +im[9676] = 0.2996 +ij[9676] = 13 +id[9677] = "2712-07-21T19:20:57" +ik[9677] = 5.61 +il[9677] = 25 +im[9677] = 0.2635 +ij[9677] = 11 +id[9678] = "2712-08-25T06:32:22" +ik[9678] = 64.04 +il[9678] = 12 +im[9678] = 0.2476 +ij[9678] = 7.1014 +id[9679] = "2712-10-07T20:34:11" +ik[9679] = 107.63 +il[9679] = -130 +im[9679] = 0.2199 +ij[9679] = 14 +id[9680] = "2712-10-17T12:20:13" +ik[9680] = -2.37 +il[9680] = 89 +im[9680] = 0.0519 +ij[9680] = 4 +id[9681] = "2712-10-30T13:46:49" +ik[9681] = 1.826 +il[9681] = -164 +im[9681] = 0.0209 +ij[9681] = 28.7 +id[9682] = "2712-10-30T22:48:24" +ik[9682] = 1.193 +il[9682] = 64 +im[9682] = 0.0359 +ij[9682] = 27.3 +id[9683] = "2712-11-03T15:13:35" +ik[9683] = 1.675 +il[9683] = -146 +im[9683] = 0.1534 +ij[9683] = 28.6 +id[9684] = "2712-11-12T09:35:08" +ik[9684] = 45.403 +il[9684] = 24 +im[9684] = 0.0562 +ij[9684] = 1 +id[9685] = "2712-12-05T01:07:16" +ik[9685] = 0.769 +il[9685] = 12 +im[9685] = 0.147 +ij[9685] = 27.5 +id[9686] = "2713-01-12T06:43:39" +ik[9686] = -26.403 +il[9686] = -63 +im[9686] = 0.0324 +ij[9686] = 15 +id[9687] = "2713-02-20T19:10:26" +ik[9687] = 1.69 +il[9687] = 128 +im[9687] = 0.0228 +ij[9687] = 27.6 +id[9688] = "2713-03-10T16:42:52" +ik[9688] = 33.238 +il[9688] = -26 +im[9688] = 0.0217 +ij[9688] = 9 +id[9689] = "2713-04-29T02:24:37" +ik[9689] = 3.652 +il[9689] = -65 +im[9689] = 0.0692 +ij[9689] = 27.2 +id[9690] = "2713-05-21T22:58:24" +ik[9690] = 12 +il[9690] = -158 +im[9690] = 0.0286 +ij[9690] = 18 +id[9691] = "2713-09-06T23:36:57" +ik[9691] = 1.08 +il[9691] = 155 +im[9691] = 0.0482 +ij[9691] = 12 +id[9692] = "2713-10-07T02:24:03" +ik[9692] = 25.732 +il[9692] = -109 +im[9692] = 0.0395 +ij[9692] = 16 +id[9693] = "2714-01-17T03:46:37" +ik[9693] = 4.507 +il[9693] = 135 +im[9693] = 0.0233 +ij[9693] = 27.4 +id[9694] = "2714-01-22T16:29:20" +ik[9694] = 1.262 +il[9694] = -2 +im[9694] = 0.0546 +ij[9694] = 28.8 +id[9695] = "2714-02-01T02:46:56" +ik[9695] = 5.301 +il[9695] = -69 +im[9695] = 0.0326 +ij[9695] = 27.1 +id[9696] = "2714-02-18T21:57:05" +ik[9696] = 32.301 +il[9696] = 174 +im[9696] = 0.0405 +ij[9696] = 8 +id[9697] = "2714-02-21T00:35:41" +ik[9697] = 0 +il[9697] = 151 +im[9697] = 0.0675 +ij[9697] = 17 +id[9698] = "2714-03-27T00:21:54" +ik[9698] = 0.203 +il[9698] = 119 +im[9698] = 0.0929 +ij[9698] = 28.5 +id[9699] = "2714-04-28T01:09:04" +ik[9699] = 0.043 +il[9699] = 50 +im[9699] = 0.0558 +ij[9699] = 27.3 +id[9700] = "2714-04-28T17:54:23" +ik[9700] = 0.649 +il[9700] = 165 +im[9700] = 0.0393 +ij[9700] = 28.7 +id[9701] = "2714-05-12T23:18:07" +ik[9701] = 0.327 +il[9701] = -141 +im[9701] = 0.0286 +ij[9701] = 28.6 +id[9702] = "2714-06-01T00:57:48" +ik[9702] = 1.781 +il[9702] = 15 +im[9702] = 0.0979 +ij[9702] = 27.5 +id[9703] = "2714-06-20T15:45:04" +ik[9703] = 45.471 +il[9703] = -19 +im[9703] = 0.1621 +ij[9703] = 3 +id[9704] = "2714-07-21T13:54:27" +ik[9704] = -2.344 +il[9704] = -55 +im[9704] = 0.1417 +ij[9704] = 2 +id[9705] = "2714-09-06T20:34:42" +ik[9705] = 0 +il[9705] = -56 +im[9705] = 0.1434 +ij[9705] = 13 +id[9706] = "2714-10-11T02:53:24" +ik[9706] = 3.83 +il[9706] = 168 +im[9706] = 0.315 +ij[9706] = 11 +id[9707] = "2714-10-28T16:38:49" +ik[9707] = 0.922 +il[9707] = -25 +im[9707] = 0.0348 +ij[9707] = 28.2 +id[9708] = "2714-11-08T20:38:17" +ik[9708] = 63 +il[9708] = 20 +im[9708] = 0.1723 +ij[9708] = 7.1183 +id[9709] = "2714-12-09T23:49:38" +ik[9709] = -25.69 +il[9709] = -89 +im[9709] = 0.0531 +ij[9709] = 15 +id[9710] = "2714-12-23T14:31:11" +ik[9710] = 107.75 +il[9710] = -179 +im[9710] = 0.0272 +ij[9710] = 14 +id[9711] = "2715-01-01T11:43:48" +ik[9711] = -1.989 +il[9711] = -53 +im[9711] = 0.1471 +ij[9711] = 4 +id[9712] = "2715-01-17T03:03:31" +ik[9712] = 1.195 +il[9712] = -134 +im[9712] = 0.0948 +ij[9712] = 27.6 +id[9713] = "2715-01-22T03:46:04" +ik[9713] = 40.565 +il[9713] = -97 +im[9713] = 0.049 +ij[9713] = 1 +id[9714] = "2715-04-05T18:43:17" +ik[9714] = 3.215 +il[9714] = 13 +im[9714] = 0.0724 +ij[9714] = 27.2 +id[9715] = "2715-04-23T09:34:25" +ik[9715] = 31.823 +il[9715] = -44 +im[9715] = 0.0728 +ij[9715] = 9 +id[9716] = "2715-05-01T10:40:00" +ik[9716] = 12 +il[9716] = 16 +im[9716] = 0.0257 +ij[9716] = 18 +id[9717] = "2715-06-25T14:44:16" +ik[9717] = 0.712 +il[9717] = 116 +im[9717] = 0.0094 +ij[9717] = 28.2 +id[9718] = "2715-07-22T18:51:48" +ik[9718] = 0.992 +il[9718] = -38 +im[9718] = 0.0277 +ij[9718] = 28.1 +id[9719] = "2715-09-19T16:33:00" +ik[9719] = 25.875 +il[9719] = -160 +im[9719] = 0.0111 +ij[9719] = 16 +id[9720] = "2715-10-13T08:13:24" +ik[9720] = 0.67 +il[9720] = -157 +im[9720] = 0.0527 +ij[9720] = 12 +id[9721] = "2715-12-19T23:28:22" +ik[9721] = 2.165 +il[9721] = 113 +im[9721] = 0.0429 +ij[9721] = 28.1 +id[9722] = "2715-12-27T21:47:14" +ik[9722] = 4.238 +il[9722] = -152 +im[9722] = 0.0357 +ij[9722] = 27.4 +id[9723] = "2716-01-09T04:19:55" +ik[9723] = 1.517 +il[9723] = -134 +im[9723] = 0.0543 +ij[9723] = 28.8 +id[9724] = "2716-01-11T05:07:52" +ik[9724] = 5.554 +il[9724] = -127 +im[9724] = 0.0364 +ij[9724] = 27.1 +id[9725] = "2716-01-30T15:21:49" +ik[9725] = 0 +il[9725] = -86 +im[9725] = 0.0338 +ij[9725] = 17 +id[9726] = "2716-02-27T06:03:58" +ik[9726] = 2.072 +il[9726] = -46 +im[9726] = 0.0189 +ij[9726] = 28.2 +id[9727] = "2716-03-31T01:25:47" +ik[9727] = 0.223 +il[9727] = -25 +im[9727] = 0.0748 +ij[9727] = 27.3 +id[9728] = "2716-04-10T04:49:59" +ik[9728] = 34.723 +il[9728] = 20 +im[9728] = 0.0037 +ij[9728] = 8 +id[9729] = "2716-04-13T14:05:00" +ik[9729] = 0.472 +il[9729] = -87 +im[9729] = 0.0558 +ij[9729] = 28.7 +id[9730] = "2716-04-30T04:01:26" +ik[9730] = 0.991 +il[9730] = -138 +im[9730] = 0.0924 +ij[9730] = 27.5 +id[9731] = "2716-05-19T09:38:42" +ik[9731] = 0.471 +il[9731] = -38 +im[9731] = 0.0614 +ij[9731] = 28.6 +id[9732] = "2716-05-24T21:22:27" +ik[9732] = 0.284 +il[9732] = -162 +im[9732] = 0.0473 +ij[9732] = 28.5 +id[9733] = "2716-05-29T05:08:19" +ik[9733] = -24.935 +il[9733] = 124 +im[9733] = 0.104 +ij[9733] = 15 +id[9734] = "2716-07-12T22:19:17" +ik[9734] = 4.085 +il[9734] = -61 +im[9734] = 0.1168 +ij[9734] = 27.6 +id[9735] = "2716-08-12T19:21:04" +ik[9735] = 46.887 +il[9735] = -75 +im[9735] = 0.1186 +ij[9735] = 3 +id[9736] = "2716-09-07T19:34:02" +ik[9736] = -2.274 +il[9736] = 178 +im[9736] = 0.1645 +ij[9736] = 2 +id[9737] = "2716-09-30T20:47:52" +ik[9737] = 5.721 +il[9737] = 26 +im[9737] = 0.0688 +ij[9737] = 27.2 +id[9738] = "2716-11-02T14:31:42" +ik[9738] = 0 +il[9738] = 80 +im[9738] = 0.2536 +ij[9738] = 13 +id[9739] = "2716-11-23T19:15:29" +ik[9739] = 0.309 +il[9739] = -144 +im[9739] = 0.0383 +ij[9739] = 28.2 +id[9740] = "2716-12-10T05:19:11" +ik[9740] = 1.87 +il[9740] = -157 +im[9740] = 0.2102 +ij[9740] = 11 +id[9741] = "2717-01-13T14:35:18" +ik[9741] = 72 +il[9741] = -145 +im[9741] = 0.1322 +ij[9741] = 7.1403 +id[9742] = "2717-02-26T01:21:30" +ik[9742] = 2.21 +il[9742] = 101 +im[9742] = 0.0108 +ij[9742] = 27.2 +id[9743] = "2717-03-08T02:57:36" +ik[9743] = -1.669 +il[9743] = 171 +im[9743] = 0.1149 +ij[9743] = 4 +id[9744] = "2717-03-12T13:16:06" +ik[9744] = 129.95 +il[9744] = 59 +im[9744] = 0.0131 +ij[9744] = 14 +id[9745] = "2717-03-17T02:34:04" +ik[9745] = 37.71 +il[9745] = -98 +im[9745] = 0.0943 +ij[9745] = 1 +id[9746] = "2717-04-04T14:05:52" +ik[9746] = 12 +il[9746] = -97 +im[9746] = 0.0984 +ij[9746] = 18 +id[9747] = "2717-05-30T04:11:19" +ik[9747] = 31.283 +il[9747] = -143 +im[9747] = 0.0736 +ij[9747] = 9 +id[9748] = "2717-06-05T04:35:55" +ik[9748] = 5.989 +il[9748] = -92 +im[9748] = 0.0135 +ij[9748] = 28.2 +id[9749] = "2717-09-01T00:18:46" +ik[9749] = 26.006 +il[9749] = 94 +im[9749] = 0.0182 +ij[9749] = 16 +id[9750] = "2717-11-20T16:01:51" +ik[9750] = 0.05 +il[9750] = -59 +im[9750] = 0.0468 +ij[9750] = 12 +id[9751] = "2718-01-10T08:14:15" +ik[9751] = 0 +il[9751] = 11 +im[9751] = 0.0297 +ij[9751] = 17 +id[9752] = "2718-01-23T20:00:25" +ik[9752] = 1.652 +il[9752] = -34 +im[9752] = 0.0234 +ij[9752] = 28.2 +id[9753] = "2718-03-09T08:10:28" +ik[9753] = 0.279 +il[9753] = -156 +im[9753] = 0.0358 +ij[9753] = 27.3 +id[9754] = "2718-03-10T02:43:46" +ik[9754] = 3.06 +il[9754] = -58 +im[9754] = 0.0453 +ij[9754] = 28.1 +id[9755] = "2718-04-04T07:10:36" +ik[9755] = 0.367 +il[9755] = 116 +im[9755] = 0.0109 +ij[9755] = 28.7 +id[9756] = "2718-04-07T10:10:05" +ik[9756] = 0.74 +il[9756] = 101 +im[9756] = 0.0406 +ij[9756] = 27.5 +id[9757] = "2718-05-06T22:24:10" +ik[9757] = -25.408 +il[9757] = -158 +im[9757] = 0.0514 +ij[9757] = 15 +id[9758] = "2718-05-30T01:32:17" +ik[9758] = 1.128 +il[9758] = 19 +im[9758] = 0.0427 +ij[9758] = 28.6 +id[9759] = "2718-06-16T21:02:07" +ik[9759] = 3.318 +il[9759] = -99 +im[9759] = 0.0086 +ij[9759] = 27.6 +id[9760] = "2718-06-27T04:49:58" +ik[9760] = 36.246 +il[9760] = -115 +im[9760] = 0.0549 +ij[9760] = 8 +id[9761] = "2718-07-20T03:16:05" +ik[9761] = 0.005 +il[9761] = 134 +im[9761] = 0.073 +ij[9761] = 28.5 +id[9762] = "2718-08-20T12:35:07" +ik[9762] = 5.17 +il[9762] = -58 +im[9762] = 0.0936 +ij[9762] = 27.2 +id[9763] = "2718-09-08T23:40:25" +ik[9763] = 11 +il[9763] = -33 +im[9763] = 0.0552 +ij[9763] = 18 +id[9764] = "2718-09-29T06:28:04" +ik[9764] = 42.552 +il[9764] = 63 +im[9764] = 0.102 +ij[9764] = 3 +id[9765] = "2718-10-10T06:45:10" +ik[9765] = -1.964 +il[9765] = 166 +im[9765] = 0.0133 +ij[9765] = 2 +id[9766] = "2718-12-12T13:16:34" +ik[9766] = 0 +il[9766] = -37 +im[9766] = 0.1819 +ij[9766] = 13 +id[9767] = "2718-12-22T12:30:48" +ik[9767] = 0.686 +il[9767] = 71 +im[9767] = 0.1883 +ij[9767] = 28.2 +id[9768] = "2719-01-21T13:28:05" +ik[9768] = 4.11 +il[9768] = -29 +im[9768] = 0.2417 +ij[9768] = 11 +id[9769] = "2719-03-01T22:40:20" +ik[9769] = 79.39 +il[9769] = 5 +im[9769] = 0.1697 +ij[9769] = 7.1718 +id[9770] = "2719-04-27T19:04:44" +ik[9770] = -1.558 +il[9770] = -128 +im[9770] = 0.0982 +ij[9770] = 4 +id[9771] = "2719-04-29T05:47:02" +ik[9771] = 37.016 +il[9771] = 85 +im[9771] = 0.0813 +ij[9771] = 1 +id[9772] = "2719-05-07T01:53:12" +ik[9772] = 145.53 +il[9772] = -142 +im[9772] = 0.0777 +ij[9772] = 14 +id[9773] = "2719-07-06T08:05:05" +ik[9773] = 31.601 +il[9773] = -18 +im[9773] = 0.0772 +ij[9773] = 9 +id[9774] = "2719-08-13T10:03:35" +ik[9774] = 26.136 +il[9774] = -40 +im[9774] = 0.0287 +ij[9774] = 16 +id[9775] = "2719-09-15T23:29:02" +ik[9775] = 4.9 +il[9775] = 84 +im[9775] = 0.0638 +ij[9775] = 28.1 +id[9776] = "2719-12-22T17:03:55" +ik[9776] = 0 +il[9776] = 63 +im[9776] = 0.0382 +ij[9776] = 17 +id[9777] = "2720-01-08T23:37:51" +ik[9777] = 0.86 +il[9777] = 141 +im[9777] = 0.0628 +ij[9777] = 12 +id[9778] = "2720-03-26T16:50:17" +ik[9778] = 0.242 +il[9778] = 85 +im[9778] = 0.0343 +ij[9778] = 28.7 +id[9779] = "2720-04-15T18:04:57" +ik[9779] = -25.67 +il[9779] = -103 +im[9779] = 0.0308 +ij[9779] = 15 +id[9780] = "2720-05-25T07:35:57" +ik[9780] = 2.917 +il[9780] = 90 +im[9780] = 0.0176 +ij[9780] = 27.6 +id[9781] = "2720-05-29T14:51:56" +ik[9781] = 4.156 +il[9781] = 23 +im[9781] = 0.0401 +ij[9781] = 28.1 +id[9782] = "2720-06-10T01:21:52" +ik[9782] = 1.524 +il[9782] = -22 +im[9782] = 0.0071 +ij[9782] = 28.6 +id[9783] = "2720-07-27T01:49:45" +ik[9783] = 4.777 +il[9783] = 72 +im[9783] = 0.0478 +ij[9783] = 27.2 +id[9784] = "2720-08-15T05:12:09" +ik[9784] = 12 +il[9784] = -151 +im[9784] = 0.0763 +ij[9784] = 18 +id[9785] = "2720-09-05T11:36:38" +ik[9785] = 34.065 +il[9785] = -40 +im[9785] = 0.0178 +ij[9785] = 8 +id[9786] = "2720-09-29T23:59:44" +ik[9786] = 0.207 +il[9786] = 13 +im[9786] = 0.0565 +ij[9786] = 28.5 +id[9787] = "2720-11-09T16:32:45" +ik[9787] = -1.734 +il[9787] = 159 +im[9787] = 0.1073 +ij[9787] = 2 +id[9788] = "2720-11-13T07:15:01" +ik[9788] = 38.585 +il[9788] = -27 +im[9788] = 0.0584 +ij[9788] = 3 +id[9789] = "2721-01-15T01:53:40" +ik[9789] = 0 +il[9789] = -59 +im[9789] = 0.1452 +ij[9789] = 13 +id[9790] = "2721-02-24T19:44:05" +ik[9790] = 4.27 +il[9790] = 45 +im[9790] = 0.2181 +ij[9790] = 11 +id[9791] = "2721-03-15T04:30:02" +ik[9791] = 2.189 +il[9791] = -117 +im[9791] = 0.129 +ij[9791] = 28.2 +id[9792] = "2721-04-07T05:01:24" +ik[9792] = 82.13 +il[9792] = 83 +im[9792] = 0.1649 +ij[9792] = 7.2032 +id[9793] = "2721-06-06T22:56:03" +ik[9793] = 37.963 +il[9793] = 38 +im[9793] = 0.0448 +ij[9793] = 1 +id[9794] = "2721-06-11T02:31:52" +ik[9794] = -1.596 +il[9794] = 24 +im[9794] = 0.0522 +ij[9794] = 4 +id[9795] = "2721-06-13T21:57:13" +ik[9795] = 149.84 +il[9795] = 120 +im[9795] = 0.0957 +ij[9795] = 14 +id[9796] = "2721-06-16T08:34:24" +ik[9796] = 0.064 +il[9796] = -16 +im[9796] = 0.1077 +ij[9796] = 28.5 +id[9797] = "2721-07-22T14:10:31" +ik[9797] = 26.265 +il[9797] = -109 +im[9797] = 0.0037 +ij[9797] = 16 +id[9798] = "2721-08-15T18:20:11" +ik[9798] = 32.768 +il[9798] = 63 +im[9798] = 0.0646 +ij[9798] = 9 +id[9799] = "2721-10-29T09:56:27" +ik[9799] = 0.562 +il[9799] = -165 +im[9799] = 0.0125 +ij[9799] = 28.2 +id[9800] = "2721-11-02T01:49:29" +ik[9800] = 3.485 +il[9800] = -7 +im[9800] = 0.0378 +ij[9800] = 27.4 +id[9801] = "2721-11-12T17:55:33" +ik[9801] = 6.263 +il[9801] = -145 +im[9801] = 0.021 +ij[9801] = 27.1 +id[9802] = "2721-11-30T21:41:26" +ik[9802] = 2.086 +il[9802] = -23 +im[9802] = 0.0337 +ij[9802] = 28.8 +id[9803] = "2721-12-02T02:56:44" +ik[9803] = 2.367 +il[9803] = -91 +im[9803] = 0.0463 +ij[9803] = 28.1 +id[9804] = "2721-12-02T23:33:32" +ik[9804] = 0 +il[9804] = -31 +im[9804] = 0.0536 +ij[9804] = 17 +id[9805] = "2722-03-17T14:17:52" +ik[9805] = 0.92 +il[9805] = 80 +im[9805] = 0.0642 +ij[9805] = 12 +id[9806] = "2722-03-27T07:37:50" +ik[9806] = -25.858 +il[9806] = 46 +im[9806] = 0.0294 +ij[9806] = 15 +id[9807] = "2722-06-23T03:52:24" +ik[9807] = 1.601 +il[9807] = -98 +im[9807] = 0.0406 +ij[9807] = 28.6 +id[9808] = "2722-07-06T15:25:18" +ik[9808] = 4.501 +il[9808] = -134 +im[9808] = 0.038 +ij[9808] = 27.2 +id[9809] = "2722-07-26T05:07:25" +ik[9809] = 12 +il[9809] = -149 +im[9809] = 0.0606 +ij[9809] = 18 +id[9810] = "2722-08-22T07:52:14" +ik[9810] = 1.993 +il[9810] = 74 +im[9810] = 0.0626 +ij[9810] = 28.2 +id[9811] = "2722-10-22T09:24:11" +ik[9811] = 31.89 +il[9811] = -78 +im[9811] = 0.0633 +ij[9811] = 8 +id[9812] = "2722-12-13T23:14:32" +ik[9812] = -1.608 +il[9812] = -137 +im[9812] = 0.095 +ij[9812] = 2 +id[9813] = "2722-12-23T13:31:00" +ik[9813] = 36.519 +il[9813] = 101 +im[9813] = 0.0099 +ij[9813] = 3 +id[9814] = "2723-02-02T11:34:53" +ik[9814] = 2.364 +il[9814] = 166 +im[9814] = 0.005 +ij[9814] = 28.5 +id[9815] = "2723-02-18T21:57:42" +ik[9815] = 0 +il[9815] = 168 +im[9815] = 0.0682 +ij[9815] = 13 +id[9816] = "2723-03-31T00:09:52" +ik[9816] = 3.11 +il[9816] = 134 +im[9816] = 0.1086 +ij[9816] = 11 +id[9817] = "2723-04-19T23:24:34" +ik[9817] = 0.15 +il[9817] = 120 +im[9817] = 0.1977 +ij[9817] = 28.1 +id[9818] = "2723-05-11T21:00:18" +ik[9818] = 81.96 +il[9818] = 7 +im[9818] = 0.132 +ij[9818] = 7.2086 +id[9819] = "2723-06-26T01:35:24" +ik[9819] = 26.246 +il[9819] = 17 +im[9819] = 0.1306 +ij[9819] = 16 +id[9820] = "2723-07-14T22:49:07" +ik[9820] = 146.04 +il[9820] = -118 +im[9820] = 0.0496 +ij[9820] = 14 +id[9821] = "2723-07-18T13:05:57" +ik[9821] = 40.471 +il[9821] = 62 +im[9821] = 0.0433 +ij[9821] = 1 +id[9822] = "2723-07-24T12:50:33" +ik[9822] = -1.766 +il[9822] = 125 +im[9822] = 0.1117 +ij[9822] = 4 +id[9823] = "2723-09-25T23:24:18" +ik[9823] = 1.623 +il[9823] = -136 +im[9823] = 0.0209 +ij[9823] = 28.5 +id[9824] = "2723-10-07T16:06:51" +ik[9824] = 34.602 +il[9824] = 87 +im[9824] = 0.049 +ij[9824] = 9 +id[9825] = "2723-10-08T19:22:00" +ik[9825] = 3.079 +il[9825] = 50 +im[9825] = 0.0309 +ij[9825] = 27.4 +id[9826] = "2723-10-15T22:40:37" +ik[9826] = 5.085 +il[9826] = 70 +im[9826] = 0.0785 +ij[9826] = 28.2 +id[9827] = "2723-11-13T09:50:13" +ik[9827] = 0 +il[9827] = -179 +im[9827] = 0.0702 +ij[9827] = 17 +id[9828] = "2723-11-17T01:55:04" +ik[9828] = 2.317 +il[9828] = -24 +im[9828] = 0.0784 +ij[9828] = 28.8 +id[9829] = "2724-01-07T09:05:14" +ik[9829] = 0.172 +il[9829] = 13 +im[9829] = 0.0279 +ij[9829] = 27.3 +id[9830] = "2724-02-04T20:53:36" +ik[9830] = 0.481 +il[9830] = 117 +im[9830] = 0.017 +ij[9830] = 27.5 +id[9831] = "2724-02-16T06:44:13" +ik[9831] = 3.449 +il[9831] = 81 +im[9831] = 0.0339 +ij[9831] = 28.1 +id[9832] = "2724-03-06T21:54:49" +ik[9832] = -26.02 +il[9832] = 56 +im[9832] = 0.038 +ij[9832] = 15 +id[9833] = "2724-03-11T21:46:15" +ik[9833] = 0.123 +il[9833] = 101 +im[9833] = 0.0645 +ij[9833] = 28.7 +id[9834] = "2724-05-25T05:08:32" +ik[9834] = 0.17 +il[9834] = 3 +im[9834] = 0.0512 +ij[9834] = 12 +id[9835] = "2724-07-06T10:55:27" +ik[9835] = 12 +il[9835] = 126 +im[9835] = 0.0547 +ij[9835] = 18 +id[9836] = "2724-11-21T05:03:14" +ik[9836] = 25.177 +il[9836] = 118 +im[9836] = 0.0367 +ij[9836] = 16 +id[9837] = "2724-11-26T23:13:04" +ik[9837] = 30.781 +il[9837] = -99 +im[9837] = 0.0668 +ij[9837] = 8 +id[9838] = "2725-01-23T20:02:34" +ik[9838] = -1.584 +il[9838] = 147 +im[9838] = 0.0852 +ij[9838] = 2 +id[9839] = "2725-01-31T07:04:56" +ik[9839] = 36.289 +il[9839] = 53 +im[9839] = 0.0666 +ij[9839] = 3 +id[9840] = "2725-03-29T14:22:23" +ik[9840] = 2.16 +il[9840] = 131 +im[9840] = 0.1529 +ij[9840] = 28.2 +id[9841] = "2725-03-30T22:49:34" +ik[9841] = 0 +il[9841] = 17 +im[9841] = 0.1827 +ij[9841] = 13 +id[9842] = "2725-05-07T03:57:26" +ik[9842] = 0.56 +il[9842] = -83 +im[9842] = 0.1261 +ij[9842] = 11 +id[9843] = "2725-06-15T21:52:10" +ik[9843] = 76.96 +il[9843] = 179 +im[9843] = 0.1046 +ij[9843] = 7.1698 +id[9844] = "2725-08-12T12:29:56" +ik[9844] = 134.57 +il[9844] = 160 +im[9844] = 0.1114 +ij[9844] = 14 +id[9845] = "2725-08-26T08:55:01" +ik[9845] = -2.052 +il[9845] = -11 +im[9845] = 0.0861 +ij[9845] = 4 +id[9846] = "2725-09-01T17:27:01" +ik[9846] = 44.232 +il[9846] = -77 +im[9846] = 0.1038 +ij[9846] = 1 +id[9847] = "2725-09-11T09:00:27" +ik[9847] = 2.31 +il[9847] = 144 +im[9847] = 0.1114 +ij[9847] = 27.4 +id[9848] = "2725-10-21T11:03:14" +ik[9848] = 0 +il[9848] = 147 +im[9848] = 0.0483 +ij[9848] = 17 +id[9849] = "2725-10-30T10:28:39" +ik[9849] = 2.713 +il[9849] = -116 +im[9849] = 0.0691 +ij[9849] = 28.8 +id[9850] = "2725-12-06T09:52:39" +ik[9850] = 0.811 +il[9850] = -103 +im[9850] = 0.0676 +ij[9850] = 28.5 +id[9851] = "2725-12-15T14:01:55" +ik[9851] = 0.011 +il[9851] = -75 +im[9851] = 0.007 +ij[9851] = 27.3 +id[9852] = "2725-12-15T22:38:24" +ik[9852] = 35.539 +il[9852] = 160 +im[9852] = 0.0001 +ij[9852] = 9 +id[9853] = "2726-01-13T13:54:12" +ik[9853] = 0.464 +il[9853] = -148 +im[9853] = 0.0063 +ij[9853] = 27.5 +id[9854] = "2726-02-14T19:09:41" +ik[9854] = -26.181 +il[9854] = 86 +im[9854] = 0.0439 +ij[9854] = 15 +id[9855] = "2726-03-04T13:27:48" +ik[9855] = 0.386 +il[9855] = -17 +im[9855] = 0.0611 +ij[9855] = 28.7 +id[9856] = "2726-03-25T05:54:31" +ik[9856] = 2.135 +il[9856] = -65 +im[9856] = 0.0419 +ij[9856] = 27.6 +id[9857] = "2726-05-08T01:57:24" +ik[9857] = 1.043 +il[9857] = 57 +im[9857] = 0.0244 +ij[9857] = 28.1 +id[9858] = "2726-06-18T01:32:13" +ik[9858] = 12 +il[9858] = 102 +im[9858] = 0.051 +ij[9858] = 18 +id[9859] = "2726-07-15T06:32:06" +ik[9859] = 0.95 +il[9859] = -72 +im[9859] = 0.0563 +ij[9859] = 12 +id[9860] = "2726-10-05T20:08:04" +ik[9860] = 4.987 +il[9860] = -3 +im[9860] = 0.0479 +ij[9860] = 28.1 +id[9861] = "2726-11-01T21:05:04" +ik[9861] = 25.475 +il[9861] = -117 +im[9861] = 0.0345 +ij[9861] = 16 +id[9862] = "2726-12-30T13:50:24" +ik[9862] = 30.695 +il[9862] = -163 +im[9862] = 0.057 +ij[9862] = 8 +id[9863] = "2727-02-23T18:07:00" +ik[9863] = 5.047 +il[9863] = -61 +im[9863] = 0.0426 +ij[9863] = 27.4 +id[9864] = "2727-03-15T02:20:03" +ik[9864] = 4.842 +il[9864] = 0 +im[9864] = 0.1292 +ij[9864] = 27.1 +id[9865] = "2727-03-18T23:19:58" +ik[9865] = 38.143 +il[9865] = 81 +im[9865] = 0.0843 +ij[9865] = 3 +id[9866] = "2727-03-25T11:16:22" +ik[9866] = -1.707 +il[9866] = -36 +im[9866] = 0.0884 +ij[9866] = 2 +id[9867] = "2727-04-14T22:54:23" +ik[9867] = 23 +il[9867] = -17 +im[9867] = 0.1373 +ij[9867] = 17 +id[9868] = "2727-05-17T18:07:13" +ik[9868] = 3.345 +il[9868] = 5 +im[9868] = 0.0419 +ij[9868] = 28.8 +id[9869] = "2727-05-25T12:30:26" +ik[9869] = 0 +il[9869] = 163 +im[9869] = 0.2124 +ij[9869] = 13 +id[9870] = "2727-06-12T06:38:38" +ik[9870] = 0 +il[9870] = 52 +im[9870] = 0.0619 +ij[9870] = 18 +id[9871] = "2727-06-26T13:10:19" +ik[9871] = 3.58 +il[9871] = 85 +im[9871] = 0.0566 +ij[9871] = 11 +id[9872] = "2727-07-19T15:52:45" +ik[9872] = 4.182 +il[9872] = 74 +im[9872] = 0.1954 +ij[9872] = 28.2 +id[9873] = "2727-08-02T11:33:01" +ik[9873] = 68.96 +il[9873] = -86 +im[9873] = 0.2182 +ij[9873] = 7.1136 +id[9874] = "2727-09-18T01:09:58" +ik[9874] = 0 +il[9874] = 167 +im[9874] = 0.0898 +ij[9874] = 17 +id[9875] = "2727-09-18T09:07:45" +ik[9875] = 115.86 +il[9875] = 51 +im[9875] = 0.1023 +ij[9875] = 14 +id[9876] = "2727-09-28T18:35:29" +ik[9876] = -2.351 +il[9876] = 11 +im[9876] = 0.0986 +ij[9876] = 4 +id[9877] = "2727-10-02T10:48:38" +ik[9877] = 3.977 +il[9877] = 164 +im[9877] = 0.0473 +ij[9877] = 28.8 +id[9878] = "2727-10-20T23:08:00" +ik[9878] = 46.334 +il[9878] = 162 +im[9878] = 0.1618 +ij[9878] = 1 +id[9879] = "2727-11-18T00:48:35" +ik[9879] = 0.503 +il[9879] = 52 +im[9879] = 0.1268 +ij[9879] = 27.3 +id[9880] = "2727-12-19T08:02:49" +ik[9880] = 0.571 +il[9880] = -110 +im[9880] = 0.1136 +ij[9880] = 27.5 +id[9881] = "2728-01-23T11:58:29" +ik[9881] = -26.349 +il[9881] = 179 +im[9881] = 0.0117 +ij[9881] = 15 +id[9882] = "2728-02-01T16:50:25" +ik[9882] = 0.893 +il[9882] = -174 +im[9882] = 0.0854 +ij[9882] = 28.5 +id[9883] = "2728-02-19T08:44:11" +ik[9883] = 33.988 +il[9883] = 117 +im[9883] = 0.0425 +ij[9883] = 9 +id[9884] = "2728-02-23T17:40:26" +ik[9884] = 0.734 +il[9884] = 25 +im[9884] = 0.0374 +ij[9884] = 28.7 +id[9885] = "2728-03-02T10:27:51" +ik[9885] = 1.834 +il[9885] = -154 +im[9885] = 0.0712 +ij[9885] = 27.6 +id[9886] = "2728-04-20T03:25:05" +ik[9886] = 0.783 +il[9886] = 53 +im[9886] = 0.0137 +ij[9886] = 28.2 +id[9887] = "2728-05-07T05:57:50" +ik[9887] = 3.776 +il[9887] = -179 +im[9887] = 0.0344 +ij[9887] = 27.2 +id[9888] = "2728-05-29T11:05:31" +ik[9888] = 12 +il[9888] = -46 +im[9888] = 0.0452 +ij[9888] = 18 +id[9889] = "2728-08-23T14:51:40" +ik[9889] = 1.13 +il[9889] = -1 +im[9889] = 0.0424 +ij[9889] = 12 +id[9890] = "2728-10-13T22:43:50" +ik[9890] = 25.671 +il[9890] = -133 +im[9890] = 0.0501 +ij[9890] = 16 +id[9891] = "2728-12-20T22:13:46" +ik[9891] = 1.362 +il[9891] = 177 +im[9891] = 0.0132 +ij[9891] = 28.2 +id[9892] = "2729-01-25T20:45:34" +ik[9892] = 4.63 +il[9892] = -180 +im[9892] = 0.0737 +ij[9892] = 27.4 +id[9893] = "2729-02-03T05:02:24" +ik[9893] = 31.632 +il[9893] = 135 +im[9893] = 0.0316 +ij[9893] = 8 +id[9894] = "2729-02-10T07:29:17" +ik[9894] = 5.188 +il[9894] = 166 +im[9894] = 0.0715 +ij[9894] = 27.1 +id[9895] = "2729-03-02T18:52:37" +ik[9895] = 23 +il[9895] = -171 +im[9895] = 0.0136 +ij[9895] = 17 +id[9896] = "2729-03-24T10:44:03" +ik[9896] = 1.265 +il[9896] = 156 +im[9896] = 0.1036 +ij[9896] = 28.8 +id[9897] = "2729-05-13T12:47:13" +ik[9897] = 0.409 +il[9897] = -121 +im[9897] = 0.0553 +ij[9897] = 27.3 +id[9898] = "2729-05-22T15:09:56" +ik[9898] = 43.023 +il[9898] = -71 +im[9898] = 0.1378 +ij[9898] = 3 +id[9899] = "2729-06-20T11:43:03" +ik[9899] = -2.159 +il[9899] = -105 +im[9899] = 0.1677 +ij[9899] = 2 +id[9900] = "2729-06-24T11:12:24" +ik[9900] = 3.016 +il[9900] = -59 +im[9900] = 0.0107 +ij[9900] = 27.5 +id[9901] = "2729-08-09T09:08:16" +ik[9901] = 0 +il[9901] = 52 +im[9901] = 0.3132 +ij[9901] = 13 +id[9902] = "2729-08-24T18:07:10" +ik[9902] = 4.101 +il[9902] = 66 +im[9902] = 0.3617 +ij[9902] = 28.2 +id[9903] = "2729-09-09T10:41:00" +ik[9903] = 6.19 +il[9903] = -45 +im[9903] = 0.388 +ij[9903] = 11 +id[9904] = "2729-10-09T08:10:51" +ik[9904] = 60.96 +il[9904] = 121 +im[9904] = 0.1945 +ij[9904] = 7.1072 +id[9905] = "2729-10-17T23:23:02" +ik[9905] = 3.886 +il[9905] = -22 +im[9905] = 0.292 +ij[9905] = 27.5 +id[9906] = "2729-11-20T04:59:36" +ik[9906] = 102.83 +il[9906] = -143 +im[9906] = 0.0777 +ij[9906] = 14 +id[9907] = "2729-11-30T18:22:10" +ik[9907] = -2.175 +il[9907] = 119 +im[9907] = 0.2007 +ij[9907] = 4 +id[9908] = "2729-12-23T13:12:26" +ik[9908] = -26.369 +il[9908] = 55 +im[9908] = 0.1039 +ij[9908] = 15 +id[9909] = "2729-12-26T04:56:55" +ik[9909] = 42.421 +il[9909] = -156 +im[9909] = 0.1521 +ij[9909] = 1 +id[9910] = "2730-02-02T20:43:47" +ik[9910] = 1.405 +il[9910] = -24 +im[9910] = 0.0154 +ij[9910] = 27.6 +id[9911] = "2730-02-09T09:21:59" +ik[9911] = 1.241 +il[9911] = -152 +im[9911] = 0.1019 +ij[9911] = 28.7 +id[9912] = "2730-04-03T19:08:03" +ik[9912] = 1.6 +il[9912] = -154 +im[9912] = 0.0562 +ij[9912] = 28.5 +id[9913] = "2730-04-07T11:32:11" +ik[9913] = 32.276 +il[9913] = -5 +im[9913] = 0.0773 +ij[9913] = 9 +id[9914] = "2730-04-15T13:08:28" +ik[9914] = 3.415 +il[9914] = 47 +im[9914] = 0.0173 +ij[9914] = 27.2 +id[9915] = "2730-05-09T19:12:21" +ik[9915] = 12 +il[9915] = -179 +im[9915] = 0.0464 +ij[9915] = 18 +id[9916] = "2730-06-26T09:48:13" +ik[9916] = 3.799 +il[9916] = 54 +im[9916] = 0.0187 +ij[9916] = 28.1 +id[9917] = "2730-09-26T12:13:50" +ik[9917] = 25.823 +il[9917] = -168 +im[9917] = 0.0579 +ij[9917] = 16 +id[9918] = "2730-09-29T03:24:33" +ik[9918] = 0.87 +il[9918] = -7 +im[9918] = 0.0498 +ij[9918] = 12 +id[9919] = "2731-01-04T14:40:03" +ik[9919] = 4.336 +il[9919] = -107 +im[9919] = 0.0604 +ij[9919] = 27.4 +id[9920] = "2731-01-19T02:40:14" +ik[9920] = 5.462 +il[9920] = -152 +im[9920] = 0.0685 +ij[9920] = 27.1 +id[9921] = "2731-02-07T15:20:29" +ik[9921] = 0 +il[9921] = -153 +im[9921] = 0.0331 +ij[9921] = 17 +id[9922] = "2731-03-05T04:22:39" +ik[9922] = 1.322 +il[9922] = -107 +im[9922] = 0.0711 +ij[9922] = 28.8 +id[9923] = "2731-03-19T16:44:11" +ik[9923] = 33.677 +il[9923] = -156 +im[9923] = 0.082 +ij[9923] = 8 +id[9924] = "2731-04-10T13:57:56" +ik[9924] = 0.165 +il[9924] = 93 +im[9924] = 0.0284 +ij[9924] = 27.3 +id[9925] = "2731-05-11T12:27:36" +ik[9925] = 1.177 +il[9925] = 50 +im[9925] = 0.0669 +ij[9925] = 27.5 +id[9926] = "2731-06-09T06:51:13" +ik[9926] = -24.595 +il[9926] = 49 +im[9926] = 0.0716 +ij[9926] = 15 +id[9927] = "2731-07-26T14:08:52" +ik[9927] = 47.397 +il[9927] = 37 +im[9927] = 0.1661 +ij[9927] = 3 +id[9928] = "2731-07-28T07:17:38" +ik[9928] = 4.696 +il[9928] = 156 +im[9928] = 0.1538 +ij[9928] = 27.6 +id[9929] = "2731-08-05T07:51:35" +ik[9929] = 2.06 +il[9929] = -134 +im[9929] = 0.0796 +ij[9929] = 28.7 +id[9930] = "2731-08-24T09:01:18" +ik[9930] = -2.371 +il[9930] = 35 +im[9930] = 0.2012 +ij[9930] = 2 +id[9931] = "2731-10-15T05:00:07" +ik[9931] = 0 +il[9931] = -116 +im[9931] = 0.2238 +ij[9931] = 13 +id[9932] = "2731-10-24T08:21:12" +ik[9932] = 6.16 +il[9932] = -76 +im[9932] = 0.1102 +ij[9932] = 28.2 +id[9933] = "2731-11-20T13:52:07" +ik[9933] = 0.01 +il[9933] = 86 +im[9933] = 0.078 +ij[9933] = 11 +id[9934] = "2731-12-22T04:02:42" +ik[9934] = 67.96 +il[9934] = 6 +im[9934] = 0.1812 +ij[9934] = 7.1312 +id[9935] = "2731-12-26T03:51:53" +ik[9935] = 4.585 +il[9935] = 51 +im[9935] = 0.2171 +ij[9935] = 28.7 +id[9936] = "2731-12-27T16:37:31" +ik[9936] = 2.184 +il[9936] = -130 +im[9936] = 0.1761 +ij[9936] = 28.2 +id[9937] = "2732-02-12T23:03:31" +ik[9937] = 120.75 +il[9937] = -140 +im[9937] = 0.021 +ij[9937] = 14 +id[9938] = "2732-02-13T19:30:39" +ik[9938] = -1.764 +il[9938] = -79 +im[9938] = 0.0454 +ij[9938] = 4 +id[9939] = "2732-02-26T17:59:51" +ik[9939] = 38.523 +il[9939] = 66 +im[9939] = 0.0394 +ij[9939] = 1 +id[9940] = "2732-03-17T01:52:02" +ik[9940] = 2.753 +il[9940] = 130 +im[9940] = 0.0954 +ij[9940] = 27.2 +id[9941] = "2732-04-15T22:30:38" +ik[9941] = 12 +il[9941] = 101 +im[9941] = 0.0824 +ij[9941] = 18 +id[9942] = "2732-05-15T19:45:04" +ik[9942] = 31.391 +il[9942] = 65 +im[9942] = 0.067 +ij[9942] = 9 +id[9943] = "2732-06-23T04:02:42" +ik[9943] = 0.525 +il[9943] = -56 +im[9943] = 0.0543 +ij[9943] = 28.5 +id[9944] = "2732-08-24T15:31:29" +ik[9944] = 0.752 +il[9944] = 11 +im[9944] = 0.0539 +ij[9944] = 28.1 +id[9945] = "2732-09-08T00:21:37" +ik[9945] = 25.957 +il[9945] = 23 +im[9945] = 0.0497 +ij[9945] = 16 +id[9946] = "2732-11-04T15:56:33" +ik[9946] = 0.25 +il[9946] = 0 +im[9946] = 0.0498 +ij[9946] = 12 +id[9947] = "2733-01-17T19:17:59" +ik[9947] = 0 +il[9947] = 133 +im[9947] = 0.0346 +ij[9947] = 17 +id[9948] = "2733-02-04T16:46:17" +ik[9948] = 3.272 +il[9948] = -22 +im[9948] = 0.0043 +ij[9948] = 28.1 +id[9949] = "2733-02-17T07:06:15" +ik[9949] = 1.364 +il[9949] = -111 +im[9949] = 0.0147 +ij[9949] = 28.8 +id[9950] = "2733-03-17T13:44:28" +ik[9950] = 0.267 +il[9950] = 64 +im[9950] = 0.0244 +ij[9950] = 27.3 +id[9951] = "2733-04-15T22:43:14" +ik[9951] = 0.815 +il[9951] = -151 +im[9951] = 0.0201 +ij[9951] = 27.5 +id[9952] = "2733-05-15T06:48:01" +ik[9952] = -25.263 +il[9952] = 10 +im[9952] = 0.0176 +ij[9952] = 15 +id[9953] = "2733-05-24T21:49:30" +ik[9953] = 36.103 +il[9953] = -122 +im[9953] = 0.0881 +ij[9953] = 8 +id[9954] = "2733-06-26T04:33:55" +ik[9954] = 3.545 +il[9954] = 90 +im[9954] = 0.0627 +ij[9954] = 27.6 +id[9955] = "2733-07-15T16:29:24" +ik[9955] = 0.882 +il[9955] = 102 +im[9955] = 0.0445 +ij[9955] = 28.7 +id[9956] = "2733-08-31T23:06:37" +ik[9956] = 5.385 +il[9956] = 108 +im[9956] = 0.1211 +ij[9956] = 27.2 +id[9957] = "2733-09-10T05:36:48" +ik[9957] = 44.445 +il[9957] = 101 +im[9957] = 0.0242 +ij[9957] = 3 +id[9958] = "2733-09-21T15:45:19" +ik[9958] = 11 +il[9958] = 61 +im[9958] = 0.044 +ij[9958] = 18 +id[9959] = "2733-09-28T04:43:33" +ik[9959] = -2.081 +il[9959] = -70 +im[9959] = 0.1291 +ij[9959] = 2 +id[9960] = "2733-11-28T23:04:01" +ik[9960] = 0 +il[9960] = -103 +im[9960] = 0.1622 +ij[9960] = 13 +id[9961] = "2733-12-23T00:40:46" +ik[9961] = 1.359 +il[9961] = 102 +im[9961] = 0.2542 +ij[9961] = 28.1 +id[9962] = "2734-01-06T09:25:27" +ik[9962] = 3.57 +il[9962] = 92 +im[9962] = 0.2311 +ij[9962] = 11 +id[9963] = "2734-01-18T06:53:39" +ik[9963] = 12 +il[9963] = 63 +im[9963] = 0.2413 +ij[9963] = 17 +id[9964] = "2734-01-24T01:48:10" +ik[9964] = 3.32 +il[9964] = -168 +im[9964] = 0.0444 +ij[9964] = 28.1 +id[9965] = "2734-02-13T04:13:46" +ik[9965] = 76.22 +il[9965] = -24 +im[9965] = 0.1893 +ij[9965] = 7.1586 +id[9966] = "2734-03-05T11:54:43" +ik[9966] = 12 +il[9966] = 54 +im[9966] = 0.0439 +ij[9966] = 18 +id[9967] = "2734-04-09T03:27:07" +ik[9967] = -1.581 +il[9967] = 146 +im[9967] = 0.1107 +ij[9967] = 4 +id[9968] = "2734-04-13T05:25:52" +ik[9968] = 37.077 +il[9968] = 155 +im[9968] = 0.0989 +ij[9968] = 1 +id[9969] = "2734-04-18T02:24:37" +ik[9969] = 140.14 +il[9969] = -113 +im[9969] = 0.0051 +ij[9969] = 14 +id[9970] = "2734-06-21T16:20:10" +ik[9970] = 31.375 +il[9970] = -68 +im[9970] = 0.0704 +ij[9970] = 9 +id[9971] = "2734-08-20T21:17:23" +ik[9971] = 26.086 +il[9971] = 78 +im[9971] = 0.0394 +ij[9971] = 16 +id[9972] = "2734-08-25T02:54:54" +ik[9972] = 0.156 +il[9972] = 34 +im[9972] = 0.0176 +ij[9972] = 28.2 +id[9973] = "2734-09-25T02:04:21" +ik[9973] = 0.808 +il[9973] = -13 +im[9973] = 0.041 +ij[9973] = 28.5 +id[9974] = "2734-10-07T13:40:58" +ik[9974] = 2.014 +il[9974] = -66 +im[9974] = 0.0114 +ij[9974] = 28.6 +id[9975] = "2734-12-18T22:20:34" +ik[9975] = 0.57 +il[9975] = 170 +im[9975] = 0.018 +ij[9975] = 12 +id[9976] = "2734-12-30T00:18:02" +ik[9976] = 0 +il[9976] = 59 +im[9976] = 0.0294 +ij[9976] = 17 +id[9977] = "2735-02-25T01:06:13" +ik[9977] = 0.283 +il[9977] = -126 +im[9977] = 0.0401 +ij[9977] = 27.3 +id[9978] = "2735-03-25T19:26:43" +ik[9978] = 0.653 +il[9978] = -115 +im[9978] = 0.0428 +ij[9978] = 27.5 +id[9979] = "2735-04-24T13:13:45" +ik[9979] = -25.58 +il[9979] = -94 +im[9979] = 0.034 +ij[9979] = 15 +id[9980] = "2735-04-27T20:01:36" +ik[9980] = 2.734 +il[9980] = -164 +im[9980] = 0.0161 +ij[9980] = 28.1 +id[9981] = "2735-06-03T10:56:42" +ik[9981] = 1.436 +il[9981] = -30 +im[9981] = 0.0751 +ij[9981] = 28.2 +id[9982] = "2735-06-03T12:58:48" +ik[9982] = 3.053 +il[9982] = -59 +im[9982] = 0.0749 +ij[9982] = 27.6 +id[9983] = "2735-07-05T11:24:59" +ik[9983] = 0.354 +il[9983] = -82 +im[9983] = 0.057 +ij[9983] = 28.7 +id[9984] = "2735-08-05T17:03:14" +ik[9984] = 4.91 +il[9984] = 140 +im[9984] = 0.0245 +ij[9984] = 27.2 +id[9985] = "2735-08-13T09:57:57" +ik[9985] = 35.102 +il[9985] = -38 +im[9985] = 0.079 +ij[9985] = 8 +id[9986] = "2735-08-24T19:10:28" +ik[9986] = 11 +il[9986] = -65 +im[9986] = 0.0678 +ij[9986] = 18 +id[9987] = "2735-10-28T05:18:48" +ik[9987] = 39.921 +il[9987] = 50 +im[9987] = 0.0777 +ij[9987] = 3 +id[9988] = "2735-10-29T07:23:34" +ik[9988] = -1.812 +il[9988] = 29 +im[9988] = 0.0559 +ij[9988] = 2 +id[9989] = "2736-01-03T02:25:05" +ik[9989] = 0 +il[9989] = 21 +im[9989] = 0.1798 +ij[9989] = 13 +id[9990] = "2736-01-28T12:47:03" +ik[9990] = 1.945 +il[9990] = 111 +im[9990] = 0.2159 +ij[9990] = 28.2 +id[9991] = "2736-02-12T12:36:34" +ik[9991] = 4.38 +il[9991] = -123 +im[9991] = 0.2228 +ij[9991] = 11 +id[9992] = "2736-03-25T01:27:41" +ik[9992] = 81.96 +il[9992] = -133 +im[9992] = 0.1392 +ij[9992] = 7.1924 +id[9993] = "2736-05-22T13:11:51" +ik[9993] = 37.407 +il[9993] = -110 +im[9993] = 0.0428 +ij[9993] = 1 +id[9994] = "2736-05-24T16:48:55" +ik[9994] = -1.565 +il[9994] = -144 +im[9994] = 0.0121 +ij[9994] = 4 +id[9995] = "2736-05-31T04:01:29" +ik[9995] = 149.07 +il[9995] = 110 +im[9995] = 0.1012 +ij[9995] = 14 +id[9996] = "2736-07-29T18:20:37" +ik[9996] = 32.21 +il[9996] = 111 +im[9996] = 0.0685 +ij[9996] = 9 +id[9997] = "2736-07-31T04:33:15" +ik[9997] = 26.218 +il[9997] = -29 +im[9997] = 0.0542 +ij[9997] = 16 +id[9998] = "2736-08-05T09:51:30" +ik[9998] = 5.779 +il[9998] = -58 +im[9998] = 0.0318 +ij[9998] = 28.2 +id[9999] = "2736-10-27T08:48:32" +ik[9999] = 2.271 +il[9999] = 45 +im[9999] = 0.0179 +ij[9999] = 28.6 +id[10000] = "2736-10-31T22:05:22" +ik[10000] = 3.076 +il[10000] = -110 +im[10000] = 0.0439 +ij[10000] = 28.1 +id[10001] = "2736-11-06T12:14:34" +ik[10001] = 3.599 +il[10001] = 92 +im[10001] = 0.064 +ij[10001] = 27.4 +id[10002] = "2736-11-20T09:43:21" +ik[10002] = 6.153 +il[10002] = -95 +im[10002] = 0.0596 +ij[10002] = 27.1 +id[10003] = "2736-12-10T09:13:45" +ik[10003] = 0 +il[10003] = 108 +im[10003] = 0.019 +ij[10003] = 17 +id[10004] = "2737-02-16T12:54:21" +ik[10004] = 1.07 +il[10004] = 23 +im[10004] = 0.0543 +ij[10004] = 12 +id[10005] = "2737-04-03T21:47:39" +ik[10005] = -25.79 +il[10005] = 132 +im[10005] = 0.0388 +ij[10005] = 15 +id[10006] = "2737-05-13T00:03:45" +ik[10006] = 2.736 +il[10006] = 132 +im[10006] = 0.0635 +ij[10006] = 27.6 +id[10007] = "2737-06-26T22:56:34" +ik[10007] = 0.015 +il[10007] = -130 +im[10007] = 0.0607 +ij[10007] = 28.7 +id[10008] = "2737-07-14T11:38:47" +ik[10008] = 4.601 +il[10008] = -149 +im[10008] = 0.0373 +ij[10008] = 27.2 +id[10009] = "2737-08-02T20:27:00" +ik[10009] = 12 +il[10009] = -92 +im[10009] = 0.0398 +ij[10009] = 18 +id[10010] = "2737-10-05T23:21:30" +ik[10010] = 32.619 +il[10010] = 127 +im[10010] = 0.0778 +ij[10010] = 8 +id[10011] = "2737-11-30T02:20:29" +ik[10011] = -1.646 +il[10011] = -104 +im[10011] = 0.1072 +ij[10011] = 2 +id[10012] = "2737-12-08T07:28:50" +ik[10012] = 37.105 +il[10012] = -102 +im[10012] = 0.0199 +ij[10012] = 3 +id[10013] = "2738-02-04T04:01:57" +ik[10013] = 0 +il[10013] = 149 +im[10013] = 0.1056 +ij[10013] = 13 +id[10014] = "2738-02-08T10:46:18" +ik[10014] = 2.13 +il[10014] = 89 +im[10014] = 0.1693 +ij[10014] = 28.2 +id[10015] = "2738-03-17T13:23:41" +ik[10015] = 3.71 +il[10015] = 22 +im[10015] = 0.1896 +ij[10015] = 11 +id[10016] = "2738-04-01T03:22:51" +ik[10016] = 0.775 +il[10016] = 100 +im[10016] = 0.1953 +ij[10016] = 28.1 +id[10017] = "2738-04-23T03:56:44" +ik[10017] = 6.045 +il[10017] = -64 +im[10017] = 0.0243 +ij[10017] = 28.2 +id[10018] = "2738-04-29T03:04:33" +ik[10018] = 83.96 +il[10018] = 7 +im[10018] = 0.1659 +ij[10018] = 7.2113 +id[10019] = "2738-07-01T20:49:46" +ik[10019] = 39.301 +il[10019] = -3 +im[10019] = 0.0284 +ij[10019] = 1 +id[10020] = "2738-07-03T09:31:26" +ik[10020] = 149.23 +il[10020] = -178 +im[10020] = 0.0603 +ij[10020] = 14 +id[10021] = "2738-07-07T10:38:17" +ik[10021] = 26.313 +il[10021] = -156 +im[10021] = 0.1105 +ij[10021] = 16 +id[10022] = "2738-07-08T03:38:42" +ik[10022] = -1.684 +il[10022] = -44 +im[10022] = 0.1122 +ij[10022] = 4 +id[10023] = "2738-09-15T01:34:50" +ik[10023] = 33.848 +il[10023] = -63 +im[10023] = 0.0658 +ij[10023] = 9 +id[10024] = "2738-10-17T09:29:10" +ik[10024] = 3.259 +il[10024] = 134 +im[10024] = 0.073 +ij[10024] = 27.4 +id[10025] = "2738-10-31T11:49:18" +ik[10025] = 6.468 +il[10025] = -124 +im[10025] = 0.0726 +ij[10025] = 27.1 +id[10026] = "2738-11-15T15:47:07" +ik[10026] = 2.071 +il[10026] = -35 +im[10026] = 0.0691 +ij[10026] = 28.6 +id[10027] = "2738-11-21T06:24:39" +ik[10027] = 0 +il[10027] = 161 +im[10027] = 0.0108 +ij[10027] = 17 +id[10028] = "2739-01-07T03:05:46" +ik[10028] = 1.346 +il[10028] = -47 +im[10028] = 0.0449 +ij[10028] = 28.8 +id[10029] = "2739-01-15T09:50:26" +ik[10029] = 0.208 +il[10029] = -69 +im[10029] = 0.0471 +ij[10029] = 27.3 +id[10030] = "2739-01-16T12:25:13" +ik[10030] = 3.023 +il[10030] = -97 +im[10030] = 0.0352 +ij[10030] = 28.1 +id[10031] = "2739-02-12T20:02:45" +ik[10031] = 0.496 +il[10031] = 69 +im[10031] = 0.0528 +ij[10031] = 27.5 +id[10032] = "2739-03-15T13:37:41" +ik[10032] = -25.96 +il[10032] = 103 +im[10032] = 0.0361 +ij[10032] = 15 +id[10033] = "2739-05-01T06:59:41" +ik[10033] = 0.27 +il[10033] = -49 +im[10033] = 0.015 +ij[10033] = 12 +id[10034] = "2739-07-14T17:30:45" +ik[10034] = 12 +il[10034] = -38 +im[10034] = 0.0363 +ij[10034] = 18 +id[10035] = "2739-11-14T09:53:30" +ik[10035] = 31.089 +il[10035] = -176 +im[10035] = 0.0572 +ij[10035] = 8 +id[10036] = "2740-01-07T03:03:10" +ik[10036] = -1.58 +il[10036] = 85 +im[10036] = 0.1072 +ij[10036] = 2 +id[10037] = "2740-01-16T12:00:51" +ik[10037] = 36.159 +il[10037] = 41 +im[10037] = 0.0478 +ij[10037] = 3 +id[10038] = "2740-03-14T09:31:54" +ik[10038] = 0 +il[10038] = -86 +im[10038] = 0.147 +ij[10038] = 13 +id[10039] = "2740-04-21T11:08:35" +ik[10039] = 1.75 +il[10039] = -131 +im[10039] = 0.1447 +ij[10039] = 11 +id[10040] = "2740-05-11T22:16:54" +ik[10040] = 0.372 +il[10040] = 45 +im[10040] = 0.1718 +ij[10040] = 28.2 +id[10041] = "2740-06-01T08:34:30" +ik[10041] = 78.96 +il[10041] = 89 +im[10041] = 0.1162 +ij[10041] = 7.1897 +id[10042] = "2740-06-16T05:38:07" +ik[10042] = 25.205 +il[10042] = -82 +im[10042] = 0.1592 +ij[10042] = 16 +id[10043] = "2740-07-31T19:43:20" +ik[10043] = 139.42 +il[10043] = 150 +im[10043] = 0.1216 +ij[10043] = 14 +id[10044] = "2740-08-14T07:28:50" +ik[10044] = 42.691 +il[10044] = 105 +im[10044] = 0.1291 +ij[10044] = 1 +id[10045] = "2740-08-14T14:54:17" +ik[10045] = -1.929 +il[10045] = -3 +im[10045] = 0.1284 +ij[10045] = 4 +id[10046] = "2740-09-23T00:21:38" +ik[10046] = 2.691 +il[10046] = -121 +im[10046] = 0.0692 +ij[10046] = 27.4 +id[10047] = "2740-10-30T14:05:57" +ik[10047] = 0 +il[10047] = 42 +im[10047] = 0.0244 +ij[10047] = 17 +id[10048] = "2740-11-17T02:01:56" +ik[10048] = 35.478 +il[10048] = 35 +im[10048] = 0.0205 +ij[10048] = 9 +id[10049] = "2740-12-01T08:02:42" +ik[10049] = 1.375 +il[10049] = 85 +im[10049] = 0.027 +ij[10049] = 28.6 +id[10050] = "2740-12-22T09:24:25" +ik[10050] = 1.34 +il[10050] = -88 +im[10050] = 0.0761 +ij[10050] = 28.8 +id[10051] = "2740-12-24T12:06:09" +ik[10051] = 0.094 +il[10051] = -108 +im[10051] = 0.0634 +ij[10051] = 27.3 +id[10052] = "2741-01-22T05:07:24" +ik[10052] = 0.462 +il[10052] = -81 +im[10052] = 0.0634 +ij[10052] = 27.5 +id[10053] = "2741-01-25T21:12:20" +ik[10053] = 0.748 +il[10053] = 74 +im[10053] = 0.0209 +ij[10053] = 28.2 +id[10054] = "2741-02-22T20:48:31" +ik[10054] = -26.119 +il[10054] = -7 +im[10054] = 0.0349 +ij[10054] = 15 +id[10055] = "2741-04-02T06:51:26" +ik[10055] = 2.236 +il[10055] = -136 +im[10055] = 0.0613 +ij[10055] = 27.6 +id[10056] = "2741-04-02T21:27:17" +ik[10056] = 2.811 +il[10056] = 8 +im[10056] = 0.0618 +ij[10056] = 28.1 +id[10057] = "2741-04-15T01:28:55" +ik[10057] = 0.945 +il[10057] = 64 +im[10057] = 0.0602 +ij[10057] = 28.5 +id[10058] = "2741-06-25T06:35:28" +ik[10058] = 12 +il[10058] = -44 +im[10058] = 0.0421 +ij[10058] = 18 +id[10059] = "2741-06-27T04:23:15" +ik[10059] = 0.72 +il[10059] = 1 +im[10059] = 0.0533 +ij[10059] = 12 +id[10060] = "2741-09-07T08:01:08" +ik[10060] = 2.188 +il[10060] = 116 +im[10060] = 0.0597 +ij[10060] = 28.1 +id[10061] = "2741-10-24T11:56:12" +ik[10061] = 0.214 +il[10061] = 153 +im[10061] = 0.0429 +ij[10061] = 28.2 +id[10062] = "2741-11-09T04:53:56" +ik[10062] = 25.377 +il[10062] = 51 +im[10062] = 0.0405 +ij[10062] = 16 +id[10063] = "2741-12-17T13:21:03" +ik[10063] = 30.609 +il[10063] = -66 +im[10063] = 0.0743 +ij[10063] = 8 +id[10064] = "2742-02-26T12:30:18" +ik[10064] = -1.633 +il[10064] = -94 +im[10064] = 0.1143 +ij[10064] = 2 +id[10065] = "2742-02-27T07:33:53" +ik[10065] = 37.122 +il[10065] = -13 +im[10065] = 0.1147 +ij[10065] = 3 +id[10066] = "2742-03-14T00:20:07" +ik[10066] = 5.249 +il[10066] = -124 +im[10066] = 0.1334 +ij[10066] = 27.4 +id[10067] = "2742-04-13T19:07:53" +ik[10067] = 4.999 +il[10067] = -114 +im[10067] = 0.1218 +ij[10067] = 27.1 +id[10068] = "2742-04-30T19:43:48" +ik[10068] = 0 +il[10068] = 38 +im[10068] = 0.0414 +ij[10068] = 13 +id[10069] = "2742-06-04T14:58:48" +ik[10069] = 1.56 +il[10069] = 56 +im[10069] = 0.2717 +ij[10069] = 11 +id[10070] = "2742-07-01T09:35:32" +ik[10070] = 4.229 +il[10070] = -158 +im[10070] = 0.2547 +ij[10070] = 27.4 +id[10071] = "2742-07-12T18:46:24" +ik[10071] = 72.96 +il[10071] = 175 +im[10071] = 0.2529 +ij[10071] = 7.1337 +id[10072] = "2742-08-10T07:09:50" +ik[10072] = 1.124 +il[10072] = -92 +im[10072] = 0.2061 +ij[10072] = 27.4 +id[10073] = "2742-09-02T06:29:11" +ik[10073] = 124.45 +il[10073] = 143 +im[10073] = 0.0716 +ij[10073] = 14 +id[10074] = "2742-09-14T01:20:58" +ik[10074] = -2.252 +il[10074] = -25 +im[10074] = 0.0228 +ij[10074] = 4 +id[10075] = "2742-09-30T23:58:50" +ik[10075] = 46.1 +il[10075] = 162 +im[10075] = 0.0598 +ij[10075] = 1 +id[10076] = "2742-10-04T11:48:55" +ik[10076] = 0 +il[10076] = 19 +im[10076] = 0.1292 +ij[10076] = 17 +id[10077] = "2742-11-30T04:55:48" +ik[10077] = 0.208 +il[10077] = -39 +im[10077] = 0.0835 +ij[10077] = 27.3 +id[10078] = "2742-12-04T07:43:21" +ik[10078] = 1.436 +il[10078] = -40 +im[10078] = 0.0927 +ij[10078] = 28.8 +id[10079] = "2742-12-14T02:01:15" +ik[10079] = 0.269 +il[10079] = 141 +im[10079] = 0.0899 +ij[10079] = 28.6 +id[10080] = "2742-12-30T03:02:00" +ik[10080] = 0.495 +il[10080] = -78 +im[10080] = 0.0831 +ij[10080] = 27.5 +id[10081] = "2743-01-27T04:48:09" +ik[10081] = 34.75 +il[10081] = 168 +im[10081] = 0.0679 +ij[10081] = 9 +id[10082] = "2743-02-01T17:13:24" +ik[10082] = -26.285 +il[10082] = 35 +im[10082] = 0.0584 +ij[10082] = 15 +id[10083] = "2743-03-12T08:29:49" +ik[10083] = 1.961 +il[10083] = 176 +im[10083] = 0.0702 +ij[10083] = 27.6 +id[10084] = "2743-05-16T02:05:08" +ik[10084] = 3.886 +il[10084] = 177 +im[10084] = 0.0269 +ij[10084] = 27.2 +id[10085] = "2743-06-06T20:11:11" +ik[10085] = 12 +il[10085] = 110 +im[10085] = 0.0527 +ij[10085] = 18 +id[10086] = "2743-06-07T09:21:50" +ik[10086] = 0.957 +il[10086] = -82 +im[10086] = 0.0553 +ij[10086] = 28.1 +id[10087] = "2743-08-09T16:34:49" +ik[10087] = 1.12 +il[10087] = 51 +im[10087] = 0.0294 +ij[10087] = 12 +id[10088] = "2743-10-21T21:11:49" +ik[10088] = 25.603 +il[10088] = -179 +im[10088] = 0.0204 +ij[10088] = 16 +id[10089] = "2744-01-20T18:46:23" +ik[10089] = 31.137 +il[10089] = 9 +im[10089] = 0.0497 +ij[10089] = 8 +id[10090] = "2744-02-05T10:10:17" +ik[10090] = 4.771 +il[10090] = -74 +im[10090] = 0.0774 +ij[10090] = 27.4 +id[10091] = "2744-02-21T15:46:21" +ik[10091] = 5.061 +il[10091] = -4 +im[10091] = 0.0869 +ij[10091] = 27.1 +id[10092] = "2744-03-14T07:39:14" +ik[10092] = 23 +il[10092] = -37 +im[10092] = 0.013 +ij[10092] = 17 +id[10093] = "2744-04-24T02:41:51" +ik[10093] = 40.699 +il[10093] = 63 +im[10093] = 0.0602 +ij[10093] = 3 +id[10094] = "2744-05-15T10:32:06" +ik[10094] = -1.936 +il[10094] = 147 +im[10094] = 0.1614 +ij[10094] = 2 +id[10095] = "2744-06-13T20:02:26" +ik[10095] = 1.981 +il[10095] = -77 +im[10095] = 0.2427 +ij[10095] = 27.3 +id[10096] = "2744-06-22T13:36:56" +ik[10096] = 4.044 +il[10096] = 102 +im[10096] = 0.0533 +ij[10096] = 28.8 +id[10097] = "2744-06-25T14:05:33" +ik[10097] = 1.266 +il[10097] = 124 +im[10097] = 0.2063 +ij[10097] = 28.2 +id[10098] = "2744-07-09T06:29:41" +ik[10098] = 0 +il[10098] = 8 +im[10098] = 0.2637 +ij[10098] = 13 +id[10099] = "2744-08-07T17:42:22" +ik[10099] = 6.4 +il[10099] = 110 +im[10099] = 0.3807 +ij[10099] = 11 +id[10100] = "2744-09-10T05:32:17" +ik[10100] = 62.96 +il[10100] = 85 +im[10100] = 0.0466 +ij[10100] = 7.1 +id[10101] = "2744-10-14T04:31:07" +ik[10101] = 2.247 +il[10101] = 75 +im[10101] = 0.2324 +ij[10101] = 27.3 +id[10102] = "2744-10-21T19:45:07" +ik[10102] = 104.55 +il[10102] = -79 +im[10102] = 0.0541 +ij[10102] = 14 +id[10103] = "2744-10-29T18:59:25" +ik[10103] = 2.566 +il[10103] = 11 +im[10103] = 0.2084 +ij[10103] = 28.8 +id[10104] = "2744-10-31T16:49:53" +ik[10104] = -2.33 +il[10104] = 62 +im[10104] = 0.1832 +ij[10104] = 4 +id[10105] = "2744-11-25T08:59:37" +ik[10105] = 1.011 +il[10105] = 60 +im[10105] = 0.1554 +ij[10105] = 27.5 +id[10106] = "2744-11-27T14:24:43" +ik[10106] = 44.453 +il[10106] = 3 +im[10106] = 0.1645 +ij[10106] = 1 +id[10107] = "2744-12-18T10:42:48" +ik[10107] = 1.032 +il[10107] = -102 +im[10107] = 0.0108 +ij[10107] = 28.6 +id[10108] = "2745-01-05T23:16:15" +ik[10108] = -26.429 +il[10108] = -112 +im[10108] = 0.0799 +ij[10108] = 15 +id[10109] = "2745-02-14T23:52:52" +ik[10109] = 1.593 +il[10109] = -100 +im[10109] = 0.0241 +ij[10109] = 27.6 +id[10110] = "2745-03-21T06:19:43" +ik[10110] = 32.868 +il[10110] = 128 +im[10110] = 0.0829 +ij[10110] = 9 +id[10111] = "2745-04-24T10:46:10" +ik[10111] = 3.575 +il[10111] = 24 +im[10111] = 0.0484 +ij[10111] = 27.2 +id[10112] = "2745-05-17T17:30:53" +ik[10112] = 12 +il[10112] = 146 +im[10112] = 0.066 +ij[10112] = 18 +id[10113] = "2745-06-02T02:26:50" +ik[10113] = 0.741 +il[10113] = 158 +im[10113] = 0.0597 +ij[10113] = 28.7 +id[10114] = "2745-09-15T02:03:42" +ik[10114] = 1.02 +il[10114] = 94 +im[10114] = 0.0359 +ij[10114] = 12 +id[10115] = "2745-10-03T07:57:38" +ik[10115] = 25.768 +il[10115] = 27 +im[10115] = 0.012 +ij[10115] = 16 +id[10116] = "2746-01-12T14:22:54" +ik[10116] = 4.441 +il[10116] = -168 +im[10116] = 0.0275 +ij[10116] = 27.4 +id[10117] = "2746-01-27T08:48:41" +ik[10117] = 5.364 +il[10117] = 55 +im[10117] = 0.0228 +ij[10117] = 27.1 +id[10118] = "2746-02-16T02:27:14" +ik[10118] = 0 +il[10118] = -23 +im[10118] = 0.0801 +ij[10118] = 17 +id[10119] = "2746-02-28T15:42:49" +ik[10119] = 32.745 +il[10119] = -103 +im[10119] = 0.0692 +ij[10119] = 8 +id[10120] = "2746-04-21T07:29:47" +ik[10120] = 0.056 +il[10120] = 149 +im[10120] = 0.0268 +ij[10120] = 27.3 +id[10121] = "2746-05-01T02:57:00" +ik[10121] = 1.242 +il[10121] = -50 +im[10121] = 0.0903 +ij[10121] = 28.8 +id[10122] = "2746-05-23T18:33:04" +ik[10122] = 1.492 +il[10122] = -69 +im[10122] = 0.0687 +ij[10122] = 27.5 +id[10123] = "2746-06-25T09:26:17" +ik[10123] = 0.411 +il[10123] = 19 +im[10123] = 0.151 +ij[10123] = 28.6 +id[10124] = "2746-07-05T03:49:49" +ik[10124] = 46.533 +il[10124] = -163 +im[10124] = 0.0884 +ij[10124] = 3 +id[10125] = "2746-08-04T15:26:21" +ik[10125] = -2.39 +il[10125] = -42 +im[10125] = 0.1703 +ij[10125] = 2 +id[10126] = "2746-08-24T06:29:11" +ik[10126] = 5.967 +il[10126] = -77 +im[10126] = 0.2023 +ij[10126] = 27.6 +id[10127] = "2746-09-21T19:45:38" +ik[10127] = 0 +il[10127] = 4 +im[10127] = 0.2209 +ij[10127] = 13 +id[10128] = "2746-10-27T00:45:29" +ik[10128] = 2.18 +il[10128] = -107 +im[10128] = 0.321 +ij[10128] = 11 +id[10129] = "2746-11-25T18:48:13" +ik[10129] = 64.96 +il[10129] = 109 +im[10129] = 0.2889 +ij[10129] = 7.123 +id[10130] = "2746-12-11T10:59:09" +ik[10130] = -24.296 +il[10130] = 16 +im[10130] = 0.1719 +ij[10130] = 15 +id[10131] = "2747-01-01T07:47:53" +ik[10131] = 1.146 +il[10131] = -97 +im[10131] = 0.1052 +ij[10131] = 27.6 +id[10132] = "2747-01-11T14:05:04" +ik[10132] = 111.76 +il[10132] = -94 +im[10132] = 0.0293 +ij[10132] = 14 +id[10133] = "2747-01-18T03:45:55" +ik[10133] = -1.898 +il[10133] = 123 +im[10133] = 0.151 +ij[10133] = 4 +id[10134] = "2747-02-04T21:31:49" +ik[10134] = 39.72 +il[10134] = 24 +im[10134] = 0.1145 +ij[10134] = 1 +id[10135] = "2747-03-30T19:33:47" +ik[10135] = 3.078 +il[10135] = -157 +im[10135] = 0.0905 +ij[10135] = 27.2 +id[10136] = "2747-04-26T13:28:03" +ik[10136] = 12 +il[10136] = -175 +im[10136] = 0.0683 +ij[10136] = 18 +id[10137] = "2747-05-02T02:34:49" +ik[10137] = 31.632 +il[10137] = 41 +im[10137] = 0.066 +ij[10137] = 9 +id[10138] = "2747-05-26T10:26:27" +ik[10138] = 0.882 +il[10138] = 152 +im[10138] = 0.0693 +ij[10138] = 28.7 +id[10139] = "2747-06-27T09:41:22" +ik[10139] = 0.671 +il[10139] = 106 +im[10139] = 0.0618 +ij[10139] = 28.2 +id[10140] = "2747-08-01T13:28:25" +ik[10140] = 0.812 +il[10140] = 24 +im[10140] = 0.0077 +ij[10140] = 28.1 +id[10141] = "2747-08-21T19:04:45" +ik[10141] = 1.785 +il[10141] = 146 +im[10141] = 0.06 +ij[10141] = 28.1 +id[10142] = "2747-09-15T21:55:34" +ik[10142] = 25.907 +il[10142] = -18 +im[10142] = 0.0408 +ij[10142] = 16 +id[10143] = "2747-10-21T15:34:22" +ik[10143] = 0.53 +il[10143] = 71 +im[10143] = 0.048 +ij[10143] = 12 +id[10144] = "2747-12-23T18:11:32" +ik[10144] = 4.184 +il[10144] = 120 +im[10144] = 0.0157 +ij[10144] = 27.4 +id[10145] = "2748-01-04T05:20:23" +ik[10145] = 2.591 +il[10145] = 64 +im[10145] = 0.0172 +ij[10145] = 28.1 +id[10146] = "2748-01-06T23:29:26" +ik[10146] = 5.606 +il[10146] = 179 +im[10146] = 0.0174 +ij[10146] = 27.1 +id[10147] = "2748-01-26T09:18:23" +ik[10147] = 0 +il[10147] = -149 +im[10147] = 0.0627 +ij[10147] = 17 +id[10148] = "2748-03-03T01:54:13" +ik[10148] = 1.984 +il[10148] = -40 +im[10148] = 0.0102 +ij[10148] = 28.2 +id[10149] = "2748-03-26T03:18:26" +ik[10149] = 0.244 +il[10149] = 158 +im[10149] = 0.0765 +ij[10149] = 27.3 +id[10150] = "2748-04-10T08:39:36" +ik[10150] = 0.888 +il[10150] = -138 +im[10150] = 0.0746 +ij[10150] = 28.8 +id[10151] = "2748-04-24T21:17:29" +ik[10151] = 35.296 +il[10151] = 171 +im[10151] = 0.0827 +ij[10151] = 8 +id[10152] = "2748-04-24T22:21:41" +ik[10152] = 0.917 +il[10152] = 156 +im[10152] = 0.0824 +ij[10152] = 27.5 +id[10153] = "2748-05-24T02:25:58" +ik[10153] = -25.073 +il[10153] = 14 +im[10153] = 0.0919 +ij[10153] = 15 +id[10154] = "2748-06-26T12:18:56" +ik[10154] = 0.714 +il[10154] = -171 +im[10154] = 0.0354 +ij[10154] = 28.6 +id[10155] = "2748-07-06T11:18:45" +ik[10155] = 3.854 +il[10155] = -59 +im[10155] = 0.0935 +ij[10155] = 27.6 +id[10156] = "2748-08-22T21:33:41" +ik[10156] = 46.171 +il[10156] = -108 +im[10156] = 0.0509 +ij[10156] = 3 +id[10157] = "2748-09-15T14:31:16" +ik[10157] = -2.207 +il[10157] = -129 +im[10157] = 0.1592 +ij[10157] = 2 +id[10158] = "2748-09-16T10:01:22" +ik[10158] = 5.637 +il[10158] = -54 +im[10158] = 0.152 +ij[10158] = 27.2 +id[10159] = "2748-10-14T08:00:43" +ik[10159] = 11 +il[10159] = -110 +im[10159] = 0.1861 +ij[10159] = 18 +id[10160] = "2748-11-12T14:05:34" +ik[10160] = 0 +il[10160] = 85 +im[10160] = 0.1923 +ij[10160] = 13 +id[10161] = "2748-11-26T02:20:32" +ik[10161] = 12 +il[10161] = 33 +im[10161] = 0.1863 +ij[10161] = 17 +id[10162] = "2748-12-01T05:54:32" +ik[10162] = 0.495 +il[10162] = 29 +im[10162] = 0.0965 +ij[10162] = 28.2 +id[10163] = "2748-12-20T16:17:03" +ik[10163] = 2.64 +il[10163] = 40 +im[10163] = 0.254 +ij[10163] = 11 +id[10164] = "2749-01-22T19:27:44" +ik[10164] = 1.524 +il[10164] = 129 +im[10164] = 0.0395 +ij[10164] = 27.2 +id[10165] = "2749-01-25T13:08:10" +ik[10165] = 73.96 +il[10165] = -113 +im[10165] = 0.1488 +ij[10165] = 7.1463 +id[10166] = "2749-03-20T05:17:29" +ik[10166] = -1.63 +il[10166] = 148 +im[10166] = 0.0427 +ij[10166] = 4 +id[10167] = "2749-03-26T19:27:04" +ik[10167] = 134.22 +il[10167] = -2 +im[10167] = 0.1196 +ij[10167] = 14 +id[10168] = "2749-03-27T07:35:45" +ik[10168] = 37.403 +il[10168] = 180 +im[10168] = 0.1169 +ij[10168] = 1 +id[10169] = "2749-03-27T20:34:49" +ik[10169] = 12 +il[10169] = -9 +im[10169] = 0.1127 +ij[10169] = 18 +id[10170] = "2749-05-16T05:43:03" +ik[10170] = 1.069 +il[10170] = -40 +im[10170] = 0.0291 +ij[10170] = 28.7 +id[10171] = "2749-06-07T08:30:22" +ik[10171] = 31.28 +il[10171] = 129 +im[10171] = 0.0647 +ij[10171] = 9 +id[10172] = "2749-08-28T02:49:27" +ik[10172] = 26.037 +il[10172] = -82 +im[10172] = 0.0579 +ij[10172] = 16 +id[10173] = "2749-11-30T09:19:16" +ik[10173] = 0.24 +il[10173] = 29 +im[10173] = 0.0208 +ij[10173] = 12 +id[10174] = "2750-01-06T08:18:23" +ik[10174] = 0 +il[10174] = -137 +im[10174] = 0.0576 +ij[10174] = 17 +id[10175] = "2750-02-25T13:44:59" +ik[10175] = 0.186 +il[10175] = -95 +im[10175] = 0.0204 +ij[10175] = 28.5 +id[10176] = "2750-03-04T23:02:04" +ik[10176] = 0.283 +il[10176] = -162 +im[10176] = 0.0624 +ij[10176] = 27.3 +id[10177] = "2750-03-25T22:07:14" +ik[10177] = 0.668 +il[10177] = 58 +im[10177] = 0.0303 +ij[10177] = 28.8 +id[10178] = "2750-03-26T07:08:23" +ik[10178] = 2.511 +il[10178] = -75 +im[10178] = 0.025 +ij[10178] = 28.1 +id[10179] = "2750-04-02T21:42:20" +ik[10179] = 0.704 +il[10179] = 144 +im[10179] = 0.0661 +ij[10179] = 27.5 +id[10180] = "2750-05-02T11:49:52" +ik[10180] = -25.477 +il[10180] = -143 +im[10180] = 0.0715 +ij[10180] = 15 +id[10181] = "2750-06-12T00:43:35" +ik[10181] = 3.212 +il[10181] = 59 +im[10181] = 0.0565 +ij[10181] = 27.6 +id[10182] = "2750-07-05T11:19:29" +ik[10182] = 1.225 +il[10182] = 130 +im[10182] = 0.0313 +ij[10182] = 28.6 +id[10183] = "2750-07-15T10:46:22" +ik[10183] = 35.98 +il[10183] = -124 +im[10183] = 0.0805 +ij[10183] = 8 +id[10184] = "2750-08-14T23:18:17" +ik[10184] = 5.066 +il[10184] = -12 +im[10184] = 0.0707 +ij[10184] = 27.2 +id[10185] = "2750-09-03T04:31:17" +ik[10185] = 11 +il[10185] = 98 +im[10185] = 0.0093 +ij[10185] = 18 +id[10186] = "2750-10-10T00:26:47" +ik[10186] = 41.548 +il[10186] = 159 +im[10186] = 0.1007 +ij[10186] = 3 +id[10187] = "2750-10-17T04:51:44" +ik[10187] = -1.906 +il[10187] = 162 +im[10187] = 0.0563 +ij[10187] = 2 +id[10188] = "2750-10-26T07:32:32" +ik[10188] = 0.48 +il[10188] = -149 +im[10188] = 0.1006 +ij[10188] = 28.7 +id[10189] = "2750-12-20T19:27:33" +ik[10189] = 0 +il[10189] = -150 +im[10189] = 0.157 +ij[10189] = 13 +id[10190] = "2750-12-29T19:14:42" +ik[10190] = 4.881 +il[10190] = -60 +im[10190] = 0.1822 +ij[10190] = 28.2 +id[10191] = "2751-01-29T18:38:23" +ik[10191] = 4.28 +il[10191] = -127 +im[10191] = 0.1692 +ij[10191] = 11 +id[10192] = "2751-03-06T22:36:07" +ik[10192] = 3.24 +il[10192] = -49 +im[10192] = 0.1856 +ij[10192] = 28.2 +id[10193] = "2751-03-10T18:30:09" +ik[10193] = 79.96 +il[10193] = 44 +im[10193] = 0.1577 +ij[10193] = 7.1795 +id[10194] = "2751-04-28T14:05:14" +ik[10194] = 1.533 +il[10194] = -147 +im[10194] = 0.0789 +ij[10194] = 28.7 +id[10195] = "2751-05-08T01:29:04" +ik[10195] = -1.554 +il[10195] = 132 +im[10195] = 0.0551 +ij[10195] = 4 +id[10196] = "2751-05-08T03:46:39" +ik[10196] = 37.088 +il[10196] = 99 +im[10196] = 0.0531 +ij[10196] = 1 +id[10197] = "2751-05-16T19:29:59" +ik[10197] = 147 +il[10197] = -54 +im[10197] = 0.0947 +ij[10197] = 14 +id[10198] = "2751-07-14T23:37:29" +ik[10198] = 31.781 +il[10198] = 92 +im[10198] = 0.063 +ij[10198] = 9 +id[10199] = "2751-08-09T04:29:15" +ik[10199] = 26.169 +il[10199] = -97 +im[10199] = 0.0645 +ij[10199] = 16 +id[10200] = "2751-10-01T04:31:25" +ik[10200] = 4.332 +il[10200] = 57 +im[10200] = 0.0195 +ij[10200] = 28.1 +id[10201] = "2751-12-18T17:53:57" +ik[10201] = 0 +il[10201] = -88 +im[10201] = 0.0599 +ij[10201] = 17 +id[10202] = "2752-01-22T06:25:56" +ik[10202] = 0.99 +il[10202] = 67 +im[10202] = 0.0127 +ij[10202] = 12 +id[10203] = "2752-04-11T13:49:42" +ik[10203] = -25.716 +il[10203] = 179 +im[10203] = 0.0608 +ij[10203] = 15 +id[10204] = "2752-04-24T07:57:37" +ik[10204] = 0.397 +il[10204] = 35 +im[10204] = 0.0593 +ij[10204] = 28.5 +id[10205] = "2752-05-20T22:38:23" +ik[10205] = 2.848 +il[10205] = 82 +im[10205] = 0.0372 +ij[10205] = 27.6 +id[10206] = "2752-06-14T16:29:03" +ik[10206] = 4.874 +il[10206] = 58 +im[10206] = 0.0214 +ij[10206] = 28.1 +id[10207] = "2752-07-16T03:35:06" +ik[10207] = 1.326 +il[10207] = -179 +im[10207] = 0.0153 +ij[10207] = 28.6 +id[10208] = "2752-07-22T12:47:56" +ik[10208] = 4.71 +il[10208] = 124 +im[10208] = 0.0728 +ij[10208] = 27.2 +id[10209] = "2752-08-10T17:29:07" +ik[10209] = 12 +il[10209] = -119 +im[10209] = 0.0352 +ij[10209] = 18 +id[10210] = "2752-09-11T01:58:46" +ik[10210] = 5.71 +il[10210] = 59 +im[10210] = 0.0034 +ij[10210] = 28.2 +id[10211] = "2752-09-17T08:43:15" +ik[10211] = 33.512 +il[10211] = 19 +im[10211] = 0.078 +ij[10211] = 8 +id[10212] = "2752-10-08T23:01:48" +ik[10212] = 0.399 +il[10212] = 14 +im[10212] = 0.0161 +ij[10212] = 28.7 +id[10213] = "2752-11-16T23:34:25" +ik[10213] = -1.698 +il[10213] = 24 +im[10213] = 0.0832 +ij[10213] = 2 +id[10214] = "2752-11-22T14:33:38" +ik[10214] = 37.976 +il[10214] = -147 +im[10214] = 0.0376 +ij[10214] = 3 +id[10215] = "2753-01-22T19:30:27" +ik[10215] = 0 +il[10215] = 11 +im[10215] = 0.1825 +ij[10215] = 13 +id[10216] = "2753-03-04T09:17:30" +ik[10216] = 4.12 +il[10216] = 179 +im[10216] = 0.2122 +ij[10216] = 11 +id[10217] = "2753-03-20T01:28:16" +ik[10217] = 1.964 +il[10217] = -124 +im[10217] = 0.1797 +ij[10217] = 28.2 +id[10218] = "2753-04-15T00:55:20" +ik[10218] = 82.23 +il[10218] = 118 +im[10218] = 0.1655 +ij[10218] = 7.2078 +id[10219] = "2753-06-15T21:04:45" +ik[10219] = 38.372 +il[10219] = 51 +im[10219] = 0.0085 +ij[10219] = 1 +id[10220] = "2753-06-20T23:59:19" +ik[10220] = -1.622 +il[10220] = 57 +im[10220] = 0.0925 +ij[10220] = 4 +id[10221] = "2753-06-21T07:39:09" +ik[10221] = 149.51 +il[10221] = -54 +im[10221] = 0.095 +ij[10221] = 14 +id[10222] = "2753-07-17T11:55:16" +ik[10222] = 26.293 +il[10222] = 135 +im[10222] = 0.0569 +ij[10222] = 16 +id[10223] = "2753-08-26T03:30:22" +ik[10223] = 33.126 +il[10223] = -73 +im[10223] = 0.0171 +ij[10223] = 9 +id[10224] = "2753-10-25T12:04:03" +ik[10224] = 3.407 +il[10224] = 26 +im[10224] = 0.0503 +ij[10224] = 27.4 +id[10225] = "2753-10-31T19:20:42" +ik[10225] = 0.783 +il[10225] = -22 +im[10225] = 0.0648 +ij[10225] = 28.2 +id[10226] = "2753-11-08T11:40:55" +ik[10226] = 6.332 +il[10226] = 168 +im[10226] = 0.0329 +ij[10226] = 27.1 +id[10227] = "2753-11-28T21:19:31" +ik[10227] = 0 +il[10227] = -137 +im[10227] = 0.0667 +ij[10227] = 17 +id[10228] = "2753-12-16T21:44:51" +ik[10228] = 2.632 +il[10228] = 33 +im[10228] = 0.0267 +ij[10228] = 28.1 +id[10229] = "2754-03-23T04:33:39" +ik[10229] = -25.897 +il[10229] = 177 +im[10229] = 0.0608 +ij[10229] = 15 +id[10230] = "2754-04-03T05:28:10" +ik[10230] = 0.72 +il[10230] = -91 +im[10230] = 0.0443 +ij[10230] = 12 +id[10231] = "2754-06-24T00:29:17" +ik[10231] = 0.587 +il[10231] = -136 +im[10231] = 0.02 +ij[10231] = 28.5 +id[10232] = "2754-07-02T10:34:34" +ik[10232] = 4.449 +il[10232] = 157 +im[10232] = 0.0642 +ij[10232] = 27.2 +id[10233] = "2754-07-22T02:47:48" +ik[10233] = 12 +il[10233] = 107 +im[10233] = 0.0283 +ij[10233] = 18 +id[10234] = "2754-07-29T21:03:45" +ik[10234] = 1.089 +il[10234] = -92 +im[10234] = 0.0604 +ij[10234] = 28.6 +id[10235] = "2754-08-24T09:02:36" +ik[10235] = 1.848 +il[10235] = -24 +im[10235] = 0.0314 +ij[10235] = 28.2 +id[10236] = "2754-09-30T01:43:23" +ik[10236] = 0.402 +il[10236] = 81 +im[10236] = 0.064 +ij[10236] = 28.7 +id[10237] = "2754-10-31T02:06:22" +ik[10237] = 31.559 +il[10237] = 15 +im[10237] = 0.0423 +ij[10237] = 8 +id[10238] = "2754-12-22T08:37:32" +ik[10238] = -1.594 +il[10238] = 63 +im[10238] = 0.1019 +ij[10238] = 2 +id[10239] = "2755-01-01T05:27:44" +ik[10239] = 36.314 +il[10239] = -154 +im[10239] = 0.0691 +ij[10239] = 3 +id[10240] = "2755-02-26T07:39:37" +ik[10240] = 0 +il[10240] = -7 +im[10240] = 0.129 +ij[10240] = 13 +id[10241] = "2755-04-07T23:06:50" +ik[10241] = 2.67 +il[10241] = 129 +im[10241] = 0.1684 +ij[10241] = 11 +id[10242] = "2755-04-28T09:13:31" +ik[10242] = 0.102 +il[10242] = -47 +im[10242] = 0.1133 +ij[10242] = 28.1 +id[10243] = "2755-05-19T06:43:19" +ik[10243] = 81.96 +il[10243] = -167 +im[10243] = 0.1637 +ij[10243] = 7.2038 +id[10244] = "2755-06-20T02:34:05" +ik[10244] = 26.103 +il[10244] = -156 +im[10244] = 0.123 +ij[10244] = 16 +id[10245] = "2755-07-21T11:38:09" +ik[10245] = 145.17 +il[10245] = 13 +im[10245] = 0.0407 +ij[10245] = 14 +id[10246] = "2755-07-28T09:42:37" +ik[10246] = 41.212 +il[10246] = 109 +im[10246] = 0.1055 +ij[10246] = 1 +id[10247] = "2755-08-02T04:58:00" +ik[10247] = -1.819 +il[10247] = -133 +im[10247] = 0.0959 +ij[10247] = 4 +id[10248] = "2755-10-03T20:25:33" +ik[10248] = 2.959 +il[10248] = -114 +im[10248] = 0.0262 +ij[10248] = 27.4 +id[10249] = "2755-10-21T18:42:22" +ik[10249] = 34.985 +il[10249] = 87 +im[10249] = 0.0645 +ij[10249] = 9 +id[10250] = "2755-11-09T00:00:00" +ik[10250] = 0 +il[10250] = -179 +im[10250] = 0.0809 +ij[10250] = 17 +id[10251] = "2756-01-02T22:04:50" +ik[10251] = 0.152 +il[10251] = 36 +im[10251] = 0.0709 +ij[10251] = 27.3 +id[10252] = "2756-01-31T11:07:50" +ik[10252] = 0.469 +il[10252] = 121 +im[10252] = 0.0636 +ij[10252] = 27.5 +id[10253] = "2756-02-11T03:13:52" +ik[10253] = 0.045 +il[10253] = -16 +im[10253] = 0.0099 +ij[10253] = 28.8 +id[10254] = "2756-03-02T08:07:00" +ik[10254] = 3.72 +il[10254] = 108 +im[10254] = 0.0674 +ij[10254] = 28.1 +id[10255] = "2756-03-02T16:31:30" +ik[10255] = -26.058 +il[10255] = -15 +im[10255] = 0.068 +ij[10255] = 15 +id[10256] = "2756-06-06T21:49:31" +ik[10256] = 0.4 +il[10256] = 129 +im[10256] = 0.0226 +ij[10256] = 12 +id[10257] = "2756-07-02T11:48:18" +ik[10257] = 12 +il[10257] = -26 +im[10257] = 0.0201 +ij[10257] = 18 +id[10258] = "2756-09-08T04:31:57" +ik[10258] = 0.132 +il[10258] = 30 +im[10258] = 0.0588 +ij[10258] = 28.5 +id[10259] = "2756-09-22T14:12:01" +ik[10259] = 0.38 +il[10259] = 24 +im[10259] = 0.0564 +ij[10259] = 28.7 +id[10260] = "2756-11-16T19:44:53" +ik[10260] = 25.258 +il[10260] = 115 +im[10260] = 0.0662 +ij[10260] = 16 +id[10261] = "2756-12-04T13:09:28" +ik[10261] = 30.677 +il[10261] = 25 +im[10261] = 0.0685 +ij[10261] = 8 +id[10262] = "2757-02-04T00:59:47" +ik[10262] = -1.594 +il[10262] = 79 +im[10262] = 0.0096 +ij[10262] = 2 +id[10263] = "2757-02-09T17:04:42" +ik[10263] = 36.492 +il[10263] = -108 +im[10263] = 0.1032 +ij[10263] = 3 +id[10264] = "2757-04-07T16:21:04" +ik[10264] = 2.263 +il[10264] = 86 +im[10264] = 0.1882 +ij[10264] = 28.2 +id[10265] = "2757-04-09T11:38:38" +ik[10265] = 0 +il[10265] = 174 +im[10265] = 0.1712 +ij[10265] = 13 +id[10266] = "2757-05-16T20:23:17" +ik[10266] = 0.12 +il[10266] = 15 +im[10266] = 0.2627 +ij[10266] = 11 +id[10267] = "2757-05-16T22:09:57" +ik[10267] = 0.06 +il[10267] = 159 +im[10267] = 0.264 +ij[10267] = 11 +id[10268] = "2757-06-25T10:41:13" +ik[10268] = 76.96 +il[10268] = -21 +im[10268] = 0.1963 +ij[10268] = 7.157 +id[10269] = "2757-08-19T16:03:03" +ik[10269] = 132.18 +il[10269] = 77 +im[10269] = 0.1195 +ij[10269] = 14 +id[10270] = "2757-09-01T22:58:54" +ik[10270] = -2.125 +il[10270] = 103 +im[10270] = 0.1129 +ij[10270] = 4 +id[10271] = "2757-09-03T10:07:32" +ik[10271] = 2.009 +il[10271] = -49 +im[10271] = 0.136 +ij[10271] = 27.4 +id[10272] = "2757-09-12T06:44:38" +ik[10272] = 45.022 +il[10272] = 88 +im[10272] = 0.0271 +ij[10272] = 1 +id[10273] = "2757-10-16T00:22:50" +ik[10273] = 0 +il[10273] = 155 +im[10273] = 0.0945 +ij[10273] = 17 +id[10274] = "2757-12-10T11:15:32" +ik[10274] = 0.044 +il[10274] = 178 +im[10274] = 0.0478 +ij[10274] = 27.3 +id[10275] = "2757-12-31T21:12:35" +ik[10275] = 35.354 +il[10275] = -121 +im[10275] = 0.0785 +ij[10275] = 9 +id[10276] = "2758-01-08T16:43:25" +ik[10276] = 0.465 +il[10276] = 22 +im[10276] = 0.0494 +ij[10276] = 27.5 +id[10277] = "2758-01-25T18:22:48" +ik[10277] = 0.203 +il[10277] = 164 +im[10277] = 0.0654 +ij[10277] = 28.8 +id[10278] = "2758-02-10T07:08:24" +ik[10278] = -26.221 +il[10278] = 123 +im[10278] = 0.0775 +ij[10278] = 15 +id[10279] = "2758-03-20T18:49:53" +ik[10279] = 2.074 +il[10279] = -43 +im[10279] = 0.0088 +ij[10279] = 27.6 +id[10280] = "2758-05-14T08:05:23" +ik[10280] = 1.176 +il[10280] = -73 +im[10280] = 0.0328 +ij[10280] = 28.1 +id[10281] = "2758-06-14T02:38:52" +ik[10281] = 12 +il[10281] = -61 +im[10281] = 0.0091 +ij[10281] = 18 +id[10282] = "2758-07-24T20:42:51" +ik[10282] = 1.03 +il[10282] = 61 +im[10282] = 0.0272 +ij[10282] = 12 +id[10283] = "2758-10-19T16:10:13" +ik[10283] = 6.164 +il[10283] = 89 +im[10283] = 0.0237 +ij[10283] = 28.1 +id[10284] = "2758-10-28T22:15:50" +ik[10284] = 25.525 +il[10284] = 87 +im[10284] = 0.0609 +ij[10284] = 16 +id[10285] = "2758-12-11T20:46:39" +ik[10285] = 0.172 +il[10285] = 172 +im[10285] = 0.0675 +ij[10285] = 28.5 +id[10286] = "2759-01-07T04:08:35" +ik[10286] = 30.807 +il[10286] = -46 +im[10286] = 0.0763 +ij[10286] = 8 +id[10287] = "2759-02-16T10:57:00" +ik[10287] = 4.936 +il[10287] = -124 +im[10287] = 0.0529 +ij[10287] = 27.4 +id[10288] = "2759-03-06T04:11:26" +ik[10288] = 4.923 +il[10288] = 145 +im[10288] = 0.1135 +ij[10288] = 27.1 +id[10289] = "2759-03-31T01:20:26" +ik[10289] = 23 +il[10289] = 64 +im[10289] = 0.0971 +ij[10289] = 17 +id[10290] = "2759-03-31T08:28:36" +ik[10290] = 38.905 +il[10290] = -41 +im[10290] = 0.1033 +ij[10290] = 3 +id[10291] = "2759-04-11T20:50:02" +ik[10291] = -1.77 +il[10291] = -117 +im[10291] = 0.015 +ij[10291] = 2 +id[10292] = "2759-06-10T16:03:33" +ik[10292] = 0 +il[10292] = 157 +im[10292] = 0.2269 +ij[10292] = 13 +id[10293] = "2759-07-10T17:51:18" +ik[10293] = 4.77 +il[10293] = 46 +im[10293] = 0.3191 +ij[10293] = 11 +id[10294] = "2759-07-25T10:19:52" +ik[10294] = 0 +il[10294] = 114 +im[10294] = 0.3139 +ij[10294] = 18 +id[10295] = "2759-07-30T03:52:36" +ik[10295] = 4.557 +il[10295] = -102 +im[10295] = 0.0621 +ij[10295] = 28.2 +id[10296] = "2759-08-15T15:06:08" +ik[10296] = 65.96 +il[10296] = -110 +im[10296] = 0.2369 +ij[10296] = 7.1057 +id[10297] = "2759-08-29T07:44:58" +ik[10297] = 0 +il[10297] = 135 +im[10297] = 0.168 +ij[10297] = 17 +id[10298] = "2759-09-29T09:39:52" +ik[10298] = 110.73 +il[10298] = 53 +im[10298] = 0.1971 +ij[10298] = 14 +id[10299] = "2759-10-09T04:26:56" +ik[10299] = -2.375 +il[10299] = -133 +im[10299] = 0.1075 +ij[10299] = 4 +id[10300] = "2759-11-02T15:26:38" +ik[10300] = 45.968 +il[10300] = -57 +im[10300] = 0.0573 +ij[10300] = 1 +id[10301] = "2759-11-09T15:36:16" +ik[10301] = 0.789 +il[10301] = 9 +im[10301] = 0.1475 +ij[10301] = 27.3 +id[10302] = "2759-12-12T12:05:04" +ik[10302] = 0.647 +il[10302] = 23 +im[10302] = 0.1258 +ij[10302] = 27.5 +id[10303] = "2760-01-06T09:54:21" +ik[10303] = 0.463 +il[10303] = -63 +im[10303] = 0.1 +ij[10303] = 28.8 +id[10304] = "2760-01-18T01:22:14" +ik[10304] = -26.389 +il[10304] = 177 +im[10304] = 0.0401 +ij[10304] = 15 +id[10305] = "2760-02-26T06:51:54" +ik[10305] = 1.753 +il[10305] = 109 +im[10305] = 0.0314 +ij[10305] = 27.6 +id[10306] = "2760-03-02T05:09:54" +ik[10306] = 33.566 +il[10306] = -178 +im[10306] = 0.0491 +ij[10306] = 9 +id[10307] = "2760-04-23T05:41:01" +ik[10307] = 0.945 +il[10307] = -54 +im[10307] = 0.0384 +ij[10307] = 28.2 +id[10308] = "2760-05-02T19:58:07" +ik[10308] = 3.71 +il[10308] = -178 +im[10308] = 0.0635 +ij[10308] = 27.2 +id[10309] = "2760-05-25T08:54:20" +ik[10309] = 12 +il[10309] = -155 +im[10309] = 0.0083 +ij[10309] = 18 +id[10310] = "2760-08-31T21:50:24" +ik[10310] = 1.11 +il[10310] = -121 +im[10310] = 0.0118 +ij[10310] = 12 +id[10311] = "2760-10-10T04:20:36" +ik[10311] = 25.709 +il[10311] = 5 +im[10311] = 0.0543 +ij[10311] = 16 +id[10312] = "2760-12-23T07:21:52" +ik[10312] = 1.545 +il[10312] = -40 +im[10312] = 0.0323 +ij[10312] = 28.2 +id[10313] = "2761-01-21T00:17:37" +ik[10313] = 4.557 +il[10313] = -21 +im[10313] = 0.0376 +ij[10313] = 27.4 +id[10314] = "2761-02-05T03:52:23" +ik[10314] = 5.257 +il[10314] = 69 +im[10314] = 0.0394 +ij[10314] = 27.1 +id[10315] = "2761-02-11T23:38:21" +ik[10315] = 31.98 +il[10315] = -163 +im[10315] = 0.0675 +ij[10315] = 8 +id[10316] = "2761-02-25T06:50:41" +ik[10316] = 0 +il[10316] = -145 +im[10316] = 0.059 +ij[10316] = 17 +id[10317] = "2761-03-09T10:48:18" +ik[10317] = 0.162 +il[10317] = -89 +im[10317] = 0.0285 +ij[10317] = 28.5 +id[10318] = "2761-05-04T07:18:50" +ik[10318] = 0.167 +il[10318] = 131 +im[10318] = 0.0084 +ij[10318] = 27.3 +id[10319] = "2761-06-08T07:00:37" +ik[10319] = 44.415 +il[10319] = 108 +im[10319] = 0.1722 +ij[10319] = 3 +id[10320] = "2761-06-09T09:42:35" +ik[10320] = 2.147 +il[10320] = 78 +im[10320] = 0.1769 +ij[10320] = 27.5 +id[10321] = "2761-07-08T22:19:50" +ik[10321] = -2.274 +il[10321] = 171 +im[10321] = 0.2242 +ij[10321] = 2 +id[10322] = "2761-07-11T18:08:57" +ik[10322] = 2.778 +il[10322] = -100 +im[10322] = 0.1625 +ij[10322] = 28.8 +id[10323] = "2761-08-26T09:40:22" +ik[10323] = 0 +il[10323] = 108 +im[10323] = 0.0937 +ij[10323] = 13 +id[10324] = "2761-09-07T04:35:20" +ik[10324] = 3.757 +il[10324] = -61 +im[10324] = 0.1276 +ij[10324] = 28.2 +id[10325] = "2761-09-27T16:41:58" +ik[10325] = 5.03 +il[10325] = -63 +im[10325] = 0.4022 +ij[10325] = 11 +id[10326] = "2761-10-27T08:42:57" +ik[10326] = 61.96 +il[10326] = -170 +im[10326] = 0.3027 +ij[10326] = 7.1136 +id[10327] = "2761-11-16T09:25:28" +ik[10327] = 0.505 +il[10327] = 14 +im[10327] = 0.0982 +ij[10327] = 28.8 +id[10328] = "2761-12-08T17:06:47" +ik[10328] = 104.31 +il[10328] = 113 +im[10328] = 0.1538 +ij[10328] = 14 +id[10329] = "2761-12-15T01:17:08" +ik[10329] = -26.172 +il[10329] = 51 +im[10329] = 0.0979 +ij[10329] = 15 +id[10330] = "2761-12-18T18:41:10" +ik[10330] = -2.071 +il[10330] = -174 +im[10330] = 0.1841 +ij[10330] = 4 +id[10331] = "2762-01-10T18:57:36" +ik[10331] = 41.35 +il[10331] = 41 +im[10331] = 0.0299 +ij[10331] = 1 +id[10332] = "2762-01-25T12:45:49" +ik[10332] = 1.279 +il[10332] = -86 +im[10332] = 0.0135 +ij[10332] = 27.6 +id[10333] = "2762-04-10T07:21:48" +ik[10333] = 3.31 +il[10333] = -19 +im[10333] = 0.0647 +ij[10333] = 27.2 +id[10334] = "2762-04-16T17:11:41" +ik[10334] = 32.008 +il[10334] = -106 +im[10334] = 0.0661 +ij[10334] = 9 +id[10335] = "2762-05-05T06:28:05" +ik[10335] = 12 +il[10335] = -130 +im[10335] = 0.0095 +ij[10335] = 18 +id[10336] = "2762-07-10T19:15:37" +ik[10336] = 2.364 +il[10336] = -52 +im[10336] = 0.0547 +ij[10336] = 28.1 +id[10337] = "2762-09-22T18:27:32" +ik[10337] = 25.856 +il[10337] = -35 +im[10337] = 0.0328 +ij[10337] = 16 +id[10338] = "2762-10-07T05:53:58" +ik[10338] = 0.76 +il[10338] = -67 +im[10338] = 0.0305 +ij[10338] = 12 +id[10339] = "2762-12-31T09:13:15" +ik[10339] = 4.279 +il[10339] = -178 +im[10339] = 0.0431 +ij[10339] = 27.4 +id[10340] = "2763-01-14T18:30:18" +ik[10340] = 5.517 +il[10340] = -169 +im[10340] = 0.0543 +ij[10340] = 27.1 +id[10341] = "2763-02-03T05:55:24" +ik[10341] = 0 +il[10341] = -156 +im[10341] = 0.0224 +ij[10341] = 17 +id[10342] = "2763-03-31T21:56:08" +ik[10342] = 34.248 +il[10342] = 140 +im[10342] = 0.0064 +ij[10342] = 8 +id[10343] = "2763-04-05T06:52:20" +ik[10343] = 0.2 +il[10343] = 47 +im[10343] = 0.0714 +ij[10343] = 27.3 +id[10344] = "2763-05-05T17:00:13" +ik[10344] = 1.065 +il[10344] = -175 +im[10344] = 0.093 +ij[10344] = 27.5 +id[10345] = "2763-05-12T08:25:56" +ik[10345] = 0.285 +il[10345] = 17 +im[10345] = 0.0491 +ij[10345] = 28.5 +id[10346] = "2763-06-03T15:43:57" +ik[10346] = -24.802 +il[10346] = 121 +im[10346] = 0.1035 +ij[10346] = 15 +id[10347] = "2763-06-03T23:02:03" +ik[10347] = 0.693 +il[10347] = 14 +im[10347] = 0.1058 +ij[10347] = 28.8 +id[10348] = "2763-07-19T19:48:46" +ik[10348] = 4.314 +il[10348] = 146 +im[10348] = 0.1313 +ij[10348] = 27.6 +id[10349] = "2763-08-06T03:26:38" +ik[10349] = 47.264 +il[10349] = -159 +im[10349] = 0.0791 +ij[10349] = 3 +id[10350] = "2763-09-02T14:00:18" +ik[10350] = -2.323 +il[10350] = -48 +im[10350] = 0.1241 +ij[10350] = 2 +id[10351] = "2763-10-26T17:07:18" +ik[10351] = 0 +il[10351] = 76 +im[10351] = 0.2414 +ij[10351] = 13 +id[10352] = "2763-11-02T05:27:24" +ik[10352] = 5.454 +il[10352] = -45 +im[10352] = 0.0975 +ij[10352] = 27.2 +id[10353] = "2763-12-02T16:36:38" +ik[10353] = 1.17 +il[10353] = 63 +im[10353] = 0.2828 +ij[10353] = 11 +id[10354] = "2764-01-04T18:11:54" +ik[10354] = 70.04 +il[10354] = -179 +im[10354] = 0.1358 +ij[10354] = 7.1359 +id[10355] = "2764-01-10T19:56:48" +ik[10355] = 2.869 +il[10355] = -145 +im[10355] = 0.1432 +ij[10355] = 28.2 +id[10356] = "2764-02-27T08:18:59" +ik[10356] = -1.707 +il[10356] = 114 +im[10356] = 0.1205 +ij[10356] = 4 +id[10357] = "2764-02-29T14:58:43" +ik[10357] = 125.91 +il[10357] = 36 +im[10357] = 0.0775 +ij[10357] = 14 +id[10358] = "2764-03-07T20:48:52" +ik[10358] = 2.491 +il[10358] = 16 +im[10358] = 0.0953 +ij[10358] = 27.2 +id[10359] = "2764-03-09T00:08:38" +ik[10359] = 38.03 +il[10359] = -23 +im[10359] = 0.108 +ij[10359] = 1 +id[10360] = "2764-04-09T22:07:52" +ik[10360] = 12 +il[10360] = -52 +im[10360] = 0.078 +ij[10360] = 18 +id[10361] = "2764-05-24T02:05:27" +ik[10361] = 31.315 +il[10361] = -54 +im[10361] = 0.0588 +ij[10361] = 9 +id[10362] = "2764-08-31T09:02:51" +ik[10362] = 0.041 +il[10362] = 70 +im[10362] = 0.0454 +ij[10362] = 28.7 +id[10363] = "2764-09-04T04:14:29" +ik[10363] = 25.988 +il[10363] = -179 +im[10363] = 0.0065 +ij[10363] = 16 +id[10364] = "2764-09-06T18:28:01" +ik[10364] = 0.822 +il[10364] = -10 +im[10364] = 0.0267 +ij[10364] = 28.1 +id[10365] = "2764-11-13T15:23:45" +ik[10365] = 0.08 +il[10365] = -5 +im[10365] = 0.0288 +ij[10365] = 12 +id[10366] = "2765-01-13T17:36:28" +ik[10366] = 0 +il[10366] = 17 +im[10366] = 0.0178 +ij[10366] = 17 +id[10367] = "2765-02-20T23:42:57" +ik[10367] = 2.949 +il[10367] = -72 +im[10367] = 0.0522 +ij[10367] = 28.1 +id[10368] = "2765-03-13T01:35:59" +ik[10368] = 0.276 +il[10368] = 101 +im[10368] = 0.0285 +ij[10368] = 27.3 +id[10369] = "2765-04-11T06:27:51" +ik[10369] = 0.77 +il[10369] = -54 +im[10369] = 0.0344 +ij[10369] = 27.5 +id[10370] = "2765-05-10T17:02:53" +ik[10370] = -25.349 +il[10370] = 72 +im[10370] = 0.0434 +ij[10370] = 15 +id[10371] = "2765-05-15T04:04:43" +ik[10371] = 0.082 +il[10371] = -51 +im[10371] = 0.0837 +ij[10371] = 28.8 +id[10372] = "2765-06-12T12:04:34" +ik[10372] = 36.286 +il[10372] = 105 +im[10372] = 0.0869 +ij[10372] = 8 +id[10373] = "2765-06-21T00:37:34" +ik[10373] = 3.411 +il[10373] = 0 +im[10373] = 0.0103 +ij[10373] = 27.6 +id[10374] = "2765-07-05T16:33:33" +ik[10374] = 0.042 +il[10374] = -96 +im[10374] = 0.0129 +ij[10374] = 28.5 +id[10375] = "2765-08-25T09:40:25" +ik[10375] = 5.257 +il[10375] = 146 +im[10375] = 0.104 +ij[10375] = 27.2 +id[10376] = "2765-09-14T05:04:45" +ik[10376] = 11 +il[10376] = 49 +im[10376] = 0.0348 +ij[10376] = 18 +id[10377] = "2765-09-21T00:33:33" +ik[10377] = 43.396 +il[10377] = -177 +im[10377] = 0.1151 +ij[10377] = 3 +id[10378] = "2765-10-05T04:39:26" +ik[10378] = -2.015 +il[10378] = -100 +im[10378] = 0.1201 +ij[10378] = 2 +id[10379] = "2765-12-06T14:59:13" +ik[10379] = 0 +il[10379] = -7 +im[10379] = 0.0874 +ij[10379] = 13 +id[10380] = "2765-12-31T13:06:20" +ik[10380] = 1.302 +il[10380] = -107 +im[10380] = 0.1975 +ij[10380] = 28.1 +id[10381] = "2766-01-15T05:34:25" +ik[10381] = 3.93 +il[10381] = 135 +im[10381] = 0.136 +ij[10381] = 11 +id[10382] = "2766-02-02T00:18:53" +ik[10382] = 3.636 +il[10382] = -157 +im[10382] = 0.0907 +ij[10382] = 28.1 +id[10383] = "2766-02-23T14:01:49" +ik[10383] = 78.96 +il[10383] = -175 +im[10383] = 0.1484 +ij[10383] = 7.1658 +id[10384] = "2766-04-19T21:11:27" +ik[10384] = -1.565 +il[10384] = -120 +im[10384] = 0.0931 +ij[10384] = 4 +id[10385] = "2766-04-22T11:04:33" +ik[10385] = 37.011 +il[10385] = 56 +im[10385] = 0.0425 +ij[10385] = 1 +id[10386] = "2766-04-29T05:55:38" +ik[10386] = 143.62 +il[10386] = -162 +im[10386] = 0.0955 +ij[10386] = 14 +id[10387] = "2766-06-30T00:29:01" +ik[10387] = 31.482 +il[10387] = 149 +im[10387] = 0.0626 +ij[10387] = 9 +id[10388] = "2766-08-16T19:13:20" +ik[10388] = 26.119 +il[10388] = -31 +im[10388] = 0.0158 +ij[10388] = 16 +id[10389] = "2766-08-25T11:07:27" +ik[10389] = 0.247 +il[10389] = 179 +im[10389] = 0.0606 +ij[10389] = 28.7 +id[10390] = "2766-08-26T18:26:13" +ik[10390] = 0.016 +il[10390] = 77 +im[10390] = 0.0507 +ij[10390] = 28.2 +id[10391] = "2766-08-30T21:56:16" +ik[10391] = 6.159 +il[10391] = 65 +im[10391] = 0.0036 +ij[10391] = 28.1 +id[10392] = "2766-12-26T00:53:19" +ik[10392] = 0 +il[10392] = 99 +im[10392] = 0.0249 +ij[10392] = 17 +id[10393] = "2766-12-30T11:42:25" +ik[10393] = 0.74 +il[10393] = -18 +im[10393] = 0.0581 +ij[10393] = 12 +id[10394] = "2767-03-21T11:09:33" +ik[10394] = 0.627 +il[10394] = -140 +im[10394] = 0.0077 +ij[10394] = 27.5 +id[10395] = "2767-04-20T07:10:45" +ik[10395] = -25.633 +il[10395] = -144 +im[10395] = 0.0207 +ij[10395] = 15 +id[10396] = "2767-04-29T21:22:23" +ik[10396] = 0.309 +il[10396] = 96 +im[10396] = 0.0476 +ij[10396] = 28.8 +id[10397] = "2767-05-13T13:19:19" +ik[10397] = 3 +il[10397] = -9 +im[10397] = 0.0561 +ij[10397] = 28.1 +id[10398] = "2767-05-30T00:46:25" +ik[10398] = 2.974 +il[10398] = -19 +im[10398] = 0.0388 +ij[10398] = 27.6 +id[10399] = "2767-06-07T13:37:08" +ik[10399] = 1.764 +il[10399] = -128 +im[10399] = 0.0653 +ij[10399] = 28.2 +id[10400] = "2767-07-31T22:13:58" +ik[10400] = 4.833 +il[10400] = -84 +im[10400] = 0.0339 +ij[10400] = 27.2 +id[10401] = "2767-08-20T00:32:27" +ik[10401] = 12 +il[10401] = 68 +im[10401] = 0.0854 +ij[10401] = 18 +id[10402] = "2767-08-27T13:47:40" +ik[10402] = 34.529 +il[10402] = -57 +im[10402] = 0.0065 +ij[10402] = 8 +id[10403] = "2767-09-11T07:35:10" +ik[10403] = 0.165 +il[10403] = -180 +im[10403] = 0.0251 +ij[10403] = 28.5 +id[10404] = "2767-11-05T09:23:01" +ik[10404] = -1.767 +il[10404] = -32 +im[10404] = 0.0202 +ij[10404] = 2 +id[10405] = "2767-11-07T02:20:32" +ik[10405] = 39.144 +il[10405] = 90 +im[10405] = 0.0217 +ij[10405] = 3 +id[10406] = "2767-12-26T19:41:09" +ik[10406] = 21.188 +il[10406] = -49 +im[10406] = 0.1476 +ij[10406] = 16 +id[10407] = "2768-01-10T05:56:07" +ik[10407] = 0 +il[10407] = -63 +im[10407] = 0.1716 +ij[10407] = 13 +id[10408] = "2768-02-02T12:09:31" +ik[10408] = 1.883 +il[10408] = 68 +im[10408] = 0.1886 +ij[10408] = 28.2 +id[10409] = "2768-02-20T05:04:12" +ik[10409] = 4.34 +il[10409] = -32 +im[10409] = 0.1758 +ij[10409] = 11 +id[10410] = "2768-03-23T00:57:41" +ik[10410] = 2.862 +il[10410] = 114 +im[10410] = 0.0471 +ij[10410] = 28.5 +id[10411] = "2768-04-01T11:08:07" +ik[10411] = 82.22 +il[10411] = 51 +im[10411] = 0.141 +ij[10411] = 7.1989 +id[10412] = "2768-05-15T08:34:03" +ik[10412] = 0.979 +il[10412] = 149 +im[10412] = 0.0226 +ij[10412] = 28.5 +id[10413] = "2768-05-31T08:11:36" +ik[10413] = 37.684 +il[10413] = -52 +im[10413] = 0.0047 +ij[10413] = 1 +id[10414] = "2768-06-03T15:39:55" +ik[10414] = -1.579 +il[10414] = -132 +im[10414] = 0.0725 +ij[10414] = 4 +id[10415] = "2768-06-08T05:10:57" +ik[10415] = 149.97 +il[10415] = 69 +im[10415] = 0.0914 +ij[10415] = 14 +id[10416] = "2768-08-08T06:29:27" +ik[10416] = 32.502 +il[10416] = -79 +im[10416] = 0.025 +ij[10416] = 9 +id[10417] = "2768-08-16T23:54:40" +ik[10417] = 0.525 +il[10417] = 104 +im[10417] = 0.076 +ij[10417] = 28.7 +id[10418] = "2768-11-02T08:06:42" +ik[10418] = 3.534 +il[10418] = 14 +im[10418] = 0.0286 +ij[10418] = 27.4 +id[10419] = "2768-11-16T00:38:06" +ik[10419] = 2.943 +il[10419] = -101 +im[10419] = 0.0337 +ij[10419] = 28.1 +id[10420] = "2768-11-16T06:10:06" +ik[10420] = 6.214 +il[10420] = 179 +im[10420] = 0.0308 +ij[10420] = 27.1 +id[10421] = "2768-12-06T08:54:01" +ik[10421] = 0 +il[10421] = -25 +im[10421] = 0.0355 +ij[10421] = 17 +id[10422] = "2768-12-09T23:33:36" +ik[10422] = 1.625 +il[10422] = 179 +im[10422] = 0.0604 +ij[10422] = 28.6 +id[10423] = "2769-03-04T16:25:06" +ik[10423] = 1.02 +il[10423] = 31 +im[10423] = 0.0479 +ij[10423] = 12 +id[10424] = "2769-03-30T18:48:37" +ik[10424] = -25.831 +il[10424] = 37 +im[10424] = 0.015 +ij[10424] = 15 +id[10425] = "2769-07-10T04:14:28" +ik[10425] = 4.544 +il[10425] = -179 +im[10425] = 0.0191 +ij[10425] = 27.2 +id[10426] = "2769-07-29T15:18:24" +ik[10426] = 12 +il[10426] = -155 +im[10426] = 0.0658 +ij[10426] = 18 +id[10427] = "2769-10-15T13:37:00" +ik[10427] = 32.195 +il[10427] = -94 +im[10427] = 0.0245 +ij[10427] = 8 +id[10428] = "2769-12-07T22:23:29" +ik[10428] = -1.623 +il[10428] = -70 +im[10428] = 0.0862 +ij[10428] = 2 +id[10429] = "2769-12-17T01:43:32" +ik[10429] = 36.746 +il[10429] = -31 +im[10429] = 0.0887 +ij[10429] = 3 +id[10430] = "2769-12-21T12:38:37" +ik[10430] = 0.791 +il[10430] = -152 +im[10430] = 0.114 +ij[10430] = 28.5 +id[10431] = "2770-02-12T05:11:25" +ik[10431] = 0 +il[10431] = 109 +im[10431] = 0.1677 +ij[10431] = 13 +id[10432] = "2770-02-21T17:04:33" +ik[10432] = 2.889 +il[10432] = 20 +im[10432] = 0.0242 +ij[10432] = 28.2 +id[10433] = "2770-03-01T06:02:34" +ik[10433] = 2.273 +il[10433] = -100 +im[10433] = 0.1752 +ij[10433] = 28.5 +id[10434] = "2770-03-25T05:40:39" +ik[10434] = 3.38 +il[10434] = 114 +im[10434] = 0.2026 +ij[10434] = 11 +id[10435] = "2770-04-11T09:48:33" +ik[10435] = 0.404 +il[10435] = 6 +im[10435] = 0.1826 +ij[10435] = 28.1 +id[10436] = "2770-04-23T12:18:57" +ik[10436] = 2.237 +il[10436] = 74 +im[10436] = 0.1792 +ij[10436] = 28.2 +id[10437] = "2770-05-06T04:14:01" +ik[10437] = 82.96 +il[10437] = -43 +im[10437] = 0.1878 +ij[10437] = 7.2107 +id[10438] = "2770-07-01T04:06:14" +ik[10438] = 26.303 +il[10438] = 141 +im[10438] = 0.1243 +ij[10438] = 16 +id[10439] = "2770-07-10T02:39:54" +ik[10439] = 147.89 +il[10439] = -110 +im[10439] = 0.0494 +ij[10439] = 14 +id[10440] = "2770-07-11T06:47:31" +ik[10440] = 39.917 +il[10440] = -161 +im[10440] = 0.0725 +ij[10440] = 1 +id[10441] = "2770-07-17T16:30:36" +ik[10441] = -1.727 +il[10441] = 116 +im[10441] = 0.0735 +ij[10441] = 4 +id[10442] = "2770-08-05T23:41:36" +ik[10442] = 0.932 +il[10442] = -164 +im[10442] = 0.0127 +ij[10442] = 28.7 +id[10443] = "2770-09-05T04:15:02" +ik[10443] = 1.525 +il[10443] = 61 +im[10443] = 0.0404 +ij[10443] = 28.5 +id[10444] = "2770-09-27T11:19:40" +ik[10444] = 34.273 +il[10444] = 172 +im[10444] = 0.0663 +ij[10444] = 9 +id[10445] = "2770-10-12T18:14:19" +ik[10445] = 3.163 +il[10445] = -142 +im[10445] = 0.0408 +ij[10445] = 27.4 +id[10446] = "2770-11-17T00:19:39" +ik[10446] = 0 +il[10446] = 111 +im[10446] = 0.0512 +ij[10446] = 17 +id[10447] = "2770-12-27T17:56:12" +ik[10447] = 0.834 +il[10447] = -113 +im[10447] = 0.012 +ij[10447] = 28.6 +id[10448] = "2771-01-11T01:43:53" +ik[10448] = 0.194 +il[10448] = -88 +im[10448] = 0.0055 +ij[10448] = 27.3 +id[10449] = "2771-01-31T09:48:45" +ik[10449] = 3.633 +il[10449] = -9 +im[10449] = 0.0671 +ij[10449] = 28.1 +id[10450] = "2771-02-08T12:42:37" +ik[10450] = 0.483 +il[10450] = 27 +im[10450] = 0.0052 +ij[10450] = 27.5 +id[10451] = "2771-03-11T10:08:36" +ik[10451] = -25.997 +il[10451] = 20 +im[10451] = 0.0183 +ij[10451] = 15 +id[10452] = "2771-05-15T18:57:06" +ik[10452] = 0.01 +il[10452] = 164 +im[10452] = 0.053 +ij[10452] = 12 +id[10453] = "2771-07-10T17:50:53" +ik[10453] = 12 +il[10453] = 167 +im[10453] = 0.0569 +ij[10453] = 18 +id[10454] = "2771-11-14T00:28:46" +ik[10454] = 5.218 +il[10454] = -139 +im[10454] = 0.0574 +ij[10454] = 28.2 +id[10455] = "2771-11-22T06:31:13" +ik[10455] = 30.899 +il[10455] = -150 +im[10455] = 0.0318 +ij[10455] = 8 +id[10456] = "2771-11-25T20:51:59" +ik[10456] = 25.107 +il[10456] = 29 +im[10456] = 0.0312 +ij[10456] = 16 +id[10457] = "2772-01-12T04:17:07" +ik[10457] = 1.218 +il[10457] = 15 +im[10457] = 0.0945 +ij[10457] = 28.7 +id[10458] = "2772-01-16T21:55:56" +ik[10458] = -1.58 +il[10458] = 156 +im[10458] = 0.062 +ij[10458] = 2 +id[10459] = "2772-01-25T10:22:30" +ik[10459] = 36.194 +il[10459] = 51 +im[10459] = 0.1085 +ij[10459] = 3 +id[10460] = "2772-03-22T02:40:22" +ik[10460] = 0 +il[10460] = -10 +im[10460] = 0.1927 +ij[10460] = 13 +id[10461] = "2772-04-30T06:06:26" +ik[10461] = 1.09 +il[10461] = -66 +im[10461] = 0.2093 +ij[10461] = 11 +id[10462] = "2772-05-17T20:00:15" +ik[10462] = 0.736 +il[10462] = 37 +im[10462] = 0.2019 +ij[10462] = 28.2 +id[10463] = "2772-05-21T06:07:32" +ik[10463] = 0.107 +il[10463] = -82 +im[10463] = 0.0559 +ij[10463] = 28.7 +id[10464] = "2772-06-09T10:46:26" +ik[10464] = 79.34 +il[10464] = 35 +im[10464] = 0.1952 +ij[10464] = 7.179 +id[10465] = "2772-07-07T13:05:53" +ik[10465] = 1.528 +il[10465] = -87 +im[10465] = 0.1648 +ij[10465] = 28.7 +id[10466] = "2772-08-07T11:07:18" +ik[10466] = 138.35 +il[10466] = -116 +im[10466] = 0.1368 +ij[10466] = 14 +id[10467] = "2772-08-21T13:13:17" +ik[10467] = -1.996 +il[10467] = -10 +im[10467] = 0.1206 +ij[10467] = 4 +id[10468] = "2772-08-24T18:00:34" +ik[10468] = 43.547 +il[10468] = -51 +im[10468] = 0.0685 +ij[10468] = 1 +id[10469] = "2772-09-16T21:57:53" +ik[10469] = 2.496 +il[10469] = 116 +im[10469] = 0.1016 +ij[10469] = 27.4 +id[10470] = "2772-10-25T16:31:18" +ik[10470] = 0 +il[10470] = -142 +im[10470] = 0.045 +ij[10470] = 17 +id[10471] = "2772-11-21T04:03:31" +ik[10471] = 1.16 +il[10471] = -54 +im[10471] = 0.0063 +ij[10471] = 28.5 +id[10472] = "2772-12-03T06:57:00" +ik[10472] = 35.573 +il[10472] = 22 +im[10472] = 0.063 +ij[10472] = 9 +id[10473] = "2772-12-19T16:56:35" +ik[10473] = 0.058 +il[10473] = 34 +im[10473] = 0.0154 +ij[10473] = 27.3 +id[10474] = "2773-01-10T21:38:44" +ik[10474] = 0.264 +il[10474] = -179 +im[10474] = 0.0731 +ij[10474] = 28.6 +id[10475] = "2773-01-17T13:17:11" +ik[10475] = 0.456 +il[10475] = 12 +im[10475] = 0.0194 +ij[10475] = 27.5 +id[10476] = "2773-01-30T09:49:39" +ik[10476] = 0.454 +il[10476] = -171 +im[10476] = 0.0521 +ij[10476] = 28.2 +id[10477] = "2773-02-18T11:46:28" +ik[10477] = -26.158 +il[10477] = -14 +im[10477] = 0.0239 +ij[10477] = 15 +id[10478] = "2773-03-17T05:46:53" +ik[10478] = 1.28 +il[10478] = -26 +im[10478] = 0.013 +ij[10478] = 28.8 +id[10479] = "2773-03-28T22:08:15" +ik[10479] = 2.178 +il[10479] = -159 +im[10479] = 0.0491 +ij[10479] = 27.6 +id[10480] = "2773-04-18T16:16:18" +ik[10480] = 2.217 +il[10480] = 138 +im[10480] = 0.0307 +ij[10480] = 28.1 +id[10481] = "2773-06-21T08:00:34" +ik[10481] = 12 +il[10481] = 145 +im[10481] = 0.0545 +ij[10481] = 18 +id[10482] = "2773-07-07T17:14:53" +ik[10482] = 0.86 +il[10482] = 168 +im[10482] = 0.0452 +ij[10482] = 12 +id[10483] = "2773-09-21T01:00:56" +ik[10483] = 3.251 +il[10483] = -106 +im[10483] = 0.0054 +ij[10483] = 28.1 +id[10484] = "2773-10-25T21:08:26" +ik[10484] = 0.012 +il[10484] = -72 +im[10484] = 0.0619 +ij[10484] = 28.2 +id[10485] = "2773-11-05T03:27:49" +ik[10485] = 25.436 +il[10485] = -67 +im[10485] = 0.0171 +ij[10485] = 16 +id[10486] = "2773-12-25T00:39:40" +ik[10486] = 30.636 +il[10486] = 95 +im[10486] = 0.0773 +ij[10486] = 8 +id[10487] = "2773-12-28T12:02:26" +ik[10487] = 0.676 +il[10487] = -42 +im[10487] = 0.0464 +ij[10487] = 28.7 +id[10488] = "2774-03-02T16:06:30" +ik[10488] = 5.131 +il[10488] = 150 +im[10488] = 0.1007 +ij[10488] = 27.4 +id[10489] = "2774-03-10T03:50:32" +ik[10489] = 37.633 +il[10489] = 45 +im[10489] = 0.0454 +ij[10489] = 3 +id[10490] = "2774-03-13T02:17:18" +ik[10490] = -1.669 +il[10490] = 96 +im[10490] = 0.0303 +ij[10490] = 2 +id[10491] = "2774-03-24T09:41:44" +ik[10491] = 4.817 +il[10491] = 92 +im[10491] = 0.0547 +ij[10491] = 27.1 +id[10492] = "2774-05-14T11:07:48" +ik[10492] = 0 +il[10492] = -166 +im[10492] = 0.234 +ij[10492] = 13 +id[10493] = "2774-06-16T13:36:13" +ik[10493] = 2.68 +il[10493] = 91 +im[10493] = 0.0151 +ij[10493] = 11 +id[10494] = "2774-07-23T16:16:24" +ik[10494] = 70.21 +il[10494] = -141 +im[10494] = 0.1601 +ij[10494] = 7.122 +id[10495] = "2774-09-11T01:41:16" +ik[10495] = 119.61 +il[10495] = -158 +im[10495] = 0.1561 +ij[10495] = 14 +id[10496] = "2774-09-22T00:28:52" +ik[10496] = -2.313 +il[10496] = -32 +im[10496] = 0.0486 +ij[10496] = 4 +id[10497] = "2774-09-26T12:19:11" +ik[10497] = 0 +il[10497] = -165 +im[10497] = 0.1602 +ij[10497] = 17 +id[10498] = "2774-10-12T01:04:30" +ik[10498] = 46.363 +il[10498] = 156 +im[10498] = 0.1537 +ij[10498] = 1 +id[10499] = "2774-11-23T21:02:17" +ik[10499] = 0.338 +il[10499] = -82 +im[10499] = 0.1144 +ij[10499] = 27.3 +id[10500] = "2774-12-24T10:05:46" +ik[10500] = 0.521 +il[10500] = 21 +im[10500] = 0.0969 +ij[10500] = 27.5 +id[10501] = "2775-01-19T00:08:11" +ik[10501] = 0.546 +il[10501] = 59 +im[10501] = 0.0712 +ij[10501] = 28.5 +id[10502] = "2775-01-23T01:47:19" +ik[10502] = 1.472 +il[10502] = 73 +im[10502] = 0.0801 +ij[10502] = 28.6 +id[10503] = "2775-01-27T18:06:14" +ik[10503] = -26.328 +il[10503] = -126 +im[10503] = 0.0109 +ij[10503] = 15 +id[10504] = "2775-02-09T16:33:00" +ik[10504] = 34.336 +il[10504] = 21 +im[10504] = 0.0508 +ij[10504] = 9 +id[10505] = "2775-03-01T22:00:30" +ik[10505] = 1.666 +il[10505] = 133 +im[10505] = 0.0584 +ij[10505] = 28.8 +id[10506] = "2775-03-07T12:52:43" +ik[10506] = 1.889 +il[10506] = -37 +im[10506] = 0.0757 +ij[10506] = 27.6 +id[10507] = "2775-05-11T20:15:04" +ik[10507] = 3.827 +il[10507] = 118 +im[10507] = 0.0243 +ij[10507] = 27.2 +id[10508] = "2775-06-02T19:11:23" +ik[10508] = 12 +il[10508] = -15 +im[10508] = 0.0549 +ij[10508] = 18 +id[10509] = "2775-08-18T08:00:13" +ik[10509] = 1.14 +il[10509] = 165 +im[10509] = 0.0064 +ij[10509] = 12 +id[10510] = "2775-10-18T01:15:31" +ik[10510] = 25.644 +il[10510] = -28 +im[10510] = 0.0336 +ij[10510] = 16 +id[10511] = "2775-12-19T23:33:01" +ik[10511] = 0.333 +il[10511] = -108 +im[10511] = 0.0598 +ij[10511] = 28.7 +id[10512] = "2776-01-28T22:02:20" +ik[10512] = 31.389 +il[10512] = -65 +im[10512] = 0.0776 +ij[10512] = 8 +id[10513] = "2776-01-31T00:58:24" +ik[10513] = 4.686 +il[10513] = -89 +im[10513] = 0.0828 +ij[10513] = 27.4 +id[10514] = "2776-02-15T18:47:13" +ik[10514] = 5.139 +il[10514] = 153 +im[10514] = 0.0708 +ij[10514] = 27.1 +id[10515] = "2776-03-07T16:32:52" +ik[10515] = 23 +il[10515] = 25 +im[10515] = 0.016 +ij[10515] = 17 +id[10516] = "2776-05-09T19:09:33" +ik[10516] = 41.929 +il[10516] = -138 +im[10516] = 0.1467 +ij[10516] = 3 +id[10517] = "2776-05-23T08:35:53" +ik[10517] = 0.769 +il[10517] = 149 +im[10517] = 0.1764 +ij[10517] = 27.3 +id[10518] = "2776-06-04T21:03:33" +ik[10518] = -2.056 +il[10518] = 81 +im[10518] = 0.1684 +ij[10518] = 2 +id[10519] = "2776-07-14T17:59:30" +ik[10519] = 4.94 +il[10519] = 146 +im[10519] = 0.169 +ij[10519] = 28.2 +id[10520] = "2776-07-18T08:32:24" +ik[10520] = 5.614 +il[10520] = -37 +im[10520] = 0.3046 +ij[10520] = 27.5 +id[10521] = "2776-07-19T08:21:28" +ik[10521] = 5.618 +il[10521] = -25 +im[10521] = 0.3145 +ij[10521] = 27.5 +id[10522] = "2776-07-21T08:10:32" +ik[10522] = 5.651 +il[10522] = -3 +im[10522] = 0.2881 +ij[10522] = 27.5 +id[10523] = "2776-07-27T01:41:47" +ik[10523] = 0 +il[10523] = 149 +im[10523] = 0.103 +ij[10523] = 13 +id[10524] = "2776-08-02T07:59:38" +ik[10524] = 6.339 +il[10524] = 114 +im[10524] = 0.3439 +ij[10524] = 27.5 +id[10525] = "2776-08-25T21:34:27" +ik[10525] = 6.58 +il[10525] = 127 +im[10525] = 0.3184 +ij[10525] = 11 +id[10526] = "2776-09-26T09:18:41" +ik[10526] = 61.32 +il[10526] = 89 +im[10526] = 0.2917 +ij[10526] = 7.1028 +id[10527] = "2776-10-09T17:09:58" +ik[10527] = 3.601 +il[10527] = 102 +im[10527] = 0.3046 +ij[10527] = 28.2 +id[10528] = "2776-11-06T16:20:23" +ik[10528] = 102.61 +il[10528] = 28 +im[10528] = 0.2283 +ij[10528] = 14 +id[10529] = "2776-11-11T02:04:11" +ik[10529] = 1.606 +il[10529] = -75 +im[10529] = 0.0896 +ij[10529] = 27.5 +id[10530] = "2776-11-17T00:14:40" +ik[10530] = -2.254 +il[10530] = 10 +im[10530] = 0.1652 +ij[10530] = 4 +id[10531] = "2776-12-13T16:07:32" +ik[10531] = 43.343 +il[10531] = 30 +im[10531] = 0.0853 +ij[10531] = 1 +id[10532] = "2776-12-29T22:42:59" +ik[10532] = -26.432 +il[10532] = 87 +im[10532] = 0.117 +ij[10532] = 15 +id[10533] = "2777-01-30T02:12:56" +ik[10533] = 2.612 +il[10533] = -28 +im[10533] = 0.109 +ij[10533] = 28.6 +id[10534] = "2777-02-08T15:29:40" +ik[10534] = 1.486 +il[10534] = -136 +im[10534] = 0.055 +ij[10534] = 27.6 +id[10535] = "2777-02-09T08:01:09" +ik[10535] = 2.177 +il[10535] = -18 +im[10535] = 0.0679 +ij[10535] = 28.8 +id[10536] = "2777-03-18T08:20:51" +ik[10536] = 1.631 +il[10536] = -32 +im[10536] = 0.0568 +ij[10536] = 28.5 +id[10537] = "2777-03-31T06:39:13" +ik[10537] = 32.529 +il[10537] = 115 +im[10537] = 0.064 +ij[10537] = 9 +id[10538] = "2777-04-19T15:07:43" +ik[10538] = 3.49 +il[10538] = 171 +im[10538] = 0.007 +ij[10538] = 27.2 +id[10539] = "2777-05-13T09:43:12" +ik[10539] = 12 +il[10539] = 115 +im[10539] = 0.0602 +ij[10539] = 18 +id[10540] = "2777-06-10T15:49:48" +ik[10540] = 5.889 +il[10540] = -70 +im[10540] = 0.0588 +ij[10540] = 28.1 +id[10541] = "2777-09-23T03:30:00" +ik[10541] = 0.94 +il[10541] = 52 +im[10541] = 0.009 +ij[10541] = 12 +id[10542] = "2777-09-29T13:47:23" +ik[10542] = 25.802 +il[10542] = 156 +im[10542] = 0.0525 +ij[10542] = 16 +id[10543] = "2777-12-12T06:10:33" +ik[10543] = 0.065 +il[10543] = -95 +im[10543] = 0.0599 +ij[10543] = 28.7 +id[10544] = "2778-01-08T04:27:47" +ik[10544] = 4.379 +il[10544] = -173 +im[10544] = 0.0611 +ij[10544] = 27.4 +id[10545] = "2778-01-22T19:02:13" +ik[10545] = 5.423 +il[10545] = 113 +im[10545] = 0.0621 +ij[10545] = 27.1 +id[10546] = "2778-02-11T09:49:28" +ik[10546] = 0 +il[10546] = 79 +im[10546] = 0.053 +ij[10546] = 17 +id[10547] = "2778-03-11T02:43:39" +ik[10547] = 33.241 +il[10547] = 88 +im[10547] = 0.0733 +ij[10547] = 8 +id[10548] = "2778-04-15T05:51:49" +ik[10548] = 0.123 +il[10548] = 14 +im[10548] = 0.0209 +ij[10548] = 27.3 +id[10549] = "2778-05-16T17:31:47" +ik[10549] = 1.296 +il[10549] = 138 +im[10549] = 0.0769 +ij[10549] = 27.5 +id[10550] = "2778-06-14T07:45:46" +ik[10550] = -24.379 +il[10550] = -163 +im[10550] = 0.0855 +ij[10550] = 15 +id[10551] = "2778-07-17T21:28:30" +ik[10551] = 47.194 +il[10551] = -45 +im[10551] = 0.1445 +ij[10551] = 3 +id[10552] = "2778-08-06T03:52:40" +ik[10552] = 5.118 +il[10552] = 46 +im[10552] = 0.0501 +ij[10552] = 27.6 +id[10553] = "2778-08-06T07:33:42" +ik[10553] = 1.327 +il[10553] = -7 +im[10553] = 0.0438 +ij[10553] = 28.8 +id[10554] = "2778-08-06T21:01:25" +ik[10554] = 0.574 +il[10554] = 156 +im[10554] = 0.0205 +ij[10554] = 28.6 +id[10555] = "2778-08-16T12:59:08" +ik[10555] = -2.393 +il[10555] = 11 +im[10555] = 0.1581 +ij[10555] = 2 +id[10556] = "2778-10-05T16:20:54" +ik[10556] = 0 +il[10556] = 92 +im[10556] = 0.2184 +ij[10556] = 13 +id[10557] = "2778-11-10T10:45:34" +ik[10557] = 0.62 +il[10557] = 145 +im[10557] = 0.0583 +ij[10557] = 11 +id[10558] = "2778-12-11T15:23:29" +ik[10558] = 66.96 +il[10558] = -146 +im[10558] = 0.1921 +ij[10558] = 7.1275 +id[10559] = "2778-12-11T18:34:02" +ik[10559] = 3.519 +il[10559] = 164 +im[10559] = 0.1972 +ij[10559] = 28.8 +id[10560] = "2779-01-26T11:56:03" +ik[10560] = 3.682 +il[10560] = -23 +im[10560] = 0.1463 +ij[10560] = 28.6 +id[10561] = "2779-01-30T03:50:20" +ik[10561] = 116.48 +il[10561] = 133 +im[10561] = 0.0755 +ij[10561] = 14 +id[10562] = "2779-02-02T15:30:15" +ik[10562] = -1.819 +il[10562] = -9 +im[10562] = 0.0371 +ij[10562] = 4 +id[10563] = "2779-02-17T15:10:30" +ik[10563] = 39.008 +il[10563] = 137 +im[10563] = 0.0319 +ij[10563] = 1 +id[10564] = "2779-03-24T03:49:17" +ik[10564] = 2.912 +il[10564] = -87 +im[10564] = 0.0949 +ij[10564] = 27.2 +id[10565] = "2779-04-21T09:09:50" +ik[10565] = 12 +il[10565] = 98 +im[10565] = 0.0825 +ij[10565] = 18 +id[10566] = "2779-05-10T14:36:33" +ik[10566] = 31.481 +il[10566] = -162 +im[10566] = 0.0372 +ij[10566] = 9 +id[10567] = "2779-06-03T06:09:29" +ik[10567] = 0.884 +il[10567] = -172 +im[10567] = 0.0681 +ij[10567] = 28.5 +id[10568] = "2779-06-29T13:29:36" +ik[10568] = 0.595 +il[10568] = -32 +im[10568] = 0.0517 +ij[10568] = 28.2 +id[10569] = "2779-08-13T02:48:09" +ik[10569] = 0.802 +il[10569] = -167 +im[10569] = 0.0604 +ij[10569] = 28.1 +id[10570] = "2779-09-12T02:54:14" +ik[10570] = 25.939 +il[10570] = 130 +im[10570] = 0.0587 +ij[10570] = 16 +id[10571] = "2779-10-30T03:16:41" +ik[10571] = 0.37 +il[10571] = -124 +im[10571] = 0.0177 +ij[10571] = 12 +id[10572] = "2780-01-02T19:47:35" +ik[10572] = 5.656 +il[10572] = 91 +im[10572] = 0.0578 +ij[10572] = 27.1 +id[10573] = "2780-01-19T20:15:56" +ik[10573] = 2.788 +il[10573] = -117 +im[10573] = 0.0594 +ij[10573] = 28.1 +id[10574] = "2780-01-22T05:38:49" +ik[10574] = 0 +il[10574] = 124 +im[10574] = 0.0458 +ij[10574] = 17 +id[10575] = "2780-03-07T03:31:25" +ik[10575] = 1.821 +il[10575] = -128 +im[10575] = 0.0458 +ij[10575] = 28.2 +id[10576] = "2780-03-21T10:09:27" +ik[10576] = 0.259 +il[10576] = -92 +im[10576] = 0.0403 +ij[10576] = 27.3 +id[10577] = "2780-04-19T23:06:22" +ik[10577] = 0.856 +il[10577] = -4 +im[10577] = 0.0386 +ij[10577] = 27.5 +id[10578] = "2780-05-11T04:01:53" +ik[10578] = 35.8 +il[10578] = 125 +im[10578] = 0.071 +ij[10578] = 8 +id[10579] = "2780-05-19T05:34:36" +ik[10579] = -25.186 +il[10579] = -180 +im[10579] = 0.0412 +ij[10579] = 15 +id[10580] = "2780-06-30T16:57:01" +ik[10580] = 3.668 +il[10580] = 61 +im[10580] = 0.0567 +ij[10580] = 27.6 +id[10581] = "2780-07-06T13:57:34" +ik[10581] = 0.162 +il[10581] = 163 +im[10581] = 0.0666 +ij[10581] = 28.8 +id[10582] = "2780-08-03T04:33:32" +ik[10582] = 0.705 +il[10582] = -145 +im[10582] = 0.0496 +ij[10582] = 28.6 +id[10583] = "2780-09-02T04:57:21" +ik[10583] = 45.263 +il[10583] = 144 +im[10583] = 0.0879 +ij[10583] = 3 +id[10584] = "2780-09-07T02:08:52" +ik[10584] = 5.49 +il[10584] = -126 +im[10584] = 0.1411 +ij[10584] = 27.2 +id[10585] = "2780-09-22T23:11:36" +ik[10585] = -2.137 +il[10585] = 74 +im[10585] = 0.1178 +ij[10585] = 2 +id[10586] = "2780-09-29T05:34:44" +ik[10586] = 11 +il[10586] = 40 +im[10586] = 0.0604 +ij[10586] = 18 +id[10587] = "2780-11-22T03:50:50" +ik[10587] = 0 +il[10587] = -128 +im[10587] = 0.0204 +ij[10587] = 13 +id[10588] = "2780-12-08T03:04:41" +ik[10588] = 0.617 +il[10588] = 39 +im[10588] = 0.0856 +ij[10588] = 28.2 +id[10589] = "2780-12-10T22:55:22" +ik[10589] = 6.064 +il[10589] = 128 +im[10589] = 0.2115 +ij[10589] = 28.1 +id[10590] = "2780-12-26T09:39:23" +ik[10590] = 12 +il[10590] = 105 +im[10590] = 0.272 +ij[10590] = 17 +id[10591] = "2780-12-30T10:41:08" +ik[10591] = 3.24 +il[10591] = 119 +im[10591] = 0.1701 +ij[10591] = 11 +id[10592] = "2781-01-14T21:33:42" +ik[10592] = 2.945 +il[10592] = -74 +im[10592] = 0.0305 +ij[10592] = 28.1 +id[10593] = "2781-02-05T09:01:42" +ik[10593] = 75.22 +il[10593] = -51 +im[10593] = 0.1821 +ij[10593] = 7.153 +id[10594] = "2781-03-17T18:48:58" +ik[10594] = 12 +il[10594] = 180 +im[10594] = 0.1389 +ij[10594] = 18 +id[10595] = "2781-03-31T17:32:03" +ik[10595] = -1.6 +il[10595] = -30 +im[10595] = 0.1078 +ij[10595] = 4 +id[10596] = "2781-04-06T02:26:26" +ik[10596] = 37.188 +il[10596] = -113 +im[10596] = 0.0424 +ij[10596] = 1 +id[10597] = "2781-04-08T22:02:32" +ik[10597] = 137.76 +il[10597] = -20 +im[10597] = 0.0275 +ij[10597] = 14 +id[10598] = "2781-06-15T13:09:52" +ik[10598] = 31.323 +il[10598] = 35 +im[10598] = 0.0519 +ij[10598] = 9 +id[10599] = "2781-08-24T03:34:04" +ik[10599] = 26.069 +il[10599] = 128 +im[10599] = 0.0528 +ij[10599] = 16 +id[10600] = "2781-09-03T08:09:11" +ik[10600] = 0.61 +il[10600] = 158 +im[10600] = 0.0548 +ij[10600] = 28.5 +id[10601] = "2781-12-10T15:40:41" +ik[10601] = 0.43 +il[10601] = -58 +im[10601] = 0.0376 +ij[10601] = 12 +id[10602] = "2782-01-02T08:18:18" +ik[10602] = 0 +il[10602] = 90 +im[10602] = 0.0398 +ij[10602] = 17 +id[10603] = "2782-02-28T15:29:12" +ik[10603] = 0.285 +il[10603] = 166 +im[10603] = 0.0466 +ij[10603] = 27.3 +id[10604] = "2782-03-29T11:37:55" +ik[10604] = 0.673 +il[10604] = 151 +im[10604] = 0.0494 +ij[10604] = 27.5 +id[10605] = "2782-04-11T01:57:09" +ik[10605] = 2.129 +il[10605] = 58 +im[10605] = 0.071 +ij[10605] = 28.1 +id[10606] = "2782-04-28T03:50:31" +ik[10606] = -25.538 +il[10606] = -165 +im[10606] = 0.0449 +ij[10606] = 15 +id[10607] = "2782-06-07T08:44:50" +ik[10607] = 3.119 +il[10607] = 154 +im[10607] = 0.0775 +ij[10607] = 27.6 +id[10608] = "2782-06-19T03:08:11" +ik[10608] = 0.773 +il[10608] = -7 +im[10608] = 0.0647 +ij[10608] = 28.8 +id[10609] = "2782-08-01T09:32:59" +ik[10609] = 35.536 +il[10609] = -38 +im[10609] = 0.0687 +ij[10609] = 8 +id[10610] = "2782-08-09T19:06:46" +ik[10610] = 4.974 +il[10610] = -99 +im[10610] = 0.0272 +ij[10610] = 27.2 +id[10611] = "2782-08-11T14:17:05" +ik[10611] = 0.992 +il[10611] = -9 +im[10611] = 0.0085 +ij[10611] = 28.6 +id[10612] = "2782-08-28T21:46:36" +ik[10612] = 11 +il[10612] = 48 +im[10612] = 0.0551 +ij[10612] = 18 +id[10613] = "2782-10-20T12:19:26" +ik[10613] = 40.614 +il[10613] = -17 +im[10613] = 0.0424 +ij[10613] = 3 +id[10614] = "2782-10-24T03:40:04" +ik[10614] = -1.852 +il[10614] = 148 +im[10614] = 0.0446 +ij[10614] = 2 +id[10615] = "2782-12-27T22:03:00" +ik[10615] = 0 +il[10615] = 139 +im[10615] = 0.0972 +ij[10615] = 13 +id[10616] = "2783-02-06T18:02:01" +ik[10616] = 4.37 +il[10616] = -147 +im[10616] = 0.1228 +ij[10616] = 11 +id[10617] = "2783-03-16T10:32:12" +ik[10617] = 2.873 +il[10617] = 115 +im[10617] = 0.1583 +ij[10617] = 28.2 +id[10618] = "2783-03-19T07:17:53" +ik[10618] = 81.39 +il[10618] = -168 +im[10618] = 0.0728 +ij[10618] = 7.1869 +id[10619] = "2783-05-16T23:31:20" +ik[10619] = 37.234 +il[10619] = 146 +im[10619] = 0.0319 +ij[10619] = 1 +id[10620] = "2783-05-18T04:01:24" +ik[10620] = -1.557 +il[10620] = 89 +im[10620] = 0.0576 +ij[10620] = 4 +id[10621] = "2783-05-25T19:30:44" +ik[10621] = 148.89 +il[10621] = -70 +im[10621] = 0.0891 +ij[10621] = 14 +id[10622] = "2783-07-23T20:58:46" +ik[10622] = 32 +il[10622] = 118 +im[10622] = 0.0447 +ij[10622] = 9 +id[10623] = "2783-08-04T19:33:56" +ik[10623] = 26.203 +il[10623] = -106 +im[10623] = 0.0583 +ij[10623] = 16 +id[10624] = "2783-10-16T11:52:03" +ik[10624] = 3.921 +il[10624] = -4 +im[10624] = 0.0517 +ij[10624] = 28.1 +id[10625] = "2783-11-10T22:51:19" +ik[10625] = 3.647 +il[10625] = 85 +im[10625] = 0.0643 +ij[10625] = 27.4 +id[10626] = "2783-11-22T23:15:07" +ik[10626] = 0.601 +il[10626] = -168 +im[10626] = 0.0529 +ij[10626] = 28.7 +id[10627] = "2783-11-24T20:13:27" +ik[10627] = 6.11 +il[10627] = -101 +im[10627] = 0.0604 +ij[10627] = 27.1 +id[10628] = "2783-12-14T17:39:02" +ik[10628] = 0 +il[10628] = 137 +im[10628] = 0.0341 +ij[10628] = 17 +id[10629] = "2784-02-05T15:27:21" +ik[10629] = 1.06 +il[10629] = -20 +im[10629] = 0.0611 +ij[10629] = 12 +id[10630] = "2784-04-07T09:34:12" +ik[10630] = -25.761 +il[10630] = 102 +im[10630] = 0.0465 +ij[10630] = 15 +id[10631] = "2784-05-16T14:28:57" +ik[10631] = 2.783 +il[10631] = 57 +im[10631] = 0.0663 +ij[10631] = 27.6 +id[10632] = "2784-06-03T13:00:48" +ik[10632] = 1.171 +il[10632] = -98 +im[10632] = 0.0526 +ij[10632] = 28.8 +id[10633] = "2784-06-30T17:49:11" +ik[10633] = 5.717 +il[10633] = 96 +im[10633] = 0.0625 +ij[10633] = 28.1 +id[10634] = "2784-07-18T02:27:17" +ik[10634] = 4.648 +il[10634] = 137 +im[10634] = 0.0547 +ij[10634] = 27.2 +id[10635] = "2784-08-06T09:12:19" +ik[10635] = 12 +il[10635] = -136 +im[10635] = 0.0247 +ij[10635] = 18 +id[10636] = "2784-08-22T21:57:38" +ik[10636] = 0.822 +il[10636] = -167 +im[10636] = 0.0455 +ij[10636] = 28.6 +id[10637] = "2784-09-08T09:14:58" +ik[10637] = 4.104 +il[10637] = -176 +im[10637] = 0.0723 +ij[10637] = 28.2 +id[10638] = "2784-09-28T06:32:05" +ik[10638] = 33 +il[10638] = 58 +im[10638] = 0.0469 +ij[10638] = 8 +id[10639] = "2784-11-24T10:28:58" +ik[10639] = -1.667 +il[10639] = -168 +im[10639] = 0.064 +ij[10639] = 2 +id[10640] = "2784-12-01T15:55:26" +ik[10640] = 37.458 +il[10640] = -180 +im[10640] = 0.0809 +ij[10640] = 3 +id[10641] = "2785-01-29T19:31:12" +ik[10641] = 0 +il[10641] = -22 +im[10641] = 0.1676 +ij[10641] = 13 +id[10642] = "2785-03-11T22:48:15" +ik[10642] = 3.9 +il[10642] = -56 +im[10642] = 0.2063 +ij[10642] = 11 +id[10643] = "2785-04-22T18:33:48" +ik[10643] = 82.96 +il[10643] = -173 +im[10643] = 0.1512 +ij[10643] = 7.2106 +id[10644] = "2785-06-24T22:34:19" +ik[10644] = 38.854 +il[10644] = 17 +im[10644] = 0.0733 +ij[10644] = 1 +id[10645] = "2785-06-28T08:57:39" +ik[10645] = 149.56 +il[10645] = -106 +im[10645] = 0.1066 +ij[10645] = 14 +id[10646] = "2785-06-30T20:15:39" +ik[10646] = -1.654 +il[10646] = 109 +im[10646] = 0.093 +ij[10646] = 4 +id[10647] = "2785-07-12T01:26:45" +ik[10647] = 26.317 +il[10647] = 140 +im[10647] = 0.0954 +ij[10647] = 16 +id[10648] = "2785-09-06T03:32:05" +ik[10648] = 33.515 +il[10648] = -67 +im[10648] = 0.0671 +ij[10648] = 9 +id[10649] = "2785-10-21T03:00:55" +ik[10649] = 3.327 +il[10649] = 19 +im[10649] = 0.076 +ij[10649] = 27.4 +id[10650] = "2785-11-03T15:43:39" +ik[10650] = 0.986 +il[10650] = -39 +im[10650] = 0.064 +ij[10650] = 28.2 +id[10651] = "2785-11-04T03:59:25" +ik[10651] = 6.406 +il[10651] = 142 +im[10651] = 0.0659 +ij[10651] = 27.1 +id[10652] = "2785-11-14T19:27:47" +ik[10652] = 0.831 +il[10652] = 14 +im[10652] = 0.0469 +ij[10652] = 28.7 +id[10653] = "2785-11-24T18:21:40" +ik[10653] = 0 +il[10653] = 128 +im[10653] = 0.0311 +ij[10653] = 17 +id[10654] = "2785-12-31T17:10:50" +ik[10654] = 3.122 +il[10654] = 151 +im[10654] = 0.0614 +ij[10654] = 28.1 +id[10655] = "2786-01-19T00:27:27" +ik[10655] = 0.225 +il[10655] = -135 +im[10655] = 0.0582 +ij[10655] = 27.3 +id[10656] = "2786-03-19T01:02:05" +ik[10656] = -25.935 +il[10656] = 82 +im[10656] = 0.0481 +ij[10656] = 15 +id[10657] = "2786-04-19T09:10:28" +ik[10657] = 0.47 +il[10657] = -91 +im[10657] = 0.0198 +ij[10657] = 12 +id[10658] = "2786-07-18T01:22:25" +ik[10658] = 12 +il[10658] = -11 +im[10658] = 0.0248 +ij[10658] = 18 +id[10659] = "2786-08-26T01:51:32" +ik[10659] = 1.68 +il[10659] = 0 +im[10659] = 0.0391 +ij[10659] = 28.2 +id[10660] = "2786-09-07T00:56:13" +ik[10660] = 0.365 +il[10660] = 130 +im[10660] = 0.054 +ij[10660] = 28.6 +id[10661] = "2786-11-08T10:04:32" +ik[10661] = 31.278 +il[10661] = -124 +im[10661] = 0.0103 +ij[10661] = 8 +id[10662] = "2786-12-31T03:47:13" +ik[10662] = -1.584 +il[10662] = 120 +im[10662] = 0.0705 +ij[10662] = 2 +id[10663] = "2787-01-09T22:13:26" +ik[10663] = 36.193 +il[10663] = -62 +im[10663] = 0.1073 +ij[10663] = 3 +id[10664] = "2787-03-07T08:58:07" +ik[10664] = 0 +il[10664] = -40 +im[10664] = 0.1796 +ij[10664] = 13 +id[10665] = "2787-03-31T07:40:51" +ik[10665] = 1.442 +il[10665] = -162 +im[10665] = 0.1472 +ij[10665] = 28.2 +id[10666] = "2787-04-16T03:40:42" +ik[10666] = 2.16 +il[10666] = 37 +im[10666] = 0.2174 +ij[10666] = 11 +id[10667] = "2787-05-01T13:47:29" +ik[10667] = 0.455 +il[10667] = 176 +im[10667] = 0.2355 +ij[10667] = 28.1 +id[10668] = "2787-05-27T08:00:43" +ik[10668] = 80.96 +il[10668] = 152 +im[10668] = 0.2058 +ij[10668] = 7.1967 +id[10669] = "2787-06-16T21:02:32" +ik[10669] = 25.749 +il[10669] = 156 +im[10669] = 0.0035 +ij[10669] = 16 +id[10670] = "2787-07-28T00:30:35" +ik[10670] = 142.65 +il[10670] = 144 +im[10670] = 0.0536 +ij[10670] = 14 +id[10671] = "2787-08-07T12:13:23" +ik[10671] = 42.011 +il[10671] = 70 +im[10671] = 0.1003 +ij[10671] = 1 +id[10672] = "2787-08-10T04:53:00" +ik[10672] = -1.878 +il[10672] = -153 +im[10672] = 0.0503 +ij[10672] = 4 +id[10673] = "2787-09-28T14:51:32" +ik[10673] = 2.82 +il[10673] = 179 +im[10673] = 0.072 +ij[10673] = 27.4 +id[10674] = "2787-11-04T11:30:45" +ik[10674] = 0 +il[10674] = -129 +im[10674] = 0.043 +ij[10674] = 17 +id[10675] = "2787-11-05T19:58:45" +ik[10675] = 35.301 +il[10675] = 117 +im[10675] = 0.0213 +ij[10675] = 9 +id[10676] = "2787-11-05T21:05:20" +ik[10676] = 1.125 +il[10676] = 101 +im[10676] = 0.0206 +ij[10676] = 28.7 +id[10677] = "2787-12-29T09:33:03" +ik[10677] = 0.128 +il[10677] = 81 +im[10677] = 0.0722 +ij[10677] = 27.3 +id[10678] = "2788-01-27T00:25:26" +ik[10678] = 0.46 +il[10678] = 139 +im[10678] = 0.0713 +ij[10678] = 27.5 +id[10679] = "2788-02-27T10:59:54" +ik[10679] = -26.096 +il[10679] = -69 +im[10679] = 0.0514 +ij[10679] = 15 +id[10680] = "2788-03-17T12:30:55" +ik[10680] = 3.704 +il[10680] = 97 +im[10680] = 0.0196 +ij[10680] = 28.1 +id[10681] = "2788-04-01T01:18:45" +ik[10681] = 0.852 +il[10681] = 49 +im[10681] = 0.0083 +ij[10681] = 28.5 +id[10682] = "2788-04-05T19:37:28" +ik[10682] = 2.277 +il[10682] = -179 +im[10682] = 0.0566 +ij[10682] = 27.6 +id[10683] = "2788-06-18T17:38:02" +ik[10683] = 0.59 +il[10683] = -156 +im[10683] = 0.0597 +ij[10683] = 12 +id[10684] = "2788-06-28T12:44:00" +ik[10684] = 12 +il[10684] = -179 +im[10684] = 0.0318 +ij[10684] = 18 +id[10685] = "2788-08-25T21:36:31" +ik[10685] = 1.178 +il[10685] = -95 +im[10685] = 0.0421 +ij[10685] = 28.1 +id[10686] = "2788-09-23T15:32:41" +ik[10686] = 0.25 +il[10686] = -86 +im[10686] = 0.0445 +ij[10686] = 28.6 +id[10687] = "2788-11-12T14:09:19" +ik[10687] = 25.33 +il[10687] = 58 +im[10687] = 0.049 +ij[10687] = 16 +id[10688] = "2788-12-12T01:07:12" +ik[10688] = 30.62 +il[10688] = 177 +im[10688] = 0.0416 +ij[10688] = 8 +id[10689] = "2789-02-16T06:26:21" +ik[10689] = -1.612 +il[10689] = 13 +im[10689] = 0.1189 +ij[10689] = 2 +id[10690] = "2789-02-19T12:40:19" +ik[10690] = 36.795 +il[10690] = -49 +im[10690] = 0.1085 +ij[10690] = 3 +id[10691] = "2789-03-30T01:39:59" +ik[10691] = 5.256 +il[10691] = 123 +im[10691] = 0.1498 +ij[10691] = 27.4 +id[10692] = "2789-04-21T00:31:04" +ik[10692] = 0 +il[10692] = -12 +im[10692] = 0.0251 +ij[10692] = 13 +id[10693] = "2789-04-24T07:51:59" +ik[10693] = 2.25 +il[10693] = -91 +im[10693] = 0.1378 +ij[10693] = 28.2 +id[10694] = "2789-05-27T04:38:29" +ik[10694] = 0.8 +il[10694] = -114 +im[10694] = 0.2106 +ij[10694] = 11 +id[10695] = "2789-07-04T23:33:40" +ik[10695] = 74.96 +il[10695] = 140 +im[10695] = 0.2472 +ij[10695] = 7.1439 +id[10696] = "2789-08-23T21:01:40" +ik[10696] = 1.592 +il[10696] = -55 +im[10696] = 0.1037 +ij[10696] = 27.4 +id[10697] = "2789-08-27T05:50:30" +ik[10697] = 128.22 +il[10697] = -155 +im[10697] = 0.17 +ij[10697] = 14 +id[10698] = "2789-09-08T17:51:41" +ik[10698] = -2.197 +il[10698] = 148 +im[10698] = 0.1044 +ij[10698] = 4 +id[10699] = "2789-09-22T20:48:20" +ik[10699] = 45.695 +il[10699] = -118 +im[10699] = 0.1194 +ij[10699] = 1 +id[10700] = "2789-10-10T00:21:24" +ik[10700] = 0 +il[10700] = -3 +im[10700] = 0.1203 +ij[10700] = 17 +id[10701] = "2789-10-22T11:34:59" +ik[10701] = 1.666 +il[10701] = -48 +im[10701] = 0.1136 +ij[10701] = 28.7 +id[10702] = "2789-12-05T00:46:45" +ik[10702] = 0.117 +il[10702] = -177 +im[10702] = 0.0851 +ij[10702] = 27.3 +id[10703] = "2790-01-03T14:10:00" +ik[10703] = 0.471 +il[10703] = -89 +im[10703] = 0.0831 +ij[10703] = 27.5 +id[10704] = "2790-01-16T02:25:52" +ik[10704] = 35.054 +il[10704] = -151 +im[10704] = 0.0594 +ij[10704] = 9 +id[10705] = "2790-02-05T16:20:49" +ik[10705] = -26.263 +il[10705] = -160 +im[10705] = 0.0679 +ij[10705] = 15 +id[10706] = "2790-03-16T05:35:50" +ik[10706] = 2.009 +il[10706] = 11 +im[10706] = 0.0561 +ij[10706] = 27.6 +id[10707] = "2790-04-23T20:50:23" +ik[10707] = 2.079 +il[10707] = 155 +im[10707] = 0.0068 +ij[10707] = 28.8 +id[10708] = "2790-05-19T15:59:45" +ik[10708] = 3.933 +il[10708] = 117 +im[10708] = 0.0349 +ij[10708] = 27.2 +id[10709] = "2790-05-25T20:58:26" +ik[10709] = 1.061 +il[10709] = 101 +im[10709] = 0.0433 +ij[10709] = 28.1 +id[10710] = "2790-06-10T03:15:43" +ik[10710] = 12 +il[10710] = 146 +im[10710] = 0.0403 +ij[10710] = 18 +id[10711] = "2790-08-03T01:13:09" +ik[10711] = 1.09 +il[10711] = -20 +im[10711] = 0.0008 +ij[10711] = 12 +id[10712] = "2790-10-13T09:16:14" +ik[10712] = 0.896 +il[10712] = 32 +im[10712] = 0.0059 +ij[10712] = 28.6 +id[10713] = "2790-10-25T00:56:11" +ik[10713] = 25.572 +il[10713] = -91 +im[10713] = 0.0393 +ij[10713] = 16 +id[10714] = "2791-01-13T13:56:07" +ik[10714] = 6.342 +il[10714] = 127 +im[10714] = 0.0733 +ij[10714] = 28.2 +id[10715] = "2791-01-14T21:45:52" +ik[10715] = 30.969 +il[10715] = 22 +im[10715] = 0.0769 +ij[10715] = 8 +id[10716] = "2791-02-10T03:10:13" +ik[10716] = 4.836 +il[10716] = -170 +im[10716] = 0.0746 +ij[10716] = 27.4 +id[10717] = "2791-02-26T21:15:17" +ik[10717] = 5.008 +il[10717] = 78 +im[10717] = 0.0993 +ij[10717] = 27.1 +id[10718] = "2791-03-21T13:19:58" +ik[10718] = 23 +il[10718] = 52 +im[10718] = 0.0469 +ij[10718] = 17 +id[10719] = "2791-04-13T19:58:22" +ik[10719] = 39.827 +il[10719] = 172 +im[10719] = 0.0921 +ij[10719] = 3 +id[10720] = "2791-04-16T04:13:29" +ik[10720] = 0.14 +il[10720] = 71 +im[10720] = 0.0276 +ij[10720] = 28.7 +id[10721] = "2791-04-30T18:57:29" +ik[10721] = -1.853 +il[10721] = -12 +im[10721] = 0.0466 +ij[10721] = 2 +id[10722] = "2791-06-27T05:50:59" +ik[10722] = 0 +il[10722] = 8 +im[10722] = 0.0426 +ij[10722] = 13 +id[10723] = "2791-07-26T10:43:49" +ik[10723] = 5.82 +il[10723] = -158 +im[10723] = 0.2195 +ij[10723] = 11 +id[10724] = "2791-08-10T14:21:29" +ik[10724] = 4.765 +il[10724] = 113 +im[10724] = 0.3489 +ij[10724] = 28.2 +id[10725] = "2791-08-29T12:01:44" +ik[10725] = 63.26 +il[10725] = -26 +im[10725] = 0.2186 +ij[10725] = 7.1011 +id[10726] = "2791-09-05T15:35:59" +ik[10726] = 5.982 +il[10726] = -9 +im[10726] = 0.2552 +ij[10726] = 28.7 +id[10727] = "2791-10-11T21:50:35" +ik[10727] = 106.67 +il[10727] = -106 +im[10727] = 0.1054 +ij[10727] = 14 +id[10728] = "2791-10-21T13:25:56" +ik[10728] = -2.366 +il[10728] = 116 +im[10728] = 0.1931 +ij[10728] = 4 +id[10729] = "2791-10-29T12:14:35" +ik[10729] = 1.31 +il[10729] = -148 +im[10729] = 0.0848 +ij[10729] = 27.3 +id[10730] = "2791-11-16T17:26:18" +ik[10730] = 45.246 +il[10730] = -48 +im[10730] = 0.1417 +ij[10730] = 1 +id[10731] = "2791-12-04T10:58:36" +ik[10731] = 0.785 +il[10731] = -138 +im[10731] = 0.1451 +ij[10731] = 27.5 +id[10732] = "2792-01-12T04:36:33" +ik[10732] = -26.426 +il[10732] = -29 +im[10732] = 0.0812 +ij[10732] = 15 +id[10733] = "2792-02-20T19:15:55" +ik[10733] = 1.663 +il[10733] = 129 +im[10733] = 0.0231 +ij[10733] = 27.6 +id[10734] = "2792-03-13T07:32:05" +ik[10734] = 33.165 +il[10734] = 149 +im[10734] = 0.0771 +ij[10734] = 9 +id[10735] = "2792-04-08T10:05:02" +ik[10735] = 2.43 +il[10735] = -2 +im[10735] = 0.0644 +ij[10735] = 28.8 +id[10736] = "2792-04-26T22:12:55" +ik[10736] = 1.06 +il[10736] = -10 +im[10736] = 0.0639 +ij[10736] = 28.2 +id[10737] = "2792-04-28T06:43:21" +ik[10737] = 3.638 +il[10737] = -125 +im[10737] = 0.0531 +ij[10737] = 27.2 +id[10738] = "2792-05-21T04:46:07" +ik[10738] = 12 +il[10738] = 121 +im[10738] = 0.0527 +ij[10738] = 18 +id[10739] = "2792-09-09T01:46:03" +ik[10739] = 1.06 +il[10739] = 155 +im[10739] = 0.0071 +ij[10739] = 12 +id[10740] = "2792-10-06T09:46:58" +ik[10740] = 25.745 +il[10740] = 147 +im[10740] = 0.0141 +ij[10740] = 16 +id[10741] = "2792-12-25T09:20:50" +ik[10741] = 1.698 +il[10741] = -151 +im[10741] = 0.0678 +ij[10741] = 28.2 +id[10742] = "2793-01-16T08:03:48" +ik[10742] = 4.488 +il[10742] = 77 +im[10742] = 0.0156 +ij[10742] = 27.4 +id[10743] = "2793-01-31T06:13:25" +ik[10743] = 5.323 +il[10743] = -115 +im[10743] = 0.0108 +ij[10743] = 27.1 +id[10744] = "2793-02-20T03:38:53" +ik[10744] = 0 +il[10744] = 112 +im[10744] = 0.0819 +ij[10744] = 17 +id[10745] = "2793-02-21T05:53:25" +ik[10745] = 32.381 +il[10745] = 89 +im[10745] = 0.0831 +ij[10745] = 8 +id[10746] = "2793-03-24T16:47:35" +ik[10746] = 0.157 +il[10746] = -137 +im[10746] = 0.0774 +ij[10746] = 28.7 +id[10747] = "2793-04-26T18:46:10" +ik[10747] = 0.026 +il[10747] = 146 +im[10747] = 0.0121 +ij[10747] = 27.3 +id[10748] = "2793-05-30T09:42:07" +ik[10748] = 1.717 +il[10748] = -119 +im[10748] = 0.1321 +ij[10748] = 27.5 +id[10749] = "2793-06-24T02:18:23" +ik[10749] = 45.701 +il[10749] = -132 +im[10749] = 0.0585 +ij[10749] = 3 +id[10750] = "2793-07-24T23:52:37" +ik[10750] = -2.356 +il[10750] = -159 +im[10750] = 0.1726 +ij[10750] = 2 +id[10751] = "2793-09-10T21:51:06" +ik[10751] = 0 +il[10751] = -22 +im[10751] = 0.272 +ij[10751] = 13 +id[10752] = "2793-09-19T23:18:18" +ik[10752] = 3.291 +il[10752] = 45 +im[10752] = 0.3374 +ij[10752] = 28.2 +id[10753] = "2793-10-14T19:17:36" +ik[10753] = 3.45 +il[10753] = -33 +im[10753] = 0.2417 +ij[10753] = 11 +id[10754] = "2793-11-12T22:55:42" +ik[10754] = 63.04 +il[10754] = 37 +im[10754] = 0.283 +ij[10754] = 7.1191 +id[10755] = "2793-12-09T13:09:33" +ik[10755] = -25.519 +il[10755] = 79 +im[10755] = 0.1826 +ij[10755] = 15 +id[10756] = "2793-12-27T16:28:27" +ik[10756] = 107.78 +il[10756] = -157 +im[10756] = 0.1738 +ij[10756] = 14 +id[10757] = "2794-01-05T06:31:44" +ik[10757] = -1.971 +il[10757] = 74 +im[10757] = 0.1008 +ij[10757] = 4 +id[10758] = "2794-01-14T16:57:12" +ik[10758] = 1.155 +il[10758] = 7 +im[10758] = 0.082 +ij[10758] = 27.6 +id[10759] = "2794-01-25T09:29:22" +ik[10759] = 40.395 +il[10759] = -140 +im[10759] = 0.1264 +ij[10759] = 1 +id[10760] = "2794-03-21T07:51:37" +ik[10760] = 2.933 +il[10760] = 43 +im[10760] = 0.0844 +ij[10760] = 28.8 +id[10761] = "2794-04-04T16:54:00" +ik[10761] = 3.189 +il[10761] = 43 +im[10761] = 0.0898 +ij[10761] = 27.2 +id[10762] = "2794-04-25T15:13:25" +ik[10762] = 31.783 +il[10762] = -95 +im[10762] = 0.0145 +ij[10762] = 9 +id[10763] = "2794-04-30T13:11:17" +ik[10763] = 12 +il[10763] = -17 +im[10763] = 0.0602 +ij[10763] = 18 +id[10764] = "2794-07-23T15:02:05" +ik[10764] = 1.287 +il[10764] = 39 +im[10764] = 0.024 +ij[10764] = 28.1 +id[10765] = "2794-09-18T23:56:57" +ik[10765] = 25.888 +il[10765] = 95 +im[10765] = 0.0195 +ij[10765] = 16 +id[10766] = "2794-10-15T10:32:16" +ik[10766] = 0.63 +il[10766] = -157 +im[10766] = 0.0087 +ij[10766] = 12 +id[10767] = "2794-12-18T12:39:41" +ik[10767] = 1.747 +il[10767] = -92 +im[10767] = 0.0552 +ij[10767] = 28.1 +id[10768] = "2794-12-27T04:28:18" +ik[10768] = 4.224 +il[10768] = 113 +im[10768] = 0.0042 +ij[10768] = 27.4 +id[10769] = "2795-01-10T11:30:38" +ik[10769] = 5.57 +il[10769] = 143 +im[10769] = 0.0058 +ij[10769] = 27.1 +id[10770] = "2795-01-29T22:01:37" +ik[10770] = 0 +il[10770] = 179 +im[10770] = 0.0618 +ij[10770] = 17 +id[10771] = "2795-03-13T17:11:17" +ik[10771] = 0.253 +il[10771] = -63 +im[10771] = 0.0562 +ij[10771] = 28.7 +id[10772] = "2795-03-31T04:58:53" +ik[10772] = 0.227 +il[10772] = -75 +im[10772] = 0.0844 +ij[10772] = 27.3 +id[10773] = "2795-04-14T09:52:31" +ik[10773] = 34.835 +il[10773] = -13 +im[10773] = 0.0791 +ij[10773] = 8 +id[10774] = "2795-04-30T05:59:46" +ik[10774] = 0.976 +il[10774] = -164 +im[10774] = 0.0919 +ij[10774] = 27.5 +id[10775] = "2795-05-29T08:15:23" +ik[10775] = -24.966 +il[10775] = 81 +im[10775] = 0.1015 +ij[10775] = 15 +id[10776] = "2795-07-12T17:57:04" +ik[10776] = 4.031 +il[10776] = 6 +im[10776] = 0.0979 +ij[10776] = 27.6 +id[10777] = "2795-08-16T06:18:17" +ik[10777] = 46.772 +il[10777] = 158 +im[10777] = 0.0272 +ij[10777] = 3 +id[10778] = "2795-09-08T06:59:12" +ik[10778] = 0.12 +il[10778] = 14 +im[10778] = 0.1372 +ij[10778] = 28.8 +id[10779] = "2795-09-10T21:08:12" +ik[10779] = -2.262 +il[10779] = -173 +im[10779] = 0.0726 +ij[10779] = 2 +id[10780] = "2795-09-28T02:08:36" +ik[10780] = 5.708 +il[10780] = -79 +im[10780] = 0.056 +ij[10780] = 27.2 +id[10781] = "2795-11-06T16:28:57" +ik[10781] = 0 +il[10781] = 94 +im[10781] = 0.0739 +ij[10781] = 13 +id[10782] = "2795-12-13T19:38:03" +ik[10782] = 2.09 +il[10782] = 27 +im[10782] = 0.2392 +ij[10782] = 11 +id[10783] = "2796-01-01T08:38:36" +ik[10783] = 4.224 +il[10783] = -160 +im[10783] = 0.0673 +ij[10783] = 28.8 +id[10784] = "2796-01-17T15:33:33" +ik[10784] = 71.96 +il[10784] = -115 +im[10784] = 0.1691 +ij[10784] = 7.1414 +id[10785] = "2796-01-20T06:32:31" +ik[10785] = 3.146 +il[10785] = 39 +im[10785] = 0.2058 +ij[10785] = 28.2 +id[10786] = "2796-02-08T11:52:01" +ik[10786] = 4.153 +il[10786] = 141 +im[10786] = 0.0781 +ij[10786] = 28.8 +id[10787] = "2796-02-23T17:03:18" +ik[10787] = 2.106 +il[10787] = -154 +im[10787] = 0.0264 +ij[10787] = 27.2 +id[10788] = "2796-03-11T00:37:59" +ik[10788] = -1.66 +il[10788] = -114 +im[10788] = 0.0482 +ij[10788] = 4 +id[10789] = "2796-03-15T22:03:25" +ik[10789] = 130.23 +il[10789] = -29 +im[10789] = 0.1204 +ij[10789] = 14 +id[10790] = "2796-03-19T15:15:15" +ik[10790] = 37.644 +il[10790] = 108 +im[10790] = 0.0888 +ij[10790] = 1 +id[10791] = "2796-04-03T03:50:07" +ik[10791] = 12 +il[10791] = 56 +im[10791] = 0.0741 +ij[10791] = 18 +id[10792] = "2796-06-01T06:49:51" +ik[10792] = 31.278 +il[10792] = -150 +im[10792] = 0.0199 +ij[10792] = 9 +id[10793] = "2796-08-31T07:22:50" +ik[10793] = 26.02 +il[10793] = -6 +im[10793] = 0.0472 +ij[10793] = 16 +id[10794] = "2796-09-20T07:44:47" +ik[10794] = 0.906 +il[10794] = -168 +im[10794] = 0.0491 +ij[10794] = 28.1 +id[10795] = "2796-11-22T23:52:17" +ik[10795] = 0.1 +il[10795] = -145 +im[10795] = 0.0163 +ij[10795] = 12 +id[10796] = "2797-01-09T16:51:42" +ik[10796] = 0 +il[10796] = -112 +im[10796] = 0.0561 +ij[10796] = 17 +id[10797] = "2797-02-10T03:06:51" +ik[10797] = 0.316 +il[10797] = 32 +im[10797] = 0.0623 +ij[10797] = 28.5 +id[10798] = "2797-03-04T12:58:51" +ik[10798] = 0.296 +il[10798] = 97 +im[10798] = 0.0198 +ij[10798] = 28.7 +id[10799] = "2797-03-08T15:00:40" +ik[10799] = 0.282 +il[10799] = 116 +im[10799] = 0.0631 +ij[10799] = 27.3 +id[10800] = "2797-03-09T08:58:32" +ik[10800] = 2.417 +il[10800] = -146 +im[10800] = 0.0663 +ij[10800] = 28.1 +id[10801] = "2797-04-06T16:07:25" +ik[10801] = 0.731 +il[10801] = 17 +im[10801] = 0.0679 +ij[10801] = 27.5 +id[10802] = "2797-05-06T04:45:16" +ik[10802] = -25.425 +il[10802] = 112 +im[10802] = 0.0756 +ij[10802] = 15 +id[10803] = "2797-06-16T00:50:54" +ik[10803] = 3.294 +il[10803] = -152 +im[10803] = 0.0455 +ij[10803] = 27.6 +id[10804] = "2797-06-26T06:56:06" +ik[10804] = 5.088 +il[10804] = -142 +im[10804] = 0.0097 +ij[10804] = 28.2 +id[10805] = "2797-07-01T07:20:58" +ik[10805] = 36.213 +il[10805] = -99 +im[10805] = 0.0714 +ij[10805] = 8 +id[10806] = "2797-08-11T21:49:37" +ik[10806] = 0.906 +il[10806] = 92 +im[10806] = 0.0373 +ij[10806] = 28.8 +id[10807] = "2797-08-19T11:25:54" +ik[10807] = 5.143 +il[10807] = -38 +im[10807] = 0.0735 +ij[10807] = 27.2 +id[10808] = "2797-09-07T20:56:56" +ik[10808] = 11 +il[10808] = 10 +im[10808] = 0.0092 +ij[10808] = 18 +id[10809] = "2797-10-01T20:58:16" +ik[10809] = 42.355 +il[10809] = -116 +im[10809] = 0.101 +ij[10809] = 3 +id[10810] = "2797-10-12T02:51:20" +ik[10810] = -1.953 +il[10810] = -105 +im[10810] = 0.1182 +ij[10810] = 2 +id[10811] = "2797-12-14T22:03:54" +ik[10811] = 0 +il[10811] = -133 +im[10811] = 0.0218 +ij[10811] = 13 +id[10812] = "2798-01-23T16:40:17" +ik[10812] = 4.17 +il[10812] = -50 +im[10812] = 0.0535 +ij[10812] = 11 +id[10813] = "2798-02-11T15:25:18" +ik[10813] = 4.915 +il[10813] = -40 +im[10813] = 0.2052 +ij[10813] = 28.1 +id[10814] = "2798-03-04T03:12:31" +ik[10814] = 79.21 +il[10814] = -28 +im[10814] = 0.0484 +ij[10814] = 7.1736 +id[10815] = "2798-04-30T07:54:27" +ik[10815] = -1.556 +il[10815] = 76 +im[10815] = 0.0125 +ij[10815] = 4 +id[10816] = "2798-05-01T11:51:12" +ik[10816] = 37.022 +il[10816] = 28 +im[10816] = 0.0347 +ij[10816] = 1 +id[10817] = "2798-05-09T13:46:20" +ik[10817] = 145.65 +il[10817] = 76 +im[10817] = 0.0966 +ij[10817] = 14 +id[10818] = "2798-07-08T12:12:04" +ik[10818] = 31.63 +il[10818] = -46 +im[10818] = 0.0324 +ij[10818] = 9 +id[10819] = "2798-08-12T15:24:39" +ik[10819] = 26.152 +il[10819] = -114 +im[10819] = 0.0608 +ij[10819] = 16 +id[10820] = "2798-08-28T18:28:48" +ik[10820] = 0.209 +il[10820] = -4 +im[10820] = 0.0623 +ij[10820] = 28.2 +id[10821] = "2798-09-14T23:08:41" +ik[10821] = 5.444 +il[10821] = 93 +im[10821] = 0.0582 +ij[10821] = 28.1 +id[10822] = "2798-12-22T01:59:05" +ik[10822] = 0 +il[10822] = -64 +im[10822] = 0.0569 +ij[10822] = 17 +id[10823] = "2799-01-11T22:47:24" +ik[10823] = 0.9 +il[10823] = -168 +im[10823] = 0.0272 +ij[10823] = 12 +id[10824] = "2799-04-11T20:20:29" +ik[10824] = 0.287 +il[10824] = -164 +im[10824] = 0.0127 +ij[10824] = 28.5 +id[10825] = "2799-04-16T02:17:00" +ik[10825] = -25.683 +il[10825] = 146 +im[10825] = 0.0594 +ij[10825] = 15 +id[10826] = "2799-05-25T14:27:41" +ik[10826] = 2.901 +il[10826] = -7 +im[10826] = 0.0187 +ij[10826] = 27.6 +id[10827] = "2799-05-29T11:21:40" +ik[10827] = 3.546 +il[10827] = 77 +im[10827] = 0.0598 +ij[10827] = 28.1 +id[10828] = "2799-06-11T01:41:41" +ik[10828] = 2.006 +il[10828] = -14 +im[10828] = 0.0472 +ij[10828] = 28.2 +id[10829] = "2799-07-26T14:31:11" +ik[10829] = 1.305 +il[10829] = -119 +im[10829] = 0.0645 +ij[10829] = 28.8 +id[10830] = "2799-07-27T06:36:32" +ik[10830] = 4.762 +il[10830] = 6 +im[10830] = 0.0684 +ij[10830] = 27.2 +id[10831] = "2799-08-15T09:57:42" +ik[10831] = 12 +il[10831] = 143 +im[10831] = 0.0582 +ij[10831] = 18 +id[10832] = "2799-09-09T09:15:11" +ik[10832] = 33.956 +il[10832] = 37 +im[10832] = 0.0853 +ij[10832] = 8 +id[10833] = "2799-11-12T13:52:41" +ik[10833] = -1.727 +il[10833] = -130 +im[10833] = 0.0208 +ij[10833] = 2 +id[10834] = "2799-11-16T15:22:19" +ik[10834] = 38.46 +il[10834] = -113 +im[10834] = 0.0706 +ij[10834] = 3 +id[10835] = "2800-01-17T13:46:47" +ik[10835] = 0 +il[10835] = 150 +im[10835] = 0.1286 +ij[10835] = 13 +id[10836] = "2800-02-07T09:12:04" +ik[10836] = 1.837 +il[10836] = 59 +im[10836] = 0.127 +ij[10836] = 28.2 +id[10837] = "2800-02-27T19:27:24" +ik[10837] = 4.23 +il[10837] = 81 +im[10837] = 0.1614 +ij[10837] = 11 +id[10838] = "2800-04-09T12:49:23" +ik[10838] = 82.96 +il[10838] = 1 +im[10838] = 0.047 +ij[10838] = 7.2044 +id[10839] = "2800-06-09T04:27:15" +ik[10839] = 38.033 +il[10839] = -11 +im[10839] = 0.0808 +ij[10839] = 1 +id[10840] = "2800-06-13T13:40:15" +ik[10840] = -1.6 +il[10840] = -107 +im[10840] = 0.1108 +ij[10840] = 4 +id[10841] = "2800-06-15T21:21:11" +ik[10841] = 150.32 +il[10841] = 161 +im[10841] = 0.0923 +ij[10841] = 14 +id[10842] = "2800-07-21T14:40:35" +ik[10842] = 26.283 +il[10842] = -113 +im[10842] = 0.0464 +ij[10842] = 16 +id[10843] = "2800-08-18T05:20:57" +ik[10843] = 32.832 +il[10843] = -65 +im[10843] = 0.0295 +ij[10843] = 9 +id[10844] = "2800-10-29T02:15:47" +ik[10844] = 3.465 +il[10844] = -40 +im[10844] = 0.0288 +ij[10844] = 27.4 +id[10845] = "2800-11-12T01:10:20" +ik[10845] = 6.279 +il[10845] = 113 +im[10845] = 0.0242 +ij[10845] = 27.1 +id[10846] = "2800-11-30T23:27:27" +ik[10846] = 3.015 +il[10846] = -36 +im[10846] = 0.0609 +ij[10846] = 28.1 +id[10847] = "2800-12-02T07:24:29" +ik[10847] = 0 +il[10847] = -143 +im[10847] = 0.0643 +ij[10847] = 17 +id[10848] = "2801-03-21T07:46:04" +ik[10848] = 0.87 +il[10848] = -134 +im[10848] = 0.005 +ij[10848] = 12 +id[10849] = "2801-03-26T15:58:01" +ik[10849] = -25.871 +il[10849] = -71 +im[10849] = 0.0548 +ij[10849] = 15 +id[10850] = "2801-07-05T22:26:06" +ik[10850] = 4.491 +il[10850] = 124 +im[10850] = 0.059 +ij[10850] = 27.2 +id[10851] = "2801-07-11T23:43:48" +ik[10851] = 1.556 +il[10851] = 167 +im[10851] = 0.0439 +ij[10851] = 28.8 +id[10852] = "2801-07-25T12:20:12" +ik[10852] = 12 +il[10852] = 109 +im[10852] = 0.044 +ij[10852] = 18 +id[10853] = "2801-10-24T14:56:31" +ik[10853] = 31.822 +il[10853] = -127 +im[10853] = 0.0146 +ij[10853] = 8 +id[10854] = "2801-12-16T01:10:55" +ik[10854] = -1.605 +il[10854] = -133 +im[10854] = 0.0756 +ij[10854] = 2 +id[10855] = "2801-12-25T18:05:11" +ik[10855] = 36.472 +il[10855] = 67 +im[10855] = 0.0986 +ij[10855] = 3 +id[10856] = "2802-02-20T21:21:39" +ik[10856] = 0 +il[10856] = -151 +im[10856] = 0.1635 +ij[10856] = 13 +id[10857] = "2802-02-22T20:07:05" +ik[10857] = 5.791 +il[10857] = -114 +im[10857] = 0.1396 +ij[10857] = 28.2 +id[10858] = "2802-04-02T01:07:51" +ik[10858] = 2.99 +il[10858] = 157 +im[10858] = 0.2299 +ij[10858] = 11 +id[10859] = "2802-04-21T05:57:55" +ik[10859] = 0.015 +il[10859] = 47 +im[10859] = 0.0157 +ij[10859] = 28.1 +id[10860] = "2802-05-07T20:20:31" +ik[10860] = 0.909 +il[10860] = -9 +im[10860] = 0.1042 +ij[10860] = 28.2 +id[10861] = "2802-05-13T20:24:15" +ik[10861] = 81.96 +il[10861] = 48 +im[10861] = 0.1649 +ij[10861] = 7.2079 +id[10862] = "2802-06-24T16:33:31" +ik[10862] = 26.244 +il[10862] = 152 +im[10862] = 0.1226 +ij[10862] = 16 +id[10863] = "2802-07-16T17:30:06" +ik[10863] = 145.84 +il[10863] = -8 +im[10863] = 0.0835 +ij[10863] = 14 +id[10864] = "2802-07-20T22:30:17" +ik[10864] = 40.604 +il[10864] = -42 +im[10864] = 0.1191 +ij[10864] = 1 +id[10865] = "2802-07-26T19:38:29" +ik[10865] = -1.775 +il[10865] = 58 +im[10865] = 0.0364 +ij[10865] = 4 +id[10866] = "2802-10-07T23:22:22" +ik[10866] = 3.055 +il[10866] = -6 +im[10866] = 0.0192 +ij[10866] = 27.4 +id[10867] = "2802-10-10T19:04:04" +ik[10867] = 34.678 +il[10867] = 87 +im[10867] = 0.063 +ij[10867] = 9 +id[10868] = "2802-11-12T16:28:29" +ik[10868] = 0 +il[10868] = 88 +im[10868] = 0.0812 +ij[10868] = 17 +id[10869] = "2803-01-06T16:07:28" +ik[10869] = 0.177 +il[10869] = -86 +im[10869] = 0.0574 +ij[10869] = 27.3 +id[10870] = "2803-02-04T03:59:56" +ik[10870] = 0.47 +il[10870] = 16 +im[10870] = 0.0478 +ij[10870] = 27.5 +id[10871] = "2803-02-05T18:30:55" +ik[10871] = 0.597 +il[10871] = 174 +im[10871] = 0.0606 +ij[10871] = 28.6 +id[10872] = "2803-02-10T06:24:17" +ik[10872] = 0.082 +il[10872] = 40 +im[10872] = 0.0589 +ij[10872] = 28.7 +id[10873] = "2803-02-15T08:58:12" +ik[10873] = 4.109 +il[10873] = 52 +im[10873] = 0.0077 +ij[10873] = 28.1 +id[10874] = "2803-03-07T05:28:53" +ik[10874] = -26.035 +il[10874] = -51 +im[10874] = 0.059 +ij[10874] = 15 +id[10875] = "2803-03-13T11:56:56" +ik[10875] = 1.249 +il[10875] = -87 +im[10875] = 0.0343 +ij[10875] = 28.2 +id[10876] = "2803-05-29T06:25:11" +ik[10876] = 0.23 +il[10876] = 24 +im[10876] = 0.0178 +ij[10876] = 12 +id[10877] = "2803-07-06T18:33:39" +ik[10877] = 12 +il[10877] = 18 +im[10877] = 0.0321 +ij[10877] = 18 +id[10878] = "2803-08-20T03:00:56" +ik[10878] = 0.268 +il[10878] = -28 +im[10878] = 0.0292 +ij[10878] = 28.5 +id[10879] = "2803-11-11T08:57:18" +ik[10879] = 3.773 +il[10879] = -32 +im[10879] = 0.0651 +ij[10879] = 28.2 +id[10880] = "2803-11-21T08:54:19" +ik[10880] = 25.198 +il[10880] = 65 +im[10880] = 0.0659 +ij[10880] = 16 +id[10881] = "2803-11-29T22:56:57" +ik[10881] = 30.756 +il[10881] = -63 +im[10881] = 0.0035 +ij[10881] = 8 +id[10882] = "2804-01-27T10:06:03" +ik[10882] = -1.585 +il[10882] = -27 +im[10882] = 0.0272 +ij[10882] = 2 +id[10883] = "2804-02-03T14:18:14" +ik[10883] = 36.319 +il[10883] = -21 +im[10883] = 0.1077 +ij[10883] = 3 +id[10884] = "2804-04-01T17:30:34" +ik[10884] = 0 +il[10884] = 127 +im[10884] = 0.129 +ij[10884] = 13 +id[10885] = "2804-05-09T11:54:58" +ik[10885] = 0.34 +il[10885] = -173 +im[10885] = 0.2437 +ij[10885] = 11 +id[10886] = "2804-05-24T02:41:43" +ik[10886] = 1.107 +il[10886] = -95 +im[10886] = 0.2292 +ij[10886] = 28.2 +id[10887] = "2804-06-18T05:19:29" +ik[10887] = 77.49 +il[10887] = 102 +im[10887] = 0.2264 +ij[10887] = 7.1672 +id[10888] = "2804-08-14T09:34:21" +ik[10888] = 134.67 +il[10888] = -125 +im[10888] = 0.1383 +ij[10888] = 14 +id[10889] = "2804-08-28T04:24:44" +ik[10889] = -2.066 +il[10889] = 87 +im[10889] = 0.1277 +ij[10889] = 4 +id[10890] = "2804-09-04T06:38:09" +ik[10890] = 44.387 +il[10890] = 123 +im[10890] = 0.0352 +ij[10890] = 1 +id[10891] = "2804-09-10T00:17:57" +ik[10891] = 2.252 +il[10891] = -85 +im[10891] = 0.1253 +ij[10891] = 27.4 +id[10892] = "2804-10-20T13:17:03" +ik[10892] = 0 +il[10892] = 118 +im[10892] = 0.0959 +ij[10892] = 17 +id[10893] = "2804-12-14T18:33:13" +ik[10893] = 0.013 +il[10893] = -138 +im[10893] = 0.0458 +ij[10893] = 27.3 +id[10894] = "2804-12-19T13:08:04" +ik[10894] = 35.517 +il[10894] = -9 +im[10894] = 0.0911 +ij[10894] = 9 +id[10895] = "2805-01-12T19:13:31" +ik[10895] = 0.453 +il[10895] = 137 +im[10895] = 0.0414 +ij[10895] = 27.5 +id[10896] = "2805-02-01T02:01:50" +ik[10896] = 0.117 +il[10896] = -137 +im[10896] = 0.0713 +ij[10896] = 28.7 +id[10897] = "2805-02-04T13:42:10" +ik[10897] = 0.091 +il[10897] = 82 +im[10897] = 0.056 +ij[10897] = 28.2 +id[10898] = "2805-02-14T01:35:44" +ik[10898] = -26.198 +il[10898] = -4 +im[10898] = 0.0701 +ij[10898] = 15 +id[10899] = "2805-02-18T17:15:27" +ik[10899] = 1.612 +il[10899] = 166 +im[10899] = 0.0666 +ij[10899] = 28.6 +id[10900] = "2805-03-24T12:22:24" +ik[10900] = 2.119 +il[10900] = -156 +im[10900] = 0.003 +ij[10900] = 27.6 +id[10901] = "2805-05-05T05:11:24" +ik[10901] = 1.383 +il[10901] = -1 +im[10901] = 0.0184 +ij[10901] = 28.1 +id[10902] = "2805-06-17T09:06:30" +ik[10902] = 12 +il[10902] = -12 +im[10902] = 0.0225 +ij[10902] = 18 +id[10903] = "2805-07-17T16:38:31" +ik[10903] = 0.97 +il[10903] = 172 +im[10903] = 0.0038 +ij[10903] = 12 +id[10904] = "2805-10-04T20:32:58" +ik[10904] = 4.405 +il[10904] = -6 +im[10904] = 0.0567 +ij[10904] = 28.1 +id[10905] = "2805-10-27T01:28:59" +ik[10905] = 0.183 +il[10905] = 134 +im[10905] = 0.0033 +ij[10905] = 28.2 +id[10906] = "2805-11-01T03:34:07" +ik[10906] = 25.49 +il[10906] = 152 +im[10906] = 0.0558 +ij[10906] = 16 +id[10907] = "2805-11-19T00:06:35" +ik[10907] = 0.178 +il[10907] = 16 +im[10907] = 0.0622 +ij[10907] = 28.5 +id[10908] = "2806-01-01T13:04:30" +ik[10908] = 30.711 +il[10908] = -120 +im[10908] = 0.0562 +ij[10908] = 8 +id[10909] = "2806-02-22T04:57:26" +ik[10909] = 5.013 +il[10909] = 135 +im[10909] = 0.0777 +ij[10909] = 27.4 +id[10910] = "2806-03-13T02:25:53" +ik[10910] = 4.873 +il[10910] = -8 +im[10910] = 0.1154 +ij[10910] = 27.1 +id[10911] = "2806-03-21T18:48:14" +ik[10911] = 38.276 +il[10911] = -171 +im[10911] = 0.0824 +ij[10911] = 3 +id[10912] = "2806-03-29T04:44:18" +ik[10912] = -1.718 +il[10912] = 110 +im[10912] = 0.0798 +ij[10912] = 2 +id[10913] = "2806-04-10T23:46:52" +ik[10913] = 23 +il[10913] = -55 +im[10913] = 0.1387 +ij[10913] = 17 +id[10914] = "2806-05-29T09:34:50" +ik[10914] = 0 +il[10914] = -111 +im[10914] = 0.1305 +ij[10914] = 13 +id[10915] = "2806-06-11T10:33:26" +ik[10915] = 1.277 +il[10915] = -7 +im[10915] = 0.1063 +ij[10915] = 28.2 +id[10916] = "2806-06-21T04:20:08" +ik[10916] = 0 +il[10916] = 179 +im[10916] = 0.1253 +ij[10916] = 18 +id[10917] = "2806-06-29T16:06:32" +ik[10917] = 3.86 +il[10917] = 79 +im[10917] = 0.3342 +ij[10917] = 11 +id[10918] = "2806-08-05T08:37:26" +ik[10918] = 67.96 +il[10918] = -1 +im[10918] = 0.1625 +ij[10918] = 7.1121 +id[10919] = "2806-09-15T09:43:27" +ik[10919] = 0 +il[10919] = 25 +im[10919] = 0.1156 +ij[10919] = 17 +id[10920] = "2806-09-21T00:22:13" +ik[10920] = 114.62 +il[10920] = -139 +im[10920] = 0.2099 +ij[10920] = 14 +id[10921] = "2806-10-01T03:41:12" +ik[10921] = -2.358 +il[10921] = -89 +im[10921] = 0.1308 +ij[10921] = 4 +id[10922] = "2806-10-23T19:37:12" +ik[10922] = 46.296 +il[10922] = -105 +im[10922] = 0.0827 +ij[10922] = 1 +id[10923] = "2806-11-16T15:29:53" +ik[10923] = 0.533 +il[10923] = -168 +im[10923] = 0.1391 +ij[10923] = 27.3 +id[10924] = "2806-12-18T04:49:04" +ik[10924] = 0.567 +il[10924] = -60 +im[10924] = 0.0942 +ij[10924] = 27.5 +id[10925] = "2807-01-21T07:15:28" +ik[10925] = 0.406 +il[10925] = -127 +im[10925] = 0.0235 +ij[10925] = 28.7 +id[10926] = "2807-01-22T13:56:34" +ik[10926] = -26.371 +il[10926] = 145 +im[10926] = 0.0487 +ij[10926] = 15 +id[10927] = "2807-02-22T05:41:50" +ik[10927] = 33.908 +il[10927] = -158 +im[10927] = 0.0682 +ij[10927] = 9 +id[10928] = "2807-03-02T13:56:21" +ik[10928] = 1.812 +il[10928] = 179 +im[10928] = 0.0446 +ij[10928] = 27.6 +id[10929] = "2807-03-03T00:38:04" +ik[10929] = 2.442 +il[10929] = 2 +im[10929] = 0.0381 +ij[10929] = 28.6 +id[10930] = "2807-05-07T11:47:25" +ik[10930] = 3.764 +il[10930] = 102 +im[10930] = 0.0578 +ij[10930] = 27.2 +id[10931] = "2807-05-29T17:54:47" +ik[10931] = 12 +il[10931] = -135 +im[10931] = 0.015 +ij[10931] = 18 +id[10932] = "2807-06-04T08:46:16" +ik[10932] = 2.039 +il[10932] = 53 +im[10932] = 0.0501 +ij[10932] = 28.8 +id[10933] = "2807-08-26T18:10:05" +ik[10933] = 1.13 +il[10933] = -10 +im[10933] = 0.0241 +ij[10933] = 12 +id[10934] = "2807-10-14T06:34:57" +ik[10934] = 25.684 +il[10934] = 115 +im[10934] = 0.0573 +ij[10934] = 16 +id[10935] = "2808-01-25T23:30:58" +ik[10935] = 4.609 +il[10935] = 143 +im[10935] = 0.0564 +ij[10935] = 27.4 +id[10936] = "2808-02-06T08:56:30" +ik[10936] = 31.694 +il[10936] = 109 +im[10936] = 0.0744 +ij[10936] = 8 +id[10937] = "2808-02-10T08:42:48" +ik[10937] = 5.211 +il[10937] = 151 +im[10937] = 0.038 +ij[10937] = 27.1 +id[10938] = "2808-02-19T13:11:14" +ik[10938] = 0.151 +il[10938] = 171 +im[10938] = 0.0871 +ij[10938] = 28.5 +id[10939] = "2808-03-01T18:39:05" +ik[10939] = 23 +il[10939] = -165 +im[10939] = 0.0525 +ij[10939] = 17 +id[10940] = "2808-05-11T13:52:33" +ik[10940] = 0.354 +il[10940] = -144 +im[10940] = 0.0904 +ij[10940] = 27.3 +id[10941] = "2808-05-26T08:33:12" +ik[10941] = 43.289 +il[10941] = 76 +im[10941] = 0.0844 +ij[10941] = 3 +id[10942] = "2808-06-20T16:50:37" +ik[10942] = 2.77 +il[10942] = -167 +im[10942] = 0.0283 +ij[10942] = 27.5 +id[10943] = "2808-06-24T16:55:53" +ik[10943] = -2.182 +il[10943] = -131 +im[10943] = 0.1485 +ij[10943] = 2 +id[10944] = "2808-08-13T00:22:44" +ik[10944] = 0 +il[10944] = -129 +im[10944] = 0.2152 +ij[10944] = 13 +id[10945] = "2808-09-13T12:18:59" +ik[10945] = 5.98 +il[10945] = -24 +im[10945] = 0.1642 +ij[10945] = 11 +id[10946] = "2808-10-13T23:25:19" +ik[10946] = 61.96 +il[10946] = -49 +im[10946] = 0.3021 +ij[10946] = 7.1085 +id[10947] = "2808-10-16T12:05:05" +ik[10947] = 6.366 +il[10947] = 146 +im[10947] = 0.2922 +ij[10947] = 27.5 +id[10948] = "2808-10-26T17:28:42" +ik[10948] = 1.839 +il[10948] = 165 +im[10948] = 0.2671 +ij[10948] = 28.2 +id[10949] = "2808-11-24T04:42:08" +ik[10949] = 103.18 +il[10949] = -87 +im[10949] = 0.2065 +ij[10949] = 14 +id[10950] = "2808-12-04T17:00:20" +ik[10950] = -2.155 +il[10950] = -170 +im[10950] = 0.043 +ij[10950] = 4 +id[10951] = "2808-12-21T20:46:32" +ik[10951] = -26.369 +il[10951] = -62 +im[10951] = 0.1433 +ij[10951] = 15 +id[10952] = "2808-12-29T18:31:06" +ik[10952] = 42.213 +il[10952] = 48 +im[10952] = 0.0789 +ij[10952] = 1 +id[10953] = "2808-12-30T13:29:24" +ik[10953] = 0.761 +il[10953] = 131 +im[10953] = 0.0545 +ij[10953] = 28.7 +id[10954] = "2809-02-01T09:46:30" +ik[10954] = 1.367 +il[10954] = 139 +im[10954] = 0.0683 +ij[10954] = 27.6 +id[10955] = "2809-03-12T16:28:37" +ik[10955] = 2.977 +il[10955] = 50 +im[10955] = 0.0146 +ij[10955] = 28.6 +id[10956] = "2809-04-09T19:51:10" +ik[10956] = 32.222 +il[10956] = -96 +im[10956] = 0.0235 +ij[10956] = 9 +id[10957] = "2809-04-14T14:36:02" +ik[10957] = 3.396 +il[10957] = 28 +im[10957] = 0.0488 +ij[10957] = 27.2 +id[10958] = "2809-05-08T23:38:29" +ik[10958] = 12 +il[10958] = 128 +im[10958] = 0.0162 +ij[10958] = 18 +id[10959] = "2809-05-21T09:21:13" +ik[10959] = 2.206 +il[10959] = 93 +im[10959] = 0.036 +ij[10959] = 28.8 +id[10960] = "2809-06-25T11:07:47" +ik[10960] = 4.35 +il[10960] = 38 +im[10960] = 0.0485 +ij[10960] = 28.1 +id[10961] = "2809-09-25T20:16:59" +ik[10961] = 25.836 +il[10961] = 83 +im[10961] = 0.0496 +ij[10961] = 16 +id[10962] = "2809-10-01T05:06:05" +ik[10962] = 0.84 +il[10962] = 1 +im[10962] = 0.008 +ij[10962] = 12 +id[10963] = "2810-01-03T21:25:35" +ik[10963] = 4.321 +il[10963] = 159 +im[10963] = 0.0532 +ij[10963] = 27.4 +id[10964] = "2810-01-18T09:04:12" +ik[10964] = 5.48 +il[10964] = 114 +im[10964] = 0.0628 +ij[10964] = 27.1 +id[10965] = "2810-02-06T21:48:46" +ik[10965] = 0 +il[10965] = 115 +im[10965] = 0.0035 +ij[10965] = 17 +id[10966] = "2810-03-22T11:07:10" +ik[10966] = 33.784 +il[10966] = -33 +im[10966] = 0.0058 +ij[10966] = 8 +id[10967] = "2810-04-09T14:42:06" +ik[10967] = 0.17 +il[10967] = 86 +im[10967] = 0.0631 +ij[10967] = 27.3 +id[10968] = "2810-04-28T10:57:51" +ik[10968] = 0.272 +il[10968] = -40 +im[10968] = 0.0962 +ij[10968] = 28.5 +id[10969] = "2810-05-10T11:46:39" +ik[10969] = 1.155 +il[10969] = 63 +im[10969] = 0.0931 +ij[10969] = 27.5 +id[10970] = "2810-06-08T07:56:22" +ik[10970] = -24.64 +il[10970] = 36 +im[10970] = 0.1052 +ij[10970] = 15 +id[10971] = "2810-06-28T12:52:00" +ik[10971] = 1.519 +il[10971] = 157 +im[10971] = 0.0888 +ij[10971] = 28.7 +id[10972] = "2810-07-26T13:40:33" +ik[10972] = 4.604 +il[10972] = 57 +im[10972] = 0.123 +ij[10972] = 27.6 +id[10973] = "2810-07-29T04:47:08" +ik[10973] = 47.406 +il[10973] = -144 +im[10973] = 0.0547 +ij[10973] = 3 +id[10974] = "2810-08-26T18:15:55" +ik[10974] = -2.364 +il[10974] = -67 +im[10974] = 0.0642 +ij[10974] = 2 +id[10975] = "2810-10-01T20:13:07" +ik[10975] = 0.154 +il[10975] = -102 +im[10975] = 0.2355 +ij[10975] = 28.6 +id[10976] = "2810-10-18T04:42:39" +ik[10976] = 0 +il[10976] = -69 +im[10976] = 0.2514 +ij[10976] = 13 +id[10977] = "2810-10-20T12:58:25" +ik[10977] = 0.411 +il[10977] = -170 +im[10977] = 0.1463 +ij[10977] = 28.6 +id[10978] = "2810-11-23T12:18:06" +ik[10978] = 0.33 +il[10978] = 157 +im[10978] = 0.2823 +ij[10978] = 11 +id[10979] = "2810-12-25T07:50:23" +ik[10979] = 68.13 +il[10979] = -8 +im[10979] = 0.1481 +ij[10979] = 7.1319 +id[10980] = "2811-02-16T20:06:13" +ik[10980] = 121.64 +il[10980] = -47 +im[10980] = 0.1207 +ij[10980] = 14 +id[10981] = "2811-02-17T00:00:48" +ik[10981] = -1.752 +il[10981] = -104 +im[10981] = 0.1187 +ij[10981] = 4 +id[10982] = "2811-03-01T11:50:12" +ik[10982] = 38.421 +il[10982] = -164 +im[10982] = 0.1306 +ij[10982] = 1 +id[10983] = "2811-03-16T09:12:35" +ik[10983] = 2.701 +il[10983] = 16 +im[10983] = 0.1014 +ij[10983] = 27.2 +id[10984] = "2811-03-20T23:18:53" +ik[10984] = 3.204 +il[10984] = -152 +im[10984] = 0.0315 +ij[10984] = 28.6 +id[10985] = "2811-04-15T19:02:07" +ik[10985] = 12 +il[10985] = 155 +im[10985] = 0.0695 +ij[10985] = 18 +id[10986] = "2811-05-05T23:11:51" +ik[10986] = 2.459 +il[10986] = -77 +im[10986] = 0.0173 +ij[10986] = 28.8 +id[10987] = "2811-05-18T23:01:23" +ik[10987] = 31.372 +il[10987] = 48 +im[10987] = 0.007 +ij[10987] = 9 +id[10988] = "2811-07-02T05:45:11" +ik[10988] = 0.478 +il[10988] = 7 +im[10988] = 0.0197 +ij[10988] = 28.2 +id[10989] = "2811-08-25T13:33:13" +ik[10989] = 0.843 +il[10989] = 52 +im[10989] = 0.0213 +ij[10989] = 28.1 +id[10990] = "2811-09-08T07:26:47" +ik[10990] = 25.971 +il[10990] = -75 +im[10990] = 0.0288 +ij[10990] = 16 +id[10991] = "2811-11-07T20:47:26" +ik[10991] = 0.21 +il[10991] = -41 +im[10991] = 0.0061 +ij[10991] = 12 +id[10992] = "2812-01-18T03:11:50" +ik[10992] = 0 +il[10992] = 20 +im[10992] = 0.0041 +ij[10992] = 17 +id[10993] = "2812-02-04T21:54:01" +ik[10993] = 2.716 +il[10993] = -91 +im[10993] = 0.0367 +ij[10993] = 28.1 +id[10994] = "2812-03-10T18:45:02" +ik[10994] = 1.592 +il[10994] = -64 +im[10994] = 0.0592 +ij[10994] = 28.2 +id[10995] = "2812-03-16T20:10:51" +ik[10995] = 0.27 +il[10995] = -27 +im[10995] = 0.0171 +ij[10995] = 27.3 +id[10996] = "2812-04-15T04:20:12" +ik[10996] = 0.805 +il[10996] = 130 +im[10996] = 0.0221 +ij[10996] = 27.5 +id[10997] = "2812-05-14T13:20:14" +ik[10997] = -25.282 +il[10997] = -83 +im[10997] = 0.0269 +ij[10997] = 15 +id[10998] = "2812-05-28T22:26:43" +ik[10998] = 36.158 +il[10998] = -80 +im[10998] = 0.0218 +ij[10998] = 8 +id[10999] = "2812-06-13T00:13:39" +ik[10999] = 0.753 +il[10999] = 40 +im[10999] = 0.0333 +ij[10999] = 28.7 +id[11000] = "2812-06-21T18:58:29" +ik[11000] = 0.082 +il[11000] = -179 +im[11000] = 0.071 +ij[11000] = 28.5 +id[11001] = "2812-06-25T07:27:20" +ik[11001] = 3.515 +il[11001] = 51 +im[11001] = 0.0105 +ij[11001] = 27.6 +id[11002] = "2812-08-30T15:02:01" +ik[11002] = 5.351 +il[11002] = -131 +im[11002] = 0.1194 +ij[11002] = 27.2 +id[11003] = "2812-09-11T12:02:21" +ik[11003] = 0.6 +il[11003] = 30 +im[11003] = 0.1102 +ij[11003] = 28.6 +id[11004] = "2812-09-12T19:36:11" +ik[11004] = 44.247 +il[11004] = -71 +im[11004] = 0.118 +ij[11004] = 3 +id[11005] = "2812-09-20T02:52:09" +ik[11005] = 11 +il[11005] = -108 +im[11005] = 0.0187 +ij[11005] = 18 +id[11006] = "2812-09-30T01:52:49" +ik[11006] = -2.069 +il[11006] = 4 +im[11006] = 0.1188 +ij[11006] = 2 +id[11007] = "2812-10-20T09:55:24" +ik[11007] = 1.354 +il[11007] = 82 +im[11007] = 0.0869 +ij[11007] = 28.8 +id[11008] = "2812-11-30T20:06:42" +ik[11008] = 0 +il[11008] = -28 +im[11008] = 0.0613 +ij[11008] = 13 +id[11009] = "2812-12-14T12:42:30" +ik[11009] = 0.701 +il[11009] = -144 +im[11009] = 0.1241 +ij[11009] = 28.2 +id[11010] = "2812-12-24T15:26:36" +ik[11010] = 2.982 +il[11010] = -87 +im[11010] = 0.1068 +ij[11010] = 28.1 +id[11011] = "2813-01-08T15:45:13" +ik[11011] = 3.69 +il[11011] = 32 +im[11011] = 0.0463 +ij[11011] = 11 +id[11012] = "2813-01-25T23:13:58" +ik[11012] = 3.14 +il[11012] = -97 +im[11012] = 0.1788 +ij[11012] = 28.1 +id[11013] = "2813-01-27T06:34:27" +ik[11013] = 12 +il[11013] = 165 +im[11013] = 0.2078 +ij[11013] = 17 +id[11014] = "2813-01-31T06:42:43" +ik[11014] = 4.504 +il[11014] = -157 +im[11014] = 0.166 +ij[11014] = 28.6 +id[11015] = "2813-02-15T19:09:18" +ik[11015] = 76.96 +il[11015] = 149 +im[11015] = 0.0958 +ij[11015] = 7.1601 +id[11016] = "2813-02-27T13:45:17" +ik[11016] = 12 +il[11016] = -19 +im[11016] = 0.1249 +ij[11016] = 18 +id[11017] = "2813-03-21T02:11:06" +ik[11017] = 3.332 +il[11017] = -2 +im[11017] = 0.0875 +ij[11017] = 28.6 +id[11018] = "2813-04-10T17:10:12" +ik[11018] = 3.079 +il[11018] = -32 +im[11018] = 0.0946 +ij[11018] = 28.8 +id[11019] = "2813-04-11T18:34:36" +ik[11019] = -1.577 +il[11019] = -43 +im[11019] = 0.0762 +ij[11019] = 4 +id[11020] = "2813-04-15T13:13:09" +ik[11020] = 37.057 +il[11020] = 73 +im[11020] = 0.017 +ij[11020] = 1 +id[11021] = "2813-04-20T21:18:10" +ik[11021] = 141.05 +il[11021] = 2 +im[11021] = 0.0975 +ij[11021] = 14 +id[11022] = "2813-06-23T19:17:23" +ik[11022] = 31.39 +il[11022] = -79 +im[11022] = 0.0101 +ij[11022] = 9 +id[11023] = "2813-08-20T02:49:42" +ik[11023] = 26.102 +il[11023] = 0 +im[11023] = 0.0074 +ij[11023] = 16 +id[11024] = "2813-12-21T13:55:53" +ik[11024] = 0.61 +il[11024] = -25 +im[11024] = 0.0595 +ij[11024] = 12 +id[11025] = "2813-12-29T08:40:53" +ik[11025] = 0 +il[11025] = -59 +im[11025] = 0.0124 +ij[11025] = 17 +id[11026] = "2814-03-25T02:27:49" +ik[11026] = 0.645 +il[11026] = 146 +im[11026] = 0.0068 +ij[11026] = 27.5 +id[11027] = "2814-04-23T20:55:05" +ik[11027] = -25.595 +il[11027] = 157 +im[11027] = 0.0095 +ij[11027] = 15 +id[11028] = "2814-04-26T17:07:26" +ik[11028] = 2.07 +il[11028] = -118 +im[11028] = 0.0464 +ij[11028] = 28.1 +id[11029] = "2814-06-02T19:04:08" +ik[11029] = 3.035 +il[11029] = -145 +im[11029] = 0.056 +ij[11029] = 27.6 +id[11030] = "2814-06-03T19:54:12" +ik[11030] = 0.337 +il[11030] = -147 +im[11030] = 0.0439 +ij[11030] = 28.7 +id[11031] = "2814-08-04T20:47:35" +ik[11031] = 4.891 +il[11031] = 89 +im[11031] = 0.0273 +ij[11031] = 27.2 +id[11032] = "2814-08-16T18:48:03" +ik[11032] = 34.994 +il[11032] = -125 +im[11032] = 0.0099 +ij[11032] = 8 +id[11033] = "2814-08-23T22:45:07" +ik[11033] = 11 +il[11033] = -114 +im[11033] = 0.0849 +ij[11033] = 18 +id[11034] = "2814-08-23T23:18:10" +ik[11034] = 0.148 +il[11034] = -122 +im[11034] = 0.085 +ij[11034] = 28.5 +id[11035] = "2814-09-19T13:06:39" +ik[11035] = 0.609 +il[11035] = -70 +im[11035] = 0.074 +ij[11035] = 28.6 +id[11036] = "2814-09-22T05:19:46" +ik[11036] = 1.257 +il[11036] = 73 +im[11036] = 0.0933 +ij[11036] = 28.8 +id[11037] = "2814-10-30T16:11:08" +ik[11037] = 39.764 +il[11037] = -77 +im[11037] = 0.0665 +ij[11037] = 3 +id[11038] = "2814-10-31T03:54:37" +ik[11038] = -1.803 +il[11038] = 112 +im[11038] = 0.0762 +ij[11038] = 2 +id[11039] = "2814-12-23T06:31:25" +ik[11039] = 20.024 +il[11039] = -133 +im[11039] = 0.0234 +ij[11039] = 16 +id[11040] = "2815-01-04T21:18:39" +ik[11040] = 0 +il[11040] = 127 +im[11040] = 0.0612 +ij[11040] = 13 +id[11041] = "2815-02-14T13:05:13" +ik[11041] = 4.38 +il[11041] = -98 +im[11041] = 0.0464 +ij[11041] = 11 +id[11042] = "2815-03-23T09:21:50" +ik[11042] = 2.542 +il[11042] = 96 +im[11042] = 0.1413 +ij[11042] = 28.2 +id[11043] = "2815-03-27T20:21:15" +ik[11043] = 81.96 +il[11043] = -26 +im[11043] = 0.0284 +ij[11043] = 7.194 +id[11044] = "2815-04-12T01:08:37" +ik[11044] = 4.217 +il[11044] = 46 +im[11044] = 0.0598 +ij[11044] = 28.5 +id[11045] = "2815-05-25T18:20:09" +ik[11045] = 37.452 +il[11045] = -153 +im[11045] = 0.0702 +ij[11045] = 1 +id[11046] = "2815-05-28T04:09:44" +ik[11046] = -1.567 +il[11046] = 82 +im[11046] = 0.0985 +ij[11046] = 4 +id[11047] = "2815-06-03T06:31:04" +ik[11047] = 149.38 +il[11047] = 106 +im[11047] = 0.0453 +ij[11047] = 14 +id[11048] = "2815-08-02T01:50:16" +ik[11048] = 32.261 +il[11048] = 34 +im[11048] = 0.0198 +ij[11048] = 9 +id[11049] = "2815-10-31T18:02:10" +ik[11049] = 3.652 +il[11049] = -48 +im[11049] = 0.0623 +ij[11049] = 28.1 +id[11050] = "2815-11-06T19:40:01" +ik[11050] = 3.585 +il[11050] = -13 +im[11050] = 0.0454 +ij[11050] = 27.4 +id[11051] = "2815-11-20T17:33:44" +ik[11051] = 6.168 +il[11051] = 154 +im[11051] = 0.0417 +ij[11051] = 27.1 +id[11052] = "2815-12-10T17:46:24" +ik[11052] = 0 +il[11052] = -14 +im[11052] = 0.0211 +ij[11052] = 17 +id[11053] = "2816-02-21T02:03:53" +ik[11053] = 1.07 +il[11053] = -126 +im[11053] = 0.0217 +ij[11053] = 12 +id[11054] = "2816-04-03T06:11:54" +ik[11054] = -25.803 +il[11054] = 12 +im[11054] = 0.0024 +ij[11054] = 15 +id[11055] = "2816-05-12T07:21:20" +ik[11055] = 2.722 +il[11055] = 29 +im[11055] = 0.0519 +ij[11055] = 27.6 +id[11056] = "2816-05-26T13:32:45" +ik[11056] = 0.028 +il[11056] = 76 +im[11056] = 0.0526 +ij[11056] = 28.7 +id[11057] = "2816-07-13T17:44:10" +ik[11057] = 4.589 +il[11057] = 126 +im[11057] = 0.0067 +ij[11057] = 27.2 +id[11058] = "2816-08-02T02:46:56" +ik[11058] = 12 +il[11058] = 179 +im[11058] = 0.065 +ij[11058] = 18 +id[11059] = "2816-09-05T08:31:25" +ik[11059] = 1.312 +il[11059] = 66 +im[11059] = 0.0596 +ij[11059] = 28.8 +id[11060] = "2816-09-05T10:16:38" +ik[11060] = 2.599 +il[11060] = 40 +im[11060] = 0.0589 +ij[11060] = 28.2 +id[11061] = "2816-10-02T00:11:25" +ik[11061] = 0.234 +il[11061] = 89 +im[11061] = 0.079 +ij[11061] = 28.6 +id[11062] = "2816-10-08T09:29:49" +ik[11062] = 32.533 +il[11062] = 11 +im[11062] = 0.0054 +ij[11062] = 8 +id[11063] = "2816-11-21T07:16:17" +ik[11063] = 0.458 +il[11063] = 110 +im[11063] = 0.0407 +ij[11063] = 28.5 +id[11064] = "2816-12-02T01:55:32" +ik[11064] = -1.641 +il[11064] = -66 +im[11064] = 0.0467 +ij[11064] = 2 +id[11065] = "2816-12-10T12:45:04" +ik[11065] = 37.028 +il[11065] = -147 +im[11065] = 0.1028 +ij[11065] = 3 +id[11066] = "2817-02-07T06:31:32" +ik[11066] = 0 +il[11066] = 154 +im[11066] = 0.137 +ij[11066] = 13 +id[11067] = "2817-03-19T13:21:13" +ik[11067] = 3.62 +il[11067] = 54 +im[11067] = 0.1963 +ij[11067] = 11 +id[11068] = "2817-04-30T05:34:09" +ik[11068] = 81.96 +il[11068] = -7 +im[11068] = 0.0901 +ij[11068] = 7.2116 +id[11069] = "2817-07-04T04:18:02" +ik[11069] = 39.41 +il[11069] = -80 +im[11069] = 0.1125 +ij[11069] = 1 +id[11070] = "2817-07-05T05:31:58" +ik[11070] = 147.96 +il[11070] = -88 +im[11070] = 0.114 +ij[11070] = 14 +id[11071] = "2817-07-06T03:19:28" +ik[11071] = 26.328 +il[11071] = -46 +im[11071] = 0.1108 +ij[11071] = 16 +id[11072] = "2817-07-10T13:46:39" +ik[11072] = -1.692 +il[11072] = -160 +im[11072] = 0.0431 +ij[11072] = 4 +id[11073] = "2817-08-13T07:42:58" +ik[11073] = 1.277 +il[11073] = -101 +im[11073] = 0.0673 +ij[11073] = 28.5 +id[11074] = "2817-09-17T21:07:09" +ik[11074] = 33.926 +il[11074] = 44 +im[11074] = 0.0573 +ij[11074] = 9 +id[11075] = "2817-10-16T14:25:36" +ik[11075] = 3.239 +il[11075] = 65 +im[11075] = 0.0562 +ij[11075] = 27.4 +id[11076] = "2817-10-30T17:35:52" +ik[11076] = 6.488 +il[11076] = 155 +im[11076] = 0.0564 +ij[11076] = 27.1 +id[11077] = "2817-11-07T04:46:18" +ik[11077] = 1.153 +il[11077] = 61 +im[11077] = 0.0548 +ij[11077] = 28.2 +id[11078] = "2817-11-20T13:37:21" +ik[11078] = 0 +il[11078] = 59 +im[11078] = 0.028 +ij[11078] = 17 +id[11079] = "2818-01-14T17:24:34" +ik[11079] = 0.213 +il[11079] = -176 +im[11079] = 0.0146 +ij[11079] = 27.3 +id[11080] = "2818-01-15T13:52:43" +ik[11080] = 3.727 +il[11080] = -115 +im[11080] = 0.0031 +ij[11080] = 28.1 +id[11081] = "2818-02-12T03:44:54" +ik[11081] = 0.487 +il[11081] = -48 +im[11081] = 0.0227 +ij[11081] = 27.5 +id[11082] = "2818-03-14T21:56:49" +ik[11082] = -25.973 +il[11082] = -14 +im[11082] = 0.0033 +ij[11082] = 15 +id[11083] = "2818-05-04T16:35:00" +ik[11083] = 0.21 +il[11083] = -147 +im[11083] = 0.0623 +ij[11083] = 12 +id[11084] = "2818-07-14T01:07:44" +ik[11084] = 12 +il[11084] = -146 +im[11084] = 0.0581 +ij[11084] = 18 +id[11085] = "2818-08-23T11:13:00" +ik[11085] = 1.329 +il[11085] = 94 +im[11085] = 0.0342 +ij[11085] = 28.8 +id[11086] = "2818-08-27T11:27:15" +ik[11086] = 1.498 +il[11086] = 130 +im[11086] = 0.0608 +ij[11086] = 28.2 +id[11087] = "2818-10-18T22:11:52" +ik[11087] = 0.314 +il[11087] = 116 +im[11087] = 0.0236 +ij[11087] = 28.6 +id[11088] = "2818-11-16T11:08:29" +ik[11088] = 31.048 +il[11088] = -162 +im[11088] = 0.0237 +ij[11088] = 8 +id[11089] = "2818-11-29T15:16:14" +ik[11089] = 25.028 +il[11089] = -97 +im[11089] = 0.0241 +ij[11089] = 16 +id[11090] = "2819-01-09T10:59:33" +ik[11090] = -1.579 +il[11090] = 1 +im[11090] = 0.0359 +ij[11090] = 2 +id[11091] = "2819-01-18T17:22:07" +ik[11091] = 36.158 +il[11091] = -5 +im[11091] = 0.0971 +ij[11091] = 3 +id[11092] = "2819-03-16T05:32:26" +ik[11092] = 0 +il[11092] = -9 +im[11092] = 0.1532 +ij[11092] = 13 +id[11093] = "2819-04-05T20:02:39" +ik[11093] = 1.371 +il[11093] = -32 +im[11093] = 0.0899 +ij[11093] = 28.2 +id[11094] = "2819-04-24T15:28:20" +ik[11094] = 1.57 +il[11094] = -165 +im[11094] = 0.2449 +ij[11094] = 11 +id[11095] = "2819-05-13T18:16:16" +ik[11095] = 5.473 +il[11095] = 126 +im[11095] = 0.0301 +ij[11095] = 28.1 +id[11096] = "2819-06-04T05:27:08" +ik[11096] = 80 +il[11096] = 167 +im[11096] = 0.1825 +ij[11096] = 7.1875 +id[11097] = "2819-08-03T14:01:53" +ik[11097] = 140.35 +il[11097] = -95 +im[11097] = 0.0217 +ij[11097] = 14 +id[11098] = "2819-08-17T13:03:07" +ik[11098] = -1.941 +il[11098] = 56 +im[11098] = 0.0543 +ij[11098] = 4 +id[11099] = "2819-08-17T19:46:07" +ik[11099] = 42.851 +il[11099] = -42 +im[11099] = 0.0476 +ij[11099] = 1 +id[11100] = "2819-09-22T22:32:17" +ik[11100] = 2.652 +il[11100] = -91 +im[11100] = 0.0969 +ij[11100] = 27.4 +id[11101] = "2819-10-30T17:50:30" +ik[11101] = 0 +il[11101] = -10 +im[11101] = 0.0248 +ij[11101] = 17 +id[11102] = "2819-11-05T22:29:35" +ik[11102] = 1.451 +il[11102] = -19 +im[11102] = 0.0925 +ij[11102] = 28.5 +id[11103] = "2819-11-21T15:52:02" +ik[11103] = 35.509 +il[11103] = -125 +im[11103] = 0.0805 +ij[11103] = 9 +id[11104] = "2819-12-24T17:04:04" +ik[11104] = 0.098 +il[11104] = -177 +im[11104] = 0.0324 +ij[11104] = 27.3 +id[11105] = "2820-01-22T10:37:31" +ik[11105] = 0.451 +il[11105] = -158 +im[11105] = 0.037 +ij[11105] = 27.5 +id[11106] = "2820-02-23T03:19:41" +ik[11106] = -26.135 +il[11106] = -99 +im[11106] = 0.0057 +ij[11106] = 15 +id[11107] = "2820-04-01T13:35:01" +ik[11107] = 2.221 +il[11107] = 129 +im[11107] = 0.0533 +ij[11107] = 27.6 +id[11108] = "2820-04-01T21:38:45" +ik[11108] = 3.378 +il[11108] = 11 +im[11108] = 0.0507 +ij[11108] = 28.1 +id[11109] = "2820-06-24T14:05:14" +ik[11109] = 12 +il[11109] = -150 +im[11109] = 0.0553 +ij[11109] = 18 +id[11110] = "2820-06-29T19:10:34" +ik[11110] = 0.76 +il[11110] = -179 +im[11110] = 0.0223 +ij[11110] = 12 +id[11111] = "2820-09-06T15:51:25" +ik[11111] = 1.694 +il[11111] = 5 +im[11111] = 0.0564 +ij[11111] = 28.1 +id[11112] = "2820-11-06T10:03:27" +ik[11112] = 0.884 +il[11112] = -41 +im[11112] = 0.0291 +ij[11112] = 28.6 +id[11113] = "2820-11-08T11:02:04" +ik[11113] = 25.394 +il[11113] = -36 +im[11113] = 0.0042 +ij[11113] = 16 +id[11114] = "2820-12-19T12:13:49" +ik[11114] = 30.61 +il[11114] = -18 +im[11114] = 0.0293 +ij[11114] = 8 +id[11115] = "2821-03-01T17:12:01" +ik[11115] = -1.639 +il[11115] = -122 +im[11115] = 0.0055 +ij[11115] = 2 +id[11116] = "2821-03-01T20:37:06" +ik[11116] = 37.209 +il[11116] = -172 +im[11116] = 0.0017 +ij[11116] = 3 +id[11117] = "2821-03-11T07:30:52" +ik[11117] = 5.212 +il[11117] = 115 +im[11117] = 0.1255 +ij[11117] = 27.4 +id[11118] = "2821-04-07T17:20:34" +ik[11118] = 4.91 +il[11118] = -132 +im[11118] = 0.1723 +ij[11118] = 27.1 +id[11119] = "2821-05-01T01:41:09" +ik[11119] = 5.474 +il[11119] = -37 +im[11119] = 0.1851 +ij[11119] = 28.2 +id[11120] = "2821-05-04T14:02:21" +ik[11120] = 0 +il[11120] = 171 +im[11120] = 0.2358 +ij[11120] = 13 +id[11121] = "2821-06-07T08:20:47" +ik[11121] = 1.84 +il[11121] = -166 +im[11121] = 0.0195 +ij[11121] = 11 +id[11122] = "2821-06-27T02:36:16" +ik[11122] = 1.387 +il[11122] = -82 +im[11122] = 0.2953 +ij[11122] = 27.4 +id[11123] = "2821-07-14T09:00:37" +ik[11123] = 3.566 +il[11123] = -10 +im[11123] = 0.1496 +ij[11123] = 28.2 +id[11124] = "2821-07-15T13:04:57" +ik[11124] = 71.96 +il[11124] = -60 +im[11124] = 0.0856 +ij[11124] = 7.1315 +id[11125] = "2821-08-04T07:43:44" +ik[11125] = 0.957 +il[11125] = -146 +im[11125] = 0.176 +ij[11125] = 27.4 +id[11126] = "2821-09-04T10:11:47" +ik[11126] = 122.84 +il[11126] = 121 +im[11126] = 0.1695 +ij[11126] = 14 +id[11127] = "2821-09-16T00:59:35" +ik[11127] = -2.265 +il[11127] = 13 +im[11127] = 0.1575 +ij[11127] = 4 +id[11128] = "2821-10-03T03:43:01" +ik[11128] = 0 +il[11128] = 141 +im[11128] = 0.1388 +ij[11128] = 17 +id[11129] = "2821-10-03T14:29:02" +ik[11129] = 46.174 +il[11129] = -16 +im[11129] = 0.1356 +ij[11129] = 1 +id[11130] = "2821-11-29T03:43:44" +ik[11130] = 0.216 +il[11130] = -18 +im[11130] = 0.1037 +ij[11130] = 27.3 +id[11131] = "2821-12-29T04:05:11" +ik[11131] = 0.485 +il[11131] = -90 +im[11131] = 0.0887 +ij[11131] = 27.5 +id[11132] = "2822-01-05T07:52:13" +ik[11132] = 0.15 +il[11132] = -77 +im[11132] = 0.0289 +ij[11132] = 28.5 +id[11133] = "2822-01-30T09:23:35" +ik[11133] = 34.676 +il[11133] = 143 +im[11133] = 0.0451 +ij[11133] = 9 +id[11134] = "2822-01-31T20:43:29" +ik[11134] = -26.306 +il[11134] = -13 +im[11134] = 0.0213 +ij[11134] = 15 +id[11135] = "2822-03-11T12:46:41" +ik[11135] = 1.941 +il[11135] = 117 +im[11135] = 0.0733 +ij[11135] = 27.6 +id[11136] = "2822-05-07T04:59:01" +ik[11136] = 0.712 +il[11136] = 62 +im[11136] = 0.0614 +ij[11136] = 28.7 +id[11137] = "2822-05-15T09:36:02" +ik[11137] = 3.876 +il[11137] = 70 +im[11137] = 0.0152 +ij[11137] = 27.2 +id[11138] = "2822-06-02T06:12:06" +ik[11138] = 0.157 +il[11138] = -71 +im[11138] = 0.0443 +ij[11138] = 28.2 +id[11139] = "2822-06-06T02:58:34" +ik[11139] = 12 +il[11139] = 18 +im[11139] = 0.0569 +ij[11139] = 18 +id[11140] = "2822-06-07T06:42:20" +ik[11140] = 0.922 +il[11140] = -31 +im[11140] = 0.0524 +ij[11140] = 28.1 +id[11141] = "2822-08-11T21:50:34" +ik[11141] = 1.13 +il[11141] = 3 +im[11141] = 0.039 +ij[11141] = 12 +id[11142] = "2822-10-21T04:22:49" +ik[11142] = 25.616 +il[11142] = 80 +im[11142] = 0.0146 +ij[11142] = 16 +id[11143] = "2822-11-27T14:15:01" +ik[11143] = 1.337 +il[11143] = -69 +im[11143] = 0.0435 +ij[11143] = 28.6 +id[11144] = "2823-01-10T17:04:34" +ik[11144] = 4.935 +il[11144] = -49 +im[11144] = 0.0516 +ij[11144] = 28.2 +id[11145] = "2823-01-22T20:04:02" +ik[11145] = 31.18 +il[11145] = 21 +im[11145] = 0.0652 +ij[11145] = 8 +id[11146] = "2823-02-04T09:47:22" +ik[11146] = 4.746 +il[11146] = -65 +im[11146] = 0.0847 +ij[11146] = 27.4 +id[11147] = "2823-02-20T12:47:07" +ik[11147] = 5.089 +il[11147] = 43 +im[11147] = 0.0771 +ij[11147] = 27.1 +id[11148] = "2823-03-14T01:08:35" +ik[11148] = 23 +il[11148] = 61 +im[11148] = 0.044 +ij[11148] = 17 +id[11149] = "2823-04-28T13:00:02" +ik[11149] = 40.921 +il[11149] = -47 +im[11149] = 0.1188 +ij[11149] = 3 +id[11150] = "2823-05-20T20:48:02" +ik[11150] = -1.957 +il[11150] = 48 +im[11150] = 0.0637 +ij[11150] = 2 +id[11151] = "2823-06-08T15:19:19" +ik[11151] = 1.563 +il[11151] = -53 +im[11151] = 0.1654 +ij[11151] = 27.3 +id[11152] = "2823-07-13T10:12:17" +ik[11152] = 0 +il[11152] = -5 +im[11152] = 0.2377 +ij[11152] = 13 +id[11153] = "2823-08-12T15:39:54" +ik[11153] = 6.5 +il[11153] = -171 +im[11153] = 0.0333 +ij[11153] = 11 +id[11154] = "2823-09-14T09:54:57" +ik[11154] = 62.99 +il[11154] = 64 +im[11154] = 0.3181 +ij[11154] = 7.1004 +id[11155] = "2823-10-09T16:56:53" +ik[11155] = 2.671 +il[11155] = -153 +im[11155] = 0.1717 +ij[11155] = 27.3 +id[11156] = "2823-10-26T04:35:47" +ik[11156] = 104.77 +il[11156] = -165 +im[11156] = 0.2244 +ij[11156] = 14 +id[11157] = "2823-11-05T04:09:49" +ik[11157] = -2.318 +il[11157] = -61 +im[11157] = 0.0601 +ij[11157] = 4 +id[11158] = "2823-11-24T05:00:47" +ik[11158] = 1.065 +il[11158] = 112 +im[11158] = 0.1792 +ij[11158] = 27.5 +id[11159] = "2823-12-02T03:31:58" +ik[11159] = 44.253 +il[11159] = -149 +im[11159] = 0.0142 +ij[11159] = 1 +id[11160] = "2824-01-05T17:55:11" +ik[11160] = -26.451 +il[11160] = -31 +im[11160] = 0.1116 +ij[11160] = 15 +id[11161] = "2824-02-14T21:46:37" +ik[11161] = 1.563 +il[11161] = -66 +im[11161] = 0.0681 +ij[11161] = 27.6 +id[11162] = "2824-03-02T15:52:45" +ik[11162] = 1.558 +il[11162] = -179 +im[11162] = 0.0737 +ij[11162] = 28.5 +id[11163] = "2824-03-23T18:26:42" +ik[11163] = 32.801 +il[11163] = -18 +im[11163] = 0.0481 +ij[11163] = 9 +id[11164] = "2824-04-23T14:08:37" +ik[11164] = 3.559 +il[11164] = -23 +im[11164] = 0.0125 +ij[11164] = 27.2 +id[11165] = "2824-04-29T09:54:37" +ik[11165] = 0.963 +il[11165] = 99 +im[11165] = 0.0615 +ij[11165] = 28.7 +id[11166] = "2824-05-01T15:26:15" +ik[11166] = 1.114 +il[11166] = 34 +im[11166] = 0.0654 +ij[11166] = 28.2 +id[11167] = "2824-05-16T22:40:58" +ik[11167] = 12 +il[11167] = 69 +im[11167] = 0.0653 +ij[11167] = 18 +id[11168] = "2824-07-15T03:01:36" +ik[11168] = 0.565 +il[11168] = -147 +im[11168] = 0.0468 +ij[11168] = 28.2 +id[11169] = "2824-09-17T03:49:41" +ik[11169] = 1 +il[11169] = 100 +im[11169] = 0.0328 +ij[11169] = 12 +id[11170] = "2824-10-02T15:32:35" +ik[11170] = 25.781 +il[11170] = -87 +im[11170] = 0.0376 +ij[11170] = 16 +id[11171] = "2824-12-18T09:15:28" +ik[11171] = 1.543 +il[11171] = 42 +im[11171] = 0.0619 +ij[11171] = 28.6 +id[11172] = "2824-12-27T05:26:11" +ik[11172] = 1.821 +il[11172] = -177 +im[11172] = 0.0349 +ij[11172] = 28.2 +id[11173] = "2825-01-11T19:40:00" +ik[11173] = 4.424 +il[11173] = 113 +im[11173] = 0.058 +ij[11173] = 27.4 +id[11174] = "2825-01-26T13:28:03" +ik[11174] = 5.384 +il[11174] = -10 +im[11174] = 0.0546 +ij[11174] = 27.1 +id[11175] = "2825-02-15T06:48:13" +ik[11175] = 0 +il[11175] = -88 +im[11175] = 0.0688 +ij[11175] = 17 +id[11176] = "2825-03-03T02:39:08" +ik[11176] = 32.836 +il[11176] = 128 +im[11176] = 0.0415 +ij[11176] = 8 +id[11177] = "2825-04-20T04:49:39" +ik[11177] = 0.067 +il[11177] = -169 +im[11177] = 0.0296 +ij[11177] = 27.3 +id[11178] = "2825-05-22T10:22:24" +ik[11178] = 1.451 +il[11178] = 53 +im[11178] = 0.1081 +ij[11178] = 27.5 +id[11179] = "2825-06-19T18:04:02" +ik[11179] = -24.098 +il[11179] = -151 +im[11179] = 0.1262 +ij[11179] = 15 +id[11180] = "2825-07-08T06:12:57" +ik[11180] = 46.695 +il[11180] = -156 +im[11180] = 0.1583 +ij[11180] = 3 +id[11181] = "2825-08-07T14:40:04" +ik[11181] = -2.394 +il[11181] = 11 +im[11181] = 0.1505 +ij[11181] = 2 +id[11182] = "2825-08-19T06:28:21" +ik[11182] = 5.736 +il[11182] = -112 +im[11182] = 0.2307 +ij[11182] = 27.6 +id[11183] = "2825-09-25T04:36:18" +ik[11183] = 0 +il[11183] = -83 +im[11183] = 0.182 +ij[11183] = 13 +id[11184] = "2825-10-01T21:23:39" +ik[11184] = 2.806 +il[11184] = 91 +im[11184] = 0.2569 +ij[11184] = 28.2 +id[11185] = "2825-10-30T10:18:08" +ik[11185] = 1.79 +il[11185] = 156 +im[11185] = 0.1788 +ij[11185] = 11 +id[11186] = "2825-11-29T07:45:10" +ik[11186] = 65.13 +il[11186] = -36 +im[11186] = 0.0474 +ij[11186] = 7.1238 +id[11187] = "2825-12-26T22:19:01" +ik[11187] = 1.169 +il[11187] = 6 +im[11187] = 0.0325 +ij[11187] = 27.6 +id[11188] = "2826-01-15T16:36:56" +ik[11188] = 112.5 +il[11188] = -81 +im[11188] = 0.1614 +ij[11188] = 14 +id[11189] = "2826-01-21T17:27:11" +ik[11189] = -1.882 +il[11189] = -36 +im[11189] = 0.0548 +ij[11189] = 4 +id[11190] = "2826-02-07T22:31:00" +ik[11190] = 39.575 +il[11190] = 50 +im[11190] = 0.0353 +ij[11190] = 1 +id[11191] = "2826-03-29T14:35:17" +ik[11191] = 3.046 +il[11191] = -82 +im[11191] = 0.0924 +ij[11191] = 27.2 +id[11192] = "2826-04-20T13:17:17" +ik[11192] = 1.276 +il[11192] = 144 +im[11192] = 0.0386 +ij[11192] = 28.7 +id[11193] = "2826-04-25T14:29:43" +ik[11193] = 12 +il[11193] = 173 +im[11193] = 0.0837 +ij[11193] = 18 +id[11194] = "2826-05-04T07:10:15" +ik[11194] = 31.599 +il[11194] = 5 +im[11194] = 0.0104 +ij[11194] = 9 +id[11195] = "2826-05-14T04:36:20" +ik[11195] = 1.21 +il[11195] = 137 +im[11195] = 0.0436 +ij[11195] = 28.5 +id[11196] = "2826-07-07T05:48:52" +ik[11196] = 1.156 +il[11196] = -90 +im[11196] = 0.0583 +ij[11196] = 28.8 +id[11197] = "2826-08-02T04:13:09" +ik[11197] = 0.957 +il[11197] = -179 +im[11197] = 0.0495 +ij[11197] = 28.1 +id[11198] = "2826-08-17T03:47:30" +ik[11198] = 1.732 +il[11198] = -19 +im[11198] = 0.0572 +ij[11198] = 28.1 +id[11199] = "2826-09-15T05:25:33" +ik[11199] = 25.92 +il[11199] = -124 +im[11199] = 0.0564 +ij[11199] = 16 +id[11200] = "2826-10-23T18:30:35" +ik[11200] = 0.49 +il[11200] = 63 +im[11200] = 0.017 +ij[11200] = 12 +id[11201] = "2826-12-23T01:38:30" +ik[11201] = 4.171 +il[11201] = 18 +im[11201] = 0.0488 +ij[11201] = 27.4 +id[11202] = "2827-01-03T03:01:09" +ik[11202] = 2.136 +il[11202] = 98 +im[11202] = 0.0112 +ij[11202] = 28.1 +id[11203] = "2827-01-06T06:51:29" +ik[11203] = 5.621 +il[11203] = 75 +im[11203] = 0.0451 +ij[11203] = 27.1 +id[11204] = "2827-01-08T15:50:00" +ik[11204] = 1.406 +il[11204] = -36 +im[11204] = 0.0601 +ij[11204] = 28.6 +id[11205] = "2827-01-25T16:54:55" +ik[11205] = 0 +il[11205] = 103 +im[11205] = 0.0595 +ij[11205] = 17 +id[11206] = "2827-03-26T08:33:19" +ik[11206] = 0.247 +il[11206] = 84 +im[11206] = 0.0591 +ij[11206] = 27.3 +id[11207] = "2827-04-25T02:15:00" +ik[11207] = 0.905 +il[11207] = 102 +im[11207] = 0.0578 +ij[11207] = 27.5 +id[11208] = "2827-04-29T09:31:35" +ik[11208] = 35.401 +il[11208] = 34 +im[11208] = 0.0151 +ij[11208] = 8 +id[11209] = "2827-05-24T06:58:52" +ik[11209] = -25.098 +il[11209] = -49 +im[11209] = 0.0624 +ij[11209] = 15 +id[11210] = "2827-07-06T11:36:00" +ik[11210] = 3.811 +il[11210] = -60 +im[11210] = 0.0545 +ij[11210] = 27.6 +id[11211] = "2827-08-26T09:06:54" +ik[11211] = 46.011 +il[11211] = 117 +im[11211] = 0.1121 +ij[11211] = 3 +id[11212] = "2827-09-15T08:38:50" +ik[11212] = 5.597 +il[11212] = -40 +im[11212] = 0.1214 +ij[11212] = 27.2 +id[11213] = "2827-09-18T13:36:05" +ik[11213] = -2.194 +il[11213] = -83 +im[11213] = 0.0327 +ij[11213] = 2 +id[11214] = "2827-10-11T03:02:14" +ik[11214] = 11 +il[11214] = -63 +im[11214] = 0.1782 +ij[11214] = 18 +id[11215] = "2827-10-15T01:27:51" +ik[11215] = 0.379 +il[11215] = -1 +im[11215] = 0.0999 +ij[11215] = 28.7 +id[11216] = "2827-11-15T16:37:26" +ik[11216] = 0 +il[11216] = 80 +im[11216] = 0.0853 +ij[11216] = 13 +id[11217] = "2827-12-04T21:21:29" +ik[11217] = 12 +il[11217] = -179 +im[11217] = 0.2636 +ij[11217] = 17 +id[11218] = "2827-12-07T11:28:05" +ik[11218] = 2.011 +il[11218] = 10 +im[11218] = 0.2119 +ij[11218] = 28.7 +id[11219] = "2827-12-24T03:10:35" +ik[11219] = 2.82 +il[11219] = -79 +im[11219] = 0.0126 +ij[11219] = 11 +id[11220] = "2828-01-27T23:35:48" +ik[11220] = 3.254 +il[11220] = 114 +im[11220] = 0.2112 +ij[11220] = 28.2 +id[11221] = "2828-01-28T06:48:17" +ik[11221] = 2.837 +il[11221] = 8 +im[11221] = 0.208 +ij[11221] = 27.2 +id[11222] = "2828-01-29T15:40:02" +ik[11222] = 74.96 +il[11222] = -112 +im[11222] = 0.1823 +ij[11222] = 7.1475 +id[11223] = "2828-03-23T00:07:12" +ik[11223] = -1.623 +il[11223] = -96 +im[11223] = 0.1233 +ij[11223] = 4 +id[11224] = "2828-03-26T00:25:36" +ik[11224] = 12 +il[11224] = -72 +im[11224] = 0.0941 +ij[11224] = 18 +id[11225] = "2828-03-29T18:09:56" +ik[11225] = 37.355 +il[11225] = 57 +im[11225] = 0.0076 +ij[11225] = 1 +id[11226] = "2828-03-29T23:26:52" +ik[11226] = 135.28 +il[11226] = -20 +im[11226] = 0.0018 +ij[11226] = 14 +id[11227] = "2828-04-04T01:08:28" +ik[11227] = 1.836 +il[11227] = 2 +im[11227] = 0.0986 +ij[11227] = 28.7 +id[11228] = "2828-06-09T11:02:41" +ik[11228] = 31.289 +il[11228] = 123 +im[11228] = 0.0075 +ij[11228] = 9 +id[11229] = "2828-06-23T05:41:20" +ik[11229] = 1.104 +il[11229] = -25 +im[11229] = 0.006 +ij[11229] = 28.8 +id[11230] = "2828-08-12T13:15:01" +ik[11230] = 0.34 +il[11230] = -16 +im[11230] = 0.0599 +ij[11230] = 28.5 +id[11231] = "2828-08-27T09:15:20" +ik[11231] = 26.052 +il[11231] = -173 +im[11231] = 0.0622 +ij[11231] = 16 +id[11232] = "2828-12-02T19:26:35" +ik[11232] = 0.29 +il[11232] = -84 +im[11232] = 0.0467 +ij[11232] = 12 +id[11233] = "2829-01-05T16:36:00" +ik[11233] = 0 +il[11233] = 112 +im[11233] = 0.0487 +ij[11233] = 17 +id[11234] = "2829-03-04T06:31:00" +ik[11234] = 0.286 +il[11234] = 89 +im[11234] = 0.056 +ij[11234] = 27.3 +id[11235] = "2829-03-25T12:14:06" +ik[11235] = 1.849 +il[11235] = -142 +im[11235] = 0.0202 +ij[11235] = 28.1 +id[11236] = "2829-04-02T04:40:41" +ik[11236] = 0.696 +il[11236] = 45 +im[11236] = 0.0607 +ij[11236] = 27.5 +id[11237] = "2829-05-01T19:15:37" +ik[11237] = -25.491 +il[11237] = 112 +im[11237] = 0.0617 +ij[11237] = 15 +id[11238] = "2829-06-11T06:17:47" +ik[11238] = 3.192 +il[11238] = -19 +im[11238] = 0.0745 +ij[11238] = 27.6 +id[11239] = "2829-06-24T11:43:26" +ik[11239] = 3.002 +il[11239] = 29 +im[11239] = 0.0777 +ij[11239] = 28.2 +id[11240] = "2829-07-19T08:24:28" +ik[11240] = 35.907 +il[11240] = -37 +im[11240] = 0.0317 +ij[11240] = 8 +id[11241] = "2829-08-14T00:56:54" +ik[11241] = 5.043 +il[11241] = -33 +im[11241] = 0.0263 +ij[11241] = 27.2 +id[11242] = "2829-09-02T05:25:12" +ik[11242] = 11 +il[11242] = 88 +im[11242] = 0.0478 +ij[11242] = 18 +id[11243] = "2829-09-16T21:43:57" +ik[11243] = 0.14 +il[11243] = -13 +im[11243] = 0.0763 +ij[11243] = 28.7 +id[11244] = "2829-10-12T14:02:58" +ik[11244] = 41.363 +il[11244] = -8 +im[11244] = 0.0242 +ij[11244] = 3 +id[11245] = "2829-10-19T00:56:07" +ik[11245] = -1.895 +il[11245] = -108 +im[11245] = 0.1258 +ij[11245] = 2 +id[11246] = "2829-12-18T19:46:54" +ik[11246] = 5.485 +il[11246] = -161 +im[11246] = 0.1128 +ij[11246] = 28.8 +id[11247] = "2829-12-22T23:27:20" +ik[11247] = 0 +il[11247] = -176 +im[11247] = 0.0655 +ij[11247] = 13 +id[11248] = "2830-01-31T20:36:49" +ik[11248] = 4.32 +il[11248] = -130 +im[11248] = 0.0916 +ij[11248] = 11 +id[11249] = "2830-03-13T01:27:09" +ik[11249] = 80.08 +il[11249] = -26 +im[11249] = 0.0349 +ij[11249] = 7.1813 +id[11250] = "2830-05-10T09:16:59" +ik[11250] = 37.108 +il[11250] = 50 +im[11250] = 0.0723 +ij[11250] = 1 +id[11251] = "2830-05-10T13:34:20" +ik[11251] = -1.554 +il[11251] = -13 +im[11251] = 0.0751 +ij[11251] = 4 +id[11252] = "2830-05-19T03:06:57" +ik[11252] = 147.15 +il[11252] = -134 +im[11252] = 0.0243 +ij[11252] = 14 +id[11253] = "2830-06-06T04:28:21" +ik[11253] = 1.136 +il[11253] = 19 +im[11253] = 0.0378 +ij[11253] = 28.8 +id[11254] = "2830-07-17T04:36:55" +ik[11254] = 31.817 +il[11254] = 51 +im[11254] = 0.0169 +ij[11254] = 9 +id[11255] = "2830-08-08T08:48:59" +ik[11255] = 26.186 +il[11255] = -157 +im[11255] = 0.0657 +ij[11255] = 16 +id[11256] = "2830-08-31T07:25:08" +ik[11256] = 0.427 +il[11256] = 86 +im[11256] = 0.0391 +ij[11256] = 28.2 +id[11257] = "2830-09-30T03:34:14" +ik[11257] = 4.893 +il[11257] = 74 +im[11257] = 0.0504 +ij[11257] = 28.1 +id[11258] = "2830-11-10T18:09:39" +ik[11258] = 0.998 +il[11258] = -100 +im[11258] = 0.0253 +ij[11258] = 28.5 +id[11259] = "2830-11-14T08:50:27" +ik[11259] = 3.693 +il[11259] = 75 +im[11259] = 0.0561 +ij[11259] = 27.4 +id[11260] = "2830-12-18T01:51:36" +ik[11260] = 0 +il[11260] = 164 +im[11260] = 0.0438 +ij[11260] = 17 +id[11261] = "2831-01-25T10:35:02" +ik[11261] = 1.01 +il[11261] = 55 +im[11261] = 0.0609 +ij[11261] = 12 +id[11262] = "2831-04-11T21:38:21" +ik[11262] = -25.729 +il[11262] = 67 +im[11262] = 0.0536 +ij[11262] = 15 +id[11263] = "2831-05-21T05:39:34" +ik[11263] = 2.833 +il[11263] = -17 +im[11263] = 0.0604 +ij[11263] = 27.6 +id[11264] = "2831-06-14T01:50:50" +ik[11264] = 2.164 +il[11264] = -85 +im[11264] = 0.0035 +ij[11264] = 28.2 +id[11265] = "2831-06-14T13:53:13" +ik[11265] = 4.279 +il[11265] = 99 +im[11265] = 0.01 +ij[11265] = 28.1 +id[11266] = "2831-07-22T18:38:28" +ik[11266] = 4.696 +il[11266] = 42 +im[11266] = 0.0621 +ij[11266] = 27.2 +id[11267] = "2831-08-10T23:31:57" +ik[11267] = 12 +il[11267] = 156 +im[11267] = 0.0041 +ij[11267] = 18 +id[11268] = "2831-09-06T03:10:44" +ik[11268] = 0.114 +il[11268] = -4 +im[11268] = 0.0413 +ij[11268] = 28.7 +id[11269] = "2831-09-21T01:28:28" +ik[11269] = 33.41 +il[11269] = 167 +im[11269] = 0.03 +ij[11269] = 8 +id[11270] = "2831-11-09T08:34:56" +ik[11270] = 1.25 +il[11270] = 178 +im[11270] = 0.0747 +ij[11270] = 28.8 +id[11271] = "2831-11-19T21:34:21" +ik[11271] = -1.692 +il[11271] = 85 +im[11271] = 0.0338 +ij[11271] = 2 +id[11272] = "2831-11-25T21:20:52" +ik[11272] = 37.868 +il[11272] = 146 +im[11272] = 0.1139 +ij[11272] = 3 +id[11273] = "2832-01-25T03:07:25" +ik[11273] = 0 +il[11273] = -78 +im[11273] = 0.1184 +ij[11273] = 13 +id[11274] = "2832-02-12T04:11:19" +ik[11274] = 1.81 +il[11274] = 81 +im[11274] = 0.1026 +ij[11274] = 28.2 +id[11275] = "2832-03-06T08:53:42" +ik[11275] = 4.06 +il[11275] = -148 +im[11275] = 0.0818 +ij[11275] = 11 +id[11276] = "2832-04-17T02:10:01" +ik[11276] = 82.96 +il[11276] = 132 +im[11276] = 0.0357 +ij[11276] = 7.2086 +id[11277] = "2832-04-22T20:08:21" +ik[11277] = 2.748 +il[11277] = -82 +im[11277] = 0.1481 +ij[11277] = 28.8 +id[11278] = "2832-06-18T03:06:54" +ik[11278] = 38.455 +il[11278] = -4 +im[11278] = 0.0977 +ij[11278] = 1 +id[11279] = "2832-06-23T04:21:52" +ik[11279] = 150.05 +il[11279] = 26 +im[11279] = 0.059 +ij[11279] = 14 +id[11280] = "2832-06-23T11:01:28" +ik[11280] = -1.627 +il[11280] = -71 +im[11280] = 0.0534 +ij[11280] = 4 +id[11281] = "2832-07-16T10:53:55" +ik[11281] = 26.313 +il[11281] = 153 +im[11281] = 0.0832 +ij[11281] = 16 +id[11282] = "2832-08-28T17:06:14" +ik[11282] = 33.196 +il[11282] = 120 +im[11282] = 0.083 +ij[11282] = 9 +id[11283] = "2832-10-24T18:44:02" +ik[11283] = 3.391 +il[11283] = -68 +im[11283] = 0.07 +ij[11283] = 27.4 +id[11284] = "2832-11-07T18:52:10" +ik[11284] = 6.349 +il[11284] = 66 +im[11284] = 0.0622 +ij[11284] = 27.1 +id[11285] = "2832-11-28T05:16:03" +ik[11285] = 0 +il[11285] = 110 +im[11285] = 0.0444 +ij[11285] = 17 +id[11286] = "2832-12-15T20:33:58" +ik[11286] = 3.325 +il[11286] = 54 +im[11286] = 0.0081 +ij[11286] = 28.1 +id[11287] = "2833-03-22T12:19:21" +ik[11287] = -25.91 +il[11287] = 70 +im[11287] = 0.0539 +ij[11287] = 15 +id[11288] = "2833-04-06T21:48:49" +ik[11288] = 0.66 +il[11288] = 78 +im[11288] = 0.0496 +ij[11288] = 12 +id[11289] = "2833-07-01T17:09:11" +ik[11289] = 4.438 +il[11289] = 66 +im[11289] = 0.0592 +ij[11289] = 27.2 +id[11290] = "2833-07-21T09:59:44" +ik[11290] = 12 +il[11290] = 5 +im[11290] = 0.0098 +ij[11290] = 18 +id[11291] = "2833-08-28T18:17:20" +ik[11291] = 0.259 +il[11291] = -107 +im[11291] = 0.0602 +ij[11291] = 28.7 +id[11292] = "2833-10-21T20:24:56" +ik[11292] = 0.88 +il[11292] = 24 +im[11292] = 0.0739 +ij[11292] = 28.8 +id[11293] = "2833-11-02T05:49:21" +ik[11293] = 31.5 +il[11293] = -7 +im[11293] = 0.053 +ij[11293] = 8 +id[11294] = "2833-12-24T12:20:36" +ik[11294] = -1.591 +il[11294] = 41 +im[11294] = 0.0255 +ij[11294] = 2 +id[11295] = "2834-01-03T10:02:55" +ik[11295] = 36.283 +il[11295] = 171 +im[11295] = 0.1008 +ij[11295] = 3 +id[11296] = "2834-03-02T04:22:20" +ik[11296] = 0 +il[11296] = 93 +im[11296] = 0.1248 +ij[11296] = 13 +id[11297] = "2834-03-24T14:08:50" +ik[11297] = 6.132 +il[11297] = 150 +im[11297] = 0.2145 +ij[11297] = 28.1 +id[11298] = "2834-04-10T00:58:09" +ik[11298] = 2.53 +il[11298] = 134 +im[11298] = 0.2065 +ij[11298] = 11 +id[11299] = "2834-04-30T09:36:16" +ik[11299] = 0.341 +il[11299] = -20 +im[11299] = 0.1147 +ij[11299] = 28.1 +id[11300] = "2834-05-16T22:18:50" +ik[11300] = 0.14 +il[11300] = -51 +im[11300] = 0.1888 +ij[11300] = 28.2 +id[11301] = "2834-05-21T04:25:56" +ik[11301] = 80 +il[11301] = -101 +im[11301] = 0.1382 +ij[11301] = 7.2026 +id[11302] = "2834-06-19T03:38:57" +ik[11302] = 26.068 +il[11302] = -168 +im[11302] = 0.0776 +ij[11302] = 16 +id[11303] = "2834-07-23T06:06:44" +ik[11303] = 143.07 +il[11303] = 126 +im[11303] = 0.0781 +ij[11303] = 14 +id[11304] = "2834-07-30T20:15:56" +ik[11304] = 41.357 +il[11304] = -12 +im[11304] = 0.0758 +ij[11304] = 1 +id[11305] = "2834-08-04T08:43:43" +ik[11305] = -1.83 +il[11305] = -155 +im[11305] = 0.038 +ij[11305] = 4 +id[11306] = "2834-10-02T23:24:30" +ik[11306] = 2.932 +il[11306] = -154 +im[11306] = 0.0725 +ij[11306] = 27.4 +id[11307] = "2834-10-25T02:11:07" +ik[11307] = 35.052 +il[11307] = 21 +im[11307] = 0.0472 +ij[11307] = 9 +id[11308] = "2834-11-08T06:27:07" +ik[11308] = 0 +il[11308] = 96 +im[11308] = 0.0606 +ij[11308] = 17 +id[11309] = "2835-01-02T05:14:37" +ik[11309] = 0.156 +il[11309] = -66 +im[11309] = 0.0755 +ij[11309] = 27.3 +id[11310] = "2835-01-30T18:26:13" +ik[11310] = 0.459 +il[11310] = 17 +im[11310] = 0.0719 +ij[11310] = 27.5 +id[11311] = "2835-03-02T09:36:27" +ik[11311] = 4.359 +il[11311] = 95 +im[11311] = 0.0635 +ij[11311] = 28.1 +id[11312] = "2835-03-03T00:29:22" +ik[11312] = -26.073 +il[11312] = -124 +im[11312] = 0.0598 +ij[11312] = 15 +id[11313] = "2835-03-15T22:26:45" +ik[11313] = 1.667 +il[11313] = 31 +im[11313] = 0.0616 +ij[11313] = 28.6 +id[11314] = "2835-03-15T23:47:21" +ik[11314] = 1.084 +il[11314] = 20 +im[11314] = 0.0614 +ij[11314] = 28.2 +id[11315] = "2835-03-19T05:38:40" +ik[11315] = 0.708 +il[11315] = -36 +im[11315] = 0.0366 +ij[11315] = 28.5 +id[11316] = "2835-06-10T18:57:16" +ik[11316] = 0.45 +il[11316] = -146 +im[11316] = 0.0581 +ij[11316] = 12 +id[11317] = "2835-07-02T19:11:25" +ik[11317] = 12 +il[11317] = -130 +im[11317] = 0.0195 +ij[11317] = 18 +id[11318] = "2835-08-22T20:06:49" +ik[11318] = 0.332 +il[11318] = 2 +im[11318] = 0.0518 +ij[11318] = 28.7 +id[11319] = "2835-10-08T19:35:20" +ik[11319] = 0.64 +il[11319] = 104 +im[11319] = 0.0254 +ij[11319] = 28.8 +id[11320] = "2835-11-09T05:52:00" +ik[11320] = 2.28 +il[11320] = -107 +im[11320] = 0.0133 +ij[11320] = 28.2 +id[11321] = "2835-11-17T00:45:47" +ik[11321] = 25.278 +il[11321] = 45 +im[11321] = 0.0574 +ij[11321] = 16 +id[11322] = "2835-12-07T12:22:41" +ik[11322] = 30.661 +il[11322] = 69 +im[11322] = 0.0094 +ij[11322] = 8 +id[11323] = "2836-02-07T19:25:30" +ik[11323] = -1.597 +il[11323] = -158 +im[11323] = 0.1043 +ij[11323] = 2 +id[11324] = "2836-02-13T01:54:54" +ik[11324] = 36.541 +il[11324] = 155 +im[11324] = 0.051 +ij[11324] = 3 +id[11325] = "2836-04-12T06:07:13" +ik[11325] = 0 +il[11325] = -65 +im[11325] = 0.0488 +ij[11325] = 13 +id[11326] = "2836-05-19T07:04:23" +ik[11326] = 0.11 +il[11326] = -110 +im[11326] = 0.161 +ij[11326] = 11 +id[11327] = "2836-06-27T07:11:49" +ik[11327] = 76.04 +il[11327] = 63 +im[11327] = 0.1549 +ij[11327] = 7.1543 +id[11328] = "2836-08-21T14:42:34" +ik[11328] = 131.36 +il[11328] = 129 +im[11328] = 0.1178 +ij[11328] = 14 +id[11329] = "2836-09-01T15:51:17" +ik[11329] = 1.931 +il[11329] = -140 +im[11329] = 0.1507 +ij[11329] = 27.4 +id[11330] = "2836-09-03T18:34:51" +ik[11330] = -2.138 +il[11330] = -160 +im[11330] = 0.1427 +ij[11330] = 4 +id[11331] = "2836-09-14T19:56:55" +ik[11331] = 45.162 +il[11331] = -72 +im[11331] = 0.1254 +ij[11331] = 1 +id[11332] = "2836-10-14T23:56:10" +ik[11332] = 0 +il[11332] = 164 +im[11332] = 0.1165 +ij[11332] = 17 +id[11333] = "2836-12-09T14:09:19" +ik[11333] = 0.044 +il[11333] = 139 +im[11333] = 0.0875 +ij[11333] = 27.3 +id[11334] = "2837-01-04T09:09:21" +ik[11334] = 35.307 +il[11334] = 107 +im[11334] = 0.0393 +ij[11334] = 9 +id[11335] = "2837-01-07T20:55:53" +ik[11335] = 0.454 +il[11335] = -36 +im[11335] = 0.0825 +ij[11335] = 27.5 +id[11336] = "2837-02-09T13:10:16" +ik[11336] = -26.239 +il[11336] = 38 +im[11336] = 0.0761 +ij[11336] = 15 +id[11337] = "2837-02-10T20:07:38" +ik[11337] = 0.331 +il[11337] = -54 +im[11337] = 0.0665 +ij[11337] = 28.2 +id[11338] = "2837-03-20T01:03:04" +ik[11338] = 2.056 +il[11338] = -131 +im[11338] = 0.0451 +ij[11338] = 27.6 +id[11339] = "2837-03-28T14:24:18" +ik[11339] = 2.27 +il[11339] = 111 +im[11339] = 0.0245 +ij[11339] = 28.6 +id[11340] = "2837-04-29T21:36:06" +ik[11340] = 0.913 +il[11340] = -39 +im[11340] = 0.0227 +ij[11340] = 28.2 +id[11341] = "2837-05-19T06:25:17" +ik[11341] = 0.983 +il[11341] = 6 +im[11341] = 0.0572 +ij[11341] = 28.5 +id[11342] = "2837-05-23T03:36:20" +ik[11342] = 3.978 +il[11342] = 84 +im[11342] = 0.0452 +ij[11342] = 27.2 +id[11343] = "2837-06-13T10:02:24" +ik[11343] = 12 +il[11343] = -168 +im[11343] = 0.0293 +ij[11343] = 18 +id[11344] = "2837-07-27T04:47:30" +ik[11344] = 1.05 +il[11344] = -24 +im[11344] = 0.0353 +ij[11344] = 12 +id[11345] = "2837-10-18T16:12:22" +ik[11345] = 5.58 +il[11345] = 92 +im[11345] = 0.0051 +ij[11345] = 28.1 +id[11346] = "2837-10-28T01:45:39" +ik[11346] = 0.368 +il[11346] = 36 +im[11346] = 0.0502 +ij[11346] = 28.2 +id[11347] = "2837-10-28T05:09:39" +ik[11347] = 25.54 +il[11347] = -10 +im[11347] = 0.0491 +ij[11347] = 16 +id[11348] = "2838-01-09T03:51:07" +ik[11348] = 30.834 +il[11348] = -10 +im[11348] = 0.0539 +ij[11348] = 8 +id[11349] = "2838-02-15T04:38:53" +ik[11349] = 4.906 +il[11349] = -29 +im[11349] = 0.0796 +ij[11349] = 27.4 +id[11350] = "2838-03-04T16:12:24" +ik[11350] = 4.954 +il[11350] = -37 +im[11350] = 0.1074 +ij[11350] = 27.1 +id[11351] = "2838-03-28T23:58:24" +ik[11351] = 23 +il[11351] = 77 +im[11351] = 0.1145 +ij[11351] = 17 +id[11352] = "2838-04-03T08:38:49" +ik[11352] = 39.067 +il[11352] = -2 +im[11352] = 0.1217 +ij[11352] = 3 +id[11353] = "2838-04-15T21:37:58" +ik[11353] = -1.784 +il[11353] = -78 +im[11353] = 0.1356 +ij[11353] = 2 +id[11354] = "2838-06-13T14:43:03" +ik[11354] = 0 +il[11354] = -145 +im[11354] = 0.1527 +ij[11354] = 13 +id[11355] = "2838-06-21T04:44:06" +ik[11355] = 1.626 +il[11355] = 80 +im[11355] = 0.2766 +ij[11355] = 28.2 +id[11356] = "2838-07-14T03:29:17" +ik[11356] = 5.03 +il[11356] = -53 +im[11356] = 0.0866 +ij[11356] = 11 +id[11357] = "2838-08-18T13:45:39" +ik[11357] = 65.96 +il[11357] = -47 +im[11357] = 0.2886 +ij[11357] = 7.1047 +id[11358] = "2838-10-02T05:03:29" +ik[11358] = 110.6 +il[11358] = 162 +im[11358] = 0.0516 +ij[11358] = 14 +id[11359] = "2838-10-11T21:39:45" +ik[11359] = -2.377 +il[11359] = 9 +im[11359] = 0.2081 +ij[11359] = 4 +id[11360] = "2838-11-05T17:52:56" +ik[11360] = 45.86 +il[11360] = -50 +im[11360] = 0.1433 +ij[11360] = 1 +id[11361] = "2838-11-07T20:39:57" +ik[11361] = 0.85 +il[11361] = -71 +im[11361] = 0.168 +ij[11361] = 27.3 +id[11362] = "2838-12-11T03:49:30" +ik[11362] = 0.65 +il[11362] = 147 +im[11362] = 0.0967 +ij[11362] = 27.5 +id[11363] = "2839-01-17T01:08:04" +ik[11363] = -26.412 +il[11363] = -179 +im[11363] = 0.0878 +ij[11363] = 15 +id[11364] = "2839-02-25T08:23:54" +ik[11364] = 1.727 +il[11364] = 90 +im[11364] = 0.0104 +ij[11364] = 27.6 +id[11365] = "2839-03-05T22:32:00" +ik[11365] = 33.488 +il[11365] = -41 +im[11365] = 0.074 +ij[11365] = 9 +id[11366] = "2839-04-10T22:12:52" +ik[11366] = 2.534 +il[11366] = -55 +im[11366] = 0.0352 +ij[11366] = 28.6 +id[11367] = "2839-05-03T00:48:57" +ik[11367] = 3.697 +il[11367] = 114 +im[11367] = 0.0553 +ij[11367] = 27.2 +id[11368] = "2839-05-25T15:03:14" +ik[11368] = 12 +il[11368] = 114 +im[11368] = 0.0362 +ij[11368] = 18 +id[11369] = "2839-09-04T00:21:43" +ik[11369] = 1.1 +il[11369] = -124 +im[11369] = 0.0467 +ij[11369] = 12 +id[11370] = "2839-10-10T11:42:26" +ik[11370] = 25.722 +il[11370] = -99 +im[11370] = 0.0328 +ij[11370] = 16 +id[11371] = "2840-01-21T03:52:34" +ik[11371] = 4.537 +il[11371] = -70 +im[11371] = 0.0042 +ij[11371] = 27.4 +id[11372] = "2840-02-05T06:28:20" +ik[11372] = 5.279 +il[11372] = 34 +im[11372] = 0.008 +ij[11372] = 27.1 +id[11373] = "2840-02-15T05:35:34" +ik[11373] = 32.052 +il[11373] = 142 +im[11373] = 0.0601 +ij[11373] = 8 +id[11374] = "2840-02-25T08:43:16" +ik[11374] = 0 +il[11374] = -169 +im[11374] = 0.0784 +ij[11374] = 17 +id[11375] = "2840-05-02T20:18:24" +ik[11375] = 0.14 +il[11375] = -65 +im[11375] = 0.0602 +ij[11375] = 27.3 +id[11376] = "2840-06-07T07:24:01" +ik[11376] = 2.046 +il[11376] = 105 +im[11376] = 0.1649 +ij[11376] = 27.5 +id[11377] = "2840-06-11T22:08:49" +ik[11377] = 44.676 +il[11377] = -72 +im[11377] = 0.0633 +ij[11377] = 3 +id[11378] = "2840-07-12T17:39:47" +ik[11378] = -2.293 +il[11378] = -70 +im[11378] = 0.0297 +ij[11378] = 2 +id[11379] = "2840-08-29T05:04:00" +ik[11379] = 0 +il[11379] = -142 +im[11379] = 0.3553 +ij[11379] = 13 +id[11380] = "2840-10-01T14:19:57" +ik[11380] = 4.69 +il[11380] = 25 +im[11380] = 0.086 +ij[11380] = 11 +id[11381] = "2840-10-31T04:06:35" +ik[11381] = 62.96 +il[11381] = -51 +im[11381] = 0.1147 +ij[11381] = 7.1144 +id[11382] = "2840-11-09T05:26:11" +ik[11382] = 0.469 +il[11382] = 17 +im[11382] = 0.1368 +ij[11382] = 28.2 +id[11383] = "2840-12-12T16:36:20" +ik[11383] = 105.48 +il[11383] = 172 +im[11383] = 0.1364 +ij[11383] = 14 +id[11384] = "2840-12-13T11:44:56" +ik[11384] = -26.118 +il[11384] = -108 +im[11384] = 0.1593 +ij[11384] = 15 +id[11385] = "2840-12-22T16:26:54" +ik[11385] = -2.051 +il[11385] = -90 +im[11385] = 0.0745 +ij[11385] = 4 +id[11386] = "2841-01-14T04:33:53" +ik[11386] = 41.16 +il[11386] = -58 +im[11386] = 0.1532 +ij[11386] = 1 +id[11387] = "2841-01-23T17:10:52" +ik[11387] = 1.237 +il[11387] = -157 +im[11387] = 0.0496 +ij[11387] = 27.6 +id[11388] = "2841-04-09T07:06:37" +ik[11388] = 3.288 +il[11388] = -10 +im[11388] = 0.0812 +ij[11388] = 27.2 +id[11389] = "2841-04-18T23:55:07" +ik[11389] = 31.962 +il[11389] = -173 +im[11389] = 0.026 +ij[11389] = 9 +id[11390] = "2841-04-23T07:24:28" +ik[11390] = 2.422 +il[11390] = 115 +im[11390] = 0.0729 +ij[11390] = 28.6 +id[11391] = "2841-05-04T09:42:40" +ik[11391] = 12 +il[11391] = -175 +im[11391] = 0.0407 +ij[11391] = 18 +id[11392] = "2841-07-09T23:55:34" +ik[11392] = 2.892 +il[11392] = -119 +im[11392] = 0.0295 +ij[11392] = 28.1 +id[11393] = "2841-08-05T05:35:36" +ik[11393] = 0.657 +il[11393] = 56 +im[11393] = 0.0497 +ij[11393] = 28.2 +id[11394] = "2841-08-06T04:37:24" +ik[11394] = 0.269 +il[11394] = 79 +im[11394] = 0.0426 +ij[11394] = 28.7 +id[11395] = "2841-09-22T01:51:20" +ik[11395] = 25.869 +il[11395] = -150 +im[11395] = 0.0052 +ij[11395] = 16 +id[11396] = "2841-10-09T07:51:30" +ik[11396] = 0.72 +il[11396] = -61 +im[11396] = 0.0369 +ij[11396] = 12 +id[11397] = "2841-12-30T15:28:08" +ik[11397] = 4.265 +il[11397] = 95 +im[11397] = 0.0103 +ij[11397] = 27.4 +id[11398] = "2842-01-14T00:27:25" +ik[11398] = 5.534 +il[11398] = 97 +im[11398] = 0.0244 +ij[11398] = 27.1 +id[11399] = "2842-02-02T11:53:55" +ik[11399] = 0 +il[11399] = 120 +im[11399] = 0.053 +ij[11399] = 17 +id[11400] = "2842-03-27T19:12:58" +ik[11400] = 5.316 +il[11400] = 154 +im[11400] = 0.0097 +ij[11400] = 28.2 +id[11401] = "2842-04-03T21:45:47" +ik[11401] = 34.361 +il[11401] = -177 +im[11401] = 0.0831 +ij[11401] = 8 +id[11402] = "2842-04-04T09:27:05" +ik[11402] = 0.204 +il[11402] = 13 +im[11402] = 0.0847 +ij[11402] = 27.3 +id[11403] = "2842-05-04T17:40:42" +ik[11403] = 1.047 +il[11403] = 178 +im[11403] = 0.0929 +ij[11403] = 27.5 +id[11404] = "2842-06-02T17:44:42" +ik[11404] = -24.838 +il[11404] = 95 +im[11404] = 0.1024 +ij[11404] = 15 +id[11405] = "2842-07-18T11:29:51" +ik[11405] = 4.247 +il[11405] = -89 +im[11405] = 0.1023 +ij[11405] = 27.6 +id[11406] = "2842-08-08T15:06:46" +ik[11406] = 47.197 +il[11406] = 63 +im[11406] = 0.1083 +ij[11406] = 3 +id[11407] = "2842-09-04T18:21:35" +ik[11407] = -2.313 +il[11407] = -79 +im[11407] = 0.0853 +ij[11407] = 2 +id[11408] = "2842-10-29T16:36:51" +ik[11408] = 0 +il[11408] = 126 +im[11408] = 0.0717 +ij[11408] = 13 +id[11409] = "2842-11-12T16:52:10" +ik[11409] = 4.395 +il[11409] = -101 +im[11409] = 0.0486 +ij[11409] = 27.2 +id[11410] = "2842-12-05T10:14:37" +ik[11410] = 1.43 +il[11410] = -157 +im[11410] = 0.2047 +ij[11410] = 11 +id[11411] = "2843-01-08T15:41:27" +ik[11411] = 70.96 +il[11411] = -90 +im[11411] = 0.1784 +ij[11411] = 7.1368 +id[11412] = "2843-03-02T08:45:35" +ik[11412] = -1.697 +il[11412] = 148 +im[11412] = 0.0283 +ij[11412] = 4 +id[11413] = "2843-03-05T04:07:19" +ik[11413] = 126.48 +il[11413] = -116 +im[11413] = 0.093 +ij[11413] = 14 +id[11414] = "2843-03-06T15:36:37" +ik[11414] = 2.419 +il[11414] = 86 +im[11414] = 0.1117 +ij[11414] = 27.2 +id[11415] = "2843-03-12T14:54:48" +ik[11415] = 37.949 +il[11415] = 152 +im[11415] = 0.0462 +ij[11415] = 1 +id[11416] = "2843-04-09T15:49:31" +ik[11416] = 12 +il[11416] = 43 +im[11416] = 0.0443 +ij[11416] = 18 +id[11417] = "2843-05-06T23:44:06" +ik[11417] = 1.942 +il[11417] = -178 +im[11417] = 0.0556 +ij[11417] = 28.6 +id[11418] = "2843-05-27T04:52:00" +ik[11418] = 31.302 +il[11418] = -63 +im[11418] = 0.0251 +ij[11418] = 9 +id[11419] = "2843-07-05T17:03:44" +ik[11419] = 0.311 +il[11419] = 129 +im[11419] = 0.0142 +ij[11419] = 28.2 +id[11420] = "2843-07-31T18:27:02" +ik[11420] = 0.166 +il[11420] = -2 +im[11420] = 0.0436 +ij[11420] = 28.7 +id[11421] = "2843-08-24T15:38:23" +ik[11421] = 0.236 +il[11421] = -91 +im[11421] = 0.0556 +ij[11421] = 28.8 +id[11422] = "2843-09-04T11:16:06" +ik[11422] = 26.003 +il[11422] = 79 +im[11422] = 0.026 +ij[11422] = 16 +id[11423] = "2843-09-07T14:06:46" +ik[11423] = 0.906 +il[11423] = 66 +im[11423] = 0.0526 +ij[11423] = 28.1 +id[11424] = "2843-11-16T21:47:57" +ik[11424] = 0.03 +il[11424] = -66 +im[11424] = 0.0437 +ij[11424] = 12 +id[11425] = "2844-01-14T01:33:45" +ik[11425] = 0 +il[11425] = -100 +im[11425] = 0.0507 +ij[11425] = 17 +id[11426] = "2844-01-25T15:55:55" +ik[11426] = 0.438 +il[11426] = 157 +im[11426] = 0.0113 +ij[11426] = 28.5 +id[11427] = "2844-02-21T08:09:37" +ik[11427] = 2.361 +il[11427] = 167 +im[11427] = 0.0225 +ij[11427] = 28.1 +id[11428] = "2844-03-12T07:47:48" +ik[11428] = 0.278 +il[11428] = 12 +im[11428] = 0.0595 +ij[11428] = 27.3 +id[11429] = "2844-03-14T04:15:33" +ik[11429] = 1.305 +il[11429] = 84 +im[11429] = 0.0705 +ij[11429] = 28.2 +id[11430] = "2844-04-10T11:42:18" +ik[11430] = 0.76 +il[11430] = -126 +im[11430] = 0.0645 +ij[11430] = 27.5 +id[11431] = "2844-05-09T22:47:26" +ik[11431] = -25.367 +il[11431] = -9 +im[11431] = 0.0721 +ij[11431] = 15 +id[11432] = "2844-06-16T15:37:20" +ik[11432] = 36.294 +il[11432] = 105 +im[11432] = 0.0247 +ij[11432] = 8 +id[11433] = "2844-06-20T03:34:43" +ik[11433] = 3.384 +il[11433] = -40 +im[11433] = 0.0433 +ij[11433] = 27.6 +id[11434] = "2844-08-24T06:15:10" +ik[11434] = 5.226 +il[11434] = -161 +im[11434] = 0.0858 +ij[11434] = 27.2 +id[11435] = "2844-09-12T23:01:03" +ik[11435] = 11 +il[11435] = 141 +im[11435] = 0.0301 +ij[11435] = 18 +id[11436] = "2844-09-23T15:14:49" +ik[11436] = 43.195 +il[11436] = 2 +im[11436] = 0.0708 +ij[11436] = 3 +id[11437] = "2844-10-07T00:58:03" +ik[11437] = -2.003 +il[11437] = -13 +im[11437] = 0.086 +ij[11437] = 2 +id[11438] = "2844-10-30T21:05:39" +ik[11438] = 0.838 +il[11438] = -83 +im[11438] = 0.1394 +ij[11438] = 28.6 +id[11439] = "2844-12-09T04:07:48" +ik[11439] = 0 +il[11439] = -167 +im[11439] = 0.1708 +ij[11439] = 13 +id[11440] = "2844-12-20T13:27:02" +ik[11440] = 0.768 +il[11440] = 164 +im[11440] = 0.0536 +ij[11440] = 28.2 +id[11441] = "2844-12-29T11:19:03" +ik[11441] = 3.262 +il[11441] = -78 +im[11441] = 0.1463 +ij[11441] = 28.6 +id[11442] = "2845-01-02T18:45:01" +ik[11442] = 1.679 +il[11442] = -156 +im[11442] = 0.0892 +ij[11442] = 28.1 +id[11443] = "2845-01-17T10:00:24" +ik[11443] = 4.01 +il[11443] = 102 +im[11443] = 0.1239 +ij[11443] = 11 +id[11444] = "2845-02-04T21:10:41" +ik[11444] = 3.341 +il[11444] = -76 +im[11444] = 0.2126 +ij[11444] = 28.1 +id[11445] = "2845-02-25T09:00:36" +ik[11445] = 78.2 +il[11445] = -64 +im[11445] = 0.056 +ij[11445] = 7.1676 +id[11446] = "2845-04-22T10:52:43" +ik[11446] = -1.563 +il[11446] = 71 +im[11446] = 0.0467 +ij[11446] = 4 +id[11447] = "2845-04-24T17:46:45" +ik[11447] = 37.006 +il[11447] = -10 +im[11447] = 0.0897 +ij[11447] = 1 +id[11448] = "2845-05-01T21:07:26" +ik[11448] = 143.71 +il[11448] = 7 +im[11448] = 0.0684 +ij[11448] = 14 +id[11449] = "2845-05-19T22:07:27" +ik[11449] = 1.137 +il[11449] = 164 +im[11449] = 0.0247 +ij[11449] = 28.6 +id[11450] = "2845-07-02T03:59:33" +ik[11450] = 31.506 +il[11450] = 130 +im[11450] = 0.0135 +ij[11450] = 9 +id[11451] = "2845-07-24T02:41:38" +ik[11451] = 0.019 +il[11451] = 1 +im[11451] = 0.0682 +ij[11451] = 28.7 +id[11452] = "2845-08-11T20:16:58" +ik[11452] = 0.501 +il[11452] = -82 +im[11452] = 0.0071 +ij[11452] = 28.8 +id[11453] = "2845-08-16T00:47:45" +ik[11453] = 26.135 +il[11453] = -109 +im[11453] = 0.0501 +ij[11453] = 16 +id[11454] = "2845-12-25T09:43:37" +ik[11454] = 0 +il[11454] = -31 +im[11454] = 0.0535 +ij[11454] = 17 +id[11455] = "2846-01-02T07:13:18" +ik[11455] = 0.79 +il[11455] = 91 +im[11455] = 0.0173 +ij[11455] = 12 +id[11456] = "2846-03-20T18:48:57" +ik[11456] = 0.619 +il[11456] = 108 +im[11456] = 0.0461 +ij[11456] = 27.5 +id[11457] = "2846-03-29T06:23:35" +ik[11457] = 0.159 +il[11457] = 19 +im[11457] = 0.0368 +ij[11457] = 28.5 +id[11458] = "2846-04-19T15:02:08" +ik[11458] = -25.647 +il[11458] = 104 +im[11458] = 0.0558 +ij[11458] = 15 +id[11459] = "2846-05-12T07:49:56" +ik[11459] = 2.371 +il[11459] = 74 +im[11459] = 0.0279 +ij[11459] = 28.1 +id[11460] = "2846-05-29T07:10:27" +ik[11460] = 2.957 +il[11460] = -110 +im[11460] = 0.0075 +ij[11460] = 27.6 +id[11461] = "2846-07-31T02:17:50" +ik[11461] = 4.816 +il[11461] = -140 +im[11461] = 0.0651 +ij[11461] = 27.2 +id[11462] = "2846-08-19T04:28:58" +ik[11462] = 12 +il[11462] = 14 +im[11462] = 0.0733 +ij[11462] = 18 +id[11463] = "2846-08-30T16:03:33" +ik[11463] = 34.417 +il[11463] = -48 +im[11463] = 0.0778 +ij[11463] = 8 +id[11464] = "2846-11-04T03:30:58" +ik[11464] = 0.366 +il[11464] = 57 +im[11464] = 0.0254 +ij[11464] = 28.6 +id[11465] = "2846-11-07T06:14:31" +ik[11465] = -1.759 +il[11465] = 46 +im[11465] = 0.0849 +ij[11465] = 2 +id[11466] = "2846-11-09T11:37:49" +ik[11466] = 39.005 +il[11466] = -13 +im[11466] = 0.1089 +ij[11466] = 3 +id[11467] = "2846-12-28T02:18:34" +ik[11467] = 21.496 +il[11467] = -123 +im[11467] = 0.0488 +ij[11467] = 16 +id[11468] = "2847-01-11T21:07:54" +ik[11468] = 0 +il[11468] = 97 +im[11468] = 0.023 +ij[11468] = 13 +id[11469] = "2847-02-22T05:00:51" +ik[11469] = 4.32 +il[11469] = -3 +im[11469] = 0.0508 +ij[11469] = 11 +id[11470] = "2847-03-29T07:26:23" +ik[11470] = 2.224 +il[11470] = 79 +im[11470] = 0.1684 +ij[11470] = 28.2 +id[11471] = "2847-04-04T20:10:30" +ik[11471] = 82.96 +il[11471] = -49 +im[11471] = 0.0705 +ij[11471] = 7.2003 +id[11472] = "2847-06-02T06:47:44" +ik[11472] = 0.071 +il[11472] = -9 +im[11472] = 0.0934 +ij[11472] = 28.6 +id[11473] = "2847-06-03T13:27:50" +ik[11473] = 37.742 +il[11473] = -96 +im[11473] = 0.1026 +ij[11473] = 1 +id[11474] = "2847-06-07T02:51:51" +ik[11474] = -1.583 +il[11474] = 97 +im[11474] = 0.0822 +ij[11474] = 4 +id[11475] = "2847-06-11T06:12:16" +ik[11475] = 150.38 +il[11475] = 87 +im[11475] = 0.01 +ij[11475] = 14 +id[11476] = "2847-07-14T18:10:29" +ik[11476] = 0.18 +il[11476] = -129 +im[11476] = 0.0734 +ij[11476] = 28.7 +id[11477] = "2847-07-28T16:42:38" +ik[11477] = 0.808 +il[11477] = 28 +im[11477] = 0.0703 +ij[11477] = 28.8 +id[11478] = "2847-08-11T15:46:13" +ik[11478] = 32.56 +il[11478] = 178 +im[11478] = 0.0577 +ij[11478] = 9 +id[11479] = "2847-11-02T19:18:19" +ik[11479] = 3.522 +il[11479] = -147 +im[11479] = 0.0087 +ij[11479] = 27.4 +id[11480] = "2847-11-15T21:03:28" +ik[11480] = 3.559 +il[11480] = -45 +im[11480] = 0.0018 +ij[11480] = 28.1 +id[11481] = "2847-11-16T13:38:04" +ik[11481] = 6.23 +il[11481] = 73 +im[11481] = 0.0113 +ij[11481] = 27.1 +id[11482] = "2847-12-06T16:54:06" +ik[11482] = 0 +il[11482] = -135 +im[11482] = 0.058 +ij[11482] = 17 +id[11483] = "2847-12-17T04:24:53" +ik[11483] = 0.299 +il[11483] = 150 +im[11483] = 0.0328 +ij[11483] = 28.2 +id[11484] = "2848-03-08T08:54:38" +ik[11484] = 0.99 +il[11484] = -168 +im[11484] = 0.0332 +ij[11484] = 12 +id[11485] = "2848-03-30T03:13:01" +ik[11485] = -25.844 +il[11485] = -83 +im[11485] = 0.0497 +ij[11485] = 15 +id[11486] = "2848-07-09T10:53:24" +ik[11486] = 4.533 +il[11486] = 87 +im[11486] = 0.047 +ij[11486] = 27.2 +id[11487] = "2848-07-28T22:14:11" +ik[11487] = 12 +il[11487] = 107 +im[11487] = 0.0609 +ij[11487] = 18 +id[11488] = "2848-08-25T11:07:20" +ik[11488] = 1.654 +il[11488] = -179 +im[11488] = 0.0699 +ij[11488] = 28.2 +id[11489] = "2848-10-17T21:00:53" +ik[11489] = 32.118 +il[11489] = -170 +im[11489] = 0.0655 +ij[11489] = 8 +id[11490] = "2848-11-17T09:31:14" +ik[11490] = 0.166 +il[11490] = -62 +im[11490] = 0.0909 +ij[11490] = 28.6 +id[11491] = "2848-12-09T23:10:32" +ik[11491] = -1.619 +il[11491] = -49 +im[11491] = 0.018 +ij[11491] = 2 +id[11492] = "2848-12-19T06:29:48" +ik[11492] = 36.686 +il[11492] = -69 +im[11492] = 0.1025 +ij[11492] = 3 +id[11493] = "2848-12-19T11:44:59" +ik[11493] = 1.369 +il[11493] = -145 +im[11493] = 0.1004 +ij[11493] = 28.7 +id[11494] = "2849-01-06T20:25:08" +ik[11494] = 1.223 +il[11494] = -98 +im[11494] = 0.0174 +ij[11494] = 28.8 +id[11495] = "2849-02-14T06:12:44" +ik[11495] = 0 +il[11495] = 126 +im[11495] = 0.1365 +ij[11495] = 13 +id[11496] = "2849-03-27T06:03:58" +ik[11496] = 3.27 +il[11496] = 140 +im[11496] = 0.1208 +ij[11496] = 11 +id[11497] = "2849-04-12T09:09:56" +ik[11497] = 0.334 +il[11497] = 37 +im[11497] = 0.0333 +ij[11497] = 28.1 +id[11498] = "2849-04-21T18:30:39" +ik[11498] = 0.71 +il[11498] = -23 +im[11498] = 0.1483 +ij[11498] = 28.6 +id[11499] = "2849-05-08T05:15:20" +ik[11499] = 82.96 +il[11499] = -26 +im[11499] = 0.0697 +ij[11499] = 7.2104 +id[11500] = "2849-06-09T09:30:53" +ik[11500] = 1.116 +il[11500] = -138 +im[11500] = 0.0843 +ij[11500] = 28.6 +id[11501] = "2849-06-25T15:17:36" +ik[11501] = 0.376 +il[11501] = -67 +im[11501] = 0.1275 +ij[11501] = 28.7 +id[11502] = "2849-06-29T19:21:36" +ik[11502] = 26.312 +il[11502] = -88 +im[11502] = 0.11 +ij[11502] = 16 +id[11503] = "2849-07-06T03:58:46" +ik[11503] = 1.134 +il[11503] = -155 +im[11503] = 0.0395 +ij[11503] = 28.8 +id[11504] = "2849-07-11T21:53:07" +ik[11504] = 147.65 +il[11504] = -8 +im[11504] = 0.1046 +ij[11504] = 14 +id[11505] = "2849-07-13T15:17:42" +ik[11505] = 40.039 +il[11505] = 107 +im[11505] = 0.0866 +ij[11505] = 1 +id[11506] = "2849-07-20T01:10:32" +ik[11506] = -1.736 +il[11506] = 22 +im[11506] = 0.0534 +ij[11506] = 4 +id[11507] = "2849-09-30T10:47:06" +ik[11507] = 34.351 +il[11507] = -138 +im[11507] = 0.0433 +ij[11507] = 9 +id[11508] = "2849-10-11T22:49:51" +ik[11508] = 3.141 +il[11508] = 154 +im[11508] = 0.0022 +ij[11508] = 27.4 +id[11509] = "2849-11-11T17:21:06" +ik[11509] = 1.261 +il[11509] = 177 +im[11509] = 0.0256 +ij[11509] = 28.2 +id[11510] = "2849-11-16T07:10:33" +ik[11510] = 0 +il[11510] = 14 +im[11510] = 0.0713 +ij[11510] = 17 +id[11511] = "2850-01-10T08:51:34" +ik[11511] = 0.199 +il[11511] = 171 +im[11511] = 0.0397 +ij[11511] = 27.3 +id[11512] = "2850-01-30T11:43:18" +ik[11512] = 4.321 +il[11512] = -34 +im[11512] = 0.0648 +ij[11512] = 28.1 +id[11513] = "2850-02-07T19:49:52" +ik[11513] = 0.473 +il[11513] = -74 +im[11513] = 0.0306 +ij[11513] = 27.5 +id[11514] = "2850-02-14T19:54:30" +ik[11514] = 1.14 +il[11514] = -6 +im[11514] = 0.0551 +ij[11514] = 28.2 +id[11515] = "2850-03-10T17:42:01" +ik[11515] = -26.012 +il[11515] = -88 +im[11515] = 0.0481 +ij[11515] = 15 +id[11516] = "2850-05-18T23:55:58" +ik[11516] = 0.04 +il[11516] = 139 +im[11516] = 0.0202 +ij[11516] = 12 +id[11517] = "2850-07-10T01:23:26" +ik[11517] = 12 +il[11517] = 61 +im[11517] = 0.045 +ij[11517] = 18 +id[11518] = "2850-08-01T07:52:22" +ik[11518] = 0.402 +il[11518] = -170 +im[11518] = 0.0406 +ij[11518] = 28.5 +id[11519] = "2850-08-28T15:57:01" +ik[11519] = 1.305 +il[11519] = -26 +im[11519] = 0.0261 +ij[11519] = 28.2 +id[11520] = "2850-11-24T06:50:13" +ik[11520] = 30.866 +il[11520] = -122 +im[11520] = 0.0585 +ij[11520] = 8 +id[11521] = "2850-11-24T23:49:24" +ik[11521] = 25.132 +il[11521] = -10 +im[11521] = 0.0659 +ij[11521] = 16 +id[11522] = "2850-12-04T14:17:15" +ik[11522] = 0.819 +il[11522] = -135 +im[11522] = 0.0145 +ij[11522] = 28.7 +id[11523] = "2850-12-05T18:20:25" +ik[11523] = 0.695 +il[11523] = 176 +im[11523] = 0.01 +ij[11523] = 28.6 +id[11524] = "2850-12-11T14:30:18" +ik[11524] = 0.282 +il[11524] = -70 +im[11524] = 0.078 +ij[11524] = 28.8 +id[11525] = "2851-01-19T08:57:13" +ik[11525] = -1.58 +il[11525] = 27 +im[11525] = 0.0695 +ij[11525] = 2 +id[11526] = "2851-01-27T16:36:46" +ik[11526] = 36.21 +il[11526] = -8 +im[11526] = 0.0794 +ij[11526] = 3 +id[11527] = "2851-03-25T21:53:35" +ik[11527] = 0 +il[11527] = 101 +im[11527] = 0.0826 +ij[11527] = 13 +id[11528] = "2851-04-11T12:43:24" +ik[11528] = 1.31 +il[11528] = 34 +im[11528] = 0.0982 +ij[11528] = 28.2 +id[11529] = "2851-05-03T12:17:19" +ik[11529] = 0.89 +il[11529] = -130 +im[11529] = 0.1621 +ij[11529] = 11 +id[11530] = "2851-06-12T20:56:11" +ik[11530] = 78.96 +il[11530] = -81 +im[11530] = 0.1509 +ij[11530] = 7.1767 +id[11531] = "2851-08-10T07:53:59" +ik[11531] = 137.42 +il[11531] = -36 +im[11531] = 0.0353 +ij[11531] = 14 +id[11532] = "2851-08-24T09:21:13" +ik[11532] = -2.009 +il[11532] = 79 +im[11532] = 0.0119 +ij[11532] = 4 +id[11533] = "2851-08-28T06:52:42" +ik[11533] = 43.708 +il[11533] = 154 +im[11533] = 0.0928 +ij[11533] = 1 +id[11534] = "2851-09-16T17:26:23" +ik[11534] = 2.449 +il[11534] = -174 +im[11534] = 0.1052 +ij[11534] = 27.4 +id[11535] = "2851-10-25T19:54:08" +ik[11535] = 0 +il[11535] = 179 +im[11535] = 0.0868 +ij[11535] = 17 +id[11536] = "2851-12-07T22:05:19" +ik[11536] = 35.575 +il[11536] = -156 +im[11536] = 0.0597 +ij[11536] = 9 +id[11537] = "2851-12-19T22:02:15" +ik[11537] = 0.061 +il[11537] = -37 +im[11537] = 0.0306 +ij[11537] = 27.3 +id[11538] = "2852-01-17T18:57:29" +ik[11538] = 0.445 +il[11538] = -68 +im[11538] = 0.0223 +ij[11538] = 27.5 +id[11539] = "2852-02-18T18:21:48" +ik[11539] = -26.175 +il[11539] = -107 +im[11539] = 0.0533 +ij[11539] = 15 +id[11540] = "2852-03-28T04:45:14" +ik[11540] = 2.162 +il[11540] = 107 +im[11540] = 0.0114 +ij[11540] = 27.6 +id[11541] = "2852-04-17T12:14:51" +ik[11541] = 2.74 +il[11541] = -168 +im[11541] = 0.051 +ij[11541] = 28.1 +id[11542] = "2852-06-20T15:22:06" +ik[11542] = 12 +il[11542] = 40 +im[11542] = 0.0344 +ij[11542] = 18 +id[11543] = "2852-07-10T05:15:59" +ik[11543] = 0.89 +il[11543] = 27 +im[11543] = 0.0201 +ij[11543] = 12 +id[11544] = "2852-09-20T03:05:13" +ik[11544] = 2.68 +il[11544] = -133 +im[11544] = 0.0292 +ij[11544] = 28.1 +id[11545] = "2852-10-27T04:14:03" +ik[11545] = 0.138 +il[11545] = -153 +im[11545] = 0.0526 +ij[11545] = 28.5 +id[11546] = "2852-11-04T09:34:15" +ik[11546] = 25.452 +il[11546] = -153 +im[11546] = 0.0491 +ij[11546] = 16 +id[11547] = "2852-11-24T23:22:54" +ik[11547] = 0.511 +il[11547] = -162 +im[11547] = 0.0552 +ij[11547] = 28.7 +id[11548] = "2852-11-25T15:44:51" +ik[11548] = 0.182 +il[11548] = -41 +im[11548] = 0.0485 +ij[11548] = 28.8 +id[11549] = "2852-12-25T05:25:19" +ik[11549] = 1.099 +il[11549] = 38 +im[11549] = 0.0399 +ij[11549] = 28.6 +id[11550] = "2852-12-26T23:35:59" +ik[11550] = 30.646 +il[11550] = 142 +im[11550] = 0.0116 +ij[11550] = 8 +id[11551] = "2853-02-28T18:57:51" +ik[11551] = 5.093 +il[11551] = 101 +im[11551] = 0.1125 +ij[11551] = 27.4 +id[11552] = "2853-03-12T20:06:43" +ik[11552] = 37.744 +il[11552] = -161 +im[11552] = 0.0921 +ij[11552] = 3 +id[11553] = "2853-03-16T13:41:41" +ik[11553] = -1.677 +il[11553] = -30 +im[11553] = 0.1227 +ij[11553] = 2 +id[11554] = "2853-03-21T16:15:41" +ik[11554] = 4.841 +il[11554] = -20 +im[11554] = 0.0284 +ij[11554] = 27.1 +id[11555] = "2853-05-19T07:54:28" +ik[11555] = 0 +il[11555] = -65 +im[11555] = 0.1253 +ij[11555] = 13 +id[11556] = "2853-06-19T11:51:32" +ik[11556] = 2.96 +il[11556] = 157 +im[11556] = 0.313 +ij[11556] = 11 +id[11557] = "2853-07-26T18:24:21" +ik[11557] = 68.44 +il[11557] = -130 +im[11557] = 0.1771 +ij[11557] = 7.1201 +id[11558] = "2853-07-28T18:34:47" +ik[11558] = 4.298 +il[11558] = -112 +im[11558] = 0.2476 +ij[11558] = 28.2 +id[11559] = "2853-09-13T12:00:08" +ik[11559] = 117.17 +il[11559] = 84 +im[11559] = 0.1491 +ij[11559] = 14 +id[11560] = "2853-09-24T04:31:28" +ik[11560] = -2.323 +il[11560] = -58 +im[11560] = 0.1718 +ij[11560] = 4 +id[11561] = "2853-09-24T16:43:56" +ik[11561] = 0 +il[11561] = 124 +im[11561] = 0.1729 +ij[11561] = 17 +id[11562] = "2853-10-14T18:05:45" +ik[11562] = 46.381 +il[11562] = -59 +im[11562] = 0.0567 +ij[11562] = 1 +id[11563] = "2853-11-22T16:24:51" +ik[11563] = 0.355 +il[11563] = -11 +im[11563] = 0.1103 +ij[11563] = 27.3 +id[11564] = "2853-12-23T09:31:03" +ik[11564] = 0.513 +il[11564] = 33 +im[11564] = 0.07 +ij[11564] = 27.5 +id[11565] = "2854-01-26T21:18:40" +ik[11565] = -26.349 +il[11565] = -179 +im[11565] = 0.0426 +ij[11565] = 15 +id[11566] = "2854-02-12T16:47:32" +ik[11566] = 34.257 +il[11566] = 59 +im[11566] = 0.0575 +ij[11566] = 9 +id[11567] = "2854-03-06T17:17:11" +ik[11567] = 1.868 +il[11567] = -98 +im[11567] = 0.0514 +ij[11567] = 27.6 +id[11568] = "2854-05-11T02:26:56" +ik[11568] = 3.816 +il[11568] = 24 +im[11568] = 0.0549 +ij[11568] = 27.2 +id[11569] = "2854-06-02T02:16:12" +ik[11569] = 12 +il[11569] = -116 +im[11569] = 0.0282 +ij[11569] = 18 +id[11570] = "2854-06-03T10:40:17" +ik[11570] = 0.327 +il[11570] = 131 +im[11570] = 0.0112 +ij[11570] = 28.2 +id[11571] = "2854-08-20T12:02:12" +ik[11571] = 1.14 +il[11571] = 137 +im[11571] = 0.0491 +ij[11571] = 12 +id[11572] = "2854-10-17T08:57:01" +ik[11572] = 25.658 +il[11572] = -137 +im[11572] = 0.0526 +ij[11572] = 16 +id[11573] = "2854-11-13T13:02:30" +ik[11573] = 0.528 +il[11573] = 74 +im[11573] = 0.0456 +ij[11573] = 28.8 +id[11574] = "2854-11-18T10:46:34" +ik[11574] = 0.268 +il[11574] = 155 +im[11574] = 0.0509 +ij[11574] = 28.7 +id[11575] = "2855-01-07T19:57:48" +ik[11575] = 3.435 +il[11575] = 138 +im[11575] = 0.0271 +ij[11575] = 28.2 +id[11576] = "2855-01-15T05:03:44" +ik[11576] = 1.261 +il[11576] = 71 +im[11576] = 0.056 +ij[11576] = 28.6 +id[11577] = "2855-01-30T00:37:45" +ik[11577] = 0.169 +il[11577] = -81 +im[11577] = 0.0694 +ij[11577] = 28.5 +id[11578] = "2855-01-30T02:18:30" +ik[11578] = 4.664 +il[11578] = -105 +im[11578] = 0.0688 +ij[11578] = 27.4 +id[11579] = "2855-01-31T00:37:46" +ik[11579] = 31.443 +il[11579] = -71 +im[11579] = 0.0593 +ij[11579] = 8 +id[11580] = "2855-02-14T18:10:42" +ik[11580] = 5.164 +il[11580] = 165 +im[11580] = 0.0405 +ij[11580] = 27.1 +id[11581] = "2855-03-07T13:36:12" +ik[11581] = 23 +il[11581] = 71 +im[11581] = 0.0609 +ij[11581] = 17 +id[11582] = "2855-05-14T10:29:42" +ik[11582] = 42.18 +il[11582] = 39 +im[11582] = 0.0064 +ij[11582] = 3 +id[11583] = "2855-05-21T15:25:19" +ik[11583] = 0.663 +il[11583] = 33 +im[11583] = 0.1655 +ij[11583] = 27.3 +id[11584] = "2855-06-10T06:59:56" +ik[11584] = -2.08 +il[11584] = -14 +im[11584] = 0.0697 +ij[11584] = 2 +id[11585] = "2855-07-12T07:51:32" +ik[11585] = 4.329 +il[11585] = -82 +im[11585] = 0.1238 +ij[11585] = 27.5 +id[11586] = "2855-07-31T12:00:38" +ik[11586] = 0 +il[11586] = 40 +im[11586] = 0.3328 +ij[11586] = 13 +id[11587] = "2855-08-30T23:21:19" +ik[11587] = 6.51 +il[11587] = 152 +im[11587] = 0.2098 +ij[11587] = 11 +id[11588] = "2855-10-01T11:03:13" +ik[11588] = 61.96 +il[11588] = 116 +im[11588] = 0.1512 +ij[11588] = 7.104 +id[11589] = "2855-11-07T17:05:03" +ik[11589] = 1.834 +il[11589] = 30 +im[11589] = 0.134 +ij[11589] = 27.5 +id[11590] = "2855-11-11T11:08:01" +ik[11590] = 102.96 +il[11590] = 156 +im[11590] = 0.0583 +ij[11590] = 14 +id[11591] = "2855-11-21T19:43:30" +ik[11591] = -2.237 +il[11591] = 128 +im[11591] = 0.1013 +ij[11591] = 4 +id[11592] = "2855-12-18T07:04:39" +ik[11592] = 43.129 +il[11592] = -147 +im[11592] = 0.1325 +ij[11592] = 1 +id[11593] = "2855-12-29T10:52:27" +ik[11593] = -26.446 +il[11593] = -97 +im[11593] = 0.1384 +ij[11593] = 15 +id[11594] = "2856-02-08T09:15:11" +ik[11594] = 1.452 +il[11594] = -42 +im[11594] = 0.0957 +ij[11594] = 27.6 +id[11595] = "2856-04-02T16:28:25" +ik[11595] = 32.462 +il[11595] = 3 +im[11595] = 0.0315 +ij[11595] = 9 +id[11596] = "2856-04-18T17:51:37" +ik[11596] = 3.473 +il[11596] = 136 +im[11596] = 0.0362 +ij[11596] = 27.2 +id[11597] = "2856-05-08T13:55:03" +ik[11597] = 1.071 +il[11597] = 19 +im[11597] = 0.0701 +ij[11597] = 28.2 +id[11598] = "2856-05-12T14:44:45" +ik[11598] = 12 +il[11598] = 45 +im[11598] = 0.0343 +ij[11598] = 18 +id[11599] = "2856-06-09T16:08:16" +ik[11599] = 6.436 +il[11599] = -72 +im[11599] = 0.0386 +ij[11599] = 28.1 +id[11600] = "2856-06-28T20:12:29" +ik[11600] = 0.223 +il[11600] = 50 +im[11600] = 0.0323 +ij[11600] = 28.2 +id[11601] = "2856-09-25T05:09:46" +ik[11601] = 0.91 +il[11601] = 56 +im[11601] = 0.0458 +ij[11601] = 12 +id[11602] = "2856-09-28T21:54:52" +ik[11602] = 25.815 +il[11602] = 40 +im[11602] = 0.0555 +ij[11602] = 16 +id[11603] = "2856-12-28T21:08:58" +ik[11603] = 1.913 +il[11603] = -139 +im[11603] = 0.0195 +ij[11603] = 28.2 +id[11604] = "2857-01-07T10:53:03" +ik[11604] = 4.364 +il[11604] = 102 +im[11604] = 0.0646 +ij[11604] = 27.4 +id[11605] = "2857-01-22T01:00:45" +ik[11605] = 5.442 +il[11605] = 24 +im[11605] = 0.064 +ij[11605] = 27.1 +id[11606] = "2857-02-03T12:04:13" +ik[11606] = 1.097 +il[11606] = -21 +im[11606] = 0.072 +ij[11606] = 28.6 +id[11607] = "2857-02-10T15:33:16" +ik[11607] = 0 +il[11607] = -1 +im[11607] = 0.0209 +ij[11607] = 17 +id[11608] = "2857-03-13T17:24:25" +ik[11608] = 33.342 +il[11608] = -95 +im[11608] = 0.0131 +ij[11608] = 8 +id[11609] = "2857-04-13T16:16:18" +ik[11609] = 0.249 +il[11609] = -145 +im[11609] = 0.0536 +ij[11609] = 28.5 +id[11610] = "2857-04-14T06:18:59" +ik[11610] = 0.13 +il[11610] = 10 +im[11610] = 0.063 +ij[11610] = 27.3 +id[11611] = "2857-05-15T14:06:37" +ik[11611] = 1.268 +il[11611] = -169 +im[11611] = 0.102 +ij[11611] = 27.5 +id[11612] = "2857-06-13T06:32:15" +ik[11612] = -24.438 +il[11612] = -142 +im[11612] = 0.1199 +ij[11612] = 15 +id[11613] = "2857-07-20T16:25:40" +ik[11613] = 47.272 +il[11613] = 71 +im[11613] = 0.0248 +ij[11613] = 3 +id[11614] = "2857-08-03T19:24:12" +ik[11614] = 4.988 +il[11614] = 163 +im[11614] = 0.0058 +ij[11614] = 27.6 +id[11615] = "2857-08-19T03:32:51" +ik[11615] = -2.39 +il[11615] = -169 +im[11615] = 0.0589 +ij[11615] = 2 +id[11616] = "2857-10-09T11:08:31" +ik[11616] = 0 +il[11616] = -139 +im[11616] = 0.1932 +ij[11616] = 13 +id[11617] = "2857-10-12T22:19:26" +ik[11617] = 2.372 +il[11617] = 87 +im[11617] = 0.0171 +ij[11617] = 28.2 +id[11618] = "2857-11-13T13:47:06" +ik[11618] = 0.27 +il[11618] = 144 +im[11618] = 0.3028 +ij[11618] = 11 +id[11619] = "2857-12-14T11:13:14" +ik[11619] = 66 +il[11619] = -48 +im[11619] = 0.2389 +ij[11619] = 7.1282 +id[11620] = "2858-02-03T05:46:01" +ik[11620] = 116.78 +il[11620] = 155 +im[11620] = 0.1265 +ij[11620] = 14 +id[11621] = "2858-02-05T23:54:11" +ik[11621] = -1.805 +il[11621] = -91 +im[11621] = 0.1478 +ij[11621] = 4 +id[11622] = "2858-02-20T11:57:41" +ik[11622] = 38.887 +il[11622] = -135 +im[11622] = 0.1226 +ij[11622] = 1 +id[11623] = "2858-03-22T17:15:16" +ik[11623] = 2.871 +il[11623] = 70 +im[11623] = 0.0859 +ij[11623] = 27.2 +id[11624] = "2858-04-20T07:52:21" +ik[11624] = 12 +il[11624] = 120 +im[11624] = 0.0735 +ij[11624] = 18 +id[11625] = "2858-05-12T18:21:19" +ik[11625] = 31.456 +il[11625] = 176 +im[11625] = 0.0569 +ij[11625] = 9 +id[11626] = "2858-08-13T07:01:39" +ik[11626] = 0.91 +il[11626] = 144 +im[11626] = 0.0509 +ij[11626] = 28.1 +id[11627] = "2858-09-11T10:21:42" +ik[11627] = 25.953 +il[11627] = 25 +im[11627] = 0.0466 +ij[11627] = 16 +id[11628] = "2858-11-01T07:08:00" +ik[11628] = 0.33 +il[11628] = -144 +im[11628] = 0.0449 +ij[11628] = 12 +id[11629] = "2859-01-02T03:26:07" +ik[11629] = 5.672 +il[11629] = -20 +im[11629] = 0.0623 +ij[11629] = 27.1 +id[11630] = "2859-01-18T23:48:30" +ik[11630] = 2.309 +il[11630] = -164 +im[11630] = 0.044 +ij[11630] = 28.1 +id[11631] = "2859-01-21T13:36:35" +ik[11631] = 0 +il[11631] = 11 +im[11631] = 0.0157 +ij[11631] = 17 +id[11632] = "2859-02-22T07:08:47" +ik[11632] = 0.594 +il[11632] = 59 +im[11632] = 0.0201 +ij[11632] = 28.6 +id[11633] = "2859-03-21T16:22:42" +ik[11633] = 0.261 +il[11633] = -180 +im[11633] = 0.0068 +ij[11633] = 27.3 +id[11634] = "2859-04-20T04:21:15" +ik[11634] = 0.846 +il[11634] = -78 +im[11634] = 0.0055 +ij[11634] = 27.5 +id[11635] = "2859-05-15T23:39:05" +ik[11635] = 35.884 +il[11635] = -120 +im[11635] = 0.0556 +ij[11635] = 8 +id[11636] = "2859-05-19T11:44:08" +ik[11636] = -25.207 +il[11636] = 93 +im[11636] = 0.0056 +ij[11636] = 15 +id[11637] = "2859-06-09T06:21:55" +ik[11637] = 0.121 +il[11637] = 14 +im[11637] = 0.0966 +ij[11637] = 28.5 +id[11638] = "2859-06-30T18:41:36" +ik[11638] = 3.634 +il[11638] = 39 +im[11638] = 0.0019 +ij[11638] = 27.6 +id[11639] = "2859-09-05T17:53:39" +ik[11639] = 45.075 +il[11639] = -12 +im[11639] = 0.1303 +ij[11639] = 3 +id[11640] = "2859-09-06T14:01:47" +ik[11640] = 5.452 +il[11640] = 54 +im[11640] = 0.122 +ij[11640] = 27.2 +id[11641] = "2859-09-25T20:43:59" +ik[11641] = -2.124 +il[11641] = 143 +im[11641] = 0.0253 +ij[11641] = 2 +id[11642] = "2859-09-28T05:10:56" +ik[11642] = 11 +il[11642] = 39 +im[11642] = 0.0908 +ij[11642] = 18 +id[11643] = "2859-11-25T05:46:30" +ik[11643] = 0 +il[11643] = -124 +im[11643] = 0.1982 +ij[11643] = 13 +id[11644] = "2860-01-02T18:52:00" +ik[11644] = 3.38 +il[11644] = 32 +im[11644] = 0.1499 +ij[11644] = 11 +id[11645] = "2860-01-17T07:39:26" +ik[11645] = 2.816 +il[11645] = 165 +im[11645] = 0.2038 +ij[11645] = 28.1 +id[11646] = "2860-02-03T17:38:37" +ik[11646] = 3.261 +il[11646] = 164 +im[11646] = 0.182 +ij[11646] = 28.2 +id[11647] = "2860-02-09T04:51:06" +ik[11647] = 75.96 +il[11647] = 47 +im[11647] = 0.0165 +ij[11647] = 7.1544 +id[11648] = "2860-03-15T00:17:28" +ik[11648] = 12 +il[11648] = 84 +im[11648] = 0.145 +ij[11648] = 18 +id[11649] = "2860-03-15T00:21:44" +ik[11649] = 12 +il[11649] = 83 +im[11649] = 0.145 +ij[11649] = 17 +id[11650] = "2860-04-03T10:06:39" +ik[11650] = -1.594 +il[11650] = 120 +im[11650] = 0.0276 +ij[11650] = 4 +id[11651] = "2860-04-08T11:18:40" +ik[11651] = 37.155 +il[11651] = 149 +im[11651] = 0.0847 +ij[11651] = 1 +id[11652] = "2860-04-11T20:45:53" +ik[11652] = 138.62 +il[11652] = 40 +im[11652] = 0.1142 +ij[11652] = 14 +id[11653] = "2860-06-17T15:54:38" +ik[11653] = 31.333 +il[11653] = 27 +im[11653] = 0.0392 +ij[11653] = 9 +id[11654] = "2860-08-23T09:39:33" +ik[11654] = 26.085 +il[11654] = 42 +im[11654] = 0.0296 +ij[11654] = 16 +id[11655] = "2860-10-05T18:01:03" +ik[11655] = 0.621 +il[11655] = -23 +im[11655] = 0.0234 +ij[11655] = 28.2 +id[11656] = "2860-10-09T17:55:01" +ik[11656] = 1.423 +il[11656] = 22 +im[11656] = 0.0297 +ij[11656] = 28.8 +id[11657] = "2860-12-13T04:36:53" +ik[11657] = 0.48 +il[11657] = 144 +im[11657] = 0.0583 +ij[11657] = 12 +id[11658] = "2861-01-01T16:44:48" +ik[11658] = 0 +il[11658] = -41 +im[11658] = 0.0053 +ij[11658] = 17 +id[11659] = "2861-02-27T22:57:21" +ik[11659] = 0.288 +il[11659] = 60 +im[11659] = 0.0139 +ij[11659] = 27.3 +id[11660] = "2861-03-10T07:49:19" +ik[11660] = 0.156 +il[11660] = 26 +im[11660] = 0.0648 +ij[11660] = 28.6 +id[11661] = "2861-03-28T18:34:53" +ik[11661] = 0.665 +il[11661] = 53 +im[11661] = 0.0175 +ij[11661] = 27.5 +id[11662] = "2861-04-10T04:25:35" +ik[11662] = 1.447 +il[11662] = 19 +im[11662] = 0.0548 +ij[11662] = 28.1 +id[11663] = "2861-04-27T11:25:56" +ik[11663] = -25.552 +il[11663] = 87 +im[11663] = 0.01 +ij[11663] = 15 +id[11664] = "2861-06-06T14:37:24" +ik[11664] = 3.1 +il[11664] = 71 +im[11664] = 0.0631 +ij[11664] = 27.6 +id[11665] = "2861-06-19T13:50:24" +ik[11665] = 1.014 +il[11665] = -150 +im[11665] = 0.0715 +ij[11665] = 28.2 +id[11666] = "2861-08-05T00:09:18" +ik[11666] = 35.438 +il[11666] = 152 +im[11666] = 0.045 +ij[11666] = 8 +id[11667] = "2861-08-07T00:06:31" +ik[11667] = 0.136 +il[11667] = 172 +im[11667] = 0.0116 +ij[11667] = 28.5 +id[11668] = "2861-08-08T22:10:43" +ik[11668] = 4.954 +il[11668] = -140 +im[11668] = 0.0274 +ij[11668] = 27.2 +id[11669] = "2861-08-28T00:23:01" +ik[11669] = 11 +il[11669] = 13 +im[11669] = 0.081 +ij[11669] = 18 +id[11670] = "2861-10-23T00:29:39" +ik[11670] = 40.444 +il[11670] = -163 +im[11670] = 0.0859 +ij[11670] = 3 +id[11671] = "2861-10-25T23:55:07" +ik[11671] = -1.842 +il[11671] = -125 +im[11671] = 0.1067 +ij[11671] = 2 +id[11672] = "2861-12-29T20:46:21" +ik[11672] = 0 +il[11672] = -170 +im[11672] = 0.1125 +ij[11672] = 13 +id[11673] = "2862-02-08T19:03:33" +ik[11673] = 4.38 +il[11673] = -130 +im[11673] = 0.1273 +ij[11673] = 11 +id[11674] = "2862-03-21T19:50:04" +ik[11674] = 81.96 +il[11674] = 39 +im[11674] = 0.1429 +ij[11674] = 7.1886 +id[11675] = "2862-05-19T04:44:41" +ik[11675] = 37.268 +il[11675] = 101 +im[11675] = 0.1129 +ij[11675] = 1 +id[11676] = "2862-05-20T15:38:14" +ik[11676] = -1.559 +il[11676] = -48 +im[11676] = 0.1106 +ij[11676] = 4 +id[11677] = "2862-05-27T23:53:55" +ik[11677] = 149.13 +il[11677] = -102 +im[11677] = 0.0124 +ij[11677] = 14 +id[11678] = "2862-07-26T03:14:38" +ik[11678] = 32.045 +il[11678] = 58 +im[11678] = 0.045 +ij[11678] = 9 +id[11679] = "2862-08-03T22:41:25" +ik[11679] = 26.221 +il[11679] = -148 +im[11679] = 0.0257 +ij[11679] = 16 +id[11680] = "2862-09-03T14:41:08" +ik[11680] = 0.666 +il[11680] = -91 +im[11680] = 0.0053 +ij[11680] = 28.2 +id[11681] = "2862-09-27T23:15:41" +ik[11681] = 1.76 +il[11681] = 18 +im[11681] = 0.051 +ij[11681] = 28.8 +id[11682] = "2862-10-15T09:50:41" +ik[11682] = 4.488 +il[11682] = 28 +im[11682] = 0.0235 +ij[11682] = 28.1 +id[11683] = "2862-10-24T09:59:36" +ik[11683] = 0.653 +il[11683] = 114 +im[11683] = 0.062 +ij[11683] = 28.7 +id[11684] = "2862-11-10T06:34:28" +ik[11684] = 3.634 +il[11684] = -31 +im[11684] = 0.0541 +ij[11684] = 27.4 +id[11685] = "2862-11-24T04:18:56" +ik[11685] = 6.124 +il[11685] = 139 +im[11685] = 0.0534 +ij[11685] = 27.1 +id[11686] = "2862-12-14T02:17:22" +ik[11686] = 0 +il[11686] = 14 +im[11686] = 0.0082 +ij[11686] = 17 +id[11687] = "2863-02-09T00:46:40" +ik[11687] = 1.07 +il[11687] = -114 +im[11687] = 0.0065 +ij[11687] = 12 +id[11688] = "2863-04-07T17:50:49" +ik[11688] = -25.774 +il[11688] = -16 +im[11688] = 0.0102 +ij[11688] = 15 +id[11689] = "2863-05-16T21:39:20" +ik[11689] = 2.769 +il[11689] = -39 +im[11689] = 0.0637 +ij[11689] = 27.6 +id[11690] = "2863-06-16T17:12:54" +ik[11690] = 2.248 +il[11690] = -29 +im[11690] = 0.0525 +ij[11690] = 28.2 +id[11691] = "2863-06-30T16:43:45" +ik[11691] = 5.132 +il[11691] = 116 +im[11691] = 0.0464 +ij[11691] = 28.1 +id[11692] = "2863-07-18T07:00:14" +ik[11692] = 4.635 +il[11692] = 74 +im[11692] = 0.0209 +ij[11692] = 27.2 +id[11693] = "2863-08-06T15:18:05" +ik[11693] = 12 +il[11693] = 138 +im[11693] = 0.0544 +ij[11693] = 18 +id[11694] = "2863-10-01T19:19:31" +ik[11694] = 32.905 +il[11694] = -97 +im[11694] = 0.0422 +ij[11694] = 8 +id[11695] = "2863-10-27T19:03:35" +ik[11695] = 0.294 +il[11695] = 159 +im[11695] = 0.0016 +ij[11695] = 28.5 +id[11696] = "2863-11-27T09:14:15" +ik[11696] = -1.662 +il[11696] = -118 +im[11696] = 0.0403 +ij[11696] = 2 +id[11697] = "2863-12-04T21:47:39" +ik[11697] = 37.367 +il[11697] = 127 +im[11697] = 0.0864 +ij[11697] = 3 +id[11698] = "2864-02-01T23:54:23" +ik[11698] = 0 +il[11698] = -54 +im[11698] = 0.033 +ij[11698] = 13 +id[11699] = "2864-02-16T23:35:22" +ik[11699] = 1.806 +il[11699] = 96 +im[11699] = 0.0234 +ij[11699] = 28.2 +id[11700] = "2864-03-13T22:28:54" +ik[11700] = 3.82 +il[11700] = -15 +im[11700] = 0.0377 +ij[11700] = 11 +id[11701] = "2864-04-24T22:56:59" +ik[11701] = 82.96 +il[11701] = 155 +im[11701] = 0.0555 +ij[11701] = 7.2111 +id[11702] = "2864-06-27T05:15:38" +ik[11702] = 38.951 +il[11702] = -49 +im[11702] = 0.1024 +ij[11702] = 1 +id[11703] = "2864-06-30T05:00:47" +ik[11703] = 149.21 +il[11703] = -16 +im[11703] = 0.0557 +ij[11703] = 14 +id[11704] = "2864-07-03T07:02:42" +ik[11704] = -1.66 +il[11704] = -17 +im[11704] = 0.014 +ij[11704] = 4 +id[11705] = "2864-07-10T20:27:21" +ik[11705] = 26.335 +il[11705] = -144 +im[11705] = 0.0946 +ij[11705] = 16 +id[11706] = "2864-07-18T23:04:52" +ik[11706] = 0.851 +il[11706] = -105 +im[11706] = 0.0556 +ij[11706] = 28.5 +id[11707] = "2864-09-08T20:09:45" +ik[11707] = 33.59 +il[11707] = 83 +im[11707] = 0.0439 +ij[11707] = 9 +id[11708] = "2864-09-13T11:02:19" +ik[11708] = 2.181 +il[11708] = -95 +im[11708] = 0.0365 +ij[11708] = 28.8 +id[11709] = "2864-10-15T23:04:12" +ik[11709] = 0.963 +il[11709] = 41 +im[11709] = 0.0726 +ij[11709] = 28.7 +id[11710] = "2864-10-20T08:37:01" +ik[11710] = 3.309 +il[11710] = -59 +im[11710] = 0.0672 +ij[11710] = 27.4 +id[11711] = "2864-11-03T10:20:56" +ik[11711] = 6.424 +il[11711] = 52 +im[11711] = 0.0599 +ij[11711] = 27.1 +id[11712] = "2864-11-24T01:40:11" +ik[11712] = 0 +il[11712] = 24 +im[11712] = 0.0099 +ij[11712] = 17 +id[11713] = "2864-12-30T17:27:29" +ik[11713] = 3.825 +il[11713] = 147 +im[11713] = 0.0602 +ij[11713] = 28.1 +id[11714] = "2865-01-18T08:24:32" +ik[11714] = 0.23 +il[11714] = 106 +im[11714] = 0.0275 +ij[11714] = 27.3 +id[11715] = "2865-03-18T09:31:41" +ik[11715] = -25.949 +il[11715] = -39 +im[11715] = 0.0123 +ij[11715] = 15 +id[11716] = "2865-04-22T22:16:27" +ik[11716] = 0.41 +il[11716] = 127 +im[11716] = 0.0601 +ij[11716] = 12 +id[11717] = "2865-07-17T08:56:09" +ik[11717] = 12 +il[11717] = -118 +im[11717] = 0.0533 +ij[11717] = 18 +id[11718] = "2865-11-10T12:17:45" +ik[11718] = 31.229 +il[11718] = -124 +im[11718] = 0.0753 +ij[11718] = 8 +id[11719] = "2866-01-02T09:40:02" +ik[11719] = -1.582 +il[11719] = 66 +im[11719] = 0.0389 +ij[11719] = 2 +id[11720] = "2866-01-12T03:05:36" +ik[11720] = 36.178 +il[11720] = -101 +im[11720] = 0.0712 +ij[11720] = 3 +id[11721] = "2866-03-09T05:01:15" +ik[11721] = 0 +il[11721] = 49 +im[11721] = 0.101 +ij[11721] = 13 +id[11722] = "2866-04-18T06:44:54" +ik[11722] = 2 +il[11722] = 26 +im[11722] = 0.1287 +ij[11722] = 11 +id[11723] = "2866-05-06T23:49:58" +ik[11723] = 0.438 +il[11723] = 93 +im[11723] = 0.1313 +ij[11723] = 28.1 +id[11724] = "2866-05-24T08:35:47" +ik[11724] = 0.484 +il[11724] = 127 +im[11724] = 0.2124 +ij[11724] = 28.2 +id[11725] = "2866-05-29T04:17:53" +ik[11725] = 80.97 +il[11725] = -122 +im[11725] = 0.1122 +ij[11725] = 7.1949 +id[11726] = "2866-06-16T18:56:19" +ik[11726] = 25.643 +il[11726] = -160 +im[11726] = 0.1087 +ij[11726] = 16 +id[11727] = "2866-07-29T18:12:41" +ik[11727] = 142.55 +il[11727] = -92 +im[11727] = 0.0888 +ij[11727] = 14 +id[11728] = "2866-08-09T23:49:37" +ik[11728] = 42.166 +il[11728] = -67 +im[11728] = 0.0235 +ij[11728] = 1 +id[11729] = "2866-08-12T05:18:43" +ik[11729] = -1.889 +il[11729] = -127 +im[11729] = 0.0725 +ij[11729] = 4 +id[11730] = "2866-08-26T09:53:11" +ik[11730] = 2.821 +il[11730] = -57 +im[11730] = 0.0647 +ij[11730] = 28.8 +id[11731] = "2866-09-27T14:54:39" +ik[11731] = 2.786 +il[11731] = -178 +im[11731] = 0.0973 +ij[11731] = 27.4 +id[11732] = "2866-10-06T00:23:03" +ik[11732] = 1.416 +il[11732] = 122 +im[11732] = 0.0053 +ij[11732] = 28.7 +id[11733] = "2866-10-19T10:17:55" +ik[11733] = 1.66 +il[11733] = 104 +im[11733] = 0.0071 +ij[11733] = 28.5 +id[11734] = "2866-11-03T16:01:00" +ik[11734] = 0 +il[11734] = 168 +im[11734] = 0.003 +ij[11734] = 17 +id[11735] = "2866-11-09T07:25:44" +ik[11735] = 35.351 +il[11735] = -8 +im[11735] = 0.0767 +ij[11735] = 9 +id[11736] = "2866-12-28T15:13:13" +ik[11736] = 0.132 +il[11736] = 1 +im[11736] = 0.049 +ij[11736] = 27.3 +id[11737] = "2867-01-26T06:34:22" +ik[11737] = 0.449 +il[11737] = 52 +im[11737] = 0.0517 +ij[11737] = 27.5 +id[11738] = "2867-02-26T18:04:43" +ik[11738] = -26.112 +il[11738] = -168 +im[11738] = 0.0192 +ij[11738] = 15 +id[11739] = "2867-03-17T13:50:17" +ik[11739] = 4.324 +il[11739] = 73 +im[11739] = 0.0484 +ij[11739] = 28.1 +id[11740] = "2867-03-18T12:43:16" +ik[11740] = 0.867 +il[11740] = 107 +im[11740] = 0.0565 +ij[11740] = 28.2 +id[11741] = "2867-04-06T04:26:02" +ik[11741] = 2.262 +il[11741] = 54 +im[11741] = 0.0578 +ij[11741] = 27.6 +id[11742] = "2867-06-22T11:02:41" +ik[11742] = 0.64 +il[11742] = -19 +im[11742] = 0.0128 +ij[11742] = 12 +id[11743] = "2867-06-28T20:38:16" +ik[11743] = 12 +il[11743] = 59 +im[11743] = 0.0549 +ij[11743] = 18 +id[11744] = "2867-11-09T21:09:49" +ik[11744] = 0.881 +il[11744] = -70 +im[11744] = 0.0487 +ij[11744] = 28.2 +id[11745] = "2867-11-12T19:52:06" +ik[11745] = 25.348 +il[11745] = -23 +im[11745] = 0.0135 +ij[11745] = 16 +id[11746] = "2867-12-15T00:04:24" +ik[11746] = 30.613 +il[11746] = -135 +im[11746] = 0.0455 +ij[11746] = 8 +id[11747] = "2868-02-03T02:03:45" +ik[11747] = 0.295 +il[11747] = -44 +im[11747] = 0.0756 +ij[11747] = 28.8 +id[11748] = "2868-02-20T06:14:44" +ik[11748] = -1.616 +il[11748] = 57 +im[11748] = 0.052 +ij[11748] = 2 +id[11749] = "2868-02-22T23:36:40" +ik[11749] = 36.864 +il[11749] = -177 +im[11749] = 0.0172 +ij[11749] = 3 +id[11750] = "2868-03-24T05:41:08" +ik[11750] = 5.254 +il[11750] = 20 +im[11750] = 0.0924 +ij[11750] = 27.4 +id[11751] = "2868-04-20T20:18:36" +ik[11751] = 2.071 +il[11751] = 62 +im[11751] = 0.1249 +ij[11751] = 28.7 +id[11752] = "2868-04-24T17:17:47" +ik[11752] = 0 +il[11752] = 144 +im[11752] = 0.2055 +ij[11752] = 13 +id[11753] = "2868-05-29T18:41:21" +ik[11753] = 1.06 +il[11753] = 77 +im[11753] = 0.1229 +ij[11753] = 11 +id[11754] = "2868-07-07T16:20:23" +ik[11754] = 73.96 +il[11754] = -73 +im[11754] = 0.0171 +ij[11754] = 7.1415 +id[11755] = "2868-08-21T04:56:47" +ik[11755] = 1.478 +il[11755] = 173 +im[11755] = 0.128 +ij[11755] = 27.4 +id[11756] = "2868-08-29T07:22:05" +ik[11756] = 126.59 +il[11756] = -144 +im[11756] = 0.1215 +ij[11756] = 14 +id[11757] = "2868-09-10T15:02:44" +ik[11757] = -2.21 +il[11757] = -139 +im[11757] = 0.1247 +ij[11757] = 4 +id[11758] = "2868-09-17T09:30:03" +ik[11758] = 2.388 +il[11758] = 11 +im[11758] = 0.0744 +ij[11758] = 28.7 +id[11759] = "2868-09-25T10:22:39" +ik[11759] = 45.805 +il[11759] = 77 +im[11759] = 0.1293 +ij[11759] = 1 +id[11760] = "2868-10-08T20:23:43" +ik[11760] = 0 +il[11760] = 58 +im[11760] = 0.1138 +ij[11760] = 17 +id[11761] = "2868-12-04T01:22:56" +ik[11761] = 0.121 +il[11761] = 177 +im[11761] = 0.1008 +ij[11761] = 27.3 +id[11762] = "2868-12-22T13:58:31" +ik[11762] = 0.27 +il[11762] = 170 +im[11762] = 0.0592 +ij[11762] = 28.5 +id[11763] = "2869-01-02T16:24:54" +ik[11763] = 0.46 +il[11763] = -118 +im[11763] = 0.0895 +ij[11763] = 27.5 +id[11764] = "2869-01-19T10:35:04" +ik[11764] = 34.989 +il[11764] = 132 +im[11764] = 0.0663 +ij[11764] = 9 +id[11765] = "2869-02-04T20:30:29" +ik[11765] = -26.283 +il[11765] = 142 +im[11765] = 0.0403 +ij[11765] = 15 +id[11766] = "2869-02-19T11:32:36" +ik[11766] = 0.807 +il[11766] = 57 +im[11766] = 0.0297 +ij[11766] = 28.2 +id[11767] = "2869-03-15T09:03:12" +ik[11767] = 1.991 +il[11767] = -37 +im[11767] = 0.068 +ij[11767] = 27.6 +id[11768] = "2869-04-12T16:04:57" +ik[11768] = 1.195 +il[11768] = 127 +im[11768] = 0.0619 +ij[11768] = 28.2 +id[11769] = "2869-05-05T03:56:54" +ik[11769] = 2.195 +il[11769] = 172 +im[11769] = 0.0033 +ij[11769] = 28.6 +id[11770] = "2869-05-18T22:10:50" +ik[11770] = 3.923 +il[11770] = 29 +im[11770] = 0.0039 +ij[11770] = 27.2 +id[11771] = "2869-05-26T07:42:03" +ik[11771] = 0.994 +il[11771] = -44 +im[11771] = 0.063 +ij[11771] = 28.1 +id[11772] = "2869-06-09T10:14:14" +ik[11772] = 12 +il[11772] = 56 +im[11772] = 0.0559 +ij[11772] = 18 +id[11773] = "2869-08-05T07:36:28" +ik[11773] = 1.11 +il[11773] = -82 +im[11773] = 0.0529 +ij[11773] = 12 +id[11774] = "2869-10-24T07:56:57" +ik[11774] = 25.586 +il[11774] = 168 +im[11774] = 0.005 +ij[11774] = 16 +id[11775] = "2869-10-28T22:29:32" +ik[11775] = 0.541 +il[11775] = -4 +im[11775] = 0.0507 +ij[11775] = 28.2 +id[11776] = "2870-01-13T07:09:39" +ik[11776] = 0.85 +il[11776] = -122 +im[11776] = 0.0671 +ij[11776] = 28.8 +id[11777] = "2870-01-16T22:12:24" +ik[11777] = 31.005 +il[11777] = 47 +im[11777] = 0.0221 +ij[11777] = 8 +id[11778] = "2870-02-09T00:49:18" +ik[11778] = 4.809 +il[11778] = -132 +im[11778] = 0.083 +ij[11778] = 27.4 +id[11779] = "2870-02-25T15:23:44" +ik[11779] = 5.037 +il[11779] = 167 +im[11779] = 0.0868 +ij[11779] = 27.1 +id[11780] = "2870-03-05T07:58:38" +ik[11780] = 0.379 +il[11780] = -9 +im[11780] = 0.0515 +ij[11780] = 28.7 +id[11781] = "2870-03-20T01:26:23" +ik[11781] = 23 +il[11781] = -132 +im[11781] = 0.087 +ij[11781] = 17 +id[11782] = "2870-04-17T01:36:37" +ik[11782] = 40.021 +il[11782] = 131 +im[11782] = 0.1005 +ij[11782] = 3 +id[11783] = "2870-05-05T02:02:19" +ik[11783] = -1.871 +il[11783] = -66 +im[11783] = 0.1544 +ij[11783] = 2 +id[11784] = "2870-06-30T07:22:35" +ik[11784] = 0 +il[11784] = 27 +im[11784] = 0.2873 +ij[11784] = 13 +id[11785] = "2870-07-01T22:15:48" +ik[11785] = 2.018 +il[11785] = 179 +im[11785] = 0.2666 +ij[11785] = 28.2 +id[11786] = "2870-07-30T03:28:28" +ik[11786] = 6.01 +il[11786] = -2 +im[11786] = 0.2657 +ij[11786] = 11 +id[11787] = "2870-09-02T06:25:11" +ik[11787] = 63.96 +il[11787] = 108 +im[11787] = 0.2634 +ij[11787] = 7.1009 +id[11788] = "2870-10-15T00:30:55" +ik[11788] = 106.71 +il[11788] = -102 +im[11788] = 0.1723 +ij[11788] = 14 +id[11789] = "2870-10-24T16:32:32" +ik[11789] = -2.36 +il[11789] = 113 +im[11789] = 0.0384 +ij[11789] = 4 +id[11790] = "2870-10-26T18:28:50" +ik[11790] = 1.452 +il[11790] = 104 +im[11790] = 0.115 +ij[11790] = 27.3 +id[11791] = "2870-11-20T02:28:36" +ik[11791] = 45.078 +il[11791] = -138 +im[11791] = 0.0568 +ij[11791] = 1 +id[11792] = "2870-12-02T19:13:28" +ik[11792] = 0.805 +il[11792] = 95 +im[11792] = 0.1253 +ij[11792] = 27.5 +id[11793] = "2871-01-11T01:41:21" +ik[11793] = -26.449 +il[11793] = 17 +im[11793] = 0.108 +ij[11793] = 15 +id[11794] = "2871-02-16T18:48:08" +ik[11794] = 1.383 +il[11794] = 111 +im[11794] = 0.009 +ij[11794] = 28.5 +id[11795] = "2871-02-19T18:55:11" +ik[11795] = 1.634 +il[11795] = 137 +im[11795] = 0.0602 +ij[11795] = 27.6 +id[11796] = "2871-03-16T21:47:31" +ik[11796] = 33.092 +il[11796] = -28 +im[11796] = 0.0097 +ij[11796] = 9 +id[11797] = "2871-04-28T10:40:29" +ik[11797] = 3.624 +il[11797] = -179 +im[11797] = 0.0178 +ij[11797] = 27.2 +id[11798] = "2871-05-19T21:56:28" +ik[11798] = 1.934 +il[11798] = -145 +im[11798] = 0.0587 +ij[11798] = 28.6 +id[11799] = "2871-05-21T10:14:02" +ik[11799] = 12 +il[11799] = 44 +im[11799] = 0.0624 +ij[11799] = 18 +id[11800] = "2871-09-12T03:47:08" +ik[11800] = 1.05 +il[11800] = 155 +im[11800] = 0.0514 +ij[11800] = 12 +id[11801] = "2871-10-06T17:14:41" +ik[11801] = 25.758 +il[11801] = 33 +im[11801] = 0.02 +ij[11801] = 16 +id[11802] = "2871-12-30T04:47:21" +ik[11802] = 1.21 +il[11802] = -34 +im[11802] = 0.0045 +ij[11802] = 28.8 +id[11803] = "2872-01-16T12:44:54" +ik[11803] = 4.47 +il[11803] = 11 +im[11803] = 0.0471 +ij[11803] = 27.4 +id[11804] = "2872-01-31T10:03:40" +ik[11804] = 5.343 +il[11804] = -168 +im[11804] = 0.0512 +ij[11804] = 27.1 +id[11805] = "2872-02-20T05:23:18" +ik[11805] = 0.066 +il[11805] = 90 +im[11805] = 0.0749 +ij[11805] = 28.7 +id[11806] = "2872-02-20T07:02:23" +ik[11806] = 0 +il[11806] = 66 +im[11806] = 0.0744 +ij[11806] = 17 +id[11807] = "2872-02-24T14:19:31" +ik[11807] = 32.464 +il[11807] = -3 +im[11807] = 0.0209 +ij[11807] = 8 +id[11808] = "2872-04-25T13:07:31" +ik[11808] = 0.009 +il[11808] = -129 +im[11808] = 0.0624 +ij[11808] = 27.3 +id[11809] = "2872-05-28T19:57:58" +ik[11809] = 1.659 +il[11809] = 85 +im[11809] = 0.1423 +ij[11809] = 27.5 +id[11810] = "2872-06-27T11:23:34" +ik[11810] = 45.92 +il[11810] = 136 +im[11810] = 0.1762 +ij[11810] = 3 +id[11811] = "2872-07-28T07:39:13" +ik[11811] = -2.368 +il[11811] = 129 +im[11811] = 0.1861 +ij[11811] = 2 +id[11812] = "2872-09-14T00:31:26" +ik[11812] = 0 +il[11812] = -19 +im[11812] = 0.1658 +ij[11812] = 13 +id[11813] = "2872-10-18T10:27:09" +ik[11813] = 3.05 +il[11813] = 146 +im[11813] = 0.3259 +ij[11813] = 11 +id[11814] = "2872-11-16T23:34:02" +ik[11814] = 63.96 +il[11814] = 79 +im[11814] = 0.1348 +ij[11814] = 7.1199 +id[11815] = "2872-11-20T23:10:38" +ik[11815] = 0.623 +il[11815] = 124 +im[11815] = 0.118 +ij[11815] = 28.2 +id[11816] = "2872-12-09T14:56:11" +ik[11816] = -25.302 +il[11816] = 66 +im[11816] = 0.2398 +ij[11816] = 15 +id[11817] = "2872-12-31T18:48:52" +ik[11817] = 108.76 +il[11817] = -141 +im[11817] = 0.0731 +ij[11817] = 14 +id[11818] = "2873-01-09T00:25:27" +ik[11818] = -1.953 +il[11818] = -147 +im[11818] = 0.1511 +ij[11818] = 4 +id[11819] = "2873-01-12T00:03:34" +ik[11819] = 1.116 +il[11819] = -113 +im[11819] = 0.0733 +ij[11819] = 27.6 +id[11820] = "2873-01-28T14:17:31" +ik[11820] = 40.23 +il[11820] = -169 +im[11820] = 0.0439 +ij[11820] = 1 +id[11821] = "2873-04-03T14:21:04" +ik[11821] = 3.162 +il[11821] = 83 +im[11821] = 0.0876 +ij[11821] = 27.2 +id[11822] = "2873-04-24T17:42:46" +ik[11822] = 1.485 +il[11822] = -128 +im[11822] = 0.0281 +ij[11822] = 28.5 +id[11823] = "2873-04-27T20:39:30" +ik[11823] = 31.744 +il[11823] = -143 +im[11823] = 0.0667 +ij[11823] = 9 +id[11824] = "2873-04-29T15:14:55" +ik[11824] = 12 +il[11824] = -43 +im[11824] = 0.0776 +ij[11824] = 18 +id[11825] = "2873-06-03T16:34:59" +ik[11825] = 1.343 +il[11825] = -94 +im[11825] = 0.031 +ij[11825] = 28.6 +id[11826] = "2873-07-23T17:12:13" +ik[11826] = 1.68 +il[11826] = 17 +im[11826] = 0.0528 +ij[11826] = 28.1 +id[11827] = "2873-08-05T21:17:05" +ik[11827] = 0.658 +il[11827] = 84 +im[11827] = 0.0464 +ij[11827] = 28.2 +id[11828] = "2873-09-18T07:29:35" +ik[11828] = 25.902 +il[11828] = -12 +im[11828] = 0.0433 +ij[11828] = 16 +id[11829] = "2873-10-17T12:54:42" +ik[11829] = 0.59 +il[11829] = -179 +im[11829] = 0.0463 +ij[11829] = 12 +id[11830] = "2873-12-16T02:15:50" +ik[11830] = 1.468 +il[11830] = 58 +im[11830] = 0.0572 +ij[11830] = 28.1 +id[11831] = "2873-12-16T21:47:51" +ik[11831] = 1.491 +il[11831] = 128 +im[11831] = 0.0574 +ij[11831] = 28.8 +id[11832] = "2873-12-26T11:40:31" +ik[11832] = 4.21 +il[11832] = 17 +im[11832] = 0.0399 +ij[11832] = 27.4 +id[11833] = "2874-01-09T18:30:06" +ik[11833] = 5.586 +il[11833] = 43 +im[11833] = 0.03 +ij[11833] = 27.1 +id[11834] = "2874-01-29T05:11:00" +ik[11834] = 0 +il[11834] = 67 +im[11834] = 0.0688 +ij[11834] = 17 +id[11835] = "2874-02-10T10:06:51" +ik[11835] = 0.142 +il[11835] = 119 +im[11835] = 0.0594 +ij[11835] = 28.7 +id[11836] = "2874-03-27T14:38:36" +ik[11836] = 3.541 +il[11836] = 119 +im[11836] = 0.0823 +ij[11836] = 28.2 +id[11837] = "2874-03-30T09:17:14" +ik[11837] = 0.23 +il[11837] = -134 +im[11837] = 0.0717 +ij[11837] = 27.3 +id[11838] = "2874-04-17T16:11:30" +ik[11838] = 34.948 +il[11838] = -64 +im[11838] = 0.0034 +ij[11838] = 8 +id[11839] = "2874-04-29T08:38:31" +ik[11839] = 0.962 +il[11839] = 161 +im[11839] = 0.0673 +ij[11839] = 27.5 +id[11840] = "2874-05-28T11:39:59" +ik[11840] = -24.995 +il[11840] = 34 +im[11840] = 0.0702 +ij[11840] = 15 +id[11841] = "2874-07-11T14:06:29" +ik[11841] = 3.98 +il[11841] = 65 +im[11841] = 0.0602 +ij[11841] = 27.6 +id[11842] = "2874-08-18T17:15:30" +ik[11842] = 46.646 +il[11842] = 31 +im[11842] = 0.1348 +ij[11842] = 3 +id[11843] = "2874-09-12T22:06:48" +ik[11843] = -2.249 +il[11843] = -154 +im[11843] = 0.096 +ij[11843] = 2 +id[11844] = "2874-09-24T21:43:41" +ik[11844] = 5.682 +il[11844] = -31 +im[11844] = 0.0656 +ij[11844] = 27.2 +id[11845] = "2874-11-08T18:49:22" +ik[11845] = 0 +il[11845] = 92 +im[11845] = 0.1793 +ij[11845] = 13 +id[11846] = "2874-12-16T09:14:16" +ik[11846] = 2.31 +il[11846] = -140 +im[11846] = 0.1155 +ij[11846] = 11 +id[11847] = "2875-01-20T17:51:58" +ik[11847] = 72.96 +il[11847] = -106 +im[11847] = 0.1579 +ij[11847] = 7.1425 +id[11848] = "2875-02-19T13:16:18" +ik[11848] = 1.981 +il[11848] = -124 +im[11848] = 0.0602 +ij[11848] = 27.2 +id[11849] = "2875-03-14T21:42:49" +ik[11849] = -1.652 +il[11849] = -31 +im[11849] = 0.1262 +ij[11849] = 4 +id[11850] = "2875-03-20T06:57:54" +ik[11850] = 131.51 +il[11850] = -119 +im[11850] = 0.0345 +ij[11850] = 14 +id[11851] = "2875-03-23T03:30:31" +ik[11851] = 37.581 +il[11851] = -40 +im[11851] = 0.0379 +ij[11851] = 1 +id[11852] = "2875-04-02T15:05:28" +ik[11852] = 12 +il[11852] = -115 +im[11852] = 0.0333 +ij[11852] = 18 +id[11853] = "2875-06-04T09:23:04" +ik[11853] = 31.273 +il[11853] = -155 +im[11853] = 0.0654 +ij[11853] = 9 +id[11854] = "2875-06-20T15:09:31" +ik[11854] = 0.48 +il[11854] = -87 +im[11854] = 0.0636 +ij[11854] = 28.6 +id[11855] = "2875-07-10T16:48:19" +ik[11855] = 0.071 +il[11855] = 79 +im[11855] = 0.0408 +ij[11855] = 28.2 +id[11856] = "2875-07-22T05:06:27" +ik[11856] = 0.003 +il[11856] = 5 +im[11856] = 0.0558 +ij[11856] = 28.5 +id[11857] = "2875-08-31T13:52:25" +ik[11857] = 26.035 +il[11857] = -98 +im[11857] = 0.0612 +ij[11857] = 16 +id[11858] = "2875-09-06T09:13:46" +ik[11858] = 1.163 +il[11858] = 28 +im[11858] = 0.032 +ij[11858] = 28.2 +id[11859] = "2875-09-21T02:40:57" +ik[11859] = 0.988 +il[11859] = -92 +im[11859] = 0.0189 +ij[11859] = 28.1 +id[11860] = "2875-11-26T08:07:36" +ik[11860] = 0.15 +il[11860] = 131 +im[11860] = 0.0583 +ij[11860] = 12 +id[11861] = "2876-01-10T01:02:07" +ik[11861] = 0 +il[11861] = 132 +im[11861] = 0.0587 +ij[11861] = 17 +id[11862] = "2876-02-03T03:16:27" +ik[11862] = 0.279 +il[11862] = -34 +im[11862] = 0.0445 +ij[11862] = 28.7 +id[11863] = "2876-03-07T22:13:53" +ik[11863] = 0.284 +il[11863] = 14 +im[11863] = 0.067 +ij[11863] = 27.3 +id[11864] = "2876-03-08T19:00:46" +ik[11864] = 1.81 +il[11864] = 70 +im[11864] = 0.0635 +ij[11864] = 28.1 +id[11865] = "2876-03-17T07:16:18" +ik[11865] = 0.975 +il[11865] = -41 +im[11865] = 0.0365 +ij[11865] = 28.2 +id[11866] = "2876-04-05T22:44:08" +ik[11866] = 0.722 +il[11866] = -76 +im[11866] = 0.0721 +ij[11866] = 27.5 +id[11867] = "2876-05-05T11:48:56" +ik[11867] = -25.44 +il[11867] = 12 +im[11867] = 0.0758 +ij[11867] = 15 +id[11868] = "2876-06-15T05:39:06" +ik[11868] = 3.271 +il[11868] = 141 +im[11868] = 0.0738 +ij[11868] = 27.6 +id[11869] = "2876-07-05T09:11:03" +ik[11869] = 36.173 +il[11869] = -74 +im[11869] = 0.0599 +ij[11869] = 8 +id[11870] = "2876-08-18T11:20:53" +ik[11870] = 5.118 +il[11870] = -33 +im[11870] = 0.0347 +ij[11870] = 27.2 +id[11871] = "2876-09-06T19:15:38" +ik[11871] = 11 +il[11871] = 38 +im[11871] = 0.0579 +ij[11871] = 18 +id[11872] = "2876-10-04T11:21:33" +ik[11872] = 42.161 +il[11872] = 66 +im[11872] = 0.0476 +ij[11872] = 3 +id[11873] = "2876-10-13T22:58:23" +ik[11873] = -1.941 +il[11873] = -15 +im[11873] = 0.0688 +ij[11873] = 2 +id[11874] = "2876-12-17T06:58:23" +ik[11874] = 0 +il[11874] = 129 +im[11874] = 0.1785 +ij[11874] = 13 +id[11875] = "2876-12-26T08:38:47" +ik[11875] = 0.84 +il[11875] = -168 +im[11875] = 0.0567 +ij[11875] = 28.2 +id[11876] = "2877-01-11T20:28:17" +ik[11876] = 1.668 +il[11876] = 168 +im[11876] = 0.1745 +ij[11876] = 28.1 +id[11877] = "2877-01-25T19:37:22" +ik[11877] = 4.23 +il[11877] = -60 +im[11877] = 0.2131 +ij[11877] = 11 +id[11878] = "2877-02-12T11:27:41" +ik[11878] = 3.842 +il[11878] = 40 +im[11878] = 0.1967 +ij[11878] = 28.1 +id[11879] = "2877-03-06T10:06:08" +ik[11879] = 79.13 +il[11879] = -104 +im[11879] = 0.1438 +ij[11879] = 7.1754 +id[11880] = "2877-05-02T20:37:03" +ik[11880] = -1.555 +il[11880] = -78 +im[11880] = 0.1043 +ij[11880] = 4 +id[11881] = "2877-05-03T17:47:28" +ik[11881] = 37.031 +il[11881] = -27 +im[11881] = 0.1079 +ij[11881] = 1 +id[11882] = "2877-05-12T00:46:55" +ik[11882] = 145.74 +il[11882] = -53 +im[11882] = 0.0208 +ij[11882] = 14 +id[11883] = "2877-07-07T15:24:22" +ik[11883] = 0.571 +il[11883] = -89 +im[11883] = 0.0165 +ij[11883] = 28.6 +id[11884] = "2877-07-10T16:23:57" +ik[11884] = 31.66 +il[11884] = -75 +im[11884] = 0.0599 +ij[11884] = 9 +id[11885] = "2877-08-11T19:55:21" +ik[11885] = 26.169 +il[11885] = -177 +im[11885] = 0.0712 +ij[11885] = 16 +id[11886] = "2877-09-13T22:57:13" +ik[11886] = 6.006 +il[11886] = 99 +im[11886] = 0.0392 +ij[11886] = 28.1 +id[11887] = "2877-10-22T04:41:56" +ik[11887] = 1.002 +il[11887] = 24 +im[11887] = 0.0581 +ij[11887] = 28.5 +id[11888] = "2877-12-21T09:50:42" +ik[11888] = 0 +il[11888] = -179 +im[11888] = 0.0516 +ij[11888] = 17 +id[11889] = "2878-01-14T22:52:03" +ik[11889] = 0.93 +il[11889] = -123 +im[11889] = 0.0515 +ij[11889] = 12 +id[11890] = "2878-04-15T10:08:44" +ik[11890] = -25.696 +il[11890] = 37 +im[11890] = 0.0629 +ij[11890] = 15 +id[11891] = "2878-05-24T21:25:53" +ik[11891] = 2.886 +il[11891] = -107 +im[11891] = 0.0486 +ij[11891] = 27.6 +id[11892] = "2878-05-28T05:53:16" +ik[11892] = 2.947 +il[11892] = 160 +im[11892] = 0.0662 +ij[11892] = 28.1 +id[11893] = "2878-07-26T12:05:29" +ik[11893] = 4.747 +il[11893] = -71 +im[11893] = 0.0649 +ij[11893] = 27.2 +id[11894] = "2878-08-14T15:30:13" +ik[11894] = 12 +il[11894] = 65 +im[11894] = 0.0234 +ij[11894] = 18 +id[11895] = "2878-09-12T05:47:57" +ik[11895] = 33.849 +il[11895] = 129 +im[11895] = 0.0291 +ij[11895] = 8 +id[11896] = "2878-11-14T11:16:11" +ik[11896] = -1.72 +il[11896] = -60 +im[11896] = 0.0889 +ij[11896] = 2 +id[11897] = "2878-11-18T23:14:29" +ik[11897] = 38.339 +il[11897] = 164 +im[11897] = 0.0844 +ij[11897] = 3 +id[11898] = "2879-01-12T12:52:50" +ik[11898] = 3.28 +il[11898] = 127 +im[11898] = 0.1538 +ij[11898] = 28.6 +id[11899] = "2879-01-20T00:47:23" +ik[11899] = 0 +il[11899] = 21 +im[11899] = 0.0696 +ij[11899] = 13 +id[11900] = "2879-03-01T19:05:23" +ik[11900] = 4.19 +il[11900] = 118 +im[11900] = 0.0909 +ij[11900] = 11 +id[11901] = "2879-04-03T16:20:46" +ik[11901] = 1.911 +il[11901] = -105 +im[11901] = 0.1616 +ij[11901] = 28.2 +id[11902] = "2879-04-12T07:59:07" +ik[11902] = 82.3 +il[11902] = 104 +im[11902] = 0.1315 +ij[11902] = 7.2056 +id[11903] = "2879-06-12T10:03:30" +ik[11903] = 38.105 +il[11903] = -60 +im[11903] = 0.107 +ij[11903] = 1 +id[11904] = "2879-06-17T00:49:31" +ik[11904] = -1.605 +il[11904] = 123 +im[11904] = 0.0285 +ij[11904] = 4 +id[11905] = "2879-06-18T19:56:58" +ik[11905] = 149.8 +il[11905] = -147 +im[11905] = 0.0148 +ij[11905] = 14 +id[11906] = "2879-07-21T14:44:16" +ik[11906] = 26.303 +il[11906] = -111 +im[11906] = 0.0791 +ij[11906] = 16 +id[11907] = "2879-07-26T02:17:17" +ik[11907] = 1.7 +il[11907] = 119 +im[11907] = 0.0648 +ij[11907] = 28.6 +id[11908] = "2879-08-21T16:47:57" +ik[11908] = 32.896 +il[11908] = 160 +im[11908] = 0.075 +ij[11908] = 9 +id[11909] = "2879-10-29T08:54:55" +ik[11909] = 3.45 +il[11909] = -134 +im[11909] = 0.0554 +ij[11909] = 27.4 +id[11910] = "2879-11-09T21:37:24" +ik[11910] = 2.24 +il[11910] = 148 +im[11910] = 0.0317 +ij[11910] = 28.8 +id[11911] = "2879-11-12T08:17:23" +ik[11911] = 6.295 +il[11911] = 12 +im[11911] = 0.0582 +ij[11911] = 27.1 +id[11912] = "2879-11-30T21:21:00" +ik[11912] = 3.684 +il[11912] = -3 +im[11912] = 0.0623 +ij[11912] = 28.1 +id[11913] = "2879-12-02T15:22:39" +ik[11913] = 0 +il[11913] = 104 +im[11913] = 0.052 +ij[11913] = 17 +id[11914] = "2879-12-19T06:08:10" +ik[11914] = 0.543 +il[11914] = 46 +im[11914] = 0.0328 +ij[11914] = 28.2 +id[11915] = "2880-01-05T16:27:34" +ik[11915] = 0.54 +il[11915] = 69 +im[11915] = 0.0161 +ij[11915] = 28.5 +id[11916] = "2880-03-25T01:16:03" +ik[11916] = 0.83 +il[11916] = 13 +im[11916] = 0.0597 +ij[11916] = 12 +id[11917] = "2880-03-25T23:37:40" +ik[11917] = -25.885 +il[11917] = -175 +im[11917] = 0.0576 +ij[11917] = 15 +id[11918] = "2880-07-05T04:50:03" +ik[11918] = 4.48 +il[11918] = 36 +im[11918] = 0.063 +ij[11918] = 27.2 +id[11919] = "2880-07-24T18:56:17" +ik[11919] = 12 +il[11919] = 16 +im[11919] = 0.0157 +ij[11919] = 18 +id[11920] = "2880-08-04T13:35:42" +ik[11920] = 1.263 +il[11920] = -159 +im[11920] = 0.0574 +ij[11920] = 28.2 +id[11921] = "2880-09-24T02:33:07" +ik[11921] = 1.645 +il[11921] = 137 +im[11921] = 0.0338 +ij[11921] = 28.2 +id[11922] = "2880-10-26T20:06:10" +ik[11922] = 31.755 +il[11922] = -170 +im[11922] = 0.0735 +ij[11922] = 8 +id[11923] = "2880-12-18T03:25:59" +ik[11923] = -1.602 +il[11923] = -134 +im[11923] = 0.0309 +ij[11923] = 2 +id[11924] = "2880-12-27T22:38:29" +ik[11924] = 36.428 +il[11924] = 33 +im[11924] = 0.0408 +ij[11924] = 3 +id[11925] = "2881-01-18T17:57:45" +ik[11925] = 0.142 +il[11925] = -47 +im[11925] = 0.1081 +ij[11925] = 28.6 +id[11926] = "2881-02-23T19:57:25" +ik[11926] = 0 +il[11926] = -89 +im[11926] = 0.0214 +ij[11926] = 13 +id[11927] = "2881-03-12T22:07:09" +ik[11927] = 0.977 +il[11927] = 43 +im[11927] = 0.1283 +ij[11927] = 28.6 +id[11928] = "2881-04-04T02:13:50" +ik[11928] = 2.86 +il[11928] = 179 +im[11928] = 0.0806 +ij[11928] = 11 +id[11929] = "2881-04-22T11:47:25" +ik[11929] = 0.091 +il[11929] = -16 +im[11929] = 0.1867 +ij[11929] = 28.1 +id[11930] = "2881-05-15T19:00:01" +ik[11930] = 80.96 +il[11930] = 101 +im[11930] = 0.0268 +ij[11930] = 7.207 +id[11931] = "2881-06-23T09:00:17" +ik[11931] = 26.236 +il[11931] = -95 +im[11931] = 0.0929 +ij[11931] = 16 +id[11932] = "2881-07-18T11:44:48" +ik[11932] = 144.66 +il[11932] = 108 +im[11932] = 0.1212 +ij[11932] = 14 +id[11933] = "2881-07-23T08:08:26" +ik[11933] = 40.74 +il[11933] = -151 +im[11933] = 0.0417 +ij[11933] = 1 +id[11934] = "2881-07-29T01:51:46" +ik[11934] = -1.785 +il[11934] = -1 +im[11934] = 0.0846 +ij[11934] = 4 +id[11935] = "2881-08-11T10:45:30" +ik[11935] = 2.792 +il[11935] = -4 +im[11935] = 0.0866 +ij[11935] = 28.6 +id[11936] = "2881-10-07T03:20:29" +ik[11936] = 3.03 +il[11936] = -60 +im[11936] = 0.06 +ij[11936] = 27.4 +id[11937] = "2881-10-13T22:55:56" +ik[11937] = 34.753 +il[11937] = 72 +im[11937] = 0.075 +ij[11937] = 9 +id[11938] = "2881-10-25T19:52:00" +ik[11938] = 2.586 +il[11938] = -125 +im[11938] = 0.0775 +ij[11938] = 28.8 +id[11939] = "2881-11-11T23:15:40" +ik[11939] = 0 +il[11939] = -8 +im[11939] = 0.0682 +ij[11939] = 17 +id[11940] = "2881-11-17T22:28:46" +ik[11940] = 1.265 +il[11940] = 62 +im[11940] = 0.0229 +ij[11940] = 28.2 +id[11941] = "2882-01-05T23:21:33" +ik[11941] = 0.182 +il[11941] = 171 +im[11941] = 0.0704 +ij[11941] = 27.3 +id[11942] = "2882-01-10T22:06:55" +ik[11942] = 0.363 +il[11942] = -121 +im[11942] = 0.0373 +ij[11942] = 28.7 +id[11943] = "2882-01-29T11:03:08" +ik[11943] = 0.902 +il[11943] = -133 +im[11943] = 0.0195 +ij[11943] = 28.2 +id[11944] = "2882-02-03T11:14:29" +ik[11944] = 0.46 +il[11944] = -86 +im[11944] = 0.065 +ij[11944] = 27.5 +id[11945] = "2882-02-14T10:35:51" +ik[11945] = 4.781 +il[11945] = 36 +im[11945] = 0.0444 +ij[11945] = 28.1 +id[11946] = "2882-03-05T12:37:14" +ik[11946] = 0.518 +il[11946] = -168 +im[11946] = 0.0631 +ij[11946] = 28.5 +id[11947] = "2882-03-06T13:15:43" +ik[11947] = -26.05 +il[11947] = -172 +im[11947] = 0.0614 +ij[11947] = 15 +id[11948] = "2882-06-01T06:56:30" +ik[11948] = 0.29 +il[11948] = 59 +im[11948] = 0.0552 +ij[11948] = 12 +id[11949] = "2882-07-06T01:41:34" +ik[11949] = 12 +il[11949] = -85 +im[11949] = 0.0043 +ij[11949] = 18 +id[11950] = "2882-08-29T16:39:37" +ik[11950] = 1.106 +il[11950] = -130 +im[11950] = 0.0332 +ij[11950] = 28.2 +id[11951] = "2882-11-20T13:18:07" +ik[11951] = 25.22 +il[11951] = 4 +im[11951] = 0.0694 +ij[11951] = 16 +id[11952] = "2882-12-01T22:31:03" +ik[11952] = 30.733 +il[11952] = -24 +im[11952] = 0.0674 +ij[11952] = 8 +id[11953] = "2883-01-30T00:59:20" +ik[11953] = -1.586 +il[11953] = 148 +im[11953] = 0.1031 +ij[11953] = 2 +id[11954] = "2883-01-31T20:29:00" +ik[11954] = 0.549 +il[11954] = -127 +im[11954] = 0.0954 +ij[11954] = 28.6 +id[11955] = "2883-02-05T21:48:31" +ik[11955] = 36.353 +il[11955] = -98 +im[11955] = 0.0144 +ij[11955] = 3 +id[11956] = "2883-04-05T11:45:16" +ik[11956] = 0 +il[11956] = -110 +im[11956] = 0.1328 +ij[11956] = 13 +id[11957] = "2883-04-17T13:13:01" +ik[11957] = 1.254 +il[11957] = -27 +im[11957] = 0.0471 +ij[11957] = 28.2 +id[11958] = "2883-05-12T20:20:57" +ik[11958] = 0.12 +il[11958] = 95 +im[11958] = 0.0378 +ij[11958] = 11 +id[11959] = "2883-06-21T11:48:52" +ik[11959] = 77 +il[11959] = 40 +im[11959] = 0.0531 +ij[11959] = 7.1645 +id[11960] = "2883-08-17T07:05:43" +ik[11960] = 133.81 +il[11960] = -56 +im[11960] = 0.0108 +ij[11960] = 14 +id[11961] = "2883-08-23T17:15:39" +ik[11961] = 3.832 +il[11961] = -146 +im[11961] = 0.1461 +ij[11961] = 28.6 +id[11962] = "2883-08-30T23:29:34" +ik[11962] = -2.08 +il[11962] = -168 +im[11962] = 0.0254 +ij[11962] = 4 +id[11963] = "2883-09-07T19:43:23" +ik[11963] = 44.541 +il[11963] = -35 +im[11963] = 0.1268 +ij[11963] = 1 +id[11964] = "2883-09-09T13:43:18" +ik[11964] = 2.191 +il[11964] = 72 +im[11964] = 0.115 +ij[11964] = 27.4 +id[11965] = "2883-10-07T15:29:33" +ik[11965] = 3.208 +il[11965] = -39 +im[11965] = 0.1044 +ij[11965] = 28.8 +id[11966] = "2883-10-20T14:40:00" +ik[11966] = 0 +il[11966] = 101 +im[11966] = 0.1144 +ij[11966] = 17 +id[11967] = "2883-12-14T22:33:16" +ik[11967] = 0.015 +il[11967] = 167 +im[11967] = 0.0815 +ij[11967] = 27.3 +id[11968] = "2883-12-24T03:20:49" +ik[11968] = 35.487 +il[11968] = -174 +im[11968] = 0.0237 +ij[11968] = 9 +id[11969] = "2884-01-01T20:23:30" +ik[11969] = 0.295 +il[11969] = 16 +im[11969] = 0.0786 +ij[11969] = 28.7 +id[11970] = "2884-01-13T00:13:05" +ik[11970] = 0.442 +il[11970] = 67 +im[11970] = 0.0734 +ij[11970] = 27.5 +id[11971] = "2884-02-14T08:03:32" +ik[11971] = -26.216 +il[11971] = -96 +im[11971] = 0.0763 +ij[11971] = 15 +id[11972] = "2884-03-23T18:51:28" +ik[11972] = 2.102 +il[11972] = 112 +im[11972] = 0.0395 +ij[11972] = 27.6 +id[11973] = "2884-05-03T09:17:50" +ik[11973] = 1.035 +il[11973] = -67 +im[11973] = 0.0041 +ij[11973] = 28.5 +id[11974] = "2884-05-03T10:58:09" +ik[11974] = 1.842 +il[11974] = -92 +im[11974] = 0.0041 +ij[11974] = 28.1 +id[11975] = "2884-06-16T16:26:19" +ik[11975] = 12 +il[11975] = -116 +im[11975] = 0.0169 +ij[11975] = 18 +id[11976] = "2884-07-20T02:20:04" +ik[11976] = 1 +il[11976] = 62 +im[11976] = 0.0563 +ij[11976] = 12 +id[11977] = "2884-10-03T21:09:38" +ik[11977] = 3.817 +il[11977] = -16 +im[11977] = 0.0467 +ij[11977] = 28.1 +id[11978] = "2884-10-31T10:15:58" +ik[11978] = 25.505 +il[11978] = 57 +im[11978] = 0.0552 +ij[11978] = 16 +id[11979] = "2885-01-03T12:20:49" +ik[11979] = 30.73 +il[11979] = -78 +im[11979] = 0.0232 +ij[11979] = 8 +id[11980] = "2885-02-16T12:03:08" +ik[11980] = 0.87 +il[11980] = -13 +im[11980] = 0.0373 +ij[11980] = 28.6 +id[11981] = "2885-02-20T18:18:55" +ik[11981] = 4.98 +il[11981] = -67 +im[11981] = 0.0957 +ij[11981] = 27.4 +id[11982] = "2885-03-11T05:40:51" +ik[11982] = 4.904 +il[11982] = -62 +im[11982] = 0.0894 +ij[11982] = 27.1 +id[11983] = "2885-03-24T15:06:28" +ik[11983] = 38.414 +il[11983] = -77 +im[11983] = 0.1027 +ij[11983] = 3 +id[11984] = "2885-03-26T01:27:22" +ik[11984] = 1.008 +il[11984] = 142 +im[11984] = 0.0759 +ij[11984] = 28.8 +id[11985] = "2885-04-01T23:37:34" +ik[11985] = -1.729 +il[11985] = -125 +im[11985] = 0.1035 +ij[11985] = 2 +id[11986] = "2885-04-07T19:27:36" +ik[11986] = 23 +il[11986] = -8 +im[11986] = 0.125 +ij[11986] = 17 +id[11987] = "2885-06-01T07:06:12" +ik[11987] = 0 +il[11987] = -31 +im[11987] = 0.2488 +ij[11987] = 13 +id[11988] = "2885-06-29T16:25:56" +ik[11988] = 0 +il[11988] = 90 +im[11988] = 0.271 +ij[11988] = 18 +id[11989] = "2885-07-02T20:13:51" +ik[11989] = 4.14 +il[11989] = 56 +im[11989] = 0.0691 +ij[11989] = 11 +id[11990] = "2885-08-08T06:08:48" +ik[11990] = 67.96 +il[11990] = 77 +im[11990] = 0.2459 +ij[11990] = 7.1105 +id[11991] = "2885-08-09T23:30:06" +ik[11991] = 4.699 +il[11991] = -166 +im[11991] = 0.1679 +ij[11991] = 28.2 +id[11992] = "2885-08-15T09:18:36" +ik[11992] = 6.113 +il[11992] = 100 +im[11992] = 0.1544 +ij[11992] = 28.8 +id[11993] = "2885-09-12T09:34:04" +ik[11993] = 0 +il[11993] = 11 +im[11993] = 0.1265 +ij[11993] = 17 +id[11994] = "2885-09-23T14:19:37" +ik[11994] = 114.3 +il[11994] = 50 +im[11994] = 0.0317 +ij[11994] = 14 +id[11995] = "2885-10-03T14:09:35" +ik[11995] = -2.364 +il[11995] = 151 +im[11995] = 0.1542 +ij[11995] = 4 +id[11996] = "2885-10-26T17:03:24" +ik[11996] = 46.246 +il[11996] = -25 +im[11996] = 0.1311 +ij[11996] = 1 +id[11997] = "2885-11-15T04:33:03" +ik[11997] = 0.567 +il[11997] = -6 +im[11997] = 0.1265 +ij[11997] = 27.3 +id[11998] = "2885-12-17T00:21:43" +ik[11998] = 0.564 +il[11998] = 8 +im[11998] = 0.0473 +ij[11998] = 27.5 +id[11999] = "2885-12-18T12:00:05" +ik[11999] = 0.225 +il[11999] = -152 +im[11999] = 0.0143 +ij[11999] = 28.7 +id[12000] = "2886-01-21T15:12:24" +ik[12000] = -26.393 +il[12000] = 130 +im[12000] = 0.0891 +ij[12000] = 15 +id[12001] = "2886-02-25T01:58:09" +ik[12001] = 33.828 +il[12001] = -62 +im[12001] = 0.0731 +ij[12001] = 9 +id[12002] = "2886-03-01T16:36:28" +ik[12002] = 1.788 +il[12002] = 122 +im[12002] = 0.0075 +ij[12002] = 27.6 +id[12003] = "2886-05-06T17:11:32" +ik[12003] = 3.753 +il[12003] = 18 +im[12003] = 0.0588 +ij[12003] = 27.2 +id[12004] = "2886-05-29T00:24:38" +ik[12004] = 12 +il[12004] = 129 +im[12004] = 0.0241 +ij[12004] = 18 +id[12005] = "2886-06-04T16:29:32" +ik[12005] = 0.475 +il[12005] = -47 +im[12005] = 0.0544 +ij[12005] = 28.2 +id[12006] = "2886-08-28T21:16:57" +ik[12006] = 1.12 +il[12006] = -24 +im[12006] = 0.0543 +ij[12006] = 12 +id[12007] = "2886-10-13T13:54:46" +ik[12007] = 25.697 +il[12007] = 11 +im[12007] = 0.0447 +ij[12007] = 16 +id[12008] = "2887-01-04T09:11:59" +ik[12008] = 1.893 +il[12008] = 165 +im[12008] = 0.0649 +ij[12008] = 28.2 +id[12009] = "2887-01-25T02:18:31" +ik[12009] = 4.588 +il[12009] = 105 +im[12009] = 0.0247 +ij[12009] = 27.4 +id[12010] = "2887-02-08T13:12:49" +ik[12010] = 31.758 +il[12010] = 79 +im[12010] = 0.0076 +ij[12010] = 8 +id[12011] = "2887-02-09T10:10:53" +ik[12011] = 5.235 +il[12011] = 133 +im[12011] = 0.0076 +ij[12011] = 27.1 +id[12012] = "2887-02-27T13:00:10" +ik[12012] = 1.236 +il[12012] = -98 +im[12012] = 0.0541 +ij[12012] = 28.8 +id[12013] = "2887-03-01T18:57:11" +ik[12013] = 23 +il[12013] = -166 +im[12013] = 0.0782 +ij[12013] = 17 +id[12014] = "2887-03-05T10:42:05" +ik[12014] = 0.808 +il[12014] = -8 +im[12014] = 0.0692 +ij[12014] = 28.6 +id[12015] = "2887-05-10T19:15:37" +ik[12015] = 0.309 +il[12015] = 131 +im[12015] = 0.1171 +ij[12015] = 27.3 +id[12016] = "2887-05-31T01:43:23" +ik[12016] = 43.556 +il[12016] = -134 +im[12016] = 0.1185 +ij[12016] = 3 +id[12017] = "2887-06-18T14:06:14" +ik[12017] = 2.58 +il[12017] = -143 +im[12017] = 0.0273 +ij[12017] = 27.5 +id[12018] = "2887-06-22T17:06:39" +ik[12018] = 2.393 +il[12018] = -149 +im[12018] = 0.1571 +ij[12018] = 28.7 +id[12019] = "2887-06-29T20:37:09" +ik[12019] = -2.206 +il[12019] = -134 +im[12019] = 0.1163 +ij[12019] = 2 +id[12020] = "2887-08-17T14:20:08" +ik[12020] = 0 +il[12020] = 69 +im[12020] = 0.2804 +ij[12020] = 13 +id[12021] = "2887-09-18T13:28:31" +ik[12021] = 5.73 +il[12021] = 13 +im[12021] = 0.3305 +ij[12021] = 11 +id[12022] = "2887-10-18T13:22:43" +ik[12022] = 61.96 +il[12022] = 150 +im[12022] = 0.1042 +ij[12022] = 7.1095 +id[12023] = "2887-11-01T00:29:12" +ik[12023] = 2.207 +il[12023] = 115 +im[12023] = 0.1521 +ij[12023] = 28.7 +id[12024] = "2887-11-29T01:39:32" +ik[12024] = 103.47 +il[12024] = 9 +im[12024] = 0.1067 +ij[12024] = 14 +id[12025] = "2887-12-09T15:52:43" +ik[12025] = -2.136 +il[12025] = -103 +im[12025] = 0.1681 +ij[12025] = 4 +id[12026] = "2887-12-21T04:38:15" +ik[12026] = -26.363 +il[12026] = 177 +im[12026] = 0.1682 +ij[12026] = 15 +id[12027] = "2888-01-03T07:28:24" +ik[12027] = 42.007 +il[12027] = -100 +im[12027] = 0.1318 +ij[12027] = 1 +id[12028] = "2888-01-31T21:50:22" +ik[12028] = 1.328 +il[12028] = -44 +im[12028] = 0.1072 +ij[12028] = 27.6 +id[12029] = "2888-04-12T03:49:42" +ik[12029] = 32.169 +il[12029] = 179 +im[12029] = 0.0591 +ij[12029] = 9 +id[12030] = "2888-04-13T15:36:12" +ik[12030] = 3.376 +il[12030] = 17 +im[12030] = 0.0705 +ij[12030] = 27.2 +id[12031] = "2888-05-08T03:30:07" +ik[12031] = 12 +il[12031] = 73 +im[12031] = 0.0205 +ij[12031] = 18 +id[12032] = "2888-06-08T05:28:00" +ik[12032] = 0.343 +il[12032] = -28 +im[12032] = 0.0449 +ij[12032] = 28.2 +id[12033] = "2888-06-24T12:13:38" +ik[12033] = 4.897 +il[12033] = 28 +im[12033] = 0.0632 +ij[12033] = 28.1 +id[12034] = "2888-09-25T03:35:39" +ik[12034] = 25.849 +il[12034] = -22 +im[12034] = 0.0252 +ij[12034] = 16 +id[12035] = "2888-10-03T06:47:38" +ik[12035] = 0.81 +il[12035] = 12 +im[12035] = 0.0532 +ij[12035] = 12 +id[12036] = "2888-12-30T11:04:54" +ik[12036] = 1.974 +il[12036] = -77 +im[12036] = 0.0587 +ij[12036] = 28.2 +id[12037] = "2889-01-03T03:26:08" +ik[12037] = 4.306 +il[12037] = 64 +im[12037] = 0.0292 +ij[12037] = 27.4 +id[12038] = "2889-01-17T14:40:49" +ik[12038] = 5.497 +il[12038] = 41 +im[12038] = 0.0354 +ij[12038] = 27.1 +id[12039] = "2889-02-06T03:28:29" +ik[12039] = 0 +il[12039] = 29 +im[12039] = 0.0368 +ij[12039] = 17 +id[12040] = "2889-02-10T05:58:46" +ik[12040] = 1.421 +il[12040] = 37 +im[12040] = 0.0692 +ij[12040] = 28.8 +id[12041] = "2889-03-20T16:47:41" +ik[12041] = 0.374 +il[12041] = -122 +im[12041] = 0.0392 +ij[12041] = 28.6 +id[12042] = "2889-03-25T06:23:29" +ik[12042] = 33.893 +il[12042] = 77 +im[12042] = 0.0846 +ij[12042] = 8 +id[12043] = "2889-04-08T17:50:15" +ik[12043] = 0.175 +il[12043] = 43 +im[12043] = 0.0824 +ij[12043] = 27.3 +id[12044] = "2889-05-09T11:01:03" +ik[12044] = 1.133 +il[12044] = 77 +im[12044] = 0.0916 +ij[12044] = 27.5 +id[12045] = "2889-05-24T19:49:48" +ik[12045] = 0.981 +il[12045] = 91 +im[12045] = 0.1056 +ij[12045] = 28.7 +id[12046] = "2889-06-07T08:42:04" +ik[12046] = -24.684 +il[12046] = 28 +im[12046] = 0.1041 +ij[12046] = 15 +id[12047] = "2889-07-24T23:14:10" +ik[12047] = 4.518 +il[12047] = -90 +im[12047] = 0.0722 +ij[12047] = 27.6 +id[12048] = "2889-07-31T18:39:27" +ik[12048] = 47.399 +il[12048] = 45 +im[12048] = 0.1291 +ij[12048] = 3 +id[12049] = "2889-08-29T02:26:31" +ik[12049] = -2.356 +il[12049] = -154 +im[12049] = 0.1532 +ij[12049] = 2 +id[12050] = "2889-10-21T01:40:03" +ik[12050] = 0 +il[12050] = 18 +im[12050] = 0.1019 +ij[12050] = 13 +id[12051] = "2889-10-23T01:39:17" +ik[12051] = 2.013 +il[12051] = 38 +im[12051] = 0.2101 +ij[12051] = 28.2 +id[12052] = "2889-11-26T09:46:18" +ik[12052] = 0.63 +il[12052] = -128 +im[12052] = 0.1348 +ij[12052] = 11 +id[12053] = "2889-12-29T00:42:38" +ik[12053] = 68.96 +il[12053] = 146 +im[12053] = 0.1866 +ij[12053] = 7.1326 +id[12054] = "2890-02-20T03:42:05" +ik[12054] = -1.741 +il[12054] = -117 +im[12054] = 0.0452 +ij[12054] = 4 +id[12055] = "2890-02-20T13:35:26" +ik[12055] = 122.5 +il[12055] = 98 +im[12055] = 0.0555 +ij[12055] = 14 +id[12056] = "2890-03-04T05:03:24" +ik[12056] = 38.322 +il[12056] = -24 +im[12056] = 0.0444 +ij[12056] = 1 +id[12057] = "2890-03-14T15:41:04" +ik[12057] = 2.648 +il[12057] = -85 +im[12057] = 0.0914 +ij[12057] = 27.2 +id[12058] = "2890-04-14T15:39:58" +ik[12058] = 12 +il[12058] = -153 +im[12058] = 0.0408 +ij[12058] = 18 +id[12059] = "2890-05-21T02:07:29" +ik[12059] = 31.354 +il[12059] = 34 +im[12059] = 0.0699 +ij[12059] = 9 +id[12060] = "2890-08-25T12:50:00" +ik[12060] = 0.936 +il[12060] = 79 +im[12060] = 0.0268 +ij[12060] = 28.1 +id[12061] = "2890-09-07T14:37:32" +ik[12061] = 25.985 +il[12061] = 179 +im[12061] = 0.0014 +ij[12061] = 16 +id[12062] = "2890-11-10T01:55:11" +ik[12062] = 0.16 +il[12062] = -80 +im[12062] = 0.0538 +ij[12062] = 12 +id[12063] = "2891-01-17T11:00:03" +ik[12063] = 0 +il[12063] = -91 +im[12063] = 0.0377 +ij[12063] = 17 +id[12064] = "2891-01-27T13:58:24" +ik[12064] = 1.546 +il[12064] = -40 +im[12064] = 0.0295 +ij[12064] = 28.8 +id[12065] = "2891-02-04T07:43:50" +ik[12065] = 2.208 +il[12065] = 127 +im[12065] = 0.0599 +ij[12065] = 28.1 +id[12066] = "2891-03-17T02:02:58" +ik[12066] = 0.273 +il[12066] = -110 +im[12066] = 0.0479 +ij[12066] = 27.3 +id[12067] = "2891-04-04T23:54:13" +ik[12067] = 0.306 +il[12067] = 102 +im[12067] = 0.0708 +ij[12067] = 28.6 +id[12068] = "2891-04-15T09:12:41" +ik[12068] = 0.795 +il[12068] = 62 +im[12068] = 0.053 +ij[12068] = 27.5 +id[12069] = "2891-05-12T19:55:25" +ik[12069] = 0.573 +il[12069] = 165 +im[12069] = 0.0331 +ij[12069] = 28.7 +id[12070] = "2891-05-14T18:50:57" +ik[12070] = -25.302 +il[12070] = -160 +im[12070] = 0.0599 +ij[12070] = 15 +id[12071] = "2891-06-02T23:57:15" +ik[12071] = 36.205 +il[12071] = -50 +im[12071] = 0.0816 +ij[12071] = 8 +id[12072] = "2891-06-25T09:38:56" +ik[12072] = 3.485 +il[12072] = 23 +im[12072] = 0.0477 +ij[12072] = 27.6 +id[12073] = "2891-08-30T10:10:40" +ik[12073] = 5.317 +il[12073] = -57 +im[12073] = 0.096 +ij[12073] = 27.2 +id[12074] = "2891-09-16T09:47:22" +ik[12074] = 44.047 +il[12074] = 115 +im[12074] = 0.0195 +ij[12074] = 3 +id[12075] = "2891-09-19T15:55:22" +ik[12075] = 11 +il[12075] = 55 +im[12075] = 0.0696 +ij[12075] = 18 +id[12076] = "2891-10-02T22:41:39" +ik[12076] = -2.056 +il[12076] = 83 +im[12076] = 0.0172 +ij[12076] = 2 +id[12077] = "2891-12-03T13:35:56" +ik[12077] = 0 +il[12077] = 100 +im[12077] = 0.1999 +ij[12077] = 13 +id[12078] = "2891-12-24T20:44:10" +ik[12078] = 5.305 +il[12078] = -161 +im[12078] = 0.0335 +ij[12078] = 28.1 +id[12079] = "2892-01-11T21:39:11" +ik[12079] = 3.8 +il[12079] = -22 +im[12079] = 0.2498 +ij[12079] = 11 +id[12080] = "2892-01-28T13:13:32" +ik[12080] = 2.975 +il[12080] = 78 +im[12080] = 0.1876 +ij[12080] = 28.1 +id[12081] = "2892-02-09T20:39:23" +ik[12081] = 3.195 +il[12081] = 85 +im[12081] = 0.2106 +ij[12081] = 28.2 +id[12082] = "2892-02-19T13:41:32" +ik[12082] = 78 +il[12082] = -90 +im[12082] = 0.1333 +ij[12082] = 7.1617 +id[12083] = "2892-04-14T09:25:13" +ik[12083] = -1.574 +il[12083] = 131 +im[12083] = 0.06 +ij[12083] = 4 +id[12084] = "2892-04-17T20:45:18" +ik[12084] = 37.039 +il[12084] = -6 +im[12084] = 0.1019 +ij[12084] = 1 +id[12085] = "2892-04-23T14:42:22" +ik[12085] = 142.05 +il[12085] = 139 +im[12085] = 0.0286 +ij[12085] = 14 +id[12086] = "2892-06-25T22:20:49" +ik[12086] = 31.407 +il[12086] = -92 +im[12086] = 0.0686 +ij[12086] = 9 +id[12087] = "2892-08-19T08:55:23" +ik[12087] = 26.118 +il[12087] = -86 +im[12087] = 0.0282 +ij[12087] = 16 +id[12088] = "2892-10-06T15:10:45" +ik[12088] = 0.476 +il[12088] = -72 +im[12088] = 0.0601 +ij[12088] = 28.2 +id[12089] = "2892-12-24T06:12:58" +ik[12089] = 0.66 +il[12089] = 129 +im[12089] = 0.0098 +ij[12089] = 12 +id[12090] = "2892-12-28T17:40:56" +ik[12090] = 0 +il[12090] = 168 +im[12090] = 0.0465 +ij[12090] = 17 +id[12091] = "2893-03-15T06:20:55" +ik[12091] = 0.019 +il[12091] = 2 +im[12091] = 0.0616 +ij[12091] = 28.5 +id[12092] = "2893-03-24T09:55:17" +ik[12092] = 0.637 +il[12092] = 29 +im[12092] = 0.0355 +ij[12092] = 27.5 +id[12093] = "2893-04-18T09:13:50" +ik[12093] = 1.032 +il[12093] = -71 +im[12093] = 0.0198 +ij[12093] = 28.6 +id[12094] = "2893-04-23T04:32:44" +ik[12094] = -25.609 +il[12094] = 49 +im[12094] = 0.0449 +ij[12094] = 15 +id[12095] = "2893-04-25T11:16:53" +ik[12095] = 1.413 +il[12095] = -30 +im[12095] = 0.0647 +ij[12095] = 28.1 +id[12096] = "2893-05-03T08:21:00" +ik[12096] = 0.297 +il[12096] = 91 +im[12096] = 0.028 +ij[12096] = 28.7 +id[12097] = "2893-05-30T14:38:05" +ik[12097] = 0.099 +il[12097] = -97 +im[12097] = 0.0516 +ij[12097] = 28.2 +id[12098] = "2893-06-02T00:59:43" +ik[12098] = 3.017 +il[12098] = 132 +im[12098] = 0.0184 +ij[12098] = 27.6 +id[12099] = "2893-07-10T21:37:26" +ik[12099] = 1.684 +il[12099] = -156 +im[12099] = 0.0655 +ij[12099] = 28.2 +id[12100] = "2893-08-04T00:05:18" +ik[12100] = 4.873 +il[12100] = 44 +im[12100] = 0.0661 +ij[12100] = 27.2 +id[12101] = "2893-08-20T02:19:02" +ik[12101] = 34.885 +il[12101] = 168 +im[12101] = 0.0791 +ij[12101] = 8 +id[12102] = "2893-08-23T01:52:29" +ik[12102] = 11 +il[12102] = -156 +im[12102] = 0.0779 +ij[12102] = 18 +id[12103] = "2893-11-02T00:26:34" +ik[12103] = -1.794 +il[12103] = -165 +im[12103] = 0.111 +ij[12103] = 2 +id[12104] = "2893-11-02T02:45:18" +ik[12104] = 39.611 +il[12104] = 161 +im[12104] = 0.1104 +ij[12104] = 3 +id[12105] = "2893-12-24T17:14:03" +ik[12105] = 20.393 +il[12105] = 93 +im[12105] = 0.155 +ij[12105] = 16 +id[12106] = "2894-01-06T14:42:50" +ik[12106] = 0 +il[12106] = -104 +im[12106] = 0.12 +ij[12106] = 13 +id[12107] = "2894-02-16T13:25:52" +ik[12107] = 4.37 +il[12107] = -71 +im[12107] = 0.2036 +ij[12107] = 11 +id[12108] = "2894-03-29T15:31:37" +ik[12108] = 82.03 +il[12108] = 76 +im[12108] = 0.1555 +ij[12108] = 7.1956 +id[12109] = "2894-05-27T23:29:19" +ik[12109] = 37.499 +il[12109] = 163 +im[12109] = 0.0923 +ij[12109] = 1 +id[12110] = "2894-05-30T15:27:54" +ik[12110] = -1.569 +il[12110] = -51 +im[12110] = 0.0464 +ij[12110] = 4 +id[12111] = "2894-06-05T09:04:24" +ik[12111] = 149.76 +il[12111] = 100 +im[12111] = 0.0774 +ij[12111] = 14 +id[12112] = "2894-08-04T09:35:55" +ik[12112] = 32.313 +il[12112] = -47 +im[12112] = 0.0811 +ij[12112] = 9 +id[12113] = "2894-09-08T05:52:09" +ik[12113] = 0.926 +il[12113] = -13 +im[12113] = 0.0321 +ij[12113] = 28.2 +id[12114] = "2894-10-30T15:20:37" +ik[12114] = 4.243 +il[12114] = -6 +im[12114] = 0.0673 +ij[12114] = 28.1 +id[12115] = "2894-11-06T03:04:31" +ik[12115] = 3.571 +il[12115] = -118 +im[12115] = 0.0106 +ij[12115] = 27.4 +id[12116] = "2894-11-15T04:19:36" +ik[12116] = 0.716 +il[12116] = -49 +im[12116] = 0.0579 +ij[12116] = 28.2 +id[12117] = "2894-11-20T01:21:18" +ik[12117] = 6.183 +il[12117] = 43 +im[12117] = 0.0083 +ij[12117] = 27.1 +id[12118] = "2894-12-10T02:13:56" +ik[12118] = 0 +il[12118] = -134 +im[12118] = 0.0527 +ij[12118] = 17 +id[12119] = "2895-02-24T16:03:12" +ik[12119] = 1.06 +il[12119] = 72 +im[12119] = 0.0602 +ij[12119] = 12 +id[12120] = "2895-04-03T14:45:30" +ik[12120] = -25.816 +il[12120] = -116 +im[12120] = 0.042 +ij[12120] = 15 +id[12121] = "2895-06-19T00:39:11" +ik[12121] = 2.264 +il[12121] = 143 +im[12121] = 0.0613 +ij[12121] = 28.2 +id[12122] = "2895-07-14T00:09:58" +ik[12122] = 4.577 +il[12122] = 35 +im[12122] = 0.0347 +ij[12122] = 27.2 +id[12123] = "2895-07-16T15:24:38" +ik[12123] = 6.062 +il[12123] = -168 +im[12123] = 0.0587 +ij[12123] = 28.1 +id[12124] = "2895-08-02T09:19:41" +ik[12124] = 12 +il[12124] = 87 +im[12124] = 0.0702 +ij[12124] = 18 +id[12125] = "2895-10-11T19:01:15" +ik[12125] = 32.449 +il[12125] = -95 +im[12125] = 0.0751 +ij[12125] = 8 +id[12126] = "2895-12-05T01:42:08" +ik[12126] = -1.636 +il[12126] = -31 +im[12126] = 0.0739 +ij[12126] = 2 +id[12127] = "2895-12-13T17:54:23" +ik[12127] = 36.955 +il[12127] = 170 +im[12127] = 0.0399 +ij[12127] = 3 +id[12128] = "2896-02-09T09:04:52" +ik[12128] = 0 +il[12128] = 139 +im[12128] = 0.0049 +ij[12128] = 13 +id[12129] = "2896-02-21T20:11:33" +ik[12129] = 1.828 +il[12129] = 93 +im[12129] = 0.0441 +ij[12129] = 28.2 +id[12130] = "2896-03-21T13:17:52" +ik[12130] = 3.52 +il[12130] = 91 +im[12130] = 0.0477 +ij[12130] = 11 +id[12131] = "2896-05-02T08:07:28" +ik[12131] = 82.96 +il[12131] = -12 +im[12131] = 0.1002 +ij[12131] = 7.2116 +id[12132] = "2896-07-04T20:30:03" +ik[12132] = 26.343 +il[12132] = 57 +im[12132] = 0.088 +ij[12132] = 16 +id[12133] = "2896-07-06T11:57:15" +ik[12133] = 39.521 +il[12133] = -159 +im[12133] = 0.0557 +ij[12133] = 1 +id[12134] = "2896-07-07T00:40:12" +ik[12134] = 148.65 +il[12134] = 15 +im[12134] = 0.0436 +ij[12134] = 14 +id[12135] = "2896-07-12T23:44:49" +ik[12135] = -1.699 +il[12135] = 87 +im[12135] = 0.0884 +ij[12135] = 4 +id[12136] = "2896-09-20T17:19:28" +ik[12136] = 34.005 +il[12136] = 142 +im[12136] = 0.0373 +ij[12136] = 9 +id[12137] = "2896-10-15T19:39:07" +ik[12137] = 3.219 +il[12137] = -8 +im[12137] = 0.0233 +ij[12137] = 27.4 +id[12138] = "2896-11-19T20:46:31" +ik[12138] = 0 +il[12138] = -42 +im[12138] = 0.0583 +ij[12138] = 17 +id[12139] = "2896-12-17T11:08:52" +ik[12139] = 1.785 +il[12139] = 13 +im[12139] = 0.0436 +ij[12139] = 28.8 +id[12140] = "2897-01-14T00:49:43" +ik[12140] = 0.218 +il[12140] = 80 +im[12140] = 0.0257 +ij[12140] = 27.3 +id[12141] = "2897-01-14T14:56:15" +ik[12141] = 4.429 +il[12141] = -124 +im[12141] = 0.0332 +ij[12141] = 28.1 +id[12142] = "2897-02-11T09:33:10" +ik[12142] = 0.477 +il[12142] = -132 +im[12142] = 0.0171 +ij[12142] = 27.5 +id[12143] = "2897-03-14T05:48:27" +ik[12143] = -25.988 +il[12143] = -123 +im[12143] = 0.04 +ij[12143] = 15 +id[12144] = "2897-05-08T01:23:12" +ik[12144] = 0.14 +il[12144] = 126 +im[12144] = 0.0001 +ij[12144] = 12 +id[12145] = "2897-07-13T08:50:13" +ik[12145] = 12 +il[12145] = 103 +im[12145] = 0.058 +ij[12145] = 18 +id[12146] = "2897-11-18T12:10:35" +ik[12146] = 31.008 +il[12146] = -145 +im[12146] = 0.0713 +ij[12146] = 8 +id[12147] = "2897-11-28T17:43:52" +ik[12147] = 25.055 +il[12147] = -130 +im[12147] = 0.06 +ij[12147] = 16 +id[12148] = "2898-01-11T19:31:29" +ik[12148] = -1.579 +il[12148] = -91 +im[12148] = 0.0826 +ij[12148] = 2 +id[12149] = "2898-01-20T22:51:18" +ik[12149] = 36.159 +il[12149] = -53 +im[12149] = 0.0062 +ij[12149] = 3 +id[12150] = "2898-03-19T00:40:40" +ik[12150] = 0 +il[12150] = 107 +im[12150] = 0.0563 +ij[12150] = 13 +id[12151] = "2898-04-26T20:04:06" +ik[12151] = 1.38 +il[12151] = 179 +im[12151] = 0.0464 +ij[12151] = 11 +id[12152] = "2898-05-11T21:39:49" +ik[12152] = 3.086 +il[12152] = 70 +im[12152] = 0.0887 +ij[12152] = 28.1 +id[12153] = "2898-05-31T03:52:53" +ik[12153] = 1.044 +il[12153] = 164 +im[12153] = 0.2011 +ij[12153] = 28.2 +id[12154] = "2898-06-06T05:51:32" +ik[12154] = 79.22 +il[12154] = -179 +im[12154] = 0.0069 +ij[12154] = 7.1854 +id[12155] = "2898-08-05T09:53:16" +ik[12155] = 139.38 +il[12155] = -2 +im[12155] = 0.1134 +ij[12155] = 14 +id[12156] = "2898-08-19T10:43:30" +ik[12156] = -1.954 +il[12156] = 123 +im[12156] = 0.0855 +ij[12156] = 4 +id[12157] = "2898-08-20T08:13:20" +ik[12157] = 43.012 +il[12157] = 169 +im[12157] = 0.1003 +ij[12157] = 1 +id[12158] = "2898-09-21T21:04:41" +ik[12158] = 2.613 +il[12158] = -66 +im[12158] = 0.0946 +ij[12158] = 27.4 +id[12159] = "2898-10-29T22:20:10" +ik[12159] = 0 +il[12159] = -72 +im[12159] = 0.0649 +ij[12159] = 17 +id[12160] = "2898-11-25T06:11:55" +ik[12160] = 35.536 +il[12160] = 69 +im[12160] = 0.0171 +ij[12160] = 9 +id[12161] = "2898-12-02T08:16:20" +ik[12161] = 1.913 +il[12161] = 108 +im[12161] = 0.0824 +ij[12161] = 28.8 +id[12162] = "2898-12-23T22:51:24" +ik[12162] = 0.102 +il[12162] = 102 +im[12162] = 0.0082 +ij[12162] = 27.3 +id[12163] = "2899-01-21T16:49:46" +ik[12163] = 0.44 +il[12163] = 115 +im[12163] = 0.0025 +ij[12163] = 27.5 +id[12164] = "2899-02-22T10:17:18" +ik[12164] = -26.152 +il[12164] = 162 +im[12164] = 0.0359 +ij[12164] = 15 +id[12165] = "2899-03-21T02:54:20" +ik[12165] = 0.615 +il[12165] = 174 +im[12165] = 0.0044 +ij[12165] = 28.2 +id[12166] = "2899-04-01T20:29:04" +ik[12166] = 2.205 +il[12166] = 31 +im[12166] = 0.0223 +ij[12166] = 27.6 +id[12167] = "2899-04-01T21:40:02" +ik[12167] = 3.97 +il[12167] = 3 +im[12167] = 0.0217 +ij[12167] = 28.1 +id[12168] = "2899-04-12T05:50:26" +ik[12168] = 0.464 +il[12168] = -10 +im[12168] = 0.0645 +ij[12168] = 28.7 +id[12169] = "2899-06-24T21:49:27" +ik[12169] = 12 +il[12169] = 90 +im[12169] = 0.0457 +ij[12169] = 18 +id[12170] = "2899-07-03T09:28:33" +ik[12170] = 0.8 +il[12170] = 5 +im[12170] = 0.0438 +ij[12170] = 12 +id[12171] = "2899-09-07T07:49:55" +ik[12171] = 1.264 +il[12171] = 135 +im[12171] = 0.0291 +ij[12171] = 28.1 +id[12172] = "2899-10-06T03:11:29" +ik[12172] = 0.052 +il[12172] = 123 +im[12172] = 0.0276 +ij[12172] = 28.5 +id[12173] = "2899-10-14T01:48:48" +ik[12173] = 1.125 +il[12173] = -139 +im[12173] = 0.0599 +ij[12173] = 28.2 +id[12174] = "2899-11-08T16:51:40" +ik[12174] = 25.411 +il[12174] = -118 +im[12174] = 0.041 +ij[12174] = 16 +id[12175] = "2899-11-21T03:15:13" +ik[12175] = 0.167 +il[12175] = -154 +im[12175] = 0.0109 +ij[12175] = 28.2 +id[12176] = "2899-12-22T11:04:21" +ik[12176] = 30.612 +il[12176] = 31 +im[12176] = 0.0495 +ij[12176] = 8 +id[12177] = "2900-03-05T10:13:17" +ik[12177] = 37.3 +il[12177] = 21 +im[12177] = 0.1207 +ij[12177] = 3 +id[12178] = "2900-03-05T23:07:31" +ik[12178] = -1.645 +il[12178] = -167 +im[12178] = 0.1251 +ij[12178] = 2 +id[12179] = "2900-03-09T19:32:16" +ik[12179] = 5.173 +il[12179] = -77 +im[12179] = 0.1128 +ij[12179] = 27.4 +id[12180] = "2900-04-03T21:43:29" +ik[12180] = 4.882 +il[12180] = 129 +im[12180] = 0.1673 +ij[12180] = 27.1 +id[12181] = "2900-05-08T09:53:45" +ik[12181] = 0 +il[12181] = -87 +im[12181] = 0.0483 +ij[12181] = 13 +id[12182] = "2900-06-11T02:35:13" +ik[12182] = 2.11 +il[12182] = -41 +im[12182] = 0.2811 +ij[12182] = 11 +id[12183] = "2900-07-19T08:56:20" +ik[12183] = 71.96 +il[12183] = 43 +im[12183] = 0.2388 +ij[12183] = 7.1292 +id[12184] = "2900-07-22T14:21:32" +ik[12184] = 0.793 +il[12184] = -7 +im[12184] = 0.265 +ij[12184] = 27.4 +id[12185] = "2900-09-07T16:21:11" +ik[12185] = 122.27 +il[12185] = 64 +im[12185] = 0.0204 +ij[12185] = 14 +id[12186] = "2900-09-19T01:16:24" +ik[12186] = -2.277 +il[12186] = 42 +im[12186] = 0.1416 +ij[12186] = 4 +id[12187] = "2900-10-02T17:27:46" +ik[12187] = 0 +il[12187] = -66 +im[12187] = 0.1153 +ij[12187] = 17 +id[12188] = "2900-10-07T05:20:15" +ik[12188] = 46.239 +il[12188] = 160 +im[12188] = 0.0188 +ij[12188] = 1 +id[12189] = "2900-11-12T14:08:56" +ik[12189] = 2.283 +il[12189] = 26 +im[12189] = 0.1296 +ij[12189] = 28.8 +id[12190] = "2900-11-29T02:25:03" +ik[12190] = 0.225 +il[12190] = 4 +im[12190] = 0.0896 +ij[12190] = 27.3 +id[12191] = "2900-12-29T05:32:20" +ik[12191] = 0.476 +il[12191] = -108 +im[12191] = 0.0635 +ij[12191] = 27.5 +id[12192] = "2901-02-01T01:00:07" +ik[12192] = -26.326 +il[12192] = -72 +im[12192] = 0.0228 +ij[12192] = 15 +id[12193] = "2901-02-03T13:07:55" +ik[12193] = 34.6 +il[12193] = 130 +im[12193] = 0.0597 +ij[12193] = 9 +id[12194] = "2901-03-09T03:14:58" +ik[12194] = 1.372 +il[12194] = -120 +im[12194] = 0.0727 +ij[12194] = 28.2 +id[12195] = "2901-03-11T17:49:33" +ik[12195] = 1.921 +il[12195] = 46 +im[12195] = 0.0525 +ij[12195] = 27.6 +id[12196] = "2901-04-05T06:31:00" +ik[12196] = 0.762 +il[12196] = 91 +im[12196] = 0.0651 +ij[12196] = 28.7 +id[12197] = "2901-05-15T15:58:28" +ik[12197] = 3.866 +il[12197] = -20 +im[12197] = 0.0491 +ij[12197] = 27.2 +id[12198] = "2901-06-06T10:06:28" +ik[12198] = 12 +il[12198] = -87 +im[12198] = 0.0385 +ij[12198] = 18 +id[12199] = "2901-06-08T06:01:43" +ik[12199] = 0.875 +il[12199] = -9 +im[12199] = 0.017 +ij[12199] = 28.1 +id[12200] = "2901-08-15T02:46:46" +ik[12200] = 1.13 +il[12200] = -29 +im[12200] = 0.0554 +ij[12200] = 12 +id[12201] = "2901-10-21T11:55:30" +ik[12201] = 25.63 +il[12201] = -27 +im[12201] = 0.0454 +ij[12201] = 16 +id[12202] = "2901-10-30T16:54:29" +ik[12202] = 0.702 +il[12202] = -13 +im[12202] = 0.0074 +ij[12202] = 28.2 +id[12203] = "2902-01-09T11:44:09" +ik[12203] = 0.205 +il[12203] = 22 +im[12203] = 0.0326 +ij[12203] = 28.5 +id[12204] = "2902-01-25T21:34:08" +ik[12204] = 31.226 +il[12204] = 31 +im[12204] = 0.0096 +ij[12204] = 8 +id[12205] = "2902-02-04T09:25:14" +ik[12205] = 4.722 +il[12205] = -57 +im[12205] = 0.0704 +ij[12205] = 27.4 +id[12206] = "2902-02-20T09:51:02" +ik[12206] = 5.115 +il[12206] = 89 +im[12206] = 0.0518 +ij[12206] = 27.1 +id[12207] = "2902-03-13T18:39:45" +ik[12207] = 23 +il[12207] = 159 +im[12207] = 0.0837 +ij[12207] = 17 +id[12208] = "2902-05-03T00:23:19" +ik[12208] = 41.149 +il[12208] = -172 +im[12208] = 0.0725 +ij[12208] = 3 +id[12209] = "2902-05-09T00:34:33" +ik[12209] = 1.774 +il[12209] = -118 +im[12209] = 0.1183 +ij[12209] = 28.8 +id[12210] = "2902-05-26T07:20:52" +ik[12210] = -1.98 +il[12210] = -56 +im[12210] = 0.1706 +ij[12210] = 2 +id[12211] = "2902-06-04T17:03:37" +ik[12211] = 1.277 +il[12211] = -113 +im[12211] = 0.0978 +ij[12211] = 27.3 +id[12212] = "2902-07-14T21:44:54" +ik[12212] = 2.46 +il[12212] = -161 +im[12212] = 0.0459 +ij[12212] = 28.2 +id[12213] = "2902-07-18T16:21:40" +ik[12213] = 0 +il[12213] = -44 +im[12213] = 0.2262 +ij[12213] = 13 +id[12214] = "2902-08-17T14:37:00" +ik[12214] = 6.56 +il[12214] = -111 +im[12214] = 0.3743 +ij[12214] = 11 +id[12215] = "2902-09-19T15:24:16" +ik[12215] = 62.96 +il[12215] = 36 +im[12215] = 0.0527 +ij[12215] = 7.1012 +id[12216] = "2902-10-02T19:25:11" +ik[12216] = 3.424 +il[12216] = 106 +im[12216] = 0.1126 +ij[12216] = 27.3 +id[12217] = "2902-10-30T19:02:00" +ik[12217] = 104.11 +il[12217] = 26 +im[12217] = 0.0926 +ij[12217] = 14 +id[12218] = "2902-11-09T17:21:46" +ik[12218] = -2.305 +il[12218] = 149 +im[12218] = 0.1865 +ij[12218] = 4 +id[12219] = "2902-11-22T17:19:58" +ik[12219] = 1.137 +il[12219] = -84 +im[12219] = 0.1933 +ij[12219] = 27.5 +id[12220] = "2902-12-06T17:22:16" +ik[12220] = 44.048 +il[12220] = 51 +im[12220] = 0.1525 +ij[12220] = 1 +id[12221] = "2903-01-05T10:27:53" +ik[12221] = -26.471 +il[12221] = 81 +im[12221] = 0.1179 +ij[12221] = 15 +id[12222] = "2903-02-14T18:53:32" +ik[12222] = 1.532 +il[12222] = -21 +im[12222] = 0.0962 +ij[12222] = 27.6 +id[12223] = "2903-03-27T16:11:35" +ik[12223] = 1.132 +il[12223] = 46 +im[12223] = 0.0434 +ij[12223] = 28.7 +id[12224] = "2903-03-28T06:07:28" +ik[12224] = 32.735 +il[12224] = -157 +im[12224] = 0.0514 +ij[12224] = 9 +id[12225] = "2903-04-24T17:48:01" +ik[12225] = 3.544 +il[12225] = -68 +im[12225] = 0.0317 +ij[12225] = 27.2 +id[12226] = "2903-05-18T04:14:05" +ik[12226] = 12 +il[12226] = -1 +im[12226] = 0.0437 +ij[12226] = 18 +id[12227] = "2903-06-30T05:47:06" +ik[12227] = 0.911 +il[12227] = 22 +im[12227] = 0.0362 +ij[12227] = 28.6 +id[12228] = "2903-09-21T05:33:53" +ik[12228] = 0.97 +il[12228] = 100 +im[12228] = 0.0554 +ij[12228] = 12 +id[12229] = "2903-10-03T23:40:19" +ik[12229] = 25.794 +il[12229] = 157 +im[12229] = 0.0528 +ij[12229] = 16 +id[12230] = "2904-01-13T01:35:49" +ik[12230] = 4.408 +il[12230] = 34 +im[12230] = 0.0696 +ij[12230] = 27.4 +id[12231] = "2904-01-27T18:47:04" +ik[12231] = 5.403 +il[12231] = -88 +im[12231] = 0.0655 +ij[12231] = 27.1 +id[12232] = "2904-02-16T11:54:16" +ik[12232] = 0 +il[12232] = -155 +im[12232] = 0.0374 +ij[12232] = 17 +id[12233] = "2904-03-06T14:12:21" +ik[12233] = 32.929 +il[12233] = -9 +im[12233] = 0.052 +ij[12233] = 8 +id[12234] = "2904-03-29T20:32:21" +ik[12234] = 0.224 +il[12234] = 116 +im[12234] = 0.0422 +ij[12234] = 28.5 +id[12235] = "2904-04-08T10:28:15" +ik[12235] = 1.239 +il[12235] = -2 +im[12235] = 0.0968 +ij[12235] = 28.8 +id[12236] = "2904-04-20T03:03:49" +ik[12236] = 0.077 +il[12236] = -141 +im[12236] = 0.0772 +ij[12236] = 27.3 +id[12237] = "2904-05-22T03:14:32" +ik[12237] = 1.412 +il[12237] = 161 +im[12237] = 0.1192 +ij[12237] = 27.5 +id[12238] = "2904-06-19T14:17:40" +ik[12238] = -24.176 +il[12238] = -93 +im[12238] = 0.1455 +ij[12238] = 15 +id[12239] = "2904-07-12T07:04:13" +ik[12239] = 46.842 +il[12239] = -127 +im[12239] = 0.0493 +ij[12239] = 3 +id[12240] = "2904-08-11T12:01:47" +ik[12240] = -2.397 +il[12240] = 92 +im[12240] = 0.1319 +ij[12240] = 2 +id[12241] = "2904-08-16T06:06:44" +ik[12241] = 5.535 +il[12241] = -133 +im[12241] = 0.2268 +ij[12241] = 27.6 +id[12242] = "2904-09-29T19:02:31" +ik[12242] = 0 +il[12242] = 109 +im[12242] = 0.2359 +ij[12242] = 13 +id[12243] = "2904-11-03T18:30:47" +ik[12243] = 1.4 +il[12243] = 86 +im[12243] = 0.3057 +ij[12243] = 11 +id[12244] = "2904-12-02T12:47:47" +ik[12244] = 1.463 +il[12244] = -81 +im[12244] = 0.282 +ij[12244] = 28.2 +id[12245] = "2904-12-03T21:15:14" +ik[12245] = 65.09 +il[12245] = 166 +im[12245] = 0.2769 +ij[12245] = 7.1245 +id[12246] = "2904-12-19T08:35:16" +ik[12246] = 1.308 +il[12246] = 143 +im[12246] = 0.1972 +ij[12246] = 27.6 +id[12247] = "2905-01-20T21:14:00" +ik[12247] = 113.09 +il[12247] = -98 +im[12247] = 0.0076 +ij[12247] = 14 +id[12248] = "2905-01-26T06:07:07" +ik[12248] = -1.866 +il[12248] = 179 +im[12248] = 0.1483 +ij[12248] = 4 +id[12249] = "2905-02-11T22:41:13" +ik[12249] = 39.435 +il[12249] = 89 +im[12249] = 0.1236 +ij[12249] = 1 +id[12250] = "2905-03-13T05:22:05" +ik[12250] = 1.691 +il[12250] = -96 +im[12250] = 0.0927 +ij[12250] = 28.7 +id[12251] = "2905-03-29T08:01:38" +ik[12251] = 3.012 +il[12251] = 16 +im[12251] = 0.0767 +ij[12251] = 27.2 +id[12252] = "2905-04-25T14:42:22" +ik[12252] = 12 +il[12252] = 173 +im[12252] = 0.0783 +ij[12252] = 18 +id[12253] = "2905-05-07T11:32:47" +ik[12253] = 31.568 +il[12253] = -28 +im[12253] = 0.0713 +ij[12253] = 9 +id[12254] = "2905-07-17T08:07:43" +ik[12254] = 0.067 +il[12254] = -25 +im[12254] = 0.0612 +ij[12254] = 28.6 +id[12255] = "2905-08-04T01:37:33" +ik[12255] = 1.128 +il[12255] = -119 +im[12255] = 0.0493 +ij[12255] = 28.1 +id[12256] = "2905-08-07T14:44:10" +ik[12256] = 0.637 +il[12256] = 78 +im[12256] = 0.0152 +ij[12256] = 28.2 +id[12257] = "2905-09-15T13:01:05" +ik[12257] = 25.934 +il[12257] = 123 +im[12257] = 0.055 +ij[12257] = 16 +id[12258] = "2905-10-26T21:36:34" +ik[12258] = 0.44 +il[12258] = 49 +im[12258] = 0.0561 +ij[12258] = 12 +id[12259] = "2905-12-29T08:02:17" +ik[12259] = 5.874 +il[12259] = -18 +im[12259] = 0.021 +ij[12259] = 27.4 +id[12260] = "2906-01-02T17:16:12" +ik[12260] = 1.803 +il[12260] = -118 +im[12260] = 0.0323 +ij[12260] = 28.1 +id[12261] = "2906-01-06T14:18:44" +ik[12261] = 5.637 +il[12261] = -36 +im[12261] = 0.0595 +ij[12261] = 27.1 +id[12262] = "2906-01-26T00:28:32" +ik[12262] = 0 +il[12262] = -4 +im[12262] = 0.0382 +ij[12262] = 17 +id[12263] = "2906-03-21T23:29:54" +ik[12263] = 1.099 +il[12263] = -179 +im[12263] = 0.0742 +ij[12263] = 28.8 +id[12264] = "2906-03-26T14:14:33" +ik[12264] = 0.249 +il[12264] = 4 +im[12264] = 0.0262 +ij[12264] = 27.3 +id[12265] = "2906-03-30T02:34:40" +ik[12265] = 1.975 +il[12265] = -148 +im[12265] = 0.0324 +ij[12265] = 28.2 +id[12266] = "2906-04-25T06:44:13" +ik[12266] = 0.893 +il[12266] = 39 +im[12266] = 0.0187 +ij[12266] = 27.5 +id[12267] = "2906-05-03T23:15:01" +ik[12267] = 35.503 +il[12267] = -125 +im[12267] = 0.0768 +ij[12267] = 8 +id[12268] = "2906-05-24T12:25:34" +ik[12268] = -25.121 +il[12268] = -126 +im[12268] = 0.0155 +ij[12268] = 15 +id[12269] = "2906-05-27T22:41:00" +ik[12269] = 0.157 +il[12269] = 114 +im[12269] = 0.0544 +ij[12269] = 28.5 +id[12270] = "2906-07-06T11:23:10" +ik[12270] = 3.771 +il[12270] = -53 +im[12270] = 0.0077 +ij[12270] = 27.6 +id[12271] = "2906-08-29T20:53:13" +ik[12271] = 45.845 +il[12271] = -22 +im[12271] = 0.0938 +ij[12271] = 3 +id[12272] = "2906-08-30T07:18:35" +ik[12272] = 1.048 +il[12272] = -175 +im[12272] = 0.0849 +ij[12272] = 28.7 +id[12273] = "2906-09-14T09:51:04" +ik[12273] = 5.558 +il[12273] = -64 +im[12273] = 0.0752 +ij[12273] = 27.2 +id[12274] = "2906-09-21T12:22:15" +ik[12274] = -2.181 +il[12274] = -32 +im[12274] = 0.1344 +ij[12274] = 2 +id[12275] = "2906-10-08T18:57:20" +ik[12275] = 11 +il[12275] = 38 +im[12275] = 0.1646 +ij[12275] = 18 +id[12276] = "2906-11-19T21:14:30" +ik[12276] = 0 +il[12276] = 55 +im[12276] = 0.2317 +ij[12276] = 13 +id[12277] = "2906-12-12T22:36:37" +ik[12277] = 12 +il[12277] = -101 +im[12277] = 0.2221 +ij[12277] = 17 +id[12278] = "2906-12-27T13:31:14" +ik[12278] = 3 +il[12278] = 157 +im[12278] = 0.2416 +ij[12278] = 11 +id[12279] = "2907-02-01T02:29:26" +ik[12279] = 4.799 +il[12279] = 112 +im[12279] = 0.0255 +ij[12279] = 27.2 +id[12280] = "2907-02-01T21:18:06" +ik[12280] = 74 +il[12280] = -163 +im[12280] = 0.0535 +ij[12280] = 7.149 +id[12281] = "2907-03-26T00:11:49" +ik[12281] = 12 +il[12281] = -75 +im[12281] = 0.0653 +ij[12281] = 18 +id[12282] = "2907-03-27T18:27:36" +ik[12282] = -1.617 +il[12282] = 28 +im[12282] = 0.0229 +ij[12282] = 4 +id[12283] = "2907-04-03T04:23:13" +ik[12283] = 37.309 +il[12283] = -61 +im[12283] = 0.1101 +ij[12283] = 1 +id[12284] = "2907-04-04T03:56:55" +ik[12284] = 135.28 +il[12284] = -45 +im[12284] = 0.1129 +ij[12284] = 14 +id[12285] = "2907-06-13T13:39:27" +ik[12285] = 31.293 +il[12285] = 117 +im[12285] = 0.0687 +ij[12285] = 9 +id[12286] = "2907-07-20T08:37:29" +ik[12286] = 0.311 +il[12286] = -179 +im[12286] = 0.0083 +ij[12286] = 28.2 +id[12287] = "2907-08-05T17:35:21" +ik[12287] = 0.883 +il[12287] = -153 +im[12287] = 0.0208 +ij[12287] = 28.6 +id[12288] = "2907-08-28T15:24:00" +ik[12288] = 26.068 +il[12288] = 101 +im[12288] = 0.0486 +ij[12288] = 16 +id[12289] = "2907-12-07T06:04:07" +ik[12289] = 0.34 +il[12289] = 157 +im[12289] = 0.0401 +ij[12289] = 12 +id[12290] = "2908-01-07T00:48:07" +ik[12290] = 0 +il[12290] = -5 +im[12290] = 0.0226 +ij[12290] = 17 +id[12291] = "2908-03-04T13:45:04" +ik[12291] = 0.289 +il[12291] = -13 +im[12291] = 0.0324 +ij[12291] = 27.3 +id[12292] = "2908-03-06T08:54:35" +ik[12292] = 0.987 +il[12292] = 77 +im[12292] = 0.0115 +ij[12292] = 28.8 +id[12293] = "2908-03-21T06:55:06" +ik[12293] = 0.609 +il[12293] = -100 +im[12293] = 0.0072 +ij[12293] = 28.2 +id[12294] = "2908-03-25T21:55:25" +ik[12294] = 1.199 +il[12294] = 79 +im[12294] = 0.0565 +ij[12294] = 28.1 +id[12295] = "2908-04-02T11:23:48" +ik[12295] = 0.688 +il[12295] = -54 +im[12295] = 0.0376 +ij[12295] = 27.5 +id[12296] = "2908-05-02T02:43:24" +ik[12296] = -25.507 +il[12296] = 6 +im[12296] = 0.0341 +ij[12296] = 15 +id[12297] = "2908-06-11T11:47:53" +ik[12297] = 3.171 +il[12297] = -96 +im[12297] = 0.0655 +ij[12297] = 27.6 +id[12298] = "2908-07-23T09:38:38" +ik[12298] = 0.118 +il[12298] = -13 +im[12298] = 0.089 +ij[12298] = 28.5 +id[12299] = "2908-07-24T04:46:07" +ik[12299] = 35.828 +il[12299] = 69 +im[12299] = 0.0866 +ij[12299] = 8 +id[12300] = "2908-08-14T02:53:04" +ik[12300] = 5.021 +il[12300] = -58 +im[12300] = 0.024 +ij[12300] = 27.2 +id[12301] = "2908-08-14T11:04:34" +ik[12301] = 0.382 +il[12301] = -177 +im[12301] = 0.03 +ij[12301] = 28.7 +id[12302] = "2908-09-02T06:30:04" +ik[12302] = 11 +il[12302] = 76 +im[12302] = 0.0829 +ij[12302] = 18 +id[12303] = "2908-10-16T03:24:11" +ik[12303] = 41.181 +il[12303] = -170 +im[12303] = 0.117 +ij[12303] = 3 +id[12304] = "2908-10-21T21:02:16" +ik[12304] = -1.885 +il[12304] = -19 +im[12304] = 0.0654 +ij[12304] = 2 +id[12305] = "2908-12-26T03:57:23" +ik[12305] = 0 +il[12305] = 150 +im[12305] = 0.187 +ij[12305] = 13 +id[12306] = "2909-01-02T01:04:33" +ik[12306] = 0.93 +il[12306] = -100 +im[12306] = 0.0309 +ij[12306] = 28.2 +id[12307] = "2909-02-03T22:25:27" +ik[12307] = 4.35 +il[12307] = -123 +im[12307] = 0.2335 +ij[12307] = 11 +id[12308] = "2909-02-26T01:45:07" +ik[12308] = 6.063 +il[12308] = -159 +im[12308] = 0.1031 +ij[12308] = 28.1 +id[12309] = "2909-03-16T04:01:00" +ik[12309] = 80 +il[12309] = -33 +im[12309] = 0.1666 +ij[12309] = 7.183 +id[12310] = "2909-05-13T14:43:09" +ik[12310] = 37.131 +il[12310] = 2 +im[12310] = 0.0854 +ij[12310] = 1 +id[12311] = "2909-05-14T01:30:44" +ik[12311] = -1.554 +il[12311] = -155 +im[12311] = 0.0788 +ij[12311] = 4 +id[12312] = "2909-05-22T10:23:53" +ik[12312] = 147.27 +il[12312] = 152 +im[12312] = 0.084 +ij[12312] = 14 +id[12313] = "2909-07-20T09:51:00" +ik[12313] = 31.855 +il[12313] = 7 +im[12313] = 0.0744 +ij[12313] = 9 +id[12314] = "2909-08-08T12:21:49" +ik[12314] = 26.204 +il[12314] = 154 +im[12314] = 0.0455 +ij[12314] = 16 +id[12315] = "2909-08-24T22:01:59" +ik[12315] = 1.803 +il[12315] = 168 +im[12315] = 0.0164 +ij[12315] = 28.6 +id[12316] = "2909-09-30T02:52:37" +ik[12316] = 5.46 +il[12316] = 87 +im[12316] = 0.0655 +ij[12316] = 28.1 +id[12317] = "2909-11-14T16:31:10" +ik[12317] = 3.68 +il[12317] = -34 +im[12317] = 0.057 +ij[12317] = 27.4 +id[12318] = "2909-12-18T10:21:55" +ik[12318] = 0 +il[12318] = 33 +im[12318] = 0.0099 +ij[12318] = 17 +id[12319] = "2910-01-29T15:45:28" +ik[12319] = 1.03 +il[12319] = 21 +im[12319] = 0.0345 +ij[12319] = 12 +id[12320] = "2910-04-12T05:45:14" +ik[12320] = -25.743 +il[12320] = -46 +im[12320] = 0.0262 +ij[12320] = 15 +id[12321] = "2910-05-21T12:36:41" +ik[12321] = 2.818 +il[12321] = -115 +im[12321] = 0.0664 +ij[12321] = 27.6 +id[12322] = "2910-06-14T10:19:42" +ik[12322] = 3.693 +il[12322] = 154 +im[12322] = 0.0372 +ij[12322] = 28.1 +id[12323] = "2910-07-23T00:11:43" +ik[12323] = 4.682 +il[12323] = -36 +im[12323] = 0.0287 +ij[12323] = 27.2 +id[12324] = "2910-08-05T14:48:09" +ik[12324] = 0.025 +il[12324] = -122 +im[12324] = 0.0428 +ij[12324] = 28.7 +id[12325] = "2910-08-11T05:16:16" +ik[12325] = 12 +il[12325] = 76 +im[12325] = 0.0372 +ij[12325] = 18 +id[12326] = "2910-09-24T17:24:47" +ik[12326] = 33.309 +il[12326] = -33 +im[12326] = 0.0695 +ij[12326] = 8 +id[12327] = "2910-10-06T06:29:15" +ik[12327] = 0.224 +il[12327] = -118 +im[12327] = 0.0165 +ij[12327] = 28.5 +id[12328] = "2910-11-22T19:38:44" +ik[12328] = -1.686 +il[12328] = 145 +im[12328] = 0.1082 +ij[12328] = 2 +id[12329] = "2910-11-29T04:06:14" +ik[12329] = 37.764 +il[12329] = 80 +im[12329] = 0.0522 +ij[12329] = 3 +id[12330] = "2911-01-28T10:24:21" +ik[12330] = 0 +il[12330] = -152 +im[12330] = 0.0863 +ij[12330] = 13 +id[12331] = "2911-03-10T08:27:14" +ik[12331] = 3.99 +il[12331] = -110 +im[12331] = 0.1676 +ij[12331] = 11 +id[12332] = "2911-03-29T17:10:40" +ik[12332] = 2.588 +il[12332] = 96 +im[12332] = 0.1543 +ij[12332] = 28.5 +id[12333] = "2911-04-09T19:26:09" +ik[12333] = 1.598 +il[12333] = 157 +im[12333] = 0.1998 +ij[12333] = 28.2 +id[12334] = "2911-04-21T09:26:57" +ik[12334] = 82.96 +il[12334] = 58 +im[12334] = 0.1501 +ij[12334] = 7.2094 +id[12335] = "2911-06-22T01:28:09" +ik[12335] = 0.195 +il[12335] = 52 +im[12335] = 0.0526 +ij[12335] = 28.5 +id[12336] = "2911-06-22T09:16:07" +ik[12336] = 38.541 +il[12336] = -62 +im[12336] = 0.0455 +ij[12336] = 1 +id[12337] = "2911-06-27T01:32:47" +ik[12337] = 149.63 +il[12337] = 99 +im[12337] = 0.0607 +ij[12337] = 14 +id[12338] = "2911-06-27T22:22:18" +ik[12338] = -1.633 +il[12338] = 155 +im[12338] = 0.0761 +ij[12338] = 4 +id[12339] = "2911-07-17T07:28:47" +ik[12339] = 26.332 +il[12339] = -154 +im[12339] = 0.0859 +ij[12339] = 16 +id[12340] = "2911-09-02T07:12:20" +ik[12340] = 33.267 +il[12340] = -53 +im[12340] = 0.0401 +ij[12340] = 9 +id[12341] = "2911-09-13T21:15:34" +ik[12341] = 2.54 +il[12341] = -151 +im[12341] = 0.0614 +ij[12341] = 28.6 +id[12342] = "2911-10-26T00:43:48" +ik[12342] = 3.374 +il[12342] = -153 +im[12342] = 0.0694 +ij[12342] = 27.4 +id[12343] = "2911-11-09T01:33:09" +ik[12343] = 6.366 +il[12343] = -28 +im[12343] = 0.066 +ij[12343] = 27.1 +id[12344] = "2911-11-29T12:59:04" +ik[12344] = 0 +il[12344] = 1 +im[12344] = 0.0047 +ij[12344] = 17 +id[12345] = "2911-12-16T19:54:26" +ik[12345] = 4.019 +il[12345] = 68 +im[12345] = 0.0326 +ij[12345] = 28.1 +id[12346] = "2911-12-22T12:14:34" +ik[12346] = 0.761 +il[12346] = -123 +im[12346] = 0.0643 +ij[12346] = 28.2 +id[12347] = "2912-01-23T22:34:18" +ik[12347] = 0.245 +il[12347] = 43 +im[12347] = 0.0366 +ij[12347] = 27.3 +id[12348] = "2912-03-22T20:47:11" +ik[12348] = -25.924 +il[12348] = -50 +im[12348] = 0.0237 +ij[12348] = 15 +id[12349] = "2912-04-11T13:42:48" +ik[12349] = 0.61 +il[12349] = -112 +im[12349] = 0.0342 +ij[12349] = 12 +id[12350] = "2912-07-02T00:05:11" +ik[12350] = 4.428 +il[12350] = -32 +im[12350] = 0.0358 +ij[12350] = 27.2 +id[12351] = "2912-07-20T17:27:03" +ik[12351] = 0.921 +il[12351] = -110 +im[12351] = 0.0282 +ij[12351] = 28.2 +id[12352] = "2912-07-21T17:00:35" +ik[12352] = 12 +il[12352] = -94 +im[12352] = 0.0389 +ij[12352] = 18 +id[12353] = "2912-07-28T22:06:49" +ik[12353] = 0.197 +il[12353] = -101 +im[12353] = 0.0545 +ij[12353] = 28.7 +id[12354] = "2912-10-01T02:26:35" +ik[12354] = 1.466 +il[12354] = 96 +im[12354] = 0.0355 +ij[12354] = 28.2 +id[12355] = "2912-11-05T09:12:47" +ik[12355] = 31.443 +il[12355] = -24 +im[12355] = 0.0698 +ij[12355] = 8 +id[12356] = "2912-12-27T16:24:59" +ik[12356] = -1.589 +il[12356] = 14 +im[12356] = 0.0892 +ij[12356] = 2 +id[12357] = "2913-01-06T14:39:07" +ik[12357] = 36.255 +il[12357] = 136 +im[12357] = 0.0092 +ij[12357] = 3 +id[12358] = "2913-02-04T19:01:42" +ik[12358] = 1.175 +il[12358] = -8 +im[12358] = 0.0219 +ij[12358] = 28.5 +id[12359] = "2913-02-25T06:01:54" +ik[12359] = 1.504 +il[12359] = 23 +im[12359] = 0.1689 +ij[12359] = 28.5 +id[12360] = "2913-03-04T01:33:15" +ik[12360] = 0 +il[12360] = 156 +im[12360] = 0.0155 +ij[12360] = 13 +id[12361] = "2913-04-13T03:06:22" +ik[12361] = 2.38 +il[12361] = 134 +im[12361] = 0.0443 +ij[12361] = 11 +id[12362] = "2913-05-03T02:19:08" +ik[12362] = 0.517 +il[12362] = 119 +im[12362] = 0.2164 +ij[12362] = 28.1 +id[12363] = "2913-05-24T03:39:59" +ik[12363] = 81.09 +il[12363] = -58 +im[12363] = 0.0512 +ij[12363] = 7.2011 +id[12364] = "2913-06-19T07:13:49" +ik[12364] = 26.019 +il[12364] = 143 +im[12364] = 0.0184 +ij[12364] = 16 +id[12365] = "2913-07-25T23:59:51" +ik[12365] = 143.94 +il[12365] = -112 +im[12365] = 0.1127 +ij[12365] = 14 +id[12366] = "2913-08-03T07:02:12" +ik[12366] = 41.504 +il[12366] = -137 +im[12366] = 0.0745 +ij[12366] = 1 +id[12367] = "2913-08-07T11:47:39" +ik[12367] = -1.841 +il[12367] = -168 +im[12367] = 0.1195 +ij[12367] = 4 +id[12368] = "2913-10-01T02:01:07" +ik[12368] = 2.941 +il[12368] = 151 +im[12368] = 0.0811 +ij[12368] = 28.6 +id[12369] = "2913-10-01T02:34:19" +ik[12369] = 1.761 +il[12369] = 143 +im[12369] = 0.0813 +ij[12369] = 28.5 +id[12370] = "2913-10-03T00:41:30" +ik[12370] = 2.902 +il[12370] = -179 +im[12370] = 0.0949 +ij[12370] = 27.4 +id[12371] = "2913-10-29T10:24:20" +ik[12371] = 35.116 +il[12371] = -57 +im[12371] = 0.0689 +ij[12371] = 9 +id[12372] = "2913-11-08T11:29:21" +ik[12372] = 0 +il[12372] = 25 +im[12372] = 0.0214 +ij[12372] = 17 +id[12373] = "2913-11-29T20:06:15" +ik[12373] = 1.044 +il[12373] = 106 +im[12373] = 0.0807 +ij[12373] = 28.2 +id[12374] = "2914-01-02T11:16:02" +ik[12374] = 0.161 +il[12374] = -150 +im[12374] = 0.0575 +ij[12374] = 27.3 +id[12375] = "2914-01-10T17:47:35" +ik[12375] = 0.447 +il[12375] = -167 +im[12375] = 0.0585 +ij[12375] = 28.2 +id[12376] = "2914-01-22T22:14:05" +ik[12376] = 0.587 +il[12376] = -113 +im[12376] = 0.0349 +ij[12376] = 28.8 +id[12377] = "2914-01-31T00:53:14" +ik[12377] = 0.448 +il[12377] = -73 +im[12377] = 0.0584 +ij[12377] = 27.5 +id[12378] = "2914-03-02T11:19:28" +ik[12378] = 5.013 +il[12378] = 71 +im[12378] = 0.0405 +ij[12378] = 28.1 +id[12379] = "2914-03-03T07:50:10" +ik[12379] = -26.089 +il[12379] = 128 +im[12379] = 0.0296 +ij[12379] = 15 +id[12380] = "2914-06-14T15:20:35" +ik[12380] = 0.5 +il[12380] = -58 +im[12380] = 0.0046 +ij[12380] = 12 +id[12381] = "2914-07-03T03:00:39" +ik[12381] = 12 +il[12381] = 119 +im[12381] = 0.0487 +ij[12381] = 18 +id[12382] = "2914-08-31T13:04:08" +ik[12382] = 0.907 +il[12382] = -165 +im[12382] = 0.0596 +ij[12382] = 28.2 +id[12383] = "2914-11-17T05:57:34" +ik[12383] = 25.297 +il[12383] = -28 +im[12383] = 0.0291 +ij[12383] = 16 +id[12384] = "2914-12-10T11:31:00" +ik[12384] = 30.647 +il[12384] = 113 +im[12384] = 0.0723 +ij[12384] = 8 +id[12385] = "2915-02-11T14:51:40" +ik[12385] = -1.599 +il[12385] = -50 +im[12385] = 0.0346 +ij[12385] = 2 +id[12386] = "2915-02-16T11:07:09" +ik[12386] = 36.593 +il[12386] = 52 +im[12386] = 0.0738 +ij[12386] = 3 +id[12387] = "2915-04-17T00:00:19" +ik[12387] = 0 +il[12387] = 66 +im[12387] = 0.1998 +ij[12387] = 13 +id[12388] = "2915-04-22T05:29:09" +ik[12388] = 5.485 +il[12388] = 32 +im[12388] = 0.0733 +ij[12388] = 27.4 +id[12389] = "2915-04-24T23:38:29" +ik[12389] = 1.197 +il[12389] = 147 +im[12389] = 0.0716 +ij[12389] = 28.2 +id[12390] = "2915-05-23T18:20:09" +ik[12390] = 0.35 +il[12390] = 124 +im[12390] = 0.1879 +ij[12390] = 11 +id[12391] = "2915-07-01T23:02:55" +ik[12391] = 75.96 +il[12391] = -136 +im[12391] = 0.1152 +ij[12391] = 7.1517 +id[12392] = "2915-08-25T13:40:42" +ik[12392] = 130.57 +il[12392] = 179 +im[12392] = 0.0357 +ij[12392] = 14 +id[12393] = "2915-09-01T18:19:32" +ik[12393] = 1.846 +il[12393] = 178 +im[12393] = 0.1508 +ij[12393] = 27.4 +id[12394] = "2915-09-07T14:21:27" +ik[12394] = -2.152 +il[12394] = -66 +im[12394] = 0.0104 +ij[12394] = 4 +id[12395] = "2915-09-19T09:10:04" +ik[12395] = 45.297 +il[12395] = 128 +im[12395] = 0.0753 +ij[12395] = 1 +id[12396] = "2915-10-15T00:13:59" +ik[12396] = 2.941 +il[12396] = 153 +im[12396] = 0.1167 +ij[12396] = 28.6 +id[12397] = "2915-10-15T22:22:13" +ik[12397] = 0 +il[12397] = -179 +im[12397] = 0.1066 +ij[12397] = 17 +id[12398] = "2915-12-10T05:17:56" +ik[12398] = 0.697 +il[12398] = -89 +im[12398] = 0.1009 +ij[12398] = 28.5 +id[12399] = "2915-12-10T15:49:40" +ik[12399] = 0.045 +il[12399] = 117 +im[12399] = 0.1005 +ij[12399] = 27.3 +id[12400] = "2916-01-06T21:08:41" +ik[12400] = 0.435 +il[12400] = -55 +im[12400] = 0.088 +ij[12400] = 28.8 +id[12401] = "2916-01-08T23:52:51" +ik[12401] = 0.442 +il[12401] = -76 +im[12401] = 0.0906 +ij[12401] = 27.5 +id[12402] = "2916-01-09T20:32:20" +ik[12402] = 35.257 +il[12402] = -17 +im[12402] = 0.0871 +ij[12402] = 9 +id[12403] = "2916-02-10T17:46:02" +ik[12403] = -26.259 +il[12403] = -26 +im[12403] = 0.0537 +ij[12403] = 15 +id[12404] = "2916-03-20T06:14:09" +ik[12404] = 2.038 +il[12404] = 157 +im[12404] = 0.0655 +ij[12404] = 27.6 +id[12405] = "2916-05-21T14:04:40" +ik[12405] = 0.786 +il[12405] = -80 +im[12405] = 0.0379 +ij[12405] = 28.1 +id[12406] = "2916-05-23T09:56:12" +ik[12406] = 3.968 +il[12406] = -2 +im[12406] = 0.0178 +ij[12406] = 27.2 +id[12407] = "2916-06-13T17:09:32" +ik[12407] = 12 +il[12407] = 98 +im[12407] = 0.0542 +ij[12407] = 18 +id[12408] = "2916-07-30T12:26:22" +ik[12408] = 1.07 +il[12408] = -113 +im[12408] = 0.0528 +ij[12408] = 12 +id[12409] = "2916-10-18T16:14:23" +ik[12409] = 4.997 +il[12409] = 95 +im[12409] = 0.0311 +ij[12409] = 28.1 +id[12410] = "2916-10-28T12:07:27" +ik[12410] = 25.555 +il[12410] = -109 +im[12410] = 0.0171 +ij[12410] = 16 +id[12411] = "2917-01-12T03:42:06" +ik[12411] = 30.861 +il[12411] = 24 +im[12411] = 0.0304 +ij[12411] = 8 +id[12412] = "2917-02-14T23:40:07" +ik[12412] = 4.876 +il[12412] = 47 +im[12412] = 0.0852 +ij[12412] = 27.4 +id[12413] = "2917-03-04T06:11:30" +ik[12413] = 4.985 +il[12413] = 113 +im[12413] = 0.0845 +ij[12413] = 27.1 +id[12414] = "2917-03-28T02:59:41" +ik[12414] = 23 +il[12414] = 27 +im[12414] = 0.1241 +ij[12414] = 17 +id[12415] = "2917-04-07T09:48:05" +ik[12415] = 39.235 +il[12415] = 22 +im[12415] = 0.0486 +ij[12415] = 3 +id[12416] = "2917-04-20T23:45:01" +ik[12416] = -1.799 +il[12416] = -59 +im[12416] = 0.0571 +ij[12416] = 2 +id[12417] = "2917-04-21T00:16:28" +ik[12417] = 0.858 +il[12417] = -67 +im[12417] = 0.0577 +ij[12417] = 28.6 +id[12418] = "2917-06-18T13:41:12" +ik[12418] = 0 +il[12418] = -79 +im[12418] = 0.2328 +ij[12418] = 13 +id[12419] = "2917-07-18T14:25:29" +ik[12419] = 5.28 +il[12419] = -179 +im[12419] = 0.362 +ij[12419] = 11 +id[12420] = "2917-08-22T22:15:39" +ik[12420] = 4.832 +il[12420] = -129 +im[12420] = 0.1262 +ij[12420] = 28.2 +id[12421] = "2917-08-23T12:43:47" +ik[12421] = 65.96 +il[12421] = 20 +im[12421] = 0.1655 +ij[12421] = 7.1039 +id[12422] = "2917-10-06T01:38:35" +ik[12422] = 109.5 +il[12422] = -105 +im[12422] = 0.1915 +ij[12422] = 14 +id[12423] = "2917-10-14T00:53:08" +ik[12423] = 3.077 +il[12423] = -15 +im[12423] = 0.0955 +ij[12423] = 28.6 +id[12424] = "2917-10-15T16:35:42" +ik[12424] = -2.377 +il[12424] = 125 +im[12424] = 0.0225 +ij[12424] = 4 +id[12425] = "2917-11-06T23:20:18" +ik[12425] = 0.919 +il[12425] = -117 +im[12425] = 0.1725 +ij[12425] = 27.3 +id[12426] = "2917-11-09T21:34:07" +ik[12426] = 45.74 +il[12426] = -61 +im[12426] = 0.1243 +ij[12426] = 1 +id[12427] = "2917-12-10T18:29:24" +ik[12427] = 0.655 +il[12427] = -74 +im[12427] = 0.0431 +ij[12427] = 27.5 +id[12428] = "2917-12-14T23:14:18" +ik[12428] = 0.394 +il[12428] = -104 +im[12428] = 0.0758 +ij[12428] = 28.8 +id[12429] = "2918-01-17T00:01:54" +ik[12429] = -26.436 +il[12429] = -157 +im[12429] = 0.1077 +ij[12429] = 15 +id[12430] = "2918-02-03T11:55:32" +ik[12430] = 1.112 +il[12430] = -168 +im[12430] = 0.0765 +ij[12430] = 28.5 +id[12431] = "2918-02-25T09:22:01" +ik[12431] = 1.701 +il[12431] = 79 +im[12431] = 0.0457 +ij[12431] = 27.6 +id[12432] = "2918-03-09T15:19:53" +ik[12432] = 33.412 +il[12432] = 106 +im[12432] = 0.0248 +ij[12432] = 9 +id[12433] = "2918-05-03T05:10:50" +ik[12433] = 3.684 +il[12433] = 53 +im[12433] = 0.0251 +ij[12433] = 27.2 +id[12434] = "2918-05-25T20:50:19" +ik[12434] = 12 +il[12434] = 32 +im[12434] = 0.0574 +ij[12434] = 18 +id[12435] = "2918-06-07T00:41:09" +ik[12435] = 0.598 +il[12435] = 99 +im[12435] = 0.0503 +ij[12435] = 28.2 +id[12436] = "2918-09-07T02:45:02" +ik[12436] = 1.09 +il[12436] = -135 +im[12436] = 0.0497 +ij[12436] = 12 +id[12437] = "2918-10-10T19:09:18" +ik[12437] = 25.735 +il[12437] = 157 +im[12437] = 0.0035 +ij[12437] = 16 +id[12438] = "2918-12-26T01:21:36" +ik[12438] = 0.586 +il[12438] = 79 +im[12438] = 0.0543 +ij[12438] = 28.2 +id[12439] = "2919-01-21T07:49:44" +ik[12439] = 4.518 +il[12439] = -125 +im[12439] = 0.0309 +ij[12439] = 27.4 +id[12440] = "2919-02-05T09:26:31" +ik[12440] = 5.301 +il[12440] = -6 +im[12440] = 0.0506 +ij[12440] = 27.1 +id[12441] = "2919-02-18T11:55:26" +ik[12441] = 32.126 +il[12441] = 81 +im[12441] = 0.0236 +ij[12441] = 8 +id[12442] = "2919-02-25T10:58:37" +ik[12442] = 0 +il[12442] = 161 +im[12442] = 0.074 +ij[12442] = 17 +id[12443] = "2919-04-24T07:39:38" +ik[12443] = 0.385 +il[12443] = 37 +im[12443] = 0.0955 +ij[12443] = 28.6 +id[12444] = "2919-05-03T10:31:59" +ik[12444] = 0.116 +il[12444] = 81 +im[12444] = 0.0991 +ij[12444] = 27.3 +id[12445] = "2919-06-07T08:18:56" +ik[12445] = 1.956 +il[12445] = 85 +im[12445] = 0.1399 +ij[12445] = 27.5 +id[12446] = "2919-06-11T05:02:52" +ik[12446] = 1.815 +il[12446] = 171 +im[12446] = 0.0373 +ij[12446] = 28.8 +id[12447] = "2919-06-17T13:12:08" +ik[12447] = 44.931 +il[12447] = 109 +im[12447] = 0.1515 +ij[12447] = 3 +id[12448] = "2919-07-18T10:47:16" +ik[12448] = -2.311 +il[12448] = 81 +im[12448] = 0.2006 +ij[12448] = 2 +id[12449] = "2919-09-04T01:39:05" +ik[12449] = 0 +il[12449] = -41 +im[12449] = 0.0574 +ij[12449] = 13 +id[12450] = "2919-10-07T10:46:49" +ik[12450] = 4.32 +il[12450] = 135 +im[12450] = 0.3702 +ij[12450] = 11 +id[12451] = "2919-11-06T00:41:40" +ik[12451] = 62.96 +il[12451] = 50 +im[12451] = 0.2517 +ij[12451] = 7.1155 +id[12452] = "2919-12-14T03:08:49" +ik[12452] = -26.042 +il[12452] = 21 +im[12452] = 0.2049 +ij[12452] = 15 +id[12453] = "2919-12-18T18:22:27" +ik[12453] = 105.7 +il[12453] = -163 +im[12453] = 0.167 +ij[12453] = 14 +id[12454] = "2919-12-28T13:50:23" +ik[12454] = -2.032 +il[12454] = -2 +im[12454] = 0.1617 +ij[12454] = 4 +id[12455] = "2920-01-19T13:18:02" +ik[12455] = 40.975 +il[12455] = -144 +im[12455] = 0.0313 +ij[12455] = 1 +id[12456] = "2920-01-23T18:38:03" +ik[12456] = 1.194 +il[12456] = 179 +im[12456] = 0.0938 +ij[12456] = 27.6 +id[12457] = "2920-04-07T06:55:53" +ik[12457] = 1.677 +il[12457] = -25 +im[12457] = 0.0821 +ij[12457] = 28.5 +id[12458] = "2920-04-09T06:18:25" +ik[12458] = 3.264 +il[12458] = 3 +im[12458] = 0.0787 +ij[12458] = 27.2 +id[12459] = "2920-04-22T06:22:06" +ik[12459] = 31.917 +il[12459] = 125 +im[12459] = 0.0779 +ij[12459] = 9 +id[12460] = "2920-05-04T12:35:58" +ik[12460] = 12 +il[12460] = 148 +im[12460] = 0.0642 +ij[12460] = 18 +id[12461] = "2920-05-30T01:05:18" +ik[12461] = 1.698 +il[12461] = -157 +im[12461] = 0.0253 +ij[12461] = 28.2 +id[12462] = "2920-07-05T21:08:42" +ik[12462] = 0.496 +il[12462] = -112 +im[12462] = 0.0455 +ij[12462] = 28.7 +id[12463] = "2920-07-10T03:09:47" +ik[12463] = 3.43 +il[12463] = -163 +im[12463] = 0.0081 +ij[12463] = 28.1 +id[12464] = "2920-09-22T09:27:16" +ik[12464] = 25.882 +il[12464] = 102 +im[12464] = 0.0273 +ij[12464] = 16 +id[12465] = "2920-10-12T09:49:03" +ik[12465] = 0.69 +il[12465] = -60 +im[12465] = 0.0567 +ij[12465] = 12 +id[12466] = "2920-12-30T22:24:15" +ik[12466] = 4.25 +il[12466] = -3 +im[12466] = 0.0244 +ij[12466] = 27.4 +id[12467] = "2921-01-01T22:22:51" +ik[12467] = 2.002 +il[12467] = 16 +im[12467] = 0.0455 +ij[12467] = 28.2 +id[12468] = "2921-01-14T07:08:28" +ik[12468] = 5.55 +il[12468] = 4 +im[12468] = 0.017 +ij[12468] = 27.1 +id[12469] = "2921-02-02T18:28:40" +ik[12469] = 0 +il[12469] = 27 +im[12469] = 0.0679 +ij[12469] = 17 +id[12470] = "2921-04-04T12:50:43" +ik[12470] = 0.209 +il[12470] = -34 +im[12470] = 0.0739 +ij[12470] = 27.3 +id[12471] = "2921-04-07T22:46:59" +ik[12471] = 34.473 +il[12471] = -150 +im[12471] = 0.0287 +ij[12471] = 8 +id[12472] = "2921-05-03T12:26:09" +ik[12472] = 0.284 +il[12472] = -112 +im[12472] = 0.0797 +ij[12472] = 28.6 +id[12473] = "2921-05-04T19:04:30" +ik[12473] = 1.03 +il[12473] = 161 +im[12473] = 0.0646 +ij[12473] = 27.5 +id[12474] = "2921-05-13T21:21:30" +ik[12474] = 0.764 +il[12474] = -147 +im[12474] = 0.0933 +ij[12474] = 28.8 +id[12475] = "2921-06-02T20:02:35" +ik[12475] = -24.872 +il[12475] = 64 +im[12475] = 0.0677 +ij[12475] = 15 +id[12476] = "2921-07-18T03:55:52" +ik[12476] = 4.184 +il[12476] = 24 +im[12476] = 0.0596 +ij[12476] = 27.6 +id[12477] = "2921-08-12T02:29:02" +ik[12477] = 47.118 +il[12477] = -70 +im[12477] = 0.1464 +ij[12477] = 3 +id[12478] = "2921-09-07T21:58:25" +ik[12478] = -2.302 +il[12478] = -99 +im[12478] = 0.1829 +ij[12478] = 2 +id[12479] = "2921-10-13T22:44:02" +ik[12479] = 5.566 +il[12479] = -117 +im[12479] = 0.025 +ij[12479] = 27.2 +id[12480] = "2921-11-02T16:32:12" +ik[12480] = 0 +il[12480] = 170 +im[12480] = 0.2727 +ij[12480] = 13 +id[12481] = "2921-11-02T19:01:16" +ik[12481] = 1.701 +il[12481] = 133 +im[12481] = 0.273 +ij[12481] = 28.2 +id[12482] = "2921-11-24T04:04:27" +ik[12482] = 3.63 +il[12482] = -154 +im[12482] = 0.102 +ij[12482] = 27.2 +id[12483] = "2921-12-09T03:00:09" +ik[12483] = 1.68 +il[12483] = -14 +im[12483] = 0.1624 +ij[12483] = 11 +id[12484] = "2922-01-11T17:36:48" +ik[12484] = 70.04 +il[12484] = -90 +im[12484] = 0.1587 +ij[12484] = 7.1378 +id[12485] = "2922-03-05T04:12:56" +ik[12485] = 2.34 +il[12485] = -114 +im[12485] = 0.1211 +ij[12485] = 27.2 +id[12486] = "2922-03-06T08:32:12" +ik[12486] = -1.688 +il[12486] = -168 +im[12486] = 0.1174 +ij[12486] = 4 +id[12487] = "2922-03-09T18:11:35" +ik[12487] = 127.07 +il[12487] = 79 +im[12487] = 0.0588 +ij[12487] = 14 +id[12488] = "2922-03-16T05:04:07" +ik[12488] = 37.871 +il[12488] = -23 +im[12488] = 0.0954 +ij[12488] = 1 +id[12489] = "2922-04-09T08:02:41" +ik[12489] = 12 +il[12489] = 160 +im[12489] = 0.0028 +ij[12489] = 18 +id[12490] = "2922-05-30T07:39:26" +ik[12490] = 31.293 +il[12490] = -73 +im[12490] = 0.0719 +ij[12490] = 9 +id[12491] = "2922-06-29T15:13:21" +ik[12491] = 0.483 +il[12491] = 102 +im[12491] = 0.0572 +ij[12491] = 28.7 +id[12492] = "2922-06-30T20:15:24" +ik[12492] = 0.378 +il[12492] = 38 +im[12492] = 0.0463 +ij[12492] = 28.5 +id[12493] = "2922-09-04T18:07:04" +ik[12493] = 26.017 +il[12493] = -18 +im[12493] = 0.0488 +ij[12493] = 16 +id[12494] = "2922-09-08T11:17:05" +ik[12494] = 0.994 +il[12494] = 121 +im[12494] = 0.0564 +ij[12494] = 28.1 +id[12495] = "2922-11-20T04:27:16" +ik[12495] = 0.01 +il[12495] = -135 +im[12495] = 0.0528 +ij[12495] = 12 +id[12496] = "2923-01-14T09:51:51" +ik[12496] = 0 +il[12496] = 146 +im[12496] = 0.0638 +ij[12496] = 17 +id[12497] = "2923-02-21T23:07:42" +ik[12497] = 1.841 +il[12497] = -48 +im[12497] = 0.0217 +ij[12497] = 28.1 +id[12498] = "2923-03-13T14:54:25" +ik[12498] = 0.281 +il[12498] = -93 +im[12498] = 0.0714 +ij[12498] = 27.3 +id[12499] = "2923-04-11T18:06:07" +ik[12499] = 0.752 +il[12499] = 143 +im[12499] = 0.0757 +ij[12499] = 27.5 +id[12500] = "2923-04-26T12:32:07" +ik[12500] = 0.335 +il[12500] = 9 +im[12500] = 0.0714 +ij[12500] = 28.8 +id[12501] = "2923-05-11T05:37:26" +ik[12501] = -25.384 +il[12501] = -106 +im[12501] = 0.0801 +ij[12501] = 15 +id[12502] = "2923-05-15T07:28:43" +ik[12502] = 0.971 +il[12502] = -94 +im[12502] = 0.051 +ij[12502] = 28.6 +id[12503] = "2923-06-21T07:44:41" +ik[12503] = 3.359 +il[12503] = -98 +im[12503] = 0.078 +ij[12503] = 27.6 +id[12504] = "2923-06-22T19:17:12" +ik[12504] = 36.292 +il[12504] = 104 +im[12504] = 0.0847 +ij[12504] = 8 +id[12505] = "2923-08-25T04:05:21" +ik[12505] = 5.198 +il[12505] = -126 +im[12505] = 0.0504 +ij[12505] = 27.2 +id[12506] = "2923-09-13T18:28:08" +ik[12506] = 11 +il[12506] = -150 +im[12506] = 0.0808 +ij[12506] = 18 +id[12507] = "2923-09-28T05:56:06" +ik[12507] = 42.995 +il[12507] = -180 +im[12507] = 0.0695 +ij[12507] = 3 +id[12508] = "2923-10-10T21:08:39" +ik[12508] = -1.991 +il[12508] = 75 +im[12508] = 0.0624 +ij[12508] = 2 +id[12509] = "2923-12-12T18:12:04" +ik[12509] = 0 +il[12509] = 10 +im[12509] = 0.1999 +ij[12509] = 13 +id[12510] = "2924-01-07T09:50:17" +ik[12510] = 2.518 +il[12510] = 24 +im[12510] = 0.2462 +ij[12510] = 28.1 +id[12511] = "2924-01-21T14:05:56" +ik[12511] = 4.09 +il[12511] = 75 +im[12511] = 0.2231 +ij[12511] = 11 +id[12512] = "2924-02-08T22:47:36" +ik[12512] = 3.11 +il[12512] = -68 +im[12512] = 0.0476 +ij[12512] = 28.1 +id[12513] = "2924-02-16T14:15:53" +ik[12513] = 3.079 +il[12513] = 132 +im[12513] = 0.1989 +ij[12513] = 28.2 +id[12514] = "2924-02-29T17:14:40" +ik[12514] = 78.96 +il[12514] = -157 +im[12514] = 0.1877 +ij[12514] = 7.1693 +id[12515] = "2924-04-26T00:26:00" +ik[12515] = -1.56 +il[12515] = -95 +im[12515] = 0.1148 +ij[12515] = 4 +id[12516] = "2924-04-28T00:20:00" +ik[12516] = 37.003 +il[12516] = -75 +im[12516] = 0.0982 +ij[12516] = 1 +id[12517] = "2924-05-05T10:36:32" +ik[12517] = 144.68 +il[12517] = -158 +im[12517] = 0.0516 +ij[12517] = 14 +id[12518] = "2924-06-20T04:43:54" +ik[12518] = 0.46 +il[12518] = 7 +im[12518] = 0.0834 +ij[12518] = 28.7 +id[12519] = "2924-07-05T07:36:46" +ik[12519] = 31.53 +il[12519] = 109 +im[12519] = 0.0708 +ij[12519] = 9 +id[12520] = "2924-08-16T05:53:54" +ik[12520] = 26.152 +il[12520] = 179 +im[12520] = 0.0678 +ij[12520] = 16 +id[12521] = "2924-10-02T09:48:01" +ik[12521] = 0.922 +il[12521] = -142 +im[12521] = 0.0464 +ij[12521] = 28.5 +id[12522] = "2924-10-08T16:33:21" +ik[12522] = 0.31 +il[12522] = 178 +im[12522] = 0.0282 +ij[12522] = 28.2 +id[12523] = "2924-12-25T17:50:50" +ik[12523] = 0 +il[12523] = -146 +im[12523] = 0.0591 +ij[12523] = 17 +id[12524] = "2925-01-06T03:34:50" +ik[12524] = 0.83 +il[12524] = -179 +im[12524] = 0.0503 +ij[12524] = 12 +id[12525] = "2925-03-21T02:15:46" +ik[12525] = 0.611 +il[12525] = 3 +im[12525] = 0.0652 +ij[12525] = 27.5 +id[12526] = "2925-04-10T17:26:43" +ik[12526] = 0.023 +il[12526] = -20 +im[12526] = 0.0277 +ij[12526] = 28.8 +id[12527] = "2925-04-19T23:00:20" +ik[12527] = -25.66 +il[12527] = -9 +im[12527] = 0.069 +ij[12527] = 15 +id[12528] = "2925-05-11T21:46:08" +ik[12528] = 1.771 +il[12528] = -136 +im[12528] = 0.0055 +ij[12528] = 28.1 +id[12529] = "2925-05-13T12:20:47" +ik[12529] = 0.611 +il[12529] = 21 +im[12529] = 0.0271 +ij[12529] = 28.2 +id[12530] = "2925-05-26T16:46:16" +ik[12530] = 1.484 +il[12530] = 84 +im[12530] = 0.0058 +ij[12530] = 28.6 +id[12531] = "2925-05-29T14:08:24" +ik[12531] = 2.941 +il[12531] = 152 +im[12531] = 0.037 +ij[12531] = 27.6 +id[12532] = "2925-07-23T02:59:09" +ik[12532] = 2.089 +il[12532] = 135 +im[12532] = 0.0129 +ij[12532] = 28.2 +id[12533] = "2925-07-31T05:54:50" +ik[12533] = 4.8 +il[12533] = 171 +im[12533] = 0.0709 +ij[12533] = 27.2 +id[12534] = "2925-08-19T09:32:49" +ik[12534] = 12 +il[12534] = -57 +im[12534] = 0.0385 +ij[12534] = 18 +id[12535] = "2925-09-03T17:05:12" +ik[12535] = 34.307 +il[12535] = -20 +im[12535] = 0.0133 +ij[12535] = 8 +id[12536] = "2925-11-10T03:14:54" +ik[12536] = -1.751 +il[12536] = 122 +im[12536] = 0.0961 +ij[12536] = 2 +id[12537] = "2925-11-12T20:38:06" +ik[12537] = 38.869 +il[12537] = -113 +im[12537] = 0.0521 +ij[12537] = 3 +id[12538] = "2925-11-28T20:33:18" +ik[12538] = 1.249 +il[12538] = 44 +im[12538] = 0.0208 +ij[12538] = 28.7 +id[12539] = "2926-01-16T10:37:00" +ik[12539] = 0 +il[12539] = -58 +im[12539] = 0.1841 +ij[12539] = 13 +id[12540] = "2926-02-25T04:54:50" +ik[12540] = 4.29 +il[12540] = 30 +im[12540] = 0.2097 +ij[12540] = 11 +id[12541] = "2926-04-07T13:06:54" +ik[12541] = 81.1 +il[12541] = 86 +im[12541] = 0.1693 +ij[12541] = 7.2018 +id[12542] = "2926-06-05T08:33:56" +ik[12542] = 0.53 +il[12542] = -2 +im[12542] = 0.0804 +ij[12542] = 28.7 +id[12543] = "2926-06-06T18:46:04" +ik[12543] = 37.803 +il[12543] = -142 +im[12543] = 0.0548 +ij[12543] = 1 +id[12544] = "2926-06-10T14:06:28" +ik[12544] = -1.586 +il[12544] = -35 +im[12544] = 0.0297 +ij[12544] = 4 +id[12545] = "2926-06-14T06:29:45" +ik[12545] = 148.83 +il[12545] = 115 +im[12545] = 0.089 +ij[12545] = 14 +id[12546] = "2926-07-26T14:53:52" +ik[12546] = 26.29 +il[12546] = 38 +im[12546] = 0.0774 +ij[12546] = 16 +id[12547] = "2926-08-15T01:23:52" +ik[12547] = 32.619 +il[12547] = 69 +im[12547] = 0.0609 +ij[12547] = 9 +id[12548] = "2926-09-17T00:43:56" +ik[12548] = 1.202 +il[12548] = 40 +im[12548] = 0.007 +ij[12548] = 28.2 +id[12549] = "2926-10-28T20:59:17" +ik[12549] = 1.093 +il[12549] = 143 +im[12549] = 0.0266 +ij[12549] = 28.2 +id[12550] = "2926-11-07T02:38:26" +ik[12550] = 3.606 +il[12550] = 149 +im[12550] = 0.0622 +ij[12550] = 27.4 +id[12551] = "2926-11-15T18:44:47" +ik[12551] = 4.196 +il[12551] = -9 +im[12551] = 0.0348 +ij[12551] = 28.1 +id[12552] = "2926-11-16T20:52:56" +ik[12552] = 6.245 +il[12552] = -30 +im[12552] = 0.0469 +ij[12552] = 27.1 +id[12553] = "2926-12-07T00:53:32" +ik[12553] = 0 +il[12553] = 107 +im[12553] = 0.0574 +ij[12553] = 17 +id[12554] = "2926-12-21T19:13:41" +ik[12554] = 0.746 +il[12554] = -24 +im[12554] = 0.0622 +ij[12554] = 28.5 +id[12555] = "2927-03-14T01:49:57" +ik[12555] = 0.96 +il[12555] = -11 +im[12555] = 0.0487 +ij[12555] = 12 +id[12556] = "2927-03-31T10:57:16" +ik[12556] = -25.858 +il[12556] = 157 +im[12556] = 0.062 +ij[12556] = 15 +id[12557] = "2927-06-08T16:21:40" +ik[12557] = 1.711 +il[12557] = 57 +im[12557] = 0.0421 +ij[12557] = 28.6 +id[12558] = "2927-06-22T02:13:48" +ik[12558] = 2.221 +il[12558] = 41 +im[12558] = 0.0394 +ij[12558] = 28.2 +id[12559] = "2927-07-10T17:25:25" +ik[12559] = 4.522 +il[12559] = -5 +im[12559] = 0.0612 +ij[12559] = 27.2 +id[12560] = "2927-07-30T05:08:22" +ik[12560] = 12 +il[12560] = 9 +im[12560] = 0.0387 +ij[12560] = 18 +id[12561] = "2927-10-22T03:56:19" +ik[12561] = 32.043 +il[12561] = 121 +im[12561] = 0.0734 +ij[12561] = 8 +id[12562] = "2927-11-11T15:05:27" +ik[12562] = 0.765 +il[12562] = 152 +im[12562] = 0.0351 +ij[12562] = 28.7 +id[12563] = "2927-12-14T00:13:35" +ik[12563] = -1.615 +il[12563] = -32 +im[12563] = 0.0972 +ij[12563] = 2 +id[12564] = "2927-12-23T11:12:02" +ik[12564] = 36.629 +il[12564] = -105 +im[12564] = 0.0085 +ij[12564] = 3 +id[12565] = "2928-02-18T06:30:13" +ik[12565] = 0 +il[12565] = 154 +im[12565] = 0.0624 +ij[12565] = 13 +id[12566] = "2928-02-27T19:34:15" +ik[12566] = 1.876 +il[12566] = 50 +im[12566] = 0.0886 +ij[12566] = 28.2 +id[12567] = "2928-03-30T06:35:17" +ik[12567] = 3.15 +il[12567] = 168 +im[12567] = 0.1236 +ij[12567] = 11 +id[12568] = "2928-04-14T06:43:21" +ik[12568] = 0.281 +il[12568] = 96 +im[12568] = 0.1701 +ij[12568] = 28.1 +id[12569] = "2928-05-11T05:32:49" +ik[12569] = 82.96 +il[12569] = 2 +im[12569] = 0.1371 +ij[12569] = 7.2099 +id[12570] = "2928-06-29T11:05:49" +ik[12570] = 26.32 +il[12570] = 36 +im[12570] = 0.0727 +ij[12570] = 16 +id[12571] = "2928-07-14T16:04:35" +ik[12571] = 147.4 +il[12571] = 109 +im[12571] = 0.0197 +ij[12571] = 14 +id[12572] = "2928-07-17T00:00:00" +ik[12572] = 40.164 +il[12572] = 13 +im[12572] = 0.0373 +ij[12572] = 1 +id[12573] = "2928-07-23T09:23:49" +ik[12573] = -1.745 +il[12573] = -66 +im[12573] = 0.1129 +ij[12573] = 4 +id[12574] = "2928-10-04T11:06:59" +ik[12574] = 34.43 +il[12574] = -100 +im[12574] = 0.0743 +ij[12574] = 9 +id[12575] = "2928-10-12T03:40:04" +ik[12575] = 3.119 +il[12575] = 86 +im[12575] = 0.0387 +ij[12575] = 27.4 +id[12576] = "2928-11-16T14:22:40" +ik[12576] = 0 +il[12576] = -87 +im[12576] = 0.0687 +ij[12576] = 17 +id[12577] = "2929-01-10T16:17:58" +ik[12577] = 0.204 +il[12577] = 65 +im[12577] = 0.0623 +ij[12577] = 27.3 +id[12578] = "2929-01-30T12:58:50" +ik[12578] = 5.014 +il[12578] = -49 +im[12578] = 0.0464 +ij[12578] = 28.1 +id[12579] = "2929-02-08T03:10:51" +ik[12579] = 0.462 +il[12579] = -178 +im[12579] = 0.0571 +ij[12579] = 27.5 +id[12580] = "2929-02-20T22:26:15" +ik[12580] = 0.296 +il[12580] = 19 +im[12580] = 0.0522 +ij[12580] = 28.5 +id[12581] = "2929-03-11T01:32:16" +ik[12581] = -26.026 +il[12581] = 163 +im[12581] = 0.0612 +ij[12581] = 15 +id[12582] = "2929-05-23T04:02:24" +ik[12582] = 0.11 +il[12582] = 120 +im[12582] = 0.0612 +ij[12582] = 12 +id[12583] = "2929-07-10T08:42:04" +ik[12583] = 12 +il[12583] = -46 +im[12583] = 0.0197 +ij[12583] = 18 +id[12584] = "2929-11-01T12:03:29" +ik[12584] = 0.557 +il[12584] = -58 +im[12584] = 0.0397 +ij[12584] = 28.7 +id[12585] = "2929-11-25T03:49:42" +ik[12585] = 25.155 +il[12585] = -66 +im[12585] = 0.0791 +ij[12585] = 16 +id[12586] = "2929-11-27T06:57:38" +ik[12586] = 30.836 +il[12586] = -92 +im[12586] = 0.0737 +ij[12586] = 8 +id[12587] = "2930-01-22T20:42:03" +ik[12587] = -1.58 +il[12587] = -113 +im[12587] = 0.1056 +ij[12587] = 2 +id[12588] = "2930-01-30T23:02:58" +ik[12588] = 36.229 +il[12588] = -70 +im[12588] = 0.0464 +ij[12588] = 3 +id[12589] = "2930-03-29T16:05:04" +ik[12589] = 0 +il[12589] = -133 +im[12589] = 0.1467 +ij[12589] = 13 +id[12590] = "2930-05-06T18:47:44" +ik[12590] = 0.69 +il[12590] = 168 +im[12590] = 0.138 +ij[12590] = 11 +id[12591] = "2930-06-07T20:07:46" +ik[12591] = 1.573 +il[12591] = -115 +im[12591] = 0.235 +ij[12591] = 28.2 +id[12592] = "2930-06-16T15:07:40" +ik[12592] = 78.96 +il[12592] = 46 +im[12592] = 0.107 +ij[12592] = 7.1742 +id[12593] = "2930-08-13T03:59:28" +ik[12593] = 136.5 +il[12593] = 53 +im[12593] = 0.1072 +ij[12593] = 14 +id[12594] = "2930-08-27T05:12:16" +ik[12594] = -2.022 +il[12594] = 172 +im[12594] = 0.1187 +ij[12594] = 4 +id[12595] = "2930-08-31T19:49:00" +ik[12595] = 43.868 +il[12595] = -2 +im[12595] = 0.1264 +ij[12595] = 1 +id[12596] = "2930-09-16T11:58:42" +ik[12596] = 2.4 +il[12596] = -92 +im[12596] = 0.0791 +ij[12596] = 27.4 +id[12597] = "2930-10-25T22:59:46" +ik[12597] = 0 +il[12597] = 130 +im[12597] = 0.1049 +ij[12597] = 17 +id[12598] = "2930-12-12T13:16:18" +ik[12598] = 35.578 +il[12598] = 25 +im[12598] = 0.0557 +ij[12598] = 9 +id[12599] = "2930-12-20T03:08:40" +ik[12599] = 0.064 +il[12599] = -109 +im[12599] = 0.0647 +ij[12599] = 27.3 +id[12600] = "2931-01-18T00:47:24" +ik[12600] = 0.433 +il[12600] = -150 +im[12600] = 0.0557 +ij[12600] = 27.5 +id[12601] = "2931-02-19T01:27:07" +ik[12601] = -26.192 +il[12601] = 152 +im[12601] = 0.0693 +ij[12601] = 15 +id[12602] = "2931-02-26T15:42:17" +ik[12602] = 0.863 +il[12602] = 12 +im[12602] = 0.0068 +ij[12602] = 28.8 +id[12603] = "2931-03-24T18:24:15" +ik[12603] = 0.338 +il[12603] = -137 +im[12603] = 0.0371 +ij[12603] = 28.2 +id[12604] = "2931-03-29T11:42:48" +ik[12604] = 2.146 +il[12604] = 8 +im[12604] = 0.0318 +ij[12604] = 27.6 +id[12605] = "2931-04-18T10:17:40" +ik[12605] = 3.307 +il[12605] = -129 +im[12605] = 0.0605 +ij[12605] = 28.1 +id[12606] = "2931-04-20T06:08:51" +ik[12606] = 1.026 +il[12606] = -51 +im[12606] = 0.056 +ij[12606] = 28.5 +id[12607] = "2931-06-21T22:51:42" +ik[12607] = 12 +il[12607] = -66 +im[12607] = 0.0018 +ij[12607] = 18 +id[12608] = "2931-07-14T16:49:31" +ik[12608] = 0.93 +il[12608] = -111 +im[12608] = 0.0536 +ij[12608] = 12 +id[12609] = "2931-09-21T06:18:21" +ik[12609] = 2.118 +il[12609] = -178 +im[12609] = 0.0504 +ij[12609] = 28.1 +id[12610] = "2931-09-25T07:53:45" +ik[12610] = 1.239 +il[12610] = -162 +im[12610] = 0.0581 +ij[12610] = 28.2 +id[12611] = "2931-10-25T19:52:58" +ik[12611] = 0.393 +il[12611] = -47 +im[12611] = 0.0499 +ij[12611] = 28.7 +id[12612] = "2931-11-05T16:03:27" +ik[12612] = 25.468 +il[12612] = 115 +im[12612] = 0.0615 +ij[12612] = 16 +id[12613] = "2931-11-28T20:40:07" +ik[12613] = 0.213 +il[12613] = -90 +im[12613] = 0.0217 +ij[12613] = 28.2 +id[12614] = "2931-12-30T22:34:32" +ik[12614] = 30.658 +il[12614] = -171 +im[12614] = 0.0692 +ij[12614] = 8 +id[12615] = "2932-02-29T01:36:13" +ik[12615] = 5.058 +il[12615] = -2 +im[12615] = 0.1107 +ij[12615] = 27.4 +id[12616] = "2932-03-16T13:06:57" +ik[12616] = 37.86 +il[12616] = -18 +im[12616] = 0.0874 +ij[12616] = 3 +id[12617] = "2932-03-20T06:49:20" +ik[12617] = 4.868 +il[12617] = 112 +im[12617] = 0.009 +ij[12617] = 27.1 +id[12618] = "2932-03-21T02:38:31" +ik[12618] = -1.685 +il[12618] = -178 +im[12618] = 0.0331 +ij[12618] = 2 +id[12619] = "2932-04-27T03:43:28" +ik[12619] = 0 +il[12619] = 157 +im[12619] = 0.1663 +ij[12619] = 17 +id[12620] = "2932-05-22T03:59:57" +ik[12620] = 0 +il[12620] = 24 +im[12620] = 0.2576 +ij[12620] = 13 +id[12621] = "2932-05-27T06:31:41" +ik[12621] = 0 +il[12621] = 39 +im[12621] = 0.1185 +ij[12621] = 18 +id[12622] = "2932-06-23T11:11:45" +ik[12622] = 3.25 +il[12622] = -145 +im[12622] = 0.1168 +ij[12622] = 11 +id[12623] = "2932-07-30T11:12:49" +ik[12623] = 69.3 +il[12623] = 18 +im[12623] = 0.2484 +ij[12623] = 7.1182 +id[12624] = "2932-09-16T21:36:40" +ik[12624] = 117.73 +il[12624] = -23 +im[12624] = 0.054 +ij[12624] = 14 +id[12625] = "2932-09-23T18:01:59" +ik[12625] = 0 +il[12625] = 98 +im[12625] = 0.1672 +ij[12625] = 17 +id[12626] = "2932-09-27T09:38:04" +ik[12626] = -2.333 +il[12626] = -100 +im[12626] = 0.063 +ij[12626] = 4 +id[12627] = "2932-10-18T11:49:03" +ik[12627] = 46.386 +il[12627] = 75 +im[12627] = 0.1223 +ij[12627] = 1 +id[12628] = "2932-11-22T10:36:25" +ik[12628] = 0.375 +il[12628] = 77 +im[12628] = 0.0741 +ij[12628] = 27.3 +id[12629] = "2932-12-23T07:56:56" +ik[12629] = 0.506 +il[12629] = 59 +im[12629] = 0.022 +ij[12629] = 27.5 +id[12630] = "2933-01-26T23:58:51" +ik[12630] = -26.371 +il[12630] = 154 +im[12630] = 0.0781 +ij[12630] = 15 +id[12631] = "2933-02-09T05:07:12" +ik[12631] = 1.237 +il[12631] = -156 +im[12631] = 0.0474 +ij[12631] = 28.8 +id[12632] = "2933-02-16T16:18:32" +ik[12632] = 34.177 +il[12632] = 107 +im[12632] = 0.0588 +ij[12632] = 9 +id[12633] = "2933-03-06T21:02:12" +ik[12633] = 1.846 +il[12633] = -150 +im[12633] = 0.0096 +ij[12633] = 27.6 +id[12634] = "2933-03-13T17:28:34" +ik[12634] = 2.743 +il[12634] = -31 +im[12634] = 0.0739 +ij[12634] = 28.2 +id[12635] = "2933-05-11T08:17:58" +ik[12635] = 3.806 +il[12635] = -59 +im[12635] = 0.0638 +ij[12635] = 27.2 +id[12636] = "2933-06-02T09:03:41" +ik[12636] = 12 +il[12636] = 148 +im[12636] = 0.0124 +ij[12636] = 18 +id[12637] = "2933-06-20T16:36:16" +ik[12637] = 0.745 +il[12637] = -157 +im[12637] = 0.046 +ij[12637] = 28.1 +id[12638] = "2933-08-23T15:53:31" +ik[12638] = 1.13 +il[12638] = 112 +im[12638] = 0.0341 +ij[12638] = 12 +id[12639] = "2933-10-17T16:18:16" +ik[12639] = 25.671 +il[12639] = 119 +im[12639] = 0.0511 +ij[12639] = 16 +id[12640] = "2933-10-31T09:28:58" +ik[12640] = 0.849 +il[12640] = -3 +im[12640] = 0.0603 +ij[12640] = 28.2 +id[12641] = "2934-01-30T04:04:58" +ik[12641] = 4.642 +il[12641] = -128 +im[12641] = 0.0352 +ij[12641] = 27.4 +id[12642] = "2934-02-03T03:29:38" +ik[12642] = 31.499 +il[12642] = -82 +im[12642] = 0.0331 +ij[12642] = 8 +id[12643] = "2934-02-14T18:19:43" +ik[12643] = 5.189 +il[12643] = 166 +im[12643] = 0.0037 +ij[12643] = 27.1 +id[12644] = "2934-03-07T11:57:35" +ik[12644] = 23 +il[12644] = 98 +im[12644] = 0.0874 +ij[12644] = 17 +id[12645] = "2934-05-19T02:33:56" +ik[12645] = 42.436 +il[12645] = -155 +im[12645] = 0.152 +ij[12645] = 3 +id[12646] = "2934-05-20T06:47:03" +ik[12646] = 0.579 +il[12646] = 153 +im[12646] = 0.1515 +ij[12646] = 27.3 +id[12647] = "2934-06-15T16:06:32" +ik[12647] = -2.104 +il[12647] = -97 +im[12647] = 0.1867 +ij[12647] = 2 +id[12648] = "2934-07-06T07:15:32" +ik[12648] = 3.707 +il[12648] = -127 +im[12648] = 0.0969 +ij[12648] = 27.5 +id[12649] = "2934-07-28T00:39:25" +ik[12649] = 2.937 +il[12649] = -180 +im[12649] = 0.325 +ij[12649] = 28.2 +id[12650] = "2934-08-04T21:37:10" +ik[12650] = 0 +il[12650] = -59 +im[12650] = 0.0111 +ij[12650] = 13 +id[12651] = "2934-09-05T01:25:58" +ik[12651] = 6.39 +il[12651] = 168 +im[12651] = 0.326 +ij[12651] = 11 +id[12652] = "2934-10-06T20:39:46" +ik[12652] = 62.96 +il[12652] = 28 +im[12652] = 0.2823 +ij[12652] = 7.1049 +id[12653] = "2934-11-03T10:45:11" +ik[12653] = 2.168 +il[12653] = 87 +im[12653] = 0.2145 +ij[12653] = 27.5 +id[12654] = "2934-11-16T03:42:33" +ik[12654] = 103.25 +il[12654] = -44 +im[12654] = 0.217 +ij[12654] = 14 +id[12655] = "2934-11-26T16:15:26" +ik[12655] = -2.219 +il[12655] = -130 +im[12655] = 0.1598 +ij[12655] = 4 +id[12656] = "2934-12-22T21:55:00" +ik[12656] = 42.915 +il[12656] = 38 +im[12656] = 0.064 +ij[12656] = 1 +id[12657] = "2934-12-28T22:48:51" +ik[12657] = -26.46 +il[12657] = 83 +im[12657] = 0.1367 +ij[12657] = 15 +id[12658] = "2935-01-16T15:44:47" +ik[12658] = 1.705 +il[12658] = 7 +im[12658] = 0.0536 +ij[12658] = 28.8 +id[12659] = "2935-02-08T02:08:10" +ik[12659] = 1.416 +il[12659] = 65 +im[12659] = 0.1148 +ij[12659] = 27.6 +id[12660] = "2935-04-07T01:55:51" +ik[12660] = 32.402 +il[12660] = -104 +im[12660] = 0.0834 +ij[12660] = 9 +id[12661] = "2935-04-19T19:58:31" +ik[12661] = 3.455 +il[12661] = 105 +im[12661] = 0.0649 +ij[12661] = 27.2 +id[12662] = "2935-05-13T19:04:39" +ik[12662] = 12 +il[12662] = -15 +im[12662] = 0.0063 +ij[12662] = 18 +id[12663] = "2935-09-29T06:45:58" +ik[12663] = 0.88 +il[12663] = 63 +im[12663] = 0.0463 +ij[12663] = 12 +id[12664] = "2935-09-30T05:14:19" +ik[12664] = 25.829 +il[12664] = -59 +im[12664] = 0.0389 +ij[12664] = 16 +id[12665] = "2936-01-08T16:32:30" +ik[12665] = 4.348 +il[12665] = 26 +im[12665] = 0.0493 +ij[12665] = 27.4 +id[12666] = "2936-01-23T06:14:43" +ik[12666] = 5.46 +il[12666] = -41 +im[12666] = 0.0414 +ij[12666] = 27.1 +id[12667] = "2936-02-11T20:43:06" +ik[12667] = 0 +il[12667] = -75 +im[12667] = 0.0197 +ij[12667] = 17 +id[12668] = "2936-03-17T08:53:11" +ik[12668] = 33.444 +il[12668] = 70 +im[12668] = 0.0767 +ij[12668] = 8 +id[12669] = "2936-04-14T06:45:37" +ik[12669] = 0.137 +il[12669] = 6 +im[12669] = 0.0862 +ij[12669] = 27.3 +id[12670] = "2936-05-15T11:23:41" +ik[12670] = 1.241 +il[12670] = -127 +im[12670] = 0.0952 +ij[12670] = 27.5 +id[12671] = "2936-06-13T05:35:44" +ik[12671] = -24.492 +il[12671] = -125 +im[12671] = 0.1144 +ij[12671] = 15 +id[12672] = "2936-07-10T12:34:13" +ik[12672] = 1.033 +il[12672] = 33 +im[12672] = 0.146 +ij[12672] = 28.8 +id[12673] = "2936-07-24T10:12:00" +ik[12673] = 47.333 +il[12673] = -156 +im[12673] = 0.158 +ij[12673] = 3 +id[12674] = "2936-08-02T17:42:13" +ik[12674] = 4.872 +il[12674] = -179 +im[12674] = 0.064 +ij[12674] = 27.6 +id[12675] = "2936-08-22T16:47:27" +ik[12675] = -2.386 +il[12675] = 30 +im[12675] = 0.1922 +ij[12675] = 2 +id[12676] = "2936-10-13T03:43:04" +ik[12676] = 0 +il[12676] = 12 +im[12676] = 0.1457 +ij[12676] = 13 +id[12677] = "2936-11-17T15:41:05" +ik[12677] = 0.07 +il[12677] = 179 +im[12677] = 0.1713 +ij[12677] = 11 +id[12678] = "2936-12-11T23:29:38" +ik[12678] = 2.063 +il[12678] = 108 +im[12678] = 0.255 +ij[12678] = 28.2 +id[12679] = "2936-12-19T02:45:39" +ik[12679] = 66.96 +il[12679] = 131 +im[12679] = 0.1304 +ij[12679] = 7.1287 +id[12680] = "2937-02-08T02:32:27" +ik[12680] = 117.95 +il[12680] = -108 +im[12680] = 0.076 +ij[12680] = 14 +id[12681] = "2937-02-10T07:23:54" +ik[12681] = -1.792 +il[12681] = -160 +im[12681] = 0.0083 +ij[12681] = 4 +id[12682] = "2937-02-24T08:01:58" +ik[12682] = 38.771 +il[12682] = -37 +im[12682] = 0.0145 +ij[12682] = 1 +id[12683] = "2937-03-22T06:15:11" +ik[12683] = 2.828 +il[12683] = -126 +im[12683] = 0.0637 +ij[12683] = 27.2 +id[12684] = "2937-04-20T06:34:54" +ik[12684] = 12 +il[12684] = 142 +im[12684] = 0.0482 +ij[12684] = 18 +id[12685] = "2937-05-15T21:57:11" +ik[12685] = 31.432 +il[12685] = 154 +im[12685] = 0.0734 +ij[12685] = 9 +id[12686] = "2937-08-08T10:40:06" +ik[12686] = 0.592 +il[12686] = 46 +im[12686] = 0.0622 +ij[12686] = 28.2 +id[12687] = "2937-08-14T14:40:33" +ik[12687] = 1.028 +il[12687] = 45 +im[12687] = 0.0127 +ij[12687] = 28.1 +id[12688] = "2937-08-29T13:48:58" +ik[12688] = 1.064 +il[12688] = -148 +im[12688] = 0.0061 +ij[12688] = 28.6 +id[12689] = "2937-09-11T17:36:03" +ik[12689] = 25.967 +il[12689] = -81 +im[12689] = 0.0189 +ij[12689] = 16 +id[12690] = "2937-11-04T11:13:32" +ik[12690] = 0.28 +il[12690] = -179 +im[12690] = 0.0531 +ij[12690] = 12 +id[12691] = "2938-01-19T10:18:18" +ik[12691] = 1.93 +il[12691] = 47 +im[12691] = 0.0147 +ij[12691] = 28.1 +id[12692] = "2938-01-21T20:41:24" +ik[12692] = 0 +il[12692] = -86 +im[12692] = 0.0176 +ij[12692] = 17 +id[12693] = "2938-03-03T01:42:52" +ik[12693] = 1.576 +il[12693] = -133 +im[12693] = 0.027 +ij[12693] = 28.2 +id[12694] = "2938-03-21T21:33:15" +ik[12694] = 0.264 +il[12694] = 108 +im[12694] = 0.0318 +ij[12694] = 27.3 +id[12695] = "2938-04-17T07:44:16" +ik[12695] = 1.267 +il[12695] = -153 +im[12695] = 0.009 +ij[12695] = 28.2 +id[12696] = "2938-04-20T08:29:19" +ik[12696] = 0.834 +il[12696] = -135 +im[12696] = 0.0399 +ij[12696] = 27.5 +id[12697] = "2938-05-19T16:36:29" +ik[12697] = -25.229 +il[12697] = 25 +im[12697] = 0.048 +ij[12697] = 15 +id[12698] = "2938-05-20T20:39:24" +ik[12698] = 35.962 +il[12698] = -25 +im[12698] = 0.0639 +ij[12698] = 8 +id[12699] = "2938-06-16T19:06:45" +ik[12699] = 0.051 +il[12699] = -101 +im[12699] = 0.0372 +ij[12699] = 28.8 +id[12700] = "2938-06-30T19:48:23" +ik[12700] = 3.6 +il[12700] = 26 +im[12700] = 0.0498 +ij[12700] = 27.6 +id[12701] = "2938-09-06T03:27:45" +ik[12701] = 5.416 +il[12701] = -149 +im[12701] = 0.0827 +ij[12701] = 27.2 +id[12702] = "2938-09-09T07:04:56" +ik[12702] = 44.885 +il[12702] = -172 +im[12702] = 0.0119 +ij[12702] = 3 +id[12703] = "2938-09-27T09:10:10" +ik[12703] = 11 +il[12703] = -26 +im[12703] = 0.1143 +ij[12703] = 18 +id[12704] = "2938-09-28T18:04:49" +ik[12704] = -2.111 +il[12704] = -146 +im[12704] = 0.1354 +ij[12704] = 2 +id[12705] = "2938-11-28T02:32:57" +ik[12705] = 0 +il[12705] = -44 +im[12705] = 0.1803 +ij[12705] = 13 +id[12706] = "2939-01-06T02:31:45" +ik[12706] = 3.52 +il[12706] = -48 +im[12706] = 0.2274 +ij[12706] = 11 +id[12707] = "2939-01-10T09:53:54" +ik[12707] = 12 +il[12707] = 74 +im[12707] = 0.0355 +ij[12707] = 17 +id[12708] = "2939-02-12T09:43:35" +ik[12708] = 76.3 +il[12708] = 7 +im[12708] = 0.187 +ij[12708] = 7.1559 +id[12709] = "2939-03-13T20:35:44" +ik[12709] = 12 +il[12709] = 122 +im[12709] = 0.1495 +ij[12709] = 18 +id[12710] = "2939-04-08T02:19:02" +ik[12710] = -1.59 +il[12710] = -86 +im[12710] = 0.0987 +ij[12710] = 4 +id[12711] = "2939-04-12T19:54:54" +ik[12711] = 37.126 +il[12711] = 55 +im[12711] = 0.105 +ij[12711] = 1 +id[12712] = "2939-04-16T18:03:28" +ik[12712] = 139.65 +il[12712] = 120 +im[12712] = 0.0322 +ij[12712] = 14 +id[12713] = "2939-06-21T18:37:38" +ik[12713] = 31.335 +il[12713] = 19 +im[12713] = 0.0732 +ij[12713] = 9 +id[12714] = "2939-07-29T10:03:58" +ik[12714] = 1.308 +il[12714] = 149 +im[12714] = 0.035 +ij[12714] = 28.2 +id[12715] = "2939-08-24T15:54:51" +ik[12715] = 26.101 +il[12715] = -46 +im[12715] = 0.006 +ij[12715] = 16 +id[12716] = "2939-09-19T13:20:22" +ik[12716] = 1.814 +il[12716] = -117 +im[12716] = 0.0331 +ij[12716] = 28.6 +id[12717] = "2939-10-02T17:40:49" +ik[12717] = 0.358 +il[12717] = -50 +im[12717] = 0.0397 +ij[12717] = 28.7 +id[12718] = "2939-12-17T18:08:39" +ik[12718] = 0.53 +il[12718] = -27 +im[12718] = 0.0028 +ij[12718] = 12 +id[12719] = "2940-01-03T01:23:04" +ik[12719] = 0 +il[12719] = -160 +im[12719] = 0.0317 +ij[12719] = 17 +id[12720] = "2940-02-29T06:32:57" +ik[12720] = 0.292 +il[12720] = -48 +im[12720] = 0.0226 +ij[12720] = 27.3 +id[12721] = "2940-03-01T19:18:54" +ik[12721] = 0.128 +il[12721] = 146 +im[12721] = 0.0402 +ij[12721] = 28.5 +id[12722] = "2940-03-24T04:02:33" +ik[12722] = 0.223 +il[12722] = -130 +im[12722] = 0.0435 +ij[12722] = 28.2 +id[12723] = "2940-03-29T01:28:52" +ik[12723] = 0.657 +il[12723] = -45 +im[12723] = 0.0192 +ij[12723] = 27.5 +id[12724] = "2940-04-10T06:02:20" +ik[12724] = 0.754 +il[12724] = 4 +im[12724] = 0.0214 +ij[12724] = 28.1 +id[12725] = "2940-04-27T18:33:12" +ik[12725] = -25.567 +il[12725] = -14 +im[12725] = 0.027 +ij[12725] = 15 +id[12726] = "2940-05-30T06:05:23" +ik[12726] = 0.582 +il[12726] = 130 +im[12726] = 0.064 +ij[12726] = 28.8 +id[12727] = "2940-06-06T19:59:14" +ik[12727] = 3.081 +il[12727] = -4 +im[12727] = 0.026 +ij[12727] = 27.6 +id[12728] = "2940-08-09T00:34:25" +ik[12728] = 4.934 +il[12728] = -172 +im[12728] = 0.0667 +ij[12728] = 27.2 +id[12729] = "2940-08-09T13:26:57" +ik[12729] = 35.337 +il[12729] = 0 +im[12729] = 0.0727 +ij[12729] = 8 +id[12730] = "2940-08-28T02:25:37" +ik[12730] = 11 +il[12730] = -13 +im[12730] = 0.0796 +ij[12730] = 18 +id[12731] = "2940-10-26T12:22:53" +ik[12731] = 40.277 +il[12731] = 56 +im[12731] = 0.0707 +ij[12731] = 3 +id[12732] = "2940-10-28T20:12:50" +ik[12732] = -1.832 +il[12732] = -39 +im[12732] = 0.0214 +ij[12732] = 2 +id[12733] = "2941-01-02T18:03:56" +ik[12733] = 0 +il[12733] = -88 +im[12733] = 0.1828 +ij[12733] = 13 +id[12734] = "2941-01-07T19:20:00" +ik[12734] = 1.054 +il[12734] = -58 +im[12734] = 0.034 +ij[12734] = 28.2 +id[12735] = "2941-02-11T19:55:19" +ik[12735] = 4.39 +il[12735] = -114 +im[12735] = 0.2012 +ij[12735] = 11 +id[12736] = "2941-03-25T17:06:32" +ik[12736] = 81.96 +il[12736] = 119 +im[12736] = 0.1486 +ij[12736] = 7.1903 +id[12737] = "2941-05-22T09:54:51" +ik[12737] = 37.304 +il[12737] = 58 +im[12737] = 0.0602 +ij[12737] = 1 +id[12738] = "2941-05-24T03:10:37" +ik[12738] = -1.56 +il[12738] = 175 +im[12738] = 0.0239 +ij[12738] = 4 +id[12739] = "2941-05-31T05:31:24" +ik[12739] = 148.48 +il[12739] = -152 +im[12739] = 0.0945 +ij[12739] = 14 +id[12740] = "2941-07-29T09:42:57" +ik[12740] = 32.09 +il[12740] = -4 +im[12740] = 0.0657 +ij[12740] = 9 +id[12741] = "2941-08-04T01:57:42" +ik[12741] = 26.239 +il[12741] = 179 +im[12741] = 0.0149 +ij[12741] = 16 +id[12742] = "2941-09-25T08:07:27" +ik[12742] = 0.63 +il[12742] = -138 +im[12742] = 0.0545 +ij[12742] = 28.7 +id[12743] = "2941-10-09T12:31:58" +ik[12743] = 2.311 +il[12743] = -66 +im[12743] = 0.0585 +ij[12743] = 28.6 +id[12744] = "2941-10-15T08:23:49" +ik[12744] = 5.068 +il[12744] = 53 +im[12744] = 0.015 +ij[12744] = 28.1 +id[12745] = "2941-11-10T14:02:54" +ik[12745] = 3.621 +il[12745] = -137 +im[12745] = 0.0219 +ij[12745] = 27.4 +id[12746] = "2941-11-24T12:11:29" +ik[12746] = 6.138 +il[12746] = 27 +im[12746] = 0.0292 +ij[12746] = 27.1 +id[12747] = "2941-12-14T10:44:55" +ik[12747] = 0 +il[12747] = -106 +im[12747] = 0.0451 +ij[12747] = 17 +id[12748] = "2942-02-13T11:07:19" +ik[12748] = 1.07 +il[12748] = 138 +im[12748] = 0.0638 +ij[12748] = 12 +id[12749] = "2942-04-08T02:15:05" +ik[12749] = -25.787 +il[12749] = -136 +im[12749] = 0.0286 +ij[12749] = 15 +id[12750] = "2942-05-15T21:27:28" +ik[12750] = 0.962 +il[12750] = -42 +im[12750] = 0.0542 +ij[12750] = 28.8 +id[12751] = "2942-05-17T05:11:54" +ik[12751] = 2.755 +il[12751] = -153 +im[12751] = 0.0414 +ij[12751] = 27.6 +id[12752] = "2942-06-30T13:37:45" +ik[12752] = 4.551 +il[12752] = 164 +im[12752] = 0.0205 +ij[12752] = 28.1 +id[12753] = "2942-07-18T14:24:00" +ik[12753] = 4.622 +il[12753] = -31 +im[12753] = 0.0249 +ij[12753] = 27.2 +id[12754] = "2942-08-06T21:22:12" +ik[12754] = 12 +il[12754] = 53 +im[12754] = 0.0688 +ij[12754] = 18 +id[12755] = "2942-10-05T07:26:31" +ik[12755] = 32.813 +il[12755] = 119 +im[12755] = 0.074 +ij[12755] = 8 +id[12756] = "2942-11-30T08:08:24" +ik[12756] = -1.656 +il[12756] = -69 +im[12756] = 0.0962 +ij[12756] = 2 +id[12757] = "2942-12-08T03:29:57" +ik[12757] = 37.281 +il[12757] = 76 +im[12757] = 0.0404 +ij[12757] = 3 +id[12758] = "2943-02-05T05:31:52" +ik[12758] = 0 +il[12758] = -104 +im[12758] = 0.1587 +ij[12758] = 13 +id[12759] = "2943-03-17T22:10:26" +ik[12759] = 3.74 +il[12759] = 17 +im[12759] = 0.1811 +ij[12759] = 11 +id[12760] = "2943-04-14T19:41:36" +ik[12760] = 1.285 +il[12760] = 100 +im[12760] = 0.1852 +ij[12760] = 28.2 +id[12761] = "2943-04-28T11:41:29" +ik[12761] = 82.26 +il[12761] = -9 +im[12761] = 0.1797 +ij[12761] = 7.2115 +id[12762] = "2943-07-01T12:10:56" +ik[12762] = 39.051 +il[12762] = -117 +im[12762] = 0.0095 +ij[12762] = 1 +id[12763] = "2943-07-04T01:31:17" +ik[12763] = 148.83 +il[12763] = 67 +im[12763] = 0.0548 +ij[12763] = 14 +id[12764] = "2943-07-07T17:44:25" +ik[12764] = -1.667 +il[12764] = -140 +im[12764] = 0.099 +ij[12764] = 4 +id[12765] = "2943-07-11T15:44:41" +ik[12765] = 26.353 +il[12765] = -72 +im[12765] = 0.0673 +ij[12765] = 16 +id[12766] = "2943-09-13T13:27:24" +ik[12766] = 33.666 +il[12766] = -137 +im[12766] = 0.0589 +ij[12766] = 9 +id[12767] = "2943-09-17T05:42:00" +ik[12767] = 0.996 +il[12767] = 15 +im[12767] = 0.0842 +ij[12767] = 28.7 +id[12768] = "2943-10-21T14:08:21" +ik[12768] = 3.291 +il[12768] = -137 +im[12768] = 0.038 +ij[12768] = 27.4 +id[12769] = "2943-10-29T07:25:31" +ik[12769] = 2.404 +il[12769] = 40 +im[12769] = 0.0654 +ij[12769] = 28.6 +id[12770] = "2943-11-04T16:36:31" +ik[12770] = 6.442 +il[12770] = -36 +im[12770] = 0.0295 +ij[12770] = 27.1 +id[12771] = "2943-11-25T09:03:32" +ik[12771] = 0 +il[12771] = -80 +im[12771] = 0.0498 +ij[12771] = 17 +id[12772] = "2943-12-25T00:51:03" +ik[12772] = 0.94 +il[12772] = -26 +im[12772] = 0.0561 +ij[12772] = 28.2 +id[12773] = "2943-12-31T17:50:31" +ik[12773] = 4.534 +il[12773] = 145 +im[12773] = 0.0409 +ij[12773] = 28.1 +id[12774] = "2944-01-19T15:53:08" +ik[12774] = 0.235 +il[12774] = 1 +im[12774] = 0.0174 +ij[12774] = 27.3 +id[12775] = "2944-03-18T17:24:02" +ik[12775] = -25.963 +il[12775] = -150 +im[12775] = 0.0307 +ij[12775] = 15 +id[12776] = "2944-04-27T10:38:00" +ik[12776] = 0.35 +il[12776] = -17 +im[12776] = 0.0267 +ij[12776] = 12 +id[12777] = "2944-07-17T16:21:47" +ik[12777] = 12 +il[12777] = 137 +im[12777] = 0.0637 +ij[12777] = 18 +id[12778] = "2944-10-04T22:15:48" +ik[12778] = 1.269 +il[12778] = 96 +im[12778] = 0.0094 +ij[12778] = 28.2 +id[12779] = "2944-11-13T14:14:04" +ik[12779] = 31.182 +il[12779] = -120 +im[12779] = 0.0547 +ij[12779] = 8 +id[12780] = "2945-01-05T15:59:32" +ik[12780] = -1.581 +il[12780] = 6 +im[12780] = 0.1003 +ij[12780] = 2 +id[12781] = "2945-01-15T08:03:50" +ik[12781] = 36.167 +il[12781] = -142 +im[12781] = 0.0641 +ij[12781] = 3 +id[12782] = "2945-03-13T01:31:45" +ik[12782] = 0 +il[12782] = 142 +im[12782] = 0.1424 +ij[12782] = 13 +id[12783] = "2945-04-21T10:06:00" +ik[12783] = 1.83 +il[12783] = 9 +im[12783] = 0.1225 +ij[12783] = 11 +id[12784] = "2945-05-11T05:31:56" +ik[12784] = 0.841 +il[12784] = 54 +im[12784] = 0.1849 +ij[12784] = 28.1 +id[12785] = "2945-06-01T01:35:21" +ik[12785] = 80 +il[12785] = -50 +im[12785] = 0.1237 +ij[12785] = 7.1931 +id[12786] = "2945-06-18T00:03:33" +ik[12786] = 25.517 +il[12786] = 138 +im[12786] = 0.1738 +ij[12786] = 16 +id[12787] = "2945-08-01T13:29:09" +ik[12787] = 141.5 +il[12787] = 10 +im[12787] = 0.1171 +ij[12787] = 14 +id[12788] = "2945-08-13T11:37:49" +ik[12788] = 42.322 +il[12788] = 154 +im[12788] = 0.1174 +ij[12788] = 1 +id[12789] = "2945-08-15T05:09:46" +ik[12789] = -1.901 +il[12789] = -93 +im[12789] = 0.1147 +ij[12789] = 4 +id[12790] = "2945-09-04T04:23:56" +ik[12790] = 1.582 +il[12790] = 114 +im[12790] = 0.0144 +ij[12790] = 28.7 +id[12791] = "2945-09-27T15:17:58" +ik[12791] = 2.752 +il[12791] = 179 +im[12791] = 0.0949 +ij[12791] = 27.4 +id[12792] = "2945-11-03T21:02:07" +ik[12792] = 0 +il[12792] = 98 +im[12792] = 0.0429 +ij[12792] = 17 +id[12793] = "2945-11-13T19:36:17" +ik[12793] = 35.398 +il[12793] = -143 +im[12793] = 0.0237 +ij[12793] = 9 +id[12794] = "2945-11-14T15:03:03" +ik[12794] = 1.998 +il[12794] = -67 +im[12794] = 0.0115 +ij[12794] = 28.6 +id[12795] = "2945-12-19T16:51:30" +ik[12795] = 0.887 +il[12795] = -108 +im[12795] = 0.0767 +ij[12795] = 28.2 +id[12796] = "2945-12-28T21:07:52" +ik[12796] = 0.136 +il[12796] = -82 +im[12796] = 0.0121 +ij[12796] = 27.3 +id[12797] = "2946-01-26T12:46:23" +ik[12797] = 0.437 +il[12797] = -35 +im[12797] = 0.0151 +ij[12797] = 27.5 +id[12798] = "2946-02-27T00:54:56" +ik[12798] = -26.128 +il[12798] = 91 +im[12798] = 0.0244 +ij[12798] = 15 +id[12799] = "2946-03-17T14:59:26" +ik[12799] = 4.956 +il[12799] = 60 +im[12799] = 0.0644 +ij[12799] = 28.1 +id[12800] = "2946-04-06T11:14:38" +ik[12800] = 2.247 +il[12800] = -42 +im[12800] = 0.0368 +ij[12800] = 27.6 +id[12801] = "2946-06-26T03:50:00" +ik[12801] = 0.69 +il[12801] = 124 +im[12801] = 0.0552 +ij[12801] = 12 +id[12802] = "2946-06-29T04:03:20" +ik[12802] = 12 +il[12802] = -42 +im[12802] = 0.0565 +ij[12802] = 18 +id[12803] = "2946-09-01T07:01:01" +ik[12803] = 0.708 +il[12803] = -175 +im[12803] = 0.0044 +ij[12803] = 28.2 +id[12804] = "2946-09-16T01:14:31" +ik[12804] = 0.069 +il[12804] = 58 +im[12804] = 0.0159 +ij[12804] = 28.5 +id[12805] = "2946-11-13T01:06:20" +ik[12805] = 25.366 +il[12805] = -96 +im[12805] = 0.0277 +ij[12805] = 16 +id[12806] = "2946-12-17T22:55:50" +ik[12806] = 30.608 +il[12806] = -86 +im[12806] = 0.0798 +ij[12806] = 8 +id[12807] = "2947-02-14T15:25:30" +ik[12807] = 0.974 +il[12807] = -131 +im[12807] = 0.1002 +ij[12807] = 28.7 +id[12808] = "2947-02-24T07:07:07" +ik[12808] = -1.621 +il[12808] = 86 +im[12808] = 0.0973 +ij[12808] = 2 +id[12809] = "2947-02-26T10:59:48" +ik[12809] = 36.937 +il[12809] = 48 +im[12809] = 0.1125 +ij[12809] = 3 +id[12810] = "2947-03-21T21:35:32" +ik[12810] = 5.232 +il[12810] = 112 +im[12810] = 0.0657 +ij[12810] = 27.4 +id[12811] = "2947-04-23T22:44:14" +ik[12811] = 5.823 +il[12811] = 45 +im[12811] = 0.1977 +ij[12811] = 27.1 +id[12812] = "2947-04-29T13:29:38" +ik[12812] = 0 +il[12812] = -120 +im[12812] = 0.0306 +ij[12812] = 13 +id[12813] = "2947-05-02T00:27:29" +ik[12813] = 1.123 +il[12813] = 99 +im[12813] = 0.0955 +ij[12813] = 28.2 +id[12814] = "2947-06-03T09:31:20" +ik[12814] = 1.32 +il[12814] = -113 +im[12814] = 0.2889 +ij[12814] = 11 +id[12815] = "2947-07-02T20:58:53" +ik[12815] = 2.782 +il[12815] = 164 +im[12815] = 0.2152 +ij[12815] = 28.7 +id[12816] = "2947-07-11T19:41:31" +ik[12816] = 73.26 +il[12816] = -89 +im[12816] = 0.2285 +ij[12816] = 7.1391 +id[12817] = "2947-07-25T09:25:21" +ik[12817] = 3.031 +il[12817] = -163 +im[12817] = 0.2241 +ij[12817] = 28.7 +id[12818] = "2947-08-20T01:05:08" +ik[12818] = 1.35 +il[12818] = -147 +im[12818] = 0.1347 +ij[12818] = 27.4 +id[12819] = "2947-09-02T10:33:19" +ik[12819] = 125.88 +il[12819] = -158 +im[12819] = 0.0785 +ij[12819] = 14 +id[12820] = "2947-09-14T12:42:14" +ik[12820] = -2.224 +il[12820] = -72 +im[12820] = 0.0321 +ij[12820] = 4 +id[12821] = "2947-09-30T00:06:54" +ik[12821] = 45.907 +il[12821] = -91 +im[12821] = 0.0423 +ij[12821] = 1 +id[12822] = "2947-10-09T15:13:46" +ik[12822] = 0 +il[12822] = 137 +im[12822] = 0.0811 +ij[12822] = 17 +id[12823] = "2947-11-27T18:23:37" +ik[12823] = 1.114 +il[12823] = -147 +im[12823] = 0.0628 +ij[12823] = 28.6 +id[12824] = "2947-12-05T02:05:34" +ik[12824] = 0.125 +il[12824] = 170 +im[12824] = 0.0868 +ij[12824] = 27.3 +id[12825] = "2948-01-03T19:05:03" +ik[12825] = 0.449 +il[12825] = -154 +im[12825] = 0.0703 +ij[12825] = 27.5 +id[12826] = "2948-01-24T17:54:57" +ik[12826] = 34.922 +il[12826] = 67 +im[12826] = 0.0552 +ij[12826] = 9 +id[12827] = "2948-02-06T01:17:49" +ik[12827] = -26.302 +il[12827] = 75 +im[12827] = 0.0046 +ij[12827] = 15 +id[12828] = "2948-03-15T15:47:04" +ik[12828] = 1.971 +il[12828] = -132 +im[12828] = 0.0544 +ij[12828] = 27.6 +id[12829] = "2948-04-02T23:21:01" +ik[12829] = 1.957 +il[12829] = -65 +im[12829] = 0.0159 +ij[12829] = 28.8 +id[12830] = "2948-05-19T04:31:26" +ik[12830] = 3.913 +il[12830] = -60 +im[12830] = 0.0347 +ij[12830] = 27.2 +id[12831] = "2948-05-28T08:56:37" +ik[12831] = 0.886 +il[12831] = -37 +im[12831] = 0.0398 +ij[12831] = 28.1 +id[12832] = "2948-06-09T17:17:59" +ik[12832] = 12 +il[12832] = -49 +im[12832] = 0.0486 +ij[12832] = 18 +id[12833] = "2948-08-08T13:36:40" +ik[12833] = 1.12 +il[12833] = -139 +im[12833] = 0.0268 +ij[12833] = 12 +id[12834] = "2948-10-24T15:11:11" +ik[12834] = 25.6 +il[12834] = 67 +im[12834] = 0.0352 +ij[12834] = 16 +id[12835] = "2948-11-01T11:56:21" +ik[12835] = 6.166 +il[12835] = -168 +im[12835] = 0.0433 +ij[12835] = 28.1 +id[12836] = "2948-12-18T16:19:10" +ik[12836] = 0.235 +il[12836] = -141 +im[12836] = 0.0109 +ij[12836] = 28.5 +id[12837] = "2949-01-19T22:53:37" +ik[12837] = 31.042 +il[12837] = 69 +im[12837] = 0.0645 +ij[12837] = 8 +id[12838] = "2949-01-29T05:18:54" +ik[12838] = 0.458 +il[12838] = 61 +im[12838] = 0.0279 +ij[12838] = 28.7 +id[12839] = "2949-02-08T22:19:45" +ik[12839] = 4.783 +il[12839] = -93 +im[12839] = 0.067 +ij[12839] = 27.4 +id[12840] = "2949-02-25T09:27:30" +ik[12840] = 5.065 +il[12840] = -103 +im[12840] = 0.0597 +ij[12840] = 27.1 +id[12841] = "2949-03-19T13:46:17" +ik[12841] = 23 +il[12841] = 42 +im[12841] = 0.1081 +ij[12841] = 17 +id[12842] = "2949-04-21T08:20:49" +ik[12842] = 40.223 +il[12842] = 73 +im[12842] = 0.132 +ij[12842] = 3 +id[12843] = "2949-05-10T10:04:55" +ik[12843] = -1.89 +il[12843] = -133 +im[12843] = 0.0301 +ij[12843] = 2 +id[12844] = "2949-06-28T15:55:04" +ik[12844] = 4.211 +il[12844] = -114 +im[12844] = 0.2719 +ij[12844] = 27.3 +id[12845] = "2949-07-05T10:33:49" +ik[12845] = 0 +il[12845] = 31 +im[12845] = 0.0643 +ij[12845] = 13 +id[12846] = "2949-08-03T21:32:14" +ik[12846] = 6.18 +il[12846] = 136 +im[12846] = 0.2638 +ij[12846] = 11 +id[12847] = "2949-09-04T09:16:37" +ik[12847] = 4.652 +il[12847] = 90 +im[12847] = 0.3499 +ij[12847] = 28.2 +id[12848] = "2949-09-06T18:49:03" +ik[12848] = 63.34 +il[12848] = -30 +im[12848] = 0.2733 +ij[12848] = 7.101 +id[12849] = "2949-10-19T08:02:52" +ik[12849] = 105.9 +il[12849] = -169 +im[12849] = 0.1142 +ij[12849] = 14 +id[12850] = "2949-10-24T14:37:36" +ik[12850] = 1.637 +il[12850] = 144 +im[12850] = 0.1236 +ij[12850] = 27.3 +id[12851] = "2949-10-28T21:32:55" +ik[12851] = -2.353 +il[12851] = 82 +im[12851] = 0.2172 +ij[12851] = 4 +id[12852] = "2949-11-24T12:38:52" +ik[12852] = 44.901 +il[12852] = 116 +im[12852] = 0.1505 +ij[12852] = 1 +id[12853] = "2949-11-30T16:27:23" +ik[12853] = 0.005 +il[12853] = 119 +im[12853] = 0.1232 +ij[12853] = 28.6 +id[12854] = "2949-12-01T23:33:40" +ik[12854] = 0.832 +il[12854] = 25 +im[12854] = 0.0883 +ij[12854] = 27.5 +id[12855] = "2950-01-10T21:34:38" +ik[12855] = -26.472 +il[12855] = 80 +im[12855] = 0.1037 +ij[12855] = 15 +id[12856] = "2950-02-19T18:20:00" +ik[12856] = 1.606 +il[12856] = 149 +im[12856] = 0.085 +ij[12856] = 27.6 +id[12857] = "2950-03-18T01:05:34" +ik[12857] = 2.387 +il[12857] = -63 +im[12857] = 0.0455 +ij[12857] = 28.8 +id[12858] = "2950-03-20T11:35:23" +ik[12858] = 33.021 +il[12858] = 162 +im[12858] = 0.0712 +ij[12858] = 9 +id[12859] = "2950-04-28T15:05:01" +ik[12859] = 3.61 +il[12859] = 119 +im[12859] = 0.0275 +ij[12859] = 27.2 +id[12860] = "2950-05-21T16:13:35" +ik[12860] = 12 +il[12860] = -41 +im[12860] = 0.0499 +ij[12860] = 18 +id[12861] = "2950-06-08T10:25:58" +ik[12861] = 0.694 +il[12861] = -136 +im[12861] = 0.0172 +ij[12861] = 28.2 +id[12862] = "2950-09-15T05:42:01" +ik[12862] = 1.03 +il[12862] = 161 +im[12862] = 0.0256 +ij[12862] = 12 +id[12863] = "2950-10-07T01:16:01" +ik[12863] = 25.772 +il[12863] = -73 +im[12863] = 0.0469 +ij[12863] = 16 +id[12864] = "2950-12-06T09:35:31" +ik[12864] = 0.068 +il[12864] = 20 +im[12864] = 0.0577 +ij[12864] = 28.2 +id[12865] = "2951-01-16T17:57:18" +ik[12865] = 4.453 +il[12865] = -69 +im[12865] = 0.0654 +ij[12865] = 27.4 +id[12866] = "2951-01-20T00:30:31" +ik[12866] = 0.129 +il[12866] = -136 +im[12866] = 0.0648 +ij[12866] = 28.7 +id[12867] = "2951-01-25T22:32:54" +ik[12867] = 1.676 +il[12867] = -44 +im[12867] = 0.0095 +ij[12867] = 28.2 +id[12868] = "2951-01-31T14:29:30" +ik[12868] = 5.363 +il[12868] = 131 +im[12868] = 0.0703 +ij[12868] = 27.1 +id[12869] = "2951-02-20T10:59:55" +ik[12869] = 0 +il[12869] = 9 +im[12869] = 0.0424 +ij[12869] = 17 +id[12870] = "2951-02-27T23:18:30" +ik[12870] = 32.548 +il[12870] = -103 +im[12870] = 0.0728 +ij[12870] = 8 +id[12871] = "2951-03-13T23:27:51" +ik[12871] = 0.208 +il[12871] = 27 +im[12871] = 0.068 +ij[12871] = 28.5 +id[12872] = "2951-04-26T08:12:10" +ik[12872] = 0.006 +il[12872] = -54 +im[12872] = 0.0996 +ij[12872] = 27.3 +id[12873] = "2951-05-29T07:17:10" +ik[12873] = 1.604 +il[12873] = -87 +im[12873] = 0.1318 +ij[12873] = 27.5 +id[12874] = "2951-06-08T05:40:56" +ik[12874] = 0.316 +il[12874] = 32 +im[12874] = 0.1036 +ij[12874] = 28.6 +id[12875] = "2951-07-02T18:56:44" +ik[12875] = 46.127 +il[12875] = 67 +im[12875] = 0.0141 +ij[12875] = 3 +id[12876] = "2951-08-02T13:21:23" +ik[12876] = -2.377 +il[12876] = 88 +im[12876] = 0.0894 +ij[12876] = 2 +id[12877] = "2951-09-19T08:03:23" +ik[12877] = 0 +il[12877] = -87 +im[12877] = 0.3278 +ij[12877] = 13 +id[12878] = "2951-10-01T15:07:55" +ik[12878] = 6.213 +il[12878] = -72 +im[12878] = 0.338 +ij[12878] = 27.6 +id[12879] = "2951-10-24T00:14:01" +ik[12879] = 2.65 +il[12879] = -11 +im[12879] = 0.1605 +ij[12879] = 11 +id[12880] = "2951-11-22T11:04:11" +ik[12880] = 64.13 +il[12880] = -47 +im[12880] = 0.2465 +ij[12880] = 7.1207 +id[12881] = "2951-12-12T02:47:28" +ik[12881] = -25.023 +il[12881] = -94 +im[12881] = 0.1728 +ij[12881] = 15 +id[12882] = "2952-01-07T00:34:57" +ik[12882] = 109.69 +il[12882] = -175 +im[12882] = 0.1752 +ij[12882] = 14 +id[12883] = "2952-01-10T17:22:22" +ik[12883] = 1.08 +il[12883] = -31 +im[12883] = 0.0793 +ij[12883] = 27.6 +id[12884] = "2952-01-14T17:26:44" +ik[12884] = -1.936 +il[12884] = 6 +im[12884] = 0.0662 +ij[12884] = 4 +id[12885] = "2952-02-02T18:11:48" +ik[12885] = 40.07 +il[12885] = 175 +im[12885] = 0.1444 +ij[12885] = 1 +id[12886] = "2952-02-23T09:06:04" +ik[12886] = 3.056 +il[12886] = 146 +im[12886] = 0.005 +ij[12886] = 28.8 +id[12887] = "2952-04-03T10:40:34" +ik[12887] = 3.133 +il[12887] = 140 +im[12887] = 0.0657 +ij[12887] = 27.2 +id[12888] = "2952-04-29T16:51:15" +ik[12888] = 12 +il[12888] = -66 +im[12888] = 0.0764 +ij[12888] = 18 +id[12889] = "2952-05-01T01:49:10" +ik[12889] = 31.706 +il[12889] = 173 +im[12889] = 0.0664 +ij[12889] = 9 +id[12890] = "2952-05-27T06:21:31" +ik[12890] = 3.267 +il[12890] = -8 +im[12890] = 0.0698 +ij[12890] = 28.2 +id[12891] = "2952-07-24T06:27:35" +ik[12891] = 2.135 +il[12891] = 180 +im[12891] = 0.0577 +ij[12891] = 28.1 +id[12892] = "2952-09-18T15:10:54" +ik[12892] = 25.915 +il[12892] = -113 +im[12892] = 0.0542 +ij[12892] = 16 +id[12893] = "2952-10-20T15:24:14" +ik[12893] = 0.55 +il[12893] = -168 +im[12893] = 0.0408 +ij[12893] = 12 +id[12894] = "2952-12-26T19:08:51" +ik[12894] = 4.197 +il[12894] = -95 +im[12894] = 0.0601 +ij[12894] = 27.4 +id[12895] = "2953-01-03T08:06:01" +ik[12895] = 1.997 +il[12895] = 146 +im[12895] = 0.023 +ij[12895] = 28.2 +id[12896] = "2953-01-10T01:48:54" +ik[12896] = 5.602 +il[12896] = -60 +im[12896] = 0.0552 +ij[12896] = 27.1 +id[12897] = "2953-01-11T18:40:08" +ik[12897] = 0.112 +il[12897] = 63 +im[12897] = 0.0596 +ij[12897] = 28.7 +id[12898] = "2953-01-29T12:44:36" +ik[12898] = 0 +il[12898] = -37 +im[12898] = 0.0552 +ij[12898] = 17 +id[12899] = "2953-03-30T14:20:53" +ik[12899] = 0.233 +il[12899] = 155 +im[12899] = 0.0363 +ij[12899] = 27.3 +id[12900] = "2953-04-21T23:56:16" +ik[12900] = 35.059 +il[12900] = -136 +im[12900] = 0.083 +ij[12900] = 8 +id[12901] = "2953-04-29T12:10:44" +ik[12901] = 0.948 +il[12901] = 112 +im[12901] = 0.0203 +ij[12901] = 27.5 +id[12902] = "2953-05-14T08:35:31" +ik[12902] = 0.184 +il[12902] = -52 +im[12902] = 0.0083 +ij[12902] = 28.5 +id[12903] = "2953-05-28T16:13:20" +ik[12903] = -25.022 +il[12903] = -29 +im[12903] = 0.0137 +ij[12903] = 15 +id[12904] = "2953-06-11T20:03:31" +ik[12904] = 0.656 +il[12904] = 50 +im[12904] = 0.022 +ij[12904] = 28.6 +id[12905] = "2953-07-11T11:26:18" +ik[12905] = 3.932 +il[12905] = 107 +im[12905] = 0.0124 +ij[12905] = 27.6 +id[12906] = "2953-08-12T08:12:40" +ik[12906] = 0.052 +il[12906] = 107 +im[12906] = 0.0648 +ij[12906] = 28.8 +id[12907] = "2953-08-22T04:16:45" +ik[12907] = 46.511 +il[12907] = -97 +im[12907] = 0.0356 +ij[12907] = 3 +id[12908] = "2953-09-15T22:36:58" +ik[12908] = -2.237 +il[12908] = -129 +im[12908] = 0.1386 +ij[12908] = 2 +id[12909] = "2953-09-23T03:33:08" +ik[12909] = 5.651 +il[12909] = -132 +im[12909] = 0.0866 +ij[12909] = 27.2 +id[12910] = "2953-11-01T19:26:13" +ik[12910] = 12 +il[12910] = 18 +im[12910] = 0.0578 +ij[12910] = 18 +id[12911] = "2953-11-08T04:37:20" +ik[12911] = 12 +il[12911] = -57 +im[12911] = 0.2132 +ij[12911] = 17 +id[12912] = "2953-11-12T00:35:27" +ik[12912] = 0 +il[12912] = 41 +im[12912] = 0.1808 +ij[12912] = 13 +id[12913] = "2953-11-12T16:39:26" +ik[12913] = 1.384 +il[12913] = 166 +im[12913] = 0.1551 +ij[12913] = 28.2 +id[12914] = "2953-12-19T22:11:21" +ik[12914] = 2.52 +il[12914] = 66 +im[12914] = 0.2869 +ij[12914] = 11 +id[12915] = "2954-01-03T12:13:30" +ik[12915] = 1.625 +il[12915] = -179 +im[12915] = 0.2301 +ij[12915] = 27.2 +id[12916] = "2954-01-24T06:48:27" +ik[12916] = 73.26 +il[12916] = 89 +im[12916] = 0.0799 +ij[12916] = 7.1437 +id[12917] = "2954-02-14T22:04:51" +ik[12917] = 1.822 +il[12917] = 63 +im[12917] = 0.1368 +ij[12917] = 27.2 +id[12918] = "2954-03-18T18:12:05" +ik[12918] = -1.645 +il[12918] = 61 +im[12918] = 0.0179 +ij[12918] = 4 +id[12919] = "2954-03-24T15:50:10" +ik[12919] = 132.64 +il[12919] = 152 +im[12919] = 0.1042 +ij[12919] = 14 +id[12920] = "2954-03-26T15:19:43" +ik[12920] = 37.521 +il[12920] = 179 +im[12920] = 0.1071 +ij[12920] = 1 +id[12921] = "2954-04-01T23:56:23" +ik[12921] = 12 +il[12921] = 110 +im[12921] = 0.0146 +ij[12921] = 18 +id[12922] = "2954-06-07T11:57:36" +ik[12922] = 31.271 +il[12922] = -161 +im[12922] = 0.0699 +ij[12922] = 9 +id[12923] = "2954-08-31T20:24:45" +ik[12923] = 26.05 +il[12923] = 170 +im[12923] = 0.0574 +ij[12923] = 16 +id[12924] = "2954-09-21T22:13:06" +ik[12924] = 1.071 +il[12924] = -14 +im[12924] = 0.0194 +ij[12924] = 28.1 +id[12925] = "2954-11-29T16:47:48" +ik[12925] = 0.2 +il[12925] = 31 +im[12925] = 0.0228 +ij[12925] = 12 +id[12926] = "2955-01-10T09:17:56" +ik[12926] = 0 +il[12926] = 8 +im[12926] = 0.0422 +ij[12926] = 17 +id[12927] = "2955-03-09T05:29:34" +ik[12927] = 0.287 +il[12927] = -92 +im[12927] = 0.0508 +ij[12927] = 27.3 +id[12928] = "2955-03-10T13:38:55" +ik[12928] = 1.261 +il[12928] = 157 +im[12928] = 0.0364 +ij[12928] = 28.1 +id[12929] = "2955-04-07T05:26:22" +ik[12929] = 0.714 +il[12929] = -171 +im[12929] = 0.0552 +ij[12929] = 27.5 +id[12930] = "2955-05-06T19:17:08" +ik[12930] = -25.456 +il[12930] = -94 +im[12930] = 0.0532 +ij[12930] = 15 +id[12931] = "2955-06-16T10:53:04" +ik[12931] = 3.249 +il[12931] = 68 +im[12931] = 0.0719 +ij[12931] = 27.6 +id[12932] = "2955-06-21T09:51:03" +ik[12932] = 1.234 +il[12932] = 132 +im[12932] = 0.0109 +ij[12932] = 28.6 +id[12933] = "2955-07-09T13:29:08" +ik[12933] = 0.092 +il[12933] = -104 +im[12933] = 0.0445 +ij[12933] = 28.5 +id[12934] = "2955-07-11T10:13:09" +ik[12934] = 36.123 +il[12934] = -37 +im[12934] = 0.0699 +ij[12934] = 8 +id[12935] = "2955-07-22T03:52:14" +ik[12935] = 0.838 +il[12935] = 164 +im[12935] = 0.0218 +ij[12935] = 28.8 +id[12936] = "2955-08-19T12:04:25" +ik[12936] = 5.093 +il[12936] = -41 +im[12936] = 0.0132 +ij[12936] = 27.2 +id[12937] = "2955-09-07T18:38:14" +ik[12937] = 11 +il[12937] = 50 +im[12937] = 0.0946 +ij[12937] = 18 +id[12938] = "2955-10-09T01:36:46" +ik[12938] = 41.968 +il[12938] = -109 +im[12938] = 0.1168 +ij[12938] = 3 +id[12939] = "2955-10-17T19:00:59" +ik[12939] = -1.93 +il[12939] = 75 +im[12939] = 0.0533 +ij[12939] = 2 +id[12940] = "2955-12-20T15:50:38" +ik[12940] = 0 +il[12940] = 22 +im[12940] = 0.1361 +ij[12940] = 13 +id[12941] = "2956-01-15T12:27:29" +ik[12941] = 1.936 +il[12941] = -45 +im[12941] = 0.2011 +ij[12941] = 28.1 +id[12942] = "2956-01-29T22:17:35" +ik[12942] = 4.28 +il[12942] = -67 +im[12942] = 0.1711 +ij[12942] = 11 +id[12943] = "2956-02-17T18:33:04" +ik[12943] = 3.352 +il[12943] = -22 +im[12943] = 0.1034 +ij[12943] = 28.1 +id[12944] = "2956-02-22T00:48:56" +ik[12944] = 2.927 +il[12944] = -77 +im[12944] = 0.2071 +ij[12944] = 28.2 +id[12945] = "2956-03-10T14:53:14" +ik[12945] = 80.96 +il[12945] = -133 +im[12945] = 0.1251 +ij[12945] = 7.177 +id[12946] = "2956-05-06T09:09:00" +ik[12946] = -1.554 +il[12946] = 131 +im[12946] = 0.0518 +ij[12946] = 4 +id[12947] = "2956-05-06T23:37:40" +ik[12947] = 37.043 +il[12947] = -80 +im[12947] = 0.038 +ij[12947] = 1 +id[12948] = "2956-05-15T10:12:00" +ik[12948] = 146.76 +il[12948] = -158 +im[12948] = 0.1042 +ij[12948] = 14 +id[12949] = "2956-07-13T20:47:23" +ik[12949] = 31.692 +il[12949] = -107 +im[12949] = 0.0707 +ij[12949] = 9 +id[12950] = "2956-08-12T00:20:35" +ik[12950] = 26.187 +il[12950] = 122 +im[12950] = 0.0612 +ij[12950] = 16 +id[12951] = "2956-10-09T21:12:26" +ik[12951] = 0.126 +il[12951] = 20 +im[12951] = 0.0432 +ij[12951] = 28.2 +id[12952] = "2956-12-21T18:26:40" +ik[12952] = 0 +il[12952] = 65 +im[12952] = 0.0262 +ij[12952] = 17 +id[12953] = "2957-01-18T23:54:28" +ik[12953] = 0.96 +il[12953] = -93 +im[12953] = 0.0352 +ij[12953] = 12 +id[12954] = "2957-04-15T18:07:57" +ik[12954] = -25.71 +il[12954] = -76 +im[12954] = 0.0456 +ij[12954] = 15 +id[12955] = "2957-04-27T18:36:27" +ik[12955] = 0.933 +il[12955] = 34 +im[12955] = 0.0622 +ij[12955] = 28.2 +id[12956] = "2957-05-25T04:13:48" +ik[12956] = 2.87 +il[12956] = 158 +im[12956] = 0.0641 +ij[12956] = 27.6 +id[12957] = "2957-05-27T20:52:52" +ik[12957] = 2.376 +il[12957] = -65 +im[12957] = 0.0568 +ij[12957] = 28.1 +id[12958] = "2957-07-02T01:50:36" +ik[12958] = 1.456 +il[12958] = -153 +im[12958] = 0.0261 +ij[12958] = 28.6 +id[12959] = "2957-07-05T16:19:01" +ik[12959] = 1.263 +il[12959] = 25 +im[12959] = 0.0653 +ij[12959] = 28.8 +id[12960] = "2957-07-26T17:24:04" +ik[12960] = 4.732 +il[12960] = -145 +im[12960] = 0.0367 +ij[12960] = 27.2 +id[12961] = "2957-07-29T01:53:57" +ik[12961] = 2.254 +il[12961] = 110 +im[12961] = 0.0061 +ij[12961] = 28.2 +id[12962] = "2957-08-14T20:53:24" +ik[12962] = 12 +il[12962] = -10 +im[12962] = 0.0213 +ij[12962] = 18 +id[12963] = "2957-09-15T23:20:45" +ik[12963] = 0.205 +il[12963] = -95 +im[12963] = 0.0689 +ij[12963] = 28.5 +id[12964] = "2957-09-16T01:25:09" +ik[12964] = 33.742 +il[12964] = -125 +im[12964] = 0.0696 +ij[12964] = 8 +id[12965] = "2957-11-17T08:50:21" +ik[12965] = -1.713 +il[12965] = 8 +im[12965] = 0.0727 +ij[12965] = 2 +id[12966] = "2957-11-22T06:50:41" +ik[12966] = 38.221 +il[12966] = 85 +im[12966] = 0.0298 +ij[12966] = 3 +id[12967] = "2958-01-22T10:12:28" +ik[12967] = 0 +il[12967] = -94 +im[12967] = 0.1705 +ij[12967] = 13 +id[12968] = "2958-03-04T18:44:15" +ik[12968] = 4.14 +il[12968] = 157 +im[12968] = 0.2111 +ij[12968] = 11 +id[12969] = "2958-04-15T09:15:04" +ik[12969] = 82.96 +il[12969] = 117 +im[12969] = 0.1708 +ij[12969] = 7.2066 +id[12970] = "2958-05-14T13:28:52" +ik[12970] = 0.978 +il[12970] = -27 +im[12970] = 0.1103 +ij[12970] = 28.5 +id[12971] = "2958-06-15T15:43:46" +ik[12971] = 38.179 +il[12971] = -111 +im[12971] = 0.0086 +ij[12971] = 1 +id[12972] = "2958-06-20T12:01:28" +ik[12972] = -1.61 +il[12972] = -9 +im[12972] = 0.093 +ij[12972] = 4 +id[12973] = "2958-06-21T17:46:52" +ik[12973] = 150.32 +il[12973] = -83 +im[12973] = 0.1 +ij[12973] = 14 +id[12974] = "2958-07-21T13:20:32" +ik[12974] = 26.322 +il[12974] = -87 +im[12974] = 0.0865 +ij[12974] = 16 +id[12975] = "2958-08-25T04:43:22" +ik[12975] = 32.962 +il[12975] = 18 +im[12975] = 0.0106 +ij[12975] = 9 +id[12976] = "2958-10-04T09:42:33" +ik[12976] = 1.609 +il[12976] = -26 +im[12976] = 0.0457 +ij[12976] = 28.2 +id[12977] = "2958-10-29T15:32:13" +ik[12977] = 3.434 +il[12977] = 133 +im[12977] = 0.0657 +ij[12977] = 27.4 +id[12978] = "2958-11-12T15:28:32" +ik[12978] = 6.311 +il[12978] = -90 +im[12978] = 0.0701 +ij[12978] = 27.1 +id[12979] = "2958-11-30T19:56:39" +ik[12979] = 4.348 +il[12979] = 21 +im[12979] = 0.044 +ij[12979] = 28.1 +id[12980] = "2958-12-02T23:26:17" +ik[12980] = 0 +il[12980] = -10 +im[12980] = 0.016 +ij[12980] = 17 +id[12981] = "2958-12-21T20:39:40" +ik[12981] = 0.574 +il[12981] = -144 +im[12981] = 0.0323 +ij[12981] = 28.7 +id[12982] = "2959-03-27T08:05:53" +ik[12982] = -25.898 +il[12982] = -77 +im[12982] = 0.0371 +ij[12982] = 15 +id[12983] = "2959-03-30T18:39:49" +ik[12983] = 0.78 +il[12983] = 161 +im[12983] = 0.0081 +ij[12983] = 12 +id[12984] = "2959-06-22T02:41:42" +ik[12984] = 1.558 +il[12984] = -65 +im[12984] = 0.0417 +ij[12984] = 28.8 +id[12985] = "2959-06-23T22:05:07" +ik[12985] = 2.13 +il[12985] = 22 +im[12985] = 0.0223 +ij[12985] = 28.2 +id[12986] = "2959-07-06T11:42:35" +ik[12986] = 4.469 +il[12986] = -60 +im[12986] = 0.0452 +ij[12986] = 27.2 +id[12987] = "2959-07-15T10:12:13" +ik[12987] = 1.337 +il[12987] = 50 +im[12987] = 0.0596 +ij[12987] = 28.6 +id[12988] = "2959-07-26T02:11:36" +ik[12988] = 12 +il[12988] = -86 +im[12988] = 0.0183 +ij[12988] = 18 +id[12989] = "2959-10-31T00:54:29" +ik[12989] = 31.69 +il[12989] = 152 +im[12989] = 0.025 +ij[12989] = 8 +id[12990] = "2959-12-22T06:05:02" +ik[12990] = -1.599 +il[12990] = -140 +im[12990] = 0.0931 +ij[12990] = 2 +id[12991] = "2959-12-26T08:04:25" +ik[12991] = 0.644 +il[12991] = -131 +im[12991] = 0.0451 +ij[12991] = 28.5 +id[12992] = "2960-01-01T03:09:47" +ik[12992] = 36.387 +il[12992] = -1 +im[12992] = 0.0797 +ij[12992] = 3 +id[12993] = "2960-02-26T17:47:19" +ik[12993] = 0 +il[12993] = -35 +im[12993] = 0.1465 +ij[12993] = 13 +id[12994] = "2960-03-04T01:52:32" +ik[12994] = 1.955 +il[12994] = -95 +im[12994] = 0.1438 +ij[12994] = 28.2 +id[12995] = "2960-03-20T12:43:47" +ik[12995] = 1.899 +il[12995] = -107 +im[12995] = 0.0288 +ij[12995] = 28.5 +id[12996] = "2960-04-07T03:28:42" +ik[12996] = 2.72 +il[12996] = -174 +im[12996] = 0.1703 +ij[12996] = 11 +id[12997] = "2960-04-24T14:16:18" +ik[12997] = 0.173 +il[12997] = -30 +im[12997] = 0.2202 +ij[12997] = 28.1 +id[12998] = "2960-05-18T16:49:55" +ik[12998] = 81.96 +il[12998] = 165 +im[12998] = 0.1871 +ij[12998] = 7.2059 +id[12999] = "2960-06-23T00:55:23" +ik[12999] = 26.223 +il[12999] = 26 +im[12999] = 0.0465 +ij[12999] = 16 +id[13000] = "2960-07-21T05:29:42" +ik[13000] = 145.49 +il[13000] = -128 +im[13000] = 0.0383 +ij[13000] = 14 +id[13001] = "2960-07-26T17:58:42" +ik[13001] = 40.878 +il[13001] = 98 +im[13001] = 0.0896 +ij[13001] = 1 +id[13002] = "2960-08-01T07:31:15" +ik[13002] = -1.795 +il[13002] = -51 +im[13002] = 0.0753 +ij[13002] = 4 +id[13003] = "2960-09-10T04:40:11" +ik[13003] = 1.723 +il[13003] = 20 +im[13003] = 0.0984 +ij[13003] = 28.5 +id[13004] = "2960-10-07T05:58:43" +ik[13004] = 3.004 +il[13004] = -95 +im[13004] = 0.0838 +ij[13004] = 27.4 +id[13005] = "2960-10-18T03:37:36" +ik[13005] = 34.826 +il[13005] = 46 +im[13005] = 0.0357 +ij[13005] = 9 +id[13006] = "2960-11-12T05:00:59" +ik[13006] = 0 +il[13006] = -89 +im[13006] = 0.0304 +ij[13006] = 17 +id[13007] = "2960-12-12T23:02:19" +ik[13007] = 0.683 +il[13007] = -57 +im[13007] = 0.007 +ij[13007] = 28.7 +id[13008] = "2961-01-06T06:03:11" +ik[13008] = 0.187 +il[13008] = 77 +im[13008] = 0.0602 +ij[13008] = 27.3 +id[13009] = "2961-02-03T18:15:54" +ik[13009] = 0.449 +il[13009] = 174 +im[13009] = 0.0604 +ij[13009] = 27.5 +id[13010] = "2961-02-14T11:51:42" +ik[13010] = 5.456 +il[13010] = 16 +im[13010] = 0.0663 +ij[13010] = 28.1 +id[13011] = "2961-03-06T21:01:47" +ik[13011] = -26.065 +il[13011] = 83 +im[13011] = 0.0388 +ij[13011] = 15 +id[13012] = "2961-06-05T06:36:16" +ik[13012] = 0.35 +il[13012] = 105 +im[13012] = 0.0086 +ij[13012] = 12 +id[13013] = "2961-07-06T09:39:25" +ik[13013] = 12 +il[13013] = 164 +im[13013] = 0.0337 +ij[13013] = 18 +id[13014] = "2961-11-20T18:07:09" +ik[13014] = 25.241 +il[13014] = -63 +im[13014] = 0.0524 +ij[13014] = 16 +id[13015] = "2961-12-04T22:00:15" +ik[13015] = 30.712 +il[13015] = 16 +im[13015] = 0.0553 +ij[13015] = 8 +id[13016] = "2962-02-02T16:37:56" +ik[13016] = -1.588 +il[13016] = -48 +im[13016] = 0.0118 +ij[13016] = 2 +id[13017] = "2962-02-09T05:35:39" +ik[13017] = 36.39 +il[13017] = -180 +im[13017] = 0.114 +ij[13017] = 3 +id[13018] = "2962-04-09T05:30:11" +ik[13018] = 0 +il[13018] = 24 +im[13018] = 0.1912 +ij[13018] = 13 +id[13019] = "2962-05-16T05:18:03" +ik[13019] = 0.09 +il[13019] = 1 +im[13019] = 0.2272 +ij[13019] = 11 +id[13020] = "2962-06-14T15:48:04" +ik[13020] = 2.086 +il[13020] = -83 +im[13020] = 0.2277 +ij[13020] = 28.2 +id[13021] = "2962-06-25T04:32:46" +ik[13021] = 76.96 +il[13021] = -172 +im[13021] = 0.2135 +ij[13021] = 7.162 +id[13022] = "2962-08-20T04:12:34" +ik[13022] = 132.95 +il[13022] = 19 +im[13022] = 0.1481 +ij[13022] = 14 +id[13023] = "2962-09-02T18:54:50" +ik[13023] = -2.094 +il[13023] = -69 +im[13023] = 0.1079 +ij[13023] = 4 +id[13024] = "2962-09-09T01:17:21" +ik[13024] = 2.125 +il[13024] = -103 +im[13024] = 0.0788 +ij[13024] = 27.4 +id[13025] = "2962-09-11T08:51:38" +ik[13025] = 44.692 +il[13025] = 166 +im[13025] = 0.0175 +ij[13025] = 1 +id[13026] = "2962-10-20T15:06:39" +ik[13026] = 0 +il[13026] = 97 +im[13026] = 0.1048 +ij[13026] = 17 +id[13027] = "2962-11-25T03:28:49" +ik[13027] = 1.102 +il[13027] = -98 +im[13027] = 0.0272 +ij[13027] = 28.5 +id[13028] = "2962-12-02T19:52:53" +ik[13028] = 0.817 +il[13028] = 91 +im[13028] = 0.0778 +ij[13028] = 28.7 +id[13029] = "2962-12-15T01:28:53" +ik[13029] = 0.016 +il[13029] = 128 +im[13029] = 0.0947 +ij[13029] = 27.3 +id[13030] = "2962-12-28T17:08:42" +ik[13030] = 35.455 +il[13030] = 27 +im[13030] = 0.0811 +ij[13030] = 9 +id[13031] = "2963-01-13T04:08:31" +ik[13031] = 0.43 +il[13031] = 13 +im[13031] = 0.0849 +ij[13031] = 27.5 +id[13032] = "2963-02-14T13:23:37" +ik[13032] = -26.235 +il[13032] = -170 +im[13032] = 0.0592 +ij[13032] = 15 +id[13033] = "2963-03-25T00:42:57" +ik[13033] = 2.085 +il[13033] = 30 +im[13033] = 0.0653 +ij[13033] = 27.6 +id[13034] = "2963-03-27T13:34:29" +ik[13034] = 0.048 +il[13034] = -139 +im[13034] = 0.0661 +ij[13034] = 28.2 +id[13035] = "2963-05-04T02:54:07" +ik[13035] = 2.378 +il[13035] = 27 +im[13035] = 0.0251 +ij[13035] = 28.1 +id[13036] = "2963-06-17T23:41:43" +ik[13036] = 12 +il[13036] = 149 +im[13036] = 0.0477 +ij[13036] = 18 +id[13037] = "2963-07-24T11:35:49" +ik[13037] = 1.02 +il[13037] = -43 +im[13037] = 0.0368 +ij[13037] = 12 +id[13038] = "2963-10-04T21:53:46" +ik[13038] = 3.239 +il[13038] = -19 +im[13038] = 0.0224 +ij[13038] = 28.1 +id[13039] = "2963-11-01T17:03:59" +ik[13039] = 25.52 +il[13039] = -42 +im[13039] = 0.0331 +ij[13039] = 16 +id[13040] = "2963-12-03T02:47:14" +ik[13040] = 0.51 +il[13040] = 118 +im[13040] = 0.0012 +ij[13040] = 28.2 +id[13041] = "2964-01-07T11:43:49" +ik[13041] = 30.75 +il[13041] = -37 +im[13041] = 0.0766 +ij[13041] = 8 +id[13042] = "2964-02-21T08:44:51" +ik[13042] = 4.947 +il[13042] = 76 +im[13042] = 0.0929 +ij[13042] = 27.4 +id[13043] = "2964-03-10T14:32:27" +ik[13043] = 4.935 +il[13043] = 162 +im[13043] = 0.0467 +ij[13043] = 27.1 +id[13044] = "2964-03-28T12:15:41" +ik[13044] = 38.558 +il[13044] = 6 +im[13044] = 0.0444 +ij[13044] = 3 +id[13045] = "2964-04-06T02:50:15" +ik[13045] = 23 +il[13045] = -131 +im[13045] = 0.1019 +ij[13045] = 17 +id[13046] = "2964-04-06T19:56:11" +ik[13046] = -1.74 +il[13046] = -21 +im[13046] = 0.0859 +ij[13046] = 2 +id[13047] = "2964-06-06T04:13:03" +ik[13047] = 0 +il[13047] = 65 +im[13047] = 0.1191 +ij[13047] = 13 +id[13048] = "2964-07-07T01:34:56" +ik[13048] = 4.42 +il[13048] = 20 +im[13048] = 0.3303 +ij[13048] = 11 +id[13049] = "2964-07-09T05:05:32" +ik[13049] = 0 +il[13049] = 175 +im[13049] = 0.3291 +ij[13049] = 18 +id[13050] = "2964-08-12T03:15:38" +ik[13050] = 66.96 +il[13050] = 162 +im[13050] = 0.0956 +ij[13050] = 7.1092 +id[13051] = "2964-09-09T21:04:01" +ik[13051] = 0 +il[13051] = 177 +im[13051] = 0.1155 +ij[13051] = 17 +id[13052] = "2964-09-27T05:09:25" +ik[13052] = 113.04 +il[13052] = -133 +im[13052] = 0.2 +ij[13052] = 14 +id[13053] = "2964-10-07T02:02:25" +ik[13053] = -2.369 +il[13053] = 11 +im[13053] = 0.0497 +ij[13053] = 4 +id[13054] = "2964-10-30T15:38:44" +ik[13054] = 46.181 +il[13054] = 39 +im[13054] = 0.1266 +ij[13054] = 1 +id[13055] = "2964-11-14T16:34:33" +ik[13055] = 0.606 +il[13055] = 172 +im[13055] = 0.0867 +ij[13055] = 27.3 +id[13056] = "2964-11-14T16:52:29" +ik[13056] = 1.226 +il[13056] = 168 +im[13056] = 0.0863 +ij[13056] = 28.7 +id[13057] = "2964-12-16T19:20:06" +ik[13057] = 0.561 +il[13057] = 85 +im[13057] = 0.0171 +ij[13057] = 27.5 +id[13058] = "2965-01-20T16:31:26" +ik[13058] = 0.764 +il[13058] = 104 +im[13058] = 0.103 +ij[13058] = 28.5 +id[13059] = "2965-01-21T15:41:23" +ik[13059] = -26.417 +il[13059] = 126 +im[13059] = 0.1049 +ij[13059] = 15 +id[13060] = "2965-02-28T21:33:35" +ik[13060] = 33.749 +il[13060] = 44 +im[13060] = 0.0254 +ij[13060] = 9 +id[13061] = "2965-03-01T18:40:58" +ik[13061] = 1.764 +il[13061] = 95 +im[13061] = 0.0394 +ij[13061] = 27.6 +id[13062] = "2965-03-13T05:04:53" +ik[13062] = 4.472 +il[13062] = 48 +im[13062] = 0.0077 +ij[13062] = 28.2 +id[13063] = "2965-05-06T22:02:02" +ik[13063] = 3.741 +il[13063] = -50 +im[13063] = 0.0384 +ij[13063] = 27.2 +id[13064] = "2965-05-12T22:43:11" +ik[13064] = 2.249 +il[13064] = 6 +im[13064] = 0.0389 +ij[13064] = 28.8 +id[13065] = "2965-05-29T06:27:07" +ik[13065] = 12 +il[13065] = 40 +im[13065] = 0.0536 +ij[13065] = 18 +id[13066] = "2965-09-01T00:13:10" +ik[13066] = 1.11 +il[13066] = -36 +im[13066] = 0.0144 +ij[13066] = 12 +id[13067] = "2965-10-13T21:17:45" +ik[13067] = 25.71 +il[13067] = -92 +im[13067] = 0.0129 +ij[13067] = 16 +id[13068] = "2965-11-01T00:18:25" +ik[13068] = 0.98 +il[13068] = 36 +im[13068] = 0.026 +ij[13068] = 28.2 +id[13069] = "2966-01-25T05:31:24" +ik[13069] = 4.568 +il[13069] = 62 +im[13069] = 0.017 +ij[13069] = 27.4 +id[13070] = "2966-02-09T12:06:51" +ik[13070] = 5.257 +il[13070] = 107 +im[13070] = 0.0466 +ij[13070] = 27.1 +id[13071] = "2966-02-11T17:51:48" +ik[13071] = 31.823 +il[13071] = 40 +im[13071] = 0.072 +ij[13071] = 8 +id[13072] = "2966-03-01T19:55:19" +ik[13072] = 0 +il[13072] = -177 +im[13072] = 0.0768 +ij[13072] = 17 +id[13073] = "2966-05-10T03:03:16" +ik[13073] = 0.269 +il[13073] = 11 +im[13073] = 0.1303 +ij[13073] = 27.3 +id[13074] = "2966-05-11T01:23:59" +ik[13074] = 0.889 +il[13074] = 44 +im[13074] = 0.1367 +ij[13074] = 28.7 +id[13075] = "2966-06-04T19:24:40" +ik[13075] = 43.824 +il[13075] = 9 +im[13075] = 0.0974 +ij[13075] = 3 +id[13076] = "2966-06-16T20:12:40" +ik[13076] = 2.421 +il[13076] = 111 +im[13076] = 0.0296 +ij[13076] = 27.5 +id[13077] = "2966-07-04T22:30:53" +ik[13077] = -2.228 +il[13077] = -111 +im[13077] = 0.1752 +ij[13077] = 2 +id[13078] = "2966-08-11T14:03:50" +ik[13078] = 3.45 +il[13078] = 18 +im[13078] = 0.027 +ij[13078] = 28.2 +id[13079] = "2966-08-22T05:09:56" +ik[13079] = 0 +il[13079] = -106 +im[13079] = 0.2198 +ij[13079] = 13 +id[13080] = "2966-09-23T14:01:37" +ik[13080] = 5.45 +il[13080] = 58 +im[13080] = 0.2013 +ij[13080] = 11 +id[13081] = "2966-10-23T04:12:31" +ik[13081] = 61.96 +il[13081] = -24 +im[13081] = 0.3019 +ij[13081] = 7.1107 +id[13082] = "2966-12-04T00:04:16" +ik[13082] = 103.79 +il[13082] = 83 +im[13082] = 0.1953 +ij[13082] = 14 +id[13083] = "2966-12-14T14:47:46" +ik[13083] = -2.116 +il[13083] = -36 +im[13083] = 0.0718 +ij[13083] = 4 +id[13084] = "2966-12-20T13:00:22" +ik[13084] = -26.351 +il[13084] = 48 +im[13084] = 0.1753 +ij[13084] = 15 +id[13085] = "2967-01-07T19:44:41" +ik[13085] = 41.805 +il[13085] = 122 +im[13085] = 0.0775 +ij[13085] = 1 +id[13086] = "2967-01-31T08:35:24" +ik[13086] = 1.288 +il[13086] = 153 +im[13086] = 0.1259 +ij[13086] = 27.6 +id[13087] = "2967-03-22T02:57:08" +ik[13087] = 1.765 +il[13087] = -12 +im[13087] = 0.0107 +ij[13087] = 28.5 +id[13088] = "2967-04-14T16:17:40" +ik[13088] = 3.355 +il[13088] = 11 +im[13088] = 0.0716 +ij[13088] = 27.2 +id[13089] = "2967-04-16T11:28:42" +ik[13089] = 32.117 +il[13089] = 100 +im[13089] = 0.0563 +ij[13089] = 9 +id[13090] = "2967-04-28T12:28:45" +ik[13090] = 2.537 +il[13090] = -163 +im[13090] = 0.0773 +ij[13090] = 28.8 +id[13091] = "2967-05-09T07:07:36" +ik[13091] = 12 +il[13091] = 19 +im[13091] = 0.0514 +ij[13091] = 18 +id[13092] = "2967-06-25T13:14:17" +ik[13092] = 5.446 +il[13092] = 13 +im[13092] = 0.0622 +ij[13092] = 28.1 +id[13093] = "2967-09-26T11:09:50" +ik[13093] = 25.862 +il[13093] = -130 +im[13093] = 0.0116 +ij[13093] = 16 +id[13094] = "2967-10-07T08:30:57" +ik[13094] = 0.77 +il[13094] = 15 +im[13094] = 0.0251 +ij[13094] = 12 +id[13095] = "2968-01-04T10:01:01" +ik[13095] = 4.291 +il[13095] = -30 +im[13095] = 0.0049 +ij[13095] = 27.4 +id[13096] = "2968-01-18T20:51:56" +ik[13096] = 5.514 +il[13096] = -53 +im[13096] = 0.0078 +ij[13096] = 27.1 +id[13097] = "2968-02-07T09:41:53" +ik[13097] = 0 +il[13097] = -52 +im[13097] = 0.0606 +ij[13097] = 17 +id[13098] = "2968-03-29T02:44:15" +ik[13098] = 34.002 +il[13098] = 171 +im[13098] = 0.0369 +ij[13098] = 8 +id[13099] = "2968-04-08T20:02:56" +ik[13099] = 0.18 +il[13099] = 13 +im[13099] = 0.0734 +ij[13099] = 27.3 +id[13100] = "2968-04-22T11:53:41" +ik[13100] = 0.55 +il[13100] = -95 +im[13100] = 0.0949 +ij[13100] = 28.7 +id[13101] = "2968-05-09T10:46:15" +ik[13101] = 1.113 +il[13101] = 84 +im[13101] = 0.0602 +ij[13101] = 27.5 +id[13102] = "2968-06-07T09:36:16" +ik[13102] = -24.725 +il[13102] = 18 +im[13102] = 0.0682 +ij[13102] = 15 +id[13103] = "2968-07-24T10:13:23" +ik[13103] = 4.438 +il[13103] = 103 +im[13103] = 0.0099 +ij[13103] = 27.6 +id[13104] = "2968-08-04T07:50:35" +ik[13104] = 47.377 +il[13104] = -114 +im[13104] = 0.091 +ij[13104] = 3 +id[13105] = "2968-09-01T09:36:41" +ik[13105] = -2.347 +il[13105] = 134 +im[13105] = 0.1281 +ij[13105] = 2 +id[13106] = "2968-10-25T00:04:47" +ik[13106] = 0 +il[13106] = 84 +im[13106] = 0.2667 +ij[13106] = 13 +id[13107] = "2968-11-30T06:15:50" +ik[13107] = 0.93 +il[13107] = -38 +im[13107] = 0.2276 +ij[13107] = 11 +id[13108] = "2968-12-20T14:14:01" +ik[13108] = 2.466 +il[13108] = -123 +im[13108] = 0.1484 +ij[13108] = 28.2 +id[13109] = "2969-01-02T00:45:33" +ik[13109] = 69.03 +il[13109] = -174 +im[13109] = 0.206 +ij[13109] = 7.1334 +id[13110] = "2969-02-24T06:40:41" +ik[13110] = -1.73 +il[13110] = -120 +im[13110] = 0.1375 +ij[13110] = 4 +id[13111] = "2969-02-25T07:28:19" +ik[13111] = 123.31 +il[13111] = -122 +im[13111] = 0.1317 +ij[13111] = 14 +id[13112] = "2969-03-07T21:39:36" +ik[13112] = 38.228 +il[13112] = 125 +im[13112] = 0.1063 +ij[13112] = 1 +id[13113] = "2969-03-13T19:01:29" +ik[13113] = 2.589 +il[13113] = -140 +im[13113] = 0.0731 +ij[13113] = 27.2 +id[13114] = "2969-04-08T10:54:25" +ik[13114] = 3.02 +il[13114] = -137 +im[13114] = 0.093 +ij[13114] = 28.8 +id[13115] = "2969-04-14T11:08:29" +ik[13115] = 12 +il[13115] = -84 +im[13115] = 0.0043 +ij[13115] = 18 +id[13116] = "2969-05-24T05:10:28" +ik[13116] = 31.338 +il[13116] = 21 +im[13116] = 0.0478 +ij[13116] = 9 +id[13117] = "2969-06-09T04:27:50" +ik[13117] = 0.771 +il[13117] = -177 +im[13117] = 0.0266 +ij[13117] = 28.5 +id[13118] = "2969-08-09T10:02:25" +ik[13118] = 0.522 +il[13118] = -36 +im[13118] = 0.0249 +ij[13118] = 28.2 +id[13119] = "2969-08-26T14:40:40" +ik[13119] = 1.036 +il[13119] = 64 +im[13119] = 0.0577 +ij[13119] = 28.1 +id[13120] = "2969-09-07T21:39:46" +ik[13120] = 25.999 +il[13120] = 76 +im[13120] = 0.0326 +ij[13120] = 16 +id[13121] = "2969-11-13T07:15:24" +ik[13121] = 0.11 +il[13121] = -127 +im[13121] = 0.023 +ij[13121] = 12 +id[13122] = "2970-01-17T19:03:25" +ik[13122] = 0 +il[13122] = 157 +im[13122] = 0.0584 +ij[13122] = 17 +id[13123] = "2970-02-05T05:07:25" +ik[13123] = 1.807 +il[13123] = 179 +im[13123] = 0.053 +ij[13123] = 28.1 +id[13124] = "2970-02-11T04:13:55" +ik[13124] = 1.288 +il[13124] = -113 +im[13124] = 0.0151 +ij[13124] = 28.2 +id[13125] = "2970-03-17T08:38:34" +ik[13125] = 0.275 +il[13125] = 157 +im[13125] = 0.0672 +ij[13125] = 27.3 +id[13126] = "2970-04-12T07:02:17" +ik[13126] = 0.409 +il[13126] = 68 +im[13126] = 0.0428 +ij[13126] = 28.7 +id[13127] = "2970-04-15T14:55:51" +ik[13127] = 0.785 +il[13127] = -18 +im[13127] = 0.0719 +ij[13127] = 27.5 +id[13128] = "2970-04-27T17:39:22" +ik[13128] = 0.727 +il[13128] = 57 +im[13128] = 0.0619 +ij[13128] = 28.2 +id[13129] = "2970-05-15T01:02:11" +ik[13129] = -25.321 +il[13129] = 113 +im[13129] = 0.0775 +ij[13129] = 15 +id[13130] = "2970-06-08T02:15:48" +ik[13130] = 36.243 +il[13130] = -32 +im[13130] = 0.0256 +ij[13130] = 8 +id[13131] = "2970-06-25T12:41:13" +ik[13131] = 3.457 +il[13131] = -19 +im[13131] = 0.0835 +ij[13131] = 27.6 +id[13132] = "2970-08-30T05:08:04" +ik[13132] = 5.286 +il[13132] = 19 +im[13132] = 0.0537 +ij[13132] = 27.2 +id[13133] = "2970-09-19T06:32:53" +ik[13133] = 11 +il[13133] = -165 +im[13133] = 0.1045 +ij[13133] = 18 +id[13134] = "2970-09-19T12:12:01" +ik[13134] = 0.958 +il[13134] = 113 +im[13134] = 0.1082 +ij[13134] = 28.8 +id[13135] = "2970-09-20T00:07:37" +ik[13135] = 43.847 +il[13135] = -61 +im[13135] = 0.1151 +ij[13135] = 3 +id[13136] = "2970-10-05T18:54:56" +ik[13136] = -2.044 +il[13136] = 171 +im[13136] = 0.1247 +ij[13136] = 2 +id[13137] = "2970-12-08T07:28:48" +ik[13137] = 0 +il[13137] = -119 +im[13137] = 0.0093 +ij[13137] = 13 +id[13138] = "2971-01-15T03:12:44" +ik[13138] = 3.9 +il[13138] = -71 +im[13138] = 0.1585 +ij[13138] = 11 +id[13139] = "2971-01-30T23:37:18" +ik[13139] = 2.825 +il[13139] = -48 +im[13139] = 0.0184 +ij[13139] = 28.1 +id[13140] = "2971-02-23T07:32:24" +ik[13140] = 77 +il[13140] = 41 +im[13140] = 0.1243 +ij[13140] = 7.1635 +id[13141] = "2971-04-18T23:58:03" +ik[13141] = -1.57 +il[13141] = -50 +im[13141] = 0.0916 +ij[13141] = 4 +id[13142] = "2971-04-22T04:05:39" +ik[13142] = 37.025 +il[13142] = -81 +im[13142] = 0.0309 +ij[13142] = 1 +id[13143] = "2971-04-28T09:00:17" +ik[13143] = 141.06 +il[13143] = -96 +im[13143] = 0.0931 +ij[13143] = 14 +id[13144] = "2971-06-30T01:30:01" +ik[13144] = 31.426 +il[13144] = -106 +im[13144] = 0.0625 +ij[13144] = 9 +id[13145] = "2971-07-28T08:28:04" +ik[13145] = 2.826 +il[13145] = 62 +im[13145] = 0.0584 +ij[13145] = 28.2 +id[13146] = "2971-08-20T14:13:38" +ik[13146] = 26.134 +il[13146] = -160 +im[13146] = 0.0528 +ij[13146] = 16 +id[13147] = "2971-09-11T14:49:33" +ik[13147] = 0.753 +il[13147] = 44 +im[13147] = 0.0276 +ij[13147] = 28.5 +id[13148] = "2971-12-28T23:17:11" +ik[13148] = 0.7 +il[13148] = -87 +im[13148] = 0.0584 +ij[13148] = 12 +id[13149] = "2971-12-30T01:43:10" +ik[13149] = 0 +il[13149] = 50 +im[13149] = 0.062 +ij[13149] = 17 +id[13150] = "2972-03-24T17:15:28" +ik[13150] = 0.629 +il[13150] = -72 +im[13150] = 0.0602 +ij[13150] = 27.5 +id[13151] = "2972-03-26T22:04:32" +ik[13151] = 0.164 +il[13151] = -117 +im[13151] = 0.0681 +ij[13151] = 28.2 +id[13152] = "2972-04-03T08:31:53" +ik[13152] = 0.271 +il[13152] = 157 +im[13152] = 0.0048 +ij[13152] = 28.7 +id[13153] = "2972-04-23T12:24:02" +ik[13153] = -25.622 +il[13153] = -63 +im[13153] = 0.0657 +ij[13153] = 15 +id[13154] = "2972-04-24T20:52:27" +ik[13154] = 0.784 +il[13154] = -176 +im[13154] = 0.0698 +ij[13154] = 28.1 +id[13155] = "2972-06-02T07:36:02" +ik[13155] = 3 +il[13155] = 39 +im[13155] = 0.0292 +ij[13155] = 27.6 +id[13156] = "2972-08-04T04:25:43" +ik[13156] = 4.856 +il[13156] = -16 +im[13156] = 0.0801 +ij[13156] = 27.2 +id[13157] = "2972-08-23T06:03:25" +ik[13157] = 11 +il[13157] = 146 +im[13157] = 0.0436 +ij[13157] = 18 +id[13158] = "2972-08-24T08:28:14" +ik[13158] = 34.775 +il[13158] = 120 +im[13158] = 0.0255 +ij[13158] = 8 +id[13159] = "2972-08-29T04:59:43" +ik[13159] = 1.255 +il[13159] = -140 +im[13159] = 0.0601 +ij[13159] = 28.8 +id[13160] = "2972-11-04T21:05:37" +ik[13160] = -1.785 +il[13160] = -84 +im[13160] = 0.0288 +ij[13160] = 2 +id[13161] = "2972-11-05T13:01:37" +ik[13161] = 39.461 +il[13161] = 44 +im[13161] = 0.0142 +ij[13161] = 3 +id[13162] = "2972-12-27T02:23:29" +ik[13162] = 20.742 +il[13162] = -18 +im[13162] = 0.1474 +ij[13162] = 16 +id[13163] = "2973-01-09T09:00:45" +ik[13163] = 0 +il[13163] = 11 +im[13163] = 0.1506 +ij[13163] = 13 +id[13164] = "2973-01-13T21:29:02" +ik[13164] = 1.234 +il[13164] = -132 +im[13164] = 0.0062 +ij[13164] = 28.2 +id[13165] = "2973-02-19T13:36:44" +ik[13165] = 4.35 +il[13165] = -41 +im[13165] = 0.1854 +ij[13165] = 11 +id[13166] = "2973-04-01T15:47:33" +ik[13166] = 82.28 +il[13166] = 103 +im[13166] = 0.1053 +ij[13166] = 7.1971 +id[13167] = "2973-05-31T04:38:38" +ik[13167] = 37.549 +il[13167] = 120 +im[13167] = 0.0263 +ij[13167] = 1 +id[13168] = "2973-06-03T02:48:44" +ik[13168] = -1.572 +il[13168] = 176 +im[13168] = 0.0834 +ij[13168] = 4 +id[13169] = "2973-06-08T10:41:22" +ik[13169] = 150.07 +il[13169] = 109 +im[13169] = 0.1005 +ij[13169] = 14 +id[13170] = "2973-08-07T17:38:28" +ik[13170] = 32.366 +il[13170] = -132 +im[13170] = 0.0413 +ij[13170] = 9 +id[13171] = "2973-10-30T13:31:56" +ik[13171] = 4.861 +il[13171] = 24 +im[13171] = 0.057 +ij[13171] = 28.1 +id[13172] = "2973-11-06T09:50:25" +ik[13172] = 3.557 +il[13172] = 146 +im[13172] = 0.0315 +ij[13172] = 27.4 +id[13173] = "2973-11-20T08:25:33" +ik[13173] = 6.198 +il[13173] = -57 +im[13173] = 0.0262 +ij[13173] = 27.1 +id[13174] = "2973-11-23T14:55:06" +ik[13174] = 1.974 +il[13174] = -122 +im[13174] = 0.0569 +ij[13174] = 28.6 +id[13175] = "2973-12-04T16:05:14" +ik[13175] = 0.916 +il[13175] = -32 +im[13175] = 0.0243 +ij[13175] = 28.5 +id[13176] = "2973-12-10T09:42:16" +ik[13176] = 0 +il[13176] = 123 +im[13176] = 0.0626 +ij[13176] = 17 +id[13177] = "2974-03-01T06:46:04" +ik[13177] = 1.04 +il[13177] = -102 +im[13177] = 0.0208 +ij[13177] = 12 +id[13178] = "2974-04-03T22:28:57" +ik[13178] = -25.83 +il[13178] = 135 +im[13178] = 0.0628 +ij[13178] = 15 +id[13179] = "2974-07-14T06:36:20" +ik[13179] = 4.565 +il[13179] = -56 +im[13179] = 0.0596 +ij[13179] = 27.2 +id[13180] = "2974-07-16T15:13:58" +ik[13180] = 5.48 +il[13180] = -162 +im[13180] = 0.0607 +ij[13180] = 28.1 +id[13181] = "2974-08-02T16:03:38" +ik[13181] = 12 +il[13181] = -8 +im[13181] = 0.0544 +ij[13181] = 18 +id[13182] = "2974-08-14T13:55:20" +ik[13182] = 1.428 +il[13182] = 140 +im[13182] = 0.0628 +ij[13182] = 28.8 +id[13183] = "2974-10-15T04:03:48" +ik[13183] = 32.365 +il[13183] = 165 +im[13183] = 0.0315 +ij[13183] = 8 +id[13184] = "2974-12-08T01:45:38" +ik[13184] = -1.632 +il[13184] = 1 +im[13184] = 0.0922 +ij[13184] = 2 +id[13185] = "2974-12-16T22:55:37" +ik[13185] = 36.885 +il[13185] = 129 +im[13185] = 0.0727 +ij[13185] = 3 +id[13186] = "2975-02-12T10:41:50" +ik[13186] = 0 +il[13186] = 148 +im[13186] = 0.15 +ij[13186] = 13 +id[13187] = "2975-03-25T13:23:25" +ik[13187] = 3.42 +il[13187] = 125 +im[13187] = 0.2226 +ij[13187] = 11 +id[13188] = "2975-04-19T18:55:29" +ik[13188] = 0.971 +il[13188] = 58 +im[13188] = 0.1824 +ij[13188] = 28.2 +id[13189] = "2975-05-06T09:46:26" +ik[13189] = 82.96 +il[13189] = -4 +im[13189] = 0.1776 +ij[13189] = 7.2115 +id[13190] = "2975-07-05T13:22:30" +ik[13190] = 26.358 +il[13190] = 164 +im[13190] = 0.0406 +ij[13190] = 16 +id[13191] = "2975-07-10T19:47:34" +ik[13191] = 39.635 +il[13191] = 119 +im[13191] = 0.0844 +ij[13191] = 1 +id[13192] = "2975-07-10T19:48:11" +ik[13192] = 148.38 +il[13192] = 119 +im[13192] = 0.0845 +ij[13192] = 14 +id[13193] = "2975-07-17T09:23:25" +ik[13193] = -1.708 +il[13193] = -21 +im[13193] = 0.0853 +ij[13193] = 4 +id[13194] = "2975-09-25T14:14:27" +ik[13194] = 34.089 +il[13194] = -131 +im[13194] = 0.072 +ij[13194] = 9 +id[13195] = "2975-10-17T00:59:57" +ik[13195] = 3.199 +il[13195] = -83 +im[13195] = 0.0184 +ij[13195] = 27.4 +id[13196] = "2975-11-21T04:04:57" +ik[13196] = 0 +il[13196] = -146 +im[13196] = 0.0682 +ij[13196] = 17 +id[13197] = "2975-12-12T02:15:41" +ik[13197] = 1.39 +il[13197] = 87 +im[13197] = 0.0097 +ij[13197] = 28.6 +id[13198] = "2975-12-27T20:34:52" +ik[13198] = 1.067 +il[13198] = -33 +im[13198] = 0.0212 +ij[13198] = 28.2 +id[13199] = "2976-01-15T08:12:18" +ik[13199] = 0.223 +il[13199] = -25 +im[13199] = 0.0575 +ij[13199] = 27.3 +id[13200] = "2976-01-15T15:50:41" +ik[13200] = 5.142 +il[13200] = -137 +im[13200] = 0.0596 +ij[13200] = 28.1 +id[13201] = "2976-02-08T01:03:53" +ik[13201] = 0.05 +il[13201] = -37 +im[13201] = 0.0085 +ij[13201] = 28.5 +id[13202] = "2976-02-12T18:22:33" +ik[13202] = 0.466 +il[13202] = 107 +im[13202] = 0.0526 +ij[13202] = 27.5 +id[13203] = "2976-03-14T13:26:54" +ik[13203] = -26.002 +il[13203] = 130 +im[13203] = 0.0616 +ij[13203] = 15 +id[13204] = "2976-05-12T09:16:18" +ik[13204] = 0.08 +il[13204] = 52 +im[13204] = 0.0615 +ij[13204] = 12 +id[13205] = "2976-07-13T15:50:15" +ik[13205] = 12 +il[13205] = -4 +im[13205] = 0.0407 +ij[13205] = 18 +id[13206] = "2976-07-31T22:12:00" +ik[13206] = 1.53 +il[13206] = 87 +im[13206] = 0.0147 +ij[13206] = 28.8 +id[13207] = "2976-10-07T17:00:10" +ik[13207] = 1.064 +il[13207] = 101 +im[13207] = 0.0503 +ij[13207] = 28.2 +id[13208] = "2976-11-21T13:00:41" +ik[13208] = 30.97 +il[13208] = -125 +im[13208] = 0.0163 +ij[13208] = 8 +id[13209] = "2976-11-28T20:52:21" +ik[13209] = 25.081 +il[13209] = -172 +im[13209] = 0.0792 +ij[13209] = 16 +id[13210] = "2977-01-15T04:37:12" +ik[13210] = -1.578 +il[13210] = 179 +im[13210] = 0.0676 +ij[13210] = 2 +id[13211] = "2977-01-24T04:29:34" +ik[13211] = 36.164 +il[13211] = -103 +im[13211] = 0.1031 +ij[13211] = 3 +id[13212] = "2977-03-21T19:48:39" +ik[13212] = 0 +il[13212] = -150 +im[13212] = 0.179 +ij[13212] = 13 +id[13213] = "2977-04-30T01:00:18" +ik[13213] = 1.19 +il[13213] = 124 +im[13213] = 0.2181 +ij[13213] = 11 +id[13214] = "2977-06-09T18:51:15" +ik[13214] = 79.96 +il[13214] = 36 +im[13214] = 0.2024 +ij[13214] = 7.1831 +id[13215] = "2977-08-08T04:36:02" +ik[13215] = 139.37 +il[13215] = 108 +im[13215] = 0.1282 +ij[13215] = 14 +id[13216] = "2977-08-22T07:54:33" +ik[13216] = -1.966 +il[13216] = -179 +im[13216] = 0.1062 +ij[13216] = 4 +id[13217] = "2977-08-23T20:47:36" +ik[13217] = 43.174 +il[13217] = 18 +im[13217] = 0.0796 +ij[13217] = 1 +id[13218] = "2977-09-21T18:45:33" +ik[13218] = 2.572 +il[13218] = -29 +im[13218] = 0.0673 +ij[13218] = 27.4 +id[13219] = "2977-10-30T02:29:38" +ik[13219] = 0 +il[13219] = -130 +im[13219] = 0.0892 +ij[13219] = 17 +id[13220] = "2977-11-29T20:47:47" +ik[13220] = 35.556 +il[13220] = -101 +im[13220] = 0.0821 +ij[13220] = 9 +id[13221] = "2977-12-17T08:01:52" +ik[13221] = 3.018 +il[13221] = -98 +im[13221] = 0.0594 +ij[13221] = 28.2 +id[13222] = "2977-12-24T04:31:01" +ik[13222] = 0.105 +il[13222] = 22 +im[13222] = 0.0467 +ij[13222] = 27.3 +id[13223] = "2977-12-26T19:47:11" +ik[13223] = 0.397 +il[13223] = 179 +im[13223] = 0.0722 +ij[13223] = 28.6 +id[13224] = "2978-01-21T22:59:08" +ik[13224] = 0.428 +il[13224] = 28 +im[13224] = 0.0399 +ij[13224] = 27.5 +id[13225] = "2978-02-22T17:27:48" +ik[13225] = -26.169 +il[13225] = 62 +im[13225] = 0.0625 +ij[13225] = 15 +id[13226] = "2978-03-12T10:30:27" +ik[13226] = 0.354 +il[13226] = -24 +im[13226] = 0.0661 +ij[13226] = 28.7 +id[13227] = "2978-04-01T22:15:37" +ik[13227] = 4.582 +il[13227] = -1 +im[13227] = 0.0137 +ij[13227] = 28.1 +id[13228] = "2978-04-02T02:13:20" +ik[13228] = 2.189 +il[13228] = -61 +im[13228] = 0.0157 +ij[13228] = 27.6 +id[13229] = "2978-04-05T18:18:31" +ik[13229] = 0.955 +il[13229] = 94 +im[13229] = 0.0553 +ij[13229] = 28.5 +id[13230] = "2978-06-25T05:02:55" +ik[13230] = 12 +il[13230] = -3 +im[13230] = 0.0205 +ij[13230] = 18 +id[13231] = "2978-07-06T23:09:12" +ik[13231] = 0.84 +il[13231] = -168 +im[13231] = 0.0503 +ij[13231] = 12 +id[13232] = "2978-11-08T22:56:13" +ik[13232] = 25.427 +il[13232] = 157 +im[13232] = 0.0636 +ij[13232] = 16 +id[13233] = "2978-12-25T09:57:34" +ik[13233] = 30.615 +il[13233] = 79 +im[13233] = 0.0643 +ij[13233] = 8 +id[13234] = "2979-03-08T12:34:57" +ik[13234] = 5.136 +il[13234] = 19 +im[13234] = 0.0925 +ij[13234] = 27.4 +id[13235] = "2979-03-09T00:25:29" +ik[13235] = 37.396 +il[13235] = -154 +im[13235] = 0.0834 +ij[13235] = 3 +id[13236] = "2979-03-10T06:24:47" +ik[13236] = -1.651 +il[13236] = 128 +im[13236] = 0.056 +ij[13236] = 2 +id[13237] = "2979-04-01T01:21:51" +ik[13237] = 4.88 +il[13237] = 50 +im[13237] = 0.1539 +ij[13237] = 27.1 +id[13238] = "2979-05-09T21:12:44" +ik[13238] = 1.01 +il[13238] = 120 +im[13238] = 0.1396 +ij[13238] = 28.2 +id[13239] = "2979-05-12T04:36:31" +ik[13239] = 0 +il[13239] = 31 +im[13239] = 0.2113 +ij[13239] = 13 +id[13240] = "2979-06-14T21:41:12" +ik[13240] = 2.39 +il[13240] = 71 +im[13240] = 0.0597 +ij[13240] = 11 +id[13241] = "2979-07-22T09:45:08" +ik[13241] = 71.21 +il[13241] = 63 +im[13241] = 0.2383 +ij[13241] = 7.127 +id[13242] = "2979-07-22T20:24:17" +ik[13242] = 2.618 +il[13242] = -92 +im[13242] = 0.2222 +ij[13242] = 27.4 +id[13243] = "2979-09-10T22:37:55" +ik[13243] = 121.75 +il[13243] = 5 +im[13243] = 0.1686 +ij[13243] = 14 +id[13244] = "2979-09-22T02:15:54" +ik[13244] = -2.289 +il[13244] = 60 +im[13244] = 0.0383 +ij[13244] = 4 +id[13245] = "2979-10-02T05:09:22" +ik[13245] = 0 +il[13245] = 116 +im[13245] = 0.0693 +ij[13245] = 17 +id[13246] = "2979-10-10T20:35:31" +ik[13246] = 46.294 +il[13246] = -30 +im[13246] = 0.1542 +ij[13246] = 1 +id[13247] = "2979-11-28T23:51:43" +ik[13247] = 0.236 +il[13247] = 45 +im[13247] = 0.0526 +ij[13247] = 27.3 +id[13248] = "2979-12-29T04:48:39" +ik[13248] = 0.466 +il[13248] = -94 +im[13248] = 0.0263 +ij[13248] = 27.5 +id[13249] = "2980-01-08T00:21:43" +ik[13249] = 0.843 +il[13249] = 68 +im[13249] = 0.0931 +ij[13249] = 28.6 +id[13250] = "2980-02-01T04:41:38" +ik[13250] = -26.347 +il[13250] = -123 +im[13250] = 0.0587 +ij[13250] = 15 +id[13251] = "2980-02-07T16:05:34" +ik[13251] = 34.523 +il[13251] = 128 +im[13251] = 0.0669 +ij[13251] = 9 +id[13252] = "2980-03-03T06:17:01" +ik[13252] = 0.681 +il[13252] = 151 +im[13252] = 0.0693 +ij[13252] = 28.7 +id[13253] = "2980-03-10T22:14:58" +ik[13253] = 1.9 +il[13253] = -15 +im[13253] = 0.0101 +ij[13253] = 27.6 +id[13254] = "2980-05-14T21:58:50" +ik[13254] = 3.856 +il[13254] = -105 +im[13254] = 0.0647 +ij[13254] = 27.2 +id[13255] = "2980-06-05T16:55:42" +ik[13255] = 12 +il[13255] = 176 +im[13255] = 0.0054 +ij[13255] = 18 +id[13256] = "2980-06-08T09:17:41" +ik[13256] = 0.812 +il[13256] = -47 +im[13256] = 0.0307 +ij[13256] = 28.1 +id[13257] = "2980-06-10T05:06:10" +ik[13257] = 0.846 +il[13257] = 31 +im[13257] = 0.0484 +ij[13257] = 28.5 +id[13258] = "2980-08-17T07:27:52" +ik[13258] = 1.14 +il[13258] = -66 +im[13258] = 0.0069 +ij[13258] = 12 +id[13259] = "2980-10-20T19:10:06" +ik[13259] = 25.644 +il[13259] = -133 +im[13259] = 0.0563 +ij[13259] = 16 +id[13260] = "2981-01-27T23:21:07" +ik[13260] = 31.273 +il[13260] = 36 +im[13260] = 0.0713 +ij[13260] = 8 +id[13261] = "2981-02-03T09:52:53" +ik[13261] = 4.698 +il[13261] = -60 +im[13261] = 0.0336 +ij[13261] = 27.4 +id[13262] = "2981-02-19T08:04:26" +ik[13262] = 5.141 +il[13262] = 118 +im[13262] = 0.016 +ij[13262] = 27.1 +id[13263] = "2981-03-12T14:03:00" +ik[13263] = 23 +il[13263] = -131 +im[13263] = 0.1018 +ij[13263] = 17 +id[13264] = "2981-05-06T12:50:32" +ik[13264] = 41.383 +il[13264] = 47 +im[13264] = 0.1326 +ij[13264] = 3 +id[13265] = "2981-05-30T18:07:55" +ik[13265] = -2.002 +il[13265] = -163 +im[13265] = 0.0343 +ij[13265] = 2 +id[13266] = "2981-05-31T20:35:18" +ik[13266] = 1.078 +il[13266] = 170 +im[13266] = 0.0733 +ij[13266] = 27.3 +id[13267] = "2981-07-22T22:38:26" +ik[13267] = 0 +il[13267] = -85 +im[13267] = 0.1603 +ij[13267] = 13 +id[13268] = "2981-08-21T14:32:46" +ik[13268] = 6.58 +il[13268] = -50 +im[13268] = 0.0907 +ij[13268] = 11 +id[13269] = "2981-09-17T06:15:55" +ik[13269] = 4.129 +il[13269] = 163 +im[13269] = 0.0686 +ij[13269] = 28.2 +id[13270] = "2981-09-22T21:41:01" +ik[13270] = 61.96 +il[13270] = -13 +im[13270] = 0.3421 +ij[13270] = 7.102 +id[13271] = "2981-09-26T20:35:31" +ik[13271] = 5.069 +il[13271] = 43 +im[13271] = 0.2926 +ij[13271] = 27.3 +id[13272] = "2981-11-03T06:53:50" +ik[13272] = 103.34 +il[13272] = -104 +im[13272] = 0.1943 +ij[13272] = 14 +id[13273] = "2981-11-13T08:10:36" +ik[13273] = -2.291 +il[13273] = -25 +im[13273] = 0.0802 +ij[13273] = 4 +id[13274] = "2981-11-19T23:49:40" +ik[13274] = 1.228 +il[13274] = 165 +im[13274] = 0.2039 +ij[13274] = 27.5 +id[13275] = "2981-12-10T07:43:32" +ik[13275] = 43.84 +il[13275] = -117 +im[13275] = 0.0147 +ij[13275] = 1 +id[13276] = "2982-01-04T02:35:36" +ik[13276] = -26.492 +il[13276] = -161 +im[13276] = 0.0938 +ij[13276] = 15 +id[13277] = "2982-01-13T11:50:19" +ik[13277] = 2.14 +il[13277] = 150 +im[13277] = 0.1188 +ij[13277] = 28.6 +id[13278] = "2982-02-13T14:55:56" +ik[13278] = 1.499 +il[13278] = 40 +im[13278] = 0.105 +ij[13278] = 27.6 +id[13279] = "2982-02-19T21:18:36" +ik[13279] = 1.141 +il[13279] = 4 +im[13279] = 0.0211 +ij[13279] = 28.7 +id[13280] = "2982-03-30T17:18:54" +ik[13280] = 32.67 +il[13280] = 71 +im[13280] = 0.0674 +ij[13280] = 9 +id[13281] = "2982-04-23T20:43:25" +ik[13281] = 3.528 +il[13281] = -113 +im[13281] = 0.0643 +ij[13281] = 27.2 +id[13282] = "2982-05-17T09:09:20" +ik[13282] = 12 +il[13282] = -78 +im[13282] = 0.0079 +ij[13282] = 18 +id[13283] = "2982-06-09T23:54:18" +ik[13283] = 0.761 +il[13283] = -77 +im[13283] = 0.0579 +ij[13283] = 28.2 +id[13284] = "2982-06-26T04:03:52" +ik[13284] = 1.658 +il[13284] = 23 +im[13284] = 0.0447 +ij[13284] = 28.8 +id[13285] = "2982-09-23T07:13:39" +ik[13285] = 0.95 +il[13285] = 112 +im[13285] = 0.0132 +ij[13285] = 12 +id[13286] = "2982-10-03T06:54:00" +ik[13286] = 25.807 +il[13286] = 56 +im[13286] = 0.0473 +ij[13286] = 16 +id[13287] = "2983-01-12T06:47:31" +ik[13287] = 4.391 +il[13287] = -44 +im[13287] = 0.0615 +ij[13287] = 27.4 +id[13288] = "2983-01-26T23:26:22" +ik[13288] = 5.422 +il[13288] = -155 +im[13288] = 0.0512 +ij[13288] = 27.1 +id[13289] = "2983-02-03T09:56:06" +ik[13289] = 1.946 +il[13289] = 123 +im[13289] = 0.0458 +ij[13289] = 28.2 +id[13290] = "2983-02-15T16:20:13" +ik[13290] = 0 +il[13290] = 143 +im[13290] = 0.0104 +ij[13290] = 17 +id[13291] = "2983-03-10T02:30:00" +ik[13291] = 33.023 +il[13291] = -157 +im[13291] = 0.0793 +ij[13291] = 8 +id[13292] = "2983-04-20T01:47:05" +ik[13292] = 0.086 +il[13292] = -119 +im[13292] = 0.0979 +ij[13292] = 27.3 +id[13293] = "2983-05-21T21:34:12" +ik[13293] = 1.377 +il[13293] = -114 +im[13293] = 0.105 +ij[13293] = 27.5 +id[13294] = "2983-06-19T11:11:26" +ik[13294] = -24.247 +il[13294] = -45 +im[13294] = 0.1315 +ij[13294] = 15 +id[13295] = "2983-07-16T06:24:28" +ik[13295] = 46.973 +il[13295] = -75 +im[13295] = 0.175 +ij[13295] = 3 +id[13296] = "2983-07-20T18:57:48" +ik[13296] = 0.471 +il[13296] = 140 +im[13296] = 0.1062 +ij[13296] = 28.6 +id[13297] = "2983-08-14T00:57:46" +ik[13297] = 5.364 +il[13297] = -74 +im[13297] = 0.2167 +ij[13297] = 27.6 +id[13298] = "2983-08-15T07:42:10" +ik[13298] = -2.398 +il[13298] = -163 +im[13298] = 0.2075 +ij[13298] = 2 +id[13299] = "2983-08-25T06:56:08" +ik[13299] = 2.775 +il[13299] = -54 +im[13299] = 0.1662 +ij[13299] = 28.7 +id[13300] = "2983-10-03T06:54:21" +ik[13300] = 0 +il[13300] = -31 +im[13300] = 0.1423 +ij[13300] = 13 +id[13301] = "2983-11-08T01:27:52" +ik[13301] = 1.02 +il[13301] = 20 +im[13301] = 0.2448 +ij[13301] = 11 +id[13302] = "2983-12-08T07:13:04" +ik[13302] = 66.01 +il[13302] = 65 +im[13302] = 0.0203 +ij[13302] = 7.1248 +id[13303] = "2983-12-09T18:57:58" +ik[13303] = 2.959 +il[13303] = -101 +im[13303] = 0.0848 +ij[13303] = 28.6 +id[13304] = "2983-12-11T15:41:12" +ik[13304] = 2.345 +il[13304] = -34 +im[13304] = 0.1763 +ij[13304] = 27.6 +id[13305] = "2984-01-24T18:34:49" +ik[13305] = 1.934 +il[13305] = -18 +im[13305] = 0.1659 +ij[13305] = 28.7 +id[13306] = "2984-01-25T20:51:57" +ik[13306] = 114.58 +il[13306] = -42 +im[13306] = 0.167 +ij[13306] = 14 +id[13307] = "2984-01-30T17:47:30" +ik[13307] = -1.851 +il[13307] = 50 +im[13307] = 0.0833 +ij[13307] = 4 +id[13308] = "2984-02-15T22:01:29" +ik[13308] = 39.3 +il[13308] = 139 +im[13308] = 0.0212 +ij[13308] = 1 +id[13309] = "2984-03-28T01:01:01" +ik[13309] = 2.977 +il[13309] = 122 +im[13309] = 0.0472 +ij[13309] = 27.2 +id[13310] = "2984-04-24T14:53:59" +ik[13310] = 12 +il[13310] = 173 +im[13310] = 0.0543 +ij[13310] = 18 +id[13311] = "2984-05-09T15:43:47" +ik[13311] = 31.537 +il[13311] = -57 +im[13311] = 0.0257 +ij[13311] = 9 +id[13312] = "2984-05-24T19:12:53" +ik[13312] = 4.784 +il[13312] = 33 +im[13312] = 0.0252 +ij[13312] = 28.2 +id[13313] = "2984-06-12T13:08:31" +ik[13313] = 1.7 +il[13313] = -58 +im[13313] = 0.0472 +ij[13313] = 28.8 +id[13314] = "2984-08-05T03:25:34" +ik[13314] = 1.345 +il[13314] = -123 +im[13314] = 0.0041 +ij[13314] = 28.1 +id[13315] = "2984-09-14T20:06:54" +ik[13315] = 25.948 +il[13315] = 28 +im[13315] = 0.0339 +ij[13315] = 16 +id[13316] = "2984-10-29T00:52:19" +ik[13316] = 0.4 +il[13316] = 34 +im[13316] = 0.0216 +ij[13316] = 12 +id[13317] = "2984-12-30T07:03:14" +ik[13317] = 1.627 +il[13317] = 22 +im[13317] = 0.0317 +ij[13317] = 28.1 +id[13318] = "2985-01-04T18:08:24" +ik[13318] = 1.958 +il[13318] = -100 +im[13318] = 0.0573 +ij[13318] = 28.2 +id[13319] = "2985-01-05T21:07:47" +ik[13319] = 5.652 +il[13319] = -134 +im[13319] = 0.0519 +ij[13319] = 27.1 +id[13320] = "2985-01-25T07:25:32" +ik[13320] = 0 +il[13320] = -103 +im[13320] = 0.0076 +ij[13320] = 17 +id[13321] = "2985-03-25T18:55:46" +ik[13321] = 0.252 +il[13321] = -61 +im[13321] = 0.0182 +ij[13321] = 27.3 +id[13322] = "2985-04-24T10:16:46" +ik[13322] = 0.88 +il[13322] = -9 +im[13322] = 0.0322 +ij[13322] = 27.5 +id[13323] = "2985-05-07T14:25:33" +ik[13323] = 35.602 +il[13323] = 55 +im[13323] = 0.0242 +ij[13323] = 8 +id[13324] = "2985-05-23T16:54:18" +ik[13324] = -25.146 +il[13324] = 172 +im[13324] = 0.0428 +ij[13324] = 15 +id[13325] = "2985-07-05T09:57:04" +ik[13325] = 3.732 +il[13325] = -29 +im[13325] = 0.0414 +ij[13325] = 27.6 +id[13326] = "2985-07-19T14:07:32" +ik[13326] = 0.746 +il[13326] = 47 +im[13326] = 0.038 +ij[13326] = 28.6 +id[13327] = "2985-07-25T07:42:25" +ik[13327] = 1.077 +il[13327] = -161 +im[13327] = 0.1119 +ij[13327] = 28.7 +id[13328] = "2985-09-01T08:55:32" +ik[13328] = 45.672 +il[13328] = -165 +im[13328] = 0.0527 +ij[13328] = 3 +id[13329] = "2985-09-12T17:05:35" +ik[13329] = 5.519 +il[13329] = -177 +im[13329] = 0.0166 +ij[13329] = 27.2 +id[13330] = "2985-09-23T10:48:52" +ik[13330] = -2.168 +il[13330] = 23 +im[13330] = 0.1272 +ij[13330] = 2 +id[13331] = "2985-10-06T01:29:30" +ik[13331] = 11 +il[13331] = -73 +im[13331] = 0.1489 +ij[13331] = 18 +id[13332] = "2985-11-21T20:52:26" +ik[13332] = 0 +il[13332] = 93 +im[13332] = 0.0598 +ij[13332] = 13 +id[13333] = "2985-11-24T01:23:54" +ik[13333] = 0.956 +il[13333] = 46 +im[13333] = 0.0567 +ij[13333] = 28.2 +id[13334] = "2985-12-19T11:34:48" +ik[13334] = 12 +il[13334] = 130 +im[13334] = 0.0328 +ij[13334] = 17 +id[13335] = "2985-12-29T23:18:59" +ik[13335] = 3.16 +il[13335] = 52 +im[13335] = 0.1605 +ij[13335] = 11 +id[13336] = "2986-02-04T19:55:02" +ik[13336] = 74.96 +il[13336] = -102 +im[13336] = 0.2 +ij[13336] = 7.1504 +id[13337] = "2986-03-23T21:22:59" +ik[13337] = 12 +il[13337] = -41 +im[13337] = 0.0296 +ij[13337] = 18 +id[13338] = "2986-03-30T12:24:52" +ik[13338] = -1.611 +il[13338] = 157 +im[13338] = 0.1159 +ij[13338] = 4 +id[13339] = "2986-04-05T14:15:30" +ik[13339] = 37.267 +il[13339] = -174 +im[13339] = 0.0682 +ij[13339] = 1 +id[13340] = "2986-04-07T05:16:56" +ik[13340] = 136.35 +il[13340] = -24 +im[13340] = 0.0335 +ij[13340] = 14 +id[13341] = "2986-05-28T05:07:07" +ik[13341] = 1.812 +il[13341] = 102 +im[13341] = 0.0857 +ij[13341] = 28.8 +id[13342] = "2986-06-15T16:14:53" +ik[13342] = 31.298 +il[13342] = 111 +im[13342] = 0.0353 +ij[13342] = 9 +id[13343] = "2986-08-27T21:55:45" +ik[13343] = 26.083 +il[13343] = 9 +im[13343] = 0.0196 +ij[13343] = 16 +id[13344] = "2986-10-05T20:30:20" +ik[13344] = 1.164 +il[13344] = 54 +im[13344] = 0.0502 +ij[13344] = 28.1 +id[13345] = "2986-12-09T17:10:06" +ik[13345] = 0.39 +il[13345] = 29 +im[13345] = 0.0258 +ij[13345] = 12 +id[13346] = "2987-01-06T09:23:20" +ik[13346] = 0 +il[13346] = -137 +im[13346] = 0.0105 +ij[13346] = 17 +id[13347] = "2987-02-15T18:18:45" +ik[13347] = 0.273 +il[13347] = 124 +im[13347] = 0.0315 +ij[13347] = 28.5 +id[13348] = "2987-03-04T21:06:29" +ik[13348] = 0.292 +il[13348] = -118 +im[13348] = 0.002 +ij[13348] = 27.3 +id[13349] = "2987-03-26T20:56:02" +ik[13349] = 0.589 +il[13349] = 102 +im[13349] = 0.0685 +ij[13349] = 28.1 +id[13350] = "2987-04-02T17:59:28" +ik[13350] = 0.679 +il[13350] = -144 +im[13350] = 0.0044 +ij[13350] = 27.5 +id[13351] = "2987-05-02T09:37:08" +ik[13351] = -25.522 +il[13351] = -92 +im[13351] = 0.0065 +ij[13351] = 15 +id[13352] = "2987-06-11T16:39:49" +ik[13352] = 3.151 +il[13352] = -164 +im[13352] = 0.032 +ij[13352] = 27.6 +id[13353] = "2987-07-13T15:30:01" +ik[13353] = 0.451 +il[13353] = 167 +im[13353] = 0.0177 +ij[13353] = 28.7 +id[13354] = "2987-07-28T01:41:05" +ik[13354] = 1.125 +il[13354] = 156 +im[13354] = 0.0034 +ij[13354] = 28.6 +id[13355] = "2987-07-28T23:51:46" +ik[13355] = 35.743 +il[13355] = -168 +im[13355] = 0.0177 +ij[13355] = 8 +id[13356] = "2987-08-14T04:18:55" +ik[13356] = 4.999 +il[13356] = -75 +im[13356] = 0.0609 +ij[13356] = 27.2 +id[13357] = "2987-09-02T07:26:42" +ik[13357] = 11 +il[13357] = 65 +im[13357] = 0.0874 +ij[13357] = 18 +id[13358] = "2987-10-19T16:30:25" +ik[13358] = 41.001 +il[13358] = 31 +im[13358] = 0.0527 +ij[13358] = 3 +id[13359] = "2987-10-24T17:11:06" +ik[13359] = -1.874 +il[13359] = 70 +im[13359] = 0.0734 +ij[13359] = 2 +id[13360] = "2987-11-05T07:36:44" +ik[13360] = 1.569 +il[13360] = -34 +im[13360] = 0.0143 +ij[13360] = 28.8 +id[13361] = "2987-12-29T05:17:24" +ik[13361] = 0 +il[13361] = 163 +im[13361] = 0.0601 +ij[13361] = 13 +id[13362] = "2988-02-06T23:57:13" +ik[13362] = 4.37 +il[13362] = -114 +im[13362] = 0.1032 +ij[13362] = 11 +id[13363] = "2988-02-26T05:50:44" +ik[13363] = 4.529 +il[13363] = 145 +im[13363] = 0.1739 +ij[13363] = 28.1 +id[13364] = "2988-02-27T06:23:28" +ik[13364] = 2.748 +il[13364] = 146 +im[13364] = 0.1963 +ij[13364] = 28.2 +id[13365] = "2988-03-18T08:09:19" +ik[13365] = 80.12 +il[13365] = -62 +im[13365] = 0.0579 +ij[13365] = 7.1848 +id[13366] = "2988-05-01T14:10:53" +ik[13366] = 2.309 +il[13366] = -92 +im[13366] = 0.015 +ij[13366] = 28.8 +id[13367] = "2988-05-15T20:05:25" +ik[13367] = 37.156 +il[13367] = -44 +im[13367] = 0.0243 +ij[13367] = 1 +id[13368] = "2988-05-16T13:26:13" +ik[13368] = -1.555 +il[13368] = 62 +im[13368] = 0.0396 +ij[13368] = 4 +id[13369] = "2988-05-24T17:34:13" +ik[13369] = 147.51 +il[13369] = 79 +im[13369] = 0.0861 +ij[13369] = 14 +id[13370] = "2988-07-22T15:18:26" +ik[13370] = 31.895 +il[13370] = -40 +im[13370] = 0.0368 +ij[13370] = 9 +id[13371] = "2988-08-07T16:30:35" +ik[13371] = 26.222 +il[13371] = 97 +im[13371] = 0.0149 +ij[13371] = 16 +id[13372] = "2988-09-29T02:13:10" +ik[13372] = 6.03 +il[13372] = 100 +im[13372] = 0.0635 +ij[13372] = 28.1 +id[13373] = "2988-10-11T06:17:44" +ik[13373] = 0.073 +il[13373] = 157 +im[13373] = 0.0595 +ij[13373] = 28.2 +id[13374] = "2988-11-14T00:28:59" +ik[13374] = 3.667 +il[13374] = -146 +im[13374] = 0.0334 +ij[13374] = 27.4 +id[13375] = "2988-12-17T19:11:54" +ik[13375] = 0 +il[13375] = -90 +im[13375] = 0.0294 +ij[13375] = 17 +id[13376] = "2989-02-01T21:57:13" +ik[13376] = 1.05 +il[13376] = -34 +im[13376] = 0.0496 +ij[13376] = 12 +id[13377] = "2989-04-11T14:05:53" +ik[13377] = -25.756 +il[13377] = -167 +im[13377] = 0.0088 +ij[13377] = 15 +id[13378] = "2989-05-20T19:51:40" +ik[13378] = 2.803 +il[13378] = 142 +im[13378] = 0.0494 +ij[13378] = 27.6 +id[13379] = "2989-06-13T04:46:18" +ik[13379] = 3.129 +il[13379] = -122 +im[13379] = 0.0564 +ij[13379] = 28.1 +id[13380] = "2989-07-04T15:00:26" +ik[13380] = 0.08 +il[13380] = -65 +im[13380] = 0.037 +ij[13380] = 28.7 +id[13381] = "2989-07-22T05:44:34" +ik[13381] = 4.669 +il[13381] = -113 +im[13381] = 0.0165 +ij[13381] = 27.2 +id[13382] = "2989-08-02T07:17:26" +ik[13382] = 2.304 +il[13382] = -28 +im[13382] = 0.0428 +ij[13382] = 28.2 +id[13383] = "2989-08-07T21:30:31" +ik[13383] = 1.056 +il[13383] = 173 +im[13383] = 0.0372 +ij[13383] = 28.6 +id[13384] = "2989-08-10T10:54:25" +ik[13384] = 12 +il[13384] = -3 +im[13384] = 0.0628 +ij[13384] = 18 +id[13385] = "2989-09-27T08:30:53" +ik[13385] = 33.21 +il[13385] = 139 +im[13385] = 0.0691 +ij[13385] = 8 +id[13386] = "2989-10-12T11:54:25" +ik[13386] = 1.209 +il[13386] = -126 +im[13386] = 0.0457 +ij[13386] = 28.8 +id[13387] = "2989-11-24T17:57:21" +ik[13387] = -1.68 +il[13387] = -158 +im[13387] = 0.0692 +ij[13387] = 2 +id[13388] = "2989-12-01T10:23:22" +ik[13388] = 37.664 +il[13388] = 21 +im[13388] = 0.0755 +ij[13388] = 3 +id[13389] = "2990-01-31T17:34:41" +ik[13389] = 0 +il[13389] = 145 +im[13389] = 0.139 +ij[13389] = 13 +id[13390] = "2990-03-12T08:01:40" +ik[13390] = 3.92 +il[13390] = -71 +im[13390] = 0.2131 +ij[13390] = 11 +id[13391] = "2990-04-22T17:38:17" +ik[13391] = 81 +il[13391] = -40 +im[13391] = 0.1223 +ij[13391] = 7.2102 +id[13392] = "2990-06-24T15:32:24" +ik[13392] = 38.63 +il[13392] = -121 +im[13392] = 0.078 +ij[13392] = 1 +id[13393] = "2990-06-28T23:08:11" +ik[13393] = 148.23 +il[13393] = 167 +im[13393] = 0.1116 +ij[13393] = 14 +id[13394] = "2990-06-30T09:04:01" +ik[13394] = -1.639 +il[13394] = 31 +im[13394] = 0.1043 +ij[13394] = 4 +id[13395] = "2990-07-16T04:48:27" +ik[13395] = 26.351 +il[13395] = -111 +im[13395] = 0.0627 +ij[13395] = 16 +id[13396] = "2990-09-04T21:52:39" +ik[13396] = 33.34 +il[13396] = 125 +im[13396] = 0.0614 +ij[13396] = 9 +id[13397] = "2990-10-01T12:38:08" +ik[13397] = 3.053 +il[13397] = 163 +im[13397] = 0.0324 +ij[13397] = 28.2 +id[13398] = "2990-10-25T06:49:31" +ik[13398] = 3.357 +il[13398] = 122 +im[13398] = 0.0449 +ij[13398] = 27.4 +id[13399] = "2990-11-08T08:15:14" +ik[13399] = 6.383 +il[13399] = -123 +im[13399] = 0.0469 +ij[13399] = 27.1 +id[13400] = "2990-11-28T20:26:38" +ik[13400] = 0 +il[13400] = -105 +im[13400] = 0.0412 +ij[13400] = 17 +id[13401] = "2990-12-15T19:27:55" +ik[13401] = 4.709 +il[13401] = 76 +im[13401] = 0.0552 +ij[13401] = 28.1 +id[13402] = "2991-01-23T06:24:46" +ik[13402] = 0.25 +il[13402] = -70 +im[13402] = 0.0063 +ij[13402] = 27.3 +id[13403] = "2991-03-23T05:00:50" +ik[13403] = -25.938 +il[13403] = -179 +im[13403] = 0.0157 +ij[13403] = 15 +id[13404] = "2991-04-16T05:01:14" +ik[13404] = 0.55 +il[13404] = 67 +im[13404] = 0.0454 +ij[13404] = 12 +id[13405] = "2991-07-22T00:37:33" +ik[13405] = 12 +il[13405] = 158 +im[13405] = 0.0584 +ij[13405] = 18 +id[13406] = "2991-08-22T09:07:02" +ik[13406] = 0.672 +il[13406] = -25 +im[13406] = 0.0627 +ij[13406] = 28.6 +id[13407] = "2991-09-27T22:05:02" +ik[13407] = 1.06 +il[13407] = 134 +im[13407] = 0.0276 +ij[13407] = 28.8 +id[13408] = "2991-11-08T12:17:59" +ik[13408] = 31.387 +il[13408] = -37 +im[13408] = 0.0022 +ij[13408] = 8 +id[13409] = "2991-12-30T20:55:08" +ik[13409] = -1.587 +il[13409] = -20 +im[13409] = 0.0882 +ij[13409] = 2 +id[13410] = "2992-01-09T19:17:28" +ik[13410] = 36.23 +il[13410] = 100 +im[13410] = 0.0945 +ij[13410] = 3 +id[13411] = "2992-03-05T23:08:38" +ik[13411] = 0 +il[13411] = -137 +im[13411] = 0.1603 +ij[13411] = 13 +id[13412] = "2992-03-09T18:45:51" +ik[13412] = 2.065 +il[13412] = -34 +im[13412] = 0.131 +ij[13412] = 28.2 +id[13413] = "2992-04-15T05:21:41" +ik[13413] = 2.23 +il[13413] = 133 +im[13413] = 0.2358 +ij[13413] = 11 +id[13414] = "2992-05-04T12:53:33" +ik[13414] = 0.647 +il[13414] = -13 +im[13414] = 0.0714 +ij[13414] = 28.1 +id[13415] = "2992-05-26T01:14:15" +ik[13415] = 81.09 +il[13415] = 10 +im[13415] = 0.1845 +ij[13415] = 7.1995 +id[13416] = "2992-06-18T16:25:28" +ik[13416] = 25.957 +il[13416] = 12 +im[13416] = 0.0725 +ij[13416] = 16 +id[13417] = "2992-07-27T18:16:04" +ik[13417] = 143.8 +il[13417] = 4 +im[13417] = 0.0034 +ij[13417] = 14 +id[13418] = "2992-08-05T18:00:25" +ik[13418] = 41.654 +il[13418] = 95 +im[13418] = 0.1194 +ij[13418] = 1 +id[13419] = "2992-08-09T14:12:29" +ik[13419] = -1.852 +il[13419] = -170 +im[13419] = 0.0591 +ij[13419] = 4 +id[13420] = "2992-10-02T02:42:04" +ik[13420] = 2.873 +il[13420] = 164 +im[13420] = 0.0938 +ij[13420] = 27.4 +id[13421] = "2992-11-01T19:29:33" +ik[13421] = 35.178 +il[13421] = -147 +im[13421] = 0.0697 +ij[13421] = 9 +id[13422] = "2992-11-07T17:12:56" +ik[13422] = 0 +il[13422] = -55 +im[13422] = 0.0294 +ij[13422] = 17 +id[13423] = "2993-01-01T17:41:32" +ik[13423] = 0.166 +il[13423] = 119 +im[13423] = 0.0177 +ij[13423] = 27.3 +id[13424] = "2993-01-30T07:28:55" +ik[13424] = 0.437 +il[13424] = -166 +im[13424] = 0.022 +ij[13424] = 27.5 +id[13425] = "2993-03-02T14:58:48" +ik[13425] = -26.105 +il[13425] = 27 +im[13425] = 0.0154 +ij[13425] = 15 +id[13426] = "2993-03-05T12:53:44" +ik[13426] = 5.671 +il[13426] = 94 +im[13426] = 0.052 +ij[13426] = 28.1 +id[13427] = "2993-06-17T11:01:14" +ik[13427] = 0.55 +il[13427] = 52 +im[13427] = 0.0545 +ij[13427] = 12 +id[13428] = "2993-07-02T10:29:54" +ik[13428] = 12 +il[13428] = 7 +im[13428] = 0.0605 +ij[13428] = 18 +id[13429] = "2993-08-26T13:47:25" +ik[13429] = 0.214 +il[13429] = 149 +im[13429] = 0.0503 +ij[13429] = 28.5 +id[13430] = "2993-09-07T01:56:29" +ik[13430] = 0.083 +il[13430] = 71 +im[13430] = 0.0152 +ij[13430] = 28.6 +id[13431] = "2993-09-14T19:34:42" +ik[13431] = 0.931 +il[13431] = -112 +im[13431] = 0.0496 +ij[13431] = 28.8 +id[13432] = "2993-11-16T10:59:07" +ik[13432] = 25.316 +il[13432] = -98 +im[13432] = 0.0073 +ij[13432] = 16 +id[13433] = "2993-12-12T10:34:52" +ik[13433] = 30.635 +il[13433] = 159 +im[13433] = 0.0356 +ij[13433] = 8 +id[13434] = "2994-02-14T11:18:16" +ik[13434] = -1.603 +il[13434] = 43 +im[13434] = 0.0895 +ij[13434] = 2 +id[13435] = "2994-02-18T20:40:24" +ik[13435] = 36.649 +il[13435] = -55 +im[13435] = 0.102 +ij[13435] = 3 +id[13436] = "2994-04-19T18:16:32" +ik[13436] = 0 +il[13436] = -170 +im[13436] = 0.033 +ij[13436] = 13 +id[13437] = "2994-05-02T05:48:42" +ik[13437] = 4.628 +il[13437] = 124 +im[13437] = 0.1128 +ij[13437] = 27.4 +id[13438] = "2994-05-26T06:15:01" +ik[13438] = 0.6 +il[13438] = -20 +im[13438] = 0.2401 +ij[13438] = 11 +id[13439] = "2994-06-21T19:53:21" +ik[13439] = 2.589 +il[13439] = -175 +im[13439] = 0.2284 +ij[13439] = 28.2 +id[13440] = "2994-07-04T05:18:44" +ik[13440] = 75.46 +il[13440] = 179 +im[13440] = 0.2375 +ij[13440] = 7.1492 +id[13441] = "2994-08-27T14:25:31" +ik[13441] = 129.84 +il[13441] = -161 +im[13441] = 0.1542 +ij[13441] = 14 +id[13442] = "2994-08-30T17:14:09" +ik[13442] = 1.755 +il[13442] = -173 +im[13442] = 0.1353 +ij[13442] = 27.4 +id[13443] = "2994-09-09T10:22:17" +ik[13443] = -2.166 +il[13443] = 25 +im[13443] = 0.1391 +ij[13443] = 4 +id[13444] = "2994-09-21T22:27:24" +ik[13444] = 45.427 +il[13444] = -34 +im[13444] = 0.0793 +ij[13444] = 1 +id[13445] = "2994-10-14T20:52:36" +ik[13445] = 0 +il[13445] = -145 +im[13445] = 0.0728 +ij[13445] = 17 +id[13446] = "2994-12-09T18:23:18" +ik[13446] = 0.046 +il[13446] = 83 +im[13446] = 0.0873 +ij[13446] = 27.3 +id[13447] = "2995-01-08T03:49:34" +ik[13447] = 0.431 +il[13447] = -130 +im[13447] = 0.0745 +ij[13447] = 27.5 +id[13448] = "2995-01-13T07:11:19" +ik[13448] = 35.202 +il[13448] = -131 +im[13448] = 0.011 +ij[13448] = 9 +id[13449] = "2995-02-09T23:22:38" +ik[13449] = -26.278 +il[13449] = -105 +im[13449] = 0.0134 +ij[13449] = 15 +id[13450] = "2995-03-20T12:09:27" +ik[13450] = 2.02 +il[13450] = 73 +im[13450] = 0.0605 +ij[13450] = 27.6 +id[13451] = "2995-03-30T11:44:46" +ik[13451] = 0.241 +il[13451] = 175 +im[13451] = 0.0588 +ij[13451] = 28.2 +id[13452] = "2995-05-20T06:06:44" +ik[13452] = 1.234 +il[13452] = 31 +im[13452] = 0.0283 +ij[13452] = 28.1 +id[13453] = "2995-05-23T16:32:07" +ik[13453] = 3.959 +il[13453] = -93 +im[13453] = 0.0139 +ij[13453] = 27.2 +id[13454] = "2995-06-14T00:23:52" +ik[13454] = 12 +il[13454] = -4 +im[13454] = 0.0576 +ij[13454] = 18 +id[13455] = "2995-08-02T19:47:28" +ik[13455] = 1.09 +il[13455] = 180 +im[13455] = 0.0074 +ij[13455] = 12 +id[13456] = "2995-10-18T16:22:26" +ik[13456] = 4.41 +il[13456] = 91 +im[13456] = 0.0514 +ij[13456] = 28.1 +id[13457] = "2995-10-28T19:10:00" +ik[13457] = 25.569 +il[13457] = 152 +im[13457] = 0.021 +ij[13457] = 16 +id[13458] = "2995-11-27T05:19:03" +ik[13458] = 0.24 +il[13458] = -77 +im[13458] = 0.0319 +ij[13458] = 28.5 +id[13459] = "2995-12-06T06:22:30" +ik[13459] = 0.765 +il[13459] = -6 +im[13459] = 0.0513 +ij[13459] = 28.2 +id[13460] = "2996-01-15T03:38:52" +ik[13460] = 30.892 +il[13460] = 56 +im[13460] = 0.071 +ij[13460] = 8 +id[13461] = "2996-02-14T18:32:46" +ik[13461] = 4.848 +il[13461] = 124 +im[13461] = 0.0681 +ij[13461] = 27.4 +id[13462] = "2996-03-02T20:13:55" +ik[13462] = 5.014 +il[13462] = -99 +im[13462] = 0.0461 +ij[13462] = 27.1 +id[13463] = "2996-03-26T07:08:11" +ik[13463] = 23 +il[13463] = -40 +im[13463] = 0.1219 +ij[13463] = 17 +id[13464] = "2996-04-10T11:58:24" +ik[13464] = 39.41 +il[13464] = 31 +im[13464] = 0.1253 +ij[13464] = 3 +id[13465] = "2996-04-25T03:10:18" +ik[13465] = -1.814 +il[13465] = -59 +im[13465] = 0.1461 +ij[13465] = 2 +id[13466] = "2996-06-21T14:26:01" +ik[13466] = 0 +il[13466] = -44 +im[13466] = 0.2063 +ij[13466] = 13 +id[13467] = "2996-07-22T02:43:28" +ik[13467] = 5.51 +il[13467] = 50 +im[13467] = 0.0412 +ij[13467] = 11 +id[13468] = "2996-08-26T13:28:36" +ik[13468] = 65.96 +il[13468] = 51 +im[13468] = 0.2638 +ij[13468] = 7.1032 +id[13469] = "2996-10-09T01:38:25" +ik[13469] = 109.47 +il[13469] = -63 +im[13469] = 0.1602 +ij[13469] = 14 +id[13470] = "2996-10-18T13:21:52" +ik[13470] = -2.376 +il[13470] = -145 +im[13470] = 0.1957 +ij[13470] = 4 +id[13471] = "2996-11-04T21:11:58" +ik[13471] = 1.004 +il[13471] = -92 +im[13471] = 0.1616 +ij[13471] = 27.3 +id[13472] = "2996-11-13T02:33:21" +ik[13472] = 45.607 +il[13472] = -92 +im[13472] = 0.1094 +ij[13472] = 1 +id[13473] = "2996-12-09T07:30:09" +ik[13473] = 0.663 +il[13473] = 90 +im[13473] = 0.0279 +ij[13473] = 27.5 +id[13474] = "2997-01-15T22:49:25" +ik[13474] = -26.459 +il[13474] = -137 +im[13474] = 0.1001 +ij[13474] = 15 +id[13475] = "2997-02-24T10:43:27" +ik[13475] = 1.675 +il[13475] = 62 +im[13475] = 0.0752 +ij[13475] = 27.6 +id[13476] = "2997-03-12T05:08:14" +ik[13476] = 6.148 +il[13476] = -65 +im[13476] = 0.0862 +ij[13476] = 28.2 +id[13477] = "2997-03-12T07:30:25" +ik[13477] = 33.336 +il[13477] = -99 +im[13477] = 0.0862 +ij[13477] = 9 +id[13478] = "2997-05-02T10:12:42" +ik[13478] = 3.672 +il[13478] = -10 +im[13478] = 0.0144 +ij[13478] = 27.2 +id[13479] = "2997-05-25T03:10:46" +ik[13479] = 12 +il[13479] = -58 +im[13479] = 0.056 +ij[13479] = 18 +id[13480] = "2997-06-09T14:42:50" +ik[13480] = 0.673 +il[13480] = -74 +im[13480] = 0.054 +ij[13480] = 28.7 +id[13481] = "2997-09-09T05:04:48" +ik[13481] = 1.07 +il[13481] = -133 +im[13481] = 0.013 +ij[13481] = 12 +id[13482] = "2997-10-10T03:13:52" +ik[13482] = 25.748 +il[13482] = 41 +im[13482] = 0.0382 +ij[13482] = 16 +id[13483] = "2998-01-20T12:13:18" +ik[13483] = 4.5 +il[13483] = 174 +im[13483] = 0.0576 +ij[13483] = 27.4 +id[13484] = "2998-02-04T12:51:59" +ik[13484] = 5.322 +il[13484] = -53 +im[13484] = 0.0739 +ij[13484] = 27.1 +id[13485] = "2998-02-20T18:44:39" +ik[13485] = 32.202 +il[13485] = 12 +im[13485] = 0.0747 +ij[13485] = 8 +id[13486] = "2998-02-23T19:59:39" +ik[13486] = 0.21 +il[13486] = 23 +im[13486] = 0.053 +ij[13486] = 28.5 +id[13487] = "2998-02-24T13:38:05" +ik[13487] = 0 +il[13487] = 125 +im[13487] = 0.043 +ij[13487] = 17 +id[13488] = "2998-05-02T01:22:30" +ik[13488] = 0.092 +il[13488] = -143 +im[13488] = 0.1188 +ij[13488] = 27.3 +id[13489] = "2998-06-05T10:52:46" +ik[13489] = 1.873 +il[13489] = 41 +im[13489] = 0.1021 +ij[13489] = 27.5 +id[13490] = "2998-06-21T02:44:18" +ik[13490] = 45.18 +il[13490] = -47 +im[13490] = 0.0485 +ij[13490] = 3 +id[13491] = "2998-07-22T01:40:33" +ik[13491] = -2.327 +il[13491] = -95 +im[13491] = 0.0591 +ij[13491] = 2 +id[13492] = "2998-08-28T22:01:16" +ik[13492] = 4.05 +il[13492] = -33 +im[13492] = 0.2218 +ij[13492] = 28.2 +id[13493] = "2998-09-08T01:38:56" +ik[13493] = 0 +il[13493] = 11 +im[13493] = 0.3368 +ij[13493] = 13 +id[13494] = "2998-10-11T06:02:35" +ik[13494] = 3.94 +il[13494] = -111 +im[13494] = 0.0619 +ij[13494] = 11 +id[13495] = "2998-11-09T04:46:40" +ik[13495] = 62.13 +il[13495] = 33 +im[13495] = 0.1226 +ij[13495] = 7.1166 +id[13496] = "2998-11-26T23:33:38" +ik[13496] = 6.415 +il[13496] = -77 +im[13496] = 0.2369 +ij[13496] = 28.2 +id[13497] = "2998-12-12T23:01:22" +ik[13497] = -25.934 +il[13497] = 84 +im[13497] = 0.2206 +ij[13497] = 15 +id[13498] = "2998-12-22T23:55:27" +ik[13498] = 105.93 +il[13498] = 166 +im[13498] = 0.133 +ij[13498] = 14 +id[13499] = "2999-01-01T10:34:46" +ik[13499] = -2.013 +il[13499] = 97 +im[13499] = 0.0292 +ij[13499] = 4 +id[13500] = "2999-01-21T15:01:30" +ik[13500] = 1.151 +il[13500] = -138 +im[13500] = 0.1257 +ij[13500] = 27.6 +id[13501] = "2999-01-22T21:08:21" +ik[13501] = 40.794 +il[13501] = 142 +im[13501] = 0.1367 +ij[13501] = 1 +id[13502] = "2999-04-09T05:03:17" +ik[13502] = 3.24 +il[13502] = 24 +im[13502] = 0.0525 +ij[13502] = 27.2 +id[13503] = "2999-04-25T12:32:39" +ik[13503] = 31.873 +il[13503] = 69 +im[13503] = 0.0261 +ij[13503] = 9 +id[13504] = "2999-05-04T15:27:27" +ik[13504] = 12 +il[13504] = 107 +im[13504] = 0.0709 +ij[13504] = 18 +id[13505] = "2999-06-03T08:45:25" +ik[13505] = 0.793 +il[13505] = 130 +im[13505] = 0.0595 +ij[13505] = 28.7 +id[13506] = "2999-07-10T05:21:40" +ik[13506] = 3.966 +il[13506] = 175 +im[13506] = 0.0406 +ij[13506] = 28.1 +id[13507] = "2999-08-12T10:54:20" +ik[13507] = 0.483 +il[13507] = 51 +im[13507] = 0.0601 +ij[13507] = 28.8 +id[13508] = "2999-09-22T17:19:50" +ik[13508] = 25.896 +il[13508] = -10 +im[13508] = 0.0499 +ij[13508] = 16 +id[13509] = "2999-10-15T11:51:02" +ik[13509] = 0.65 +il[13509] = -58 +im[13509] = 0.0103 +ij[13509] = 12 +id[13510] = "2999-12-31T05:40:55" +ik[13510] = 4.236 +il[13510] = -103 +im[13510] = 0.0499 +ij[13510] = 27.4 +id[13511] = "3000-01-14T12:50:52" +ik[13511] = 5.567 +il[13511] = -78 +im[13511] = 0.0507 +ij[13511] = 27.1 +id[13512] = "3000-02-03T01:54:18" +ik[13512] = 0 +il[13512] = -79 +im[13512] = 0.062 +ij[13512] = 17 +id[13513] = "3000-04-04T17:02:08" +ik[13513] = 0.212 +il[13513] = -92 +im[13513] = 0.0376 +ij[13513] = 27.3 +id[13514] = "3000-04-12T00:57:05" +ik[13514] = 34.587 +il[13514] = -141 +im[13514] = 0.0781 +ij[13514] = 8 +id[13515] = "3000-05-01T10:56:17" +ik[13515] = 0.204 +il[13515] = -106 +im[13515] = 0.0708 +ij[13515] = 28.5 +id[13516] = "3000-05-04T21:21:27" +ik[13516] = 1.014 +il[13516] = 130 +im[13516] = 0.0168 +ij[13516] = 27.5 +id[13517] = "3000-05-08T17:19:57" +ik[13517] = -23.446 +il[13517] = -133 +im[13517] = 0.0597 +ij[13517] = 15 +id[13518] = "3000-08-15T13:38:21" +ik[13518] = 47.027 +il[13518] = 160 +im[13518] = 0.0009 +ij[13518] = 3 +id[13519] = "3000-09-11T00:50:48" +ik[13519] = -2.29 +il[13519] = -108 +im[13519] = 0.0744 +ij[13519] = 2 +id[13520] = "3000-12-12T18:59:28" +ik[13520] = 1.93 +il[13520] = 146 +im[13520] = 0.2464 +ij[13520] = 11 + + + + + +l = 13520; + + +woe = "W"; + +wc = 1; + + + +for(i=1; i", 710*x, ((au*20)-12)*y, false, 25, "#FF00FF"); +LabelMgr.setLabelShow(txt1, true); + +core.wait(0.07); + + +d = Math.floor(core.getJDay()); +r = d; + +while (d==r) +{ +r = Math.floor(core.getJDay()); +} + +if (r - d == 1) +{ +au = au + 1; +core.setDate("-1 days"); +if (au > 25) +{ +au = 1; +} +} + + +if (r - d == -1) +{ +au = au - 1; +core.setDate("+1 days"); +if (au < 1 ) +{ +au = 25 +} +} + + +if (r - d == 7) +{ +q = 1; +ss = 1; +} + + +LabelMgr.setLabelShow(txt1, false); + + +if (r - d == -7) +{ +q = 1; +ss = 0; +} + +} // end main screen + + + + + +txt1 = LabelMgr.labelScreen("-->", 710*x, ((au*20)-12)*y, false, 25, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); +core.wait(.5); + +LabelMgr.deleteAllLabels(); + +LandscapeMgr.setFlagAtmosphere(oatmo); +LandscapeMgr.getFlagLandscape(oland); + + + + + +// Basics + + + +StelMovementMgr.zoomTo(87, 1); + +SolarSystem.setLabelsAmount(20); +StelSkyDrawer.setFlagLuminanceAdaptation(false); +core.selectObjectByName("Earth", pointer = true); +StelMovementMgr.setFlagTracking(true); + + + +LandscapeMgr.setFlagAtmosphere(true); + +LandscapeMgr.setFlagLandscape(true); + +p = 0; + + + +// Label +if (ss == 0) +{ + + +txt1 = LabelMgr.labelScreen("Press + for next event", 700 * x, 400*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press - for previous event", 700*x, 440*y, false,15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Press [ go back to start date ", 700*x, 460*y,false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press ] go back to Main Menu", 700*x, 480*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +} + +else +{ +txt1 = LabelMgr.labelScreen("Press + - [ or ] for Main Menu ", 700*x, 460*y,false, 15,"#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} + + + + + + +// Pick where to start + + + +j = core.getJDay(); + + +core.setDate(id[f]); +jj = core.getJDay(); + +core.setDate(id[l]); +jjj = core.getJDay(); + + +core.setJDay(j); + +if (j > jjj) +{ +core.setDate("now"); +} + +if (j < jj) +{ +core.setDate("now"); +} + + +j = core.getJDay(); + + + + +km = 1; +i = 1; + + + + +while (km == 1) +{ +i = i + 1; + +core.setDate(id[i]); +jj = core.getJDay(); +if (jj +1> j) +{ +km = i; +} +} + + + + +q = 0; +p = 1; +i = i -1; + + + + + +while(q == 0) +{ + + + +// program + + + +i = i + p; + +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} + + +if (au == 2) // Orbit +{ +ag = 0; + +if (ij[i] < 20) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] < 20) +{ +ag = 2; +} +} +} + + + +if (au == 3) // Greatest +{ +ag = 0; +if (ij[i] < 5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] < 5) +{ +ag = 2; +} +} +} + +if (au == 4) // Elongations +{ +ag = 0; +if (ij[i] == 1 || ij[i] == 3) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 1 || ij[i] == 3) +{ +ag = 2; +} +} +} + + +if (au == 5) // Western Elongations +{ +ag = 0; +if (ij[i] == 1) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 1) +{ +ag = 2; +} +} +} + + +if (au == 6) // Eastern Elongations +{ +ag = 0; +if (ij[i] == 3) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 3) +{ +ag = 2; +} +} +} + + + +if (au == 7) // Brilliancy +{ +ag = 0; +if (ij[i] == 2 || ij[i] == 4) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 2 || ij[i] == 4) +{ +ag = 2; +} +} +} + + +if (au == 8) // Western brilliancy +{ +ag = 0; +if (ij[i] == 4) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 4) +{ +ag = 2; +} +} +} + + +if (au == 9) // Eastern Brilliancy +{ +ag = 0; +if (ij[i] == 2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 2) +{ +ag = 2; +} +} +} + + +if (au == 10) // All CoQuads +{ +ag = 0; +if (ij[i] == 8 || ij[i] == 9) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 8 || ij[i] == 9) +{ +ag = 2; +} +} +} + + + + +if (au == 11) // West Coq +{ +ag = 0; +if (ij[i] == 8) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 8) +{ +ag = 2; +} +} +} + + +if (au == 12) // East Coq +{ +ag = 0; +if (ij[i] == 9) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 9) +{ +ag = 2; +} +} +} + + +if (au == 13) // Retro +{ +ag = 0; + + +if (Math.floor(ij[i]) == 7 || ij[i] == 13 || ij[i] == 14) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (Math.floor(ij[i]) == 7 || ij[i] == 13 || ij[i] == 14) +{ +ag = 2; +} +} +} + + +if (au == 14) //Sup conjunction +{ +ag = 0; +if (ij[i] == 12) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 12) +{ +ag = 2; +} +} +} + + +if (au == 15) //Inf conjunction +{ +ag = 0; +if (ij[i] == 11) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 11) +{ +ag = 2; +} +} +} + + + +if (au == 16) // Zodiac +{ +ag = 0; +if (ij[i] == 15 || ij[i] == 16 || ij[i] == 17 || ij[i] == 18) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 15 || ij[i] == 16 || ij[i] == 17 || ij[i] == 18) +{ +ag = 2; +} +} +} + + + +if (au == 17) // Conjunctions +{ +ag = 0; +if (ij[i] > 20) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] > 20) +{ +ag = 2; +} +} +} + +if (au == 18) // Stars +{ +ag = 0; +if (Math.floor(ij[i]) == 27) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (Math.floor(ij[i]) == 27) +{ +ag = 2; +} +} +} + +if (au == 19) // Planets +{ +ag = 0; +if (Math.floor(ij[i]) == 28) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (Math.floor(ij[i]) == 28) +{ +ag = 2; +} +} +} + +if (au == 20) // Mercury +{ +ag = 0; +if (ij[i] == 28.1) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.1) +{ +ag = 2; +} +} +} + +if (au == 21) // Venus +{ +ag = 0; +if (ij[i] == 28.2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.2) +{ +ag = 2; +} +} +} + +if (au == 22) // Jupiter +{ +ag = 0; +if (ij[i] == 28.5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.5) +{ +ag = 2; +} +} +} + + + +if (au == 23) // Saturn +{ +ag = 0; +if (ij[i] == 28.6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.6) +{ +ag = 2; +} +} +} + + +if (au == 24) // Uranus +{ +ag = 0; +if (ij[i] == 28.7) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.7) +{ +ag = 2; +} +} +} + + +if (au == 25) // Nep +{ +ag = 0; +if (ij[i] == 28.8) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 28.8) +{ +ag = 2; +} +} +} + + +if (au == 26) +{ +txt1 = LabelMgr.labelScreen("Later!!!", 400, 20, false, 75, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); +core.stopScript(); +} + + + + + +// #&!@)#& + + +// Find best times + + + +core.setDate(id[i]); + + + + +jd = core.getJDay(); + +d = jd - 2451543.5; + + +core.setObserverLocation(il[i], 30.1, 20, 0, "", "Mars"); + + + +// Sun + +w = 282.9404 + 0.0000470935 * d; +Me = 356.0470 + 0.9856002585 * d; +e = 0.016709 - 0.000000001151 * d; +wme = w + Me; +ob = 23.439281 - 0.0000003563 * d; +ob = ob * rad; + +if (wme < 0) +{ +while (wme < 0) +{ +wme = wme + 360; +} +} + +if (wme > 360) +{ +while (wme > 360) +{ +wme = wme - 360; +} +} + +EA = Me + (deg) * e * Math.sin(Me*rad) * (1 + e * Math.cos(Me*rad)); +xx = Math.cos(EA*rad) - e; +ysun = Math.sin(EA*rad) * Math.sqrt(1 - e*e); + +r = Math.sqrt(xx*xx + ysun*ysun); +rapp = r; +v = Math.atan2(ysun, xx) * deg; + +Lon = v + w; + +if (Lon < 0) +{ +while (Lon < 0) +{ +Lon = Lon + 360; +} +} + +if (Lon > 360) +{ +while (Lon > 360) +{ +Lon = Lon - 360; +} +} + +xx = r * Math.cos(Lon*rad); +ysun = r * Math.sin(Lon*rad); +z = 0.0; + +xe = xx; +ye = ysun * Math.cos(ob) + 0.0 * Math.sin(ob); +ze = ysun * Math.sin(ob) + 0.0 * Math.cos(ob); + +ra = Math.atan2( ye, xe ) * deg; +dec = Math.atan2( ze, Math.sqrt(xe*xe+ye*ye) )* deg; + +sundec = dec; +dd = dec + 50; + +if (ra<0) +{ +ra = (360+ra); +} + +sunra = ra; + +GMSTO = wme + 180; + +if (GMSTO > 360) +{ +GMSTO = GMSTO - 360; +} + + + +// Earth set +N = 49.5574 + 0.0000211081 * d; +ii = 1.8497 - 0.0000000178 * d; +w = 286.5016 + 0.0000292961 * d; +a = 1.523688; +e = 0.093405 + 0.000000002516 * d; +Me = 18.6021 + 0.5240207766 * d; +pet = 0; +pety = 0; + + + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + +Mj = Me * rad; + + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + +Ms = Me * rad; + + + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + + + + + + +if (w<0) +{ +while (w >0) +{ +w = w + 360; +} +} + + +if (w>360) +{ +while (w <360) +{ +w = w - 360; +} +} + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + + + + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + + + +if (N<0) +{ +while (N >0) +{ +N = N + 360; +} +} + +if (N>360) +{ +while (N <360) +{ +N = N - 360; +} +} + +if (ii<0) +{ +while (ii >0) +{ +ii = ii + 360; +} +} + +if (ii>360) +{ +while (ii <360) +{ +ii = ii - 360; +} +} + +ii = ii * rad; + + + +Merad = Me * rad; +N = N * rad; +E4 = 0; +E0 = Me + e*(deg) * Math.sin(Merad) * ( 1.0 + e * Math.cos(Merad) ); + + +while (E4 == 0) +{ + +E2 = E0 * rad; +E1 = E0 - (E2 - (e * Math.sin(E2)) - (Me* rad)) / ( 1 - e * Math.cos(E2)); + + +if (Math.abs(E1-E0)< 0.000001) +{ +E4 = 1; +} +else +{ +E0 = E1; +} +} + + +E0 = E1 * rad // Might as well use E0 as Radians + +xx = a * (Math.cos(E0) - e); +yy = a * (Math.sqrt(1 - e*e))* Math.sin(E0); + +r = Math.sqrt(xx*xx + yy*yy ); // Distance from sun + +rsun[i] = r; + + +v = Math.atan2(yy, xx ); +v = v * deg; +v = v *rad + w * rad; + + +// The position in space + +pxe = r * ( Math.cos(N) * Math.cos(v) - Math.sin(N) * Math.sin(v) * Math.cos(ii)); +pye = r * ( Math.sin(N) * Math.cos(v) + Math.cos(N) * Math.sin(v) * Math.cos(ii)); +pze = r * Math.sin(v) * Math.sin(ii); + + +// Helio Lat and Long + Petrubs + +ra = Math.atan2(pye, pxe ) + pet * rad; +dec = Math.atan2(pze, Math.sqrt(pxe*pxe+pye*pye) ) + pety * rad; + +// convert to earth centered + +xx = r * Math.cos(ra) * Math.cos(dec); +yy = r * Math.sin(ra) * Math.cos(dec); +zz = r * Math.sin(dec); // Distance to sun in AU - Not needed in this script + +gxe = xe + xx; +gye = ysun + yy; +gze = zz; + +// Precession + +xx = gxe; +yy = gye*Math.cos(ob) - gze*Math.sin(ob); +zz = gye*Math.sin(ob) + gze*Math.cos(ob); + + +ra = Math.atan2(yy, xx ) * deg; + + +dec = Math.atan2(zz, Math.sqrt(xx*xx+yy*yy) )* deg; +r = Math.sqrt( xx*xx + yy*yy + zz*zz ); + + + +ltravel = r * 499.02; +jlight = ltravel / 86400; +d = d - jlight; + + +lhrs = Math.floor(ltravel / 3600); + +lmin = (ltravel - (lhrs * 3600))/60 + +lsec = (lmin - Math.floor(lmin)) * 60 + +lmin = Math.floor(lmin); +lsec = Math.floor(lsec); + + + +hstring = " hours "; +if (lhrs == 1) +{ +hstring = " hour "; +} + + +mstring = " minutes " +if (lmin == 1) +{ +mstring = " minute "; +} + + +sstring = " seconds " +if (lsec == 1) +{ +sstring = " second "; +} + + + +txt1 = LabelMgr.labelScreen("Light Travel Time: " + lmin + mstring + lsec + sstring, 700*x, 670*y, false, 15, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + +stardec = dec; + +dd = (dec + 50) - dd; + +dd = dd.toFixed(3) + + + + +if (ra<0) +{ +ra = (360+ra); +} + +// Earth Phase + +fv[i] = (rsun[i]*rsun[i] + r*r - rapp*rapp) / (2*rsun[i]*r); +fv[i] = (Math.acos(fv[i])); +fv[i] = fv[i] * deg; + +// Earth Mag + +mag[i] = r*rsun[i]; +mag[i] = Math.log(mag[i]); +mag[i] = mag[i] / Math.log(10); +mag[i] = -3.88 + 5* mag[i] + 0.0124 * fv[i] + 0.00000042 * (fv[i] *fv[i]*fv[i] ); + + +// Earth Illum % +fvp[i] = (rapp*rapp + r*r - rsun[i]*rsun[i]) / (2*rapp*r); + +fvp[i] = (1 + fvp[i])/2; +fvp[i] = fvp[i] * 100; + + + +// Earth Mag +efv[i] = (rapp*rapp + r*r - rsun[i]*rsun[i]) / (2*rapp*r); +efv[i] = (Math.acos(efv[i] )); +efv[i] = 2/3 * ((1-(efv[i])/pi) * Math.cos(efv[i]) + (1/pi)*Math.sin(efv[i])); +efv[i] = (rapp * rapp * r * r)/efv[i]; +efv[i] = Math.log(efv[i]) / Math.log(10); +efv[i] = root * efv[i]; +mfv[i] = +0.21 + efv[i]; +emag[i] = -3.88 + efv[i]; + + +tmag = Math.pow(root, -emag[i]) + Math.pow(root, -mfv[i]) +tmag = Math.log(tmag) / Math.log(10) +tmag = -2.5 * tmag + + + + +// Reverse -Earth Phase + + + + +efv[i] = (rapp*rapp + r*r - rsun[i]*rsun[i]) / (2*rapp*r); +efv[i] = (Math.acos(efv[i] ) * deg); + +efv[i] = Math.cos(efv[i]*rad); +efv[i] = (1 + efv[i])/2; +efv[i] = efv[i] * 100; + + +// Earth Elong + +elong[i] = (rapp*rapp + r*r - rsun[i] * rsun[i]); +elong[i] = elong[i] / (2 * rapp * r); +elong[i] = Math.acos(elong[i]) * deg ; + + +// west or east + + + +// n/a + + + + +txt1 = LabelMgr.labelScreen("Elongation:", 10*x, 530*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +if (fv[i] < 10) +{ +txt1 = LabelMgr.labelScreen(fv[i].toFixed(3) + degstring + woes[i], 205*x, 530*y, false, 20,"#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + +else + +if (fv[i] < 100) +{ +txt1 = LabelMgr.labelScreen(fv[i].toFixed(3) + degstring + woes[i], 195*x, 530*y, false, 20,"#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + +else + +{ +txt1 = LabelMgr.labelScreen(fv[i].toFixed(3) + degstring + woes[i], 185*x, 560*y, false, 20,"#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +} + + + + +txt1 = LabelMgr.labelScreen(fvp[i].toFixed(3)+"%", 195*x, 555*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Illumination:", 10*x, 555*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + +txt1 = LabelMgr.labelScreen("Total Magnitude:", 10*x, 580*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(tmag.toFixed(3), 200*x, 580*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + + +txt1 = LabelMgr.labelScreen("Earth Magnitude:", 10*x, 610*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(emag[i].toFixed(3), 200*x, 610*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Moon Magnitude:", 10*x, 640*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +if (mfv[i] < 0) +{ + +txt1 = LabelMgr.labelScreen(mfv[i].toFixed(3), 200*x, 640*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} +else +{ +txt1 = LabelMgr.labelScreen(mfv[i].toFixed(3), 205*x, 640*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + + + + + + +txt1 = LabelMgr.labelScreen("Moon Elongation:", 10*x, 665*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(im[i].toFixed(3) + degstring, 205*x, 665*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +if (il[i] > 0) +{ +txt1 = LabelMgr.labelScreen("Viewing Longitude: " + il[i] + "E", 10*x, 695*y, false, 20, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} +else +{ +txt1 = LabelMgr.labelScreen("Viewing Longitude: " + Math.abs(il[i])+"W", 10*x, 695*y, false, 20, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} + + + + + +ename = "Something"; + + + + + + +flo = Math.floor(ij[i]); + +// Yes an Array would be nice but for some !@^# reason it won't work so I have to do it the hard //way + + +if (flo == 1) +{ +ename = "Western Greatest Elongation"; +} + +if (flo == 2) +{ +ename = "Eastern Greatest Brilliancy"; +} + +if (flo == 3) +{ +ename = "Eastern Greatest Elongation"; +} + + + +if (flo == 4) +{ +ename = "Western Greatest Brilliancy"; +} + + + +if (flo == 5) +{ +ename = "Eastern Quadrature"; +} + +if (flo == 6) +{ +ename = "Western Quadrature"; +} + +if (flo == 7) +{ +ename = "End Retrograde Motion after "+ ik[i] + " days and " + ((ij[i]-flo) * 100).toFixed(2) + degstring; + +} + +if (flo == 8) +{ +ename = "Eastern CoQuadrature"; +} + +if (flo == 9) +{ +ename = "Western CoQuadrature"; +} + + + +if (flo == 11) +{ +ename = "Inferior Conjunction"; +} + +if (flo == 12) +{ +ename = "Superior Conjunction"; +} + + +if (flo == 13) +{ +ename = "Start Retrograde Motion"; +} + + +if (flo == 14) +{ +ename = "Regain lost after Retrograde Motion after "+ ik[i] + " days"; + +} + + +if (flo == 15) +{ +ename = "Bottom of Zodiac"; +} + + +if (flo == 16) +{ +ename = "Top of Zodiac"; +} + + + +if (flo == 17) +{ +ename = "Equator Descending"; + +if (ik[i] > 7) +{ +if (ik[i] < 16) +{ +ename = "Equator Descending Retrograde"; +} +} +} + + +if (flo == 18) +{ +ename = "Equator Ascending"; + +if (ik[i] < 5) +{ +if (ik[i] > 20) +{ +ename = "Equator Ascending Retrograde"; +} +} +} + + + + +if (flo == 27) +{ +if (ij[i] == 27.1) +{ +ename = "Conjunction - Aldebaran "+ik[i].toFixed(3) + degstring ; +} +if (ij[i] == 27.2) +{ +ename = "Conjunction - Antares " +ik[i].toFixed(3) + degstring; +} +if (ij[i] == 27.3) +{ +ename = "Conjunction - Beehive "+ik[i].toFixed(3) + degstring; +} +if (ij[i] == 27.4) +{ +ename = "Conjunction - Pleiades "+ik[i].toFixed(3) + degstring ; +} +if (ij[i] == 27.5) +{ +ename = "Conjunction - Regulus "+ik[i].toFixed(3) + degstring; +} +if (ij[i] == 27.6) +{ +ename = "Conjunction - Spica "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.7) +{ +ename = "Conjunction - Circlet "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.8) +{ +ename = "Conjunction - Alpha Capricorn "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.9) +{ +ename = "Conjunction - Lagoon Nebulea "+ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 27.91) +{ +ename = "Conjunction - Lagoon Nebulea "+ik[i].toFixed(3) + degstring; +} + + + + + +} + + + +if (flo == 28) +{ +if (ij[i] == 28.1) +{ +ename = "Conjunction - Mercury "+ik[i].toFixed(3) + degstring ; +} +if (ij[i] == 28.2) +{ +ename = "Conjunction - Venus "+ik[i].toFixed(3) + degstring ; +} + + +if (ij[i] == 28.5) +{ +ename = "Conjunction - Jupiter " +ik[i].toFixed(3) + degstring; +} +if (ij[i] == 28.6) +{ +ename = "Conjunction - Saturn " +ik[i].toFixed(3) + degstring; +} + +if (ij[i] == 28.7) +{ +ename = "Conjunction - Uranus "+ik[i].toFixed(3) + degstring ; +} + + +if (ij[i] == 28.8) +{ +ename = "Conjunction - Neptune "+ik[i].toFixed(3) + degstring ; +} + + + + +} + + + + +txt1 = LabelMgr.labelScreen(ename, 450*x, 0*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(ename, 10*x, 500*y, false, 20, "#00FF71"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Julian Date:", 700*x, 635*y, false, 15, "#00FF71"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(core.getJDay().toFixed(3), 775*x, 635*y, false, 15, "#00FF71"); +LabelMgr.setLabelShow(txt1, true); + + + + +// Wait for Keypress + + +d = Math.floor(core.getJDay()); +r = d; + + +pak = 0 + +if (ss ==1) +{ +while (pak < spd) +{ +core.wait(0.25); +pak = pak + 1; + +r = Math.floor(core.getJDay()); + +if (Math.abs(r-d) > 0) +{ +pak = spd + 1; +core.setDate("+100 days") +} +} +r = Math.floor(core.getJDay()) + 1; +} + + + +while (d == r) +{ +r = Math.floor(core.getJDay()); +} + +LabelMgr.deleteAllLabels(); + +if (r - d == -1) +{ +p = - 1; +} + +if (r - d == 1) +{ +p = 1; +} + +// Start +if (r - d > 6) +{ +if (id[km].substring(10,11) == "T") +{ +core.setDate(id[km]); +} +else +{ +tt = id[km] + "T12:00:00"; +core.setDate(tt,"local"); + +} +q = 1; +} + + +//t +if (r - d < -6) +{ +i = km - p +} + + + + + +LabelMgr.deleteAllLabels(); + +} +} + + +txt1 = LabelMgr.labelScreen("Later!!!", 400, 20, false, 75, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); + +core.wait(2); + +LabelMgr.deleteAllLabels(); diff -Nru stellarium-0.12.1/scripts/earth_5.ssc stellarium-0.12.4/scripts/earth_5.ssc --- stellarium-0.12.1/scripts/earth_5.ssc 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/scripts/earth_5.ssc 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,21696 @@ +// Author: Qam1 +// Name: Earth Greatest Elongations and Brilliancies from Mars +// License: Public Domain +// Version: 5.1 +// Description: Earth Greatest Elongations and Brilliancies from Mars 2000-3000 + +// Made on Stellarium 0.12.1 + + + +spd = 4; // speed for screen saver mode in seconds + + +core.setTimeRate(0); + + +y = core.getScreenHeight()/768; +x = core.getScreenWidth()/1024; +wt = 0.05; +q = 0; +skip = 0; +biteme = 1; + + +pi = 3.14159265358979323846264338327950288419716939937510; +rad = pi/180; +deg = 180/pi; +root = Math.pow(100,0.2); + +degstring = "\u00B0"; + + +cplanet = "Earth"; +lplanet = "Earth"; + + +ah = "7777-07-07T07:07:07"; //why o why is this necessary?? + + +id = new Array(length= 4000); +ik = new Array(length= 4000); +il = new Array(length= 4000); +im = new Array(length= 4000); +ij = new Array(length= 4000); + +LabelMgr.deleteAllLabels(); + +long = -73.4; +lat = 30.1; + +core.setObserverLocation(long, lat, 20, 1, "", "Mars"); + + +spd = spd * 4; + +p = 0; +f = 1; +// Data + + +ag = 0; +i = 1; + + +id[1] = "2000-04-22T04:24:57" +ik[1] = 28.778 +il[1] = 177 +im[1] = 0 +ij[1] = 5 +id[2] = "2000-08-13T10:04:56" +ik[2] = 26.155 +il[2] = -113 +im[2] = 0 +ij[2] = 6 +id[3] = "2001-03-05T19:34:53" +ik[3] = 38.216 +il[3] = 129 +im[3] = 0.0799 +ij[3] = 3 +id[4] = "2001-03-05T22:35:54" +ik[4] = 26.756 +il[4] = 85 +im[4] = 0 +ij[4] = 5 +id[5] = "2001-03-12T16:36:44" +ik[5] = -1.715 +il[5] = -121 +im[5] = 0.0863 +ij[5] = 2 +id[6] = "2001-06-28T18:30:57" +ik[6] = 30.041 +il[6] = -50 +im[6] = 0 +ij[6] = 6 +id[7] = "2001-09-15T09:49:38" +ik[7] = -2.351 +il[7] = 132 +im[7] = 0.1346 +ij[7] = 4 +id[8] = "2001-10-07T18:29:57" +ik[8] = 46.282 +il[8] = -138 +im[8] = 0.0862 +ij[8] = 1 +id[9] = "2002-02-19T03:37:52" +ik[9] = 29.329 +il[9] = 141 +im[9] = 0 +ij[9] = 5 +id[10] = "2002-06-12T22:30:51" +ik[10] = 26.401 +il[10] = 20 +im[10] = 0 +ij[10] = 6 +id[11] = "2003-01-03T04:30:51" +ik[11] = 26.415 +il[11] = -47 +im[11] = 0 +ij[11] = 5 +id[12] = "2003-04-27T10:28:50" +ik[12] = 29.516 +il[12] = 19 +im[12] = 0 +ij[12] = 6 +id[13] = "2003-05-10T20:39:50" +ik[13] = 43.147 +il[13] = -158 +im[13] = 0.0687 +ij[13] = 3 +id[14] = "2003-06-08T19:58:33" +ik[14] = -2.168 +il[14] = 128 +im[14] = 0.113 +ij[14] = 2 +id[15] = "2003-11-19T07:25:40" +ik[15] = -2.162 +il[15] = -79 +im[15] = 0.0266 +ij[15] = 4 +id[16] = "2003-12-14T09:07:55" +ik[16] = 42.285 +il[16] = 136 +im[16] = 0.0907 +ij[16] = 1 +id[17] = "2003-12-18T21:16:50" +ik[17] = 29.888 +il[17] = -179 +im[17] = 0 +ij[17] = 5 +id[18] = "2004-04-11T06:19:52" +ik[18] = 26.705 +il[18] = -134 +im[18] = 0 +ij[18] = 6 +id[19] = "2004-11-01T15:24:54" +ik[19] = 26.134 +il[19] = 113 +im[19] = 0 +ij[19] = 5 +id[20] = "2005-02-23T07:57:56" +ik[20] = 28.987 +il[20] = 7 +im[20] = 0 +ij[20] = 6 +id[21] = "2005-07-13T05:07:52" +ik[21] = 47.377 +il[21] = 161 +im[21] = 0.0459 +ij[21] = 3 +id[22] = "2005-08-10T20:15:28" +ik[22] = -2.364 +il[22] = -146 +im[22] = 0.0551 +ij[22] = 2 +id[23] = "2005-10-16T09:08:55" +ik[23] = 30.429 +il[23] = -46 +im[23] = 0 +ij[23] = 5 +id[24] = "2006-01-31T18:50:08" +ik[24] = -1.759 +il[24] = -76 +im[24] = 0.1218 +ij[24] = 4 +id[25] = "2006-02-08T08:45:53" +ik[25] = 27.066 +il[25] = 147 +im[25] = 0 +ij[25] = 6 +id[26] = "2006-02-13T09:45:47" +ik[26] = 38.468 +il[26] = 179 +im[26] = 0.1313 +ij[26] = 1 +id[27] = "2006-09-01T06:33:50" +ik[27] = 25.912 +il[27] = -153 +im[27] = 0 +ij[27] = 5 +id[28] = "2006-12-23T10:38:55" +ik[28] = 28.474 +il[28] = -80 +im[28] = 0 +ij[28] = 6 +id[29] = "2007-08-14T15:11:48" +ik[29] = 30.923 +il[29] = 166 +im[29] = 0 +ij[29] = 5 +id[30] = "2007-08-28T20:16:48" +ik[30] = 44.346 +il[30] = -130 +im[30] = 0.1202 +ij[30] = 3 +id[31] = "2007-09-15T14:20:49" +ik[31] = -2.074 +il[31] = 133 +im[31] = 0.1058 +ij[31] = 2 +id[32] = "2007-12-08T05:05:51" +ik[32] = 27.483 +il[32] = 158 +im[32] = 0 +ij[32] = 6 +id[33] = "2008-03-26T14:37:43" +ik[33] = -1.582 +il[33] = -33 +im[33] = 0.0746 +ij[33] = 4 +id[34] = "2008-03-30T15:41:54" +ik[34] = 37.08 +il[34] = -11 +im[34] = 0.0169 +ij[34] = 1 +id[35] = "2008-07-01T01:14:52" +ik[35] = 25.749 +il[35] = -110 +im[35] = 0 +ij[35] = 5 +id[36] = "2008-10-21T18:07:46" +ik[36] = 27.989 +il[36] = 124 +im[36] = 0 +ij[36] = 6 +id[37] = "2009-06-11T15:29:48" +ik[37] = 31.334 +il[37] = 103 +im[37] = 0 +ij[37] = 5 +id[38] = "2009-10-05T18:42:46" +ik[38] = 27.954 +il[38] = -92 +im[38] = 0 +ij[38] = 6 +id[39] = "2009-10-14T17:28:53" +ik[39] = 39.858 +il[39] = -145 +im[39] = 0.0647 +ij[39] = 3 +id[40] = "2009-10-15T20:30:37" +ik[40] = -1.808 +il[40] = -180 +im[40] = 0.0862 +ij[40] = 2 +id[41] = "2010-04-30T22:45:50" +ik[41] = 25.642 +il[41] = -110 +im[41] = 0 +ij[41] = 5 +id[42] = "2010-05-09T23:12:46" +ik[42] = 37.454 +il[42] = 86 +im[42] = 0.0788 +ij[42] = 1 +id[43] = "2010-05-11T22:06:37" +ik[43] = -1.568 +il[43] = 122 +im[43] = 0.1005 +ij[43] = 4 +id[44] = "2010-08-21T05:54:48" +ik[44] = 27.543 +il[44] = -96 +im[44] = 0 +ij[44] = 6 +id[45] = "2011-04-09T10:12:51" +ik[45] = 31.626 +il[45] = 121 +im[45] = 0 +ij[45] = 5 +id[46] = "2011-08-04T01:09:50" +ik[46] = 28.471 +il[46] = 122 +im[46] = 0 +ij[46] = 6 +id[47] = "2011-11-17T17:48:51" +ik[47] = -1.645 +il[47] = 12 +im[47] = 0.0355 +ij[47] = 2 +id[48] = "2011-11-25T17:21:50" +ik[48] = 37.083 +il[48] = 96 +im[48] = 0.1012 +ij[48] = 3 +id[49] = "2012-02-28T22:25:49" +ik[49] = 25.591 +il[49] = -141 +im[49] = 0 +ij[49] = 5 +id[50] = "2012-06-18T09:36:51" +ik[50] = 39.387 +il[50] = 153 +im[50] = 0.1155 +ij[50] = 1 +id[51] = "2012-06-19T21:25:46" +ik[51] = 27.141 +il[51] = -10 +im[51] = 0 +ij[51] = 6 +id[52] = "2012-06-24T05:39:05" +ik[52] = -1.689 +il[52] = -91 +im[52] = 0.0528 +ij[52] = 4 +id[53] = "2013-02-03T23:38:49" +ik[53] = 31.768 +il[53] = -143 +im[53] = 0 +ij[53] = 5 +id[54] = "2013-06-01T00:17:51" +ik[54] = 29.024 +il[54] = 81 +im[54] = 0 +ij[54] = 6 +id[55] = "2013-12-24T20:49:19" +ik[55] = -1.582 +il[55] = 168 +im[55] = 0.0264 +ij[55] = 2 +id[56] = "2013-12-28T23:36:48" +ik[56] = 25.595 +il[56] = 166 +im[56] = 0 +ij[56] = 5 +id[57] = "2014-01-02T23:30:46" +ik[57] = 36.171 +il[57] = -145 +im[57] = 0.095 +ij[57] = 3 +id[58] = "2014-04-19T16:07:49" +ik[58] = 26.786 +il[58] = 30 +im[58] = 0 +ij[58] = 6 +id[59] = "2014-08-01T14:42:13" +ik[59] = -1.935 +il[59] = -18 +im[59] = 0.0485 +ij[59] = 4 +id[60] = "2014-08-01T22:59:48" +ik[60] = 42.794 +il[60] = -139 +im[60] = 0.0399 +ij[60] = 1 +id[61] = "2014-12-02T08:23:42" +ik[61] = 31.738 +il[61] = 22 +im[61] = 0 +ij[61] = 5 +id[62] = "2015-03-29T16:26:49" +ik[62] = 29.595 +il[62] = 142 +im[62] = 0 +ij[62] = 6 +id[63] = "2015-10-29T01:40:48" +ik[63] = 25.653 +il[63] = 99 +im[63] = 0 +ij[63] = 5 +id[64] = "2016-02-14T12:51:07" +ik[64] = -1.638 +il[64] = -107 +im[64] = 0.0142 +ij[64] = 2 +id[65] = "2016-02-15T00:17:42" +ik[65] = 37.174 +il[65] = 86 +im[65] = 0.0063 +ij[65] = 3 +id[66] = "2016-02-17T13:25:49" +ik[66] = 26.481 +il[66] = 33 +im[66] = 0 +ij[66] = 6 +id[67] = "2016-08-31T09:24:01" +ik[67] = -2.257 +il[67] = -159 +im[67] = 0.1601 +ij[67] = 4 +id[68] = "2016-09-17T15:44:47" +ik[68] = 46.122 +il[68] = -85 +im[68] = 0.1367 +ij[68] = 1 +id[69] = "2016-09-28T13:30:43" +ik[69] = 31.535 +il[69] = -119 +im[69] = 0 +ij[69] = 5 +id[70] = "2017-01-24T02:33:47" +ik[70] = 30.156 +il[70] = -70 +im[70] = 0 +ij[70] = 6 +id[71] = "2017-08-28T04:00:46" +ik[71] = 25.765 +il[71] = 28 +im[71] = 0 +ij[71] = 5 +id[72] = "2017-12-17T12:42:46" +ik[72] = 26.227 +il[72] = 7 +im[72] = 0 +ij[72] = 6 +id[73] = "2018-04-12T05:52:48" +ik[73] = 40.81 +il[73] = 10 +im[73] = 0.1179 +ij[73] = 3 +id[74] = "2018-05-03T22:19:09" +ik[74] = -1.946 +il[74] = -31 +im[74] = 0.0858 +ij[74] = 2 +id[75] = "2018-07-26T16:39:47" +ik[75] = 31.177 +il[75] = 130 +im[75] = 0 +ij[75] = 5 +id[76] = "2018-10-19T23:52:29" +ik[76] = -2.32 +il[76] = -48 +im[76] = 0.0639 +ij[76] = 4 +id[77] = "2018-11-15T18:54:43" +ik[77] = 44.312 +il[77] = -72 +im[77] = 0.0147 +ij[77] = 1 +id[78] = "2018-11-21T08:17:39" +ik[78] = 30.675 +il[78] = 141 +im[78] = 0 +ij[78] = 6 +id[79] = "2019-06-28T06:01:43" +ik[79] = 25.931 +il[79] = -38 +im[79] = 0 +ij[79] = 5 +id[80] = "2019-10-17T13:24:40" +ik[80] = 26.024 +il[80] = -40 +im[80] = 0 +ij[80] = 6 +id[81] = "2020-05-22T20:05:42" +ik[81] = 30.698 +il[81] = 16 +im[81] = 0 +ij[81] = 5 +id[82] = "2020-06-22T00:29:39" +ik[82] = 46.59 +il[82] = -121 +im[82] = 0.164 +ij[82] = 3 +id[83] = "2020-07-22T08:44:57" +ik[83] = -2.388 +il[83] = 49 +im[83] = 0.1622 +ij[83] = 2 +id[84] = "2020-09-17T11:48:46" +ik[84] = 31.112 +il[84] = 22 +im[84] = 0 +ij[84] = 6 +id[85] = "2021-01-05T10:03:11" +ik[85] = -1.89 +il[85] = 24 +im[85] = 0.0703 +ij[85] = 4 +id[86] = "2021-01-22T17:39:41" +ik[86] = 39.634 +il[86] = 74 +im[86] = 0.0379 +ij[86] = 1 +id[87] = "2021-04-27T07:06:40" +ik[87] = 26.15 +il[87] = -90 +im[87] = 0 +ij[87] = 5 +id[88] = "2021-08-16T14:55:40" +ik[88] = 25.873 +il[88] = -97 +im[88] = 0 +ij[88] = 6 +id[89] = "2022-03-20T02:09:44" +ik[89] = 30.14 +il[89] = -135 +im[89] = 0 +ij[89] = 5 +id[90] = "2022-07-15T15:29:39" +ik[90] = 31.427 +il[90] = -100 +im[90] = 0 +ij[90] = 6 +id[91] = "2022-08-10T11:18:40" +ik[91] = 46.08 +il[91] = 35 +im[91] = 0.1119 +ij[91] = 3 +id[92] = "2022-09-02T23:12:32" +ik[92] = -2.198 +il[92] = 87 +im[92] = 0.0205 +ij[92] = 2 +id[93] = "2023-02-25T06:37:43" +ik[93] = 26.423 +il[93] = -120 +im[93] = 0 +ij[93] = 5 +id[94] = "2023-03-07T20:15:39" +ik[94] = -1.629 +il[94] = -87 +im[94] = 0.1262 +ij[94] = 4 +id[95] = "2023-03-14T19:11:42" +ik[95] = 37.387 +il[95] = -5 +im[95] = 0.0099 +ij[95] = 1 +id[96] = "2023-06-16T16:41:39" +ik[96] = 25.773 +il[96] = -158 +im[96] = 0 +ij[96] = 6 +id[97] = "2024-01-15T12:58:36" +ik[97] = 29.544 +il[97] = 5 +im[97] = 0 +ij[97] = 5 +id[98] = "2024-05-11T21:30:40" +ik[98] = 31.593 +il[98] = 103 +im[98] = 0 +ij[98] = 6 +id[99] = "2024-09-26T14:08:44" +ik[99] = 41.468 +il[99] = -59 +im[99] = 0.028 +ij[99] = 3 +id[100] = "2024-10-03T16:34:20" +ik[100] = -1.9 +il[100] = -26 +im[100] = 0.1269 +ij[100] = 2 +id[101] = "2024-12-25T03:59:36" +ik[101] = 26.749 +il[101] = -118 +im[101] = 0 +ij[101] = 5 +id[102] = "2025-04-15T18:06:37" +ik[102] = 25.725 +il[102] = 147 +im[102] = 0 +ij[102] = 6 +id[103] = "2025-04-24T08:34:20" +ik[103] = -1.556 +il[103] = 12 +im[103] = 0.0709 +ij[103] = 4 +id[104] = "2025-04-24T13:25:40" +ik[104] = 37.119 +il[104] = -59 +im[104] = 0.0742 +ij[104] = 1 +id[105] = "2025-11-12T06:05:36" +ik[105] = 28.945 +il[105] = 53 +im[105] = 0 +ij[105] = 5 +id[106] = "2026-03-09T07:25:40" +ik[106] = 31.594 +il[106] = -111 +im[106] = 0 +ij[106] = 6 +id[107] = "2026-10-24T22:35:36" +ik[107] = 27.127 +il[107] = -76 +im[107] = 0 +ij[107] = 5 +id[108] = "2026-11-04T14:14:47" +ik[108] = -1.696 +il[108] = 152 +im[108] = 0.0463 +ij[108] = 2 +id[109] = "2026-11-10T01:00:37" +ik[109] = 37.94 +il[109] = 43 +im[109] = 0.1126 +ij[109] = 3 +id[110] = "2027-02-13T18:33:41" +ik[110] = 25.73 +il[110] = 106 +im[110] = 0 +ij[110] = 6 +id[111] = "2027-06-03T08:32:38" +ik[111] = 38.443 +il[111] = -133 +im[111] = 0.101 +ij[111] = 1 +id[112] = "2027-06-08T03:12:35" +ik[112] = -1.626 +il[112] = -7 +im[112] = 0.0611 +ij[112] = 4 +id[113] = "2027-09-10T06:19:35" +ik[113] = 28.37 +il[113] = -5 +im[113] = 0 +ij[113] = 5 +id[114] = "2028-01-04T22:14:35" +ik[114] = 31.437 +il[114] = -37 +im[114] = 0 +ij[114] = 6 +id[115] = "2028-08-23T13:46:33" +ik[115] = 27.556 +il[115] = 15 +im[115] = 0 +ij[115] = 5 +id[116] = "2028-12-09T01:15:15" +ik[116] = -1.594 +il[116] = 162 +im[116] = 0.0196 +ij[116] = 2 +id[117] = "2028-12-13T17:26:35" +ik[117] = 25.788 +il[117] = 93 +im[117] = 0 +ij[117] = 6 +id[118] = "2028-12-18T15:58:36" +ik[118] = 36.313 +il[118] = 34 +im[118] = 0.0948 +ij[118] = 3 +id[119] = "2029-07-08T13:55:37" +ik[119] = 27.834 +il[119] = -162 +im[119] = 0 +ij[119] = 5 +id[120] = "2029-07-15T00:32:41" +ik[120] = 41.313 +il[120] = -124 +im[120] = 0.0756 +ij[120] = 1 +id[121] = "2029-07-19T04:52:09" +ik[121] = -1.825 +il[121] = -149 +im[121] = 0.0309 +ij[121] = 4 +id[122] = "2029-11-01T18:30:40" +ik[122] = 31.141 +il[122] = -42 +im[122] = 0 +ij[122] = 6 +id[123] = "2030-06-23T00:57:36" +ik[123] = 28.03 +il[123] = 165 +im[123] = 0 +ij[123] = 5 +id[124] = "2030-10-13T14:07:35" +ik[124] = 25.899 +il[124] = 105 +im[124] = 0 +ij[124] = 6 +id[125] = "2031-01-22T21:49:03" +ik[125] = -1.598 +il[125] = 118 +im[125] = 0.1025 +ij[125] = 2 +id[126] = "2031-01-28T07:13:35" +ik[126] = 36.526 +il[126] = 28 +im[126] = 0.0426 +ij[126] = 3 +id[127] = "2031-05-07T04:42:40" +ik[127] = 27.35 +il[127] = -73 +im[127] = 0 +ij[127] = 5 +id[128] = "2031-08-20T02:18:24" +ik[128] = -2.131 +il[128] = 38 +im[128] = 0.1398 +ij[128] = 4 +id[129] = "2031-08-30T20:27:36" +ik[129] = 30.738 +il[129] = -129 +im[129] = 0 +ij[129] = 6 +id[130] = "2031-08-30T21:54:34" +ik[130] = 45.095 +il[130] = -150 +im[130] = 0.1238 +ij[130] = 1 +id[131] = "2032-04-21T07:35:36" +ik[131] = 28.543 +il[131] = 21 +im[131] = 0 +ij[131] = 5 +id[132] = "2032-08-12T07:54:37" +ik[132] = 26.065 +il[132] = 163 +im[132] = 0 +ij[132] = 6 +id[133] = "2033-03-05T02:11:36" +ik[133] = 26.923 +il[133] = -79 +im[133] = 0 +ij[133] = 5 +id[134] = "2033-03-18T07:04:39" +ik[134] = 38.991 +il[134] = -27 +im[134] = 0.1207 +ij[134] = 3 +id[135] = "2033-03-30T05:09:58" +ik[135] = -1.778 +il[135] = 115 +im[135] = 0.1375 +ij[135] = 2 +id[136] = "2033-06-28T04:12:34" +ik[136] = 30.262 +il[136] = 59 +im[136] = 0 +ij[136] = 6 +id[137] = "2033-09-26T00:52:12" +ik[137] = -2.372 +il[137] = -88 +im[137] = 0.2054 +ij[137] = 4 +id[138] = "2033-10-20T14:13:37" +ik[138] = 45.874 +il[138] = -47 +im[138] = 0.1452 +ij[138] = 1 +id[139] = "2034-02-18T09:09:30" +ik[139] = 29.087 +il[139] = -49 +im[139] = 0 +ij[139] = 5 +id[140] = "2034-06-11T22:07:32" +ik[140] = 26.287 +il[140] = -86 +im[140] = 0 +ij[140] = 6 +id[141] = "2035-01-02T05:41:34" +ik[141] = 26.556 +il[141] = -175 +im[141] = 0 +ij[141] = 5 +id[142] = "2035-04-26T17:41:34" +ik[142] = 29.745 +il[142] = 164 +im[142] = 0 +ij[142] = 6 +id[143] = "2035-05-27T10:53:36" +ik[143] = 44.531 +il[143] = 45 +im[143] = 0.0742 +ij[143] = 3 +id[144] = "2035-06-27T01:27:46" +ik[144] = -2.281 +il[144] = 118 +im[144] = 0.0118 +ij[144] = 2 +id[145] = "2035-12-07T06:46:00" +ik[145] = -2.059 +il[145] = 3 +im[145] = 0.0829 +ij[145] = 4 +id[146] = "2035-12-18T05:15:30" +ik[146] = 29.645 +il[146] = -40 +im[146] = 0 +ij[146] = 5 +id[147] = "2035-12-29T20:32:38" +ik[147] = 41.23 +il[147] = 11 +im[147] = 0.154 +ij[147] = 1 +id[148] = "2036-04-10T08:02:32" +ik[148] = 26.566 +il[148] = 87 +im[148] = 0 +ij[148] = 6 +id[149] = "2036-10-31T14:31:29" +ik[149] = 26.249 +il[149] = 15 +im[149] = 0 +ij[149] = 5 +id[150] = "2037-02-22T12:48:31" +ik[150] = 29.215 +il[150] = -173 +im[150] = 0 +ij[150] = 6 +id[151] = "2037-07-23T17:05:34" +ik[151] = 47.21 +il[151] = -15 +im[151] = 0.1096 +ij[151] = 3 +id[152] = "2037-08-19T23:34:01" +ik[152] = -2.315 +il[152] = 155 +im[152] = 0.0926 +ij[152] = 2 +id[153] = "2037-10-15T19:39:30" +ik[153] = 30.197 +il[153] = 51 +im[153] = 0 +ij[153] = 5 +id[154] = "2038-02-07T12:54:34" +ik[154] = 26.902 +il[154] = -26 +im[154] = 0 +ij[154] = 6 +id[155] = "2038-02-14T04:18:28" +ik[155] = -1.704 +il[155] = 166 +im[155] = 0.0299 +ij[155] = 4 +id[156] = "2038-02-24T14:04:33" +ik[156] = 37.99 +il[156] = 117 +im[156] = 0.0496 +ij[156] = 1 +id[157] = "2038-08-31T03:55:35" +ik[157] = 26.001 +il[157] = 135 +im[157] = 0 +ij[157] = 5 +id[158] = "2038-12-22T13:17:28" +ik[158] = 28.693 +il[158] = 132 +im[158] = 0 +ij[158] = 6 +id[159] = "2039-08-14T04:14:26" +ik[159] = 30.716 +il[159] = -133 +im[159] = 0 +ij[159] = 5 +id[160] = "2039-09-08T15:16:33" +ik[160] = 43.301 +il[160] = -49 +im[160] = 0.0636 +ij[160] = 3 +id[161] = "2039-09-22T14:51:22" +ik[161] = -2.008 +il[161] = 94 +im[161] = 0.0757 +ij[161] = 2 +id[162] = "2039-12-07T11:58:33" +ik[162] = 27.295 +il[162] = -54 +im[162] = 0 +ij[162] = 6 +id[163] = "2040-04-06T06:40:43" +ik[163] = -1.566 +il[163] = 85 +im[163] = 0.0397 +ij[163] = 4 +id[164] = "2040-04-08T20:56:32" +ik[164] = 37.024 +il[164] = -105 +im[164] = 0.0896 +ij[164] = 1 +id[165] = "2040-06-29T21:09:30" +ik[165] = 25.812 +il[165] = -161 +im[165] = 0 +ij[165] = 5 +id[166] = "2040-10-20T18:45:30" +ik[166] = 28.195 +il[166] = 5 +im[166] = 0 +ij[166] = 6 +id[167] = "2041-06-11T07:00:28" +ik[167] = 31.168 +il[167] = 128 +im[167] = 0 +ij[167] = 5 +id[168] = "2041-10-05T04:35:28" +ik[168] = 27.743 +il[168] = 12 +im[168] = 0 +ij[168] = 6 +id[169] = "2041-10-22T23:03:50" +ik[169] = -1.763 +il[169] = 111 +im[169] = 0.0983 +ij[169] = 2 +id[170] = "2041-10-24T13:44:32" +ik[170] = 39.091 +il[170] = -94 +im[170] = 0.112 +ij[170] = 3 +id[171] = "2042-04-29T17:31:29" +ik[171] = 25.681 +il[171] = -144 +im[171] = 0 +ij[171] = 5 +id[172] = "2042-05-18T18:36:34" +ik[172] = 37.739 +il[172] = 139 +im[172] = 0.1016 +ij[172] = 1 +id[173] = "2042-05-21T20:08:44" +ik[173] = -1.583 +il[173] = 146 +im[173] = 0.0834 +ij[173] = 4 +id[174] = "2042-08-20T04:43:32" +ik[174] = 27.731 +il[174] = 172 +im[174] = 0 +ij[174] = 6 +id[175] = "2043-04-09T04:07:32" +ik[175] = 31.517 +il[175] = 111 +im[175] = 0 +ij[175] = 5 +id[176] = "2043-08-03T14:12:28" +ik[176] = 28.242 +il[176] = 180 +im[176] = 0 +ij[176] = 6 +id[177] = "2043-11-25T14:13:11" +ik[177] = -1.622 +il[177] = 42 +im[177] = 0.0283 +ij[177] = 2 +id[178] = "2043-12-04T11:48:28" +ik[178] = 36.732 +il[178] = 164 +im[178] = 0.0993 +ij[178] = 3 +id[179] = "2044-02-27T16:20:29" +ik[179] = 25.606 +il[179] = -162 +im[179] = 0 +ij[179] = 5 +id[180] = "2044-06-18T18:42:28" +ik[180] = 27.309 +il[180] = -80 +im[180] = 0 +ij[180] = 6 +id[181] = "2044-06-27T20:22:33" +ik[181] = 40.009 +il[181] = -17 +im[181] = 0.0823 +ij[181] = 1 +id[182] = "2044-07-03T17:41:12" +ik[182] = -1.732 +il[182] = 81 +im[182] = 0.0499 +ij[182] = 4 +id[183] = "2045-02-03T19:48:25" +ik[183] = 31.727 +il[183] = 173 +im[183] = 0 +ij[183] = 5 +id[184] = "2045-05-31T16:30:25" +ik[184] = 28.781 +il[184] = 93 +im[184] = 0 +ij[184] = 6 +id[185] = "2045-12-27T16:56:29" +ik[185] = 25.585 +il[185] = 153 +im[185] = 0 +ij[185] = 5 +id[186] = "2046-01-03T16:31:53" +ik[186] = -1.582 +il[186] = -133 +im[186] = 0.075 +ij[186] = 2 +id[187] = "2046-01-11T22:37:29" +ik[187] = 36.214 +il[187] = -145 +im[187] = 0.0709 +ij[187] = 3 +id[188] = "2046-04-18T12:06:28" +ik[188] = 26.934 +il[188] = -21 +im[188] = 0 +ij[188] = 6 +id[189] = "2046-08-08T13:47:26" +ik[189] = -2.002 +il[189] = -36 +im[189] = 0.0098 +ij[189] = 4 +id[190] = "2046-08-12T09:32:32" +ik[190] = 43.645 +il[190] = 66 +im[190] = 0.0941 +ij[190] = 1 +id[191] = "2046-12-02T06:29:22" +ik[191] = 31.774 +il[191] = -50 +im[191] = 0 +ij[191] = 5 +id[192] = "2047-03-29T11:36:23" +ik[192] = 29.347 +il[192] = 112 +im[192] = 0 +ij[192] = 6 +id[193] = "2047-10-27T18:42:28" +ik[193] = 25.62 +il[193] = 91 +im[193] = 0 +ij[193] = 5 +id[194] = "2048-02-16T08:20:24" +ik[194] = 26.607 +il[194] = -3 +im[194] = 0 +ij[194] = 6 +id[195] = "2048-02-25T22:23:31" +ik[195] = 37.696 +il[195] = 117 +im[195] = 0.0976 +ij[195] = 3 +id[196] = "2048-02-29T05:08:21" +ik[196] = -1.675 +il[196] = 47 +im[196] = 0.1256 +ij[196] = 2 +id[197] = "2048-09-08T12:06:08" +ik[197] = -2.316 +il[197] = 141 +im[197] = 0.1765 +ij[197] = 4 +id[198] = "2048-09-28T13:00:28" +ik[198] = 31.645 +il[198] = 148 +im[198] = 0 +ij[198] = 5 +id[199] = "2048-09-28T18:22:27" +ik[199] = 46.346 +il[199] = -113 +im[199] = 0.0437 +ij[199] = 1 +id[200] = "2049-01-24T00:10:22" +ik[200] = 29.916 +il[200] = -136 +im[200] = 0 +ij[200] = 6 +id[201] = "2049-08-26T21:00:25" +ik[201] = 25.709 +il[201] = 21 +im[201] = 0 +ij[201] = 5 +id[202] = "2049-12-16T06:50:24" +ik[202] = 26.331 +il[202] = -18 +im[202] = 0 +ij[202] = 6 +id[203] = "2050-04-28T00:15:24" +ik[203] = 42.05 +il[203] = 141 +im[203] = 0.0178 +ij[203] = 3 +id[204] = "2050-05-24T08:02:36" +ik[204] = -2.067 +il[204] = -86 +im[204] = 0.0964 +ij[204] = 2 +id[205] = "2050-07-26T16:45:24" +ik[205] = 31.351 +il[205] = 28 +im[205] = 0 +ij[205] = 5 +id[206] = "2050-11-05T11:42:09" +ik[206] = -2.242 +il[206] = -164 +im[206] = 0.1056 +ij[206] = 4 +id[207] = "2050-11-21T07:33:27" +ik[207] = 30.458 +il[207] = 52 +im[207] = 0 +ij[207] = 6 +id[208] = "2050-12-01T21:23:28" +ik[208] = 43.199 +il[208] = -54 +im[208] = 0.1345 +ij[208] = 1 +id[209] = "2051-06-26T23:15:21" +ik[209] = 25.851 +il[209] = -49 +im[209] = 0 +ij[209] = 5 +id[210] = "2051-10-16T07:00:20" +ik[210] = 26.106 +il[210] = -57 +im[210] = 0 +ij[210] = 6 +id[211] = "2052-05-22T19:45:24" +ik[211] = 30.92 +il[211] = -80 +im[211] = 0 +ij[211] = 5 +id[212] = "2052-07-04T14:26:26" +ik[212] = 47.208 +il[212] = 51 +im[212] = 0.0307 +ij[212] = 3 +id[213] = "2052-08-03T02:24:50" +ik[213] = -2.388 +il[213] = 158 +im[213] = 0.0689 +ij[213] = 2 +id[214] = "2052-09-17T11:44:26" +ik[214] = 30.935 +il[214] = -76 +im[214] = 0 +ij[214] = 6 +id[215] = "2053-01-20T17:51:04" +ik[215] = -1.813 +il[215] = -50 +im[215] = 0.1515 +ij[215] = 4 +id[216] = "2053-02-04T08:42:25" +ik[216] = 38.94 +il[216] = -135 +im[216] = 0.1206 +ij[216] = 1 +id[217] = "2053-04-26T00:48:23" +ik[217] = 26.047 +il[217] = -108 +im[217] = 0 +ij[217] = 5 +id[218] = "2053-08-15T08:14:21" +ik[218] = 25.932 +il[218] = -110 +im[218] = 0 +ij[218] = 6 +id[219] = "2054-03-20T00:22:19" +ik[219] = 30.391 +il[219] = 149 +im[219] = 0 +ij[219] = 5 +id[220] = "2054-07-15T15:03:18" +ik[220] = 31.308 +il[220] = 168 +im[220] = 0 +ij[220] = 6 +id[221] = "2054-08-20T19:17:19" +ik[221] = 45.164 +il[221] = -82 +im[221] = 0.1299 +ij[221] = 3 +id[222] = "2054-09-10T08:09:45" +ik[222] = -2.129 +il[222] = -74 +im[222] = 0.0447 +ij[222] = 2 +id[223] = "2055-02-24T01:05:22" +ik[223] = 26.297 +il[223] = -149 +im[223] = 0 +ij[223] = 5 +id[224] = "2055-03-19T06:14:12" +ik[224] = -1.599 +il[224] = 128 +im[224] = 0.0313 +ij[224] = 4 +id[225] = "2055-03-24T13:11:25" +ik[225] = 37.182 +il[225] = 74 +im[225] = 0.0894 +ij[225] = 1 +id[226] = "2055-06-15T09:58:19" +ik[226] = 25.81 +il[226] = -171 +im[226] = 0 +ij[226] = 6 +id[227] = "2056-01-15T08:52:22" +ik[227] = 29.806 +il[227] = -37 +im[227] = 0 +ij[227] = 5 +id[228] = "2056-05-11T19:48:17" +ik[228] = 31.541 +il[228] = 30 +im[228] = 0 +ij[228] = 6 +id[229] = "2056-10-07T01:10:24" +ik[229] = 40.544 +il[229] = 138 +im[229] = 0.0878 +ij[229] = 3 +id[230] = "2056-10-10T16:10:40" +ik[230] = -1.847 +il[230] = -52 +im[230] = 0.1046 +ij[230] = 2 +id[231] = "2056-12-23T23:29:19" +ik[231] = 26.6 +il[231] = -162 +im[231] = 0 +ij[231] = 5 +id[232] = "2057-04-14T11:37:23" +ik[232] = 25.739 +il[232] = 130 +im[232] = 0 +ij[232] = 6 +id[233] = "2057-05-03T09:19:26" +ik[233] = 37.274 +il[233] = -15 +im[233] = 0.1125 +ij[233] = 1 +id[234] = "2057-05-04T10:04:27" +ik[234] = -1.56 +il[234] = -16 +im[234] = 0.1104 +ij[234] = 4 +id[235] = "2057-11-11T23:07:17" +ik[235] = 29.205 +il[235] = 52 +im[235] = 0 +ij[235] = 5 +id[236] = "2058-03-09T03:51:15" +ik[236] = 31.614 +il[236] = -158 +im[236] = 0 +ij[236] = 6 +id[237] = "2058-10-23T19:22:22" +ik[237] = 26.956 +il[237] = -139 +im[237] = 0 +ij[237] = 5 +id[238] = "2058-11-12T01:25:21" +ik[238] = -1.666 +il[238] = -44 +im[238] = 0.0579 +ij[238] = 2 +id[239] = "2058-11-19T02:04:24" +ik[239] = 37.43 +il[239] = 14 +im[239] = 0.0866 +ij[239] = 3 +id[240] = "2059-02-12T12:34:16" +ik[240] = 25.721 +il[240] = 83 +im[240] = 0 +ij[240] = 6 +id[241] = "2059-06-12T10:39:21" +ik[241] = 38.933 +il[241] = -177 +im[241] = 0.0967 +ij[241] = 1 +id[242] = "2059-06-17T22:52:28" +ik[242] = -1.658 +il[242] = 53 +im[242] = 0.0123 +ij[242] = 4 +id[243] = "2059-09-09T20:10:19" +ik[243] = 28.617 +il[243] = 44 +im[243] = 0 +ij[243] = 5 +id[244] = "2060-01-04T16:27:15" +ik[244] = 31.524 +il[244] = -51 +im[244] = 0 +ij[244] = 6 +id[245] = "2060-08-22T12:07:20" +ik[245] = 27.362 +il[245] = -70 +im[245] = 0 +ij[245] = 5 +id[246] = "2060-12-12T12:13:14" +ik[246] = 25.756 +il[246] = 54 +im[246] = 0 +ij[246] = 6 +id[247] = "2060-12-17T20:59:35" +ik[247] = -1.585 +il[247] = -179 +im[247] = 0.0509 +ij[247] = 2 +id[248] = "2060-12-27T09:12:23" +ik[248] = 36.199 +il[248] = 120 +im[248] = 0.0674 +ij[248] = 3 +id[249] = "2061-07-08T00:34:16" +ik[249] = 28.062 +il[249] = -72 +im[249] = 0 +ij[249] = 5 +id[250] = "2061-07-25T03:32:24" +ik[250] = 42.115 +il[250] = -170 +im[250] = 0.0326 +ij[250] = 1 +id[251] = "2061-07-27T04:32:02" +ik[251] = -1.884 +il[251] = -165 +im[251] = 0.0774 +ij[251] = 4 +id[252] = "2061-11-01T10:18:20" +ik[252] = 31.285 +il[252] = -21 +im[252] = 0 +ij[252] = 6 +id[253] = "2062-06-22T01:07:14" +ik[253] = 27.817 +il[253] = 53 +im[253] = 0 +ij[253] = 5 +id[254] = "2062-10-12T09:56:18" +ik[254] = 25.844 +il[254] = 54 +im[254] = 0 +ij[254] = 6 +id[255] = "2063-02-04T05:02:17" +ik[255] = -1.617 +il[255] = 26 +im[255] = 0.0524 +ij[255] = 2 +id[256] = "2063-02-07T04:09:15" +ik[256] = 36.839 +il[256] = 68 +im[256] = 0.0251 +ij[256] = 3 +id[257] = "2063-05-06T12:17:16" +ik[257] = 27.554 +il[257] = 65 +im[257] = 0 +ij[257] = 5 +id[258] = "2063-08-26T23:30:44" +ik[258] = -2.202 +il[258] = 48 +im[258] = 0.1163 +ij[258] = 4 +id[259] = "2063-08-30T09:46:13" +ik[259] = 30.924 +il[259] = -72 +im[259] = 0 +ij[259] = 6 +id[260] = "2063-09-10T12:02:18" +ik[260] = 45.743 +il[260] = 3 +im[260] = 0.1274 +ij[260] = 1 +id[261] = "2064-04-20T09:48:14" +ik[261] = 28.315 +il[261] = -121 +im[261] = 0 +ij[261] = 5 +id[262] = "2064-08-11T05:04:16" +ik[262] = 25.986 +il[262] = 93 +im[262] = 0 +ij[262] = 6 +id[263] = "2065-03-04T06:55:17" +ik[263] = 27.102 +il[263] = 101 +im[263] = 0 +ij[263] = 5 +id[264] = "2065-03-31T21:07:20" +ik[264] = 39.927 +il[264] = 149 +im[264] = 0.0956 +ij[264] = 3 +id[265] = "2065-04-18T05:48:31" +ik[265] = -1.862 +il[265] = -177 +im[265] = 0.147 +ij[265] = 2 +id[266] = "2065-06-27T14:59:16" +ik[266] = 30.476 +il[266] = 153 +im[266] = 0 +ij[266] = 6 +id[267] = "2065-10-08T15:48:32" +ik[267] = -2.359 +il[267] = 74 +im[267] = 0.0314 +ij[267] = 4 +id[268] = "2065-11-03T19:52:19" +ik[268] = 45.119 +il[268] = -91 +im[268] = 0.0621 +ij[268] = 1 +id[269] = "2066-02-17T13:38:12" +ik[269] = 28.847 +il[269] = 136 +im[269] = 0 +ij[269] = 5 +id[270] = "2066-06-10T20:56:15" +ik[270] = 26.184 +il[270] = -179 +im[270] = 0 +ij[270] = 6 +id[271] = "2067-01-01T07:53:11" +ik[271] = 26.708 +il[271] = 44 +im[271] = 0 +ij[271] = 5 +id[272] = "2067-04-26T01:59:13" +ik[272] = 29.973 +il[272] = -66 +im[272] = 0 +ij[272] = 6 +id[273] = "2067-06-12T02:30:20" +ik[273] = 45.79 +il[273] = -142 +im[273] = 0.1742 +ij[273] = 3 +id[274] = "2067-07-12T21:21:00" +ik[274] = -2.358 +il[274] = -129 +im[274] = 0.1915 +ij[274] = 2 +id[275] = "2067-12-17T12:09:12" +ik[275] = 29.401 +il[275] = 110 +im[275] = 0 +ij[275] = 5 +id[276] = "2067-12-24T15:54:47" +ik[276] = -1.961 +il[276] = -70 +im[276] = 0.1532 +ij[276] = 4 +id[277] = "2068-01-13T08:00:14" +ik[277] = 40.295 +il[277] = -125 +im[277] = 0.0343 +ij[277] = 1 +id[278] = "2068-04-09T08:48:11" +ik[278] = 26.438 +il[278] = -36 +im[278] = 0 +ij[278] = 6 +id[279] = "2068-10-30T14:29:11" +ik[279] = 26.375 +il[279] = -96 +im[279] = 0 +ij[279] = 5 +id[280] = "2069-02-21T18:41:11" +ik[280] = 29.446 +il[280] = -8 +im[280] = 0 +ij[280] = 6 +id[281] = "2069-08-02T19:44:15" +ik[281] = 46.693 +il[281] = -55 +im[281] = 0.1387 +ij[281] = 3 +id[282] = "2069-08-28T06:04:35" +ik[282] = -2.253 +il[282] = 40 +im[282] = 0.1114 +ij[282] = 2 +id[283] = "2069-10-15T05:04:16" +ik[283] = 29.959 +il[283] = 165 +im[283] = 0 +ij[283] = 5 +id[284] = "2070-02-06T15:57:10" +ik[284] = 26.749 +il[284] = 178 +im[284] = 0 +ij[284] = 6 +id[285] = "2070-02-26T17:38:48" +ik[285] = -1.658 +il[285] = -19 +im[285] = 0.1241 +ij[285] = 4 +id[286] = "2070-03-07T03:45:12" +ik[286] = 37.617 +il[286] = -91 +im[286] = 0.0457 +ij[286] = 1 +id[287] = "2070-08-30T01:59:13" +ik[287] = 26.101 +il[287] = 52 +im[287] = 0 +ij[287] = 5 +id[288] = "2070-12-21T16:52:10" +ik[288] = 28.918 +il[288] = -29 +im[288] = 0 +ij[288] = 6 +id[289] = "2071-08-13T16:11:08" +ik[289] = 30.496 +il[289] = -56 +im[289] = 0 +ij[289] = 5 +id[290] = "2071-09-19T11:14:12" +ik[290] = 42.268 +il[290] = 18 +im[290] = 0.0455 +ij[290] = 3 +id[291] = "2071-09-29T13:56:36" +ik[291] = -1.946 +il[291] = 76 +im[291] = 0.0501 +ij[291] = 2 +id[292] = "2071-12-06T17:38:06" +ik[292] = 27.118 +il[292] = 111 +im[292] = 0 +ij[292] = 6 +id[293] = "2072-04-16T16:01:56" +ik[293] = -1.558 +il[293] = -59 +im[293] = 0.1064 +ij[293] = 4 +id[294] = "2072-04-17T21:32:15" +ik[294] = 37.046 +il[294] = -130 +im[294] = 0.1109 +ij[294] = 1 +id[295] = "2072-06-28T17:39:07" +ik[295] = 25.887 +il[295] = 139 +im[295] = 0 +ij[295] = 5 +id[296] = "2072-10-19T20:13:12" +ik[296] = 28.408 +il[296] = -126 +im[296] = 0 +ij[296] = 6 +id[297] = "2073-06-10T21:28:13" +ik[297] = 30.982 +il[297] = 179 +im[297] = 0 +ij[297] = 5 +id[298] = "2073-10-04T13:08:06" +ik[298] = 27.542 +il[298] = 135 +im[298] = 0 +ij[298] = 6 +id[299] = "2073-10-30T04:08:10" +ik[299] = -1.724 +il[299] = 4 +im[299] = 0.0947 +ij[299] = 2 +id[300] = "2073-11-03T02:10:10" +ik[300] = 38.417 +il[300] = 72 +im[300] = 0.0809 +ij[300] = 3 +id[301] = "2074-04-28T12:45:12" +ik[301] = 25.731 +il[301] = 176 +im[301] = 0 +ij[301] = 5 +id[302] = "2074-05-27T15:24:11" +ik[302] = 38.097 +il[302] = 172 +im[302] = 0.1052 +ij[302] = 1 +id[303] = "2074-05-31T17:29:58" +ik[303] = -1.604 +il[303] = 180 +im[303] = 0.0353 +ij[303] = 4 +id[304] = "2074-08-19T04:18:11" +ik[304] = 27.928 +il[304] = 69 +im[304] = 0 +ij[304] = 6 +id[305] = "2075-04-08T21:01:09" +ik[305] = 31.381 +il[305] = 115 +im[305] = 0 +ij[305] = 5 +id[306] = "2075-08-03T01:51:10" +ik[306] = 28.02 +il[306] = -102 +im[306] = 0 +ij[306] = 6 +id[307] = "2075-12-03T17:29:05" +ik[307] = -1.605 +il[307] = -29 +im[307] = 0.0452 +ij[307] = 2 +id[308] = "2075-12-13T04:21:12" +ik[308] = 36.465 +il[308] = -101 +im[308] = 0.0368 +ij[308] = 3 +id[309] = "2076-02-26T10:35:11" +ik[309] = 25.631 +il[309] = 179 +im[309] = 0 +ij[309] = 5 +id[310] = "2076-06-17T16:37:12" +ik[310] = 27.487 +il[310] = -159 +im[310] = 0 +ij[310] = 6 +id[311] = "2076-07-07T12:49:14" +ik[311] = 40.702 +il[311] = 91 +im[311] = 0.0348 +ij[311] = 1 +id[312] = "2076-07-12T20:02:52" +ik[312] = -1.781 +il[312] = 34 +im[312] = 0.0826 +ij[312] = 4 +id[313] = "2077-02-03T15:01:09" +ik[313] = 31.655 +il[313] = 144 +im[313] = 0 +ij[313] = 5 +id[314] = "2077-05-31T07:20:03" +ik[314] = 28.543 +il[314] = 126 +im[314] = 0 +ij[314] = 6 +id[315] = "2077-12-26T10:30:08" +ik[315] = 25.587 +il[315] = 137 +im[315] = 0 +ij[315] = 5 +id[316] = "2078-01-14T05:48:39" +ik[316] = -1.588 +il[316] = 28 +im[316] = 0.105 +ij[316] = 2 +id[317] = "2078-01-21T03:32:15" +ik[317] = 36.347 +il[317] = 129 +im[317] = 0.0087 +ij[317] = 3 +id[318] = "2078-04-17T08:36:05" +ik[318] = 27.091 +il[318] = -79 +im[318] = 0 +ij[318] = 6 +id[319] = "2078-08-15T07:45:06" +ik[319] = -2.072 +il[319] = 22 +im[319] = 0.0075 +ij[319] = 4 +id[320] = "2078-08-22T21:57:10" +ik[320] = 44.474 +il[320] = -117 +im[320] = 0.1291 +ij[320] = 1 +id[321] = "2078-12-02T03:47:05" +ik[321] = 31.776 +il[321] = -110 +im[321] = 0 +ij[321] = 5 +id[322] = "2079-03-29T05:31:03" +ik[322] = 29.099 +il[322] = 99 +im[322] = 0 +ij[322] = 6 +id[323] = "2079-10-26T11:50:03" +ik[323] = 25.598 +il[323] = 81 +im[323] = 0 +ij[323] = 5 +id[324] = "2080-02-15T03:41:02" +ik[324] = 26.742 +il[324] = -45 +im[324] = 0 +ij[324] = 6 +id[325] = "2080-03-08T15:29:13" +ik[325] = 38.351 +il[325] = -130 +im[325] = 0.0975 +ij[325] = 3 +id[326] = "2080-03-16T10:40:14" +ik[326] = -1.725 +il[326] = 16 +im[326] = 0.0985 +ij[326] = 2 +id[327] = "2080-09-17T19:52:15" +ik[327] = -2.357 +il[327] = 18 +im[327] = 0.141 +ij[327] = 4 +id[328] = "2080-09-28T11:59:08" +ik[328] = 31.723 +il[328] = 63 +im[328] = 0 +ij[328] = 5 +id[329] = "2080-10-10T15:28:13" +ik[329] = 46.236 +il[329] = -51 +im[329] = 0.1257 +ij[329] = 1 +id[330] = "2081-01-23T20:48:02" +ik[330] = 29.67 +il[330] = 173 +im[330] = 0 +ij[330] = 6 +id[331] = "2081-08-25T13:59:05" +ik[331] = 25.663 +il[331] = 13 +im[331] = 0 +ij[331] = 5 +id[332] = "2081-12-15T01:17:02" +ik[332] = 26.444 +il[332] = -47 +im[332] = 0 +ij[332] = 6 +id[333] = "2082-05-14T13:57:04" +ik[333] = 43.412 +il[333] = -9 +im[333] = 0.1232 +ij[333] = 3 +id[334] = "2082-06-13T00:25:09" +ik[334] = -2.192 +il[334] = 114 +im[334] = 0.1331 +ij[334] = 2 +id[335] = "2082-07-26T16:42:05" +ik[335] = 31.499 +il[335] = -72 +im[335] = 0 +ij[335] = 5 +id[336] = "2082-11-21T06:14:06" +ik[336] = 30.228 +il[336] = -30 +im[336] = 0 +ij[336] = 6 +id[337] = "2082-11-23T06:10:03" +ik[337] = -2.143 +il[337] = -9 +im[337] = 0.1699 +ij[337] = 4 +id[338] = "2082-12-17T22:17:11" +ik[338] = 42.08 +il[338] = -14 +im[338] = 0.1237 +ij[338] = 1 +id[339] = "2083-06-25T16:20:03" +ik[339] = 25.782 +il[339] = -58 +im[339] = 0 +ij[339] = 5 +id[340] = "2083-10-15T00:47:05" +ik[340] = 26.197 +il[340] = -76 +im[340] = 0 +ij[340] = 6 +id[341] = "2084-05-22T19:45:07" +ik[341] = 31.123 +il[341] = 179 +im[341] = 0 +ij[341] = 5 +id[342] = "2084-07-15T19:23:05" +ik[342] = 47.378 +il[342] = -14 +im[342] = 0.1294 +ij[342] = 3 +id[343] = "2084-08-13T05:07:51" +ik[343] = -2.356 +il[343] = 117 +im[343] = 0.1539 +ij[343] = 2 +id[344] = "2084-09-17T11:31:03" +ik[344] = 30.739 +il[344] = -173 +im[344] = 0 +ij[344] = 6 +id[345] = "2085-02-03T22:37:38" +ik[345] = -1.748 +il[345] = -90 +im[345] = 0.0414 +ij[345] = 4 +id[346] = "2085-02-16T03:12:05" +ik[346] = 38.369 +il[346] = -44 +im[346] = 0.0452 +ij[346] = 1 +id[347] = "2085-04-24T18:15:59" +ik[347] = 25.954 +il[347] = -123 +im[347] = 0 +ij[347] = 5 +id[348] = "2085-08-14T01:38:03" +ik[348] = 26.001 +il[348] = -124 +im[348] = 0 +ij[348] = 6 +id[349] = "2086-03-19T23:20:58" +ik[349] = 30.631 +il[349] = 63 +im[349] = 0 +ij[349] = 5 +id[350] = "2086-07-15T14:54:05" +ik[350] = 31.162 +il[350] = 71 +im[350] = 0 +ij[350] = 6 +id[351] = "2086-08-31T10:18:02" +ik[351] = 44.148 +il[351] = 58 +im[351] = 0.0157 +ij[351] = 3 +id[352] = "2086-09-17T11:15:52" +ik[352] = -2.061 +il[352] = -150 +im[352] = 0.032 +ij[352] = 2 +id[353] = "2087-02-22T19:12:00" +ik[353] = 26.181 +il[353] = -173 +im[353] = 0 +ij[353] = 5 +id[354] = "2087-03-30T05:23:52" +ik[354] = -1.578 +il[354] = 142 +im[354] = 0.0596 +ij[354] = 4 +id[355] = "2087-04-02T23:22:07" +ik[355] = 37.062 +il[355] = -92 +im[355] = 0.103 +ij[355] = 1 +id[356] = "2087-06-14T03:13:58" +ik[356] = 25.856 +il[356] = 177 +im[356] = 0 +ij[356] = 6 +id[357] = "2088-01-15T05:53:57" +ik[357] = 30.066 +il[357] = -96 +im[357] = 0 +ij[357] = 5 +id[358] = "2088-05-11T18:46:04" +ik[358] = 31.459 +il[358] = -54 +im[358] = 0 +ij[358] = 6 +id[359] = "2088-10-17T04:11:08" +ik[359] = 39.704 +il[359] = 91 +im[359] = 0.1069 +ij[359] = 3 +id[360] = "2088-10-17T17:08:47" +ik[360] = -1.799 +il[360] = -98 +im[360] = 0.1022 +ij[360] = 2 +id[361] = "2088-12-22T18:29:57" +ik[361] = 26.461 +il[361] = 161 +im[361] = 0 +ij[361] = 5 +id[362] = "2089-04-13T04:59:57" +ik[362] = 25.763 +il[362] = 116 +im[362] = 0 +ij[362] = 6 +id[363] = "2089-05-12T04:26:06" +ik[363] = 37.501 +il[363] = 42 +im[363] = 0.0925 +ij[363] = 1 +id[364] = "2089-05-14T09:19:27" +ik[364] = -1.57 +il[364] = -10 +im[364] = 0.0556 +ij[364] = 4 +id[365] = "2089-11-11T17:27:01" +ik[365] = 29.467 +il[365] = 34 +im[365] = 0 +ij[365] = 5 +id[366] = "2090-03-09T01:10:59" +ik[366] = 31.603 +il[366] = 143 +im[366] = 0 +ij[366] = 6 +id[367] = "2090-10-22T15:32:58" +ik[367] = 26.794 +il[367] = 167 +im[367] = 0 +ij[367] = 5 +id[368] = "2090-11-19T17:26:34" +ik[368] = -1.64 +il[368] = 50 +im[368] = 0.0811 +ij[368] = 2 +id[369] = "2090-11-27T22:46:59" +ik[369] = 37.008 +il[369] = 49 +im[369] = 0.0303 +ij[369] = 3 +id[370] = "2091-02-11T06:19:00" +ik[370] = 25.723 +il[370] = 63 +im[370] = 0 +ij[370] = 6 +id[371] = "2091-06-21T17:14:03" +ik[371] = 39.497 +il[371] = 74 +im[371] = 0.053 +ij[371] = 1 +id[372] = "2091-06-27T15:35:28" +ik[372] = -1.697 +il[372] = 156 +im[372] = 0.0813 +ij[372] = 4 +id[373] = "2091-09-09T11:26:00" +ik[373] = 28.87 +il[373] = 69 +im[373] = 0 +ij[373] = 5 +id[374] = "2092-01-04T11:39:59" +ik[374] = 31.583 +il[374] = -80 +im[374] = 0 +ij[374] = 6 +id[375] = "2092-08-21T09:44:55" +ik[375] = 27.178 +il[375] = -146 +im[375] = 0 +ij[375] = 5 +id[376] = "2092-12-11T06:37:00" +ik[376] = 25.734 +il[376] = 24 +im[376] = 0 +ij[376] = 6 +id[377] = "2092-12-27T04:55:29" +ik[377] = -1.581 +il[377] = 82 +im[377] = 0.0861 +ij[377] = 2 +id[378] = "2093-01-05T05:00:05" +ik[378] = 36.171 +il[378] = 167 +im[378] = 0.0158 +ij[378] = 3 +id[379] = "2093-07-07T12:37:00" +ik[379] = 28.298 +il[379] = 0 +im[379] = 0 +ij[379] = 5 +id[380] = "2093-08-03T12:57:16" +ik[380] = -1.947 +il[380] = 40 +im[380] = 0.0861 +ij[380] = 4 +id[381] = "2093-08-04T11:19:06" +ik[381] = 42.954 +il[381] = 74 +im[381] = 0.1008 +ij[381] = 1 +id[382] = "2093-11-01T03:09:56" +ik[382] = 31.406 +il[382] = -15 +im[382] = 0 +ij[382] = 6 +id[383] = "2094-06-21T00:27:56" +ik[383] = 27.613 +il[383] = -47 +im[383] = 0 +ij[383] = 5 +id[384] = "2094-10-11T05:15:56" +ik[384] = 25.799 +il[384] = 11 +im[384] = 0 +ij[384] = 6 +id[385] = "2095-02-17T13:41:05" +ik[385] = 37.263 +il[385] = -78 +im[385] = 0.1214 +ij[385] = 3 +id[386] = "2095-02-17T18:00:23" +ik[386] = -1.644 +il[386] = -141 +im[386] = 0.1228 +ij[386] = 2 +id[387] = "2095-05-05T21:09:56" +ik[387] = 27.769 +il[387] = -177 +im[387] = 0 +ij[387] = 5 +id[388] = "2095-08-30T00:08:55" +ik[388] = 31.094 +il[388] = -31 +im[388] = 0 +ij[388] = 6 +id[389] = "2095-09-03T09:37:17" +ik[389] = -2.269 +il[389] = -130 +im[389] = 0.1288 +ij[389] = 4 +id[390] = "2095-09-21T06:27:04" +ik[390] = 46.189 +il[390] = 94 +im[390] = 0.0212 +ij[390] = 1 +id[391] = "2096-04-19T11:05:51" +ik[391] = 28.093 +il[391] = 111 +im[391] = 0 +ij[391] = 5 +id[392] = "2096-08-10T01:35:54" +ik[392] = 25.917 +il[392] = 32 +im[392] = 0 +ij[392] = 6 +id[393] = "2097-03-03T12:50:58" +ik[393] = 27.292 +il[393] = -101 +im[393] = 0 +ij[393] = 5 +id[394] = "2097-04-15T16:37:03" +ik[394] = 41.034 +il[394] = -106 +im[394] = 0.0844 +ij[394] = 3 +id[395] = "2097-05-08T08:37:45" +ik[395] = -1.968 +il[395] = -132 +im[395] = 0.1601 +ij[395] = 2 +id[396] = "2097-06-27T02:50:55" +ik[396] = 30.679 +il[396] = -129 +im[396] = 0 +ij[396] = 6 +id[397] = "2097-10-23T12:15:32" +ik[397] = -2.308 +il[397] = 174 +im[397] = 0.1929 +ij[397] = 4 +id[398] = "2097-11-19T08:26:00" +ik[398] = 44.11 +il[398] = 132 +im[398] = 0.1538 +ij[398] = 1 +id[399] = "2098-02-16T17:05:51" +ik[399] = 28.611 +il[399] = -24 +im[399] = 0 +ij[399] = 5 +id[400] = "2098-06-09T18:58:53" +ik[400] = 26.091 +il[400] = 98 +im[400] = 0 +ij[400] = 6 +id[401] = "2098-12-31T11:08:52" +ik[401] = 26.872 +il[401] = -115 +im[401] = 0 +ij[401] = 5 +id[402] = "2099-04-25T11:20:49" +ik[402] = 30.196 +il[402] = 48 +im[402] = 0 +ij[402] = 6 +id[403] = "2099-06-26T02:07:00" +ik[403] = 46.744 +il[403] = -103 +im[403] = 0.0352 +ij[403] = 3 +id[404] = "2099-07-26T07:11:33" +ik[404] = -2.392 +il[404] = 113 +im[404] = 0.1237 +ij[404] = 2 +id[405] = "2099-12-16T17:58:50" +ik[405] = 29.158 +il[405] = -84 +im[405] = 0 +ij[405] = 5 +id[406] = "2100-01-09T22:58:14" +ik[406] = -1.874 +il[406] = -124 +im[406] = 0.1433 +ij[406] = 4 +id[407] = "2100-01-26T18:07:55" +ik[407] = 39.493 +il[407] = 108 +im[407] = 0.1272 +ij[407] = 1 +id[408] = "2100-04-09T08:40:50" +ik[408] = 26.32 +il[408] = -146 +im[408] = 0 +ij[408] = 6 +id[409] = "2100-10-30T15:22:53" +ik[409] = 26.513 +il[409] = 140 +im[409] = 0 +ij[409] = 5 +id[410] = "2101-02-22T01:34:53" +ik[410] = 29.676 +il[410] = 142 +im[410] = 0 +ij[410] = 6 +id[411] = "2101-08-13T22:57:56" +ik[411] = 45.918 +il[411] = -103 +im[411] = 0.087 +ij[411] = 3 +id[412] = "2101-09-05T22:20:55" +ik[412] = -2.185 +il[412] = 132 +im[412] = 0.1385 +ij[412] = 2 +id[413] = "2101-10-15T13:22:48" +ik[413] = 29.717 +il[413] = -65 +im[413] = 0 +ij[413] = 5 +id[414] = "2102-02-06T17:58:50" +ik[414] = 26.607 +il[414] = 36 +im[414] = 0 +ij[414] = 6 +id[415] = "2102-03-11T14:36:55" +ik[415] = -1.622 +il[415] = 36 +im[415] = 0.0265 +ij[415] = 4 +id[416] = "2102-03-18T05:34:56" +ik[416] = 37.34 +il[416] = -126 +im[416] = 0.1084 +ij[416] = 1 +id[417] = "2102-08-30T00:50:49" +ik[417] = 26.213 +il[417] = -42 +im[417] = 0 +ij[417] = 5 +id[418] = "2102-12-21T21:25:55" +ik[418] = 29.146 +il[418] = 155 +im[418] = 0 +ij[418] = 6 +id[419] = "2103-08-14T03:00:51" +ik[419] = 30.267 +il[419] = 37 +im[419] = 0 +ij[419] = 5 +id[420] = "2103-10-01T03:34:59" +ik[420] = 41.285 +il[420] = 138 +im[420] = 0.1195 +ij[420] = 3 +id[421] = "2103-10-07T12:48:29" +ik[421] = -1.889 +il[421] = 61 +im[421] = 0.0502 +ij[421] = 2 +id[422] = "2103-12-06T22:07:49" +ik[422] = 26.951 +il[422] = -66 +im[422] = 0 +ij[422] = 6 +id[423] = "2104-04-27T18:57:53" +ik[423] = 37.141 +il[423] = -108 +im[423] = 0.0802 +ij[423] = 1 +id[424] = "2104-04-27T20:24:30" +ik[424] = -1.556 +il[424] = -129 +im[424] = 0.0793 +ij[424] = 4 +id[425] = "2104-06-28T14:47:54" +ik[425] = 25.973 +il[425] = 70 +im[425] = 0 +ij[425] = 5 +id[426] = "2104-10-19T22:34:53" +ik[426] = 28.626 +il[426] = 90 +im[426] = 0 +ij[426] = 6 +id[427] = "2105-06-11T10:49:52" +ik[427] = 30.779 +il[427] = -136 +im[427] = 0 +ij[427] = 5 +id[428] = "2105-10-04T20:23:51" +ik[428] = 27.351 +il[428] = -80 +im[428] = 0 +ij[428] = 6 +id[429] = "2105-11-07T12:20:57" +ik[429] = -1.69 +il[429] = -148 +im[429] = 0.1101 +ij[429] = 2 +id[430] = "2105-11-13T07:47:51" +ik[430] = 37.834 +il[430] = -24 +im[430] = 0.0478 +ij[430] = 3 +id[431] = "2106-04-28T08:29:45" +ik[431] = 25.791 +il[431] = 127 +im[431] = 0 +ij[431] = 5 +id[432] = "2106-06-06T14:42:51" +ik[432] = 38.528 +il[432] = 169 +im[432] = 0.0421 +ij[432] = 1 +id[433] = "2106-06-11T14:10:18" +ik[433] = -1.631 +il[433] = -135 +im[433] = 0.0716 +ij[433] = 4 +id[434] = "2106-08-19T04:39:47" +ik[434] = 28.131 +il[434] = -46 +im[434] = 0 +ij[434] = 6 +id[435] = "2107-04-09T12:51:50" +ik[435] = 31.221 +il[435] = 136 +im[435] = 0 +ij[435] = 5 +id[436] = "2107-08-03T12:07:46" +ik[436] = 27.806 +il[436] = -4 +im[436] = 0 +ij[436] = 6 +id[437] = "2107-12-13T05:04:32" +ik[437] = -1.592 +il[437] = 139 +im[437] = 0.0933 +ij[437] = 2 +id[438] = "2107-12-22T20:38:49" +ik[438] = 36.283 +il[438] = -2 +im[438] = 0.0079 +ij[438] = 3 +id[439] = "2108-02-26T05:13:46" +ik[439] = 25.667 +il[439] = 139 +im[439] = 0 +ij[439] = 5 +id[440] = "2108-06-17T15:12:48" +ik[440] = 27.673 +il[440] = 112 +im[440] = 0 +ij[440] = 6 +id[441] = "2108-07-18T11:12:54" +ik[441] = 41.459 +il[441] = 112 +im[441] = 0.076 +ij[441] = 1 +id[442] = "2108-07-22T08:30:45" +ik[442] = -1.836 +il[442] = -169 +im[442] = 0.1174 +ij[442] = 4 +id[443] = "2109-02-04T09:14:49" +ik[443] = 31.554 +il[443] = 129 +im[443] = 0 +ij[443] = 5 +id[444] = "2109-05-31T20:47:45" +ik[444] = 28.311 +il[444] = 177 +im[444] = 0 +ij[444] = 6 +id[445] = "2109-12-26T04:18:46" +ik[445] = 25.599 +il[445] = 117 +im[445] = 0 +ij[445] = 5 +id[446] = "2110-01-26T16:36:06" +ik[446] = -1.601 +il[446] = -125 +im[446] = 0.0276 +ij[446] = 2 +id[447] = "2110-01-31T16:17:54" +ik[447] = 36.577 +il[447] = -72 +im[447] = 0.0828 +ij[447] = 3 +id[448] = "2110-04-17T05:40:50" +ik[448] = 27.257 +il[448] = -146 +im[448] = 0 +ij[448] = 6 +id[449] = "2110-08-22T22:16:33" +ik[449] = -2.144 +il[449] = 129 +im[449] = 0.0187 +ij[449] = 4 +id[450] = "2110-09-03T11:04:50" +ik[450] = 45.23 +il[450] = 50 +im[450] = 0.0681 +ij[450] = 1 +id[451] = "2110-12-03T00:13:49" +ik[451] = 31.745 +il[451] = -158 +im[451] = 0 +ij[451] = 5 +id[452] = "2111-03-29T22:07:49" +ik[452] = 28.855 +il[452] = 105 +im[452] = 0 +ij[452] = 6 +id[453] = "2111-10-26T05:07:43" +ik[453] = 25.585 +il[453] = 69 +im[453] = 0 +ij[453] = 5 +id[454] = "2112-02-14T23:29:45" +ik[454] = 26.887 +il[454] = -93 +im[454] = 0 +ij[454] = 6 +id[455] = "2112-03-22T07:42:48" +ik[455] = 39.155 +il[455] = 5 +im[455] = 0.0425 +ij[455] = 3 +id[456] = "2112-04-04T06:31:41" +ik[456] = -1.793 +il[456] = 145 +im[456] = 0.0404 +ij[456] = 2 +id[457] = "2112-09-29T10:17:45" +ik[457] = 31.769 +il[457] = -13 +im[457] = 0 +ij[457] = 5 +id[458] = "2112-09-29T19:10:48" +ik[458] = -2.373 +il[458] = 38 +im[458] = 0.0213 +ij[458] = 4 +id[459] = "2112-10-24T17:22:50" +ik[459] = 45.759 +il[459] = -50 +im[459] = 0.13 +ij[459] = 1 +id[460] = "2113-01-24T16:19:46" +ik[460] = 29.422 +il[460] = 137 +im[460] = 0 +ij[460] = 6 +id[461] = "2113-08-25T06:59:45" +ik[461] = 25.627 +il[461] = 5 +im[461] = 0 +ij[461] = 5 +id[462] = "2113-12-14T20:04:42" +ik[462] = 26.567 +il[462] = -81 +im[462] = 0 +ij[462] = 6 +id[463] = "2114-06-01T01:53:45" +ik[463] = 44.787 +il[463] = -133 +im[463] = 0.1436 +ij[463] = 3 +id[464] = "2114-07-01T19:44:36" +ik[464] = -2.299 +il[464] = -107 +im[464] = 0.2037 +ij[464] = 2 +id[465] = "2114-07-27T16:20:47" +ik[465] = 31.618 +il[465] = -167 +im[465] = 0 +ij[465] = 5 +id[466] = "2114-11-22T04:06:40" +ik[466] = 29.99 +il[466] = -99 +im[466] = 0 +ij[466] = 6 +id[467] = "2114-12-12T04:18:23" +ik[467] = -2.04 +il[467] = 89 +im[467] = 0.1568 +ij[467] = 4 +id[468] = "2115-01-03T05:35:48" +ik[468] = 41.044 +il[468] = -80 +im[468] = 0.0423 +ij[468] = 1 +id[469] = "2115-06-25T09:20:44" +ik[469] = 25.722 +il[469] = -66 +im[469] = 0 +ij[469] = 5 +id[470] = "2115-10-14T18:49:40" +ik[470] = 26.297 +il[470] = -99 +im[470] = 0 +ij[470] = 6 +id[471] = "2116-05-23T19:50:44" +ik[471] = 31.304 +il[471] = 76 +im[471] = 0 +ij[471] = 5 +id[472] = "2116-07-27T04:38:47" +ik[472] = 47.137 +il[472] = -151 +im[472] = 0.1429 +ij[472] = 3 +id[473] = "2116-08-23T03:44:38" +ik[473] = -2.304 +il[473] = 127 +im[473] = 0.1836 +ij[473] = 2 +id[474] = "2116-09-18T10:56:47" +ik[474] = 30.526 +il[474] = 96 +im[474] = 0 +ij[474] = 6 +id[475] = "2117-02-18T04:06:51" +ik[475] = -1.694 +il[475] = -151 +im[475] = 0.1193 +ij[475] = 4 +id[476] = "2117-02-28T04:33:44" +ik[476] = 37.911 +il[476] = -63 +im[476] = 0.0974 +ij[476] = 1 +id[477] = "2117-04-24T11:32:38" +ik[477] = 25.872 +il[477] = -134 +im[477] = 0 +ij[477] = 5 +id[478] = "2117-08-13T19:10:42" +ik[478] = 26.079 +il[478] = -141 +im[478] = 0 +ij[478] = 6 +id[479] = "2118-03-20T22:53:45" +ik[479] = 30.858 +il[479] = -32 +im[479] = 0 +ij[479] = 5 +id[480] = "2118-07-16T14:51:38" +ik[480] = 30.992 +il[480] = -28 +im[480] = 0 +ij[480] = 6 +id[481] = "2118-09-12T05:53:48" +ik[481] = 43.101 +il[481] = 130 +im[481] = 0.074 +ij[481] = 3 +id[482] = "2118-09-25T11:17:59" +ik[482] = -1.996 +il[482] = 179 +im[482] = 0.0764 +ij[482] = 2 +id[483] = "2119-02-22T12:58:45" +ik[483] = 26.075 +il[483] = 168 +im[483] = 0 +ij[483] = 5 +id[484] = "2119-04-10T20:05:06" +ik[484] = -1.564 +il[484] = -80 +im[484] = 0.1137 +ij[484] = 4 +id[485] = "2119-04-13T03:35:42" +ik[485] = 37.021 +il[485] = -170 +im[485] = 0.0931 +ij[485] = 1 +id[486] = "2119-06-13T20:31:37" +ik[486] = 25.912 +il[486] = 164 +im[486] = 0 +ij[486] = 6 +id[487] = "2120-01-16T03:52:42" +ik[487] = 30.319 +il[487] = -168 +im[487] = 0 +ij[487] = 5 +id[488] = "2120-05-12T18:12:40" +ik[488] = 31.348 +il[488] = -145 +im[488] = 0 +ij[488] = 6 +id[489] = "2120-10-25T20:06:00" +ik[489] = -1.756 +il[489] = -174 +im[489] = 0.0897 +ij[489] = 2 +id[490] = "2120-10-27T22:54:46" +ik[490] = 38.954 +il[490] = 165 +im[490] = 0.0516 +ij[490] = 3 +id[491] = "2120-12-22T13:03:38" +ik[491] = 26.331 +il[491] = 130 +im[491] = 0 +ij[491] = 5 +id[492] = "2121-04-12T22:17:36" +ik[492] = 25.797 +il[492] = 103 +im[492] = 0 +ij[492] = 6 +id[493] = "2121-05-21T23:58:42" +ik[493] = 37.799 +il[493] = 93 +im[493] = 0.0441 +ij[493] = 1 +id[494] = "2121-05-25T07:14:27" +ik[494] = -1.586 +il[494] = 16 +im[494] = 0.0302 +ij[494] = 4 +id[495] = "2121-11-12T13:01:37" +ik[495] = 29.73 +il[495] = -4 +im[495] = 0 +ij[495] = 5 +id[496] = "2122-03-09T23:16:39" +ik[496] = 31.561 +il[496] = 72 +im[496] = 0 +ij[496] = 6 +id[497] = "2122-10-22T11:11:36" +ik[497] = 26.641 +il[497] = 120 +im[497] = 0 +ij[497] = 5 +id[498] = "2122-11-28T15:04:41" +ik[498] = -1.619 +il[498] = 61 +im[498] = 0.1038 +ij[498] = 2 +id[499] = "2122-12-07T16:35:45" +ik[499] = 36.673 +il[499] = 126 +im[499] = 0.018 +ij[499] = 3 +id[500] = "2123-02-10T23:52:39" +ik[500] = 25.734 +il[500] = 45 +im[500] = 0 +ij[500] = 6 +id[501] = "2123-07-02T05:00:48" +ik[501] = 40.133 +il[501] = -110 +im[501] = 0.0468 +ij[501] = 1 +id[502] = "2123-07-08T02:11:22" +ik[502] = -1.741 +il[502] = -11 +im[502] = 0.115 +ij[502] = 4 +id[503] = "2123-09-10T04:03:38" +ik[503] = 29.129 +il[503] = 75 +im[503] = 0 +ij[503] = 5 +id[504] = "2124-01-05T07:50:35" +ik[504] = 31.613 +il[504] = -123 +im[504] = 0 +ij[504] = 6 +id[505] = "2124-08-21T06:42:37" +ik[505] = 27.004 +il[505] = 149 +im[505] = 0 +ij[505] = 5 +id[506] = "2124-12-11T00:41:36" +ik[506] = 25.722 +il[506] = 0 +im[506] = 0 +ij[506] = 6 +id[507] = "2125-01-07T03:48:16" +ik[507] = -1.583 +il[507] = 94 +im[507] = 0.102 +ij[507] = 2 +id[508] = "2125-01-15T05:02:41" +ik[508] = 36.231 +il[508] = 153 +im[508] = 0.0524 +ij[508] = 3 +id[509] = "2125-07-08T02:03:33" +ik[509] = 28.543 +il[509] = 52 +im[509] = 0 +ij[509] = 5 +id[510] = "2125-08-11T10:07:49" +ik[510] = -2.015 +il[510] = 50 +im[510] = 0.1228 +ij[510] = 4 +id[511] = "2125-08-15T22:22:48" +ik[511] = 43.804 +il[511] = -89 +im[511] = 0.123 +ij[511] = 1 +id[512] = "2125-11-01T21:04:36" +ik[512] = 31.501 +il[512] = -25 +im[512] = 0 +ij[512] = 6 +id[513] = "2126-06-20T23:00:40" +ik[513] = 27.417 +il[513] = -136 +im[513] = 0 +ij[513] = 5 +id[514] = "2126-10-11T00:08:38" +ik[514] = 25.764 +il[514] = -25 +im[514] = 0 +ij[514] = 6 +id[515] = "2127-03-01T15:03:44" +ik[515] = 37.809 +il[515] = -95 +im[515] = 0.0881 +ij[515] = 3 +id[516] = "2127-03-05T17:26:57" +ik[516] = -1.683 +il[516] = -92 +im[516] = 0.0211 +ij[516] = 2 +id[517] = "2127-05-06T07:24:40" +ik[517] = 27.994 +il[517] = -81 +im[517] = 0 +ij[517] = 5 +id[518] = "2127-08-30T15:37:35" +ik[518] = 31.244 +il[518] = -5 +im[518] = 0 +ij[518] = 6 +id[519] = "2127-09-12T16:55:51" +ik[519] = -2.325 +il[519] = 103 +im[519] = 0.0594 +ij[519] = 4 +id[520] = "2127-10-03T11:47:45" +ik[520] = 46.355 +il[520] = 25 +im[520] = 0.1262 +ij[520] = 1 +id[521] = "2128-04-19T11:30:37" +ik[521] = 27.878 +il[521] = -5 +im[521] = 0 +ij[521] = 5 +id[522] = "2128-08-09T21:34:33" +ik[522] = 25.859 +il[522] = -21 +im[522] = 0 +ij[522] = 6 +id[523] = "2129-03-03T20:01:32" +ik[523] = 27.493 +il[523] = 46 +im[523] = 0 +ij[523] = 5 +id[524] = "2129-05-02T15:48:40" +ik[524] = 42.303 +il[524] = -45 +im[524] = 0.1528 +ij[524] = 3 +id[525] = "2129-05-29T17:26:59" +ik[525] = -2.091 +il[525] = -173 +im[525] = 0.1746 +ij[525] = 2 +id[526] = "2129-06-27T15:49:32" +ik[526] = 30.87 +il[526] = -67 +im[526] = 0 +ij[526] = 6 +id[527] = "2129-11-10T07:46:32" +ik[527] = -2.224 +il[527] = -55 +im[527] = 0.1587 +ij[527] = 4 +id[528] = "2129-12-06T12:19:43" +ik[528] = 42.986 +il[528] = 130 +im[528] = 0.0608 +ij[528] = 1 +id[529] = "2130-02-16T19:35:36" +ik[529] = 28.381 +il[529] = -170 +im[529] = 0 +ij[529] = 5 +id[530] = "2130-06-09T16:19:37" +ik[530] = 26.009 +il[530] = 22 +im[530] = 0 +ij[530] = 6 +id[531] = "2130-12-31T15:31:32" +ik[531] = 27.048 +il[531] = 69 +im[531] = 0 +ij[531] = 5 +id[532] = "2131-04-25T21:47:31" +ik[532] = 30.412 +il[532] = 147 +im[532] = 0 +ij[532] = 6 +id[533] = "2131-07-09T08:49:37" +ik[533] = 47.277 +il[533] = 175 +im[533] = 0.1619 +ij[533] = 3 +id[534] = "2131-08-07T16:26:34" +ik[534] = -2.384 +il[534] = -14 +im[534] = 0.197 +ij[534] = 2 +id[535] = "2131-12-16T22:46:33" +ik[535] = 28.917 +il[535] = 96 +im[535] = 0 +ij[535] = 5 +id[536] = "2132-01-26T01:32:21" +ik[536] = -1.799 +il[536] = -122 +im[536] = 0.022 +ij[536] = 4 +id[537] = "2132-02-09T05:02:41" +ik[537] = 38.823 +il[537] = -41 +im[537] = 0.0143 +ij[537] = 1 +id[538] = "2132-04-08T07:42:31" +ik[538] = 26.214 +il[538] = 119 +im[538] = 0 +ij[538] = 6 +id[539] = "2132-10-29T17:15:30" +ik[539] = 26.662 +il[539] = -3 +im[539] = 0 +ij[539] = 5 +id[540] = "2133-02-21T09:32:32" +ik[540] = 29.904 +il[540] = -83 +im[540] = 0 +ij[540] = 6 +id[541] = "2133-08-24T08:18:40" +ik[541] = 44.976 +il[541] = 120 +im[541] = 0.0041 +ij[541] = 3 +id[542] = "2133-09-13T05:49:15" +ik[542] = -2.116 +il[542] = -7 +im[542] = 0.1449 +ij[542] = 2 +id[543] = "2133-10-14T20:35:31" +ik[543] = 29.473 +il[543] = 80 +im[543] = 0 +ij[543] = 5 +id[544] = "2134-02-05T19:01:29" +ik[544] = 26.475 +il[544] = -91 +im[544] = 0 +ij[544] = 6 +id[545] = "2134-03-22T22:23:55" +ik[545] = -1.594 +il[545] = -76 +im[545] = 0.1009 +ij[545] = 4 +id[546] = "2134-03-27T21:55:35" +ik[546] = 37.152 +il[546] = -22 +im[546] = 0.1058 +ij[546] = 1 +id[547] = "2134-08-29T00:33:33" +ik[547] = 26.336 +il[547] = -149 +im[547] = 0 +ij[547] = 5 +id[548] = "2134-12-21T02:58:33" +ik[548] = 29.376 +il[548] = -35 +im[548] = 0 +ij[548] = 6 +id[549] = "2135-08-13T12:48:31" +ik[549] = 30.03 +il[549] = 146 +im[549] = 0 +ij[549] = 5 +id[550] = "2135-10-11T13:10:33" +ik[550] = 40.375 +il[550] = -5 +im[550] = 0.0698 +ij[550] = 3 +id[551] = "2135-10-14T12:32:50" +ik[551] = -1.837 +il[551] = 33 +im[551] = 0.0088 +ij[551] = 2 +id[552] = "2135-12-06T01:30:34" +ik[552] = 26.794 +il[552] = 132 +im[552] = 0 +ij[552] = 6 +id[553] = "2136-05-06T14:34:39" +ik[553] = 37.309 +il[553] = -60 +im[553] = 0.0544 +ij[553] = 1 +id[554] = "2136-05-07T21:30:37" +ik[554] = -1.561 +il[554] = -151 +im[554] = 0.0262 +ij[554] = 4 +id[555] = "2136-06-27T12:38:26" +ik[555] = 26.07 +il[555] = -9 +im[555] = 0 +ij[555] = 5 +id[556] = "2136-10-19T01:52:27" +ik[556] = 28.849 +il[556] = -67 +im[556] = 0 +ij[556] = 6 +id[557] = "2137-06-10T23:06:25" +ik[557] = 30.563 +il[557] = -63 +im[557] = 0 +ij[557] = 5 +id[558] = "2137-10-04T02:25:26" +ik[558] = 27.17 +il[558] = 81 +im[558] = 0 +ij[558] = 6 +id[559] = "2137-11-15T00:23:57" +ik[559] = -1.66 +il[559] = 3 +im[559] = 0.0954 +ij[559] = 2 +id[560] = "2137-11-22T07:54:37" +ik[560] = 37.341 +il[560] = -39 +im[560] = 0.0419 +ij[560] = 3 +id[561] = "2138-04-27T04:48:25" +ik[561] = 25.863 +il[561] = 69 +im[561] = 0 +ij[561] = 5 +id[562] = "2138-06-15T17:39:33" +ik[562] = 39.032 +il[562] = 113 +im[562] = 0.0103 +ij[562] = 1 +id[563] = "2138-06-21T09:27:58" +ik[563] = -1.665 +il[563] = -69 +im[563] = 0.0997 +ij[563] = 4 +id[564] = "2138-08-18T05:52:30" +ik[564] = 28.342 +il[564] = -173 +im[564] = 0 +ij[564] = 6 +id[565] = "2139-04-09T03:38:26" +ik[565] = 31.04 +il[565] = 171 +im[565] = 0 +ij[565] = 5 +id[566] = "2139-08-02T21:04:27" +ik[566] = 27.602 +il[566] = 113 +im[566] = 0 +ij[566] = 6 +id[567] = "2139-12-22T02:58:38" +ik[567] = -1.584 +il[567] = 156 +im[567] = 0.1022 +ij[567] = 2 +id[568] = "2139-12-31T14:11:36" +ik[568] = 36.186 +il[568] = 79 +im[568] = 0.0673 +ij[568] = 3 +id[569] = "2140-02-25T00:18:25" +ik[569] = 25.713 +il[569] = 101 +im[569] = 0 +ij[569] = 5 +id[570] = "2140-06-16T14:33:30" +ik[570] = 27.867 +il[570] = 12 +im[570] = 0 +ij[570] = 6 +id[571] = "2140-07-28T15:12:31" +ik[571] = 42.27 +il[571] = 52 +im[571] = 0.1207 +ij[571] = 1 +id[572] = "2140-07-30T04:56:52" +ik[572] = -1.895 +il[572] = -139 +im[572] = 0.1171 +ij[572] = 4 +id[573] = "2141-02-04T02:26:26" +ik[573] = 31.425 +il[573] = 130 +im[573] = 0 +ij[573] = 5 +id[574] = "2141-05-31T08:51:30" +ik[574] = 28.086 +il[574] = -110 +im[574] = 0 +ij[574] = 6 +id[575] = "2141-12-24T22:27:24" +ik[575] = 25.621 +il[575] = 92 +im[575] = 0 +ij[575] = 5 +id[576] = "2142-02-08T05:13:46" +ik[576] = -1.621 +il[576] = 65 +im[576] = 0.0937 +ij[576] = 2 +id[577] = "2142-02-10T15:22:36" +ik[577] = 36.91 +il[577] = -64 +im[577] = 0.1102 +ij[577] = 3 +id[578] = "2142-04-16T03:23:28" +ik[578] = 27.431 +il[578] = 138 +im[578] = 0 +ij[578] = 6 +id[579] = "2142-08-29T21:12:00" +ik[579] = -2.215 +il[579] = 114 +im[579] = 0.0441 +ij[579] = 4 +id[580] = "2142-09-14T01:40:30" +ik[580] = 45.847 +il[580] = -164 +im[580] = 0.0399 +ij[580] = 1 +id[581] = "2142-12-02T19:44:24" +ik[581] = 31.682 +il[581] = 168 +im[581] = 0 +ij[581] = 5 +id[582] = "2143-03-29T13:23:22" +ik[582] = 28.614 +il[582] = 131 +im[582] = 0 +ij[582] = 6 +id[583] = "2143-10-24T22:36:28" +ik[583] = 25.584 +il[583] = 54 +im[583] = 0 +ij[583] = 5 +id[584] = "2144-02-13T19:49:26" +ik[584] = 27.041 +il[584] = -149 +im[584] = 0 +ij[584] = 6 +id[585] = "2144-04-05T03:14:32" +ik[585] = 40.124 +il[585] = 100 +im[585] = 0.1327 +ij[585] = 3 +id[586] = "2144-04-23T13:13:48" +ik[586] = -1.881 +il[586] = 124 +im[586] = 0.0178 +ij[586] = 2 +id[587] = "2144-09-29T07:51:27" +ik[587] = 31.781 +il[587] = -77 +im[587] = 0 +ij[587] = 5 +id[588] = "2144-10-12T20:01:48" +ik[588] = -2.353 +il[588] = 54 +im[588] = 0.218 +ij[588] = 4 +id[589] = "2144-11-08T05:32:29" +ik[589] = 44.947 +il[589] = 170 +im[589] = 0.15 +ij[589] = 1 +id[590] = "2145-01-24T10:37:29" +ik[590] = 29.174 +il[590] = 119 +im[590] = 0 +ij[590] = 6 +id[591] = "2145-08-24T00:05:28" +ik[591] = 25.601 +il[591] = -4 +im[591] = 0 +ij[591] = 5 +id[592] = "2145-12-13T15:16:24" +ik[592] = 26.7 +il[592] = -120 +im[592] = 0 +ij[592] = 6 +id[593] = "2146-06-16T10:46:33" +ik[593] = 46.002 +il[593] = 139 +im[593] = 0.0225 +ij[593] = 3 +id[594] = "2146-07-17T04:06:16" +ik[594] = -2.369 +il[594] = 174 +im[594] = 0.0739 +ij[594] = 2 +id[595] = "2146-07-27T15:29:22" +ik[595] = 31.706 +il[595] = 105 +im[595] = 0 +ij[595] = 5 +id[596] = "2146-11-22T01:02:21" +ik[596] = 29.746 +il[596] = -155 +im[596] = 0 +ij[596] = 6 +id[597] = "2146-12-29T09:08:30" +ik[597] = -1.944 +il[597] = 79 +im[597] = 0.0589 +ij[597] = 4 +id[598] = "2147-01-17T12:15:33" +ik[598] = 40.133 +il[598] = -146 +im[598] = 0.1453 +ij[598] = 1 +id[599] = "2147-06-24T02:18:23" +ik[599] = 25.673 +il[599] = -73 +im[599] = 0 +ij[599] = 5 +id[600] = "2147-10-13T13:09:24" +ik[600] = 26.408 +il[600] = -126 +im[600] = 0 +ij[600] = 6 +id[601] = "2148-05-23T19:52:19" +ik[601] = 31.46 +il[601] = -25 +im[601] = 0 +ij[601] = 5 +id[602] = "2148-08-06T06:44:29" +ik[602] = 46.564 +il[602] = 177 +im[602] = 0.0349 +ij[602] = 3 +id[603] = "2148-08-31T06:55:11" +ik[603] = -2.241 +il[603] = 60 +im[603] = 0.1355 +ij[603] = 2 +id[604] = "2148-09-18T09:49:23" +ik[604] = 30.3 +il[604] = 12 +im[604] = 0 +ij[604] = 6 +id[605] = "2149-03-02T14:10:45" +ik[605] = -1.651 +il[605] = 73 +im[605] = 0.0214 +ij[605] = 4 +id[606] = "2149-03-10T15:45:30" +ik[606] = 37.557 +il[606] = 125 +im[606] = 0.1087 +ij[606] = 1 +id[607] = "2149-04-23T04:39:21" +ik[607] = 25.799 +il[607] = -144 +im[607] = 0 +ij[607] = 5 +id[608] = "2149-08-12T12:53:25" +ik[608] = 26.167 +il[608] = -159 +im[608] = 0 +ij[608] = 6 +id[609] = "2150-03-20T22:49:17" +ik[609] = 31.067 +il[609] = -132 +im[609] = 0 +ij[609] = 5 +id[610] = "2150-07-16T14:42:25" +ik[610] = 30.801 +il[610] = -126 +im[610] = 0 +ij[610] = 6 +id[611] = "2150-09-23T01:30:25" +ik[611] = 42.075 +il[611] = -157 +im[611] = 0.1136 +ij[611] = 3 +id[612] = "2150-10-02T10:08:59" +ik[612] = -1.935 +il[612] = 164 +im[612] = 0.0733 +ij[612] = 2 +id[613] = "2151-02-21T06:30:23" +ik[613] = 25.979 +il[613] = 152 +im[613] = 0 +ij[613] = 5 +id[614] = "2151-04-21T04:25:53" +ik[614] = -1.557 +il[614] = 152 +im[614] = 0.0595 +ij[614] = 4 +id[615] = "2151-04-22T03:27:30" +ik[615] = 37.056 +il[615] = 179 +im[615] = 0.0377 +ij[615] = 1 +id[616] = "2151-06-12T13:53:19" +ik[616] = 25.978 +il[616] = 150 +im[616] = 0 +ij[616] = 6 +id[617] = "2152-01-16T02:39:24" +ik[617] = 30.563 +il[617] = 108 +im[617] = 0 +ij[617] = 5 +id[618] = "2152-05-12T18:00:17" +ik[618] = 31.21 +il[618] = 119 +im[618] = 0 +ij[618] = 6 +id[619] = "2152-11-02T01:41:27" +ik[619] = -1.717 +il[619] = 72 +im[619] = 0.0574 +ij[619] = 2 +id[620] = "2152-11-06T09:56:26" +ik[620] = 38.297 +il[620] = -10 +im[620] = 0.0376 +ij[620] = 3 +id[621] = "2152-12-21T07:16:19" +ik[621] = 26.212 +il[621] = 105 +im[621] = 0 +ij[621] = 5 +id[622] = "2153-04-11T15:32:24" +ik[622] = 25.84 +il[622] = 91 +im[622] = 0 +ij[622] = 6 +id[623] = "2153-05-30T21:07:29" +ik[623] = 38.171 +il[623] = 121 +im[623] = 0.0069 +ij[623] = 1 +id[624] = "2153-06-04T04:30:21" +ik[624] = -1.609 +il[624] = 52 +im[624] = 0.0878 +ij[624] = 4 +id[625] = "2153-11-12T09:44:21" +ik[625] = 29.991 +il[625] = -58 +im[625] = 0 +ij[625] = 5 +id[626] = "2154-03-09T22:03:21" +ik[626] = 31.488 +il[626] = -9 +im[626] = 0 +ij[626] = 6 +id[627] = "2154-10-21T06:19:17" +ik[627] = 26.499 +il[627] = 82 +im[627] = 0 +ij[627] = 5 +id[628] = "2154-12-06T19:49:28" +ik[628] = -1.602 +il[628] = -31 +im[628] = 0.0905 +ij[628] = 2 +id[629] = "2154-12-16T08:56:24" +ik[629] = 36.423 +il[629] = -135 +im[629] = 0.0854 +ij[629] = 3 +id[630] = "2155-02-09T17:17:22" +ik[630] = 25.754 +il[630] = 31 +im[630] = 0 +ij[630] = 6 +id[631] = "2155-07-11T22:34:27" +ik[631] = 40.839 +il[631] = -19 +im[631] = 0.0922 +ij[631] = 1 +id[632] = "2155-07-17T02:07:15" +ik[632] = -1.791 +il[632] = -22 +im[632] = 0.0782 +ij[632] = 4 +id[633] = "2155-09-09T22:01:20" +ik[633] = 29.391 +il[633] = 61 +im[633] = 0 +ij[633] = 5 +id[634] = "2156-01-05T04:55:20" +ik[634] = 31.611 +il[634] = -179 +im[634] = 0 +ij[634] = 6 +id[635] = "2156-08-20T03:03:18" +ik[635] = 26.839 +il[635] = 92 +im[635] = 0 +ij[635] = 5 +id[636] = "2156-12-09T18:31:14" +ik[636] = 25.721 +il[636] = -22 +im[636] = 0 +ij[636] = 6 +id[637] = "2157-01-17T20:55:16" +ik[637] = -1.59 +il[637] = -160 +im[637] = 0.0142 +ij[637] = 2 +id[638] = "2157-01-24T11:14:29" +ik[638] = 36.382 +il[638] = 48 +im[638] = 0.1141 +ij[638] = 3 +id[639] = "2157-07-07T16:53:19" +ik[639] = 28.795 +il[639] = 84 +im[639] = 0 +ij[639] = 5 +id[640] = "2157-08-18T01:37:56" +ik[640] = -2.086 +il[640] = 143 +im[640] = 0.115 +ij[640] = 4 +id[641] = "2157-08-26T11:00:23" +ik[641] = 44.625 +il[641] = 85 +im[641] = 0.0154 +ij[641] = 1 +id[642] = "2157-11-01T16:00:20" +ik[642] = 31.569 +il[642] = -50 +im[642] = 0 +ij[642] = 6 +id[643] = "2158-06-19T20:50:12" +ik[643] = 27.23 +il[643] = 146 +im[643] = 0 +ij[643] = 5 +id[644] = "2158-10-09T18:38:18" +ik[644] = 25.739 +il[644] = -57 +im[644] = 0 +ij[644] = 6 +id[645] = "2159-03-13T12:12:23" +ik[645] = 38.492 +il[645] = -41 +im[645] = 0.0498 +ij[645] = 3 +id[646] = "2159-03-22T06:08:11" +ik[646] = -1.736 +il[646] = 133 +im[646] = 0.1017 +ij[646] = 2 +id[647] = "2159-05-05T19:01:12" +ik[647] = 28.228 +il[647] = 1 +im[647] = 0 +ij[647] = 5 +id[648] = "2159-08-30T08:11:19" +ik[648] = 31.372 +il[648] = 4 +im[648] = 0 +ij[648] = 6 +id[649] = "2159-09-22T07:16:38" +ik[649] = -2.363 +il[649] = -116 +im[649] = 0.0637 +ij[649] = 4 +id[650] = "2159-10-15T13:40:22" +ik[650] = 46.177 +il[650] = 17 +im[650] = 0.1189 +ij[650] = 1 +id[651] = "2160-04-18T11:04:16" +ik[651] = 27.671 +il[651] = -108 +im[651] = 0 +ij[651] = 5 +id[652] = "2160-08-08T17:02:15" +ik[652] = 25.811 +il[652] = -63 +im[652] = 0 +ij[652] = 6 +id[653] = "2161-03-03T04:31:17" +ik[653] = 27.705 +il[653] = 170 +im[653] = 0 +ij[653] = 5 +id[654] = "2161-05-19T07:00:20" +ik[654] = 43.679 +il[654] = 143 +im[654] = 0.0935 +ij[654] = 3 +id[655] = "2161-06-18T03:08:39" +ik[655] = -2.215 +il[655] = 124 +im[655] = 0.1625 +ij[655] = 2 +id[656] = "2161-06-27T05:53:13" +ik[656] = 31.045 +il[656] = -21 +im[656] = 0 +ij[656] = 6 +id[657] = "2161-11-28T05:02:26" +ik[657] = -2.123 +il[657] = 58 +im[657] = 0.0688 +ij[657] = 4 +id[658] = "2161-12-22T10:48:25" +ik[658] = 41.877 +il[658] = -156 +im[658] = 0.0796 +ij[658] = 1 +id[659] = "2162-02-15T21:09:12" +ik[659] = 28.157 +il[659] = 58 +im[659] = 0 +ij[659] = 5 +id[660] = "2162-06-08T13:02:12" +ik[660] = 25.937 +il[660] = -41 +im[660] = 0 +ij[660] = 6 +id[661] = "2162-12-30T21:05:11" +ik[661] = 27.234 +il[661] = -124 +im[661] = 0 +ij[661] = 5 +id[662] = "2163-04-25T09:20:09" +ik[662] = 30.619 +il[662] = -131 +im[662] = 0 +ij[662] = 6 +id[663] = "2163-07-20T08:57:24" +ik[663] = 47.364 +il[663] = -180 +im[663] = 0.0841 +ij[663] = 3 +id[664] = "2163-08-17T12:58:00" +ik[664] = -2.348 +il[664] = 35 +im[664] = 0.1169 +ij[664] = 2 +id[665] = "2163-12-16T02:32:12" +ik[665] = 28.68 +il[665] = -68 +im[665] = 0 +ij[665] = 5 +id[666] = "2164-02-09T01:40:41" +ik[666] = -1.737 +il[666] = -94 +im[666] = 0.141 +ij[666] = 4 +id[667] = "2164-02-20T20:03:24" +ik[667] = 38.274 +il[667] = 101 +im[667] = 0.104 +ij[667] = 1 +id[668] = "2164-04-07T05:58:16" +ik[668] = 26.118 +il[668] = 32 +im[668] = 0 +ij[668] = 6 +id[669] = "2164-10-28T20:12:11" +ik[669] = 26.822 +il[669] = -154 +im[669] = 0 +ij[669] = 5 +id[670] = "2165-02-20T18:35:16" +ik[670] = 30.129 +il[670] = 36 +im[670] = 0 +ij[670] = 6 +id[671] = "2165-09-04T00:31:23" +ik[671] = 43.949 +il[671] = -117 +im[671] = 0.118 +ij[671] = 3 +id[672] = "2165-09-20T08:05:35" +ik[672] = -2.049 +il[672] = -71 +im[672] = 0.126 +ij[672] = 2 +id[673] = "2165-10-14T02:44:09" +ik[673] = 29.229 +il[673] = -119 +im[673] = 0 +ij[673] = 5 +id[674] = "2166-02-04T19:09:15" +ik[674] = 26.355 +il[674] = 155 +im[674] = 0 +ij[674] = 6 +id[675] = "2166-04-02T19:54:02" +ik[675] = -1.575 +il[675] = -38 +im[675] = 0.0936 +ij[675] = 4 +id[676] = "2166-04-06T06:50:15" +ik[676] = 37.047 +il[676] = -170 +im[676] = 0.0283 +ij[676] = 1 +id[677] = "2166-08-28T01:12:08" +ik[677] = 26.47 +il[677] = 88 +im[677] = 0 +ij[677] = 5 +id[678] = "2166-12-20T09:34:07" +ik[678] = 29.606 +il[678] = 119 +im[678] = 0 +ij[678] = 6 +id[679] = "2167-08-12T21:23:11" +ik[679] = 29.789 +il[679] = -89 +im[679] = 0 +ij[679] = 5 +id[680] = "2167-10-21T13:48:43" +ik[680] = -1.79 +il[680] = -17 +im[680] = 0.0079 +ij[680] = 2 +id[681] = "2167-10-21T14:36:23" +ik[681] = 39.552 +il[681] = -29 +im[681] = 0.0071 +ij[681] = 3 +id[682] = "2167-12-05T03:49:14" +ik[682] = 26.649 +il[682] = -11 +im[682] = 0 +ij[682] = 6 +id[683] = "2168-05-15T09:38:18" +ik[683] = 37.549 +il[683] = -2 +im[683] = 0.0303 +ij[683] = 1 +id[684] = "2168-05-17T20:27:50" +ik[684] = -1.572 +il[684] = -141 +im[684] = 0.0794 +ij[684] = 4 +id[685] = "2168-06-26T11:16:13" +ik[685] = 26.178 +il[685] = -100 +im[685] = 0 +ij[685] = 5 +id[686] = "2168-10-18T06:07:12" +ik[686] = 29.076 +il[686] = 122 +im[686] = 0 +ij[686] = 6 +id[687] = "2169-06-10T10:16:10" +ik[687] = 30.336 +il[687] = 25 +im[687] = 0 +ij[687] = 5 +id[688] = "2169-10-03T07:15:10" +ik[688] = 27 +il[688] = -105 +im[688] = 0 +ij[688] = 6 +id[689] = "2169-11-22T17:17:37" +ik[689] = -1.635 +il[689] = 84 +im[689] = 0.0815 +ij[689] = 2 +id[690] = "2169-12-01T03:56:18" +ik[690] = 36.936 +il[690] = 6 +im[690] = 0.0798 +ij[690] = 3 +id[691] = "2170-04-26T01:45:07" +ik[691] = 25.945 +il[691] = 4 +im[691] = 0 +ij[691] = 5 +id[692] = "2170-06-25T01:02:21" +ik[692] = 39.61 +il[692] = -7 +im[692] = 0.0854 +ij[692] = 1 +id[693] = "2170-07-01T01:23:51" +ik[693] = -1.704 +il[693] = 46 +im[693] = 0.0864 +ij[693] = 4 +id[694] = "2170-08-17T07:57:12" +ik[694] = 28.559 +il[694] = 47 +im[694] = 0 +ij[694] = 6 +id[695] = "2171-04-08T17:20:06" +ik[695] = 30.842 +il[695] = -137 +im[695] = 0 +ij[695] = 5 +id[696] = "2171-08-02T04:43:06" +ik[696] = 27.408 +il[696] = -110 +im[696] = 0 +ij[696] = 6 +id[697] = "2171-12-31T13:35:25" +ik[697] = -1.581 +il[697] = -13 +im[697] = 0.0569 +ij[697] = 2 +id[698] = "2172-01-09T10:37:20" +ik[698] = 36.174 +il[698] = 118 +im[698] = 0.1081 +ij[698] = 3 +id[699] = "2172-02-23T19:53:11" +ik[699] = 25.771 +il[699] = 55 +im[699] = 0 +ij[699] = 5 +id[700] = "2172-06-15T14:40:07" +ik[700] = 28.068 +il[700] = -99 +im[700] = 0 +ij[700] = 6 +id[701] = "2172-08-06T10:42:59" +ik[701] = -1.96 +il[701] = 105 +im[701] = 0.101 +ij[701] = 4 +id[702] = "2172-08-07T23:46:19" +ik[702] = 43.114 +il[702] = -75 +im[702] = 0.0722 +ij[702] = 1 +id[703] = "2173-02-03T18:37:09" +ik[703] = 31.272 +il[703] = 145 +im[703] = 0 +ij[703] = 5 +id[704] = "2173-05-30T19:33:10" +ik[704] = 27.87 +il[704] = -18 +im[704] = 0 +ij[704] = 6 +id[705] = "2173-12-23T16:58:04" +ik[705] = 25.654 +il[705] = 62 +im[705] = 0 +ij[705] = 5 +id[706] = "2174-02-21T03:37:17" +ik[706] = 37.356 +il[706] = 111 +im[706] = 0.079 +ij[706] = 3 +id[707] = "2174-02-22T00:27:00" +ik[707] = -1.65 +il[707] = 166 +im[707] = 0.0607 +ij[707] = 2 +id[708] = "2174-04-15T01:46:07" +ik[708] = 27.615 +il[708] = 52 +im[708] = 0 +ij[708] = 6 +id[709] = "2174-09-06T10:32:20" +ik[709] = -2.281 +il[709] = -110 +im[709] = 0.0493 +ij[709] = 4 +id[710] = "2174-09-24T21:32:15" +ik[710] = 46.247 +il[710] = -94 +im[710] = 0.1562 +ij[710] = 1 +id[711] = "2174-12-02T14:16:04" +ik[711] = 31.589 +il[711] = 149 +im[711] = 0 +ij[711] = 5 +id[712] = "2175-03-29T03:15:07" +ik[712] = 28.38 +il[712] = 177 +im[712] = 0 +ij[712] = 6 +id[713] = "2175-10-23T16:20:03" +ik[713] = 25.592 +il[713] = 35 +im[713] = 0 +ij[713] = 5 +id[714] = "2176-02-12T16:42:05" +ik[714] = 27.205 +il[714] = 146 +im[714] = 0 +ij[714] = 6 +id[715] = "2176-04-20T04:25:14" +ik[715] = 41.264 +il[715] = 122 +im[715] = 0.1256 +ij[715] = 3 +id[716] = "2176-05-13T19:13:15" +ik[716] = -1.991 +il[716] = 124 +im[716] = 0.0138 +ij[716] = 2 +id[717] = "2176-09-29T04:34:01" +ik[717] = 31.76 +il[717] = -128 +im[717] = 0 +ij[717] = 5 +id[718] = "2176-10-28T02:20:48" +ik[718] = -2.294 +il[718] = 10 +im[718] = 0.0723 +ij[718] = 4 +id[719] = "2176-11-23T22:32:09" +ik[719] = 43.904 +il[719] = -32 +im[719] = 0.0124 +ij[719] = 1 +id[720] = "2177-01-24T03:38:00" +ik[720] = 28.929 +il[720] = 119 +im[720] = 0 +ij[720] = 6 +id[721] = "2177-08-22T17:19:06" +ik[721] = 25.586 +il[721] = -15 +im[721] = 0 +ij[721] = 5 +id[722] = "2177-12-12T10:56:03" +ik[722] = 26.841 +il[722] = -167 +im[722] = 0 +ij[722] = 6 +id[723] = "2178-06-30T02:13:12" +ik[723] = 46.883 +il[723] = -63 +im[723] = 0.1725 +ij[723] = 3 +id[724] = "2178-07-27T14:02:06" +ik[724] = 31.761 +il[724] = 26 +im[724] = 0 +ij[724] = 5 +id[725] = "2178-07-30T03:47:56" +ik[725] = -2.393 +il[725] = -155 +im[725] = 0.2063 +ij[725] = 2 +id[726] = "2178-11-21T20:56:06" +ik[726] = 29.498 +il[726] = 163 +im[726] = 0 +ij[726] = 6 +id[727] = "2179-01-14T10:55:30" +ik[727] = -1.859 +il[727] = 103 +im[727] = 0.0844 +ij[727] = 4 +id[728] = "2179-01-30T17:47:11" +ik[728] = 39.356 +il[728] = 153 +im[728] = 0.01 +ij[728] = 1 +id[729] = "2179-06-22T19:18:02" +ik[729] = 25.635 +il[729] = -81 +im[729] = 0 +ij[729] = 5 +id[730] = "2179-10-12T07:50:00" +ik[730] = 26.528 +il[730] = -159 +im[730] = 0 +ij[730] = 6 +id[731] = "2180-05-23T19:38:03" +ik[731] = 31.588 +il[731] = -122 +im[731] = 0 +ij[731] = 5 +id[732] = "2180-08-16T10:51:10" +ik[732] = 45.75 +il[732] = 117 +im[732] = 0.0613 +ij[732] = 3 +id[733] = "2180-09-07T21:07:58" +ik[733] = -2.172 +il[733] = -177 +im[733] = 0.1124 +ij[733] = 2 +id[734] = "2180-09-18T07:58:04" +ik[734] = 30.064 +il[734] = -62 +im[734] = 0 +ij[734] = 6 +id[735] = "2181-03-14T08:29:45" +ik[735] = -1.616 +il[735] = 166 +im[735] = 0.1133 +ij[735] = 4 +id[736] = "2181-03-20T15:37:09" +ik[736] = 37.297 +il[736] = 119 +im[736] = 0.0611 +ij[736] = 1 +id[737] = "2181-04-21T21:40:01" +ik[737] = 25.737 +il[737] = -152 +im[737] = 0 +ij[737] = 5 +id[738] = "2181-08-11T06:50:58" +ik[738] = 26.265 +il[738] = 179 +im[738] = 0 +ij[738] = 6 +id[739] = "2182-03-20T22:55:03" +ik[739] = 31.255 +il[739] = 125 +im[739] = 0 +ij[739] = 5 +id[740] = "2182-07-16T14:16:04" +ik[740] = 30.593 +il[740] = 141 +im[740] = 0 +ij[740] = 6 +id[741] = "2182-10-03T16:46:07" +ik[741] = 41.104 +il[741] = -23 +im[741] = 0.0559 +ij[741] = 3 +id[742] = "2182-10-09T09:03:33" +ik[742] = -1.879 +il[742] = 148 +im[742] = 0.0844 +ij[742] = 2 +id[743] = "2183-02-19T23:49:03" +ik[743] = 25.893 +il[743] = 140 +im[743] = 0 +ij[743] = 5 +id[744] = "2183-05-01T00:25:12" +ik[744] = 37.165 +il[744] = -156 +im[744] = 0.0351 +ij[744] = 1 +id[745] = "2183-05-01T08:12:00" +ik[745] = -1.557 +il[745] = 90 +im[745] = 0.0416 +ij[745] = 4 +id[746] = "2183-06-11T07:22:04" +ik[746] = 26.053 +il[746] = 135 +im[746] = 0 +ij[746] = 6 +id[747] = "2184-01-16T02:03:59" +ik[747] = 30.794 +il[747] = 15 +im[747] = 0 +ij[747] = 5 +id[748] = "2184-05-12T17:56:58" +ik[748] = 31.047 +il[748] = 20 +im[748] = 0 +ij[748] = 6 +id[749] = "2184-11-09T10:30:40" +ik[749] = -1.684 +il[749] = -89 +im[749] = 0.0561 +ij[749] = 2 +id[750] = "2184-11-15T14:22:07" +ik[750] = 37.731 +il[750] = -87 +im[750] = 0.077 +ij[750] = 3 +id[751] = "2184-12-20T01:07:58" +ik[751] = 26.103 +il[751] = 84 +im[751] = 0 +ij[751] = 5 +id[752] = "2185-04-10T08:49:03" +ik[752] = 25.893 +il[752] = 78 +im[752] = 0 +ij[752] = 6 +id[753] = "2185-06-08T20:59:08" +ik[753] = 38.615 +il[753] = 109 +im[753] = 0.0847 +ij[753] = 1 +id[754] = "2185-06-14T01:05:21" +ik[754] = -1.637 +il[754] = 98 +im[754] = 0.107 +ij[754] = 4 +id[755] = "2185-11-12T07:25:58" +ik[755] = 30.247 +il[755] = -126 +im[755] = 0 +ij[755] = 5 +id[756] = "2186-03-09T21:23:02" +ik[756] = 31.386 +il[756] = -98 +im[756] = 0 +ij[756] = 6 +id[757] = "2186-10-20T01:01:03" +ik[757] = 26.367 +il[757] = 49 +im[757] = 0 +ij[757] = 5 +id[758] = "2186-12-15T09:18:41" +ik[758] = -1.59 +il[758] = 109 +im[758] = 0.0785 +ij[758] = 2 +id[759] = "2186-12-25T01:20:12" +ik[759] = 36.257 +il[759] = -38 +im[759] = 0.0976 +ij[759] = 3 +id[760] = "2187-02-08T10:36:02" +ik[760] = 25.785 +il[760] = 17 +im[760] = 0 +ij[760] = 6 +id[761] = "2187-07-21T22:04:04" +ik[761] = 41.607 +il[761] = -14 +im[761] = 0.1156 +ij[761] = 1 +id[762] = "2187-07-25T11:29:22" +ik[762] = -1.846 +il[762] = 180 +im[762] = 0.0585 +ij[762] = 4 +id[763] = "2187-09-09T17:14:55" +ik[763] = 29.654 +il[763] = 29 +im[763] = 0 +ij[763] = 5 +id[764] = "2188-01-05T02:47:54" +ik[764] = 31.579 +il[764] = 114 +im[764] = 0 +ij[764] = 6 +id[765] = "2188-08-18T22:50:00" +ik[765] = 26.684 +il[765] = 44 +im[765] = 0 +ij[765] = 5 +id[766] = "2188-12-08T12:07:55" +ik[766] = 25.729 +il[766] = -40 +im[766] = 0 +ij[766] = 6 +id[767] = "2189-01-29T12:18:16" +ik[767] = -1.604 +il[767] = -20 +im[767] = 0.0932 +ij[767] = 2 +id[768] = "2189-02-03T01:44:06" +ik[768] = 36.631 +il[768] = -178 +im[768] = 0.1017 +ij[768] = 3 +id[769] = "2189-07-07T09:07:55" +ik[769] = 29.053 +il[769] = 95 +im[769] = 0 +ij[769] = 5 +id[770] = "2189-08-24T18:26:16" +ik[770] = -2.158 +il[770] = -142 +im[770] = 0.1399 +ij[770] = 4 +id[771] = "2189-09-06T00:17:08" +ik[771] = 45.361 +il[771] = -110 +im[771] = 0.0869 +ij[771] = 1 +id[772] = "2189-11-01T11:53:57" +ik[772] = 31.608 +il[772] = -89 +im[772] = 0 +ij[772] = 6 +id[773] = "2190-06-18T17:58:59" +ik[773] = 27.053 +il[773] = 78 +im[773] = 0 +ij[773] = 5 +id[774] = "2190-10-08T12:48:57" +ik[774] = 25.724 +il[774] = -83 +im[774] = 0 +ij[774] = 6 +id[775] = "2191-03-26T09:21:10" +ik[775] = 39.326 +il[775] = 22 +im[775] = 0.1222 +ij[775] = 3 +id[776] = "2191-04-09T09:08:57" +ik[776] = -1.808 +il[776] = 157 +im[776] = 0.1543 +ij[776] = 2 +id[777] = "2191-05-05T08:02:58" +ik[777] = 28.471 +il[777] = 59 +im[777] = 0 +ij[777] = 5 +id[778] = "2191-08-30T01:46:59" +ik[778] = 31.476 +il[778] = -1 +im[778] = 0 +ij[778] = 6 +id[779] = "2191-10-03T15:12:31" +ik[779] = -2.372 +il[779] = 138 +im[779] = 0.192 +ij[779] = 4 +id[780] = "2191-10-28T21:48:05" +ik[780] = 45.632 +il[780] = -72 +im[780] = 0.0991 +ij[780] = 1 +id[781] = "2192-04-17T09:50:58" +ik[781] = 27.473 +il[781] = 160 +im[781] = 0 +ij[781] = 5 +id[782] = "2192-08-07T12:01:52" +ik[782] = 25.773 +il[782] = -102 +im[782] = 0 +ij[782] = 6 +id[783] = "2193-03-02T14:20:58" +ik[783] = 27.926 +il[783] = -85 +im[783] = 0 +ij[783] = 5 +id[784] = "2193-06-04T15:53:08" +ik[784] = 45.039 +il[784] = 63 +im[784] = 0.0492 +ij[784] = 3 +id[785] = "2193-06-26T21:02:52" +ik[785] = 31.202 +il[785] = 9 +im[785] = 0 +ij[785] = 6 +id[786] = "2193-07-05T11:47:12" +ik[786] = -2.316 +il[786] = 60 +im[786] = 0.0434 +ij[786] = 2 +id[787] = "2193-12-16T01:15:13" +ik[787] = -2.021 +il[787] = -175 +im[787] = 0.0337 +ij[787] = 4 +id[788] = "2194-01-06T13:45:07" +ik[788] = 40.862 +il[788] = -158 +im[788] = 0.1329 +ij[788] = 1 +id[789] = "2194-02-14T21:48:57" +ik[789] = 27.939 +il[789] = -62 +im[789] = 0 +ij[789] = 5 +id[790] = "2194-06-07T09:09:56" +ik[790] = 25.875 +il[790] = -97 +im[790] = 0 +ij[790] = 6 +id[791] = "2194-12-30T03:53:51" +ik[791] = 27.432 +il[791] = 25 +im[791] = 0 +ij[791] = 5 +id[792] = "2195-04-24T21:58:53" +ik[792] = 30.814 +il[792] = -64 +im[792] = 0 +ij[792] = 6 +id[793] = "2195-07-30T15:56:00" +ik[793] = 47.053 +il[793] = 77 +im[793] = 0.0191 +ij[793] = 3 +id[794] = "2195-08-26T07:09:54" +ik[794] = -2.293 +il[794] = 110 +im[794] = 0.0686 +ij[794] = 2 +id[795] = "2195-12-15T05:18:57" +ik[795] = 28.447 +il[795] = 142 +im[795] = 0 +ij[795] = 5 +id[796] = "2196-02-22T03:17:01" +ik[796] = -1.685 +il[796] = -98 +im[796] = 0.0155 +ij[796] = 4 +id[797] = "2196-03-02T18:29:05" +ik[797] = 37.836 +il[797] = 125 +im[797] = 0.11 +ij[797] = 1 +id[798] = "2196-04-06T03:30:48" +ik[798] = 26.032 +il[798] = -47 +im[798] = 0 +ij[798] = 6 +id[799] = "2196-10-28T00:13:49" +ik[799] = 26.994 +il[799] = 36 +im[799] = 0 +ij[799] = 5 +id[800] = "2197-02-20T04:41:48" +ik[800] = 30.348 +il[800] = 139 +im[800] = 0 +ij[800] = 6 +id[801] = "2197-09-14T20:32:03" +ik[801] = 42.902 +il[801] = -51 +im[801] = 0.0964 +ij[801] = 3 +id[802] = "2197-09-27T07:41:55" +ik[802] = -1.984 +il[802] = -96 +im[802] = 0.1344 +ij[802] = 2 +id[803] = "2197-10-13T07:48:51" +ik[803] = 28.987 +il[803] = 58 +im[803] = 0 +ij[803] = 5 +id[804] = "2198-02-03T18:25:55" +ik[804] = 26.245 +il[804] = 53 +im[804] = 0 +ij[804] = 6 +id[805] = "2198-04-13T09:19:42" +ik[805] = -1.562 +il[805] = 118 +im[805] = 0.0319 +ij[805] = 4 +id[806] = "2198-04-15T10:04:56" +ik[806] = 37.02 +il[806] = 126 +im[806] = 0.0214 +ij[806] = 1 +id[807] = "2198-08-27T02:44:52" +ik[807] = 26.616 +il[807] = -47 +im[807] = 0 +ij[807] = 5 +id[808] = "2198-12-19T17:12:54" +ik[808] = 29.835 +il[808] = -101 +im[808] = 0 +ij[808] = 6 +id[809] = "2199-08-12T04:54:54" +ik[809] = 29.545 +il[809] = 52 +im[809] = 0 +ij[809] = 5 +id[810] = "2199-10-28T17:09:03" +ik[810] = -1.748 +il[810] = -98 +im[810] = 0.033 +ij[810] = 2 +id[811] = "2199-10-31T07:46:59" +ik[811] = 38.82 +il[811] = 67 +im[811] = 0.0854 +ij[811] = 3 +id[812] = "2199-12-04T05:09:53" +ik[812] = 26.514 +il[812] = -145 +im[812] = 0 +ij[812] = 6 +id[813] = "2200-05-25T05:21:59" +ik[813] = 37.862 +il[813] = 46 +im[813] = 0.0699 +ij[813] = 1 +id[814] = "2200-05-28T18:17:30" +ik[814] = -1.59 +il[814] = -114 +im[814] = 0.1028 +ij[814] = 4 +id[815] = "2200-06-26T10:42:48" +ik[815] = 26.297 +il[815] = 157 +im[815] = 0 +ij[815] = 5 +id[816] = "2200-10-18T11:22:50" +ik[816] = 29.306 +il[816] = -65 +im[816] = 0 +ij[816] = 6 +id[817] = "2201-06-10T20:19:49" +ik[817] = 30.101 +il[817] = 129 +im[817] = 0 +ij[817] = 5 +id[818] = "2201-10-03T10:56:47" +ik[818] = 26.84 +il[818] = 89 +im[818] = 0 +ij[818] = 6 +id[819] = "2201-12-01T16:13:58" +ik[819] = -1.615 +il[819] = 77 +im[819] = 0.0637 +ij[819] = 2 +id[820] = "2201-12-10T21:19:00" +ik[820] = 36.617 +il[820] = 89 +im[820] = 0.1027 +ij[820] = 3 +id[821] = "2202-04-25T23:22:50" +ik[821] = 26.039 +il[821] = -72 +im[821] = 0 +ij[821] = 5 +id[822] = "2202-07-05T13:51:01" +ik[822] = 40.259 +il[822] = 153 +im[822] = 0.117 +ij[822] = 1 +id[823] = "2202-07-11T10:16:38" +ik[823] = -1.75 +il[823] = -96 +im[823] = 0.0361 +ij[823] = 4 +id[824] = "2202-08-17T10:57:47" +ik[824] = 28.781 +il[824] = -106 +im[824] = 0 +ij[824] = 6 +id[825] = "2203-04-09T05:55:49" +ik[825] = 30.629 +il[825] = -70 +im[825] = 0 +ij[825] = 5 +id[826] = "2203-08-02T11:05:51" +ik[826] = 27.224 +il[826] = 45 +im[826] = 0 +ij[826] = 6 +id[827] = "2204-01-11T15:42:52" +ik[827] = -1.583 +il[827] = -48 +im[827] = 0.0054 +ij[827] = 2 +id[828] = "2204-01-19T11:38:58" +ik[828] = 36.251 +il[828] = 89 +im[828] = 0.0968 +ij[828] = 3 +id[829] = "2204-02-23T16:00:46" +ik[829] = 25.839 +il[829] = 0 +im[829] = 0 +ij[829] = 5 +id[830] = "2204-06-15T15:36:51" +ik[830] = 28.277 +il[830] = 138 +im[830] = 0 +ij[830] = 6 +id[831] = "2204-08-14T06:08:39" +ik[831] = -2.028 +il[831] = 141 +im[831] = 0.1194 +ij[831] = 4 +id[832] = "2204-08-19T11:11:54" +ik[832] = 43.963 +il[832] = 116 +im[832] = 0.0168 +ij[832] = 1 +id[833] = "2205-02-04T09:42:46" +ik[833] = 31.097 +il[833] = 176 +im[833] = 0 +ij[833] = 5 +id[834] = "2205-05-31T04:52:45" +ik[834] = 27.663 +il[834] = 94 +im[834] = 0 +ij[834] = 6 +id[835] = "2205-12-23T11:53:48" +ik[835] = 25.697 +il[835] = 25 +im[835] = 0 +ij[835] = 5 +id[836] = "2206-03-05T08:26:00" +ik[836] = 37.927 +il[836] = 43 +im[836] = 0.0751 +ij[836] = 3 +id[837] = "2206-03-10T06:41:33" +ik[837] = -1.692 +il[837] = 116 +im[837] = 0.1371 +ij[837] = 2 +id[838] = "2206-04-15T00:51:50" +ik[838] = 27.806 +il[838] = -45 +im[838] = 0 +ij[838] = 6 +id[839] = "2206-09-15T22:52:14" +ik[839] = -2.335 +il[839] = 50 +im[839] = 0.1547 +ij[839] = 4 +id[840] = "2206-10-07T05:57:59" +ik[840] = 46.352 +il[840] = 153 +im[840] = 0.0896 +ij[840] = 1 +id[841] = "2206-12-03T07:46:50" +ik[841] = 31.467 +il[841] = 145 +im[841] = 0 +ij[841] = 5 +id[842] = "2207-03-29T15:44:47" +ik[842] = 28.153 +il[842] = -117 +im[842] = 0 +ij[842] = 6 +id[843] = "2207-10-23T10:21:47" +ik[843] = 25.612 +il[843] = 12 +im[843] = 0 +ij[843] = 5 +id[844] = "2208-02-12T14:12:46" +ik[844] = 27.377 +il[844] = 73 +im[844] = 0 +ij[844] = 6 +id[845] = "2208-05-07T08:02:58" +ik[845] = 42.56 +il[845] = 119 +im[845] = 0.0144 +ij[845] = 3 +id[846] = "2208-06-04T02:05:08" +ik[846] = -2.115 +il[846] = 111 +im[846] = 0.0415 +ij[846] = 2 +id[847] = "2208-09-30T00:21:44" +ik[847] = 31.706 +il[847] = -166 +im[847] = 0 +ij[847] = 5 +id[848] = "2208-11-15T04:46:55" +ik[848] = -2.206 +il[848] = 40 +im[848] = 0.1002 +ij[848] = 4 +id[849] = "2208-12-11T02:51:56" +ik[849] = 42.774 +il[849] = -41 +im[849] = 0.1346 +ij[849] = 1 +id[850] = "2209-01-24T19:18:46" +ik[850] = 28.687 +il[850] = 139 +im[850] = 0 +ij[850] = 6 +id[851] = "2209-08-22T10:43:40" +ik[851] = 25.582 +il[851] = -29 +im[851] = 0 +ij[851] = 5 +id[852] = "2209-12-12T07:05:48" +ik[852] = 26.993 +il[852] = 140 +im[852] = 0 +ij[852] = 6 +id[853] = "2210-07-13T02:05:51" +ik[853] = 47.33 +il[853] = -45 +im[853] = 0.0542 +ij[853] = 3 +id[854] = "2210-07-28T11:50:47" +ik[854] = 31.783 +il[854] = -41 +im[854] = 0 +ij[854] = 5 +id[855] = "2210-08-11T05:05:37" +ik[855] = -2.38 +il[855] = -166 +im[855] = 0.0376 +ij[855] = 2 +id[856] = "2210-11-22T15:36:43" +ik[856] = 29.25 +il[856] = 140 +im[856] = 0 +ij[856] = 6 +id[857] = "2211-01-30T08:16:44" +ik[857] = -1.786 +il[857] = -179 +im[857] = 0.1424 +ij[857] = 4 +id[858] = "2211-02-13T00:40:53" +ik[858] = 38.709 +il[858] = 63 +im[858] = 0.1152 +ij[858] = 1 +id[859] = "2211-06-22T12:21:44" +ik[859] = 25.606 +il[859] = -89 +im[859] = 0 +ij[859] = 5 +id[860] = "2211-10-12T02:54:40" +ik[860] = 26.658 +il[860] = 163 +im[860] = 0 +ij[860] = 6 +id[861] = "2212-05-24T18:57:44" +ik[861] = 31.686 +il[861] = 148 +im[861] = 0 +ij[861] = 5 +id[862] = "2212-08-27T21:36:51" +ik[862] = 44.785 +il[862] = -41 +im[862] = 0.123 +ij[862] = 3 +id[863] = "2212-09-16T03:18:05" +ik[863] = -2.103 +il[863] = 62 +im[863] = 0.0894 +ij[863] = 2 +id[864] = "2212-09-19T05:12:46" +ik[864] = 29.821 +il[864] = -123 +im[864] = 0 +ij[864] = 6 +id[865] = "2213-03-26T14:16:45" +ik[865] = -1.59 +il[865] = 83 +im[865] = 0.092 +ij[865] = 4 +id[866] = "2213-03-31T06:23:54" +ik[866] = 37.125 +il[866] = -115 +im[866] = 0.0177 +ij[866] = 1 +id[867] = "2213-04-21T14:38:41" +ik[867] = 25.685 +il[867] = -159 +im[867] = 0 +ij[867] = 5 +id[868] = "2213-08-11T01:04:39" +ik[868] = 26.373 +il[868] = 153 +im[868] = 0 +ij[868] = 6 +id[869] = "2214-03-21T22:59:39" +ik[869] = 31.419 +il[869] = 23 +im[869] = 0 +ij[869] = 5 +id[870] = "2214-07-17T13:20:38" +ik[870] = 30.37 +il[870] = 54 +im[870] = 0 +ij[870] = 6 +id[871] = "2214-10-15T00:52:50" +ik[871] = 40.21 +il[871] = -144 +im[871] = 0.0637 +ij[871] = 3 +id[872] = "2214-10-17T08:59:26" +ik[872] = -1.828 +il[872] = 117 +im[872] = 0.1035 +ij[872] = 2 +id[873] = "2215-02-19T16:57:38" +ik[873] = 25.818 +il[873] = 130 +im[873] = 0 +ij[873] = 5 +id[874] = "2215-05-10T19:47:51" +ik[874] = 37.347 +il[874] = -104 +im[874] = 0.0712 +ij[874] = 1 +id[875] = "2215-05-12T08:50:33" +ik[875] = -1.563 +il[875] = 75 +im[875] = 0.0914 +ij[875] = 4 +id[876] = "2215-06-11T01:01:37" +ik[876] = 26.139 +il[876] = 118 +im[876] = 0 +ij[876] = 6 +id[877] = "2216-01-17T01:54:37" +ik[877] = 31.009 +il[877] = -84 +im[877] = 0 +ij[877] = 5 +id[878] = "2216-05-13T17:51:38" +ik[878] = 30.862 +il[878] = -78 +im[878] = 0 +ij[878] = 6 +id[879] = "2216-11-17T23:27:00" +ik[879] = -1.655 +il[879] = 49 +im[879] = 0.0127 +ij[879] = 2 +id[880] = "2216-11-25T13:34:53" +ik[880] = 37.256 +il[880] = -89 +im[880] = 0.1132 +ij[880] = 3 +id[881] = "2216-12-19T18:43:37" +ik[881] = 26.004 +il[881] = 68 +im[881] = 0 +ij[881] = 5 +id[882] = "2217-04-10T02:08:44" +ik[882] = 25.956 +il[882] = 65 +im[882] = 0 +ij[882] = 6 +id[883] = "2217-06-19T00:37:52" +ik[883] = 39.133 +il[883] = 43 +im[883] = 0.1014 +ij[883] = 1 +id[884] = "2217-06-24T20:00:48" +ik[884] = -1.672 +il[884] = 169 +im[884] = 0.0355 +ij[884] = 4 +id[885] = "2217-11-13T06:00:43" +ik[885] = 30.494 +il[885] = 153 +im[885] = 0 +ij[885] = 5 +id[886] = "2218-03-10T21:06:37" +ik[886] = 31.255 +il[886] = 167 +im[886] = 0 +ij[886] = 6 +id[887] = "2218-10-19T19:18:37" +ik[887] = 26.245 +il[887] = 22 +im[887] = 0 +ij[887] = 5 +id[888] = "2218-12-25T09:29:42" +ik[888] = -1.583 +il[888] = 93 +im[888] = 0.0178 +ij[888] = 2 +id[889] = "2219-01-03T19:16:53" +ik[889] = 36.176 +il[889] = 37 +im[889] = 0.1033 +ij[889] = 3 +id[890] = "2219-02-08T03:51:41" +ik[890] = 25.825 +il[890] = 5 +im[890] = 0 +ij[890] = 6 +id[891] = "2219-08-02T03:02:52" +ik[891] = 42.426 +il[891] = -89 +im[891] = 0.0372 +ij[891] = 1 +id[892] = "2219-08-03T04:48:49" +ik[892] = -1.907 +il[892] = -105 +im[892] = 0.0091 +ij[892] = 4 +id[893] = "2219-09-10T13:36:37" +ik[893] = 29.916 +il[893] = -20 +im[893] = 0 +ij[893] = 5 +id[894] = "2220-01-06T01:24:40" +ik[894] = 31.515 +il[894] = 35 +im[894] = 0 +ij[894] = 6 +id[895] = "2220-08-18T18:06:37" +ik[895] = 26.538 +il[895] = 3 +im[895] = 0 +ij[895] = 5 +id[896] = "2220-12-08T05:34:39" +ik[896] = 25.746 +il[896] = -55 +im[896] = 0 +ij[896] = 6 +id[897] = "2221-02-12T06:29:16" +ik[897] = -1.625 +il[897] = 88 +im[897] = 0.0605 +ij[897] = 2 +id[898] = "2221-02-14T03:02:52" +ik[898] = 36.985 +il[898] = 157 +im[898] = 0.0191 +ij[898] = 3 +id[899] = "2221-07-08T02:41:34" +ik[899] = 29.314 +il[899] = 87 +im[899] = 0 +ij[899] = 5 +id[900] = "2221-09-01T19:21:43" +ik[900] = -2.229 +il[900] = 174 +im[900] = 0.1588 +ij[900] = 4 +id[901] = "2221-09-17T15:29:48" +ik[901] = 45.943 +il[901] = 27 +im[901] = 0.1399 +ij[901] = 1 +id[902] = "2221-11-02T08:43:35" +ik[902] = 31.616 +il[902] = -141 +im[902] = 0 +ij[902] = 6 +id[903] = "2222-06-18T14:30:37" +ik[903] = 26.885 +il[903] = 19 +im[903] = 0 +ij[903] = 5 +id[904] = "2222-10-08T06:42:37" +ik[904] = 25.719 +il[904] = -106 +im[904] = 0 +ij[904] = 6 +id[905] = "2223-04-10T10:28:50" +ik[905] = 40.328 +il[905] = 35 +im[905] = 0.0427 +ij[905] = 3 +id[906] = "2223-04-29T21:31:31" +ik[906] = -1.9 +il[906] = 53 +im[906] = 0.1792 +ij[906] = 2 +id[907] = "2223-05-05T22:28:33" +ik[907] = 28.721 +il[907] = 96 +im[907] = 0 +ij[907] = 5 +id[908] = "2223-08-30T20:24:34" +ik[908] = 31.553 +il[908] = -21 +im[908] = 0 +ij[908] = 6 +id[909] = "2223-10-18T02:10:38" +ik[909] = -2.345 +il[909] = 7 +im[909] = 0.0723 +ij[909] = 4 +id[910] = "2223-11-13T16:16:45" +ik[910] = 44.766 +il[910] = 56 +im[910] = 0.1164 +ij[910] = 1 +id[911] = "2224-04-17T07:53:36" +ik[911] = 27.283 +il[911] = 79 +im[911] = 0 +ij[911] = 5 +id[912] = "2224-08-07T06:38:35" +ik[912] = 25.745 +il[912] = -138 +im[912] = 0 +ij[912] = 6 +id[913] = "2225-03-03T01:33:36" +ik[913] = 28.158 +il[913] = -1 +im[913] = 0 +ij[913] = 5 +id[914] = "2225-06-20T17:29:45" +ik[914] = 46.202 +il[914] = 82 +im[914] = 0.1568 +ij[914] = 3 +id[915] = "2225-06-27T13:17:36" +ik[915] = 31.337 +il[915] = 23 +im[915] = 0 +ij[915] = 6 +id[916] = "2225-07-21T08:48:53" +ik[916] = -2.377 +il[916] = 147 +im[916] = 0.1866 +ij[916] = 2 +id[917] = "2226-01-03T01:24:26" +ik[917] = -1.927 +il[917] = -117 +im[917] = 0.1297 +ij[917] = 4 +id[918] = "2226-01-21T15:35:42" +ik[918] = 39.976 +il[918] = -154 +im[918] = 0.0349 +ij[918] = 1 +id[919] = "2226-02-14T21:37:35" +ik[919] = 27.73 +il[919] = -169 +im[919] = 0 +ij[919] = 5 +id[920] = "2226-06-07T04:45:33" +ik[920] = 25.824 +il[920] = -144 +im[920] = 0 +ij[920] = 6 +id[921] = "2226-12-30T11:59:34" +ik[921] = 27.641 +il[921] = 155 +im[921] = 0 +ij[921] = 5 +id[922] = "2227-04-25T11:43:35" +ik[922] = 30.994 +il[922] = -13 +im[922] = 0 +ij[922] = 6 +id[923] = "2227-08-10T17:49:46" +ik[923] = 46.426 +il[923] = 48 +im[923] = 0.1258 +ij[923] = 3 +id[924] = "2227-09-04T07:19:07" +ik[924] = -2.228 +il[924] = 87 +im[924] = 0.0369 +ij[924] = 2 +id[925] = "2227-12-15T07:08:32" +ik[925] = 28.221 +il[925] = 5 +im[925] = 0 +ij[925] = 5 +id[926] = "2228-03-06T10:12:28" +ik[926] = -1.643 +il[926] = 171 +im[926] = 0.1107 +ij[926] = 4 +id[927] = "2228-03-14T03:21:44" +ik[927] = 37.5 +il[927] = -13 +im[927] = 0.0057 +ij[927] = 1 +id[928] = "2228-04-06T00:24:37" +ik[928] = 25.957 +il[928] = -113 +im[928] = 0 +ij[928] = 6 +id[929] = "2228-10-28T05:26:35" +ik[929] = 27.178 +il[929] = -152 +im[929] = 0 +ij[929] = 5 +id[930] = "2229-02-20T15:54:34" +ik[930] = 30.558 +il[930] = -133 +im[930] = 0 +ij[930] = 6 +id[931] = "2229-09-26T15:37:43" +ik[931] = 41.884 +il[931] = 29 +im[931] = 0.0177 +ij[931] = 3 +id[932] = "2229-10-05T06:20:29" +ik[932] = -1.924 +il[932] = -108 +im[932] = 0.1137 +ij[932] = 2 +id[933] = "2229-10-13T11:52:30" +ik[933] = 28.748 +il[933] = -111 +im[933] = 0 +ij[933] = 5 +id[934] = "2230-02-03T16:54:28" +ik[934] = 26.145 +il[934] = -33 +im[934] = 0 +ij[934] = 6 +id[935] = "2230-04-24T16:45:23" +ik[935] = -1.556 +il[935] = 3 +im[935] = 0.0809 +ij[935] = 4 +id[936] = "2230-04-25T09:19:43" +ik[936] = 37.07 +il[936] = 121 +im[936] = 0.0911 +ij[936] = 1 +id[937] = "2230-08-27T05:21:33" +ik[937] = 26.773 +il[937] = 167 +im[937] = 0 +ij[937] = 5 +id[938] = "2230-12-20T01:55:29" +ik[938] = 30.062 +il[938] = 22 +im[938] = 0 +ij[938] = 6 +id[939] = "2231-08-12T11:22:33" +ik[939] = 29.301 +il[939] = -151 +im[939] = 0 +ij[939] = 5 +id[940] = "2231-11-05T23:16:30" +ik[940] = -1.71 +il[940] = 140 +im[940] = 0.0503 +ij[940] = 2 +id[941] = "2231-11-10T17:26:44" +ik[941] = 38.181 +il[941] = -87 +im[941] = 0.1095 +ij[941] = 3 +id[942] = "2231-12-04T05:32:29" +ik[942] = 26.39 +il[942] = 97 +im[942] = 0 +ij[942] = 6 +id[943] = "2232-06-03T02:55:40" +ik[943] = 38.247 +il[943] = 68 +im[943] = 0.104 +ij[943] = 1 +id[944] = "2232-06-07T15:33:24" +ik[944] = -1.614 +il[944] = -78 +im[944] = 0.0665 +ij[944] = 4 +id[945] = "2232-06-25T11:02:32" +ik[945] = 26.428 +il[945] = 41 +im[945] = 0 +ij[945] = 5 +id[946] = "2232-10-17T17:38:32" +ik[946] = 29.536 +il[946] = 95 +im[946] = 0 +ij[946] = 6 +id[947] = "2233-06-10T05:18:31" +ik[947] = 29.86 +il[947] = -111 +im[947] = 0 +ij[947] = 5 +id[948] = "2233-10-02T13:34:27" +ik[948] = 26.691 +il[948] = -62 +im[948] = 0 +ij[948] = 6 +id[949] = "2233-12-09T22:29:24" +ik[949] = -1.599 +il[949] = -38 +im[949] = 0.0129 +ij[949] = 2 +id[950] = "2233-12-19T13:31:43" +ik[950] = 36.383 +il[950] = -170 +im[950] = 0.1046 +ij[950] = 3 +id[951] = "2234-04-24T21:45:30" +ik[951] = 26.144 +il[951] = -162 +im[951] = 0 +ij[951] = 5 +id[952] = "2234-07-15T08:32:38" +ik[952] = 40.978 +il[952] = -132 +im[952] = 0.0685 +ij[952] = 1 +id[953] = "2234-07-20T07:37:52" +ik[953] = -1.801 +il[953] = -70 +im[953] = 0.0489 +ij[953] = 4 +id[954] = "2234-08-16T14:55:32" +ik[954] = 29.007 +il[954] = 87 +im[954] = 0 +ij[954] = 6 +id[955] = "2235-04-08T17:26:26" +ik[955] = 30.404 +il[955] = 13 +im[955] = 0 +ij[955] = 5 +id[956] = "2235-08-01T16:16:27" +ik[956] = 27.05 +il[956] = -143 +im[956] = 0 +ij[956] = 6 +id[957] = "2236-01-22T12:53:26" +ik[957] = -1.592 +il[957] = -2 +im[957] = 0.1071 +ij[957] = 2 +id[958] = "2236-01-28T19:13:43" +ik[958] = 36.421 +il[958] = -37 +im[958] = 0.0711 +ij[958] = 3 +id[959] = "2236-02-22T12:45:30" +ik[959] = 25.918 +il[959] = -63 +im[959] = 0 +ij[959] = 5 +id[960] = "2236-06-14T17:25:26" +ik[960] = 28.492 +il[960] = 2 +im[960] = 0 +ij[960] = 6 +id[961] = "2236-08-20T21:19:13" +ik[961] = -2.1 +il[961] = -121 +im[961] = 0.0973 +ij[961] = 4 +id[962] = "2236-08-30T00:04:36" +ik[962] = 44.773 +il[962] = -73 +im[962] = 0.1306 +ij[962] = 1 +id[963] = "2237-02-03T23:44:26" +ik[963] = 30.903 +il[963] = -137 +im[963] = 0 +ij[963] = 5 +id[964] = "2237-05-30T12:54:25" +ik[964] = 27.466 +il[964] = -136 +im[964] = 0 +ij[964] = 6 +id[965] = "2237-12-22T07:19:29" +ik[965] = 25.751 +il[965] = -18 +im[965] = 0 +ij[965] = 5 +id[966] = "2238-03-17T09:48:40" +ik[966] = 38.638 +il[966] = 35 +im[966] = 0.1236 +ij[966] = 3 +id[967] = "2238-03-27T02:59:40" +ik[967] = -1.748 +il[967] = -131 +im[967] = 0.1122 +ij[967] = 2 +id[968] = "2238-04-14T00:44:29" +ik[968] = 28.006 +il[968] = -152 +im[968] = 0 +ij[968] = 6 +id[969] = "2238-09-25T20:07:14" +ik[969] = -2.368 +il[969] = 90 +im[969] = 0.188 +ij[969] = 4 +id[970] = "2238-10-19T12:52:42" +ik[970] = 46.105 +il[970] = 72 +im[970] = 0.0735 +ij[970] = 1 +id[971] = "2238-12-03T00:15:24" +ik[971] = 31.321 +il[971] = 156 +im[971] = 0 +ij[971] = 5 +id[972] = "2239-03-29T02:50:29" +ik[972] = 27.935 +il[972] = -31 +im[972] = 0 +ij[972] = 6 +id[973] = "2239-10-22T04:45:24" +ik[973] = 25.641 +il[973] = -17 +im[973] = 0 +ij[973] = 5 +id[974] = "2240-02-11T12:23:28" +ik[974] = 27.558 +il[974] = -10 +im[974] = 0 +ij[974] = 6 +id[975] = "2240-05-24T00:17:34" +ik[975] = 43.946 +il[975] = -69 +im[975] = 0.1433 +ij[975] = 3 +id[976] = "2240-06-23T04:06:22" +ik[976] = -2.237 +il[976] = 161 +im[976] = 0.1288 +ij[976] = 2 +id[977] = "2240-09-29T19:11:25" +ik[977] = 31.621 +il[977] = 171 +im[977] = 0 +ij[977] = 5 +id[978] = "2240-12-03T03:51:16" +ik[978] = -2.104 +il[978] = 127 +im[978] = 0.1734 +ij[978] = 4 +id[979] = "2240-12-26T22:35:36" +ik[979] = 41.677 +il[979] = 73 +im[979] = 0.1099 +ij[979] = 1 +id[980] = "2241-01-24T09:35:25" +ik[980] = 28.451 +il[980] = 179 +im[980] = 0 +ij[980] = 6 +id[981] = "2241-08-21T04:22:22" +ik[981] = 25.587 +il[981] = -47 +im[981] = 0 +ij[981] = 5 +id[982] = "2241-12-11T03:48:23" +ik[982] = 27.153 +il[982] = 78 +im[982] = 0 +ij[982] = 6 +id[983] = "2242-07-23T21:53:34" +ik[983] = 47.336 +il[983] = 24 +im[983] = 0.0897 +ij[983] = 3 +id[984] = "2242-07-28T08:49:20" +ik[984] = 31.772 +il[984] = -97 +im[984] = 0 +ij[984] = 5 +id[985] = "2242-08-20T19:46:50" +ik[985] = -2.339 +il[985] = -31 +im[985] = 0.0793 +ij[985] = 2 +id[986] = "2242-11-22T09:01:26" +ik[986] = 29.003 +il[986] = 134 +im[986] = 0 +ij[986] = 6 +id[987] = "2243-02-13T03:59:17" +ik[987] = -1.726 +il[987] = -87 +im[987] = 0.0211 +ij[987] = 4 +id[988] = "2243-02-24T12:17:34" +ik[988] = 38.182 +il[988] = -105 +im[988] = 0.0745 +ij[988] = 1 +id[989] = "2243-06-21T05:32:21" +ik[989] = 25.588 +il[989] = -100 +im[989] = 0 +ij[989] = 5 +id[990] = "2243-10-10T22:22:22" +ik[990] = 26.797 +il[990] = 120 +im[990] = 0 +ij[990] = 6 +id[991] = "2244-05-24T17:42:25" +ik[991] = 31.751 +il[991] = 66 +im[991] = 0 +ij[991] = 5 +id[992] = "2244-09-07T14:52:30" +ik[992] = 43.749 +il[992] = 66 +im[992] = 0.0947 +ij[992] = 3 +id[993] = "2244-09-19T01:25:23" +ik[993] = 29.574 +il[993] = -168 +im[993] = 0 +ij[993] = 6 +id[994] = "2244-09-23T04:46:25" +ik[994] = -2.036 +il[994] = 10 +im[994] = 0.0443 +ij[994] = 2 +id[995] = "2245-04-06T10:08:12" +ik[995] = -1.571 +il[995] = 145 +im[995] = 0.0324 +ij[995] = 4 +id[996] = "2245-04-09T14:05:34" +ik[996] = 37.034 +il[996] = 116 +im[996] = 0.0919 +ij[996] = 1 +id[997] = "2245-04-20T07:37:20" +ik[997] = 25.643 +il[997] = -167 +im[997] = 0 +ij[997] = 5 +id[998] = "2245-08-09T19:39:21" +ik[998] = 26.49 +il[998] = 122 +im[998] = 0 +ij[998] = 6 +id[999] = "2246-03-21T22:52:19" +ik[999] = 31.556 +il[999] = -75 +im[999] = 0 +ij[999] = 5 +id[1000] = "2246-07-17T11:43:17" +ik[1000] = 30.137 +il[1000] = -23 +im[1000] = 0 +ij[1000] = 6 +id[1001] = "2246-10-24T10:33:59" +ik[1001] = -1.782 +il[1001] = 62 +im[1001] = 0.0942 +ij[1001] = 2 +id[1002] = "2246-10-25T00:42:37" +ik[1002] = 39.404 +il[1002] = -144 +im[1002] = 0.0995 +ij[1002] = 3 +id[1003] = "2247-02-18T10:00:20" +ik[1003] = 25.753 +il[1003] = 122 +im[1003] = 0 +ij[1003] = 5 +id[1004] = "2247-05-19T14:52:30" +ik[1004] = 37.601 +il[1004] = -47 +im[1004] = 0.1128 +ij[1004] = 1 +id[1005] = "2247-05-22T07:38:00" +ik[1005] = -1.575 +il[1005] = 88 +im[1005] = 0.1018 +ij[1005] = 4 +id[1006] = "2247-06-09T18:54:17" +ik[1006] = 26.234 +il[1006] = 97 +im[1006] = 0 +ij[1006] = 6 +id[1007] = "2248-01-17T01:59:22" +ik[1007] = 31.204 +il[1007] = 174 +im[1007] = 0 +ij[1007] = 5 +id[1008] = "2248-05-13T17:33:21" +ik[1008] = 30.659 +il[1008] = -174 +im[1008] = 0 +ij[1008] = 6 +id[1009] = "2248-11-25T17:23:47" +ik[1009] = -1.631 +il[1009] = 115 +im[1009] = 0.0149 +ij[1009] = 2 +id[1010] = "2248-12-04T08:58:33" +ik[1010] = 36.867 +il[1010] = -35 +im[1010] = 0.0863 +ij[1010] = 3 +id[1011] = "2248-12-18T12:05:19" +ik[1011] = 25.916 +il[1011] = 55 +im[1011] = 0 +ij[1011] = 5 +id[1012] = "2249-04-08T19:35:19" +ik[1012] = 26.029 +il[1012] = 51 +im[1012] = 0 +ij[1012] = 6 +id[1013] = "2249-06-28T09:01:35" +ik[1013] = 39.725 +il[1013] = -92 +im[1013] = 0.0973 +ij[1013] = 1 +id[1014] = "2249-07-04T10:55:21" +ik[1014] = -1.713 +il[1014] = -61 +im[1014] = 0.0262 +ij[1014] = 4 +id[1015] = "2249-11-13T05:15:21" +ik[1015] = 30.729 +il[1015] = 63 +im[1015] = 0 +ij[1015] = 5 +id[1016] = "2250-03-10T21:02:18" +ik[1016] = 31.1 +il[1016] = 68 +im[1016] = 0 +ij[1016] = 6 +id[1017] = "2250-10-18T13:15:18" +ik[1017] = 26.133 +il[1017] = 1 +im[1017] = 0 +ij[1017] = 5 +id[1018] = "2251-01-03T22:51:48" +ik[1018] = -1.581 +il[1018] = -116 +im[1018] = 0.0581 +ij[1018] = 2 +id[1019] = "2251-01-12T16:24:31" +ik[1019] = 36.181 +il[1019] = 65 +im[1019] = 0.0708 +ij[1019] = 3 +id[1020] = "2251-02-06T21:07:20" +ik[1020] = 25.876 +il[1020] = -7 +im[1020] = 0 +ij[1020] = 6 +id[1021] = "2251-08-10T08:00:15" +ik[1021] = -1.973 +il[1021] = 177 +im[1021] = 0.0175 +ij[1021] = 4 +id[1022] = "2251-08-12T12:20:26" +ik[1022] = 43.275 +il[1022] = 134 +im[1022] = 0.0684 +ij[1022] = 1 +id[1023] = "2251-09-10T11:04:16" +ik[1023] = 30.173 +il[1023] = -85 +im[1023] = 0 +ij[1023] = 5 +id[1024] = "2252-01-06T00:35:16" +ik[1024] = 31.421 +il[1024] = -52 +im[1024] = 0 +ij[1024] = 6 +id[1025] = "2252-08-17T12:55:17" +ik[1025] = 26.403 +il[1025] = -31 +im[1025] = 0 +ij[1025] = 5 +id[1026] = "2252-12-06T22:54:20" +ik[1026] = 25.774 +il[1026] = -68 +im[1026] = 0 +ij[1026] = 6 +id[1027] = "2253-02-24T18:09:30" +ik[1027] = 37.454 +il[1027] = -70 +im[1027] = 0.0722 +ij[1027] = 3 +id[1028] = "2253-02-26T08:11:50" +ik[1028] = -1.657 +il[1028] = 94 +im[1028] = 0.1016 +ij[1028] = 2 +id[1029] = "2253-07-07T21:34:16" +ik[1029] = 29.577 +il[1029] = 59 +im[1029] = 0 +ij[1029] = 5 +id[1030] = "2253-09-09T12:13:37" +ik[1030] = -2.292 +il[1030] = -102 +im[1030] = 0.1602 +ij[1030] = 4 +id[1031] = "2253-09-28T13:03:30" +ik[1031] = 46.294 +il[1031] = 72 +im[1031] = 0.085 +ij[1031] = 1 +id[1032] = "2253-11-02T06:23:19" +ik[1032] = 31.593 +il[1032] = 155 +im[1032] = 0 +ij[1032] = 6 +id[1033] = "2254-06-17T10:27:15" +ik[1033] = 26.727 +il[1033] = -32 +im[1033] = 0 +ij[1033] = 5 +id[1034] = "2254-10-07T00:22:19" +ik[1034] = 25.724 +il[1034] = -124 +im[1034] = 0 +ij[1034] = 6 +id[1035] = "2255-04-25T17:14:29" +ik[1035] = 41.5 +il[1035] = -24 +im[1035] = 0.1174 +ij[1035] = 3 +id[1036] = "2255-05-05T14:18:14" +ik[1036] = 28.977 +il[1036] = 113 +im[1036] = 0 +ij[1036] = 5 +id[1037] = "2255-05-20T05:52:18" +ik[1037] = -2.014 +il[1037] = 19 +im[1037] = 0.2006 +ij[1037] = 2 +id[1038] = "2255-08-30T16:02:12" +ik[1038] = 31.601 +il[1038] = -56 +im[1038] = 0 +ij[1038] = 6 +id[1039] = "2255-11-02T18:04:45" +ik[1039] = -2.28 +il[1039] = -179 +im[1039] = 0.2149 +ij[1039] = 4 +id[1040] = "2255-11-29T13:03:30" +ik[1040] = 43.695 +il[1040] = 158 +im[1040] = 0.1682 +ij[1040] = 1 +id[1041] = "2256-04-16T05:13:12" +ik[1041] = 27.103 +il[1041] = 8 +im[1041] = 0 +ij[1041] = 5 +id[1042] = "2256-08-06T00:54:17" +ik[1042] = 25.727 +il[1042] = -166 +im[1042] = 0 +ij[1042] = 6 +id[1043] = "2257-03-02T14:10:19" +ik[1043] = 28.398 +il[1043] = 63 +im[1043] = 0 +ij[1043] = 5 +id[1044] = "2257-06-27T06:35:16" +ik[1044] = 31.448 +il[1044] = 22 +im[1044] = 0 +ij[1044] = 6 +id[1045] = "2257-07-04T00:51:24" +ik[1045] = 47.005 +il[1045] = -1 +im[1045] = 0.0497 +ij[1045] = 3 +id[1046] = "2257-08-02T22:43:00" +ik[1046] = -2.394 +il[1046] = -39 +im[1046] = 0.0053 +ij[1046] = 2 +id[1047] = "2258-01-18T21:50:33" +ik[1047] = -1.844 +il[1047] = -16 +im[1047] = 0.1141 +ij[1047] = 4 +id[1048] = "2258-02-03T16:37:29" +ik[1048] = 39.224 +il[1048] = -149 +im[1048] = 0.1354 +ij[1048] = 1 +id[1049] = "2258-02-13T20:37:14" +ik[1049] = 27.529 +il[1049] = 96 +im[1049] = 0 +ij[1049] = 5 +id[1050] = "2258-06-05T23:54:14" +ik[1050] = 25.783 +il[1050] = 175 +im[1050] = 0 +ij[1050] = 6 +id[1051] = "2258-12-29T21:28:13" +ik[1051] = 27.86 +il[1051] = -95 +im[1051] = 0 +ij[1051] = 5 +id[1052] = "2259-04-25T02:33:12" +ik[1052] = 31.157 +il[1052] = 22 +im[1052] = 0 +ij[1052] = 6 +id[1053] = "2259-08-20T23:00:23" +ik[1053] = 45.576 +il[1053] = -28 +im[1053] = 0.1235 +ij[1053] = 3 +id[1054] = "2259-09-11T19:38:08" +ik[1054] = -2.159 +il[1054] = -123 +im[1054] = 0.0362 +ij[1054] = 2 +id[1055] = "2259-12-14T08:03:15" +ik[1055] = 28.002 +il[1055] = -118 +im[1055] = 0 +ij[1055] = 5 +id[1056] = "2260-03-18T02:02:08" +ik[1056] = -1.61 +il[1056] = -59 +im[1056] = 0.0744 +ij[1056] = 4 +id[1057] = "2260-03-24T01:19:29" +ik[1057] = 37.257 +il[1057] = 8 +im[1057] = 0.065 +ij[1057] = 1 +id[1058] = "2260-04-04T20:42:17" +ik[1058] = 25.892 +il[1058] = -171 +im[1058] = 0 +ij[1058] = 6 +id[1059] = "2260-10-27T11:52:13" +ik[1059] = 27.372 +il[1059] = 3 +im[1059] = 0 +ij[1059] = 5 +id[1060] = "2261-02-20T04:14:09" +ik[1060] = 30.757 +il[1060] = -62 +im[1060] = 0 +ij[1060] = 6 +id[1061] = "2261-10-07T05:42:25" +ik[1061] = 40.926 +il[1061] = -179 +im[1061] = 0.0901 +ij[1061] = 3 +id[1062] = "2261-10-12T05:18:36" +ik[1062] = -1.869 +il[1062] = -125 +im[1062] = 0.104 +ij[1062] = 2 +id[1063] = "2261-10-12T14:56:15" +ik[1063] = 28.514 +il[1063] = 95 +im[1063] = 0 +ij[1063] = 5 +id[1064] = "2262-02-02T14:40:16" +ik[1064] = 26.056 +il[1064] = -116 +im[1064] = 0 +ij[1064] = 6 +id[1065] = "2262-05-04T05:48:20" +ik[1065] = 37.192 +il[1065] = 157 +im[1065] = 0.107 +ij[1065] = 1 +id[1066] = "2262-05-04T19:52:23" +ik[1066] = -1.557 +il[1066] = -49 +im[1066] = 0.1072 +ij[1066] = 4 +id[1067] = "2262-08-26T09:03:10" +ik[1067] = 26.942 +il[1067] = 1 +im[1067] = 0 +ij[1067] = 5 +id[1068] = "2262-12-19T11:43:09" +ik[1068] = 30.282 +il[1068] = 130 +im[1068] = 0 +ij[1068] = 6 +id[1069] = "2263-08-11T16:46:07" +ik[1069] = 29.058 +il[1069] = 21 +im[1069] = 0 +ij[1069] = 5 +id[1070] = "2263-11-13T08:51:57" +ik[1070] = -1.678 +il[1070] = -33 +im[1070] = 0.063 +ij[1070] = 2 +id[1071] = "2263-11-19T20:46:27" +ik[1071] = 37.632 +il[1071] = -149 +im[1071] = 0.0784 +ij[1071] = 3 +id[1072] = "2263-12-03T05:04:07" +ik[1072] = 26.276 +il[1072] = -8 +im[1072] = 0 +ij[1072] = 6 +id[1073] = "2264-06-12T03:23:19" +ik[1073] = 38.705 +il[1073] = 48 +im[1073] = 0.1061 +ij[1073] = 1 +id[1074] = "2264-06-17T12:00:24" +ik[1074] = -1.643 +il[1074] = -29 +im[1074] = 0.0085 +ij[1074] = 4 +id[1075] = "2264-06-24T12:19:09" +ik[1075] = 26.571 +il[1075] = -89 +im[1075] = 0 +ij[1075] = 5 +id[1076] = "2264-10-17T00:58:10" +ik[1076] = 29.766 +il[1076] = -121 +im[1076] = 0 +ij[1076] = 6 +id[1077] = "2265-06-09T13:09:07" +ik[1077] = 29.617 +il[1077] = 25 +im[1077] = 0 +ij[1077] = 5 +id[1078] = "2265-10-01T15:12:05" +ik[1078] = 26.553 +il[1078] = 163 +im[1078] = 0 +ij[1078] = 6 +id[1079] = "2265-12-18T13:55:04" +ik[1079] = -1.588 +il[1079] = 74 +im[1079] = 0.029 +ij[1079] = 2 +id[1080] = "2265-12-28T06:04:19" +ik[1080] = 36.234 +il[1080] = -75 +im[1080] = 0.0451 +ij[1080] = 3 +id[1081] = "2266-04-23T20:56:06" +ik[1081] = 26.26 +il[1081] = 101 +im[1081] = 0 +ij[1081] = 5 +id[1082] = "2266-07-25T09:08:21" +ik[1082] = 41.757 +il[1082] = -143 +im[1082] = 0.0066 +ij[1082] = 1 +id[1083] = "2266-07-28T13:50:38" +ik[1083] = -1.858 +il[1083] = 178 +im[1083] = 0.0692 +ij[1083] = 4 +id[1084] = "2266-08-15T19:52:10" +ik[1084] = 29.236 +il[1084] = -95 +im[1084] = 0 +ij[1084] = 6 +id[1085] = "2267-04-08T03:49:06" +ik[1085] = 30.171 +il[1085] = 113 +im[1085] = 0 +ij[1085] = 5 +id[1086] = "2267-07-31T20:18:05" +ik[1086] = 26.887 +il[1086] = 46 +im[1086] = 0 +ij[1086] = 6 +id[1087] = "2268-02-03T09:03:32" +ik[1087] = -1.607 +il[1087] = 68 +im[1087] = 0.0679 +ij[1087] = 2 +id[1088] = "2268-02-07T11:33:21" +ik[1088] = 36.689 +il[1088] = 70 +im[1088] = 0.0357 +ij[1088] = 3 +id[1089] = "2268-02-21T10:10:07" +ik[1089] = 26.009 +il[1089] = -136 +im[1089] = 0 +ij[1089] = 5 +id[1090] = "2268-06-13T20:08:09" +ik[1090] = 28.712 +il[1090] = -147 +im[1090] = 0 +ij[1090] = 6 +id[1091] = "2268-08-27T14:52:53" +ik[1091] = -2.172 +il[1091] = -58 +im[1091] = 0.112 +ij[1091] = 4 +id[1092] = "2268-09-09T13:34:19" +ik[1092] = 45.486 +il[1092] = 89 +im[1092] = 0.1189 +ij[1092] = 1 +id[1093] = "2269-02-03T12:40:10" +ik[1093] = 30.694 +il[1093] = -75 +im[1093] = 0 +ij[1093] = 5 +id[1094] = "2269-05-29T19:40:04" +ik[1094] = 27.279 +il[1094] = 14 +im[1094] = 0 +ij[1094] = 6 +id[1095] = "2269-12-21T03:16:07" +ik[1095] = 25.817 +il[1095] = -70 +im[1095] = 0 +ij[1095] = 5 +id[1096] = "2270-03-30T12:00:17" +ik[1096] = 39.504 +il[1096] = 24 +im[1096] = 0.0216 +ij[1096] = 3 +id[1097] = "2270-04-13T01:26:06" +ik[1097] = 28.212 +il[1097] = 88 +im[1097] = 0 +ij[1097] = 6 +id[1098] = "2270-04-14T13:03:34" +ik[1098] = -1.823 +il[1098] = 150 +im[1098] = 0.0568 +ij[1098] = 2 +id[1099] = "2270-10-07T13:07:08" +ik[1099] = -2.37 +il[1099] = -149 +im[1099] = 0.068 +ij[1099] = 4 +id[1100] = "2270-11-02T03:29:22" +ik[1100] = 45.493 +il[1100] = -113 +im[1100] = 0.1398 +ij[1100] = 1 +id[1101] = "2270-12-02T15:41:02" +ik[1101] = 31.152 +il[1101] = -178 +im[1101] = 0 +ij[1101] = 5 +id[1102] = "2271-03-28T12:35:08" +ik[1102] = 27.725 +il[1102] = 75 +im[1102] = 0 +ij[1102] = 6 +id[1103] = "2271-10-20T23:33:04" +ik[1103] = 25.682 +il[1103] = -51 +im[1103] = 0 +ij[1103] = 5 +id[1104] = "2272-02-10T11:16:04" +ik[1104] = 27.747 +il[1104] = -103 +im[1104] = 0 +ij[1104] = 6 +id[1105] = "2272-06-09T04:44:15" +ik[1105] = 45.283 +il[1105] = -83 +im[1105] = 0.1534 +ij[1105] = 3 +id[1106] = "2272-07-10T01:37:22" +ik[1106] = -2.331 +il[1106] = -101 +im[1106] = 0.2199 +ij[1106] = 2 +id[1107] = "2272-09-29T13:01:03" +ik[1107] = 31.508 +il[1107] = 162 +im[1107] = 0 +ij[1107] = 5 +id[1108] = "2272-12-20T21:25:49" +ik[1108] = -2.002 +il[1108] = -69 +im[1108] = 0.1667 +ij[1108] = 4 +id[1109] = "2273-01-10T21:01:17" +ik[1109] = 40.685 +il[1109] = 137 +im[1109] = 0.044 +ij[1109] = 1 +id[1110] = "2273-01-23T22:30:08" +ik[1110] = 28.222 +il[1110] = -122 +im[1110] = 0 +ij[1110] = 6 +id[1111] = "2273-08-19T22:18:02" +ik[1111] = 25.603 +il[1111] = -68 +im[1111] = 0 +ij[1111] = 5 +id[1112] = "2273-12-10T01:07:06" +ik[1112] = 27.323 +il[1112] = 8 +im[1112] = 0 +ij[1112] = 6 +id[1113] = "2274-07-28T04:54:02" +ik[1113] = 31.727 +il[1113] = -139 +im[1113] = 0 +ij[1113] = 5 +id[1114] = "2274-08-03T03:03:18" +ik[1114] = 46.957 +il[1114] = -53 +im[1114] = 0.136 +ij[1114] = 3 +id[1115] = "2274-08-29T09:56:57" +ik[1115] = -2.281 +il[1115] = 102 +im[1115] = 0.1296 +ij[1115] = 2 +id[1116] = "2274-11-22T01:06:05" +ik[1116] = 28.76 +il[1116] = 148 +im[1116] = 0 +ij[1116] = 6 +id[1117] = "2275-02-26T01:52:31" +ik[1117] = -1.676 +il[1117] = -37 +im[1117] = 0.1305 +ij[1117] = 4 +id[1118] = "2275-03-07T07:57:12" +ik[1118] = 37.764 +il[1118] = -41 +im[1118] = 0.0291 +ij[1118] = 1 +id[1119] = "2275-06-19T22:53:02" +ik[1119] = 25.58 +il[1119] = -113 +im[1119] = 0 +ij[1119] = 5 +id[1120] = "2275-10-09T18:25:03" +ik[1120] = 26.945 +il[1120] = 68 +im[1120] = 0 +ij[1120] = 6 +id[1121] = "2276-05-24T15:44:03" +ik[1121] = 31.783 +il[1121] = -5 +im[1121] = 0 +ij[1121] = 5 +id[1122] = "2276-09-18T11:07:17" +ik[1122] = 42.704 +il[1122] = 129 +im[1122] = 0.0461 +ij[1122] = 3 +id[1123] = "2276-09-18T20:29:02" +ik[1123] = 29.325 +il[1123] = 162 +im[1123] = 0 +ij[1123] = 6 +id[1124] = "2276-09-30T03:56:58" +ik[1124] = -1.973 +il[1124] = -9 +im[1124] = 0.0544 +ij[1124] = 2 +id[1125] = "2277-04-16T22:21:52" +ik[1125] = -1.56 +il[1125] = -40 +im[1125] = 0.0914 +ij[1125] = 4 +id[1126] = "2277-04-18T16:26:15" +ik[1126] = 37.022 +il[1126] = 65 +im[1126] = 0.1012 +ij[1126] = 1 +id[1127] = "2277-04-19T00:38:00" +ik[1127] = 25.612 +il[1127] = -175 +im[1127] = 0 +ij[1127] = 5 +id[1128] = "2277-08-08T14:35:05" +ik[1128] = 26.616 +il[1128] = 87 +im[1128] = 0 +ij[1128] = 6 +id[1129] = "2278-03-21T22:21:04" +ik[1129] = 31.663 +il[1129] = -168 +im[1129] = 0 +ij[1129] = 5 +id[1130] = "2278-07-17T09:15:59" +ik[1130] = 29.895 +il[1130] = -88 +im[1130] = 0 +ij[1130] = 6 +id[1131] = "2278-10-31T14:21:00" +ik[1131] = -1.74 +il[1131] = -25 +im[1131] = 0.1109 +ij[1131] = 2 +id[1132] = "2278-11-03T16:22:13" +ik[1132] = 38.69 +il[1132] = -26 +im[1132] = 0.0995 +ij[1132] = 3 +id[1133] = "2279-02-17T02:58:59" +ik[1133] = 25.698 +il[1133] = 114 +im[1133] = 0 +ij[1133] = 5 +id[1134] = "2279-05-28T10:49:17" +ik[1134] = 37.927 +il[1134] = -1 +im[1134] = 0.0925 +ij[1134] = 1 +id[1135] = "2279-06-01T05:25:00" +ik[1135] = -1.594 +il[1135] = 116 +im[1135] = 0.0211 +ij[1135] = 4 +id[1136] = "2279-06-08T13:02:03" +ik[1136] = 26.338 +il[1136] = 72 +im[1136] = 0 +ij[1136] = 6 +id[1137] = "2280-01-17T02:06:00" +ik[1137] = 31.376 +il[1137] = 72 +im[1137] = 0 +ij[1137] = 5 +id[1138] = "2280-05-13T16:48:00" +ik[1138] = 30.44 +il[1138] = 97 +im[1138] = 0 +ij[1138] = 6 +id[1139] = "2280-12-03T17:38:21" +ik[1139] = -1.611 +il[1139] = 88 +im[1139] = 0.0592 +ij[1139] = 2 +id[1140] = "2280-12-13T01:59:13" +ik[1140] = 36.565 +il[1140] = 54 +im[1140] = 0.0436 +ij[1140] = 3 +id[1141] = "2280-12-17T05:15:56" +ik[1141] = 25.837 +il[1141] = 44 +im[1141] = 0 +ij[1141] = 5 +id[1142] = "2281-04-07T13:10:59" +ik[1142] = 26.111 +il[1142] = 34 +im[1142] = 0 +ij[1142] = 6 +id[1143] = "2281-07-07T22:54:11" +ik[1143] = 40.388 +il[1143] = 53 +im[1143] = 0.0349 +ij[1143] = 1 +id[1144] = "2281-07-13T17:57:54" +ik[1144] = -1.759 +il[1144] = -176 +im[1144] = 0.0942 +ij[1144] = 4 +id[1145] = "2281-11-13T04:59:57" +ik[1145] = 30.95 +il[1145] = -35 +im[1145] = 0 +ij[1145] = 5 +id[1146] = "2282-03-10T21:00:00" +ik[1146] = 30.921 +il[1146] = -31 +im[1146] = 0 +ij[1146] = 6 +id[1147] = "2282-10-17T06:55:00" +ik[1147] = 26.031 +il[1147] = -17 +im[1147] = 0 +ij[1147] = 5 +id[1148] = "2283-01-14T04:24:35" +ik[1148] = -1.584 +il[1148] = 159 +im[1148] = 0.0988 +ij[1148] = 2 +id[1149] = "2283-01-21T18:30:14" +ik[1149] = 36.275 +il[1149] = 20 +im[1149] = 0.0121 +ij[1149] = 3 +id[1150] = "2283-02-05T14:25:00" +ik[1150] = 25.935 +il[1150] = -20 +im[1150] = 0 +ij[1150] = 6 +id[1151] = "2283-08-17T01:59:42" +ik[1151] = -2.042 +il[1151] = -126 +im[1151] = 0.012 +ij[1151] = 4 +id[1152] = "2283-08-23T00:05:11" +ik[1152] = 44.12 +il[1152] = -39 +im[1152] = 0.1228 +ij[1152] = 1 +id[1153] = "2283-09-10T09:24:54" +ik[1153] = 30.423 +il[1153] = -163 +im[1153] = 0 +ij[1153] = 5 +id[1154] = "2284-01-06T00:12:57" +ik[1154] = 31.299 +il[1154] = -145 +im[1154] = 0 +ij[1154] = 6 +id[1155] = "2284-08-16T07:19:55" +ik[1155] = 26.278 +il[1155] = -59 +im[1155] = 0 +ij[1155] = 5 +id[1156] = "2284-12-05T16:09:59" +ik[1156] = 25.811 +il[1156] = -81 +im[1156] = 0 +ij[1156] = 6 +id[1157] = "2285-03-08T02:33:12" +ik[1157] = 38.051 +il[1157] = 170 +im[1157] = 0.1283 +ij[1157] = 3 +id[1158] = "2285-03-13T21:36:37" +ik[1158] = -1.701 +il[1158] = -61 +im[1158] = 0.0194 +ij[1158] = 2 +id[1159] = "2285-07-07T17:37:58" +ik[1159] = 29.84 +il[1159] = 15 +im[1159] = 0 +ij[1159] = 5 +id[1160] = "2285-09-18T05:53:30" +ik[1160] = -2.343 +il[1160] = -20 +im[1160] = 0.1702 +ij[1160] = 4 +id[1161] = "2285-10-10T00:56:09" +ik[1161] = 46.337 +il[1161] = -91 +im[1161] = 0.1098 +ij[1161] = 1 +id[1162] = "2285-11-02T04:48:00" +ik[1162] = 31.539 +il[1162] = 79 +im[1162] = 0 +ij[1162] = 6 +id[1163] = "2286-06-16T05:50:55" +ik[1163] = 26.579 +il[1163] = -75 +im[1163] = 0 +ij[1163] = 5 +id[1164] = "2286-10-05T17:51:56" +ik[1164] = 25.739 +il[1164] = -140 +im[1164] = 0 +ij[1164] = 6 +id[1165] = "2287-05-05T07:28:59" +ik[1165] = 29.237 +il[1165] = 111 +im[1165] = 0 +ij[1165] = 5 +id[1166] = "2287-05-12T00:48:14" +ik[1166] = 42.821 +il[1166] = -85 +im[1166] = 0.1663 +ij[1166] = 3 +id[1167] = "2287-06-09T09:36:38" +ik[1167] = -2.14 +il[1167] = 52 +im[1167] = 0.2171 +ij[1167] = 2 +id[1168] = "2287-08-30T12:36:00" +ik[1168] = 31.618 +il[1168] = -104 +im[1168] = 0 +ij[1168] = 6 +id[1169] = "2287-11-20T02:35:18" +ik[1169] = -2.187 +il[1169] = 124 +im[1169] = 0.1826 +ij[1169] = 4 +id[1170] = "2287-12-15T17:08:09" +ik[1170] = 42.562 +il[1170] = 152 +im[1170] = 0.0771 +ij[1170] = 1 +id[1171] = "2288-04-15T01:54:54" +ik[1171] = 26.932 +il[1171] = -54 +im[1171] = 0 +ij[1171] = 5 +id[1172] = "2288-08-04T18:52:59" +ik[1172] = 25.719 +il[1172] = 171 +im[1172] = 0 +ij[1172] = 6 +id[1173] = "2289-03-02T04:10:59" +ik[1173] = 28.647 +il[1173] = 104 +im[1173] = 0 +ij[1173] = 5 +id[1174] = "2289-06-27T00:54:51" +ik[1174] = 31.534 +il[1174] = 6 +im[1174] = 0 +ij[1174] = 6 +id[1175] = "2289-07-15T18:21:10" +ik[1175] = 47.367 +il[1175] = 110 +im[1175] = 0.1422 +ij[1175] = 3 +id[1176] = "2289-08-13T16:28:13" +ik[1176] = -2.374 +il[1176] = 60 +im[1176] = 0.182 +ij[1176] = 2 +id[1177] = "2290-02-02T14:08:40" +ik[1177] = -1.774 +il[1177] = 136 +im[1177] = 0.0507 +ij[1177] = 4 +id[1178] = "2290-02-12T18:51:50" +ik[1178] = 27.337 +il[1178] = 12 +im[1178] = 0 +ij[1178] = 5 +id[1179] = "2290-02-15T19:37:12" +ik[1179] = 38.6 +il[1179] = 178 +im[1179] = 0.0484 +ij[1179] = 1 +id[1180] = "2290-06-04T18:36:51" +ik[1180] = 25.752 +il[1180] = 141 +im[1180] = 0 +ij[1180] = 6 +id[1181] = "2290-12-29T08:12:54" +ik[1181] = 28.089 +il[1181] = -4 +im[1181] = 0 +ij[1181] = 5 +id[1182] = "2291-04-24T18:28:56" +ik[1182] = 31.299 +il[1182] = 41 +im[1182] = 0 +ij[1182] = 6 +id[1183] = "2291-08-31T11:09:10" +ik[1183] = 44.592 +il[1183] = 154 +im[1183] = 0.0485 +ij[1183] = 3 +id[1184] = "2291-09-19T00:30:55" +ik[1184] = -2.09 +il[1184] = 135 +im[1184] = 0.0785 +ij[1184] = 2 +id[1185] = "2291-12-13T08:06:51" +ik[1185] = 27.79 +il[1185] = 132 +im[1185] = 0 +ij[1185] = 5 +id[1186] = "2292-03-29T05:49:08" +ik[1186] = -1.586 +il[1186] = -113 +im[1186] = 0.0591 +ij[1186] = 4 +id[1187] = "2292-04-02T14:36:05" +ik[1187] = 37.1 +il[1187] = 157 +im[1187] = 0.1114 +ij[1187] = 1 +id[1188] = "2292-04-03T16:27:50" +ik[1188] = 25.838 +il[1188] = 144 +im[1188] = 0 +ij[1188] = 6 +id[1189] = "2292-10-26T19:34:53" +ik[1189] = 27.578 +il[1189] = 138 +im[1189] = 0 +ij[1189] = 5 +id[1190] = "2293-02-19T17:38:49" +ik[1190] = 30.942 +il[1190] = -6 +im[1190] = 0 +ij[1190] = 6 +id[1191] = "2293-10-11T17:01:49" +ik[1191] = 28.286 +il[1191] = -45 +im[1191] = 0 +ij[1191] = 5 +id[1192] = "2293-10-17T12:17:08" +ik[1192] = 40.048 +il[1192] = 82 +im[1192] = 0.1142 +ij[1192] = 3 +id[1193] = "2293-10-19T05:26:56" +ik[1193] = -1.819 +il[1193] = -159 +im[1193] = 0.1006 +ij[1193] = 2 +id[1194] = "2294-02-01T11:44:52" +ik[1194] = 25.978 +il[1194] = 175 +im[1194] = 0 +ij[1194] = 6 +id[1195] = "2294-05-13T01:00:02" +ik[1195] = 37.388 +il[1195] = -148 +im[1195] = 0.086 +ij[1195] = 1 +id[1196] = "2294-05-14T20:11:23" +ik[1196] = -1.564 +il[1196] = -59 +im[1196] = 0.0564 +ij[1196] = 4 +id[1197] = "2294-08-25T13:54:54" +ik[1197] = 27.122 +il[1197] = 179 +im[1197] = 0 +ij[1197] = 5 +id[1198] = "2294-12-18T22:35:54" +ik[1198] = 30.495 +il[1198] = -138 +im[1198] = 0 +ij[1198] = 6 +id[1199] = "2295-08-10T21:07:55" +ik[1199] = 28.818 +il[1199] = -153 +im[1199] = 0 +ij[1199] = 5 +id[1200] = "2295-11-20T22:38:03" +ik[1200] = -1.65 +il[1200] = 94 +im[1200] = 0.0961 +ij[1200] = 2 +id[1201] = "2295-11-28T19:06:05" +ik[1201] = 37.173 +il[1201] = -138 +im[1201] = 0.0497 +ij[1201] = 3 +id[1202] = "2295-12-02T03:46:48" +ik[1202] = 26.174 +il[1202] = -97 +im[1202] = 0 +ij[1202] = 6 +id[1203] = "2296-06-21T07:51:01" +ik[1203] = 39.237 +il[1203] = -30 +im[1203] = 0.0361 +ij[1203] = 1 +id[1204] = "2296-06-23T14:36:48" +ik[1204] = 26.725 +il[1204] = 126 +im[1204] = 0 +ij[1204] = 5 +id[1205] = "2296-06-27T06:23:51" +ik[1205] = -1.679 +il[1205] = 50 +im[1205] = 0.0897 +ij[1205] = 4 +id[1206] = "2296-10-16T09:20:52" +ik[1206] = 29.993 +il[1206] = 7 +im[1206] = 0 +ij[1206] = 6 +id[1207] = "2297-06-08T19:55:46" +ik[1207] = 29.372 +il[1207] = 177 +im[1207] = 0 +ij[1207] = 5 +id[1208] = "2297-09-30T15:51:50" +ik[1208] = 26.426 +il[1208] = 41 +im[1208] = 0 +ij[1208] = 6 +id[1209] = "2297-12-27T16:26:31" +ik[1209] = -1.582 +il[1209] = 24 +im[1209] = 0.0956 +ij[1209] = 2 +id[1210] = "2298-01-06T00:27:04" +ik[1210] = 36.169 +il[1210] = -6 +im[1210] = 0.0111 +ij[1210] = 3 +id[1211] = "2298-04-22T20:59:51" +ik[1211] = 26.388 +il[1211] = -15 +im[1211] = 0 +ij[1211] = 5 +id[1212] = "2298-08-04T15:04:01" +ik[1212] = 42.584 +il[1212] = 128 +im[1212] = 0.1085 +ij[1212] = 1 +id[1213] = "2298-08-05T04:03:25" +ik[1213] = -1.919 +il[1213] = -61 +im[1213] = 0.115 +ij[1213] = 4 +id[1214] = "2298-08-15T01:49:52" +ik[1214] = 29.466 +il[1214] = 69 +im[1214] = 0 +ij[1214] = 6 +id[1215] = "2299-04-07T13:06:48" +ik[1215] = 29.932 +il[1215] = -132 +im[1215] = 0 +ij[1215] = 5 +id[1216] = "2299-07-30T23:14:47" +ik[1216] = 26.735 +il[1216] = -109 +im[1216] = 0 +ij[1216] = 6 +id[1217] = "2300-02-16T08:57:39" +ik[1217] = -1.63 +il[1217] = 93 +im[1217] = 0.0813 +ij[1217] = 2 +id[1218] = "2300-02-17T15:13:06" +ik[1218] = 37.064 +il[1218] = 11 +im[1218] = 0.1019 +ij[1218] = 3 +id[1219] = "2300-02-20T08:18:48" +ik[1219] = 26.111 +il[1219] = 140 +im[1219] = 0 +ij[1219] = 5 +id[1220] = "2300-06-13T23:47:45" +ik[1220] = 28.937 +il[1220] = 50 +im[1220] = 0 +ij[1220] = 6 +id[1221] = "2300-09-04T18:05:13" +ik[1221] = -2.242 +il[1221] = -135 +im[1221] = 0.0987 +ij[1221] = 4 +id[1222] = "2300-09-21T05:32:03" +ik[1222] = 46.032 +il[1222] = -145 +im[1222] = 0.0239 +ij[1222] = 1 +id[1223] = "2301-02-04T00:29:48" +ik[1223] = 30.472 +il[1223] = 4 +im[1223] = 0 +ij[1223] = 5 +id[1224] = "2301-05-30T01:11:51" +ik[1224] = 27.102 +il[1224] = -179 +im[1224] = 0 +ij[1224] = 6 +id[1225] = "2301-12-20T23:49:46" +ik[1225] = 25.893 +il[1225] = -130 +im[1225] = 0 +ij[1225] = 5 +id[1226] = "2302-04-13T02:57:50" +ik[1226] = 28.426 +il[1226] = -44 +im[1226] = 0 +ij[1226] = 6 +id[1227] = "2302-04-14T18:49:06" +ik[1227] = 40.538 +il[1227] = -46 +im[1227] = 0.1279 +ij[1227] = 3 +id[1228] = "2302-05-05T06:41:41" +ik[1228] = -1.92 +il[1228] = -30 +im[1228] = 0.023 +ij[1228] = 2 +id[1229] = "2302-10-22T10:16:48" +ik[1229] = -2.335 +il[1229] = -69 +im[1229] = 0.1906 +ij[1229] = 4 +id[1230] = "2302-11-18T04:01:03" +ik[1230] = 44.577 +il[1230] = -73 +im[1230] = 0.1212 +ij[1230] = 1 +id[1231] = "2302-12-03T06:01:43" +ik[1231] = 30.963 +il[1231] = -136 +im[1231] = 0 +ij[1231] = 5 +id[1232] = "2303-03-28T20:59:42" +ik[1232] = 27.525 +il[1232] = -160 +im[1232] = 0 +ij[1232] = 6 +id[1233] = "2303-10-20T18:48:48" +ik[1233] = 25.733 +il[1233] = -92 +im[1233] = 0 +ij[1233] = 5 +id[1234] = "2304-02-10T10:53:45" +ik[1234] = 27.944 +il[1234] = 153 +im[1234] = 0 +ij[1234] = 6 +id[1235] = "2304-06-24T22:39:04" +ik[1235] = 46.389 +il[1235] = 48 +im[1235] = 0.0211 +ij[1235] = 3 +id[1236] = "2304-07-25T11:27:02" +ik[1236] = -2.384 +il[1236] = 151 +im[1236] = 0.0641 +ij[1236] = 2 +id[1237] = "2304-09-30T05:48:46" +ik[1237] = 31.368 +il[1237] = 168 +im[1237] = 0 +ij[1237] = 5 +id[1238] = "2305-01-07T16:43:29" +ik[1238] = -1.91 +il[1238] = 60 +im[1238] = 0.0809 +ij[1238] = 4 +id[1239] = "2305-01-24T10:00:46" +ik[1239] = 28 +il[1239] = -41 +im[1239] = 0 +ij[1239] = 6 +id[1240] = "2305-01-25T18:03:01" +ik[1240] = 39.824 +il[1240] = -149 +im[1240] = 0.1248 +ij[1240] = 1 +id[1241] = "2305-08-19T16:34:45" +ik[1241] = 25.63 +il[1241] = -95 +im[1241] = 0 +ij[1241] = 5 +id[1242] = "2305-12-09T23:04:42" +ik[1242] = 27.501 +il[1242] = -72 +im[1242] = 0 +ij[1242] = 6 +id[1243] = "2306-07-29T00:01:43" +ik[1243] = 31.651 +il[1243] = -167 +im[1243] = 0 +ij[1243] = 5 +id[1244] = "2306-08-14T05:02:58" +ik[1244] = 46.28 +il[1244] = -83 +im[1244] = 0.1189 +ij[1244] = 3 +id[1245] = "2306-09-07T07:19:04" +ik[1245] = -2.215 +il[1245] = 120 +im[1245] = 0.1598 +ij[1245] = 2 +id[1246] = "2306-11-22T15:48:40" +ik[1246] = 28.522 +il[1246] = -178 +im[1246] = 0 +ij[1246] = 6 +id[1247] = "2307-03-11T05:43:04" +ik[1247] = -1.636 +il[1247] = -82 +im[1247] = 0.0361 +ij[1247] = 4 +id[1248] = "2307-03-18T14:33:56" +ik[1248] = 37.446 +il[1248] = -146 +im[1248] = 0.1146 +ij[1248] = 1 +id[1249] = "2307-06-19T16:26:41" +ik[1249] = 25.583 +il[1249] = -129 +im[1249] = 0 +ij[1249] = 5 +id[1250] = "2307-10-09T14:56:41" +ik[1250] = 27.103 +il[1250] = 9 +im[1250] = 0 +ij[1250] = 6 +id[1251] = "2308-05-25T12:58:45" +ik[1251] = 31.781 +il[1251] = -64 +im[1251] = 0 +ij[1251] = 5 +id[1252] = "2308-09-19T14:16:39" +ik[1252] = 29.078 +il[1252] = 151 +im[1252] = 0 +ij[1252] = 6 +id[1253] = "2308-09-30T05:33:56" +ik[1253] = 41.695 +il[1253] = -142 +im[1253] = 0.1023 +ij[1253] = 3 +id[1254] = "2308-10-08T02:32:52" +ik[1254] = -1.913 +il[1254] = -20 +im[1254] = 0.0055 +ij[1254] = 2 +id[1255] = "2309-04-18T17:45:44" +ik[1255] = 25.591 +il[1255] = 175 +im[1255] = 0 +ij[1255] = 5 +id[1256] = "2309-04-28T04:57:46" +ik[1256] = -1.556 +il[1256] = -143 +im[1256] = 0.1008 +ij[1256] = 4 +id[1257] = "2309-04-28T14:58:59" +ik[1257] = 37.085 +il[1257] = 70 +im[1257] = 0.0958 +ij[1257] = 1 +id[1258] = "2309-08-08T09:57:44" +ik[1258] = 26.753 +il[1258] = 44 +im[1258] = 0 +ij[1258] = 6 +id[1259] = "2310-03-22T21:17:42" +ik[1259] = 31.737 +il[1259] = 107 +im[1259] = 0 +ij[1259] = 5 +id[1260] = "2310-07-18T05:48:46" +ik[1260] = 29.649 +il[1260] = -139 +im[1260] = 0 +ij[1260] = 6 +id[1261] = "2310-11-08T21:03:06" +ik[1261] = -1.704 +il[1261] = -156 +im[1261] = 0.1032 +ij[1261] = 2 +id[1262] = "2310-11-14T00:43:55" +ik[1262] = 38.067 +il[1262] = -161 +im[1262] = 0.037 +ij[1262] = 3 +id[1263] = "2311-02-16T19:56:38" +ik[1263] = 25.653 +il[1263] = 107 +im[1263] = 0 +ij[1263] = 5 +id[1264] = "2311-06-07T08:48:54" +ik[1264] = 38.326 +il[1264] = 14 +im[1264] = 0.0538 +ij[1264] = 1 +id[1265] = "2311-06-08T07:29:42" +ik[1265] = 26.452 +il[1265] = 43 +im[1265] = 0 +ij[1265] = 6 +id[1266] = "2311-06-12T02:32:53" +ik[1266] = -1.619 +il[1266] = 154 +im[1266] = 0.0499 +ij[1266] = 4 +id[1267] = "2312-01-18T02:04:42" +ik[1267] = 31.521 +il[1267] = -29 +im[1267] = 0 +ij[1267] = 5 +id[1268] = "2312-05-14T15:24:37" +ik[1268] = 30.209 +il[1268] = 17 +im[1268] = 0 +ij[1268] = 6 +id[1269] = "2312-12-13T01:31:34" +ik[1269] = -1.596 +il[1269] = -50 +im[1269] = 0.0927 +ij[1269] = 2 +id[1270] = "2312-12-16T22:19:37" +ik[1270] = 25.769 +il[1270] = 36 +im[1270] = 0 +ij[1270] = 5 +id[1271] = "2312-12-22T18:06:54" +ik[1271] = 36.347 +il[1271] = 155 +im[1271] = 0.0066 +ij[1271] = 3 +id[1272] = "2313-04-07T06:58:36" +ik[1272] = 26.203 +il[1272] = 14 +im[1272] = 0 +ij[1272] = 6 +id[1273] = "2313-07-18T18:43:55" +ik[1273] = 41.119 +il[1273] = 112 +im[1273] = 0.0644 +ij[1273] = 1 +id[1274] = "2313-07-23T12:33:48" +ik[1274] = -1.811 +il[1274] = -110 +im[1274] = 0.1172 +ij[1274] = 4 +id[1275] = "2313-11-14T05:02:41" +ik[1275] = 31.151 +il[1275] = -137 +im[1275] = 0 +ij[1275] = 5 +id[1276] = "2314-03-11T20:46:36" +ik[1276] = 30.723 +il[1276] = -127 +im[1276] = 0 +ij[1276] = 6 +id[1277] = "2314-10-17T00:20:35" +ik[1277] = 25.939 +il[1277] = -31 +im[1277] = 0 +ij[1277] = 5 +id[1278] = "2315-01-26T05:38:42" +ik[1278] = -1.594 +il[1278] = 146 +im[1278] = 0.0731 +ij[1278] = 2 +id[1279] = "2315-02-01T03:30:57" +ik[1279] = 36.463 +il[1279] = -126 +im[1279] = 0.0619 +ij[1279] = 3 +id[1280] = "2315-02-05T07:48:43" +ik[1280] = 26.005 +il[1280] = -34 +im[1280] = 0 +ij[1280] = 6 +id[1281] = "2315-08-24T16:55:09" +ik[1281] = -2.114 +il[1281] = -24 +im[1281] = 0.0566 +ij[1281] = 4 +id[1282] = "2315-09-03T13:10:50" +ik[1282] = 44.918 +il[1282] = 128 +im[1282] = 0.1027 +ij[1282] = 1 +id[1283] = "2315-09-11T08:29:36" +ik[1283] = 30.663 +il[1283] = 109 +im[1283] = 0 +ij[1283] = 5 +id[1284] = "2316-01-07T00:07:37" +ik[1284] = 31.15 +il[1284] = 117 +im[1284] = 0 +ij[1284] = 6 +id[1285] = "2316-08-16T01:22:39" +ik[1285] = 26.163 +il[1285] = -82 +im[1285] = 0 +ij[1285] = 5 +id[1286] = "2316-12-05T09:25:37" +ik[1286] = 25.859 +il[1286] = -93 +im[1286] = 0 +ij[1286] = 6 +id[1287] = "2317-03-21T08:18:57" +ik[1287] = 38.79 +il[1287] = 98 +im[1287] = 0.0214 +ij[1287] = 3 +id[1288] = "2317-04-01T01:19:10" +ik[1288] = -1.761 +il[1288] = -56 +im[1288] = 0.1052 +ij[1288] = 2 +id[1289] = "2317-07-08T14:46:36" +ik[1289] = 30.099 +il[1289] = -45 +im[1289] = 0 +ij[1289] = 5 +id[1290] = "2317-09-29T10:32:57" +ik[1290] = -2.371 +il[1290] = -88 +im[1290] = 0.0209 +ij[1290] = 4 +id[1291] = "2317-10-23T13:13:52" +ik[1291] = 46.02 +il[1291] = 109 +im[1291] = 0.1402 +ij[1291] = 1 +id[1292] = "2317-11-03T03:49:40" +ik[1292] = 31.454 +il[1292] = -6 +im[1292] = 0 +ij[1292] = 6 +id[1293] = "2318-06-16T00:47:39" +ik[1293] = 26.44 +il[1293] = -111 +im[1293] = 0 +ij[1293] = 5 +id[1294] = "2318-10-05T11:12:37" +ik[1294] = 25.764 +il[1294] = -154 +im[1294] = 0 +ij[1294] = 6 +id[1295] = "2319-05-06T01:59:39" +ik[1295] = 29.5 +il[1295] = 89 +im[1295] = 0 +ij[1295] = 5 +id[1296] = "2319-05-29T16:56:55" +ik[1296] = 44.211 +il[1296] = 89 +im[1296] = 0.0955 +ij[1296] = 3 +id[1297] = "2319-06-29T03:05:52" +ik[1297] = -2.258 +il[1297] = -133 +im[1297] = 0.1935 +ij[1297] = 2 +id[1298] = "2319-08-31T10:01:37" +ik[1298] = 31.604 +il[1298] = -165 +im[1298] = 0 +ij[1298] = 6 +id[1299] = "2319-12-09T02:32:59" +ik[1299] = -2.084 +il[1299] = -163 +im[1299] = 0.0885 +ij[1299] = 4 +id[1300] = "2320-01-01T09:36:51" +ik[1300] = 41.482 +il[1300] = -47 +im[1300] = 0.0868 +ij[1300] = 1 +id[1301] = "2320-04-14T22:01:37" +ik[1301] = 26.771 +il[1301] = -107 +im[1301] = 0 +ij[1301] = 5 +id[1302] = "2320-08-04T12:35:34" +ik[1302] = 25.721 +il[1302] = 151 +im[1302] = 0 +ij[1302] = 6 +id[1303] = "2321-03-02T19:35:36" +ik[1303] = 28.901 +il[1303] = 128 +im[1303] = 0 +ij[1303] = 5 +id[1304] = "2321-06-27T20:15:38" +ik[1304] = 31.59 +il[1304] = -24 +im[1304] = 0 +ij[1304] = 6 +id[1305] = "2321-07-27T10:18:46" +ik[1305] = 47.293 +il[1305] = -125 +im[1305] = 0.1424 +ij[1305] = 3 +id[1306] = "2321-08-24T01:43:13" +ik[1306] = -2.329 +il[1306] = -85 +im[1306] = 0.1731 +ij[1306] = 2 +id[1307] = "2322-02-12T16:24:31" +ik[1307] = 27.154 +il[1307] = -62 +im[1307] = 0 +ij[1307] = 5 +id[1308] = "2322-02-17T05:29:54" +ik[1308] = -1.715 +il[1308] = -69 +im[1308] = 0.1316 +ij[1308] = 4 +id[1309] = "2322-02-28T03:58:53" +ik[1309] = 38.094 +il[1309] = 57 +im[1309] = 0.0644 +ij[1309] = 1 +id[1310] = "2322-06-04T12:58:36" +ik[1310] = 25.731 +il[1310] = 112 +im[1310] = 0 +ij[1310] = 6 +id[1311] = "2322-12-29T20:24:34" +ik[1311] = 28.327 +il[1311] = 66 +im[1311] = 0 +ij[1311] = 5 +id[1312] = "2323-04-25T11:27:36" +ik[1312] = 31.418 +il[1312] = 44 +im[1312] = 0 +ij[1312] = 6 +id[1313] = "2323-09-12T05:12:46" +ik[1313] = 43.549 +il[1313] = -111 +im[1313] = 0.062 +ij[1313] = 3 +id[1314] = "2323-09-27T01:19:15" +ik[1314] = -2.024 +il[1314] = 93 +im[1314] = 0.0877 +ij[1314] = 2 +id[1315] = "2323-12-13T07:20:29" +ik[1315] = 27.586 +il[1315] = 33 +im[1315] = 0 +ij[1315] = 5 +id[1316] = "2324-04-03T11:43:35" +ik[1316] = 25.794 +il[1316] = 100 +im[1316] = 0 +ij[1316] = 6 +id[1317] = "2324-04-10T00:07:15" +ik[1317] = -1.568 +il[1317] = -27 +im[1317] = 0.1143 +ij[1317] = 4 +id[1318] = "2324-04-12T21:07:46" +ik[1318] = 37.025 +il[1318] = 45 +im[1318] = 0.0968 +ij[1318] = 1 +id[1319] = "2324-10-27T04:36:28" +ik[1319] = 27.794 +il[1319] = -105 +im[1319] = 0 +ij[1319] = 5 +id[1320] = "2325-02-20T08:10:36" +ik[1320] = 31.11 +il[1320] = 33 +im[1320] = 0 +ij[1320] = 6 +id[1321] = "2325-10-11T18:13:32" +ik[1321] = 28.065 +il[1321] = -172 +im[1321] = 0 +ij[1321] = 5 +id[1322] = "2325-10-27T07:21:56" +ik[1322] = -1.773 +il[1322] = 141 +im[1322] = 0.0646 +ij[1322] = 2 +id[1323] = "2325-10-28T10:31:43" +ik[1323] = 39.259 +il[1323] = 105 +im[1323] = 0.0418 +ij[1323] = 3 +id[1324] = "2326-02-01T08:12:28" +ik[1324] = 25.91 +il[1324] = 115 +im[1324] = 0 +ij[1324] = 6 +id[1325] = "2326-05-22T20:07:43" +ik[1325] = 37.655 +il[1325] = -91 +im[1325] = 0.0609 +ij[1325] = 1 +id[1326] = "2326-05-25T18:47:16" +ik[1326] = -1.578 +il[1326] = -43 +im[1326] = 0.0107 +ij[1326] = 4 +id[1327] = "2326-08-25T19:57:30" +ik[1327] = 27.313 +il[1327] = -21 +im[1327] = 0 +ij[1327] = 5 +id[1328] = "2326-12-19T10:35:28" +ik[1328] = 30.698 +il[1328] = -61 +im[1328] = 0 +ij[1328] = 6 +id[1329] = "2327-08-11T00:28:30" +ik[1329] = 28.582 +il[1329] = 49 +im[1329] = 0 +ij[1329] = 5 +id[1330] = "2327-11-29T17:43:17" +ik[1330] = -1.627 +il[1330] = 142 +im[1330] = 0.0935 +ij[1330] = 2 +id[1331] = "2327-12-02T01:44:32" +ik[1331] = 26.082 +il[1331] = -179 +im[1331] = 0 +ij[1331] = 6 +id[1332] = "2327-12-08T13:54:46" +ik[1332] = 36.801 +il[1332] = -75 +im[1332] = 0.0397 +ij[1332] = 3 +id[1333] = "2328-06-23T17:58:33" +ik[1333] = 26.89 +il[1333] = -35 +im[1333] = 0 +ij[1333] = 5 +id[1334] = "2328-07-01T17:11:45" +ik[1334] = 39.843 +il[1334] = -179 +im[1334] = 0.0173 +ij[1334] = 1 +id[1335] = "2328-07-07T20:08:11" +ik[1335] = -1.721 +il[1335] = -163 +im[1335] = 0.1021 +ij[1335] = 4 +id[1336] = "2328-10-16T18:49:32" +ik[1336] = 30.216 +il[1336] = 120 +im[1336] = 0 +ij[1336] = 6 +id[1337] = "2329-06-09T01:38:29" +ik[1337] = 29.129 +il[1337] = -15 +im[1337] = 0 +ij[1337] = 5 +id[1338] = "2329-09-30T15:38:26" +ik[1338] = 26.309 +il[1338] = -68 +im[1338] = 0 +ij[1338] = 6 +id[1339] = "2330-01-07T08:42:51" +ik[1339] = -1.581 +il[1339] = 133 +im[1339] = 0.099 +ij[1339] = 2 +id[1340] = "2330-01-15T22:21:47" +ik[1340] = 36.191 +il[1340] = 10 +im[1340] = 0.0675 +ij[1340] = 3 +id[1341] = "2330-04-22T21:59:28" +ik[1341] = 26.527 +il[1341] = -137 +im[1341] = 0 +ij[1341] = 5 +id[1342] = "2330-08-13T04:55:19" +ik[1342] = -1.986 +il[1342] = -105 +im[1342] = 0.1171 +ij[1342] = 4 +id[1343] = "2330-08-15T08:49:29" +ik[1343] = 29.696 +il[1343] = -143 +im[1343] = 0 +ij[1343] = 6 +id[1344] = "2330-08-16T01:00:46" +ik[1344] = 43.435 +il[1344] = -19 +im[1344] = 0.119 +ij[1344] = 1 +id[1345] = "2331-04-07T21:18:25" +ik[1345] = 29.689 +il[1345] = 0 +im[1345] = 0 +ij[1345] = 5 +id[1346] = "2331-07-31T01:09:24" +ik[1346] = 26.594 +il[1346] = 111 +im[1346] = 0 +ij[1346] = 6 +id[1347] = "2332-02-20T07:14:26" +ik[1347] = 26.223 +il[1347] = 44 +im[1347] = 0 +ij[1347] = 5 +id[1348] = "2332-02-29T09:18:43" +ik[1348] = 37.557 +il[1348] = 100 +im[1348] = 0.0988 +ij[1348] = 3 +id[1349] = "2332-03-02T17:24:39" +ik[1349] = -1.664 +il[1349] = 1 +im[1349] = 0.0549 +ij[1349] = 2 +id[1350] = "2332-06-13T04:26:24" +ik[1350] = 29.166 +il[1350] = -127 +im[1350] = 0 +ij[1350] = 6 +id[1351] = "2332-09-12T14:47:20" +ik[1351] = -2.304 +il[1351] = -107 +im[1351] = 0.046 +ij[1351] = 4 +id[1352] = "2332-10-02T05:05:42" +ik[1352] = 46.33 +il[1352] = -129 +im[1352] = 0.1129 +ij[1352] = 1 +id[1353] = "2333-02-03T11:16:30" +ik[1353] = 30.241 +il[1353] = 98 +im[1353] = 0 +ij[1353] = 5 +id[1354] = "2333-05-29T05:34:30" +ik[1354] = 26.936 +il[1354] = 5 +im[1354] = 0 +ij[1354] = 6 +id[1355] = "2333-12-19T21:01:26" +ik[1355] = 25.98 +il[1355] = 160 +im[1355] = 0 +ij[1355] = 5 +id[1356] = "2334-04-12T05:24:25" +ik[1356] = 28.645 +il[1356] = 171 +im[1356] = 0 +ij[1356] = 6 +id[1357] = "2334-04-30T06:56:44" +ik[1357] = 41.742 +il[1357] = 177 +im[1357] = 0.0931 +ij[1357] = 3 +id[1358] = "2334-05-25T16:23:21" +ik[1358] = -2.037 +il[1358] = -85 +im[1358] = 0.0089 +ij[1358] = 2 +id[1359] = "2334-11-07T11:21:08" +ik[1359] = -2.264 +il[1359] = -27 +im[1359] = 0.0161 +ij[1359] = 4 +id[1360] = "2334-12-02T19:17:28" +ik[1360] = 30.758 +il[1360] = -78 +im[1360] = 0 +ij[1360] = 5 +id[1361] = "2334-12-04T03:51:41" +ik[1361] = 43.483 +il[1361] = -16 +im[1361] = 0.0501 +ij[1361] = 1 +id[1362] = "2335-03-28T04:07:23" +ik[1362] = 27.334 +il[1362] = -11 +im[1362] = 0 +ij[1362] = 6 +id[1363] = "2335-10-19T14:35:22" +ik[1363] = 25.795 +il[1363] = -141 +im[1363] = 0 +ij[1363] = 5 +id[1364] = "2336-02-09T11:19:23" +ik[1364] = 28.148 +il[1364] = 37 +im[1364] = 0 +ij[1364] = 6 +id[1365] = "2336-07-07T22:05:39" +ik[1365] = 47.112 +il[1365] = 81 +im[1365] = 0.1409 +ij[1365] = 3 +id[1366] = "2336-08-06T15:59:23" +ik[1366] = -2.393 +il[1366] = 101 +im[1366] = 0.19 +ij[1366] = 2 +id[1367] = "2336-09-29T21:33:24" +ik[1367] = 31.205 +il[1367] = -179 +im[1367] = 0 +ij[1367] = 5 +id[1368] = "2337-01-23T07:46:03" +ik[1368] = -1.83 +il[1368] = -120 +im[1368] = 0.0716 +ij[1368] = 4 +id[1369] = "2337-01-23T20:09:27" +ik[1369] = 27.788 +il[1369] = 59 +im[1369] = 0 +ij[1369] = 6 +id[1370] = "2337-02-07T14:40:42" +ik[1370] = 39.097 +il[1370] = -80 +im[1370] = 0.0653 +ij[1370] = 1 +id[1371] = "2337-08-18T11:14:21" +ik[1371] = 25.667 +il[1371] = -128 +im[1371] = 0 +ij[1371] = 5 +id[1372] = "2337-12-08T21:43:20" +ik[1372] = 27.688 +il[1372] = -162 +im[1372] = 0 +ij[1372] = 6 +id[1373] = "2338-07-28T18:09:21" +ik[1373] = 31.546 +il[1373] = -180 +im[1373] = 0 +ij[1373] = 5 +id[1374] = "2338-08-24T11:25:43" +ik[1374] = 45.397 +il[1374] = -177 +im[1374] = 0.0136 +ij[1374] = 3 +id[1375] = "2338-09-14T17:45:11" +ik[1375] = -2.146 +il[1375] = -63 +im[1375] = 0.1372 +ij[1375] = 2 +id[1376] = "2338-11-22T05:07:26" +ik[1376] = 28.29 +il[1376] = -124 +im[1376] = 0 +ij[1376] = 6 +id[1377] = "2339-03-22T19:07:51" +ik[1377] = -1.605 +il[1377] = 83 +im[1377] = 0.0676 +ij[1377] = 4 +id[1378] = "2339-03-28T10:42:40" +ik[1378] = 37.219 +il[1378] = -98 +im[1378] = 0.0939 +ij[1378] = 1 +id[1379] = "2339-06-18T10:16:27" +ik[1379] = 25.596 +il[1379] = -149 +im[1379] = 0 +ij[1379] = 5 +id[1380] = "2339-10-08T12:04:27" +ik[1380] = 27.27 +il[1380] = -59 +im[1380] = 0 +ij[1380] = 6 +id[1381] = "2340-05-25T09:20:26" +ik[1381] = 31.746 +il[1381] = -110 +im[1381] = 0 +ij[1381] = 5 +id[1382] = "2340-09-19T06:46:22" +ik[1382] = 28.833 +il[1382] = 159 +im[1382] = 0 +ij[1382] = 6 +id[1383] = "2340-10-10T18:21:36" +ik[1383] = 40.751 +il[1383] = 29 +im[1383] = 0.0934 +ij[1383] = 3 +id[1384] = "2340-10-15T01:36:19" +ik[1384] = -1.859 +il[1384] = -38 +im[1384] = 0.0104 +ij[1384] = 2 +id[1385] = "2341-04-17T11:03:24" +ik[1385] = 25.58 +il[1385] = 163 +im[1385] = 0 +ij[1385] = 5 +id[1386] = "2341-05-07T11:08:35" +ik[1386] = 37.222 +il[1386] = 111 +im[1386] = 0.0376 +ij[1386] = 1 +id[1387] = "2341-05-08T07:31:52" +ik[1387] = -1.558 +il[1387] = 173 +im[1387] = 0.0175 +ij[1387] = 4 +id[1388] = "2341-08-07T05:47:19" +ik[1388] = 26.898 +il[1388] = -5 +im[1388] = 0 +ij[1388] = 6 +id[1389] = "2342-03-22T19:34:19" +ik[1389] = 31.779 +il[1389] = 33 +im[1389] = 0 +ij[1389] = 5 +id[1390] = "2342-07-18T01:14:18" +ik[1390] = 29.401 +il[1390] = -173 +im[1390] = 0 +ij[1390] = 6 +id[1391] = "2342-11-16T07:15:00" +ik[1391] = -1.672 +il[1391] = 23 +im[1391] = 0.0913 +ij[1391] = 2 +id[1392] = "2342-11-23T02:58:42" +ik[1392] = 37.536 +il[1392] = 153 +im[1392] = 0.0357 +ij[1392] = 3 +id[1393] = "2343-02-15T12:56:18" +ik[1393] = 25.618 +il[1393] = 99 +im[1393] = 0 +ij[1393] = 5 +id[1394] = "2343-06-07T02:18:23" +ik[1394] = 26.576 +il[1394] = 9 +im[1394] = 0 +ij[1394] = 6 +id[1395] = "2343-06-16T09:55:35" +ik[1395] = 38.798 +il[1395] = -15 +im[1395] = 0.0096 +ij[1395] = 1 +id[1396] = "2343-06-21T22:46:34" +ik[1396] = -1.649 +il[1396] = -154 +im[1396] = 0.1009 +ij[1396] = 4 +id[1397] = "2344-01-18T01:41:22" +ik[1397] = 31.637 +il[1397] = -123 +im[1397] = 0 +ij[1397] = 5 +id[1398] = "2344-05-14T13:14:18" +ik[1398] = 29.97 +il[1398] = -52 +im[1398] = 0 +ij[1398] = 6 +id[1399] = "2344-12-15T15:18:17" +ik[1399] = 25.711 +il[1399] = 28 +im[1399] = 0 +ij[1399] = 5 +id[1400] = "2344-12-21T18:57:14" +ik[1400] = -1.586 +il[1400] = 33 +im[1400] = 0.0935 +ij[1400] = 2 +id[1401] = "2344-12-31T10:51:36" +ik[1401] = 36.213 +il[1401] = -113 +im[1401] = 0.0777 +ij[1401] = 3 +id[1402] = "2345-04-06T01:01:20" +ik[1402] = 26.305 +il[1402] = -9 +im[1402] = 0 +ij[1402] = 6 +id[1403] = "2345-07-28T20:24:34" +ik[1403] = 41.909 +il[1403] = 85 +im[1403] = 0.1089 +ij[1403] = 1 +id[1404] = "2345-07-31T15:36:21" +ik[1404] = -1.869 +il[1404] = -176 +im[1404] = 0.0982 +ij[1404] = 4 +id[1405] = "2345-11-14T05:11:19" +ik[1405] = 31.33 +il[1405] = 120 +im[1405] = 0 +ij[1405] = 5 +id[1406] = "2346-03-11T20:11:19" +ik[1406] = 30.508 +il[1406] = 141 +im[1406] = 0 +ij[1406] = 6 +id[1407] = "2346-10-15T17:34:22" +ik[1407] = 25.858 +il[1407] = -42 +im[1407] = 0 +ij[1407] = 5 +id[1408] = "2347-02-04T01:21:21" +ik[1408] = 26.084 +il[1408] = -50 +im[1408] = 0 +ij[1408] = 6 +id[1409] = "2347-02-07T06:51:55" +ik[1409] = -1.61 +il[1409] = 142 +im[1409] = 0.0828 +ij[1409] = 2 +id[1410] = "2347-02-10T21:45:38" +ik[1410] = 36.751 +il[1410] = -47 +im[1410] = 0.1221 +ij[1410] = 3 +id[1411] = "2347-08-31T11:36:23" +ik[1411] = -2.186 +il[1411] = 23 +im[1411] = 0.0372 +ij[1411] = 4 +id[1412] = "2347-09-11T08:07:17" +ik[1412] = 30.888 +il[1412] = 13 +im[1412] = 0 +ij[1412] = 5 +id[1413] = "2347-09-14T02:46:36" +ik[1413] = 45.606 +il[1413] = -71 +im[1413] = 0.0487 +ij[1413] = 1 +id[1414] = "2348-01-07T00:06:20" +ik[1414] = 30.978 +il[1414] = 18 +im[1414] = 0 +ij[1414] = 6 +id[1415] = "2348-08-14T19:06:14" +ik[1415] = 26.058 +il[1415] = -101 +im[1415] = 0 +ij[1415] = 5 +id[1416] = "2348-12-04T02:42:17" +ik[1416] = 25.915 +il[1416] = -106 +im[1416] = 0 +ij[1416] = 6 +id[1417] = "2349-04-03T15:43:37" +ik[1417] = 39.687 +il[1417] = 10 +im[1417] = 0.1336 +ij[1417] = 3 +id[1418] = "2349-04-19T18:08:24" +ik[1418] = -1.84 +il[1418] = 126 +im[1418] = 0.147 +ij[1418] = 2 +id[1419] = "2349-07-08T12:52:16" +ik[1419] = 30.352 +il[1419] = -119 +im[1419] = 0 +ij[1419] = 5 +id[1420] = "2349-10-11T12:51:57" +ik[1420] = -2.367 +il[1420] = -102 +im[1420] = 0.1645 +ij[1420] = 4 +id[1421] = "2349-11-03T03:21:18" +ik[1421] = 31.34 +il[1421] = -98 +im[1421] = 0 +ij[1421] = 6 +id[1422] = "2349-11-06T10:26:32" +ik[1422] = 45.343 +il[1422] = -172 +im[1422] = 0.0576 +ij[1422] = 1 +id[1423] = "2350-06-14T19:19:20" +ik[1423] = 26.312 +il[1423] = -141 +im[1423] = 0 +ij[1423] = 5 +id[1424] = "2350-10-04T04:29:16" +ik[1424] = 25.798 +il[1424] = -167 +im[1424] = 0 +ij[1424] = 6 +id[1425] = "2351-05-05T21:42:20" +ik[1425] = 29.764 +il[1425] = 50 +im[1425] = 0 +ij[1425] = 5 +id[1426] = "2351-06-14T16:18:37" +ik[1426] = 45.519 +il[1426] = 149 +im[1426] = 0.088 +ij[1426] = 3 +id[1427] = "2351-07-15T13:15:05" +ik[1427] = -2.345 +il[1427] = 131 +im[1427] = 0.0112 +ij[1427] = 2 +id[1428] = "2351-08-31T08:14:12" +ik[1428] = 31.559 +il[1428] = 122 +im[1428] = 0 +ij[1428] = 6 +id[1429] = "2351-12-26T16:45:46" +ik[1429] = -1.984 +il[1429] = 50 +im[1429] = 0.0438 +ij[1429] = 4 +id[1430] = "2352-01-16T03:21:36" +ik[1430] = 40.513 +il[1430] = 85 +im[1430] = 0.1191 +ij[1430] = 1 +id[1431] = "2352-04-13T17:35:13" +ik[1431] = 26.62 +il[1431] = -152 +im[1431] = 0 +ij[1431] = 5 +id[1432] = "2352-08-03T06:08:12" +ik[1432] = 25.733 +il[1432] = 134 +im[1432] = 0 +ij[1432] = 6 +id[1433] = "2353-03-02T12:23:19" +ik[1433] = 29.161 +il[1433] = 133 +im[1433] = 0 +ij[1433] = 5 +id[1434] = "2353-06-27T16:32:18" +ik[1434] = 31.617 +il[1434] = -69 +im[1434] = 0 +ij[1434] = 6 +id[1435] = "2353-08-06T14:03:33" +ik[1435] = 46.85 +il[1435] = 179 +im[1435] = 0.049 +ij[1435] = 3 +id[1436] = "2353-09-01T12:03:07" +ik[1436] = -2.27 +il[1436] = 104 +im[1436] = 0.134 +ij[1436] = 2 +id[1437] = "2354-02-11T13:17:11" +ik[1437] = 26.98 +il[1437] = -126 +im[1437] = 0 +ij[1437] = 5 +id[1438] = "2354-03-01T23:47:07" +ik[1438] = -1.668 +il[1438] = 34 +im[1438] = 0.0525 +ij[1438] = 4 +id[1439] = "2354-03-10T20:57:33" +ik[1439] = 37.696 +il[1439] = 160 +im[1439] = 0.1144 +ij[1439] = 1 +id[1440] = "2354-06-03T07:01:12" +ik[1440] = 25.72 +il[1440] = 87 +im[1440] = 0 +ij[1440] = 6 +id[1441] = "2354-12-29T10:00:11" +ik[1441] = 28.573 +il[1441] = 116 +im[1441] = 0 +ij[1441] = 5 +id[1442] = "2355-04-25T05:30:11" +ik[1442] = 31.512 +il[1442] = 33 +im[1442] = 0 +ij[1442] = 6 +id[1443] = "2355-09-23T01:39:30" +ik[1443] = 42.507 +il[1443] = -51 +im[1443] = 0.1248 +ij[1443] = 3 +id[1444] = "2355-10-04T00:10:15" +ik[1444] = -1.961 +il[1444] = 78 +im[1444] = 0.0866 +ij[1444] = 2 +id[1445] = "2355-12-12T05:48:11" +ik[1445] = 27.391 +il[1445] = -54 +im[1445] = 0 +ij[1445] = 5 +id[1446] = "2356-04-02T06:34:16" +ik[1446] = 25.76 +il[1446] = 61 +im[1446] = 0 +ij[1446] = 6 +id[1447] = "2356-04-20T11:15:09" +ik[1447] = -1.558 +il[1447] = 163 +im[1447] = 0.0567 +ij[1447] = 4 +id[1448] = "2356-04-21T22:37:29" +ik[1448] = 37.027 +il[1448] = 6 +im[1448] = 0.0245 +ij[1448] = 1 +id[1449] = "2356-10-26T14:59:16" +ik[1449] = 28.02 +il[1449] = -8 +im[1449] = 0 +ij[1449] = 5 +id[1450] = "2357-02-19T23:46:10" +ik[1450] = 31.259 +il[1450] = 57 +im[1450] = 0 +ij[1450] = 6 +id[1451] = "2357-10-10T18:31:14" +ik[1451] = 27.85 +il[1451] = 74 +im[1451] = 0 +ij[1451] = 5 +id[1452] = "2357-11-03T11:38:16" +ik[1452] = -1.733 +il[1452] = 46 +im[1452] = 0.0676 +ij[1452] = 2 +id[1453] = "2357-11-07T00:42:28" +ik[1453] = 38.562 +il[1453] = -115 +im[1453] = 0.0124 +ij[1453] = 3 +id[1454] = "2358-01-31T04:07:14" +ik[1454] = 25.853 +il[1454] = 63 +im[1454] = 0 +ij[1454] = 6 +id[1455] = "2358-05-31T16:20:29" +ik[1455] = 37.995 +il[1455] = -50 +im[1455] = 0.0268 +ij[1455] = 1 +id[1456] = "2358-06-04T16:28:03" +ik[1456] = -1.598 +il[1456] = -13 +im[1456] = 0.0975 +ij[1456] = 4 +id[1457] = "2358-08-25T03:17:08" +ik[1457] = 27.516 +il[1457] = 120 +im[1457] = 0 +ij[1457] = 5 +id[1458] = "2358-12-18T23:41:08" +ik[1458] = 30.888 +il[1458] = -1 +im[1458] = 0 +ij[1458] = 6 +id[1459] = "2359-08-10T02:52:13" +ik[1459] = 28.352 +il[1459] = -95 +im[1459] = 0 +ij[1459] = 5 +id[1460] = "2359-11-30T23:01:14" +ik[1460] = 26 +il[1460] = 105 +im[1460] = 0 +ij[1460] = 6 +id[1461] = "2359-12-07T19:19:37" +ik[1461] = -1.608 +il[1461] = 96 +im[1461] = 0.0982 +ij[1461] = 2 +id[1462] = "2359-12-17T06:37:26" +ik[1462] = 36.515 +il[1462] = 18 +im[1462] = 0.0694 +ij[1462] = 3 +id[1463] = "2360-06-22T22:28:07" +ik[1463] = 27.067 +il[1463] = 148 +im[1463] = 0 +ij[1463] = 5 +id[1464] = "2360-07-11T08:10:27" +ik[1464] = 40.519 +il[1464] = -50 +im[1464] = 0.1013 +ij[1464] = 1 +id[1465] = "2360-07-17T01:09:51" +ik[1465] = -1.769 +il[1465] = 111 +im[1465] = 0.087 +ij[1465] = 4 +id[1466] = "2360-10-16T05:23:08" +ik[1466] = 30.432 +il[1466] = -143 +im[1466] = 0 +ij[1466] = 6 +id[1467] = "2361-06-08T06:18:08" +ik[1467] = 28.888 +il[1467] = 167 +im[1467] = 0 +ij[1467] = 5 +id[1468] = "2361-09-29T14:35:13" +ik[1468] = 26.204 +il[1468] = -165 +im[1468] = 0 +ij[1468] = 6 +id[1469] = "2362-01-17T17:48:05" +ik[1469] = -1.585 +il[1469] = -5 +im[1469] = 0.0323 +ij[1469] = 2 +id[1470] = "2362-01-25T01:34:27" +ik[1470] = 36.302 +il[1470] = -51 +im[1470] = 0.108 +ij[1470] = 3 +id[1471] = "2362-04-21T23:58:07" +ik[1471] = 26.677 +il[1471] = 80 +im[1471] = 0 +ij[1471] = 5 +id[1472] = "2362-08-14T16:53:11" +ik[1472] = 29.925 +il[1472] = -9 +im[1472] = 0 +ij[1472] = 6 +id[1473] = "2362-08-19T21:39:12" +ik[1473] = -2.056 +il[1473] = -30 +im[1473] = 0.1287 +ij[1473] = 4 +id[1474] = "2362-08-26T13:15:27" +ik[1474] = 44.277 +il[1474] = 161 +im[1474] = 0.0369 +ij[1474] = 1 +id[1475] = "2363-04-07T04:24:05" +ik[1475] = 29.444 +il[1475] = 147 +im[1475] = 0 +ij[1475] = 5 +id[1476] = "2363-07-30T02:06:08" +ik[1476] = 26.463 +il[1476] = -14 +im[1476] = 0 +ij[1476] = 6 +id[1477] = "2364-02-19T07:02:12" +ik[1477] = 26.348 +il[1477] = -63 +im[1477] = 0 +ij[1477] = 5 +id[1478] = "2364-03-11T21:25:29" +ik[1478] = 38.179 +il[1478] = -74 +im[1478] = 0.0072 +ij[1478] = 3 +id[1479] = "2364-03-18T13:56:06" +ik[1479] = -1.711 +il[1479] = 102 +im[1479] = 0.1264 +ij[1479] = 2 +id[1480] = "2364-06-12T10:05:05" +ik[1480] = 29.396 +il[1480] = 42 +im[1480] = 0 +ij[1480] = 6 +id[1481] = "2364-09-21T14:08:33" +ik[1481] = -2.351 +il[1481] = -108 +im[1481] = 0.0275 +ij[1481] = 4 +id[1482] = "2364-10-13T20:46:27" +ik[1482] = 46.308 +il[1482] = 12 +im[1482] = 0.1556 +ij[1482] = 1 +id[1483] = "2365-02-02T20:50:03" +ik[1483] = 30.003 +il[1483] = -151 +im[1483] = 0 +ij[1483] = 5 +id[1484] = "2365-05-28T08:50:03" +ik[1484] = 26.78 +il[1484] = -155 +im[1484] = 0 +ij[1484] = 6 +id[1485] = "2365-12-18T18:57:10" +ik[1485] = 26.078 +il[1485] = 79 +im[1485] = 0 +ij[1485] = 5 +id[1486] = "2366-04-11T08:47:11" +ik[1486] = 28.868 +il[1486] = 13 +im[1486] = 0 +ij[1486] = 6 +id[1487] = "2366-05-16T17:55:23" +ik[1487] = 43.085 +il[1487] = 66 +im[1487] = 0.0494 +ij[1487] = 3 +id[1488] = "2366-06-14T15:55:15" +ik[1488] = -2.164 +il[1488] = 10 +im[1488] = 0.0476 +ij[1488] = 2 +id[1489] = "2366-11-25T00:53:02" +ik[1489] = -2.168 +il[1489] = -160 +im[1489] = 0.1199 +ij[1489] = 4 +id[1490] = "2366-12-02T07:27:07" +ik[1490] = 30.539 +il[1490] = -4 +im[1490] = 0 +ij[1490] = 5 +id[1491] = "2366-12-20T07:05:22" +ik[1491] = 42.353 +il[1491] = -10 +im[1491] = 0.1552 +ij[1491] = 1 +id[1492] = "2367-03-27T10:01:03" +ik[1492] = 27.154 +il[1492] = 146 +im[1492] = 0 +ij[1492] = 6 +id[1493] = "2367-10-18T10:57:04" +ik[1493] = 25.868 +il[1493] = 161 +im[1493] = 0 +ij[1493] = 5 +id[1494] = "2368-02-08T12:36:08" +ik[1494] = 28.36 +il[1494] = -91 +im[1494] = 0 +ij[1494] = 6 +id[1495] = "2368-07-19T09:38:26" +ik[1495] = 47.387 +il[1495] = -81 +im[1495] = 0.1296 +ij[1495] = 3 +id[1496] = "2368-08-17T02:40:36" +ik[1496] = -2.368 +il[1496] = -56 +im[1496] = 0.1542 +ij[1496] = 2 +id[1497] = "2368-09-29T12:14:06" +ik[1497] = 31.022 +il[1497] = -133 +im[1497] = 0 +ij[1497] = 5 +id[1498] = "2369-01-23T04:57:04" +ik[1498] = 27.584 +il[1498] = 178 +im[1498] = 0 +ij[1498] = 6 +id[1499] = "2369-02-06T19:12:37" +ik[1499] = -1.762 +il[1499] = 102 +im[1499] = 0.1173 +ij[1499] = 4 +id[1500] = "2369-02-19T13:54:20" +ik[1500] = 38.496 +il[1500] = -58 +im[1500] = 0.106 +ij[1500] = 1 +id[1501] = "2369-08-17T06:21:01" +ik[1501] = 25.715 +il[1501] = -179 +im[1501] = 0 +ij[1501] = 5 +id[1502] = "2369-12-07T21:07:03" +ik[1502] = 27.883 +il[1502] = 97 +im[1502] = 0 +ij[1502] = 6 +id[1503] = "2370-07-28T11:17:05" +ik[1503] = 31.414 +il[1503] = -179 +im[1503] = 0 +ij[1503] = 5 +id[1504] = "2370-09-04T00:57:18" +ik[1504] = 44.395 +il[1504] = -15 +im[1504] = 0.0906 +ij[1504] = 3 +id[1505] = "2370-09-21T21:30:24" +ik[1505] = -2.078 +il[1505] = -148 +im[1505] = 0.1422 +ij[1505] = 2 +id[1506] = "2370-11-21T17:03:07" +ik[1506] = 28.066 +il[1506] = -50 +im[1506] = 0 +ij[1506] = 6 +id[1507] = "2371-04-02T21:01:05" +ik[1507] = -1.581 +il[1507] = 57 +im[1507] = 0.1135 +ij[1507] = 4 +id[1508] = "2371-04-06T22:33:18" +ik[1508] = 37.078 +il[1508] = 72 +im[1508] = 0.0513 +ij[1508] = 1 +id[1509] = "2371-06-17T04:26:06" +ik[1509] = 25.62 +il[1509] = -175 +im[1509] = 0 +ij[1509] = 5 +id[1510] = "2371-10-07T09:50:06" +ik[1510] = 27.445 +il[1510] = -136 +im[1510] = 0 +ij[1510] = 6 +id[1511] = "2372-05-25T04:46:07" +ik[1511] = 31.679 +il[1511] = -143 +im[1511] = 0 +ij[1511] = 5 +id[1512] = "2372-09-18T21:54:00" +ik[1512] = 28.594 +il[1512] = -173 +im[1512] = 0 +ij[1512] = 6 +id[1513] = "2372-10-20T23:23:16" +ik[1513] = 39.889 +il[1513] = -48 +im[1513] = 0.0088 +ij[1513] = 3 +id[1514] = "2372-10-22T01:56:12" +ik[1514] = -1.81 +il[1514] = -75 +im[1514] = 0.0197 +ij[1514] = 2 +id[1515] = "2373-04-16T04:32:00" +ik[1515] = 25.58 +il[1515] = 148 +im[1515] = 0 +ij[1515] = 5 +id[1516] = "2373-05-16T06:12:23" +ik[1516] = 37.431 +il[1516] = 168 +im[1516] = 0.0221 +ij[1516] = 1 +id[1517] = "2373-05-18T07:26:53" +ik[1517] = -1.566 +il[1517] = 169 +im[1517] = 0.0631 +ij[1517] = 4 +id[1518] = "2373-08-06T02:09:01" +ik[1518] = 27.053 +il[1518] = -61 +im[1518] = 0 +ij[1518] = 6 +id[1519] = "2374-03-22T17:03:59" +ik[1519] = 31.787 +il[1519] = -30 +im[1519] = 0 +ij[1519] = 5 +id[1520] = "2374-07-17T19:25:06" +ik[1520] = 29.153 +il[1520] = 170 +im[1520] = 0 +ij[1520] = 6 +id[1521] = "2374-11-23T22:04:13" +ik[1521] = -1.645 +il[1521] = 134 +im[1521] = 0.0882 +ij[1521] = 2 +id[1522] = "2374-12-02T00:30:23" +ik[1522] = 37.094 +il[1522] = 176 +im[1522] = 0.0769 +ij[1522] = 3 +id[1523] = "2375-02-14T06:01:00" +ik[1523] = 25.594 +il[1523] = 90 +im[1523] = 0 +ij[1523] = 5 +id[1524] = "2375-06-05T21:31:58" +ik[1524] = 26.71 +il[1524] = -31 +im[1524] = 0 +ij[1524] = 6 +id[1525] = "2375-06-25T15:13:23" +ik[1525] = 39.344 +il[1525] = -105 +im[1525] = 0.0868 +ij[1525] = 1 +id[1526] = "2375-07-01T16:43:20" +ik[1526] = -1.686 +il[1526] = -69 +im[1526] = 0.0984 +ij[1526] = 4 +id[1527] = "2376-01-18T00:48:57" +ik[1527] = 31.721 +il[1527] = 149 +im[1527] = 0 +ij[1527] = 5 +id[1528] = "2376-05-14T10:07:58" +ik[1528] = 29.725 +il[1528] = -108 +im[1528] = 0 +ij[1528] = 6 +id[1529] = "2376-12-14T08:16:04" +ik[1529] = 25.663 +il[1529] = 21 +im[1529] = 0 +ij[1529] = 5 +id[1530] = "2376-12-30T23:55:21" +ik[1530] = -1.581 +il[1530] = -53 +im[1530] = 0.0815 +ij[1530] = 2 +id[1531] = "2377-01-09T05:45:18" +ik[1531] = 36.165 +il[1531] = -52 +im[1531] = 0.095 +ij[1531] = 3 +id[1532] = "2377-04-04T19:22:56" +ik[1532] = 26.416 +il[1532] = -37 +im[1532] = 0 +ij[1532] = 6 +id[1533] = "2377-08-08T02:45:08" +ik[1533] = -1.932 +il[1533] = -10 +im[1533] = 0.1041 +ij[1533] = 4 +id[1534] = "2377-08-08T03:13:14" +ik[1534] = 42.743 +il[1534] = -17 +im[1534] = 0.1038 +ij[1534] = 1 +id[1535] = "2377-11-14T05:14:03" +ik[1535] = 31.483 +il[1535] = 19 +im[1535] = 0 +ij[1535] = 5 +id[1536] = "2378-03-11T19:01:03" +ik[1536] = 30.281 +il[1536] = 58 +im[1536] = 0 +ij[1536] = 6 +id[1537] = "2378-10-14T10:38:55" +ik[1537] = 25.786 +il[1537] = -51 +im[1537] = 0 +ij[1537] = 5 +id[1538] = "2379-02-02T19:04:56" +ik[1538] = 26.173 +il[1538] = -69 +im[1538] = 0 +ij[1538] = 6 +id[1539] = "2379-02-20T12:38:56" +ik[1539] = -1.636 +il[1539] = 80 +im[1539] = 0.089 +ij[1539] = 2 +id[1540] = "2379-02-21T03:54:17" +ik[1540] = 37.148 +il[1540] = -143 +im[1540] = 0.0776 +ij[1540] = 3 +id[1541] = "2379-09-07T17:18:56" +ik[1541] = -2.254 +il[1541] = -91 +im[1541] = 0.0958 +ij[1541] = 4 +id[1542] = "2379-09-11T08:07:00" +ik[1542] = 31.096 +il[1542] = -88 +im[1542] = 0 +ij[1542] = 5 +id[1543] = "2379-09-24T19:50:18" +ik[1543] = 46.112 +il[1543] = 39 +im[1543] = 0.1265 +ij[1543] = 1 +id[1544] = "2380-01-06T23:57:59" +ik[1544] = 30.786 +il[1544] = -80 +im[1544] = 0 +ij[1544] = 6 +id[1545] = "2380-08-13T12:34:59" +ik[1545] = 25.963 +il[1545] = -116 +im[1545] = 0 +ij[1545] = 5 +id[1546] = "2380-12-02T20:03:59" +ik[1546] = 25.982 +il[1546] = -119 +im[1546] = 0 +ij[1546] = 6 +id[1547] = "2381-04-18T04:15:18" +ik[1547] = 40.754 +il[1547] = -143 +im[1547] = 0.0372 +ij[1547] = 3 +id[1548] = "2381-05-09T16:25:37" +ik[1548] = -1.941 +il[1548] = -122 +im[1548] = 0.1678 +ij[1548] = 2 +id[1549] = "2381-07-08T11:46:01" +ik[1549] = 30.595 +il[1549] = 155 +im[1549] = 0 +ij[1549] = 5 +id[1550] = "2381-10-25T20:17:38" +ik[1550] = -2.325 +il[1550] = -172 +im[1550] = 0.0781 +ij[1550] = 4 +id[1551] = "2381-11-03T03:11:57" +ik[1551] = 31.199 +il[1551] = 165 +im[1551] = 0 +ij[1551] = 6 +id[1552] = "2381-11-21T16:37:12" +ik[1552] = 44.382 +il[1552] = 145 +im[1552] = 0.1155 +ij[1552] = 1 +id[1553] = "2382-06-13T13:26:58" +ik[1553] = 26.194 +il[1553] = -165 +im[1553] = 0 +ij[1553] = 5 +id[1554] = "2382-10-02T21:43:55" +ik[1554] = 25.842 +il[1554] = -179 +im[1554] = 0 +ij[1554] = 6 +id[1555] = "2383-05-05T18:33:59" +ik[1555] = 30.024 +il[1555] = -7 +im[1555] = 0 +ij[1555] = 5 +id[1556] = "2383-06-29T02:13:12" +ik[1556] = 46.562 +il[1556] = 38 +im[1556] = 0.1596 +ij[1556] = 3 +id[1557] = "2383-07-29T12:08:46" +ik[1557] = -2.389 +il[1557] = -177 +im[1557] = 0.2128 +ij[1557] = 2 +id[1558] = "2383-08-31T07:05:57" +ik[1558] = 31.484 +il[1558] = 40 +im[1558] = 0 +ij[1558] = 6 +id[1559] = "2384-01-12T06:59:26" +ik[1559] = -1.894 +il[1559] = -108 +im[1559] = 0.1487 +ij[1559] = 4 +id[1560] = "2384-01-29T19:38:12" +ik[1560] = 39.677 +il[1560] = -132 +im[1560] = 0.0485 +ij[1560] = 1 +id[1561] = "2384-04-12T12:38:52" +ik[1561] = 26.478 +il[1561] = 170 +im[1561] = 0 +ij[1561] = 5 +id[1562] = "2384-08-01T23:30:54" +ik[1562] = 25.755 +il[1562] = 120 +im[1562] = 0 +ij[1562] = 6 +id[1563] = "2385-03-02T06:30:57" +ik[1563] = 29.423 +il[1563] = 117 +im[1563] = 0 +ij[1563] = 5 +id[1564] = "2385-06-27T13:43:58" +ik[1564] = 31.613 +il[1564] = -126 +im[1564] = 0 +ij[1564] = 6 +id[1565] = "2385-08-16T16:26:15" +ik[1565] = 46.126 +il[1565] = 144 +im[1565] = 0.0403 +ij[1565] = 3 +id[1566] = "2385-09-09T06:51:27" +ik[1566] = -2.202 +il[1566] = 159 +im[1566] = 0.1106 +ij[1566] = 2 +id[1567] = "2386-02-10T09:32:58" +ik[1567] = 26.816 +il[1567] = 179 +im[1567] = 0 +ij[1567] = 5 +id[1568] = "2386-03-14T00:46:07" +ik[1568] = -1.629 +il[1568] = 31 +im[1568] = 0.1041 +ij[1568] = 4 +id[1569] = "2386-03-21T01:24:14" +ik[1569] = 37.395 +il[1569] = 87 +im[1569] = 0.0793 +ij[1569] = 1 +id[1570] = "2386-06-02T00:48:57" +ik[1570] = 25.719 +il[1570] = 67 +im[1570] = 0 +ij[1570] = 6 +id[1571] = "2386-12-29T01:00:54" +ik[1571] = 28.826 +il[1571] = 145 +im[1571] = 0 +ij[1571] = 5 +id[1572] = "2387-04-25T00:32:49" +ik[1572] = 31.577 +il[1572] = 6 +im[1572] = 0 +ij[1572] = 6 +id[1573] = "2387-10-03T19:18:11" +ik[1573] = 41.508 +il[1573] = 50 +im[1573] = 0.0495 +ij[1573] = 3 +id[1574] = "2387-10-10T22:42:35" +ik[1574] = -1.903 +il[1574] = 68 +im[1574] = 0.1113 +ij[1574] = 2 +id[1575] = "2387-12-11T03:31:49" +ik[1575] = 27.205 +il[1575] = -131 +im[1575] = 0 +ij[1575] = 5 +id[1576] = "2388-04-01T01:00:54" +ik[1576] = 25.736 +il[1576] = 30 +im[1576] = 0 +ij[1576] = 6 +id[1577] = "2388-04-30T17:01:15" +ik[1577] = -1.555 +il[1577] = 72 +im[1577] = 0.0144 +ij[1577] = 4 +id[1578] = "2388-04-30T20:36:14" +ik[1578] = 37.104 +il[1578] = 20 +im[1578] = 0.0168 +ij[1578] = 1 +id[1579] = "2388-10-26T02:45:53" +ik[1579] = 28.256 +il[1579] = 68 +im[1579] = 0 +ij[1579] = 5 +id[1580] = "2389-02-19T16:26:49" +ik[1580] = 31.386 +il[1580] = 65 +im[1580] = 0 +ij[1580] = 6 +id[1581] = "2389-10-09T17:58:50" +ik[1581] = 27.644 +il[1581] = -28 +im[1581] = 0 +ij[1581] = 5 +id[1582] = "2389-11-10T18:54:09" +ik[1582] = -1.697 +il[1582] = -92 +im[1582] = 0.0251 +ij[1582] = 2 +id[1583] = "2389-11-16T07:46:07" +ik[1583] = 37.958 +il[1583] = 128 +im[1583] = 0.0928 +ij[1583] = 3 +id[1584] = "2390-01-29T23:30:54" +ik[1584] = 25.805 +il[1584] = 19 +im[1584] = 0 +ij[1584] = 6 +id[1585] = "2390-06-09T14:48:11" +ik[1585] = 38.407 +il[1585] = -41 +im[1585] = 0.0637 +ij[1585] = 1 +id[1586] = "2390-06-14T13:36:50" +ik[1586] = -1.624 +il[1586] = 25 +im[1586] = 0.0979 +ij[1586] = 4 +id[1587] = "2390-08-24T11:54:48" +ik[1587] = 27.729 +il[1587] = -118 +im[1587] = 0 +ij[1587] = 5 +id[1588] = "2390-12-18T13:51:53" +ik[1588] = 31.062 +il[1588] = 43 +im[1588] = 0 +ij[1588] = 6 +id[1589] = "2391-08-09T04:18:54" +ik[1589] = 28.128 +il[1589] = 134 +im[1589] = 0 +ij[1589] = 5 +id[1590] = "2391-11-29T19:39:47" +ik[1590] = 25.929 +il[1590] = 42 +im[1590] = 0 +ij[1590] = 6 +id[1591] = "2391-12-16T04:55:04" +ik[1591] = -1.594 +il[1591] = -67 +im[1591] = 0.0771 +ij[1591] = 2 +id[1592] = "2391-12-25T22:43:06" +ik[1592] = 36.313 +il[1592] = 120 +im[1592] = 0.1042 +ij[1592] = 3 +id[1593] = "2392-06-22T04:09:50" +ik[1593] = 27.255 +il[1593] = -47 +im[1593] = 0 +ij[1593] = 5 +id[1594] = "2392-07-21T05:07:09" +ik[1594] = 41.263 +il[1594] = -7 +im[1594] = 0.1155 +ij[1594] = 1 +id[1595] = "2392-07-25T16:53:18" +ik[1595] = -1.822 +il[1595] = -140 +im[1595] = 0.0426 +ij[1595] = 4 +id[1596] = "2392-10-15T17:02:49" +ik[1596] = 30.638 +il[1596] = -62 +im[1596] = 0 +ij[1596] = 6 +id[1597] = "2393-06-07T09:56:52" +ik[1597] = 28.651 +il[1597] = 4 +im[1597] = 0 +ij[1597] = 5 +id[1598] = "2393-09-28T12:45:47" +ik[1598] = 26.108 +il[1598] = 115 +im[1598] = 0 +ij[1598] = 6 +id[1599] = "2394-01-28T23:22:38" +ik[1599] = -1.596 +il[1599] = -81 +im[1599] = 0.0659 +ij[1599] = 2 +id[1600] = "2394-02-03T12:08:12" +ik[1600] = 36.509 +il[1600] = 140 +im[1600] = 0.0954 +ij[1600] = 3 +id[1601] = "2394-04-21T02:59:51" +ik[1601] = 26.839 +il[1601] = -73 +im[1601] = 0 +ij[1601] = 5 +id[1602] = "2394-08-14T02:02:49" +ik[1602] = 30.149 +il[1602] = 108 +im[1602] = 0 +ij[1602] = 6 +id[1603] = "2394-08-26T12:35:32" +ik[1603] = -2.128 +il[1603] = 71 +im[1603] = 0.1493 +ij[1603] = 4 +id[1604] = "2394-09-06T02:19:06" +ik[1604] = 45.059 +il[1604] = -31 +im[1604] = 0.0649 +ij[1604] = 1 +id[1605] = "2395-04-06T10:24:48" +ik[1605] = 29.2 +il[1605] = -50 +im[1605] = 0 +ij[1605] = 5 +id[1606] = "2395-07-29T02:07:52" +ik[1606] = 26.343 +il[1606] = -127 +im[1606] = 0 +ij[1606] = 6 +id[1607] = "2396-02-18T07:43:49" +ik[1607] = 26.484 +il[1607] = 175 +im[1607] = 0 +ij[1607] = 5 +id[1608] = "2396-03-24T07:44:06" +ik[1608] = 38.947 +il[1608] = 147 +im[1608] = 0.1398 +ij[1608] = 3 +id[1609] = "2396-04-05T01:00:27" +ik[1609] = -1.774 +il[1609] = -1 +im[1609] = 0.1027 +ij[1609] = 2 +id[1610] = "2396-06-11T16:46:50" +ik[1610] = 29.627 +il[1610] = -165 +im[1610] = 0 +ij[1610] = 6 +id[1611] = "2396-10-02T02:34:40" +ik[1611] = -2.374 +il[1611] = 71 +im[1611] = 0.1926 +ij[1611] = 4 +id[1612] = "2396-10-26T14:47:11" +ik[1612] = 45.921 +il[1612] = 129 +im[1612] = 0.0581 +ij[1612] = 1 +id[1613] = "2397-02-02T05:20:49" +ik[1613] = 29.761 +il[1613] = -24 +im[1613] = 0 +ij[1613] = 5 +id[1614] = "2397-05-27T11:02:49" +ik[1614] = 26.635 +il[1614] = 65 +im[1614] = 0 +ij[1614] = 6 +id[1615] = "2397-12-17T17:37:49" +ik[1615] = 26.188 +il[1615] = -13 +im[1615] = 0 +ij[1615] = 5 +id[1616] = "2398-04-10T13:06:48" +ik[1616] = 29.096 +il[1616] = -160 +im[1616] = 0 +ij[1616] = 6 +id[1617] = "2398-06-02T09:00:08" +ik[1617] = 44.473 +il[1617] = -105 +im[1617] = 0.1555 +ij[1617] = 3 +id[1618] = "2398-07-03T00:01:48" +ik[1618] = -2.278 +il[1618] = -38 +im[1618] = 0.1418 +ij[1618] = 2 +id[1619] = "2398-12-01T18:30:48" +ik[1619] = 30.311 +il[1619] = 85 +im[1619] = 0 +ij[1619] = 5 +id[1620] = "2398-12-13T00:42:42" +ik[1620] = -2.065 +il[1620] = -85 +im[1620] = 0.1747 +ij[1620] = 4 +id[1621] = "2399-01-04T19:48:08" +ik[1621] = 41.29 +il[1621] = -154 +im[1621] = 0.1158 +ij[1621] = 1 +id[1622] = "2399-03-26T14:43:43" +ik[1622] = 26.985 +il[1622] = -34 +im[1622] = 0 +ij[1622] = 6 +id[1623] = "2399-10-17T07:57:47" +ik[1623] = 25.952 +il[1623] = 94 +im[1623] = 0 +ij[1623] = 5 +id[1624] = "2400-02-07T14:45:44" +ik[1624] = 28.577 +il[1624] = 128 +im[1624] = 0 +ij[1624] = 6 +id[1625] = "2400-07-29T22:16:01" +ik[1625] = 47.237 +il[1625] = 93 +im[1625] = 0.0273 +ij[1625] = 3 +id[1626] = "2400-08-26T06:49:50" +ik[1626] = -2.319 +il[1626] = -127 +im[1626] = 0.0282 +ij[1626] = 2 +id[1627] = "2400-09-29T01:49:43" +ik[1627] = 30.821 +il[1627] = -80 +im[1627] = 0 +ij[1627] = 5 +id[1628] = "2401-01-22T12:27:47" +ik[1628] = 27.391 +il[1628] = -43 +im[1628] = 0 +ij[1628] = 6 +id[1629] = "2401-02-20T06:21:23" +ik[1629] = -1.705 +il[1629] = -41 +im[1629] = 0.0577 +ij[1629] = 4 +id[1630] = "2401-03-02T19:07:06" +ik[1630] = 38.01 +il[1630] = -133 +im[1630] = 0.1048 +ij[1630] = 1 +id[1631] = "2401-08-16T01:58:48" +ik[1631] = 25.774 +il[1631] = 146 +im[1631] = 0 +ij[1631] = 5 +id[1632] = "2401-12-06T21:18:43" +ik[1632] = 28.085 +il[1632] = -15 +im[1632] = 0 +ij[1632] = 6 +id[1633] = "2402-07-28T03:20:44" +ik[1633] = 31.257 +il[1633] = -162 +im[1633] = 0 +ij[1633] = 5 +id[1634] = "2402-09-14T19:56:03" +ik[1634] = 43.348 +il[1634] = 67 +im[1634] = 0.1126 +ij[1634] = 3 +id[1635] = "2402-09-28T21:44:04" +ik[1635] = -2.012 +il[1635] = 178 +im[1635] = 0.125 +ij[1635] = 2 +id[1636] = "2402-11-21T03:36:43" +ik[1636] = 27.851 +il[1636] = 44 +im[1636] = 0 +ij[1636] = 6 +id[1637] = "2403-04-13T13:54:45" +ik[1637] = -1.566 +il[1637] = 163 +im[1637] = 0.0358 +ij[1637] = 4 +id[1638] = "2403-04-16T04:00:02" +ik[1638] = 37.018 +il[1638] = -24 +im[1638] = 0.0328 +ij[1638] = 1 +id[1639] = "2403-06-15T22:58:48" +ik[1639] = 25.654 +il[1639] = 155 +im[1639] = 0 +ij[1639] = 5 +id[1640] = "2403-10-06T08:15:47" +ik[1640] = 27.63 +il[1640] = 138 +im[1640] = 0 +ij[1640] = 6 +id[1641] = "2404-05-24T23:12:46" +ik[1641] = 31.582 +il[1641] = -161 +im[1641] = 0 +ij[1641] = 5 +id[1642] = "2404-09-18T11:37:40" +ik[1642] = 28.36 +il[1642] = -125 +im[1642] = 0 +ij[1642] = 6 +id[1643] = "2404-10-29T04:11:39" +ik[1643] = -1.765 +il[1643] = -140 +im[1643] = 0.0499 +ij[1643] = 2 +id[1644] = "2404-10-30T20:01:58" +ik[1644] = 39.118 +il[1644] = -2 +im[1644] = 0.081 +ij[1644] = 3 +id[1645] = "2405-04-14T22:16:45" +ik[1645] = 25.59 +il[1645] = 129 +im[1645] = 0 +ij[1645] = 5 +id[1646] = "2405-05-25T01:24:05" +ik[1646] = 37.712 +il[1646] = -136 +im[1646] = 0.0681 +ij[1646] = 1 +id[1647] = "2405-05-28T05:54:46" +ik[1647] = -1.581 +il[1647] = -173 +im[1647] = 0.0998 +ij[1647] = 4 +id[1648] = "2405-08-04T23:05:42" +ik[1648] = 27.217 +il[1648] = -126 +im[1648] = 0 +ij[1648] = 6 +id[1649] = "2406-03-22T13:42:40" +ik[1649] = 31.762 +il[1649] = -81 +im[1649] = 0 +ij[1649] = 5 +id[1650] = "2406-07-17T12:18:43" +ik[1650] = 28.907 +il[1650] = 172 +im[1650] = 0 +ij[1650] = 6 +id[1651] = "2406-12-01T18:18:47" +ik[1651] = -1.623 +il[1651] = 166 +im[1651] = 0.0389 +ij[1651] = 2 +id[1652] = "2406-12-10T18:46:04" +ik[1652] = 36.739 +il[1652] = -114 +im[1652] = 0.1131 +ij[1652] = 3 +id[1653] = "2407-02-12T23:14:38" +ik[1653] = 25.581 +il[1653] = 79 +im[1653] = 0 +ij[1653] = 5 +id[1654] = "2407-06-04T17:13:37" +ik[1654] = 26.852 +il[1654] = -78 +im[1654] = 0 +ij[1654] = 6 +id[1655] = "2407-07-05T01:34:01" +ik[1655] = 39.963 +il[1655] = 92 +im[1655] = 0.1046 +ij[1655] = 1 +id[1656] = "2407-07-11T05:05:01" +ik[1656] = -1.729 +il[1656] = 99 +im[1656] = 0.0153 +ij[1656] = 4 +id[1657] = "2408-01-17T23:18:40" +ik[1657] = 31.773 +il[1657] = 71 +im[1657] = 0 +ij[1657] = 5 +id[1658] = "2408-05-14T05:52:39" +ik[1658] = 29.477 +il[1658] = -147 +im[1658] = 0 +ij[1658] = 6 +id[1659] = "2408-12-13T01:14:44" +ik[1659] = 25.626 +il[1659] = 13 +im[1659] = 0 +ij[1659] = 5 +id[1660] = "2409-01-09T19:14:48" +ik[1660] = -1.581 +il[1660] = 11 +im[1660] = 0.0099 +ij[1660] = 2 +id[1661] = "2409-01-18T04:30:00" +ik[1661] = 36.204 +il[1661] = -47 +im[1661] = 0.1091 +ij[1661] = 3 +id[1662] = "2409-04-03T14:04:42" +ik[1662] = 26.537 +il[1662] = -69 +im[1662] = 0 +ij[1662] = 6 +id[1663] = "2409-08-15T01:28:08" +ik[1663] = -1.999 +il[1663] = -22 +im[1663] = 0.0807 +ij[1663] = 4 +id[1664] = "2409-08-18T13:45:59" +ik[1664] = 43.596 +il[1664] = -172 +im[1664] = 0.0215 +ij[1664] = 1 +id[1665] = "2409-11-14T04:59:39" +ik[1665] = 31.608 +il[1665] = -78 +im[1665] = 0 +ij[1665] = 5 +id[1666] = "2410-03-11T17:06:43" +ik[1666] = 30.044 +il[1666] = -15 +im[1666] = 0 +ij[1666] = 6 +id[1667] = "2410-10-13T03:38:35" +ik[1667] = 25.725 +il[1667] = -58 +im[1667] = 0 +ij[1667] = 5 +id[1668] = "2411-02-01T13:02:38" +ik[1668] = 26.272 +il[1668] = -91 +im[1668] = 0 +ij[1668] = 6 +id[1669] = "2411-03-04T01:05:57" +ik[1669] = 37.664 +il[1669] = -99 +im[1669] = 0.0328 +ij[1669] = 3 +id[1670] = "2411-03-07T03:44:09" +ik[1670] = -1.672 +il[1670] = -109 +im[1670] = 0.101 +ij[1670] = 2 +id[1671] = "2411-09-11T08:15:38" +ik[1671] = 31.282 +il[1671] = 169 +im[1671] = 0 +ij[1671] = 5 +id[1672] = "2411-09-15T18:13:30" +ik[1672] = -2.314 +il[1672] = -124 +im[1672] = 0.1353 +ij[1672] = 4 +id[1673] = "2411-10-05T21:41:02" +ik[1673] = 46.355 +il[1673] = 22 +im[1673] = 0.1235 +ij[1673] = 1 +id[1674] = "2412-01-06T23:31:37" +ik[1674] = 30.576 +il[1674] = -174 +im[1674] = 0 +ij[1674] = 6 +id[1675] = "2412-08-12T05:51:38" +ik[1675] = 25.879 +il[1675] = -127 +im[1675] = 0 +ij[1675] = 5 +id[1676] = "2412-12-01T13:32:35" +ik[1676] = 26.058 +il[1676] = -134 +im[1676] = 0 +ij[1676] = 6 +id[1677] = "2413-05-03T21:40:53" +ik[1677] = 41.989 +il[1677] = 2 +im[1677] = 0.1017 +ij[1677] = 3 +id[1678] = "2413-05-30T02:36:37" +ik[1678] = -2.061 +il[1678] = 176 +im[1678] = 0.183 +ij[1678] = 2 +id[1679] = "2413-07-08T11:15:38" +ik[1679] = 30.825 +il[1679] = 61 +im[1679] = 0 +ij[1679] = 5 +id[1680] = "2413-11-03T03:11:39" +ik[1680] = 31.034 +il[1680] = 66 +im[1680] = 0 +ij[1680] = 6 +id[1681] = "2413-11-11T05:58:24" +ik[1681] = -2.248 +il[1681] = 103 +im[1681] = 0.1897 +ij[1681] = 4 +id[1682] = "2413-12-07T18:46:56" +ik[1682] = 43.27 +il[1682] = 168 +im[1682] = 0.1524 +ij[1682] = 1 +id[1683] = "2414-06-12T07:16:36" +ik[1683] = 26.086 +il[1683] = 175 +im[1683] = 0 +ij[1683] = 5 +id[1684] = "2414-10-01T14:59:34" +ik[1684] = 25.896 +il[1684] = 169 +im[1684] = 0 +ij[1684] = 6 +id[1685] = "2415-05-05T16:23:39" +ik[1685] = 30.28 +il[1685] = -77 +im[1685] = 0 +ij[1685] = 5 +id[1686] = "2415-07-11T18:00:00" +ik[1686] = 47.202 +il[1686] = -177 +im[1686] = 0.0723 +ij[1686] = 3 +id[1687] = "2415-08-10T07:45:59" +ik[1687] = -2.391 +il[1687] = -96 +im[1687] = 0.056 +ij[1687] = 2 +id[1688] = "2415-08-31T06:30:40" +ik[1688] = 31.379 +il[1688] = -51 +im[1688] = 0 +ij[1688] = 6 +id[1689] = "2416-01-27T16:44:39" +ik[1689] = -1.816 +il[1689] = 149 +im[1689] = 0.1171 +ij[1689] = 4 +id[1690] = "2416-02-11T11:57:59" +ik[1690] = 38.973 +il[1690] = 3 +im[1690] = 0.1018 +ij[1690] = 1 +id[1691] = "2416-04-11T07:16:36" +ik[1691] = 26.347 +il[1691] = 138 +im[1691] = 0 +ij[1691] = 5 +id[1692] = "2416-07-31T16:48:34" +ik[1692] = 25.786 +il[1692] = 107 +im[1692] = 0 +ij[1692] = 6 +id[1693] = "2417-03-02T01:53:36" +ik[1693] = 29.687 +il[1693] = 82 +im[1693] = 0 +ij[1693] = 5 +id[1694] = "2417-06-27T11:43:35" +ik[1694] = 31.578 +il[1694] = 164 +im[1694] = 0 +ij[1694] = 6 +id[1695] = "2417-08-27T00:06:54" +ik[1695] = 45.213 +il[1695] = 31 +im[1695] = 0.1327 +ij[1695] = 3 +id[1696] = "2417-09-16T15:52:14" +ik[1696] = -2.133 +il[1696] = -3 +im[1696] = 0.0479 +ij[1696] = 2 +id[1697] = "2418-02-09T05:12:37" +ik[1697] = 26.662 +il[1697] = 132 +im[1697] = 0 +ij[1697] = 5 +id[1698] = "2418-03-25T11:52:14" +ik[1698] = -1.599 +il[1698] = -130 +im[1698] = 0.0903 +ij[1698] = 4 +id[1699] = "2418-03-30T19:48:51" +ik[1699] = 37.185 +il[1699] = 161 +im[1699] = 0.0301 +ij[1699] = 1 +id[1700] = "2418-05-31T18:23:36" +ik[1700] = 25.728 +il[1700] = 49 +im[1700] = 0 +ij[1700] = 6 +id[1701] = "2418-12-28T17:23:34" +ik[1701] = 29.084 +il[1701] = 154 +im[1701] = 0 +ij[1701] = 5 +id[1702] = "2419-04-24T20:33:30" +ik[1702] = 31.613 +il[1702] = -34 +im[1702] = 0 +ij[1702] = 6 +id[1703] = "2419-10-14T06:44:55" +ik[1703] = 40.579 +il[1703] = -120 +im[1703] = 0.0292 +ij[1703] = 3 +id[1704] = "2419-10-17T21:54:02" +ik[1704] = -1.849 +il[1704] = 48 +im[1704] = 0.0982 +ij[1704] = 2 +id[1705] = "2419-12-10T00:35:34" +ik[1705] = 27.029 +il[1705] = 162 +im[1705] = 0 +ij[1705] = 5 +id[1706] = "2420-03-30T19:09:33" +ik[1706] = 25.722 +il[1706] = 4 +im[1706] = 0 +ij[1706] = 6 +id[1707] = "2420-05-09T16:24:48" +ik[1707] = 37.254 +il[1707] = 66 +im[1707] = 0.0895 +ij[1707] = 1 +id[1708] = "2420-05-10T19:03:22" +ik[1708] = -1.559 +il[1708] = 37 +im[1708] = 0.102 +ij[1708] = 4 +id[1709] = "2420-10-25T15:57:36" +ik[1709] = 28.5 +il[1709] = 123 +im[1709] = 0 +ij[1709] = 5 +id[1710] = "2421-02-19T10:10:33" +ik[1710] = 31.487 +il[1710] = 57 +im[1710] = 0 +ij[1710] = 6 +id[1711] = "2421-10-08T16:39:30" +ik[1711] = 27.446 +il[1711] = -119 +im[1711] = 0 +ij[1711] = 5 +id[1712] = "2421-11-18T06:01:10" +ik[1712] = -1.666 +il[1712] = 73 +im[1712] = 0.0141 +ij[1712] = 2 +id[1713] = "2421-11-25T08:59:51" +ik[1713] = 37.444 +il[1713] = 97 +im[1713] = 0.1059 +ij[1713] = 3 +id[1714] = "2422-01-28T18:28:30" +ik[1714] = 25.768 +il[1714] = -19 +im[1714] = 0 +ij[1714] = 6 +id[1715] = "2422-06-18T16:12:51" +ik[1715] = 38.893 +il[1715] = -74 +im[1715] = 0.108 +ij[1715] = 1 +id[1716] = "2422-06-24T09:34:30" +ik[1716] = -1.656 +il[1716] = 81 +im[1716] = 0.0506 +ij[1716] = 4 +id[1717] = "2422-08-23T21:53:34" +ik[1717] = 27.953 +il[1717] = -15 +im[1717] = 0 +ij[1717] = 5 +id[1718] = "2422-12-18T05:08:35" +ik[1718] = 31.217 +il[1718] = 71 +im[1718] = 0 +ij[1718] = 6 +id[1719] = "2423-08-08T04:51:27" +ik[1719] = 27.912 +il[1719] = 16 +im[1719] = 0 +ij[1719] = 5 +id[1720] = "2423-11-28T15:43:29" +ik[1720] = 25.869 +il[1720] = -12 +im[1720] = 0 +ij[1720] = 6 +id[1721] = "2423-12-25T00:22:31" +ik[1721] = -1.585 +il[1721] = -14 +im[1721] = 0.0146 +ij[1721] = 2 +id[1722] = "2424-01-03T15:42:54" +ik[1722] = 36.196 +il[1722] = -151 +im[1722] = 0.1078 +ij[1722] = 3 +id[1723] = "2424-06-21T11:06:34" +ik[1723] = 27.455 +il[1723] = 100 +im[1723] = 0 +ij[1723] = 5 +id[1724] = "2424-07-31T07:51:53" +ik[1724] = 42.063 +il[1724] = -50 +im[1724] = 0.0431 +ij[1724] = 1 +id[1725] = "2424-08-02T16:38:31" +ik[1725] = -1.881 +il[1725] = -158 +im[1725] = 0.0173 +ij[1725] = 4 +id[1726] = "2424-10-15T05:48:28" +ik[1726] = 30.833 +il[1726] = 3 +im[1726] = 0 +ij[1726] = 6 +id[1727] = "2425-06-06T12:36:25" +ik[1727] = 28.419 +il[1727] = -144 +im[1727] = 0 +ij[1727] = 5 +id[1728] = "2425-09-27T10:14:26" +ik[1728] = 26.024 +il[1728] = 35 +im[1728] = 0 +ij[1728] = 6 +id[1729] = "2426-02-10T05:44:19" +ik[1729] = -1.614 +il[1729] = -160 +im[1729] = 0.1069 +ij[1729] = 2 +id[1730] = "2426-02-13T08:23:51" +ik[1730] = 36.817 +il[1730] = -171 +im[1730] = 0.0545 +ij[1730] = 3 +id[1731] = "2426-04-20T07:09:33" +ik[1731] = 27.013 +il[1731] = 115 +im[1731] = 0 +ij[1731] = 5 +id[1732] = "2426-08-13T12:15:33" +ik[1732] = 30.368 +il[1732] = -150 +im[1732] = 0 +ij[1732] = 6 +id[1733] = "2426-09-02T08:37:39" +ik[1733] = -2.199 +il[1733] = 99 +im[1733] = 0.1439 +ij[1733] = 4 +id[1734] = "2426-09-16T16:24:48" +ik[1734] = 45.719 +il[1734] = 122 +im[1734] = 0.1507 +ij[1734] = 1 +id[1735] = "2427-04-05T15:22:27" +ik[1735] = 28.958 +il[1735] = 128 +im[1735] = 0 +ij[1735] = 5 +id[1736] = "2427-07-28T01:19:29" +ik[1736] = 26.234 +il[1736] = 133 +im[1736] = 0 +ij[1736] = 6 +id[1737] = "2428-02-17T09:24:28" +ik[1737] = 26.631 +il[1737] = 39 +im[1737] = 0 +ij[1737] = 5 +id[1738] = "2428-04-06T20:30:46" +ik[1738] = 39.877 +il[1738] = -19 +im[1738] = 0.0057 +ij[1738] = 3 +id[1739] = "2428-04-24T00:21:40" +ik[1739] = -1.857 +il[1739] = 85 +im[1739] = 0.0687 +ij[1739] = 2 +id[1740] = "2428-06-11T00:30:31" +ik[1740] = 29.856 +il[1740] = -27 +im[1740] = 0 +ij[1740] = 6 +id[1741] = "2428-10-14T14:34:07" +ik[1741] = -2.363 +il[1741] = -85 +im[1741] = 0.1174 +ij[1741] = 4 +id[1742] = "2428-11-09T18:37:52" +ik[1742] = 45.183 +il[1742] = 111 +im[1742] = 0.1453 +ij[1742] = 1 +id[1743] = "2429-02-01T12:45:30" +ik[1743] = 29.516 +il[1743] = 118 +im[1743] = 0 +ij[1743] = 5 +id[1744] = "2429-05-26T12:16:24" +ik[1744] = 26.501 +il[1744] = -69 +im[1744] = 0 +ij[1744] = 6 +id[1745] = "2429-12-16T17:09:27" +ik[1745] = 26.309 +il[1745] = -117 +im[1745] = 0 +ij[1745] = 5 +id[1746] = "2430-04-09T18:27:30" +ik[1746] = 29.326 +il[1746] = 13 +im[1746] = 0 +ij[1746] = 6 +id[1747] = "2430-06-18T02:28:45" +ik[1747] = 45.746 +il[1747] = 42 +im[1747] = 0.1496 +ij[1747] = 3 +id[1748] = "2430-07-18T22:42:08" +ik[1748] = -2.357 +il[1748] = 35 +im[1748] = 0.2279 +ij[1748] = 2 +id[1749] = "2430-12-01T04:27:24" +ik[1749] = 30.074 +il[1749] = -169 +im[1749] = 0 +ij[1749] = 5 +id[1750] = "2430-12-30T11:16:49" +ik[1750] = -1.966 +il[1750] = -179 +im[1750] = 0.1693 +ij[1750] = 4 +id[1751] = "2431-01-19T08:47:45" +ik[1751] = 40.345 +il[1751] = 47 +im[1751] = 0.0643 +ij[1751] = 1 +id[1752] = "2431-03-25T18:18:25" +ik[1752] = 26.826 +il[1752] = 161 +im[1752] = 0 +ij[1752] = 6 +id[1753] = "2431-10-16T05:39:24" +ik[1753] = 26.047 +il[1753] = 17 +im[1753] = 0 +ij[1753] = 5 +id[1754] = "2432-02-06T17:50:29" +ik[1754] = 28.8 +il[1754] = -26 +im[1754] = 0 +ij[1754] = 6 +id[1755] = "2432-08-09T01:01:46" +ik[1755] = 46.732 +il[1755] = 52 +im[1755] = 0.104 +ij[1755] = 3 +id[1756] = "2432-09-03T13:34:37" +ik[1756] = -2.257 +il[1756] = 114 +im[1756] = 0.0277 +ij[1756] = 2 +id[1757] = "2432-09-28T14:19:23" +ik[1757] = 30.606 +il[1757] = -11 +im[1757] = 0 +ij[1757] = 5 +id[1758] = "2433-01-21T18:43:29" +ik[1758] = 27.208 +il[1758] = 113 +im[1758] = 0 +ij[1758] = 6 +id[1759] = "2433-03-04T21:10:37" +ik[1759] = -1.659 +il[1759] = 113 +im[1759] = 0.1109 +ij[1759] = 4 +id[1760] = "2433-03-13T09:30:48" +ik[1760] = 37.63 +il[1760] = 8 +im[1760] = 0.0276 +ij[1760] = 1 +id[1761] = "2433-08-14T22:09:24" +ik[1761] = 25.844 +il[1761] = 90 +im[1761] = 0 +ij[1761] = 5 +id[1762] = "2433-12-05T22:19:29" +ik[1762] = 28.294 +il[1762] = -139 +im[1762] = 0 +ij[1762] = 6 +id[1763] = "2434-07-27T18:20:26" +ik[1763] = 31.079 +il[1763] = -129 +im[1763] = 0 +ij[1763] = 5 +id[1764] = "2434-09-25T16:06:48" +ik[1764] = 42.311 +il[1764] = 131 +im[1764] = 0.0377 +ij[1764] = 3 +id[1765] = "2434-10-05T20:24:25" +ik[1765] = -1.95 +il[1765] = 166 +im[1765] = 0.1057 +ij[1765] = 2 +id[1766] = "2434-11-20T12:48:23" +ik[1766] = 27.645 +il[1766] = 158 +im[1766] = 0 +ij[1766] = 6 +id[1767] = "2435-04-23T23:58:38" +ik[1767] = -1.557 +il[1767] = 9 +im[1767] = 0.0686 +ij[1767] = 4 +id[1768] = "2435-04-25T04:41:48" +ik[1768] = 37.034 +il[1768] = -51 +im[1768] = 0.0876 +ij[1768] = 1 +id[1769] = "2435-06-14T17:56:24" +ik[1769] = 25.699 +il[1769] = 118 +im[1769] = 0 +ij[1769] = 5 +id[1770] = "2435-10-05T07:25:23" +ik[1770] = 27.822 +il[1770] = 40 +im[1770] = 0 +ij[1770] = 6 +id[1771] = "2436-05-24T16:38:21" +ik[1771] = 31.457 +il[1771] = -164 +im[1771] = 0 +ij[1771] = 5 +id[1772] = "2436-09-17T23:58:24" +ik[1772] = 28.134 +il[1772] = -57 +im[1772] = 0 +ij[1772] = 6 +id[1773] = "2436-11-05T08:59:06" +ik[1773] = -1.726 +il[1773] = 117 +im[1773] = 0.0497 +ij[1773] = 2 +id[1774] = "2436-11-09T08:46:45" +ik[1774] = 38.438 +il[1774] = 159 +im[1774] = 0.1014 +ij[1774] = 3 +id[1775] = "2437-04-13T16:20:21" +ik[1775] = 25.61 +il[1775] = 106 +im[1775] = 0 +ij[1775] = 5 +id[1776] = "2437-06-02T21:55:43" +ik[1776] = 38.065 +il[1776] = -99 +im[1776] = 0.1124 +ij[1776] = 1 +id[1777] = "2437-06-07T03:33:46" +ik[1777] = -1.602 +il[1777] = -143 +im[1777] = 0.0873 +ij[1777] = 4 +id[1778] = "2437-08-03T20:38:24" +ik[1778] = 27.39 +il[1778] = 160 +im[1778] = 0 +ij[1778] = 6 +id[1779] = "2438-03-22T09:25:20" +ik[1779] = 31.704 +il[1779] = -117 +im[1779] = 0 +ij[1779] = 5 +id[1780] = "2438-07-17T03:51:24" +ik[1780] = 28.666 +il[1780] = -166 +im[1780] = 0 +ij[1780] = 6 +id[1781] = "2438-12-09T21:20:27" +ik[1781] = -1.605 +il[1781] = 99 +im[1781] = 0.0231 +ij[1781] = 2 +id[1782] = "2438-12-19T11:12:46" +ik[1782] = 36.469 +il[1782] = -17 +im[1782] = 0.0896 +ij[1782] = 3 +id[1783] = "2439-02-11T16:39:21" +ik[1783] = 25.577 +il[1783] = 65 +im[1783] = 0 +ij[1783] = 5 +id[1784] = "2439-06-03T13:25:23" +ik[1784] = 27.005 +il[1784] = -132 +im[1784] = 0 +ij[1784] = 6 +id[1785] = "2439-07-14T17:38:41" +ik[1785] = 40.653 +il[1785] = -155 +im[1785] = 0.0934 +ij[1785] = 1 +id[1786] = "2439-07-20T07:51:34" +ik[1786] = -1.778 +il[1786] = 46 +im[1786] = 0.0295 +ij[1786] = 4 +id[1787] = "2440-01-17T21:04:19" +ik[1787] = 31.79 +il[1787] = 5 +im[1787] = 0 +ij[1787] = 5 +id[1788] = "2440-05-14T00:26:21" +ik[1788] = 29.228 +il[1788] = -169 +im[1788] = 0 +ij[1788] = 6 +id[1789] = "2440-12-11T18:17:16" +ik[1789] = 25.599 +il[1789] = 5 +im[1789] = 0 +ij[1789] = 5 +id[1790] = "2441-01-20T07:59:35" +ik[1790] = -1.586 +il[1790] = -180 +im[1790] = 0.084 +ij[1790] = 2 +id[1791] = "2441-01-27T08:54:40" +ik[1791] = 36.333 +il[1791] = -126 +im[1791] = 0.0655 +ij[1791] = 3 +id[1792] = "2441-04-02T09:10:22" +ik[1792] = 26.667 +il[1792] = -107 +im[1792] = 0 +ij[1792] = 6 +id[1793] = "2441-08-21T17:02:42" +ik[1793] = -2.069 +il[1793] = 70 +im[1793] = 0.0811 +ij[1793] = 4 +id[1794] = "2441-08-29T02:17:39" +ik[1794] = 44.431 +il[1794] = 3 +im[1794] = 0.104 +ij[1794] = 1 +id[1795] = "2441-11-14T04:17:19" +ik[1795] = 31.702 +il[1795] = -168 +im[1795] = 0 +ij[1795] = 5 +id[1796] = "2442-03-11T14:16:22" +ik[1796] = 29.8 +il[1796] = -74 +im[1796] = 0 +ij[1796] = 6 +id[1797] = "2442-10-11T20:36:23" +ik[1797] = 25.675 +il[1797] = -66 +im[1797] = 0 +ij[1797] = 5 +id[1798] = "2443-01-31T07:17:19" +ik[1798] = 26.38 +il[1798] = -117 +im[1798] = 0 +ij[1798] = 6 +id[1799] = "2443-03-15T17:06:43" +ik[1799] = 38.313 +il[1799] = 30 +im[1799] = 0.1221 +ij[1799] = 3 +id[1800] = "2443-03-23T07:38:16" +ik[1800] = -1.721 +il[1800] = -116 +im[1800] = 0.0165 +ij[1800] = 2 +id[1801] = "2443-09-11T08:21:15" +ik[1801] = 31.443 +il[1801] = 67 +im[1801] = 0 +ij[1801] = 5 +id[1802] = "2443-09-24T23:42:43" +ik[1802] = -2.358 +il[1802] = 145 +im[1802] = 0.1807 +ij[1802] = 4 +id[1803] = "2443-10-17T17:33:38" +ik[1803] = 46.267 +il[1803] = 102 +im[1803] = 0.0344 +ij[1803] = 1 +id[1804] = "2444-01-06T22:33:18" +ik[1804] = 30.352 +il[1804] = 100 +im[1804] = 0 +ij[1804] = 6 +id[1805] = "2444-08-10T22:58:22" +ik[1805] = 25.805 +il[1805] = -137 +im[1805] = 0 +ij[1805] = 5 +id[1806] = "2444-11-30T07:12:17" +ik[1806] = 26.144 +il[1806] = -152 +im[1806] = 0 +ij[1806] = 6 +id[1807] = "2445-05-20T11:16:39" +ik[1807] = 43.351 +il[1807] = -147 +im[1807] = 0.1498 +ij[1807] = 3 +id[1808] = "2445-06-18T20:46:44" +ik[1808] = -2.187 +il[1808] = -10 +im[1808] = 0.2014 +ij[1808] = 2 +id[1809] = "2445-07-08T11:11:19" +ik[1809] = 31.039 +il[1809] = -39 +im[1809] = 0 +ij[1809] = 5 +id[1810] = "2445-11-03T03:07:20" +ik[1810] = 30.847 +il[1810] = -33 +im[1810] = 0 +ij[1810] = 6 +id[1811] = "2445-11-28T23:37:25" +ik[1811] = -2.149 +il[1811] = -90 +im[1811] = 0.1602 +ij[1811] = 4 +id[1812] = "2445-12-23T20:27:36" +ik[1812] = 42.146 +il[1812] = -164 +im[1812] = 0.0337 +ij[1812] = 1 +id[1813] = "2446-06-11T00:49:14" +ik[1813] = 25.989 +il[1813] = 160 +im[1813] = 0 +ij[1813] = 5 +id[1814] = "2446-09-30T08:19:14" +ik[1814] = 25.96 +il[1814] = 156 +im[1814] = 0 +ij[1814] = 6 +id[1815] = "2447-05-05T15:05:19" +ik[1815] = 30.526 +il[1815] = -159 +im[1815] = 0 +ij[1815] = 5 +id[1816] = "2447-07-23T00:06:37" +ik[1816] = 47.392 +il[1816] = 100 +im[1816] = 0.0521 +ij[1816] = 3 +id[1817] = "2447-08-20T11:44:33" +ik[1817] = -2.36 +il[1817] = -156 +im[1817] = 0.0615 +ij[1817] = 2 +id[1818] = "2447-08-31T06:17:16" +ik[1818] = 31.246 +il[1818] = -147 +im[1818] = 0 +ij[1818] = 6 +id[1819] = "2448-02-10T23:22:20" +ik[1819] = -1.75 +il[1819] = 82 +im[1819] = 0.0532 +ij[1819] = 4 +id[1820] = "2448-02-23T07:32:35" +ik[1820] = 38.395 +il[1820] = 76 +im[1820] = 0.1091 +ij[1820] = 1 +id[1821] = "2448-04-10T01:31:17" +ik[1821] = 26.226 +il[1821] = 113 +im[1821] = 0 +ij[1821] = 5 +id[1822] = "2448-07-30T10:03:12" +ik[1822] = 25.827 +il[1822] = 95 +im[1822] = 0 +ij[1822] = 6 +id[1823] = "2449-03-01T22:22:13" +ik[1823] = 29.949 +il[1823] = 32 +im[1823] = 0 +ij[1823] = 5 +id[1824] = "2449-06-27T10:25:14" +ik[1824] = 31.511 +il[1824] = 85 +im[1824] = 0 +ij[1824] = 6 +id[1825] = "2449-09-06T14:57:33" +ik[1825] = 44.197 +il[1825] = 174 +im[1825] = 0.0894 +ij[1825] = 3 +id[1826] = "2449-09-23T18:26:21" +ik[1826] = -2.065 +il[1826] = -71 +im[1826] = 0.0529 +ij[1826] = 2 +id[1827] = "2450-02-08T00:27:12" +ik[1827] = 26.517 +il[1827] = 91 +im[1827] = 0 +ij[1827] = 5 +id[1828] = "2450-04-05T11:58:48" +ik[1828] = -1.578 +il[1828] = -130 +im[1828] = 0.0113 +ij[1828] = 4 +id[1829] = "2450-04-09T06:17:34" +ik[1829] = 37.059 +il[1829] = -9 +im[1829] = 0.0726 +ij[1829] = 1 +id[1830] = "2450-05-30T11:48:11" +ik[1830] = 25.746 +il[1830] = 35 +im[1830] = 0 +ij[1830] = 6 +id[1831] = "2450-12-28T11:08:18" +ik[1831] = 29.347 +il[1831] = 143 +im[1831] = 0 +ij[1831] = 5 +id[1832] = "2451-04-24T17:30:11" +ik[1832] = 31.619 +il[1832] = -88 +im[1832] = 0 +ij[1832] = 6 +id[1833] = "2451-10-24T10:11:34" +ik[1833] = 39.734 +il[1833] = -173 +im[1833] = 0.1088 +ij[1833] = 3 +id[1834] = "2451-10-24T22:31:42" +ik[1834] = -1.801 +il[1834] = 7 +im[1834] = 0.112 +ij[1834] = 2 +id[1835] = "2451-12-08T21:01:17" +ik[1835] = 26.862 +il[1835] = 105 +im[1835] = 0 +ij[1835] = 5 +id[1836] = "2452-03-29T13:00:11" +ik[1836] = 25.718 +il[1836] = -17 +im[1836] = 0 +ij[1836] = 6 +id[1837] = "2452-05-18T11:22:33" +ik[1837] = 37.476 +il[1837] = 124 +im[1837] = 0.1029 +ij[1837] = 1 +id[1838] = "2452-05-20T18:45:02" +ik[1838] = -1.568 +il[1838] = 36 +im[1838] = 0.0973 +ij[1838] = 4 +id[1839] = "2452-10-25T06:33:15" +ik[1839] = 28.751 +il[1839] = 158 +im[1839] = 0 +ij[1839] = 5 +id[1840] = "2453-02-19T04:55:12" +ik[1840] = 31.562 +il[1840] = 36 +im[1840] = 0 +ij[1840] = 6 +id[1841] = "2453-10-07T14:36:14" +ik[1841] = 27.258 +il[1841] = 161 +im[1841] = 0 +ij[1841] = 5 +id[1842] = "2453-11-25T21:40:10" +ik[1842] = -1.64 +il[1842] = 172 +im[1842] = 0.0237 +ij[1842] = 2 +id[1843] = "2453-12-04T05:45:36" +ik[1843] = 37.018 +il[1843] = 131 +im[1843] = 0.0828 +ij[1843] = 3 +id[1844] = "2454-01-27T13:02:12" +ik[1844] = 25.741 +il[1844] = -51 +im[1844] = 0 +ij[1844] = 6 +id[1845] = "2454-06-27T22:45:33" +ik[1845] = 39.453 +il[1845] = 177 +im[1845] = 0.1039 +ij[1845] = 1 +id[1846] = "2454-07-04T02:41:30" +ik[1846] = -1.694 +il[1846] = 178 +im[1846] = 0.0247 +ij[1846] = 4 +id[1847] = "2454-08-23T09:15:15" +ik[1847] = 28.185 +il[1847] = 67 +im[1847] = 0 +ij[1847] = 5 +id[1848] = "2454-12-17T21:30:14" +ik[1848] = 31.351 +il[1848] = 84 +im[1848] = 0 +ij[1848] = 6 +id[1849] = "2455-08-07T04:34:10" +ik[1849] = 27.703 +il[1849] = -89 +im[1849] = 0 +ij[1849] = 5 +id[1850] = "2455-11-27T11:16:13" +ik[1850] = 25.818 +il[1850] = -55 +im[1850] = 0 +ij[1850] = 6 +id[1851] = "2456-01-03T07:56:11" +ik[1851] = -1.58 +il[1851] = -138 +im[1851] = 0.0357 +ij[1851] = 2 +id[1852] = "2456-01-12T11:10:36" +ik[1852] = 36.164 +il[1852] = -99 +im[1852] = 0.054 +ij[1852] = 3 +id[1853] = "2456-06-20T19:20:12" +ik[1853] = 27.665 +il[1853] = -133 +im[1853] = 0 +ij[1853] = 5 +id[1854] = "2456-08-10T00:59:18" +ik[1854] = -1.944 +il[1854] = 48 +im[1854] = 0.0214 +ij[1854] = 4 +id[1855] = "2456-08-10T15:32:32" +ik[1855] = 42.903 +il[1855] = -164 +im[1855] = 0.0367 +ij[1855] = 1 +id[1856] = "2456-10-14T19:40:13" +ik[1856] = 31.012 +il[1856] = 51 +im[1856] = 0 +ij[1856] = 6 +id[1857] = "2457-06-05T14:19:06" +ik[1857] = 28.193 +il[1857] = 81 +im[1857] = 0 +ij[1857] = 5 +id[1858] = "2457-09-26T07:03:12" +ik[1858] = 25.949 +il[1858] = -30 +im[1858] = 0 +ij[1858] = 6 +id[1859] = "2458-02-23T17:07:35" +ik[1859] = 37.236 +il[1859] = 56 +im[1859] = 0.0758 +ij[1859] = 3 +id[1860] = "2458-02-23T17:36:39" +ik[1860] = -1.641 +il[1860] = 49 +im[1860] = 0.0762 +ij[1860] = 2 +id[1861] = "2458-04-19T12:29:13" +ik[1861] = 27.198 +il[1861] = -75 +im[1861] = 0 +ij[1861] = 5 +id[1862] = "2458-08-12T23:35:05" +ik[1862] = 30.577 +il[1862] = -64 +im[1862] = 0 +ij[1862] = 6 +id[1863] = "2458-09-09T17:13:33" +ik[1863] = -2.267 +il[1863] = -57 +im[1863] = 0.1719 +ij[1863] = 4 +id[1864] = "2458-09-27T10:26:32" +ik[1864] = 46.182 +il[1864] = -141 +im[1864] = 0.0766 +ij[1864] = 1 +id[1865] = "2459-04-04T19:19:12" +ik[1865] = 28.719 +il[1865] = -39 +im[1865] = 0 +ij[1865] = 5 +id[1866] = "2459-07-26T23:43:09" +ik[1866] = 26.136 +il[1866] = 44 +im[1866] = 0 +ij[1866] = 6 +id[1867] = "2460-02-16T12:07:12" +ik[1867] = 26.79 +il[1867] = -112 +im[1867] = 0 +ij[1867] = 5 +id[1868] = "2460-04-21T14:47:28" +ik[1868] = 40.977 +il[1868] = 104 +im[1868] = 0.1409 +ij[1868] = 3 +id[1869] = "2460-05-14T02:43:20" +ik[1869] = -1.963 +il[1869] = 138 +im[1869] = 0.069 +ij[1869] = 2 +id[1870] = "2460-06-10T09:15:07" +ik[1870] = 30.082 +il[1870] = 96 +im[1870] = 0 +ij[1870] = 6 +id[1871] = "2460-10-29T08:11:21" +ik[1871] = -2.313 +il[1871] = 57 +im[1871] = 0.1745 +ij[1871] = 4 +id[1872] = "2460-11-25T05:59:34" +ik[1872] = 44.181 +il[1872] = -8 +im[1872] = 0.0963 +ij[1872] = 1 +id[1873] = "2461-01-31T19:06:05" +ik[1873] = 29.272 +il[1873] = -83 +im[1873] = 0 +ij[1873] = 5 +id[1874] = "2461-05-25T12:34:07" +ik[1874] = 26.378 +il[1874] = 175 +im[1874] = 0 +ij[1874] = 6 +id[1875] = "2461-12-15T17:34:04" +ik[1875] = 26.441 +il[1875] = 126 +im[1875] = 0 +ij[1875] = 5 +id[1876] = "2462-04-09T00:49:06" +ik[1876] = 29.557 +il[1876] = 171 +im[1876] = 0 +ij[1876] = 6 +id[1877] = "2462-07-02T04:13:26" +ik[1877] = 46.72 +il[1877] = 50 +im[1877] = 0.0842 +ij[1877] = 3 +id[1878] = "2462-08-01T11:00:15" +ik[1878] = -2.393 +il[1878] = -119 +im[1878] = 0.0194 +ij[1878] = 2 +id[1879] = "2462-11-30T13:18:02" +ik[1879] = 29.833 +il[1879] = -47 +im[1879] = 0 +ij[1879] = 5 +id[1880] = "2463-01-15T20:14:56" +ik[1880] = -1.878 +il[1880] = 99 +im[1880] = 0.0639 +ij[1880] = 4 +id[1881] = "2463-02-01T20:21:24" +ik[1881] = 39.534 +il[1881] = -101 +im[1881] = 0.1054 +ij[1881] = 1 +id[1882] = "2463-03-24T20:50:03" +ik[1882] = 26.678 +il[1882] = 12 +im[1882] = 0 +ij[1882] = 6 +id[1883] = "2463-10-15T04:06:05" +ik[1883] = 26.153 +il[1883] = -72 +im[1883] = 0 +ij[1883] = 5 +id[1884] = "2464-02-05T21:53:08" +ik[1884] = 29.026 +il[1884] = 166 +im[1884] = 0 +ij[1884] = 6 +id[1885] = "2464-08-19T04:02:29" +ik[1885] = 45.965 +il[1885] = 7 +im[1885] = 0.1285 +ij[1885] = 3 +id[1886] = "2464-09-11T05:58:57" +ik[1886] = -2.189 +il[1886] = -155 +im[1886] = 0.0708 +ij[1886] = 2 +id[1887] = "2464-09-28T01:42:05" +ik[1887] = 30.38 +il[1887] = 74 +im[1887] = 0 +ij[1887] = 5 +id[1888] = "2465-01-20T23:47:02" +ik[1888] = 27.035 +il[1888] = -73 +im[1888] = 0 +ij[1888] = 6 +id[1889] = "2465-03-16T19:20:44" +ik[1889] = -1.623 +il[1889] = 150 +im[1889] = 0.0965 +ij[1889] = 4 +id[1890] = "2465-03-23T11:52:30" +ik[1890] = 37.347 +il[1890] = -34 +im[1890] = 0.0659 +ij[1890] = 1 +id[1891] = "2465-08-13T18:57:01" +ik[1891] = 25.925 +il[1891] = 27 +im[1891] = 0 +ij[1891] = 5 +id[1892] = "2465-12-05T00:12:05" +ik[1892] = 28.51 +il[1892] = 84 +im[1892] = 0 +ij[1892] = 6 +id[1893] = "2466-07-27T08:15:04" +ik[1893] = 30.883 +il[1893] = -81 +im[1893] = 0 +ij[1893] = 5 +id[1894] = "2466-10-06T08:48:28" +ik[1894] = 41.324 +il[1894] = -115 +im[1894] = 0.0871 +ij[1894] = 3 +id[1895] = "2466-10-12T18:52:18" +ik[1895] = -1.892 +il[1895] = 157 +im[1895] = 0.1082 +ij[1895] = 2 +id[1896] = "2466-11-19T20:42:08" +ik[1896] = 27.448 +il[1896] = -69 +im[1896] = 0 +ij[1896] = 6 +id[1897] = "2467-05-04T02:07:26" +ik[1897] = 37.125 +il[1897] = -29 +im[1897] = 0.1007 +ij[1897] = 1 +id[1898] = "2467-05-04T05:01:12" +ik[1898] = -1.555 +il[1898] = -71 +im[1898] = 0.1007 +ij[1898] = 4 +id[1899] = "2467-06-13T13:24:05" +ik[1899] = 25.755 +il[1899] = 73 +im[1899] = 0 +ij[1899] = 5 +id[1900] = "2467-10-04T07:21:04" +ik[1900] = 28.022 +il[1900] = -68 +im[1900] = 0 +ij[1900] = 6 +id[1901] = "2468-05-24T09:01:00" +ik[1901] = 31.307 +il[1901] = -151 +im[1901] = 0 +ij[1901] = 5 +id[1902] = "2468-09-17T10:56:03" +ik[1902] = 27.916 +il[1902] = 31 +im[1902] = 0 +ij[1902] = 6 +id[1903] = "2468-11-12T16:55:53" +ik[1903] = -1.691 +il[1903] = -31 +im[1903] = 0.0881 +ij[1903] = 2 +id[1904] = "2468-11-18T14:36:23" +ik[1904] = 37.851 +il[1904] = 61 +im[1904] = 0.0967 +ij[1904] = 3 +id[1905] = "2469-04-12T10:45:07" +ik[1905] = 25.641 +il[1905] = 77 +im[1905] = 0 +ij[1905] = 5 +id[1906] = "2469-06-11T20:54:23" +ik[1906] = 38.491 +il[1906] = -98 +im[1906] = 0.0928 +ij[1906] = 1 +id[1907] = "2469-06-17T00:38:06" +ik[1907] = -1.629 +il[1907] = -104 +im[1907] = 0.013 +ij[1907] = 4 +id[1908] = "2469-08-02T18:51:59" +ik[1908] = 27.572 +il[1908] = 76 +im[1908] = 0 +ij[1908] = 6 +id[1909] = "2470-03-22T04:09:59" +ik[1909] = 31.615 +il[1909] = -140 +im[1909] = 0 +ij[1909] = 5 +id[1910] = "2470-07-16T18:01:00" +ik[1910] = 28.43 +il[1910] = -124 +im[1910] = 0 +ij[1910] = 6 +id[1911] = "2470-12-18T08:40:47" +ik[1911] = -1.592 +il[1911] = -90 +im[1911] = 0.0452 +ij[1911] = 2 +id[1912] = "2470-12-28T03:20:26" +ik[1912] = 36.283 +il[1912] = 85 +im[1912] = 0.0583 +ij[1912] = 3 +id[1913] = "2471-02-10T10:19:03" +ik[1913] = 25.584 +il[1913] = 47 +im[1913] = 0 +ij[1913] = 5 +id[1914] = "2471-06-02T10:09:59" +ik[1914] = 27.166 +il[1914] = 166 +im[1914] = 0 +ij[1914] = 6 +id[1915] = "2471-07-24T15:43:20" +ik[1915] = 41.408 +il[1915] = -130 +im[1915] = 0.0028 +ij[1915] = 1 +id[1916] = "2471-07-28T20:35:27" +ik[1916] = -1.833 +il[1916] = -162 +im[1916] = 0.0942 +ij[1916] = 4 +id[1917] = "2472-01-17T17:58:59" +ik[1917] = 31.775 +il[1917] = -50 +im[1917] = 0 +ij[1917] = 5 +id[1918] = "2472-05-13T17:44:00" +ik[1918] = 28.982 +il[1918] = -173 +im[1918] = 0 +ij[1918] = 6 +id[1919] = "2472-12-10T11:28:01" +ik[1919] = 25.582 +il[1919] = -6 +im[1919] = 0 +ij[1919] = 5 +id[1920] = "2473-01-31T17:59:02" +ik[1920] = -1.599 +il[1920] = 39 +im[1920] = 0.0866 +ij[1920] = 2 +id[1921] = "2473-02-05T21:05:19" +ik[1921] = 36.559 +il[1921] = 42 +im[1921] = 0.0242 +ij[1921] = 3 +id[1922] = "2473-04-01T04:41:57" +ik[1922] = 26.807 +il[1922] = -152 +im[1922] = 0 +ij[1922] = 6 +id[1923] = "2473-08-28T08:22:09" +ik[1923] = -2.141 +il[1923] = 166 +im[1923] = 0.0907 +ij[1923] = 4 +id[1924] = "2473-09-08T15:30:23" +ik[1924] = 45.196 +il[1924] = 169 +im[1924] = 0.1234 +ij[1924] = 1 +id[1925] = "2473-11-14T03:00:00" +ik[1925] = 31.763 +il[1925] = 111 +im[1925] = 0 +ij[1925] = 5 +id[1926] = "2474-03-11T10:23:57" +ik[1926] = 29.553 +il[1926] = -119 +im[1926] = 0 +ij[1926] = 6 +id[1927] = "2474-10-10T13:34:01" +ik[1927] = 25.634 +il[1927] = -73 +im[1927] = 0 +ij[1927] = 5 +id[1928] = "2475-01-30T01:52:01" +ik[1928] = 26.498 +il[1928] = -147 +im[1928] = 0 +ij[1928] = 6 +id[1929] = "2475-03-28T08:08:18" +ik[1929] = 39.111 +il[1929] = -178 +im[1929] = 0.0521 +ij[1929] = 3 +id[1930] = "2475-04-10T02:03:30" +ik[1930] = -1.788 +il[1930] = 34 +im[1930] = 0.0669 +ij[1930] = 2 +id[1931] = "2475-09-11T08:13:55" +ik[1931] = 31.577 +il[1931] = -32 +im[1931] = 0 +ij[1931] = 5 +id[1932] = "2475-10-05T20:20:23" +ik[1932] = -2.375 +il[1932] = -156 +im[1932] = 0.1448 +ij[1932] = 4 +id[1933] = "2475-10-30T17:35:22" +ik[1933] = 45.81 +il[1933] = 130 +im[1933] = 0.1729 +ij[1933] = 1 +id[1934] = "2476-01-06T20:53:57" +ik[1934] = 30.117 +il[1934] = 23 +im[1934] = 0 +ij[1934] = 6 +id[1935] = "2476-08-09T15:59:02" +ik[1935] = 25.741 +il[1935] = -145 +im[1935] = 0 +ij[1935] = 5 +id[1936] = "2476-11-29T01:04:56" +ik[1936] = 26.24 +il[1936] = -173 +im[1936] = 0 +ij[1936] = 6 +id[1937] = "2477-06-06T00:17:16" +ik[1937] = 44.732 +il[1937] = 73 +im[1937] = 0.06 +ij[1937] = 3 +id[1938] = "2477-07-06T18:46:11" +ik[1938] = -2.296 +il[1938] = 90 +im[1938] = 0.1647 +ij[1938] = 2 +id[1939] = "2477-07-08T11:18:57" +ik[1939] = 31.231 +il[1939] = -142 +im[1939] = 0 +ij[1939] = 5 +id[1940] = "2477-11-03T02:47:54" +ik[1940] = 30.642 +il[1940] = -128 +im[1940] = 0 +ij[1940] = 6 +id[1941] = "2477-12-16T22:28:25" +ik[1941] = -2.045 +il[1941] = -2 +im[1941] = 0.063 +ij[1941] = 4 +id[1942] = "2478-01-08T05:08:18" +ik[1942] = 41.102 +il[1942] = 110 +im[1942] = 0.1243 +ij[1942] = 1 +id[1943] = "2478-06-09T18:08:55" +ik[1943] = 25.901 +il[1943] = 147 +im[1943] = 0 +ij[1943] = 5 +id[1944] = "2478-09-29T01:44:58" +ik[1944] = 26.033 +il[1944] = 141 +im[1944] = 0 +ij[1944] = 6 +id[1945] = "2479-05-05T14:26:00" +ik[1945] = 30.761 +il[1945] = 109 +im[1945] = 0 +ij[1945] = 5 +id[1946] = "2479-08-02T09:53:16" +ik[1946] = 47.168 +il[1946] = -44 +im[1946] = 0.1533 +ij[1946] = 3 +id[1947] = "2479-08-29T11:03:06" +ik[1947] = -2.308 +il[1947] = -156 +im[1947] = 0.1617 +ij[1947] = 2 +id[1948] = "2479-08-31T06:15:59" +ik[1948] = 31.087 +il[1948] = 114 +im[1948] = 0 +ij[1948] = 6 +id[1949] = "2480-02-24T06:26:40" +ik[1949] = -1.696 +il[1949] = -1 +im[1949] = 0.1011 +ij[1949] = 4 +id[1950] = "2480-03-05T09:44:21" +ik[1950] = 37.93 +il[1950] = 45 +im[1950] = 0.0355 +ij[1950] = 1 +id[1951] = "2480-04-08T19:24:57" +ik[1951] = 26.115 +il[1951] = 92 +im[1951] = 0 +ij[1951] = 5 +id[1952] = "2480-07-29T03:18:00" +ik[1952] = 25.878 +il[1952] = 83 +im[1952] = 0 +ij[1952] = 6 +id[1953] = "2481-03-01T19:59:57" +ik[1953] = 30.206 +il[1953] = -35 +im[1953] = 0 +ij[1953] = 5 +id[1954] = "2481-06-27T09:41:54" +ik[1954] = 31.415 +il[1954] = -4 +im[1954] = 0 +ij[1954] = 6 +id[1955] = "2481-09-17T10:35:19" +ik[1955] = 43.148 +il[1955] = -114 +im[1955] = 0.0113 +ij[1955] = 3 +id[1956] = "2481-09-30T18:07:08" +ik[1956] = -2 +il[1956] = -97 +im[1956] = 0.0128 +ij[1956] = 2 +id[1957] = "2482-02-06T19:11:51" +ik[1957] = 26.383 +il[1957] = 58 +im[1957] = 0 +ij[1957] = 5 +id[1958] = "2482-04-16T03:29:48" +ik[1958] = -1.563 +il[1958] = -4 +im[1958] = 0.0997 +ij[1958] = 4 +id[1959] = "2482-04-18T10:41:13" +ik[1959] = 37.013 +il[1959] = -90 +im[1959] = 0.1123 +ij[1959] = 1 +id[1960] = "2482-05-29T05:06:51" +ik[1960] = 25.775 +il[1960] = 21 +im[1960] = 0 +ij[1960] = 6 +id[1961] = "2482-12-28T06:09:56" +ik[1961] = 29.61 +il[1961] = 114 +im[1961] = 0 +ij[1961] = 5 +id[1962] = "2483-04-24T15:15:50" +ik[1962] = 31.593 +il[1962] = -154 +im[1962] = 0 +ij[1962] = 6 +id[1963] = "2483-11-01T01:11:09" +ik[1963] = -1.757 +il[1963] = -64 +im[1963] = 0.1097 +ij[1963] = 2 +id[1964] = "2483-11-03T05:07:17" +ik[1964] = 38.979 +il[1964] = -102 +im[1964] = 0.1018 +ij[1964] = 3 +id[1965] = "2483-12-07T16:53:54" +ik[1965] = 26.705 +il[1965] = 55 +im[1965] = 0 +ij[1965] = 5 +id[1966] = "2484-03-28T06:38:52" +ik[1966] = 25.723 +il[1966] = -36 +im[1966] = 0 +ij[1966] = 6 +id[1967] = "2484-05-27T06:42:20" +ik[1967] = 37.771 +il[1967] = 178 +im[1967] = 0.0922 +ij[1967] = 1 +id[1968] = "2484-05-30T17:04:02" +ik[1968] = -1.585 +il[1968] = 56 +im[1968] = 0.0322 +ij[1968] = 4 +id[1969] = "2484-10-24T22:31:52" +ik[1969] = 29.008 +il[1969] = 173 +im[1969] = 0 +ij[1969] = 5 +id[1970] = "2485-02-19T00:39:53" +ik[1970] = 31.607 +il[1970] = -1 +im[1970] = 0 +ij[1970] = 6 +id[1971] = "2485-10-06T11:50:55" +ik[1971] = 27.078 +il[1971] = 92 +im[1971] = 0 +ij[1971] = 5 +id[1972] = "2485-12-03T19:06:43" +ik[1972] = -1.619 +il[1972] = -174 +im[1972] = 0.0714 +ij[1972] = 2 +id[1973] = "2485-12-12T23:32:12" +ik[1973] = 36.679 +il[1973] = -151 +im[1973] = 0.0564 +ij[1973] = 3 +id[1974] = "2486-01-26T07:15:53" +ik[1974] = 25.724 +il[1974] = -79 +im[1974] = 0 +ij[1974] = 6 +id[1975] = "2486-07-07T10:08:15" +ik[1975] = 40.086 +il[1975] = -1 +im[1975] = 0.0275 +ij[1975] = 1 +id[1976] = "2486-07-13T13:38:44" +ik[1976] = -1.738 +il[1976] = 6 +im[1976] = 0.099 +ij[1976] = 4 +id[1977] = "2486-08-22T22:00:54" +ik[1977] = 28.427 +il[1977] = 129 +im[1977] = 0 +ij[1977] = 5 +id[1978] = "2486-12-17T14:55:49" +ik[1978] = 31.46 +il[1978] = 81 +im[1978] = 0 +ij[1978] = 6 +id[1979] = "2487-08-06T03:27:47" +ik[1979] = 27.503 +il[1979] = 177 +im[1979] = 0 +ij[1979] = 5 +id[1980] = "2487-11-26T06:20:52" +ik[1980] = 25.778 +il[1980] = -99 +im[1980] = 0 +ij[1980] = 6 +id[1981] = "2488-01-13T06:24:04" +ik[1981] = -1.581 +il[1981] = -120 +im[1981] = 0.1069 +ij[1981] = 2 +id[1982] = "2488-01-21T10:49:17" +ik[1982] = 36.22 +il[1982] = -107 +im[1982] = 0.0163 +ij[1982] = 3 +id[1983] = "2488-06-20T04:54:54" +ik[1983] = 27.886 +il[1983] = -24 +im[1983] = 0 +ij[1983] = 5 +id[1984] = "2488-08-16T21:40:31" +ik[1984] = -2.012 +il[1984] = 66 +im[1984] = 0.0682 +ij[1984] = 4 +id[1985] = "2488-08-21T02:37:14" +ik[1985] = 43.756 +il[1985] = 32 +im[1985] = 0.1324 +ij[1985] = 1 +id[1986] = "2488-10-14T10:36:54" +ik[1986] = 31.173 +il[1986] = 85 +im[1986] = 0 +ij[1986] = 6 +id[1987] = "2489-06-04T15:07:46" +ik[1987] = 27.974 +il[1987] = -40 +im[1987] = 0 +ij[1987] = 5 +id[1988] = "2489-09-25T03:17:51" +ik[1988] = 25.885 +il[1988] = -87 +im[1988] = 0 +ij[1988] = 6 +id[1989] = "2490-03-06T17:34:13" +ik[1989] = 37.776 +il[1989] = 52 +im[1989] = 0.1201 +ij[1989] = 3 +id[1990] = "2490-03-10T15:27:12" +ik[1990] = -1.68 +il[1990] = 121 +im[1990] = 0.0743 +ij[1990] = 2 +id[1991] = "2490-04-18T19:02:47" +ik[1991] = 27.394 +il[1991] = 78 +im[1991] = 0 +ij[1991] = 5 +id[1992] = "2490-08-12T12:01:52" +ik[1992] = 30.776 +il[1992] = 5 +im[1992] = 0 +ij[1992] = 6 +id[1993] = "2490-09-17T22:41:53" +ik[1993] = -2.324 +il[1993] = -157 +im[1993] = 0.1484 +ij[1993] = 4 +id[1994] = "2490-10-08T14:55:14" +ik[1994] = 46.368 +il[1994] = 163 +im[1994] = 0.0461 +ij[1994] = 1 +id[1995] = "2491-04-03T22:15:53" +ik[1995] = 28.486 +il[1995] = 169 +im[1995] = 0 +ij[1995] = 5 +id[1996] = "2491-07-25T21:23:45" +ik[1996] = 26.048 +il[1996] = -34 +im[1996] = 0 +ij[1996] = 6 +id[1997] = "2492-02-15T15:55:52" +ik[1997] = 26.96 +il[1997] = 81 +im[1997] = 0 +ij[1997] = 5 +id[1998] = "2492-05-07T13:09:15" +ik[1998] = 42.242 +il[1998] = 177 +im[1998] = 0.0996 +ij[1998] = 3 +id[1999] = "2492-06-03T12:08:07" +ik[1999] = -2.085 +il[1999] = 88 +im[1999] = 0.0715 +ij[1999] = 2 +id[2000] = "2492-06-09T19:13:52" +ik[2000] = 30.303 +il[2000] = -159 +im[2000] = 0 +ij[2000] = 6 +id[2001] = "2492-11-15T01:45:01" +ik[2001] = -2.23 +il[2001] = -144 +im[2001] = 0.042 +ij[2001] = 4 +id[2002] = "2492-12-11T09:41:11" +ik[2002] = 43.057 +il[2002] = -8 +im[2002] = 0.0472 +ij[2002] = 1 +id[2003] = "2493-01-31T00:22:45" +ik[2003] = 29.029 +il[2003] = 90 +im[2003] = 0 +ij[2003] = 5 +id[2004] = "2493-05-24T11:59:51" +ik[2004] = 26.266 +il[2004] = 71 +im[2004] = 0 +ij[2004] = 6 +id[2005] = "2493-12-14T18:56:44" +ik[2005] = 26.585 +il[2005] = -7 +im[2005] = 0 +ij[2005] = 5 +id[2006] = "2494-04-08T08:14:47" +ik[2006] = 29.787 +il[2006] = -47 +im[2006] = 0 +ij[2006] = 6 +id[2007] = "2494-07-14T12:40:10" +ik[2007] = 47.275 +il[2007] = -58 +im[2007] = 0.116 +ij[2007] = 3 +id[2008] = "2494-08-12T22:04:36" +ik[2008] = -2.387 +il[2008] = 87 +im[2008] = 0.1584 +ij[2008] = 2 +id[2009] = "2494-11-29T21:01:43" +ik[2009] = 29.589 +il[2009] = 91 +im[2009] = 0 +ij[2009] = 5 +id[2010] = "2495-01-31T00:46:23" +ik[2010] = -1.802 +il[2010] = 73 +im[2010] = 0.111 +ij[2010] = 4 +id[2011] = "2495-02-14T08:24:08" +ik[2011] = 38.855 +il[2011] = 93 +im[2011] = 0.0821 +ij[2011] = 1 +id[2012] = "2495-03-23T22:17:45" +ik[2012] = 26.541 +il[2012] = -121 +im[2012] = 0 +ij[2012] = 6 +id[2013] = "2495-10-14T03:21:44" +ik[2013] = 26.271 +il[2013] = -172 +im[2013] = 0 +ij[2013] = 5 +id[2014] = "2496-02-05T02:54:48" +ik[2014] = 29.256 +il[2014] = -17 +im[2014] = 0 +ij[2014] = 6 +id[2015] = "2496-08-29T13:06:05" +ik[2015] = 45.026 +il[2015] = -126 +im[2015] = 0.0814 +ij[2015] = 3 +id[2016] = "2496-09-18T13:16:37" +ik[2016] = -2.12 +il[2016] = 68 +im[2016] = 0.1016 +ij[2016] = 2 +id[2017] = "2496-09-27T11:53:48" +ik[2017] = 30.145 +il[2017] = 176 +im[2017] = 0 +ij[2017] = 5 +id[2018] = "2497-01-20T03:41:45" +ik[2018] = 26.873 +il[2018] = 118 +im[2018] = 0 +ij[2018] = 6 +id[2019] = "2497-03-28T04:15:17" +ik[2019] = -1.594 +il[2019] = 22 +im[2019] = 0.0474 +ij[2019] = 4 +id[2020] = "2497-04-02T04:37:12" +ik[2020] = 37.153 +il[2020] = 64 +im[2020] = 0.1157 +ij[2020] = 1 +id[2021] = "2497-08-12T16:25:49" +ik[2021] = 26.017 +il[2021] = -47 +im[2021] = 0 +ij[2021] = 5 +id[2022] = "2497-12-04T02:59:42" +ik[2022] = 28.731 +il[2022] = -66 +im[2022] = 0 +ij[2022] = 6 +id[2023] = "2498-07-26T21:04:45" +ik[2023] = 30.672 +il[2023] = -17 +im[2023] = 0 +ij[2023] = 5 +id[2024] = "2498-10-16T18:50:06" +ik[2024] = 40.41 +il[2024] = 96 +im[2024] = 0.1047 +ij[2024] = 3 +id[2025] = "2498-10-19T18:11:45" +ik[2025] = -1.84 +il[2025] = 135 +im[2025] = 0.072 +ij[2025] = 2 +id[2026] = "2498-11-19T03:19:43" +ik[2026] = 27.262 +il[2026] = 83 +im[2026] = 0 +ij[2026] = 6 +id[2027] = "2499-05-12T21:39:10" +ik[2027] = 37.288 +il[2027] = 21 +im[2027] = 0.1011 +ij[2027] = 1 +id[2028] = "2499-05-14T06:35:45" +ik[2028] = -1.56 +il[2028] = -100 +im[2028] = 0.0823 +ij[2028] = 4 +id[2029] = "2499-06-12T09:23:45" +ik[2029] = 25.821 +il[2029] = 21 +im[2029] = 0 +ij[2029] = 5 +id[2030] = "2499-10-03T08:06:43" +ik[2030] = 28.23 +il[2030] = 172 +im[2030] = 0 +ij[2030] = 6 +id[2031] = "2500-05-25T00:20:44" +ik[2031] = 31.135 +il[2031] = -124 +im[2031] = 0 +ij[2031] = 5 +id[2032] = "2500-09-17T20:32:47" +ik[2032] = 27.706 +il[2032] = 139 +im[2032] = 0 +ij[2032] = 6 +id[2033] = "2500-11-21T04:48:13" +ik[2033] = -1.661 +il[2033] = 123 +im[2033] = 0.0877 +ij[2033] = 2 +id[2034] = "2500-11-28T14:50:03" +ik[2034] = 37.354 +il[2034] = 44 +im[2034] = 0.0296 +ij[2034] = 3 +id[2035] = "2501-04-12T05:34:39" +ik[2035] = 25.683 +il[2035] = 42 +im[2035] = 0 +ij[2035] = 5 +id[2036] = "2501-06-21T23:25:09" +ik[2036] = 38.991 +il[2036] = -147 +im[2036] = 0.0574 +ij[2036] = 1 +id[2037] = "2501-06-27T20:16:13" +ik[2037] = -1.663 +il[2037] = -43 +im[2037] = 0.0678 +ij[2037] = 4 +id[2038] = "2501-08-02T17:47:45" +ik[2038] = 27.762 +il[2038] = -17 +im[2038] = 0 +ij[2038] = 6 +id[2039] = "2502-03-22T21:54:43" +ik[2039] = 31.498 +il[2039] = -147 +im[2039] = 0 +ij[2039] = 5 +id[2040] = "2502-07-17T06:46:39" +ik[2040] = 28.202 +il[2040] = -62 +im[2040] = 0 +ij[2040] = 6 +id[2041] = "2502-12-28T06:19:47" +ik[2041] = -1.583 +il[2041] = -69 +im[2041] = 0.0868 +ij[2041] = 2 +id[2042] = "2503-01-06T20:38:06" +ik[2042] = 36.182 +il[2042] = 169 +im[2042] = 0.0061 +ij[2042] = 3 +id[2043] = "2503-02-10T04:15:44" +ik[2043] = 25.602 +il[2043] = 25 +im[2043] = 0 +ij[2043] = 5 +id[2044] = "2503-06-02T07:31:43" +ik[2044] = 27.336 +il[2044] = 95 +im[2044] = 0 +ij[2044] = 6 +id[2045] = "2503-08-04T19:30:08" +ik[2045] = 42.218 +il[2045] = 173 +im[2045] = 0.0887 +ij[2045] = 1 +id[2046] = "2503-08-06T17:07:48" +ik[2046] = -1.892 +il[2046] = -133 +im[2046] = 0.1128 +ij[2046] = 4 +id[2047] = "2504-01-18T13:58:39" +ik[2047] = 31.726 +il[2047] = -91 +im[2047] = 0 +ij[2047] = 5 +id[2048] = "2504-05-14T09:41:36" +ik[2048] = 28.739 +il[2048] = -157 +im[2048] = 0 +ij[2048] = 6 +id[2049] = "2504-12-10T04:48:43" +ik[2049] = 25.575 +il[2049] = -19 +im[2049] = 0 +ij[2049] = 5 +id[2050] = "2505-02-14T05:42:28" +ik[2050] = -1.618 +il[2050] = -119 +im[2050] = 0.0287 +ij[2050] = 2 +id[2051] = "2505-02-16T19:28:07" +ik[2051] = 36.887 +il[2051] = 60 +im[2051] = 0.0857 +ij[2051] = 3 +id[2052] = "2505-04-01T00:43:37" +ik[2052] = 26.957 +il[2052] = 157 +im[2052] = 0 +ij[2052] = 6 +id[2053] = "2505-09-05T06:05:35" +ik[2053] = -2.213 +il[2053] = 168 +im[2053] = 0.0519 +ij[2053] = 4 +id[2054] = "2505-09-20T06:01:09" +ik[2054] = 45.826 +il[2054] = -43 +im[2054] = 0.0586 +ij[2054] = 1 +id[2055] = "2505-11-15T00:58:36" +ik[2055] = 31.791 +il[2055] = 41 +im[2055] = 0 +ij[2055] = 5 +id[2056] = "2506-03-12T05:20:41" +ik[2056] = 29.304 +il[2056] = -147 +im[2056] = 0 +ij[2056] = 6 +id[2057] = "2506-10-10T06:34:42" +ik[2057] = 25.604 +il[2057] = -81 +im[2057] = 0 +ij[2057] = 5 +id[2058] = "2507-01-29T20:50:38" +ik[2058] = 26.626 +il[2058] = 176 +im[2058] = 0 +ij[2058] = 6 +id[2059] = "2507-04-12T02:24:00" +ik[2059] = 40.073 +il[2059] = -64 +im[2059] = 0.147 +ij[2059] = 3 +id[2060] = "2507-04-30T07:36:17" +ik[2060] = -1.876 +il[2060] = 30 +im[2060] = 0.1134 +ij[2060] = 2 +id[2061] = "2507-09-12T07:41:39" +ik[2061] = 31.68 +il[2061] = -124 +im[2061] = 0 +ij[2061] = 5 +id[2062] = "2507-10-19T18:11:50" +ik[2062] = -2.356 +il[2062] = -95 +im[2062] = 0.1573 +ij[2062] = 4 +id[2063] = "2507-11-15T03:59:02" +ik[2063] = 45.012 +il[2063] = 17 +im[2063] = 0.0622 +ij[2063] = 1 +id[2064] = "2508-01-07T18:23:36" +ik[2064] = 29.875 +il[2064] = -41 +im[2064] = 0 +ij[2064] = 6 +id[2065] = "2508-08-09T08:56:41" +ik[2065] = 25.687 +il[2065] = -152 +im[2065] = 0 +ij[2065] = 5 +id[2066] = "2508-11-28T19:14:35" +ik[2066] = 26.346 +il[2066] = 163 +im[2066] = 0 +ij[2066] = 6 +id[2067] = "2509-06-22T11:09:01" +ik[2067] = 45.961 +il[2067] = -43 +im[2067] = 0.1218 +ij[2067] = 3 +id[2068] = "2509-07-09T11:27:36" +ik[2068] = 31.4 +il[2068] = 115 +im[2068] = 0 +ij[2068] = 5 +id[2069] = "2509-07-23T05:59:25" +ik[2069] = -2.368 +il[2069] = -30 +im[2069] = 0.071 +ij[2069] = 2 +id[2070] = "2509-11-04T02:01:40" +ik[2070] = 30.422 +il[2070] = 143 +im[2070] = 0 +ij[2070] = 6 +id[2071] = "2510-01-04T04:51:52" +ik[2071] = -1.948 +il[2071] = -35 +im[2071] = 0.0616 +ij[2071] = 4 +id[2072] = "2510-01-23T13:19:03" +ik[2072] = 40.181 +il[2072] = 22 +im[2072] = 0.118 +ij[2072] = 1 +id[2073] = "2510-06-09T11:17:39" +ik[2073] = 25.824 +il[2073] = 137 +im[2073] = 0 +ij[2073] = 5 +id[2074] = "2510-09-28T19:21:38" +ik[2074] = 26.117 +il[2074] = 124 +im[2074] = 0 +ij[2074] = 6 +id[2075] = "2511-05-06T14:15:38" +ik[2075] = 30.979 +il[2075] = 10 +im[2075] = 0 +ij[2075] = 5 +id[2076] = "2511-08-13T12:00:00" +ik[2076] = 46.605 +il[2076] = -76 +im[2076] = 0.1125 +ij[2076] = 3 +id[2077] = "2511-09-01T06:15:33" +ik[2077] = 30.907 +il[2077] = 15 +im[2077] = 0 +ij[2077] = 6 +id[2078] = "2511-09-07T14:32:20" +ik[2078] = -2.245 +il[2078] = 133 +im[2078] = 0.1497 +ij[2078] = 2 +id[2079] = "2512-03-08T17:56:47" +ik[2079] = -1.651 +il[2079] = -159 +im[2079] = 0.0874 +ij[2079] = 4 +id[2080] = "2512-03-16T21:38:00" +ik[2080] = 37.569 +il[2080] = -137 +im[2080] = 0.0943 +ij[2080] = 1 +id[2081] = "2512-04-08T13:01:37" +ik[2081] = 26.015 +il[2081] = 75 +im[2081] = 0 +ij[2081] = 5 +id[2082] = "2512-07-28T20:35:39" +ik[2082] = 25.939 +il[2082] = 70 +im[2082] = 0 +ij[2082] = 6 +id[2083] = "2513-03-02T18:27:38" +ik[2083] = 30.456 +il[2083] = -115 +im[2083] = 0 +ij[2083] = 5 +id[2084] = "2513-06-28T09:23:36" +ik[2084] = 31.29 +il[2084] = -99 +im[2084] = 0 +ij[2084] = 6 +id[2085] = "2513-09-29T06:26:55" +ik[2085] = 42.117 +il[2085] = -46 +im[2085] = 0.1051 +ij[2085] = 3 +id[2086] = "2513-10-08T16:30:34" +ik[2086] = -1.938 +il[2086] = -105 +im[2086] = 0.0064 +ij[2086] = 2 +id[2087] = "2514-02-06T13:32:35" +ik[2087] = 26.259 +il[2087] = 31 +im[2087] = 0 +ij[2087] = 5 +id[2088] = "2514-04-27T12:34:08" +ik[2088] = -1.556 +il[2088] = -144 +im[2088] = 0.103 +ij[2088] = 4 +id[2089] = "2514-04-28T10:37:55" +ik[2089] = 37.044 +il[2089] = -106 +im[2089] = 0.0928 +ij[2089] = 1 +id[2090] = "2514-05-28T22:22:30" +ik[2090] = 25.813 +il[2090] = 9 +im[2090] = 0 +ij[2090] = 6 +id[2091] = "2514-12-29T02:22:33" +ik[2091] = 29.873 +il[2091] = 67 +im[2091] = 0 +ij[2091] = 5 +id[2092] = "2515-04-25T13:46:33" +ik[2092] = 31.536 +il[2092] = 129 +im[2092] = 0 +ij[2092] = 6 +id[2093] = "2515-11-09T06:29:42" +ik[2093] = -1.719 +il[2093] = -174 +im[2093] = 0.0969 +ij[2093] = 2 +id[2094] = "2515-11-13T16:35:02" +ik[2094] = 38.318 +il[2094] = 77 +im[2094] = 0.0321 +ij[2094] = 3 +id[2095] = "2515-12-07T12:13:32" +ik[2095] = 26.557 +il[2095] = 13 +im[2095] = 0 +ij[2095] = 5 +id[2096] = "2516-03-28T00:06:37" +ik[2096] = 25.739 +il[2096] = -51 +im[2096] = 0 +ij[2096] = 6 +id[2097] = "2516-06-06T03:34:59" +ik[2097] = 38.138 +il[2097] = -150 +im[2097] = 0.0658 +ij[2097] = 1 +id[2098] = "2516-06-10T14:39:29" +ik[2098] = -1.607 +il[2098] = 87 +im[2098] = 0.0385 +ij[2098] = 4 +id[2099] = "2516-10-25T15:52:33" +ik[2099] = 29.27 +il[2099] = 168 +im[2099] = 0 +ij[2099] = 5 +id[2100] = "2517-02-19T21:20:35" +ik[2100] = 31.622 +il[2100] = -51 +im[2100] = 0 +ij[2100] = 6 +id[2101] = "2517-10-06T08:27:36" +ik[2101] = 26.909 +il[2101] = 31 +im[2101] = 0 +ij[2101] = 5 +id[2102] = "2517-12-12T23:39:03" +ik[2102] = -1.602 +il[2102] = 97 +im[2102] = 0.0821 +ij[2102] = 2 +id[2103] = "2517-12-22T15:46:56" +ik[2103] = 36.425 +il[2103] = -51 +im[2103] = 0.0275 +ij[2103] = 3 +id[2104] = "2518-01-26T01:11:34" +ik[2104] = 25.717 +il[2104] = -101 +im[2104] = 0 +ij[2104] = 6 +id[2105] = "2518-07-18T03:21:01" +ik[2105] = 40.789 +il[2105] = 95 +im[2105] = 0.033 +ij[2105] = 1 +id[2106] = "2518-07-23T14:00:24" +ik[2106] = -1.788 +il[2106] = -12 +im[2106] = 0.1041 +ij[2106] = 4 +id[2107] = "2518-08-23T12:12:31" +ik[2107] = 28.677 +il[2107] = 168 +im[2107] = 0 +ij[2107] = 5 +id[2108] = "2518-12-18T09:23:28" +ik[2108] = 31.543 +il[2108] = 63 +im[2108] = 0 +ij[2108] = 6 +id[2109] = "2519-08-06T01:36:28" +ik[2109] = 27.311 +il[2109] = 94 +im[2109] = 0 +ij[2109] = 5 +id[2110] = "2519-11-26T01:01:29" +ik[2110] = 25.748 +il[2110] = -132 +im[2110] = 0 +ij[2110] = 6 +id[2111] = "2520-01-24T22:56:24" +ik[2111] = -1.588 +il[2111] = -6 +im[2111] = 0.0762 +ij[2111] = 2 +id[2112] = "2520-01-31T16:31:00" +ik[2112] = 36.367 +il[2112] = 155 +im[2112] = 0.0762 +ij[2112] = 3 +id[2113] = "2520-06-20T15:51:33" +ik[2113] = 28.116 +il[2113] = 65 +im[2113] = 0 +ij[2113] = 5 +id[2114] = "2520-08-24T12:40:25" +ik[2114] = -2.083 +il[2114] = 166 +im[2114] = 0.0564 +ij[2114] = 4 +id[2115] = "2520-09-01T15:21:53" +ik[2115] = 44.583 +il[2115] = -155 +im[2115] = 0.0952 +ij[2115] = 1 +id[2116] = "2520-10-15T02:39:33" +ik[2116] = 31.314 +il[2116] = 102 +im[2116] = 0 +ij[2116] = 6 +id[2117] = "2521-06-04T15:04:27" +ik[2117] = 27.763 +il[2117] = -149 +im[2117] = 0 +ij[2117] = 5 +id[2118] = "2521-09-24T22:59:31" +ik[2118] = 25.832 +il[2118] = -136 +im[2118] = 0 +ij[2118] = 6 +id[2119] = "2522-03-19T13:36:54" +ik[2119] = 38.453 +il[2119] = 122 +im[2119] = 0.0337 +ij[2119] = 3 +id[2120] = "2522-03-28T02:51:06" +ik[2120] = -1.732 +il[2120] = 4 +im[2120] = 0.139 +ij[2120] = 2 +id[2121] = "2522-04-19T02:53:31" +ik[2121] = 27.602 +il[2121] = -148 +im[2121] = 0 +ij[2121] = 5 +id[2122] = "2522-08-13T01:33:27" +ik[2122] = 30.96 +il[2122] = 59 +im[2122] = 0 +ij[2122] = 6 +id[2123] = "2522-09-28T10:37:46" +ik[2123] = -2.364 +il[2123] = 19 +im[2123] = 0.0597 +ij[2123] = 4 +id[2124] = "2522-10-21T15:20:52" +ik[2124] = 46.212 +il[2124] = 177 +im[2124] = 0.1616 +ij[2124] = 1 +id[2125] = "2523-04-04T00:15:33" +ik[2125] = 28.258 +il[2125] = 30 +im[2125] = 0 +ij[2125] = 5 +id[2126] = "2523-07-25T18:24:28" +ik[2126] = 25.97 +il[2126] = -102 +im[2126] = 0 +ij[2126] = 6 +id[2127] = "2524-02-15T20:54:31" +ik[2127] = 27.142 +il[2127] = -103 +im[2127] = 0 +ij[2127] = 5 +id[2128] = "2524-05-25T04:34:53" +ik[2128] = 43.618 +il[2128] = 3 +im[2128] = 0.019 +ij[2128] = 3 +id[2129] = "2524-06-10T06:14:32" +ik[2129] = 30.515 +il[2129] = -68 +im[2129] = 0 +ij[2129] = 6 +id[2130] = "2524-06-23T23:57:48" +ik[2130] = -2.21 +il[2130] = -6 +im[2130] = 0.0327 +ij[2130] = 2 +id[2131] = "2524-12-03T22:28:54" +ik[2131] = -2.13 +il[2131] = -22 +im[2131] = 0.0687 +ij[2131] = 4 +id[2132] = "2524-12-28T09:11:57" +ik[2132] = 41.942 +il[2132] = 51 +im[2132] = 0.1416 +ij[2132] = 1 +id[2133] = "2525-01-31T04:36:28" +ik[2133] = 28.789 +il[2133] = -81 +im[2133] = 0 +ij[2133] = 5 +id[2134] = "2525-05-24T10:37:29" +ik[2134] = 26.164 +il[2134] = -21 +im[2134] = 0 +ij[2134] = 6 +id[2135] = "2525-12-14T21:20:26" +ik[2135] = 26.741 +il[2135] = -152 +im[2135] = 0 +ij[2135] = 5 +id[2136] = "2526-04-08T16:44:24" +ik[2136] = 30.014 +il[2136] = 80 +im[2136] = 0 +ij[2136] = 6 +id[2137] = "2526-07-26T13:48:51" +ik[2137] = 47.382 +il[2137] = -67 +im[2137] = 0.1411 +ij[2137] = 3 +id[2138] = "2526-08-23T19:43:36" +ik[2138] = -2.352 +il[2138] = 120 +im[2138] = 0.1744 +ij[2138] = 2 +id[2139] = "2526-11-30T03:41:28" +ik[2139] = 29.344 +il[2139] = -115 +im[2139] = 0 +ij[2139] = 5 +id[2140] = "2527-02-15T02:44:03" +ik[2140] = -1.739 +il[2140] = 74 +im[2140] = 0.1147 +ij[2140] = 4 +id[2141] = "2527-02-27T00:33:50" +ik[2141] = 38.298 +il[2141] = -142 +im[2141] = 0.0412 +ij[2141] = 1 +id[2142] = "2527-03-23T22:54:28" +ik[2142] = 26.414 +il[2142] = 118 +im[2142] = 0 +ij[2142] = 6 +id[2143] = "2527-10-14T03:30:23" +ik[2143] = 26.4 +il[2143] = 73 +im[2143] = 0 +ij[2143] = 5 +id[2144] = "2528-02-05T08:58:24" +ik[2144] = 29.486 +il[2144] = 145 +im[2144] = 0 +ij[2144] = 6 +id[2145] = "2528-09-10T05:08:52" +ik[2145] = 43.998 +il[2145] = -1 +im[2145] = 0.0639 +ij[2145] = 3 +id[2146] = "2528-09-26T15:13:24" +ik[2146] = -2.052 +il[2146] = 9 +im[2146] = 0.0918 +ij[2146] = 2 +id[2147] = "2528-09-27T21:09:21" +ik[2147] = 29.905 +il[2147] = -68 +im[2147] = 0 +ij[2147] = 5 +id[2148] = "2529-01-20T06:32:24" +ik[2148] = 26.721 +il[2148] = -34 +im[2148] = 0 +ij[2148] = 6 +id[2149] = "2529-04-09T02:40:31" +ik[2149] = -1.574 +il[2149] = 46 +im[2149] = 0.1023 +ij[2149] = 4 +id[2150] = "2529-04-12T13:47:51" +ik[2150] = 37.043 +il[2150] = -88 +im[2150] = 0.0839 +ij[2150] = 1 +id[2151] = "2529-08-12T14:38:24" +ik[2151] = 26.12 +il[2151] = -134 +im[2151] = 0 +ij[2151] = 5 +id[2152] = "2529-12-04T06:44:21" +ik[2152] = 28.957 +il[2152] = 130 +im[2152] = 0 +ij[2152] = 6 +id[2153] = "2530-07-27T08:47:28" +ik[2153] = 30.448 +il[2153] = 64 +im[2153] = 0 +ij[2153] = 5 +id[2154] = "2530-10-27T19:08:58" +ik[2154] = -1.792 +il[2154] = 89 +im[2154] = 0.0721 +ij[2154] = 2 +id[2155] = "2530-10-27T20:40:50" +ik[2155] = 39.581 +il[2155] = 66 +im[2155] = 0.0709 +ij[2155] = 3 +id[2156] = "2530-11-19T08:44:26" +ik[2156] = 27.086 +il[2156] = -109 +im[2156] = 0 +ij[2156] = 6 +id[2157] = "2531-05-22T16:33:53" +ik[2157] = 37.524 +il[2157] = 81 +im[2157] = 0.0411 +ij[2157] = 1 +id[2158] = "2531-05-25T06:00:32" +ik[2158] = -1.571 +il[2158] = -96 +im[2158] = 0.023 +ij[2158] = 4 +id[2159] = "2531-06-12T06:00:25" +ik[2159] = 25.899 +il[2159] = -40 +im[2159] = 0 +ij[2159] = 5 +id[2160] = "2531-10-03T09:43:20" +ik[2160] = 28.444 +il[2160] = 39 +im[2160] = 0 +ij[2160] = 6 +id[2161] = "2532-05-24T14:35:22" +ik[2161] = 30.944 +il[2161] = -80 +im[2161] = 0 +ij[2161] = 5 +id[2162] = "2532-09-17T04:49:26" +ik[2162] = 27.507 +il[2162] = -94 +im[2162] = 0 +ij[2162] = 6 +id[2163] = "2532-11-28T21:31:13" +ik[2163] = -1.636 +il[2163] = -154 +im[2163] = 0.1004 +ij[2163] = 2 +id[2164] = "2532-12-07T10:54:46" +ik[2164] = 36.945 +il[2164] = 88 +im[2164] = 0.0282 +ij[2164] = 3 +id[2165] = "2533-04-11T00:52:24" +ik[2165] = 25.736 +il[2165] = 0 +im[2165] = 0 +ij[2165] = 5 +id[2166] = "2533-07-01T06:29:48" +ik[2166] = 39.565 +il[2166] = 97 +im[2166] = 0.0216 +ij[2166] = 1 +id[2167] = "2533-07-07T12:33:27" +ik[2167] = -1.702 +il[2167] = 67 +im[2167] = 0.1068 +ij[2167] = 4 +id[2168] = "2533-08-01T17:29:19" +ik[2168] = 27.96 +il[2168] = -122 +im[2168] = 0 +ij[2168] = 6 +id[2169] = "2534-03-22T14:36:23" +ik[2169] = 31.355 +il[2169] = -140 +im[2169] = 0 +ij[2169] = 5 +id[2170] = "2534-07-16T18:09:21" +ik[2170] = 27.981 +il[2170] = 20 +im[2170] = 0 +ij[2170] = 6 +id[2171] = "2535-01-06T16:32:34" +ik[2171] = -1.58 +il[2171] = 128 +im[2171] = 0.0946 +ij[2171] = 2 +id[2172] = "2535-01-15T16:43:49" +ik[2172] = 36.167 +il[2172] = -148 +im[2172] = 0.0685 +ij[2172] = 3 +id[2173] = "2535-02-08T22:34:19" +ik[2173] = 25.63 +il[2173] = -2 +im[2173] = 0 +ij[2173] = 5 +id[2174] = "2535-06-01T05:32:21" +ik[2174] = 27.515 +il[2174] = 14 +im[2174] = 0 +ij[2174] = 6 +id[2175] = "2535-08-13T22:40:34" +ik[2175] = -1.957 +il[2175] = 115 +im[2175] = 0.1177 +ij[2175] = 4 +id[2176] = "2535-08-15T03:58:45" +ik[2176] = 43.063 +il[2176] = 47 +im[2176] = 0.115 +ij[2176] = 1 +id[2177] = "2536-01-18T09:01:17" +ik[2177] = 31.647 +il[2177] = -117 +im[2177] = 0 +ij[2177] = 5 +id[2178] = "2536-05-14T00:15:24" +ik[2178] = 28.501 +il[2178] = -121 +im[2178] = 0 +ij[2178] = 6 +id[2179] = "2536-12-08T22:23:22" +ik[2179] = 25.579 +il[2179] = -35 +im[2179] = 0 +ij[2179] = 5 +id[2180] = "2537-02-27T06:53:42" +ik[2180] = 37.328 +il[2180] = -114 +im[2180] = 0.1227 +ij[2180] = 3 +id[2181] = "2537-02-27T23:48:09" +ik[2181] = -1.648 +il[2181] = -1 +im[2181] = 0.117 +ij[2181] = 2 +id[2182] = "2537-03-30T21:18:17" +ik[2182] = 27.115 +il[2182] = 97 +im[2182] = 0 +ij[2182] = 6 +id[2183] = "2537-09-12T17:49:56" +ik[2183] = -2.279 +il[2183] = -33 +im[2183] = 0.0624 +ij[2183] = 4 +id[2184] = "2537-10-01T01:24:48" +ik[2184] = 46.243 +il[2184] = 33 +im[2184] = 0.108 +ij[2184] = 1 +id[2185] = "2537-11-14T22:10:16" +ik[2185] = 31.785 +il[2185] = -18 +im[2185] = 0 +ij[2185] = 5 +id[2186] = "2538-03-11T23:02:24" +ik[2186] = 29.057 +il[2186] = -156 +im[2186] = 0 +ij[2186] = 6 +id[2187] = "2538-10-08T23:42:17" +ik[2187] = 25.584 +il[2187] = -91 +im[2187] = 0 +ij[2187] = 5 +id[2188] = "2539-01-28T16:13:17" +ik[2188] = 26.763 +il[2188] = 134 +im[2188] = 0 +ij[2188] = 6 +id[2189] = "2539-04-27T02:22:42" +ik[2189] = 41.206 +il[2189] = -24 +im[2189] = 0.0357 +ij[2189] = 3 +id[2190] = "2539-05-20T13:17:57" +ik[2190] = -1.985 +il[2190] = 34 +im[2190] = 0.1396 +ij[2190] = 2 +id[2191] = "2539-09-12T06:36:17" +ik[2191] = 31.751 +il[2191] = 152 +im[2191] = 0 +ij[2191] = 5 +id[2192] = "2539-11-03T21:49:57" +ik[2192] = -2.3 +il[2192] = -100 +im[2192] = 0.0833 +ij[2192] = 4 +id[2193] = "2539-11-30T19:57:47" +ik[2193] = 43.976 +il[2193] = -171 +im[2193] = 0.1098 +ij[2193] = 1 +id[2194] = "2540-01-07T14:49:20" +ik[2194] = 29.628 +il[2194] = -90 +im[2194] = 0 +ij[2194] = 6 +id[2195] = "2540-08-08T01:53:19" +ik[2195] = 25.644 +il[2195] = -159 +im[2195] = 0 +ij[2195] = 5 +id[2196] = "2540-11-27T13:42:14" +ik[2196] = 26.461 +il[2196] = 133 +im[2196] = 0 +ij[2196] = 6 +id[2197] = "2541-07-06T04:41:39" +ik[2197] = 46.863 +il[2197] = 85 +im[2197] = 0.1398 +ij[2197] = 3 +id[2198] = "2541-07-09T11:26:18" +ik[2198] = 31.543 +il[2198] = 15 +im[2198] = 0 +ij[2198] = 5 +id[2199] = "2541-08-05T07:58:52" +ik[2199] = -2.395 +il[2199] = -33 +im[2199] = 0.2094 +ij[2199] = 2 +id[2200] = "2541-11-04T00:35:16" +ik[2200] = 30.19 +il[2200] = 63 +im[2200] = 0 +ij[2200] = 6 +id[2201] = "2542-01-20T08:35:19" +ik[2201] = -1.862 +il[2201] = -40 +im[2201] = 0.15 +ij[2201] = 4 +id[2202] = "2542-02-05T20:15:47" +ik[2202] = 39.395 +il[2202] = -59 +im[2202] = 0.0783 +ij[2202] = 1 +id[2203] = "2542-06-08T04:19:20" +ik[2203] = 25.757 +il[2203] = 129 +im[2203] = 0 +ij[2203] = 5 +id[2204] = "2542-09-27T13:09:15" +ik[2204] = 26.209 +il[2204] = 105 +im[2204] = 0 +ij[2204] = 6 +id[2205] = "2543-05-06T14:22:16" +ik[2205] = 31.179 +il[2205] = -93 +im[2205] = 0 +ij[2205] = 5 +id[2206] = "2543-08-23T15:51:41" +ik[2206] = 45.797 +il[2206] = -133 +im[2206] = 0.0202 +ij[2206] = 3 +id[2207] = "2543-09-01T06:02:18" +ik[2207] = 30.707 +il[2207] = -82 +im[2207] = 0 +ij[2207] = 6 +id[2208] = "2543-09-15T04:46:53" +ik[2208] = -2.176 +il[2208] = -105 +im[2208] = 0.1519 +ij[2208] = 2 +id[2209] = "2544-03-20T13:32:14" +ik[2209] = -1.616 +il[2209] = -84 +im[2209] = 0.062 +ij[2209] = 4 +id[2210] = "2544-03-26T21:59:45" +ik[2210] = 37.303 +il[2210] = -151 +im[2210] = 0.1056 +ij[2210] = 1 +id[2211] = "2544-04-07T06:24:20" +ik[2211] = 25.924 +il[2211] = 62 +im[2211] = 0 +ij[2211] = 5 +id[2212] = "2544-07-27T13:59:13" +ik[2212] = 26.009 +il[2212] = 56 +im[2212] = 0 +ij[2212] = 6 +id[2213] = "2545-03-02T17:38:15" +ik[2213] = 30.695 +il[2213] = 156 +im[2213] = 0 +ij[2213] = 5 +id[2214] = "2545-06-28T09:20:18" +ik[2214] = 31.139 +il[2214] = 163 +im[2214] = 0 +ij[2214] = 6 +id[2215] = "2545-10-09T22:05:39" +ik[2215] = 41.142 +il[2215] = 84 +im[2215] = 0.1077 +ij[2215] = 3 +id[2216] = "2545-10-15T15:04:41" +ik[2216] = -1.882 +il[2216] = -116 +im[2216] = 0.0153 +ij[2216] = 2 +id[2217] = "2546-02-05T07:32:18" +ik[2217] = 26.145 +il[2217] = 8 +im[2217] = 0 +ij[2217] = 5 +id[2218] = "2546-05-07T07:33:44" +ik[2218] = 37.148 +il[2218] = -77 +im[2218] = 0.0317 +ij[2218] = 1 +id[2219] = "2546-05-07T16:53:08" +ik[2219] = -1.555 +il[2219] = 147 +im[2219] = 0.0231 +ij[2219] = 4 +id[2220] = "2546-05-27T15:36:17" +ik[2220] = 25.861 +il[2220] = -3 +im[2220] = 0 +ij[2220] = 6 +id[2221] = "2546-12-28T23:40:16" +ik[2221] = 30.132 +il[2221] = 5 +im[2221] = 0 +ij[2221] = 5 +id[2222] = "2547-04-25T12:54:17" +ik[2222] = 31.448 +il[2222] = 43 +im[2222] = 0 +ij[2222] = 6 +id[2223] = "2547-11-16T15:06:29" +ik[2223] = -1.685 +il[2223] = 28 +im[2223] = 0.1004 +ij[2223] = 2 +id[2224] = "2547-11-22T21:15:41" +ik[2224] = 37.748 +il[2224] = -4 +im[2224] = 0.0172 +ij[2224] = 3 +id[2225] = "2547-12-06T07:06:14" +ik[2225] = 26.42 +il[2225] = -22 +im[2225] = 0 +ij[2225] = 5 +id[2226] = "2548-03-26T17:26:09" +ik[2226] = 25.764 +il[2226] = -65 +im[2226] = 0 +ij[2226] = 6 +id[2227] = "2548-06-15T03:07:37" +ik[2227] = 38.578 +il[2227] = -156 +im[2227] = 0.0259 +ij[2227] = 1 +id[2228] = "2548-06-20T11:36:43" +ik[2228] = -1.635 +il[2228] = 128 +im[2228] = 0.1082 +ij[2228] = 4 +id[2229] = "2548-10-25T10:32:09" +ik[2229] = 29.533 +il[2229] = 144 +im[2229] = 0 +ij[2229] = 5 +id[2230] = "2549-02-19T18:53:16" +ik[2230] = 31.605 +il[2230] = -114 +im[2230] = 0 +ij[2230] = 6 +id[2231] = "2549-10-05T04:29:16" +ik[2231] = 26.748 +il[2231] = -21 +im[2231] = 0 +ij[2231] = 5 +id[2232] = "2549-12-21T12:52:17" +ik[2232] = -1.589 +il[2232] = -119 +im[2232] = 0.1042 +ij[2232] = 2 +id[2233] = "2549-12-31T07:58:39" +ik[2233] = 36.256 +il[2233] = 49 +im[2233] = 0.0584 +ij[2233] = 3 +id[2234] = "2550-01-24T18:53:08" +ik[2234] = 25.72 +il[2234] = -120 +im[2234] = 0 +ij[2234] = 6 +id[2235] = "2550-07-28T02:32:38" +ik[2235] = 41.556 +il[2235] = 105 +im[2235] = 0.1182 +ij[2235] = 1 +id[2236] = "2550-07-31T23:38:31" +ik[2236] = -1.844 +il[2236] = -174 +im[2236] = 0.104 +ij[2236] = 4 +id[2237] = "2550-08-23T03:47:13" +ik[2237] = 28.932 +il[2237] = -169 +im[2237] = 0 +ij[2237] = 5 +id[2238] = "2550-12-18T04:50:09" +ik[2238] = 31.597 +il[2238] = 31 +im[2238] = 0 +ij[2238] = 6 +id[2239] = "2551-08-04T23:03:07" +ik[2239] = 27.129 +il[2239] = 22 +im[2239] = 0 +ij[2239] = 5 +id[2240] = "2551-11-24T19:20:12" +ik[2240] = 25.728 +il[2240] = -161 +im[2240] = 0 +ij[2240] = 6 +id[2241] = "2552-02-05T13:34:58" +ik[2241] = -1.602 +il[2241] = 145 +im[2241] = 0.0368 +ij[2241] = 2 +id[2242] = "2552-02-10T06:24:37" +ik[2242] = 36.612 +il[2242] = -63 +im[2242] = 0.1113 +ij[2242] = 3 +id[2243] = "2552-06-20T04:13:09" +ik[2243] = 28.355 +il[2243] = 132 +im[2243] = 0 +ij[2243] = 5 +id[2244] = "2552-08-31T04:22:05" +ik[2244] = -2.155 +il[2244] = -104 +im[2244] = 0.0824 +ij[2244] = 4 +id[2245] = "2552-09-12T04:43:40" +ik[2245] = 45.329 +il[2245] = 9 +im[2245] = 0.0132 +ij[2245] = 1 +id[2246] = "2552-10-14T19:46:07" +ik[2246] = 31.431 +il[2246] = 104 +im[2246] = 0 +ij[2246] = 6 +id[2247] = "2553-06-03T14:12:11" +ik[2247] = 27.56 +il[2247] = 114 +im[2247] = 0 +ij[2247] = 5 +id[2248] = "2553-09-23T18:12:14" +ik[2248] = 25.789 +il[2248] = -178 +im[2248] = 0 +ij[2248] = 6 +id[2249] = "2554-04-01T09:32:41" +ik[2249] = 39.281 +il[2249] = -158 +im[2249] = 0.118 +ij[2249] = 3 +id[2250] = "2554-04-15T04:23:53" +ik[2250] = -1.803 +il[2250] = 50 +im[2250] = 0.1377 +ij[2250] = 2 +id[2251] = "2554-04-18T12:03:10" +ik[2251] = 27.819 +il[2251] = -34 +im[2251] = 0 +ij[2251] = 5 +id[2252] = "2554-08-12T16:11:08" +ik[2252] = 31.127 +il[2252] = 97 +im[2252] = 0 +ij[2252] = 6 +id[2253] = "2554-10-09T15:47:26" +ik[2253] = -2.375 +il[2253] = -47 +im[2253] = 0.1197 +ij[2253] = 4 +id[2254] = "2554-11-03T21:38:35" +ik[2254] = 45.686 +il[2254] = 114 +im[2254] = 0.026 +ij[2254] = 1 +id[2255] = "2555-04-03T01:19:12" +ik[2255] = 28.037 +il[2255] = -95 +im[2255] = 0 +ij[2255] = 5 +id[2256] = "2555-07-24T14:48:11" +ik[2256] = 25.903 +il[2256] = -161 +im[2256] = 0 +ij[2256] = 6 +id[2257] = "2556-02-15T03:06:11" +ik[2257] = 27.335 +il[2257] = 54 +im[2257] = 0 +ij[2257] = 5 +id[2258] = "2556-06-09T18:20:09" +ik[2258] = 30.717 +il[2258] = 6 +im[2258] = 0 +ij[2258] = 6 +id[2259] = "2556-06-10T14:36:31" +ik[2259] = 44.985 +il[2259] = -95 +im[2259] = 0.1402 +ij[2259] = 3 +id[2260] = "2556-07-11T11:21:41" +ik[2260] = -2.314 +il[2260] = -111 +im[2260] = 0.1082 +ij[2260] = 2 +id[2261] = "2556-12-21T19:36:48" +ik[2261] = -2.026 +il[2261] = 91 +im[2261] = 0.1378 +ij[2261] = 4 +id[2262] = "2557-01-12T13:34:36" +ik[2262] = 40.918 +il[2262] = 28 +im[2262] = 0.0735 +ij[2262] = 1 +id[2263] = "2557-01-30T07:51:10" +ik[2263] = 28.553 +il[2263] = 122 +im[2263] = 0 +ij[2263] = 5 +id[2264] = "2557-05-23T08:30:11" +ik[2264] = 26.073 +il[2264] = -102 +im[2264] = 0 +ij[2264] = 6 +id[2265] = "2557-12-14T00:49:06" +ik[2265] = 26.908 +il[2265] = 45 +im[2265] = 0 +ij[2265] = 5 +id[2266] = "2558-04-08T02:19:06" +ik[2266] = 30.237 +il[2266] = -169 +im[2266] = 0 +ij[2266] = 6 +id[2267] = "2558-08-05T21:12:31" +ik[2267] = 47.086 +il[2267] = -177 +im[2267] = 0.0881 +ij[2267] = 3 +id[2268] = "2558-09-01T14:36:23" +ik[2268] = -2.297 +il[2268] = -175 +im[2268] = 0.1508 +ij[2268] = 2 +id[2269] = "2558-11-29T09:16:07" +ik[2269] = 29.1 +il[2269] = 54 +im[2269] = 0 +ij[2269] = 5 +id[2270] = "2559-02-28T05:55:30" +ik[2270] = -1.686 +il[2270] = 47 +im[2270] = 0.0689 +ij[2270] = 4 +id[2271] = "2559-03-09T23:49:29" +ik[2271] = 37.853 +il[2271] = -130 +im[2271] = 0.1249 +ij[2271] = 1 +id[2272] = "2559-03-22T22:36:02" +ik[2272] = 26.298 +il[2272] = 10 +im[2272] = 0 +ij[2272] = 6 +id[2273] = "2559-10-13T04:35:02" +ik[2273] = 26.541 +il[2273] = -53 +im[2273] = 0 +ij[2273] = 5 +id[2274] = "2560-02-04T16:04:04" +ik[2274] = 29.717 +il[2274] = -68 +im[2274] = 0 +ij[2274] = 6 +id[2275] = "2560-09-21T01:14:35" +ik[2275] = 42.948 +il[2275] = 65 +im[2275] = 0.1111 +ij[2275] = 3 +id[2276] = "2560-09-27T05:13:03" +ik[2276] = 29.661 +il[2276] = 65 +im[2276] = 0 +ij[2276] = 5 +id[2277] = "2560-10-03T14:24:51" +ik[2277] = -1.988 +il[2277] = -11 +im[2277] = 0.12 +ij[2277] = 2 +id[2278] = "2561-01-19T08:20:06" +ik[2278] = 26.581 +il[2278] = -168 +im[2278] = 0 +ij[2278] = 6 +id[2279] = "2561-04-19T16:52:24" +ik[2279] = -1.561 +il[2279] = -168 +im[2279] = 0.0874 +ij[2279] = 4 +id[2280] = "2561-04-21T17:12:28" +ik[2280] = 37.012 +il[2280] = -154 +im[2280] = 0.049 +ij[2280] = 1 +id[2281] = "2561-08-11T13:39:04" +ik[2281] = 26.234 +il[2281] = 132 +im[2281] = 0 +ij[2281] = 5 +id[2282] = "2561-12-03T11:28:01" +ik[2282] = 29.185 +il[2282] = -48 +im[2282] = 0 +ij[2282] = 6 +id[2283] = "2562-07-26T19:24:05" +ik[2283] = 30.216 +il[2283] = 160 +im[2283] = 0 +ij[2283] = 5 +id[2284] = "2562-11-03T22:11:32" +ik[2284] = -1.749 +il[2284] = 12 +im[2284] = 0.0433 +ij[2284] = 2 +id[2285] = "2562-11-06T14:12:28" +ik[2285] = 38.844 +il[2285] = 157 +im[2285] = 0.023 +ij[2285] = 3 +id[2286] = "2562-11-18T13:00:02" +ik[2286] = 26.921 +il[2286] = 77 +im[2286] = 0 +ij[2286] = 6 +id[2287] = "2563-05-31T12:03:27" +ik[2287] = 37.832 +il[2287] = 132 +im[2287] = 0.0109 +ij[2287] = 1 +id[2288] = "2563-06-04T04:11:32" +ik[2288] = -1.588 +il[2288] = -74 +im[2288] = 0.0799 +ij[2288] = 4 +id[2289] = "2563-06-11T03:16:07" +ik[2289] = 25.987 +il[2289] = -111 +im[2289] = 0 +ij[2289] = 5 +id[2290] = "2563-10-02T12:14:06" +ik[2290] = 28.663 +il[2290] = -108 +im[2290] = 0 +ij[2290] = 6 +id[2291] = "2564-05-24T03:44:03" +ik[2291] = 30.736 +il[2291] = -21 +im[2291] = 0 +ij[2291] = 5 +id[2292] = "2564-09-16T11:50:03" +ik[2292] = 27.317 +il[2292] = 52 +im[2292] = 0 +ij[2292] = 6 +id[2293] = "2564-12-06T20:13:20" +ik[2293] = -1.615 +il[2293] = -158 +im[2293] = 0.1008 +ij[2293] = 2 +id[2294] = "2564-12-16T04:15:27" +ik[2294] = 36.623 +il[2294] = 172 +im[2294] = 0.0731 +ij[2294] = 3 +id[2295] = "2565-04-09T20:43:00" +ik[2295] = 25.799 +il[2295] = -50 +im[2295] = 0 +ij[2295] = 5 +id[2296] = "2565-07-10T18:55:26" +ik[2296] = 40.212 +il[2296] = -97 +im[2296] = 0.0942 +ij[2296] = 1 +id[2297] = "2565-07-16T21:48:27" +ik[2297] = -1.747 +il[2297] = -81 +im[2297] = 0.0903 +ij[2297] = 4 +id[2298] = "2565-07-31T17:58:59" +ik[2298] = 28.165 +il[2298] = 121 +im[2298] = 0 +ij[2298] = 6 +id[2299] = "2566-03-22T06:14:58" +ik[2299] = 31.189 +il[2299] = -116 +im[2299] = 0 +ij[2299] = 5 +id[2300] = "2566-07-16T04:08:58" +ik[2300] = 27.769 +il[2300] = 122 +im[2300] = 0 +ij[2300] = 6 +id[2301] = "2567-01-16T18:12:27" +ik[2301] = -1.582 +il[2301] = 100 +im[2301] = 0.066 +ij[2301] = 2 +id[2302] = "2567-01-24T17:20:32" +ik[2302] = 36.24 +il[2302] = -171 +im[2302] = 0.0962 +ij[2302] = 3 +id[2303] = "2567-02-07T17:16:04" +ik[2303] = 25.668 +il[2303] = -35 +im[2303] = 0 +ij[2303] = 5 +id[2304] = "2567-05-31T04:15:01" +ik[2304] = 27.703 +il[2304] = -76 +im[2304] = 0 +ij[2304] = 6 +id[2305] = "2567-08-20T17:38:41" +ik[2305] = -2.025 +il[2305] = 157 +im[2305] = 0.1396 +ij[2305] = 4 +id[2306] = "2567-08-25T15:33:33" +ik[2306] = 43.916 +il[2306] = -124 +im[2306] = 0.0741 +ij[2306] = 1 +id[2307] = "2568-01-18T03:05:02" +ik[2307] = 31.538 +il[2307] = -130 +im[2307] = 0 +ij[2307] = 5 +id[2308] = "2568-05-13T13:26:58" +ik[2308] = 28.27 +il[2308] = -63 +im[2308] = 0 +ij[2308] = 6 +id[2309] = "2568-12-07T16:14:00" +ik[2309] = 25.594 +il[2309] = -56 +im[2309] = 0 +ij[2309] = 5 +id[2310] = "2569-03-10T10:44:32" +ik[2310] = 37.893 +il[2310] = -167 +im[2310] = 0.0105 +ij[2310] = 3 +id[2311] = "2569-03-15T04:38:15" +ik[2311] = -1.688 +il[2311] = -30 +im[2311] = 0.1112 +ij[2311] = 2 +id[2312] = "2569-03-29T18:28:04" +ik[2312] = 27.283 +il[2312] = 29 +im[2312] = 0 +ij[2312] = 6 +id[2313] = "2569-09-21T04:09:49" +ik[2313] = -2.334 +il[2313] = 156 +im[2313] = 0.0605 +ij[2313] = 4 +id[2314] = "2569-10-12T08:50:29" +ik[2314] = 46.37 +il[2314] = -65 +im[2314] = 0.1455 +ij[2314] = 1 +id[2315] = "2569-11-14T18:27:04" +ik[2315] = 31.746 +il[2315] = -63 +im[2315] = 0 +ij[2315] = 5 +id[2316] = "2570-03-11T15:24:02" +ik[2316] = 28.812 +il[2316] = -147 +im[2316] = 0 +ij[2316] = 6 +id[2317] = "2570-10-07T16:58:56" +ik[2317] = 25.575 +il[2317] = -103 +im[2317] = 0 +ij[2317] = 5 +id[2318] = "2571-01-27T12:06:02" +ik[2318] = 26.91 +il[2318] = 84 +im[2318] = 0 +ij[2318] = 6 +id[2319] = "2571-05-13T05:18:23" +ik[2319] = 42.498 +il[2319] = -18 +im[2319] = 0.1173 +ij[2319] = 3 +id[2320] = "2571-06-09T21:07:37" +ik[2320] = -2.11 +il[2320] = 7 +im[2320] = 0.169 +ij[2320] = 2 +id[2321] = "2571-09-12T04:50:00" +ik[2321] = 31.789 +il[2321] = 78 +im[2321] = 0 +ij[2321] = 5 +id[2322] = "2571-11-20T22:31:11" +ik[2322] = -2.212 +il[2322] = -45 +im[2322] = 0.1893 +ij[2322] = 4 +id[2323] = "2571-12-17T00:26:29" +ik[2323] = 42.844 +il[2323] = 178 +im[2323] = 0.1389 +ij[2323] = 1 +id[2324] = "2572-01-07T10:07:58" +ik[2324] = 29.38 +il[2324] = -123 +im[2324] = 0 +ij[2324] = 6 +id[2325] = "2572-08-06T18:51:59" +ik[2325] = 25.61 +il[2325] = -167 +im[2325] = 0 +ij[2325] = 5 +id[2326] = "2572-11-26T08:32:55" +ik[2326] = 26.585 +il[2326] = 99 +im[2326] = 0 +ij[2326] = 6 +id[2327] = "2573-07-09T11:02:58" +ik[2327] = 31.655 +il[2327] = -80 +im[2327] = 0 +ij[2327] = 5 +id[2328] = "2573-07-18T06:11:22" +ik[2328] = 47.332 +il[2328] = 79 +im[2328] = 0.1392 +ij[2328] = 3 +id[2329] = "2573-08-16T10:57:52" +ik[2329] = -2.383 +il[2329] = -68 +im[2329] = 0.1494 +ij[2329] = 2 +id[2330] = "2573-11-03T22:20:55" +ik[2330] = 29.95 +il[2330] = -5 +im[2330] = 0 +ij[2330] = 6 +id[2331] = "2574-02-04T07:52:06" +ik[2331] = -1.789 +il[2331] = 10 +im[2331] = 0.0947 +ij[2331] = 4 +id[2332] = "2574-02-18T04:22:22" +ik[2332] = 38.74 +il[2332] = -167 +im[2332] = 0.066 +ij[2332] = 1 +id[2333] = "2574-06-06T21:16:59" +ik[2333] = 25.7 +il[2333] = 122 +im[2333] = 0 +ij[2333] = 5 +id[2334] = "2574-09-26T07:13:00" +ik[2334] = 26.312 +il[2334] = 81 +im[2334] = 0 +ij[2334] = 6 +id[2335] = "2575-05-06T14:32:55" +ik[2335] = 31.355 +il[2335] = 164 +im[2335] = 0 +ij[2335] = 5 +id[2336] = "2575-09-01T05:25:00" +ik[2336] = 30.491 +il[2336] = -173 +im[2336] = 0 +ij[2336] = 6 +id[2337] = "2575-09-03T02:21:24" +ik[2337] = 44.835 +il[2337] = 73 +im[2337] = 0.0837 +ij[2337] = 3 +id[2338] = "2575-09-22T10:49:00" +ik[2338] = -2.107 +il[2338] = 136 +im[2338] = 0.1397 +ij[2338] = 2 +id[2339] = "2576-03-31T20:17:54" +ik[2339] = -1.59 +il[2339] = 179 +im[2339] = 0.1184 +ij[2339] = 4 +id[2340] = "2576-04-05T13:09:24" +ik[2340] = 37.125 +il[2340] = -30 +im[2340] = 0.057 +ij[2340] = 1 +id[2341] = "2576-04-05T23:35:57" +ik[2341] = 25.844 +il[2341] = 51 +im[2341] = 0 +ij[2341] = 5 +id[2342] = "2576-07-26T07:31:52" +ik[2342] = 26.089 +il[2342] = 40 +im[2342] = 0 +ij[2342] = 6 +id[2343] = "2577-03-02T17:21:59" +ik[2343] = 30.919 +il[2343] = 58 +im[2343] = 0 +ij[2343] = 5 +id[2344] = "2577-06-28T09:20:52" +ik[2344] = 30.965 +il[2344] = 63 +im[2344] = 0 +ij[2344] = 6 +id[2345] = "2577-10-20T06:37:26" +ik[2345] = 40.243 +il[2345] = -44 +im[2345] = 0.0046 +ij[2345] = 3 +id[2346] = "2577-10-22T14:34:48" +ik[2346] = -1.83 +il[2346] = -140 +im[2346] = 0.0506 +ij[2346] = 2 +id[2347] = "2578-02-04T01:13:52" +ik[2347] = 26.042 +il[2347] = -9 +im[2347] = 0 +ij[2347] = 5 +id[2348] = "2578-05-16T02:51:21" +ik[2348] = 37.325 +il[2348] = -23 +im[2348] = 0.0078 +ij[2348] = 1 +id[2349] = "2578-05-17T18:02:48" +ik[2349] = -1.561 +il[2349] = 125 +im[2349] = 0.0444 +ij[2349] = 4 +id[2350] = "2578-05-26T08:52:56" +ik[2350] = 25.919 +il[2350] = -15 +im[2350] = 0 +ij[2350] = 6 +id[2351] = "2578-12-28T21:52:50" +ik[2351] = 30.385 +il[2351] = -71 +im[2351] = 0 +ij[2351] = 5 +id[2352] = "2579-04-25T12:30:57" +ik[2352] = 31.332 +il[2352] = -51 +im[2352] = 0 +ij[2352] = 6 +id[2353] = "2579-11-24T03:33:29" +ik[2353] = -1.656 +il[2353] = 173 +im[2353] = 0.0657 +ij[2353] = 2 +id[2354] = "2579-12-01T20:32:21" +ik[2354] = 37.268 +il[2354] = -7 +im[2354] = 0.093 +ij[2354] = 3 +id[2355] = "2579-12-05T01:32:52" +ik[2355] = 26.293 +il[2355] = -51 +im[2355] = 0 +ij[2355] = 5 +id[2356] = "2580-03-25T10:41:57" +ik[2356] = 25.8 +il[2356] = -77 +im[2356] = 0 +ij[2356] = 6 +id[2357] = "2580-06-24T06:23:19" +ik[2357] = 39.092 +il[2357] = 143 +im[2357] = 0.0638 +ij[2357] = 1 +id[2358] = "2580-06-30T06:52:36" +ik[2358] = -1.67 +il[2358] = -166 +im[2358] = 0.0858 +ij[2358] = 4 +id[2359] = "2580-10-25T06:24:54" +ik[2359] = 29.797 +il[2359] = 102 +im[2359] = 0 +ij[2359] = 5 +id[2360] = "2581-02-19T17:11:54" +ik[2360] = 31.558 +il[2360] = 172 +im[2360] = 0 +ij[2360] = 6 +id[2361] = "2581-10-03T23:57:50" +ik[2361] = 26.598 +il[2361] = -65 +im[2361] = 0 +ij[2361] = 5 +id[2362] = "2581-12-30T12:44:37" +ik[2362] = -1.582 +il[2362] = -130 +im[2362] = 0.0773 +ij[2362] = 2 +id[2363] = "2582-01-09T01:39:21" +ik[2363] = 36.171 +il[2363] = 128 +im[2363] = 0.1056 +ij[2363] = 3 +id[2364] = "2582-01-23T12:22:53" +ik[2364] = 25.732 +il[2364] = -136 +im[2364] = 0 +ij[2364] = 6 +id[2365] = "2582-08-07T07:04:22" +ik[2365] = 42.374 +il[2365] = 36 +im[2365] = 0.1023 +ij[2365] = 1 +id[2366] = "2582-08-08T16:57:57" +ik[2366] = -1.904 +il[2366] = -98 +im[2366] = 0.0769 +ij[2366] = 4 +id[2367] = "2582-08-22T20:43:52" +ik[2367] = 29.193 +il[2367] = -170 +im[2367] = 0 +ij[2367] = 5 +id[2368] = "2582-12-18T01:15:53" +ik[2368] = 31.622 +il[2368] = -15 +im[2368] = 0 +ij[2368] = 6 +id[2369] = "2583-08-03T19:50:52" +ik[2369] = 26.956 +il[2369] = -41 +im[2369] = 0 +ij[2369] = 5 +id[2370] = "2583-11-23T13:20:47" +ik[2370] = 25.718 +il[2370] = 175 +im[2370] = 0 +ij[2370] = 6 +id[2371] = "2584-02-18T06:49:05" +ik[2371] = -1.623 +il[2371] = -94 +im[2371] = 0.1071 +ij[2371] = 2 +id[2372] = "2584-02-20T07:00:20" +ik[2372] = 36.961 +il[2372] = -77 +im[2372] = 0.0842 +ij[2372] = 3 +id[2373] = "2584-06-19T17:58:50" +ik[2373] = 28.603 +il[2373] = -180 +im[2373] = 0 +ij[2373] = 5 +id[2374] = "2584-09-07T03:59:19" +ik[2374] = -2.226 +il[2374] = -128 +im[2374] = 0.109 +ij[2374] = 4 +id[2375] = "2584-09-22T19:47:16" +ik[2375] = 45.926 +il[2375] = 148 +im[2375] = 0.1189 +ij[2375] = 1 +id[2376] = "2584-10-14T13:55:46" +ik[2376] = 31.522 +il[2376] = 90 +im[2376] = 0 +ij[2376] = 6 +id[2377] = "2585-06-02T12:33:50" +ik[2377] = 27.365 +il[2377] = 28 +im[2377] = 0 +ij[2377] = 5 +id[2378] = "2585-09-22T12:58:53" +ik[2378] = 25.755 +il[2378] = 150 +im[2378] = 0 +ij[2378] = 6 +id[2379] = "2586-04-15T09:22:19" +ik[2379] = 40.275 +il[2379] = -125 +im[2379] = 0.0587 +ij[2379] = 3 +id[2380] = "2586-04-17T22:35:45" +ik[2380] = 28.047 +il[2380] = 60 +im[2380] = 0 +ij[2380] = 5 +id[2381] = "2586-05-04T15:48:40" +ik[2381] = -1.895 +il[2381] = -40 +im[2381] = 0.1375 +ij[2381] = 2 +id[2382] = "2586-08-12T07:54:46" +ik[2382] = 31.274 +il[2382] = 119 +im[2382] = 0 +ij[2382] = 6 +id[2383] = "2586-10-22T23:46:53" +ik[2383] = -2.349 +il[2383] = -134 +im[2383] = 0.1866 +ij[2383] = 4 +id[2384] = "2586-11-18T14:27:18" +ik[2384] = 44.833 +il[2384] = -94 +im[2384] = 0.1715 +ij[2384] = 1 +id[2385] = "2587-04-02T01:30:51" +ik[2385] = 27.823 +il[2385] = 152 +im[2385] = 0 +ij[2385] = 5 +id[2386] = "2587-07-23T10:39:47" +ik[2386] = 25.847 +il[2386] = 148 +im[2386] = 0 +ij[2386] = 6 +id[2387] = "2588-02-14T10:32:52" +ik[2387] = 27.539 +il[2387] = -166 +im[2387] = 0 +ij[2387] = 5 +id[2388] = "2588-06-09T07:32:52" +ik[2388] = 30.906 +il[2388] = 65 +im[2388] = 0 +ij[2388] = 6 +id[2389] = "2588-06-25T18:17:16" +ik[2389] = 46.165 +il[2389] = -106 +im[2389] = 0.1004 +ij[2389] = 3 +id[2390] = "2588-07-26T11:08:41" +ik[2390] = -2.377 +il[2390] = -63 +im[2390] = 0.1896 +ij[2390] = 2 +id[2391] = "2589-01-07T21:27:22" +ik[2391] = -1.931 +il[2391] = 124 +im[2391] = 0.1452 +ij[2391] = 4 +id[2392] = "2589-01-26T16:56:12" +ik[2392] = 40.023 +il[2392] = 10 +im[2392] = 0.1121 +ij[2392] = 1 +id[2393] = "2589-01-29T10:06:48" +ik[2393] = 28.323 +il[2393] = -20 +im[2393] = 0 +ij[2393] = 5 +id[2394] = "2589-05-22T05:42:51" +ik[2394] = 25.992 +il[2394] = -173 +im[2394] = 0 +ij[2394] = 6 +id[2395] = "2589-12-13T05:26:44" +ik[2395] = 27.087 +il[2395] = -134 +im[2395] = 0 +ij[2395] = 5 +id[2396] = "2590-04-07T12:58:45" +ik[2396] = 30.452 +il[2396] = -73 +im[2396] = 0 +ij[2396] = 6 +id[2397] = "2590-08-15T23:03:15" +ik[2397] = 46.469 +il[2397] = 155 +im[2397] = 0.0573 +ij[2397] = 3 +id[2398] = "2590-09-09T14:58:03" +ik[2398] = -2.232 +il[2398] = 159 +im[2398] = 0.0666 +ij[2398] = 2 +id[2399] = "2590-11-28T13:48:43" +ik[2399] = 28.859 +il[2399] = -122 +im[2399] = 0 +ij[2399] = 5 +id[2400] = "2591-03-12T14:14:30" +ik[2400] = -1.644 +il[2400] = -64 +im[2400] = 0.0629 +ij[2400] = 4 +id[2401] = "2591-03-20T09:21:18" +ik[2401] = 37.51 +il[2401] = 83 +im[2401] = 0.0685 +ij[2401] = 1 +id[2402] = "2591-03-21T21:27:47" +ik[2402] = 26.193 +il[2402] = -85 +im[2402] = 0 +ij[2402] = 6 +id[2403] = "2591-10-12T06:39:44" +ik[2403] = 26.693 +il[2403] = 166 +im[2403] = 0 +ij[2403] = 5 +id[2404] = "2592-02-04T00:13:49" +ik[2404] = 29.946 +il[2404] = 64 +im[2404] = 0 +ij[2404] = 6 +id[2405] = "2592-09-26T12:10:48" +ik[2405] = 29.416 +il[2405] = -146 +im[2405] = 0 +ij[2405] = 5 +id[2406] = "2592-10-01T20:37:14" +ik[2406] = 41.926 +il[2406] = 140 +im[2406] = 0.0808 +ij[2406] = 3 +id[2407] = "2592-10-10T12:39:24" +ik[2407] = -1.927 +il[2407] = -16 +im[2407] = 0.1065 +ij[2407] = 2 +id[2408] = "2593-01-18T09:10:48" +ik[2408] = 26.451 +il[2408] = 62 +im[2408] = 0 +ij[2408] = 6 +id[2409] = "2593-04-30T00:57:11" +ik[2409] = -1.555 +il[2409] = 67 +im[2409] = 0.0206 +ij[2409] = 4 +id[2410] = "2593-04-30T16:23:13" +ik[2410] = 37.056 +il[2410] = -158 +im[2410] = 0.0348 +ij[2410] = 1 +id[2411] = "2593-08-10T13:30:43" +ik[2411] = 26.36 +il[2411] = 22 +im[2411] = 0 +ij[2411] = 5 +id[2412] = "2593-12-02T17:12:46" +ik[2412] = 29.416 +il[2412] = 118 +im[2412] = 0 +ij[2412] = 6 +id[2413] = "2594-07-26T04:53:45" +ik[2413] = 29.976 +il[2413] = -88 +im[2413] = 0 +ij[2413] = 5 +id[2414] = "2594-11-11T04:02:05" +ik[2414] = -1.712 +il[2414] = -106 +im[2414] = 0.0144 +ij[2414] = 2 +id[2415] = "2594-11-16T00:08:12" +ik[2415] = 38.2 +il[2415] = -1 +im[2415] = 0.084 +ij[2415] = 3 +id[2416] = "2594-11-17T16:08:41" +ik[2416] = 26.766 +il[2416] = -76 +im[2416] = 0 +ij[2416] = 6 +id[2417] = "2595-06-09T09:19:09" +ik[2417] = 38.213 +il[2417] = 159 +im[2417] = 0.0683 +ij[2417] = 1 +id[2418] = "2595-06-10T01:14:44" +ik[2418] = 26.087 +il[2418] = 167 +im[2418] = 0 +ij[2418] = 5 +id[2419] = "2595-06-14T01:46:06" +ik[2419] = -1.612 +il[2419] = -43 +im[2419] = 0.0991 +ij[2419] = 4 +id[2420] = "2595-10-01T15:41:45" +ik[2420] = 28.888 +il[2420] = 93 +im[2420] = 0 +ij[2420] = 6 +id[2421] = "2596-05-23T15:47:39" +ik[2421] = 30.516 +il[2421] = 55 +im[2421] = 0 +ij[2421] = 5 +id[2422] = "2596-09-15T17:35:39" +ik[2422] = 27.138 +il[2422] = -144 +im[2422] = 0 +ij[2422] = 6 +id[2423] = "2596-12-15T02:16:20" +ik[2423] = -1.599 +il[2423] = 91 +im[2423] = 0.0612 +ij[2423] = 2 +id[2424] = "2596-12-24T20:21:15" +ik[2424] = 36.385 +il[2424] = -86 +im[2424] = 0.1109 +ij[2424] = 3 +id[2425] = "2597-04-08T17:07:43" +ik[2425] = 25.873 +il[2425] = -109 +im[2425] = 0 +ij[2425] = 5 +id[2426] = "2597-07-20T13:15:10" +ik[2426] = 40.928 +il[2426] = -17 +im[2426] = 0.1066 +ij[2426] = 1 +id[2427] = "2597-07-25T19:35:27" +ik[2427] = -1.798 +il[2427] = -61 +im[2427] = 0.0193 +ij[2427] = 4 +id[2428] = "2597-07-30T19:19:46" +ik[2428] = 28.377 +il[2428] = -8 +im[2428] = 0 +ij[2428] = 6 +id[2429] = "2598-03-21T20:49:46" +ik[2429] = 31.003 +il[2429] = -78 +im[2429] = 0 +ij[2429] = 5 +id[2430] = "2598-07-15T12:49:40" +ik[2430] = 27.566 +il[2430] = -117 +im[2430] = 0 +ij[2430] = 6 +id[2431] = "2599-01-27T14:44:48" +ik[2431] = -1.59 +il[2431] = 155 +im[2431] = 0.0621 +ij[2431] = 2 +id[2432] = "2599-02-03T00:24:11" +ik[2432] = 36.405 +il[2432] = 72 +im[2432] = 0.1124 +ij[2432] = 3 +id[2433] = "2599-02-06T12:24:46" +ik[2433] = 25.718 +il[2433] = -75 +im[2433] = 0 +ij[2433] = 5 +id[2434] = "2599-05-30T03:41:45" +ik[2434] = 27.899 +il[2434] = -178 +im[2434] = 0 +ij[2434] = 6 +id[2435] = "2599-08-27T08:04:48" +ik[2435] = -2.097 +il[2435] = -94 +im[2435] = 0.1314 +ij[2435] = 4 +id[2436] = "2599-09-05T04:28:07" +ik[2436] = 44.733 +il[2436] = 46 +im[2436] = 0.0725 +ij[2436] = 1 +id[2437] = "2600-01-17T20:05:42" +ik[2437] = 31.402 +il[2437] = -126 +im[2437] = 0 +ij[2437] = 5 +id[2438] = "2600-05-14T01:13:43" +ik[2438] = 28.047 +il[2438] = 11 +im[2438] = 0 +ij[2438] = 6 +id[2439] = "2600-12-07T10:25:40" +ik[2439] = 25.619 +il[2439] = -81 +im[2439] = 0 +ij[2439] = 5 +id[2440] = "2601-03-23T11:00:05" +ik[2440] = 38.598 +il[2440] = -159 +im[2440] = 0.1092 +ij[2440] = 3 +id[2441] = "2601-03-29T16:16:36" +ik[2441] = 27.459 +il[2441] = -49 +im[2441] = 0 +ij[2441] = 6 +id[2442] = "2601-04-01T23:25:42" +ik[2442] = -1.744 +il[2442] = 105 +im[2442] = 0.0218 +ij[2442] = 2 +id[2443] = "2601-10-01T23:00:49" +ik[2443] = -2.368 +il[2443] = -129 +im[2443] = 0.1471 +ij[2443] = 4 +id[2444] = "2601-10-25T14:13:12" +ik[2444] = 46.144 +il[2444] = -124 +im[2444] = 0.0347 +ij[2444] = 1 +id[2445] = "2601-11-15T13:47:42" +ik[2445] = 31.675 +il[2445] = -94 +im[2445] = 0 +ij[2445] = 5 +id[2446] = "2602-03-12T06:23:36" +ik[2446] = 28.573 +il[2446] = -117 +im[2446] = 0 +ij[2446] = 6 +id[2447] = "2602-10-07T10:28:42" +ik[2447] = 25.576 +il[2447] = -118 +im[2447] = 0 +ij[2447] = 5 +id[2448] = "2603-01-27T08:30:37" +ik[2448] = 27.065 +il[2448] = 27 +im[2448] = 0 +ij[2448] = 6 +id[2449] = "2603-05-30T21:52:07" +ik[2449] = 43.885 +il[2449] = 150 +im[2449] = 0.1604 +ij[2449] = 3 +id[2450] = "2603-06-30T01:15:04" +ik[2450] = -2.233 +il[2450] = 26 +im[2450] = 0.2097 +ij[2450] = 2 +id[2451] = "2603-09-13T02:15:38" +ik[2451] = 31.793 +il[2451] = 16 +im[2451] = 0 +ij[2451] = 5 +id[2452] = "2603-12-09T21:23:04" +ik[2452] = -2.11 +il[2452] = 45 +im[2452] = 0.1688 +ij[2452] = 4 +id[2453] = "2604-01-02T21:14:06" +ik[2453] = 41.741 +il[2453] = -84 +im[2453] = 0.0242 +ij[2453] = 1 +id[2454] = "2604-01-08T04:12:34" +ik[2454] = 29.132 +il[2454] = -138 +im[2454] = 0 +ij[2454] = 6 +id[2455] = "2604-08-06T11:57:41" +ik[2455] = 25.587 +il[2455] = -176 +im[2455] = 0 +ij[2455] = 5 +id[2456] = "2604-11-26T03:48:40" +ik[2456] = 26.72 +il[2456] = 58 +im[2456] = 0 +ij[2456] = 6 +id[2457] = "2605-07-10T10:08:41" +ik[2457] = 31.736 +il[2457] = -166 +im[2457] = 0 +ij[2457] = 5 +id[2458] = "2605-07-30T02:53:05" +ik[2458] = 47.357 +il[2458] = 134 +im[2458] = 0.021 +ij[2458] = 3 +id[2459] = "2605-08-27T02:44:52" +ik[2459] = -2.343 +il[2459] = 51 +im[2459] = 0.0369 +ij[2459] = 2 +id[2460] = "2605-11-04T19:10:33" +ik[2460] = 29.704 +il[2460] = -60 +im[2460] = 0 +ij[2460] = 6 +id[2461] = "2606-02-19T05:19:33" +ik[2461] = -1.728 +il[2461] = 76 +im[2461] = 0.1015 +ij[2461] = 4 +id[2462] = "2606-03-02T16:59:05" +ik[2462] = 38.205 +il[2462] = 10 +im[2462] = 0.1156 +ij[2462] = 1 +id[2463] = "2606-06-06T14:12:37" +ik[2463] = 25.654 +il[2463] = 115 +im[2463] = 0 +ij[2463] = 5 +id[2464] = "2606-09-26T01:35:36" +ik[2464] = 26.424 +il[2464] = 53 +im[2464] = 0 +ij[2464] = 6 +id[2465] = "2607-05-07T14:35:39" +ik[2465] = 31.506 +il[2465] = 63 +im[2465] = 0 +ij[2465] = 5 +id[2466] = "2607-09-02T04:13:35" +ik[2466] = 30.262 +il[2466] = 104 +im[2466] = 0 +ij[2466] = 6 +id[2467] = "2607-09-14T19:30:08" +ik[2467] = 43.798 +il[2467] = -178 +im[2467] = 0.1289 +ij[2467] = 3 +id[2468] = "2607-09-30T11:47:07" +ik[2468] = -2.04 +il[2468] = 91 +im[2468] = 0.1088 +ij[2468] = 2 +id[2469] = "2608-04-05T16:39:38" +ik[2469] = 25.774 +il[2469] = 42 +im[2469] = 0 +ij[2469] = 5 +id[2470] = "2608-04-12T17:05:21" +ik[2470] = -1.571 +il[2470] = -133 +im[2470] = 0.0387 +ij[2470] = 4 +id[2471] = "2608-04-15T21:05:02" +ik[2471] = 37.03 +il[2471] = -163 +im[2471] = 0.0399 +ij[2471] = 1 +id[2472] = "2608-07-26T01:15:36" +ik[2472] = 26.179 +il[2472] = 22 +im[2472] = 0 +ij[2472] = 6 +id[2473] = "2609-03-03T17:24:34" +ik[2473] = 31.124 +il[2473] = -43 +im[2473] = 0 +ij[2473] = 5 +id[2474] = "2609-06-29T09:13:32" +ik[2474] = 30.77 +il[2474] = -35 +im[2474] = 0 +ij[2474] = 6 +id[2475] = "2609-10-30T15:47:08" +ik[2475] = -1.784 +il[2475] = 170 +im[2475] = 0.0441 +ij[2475] = 2 +id[2476] = "2609-10-31T06:52:07" +ik[2476] = 39.432 +il[2476] = -50 +im[2476] = 0.0572 +ij[2476] = 3 +id[2477] = "2610-02-03T18:39:36" +ik[2477] = 25.948 +il[2477] = -23 +im[2477] = 0 +ij[2477] = 5 +id[2478] = "2610-05-25T21:45:04" +ik[2478] = 37.575 +il[2478] = 37 +im[2478] = 0.0852 +ij[2478] = 1 +id[2479] = "2610-05-26T02:13:37" +ik[2479] = 25.986 +il[2479] = -29 +im[2479] = 0 +ij[2479] = 6 +id[2480] = "2610-05-28T17:14:15" +ik[2480] = -1.573 +il[2480] = 132 +im[2480] = 0.1103 +ij[2480] = 4 +id[2481] = "2610-12-29T20:53:31" +ik[2481] = 30.627 +il[2481] = -158 +im[2481] = 0 +ij[2481] = 5 +id[2482] = "2611-04-26T12:24:37" +ik[2482] = 31.188 +il[2482] = -148 +im[2482] = 0 +ij[2482] = 6 +id[2483] = "2611-12-02T21:33:49" +ik[2483] = -1.631 +il[2483] = -122 +im[2483] = 0.0484 +ij[2483] = 2 +id[2484] = "2611-12-04T19:38:29" +ik[2484] = 26.176 +il[2484] = -75 +im[2484] = 0 +ij[2484] = 5 +id[2485] = "2611-12-11T15:57:01" +ik[2485] = 36.876 +il[2485] = 47 +im[2485] = 0.1022 +ij[2485] = 3 +id[2486] = "2612-03-25T03:55:35" +ik[2486] = 25.845 +il[2486] = -89 +im[2486] = 0 +ij[2486] = 6 +id[2487] = "2612-07-04T14:24:00" +ik[2487] = 39.68 +il[2487] = 14 +im[2487] = 0.1137 +ij[2487] = 1 +id[2488] = "2612-07-10T22:08:30" +ik[2488] = -1.71 +il[2488] = -41 +im[2488] = 0.0356 +ij[2488] = 4 +id[2489] = "2612-10-26T03:24:37" +ik[2489] = 30.058 +il[2489] = 44 +im[2489] = 0 +ij[2489] = 5 +id[2490] = "2613-02-20T16:09:33" +ik[2490] = 31.479 +il[2490] = 88 +im[2490] = 0 +ij[2490] = 6 +id[2491] = "2613-10-03T18:58:36" +ik[2491] = 26.458 +il[2491] = -102 +im[2491] = 0 +ij[2491] = 5 +id[2492] = "2614-01-10T01:45:24" +ik[2492] = -1.58 +il[2492] = 26 +im[2492] = 0.0087 +ij[2492] = 2 +id[2493] = "2614-01-18T22:26:58" +ik[2493] = 36.173 +il[2493] = 161 +im[2493] = 0.1088 +ij[2493] = 3 +id[2494] = "2614-01-23T05:44:35" +ik[2494] = 25.755 +il[2494] = -150 +im[2494] = 0 +ij[2494] = 6 +id[2495] = "2614-08-16T19:54:17" +ik[2495] = -1.97 +il[2495] = -172 +im[2495] = 0.056 +ij[2495] = 4 +id[2496] = "2614-08-18T16:33:01" +ik[2496] = 43.224 +il[2496] = -104 +im[2496] = 0.0162 +ij[2496] = 1 +id[2497] = "2614-08-23T15:00:34" +ik[2497] = 29.456 +il[2497] = 173 +im[2497] = 0 +ij[2497] = 5 +id[2498] = "2614-12-18T22:33:36" +ik[2498] = 31.615 +il[2498] = -74 +im[2498] = 0 +ij[2498] = 6 +id[2499] = "2615-08-03T16:01:29" +ik[2499] = 26.793 +il[2499] = -95 +im[2499] = 0 +ij[2499] = 5 +id[2500] = "2615-11-23T07:06:31" +ik[2500] = 25.717 +il[2500] = 155 +im[2500] = 0 +ij[2500] = 6 +id[2501] = "2616-03-02T21:15:59" +ik[2501] = 37.425 +il[2501] = 68 +im[2501] = 0.0072 +ij[2501] = 3 +id[2502] = "2616-03-04T07:15:12" +ik[2502] = -1.654 +il[2502] = -68 +im[2502] = 0.0316 +ij[2502] = 2 +id[2503] = "2616-06-20T09:08:29" +ik[2503] = 28.857 +il[2503] = -153 +im[2503] = 0 +ij[2503] = 5 +id[2504] = "2616-09-15T19:13:25" +ik[2504] = -2.291 +il[2504] = -21 +im[2504] = 0.1287 +ij[2504] = 4 +id[2505] = "2616-10-04T16:48:00" +ik[2505] = 46.294 +il[2505] = -158 +im[2505] = 0.149 +ij[2505] = 1 +id[2506] = "2616-10-15T09:06:28" +ik[2506] = 31.585 +il[2506] = 62 +im[2506] = 0 +ij[2506] = 6 +id[2507] = "2617-06-02T10:12:34" +ik[2507] = 27.18 +il[2507] = -47 +im[2507] = 0 +ij[2507] = 5 +id[2508] = "2617-09-22T07:23:31" +ik[2508] = 25.732 +il[2508] = 117 +im[2508] = 0 +ij[2508] = 6 +id[2509] = "2618-04-18T10:31:26" +ik[2509] = 28.284 +il[2509] = 134 +im[2509] = 0 +ij[2509] = 5 +id[2510] = "2618-05-01T15:01:00" +ik[2510] = 41.441 +il[2510] = -168 +im[2510] = 0.1587 +ij[2510] = 3 +id[2511] = "2618-05-26T00:00:33" +ik[2511] = -2.008 +il[2511] = -73 +im[2511] = 0.1484 +ij[2511] = 2 +id[2512] = "2618-08-13T00:42:28" +ik[2512] = 31.399 +il[2512] = 125 +im[2512] = 0 +ij[2512] = 6 +id[2513] = "2618-11-08T13:06:20" +ik[2513] = -2.286 +il[2513] = 79 +im[2513] = 0.1904 +ij[2513] = 4 +id[2514] = "2618-12-05T10:24:57" +ik[2514] = 43.767 +il[2514] = 20 +im[2514] = 0.1138 +ij[2514] = 1 +id[2515] = "2619-04-02T00:52:24" +ik[2515] = 27.617 +il[2515] = 52 +im[2515] = 0 +ij[2515] = 5 +id[2516] = "2619-07-23T06:00:25" +ik[2516] = 25.8 +il[2516] = 108 +im[2516] = 0 +ij[2516] = 6 +id[2517] = "2620-02-14T19:19:29" +ik[2517] = 27.754 +il[2517] = -46 +im[2517] = 0 +ij[2517] = 5 +id[2518] = "2620-06-09T21:51:24" +ik[2518] = 31.079 +il[2518] = 107 +im[2518] = 0 +ij[2518] = 6 +id[2519] = "2620-07-10T03:41:02" +ik[2519] = 46.99 +il[2519] = 141 +im[2519] = 0.1375 +ij[2519] = 3 +id[2520] = "2620-08-09T03:17:02" +ik[2520] = -2.396 +il[2520] = 78 +im[2520] = 0.1285 +ij[2520] = 2 +id[2521] = "2621-01-24T19:49:55" +ik[2521] = -1.847 +il[2521] = -163 +im[2521] = 0.0229 +ij[2521] = 4 +id[2522] = "2621-01-29T11:26:26" +ik[2522] = 28.1 +il[2522] = -149 +im[2522] = 0 +ij[2522] = 5 +id[2523] = "2621-02-09T19:20:55" +ik[2523] = 39.262 +il[2523] = -5 +im[2523] = 0.0942 +ij[2523] = 1 +id[2524] = "2621-05-22T02:16:30" +ik[2524] = 25.922 +il[2524] = 126 +im[2524] = 0 +ij[2524] = 6 +id[2525] = "2621-12-13T11:15:30" +ik[2525] = 27.277 +il[2525] = 26 +im[2525] = 0 +ij[2525] = 5 +id[2526] = "2622-04-08T00:45:30" +ik[2526] = 30.658 +il[2526] = 6 +im[2526] = 0 +ij[2526] = 6 +id[2527] = "2622-08-27T03:57:53" +ik[2527] = 45.624 +il[2527] = 83 +im[2527] = 0.1136 +ij[2527] = 3 +id[2528] = "2622-09-18T03:12:36" +ik[2528] = -2.163 +il[2528] = -50 +im[2528] = 0.0571 +ij[2528] = 2 +id[2529] = "2622-11-28T17:20:24" +ik[2529] = 28.622 +il[2529] = 77 +im[2529] = 0 +ij[2529] = 5 +id[2530] = "2623-03-21T19:33:27" +ik[2530] = 26.099 +il[2530] = -168 +im[2530] = 0 +ij[2530] = 6 +id[2531] = "2623-03-25T07:14:23" +ik[2531] = -1.61 +il[2531] = 49 +im[2531] = 0.1165 +ij[2531] = 4 +id[2532] = "2623-03-31T07:48:00" +ik[2532] = 37.261 +il[2532] = 97 +im[2532] = 0.0015 +ij[2532] = 1 +id[2533] = "2623-10-12T09:48:23" +ik[2533] = 26.857 +il[2533] = 8 +im[2533] = 0 +ij[2533] = 5 +id[2534] = "2624-02-04T09:28:22" +ik[2534] = 30.17 +il[2534] = 180 +im[2534] = 0 +ij[2534] = 6 +id[2535] = "2624-09-26T18:05:28" +ik[2535] = 29.171 +il[2535] = 19 +im[2535] = 0 +ij[2535] = 5 +id[2536] = "2624-10-13T11:05:51" +ik[2536] = 40.963 +il[2536] = -74 +im[2536] = 0.0254 +ij[2536] = 3 +id[2537] = "2624-10-18T11:12:38" +ik[2537] = -1.872 +il[2537] = -27 +im[2537] = 0.114 +ij[2537] = 2 +id[2538] = "2625-01-18T09:07:29" +ik[2538] = 26.332 +il[2538] = -49 +im[2538] = 0 +ij[2538] = 6 +id[2539] = "2625-05-10T12:56:52" +ik[2539] = 37.174 +il[2539] = -124 +im[2539] = 0.0806 +ij[2539] = 1 +id[2540] = "2625-05-11T04:40:38" +ik[2540] = -1.556 +il[2540] = 7 +im[2540] = 0.0894 +ij[2540] = 4 +id[2541] = "2625-08-10T14:18:23" +ik[2541] = 26.498 +il[2541] = -101 +im[2541] = 0 +ij[2541] = 5 +id[2542] = "2625-12-02T23:59:25" +ik[2542] = 29.647 +il[2542] = -90 +im[2542] = 0 +ij[2542] = 6 +id[2543] = "2626-07-26T13:17:28" +ik[2543] = 29.733 +il[2543] = 41 +im[2543] = 0 +ij[2543] = 5 +id[2544] = "2626-11-17T18:15:24" +ik[2544] = 26.622 +il[2544] = 141 +im[2544] = 0 +ij[2544] = 6 +id[2545] = "2626-11-19T13:24:12" +ik[2545] = -1.679 +il[2545] = 85 +im[2545] = 0.0132 +ij[2545] = 2 +id[2546] = "2626-11-26T03:39:53" +ik[2546] = 37.648 +il[2546] = -65 +im[2546] = 0.1016 +ij[2546] = 3 +id[2547] = "2627-06-10T00:00:25" +ik[2547] = 26.198 +il[2547] = 74 +im[2547] = 0 +ij[2547] = 5 +id[2548] = "2627-06-19T09:27:56" +ik[2548] = 38.667 +il[2548] = 143 +im[2548] = 0.1118 +ij[2548] = 1 +id[2549] = "2627-06-24T22:38:52" +ik[2549] = -1.641 +il[2549] = -1 +im[2549] = 0.067 +ij[2549] = 4 +id[2550] = "2627-10-01T20:06:25" +ik[2550] = 29.116 +il[2550] = -81 +im[2550] = 0 +ij[2550] = 6 +id[2551] = "2628-05-24T02:44:26" +ik[2551] = 30.285 +il[2551] = 146 +im[2551] = 0 +ij[2551] = 5 +id[2552] = "2628-09-15T22:11:25" +ik[2552] = 26.969 +il[2552] = 37 +im[2552] = 0 +ij[2552] = 6 +id[2553] = "2628-12-24T17:24:13" +ik[2553] = -1.587 +il[2553] = -153 +im[2553] = 0.0381 +ij[2553] = 2 +id[2554] = "2629-01-03T12:40:53" +ik[2554] = 36.232 +il[2554] = 13 +im[2554] = 0.0935 +ij[2554] = 3 +id[2555] = "2629-04-08T14:10:19" +ik[2555] = 25.959 +il[2555] = -176 +im[2555] = 0 +ij[2555] = 5 +id[2556] = "2629-07-30T21:34:24" +ik[2556] = 28.596 +il[2556] = -150 +im[2556] = 0 +ij[2556] = 6 +id[2557] = "2629-07-31T13:33:53" +ik[2557] = 41.706 +il[2557] = -24 +im[2557] = 0.0773 +ij[2557] = 1 +id[2558] = "2629-08-04T02:02:27" +ik[2558] = -1.855 +il[2558] = -177 +im[2558] = 0.009 +ij[2558] = 4 +id[2559] = "2630-03-22T10:18:20" +ik[2559] = 30.8 +il[2559] = -23 +im[2559] = 0 +ij[2559] = 5 +id[2560] = "2630-07-15T20:12:20" +ik[2560] = 27.374 +il[2560] = 24 +im[2560] = 0 +ij[2560] = 6 +id[2561] = "2631-02-06T08:04:24" +ik[2561] = 25.778 +il[2561] = -122 +im[2561] = 0 +ij[2561] = 5 +id[2562] = "2631-02-09T10:12:14" +ik[2562] = -1.605 +il[2562] = -125 +im[2562] = 0.1068 +ij[2562] = 2 +id[2563] = "2631-02-13T16:05:57" +ik[2563] = 36.669 +il[2563] = -172 +im[2563] = 0.0462 +ij[2563] = 3 +id[2564] = "2631-05-30T03:56:18" +ik[2564] = 28.102 +il[2564] = 69 +im[2564] = 0 +ij[2564] = 6 +id[2565] = "2631-09-04T00:33:35" +ik[2565] = -2.169 +il[2565] = -15 +im[2565] = 0.1512 +ij[2565] = 4 +id[2566] = "2631-09-16T17:59:51" +ik[2566] = 45.457 +il[2566] = -152 +im[2566] = 0.1296 +ij[2566] = 1 +id[2567] = "2632-01-18T12:03:18" +ik[2567] = 31.242 +il[2567] = -108 +im[2567] = 0 +ij[2567] = 5 +id[2568] = "2632-05-13T11:39:24" +ik[2568] = 27.832 +il[2568] = 107 +im[2568] = 0 +ij[2568] = 6 +id[2569] = "2632-12-06T04:59:22" +ik[2569] = 25.654 +il[2569] = -112 +im[2569] = 0 +ij[2569] = 5 +id[2570] = "2633-03-28T14:45:18" +ik[2570] = 27.645 +il[2570] = -136 +im[2570] = 0 +ij[2570] = 6 +id[2571] = "2633-04-05T11:57:50" +ik[2571] = 39.457 +il[2571] = -152 +im[2571] = 0.0669 +ij[2571] = 3 +id[2572] = "2633-04-20T08:03:23" +ik[2572] = -1.819 +il[2572] = 46 +im[2572] = 0.0651 +ij[2572] = 2 +id[2573] = "2633-10-13T13:09:10" +ik[2573] = -2.373 +il[2573] = 34 +im[2573] = 0.1711 +ij[2573] = 4 +id[2574] = "2633-11-08T02:58:50" +ik[2574] = 45.551 +il[2574] = 78 +im[2574] = 0.1648 +ij[2574] = 1 +id[2575] = "2633-11-15T08:09:18" +ik[2575] = 31.575 +il[2575] = -110 +im[2575] = 0 +ij[2575] = 5 +id[2576] = "2634-03-11T19:59:22" +ik[2576] = 28.34 +il[2576] = -65 +im[2576] = 0 +ij[2576] = 6 +id[2577] = "2634-10-06T04:14:18" +ik[2577] = 25.587 +il[2577] = -137 +im[2577] = 0 +ij[2577] = 5 +id[2578] = "2635-01-26T05:28:19" +ik[2578] = 27.23 +il[2578] = -38 +im[2578] = 0 +ij[2578] = 6 +id[2579] = "2635-06-16T03:48:48" +ik[2579] = 45.232 +il[2579] = 114 +im[2579] = 0.0709 +ij[2579] = 3 +id[2580] = "2635-07-17T01:45:38" +ik[2580] = -2.33 +il[2580] = 81 +im[2580] = 0.1723 +ij[2580] = 2 +id[2581] = "2635-09-12T22:50:18" +ik[2581] = 31.763 +il[2581] = -33 +im[2581] = 0 +ij[2581] = 5 +id[2582] = "2635-12-27T16:03:25" +ik[2582] = -2.008 +il[2582] = -167 +im[2582] = 0.0916 +ij[2582] = 4 +id[2583] = "2636-01-07T20:58:16" +ik[2583] = 28.886 +il[2583] = -134 +im[2583] = 0 +ij[2583] = 6 +id[2584] = "2636-01-17T21:07:46" +ik[2584] = 40.739 +il[2584] = -41 +im[2584] = 0.1177 +ij[2584] = 1 +id[2585] = "2636-08-05T05:11:19" +ik[2585] = 25.575 +il[2585] = 173 +im[2585] = 0 +ij[2585] = 5 +id[2586] = "2636-11-24T23:31:20" +ik[2586] = 26.863 +il[2586] = 11 +im[2586] = 0 +ij[2586] = 6 +id[2587] = "2637-07-10T08:36:14" +ik[2587] = 31.783 +il[2587] = 116 +im[2587] = 0 +ij[2587] = 5 +id[2588] = "2637-08-09T08:20:49" +ik[2588] = 46.992 +il[2588] = 53 +im[2588] = 0.0918 +ij[2588] = 3 +id[2589] = "2637-09-04T17:25:12" +ik[2589] = -2.286 +il[2589] = 176 +im[2589] = 0.0394 +ij[2589] = 2 +id[2590] = "2637-11-04T14:48:20" +ik[2590] = 29.456 +il[2590] = -97 +im[2590] = 0 +ij[2590] = 6 +id[2591] = "2638-03-04T04:46:59" +ik[2591] = -1.677 +il[2591] = 104 +im[2591] = 0.0904 +ij[2591] = 4 +id[2592] = "2638-03-13T13:19:46" +ik[2592] = 37.78 +il[2592] = 64 +im[2592] = 0.0533 +ij[2592] = 1 +id[2593] = "2638-06-05T07:11:16" +ik[2593] = 25.617 +il[2593] = 107 +im[2593] = 0 +ij[2593] = 5 +id[2594] = "2638-09-24T20:18:14" +ik[2594] = 26.546 +il[2594] = 21 +im[2594] = 0 +ij[2594] = 6 +id[2595] = "2639-05-07T14:20:15" +ik[2595] = 31.627 +il[2595] = -34 +im[2595] = 0 +ij[2595] = 5 +id[2596] = "2639-09-02T02:14:12" +ik[2596] = 30.024 +il[2596] = 32 +im[2596] = 0 +ij[2596] = 6 +id[2597] = "2639-09-25T15:52:50" +ik[2597] = 42.749 +il[2597] = -117 +im[2597] = 0.034 +ij[2597] = 3 +id[2598] = "2639-10-07T10:37:14" +ik[2598] = -1.976 +il[2598] = 77 +im[2598] = 0.1145 +ij[2598] = 2 +id[2599] = "2640-04-04T09:37:17" +ik[2599] = 25.714 +il[2599] = 35 +im[2599] = 0 +ij[2599] = 5 +id[2600] = "2640-04-23T06:02:34" +ik[2600] = -1.559 +il[2600] = 31 +im[2600] = 0.0397 +ij[2600] = 4 +id[2601] = "2640-04-24T23:33:47" +ik[2601] = 37.013 +il[2601] = 145 +im[2601] = 0.0736 +ij[2601] = 1 +id[2602] = "2640-07-24T19:14:18" +ik[2602] = 26.279 +il[2602] = 0 +im[2602] = 0 +ij[2602] = 6 +id[2603] = "2641-03-03T17:36:14" +ik[2603] = 31.308 +il[2603] = -147 +im[2603] = 0 +ij[2603] = 5 +id[2604] = "2641-06-29T08:46:19" +ik[2604] = 30.559 +il[2604] = -128 +im[2604] = 0 +ij[2604] = 6 +id[2605] = "2641-11-06T19:20:48" +ik[2605] = -1.742 +il[2605] = 86 +im[2605] = 0.0809 +ij[2605] = 2 +id[2606] = "2641-11-09T22:51:44" +ik[2606] = 38.713 +il[2606] = 63 +im[2606] = 0.1132 +ij[2606] = 3 +id[2607] = "2642-02-02T11:54:14" +ik[2607] = 25.865 +il[2607] = -35 +im[2607] = 0 +ij[2607] = 5 +id[2608] = "2642-05-24T19:43:14" +ik[2608] = 26.063 +il[2608] = -44 +im[2608] = 0 +ij[2608] = 6 +id[2609] = "2642-06-03T17:27:44" +ik[2609] = 37.897 +il[2609] = 85 +im[2609] = 0.0996 +ij[2609] = 1 +id[2610] = "2642-06-07T15:19:55" +ik[2610] = -1.592 +il[2610] = 155 +im[2610] = 0.0781 +ij[2610] = 4 +id[2611] = "2642-12-29T20:28:10" +ik[2611] = 30.856 +il[2611] = 107 +im[2611] = 0 +ij[2611] = 5 +id[2612] = "2643-04-26T12:26:12" +ik[2612] = 31.021 +il[2612] = 112 +im[2612] = 0 +ij[2612] = 6 +id[2613] = "2643-12-03T13:24:14" +ik[2613] = 26.07 +il[2613] = -93 +im[2613] = 0 +ij[2613] = 5 +id[2614] = "2643-12-10T21:35:03" +ik[2614] = -1.611 +il[2614] = -145 +im[2614] = 0.0149 +ij[2614] = 2 +id[2615] = "2643-12-20T08:54:48" +ik[2615] = 36.57 +il[2615] = 136 +im[2615] = 0.092 +ij[2615] = 3 +id[2616] = "2644-03-23T21:10:13" +ik[2616] = 25.899 +il[2616] = -101 +im[2616] = 0 +ij[2616] = 6 +id[2617] = "2644-07-14T03:53:42" +ik[2617] = 40.34 +il[2617] = 164 +im[2617] = 0.0956 +ij[2617] = 1 +id[2618] = "2644-07-20T05:36:50" +ik[2618] = -1.756 +il[2618] = -162 +im[2618] = 0.0428 +ij[2618] = 4 +id[2619] = "2644-10-26T01:22:13" +ik[2619] = 30.313 +il[2619] = -28 +im[2619] = 0 +ij[2619] = 5 +id[2620] = "2645-02-20T15:39:10" +ik[2620] = 31.371 +il[2620] = -3 +im[2620] = 0 +ij[2620] = 6 +id[2621] = "2645-10-02T13:32:09" +ik[2621] = 26.328 +il[2621] = -132 +im[2621] = 0 +ij[2621] = 5 +id[2622] = "2646-01-20T06:47:04" +ik[2622] = -1.583 +il[2622] = -52 +im[2622] = 0.0643 +ij[2622] = 2 +id[2623] = "2646-01-21T23:01:14" +ik[2623] = 25.787 +il[2623] = -163 +im[2623] = 0 +ij[2623] = 6 +id[2624] = "2646-01-28T00:05:45" +ik[2624] = 36.263 +il[2624] = 123 +im[2624] = 0.0568 +ij[2624] = 3 +id[2625] = "2646-08-23T10:33:10" +ik[2625] = 29.72 +il[2625] = 135 +im[2625] = 0 +ij[2625] = 5 +id[2626] = "2646-08-23T13:22:38" +ik[2626] = -2.039 +il[2626] = -108 +im[2626] = 0.0675 +ij[2626] = 4 +id[2627] = "2646-08-29T04:22:48" +ik[2627] = 44.074 +il[2627] = 82 +im[2627] = 0.0861 +ij[2627] = 1 +id[2628] = "2646-12-18T20:39:15" +ik[2628] = 31.577 +il[2628] = -145 +im[2628] = 0 +ij[2628] = 6 +id[2629] = "2647-08-02T11:41:08" +ik[2629] = 26.64 +il[2629] = -142 +im[2629] = 0 +ij[2629] = 5 +id[2630] = "2647-11-22T00:39:10" +ik[2630] = 25.727 +il[2630] = 138 +im[2630] = 0 +ij[2630] = 6 +id[2631] = "2648-03-14T04:39:38" +ik[2631] = 38.016 +il[2631] = -37 +im[2631] = 0.1256 +ij[2631] = 3 +id[2632] = "2648-03-19T19:15:32" +ik[2632] = -1.698 +il[2632] = 157 +im[2632] = 0.0988 +ij[2632] = 2 +id[2633] = "2648-06-20T01:42:14" +ik[2633] = 29.116 +il[2633] = -147 +im[2633] = 0 +ij[2633] = 5 +id[2634] = "2648-09-24T10:46:12" +ik[2634] = -2.343 +il[2634] = 92 +im[2634] = 0.1936 +ij[2634] = 4 +id[2635] = "2648-10-15T05:14:12" +ik[2635] = 31.619 +il[2635] = 20 +im[2635] = 0 +ij[2635] = 6 +id[2636] = "2648-10-16T03:33:41" +ik[2636] = 46.358 +il[2636] = 54 +im[2636] = 0.0237 +ij[2636] = 1 +id[2637] = "2649-06-01T07:11:08" +ik[2637] = 27.005 +il[2637] = -113 +im[2637] = 0 +ij[2637] = 5 +id[2638] = "2649-09-21T01:29:08" +ik[2638] = 25.719 +il[2638] = 92 +im[2638] = 0 +ij[2638] = 6 +id[2639] = "2650-04-17T23:52:13" +ik[2639] = 28.529 +il[2639] = -172 +im[2639] = 0 +ij[2639] = 5 +id[2640] = "2650-05-17T22:01:37" +ik[2640] = 42.759 +il[2640] = 139 +im[2640] = 0.1155 +ij[2640] = 3 +id[2641] = "2650-06-15T05:03:07" +ik[2641] = -2.134 +il[2641] = -58 +im[2641] = 0.1476 +ij[2641] = 2 +id[2642] = "2650-08-12T18:34:07" +ik[2642] = 31.498 +il[2642] = 116 +im[2642] = 0 +ij[2642] = 6 +id[2643] = "2650-11-25T20:08:00" +ik[2643] = -2.194 +il[2643] = 41 +im[2643] = 0.0699 +ij[2643] = 4 +id[2644] = "2650-12-21T14:52:39" +ik[2644] = 42.632 +il[2644] = 8 +im[2644] = 0.0354 +ij[2644] = 1 +id[2645] = "2651-03-31T23:27:10" +ik[2645] = 27.42 +il[2645] = -37 +im[2645] = 0 +ij[2645] = 5 +id[2646] = "2651-07-22T00:54:08" +ik[2646] = 25.764 +il[2646] = 67 +im[2646] = 0 +ij[2646] = 6 +id[2647] = "2652-02-14T05:27:10" +ik[2647] = 27.979 +il[2647] = 54 +im[2647] = 0 +ij[2647] = 5 +id[2648] = "2652-06-09T13:15:10" +ik[2648] = 31.233 +il[2648] = 134 +im[2648] = 0 +ij[2648] = 6 +id[2649] = "2652-07-21T22:39:38" +ik[2649] = 47.372 +il[2649] = -129 +im[2649] = 0.0608 +ij[2649] = 3 +id[2650] = "2652-08-19T22:37:22" +ik[2650] = -2.378 +il[2650] = 154 +im[2650] = 0.0957 +ij[2650] = 2 +id[2651] = "2653-01-28T11:53:05" +ik[2651] = 27.884 +il[2651] = 94 +im[2651] = 0 +ij[2651] = 5 +id[2652] = "2653-02-08T14:08:02" +ik[2652] = -1.776 +il[2652] = -41 +im[2652] = 0.124 +ij[2652] = 4 +id[2653] = "2653-02-21T23:31:37" +ik[2653] = 38.629 +il[2653] = -56 +im[2653] = 0.1093 +ij[2653] = 1 +id[2654] = "2653-05-20T22:17:11" +ik[2654] = 25.862 +il[2654] = 72 +im[2654] = 0 +ij[2654] = 6 +id[2655] = "2653-12-12T18:20:09" +ik[2655] = 27.477 +il[2655] = 174 +im[2655] = 0 +ij[2655] = 5 +id[2656] = "2654-04-07T13:38:03" +ik[2656] = 30.851 +il[2656] = 69 +im[2656] = 0 +ij[2656] = 6 +id[2657] = "2654-09-06T15:51:41" +ik[2657] = 44.641 +il[2657] = -91 +im[2657] = 0.1083 +ij[2657] = 3 +id[2658] = "2654-09-25T07:49:23" +ik[2658] = -2.094 +il[2658] = -147 +im[2658] = 0.0137 +ij[2658] = 2 +id[2659] = "2654-11-27T19:53:11" +ik[2659] = 28.39 +il[2659] = -69 +im[2659] = 0 +ij[2659] = 5 +id[2660] = "2655-03-20T16:57:04" +ik[2660] = 26.015 +il[2660] = 117 +im[2660] = 0 +ij[2660] = 6 +id[2661] = "2655-04-05T12:02:44" +ik[2661] = -1.585 +il[2661] = -20 +im[2661] = 0.0191 +ij[2661] = 4 +id[2662] = "2655-04-09T21:24:37" +ik[2662] = 37.099 +il[2662] = -119 +im[2662] = 0.0836 +ij[2662] = 1 +id[2663] = "2655-10-11T14:05:08" +ik[2663] = 27.032 +il[2663] = -166 +im[2663] = 0 +ij[2663] = 5 +id[2664] = "2656-02-03T19:49:09" +ik[2664] = 30.388 +il[2664] = -80 +im[2664] = 0 +ij[2664] = 6 +id[2665] = "2656-09-25T22:56:03" +ik[2665] = 28.929 +il[2665] = -161 +im[2665] = 0 +ij[2665] = 5 +id[2666] = "2656-10-23T18:07:37" +ik[2666] = 40.08 +il[2666] = -179 +im[2666] = 0.105 +ij[2666] = 3 +id[2667] = "2656-10-25T10:56:58" +ik[2667] = -1.821 +il[2667] = -55 +im[2667] = 0.1169 +ij[2667] = 2 +id[2668] = "2657-01-17T08:13:03" +ik[2668] = 26.224 +il[2668] = -148 +im[2668] = 0 +ij[2668] = 6 +id[2669] = "2657-05-19T08:01:40" +ik[2669] = 37.365 +il[2669] = -67 +im[2669] = 0.1012 +ij[2669] = 1 +id[2670] = "2657-05-21T05:25:25" +ik[2670] = -1.563 +il[2670] = -10 +im[2670] = 0.095 +ij[2670] = 4 +id[2671] = "2657-08-09T16:05:05" +ik[2671] = 26.646 +il[2671] = 122 +im[2671] = 0 +ij[2671] = 5 +id[2672] = "2657-12-02T07:50:00" +ik[2672] = 29.877 +il[2672] = 47 +im[2672] = 0 +ij[2672] = 6 +id[2673] = "2658-07-25T20:35:05" +ik[2673] = 29.488 +il[2673] = -175 +im[2673] = 0 +ij[2673] = 5 +id[2674] = "2658-11-16T19:22:04" +ik[2674] = 26.489 +il[2674] = 8 +im[2674] = 0 +ij[2674] = 6 +id[2675] = "2658-11-27T02:56:59" +ik[2675] = -1.651 +il[2675] = -145 +im[2675] = 0.05 +ij[2675] = 2 +id[2676] = "2658-12-05T02:04:33" +ik[2676] = 37.185 +il[2676] = -55 +im[2676] = 0.0984 +ij[2676] = 3 +id[2677] = "2659-06-08T23:37:06" +ik[2677] = 26.321 +il[2677] = -31 +im[2677] = 0 +ij[2677] = 5 +id[2678] = "2659-06-28T13:31:35" +ik[2678] = 39.195 +il[2678] = 71 +im[2678] = 0.0909 +ij[2678] = 1 +id[2679] = "2659-07-04T17:20:59" +ik[2679] = -1.677 +il[2679] = 74 +im[2679] = 0.039 +ij[2679] = 4 +id[2680] = "2659-10-01T01:33:01" +ik[2680] = 29.346 +il[2680] = 90 +im[2680] = 0 +ij[2680] = 6 +id[2681] = "2660-05-23T12:33:07" +ik[2681] = 30.048 +il[2681] = -106 +im[2681] = 0 +ij[2681] = 5 +id[2682] = "2660-09-15T01:40:04" +ik[2682] = 26.811 +il[2682] = -126 +im[2682] = 0 +ij[2682] = 6 +id[2683] = "2661-01-02T19:39:40" +ik[2683] = -1.581 +il[2683] = 161 +im[2683] = 0.0483 +ij[2683] = 2 +id[2684] = "2661-01-12T06:46:39" +ik[2684] = 36.163 +il[2684] = 85 +im[2684] = 0.0723 +ij[2684] = 3 +id[2685] = "2661-04-07T11:56:06" +ik[2685] = 26.056 +il[2685] = 105 +im[2685] = 0 +ij[2685] = 5 +id[2686] = "2661-07-30T00:44:03" +ik[2686] = 28.819 +il[2686] = 54 +im[2686] = 0 +ij[2686] = 6 +id[2687] = "2661-08-10T19:19:37" +ik[2687] = 42.532 +il[2687] = -110 +im[2687] = 0.0458 +ij[2687] = 1 +id[2688] = "2661-08-11T16:13:27" +ik[2688] = -1.916 +il[2688] = -55 +im[2688] = 0.0666 +ij[2688] = 4 +id[2689] = "2662-03-21T22:41:05" +ik[2689] = 30.583 +il[2689] = 47 +im[2689] = 0 +ij[2689] = 5 +id[2690] = "2662-07-15T02:20:58" +ik[2690] = 27.191 +il[2690] = -179 +im[2690] = 0 +ij[2690] = 6 +id[2691] = "2663-02-05T04:18:02" +ik[2691] = 25.849 +il[2691] = -178 +im[2691] = 0 +ij[2691] = 5 +id[2692] = "2663-02-22T09:03:15" +ik[2692] = -1.628 +il[2692] = -85 +im[2692] = 0.0124 +ij[2692] = 2 +id[2693] = "2663-02-23T19:01:37" +ik[2693] = 37.039 +il[2693] = 139 +im[2693] = 0.0453 +ij[2693] = 3 +id[2694] = "2663-05-29T05:00:57" +ik[2694] = 28.312 +il[2694] = -56 +im[2694] = 0 +ij[2694] = 6 +id[2695] = "2663-09-11T02:25:02" +ik[2695] = -2.239 +il[2695] = -73 +im[2695] = 0.1556 +ij[2695] = 4 +id[2696] = "2663-09-27T09:45:30" +ik[2696] = 46.017 +il[2696] = -23 +im[2696] = 0.1041 +ij[2696] = 1 +id[2697] = "2664-01-18T02:56:58" +ik[2697] = 31.061 +il[2697] = -74 +im[2697] = 0 +ij[2697] = 5 +id[2698] = "2664-05-12T20:43:00" +ik[2698] = 27.627 +il[2698] = -138 +im[2698] = 0 +ij[2698] = 6 +id[2699] = "2664-12-04T23:58:59" +ik[2699] = 25.701 +il[2699] = -150 +im[2699] = 0 +ij[2699] = 5 +id[2700] = "2665-03-27T13:58:56" +ik[2700] = 27.838 +il[2700] = 125 +im[2700] = 0 +ij[2700] = 6 +id[2701] = "2665-04-19T17:28:36" +ik[2701] = 40.484 +il[2701] = 157 +im[2701] = 0.1269 +ij[2701] = 3 +id[2702] = "2665-05-10T00:51:43" +ik[2702] = -1.915 +il[2702] = -122 +im[2702] = 0.1103 +ij[2702] = 2 +id[2703] = "2665-10-27T07:21:03" +ik[2703] = -2.34 +il[2703] = 158 +im[2703] = 0.0911 +ij[2703] = 4 +id[2704] = "2665-11-15T01:28:59" +ik[2704] = 31.446 +il[2704] = -112 +im[2704] = 0 +ij[2704] = 5 +id[2705] = "2665-11-23T01:56:29" +ik[2705] = 44.646 +il[2705] = 141 +im[2705] = 0.0186 +ij[2705] = 1 +id[2706] = "2666-03-11T08:12:02" +ik[2706] = 28.114 +il[2706] = 3 +im[2706] = 0 +ij[2706] = 6 +id[2707] = "2666-10-04T22:19:03" +ik[2707] = 25.609 +il[2707] = -161 +im[2707] = 0 +ij[2707] = 5 +id[2708] = "2667-01-25T03:05:02" +ik[2708] = 27.404 +il[2708] = -113 +im[2708] = 0 +ij[2708] = 6 +id[2709] = "2667-06-30T23:51:30" +ik[2709] = 46.356 +il[2709] = -146 +im[2709] = 0.1207 +ij[2709] = 3 +id[2710] = "2667-07-31T14:15:18" +ik[2710] = -2.384 +il[2710] = -67 +im[2710] = 0.0798 +ij[2710] = 2 +id[2711] = "2667-09-12T18:27:56" +ik[2711] = 31.701 +il[2711] = -69 +im[2711] = 0 +ij[2711] = 5 +id[2712] = "2668-01-07T12:23:02" +ik[2712] = 28.645 +il[2712] = -110 +im[2712] = 0 +ij[2712] = 6 +id[2713] = "2668-01-13T13:07:45" +ik[2713] = -1.914 +il[2713] = -64 +im[2713] = 0.0322 +ij[2713] = 4 +id[2714] = "2668-01-31T19:40:30" +ik[2714] = 39.869 +il[2714] = 10 +im[2714] = 0.0697 +ij[2714] = 1 +id[2715] = "2668-08-03T22:35:54" +ik[2715] = 25.573 +il[2715] = 159 +im[2715] = 0 +ij[2715] = 5 +id[2716] = "2668-11-23T19:44:58" +ik[2716] = 27.016 +il[2716] = -44 +im[2716] = 0 +ij[2716] = 6 +id[2717] = "2669-07-10T06:16:59" +ik[2717] = 31.797 +il[2717] = 51 +im[2717] = 0 +ij[2717] = 5 +id[2718] = "2669-08-19T10:13:26" +ik[2718] = 46.324 +il[2718] = 25 +im[2718] = 0.1463 +ij[2718] = 3 +id[2719] = "2669-09-12T14:57:59" +ik[2719] = -2.22 +il[2719] = -168 +im[2719] = 0.1084 +ij[2719] = 2 +id[2720] = "2669-11-04T09:15:59" +ik[2720] = 29.207 +il[2720] = -118 +im[2720] = 0 +ij[2720] = 6 +id[2721] = "2670-03-16T09:59:20" +ik[2721] = -1.637 +il[2721] = 39 +im[2721] = 0.0995 +ij[2721] = 4 +id[2722] = "2670-03-23T20:40:33" +ik[2722] = 37.455 +il[2722] = -52 +im[2722] = 0.0714 +ij[2722] = 1 +id[2723] = "2670-06-04T00:13:58" +ik[2723] = 25.592 +il[2723] = 99 +im[2723] = 0 +ij[2723] = 5 +id[2724] = "2670-09-23T15:25:55" +ik[2724] = 26.677 +il[2724] = -18 +im[2724] = 0 +ij[2724] = 6 +id[2725] = "2671-05-07T13:37:55" +ik[2725] = 31.717 +il[2725] = -124 +im[2725] = 0 +ij[2725] = 5 +id[2726] = "2671-09-01T23:14:55" +ik[2726] = 29.779 +il[2726] = -25 +im[2726] = 0 +ij[2726] = 6 +id[2727] = "2671-10-06T10:38:29" +ik[2727] = 41.736 +il[2727] = -32 +im[2727] = 0.0525 +ij[2727] = 3 +id[2728] = "2671-10-14T08:44:41" +ik[2728] = -1.916 +il[2728] = 73 +im[2728] = 0.0779 +ij[2728] = 2 +id[2729] = "2672-04-03T02:33:56" +ik[2729] = 25.665 +il[2729] = 28 +im[2729] = 0 +ij[2729] = 5 +id[2730] = "2672-05-03T13:17:34" +ik[2730] = -1.555 +il[2730] = -81 +im[2730] = 0.1125 +ij[2730] = 4 +id[2731] = "2672-05-03T22:09:24" +ik[2731] = 37.071 +il[2731] = 149 +im[2731] = 0.1128 +ij[2731] = 1 +id[2732] = "2672-07-23T13:30:00" +ik[2732] = 26.388 +il[2732] = -27 +im[2732] = 0 +ij[2732] = 6 +id[2733] = "2673-03-03T17:43:52" +ik[2733] = 31.466 +il[2733] = 110 +im[2733] = 0 +ij[2733] = 5 +id[2734] = "2673-06-29T07:45:59" +ik[2734] = 30.333 +il[2734] = 146 +im[2734] = 0 +ij[2734] = 6 +id[2735] = "2673-11-14T01:45:08" +ik[2735] = -1.705 +il[2735] = -40 +im[2735] = 0.0837 +ij[2735] = 2 +id[2736] = "2673-11-19T07:27:24" +ik[2736] = 38.086 +il[2736] = -75 +im[2736] = 0.0914 +ij[2736] = 3 +id[2737] = "2674-02-01T04:58:56" +ik[2737] = 25.792 +il[2737] = -44 +im[2737] = 0 +ij[2737] = 5 +id[2738] = "2674-05-23T13:22:56" +ik[2738] = 26.15 +il[2738] = -62 +im[2738] = 0 +ij[2738] = 6 +id[2739] = "2674-06-12T15:09:30" +ik[2739] = 38.291 +il[2739] = 106 +im[2739] = 0.098 +ij[2739] = 1 +id[2740] = "2674-06-17T12:52:42" +ik[2740] = -1.617 +il[2740] = -179 +im[2740] = 0.0114 +ij[2740] = 4 +id[2741] = "2674-12-29T20:27:53" +ik[2741] = 31.068 +il[2741] = 6 +im[2741] = 0 +ij[2741] = 5 +id[2742] = "2675-04-26T12:22:53" +ik[2742] = 30.832 +il[2742] = 13 +im[2742] = 0 +ij[2742] = 6 +id[2743] = "2675-12-02T06:54:51" +ik[2743] = 25.973 +il[2743] = -109 +im[2743] = 0 +ij[2743] = 5 +id[2744] = "2675-12-19T05:17:36" +ik[2744] = -1.596 +il[2744] = 79 +im[2744] = 0.0481 +ij[2744] = 2 +id[2745] = "2675-12-29T00:54:25" +ik[2745] = 36.348 +il[2745] = -120 +im[2745] = 0.0641 +ij[2745] = 3 +id[2746] = "2676-03-22T14:29:54" +ik[2746] = 25.964 +il[2746] = -114 +im[2746] = 0 +ij[2746] = 6 +id[2747] = "2676-07-23T23:22:24" +ik[2747] = 41.069 +il[2747] = -132 +im[2747] = 0.0073 +ij[2747] = 1 +id[2748] = "2676-07-29T00:34:03" +ik[2748] = -1.809 +il[2748] = -101 +im[2748] = 0.0972 +ij[2748] = 4 +id[2749] = "2676-10-26T00:10:56" +ik[2749] = 30.558 +il[2749] = -112 +im[2749] = 0 +ij[2749] = 5 +id[2750] = "2677-02-20T15:28:56" +ik[2750] = 31.236 +il[2750] = -100 +im[2750] = 0 +ij[2750] = 6 +id[2751] = "2677-10-01T07:42:48" +ik[2751] = 26.208 +il[2751] = -157 +im[2751] = 0 +ij[2751] = 5 +id[2752] = "2678-01-20T16:14:52" +ik[2752] = 25.829 +il[2752] = -175 +im[2752] = 0 +ij[2752] = 6 +id[2753] = "2678-01-31T07:25:37" +ik[2753] = -1.592 +il[2753] = -56 +im[2753] = 0.1113 +ij[2753] = 2 +id[2754] = "2678-02-06T08:32:29" +ik[2754] = 36.447 +il[2754] = -15 +im[2754] = 0.0169 +ij[2754] = 3 +id[2755] = "2678-08-23T07:13:52" +ik[2755] = 29.982 +il[2755] = 83 +im[2755] = 0 +ij[2755] = 5 +id[2756] = "2678-08-30T03:28:18" +ik[2756] = -2.111 +il[2756] = 5 +im[2756] = 0.0318 +ij[2756] = 4 +id[2757] = "2678-09-08T17:35:22" +ik[2757] = 44.879 +il[2757] = -113 +im[2757] = 0.1409 +ij[2757] = 1 +id[2758] = "2678-12-18T19:26:49" +ik[2758] = 31.507 +il[2758] = 134 +im[2758] = 0 +ij[2758] = 6 +id[2759] = "2679-08-01T06:47:48" +ik[2759] = 26.497 +il[2759] = 179 +im[2759] = 0 +ij[2759] = 5 +id[2760] = "2679-11-20T18:02:52" +ik[2760] = 25.746 +il[2760] = 124 +im[2760] = 0 +ij[2760] = 6 +id[2761] = "2680-03-26T09:16:24" +ik[2761] = 38.748 +il[2761] = -93 +im[2761] = 0.0701 +ij[2761] = 3 +id[2762] = "2680-04-05T21:24:45" +ik[2762] = -1.757 +il[2762] = -179 +im[2762] = 0.1501 +ij[2762] = 2 +id[2763] = "2680-06-19T19:35:54" +ik[2763] = 29.379 +il[2763] = -160 +im[2763] = 0 +ij[2763] = 5 +id[2764] = "2680-10-04T12:55:26" +ik[2764] = -2.372 +il[2764] = 61 +im[2764] = 0.1381 +ij[2764] = 4 +id[2765] = "2680-10-15T02:17:48" +ik[2765] = 31.621 +il[2765] = -36 +im[2765] = 0 +ij[2765] = 6 +id[2766] = "2680-10-28T14:13:20" +ik[2766] = 46.062 +il[2766] = -82 +im[2766] = 0.1441 +ij[2766] = 1 +id[2767] = "2681-05-31T03:31:49" +ik[2767] = 26.839 +il[2767] = -170 +im[2767] = 0 +ij[2767] = 5 +id[2768] = "2681-09-19T19:18:46" +ik[2768] = 25.716 +il[2768] = 71 +im[2768] = 0 +ij[2768] = 6 +id[2769] = "2682-04-17T14:37:49" +ik[2769] = 28.782 +il[2769] = -140 +im[2769] = 0 +ij[2769] = 5 +id[2770] = "2682-06-03T14:42:25" +ik[2770] = 44.151 +il[2770] = -55 +im[2770] = 0.0326 +ij[2770] = 3 +id[2771] = "2682-07-04T00:54:34" +ik[2771] = -2.254 +il[2771] = 82 +im[2771] = 0.0753 +ij[2771] = 2 +id[2772] = "2682-08-12T13:26:49" +ik[2772] = 31.57 +il[2772] = 92 +im[2772] = 0 +ij[2772] = 6 +id[2773] = "2682-12-13T20:16:21" +ik[2773] = -2.09 +il[2773] = 112 +im[2773] = 0.0551 +ij[2773] = 4 +id[2774] = "2683-01-06T08:30:20" +ik[2774] = 41.543 +il[2774] = 153 +im[2774] = 0.1392 +ij[2774] = 1 +id[2775] = "2683-03-30T21:17:51" +ik[2775] = 27.233 +il[2775] = -116 +im[2775] = 0 +ij[2775] = 5 +id[2776] = "2683-07-20T19:25:49" +ik[2776] = 25.737 +il[2776] = 35 +im[2776] = 0 +ij[2776] = 6 +id[2777] = "2684-02-13T16:57:47" +ik[2777] = 28.213 +il[2777] = 134 +im[2777] = 0 +ij[2777] = 5 +id[2778] = "2684-06-09T05:44:52" +ik[2778] = 31.364 +il[2778] = 145 +im[2778] = 0 +ij[2778] = 6 +id[2779] = "2684-08-01T15:24:20" +ik[2779] = 47.317 +il[2779] = -16 +im[2779] = 0.1398 +ij[2779] = 3 +id[2780] = "2684-08-29T08:49:15" +ik[2780] = -2.333 +il[2780] = -5 +im[2780] = 0.1473 +ij[2780] = 2 +id[2781] = "2685-01-27T11:29:45" +ik[2781] = 27.676 +il[2781] = -10 +im[2781] = 0 +ij[2781] = 5 +id[2782] = "2685-02-22T07:12:22" +ik[2782] = -1.717 +il[2782] = 90 +im[2782] = 0.0849 +ij[2782] = 4 +id[2783] = "2685-03-05T08:50:21" +ik[2783] = 38.116 +il[2783] = 169 +im[2783] = 0.0173 +ij[2783] = 1 +id[2784] = "2685-05-19T17:46:45" +ik[2784] = 25.813 +il[2784] = 26 +im[2784] = 0 +ij[2784] = 6 +id[2785] = "2685-12-12T02:42:51" +ik[2785] = 27.689 +il[2785] = -63 +im[2785] = 0 +ij[2785] = 5 +id[2786] = "2686-04-07T03:36:43" +ik[2786] = 31.029 +il[2786] = 116 +im[2786] = 0 +ij[2786] = 6 +id[2787] = "2686-09-17T09:57:18" +ik[2787] = 43.597 +il[2787] = 1 +im[2787] = 0.0233 +ij[2787] = 3 +id[2788] = "2686-10-02T08:16:23" +ik[2788] = -2.027 +il[2788] = 175 +im[2788] = 0.0181 +ij[2788] = 2 +id[2789] = "2686-11-26T21:29:48" +ik[2789] = 28.164 +il[2789] = 157 +im[2789] = 0 +ij[2789] = 5 +id[2790] = "2687-03-19T13:42:48" +ik[2790] = 25.942 +il[2790] = 53 +im[2790] = 0 +ij[2790] = 6 +id[2791] = "2687-04-16T07:15:04" +ik[2791] = -1.568 +il[2791] = 52 +im[2791] = 0.0879 +ij[2791] = 4 +id[2792] = "2687-04-19T04:10:16" +ik[2792] = 37.019 +il[2792] = 125 +im[2792] = 0.1121 +ij[2792] = 1 +id[2793] = "2687-10-10T19:32:44" +ik[2793] = 27.219 +il[2793] = 3 +im[2793] = 0 +ij[2793] = 5 +id[2794] = "2688-02-03T07:15:44" +ik[2794] = 30.597 +il[2794] = 4 +im[2794] = 0 +ij[2794] = 6 +id[2795] = "2688-09-25T02:44:44" +ik[2795] = 28.69 +il[2795] = 33 +im[2795] = 0 +ij[2795] = 5 +id[2796] = "2688-11-01T12:31:31" +ik[2796] = -1.775 +il[2796] = -110 +im[2796] = 0.1012 +ij[2796] = 2 +id[2797] = "2688-11-02T16:45:15" +ik[2797] = 39.286 +il[2797] = -162 +im[2797] = 0.0932 +ij[2797] = 3 +id[2798] = "2689-01-16T06:32:49" +ik[2798] = 26.126 +il[2798] = 125 +im[2798] = 0 +ij[2798] = 6 +id[2799] = "2689-05-28T02:57:15" +ik[2799] = 37.628 +il[2799] = -7 +im[2799] = 0.1045 +ij[2799] = 1 +id[2800] = "2689-05-31T04:27:05" +ik[2800] = -1.576 +il[2800] = 0 +im[2800] = 0.0571 +ij[2800] = 4 +id[2801] = "2689-08-08T18:54:43" +ik[2801] = 26.807 +il[2801] = -31 +im[2801] = 0 +ij[2801] = 5 +id[2802] = "2689-12-01T16:44:41" +ik[2802] = 30.103 +il[2802] = 167 +im[2802] = 0 +ij[2802] = 6 +id[2803] = "2690-07-25T02:47:45" +ik[2803] = 29.243 +il[2803] = -15 +im[2803] = 0 +ij[2803] = 5 +id[2804] = "2690-11-15T19:34:45" +ik[2804] = 26.367 +il[2804] = -108 +im[2804] = 0 +ij[2804] = 6 +id[2805] = "2690-12-04T21:49:46" +ik[2805] = -1.627 +il[2805] = -94 +im[2805] = 0.0581 +ij[2805] = 2 +id[2806] = "2690-12-13T20:53:13" +ik[2806] = 36.809 +il[2806] = 7 +im[2806] = 0.0328 +ij[2806] = 3 +id[2807] = "2691-06-08T00:07:46" +ik[2807] = 26.455 +il[2807] = -153 +im[2807] = 0 +ij[2807] = 5 +id[2808] = "2691-07-07T22:30:17" +ik[2808] = 39.797 +il[2808] = -72 +im[2808] = 0.0554 +ij[2808] = 1 +id[2809] = "2691-07-14T07:28:26" +ik[2809] = -1.718 +il[2809] = -145 +im[2809] = 0.0804 +ij[2809] = 4 +id[2810] = "2691-09-30T08:00:40" +ik[2810] = 29.577 +il[2810] = -113 +im[2810] = 0 +ij[2810] = 6 +id[2811] = "2692-05-22T21:16:42" +ik[2811] = 29.805 +il[2811] = 17 +im[2811] = 0 +ij[2811] = 5 +id[2812] = "2692-09-14T04:04:39" +ik[2812] = 26.664 +il[2812] = 87 +im[2812] = 0 +ij[2812] = 6 +id[2813] = "2693-01-12T11:29:20" +ik[2813] = -1.579 +il[2813] = -84 +im[2813] = 0.092 +ij[2813] = 2 +id[2814] = "2693-01-21T04:19:20" +ik[2814] = 36.182 +il[2814] = 107 +im[2814] = 0.0036 +ij[2814] = 3 +id[2815] = "2693-04-06T10:27:41" +ik[2815] = 26.163 +il[2815] = 16 +im[2815] = 0 +ij[2815] = 5 +id[2816] = "2693-07-29T04:50:44" +ik[2816] = 29.046 +il[2816] = -115 +im[2816] = 0 +ij[2816] = 6 +id[2817] = "2693-08-18T16:21:47" +ik[2817] = -1.983 +il[2817] = -88 +im[2817] = 0.0711 +ij[2817] = 4 +id[2818] = "2693-08-21T05:14:12" +ik[2818] = 43.385 +il[2818] = 103 +im[2818] = 0.1129 +ij[2818] = 1 +id[2819] = "2694-03-21T09:57:44" +ik[2819] = 30.355 +il[2819] = 134 +im[2819] = 0 +ij[2819] = 5 +id[2820] = "2694-07-14T07:16:45" +ik[2820] = 27.019 +il[2820] = -2 +im[2820] = 0 +ij[2820] = 6 +id[2821] = "2695-02-04T01:09:41" +ik[2821] = 25.931 +il[2821] = 117 +im[2821] = 0 +ij[2821] = 5 +id[2822] = "2695-03-06T12:14:15" +ik[2822] = 37.526 +il[2822] = -119 +im[2822] = 0.1155 +ij[2822] = 3 +id[2823] = "2695-03-08T16:04:01" +ik[2823] = -1.661 +il[2823] = -156 +im[2823] = 0.1117 +ij[2823] = 2 +id[2824] = "2695-05-28T06:58:45" +ik[2824] = 28.528 +il[2824] = 166 +im[2824] = 0 +ij[2824] = 6 +id[2825] = "2695-09-18T21:23:09" +ik[2825] = -2.302 +il[2825] = -20 +im[2825] = 0.128 +ij[2825] = 4 +id[2826] = "2695-10-08T08:40:16" +ik[2826] = 46.334 +il[2826] = 3 +im[2826] = 0.0189 +ij[2826] = 1 +id[2827] = "2696-01-17T16:45:41" +ik[2827] = 30.862 +il[2827] = -24 +im[2827] = 0 +ij[2827] = 5 +id[2828] = "2696-05-12T04:29:42" +ik[2828] = 27.431 +il[2828] = -1 +im[2828] = 0 +ij[2828] = 6 +id[2829] = "2696-12-03T19:29:42" +ik[2829] = 25.758 +il[2829] = 165 +im[2829] = 0 +ij[2829] = 5 +id[2830] = "2697-03-26T13:58:39" +ik[2830] = 28.039 +il[2830] = 16 +im[2830] = 0 +ij[2830] = 6 +id[2831] = "2697-05-05T04:38:12" +ik[2831] = 41.682 +il[2831] = 34 +im[2831] = 0.012 +ij[2831] = 3 +id[2832] = "2697-05-30T10:39:36" +ik[2832] = -2.032 +il[2832] = -178 +im[2832] = 0.1338 +ij[2832] = 2 +id[2833] = "2697-11-12T05:58:43" +ik[2833] = -2.27 +il[2833] = -125 +im[2833] = 0.1331 +ij[2833] = 4 +id[2834] = "2697-11-14T17:46:36" +ik[2834] = 31.293 +il[2834] = -98 +im[2834] = 0 +ij[2834] = 5 +id[2835] = "2697-12-09T01:11:16" +ik[2835] = 43.556 +il[2835] = -154 +im[2835] = 0.1428 +ij[2835] = 1 +id[2836] = "2698-03-10T19:01:37" +ik[2836] = 27.896 +il[2836] = 93 +im[2836] = 0 +ij[2836] = 6 +id[2837] = "2698-10-03T16:45:41" +ik[2837] = 25.641 +il[2837] = 170 +im[2837] = 0 +ij[2837] = 5 +id[2838] = "2699-01-24T01:20:38" +ik[2838] = 27.587 +il[2838] = 163 +im[2838] = 0 +ij[2838] = 6 +id[2839] = "2699-07-14T01:15:10" +ik[2839] = 47.1 +il[2839] = -142 +im[2839] = 0.0646 +ij[2839] = 3 +id[2840] = "2699-08-12T20:54:45" +ik[2840] = -2.395 +il[2840] = -147 +im[2840] = 0.1278 +ij[2840] = 2 +id[2841] = "2699-09-12T13:07:40" +ik[2841] = 31.609 +il[2841] = -90 +im[2841] = 0 +ij[2841] = 5 +id[2842] = "2700-01-07T02:24:34" +ik[2842] = 28.41 +il[2842] = -67 +im[2842] = 0 +ij[2842] = 6 +id[2843] = "2700-01-29T06:10:18" +ik[2843] = -1.833 +il[2843] = 86 +im[2843] = 0.1343 +ij[2843] = 4 +id[2844] = "2700-02-13T17:39:15" +ik[2844] = 39.132 +il[2844] = 60 +im[2844] = 0.1236 +ij[2844] = 1 +id[2845] = "2700-08-03T16:16:36" +ik[2845] = 25.581 +il[2845] = 141 +im[2845] = 0 +ij[2845] = 5 +id[2846] = "2700-11-23T16:32:35" +ik[2846] = 27.179 +il[2846] = -106 +im[2846] = 0 +ij[2846] = 6 +id[2847] = "2701-07-11T03:07:37" +ik[2847] = 31.777 +il[2847] = -3 +im[2847] = 0 +ij[2847] = 5 +id[2848] = "2701-08-30T16:19:12" +ik[2848] = 45.446 +il[2848] = -64 +im[2848] = 0.0724 +ij[2848] = 3 +id[2849] = "2701-09-21T01:19:39" +ik[2849] = -2.15 +il[2849] = 10 +im[2849] = 0.0984 +ij[2849] = 2 +id[2850] = "2701-11-05T02:26:35" +ik[2850] = 28.961 +il[2850] = -120 +im[2850] = 0 +ij[2850] = 6 +id[2851] = "2702-03-29T00:34:20" +ik[2851] = -1.605 +il[2851] = -173 +im[2851] = 0.0151 +ij[2851] = 4 +id[2852] = "2702-04-03T17:16:13" +ik[2852] = 37.223 +il[2852] = -10 +im[2852] = 0.1022 +ij[2852] = 1 +id[2853] = "2702-06-03T17:23:34" +ik[2853] = 25.576 +il[2853] = 88 +im[2853] = 0 +ij[2853] = 5 +id[2854] = "2702-09-23T10:59:39" +ik[2854] = 26.818 +il[2854] = -63 +im[2854] = 0 +ij[2854] = 6 +id[2855] = "2703-05-08T12:17:34" +ik[2855] = 31.775 +il[2855] = 156 +im[2855] = 0 +ij[2855] = 5 +id[2856] = "2703-09-02T19:21:38" +ik[2856] = 29.532 +il[2856] = -70 +im[2856] = 0 +ij[2856] = 6 +id[2857] = "2703-10-17T23:51:12" +ik[2857] = 40.787 +il[2857] = 132 +im[2857] = 0.1159 +ij[2857] = 3 +id[2858] = "2703-10-22T07:26:47" +ik[2858] = -1.862 +il[2858] = 60 +im[2858] = 0.0733 +ij[2858] = 2 +id[2859] = "2704-04-02T19:30:34" +ik[2859] = 25.626 +il[2859] = 21 +im[2859] = 0 +ij[2859] = 5 +id[2860] = "2704-05-13T18:15:07" +ik[2860] = 37.203 +il[2860] = -169 +im[2860] = 0.0918 +ij[2860] = 1 +id[2861] = "2704-05-14T16:23:41" +ik[2861] = -1.556 +il[2861] = -133 +im[2861] = 0.0784 +ij[2861] = 4 +id[2862] = "2704-07-23T08:05:34" +ik[2862] = 26.507 +il[2862] = -58 +im[2862] = 0 +ij[2862] = 6 +id[2863] = "2705-03-04T17:35:39" +ik[2863] = 31.597 +il[2863] = 12 +im[2863] = 0 +ij[2863] = 5 +id[2864] = "2705-06-30T06:02:35" +ik[2864] = 30.098 +il[2864] = 70 +im[2864] = 0 +ij[2864] = 6 +id[2865] = "2705-11-22T11:43:42" +ik[2865] = -1.673 +il[2865] = 141 +im[2865] = 0.095 +ij[2865] = 2 +id[2866] = "2705-11-29T09:52:07" +ik[2866] = 37.551 +il[2866] = -124 +im[2866] = 0.0301 +ij[2866] = 3 +id[2867] = "2706-01-31T21:58:36" +ik[2867] = 25.729 +il[2867] = -51 +im[2867] = 0 +ij[2867] = 5 +id[2868] = "2706-05-23T07:16:36" +ik[2868] = 26.247 +il[2868] = -82 +im[2868] = 0 +ij[2868] = 6 +id[2869] = "2706-06-22T15:55:09" +ik[2869] = 38.759 +il[2869] = 82 +im[2869] = 0.0636 +ij[2869] = 1 +id[2870] = "2706-06-28T09:28:36" +ik[2870] = -1.647 +il[2870] = -126 +im[2870] = 0.0672 +ij[2870] = 4 +id[2871] = "2706-12-30T20:38:32" +ik[2871] = 31.258 +il[2871] = -98 +im[2871] = 0 +ij[2871] = 5 +id[2872] = "2707-04-27T12:03:36" +ik[2872] = 30.625 +il[2872] = -83 +im[2872] = 0 +ij[2872] = 6 +id[2873] = "2707-12-02T00:11:31" +ik[2873] = 25.887 +il[2873] = -120 +im[2873] = 0 +ij[2873] = 5 +id[2874] = "2707-12-28T22:23:43" +ik[2874] = -1.586 +il[2874] = 167 +im[2874] = 0.0754 +ij[2874] = 2 +id[2875] = "2708-01-07T17:25:09" +ik[2875] = 36.211 +il[2875] = -24 +im[2875] = 0.0167 +ij[2875] = 3 +id[2876] = "2708-03-22T07:55:37" +ik[2876] = 26.038 +il[2876] = -128 +im[2876] = 0 +ij[2876] = 6 +id[2877] = "2708-08-04T00:47:05" +ik[2877] = 41.857 +il[2877] = -155 +im[2877] = 0.0643 +ij[2877] = 1 +id[2878] = "2708-08-07T03:46:23" +ik[2878] = -1.866 +il[2878] = -170 +im[2878] = 0.1071 +ij[2878] = 4 +id[2879] = "2708-10-26T23:37:32" +ik[2879] = 30.792 +il[2879] = 155 +im[2879] = 0 +ij[2879] = 5 +id[2880] = "2709-02-21T15:30:31" +ik[2880] = 31.075 +il[2880] = 160 +im[2880] = 0 +ij[2880] = 6 +id[2881] = "2709-10-01T01:34:36" +ik[2881] = 26.098 +il[2881] = -177 +im[2881] = 0 +ij[2881] = 5 +id[2882] = "2710-01-20T09:28:30" +ik[2882] = 25.881 +il[2882] = 173 +im[2882] = 0 +ij[2882] = 6 +id[2883] = "2710-02-13T07:48:11" +ik[2883] = -1.608 +il[2883] = -48 +im[2883] = 0.0113 +ij[2883] = 2 +id[2884] = "2710-02-17T02:11:11" +ik[2884] = 36.73 +il[2884] = 72 +im[2884] = 0.0954 +ij[2884] = 3 +id[2885] = "2710-08-24T04:56:29" +ik[2885] = 30.239 +il[2885] = 14 +im[2885] = 0 +ij[2885] = 5 +id[2886] = "2710-09-06T21:04:38" +ik[2886] = -2.183 +il[2886] = 68 +im[2886] = 0.0547 +ij[2886] = 4 +id[2887] = "2710-09-20T07:21:04" +ik[2887] = 45.579 +il[2887] = 46 +im[2887] = 0.0476 +ij[2887] = 1 +id[2888] = "2710-12-19T18:48:31" +ik[2888] = 31.408 +il[2888] = 44 +im[2888] = 0 +ij[2888] = 6 +id[2889] = "2711-08-01T01:28:33" +ik[2889] = 26.364 +il[2889] = 147 +im[2889] = 0 +ij[2889] = 5 +id[2890] = "2711-11-20T11:20:32" +ik[2890] = 25.776 +il[2890] = 111 +im[2890] = 0 +ij[2890] = 6 +id[2891] = "2712-04-09T15:26:03" +ik[2891] = 39.639 +il[2891] = -162 +im[2891] = 0.0984 +ij[2891] = 3 +id[2892] = "2712-04-25T12:55:46" +ik[2892] = -1.835 +il[2892] = 26 +im[2892] = 0.1584 +ij[2892] = 2 +id[2893] = "2712-06-20T14:46:27" +ik[2893] = 29.643 +il[2893] = 168 +im[2893] = 0 +ij[2893] = 5 +id[2894] = "2712-10-16T00:10:30" +ik[2894] = 31.593 +il[2894] = -103 +im[2894] = 0 +ij[2894] = 6 +id[2895] = "2712-10-17T12:20:13" +ik[2895] = -2.37 +il[2895] = 89 +im[2895] = 0.0519 +ij[2895] = 4 +id[2896] = "2712-11-12T09:35:08" +ik[2896] = 45.403 +il[2896] = 24 +im[2896] = 0.0562 +ij[2896] = 1 +id[2897] = "2713-05-30T23:19:32" +ik[2897] = 26.683 +il[2897] = 142 +im[2897] = 0 +ij[2897] = 5 +id[2898] = "2713-09-19T12:54:34" +ik[2898] = 25.722 +il[2898] = 53 +im[2898] = 0 +ij[2898] = 6 +id[2899] = "2714-04-18T06:46:30" +ik[2899] = 29.04 +il[2899] = -127 +im[2899] = 0 +ij[2899] = 5 +id[2900] = "2714-06-20T15:45:04" +ik[2900] = 45.471 +il[2900] = -19 +im[2900] = 0.1621 +ij[2900] = 3 +id[2901] = "2714-07-21T13:54:27" +ik[2901] = -2.344 +il[2901] = -55 +im[2901] = 0.1417 +ij[2901] = 2 +id[2902] = "2714-08-13T09:18:25" +ik[2902] = 31.613 +il[2902] = 54 +im[2902] = 0 +ij[2902] = 6 +id[2903] = "2715-01-01T11:43:48" +ik[2903] = -1.989 +il[2903] = -53 +im[2903] = 0.1471 +ij[2903] = 4 +id[2904] = "2715-01-22T03:46:04" +ik[2904] = 40.565 +il[2904] = -97 +im[2904] = 0.049 +ij[2904] = 1 +id[2905] = "2715-03-30T18:27:30" +ik[2905] = 27.054 +il[2905] = 176 +im[2905] = 0 +ij[2905] = 5 +id[2906] = "2715-07-20T13:36:28" +ik[2906] = 25.721 +il[2906] = 9 +im[2906] = 0 +ij[2906] = 6 +id[2907] = "2716-02-14T05:53:31" +ik[2907] = 28.456 +il[2907] = -166 +im[2907] = 0 +ij[2907] = 5 +id[2908] = "2716-06-09T23:17:31" +ik[2908] = 31.472 +il[2908] = 140 +im[2908] = 0 +ij[2908] = 6 +id[2909] = "2716-08-12T19:21:04" +ik[2909] = 46.887 +il[2909] = -75 +im[2909] = 0.1186 +ij[2909] = 3 +id[2910] = "2716-09-07T19:34:02" +ik[2910] = -2.274 +il[2910] = 178 +im[2910] = 0.1645 +ij[2910] = 2 +id[2911] = "2717-01-27T10:17:28" +ik[2911] = 27.476 +il[2911] = -102 +im[2911] = 0 +ij[2911] = 5 +id[2912] = "2717-03-08T02:57:36" +ik[2912] = -1.669 +il[2912] = 171 +im[2912] = 0.1149 +ij[2912] = 4 +id[2913] = "2717-03-17T02:34:04" +ik[2913] = 37.71 +il[2913] = -98 +im[2913] = 0.0943 +ij[2913] = 1 +id[2914] = "2717-05-19T12:48:31" +ik[2914] = 25.773 +il[2914] = -13 +im[2914] = 0 +ij[2914] = 6 +id[2915] = "2717-12-12T12:25:29" +ik[2915] = 27.911 +il[2915] = 47 +im[2915] = 0 +ij[2915] = 5 +id[2916] = "2718-04-07T18:41:28" +ik[2916] = 31.189 +il[2916] = 148 +im[2916] = 0 +ij[2916] = 6 +id[2917] = "2718-09-29T06:28:04" +ik[2917] = 42.552 +il[2917] = 63 +im[2917] = 0.102 +ij[2917] = 3 +id[2918] = "2718-10-10T06:45:10" +ik[2918] = -1.964 +il[2918] = 166 +im[2918] = 0.0133 +ij[2918] = 2 +id[2919] = "2718-11-26T22:11:25" +ik[2919] = 27.946 +il[2919] = 38 +im[2919] = 0 +ij[2919] = 5 +id[2920] = "2719-03-19T09:52:24" +ik[2920] = 25.879 +il[2920] = -3 +im[2920] = 0 +ij[2920] = 6 +id[2921] = "2719-04-27T19:04:44" +ik[2921] = -1.558 +il[2921] = -128 +im[2921] = 0.0982 +ij[2921] = 4 +id[2922] = "2719-04-29T05:47:02" +ik[2922] = 37.016 +il[2922] = 85 +im[2922] = 0.0813 +ij[2922] = 1 +id[2923] = "2719-10-11T02:14:29" +ik[2923] = 27.417 +il[2923] = 153 +im[2923] = 0 +ij[2923] = 5 +id[2924] = "2720-02-03T19:49:26" +ik[2924] = 30.794 +il[2924] = 72 +im[2924] = 0 +ij[2924] = 6 +id[2925] = "2720-09-25T05:34:22" +ik[2925] = 28.457 +il[2925] = -117 +im[2925] = 0 +ij[2925] = 5 +id[2926] = "2720-11-09T16:32:45" +ik[2926] = -1.734 +il[2926] = 159 +im[2926] = 0.1073 +ij[2926] = 2 +id[2927] = "2720-11-13T07:15:01" +ik[2927] = 38.585 +il[2927] = -27 +im[2927] = 0.0584 +ij[2927] = 3 +id[2928] = "2721-01-16T04:08:24" +ik[2928] = 26.039 +il[2928] = 48 +im[2928] = 0 +ij[2928] = 6 +id[2929] = "2721-06-06T22:56:03" +ik[2929] = 37.963 +il[2929] = 38 +im[2929] = 0.0448 +ij[2929] = 1 +id[2930] = "2721-06-11T02:31:52" +ik[2930] = -1.596 +il[2930] = 24 +im[2930] = 0.0522 +ij[2930] = 4 +id[2931] = "2721-08-08T22:50:26" +ik[2931] = 26.979 +il[2931] = 160 +im[2931] = 0 +ij[2931] = 5 +id[2932] = "2721-12-02T02:45:27" +ik[2932] = 30.323 +il[2932] = -88 +im[2932] = 0 +ij[2932] = 6 +id[2933] = "2722-07-25T07:57:21" +ik[2933] = 29 +il[2933] = 160 +im[2933] = 0 +ij[2933] = 5 +id[2934] = "2722-11-15T18:55:26" +ik[2934] = 26.255 +il[2934] = 150 +im[2934] = 0 +ij[2934] = 6 +id[2935] = "2722-12-13T23:14:32" +ik[2935] = -1.608 +il[2935] = -137 +im[2935] = 0.095 +ij[2935] = 2 +id[2936] = "2722-12-23T13:31:00" +ik[2936] = 36.519 +il[2936] = 101 +im[2936] = 0.0099 +ij[2936] = 3 +id[2937] = "2723-06-08T01:35:28" +ik[2937] = 26.601 +il[2937] = 77 +im[2937] = 0 +ij[2937] = 5 +id[2938] = "2723-07-18T13:05:57" +ik[2938] = 40.471 +il[2938] = 62 +im[2938] = 0.0433 +ij[2938] = 1 +id[2939] = "2723-07-24T12:50:33" +ik[2939] = -1.766 +il[2939] = 125 +im[2939] = 0.1117 +ij[2939] = 4 +id[2940] = "2723-09-30T15:31:23" +ik[2940] = 29.807 +il[2940] = 28 +im[2940] = 0 +ij[2940] = 6 +id[2941] = "2724-05-23T04:53:19" +ik[2941] = 29.56 +il[2941] = 157 +im[2941] = 0 +ij[2941] = 5 +id[2942] = "2724-09-14T05:29:19" +ik[2942] = 26.528 +il[2942] = -46 +im[2942] = 0 +ij[2942] = 6 +id[2943] = "2725-01-23T20:02:34" +ik[2943] = -1.584 +il[2943] = 147 +im[2943] = 0.0852 +ij[2943] = 2 +id[2944] = "2725-01-31T07:04:56" +ik[2944] = 36.289 +il[2944] = 53 +im[2944] = 0.0666 +ij[2944] = 3 +id[2945] = "2725-04-06T09:48:23" +ik[2945] = 26.283 +il[2945] = -86 +im[2945] = 0 +ij[2945] = 5 +id[2946] = "2725-07-29T09:58:19" +ik[2946] = 29.276 +il[2946] = 61 +im[2946] = 0 +ij[2946] = 6 +id[2947] = "2725-08-26T08:55:01" +ik[2947] = -2.052 +il[2947] = -11 +im[2947] = 0.0861 +ij[2947] = 4 +id[2948] = "2725-09-01T17:27:01" +ik[2948] = 44.232 +il[2948] = -77 +im[2948] = 0.1038 +ij[2948] = 1 +id[2949] = "2726-03-21T20:06:25" +ik[2949] = 30.119 +il[2949] = -123 +im[2949] = 0 +ij[2949] = 5 +id[2950] = "2726-07-14T11:05:25" +ik[2950] = 26.858 +il[2950] = -170 +im[2950] = 0 +ij[2950] = 6 +id[2951] = "2727-02-03T22:41:22" +ik[2951] = 26.025 +il[2951] = 42 +im[2951] = 0 +ij[2951] = 5 +id[2952] = "2727-03-18T23:19:58" +ik[2952] = 38.143 +il[2952] = 81 +im[2952] = 0.0843 +ij[2952] = 3 +id[2953] = "2727-03-25T11:16:22" +ik[2953] = -1.707 +il[2953] = -36 +im[2953] = 0.0884 +ij[2953] = 2 +id[2954] = "2727-05-28T09:51:24" +ik[2954] = 28.75 +il[2954] = 14 +im[2954] = 0 +ij[2954] = 6 +id[2955] = "2727-09-28T18:35:29" +ik[2955] = -2.351 +il[2955] = 11 +im[2955] = 0.0986 +ij[2955] = 4 +id[2956] = "2727-10-20T23:08:00" +ik[2956] = 46.334 +il[2956] = 162 +im[2956] = 0.1618 +ij[2956] = 1 +id[2957] = "2728-01-18T05:28:19" +ik[2957] = 30.649 +il[2957] = 42 +im[2957] = 0 +ij[2957] = 5 +id[2958] = "2728-05-12T10:59:22" +ik[2958] = 27.245 +il[2958] = 153 +im[2958] = 0 +ij[2958] = 6 +id[2959] = "2728-12-03T15:32:24" +ik[2959] = 25.826 +il[2959] = 112 +im[2959] = 0 +ij[2959] = 5 +id[2960] = "2729-03-26T14:47:19" +ik[2960] = 28.247 +il[2960] = -105 +im[2960] = 0 +ij[2960] = 6 +id[2961] = "2729-05-22T15:09:56" +ik[2961] = 43.023 +il[2961] = -71 +im[2961] = 0.1378 +ij[2961] = 3 +id[2962] = "2729-06-20T11:43:03" +ik[2962] = -2.159 +il[2962] = -105 +im[2962] = 0.1677 +ij[2962] = 2 +id[2963] = "2729-11-15T08:59:16" +ik[2963] = 31.118 +il[2963] = -69 +im[2963] = 0 +ij[2963] = 5 +id[2964] = "2729-11-30T18:22:10" +ik[2964] = -2.175 +il[2964] = 119 +im[2964] = 0.2007 +ij[2964] = 4 +id[2965] = "2729-12-26T04:56:55" +ik[2965] = 42.421 +il[2965] = -156 +im[2965] = 0.1521 +ij[2965] = 1 +id[2966] = "2730-03-11T04:29:16" +ik[2966] = 27.688 +il[2966] = -157 +im[2966] = 0 +ij[2966] = 6 +id[2967] = "2730-10-03T11:37:23" +ik[2967] = 25.685 +il[2967] = 134 +im[2967] = 0 +ij[2967] = 5 +id[2968] = "2731-01-24T00:20:18" +ik[2968] = 27.778 +il[2968] = 68 +im[2968] = 0 +ij[2968] = 6 +id[2969] = "2731-07-26T14:08:52" +ik[2969] = 47.397 +il[2969] = 37 +im[2969] = 0.1661 +ij[2969] = 3 +id[2970] = "2731-08-24T09:01:18" +ik[2970] = -2.371 +il[2970] = 35 +im[2970] = 0.2012 +ij[2970] = 2 +id[2971] = "2731-09-13T06:46:22" +ik[2971] = 31.489 +il[2971] = -96 +im[2971] = 0 +ij[2971] = 5 +id[2972] = "2732-01-07T15:02:18" +ik[2972] = 28.182 +il[2972] = -3 +im[2972] = 0 +ij[2972] = 6 +id[2973] = "2732-02-13T19:30:39" +ik[2973] = -1.764 +il[2973] = -79 +im[2973] = 0.0454 +ij[2973] = 4 +id[2974] = "2732-02-26T17:59:51" +ik[2974] = 38.523 +il[2974] = 66 +im[2974] = 0.0394 +ij[2974] = 1 +id[2975] = "2732-08-02T10:14:18" +ik[2975] = 25.6 +il[2975] = 119 +im[2975] = 0 +ij[2975] = 5 +id[2976] = "2732-11-22T13:56:21" +ik[2976] = 27.35 +il[2976] = -178 +im[2976] = 0 +ij[2976] = 6 +id[2977] = "2733-07-10T23:03:15" +ik[2977] = 31.725 +il[2977] = -42 +im[2977] = 0 +ij[2977] = 5 +id[2978] = "2733-09-10T05:36:48" +ik[2978] = 44.445 +il[2978] = 101 +im[2978] = 0.0242 +ij[2978] = 3 +id[2979] = "2733-09-28T04:43:33" +ik[2979] = -2.081 +il[2979] = -70 +im[2979] = 0.1291 +ij[2979] = 2 +id[2980] = "2733-11-04T18:15:15" +ik[2980] = 28.718 +il[2980] = -102 +im[2980] = 0 +ij[2980] = 6 +id[2981] = "2734-04-09T03:27:07" +ik[2981] = -1.581 +il[2981] = 146 +im[2981] = 0.1107 +ij[2981] = 4 +id[2982] = "2734-04-13T05:25:52" +ik[2982] = 37.077 +il[2982] = 155 +im[2982] = 0.0989 +ij[2982] = 1 +id[2983] = "2734-06-02T10:45:15" +ik[2983] = 25.571 +il[2983] = 75 +im[2983] = 0 +ij[2983] = 5 +id[2984] = "2734-09-22T07:03:21" +ik[2984] = 26.968 +il[2984] = -115 +im[2984] = 0 +ij[2984] = 6 +id[2985] = "2735-05-08T10:13:17" +ik[2985] = 31.799 +il[2985] = 87 +im[2985] = 0 +ij[2985] = 5 +id[2986] = "2735-09-02T14:12:20" +ik[2986] = 29.283 +il[2986] = -96 +im[2986] = 0 +ij[2986] = 6 +id[2987] = "2735-10-28T05:18:48" +ik[2987] = 39.921 +il[2987] = 50 +im[2987] = 0.0777 +ij[2987] = 3 +id[2988] = "2735-10-29T07:23:34" +ik[2988] = -1.812 +il[2988] = 29 +im[2988] = 0.0559 +ij[2988] = 2 +id[2989] = "2736-04-01T12:31:14" +ik[2989] = 25.597 +il[2989] = 13 +im[2989] = 0 +ij[2989] = 5 +id[2990] = "2736-05-22T13:11:51" +ik[2990] = 37.407 +il[2990] = -110 +im[2990] = 0.0428 +ij[2990] = 1 +id[2991] = "2736-05-24T16:48:55" +ik[2991] = -1.565 +il[2991] = -144 +im[2991] = 0.0121 +ij[2991] = 4 +id[2992] = "2736-07-22T03:05:19" +ik[2992] = 26.635 +il[2992] = -94 +im[2992] = 0 +ij[2992] = 6 +id[2993] = "2737-03-04T17:02:15" +ik[2993] = 31.696 +il[2993] = -80 +im[2993] = 0 +ij[2993] = 5 +id[2994] = "2737-06-30T03:26:12" +ik[2994] = 29.855 +il[2994] = 7 +im[2994] = 0 +ij[2994] = 6 +id[2995] = "2737-11-30T02:20:29" +ik[2995] = -1.646 +il[2995] = -104 +im[2995] = 0.1072 +ij[2995] = 2 +id[2996] = "2737-12-08T07:28:50" +ik[2996] = 37.105 +il[2996] = -102 +im[2996] = 0.0199 +ij[2996] = 3 +id[2997] = "2738-01-30T14:54:14" +ik[2997] = 25.677 +il[2997] = -58 +im[2997] = 0 +ij[2997] = 5 +id[2998] = "2738-05-22T01:26:15" +ik[2998] = 26.353 +il[2998] = -107 +im[2998] = 0 +ij[2998] = 6 +id[2999] = "2738-07-01T20:49:46" +ik[2999] = 39.301 +il[2999] = -3 +im[2999] = 0.0284 +ij[2999] = 1 +id[3000] = "2738-07-08T03:38:42" +ik[3000] = -1.684 +il[3000] = -44 +im[3000] = 0.1122 +ij[3000] = 4 +id[3001] = "2738-12-30T20:49:12" +ik[3001] = 31.425 +il[3001] = 159 +im[3001] = 0 +ij[3001] = 5 +id[3002] = "2739-04-27T11:15:12" +ik[3002] = 30.404 +il[3002] = -171 +im[3002] = 0 +ij[3002] = 6 +id[3003] = "2739-11-30T17:19:14" +ik[3003] = 25.811 +il[3003] = -130 +im[3003] = 0 +ij[3003] = 5 +id[3004] = "2740-01-07T03:03:10" +ik[3004] = -1.58 +il[3004] = 85 +im[3004] = 0.1072 +ij[3004] = 2 +id[3005] = "2740-01-16T12:00:51" +ik[3005] = 36.159 +il[3005] = 41 +im[3005] = 0.0478 +ij[3005] = 3 +id[3006] = "2740-03-21T01:32:09" +ik[3006] = 26.122 +il[3006] = -145 +im[3006] = 0 +ij[3006] = 6 +id[3007] = "2740-08-14T07:28:50" +ik[3007] = 42.691 +il[3007] = 105 +im[3007] = 0.1291 +ij[3007] = 1 +id[3008] = "2740-08-14T14:54:17" +ik[3008] = -1.929 +il[3008] = -3 +im[3008] = 0.1284 +ij[3008] = 4 +id[3009] = "2740-10-26T23:31:12" +ik[3009] = 31.009 +il[3009] = 55 +im[3009] = 0 +ij[3009] = 5 +id[3010] = "2741-02-21T15:30:14" +ik[3010] = 30.892 +il[3010] = 60 +im[3010] = 0 +ij[3010] = 6 +id[3011] = "2741-09-29T19:08:15" +ik[3011] = 25.999 +il[3011] = 167 +im[3011] = 0 +ij[3011] = 5 +id[3012] = "2742-01-19T02:46:10" +ik[3012] = 25.942 +il[3012] = 161 +im[3012] = 0 +ij[3012] = 6 +id[3013] = "2742-02-26T12:30:18" +ik[3013] = -1.633 +il[3013] = -94 +im[3013] = 0.1143 +ij[3013] = 2 +id[3014] = "2742-02-27T07:33:53" +ik[3014] = 37.122 +il[3014] = -13 +im[3014] = 0.1147 +ij[3014] = 3 +id[3015] = "2742-08-24T03:31:14" +ik[3015] = 30.489 +il[3015] = -67 +im[3015] = 0 +ij[3015] = 5 +id[3016] = "2742-09-14T01:20:58" +ik[3016] = -2.252 +il[3016] = -25 +im[3016] = 0.0228 +ij[3016] = 4 +id[3017] = "2742-09-30T23:58:50" +ik[3017] = 46.1 +il[3017] = 162 +im[3017] = 0.0598 +ij[3017] = 1 +id[3018] = "2742-12-19T18:34:16" +ik[3018] = 31.281 +il[3018] = -52 +im[3018] = 0 +ij[3018] = 6 +id[3019] = "2743-07-30T19:46:07" +ik[3019] = 26.241 +il[3019] = 121 +im[3019] = 0 +ij[3019] = 5 +id[3020] = "2743-11-19T04:34:10" +ik[3020] = 25.815 +il[3020] = 99 +im[3020] = 0 +ij[3020] = 6 +id[3021] = "2744-04-24T02:41:51" +ik[3021] = 40.699 +il[3021] = 63 +im[3021] = 0.0602 +ij[3021] = 3 +id[3022] = "2744-05-15T10:32:06" +ik[3022] = -1.936 +il[3022] = 147 +im[3022] = 0.1614 +ij[3022] = 2 +id[3023] = "2744-06-20T11:08:09" +ik[3023] = 29.906 +il[3023] = 120 +im[3023] = 0 +ij[3023] = 5 +id[3024] = "2744-10-15T22:47:08" +ik[3024] = 31.533 +il[3024] = 178 +im[3024] = 0 +ij[3024] = 6 +id[3025] = "2744-10-31T16:49:53" +ik[3025] = -2.33 +il[3025] = 62 +im[3025] = 0.1832 +ij[3025] = 4 +id[3026] = "2744-11-27T14:24:43" +ik[3026] = 44.453 +il[3026] = 3 +im[3026] = 0.1645 +ij[3026] = 1 +id[3027] = "2745-05-29T18:35:08" +ik[3027] = 26.536 +il[3027] = 101 +im[3027] = 0 +ij[3027] = 5 +id[3028] = "2745-09-18T06:21:10" +ik[3028] = 25.739 +il[3028] = 38 +im[3028] = 0 +ij[3028] = 6 +id[3029] = "2746-04-18T00:18:08" +ik[3029] = 29.302 +il[3029] = -135 +im[3029] = 0 +ij[3029] = 5 +id[3030] = "2746-07-05T03:49:49" +ik[3030] = 46.533 +il[3030] = -163 +im[3030] = 0.0884 +ij[3030] = 3 +id[3031] = "2746-08-04T15:26:21" +ik[3031] = -2.39 +il[3031] = -42 +im[3031] = 0.1703 +ij[3031] = 2 +id[3032] = "2746-08-13T06:06:11" +ik[3032] = 31.625 +il[3032] = 2 +im[3032] = 0 +ij[3032] = 6 +id[3033] = "2747-01-18T03:45:55" +ik[3033] = -1.898 +il[3033] = 123 +im[3033] = 0.151 +ij[3033] = 4 +id[3034] = "2747-02-04T21:31:49" +ik[3034] = 39.72 +il[3034] = 24 +im[3034] = 0.1145 +ij[3034] = 1 +id[3035] = "2747-03-29T14:59:08" +ik[3035] = 26.885 +il[3035] = 117 +im[3035] = 0 +ij[3035] = 5 +id[3036] = "2747-07-19T07:30:08" +ik[3036] = 25.715 +il[3036] = -13 +im[3036] = 0 +ij[3036] = 6 +id[3037] = "2748-02-13T20:14:12" +ik[3037] = 28.707 +il[3037] = -127 +im[3037] = 0 +ij[3037] = 5 +id[3038] = "2748-06-09T17:52:04" +ik[3038] = 31.553 +il[3038] = 121 +im[3038] = 0 +ij[3038] = 6 +id[3039] = "2748-08-22T21:33:41" +ik[3039] = 46.171 +il[3039] = -108 +im[3039] = 0.0509 +ij[3039] = 3 +id[3040] = "2748-09-15T14:31:16" +ik[3040] = -2.207 +il[3040] = -129 +im[3040] = 0.1592 +ij[3040] = 2 +id[3041] = "2749-01-26T08:20:06" +ik[3041] = 27.286 +il[3041] = 177 +im[3041] = 0 +ij[3041] = 5 +id[3042] = "2749-03-20T05:17:29" +ik[3042] = -1.63 +il[3042] = 148 +im[3042] = 0.0427 +ij[3042] = 4 +id[3043] = "2749-03-27T07:35:45" +ik[3043] = 37.403 +il[3043] = 180 +im[3043] = 0.1169 +ij[3043] = 1 +id[3044] = "2749-05-18T07:26:06" +ik[3044] = 25.744 +il[3044] = -46 +im[3044] = 0 +ij[3044] = 6 +id[3045] = "2749-12-11T23:32:03" +ik[3045] = 28.143 +il[3045] = 133 +im[3045] = 0 +ij[3045] = 5 +id[3046] = "2750-04-07T10:51:10" +ik[3046] = 31.328 +il[3046] = 163 +im[3046] = 0 +ij[3046] = 6 +id[3047] = "2750-10-10T00:26:47" +ik[3047] = 41.548 +il[3047] = 159 +im[3047] = 0.1007 +ij[3047] = 3 +id[3048] = "2750-10-17T04:51:44" +ik[3048] = -1.906 +il[3048] = 162 +im[3048] = 0.0563 +ij[3048] = 2 +id[3049] = "2750-11-25T22:02:03" +ik[3049] = 27.735 +il[3049] = -70 +im[3049] = 0 +ij[3049] = 5 +id[3050] = "2751-03-18T05:30:02" +ik[3050] = 25.826 +il[3050] = -47 +im[3050] = 0 +ij[3050] = 6 +id[3051] = "2751-05-08T01:29:04" +ik[3051] = -1.554 +il[3051] = 132 +im[3051] = 0.0551 +ij[3051] = 4 +id[3052] = "2751-05-08T03:46:39" +ik[3052] = 37.088 +il[3052] = 99 +im[3052] = 0.0531 +ij[3052] = 1 +id[3053] = "2751-10-10T10:13:09" +ik[3053] = 27.625 +il[3053] = -75 +im[3053] = 0 +ij[3053] = 5 +id[3054] = "2752-02-03T09:28:04" +ik[3054] = 30.978 +il[3054] = 124 +im[3054] = 0 +ij[3054] = 6 +id[3055] = "2752-09-24T07:27:07" +ik[3055] = 28.229 +il[3055] = 106 +im[3055] = 0 +ij[3055] = 5 +id[3056] = "2752-11-16T23:34:25" +ik[3056] = -1.698 +il[3056] = 24 +im[3056] = 0.0832 +ij[3056] = 2 +id[3057] = "2752-11-22T14:33:38" +ik[3057] = 37.976 +il[3057] = -147 +im[3057] = 0.0376 +ij[3057] = 3 +id[3058] = "2753-01-15T01:05:05" +ik[3058] = 25.962 +il[3058] = -19 +im[3058] = 0 +ij[3058] = 6 +id[3059] = "2753-06-15T21:04:45" +ik[3059] = 38.372 +il[3059] = 51 +im[3059] = 0.0085 +ij[3059] = 1 +id[3060] = "2753-06-20T23:59:19" +ik[3060] = -1.622 +il[3060] = 57 +im[3060] = 0.0925 +ij[3060] = 4 +id[3061] = "2753-08-08T03:56:09" +ik[3061] = 27.162 +il[3061] = -26 +im[3061] = 0 +ij[3061] = 5 +id[3062] = "2753-12-01T13:53:02" +ik[3062] = 30.535 +il[3062] = 1 +im[3062] = 0 +ij[3062] = 6 +id[3063] = "2754-07-24T12:05:02" +ik[3063] = 28.76 +il[3063] = -9 +im[3063] = 0 +ij[3063] = 5 +id[3064] = "2754-11-14T17:28:01" +ik[3064] = 26.154 +il[3064] = 59 +im[3064] = 0 +ij[3064] = 6 +id[3065] = "2754-12-22T08:37:32" +ik[3065] = -1.594 +il[3065] = 63 +im[3065] = 0.1019 +ij[3065] = 2 +id[3066] = "2755-01-01T05:27:44" +ik[3066] = 36.314 +il[3066] = -154 +im[3066] = 0.0691 +ij[3066] = 3 +id[3067] = "2755-06-07T04:06:05" +ik[3067] = 26.758 +il[3067] = -71 +im[3067] = 0 +ij[3067] = 5 +id[3068] = "2755-07-28T09:42:37" +ik[3068] = 41.212 +il[3068] = 109 +im[3068] = 0.1055 +ij[3068] = 1 +id[3069] = "2755-08-02T04:58:00" +ik[3069] = -1.819 +il[3069] = -133 +im[3069] = 0.0959 +ij[3069] = 4 +id[3070] = "2755-09-30T00:07:03" +ik[3070] = 30.035 +il[3070] = 153 +im[3070] = 0 +ij[3070] = 6 +id[3071] = "2756-05-22T11:26:00" +ik[3071] = 29.315 +il[3071] = -48 +im[3071] = 0 +ij[3071] = 5 +id[3072] = "2756-09-13T05:57:07" +ik[3072] = 26.402 +il[3072] = -165 +im[3072] = 0 +ij[3072] = 6 +id[3073] = "2757-02-04T00:59:47" +ik[3073] = -1.594 +il[3073] = 79 +im[3073] = 0.0096 +ij[3073] = 2 +id[3074] = "2757-02-09T17:04:42" +ik[3074] = 36.492 +il[3074] = -108 +im[3074] = 0.1032 +ij[3074] = 3 +id[3075] = "2757-04-05T10:02:03" +ik[3075] = 26.413 +il[3075] = 159 +im[3075] = 0 +ij[3075] = 5 +id[3076] = "2757-07-28T16:07:06" +ik[3076] = 29.507 +il[3076] = -138 +im[3076] = 0 +ij[3076] = 6 +id[3077] = "2757-09-01T22:58:54" +ik[3077] = -2.125 +il[3077] = 103 +im[3077] = 0.1129 +ij[3077] = 4 +id[3078] = "2757-09-12T06:44:38" +ik[3078] = 45.022 +il[3078] = 88 +im[3078] = 0.0271 +ij[3078] = 1 +id[3079] = "2758-03-21T05:10:01" +ik[3079] = 29.877 +il[3079] = -4 +im[3079] = 0 +ij[3079] = 5 +id[3080] = "2758-07-13T13:48:00" +ik[3080] = 26.708 +il[3080] = 41 +im[3080] = 0 +ij[3080] = 6 +id[3081] = "2759-02-02T20:58:59" +ik[3081] = 26.129 +il[3081] = -44 +im[3081] = 0 +ij[3081] = 5 +id[3082] = "2759-03-31T08:28:36" +ik[3082] = 38.905 +il[3082] = -41 +im[3082] = 0.1033 +ij[3082] = 3 +id[3083] = "2759-04-11T20:50:02" +ik[3083] = -1.77 +il[3083] = -117 +im[3083] = 0.015 +ij[3083] = 2 +id[3084] = "2759-05-27T13:41:05" +ik[3084] = 28.976 +il[3084] = -151 +im[3084] = 0 +ij[3084] = 6 +id[3085] = "2759-10-09T04:26:56" +ik[3085] = -2.375 +il[3085] = -133 +im[3085] = 0.1075 +ij[3085] = 4 +id[3086] = "2759-11-02T15:26:38" +ik[3086] = 45.968 +il[3086] = -57 +im[3086] = 0.0573 +ij[3086] = 1 +id[3087] = "2760-01-17T17:04:59" +ik[3087] = 30.424 +il[3087] = 123 +im[3087] = 0 +ij[3087] = 5 +id[3088] = "2760-05-11T16:17:02" +ik[3088] = 27.07 +il[3088] = -39 +im[3088] = 0 +ij[3088] = 6 +id[3089] = "2760-12-02T12:11:57" +ik[3089] = 25.905 +il[3089] = 50 +im[3089] = 0 +ij[3089] = 5 +id[3090] = "2761-03-25T16:28:59" +ik[3090] = 28.462 +il[3090] = 121 +im[3090] = 0 +ij[3090] = 6 +id[3091] = "2761-06-08T07:00:37" +ik[3091] = 44.415 +il[3091] = 108 +im[3091] = 0.1722 +ij[3091] = 3 +id[3092] = "2761-07-08T22:19:50" +ik[3092] = -2.274 +il[3092] = 171 +im[3092] = 0.2242 +ij[3092] = 2 +id[3093] = "2761-11-14T23:08:00" +ik[3093] = 30.924 +il[3093] = -24 +im[3093] = 0 +ij[3093] = 5 +id[3094] = "2761-12-18T18:41:10" +ik[3094] = -2.071 +il[3094] = -174 +im[3094] = 0.1841 +ij[3094] = 4 +id[3095] = "2762-01-10T18:57:36" +ik[3095] = 41.35 +il[3095] = 41 +im[3095] = 0.0299 +ij[3095] = 1 +id[3096] = "2762-03-10T12:39:01" +ik[3096] = 27.489 +il[3096] = -28 +im[3096] = 0 +ij[3096] = 6 +id[3097] = "2762-10-02T06:57:01" +ik[3097] = 25.739 +il[3097] = 92 +im[3097] = 0 +ij[3097] = 5 +id[3098] = "2763-01-23T00:05:02" +ik[3098] = 27.976 +il[3098] = -38 +im[3098] = 0 +ij[3098] = 6 +id[3099] = "2763-08-06T03:26:38" +ik[3099] = 47.264 +il[3099] = -159 +im[3099] = 0.0791 +ij[3099] = 3 +id[3100] = "2763-09-02T14:00:18" +ik[3100] = -2.323 +il[3100] = -48 +im[3100] = 0.1241 +ij[3100] = 2 +id[3101] = "2763-09-12T23:22:59" +ik[3101] = 31.342 +il[3101] = -87 +im[3101] = 0 +ij[3101] = 5 +id[3102] = "2764-01-07T02:16:56" +ik[3102] = 27.962 +il[3102] = 81 +im[3102] = 0 +ij[3102] = 6 +id[3103] = "2764-02-27T08:18:59" +ik[3103] = -1.707 +il[3103] = 114 +im[3103] = 0.1205 +ij[3103] = 4 +id[3104] = "2764-03-09T00:08:38" +ik[3104] = 38.03 +il[3104] = -23 +im[3104] = 0.108 +ij[3104] = 1 +id[3105] = "2764-08-01T04:34:01" +ik[3105] = 25.629 +il[3105] = 91 +im[3105] = 0 +ij[3105] = 5 +id[3106] = "2764-11-21T12:00:00" +ik[3106] = 27.53 +il[3106] = 101 +im[3106] = 0 +ij[3106] = 6 +id[3107] = "2765-07-10T18:01:00" +ik[3107] = 31.641 +il[3107] = -68 +im[3107] = 0 +ij[3107] = 5 +id[3108] = "2765-09-21T00:33:33" +ik[3108] = 43.396 +il[3108] = -177 +im[3108] = 0.1151 +ij[3108] = 3 +id[3109] = "2765-10-05T04:39:26" +ik[3109] = -2.015 +il[3109] = -100 +im[3109] = 0.1201 +ij[3109] = 2 +id[3110] = "2765-11-04T08:42:00" +ik[3110] = 28.481 +il[3110] = -65 +im[3110] = 0 +ij[3110] = 6 +id[3111] = "2766-04-19T21:11:27" +ik[3111] = -1.565 +il[3111] = -120 +im[3111] = 0.0931 +ij[3111] = 4 +id[3112] = "2766-04-22T11:04:33" +ik[3112] = 37.011 +il[3112] = 56 +im[3112] = 0.0425 +ij[3112] = 1 +id[3113] = "2766-06-01T04:19:55" +ik[3113] = 25.576 +il[3113] = 59 +im[3113] = 0 +ij[3113] = 5 +id[3114] = "2766-09-21T03:39:53" +ik[3114] = 27.128 +il[3114] = -175 +im[3114] = 0 +ij[3114] = 6 +id[3115] = "2767-05-08T07:19:55" +ik[3115] = 31.789 +il[3115] = 29 +im[3115] = 0 +ij[3115] = 5 +id[3116] = "2767-09-02T07:45:59" +ik[3116] = 29.035 +il[3116] = -104 +im[3116] = 0 +ij[3116] = 6 +id[3117] = "2767-11-05T09:23:01" +ik[3117] = -1.767 +il[3117] = -32 +im[3117] = 0.0202 +ij[3117] = 2 +id[3118] = "2767-11-07T02:20:32" +ik[3118] = 39.144 +il[3118] = 90 +im[3118] = 0.0217 +ij[3118] = 3 +id[3119] = "2768-03-31T05:37:58" +ik[3119] = 25.578 +il[3119] = 4 +im[3119] = 0 +ij[3119] = 5 +id[3120] = "2768-05-31T08:11:36" +ik[3120] = 37.684 +il[3120] = -52 +im[3120] = 0.0047 +ij[3120] = 1 +id[3121] = "2768-06-03T15:39:55" +ik[3121] = -1.579 +il[3121] = -132 +im[3121] = 0.0725 +ij[3121] = 4 +id[3122] = "2768-07-20T22:30:00" +ik[3122] = 26.773 +il[3122] = -137 +im[3122] = 0 +ij[3122] = 6 +id[3123] = "2769-03-04T15:54:51" +ik[3123] = 31.764 +il[3123] = -164 +im[3123] = 0 +ij[3123] = 5 +id[3124] = "2769-06-29T23:48:54" +ik[3124] = 29.608 +il[3124] = -41 +im[3124] = 0 +ij[3124] = 6 +id[3125] = "2769-12-07T22:23:29" +ik[3125] = -1.623 +il[3125] = -70 +im[3125] = 0.0862 +ij[3125] = 2 +id[3126] = "2769-12-17T01:43:32" +ik[3126] = 36.746 +il[3126] = -31 +im[3126] = 0.0887 +ij[3126] = 3 +id[3127] = "2770-01-29T07:49:52" +ik[3127] = 25.634 +il[3127] = -65 +im[3127] = 0 +ij[3127] = 5 +id[3128] = "2770-05-20T19:55:55" +ik[3128] = 26.469 +il[3128] = -137 +im[3128] = 0 +ij[3128] = 6 +id[3129] = "2770-07-11T06:47:31" +ik[3129] = 39.917 +il[3129] = -161 +im[3129] = 0.0725 +ij[3129] = 1 +id[3130] = "2770-07-17T16:30:36" +ik[3130] = -1.727 +il[3130] = 116 +im[3130] = 0.0735 +ij[3130] = 4 +id[3131] = "2770-12-30T20:47:54" +ik[3131] = 31.564 +il[3131] = 59 +im[3131] = 0 +ij[3131] = 5 +id[3132] = "2771-04-27T09:45:56" +ik[3132] = 30.171 +il[3132] = 110 +im[3132] = 0 +ij[3132] = 6 +id[3133] = "2771-11-29T10:18:54" +ik[3133] = 25.745 +il[3133] = -138 +im[3133] = 0 +ij[3133] = 5 +id[3134] = "2772-01-16T21:55:56" +ik[3134] = -1.58 +il[3134] = 156 +im[3134] = 0.062 +ij[3134] = 2 +id[3135] = "2772-01-25T10:22:30" +ik[3135] = 36.194 +il[3135] = 51 +im[3135] = 0.1085 +ij[3135] = 3 +id[3136] = "2772-03-19T19:20:55" +ik[3136] = 26.216 +il[3136] = -165 +im[3136] = 0 +ij[3136] = 6 +id[3137] = "2772-08-21T13:13:17" +ik[3137] = -1.996 +il[3137] = -10 +im[3137] = 0.1206 +ij[3137] = 4 +id[3138] = "2772-08-24T18:00:34" +ik[3138] = 43.547 +il[3138] = -51 +im[3138] = 0.0685 +ij[3138] = 1 +id[3139] = "2772-10-26T23:40:50" +ik[3139] = 31.206 +il[3139] = -48 +im[3139] = 0 +ij[3139] = 5 +id[3140] = "2773-02-21T15:17:51" +ik[3140] = 30.691 +il[3140] = -37 +im[3140] = 0 +ij[3140] = 6 +id[3141] = "2773-09-28T12:28:56" +ik[3141] = 25.91 +il[3141] = 154 +im[3141] = 0 +ij[3141] = 5 +id[3142] = "2774-01-17T20:09:53" +ik[3142] = 26.014 +il[3142] = 147 +im[3142] = 0 +ij[3142] = 6 +id[3143] = "2774-03-10T03:50:32" +ik[3143] = 37.633 +il[3143] = 45 +im[3143] = 0.0454 +ij[3143] = 3 +id[3144] = "2774-03-13T02:17:18" +ik[3144] = -1.669 +il[3144] = 96 +im[3144] = 0.0303 +ij[3144] = 2 +id[3145] = "2774-08-24T02:47:54" +ik[3145] = 30.726 +il[3145] = -158 +im[3145] = 0 +ij[3145] = 5 +id[3146] = "2774-09-22T00:28:52" +ik[3146] = -2.313 +il[3146] = -32 +im[3146] = 0.0486 +ij[3146] = 4 +id[3147] = "2774-10-12T01:04:30" +ik[3147] = 46.363 +il[3147] = 156 +im[3147] = 0.1537 +ij[3147] = 1 +id[3148] = "2774-12-19T18:33:50" +ik[3148] = 31.127 +il[3148] = -151 +im[3148] = 0 +ij[3148] = 6 +id[3149] = "2775-07-29T13:41:48" +ik[3149] = 26.128 +il[3149] = 99 +im[3149] = 0 +ij[3149] = 5 +id[3150] = "2775-11-17T21:47:48" +ik[3150] = 25.863 +il[3150] = 87 +im[3150] = 0 +ij[3150] = 6 +id[3151] = "2776-05-09T19:09:33" +ik[3151] = 41.929 +il[3151] = -138 +im[3151] = 0.1467 +ij[3151] = 3 +id[3152] = "2776-06-04T21:03:33" +ik[3152] = -2.056 +il[3152] = 81 +im[3152] = 0.1684 +ij[3152] = 2 +id[3153] = "2776-06-20T08:33:47" +ik[3153] = 30.165 +il[3153] = 55 +im[3153] = 0 +ij[3153] = 5 +id[3154] = "2776-10-15T21:59:54" +ik[3154] = 31.442 +il[3154] = 91 +im[3154] = 0 +ij[3154] = 6 +id[3155] = "2776-11-17T00:14:40" +ik[3155] = -2.254 +il[3155] = 10 +im[3155] = 0.1652 +ij[3155] = 4 +id[3156] = "2776-12-13T16:07:32" +ik[3156] = 43.343 +il[3156] = 30 +im[3156] = 0.0853 +ij[3156] = 1 +id[3157] = "2777-05-28T13:23:48" +ik[3157] = 26.4 +il[3157] = 67 +im[3157] = 0 +ij[3157] = 5 +id[3158] = "2777-09-16T23:39:50" +ik[3158] = 25.765 +il[3158] = 25 +im[3158] = 0 +ij[3158] = 6 +id[3159] = "2778-04-17T19:06:48" +ik[3159] = 29.566 +il[3159] = -161 +im[3159] = 0 +ij[3159] = 5 +id[3160] = "2778-07-17T21:28:30" +ik[3160] = 47.194 +il[3160] = -45 +im[3160] = 0.1445 +ij[3160] = 3 +id[3161] = "2778-08-13T03:44:47" +ik[3161] = 31.606 +il[3161] = -62 +im[3161] = 0 +ij[3161] = 6 +id[3162] = "2778-08-16T12:59:08" +ik[3162] = -2.393 +il[3162] = 11 +im[3162] = 0.1581 +ij[3162] = 2 +id[3163] = "2779-02-02T15:30:15" +ik[3163] = -1.819 +il[3163] = -9 +im[3163] = 0.0371 +ij[3163] = 4 +id[3164] = "2779-02-17T15:10:30" +ik[3164] = 39.008 +il[3164] = 137 +im[3164] = 0.0319 +ij[3164] = 1 +id[3165] = "2779-03-28T10:55:46" +ik[3165] = 26.726 +il[3165] = 66 +im[3165] = 0 +ij[3165] = 5 +id[3166] = "2779-07-18T01:09:50" +ik[3166] = 25.718 +il[3166] = -32 +im[3166] = 0 +ij[3166] = 6 +id[3167] = "2780-02-13T11:58:50" +ik[3167] = 28.964 +il[3167] = -110 +im[3167] = 0 +ij[3167] = 5 +id[3168] = "2780-06-09T13:26:49" +ik[3168] = 31.604 +il[3168] = 86 +im[3168] = 0 +ij[3168] = 6 +id[3169] = "2780-09-02T04:57:21" +ik[3169] = 45.263 +il[3169] = 144 +im[3169] = 0.0879 +ij[3169] = 3 +id[3170] = "2780-09-22T23:11:36" +ik[3170] = -2.137 +il[3170] = 74 +im[3170] = 0.1178 +ij[3170] = 2 +id[3171] = "2781-01-25T05:41:51" +ik[3171] = 27.104 +il[3171] = 105 +im[3171] = 0 +ij[3171] = 5 +id[3172] = "2781-03-31T17:32:03" +ik[3172] = -1.6 +il[3172] = -30 +im[3172] = 0.1078 +ij[3172] = 4 +id[3173] = "2781-04-06T02:26:26" +ik[3173] = 37.188 +il[3173] = -113 +im[3173] = 0.0424 +ij[3173] = 1 +id[3174] = "2781-05-17T01:41:48" +ik[3174] = 25.724 +il[3174] = -73 +im[3174] = 0 +ij[3174] = 6 +id[3175] = "2781-12-11T12:02:44" +ik[3175] = 28.384 +il[3175] = -162 +im[3175] = 0 +ij[3175] = 5 +id[3176] = "2782-04-07T04:05:48" +ik[3176] = 31.443 +il[3176] = 163 +im[3176] = 0 +ij[3176] = 6 +id[3177] = "2782-10-20T12:19:26" +ik[3177] = 40.614 +il[3177] = -17 +im[3177] = 0.0424 +ij[3177] = 3 +id[3178] = "2782-10-24T03:40:04" +ik[3178] = -1.852 +il[3178] = 148 +im[3178] = 0.0446 +ij[3178] = 2 +id[3179] = "2782-11-24T21:03:44" +ik[3179] = 27.533 +il[3179] = -166 +im[3179] = 0 +ij[3179] = 5 +id[3180] = "2783-03-17T00:39:44" +ik[3180] = 25.783 +il[3180] = -88 +im[3180] = 0 +ij[3180] = 6 +id[3181] = "2783-05-16T23:31:20" +ik[3181] = 37.234 +il[3181] = 146 +im[3181] = 0.0319 +ij[3181] = 1 +id[3182] = "2783-05-18T04:01:24" +ik[3182] = -1.557 +il[3182] = 89 +im[3182] = 0.0576 +ij[3182] = 4 +id[3183] = "2783-10-09T19:31:43" +ik[3183] = 27.845 +il[3183] = 37 +im[3183] = 0 +ij[3183] = 5 +id[3184] = "2784-02-03T00:13:49" +ik[3184] = 31.143 +il[3184] = 160 +im[3184] = 0 +ij[3184] = 6 +id[3185] = "2784-09-23T08:24:43" +ik[3185] = 28.009 +il[3185] = -18 +im[3185] = 0 +ij[3185] = 5 +id[3186] = "2784-11-24T10:28:58" +ik[3186] = -1.667 +il[3186] = -168 +im[3186] = 0.064 +ij[3186] = 2 +id[3187] = "2784-12-01T15:55:26" +ik[3187] = 37.458 +il[3187] = -180 +im[3187] = 0.0809 +ij[3187] = 3 +id[3188] = "2785-01-13T21:24:46" +ik[3188] = 25.896 +il[3188] = -77 +im[3188] = 0 +ij[3188] = 6 +id[3189] = "2785-06-24T22:34:19" +ik[3189] = 38.854 +il[3189] = 17 +im[3189] = 0.0733 +ij[3189] = 1 +id[3190] = "2785-06-30T20:15:39" +ik[3190] = -1.654 +il[3190] = 109 +im[3190] = 0.093 +ij[3190] = 4 +id[3191] = "2785-08-07T10:14:44" +ik[3191] = 27.357 +il[3191] = 130 +im[3191] = 0 +ij[3191] = 5 +id[3192] = "2785-12-01T02:05:42" +ik[3192] = 30.737 +il[3192] = 74 +im[3192] = 0 +ij[3192] = 6 +id[3193] = "2786-07-23T15:11:48" +ik[3193] = 28.524 +il[3193] = -164 +im[3193] = 0 +ij[3193] = 5 +id[3194] = "2786-11-13T15:15:41" +ik[3194] = 26.064 +il[3194] = -20 +im[3194] = 0 +ij[3194] = 6 +id[3195] = "2786-12-31T03:47:13" +ik[3195] = -1.584 +il[3195] = 120 +im[3195] = 0.0705 +ij[3195] = 2 +id[3196] = "2787-01-09T22:13:26" +ik[3196] = 36.193 +il[3196] = -62 +im[3196] = 0.1073 +ij[3196] = 3 +id[3197] = "2787-06-06T07:40:48" +ik[3197] = 26.926 +il[3197] = 125 +im[3197] = 0 +ij[3197] = 5 +id[3198] = "2787-08-07T12:13:23" +ik[3198] = 42.011 +il[3198] = 70 +im[3198] = 0.1003 +ij[3198] = 1 +id[3199] = "2787-08-10T04:53:00" +ik[3199] = -1.878 +il[3199] = -153 +im[3199] = 0.0503 +ij[3199] = 4 +id[3200] = "2787-09-29T09:48:40" +ik[3200] = 30.257 +il[3200] = -97 +im[3200] = 0 +ij[3200] = 6 +id[3201] = "2788-05-21T16:53:45" +ik[3201] = 29.071 +il[3201] = 123 +im[3201] = 0 +ij[3201] = 5 +id[3202] = "2788-09-12T05:32:47" +ik[3202] = 26.287 +il[3202] = 89 +im[3202] = 0 +ij[3202] = 6 +id[3203] = "2789-02-16T06:26:21" +ik[3203] = -1.612 +il[3203] = 13 +im[3203] = 0.1189 +ij[3203] = 2 +id[3204] = "2789-02-19T12:40:19" +ik[3204] = 36.795 +il[3204] = -49 +im[3204] = 0.1085 +ij[3204] = 3 +id[3205] = "2789-04-04T11:11:45" +ik[3205] = 26.556 +il[3205] = 31 +im[3205] = 0 +ij[3205] = 5 +id[3206] = "2789-07-27T23:18:40" +ik[3206] = 29.738 +il[3206] = 7 +im[3206] = 0 +ij[3206] = 6 +id[3207] = "2789-09-08T17:51:41" +ik[3207] = -2.197 +il[3207] = 148 +im[3207] = 0.1044 +ij[3207] = 4 +id[3208] = "2789-09-22T20:48:20" +ik[3208] = 45.695 +il[3208] = -118 +im[3208] = 0.1194 +ij[3208] = 1 +id[3209] = "2790-03-20T13:06:40" +ik[3209] = 29.633 +il[3209] = 131 +im[3209] = 0 +ij[3209] = 5 +id[3210] = "2790-07-12T15:30:40" +ik[3210] = 26.568 +il[3210] = -98 +im[3210] = 0 +ij[3210] = 6 +id[3211] = "2791-02-01T20:03:41" +ik[3211] = 26.245 +il[3211] = -143 +im[3211] = 0 +ij[3211] = 5 +id[3212] = "2791-04-13T19:58:22" +ik[3212] = 39.827 +il[3212] = 172 +im[3212] = 0.0921 +ij[3212] = 3 +id[3213] = "2791-04-30T18:57:29" +ik[3213] = -1.853 +il[3213] = -12 +im[3213] = 0.0466 +ij[3213] = 2 +id[3214] = "2791-05-26T18:29:39" +ik[3214] = 29.205 +il[3214] = 30 +im[3214] = 0 +ij[3214] = 6 +id[3215] = "2791-10-21T13:25:56" +ik[3215] = -2.366 +il[3215] = 116 +im[3215] = 0.1931 +ij[3215] = 4 +id[3216] = "2791-11-16T17:26:18" +ik[3216] = 45.246 +il[3216] = -48 +im[3216] = 0.1417 +ij[3216] = 1 +id[3217] = "2792-01-17T03:33:41" +ik[3217] = 30.19 +il[3217] = -139 +im[3217] = 0 +ij[3217] = 5 +id[3218] = "2792-05-10T20:24:43" +ik[3218] = 26.906 +il[3218] = 148 +im[3218] = 0 +ij[3218] = 6 +id[3219] = "2792-12-01T09:30:40" +ik[3219] = 25.995 +il[3219] = -22 +im[3219] = 0 +ij[3219] = 5 +id[3220] = "2793-03-24T19:04:39" +ik[3220] = 28.682 +il[3220] = -27 +im[3220] = 0 +ij[3220] = 6 +id[3221] = "2793-06-24T02:18:23" +ik[3221] = 45.701 +il[3221] = -132 +im[3221] = 0.0585 +ij[3221] = 3 +id[3222] = "2793-07-24T23:52:37" +ik[3222] = -2.356 +il[3222] = -159 +im[3222] = 0.1726 +ij[3222] = 2 +id[3223] = "2793-11-14T12:10:39" +ik[3223] = 30.714 +il[3223] = 37 +im[3223] = 0 +ij[3223] = 5 +id[3224] = "2794-01-05T06:31:44" +ik[3224] = -1.971 +il[3224] = 74 +im[3224] = 0.1008 +ij[3224] = 4 +id[3225] = "2794-01-25T09:29:22" +ik[3225] = 40.395 +il[3225] = -140 +im[3225] = 0.1264 +ij[3225] = 1 +id[3226] = "2794-03-09T19:31:43" +ik[3226] = 27.3 +il[3226] = 119 +im[3226] = 0 +ij[3226] = 6 +id[3227] = "2794-10-01T02:49:37" +ik[3227] = 25.803 +il[3227] = 41 +im[3227] = 0 +ij[3227] = 5 +id[3228] = "2795-01-22T00:38:35" +ik[3228] = 28.182 +il[3228] = -156 +im[3228] = 0 +ij[3228] = 6 +id[3229] = "2795-08-16T06:18:17" +ik[3229] = 46.772 +il[3229] = 158 +im[3229] = 0.0272 +ij[3229] = 3 +id[3230] = "2795-09-10T21:08:12" +ik[3230] = -2.262 +il[3230] = -173 +im[3230] = 0.0726 +ij[3230] = 2 +id[3231] = "2795-09-12T14:55:40" +ik[3231] = 31.173 +il[3231] = -62 +im[3231] = 0 +ij[3231] = 5 +id[3232] = "2796-01-06T12:08:38" +ik[3232] = 27.75 +il[3232] = -175 +im[3232] = 0 +ij[3232] = 6 +id[3233] = "2796-03-11T00:37:59" +ik[3233] = -1.66 +il[3233] = -114 +im[3233] = 0.0482 +ij[3233] = 4 +id[3234] = "2796-03-19T15:15:15" +ik[3234] = 37.644 +il[3234] = 108 +im[3234] = 0.0888 +ij[3234] = 1 +id[3235] = "2796-07-30T23:17:39" +ik[3235] = 25.669 +il[3235] = 57 +im[3235] = 0 +ij[3235] = 5 +id[3236] = "2796-11-20T10:45:41" +ik[3236] = 27.718 +il[3236] = 9 +im[3236] = 0 +ij[3236] = 6 +id[3237] = "2797-07-10T11:58:42" +ik[3237] = 31.529 +il[3237] = -79 +im[3237] = 0 +ij[3237] = 5 +id[3238] = "2797-10-01T20:58:16" +ik[3238] = 42.355 +il[3238] = -116 +im[3238] = 0.101 +ij[3238] = 3 +id[3239] = "2797-10-12T02:51:20" +ik[3239] = -1.953 +il[3239] = -105 +im[3239] = 0.1182 +ij[3239] = 2 +id[3240] = "2797-11-03T21:44:38" +ik[3240] = 28.25 +il[3240] = -7 +im[3240] = 0 +ij[3240] = 6 +id[3241] = "2798-04-30T07:54:27" +ik[3241] = -1.556 +il[3241] = 76 +im[3241] = 0.0125 +ij[3241] = 4 +id[3242] = "2798-05-01T11:51:12" +ik[3242] = 37.022 +il[3242] = 28 +im[3242] = 0.0347 +ij[3242] = 1 +id[3243] = "2798-05-30T22:12:34" +ik[3243] = 25.592 +il[3243] = 38 +im[3243] = 0 +ij[3243] = 5 +id[3244] = "2798-09-20T00:52:33" +ik[3244] = 27.296 +il[3244] = 116 +im[3244] = 0 +ij[3244] = 6 +id[3245] = "2799-05-08T03:33:33" +ik[3245] = 31.746 +il[3245] = -15 +im[3245] = 0 +ij[3245] = 5 +id[3246] = "2799-09-02T00:00:34" +ik[3246] = 28.791 +il[3246] = -92 +im[3246] = 0 +ij[3246] = 6 +id[3247] = "2799-11-12T13:52:41" +ik[3247] = -1.727 +il[3247] = -130 +im[3247] = 0.0208 +ij[3247] = 2 +id[3248] = "2799-11-16T15:22:19" +ik[3248] = 38.46 +il[3248] = -113 +im[3248] = 0.0706 +ij[3248] = 3 +id[3249] = "2800-03-29T22:55:37" +ik[3249] = 25.57 +il[3249] = -9 +im[3249] = 0 +ij[3249] = 5 +id[3250] = "2800-06-09T04:27:15" +ik[3250] = 38.033 +il[3250] = -11 +im[3250] = 0.0808 +ij[3250] = 1 +id[3251] = "2800-06-13T13:40:15" +ik[3251] = -1.6 +il[3251] = -107 +im[3251] = 0.1108 +ij[3251] = 4 +id[3252] = "2800-07-19T18:24:37" +ik[3252] = 26.921 +il[3252] = 173 +im[3252] = 0 +ij[3252] = 6 +id[3253] = "2801-03-04T14:05:34" +ik[3253] = 31.797 +il[3253] = 123 +im[3253] = 0 +ij[3253] = 5 +id[3254] = "2801-06-29T19:01:37" +ik[3254] = 29.359 +il[3254] = -72 +im[3254] = 0 +ij[3254] = 6 +id[3255] = "2801-12-16T01:10:55" +ik[3255] = -1.605 +il[3255] = -133 +im[3255] = 0.0756 +ij[3255] = 2 +id[3256] = "2801-12-25T18:05:11" +ik[3256] = 36.472 +il[3256] = 67 +im[3256] = 0.0986 +ij[3256] = 3 +id[3257] = "2802-01-28T00:48:31" +ik[3257] = 25.603 +il[3257] = -73 +im[3257] = 0 +ij[3257] = 5 +id[3258] = "2802-05-19T14:47:36" +ik[3258] = 26.594 +il[3258] = -172 +im[3258] = 0 +ij[3258] = 6 +id[3259] = "2802-07-20T22:30:17" +ik[3259] = 40.604 +il[3259] = -42 +im[3259] = 0.1191 +ij[3259] = 1 +id[3260] = "2802-07-26T19:38:29" +ik[3260] = -1.775 +il[3260] = 58 +im[3260] = 0.0364 +ij[3260] = 4 +id[3261] = "2802-12-30T20:23:34" +ik[3261] = 31.673 +il[3261] = -35 +im[3261] = 0 +ij[3261] = 5 +id[3262] = "2803-04-27T07:27:33" +ik[3262] = 29.93 +il[3262] = 42 +im[3262] = 0 +ij[3262] = 6 +id[3263] = "2803-11-28T03:15:33" +ik[3263] = 25.689 +il[3263] = -145 +im[3263] = 0 +ij[3263] = 5 +id[3264] = "2804-01-27T10:06:03" +ik[3264] = -1.585 +il[3264] = -27 +im[3264] = 0.0272 +ij[3264] = 2 +id[3265] = "2804-02-03T14:18:14" +ik[3265] = 36.319 +il[3265] = -21 +im[3265] = 0.1077 +ij[3265] = 3 +id[3266] = "2804-03-18T13:25:32" +ik[3266] = 26.319 +il[3266] = 171 +im[3266] = 0 +ij[3266] = 6 +id[3267] = "2804-08-28T04:24:44" +ik[3267] = -2.066 +il[3267] = 87 +im[3267] = 0.1277 +ij[3267] = 4 +id[3268] = "2804-09-04T06:38:09" +ik[3268] = 44.387 +il[3268] = 123 +im[3268] = 0.0352 +ij[3268] = 1 +id[3269] = "2804-10-26T23:53:31" +ik[3269] = 31.38 +il[3269] = -152 +im[3269] = 0 +ij[3269] = 5 +id[3270] = "2805-02-21T14:39:33" +ik[3270] = 30.473 +il[3270] = -127 +im[3270] = 0 +ij[3270] = 6 +id[3271] = "2805-09-27T05:37:32" +ik[3271] = 25.83 +il[3271] = 144 +im[3271] = 0 +ij[3271] = 5 +id[3272] = "2806-01-16T13:42:31" +ik[3272] = 26.095 +il[3272] = 131 +im[3272] = 0 +ij[3272] = 6 +id[3273] = "2806-03-21T18:48:14" +ik[3273] = 38.276 +il[3273] = -171 +im[3273] = 0.0824 +ij[3273] = 3 +id[3274] = "2806-03-29T04:44:18" +ik[3274] = -1.718 +il[3274] = 110 +im[3274] = 0.0798 +ij[3274] = 2 +id[3275] = "2806-08-24T02:36:31" +ik[3275] = 30.949 +il[3275] = 104 +im[3275] = 0 +ij[3275] = 5 +id[3276] = "2806-10-01T03:41:12" +ik[3276] = -2.358 +il[3276] = -89 +im[3276] = 0.1308 +ij[3276] = 4 +id[3277] = "2806-10-23T19:37:12" +ik[3277] = 46.296 +il[3277] = -105 +im[3277] = 0.0827 +ij[3277] = 1 +id[3278] = "2806-12-19T18:36:34" +ik[3278] = 30.951 +il[3278] = 109 +im[3278] = 0 +ij[3278] = 6 +id[3279] = "2807-07-28T07:20:29" +ik[3279] = 26.025 +il[3279] = 82 +im[3279] = 0 +ij[3279] = 5 +id[3280] = "2807-11-16T15:03:27" +ik[3280] = 25.922 +il[3280] = 75 +im[3280] = 0 +ij[3280] = 6 +id[3281] = "2808-05-26T08:33:12" +ik[3281] = 43.289 +il[3281] = 76 +im[3281] = 0.0844 +ij[3281] = 3 +id[3282] = "2808-06-20T06:54:34" +ik[3282] = 30.417 +il[3282] = -22 +im[3282] = 0 +ij[3282] = 5 +id[3283] = "2808-06-24T16:55:53" +ik[3283] = -2.182 +il[3283] = -131 +im[3283] = 0.1485 +ij[3283] = 2 +id[3284] = "2808-10-15T21:40:27" +ik[3284] = 31.323 +il[3284] = -4 +im[3284] = 0 +ij[3284] = 6 +id[3285] = "2808-12-04T17:00:20" +ik[3285] = -2.155 +il[3285] = -170 +im[3285] = 0.043 +ij[3285] = 4 +id[3286] = "2808-12-29T18:31:06" +ik[3286] = 42.213 +il[3286] = 48 +im[3286] = 0.0789 +ij[3286] = 1 +id[3287] = "2809-05-27T07:47:34" +ik[3287] = 26.274 +il[3287] = 39 +im[3287] = 0 +ij[3287] = 5 +id[3288] = "2809-09-15T16:53:28" +ik[3288] = 25.801 +il[3288] = 13 +im[3288] = 0 +ij[3288] = 6 +id[3289] = "2810-04-17T15:08:29" +ik[3289] = 29.83 +il[3289] = 155 +im[3289] = 0 +ij[3289] = 5 +id[3290] = "2810-07-29T04:47:08" +ik[3290] = 47.406 +il[3290] = -144 +im[3290] = 0.0547 +ij[3290] = 3 +id[3291] = "2810-08-13T02:09:27" +ik[3291] = 31.555 +il[3291] = -138 +im[3291] = 0 +ij[3291] = 6 +id[3292] = "2810-08-26T18:15:55" +ik[3292] = -2.364 +il[3292] = -67 +im[3292] = 0.0642 +ij[3292] = 2 +id[3293] = "2811-02-17T00:00:48" +ik[3293] = -1.752 +il[3293] = -104 +im[3293] = 0.1187 +ij[3293] = 4 +id[3294] = "2811-03-01T11:50:12" +ik[3294] = 38.421 +il[3294] = -164 +im[3294] = 0.1306 +ij[3294] = 1 +id[3295] = "2811-03-27T06:21:27" +ik[3295] = 26.577 +il[3295] = 23 +im[3295] = 0 +ij[3295] = 5 +id[3296] = "2811-07-16T18:38:26" +ik[3296] = 25.732 +il[3296] = -47 +im[3296] = 0 +ij[3296] = 6 +id[3297] = "2812-02-13T05:05:25" +ik[3297] = 29.225 +il[3297] = -111 +im[3297] = 0 +ij[3297] = 5 +id[3298] = "2812-06-09T09:58:27" +ik[3298] = 31.626 +il[3298] = 39 +im[3298] = 0 +ij[3298] = 6 +id[3299] = "2812-09-12T19:36:11" +ik[3299] = 44.247 +il[3299] = -71 +im[3299] = 0.118 +ij[3299] = 3 +id[3300] = "2812-09-30T01:52:49" +ik[3300] = -2.069 +il[3300] = 4 +im[3300] = 0.1188 +ij[3300] = 2 +id[3301] = "2813-01-24T02:24:25" +ik[3301] = 26.933 +il[3301] = 44 +im[3301] = 0 +ij[3301] = 5 +id[3302] = "2813-04-11T18:34:36" +ik[3302] = -1.577 +il[3302] = -43 +im[3302] = 0.0762 +ij[3302] = 4 +id[3303] = "2813-04-15T13:13:09" +ik[3303] = 37.057 +il[3303] = 73 +im[3303] = 0.017 +ij[3303] = 1 +id[3304] = "2813-05-15T19:40:30" +ik[3304] = 25.715 +il[3304] = -97 +im[3304] = 0 +ij[3304] = 6 +id[3305] = "2813-12-11T01:57:30" +ik[3305] = 28.632 +il[3305] = -120 +im[3305] = 0 +ij[3305] = 5 +id[3306] = "2814-04-06T22:22:30" +ik[3306] = 31.532 +il[3306] = 148 +im[3306] = 0 +ij[3306] = 6 +id[3307] = "2814-10-30T16:11:08" +ik[3307] = 39.764 +il[3307] = -77 +im[3307] = 0.0665 +ij[3307] = 3 +id[3308] = "2814-10-31T03:54:37" +ik[3308] = -1.803 +il[3308] = 112 +im[3308] = 0.0762 +ij[3308] = 2 +id[3309] = "2814-11-23T19:19:29" +ik[3309] = 27.34 +il[3309] = 110 +im[3309] = 0 +ij[3309] = 5 +id[3310] = "2815-03-15T19:24:23" +ik[3310] = 25.751 +il[3310] = -127 +im[3310] = 0 +ij[3310] = 6 +id[3311] = "2815-05-25T18:20:09" +ik[3311] = 37.452 +il[3311] = -153 +im[3311] = 0.0702 +ij[3311] = 1 +id[3312] = "2815-05-28T04:09:44" +ik[3312] = -1.567 +il[3312] = 82 +im[3312] = 0.0985 +ij[3312] = 4 +id[3313] = "2815-10-09T06:13:23" +ik[3313] = 28.074 +il[3313] = 129 +im[3313] = 0 +ij[3313] = 5 +id[3314] = "2816-02-02T16:04:30" +ik[3314] = 31.289 +il[3314] = 180 +im[3314] = 0 +ij[3314] = 6 +id[3315] = "2816-09-22T08:30:28" +ik[3315] = 27.796 +il[3315] = -129 +im[3315] = 0 +ij[3315] = 5 +id[3316] = "2816-12-02T01:55:32" +ik[3316] = -1.641 +il[3316] = -66 +im[3316] = 0.0467 +ij[3316] = 2 +id[3317] = "2816-12-10T12:45:04" +ik[3317] = 37.028 +il[3317] = -147 +im[3317] = 0.1028 +ij[3317] = 3 +id[3318] = "2817-01-12T17:11:28" +ik[3318] = 25.84 +il[3318] = -127 +im[3318] = 0 +ij[3318] = 6 +id[3319] = "2817-07-04T04:18:02" +ik[3319] = 39.41 +il[3319] = -80 +im[3319] = 0.1125 +ij[3319] = 1 +id[3320] = "2817-07-10T13:46:39" +ik[3320] = -1.692 +il[3320] = -160 +im[3320] = 0.0431 +ij[3320] = 4 +id[3321] = "2817-08-06T17:50:29" +ik[3321] = 27.562 +il[3321] = -92 +im[3321] = 0 +ij[3321] = 5 +id[3322] = "2817-11-30T15:25:29" +ik[3322] = 30.924 +il[3322] = 130 +im[3322] = 0 +ij[3322] = 6 +id[3323] = "2818-07-22T17:20:24" +ik[3323] = 28.295 +il[3323] = 55 +im[3323] = 0 +ij[3323] = 5 +id[3324] = "2818-11-12T12:23:28" +ik[3324] = 25.984 +il[3324] = -90 +im[3324] = 0 +ij[3324] = 6 +id[3325] = "2819-01-09T10:59:33" +ik[3325] = -1.579 +il[3325] = 1 +im[3325] = 0.0359 +ij[3325] = 2 +id[3326] = "2819-01-18T17:22:07" +ik[3326] = 36.158 +il[3326] = -5 +im[3326] = 0.0971 +ij[3326] = 3 +id[3327] = "2819-06-05T12:25:20" +ik[3327] = 27.106 +il[3327] = -56 +im[3327] = 0 +ij[3327] = 5 +id[3328] = "2819-08-17T13:03:07" +ik[3328] = -1.941 +il[3328] = 56 +im[3328] = 0.0543 +ij[3328] = 4 +id[3329] = "2819-08-17T19:46:07" +ik[3329] = 42.851 +il[3329] = -42 +im[3329] = 0.0476 +ij[3329] = 1 +id[3330] = "2819-09-28T20:35:22" +ik[3330] = 30.472 +il[3330] = -4 +im[3330] = 0 +ij[3330] = 6 +id[3331] = "2820-05-20T21:18:25" +ik[3331] = 28.829 +il[3331] = -50 +im[3331] = 0 +ij[3331] = 5 +id[3332] = "2820-09-11T04:19:20" +ik[3332] = 26.183 +il[3332] = -5 +im[3332] = 0 +ij[3332] = 6 +id[3333] = "2821-03-01T17:12:01" +ik[3333] = -1.639 +il[3333] = -122 +im[3333] = 0.0055 +ij[3333] = 2 +id[3334] = "2821-03-01T20:37:06" +ik[3334] = 37.209 +il[3334] = -172 +im[3334] = 0.0017 +ij[3334] = 3 +id[3335] = "2821-04-03T13:23:22" +ik[3335] = 26.709 +il[3335] = -116 +im[3335] = 0 +ij[3335] = 5 +id[3336] = "2821-07-27T07:35:19" +ik[3336] = 29.966 +il[3336] = 137 +im[3336] = 0 +ij[3336] = 6 +id[3337] = "2821-09-16T00:59:35" +ik[3337] = -2.265 +il[3337] = 13 +im[3337] = 0.1575 +ij[3337] = 4 +id[3338] = "2821-10-03T14:29:02" +ik[3338] = 46.174 +il[3338] = -16 +im[3338] = 0.1356 +ij[3338] = 1 +id[3339] = "2822-03-19T19:57:21" +ik[3339] = 29.387 +il[3339] = -78 +im[3339] = 0 +ij[3339] = 5 +id[3340] = "2822-07-11T16:15:18" +ik[3340] = 26.439 +il[3340] = 139 +im[3340] = 0 +ij[3340] = 6 +id[3341] = "2823-01-31T20:01:23" +ik[3341] = 26.373 +il[3341] = 105 +im[3341] = 0 +ij[3341] = 5 +id[3342] = "2823-04-28T13:00:02" +ik[3342] = 40.921 +il[3342] = -47 +im[3342] = 0.1188 +ij[3342] = 3 +id[3343] = "2823-05-20T20:48:02" +ik[3343] = -1.957 +il[3343] = 48 +im[3343] = 0.0637 +ij[3343] = 2 +id[3344] = "2823-05-26T00:19:17" +ik[3344] = 29.436 +il[3344] = -165 +im[3344] = 0 +ij[3344] = 6 +id[3345] = "2823-11-05T04:09:49" +ik[3345] = -2.318 +il[3345] = -61 +im[3345] = 0.0601 +ij[3345] = 4 +id[3346] = "2823-12-02T03:31:58" +ik[3346] = 44.253 +il[3346] = -149 +im[3346] = 0.0142 +ij[3346] = 1 +id[3347] = "2824-01-16T12:57:18" +ik[3347] = 29.949 +il[3347] = -25 +im[3347] = 0 +ij[3347] = 5 +id[3348] = "2824-05-09T23:27:18" +ik[3348] = 26.752 +il[3348] = -8 +im[3348] = 0 +ij[3348] = 6 +id[3349] = "2824-11-30T07:34:19" +ik[3349] = 26.096 +il[3349] = -105 +im[3349] = 0 +ij[3349] = 5 +id[3350] = "2825-03-23T22:36:20" +ik[3350] = 28.907 +il[3350] = 172 +im[3350] = 0 +ij[3350] = 6 +id[3351] = "2825-07-08T06:12:57" +ik[3351] = 46.695 +il[3351] = -156 +im[3351] = 0.1583 +ij[3351] = 3 +id[3352] = "2825-08-07T14:40:04" +ik[3352] = -2.394 +il[3352] = 11 +im[3352] = 0.1505 +ij[3352] = 2 +id[3353] = "2825-11-14T00:06:20" +ik[3353] = 30.492 +il[3353] = 114 +im[3353] = 0 +ij[3353] = 5 +id[3354] = "2826-01-21T17:27:11" +ik[3354] = -1.882 +il[3354] = -36 +im[3354] = 0.0548 +ij[3354] = 4 +id[3355] = "2826-02-07T22:31:00" +ik[3355] = 39.575 +il[3355] = 50 +im[3355] = 0.0353 +ij[3355] = 1 +id[3356] = "2826-03-09T01:10:16" +ik[3356] = 27.122 +il[3356] = -75 +im[3356] = 0 +ij[3356] = 6 +id[3357] = "2826-09-29T23:17:22" +ik[3357] = 25.879 +il[3357] = -18 +im[3357] = 0 +ij[3357] = 5 +id[3358] = "2827-01-21T02:04:16" +ik[3358] = 28.395 +il[3358] = 74 +im[3358] = 0 +ij[3358] = 6 +id[3359] = "2827-08-26T09:06:54" +ik[3359] = 46.011 +il[3359] = 117 +im[3359] = 0.1121 +ij[3359] = 3 +id[3360] = "2827-09-12T05:23:16" +ik[3360] = 30.984 +il[3360] = -22 +im[3360] = 0 +ij[3360] = 5 +id[3361] = "2827-09-18T13:36:05" +ik[3361] = -2.194 +il[3361] = -83 +im[3361] = 0.0327 +ij[3361] = 2 +id[3362] = "2828-01-05T20:41:16" +ik[3362] = 27.548 +il[3362] = -51 +im[3362] = 0 +ij[3362] = 6 +id[3363] = "2828-03-23T00:07:12" +ik[3363] = -1.623 +il[3363] = -96 +im[3363] = 0.1233 +ij[3363] = 4 +id[3364] = "2828-03-29T18:09:56" +ik[3364] = 37.355 +il[3364] = 57 +im[3364] = 0.0076 +ij[3364] = 1 +id[3365] = "2828-07-29T18:28:22" +ik[3365] = 25.72 +il[3365] = 17 +im[3365] = 0 +ij[3365] = 5 +id[3366] = "2828-11-19T10:16:19" +ik[3366] = 27.915 +il[3366] = -93 +im[3366] = 0 +ij[3366] = 6 +id[3367] = "2829-07-10T04:54:20" +ik[3367] = 31.389 +il[3367] = -74 +im[3367] = 0 +ij[3367] = 5 +id[3368] = "2829-10-12T14:02:58" +ik[3368] = 41.363 +il[3368] = -8 +im[3368] = 0.0242 +ij[3368] = 3 +id[3369] = "2829-10-19T00:56:07" +ik[3369] = -1.895 +il[3369] = -108 +im[3369] = 0.1258 +ij[3369] = 2 +id[3370] = "2829-11-03T09:24:20" +ik[3370] = 28.027 +il[3370] = 71 +im[3370] = 0 +ij[3370] = 6 +id[3371] = "2830-05-10T09:16:59" +ik[3371] = 37.108 +il[3371] = 50 +im[3371] = 0.0723 +ij[3371] = 1 +id[3372] = "2830-05-10T13:34:20" +ik[3372] = -1.554 +il[3372] = -13 +im[3372] = 0.0751 +ij[3372] = 4 +id[3373] = "2830-05-29T16:24:14" +ik[3373] = 25.618 +il[3373] = 12 +im[3373] = 0 +ij[3373] = 5 +id[3374] = "2830-09-18T22:43:14" +ik[3374] = 27.473 +il[3374] = 38 +im[3374] = 0 +ij[3374] = 6 +id[3375] = "2831-05-07T22:49:17" +ik[3375] = 31.671 +il[3375] = -45 +im[3375] = 0 +ij[3375] = 5 +id[3376] = "2831-09-01T14:52:13" +ik[3376] = 28.552 +il[3376] = -61 +im[3376] = 0 +ij[3376] = 6 +id[3377] = "2831-11-19T21:34:21" +ik[3377] = -1.692 +il[3377] = 85 +im[3377] = 0.0338 +ij[3377] = 2 +id[3378] = "2831-11-25T21:20:52" +ik[3378] = 37.868 +il[3378] = 146 +im[3378] = 0.1139 +ij[3378] = 3 +id[3379] = "2832-03-28T16:26:15" +ik[3379] = 25.572 +il[3379] = -24 +im[3379] = 0 +ij[3379] = 5 +id[3380] = "2832-06-18T03:06:54" +ik[3380] = 38.455 +il[3380] = -4 +im[3380] = 0.0977 +ij[3380] = 1 +id[3381] = "2832-06-23T11:01:28" +ik[3381] = -1.627 +il[3381] = -71 +im[3381] = 0.0534 +ij[3381] = 4 +id[3382] = "2832-07-18T14:51:12" +ik[3382] = 27.077 +il[3382] = 115 +im[3382] = 0 +ij[3382] = 6 +id[3383] = "2833-03-04T11:27:18" +ik[3383] = 31.797 +il[3383] = 62 +im[3383] = 0 +ij[3383] = 5 +id[3384] = "2833-06-29T12:59:19" +ik[3384] = 29.111 +il[3384] = -86 +im[3384] = 0 +ij[3384] = 6 +id[3385] = "2833-12-24T12:20:36" +ik[3385] = -1.591 +il[3385] = 41 +im[3385] = 0.0255 +ij[3385] = 2 +id[3386] = "2834-01-03T10:02:55" +ik[3386] = 36.283 +il[3386] = 171 +im[3386] = 0.1008 +ij[3386] = 3 +id[3387] = "2834-01-26T17:53:13" +ik[3387] = 25.581 +il[3387] = -82 +im[3387] = 0 +ij[3387] = 5 +id[3388] = "2834-05-18T10:04:13" +ik[3388] = 26.73 +il[3388] = 147 +im[3388] = 0 +ij[3388] = 6 +id[3389] = "2834-07-30T20:15:56" +ik[3389] = 41.357 +il[3389] = -12 +im[3389] = 0.0758 +ij[3389] = 1 +id[3390] = "2834-08-04T08:43:43" +ik[3390] = -1.83 +il[3390] = -155 +im[3390] = 0.038 +ij[3390] = 4 +id[3391] = "2834-12-30T19:28:16" +ik[3391] = 31.75 +il[3391] = -122 +im[3391] = 0 +ij[3391] = 5 +id[3392] = "2835-04-27T04:09:15" +ik[3392] = 29.683 +il[3392] = -10 +im[3392] = 0 +ij[3392] = 6 +id[3393] = "2835-11-26T20:10:10" +ik[3393] = 25.644 +il[3393] = -151 +im[3393] = 0 +ij[3393] = 5 +id[3394] = "2836-02-07T19:25:30" +ik[3394] = -1.597 +il[3394] = -158 +im[3394] = 0.1043 +ij[3394] = 2 +id[3395] = "2836-02-13T01:54:54" +ik[3395] = 36.541 +il[3395] = 155 +im[3395] = 0.051 +ij[3395] = 3 +id[3396] = "2836-03-17T07:48:17" +ik[3396] = 26.432 +il[3396] = 144 +im[3396] = 0 +ij[3396] = 6 +id[3397] = "2836-09-03T18:34:51" +ik[3397] = -2.138 +il[3397] = -160 +im[3397] = 0.1427 +ij[3397] = 4 +id[3398] = "2836-09-14T19:56:55" +ik[3398] = 45.162 +il[3398] = -72 +im[3398] = 0.1254 +ij[3398] = 1 +id[3399] = "2836-10-26T23:58:16" +ik[3399] = 31.528 +il[3399] = 106 +im[3399] = 0 +ij[3399] = 5 +id[3400] = "2837-02-21T13:25:14" +ik[3400] = 30.243 +il[3400] = 150 +im[3400] = 0 +ij[3400] = 6 +id[3401] = "2837-09-25T22:39:12" +ik[3401] = 25.762 +il[3401] = 136 +im[3401] = 0 +ij[3401] = 5 +id[3402] = "2838-01-15T07:27:15" +ik[3402] = 26.185 +il[3402] = 112 +im[3402] = 0 +ij[3402] = 6 +id[3403] = "2838-04-03T08:38:49" +ik[3403] = 39.067 +il[3403] = -2 +im[3403] = 0.1217 +ij[3403] = 3 +id[3404] = "2838-04-15T21:37:58" +ik[3404] = -1.784 +il[3404] = -78 +im[3404] = 0.1356 +ij[3404] = 2 +id[3405] = "2838-08-24T02:43:09" +ik[3405] = 31.152 +il[3405] = 1 +im[3405] = 0 +ij[3405] = 5 +id[3406] = "2838-10-11T21:39:45" +ik[3406] = -2.377 +il[3406] = 9 +im[3406] = 0.2081 +ij[3406] = 4 +id[3407] = "2838-11-05T17:52:56" +ik[3407] = 45.86 +il[3407] = -50 +im[3407] = 0.1433 +ij[3407] = 1 +id[3408] = "2838-12-19T18:29:13" +ik[3408] = 30.754 +il[3408] = 10 +im[3408] = 0 +ij[3408] = 6 +id[3409] = "2839-07-27T00:44:12" +ik[3409] = 25.933 +il[3409] = 69 +im[3409] = 0 +ij[3409] = 5 +id[3410] = "2839-11-15T08:25:09" +ik[3410] = 25.99 +il[3410] = 62 +im[3410] = 0 +ij[3410] = 6 +id[3411] = "2840-06-11T22:08:49" +ik[3411] = 44.676 +il[3411] = -72 +im[3411] = 0.0633 +ij[3411] = 3 +id[3412] = "2840-06-20T05:58:07" +ik[3412] = 30.659 +il[3412] = -110 +im[3412] = 0 +ij[3412] = 5 +id[3413] = "2840-07-12T17:39:47" +ik[3413] = -2.293 +il[3413] = -70 +im[3413] = 0.0297 +ij[3413] = 2 +id[3414] = "2840-10-15T21:38:09" +ik[3414] = 31.178 +il[3414] = -103 +im[3414] = 0 +ij[3414] = 6 +id[3415] = "2840-12-22T16:26:54" +ik[3415] = -2.051 +il[3415] = -90 +im[3415] = 0.0745 +ij[3415] = 4 +id[3416] = "2841-01-14T04:33:53" +ik[3416] = 41.16 +il[3416] = -58 +im[3416] = 0.1532 +ij[3416] = 1 +id[3417] = "2841-05-26T01:49:09" +ik[3417] = 26.159 +il[3417] = 16 +im[3417] = 0 +ij[3417] = 5 +id[3418] = "2841-09-14T10:07:06" +ik[3418] = 25.847 +il[3418] = 1 +im[3418] = 0 +ij[3418] = 6 +id[3419] = "2842-04-17T12:16:07" +ik[3419] = 30.091 +il[3419] = 95 +im[3419] = 0 +ij[3419] = 5 +id[3420] = "2842-08-08T15:06:46" +ik[3420] = 47.197 +il[3420] = 63 +im[3420] = 0.1083 +ij[3420] = 3 +id[3421] = "2842-08-13T01:13:09" +ik[3421] = 31.474 +il[3421] = 137 +im[3421] = 0 +ij[3421] = 6 +id[3422] = "2842-09-04T18:21:35" +ik[3422] = -2.313 +il[3422] = -79 +im[3422] = 0.0853 +ij[3422] = 2 +id[3423] = "2843-03-02T08:45:35" +ik[3423] = -1.697 +il[3423] = 148 +im[3423] = 0.0283 +ij[3423] = 4 +id[3424] = "2843-03-12T14:54:48" +ik[3424] = 37.949 +il[3424] = 152 +im[3424] = 0.0462 +ij[3424] = 1 +id[3425] = "2843-03-26T01:17:11" +ik[3425] = 26.438 +il[3425] = -13 +im[3425] = 0 +ij[3425] = 5 +id[3426] = "2843-07-15T11:58:07" +ik[3426] = 25.755 +il[3426] = -61 +im[3426] = 0 +ij[3426] = 6 +id[3427] = "2844-02-12T23:32:12" +ik[3427] = 29.489 +il[3427] = -132 +im[3427] = 0 +ij[3427] = 5 +id[3428] = "2844-06-09T07:23:05" +ik[3428] = 31.616 +il[3428] = -22 +im[3428] = 0 +ij[3428] = 6 +id[3429] = "2844-09-23T15:14:49" +ik[3429] = 43.195 +il[3429] = 2 +im[3429] = 0.0708 +ij[3429] = 3 +id[3430] = "2844-10-07T00:58:03" +ik[3430] = -2.003 +il[3430] = -13 +im[3430] = 0.086 +ij[3430] = 2 +id[3431] = "2845-01-22T22:30:08" +ik[3431] = 26.771 +il[3431] = -9 +im[3431] = 0 +ij[3431] = 5 +id[3432] = "2845-04-22T10:52:43" +ik[3432] = -1.563 +il[3432] = 71 +im[3432] = 0.0467 +ij[3432] = 4 +id[3433] = "2845-04-24T17:46:45" +ik[3433] = 37.006 +il[3433] = -10 +im[3433] = 0.0897 +ij[3433] = 1 +id[3434] = "2845-05-14T13:23:05" +ik[3434] = 25.716 +il[3434] = -116 +im[3434] = 0 +ij[3434] = 6 +id[3435] = "2845-12-10T17:18:05" +ik[3435] = 28.888 +il[3435] = -93 +im[3435] = 0 +ij[3435] = 5 +id[3436] = "2846-04-06T17:40:07" +ik[3436] = 31.593 +il[3436] = 118 +im[3436] = 0 +ij[3436] = 6 +id[3437] = "2846-11-07T06:14:31" +ik[3437] = -1.759 +il[3437] = 46 +im[3437] = 0.0849 +ij[3437] = 2 +id[3438] = "2846-11-09T11:37:49" +ik[3438] = 39.005 +il[3438] = -13 +im[3438] = 0.1089 +ij[3438] = 3 +id[3439] = "2846-11-22T16:52:10" +ik[3439] = 27.156 +il[3439] = 36 +im[3439] = 0 +ij[3439] = 5 +id[3440] = "2847-03-14T13:46:07" +ik[3440] = 25.729 +il[3440] = -156 +im[3440] = 0 +ij[3440] = 6 +id[3441] = "2847-06-03T13:27:50" +ik[3441] = 37.742 +il[3441] = -96 +im[3441] = 0.1026 +ij[3441] = 1 +id[3442] = "2847-06-07T02:51:51" +ik[3442] = -1.583 +il[3442] = 97 +im[3442] = 0.0822 +ij[3442] = 4 +id[3443] = "2847-10-08T18:19:09" +ik[3443] = 28.312 +il[3443] = -159 +im[3443] = 0 +ij[3443] = 5 +id[3444] = "2848-02-02T08:59:08" +ik[3444] = 31.412 +il[3444] = -175 +im[3444] = 0 +ij[3444] = 6 +id[3445] = "2848-09-21T07:46:07" +ik[3445] = 27.591 +il[3445] = 132 +im[3445] = 0 +ij[3445] = 5 +id[3446] = "2848-12-09T23:10:32" +ik[3446] = -1.619 +il[3446] = -49 +im[3446] = 0.018 +ij[3446] = 2 +id[3447] = "2848-12-19T06:29:48" +ik[3447] = 36.686 +il[3447] = -69 +im[3447] = 0.1025 +ij[3447] = 3 +id[3448] = "2849-01-11T12:29:05" +ik[3448] = 25.795 +il[3448] = -168 +im[3448] = 0 +ij[3448] = 6 +id[3449] = "2849-07-13T15:17:42" +ik[3449] = 40.039 +il[3449] = 107 +im[3449] = 0.0866 +ij[3449] = 1 +id[3450] = "2849-07-20T01:10:32" +ik[3450] = -1.736 +il[3450] = 22 +im[3450] = 0.0534 +ij[3450] = 4 +id[3451] = "2849-08-06T02:45:01" +ik[3451] = 27.779 +il[3451] = 26 +im[3451] = 0 +ij[3451] = 5 +id[3452] = "2849-11-30T05:51:04" +ik[3452] = 31.096 +il[3452] = 171 +im[3452] = 0 +ij[3452] = 6 +id[3453] = "2850-07-21T18:34:07" +ik[3453] = 28.072 +il[3453] = -73 +im[3453] = 0 +ij[3453] = 5 +id[3454] = "2850-11-11T08:54:05" +ik[3454] = 25.915 +il[3454] = -151 +im[3454] = 0 +ij[3454] = 6 +id[3455] = "2851-01-19T08:57:13" +ik[3455] = -1.58 +il[3455] = 27 +im[3455] = 0.0695 +ij[3455] = 2 +id[3456] = "2851-01-27T16:36:46" +ik[3456] = 36.21 +il[3456] = -8 +im[3456] = 0.0794 +ij[3456] = 3 +id[3457] = "2851-06-04T18:22:01" +ik[3457] = 27.298 +il[3457] = 102 +im[3457] = 0 +ij[3457] = 5 +id[3458] = "2851-08-24T09:21:13" +ik[3458] = -2.009 +il[3458] = 79 +im[3458] = 0.0119 +ij[3458] = 4 +id[3459] = "2851-08-28T06:52:42" +ik[3459] = 43.708 +il[3459] = 154 +im[3459] = 0.0928 +ij[3459] = 1 +id[3460] = "2851-09-28T08:28:01" +ik[3460] = 30.677 +il[3460] = 74 +im[3460] = 0 +ij[3460] = 6 +id[3461] = "2852-05-20T00:43:03" +ik[3461] = 28.593 +il[3461] = 150 +im[3461] = 0 +ij[3461] = 5 +id[3462] = "2852-09-10T02:20:06" +ik[3462] = 26.09 +il[3462] = -88 +im[3462] = 0 +ij[3462] = 6 +id[3463] = "2853-03-12T20:06:43" +ik[3463] = 37.744 +il[3463] = -161 +im[3463] = 0.0921 +ij[3463] = 3 +id[3464] = "2853-03-16T13:41:41" +ik[3464] = -1.677 +il[3464] = -30 +im[3464] = 0.1227 +ij[3464] = 2 +id[3465] = "2853-04-02T16:38:03" +ik[3465] = 26.875 +il[3465] = 89 +im[3465] = 0 +ij[3465] = 5 +id[3466] = "2853-07-26T16:57:04" +ik[3466] = 30.191 +il[3466] = -108 +im[3466] = 0 +ij[3466] = 6 +id[3467] = "2853-09-24T04:31:28" +ik[3467] = -2.323 +il[3467] = -58 +im[3467] = 0.1718 +ij[3467] = 4 +id[3468] = "2853-10-14T18:05:45" +ik[3468] = 46.381 +il[3468] = -59 +im[3468] = 0.0567 +ij[3468] = 1 +id[3469] = "2854-03-19T01:44:06" +ik[3469] = 29.142 +il[3469] = 88 +im[3469] = 0 +ij[3469] = 5 +id[3470] = "2854-07-10T16:06:05" +ik[3470] = 26.321 +il[3470] = 29 +im[3470] = 0 +ij[3470] = 6 +id[3471] = "2855-01-30T20:54:05" +ik[3471] = 26.512 +il[3471] = -17 +im[3471] = 0 +ij[3471] = 5 +id[3472] = "2855-05-14T10:29:42" +ik[3472] = 42.18 +il[3472] = 39 +im[3472] = 0.0064 +ij[3472] = 3 +id[3473] = "2855-05-25T07:12:00" +ik[3473] = 29.668 +il[3473] = -14 +im[3473] = 0 +ij[3473] = 6 +id[3474] = "2855-06-10T06:59:56" +ik[3474] = -2.08 +il[3474] = -14 +im[3474] = 0.0697 +ij[3474] = 2 +id[3475] = "2855-11-21T19:43:30" +ik[3475] = -2.237 +il[3475] = 128 +im[3475] = 0.1013 +ij[3475] = 4 +id[3476] = "2855-12-18T07:04:39" +ik[3476] = 43.129 +il[3476] = -147 +im[3476] = 0.1325 +ij[3476] = 1 +id[3477] = "2856-01-15T21:12:57" +ik[3477] = 29.705 +il[3477] = 106 +im[3477] = 0 +ij[3477] = 5 +id[3478] = "2856-05-09T01:26:58" +ik[3478] = 26.609 +il[3478] = -146 +im[3478] = 0 +ij[3478] = 6 +id[3479] = "2856-11-29T06:24:02" +ik[3479] = 26.209 +il[3479] = 161 +im[3479] = 0 +ij[3479] = 5 +id[3480] = "2857-03-23T03:07:03" +ik[3480] = 29.135 +il[3480] = -3 +im[3480] = 0 +ij[3480] = 6 +id[3481] = "2857-07-20T16:25:40" +ik[3481] = 47.272 +il[3481] = 71 +im[3481] = 0.0248 +ij[3481] = 3 +id[3482] = "2857-08-19T03:32:51" +ik[3482] = -2.39 +il[3482] = -169 +im[3482] = 0.0589 +ij[3482] = 2 +id[3483] = "2857-11-13T10:56:03" +ik[3483] = 30.26 +il[3483] = -153 +im[3483] = 0 +ij[3483] = 5 +id[3484] = "2858-02-05T23:54:11" +ik[3484] = -1.805 +il[3484] = -91 +im[3484] = 0.1478 +ij[3484] = 4 +id[3485] = "2858-02-20T11:57:41" +ik[3485] = 38.887 +il[3485] = -135 +im[3485] = 0.1226 +ij[3485] = 1 +id[3486] = "2858-03-08T05:37:58" +ik[3486] = 26.954 +il[3486] = 108 +im[3486] = 0 +ij[3486] = 6 +id[3487] = "2858-09-28T20:25:00" +ik[3487] = 25.966 +il[3487] = -87 +im[3487] = 0 +ij[3487] = 5 +id[3488] = "2859-01-20T04:21:56" +ik[3488] = 28.614 +il[3488] = -69 +im[3488] = 0 +ij[3488] = 6 +id[3489] = "2859-09-05T17:53:39" +ik[3489] = 45.075 +il[3489] = -12 +im[3489] = 0.1303 +ij[3489] = 3 +id[3490] = "2859-09-11T18:45:56" +ik[3490] = 30.779 +il[3490] = 34 +im[3490] = 0 +ij[3490] = 5 +id[3491] = "2859-09-25T20:43:59" +ik[3491] = -2.124 +il[3491] = 143 +im[3491] = 0.0253 +ij[3491] = 2 +id[3492] = "2860-01-05T03:57:01" +ik[3492] = 27.357 +il[3492] = 91 +im[3492] = 0 +ij[3492] = 6 +id[3493] = "2860-04-03T10:06:39" +ik[3493] = -1.594 +il[3493] = 120 +im[3493] = 0.0276 +ij[3493] = 4 +id[3494] = "2860-04-08T11:18:40" +ik[3494] = 37.155 +il[3494] = 149 +im[3494] = 0.0847 +ij[3494] = 1 +id[3495] = "2860-07-28T14:11:02" +ik[3495] = 25.782 +il[3495] = -31 +im[3495] = 0 +ij[3495] = 5 +id[3496] = "2860-11-18T10:35:02" +ik[3496] = 28.119 +il[3496] = 153 +im[3496] = 0 +ij[3496] = 6 +id[3497] = "2861-07-09T20:46:01" +ik[3497] = 31.226 +il[3497] = -54 +im[3497] = 0 +ij[3497] = 5 +id[3498] = "2861-10-23T00:29:39" +ik[3498] = 40.444 +il[3498] = -163 +im[3498] = 0.0859 +ij[3498] = 3 +id[3499] = "2861-10-25T23:55:07" +ik[3499] = -1.842 +il[3499] = -125 +im[3499] = 0.1067 +ij[3499] = 2 +id[3500] = "2861-11-02T19:40:56" +ik[3500] = 27.813 +il[3500] = 169 +im[3500] = 0 +ij[3500] = 6 +id[3501] = "2862-05-19T04:44:41" +ik[3501] = 37.268 +il[3501] = 101 +im[3501] = 0.1129 +ij[3501] = 1 +id[3502] = "2862-05-20T15:38:14" +ik[3502] = -1.559 +il[3502] = -48 +im[3502] = 0.1106 +ij[3502] = 4 +id[3503] = "2862-05-28T10:59:57" +ik[3503] = 25.655 +il[3503] = -20 +im[3503] = 0 +ij[3503] = 5 +id[3504] = "2862-09-17T21:15:59" +ik[3504] = 27.659 +il[3504] = -51 +im[3504] = 0 +ij[3504] = 6 +id[3505] = "2863-05-07T17:04:59" +ik[3505] = 31.567 +il[3505] = -60 +im[3505] = 0 +ij[3505] = 5 +id[3506] = "2863-09-01T04:19:55" +ik[3506] = 28.32 +il[3506] = -9 +im[3506] = 0 +ij[3506] = 6 +id[3507] = "2863-11-27T09:14:15" +ik[3507] = -1.662 +il[3507] = -118 +im[3507] = 0.0403 +ij[3507] = 2 +id[3508] = "2863-12-04T21:47:39" +ik[3508] = 37.367 +il[3508] = 127 +im[3508] = 0.0864 +ij[3508] = 3 +id[3509] = "2864-03-27T10:12:00" +ik[3509] = 25.585 +il[3509] = -44 +im[3509] = 0 +ij[3509] = 5 +id[3510] = "2864-06-27T05:15:38" +ik[3510] = 38.951 +il[3510] = -49 +im[3510] = 0.1024 +ij[3510] = 1 +id[3511] = "2864-07-03T07:02:42" +ik[3511] = -1.66 +il[3511] = -17 +im[3511] = 0.014 +ij[3511] = 4 +id[3512] = "2864-07-17T11:51:56" +ik[3512] = 27.243 +il[3512] = 49 +im[3512] = 0 +ij[3512] = 6 +id[3513] = "2865-03-04T07:57:56" +ik[3513] = 31.764 +il[3513] = 14 +im[3513] = 0 +ij[3513] = 5 +id[3514] = "2865-06-29T05:37:58" +ik[3514] = 28.865 +il[3514] = -80 +im[3514] = 0 +ij[3514] = 6 +id[3515] = "2866-01-02T09:40:02" +ik[3515] = -1.582 +il[3515] = 66 +im[3515] = 0.0389 +ij[3515] = 2 +id[3516] = "2866-01-12T03:05:36" +ik[3516] = 36.178 +il[3516] = -101 +im[3516] = 0.0712 +ij[3516] = 3 +id[3517] = "2868-02-22T23:36:40" +ik[3517] = 36.864 +il[3517] = -177 +im[3517] = 0.0172 +ij[3517] = 3 +id[3518] = "2866-01-25T11:06:51" +ik[3518] = 25.57 +il[3518] = -93 +im[3518] = 0 +ij[3518] = 5 +id[3519] = "2866-05-17T05:48:54" +ik[3519] = 26.874 +il[3519] = 100 +im[3519] = 0 +ij[3519] = 6 +id[3520] = "2866-08-09T23:49:37" +ik[3520] = 42.166 +il[3520] = -67 +im[3520] = 0.0235 +ij[3520] = 1 +id[3521] = "2866-08-12T05:18:43" +ik[3521] = -1.889 +il[3521] = -127 +im[3521] = 0.0725 +ij[3521] = 4 +id[3522] = "2866-12-30T17:51:56" +ik[3522] = 31.793 +il[3522] = 162 +im[3522] = 0 +ij[3522] = 5 +id[3523] = "2867-04-26T23:43:52" +ik[3523] = 29.435 +il[3523] = -47 +im[3523] = 0 +ij[3523] = 6 +id[3524] = "2867-11-25T13:07:58" +ik[3524] = 25.609 +il[3524] = -159 +im[3524] = 0 +ij[3524] = 5 +id[3525] = "2868-02-20T06:14:44" +ik[3525] = -1.616 +il[3525] = 57 +im[3525] = 0.052 +ij[3525] = 2 +id[3526] = "2868-03-16T02:32:55" +ik[3526] = 26.554 +il[3526] = 110 +im[3526] = 0 +ij[3526] = 6 +id[3527] = "2868-09-10T15:02:44" +ik[3527] = -2.21 +il[3527] = -139 +im[3527] = 0.1247 +ij[3527] = 4 +id[3528] = "2868-09-25T10:22:39" +ik[3528] = 45.805 +il[3528] = 77 +im[3528] = 0.1293 +ij[3528] = 1 +id[3529] = "2868-10-26T23:41:51" +ik[3529] = 31.646 +il[3529] = 10 +im[3529] = 0 +ij[3529] = 5 +id[3530] = "2869-02-21T11:22:50" +ik[3530] = 30.004 +il[3530] = 79 +im[3530] = 0 +ij[3530] = 6 +id[3531] = "2869-09-24T15:35:51" +ik[3531] = 25.703 +il[3531] = 129 +im[3531] = 0 +ij[3531] = 5 +id[3532] = "2870-01-14T01:25:49" +ik[3532] = 26.286 +il[3532] = 90 +im[3532] = 0 +ij[3532] = 6 +id[3533] = "2870-04-17T01:36:37" +ik[3533] = 40.021 +il[3533] = 131 +im[3533] = 0.1005 +ij[3533] = 3 +id[3534] = "2870-05-05T02:02:19" +ik[3534] = -1.871 +il[3534] = -66 +im[3534] = 0.1544 +ij[3534] = 2 +id[3535] = "2870-08-24T02:56:49" +ik[3535] = 31.334 +il[3535] = -103 +im[3535] = 0 +ij[3535] = 5 +id[3536] = "2870-10-24T16:32:32" +ik[3536] = -2.36 +il[3536] = 113 +im[3536] = 0.0384 +ij[3536] = 4 +id[3537] = "2870-11-20T02:28:36" +ik[3537] = 45.078 +il[3537] = -138 +im[3537] = 0.0568 +ij[3537] = 1 +id[3538] = "2870-12-19T18:00:51" +ik[3538] = 30.541 +il[3538] = -83 +im[3538] = 0 +ij[3538] = 6 +id[3539] = "2871-07-25T17:56:49" +ik[3539] = 25.851 +il[3539] = 58 +im[3539] = 0 +ij[3539] = 5 +id[3540] = "2871-11-14T01:53:54" +ik[3540] = 26.068 +il[3540] = 47 +im[3540] = 0 +ij[3540] = 6 +id[3541] = "2872-06-20T05:41:51" +ik[3541] = 30.886 +il[3541] = 152 +im[3541] = 0 +ij[3541] = 5 +id[3542] = "2872-06-27T11:23:34" +ik[3542] = 45.92 +il[3542] = 136 +im[3542] = 0.1762 +ij[3542] = 3 +id[3543] = "2872-07-28T07:39:13" +ik[3543] = -2.368 +il[3543] = 129 +im[3543] = 0.1861 +ij[3543] = 2 +id[3544] = "2872-10-15T21:40:53" +ik[3544] = 31.008 +il[3544] = 157 +im[3544] = 0 +ij[3544] = 6 +id[3545] = "2873-01-09T00:25:27" +ik[3545] = -1.953 +il[3545] = -147 +im[3545] = 0.1511 +ij[3545] = 4 +id[3546] = "2873-01-28T14:17:31" +ik[3546] = 40.23 +il[3546] = -169 +im[3546] = 0.0439 +ij[3546] = 1 +id[3547] = "2873-05-24T19:32:52" +ik[3547] = 26.053 +il[3547] = -2 +im[3547] = 0 +ij[3547] = 5 +id[3548] = "2873-09-13T03:21:53" +ik[3548] = 25.902 +il[3548] = -11 +im[3548] = 0 +ij[3548] = 6 +id[3549] = "2874-04-17T10:21:47" +ik[3549] = 30.345 +il[3549] = 21 +im[3549] = 0 +ij[3549] = 5 +id[3550] = "2874-08-13T00:46:48" +ik[3550] = 31.364 +il[3550] = 44 +im[3550] = 0 +ij[3550] = 6 +id[3551] = "2874-08-18T17:15:30" +ik[3551] = 46.646 +il[3551] = 31 +im[3551] = 0.1348 +ij[3551] = 3 +id[3552] = "2874-09-12T22:06:48" +ik[3552] = -2.249 +il[3552] = -154 +im[3552] = 0.096 +ij[3552] = 2 +id[3553] = "2875-03-14T21:42:49" +ik[3553] = -1.652 +il[3553] = -31 +im[3553] = 0.1262 +ij[3553] = 4 +id[3554] = "2875-03-23T03:30:31" +ik[3554] = 37.581 +il[3554] = -40 +im[3554] = 0.0379 +ij[3554] = 1 +id[3555] = "2875-03-24T19:46:50" +ik[3555] = 26.309 +il[3555] = -43 +im[3555] = 0 +ij[3555] = 5 +id[3556] = "2875-07-14T05:13:46" +ik[3556] = 25.788 +il[3556] = -73 +im[3556] = 0 +ij[3556] = 6 +id[3557] = "2876-02-12T19:13:52" +ik[3557] = 29.753 +il[3557] = -171 +im[3557] = 0 +ij[3557] = 5 +id[3558] = "2876-06-09T05:35:48" +ik[3558] = 31.575 +il[3558] = -95 +im[3558] = 0 +ij[3558] = 6 +id[3559] = "2876-10-04T11:21:33" +ik[3559] = 42.161 +il[3559] = 66 +im[3559] = 0.0476 +ij[3559] = 3 +id[3560] = "2876-10-13T22:58:23" +ik[3560] = -1.941 +il[3560] = -15 +im[3560] = 0.0688 +ij[3560] = 2 +id[3561] = "2877-01-21T18:04:45" +ik[3561] = 26.618 +il[3561] = -55 +im[3561] = 0 +ij[3561] = 5 +id[3562] = "2877-05-02T20:37:03" +ik[3562] = -1.555 +il[3562] = -78 +im[3562] = 0.1043 +ij[3562] = 4 +id[3563] = "2877-05-03T17:47:28" +ik[3563] = 37.031 +il[3563] = -27 +im[3563] = 0.1079 +ij[3563] = 1 +id[3564] = "2877-05-13T06:54:51" +ik[3564] = 25.726 +il[3564] = -133 +im[3564] = 0 +ij[3564] = 6 +id[3565] = "2877-12-10T10:00:46" +ik[3565] = 29.148 +il[3565] = -88 +im[3565] = 0 +ij[3565] = 5 +id[3566] = "2878-04-06T13:55:46" +ik[3566] = 31.624 +il[3566] = 74 +im[3566] = 0 +ij[3566] = 6 +id[3567] = "2878-11-14T11:16:11" +ik[3567] = -1.72 +il[3567] = -60 +im[3567] = 0.0889 +ij[3567] = 2 +id[3568] = "2878-11-18T23:14:29" +ik[3568] = 38.339 +il[3568] = 164 +im[3568] = 0.0844 +ij[3568] = 3 +id[3569] = "2878-11-21T13:45:50" +ik[3569] = 26.981 +il[3569] = -29 +im[3569] = 0 +ij[3569] = 5 +id[3570] = "2879-03-13T07:49:43" +ik[3570] = 25.716 +il[3570] = 180 +im[3570] = 0 +ij[3570] = 6 +id[3571] = "2879-06-12T10:03:30" +ik[3571] = 38.105 +il[3571] = -60 +im[3571] = 0.107 +ij[3571] = 1 +id[3572] = "2879-06-17T00:49:31" +ik[3572] = -1.605 +il[3572] = 123 +im[3572] = 0.0285 +ij[3572] = 4 +id[3573] = "2879-10-08T07:48:43" +ik[3573] = 28.559 +il[3573] = -108 +im[3573] = 0 +ij[3573] = 5 +id[3574] = "2880-02-02T02:58:42" +ik[3574] = 31.509 +il[3574] = 174 +im[3574] = 0 +ij[3574] = 6 +id[3575] = "2880-09-20T06:14:49" +ik[3575] = 27.395 +il[3575] = 44 +im[3575] = 0 +ij[3575] = 5 +id[3576] = "2880-12-18T03:25:59" +ik[3576] = -1.602 +il[3576] = -134 +im[3576] = 0.0309 +ij[3576] = 2 +id[3577] = "2880-12-27T22:38:29" +ik[3577] = 36.428 +il[3577] = 33 +im[3577] = 0.0408 +ij[3577] = 3 +id[3578] = "2881-01-10T07:20:47" +ik[3578] = 25.759 +il[3578] = 155 +im[3578] = 0 +ij[3578] = 6 +id[3579] = "2881-07-23T08:08:26" +ik[3579] = 40.74 +il[3579] = -151 +im[3579] = 0.0417 +ij[3579] = 1 +id[3580] = "2881-07-29T01:51:46" +ik[3580] = -1.785 +il[3580] = -1 +im[3580] = 0.0846 +ij[3580] = 4 +id[3581] = "2881-08-05T13:01:46" +ik[3581] = 28.005 +il[3581] = 121 +im[3581] = 0 +ij[3581] = 5 +id[3582] = "2881-11-29T21:22:45" +ik[3582] = 31.248 +il[3582] = -164 +im[3582] = 0 +ij[3582] = 6 +id[3583] = "2882-07-20T18:53:42" +ik[3583] = 27.857 +il[3583] = 173 +im[3583] = 0 +ij[3583] = 5 +id[3584] = "2882-11-10T04:50:44" +ik[3584] = 25.856 +il[3584] = 157 +im[3584] = 0 +ij[3584] = 6 +id[3585] = "2883-01-30T00:59:20" +ik[3585] = -1.586 +il[3585] = 148 +im[3585] = 0.1031 +ij[3585] = 2 +id[3586] = "2883-02-05T21:48:31" +ik[3586] = 36.353 +il[3586] = -98 +im[3586] = 0.0144 +ij[3586] = 3 +id[3587] = "2883-06-04T01:34:45" +ik[3587] = 27.5 +il[3587] = -111 +im[3587] = 0 +ij[3587] = 5 +id[3588] = "2883-08-30T23:29:34" +ik[3588] = -2.08 +il[3588] = -168 +im[3588] = 0.0254 +ij[3588] = 4 +id[3589] = "2883-09-07T19:43:23" +ik[3589] = 44.541 +il[3589] = -35 +im[3589] = 0.1268 +ij[3589] = 1 +id[3590] = "2883-09-27T21:28:48" +ik[3590] = 30.87 +il[3590] = 135 +im[3590] = 0 +ij[3590] = 6 +id[3591] = "2884-05-19T03:08:47" +ik[3591] = 28.361 +il[3591] = 5 +im[3591] = 0 +ij[3591] = 5 +id[3592] = "2884-09-08T23:39:41" +ik[3592] = 26.007 +il[3592] = -161 +im[3592] = 0 +ij[3592] = 6 +id[3593] = "2885-03-24T15:06:28" +ik[3593] = 38.414 +il[3593] = -77 +im[3593] = 0.1027 +ij[3593] = 3 +id[3594] = "2885-04-01T21:01:43" +ik[3594] = 27.052 +il[3594] = -87 +im[3594] = 0 +ij[3594] = 5 +id[3595] = "2885-04-01T23:37:34" +ik[3595] = -1.729 +il[3595] = -125 +im[3595] = 0.1035 +ij[3595] = 2 +id[3596] = "2885-07-26T03:23:45" +ik[3596] = 30.408 +il[3596] = -10 +im[3596] = 0 +ij[3596] = 6 +id[3597] = "2885-10-03T14:09:35" +ik[3597] = -2.364 +il[3597] = 151 +im[3597] = 0.1542 +ij[3597] = 4 +id[3598] = "2885-10-26T17:03:24" +ik[3598] = 46.246 +il[3598] = -25 +im[3598] = 0.1311 +ij[3598] = 1 +id[3599] = "2886-03-18T06:27:38" +ik[3599] = 28.9 +il[3599] = -91 +im[3599] = 0 +ij[3599] = 5 +id[3600] = "2886-07-09T15:06:46" +ik[3600] = 26.213 +il[3600] = -68 +im[3600] = 0 +ij[3600] = 6 +id[3601] = "2887-01-29T22:46:42" +ik[3601] = 26.662 +il[3601] = -157 +im[3601] = 0 +ij[3601] = 5 +id[3602] = "2887-05-24T15:08:38" +ik[3602] = 29.897 +il[3602] = 121 +im[3602] = 0 +ij[3602] = 6 +id[3603] = "2887-05-31T01:43:23" +ik[3603] = 43.556 +il[3603] = -134 +im[3603] = 0.1185 +ij[3603] = 3 +id[3604] = "2887-06-29T20:37:09" +ik[3604] = -2.206 +il[3604] = -134 +im[3604] = 0.1163 +ij[3604] = 2 +id[3605] = "2887-12-09T15:52:43" +ik[3605] = -2.136 +il[3605] = -103 +im[3605] = 0.1681 +ij[3605] = 4 +id[3606] = "2888-01-03T07:28:24" +ik[3606] = 42.007 +il[3606] = -100 +im[3606] = 0.1318 +ij[3606] = 1 +id[3607] = "2888-01-15T04:23:39" +ik[3607] = 29.459 +il[3607] = -108 +im[3607] = 0 +ij[3607] = 5 +id[3608] = "2888-05-08T02:28:45" +ik[3608] = 26.477 +il[3608] = 84 +im[3608] = 0 +ij[3608] = 6 +id[3609] = "2888-11-28T06:05:36" +ik[3609] = 26.333 +il[3609] = 54 +im[3609] = 0 +ij[3609] = 5 +id[3610] = "2889-03-22T08:37:40" +ik[3610] = 29.366 +il[3610] = 167 +im[3610] = 0 +ij[3610] = 6 +id[3611] = "2889-07-31T18:39:27" +ik[3611] = 47.399 +il[3611] = 45 +im[3611] = 0.1291 +ij[3611] = 3 +id[3612] = "2889-08-29T02:26:31" +ik[3612] = -2.356 +il[3612] = -154 +im[3612] = 0.1532 +ij[3612] = 2 +id[3613] = "2889-11-12T20:38:41" +ik[3613] = 30.021 +il[3613] = -43 +im[3613] = 0 +ij[3613] = 5 +id[3614] = "2890-02-20T03:42:05" +ik[3614] = -1.741 +il[3614] = -117 +im[3614] = 0.0452 +ij[3614] = 4 +id[3615] = "2890-03-04T05:03:24" +ik[3615] = 38.322 +il[3615] = -24 +im[3615] = 0.0444 +ij[3615] = 1 +id[3616] = "2890-03-07T08:59:42" +ik[3616] = 26.797 +il[3616] = -53 +im[3616] = 0 +ij[3616] = 6 +id[3617] = "2890-09-27T18:13:40" +ik[3617] = 26.064 +il[3617] = -166 +im[3617] = 0 +ij[3617] = 5 +id[3618] = "2891-01-19T07:36:37" +ik[3618] = 28.838 +il[3618] = 134 +im[3618] = 0 +ij[3618] = 6 +id[3619] = "2891-09-11T07:01:37" +ik[3619] = 30.559 +il[3619] = 106 +im[3619] = 0 +ij[3619] = 5 +id[3620] = "2891-09-16T09:47:22" +ik[3620] = 44.047 +il[3620] = 115 +im[3620] = 0.0195 +ij[3620] = 3 +id[3621] = "2891-10-02T22:41:39" +ik[3621] = -2.056 +il[3621] = 83 +im[3621] = 0.0172 +ij[3621] = 2 +id[3622] = "2892-01-04T09:57:36" +ik[3622] = 27.175 +il[3622] = -109 +im[3622] = 0 +ij[3622] = 6 +id[3623] = "2892-04-14T09:25:13" +ik[3623] = -1.574 +il[3623] = 131 +im[3623] = 0.06 +ij[3623] = 4 +id[3624] = "2892-04-17T20:45:18" +ik[3624] = 37.039 +il[3624] = -6 +im[3624] = 0.1019 +ij[3624] = 1 +id[3625] = "2892-07-27T10:27:41" +ik[3625] = 25.855 +il[3625] = -87 +im[3625] = 0 +ij[3625] = 5 +id[3626] = "2892-11-17T11:43:35" +ik[3626] = 28.329 +il[3626] = 27 +im[3626] = 0 +ij[3626] = 6 +id[3627] = "2893-07-09T11:33:38" +ik[3627] = 31.043 +il[3627] = -19 +im[3627] = 0 +ij[3627] = 5 +id[3628] = "2893-11-02T00:26:34" +ik[3628] = -1.794 +il[3628] = -165 +im[3628] = 0.111 +ij[3628] = 2 +id[3629] = "2893-11-02T02:45:18" +ik[3629] = 39.611 +il[3629] = 161 +im[3629] = 0.1104 +ij[3629] = 3 +id[3630] = "2893-11-02T04:37:37" +ik[3630] = 27.609 +il[3630] = -73 +im[3630] = 0 +ij[3630] = 6 +id[3631] = "2894-05-27T06:02:35" +ik[3631] = 25.703 +il[3631] = -58 +im[3631] = 0 +ij[3631] = 5 +id[3632] = "2894-05-27T23:29:19" +ik[3632] = 37.499 +il[3632] = 163 +im[3632] = 0.0923 +ij[3632] = 1 +id[3633] = "2894-05-30T15:27:54" +ik[3633] = -1.569 +il[3633] = -51 +im[3633] = 0.0464 +ij[3633] = 4 +id[3634] = "2894-09-16T20:32:38" +ik[3634] = 27.853 +il[3634] = -150 +im[3634] = 0 +ij[3634] = 6 +id[3635] = "2895-05-07T10:19:37" +ik[3635] = 31.435 +il[3635] = -60 +im[3635] = 0 +ij[3635] = 5 +id[3636] = "2895-08-31T16:24:40" +ik[3636] = 28.094 +il[3636] = 63 +im[3636] = 0 +ij[3636] = 6 +id[3637] = "2895-12-05T01:42:08" +ik[3637] = -1.636 +il[3637] = -31 +im[3637] = 0.0739 +ij[3637] = 2 +id[3638] = "2895-12-13T17:54:23" +ik[3638] = 36.955 +il[3638] = 170 +im[3638] = 0.0399 +ij[3638] = 3 +id[3639] = "2896-03-26T04:17:36" +ik[3639] = 25.608 +il[3639] = -68 +im[3639] = 0 +ij[3639] = 5 +id[3640] = "2896-07-06T11:57:15" +ik[3640] = 39.521 +il[3640] = -159 +im[3640] = 0.0557 +ij[3640] = 1 +id[3641] = "2896-07-12T23:44:49" +ik[3641] = -1.699 +il[3641] = 87 +im[3641] = 0.0884 +ij[3641] = 4 +id[3642] = "2896-07-16T09:30:40" +ik[3642] = 27.418 +il[3642] = -26 +im[3642] = 0 +ij[3642] = 6 +id[3643] = "2897-03-04T03:30:31" +ik[3643] = 31.698 +il[3643] = -20 +im[3643] = 0 +ij[3643] = 5 +id[3644] = "2897-06-28T20:54:31" +ik[3644] = 28.624 +il[3644] = -55 +im[3644] = 0 +ij[3644] = 6 +id[3645] = "2898-01-11T19:31:29" +ik[3645] = -1.579 +il[3645] = -91 +im[3645] = 0.0826 +ij[3645] = 2 +id[3646] = "2898-01-20T22:51:18" +ik[3646] = 36.159 +il[3646] = -53 +im[3646] = 0.0062 +ij[3646] = 3 +id[3647] = "2898-01-24T04:33:36" +ik[3647] = 25.569 +il[3647] = -107 +im[3647] = 0 +ij[3647] = 5 +id[3648] = "2898-05-16T02:05:34" +ik[3648] = 27.028 +il[3648] = 45 +im[3648] = 0 +ij[3648] = 6 +id[3649] = "2898-08-19T10:43:30" +ik[3649] = -1.954 +il[3649] = 123 +im[3649] = 0.0855 +ij[3649] = 4 +id[3650] = "2898-08-20T08:13:20" +ik[3650] = 43.012 +il[3650] = 169 +im[3650] = 0.1003 +ij[3650] = 1 +id[3651] = "2898-12-30T15:30:31" +ik[3651] = 31.803 +il[3651] = 97 +im[3651] = 0 +ij[3651] = 5 +id[3652] = "2899-04-26T18:04:36" +ik[3652] = 29.186 +il[3652] = -66 +im[3652] = 0 +ij[3652] = 6 +id[3653] = "2899-11-24T06:09:30" +ik[3653] = 25.585 +il[3653] = -167 +im[3653] = 0 +ij[3653] = 5 +id[3654] = "2900-03-05T10:13:17" +ik[3654] = 37.3 +il[3654] = 21 +im[3654] = 0.1207 +ij[3654] = 3 +id[3655] = "2900-03-05T23:07:31" +ik[3655] = -1.645 +il[3655] = -167 +im[3655] = 0.1251 +ij[3655] = 2 +id[3656] = "2900-03-15T21:41:36" +ik[3656] = 26.687 +il[3656] = 71 +im[3656] = 0 +ij[3656] = 6 +id[3657] = "2900-09-19T01:16:24" +ik[3657] = -2.277 +il[3657] = 42 +im[3657] = 0.1416 +ij[3657] = 4 +id[3658] = "2900-10-07T05:20:15" +ik[3658] = 46.239 +il[3658] = 160 +im[3658] = 0.0188 +ij[3658] = 1 +id[3659] = "2900-10-27T22:57:30" +ik[3659] = 31.732 +il[3659] = -79 +im[3659] = 0 +ij[3659] = 5 +id[3660] = "2901-02-22T08:22:33" +ik[3660] = 29.759 +il[3660] = 22 +im[3660] = 0 +ij[3660] = 6 +id[3661] = "2901-09-24T08:31:29" +ik[3661] = 25.655 +il[3661] = 122 +im[3661] = 0 +ij[3661] = 5 +id[3662] = "2902-01-13T19:42:31" +ik[3662] = 26.396 +il[3662] = 63 +im[3662] = 0 +ij[3662] = 6 +id[3663] = "2902-05-03T00:23:19" +ik[3663] = 41.149 +il[3663] = -172 +im[3663] = 0.0725 +ij[3663] = 3 +id[3664] = "2902-05-26T07:20:52" +ik[3664] = -1.98 +il[3664] = -56 +im[3664] = 0.1706 +ij[3664] = 2 +id[3665] = "2902-08-25T03:05:28" +ik[3665] = 31.489 +il[3665] = 154 +im[3665] = 0 +ij[3665] = 5 +id[3666] = "2902-11-09T17:21:46" +ik[3666] = -2.305 +il[3666] = 149 +im[3666] = 0.1865 +ij[3666] = 4 +id[3667] = "2902-12-06T17:22:16" +ik[3667] = 44.048 +il[3667] = 51 +im[3667] = 0.1525 +ij[3667] = 1 +id[3668] = "2902-12-20T16:58:30" +ik[3668] = 30.315 +il[3668] = -168 +im[3668] = 0 +ij[3668] = 6 +id[3669] = "2903-07-25T10:59:31" +ik[3669] = 25.779 +il[3669] = 49 +im[3669] = 0 +ij[3669] = 5 +id[3670] = "2903-11-13T19:34:27" +ik[3670] = 26.156 +il[3670] = 29 +im[3670] = 0 +ij[3670] = 6 +id[3671] = "2904-06-21T05:45:27" +ik[3671] = 31.096 +il[3671] = 50 +im[3671] = 0 +ij[3671] = 5 +id[3672] = "2904-07-12T07:04:13" +ik[3672] = 46.842 +il[3672] = -127 +im[3672] = 0.0493 +ij[3672] = 3 +id[3673] = "2904-08-11T12:01:47" +ik[3673] = -2.397 +il[3673] = 92 +im[3673] = 0.1319 +ij[3673] = 2 +id[3674] = "2904-10-16T21:38:26" +ik[3674] = 30.817 +il[3674] = 58 +im[3674] = 0 +ij[3674] = 6 +id[3675] = "2905-01-26T06:07:07" +ik[3675] = -1.866 +il[3675] = 179 +im[3675] = 0.1483 +ij[3675] = 4 +id[3676] = "2905-02-11T22:41:13" +ik[3676] = 39.435 +il[3676] = 89 +im[3676] = 0.1236 +ij[3676] = 1 +id[3677] = "2905-05-24T12:59:28" +ik[3677] = 25.958 +il[3677] = -17 +im[3677] = 0 +ij[3677] = 5 +id[3678] = "2905-09-12T20:40:33" +ik[3678] = 25.968 +il[3678] = -23 +im[3678] = 0 +ij[3678] = 6 +id[3679] = "2906-04-18T09:16:33" +ik[3679] = 30.59 +il[3679] = -65 +im[3679] = 0 +ij[3679] = 5 +id[3680] = "2906-08-14T00:41:28" +ik[3680] = 31.226 +il[3680] = -54 +im[3680] = 0 +ij[3680] = 6 +id[3681] = "2906-08-29T20:53:13" +ik[3681] = 45.845 +il[3681] = -22 +im[3681] = 0.0938 +ij[3681] = 3 +id[3682] = "2906-09-21T12:22:15" +ik[3682] = -2.181 +il[3682] = -32 +im[3682] = 0.1344 +ij[3682] = 2 +id[3683] = "2907-03-24T13:53:28" +ik[3683] = 26.19 +il[3683] = -66 +im[3683] = 0 +ij[3683] = 5 +id[3684] = "2907-03-27T18:27:36" +ik[3684] = -1.617 +il[3684] = 28 +im[3684] = 0.0229 +ij[3684] = 4 +id[3685] = "2907-04-03T04:23:13" +ik[3685] = 37.309 +il[3685] = -61 +im[3685] = 0.1101 +ij[3685] = 1 +id[3686] = "2907-07-13T22:26:32" +ik[3686] = 25.831 +il[3686] = -85 +im[3686] = 0 +ij[3686] = 6 +id[3687] = "2908-02-13T16:03:30" +ik[3687] = 30.015 +il[3687] = 134 +im[3687] = 0 +ij[3687] = 5 +id[3688] = "2908-06-10T04:29:25" +ik[3688] = 31.503 +il[3688] = -178 +im[3688] = 0 +ij[3688] = 6 +id[3689] = "2908-10-16T03:24:11" +ik[3689] = 41.181 +il[3689] = -170 +im[3689] = 0.117 +ij[3689] = 3 +id[3690] = "2908-10-21T21:02:16" +ik[3690] = -1.885 +il[3690] = -19 +im[3690] = 0.0654 +ij[3690] = 2 +id[3691] = "2909-01-21T13:07:32" +ik[3691] = 26.476 +il[3691] = -92 +im[3691] = 0 +ij[3691] = 5 +id[3692] = "2909-05-13T00:17:25" +ik[3692] = 25.746 +il[3692] = -147 +im[3692] = 0 +ij[3692] = 6 +id[3693] = "2909-05-13T14:43:09" +ik[3693] = 37.131 +il[3693] = 2 +im[3693] = 0.0854 +ij[3693] = 1 +id[3694] = "2909-05-14T01:30:44" +ik[3694] = -1.554 +il[3694] = -155 +im[3694] = 0.0788 +ij[3694] = 4 +id[3695] = "2909-12-11T04:04:30" +ik[3695] = 29.412 +il[3695] = -104 +im[3695] = 0 +ij[3695] = 5 +id[3696] = "2910-04-07T11:06:25" +ik[3696] = 31.624 +il[3696] = 17 +im[3696] = 0 +ij[3696] = 6 +id[3697] = "2910-11-21T09:58:27" +ik[3697] = 26.816 +il[3697] = -83 +im[3697] = 0 +ij[3697] = 5 +id[3698] = "2910-11-22T19:38:44" +ik[3698] = -1.686 +il[3698] = 145 +im[3698] = 0.1082 +ij[3698] = 2 +id[3699] = "2910-11-29T04:06:14" +ik[3699] = 37.764 +il[3699] = 80 +im[3699] = 0.0522 +ij[3699] = 3 +id[3700] = "2911-03-13T01:36:28" +ik[3700] = 25.714 +il[3700] = 159 +im[3700] = 0 +ij[3700] = 6 +id[3701] = "2911-06-22T09:16:07" +ik[3701] = 38.541 +il[3701] = -62 +im[3701] = 0.0455 +ij[3701] = 1 +id[3702] = "2911-06-27T22:22:18" +ik[3702] = -1.633 +il[3702] = 155 +im[3702] = 0.0761 +ij[3702] = 4 +id[3703] = "2911-10-08T22:44:24" +ik[3703] = 28.812 +il[3703] = -78 +im[3703] = 0 +ij[3703] = 5 +id[3704] = "2912-02-02T21:58:27" +ik[3704] = 31.579 +il[3704] = 148 +im[3704] = 0 +ij[3704] = 6 +id[3705] = "2912-09-20T03:59:28" +ik[3705] = 27.208 +il[3705] = -33 +im[3705] = 0 +ij[3705] = 5 +id[3706] = "2912-12-27T16:24:59" +ik[3706] = -1.589 +il[3706] = 14 +im[3706] = 0.0892 +ij[3706] = 2 +id[3707] = "2913-01-06T14:39:07" +ik[3707] = 36.255 +il[3707] = 136 +im[3707] = 0.0092 +ij[3707] = 3 +id[3708] = "2913-01-10T01:49:26" +ik[3708] = 25.734 +il[3708] = 122 +im[3708] = 0 +ij[3708] = 6 +id[3709] = "2913-08-03T07:02:12" +ik[3709] = 41.504 +il[3709] = -137 +im[3709] = 0.0745 +ij[3709] = 1 +id[3710] = "2913-08-06T00:42:28" +ik[3710] = 28.241 +il[3710] = -159 +im[3710] = 0 +ij[3710] = 5 +id[3711] = "2913-08-07T11:47:39" +ik[3711] = -1.841 +il[3711] = -168 +im[3711] = 0.1195 +ij[3711] = 4 +id[3712] = "2913-11-30T13:59:22" +ik[3712] = 31.378 +il[3712] = -155 +im[3712] = 0 +ij[3712] = 6 +id[3713] = "2914-07-20T18:24:28" +ik[3713] = 27.649 +il[3713] = 70 +im[3713] = 0 +ij[3713] = 5 +id[3714] = "2914-11-10T00:16:24" +ik[3714] = 25.807 +il[3714] = 115 +im[3714] = 0 +ij[3714] = 6 +id[3715] = "2915-02-11T14:51:40" +ik[3715] = -1.599 +il[3715] = -50 +im[3715] = 0.0346 +ij[3715] = 2 +id[3716] = "2915-02-16T11:07:09" +ik[3716] = 36.593 +il[3716] = 52 +im[3716] = 0.0738 +ij[3716] = 3 +id[3717] = "2915-06-04T10:05:22" +ik[3717] = 27.714 +il[3717] = 13 +im[3717] = 0 +ij[3717] = 5 +id[3718] = "2915-09-07T14:21:27" +ik[3718] = -2.152 +il[3718] = -66 +im[3718] = 0.0104 +ij[3718] = 4 +id[3719] = "2915-09-19T09:10:04" +ik[3719] = 45.297 +il[3719] = 128 +im[3719] = 0.0753 +ij[3719] = 1 +id[3720] = "2915-09-28T11:34:22" +ik[3720] = 31.046 +il[3720] = -179 +im[3720] = 0 +ij[3720] = 6 +id[3721] = "2916-05-19T04:38:21" +ik[3721] = 28.136 +il[3721] = -126 +im[3721] = 0 +ij[3721] = 5 +id[3722] = "2916-09-08T20:20:24" +ik[3722] = 25.934 +il[3722] = 136 +im[3722] = 0 +ij[3722] = 6 +id[3723] = "2917-04-02T02:36:23" +ik[3723] = 27.24 +il[3723] = 80 +im[3723] = 0 +ij[3723] = 5 +id[3724] = "2917-04-07T09:48:05" +ik[3724] = 39.235 +il[3724] = 22 +im[3724] = 0.0486 +ij[3724] = 3 +id[3725] = "2917-04-20T23:45:01" +ik[3725] = -1.799 +il[3725] = -59 +im[3725] = 0.0571 +ij[3725] = 2 +id[3726] = "2917-07-26T14:57:24" +ik[3726] = 30.617 +il[3726] = 73 +im[3726] = 0 +ij[3726] = 6 +id[3727] = "2917-10-15T16:35:42" +ik[3727] = -2.377 +il[3727] = 125 +im[3727] = 0.0225 +ij[3727] = 4 +id[3728] = "2917-11-09T21:34:07" +ik[3728] = 45.74 +il[3728] = -61 +im[3728] = 0.1243 +ij[3728] = 1 +id[3729] = "2918-03-18T10:10:24" +ik[3729] = 28.661 +il[3729] = 106 +im[3729] = 0 +ij[3729] = 5 +id[3730] = "2918-07-09T13:21:21" +ik[3730] = 26.116 +il[3730] = -155 +im[3730] = 0 +ij[3730] = 6 +id[3731] = "2919-01-30T01:42:23" +ik[3731] = 26.824 +il[3731] = 50 +im[3731] = 0 +ij[3731] = 5 +id[3732] = "2919-05-25T00:11:22" +ik[3732] = 30.123 +il[3732] = -121 +im[3732] = 0 +ij[3732] = 6 +id[3733] = "2919-06-17T13:12:08" +ik[3733] = 44.931 +il[3733] = 109 +im[3733] = 0.1515 +ij[3733] = 3 +id[3734] = "2919-07-18T10:47:16" +ik[3734] = -2.311 +il[3734] = 81 +im[3734] = 0.2006 +ij[3734] = 2 +id[3735] = "2919-12-28T13:50:23" +ik[3735] = -2.032 +il[3735] = -2 +im[3735] = 0.1617 +ij[3735] = 4 +id[3736] = "2920-01-15T10:29:25" +ik[3736] = 29.214 +il[3736] = 54 +im[3736] = 0 +ij[3736] = 5 +id[3737] = "2920-01-19T13:18:02" +ik[3737] = 40.975 +il[3737] = -144 +im[3737] = 0.0313 +ij[3737] = 1 +id[3738] = "2920-05-08T02:34:22" +ik[3738] = 26.355 +il[3738] = -30 +im[3738] = 0 +ij[3738] = 6 +id[3739] = "2920-11-28T06:43:20" +ik[3739] = 26.469 +il[3739] = -66 +im[3739] = 0 +ij[3739] = 5 +id[3740] = "2921-03-22T15:11:22" +ik[3740] = 29.598 +il[3740] = -38 +im[3740] = 0 +ij[3740] = 6 +id[3741] = "2921-08-12T02:29:02" +ik[3741] = 47.118 +il[3741] = -70 +im[3741] = 0.1464 +ij[3741] = 3 +id[3742] = "2921-09-07T21:58:25" +ik[3742] = -2.302 +il[3742] = -99 +im[3742] = 0.1829 +ij[3742] = 2 +id[3743] = "2921-11-13T05:14:21" +ik[3743] = 29.778 +il[3743] = 82 +im[3743] = 0 +ij[3743] = 5 +id[3744] = "2922-03-06T08:32:12" +ik[3744] = -1.688 +il[3744] = -168 +im[3744] = 0.1174 +ij[3744] = 4 +id[3745] = "2922-03-07T11:18:23" +ik[3745] = 26.651 +il[3745] = 161 +im[3745] = 0 +ij[3745] = 6 +id[3746] = "2922-03-16T05:04:07" +ik[3746] = 37.871 +il[3746] = -23 +im[3746] = 0.0954 +ij[3746] = 1 +id[3747] = "2922-09-27T16:49:17" +ik[3747] = 26.174 +il[3747] = 103 +im[3747] = 0 +ij[3747] = 5 +id[3748] = "2923-01-19T11:49:20" +ik[3748] = 29.065 +il[3748] = -36 +im[3748] = 0 +ij[3748] = 6 +id[3749] = "2923-09-11T18:11:22" +ik[3749] = 30.33 +il[3749] = -165 +im[3749] = 0 +ij[3749] = 5 +id[3750] = "2923-09-28T05:56:06" +ik[3750] = 42.995 +il[3750] = -180 +im[3750] = 0.0695 +ij[3750] = 3 +id[3751] = "2923-10-10T21:08:39" +ik[3751] = -1.991 +il[3751] = 75 +im[3751] = 0.0624 +ij[3751] = 2 +id[3752] = "2924-01-04T14:46:19" +ik[3752] = 27.004 +il[3752] = 69 +im[3752] = 0 +ij[3752] = 6 +id[3753] = "2924-04-26T00:26:00" +ik[3753] = -1.56 +il[3753] = -95 +im[3753] = 0.1148 +ij[3753] = 4 +id[3754] = "2924-04-28T00:20:00" +ik[3754] = 37.003 +il[3754] = -75 +im[3754] = 0.0982 +ij[3754] = 1 +id[3755] = "2924-07-27T07:22:22" +ik[3755] = 25.938 +il[3755] = -153 +im[3755] = 0 +ij[3755] = 5 +id[3756] = "2924-11-17T13:46:16" +ik[3756] = 28.546 +il[3756] = -113 +im[3756] = 0 +ij[3756] = 6 +id[3757] = "2925-07-10T01:15:18" +ik[3757] = 30.842 +il[3757] = 33 +im[3757] = 0 +ij[3757] = 5 +id[3758] = "2925-11-02T12:15:15" +ik[3758] = 27.414 +il[3758] = 67 +im[3758] = 0 +ij[3758] = 6 +id[3759] = "2925-11-10T03:14:54" +ik[3759] = -1.751 +il[3759] = 122 +im[3759] = 0.0961 +ij[3759] = 2 +id[3760] = "2925-11-12T20:38:06" +ik[3760] = 38.869 +il[3760] = -113 +im[3760] = 0.0521 +ij[3760] = 3 +id[3761] = "2926-05-27T01:35:19" +ik[3761] = 25.761 +il[3761] = -103 +im[3761] = 0 +ij[3761] = 5 +id[3762] = "2926-06-06T18:46:04" +ik[3762] = 37.803 +il[3762] = -142 +im[3762] = 0.0548 +ij[3762] = 1 +id[3763] = "2926-06-10T14:06:28" +ik[3763] = -1.586 +il[3763] = -35 +im[3763] = 0.0297 +ij[3763] = 4 +id[3764] = "2926-09-16T20:36:14" +ik[3764] = 28.055 +il[3764] = 100 +im[3764] = 0 +ij[3764] = 6 +id[3765] = "2927-05-08T02:30:20" +ik[3765] = 31.278 +il[3765] = -45 +im[3765] = 0 +ij[3765] = 5 +id[3766] = "2927-09-01T03:06:20" +ik[3766] = 27.877 +il[3766] = 155 +im[3766] = 0 +ij[3766] = 6 +id[3767] = "2927-12-14T00:13:35" +ik[3767] = -1.615 +il[3767] = -32 +im[3767] = 0.0972 +ij[3767] = 2 +id[3768] = "2927-12-23T11:12:02" +ik[3768] = 36.629 +il[3768] = -105 +im[3768] = 0.0085 +ij[3768] = 3 +id[3769] = "2928-03-25T22:46:16" +ik[3769] = 25.642 +il[3769] = -98 +im[3769] = 0 +ij[3769] = 5 +id[3770] = "2928-07-16T07:50:18" +ik[3770] = 27.601 +il[3770] = -111 +im[3770] = 0 +ij[3770] = 6 +id[3771] = "2928-07-17T00:00:00" +ik[3771] = 40.164 +il[3771] = 13 +im[3771] = 0.0373 +ij[3771] = 1 +id[3772] = "2928-07-23T09:23:49" +ik[3772] = -1.745 +il[3772] = -66 +im[3772] = 0.1129 +ij[3772] = 4 +id[3773] = "2929-03-04T22:05:13" +ik[3773] = 31.602 +il[3773] = -40 +im[3773] = 0 +ij[3773] = 5 +id[3774] = "2929-06-29T10:47:16" +ik[3774] = 28.39 +il[3774] = -9 +im[3774] = 0 +ij[3774] = 6 +id[3775] = "2930-01-22T20:42:03" +ik[3775] = -1.58 +il[3775] = -113 +im[3775] = 0.1056 +ij[3775] = 2 +id[3776] = "2930-01-23T22:14:18" +ik[3776] = 25.579 +il[3776] = -125 +im[3776] = 0 +ij[3776] = 5 +id[3777] = "2930-01-30T23:02:58" +ik[3777] = 36.229 +il[3777] = -70 +im[3777] = 0.0464 +ij[3777] = 3 +id[3778] = "2930-05-15T22:55:12" +ik[3778] = 27.191 +il[3778] = -19 +im[3778] = 0 +ij[3778] = 6 +id[3779] = "2930-08-27T05:12:16" +ik[3779] = -2.022 +il[3779] = 172 +im[3779] = 0.1187 +ij[3779] = 4 +id[3780] = "2930-08-31T19:49:00" +ik[3780] = 43.868 +il[3780] = -2 +im[3780] = 0.1264 +ij[3780] = 1 +id[3781] = "2930-12-31T12:15:15" +ik[3781] = 31.779 +il[3781] = 45 +im[3781] = 0 +ij[3781] = 5 +id[3782] = "2931-04-27T11:07:17" +ik[3782] = 28.94 +il[3782] = -66 +im[3782] = 0 +ij[3782] = 6 +id[3783] = "2931-11-23T23:20:15" +ik[3783] = 25.57 +il[3783] = -178 +im[3783] = 0 +ij[3783] = 5 +id[3784] = "2932-03-14T17:17:13" +ik[3784] = 26.828 +il[3784] = 26 +im[3784] = 0 +ij[3784] = 6 +id[3785] = "2932-03-16T13:06:57" +ik[3785] = 37.86 +il[3785] = -18 +im[3785] = 0.0874 +ij[3785] = 3 +id[3786] = "2932-03-21T02:38:31" +ik[3786] = -1.685 +il[3786] = -178 +im[3786] = 0.0331 +ij[3786] = 2 +id[3787] = "2932-09-27T09:38:04" +ik[3787] = -2.333 +il[3787] = -100 +im[3787] = 0.063 +ij[3787] = 4 +id[3788] = "2932-10-18T11:49:03" +ik[3788] = 46.386 +il[3788] = 75 +im[3788] = 0.1223 +ij[3788] = 1 +id[3789] = "2932-10-27T21:35:16" +ik[3789] = 31.786 +il[3789] = -159 +im[3789] = 0 +ij[3789] = 5 +id[3790] = "2933-02-22T04:19:12" +ik[3790] = 29.511 +il[3790] = -20 +im[3790] = 0 +ij[3790] = 6 +id[3791] = "2933-09-23T01:27:15" +ik[3791] = 25.617 +il[3791] = 115 +im[3791] = 0 +ij[3791] = 5 +id[3792] = "2934-01-12T14:20:15" +ik[3792] = 26.515 +il[3792] = 32 +im[3792] = 0 +ij[3792] = 6 +id[3793] = "2934-05-19T02:33:56" +ik[3793] = 42.436 +il[3793] = -155 +im[3793] = 0.152 +ij[3793] = 3 +id[3794] = "2934-06-15T16:06:32" +ik[3794] = -2.104 +il[3794] = -97 +im[3794] = 0.1867 +ij[3794] = 2 +id[3795] = "2934-08-25T02:57:15" +ik[3795] = 31.616 +il[3795] = 56 +im[3795] = 0 +ij[3795] = 5 +id[3796] = "2934-11-26T16:15:26" +ik[3796] = -2.219 +il[3796] = -130 +im[3796] = 0.1598 +ij[3796] = 4 +id[3797] = "2934-12-20T15:12:14" +ik[3797] = 30.078 +il[3797] = 117 +im[3797] = 0 +ij[3797] = 6 +id[3798] = "2934-12-22T21:55:00" +ik[3798] = 42.915 +il[3798] = 38 +im[3798] = 0.064 +ij[3798] = 1 +id[3799] = "2935-07-24T03:57:10" +ik[3799] = 25.718 +il[3799] = 42 +im[3799] = 0 +ij[3799] = 5 +id[3800] = "2935-11-12T13:28:07" +ik[3800] = 26.253 +il[3800] = 8 +im[3800] = 0 +ij[3800] = 6 +id[3801] = "2936-06-21T05:59:08" +ik[3801] = 31.285 +il[3801] = -54 +im[3801] = 0 +ij[3801] = 5 +id[3802] = "2936-07-24T10:12:00" +ik[3802] = 47.333 +il[3802] = -156 +im[3802] = 0.158 +ij[3802] = 3 +id[3803] = "2936-08-22T16:47:27" +ik[3803] = -2.386 +il[3803] = 30 +im[3803] = 0.1922 +ij[3803] = 2 +id[3804] = "2936-10-16T21:18:08" +ik[3804] = 30.608 +il[3804] = -37 +im[3804] = 0 +ij[3804] = 6 +id[3805] = "2937-02-10T07:23:54" +ik[3805] = -1.792 +il[3805] = -160 +im[3805] = 0.0083 +ij[3805] = 4 +id[3806] = "2937-02-24T08:01:58" +ik[3806] = 38.771 +il[3806] = -37 +im[3806] = 0.0145 +ij[3806] = 1 +id[3807] = "2937-05-23T06:15:07" +ik[3807] = 25.873 +il[3807] = -28 +im[3807] = 0 +ij[3807] = 5 +id[3808] = "2937-09-11T14:07:09" +ik[3808] = 26.043 +il[3808] = -38 +im[3808] = 0 +ij[3808] = 6 +id[3809] = "2938-04-18T08:49:12" +ik[3809] = 30.823 +il[3809] = -159 +im[3809] = 0 +ij[3809] = 5 +id[3810] = "2938-08-14T00:45:12" +ik[3810] = 31.063 +il[3810] = -154 +im[3810] = 0 +ij[3810] = 6 +id[3811] = "2938-09-09T07:04:56" +ik[3811] = 44.885 +il[3811] = -172 +im[3811] = 0.0119 +ij[3811] = 3 +id[3812] = "2938-09-28T18:04:49" +ik[3812] = -2.111 +il[3812] = -146 +im[3812] = 0.1354 +ij[3812] = 2 +id[3813] = "2939-03-23T07:43:06" +ik[3813] = 26.082 +il[3813] = -86 +im[3813] = 0 +ij[3813] = 5 +id[3814] = "2939-04-08T02:19:02" +ik[3814] = -1.59 +il[3814] = -86 +im[3814] = 0.0987 +ij[3814] = 4 +id[3815] = "2939-04-12T19:54:54" +ik[3815] = 37.126 +il[3815] = 55 +im[3815] = 0.105 +ij[3815] = 1 +id[3816] = "2939-07-12T15:40:10" +ik[3816] = 25.884 +il[3816] = -97 +im[3816] = 0 +ij[3816] = 6 +id[3817] = "2940-02-13T13:53:11" +ik[3817] = 30.272 +il[3817] = 64 +im[3817] = 0 +ij[3817] = 5 +id[3818] = "2940-06-10T03:56:09" +ik[3818] = 31.401 +il[3818] = 91 +im[3818] = 0 +ij[3818] = 6 +id[3819] = "2940-10-26T12:22:53" +ik[3819] = 40.277 +il[3819] = 56 +im[3819] = 0.0707 +ij[3819] = 3 +id[3820] = "2940-10-28T20:12:50" +ik[3820] = -1.832 +il[3820] = -39 +im[3820] = 0.0214 +ij[3820] = 2 +id[3821] = "2941-01-20T07:45:07" +ik[3821] = 26.344 +il[3821] = -124 +im[3821] = 0 +ij[3821] = 5 +id[3822] = "2941-05-11T17:33:04" +ik[3822] = 25.776 +il[3822] = -159 +im[3822] = 0 +ij[3822] = 6 +id[3823] = "2941-05-22T09:54:51" +ik[3823] = 37.304 +il[3823] = 58 +im[3823] = 0.0602 +ij[3823] = 1 +id[3824] = "2941-05-24T03:10:37" +ik[3824] = -1.56 +il[3824] = 175 +im[3824] = 0.0239 +ij[3824] = 4 +id[3825] = "2941-12-10T23:24:08" +ik[3825] = 29.676 +il[3825] = -138 +im[3825] = 0 +ij[3825] = 5 +id[3826] = "2942-04-07T09:05:11" +ik[3826] = 31.592 +il[3826] = -53 +im[3826] = 0 +ij[3826] = 6 +id[3827] = "2942-11-20T05:45:10" +ik[3827] = 26.661 +il[3827] = -131 +im[3827] = 0 +ij[3827] = 5 +id[3828] = "2942-11-30T08:08:24" +ik[3828] = -1.656 +il[3828] = -69 +im[3828] = 0.0962 +ij[3828] = 2 +id[3829] = "2942-12-08T03:29:57" +ik[3829] = 37.281 +il[3829] = 76 +im[3829] = 0.0404 +ij[3829] = 3 +id[3830] = "2943-03-11T19:11:08" +ik[3830] = 25.721 +il[3830] = 142 +im[3830] = 0 +ij[3830] = 6 +id[3831] = "2943-07-01T12:10:56" +ik[3831] = 39.051 +il[3831] = -117 +im[3831] = 0.0095 +ij[3831] = 1 +id[3832] = "2943-07-07T17:44:25" +ik[3832] = -1.667 +il[3832] = -140 +im[3832] = 0.099 +ij[3832] = 4 +id[3833] = "2943-10-08T15:03:10" +ik[3833] = 29.071 +il[3833] = -68 +im[3833] = 0 +ij[3833] = 5 +id[3834] = "2944-02-02T17:58:07" +ik[3834] = 31.619 +il[3834] = 108 +im[3834] = 0 +ij[3834] = 6 +id[3835] = "2944-09-19T01:04:04" +ik[3835] = 27.03 +il[3835] = -100 +im[3835] = 0 +ij[3835] = 5 +id[3836] = "2945-01-05T15:59:32" +ik[3836] = -1.581 +il[3836] = 6 +im[3836] = 0.1003 +ij[3836] = 2 +id[3837] = "2945-01-08T19:57:04" +ik[3837] = 25.718 +il[3837] = 97 +im[3837] = 0 +ij[3837] = 6 +id[3838] = "2945-01-15T08:03:50" +ik[3838] = 36.167 +il[3838] = -142 +im[3838] = 0.0641 +ij[3838] = 3 +id[3839] = "2945-08-05T13:47:08" +ik[3839] = 28.485 +il[3839] = -101 +im[3839] = 0 +ij[3839] = 5 +id[3840] = "2945-08-13T11:37:49" +ik[3840] = 42.322 +il[3840] = 154 +im[3840] = 0.1174 +ij[3840] = 1 +id[3841] = "2945-08-15T05:09:46" +ik[3841] = -1.901 +il[3841] = -93 +im[3841] = 0.1147 +ij[3841] = 4 +id[3842] = "2945-11-30T07:39:04" +ik[3842] = 31.484 +il[3842] = -161 +im[3842] = 0 +ij[3842] = 6 +id[3843] = "2946-07-19T17:06:08" +ik[3843] = 27.45 +il[3843] = -21 +im[3843] = 0 +ij[3843] = 5 +id[3844] = "2946-11-08T19:15:01" +ik[3844] = 25.768 +il[3844] = 73 +im[3844] = 0 +ij[3844] = 6 +id[3845] = "2947-02-24T07:07:07" +ik[3845] = -1.621 +il[3845] = 86 +im[3845] = 0.0973 +ij[3845] = 2 +id[3846] = "2947-02-26T10:59:48" +ik[3846] = 36.937 +il[3846] = 48 +im[3846] = 0.1125 +ij[3846] = 3 +id[3847] = "2947-06-03T19:58:04" +ik[3847] = 27.937 +il[3847] = 117 +im[3847] = 0 +ij[3847] = 5 +id[3848] = "2947-09-14T12:42:14" +ik[3848] = -2.224 +il[3848] = -72 +im[3848] = 0.0321 +ij[3848] = 4 +id[3849] = "2947-09-28T02:46:01" +ik[3849] = 31.205 +il[3849] = -149 +im[3849] = 0 +ij[3849] = 6 +id[3850] = "2947-09-30T00:06:54" +ik[3850] = 45.907 +il[3850] = -91 +im[3850] = 0.0423 +ij[3850] = 1 +id[3851] = "2948-05-18T05:14:03" +ik[3851] = 27.918 +il[3851] = 115 +im[3851] = 0 +ij[3851] = 5 +id[3852] = "2948-09-07T16:27:07" +ik[3852] = 25.872 +il[3852] = 81 +im[3852] = 0 +ij[3852] = 6 +id[3853] = "2949-04-01T09:26:03" +ik[3853] = 27.439 +il[3853] = -132 +im[3853] = 0 +ij[3853] = 5 +id[3854] = "2949-04-21T08:20:49" +ik[3854] = 40.223 +il[3854] = 73 +im[3854] = 0.132 +ij[3854] = 3 +id[3855] = "2949-05-10T10:04:55" +ik[3855] = -1.89 +il[3855] = -133 +im[3855] = 0.0301 +ij[3855] = 2 +id[3856] = "2949-07-26T03:37:00" +ik[3856] = 30.813 +il[3856] = 139 +im[3856] = 0 +ij[3856] = 6 +id[3857] = "2949-10-28T21:32:55" +ik[3857] = -2.353 +il[3857] = 82 +im[3857] = 0.2172 +ij[3857] = 4 +id[3858] = "2949-11-24T12:38:52" +ik[3858] = 44.901 +il[3858] = 116 +im[3858] = 0.1505 +ij[3858] = 1 +id[3859] = "2950-03-17T12:52:59" +ik[3859] = 28.428 +il[3859] = -43 +im[3859] = 0 +ij[3859] = 5 +id[3860] = "2950-07-08T10:52:01" +ik[3860] = 26.03 +il[3860] = 130 +im[3860] = 0 +ij[3860] = 6 +id[3861] = "2951-01-29T05:45:01" +ik[3861] = 26.998 +il[3861] = -121 +im[3861] = 0 +ij[3861] = 5 +id[3862] = "2951-05-24T10:18:02" +ik[3862] = 30.343 +il[3862] = -17 +im[3862] = 0 +ij[3862] = 6 +id[3863] = "2951-07-02T18:56:44" +ik[3863] = 46.127 +il[3863] = 67 +im[3863] = 0.0141 +ij[3863] = 3 +id[3864] = "2951-08-02T13:21:23" +ik[3864] = -2.377 +il[3864] = 88 +im[3864] = 0.0894 +ij[3864] = 2 +id[3865] = "2952-01-14T15:30:57" +ik[3865] = 28.97 +il[3865] = -129 +im[3865] = 0 +ij[3865] = 5 +id[3866] = "2952-01-14T17:26:44" +ik[3866] = -1.936 +il[3866] = 6 +im[3866] = 0.0662 +ij[3866] = 4 +id[3867] = "2952-02-02T18:11:48" +ik[3867] = 40.07 +il[3867] = 175 +im[3867] = 0.1444 +ij[3867] = 1 +id[3868] = "2952-05-07T01:50:00" +ik[3868] = 26.244 +il[3868] = -131 +im[3868] = 0 +ij[3868] = 6 +id[3869] = "2952-11-27T08:15:04" +ik[3869] = 26.616 +il[3869] = 160 +im[3869] = 0 +ij[3869] = 5 +id[3870] = "2953-03-21T22:43:58" +ik[3870] = 29.828 +il[3870] = 103 +im[3870] = 0 +ij[3870] = 6 +id[3871] = "2953-08-22T04:16:45" +ik[3871] = 46.511 +il[3871] = -97 +im[3871] = 0.0356 +ij[3871] = 3 +id[3872] = "2953-09-15T22:36:58" +ik[3872] = -2.237 +il[3872] = -129 +im[3872] = 0.1386 +ij[3872] = 2 +id[3873] = "2953-11-12T12:44:03" +ik[3873] = 29.532 +il[3873] = -137 +im[3873] = 0 +ij[3873] = 5 +id[3874] = "2954-03-06T12:37:00" +ik[3874] = 26.515 +il[3874] = 30 +im[3874] = 0 +ij[3874] = 6 +id[3875] = "2954-03-18T18:12:05" +ik[3875] = -1.645 +il[3875] = 61 +im[3875] = 0.0179 +ij[3875] = 4 +id[3876] = "2954-03-26T15:19:43" +ik[3876] = 37.521 +il[3876] = 179 +im[3876] = 0.1071 +ij[3876] = 1 +id[3877] = "2954-09-26T16:15:01" +ik[3877] = 26.294 +il[3877] = 0 +im[3877] = 0 +ij[3877] = 5 +id[3878] = "2955-01-18T17:01:58" +ik[3878] = 29.296 +il[3878] = 138 +im[3878] = 0 +ij[3878] = 6 +id[3879] = "2955-09-11T04:14:00" +ik[3879] = 30.092 +il[3879] = -61 +im[3879] = 0 +ij[3879] = 5 +id[3880] = "2955-10-09T01:36:46" +ik[3880] = 41.968 +il[3880] = -109 +im[3880] = 0.1168 +ij[3880] = 3 +id[3881] = "2955-10-17T19:00:59" +ik[3881] = -1.93 +il[3881] = 75 +im[3881] = 0.0533 +ij[3881] = 2 +id[3882] = "2956-01-03T18:26:55" +ik[3882] = 26.843 +il[3882] = -97 +im[3882] = 0 +ij[3882] = 6 +id[3883] = "2956-05-06T09:09:00" +ik[3883] = -1.554 +il[3883] = 131 +im[3883] = 0.0518 +ij[3883] = 4 +id[3884] = "2956-05-06T23:37:40" +ik[3884] = 37.043 +il[3884] = -80 +im[3884] = 0.038 +ij[3884] = 1 +id[3885] = "2956-07-26T04:57:56" +ik[3885] = 26.033 +il[3885] = 131 +im[3885] = 0 +ij[3885] = 5 +id[3886] = "2956-11-16T16:42:57" +ik[3886] = 28.769 +il[3886] = 95 +im[3886] = 0 +ij[3886] = 6 +id[3887] = "2957-07-09T13:52:01" +ik[3887] = 30.626 +il[3887] = 100 +im[3887] = 0 +ij[3887] = 5 +id[3888] = "2957-11-01T18:38:00" +ik[3888] = 27.229 +il[3888] = -142 +im[3888] = 0 +ij[3888] = 6 +id[3889] = "2957-11-17T08:50:21" +ik[3889] = -1.713 +il[3889] = 8 +im[3889] = 0.0727 +ij[3889] = 2 +id[3890] = "2957-11-22T06:50:41" +ik[3890] = 38.221 +il[3890] = 85 +im[3890] = 0.0298 +ij[3890] = 3 +id[3891] = "2958-05-25T21:40:53" +ik[3891] = 25.831 +il[3891] = -157 +im[3891] = 0 +ij[3891] = 5 +id[3892] = "2958-06-15T15:43:46" +ik[3892] = 38.179 +il[3892] = -111 +im[3892] = 0.0086 +ij[3892] = 1 +id[3893] = "2958-06-20T12:01:28" +ik[3893] = -1.61 +il[3893] = -9 +im[3893] = 0.093 +ij[3893] = 4 +id[3894] = "2958-09-15T21:28:56" +ik[3894] = 28.264 +il[3894] = -22 +im[3894] = 0 +ij[3894] = 6 +id[3895] = "2959-05-07T17:37:58" +ik[3895] = 31.1 +il[3895] = -14 +im[3895] = 0 +ij[3895] = 5 +id[3896] = "2959-08-31T12:25:55" +ik[3896] = 27.67 +il[3896] = -93 +im[3896] = 0 +ij[3896] = 6 +id[3897] = "2959-12-22T06:05:02" +ik[3897] = -1.599 +il[3897] = -140 +im[3897] = 0.0931 +ij[3897] = 2 +id[3898] = "2960-01-01T03:09:47" +ik[3898] = 36.387 +il[3898] = -1 +im[3898] = 0.0797 +ij[3898] = 3 +id[3899] = "2960-03-24T17:39:59" +ik[3899] = 25.686 +il[3899] = -134 +im[3899] = 0 +ij[3899] = 5 +id[3900] = "2960-07-15T06:52:59" +ik[3900] = 27.793 +il[3900] = 153 +im[3900] = 0 +ij[3900] = 6 +id[3901] = "2960-07-26T17:58:42" +ik[3901] = 40.878 +il[3901] = 98 +im[3901] = 0.0896 +ij[3901] = 1 +id[3902] = "2960-08-01T07:31:15" +ik[3902] = -1.795 +il[3902] = -51 +im[3902] = 0.0753 +ij[3902] = 4 +id[3903] = "2961-03-04T15:38:52" +ik[3903] = 31.478 +il[3903] = -45 +im[3903] = 0 +ij[3903] = 5 +id[3904] = "2961-06-28T23:16:56" +ik[3904] = 28.162 +il[3904] = 57 +im[3904] = 0 +ij[3904] = 6 +id[3905] = "2962-01-22T16:12:51" +ik[3905] = 25.599 +il[3905] = -148 +im[3905] = 0 +ij[3905] = 5 +id[3906] = "2962-02-02T16:37:56" +ik[3906] = -1.588 +il[3906] = -48 +im[3906] = 0.0118 +ij[3906] = 2 +id[3907] = "2962-02-09T05:35:39" +ik[3907] = 36.39 +il[3907] = -180 +im[3907] = 0.114 +ij[3907] = 3 +id[3908] = "2962-05-14T20:21:59" +ik[3908] = 27.363 +il[3908] = -91 +im[3908] = 0 +ij[3908] = 6 +id[3909] = "2962-09-02T18:54:50" +ik[3909] = -2.094 +il[3909] = -69 +im[3909] = 0.1079 +ij[3909] = 4 +id[3910] = "2962-09-11T08:51:38" +ik[3910] = 44.692 +il[3910] = 166 +im[3910] = 0.0175 +ij[3910] = 1 +id[3911] = "2962-12-31T08:07:52" +ik[3911] = 31.723 +il[3911] = 6 +im[3911] = 0 +ij[3911] = 5 +id[3912] = "2963-04-27T02:48:54" +ik[3912] = 28.697 +il[3912] = -47 +im[3912] = 0 +ij[3912] = 6 +id[3913] = "2963-11-22T16:41:57" +ik[3913] = 25.567 +il[3913] = 169 +im[3913] = 0 +ij[3913] = 5 +id[3914] = "2964-03-13T13:22:56" +ik[3914] = 26.979 +il[3914] = -27 +im[3914] = 0 +ij[3914] = 6 +id[3915] = "2964-03-28T12:15:41" +ik[3915] = 38.558 +il[3915] = 6 +im[3915] = 0.0444 +ij[3915] = 3 +id[3916] = "2964-04-06T19:56:11" +ik[3916] = -1.74 +il[3916] = -21 +im[3916] = 0.0859 +ij[3916] = 2 +id[3917] = "2964-10-07T02:02:25" +ik[3917] = -2.369 +il[3917] = 11 +im[3917] = 0.0497 +ij[3917] = 4 +id[3918] = "2964-10-27T19:27:50" +ik[3918] = 31.806 +il[3918] = 132 +im[3918] = 0 +ij[3918] = 5 +id[3919] = "2964-10-30T15:38:44" +ik[3919] = 46.181 +il[3919] = 39 +im[3919] = 0.1266 +ij[3919] = 1 +id[3920] = "2965-02-21T23:02:49" +ik[3920] = 29.262 +il[3920] = -45 +im[3920] = 0 +ij[3920] = 6 +id[3921] = "2965-09-21T18:26:55" +ik[3921] = 25.589 +il[3921] = 107 +im[3921] = 0 +ij[3921] = 5 +id[3922] = "2966-01-11T09:20:52" +ik[3922] = 26.645 +il[3922] = -5 +im[3922] = 0 +ij[3922] = 6 +id[3923] = "2966-06-04T19:24:40" +ik[3923] = 43.824 +il[3923] = 9 +im[3923] = 0.0974 +ij[3923] = 3 +id[3924] = "2966-07-04T22:30:53" +ik[3924] = -2.228 +il[3924] = -111 +im[3924] = 0.1752 +ij[3924] = 2 +id[3925] = "2966-08-25T02:22:50" +ik[3925] = 31.712 +il[3925] = -36 +im[3925] = 0 +ij[3925] = 5 +id[3926] = "2966-12-14T14:47:46" +ik[3926] = -2.116 +il[3926] = -36 +im[3926] = 0.0718 +ij[3926] = 4 +id[3927] = "2966-12-20T12:30:48" +ik[3927] = 29.834 +il[3927] = 55 +im[3927] = 0 +ij[3927] = 6 +id[3928] = "2967-01-07T19:44:41" +ik[3928] = 41.805 +il[3928] = 122 +im[3928] = 0.0775 +ij[3928] = 1 +id[3929] = "2967-07-22T20:51:56" +ik[3929] = 25.667 +il[3929] = 36 +im[3929] = 0 +ij[3929] = 5 +id[3930] = "2967-11-11T07:38:55" +ik[3930] = 26.36 +il[3930] = -17 +im[3930] = 0 +ij[3930] = 6 +id[3931] = "2968-06-21T06:10:48" +ik[3931] = 31.448 +il[3931] = -157 +im[3931] = 0 +ij[3931] = 5 +id[3932] = "2968-08-04T07:50:35" +ik[3932] = 47.377 +il[3932] = -114 +im[3932] = 0.091 +ij[3932] = 3 +id[3933] = "2968-09-01T09:36:41" +ik[3933] = -2.347 +il[3933] = 134 +im[3933] = 0.1281 +ij[3933] = 2 +id[3934] = "2968-10-16T20:27:53" +ik[3934] = 30.385 +il[3934] = -125 +im[3934] = 0 +ij[3934] = 6 +id[3935] = "2969-02-24T06:40:41" +ik[3935] = -1.73 +il[3935] = -120 +im[3935] = 0.1375 +ij[3935] = 4 +id[3936] = "2969-03-07T21:39:36" +ik[3936] = 38.228 +il[3936] = 125 +im[3936] = 0.1063 +ij[3936] = 1 +id[3937] = "2969-05-21T23:19:49" +ik[3937] = 25.798 +il[3937] = -37 +im[3937] = 0 +ij[3937] = 5 +id[3938] = "2969-09-10T07:42:48" +ik[3938] = 26.127 +il[3938] = -55 +im[3938] = 0 +ij[3938] = 6 +id[3939] = "2970-04-18T08:47:54" +ik[3939] = 31.038 +il[3939] = 100 +im[3939] = 0 +ij[3939] = 5 +id[3940] = "2970-08-14T00:45:47" +ik[3940] = 30.878 +il[3940] = 106 +im[3940] = 0 +ij[3940] = 6 +id[3941] = "2970-09-20T00:07:37" +ik[3941] = 43.847 +il[3941] = -61 +im[3941] = 0.1151 +ij[3941] = 3 +id[3942] = "2970-10-05T18:54:56" +ik[3942] = -2.044 +il[3942] = 171 +im[3942] = 0.1247 +ij[3942] = 2 +id[3943] = "2971-03-22T01:14:52" +ik[3943] = 25.983 +il[3943] = -102 +im[3943] = 0 +ij[3943] = 5 +id[3944] = "2971-04-18T23:58:03" +ik[3944] = -1.57 +il[3944] = -50 +im[3944] = 0.0916 +ij[3944] = 4 +id[3945] = "2971-04-22T04:05:39" +ik[3945] = 37.025 +il[3945] = -81 +im[3945] = 0.0309 +ij[3945] = 1 +id[3946] = "2971-07-11T08:56:49" +ik[3946] = 25.946 +il[3946] = -109 +im[3946] = 0 +ij[3946] = 6 +id[3947] = "2972-02-13T12:35:51" +ik[3947] = 30.521 +il[3947] = -19 +im[3947] = 0 +ij[3947] = 5 +id[3948] = "2972-06-10T03:45:47" +ik[3948] = 31.271 +il[3948] = -5 +im[3948] = 0 +ij[3948] = 6 +id[3949] = "2972-11-04T21:05:37" +ik[3949] = -1.785 +il[3949] = -84 +im[3949] = 0.0288 +ij[3949] = 2 +id[3950] = "2972-11-05T13:01:37" +ik[3950] = 39.461 +il[3950] = 44 +im[3950] = 0.0142 +ij[3950] = 3 +id[3951] = "2973-01-19T01:58:48" +ik[3951] = 26.223 +il[3951] = -149 +im[3951] = 0 +ij[3951] = 5 +id[3952] = "2973-05-10T10:46:50" +ik[3952] = 25.816 +il[3952] = -171 +im[3952] = 0 +ij[3952] = 6 +id[3953] = "2973-05-31T04:38:38" +ik[3953] = 37.549 +il[3953] = 120 +im[3953] = 0.0263 +ij[3953] = 1 +id[3954] = "2973-06-03T02:48:44" +ik[3954] = -1.572 +il[3954] = 176 +im[3954] = 0.0834 +ij[3954] = 4 +id[3955] = "2973-12-10T19:55:46" +ik[3955] = 29.94 +il[3955] = 171 +im[3955] = 0 +ij[3955] = 5 +id[3956] = "2974-04-07T07:47:51" +ik[3956] = 31.53 +il[3956] = -133 +im[3956] = 0 +ij[3956] = 6 +id[3957] = "2974-11-19T00:56:44" +ik[3957] = 26.516 +il[3957] = -171 +im[3957] = 0 +ij[3957] = 5 +id[3958] = "2974-12-08T01:45:38" +ik[3958] = -1.632 +il[3958] = 1 +im[3958] = 0.0922 +ij[3958] = 2 +id[3959] = "2974-12-16T22:55:37" +ik[3959] = 36.885 +il[3959] = 129 +im[3959] = 0.0727 +ij[3959] = 3 +id[3960] = "2975-03-10T12:35:51" +ik[3960] = 25.738 +il[3960] = 127 +im[3960] = 0 +ij[3960] = 6 +id[3961] = "2975-07-10T19:47:34" +ik[3961] = 39.635 +il[3961] = 119 +im[3961] = 0.0844 +ij[3961] = 1 +id[3962] = "2975-07-17T09:23:25" +ik[3962] = -1.708 +il[3962] = -21 +im[3962] = 0.0853 +ij[3962] = 4 +id[3963] = "2975-10-08T08:43:43" +ik[3963] = 29.334 +il[3963] = -78 +im[3963] = 0 +ij[3963] = 5 +id[3964] = "2976-02-02T14:52:48" +ik[3964] = 31.629 +il[3964] = 55 +im[3964] = 0 +ij[3964] = 6 +id[3965] = "2976-09-17T21:30:48" +ik[3965] = 26.862 +il[3965] = -158 +im[3965] = 0 +ij[3965] = 5 +id[3966] = "2977-01-07T13:48:43" +ik[3966] = 25.713 +il[3966] = 75 +im[3966] = 0 +ij[3966] = 6 +id[3967] = "2977-01-15T04:37:12" +ik[3967] = -1.578 +il[3967] = 179 +im[3967] = 0.0676 +ij[3967] = 2 +id[3968] = "2977-01-24T04:29:34" +ik[3968] = 36.164 +il[3968] = -103 +im[3968] = 0.1031 +ij[3968] = 3 +id[3969] = "2977-08-05T04:17:45" +ik[3969] = 28.737 +il[3969] = -65 +im[3969] = 0 +ij[3969] = 5 +id[3970] = "2977-08-22T07:54:33" +ik[3970] = -1.966 +il[3970] = -179 +im[3970] = 0.1062 +ij[3970] = 4 +id[3971] = "2977-08-23T20:47:36" +ik[3971] = 43.174 +il[3971] = 18 +im[3971] = 0.0796 +ij[3971] = 1 +id[3972] = "2977-11-30T02:21:41" +ik[3972] = 31.562 +il[3972] = 177 +im[3972] = 0 +ij[3972] = 6 +id[3973] = "2978-07-18T15:03:44" +ik[3973] = 27.261 +il[3973] = -101 +im[3973] = 0 +ij[3973] = 5 +id[3974] = "2978-11-07T13:49:43" +ik[3974] = 25.74 +il[3974] = 41 +im[3974] = 0 +ij[3974] = 6 +id[3975] = "2979-03-09T00:25:29" +ik[3975] = 37.396 +il[3975] = -154 +im[3975] = 0.0834 +ij[3975] = 3 +id[3976] = "2979-03-10T06:24:47" +ik[3976] = -1.651 +il[3976] = 128 +im[3976] = 0.056 +ij[3976] = 2 +id[3977] = "2979-06-03T07:12:43" +ik[3977] = 28.17 +il[3977] = -159 +im[3977] = 0 +ij[3977] = 5 +id[3978] = "2979-09-22T02:15:54" +ik[3978] = -2.289 +il[3978] = 60 +im[3978] = 0.0383 +ij[3978] = 4 +id[3979] = "2979-09-27T19:03:47" +ik[3979] = 31.342 +il[3979] = -136 +im[3979] = 0 +ij[3979] = 6 +id[3980] = "2979-10-10T20:35:31" +ik[3980] = 46.294 +il[3980] = -30 +im[3980] = 0.1542 +ij[3980] = 1 +id[3981] = "2980-05-17T04:57:47" +ik[3981] = 27.708 +il[3981] = 10 +im[3981] = 0 +ij[3981] = 5 +id[3982] = "2980-09-06T12:01:43" +ik[3982] = 25.82 +il[3982] = 34 +im[3982] = 0 +ij[3982] = 6 +id[3983] = "2981-03-31T17:33:47" +ik[3983] = 27.649 +il[3983] = -2 +im[3983] = 0 +ij[3983] = 5 +id[3984] = "2981-05-06T12:50:32" +ik[3984] = 41.383 +il[3984] = 47 +im[3984] = 0.1326 +ij[3984] = 3 +id[3985] = "2981-05-30T18:07:55" +ik[3985] = -2.002 +il[3985] = -163 +im[3985] = 0.0343 +ij[3985] = 2 +id[3986] = "2981-07-25T17:23:42" +ik[3986] = 30.995 +il[3986] = -171 +im[3986] = 0 +ij[3986] = 6 +id[3987] = "2981-11-13T08:10:36" +ik[3987] = -2.291 +il[3987] = -25 +im[3987] = 0.0802 +ij[3987] = 4 +id[3988] = "2981-12-10T07:43:32" +ik[3988] = 43.84 +il[3988] = -117 +im[3988] = 0.0147 +ij[3988] = 1 +id[3989] = "2982-03-16T14:38:41" +ik[3989] = 28.201 +il[3989] = -179 +im[3989] = 0 +ij[3989] = 5 +id[3990] = "2982-07-07T07:44:41" +ik[3990] = 25.954 +il[3990] = 64 +im[3990] = 0 +ij[3990] = 6 +id[3991] = "2983-01-28T10:57:38" +ik[3991] = 27.183 +il[3991] = 52 +im[3991] = 0 +ij[3991] = 5 +id[3992] = "2983-05-23T21:31:40" +ik[3992] = 30.555 +il[3992] = 70 +im[3992] = 0 +ij[3992] = 6 +id[3993] = "2983-07-16T06:24:28" +ik[3993] = 46.973 +il[3993] = -75 +im[3993] = 0.175 +ij[3993] = 3 +id[3994] = "2983-08-15T07:42:10" +ik[3994] = -2.398 +il[3994] = -163 +im[3994] = 0.2075 +ij[3994] = 2 +id[3995] = "2984-01-13T19:31:43" +ik[3995] = 28.731 +il[3995] = 63 +im[3995] = 0 +ij[3995] = 5 +id[3996] = "2984-01-30T17:47:30" +ik[3996] = -1.851 +il[3996] = 50 +im[3996] = 0.0833 +ij[3996] = 4 +id[3997] = "2984-02-15T22:01:29" +ik[3997] = 39.3 +il[3997] = 139 +im[3997] = 0.0212 +ij[3997] = 1 +id[3998] = "2984-05-06T00:17:42" +ik[3998] = 26.144 +il[3998] = 141 +im[3998] = 0 +ij[3998] = 6 +id[3999] = "2984-11-26T10:51:44" +ik[3999] = 26.775 +il[3999] = 10 +im[3999] = 0 +ij[3999] = 5 +id[4000] = "2985-03-21T07:30:43" +ik[4000] = 30.055 +il[4000] = -134 +im[4000] = 0 +ij[4000] = 6 +id[4001] = "2985-09-01T08:55:32" +ik[4001] = 45.672 +il[4001] = -165 +im[4001] = 0.0527 +ij[4001] = 3 +id[4002] = "2985-09-23T10:48:52" +ik[4002] = -2.168 +il[4002] = 23 +im[4002] = 0.1272 +ij[4002] = 2 +id[4003] = "2985-11-11T19:08:41" +ik[4003] = 29.286 +il[4003] = 21 +im[4003] = 0 +ij[4003] = 5 +id[4004] = "2986-03-05T12:58:36" +ik[4004] = 26.39 +il[4004] = -87 +im[4004] = 0 +ij[4004] = 6 +id[4005] = "2986-03-30T12:24:52" +ik[4005] = -1.611 +il[4005] = 157 +im[4005] = 0.1159 +ij[4005] = 4 +id[4006] = "2986-04-05T14:15:30" +ik[4006] = 37.267 +il[4006] = -174 +im[4006] = 0.0682 +ij[4006] = 1 +id[4007] = "2986-09-25T16:33:36" +ik[4007] = 26.427 +il[4007] = -116 +im[4007] = 0 +ij[4007] = 5 +id[4008] = "2987-01-17T23:16:39" +ik[4008] = 29.527 +il[4008] = -62 +im[4008] = 0 +ij[4008] = 6 +id[4009] = "2987-09-10T13:09:41" +ik[4009] = 29.85 +il[4009] = 60 +im[4009] = 0 +ij[4009] = 5 +id[4010] = "2987-10-19T16:30:25" +ik[4010] = 41.001 +il[4010] = 31 +im[4010] = 0.0527 +ij[4010] = 3 +id[4011] = "2987-10-24T17:11:06" +ik[4011] = -1.874 +il[4011] = 70 +im[4011] = 0.0734 +ij[4011] = 2 +id[4012] = "2988-01-02T21:04:36" +ik[4012] = 26.694 +il[4012] = 116 +im[4012] = 0 +ij[4012] = 6 +id[4013] = "2988-05-15T20:05:25" +ik[4013] = 37.156 +il[4013] = -44 +im[4013] = 0.0243 +ij[4013] = 1 +id[4014] = "2988-05-16T13:26:13" +ik[4014] = -1.555 +il[4014] = 62 +im[4014] = 0.0396 +ij[4014] = 4 +id[4015] = "2988-07-25T03:19:35" +ik[4015] = 26.139 +il[4015] = 44 +im[4015] = 0 +ij[4015] = 5 +id[4016] = "2988-11-15T20:37:40" +ik[4016] = 28.996 +il[4016] = -71 +im[4016] = 0 +ij[4016] = 6 +id[4017] = "2989-07-09T01:20:38" +ik[4017] = 30.399 +il[4017] = -176 +im[4017] = 0 +ij[4017] = 5 +id[4018] = "2989-10-31T23:47:36" +ik[4018] = 27.054 +il[4018] = 31 +im[4018] = 0 +ij[4018] = 6 +id[4019] = "2989-11-24T17:57:21" +ik[4019] = -1.68 +il[4019] = -158 +im[4019] = 0.0692 +ij[4019] = 2 +id[4020] = "2989-12-01T10:23:22" +ik[4020] = 37.664 +il[4020] = 21 +im[4020] = 0.0755 +ij[4020] = 3 +id[4021] = "2990-05-24T18:23:36" +ik[4021] = 25.911 +il[4021] = 140 +im[4021] = 0 +ij[4021] = 5 +id[4022] = "2990-06-24T15:32:24" +ik[4022] = 38.63 +il[4022] = -121 +im[4022] = 0.078 +ij[4022] = 1 +id[4023] = "2990-06-30T09:04:01" +ik[4023] = -1.639 +il[4023] = 31 +im[4023] = 0.1043 +ij[4023] = 4 +id[4024] = "2990-09-14T23:14:38" +ik[4024] = 28.479 +il[4024] = -157 +im[4024] = 0 +ij[4024] = 6 +id[4025] = "2991-05-07T07:39:38" +ik[4025] = 30.904 +il[4025] = 32 +im[4025] = 0 +ij[4025] = 5 +id[4026] = "2991-08-30T20:27:36" +ik[4026] = 27.472 +il[4026] = 38 +im[4026] = 0 +ij[4026] = 6 +id[4027] = "2991-12-30T20:55:08" +ik[4027] = -1.587 +il[4027] = -20 +im[4027] = 0.0882 +ij[4027] = 2 +id[4028] = "2992-01-09T19:17:28" +ik[4028] = 36.23 +il[4028] = 100 +im[4028] = 0.0945 +ij[4028] = 3 +id[4029] = "2992-03-23T13:02:38" +ik[4029] = 25.742 +il[4029] = -177 +im[4029] = 0 +ij[4029] = 5 +id[4030] = "2992-07-14T06:41:36" +ik[4030] = 27.993 +il[4030] = 46 +im[4030] = 0 +ij[4030] = 6 +id[4031] = "2992-08-05T18:00:25" +ik[4031] = 41.654 +il[4031] = 95 +im[4031] = 0.1194 +ij[4031] = 1 +id[4032] = "2992-08-09T14:12:29" +ik[4032] = -1.852 +il[4032] = -170 +im[4032] = 0.0591 +ij[4032] = 4 +id[4033] = "2993-03-04T08:08:35" +ik[4033] = 31.328 +il[4033] = -34 +im[4033] = 0 +ij[4033] = 5 +id[4034] = "2993-06-28T10:23:39" +ik[4034] = 27.942 +il[4034] = 143 +im[4034] = 0 +ij[4034] = 6 +id[4035] = "2994-01-21T10:33:36" +ik[4035] = 25.629 +il[4035] = -176 +im[4035] = 0 +ij[4035] = 5 +id[4036] = "2994-02-14T11:18:16" +ik[4036] = -1.603 +il[4036] = 43 +im[4036] = 0.0895 +ij[4036] = 2 +id[4037] = "2994-02-18T20:40:24" +ik[4037] = 36.649 +il[4037] = -55 +im[4037] = 0.102 +ij[4037] = 3 +id[4038] = "2994-05-13T18:28:39" +ik[4038] = 27.544 +il[4038] = -173 +im[4038] = 0 +ij[4038] = 6 +id[4039] = "2994-09-09T10:22:17" +ik[4039] = -2.166 +il[4039] = 25 +im[4039] = 0.1391 +ij[4039] = 4 +id[4040] = "2994-09-21T22:27:24" +ik[4040] = 45.427 +il[4040] = -34 +im[4040] = 0.0793 +ij[4040] = 1 +id[4041] = "2994-12-31T02:59:34" +ik[4041] = 31.636 +il[4041] = -18 +im[4041] = 0 +ij[4041] = 5 +id[4042] = "2995-04-26T17:07:35" +ik[4042] = 28.46 +il[4042] = -6 +im[4042] = 0 +ij[4042] = 6 +id[4043] = "2995-11-21T10:16:36" +ik[4043] = 25.573 +il[4043] = 153 +im[4043] = 0 +ij[4043] = 5 +id[4044] = "2996-03-12T10:01:37" +ik[4044] = 27.14 +il[4044] = -87 +im[4044] = 0 +ij[4044] = 6 +id[4045] = "2996-04-10T11:58:24" +ik[4045] = 39.41 +il[4045] = 31 +im[4045] = 0.1253 +ij[4045] = 3 +id[4046] = "2996-04-25T03:10:18" +ik[4046] = -1.814 +il[4046] = -59 +im[4046] = 0.1461 +ij[4046] = 2 +id[4047] = "2996-10-18T13:21:52" +ik[4047] = -2.376 +il[4047] = -145 +im[4047] = 0.1957 +ij[4047] = 4 +id[4048] = "2996-10-27T16:30:34" +ik[4048] = 31.792 +il[4048] = 76 +im[4048] = 0 +ij[4048] = 5 +id[4049] = "2996-11-13T02:33:21" +ik[4049] = 45.607 +il[4049] = -92 +im[4049] = 0.1094 +ij[4049] = 1 +id[4050] = "2997-02-21T16:29:34" +ik[4050] = 29.014 +il[4050] = -51 +im[4050] = 0 +ij[4050] = 6 +id[4051] = "2997-09-20T11:34:30" +ik[4051] = 25.572 +il[4051] = 98 +im[4051] = 0 +ij[4051] = 5 +id[4052] = "2998-01-10T04:48:34" +ik[4052] = 26.783 +il[4052] = -49 +im[4052] = 0 +ij[4052] = 6 +id[4053] = "2998-06-21T02:44:18" +ik[4053] = 45.18 +il[4053] = -47 +im[4053] = 0.0485 +ij[4053] = 3 +id[4054] = "2998-07-22T01:40:33" +ik[4054] = -2.327 +il[4054] = -95 +im[4054] = 0.0591 +ij[4054] = 2 +id[4055] = "2998-08-25T01:13:35" +ik[4055] = 31.776 +il[4055] = -119 +im[4055] = 0 +ij[4055] = 5 +id[4056] = "2998-12-20T08:47:28" +ik[4056] = 29.587 +il[4056] = 8 +im[4056] = 0 +ij[4056] = 6 +id[4057] = "2999-01-01T10:34:46" +ik[4057] = -2.013 +il[4057] = 97 +im[4057] = 0.0292 +ij[4057] = 4 +id[4058] = "2999-01-22T21:08:21" +ik[4058] = 40.794 +il[4058] = 142 +im[4058] = 0.1367 +ij[4058] = 1 +id[4059] = "2999-07-21T13:47:34" +ik[4059] = 25.626 +il[4059] = 29 +im[4059] = 0 +ij[4059] = 5 +id[4060] = "2999-11-10T02:09:36" +ik[4060] = 26.477 +il[4060] = -47 +im[4060] = 0 +ij[4060] = 6 +id[4061] = "3000-06-22T06:09:30" +ik[4061] = 31.584 +il[4061] = 103 +im[4061] = 0 +ij[4061] = 5 +id[4062] = "3000-08-15T13:38:21" +ik[4062] = 47.027 +il[4062] = 160 +im[4062] = 0.0009 +ij[4062] = 3 +id[4063] = "3000-09-11T00:50:48" +ik[4063] = -2.29 +il[4063] = -108 +im[4063] = 0.0744 +ij[4063] = 2 +id[4064] = "3000-10-17T18:56:26" +ik[4064] = 30.151 +il[4064] = 156 +im[4064] = 0 +ij[4064] = 6 + + + +l = 4064; + + +LabelMgr.deleteAllLabels(); + +q = 0; + +while(q < 2) +{ + +au = -1; + +ww = 1; + +j = core.getJDay(); + +oatmo = LandscapeMgr.getFlagAtmosphere(); +oland = LandscapeMgr.getFlagLandscape(); + + + +LandscapeMgr.setFlagAtmosphere(false); +LandscapeMgr.setFlagLandscape(false); + +core.setObserverLocation(long, lat, 20, 1, "", "Mars"); + +core.setDate("1590-10-13T05:11:00", "utc"); + +StelMovementMgr.zoomTo(0.014, 1); + +core.selectObjectByName("Earth", pointer = false); +StelMovementMgr.setFlagTracking(true); + + +core.wait(0.3); + + +txt1 = LabelMgr.labelScreen("Venus and Earth Greatest Elongations and Brilliancies", 300*x, 20*y, false, 20, "#9AAAFF"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("From Mars", 500*x, 50*y, false, 20, "#9AAAFF"); +LabelMgr.setLabelShow(txt1, true); + + + + +txt1 = LabelMgr.labelScreen(id[f].substring(5,7) + "/" + id[f].substring(0,4) + " to " + id[l].substring(5,7) + "/" + id + +[l].substring(0,4), 400*x, 80*y, false, 20, "#9AAAFF"); +LabelMgr.setLabelShow(txt1, true); + + +au = 0; + +txt1 = LabelMgr.labelScreen(lat, 20, 650, false, 10, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(long, 20, 665, false, 10, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +sty = 100; + + +txt1 = LabelMgr.labelScreen("Everything", 680 * x, (sty - 50) *y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Venus Only", 680 * x, (sty) *y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + + + +txt1 = LabelMgr.labelScreen("Earth Only", 680 * x, (sty+50) *y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Greatest Elongations Evenings", 680 * x, (sty+100)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Greatest Brilliancies Evenings", 680 * x, (sty+150)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Greatest Brilliancies Mornings", 680 * x, (sty+200)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Greatest Elongations Mornings", 680 * x, (sty+250)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("All Greatest Elongations", 680 * x, (sty+300)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("All Greatest Brilliancies", 680 * x, (sty+350)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("All Evenings", 680 * x, (sty+400)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("All Mornings", 680 * x, (sty+450)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Longest Earth (>46"+degstring+" Elongation)", 680 * x, (sty+500)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Brightest Earth (< -2.3 Magnitude)", 680 * x, (sty+550)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + + + + +txt1 = LabelMgr.labelScreen("Press + / - to toggle", 380 * x, 650*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press [ for Keypress mode", 380 * x, 670*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press ] for Screen Saver Mode", 380 * x, 690*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + + + +txt1 = LabelMgr.labelScreen("By Qam1 ", 900*x, 10, false, 25, "#A0801D"); +LabelMgr.setLabelShow(txt1, true); + + + + +// Label + + +// Get au + +q = 0; + + +while (q ==0) +{ + + +txt1 = LabelMgr.labelScreen("-->", 630*x, (au*50+sty-50)*y, false, 25, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +core.wait(0.1); + + +d = Math.floor(core.getJDay()); +r = d; + +while (d==r) +{ +r = Math.floor(core.getJDay()); +} + +if (r - d == 1) +{ +au = au + 1; +core.setDate("-1 days"); +if (au > 12) +{ +au = 0; +} +} + + +if (r - d == -1) +{ +au = au - 1; +core.setDate("+1 days"); +if (au < 0 ) +{ +au = 12} +} + +if (r - d == 7) +{ +q = 1; +ss = 1; +} + + +LabelMgr.setLabelShow(txt1, false); + + +if (r - d == -7) +{ +q = 1; +ss = 0; +} + +} // end main screen + + + +txt1 = LabelMgr.labelScreen("-->", 630*x, (au*50+sty-50)*y, false, 25, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); +core.wait(.5); + +LabelMgr.deleteAllLabels(); + +LandscapeMgr.setFlagAtmosphere(oatmo); + + + + + +if (au == 0) +{ +au = 20; +} + + + + + +// Basics + + + +StelMovementMgr.zoomTo(57, 1); + +SolarSystem.setLabelsAmount(20); +StelSkyDrawer.setFlagLuminanceAdaptation(false); +core.selectObjectByName("Earth", pointer = true); +StelMovementMgr.setFlagTracking(true); + + + +LandscapeMgr.setFlagAtmosphere(true); + +LandscapeMgr.setFlagLandscape(true); + +LandscapeMgr.setCurrentLandscapeID("mars"); + +p = 0; + + + +// Label +if (ss == 0) +{ + + +txt1 = LabelMgr.labelScreen("Press + for next event", 700 * x, 400*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press - for previous event", 700*x, 440*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Press [ go back to start date ", 700*x, 460*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press ] go back to Main Menu", 700*x, 480*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +} + +else +{ +txt1 = LabelMgr.labelScreen("Press + - [ or ] for Main Menu ", 700*x, 460*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} + + +txt1 = LabelMgr.labelScreen("By Qam1", 700*x, 500*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + + + + + + + + +// Pick where to start + +core.setDate("now"); +j = core.getJDay(); +km = 1; + +i = 0; + +while (km == 1) +{ +i = i + 1; + + +core.setDate(id[i], "utc"); +jj = core.getJDay(); +if (jj+1 > j) +{ +km = i; +} +} + + +q = 0; +p = 1; +i = i -1; + + + +while (q == 0) +{ + + +// program + + + +i = i + p; + +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} + + + + +if (au == 1) // Venus +{ +ag = 0; +if (ij[i] > 4) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] > 4) +{ +ag = 2; +} +} +} + + +if (au == 2) // Earth +{ +ag = 0; +if (ij[i] < 5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] < 5) +{ +ag = 2; +} +} +} + + + + + +if (au == 3) // GE E +{ +ag = 0; +if (ij[i] == 3 || ij[i] == 5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 3 || ij[i] == 5) +{ +ag = 2; +} +} +} + + +if (au == 4) // GB E +{ +ag = 0; +if (ij[i] == 2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 2) +{ +ag = 2; +} +} +} + +if (au == 5) // GB W +{ +ag = 0; +if (ij[i] == 4) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 4) +{ +ag = 2; +} +} +} + + + + + +if (au == 6) // GE W +{ +ag = 0; +if (ij[i] == 1 || ij[i] == 6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 1 || ij[i] == 6) +{ +ag = 2; +} +} +} + + + + + +if (au == 7) // All GE +{ +ag = 0; +if (ij[i] == 1 || ij[i] == 5 || ij[i] == 3 || ij[i] == 6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 1 || ij[i] == 5 || ij[i] ==3 || ij[i] == 6) +{ +ag = 2; +} +} +} + + + + +if (au == 8) // All GB +{ +ag = 0; +if (ij[i] == 2 || ij[i] == 4) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 2 || ij[i] == 4) +{ +ag = 2; +} +} +} + +if (au == 9) // All evenings +{ +ag = 0; +if (ij[i] == 3 || ij[i] == 2 || ij[i] == 5) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 3 || ij[i] == 2 || ij[i] == 5) +{ +ag = 2; +} +} +} + + + +if (au == 10) // All Mornings +{ +ag = 0; +if (ij[i] == 1 || ij[i] == 4 || ij[i] == 6) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 1 || ij[i] == 4 || ij[i] == 6) +{ +ag = 2; +} +} +} + + + + + +if (au == 11) // Longest Earth +{ +ag = 0; +if (ik[i] > 46) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ik[i] > 46) +{ +ag = 2; +} +} +} + + + + +if (au == 12) // brightest Earth +{ +ag = 0; +if (ik[i] < -2.3) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ik[i] < -2.3) +{ +ag = 2; +} +} +} + + + + + +if (au == 13) +{ +core.stopScript(); +} + + + + + +// #&!@)#& + + + +woes = "E"; + + +if (ij[i] == 1) +{ +woes = "W"; +} + +if (ij[i] == 1) +{ +woes = "W"; +} + +core.setDate(id[i], "utc"); + +core.setObserverLocation(il[i], lat, 20, 0, "", "Mars"); + + + +if (ij[i] > 4) +{ + +cplanet = "Venus"; + + +if (cplanet != lplanet) +{ +core.selectObjectByName("Venus", pointer = true); +StelMovementMgr.setFlagTracking(true); +} + +} +else +{ + +cplanet = "Earth"; + +if (cplanet != lplanet) +{ +core.selectObjectByName("Earth", pointer = true); +StelMovementMgr.setFlagTracking(true); +} + +} + + + + +lplanet = cplanet; + +jd = core.getJDay(); +d = jd - 2451543.5; + + +// Sun + +w = 282.9404 + 0.0000470935 * d; +Me = 356.0470 + 0.9856002585 * d; +e = 0.016709 - 0.000000001151 * d; +wme = w + Me; +ob = 23.439281 - 0.0000003563 * d; +ob = ob * rad; + + + + +if (wme < 0) +{ +while (wme < 0) +{ +wme = wme + 360; +} +} + +if (wme > 360) +{ +while (wme > 360) +{ +wme = wme - 360; +} +} + + + + +EA = Me + (deg) * e * Math.sin(Me*rad) * (1 + e * Math.cos(Me*rad)); +xx = Math.cos(EA*rad) - e; +ysun = Math.sin(EA*rad) * Math.sqrt(1 - e*e); + +r = Math.sqrt(xx*xx + ysun*ysun); +rapp = r; +v = Math.atan2(ysun, xx) * deg; + +Lon = v + w; + +if (Lon < 0) +{ +while (Lon < 0) +{ +Lon = Lon + 360; +} +} + +if (Lon > 360) +{ +while (Lon > 360) +{ +Lon = Lon - 360; +} +} + +xx = r * Math.cos(Lon*rad); +ysun = r * Math.sin(Lon*rad); +z = 0.0; + +xe = xx; +ye = ysun * Math.cos(ob) + 0.0 * Math.sin(ob); +ze = ysun * Math.sin(ob) + 0.0 * Math.cos(ob); + +ra = Math.atan2( ye, xe ) * deg; +dec = Math.atan2( ze, Math.sqrt(xe*xe+ye*ye) )* deg; + + +if (ra<0) +{ +ra = (360+ra); +} + + + + + +// Earth set + +N = 49.5574 + 0.0000211081 * d; +ii = 1.8497 - 0.0000000178 * d; +w = 286.5016 + 0.0000292961 * d; +a = 1.523688; +e = 0.093405 + 0.000000002516 * d; +Me = 18.6021 + 0.5240207766 * d; +pet = 0; +pety = 0; + + + +if (w<0) +{ +while (w >0) +{ +w = w + 360; +} +} + + +if (w>360) +{ +while (w <360) +{ +w = w - 360; +} +} + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + + + +if (N<0) +{ +while (N >0) +{ +N = N + 360; +} +} + +if (N>360) +{ +while (N <360) +{ +N = N - 360; +} +} + +if (ii<0) +{ +while (ii >0) +{ +ii = ii + 360; +} +} + +if (ii>360) +{ +while (ii <360) +{ +ii = ii - 360; +} +} + +ii = ii * rad; + +Merad = Me * rad; +N = N * rad; +E4 = 0; + +E0 = Me + e*(deg) * Math.sin(Merad) * ( 1.0 + e * Math.cos(Merad) ); + +while (E4 == 0) +{ + +E2 = E0 * rad; +E1 = E0 - (E2 - (e * Math.sin(E2)) - (Me* rad)) / ( 1 - e * Math.cos(E2)); + + +if (Math.abs(E1-E0)< 0.000001) +{ +E4 = 1; +} +else +{ +E0 = E1; +} +} + + +E0 = E1 * rad // Might as well use E0 as Radians + +xx = a * (Math.cos(E0) - e); +yy = a * (Math.sqrt(1 - e*e))* Math.sin(E0); + +r = Math.sqrt(xx*xx + yy*yy ); // Distance from sun + +rsun = r; + + +v = Math.atan2(yy, xx ); +v = v * deg; +v = v *rad + w * rad; + + +// The position in space + +pxe = r * ( Math.cos(N) * Math.cos(v) - Math.sin(N) * Math.sin(v) * Math.cos(ii) ); +pye = r * ( Math.sin(N) * Math.cos(v) + Math.cos(N) * Math.sin(v) * Math.cos(ii) ); +pze = r * Math.sin(v) * Math.sin(ii); + + +// Helio Lat and Long + Petrubs + +ra = Math.atan2(pye, pxe ) + pet * rad; +dec = Math.atan2(pze, Math.sqrt(pxe*pxe+pye*pye) ) + pety * rad; + +// convert to earth centered + +xx = r * Math.cos(ra) * Math.cos(dec); +yy = r * Math.sin(ra) * Math.cos(dec); +zz = r * Math.sin(dec); // Distance to sun in AU - Not needed in this script + +gxe = xe + xx; +gye = ysun + yy; +gze = zz; + +// Precession + +xx = gxe; +yy = gye*Math.cos(ob) - gze*Math.sin(ob); +zz = gye*Math.sin(ob) + gze*Math.cos(ob); + + +ra = Math.atan2(yy, xx ) * deg; +dec = Math.atan2(zz, Math.sqrt(xx*xx+yy*yy) )* deg; +r = Math.sqrt( xx*xx + yy*yy + zz*zz ); + +ltravel = r * 499.02; +jlight = ltravel / 86400; +d = d - jlight; + + +lhrs = Math.floor(ltravel / 3600); + +lmin = (ltravel - (lhrs * 3600))/60 + +lsec = (lmin - Math.floor(lmin)) * 60 + +lmin = Math.floor(lmin); +lsec = Math.floor(lsec); + + + +hstring = " hours "; +if (lhrs == 1) +{ +hstring = " hour "; +} + + +mstring = " minutes " +if (lmin == 1) +{ +mstring = " minute "; +} + + +sstring = " seconds " +if (lsec == 1) +{ +sstring = " second "; +} + + + + + + + +if (ra<0) +{ +ra = (360+ra); +} + +// Earth Phase angle + +efv = (rapp*rapp + r*r - rsun*rsun) / (2*rapp*r); +efv = (Math.acos(efv)); + +fv = Math.cos(efv); +fv = (1 + fv)/2; +fv = fv * 100; + +// Earth Mag + +if (ij[i] < 5) +{ +efv = 2/3 * ((1-(efv)/pi) * Math.cos(efv) + (1/pi)*Math.sin(efv)) ; +efv = (rapp * rapp * r * r)/efv; +efv = Math.log(efv) / Math.log(10); +efv = root * efv; +mfv = +0.21 + efv; +efv = -3.88 + efv; +} +else +{ +} + + + + + +elong = (rsun*rsun + r*r - rapp*rapp) / (2*rsun*r); +elong = Math.acos(elong) * deg; + + + + + + +if (ij[i] == 3 || ij[i] == 5) +{ +txt1 = LabelMgr.labelScreen("Greatest Elongation Evening", 700*x, 10*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + +if (ij[i] == 2) +{ +txt1 = LabelMgr.labelScreen("Greatest Brillancy Evening", 700*x, 10*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + + +if (ij[i] == 4) +{ +txt1 = LabelMgr.labelScreen("Greatest Brillancy Morning", 700*x, 10*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + + +if (ij[i] == 1 || ij[i] == 6) +{ +txt1 = LabelMgr.labelScreen("Greatest Elongation Morning", 700*x, 10*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + + + + +if (ij[i] < 5) +{ + + +txt1 = LabelMgr.labelScreen("Light Travel Time: " + lmin + mstring + lsec + sstring, 700*x, 670*y, false, 15, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + +if (ij[i] ==1) +{ + +txt1 = LabelMgr.labelScreen("Elongation: " + ik[i].toFixed(3) + degstring + woes, 700*x, 40*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Magnitude: " + efv.toFixed(3) , 700*x, 100*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +} + + + + + + +else +{ + +if (ij[i] ==3) +{ + +txt1 = LabelMgr.labelScreen("Elongation: " + ik[i].toFixed(3) + degstring + woes, 700*x, 40*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Magnitude: " + efv.toFixed(3), 700*x, 100*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +} + + + + +else + +{ +txt1 = LabelMgr.labelScreen("Elongation: " + elong.toFixed(3) + degstring + woes, 700*x, 40*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Magnitude: " + ik[i].toFixed(3) , 700*x, 100*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + +} + + +txt1 = LabelMgr.labelScreen("Illumination: " + fv.toFixed(3) + "%", 700*x, 70*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + +} +else + +{ +txt1 = LabelMgr.labelScreen("Elongation: " + ik[i].toFixed(2)+degstring, 700*x, 40*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + + + + + +d = Math.floor(core.getJDay()); + +if (ij[i]<5) +{ + +core.wait(wt); + +// Moon elong + + + +txt1 = LabelMgr.labelScreen("Moon Elong: " + im[i] + degstring, 700*x, 130*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Moon Mag: " + mfv.toFixed(3), 700*x, 160*y, false, 25, "#AADDAA"); +LabelMgr.setLabelShow(txt1, true); + + + +if (il[i] > 0) +{ +txt1 = LabelMgr.labelScreen("Viewing Longitude: " + il[i] + "E", 700*x, 190*y, false, 20, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} +else +{ +txt1 = LabelMgr.labelScreen("Viewing Longitude: " + Math.abs(il[i])+"W", 700*x, 190*y, false, 20, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} + + + +} + +else + +{ + +if (il[i] > 0) +{ +txt1 = LabelMgr.labelScreen("Viewing Longitude: " + il[i] + "E", 700*x, 70*y, false, 20, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} +else +{ +txt1 = LabelMgr.labelScreen("Viewing Longitude: " + Math.abs(il[i])+"W", 700*x, 70*y, false, 20, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} + + + +} + + + +core.wait(0.1); + +SunData = core.getObjectPosition("Sun"); + +sunx = SunData["altitude"]; + + + + + +// Learn best times + + + +// Key Press + +d = Math.floor(core.getJDay()); +r = d*biteme; + +biteme = 1; + +pak = 0 + +if (ss ==1) +{ +while (pak < spd) +{ +core.wait(0.25); +pak = pak + 1; + +r = Math.floor(core.getJDay()); + +if (Math.abs(r-d) > 0) +{ +pak = spd + 1; +core.setDate("+100 days") +} +} +r = Math.floor(core.getJDay()) + 1; +} + + + + +while (d == r) +{ +r = Math.floor(core.getJDay()); +} + +LabelMgr.deleteAllLabels(); + + +if (r - d == -1) +{ +p = - 1; +} + +if (r - d == 1) +{ +p = 1; +} + +// Start +if (r - d > 6) +{ +if (id[km].substring(10,11) == "T") +{ +core.setDate(id[km]); +} +else +{ +tt = id[km] + "T12:00:00"; +core.setDate(tt,"local"); + +} +q = 1; +} + + +// Start over +if (r - d < -6) +{ +if (p = -1) +{ +i = km; +} +if (p = 1) +{ +i = km - 1; +} + +} + + + +} +} +core.setDate(id[i], "utc"); + + +txt1 = LabelMgr.labelScreen("Later!!!", 400, 20, false, 75, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); + +core.wait(2); + +LabelMgr.deleteAllLabels(); + + diff -Nru stellarium-0.12.1/scripts/earth_6.ssc stellarium-0.12.4/scripts/earth_6.ssc --- stellarium-0.12.1/scripts/earth_6.ssc 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/scripts/earth_6.ssc 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,14869 @@ +// Author: Qam1 +// Name: Earth and Mars Greatest Elongations from Jupiter +// License: Public Domain +// Version: 5.1-5.1 +// Description: Earth Greatest Elongations from Jupiter 2000-3000 + +// Made on Stellarium 0.12.0 + +long = -73.71 +lat = 0.01; + +spd = 3; // speed for screen saver mode in seconds + + +y = core.getScreenHeight()/768; +x = core.getScreenWidth()/1024; +wt = 0.05; +q = 0; + +pi = 3.14159265358979323846264338327950288419716939937510; +rad = pi/180; +deg = 180/pi; +root = Math.pow(100,0.2); + + +ah = "7777-07-07T07:07:07"; //why o why is this necessary?? + + +id = new Array(length= 4000); +ik = new Array(length= 4000); +ij = new Array(length= 4000); +im = new Array(length= 4000); +il = new Array(length= 4000); + +startdate = core.getJDay(); + +degstring = "\u00B0"; + + +LabelMgr.deleteAllLabels(); + +if (Math.abs(lat) >180) +{ +// Get Latitude +core.setDate("2012-11-01T01:00:00", "local"); +core.wait(wt); +SunData = core.getObjectPosition("HIP 11767"); +lat = SunData["altitude"]; +lat = lat + 0.68111111111; +} + + + +core.setObserverLocation(-73.71, 0.00, 71492000, 0, "", "Jupiter"); + + + +lplanet = "Earth"; + +spd = spd * 4; + +p = 0; +f = 1; + +// Data + +id[1] = "2000-01-17T03:07:29" +ik[1] = 11.417 +il[1] = 41 +im[1] = 0.0158 +ij[1] = 1 +id[2] = "2000-09-02T04:26:06" +ik[2] = 11.603 +il[2] = -70 +im[2] = 0.0197 +ij[2] = 2 +id[3] = "2000-09-09T22:38:29" +ik[3] = 19.199 +il[3] = -171 +im[3] = 0 +ij[3] = 3 +id[4] = "2001-02-20T22:30:34" +ik[4] = 11.259 +il[4] = 3 +im[4] = 0.0281 +ij[4] = 1 +id[5] = "2001-10-07T19:35:28" +ik[5] = 11.203 +il[5] = 49 +im[5] = 0.0145 +ij[5] = 2 +id[6] = "2002-01-10T17:54:40" +ik[6] = 16.042 +il[6] = -141 +im[6] = 0 +ij[6] = 4 +id[7] = "2002-03-27T13:04:30" +ik[7] = 11.052 +il[7] = -68 +im[7] = 0.0255 +ij[7] = 1 +id[8] = "2002-11-09T16:47:25" +ik[8] = 10.799 +il[8] = 37 +im[8] = 0.0124 +ij[8] = 2 +id[9] = "2002-12-21T17:29:02" +ik[9] = 17.787 +il[9] = -15 +im[9] = 0 +ij[9] = 3 +id[10] = "2003-04-29T19:31:00" +ik[10] = 10.869 +il[10] = -55 +im[10] = 0.0281 +ij[10] = 1 +id[11] = "2003-12-10T10:56:12" +ik[11] = 10.508 +il[11] = 76 +im[11] = 0.0278 +ij[11] = 2 +id[12] = "2004-04-02T04:22:39" +ik[12] = 16.975 +il[12] = 83 +im[12] = 0 +ij[12] = 4 +id[13] = "2004-05-31T00:39:44" +ik[13] = 10.758 +il[13] = 153 +im[13] = 0.0189 +ij[13] = 1 +id[14] = "2005-01-08T02:26:44" +ik[14] = 10.389 +il[14] = -2 +im[14] = 0.0213 +ij[14] = 2 +id[15] = "2005-03-15T14:06:25" +ik[15] = 15.603 +il[15] = -102 +im[15] = 0 +ij[15] = 3 +id[16] = "2005-07-01T17:06:51" +ik[16] = 10.744 +il[16] = 101 +im[16] = 0.0162 +ij[16] = 1 +id[17] = "2006-02-06T18:29:05" +ik[17] = 10.458 +il[17] = -97 +im[17] = 0.0088 +ij[17] = 2 +id[18] = "2006-06-26T04:28:50" +ik[18] = 17.939 +il[18] = -131 +im[18] = 0 +ij[18] = 4 +id[19] = "2006-08-02T11:47:36" +ik[19] = 10.829 +il[19] = -31 +im[19] = 0.0024 +ij[19] = 1 +id[20] = "2007-03-09T14:13:29" +ik[20] = 10.705 +il[20] = -120 +im[20] = 0.0146 +ij[20] = 2 +id[21] = "2007-05-23T00:34:33" +ik[21] = 15.056 +il[21] = 66 +im[21] = 0 +ij[21] = 3 +id[22] = "2007-09-03T23:43:09" +ik[22] = 10.996 +il[22] = -69 +im[22] = 0.0029 +ij[22] = 1 +id[23] = "2008-04-10T14:05:34" +ik[23] = 11.089 +il[23] = 133 +im[23] = 0.0135 +ij[23] = 2 +id[24] = "2008-09-23T02:11:54" +ik[24] = 17.836 +il[24] = 72 +im[24] = 0 +ij[24] = 4 +id[25] = "2008-10-06T16:31:26" +ik[25] = 11.203 +il[25] = -72 +im[25] = 0.0045 +ij[25] = 1 +id[26] = "2009-05-16T08:25:52" +ik[26] = 11.507 +il[26] = 135 +im[26] = 0.006 +ij[26] = 2 +id[27] = "2009-08-03T22:43:06" +ik[27] = 16.629 +il[27] = 144 +im[27] = 0 +ij[27] = 3 +id[28] = "2009-11-10T18:27:21" +ik[28] = 11.382 +il[28] = 167 +im[28] = 0.0073 +ij[28] = 1 +id[29] = "2010-06-23T13:03:38" +ik[29] = 11.799 +il[29] = -176 +im[29] = 0.0248 +ij[29] = 2 +id[30] = "2010-12-16T21:43:46" +ik[30] = 11.461 +il[30] = -153 +im[30] = 0.0188 +ij[30] = 1 +id[31] = "2010-12-24T01:24:57" +ik[31] = 16.614 +il[31] = -72 +im[31] = 0 +ij[31] = 4 +id[32] = "2011-08-01T14:27:36" +ik[32] = 11.818 +il[32] = -161 +im[32] = 0.0265 +ij[32] = 2 +id[33] = "2011-11-08T10:15:44" +ik[33] = 18.953 +il[33] = 32 +im[33] = 0 +ij[33] = 3 +id[34] = "2012-01-22T06:29:05" +ik[34] = 11.402 +il[34] = 47 +im[34] = 0.0287 +ij[34] = 1 +id[35] = "2012-09-07T09:58:45" +ik[35] = 11.554 +il[35] = -136 +im[35] = 0.0069 +ij[35] = 2 +id[36] = "2013-02-25T22:20:55" +ik[36] = 11.232 +il[36] = -132 +im[36] = 0.0296 +ij[36] = 1 +id[37] = "2013-03-17T14:01:14" +ik[37] = 15.953 +il[37] = -120 +im[37] = 0 +ij[37] = 4 +id[38] = "2013-10-12T15:07:29" +ik[38] = 11.144 +il[38] = -177 +im[38] = 0.0048 +ij[38] = 2 +id[39] = "2014-02-20T05:43:17" +ik[39] = 18.482 +il[39] = 133 +im[39] = 0 +ij[39] = 3 +id[40] = "2014-04-01T07:32:52" +ik[40] = 11.024 +il[40] = -171 +im[40] = 0.0266 +ij[40] = 1 +id[41] = "2014-11-14T03:02:09" +ik[41] = 10.75 +il[41] = -15 +im[41] = 0.0041 +ij[41] = 2 +id[42] = "2015-05-04T08:52:22" +ik[42] = 10.848 +il[42] = -135 +im[42] = 0.0287 +ij[42] = 1 +id[43] = "2015-06-07T08:39:24" +ik[43] = 16.625 +il[43] = 3 +im[43] = 0 +ij[43] = 4 +id[44] = "2015-12-14T15:03:53" +ik[44] = 10.481 +il[44] = 82 +im[44] = 0.0215 +ij[44] = 2 +id[45] = "2016-05-21T13:56:03" +ik[45] = 16.159 +il[45] = -148 +im[45] = 0 +ij[45] = 3 +id[46] = "2016-06-04T10:43:49" +ik[46] = 10.75 +il[46] = 29 +im[46] = 0.0255 +ij[46] = 1 +id[47] = "2017-01-12T04:44:41" +ik[47] = 10.387 +il[47] = -93 +im[47] = 0.026 +ij[47] = 2 +id[48] = "2017-07-06T02:31:12" +ik[48] = 10.75 +il[48] = -162 +im[48] = 0.0241 +ij[48] = 1 +id[49] = "2017-08-29T08:54:23" +ik[49] = 17.712 +il[49] = -22 +im[49] = 0 +ij[49] = 4 +id[50] = "2018-02-10T23:18:23" +ik[50] = 10.481 +il[50] = -89 +im[50] = 0.0171 +ij[50] = 2 +id[51] = "2018-08-01T08:34:04" +ik[51] = 15 +il[51] = 30 +im[51] = 0 +ij[51] = 3 +id[52] = "2018-08-06T23:22:50" +ik[52] = 10.848 +il[52] = -176 +im[52] = 0.0126 +ij[52] = 1 +id[53] = "2019-03-14T01:41:39" +ik[53] = 10.752 +il[53] = -149 +im[53] = 0.0027 +ij[53] = 2 +id[54] = "2019-09-08T15:32:15" +ik[54] = 11.023 +il[54] = -169 +im[54] = 0.0142 +ij[54] = 1 +id[55] = "2019-11-25T16:10:33" +ik[55] = 18.022 +il[55] = -179 +im[55] = 0 +ij[55] = 4 +id[56] = "2020-04-15T11:05:08" +ik[56] = 11.147 +il[56] = -46 +im[56] = 0.0031 +ij[56] = 2 +id[57] = "2020-10-09T00:03:44" +ik[57] = 15.941 +il[57] = -94 +im[57] = 0 +ij[57] = 3 +id[58] = "2020-10-11T13:38:03" +ik[58] = 11.23 +il[58] = -166 +im[58] = 0.0092 +ij[58] = 1 +id[59] = "2021-05-21T15:03:53" +ik[59] = 11.559 +il[59] = 166 +im[59] = 0.0113 +ij[59] = 2 +id[60] = "2021-11-15T19:58:30" +ik[60] = 11.4 +il[60] = 111 +im[60] = 0.024 +ij[60] = 1 +id[61] = "2022-02-25T04:52:10" +ik[61] = 17.022 +il[61] = -46 +im[61] = 0 +ij[61] = 4 +id[62] = "2022-06-29T01:07:06" +ik[62] = 11.82 +il[62] = -141 +im[62] = 0.032 +ij[62] = 2 +id[63] = "2022-12-22T00:39:44" +ik[63] = 11.461 +il[63] = -61 +im[63] = 0.027 +ij[63] = 1 +id[64] = "2023-01-06T13:12:43" +ik[64] = 18.389 +il[64] = 115 +im[64] = 0 +ij[64] = 3 +id[65] = "2023-08-07T00:15:50" +ik[65] = 11.797 +il[65] = 158 +im[65] = 0.0092 +ij[65] = 2 +id[66] = "2024-01-27T07:16:53" +ik[66] = 11.384 +il[66] = 57 +im[66] = 0.0303 +ij[66] = 1 +id[67] = "2024-05-22T01:22:30" +ik[67] = 16.004 +il[67] = -13 +im[67] = 0 +ij[67] = 4 +id[68] = "2024-09-12T11:07:43" +ik[68] = 11.503 +il[68] = -29 +im[68] = 0.0078 +ij[68] = 2 +id[69] = "2025-03-02T18:15:50" +ik[69] = 11.204 +il[69] = 165 +im[69] = 0.0221 +ij[69] = 1 +id[70] = "2025-04-20T04:52:10" +ik[70] = 18.995 +il[70] = 144 +im[70] = 0 +ij[70] = 3 +id[71] = "2025-10-17T05:51:56" +ik[71] = 11.086 +il[71] = -52 +im[71] = 0.0197 +ij[71] = 2 +id[72] = "2026-04-05T22:03:12" +ik[72] = 10.997 +il[72] = -37 +im[72] = 0.0221 +ij[72] = 1 +id[73] = "2026-08-11T14:56:15" +ik[73] = 16.314 +il[73] = -63 +im[73] = 0 +ij[73] = 4 +id[74] = "2026-11-18T09:32:15" +ik[74] = 10.704 +il[74] = 48 +im[74] = 0.005 +ij[74] = 2 +id[75] = "2027-05-08T19:22:13" +ik[75] = 10.829 +il[75] = 143 +im[75] = 0.0229 +ij[75] = 1 +id[76] = "2027-07-26T09:28:13" +ik[76] = 16.846 +il[76] = 176 +im[76] = 0 +ij[76] = 3 +id[77] = "2027-12-18T17:19:14" +ik[77] = 10.457 +il[77] = -62 +im[77] = 0.0101 +ij[77] = 2 +id[78] = "2028-06-08T19:34:36" +ik[78] = 10.744 +il[78] = 7 +im[78] = 0.0265 +ij[78] = 1 +id[79] = "2028-11-01T20:44:00" +ik[79] = 17.408 +il[79] = -138 +im[79] = 0 +ij[79] = 4 +id[80] = "2029-01-16T06:49:32" +ik[80] = 10.389 +il[80] = 130 +im[80] = 0.0269 +ij[80] = 2 +id[81] = "2029-07-10T12:11:31" +ik[81] = 10.758 +il[81] = 146 +im[81] = 0.0269 +ij[81] = 1 +id[82] = "2029-10-10T08:59:51" +ik[82] = 15.148 +il[82] = 147 +im[82] = 0 +ij[82] = 3 +id[83] = "2030-02-15T05:08:35" +ik[83] = 10.509 +il[83] = 3 +im[83] = 0.0222 +ij[83] = 2 +id[84] = "2030-08-11T11:44:52" +ik[84] = 10.868 +il[84] = 37 +im[84] = 0.0239 +ij[84] = 1 +id[85] = "2031-01-27T16:38:03" +ik[85] = 18.068 +il[85] = -94 +im[85] = 0 +ij[85] = 4 +id[86] = "2031-03-18T14:28:36" +ik[86] = 10.8 +il[86] = 47 +im[86] = 0.0138 +ij[86] = 2 +id[87] = "2031-09-13T07:50:35" +ik[87] = 11.051 +il[87] = -101 +im[87] = 0.0232 +ij[87] = 1 +id[88] = "2031-12-17T01:46:33" +ik[88] = 15.421 +il[88] = -86 +im[88] = 0 +ij[88] = 3 +id[89] = "2032-04-20T08:37:23" +ik[89] = 11.206 +il[89] = -167 +im[89] = 0.0151 +ij[89] = 2 +id[90] = "2032-10-16T09:59:36" +ik[90] = 11.258 +il[90] = 115 +im[90] = 0.0232 +ij[90] = 1 +id[91] = "2033-04-28T13:19:55" +ik[91] = 17.429 +il[91] = -104 +im[91] = 0 +ij[91] = 4 +id[92] = "2033-05-26T20:39:59" +ik[92] = 11.607 +il[92] = 112 +im[92] = 0.0263 +ij[92] = 2 +id[93] = "2033-11-20T19:23:57" +ik[93] = 11.417 +il[93] = -79 +im[93] = 0.0306 +ij[93] = 1 +id[94] = "2034-03-08T02:15:47" +ik[94] = 17.63 +il[94] = -170 +im[94] = 0 +ij[94] = 3 +id[95] = "2034-07-04T10:21:47" +ik[95] = 11.835 +il[95] = 33 +im[95] = 0.0261 +ij[95] = 2 +id[96] = "2034-12-27T00:51:15" +ik[96] = 11.459 +il[96] = 81 +im[96] = 0.0265 +ij[96] = 1 +id[97] = "2035-07-26T22:26:41" +ik[97] = 16.199 +il[97] = -108 +im[97] = 0 +ij[97] = 4 +id[98] = "2035-08-12T06:27:21" +ik[98] = 11.77 +il[98] = 80 +im[98] = 0.0084 +ij[98] = 2 +id[99] = "2036-02-01T05:24:34" +ik[99] = 11.364 +il[99] = -86 +im[99] = 0.0233 +ij[99] = 1 +id[100] = "2036-06-17T09:42:28" +ik[100] = 19.204 +il[100] = 97 +im[100] = 0 +ij[100] = 3 +id[101] = "2036-09-17T09:28:39" +ik[101] = 11.45 +il[101] = -179 +im[101] = 0.0221 +ij[101] = 2 +id[102] = "2037-03-07T12:44:12" +ik[102] = 11.175 +il[102] = 155 +im[102] = 0.0082 +ij[102] = 1 +id[103] = "2037-10-16T04:08:06" +ik[103] = 16.081 +il[103] = -21 +im[103] = 0 +ij[103] = 4 +id[104] = "2037-10-21T19:38:12" +ik[104] = 11.029 +il[104] = 108 +im[104] = 0.0273 +ij[104] = 2 +id[105] = "2038-04-10T12:56:35" +ik[105] = 10.97 +il[105] = 82 +im[105] = 0.013 +ij[105] = 1 +id[106] = "2038-09-27T04:02:47" +ik[106] = 17.598 +il[106] = 114 +im[106] = 0 +ij[106] = 3 +id[107] = "2038-11-22T17:00:40" +ik[107] = 10.661 +il[107] = 76 +im[107] = 0.0156 +ij[107] = 2 +id[108] = "2039-05-13T07:51:27" +ik[108] = 10.812 +il[108] = -11 +im[108] = 0.0107 +ij[108] = 1 +id[109] = "2039-12-22T21:42:02" +ik[109] = 10.436 +il[109] = 78 +im[109] = 0.0031 +ij[109] = 2 +id[110] = "2040-01-06T18:55:17" +ik[110] = 17.062 +il[110] = 90 +im[110] = 0 +ij[110] = 4 +id[111] = "2040-06-13T07:00:02" +ik[111] = 10.739 +il[111] = -108 +im[111] = 0.0228 +ij[111] = 1 +id[112] = "2040-12-18T12:04:01" +ik[112] = 15.488 +il[112] = -42 +im[112] = 0 +ij[112] = 3 +id[113] = "2041-01-20T11:18:23" +ik[113] = 10.394 +il[113] = -98 +im[113] = 0.024 +ij[113] = 2 +id[114] = "2041-07-14T23:47:36" +ik[114] = 10.767 +il[114] = 24 +im[114] = 0.0248 +ij[114] = 1 +id[115] = "2042-02-19T12:30:57" +ik[115] = 10.539 +il[115] = 34 +im[115] = 0.0255 +ij[115] = 2 +id[116] = "2042-04-01T06:42:02" +ik[116] = 17.98 +il[116] = -143 +im[116] = 0 +ij[116] = 4 +id[117] = "2042-08-16T00:31:49" +ik[117] = 10.889 +il[117] = -130 +im[117] = 0.0288 +ij[117] = 1 +id[118] = "2043-02-24T13:10:24" +ik[118] = 15.103 +il[118] = 142 +im[118] = 0 +ij[118] = 3 +id[119] = "2043-03-23T03:11:57" +ik[119] = 10.851 +il[119] = -116 +im[119] = 0.0255 +ij[119] = 2 +id[120] = "2043-09-17T22:41:13" +ik[120] = 11.079 +il[120] = 20 +im[120] = 0.027 +ij[120] = 1 +id[121] = "2044-04-25T04:25:23" +ik[121] = 11.265 +il[121] = 134 +im[121] = 0.0233 +ij[121] = 2 +id[122] = "2044-06-29T12:11:05" +ik[122] = 17.77 +il[122] = -173 +im[122] = 0 +ij[122] = 4 +id[123] = "2044-10-21T03:29:39" +ik[123] = 11.285 +il[123] = 140 +im[123] = 0.0297 +ij[123] = 1 +id[124] = "2045-05-09T15:46:56" +ik[124] = 16.822 +il[124] = -52 +im[124] = 0 +ij[124] = 3 +id[125] = "2045-05-31T23:09:36" +ik[125] = 11.652 +il[125] = 171 +im[125] = 0.03 +ij[125] = 2 +id[126] = "2045-11-25T15:14:32" +ik[126] = 11.431 +il[126] = -139 +im[126] = 0.0286 +ij[126] = 1 +id[127] = "2046-07-09T15:43:46" +ik[127] = 11.845 +il[127] = -12 +im[127] = 0.0085 +ij[127] = 2 +id[128] = "2046-09-28T18:31:32" +ik[128] = 16.523 +il[128] = -18 +im[128] = 0 +ij[128] = 4 +id[129] = "2046-12-31T21:30:31" +ik[129] = 11.454 +il[129] = -6 +im[129] = 0.019 +ij[129] = 1 +id[130] = "2047-08-15T05:54:23" +ik[130] = 19.044 +il[130] = 3 +im[130] = 0 +ij[130] = 3 +id[131] = "2047-08-17T08:48:54" +ik[131] = 11.739 +il[131] = 147 +im[131] = 0.02 +ij[131] = 2 +id[132] = "2048-02-06T00:43:20" +ik[132] = 11.342 +il[132] = -124 +im[132] = 0.0079 +ij[132] = 1 +id[133] = "2048-09-22T04:43:58" +ik[133] = 11.394 +il[133] = 142 +im[133] = 0.0294 +ij[133] = 2 +id[134] = "2048-12-20T14:52:13" +ik[134] = 15.958 +il[134] = 110 +im[134] = 0 +ij[134] = 4 +id[135] = "2049-03-12T05:13:03" +ik[135] = 11.146 +il[135] = -144 +im[135] = 0.0042 +ij[135] = 1 +id[136] = "2049-10-26T07:17:45" +ik[136] = 10.973 +il[136] = -16 +im[136] = 0.0287 +ij[136] = 2 +id[137] = "2049-11-26T18:29:48" +ik[137] = 18.323 +il[137] = 141 +im[137] = 0 +ij[137] = 3 +id[138] = "2050-04-15T02:25:52" +ik[138] = 10.944 +il[138] = -108 +im[138] = 0.0032 +ij[138] = 1 +id[139] = "2050-11-26T22:58:56" +ik[139] = 10.62 +il[139] = 157 +im[139] = 0.0248 +ij[139] = 2 +id[140] = "2051-03-12T18:36:51" +ik[140] = 16.706 +il[140] = -97 +im[140] = 0 +ij[140] = 4 +id[141] = "2051-05-17T19:03:38" +ik[141] = 10.796 +il[141] = -118 +im[141] = 0.0031 +ij[141] = 1 +id[142] = "2051-12-27T00:46:48" +ik[142] = 10.419 +il[142] = -95 +im[142] = 0.0108 +ij[142] = 2 +id[143] = "2052-02-24T21:56:44" +ik[143] = 16.005 +il[143] = -179 +im[143] = 0 +ij[143] = 3 +id[144] = "2052-06-17T16:58:04" +ik[144] = 10.737 +il[144] = -167 +im[144] = 0.0141 +ij[144] = 1 +id[145] = "2053-01-24T14:27:44" +ik[145] = 10.403 +il[145] = 91 +im[145] = 0.0166 +ij[145] = 2 +id[146] = "2053-06-04T07:21:12" +ik[146] = 17.778 +il[146] = 146 +im[146] = 0 +ij[146] = 4 +id[147] = "2053-07-19T09:46:22" +ik[147] = 10.779 +il[147] = -39 +im[147] = 0.0171 +ij[147] = 1 +id[148] = "2054-02-23T18:58:19" +ik[148] = 10.573 +il[148] = 99 +im[148] = 0.0246 +ij[148] = 2 +id[149] = "2054-05-05T18:17:25" +ik[149] = 14.994 +il[149] = 89 +im[149] = 0 +ij[149] = 3 +id[150] = "2054-08-20T12:13:14" +ik[150] = 10.912 +il[150] = 105 +im[150] = 0.0272 +ij[150] = 1 +id[151] = "2055-03-27T16:07:40" +ik[151] = 10.904 +il[151] = 71 +im[151] = 0.0298 +ij[151] = 2 +id[152] = "2055-08-31T20:18:40" +ik[152] = 17.991 +il[152] = 142 +im[152] = 0 +ij[152] = 4 +id[153] = "2055-09-22T13:47:51" +ik[153] = 11.108 +il[153] = 131 +im[153] = 0.0251 +ij[153] = 1 +id[154] = "2056-04-30T02:14:21" +ik[154] = 11.323 +il[154] = 2 +im[154] = 0.0271 +ij[154] = 2 +id[155] = "2056-07-13T23:38:32" +ik[155] = 16.098 +il[155] = -178 +im[155] = 0 +ij[155] = 3 +id[156] = "2056-10-25T23:15:47" +ik[156] = 11.311 +il[156] = 83 +im[156] = 0.028 +ij[156] = 1 +id[157] = "2057-06-06T05:28:10" +ik[157] = 11.694 +il[157] = 92 +im[157] = 0.0234 +ij[157] = 2 +id[158] = "2057-11-30T15:08:21" +ik[158] = 11.443 +il[158] = 14 +im[158] = 0.0163 +ij[158] = 1 +id[159] = "2057-12-01T00:54:43" +ik[159] = 16.923 +il[159] = -151 +im[159] = 0 +ij[159] = 4 +id[160] = "2058-07-15T01:59:22" +ik[160] = 11.849 +il[160] = 124 +im[160] = 0.0145 +ij[160] = 2 +id[161] = "2058-10-13T02:14:21" +ik[161] = 18.548 +il[161] = 114 +im[161] = 0 +ij[161] = 3 +id[162] = "2059-01-05T23:07:43" +ik[162] = 11.446 +il[162] = 83 +im[162] = 0.007 +ij[162] = 1 +id[163] = "2059-08-22T15:55:17" +ik[163] = 11.703 +il[163] = 38 +im[163] = 0.0277 +ij[163] = 2 +id[164] = "2060-02-11T00:45:56" +ik[164] = 11.318 +il[164] = 21 +im[164] = 0.0133 +ij[164] = 1 +id[165] = "2060-02-25T06:07:46" +ik[165] = 15.975 +il[165] = 76 +im[165] = 0 +ij[165] = 4 +id[166] = "2060-09-27T03:36:43" +ik[166] = 11.337 +il[166] = -28 +im[166] = 0.0278 +ij[166] = 2 +id[167] = "2061-01-25T02:58:33" +ik[167] = 18.891 +il[167] = 174 +im[167] = 0 +ij[167] = 3 +id[168] = "2061-03-17T01:12:34" +ik[168] = 11.117 +il[168] = 151 +im[168] = 0.0151 +ij[168] = 1 +id[169] = "2061-10-30T20:45:27" +ik[169] = 10.918 +il[169] = 155 +im[169] = 0.0238 +ij[169] = 2 +id[170] = "2062-04-19T17:21:59" +ik[170] = 10.919 +il[170] = 9 +im[170] = 0.0183 +ij[170] = 1 +id[171] = "2062-05-17T00:29:57" +ik[171] = 16.381 +il[171] = -149 +im[171] = 0 +ij[171] = 4 +id[172] = "2062-12-01T04:47:25" +ik[172] = 10.583 +il[172] = -113 +im[172] = 0.0288 +ij[172] = 2 +id[173] = "2063-05-01T05:00:40" +ik[173] = 16.665 +il[173] = 88 +im[173] = 0 +ij[173] = 3 +id[174] = "2063-05-22T05:23:42" +ik[174] = 10.782 +il[174] = 166 +im[174] = 0.0098 +ij[174] = 1 +id[175] = "2063-12-31T02:00:14" +ik[175] = 10.406 +il[175] = 160 +im[175] = 0.0165 +ij[175] = 2 +id[176] = "2064-06-22T00:18:34" +ik[176] = 10.736 +il[176] = -135 +im[176] = 0.0023 +ij[176] = 1 +id[177] = "2064-08-07T11:56:24" +ik[177] = 17.488 +il[177] = -69 +im[177] = 0 +ij[177] = 4 +id[178] = "2065-01-28T15:02:09" +ik[178] = 10.415 +il[178] = 9 +im[178] = 0.0053 +ij[178] = 2 +id[179] = "2065-07-14T16:14:44" +ik[179] = 15.093 +il[179] = -65 +im[179] = 0 +ij[179] = 3 +id[180] = "2065-07-23T16:42:05" +ik[180] = 10.792 +il[180] = 9 +im[180] = 0.0093 +ij[180] = 1 +id[181] = "2066-02-27T23:11:19" +ik[181] = 10.609 +il[181] = -115 +im[181] = 0.0208 +ij[181] = 2 +id[182] = "2066-08-24T21:40:10" +ik[182] = 10.937 +il[182] = 61 +im[182] = 0.0197 +ij[182] = 1 +id[183] = "2066-11-02T11:12:11" +ik[183] = 18.074 +il[183] = -147 +im[183] = 0 +ij[183] = 4 +id[184] = "2067-04-01T04:16:27" +ik[184] = 10.958 +il[184] = -67 +im[184] = 0.0275 +ij[184] = 2 +id[185] = "2067-09-20T10:43:49" +ik[185] = 15.532 +il[185] = 1 +im[185] = 0 +ij[185] = 3 +id[186] = "2067-09-27T04:20:55" +ik[186] = 11.138 +il[186] = -98 +im[186] = 0.0169 +ij[186] = 1 +id[187] = "2068-05-05T01:01:03" +ik[187] = 11.38 +il[187] = -165 +im[187] = 0.0219 +ij[187] = 2 +id[188] = "2068-10-30T20:02:06" +ik[188] = 11.335 +il[188] = -10 +im[188] = 0.0184 +ij[188] = 1 +id[189] = "2069-02-01T13:22:13" +ik[189] = 17.338 +il[189] = 6 +im[189] = 0 +ij[189] = 4 +id[190] = "2069-06-11T13:53:11" +ik[190] = 11.732 +il[190] = -64 +im[190] = 0.0064 +ij[190] = 2 +id[191] = "2069-12-05T17:01:40" +ik[191] = 11.452 +il[191] = 95 +im[191] = 0.003 +ij[191] = 1 +id[192] = "2069-12-12T09:04:01" +ik[192] = 17.826 +il[192] = 55 +im[192] = 0 +ij[192] = 3 +id[193] = "2070-07-20T14:10:01" +ik[193] = 11.846 +il[193] = -166 +im[193] = 0.0275 +ij[193] = 2 +id[194] = "2071-01-11T02:42:43" +ik[194] = 11.436 +il[194] = 102 +im[194] = 0.0102 +ij[194] = 1 +id[195] = "2071-05-01T13:59:22" +ik[195] = 16.137 +il[195] = -50 +im[195] = 0 +ij[195] = 4 +id[196] = "2071-08-28T00:01:43" +ik[196] = 11.662 +il[196] = -106 +im[196] = 0.0237 +ij[196] = 2 +id[197] = "2072-02-16T02:06:25" +ik[197] = 11.294 +il[197] = 122 +im[197] = 0.0264 +ij[197] = 1 +id[198] = "2072-03-24T18:37:09" +ik[198] = 19.184 +il[198] = 96 +im[198] = 0 +ij[198] = 3 +id[199] = "2072-10-02T02:35:39" +ik[199] = 11.279 +il[199] = 158 +im[199] = 0.018 +ij[199] = 2 +id[200] = "2073-03-21T21:43:46" +ik[200] = 11.088 +il[200] = 66 +im[200] = 0.0243 +ij[200] = 1 +id[201] = "2073-07-21T16:47:34" +ik[201] = 16.128 +il[201] = 142 +im[201] = 0 +ij[201] = 4 +id[202] = "2073-11-04T09:58:45" +ik[202] = 10.864 +il[202] = -25 +im[202] = 0.0129 +ij[202] = 2 +id[203] = "2074-04-24T08:34:48" +ik[203] = 10.895 +il[203] = 119 +im[203] = 0.0275 +ij[203] = 1 +id[204] = "2074-07-03T13:47:08" +ik[204] = 17.407 +il[204] = -128 +im[204] = 0 +ij[204] = 3 +id[205] = "2074-12-05T10:43:06" +ik[205] = 10.548 +il[205] = -29 +im[205] = 0.0276 +ij[205] = 2 +id[206] = "2075-05-26T16:26:15" +ik[206] = 10.769 +il[206] = 64 +im[206] = 0.0182 +ij[206] = 1 +id[207] = "2075-10-12T06:30:05" +ik[207] = 17.147 +il[207] = -69 +im[207] = 0 +ij[207] = 4 +id[208] = "2076-01-04T04:30:43" +ik[208] = 10.396 +il[208] = 7 +im[208] = 0.0221 +ij[208] = 2 +id[209] = "2076-06-26T09:42:02" +ik[209] = 10.738 +il[209] = 180 +im[209] = 0.015 +ij[209] = 1 +id[210] = "2076-09-22T00:28:22" +ik[210] = 15.388 +il[210] = -81 +im[210] = 0 +ij[210] = 3 +id[211] = "2077-02-01T18:32:41" +ik[211] = 10.431 +il[211] = 179 +im[211] = 0.0092 +ij[211] = 2 +id[212] = "2077-07-28T03:09:12" +ik[212] = 10.807 +il[212] = -69 +im[212] = 0.0008 +ij[212] = 1 +id[213] = "2078-01-04T21:56:18" +ik[213] = 18.016 +il[213] = -75 +im[213] = 0 +ij[213] = 4 +id[214] = "2078-03-04T08:00:14" +ik[214] = 10.649 +il[214] = -136 +im[214] = 0.0143 +ij[214] = 2 +id[215] = "2078-08-29T11:44:00" +ik[215] = 10.962 +il[215] = -150 +im[215] = 0.0041 +ij[215] = 1 +id[216] = "2078-11-28T18:01:52" +ik[216] = 15.163 +il[216] = 17 +im[216] = 0 +ij[216] = 3 +id[217] = "2079-04-05T21:52:33" +ik[217] = 11.014 +il[217] = -46 +im[217] = 0.0168 +ij[217] = 2 +id[218] = "2079-10-01T23:39:41" +ik[218] = 11.167 +il[218] = -139 +im[218] = 0.0071 +ij[218] = 1 +id[219] = "2080-04-04T20:17:13" +ik[219] = 17.697 +il[219] = 5 +im[219] = 0 +ij[219] = 4 +id[220] = "2080-05-10T04:48:17" +ik[220] = 11.437 +il[220] = -152 +im[220] = 0.0111 +ij[220] = 2 +id[221] = "2080-11-04T20:21:33" +ik[221] = 11.357 +il[221] = 127 +im[221] = 0.0019 +ij[221] = 1 +id[222] = "2081-02-12T18:12:31" +ik[222] = 17.023 +il[222] = -28 +im[222] = 0 +ij[222] = 3 +id[223] = "2081-06-17T01:05:31" +ik[223] = 11.765 +il[223] = 40 +im[223] = 0.0178 +ij[223] = 2 +id[224] = "2081-12-10T20:06:25" +ik[224] = 11.459 +il[224] = 134 +im[224] = 0.0147 +ij[224] = 1 +id[225] = "2082-07-05T01:15:18" +ik[225] = 16.43 +il[225] = -150 +im[225] = 0 +ij[225] = 4 +id[226] = "2082-07-26T01:46:59" +ik[226] = 11.838 +il[226] = -77 +im[226] = 0.0295 +ij[226] = 2 +id[227] = "2083-01-16T04:55:29" +ik[227] = 11.423 +il[227] = 172 +im[227] = 0.0261 +ij[227] = 1 +id[228] = "2083-05-22T23:27:27" +ik[228] = 19.122 +il[228] = 49 +im[228] = 0 +ij[228] = 3 +id[229] = "2083-09-02T04:45:41" +ik[229] = 11.618 +il[229] = -127 +im[229] = 0.0126 +ij[229] = 2 +id[230] = "2084-02-21T00:04:27" +ik[230] = 11.267 +il[230] = -15 +im[230] = 0.03 +ij[230] = 1 +id[231] = "2084-09-25T08:06:43" +ik[231] = 15.976 +il[231] = 107 +im[231] = 0 +ij[231] = 4 +id[232] = "2084-10-06T20:55:06" +ik[232] = 11.22 +il[232] = 153 +im[232] = 0.0007 +ij[232] = 2 +id[233] = "2085-03-26T14:10:01" +ik[233] = 11.059 +il[233] = 130 +im[233] = 0.0272 +ij[233] = 1 +id[234] = "2085-09-02T17:46:53" +ik[234] = 18.149 +il[234] = 128 +im[234] = 0 +ij[234] = 3 +id[235] = "2085-11-08T19:00:11" +ik[235] = 10.813 +il[235] = -53 +im[235] = 0.0041 +ij[235] = 2 +id[236] = "2086-04-28T20:15:21" +ik[236] = 10.873 +il[236] = -8 +im[236] = 0.0292 +ij[236] = 1 +id[237] = "2086-12-09T13:55:03" +ik[237] = 10.516 +il[237] = 154 +im[237] = 0.0217 +ij[237] = 2 +id[238] = "2086-12-16T04:56:29" +ik[238] = 16.789 +il[238] = 149 +im[238] = 0 +ij[238] = 4 +id[239] = "2087-05-31T01:38:12" +ik[239] = 10.759 +il[239] = 29 +im[239] = 0.025 +ij[239] = 1 +id[240] = "2087-11-29T20:40:16" +ik[240] = 15.863 +il[240] = 129 +im[240] = 0 +ij[240] = 3 +id[241] = "2088-01-08T06:14:06" +ik[241] = 10.389 +il[241] = -116 +im[241] = 0.0259 +ij[241] = 2 +id[242] = "2088-06-30T18:54:00" +ik[242] = 10.741 +il[242] = 145 +im[242] = 0.0237 +ij[242] = 1 +id[243] = "2089-02-05T22:48:17" +ik[243] = 10.45 +il[243] = -36 +im[243] = 0.0181 +ij[243] = 2 +id[244] = "2089-03-09T20:30:37" +ik[244] = 17.837 +il[244] = -71 +im[244] = 0 +ij[244] = 4 +id[245] = "2089-08-01T14:34:48" +ik[245] = 10.823 +il[245] = 173 +im[245] = 0.011 +ij[245] = 1 +id[246] = "2090-02-06T22:04:22" +ik[246] = 15.002 +il[246] = 2 +im[246] = 0 +ij[246] = 3 +id[247] = "2090-03-08T18:25:37" +ik[247] = 10.692 +il[247] = 145 +im[247] = 0.0042 +ij[247] = 2 +id[248] = "2090-09-03T02:55:06" +ik[248] = 10.988 +il[248] = -42 +im[248] = 0.0123 +ij[248] = 1 +id[249] = "2091-04-10T16:52:45" +ik[249] = 11.072 +il[249] = -76 +im[249] = 0.0021 +ij[249] = 2 +id[250] = "2091-06-07T03:56:26" +ik[250] = 17.95 +il[250] = -23 +im[250] = 0 +ij[250] = 4 +id[251] = "2091-10-06T19:08:06" +ik[251] = 11.195 +il[251] = 175 +im[251] = 0.0058 +ij[251] = 1 +id[252] = "2092-04-18T11:39:07" +ik[252] = 16.27 +il[252] = 8 +im[252] = 0 +ij[252] = 3 +id[253] = "2092-05-15T08:33:56" +ik[253] = 11.492 +il[253] = -139 +im[253] = 0.004 +ij[253] = 2 +id[254] = "2092-11-09T19:32:00" +ik[254] = 11.379 +il[254] = -54 +im[254] = 0.0198 +ij[254] = 1 +id[255] = "2093-06-22T10:22:39" +ik[255] = 11.793 +il[255] = -147 +im[255] = 0.0305 +ij[255] = 2 +id[256] = "2093-09-06T11:34:39" +ik[256] = 16.817 +il[256] = -66 +im[256] = 0 +ij[256] = 4 +id[257] = "2093-12-15T20:48:54" +ik[257] = 11.463 +il[257] = -103 +im[257] = 0.0245 +ij[257] = 1 +id[258] = "2094-07-20T11:02:49" +ik[258] = 18.704 +il[258] = 117 +im[258] = 0 +ij[258] = 3 +id[259] = "2094-07-31T10:07:40" +ik[259] = 11.824 +il[259] = 130 +im[259] = 0.018 +ij[259] = 2 +id[260] = "2095-01-21T04:15:36" +ik[260] = 11.408 +il[260] = -14 +im[260] = 0.0311 +ij[260] = 1 +id[261] = "2095-09-07T06:02:44" +ik[261] = 11.57 +il[261] = -26 +im[261] = 0.0011 +ij[261] = 2 +id[262] = "2095-11-30T21:39:44" +ik[262] = 15.956 +il[262] = 135 +im[262] = 0 +ij[262] = 4 +id[263] = "2096-02-25T19:53:11" +ik[263] = 11.24 +il[263] = -74 +im[263] = 0.0254 +ij[263] = 1 +id[264] = "2096-10-11T13:11:42" +ik[264] = 11.162 +il[264] = -141 +im[264] = 0.0169 +ij[264] = 2 +id[265] = "2096-11-01T07:50:52" +ik[265] = 18.769 +il[265] = -42 +im[265] = 0 +ij[265] = 3 +id[266] = "2097-03-31T05:58:16" +ik[266] = 11.031 +il[266] = -144 +im[266] = 0.0235 +ij[266] = 1 +id[267] = "2097-11-13T03:55:17" +ik[267] = 10.764 +il[267] = -78 +im[267] = 0.0055 +ij[267] = 2 +id[268] = "2098-02-19T11:55:06" +ik[268] = 16.454 +il[268] = 58 +im[268] = 0 +ij[268] = 4 +id[269] = "2098-05-03T09:10:13" +ik[269] = 10.852 +il[269] = -177 +im[269] = 0.0244 +ij[269] = 1 +id[270] = "2098-12-13T18:46:04" +ik[270] = 10.488 +il[270] = -83 +im[270] = 0.0094 +ij[270] = 2 +id[271] = "2099-02-03T21:48:31" +ik[271] = 16.489 +il[271] = 100 +im[271] = 0 +ij[271] = 3 +id[272] = "2099-06-04T13:08:06" +ik[272] = 10.75 +il[272] = -89 +im[272] = 0.0263 +ij[272] = 1 +id[273] = "2100-01-12T10:20:03" +ik[273] = 10.386 +il[273] = 34 +im[273] = 0.0259 +ij[273] = 2 +id[274] = "2100-05-14T07:42:05" +ik[274] = 17.566 +il[274] = -179 +im[274] = 0 +ij[274] = 4 +id[275] = "2100-07-06T06:24:46" +ik[275] = 10.746 +il[275] = 26 +im[275] = 0.0272 +ij[275] = 1 +id[276] = "2101-02-11T05:11:19" +ik[276] = 10.473 +il[276] = 32 +im[276] = 0.0233 +ij[276] = 2 +id[277] = "2101-04-19T05:38:15" +ik[277] = 15.048 +il[277] = -140 +im[277] = 0 +ij[277] = 3 +id[278] = "2101-08-07T03:15:33" +ik[278] = 10.841 +il[278] = 15 +im[278] = 0.0227 +ij[278] = 1 +id[279] = "2102-03-14T05:41:25" +ik[279] = 10.737 +il[279] = 36 +im[279] = 0.0118 +ij[279] = 2 +id[280] = "2102-08-09T19:58:56" +ik[280] = 18.067 +il[280] = 6 +im[280] = 0 +ij[280] = 4 +id[281] = "2102-09-08T17:38:49" +ik[281] = 11.015 +il[281] = 84 +im[281] = 0.0218 +ij[281] = 1 +id[282] = "2103-04-16T11:01:40" +ik[282] = 11.13 +il[282] = -74 +im[282] = 0.0116 +ij[282] = 2 +id[283] = "2103-06-26T10:08:58" +ik[283] = 15.658 +il[283] = -77 +im[283] = 0 +ij[283] = 3 +id[284] = "2103-10-12T12:27:30" +ik[284] = 11.224 +il[284] = -154 +im[284] = 0.0195 +ij[284] = 1 +id[285] = "2104-05-21T09:53:34" +ik[285] = 11.544 +il[285] = -38 +im[285] = 0.0211 +ij[285] = 2 +id[286] = "2104-11-08T21:09:47" +ik[286] = 17.239 +il[286] = -165 +im[286] = 0 +ij[286] = 4 +id[287] = "2104-11-15T15:22:36" +ik[287] = 11.398 +il[287] = -114 +im[287] = 0.0289 +ij[287] = 1 +id[288] = "2105-06-28T15:58:53" +ik[288] = 11.815 +il[288] = 157 +im[288] = 0.0306 +ij[288] = 2 +id[289] = "2105-09-18T21:07:55" +ik[289] = 18.019 +il[289] = 89 +im[289] = 0 +ij[289] = 3 +id[290] = "2105-12-21T17:52:56" +ik[290] = 11.464 +il[290] = 156 +im[290] = 0.0281 +ij[290] = 1 +id[291] = "2106-08-06T14:15:21" +ik[291] = 11.805 +il[291] = 130 +im[291] = 0.0011 +ij[291] = 2 +id[292] = "2107-01-27T00:20:18" +ik[292] = 11.39 +il[292] = -80 +im[292] = 0.0273 +ij[292] = 1 +id[293] = "2107-02-04T21:37:09" +ik[293] = 16.083 +il[293] = -65 +im[293] = 0 +ij[293] = 4 +id[294] = "2107-09-13T03:42:54" +ik[294] = 11.52 +il[294] = -154 +im[294] = 0.0167 +ij[294] = 2 +id[295] = "2107-12-31T15:08:55" +ik[295] = 19.141 +il[295] = -177 +im[295] = 0 +ij[295] = 3 +id[296] = "2108-03-02T13:12:34" +ik[296] = 11.212 +il[296] = -43 +im[296] = 0.0129 +ij[296] = 1 +id[297] = "2108-10-17T02:56:06" +ik[297] = 11.104 +il[297] = 23 +im[297] = 0.0262 +ij[297] = 2 +id[298] = "2109-04-05T20:10:53" +ik[298] = 11.003 +il[298] = 0 +im[298] = 0.016 +ij[298] = 1 +id[299] = "2109-04-26T19:37:46" +ik[299] = 16.176 +il[299] = -60 +im[299] = 0 +ij[299] = 4 +id[300] = "2109-11-18T11:11:19" +ik[300] = 10.717 +il[300] = -42 +im[300] = 0.0149 +ij[300] = 2 +id[301] = "2110-04-09T14:29:11" +ik[301] = 17.219 +il[301] = -42 +im[301] = 0 +ij[301] = 3 +id[302] = "2110-05-08T20:43:43" +ik[302] = 10.832 +il[302] = 63 +im[302] = 0.0129 +ij[302] = 1 +id[303] = "2110-12-18T22:16:27" +ik[303] = 10.463 +il[303] = 88 +im[303] = 0.0037 +ij[303] = 2 +id[304] = "2111-06-09T23:10:27" +ik[304] = 10.743 +il[304] = -154 +im[304] = 0.0231 +ij[304] = 1 +id[305] = "2111-07-18T22:42:40" +ik[305] = 17.234 +il[305] = -36 +im[305] = 0 +ij[305] = 4 +id[306] = "2112-01-17T13:04:39" +ik[306] = 10.387 +il[306] = -127 +im[306] = 0.023 +ij[306] = 2 +id[307] = "2112-06-27T19:16:36" +ik[307] = 15.294 +il[307] = 8 +im[307] = 0 +ij[307] = 3 +id[308] = "2112-07-10T16:13:00" +ik[308] = 10.754 +il[308] = -30 +im[308] = 0.0255 +ij[308] = 1 +id[309] = "2113-02-15T10:17:28" +ik[309] = 10.499 +il[309] = 145 +im[309] = 0.0257 +ij[309] = 2 +id[310] = "2113-08-11T14:17:57" +ik[310] = 10.861 +il[310] = -89 +im[310] = 0.0283 +ij[310] = 1 +id[311] = "2113-10-12T01:10:24" +ik[311] = 18.043 +il[311] = -81 +im[311] = 0 +ij[311] = 4 +id[312] = "2114-03-18T16:19:12" +ik[312] = 10.785 +il[312] = -51 +im[312] = 0.0241 +ij[312] = 2 +id[313] = "2114-09-03T06:25:20" +ik[313] = 15.237 +il[313] = -21 +im[313] = 0 +ij[313] = 3 +id[314] = "2114-09-13T07:34:36" +ik[314] = 11.043 +il[314] = -122 +im[314] = 0.0265 +ij[314] = 1 +id[315] = "2115-04-21T05:53:48" +ik[315] = 11.189 +il[315] = -99 +im[315] = 0.0208 +ij[315] = 2 +id[316] = "2115-10-17T06:40:45" +ik[316] = 11.252 +il[316] = -155 +im[316] = 0.0287 +ij[316] = 1 +id[317] = "2116-01-11T01:26:24" +ik[317] = 17.62 +il[317] = -71 +im[317] = 0 +ij[317] = 4 +id[318] = "2116-05-26T13:45:15" +ik[318] = 11.594 +il[318] = -28 +im[318] = 0.03 +ij[318] = 2 +id[319] = "2116-11-19T13:46:42" +ik[319] = 17.222 +il[319] = -116 +im[319] = 0 +ij[319] = 3 +id[320] = "2116-11-20T14:03:50" +ik[320] = 11.415 +il[320] = 83 +im[320] = 0.03 +ij[320] = 1 +id[321] = "2117-07-04T01:33:44" +ik[321] = 11.833 +il[321] = -39 +im[321] = 0.0175 +ij[321] = 2 +id[322] = "2117-12-26T19:13:26" +ik[322] = 11.462 +il[322] = -106 +im[322] = 0.0223 +ij[322] = 1 +id[323] = "2118-04-10T13:39:38" +ik[323] = 16.349 +il[323] = 22 +im[323] = 0 +ij[323] = 4 +id[324] = "2118-08-11T22:57:12" +ik[324] = 11.78 +il[324] = -36 +im[324] = 0.0147 +ij[324] = 2 +id[325] = "2119-02-01T01:08:58" +ik[325] = 11.371 +il[325] = 37 +im[325] = 0.0135 +ij[325] = 1 +id[326] = "2119-02-27T21:43:29" +ik[326] = 19.169 +il[326] = 73 +im[326] = 0 +ij[326] = 3 +id[327] = "2119-09-18T05:30:54" +ik[327] = 11.467 +il[327] = -71 +im[327] = 0.0284 +ij[327] = 2 +id[328] = "2120-03-07T10:45:41" +ik[328] = 11.183 +il[328] = -165 +im[328] = 0.0029 +ij[328] = 1 +id[329] = "2120-07-01T13:06:05" +ik[329] = 15.998 +il[329] = -173 +im[329] = 0 +ij[329] = 4 +id[330] = "2120-10-21T19:29:25" +ik[330] = 11.046 +il[330] = 80 +im[330] = 0.0291 +ij[330] = 2 +id[331] = "2121-04-10T12:54:51" +ik[331] = 10.976 +il[331] = 52 +im[331] = 0.0014 +ij[331] = 1 +id[332] = "2121-06-10T07:45:07" +ik[332] = 17.97 +il[332] = 93 +im[332] = 0 +ij[332] = 3 +id[333] = "2121-11-22T19:24:05" +ik[333] = 10.673 +il[333] = -41 +im[333] = 0.0245 +ij[333] = 2 +id[334] = "2122-05-13T08:42:43" +ik[334] = 10.814 +il[334] = -73 +im[334] = 0.0023 +ij[334] = 1 +id[335] = "2122-09-21T18:04:10" +ik[335] = 16.875 +il[335] = -66 +im[335] = 0 +ij[335] = 4 +id[336] = "2122-12-23T00:50:24" +ik[336] = 10.441 +il[336] = -66 +im[336] = 0.0127 +ij[336] = 2 +id[337] = "2123-06-14T07:33:44" +ik[337] = 10.738 +il[337] = -159 +im[337] = 0.0157 +ij[337] = 1 +id[338] = "2123-09-04T21:29:31" +ik[338] = 15.729 +il[338] = 0 +im[338] = 0 +ij[338] = 3 +id[339] = "2124-01-21T13:38:12" +ik[339] = 10.391 +il[339] = 151 +im[339] = 0.0165 +ij[339] = 2 +id[340] = "2124-07-14T23:07:00" +ik[340] = 10.763 +il[340] = 18 +im[340] = 0.0186 +ij[340] = 1 +id[341] = "2124-12-14T13:20:21" +ik[341] = 17.892 +il[341] = -60 +im[341] = 0 +ij[341] = 4 +id[342] = "2125-02-19T12:54:00" +ik[342] = 10.529 +il[342] = -11 +im[342] = 0.0246 +ij[342] = 2 +id[343] = "2125-08-15T22:30:43" +ik[343] = 10.883 +il[343] = -88 +im[343] = 0.0279 +ij[343] = 1 +id[344] = "2125-11-12T00:15:50" +ik[344] = 15.023 +il[344] = -27 +im[344] = 0 +ij[344] = 3 +id[345] = "2126-03-23T01:17:54" +ik[345] = 10.835 +il[345] = -78 +im[345] = 0.0294 +ij[345] = 2 +id[346] = "2126-09-17T19:54:11" +ik[346] = 11.072 +il[346] = 90 +im[346] = 0.0262 +ij[346] = 1 +id[347] = "2127-03-14T02:20:32" +ik[347] = 17.906 +il[347] = 146 +im[347] = 0 +ij[347] = 4 +id[348] = "2127-04-26T00:45:12" +ik[348] = 11.247 +il[348] = -124 +im[348] = 0.0267 +ij[348] = 2 +id[349] = "2127-10-22T01:00:11" +ik[349] = 11.279 +il[349] = -160 +im[349] = 0.0293 +ij[349] = 1 +id[350] = "2128-01-23T15:01:09" +ik[350] = 16.445 +il[350] = 148 +im[350] = 0 +ij[350] = 3 +id[351] = "2128-05-31T19:01:55" +ik[351] = 11.64 +il[351] = -70 +im[351] = 0.0278 +ij[351] = 2 +id[352] = "2128-11-25T14:06:34" +ik[352] = 11.43 +il[352] = -129 +im[352] = 0.0212 +ij[352] = 1 +id[353] = "2129-06-13T08:51:30" +ik[353] = 16.719 +il[353] = 144 +im[353] = 0 +ij[353] = 4 +id[354] = "2129-07-09T13:01:03" +ik[354] = 11.844 +il[354] = 55 +im[354] = 0.0058 +ij[354] = 2 +id[355] = "2129-12-31T22:23:39" +ik[355] = 11.458 +il[355] = -71 +im[355] = 0.0114 +ij[355] = 1 +id[356] = "2130-04-27T12:07:03" +ik[356] = 18.837 +il[356] = 40 +im[356] = 0 +ij[356] = 3 +id[357] = "2130-08-17T08:56:58" +ik[357] = 11.75 +il[357] = 111 +im[357] = 0.0256 +ij[357] = 2 +id[358] = "2131-02-06T03:33:15" +ik[358] = 11.349 +il[358] = 100 +im[358] = 0.0083 +ij[358] = 1 +id[359] = "2131-09-06T10:34:10" +ik[359] = 15.946 +il[359] = -71 +im[359] = 0 +ij[359] = 4 +id[360] = "2131-09-23T07:48:00" +ik[360] = 11.411 +il[360] = 0 +im[360] = 0.0291 +ij[360] = 2 +id[361] = "2132-03-12T09:10:13" +ik[361] = 11.154 +il[361] = 45 +im[361] = 0.0128 +ij[361] = 1 +id[362] = "2132-08-09T12:41:28" +ik[362] = 18.631 +il[362] = 104 +im[362] = 0 +ij[362] = 3 +id[363] = "2132-10-26T11:57:24" +ik[363] = 10.989 +il[363] = 145 +im[363] = 0.0249 +ij[363] = 2 +id[364] = "2133-04-15T06:05:19" +ik[364] = 10.95 +il[364] = 89 +im[364] = 0.0161 +ij[364] = 1 +id[365] = "2133-11-26T01:39:56" +ik[365] = 16.532 +il[365] = -179 +im[365] = 0 +ij[365] = 4 +id[366] = "2133-11-27T03:41:11" +ik[366] = 10.631 +il[366] = -42 +im[366] = 0.0285 +ij[366] = 2 +id[367] = "2134-05-17T21:17:16" +ik[367] = 10.798 +il[367] = 130 +im[367] = 0.0096 +ij[367] = 1 +id[368] = "2134-11-10T10:21:47" +ik[368] = 16.32 +il[368] = -94 +im[368] = 0 +ij[368] = 3 +id[369] = "2134-12-27T04:18:20" +ik[369] = 10.423 +il[369] = 107 +im[369] = 0.018 +ij[369] = 2 +id[370] = "2135-06-18T17:26:26" +ik[370] = 10.735 +il[370] = 141 +im[370] = 0.0017 +ij[370] = 1 +id[371] = "2136-01-25T16:27:07" +ik[371] = 10.398 +il[371] = -14 +im[371] = 0.0041 +ij[371] = 2 +id[372] = "2136-02-17T19:47:51" +ik[372] = 17.639 +il[372] = 18 +im[372] = 0 +ij[372] = 4 +id[373] = "2136-07-19T08:59:34" +ik[373] = 10.774 +il[373] = -41 +im[373] = 0.0092 +ij[373] = 1 +id[374] = "2137-01-21T07:40:48" +ik[374] = 15.019 +il[374] = -163 +im[374] = 0 +ij[374] = 3 +id[375] = "2137-02-23T19:36:28" +ik[375] = 10.561 +il[375] = 45 +im[375] = 0.0201 +ij[375] = 2 +id[376] = "2137-08-20T11:09:36" +ik[376] = 10.905 +il[376] = 112 +im[376] = 0.0213 +ij[376] = 1 +id[377] = "2138-03-27T15:46:30" +ik[377] = 10.887 +il[377] = 56 +im[377] = 0.0284 +ij[377] = 2 +id[378] = "2138-05-15T17:46:45" +ik[378] = 18.056 +il[378] = -163 +im[378] = 0 +ij[378] = 4 +id[379] = "2138-09-22T13:23:13" +ik[379] = 11.101 +il[379] = 115 +im[379] = 0.0189 +ij[379] = 1 +id[380] = "2139-03-31T05:48:28" +ik[380] = 15.794 +il[380] = -19 +im[380] = 0 +ij[380] = 3 +id[381] = "2139-05-01T01:17:54" +ik[381] = 11.306 +il[381] = 6 +im[381] = 0.0243 +ij[381] = 2 +id[382] = "2139-10-26T23:54:40" +ik[382] = 11.305 +il[382] = 29 +im[382] = 0.0217 +ij[382] = 1 +id[383] = "2140-06-06T04:31:35" +ik[383] = 11.684 +il[383] = 95 +im[383] = 0.0142 +ij[383] = 2 +id[384] = "2140-08-15T07:48:51" +ik[384] = 17.135 +il[384] = -79 +im[384] = 0 +ij[384] = 4 +id[385] = "2140-11-30T16:53:45" +ik[385] = 11.442 +il[385] = -80 +im[385] = 0.0049 +ij[385] = 1 +id[386] = "2141-06-25T23:53:57" +ik[386] = 18.213 +il[386] = -50 +im[386] = 0 +ij[386] = 3 +id[387] = "2141-07-15T01:40:56" +ik[387] = 11.85 +il[387] = 106 +im[387] = 0.0229 +ij[387] = 2 +id[388] = "2142-01-06T01:38:12" +ik[388] = 11.451 +il[388] = -39 +im[388] = 0.0054 +ij[388] = 1 +id[389] = "2142-08-22T16:53:45" +ik[389] = 11.715 +il[389] = -27 +im[389] = 0.0269 +ij[389] = 2 +id[390] = "2142-11-10T21:50:58" +ik[390] = 16.036 +il[390] = 39 +im[390] = 0 +ij[390] = 4 +id[391] = "2143-02-11T03:33:15" +ik[391] = 11.326 +il[391] = -111 +im[391] = 0.0237 +ij[391] = 1 +id[392] = "2143-09-28T05:52:04" +ik[392] = 11.354 +il[392] = -141 +im[392] = 0.0215 +ij[392] = 2 +id[393] = "2143-10-08T08:12:46" +ik[393] = 19.077 +il[393] = -114 +im[393] = 0 +ij[393] = 3 +id[394] = "2144-03-17T03:45:38" +ik[394] = 11.125 +il[394] = 30 +im[394] = 0.0226 +ij[394] = 1 +id[395] = "2144-10-30T23:53:48" +ik[395] = 10.933 +il[395] = 7 +im[395] = 0.0146 +ij[395] = 2 +id[396] = "2145-01-30T11:02:41" +ik[396] = 16.237 +il[396] = 2 +im[396] = 0 +ij[396] = 4 +id[397] = "2145-04-19T19:23:13" +ik[397] = 10.924 +il[397] = -95 +im[397] = 0.0266 +ij[397] = 1 +id[398] = "2145-12-01T08:27:44" +ik[398] = 10.593 +il[398] = 83 +im[398] = 0.0275 +ij[398] = 2 +id[399] = "2146-01-13T17:30:54" +ik[399] = 17.03 +il[399] = -41 +im[399] = 0 +ij[399] = 3 +id[400] = "2146-05-22T07:07:14" +ik[400] = 10.783 +il[400] = 72 +im[400] = 0.0173 +ij[400] = 1 +id[401] = "2146-12-31T06:08:03" +ik[401] = 10.408 +il[401] = -21 +im[401] = 0.0228 +ij[401] = 2 +id[402] = "2147-04-23T09:34:16" +ik[402] = 17.317 +il[402] = -169 +im[402] = 0 +ij[402] = 4 +id[403] = "2147-06-23T02:23:16" +ik[403] = 10.734 +il[403] = 116 +im[403] = 0.0137 +ij[403] = 1 +id[404] = "2148-01-29T19:34:45" +ik[404] = 10.41 +il[404] = 173 +im[404] = 0.01 +ij[404] = 2 +id[405] = "2148-04-01T03:41:19" +ik[405] = 15.217 +il[405] = 114 +im[405] = 0 +ij[405] = 3 +id[406] = "2148-07-23T19:32:00" +ik[406] = 10.786 +il[406] = -124 +im[406] = 0.0021 +ij[406] = 1 +id[407] = "2149-02-28T03:50:58" +ik[407] = 10.597 +il[407] = 45 +im[407] = 0.0139 +ij[407] = 2 +id[408] = "2149-07-17T21:54:34" +ik[408] = 18.064 +il[408] = 148 +im[408] = 0 +ij[408] = 4 +id[409] = "2149-08-25T01:13:26" +ik[409] = 10.929 +il[409] = -99 +im[409] = 0.0068 +ij[409] = 1 +id[410] = "2150-04-01T08:10:53" +ik[410] = 10.942 +il[410] = 121 +im[410] = 0.0193 +ij[410] = 2 +id[411] = "2150-06-07T19:04:48" +ik[411] = 15.324 +il[411] = -69 +im[411] = 0 +ij[411] = 3 +id[412] = "2150-09-27T07:57:38" +ik[412] = 11.13 +il[412] = 101 +im[412] = 0.0087 +ij[412] = 1 +id[413] = "2151-05-06T02:58:42" +ik[413] = 11.365 +il[413] = 94 +im[413] = 0.0152 +ij[413] = 2 +id[414] = "2151-10-17T15:13:06" +ik[414] = 17.532 +il[414] = -99 +im[414] = 0 +ij[414] = 4 +id[415] = "2151-10-31T22:42:14" +ik[415] = 11.33 +il[415] = -138 +im[415] = 0.005 +ij[415] = 1 +id[416] = "2152-06-11T13:22:22" +ik[416] = 11.723 +il[416] = -76 +im[416] = 0.009 +ij[416] = 2 +id[417] = "2152-08-26T02:58:50" +ik[417] = 17.43 +il[417] = -123 +im[417] = 0 +ij[417] = 3 +id[418] = "2152-12-05T18:06:11" +ik[418] = 11.452 +il[418] = 26 +im[418] = 0.0104 +ij[418] = 1 +id[419] = "2153-07-20T11:43:17" +ik[419] = 11.849 +il[419] = -108 +im[419] = 0.0297 +ij[419] = 2 +id[420] = "2154-01-11T02:16:13" +ik[420] = 11.441 +il[420] = 88 +im[420] = 0.0219 +ij[420] = 1 +id[421] = "2154-01-14T16:22:04" +ik[421] = 16.269 +il[421] = 36 +im[421] = 0 +ij[421] = 4 +id[422] = "2154-08-27T21:20:52" +ik[422] = 11.676 +il[422] = -42 +im[422] = 0.0178 +ij[422] = 2 +id[423] = "2154-12-05T12:10:48" +ik[423] = 19.198 +il[423] = -129 +im[423] = 0 +ij[423] = 3 +id[424] = "2155-02-16T00:57:36" +ik[424] = 11.301 +il[424] = 133 +im[424] = 0.0298 +ij[424] = 1 +id[425] = "2155-10-03T01:12:34" +ik[425] = 11.296 +il[425] = 178 +im[425] = 0.0065 +ij[425] = 2 +id[426] = "2156-03-21T20:52:30" +ik[426] = 11.096 +il[426] = 66 +im[426] = 0.0274 +ij[426] = 1 +id[427] = "2156-04-06T02:01:23" +ik[427] = 16.03 +il[427] = -20 +im[427] = 0 +ij[427] = 4 +id[428] = "2156-11-04T10:53:45" +ik[428] = 10.88 +il[428] = -89 +im[428] = 0.0038 +ij[428] = 2 +id[429] = "2157-03-16T23:35:31" +ik[429] = 17.784 +il[429] = -10 +im[429] = 0 +ij[429] = 3 +id[430] = "2157-04-24T09:01:26" +ik[430] = 10.9 +il[430] = 70 +im[430] = 0.0295 +ij[430] = 1 +id[431] = "2157-12-05T14:09:10" +ik[431] = 10.557 +il[431] = 179 +im[431] = 0.0213 +ij[431] = 2 +id[432] = "2158-05-26T18:48:40" +ik[432] = 10.771 +il[432] = -53 +im[432] = 0.0246 +ij[432] = 1 +id[433] = "2158-06-27T09:14:49" +ik[433] = 16.963 +il[433] = 5 +im[433] = 0 +ij[433] = 4 +id[434] = "2159-01-04T10:07:40" +ik[434] = 10.397 +il[434] = 133 +im[434] = 0.0257 +ij[434] = 2 +id[435] = "2159-06-09T22:44:15" +ik[435] = 15.602 +il[435] = -144 +im[435] = 0 +ij[435] = 3 +id[436] = "2159-06-27T13:50:35" +ik[436] = 10.735 +il[436] = 0 +im[436] = 0.0237 +ij[436] = 1 +id[437] = "2160-02-03T01:09:07" +ik[437] = 10.425 +il[437] = -90 +im[437] = 0.0195 +ij[437] = 2 +id[438] = "2160-07-28T08:02:58" +ik[438] = 10.801 +il[438] = 81 +im[438] = 0.0102 +ij[438] = 1 +id[439] = "2160-09-19T16:14:09" +ik[439] = 17.941 +il[439] = -54 +im[439] = 0 +ij[439] = 4 +id[440] = "2161-03-04T13:46:16" +ik[440] = 10.637 +il[440] = -16 +im[440] = 0.004 +ij[440] = 2 +id[441] = "2161-08-16T14:24:34" +ik[441] = 15.057 +il[441] = -128 +im[441] = 0 +ij[441] = 3 +id[442] = "2161-08-29T15:47:22" +ik[442] = 10.954 +il[442] = 32 +im[442] = 0.01 +ij[442] = 1 +id[443] = "2162-04-06T00:41:36" +ik[443] = 10.998 +il[443] = -179 +im[443] = 0.0045 +ij[443] = 2 +id[444] = "2162-10-02T01:10:50" +ik[444] = 11.159 +il[444] = 136 +im[444] = 0.0034 +ij[444] = 1 +id[445] = "2162-12-18T16:38:03" +ik[445] = 17.846 +il[445] = 99 +im[445] = 0 +ij[445] = 4 +id[446] = "2163-05-11T03:01:26" +ik[446] = 11.421 +il[446] = -118 +im[446] = 0.0038 +ij[446] = 2 +id[447] = "2163-10-29T09:41:28" +ik[447] = 16.634 +il[447] = 92 +im[447] = 0 +ij[447] = 3 +id[448] = "2163-11-05T18:38:09" +ik[448] = 11.353 +il[448] = 159 +im[448] = 0.0148 +ij[448] = 1 +id[449] = "2164-06-16T18:50:32" +ik[449] = 11.757 +il[449] = -125 +im[449] = 0.0261 +ij[449] = 2 +id[450] = "2164-12-10T15:37:43" +ik[450] = 11.46 +il[450] = -95 +im[450] = 0.0206 +ij[450] = 1 +id[451] = "2165-03-19T08:41:25" +ik[451] = 16.621 +il[451] = -98 +im[451] = 0 +ij[451] = 4 +id[452] = "2165-07-25T17:28:10" +ik[452] = 11.843 +il[452] = -167 +im[452] = 0.025 +ij[452] = 2 +id[453] = "2166-01-15T23:18:31" +ik[453] = 11.429 +il[453] = -16 +im[453] = 0.0306 +ij[453] = 1 +id[454] = "2166-02-01T11:32:03" +ik[454] = 18.949 +il[454] = 22 +im[454] = 0 +ij[454] = 3 +id[455] = "2166-09-01T21:37:43" +ik[455] = 11.633 +il[455] = 100 +im[455] = 0.0063 +ij[455] = 2 +id[456] = "2167-02-20T19:21:30" +ik[456] = 11.275 +il[456] = 125 +im[456] = 0.028 +ij[456] = 1 +id[457] = "2167-06-11T13:37:46" +ik[457] = 15.942 +il[457] = 79 +im[457] = 0 +ij[457] = 4 +id[458] = "2167-10-07T17:21:59" +ik[458] = 11.238 +il[458] = -109 +im[458] = 0.0125 +ij[458] = 2 +id[459] = "2168-03-26T11:58:16" +ik[459] = 11.066 +il[459] = 178 +im[459] = 0.025 +ij[459] = 1 +id[460] = "2168-05-16T03:51:15" +ik[460] = 18.482 +il[460] = 26 +im[460] = 0 +ij[460] = 3 +id[461] = "2168-11-08T19:48:51" +ik[461] = 10.828 +il[461] = -113 +im[461] = 0.005 +ij[461] = 2 +id[462] = "2169-04-28T21:11:05" +ik[462] = 10.877 +il[462] = -68 +im[462] = 0.0259 +ij[462] = 1 +id[463] = "2169-08-31T10:01:03" +ik[463] = 16.61 +il[463] = 139 +im[463] = 0 +ij[463] = 4 +id[464] = "2169-12-09T18:25:46" +ik[464] = 10.524 +il[464] = -41 +im[464] = 0.0096 +ij[464] = 2 +id[465] = "2170-05-31T05:08:44" +ik[465] = 10.759 +il[465] = -128 +im[465] = 0.0263 +ij[465] = 1 +id[466] = "2170-08-15T20:31:46" +ik[466] = 16.158 +il[466] = 158 +im[466] = 0 +ij[466] = 3 +id[467] = "2171-01-08T12:48:40" +ik[467] = 10.389 +il[467] = -25 +im[467] = 0.0249 +ij[467] = 2 +id[468] = "2171-07-01T23:35:22" +ik[468] = 10.738 +il[468] = -56 +im[468] = 0.0273 +ij[468] = 1 +id[469] = "2171-11-23T18:34:07" +ik[469] = 17.711 +il[469] = 179 +im[469] = 0 +ij[469] = 4 +id[470] = "2172-02-07T05:14:55" +ik[470] = 10.443 +il[470] = 57 +im[470] = 0.0242 +ij[470] = 2 +id[471] = "2172-08-01T18:40:45" +ik[471] = 10.817 +il[471] = -6 +im[471] = 0.0214 +ij[471] = 1 +id[472] = "2172-10-25T20:10:27" +ik[472] = 15 +il[472] = 154 +im[472] = 0 +ij[472] = 3 +id[473] = "2173-03-08T22:28:07" +ik[473] = 10.679 +il[473] = -32 +im[473] = 0.0104 +ij[473] = 2 +id[474] = "2173-09-03T04:46:42" +ik[474] = 10.98 +il[474] = -140 +im[474] = 0.0207 +ij[474] = 1 +id[475] = "2174-02-19T02:08:44" +ik[475] = 18.033 +il[475] = 5 +im[475] = 0 +ij[475] = 4 +id[476] = "2174-04-10T16:54:37" +ik[476] = 11.055 +il[476] = -107 +im[476] = 0.0091 +ij[476] = 2 +id[477] = "2174-10-06T18:06:20" +ik[477] = 11.189 +il[477] = -179 +im[477] = 0.016 +ij[477] = 1 +id[478] = "2175-01-03T07:13:00" +ik[478] = 15.943 +il[478] = -168 +im[478] = 0 +ij[478] = 3 +id[479] = "2175-05-16T04:14:52" +ik[479] = 11.477 +il[479] = -13 +im[479] = 0.0149 +ij[479] = 2 +id[480] = "2175-11-10T16:01:29" +ik[480] = 11.375 +il[480] = 43 +im[480] = 0.0268 +ij[480] = 1 +id[481] = "2176-05-21T09:37:17" +ik[481] = 17.034 +il[481] = -33 +im[481] = 0 +ij[481] = 4 +id[482] = "2176-06-22T03:13:49" +ik[482] = 11.786 +il[482] = 81 +im[482] = 0.0317 +ij[482] = 2 +id[483] = "2176-12-15T16:21:56" +ik[483] = 11.465 +il[483] = 28 +im[483] = 0.0279 +ij[483] = 1 +id[484] = "2177-04-01T14:30:02" +ik[484] = 18.386 +il[484] = -107 +im[484] = 0 +ij[484] = 3 +id[485] = "2177-07-31T03:12:57" +ik[485] = 11.831 +il[485] = -11 +im[485] = 0.0093 +ij[485] = 2 +id[486] = "2178-01-21T00:39:01" +ik[486] = 11.414 +il[486] = 85 +im[486] = 0.0296 +ij[486] = 1 +id[487] = "2178-08-16T04:49:52" +ik[487] = 15.998 +il[487] = 47 +im[487] = 0 +ij[487] = 4 +id[488] = "2178-09-07T02:04:50" +ik[488] = 11.586 +il[488] = 88 +im[488] = 0.011 +ij[488] = 2 +id[489] = "2179-02-25T18:19:35" +ik[489] = 11.248 +il[489] = -48 +im[489] = 0.0166 +ij[489] = 1 +id[490] = "2179-07-15T07:54:37" +ik[490] = 18.992 +il[490] = -142 +im[490] = 0 +ij[490] = 3 +id[491] = "2179-10-12T13:02:55" +ik[491] = 11.179 +il[491] = -165 +im[491] = 0.0251 +ij[491] = 2 +id[492] = "2180-03-31T06:31:58" +ik[492] = 11.038 +il[492] = 165 +im[492] = 0.0176 +ij[492] = 1 +id[493] = "2180-11-04T20:08:52" +ik[493] = 16.299 +il[493] = -67 +im[493] = 0 +ij[493] = 4 +id[494] = "2180-11-13T06:46:56" +ik[494] = 10.778 +il[494] = 146 +im[494] = 0.0149 +ij[494] = 2 +id[495] = "2181-05-03T10:58:13" +ik[495] = 10.856 +il[495] = 87 +im[495] = 0.015 +ij[495] = 1 +id[496] = "2181-10-19T16:40:04" +ik[496] = 16.844 +il[496] = 100 +im[496] = 0 +ij[496] = 3 +id[497] = "2181-12-13T22:52:01" +ik[497] = 10.495 +il[497] = 97 +im[497] = 0.0048 +ij[497] = 2 +id[498] = "2182-06-04T14:52:30" +ik[498] = 10.75 +il[498] = 178 +im[498] = 0.0235 +ij[498] = 1 +id[499] = "2183-01-12T13:56:47" +ik[499] = 10.385 +il[499] = -128 +im[499] = 0.0219 +ij[499] = 2 +id[500] = "2183-01-27T01:52:01" +ik[500] = 17.401 +il[500] = -139 +im[500] = 0 +ij[500] = 4 +id[501] = "2183-07-06T07:01:03" +ik[501] = 10.743 +il[501] = -26 +im[501] = 0.0261 +ij[501] = 1 +id[502] = "2184-01-04T14:25:43" +ik[502] = 15.149 +il[502] = 135 +im[502] = 0 +ij[502] = 3 +id[503] = "2184-02-11T06:58:27" +ik[503] = 10.465 +il[503] = -64 +im[503] = 0.0259 +ij[503] = 2 +id[504] = "2184-08-06T02:17:13" +ik[504] = 10.835 +il[504] = 17 +im[504] = 0.0277 +ij[504] = 1 +id[505] = "2185-03-13T05:00:48" +ik[505] = 10.723 +il[505] = 29 +im[505] = 0.0224 +ij[505] = 2 +id[506] = "2185-04-22T18:01:35" +ik[506] = 18.078 +il[506] = 40 +im[506] = 0 +ij[506] = 4 +id[507] = "2185-09-07T15:26:12" +ik[507] = 11.008 +il[507] = 133 +im[507] = 0.0257 +ij[507] = 1 +id[508] = "2186-03-12T03:28:30" +ik[508] = 15.422 +il[508] = 37 +im[508] = 0 +ij[508] = 3 +id[509] = "2186-04-15T08:10:10" +ik[509] = 11.112 +il[509] = -2 +im[509] = 0.0179 +ij[509] = 2 +id[510] = "2186-10-11T10:07:49" +ik[510] = 11.218 +il[510] = -101 +im[510] = 0.027 +ij[510] = 1 +id[511] = "2187-05-21T06:01:52" +ik[511] = 11.53 +il[511] = 71 +im[511] = 0.0281 +ij[511] = 2 +id[512] = "2187-07-23T16:17:11" +ik[512] = 17.445 +il[512] = -26 +im[512] = 0 +ij[512] = 4 +id[513] = "2187-11-15T14:06:34" +ik[513] = 11.395 +il[513] = -99 +im[513] = 0.0304 +ij[513] = 1 +id[514] = "2188-06-01T06:30:48" +ik[514] = 17.63 +il[514] = -140 +im[514] = 0 +ij[514] = 3 +id[515] = "2188-06-27T13:04:39" +ik[515] = 11.811 +il[515] = -127 +im[515] = 0.0247 +ij[515] = 2 +id[516] = "2188-12-20T18:40:45" +ik[516] = 11.466 +il[516] = 94 +im[516] = 0.0251 +ij[516] = 1 +id[517] = "2189-08-05T14:17:13" +ik[517] = 11.813 +il[517] = 98 +im[517] = 0.0082 +ij[517] = 2 +id[518] = "2189-10-20T08:55:49" +ik[518] = 16.199 +il[518] = 57 +im[518] = 0 +ij[518] = 4 +id[519] = "2190-01-26T03:35:51" +ik[519] = 11.397 +il[519] = 128 +im[519] = 0.0181 +ij[519] = 1 +id[520] = "2190-09-11T21:42:46" +ik[520] = 19.202 +il[520] = -153 +im[520] = 0 +ij[520] = 3 +id[521] = "2190-09-12T07:12:34" +ik[521] = 11.535 +il[521] = 52 +im[521] = 0.0264 +ij[521] = 2 +id[522] = "2191-03-02T18:20:26" +ik[522] = 11.22 +il[522] = 101 +im[522] = 0.0025 +ij[522] = 1 +id[523] = "2191-10-17T08:49:55" +ik[523] = 11.12 +il[523] = 139 +im[523] = 0.0294 +ij[523] = 2 +id[524] = "2192-01-10T16:14:35" +ik[524] = 16.071 +il[524] = 86 +im[524] = 0 +ij[524] = 4 +id[525] = "2192-04-05T01:43:32" +ik[525] = 11.01 +il[525] = 131 +im[525] = 0.0045 +ij[525] = 1 +id[526] = "2192-11-17T17:40:42" +ik[526] = 10.73 +il[526] = 52 +im[526] = 0.0243 +ij[526] = 2 +id[527] = "2192-12-21T15:11:48" +ik[527] = 17.593 +il[527] = -105 +im[527] = 0 +ij[527] = 3 +id[528] = "2193-05-08T01:13:26" +ik[528] = 10.836 +il[528] = -131 +im[528] = 0.0012 +ij[528] = 1 +id[529] = "2193-12-18T03:46:30" +ik[529] = 10.469 +il[529] = -143 +im[529] = 0.0144 +ij[529] = 2 +id[530] = "2194-04-01T23:45:44" +ik[530] = 17.051 +il[530] = 99 +im[530] = 0 +ij[530] = 4 +id[531] = "2194-06-09T01:40:04" +ik[531] = 10.743 +il[531] = 85 +im[531] = 0.0161 +ij[531] = 1 +id[532] = "2195-01-16T16:48:25" +ik[532] = 10.385 +il[532] = 67 +im[532] = 0.0153 +ij[532] = 2 +id[533] = "2195-03-14T15:57:01" +ik[533] = 15.49 +il[533] = 2 +im[533] = 0 +ij[533] = 3 +id[534] = "2195-07-10T16:49:17" +ik[534] = 10.75 +il[534] = -83 +im[534] = 0.0192 +ij[534] = 1 +id[535] = "2196-02-15T12:08:03" +ik[535] = 10.49 +il[535] = 48 +im[535] = 0.0244 +ij[535] = 2 +id[536] = "2196-06-25T07:21:21" +ik[536] = 17.984 +il[536] = 18 +im[536] = 0 +ij[536] = 4 +id[537] = "2196-08-10T13:51:36" +ik[537] = 10.855 +il[537] = -104 +im[537] = 0.0281 +ij[537] = 1 +id[538] = "2197-03-17T16:38:47" +ik[538] = 10.77 +il[538] = -93 +im[538] = 0.029 +ij[538] = 2 +id[539] = "2197-05-20T17:18:23" +ik[539] = 15.104 +il[539] = 177 +im[539] = 0 +ij[539] = 3 +id[540] = "2197-09-12T07:15:18" +ik[540] = 11.036 +il[540] = -142 +im[540] = 0.0267 +ij[540] = 1 +id[541] = "2198-04-20T05:27:18" +ik[541] = 11.171 +il[541] = -114 +im[541] = 0.0256 +ij[541] = 2 +id[542] = "2198-09-23T22:03:12" +ik[542] = 17.782 +il[542] = 14 +im[542] = 0 +ij[542] = 4 +id[543] = "2198-10-16T07:24:57" +ik[543] = 11.246 +il[543] = 147 +im[543] = 0.0297 +ij[543] = 1 +id[544] = "2199-05-26T13:16:10" +ik[544] = 11.581 +il[544] = -42 +im[544] = 0.0299 +ij[544] = 2 +id[545] = "2199-08-04T06:00:51" +ik[545] = 16.829 +il[545] = -23 +im[545] = 0 +ij[545] = 3 +id[546] = "2199-11-20T16:06:48" +ik[546] = 11.413 +il[546] = -22 +im[546] = 0.0247 +ij[546] = 1 +id[547] = "2200-07-04T01:54:11" +ik[547] = 11.83 +il[547] = -82 +im[547] = 0.004 +ij[547] = 2 +id[548] = "2200-12-24T16:14:44" +ik[548] = 16.523 +il[548] = 100 +im[548] = 0 +ij[548] = 4 +id[549] = "2200-12-26T22:34:19" +ik[549] = 11.465 +il[549] = 102 +im[549] = 0.0152 +ij[549] = 1 +id[550] = "2201-08-12T00:56:44" +ik[550] = 11.789 +il[550] = -139 +im[550] = 0.0217 +ij[550] = 2 +id[551] = "2201-11-10T05:23:42" +ik[551] = 19.05 +il[551] = 57 +im[551] = 0 +ij[551] = 3 +id[552] = "2202-02-01T05:26:26" +ik[552] = 11.378 +il[552] = -146 +im[552] = 0.0028 +ij[552] = 1 +id[553] = "2202-09-18T09:10:13" +ik[553] = 11.482 +il[553] = 130 +im[553] = 0.0301 +ij[553] = 2 +id[554] = "2203-03-08T15:14:41" +ik[554] = 11.192 +il[554] = 2 +im[554] = 0.0107 +ij[554] = 1 +id[555] = "2203-03-18T10:28:50" +ik[555] = 15.952 +il[555] = -55 +im[555] = 0 +ij[555] = 4 +id[556] = "2203-10-23T00:15:59" +ik[556] = 11.062 +il[556] = -122 +im[556] = 0.0263 +ij[556] = 2 +id[557] = "2204-02-22T10:41:22" +ik[557] = 18.316 +il[557] = 99 +im[557] = 0 +ij[557] = 3 +id[558] = "2204-04-10T16:59:05" +ik[558] = 10.982 +il[558] = -124 +im[558] = 0.0132 +ij[558] = 1 +id[559] = "2204-11-23T00:39:01" +ik[559] = 10.685 +il[559] = 98 +im[559] = 0.0282 +ij[559] = 2 +id[560] = "2205-05-13T12:08:03" +ik[560] = 10.817 +il[560] = 133 +im[560] = 0.009 +ij[560] = 1 +id[561] = "2205-06-07T01:01:03" +ik[561] = 16.694 +il[561] = -144 +im[561] = 0 +ij[561] = 4 +id[562] = "2205-12-23T06:15:59" +ik[562] = 10.446 +il[562] = 67 +im[562] = 0.0197 +ij[562] = 2 +id[563] = "2206-05-22T02:05:42" +ik[563] = 16.006 +il[563] = -143 +im[563] = 0 +ij[563] = 3 +id[564] = "2206-06-14T10:44:58" +ik[564] = 10.737 +il[564] = 54 +im[564] = 0.0037 +ij[564] = 1 +id[565] = "2207-01-21T19:10:50" +ik[565] = 10.388 +il[565] = -80 +im[565] = 0.0033 +ij[565] = 2 +id[566] = "2207-07-16T02:43:43" +ik[566] = 10.758 +il[566] = -143 +im[566] = 0.0094 +ij[566] = 1 +id[567] = "2207-08-30T08:50:47" +ik[567] = 17.776 +il[567] = -84 +im[567] = 0 +ij[567] = 4 +id[568] = "2208-02-20T18:31:06" +ik[568] = 10.519 +il[568] = 113 +im[568] = 0.0191 +ij[568] = 2 +id[569] = "2208-07-31T00:15:07" +ik[569] = 14.995 +il[569] = 57 +im[569] = 0 +ij[569] = 3 +id[570] = "2208-08-16T02:49:55" +ik[570] = 10.876 +il[570] = 85 +im[570] = 0.0222 +ij[570] = 1 +id[571] = "2209-03-23T06:30:14" +ik[571] = 10.82 +il[571] = 62 +im[571] = 0.0288 +ij[571] = 2 +id[572] = "2209-09-18T00:41:36" +ik[572] = 11.064 +il[572] = -115 +im[572] = 0.0202 +ij[572] = 1 +id[573] = "2209-11-26T08:28:45" +ik[573] = 18.001 +il[573] = -114 +im[573] = 0 +ij[573] = 4 +id[574] = "2210-04-26T04:43:06" +ik[574] = 11.231 +il[574] = 62 +im[574] = 0.0258 +ij[574] = 2 +id[575] = "2210-10-09T15:42:11" +ik[575] = 16.105 +il[575] = 145 +im[575] = 0 +ij[575] = 3 +id[576] = "2210-10-22T05:30:02" +ik[576] = 11.273 +il[576] = 6 +im[576] = 0.0243 +ij[576] = 1 +id[577] = "2211-06-01T20:59:42" +ik[577] = 11.629 +il[577] = -172 +im[577] = 0.0206 +ij[577] = 2 +id[578] = "2211-11-26T17:32:38" +ik[578] = 11.428 +il[578] = 76 +im[578] = 0.009 +ij[578] = 1 +id[579] = "2212-02-26T23:02:41" +ik[579] = 16.926 +il[579] = -48 +im[579] = 0 +ij[579] = 4 +id[580] = "2212-07-09T13:09:07" +ik[580] = 11.843 +il[580] = 20 +im[580] = 0.0167 +ij[580] = 2 +id[581] = "2213-01-01T00:27:30" +ik[581] = 11.462 +il[581] = -177 +im[581] = 0.0029 +ij[581] = 1 +id[582] = "2213-01-08T00:15:15" +ik[582] = 18.558 +il[582] = -139 +im[582] = 0 +ij[582] = 3 +id[583] = "2213-08-17T08:21:41" +ik[583] = 11.76 +il[583] = 102 +im[583] = 0.0281 +ij[583] = 2 +id[584] = "2214-02-06T04:36:54" +ik[584] = 11.357 +il[584] = 30 +im[584] = 0.0203 +ij[584] = 1 +id[585] = "2214-05-23T00:40:53" +ik[585] = 15.97 +il[585] = -51 +im[585] = 0 +ij[585] = 4 +id[586] = "2214-09-23T07:55:55" +ik[586] = 11.428 +il[586] = -35 +im[586] = 0.0248 +ij[586] = 2 +id[587] = "2215-03-13T10:00:46" +ik[587] = 11.162 +il[587] = -19 +im[587] = 0.0205 +ij[587] = 1 +id[588] = "2215-04-22T18:38:09" +ik[588] = 18.886 +il[588] = 151 +im[588] = 0 +ij[588] = 3 +id[589] = "2215-10-27T13:47:08" +ik[589] = 11.005 +il[589] = 48 +im[589] = 0.0161 +ij[589] = 2 +id[590] = "2216-04-15T07:37:20" +ik[590] = 10.956 +il[590] = 2 +im[590] = 0.0256 +ij[590] = 1 +id[591] = "2216-08-11T10:19:20" +ik[591] = 16.37 +il[591] = 40 +im[591] = 0 +ij[591] = 4 +id[592] = "2216-11-27T07:38:21" +ik[592] = 10.642 +il[592] = 144 +im[592] = 0.0271 +ij[592] = 2 +id[593] = "2217-05-18T00:14:15" +ik[593] = 10.801 +il[593] = -7 +im[593] = 0.0172 +ij[593] = 1 +id[594] = "2217-07-26T15:06:54" +ik[594] = 16.661 +il[594] = -93 +im[594] = 0 +ij[594] = 3 +id[595] = "2217-12-27T10:25:32" +ik[595] = 10.427 +il[595] = -149 +im[595] = 0.0238 +ij[595] = 2 +id[596] = "2218-06-18T22:08:41" +ik[596] = 10.734 +il[596] = -60 +im[596] = 0.0129 +ij[596] = 1 +id[597] = "2218-11-02T22:48:34" +ik[597] = 17.484 +il[597] = 82 +im[597] = 0 +ij[597] = 4 +id[598] = "2219-01-26T00:02:44" +ik[598] = 10.395 +il[598] = 42 +im[598] = 0.0113 +ij[598] = 2 +id[599] = "2219-07-20T15:00:34" +ik[599] = 10.769 +il[599] = 70 +im[599] = 0.0003 +ij[599] = 1 +id[600] = "2219-10-10T06:41:45" +ik[600] = 15.091 +il[600] = -44 +im[600] = 0 +ij[600] = 3 +id[601] = "2220-02-25T03:08:29" +ik[601] = 10.551 +il[601] = 101 +im[601] = 0.0125 +ij[601] = 2 +id[602] = "2220-08-20T17:09:44" +ik[602] = 10.898 +il[602] = -135 +im[602] = 0.0087 +ij[602] = 1 +id[603] = "2221-01-28T05:29:19" +ik[603] = 18.08 +il[603] = 95 +im[603] = 0 +ij[603] = 4 +id[604] = "2221-03-27T21:25:20" +ik[604] = 10.872 +il[604] = -179 +im[604] = 0.0212 +ij[604] = 2 +id[605] = "2221-09-22T17:47:45" +ik[605] = 11.093 +il[605] = -75 +im[605] = 0.0106 +ij[605] = 1 +id[606] = "2221-12-16T04:44:15" +ik[606] = 15.537 +il[606] = -107 +im[606] = 0 +ij[606] = 3 +id[607] = "2222-05-01T03:17:25" +ik[607] = 11.29 +il[607] = -97 +im[607] = 0.0185 +ij[607] = 2 +id[608] = "2222-10-27T01:33:01" +ik[608] = 11.299 +il[608] = -61 +im[608] = 0.0101 +ij[608] = 1 +id[609] = "2223-04-30T07:16:19" +ik[609] = 17.345 +il[609] = -98 +im[609] = 0 +ij[609] = 4 +id[610] = "2223-06-07T02:06:34" +ik[610] = 11.673 +il[610] = 152 +im[610] = 0.0015 +ij[610] = 2 +id[611] = "2223-12-01T15:32:24" +ik[611] = 11.442 +il[611] = -62 +im[611] = 0.0057 +ij[611] = 1 +id[612] = "2224-03-08T22:26:32" +ik[612] = 17.832 +il[612] = 115 +im[612] = 0 +ij[612] = 3 +id[613] = "2224-07-14T20:16:22" +ik[613] = 11.85 +il[613] = -89 +im[613] = 0.027 +ij[613] = 2 +id[614] = "2225-01-05T22:28:07" +ik[614] = 11.455 +il[614] = 45 +im[614] = 0.0164 +ij[614] = 1 +id[615] = "2225-07-26T23:15:12" +ik[615] = 16.136 +il[615] = 160 +im[615] = 0 +ij[615] = 4 +id[616] = "2225-08-22T11:22:07" +ik[616] = 11.727 +il[616] = 142 +im[616] = 0.0229 +ij[616] = 2 +id[617] = "2226-02-11T00:23:11" +ik[617] = 11.334 +il[617] = -27 +im[617] = 0.0285 +ij[617] = 1 +id[618] = "2226-06-19T23:28:27" +ik[618] = 19.181 +il[618] = 105 +im[618] = 0 +ij[618] = 3 +id[619] = "2226-09-28T02:52:39" +ik[619] = 11.372 +il[619] = -63 +im[619] = 0.0116 +ij[619] = 2 +id[620] = "2227-03-18T02:14:38" +ik[620] = 11.133 +il[620] = 52 +im[620] = 0.0271 +ij[620] = 1 +id[621] = "2227-10-16T20:23:42" +ik[621] = 16.113 +il[621] = -164 +im[621] = 0 +ij[621] = 4 +id[622] = "2227-11-01T00:43:29" +ik[622] = 10.949 +il[622] = -50 +im[622] = 0.0053 +ij[622] = 2 +id[623] = "2228-04-19T20:34:04" +ik[623] = 10.93 +il[623] = -168 +im[623] = 0.0297 +ij[623] = 1 +id[624] = "2228-09-27T19:15:36" +ik[624] = 17.405 +il[624] = -141 +im[624] = 0 +ij[624] = 3 +id[625] = "2228-12-01T13:02:55" +ik[625] = 10.603 +il[625] = -114 +im[625] = 0.0213 +ij[625] = 2 +id[626] = "2229-05-22T10:59:57" +ik[626] = 10.785 +il[626] = -99 +im[626] = 0.024 +ij[626] = 1 +id[627] = "2229-12-31T13:15:18" +ik[627] = 10.411 +il[627] = 51 +im[627] = 0.0256 +ij[627] = 2 +id[628] = "2230-01-06T15:26:29" +ik[628] = 17.139 +il[628] = 152 +im[628] = 0 +ij[628] = 4 +id[629] = "2230-06-23T08:02:15" +ik[629] = 10.732 +il[629] = -120 +im[629] = 0.0234 +ij[629] = 1 +id[630] = "2230-12-18T13:49:09" +ik[630] = 15.385 +il[630] = -20 +im[630] = 0 +ij[630] = 3 +id[631] = "2231-01-30T03:27:56" +ik[631] = 10.405 +il[631] = -143 +im[631] = 0.0209 +ij[631] = 2 +id[632] = "2231-07-25T01:21:30" +ik[632] = 10.781 +il[632] = -6 +im[632] = 0.0098 +ij[632] = 1 +id[633] = "2232-02-29T10:19:20" +ik[633] = 10.586 +il[633] = 140 +im[633] = 0.0048 +ij[633] = 2 +id[634] = "2232-04-01T13:20:55" +ik[634] = 18.02 +il[634] = -88 +im[634] = 0 +ij[634] = 4 +id[635] = "2232-08-25T05:30:54" +ik[635] = 10.922 +il[635] = 78 +im[635] = 0.0082 +ij[635] = 1 +id[636] = "2233-02-23T08:47:36" +ik[636] = 15.165 +il[636] = 27 +im[636] = 0 +ij[636] = 3 +id[637] = "2233-04-01T11:17:39" +ik[637] = 10.926 +il[637] = -23 +im[637] = 0.0068 +ij[637] = 2 +id[638] = "2233-09-27T09:36:51" +ik[638] = 11.122 +il[638] = 11 +im[638] = 0.0005 +ij[638] = 1 +id[639] = "2234-05-06T01:52:27" +ik[639] = 11.348 +il[639] = 103 +im[639] = 0.0077 +ij[639] = 2 +id[640] = "2234-07-01T09:38:52" +ik[640] = 17.708 +il[640] = 65 +im[640] = 0 +ij[640] = 4 +id[641] = "2234-10-31T21:43:03" +ik[641] = 11.325 +il[641] = -133 +im[641] = 0.01 +ij[641] = 1 +id[642] = "2235-05-11T04:08:58" +ik[642] = 17.028 +il[642] = 156 +im[642] = 0 +ij[642] = 3 +id[643] = "2235-06-12T08:51:47" +ik[643] = 11.713 +il[643] = 56 +im[643] = 0.0205 +ij[643] = 2 +id[644] = "2235-12-06T15:38:35" +ik[644] = 11.452 +il[644] = 84 +im[644] = 0.0174 +ij[644] = 1 +id[645] = "2236-07-20T06:22:10" +ik[645] = 11.851 +il[645] = 55 +im[645] = 0.0284 +ij[645] = 2 +id[646] = "2236-09-29T10:44:24" +ik[646] = 16.434 +il[646] = 51 +im[646] = 0 +ij[646] = 4 +id[647] = "2237-01-11T00:01:52" +ik[647] = 11.446 +il[647] = 140 +im[647] = 0.0292 +ij[647] = 1 +id[648] = "2237-08-17T07:03:21" +ik[648] = 19.12 +il[648] = -42 +im[648] = 0 +ij[648] = 3 +id[649] = "2237-08-27T18:02:44" +ik[649] = 11.689 +il[649] = 50 +im[649] = 0.0111 +ij[649] = 2 +id[650] = "2238-02-16T00:24:54" +ik[650] = 11.309 +il[650] = 122 +im[650] = 0.0293 +ij[650] = 1 +id[651] = "2238-10-03T01:36:28" +ik[651] = 11.314 +il[651] = 132 +im[651] = 0.0091 +ij[651] = 2 +id[652] = "2238-12-21T17:13:37" +ik[652] = 15.966 +il[652] = -39 +im[652] = 0 +ij[652] = 4 +id[653] = "2239-03-22T22:34:19" +ik[653] = 11.103 +il[653] = -26 +im[653] = 0.0258 +ij[653] = 1 +id[654] = "2239-11-05T14:34:56" +ik[654] = 10.895 +il[654] = 107 +im[654] = 0.0053 +ij[654] = 2 +id[655] = "2239-11-29T04:24:57" +ik[655] = 18.144 +il[655] = -72 +im[655] = 0 +ij[655] = 3 +id[656] = "2240-04-24T12:14:15" +ik[656] = 10.905 +il[656] = -77 +im[656] = 0.027 +ij[656] = 1 +id[657] = "2240-12-05T19:40:04" +ik[657] = 10.566 +il[657] = -55 +im[657] = 0.0091 +ij[657] = 2 +id[658] = "2241-03-12T15:19:35" +ik[658] = 16.779 +il[658] = -42 +im[658] = 0 +ij[658] = 4 +id[659] = "2241-05-26T22:23:39" +ik[659] = 10.772 +il[659] = 147 +im[659] = 0.0261 +ij[659] = 1 +id[660] = "2242-01-04T15:35:08" +ik[660] = 10.399 +il[660] = -95 +im[660] = 0.0238 +ij[660] = 2 +id[661] = "2242-02-24T08:02:41" +ik[661] = 15.86 +il[661] = -98 +im[661] = 0 +ij[661] = 3 +id[662] = "2242-06-27T16:25:32" +ik[662] = 10.733 +il[662] = -125 +im[662] = 0.0275 +ij[662] = 1 +id[663] = "2243-02-03T04:58:13" +ik[663] = 10.419 +il[663] = 101 +im[663] = 0.0249 +ij[663] = 2 +id[664] = "2243-06-05T04:24:05" +ik[664] = 17.838 +il[664] = -172 +im[664] = 0 +ij[664] = 4 +id[665] = "2243-07-29T08:55:14" +ik[665] = 10.795 +il[665] = 18 +im[665] = 0.0198 +ij[665] = 1 +id[666] = "2244-03-04T15:03:10" +ik[666] = 10.624 +il[666] = -93 +im[666] = 0.0085 +ij[666] = 2 +id[667] = "2244-05-04T05:18:57" +ik[667] = 15.003 +il[667] = -75 +im[667] = 0 +ij[667] = 3 +id[668] = "2244-08-29T14:56:58" +ik[668] = 10.947 +il[668] = 32 +im[668] = 0.019 +ij[668] = 1 +id[669] = "2245-04-05T23:22:59" +ik[669] = 10.981 +il[669] = -162 +im[669] = 0.0065 +ij[669] = 2 +id[670] = "2245-09-01T09:15:07" +ik[670] = 17.964 +il[670] = -31 +im[670] = 0 +ij[670] = 4 +id[671] = "2245-10-01T23:34:30" +ik[671] = 11.152 +il[671] = 163 +im[671] = 0.0124 +ij[671] = 1 +id[672] = "2246-05-11T00:08:03" +ik[672] = 11.405 +il[672] = -44 +im[672] = 0.0086 +ij[672] = 2 +id[673] = "2246-07-14T17:30:28" +ik[673] = 16.272 +il[673] = -19 +im[673] = 0 +ij[673] = 3 +id[674] = "2246-11-05T17:37:06" +ik[674] = 11.349 +il[674] = 165 +im[674] = 0.024 +ij[674] = 1 +id[675] = "2247-06-17T16:21:04" +ik[675] = 11.749 +il[675] = -65 +im[675] = 0.0306 +ij[675] = 2 +id[676] = "2247-12-02T22:26:49" +ik[676] = 16.825 +il[676] = 85 +im[676] = 0 +ij[676] = 4 +id[677] = "2247-12-11T16:36:02" +ik[677] = 11.46 +il[677] = -157 +im[677] = 0.0265 +ij[677] = 1 +id[678] = "2248-07-25T17:37:06" +ik[678] = 11.847 +il[678] = 157 +im[678] = 0.016 +ij[678] = 2 +id[679] = "2248-10-15T00:20:09" +ik[679] = 18.707 +il[679] = 180 +im[679] = 0 +ij[679] = 3 +id[680] = "2249-01-16T03:03:10" +ik[680] = 11.435 +il[680] = 178 +im[680] = 0.0308 +ij[680] = 1 +id[681] = "2249-09-02T01:36:37" +ik[681] = 11.646 +il[681] = -75 +im[681] = 0.0064 +ij[681] = 2 +id[682] = "2250-02-21T01:40:56" +ik[682] = 11.284 +il[682] = -135 +im[682] = 0.0198 +ij[682] = 1 +id[683] = "2250-02-25T15:11:39" +ik[683] = 15.951 +il[683] = 45 +im[683] = 0 +ij[683] = 4 +id[684] = "2250-10-08T00:34:42" +ik[684] = 11.255 +il[684] = -44 +im[684] = 0.0239 +ij[684] = 2 +id[685] = "2251-01-28T03:23:11" +ik[685] = 18.763 +il[685] = 155 +im[685] = 0 +ij[685] = 3 +id[686] = "2251-03-27T19:35:36" +ik[686] = 11.074 +il[686] = -128 +im[686] = 0.0187 +ij[686] = 1 +id[687] = "2251-11-10T04:26:24" +ik[687] = 10.842 +il[687] = -96 +im[687] = 0.0152 +ij[687] = 2 +id[688] = "2252-04-29T04:20:12" +ik[688] = 10.882 +il[688] = -2 +im[688] = 0.0161 +ij[688] = 1 +id[689] = "2252-05-17T03:19:43" +ik[689] = 16.446 +il[689] = 45 +im[689] = 0 +ij[689] = 4 +id[690] = "2252-12-10T02:31:20" +ik[690] = 10.532 +il[690] = -4 +im[690] = 0.0066 +ij[690] = 2 +id[691] = "2253-05-01T11:12:54" +ik[691] = 16.484 +il[691] = 159 +im[691] = 0 +ij[691] = 3 +id[692] = "2253-05-31T10:28:59" +ik[692] = 10.76 +il[692] = 8 +im[692] = 0.0231 +ij[692] = 1 +id[693] = "2254-01-08T18:58:27" +ik[693] = 10.39 +il[693] = 81 +im[693] = 0.0201 +ij[693] = 2 +id[694] = "2254-07-02T02:34:56" +ik[694] = 10.735 +il[694] = 165 +im[694] = 0.0266 +ij[694] = 1 +id[695] = "2254-08-08T14:16:04" +ik[695] = 17.562 +il[695] = 143 +im[695] = 0 +ij[695] = 4 +id[696] = "2255-02-07T09:11:13" +ik[696] = 10.436 +il[696] = -113 +im[696] = 0.0263 +ij[696] = 2 +id[697] = "2255-07-14T11:54:31" +ik[697] = 15.049 +il[697] = 178 +im[697] = 0 +ij[697] = 3 +id[698] = "2255-08-02T19:50:44" +ik[698] = 10.811 +il[698] = -79 +im[698] = 0.0271 +ij[698] = 1 +id[699] = "2256-03-09T00:20:26" +ik[699] = 10.665 +il[699] = -131 +im[699] = 0.0217 +ij[699] = 2 +id[700] = "2256-09-03T05:17:39" +ik[700] = 10.973 +il[700] = 171 +im[700] = 0.0254 +ij[700] = 1 +id[701] = "2256-11-03T02:44:26" +ik[701] = 18.078 +il[701] = -54 +im[701] = 0 +ij[701] = 4 +id[702] = "2257-04-10T17:29:11" +ik[702] = 11.038 +il[702] = -159 +im[702] = 0.0164 +ij[702] = 2 +id[703] = "2257-09-19T20:40:50" +ik[703] = 15.661 +il[703] = 86 +im[703] = 0 +ij[703] = 3 +id[704] = "2257-10-06T19:12:43" +ik[704] = 11.181 +il[704] = 110 +im[704] = 0.0252 +ij[704] = 1 +id[705] = "2258-05-16T04:31:43" +ik[705] = 11.462 +il[705] = -56 +im[705] = 0.025 +ij[705] = 2 +id[706] = "2258-11-10T18:32:49" +ik[706] = 11.371 +il[706] = -79 +im[706] = 0.0301 +ij[706] = 1 +id[707] = "2259-02-03T17:00:40" +ik[707] = 17.244 +il[707] = 21 +im[707] = 0 +ij[707] = 4 +id[708] = "2259-06-23T04:20:12" +ik[708] = 11.78 +il[708] = 9 +im[708] = 0.0289 +ij[708] = 2 +id[709] = "2259-12-14T21:27:47" +ik[709] = 18.032 +il[709] = 112 +im[709] = 0 +ij[709] = 3 +id[710] = "2259-12-16T20:35:48" +ik[710] = 11.466 +il[710] = -156 +im[710] = 0.0268 +ij[710] = 1 +id[711] = "2260-07-31T06:12:31" +ik[711] = 11.836 +il[711] = -150 +im[711] = 0.0028 +ij[711] = 2 +id[712] = "2261-01-21T06:20:26" +ik[712] = 11.42 +il[712] = -151 +im[712] = 0.0222 +ij[712] = 1 +id[713] = "2261-05-02T01:46:59" +ik[713] = 16.079 +il[713] = -180 +im[713] = 0 +ij[713] = 4 +id[714] = "2261-09-07T07:14:26" +ik[714] = 11.6 +il[714] = -129 +im[714] = 0.023 +ij[714] = 2 +id[715] = "2262-02-26T00:50:32" +ik[715] = 11.257 +il[715] = 45 +im[715] = 0.0045 +ij[715] = 1 +id[716] = "2262-03-27T20:39:59" +ik[716] = 19.139 +il[716] = 18 +im[716] = 0 +ij[716] = 3 +id[717] = "2262-10-12T19:44:32" +ik[717] = 11.196 +il[717] = -76 +im[717] = 0.0295 +ij[717] = 2 +id[718] = "2263-04-01T12:59:28" +ik[718] = 11.045 +il[718] = -100 +im[718] = 0.0066 +ij[718] = 1 +id[719] = "2263-07-22T16:42:57" +ik[719] = 16.17 +il[719] = 81 +im[719] = 0 +ij[719] = 4 +id[720] = "2263-11-14T14:03:59" +ik[720] = 10.791 +il[720] = -146 +im[720] = 0.024 +ij[720] = 2 +id[721] = "2264-05-03T16:44:06" +ik[721] = 10.86 +il[721] = -152 +im[721] = 0.0029 +ij[721] = 1 +id[722] = "2264-07-04T07:30:08" +ik[722] = 17.211 +il[722] = -114 +im[722] = 0 +ij[722] = 3 +id[723] = "2264-12-14T06:09:56" +ik[723] = 10.502 +il[723] = 162 +im[723] = 0.016 +ij[723] = 2 +id[724] = "2265-06-04T20:00:23" +ik[724] = 10.751 +il[724] = -36 +im[724] = 0.0165 +ij[724] = 1 +id[725] = "2265-10-12T06:49:32" +ik[725] = 17.226 +il[725] = -145 +im[725] = 0 +ij[725] = 4 +id[726] = "2266-01-12T21:01:26" +ik[726] = 10.385 +il[726] = -55 +im[726] = 0.0134 +ij[726] = 2 +id[727] = "2266-07-06T12:02:52" +ik[727] = 10.74 +il[727] = 121 +im[727] = 0.0197 +ij[727] = 1 +id[728] = "2266-09-22T03:09:12" +ik[728] = 15.294 +il[728] = -93 +im[728] = 0 +ij[728] = 3 +id[729] = "2267-02-11T13:56:55" +ik[729] = 10.457 +il[729] = 13 +im[729] = 0.0239 +ij[729] = 2 +id[730] = "2267-08-07T07:47:08" +ik[730] = 10.829 +il[730] = 147 +im[730] = 0.0279 +ij[730] = 1 +id[731] = "2268-01-06T10:27:59" +ik[731] = 18.049 +il[731] = 127 +im[731] = 0 +ij[731] = 4 +id[732] = "2268-03-13T11:45:10" +ik[732] = 10.709 +il[732] = 115 +im[732] = 0.0287 +ij[732] = 2 +id[733] = "2268-09-07T21:32:24" +ik[733] = 11 +il[733] = -119 +im[733] = 0.027 +ij[733] = 1 +id[734] = "2268-11-27T20:01:14" +ik[734] = 15.239 +il[734] = 31 +im[734] = 0 +ij[734] = 3 +id[735] = "2269-04-15T14:09:18" +ik[735] = 11.096 +il[735] = 111 +im[735] = 0.0243 +ij[735] = 2 +id[736] = "2269-10-11T16:24:40" +ik[736] = 11.21 +il[736] = 1 +im[736] = 0.0297 +ij[736] = 1 +id[737] = "2270-04-07T00:02:44" +ik[737] = 17.625 +il[737] = 15 +im[737] = 0 +ij[737] = 4 +id[738] = "2270-05-21T10:33:27" +ik[738] = 11.516 +il[738] = -123 +im[738] = 0.0306 +ij[738] = 2 +id[739] = "2270-11-15T19:52:27" +ik[739] = 11.391 +il[739] = 22 +im[739] = 0.0271 +ij[739] = 1 +id[740] = "2271-02-14T15:12:48" +ik[740] = 17.236 +il[740] = -133 +im[740] = 0 +ij[740] = 3 +id[741] = "2271-06-28T16:04:13" +ik[741] = 11.806 +il[741] = 94 +im[741] = 0.0129 +ij[741] = 2 +id[742] = "2271-12-21T23:26:35" +ik[742] = 11.468 +il[742] = -110 +im[742] = 0.0187 +ij[742] = 1 +id[743] = "2272-07-05T17:56:32" +ik[743] = 16.346 +il[743] = -98 +im[743] = 0 +ij[743] = 4 +id[744] = "2272-08-05T16:21:04" +ik[744] = 11.82 +il[744] = -8 +im[744] = 0.0164 +ij[744] = 2 +id[745] = "2273-01-26T07:22:22" +ik[745] = 11.404 +il[745] = -39 +im[745] = 0.0041 +ij[745] = 1 +id[746] = "2273-05-25T01:53:19" +ik[746] = 19.174 +il[746] = -42 +im[746] = 0 +ij[746] = 3 +id[747] = "2273-09-12T09:34:16" +ik[747] = 11.551 +il[747] = -65 +im[747] = 0.0303 +ij[747] = 2 +id[748] = "2274-03-02T21:35:08" +ik[748] = 11.229 +il[748] = -48 +im[748] = 0.0081 +ij[748] = 1 +id[749] = "2274-09-26T10:28:59" +ik[749] = 15.992 +il[749] = -43 +im[749] = 0 +ij[749] = 4 +id[750] = "2274-10-17T12:18:43" +ik[750] = 11.137 +il[750] = -18 +im[750] = 0.0276 +ij[750] = 2 +id[751] = "2275-04-06T05:05:16" +ik[751] = 11.017 +il[751] = -24 +im[751] = 0.0108 +ij[751] = 1 +id[752] = "2275-09-05T03:17:25" +ik[752] = 17.961 +il[752] = -70 +im[752] = 0 +ij[752] = 3 +id[753] = "2275-11-18T22:52:01" +ik[753] = 10.743 +il[753] = -170 +im[753] = 0.0279 +ij[753] = 2 +id[754] = "2276-05-08T05:28:19" +ik[754] = 10.84 +il[754] = 45 +im[754] = 0.0091 +ij[754] = 1 +id[755] = "2276-12-16T08:56:58" +ik[755] = 16.868 +il[755] = -60 +im[755] = 0 +ij[755] = 4 +id[756] = "2276-12-18T10:50:18" +ik[756] = 10.475 +il[756] = -72 +im[756] = 0.0215 +ij[756] = 2 +id[757] = "2277-06-09T07:23:22" +ik[757] = 10.743 +il[757] = -153 +im[757] = 0.004 +ij[757] = 1 +id[758] = "2277-11-29T14:03:59" +ik[758] = 15.723 +il[758] = -56 +im[758] = 0 +ij[758] = 3 +id[759] = "2278-01-17T01:24:14" +ik[759] = 10.384 +il[759] = 85 +im[759] = 0.002 +ij[759] = 2 +id[760] = "2278-07-11T00:00:08" +ik[760] = 10.746 +il[760] = -14 +im[760] = 0.0089 +ij[760] = 1 +id[761] = "2279-02-15T21:22:45" +ik[761] = 10.482 +il[761] = 42 +im[761] = 0.0176 +ij[761] = 2 +id[762] = "2279-03-11T09:01:26" +ik[762] = 17.894 +il[762] = 131 +im[762] = 0 +ij[762] = 4 +id[763] = "2279-08-11T21:44:47" +ik[763] = 10.848 +il[763] = -58 +im[763] = 0.0227 +ij[763] = 1 +id[764] = "2280-02-06T21:46:39" +ik[764] = 15.023 +il[764] = 99 +im[764] = 0 +ij[764] = 3 +id[765] = "2280-03-18T01:00:20" +ik[765] = 10.756 +il[765] = -67 +im[765] = 0.029 +ij[765] = 2 +id[766] = "2280-09-12T14:26:09" +ik[766] = 11.027 +il[766] = -72 +im[766] = 0.0213 +ij[766] = 1 +id[767] = "2281-04-20T11:02:41" +ik[767] = 11.155 +il[767] = 13 +im[767] = 0.0265 +ij[767] = 2 +id[768] = "2281-06-08T04:26:24" +ik[768] = 17.91 +il[768] = 105 +im[768] = 0 +ij[768] = 4 +id[769] = "2281-10-16T12:24:54" +ik[769] = 11.239 +il[769] = -65 +im[769] = 0.026 +ij[769] = 1 +id[770] = "2282-04-19T14:53:31" +ik[770] = 16.457 +il[770] = -172 +im[770] = 0 +ij[770] = 3 +id[771] = "2282-05-26T14:54:23" +ik[771] = 11.568 +il[771] = -131 +im[771] = 0.0253 +ij[771] = 2 +id[772] = "2282-11-20T18:20:26" +ik[772] = 11.41 +il[772] = -133 +im[772] = 0.0141 +ij[772] = 1 +id[773] = "2283-07-04T00:04:36" +ik[773] = 11.826 +il[773] = -46 +im[773] = 0.0085 +ij[773] = 2 +id[774] = "2283-09-08T07:05:39" +ik[774] = 16.72 +il[774] = -116 +im[774] = 0 +ij[774] = 4 +id[775] = "2283-12-26T22:30:51" +ik[775] = 11.468 +il[775] = 73 +im[775] = 0.0066 +ij[775] = 1 +id[776] = "2284-07-22T06:09:56" +ik[776] = 18.842 +il[776] = -69 +im[776] = 0 +ij[776] = 3 +id[777] = "2284-08-10T21:53:42" +ik[777] = 11.798 +il[777] = -59 +im[777] = 0.0268 +ij[777] = 2 +id[778] = "2285-01-31T04:33:27" +ik[778] = 11.385 +il[778] = -148 +im[778] = 0.0159 +ij[778] = 1 +id[779] = "2285-09-17T07:34:45" +ik[779] = 11.499 +il[779] = 157 +im[779] = 0.0276 +ij[779] = 2 +id[780] = "2285-11-30T23:40:50" +ik[780] = 15.939 +il[780] = -2 +im[780] = 0 +ij[780] = 4 +id[781] = "2286-03-07T15:11:13" +ik[781] = 11.2 +il[781] = -26 +im[781] = 0.0182 +ij[781] = 1 +id[782] = "2286-10-22T01:47:08" +ik[782] = 11.079 +il[782] = 153 +im[782] = 0.0183 +ij[782] = 2 +id[783] = "2286-11-04T00:05:36" +ik[783] = 18.626 +il[783] = -124 +im[783] = 0 +ij[783] = 3 +id[784] = "2287-04-10T19:02:03" +ik[784] = 10.989 +il[784] = 129 +im[784] = 0.0241 +ij[784] = 1 +id[785] = "2287-11-23T05:41:34" +ik[785] = 10.697 +il[785] = -115 +im[785] = 0.0267 +ij[785] = 2 +id[786] = "2288-02-20T12:27:38" +ik[786] = 16.521 +il[786] = -25 +im[786] = 0 +ij[786] = 4 +id[787] = "2288-05-12T16:45:50" +ik[787] = 10.821 +il[787] = -66 +im[787] = 0.0169 +ij[787] = 1 +id[788] = "2288-12-22T14:07:35" +ik[788] = 10.451 +il[788] = 111 +im[788] = 0.0248 +ij[788] = 2 +id[789] = "2289-02-04T00:58:45" +ik[789] = 16.314 +il[789] = -79 +im[789] = 0 +ij[789] = 3 +id[790] = "2289-06-13T17:29:11" +ik[790] = 10.737 +il[790] = 140 +im[790] = 0.0122 +ij[790] = 1 +id[791] = "2290-01-21T04:26:24" +ik[791] = 10.386 +il[791] = -86 +im[791] = 0.0127 +ij[791] = 2 +id[792] = "2290-05-14T13:56:12" +ik[792] = 17.639 +il[792] = -94 +im[792] = 0 +ij[792] = 4 +id[793] = "2290-07-15T10:13:09" +ik[793] = 10.754 +il[793] = -82 +im[793] = 0.003 +ij[793] = 1 +id[794] = "2291-02-20T03:13:49" +ik[794] = 10.51 +il[794] = 129 +im[794] = 0.011 +ij[794] = 2 +id[795] = "2291-04-18T03:38:52" +ik[795] = 15.016 +il[795] = 18 +im[795] = 0 +ij[795] = 3 +id[796] = "2291-08-16T09:32:24" +ik[796] = 10.868 +il[796] = 173 +im[796] = 0.0105 +ij[796] = 1 +id[797] = "2292-03-22T12:44:21" +ik[797] = 10.805 +il[797] = 167 +im[797] = 0.0224 +ij[797] = 2 +id[798] = "2292-08-09T15:48:31" +ik[798] = 18.062 +il[798] = -56 +im[798] = 0 +ij[798] = 4 +id[799] = "2292-09-17T05:16:48" +ik[799] = 11.056 +il[799] = 49 +im[799] = 0.0117 +ij[799] = 1 +id[800] = "2293-04-25T07:03:56" +ik[800] = 11.214 +il[800] = -54 +im[800] = 0.0209 +ij[800] = 2 +id[801] = "2293-06-25T01:08:24" +ik[801] = 15.801 +il[801] = -174 +im[801] = 0 +ij[801] = 3 +id[802] = "2293-10-21T07:29:34" +ik[802] = 11.267 +il[802] = -96 +im[802] = 0.0144 +ij[802] = 1 +id[803] = "2294-05-31T19:34:53" +ik[803] = 11.616 +il[803] = -152 +im[803] = 0.0093 +ij[803] = 2 +id[804] = "2294-11-10T02:40:24" +ik[804] = 17.141 +il[804] = 142 +im[804] = 0 +ij[804] = 4 +id[805] = "2294-11-25T17:29:11" +ik[805] = 11.426 +il[805] = 47 +im[805] = 0.0024 +ij[805] = 1 +id[806] = "2295-07-09T09:59:02" +ik[806] = 11.841 +il[806] = 104 +im[806] = 0.0229 +ij[806] = 2 +id[807] = "2295-09-20T16:07:06" +ik[807] = 18.22 +il[807] = -92 +im[807] = 0 +ij[807] = 3 +id[808] = "2296-01-01T00:03:44" +ik[808] = 11.465 +il[808] = 167 +im[808] = 0.0113 +ij[808] = 1 +id[809] = "2296-08-16T06:22:19" +ik[809] = 11.77 +il[809] = 143 +im[809] = 0.0261 +ij[809] = 2 +id[810] = "2297-02-04T13:50:00" +ik[810] = 16.033 +il[810] = 4 +im[810] = 0 +ij[810] = 4 +id[811] = "2297-02-05T05:26:35" +ik[811] = 11.364 +il[811] = -30 +im[811] = 0.0273 +ij[811] = 1 +id[812] = "2297-09-22T09:10:22" +ik[812] = 11.444 +il[812] = -111 +im[812] = 0.0156 +ij[812] = 2 +id[813] = "2298-01-02T00:50:49" +ik[813] = 19.073 +il[813] = -172 +im[813] = 0 +ij[813] = 3 +id[814] = "2298-03-12T13:00:20" +ik[814] = 11.171 +il[814] = -158 +im[814] = 0.0265 +ij[814] = 1 +id[815] = "2298-10-26T18:32:58" +ik[815] = 11.021 +il[815] = -156 +im[815] = 0.0049 +ij[815] = 2 +id[816] = "2299-04-15T12:30:14" +ik[816] = 10.962 +il[816] = 155 +im[816] = 0.0298 +ij[816] = 1 +id[817] = "2299-04-27T03:36:17" +ik[817] = 16.229 +il[817] = -53 +im[817] = 0 +ij[817] = 4 +id[818] = "2299-11-27T14:42:00" +ik[818] = 10.653 +il[818] = -143 +im[818] = 0.0206 +ij[818] = 2 +id[819] = "2300-04-10T12:04:01" +ik[819] = 17.021 +il[819] = -169 +im[819] = 0 +ij[819] = 3 +id[820] = "2300-05-18T05:53:05" +ik[820] = 10.803 +il[820] = 117 +im[820] = 0.0239 +ij[820] = 1 +id[821] = "2300-12-27T17:57:33" +ik[821] = 10.431 +il[821] = -89 +im[821] = 0.0253 +ij[821] = 2 +id[822] = "2301-06-19T03:12:05" +ik[822] = 10.733 +il[822] = 86 +im[822] = 0.0231 +ij[822] = 1 +id[823] = "2301-07-19T01:49:17" +ik[823] = 17.314 +il[823] = 147 +im[823] = 0 +ij[823] = 4 +id[824] = "2302-01-26T06:16:59" +ik[824] = 10.391 +il[824] = 145 +im[824] = 0.0219 +ij[824] = 2 +id[825] = "2302-06-27T18:59:45" +ik[825] = 15.214 +il[825] = 104 +im[825] = 0 +ij[825] = 3 +id[826] = "2302-07-20T18:17:51" +ik[826] = 10.764 +il[826] = -80 +im[826] = 0.0087 +ij[826] = 1 +id[827] = "2303-02-25T06:54:08" +ik[827] = 10.54 +il[827] = -65 +im[827] = 0.0041 +ij[827] = 2 +id[828] = "2303-08-21T18:23:11" +ik[828] = 10.891 +il[828] = 149 +im[828] = 0.0059 +ij[828] = 1 +id[829] = "2303-10-13T10:05:31" +ik[829] = 18.071 +il[829] = -108 +im[829] = 0 +ij[829] = 4 +id[830] = "2304-03-27T22:17:36" +ik[830] = 10.856 +il[830] = 119 +im[830] = 0.0098 +ij[830] = 2 +id[831] = "2304-09-02T05:58:42" +ik[831] = 15.326 +il[831] = 81 +im[831] = 0 +ij[831] = 3 +id[832] = "2304-09-22T17:36:14" +ik[832] = 11.085 +il[832] = -99 +im[832] = 0.0038 +ij[832] = 1 +id[833] = "2305-05-01T01:51:36" +ik[833] = 11.273 +il[833] = -76 +im[833] = 0.0118 +ij[833] = 2 +id[834] = "2305-10-27T01:17:11" +ik[834] = 11.294 +il[834] = -83 +im[834] = 0.0045 +ij[834] = 1 +id[835] = "2306-01-12T03:57:36" +ik[835] = 17.542 +il[835] = -16 +im[835] = 0 +ij[835] = 4 +id[836] = "2306-06-07T00:15:15" +ik[836] = 11.661 +il[836] = -172 +im[836] = 0.0133 +ij[836] = 2 +id[837] = "2306-11-21T17:04:50" +ik[837] = 17.437 +il[837] = -89 +im[837] = 0 +ij[837] = 3 +id[838] = "2306-12-01T16:48:34" +ik[838] = 11.44 +il[838] = -139 +im[838] = 0.0141 +ij[838] = 1 +id[839] = "2307-07-15T20:28:45" +ik[839] = 11.85 +il[839] = -127 +im[839] = 0.0291 +ij[839] = 2 +id[840] = "2308-01-07T02:29:36" +ik[840] = 11.46 +il[840] = -132 +im[840] = 0.0271 +ij[840] = 1 +id[841] = "2308-04-11T12:45:38" +ik[841] = 16.268 +il[841] = -158 +im[841] = 0 +ij[841] = 4 +id[842] = "2308-08-22T15:30:40" +ik[842] = 11.738 +il[842] = -39 +im[842] = 0.016 +ij[842] = 2 +id[843] = "2309-02-11T07:28:42" +ik[843] = 11.342 +il[843] = 46 +im[843] = 0.03 +ij[843] = 1 +id[844] = "2309-03-02T12:41:19" +ik[844] = 19.2 +il[844] = -112 +im[844] = 0 +ij[844] = 3 +id[845] = "2309-09-28T11:05:25" +ik[845] = 11.388 +il[845] = -31 +im[845] = 0.0052 +ij[845] = 2 +id[846] = "2310-03-18T11:38:06" +ik[846] = 11.141 +il[846] = 41 +im[846] = 0.0262 +ij[846] = 1 +id[847] = "2310-07-03T02:53:05" +ik[847] = 16.026 +il[847] = -16 +im[847] = 0 +ij[847] = 4 +id[848] = "2310-11-01T11:21:15" +ik[848] = 10.964 +il[848] = -106 +im[848] = 0.0067 +ij[848] = 2 +id[849] = "2311-04-21T06:25:46" +ik[849] = 10.936 +il[849] = 164 +im[849] = 0.0277 +ij[849] = 1 +id[850] = "2311-06-13T01:33:27" +ik[850] = 17.772 +il[850] = -46 +im[850] = 0 +ij[850] = 3 +id[851] = "2311-12-02T23:47:45" +ik[851] = 10.613 +il[851] = -174 +im[851] = 0.0084 +ij[851] = 2 +id[852] = "2312-05-22T19:27:41" +ik[852] = 10.788 +il[852] = -74 +im[852] = 0.0259 +ij[852] = 1 +id[853] = "2312-09-22T04:01:12" +ik[853] = 16.959 +il[853] = -130 +im[853] = 0 +ij[853] = 4 +id[854] = "2312-12-31T22:25:32" +ik[854] = 10.414 +il[854] = 48 +im[854] = 0.0222 +ij[854] = 2 +id[855] = "2313-06-23T14:04:50" +ik[855] = 10.731 +il[855] = -9 +im[855] = 0.0278 +ij[855] = 1 +id[856] = "2313-09-04T14:22:07" +ik[856] = 15.598 +il[856] = -166 +im[856] = 0 +ij[856] = 3 +id[857] = "2314-01-30T10:06:05" +ik[857] = 10.401 +il[857] = -54 +im[857] = 0.0262 +ij[857] = 2 +id[858] = "2314-07-25T04:56:29" +ik[858] = 10.776 +il[858] = -167 +im[858] = 0.0193 +ij[858] = 1 +id[859] = "2314-12-16T02:59:16" +ik[859] = 17.944 +il[859] = 101 +im[859] = 0 +ij[859] = 4 +id[860] = "2315-03-01T14:19:06" +ik[860] = 10.575 +il[860] = -36 +im[860] = 0.0088 +ij[860] = 2 +id[861] = "2315-08-26T07:33:53" +ik[861] = 10.914 +il[861] = -30 +im[861] = 0.0184 +ij[861] = 1 +id[862] = "2315-11-12T01:30:51" +ik[862] = 15.058 +il[862] = 14 +im[862] = 0 +ij[862] = 3 +id[863] = "2316-04-01T13:24:14" +ik[863] = 10.909 +il[863] = -130 +im[863] = 0.005 +ij[863] = 2 +id[864] = "2316-09-27T11:32:47" +ik[864] = 11.115 +il[864] = -91 +im[864] = 0.01 +ij[864] = 1 +id[865] = "2317-03-15T09:02:52" +ik[865] = 17.855 +il[865] = 49 +im[865] = 0 +ij[865] = 4 +id[866] = "2317-05-06T03:09:30" +ik[866] = 11.332 +il[866] = 26 +im[866] = 0.0036 +ij[866] = 2 +id[867] = "2317-11-01T00:42:37" +ik[867] = 11.319 +il[867] = 88 +im[867] = 0.0216 +ij[867] = 1 +id[868] = "2318-01-24T06:24:37" +ik[868] = 16.644 +il[868] = -113 +im[868] = 0 +ij[868] = 3 +id[869] = "2318-06-12T10:37:03" +ik[869] = 11.703 +il[869] = -38 +im[869] = 0.0281 +ij[869] = 2 +id[870] = "2318-12-06T20:24:25" +ik[870] = 11.452 +il[870] = -119 +im[870] = 0.0247 +ij[870] = 1 +id[871] = "2319-06-15T15:14:24" +ik[871] = 16.618 +il[871] = 60 +im[871] = 0 +ij[871] = 4 +id[872] = "2319-07-21T10:04:22" +ik[872] = 11.853 +il[872] = -110 +im[872] = 0.0219 +ij[872] = 2 +id[873] = "2320-01-12T06:47:57" +ik[873] = 11.451 +il[873] = -138 +im[873] = 0.0315 +ij[873] = 1 +id[874] = "2320-04-29T23:27:10" +ik[874] = 18.963 +il[874] = -14 +im[874] = 0 +ij[874] = 3 +id[875] = "2320-08-28T00:24:02" +ik[875] = 11.701 +il[875] = 149 +im[875] = 0.0016 +ij[875] = 2 +id[876] = "2321-02-16T08:39:24" +ik[876] = 11.318 +il[876] = 152 +im[876] = 0.0226 +ij[876] = 1 +id[877] = "2321-09-06T23:33:21" +ik[877] = 15.94 +il[877] = 115 +im[877] = 0 +ij[877] = 4 +id[878] = "2321-10-03T10:05:13" +ik[878] = 11.33 +il[878] = 155 +im[878] = 0.0221 +ij[878] = 2 +id[879] = "2322-03-23T07:17:11" +ik[879] = 11.112 +il[879] = -12 +im[879] = 0.0199 +ij[879] = 1 +id[880] = "2322-08-12T14:00:05" +ik[880] = 18.469 +il[880] = 53 +im[880] = 0 +ij[880] = 3 +id[881] = "2322-11-06T00:03:44" +ik[881] = 10.909 +il[881] = 93 +im[881] = 0.0153 +ij[881] = 2 +id[882] = "2323-04-25T20:33:12" +ik[882] = 10.911 +il[882] = -49 +im[882] = 0.0177 +ij[882] = 1 +id[883] = "2323-11-27T08:54:05" +ik[883] = 16.606 +il[883] = -145 +im[883] = 0 +ij[883] = 4 +id[884] = "2323-12-07T05:06:17" +ik[884] = 10.575 +il[884] = -67 +im[884] = 0.007 +ij[884] = 2 +id[885] = "2324-05-27T05:49:37" +ik[885] = 10.774 +il[885] = -153 +im[885] = 0.0228 +ij[885] = 1 +id[886] = "2324-11-10T15:06:28" +ik[886] = 16.15 +il[886] = 30 +im[886] = 0 +ij[886] = 3 +id[887] = "2325-01-05T00:36:25" +ik[887] = 10.401 +il[887] = -93 +im[887] = 0.0178 +ij[887] = 2 +id[888] = "2325-06-27T23:15:56" +ik[888] = 10.731 +il[888] = -44 +im[888] = 0.027 +ij[888] = 1 +id[889] = "2326-02-03T13:34:53" +ik[889] = 10.414 +il[889] = 118 +im[889] = 0.0268 +ij[889] = 2 +id[890] = "2326-02-18T07:32:44" +ik[890] = 17.71 +il[890] = -112 +im[890] = 0 +ij[890] = 4 +id[891] = "2326-07-29T15:50:15" +ik[891] = 10.79 +il[891] = 97 +im[891] = 0.0266 +ij[891] = 1 +id[892] = "2327-01-21T10:09:24" +ik[892] = 14.999 +il[892] = -167 +im[892] = 0 +ij[892] = 3 +id[893] = "2327-03-05T23:22:59" +ik[893] = 10.612 +il[893] = -65 +im[893] = 0.0214 +ij[893] = 2 +id[894] = "2327-08-30T22:27:24" +ik[894] = 10.939 +il[894] = 90 +im[894] = 0.0253 +ij[894] = 1 +id[895] = "2328-04-06T07:10:59" +ik[895] = 10.965 +il[895] = -115 +im[895] = 0.0156 +ij[895] = 2 +id[896] = "2328-05-16T22:12:00" +ik[896] = 18.039 +il[896] = -177 +im[896] = 0 +ij[896] = 4 +id[897] = "2328-10-02T07:33:01" +ik[897] = 11.144 +il[897] = -154 +im[897] = 0.0236 +ij[897] = 1 +id[898] = "2329-03-31T07:02:47" +ik[898] = 15.953 +il[898] = -127 +im[898] = 0 +ij[898] = 3 +id[899] = "2329-05-11T06:59:28" +ik[899] = 11.39 +il[899] = 37 +im[899] = 0.0216 +ij[899] = 2 +id[900] = "2329-11-06T01:32:09" +ik[900] = 11.343 +il[900] = -153 +im[900] = 0.0295 +ij[900] = 1 +id[901] = "2330-06-17T21:58:10" +ik[901] = 11.74 +il[901] = 58 +im[901] = 0.0308 +ij[901] = 2 +id[902] = "2330-08-17T18:41:36" +ik[902] = 17.031 +il[902] = 33 +im[902] = 0 +ij[902] = 4 +id[903] = "2330-12-11T23:52:13" +ik[903] = 11.46 +il[903] = -95 +im[903] = 0.0278 +ij[903] = 1 +id[904] = "2331-06-29T02:31:12" +ik[904] = 18.405 +il[904] = -147 +im[904] = 0 +ij[904] = 3 +id[905] = "2331-07-26T22:22:04" +ik[905] = 11.85 +il[905] = -46 +im[905] = 0.0049 +ij[905] = 2 +id[906] = "2332-01-17T09:29:48" +ik[906] = 11.44 +il[906] = -86 +im[906] = 0.0254 +ij[906] = 1 +id[907] = "2332-09-02T06:20:35" +ik[907] = 11.659 +il[907] = 83 +im[907] = 0.0185 +ij[907] = 2 +id[908] = "2332-11-11T14:23:16" +ik[908] = 15.995 +il[908] = 96 +im[908] = 0 +ij[908] = 4 +id[909] = "2333-02-21T07:32:09" +ik[909] = 11.292 +il[909] = -18 +im[909] = 0.0079 +ij[909] = 1 +id[910] = "2333-10-08T06:08:12" +ik[910] = 11.271 +il[910] = 87 +im[910] = 0.0292 +ij[910] = 2 +id[911] = "2333-10-10T17:41:25" +ik[911] = 18.986 +il[911] = -101 +im[911] = 0 +ij[911] = 3 +id[912] = "2334-03-28T01:09:15" +ik[912] = 11.082 +il[912] = -1 +im[912] = 0.009 +ij[912] = 1 +id[913] = "2334-11-10T11:09:44" +ik[913] = 10.856 +il[913] = -13 +im[913] = 0.0239 +ij[913] = 2 +id[914] = "2335-01-31T21:26:03" +ik[914] = 16.296 +il[914] = -78 +im[914] = 0 +ij[914] = 4 +id[915] = "2335-04-30T10:17:36" +ik[915] = 10.887 +il[915] = 112 +im[915] = 0.0029 +ij[915] = 1 +id[916] = "2335-12-11T10:43:14" +ik[916] = 10.541 +il[916] = 28 +im[916] = 0.0179 +ij[916] = 2 +id[917] = "2336-01-15T17:03:24" +ik[917] = 16.832 +il[917] = 121 +im[917] = 0 +ij[917] = 3 +id[918] = "2336-05-31T17:26:35" +ik[918] = 10.762 +il[918] = 85 +im[918] = 0.0161 +ij[918] = 1 +id[919] = "2337-01-09T04:41:31" +ik[919] = 10.391 +il[919] = 58 +im[919] = 0.011 +ij[919] = 2 +id[920] = "2337-04-24T00:25:46" +ik[920] = 17.401 +il[920] = -52 +im[920] = 0 +ij[920] = 4 +id[921] = "2337-07-02T10:56:29" +ik[921] = 10.733 +il[921] = -168 +im[921] = 0.0198 +ij[921] = 1 +id[922] = "2338-02-07T19:50:44" +ik[922] = 10.43 +il[922] = -170 +im[922] = 0.0232 +ij[922] = 2 +id[923] = "2338-04-01T14:30:28" +ik[923] = 15.143 +il[923] = 167 +im[923] = 0 +ij[923] = 3 +id[924] = "2338-08-03T05:16:56" +ik[924] = 10.805 +il[924] = -91 +im[924] = 0.0274 +ij[924] = 1 +id[925] = "2339-03-10T10:53:02" +ik[925] = 10.653 +il[925] = 177 +im[925] = 0.0286 +ij[925] = 2 +id[926] = "2339-07-19T23:54:48" +ik[926] = 18.081 +il[926] = -138 +im[926] = 0 +ij[926] = 4 +id[927] = "2339-09-04T14:50:55" +ik[927] = 10.965 +il[927] = 154 +im[927] = 0.0272 +ij[927] = 1 +id[928] = "2340-04-11T02:17:22" +ik[928] = 11.022 +il[928] = -149 +im[928] = 0.0235 +ij[928] = 2 +id[929] = "2340-06-07T09:00:34" +ik[929] = 15.429 +il[929] = -128 +im[929] = 0 +ij[929] = 3 +id[930] = "2340-10-07T03:21:53" +ik[930] = 11.173 +il[930] = 144 +im[930] = 0.0293 +ij[930] = 1 +id[931] = "2341-05-16T10:05:13" +ik[931] = 11.447 +il[931] = 74 +im[931] = 0.0302 +ij[931] = 2 +id[932] = "2341-10-19T01:59:31" +ik[932] = 17.443 +il[932] = 18 +im[932] = 0 +ij[932] = 4 +id[933] = "2341-11-11T00:16:59" +ik[933] = 11.366 +il[933] = 42 +im[933] = 0.0287 +ij[933] = 1 +id[934] = "2342-06-23T06:22:19" +ik[934] = 11.773 +il[934] = -95 +im[934] = 0.0201 +ij[934] = 2 +id[935] = "2342-08-28T13:27:41" +ik[935] = 17.648 +il[935] = 4 +im[935] = 0 +ij[935] = 3 +id[936] = "2342-12-16T23:54:57" +ik[936] = 11.467 +il[936] = 53 +im[936] = 0.0214 +ij[936] = 1 +id[937] = "2343-08-01T06:09:56" +ik[937] = 11.841 +il[937] = -179 +im[937] = 0.0106 +ij[937] = 2 +id[938] = "2344-01-16T11:22:07" +ik[938] = 16.196 +il[938] = 4 +im[938] = 0 +ij[938] = 4 +id[939] = "2344-01-22T08:14:38" +ik[939] = 11.426 +il[939] = 109 +im[939] = 0.0101 +ij[939] = 1 +id[940] = "2344-09-07T07:33:10" +ik[940] = 11.614 +il[940] = -171 +im[940] = 0.0295 +ij[940] = 2 +id[941] = "2344-12-07T21:40:27" +ik[941] = 19.202 +il[941] = -116 +im[941] = 0 +ij[941] = 3 +id[942] = "2345-02-26T02:44:44" +ik[942] = 11.265 +il[942] = -55 +im[942] = 0.0056 +ij[942] = 1 +id[943] = "2345-10-12T22:24:40" +ik[943] = 11.213 +il[943] = 156 +im[943] = 0.0287 +ij[943] = 2 +id[944] = "2346-04-01T16:22:04" +ik[944] = 11.053 +il[944] = 107 +im[944] = 0.0075 +ij[944] = 1 +id[945] = "2346-04-07T10:37:03" +ik[945] = 16.063 +il[945] = -35 +im[945] = 0 +ij[945] = 4 +id[946] = "2346-11-14T19:50:44" +ik[946] = 10.805 +il[946] = -27 +im[946] = 0.0276 +ij[946] = 2 +id[947] = "2347-03-19T10:40:39" +ik[947] = 17.584 +il[947] = 94 +im[947] = 0 +ij[947] = 3 +id[948] = "2347-05-04T22:20:12" +ik[948] = 10.865 +il[948] = -26 +im[948] = 0.0092 +ij[948] = 1 +id[949] = "2347-12-15T14:49:12" +ik[949] = 10.509 +il[949] = 178 +im[949] = 0.0233 +ij[949] = 2 +id[950] = "2348-06-05T03:46:39" +ik[950] = 10.751 +il[950] = 9 +im[950] = 0.0054 +ij[950] = 1 +id[951] = "2348-06-27T19:59:39" +ik[951] = 17.048 +il[951] = -89 +im[951] = 0 +ij[951] = 4 +id[952] = "2349-01-13T07:33:10" +ik[952] = 10.385 +il[952] = -107 +im[952] = 0.0012 +ij[952] = 2 +id[953] = "2349-06-09T15:24:37" +ik[953] = 15.481 +il[953] = 57 +im[953] = 0 +ij[953] = 3 +id[954] = "2349-07-06T21:06:02" +ik[954] = 10.736 +il[954] = 124 +im[954] = 0.0087 +ij[954] = 1 +id[955] = "2350-02-12T00:42:37" +ik[955] = 10.45 +il[955] = -48 +im[955] = 0.0159 +ij[955] = 2 +id[956] = "2350-08-07T16:43:14" +ik[956] = 10.822 +il[956] = 153 +im[956] = 0.0228 +ij[956] = 1 +id[957] = "2350-09-21T11:02:41" +ik[957] = 17.988 +il[957] = -80 +im[957] = 0 +ij[957] = 4 +id[958] = "2351-03-14T20:48:20" +ik[958] = 10.696 +il[958] = 113 +im[958] = 0.0291 +ij[958] = 2 +id[959] = "2351-08-16T19:49:52" +ik[959] = 15.106 +il[959] = 121 +im[959] = 0 +ij[959] = 3 +id[960] = "2351-09-09T04:56:29" +ik[960] = 10.991 +il[960] = -58 +im[960] = 0.0223 +ij[960] = 1 +id[961] = "2352-04-15T19:50:44" +ik[961] = 11.08 +il[961] = -126 +im[961] = 0.0267 +ij[961] = 2 +id[962] = "2352-10-11T21:16:33" +ik[962] = 11.203 +il[962] = 154 +im[962] = 0.0272 +ij[962] = 1 +id[963] = "2352-12-20T02:59:51" +ik[963] = 17.785 +il[963] = -130 +im[963] = 0 +ij[963] = 4 +id[964] = "2353-05-21T12:28:30" +ik[964] = 11.502 +il[964] = 135 +im[964] = 0.0282 +ij[964] = 2 +id[965] = "2353-10-30T07:47:16" +ik[965] = 16.843 +il[965] = -52 +im[965] = 0 +ij[965] = 3 +id[966] = "2353-11-15T22:26:32" +ik[966] = 11.388 +il[966] = -102 +im[966] = 0.0179 +ij[966] = 1 +id[967] = "2354-06-28T15:21:01" +ik[967] = 11.8 +il[967] = 90 +im[967] = 0.0022 +ij[967] = 2 +id[968] = "2354-12-22T01:01:12" +ik[968] = 11.47 +il[968] = 162 +im[968] = 0.0106 +ij[968] = 1 +id[969] = "2355-03-21T17:16:04" +ik[969] = 16.521 +il[969] = 99 +im[969] = 0 +ij[969] = 4 +id[970] = "2355-08-06T15:51:59" +ik[970] = 11.826 +il[970] = -23 +im[970] = 0.0236 +ij[970] = 2 +id[971] = "2356-01-27T09:38:44" +ik[971] = 11.41 +il[971] = -152 +im[971] = 0.0117 +ij[971] = 1 +id[972] = "2356-02-05T06:07:20" +ik[972] = 19.056 +il[972] = 66 +im[972] = 0 +ij[972] = 3 +id[973] = "2356-09-12T11:43:26" +ik[973] = 11.566 +il[973] = -173 +im[973] = 0.0292 +ij[973] = 2 +id[974] = "2357-03-03T01:48:08" +ik[974] = 11.237 +il[974] = 129 +im[974] = 0.0167 +ij[974] = 1 +id[975] = "2357-06-12T09:47:39" +ik[975] = 15.947 +il[975] = 5 +im[975] = 0 +ij[975] = 4 +id[976] = "2357-10-17T18:02:52" +ik[976] = 11.154 +il[976] = 104 +im[976] = 0.0196 +ij[976] = 2 +id[977] = "2358-04-06T11:24:51" +ik[977] = 11.024 +il[977] = 76 +im[977] = 0.0232 +ij[977] = 1 +id[978] = "2358-05-19T12:45:30" +ik[978] = 18.305 +il[978] = 60 +im[978] = 0 +ij[978] = 3 +id[979] = "2358-11-19T07:18:54" +ik[979] = 10.755 +il[979] = -143 +im[979] = 0.0259 +ij[979] = 2 +id[980] = "2359-05-09T13:05:39" +ik[980] = 10.844 +il[980] = 98 +im[980] = 0.0173 +ij[980] = 1 +id[981] = "2359-09-02T01:21:47" +ik[981] = 16.691 +il[981] = -121 +im[981] = 0 +ij[981] = 4 +id[982] = "2359-12-19T20:24:25" +ik[982] = 10.481 +il[982] = -86 +im[982] = 0.0259 +ij[982] = 2 +id[983] = "2360-06-09T14:53:39" +ik[983] = 10.743 +il[983] = -95 +im[983] = 0.0113 +ij[983] = 1 +id[984] = "2360-08-16T02:50:12" +ik[984] = 15.995 +il[984] = -135 +im[984] = 0 +ij[984] = 3 +id[985] = "2361-01-17T10:08:49" +ik[985] = 10.383 +il[985] = 98 +im[985] = 0.0142 +ij[985] = 2 +id[986] = "2361-07-11T05:59:25" +ik[986] = 10.742 +il[986] = 99 +im[986] = 0.0027 +ij[986] = 1 +id[987] = "2361-11-24T06:38:26" +ik[987] = 17.778 +il[987] = 31 +im[987] = 0 +ij[987] = 4 +id[988] = "2362-02-16T03:50:15" +ik[988] = 10.473 +il[988] = 138 +im[988] = 0.0097 +ij[988] = 2 +id[989] = "2362-08-12T01:26:58" +ik[989] = 10.841 +il[989] = 135 +im[989] = 0.0125 +ij[989] = 1 +id[990] = "2362-10-25T19:13:00" +ik[990] = 14.994 +il[990] = -85 +im[990] = 0 +ij[990] = 3 +id[991] = "2363-03-19T04:21:12" +ik[991] = 10.742 +il[991] = 141 +im[991] = 0.0236 +ij[991] = 2 +id[992] = "2363-09-13T16:04:22" +ik[992] = 11.02 +il[992] = -162 +im[992] = 0.0134 +ij[992] = 1 +id[993] = "2364-02-21T02:33:30" +ik[993] = 18.009 +il[993] = 136 +im[993] = 0 +ij[993] = 4 +id[994] = "2364-04-20T11:30:11" +ik[994] = 11.138 +il[994] = -34 +im[994] = 0.0227 +ij[994] = 2 +id[995] = "2364-10-16T13:10:07" +ik[995] = 11.232 +il[995] = -123 +im[995] = 0.0179 +ij[995] = 1 +id[996] = "2365-01-03T08:36:57" +ik[996] = 16.112 +il[996] = 77 +im[996] = 0 +ij[996] = 3 +id[997] = "2365-05-26T14:00:31" +ik[997] = 11.554 +il[997] = -130 +im[997] = 0.0164 +ij[997] = 2 +id[998] = "2365-11-20T19:50:52" +ik[998] = 11.407 +il[998] = 142 +im[998] = 0.0042 +ij[998] = 1 +id[999] = "2366-05-23T20:58:16" +ik[999] = 16.928 +il[999] = 62 +im[999] = 0 +ij[999] = 4 +id[1000] = "2366-07-04T00:20:35" +ik[1000] = 11.822 +il[1000] = -87 +im[1000] = 0.0177 +ij[1000] = 2 +id[1001] = "2366-12-27T02:28:53" +ik[1001] = 11.471 +il[1001] = -101 +im[1001] = 0.0066 +ij[1001] = 1 +id[1002] = "2367-04-05T01:43:06" +ik[1002] = 18.569 +il[1002] = -156 +im[1002] = 0 +ij[1002] = 3 +id[1003] = "2367-08-12T01:48:08" +ik[1003] = 11.806 +il[1003] = 129 +im[1003] = 0.0281 +ij[1003] = 2 +id[1004] = "2368-02-01T11:53:13" +ik[1004] = 11.392 +il[1004] = -80 +im[1004] = 0.0257 +ij[1004] = 1 +id[1005] = "2368-08-17T06:23:28" +ik[1005] = 15.966 +il[1005] = 138 +im[1005] = 0 +ij[1005] = 4 +id[1006] = "2368-09-17T16:05:13" +ik[1006] = 11.514 +il[1006] = 178 +im[1006] = 0.0191 +ij[1006] = 2 +id[1007] = "2369-03-08T01:34:53" +ik[1007] = 11.209 +il[1007] = -74 +im[1007] = 0.0259 +ij[1007] = 1 +id[1008] = "2369-07-18T05:34:48" +ik[1008] = 18.878 +il[1008] = 150 +im[1008] = 0 +ij[1008] = 3 +id[1009] = "2369-10-22T13:39:21" +ik[1009] = 11.094 +il[1009] = 50 +im[1009] = 0.0055 +ij[1009] = 2 +id[1010] = "2370-04-11T06:57:44" +ik[1010] = 10.996 +il[1010] = 26 +im[1010] = 0.0298 +ij[1010] = 1 +id[1011] = "2370-11-06T17:29:36" +ik[1011] = 16.37 +il[1011] = 176 +im[1011] = 0 +ij[1011] = 4 +id[1012] = "2370-11-23T18:44:29" +ik[1012] = 10.708 +il[1012] = 98 +im[1012] = 0.0193 +ij[1012] = 2 +id[1013] = "2371-05-14T04:13:09" +ik[1013] = 10.825 +il[1013] = -151 +im[1013] = 0.024 +ij[1013] = 1 +id[1014] = "2371-10-21T20:58:16" +ik[1014] = 16.646 +il[1014] = 90 +im[1014] = 0 +ij[1014] = 3 +id[1015] = "2371-12-24T02:13:46" +ik[1015] = 10.456 +il[1015] = 1 +im[1015] = 0.0249 +ij[1015] = 2 +id[1016] = "2372-06-14T02:43:00" +ik[1016] = 10.737 +il[1016] = 135 +im[1016] = 0.0233 +ij[1016] = 1 +id[1017] = "2373-01-21T14:01:23" +ik[1017] = 10.384 +il[1017] = -104 +im[1017] = 0.0235 +ij[1017] = 2 +id[1018] = "2373-01-27T20:42:25" +ik[1018] = 17.484 +il[1018] = -166 +im[1018] = 0 +ij[1018] = 4 +id[1019] = "2373-07-15T16:41:31" +ik[1019] = 10.75 +il[1019] = 10 +im[1019] = 0.0096 +ij[1019] = 1 +id[1020] = "2374-01-04T00:52:42" +ik[1020] = 15.088 +il[1020] = -158 +im[1020] = 0 +ij[1020] = 3 +id[1021] = "2374-02-20T09:52:50" +ik[1021] = 10.5 +il[1021] = -143 +im[1021] = 0.0017 +ij[1021] = 2 +id[1022] = "2374-08-16T13:42:48" +ik[1022] = 10.861 +il[1022] = -10 +im[1022] = 0.0044 +ij[1022] = 1 +id[1023] = "2375-03-23T16:47:42" +ik[1023] = 10.79 +il[1023] = -11 +im[1023] = 0.0105 +ij[1023] = 2 +id[1024] = "2375-04-24T22:43:40" +ik[1024] = 18.087 +il[1024] = 16 +im[1024] = 0 +ij[1024] = 4 +id[1025] = "2375-09-18T08:20:49" +ik[1025] = 11.048 +il[1025] = -93 +im[1025] = 0.0034 +ij[1025] = 1 +id[1026] = "2376-03-11T23:03:07" +ik[1026] = 15.542 +il[1026] = 134 +im[1026] = 0 +ij[1026] = 3 +id[1027] = "2376-04-25T09:32:32" +ik[1027] = 11.198 +il[1027] = -174 +im[1027] = 0.0141 +ij[1027] = 2 +id[1028] = "2376-10-21T10:58:22" +ik[1028] = 11.26 +il[1028] = 106 +im[1028] = 0.0024 +ij[1028] = 1 +id[1029] = "2377-05-31T21:59:54" +ik[1029] = 11.604 +il[1029] = 90 +im[1029] = 0.0065 +ij[1029] = 2 +id[1030] = "2377-07-25T11:07:35" +ik[1030] = 17.346 +il[1030] = 158 +im[1030] = 0 +ij[1030] = 4 +id[1031] = "2377-11-25T22:36:11" +ik[1031] = 11.424 +il[1031] = -168 +im[1031] = 0.0113 +ij[1031] = 1 +id[1032] = "2378-06-04T08:00:57" +ik[1032] = 17.852 +il[1032] = 163 +im[1032] = 0 +ij[1032] = 3 +id[1033] = "2378-07-09T13:58:48" +ik[1033] = 11.839 +il[1033] = -71 +im[1033] = 0.0277 +ij[1033] = 2 +id[1034] = "2379-01-01T07:17:11" +ik[1034] = 11.468 +il[1034] = -125 +im[1034] = 0.0244 +ij[1034] = 1 +id[1035] = "2379-08-17T13:14:35" +ik[1035] = 11.779 +il[1035] = -137 +im[1035] = 0.0199 +ij[1035] = 2 +id[1036] = "2379-10-22T14:50:29" +ik[1036] = 16.131 +il[1036] = -10 +im[1036] = 0 +ij[1036] = 4 +id[1037] = "2380-02-06T14:47:28" +ik[1037] = 11.372 +il[1037] = -40 +im[1037] = 0.0304 +ij[1037] = 1 +id[1038] = "2380-09-14T20:56:41" +ik[1038] = 19.182 +il[1038] = 82 +im[1038] = 0 +ij[1038] = 3 +id[1039] = "2380-09-22T18:48:57" +ik[1039] = 11.459 +il[1039] = -131 +im[1039] = 0.0024 +ij[1039] = 2 +id[1040] = "2381-03-12T23:31:55" +ik[1040] = 11.18 +il[1040] = 150 +im[1040] = 0.0267 +ij[1040] = 1 +id[1041] = "2381-10-27T05:47:02" +ik[1041] = 11.036 +il[1041] = 127 +im[1041] = 0.0064 +ij[1041] = 2 +id[1042] = "2382-01-11T10:30:25" +ik[1042] = 16.116 +il[1042] = 80 +im[1042] = 0 +ij[1042] = 4 +id[1043] = "2382-04-15T23:05:25" +ik[1043] = 10.969 +il[1043] = 103 +im[1043] = 0.0284 +ij[1043] = 1 +id[1044] = "2382-11-28T02:12:54" +ik[1044] = 10.664 +il[1044] = 129 +im[1044] = 0.0076 +ij[1044] = 2 +id[1045] = "2382-12-24T07:18:28" +ik[1045] = 17.387 +il[1045] = 177 +im[1045] = 0 +ij[1045] = 3 +id[1046] = "2383-05-18T15:42:20" +ik[1046] = 10.807 +il[1046] = 91 +im[1046] = 0.0258 +ij[1046] = 1 +id[1047] = "2383-12-28T05:00:57" +ik[1047] = 10.435 +il[1047] = -160 +im[1047] = 0.0205 +ij[1047] = 2 +id[1048] = "2384-04-02T16:20:47" +ik[1048] = 17.139 +il[1048] = 154 +im[1048] = 0 +ij[1048] = 4 +id[1049] = "2384-06-18T12:05:36" +ik[1049] = 10.732 +il[1049] = 94 +im[1049] = 0.0281 +ij[1049] = 1 +id[1050] = "2385-01-25T16:38:03" +ik[1050] = 10.388 +il[1050] = 100 +im[1050] = 0.0274 +ij[1050] = 2 +id[1051] = "2385-03-14T10:50:00" +ik[1051] = 15.378 +il[1051] = 124 +im[1051] = 0 +ij[1051] = 3 +id[1052] = "2385-07-20T02:45:36" +ik[1052] = 10.759 +il[1052] = -57 +im[1052] = 0.019 +ij[1052] = 1 +id[1053] = "2386-02-24T16:46:50" +ik[1053] = 10.531 +il[1053] = -94 +im[1053] = 0.0096 +ij[1053] = 2 +id[1054] = "2386-06-27T09:46:13" +ik[1054] = 18.024 +il[1054] = 77 +im[1054] = 0 +ij[1054] = 4 +id[1055] = "2386-08-21T03:08:38" +ik[1055] = 10.883 +il[1055] = 161 +im[1055] = 0.0182 +ij[1055] = 1 +id[1056] = "2387-03-28T07:38:29" +ik[1056] = 10.841 +il[1056] = 110 +im[1056] = 0.0051 +ij[1056] = 2 +id[1057] = "2387-05-21T06:42:20" +ik[1057] = 15.168 +il[1057] = 138 +im[1057] = 0 +ij[1057] = 3 +id[1058] = "2387-09-23T02:53:39" +ik[1058] = 11.077 +il[1058] = -106 +im[1058] = 0.0091 +ij[1058] = 1 +id[1059] = "2388-04-30T10:33:36" +ik[1059] = 11.257 +il[1059] = -62 +im[1059] = 0.002 +ij[1059] = 2 +id[1060] = "2388-09-25T17:41:16" +ik[1060] = 17.708 +il[1060] = 169 +im[1060] = 0 +ij[1060] = 4 +id[1061] = "2388-10-26T10:48:34" +ik[1061] = 11.287 +il[1061] = -98 +im[1061] = 0.0193 +ij[1061] = 1 +id[1062] = "2389-06-06T08:04:07" +ik[1062] = 11.651 +il[1062] = -125 +im[1062] = 0.0248 +ij[1062] = 2 +id[1063] = "2389-08-05T15:58:45" +ik[1063] = 17.048 +il[1063] = 123 +im[1063] = 0 +ij[1063] = 3 +id[1064] = "2389-12-01T02:12:02" +ik[1064] = 11.438 +il[1064] = -146 +im[1064] = 0.0227 +ij[1064] = 1 +id[1065] = "2390-07-15T03:34:16" +ik[1065] = 11.849 +il[1065] = -54 +im[1065] = 0.0261 +ij[1065] = 2 +id[1066] = "2390-12-26T04:03:12" +ik[1066] = 16.427 +il[1066] = -180 +im[1066] = 0 +ij[1066] = 4 +id[1067] = "2391-01-06T11:17:48" +ik[1067] = 11.463 +il[1067] = -121 +im[1067] = 0.0314 +ij[1067] = 1 +id[1068] = "2391-08-22T22:33:36" +ik[1068] = 11.748 +il[1068] = 35 +im[1068] = 0.006 +ij[1068] = 2 +id[1069] = "2391-11-13T03:57:53" +ik[1069] = 19.133 +il[1069] = -44 +im[1069] = 0 +ij[1069] = 3 +id[1070] = "2392-02-11T15:41:19" +ik[1070] = 11.35 +il[1070] = 78 +im[1070] = 0.0252 +ij[1070] = 1 +id[1071] = "2392-09-27T18:35:42" +ik[1071] = 11.403 +il[1071] = 26 +im[1071] = 0.0196 +ij[1071] = 2 +id[1072] = "2393-03-17T19:22:30" +ik[1072] = 11.15 +il[1072] = 93 +im[1072] = 0.0207 +ij[1072] = 1 +id[1073] = "2393-03-18T06:54:43" +ik[1073] = 15.966 +il[1073] = -139 +im[1073] = 0 +ij[1073] = 4 +id[1074] = "2393-10-31T19:41:05" +ik[1074] = 10.979 +il[1074] = -78 +im[1074] = 0.0157 +ij[1074] = 2 +id[1075] = "2394-02-23T18:12:23" +ik[1075] = 18.128 +il[1075] = -177 +im[1075] = 0 +ij[1075] = 3 +id[1076] = "2394-04-20T14:06:43" +ik[1076] = 10.943 +il[1076] = -143 +im[1076] = 0.0191 +ij[1076] = 1 +id[1077] = "2394-12-02T09:11:22" +ik[1077] = 10.623 +il[1077] = 175 +im[1077] = 0.0084 +ij[1077] = 2 +id[1078] = "2395-05-23T03:40:27" +ik[1078] = 10.791 +il[1078] = -44 +im[1078] = 0.0222 +ij[1078] = 1 +id[1079] = "2395-06-07T21:19:52" +ik[1079] = 16.78 +il[1079] = 136 +im[1079] = 0 +ij[1079] = 4 +id[1080] = "2396-01-01T09:06:02" +ik[1080] = 10.417 +il[1080] = -10 +im[1080] = 0.0148 +ij[1080] = 2 +id[1081] = "2396-05-21T13:30:08" +ik[1081] = 15.847 +il[1081] = 100 +im[1081] = 0 +ij[1081] = 3 +id[1082] = "2396-06-22T23:24:51" +ik[1082] = 10.729 +il[1082] = -18 +im[1082] = 0.0272 +ij[1082] = 1 +id[1083] = "2397-01-29T21:50:15" +ik[1083] = 10.397 +il[1083] = -151 +im[1083] = 0.0272 +ij[1083] = 2 +id[1084] = "2397-07-24T15:33:24" +ik[1084] = 10.771 +il[1084] = 138 +im[1084] = 0.0263 +ij[1084] = 1 +id[1085] = "2397-08-30T12:08:47" +ik[1085] = 17.841 +il[1085] = -57 +im[1085] = 0 +ij[1085] = 4 +id[1086] = "2398-03-01T02:30:37" +ik[1086] = 10.564 +il[1086] = -148 +im[1086] = 0.0219 +ij[1086] = 2 +id[1087] = "2398-07-30T13:11:42" +ik[1087] = 15.001 +il[1087] = 34 +im[1087] = 0 +ij[1087] = 3 +id[1088] = "2398-08-25T18:48:57" +ik[1088] = 10.906 +il[1088] = -108 +im[1088] = 0.0257 +ij[1088] = 1 +id[1089] = "2399-04-02T00:39:10" +ik[1089] = 10.895 +il[1089] = 152 +im[1089] = 0.0156 +ij[1089] = 2 +id[1090] = "2399-09-27T22:12:25" +ik[1090] = 11.106 +il[1090] = -146 +im[1090] = 0.0221 +ij[1090] = 1 +id[1091] = "2399-11-28T01:04:39" +ik[1091] = 17.962 +il[1091] = 151 +im[1091] = 0 +ij[1091] = 4 +id[1092] = "2400-05-05T11:59:25" +ik[1092] = 11.317 +il[1092] = 36 +im[1092] = 0.0177 +ij[1092] = 2 +id[1093] = "2400-10-09T07:34:45" +ik[1093] = 16.29 +il[1093] = -133 +im[1093] = 0 +ij[1093] = 3 +id[1094] = "2400-10-31T09:32:32" +ik[1094] = 11.313 +il[1094] = 97 +im[1094] = 0.0287 +ij[1094] = 1 +id[1095] = "2401-06-11T16:13:17" +ik[1095] = 11.693 +il[1095] = 89 +im[1095] = 0.031 +ij[1095] = 2 +id[1096] = "2401-12-06T02:53:39" +ik[1096] = 11.45 +il[1096] = -25 +im[1096] = 0.0281 +ij[1096] = 1 +id[1097] = "2402-02-27T13:42:40" +ik[1097] = 16.818 +il[1097] = -72 +im[1097] = 0 +ij[1097] = 4 +id[1098] = "2402-07-20T13:05:39" +ik[1098] = 11.854 +il[1098] = 110 +im[1098] = 0.0123 +ij[1098] = 2 +id[1099] = "2403-01-10T13:49:43" +ik[1099] = 18.725 +il[1099] = 87 +im[1099] = 0 +ij[1099] = 3 +id[1100] = "2403-01-11T11:24:51" +ik[1100] = 11.456 +il[1100] = 24 +im[1100] = 0.0281 +ij[1100] = 1 +id[1101] = "2403-08-28T02:54:31" +ik[1101] = 11.712 +il[1101] = 27 +im[1101] = 0.0124 +ij[1101] = 2 +id[1102] = "2404-02-16T12:41:54" +ik[1102] = 11.326 +il[1102] = -25 +im[1102] = 0.0113 +ij[1102] = 1 +id[1103] = "2404-05-22T21:10:13" +ik[1103] = 15.947 +il[1103] = -136 +im[1103] = 0 +ij[1103] = 4 +id[1104] = "2404-10-02T14:00:31" +ik[1104] = 11.347 +il[1104] = -18 +im[1104] = 0.0286 +ij[1104] = 2 +id[1105] = "2405-03-22T12:04:45" +ik[1105] = 11.12 +il[1105] = 144 +im[1105] = 0.0111 +ij[1105] = 1 +id[1106] = "2405-04-24T08:52:39" +ik[1106] = 18.754 +il[1106] = -8 +im[1106] = 0 +ij[1106] = 3 +id[1107] = "2405-11-05T06:33:50" +ik[1107] = 10.924 +il[1107] = -174 +im[1107] = 0.0237 +ij[1107] = 2 +id[1108] = "2406-04-25T03:03:18" +ik[1108] = 10.917 +il[1108] = 45 +im[1108] = 0.0049 +ij[1108] = 1 +id[1109] = "2406-08-12T04:13:09" +ik[1109] = 16.443 +il[1109] = 48 +im[1109] = 0 +ij[1109] = 4 +id[1110] = "2406-12-06T14:25:17" +ik[1110] = 10.584 +il[1110] = -75 +im[1110] = 0.0194 +ij[1110] = 2 +id[1111] = "2407-05-27T14:26:09" +ik[1111] = 10.776 +il[1111] = -135 +im[1111] = 0.0158 +ij[1111] = 1 +id[1112] = "2407-07-27T14:27:01" +ik[1112] = 16.47 +il[1112] = 77 +im[1112] = 0 +ij[1112] = 3 +id[1113] = "2408-01-05T12:02:00" +ik[1113] = 10.403 +il[1113] = -177 +im[1113] = 0.0082 +ij[1113] = 2 +id[1114] = "2408-06-27T09:30:48" +ik[1114] = 10.729 +il[1114] = -85 +im[1114] = 0.02 +ij[1114] = 1 +id[1115] = "2408-11-02T20:22:33" +ik[1115] = 17.565 +il[1115] = -43 +im[1115] = 0 +ij[1115] = 4 +id[1116] = "2409-02-03T01:52:36" +ik[1116] = 10.409 +il[1116] = 2 +im[1116] = 0.0223 +ij[1116] = 2 +id[1117] = "2409-07-29T02:35:57" +ik[1117] = 10.784 +il[1117] = 37 +im[1117] = 0.0269 +ij[1117] = 1 +id[1118] = "2409-10-08T18:50:32" +ik[1118] = 15.042 +il[1118] = -38 +im[1118] = 0 +ij[1118] = 3 +id[1119] = "2410-03-05T10:44:15" +ik[1119] = 10.601 +il[1119] = -149 +im[1119] = 0.0284 +ij[1119] = 2 +id[1120] = "2410-08-30T08:10:19" +ik[1120] = 10.931 +il[1120] = 67 +im[1120] = 0.0274 +ij[1120] = 1 +id[1121] = "2411-01-29T14:54:23" +ik[1121] = 18.079 +il[1121] = -99 +im[1121] = 0 +ij[1121] = 4 +id[1122] = "2411-04-06T15:53:51" +ik[1122] = 10.95 +il[1122] = -101 +im[1122] = 0.0228 +ij[1122] = 2 +id[1123] = "2411-10-02T15:05:11" +ik[1123] = 11.136 +il[1123] = -100 +im[1123] = 0.0287 +ij[1123] = 1 +id[1124] = "2411-12-16T05:37:14" +ik[1124] = 15.672 +il[1124] = 158 +im[1124] = 0 +ij[1124] = 3 +id[1125] = "2412-05-10T11:55:49" +ik[1125] = 11.375 +il[1125] = -173 +im[1125] = 0.029 +ij[1125] = 2 +id[1126] = "2412-11-05T06:39:10" +ik[1126] = 11.338 +il[1126] = -7 +im[1126] = 0.0296 +ij[1126] = 1 +id[1127] = "2413-05-01T03:53:42" +ik[1127] = 17.241 +il[1127] = 22 +im[1127] = 0 +ij[1127] = 4 +id[1128] = "2413-06-16T23:47:54" +ik[1128] = 11.732 +il[1128] = -36 +im[1128] = 0.0255 +ij[1128] = 2 +id[1129] = "2413-12-11T03:24:37" +ik[1129] = 11.46 +il[1129] = 108 +im[1129] = 0.0237 +ij[1129] = 1 +id[1130] = "2414-03-11T06:32:06" +ik[1130] = 18.051 +il[1130] = 179 +im[1130] = 0 +ij[1130] = 3 +id[1131] = "2414-07-25T23:18:40" +ik[1131] = 11.853 +il[1131] = -111 +im[1131] = 0.0041 +ij[1131] = 2 +id[1132] = "2415-01-16T13:05:48" +ik[1132] = 11.445 +il[1132] = 113 +im[1132] = 0.0143 +ij[1132] = 1 +id[1133] = "2415-07-28T08:35:05" +ik[1133] = 16.075 +il[1133] = -31 +im[1133] = 0 +ij[1133] = 4 +id[1134] = "2415-09-02T09:13:58" +ik[1134] = 11.672 +il[1134] = -54 +im[1134] = 0.0278 +ij[1134] = 2 +id[1135] = "2416-02-21T12:36:34" +ik[1135] = 11.301 +il[1135] = 128 +im[1135] = 0.0046 +ij[1135] = 1 +id[1136] = "2416-06-22T05:55:49" +ik[1136] = 19.137 +il[1136] = 78 +im[1136] = 0 +ij[1136] = 3 +id[1137] = "2416-10-07T12:23:19" +ik[1137] = 11.288 +il[1137] = -170 +im[1137] = 0.0295 +ij[1137] = 2 +id[1138] = "2417-03-27T08:28:01" +ik[1138] = 11.091 +il[1138] = 64 +im[1138] = 0.006 +ij[1138] = 1 +id[1139] = "2417-10-16T23:27:36" +ik[1139] = 16.17 +il[1139] = -128 +im[1139] = 0 +ij[1139] = 4 +id[1140] = "2417-11-09T20:32:29" +ik[1140] = 10.87 +il[1140] = -21 +im[1140] = 0.0273 +ij[1140] = 2 +id[1141] = "2418-04-29T19:22:30" +ik[1141] = 10.893 +il[1141] = 112 +im[1141] = 0.0094 +ij[1141] = 1 +id[1142] = "2418-09-29T17:03:41" +ik[1142] = 17.194 +il[1142] = -65 +im[1142] = 0 +ij[1142] = 3 +id[1143] = "2418-12-10T21:51:59" +ik[1143] = 10.549 +il[1143] = -46 +im[1143] = 0.0252 +ij[1143] = 2 +id[1144] = "2419-06-01T02:59:51" +ik[1144] = 10.763 +il[1144] = 68 +im[1144] = 0.0049 +ij[1144] = 1 +id[1145] = "2420-01-07T13:46:24" +ik[1145] = 17.229 +il[1145] = -2 +im[1145] = 0 +ij[1145] = 4 +id[1146] = "2420-01-09T15:39:36" +ik[1146] = 10.392 +il[1146] = -14 +im[1146] = 0.0042 +ij[1146] = 2 +id[1147] = "2420-07-01T19:26:06" +ik[1147] = 10.73 +il[1147] = -146 +im[1147] = 0.0087 +ij[1147] = 1 +id[1148] = "2420-12-17T07:48:17" +ik[1148] = 15.285 +il[1148] = 134 +im[1148] = 0 +ij[1148] = 3 +id[1149] = "2421-02-07T04:55:46" +ik[1149] = 10.424 +il[1149] = -170 +im[1149] = 0.0143 +ij[1149] = 2 +id[1150] = "2421-08-02T11:35:31" +ik[1150] = 10.799 +il[1150] = 9 +im[1150] = 0.023 +ij[1150] = 1 +id[1151] = "2422-03-09T16:50:26" +ik[1151] = 10.64 +il[1151] = -70 +im[1151] = 0.029 +ij[1151] = 2 +id[1152] = "2422-04-02T13:03:04" +ik[1152] = 18.053 +il[1152] = 69 +im[1152] = 0 +ij[1152] = 4 +id[1153] = "2422-09-03T18:33:50" +ik[1153] = 10.957 +il[1153] = -11 +im[1153] = 0.0232 +ij[1153] = 1 +id[1154] = "2423-02-22T18:43:37" +ik[1154] = 15.243 +il[1154] = 113 +im[1154] = 0 +ij[1154] = 3 +id[1155] = "2423-04-11T04:49:35" +ik[1155] = 11.005 +il[1155] = 89 +im[1155] = 0.0266 +ij[1155] = 2 +id[1156] = "2423-10-07T05:18:40" +ik[1156] = 11.166 +il[1156] = 43 +im[1156] = 0.028 +ij[1156] = 1 +id[1157] = "2424-05-15T10:16:45" +ik[1157] = 11.432 +il[1157] = 36 +im[1157] = 0.03 +ij[1157] = 2 +id[1158] = "2424-07-02T00:39:18" +ik[1158] = 17.629 +il[1158] = 28 +im[1158] = 0 +ij[1158] = 4 +id[1159] = "2424-11-10T02:07:43" +ik[1159] = 11.362 +il[1159] = -56 +im[1159] = 0.0217 +ij[1159] = 1 +id[1160] = "2425-05-11T16:15:10" +ik[1160] = 17.25 +il[1160] = -135 +im[1160] = 0 +ij[1160] = 3 +id[1161] = "2425-06-22T06:33:50" +ik[1161] = 11.765 +il[1161] = -132 +im[1161] = 0.0077 +ij[1161] = 2 +id[1162] = "2425-12-16T03:28:13" +ik[1162] = 11.467 +il[1162] = -107 +im[1162] = 0.014 +ij[1162] = 1 +id[1163] = "2426-07-31T09:15:50" +ik[1163] = 11.845 +il[1163] = 38 +im[1163] = 0.019 +ij[1163] = 2 +id[1164] = "2426-10-01T00:34:50" +ik[1164] = 16.342 +il[1164] = 57 +im[1164] = 0 +ij[1164] = 4 +id[1165] = "2427-01-21T14:58:59" +ik[1165] = 11.432 +il[1165] = -166 +im[1165] = 0.0074 +ij[1165] = 1 +id[1166] = "2427-08-20T14:39:33" +ik[1166] = 19.181 +il[1166] = -110 +im[1166] = 0 +ij[1166] = 3 +id[1167] = "2427-09-07T15:24:37" +ik[1167] = 11.628 +il[1167] = -127 +im[1167] = 0.0304 +ij[1167] = 2 +id[1168] = "2428-02-26T13:08:24" +ik[1168] = 11.274 +il[1168] = -102 +im[1168] = 0.0154 +ij[1168] = 1 +id[1169] = "2428-10-12T10:34:27" +ik[1169] = 11.228 +il[1169] = 45 +im[1169] = 0.0209 +ij[1169] = 2 +id[1170] = "2428-12-22T00:05:45" +ik[1170] = 15.992 +il[1170] = -141 +im[1170] = 0 +ij[1170] = 4 +id[1171] = "2429-04-01T05:21:24" +ik[1171] = 11.061 +il[1171] = -34 +im[1171] = 0.0223 +ij[1171] = 1 +id[1172] = "2429-11-14T10:22:04" +ik[1172] = 10.817 +il[1172] = 137 +im[1172] = 0.0247 +ij[1172] = 2 +id[1173] = "2429-11-30T21:11:31" +ik[1173] = 17.942 +il[1173] = 36 +im[1173] = 0 +ij[1173] = 3 +id[1174] = "2430-05-04T11:54:57" +ik[1174] = 10.87 +il[1174] = 172 +im[1174] = 0.0184 +ij[1174] = 1 +id[1175] = "2430-12-15T05:13:29" +ik[1175] = 10.516 +il[1175] = -14 +im[1175] = 0.0268 +ij[1175] = 2 +id[1176] = "2431-03-13T20:07:52" +ik[1176] = 16.872 +il[1176] = -70 +im[1176] = 0 +ij[1176] = 4 +id[1177] = "2431-06-05T15:52:59" +ik[1177] = 10.753 +il[1177] = -100 +im[1177] = 0.0115 +ij[1177] = 1 +id[1178] = "2432-01-13T19:57:04" +ik[1178] = 10.385 +il[1178] = 133 +im[1178] = 0.0161 +ij[1178] = 2 +id[1179] = "2432-02-24T21:00:00" +ik[1179] = 15.709 +il[1179] = 89 +im[1179] = 0 +ij[1179] = 3 +id[1180] = "2432-07-06T06:29:31" +ik[1180] = 10.733 +il[1180] = 112 +im[1180] = 0.0023 +ij[1180] = 1 +id[1181] = "2433-02-11T10:02:38" +ik[1181] = 10.443 +il[1181] = -56 +im[1181] = 0.0063 +ij[1181] = 2 +id[1182] = "2433-06-05T09:56:35" +ik[1182] = 17.897 +il[1182] = 133 +im[1182] = 0 +ij[1182] = 4 +id[1183] = "2433-08-06T23:10:45" +ik[1183] = 10.816 +il[1183] = -112 +im[1183] = 0.0125 +ij[1183] = 1 +id[1184] = "2434-03-14T02:58:07" +ik[1184] = 10.683 +il[1184] = -138 +im[1184] = 0.0236 +ij[1184] = 2 +id[1185] = "2434-05-03T19:09:33" +ik[1185] = 15.024 +il[1185] = -131 +im[1185] = 0 +ij[1185] = 3 +id[1186] = "2434-09-08T09:23:45" +ik[1186] = 10.983 +il[1186] = 110 +im[1186] = 0.0137 +ij[1186] = 1 +id[1187] = "2435-04-15T23:39:07" +ik[1187] = 11.063 +il[1187] = 65 +im[1187] = 0.0235 +ij[1187] = 2 +id[1188] = "2435-09-03T05:39:15" +ik[1188] = 17.915 +il[1188] = 97 +im[1188] = 0 +ij[1188] = 4 +id[1189] = "2435-10-12T01:19:03" +ik[1189] = 11.195 +il[1189] = -23 +im[1189] = 0.0198 +ij[1189] = 1 +id[1190] = "2436-05-20T15:20:09" +ik[1190] = 11.487 +il[1190] = 2 +im[1190] = 0.0207 +ij[1190] = 2 +id[1191] = "2436-07-14T18:35:51" +ik[1191] = 16.47 +il[1191] = 89 +im[1191] = 0 +ij[1191] = 3 +id[1192] = "2436-11-15T03:28:13" +ik[1192] = 11.383 +il[1192] = 45 +im[1192] = 0.0055 +ij[1192] = 1 +id[1193] = "2437-06-27T19:12:00" +ik[1193] = 11.795 +il[1193] = -81 +im[1193] = 0.0127 +ij[1193] = 2 +id[1194] = "2437-12-03T21:09:47" +ik[1194] = 16.713 +il[1194] = 129 +im[1194] = 0 +ij[1194] = 4 +id[1195] = "2437-12-21T08:05:51" +ik[1195] = 11.471 +il[1195] = -124 +im[1195] = 0.0039 +ij[1195] = 1 +id[1196] = "2438-08-05T22:24:48" +ik[1196] = 11.832 +il[1196] = 69 +im[1196] = 0.0284 +ij[1196] = 2 +id[1197] = "2438-10-18T04:01:12" +ik[1197] = 18.862 +il[1197] = -106 +im[1197] = 0 +ij[1197] = 3 +id[1198] = "2439-01-26T19:04:56" +ik[1198] = 11.417 +il[1198] = -165 +im[1198] = 0.0239 +ij[1198] = 1 +id[1199] = "2439-09-12T21:30:48" +ik[1199] = 11.579 +il[1199] = 162 +im[1199] = 0.0223 +ij[1199] = 2 +id[1200] = "2440-02-26T21:39:53" +ik[1200] = 15.939 +il[1200] = -43 +im[1200] = 0 +ij[1200] = 4 +id[1201] = "2440-03-02T13:07:32" +ik[1201] = 11.246 +il[1201] = 48 +im[1201] = 0.0251 +ij[1201] = 1 +id[1202] = "2440-10-17T06:11:48" +ik[1202] = 11.169 +il[1202] = -8 +im[1202] = 0.0062 +ij[1202] = 2 +id[1203] = "2441-01-30T02:42:25" +ik[1203] = 18.61 +il[1203] = 27 +im[1203] = 0 +ij[1203] = 3 +id[1204] = "2441-04-05T23:30:11" +ik[1204] = 11.032 +il[1204] = -33 +im[1204] = 0.0297 +ij[1204] = 1 +id[1205] = "2441-11-18T20:20:58" +ik[1205] = 10.768 +il[1205] = 74 +im[1205] = 0.0184 +ij[1205] = 2 +id[1206] = "2442-05-09T00:46:22" +ik[1206] = 10.849 +il[1206] = 4 +im[1206] = 0.0242 +ij[1206] = 1 +id[1207] = "2442-05-18T04:18:02" +ik[1207] = 16.527 +il[1207] = 156 +im[1207] = 0 +ij[1207] = 4 +id[1208] = "2442-12-19T09:05:11" +ik[1208] = 10.488 +il[1208] = 144 +im[1208] = 0.0243 +ij[1208] = 2 +id[1209] = "2443-05-02T12:09:30" +ik[1209] = 16.296 +il[1209] = -89 +im[1209] = 0 +ij[1209] = 3 +id[1210] = "2443-06-10T01:37:37" +ik[1210] = 10.744 +il[1210] = -155 +im[1210] = 0.0233 +ij[1210] = 1 +id[1211] = "2444-01-17T22:07:06" +ik[1211] = 10.382 +il[1211] = -7 +im[1211] = 0.0249 +ij[1211] = 2 +id[1212] = "2444-07-10T15:53:51" +ik[1212] = 10.738 +il[1212] = 71 +im[1212] = 0.0105 +ij[1212] = 1 +id[1213] = "2444-08-08T17:16:22" +ik[1213] = 17.641 +il[1213] = -180 +im[1213] = 0 +ij[1213] = 4 +id[1214] = "2445-02-15T14:58:07" +ik[1214] = 10.466 +il[1214] = 64 +im[1214] = 0.0023 +ij[1214] = 2 +id[1215] = "2445-07-13T04:05:39" +ik[1215] = 15.013 +il[1215] = 37 +im[1215] = 0 +ij[1215] = 3 +id[1216] = "2445-08-11T11:09:53" +ik[1216] = 10.834 +il[1216] = 115 +im[1216] = 0.0042 +ij[1216] = 1 +id[1217] = "2446-03-18T14:53:39" +ik[1217] = 10.728 +il[1217] = 89 +im[1217] = 0.0109 +ij[1217] = 2 +id[1218] = "2446-09-13T02:12:02" +ik[1218] = 11.011 +il[1218] = 160 +im[1218] = 0.0036 +ij[1218] = 1 +id[1219] = "2446-11-04T21:08:12" +ik[1219] = 18.065 +il[1219] = 146 +im[1219] = 0 +ij[1219] = 4 +id[1220] = "2447-04-20T21:27:21" +ik[1220] = 11.122 +il[1220] = -66 +im[1220] = 0.0149 +ij[1220] = 2 +id[1221] = "2447-09-20T08:25:43" +ik[1221] = 15.813 +il[1221] = -43 +im[1221] = 0 +ij[1221] = 3 +id[1222] = "2447-10-16T23:46:10" +ik[1222] = 11.224 +il[1222] = -177 +im[1222] = 0.0023 +ij[1222] = 1 +id[1223] = "2448-05-25T23:16:04" +ik[1223] = 11.541 +il[1223] = -136 +im[1223] = 0.002 +ij[1223] = 2 +id[1224] = "2448-11-20T06:34:50" +ik[1224] = 11.403 +il[1224] = 82 +im[1224] = 0.0094 +ij[1224] = 1 +id[1225] = "2449-02-04T20:51:21" +ik[1225] = 17.132 +il[1225] = -121 +im[1225] = 0 +ij[1225] = 4 +id[1226] = "2449-07-03T09:04:19" +ik[1226] = 11.818 +il[1226] = -74 +im[1226] = 0.025 +ij[1226] = 2 +id[1227] = "2449-12-16T15:11:48" +ik[1227] = 18.247 +il[1227] = -173 +im[1227] = 0 +ij[1227] = 3 +id[1228] = "2449-12-26T12:58:45" +ik[1228] = 11.473 +il[1228] = -150 +im[1228] = 0.0211 +ij[1228] = 1 +id[1229] = "2450-08-11T10:24:48" +ik[1229] = 11.813 +il[1229] = 146 +im[1229] = 0.0234 +ij[1229] = 2 +id[1230] = "2451-01-31T21:57:18" +ik[1230] = 11.399 +il[1230] = -119 +im[1230] = 0.0303 +ij[1230] = 1 +id[1231] = "2451-05-03T12:03:18" +ik[1231] = 16.029 +il[1231] = -45 +im[1231] = 0 +ij[1231] = 4 +id[1232] = "2451-09-18T01:05:48" +ik[1232] = 11.528 +il[1232] = -179 +im[1232] = 0.0047 +ij[1232] = 2 +id[1233] = "2452-03-07T11:09:53" +ik[1233] = 11.218 +il[1233] = -90 +im[1233] = 0.0271 +ij[1233] = 1 +id[1234] = "2452-03-30T02:49:37" +ik[1234] = 19.069 +il[1234] = 2 +im[1234] = 0 +ij[1234] = 3 +id[1235] = "2452-10-21T23:21:24" +ik[1235] = 11.11 +il[1235] = 30 +im[1235] = 0.0069 +ij[1235] = 2 +id[1236] = "2453-04-10T16:07:58" +ik[1236] = 11.004 +il[1236] = 23 +im[1236] = 0.029 +ij[1236] = 1 +id[1237] = "2453-07-22T19:45:59" +ik[1237] = 16.233 +il[1237] = 117 +im[1237] = 0 +ij[1237] = 4 +id[1238] = "2453-11-23T05:12:37" +ik[1238] = 10.72 +il[1238] = 50 +im[1238] = 0.0063 +ij[1238] = 2 +id[1239] = "2454-05-13T13:31:26" +ik[1239] = 10.829 +il[1239] = -157 +im[1239] = 0.0257 +ij[1239] = 1 +id[1240] = "2454-07-06T03:24:11" +ik[1240] = 17 +il[1240] = 31 +im[1240] = 0 +ij[1240] = 3 +id[1241] = "2454-12-23T13:35:54" +ik[1241] = 10.462 +il[1241] = -80 +im[1241] = 0.0181 +ij[1241] = 2 +id[1242] = "2455-06-14T12:47:13" +ik[1242] = 10.736 +il[1242] = 99 +im[1242] = 0.0285 +ij[1242] = 1 +id[1243] = "2455-10-13T12:58:19" +ik[1243] = 17.318 +il[1243] = 138 +im[1243] = 0 +ij[1243] = 4 +id[1244] = "2456-01-22T02:23:34" +ik[1244] = 10.382 +il[1244] = 137 +im[1244] = 0.0284 +ij[1244] = 2 +id[1245] = "2456-07-15T03:52:59" +ik[1245] = 10.746 +il[1245] = -66 +im[1245] = 0.0197 +ij[1245] = 1 +id[1246] = "2456-09-21T05:18:23" +ik[1246] = 15.202 +il[1246] = 126 +im[1246] = 0 +ij[1246] = 3 +id[1247] = "2457-02-19T22:57:30" +ik[1247] = 10.492 +il[1247] = 70 +im[1247] = 0.0115 +ij[1247] = 2 +id[1248] = "2457-08-16T01:51:44" +ik[1248] = 10.854 +il[1248] = -121 +im[1248] = 0.0185 +ij[1248] = 1 +id[1249] = "2458-01-07T02:58:33" +ik[1249] = 18.072 +il[1249] = 35 +im[1249] = 0 +ij[1249] = 4 +id[1250] = "2458-03-23T05:35:31" +ik[1250] = 10.777 +il[1250] = -145 +im[1250] = 0.0049 +ij[1250] = 2 +id[1251] = "2458-09-17T20:36:48" +ik[1251] = 11.039 +il[1251] = 152 +im[1251] = 0.0083 +ij[1251] = 1 +id[1252] = "2458-11-27T21:33:59" +ik[1252] = 15.334 +il[1252] = -88 +im[1252] = 0 +ij[1252] = 3 +id[1253] = "2459-04-25T20:42:08" +ik[1253] = 11.182 +il[1253] = 111 +im[1253] = 0.0036 +ij[1253] = 2 +id[1254] = "2459-10-21T22:00:54" +ik[1254] = 11.252 +il[1254] = 36 +im[1254] = 0.0171 +ij[1254] = 1 +id[1255] = "2460-04-08T03:11:57" +ik[1255] = 17.533 +il[1255] = -102 +im[1255] = 0 +ij[1255] = 4 +id[1256] = "2460-05-31T06:23:19" +ik[1256] = 11.592 +il[1256] = 113 +im[1256] = 0.0206 +ij[1256] = 2 +id[1257] = "2460-11-25T07:35:02" +ik[1257] = 11.421 +il[1257] = -165 +im[1257] = 0.0204 +ij[1257] = 1 +id[1258] = "2461-02-15T14:51:30" +ik[1258] = 17.465 +il[1258] = -123 +im[1258] = 0 +ij[1258] = 3 +id[1259] = "2461-07-08T19:40:13" +ik[1259] = 11.836 +il[1259] = 52 +im[1259] = 0.0284 +ij[1259] = 2 +id[1260] = "2461-12-31T14:16:30" +ik[1260] = 11.471 +il[1260] = -49 +im[1260] = 0.0308 +ij[1260] = 1 +id[1261] = "2462-07-07T06:30:57" +ik[1261] = 16.261 +il[1261] = -46 +im[1261] = 0 +ij[1261] = 4 +id[1262] = "2462-08-16T17:39:07" +ik[1262] = 11.788 +il[1262] = 33 +im[1262] = 0.0116 +ij[1262] = 2 +id[1263] = "2463-02-05T20:36:48" +ik[1263] = 11.38 +il[1263] = 79 +im[1263] = 0.0275 +ij[1263] = 1 +id[1264] = "2463-05-28T06:12:23" +ik[1264] = 19.206 +il[1264] = 9 +im[1264] = 0 +ij[1264] = 3 +id[1265] = "2463-09-22T23:52:22" +ik[1265] = 11.475 +il[1265] = 15 +im[1265] = 0.016 +ij[1265] = 2 +id[1266] = "2464-03-12T05:28:27" +ik[1266] = 11.188 +il[1266] = -96 +im[1266] = 0.0221 +ij[1266] = 1 +id[1267] = "2464-09-26T11:34:22" +ik[1267] = 16.025 +il[1267] = 65 +im[1267] = 0 +ij[1267] = 4 +id[1268] = "2464-10-26T12:47:13" +ik[1268] = 11.052 +il[1268] = -158 +im[1268] = 0.0154 +ij[1268] = 2 +id[1269] = "2465-04-15T06:12:40" +ik[1269] = 10.976 +il[1269] = 172 +im[1269] = 0.0206 +ij[1269] = 1 +id[1270] = "2465-09-06T11:14:03" +ik[1270] = 17.756 +il[1270] = -2 +im[1270] = 0 +ij[1270] = 3 +id[1271] = "2465-11-27T11:48:46" +ik[1271] = 10.675 +il[1271] = 111 +im[1271] = 0.0092 +ij[1271] = 2 +id[1272] = "2466-05-18T00:42:46" +ik[1272] = 10.81 +il[1272] = 94 +im[1272] = 0.0217 +ij[1272] = 1 +id[1273] = "2466-12-17T11:40:33" +ik[1273] = 16.961 +il[1273] = -12 +im[1273] = 0 +ij[1273] = 4 +id[1274] = "2466-12-27T16:50:26" +ik[1274] = 10.44 +il[1274] = 101 +im[1274] = 0.012 +ij[1274] = 2 +id[1275] = "2467-06-18T22:54:54" +ik[1275] = 10.731 +il[1275] = 31 +im[1275] = 0.0275 +ij[1275] = 1 +id[1276] = "2467-11-29T23:53:48" +ik[1276] = 15.583 +il[1276] = -116 +im[1276] = 0 +ij[1276] = 3 +id[1277] = "2468-01-26T05:48:46" +ik[1277] = 10.386 +il[1277] = -48 +im[1277] = 0.0272 +ij[1277] = 2 +id[1278] = "2468-07-19T14:35:57" +ik[1278] = 10.755 +il[1278] = -156 +im[1278] = 0.026 +ij[1278] = 1 +id[1279] = "2469-02-24T05:40:50" +ik[1279] = 10.521 +il[1279] = 124 +im[1279] = 0.0223 +ij[1279] = 2 +id[1280] = "2469-03-11T17:47:45" +ik[1280] = 17.948 +il[1280] = -40 +im[1280] = 0 +ij[1280] = 4 +id[1281] = "2469-08-20T14:35:05" +ik[1281] = 10.876 +il[1281] = 76 +im[1281] = 0.0258 +ij[1281] = 1 +id[1282] = "2470-02-05T14:22:33" +ik[1282] = 15.059 +il[1282] = -57 +im[1282] = 0 +ij[1282] = 3 +id[1283] = "2470-03-27T18:36:34" +ik[1283] = 10.827 +il[1283] = 42 +im[1283] = 0.0158 +ij[1283] = 2 +id[1284] = "2470-09-22T12:33:59" +ik[1284] = 11.068 +il[1284] = -127 +im[1284] = 0.0206 +ij[1284] = 1 +id[1285] = "2471-04-30T18:07:20" +ik[1285] = 11.242 +il[1285] = -6 +im[1285] = 0.0139 +ij[1285] = 2 +id[1286] = "2471-06-10T03:29:48" +ik[1286] = 17.85 +il[1286] = 136 +im[1286] = 0 +ij[1286] = 4 +id[1287] = "2471-10-26T18:01:09" +ik[1287] = 11.28 +il[1287] = -30 +im[1287] = 0.0275 +ij[1287] = 1 +id[1288] = "2472-04-19T21:20:52" +ik[1288] = 16.665 +il[1288] = 101 +im[1288] = 0 +ij[1288] = 3 +id[1289] = "2472-06-05T12:06:28" +ik[1289] = 11.639 +il[1289] = 56 +im[1289] = 0.0299 +ij[1289] = 2 +id[1290] = "2472-11-30T07:18:11" +ik[1290] = 11.436 +il[1290] = -5 +im[1290] = 0.0277 +ij[1290] = 1 +id[1291] = "2473-07-14T05:44:26" +ik[1291] = 11.848 +il[1291] = -164 +im[1291] = 0.0181 +ij[1291] = 2 +id[1292] = "2473-09-09T05:43:17" +ik[1292] = 16.611 +il[1292] = -69 +im[1292] = 0 +ij[1292] = 4 +id[1293] = "2474-01-05T15:45:56" +ik[1293] = 11.467 +il[1293] = 46 +im[1293] = 0.0297 +ij[1293] = 1 +id[1294] = "2474-07-25T14:42:00" +ik[1294] = 18.977 +il[1294] = -171 +im[1294] = 0 +ij[1294] = 3 +id[1295] = "2474-08-22T01:36:46" +ik[1295] = 11.758 +il[1295] = -106 +im[1295] = 0.007 +ij[1295] = 2 +id[1296] = "2475-02-10T21:13:06" +ik[1296] = 11.358 +il[1296] = -154 +im[1296] = 0.0146 +ij[1296] = 1 +id[1297] = "2475-09-28T00:42:46" +ik[1297] = 11.42 +il[1297] = 134 +im[1297] = 0.0279 +ij[1297] = 2 +id[1298] = "2475-12-02T11:03:33" +ik[1298] = 15.938 +il[1298] = 93 +im[1298] = 0 +ij[1298] = 4 +id[1299] = "2476-03-17T02:58:07" +ik[1299] = 11.159 +il[1299] = 144 +im[1299] = 0.012 +ij[1299] = 1 +id[1300] = "2476-10-31T05:13:29" +ik[1300] = 10.994 +il[1300] = -94 +im[1300] = 0.024 +ij[1300] = 2 +id[1301] = "2476-11-06T05:40:42" +ik[1301] = 18.455 +il[1301] = -119 +im[1301] = 0 +ij[1301] = 3 +id[1302] = "2477-04-19T23:49:46" +ik[1302] = 10.949 +il[1302] = -168 +im[1302] = 0.005 +ij[1302] = 1 +id[1303] = "2477-12-01T21:07:55" +ik[1303] = 10.633 +il[1303] = 69 +im[1303] = 0.0214 +ij[1303] = 2 +id[1304] = "2478-02-20T21:48:23" +ik[1304] = 16.61 +il[1304] = 142 +im[1304] = 0 +ij[1304] = 4 +id[1305] = "2478-05-22T14:36:57" +ik[1305] = 10.794 +il[1305] = -111 +im[1305] = 0.0148 +ij[1305] = 1 +id[1306] = "2478-12-31T21:41:28" +ik[1306] = 10.421 +il[1306] = -136 +im[1306] = 0.0052 +ij[1306] = 2 +id[1307] = "2479-02-05T04:35:19" +ik[1307] = 16.131 +il[1307] = -63 +im[1307] = 0 +ij[1307] = 3 +id[1308] = "2479-06-23T09:52:59" +ik[1308] = 10.728 +il[1308] = -68 +im[1308] = 0.02 +ij[1308] = 1 +id[1309] = "2480-01-30T09:07:55" +ik[1309] = 10.393 +il[1309] = 130 +im[1309] = 0.0212 +ij[1309] = 2 +id[1310] = "2480-05-14T18:53:16" +ik[1310] = 17.714 +il[1310] = -128 +im[1310] = 0 +ij[1310] = 4 +id[1311] = "2480-07-24T00:05:36" +ik[1311] = 10.766 +il[1311] = 158 +im[1311] = 0.0264 +ij[1311] = 1 +id[1312] = "2481-02-28T10:53:11" +ik[1312] = 10.554 +il[1312] = -122 +im[1312] = 0.0281 +ij[1312] = 2 +id[1313] = "2481-04-16T16:39:47" +ik[1313] = 14.995 +il[1313] = -8 +im[1313] = 0 +ij[1313] = 3 +id[1314] = "2481-08-25T00:36:34" +ik[1314] = 10.899 +il[1314] = 15 +im[1314] = 0.0276 +ij[1314] = 1 +id[1315] = "2482-04-01T05:16:56" +ik[1315] = 10.879 +il[1315] = -46 +im[1315] = 0.0221 +ij[1315] = 2 +id[1316] = "2482-08-11T04:21:12" +ik[1316] = 18.042 +il[1316] = -5 +im[1316] = 0 +ij[1316] = 4 +id[1317] = "2482-09-27T01:28:50" +ik[1317] = 11.098 +il[1317] = 63 +im[1317] = 0.0279 +ij[1317] = 1 +id[1318] = "2483-05-05T13:23:31" +ik[1318] = 11.3 +il[1318] = -48 +im[1318] = 0.0268 +ij[1318] = 2 +id[1319] = "2483-06-25T09:37:00" +ik[1319] = 15.963 +il[1319] = 175 +im[1319] = 0 +ij[1319] = 3 +id[1320] = "2483-10-31T11:35:31" +ik[1320] = 11.307 +il[1320] = -8 +im[1320] = 0.03 +ij[1320] = 1 +id[1321] = "2484-06-10T16:16:01" +ik[1321] = 11.683 +il[1321] = 56 +im[1321] = 0.0289 +ij[1321] = 2 +id[1322] = "2484-11-11T01:09:15" +ik[1322] = 17.029 +il[1322] = -165 +im[1322] = 0 +ij[1322] = 4 +id[1323] = "2484-12-05T05:41:42" +ik[1323] = 11.449 +il[1323] = -157 +im[1323] = 0.0256 +ij[1323] = 1 +id[1324] = "2485-07-19T14:53:39" +ik[1324] = 11.855 +il[1324] = 14 +im[1324] = 0.0033 +ij[1324] = 2 +id[1325] = "2485-09-22T12:07:20" +ik[1325] = 18.423 +il[1325] = -100 +im[1325] = 0 +ij[1325] = 3 +id[1326] = "2486-01-10T16:58:22" +ik[1326] = 11.46 +il[1326] = 152 +im[1326] = 0.0188 +ij[1326] = 1 +id[1327] = "2486-08-27T09:03:27" +ik[1327] = 11.724 +il[1327] = 134 +im[1327] = 0.0247 +ij[1327] = 2 +id[1328] = "2487-02-06T03:50:15" +ik[1328] = 15.991 +il[1328] = 4 +im[1328] = 0 +ij[1328] = 4 +id[1329] = "2487-02-15T21:57:27" +ik[1329] = 11.334 +il[1329] = -31 +im[1329] = 0.0015 +ij[1329] = 1 +id[1330] = "2487-10-03T01:09:24" +ik[1330] = 11.362 +il[1330] = -93 +im[1330] = 0.0302 +ij[1330] = 2 +id[1331] = "2488-01-05T14:58:07" +ik[1331] = 18.979 +il[1331] = -116 +im[1331] = 0 +ij[1331] = 3 +id[1332] = "2488-03-22T00:45:30" +ik[1332] = 11.129 +il[1332] = 17 +im[1332] = 0.0045 +ij[1332] = 1 +id[1333] = "2488-11-04T21:14:58" +ik[1333] = 10.938 +il[1333] = -17 +im[1333] = 0.027 +ij[1333] = 2 +id[1334] = "2489-04-24T17:33:47" +ik[1334] = 10.924 +il[1334] = -151 +im[1334] = 0.0104 +ij[1334] = 1 +id[1335] = "2489-04-27T16:22:13" +ik[1335] = 16.303 +il[1335] = -9 +im[1335] = 0 +ij[1335] = 4 +id[1336] = "2489-12-06T06:13:40" +ik[1336] = 10.593 +il[1336] = 41 +im[1336] = 0.0269 +ij[1336] = 2 +id[1337] = "2490-04-11T12:51:41" +ik[1337] = 16.808 +il[1337] = 159 +im[1337] = 0 +ij[1337] = 3 +id[1338] = "2490-05-27T04:31:52" +ik[1338] = 10.779 +il[1338] = 44 +im[1338] = 0.0035 +ij[1338] = 1 +id[1339] = "2491-01-05T02:39:33" +ik[1339] = 10.406 +il[1339] = -18 +im[1339] = 0.0063 +ij[1339] = 2 +id[1340] = "2491-06-27T21:22:53" +ik[1340] = 10.727 +il[1340] = 174 +im[1340] = 0.0072 +ij[1340] = 1 +id[1341] = "2491-07-19T12:54:17" +ik[1341] = 17.406 +il[1341] = -108 +im[1341] = 0 +ij[1341] = 4 +id[1342] = "2492-02-03T13:37:37" +ik[1342] = 10.404 +il[1342] = -94 +im[1342] = 0.0117 +ij[1342] = 2 +id[1343] = "2492-06-25T20:44:00" +ik[1343] = 15.134 +il[1343] = -23 +im[1343] = 0 +ij[1343] = 3 +id[1344] = "2492-07-28T11:20:32" +ik[1344] = 10.778 +il[1344] = 49 +im[1344] = 0.0223 +ij[1344] = 1 +id[1345] = "2493-03-04T19:00:28" +ik[1345] = 10.59 +il[1345] = -117 +im[1345] = 0.0286 +ij[1345] = 2 +id[1346] = "2493-08-29T14:08:35" +ik[1346] = 10.923 +il[1346] = 180 +im[1346] = 0.0237 +ij[1346] = 1 +id[1347] = "2493-10-13T03:39:44" +ik[1347] = 18.085 +il[1347] = 121 +im[1347] = 0 +ij[1347] = 4 +id[1348] = "2494-04-05T20:58:59" +ik[1348] = 10.934 +il[1348] = 43 +im[1348] = 0.0264 +ij[1348] = 2 +id[1349] = "2494-09-01T10:14:18" +ik[1349] = 15.436 +il[1349] = -137 +im[1349] = 0 +ij[1349] = 3 +id[1350] = "2494-10-01T19:35:02" +ik[1350] = 11.128 +il[1350] = 66 +im[1350] = 0.0281 +ij[1350] = 1 +id[1351] = "2495-05-10T15:07:55" +ik[1351] = 11.359 +il[1351] = 40 +im[1351] = 0.0304 +ij[1351] = 2 +id[1352] = "2495-11-05T11:16:04" +ik[1352] = 11.333 +il[1352] = 153 +im[1352] = 0.0239 +ij[1352] = 1 +id[1353] = "2496-01-13T10:53:11" +ik[1353] = 17.441 +il[1353] = 91 +im[1353] = 0 +ij[1353] = 4 +id[1354] = "2496-06-16T02:59:51" +ik[1354] = 11.723 +il[1354] = 177 +im[1354] = 0.0146 +ij[1354] = 2 +id[1355] = "2496-11-22T03:19:26" +ik[1355] = 17.67 +il[1355] = -103 +im[1355] = 0 +ij[1355] = 3 +id[1356] = "2496-12-10T09:32:41" +ik[1356] = 11.46 +il[1356] = -147 +im[1356] = 0.0167 +ij[1356] = 1 +id[1357] = "2497-07-25T04:44:15" +ik[1357] = 11.855 +il[1357] = 22 +im[1357] = 0.0137 +ij[1357] = 2 +id[1358] = "2498-01-15T21:38:52" +ik[1358] = 11.451 +il[1358] = 133 +im[1358] = 0.0028 +ij[1358] = 1 +id[1359] = "2498-04-12T08:25:35" +ik[1359] = 16.189 +il[1359] = -3 +im[1359] = 0 +ij[1359] = 4 +id[1360] = "2498-09-01T18:04:45" +ik[1360] = 11.684 +il[1360] = -43 +im[1360] = 0.0309 +ij[1360] = 2 +id[1361] = "2499-02-20T23:37:23" +ik[1361] = 11.309 +il[1361] = 58 +im[1361] = 0.0142 +ij[1361] = 1 +id[1362] = "2499-03-05T03:33:41" +ik[1362] = 19.208 +il[1362] = -84 +im[1362] = 0 +ij[1362] = 3 +id[1363] = "2499-10-08T00:17:08" +ik[1363] = 11.303 +il[1363] = 88 +im[1363] = 0.0228 +ij[1363] = 2 +id[1364] = "2500-03-27T20:57:15" +ik[1364] = 11.1 +il[1364] = -59 +im[1364] = 0.021 +ij[1364] = 1 +id[1365] = "2500-07-03T11:37:32" +ik[1365] = 16.071 +il[1365] = 174 +im[1365] = 0 +ij[1365] = 4 +id[1366] = "2500-11-10T10:05:22" +ik[1366] = 10.883 +il[1366] = 178 +im[1366] = 0.0239 +ij[1366] = 2 +id[1367] = "2501-04-30T08:02:24" +ik[1367] = 10.899 +il[1367] = -14 +im[1367] = 0.0189 +ij[1367] = 1 +id[1368] = "2501-06-14T12:47:22" +ik[1368] = 17.559 +il[1368] = -97 +im[1368] = 0 +ij[1368] = 3 +id[1369] = "2501-12-11T11:34:39" +ik[1369] = 10.557 +il[1369] = 146 +im[1369] = 0.0275 +ij[1369] = 2 +id[1370] = "2502-06-01T14:52:48" +ik[1370] = 10.765 +il[1370] = -33 +im[1370] = 0.0113 +ij[1370] = 1 +id[1371] = "2502-09-23T10:57:47" +ik[1371] = 17.054 +il[1371] = 124 +im[1371] = 0 +ij[1371] = 4 +id[1372] = "2503-01-10T04:43:23" +ik[1372] = 10.394 +il[1372] = -154 +im[1372] = 0.018 +ij[1372] = 2 +id[1373] = "2503-07-03T06:23:19" +ik[1373] = 10.728 +il[1373] = 146 +im[1373] = 0.004 +ij[1373] = 1 +id[1374] = "2503-09-05T00:25:20" +ik[1374] = 15.468 +il[1374] = 126 +im[1374] = 0 +ij[1374] = 3 +id[1375] = "2504-02-08T16:59:22" +ik[1375] = 10.419 +il[1375] = 81 +im[1375] = 0.0034 +ij[1375] = 2 +id[1376] = "2504-08-02T21:56:35" +ik[1376] = 10.793 +il[1376] = -36 +im[1376] = 0.0126 +ij[1376] = 1 +id[1377] = "2504-12-16T17:23:25" +ik[1377] = 17.991 +il[1377] = 85 +im[1377] = 0 +ij[1377] = 4 +id[1378] = "2505-03-10T04:04:30" +ik[1378] = 10.629 +il[1378] = -147 +im[1378] = 0.0232 +ij[1378] = 2 +id[1379] = "2505-09-04T04:58:30" +ik[1379] = 10.948 +il[1379] = -58 +im[1379] = 0.0134 +ij[1379] = 1 +id[1380] = "2505-11-11T00:24:28" +ik[1380] = 15.108 +il[1380] = -9 +im[1380] = 0 +ij[1380] = 3 +id[1381] = "2506-04-11T15:21:10" +ik[1381] = 10.99 +il[1381] = 37 +im[1381] = 0.0236 +ij[1381] = 2 +id[1382] = "2506-10-07T16:07:58" +ik[1382] = 11.157 +il[1382] = -19 +im[1382] = 0.0209 +ij[1382] = 1 +id[1383] = "2507-03-17T16:44:32" +ik[1383] = 17.782 +il[1383] = 128 +im[1383] = 0 +ij[1383] = 4 +id[1384] = "2507-05-16T20:09:27" +ik[1384] = 11.417 +il[1384] = 6 +im[1384] = 0.0238 +ij[1384] = 2 +id[1385] = "2507-11-11T13:14:44" +ik[1385] = 11.356 +il[1385] = -129 +im[1385] = 0.0084 +ij[1385] = 1 +id[1386] = "2508-01-26T00:40:27" +ik[1386] = 16.866 +il[1386] = 92 +im[1386] = 0 +ij[1386] = 3 +id[1387] = "2508-06-22T15:58:19" +ik[1387] = 11.758 +il[1387] = -144 +im[1387] = 0.0068 +ij[1387] = 2 +id[1388] = "2508-12-16T14:38:41" +ik[1388] = 11.467 +il[1388] = 178 +im[1388] = 0.0016 +ij[1388] = 1 +id[1389] = "2509-06-16T17:24:17" +ik[1389] = 16.511 +il[1389] = -20 +im[1389] = 0 +ij[1389] = 4 +id[1390] = "2509-07-31T18:40:10" +ik[1390] = 11.849 +il[1390] = 27 +im[1390] = 0.027 +ij[1390] = 2 +id[1391] = "2510-01-22T02:02:24" +ik[1391] = 11.438 +il[1391] = 123 +im[1391] = 0.0217 +ij[1391] = 1 +id[1392] = "2510-05-03T12:15:41" +ik[1392] = 19.075 +il[1392] = 89 +im[1392] = 0 +ij[1392] = 3 +id[1393] = "2510-09-08T01:13:43" +ik[1393] = 11.64 +il[1393] = -153 +im[1393] = 0.0253 +ij[1393] = 2 +id[1394] = "2511-02-26T23:46:10" +ik[1394] = 11.283 +il[1394] = -158 +im[1394] = 0.0241 +ij[1394] = 1 +id[1395] = "2511-09-08T09:40:01" +ik[1395] = 15.95 +il[1395] = -105 +im[1395] = 0 +ij[1395] = 4 +id[1396] = "2511-10-13T20:58:07" +ik[1396] = 11.244 +il[1396] = -2 +im[1396] = 0.0075 +ij[1396] = 2 +id[1397] = "2512-04-01T15:30:48" +ik[1397] = 11.07 +il[1397] = -73 +im[1397] = 0.0295 +ij[1397] = 1 +id[1398] = "2512-08-14T14:58:24" +ik[1398] = 18.285 +il[1398] = -135 +im[1398] = 0 +ij[1398] = 3 +id[1399] = "2512-11-14T21:17:34" +ik[1399] = 10.831 +il[1399] = 69 +im[1399] = 0.0171 +ij[1399] = 2 +id[1400] = "2513-05-04T21:50:24" +ik[1400] = 10.876 +il[1400] = 141 +im[1400] = 0.0246 +ij[1400] = 1 +id[1401] = "2513-11-27T18:20:09" +ik[1401] = 16.698 +il[1401] = 19 +im[1401] = 0 +ij[1401] = 4 +id[1402] = "2513-12-15T16:51:18" +ik[1402] = 10.524 +il[1402] = -106 +im[1402] = 0.0236 +ij[1402] = 2 +id[1403] = "2514-06-06T02:09:27" +ik[1403] = 10.754 +il[1403] = -143 +im[1403] = 0.0236 +ij[1403] = 1 +id[1404] = "2514-11-11T18:09:30" +ik[1404] = 15.975 +il[1404] = 66 +im[1404] = 0 +ij[1404] = 3 +id[1405] = "2515-01-14T08:24:34" +ik[1405] = 10.386 +il[1405] = 10 +im[1405] = 0.0262 +ij[1405] = 2 +id[1406] = "2515-07-07T17:39:07" +ik[1406] = 10.73 +il[1406] = 37 +im[1406] = 0.0121 +ij[1406] = 1 +id[1407] = "2516-02-12T23:15:12" +ik[1407] = 10.437 +il[1407] = 155 +im[1407] = 0.0044 +ij[1407] = 2 +id[1408] = "2516-02-19T22:53:28" +ik[1408] = 17.783 +il[1408] = -162 +im[1408] = 0 +ij[1408] = 4 +id[1409] = "2516-08-07T11:26:44" +ik[1409] = 10.809 +il[1409] = 133 +im[1409] = 0.0038 +ij[1409] = 1 +id[1410] = "2517-01-20T09:59:36" +ik[1410] = 14.99 +il[1410] = 135 +im[1410] = 0 +ij[1410] = 3 +id[1411] = "2517-03-14T16:21:21" +ik[1411] = 10.671 +il[1411] = 66 +im[1411] = 0.0104 +ij[1411] = 2 +id[1412] = "2517-09-08T22:15:10" +ik[1412] = 10.975 +il[1412] = -26 +im[1412] = 0.0033 +ij[1412] = 1 +id[1413] = "2518-04-16T12:05:36" +ik[1413] = 11.048 +il[1413] = -56 +im[1413] = 0.0156 +ij[1413] = 2 +id[1414] = "2518-05-19T02:44:26" +ik[1414] = 18.004 +il[1414] = 15 +im[1414] = 0 +ij[1414] = 4 +id[1415] = "2518-10-12T13:35:02" +ik[1415] = 11.187 +il[1415] = -138 +im[1415] = 0.0055 +ij[1415] = 1 +id[1416] = "2519-04-01T07:02:38" +ik[1416] = 16.133 +il[1416] = 20 +im[1416] = 0 +ij[1416] = 3 +id[1417] = "2519-05-22T01:33:18" +ik[1417] = 11.474 +il[1417] = -38 +im[1417] = 0.0058 +ij[1417] = 2 +id[1418] = "2519-11-16T14:09:27" +ik[1418] = 11.378 +il[1418] = -12 +im[1418] = 0.0068 +ij[1418] = 1 +id[1419] = "2520-06-28T02:49:20" +ik[1419] = 11.789 +il[1419] = -27 +im[1419] = 0.0212 +ij[1419] = 2 +id[1420] = "2520-08-18T23:03:15" +ik[1420] = 16.916 +il[1420] = -127 +im[1420] = 0 +ij[1420] = 4 +id[1421] = "2520-12-21T16:46:59" +ik[1421] = 11.472 +il[1421] = -110 +im[1421] = 0.0171 +ij[1421] = 1 +id[1422] = "2521-07-01T03:38:26" +ik[1422] = 18.596 +il[1422] = 20 +im[1422] = 0 +ij[1422] = 3 +id[1423] = "2521-08-06T04:13:17" +ik[1423] = 11.837 +il[1423] = -170 +im[1423] = 0.0267 +ij[1423] = 2 +id[1424] = "2522-01-27T02:14:47" +ik[1424] = 11.424 +il[1424] = -92 +im[1424] = 0.0296 +ij[1424] = 1 +id[1425] = "2522-09-13T03:15:50" +ik[1425] = 11.594 +il[1425] = -77 +im[1425] = 0.0098 +ij[1425] = 2 +id[1426] = "2522-11-12T23:44:00" +ik[1426] = 15.964 +il[1426] = -95 +im[1426] = 0 +ij[1426] = 4 +id[1427] = "2523-03-03T19:51:53" +ik[1427] = 11.255 +il[1427] = 133 +im[1427] = 0.0275 +ij[1427] = 1 +id[1428] = "2523-10-13T23:36:57" +ik[1428] = 18.869 +il[1428] = -108 +im[1428] = 0 +ij[1428] = 3 +id[1429] = "2523-10-18T13:20:55" +ik[1429] = 11.185 +il[1429] = 63 +im[1429] = 0.0061 +ij[1429] = 2 +id[1430] = "2524-04-06T06:53:25" +ik[1430] = 11.04 +il[1430] = 29 +im[1430] = 0.0296 +ij[1430] = 1 +id[1431] = "2524-11-19T05:39:59" +ik[1431] = 10.781 +il[1431] = 66 +im[1431] = 0.0062 +ij[1431] = 2 +id[1432] = "2525-02-01T03:56:09" +ik[1432] = 16.372 +il[1432] = -167 +im[1432] = 0 +ij[1432] = 4 +id[1433] = "2525-05-09T09:40:36" +ik[1433] = 10.853 +il[1433] = 11 +im[1433] = 0.0257 +ij[1433] = 1 +id[1434] = "2525-12-19T20:41:25" +ik[1434] = 10.494 +il[1434] = 53 +im[1434] = 0.016 +ij[1434] = 2 +id[1435] = "2526-01-16T08:55:58" +ik[1435] = 16.627 +il[1435] = 52 +im[1435] = 0 +ij[1435] = 3 +id[1436] = "2526-06-10T12:17:08" +ik[1436] = 10.744 +il[1436] = 152 +im[1436] = 0.0287 +ij[1436] = 1 +id[1437] = "2527-01-18T11:21:24" +ik[1437] = 10.381 +il[1437] = -157 +im[1437] = 0.0289 +ij[1437] = 2 +id[1438] = "2527-04-25T10:25:23" +ik[1438] = 17.489 +il[1438] = 92 +im[1438] = 0 +ij[1438] = 4 +id[1439] = "2527-07-12T03:57:27" +ik[1439] = 10.735 +il[1439] = -38 +im[1439] = 0.0201 +ij[1439] = 1 +id[1440] = "2528-02-17T04:37:12" +ik[1440] = 10.459 +il[1440] = -105 +im[1440] = 0.0136 +ij[1440] = 2 +id[1441] = "2528-03-31T14:42:43" +ik[1441] = 15.078 +il[1441] = 96 +im[1441] = 0 +ij[1441] = 3 +id[1442] = "2528-08-11T23:27:36" +ik[1442] = 10.827 +il[1442] = -3 +im[1442] = 0.0185 +ij[1442] = 1 +id[1443] = "2529-03-19T03:14:58" +ik[1443] = 10.716 +il[1443] = -30 +im[1443] = 0.0056 +ij[1443] = 2 +id[1444] = "2529-07-20T19:36:28" +ik[1444] = 18.086 +il[1444] = 15 +im[1444] = 0 +ij[1444] = 4 +id[1445] = "2529-09-13T13:12:51" +ik[1445] = 11.002 +il[1445] = 93 +im[1445] = 0.008 +ij[1445] = 1 +id[1446] = "2530-04-21T06:53:25" +ik[1446] = 11.107 +il[1446] = -78 +im[1446] = 0.0048 +ij[1446] = 2 +id[1447] = "2530-06-07T16:17:28" +ik[1447] = 15.554 +il[1447] = -95 +im[1447] = 0 +ij[1447] = 3 +id[1448] = "2530-10-17T08:26:18" +ik[1448] = 11.216 +il[1448] = -162 +im[1448] = 0.014 +ij[1448] = 1 +id[1449] = "2531-05-27T04:59:22" +ik[1449] = 11.527 +il[1449] = -14 +im[1449] = 0.0155 +ij[1449] = 2 +id[1450] = "2531-10-21T08:03:50" +ik[1450] = 17.337 +il[1450] = 155 +im[1450] = 0 +ij[1450] = 4 +id[1451] = "2531-11-21T12:49:58" +ik[1451] = 11.399 +il[1451] = -175 +im[1451] = 0.0182 +ij[1451] = 1 +id[1452] = "2532-07-03T12:05:45" +ik[1452] = 11.814 +il[1452] = 146 +im[1452] = 0.0283 +ij[1452] = 2 +id[1453] = "2532-08-30T03:04:53" +ik[1453] = 17.878 +il[1453] = -132 +im[1453] = 0 +ij[1453] = 3 +id[1454] = "2532-12-26T17:52:22" +ik[1454] = 11.475 +il[1454] = 1 +im[1454] = 0.0295 +ij[1454] = 1 +id[1455] = "2533-08-11T13:18:11" +ik[1455] = 11.82 +il[1455] = 11 +im[1455] = 0.0168 +ij[1455] = 2 +id[1456] = "2534-01-17T06:27:30" +ik[1456] = 16.125 +il[1456] = -180 +im[1456] = 0 +ij[1456] = 4 +id[1457] = "2534-02-01T03:12:23" +ik[1457] = 11.406 +il[1457] = 20 +im[1457] = 0.029 +ij[1457] = 1 +id[1458] = "2534-09-18T06:20:44" +ik[1458] = 11.543 +il[1458] = -40 +im[1458] = 0.012 +ij[1458] = 2 +id[1459] = "2534-12-11T15:36:51" +ik[1459] = 19.183 +il[1459] = 161 +im[1459] = 0 +ij[1459] = 3 +id[1460] = "2535-03-08T18:10:56" +ik[1460] = 11.227 +il[1460] = -16 +im[1460] = 0.0227 +ij[1460] = 1 +id[1461] = "2535-10-23T08:05:08" +ik[1461] = 11.126 +il[1461] = 43 +im[1461] = 0.0161 +ij[1461] = 2 +id[1462] = "2536-04-08T01:17:54" +ik[1462] = 16.119 +il[1462] = -60 +im[1462] = 0 +ij[1462] = 4 +id[1463] = "2536-04-11T01:34:10" +ik[1463] = 11.012 +il[1463] = 11 +im[1463] = 0.0216 +ij[1463] = 1 +id[1464] = "2536-11-23T16:55:46" +ik[1464] = 10.732 +il[1464] = -45 +im[1464] = 0.0105 +ij[1464] = 2 +id[1465] = "2537-03-21T01:54:11" +ik[1465] = 17.365 +il[1465] = -101 +im[1465] = 0 +ij[1465] = 3 +id[1466] = "2537-05-14T00:39:18" +ik[1466] = 10.833 +il[1466] = 127 +im[1466] = 0.0209 +ij[1466] = 1 +id[1467] = "2537-12-24T02:47:36" +ik[1467] = 10.468 +il[1467] = 131 +im[1467] = 0.0082 +ij[1467] = 2 +id[1468] = "2538-06-15T00:19:52" +ik[1468] = 10.737 +il[1468] = 11 +im[1468] = 0.0276 +ij[1468] = 1 +id[1469] = "2538-06-29T08:52:39" +ik[1469] = 17.145 +il[1469] = -49 +im[1469] = 0 +ij[1469] = 4 +id[1470] = "2539-01-22T15:07:03" +ik[1470] = 10.381 +il[1470] = 6 +im[1470] = 0.0269 +ij[1470] = 2 +id[1471] = "2539-06-10T00:52:16" +ik[1471] = 15.363 +il[1471] = 11 +im[1471] = 0 +ij[1471] = 3 +id[1472] = "2539-07-16T14:07:43" +ik[1472] = 10.742 +il[1472] = -108 +im[1472] = 0.0257 +ij[1472] = 1 +id[1473] = "2540-02-21T09:15:50" +ik[1473] = 10.484 +il[1473] = 29 +im[1473] = 0.0226 +ij[1473] = 2 +id[1474] = "2540-08-16T09:27:21" +ik[1474] = 10.847 +il[1474] = -67 +im[1474] = 0.0258 +ij[1474] = 1 +id[1475] = "2540-09-21T22:37:03" +ik[1475] = 18.027 +il[1475] = 7 +im[1475] = 0 +ij[1475] = 4 +id[1476] = "2541-03-23T12:10:56" +ik[1476] = 10.763 +il[1476] = -55 +im[1476] = 0.0156 +ij[1476] = 2 +id[1477] = "2541-08-15T13:36:37" +ik[1477] = 15.172 +il[1477] = -77 +im[1477] = 0 +ij[1477] = 3 +id[1478] = "2541-09-18T01:12:00" +ik[1478] = 11.031 +il[1478] = -43 +im[1478] = 0.0187 +ij[1478] = 1 +id[1479] = "2542-04-25T23:20:32" +ik[1479] = 11.165 +il[1479] = -15 +im[1479] = 0.0098 +ij[1479] = 2 +id[1480] = "2542-10-22T00:21:36" +ik[1480] = 11.246 +il[1480] = -80 +im[1480] = 0.0258 +ij[1480] = 1 +id[1481] = "2542-12-22T01:32:09" +ik[1481] = 17.709 +il[1481] = -80 +im[1481] = 0 +ij[1481] = 4 +id[1482] = "2543-06-01T06:19:52" +ik[1482] = 11.578 +il[1482] = 87 +im[1482] = 0.0274 +ij[1482] = 2 +id[1483] = "2543-10-31T22:07:49" +ik[1483] = 17.065 +il[1483] = -64 +im[1483] = 0 +ij[1483] = 3 +id[1484] = "2543-11-26T09:28:13" +ik[1484] = 11.418 +il[1484] = 96 +im[1484] = 0.0264 +ij[1484] = 1 +id[1485] = "2544-07-08T19:47:25" +ik[1485] = 11.833 +il[1485] = 17 +im[1485] = 0.0236 +ij[1485] = 2 +id[1486] = "2544-12-31T17:55:58" +ik[1486] = 11.474 +il[1486] = 150 +im[1486] = 0.031 +ij[1486] = 1 +id[1487] = "2545-03-22T14:02:15" +ik[1487] = 16.422 +il[1487] = -147 +im[1487] = 0 +ij[1487] = 4 +id[1488] = "2545-08-16T21:18:34" +ik[1488] = 11.797 +il[1488] = -130 +im[1488] = 0.0025 +ij[1488] = 2 +id[1489] = "2546-02-06T03:44:12" +ik[1489] = 11.387 +il[1489] = 150 +im[1489] = 0.0178 +ij[1489] = 1 +id[1490] = "2546-02-07T20:07:35" +ik[1490] = 19.143 +il[1490] = 126 +im[1490] = 0 +ij[1490] = 3 +id[1491] = "2546-09-23T08:37:49" +ik[1491] = 11.49 +il[1491] = 26 +im[1491] = 0.0265 +ij[1491] = 2 +id[1492] = "2547-03-13T16:32:00" +ik[1492] = 11.198 +il[1492] = -167 +im[1492] = 0.0134 +ij[1492] = 1 +id[1493] = "2547-06-14T00:44:29" +ik[1493] = 15.968 +il[1493] = -30 +im[1493] = 0 +ij[1493] = 4 +id[1494] = "2547-10-28T02:11:19" +ik[1494] = 11.067 +il[1494] = 46 +im[1494] = 0.0241 +ij[1494] = 2 +id[1495] = "2548-04-15T20:12:11" +ik[1495] = 10.984 +il[1495] = -5 +im[1495] = 0.0053 +ij[1495] = 1 +id[1496] = "2548-05-21T18:58:36" +ik[1496] = 18.107 +il[1496] = 41 +im[1496] = 0 +ij[1496] = 3 +id[1497] = "2548-11-28T03:38:00" +ik[1497] = 10.686 +il[1497] = -133 +im[1497] = 0.023 +ij[1497] = 2 +id[1498] = "2549-05-18T15:28:13" +ik[1498] = 10.814 +il[1498] = -110 +im[1498] = 0.0131 +ij[1498] = 1 +id[1499] = "2549-09-02T17:47:54" +ik[1499] = 16.789 +il[1499] = 150 +im[1499] = 0 +ij[1499] = 4 +id[1500] = "2549-12-28T08:36:05" +ik[1500] = 10.444 +il[1500] = -179 +im[1500] = 0.0033 +ij[1500] = 2 +id[1501] = "2550-06-19T12:19:00" +ik[1501] = 10.731 +il[1501] = -123 +im[1501] = 0.0197 +ij[1501] = 1 +id[1502] = "2550-08-17T06:40:10" +ik[1502] = 15.827 +il[1502] = -127 +im[1502] = 0 +ij[1502] = 3 +id[1503] = "2551-01-26T19:20:03" +ik[1503] = 10.383 +il[1503] = 151 +im[1503] = 0.0196 +ij[1503] = 2 +id[1504] = "2551-07-21T01:10:16" +ik[1504] = 10.75 +il[1504] = 150 +im[1504] = 0.0256 +ij[1504] = 1 +id[1505] = "2551-11-25T23:20:32" +ik[1505] = 17.845 +il[1505] = -67 +im[1505] = 0 +ij[1505] = 4 +id[1506] = "2552-02-25T15:46:48" +ik[1506] = 10.512 +il[1506] = 92 +im[1506] = 0.0279 +ij[1506] = 2 +id[1507] = "2552-08-20T21:54:51" +ik[1507] = 10.868 +il[1507] = 140 +im[1507] = 0.0279 +ij[1507] = 1 +id[1508] = "2552-10-24T17:54:05" +ik[1508] = 15 +il[1508] = -101 +im[1508] = 0 +ij[1508] = 3 +id[1509] = "2553-03-28T00:59:36" +ik[1509] = 10.812 +il[1509] = 140 +im[1509] = 0.0224 +ij[1509] = 2 +id[1510] = "2553-09-22T17:32:03" +ik[1510] = 11.06 +il[1510] = 22 +im[1510] = 0.0272 +ij[1510] = 1 +id[1511] = "2554-02-22T06:54:17" +ik[1511] = 17.965 +il[1511] = -25 +im[1511] = 0 +ij[1511] = 4 +id[1512] = "2554-04-30T21:37:09" +ik[1512] = 11.225 +il[1512] = -164 +im[1512] = 0.0247 +ij[1512] = 2 +id[1513] = "2554-10-26T22:02:47" +ik[1513] = 11.274 +il[1513] = 153 +im[1513] = 0.0301 +ij[1513] = 1 +id[1514] = "2555-01-04T13:00:28" +ik[1514] = 16.304 +il[1514] = 65 +im[1514] = 0 +ij[1514] = 3 +id[1515] = "2555-06-06T14:25:26" +ik[1515] = 11.627 +il[1515] = -57 +im[1515] = 0.0302 +ij[1515] = 2 +id[1516] = "2555-12-01T12:02:09" +ik[1516] = 11.434 +il[1516] = 153 +im[1516] = 0.0268 +ij[1516] = 1 +id[1517] = "2556-05-25T03:54:43" +ik[1517] = 16.811 +il[1517] = 169 +im[1517] = 0 +ij[1517] = 4 +id[1518] = "2556-07-14T09:17:42" +ik[1518] = 11.847 +il[1518] = 36 +im[1518] = 0.0085 +ij[1518] = 2 +id[1519] = "2557-01-05T22:39:56" +ik[1519] = 11.471 +il[1519] = 126 +im[1519] = 0.0222 +ij[1519] = 1 +id[1520] = "2557-04-07T11:34:48" +ik[1520] = 18.747 +il[1520] = 54 +im[1520] = 0 +ij[1520] = 3 +id[1521] = "2557-08-22T08:27:10" +ik[1521] = 11.768 +il[1521] = -24 +im[1521] = 0.0204 +ij[1521] = 2 +id[1522] = "2558-02-11T06:39:18" +ik[1522] = 11.366 +il[1522] = -166 +im[1522] = 0.0025 +ij[1522] = 1 +id[1523] = "2558-08-18T21:24:46" +ik[1523] = 15.947 +il[1523] = 101 +im[1523] = 0 +ij[1523] = 4 +id[1524] = "2558-09-28T11:08:09" +ik[1524] = 11.435 +il[1524] = 86 +im[1524] = 0.0306 +ij[1524] = 2 +id[1525] = "2559-03-18T14:34:22" +ik[1525] = 11.168 +il[1525] = 53 +im[1525] = 0.002 +ij[1525] = 1 +id[1526] = "2559-07-21T16:42:31" +ik[1526] = 18.74 +il[1526] = -46 +im[1526] = 0 +ij[1526] = 3 +id[1527] = "2559-11-01T18:06:37" +ik[1527] = 11.009 +il[1527] = 128 +im[1527] = 0.0268 +ij[1527] = 2 +id[1528] = "2560-04-20T12:21:36" +ik[1528] = 10.957 +il[1528] = 68 +im[1528] = 0.0102 +ij[1528] = 1 +id[1529] = "2560-11-07T03:59:19" +ik[1529] = 16.453 +il[1529] = -58 +im[1529] = 0 +ij[1529] = 4 +id[1530] = "2560-12-02T10:54:02" +ik[1530] = 10.643 +il[1530] = -97 +im[1530] = 0.028 +ij[1530] = 2 +id[1531] = "2561-05-23T02:51:04" +ik[1531] = 10.797 +il[1531] = 135 +im[1531] = 0.0037 +ij[1531] = 1 +id[1532] = "2561-10-22T11:11:45" +ik[1532] = 16.446 +il[1532] = 81 +im[1532] = 0 +ij[1532] = 3 +id[1533] = "2562-01-01T11:02:58" +ik[1533] = 10.425 +il[1533] = 69 +im[1533] = 0.0087 +ij[1533] = 2 +id[1534] = "2562-06-23T21:10:39" +ik[1534] = 10.727 +il[1534] = -146 +im[1534] = 0.0067 +ij[1534] = 1 +id[1535] = "2563-01-29T08:37:58" +ik[1535] = 17.57 +il[1535] = -92 +im[1535] = 0 +ij[1535] = 4 +id[1536] = "2563-01-30T21:29:13" +ik[1536] = 10.39 +il[1536] = 12 +im[1536] = 0.0089 +ij[1536] = 2 +id[1537] = "2563-07-25T10:33:44" +ik[1537] = 10.761 +il[1537] = 112 +im[1537] = 0.0215 +ij[1537] = 1 +id[1538] = "2564-01-04T01:36:54" +ik[1538] = 15.036 +il[1538] = 112 +im[1538] = 0 +ij[1538] = 3 +id[1539] = "2564-02-29T22:13:26" +ik[1539] = 10.544 +il[1539] = 157 +im[1539] = 0.0279 +ij[1539] = 2 +id[1540] = "2564-08-25T10:46:07" +ik[1540] = 10.891 +il[1540] = -27 +im[1540] = 0.0239 +ij[1540] = 1 +id[1541] = "2565-04-01T15:47:48" +ik[1541] = 10.865 +il[1541] = -98 +im[1541] = 0.0263 +ij[1541] = 2 +id[1542] = "2565-04-26T00:04:53" +ik[1542] = 18.081 +il[1542] = -37 +im[1542] = 0 +ij[1542] = 4 +id[1543] = "2565-09-27T11:48:54" +ik[1543] = 11.089 +il[1543] = 19 +im[1543] = 0.0279 +ij[1543] = 1 +id[1544] = "2566-03-12T14:37:58" +ik[1544] = 15.683 +il[1544] = -134 +im[1544] = 0 +ij[1544] = 3 +id[1545] = "2566-05-05T23:04:42" +ik[1545] = 11.285 +il[1545] = -67 +im[1545] = 0.0304 +ij[1545] = 2 +id[1546] = "2566-10-31T22:19:37" +ik[1546] = 11.3 +il[1546] = -67 +im[1546] = 0.0256 +ij[1546] = 1 +id[1547] = "2567-06-12T01:27:59" +ik[1547] = 11.673 +il[1547] = 52 +im[1547] = 0.0198 +ij[1547] = 2 +id[1548] = "2567-07-27T23:08:18" +ik[1548] = 17.232 +il[1548] = 80 +im[1548] = 0 +ij[1548] = 4 +id[1549] = "2567-12-06T16:39:56" +ik[1549] = 11.447 +il[1549] = 136 +im[1549] = 0.0183 +ij[1549] = 1 +id[1550] = "2568-06-06T06:43:55" +ik[1550] = 18.08 +il[1550] = 58 +im[1550] = 0 +ij[1550] = 3 +id[1551] = "2568-07-20T00:05:45" +ik[1551] = 11.855 +il[1551] = 10 +im[1551] = 0.0089 +ij[1551] = 2 +id[1552] = "2569-01-11T03:56:35" +ik[1552] = 11.464 +il[1552] = 84 +im[1552] = 0.0039 +ij[1552] = 1 +id[1553] = "2569-08-27T18:43:46" +ik[1553] = 11.734 +il[1553] = 113 +im[1553] = 0.0307 +ij[1553] = 2 +id[1554] = "2569-10-23T09:55:00" +ik[1554] = 16.07 +il[1554] = 166 +im[1554] = 0 +ij[1554] = 4 +id[1555] = "2570-02-16T08:48:28" +ik[1555] = 11.343 +il[1555] = -91 +im[1555] = 0.0123 +ij[1555] = 1 +id[1556] = "2570-09-18T12:54:34" +ik[1556] = 19.135 +il[1556] = 71 +im[1556] = 0 +ij[1556] = 3 +id[1557] = "2570-10-03T11:28:36" +ik[1557] = 11.378 +il[1557] = -137 +im[1557] = 0.0249 +ij[1557] = 2 +id[1558] = "2571-03-23T11:11:45" +ik[1558] = 11.138 +il[1558] = -35 +im[1558] = 0.0193 +ij[1558] = 1 +id[1559] = "2571-11-06T08:06:00" +ik[1559] = 10.953 +il[1559] = -80 +im[1559] = 0.0232 +ij[1559] = 2 +id[1560] = "2572-01-12T21:29:22" +ik[1560] = 16.177 +il[1560] = -171 +im[1560] = 0 +ij[1560] = 4 +id[1561] = "2572-04-25T03:31:49" +ik[1561] = 10.93 +il[1561] = 177 +im[1561] = 0.0196 +ij[1561] = 1 +id[1562] = "2572-12-06T17:33:04" +ik[1562] = 10.603 +il[1562] = -39 +im[1562] = 0.0279 +ij[1562] = 2 +id[1563] = "2572-12-25T15:04:36" +ik[1563] = 17.169 +il[1563] = -108 +im[1563] = 0 +ij[1563] = 3 +id[1564] = "2573-05-27T14:27:18" +ik[1564] = 10.781 +il[1564] = 14 +im[1564] = 0.0113 +ij[1564] = 1 +id[1565] = "2574-01-05T14:31:37" +ik[1565] = 10.408 +il[1565] = -119 +im[1565] = 0.0197 +ij[1565] = 2 +id[1566] = "2574-04-04T06:14:49" +ik[1566] = 17.236 +il[1566] = 157 +im[1566] = 0 +ij[1566] = 4 +id[1567] = "2574-06-28T07:53:36" +ik[1567] = 10.725 +il[1567] = 123 +im[1567] = 0.0051 +ij[1567] = 1 +id[1568] = "2575-02-04T02:15:47" +ik[1568] = 10.4 +il[1568] = 138 +im[1568] = 0.0018 +ij[1568] = 2 +id[1569] = "2575-03-14T22:15:18" +ik[1569] = 15.27 +il[1569] = 6 +im[1569] = 0 +ij[1569] = 3 +id[1570] = "2575-07-29T22:52:19" +ik[1570] = 10.773 +il[1570] = -39 +im[1570] = 0.012 +ij[1570] = 1 +id[1571] = "2576-03-05T08:00:40" +ik[1571] = 10.579 +il[1571] = 101 +im[1571] = 0.0224 +ij[1571] = 2 +id[1572] = "2576-06-28T09:18:43" +ik[1572] = 18.055 +il[1572] = 90 +im[1572] = 0 +ij[1572] = 4 +id[1573] = "2576-08-30T02:33:30" +ik[1573] = 10.915 +il[1573] = 60 +im[1573] = 0.0133 +ij[1573] = 1 +id[1574] = "2577-04-06T09:38:00" +ik[1574] = 10.919 +il[1574] = -85 +im[1574] = 0.0236 +ij[1574] = 2 +id[1575] = "2577-05-20T13:14:00" +ik[1575] = 15.249 +il[1575] = -162 +im[1575] = 0 +ij[1575] = 3 +id[1576] = "2577-10-02T08:00:40" +ik[1576] = 11.119 +il[1576] = -51 +im[1576] = 0.0215 +ij[1576] = 1 +id[1577] = "2578-05-11T02:09:36" +ik[1577] = 11.344 +il[1577] = -30 +im[1577] = 0.0259 +ij[1577] = 2 +id[1578] = "2578-09-28T04:19:46" +ik[1578] = 17.618 +il[1578] = 141 +im[1578] = 0 +ij[1578] = 4 +id[1579] = "2578-11-05T22:35:28" +ik[1579] = 11.326 +il[1579] = 72 +im[1579] = 0.0111 +ij[1579] = 1 +id[1580] = "2579-06-17T11:36:31" +ik[1580] = 11.714 +il[1580] = -166 +im[1580] = 0.0022 +ij[1580] = 2 +id[1581] = "2579-08-07T18:56:26" +ik[1581] = 17.28 +il[1581] = 13 +im[1581] = 0 +ij[1581] = 3 +id[1582] = "2579-12-11T19:05:57" +ik[1582] = 11.459 +il[1582] = -164 +im[1582] = 0.0058 +ij[1582] = 1 +id[1583] = "2580-07-25T11:17:57" +ik[1583] = 11.857 +il[1583] = 113 +im[1583] = 0.0233 +ij[1583] = 2 +id[1584] = "2580-12-27T00:35:08" +ik[1584] = 16.333 +il[1584] = -57 +im[1584] = 0 +ij[1584] = 4 +id[1585] = "2581-01-16T05:33:04" +ik[1585] = 11.456 +il[1585] = 175 +im[1585] = 0.0179 +ij[1585] = 1 +id[1586] = "2581-09-01T23:55:06" +ik[1586] = 11.696 +il[1586] = 74 +im[1586] = 0.0282 +ij[1586] = 2 +id[1587] = "2581-11-15T15:25:03" +ik[1587] = 19.192 +il[1587] = 109 +im[1587] = 0 +ij[1587] = 3 +id[1588] = "2582-02-21T06:34:59" +ik[1588] = 11.318 +il[1588] = 135 +im[1588] = 0.0224 +ij[1588] = 1 +id[1589] = "2582-10-08T07:00:37" +ik[1589] = 11.32 +il[1589] = 174 +im[1589] = 0.0107 +ij[1589] = 2 +id[1590] = "2583-03-19T14:33:47" +ik[1590] = 15.994 +il[1590] = 91 +im[1590] = 0 +ij[1590] = 4 +id[1591] = "2583-03-28T04:01:55" +ik[1591] = 11.108 +il[1591] = 14 +im[1591] = 0.0289 +ij[1591] = 1 +id[1592] = "2583-11-10T18:38:26" +ik[1592] = 10.898 +il[1592] = -163 +im[1592] = 0.0167 +ij[1592] = 2 +id[1593] = "2584-02-26T12:28:13" +ik[1593] = 17.924 +il[1593] = -122 +im[1593] = 0 +ij[1593] = 3 +id[1594] = "2584-04-29T16:14:18" +ik[1594] = 10.905 +il[1594] = 15 +im[1594] = 0.0247 +ij[1594] = 1 +id[1595] = "2584-12-10T22:15:10" +ik[1595] = 10.566 +il[1595] = 89 +im[1595] = 0.0229 +ij[1595] = 2 +id[1596] = "2585-06-01T00:44:38" +ik[1596] = 10.767 +il[1596] = -61 +im[1596] = 0.0235 +ij[1596] = 1 +id[1597] = "2585-06-08T07:23:57" +ik[1597] = 16.876 +il[1597] = -83 +im[1597] = 0 +ij[1597] = 4 +id[1598] = "2586-01-09T17:13:29" +ik[1598] = 10.396 +il[1598] = 83 +im[1598] = 0.027 +ij[1598] = 2 +id[1599] = "2586-05-22T09:33:07" +ik[1599] = 15.692 +il[1599] = 29 +im[1599] = 0 +ij[1599] = 3 +id[1600] = "2586-07-02T17:49:46" +ik[1600] = 10.725 +il[1600] = 63 +im[1600] = 0.0137 +ij[1600] = 1 +id[1601] = "2587-02-08T06:26:03" +ik[1601] = 10.414 +il[1601] = -75 +im[1601] = 0.0079 +ij[1601] = 2 +id[1602] = "2587-08-03T10:05:22" +ik[1602] = 10.787 +il[1602] = -147 +im[1602] = 0.0042 +ij[1602] = 1 +id[1603] = "2587-09-01T03:49:49" +ik[1603] = 17.902 +il[1603] = -119 +im[1603] = 0 +ij[1603] = 4 +id[1604] = "2588-03-09T16:55:55" +ik[1604] = 10.617 +il[1604] = 76 +im[1604] = 0.0101 +ij[1604] = 2 +id[1605] = "2588-07-29T11:13:55" +ik[1605] = 15.022 +il[1605] = 42 +im[1605] = 0 +ij[1605] = 3 +id[1606] = "2588-09-03T16:32:00" +ik[1606] = 10.94 +il[1606] = -146 +im[1606] = 0.0024 +ij[1606] = 1 +id[1607] = "2589-04-11T01:54:28" +ik[1607] = 10.975 +il[1607] = -16 +im[1607] = 0.016 +ij[1607] = 2 +id[1608] = "2589-10-07T01:41:13" +ik[1608] = 11.149 +il[1608] = -36 +im[1608] = 0.008 +ij[1608] = 1 +id[1609] = "2589-11-29T04:42:57" +ik[1609] = 17.909 +il[1609] = 16 +im[1609] = 0 +ij[1609] = 4 +id[1610] = "2590-05-16T03:03:36" +ik[1610] = 11.402 +il[1610] = 87 +im[1610] = 0.0118 +ij[1610] = 2 +id[1611] = "2590-10-10T13:57:38" +ik[1611] = 16.493 +il[1611] = 143 +im[1611] = 0 +ij[1611] = 3 +id[1612] = "2590-11-10T20:11:19" +ik[1612] = 11.351 +il[1612] = -51 +im[1612] = 0.0051 +ij[1612] = 1 +id[1613] = "2591-06-22T19:30:43" +ik[1613] = 11.75 +il[1613] = 58 +im[1613] = 0.0161 +ij[1613] = 2 +id[1614] = "2591-12-16T19:35:02" +ik[1614] = 11.467 +il[1614] = -32 +im[1614] = 0.0122 +ij[1614] = 1 +id[1615] = "2592-02-29T16:25:23" +ik[1615] = 16.705 +il[1615] = -173 +im[1615] = 0 +ij[1615] = 4 +id[1616] = "2592-07-30T20:53:48" +ik[1616] = 11.853 +il[1616] = -85 +im[1616] = 0.0286 +ij[1616] = 2 +id[1617] = "2593-01-12T23:34:22" +ik[1617] = 18.881 +il[1617] = -59 +im[1617] = 0 +ij[1617] = 3 +id[1618] = "2593-01-21T06:30:31" +ik[1618] = 11.444 +il[1618] = -70 +im[1618] = 0.0285 +ij[1618] = 1 +id[1619] = "2593-09-07T04:56:47" +ik[1619] = 11.654 +il[1619] = 42 +im[1619] = 0.0153 +ij[1619] = 2 +id[1620] = "2594-02-26T05:33:04" +ik[1620] = 11.292 +il[1620] = -38 +im[1620] = 0.0277 +ij[1620] = 1 +id[1621] = "2594-05-24T12:10:39" +ik[1621] = 15.938 +il[1621] = -173 +im[1621] = 0 +ij[1621] = 4 +id[1622] = "2594-10-13T03:54:51" +ik[1622] = 11.261 +il[1622] = 76 +im[1622] = 0.005 +ij[1622] = 2 +id[1623] = "2595-04-01T23:31:12" +ik[1623] = 11.078 +il[1623] = -33 +im[1623] = 0.0301 +ij[1623] = 1 +id[1624] = "2595-04-27T21:30:31" +ik[1624] = 18.597 +il[1624] = 101 +im[1624] = 0 +ij[1624] = 3 +id[1625] = "2595-11-15T07:39:30" +ik[1625] = 10.845 +il[1625] = 23 +im[1625] = 0.0048 +ij[1625] = 2 +id[1626] = "2596-05-04T08:05:08" +ik[1626] = 10.881 +il[1626] = 101 +im[1626] = 0.0258 +ij[1626] = 1 +id[1627] = "2596-08-12T20:23:16" +ik[1627] = 16.533 +il[1627] = -32 +im[1627] = 0 +ij[1627] = 4 +id[1628] = "2596-12-15T05:33:56" +ik[1628] = 10.532 +il[1628] = 123 +im[1628] = 0.0135 +ij[1628] = 2 +id[1629] = "2597-06-05T13:35:02" +ik[1629] = 10.755 +il[1629] = 135 +im[1629] = 0.0289 +ij[1629] = 1 +id[1630] = "2597-07-28T05:59:08" +ik[1630] = 16.274 +il[1630] = 21 +im[1630] = 0 +ij[1630] = 3 +id[1631] = "2598-01-13T21:32:41" +ik[1631] = 10.387 +il[1631] = -135 +im[1631] = 0.029 +ij[1631] = 2 +id[1632] = "2598-07-07T04:37:20" +ik[1632] = 10.728 +il[1632] = -31 +im[1632] = 0.0207 +ij[1632] = 1 +id[1633] = "2598-11-04T10:12:08" +ik[1633] = 17.647 +il[1633] = -38 +im[1633] = 0 +ij[1633] = 4 +id[1634] = "2599-02-12T10:45:15" +ik[1634] = 10.431 +il[1634] = 67 +im[1634] = 0.0153 +ij[1634] = 2 +id[1635] = "2599-08-07T20:18:23" +ik[1635] = 10.803 +il[1635] = 145 +im[1635] = 0.018 +ij[1635] = 1 +id[1636] = "2599-10-08T15:57:10" +ik[1636] = 15.006 +il[1636] = 3 +im[1636] = 0 +ij[1636] = 3 +id[1637] = "2600-03-15T00:26:55" +ik[1637] = 10.658 +il[1637] = 103 +im[1637] = 0.0055 +ij[1637] = 2 +id[1638] = "2600-09-09T03:53:08" +ik[1638] = 10.967 +il[1638] = 99 +im[1638] = 0.0072 +ij[1638] = 1 +id[1639] = "2601-01-31T08:30:28" +ik[1639] = 18.067 +il[1639] = 129 +im[1639] = 0 +ij[1639] = 4 +id[1640] = "2601-04-16T15:47:48" +ik[1640] = 11.032 +il[1640] = 139 +im[1640] = 0.0075 +ij[1640] = 2 +id[1641] = "2601-10-12T16:13:26" +ik[1641] = 11.179 +il[1641] = 96 +im[1641] = 0.0104 +ij[1641] = 1 +id[1642] = "2601-12-16T14:12:46" +ik[1642] = 15.824 +il[1642] = 143 +im[1642] = 0 +ij[1642] = 3 +id[1643] = "2602-05-22T01:28:50" +ik[1643] = 11.458 +il[1643] = -67 +im[1643] = 0.0088 +ij[1643] = 2 +id[1644] = "2602-11-16T15:05:19" +ik[1644] = 11.374 +il[1644] = -77 +im[1644] = 0.0148 +ij[1644] = 1 +id[1645] = "2603-05-04T03:59:45" +ik[1645] = 17.131 +il[1645] = 16 +im[1645] = 0 +ij[1645] = 4 +id[1646] = "2603-06-29T01:17:28" +ik[1646] = 11.782 +il[1646] = -3 +im[1646] = 0.026 +ij[1646] = 2 +id[1647] = "2603-12-22T18:15:33" +ik[1647] = 11.473 +il[1647] = 166 +im[1647] = 0.0272 +ij[1647] = 1 +id[1648] = "2604-03-13T23:23:51" +ik[1648] = 18.264 +il[1648] = -75 +im[1648] = 0 +ij[1648] = 3 +id[1649] = "2604-08-06T04:48:51" +ik[1649] = 11.843 +il[1649] = 135 +im[1649] = 0.0221 +ij[1649] = 2 +id[1650] = "2605-01-27T06:32:15" +ik[1650] = 11.43 +il[1650] = 79 +im[1650] = 0.0302 +ij[1650] = 1 +id[1651] = "2605-07-29T23:12:20" +ik[1651] = 16.025 +il[1651] = -54 +im[1651] = 0 +ij[1651] = 4 +id[1652] = "2605-09-13T08:40:33" +ik[1652] = 11.608 +il[1652] = 56 +im[1652] = 0.0065 +ij[1652] = 2 +id[1653] = "2606-03-04T04:02:47" +ik[1653] = 11.264 +il[1653] = 167 +im[1653] = 0.0239 +ij[1653] = 1 +id[1654] = "2606-06-26T21:44:47" +ik[1654] = 19.064 +il[1654] = 72 +im[1654] = 0 +ij[1654] = 3 +id[1655] = "2606-10-18T23:56:58" +ik[1655] = 11.201 +il[1655] = 5 +im[1655] = 0.0158 +ij[1655] = 2 +id[1656] = "2607-04-07T18:47:22" +ik[1656] = 11.049 +il[1656] = -73 +im[1656] = 0.0227 +ij[1656] = 1 +id[1657] = "2607-10-19T14:58:50" +ik[1657] = 16.239 +il[1657] = 176 +im[1657] = 0 +ij[1657] = 4 +id[1658] = "2607-11-20T20:02:32" +ik[1658] = 10.793 +il[1658] = -126 +im[1658] = 0.0117 +ij[1658] = 2 +id[1659] = "2608-05-09T23:38:24" +ik[1659] = 10.859 +il[1659] = -165 +im[1659] = 0.0202 +ij[1659] = 1 +id[1660] = "2608-10-02T02:11:11" +ik[1660] = 16.974 +il[1660] = -39 +im[1660] = 0 +ij[1660] = 3 +id[1661] = "2608-12-20T12:18:08" +ik[1661] = 10.501 +il[1661] = 177 +im[1661] = 0.0053 +ij[1661] = 2 +id[1662] = "2609-06-11T02:08:44" +ik[1662] = 10.745 +il[1662] = -24 +im[1662] = 0.0276 +ij[1662] = 1 +id[1663] = "2610-01-09T06:54:08" +ik[1663] = 17.325 +il[1663] = -116 +im[1663] = 0 +ij[1663] = 4 +id[1664] = "2610-01-19T01:44:49" +ik[1664] = 10.381 +il[1664] = 11 +im[1664] = 0.0261 +ij[1664] = 2 +id[1665] = "2610-07-12T15:35:25" +ik[1665] = 10.732 +il[1665] = -130 +im[1665] = 0.0255 +ij[1665] = 1 +id[1666] = "2610-12-18T17:06:17" +ik[1666] = 15.191 +il[1666] = 94 +im[1666] = 0 +ij[1666] = 3 +id[1667] = "2611-02-17T16:01:03" +ik[1667] = 10.451 +il[1667] = 175 +im[1667] = 0.0234 +ij[1667] = 2 +id[1668] = "2611-08-13T07:54:37" +ik[1668] = 10.821 +il[1668] = 20 +im[1668] = 0.0261 +ij[1668] = 1 +id[1669] = "2612-03-19T10:41:39" +ik[1669] = 10.702 +il[1669] = 30 +im[1669] = 0.0164 +ij[1669] = 2 +id[1670] = "2612-04-04T10:53:02" +ik[1670] = 18.076 +il[1670] = 144 +im[1670] = 0 +ij[1670] = 4 +id[1671] = "2612-09-13T18:32:15" +ik[1671] = 10.994 +il[1671] = -133 +im[1671] = 0.0178 +ij[1671] = 1 +id[1672] = "2613-02-23T00:15:15" +ik[1672] = 15.339 +il[1672] = -150 +im[1672] = 0 +ij[1672] = 3 +id[1673] = "2613-04-21T10:37:20" +ik[1673] = 11.09 +il[1673] = 113 +im[1673] = 0.0069 +ij[1673] = 2 +id[1674] = "2613-10-17T11:48:54" +ik[1674] = 11.209 +il[1674] = 45 +im[1674] = 0.0243 +ij[1674] = 1 +id[1675] = "2614-05-27T06:19:00" +ik[1675] = 11.513 +il[1675] = -92 +im[1675] = 0.0246 +ij[1675] = 2 +id[1676] = "2614-07-05T09:45:47" +ik[1676] = 17.533 +il[1676] = 55 +im[1676] = 0 +ij[1676] = 4 +id[1677] = "2614-11-21T15:55:43" +ik[1677] = 11.395 +il[1677] = 42 +im[1677] = 0.0249 +ij[1677] = 1 +id[1678] = "2615-05-14T23:47:02" +ik[1678] = 17.484 +il[1678] = -51 +im[1678] = 0 +ij[1678] = 3 +id[1679] = "2615-07-04T13:25:23" +ik[1679] = 11.808 +il[1679] = 67 +im[1679] = 0.0269 +ij[1679] = 2 +id[1680] = "2615-12-27T22:23:13" +ik[1680] = 11.476 +il[1680] = 167 +im[1680] = 0.0316 +ij[1680] = 1 +id[1681] = "2616-08-11T17:13:37" +ik[1681] = 11.826 +il[1681] = -162 +im[1681] = 0.007 +ij[1681] = 2 +id[1682] = "2616-10-02T22:31:00" +ik[1682] = 16.255 +il[1682] = 130 +im[1682] = 0 +ij[1682] = 4 +id[1683] = "2617-02-01T10:10:50" +ik[1683] = 11.413 +il[1683] = 96 +im[1683] = 0.0211 +ij[1683] = 1 +id[1684] = "2617-08-24T06:55:09" +ik[1684] = 19.214 +il[1684] = -131 +im[1684] = 0 +ij[1684] = 3 +id[1685] = "2617-09-18T14:05:08" +ik[1685] = 11.558 +il[1685] = 9 +im[1685] = 0.0243 +ij[1685] = 2 +id[1686] = "2618-03-09T03:45:04" +ik[1686] = 11.236 +il[1686] = -34 +im[1686] = 0.0146 +ij[1686] = 1 +id[1687] = "2618-10-23T19:04:04" +ik[1687] = 11.142 +il[1687] = -25 +im[1687] = 0.024 +ij[1687] = 2 +id[1688] = "2618-12-24T10:57:30" +ik[1688] = 16.03 +il[1688] = -27 +im[1688] = 0 +ij[1688] = 4 +id[1689] = "2619-04-12T12:43:46" +ik[1689] = 11.02 +il[1689] = -64 +im[1689] = 0.0073 +ij[1689] = 1 +id[1690] = "2619-11-25T05:33:56" +ik[1690] = 10.744 +il[1690] = -175 +im[1690] = 0.0236 +ij[1690] = 2 +id[1691] = "2619-12-04T14:29:54" +ik[1691] = 17.73 +il[1691] = 126 +im[1691] = 0 +ij[1691] = 3 +id[1692] = "2620-05-14T12:13:40" +ik[1692] = 10.838 +il[1692] = 37 +im[1692] = 0.0126 +ij[1692] = 1 +id[1693] = "2620-12-24T15:38:52" +ik[1693] = 10.474 +il[1693] = -8 +im[1693] = 0.0026 +ij[1693] = 2 +id[1694] = "2621-03-15T06:12:48" +ik[1694] = 16.969 +il[1694] = 71 +im[1694] = 0 +ij[1694] = 4 +id[1695] = "2621-06-15T11:11:45" +ik[1695] = 10.737 +il[1695] = -53 +im[1695] = 0.0198 +ij[1695] = 1 +id[1696] = "2622-01-23T03:08:55" +ik[1696] = 10.38 +il[1696] = -101 +im[1696] = 0.0181 +ij[1696] = 2 +id[1697] = "2622-02-25T12:49:58" +ik[1697] = 15.567 +il[1697] = 171 +im[1697] = 0 +ij[1697] = 3 +id[1698] = "2622-07-17T00:03:10" +ik[1698] = 10.738 +il[1698] = -135 +im[1698] = 0.0249 +ij[1698] = 1 +id[1699] = "2623-02-21T20:11:19" +ik[1699] = 10.476 +il[1699] = -37 +im[1699] = 0.0275 +ij[1699] = 2 +id[1700] = "2623-06-08T02:20:58" +ik[1700] = 17.952 +il[1700] = 45 +im[1700] = 0 +ij[1700] = 4 +id[1701] = "2623-08-17T18:47:22" +ik[1701] = 10.84 +il[1701] = -76 +im[1701] = 0.0282 +ij[1701] = 1 +id[1702] = "2624-03-23T21:59:19" +ik[1702] = 10.749 +il[1702] = -80 +im[1702] = 0.0229 +ij[1702] = 2 +id[1703] = "2624-05-03T19:10:16" +ik[1703] = 15.06 +il[1703] = 165 +im[1703] = 0 +ij[1703] = 3 +id[1704] = "2624-09-18T10:24:57" +ik[1704] = 11.022 +il[1704] = -47 +im[1704] = 0.0265 +ij[1704] = 1 +id[1705] = "2625-04-26T08:08:44" +ik[1705] = 11.149 +il[1705] = -5 +im[1705] = 0.0226 +ij[1705] = 2 +id[1706] = "2625-09-05T14:24:34" +ik[1706] = 17.85 +il[1706] = 136 +im[1706] = 0 +ij[1706] = 4 +id[1707] = "2625-10-22T09:52:16" +ik[1707] = 11.238 +il[1707] = -95 +im[1707] = 0.03 +ij[1707] = 1 +id[1708] = "2626-06-01T14:29:02" +ik[1708] = 11.566 +il[1708] = 121 +im[1708] = 0.0303 +ij[1708] = 2 +id[1709] = "2626-07-17T10:01:55" +ik[1709] = 16.685 +il[1709] = 37 +im[1709] = 0 +ij[1709] = 3 +id[1710] = "2626-11-26T19:20:03" +ik[1710] = 11.414 +il[1710] = 71 +im[1710] = 0.0275 +ij[1710] = 1 +id[1711] = "2627-07-10T03:49:32" +ik[1711] = 11.83 +il[1711] = 55 +im[1711] = 0.0144 +ij[1711] = 2 +id[1712] = "2627-12-07T02:00:48" +ik[1712] = 16.602 +il[1712] = -49 +im[1712] = 0 +ij[1712] = 4 +id[1713] = "2628-01-02T04:01:03" +ik[1713] = 11.477 +il[1713] = 111 +im[1713] = 0.0252 +ij[1713] = 1 +id[1714] = "2628-08-17T05:51:38" +ik[1714] = 11.804 +il[1714] = -110 +im[1714] = 0.0146 +ij[1714] = 2 +id[1715] = "2628-10-21T16:59:22" +ik[1715] = 18.997 +il[1715] = -8 +im[1715] = 0 +ij[1715] = 3 +id[1716] = "2629-02-06T13:52:45" +ik[1716] = 11.395 +il[1716] = 114 +im[1716] = 0.0041 +ij[1716] = 1 +id[1717] = "2629-09-23T18:04:53" +ik[1717] = 11.505 +il[1717] = 14 +im[1717] = 0.0307 +ij[1717] = 2 +id[1718] = "2630-02-28T09:25:37" +ik[1718] = 15.94 +il[1718] = 38 +im[1718] = 0 +ij[1718] = 4 +id[1719] = "2630-03-14T02:23:42" +ik[1719] = 11.207 +il[1719] = 165 +im[1719] = 0.0026 +ij[1719] = 1 +id[1720] = "2630-10-28T12:13:40" +ik[1720] = 11.083 +il[1720] = 10 +im[1720] = 0.0269 +ij[1720] = 2 +id[1721] = "2631-02-03T07:27:07" +ik[1721] = 18.437 +il[1721] = 62 +im[1721] = 0 +ij[1721] = 3 +id[1722] = "2631-04-17T05:35:39" +ik[1722] = 10.991 +il[1722] = -16 +im[1722] = 0.0096 +ij[1722] = 1 +id[1723] = "2631-11-29T14:05:08" +ik[1723] = 10.698 +il[1723] = 178 +im[1723] = 0.0288 +ij[1723] = 2 +id[1724] = "2632-05-19T00:34:07" +ik[1724] = 10.818 +il[1724] = -111 +im[1724] = 0.0028 +ij[1724] = 1 +id[1725] = "2632-05-19T14:59:08" +ik[1725] = 16.617 +il[1725] = -85 +im[1725] = 0 +ij[1725] = 4 +id[1726] = "2632-12-28T19:24:31" +ik[1726] = 10.449 +il[1726] = 157 +im[1726] = 0.0114 +ij[1726] = 2 +id[1727] = "2633-05-03T20:09:44" +ik[1727] = 16.111 +il[1727] = 128 +im[1727] = 0 +ij[1727] = 3 +id[1728] = "2633-06-19T21:32:41" +ik[1728] = 10.731 +il[1728] = -130 +im[1728] = 0.0064 +ij[1728] = 1 +id[1729] = "2634-01-27T06:44:38" +ik[1729] = 10.381 +il[1729] = 68 +im[1729] = 0.0063 +ij[1729] = 2 +id[1730] = "2634-07-21T11:10:01" +ik[1730] = 10.746 +il[1730] = 118 +im[1730] = 0.0205 +ij[1730] = 1 +id[1731] = "2634-08-11T09:58:27" +ik[1731] = 17.719 +il[1731] = 81 +im[1731] = 0 +ij[1731] = 4 +id[1732] = "2635-02-26T03:36:17" +ik[1732] = 10.503 +il[1732] = -8 +im[1732] = 0.0269 +ij[1732] = 2 +id[1733] = "2635-07-14T06:05:54" +ik[1733] = 14.989 +il[1733] = -99 +im[1733] = 0 +ij[1733] = 3 +id[1734] = "2635-08-22T08:58:16" +ik[1734] = 10.861 +il[1734] = 69 +im[1734] = 0.0241 +ij[1734] = 1 +id[1735] = "2636-03-28T12:45:38" +ik[1735] = 10.798 +il[1735] = 43 +im[1735] = 0.0265 +ij[1735] = 2 +id[1736] = "2636-09-23T05:01:14" +ik[1736] = 11.051 +il[1736] = -65 +im[1736] = 0.0276 +ij[1736] = 1 +id[1737] = "2636-11-07T02:35:22" +ik[1737] = 18.039 +il[1737] = -55 +im[1737] = 0 +ij[1737] = 4 +id[1738] = "2637-05-01T08:20:15" +ik[1738] = 11.21 +il[1738] = 135 +im[1738] = 0.0299 +ij[1738] = 2 +id[1739] = "2637-09-21T06:20:00" +ik[1739] = 15.982 +il[1739] = 180 +im[1739] = 0 +ij[1739] = 3 +id[1740] = "2637-10-27T09:00:00" +ik[1740] = 11.266 +il[1740] = 86 +im[1740] = 0.027 +ij[1740] = 1 +id[1741] = "2638-06-06T23:04:42" +ik[1741] = 11.616 +il[1741] = -41 +im[1741] = 0.0243 +ij[1741] = 2 +id[1742] = "2638-12-01T21:38:00" +ik[1742] = 11.431 +il[1742] = 135 +im[1742] = 0.0205 +ij[1742] = 1 +id[1743] = "2639-02-08T03:02:52" +ik[1743] = 17.017 +il[1743] = 12 +im[1743] = 0 +ij[1743] = 4 +id[1744] = "2639-07-15T15:50:24" +ik[1744] = 11.845 +il[1744] = 129 +im[1744] = 0.0027 +ij[1744] = 2 +id[1745] = "2639-12-20T14:11:28" +ik[1745] = 18.451 +il[1745] = 71 +im[1745] = 0 +ij[1745] = 3 +id[1746] = "2640-01-07T06:30:31" +ik[1746] = 11.474 +il[1746] = 171 +im[1746] = 0.0079 +ij[1746] = 1 +id[1747] = "2640-08-22T13:52:45" +ik[1747] = 11.777 +il[1747] = 109 +im[1747] = 0.0291 +ij[1747] = 2 +id[1748] = "2641-02-11T13:21:47" +ik[1748] = 11.374 +il[1748] = -80 +im[1748] = 0.0101 +ij[1748] = 1 +id[1749] = "2641-05-04T21:59:28" +ik[1749] = 15.988 +il[1749] = 102 +im[1749] = 0 +ij[1749] = 4 +id[1750] = "2641-09-28T16:55:03" +ik[1750] = 11.451 +il[1750] = -154 +im[1750] = 0.0273 +ij[1750] = 2 +id[1751] = "2642-03-18T20:55:40" +ik[1751] = 11.177 +il[1751] = 152 +im[1751] = 0.0164 +ij[1751] = 1 +id[1752] = "2642-04-03T09:31:06" +ik[1752] = 18.972 +il[1752] = -33 +im[1752] = 0 +ij[1752] = 3 +id[1753] = "2642-11-02T01:17:28" +ik[1753] = 11.025 +il[1753] = -166 +im[1753] = 0.0231 +ij[1753] = 2 +id[1754] = "2643-04-21T19:18:20" +ik[1754] = 10.963 +il[1754] = 146 +im[1754] = 0.0194 +ij[1754] = 1 +id[1755] = "2643-07-25T02:05:25" +ik[1755] = 16.304 +il[1755] = 34 +im[1755] = 0 +ij[1755] = 4 +id[1756] = "2643-12-03T20:01:40" +ik[1756] = 10.654 +il[1756] = -99 +im[1756] = 0.0283 +ij[1756] = 2 +id[1757] = "2644-05-23T11:09:10" +ik[1757] = 10.8 +il[1757] = 164 +im[1757] = 0.011 +ij[1757] = 1 +id[1758] = "2644-07-07T23:23:34" +ik[1758] = 16.79 +il[1758] = 173 +im[1758] = 0 +ij[1758] = 3 +id[1759] = "2645-01-01T22:06:23" +ik[1759] = 10.429 +il[1759] = -2 +im[1759] = 0.0211 +ij[1759] = 2 +id[1760] = "2645-06-24T07:10:24" +ik[1760] = 10.726 +il[1760] = 180 +im[1760] = 0.0066 +ij[1760] = 1 +id[1761] = "2645-10-15T00:07:46" +ik[1761] = 17.41 +il[1761] = -120 +im[1761] = 0 +ij[1761] = 4 +id[1762] = "2646-01-31T09:54:00" +ik[1762] = 10.387 +il[1762] = -108 +im[1762] = 0.0038 +ij[1762] = 2 +id[1763] = "2646-07-25T21:44:12" +ik[1763] = 10.756 +il[1763] = 36 +im[1763] = 0.0117 +ij[1763] = 1 +id[1764] = "2646-09-22T08:39:59" +ik[1764] = 15.124 +il[1764] = -60 +im[1764] = 0 +ij[1764] = 3 +id[1765] = "2647-03-02T10:41:48" +ik[1765] = 10.534 +il[1765] = 34 +im[1765] = 0.0214 +ij[1765] = 2 +id[1766] = "2647-08-26T21:53:08" +ik[1766] = 10.883 +il[1766] = -100 +im[1766] = 0.0135 +ij[1766] = 1 +id[1767] = "2648-01-09T22:52:36" +ik[1767] = 18.086 +il[1767] = -179 +im[1767] = 0 +ij[1767] = 4 +id[1768] = "2648-04-02T02:33:30" +ik[1768] = 10.85 +il[1768] = -158 +im[1768] = 0.0239 +ij[1768] = 2 +id[1769] = "2648-09-27T21:27:30" +ik[1769] = 11.081 +il[1769] = -2 +im[1769] = 0.0225 +ij[1769] = 1 +id[1770] = "2648-11-28T02:31:03" +ik[1770] = 15.445 +il[1770] = 29 +im[1770] = 0 +ij[1770] = 3 +id[1771] = "2649-05-06T06:35:51" +ik[1771] = 11.269 +il[1771] = -10 +im[1771] = 0.0278 +ij[1771] = 2 +id[1772] = "2649-11-01T05:26:52" +ik[1772] = 11.294 +il[1772] = 4 +im[1772] = 0.0147 +ij[1772] = 1 +id[1773] = "2650-04-11T07:34:27" +ik[1773] = 17.433 +il[1773] = 96 +im[1773] = 0 +ij[1773] = 4 +id[1774] = "2650-06-12T05:10:53" +ik[1774] = 11.662 +il[1774] = -113 +im[1774] = 0.0069 +ij[1774] = 2 +id[1775] = "2650-12-06T21:19:26" +ik[1775] = 11.446 +il[1775] = -65 +im[1775] = 0.0095 +ij[1775] = 1 +id[1776] = "2651-02-18T21:25:03" +ik[1776] = 17.696 +il[1776] = -3 +im[1776] = 0 +ij[1776] = 3 +id[1777] = "2651-07-21T01:24:31" +ik[1777] = 11.855 +il[1777] = -70 +im[1777] = 0.0176 +ij[1777] = 2 +id[1778] = "2652-01-12T07:21:56" +ik[1778] = 11.469 +il[1778] = -71 +im[1778] = 0.0134 +ij[1778] = 1 +id[1779] = "2652-07-08T22:39:21" +ik[1779] = 16.184 +il[1779] = -124 +im[1779] = 0 +ij[1779] = 4 +id[1780] = "2652-08-27T20:26:26" +ik[1780] = 11.745 +il[1780] = 20 +im[1780] = 0.0305 +ij[1780] = 2 +id[1781] = "2653-02-16T12:42:02" +ik[1781] = 11.351 +il[1781] = 94 +im[1781] = 0.0203 +ij[1781] = 1 +id[1782] = "2653-05-31T19:33:44" +ik[1782] = 19.211 +il[1782] = 92 +im[1782] = 0 +ij[1782] = 3 +id[1783] = "2653-10-03T15:57:36" +ik[1783] = 11.394 +il[1783] = 30 +im[1783] = 0.0136 +ij[1783] = 2 +id[1784] = "2654-03-23T17:05:42" +ik[1784] = 11.147 +il[1784] = 81 +im[1784] = 0.0282 +ij[1784] = 1 +id[1785] = "2654-09-28T23:23:42" +ik[1785] = 16.071 +il[1785] = 143 +im[1785] = 0 +ij[1785] = 4 +id[1786] = "2654-11-06T16:09:59" +ik[1786] = 10.968 +il[1786] = -43 +im[1786] = 0.0161 +ij[1786] = 2 +id[1787] = "2655-04-26T11:53:22" +ik[1787] = 10.937 +il[1787] = -156 +im[1787] = 0.0252 +ij[1787] = 1 +id[1788] = "2655-09-10T04:33:18" +ik[1788] = 17.538 +il[1788] = 87 +im[1788] = 0 +ij[1788] = 3 +id[1789] = "2655-12-08T04:32:52" +ik[1789] = 10.613 +il[1789] = -108 +im[1789] = 0.0222 +ij[1789] = 2 +id[1790] = "2656-05-28T00:41:11" +ik[1790] = 10.784 +il[1790] = -28 +im[1790] = 0.0234 +ij[1790] = 1 +id[1791] = "2656-12-19T01:57:38" +ik[1791] = 17.06 +il[1791] = -24 +im[1791] = 0 +ij[1791] = 4 +id[1792] = "2657-01-06T03:00:00" +ik[1792] = 10.412 +il[1792] = 119 +im[1792] = 0.0274 +ij[1792] = 2 +id[1793] = "2657-06-28T18:35:51" +ik[1793] = 10.724 +il[1793] = 64 +im[1793] = 0.0148 +ij[1793] = 1 +id[1794] = "2657-11-30T14:31:12" +ik[1794] = 15.452 +il[1794] = 11 +im[1794] = 0 +ij[1794] = 3 +id[1795] = "2658-02-04T14:01:40" +ik[1795] = 10.396 +il[1795] = 41 +im[1795] = 0.011 +ij[1795] = 2 +id[1796] = "2658-07-30T08:09:36" +ik[1796] = 10.768 +il[1796] = -46 +im[1796] = 0.0038 +ij[1796] = 1 +id[1797] = "2659-03-06T17:03:50" +ik[1797] = 10.568 +il[1797] = 102 +im[1797] = 0.0102 +ij[1797] = 2 +id[1798] = "2659-03-14T07:14:18" +ik[1798] = 17.995 +il[1798] = -21 +im[1798] = 0 +ij[1798] = 4 +id[1799] = "2659-08-31T08:58:16" +ik[1799] = 10.907 +il[1799] = 157 +im[1799] = 0.004 +ij[1799] = 1 +id[1800] = "2660-02-06T08:01:14" +ik[1800] = 15.111 +il[1800] = 110 +im[1800] = 0 +ij[1800] = 3 +id[1801] = "2660-04-06T14:21:07" +ik[1801] = 10.903 +il[1801] = 73 +im[1801] = 0.0169 +ij[1801] = 2 +id[1802] = "2660-10-02T10:57:38" +ik[1802] = 11.111 +il[1802] = 168 +im[1802] = 0.0112 +ij[1802] = 1 +id[1803] = "2661-05-11T02:13:12" +ik[1803] = 11.328 +il[1803] = -63 +im[1803] = 0.0171 +ij[1803] = 2 +id[1804] = "2661-06-11T23:31:46" +ik[1804] = 17.783 +il[1804] = -83 +im[1804] = 0 +ij[1804] = 4 +id[1805] = "2661-11-05T22:46:07" +ik[1805] = 11.321 +il[1805] = 35 +im[1805] = 0.0018 +ij[1805] = 1 +id[1806] = "2662-04-22T03:27:56" +ik[1806] = 16.88 +il[1806] = 26 +im[1806] = 0 +ij[1806] = 3 +id[1807] = "2662-06-17T08:37:06" +ik[1807] = 11.703 +il[1807] = -88 +im[1807] = 0.01 +ij[1807] = 2 +id[1808] = "2662-12-11T18:27:56" +ik[1808] = 11.458 +il[1808] = -172 +im[1808] = 0.007 +ij[1808] = 1 +id[1809] = "2663-07-26T08:39:41" +ik[1809] = 11.858 +il[1809] = 179 +im[1809] = 0.0284 +ij[1809] = 2 +id[1810] = "2663-09-11T21:26:12" +ik[1810] = 16.509 +il[1810] = -131 +im[1810] = 0 +ij[1810] = 4 +id[1811] = "2664-01-17T06:30:31" +ik[1811] = 11.46 +il[1811] = 110 +im[1811] = 0.0262 +ij[1811] = 1 +id[1812] = "2664-07-28T19:42:40" +ik[1812] = 19.084 +il[1812] = -145 +im[1812] = 0 +ij[1812] = 3 +id[1813] = "2664-09-02T01:10:24" +ik[1813] = 11.708 +il[1813] = -2 +im[1813] = 0.0211 +ij[1813] = 2 +id[1814] = "2665-02-21T11:08:18" +ik[1814] = 11.326 +il[1814] = -60 +im[1814] = 0.0274 +ij[1814] = 1 +id[1815] = "2665-10-08T13:41:22" +ik[1815] = 11.336 +il[1815] = -99 +im[1815] = 0.0037 +ij[1815] = 2 +id[1816] = "2665-12-03T19:46:16" +ik[1816] = 15.948 +il[1816] = -75 +im[1816] = 0 +ij[1816] = 4 +id[1817] = "2666-03-28T12:42:02" +ik[1817] = 11.117 +il[1817] = 29 +im[1817] = 0.0305 +ij[1817] = 1 +id[1818] = "2666-11-10T08:28:45" +ik[1818] = 18.268 +il[1818] = -14 +im[1818] = 0 +ij[1818] = 3 +id[1819] = "2666-11-11T06:04:01" +ik[1819] = 10.912 +il[1819] = 113 +im[1819] = 0.0051 +ij[1819] = 2 +id[1820] = "2667-05-01T04:01:03" +ik[1820] = 10.911 +il[1820] = -80 +im[1820] = 0.026 +ij[1820] = 1 +id[1821] = "2667-12-12T12:20:00" +ik[1821] = 10.575 +il[1821] = -92 +im[1821] = 0.0113 +ij[1821] = 2 +id[1822] = "2668-02-23T11:22:07" +ik[1822] = 16.705 +il[1822] = 157 +im[1822] = 0 +ij[1822] = 4 +id[1823] = "2668-06-01T13:38:38" +ik[1823] = 10.77 +il[1823] = 161 +im[1823] = 0.0289 +ij[1823] = 1 +id[1824] = "2669-01-10T07:21:56" +ik[1824] = 10.398 +il[1824] = -100 +im[1824] = 0.0285 +ij[1824] = 2 +id[1825] = "2669-02-06T10:35:11" +ik[1825] = 15.954 +il[1825] = -134 +im[1825] = 0 +ij[1825] = 3 +id[1826] = "2669-07-03T05:36:40" +ik[1826] = 10.723 +il[1826] = -34 +im[1826] = 0.0215 +ij[1826] = 1 +id[1827] = "2670-02-08T18:23:28" +ik[1827] = 10.409 +il[1827] = -179 +im[1827] = 0.0175 +ij[1827] = 2 +id[1828] = "2670-05-17T10:52:53" +ik[1828] = 17.787 +il[1828] = 159 +im[1828] = 0 +ij[1828] = 4 +id[1829] = "2670-08-03T19:06:48" +ik[1829] = 10.781 +il[1829] = -144 +im[1829] = 0.0179 +ij[1829] = 1 +id[1830] = "2671-03-11T01:07:40" +ik[1830] = 10.606 +il[1830] = 109 +im[1830] = 0.0055 +ij[1830] = 2 +id[1831] = "2671-04-17T15:05:54" +ik[1831] = 14.987 +il[1831] = -14 +im[1831] = 0 +ij[1831] = 3 +id[1832] = "2671-09-04T22:05:31" +ik[1832] = 10.932 +il[1832] = -20 +im[1832] = 0.0068 +ij[1832] = 1 +id[1833] = "2672-04-11T05:49:03" +ik[1833] = 10.959 +il[1833] = 168 +im[1833] = 0.0079 +ij[1833] = 2 +id[1834] = "2672-08-13T05:46:53" +ik[1834] = 18.008 +il[1834] = -60 +im[1834] = 0 +ij[1834] = 4 +id[1835] = "2672-10-07T04:28:33" +ik[1835] = 11.141 +il[1835] = -168 +im[1835] = 0.0074 +ij[1835] = 1 +id[1836] = "2673-05-16T03:33:41" +ik[1836] = 11.386 +il[1836] = 36 +im[1836] = 0.0039 +ij[1836] = 2 +id[1837] = "2673-06-26T07:05:39" +ik[1837] = 16.144 +il[1837] = 54 +im[1837] = 0 +ij[1837] = 3 +id[1838] = "2673-11-10T21:38:09" +ik[1838] = 11.346 +il[1838] = -134 +im[1838] = 0.0126 +ij[1838] = 1 +id[1839] = "2674-06-22T18:35:51" +ik[1839] = 11.741 +il[1839] = 58 +im[1839] = 0.0223 +ij[1839] = 2 +id[1840] = "2674-11-14T04:17:36" +ik[1840] = 16.914 +il[1840] = 78 +im[1840] = 0 +ij[1840] = 4 +id[1841] = "2674-12-16T21:30:05" +ik[1841] = 11.467 +il[1841] = -132 +im[1841] = 0.0241 +ij[1841] = 1 +id[1842] = "2675-07-31T21:28:22" +ik[1842] = 11.856 +il[1842] = -136 +im[1842] = 0.0258 +ij[1842] = 2 +id[1843] = "2675-09-26T13:39:12" +ik[1843] = 18.612 +il[1843] = 52 +im[1843] = 0 +ij[1843] = 3 +id[1844] = "2676-01-22T10:29:25" +ik[1844] = 11.449 +il[1844] = 119 +im[1844] = 0.0306 +ij[1844] = 1 +id[1845] = "2676-09-07T09:06:11" +ik[1845] = 11.667 +il[1845] = -140 +im[1845] = 0.0031 +ij[1845] = 2 +id[1846] = "2677-02-07T14:07:35" +ik[1846] = 15.961 +il[1846] = 139 +im[1846] = 0 +ij[1846] = 4 +id[1847] = "2677-02-26T12:11:05" +ik[1847] = 11.3 +il[1847] = 51 +im[1847] = 0.0252 +ij[1847] = 1 +id[1848] = "2677-10-13T11:54:23" +ik[1848] = 11.277 +il[1848] = 115 +im[1848] = 0.0148 +ij[1848] = 2 +id[1849] = "2678-01-08T21:43:12" +ik[1849] = 18.859 +il[1849] = -154 +im[1849] = 0 +ij[1849] = 3 +id[1850] = "2678-04-02T08:23:51" +ik[1850] = 11.087 +il[1850] = -26 +im[1850] = 0.0244 +ij[1850] = 1 +id[1851] = "2678-11-15T18:13:49" +ik[1851] = 10.858 +il[1851] = -29 +im[1851] = 0.0111 +ij[1851] = 2 +id[1852] = "2679-04-29T22:19:29" +ik[1852] = 16.379 +il[1852] = -78 +im[1852] = 0 +ij[1852] = 4 +id[1853] = "2679-05-05T17:56:58" +ik[1853] = 10.887 +il[1853] = 72 +im[1853] = 0.0202 +ij[1853] = 1 +id[1854] = "2679-12-16T17:01:14" +ik[1854] = 10.54 +il[1854] = 37 +im[1854] = 0.0034 +ij[1854] = 2 +id[1855] = "2680-04-13T02:43:00" +ik[1855] = 16.604 +il[1855] = 163 +im[1855] = 0 +ij[1855] = 3 +id[1856] = "2680-06-05T23:16:13" +ik[1856] = 10.757 +il[1856] = 111 +im[1856] = 0.0278 +ij[1856] = 1 +id[1857] = "2681-01-14T08:35:22" +ik[1857] = 10.388 +il[1857] = 154 +im[1857] = 0.0253 +ij[1857] = 2 +id[1858] = "2681-07-07T13:28:59" +ik[1858] = 10.725 +il[1858] = -23 +im[1858] = 0.0254 +ij[1858] = 1 +id[1859] = "2681-07-20T20:56:15" +ik[1859] = 17.493 +il[1859] = 107 +im[1859] = 0 +ij[1859] = 4 +id[1860] = "2682-02-12T20:40:33" +ik[1860] = 10.425 +il[1860] = 37 +im[1860] = 0.0238 +ij[1860] = 2 +id[1861] = "2682-06-26T19:37:37" +ik[1861] = 15.071 +il[1861] = -46 +im[1861] = 0 +ij[1861] = 3 +id[1862] = "2682-08-08T04:17:02" +ik[1862] = 10.797 +il[1862] = -178 +im[1862] = 0.0261 +ij[1862] = 1 +id[1863] = "2683-03-15T09:04:27" +ik[1863] = 10.646 +il[1863] = 120 +im[1863] = 0.017 +ij[1863] = 2 +id[1864] = "2683-09-09T11:30:28" +ik[1864] = 10.958 +il[1864] = 154 +im[1864] = 0.017 +ij[1864] = 1 +id[1865] = "2683-10-15T23:59:25" +ik[1865] = 18.09 +il[1865] = -109 +im[1865] = 0 +ij[1865] = 4 +id[1866] = "2684-04-15T23:14:29" +ik[1866] = 11.016 +il[1866] = -161 +im[1866] = 0.0053 +ij[1866] = 2 +id[1867] = "2684-09-01T19:05:48" +ik[1867] = 15.562 +il[1867] = -161 +im[1867] = 0 +ij[1867] = 3 +id[1868] = "2684-10-11T23:54:23" +ik[1868] = 11.171 +il[1868] = 147 +im[1868] = 0.0228 +ij[1868] = 1 +id[1869] = "2685-05-21T08:02:32" +ik[1869] = 11.444 +il[1869] = 25 +im[1869] = 0.0213 +ij[1869] = 2 +id[1870] = "2685-11-15T23:07:26" +ik[1870] = 11.369 +il[1870] = -39 +im[1870] = 0.0231 +ij[1870] = 1 +id[1871] = "2686-01-15T18:27:47" +ik[1871] = 17.334 +il[1871] = 173 +im[1871] = 0 +ij[1871] = 4 +id[1872] = "2686-06-28T07:29:51" +ik[1872] = 11.775 +il[1872] = 102 +im[1872] = 0.0282 +ij[1872] = 2 +id[1873] = "2686-11-25T17:04:42" +ik[1873] = 17.9 +il[1873] = 116 +im[1873] = 0 +ij[1873] = 3 +id[1874] = "2686-12-22T02:41:34" +ik[1874] = 11.474 +il[1874] = -171 +im[1874] = 0.0315 +ij[1874] = 1 +id[1875] = "2687-08-06T11:32:12" +ik[1875] = 11.847 +il[1875] = -136 +im[1875] = 0.0133 +ij[1875] = 2 +id[1876] = "2688-01-27T15:12:31" +ik[1876] = 11.436 +il[1876] = 94 +im[1876] = 0.0243 +ij[1876] = 1 +id[1877] = "2688-04-13T23:25:00" +ik[1877] = 16.12 +il[1877] = -39 +im[1877] = 0 +ij[1877] = 4 +id[1878] = "2688-09-12T16:24:05" +ik[1878] = 11.621 +il[1878] = 105 +im[1878] = 0.0208 +ij[1878] = 2 +id[1879] = "2689-03-03T12:46:30" +ik[1879] = 11.273 +il[1879] = -179 +im[1879] = 0.0165 +ij[1879] = 1 +id[1880] = "2689-03-08T13:48:17" +ik[1880] = 19.184 +il[1880] = 112 +im[1880] = 0 +ij[1880] = 3 +id[1881] = "2689-10-18T08:33:30" +ik[1881] = 11.218 +il[1881] = 23 +im[1881] = 0.0234 +ij[1881] = 2 +id[1882] = "2690-04-07T03:06:20" +ik[1882] = 11.057 +il[1882] = -45 +im[1882] = 0.0093 +ij[1882] = 1 +id[1883] = "2690-07-04T17:01:06" +ik[1883] = 16.122 +il[1883] = 125 +im[1883] = 0 +ij[1883] = 4 +id[1884] = "2690-11-20T05:07:26" +ik[1884] = 10.806 +il[1884] = -125 +im[1884] = 0.0239 +ij[1884] = 2 +id[1885] = "2691-05-10T07:26:15" +ik[1885] = 10.864 +il[1885] = -118 +im[1885] = 0.0122 +ij[1885] = 1 +id[1886] = "2691-06-16T18:11:57" +ik[1886] = 17.343 +il[1886] = 64 +im[1886] = 0 +ij[1886] = 3 +id[1887] = "2691-12-20T21:38:09" +ik[1887] = 10.508 +il[1887] = 169 +im[1887] = 0.0055 +ij[1887] = 2 +id[1888] = "2692-06-10T09:42:28" +ik[1888] = 10.746 +il[1888] = 31 +im[1888] = 0.0202 +ij[1888] = 1 +id[1889] = "2692-09-23T19:27:07" +ik[1889] = 17.149 +il[1889] = -37 +im[1889] = 0 +ij[1889] = 4 +id[1890] = "2693-01-18T11:26:00" +ik[1890] = 10.381 +il[1890] = -10 +im[1890] = 0.0163 +ij[1890] = 2 +id[1891] = "2693-07-11T23:37:32" +ik[1891] = 10.729 +il[1891] = -92 +im[1891] = 0.0243 +ij[1891] = 1 +id[1892] = "2693-09-04T09:51:15" +ik[1892] = 15.35 +il[1892] = 80 +im[1892] = 0 +ij[1892] = 3 +id[1893] = "2694-02-17T02:03:24" +ik[1893] = 10.444 +il[1893] = 141 +im[1893] = 0.0269 +ij[1893] = 2 +id[1894] = "2694-08-12T16:50:35" +ik[1894] = 10.814 +il[1894] = 26 +im[1894] = 0.0285 +ij[1894] = 1 +id[1895] = "2694-12-18T11:41:51" +ik[1895] = 18.031 +il[1895] = -72 +im[1895] = 0 +ij[1895] = 4 +id[1896] = "2695-03-19T20:55:40" +ik[1896] = 10.689 +il[1896] = -11 +im[1896] = 0.0238 +ij[1896] = 2 +id[1897] = "2695-09-14T04:14:26" +ik[1897] = 10.985 +il[1897] = -155 +im[1897] = 0.0259 +ij[1897] = 1 +id[1898] = "2695-11-11T01:42:14" +ik[1898] = 15.176 +il[1898] = -120 +im[1898] = 0 +ij[1898] = 3 +id[1899] = "2696-04-20T20:08:44" +ik[1899] = 11.074 +il[1899] = 101 +im[1899] = 0.0204 +ij[1899] = 2 +id[1900] = "2696-10-16T21:31:06" +ik[1900] = 11.201 +il[1900] = 23 +im[1900] = 0.0296 +ij[1900] = 1 +id[1901] = "2697-03-18T22:26:41" +ik[1901] = 17.701 +il[1901] = -82 +im[1901] = 0 +ij[1901] = 4 +id[1902] = "2697-05-26T14:14:55" +ik[1902] = 11.499 +il[1902] = -50 +im[1902] = 0.0296 +ij[1902] = 2 +id[1903] = "2697-11-21T00:44:47" +ik[1903] = 11.391 +il[1903] = 52 +im[1903] = 0.0278 +ij[1903] = 1 +id[1904] = "2698-01-26T18:24:20" +ik[1904] = 17.091 +il[1904] = -44 +im[1904] = 0 +ij[1904] = 3 +id[1905] = "2698-07-03T19:18:20" +ik[1905] = 11.803 +il[1905] = -177 +im[1905] = 0.02 +ij[1905] = 2 +id[1906] = "2698-12-27T05:41:08" +ik[1906] = 11.478 +il[1906] = -129 +im[1906] = 0.0278 +ij[1906] = 1 +id[1907] = "2699-06-18T09:27:30" +ik[1907] = 16.414 +il[1907] = -95 +im[1907] = 0 +ij[1907] = 4 +id[1908] = "2699-08-11T21:46:04" +ik[1908] = 11.833 +il[1908] = 3 +im[1908] = 0.0069 +ij[1908] = 2 +id[1909] = "2700-02-01T16:08:15" +ik[1909] = 11.42 +il[1909] = -150 +im[1909] = 0.0089 +ij[1909] = 1 +id[1910] = "2700-05-06T15:32:49" +ik[1910] = 19.155 +il[1910] = 178 +im[1910] = 0 +ij[1910] = 3 +id[1911] = "2700-09-18T18:30:40" +ik[1911] = 11.572 +il[1911] = 178 +im[1911] = 0.0299 +ij[1911] = 2 +id[1912] = "2701-03-09T09:00:08" +ik[1912] = 11.245 +il[1912] = 106 +im[1912] = 0.0042 +ij[1912] = 1 +id[1913] = "2701-09-09T10:24:05" +ik[1913] = 15.966 +il[1913] = 16 +im[1913] = 0 +ij[1913] = 4 +id[1914] = "2701-10-24T00:28:48" +ik[1914] = 11.158 +il[1914] = 108 +im[1914] = 0.027 +ij[1914] = 2 +id[1915] = "2702-04-12T18:08:29" +ik[1915] = 11.027 +il[1915] = 69 +im[1915] = 0.008 +ij[1915] = 1 +id[1916] = "2702-08-18T04:12:43" +ik[1916] = 18.092 +il[1916] = 102 +im[1916] = 0 +ij[1916] = 3 +id[1917] = "2702-11-25T12:44:47" +ik[1917] = 10.757 +il[1917] = -103 +im[1917] = 0.0291 +ij[1917] = 2 +id[1918] = "2703-05-15T18:34:59" +ik[1918] = 10.842 +il[1918] = 137 +im[1918] = 0.0042 +ij[1918] = 1 +id[1919] = "2703-11-29T21:54:08" +ik[1919] = 16.789 +il[1919] = 36 +im[1919] = 0 +ij[1919] = 4 +id[1920] = "2703-12-26T00:43:03" +ik[1920] = 10.48 +il[1920] = -4 +im[1920] = 0.0131 +ij[1920] = 2 +id[1921] = "2704-06-15T19:08:41" +ik[1921] = 10.737 +il[1921] = -12 +im[1921] = 0.0066 +ij[1921] = 1 +id[1922] = "2704-11-12T12:13:49" +ik[1922] = 15.813 +il[1922] = 67 +im[1922] = 0 +ij[1922] = 3 +id[1923] = "2705-01-23T13:48:25" +ik[1923] = 10.379 +il[1923] = -158 +im[1923] = 0.004 +ij[1923] = 2 +id[1924] = "2705-07-17T09:28:22" +ik[1924] = 10.734 +il[1924] = -146 +im[1924] = 0.0197 +ij[1924] = 1 +id[1925] = "2706-02-21T09:29:22" +ik[1925] = 17.849 +il[1925] = -40 +im[1925] = 0 +ij[1925] = 4 +id[1926] = "2706-02-22T07:26:24" +ik[1926] = 10.468 +il[1926] = -118 +im[1926] = 0.0257 +ij[1926] = 2 +id[1927] = "2706-08-18T04:45:24" +ik[1927] = 10.833 +il[1927] = -106 +im[1927] = 0.0246 +ij[1927] = 1 +id[1928] = "2707-01-21T04:03:56" +ik[1928] = 14.998 +il[1928] = -74 +im[1928] = 0 +ij[1928] = 3 +id[1929] = "2707-03-25T08:14:55" +ik[1929] = 10.735 +il[1929] = -123 +im[1929] = 0.0266 +ij[1929] = 2 +id[1930] = "2707-09-19T19:29:51" +ik[1930] = 11.014 +il[1930] = -45 +im[1930] = 0.0275 +ij[1930] = 1 +id[1931] = "2708-04-26T15:41:36" +ik[1931] = 11.133 +il[1931] = 51 +im[1931] = 0.0291 +ij[1931] = 2 +id[1932] = "2708-05-20T23:59:42" +ik[1932] = 17.962 +il[1932] = 112 +im[1932] = 0 +ij[1932] = 4 +id[1933] = "2708-10-22T16:42:40" +ik[1933] = 11.23 +il[1933] = -14 +im[1933] = 0.0283 +ij[1933] = 1 +id[1934] = "2709-04-02T02:59:16" +ik[1934] = 16.323 +il[1934] = -46 +im[1934] = 0 +ij[1934] = 3 +id[1935] = "2709-06-01T18:08:29" +ik[1935] = 11.553 +il[1935] = -42 +im[1935] = 0.0277 +ij[1935] = 2 +id[1936] = "2709-11-26T23:30:28" +ik[1936] = 11.411 +il[1936] = -114 +im[1936] = 0.023 +ij[1936] = 1 +id[1937] = "2710-07-10T04:17:54" +ik[1937] = 11.826 +il[1937] = 7 +im[1937] = 0.006 +ij[1937] = 2 +id[1938] = "2710-08-21T17:54:31" +ik[1938] = 16.805 +il[1938] = 57 +im[1938] = 0 +ij[1938] = 4 +id[1939] = "2711-01-02T06:15:33" +ik[1939] = 11.479 +il[1939] = -1 +im[1939] = 0.014 +ij[1939] = 1 +id[1940] = "2711-07-05T00:09:30" +ik[1940] = 18.763 +il[1940] = -7 +im[1940] = 0 +ij[1940] = 3 +id[1941] = "2711-08-18T05:34:56" +ik[1941] = 11.812 +il[1941] = -131 +im[1941] = 0.0254 +ij[1941] = 2 +id[1942] = "2712-02-07T15:50:32" +ik[1942] = 11.402 +il[1942] = 13 +im[1942] = 0.0063 +ij[1942] = 1 +id[1943] = "2712-09-23T19:41:22" +ik[1943] = 11.521 +il[1943] = -76 +im[1943] = 0.0293 +ij[1943] = 2 +id[1944] = "2712-11-14T04:46:24" +ik[1944] = 15.943 +il[1944] = -131 +im[1944] = 0 +ij[1944] = 4 +id[1945] = "2713-03-14T05:42:00" +ik[1945] = 11.215 +il[1945] = 15 +im[1945] = 0.0133 +ij[1945] = 1 +id[1946] = "2713-10-17T02:28:27" +ik[1946] = 18.73 +il[1946] = -5 +im[1946] = 0 +ij[1946] = 3 +id[1947] = "2713-10-28T17:18:05" +ik[1947] = 11.099 +il[1947] = 157 +im[1947] = 0.0235 +ij[1947] = 2 +id[1948] = "2714-04-17T11:15:30" +ik[1948] = 10.998 +il[1948] = 108 +im[1948] = 0.0191 +ij[1948] = 1 +id[1949] = "2714-11-29T22:33:53" +ik[1949] = 10.71 +il[1949] = -160 +im[1949] = 0.0286 +ij[1949] = 2 +id[1950] = "2715-02-03T11:44:52" +ik[1950] = 16.454 +il[1950] = 56 +im[1950] = 0 +ij[1950] = 4 +id[1951] = "2715-05-20T08:37:58" +ik[1951] = 10.822 +il[1951] = -74 +im[1951] = 0.0104 +ij[1951] = 1 +id[1952] = "2715-12-30T06:13:49" +ik[1952] = 10.455 +il[1952] = 94 +im[1952] = 0.0224 +ij[1952] = 2 +id[1953] = "2716-01-18T21:53:25" +ik[1953] = 16.427 +il[1953] = 89 +im[1953] = 0 +ij[1953] = 3 +id[1954] = "2716-06-20T07:00:37" +ik[1954] = 10.73 +il[1954] = -143 +im[1954] = 0.0076 +ij[1954] = 1 +id[1955] = "2717-01-27T17:54:23" +ik[1955] = 10.379 +il[1955] = -7 +im[1955] = 0.0075 +ij[1955] = 2 +id[1956] = "2717-04-26T20:08:09" +ik[1956] = 17.574 +il[1956] = -114 +im[1956] = 0 +ij[1956] = 4 +id[1957] = "2717-07-21T20:13:12" +ik[1957] = 10.742 +il[1957] = 119 +im[1957] = 0.0116 +ij[1957] = 1 +id[1958] = "2718-02-26T12:59:45" +ik[1958] = 10.494 +il[1958] = -18 +im[1958] = 0.0205 +ij[1958] = 2 +id[1959] = "2718-04-01T10:03:12" +ik[1959] = 15.029 +il[1959] = -159 +im[1959] = 0 +ij[1959] = 3 +id[1960] = "2718-08-22T15:39:53" +ik[1960] = 10.854 +il[1960] = 156 +im[1960] = 0.0145 +ij[1960] = 1 +id[1961] = "2719-03-29T18:12:57" +ik[1961] = 10.784 +il[1961] = 175 +im[1961] = 0.0242 +ij[1961] = 2 +id[1962] = "2719-07-23T07:47:51" +ik[1962] = 18.084 +il[1962] = 79 +im[1962] = 0 +ij[1962] = 4 +id[1963] = "2719-09-24T08:10:36" +ik[1963] = 11.043 +il[1963] = 150 +im[1963] = 0.0235 +ij[1963] = 1 +id[1964] = "2720-05-01T08:46:53" +ik[1964] = 11.192 +il[1964] = 91 +im[1964] = 0.0292 +ij[1964] = 2 +id[1965] = "2720-06-07T16:13:43" +ik[1965] = 15.692 +il[1965] = -156 +im[1965] = 0 +ij[1965] = 3 +id[1966] = "2720-10-27T08:44:09" +ik[1966] = 11.26 +il[1966] = 65 +im[1966] = 0.0187 +ij[1966] = 1 +id[1967] = "2721-06-06T19:14:00" +ik[1967] = 11.602 +il[1967] = 68 +im[1967] = 0.015 +ij[1967] = 2 +id[1968] = "2721-10-22T23:02:24" +ik[1968] = 17.235 +il[1968] = 119 +im[1968] = 0 +ij[1968] = 4 +id[1969] = "2721-12-01T19:14:52" +ik[1969] = 11.429 +il[1969] = -168 +im[1969] = 0.0144 +ij[1969] = 1 +id[1970] = "2722-07-15T10:30:17" +ik[1970] = 11.843 +il[1970] = -68 +im[1970] = 0.0093 +ij[1970] = 2 +id[1971] = "2722-09-02T04:27:59" +ik[1971] = 18.091 +il[1971] = 175 +im[1971] = 0 +ij[1971] = 3 +id[1972] = "2723-01-07T04:27:41" +ik[1972] = 11.477 +il[1972] = -146 +im[1972] = 0.0067 +ij[1972] = 1 +id[1973] = "2723-08-23T10:53:19" +ik[1973] = 11.787 +il[1973] = -174 +im[1973] = 0.0316 +ij[1973] = 2 +id[1974] = "2724-01-19T09:15:24" +ik[1974] = 16.067 +il[1974] = -135 +im[1974] = 0 +ij[1974] = 4 +id[1975] = "2724-02-12T13:58:13" +ik[1975] = 11.381 +il[1975] = -133 +im[1975] = 0.0174 +ij[1975] = 1 +id[1976] = "2724-09-28T18:58:53" +ik[1976] = 11.467 +il[1976] = 100 +im[1976] = 0.0183 +ij[1976] = 2 +id[1977] = "2724-12-14T17:04:16" +ik[1977] = 19.133 +il[1977] = -44 +im[1977] = 0 +ij[1977] = 3 +id[1978] = "2725-03-19T01:31:43" +ik[1978] = 11.186 +il[1978] = -45 +im[1978] = 0.0267 +ij[1978] = 1 +id[1979] = "2725-11-02T08:46:53" +ik[1979] = 11.041 +il[1979] = -105 +im[1979] = 0.0163 +ij[1979] = 2 +id[1980] = "2726-04-10T04:36:02" +ik[1980] = 16.176 +il[1980] = -33 +im[1980] = 0 +ij[1980] = 4 +id[1981] = "2726-04-22T03:47:48" +ik[1981] = 10.97 +il[1981] = 167 +im[1981] = 0.0252 +ij[1981] = 1 +id[1982] = "2726-12-04T07:23:39" +ik[1982] = 10.665 +il[1982] = 179 +im[1982] = 0.0218 +ij[1982] = 2 +id[1983] = "2727-03-24T03:34:59" +ik[1983] = 17.15 +il[1983] = -165 +im[1983] = 0 +ij[1983] = 3 +id[1984] = "2727-05-24T21:56:44" +ik[1984] = 10.804 +il[1984] = 102 +im[1984] = 0.0231 +ij[1984] = 1 +id[1985] = "2728-01-03T10:54:11" +ik[1985] = 10.433 +il[1985] = -136 +im[1985] = 0.0275 +ij[1985] = 2 +id[1986] = "2728-06-24T18:05:54" +ik[1986] = 10.725 +il[1986] = 113 +im[1986] = 0.016 +ij[1986] = 1 +id[1987] = "2728-06-30T17:44:09" +ik[1987] = 17.24 +il[1987] = 136 +im[1987] = 0 +ij[1987] = 4 +id[1988] = "2729-01-31T21:39:01" +ik[1988] = 10.384 +il[1988] = 156 +im[1988] = 0.0137 +ij[1988] = 2 +id[1989] = "2729-06-10T06:12:23" +ik[1989] = 15.259 +il[1989] = 113 +im[1989] = 0 +ij[1989] = 3 +id[1990] = "2729-07-26T06:36:51" +ik[1990] = 10.751 +il[1990] = 41 +im[1990] = 0.0026 +ij[1990] = 1 +id[1991] = "2730-03-02T19:13:09" +ik[1991] = 10.524 +il[1991] = 55 +im[1991] = 0.0092 +ij[1991] = 2 +id[1992] = "2730-08-27T03:31:58" +ik[1992] = 10.876 +il[1992] = 25 +im[1992] = 0.003 +ij[1992] = 1 +id[1993] = "2730-09-24T13:03:47" +ik[1993] = 18.059 +il[1993] = -10 +im[1993] = 0 +ij[1993] = 4 +id[1994] = "2731-04-03T06:43:55" +ik[1994] = 10.835 +il[1994] = 20 +im[1994] = 0.0171 +ij[1994] = 2 +id[1995] = "2731-08-16T11:02:32" +ik[1995] = 15.253 +il[1995] = -47 +im[1995] = 0 +ij[1995] = 3 +id[1996] = "2731-09-28T23:44:35" +ik[1996] = 11.073 +il[1996] = -115 +im[1996] = 0.0135 +ij[1996] = 1 +id[1997] = "2732-05-06T06:27:56" +ik[1997] = 11.252 +il[1997] = -36 +im[1997] = 0.0209 +ij[1997] = 2 +id[1998] = "2732-11-01T05:26:00" +ik[1998] = 11.288 +il[1998] = -24 +im[1998] = 0.0035 +ij[1998] = 1 +id[1999] = "2732-12-24T01:29:25" +ik[1999] = 17.624 +il[1999] = -81 +im[1999] = 0 +ij[1999] = 4 +id[2000] = "2733-06-12T02:20:15" +ik[2000] = 11.65 +il[2000] = -40 +im[2000] = 0.0035 +ij[2000] = 2 +id[2001] = "2733-11-02T15:30:40" +ik[2001] = 17.291 +il[2001] = 173 +im[2001] = 0 +ij[2001] = 3 +id[2002] = "2733-12-06T20:42:25" +ik[2002] = 11.444 +il[2002] = -73 +im[2002] = 0.0018 +ij[2002] = 1 +id[2003] = "2734-07-20T22:43:40" +ik[2003] = 11.854 +il[2003] = -2 +im[2003] = 0.0255 +ij[2003] = 2 +id[2004] = "2735-01-12T08:02:41" +ik[2004] = 11.473 +il[2004] = -126 +im[2004] = 0.0236 +ij[2004] = 1 +id[2005] = "2735-03-25T02:27:01" +ik[2005] = 16.331 +il[2005] = -89 +im[2005] = 0 +ij[2005] = 4 +id[2006] = "2735-08-28T20:38:49" +ik[2006] = 11.756 +il[2006] = -18 +im[2006] = 0.0259 +ij[2006] = 2 +id[2007] = "2736-02-11T23:03:33" +ik[2007] = 19.197 +il[2007] = -133 +im[2007] = 0 +ij[2007] = 3 +id[2008] = "2736-02-17T15:54:08" +ik[2008] = 11.359 +il[2008] = -53 +im[2008] = 0.0265 +ij[2008] = 1 +id[2009] = "2736-10-03T20:12:20" +ik[2009] = 11.411 +il[2009] = -155 +im[2009] = 0.0007 +ij[2009] = 2 +id[2010] = "2737-03-23T22:52:27" +ik[2010] = 11.156 +il[2010] = -159 +im[2010] = 0.0308 +ij[2010] = 1 +id[2011] = "2737-06-15T00:30:14" +ik[2011] = 15.993 +il[2011] = 126 +im[2011] = 0 +ij[2011] = 4 +id[2012] = "2737-11-06T23:46:27" +ik[2012] = 10.983 +il[2012] = 11 +im[2012] = 0.0058 +ij[2012] = 2 +id[2013] = "2738-04-26T19:19:20" +ik[2013] = 10.943 +il[2013] = -96 +im[2013] = 0.0265 +ij[2013] = 1 +id[2014] = "2738-05-25T03:13:58" +ik[2014] = 17.906 +il[2014] = 99 +im[2014] = 0 +ij[2014] = 3 +id[2015] = "2738-12-08T13:55:29" +ik[2015] = 10.623 +il[2015] = -119 +im[2015] = 0.0106 +ij[2015] = 2 +id[2016] = "2739-05-29T08:31:46" +ik[2016] = 10.787 +il[2016] = 17 +im[2016] = 0.0287 +ij[2016] = 1 +id[2017] = "2739-09-04T17:12:28" +ik[2017] = 16.879 +il[2017] = -43 +im[2017] = 0 +ij[2017] = 4 +id[2018] = "2740-01-07T12:28:48" +ik[2018] = 10.415 +il[2018] = 105 +im[2018] = 0.028 +ij[2018] = 2 +id[2019] = "2740-06-29T01:51:10" +ik[2019] = 10.722 +il[2019] = 131 +im[2019] = 0.0216 +ij[2019] = 1 +id[2020] = "2740-08-17T16:06:57" +ik[2020] = 15.679 +il[2020] = -173 +im[2020] = 0 +ij[2020] = 3 +id[2021] = "2741-02-04T22:38:21" +ik[2021] = 10.392 +il[2021] = 58 +im[2021] = 0.0191 +ij[2021] = 2 +id[2022] = "2741-07-30T14:31:46" +ik[2022] = 10.763 +il[2022] = 53 +im[2022] = 0.017 +ij[2022] = 1 +id[2023] = "2741-11-27T05:19:32" +ik[2023] = 17.905 +il[2023] = -138 +im[2023] = 0 +ij[2023] = 4 +id[2024] = "2742-03-07T00:19:09" +ik[2024] = 10.558 +il[2024] = 168 +im[2024] = 0.006 +ij[2024] = 2 +id[2025] = "2742-08-31T14:37:58" +ik[2025] = 10.899 +il[2025] = -79 +im[2025] = 0.0069 +ij[2025] = 1 +id[2026] = "2742-10-25T08:57:07" +ik[2026] = 15.023 +il[2026] = 160 +im[2026] = 0 +ij[2026] = 3 +id[2027] = "2743-04-07T20:07:52" +ik[2027] = 10.888 +il[2027] = -167 +im[2027] = 0.0088 +ij[2027] = 2 +id[2028] = "2743-10-03T16:26:49" +ik[2028] = 11.103 +il[2028] = -61 +im[2028] = 0.0044 +ij[2028] = 1 +id[2029] = "2744-02-25T04:44:15" +ik[2029] = 17.914 +il[2029] = 51 +im[2029] = 0 +ij[2029] = 4 +id[2030] = "2744-05-11T06:49:14" +ik[2030] = 11.312 +il[2030] = 100 +im[2030] = 0.0025 +ij[2030] = 2 +id[2031] = "2744-11-06T04:29:25" +ik[2031] = 11.315 +il[2031] = 157 +im[2031] = 0.0101 +ij[2031] = 1 +id[2032] = "2745-01-05T14:31:29" +ik[2032] = 16.505 +il[2032] = 157 +im[2032] = 0 +ij[2032] = 3 +id[2033] = "2745-06-17T12:37:43" +ik[2033] = 11.693 +il[2033] = 96 +im[2033] = 0.018 +ij[2033] = 2 +id[2034] = "2745-12-12T00:42:11" +ik[2034] = 11.457 +il[2034] = -68 +im[2034] = 0.0204 +ij[2034] = 1 +id[2035] = "2746-05-27T23:35:31" +ik[2035] = 16.701 +il[2035] = -37 +im[2035] = 0 +ij[2035] = 4 +id[2036] = "2746-07-26T13:00:46" +ik[2036] = 11.859 +il[2036] = -10 +im[2036] = 0.0286 +ij[2036] = 2 +id[2037] = "2747-01-17T13:15:44" +ik[2037] = 11.465 +il[2037] = -165 +im[2037] = 0.0304 +ij[2037] = 1 +id[2038] = "2747-04-11T10:52:10" +ik[2038] = 18.895 +il[2038] = -73 +im[2038] = 0 +ij[2038] = 3 +id[2039] = "2747-09-03T06:41:19" +ik[2039] = 11.72 +il[2039] = 128 +im[2039] = 0.0073 +ij[2039] = 2 +id[2040] = "2748-02-22T18:10:22" +ik[2040] = 11.335 +il[2040] = 14 +im[2040] = 0.0264 +ij[2040] = 1 +id[2041] = "2748-08-19T22:39:47" +ik[2041] = 15.935 +il[2041] = -158 +im[2041] = 0 +ij[2041] = 4 +id[2042] = "2748-10-08T20:25:35" +ik[2042] = 11.353 +il[2042] = -13 +im[2042] = 0.0132 +ij[2042] = 2 +id[2043] = "2749-03-28T19:33:27" +ik[2043] = 11.125 +il[2043] = 110 +im[2043] = 0.0261 +ij[2043] = 1 +id[2044] = "2749-07-24T10:45:07" +ik[2044] = 18.584 +il[2044] = 17 +im[2044] = 0 +ij[2044] = 3 +id[2045] = "2749-11-11T13:27:15" +ik[2045] = 10.927 +il[2045] = 174 +im[2045] = 0.0103 +ij[2045] = 2 +id[2046] = "2750-05-01T10:17:54" +ik[2046] = 10.917 +il[2046] = 20 +im[2046] = 0.0209 +ij[2046] = 1 +id[2047] = "2750-11-09T02:55:32" +ik[2047] = 16.533 +il[2047] = 127 +im[2047] = 0 +ij[2047] = 4 +id[2048] = "2750-12-12T19:57:21" +ik[2048] = 10.585 +il[2048] = -39 +im[2048] = 0.0003 +ij[2048] = 2 +id[2049] = "2751-06-02T19:26:24" +ik[2049] = 10.772 +il[2049] = -79 +im[2049] = 0.028 +ij[2049] = 1 +id[2050] = "2751-10-24T11:31:12" +ik[2050] = 16.259 +il[2050] = -144 +im[2050] = 0 +ij[2050] = 3 +id[2051] = "2752-01-11T15:09:56" +ik[2051] = 10.4 +il[2051] = -53 +im[2051] = 0.0242 +ij[2051] = 2 +id[2052] = "2752-07-03T11:25:09" +ik[2052] = 10.721 +il[2052] = 83 +im[2052] = 0.0254 +ij[2052] = 1 +id[2053] = "2753-01-30T14:04:16" +ik[2053] = 17.65 +il[2053] = -143 +im[2053] = 0 +ij[2053] = 4 +id[2054] = "2753-02-09T02:22:59" +ik[2054] = 10.404 +il[2054] = -139 +im[2054] = 0.0244 +ij[2054] = 2 +id[2055] = "2753-08-04T01:34:19" +ik[2055] = 10.776 +il[2055] = -49 +im[2055] = 0.0262 +ij[2055] = 1 +id[2056] = "2754-01-03T19:27:59" +ik[2056] = 15.001 +il[2056] = -89 +im[2056] = 0 +ij[2056] = 3 +id[2057] = "2754-03-11T09:14:15" +ik[2057] = 10.594 +il[2057] = 144 +im[2057] = 0.0179 +ij[2057] = 2 +id[2058] = "2754-09-05T05:26:00" +ik[2058] = 10.924 +il[2058] = 43 +im[2058] = 0.0164 +ij[2058] = 1 +id[2059] = "2755-04-12T13:34:19" +ik[2059] = 10.943 +il[2059] = -140 +im[2059] = 0.0032 +ij[2059] = 2 +id[2060] = "2755-04-28T18:47:13" +ik[2060] = 18.068 +il[2060] = 152 +im[2060] = 0 +ij[2060] = 4 +id[2061] = "2755-10-08T12:13:49" +ik[2061] = 11.133 +il[2061] = -119 +im[2061] = 0.0209 +ij[2061] = 1 +id[2062] = "2756-03-13T00:19:52" +ik[2062] = 15.837 +il[2062] = 172 +im[2062] = 0 +ij[2062] = 3 +id[2063] = "2756-05-16T10:04:39" +ik[2063] = 11.371 +il[2063] = 131 +im[2063] = 0.0175 +ij[2063] = 2 +id[2064] = "2756-11-11T04:58:39" +ik[2064] = 11.34 +il[2064] = -69 +im[2064] = 0.0211 +ij[2064] = 1 +id[2065] = "2757-06-22T23:21:41" +ik[2065] = 11.733 +il[2065] = -143 +im[2065] = 0.0272 +ij[2065] = 2 +id[2066] = "2757-07-29T19:50:09" +ik[2066] = 17.124 +il[2066] = -163 +im[2066] = 0 +ij[2066] = 4 +id[2067] = "2757-12-17T03:44:21" +ik[2067] = 11.467 +il[2067] = -29 +im[2067] = 0.0307 +ij[2067] = 1 +id[2068] = "2758-06-09T15:04:27" +ik[2068] = 18.287 +il[2068] = 113 +im[2068] = 0 +ij[2068] = 3 +id[2069] = "2758-08-01T00:45:38" +ik[2069] = 11.858 +il[2069] = 74 +im[2069] = 0.0197 +ij[2069] = 2 +id[2070] = "2759-01-22T15:22:19" +ik[2070] = 11.455 +il[2070] = -92 +im[2070] = 0.0274 +ij[2070] = 1 +id[2071] = "2759-09-08T11:58:50" +ik[2071] = 11.68 +il[2071] = 85 +im[2071] = 0.015 +ij[2071] = 2 +id[2072] = "2759-10-25T09:04:27" +ik[2072] = 16.021 +il[2072] = -16 +im[2072] = 0 +ij[2072] = 4 +id[2073] = "2760-02-27T16:10:50" +ik[2073] = 11.309 +il[2073] = -124 +im[2073] = 0.0192 +ij[2073] = 1 +id[2074] = "2760-09-21T06:18:08" +ik[2074] = 19.06 +il[2074] = 157 +im[2074] = 0 +ij[2074] = 3 +id[2075] = "2760-10-13T15:32:49" +ik[2075] = 11.294 +il[2075] = -47 +im[2075] = 0.0218 +ij[2075] = 2 +id[2076] = "2761-04-02T12:09:21" +ik[2076] = 11.095 +il[2076] = 168 +im[2076] = 0.0132 +ij[2076] = 1 +id[2077] = "2761-11-15T23:13:46" +ik[2077] = 10.873 +il[2077] = 119 +im[2077] = 0.0232 +ij[2077] = 2 +id[2078] = "2762-01-13T14:45:53" +ik[2078] = 16.235 +il[2078] = -141 +im[2078] = 0 +ij[2078] = 4 +id[2079] = "2762-05-05T22:18:02" +ik[2079] = 10.892 +il[2079] = -116 +im[2079] = 0.0128 +ij[2079] = 1 +id[2080] = "2762-12-16T23:47:19" +ik[2080] = 10.549 +il[2080] = 121 +im[2080] = 0.0075 +ij[2080] = 2 +id[2081] = "2762-12-28T01:39:38" +ik[2081] = 16.963 +il[2081] = 15 +im[2081] = 0 +ij[2081] = 3 +id[2082] = "2763-06-07T04:55:12" +ik[2082] = 10.758 +il[2082] = -124 +im[2082] = 0.0211 +ij[2082] = 1 +id[2083] = "2764-01-15T17:06:34" +ik[2083] = 10.389 +il[2083] = 175 +im[2083] = 0.0152 +ij[2083] = 2 +id[2084] = "2764-04-05T05:50:47" +ik[2084] = 17.325 +il[2084] = -42 +im[2084] = 0 +ij[2084] = 4 +id[2085] = "2764-07-07T20:35:22" +ik[2085] = 10.722 +il[2085] = 49 +im[2085] = 0.024 +ij[2085] = 1 +id[2086] = "2765-02-13T06:12:05" +ik[2086] = 10.419 +il[2086] = 22 +im[2086] = 0.0262 +ij[2086] = 2 +id[2087] = "2765-03-14T18:23:36" +ik[2087] = 15.183 +il[2087] = 82 +im[2087] = 0 +ij[2087] = 3 +id[2088] = "2765-08-08T12:27:04" +ik[2088] = 10.791 +il[2088] = -144 +im[2088] = 0.0287 +ij[2088] = 1 +id[2089] = "2766-03-15T18:17:25" +ik[2089] = 10.634 +il[2089] = 113 +im[2089] = 0.0243 +ij[2089] = 2 +id[2090] = "2766-06-30T18:41:11" +ik[2090] = 18.079 +il[2090] = -103 +im[2090] = 0 +ij[2090] = 4 +id[2091] = "2766-09-09T19:25:32" +ik[2091] = 10.95 +il[2091] = -165 +im[2091] = 0.025 +ij[2091] = 1 +id[2092] = "2767-04-17T06:20:00" +ik[2092] = 11 +il[2092] = -88 +im[2092] = 0.0179 +ij[2092] = 2 +id[2093] = "2767-05-21T07:21:04" +ik[2093] = 15.346 +il[2093] = -12 +im[2093] = 0 +ij[2093] = 3 +id[2094] = "2767-10-13T06:10:22" +ik[2094] = 11.163 +il[2094] = -111 +im[2094] = 0.0289 +ij[2094] = 1 +id[2095] = "2768-05-21T11:33:12" +ik[2095] = 11.429 +il[2095] = -134 +im[2095] = 0.0276 +ij[2095] = 2 +id[2096] = "2768-09-29T21:09:56" +ik[2096] = 17.53 +il[2096] = 37 +im[2096] = 0 +ij[2096] = 4 +id[2097] = "2768-11-16T02:45:10" +ik[2097] = 11.364 +il[2097] = 159 +im[2097] = 0.0275 +ij[2097] = 1 +id[2098] = "2769-06-28T07:18:28" +ik[2098] = 11.767 +il[2098] = 78 +im[2098] = 0.0249 +ij[2098] = 2 +id[2099] = "2769-08-09T08:22:07" +ik[2099] = 17.503 +il[2099] = 34 +im[2099] = 0 +ij[2099] = 3 +id[2100] = "2769-12-22T03:51:24" +ik[2100] = 11.475 +il[2100] = 117 +im[2100] = 0.0301 +ij[2100] = 1 +id[2101] = "2770-08-06T09:24:54" +ik[2101] = 11.852 +il[2101] = -90 +im[2101] = 0.0042 +ij[2101] = 2 +id[2102] = "2770-12-29T03:27:38" +ik[2102] = 16.251 +il[2102] = -14 +im[2102] = 0 +ij[2102] = 4 +id[2103] = "2771-01-27T15:18:43" +ik[2103] = 11.442 +il[2103] = 59 +im[2103] = 0.0141 +ij[2103] = 1 +id[2104] = "2771-09-13T15:08:55" +ik[2104] = 11.635 +il[2104] = 120 +im[2104] = 0.0277 +ij[2104] = 2 +id[2105] = "2771-11-19T10:51:36" +ik[2105] = 19.216 +il[2105] = 121 +im[2105] = 0 +ij[2105] = 3 +id[2106] = "2772-03-03T13:30:51" +ik[2106] = 11.282 +il[2106] = 122 +im[2106] = 0.0084 +ij[2106] = 1 +id[2107] = "2772-10-18T10:21:30" +ik[2107] = 11.235 +il[2107] = -70 +im[2107] = 0.027 +ij[2107] = 2 +id[2108] = "2773-03-20T10:49:52" +ik[2108] = 16.026 +il[2108] = 13 +im[2108] = 0 +ij[2108] = 4 +id[2109] = "2773-04-07T05:50:55" +ik[2109] = 11.065 +il[2109] = -175 +im[2109] = 0.0051 +ij[2109] = 1 +id[2110] = "2773-11-20T10:30:25" +ik[2110] = 10.821 +il[2110] = 9 +im[2110] = 0.0294 +ij[2110] = 2 +id[2111] = "2774-02-28T17:06:43" +ik[2111] = 17.717 +il[2111] = 66 +im[2111] = 0 +ij[2111] = 3 +id[2112] = "2774-05-10T12:45:38" +ik[2112] = 10.869 +il[2112] = 18 +im[2112] = 0.0041 +ij[2112] = 1 +id[2113] = "2774-12-21T06:04:10" +ik[2113] = 10.516 +il[2113] = -168 +im[2113] = 0.0154 +ij[2113] = 2 +id[2114] = "2775-06-10T09:25:03" +ik[2114] = 16.969 +il[2114] = -10 +im[2114] = 0 +ij[2114] = 4 +id[2115] = "2775-06-11T17:04:50" +ik[2115] = 10.747 +il[2115] = 94 +im[2115] = 0.0075 +ij[2115] = 1 +id[2116] = "2776-01-19T21:16:07" +ik[2116] = 10.382 +il[2116] = -39 +im[2116] = 0.0024 +ij[2116] = 2 +id[2117] = "2776-05-22T17:43:52" +ik[2117] = 15.555 +il[2117] = 29 +im[2117] = 0 +ij[2117] = 3 +id[2118] = "2776-07-12T07:34:19" +ik[2118] = 10.726 +il[2118] = -50 +im[2118] = 0.019 +ij[2118] = 1 +id[2119] = "2777-02-17T11:07:35" +ik[2119] = 10.438 +il[2119] = 142 +im[2119] = 0.0244 +ij[2119] = 2 +id[2120] = "2777-08-12T23:22:33" +ik[2120] = 10.808 +il[2120] = 118 +im[2120] = 0.0252 +ij[2120] = 1 +id[2121] = "2777-09-02T08:11:36" +ik[2121] = 17.955 +il[2121] = -131 +im[2121] = 0 +ij[2121] = 4 +id[2122] = "2778-03-20T02:48:37" +ik[2122] = 10.676 +il[2122] = 102 +im[2122] = 0.0267 +ij[2122] = 2 +id[2123] = "2778-07-29T20:43:26" +ik[2123] = 15.061 +il[2123] = 144 +im[2123] = 0 +ij[2123] = 3 +id[2124] = "2778-09-14T07:38:47" +ik[2124] = 10.977 +il[2124] = 51 +im[2124] = 0.0273 +ij[2124] = 1 +id[2125] = "2779-04-21T21:11:39" +ik[2125] = 11.057 +il[2125] = 28 +im[2125] = 0.0277 +ij[2125] = 2 +id[2126] = "2779-10-17T21:05:28" +ik[2126] = 11.193 +il[2126] = 8 +im[2126] = 0.0293 +ij[2126] = 1 +id[2127] = "2779-12-01T13:32:44" +ik[2127] = 17.856 +il[2127] = -157 +im[2127] = 0 +ij[2127] = 4 +id[2128] = "2780-05-26T10:09:59" +ik[2128] = 11.484 +il[2128] = 67 +im[2128] = 0.0294 +ij[2128] = 2 +id[2129] = "2780-10-11T03:49:49" +ik[2129] = 16.694 +il[2129] = -63 +im[2129] = 0 +ij[2129] = 3 +id[2130] = "2780-11-20T21:11:39" +ik[2130] = 11.387 +il[2130] = 150 +im[2130] = 0.0256 +ij[2130] = 1 +id[2131] = "2781-07-03T12:02:18" +ik[2131] = 11.797 +il[2131] = 56 +im[2131] = 0.0139 +ij[2131] = 2 +id[2132] = "2781-12-27T01:06:57" +ik[2132] = 11.48 +il[2132] = 5 +im[2132] = 0.0203 +ij[2132] = 1 +id[2133] = "2782-03-02T17:59:51" +ik[2133] = 16.605 +il[2133] = -83 +im[2133] = 0 +ij[2133] = 4 +id[2134] = "2782-08-11T15:01:00" +ik[2134] = 11.839 +il[2134] = -144 +im[2134] = 0.0181 +ij[2134] = 2 +id[2135] = "2783-01-16T08:09:53" +ik[2135] = 19 +il[2135] = -13 +im[2135] = 0 +ij[2135] = 3 +id[2136] = "2783-02-01T13:06:05" +ik[2136] = 11.426 +il[2136] = -71 +im[2136] = 0.0021 +ij[2136] = 1 +id[2137] = "2783-09-18T15:56:44" +ik[2137] = 11.588 +il[2137] = -119 +im[2137] = 0.0306 +ij[2137] = 2 +id[2138] = "2784-03-08T09:25:46" +ik[2138] = 11.253 +il[2138] = 59 +im[2138] = 0.0084 +ij[2138] = 1 +id[2139] = "2784-05-25T03:32:15" +ik[2139] = 15.933 +il[2139] = -73 +im[2139] = 0 +ij[2139] = 4 +id[2140] = "2784-10-23T03:26:38" +ik[2140] = 11.176 +il[2140] = -30 +im[2140] = 0.0245 +ij[2140] = 2 +id[2141] = "2785-04-11T22:38:21" +ik[2141] = 11.035 +il[2141] = -124 +im[2141] = 0.0181 +ij[2141] = 1 +id[2142] = "2785-04-30T06:54:43" +ik[2142] = 18.428 +il[2142] = 117 +im[2142] = 0 +ij[2142] = 3 +id[2143] = "2785-11-24T20:31:55" +ik[2143] = 10.77 +il[2143] = -55 +im[2143] = 0.029 +ij[2143] = 2 +id[2144] = "2786-05-15T02:22:07" +ik[2144] = 10.847 +il[2144] = -176 +im[2144] = 0.0094 +ij[2144] = 1 +id[2145] = "2786-08-14T17:40:33" +ik[2145] = 16.616 +il[2145] = -147 +im[2145] = 0 +ij[2145] = 4 +id[2146] = "2786-12-25T11:12:54" +ik[2146] = 10.487 +il[2146] = -55 +im[2146] = 0.0231 +ij[2146] = 2 +id[2147] = "2787-06-16T04:17:11" +ik[2147] = 10.738 +il[2147] = -10 +im[2147] = 0.0074 +ij[2147] = 1 +id[2148] = "2787-07-30T01:32:52" +ik[2148] = 16.096 +il[2148] = -32 +im[2148] = 0 +ij[2148] = 3 +id[2149] = "2788-01-24T00:32:24" +ik[2149] = 10.378 +il[2149] = 143 +im[2149] = 0.0099 +ij[2149] = 2 +id[2150] = "2788-07-16T17:40:16" +ik[2150] = 10.731 +il[2150] = -118 +im[2150] = 0.011 +ij[2150] = 1 +id[2151] = "2788-11-05T13:28:24" +ik[2151] = 17.722 +il[2151] = -11 +im[2151] = 0 +ij[2151] = 4 +id[2152] = "2789-02-21T15:52:24" +ik[2152] = 10.46 +il[2152] = -92 +im[2152] = 0.0193 +ij[2152] = 2 +id[2153] = "2789-08-17T10:14:26" +ik[2153] = 10.826 +il[2153] = 23 +im[2153] = 0.0153 +ij[2153] = 1 +id[2154] = "2789-10-08T04:53:36" +ik[2154] = 14.987 +il[2154] = -20 +im[2154] = 0 +ij[2154] = 3 +id[2155] = "2790-03-24T12:40:27" +ik[2155] = 10.721 +il[2155] = 46 +im[2155] = 0.0245 +ij[2155] = 2 +id[2156] = "2790-09-18T21:31:06" +ik[2156] = 11.006 +il[2156] = -153 +im[2156] = 0.0242 +ij[2156] = 1 +id[2157] = "2791-02-01T21:05:45" +ik[2157] = 18.047 +il[2157] = 179 +im[2157] = 0 +ij[2157] = 4 +id[2158] = "2791-04-26T15:25:46" +ik[2158] = 11.116 +il[2158] = 30 +im[2158] = 0.0297 +ij[2158] = 2 +id[2159] = "2791-10-22T15:40:53" +ik[2159] = 11.223 +il[2159] = -7 +im[2159] = 0.0216 +ij[2159] = 1 +id[2160] = "2791-12-16T20:36:31" +ik[2160] = 15.988 +il[2160] = -152 +im[2160] = 0 +ij[2160] = 3 +id[2161] = "2792-05-31T14:03:33" +ik[2161] = 11.538 +il[2161] = 75 +im[2161] = 0.0206 +ij[2161] = 2 +id[2162] = "2792-11-25T20:50:29" +ik[2162] = 11.408 +il[2162] = -48 +im[2162] = 0.0175 +ij[2162] = 1 +id[2163] = "2793-05-04T18:06:11" +ik[2163] = 17.023 +il[2163] = 11 +im[2163] = 0 +ij[2163] = 4 +id[2164] = "2793-07-08T22:51:36" +ik[2164] = 11.821 +il[2164] = 173 +im[2164] = 0.0035 +ij[2164] = 2 +id[2165] = "2794-01-01T04:00:20" +ik[2165] = 11.481 +il[2165] = 50 +im[2165] = 0.003 +ij[2165] = 1 +id[2166] = "2794-03-16T06:15:07" +ik[2166] = 18.457 +il[2166] = 34 +im[2166] = 0 +ij[2166] = 3 +id[2167] = "2794-08-17T01:54:46" +ik[2167] = 11.82 +il[2167] = -29 +im[2167] = 0.0309 +ij[2167] = 2 +id[2168] = "2795-02-06T15:34:42" +ik[2168] = 11.409 +il[2168] = -11 +im[2168] = 0.014 +ij[2168] = 1 +id[2169] = "2795-07-30T19:13:26" +ik[2169] = 15.984 +il[2169] = -122 +im[2169] = 0 +ij[2169] = 4 +id[2170] = "2795-09-23T19:53:54" +ik[2170] = 11.537 +il[2170] = -113 +im[2170] = 0.0227 +ij[2170] = 2 +id[2171] = "2796-03-13T08:08:52" +ik[2171] = 11.224 +il[2171] = -105 +im[2171] = 0.0246 +ij[2171] = 1 +id[2172] = "2796-06-28T11:59:08" +ik[2172] = 18.966 +il[2172] = -87 +im[2172] = 0 +ij[2172] = 3 +id[2173] = "2796-10-27T21:24:02" +ik[2173] = 11.116 +il[2173] = -22 +im[2173] = 0.0174 +ij[2173] = 2 +id[2174] = "2797-04-16T15:53:16" +ik[2174] = 11.006 +il[2174] = -90 +im[2174] = 0.0249 +ij[2174] = 1 +id[2175] = "2797-10-19T05:05:16" +ik[2175] = 16.302 +il[2175] = -39 +im[2175] = 0 +ij[2175] = 4 +id[2176] = "2797-11-29T05:15:30" +ik[2176] = 10.722 +il[2176] = -73 +im[2176] = 0.0223 +ij[2176] = 2 +id[2177] = "2798-05-19T14:09:44" +ik[2177] = 10.826 +il[2177] = 60 +im[2177] = 0.0219 +ij[2177] = 1 +id[2178] = "2798-10-03T03:54:34" +ik[2178] = 16.775 +il[2178] = 44 +im[2178] = 0 +ij[2178] = 3 +id[2179] = "2798-12-29T13:45:50" +ik[2179] = 10.461 +il[2179] = 151 +im[2179] = 0.0272 +ij[2179] = 2 +id[2180] = "2799-06-20T12:21:53" +ik[2180] = 10.73 +il[2180] = -8 +im[2180] = 0.0161 +ij[2180] = 1 +id[2181] = "2800-01-09T23:34:30" +ik[2181] = 17.41 +il[2181] = -64 +im[2181] = 0 +ij[2181] = 4 +id[2182] = "2800-01-28T00:54:34" +ik[2182] = 10.378 +il[2182] = 68 +im[2182] = 0.0158 +ij[2182] = 2 +id[2183] = "2800-07-21T00:41:19" +ik[2183] = 10.738 +il[2183] = -73 +im[2183] = 0.0022 +ij[2183] = 1 +id[2184] = "2800-12-17T04:37:55" +ik[2184] = 15.119 +il[2184] = 122 +im[2184] = 0 +ij[2184] = 3 +id[2185] = "2801-02-25T18:38:35" +ik[2185] = 10.485 +il[2185] = 107 +im[2185] = 0.0092 +ij[2185] = 2 +id[2186] = "2801-08-21T19:18:28" +ik[2186] = 10.847 +il[2186] = -7 +im[2186] = 0.0037 +ij[2186] = 1 +id[2187] = "2802-03-28T22:19:46" +ik[2187] = 10.769 +il[2187] = -5 +im[2187] = 0.0174 +ij[2187] = 2 +id[2188] = "2802-04-05T15:50:06" +ik[2188] = 18.093 +il[2188] = 111 +im[2188] = 0 +ij[2188] = 4 +id[2189] = "2802-09-23T11:24:17" +ik[2189] = 11.035 +il[2189] = 3 +im[2189] = 0.0154 +ij[2189] = 1 +id[2190] = "2803-02-22T18:01:00" +ik[2190] = 15.45 +il[2190] = 12 +im[2190] = 0 +ij[2190] = 3 +id[2191] = "2803-05-01T11:22:33" +ik[2191] = 11.175 +il[2191] = -34 +im[2191] = 0.0237 +ij[2191] = 2 +id[2192] = "2803-10-27T12:02:26" +ik[2192] = 11.253 +il[2192] = -86 +im[2192] = 0.0068 +ij[2192] = 1 +id[2193] = "2804-06-05T20:53:05" +ik[2193] = 11.589 +il[2193] = -23 +im[2193] = 0.0037 +ij[2193] = 2 +id[2194] = "2804-07-06T03:05:02" +ik[2194] = 17.439 +il[2194] = -66 +im[2194] = 0 +ij[2194] = 4 +id[2195] = "2804-11-30T23:04:50" +ik[2195] = 11.426 +il[2195] = 23 +im[2195] = 0.0041 +ij[2195] = 1 +id[2196] = "2805-05-15T18:56:52" +ik[2196] = 17.707 +il[2196] = 122 +im[2196] = 0 +ij[2196] = 3 +id[2197] = "2805-07-14T12:20:00" +ik[2197] = 11.84 +il[2197] = -165 +im[2197] = 0.02 +ij[2197] = 2 +id[2198] = "2806-01-06T09:00:08" +ik[2198] = 11.48 +il[2198] = 19 +im[2198] = 0.0199 +ij[2198] = 1 +id[2199] = "2806-08-22T13:58:13" +ik[2199] = 11.796 +il[2199] = 44 +im[2199] = 0.0294 +ij[2199] = 2 +id[2200] = "2806-10-04T00:32:58" +ik[2200] = 16.18 +il[2200] = -157 +im[2200] = 0 +ij[2200] = 4 +id[2201] = "2807-02-11T19:06:05" +ik[2201] = 11.389 +il[2201] = 11 +im[2201] = 0.0248 +ij[2201] = 1 +id[2202] = "2807-08-27T00:30:14" +ik[2202] = 19.212 +il[2202] = -52 +im[2202] = 0 +ij[2202] = 3 +id[2203] = "2807-09-28T23:31:29" +ik[2203] = 11.483 +il[2203] = -97 +im[2203] = 0.006 +ij[2203] = 2 +id[2204] = "2808-03-18T06:50:06" +ik[2204] = 11.194 +il[2204] = 92 +im[2204] = 0.0308 +ij[2204] = 1 +id[2205] = "2808-11-01T14:22:59" +ik[2205] = 11.057 +il[2205] = 22 +im[2205] = 0.0067 +ij[2205] = 2 +id[2206] = "2808-12-24T00:59:28" +ik[2206] = 16.067 +il[2206] = 120 +im[2206] = 0 +ij[2206] = 4 +id[2207] = "2809-04-21T08:34:30" +ik[2207] = 10.977 +il[2207] = -36 +im[2207] = 0.0269 +ij[2207] = 1 +id[2208] = "2809-12-03T13:21:04" +ik[2208] = 10.677 +il[2208] = -70 +im[2208] = 0.01 +ij[2208] = 2 +id[2209] = "2809-12-05T06:22:19" +ik[2209] = 17.525 +il[2209] = 57 +im[2209] = 0 +ij[2209] = 3 +id[2210] = "2810-05-24T02:04:24" +ik[2210] = 10.807 +il[2210] = -78 +im[2210] = 0.0285 +ij[2210] = 1 +id[2211] = "2811-01-02T16:51:36" +ik[2211] = 10.438 +il[2211] = -23 +im[2211] = 0.0272 +ij[2211] = 2 +id[2212] = "2811-03-15T22:35:19" +ik[2212] = 17.057 +il[2212] = 134 +im[2212] = 0 +ij[2212] = 4 +id[2213] = "2811-06-24T21:45:21" +ik[2213] = 10.725 +il[2213] = -50 +im[2213] = 0.022 +ij[2213] = 1 +id[2214] = "2812-02-01T03:28:30" +ik[2214] = 10.381 +il[2214] = -86 +im[2214] = 0.0207 +ij[2214] = 2 +id[2215] = "2812-02-25T10:51:18" +ik[2215] = 15.445 +il[2215] = 179 +im[2215] = 0 +ij[2215] = 3 +id[2216] = "2812-07-25T10:33:01" +ik[2216] = 10.747 +il[2216] = -132 +im[2216] = 0.0162 +ij[2216] = 1 +id[2217] = "2813-03-02T01:06:05" +ik[2217] = 10.515 +il[2217] = 168 +im[2217] = 0.006 +ij[2217] = 2 +id[2218] = "2813-06-08T05:23:08" +ik[2218] = 17.999 +il[2218] = 81 +im[2218] = 0 +ij[2218] = 4 +id[2219] = "2813-08-26T08:14:12" +ik[2219] = 10.868 +il[2219] = -177 +im[2219] = 0.0065 +ij[2219] = 1 +id[2220] = "2814-04-02T12:22:45" +ik[2220] = 10.82 +il[2220] = 145 +im[2220] = 0.0089 +ij[2220] = 2 +id[2221] = "2814-05-03T07:14:35" +ik[2221] = 15.113 +il[2221] = 174 +im[2221] = 0 +ij[2221] = 3 +id[2222] = "2814-09-28T05:09:18" +ik[2222] = 11.064 +il[2222] = 18 +im[2222] = 0.0026 +ij[2222] = 1 +id[2223] = "2815-05-06T11:14:38" +ik[2223] = 11.236 +il[2223] = 120 +im[2223] = 0.008 +ij[2223] = 2 +id[2224] = "2815-09-07T06:03:53" +ik[2224] = 17.785 +il[2224] = 76 +im[2224] = 0 +ij[2224] = 4 +id[2225] = "2815-11-01T10:54:20" +ik[2225] = 11.281 +il[2225] = 105 +im[2225] = 0.0079 +ij[2225] = 1 +id[2226] = "2816-06-11T05:42:00" +ik[2226] = 11.638 +il[2226] = 167 +im[2226] = 0.0125 +ij[2226] = 2 +id[2227] = "2816-07-17T10:22:13" +ik[2227] = 16.897 +il[2227] = 171 +im[2227] = 0 +ij[2227] = 3 +id[2228] = "2816-12-06T01:36:11" +ik[2228] = 11.442 +il[2228] = 79 +im[2228] = 0.0154 +ij[2228] = 1 +id[2229] = "2817-07-20T00:37:43" +ik[2229] = 11.853 +il[2229] = -101 +im[2229] = 0.0295 +ij[2229] = 2 +id[2230] = "2817-12-07T05:28:27" +ik[2230] = 16.504 +il[2230] = -27 +im[2230] = 0 +ij[2230] = 4 +id[2231] = "2818-01-11T11:52:39" +ik[2231] = 11.476 +il[2231] = 64 +im[2231] = 0.0292 +ij[2231] = 1 +id[2232] = "2818-08-27T22:04:48" +ik[2232] = 11.766 +il[2232] = -102 +im[2232] = 0.0158 +ij[2232] = 2 +id[2233] = "2818-10-24T02:37:49" +ik[2233] = 19.093 +il[2233] = -1 +im[2233] = 0 +ij[2233] = 3 +id[2234] = "2819-02-16T18:48:23" +ik[2234] = 11.367 +il[2234] = 171 +im[2234] = 0.0277 +ij[2234] = 1 +id[2235] = "2819-10-03T22:03:56" +ik[2235] = 11.427 +il[2235] = 104 +im[2235] = 0.0093 +ij[2235] = 2 +id[2236] = "2820-02-28T18:37:35" +ik[2236] = 15.943 +il[2236] = 1 +im[2236] = 0 +ij[2236] = 4 +id[2237] = "2820-03-23T01:12:17" +ik[2237] = 11.164 +il[2237] = 85 +im[2237] = 0.0281 +ij[2237] = 1 +id[2238] = "2820-11-06T02:48:37" +ik[2238] = 11 +il[2238] = -130 +im[2238] = 0.0079 +ij[2238] = 2 +id[2239] = "2821-02-04T04:47:51" +ik[2239] = 18.26 +il[2239] = 155 +im[2239] = 0 +ij[2239] = 3 +id[2240] = "2821-04-25T21:46:13" +ik[2240] = 10.95 +il[2240] = 144 +im[2240] = 0.0222 +ij[2240] = 1 +id[2241] = "2821-12-07T18:29:48" +ik[2241] = 10.635 +il[2241] = 44 +im[2241] = 0.0025 +ij[2241] = 2 +id[2242] = "2822-05-20T01:47:25" +ik[2242] = 16.697 +il[2242] = -180 +im[2242] = 0 +ij[2242] = 4 +id[2243] = "2822-05-28T11:51:47" +ik[2243] = 10.789 +il[2243] = -134 +im[2243] = 0.0284 +ij[2243] = 1 +id[2244] = "2823-01-06T18:42:11" +ik[2244] = 10.419 +il[2244] = -151 +im[2244] = 0.0234 +ij[2244] = 2 +id[2245] = "2823-05-04T02:28:10" +ik[2245] = 15.948 +il[2245] = -165 +im[2245] = 0 +ij[2245] = 3 +id[2246] = "2823-06-29T06:36:00" +ik[2246] = 10.721 +il[2246] = -72 +im[2246] = 0.0254 +ij[2246] = 1 +id[2247] = "2824-02-05T06:08:38" +ik[2247] = 10.388 +il[2247] = 116 +im[2247] = 0.0248 +ij[2247] = 2 +id[2248] = "2824-07-29T20:34:30" +ik[2248] = 10.758 +il[2248] = 163 +im[2248] = 0.0259 +ij[2248] = 1 +id[2249] = "2824-08-11T05:48:54" +ik[2249] = 17.789 +il[2249] = 18 +im[2249] = 0 +ij[2249] = 4 +id[2250] = "2825-03-06T08:03:33" +ik[2250] = 10.547 +il[2250] = -142 +im[2250] = 0.0185 +ij[2250] = 2 +id[2251] = "2825-07-12T12:48:14" +ik[2251] = 14.986 +il[2251] = 104 +im[2251] = 0 +ij[2251] = 3 +id[2252] = "2825-08-30T21:04:36" +ik[2252] = 10.892 +il[2252] = 17 +im[2252] = 0.0157 +ij[2252] = 1 +id[2253] = "2826-04-07T02:27:27" +ik[2253] = 10.872 +il[2253] = -67 +im[2253] = 0.0028 +ij[2253] = 2 +id[2254] = "2826-10-02T21:53:16" +ik[2254] = 11.094 +il[2254] = 71 +im[2254] = 0.0183 +ij[2254] = 1 +id[2255] = "2826-11-08T09:46:56" +ik[2255] = 18.012 +il[2255] = -169 +im[2255] = 0 +ij[2255] = 4 +id[2256] = "2827-05-11T10:05:39" +ik[2256] = 11.295 +il[2256] = -49 +im[2256] = 0.0122 +ij[2256] = 2 +id[2257] = "2827-09-21T09:52:16" +ik[2257] = 16.155 +il[2257] = -11 +im[2257] = 0 +ij[2257] = 3 +id[2258] = "2827-11-06T07:38:47" +ik[2258] = 11.308 +il[2258] = 12 +im[2258] = 0.018 +ij[2258] = 1 +id[2259] = "2828-06-16T12:05:02" +ik[2259] = 11.682 +il[2259] = 85 +im[2259] = 0.0239 +ij[2259] = 2 +id[2260] = "2828-12-11T01:13:09" +ik[2260] = 11.456 +il[2260] = -118 +im[2260] = 0.0288 +ij[2260] = 1 +id[2261] = "2829-02-08T07:32:26" +ik[2261] = 16.913 +il[2261] = -4 +im[2261] = 0 +ij[2261] = 4 +id[2262] = "2829-07-25T09:42:37" +ik[2262] = 11.86 +il[2262] = 79 +im[2262] = 0.0256 +ij[2262] = 2 +id[2263] = "2829-12-21T14:00:48" +ik[2263] = 18.623 +il[2263] = 75 +im[2263] = 0 +ij[2263] = 3 +id[2264] = "2830-01-16T12:01:35" +ik[2264] = 11.47 +il[2264] = -152 +im[2264] = 0.0295 +ij[2264] = 1 +id[2265] = "2830-09-02T03:13:32" +ik[2265] = 11.732 +il[2265] = -138 +im[2265] = 0.0067 +ij[2265] = 2 +id[2266] = "2831-02-21T16:46:24" +ik[2266] = 11.343 +il[2266] = 34 +im[2266] = 0.0222 +ij[2266] = 1 +id[2267] = "2831-05-05T09:36:25" +ik[2267] = 15.956 +il[2267] = -22 +im[2267] = 0 +ij[2267] = 4 +id[2268] = "2831-10-08T19:08:41" +ik[2268] = 11.37 +il[2268] = 2 +im[2268] = 0.0195 +ij[2268] = 2 +id[2269] = "2832-03-27T19:34:27" +ik[2269] = 11.133 +il[2269] = 80 +im[2269] = 0.0168 +ij[2269] = 1 +id[2270] = "2832-04-04T16:25:06" +ik[2270] = 18.853 +il[2270] = 74 +im[2270] = 0 +ij[2270] = 3 +id[2271] = "2832-11-10T15:42:37" +ik[2271] = 10.943 +il[2271] = 62 +im[2271] = 0.0222 +ij[2271] = 2 +id[2272] = "2833-04-30T12:43:55" +ik[2272] = 10.923 +il[2272] = -99 +im[2272] = 0.0137 +ij[2272] = 1 +id[2273] = "2833-07-24T15:22:19" +ik[2273] = 16.371 +il[2273] = -151 +im[2273] = 0 +ij[2273] = 4 +id[2274] = "2833-12-12T01:34:27" +ik[2274] = 10.595 +il[2274] = 87 +im[2274] = 0.0094 +ij[2274] = 2 +id[2275] = "2834-06-02T00:17:25" +ik[2275] = 10.774 +il[2275] = 74 +im[2275] = 0.0219 +ij[2275] = 1 +id[2276] = "2834-07-08T23:06:34" +ik[2276] = 16.594 +il[2276] = -31 +im[2276] = 0 +ij[2276] = 3 +id[2277] = "2835-01-10T23:03:59" +ik[2277] = 10.403 +il[2277] = -10 +im[2277] = 0.0137 +ij[2277] = 2 +id[2278] = "2835-07-03T17:43:52" +ik[2278] = 10.72 +il[2278] = -176 +im[2278] = 0.0236 +ij[2278] = 1 +id[2279] = "2835-10-15T19:30:51" +ik[2279] = 17.494 +il[2279] = -167 +im[2279] = 0 +ij[2279] = 4 +id[2280] = "2836-02-09T10:34:01" +ik[2280] = 10.399 +il[2280] = -106 +im[2280] = 0.0254 +ij[2280] = 2 +id[2281] = "2836-08-03T07:28:16" +ik[2281] = 10.77 +il[2281] = 67 +im[2281] = 0.0288 +ij[2281] = 1 +id[2282] = "2836-09-20T18:36:51" +ik[2282] = 15.066 +il[2282] = 26 +im[2282] = 0 +ij[2282] = 3 +id[2283] = "2837-03-10T15:22:19" +ik[2283] = 10.583 +il[2283] = -109 +im[2283] = 0.0247 +ij[2283] = 2 +id[2284] = "2837-09-04T08:58:24" +ik[2284] = 10.916 +il[2284] = -116 +im[2284] = 0.0239 +ij[2284] = 1 +id[2285] = "2838-01-09T22:29:34" +ik[2285] = 18.096 +il[2285] = -19 +im[2285] = 0 +ij[2285] = 4 +id[2286] = "2838-04-11T15:24:02" +ik[2286] = 10.926 +il[2286] = 123 +im[2286] = 0.0147 +ij[2286] = 2 +id[2287] = "2838-10-07T12:04:10" +ik[2287] = 11.125 +il[2287] = -144 +im[2287] = 0.0275 +ij[2287] = 1 +id[2288] = "2838-11-27T12:50:15" +ik[2288] = 15.567 +il[2288] = 101 +im[2288] = 0 +ij[2288] = 3 +id[2289] = "2839-05-16T06:27:12" +ik[2289] = 11.354 +il[2289] = -128 +im[2289] = 0.0244 +ij[2289] = 2 +id[2290] = "2839-11-11T01:06:57" +ik[2290] = 11.335 +il[2290] = 38 +im[2290] = 0.026 +ij[2290] = 1 +id[2291] = "2840-04-11T08:09:44" +ik[2291] = 17.344 +il[2291] = -138 +im[2291] = 0 +ij[2291] = 4 +id[2292] = "2840-06-21T15:15:15" +ik[2292] = 11.722 +il[2292] = 120 +im[2292] = 0.0278 +ij[2292] = 2 +id[2293] = "2840-12-15T21:37:17" +ik[2293] = 11.467 +il[2293] = 165 +im[2293] = 0.0316 +ij[2293] = 1 +id[2294] = "2841-02-19T02:00:57" +ik[2294] = 17.903 +il[2294] = -23 +im[2294] = 0 +ij[2294] = 3 +id[2295] = "2841-07-30T15:24:54" +ik[2295] = 11.861 +il[2295] = 22 +im[2295] = 0.013 +ij[2295] = 2 +id[2296] = "2842-01-21T09:25:55" +ik[2296] = 11.46 +il[2296] = 92 +im[2296] = 0.0199 +ij[2296] = 1 +id[2297] = "2842-07-09T08:07:09" +ik[2297] = 16.118 +il[2297] = -170 +im[2297] = 0 +ij[2297] = 4 +id[2298] = "2842-09-07T05:19:58" +ik[2298] = 11.693 +il[2298] = -65 +im[2298] = 0.0235 +ij[2298] = 2 +id[2299] = "2843-02-26T12:49:14" +ik[2299] = 11.317 +il[2299] = -31 +im[2299] = 0.0127 +ij[2299] = 1 +id[2300] = "2843-06-02T22:41:05" +ik[2300] = 19.181 +il[2300] = -24 +im[2300] = 0 +ij[2300] = 3 +id[2301] = "2843-10-13T14:00:57" +ik[2301] = 11.312 +il[2301] = -23 +im[2301] = 0.0264 +ij[2301] = 2 +id[2302] = "2844-04-01T12:40:27" +ik[2302] = 11.103 +il[2302] = 121 +im[2302] = 0.0027 +ij[2302] = 1 +id[2303] = "2844-09-28T06:18:25" +ik[2303] = 16.112 +il[2303] = -171 +im[2303] = 0 +ij[2303] = 4 +id[2304] = "2844-11-15T03:06:20" +ik[2304] = 10.888 +il[2304] = -52 +im[2304] = 0.0292 +ij[2304] = 2 +id[2305] = "2845-05-05T02:38:58" +ik[2305] = 10.898 +il[2305] = 59 +im[2305] = 0.0044 +ij[2305] = 1 +id[2306] = "2845-09-10T12:50:15" +ik[2306] = 17.334 +il[2306] = -67 +im[2306] = 0 +ij[2306] = 3 +id[2307] = "2845-12-16T07:29:08" +ik[2307] = 10.558 +il[2307] = 168 +im[2307] = 0.0166 +ij[2307] = 2 +id[2308] = "2846-06-06T11:40:16" +ik[2308] = 10.76 +il[2308] = -36 +im[2308] = 0.0083 +ij[2308] = 1 +id[2309] = "2846-12-19T16:47:25" +ik[2309] = 17.147 +il[2309] = 95 +im[2309] = 0 +ij[2309] = 4 +id[2310] = "2847-01-15T02:16:56" +ik[2310] = 10.391 +il[2310] = 172 +im[2310] = 0.003 +ij[2310] = 2 +id[2311] = "2847-07-08T03:39:10" +ik[2311] = 10.72 +il[2311] = 123 +im[2311] = 0.0186 +ij[2311] = 1 +id[2312] = "2847-11-30T07:38:55" +ik[2312] = 15.344 +il[2312] = -164 +im[2312] = 0 +ij[2312] = 3 +id[2313] = "2848-02-13T14:15:04" +ik[2313] = 10.413 +il[2313] = 58 +im[2313] = 0.0231 +ij[2313] = 2 +id[2314] = "2848-08-07T17:37:40" +ik[2314] = 10.785 +il[2314] = -3 +im[2314] = 0.0259 +ij[2314] = 1 +id[2315] = "2849-03-14T06:11:22" +ik[2315] = 18.035 +il[2315] = 163 +im[2315] = 0 +ij[2315] = 4 +id[2316] = "2849-03-14T22:59:39" +ik[2316] = 10.621 +il[2316] = -86 +im[2316] = 0.0269 +ij[2316] = 2 +id[2317] = "2849-09-08T21:21:27" +ik[2317] = 10.942 +il[2317] = 94 +im[2317] = 0.0271 +ij[2317] = 1 +id[2318] = "2850-02-04T15:36:34" +ik[2318] = 15.178 +il[2318] = -79 +im[2318] = 0 +ij[2318] = 3 +id[2319] = "2850-04-16T06:22:45" +ik[2319] = 10.982 +il[2319] = -124 +im[2319] = 0.0261 +ij[2319] = 2 +id[2320] = "2850-10-12T04:38:21" +ik[2320] = 11.155 +il[2320] = -86 +im[2320] = 0.0297 +ij[2320] = 1 +id[2321] = "2851-05-21T06:57:18" +ik[2321] = 11.412 +il[2321] = 3 +im[2321] = 0.0293 +ij[2321] = 2 +id[2322] = "2851-06-13T08:15:12" +ik[2322] = 17.715 +il[2322] = 108 +im[2322] = 0 +ij[2322] = 4 +id[2323] = "2851-11-15T22:48:08" +ik[2323] = 11.36 +il[2323] = -89 +im[2323] = 0.0271 +ij[2323] = 1 +id[2324] = "2852-04-22T01:23:57" +ik[2324] = 17.093 +il[2324] = -112 +im[2324] = 0 +ij[2324] = 3 +id[2325] = "2852-06-26T23:59:42" +ik[2325] = 11.759 +il[2325] = -48 +im[2325] = 0.0201 +ij[2325] = 2 +id[2326] = "2852-12-20T23:21:41" +ik[2326] = 11.475 +il[2326] = -112 +im[2326] = 0.0248 +ij[2326] = 1 +id[2327] = "2853-08-05T02:37:14" +ik[2327] = 11.856 +il[2327] = 124 +im[2327] = 0.0092 +ij[2327] = 2 +id[2328] = "2853-09-11T19:12:25" +ik[2328] = 16.417 +il[2328] = 97 +im[2328] = 0 +ij[2328] = 4 +id[2329] = "2854-01-26T12:06:54" +ik[2329] = 11.448 +il[2329] = 144 +im[2329] = 0.0041 +ij[2329] = 1 +id[2330] = "2854-07-31T02:56:49" +ik[2330] = 19.154 +il[2330] = -50 +im[2330] = 0 +ij[2330] = 3 +id[2331] = "2854-09-12T11:43:00" +ik[2331] = 11.65 +il[2331] = -146 +im[2331] = 0.0304 +ij[2331] = 2 +id[2332] = "2855-03-03T12:47:31" +ik[2332] = 11.29 +il[2332] = 117 +im[2332] = 0.0042 +ij[2332] = 1 +id[2333] = "2855-10-18T11:02:15" +ik[2333] = 11.253 +il[2333] = -125 +im[2333] = 0.0258 +ij[2333] = 2 +id[2334] = "2855-12-04T02:23:16" +ik[2334] = 15.958 +il[2334] = -19 +im[2334] = 0 +ij[2334] = 4 +id[2335] = "2856-04-06T07:35:19" +ik[2335] = 11.072 +il[2335] = 92 +im[2335] = 0.016 +ij[2335] = 1 +id[2336] = "2856-11-10T23:57:24" +ik[2336] = 18.083 +il[2336] = -69 +im[2336] = 0 +ij[2336] = 3 +id[2337] = "2856-11-19T14:25:43" +ik[2337] = 10.835 +il[2337] = -164 +im[2337] = 0.0294 +ij[2337] = 2 +id[2338] = "2857-05-09T15:58:36" +ik[2338] = 10.874 +il[2338] = -129 +im[2338] = 0.0075 +ij[2338] = 1 +id[2339] = "2857-12-20T11:27:53" +ik[2339] = 10.524 +il[2339] = -34 +im[2339] = 0.0233 +ij[2339] = 2 +id[2340] = "2858-02-22T16:35:11" +ik[2340] = 16.784 +il[2340] = -96 +im[2340] = 0 +ij[2340] = 4 +id[2341] = "2858-06-10T20:35:31" +ik[2341] = 10.748 +il[2341] = -62 +im[2341] = 0.0065 +ij[2341] = 1 +id[2342] = "2859-01-19T02:39:50" +ik[2342] = 10.383 +il[2342] = 97 +im[2342] = 0.0111 +ij[2342] = 2 +id[2343] = "2859-02-06T06:22:10" +ik[2343] = 15.806 +il[2343] = -46 +im[2343] = 0 +ij[2343] = 3 +id[2344] = "2859-07-12T10:23:22" +ik[2344] = 10.723 +il[2344] = 177 +im[2344] = 0.0116 +ij[2344] = 1 +id[2345] = "2860-02-17T15:20:35" +ik[2345] = 10.431 +il[2345] = -42 +im[2345] = 0.0183 +ij[2345] = 2 +id[2346] = "2860-05-16T22:43:58" +ik[2346] = 17.851 +il[2346] = 25 +im[2346] = 0 +ij[2346] = 4 +id[2347] = "2860-08-12T01:10:33" +ik[2347] = 10.802 +il[2347] = 22 +im[2347] = 0.0167 +ij[2347] = 1 +id[2348] = "2861-03-19T05:22:42" +ik[2348] = 10.663 +il[2348] = -23 +im[2348] = 0.0249 +ij[2348] = 2 +id[2349] = "2861-04-15T15:14:41" +ik[2349] = 14.999 +il[2349] = 66 +im[2349] = 0 +ij[2349] = 3 +id[2350] = "2861-09-13T08:48:46" +ik[2350] = 10.969 +il[2350] = -22 +im[2350] = 0.0248 +ij[2350] = 1 +id[2351] = "2862-04-20T22:03:56" +ik[2351] = 11.04 +il[2351] = -34 +im[2351] = 0.0298 +ij[2351] = 2 +id[2352] = "2862-08-14T09:57:10" +ik[2352] = 17.975 +il[2352] = -64 +im[2352] = 0 +ij[2352] = 4 +id[2353] = "2862-10-16T22:08:24" +ik[2353] = 11.186 +il[2353] = -61 +im[2353] = 0.0242 +ij[2353] = 1 +id[2354] = "2863-05-26T09:48:48" +ik[2354] = 11.469 +il[2354] = 49 +im[2354] = 0.0249 +ij[2354] = 2 +id[2355] = "2863-06-26T13:22:22" +ik[2355] = 16.327 +il[2355] = 123 +im[2355] = 0 +ij[2355] = 3 +id[2356] = "2863-11-20T22:42:48" +ik[2356] = 11.383 +il[2356] = 64 +im[2356] = 0.0202 +ij[2356] = 1 +id[2357] = "2864-07-02T11:33:12" +ik[2357] = 11.79 +il[2357] = 41 +im[2357] = 0.0065 +ij[2357] = 2 +id[2358] = "2864-11-14T09:21:44" +ik[2358] = 16.81 +il[2358] = 42 +im[2358] = 0 +ij[2358] = 4 +id[2359] = "2864-12-26T03:27:38" +ik[2359] = 11.481 +il[2359] = -110 +im[2359] = 0.0069 +ij[2359] = 1 +id[2360] = "2865-08-10T15:42:37" +ik[2360] = 11.845 +il[2360] = 161 +im[2360] = 0.0279 +ij[2360] = 2 +id[2361] = "2865-09-27T17:37:58" +ik[2361] = 18.769 +il[2361] = -95 +im[2361] = 0 +ij[2361] = 3 +id[2362] = "2866-01-31T16:22:30" +ik[2362] = 11.433 +il[2362] = 140 +im[2362] = 0.0108 +ij[2362] = 1 +id[2363] = "2866-09-17T18:27:12" +ik[2363] = 11.603 +il[2363] = 117 +im[2363] = 0.0265 +ij[2363] = 2 +id[2364] = "2867-02-08T00:07:12" +ik[2364] = 15.938 +il[2364] = 73 +im[2364] = 0 +ij[2364] = 4 +id[2365] = "2867-03-08T13:14:09" +ik[2365] = 11.262 +il[2365] = -109 +im[2365] = 0.0215 +ij[2365] = 1 +id[2366] = "2867-10-23T07:25:32" +ik[2366] = 11.193 +il[2366] = 155 +im[2366] = 0.0186 +ij[2366] = 2 +id[2367] = "2868-01-10T22:52:01" +ik[2367] = 18.723 +il[2367] = 161 +im[2367] = 0 +ij[2367] = 3 +id[2368] = "2868-04-11T02:19:32" +ik[2368] = 11.042 +il[2368] = 71 +im[2368] = 0.0243 +ij[2368] = 1 +id[2369] = "2868-11-24T01:06:05" +ik[2369] = 10.784 +il[2369] = 108 +im[2369] = 0.0231 +ij[2369] = 2 +id[2370] = "2869-04-29T03:32:32" +ik[2370] = 16.445 +il[2370] = 29 +im[2370] = 0 +ij[2370] = 4 +id[2371] = "2869-05-14T05:13:46" +ik[2371] = 10.851 +il[2371] = 52 +im[2371] = 0.0206 +ij[2371] = 1 +id[2372] = "2869-12-24T15:42:37" +ik[2372] = 10.494 +il[2372] = 111 +im[2372] = 0.0269 +ij[2372] = 2 +id[2373] = "2870-04-13T12:57:44" +ik[2373] = 16.421 +il[2373] = 88 +im[2373] = 0 +ij[2373] = 3 +id[2374] = "2870-06-15T06:22:45" +ik[2374] = 10.738 +il[2374] = -120 +im[2374] = 0.0161 +ij[2374] = 1 +id[2375] = "2871-01-23T04:41:05" +ik[2375] = 10.378 +il[2375] = -38 +im[2375] = 0.0178 +ij[2375] = 2 +id[2376] = "2871-07-16T19:28:16" +ik[2376] = 10.727 +il[2376] = 146 +im[2376] = 0.0002 +ij[2376] = 1 +id[2377] = "2871-07-21T08:22:33" +ik[2377] = 17.572 +il[2377] = -12 +im[2377] = 0 +ij[2377] = 4 +id[2378] = "2872-02-21T19:46:50" +ik[2378] = 10.452 +il[2378] = 96 +im[2378] = 0.0086 +ij[2378] = 2 +id[2379] = "2872-06-24T23:49:37" +ik[2379] = 15.028 +il[2379] = -113 +im[2379] = 0 +ij[2379] = 3 +id[2380] = "2872-08-16T12:26:21" +ik[2380] = 10.82 +il[2380] = -87 +im[2380] = 0.0045 +ij[2380] = 1 +id[2381] = "2873-03-23T16:13:35" +ik[2381] = 10.707 +il[2381] = -113 +im[2381] = 0.0177 +ij[2381] = 2 +id[2382] = "2873-09-18T00:28:56" +ik[2382] = 10.997 +il[2382] = 69 +im[2382] = 0.0171 +ij[2382] = 1 +id[2383] = "2873-10-16T01:45:33" +ik[2383] = 18.092 +il[2383] = -27 +im[2383] = 0 +ij[2383] = 4 +id[2384] = "2874-04-25T18:20:09" +ik[2384] = 11.099 +il[2384] = -106 +im[2384] = 0.0257 +ij[2384] = 2 +id[2385] = "2874-09-01T12:12:40" +ik[2385] = 15.698 +il[2385] = 25 +im[2385] = 0 +ij[2385] = 3 +id[2386] = "2874-10-21T19:10:33" +ik[2386] = 11.216 +il[2386] = -164 +im[2386] = 0.01 +ij[2386] = 1 +id[2387] = "2875-05-31T15:54:08" +ik[2387] = 11.524 +il[2387] = -22 +im[2387] = 0.0095 +ij[2387] = 2 +id[2388] = "2875-11-26T00:16:33" +ik[2388] = 11.404 +il[2388] = 157 +im[2388] = 0.0084 +ij[2388] = 1 +id[2389] = "2876-01-17T01:05:39" +ik[2389] = 17.237 +il[2389] = 80 +im[2389] = 0 +ij[2389] = 4 +id[2390] = "2876-07-07T23:32:21" +ik[2390] = 11.816 +il[2390] = 118 +im[2390] = 0.0123 +ij[2390] = 2 +id[2391] = "2876-11-26T06:32:06" +ik[2391] = 18.105 +il[2391] = 135 +im[2391] = 0 +ij[2391] = 3 +id[2392] = "2876-12-31T06:47:31" +ik[2392] = 11.483 +il[2392] = -80 +im[2392] = 0.0147 +ij[2392] = 1 +id[2393] = "2877-08-16T02:06:17" +ik[2393] = 11.827 +il[2393] = -67 +im[2393] = 0.0317 +ij[2393] = 2 +id[2394] = "2878-02-05T17:35:57" +ik[2394] = 11.415 +il[2394] = -115 +im[2394] = 0.0217 +ij[2394] = 1 +id[2395] = "2878-04-14T08:23:34" +ik[2395] = 16.063 +il[2395] = -68 +im[2395] = 0 +ij[2395] = 4 +id[2396] = "2878-09-22T20:26:35" +ik[2396] = 11.553 +il[2396] = -164 +im[2396] = 0.0116 +ij[2396] = 2 +id[2397] = "2879-03-10T13:12:00" +ik[2397] = 19.13 +il[2397] = 131 +im[2397] = 0 +ij[2397] = 3 +id[2398] = "2879-03-13T09:34:42" +ik[2398] = 11.233 +il[2398] = 176 +im[2398] = 0.0302 +ij[2398] = 1 +id[2399] = "2879-10-27T22:57:04" +ik[2399] = 11.133 +il[2399] = -109 +im[2399] = 0.0096 +ij[2399] = 2 +id[2400] = "2880-04-15T17:01:23" +ik[2400] = 11.013 +il[2400] = -162 +im[2400] = 0.0272 +ij[2400] = 1 +id[2401] = "2880-07-03T16:31:52" +ik[2401] = 16.165 +il[2401] = 79 +im[2401] = 0 +ij[2401] = 4 +id[2402] = "2880-11-28T08:05:25" +ik[2402] = 10.736 +il[2402] = 154 +im[2402] = 0.0109 +ij[2402] = 2 +id[2403] = "2881-05-18T15:45:21" +ik[2403] = 10.83 +il[2403] = -33 +im[2403] = 0.028 +ij[2403] = 1 +id[2404] = "2881-06-16T13:23:31" +ik[2404] = 17.146 +il[2404] = 24 +im[2404] = 0 +ij[2404] = 3 +id[2405] = "2881-12-28T18:00:43" +ik[2405] = 10.467 +il[2405] = -34 +im[2405] = 0.0264 +ij[2405] = 2 +id[2406] = "2882-06-19T15:02:00" +ik[2406] = 10.73 +il[2406] = -135 +im[2406] = 0.022 +ij[2406] = 1 +id[2407] = "2882-09-24T01:18:11" +ik[2407] = 17.232 +il[2407] = 47 +im[2407] = 0 +ij[2407] = 4 +id[2408] = "2883-01-27T06:31:40" +ik[2408] = 10.376 +il[2408] = -166 +im[2408] = 0.0222 +ij[2408] = 2 +id[2409] = "2883-07-21T04:42:48" +ik[2409] = 10.734 +il[2409] = 110 +im[2409] = 0.0151 +ij[2409] = 1 +id[2410] = "2883-09-03T17:28:36" +ik[2410] = 15.258 +il[2410] = -110 +im[2410] = 0 +ij[2410] = 3 +id[2411] = "2884-02-26T00:54:34" +ik[2411] = 10.477 +il[2411] = -155 +im[2411] = 0.0065 +ij[2411] = 2 +id[2412] = "2884-08-21T00:09:30" +ik[2412] = 10.84 +il[2412] = 147 +im[2412] = 0.0065 +ij[2412] = 1 +id[2413] = "2884-12-18T05:20:32" +ik[2413] = 18.064 +il[2413] = -55 +im[2413] = 0 +ij[2413] = 4 +id[2414] = "2885-03-28T03:53:16" +ik[2414] = 10.755 +il[2414] = 123 +im[2414] = 0.009 +ij[2414] = 2 +id[2415] = "2885-09-22T15:57:44" +ik[2415] = 11.026 +il[2415] = 168 +im[2415] = 0.0022 +ij[2415] = 1 +id[2416] = "2885-11-09T05:48:02" +ik[2416] = 15.257 +il[2416] = 178 +im[2416] = 0 +ij[2416] = 3 +id[2417] = "2886-04-30T14:34:39" +ik[2417] = 11.159 +il[2417] = 179 +im[2417] = 0.0127 +ij[2417] = 2 +id[2418] = "2886-10-26T14:53:13" +ik[2418] = 11.246 +il[2418] = 140 +im[2418] = 0.0049 +ij[2418] = 1 +id[2419] = "2887-03-20T00:43:46" +ik[2419] = 17.629 +il[2419] = -18 +im[2419] = 0 +ij[2419] = 4 +id[2420] = "2887-06-05T20:30:11" +ik[2420] = 11.576 +il[2420] = -41 +im[2420] = 0.0069 +ij[2420] = 2 +id[2421] = "2887-11-30T23:24:25" +ik[2421] = 11.423 +il[2421] = -18 +im[2421] = 0.0096 +ij[2421] = 1 +id[2422] = "2888-01-27T12:42:02" +ik[2422] = 17.303 +il[2422] = -50 +im[2422] = 0 +ij[2422] = 3 +id[2423] = "2888-07-13T08:39:50" +ik[2423] = 11.836 +il[2423] = -63 +im[2423] = 0.0273 +ij[2423] = 2 +id[2424] = "2889-01-05T07:09:41" +ik[2424] = 11.483 +il[2424] = 55 +im[2424] = 0.0265 +ij[2424] = 1 +id[2425] = "2889-06-17T21:10:39" +ik[2425] = 16.33 +il[2425] = 137 +im[2425] = 0 +ij[2425] = 4 +id[2426] = "2889-08-21T09:03:44" +ik[2426] = 11.805 +il[2426] = -169 +im[2426] = 0.0234 +ij[2426] = 2 +id[2427] = "2890-02-10T16:22:30" +ik[2427] = 11.396 +il[2427] = 79 +im[2427] = 0.028 +ij[2427] = 1 +id[2428] = "2890-05-07T14:14:55" +ik[2428] = 19.197 +il[2428] = -138 +im[2428] = 0 +ij[2428] = 3 +id[2429] = "2890-09-27T19:59:13" +ik[2429] = 11.5 +il[2429] = 2 +im[2429] = 0.005 +ij[2429] = 2 +id[2430] = "2891-03-18T04:46:24" +ik[2430] = 11.203 +il[2430] = 136 +im[2430] = 0.0298 +ij[2430] = 1 +id[2431] = "2891-09-08T11:37:32" +ik[2431] = 15.983 +il[2431] = -92 +im[2431] = 0 +ij[2431] = 4 +id[2432] = "2891-11-01T13:51:18" +ik[2432] = 11.075 +il[2432] = 10 +im[2432] = 0.0049 +ij[2432] = 2 +id[2433] = "2892-04-20T08:31:03" +ik[2433] = 10.984 +il[2433] = -65 +im[2433] = 0.0237 +ij[2433] = 1 +id[2434] = "2892-08-17T14:30:54" +ik[2434] = 17.9 +il[2434] = -125 +im[2434] = 0 +ij[2434] = 3 +id[2435] = "2892-12-02T16:18:02" +ik[2435] = 10.689 +il[2435] = 155 +im[2435] = 0.0021 +ij[2435] = 2 +id[2436] = "2893-05-23T04:29:34" +ik[2436] = 10.81 +il[2436] = 167 +im[2436] = 0.0286 +ij[2436] = 1 +id[2437] = "2893-11-28T05:35:48" +ik[2437] = 16.871 +il[2437] = 53 +im[2437] = 0 +ij[2437] = 4 +id[2438] = "2894-01-01T22:37:29" +ik[2438] = 10.443 +il[2438] = 98 +im[2438] = 0.0222 +ij[2438] = 2 +id[2439] = "2894-06-24T02:16:56" +ik[2439] = 10.724 +il[2439] = 116 +im[2439] = 0.0254 +ij[2439] = 1 +id[2440] = "2894-11-11T08:12:20" +ik[2440] = 15.673 +il[2440] = 148 +im[2440] = 0 +ij[2440] = 3 +id[2441] = "2895-01-31T10:35:45" +ik[2441] = 10.379 +il[2441] = -18 +im[2441] = 0.0251 +ij[2441] = 2 +id[2442] = "2895-07-25T15:40:01" +ik[2442] = 10.742 +il[2442] = 12 +im[2442] = 0.0254 +ij[2442] = 1 +id[2443] = "2896-02-20T23:27:53" +ik[2443] = 17.908 +il[2443] = 109 +im[2443] = 0 +ij[2443] = 4 +id[2444] = "2896-03-01T07:13:17" +ik[2444] = 10.505 +il[2444] = -81 +im[2444] = 0.0187 +ij[2444] = 2 +id[2445] = "2896-08-25T11:56:15" +ik[2445] = 10.861 +il[2445] = 19 +im[2445] = 0.0147 +ij[2445] = 1 +id[2446] = "2897-01-18T02:13:12" +ik[2446] = 15.024 +il[2446] = 79 +im[2446] = 0 +ij[2446] = 3 +id[2447] = "2897-04-01T15:08:12" +ik[2447] = 10.804 +il[2447] = 12 +im[2447] = 0.0023 +ij[2447] = 2 +id[2448] = "2897-09-27T05:41:16" +ik[2448] = 11.056 +il[2448] = -32 +im[2448] = 0.015 +ij[2448] = 1 +id[2449] = "2898-05-05T08:49:37" +ik[2449] = 11.218 +il[2449] = 177 +im[2449] = 0.0065 +ij[2449] = 2 +id[2450] = "2898-05-20T19:21:56" +ik[2450] = 17.924 +il[2450] = 66 +im[2450] = 0 +ij[2450] = 4 +id[2451] = "2898-10-31T07:33:36" +ik[2451] = 11.275 +il[2451] = -165 +im[2451] = 0.0144 +ij[2451] = 1 +id[2452] = "2899-03-31T23:58:50" +ik[2452] = 16.509 +il[2452] = 0 +im[2452] = 0 +ij[2452] = 3 +id[2453] = "2899-06-10T21:59:28" +ik[2453] = 11.625 +il[2453] = 56 +im[2453] = 0.018 +ij[2453] = 2 +id[2454] = "2899-12-05T19:04:22" +ik[2454] = 11.44 +il[2454] = -76 +im[2454] = 0.0249 +ij[2454] = 1 +id[2455] = "2900-07-19T14:01:49" +ik[2455] = 11.851 +il[2455] = -110 +im[2455] = 0.0295 +ij[2455] = 2 +id[2456] = "2900-08-21T05:03:07" +ik[2456] = 16.71 +il[2456] = -50 +im[2456] = 0 +ij[2456] = 4 +id[2457] = "2901-01-11T04:17:11" +ik[2457] = 11.48 +il[2457] = -52 +im[2457] = 0.0301 +ij[2457] = 1 +id[2458] = "2901-07-05T11:48:11" +ik[2458] = 18.891 +il[2458] = 78 +im[2458] = 0 +ij[2458] = 3 +id[2459] = "2901-08-27T12:28:56" +ik[2459] = 11.777 +il[2459] = -144 +im[2459] = 0.0051 +ij[2459] = 2 +id[2460] = "2902-02-16T12:37:00" +ik[2460] = 11.374 +il[2460] = 4 +im[2460] = 0.0254 +ij[2460] = 1 +id[2461] = "2902-10-03T16:44:41" +ik[2461] = 11.445 +il[2461] = -91 +im[2461] = 0.0156 +ij[2461] = 2 +id[2462] = "2902-11-14T01:28:16" +ik[2462] = 15.926 +il[2462] = -75 +im[2462] = 0 +ij[2462] = 4 +id[2463] = "2903-03-23T22:17:11" +ik[2463] = 11.172 +il[2463] = 160 +im[2463] = 0.0212 +ij[2463] = 1 +id[2464] = "2903-10-18T15:12:31" +ik[2464] = 18.581 +il[2464] = 40 +im[2464] = 0 +ij[2464] = 3 +id[2465] = "2903-11-07T02:49:37" +ik[2465] = 11.017 +il[2465] = -161 +im[2465] = 0.0201 +ij[2465] = 2 +id[2466] = "2904-04-25T22:50:52" +ik[2466] = 10.956 +il[2466] = 75 +im[2466] = 0.0151 +ij[2466] = 1 +id[2467] = "2904-12-07T23:09:27" +ik[2467] = 10.646 +il[2467] = -155 +im[2467] = 0.0109 +ij[2467] = 2 +id[2468] = "2905-02-02T12:39:36" +ik[2468] = 16.522 +il[2468] = -41 +im[2468] = 0 +ij[2468] = 4 +id[2469] = "2905-05-28T16:06:40" +ik[2469] = 10.792 +il[2469] = 41 +im[2469] = 0.0231 +ij[2469] = 1 +id[2470] = "2906-01-07T02:00:05" +ik[2470] = 10.423 +il[2470] = -86 +im[2470] = 0.0131 +ij[2470] = 2 +id[2471] = "2906-01-18T02:10:45" +ik[2471] = 16.253 +il[2471] = -131 +im[2471] = 0 +ij[2471] = 3 +id[2472] = "2906-06-29T12:11:22" +ik[2472] = 10.72 +il[2472] = 55 +im[2472] = 0.0238 +ij[2472] = 1 +id[2473] = "2907-02-05T13:30:00" +ik[2473] = 10.385 +il[2473] = 179 +im[2473] = 0.0247 +ij[2473] = 2 +id[2474] = "2907-04-27T05:43:52" +ik[2474] = 17.649 +il[2474] = -165 +im[2474] = 0 +ij[2474] = 4 +id[2475] = "2907-07-31T01:20:21" +ik[2475] = 10.753 +il[2475] = -40 +im[2475] = 0.0289 +ij[2475] = 1 +id[2476] = "2908-03-06T13:03:30" +ik[2476] = 10.536 +il[2476] = 6 +im[2476] = 0.0252 +ij[2476] = 2 +id[2477] = "2908-03-30T10:00:28" +ik[2477] = 15.001 +il[2477] = -71 +im[2477] = 0 +ij[2477] = 3 +id[2478] = "2908-08-30T23:11:11" +ik[2478] = 10.884 +il[2478] = -90 +im[2478] = 0.0229 +ij[2478] = 1 +id[2479] = "2909-04-07T03:12:40" +ik[2479] = 10.856 +il[2479] = -125 +im[2479] = 0.0125 +ij[2479] = 2 +id[2480] = "2909-07-23T04:34:01" +ik[2480] = 18.079 +il[2480] = -17 +im[2480] = 0 +ij[2480] = 4 +id[2481] = "2909-10-02T20:31:03" +ik[2481] = 11.086 +il[2481] = 90 +im[2481] = 0.026 +ij[2481] = 1 +id[2482] = "2910-05-11T05:57:07" +ik[2482] = 11.278 +il[2482] = 67 +im[2482] = 0.0209 +ij[2482] = 2 +id[2483] = "2910-06-07T06:10:30" +ik[2483] = 15.839 +il[2483] = 145 +im[2483] = 0 +ij[2483] = 3 +id[2484] = "2910-11-06T03:19:43" +ik[2484] = 11.303 +il[2484] = 138 +im[2484] = 0.0237 +ij[2484] = 1 +id[2485] = "2911-06-17T04:10:07" +ik[2485] = 11.67 +il[2485] = -19 +im[2485] = 0.0272 +ij[2485] = 2 +id[2486] = "2911-10-23T23:09:27" +ik[2486] = 17.138 +il[2486] = -99 +im[2486] = 0 +ij[2486] = 4 +id[2487] = "2911-12-11T19:25:40" +ik[2487] = 11.455 +il[2487] = 61 +im[2487] = 0.0317 +ij[2487] = 1 +id[2488] = "2912-07-25T00:55:35" +ik[2488] = 11.86 +il[2488] = 5 +im[2488] = 0.0208 +ij[2488] = 2 +id[2489] = "2912-09-02T16:12:51" +ik[2489] = 18.284 +il[2489] = -104 +im[2489] = 0 +ij[2489] = 3 +id[2490] = "2913-01-16T06:42:20" +ik[2490] = 11.474 +il[2490] = 10 +im[2490] = 0.0244 +ij[2490] = 1 +id[2491] = "2913-09-01T20:43:26" +ik[2491] = 11.744 +il[2491] = 67 +im[2491] = 0.0175 +ij[2491] = 2 +id[2492] = "2914-01-18T14:47:54" +ik[2492] = 16.016 +il[2492] = -39 +im[2492] = 0 +ij[2492] = 4 +id[2493] = "2914-02-21T13:33:36" +ik[2493] = 11.35 +il[2493] = 120 +im[2493] = 0.0164 +ij[2493] = 1 +id[2494] = "2914-10-08T16:45:33" +ik[2494] = 11.388 +il[2494] = 58 +im[2494] = 0.0249 +ij[2494] = 2 +id[2495] = "2914-12-16T13:47:51" +ik[2495] = 19.056 +il[2495] = 71 +im[2495] = 0 +ij[2495] = 3 +id[2496] = "2915-03-28T18:50:15" +ik[2496] = 11.142 +il[2496] = 75 +im[2496] = 0.0037 +ij[2496] = 1 +id[2497] = "2915-11-11T17:04:59" +ik[2497] = 10.959 +il[2497] = -19 +im[2497] = 0.0288 +ij[2497] = 2 +id[2498] = "2916-04-09T01:32:52" +ik[2498] = 16.224 +il[2498] = 13 +im[2498] = 0 +ij[2498] = 4 +id[2499] = "2916-04-30T13:52:10" +ik[2499] = 10.929 +il[2499] = -171 +im[2499] = 0.0063 +ij[2499] = 1 +id[2500] = "2916-12-12T05:10:19" +ik[2500] = 10.605 +il[2500] = -74 +im[2500] = 0.0172 +ij[2500] = 2 +id[2501] = "2917-03-23T14:47:11" +ik[2501] = 16.957 +il[2501] = 84 +im[2501] = 0 +ij[2501] = 3 +id[2502] = "2917-06-02T02:10:45" +ik[2502] = 10.776 +il[2502] = -25 +im[2502] = 0.0105 +ij[2502] = 1 +id[2503] = "2918-01-11T03:04:45" +ik[2503] = 10.406 +il[2503] = 174 +im[2503] = 0.0012 +ij[2503] = 2 +id[2504] = "2918-06-30T16:11:08" +ik[2504] = 17.319 +il[2504] = 128 +im[2504] = 0 +ij[2504] = 4 +id[2505] = "2918-07-03T19:12:25" +ik[2505] = 10.718 +il[2505] = 99 +im[2505] = 0.0187 +ij[2505] = 1 +id[2506] = "2919-02-09T13:41:31" +ik[2506] = 10.394 +il[2506] = 110 +im[2506] = 0.022 +ij[2506] = 2 +id[2507] = "2919-06-09T03:47:13" +ik[2507] = 15.183 +il[2507] = -73 +im[2507] = 0 +ij[2507] = 3 +id[2508] = "2919-08-04T07:56:38" +ik[2508] = 10.765 +il[2508] = 19 +im[2508] = 0.0267 +ij[2508] = 1 +id[2509] = "2920-03-10T16:50:52" +ik[2509] = 10.571 +il[2509] = 167 +im[2509] = 0.0272 +ij[2509] = 2 +id[2510] = "2920-09-04T08:31:03" +ik[2510] = 10.909 +il[2510] = -130 +im[2510] = 0.0269 +ij[2510] = 1 +id[2511] = "2920-09-23T23:40:33" +ik[2511] = 18.087 +il[2511] = -99 +im[2511] = 0 +ij[2511] = 4 +id[2512] = "2921-04-11T14:56:41" +ik[2512] = 10.91 +il[2512] = 109 +im[2512] = 0.0241 +ij[2512] = 2 +id[2513] = "2921-08-14T12:00:00" +ik[2513] = 15.348 +il[2513] = 4 +im[2513] = 0 +ij[2513] = 3 +id[2514] = "2921-10-07T11:15:38" +ik[2514] = 11.117 +il[2514] = -146 +im[2514] = 0.0296 +ij[2514] = 1 +id[2515] = "2922-05-16T04:31:26" +ik[2515] = 11.337 +il[2515] = -89 +im[2515] = 0.0282 +ij[2515] = 2 +id[2516] = "2922-11-11T00:36:08" +ik[2516] = 11.33 +il[2516] = 26 +im[2516] = 0.0277 +ij[2516] = 1 +id[2517] = "2922-12-25T02:56:58" +ik[2517] = 17.545 +il[2517] = 13 +im[2517] = 0 +ij[2517] = 4 +id[2518] = "2923-06-22T12:51:59" +ik[2518] = 11.712 +il[2518] = 175 +im[2518] = 0.0248 +ij[2518] = 2 +id[2519] = "2923-11-03T15:17:16" +ik[2519] = 17.505 +il[2519] = -32 +im[2519] = 0 +ij[2519] = 3 +id[2520] = "2923-12-16T22:03:56" +ik[2520] = 11.467 +il[2520] = 115 +im[2520] = 0.0281 +ij[2520] = 1 +id[2521] = "2924-07-30T14:01:58" +ik[2521] = 11.863 +il[2521] = 41 +im[2521] = 0.002 +ij[2521] = 2 +id[2522] = "2925-01-21T11:10:19" +ik[2522] = 11.465 +il[2522] = -2 +im[2522] = 0.0091 +ij[2522] = 1 +id[2523] = "2925-03-24T15:40:19" +ik[2523] = 16.251 +il[2523] = 88 +im[2523] = 0 +ij[2523] = 4 +id[2524] = "2925-09-07T06:04:19" +ik[2524] = 11.706 +il[2524] = -122 +im[2524] = 0.0289 +ij[2524] = 2 +id[2525] = "2926-02-13T00:04:27" +ik[2525] = 19.215 +il[2525] = -173 +im[2525] = 0 +ij[2525] = 3 +id[2526] = "2926-02-26T15:33:50" +ik[2526] = 11.325 +il[2526] = -161 +im[2526] = 0.0019 +ij[2526] = 1 +id[2527] = "2926-10-13T16:41:57" +ik[2527] = 11.329 +il[2527] = -150 +im[2527] = 0.0269 +ij[2527] = 2 +id[2528] = "2927-04-02T15:39:10" +ik[2528] = 11.111 +il[2528] = -17 +im[2528] = 0.0138 +ij[2528] = 1 +id[2529] = "2927-06-14T23:23:51" +ik[2529] = 16.016 +il[2529] = 102 +im[2529] = 0 +ij[2529] = 4 +id[2530] = "2927-11-16T06:43:12" +ik[2530] = 10.904 +il[2530] = 146 +im[2530] = 0.0299 +ij[2530] = 2 +id[2531] = "2928-05-05T04:57:56" +ik[2531] = 10.903 +il[2531] = -58 +im[2531] = 0.0058 +ij[2531] = 1 +id[2532] = "2928-05-25T04:51:10" +ik[2532] = 17.712 +il[2532] = -174 +im[2532] = 0 +ij[2532] = 3 +id[2533] = "2928-12-16T11:05:51" +ik[2533] = 10.568 +il[2533] = 10 +im[2533] = 0.0236 +ij[2533] = 2 +id[2534] = "2929-06-06T12:52:50" +ik[2534] = 10.762 +il[2534] = -114 +im[2534] = 0.005 +ij[2534] = 1 +id[2535] = "2929-09-03T16:19:20" +ik[2535] = 16.959 +il[2535] = -75 +im[2535] = 0 +ij[2535] = 4 +id[2536] = "2930-01-15T05:18:14" +ik[2536] = 10.393 +il[2536] = 32 +im[2536] = 0.0126 +ij[2536] = 2 +id[2537] = "2930-07-08T04:04:48" +ik[2537] = 10.718 +il[2537] = 77 +im[2537] = 0.0119 +ij[2537] = 1 +id[2538] = "2930-08-17T01:06:31" +ik[2538] = 15.555 +il[2538] = -54 +im[2538] = 0 +ij[2538] = 3 +id[2539] = "2931-02-13T16:44:41" +ik[2539] = 10.407 +il[2539] = -66 +im[2539] = 0.0172 +ij[2539] = 2 +id[2540] = "2931-08-08T17:56:15" +ik[2540] = 10.779 +il[2540] = -43 +im[2540] = 0.0181 +ij[2540] = 1 +id[2541] = "2931-11-27T14:58:50" +ik[2541] = 17.958 +il[2541] = 168 +im[2541] = 0 +ij[2541] = 4 +id[2542] = "2932-03-15T00:57:18" +ik[2542] = 10.609 +il[2542] = 172 +im[2542] = 0.0252 +ij[2542] = 2 +id[2543] = "2932-09-08T22:16:19" +ik[2543] = 10.935 +il[2543] = 31 +im[2543] = 0.0251 +ij[2543] = 1 +id[2544] = "2932-10-23T06:45:12" +ik[2544] = 15.063 +il[2544] = -34 +im[2544] = 0 +ij[2544] = 3 +id[2545] = "2933-04-16T07:45:59" +ik[2545] = 10.966 +il[2545] = 157 +im[2545] = 0.0295 +ij[2545] = 2 +id[2546] = "2933-10-12T06:15:50" +ik[2546] = 11.148 +il[2546] = -175 +im[2546] = 0.0261 +ij[2546] = 1 +id[2547] = "2934-02-25T05:21:15" +ik[2547] = 17.865 +il[2547] = 175 +im[2547] = 0 +ij[2547] = 4 +id[2548] = "2934-05-21T07:31:00" +ik[2548] = 11.396 +il[2548] = -48 +im[2548] = 0.0274 +ij[2548] = 2 +id[2549] = "2934-11-16T00:49:23" +ik[2549] = 11.355 +il[2549] = 167 +im[2549] = 0.0228 +ij[2549] = 1 +id[2550] = "2935-01-05T21:45:47" +ik[2550] = 16.703 +il[2550] = -168 +im[2550] = 0 +ij[2550] = 3 +id[2551] = "2935-06-27T23:43:52" +ik[2551] = 11.75 +il[2551] = -69 +im[2551] = 0.0131 +ij[2551] = 2 +id[2552] = "2935-12-22T01:20:21" +ik[2552] = 11.476 +il[2552] = 146 +im[2552] = 0.0132 +ij[2552] = 1 +id[2553] = "2936-05-27T15:35:08" +ik[2553] = 16.605 +il[2553] = 40 +im[2553] = 0 +ij[2553] = 4 +id[2554] = "2936-08-05T02:00:05" +ik[2554] = 11.859 +il[2554] = 117 +im[2554] = 0.022 +ij[2554] = 2 +id[2555] = "2937-01-26T13:39:47" +ik[2555] = 11.453 +il[2555] = 57 +im[2555] = 0.0062 +ij[2555] = 1 +id[2556] = "2937-04-12T04:23:48" +ik[2556] = 19.005 +il[2556] = 159 +im[2556] = 0 +ij[2556] = 3 +id[2557] = "2937-09-12T11:27:10" +ik[2557] = 11.664 +il[2557] = -168 +im[2557] = 0.0293 +ij[2557] = 2 +id[2558] = "2938-03-03T13:49:35" +ik[2558] = 11.298 +il[2558] = 49 +im[2558] = 0.017 +ij[2558] = 1 +id[2559] = "2938-08-19T17:53:13" +ik[2559] = 15.926 +il[2559] = -48 +im[2559] = 0 +ij[2559] = 4 +id[2560] = "2938-10-18T11:39:33" +ik[2560] = 11.27 +il[2560] = 179 +im[2560] = 0.0211 +ij[2560] = 2 +id[2561] = "2939-04-07T08:12:28" +ik[2561] = 11.08 +il[2561] = 38 +im[2561] = 0.0228 +ij[2561] = 1 +id[2562] = "2939-07-25T16:53:54" +ik[2562] = 18.423 +il[2562] = -60 +im[2562] = 0 +ij[2562] = 3 +id[2563] = "2939-11-20T16:10:07" +ik[2563] = 10.85 +il[2563] = 102 +im[2563] = 0.0244 +ij[2563] = 2 +id[2564] = "2940-05-09T16:35:45" +ik[2564] = 10.878 +il[2564] = 180 +im[2564] = 0.0185 +ij[2564] = 1 +id[2565] = "2940-11-07T20:42:08" +ik[2565] = 16.601 +il[2565] = -72 +im[2565] = 0 +ij[2565] = 4 +id[2566] = "2940-12-20T14:25:52" +ik[2566] = 10.533 +il[2566] = -172 +im[2566] = 0.0266 +ij[2566] = 2 +id[2567] = "2941-06-10T21:48:05" +ik[2567] = 10.749 +il[2567] = -138 +im[2567] = 0.0158 +ij[2567] = 1 +id[2568] = "2941-10-23T04:54:46" +ik[2568] = 16.098 +il[2568] = 31 +im[2568] = 0 +ij[2568] = 3 +id[2569] = "2942-01-19T06:45:47" +ik[2569] = 10.384 +il[2569] = -83 +im[2569] = 0.0194 +ij[2569] = 2 +id[2570] = "2942-07-12T12:46:48" +ik[2570] = 10.72 +il[2570] = 61 +im[2570] = 0.0029 +ij[2570] = 1 +id[2571] = "2943-01-30T17:47:02" +ik[2571] = 17.72 +il[2571] = 18 +im[2571] = 0 +ij[2571] = 4 +id[2572] = "2943-02-17T20:19:40" +ik[2572] = 10.424 +il[2572] = 107 +im[2572] = 0.008 +ij[2572] = 2 +id[2573] = "2943-08-13T04:38:29" +ik[2573] = 10.795 +il[2573] = -134 +im[2573] = 0.0052 +ij[2573] = 1 +id[2574] = "2944-01-02T14:15:38" +ik[2574] = 14.988 +il[2574] = -175 +im[2574] = 0 +ij[2574] = 3 +id[2575] = "2944-03-19T10:14:35" +ik[2575] = 10.65 +il[2575] = 134 +im[2575] = 0.0178 +ij[2575] = 2 +id[2576] = "2944-09-13T12:33:24" +ik[2576] = 10.961 +il[2576] = 172 +im[2576] = 0.0185 +ij[2576] = 1 +id[2577] = "2945-04-21T01:16:45" +ik[2577] = 11.023 +il[2577] = -178 +im[2577] = 0.0272 +ij[2577] = 2 +id[2578] = "2945-04-28T12:03:53" +ik[2578] = 18.056 +il[2578] = -178 +im[2578] = 0 +ij[2578] = 4 +id[2579] = "2945-10-17T00:52:59" +ik[2579] = 11.178 +il[2579] = 169 +im[2579] = 0.0139 +ij[2579] = 1 +id[2580] = "2946-03-12T13:04:04" +ik[2580] = 15.994 +il[2580] = 156 +im[2580] = 0 +ij[2580] = 3 +id[2581] = "2946-05-26T09:57:44" +ik[2581] = 11.453 +il[2581] = 12 +im[2581] = 0.0159 +ij[2581] = 2 +id[2582] = "2946-11-20T23:23:34" +ik[2582] = 11.379 +il[2582] = 9 +im[2582] = 0.0131 +ij[2582] = 1 +id[2583] = "2947-07-03T08:17:48" +ik[2583] = 11.783 +il[2583] = 130 +im[2583] = 0.0031 +ij[2583] = 2 +id[2584] = "2947-07-30T12:38:26" +ik[2584] = 17.028 +il[2584] = -115 +im[2584] = 0 +ij[2584] = 4 +id[2585] = "2947-12-27T01:50:26" +ik[2585] = 11.482 +il[2585] = -81 +im[2585] = 0.0079 +ij[2585] = 1 +id[2586] = "2948-06-09T21:37:00" +ik[2586] = 18.463 +il[2586] = 22 +im[2586] = 0 +ij[2586] = 3 +id[2587] = "2948-08-10T10:30:34" +ik[2587] = 11.85 +il[2587] = -42 +im[2587] = 0.0317 +ij[2587] = 2 +id[2588] = "2949-01-31T13:21:12" +ik[2588] = 11.439 +il[2588] = -142 +im[2588] = 0.0175 +ij[2588] = 1 +id[2589] = "2949-09-17T13:36:20" +ik[2589] = 11.618 +il[2589] = -96 +im[2589] = 0.0184 +ij[2589] = 2 +id[2590] = "2949-10-24T06:32:15" +ik[2590] = 15.979 +il[2590] = 13 +im[2590] = 0 +ij[2590] = 4 +id[2591] = "2950-03-08T10:09:15" +ik[2591] = 11.27 +il[2591] = -29 +im[2591] = 0.0287 +ij[2591] = 1 +id[2592] = "2950-09-22T19:42:05" +ik[2592] = 18.962 +il[2592] = 178 +im[2592] = 0 +ij[2592] = 3 +id[2593] = "2950-10-23T04:59:39" +ik[2593] = 11.211 +il[2593] = -148 +im[2593] = 0.0121 +ij[2593] = 2 +id[2594] = "2951-04-12T00:32:32" +ik[2594] = 11.05 +il[2594] = 105 +im[2594] = 0.027 +ij[2594] = 1 +id[2595] = "2951-11-25T01:54:54" +ik[2595] = 10.799 +il[2595] = 48 +im[2595] = 0.0123 +ij[2595] = 2 +id[2596] = "2952-01-13T10:29:16" +ik[2596] = 16.287 +il[2596] = -50 +im[2596] = 0 +ij[2596] = 4 +id[2597] = "2952-05-14T05:44:52" +ik[2597] = 10.855 +il[2597] = 0 +im[2597] = 0.0273 +ij[2597] = 1 +id[2598] = "2952-12-24T19:35:19" +ik[2598] = 10.502 +il[2598] = -60 +im[2598] = 0.0256 +ij[2598] = 2 +id[2599] = "2952-12-27T11:32:03" +ik[2599] = 16.773 +il[2599] = -47 +im[2599] = 0 +ij[2599] = 3 +id[2600] = "2953-06-15T09:11:48" +ik[2600] = 10.739 +il[2600] = 108 +im[2600] = 0.0221 +ij[2600] = 1 +id[2601] = "2954-01-23T10:37:37" +ik[2601] = 10.378 +il[2601] = 74 +im[2601] = 0.0235 +ij[2601] = 2 +id[2602] = "2954-04-05T09:47:48" +ik[2602] = 17.405 +il[2602] = 110 +im[2602] = 0 +ij[2602] = 4 +id[2603] = "2954-07-16T23:42:08" +ik[2603] = 10.724 +il[2603] = -37 +im[2603] = 0.0138 +ij[2603] = 1 +id[2604] = "2955-02-22T01:50:26" +ik[2604] = 10.444 +il[2604] = -154 +im[2604] = 0.0069 +ij[2604] = 2 +id[2605] = "2955-03-13T18:11:57" +ik[2605] = 15.118 +il[2605] = 175 +im[2605] = 0 +ij[2605] = 3 +id[2606] = "2955-08-17T16:19:55" +ik[2606] = 10.813 +il[2606] = 101 +im[2606] = 0.0063 +ij[2606] = 1 +id[2607] = "2956-03-23T20:03:41" +ik[2607] = 10.693 +il[2607] = 77 +im[2607] = 0.0096 +ij[2607] = 2 +id[2608] = "2956-06-30T06:06:37" +ik[2608] = 18.1 +il[2608] = 139 +im[2608] = 0 +ij[2608] = 4 +id[2609] = "2956-09-18T02:01:06" +ik[2609] = 10.989 +il[2609] = -17 +im[2609] = 0.0062 +ij[2609] = 1 +id[2610] = "2957-04-25T17:41:16" +ik[2610] = 11.081 +il[2610] = -117 +im[2610] = 0.0172 +ij[2610] = 2 +id[2611] = "2957-05-19T06:00:25" +ik[2611] = 15.453 +il[2611] = 123 +im[2611] = 0 +ij[2611] = 3 +id[2612] = "2957-10-21T17:06:51" +ik[2612] = 11.209 +il[2612] = -120 +im[2612] = 0.0008 +ij[2612] = 1 +id[2613] = "2958-05-31T09:50:41" +ik[2613] = 11.508 +il[2613] = 166 +im[2613] = 0.0021 +ij[2613] = 2 +id[2614] = "2958-09-30T10:51:27" +ik[2614] = 17.453 +il[2614] = -162 +im[2614] = 0 +ij[2614] = 4 +id[2615] = "2958-11-25T18:34:24" +ik[2615] = 11.401 +il[2615] = -27 +im[2615] = 0.0029 +ij[2615] = 1 +id[2616] = "2959-07-08T13:17:45" +ik[2616] = 11.81 +il[2616] = 98 +im[2616] = 0.021 +ij[2616] = 2 +id[2617] = "2959-08-09T20:50:21" +ik[2617] = 17.706 +il[2617] = -122 +im[2617] = 0 +ij[2617] = 3 +id[2618] = "2959-12-31T22:54:28" +ik[2618] = 11.486 +il[2618] = 173 +im[2618] = 0.0224 +ij[2618] = 1 +id[2619] = "2960-08-15T15:06:28" +ik[2619] = 11.835 +il[2619] = -59 +im[2619] = 0.0293 +ij[2619] = 2 +id[2620] = "2960-12-28T00:15:33" +ik[2620] = 16.181 +il[2620] = 39 +im[2620] = 0 +ij[2620] = 4 +id[2621] = "2961-02-05T09:56:52" +ik[2621] = 11.422 +il[2621] = 131 +im[2621] = 0.0266 +ij[2621] = 1 +id[2622] = "2961-09-22T12:26:21" +ik[2622] = 11.569 +il[2622] = 95 +im[2622] = 0.0024 +ij[2622] = 2 +id[2623] = "2961-11-19T20:27:18" +ik[2623] = 19.207 +il[2623] = -80 +im[2623] = 0 +ij[2623] = 3 +id[2624] = "2962-03-13T04:17:19" +ik[2624] = 11.241 +il[2624] = -24 +im[2624] = 0.031 +ij[2624] = 1 +id[2625] = "2962-10-27T19:53:02" +ik[2625] = 11.152 +il[2625] = -28 +im[2625] = 0.0028 +ij[2625] = 2 +id[2626] = "2963-03-20T00:37:43" +ik[2626] = 16.051 +il[2626] = -42 +im[2626] = 0 +ij[2626] = 4 +id[2627] = "2963-04-16T15:22:27" +ik[2627] = 11.02 +il[2627] = -133 +im[2627] = 0.0254 +ij[2627] = 1 +id[2628] = "2963-11-29T09:58:45" +ik[2628] = 10.749 +il[2628] = 55 +im[2628] = 0.0026 +ij[2628] = 2 +id[2629] = "2964-02-29T09:41:45" +ik[2629] = 17.524 +il[2629] = 121 +im[2629] = 0 +ij[2629] = 3 +id[2630] = "2964-05-18T17:38:41" +ik[2630] = 10.834 +il[2630] = -132 +im[2630] = 0.029 +ij[2630] = 1 +id[2631] = "2964-12-28T23:25:26" +ik[2631] = 10.474 +il[2631] = 100 +im[2631] = 0.0215 +ij[2631] = 2 +id[2632] = "2965-06-09T06:43:55" +ik[2632] = 17.048 +il[2632] = 23 +im[2632] = 0 +ij[2632] = 4 +id[2633] = "2965-06-19T19:12:25" +ik[2633] = 10.73 +il[2633] = 46 +im[2633] = 0.0255 +ij[2633] = 1 +id[2634] = "2966-01-27T13:09:41" +ik[2634] = 10.375 +il[2634] = -77 +im[2634] = 0.0254 +ij[2634] = 2 +id[2635] = "2966-05-21T22:41:57" +ik[2635] = 15.443 +il[2635] = -66 +im[2635] = 0 +ij[2635] = 3 +id[2636] = "2966-07-21T09:07:20" +ik[2636] = 10.73 +il[2636] = -80 +im[2636] = 0.0247 +ij[2636] = 1 +id[2637] = "2967-02-26T06:15:50" +ik[2637] = 10.468 +il[2637] = -16 +im[2637] = 0.0189 +ij[2637] = 2 +id[2638] = "2967-08-22T02:45:18" +ik[2638] = 10.833 +il[2638] = 22 +im[2638] = 0.014 +ij[2638] = 1 +id[2639] = "2967-09-02T15:55:52" +ik[2639] = 18.003 +il[2639] = -116 +im[2639] = 0 +ij[2639] = 4 +id[2640] = "2968-03-28T05:43:00" +ik[2640] = 10.74 +il[2640] = 26 +im[2640] = 0.0011 +ij[2640] = 2 +id[2641] = "2968-07-27T15:43:29" +ik[2641] = 15.115 +il[2641] = 51 +im[2641] = 0 +ij[2641] = 3 +id[2642] = "2968-09-22T15:23:19" +ik[2642] = 11.018 +il[2642] = 157 +im[2642] = 0.0115 +ij[2642] = 1 +id[2643] = "2969-04-30T11:35:05" +ik[2643] = 11.141 +il[2643] = -103 +im[2643] = 0.0015 +ij[2643] = 2 +id[2644] = "2969-10-26T11:00:40" +ik[2644] = 11.239 +il[2644] = -110 +im[2644] = 0.0113 +ij[2644] = 1 +id[2645] = "2969-12-01T09:23:11" +ik[2645] = 17.802 +il[2645] = 140 +im[2645] = 0 +ij[2645] = 4 +id[2646] = "2970-06-05T13:05:22" +ik[2646] = 11.561 +il[2646] = -162 +im[2646] = 0.0124 +ij[2646] = 2 +id[2647] = "2970-10-11T10:03:04" +ik[2647] = 16.895 +il[2647] = 8 +im[2647] = 0 +ij[2647] = 3 +id[2648] = "2970-11-30T17:20:58" +ik[2648] = 11.421 +il[2648] = 166 +im[2648] = 0.0204 +ij[2648] = 1 +id[2649] = "2971-07-13T23:04:59" +ik[2649] = 11.832 +il[2649] = -107 +im[2649] = 0.0304 +ij[2649] = 2 +id[2650] = "2972-01-06T00:48:31" +ik[2650] = 11.486 +il[2650] = -106 +im[2650] = 0.0293 +ij[2650] = 1 +id[2651] = "2972-03-02T05:34:04" +ik[2651] = 16.512 +il[2651] = 154 +im[2651] = 0 +ij[2651] = 4 +id[2652] = "2972-08-21T00:45:56" +ik[2652] = 11.814 +il[2652] = 98 +im[2652] = 0.0135 +ij[2652] = 2 +id[2653] = "2973-01-17T01:01:46" +ik[2653] = 19.087 +il[2653] = -118 +im[2653] = 0 +ij[2653] = 3 +id[2654] = "2973-02-10T11:32:29" +ik[2654] = 11.403 +il[2654] = -137 +im[2654] = 0.0273 +ij[2654] = 1 +id[2655] = "2973-09-27T15:19:43" +ik[2655] = 11.517 +il[2655] = 140 +im[2655] = 0.0119 +ij[2655] = 2 +id[2656] = "2974-03-18T02:20:32" +ik[2656] = 11.211 +il[2656] = -167 +im[2656] = 0.0246 +ij[2656] = 1 +id[2657] = "2974-05-24T21:54:17" +ik[2657] = 15.931 +il[2657] = 67 +im[2657] = 0 +ij[2657] = 4 +id[2658] = "2974-11-01T13:10:42" +ik[2658] = 11.092 +il[2658] = 0 +im[2658] = 0.0174 +ij[2658] = 2 +id[2659] = "2975-04-21T08:15:12" +ik[2659] = 10.991 +il[2659] = -86 +im[2659] = 0.0171 +ij[2659] = 1 +id[2660] = "2975-05-01T10:07:32" +ik[2660] = 18.257 +il[2660] = 147 +im[2660] = 0 +ij[2660] = 3 +id[2661] = "2975-12-03T18:26:21" +ik[2661] = 10.702 +il[2661] = 47 +im[2661] = 0.0111 +ij[2661] = 2 +id[2662] = "2976-05-23T05:23:34" +ik[2662] = 10.813 +il[2662] = 103 +im[2662] = 0.0244 +ij[2662] = 1 +id[2663] = "2976-08-13T08:13:29" +ik[2663] = 16.685 +il[2663] = 131 +im[2663] = 0 +ij[2663] = 4 +id[2664] = "2977-01-02T01:49:35" +ik[2664] = 10.449 +il[2664] = -49 +im[2664] = 0.0128 +ij[2664] = 2 +id[2665] = "2977-06-24T03:01:09" +ik[2665] = 10.723 +il[2665] = 62 +im[2665] = 0.0242 +ij[2665] = 1 +id[2666] = "2977-07-28T10:07:32" +ik[2666] = 15.947 +il[2666] = 103 +im[2666] = 0 +ij[2666] = 3 +id[2667] = "2978-01-31T13:12:25" +ik[2667] = 10.376 +il[2667] = -140 +im[2667] = 0.0243 +ij[2667] = 2 +id[2668] = "2978-07-25T15:24:11" +ik[2668] = 10.738 +il[2668] = -7 +im[2668] = 0.0287 +ij[2668] = 1 +id[2669] = "2978-11-05T09:18:00" +ik[2669] = 17.788 +il[2669] = 76 +im[2669] = 0 +ij[2669] = 4 +id[2670] = "2979-03-02T08:10:45" +ik[2670] = 10.495 +il[2670] = -147 +im[2670] = 0.0252 +ij[2670] = 2 +id[2671] = "2979-08-26T10:33:10" +ik[2671] = 10.854 +il[2671] = 38 +im[2671] = 0.0214 +ij[2671] = 1 +id[2672] = "2979-10-06T16:03:12" +ik[2672] = 14.988 +il[2672] = 171 +im[2672] = 0 +ij[2672] = 3 +id[2673] = "2980-04-01T14:02:49" +ik[2673] = 10.788 +il[2673] = 23 +im[2673] = 0.0099 +ij[2673] = 2 +id[2674] = "2980-09-27T03:39:18" +ik[2674] = 11.048 +il[2674] = 11 +im[2674] = 0.024 +ij[2674] = 1 +id[2675] = "2981-02-01T09:56:09" +ik[2675] = 18.028 +il[2675] = 10 +im[2675] = 0 +ij[2675] = 4 +id[2676] = "2981-05-05T06:01:43" +ik[2676] = 11.2 +il[2676] = -113 +im[2676] = 0.017 +ij[2676] = 2 +id[2677] = "2981-10-31T05:37:49" +ik[2677] = 11.268 +il[2677] = -126 +im[2677] = 0.0211 +ij[2677] = 1 +id[2678] = "2981-12-15T10:47:25" +ik[2678] = 16.155 +il[2678] = 140 +im[2678] = 0 +ij[2678] = 3 +id[2679] = "2982-06-10T18:22:01" +ik[2679] = 11.611 +il[2679] = 156 +im[2679] = 0.0241 +ij[2679] = 2 +id[2680] = "2982-12-05T18:05:11" +ik[2680] = 11.438 +il[2680] = -69 +im[2680] = 0.0307 +ij[2680] = 1 +id[2681] = "2983-05-05T12:31:49" +ik[2681] = 16.925 +il[2681] = 0 +im[2681] = 0 +ij[2681] = 4 +id[2682] = "2983-07-19T11:13:55" +ik[2682] = 11.849 +il[2682] = -38 +im[2682] = 0.0264 +ij[2682] = 2 +id[2683] = "2984-01-11T04:46:24" +ik[2683] = 11.483 +il[2683] = -100 +im[2683] = 0.0274 +ij[2683] = 1 +id[2684] = "2984-03-16T20:01:06" +ik[2684] = 18.622 +il[2684] = 42 +im[2684] = 0 +ij[2684] = 3 +id[2685] = "2984-08-26T11:51:04" +ik[2685] = 11.787 +il[2685] = -152 +im[2685] = 0.0103 +ij[2685] = 2 +id[2686] = "2985-02-15T14:38:15" +ik[2686] = 11.382 +il[2686] = -100 +im[2686] = 0.0198 +ij[2686] = 1 +id[2687] = "2985-07-29T19:25:49" +ik[2687] = 15.95 +il[2687] = 167 +im[2687] = 0 +ij[2687] = 4 +id[2688] = "2985-10-02T18:36:08" +ik[2688] = 11.462 +il[2688] = 171 +im[2688] = 0.0226 +ij[2688] = 2 +id[2689] = "2986-03-23T01:08:49" +ik[2689] = 11.181 +il[2689] = 26 +im[2689] = 0.0081 +ij[2689] = 1 +id[2690] = "2986-06-30T02:03:50" +ik[2690] = 18.849 +il[2690] = -91 +im[2690] = 0 +ij[2690] = 3 +id[2691] = "2986-11-06T06:13:06" +ik[2691] = 11.033 +il[2691] = 45 +im[2691] = 0.0281 +ij[2691] = 2 +id[2692] = "2987-04-26T01:21:12" +ik[2692] = 10.962 +il[2692] = -47 +im[2692] = 0.0072 +ij[2692] = 1 +id[2693] = "2987-10-18T21:49:06" +ik[2693] = 16.357 +il[2693] = 160 +im[2693] = 0 +ij[2693] = 4 +id[2694] = "2987-12-08T02:43:35" +ik[2694] = 10.658 +il[2694] = 45 +im[2694] = 0.018 +ij[2694] = 2 +id[2695] = "2988-05-27T17:27:10" +ik[2695] = 10.795 +il[2695] = -38 +im[2695] = 0.0126 +ij[2695] = 1 +id[2696] = "2988-10-02T04:18:20" +ik[2696] = 16.594 +il[2696] = -34 +im[2696] = 0 +ij[2696] = 3 +id[2697] = "2989-01-06T04:56:12" +ik[2697] = 10.428 +il[2697] = 137 +im[2697] = 0.0019 +ij[2697] = 2 +id[2698] = "2989-06-28T12:14:58" +ik[2698] = 10.719 +il[2698] = 22 +im[2698] = 0.0189 +ij[2698] = 1 +id[2699] = "2990-01-08T20:24:17" +ik[2699] = 17.487 +il[2699] = -14 +im[2699] = 0 +ij[2699] = 4 +id[2700] = "2990-02-04T15:26:55" +ik[2700] = 10.381 +il[2700] = 77 +im[2700] = 0.0206 +ij[2700] = 2 +id[2701] = "2990-07-30T00:38:52" +ik[2701] = 10.748 +il[2701] = -46 +im[2701] = 0.0273 +ij[2701] = 1 +id[2702] = "2990-12-15T21:50:58" +ik[2702] = 15.069 +il[2702] = 93 +im[2702] = 0 +ij[2702] = 3 +id[2703] = "2991-03-06T14:04:33" +ik[2703] = 10.526 +il[2703] = -62 +im[2703] = 0.0276 +ij[2703] = 2 +id[2704] = "2991-08-30T22:37:37" +ik[2704] = 10.877 +il[2704] = -101 +im[2704] = 0.0265 +ij[2704] = 1 +id[2705] = "2992-04-05T03:34:07" +ik[2705] = 18.106 +il[2705] = -18 +im[2705] = 0 +ij[2705] = 4 +id[2706] = "2992-04-06T03:32:15" +ik[2706] = 10.84 +il[2706] = -167 +im[2706] = 0.0225 +ij[2706] = 2 +id[2707] = "2992-10-01T20:39:59" +ik[2707] = 11.078 +il[2707] = 53 +im[2707] = 0.0293 +ij[2707] = 1 +id[2708] = "2993-02-20T21:58:53" +ik[2708] = 15.57 +il[2708] = -46 +im[2708] = 0 +ij[2708] = 3 +id[2709] = "2993-05-10T05:37:49" +ik[2709] = 11.261 +il[2709] = 51 +im[2709] = 0.0264 +ij[2709] = 2 +id[2710] = "2993-11-05T04:14:35" +ik[2710] = 11.297 +il[2710] = 74 +im[2710] = 0.0275 +ij[2710] = 1 +id[2711] = "2994-06-16T03:16:16" +ik[2711] = 11.659 +il[2711] = -17 +im[2711] = 0.0274 +ij[2711] = 2 +id[2712] = "2994-07-07T00:08:55" +ik[2712] = 17.352 +il[2712] = -173 +im[2712] = 0 +ij[2712] = 4 +id[2713] = "2994-12-10T20:48:54" +ik[2713] = 11.453 +il[2713] = -18 +im[2713] = 0.0303 +ij[2713] = 1 +id[2714] = "2995-05-16T19:21:30" +ik[2714] = 17.911 +il[2714] = -106 +im[2714] = 0 +ij[2714] = 3 +id[2715] = "2995-07-24T23:53:39" +ik[2715] = 11.859 +il[2715] = 13 +im[2715] = 0.0112 +ij[2715] = 2 +id[2716] = "2996-01-16T08:16:04" +ik[2716] = 11.478 +il[2716] = -77 +im[2716] = 0.0147 +ij[2716] = 1 +id[2717] = "2996-08-31T20:20:32" +ik[2717] = 11.755 +il[2717] = 50 +im[2717] = 0.0253 +ij[2717] = 2 +id[2718] = "2996-10-03T01:45:24" +ik[2718] = 16.116 +il[2718] = 96 +im[2718] = 0 +ij[2718] = 4 +id[2719] = "2997-02-20T14:53:13" +ik[2719] = 11.358 +il[2719] = 41 +im[2719] = 0.0073 +ij[2719] = 1 +id[2720] = "2997-08-27T13:15:18" +ik[2720] = 19.178 +il[2720] = -7 +im[2720] = 0 +ij[2720] = 3 +id[2721] = "2997-10-07T17:19:14" +ik[2721] = 11.405 +il[2721] = 7 +im[2721] = 0.0275 +ij[2721] = 2 +id[2722] = "2998-03-27T19:48:43" +ik[2722] = 11.15 +il[2722] = 9 +im[2722] = 0.0099 +ij[2722] = 1 +id[2723] = "2998-11-10T18:35:16" +ik[2723] = 10.976 +il[2723] = -104 +im[2723] = 0.0303 +ij[2723] = 2 +id[2724] = "2998-12-23T13:05:39" +ik[2724] = 16.099 +il[2724] = 128 +im[2724] = 0 +ij[2724] = 4 +id[2725] = "2999-04-30T14:32:55" +ik[2725] = 10.935 +il[2725] = 134 +im[2725] = 0.0043 +ij[2725] = 1 +id[2726] = "2999-12-05T15:40:27" +ik[2726] = 17.334 +il[2726] = 15 +im[2726] = 0 +ij[2726] = 3 +id[2727] = "2999-12-12T07:37:12" +ik[2727] = 10.616 +il[2727] = 167 +im[2727] = 0.0236 +ij[2727] = 2 +id[2728] = "3000-06-02T02:59:25" +ik[2728] = 10.778 +il[2728] = -85 +im[2728] = 0.0038 +ij[2728] = 1 + + +ag = 0; +i = 1; + +l = 2728 + + + +LabelMgr.deleteAllLabels(); + +q = 0; + +while(q < 2) +{ + +au = -1; + +ww = 1; + +j = core.getJDay(); + +oatmo = LandscapeMgr.getFlagAtmosphere(); +oland = LandscapeMgr.getFlagLandscape(); + + + +LandscapeMgr.setFlagAtmosphere(false); +LandscapeMgr.setFlagLandscape(false); + + +core.setDate("1647-05-17T21:08:22", "utc"); + +StelMovementMgr.zoomTo(24.4*x, 1); + +core.selectObjectByName("Earth", pointer = false); +StelMovementMgr.setFlagTracking(true); + + +core.wait(0.3); + + + + +txt1 = LabelMgr.labelScreen("Earth and Mars Greatest Elongations from Jupiter", 280*x, 20*y, false, 25, "#FF3222"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(id[f].substring(5,7) + "/" + id[f].substring(0,4) + " to " + id[l].substring(5,7) + "/" + id + +[l].substring(0,4), 340*x, 80*y, false, 20, "#9AAAFF"); +LabelMgr.setLabelShow(txt1, true); + + +au = 1; + +txt1 = LabelMgr.labelScreen(lat, 20, 650, false, 10, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen(long, 20, 665, false, 10, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +sty = 100; + + +txt1 = LabelMgr.labelScreen("Everything", 680 * x, sty *y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Earth Only", 680 * x, (sty+50)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Mars Only", 680 * x, (sty+100)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Longest Earth (>11.8" + degstring +" Elongation)", 680 * x, (sty+150)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Longest Mars (>19.0" + degstring +" Elongation)", 680 * x, (sty+200)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Earth Evenings Only", 680 * x, (sty+250)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Earth Mornings Only", 680 * x, (sty+300)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Mars Evenings Only", 680 * x, (sty+350)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Mars Mornings Only", 680 * x, (sty+400)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("All Evenings", 680 * x, (sty+450)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("All Mornings", 680 * x, (sty+500)*y, false, 20, "#F9E397"); +LabelMgr.setLabelShow(txt1, true); + + + + + + +txt1 = LabelMgr.labelScreen("Press + / - to toggle", 680 * x, 650*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press [ for Keypress mode", 680 * x, 670*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press ] for Screen Saver Mode", 680 * x, 690*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + + + +txt1 = LabelMgr.labelScreen("By Qam1 ", 900*x, 10, false, 25, "#A0801D"); +LabelMgr.setLabelShow(txt1, true); + + + + +// Label + + +// Get au + +q = 0; + + +while (q ==0) +{ + + +txt1 = LabelMgr.labelScreen("-->", 630*x, ((au-1)*50+sty)*y, false, 25, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +core.wait(0.1); + + +d = Math.floor(core.getJDay()*10); +r = d; + +while (d==r) +{ +r = Math.floor(core.getJDay()*10); +} + + + +if (r - d == 4) +{ +au = au + 1; +core.setDate("-1 days"); +if (au > 11) +{ +au = 1; +} +} + + +if (r - d == -4) +{ +au = au - 1; +core.setDate("+1 days"); +if (au < 1 ) +{ +au = 11 +} +} + +if (r - d == 29) +{ +q = 1; +ss = 1; +} + + +LabelMgr.setLabelShow(txt1, false); + + +if (r - d == -29) +{ +q = 1; +ss = 0; +} + +} // end main screen + + + +txt1 = LabelMgr.labelScreen("-->", 630*x, ((au-1)*50+sty)*y, false, 25, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); +core.wait(.5); + +LabelMgr.deleteAllLabels(); + +LandscapeMgr.setFlagAtmosphere(oatmo); + + + + + +if (au == 0) +{ +au = 20; +} + + + + + +// Basics + + + +StelMovementMgr.zoomTo(27, 1); + +SolarSystem.setLabelsAmount(20); +StelSkyDrawer.setFlagLuminanceAdaptation(false); +core.selectObjectByName("Earth", pointer = true); +StelMovementMgr.setFlagTracking(true); + + + +LandscapeMgr.setFlagAtmosphere(true); + +LandscapeMgr.setFlagLandscape(true); + +LandscapeMgr.setCurrentLandscapeID("Jupiter"); + +p = 0; + + + +// Label +if (ss == 0) +{ + + +txt1 = LabelMgr.labelScreen("Press + for next event", 700 * x, 400*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press - for previous event", 700*x, 440*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Press [ go back to start date ", 700*x, 460*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +txt1 = LabelMgr.labelScreen("Press ] go back to Main Menu", 700*x, 480*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + +} + +else +{ +txt1 = LabelMgr.labelScreen("Press + - [ or ] for Main Menu ", 700*x, 460*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); +} + + +txt1 = LabelMgr.labelScreen("By Qam1", 700*x, 500*y, false, 15, "#FF0000"); +LabelMgr.setLabelShow(txt1, true); + + + + +core.setJDay(startdate); + + + +// Pick where to start + +//core.setDate("now"); +j = core.getJDay(); +km = 1; + +i = 0; + +while (km == 1) +{ +i = i + 1; + + +core.setDate(id[i], "utc"); + +core.setObserverLocation(il[i], 0.00, 71492000, 0, "", "Jupiter"); + + + +jj = core.getJDay(); +if (jj+1 > j) +{ +km = i; +} +} + + +q = 0; +p = 1; +i = i -1; + + + +while (q == 0) +{ + + +// program + + + +i = i + p; + +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} + + +if (au == 2) // Earth +{ +ag = 0; +if (ij[i] < 3) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] < 3) +{ +ag = 2; +} +} +} + + +if (au == 3) // Mars +{ +ag = 0; +if (ij[i] > 2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] > 2) +{ +ag = 2; +} +} +} + + +if (au == 4) // Earth Longest +{ +ag = 0; + +if (ij[i] < 3) +{ +if (ik[i] > 11.8) +{ +ag = 2; +} +} + + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} + +if (ij[i] < 3) +{ +if (ik[i] > 11.8) +{ +ag = 2; +} +} + + +} +} + + +if (au == 5) // Mars Longest +{ +ag = 0; + +if (ij[i] > 2) +{ +if (ik[i] > 19) +{ +ag = 2; +} +} + + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} + +if (ij[i] > 2) +{ +if (ik[i] > 19) +{ +ag = 2; +} +} + + +} +} + + +if (au == 6) // Earth Evening +{ +ag = 0; +if (ij[i] == 2) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 2) +{ +ag = 2; +} +} +} + +if (au == 7) // Earth Morning +{ +ag = 0; +if (ij[i] == 1) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 1) +{ +ag = 2; +} +} +} + + + +if (au == 8) // Mars Evening +{ +ag = 0; +if (ij[i] == 4) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 4) +{ +ag = 2; +} +} +} + + +if (au == 9) // Mars Morning +{ +ag = 0; +if (ij[i] == 3) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 3) +{ +ag = 2; +} +} +} + +if (au == 10) // All evenings +{ +ag = 0; +if (ij[i] == 4 || ij[i] == 2 ) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 4 || ij[i] == 2 ) +{ +ag = 2; +} +} +} + + +if (au == 11) // All Mornings +{ +ag = 0; +if (ij[i] == 3 || ij[i] == 1 ) +{ +ag = 2; +} + +while (ag == 0) +{ +i = i + p; +if (i > l) +{ +i = f; +} +if (i < f) +{ +i = l; +} +if (ij[i] == 3 || ij[i] == 1 ) +{ +ag = 2; +} +} +} + + +// #&!@)#& + + + +if (ij[i]/2 == Math.floor(ij[i]/2)) +{ +woes = "W" +} +else +{ +woes = "E" +} + + + + +// Find best times + + + +ahhh = id[i]; +core.setDate(ahhh, "utc"); + + +core.setObserverLocation(il[i], 0.00, 71492000, 0, "", "Jupiter"); + + + +if (ij[i] > 2) +{ + +cplanet = "Mars"; + + +if (cplanet != lplanet) +{ +core.selectObjectByName("Mars", pointer = true); +StelMovementMgr.setFlagTracking(true); +} + +} +else +{ + +cplanet = "Earth"; + +if (cplanet != lplanet) +{ +core.selectObjectByName("Earth", pointer = true); +StelMovementMgr.setFlagTracking(true); +} + +} + + + + +lplanet = cplanet; + + +jd = core.getJDay(); +d = jd - 2451543.5; + + +// Sun + +w = 282.9404 + 0.0000470935 * d; +Me = 356.0470 + 0.9856002585 * d; +e = 0.016709 - 0.000000001151 * d; +wme = w + Me; +ob = 23.439281 - 0.0000003563 * d; +ob = ob * rad; + + + + +if (wme < 0) +{ +while (wme < 0) +{ +wme = wme + 360; +} +} + +if (wme > 360) +{ +while (wme > 360) +{ +wme = wme - 360; +} +} + + + + +EA = Me + (deg) * e * Math.sin(Me*rad) * (1 + e * Math.cos(Me*rad)); +xx = Math.cos(EA*rad) - e; +ysun = Math.sin(EA*rad) * Math.sqrt(1 - e*e); + +r = Math.sqrt(xx*xx + ysun*ysun); +rapp = r; +v = Math.atan2(ysun, xx) * deg; + +Lon = v + w; + +if (Lon < 0) +{ +while (Lon < 0) +{ +Lon = Lon + 360; +} +} + +if (Lon > 360) +{ +while (Lon > 360) +{ +Lon = Lon - 360; +} +} + +xx = r * Math.cos(Lon*rad); +ysun = r * Math.sin(Lon*rad); +z = 0.0; + +xe = xx; +ye = ysun * Math.cos(ob) + 0.0 * Math.sin(ob); +ze = ysun * Math.sin(ob) + 0.0 * Math.cos(ob); + +ra = Math.atan2( ye, xe ) * deg; +dec = Math.atan2( ze, Math.sqrt(xe*xe+ye*ye) )* deg; + + +if (ra<0) +{ +ra = (360+ra); +} + + + + + +// Jupiter set + +N = 100.4542 + 0.0000276854 * d; +ii = 1.3030 - 0.0000001557 * d; +w = 273.8777 + 0.0000164505 * d; +a = 5.20256; +e = 0.048498 + 0.000000004469 * d; +Me = 19.8950 + 0.0830853001 * d + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + +Mj = Me * rad; + +Me = 316.9670 + 0.0334442282* d; // Saturn Pet + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + +Ms = Me * rad +Me = Mj * deg; +pet = -0.332 * Math.sin((2*Mj - 5*Ms - 67.6*rad)); +pet = pet -0.056 * Math.sin((2*Mj - 2*Ms + 21*rad)); +pet = pet +0.042 * Math.sin((3*Mj - 5*Ms + 21*rad)); +pet = pet -0.036 * Math.sin((Mj - 2*Ms)); +pet = pet +0.022 * Math.cos((Mj - Ms)); +pet = pet +0.023 * Math.sin((2*Mj - 3*Ms + 52*rad)); +pet = pet -0.016 * Math.sin((Mj - 5*Ms - 69*rad)); +pety = 0; + + + +if (w<0) +{ +while (w >0) +{ +w = w + 360; +} +} + + +if (w>360) +{ +while (w <360) +{ +w = w - 360; +} +} + +if (Me<0) +{ +while (Me >0) +{ +Me = Me + 360; +} +} + + +if (Me>360) +{ +while (Me <360) +{ +Me = Me - 360; +} +} + + + +if (N<0) +{ +while (N >0) +{ +N = N + 360; +} +} + +if (N>360) +{ +while (N <360) +{ +N = N - 360; +} +} + +if (ii<0) +{ +while (ii >0) +{ +ii = ii + 360; +} +} + +if (ii>360) +{ +while (ii <360) +{ +ii = ii - 360; +} +} + +ii = ii * rad; + +Merad = Me * rad; +N = N * rad; +E4 = 0; + +E0 = Me + e*(deg) * Math.sin(Merad) * ( 1.0 + e * Math.cos(Merad) ); + +while (E4 == 0) +{ + +E2 = E0 * rad; +E1 = E0 - (E2 - (e * Math.sin(E2)) - (Me* rad)) / ( 1 - e * Math.cos(E2)); + + +if (Math.abs(E1-E0)< 0.000001) +{ +E4 = 1; +} +else +{ +E0 = E1; +} +} + + +E0 = E1 * rad // Might as well use E0 as Radians + +xx = a * (Math.cos(E0) - e); +yy = a * (Math.sqrt(1 - e*e))* Math.sin(E0); + +r = Math.sqrt(xx*xx + yy*yy ); // Distance from sun + +rsun = r; + + +v = Math.atan2(yy, xx ); +v = v * deg; +v = v *rad + w * rad; + + +// The position in space + +pxe = r * ( Math.cos(N) * Math.cos(v) - Math.sin(N) * Math.sin(v) * Math.cos(ii) ); +pye = r * ( Math.sin(N) * Math.cos(v) + Math.cos(N) * Math.sin(v) * Math.cos(ii) ); +pze = r * Math.sin(v) * Math.sin(ii); + + +// Helio Lat and Long + Petrubs + +ra = Math.atan2(pye, pxe ) + pet * rad; +dec = Math.atan2(pze, Math.sqrt(pxe*pxe+pye*pye) ) + pety * rad; + +// convert to earth centered + +xx = r * Math.cos(ra) * Math.cos(dec); +yy = r * Math.sin(ra) * Math.cos(dec); +zz = r * Math.sin(dec); // Distance to sun in AU - Not needed in this script + +gxe = xe + xx; +gye = ysun + yy; +gze = zz; + +// Precession + +xx = gxe; +yy = gye*Math.cos(ob) - gze*Math.sin(ob); +zz = gye*Math.sin(ob) + gze*Math.cos(ob); + + +ra = Math.atan2(yy, xx ) * deg; +dec = Math.atan2(zz, Math.sqrt(xx*xx+yy*yy) )* deg; +r = Math.sqrt( xx*xx + yy*yy + zz*zz ); + + +ltravel = r * 499.02; +jlight = ltravel / 86400; +d = d - jlight; + + +lhrs = Math.floor(ltravel / 3600); + +lmin = (ltravel - (lhrs * 3600))/60 + +lsec = (lmin - Math.floor(lmin)) * 60 + +lmin = Math.floor(lmin); +lsec = Math.floor(lsec); + + + +hstring = " hours "; +if (lhrs == 1) +{ +hstring = " hour "; +} + + +mstring = " minutes " +if (lmin == 1) +{ +mstring = " minute "; +} + + +sstring = " seconds " +if (lsec == 1) +{ +sstring = " second "; +} + + + + + + + +if (ra<0) +{ +ra = (360+ra); +} + +// Earth Phase angle + +efv = (rapp*rapp + r*r - rsun*rsun) / (2*rapp*r); +efv = (Math.acos(efv)); + +fv = Math.cos(efv); +fv = (1 + fv)/2; +fv = fv * 100; + +// Earth Mag + +efv = 2/3 * ((1-(efv)/pi) * Math.cos(efv) + (1/pi)*Math.sin(efv)) ; +efv = (rapp * rapp * r * r)/efv; +efv = Math.log(efv) / Math.log(10); +efv = root * efv; +mfv = +0.21 + efv; +efv = -3.88 + efv; + +tmag = Math.pow(root, -efv) + Math.pow(root, -mfv) +tmag = Math.log(tmag) / Math.log(10) +tmag = -2.5 * tmag + + +elong = (rsun*rsun + r*r - rapp*rapp) / (2*rsun*r); +elong = Math.acos(elong) * deg; + + +if (ij[i]/2 != Math.floor(ij[i]/2)) +{ +txt1 = LabelMgr.labelScreen("Greatest Elongation Morning", 700*x, 10*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + +else +{ +txt1 = LabelMgr.labelScreen("Greatest Elongation Evening", 700*x, 10*y, false, 20, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); +} + + + +txt1 = LabelMgr.labelScreen("Elongation: " + ik[i].toFixed(3) + degstring + woes, 700*x, 40*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +if (ij[i] < 3) +{ + +txt1 = LabelMgr.labelScreen("Magnitude: " + efv.toFixed(3) , 700*x, 70*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Illumination: " + fv.toFixed(3) + "%", 700*x, 100*y, false, 25, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + + + +txt1 = LabelMgr.labelScreen("Moon Elong: " + im[i] + degstring, 700*x, 130*y, false, 25, "#AADDAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Moon Mag: " + mfv.toFixed(3), 700*x, 160*y, false, 25, "#AADDAA"); +LabelMgr.setLabelShow(txt1, true); + + +txt1 = LabelMgr.labelScreen("Light Travel Time: " + lmin + mstring + lsec + sstring, 700*x, 670*y, false, 15, "#AAFFAA"); +LabelMgr.setLabelShow(txt1, true); + + +} + + +// Wait for Keypress + + + + +d = Math.floor(core.getJDay()*10); +r = d; + + +pak = 0 + +if (ss ==1) +{ +while (pak < spd) +{ +core.wait(0.25); +pak = pak + 1; + +r = Math.floor(core.getJDay()*10); + +if (Math.abs(r-d) > 0) +{ +pak = spd + 1; +core.setDate("+100 days") +} +} +r = Math.floor(core.getJDay()*10) + 1; +} + + + +while (d == r) +{ +r = Math.floor(core.getJDay()*10); +} + +LabelMgr.deleteAllLabels(); + +if (r - d == -4) +{ +p = - 1; +} + +if (r - d == 4) +{ +p = 1; +} + + +// Start +if (r - d > 27) +{ +//if (id[km].substring(10,11) == "T") +//{ +//core.setDate(id[km]); +//} +//else +//{ +//tt = id[km] + "T12:00:00"; +//core.setDate(tt,"local"); + +//} +q = 1; +} + + +//t +if (r - d < -27) +{ +i = km - p +} + + + + +LabelMgr.deleteAllLabels(); + +} +} + + +txt1 = LabelMgr.labelScreen("Later!!!", 400, 20, false, 75, "#FFFFFF"); +LabelMgr.setLabelShow(txt1, true); + + +LabelMgr.deleteAllLabels(); diff -Nru stellarium-0.12.1/scripts/solar_system_screensaver.ssc stellarium-0.12.4/scripts/solar_system_screensaver.ssc --- stellarium-0.12.1/scripts/solar_system_screensaver.ssc 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/scripts/solar_system_screensaver.ssc 2013-09-13 10:51:45.000000000 +0000 @@ -1,4018 +1,5096 @@ -// -// Author: Qam1 -// Name: Solar System Screensaver -// License: Public Domain -// Version: 171-1 -// Description: Screensaver of various happenings in the Solar System. 171 events in all! -// - -// This is the pause in seconds between each event -// feel free to change to your likeing -var spd = 8; - -// -// Number of Events -var l = 171; - -SolarSystem.setFlagLightTravelTime(true); -StelSkyDrawer.setFlagLuminanceAdaptation(false); -SolarSystem.setLabelsAmount(20); -SolarSystem.setFlagMoonScale(4); +// Author: Qam1 +// Name: Solar system screensaver +// License: Public Domain +// Version: 187-1 +// Description: Screensaver of various happenings in the Solar System. 187 events in all! + + +// Made on Stellarium Version 12.2 + +// This is the pause in seconds between each event +// feel free to change to your likeing + +spd = 8; + +// + +core.setDeltaTAlgorithm("WithoutCorrection"); + + + +// Number of Events +l = 187; + + +degstring = "\u00B0"; +SolarSystem.setFlagLightTravelTime(true); +StelSkyDrawer.setFlagLuminanceAdaptation(false); +SolarSystem.setLabelsAmount(20); +SolarSystem.setFlagMoonScale(4); LandscapeMgr.setFlagAtmosphere(true); - -var eg = GridLinesMgr.getFlagEquatorGrid(); -var ob = SolarSystem.getFlagOrbits(); -var id = new Array(length=l); -for(i=1; iThanks to

    source

    diff -Nru stellarium-0.12.1/skycultures/arabic/description.hu.utf8 stellarium-0.12.4/skycultures/arabic/description.hu.utf8 --- stellarium-0.12.1/skycultures/arabic/description.hu.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/arabic/description.hu.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,42 @@ +

    Arab

    +

    Az Arab csillaghagyomány legalább ezer éve használatban van. Hatással volt rá az ókori görög csillagászat, főleg Klaudiosz Ptolemaiosz.

    +


    Az Orion csillagkép (bal oldali ábra), és az állócsillagok ábrázolása Abd ar-Rahmán asz-Szúfi perzsa csillagász könyvének 13. századi másolatában. Ebben a változatban az Orion pajzsa hosszú ruhaujjá alakult (ami a tipikus iszlám öltözethez tartozik).

    +

    Ptolemaiosz görög csillagász az egyiptomi Alexandriában élt és dolgozott i.e. 100-178 körül, összegyűjtötte a görög csillagászok megfigyelésének adatait 1022 csillagról, és közzétette könyvében, ami Nagy értekezés címmel jelent meg. Ezt rövidített arab neve után Almageszt néven emlegetik. Ptolemaiosz csillagkatalógusa a csillagokat 48 csillagkép alapján rendezi, és a becsült fényességük alapján sorolja fel. Az adatok olyan, korábban élt görög csillagászoktól származnak, mint Hipparkhosz.

    +

    Ptolemaiosz könyvét kétszer is lefordították arab nyelvre a 9. században és széles körben ismertté vált. A csillagok arab nyelvű leírásaiban szereplő csillagok nevei ma is használatban vannak.

    Csillagképek

    Az arab csillaghagyomány a klasszikus, görög 48 csillagképet tartalmazza. Ezeket a csillagképeket több arab és iszlamista tudós leírta. Köztük Abd ar-Rahmán asz-Szúfi (903-986) perzsa csillagász (latinosított neve: Azophi) maradandó hatást gyakorolt a késÅ‘bbi csillagászati megfigyelésekre. Szisztematikusan ellenÅ‘rizte és korrigálta Ptolemaiosz csillagkatalógusának adatait. +Asz-Szúfi elkészítette a katalógus javított és frissített változatát, könyvének címe Kitab szuvar al-kavakib (Ãllócsillagok könyve). A könyv i.sz. 964 körül fejezÅ‘dött be. A görög csillagászati örökségen alapuló munka tartalmazta a csillagok arab neveit, a fényességüket (ezeket Asz-Szúfi maga állapította meg), és minden csillagképrÅ‘l két rajzot: az egyik úgy ábrázolta, ahogyan az égbolton megjelenik, a másik tükrözte a jobb és bal oldalt, ahogyan egy gömbre helyezve látszódna. A legrégebbi fennmaradt példány Asz-Szúfi fiának munkája és 1010 körül készült. Jelenleg a Bodleian Library Å‘rzi Oxfordban (MS Marsh 144).

    +

    Ezen a külső hivatkozáson látható néhány illusztráció a könyvből.


    A Cet csillagkép az égbolton

    +

    A csillagnevek eredete

    +

    Az eredetétől függetlenül szinte minden csillagnévnek régi hagyománya van, ami az emberiség közös kulturális örökségéhez tartozik.

    +

    A hivatalosnak tekintett arab csillagnevek értelemszerűen a legfényesebb csillagokhoz tartoznak. A csillagok többsége a csillagkép után kapta a nevét, amiben található. Például a Deneb jelentése "farok", és a Hattyú csillagkép megfelelő helyén található, ahol a hattyú farka van.

    +

    Más nevek a csillag valamely jellemzőjét írják le, például a Szíriusz szó szerint "perzselő", ami jól illik az égbolt legfényesebb csillagára. Nagyon sok csillag visel arab eredetű nevet. A nevükben az “al†a határozott névelőnek felel meg ("az"). Sok névben egybeolvadt az eredeti névvel, például "Algol", "A vámpír". A névelő használata vagy elhagyása önkényes volt az idők során, így egyes csillagok az arab névelővel, máshol anélkül fordulnak elő. A legtöbb egyéb csillag neve görög, latin vagy kínai eredetű.

    + +

    Amikor az arab szövegeket elkezdték lefordítani latin nyelvre a 12. századtól kezdve, az arab hagyományos csillagnevek átkerültek a latinul beszélő tudományos világba. Ez a folyamat sokszor a nevek torzulásával járt. Előfordult az is, hogy egy másik csillag kapta ugyanazt a nevet. + +

    Ezen hátrányok ellenére is a csillagnevek többsége arab eredetű.

    + +

    Sok név már asz-Szúfi és kortársai számára is annyira régi volt, hogy a jelentésük feledésbe merült. Más csillagnevek a Klaudiosz Ptolemaiosz által adott nevek arab fordításai voltak. Például a Fomalhaut jelentése arabul "a déli hal szája". Ezt a kifejezést Ptolemaiosz alkalmazta a csillag helyének leírására.

    + +

    Külső hivatkozások

    + +

    Köszönetnyilvánítás

    + +

    source

    + +

    Szerző

    +

    Az arab csillagneveket összeállította és angolra fordította:

    +

    Khalid Alajaji

    +

    Az arab csillagképek határoló vonalait és ábráit készítette:

    +

    Kutaibaa Akraa: kutaibaa@gmail.com

    +
    Angol fordítás:
    kutaibaa akraa
    \ No newline at end of file diff -Nru stellarium-0.12.1/skycultures/arabic/description.uk.utf8 stellarium-0.12.4/skycultures/arabic/description.uk.utf8 --- stellarium-0.12.1/skycultures/arabic/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/arabic/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,41 +1,91 @@ -

    ÐрабÑька

    -

    Ðа цю верÑÑ–ÑŽ ÐрабÑької картини зорÑного неба, Ñкою кориÑтуютьÑÑ Ð²Ð¶Ðµ більше тиÑÑчі років, значний вплив мала грецька аÑтрономіÑ, зокрема птолемеївÑька аÑтрономіÑ.

    -


    Ð—Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ ÑÑƒÐ·Ñ–Ñ€â€™Ñ ÐžÑ€Ñ–Ð¾Ð½Ð°, виглÑд з Землі (ліворуч), та віддзеркалене Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð· копії XII ÑÑ‚. «Книги нерухомих зірок» аль-Суфі. У цій верÑÑ–Ñ— щит Оріона Ñтає довгим рукавом, типовим Ð´Ð»Ñ Ñ–ÑламÑького одÑгу.

    -

    Птолемей, грецький аÑтроном, Ñкий жив Ñ– працював близько 100-178 Ñ€. н.е. у ÐлекÑандрії, Єгипет, зібрав давньогрецькі опиÑи 1.022 зірок у Ñвоїй знаменитій книзі Математичний трактат з аÑтрономії. Ð¦Ñ ÐºÐ½Ð¸Ð³Ð° набула популÑрноÑÑ‚Ñ– зі Ñкороченою арабÑькою назвою, ÐльмагеÑÑ‚. Каталог зірок ÐŸÑ‚Ð¾Ð»ÐµÐ¼ÐµÑ Ð¿Ð¾Ð´Ñ–Ð»ÐµÐ½Ð¾ між 48 Ñузір'Ñмиі впорÑдковано за ÑÑкравіÑÑ‚ÑŽ зірок на оÑнові, в оÑновному, вимірювань виконаних попередниками ПтолемеÑ, зокрема Гіппархом.

    -

    Книгу ÐŸÑ‚Ð¾Ð»ÐµÐ¼ÐµÑ Ð±ÑƒÐ»Ð¾ двічі перекладено арабÑькою у IX Ñтолітті, вона набула значної популÑрноÑÑ‚Ñ–. Багато опиÑів зірок у арабÑькому перекладі «ÐльмагеÑта» набули Ð¿Ð¾ÑˆÐ¸Ñ€ÐµÐ½Ð½Ñ Ñк назви зірок.

    -

    Сузір'Ñ

    -

    У арабÑькій картині зорÑного неба викориÑтано клаÑичні грецькі 48 Ñузір'Ñми . Ці ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð±ÑƒÐ»Ð¾ опиÑано кількома арабÑькими Ñ– Ñ–ÑламÑькими авторами, один з Ñких значно вплинув на решту арабÑьких ÑпоÑтерігачів неба та вчених. Цим аÑтрономом був Ðбу аль-ХуÑейн Ðбд аль-Рахман аль-Суфі (903-986), відомий також за латинізованим ім’Ñм Ðзофі. Він виконав ÑиÑтематичну ревізію каталогу зірок ПтолемеÑ. Ðль-Суфі Ñтворив переглÑнуту Ñ– оновлену верÑÑ–ÑŽ птолемеєвого ÐльмагеÑÑ‚ у Ñвоїй оÑновній праці під назвою Кітаб Ñувар аль-кавакіб (Книга нерухомих зірок), роботу над Ñкою було завершено у 964 Ñ€. н.е. Побудована на Ñпадку грецької аÑтрономії, Ñ†Ñ Ñ€Ð¾Ð±Ð¾Ñ‚Ð° Ðль-Суфі міÑтить ÑпиÑок влаÑних арабÑьких назв зірок, зорÑні величини Ñких було визначено аль-Суфі ÑамоÑтійно, а також по два малюнки кожного Ñузір’Ñ: один — виглÑд на небі, інший — дзеркальна Ð¿Ñ€Ð¾ÐµÐºÑ†Ñ–Ñ Ð½Ð° небеÑній Ñфері. ÐайÑтаріша з копій праці, що збереглиÑÑ, була Ñтворена його Ñином близько 1010 Ñ€. н.е. . Ð¦Ñ ÐºÐ¾Ð¿Ñ–Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ñ”Ñ‚ÑŒÑÑ Ñƒ бібліотеці імені Ð‘Ð¾Ð´Ð»ÐµÑ Ñƒ ОкÑфорді (MS Marsh 144).

    -

    За цим поÑиланнÑм ви можете переглÑнути чудові ілюÑтрації Ñузір’їв та зразки зорÑних таблиць у давньому рукопиÑÑ– книги Ðль-Суфі.

    -


    Видима з Землі форма ÑÑƒÐ·Ñ–Ñ€â€™Ñ ÐšÐ¸Ñ‚Ð°

    -

    ÐŸÐ¾Ñ…Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ Ð½Ð°Ð·Ð² зірок

    -

    Ðезалежно від походженнÑ, майже вÑÑ– назви зірок Ñ” дуже давніми. Вони Ñ” чаÑтиною Ñпільного культурного Ñпадку людÑтва.

    -

    офіційний перелік назв зірок обмежено Ñтарими назвами, типово назви мають лише найÑÑкравіші зірки. БільшіÑÑ‚ÑŒ назв зірок пов’Ñзано з Ñузір’Ñми, у Ñких вони перебувають, наприклад назва зірки Денеб означає «хвіÑт» Ñ– позначає чаÑтину ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð›ÐµÐ±ÐµÐ´Ñ .

    -

    Інші Ñ” опиÑом Ñамої зірки, зокрема СіріуÑ, що буквально перекладаєтьÑÑ Ñк «Ñпекотний», доÑтатньо вдало Ð´Ð»Ñ Ð½Ð°Ð¹ÑÑкравішої зірки нічного неба. Доволі багато ÑÑкравих зірок мають арабÑькі назви, у Ñких «аль» відповідає артиклю «the» (цей) Ñ– чаÑто додаєтьÑÑ Ñк префікÑ, наприклад «Ðлгол», — «Вампір». Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ префікÑа з чаÑом набуло форми довільноÑÑ‚Ñ–, тому декілька назв зірок мають арабÑьке походженнÑ, але не міÑÑ‚ÑÑ‚ÑŒ префікÑа «аль-». БільшіÑÑ‚ÑŒ інших давніх назв зірок мають грецькі, латинÑькі або китайÑькі корені.

    -

    Коли арабÑькі текÑти почали перекладатиÑÑ Ð»Ð°Ñ‚Ð¸Ð½Ñькою на початку XII ÑтоліттÑарабÑькі традиційні назви зірок проникли до західноєвропейÑького Ñвіту. Ðле це Ð¿Ñ€Ð¾Ð½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ Ñ‡Ð°Ñто відбувалоÑÑ Ñƒ дуже Ñпотвореній формі або зі зміною значеннÑ, або взагалі з породженнÑм Ñлів, Ñкі не мають ніÑкого ÑенÑу. ДеÑкі назви було помилково припиÑано іншим зіркам, отже назву могло бути припиÑано навіть зірці з іншого ÑÑƒÐ·Ñ–Ñ€â€™Ñ (грецького або арабÑького) , а зовÑім не того, де мала знаходитиÑÑ Ð·Ñ–Ñ€ÐºÐ°.

    -

    Як би там не ÑталоÑÑ, але навіть з цими недоліками більшіÑÑ‚ÑŒ назв зірок, Ñкі було запозичено з чаÑу ВідродженнÑ, мають арабÑьке походженнÑ.

    -

    У міÑцевих традиціÑÑ… Ñ–ÑламÑьких країн ÐравійÑького півоÑтрова та Близького Сходу Ñ” влаÑні назви Ð´Ð»Ñ Ñ€Ñ–Ð·Ð½Ð¾Ð¼Ð°Ð½Ñ–Ñ‚Ð½Ð¸Ñ… ÑÑкравих зірок, зокрема Ðльдебарана, окремі зірки чаÑто уÑвлÑÑŽÑ‚ÑŒÑÑ Ð¼ÐµÑˆÐºÐ°Ð½Ñ†Ñми цих земель тваринами або людьми. Ðаприклад, зірки, Ñкі ми знаємо Ñк альфу Ñ– бету ЗмієноÑÑ†Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡Ð°Ð»Ð¸ паÑтуха Ñ– його Ñобаку, а ÑуÑідні зірки утворювали обриÑи Ð¿Ð¾Ð»Ñ Ð· вівцÑми. ДеÑкі з арабÑьких назв такі давні, що їхнє Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½Ðµ було відоме навіть аль-Суфі та його ÑучаÑникам, отже залишаєтьÑÑ Ð½ÐµÐ²Ñ–Ð´Ð¾Ð¼Ð¸Ð¼ Ñ– зараз. Інші назви зірок, Ñкі викориÑтовував аль-Суфі та його Ñпіввітчизники, були буквальними перекладами опиÑів ПтолемеÑ. Ðаприклад, назва зірки Фомальгаут походить від арабÑького виразу «рот південної риби», оÑкільки Ñаме там цю зірку Птолемей розміÑтив у праці ÐльмагеÑÑ‚.

    -

    Зовнішні поÑиланнÑ:

    - -

    ПодÑки

    - -

    джерело

    - -

    Ðвтор

    -

    Ðвтором Ð·Ð±Ð¸Ñ€Ð°Ð½Ð½Ñ Ñ‚Ð° Ð´Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð°Ñ€Ð°Ð±Ñьких назв зірок до Stellarium Ñ”

    -

    Халід Ðладжазі

    -

    Ðвтором Ð¿Ñ€Ð¸Ð³Ð¾Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð»Ñ–Ð½Ñ–Ð¹ арабÑьких Ñузір’їв та їхніх зображень Ñ”

    -

    Kutaibaa Akraa: kutaibaa@gmail.com

    +

    ÐрабÑька

    +

    Ðа цю верÑÑ–ÑŽ ÐрабÑької картини зорÑного неба, Ñкою кориÑтуютьÑÑ Ð²Ð¶Ðµ більше тиÑÑчі років, значний вплив мала грецька +аÑтрономіÑ, зокрема птолемеївÑька аÑтрономіÑ.

    +


    Ð—Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ ÑÑƒÐ·Ñ–Ñ€â€™Ñ ÐžÑ€Ñ–Ð¾Ð½Ð°, виглÑд з Землі (ліворуч), та віддзеркалене +Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð· копії XII ÑÑ‚. «Книги нерухомих зірок» аль-Суфі. У цій верÑÑ–Ñ— +щит Оріона Ñтає довгим рукавом, типовим Ð´Ð»Ñ Ñ–ÑламÑького одÑгу.

    +

    Птолемей, грецький аÑтроном, Ñкий жив Ñ– працював близько 100-178 Ñ€. н.е. у ÐлекÑандрії, Єгипет, зібрав давньогрецькі опиÑи 1.022 зірок у Ñвоїй знаменитій книзі Математичний трактат з аÑтрономії. Ð¦Ñ ÐºÐ½Ð¸Ð³Ð° набула популÑрноÑÑ‚Ñ– зі Ñкороченою арабÑькою назвою, ÐльмагеÑÑ‚. Каталог зірок ÐŸÑ‚Ð¾Ð»ÐµÐ¼ÐµÑ Ð¿Ð¾Ð´Ñ–Ð»ÐµÐ½Ð¾ між 48 Ñузір'Ñми Ñ– впорÑдковано за ÑÑкравіÑÑ‚ÑŽ зірок на оÑнові, в оÑновному, вимірювань +виконаних попередниками ПтолемеÑ, зокрема Гіппархом.

    +

    Книгу ÐŸÑ‚Ð¾Ð»ÐµÐ¼ÐµÑ Ð±ÑƒÐ»Ð¾ двічі перекладено арабÑькою у IX Ñтолітті, вона набула +значної популÑрноÑÑ‚Ñ–. Багато опиÑів зірок у арабÑькому перекладі +«ÐльмагеÑта» набули Ð¿Ð¾ÑˆÐ¸Ñ€ÐµÐ½Ð½Ñ Ñк назви зірок.

    +

    Сузір'Ñ

    +

    У арабÑькій картині зорÑного неба викориÑтано клаÑичні грецькі 48 Ñузір'Ñми. Ці ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð±ÑƒÐ»Ð¾ опиÑано кількома арабÑькими Ñ– Ñ–ÑламÑькими авторами, +один з Ñких значно вплинув на решту арабÑьких ÑпоÑтерігачів неба та +вчених. Цим аÑтрономом був Ðбу аль-ХуÑейн Ðбд аль-Рахман аль-Суфі (903-986), відомий також за латинізованим ім’Ñм Ðзофі. Він виконав ÑиÑтематичну ревізію каталогу зірок ПтолемеÑ. Ðль-Суфі Ñтворив переглÑнуту Ñ– оновлену верÑÑ–ÑŽ птолемеєвого ÐльмагеÑÑ‚ у Ñвоїй оÑновній праці під назвою Кітаб Ñувар аль-кавакіб (Книга нерухомих зірок), роботу над Ñкою було завершено у 964 Ñ€. н.е. Побудована на Ñпадку +грецької аÑтрономії, Ñ†Ñ Ñ€Ð¾Ð±Ð¾Ñ‚Ð° Ðль-Суфі ÑамоÑтійно, а також по два малюнки кожного Ñузір’Ñ: один — виглÑд на +небі, інший — дзеркальна Ð¿Ñ€Ð¾ÐµÐºÑ†Ñ–Ñ Ð½Ð° небеÑній Ñфері. ÐайÑтаріша з копій +праці, що збереглиÑÑ, була Ñтворена його Ñином близько 1010 Ñ€. н.е.. Ð¦Ñ ÐºÐ¾Ð¿Ñ–Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ñ”Ñ‚ÑŒÑÑ Ñƒ бібліотеці імені Ð‘Ð¾Ð´Ð»ÐµÑ Ñƒ ОкÑфорді (MS Marsh +144).

    +

    За +цим поÑиланнÑм ви можете переглÑнути чудові ілюÑтрації Ñузір’їв та зразки +зорÑних таблиць у давньому рукопиÑÑ– книги Ðль-Суфі.

    +


    Видима з Землі форма ÑÑƒÐ·Ñ–Ñ€â€™Ñ ÐšÐ¸Ñ‚Ð°

    +

    ÐŸÐ¾Ñ…Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ Ð½Ð°Ð·Ð² зірок

    +

    Ðезалежно від походженнÑ, майже вÑÑ– назви зірок Ñ” дуже давніми. Вони Ñ” +чаÑтиною Ñпільного культурного Ñпадку людÑтва.

    +

    офіційний перелік назв зірок обмежено Ñтарими назвами, типово назви мають лише найÑÑкравіші зірки. БільшіÑÑ‚ÑŒ назв зірок +пов’Ñзано з Ñузір’Ñми, у Ñких вони перебувають, наприклад назва зірки Денеб означає «хвіÑт» Ñ– позначає чаÑтину ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð›ÐµÐ±ÐµÐ´Ñ.

    +

    Інші Ñ” опиÑом Ñамої зірки, зокрема СіріуÑ, що буквально перекладаєтьÑÑ Ñк «Ñпекотний», доÑтатньо вдало Ð´Ð»Ñ Ð½Ð°Ð¹ÑÑкравішої зірки нічного неба. Доволі багато +ÑÑкравих зірок мають арабÑькі назви, у Ñких «аль» відповідає артиклю «the» (цей) Ñ– чаÑто додаєтьÑÑ Ñк префікÑ, наприклад «Ðлгол», — «Вампір». Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ префікÑа з чаÑом набуло форми довільноÑÑ‚Ñ–, тому +декілька назв зірок мають арабÑьке походженнÑ, але не міÑÑ‚ÑÑ‚ÑŒ префікÑа +«аль-». БільшіÑÑ‚ÑŒ інших давніх назв зірок мають грецькі, латинÑькі або китайÑькі корені.

    +

    Коли арабÑькі текÑти почали перекладатиÑÑ Ð»Ð°Ñ‚Ð¸Ð½Ñькою на початку XII ÑÑ‚Ð¾Ð»Ñ–Ñ‚Ñ‚Ñ Ð°Ñ€Ð°Ð±Ñькі традиційні назви зірок проникли до західноєвропейÑького +Ñвіту. Ðле це Ð¿Ñ€Ð¾Ð½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ Ñ‡Ð°Ñто відбувалоÑÑ Ñƒ дуже Ñпотвореній формі або зі +зміною значеннÑ, або взагалі з породженнÑм Ñлів, Ñкі не мають ніÑкого +ÑенÑу. ДеÑкі назви було помилково припиÑано іншим зіркам, отже назву могло +бути припиÑано навіть зірці з іншого ÑÑƒÐ·Ñ–Ñ€â€™Ñ (грецького або арабÑького) , а зовÑім не того, де мала знаходитиÑÑ Ð·Ñ–Ñ€ÐºÐ°.

    +

    Як би там не ÑталоÑÑ, але навіть з цими недоліками більшіÑÑ‚ÑŒ назв зірок, Ñкі +було запозичено з чаÑу ВідродженнÑ, мають арабÑьке походженнÑ.

    +

    У міÑцевих традиціÑÑ… Ñ–ÑламÑьких країн ÐравійÑького півоÑтрова та Близького Сходу Ñ” влаÑні назви Ð´Ð»Ñ +різноманітних ÑÑкравих зірок, зокрема Ðльдебарана, окремі зірки чаÑто уÑвлÑÑŽÑ‚ÑŒÑÑ Ð¼ÐµÑˆÐºÐ°Ð½Ñ†Ñми цих земель тваринами або людьми. Ðаприклад, зірки, Ñкі ми знаємо Ñк альфу та бету ЗмієноÑÑ†Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡Ð°Ð»Ð¸ паÑтуха та його Ñобаку, а ÑуÑідні зірки утворювали обриÑи Ð¿Ð¾Ð»Ñ Ð· вівцÑми. ДеÑкі з арабÑьких назв такі давні, що їхнє Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½Ðµ було відоме +навіть аль-Суфі та його ÑучаÑникам, отже залишаєтьÑÑ Ð½ÐµÐ²Ñ–Ð´Ð¾Ð¼Ð¸Ð¼ Ñ– +зараз. Інші назви зірок, Ñкі викориÑтовував аль-Суфі та його +Ñпіввітчизники, були буквальними перекладами опиÑів ПтолемеÑ. Ðаприклад, +назва зірки Фомальгаут походить від арабÑького виразу «рот південної риби», оÑкільки Ñаме там цю зірку Птолемей розміÑтив у праці ÐльмагеÑÑ‚.

    +

    Зовнішні поÑиланнÑ:

    + +

    ПодÑки

    + +

    джерело

    + +

    Ðвтор

    +

    Ðвтором Ð·Ð±Ð¸Ñ€Ð°Ð½Ð½Ñ Ñ‚Ð° Ð´Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð°Ñ€Ð°Ð±Ñьких назв зірок до Stellarium Ñ”

    +

    Халід Ðладжазі

    +

    Ðвтором Ð¿Ñ€Ð¸Ð³Ð¾Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð»Ñ–Ð½Ñ–Ð¹ арабÑьких Ñузір’їв та їхніх зображень Ñ”

    +

    Kutaibaa Akraa: kutaibaa@gmail.com

    Переклад англійÑькою:
    kutaibaa akraa
    \ No newline at end of file diff -Nru stellarium-0.12.1/skycultures/aztec/CMakeLists.txt stellarium-0.12.4/skycultures/aztec/CMakeLists.txt --- stellarium-0.12.1/skycultures/aztec/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/aztec/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/aztec) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/aztec ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/aztec) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/aztec - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/aztec - FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/aztec - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/aztec/description.uk.utf8 stellarium-0.12.4/skycultures/aztec/description.uk.utf8 --- stellarium-0.12.1/skycultures/aztec/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/aztec/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,69 +1,136 @@ -

    Ðцтецька

    -

    Ð”Ð»Ñ Ð´Ð°Ð²Ð½Ñ–Ñ… ацтеків Ð·Ð½Ð°Ð½Ð½Ñ Ð½Ñ–Ñ‡Ð½Ð¾Ð³Ð¾ неба та руху зірок було важливим Ð´Ð»Ñ ÑÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ ÐºÐ°Ð»ÐµÐ½Ð´Ð°Ñ€Ñ Ñ‚Ð° Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²Ð°Ð¶Ð»Ð¸Ð²Ð¸Ñ… дат ÑільÑькогоÑподарÑького та релігійного циклів. Значну чаÑтину цих знань було втрачено внаÑлідок Ñ–ÑпанÑького завоюваннÑ, Ñке відбулоÑÑ Ñƒ континентальній Ðмериці у XVI Ñтолітті.

    -

    Елементи ацтецького ÑуÑпільÑтва, зокрема культура, економіка та наука, збереглиÑÑ Ñƒ тлакуїлоÑ, Ñлово, що походить від давнього Ñлова мовою нахуатль тлакуїлоа, що значить Ð·Ð°Ð¿Ð¸Ñ Ð¼Ð°Ð»ÑŽÐ½ÐºÐ°Ð¼Ð¸. Ð¢Ð»Ð°ÐºÑƒÑ—Ð»Ð¾Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð»Ð¸ÑÑ Ñƒ амокÑаллі, тобто «амокÑтлі»: будинку книг Ñ– каліграфії. Пізніше ці запиÑи назвали кодекÑи, — Ñлово Ñке походить від латинÑького «codex», тобто «пиÑьмова книга».

    -

    ПіÑÐ»Ñ Ñ–ÑпанÑького Ð·Ð°Ð²Ð¾ÑŽÐ²Ð°Ð½Ð½Ñ Ð±Ð°Ð³Ð°Ñ‚Ð¾ доіÑпанÑьких кодекÑів було знищено. ОÑновною оÑобливіÑÑ‚ÑŽ кодекÑів Ñ” те, що Ñ—Ñ… намальовано на багатьох різних матеріалах, зокрема оленÑчій шкірі, папері амате або бавовнÑній тканині. У кодекÑах немає текÑту, — лише малюнки або гліфи. МезоамериканÑькі традиції продовжили Ñвоє Ñ–ÑÐ½ÑƒÐ²Ð°Ð½Ð½Ñ Ñ– піÑÐ»Ñ Ñ–ÑпанÑького Ð·Ð°Ð²Ð¾ÑŽÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð²Ð´Ñки роботі Ñамих індіанців та деÑких Ñ–ÑпанÑьких ÑвÑщенників. Створені у цей Ñ‡Ð°Ñ ÐºÐ¾Ð´ÐµÐºÑи називають колоніальними. У них можна ÑпоÑтерігати певні відмінноÑÑ‚Ñ– через змінену техніку Ð¼Ð°Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° нові матеріали, імпортовані з Європи. Крім того, у них малюнки ÑупроводжуютьÑÑ Ñ‚ÐµÐºÑтом з опиÑами Ñ–ÑпанÑькою та нахуатлем.

    -

    -ÐÑтрономічна ÑиÑтема
    -

    Ðа жаль, наші Ð·Ð½Ð°Ð½Ð½Ñ Ñ‰Ð¾Ð´Ð¾ аÑтрономічної ÑиÑтеми ацтеків, Ñкі збереглиÑÑ Ð·Ð°Ð²Ð´Ñки уцілілим кодекÑам, доволі мізерні. Ðаведене нижче Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ” одним з небагатьох, на Ñких вказано назви деÑких Ñузір’їв та аÑтрономічних об’єктів, відомих ацтекам. Ð—Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð²Ð·Ñто з Primeros Memoriales (першого меморандуму), колоніального мануÑкрипту XVI ÑтоліттÑ, напиÑаного Бернардіно де Саагуном.

    -

    -

    Тепер наведемо деÑкі поÑÑÐ½ÐµÐ½Ð½Ñ Ñ‰Ð¾Ð´Ð¾ ацтецьких Ñузір’їв, Ñкі можна побачити у Stellarium.

    -

    Мамалуацтлі

    -

    Давні ацтеки називали поÑÑ ÐžÑ€Ñ–Ð¾Ð½Ð° Мамалуацтлі на чеÑÑ‚ÑŒ дерев’Ñних паличок, Ñкі викориÑтовували Ð´Ð»Ñ Ð·Ð°Ð¿Ð°Ð»ÐµÐ½Ð½Ñ Ð²Ð¾Ð³Ð½ÑŽ на великому ÑвÑткуванні, Ñке відбувалоÑÑ ÐºÐ¾Ð¶Ð½Ñ– 52 роки. Це ÑвÑто мало назву тозіух молпіліа , тобто «зв’Ñзка років», Ñ– збігалоÑÑ Ð· початком нового року, Ñкий називавÑÑ Ð·Ñ–ÑƒÑ…Ñ‚Ñ†Ð¸Ñ‚Ñ†ÐºÑƒÑ—Ð»Ð¾.

    -

     

    -

    -

    Тіанкуїцтлі

    -

    Група зірок, відома нам Ñк ПлеÑди, Ñимволізувала Ð´Ð»Ñ Ð´Ð°Ð²Ð½Ñ– мекÑиканців Тіанкуїцтлі, тобто «ринок», можливо через те, що на ринку збираєтьÑÑ Ð½Ð°Ñ‚Ð¾Ð²Ð¿ людей. Це ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð·Ð°Ð·Ð²Ð¸Ñ‡Ð°Ð¹ зображалоÑÑ Ð¾Ð´Ð½Ñ–Ñ”ÑŽ людиною або двома людьми у колі з зображеннÑм богів.

    -

    -

    У ÑучаÑній МекÑиці Ñтихійний або вуличний ринок називають ТіангіÑ.

    -

    Читлалтлачтлі

    -

    Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ Ð‘Ð»Ð¸Ð·Ð½ÑŽÐºÑ–Ð² називалоÑÑ Ð§Ð¸Ñ‚Ð»Ð°Ð»Ñ‚Ð»Ð°Ñ‡Ñ‚Ð»Ñ–, що означає «гра у м’Ñч зірками». Грі у м’Ñч надавалоÑÑ Ñ€Ð¸Ñ‚ÑƒÐ°Ð»ÑŒÐ½Ðµ значеннÑ. Ð”Ð»Ñ Ð³Ñ€Ð¸ викориÑтовували м’Ñч з природного каучуку. Казали, що рухові м’Ñча ігровим полем відповідає рух Ð¡Ð¾Ð½Ñ†Ñ Ñ– МіÑÑцÑ.

    -

     

    -

    Зонекуїллі

    -

    Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ ÐœÐ°Ð»Ð¾Ñ— Ведмедиці називали Зонекуїллі що означає «крива нога». Ðазву пов’Ñзано з Ðанауатцином, богом, криві ноги Ñкого було вкрито чирÑками та ранами. За легендою, ці болÑчки він отримав, коли перетворювавÑÑ Ð½Ð° Тонатіу , бога СонцÑ.

    -

    -

    Це ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¼Ð¾Ð¶Ð½Ð° також ототожнювати з Південним ХреÑтом, а зірки, Ñкі його оточують, називали Тецоцомок. Щодо його чаÑтини Саагун повідомлÑÑ”, що вона нагадувала хлібину, Ñпечену у формі літери «S». Цю чаÑтину ацтеки називали зонекуїллі.

    -


    зонекуїллі

    -

    Читлалколотль

    -

    Відповідно до ФлорентійÑького кодекÑу, джерела Саагуна називали групу зірок, відому Ñк Читлалколотль, зіркою Ñкорпіона. Тецоцомок також згадує зірку Ñкорпіона та називає Ñ—Ñ— ЧолотльзаÑк, що означає Â«Ð¾Ð±Ð»Ð¸Ñ‡Ñ‡Ñ Ñкорпіона».

    -

    -Паризький кодекÑ
    -

    У розділі Паризького кодекÑу, Ñкий називають «зодіакальними Ñторінками», також Ñ” Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñкорпіона. У цьому кодекÑÑ– зображено фігури тварин, Ñкі звиÑають з тіла ÐебеÑного Дракона.

    -

     

    -

    ВиÑновки

    -

    Варто зауважити, що Ñ–Ð½Ñ‚ÐµÑ€Ð¿Ñ€ÐµÑ‚Ð°Ñ†Ñ–Ñ Ð´ÐµÑких з цих Ñузір’їв викликає Ñуперечки. Крім того, звичайно ж, були Ñ– інші Ñузір’Ñ. Ми будемо раді будь-Ñким коментарÑм та/або доповненнÑм, метою Ñких Ñ” Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð½Ð°Ð½ÑŒ та Ñуті ацтецької культури.

    -

     

    -

    Зовнішні поÑиланнÑ:

    - -

    ПодÑки

    -
      -
    • Javier Gómez Sandoval
    • -
    • Martha Patricia Rivera
    • -
    • Emilio Ramón Bolaños Guerra
    • -
    • Hector Vega
    • -
    • Rafael Rojas Segoviano
    • -
    • Juan Caballero
    • -
    • SAAGS
    • -
    -

    Ðвтор

    -

    Enrique Gómez Candelario
    - aldeaglobal@gmail.com
    - http://www.wirikuta.org/comala

    - +

    Ðцтецька

    +

    Ð”Ð»Ñ Ð´Ð°Ð²Ð½Ñ–Ñ… ацтеків Ð·Ð½Ð°Ð½Ð½Ñ Ð½Ñ–Ñ‡Ð½Ð¾Ð³Ð¾ неба та руху зірок було важливим Ð´Ð»Ñ +ÑÐºÐ»Ð°Ð´Ð°Ð½Ð½Ñ ÐºÐ°Ð»ÐµÐ½Ð´Ð°Ñ€Ñ Ñ‚Ð° Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²Ð°Ð¶Ð»Ð¸Ð²Ð¸Ñ… дат ÑільÑькогоÑподарÑького та +релігійного циклів. Значну чаÑтину цих знань було втрачено внаÑлідок +Ñ–ÑпанÑького завоюваннÑ, Ñке відбулоÑÑ Ñƒ континентальній Ðмериці у XVI +Ñтолітті.

    +

    Елементи ацтецького ÑуÑпільÑтва, зокрема культура, економіка та наука, +збереглиÑÑ Ñƒ тлакуїлоÑ, Ñлово, що походить від давнього Ñлова мовою +нахуатль тлакуїлоа, що значить Ð·Ð°Ð¿Ð¸Ñ Ð¼Ð°Ð»ÑŽÐ½ÐºÐ°Ð¼Ð¸. Ð¢Ð»Ð°ÐºÑƒÑ—Ð»Ð¾Ñ +зберігалиÑÑ Ñƒ амокÑаллі, тобто «амокÑтлі»: будинку книг Ñ– +каліграфії. Пізніше ці запиÑи назвали кодекÑи, — Ñлово Ñке походить +від латинÑького «codex», тобто «пиÑьмова книга».

    +

    МезоамериканÑькі традиції продовжили Ñвоє Ñ–ÑÐ½ÑƒÐ²Ð°Ð½Ð½Ñ Ñ– піÑÐ»Ñ Ñ–ÑпанÑького +Ð·Ð°Ð²Ð¾ÑŽÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð²Ð´Ñки роботі Ñамих індіанців та деÑких Ñ–ÑпанÑьких +ÑвÑщенників. Створені у цей Ñ‡Ð°Ñ ÐºÐ¾Ð´ÐµÐºÑи називають колоніальними. У них можна +ÑпоÑтерігати певні відмінноÑÑ‚Ñ– через змінену техніку Ð¼Ð°Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° нові +матеріали, імпортовані з Європи. Крім того, у них малюнки ÑупроводжуютьÑÑ +текÑтом з опиÑами Ñ–ÑпанÑькою та нахуатлем.

    +

    +ÐÑтрономічна ÑиÑтема
    +

    Ðа жаль, наші Ð·Ð½Ð°Ð½Ð½Ñ Ñ‰Ð¾Ð´Ð¾ аÑтрономічної ÑиÑтеми ацтеків, Ñкі збереглиÑÑ +завдÑки уцілілим кодекÑам, доволі мізерні. Ðаведене нижче Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ” одним +з небагатьох, на Ñких вказано назви деÑких Ñузір’їв та аÑтрономічних +об’єктів, відомих ацтекам. Ð—Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð²Ð·Ñто з Primeros Memoriales +(першого меморандуму), колоніального мануÑкрипту XVI ÑтоліттÑ, напиÑаного +Бернардіно де Саагуном.

    +

    +

    Тепер наведемо деÑкі поÑÑÐ½ÐµÐ½Ð½Ñ Ñ‰Ð¾Ð´Ð¾ ацтецьких Ñузір’їв, Ñкі можна побачити у +Stellarium.

    +

    Мамалуацтлі

    +

    Давні ацтеки називали поÑÑ ÐžÑ€Ñ–Ð¾Ð½Ð° Мамалуацтлі на чеÑÑ‚ÑŒ дерев’Ñних паличок, +Ñкі викориÑтовували Ð´Ð»Ñ Ð·Ð°Ð¿Ð°Ð»ÐµÐ½Ð½Ñ Ð²Ð¾Ð³Ð½ÑŽ на великому ÑвÑткуванні, Ñке +відбувалоÑÑ ÐºÐ¾Ð¶Ð½Ñ– 52 роки. Це ÑвÑто мало назву тозіух молпіліа, +тобто «зв’Ñзка років», Ñ– збігалоÑÑ Ð· початком нового року, Ñкий називавÑÑ +зіухтцитцкуїло/

    +

     

    +

    +

    Тіанкуїцтлі

    +

    Група зірок, відома нам Ñк ПлеÑди, Ñимволізувала Ð´Ð»Ñ Ð´Ð°Ð²Ð½Ñ– мекÑиканців +Тіанкуїцтлі, тобто «ринок», можливо через те, що на ринку +збираєтьÑÑ Ð½Ð°Ñ‚Ð¾Ð²Ð¿ людей. Це ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð·Ð°Ð·Ð²Ð¸Ñ‡Ð°Ð¹ зображалоÑÑ Ð¾Ð´Ð½Ñ–Ñ”ÑŽ людиною або +двома людьми у колі з зображеннÑм богів.

    +

    +

    У ÑучаÑній МекÑиці Ñтихійний або вуличний ринок називають ТіангіÑ.

    +

    Читлалтлачтлі

    +

    Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ Ð‘Ð»Ð¸Ð·Ð½ÑŽÐºÑ–Ð² називалоÑÑ Ð§Ð¸Ñ‚Ð»Ð°Ð»Ñ‚Ð»Ð°Ñ‡Ñ‚Ð»Ñ–, що означає «гра у м’Ñч +зірками». Грі у м’Ñч надавалоÑÑ Ñ€Ð¸Ñ‚ÑƒÐ°Ð»ÑŒÐ½Ðµ значеннÑ. Ð”Ð»Ñ Ð³Ñ€Ð¸ викориÑтовували +м’Ñч з природного каучуку. Казали, що рухові м’Ñча ігровим полем відповідає +рух Ð¡Ð¾Ð½Ñ†Ñ Ñ– МіÑÑцÑ.

    +

     

    +

    Зонекуїллі

    +

    Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ ÐœÐ°Ð»Ð¾Ñ— Ведмедиці називали Зонекуїллі що означає «крива +нога». Ðазву пов’Ñзано з Ðанауатцином, богом, криві ноги Ñкого було вкрито +чирÑками та ранами. За легендою, ці болÑчки він отримав, коли перетворювавÑÑ +на Тонатіу , бога СонцÑ.

    +

    +

    Це ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¼Ð¾Ð¶Ð½Ð° також ототожнювати з Південним ХреÑтом, а зірки, Ñкі його +оточують, називали Тецоцомок. Щодо його чаÑтини Саагун повідомлÑÑ”, +що вона нагадувала хлібину, Ñпечену у формі літери «S». Цю чаÑтину ацтеки +називали зонекуїллі.

    +


    зонекуїллі

    +

    Читлалколотль

    +

    Відповідно до ФлорентійÑького кодекÑу, джерела Саагуна називали групу зірок, +відому Ñк Читлалколотль, зіркою Ñкорпіона. Тецоцомок також згадує +зірку Ñкорпіона та називає Ñ—Ñ— ЧолотльзаÑк, що означає Â«Ð¾Ð±Ð»Ð¸Ñ‡Ñ‡Ñ +Ñкорпіона».

    +

    +Паризький кодекÑ
    +

    У розділі Паризького кодекÑу, Ñкий називають «зодіакальними Ñторінками», +також Ñ” Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñкорпіона. У цьому кодекÑÑ– зображено фігури тварин, Ñкі +звиÑають з тіла ÐебеÑного Дракона.

    +

     

    +

    ВиÑновки

    +

    Варто зауважити, що Ñ–Ð½Ñ‚ÐµÑ€Ð¿Ñ€ÐµÑ‚Ð°Ñ†Ñ–Ñ Ð´ÐµÑких з цих Ñузір’їв викликає +Ñуперечки. Крім того, звичайно ж, були Ñ– інші Ñузір’Ñ. Ми будемо раді +будь-Ñким коментарÑм та/або доповненнÑм, метою Ñких Ñ” Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð½Ð°Ð½ÑŒ та +Ñуті ацтецької культури.

    +

     

    +

    Зовнішні поÑиланнÑ:

    + +

    ПодÑки

    +
      +
    • Javier Gómez Sandoval
    • +
    • Martha Patricia Rivera
    • +
    • Emilio Ramón Bolaños Guerra
    • +
    • Hector Vega
    • +
    • Rafael Rojas Segoviano
    • +
    • Juan Caballero
    • +
    • SAAGS
    • +
    +

    Ðвтор

    +

    Enrique Gómez Candelario
    + aldeaglobal@gmail.com
    + http://www.wirikuta.org/comala

    +
    Переклад англійÑькою:
    Rafael Rojas Segoviano
    \ No newline at end of file diff -Nru stellarium-0.12.1/skycultures/chinese/CMakeLists.txt stellarium-0.12.4/skycultures/chinese/CMakeLists.txt --- stellarium-0.12.1/skycultures/chinese/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/chinese/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/chinese) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/chinese ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/chinese) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/chinese - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/chinese -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/chinese - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/chinese/description.en.utf8 stellarium-0.12.4/skycultures/chinese/description.en.utf8 --- stellarium-0.12.1/skycultures/chinese/description.en.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/chinese/description.en.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -6,7 +6,7 @@

    Xingguans

    The major difference between a Xingguan and a constellation is that while constellations refer to a definite area upon the celestial sphere, a Xingguan only refers to a pattern of stars. The closest term in Western astronomy might be an asterism, though unlike asterisms, Xingguans have an official status.

    -

    The number of Xingguan varies through different eras in Chinese history; new Xingguans were made when fainter stars were observed, and some old Xingguans were abolished when the pattern could no longer be observed (mainly due to proper motions). Xingguans near southern celestial pole were created following the introdution of Western constellations into China by Catholic missionaries.

    +

    The number of Xingguan varies through different eras in Chinese history; new Xingguans were made when fainter stars were observed, and some old Xingguans were abolished when the pattern could no longer be observed (mainly due to proper motions). Xingguans near southern celestial pole were created following the introduction of Western constellations into China by Catholic missionaries.

    Yixiangkaocheng has 300 Xingguans in total. diff -Nru stellarium-0.12.1/skycultures/chinese/description.uk.utf8 stellarium-0.12.4/skycultures/chinese/description.uk.utf8 --- stellarium-0.12.1/skycultures/chinese/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/chinese/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,38 +1,75 @@

    КитайÑька

    -

    ÐадбаннÑм китайÑької культури були найточніші результати ÑпоÑÑ‚ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð° небом до XVIII ÑтоліттÑ, коли європейÑькими аÑтрономами було зроблено визначні Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ð·Ð°Ð²Ð´Ñки заÑтоÑуванню наукового методу.

    - -

    За допомогою поточної верÑÑ–Ñ— Stellarium ви можете ознайомитиÑÑ Ð· приблизно третиною наборів Ñіньгуань (китайÑькою: 星官; транÑÐ»Ñ–Ñ‚ÐµÑ€Ð°Ñ†Ñ–Ñ Ð»Ð°Ñ‚Ð¸Ð½ÐºÐ¾ÑŽ: xÄ«ngguÄn), без китайÑьких назв зірок. Проектом ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÐ¸Ñ‚Ð°Ð¹Ñької карти неба керує G.S.K. Lee. Зараз ведетьÑÑ Ñ€Ð¾Ð±Ð¾Ñ‚Ð° зі ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²Ð½Ð¾Ñ— китайÑької картини зорÑного неба у Stellarium на оÑнові даних з ЇÑіанькаочен (китайÑькою: 儀象考æˆ; транÑÐ»Ñ–Ñ‚ÐµÑ€Ð°Ñ†Ñ–Ñ Ð»Ð°Ñ‚Ð¸Ð½ÐºÐ¾ÑŽ: yíxiàngkÇŽochéng), імперÑького трактату з аÑтрономії, роботу над Ñким було завершено у 1756 році. Цей трактат Ñ” найповнішим довідником щодо традиційних китайÑьких Ñіньгуанів та назв зірок відомим нашим ÑучаÑникам.

    +

    ÐадбаннÑм китайÑької культури були найточніші результати ÑпоÑÑ‚ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð° +небом до XVIII ÑтоліттÑ, коли європейÑькими аÑтрономами було зроблено +визначні Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ð·Ð°Ð²Ð´Ñки заÑтоÑуванню наукового методу.

    + +

    За допомогою поточної верÑÑ–Ñ— Stellarium ви можете ознайомитиÑÑ Ð· приблизно +третиною наборів Ñіньгуань (китайÑькою: 星官; транÑÐ»Ñ–Ñ‚ÐµÑ€Ð°Ñ†Ñ–Ñ Ð»Ð°Ñ‚Ð¸Ð½ÐºÐ¾ÑŽ: +xÄ«ngguÄn), без китайÑьких назв зірок. Проектом ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÐ¸Ñ‚Ð°Ð¹Ñької карти +неба керує G.S.K. Lee. Зараз ведетьÑÑ Ñ€Ð¾Ð±Ð¾Ñ‚Ð° зі ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²Ð½Ð¾Ñ— китайÑької +картини зорÑного неба у Stellarium на оÑнові даних з ЇÑіанькаочен +(китайÑькою: 儀象考æˆ; транÑÐ»Ñ–Ñ‚ÐµÑ€Ð°Ñ†Ñ–Ñ Ð»Ð°Ñ‚Ð¸Ð½ÐºÐ¾ÑŽ: yíxiàngkÇŽochéng), імперÑького +трактату з аÑтрономії, роботу над Ñким було завершено у 1756 році. Цей +трактат Ñ” найповнішим довідником щодо традиційних китайÑьких Ñіньгуанів та +назв зірок, відомим нашим ÑучаÑникам.

    Сіньгуані

    -

    ОÑновною відмінніÑÑ‚ÑŽ між ÑіньгуанÑми та Ñузір’Ñми Ñ” те, що Ñузір’Ñм відповідає певна ділÑнка небеÑної Ñфери, а Ñіньгуань — це лише візерунок з зірок. Ðайближчим за значеннÑм терміном західної аÑтрономії Ñ” «аÑтеризм», але на відміну від аÑтеризмів Ñінгуані мають офіційний ÑтатуÑ.

    - -

    У різні чаÑи китайÑької Ñ–Ñторії кількіÑÑ‚ÑŒ Ñінгуанів була різною. СпоÑÑ‚ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð° тьмÑними зірками призводили до Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ð½Ð¾Ð²Ð¸Ñ… Ñінгуанів, деÑкі Ñтарі Ñінгуані вилучалиÑÑ Ð· переліку, Ñкщо їхні візерунки розпадалиÑÑ (в оÑновному через влаÑний рух зірок). Сінгуані поблизу південного небеÑного полюÑа було Ñтворено з проникненнÑм західних знань внаÑлідок міÑіонерÑької діÑльноÑÑ‚Ñ– католицької церкви.

    +

    ОÑновною відмінніÑÑ‚ÑŽ між ÑіньгуанÑми та Ñузір’Ñми Ñ” те, що Ñузір’Ñм +відповідає певна ділÑнка небеÑної Ñфери, а Ñіньгуань — це лише візерунок з +зірок. Ðайближчим за значеннÑм терміном західної аÑтрономії Ñ” «аÑтеризм», +але на відміну від аÑтеризмів Ñінгуані мають офіційний ÑтатуÑ.

    + +

    У різні чаÑи китайÑької Ñ–Ñторії кількіÑÑ‚ÑŒ Ñінгуанів була +різною. СпоÑÑ‚ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð° тьмÑними зірками призводили до Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ð½Ð¾Ð²Ð¸Ñ… +Ñінгуанів, деÑкі Ñтарі Ñінгуані вилучалиÑÑ Ð· переліку, Ñкщо їхні візерунки +розпадалиÑÑ (в оÑновному через влаÑний рух зірок). Сінгуані поблизу +південного небеÑного полюÑа було Ñтворено з проникненнÑм західних знань +внаÑлідок міÑіонерÑької діÑльноÑÑ‚Ñ– католицької церкви.

    ЇÑіанькаочен налічує 300 Ñіньгуанів. -

    У ÑучаÑній аÑтрономії Китаю Ñіньгуані вже не викориÑтовуютьÑÑ, Ñ—Ñ… замінено на європейÑькі Ñузір’Ñ.

    +

    У ÑучаÑній аÑтрономії Китаю Ñіньгуані вже не викориÑтовуютьÑÑ, Ñ—Ñ… замінено +на європейÑькі Ñузір’Ñ.

    Ðазви зірок

    -

    Традиційна китайÑька ÑиÑтематика назв зірок передбачала Ð¿Ð¾Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð½Ð°Ð·Ð²Ð¸ ÑÑ–Ð½ÑŒÐ³ÑƒÐ°Ð½Ñ Ð·Ñ–Ñ€ÐºÐ¸ з номером, Ñкий, зазвичай, відповідав розташуванню зірки у Ñінгуані. Відкриті у епоху ЇÑіанькаочен тьмÑніші зірки називалиÑÑ Ñ‚Ð°ÐºÐ¸Ð¼ чином: до назви найближчого до зірки ÑÑ–Ð½ÑŒÐ³ÑƒÐ°Ð½Ñ Ð´Ð¾Ð´Ð°Ð²Ð°Ð²ÑÑ Ð¿Ð¾Ñ€Ñдковий номер, відповідно до кількоÑÑ‚Ñ– зірок у новому Ñінгуані, Ñкий при цьому утворювавÑÑ. +

    Традиційна китайÑька ÑиÑтематика назв зірок передбачала Ð¿Ð¾Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð½Ð°Ð·Ð²Ð¸ +ÑÑ–Ð½ÑŒÐ³ÑƒÐ°Ð½Ñ Ð·Ñ–Ñ€ÐºÐ¸ з номером, Ñкий, зазвичай, відповідав розташуванню зірки у +Ñінгуані. Відкриті у епоху ЇÑіанькаочен тьмÑніші зірки називалиÑÑ Ñ‚Ð°ÐºÐ¸Ð¼ +чином: до назви найближчого до зірки ÑÑ–Ð½ÑŒÐ³ÑƒÐ°Ð½Ñ Ð´Ð¾Ð´Ð°Ð²Ð°Ð²ÑÑ Ð¿Ð¾Ñ€Ñдковий номер, +відповідно до кількоÑÑ‚Ñ– зірок у новому Ñінгуані, Ñкий при цьому утворювавÑÑ. -

    Загалом ЇÑіанькаочен налічує 3083 назв зірок Ñіньгуанів. Повний ÑпиÑок цих 3083 зірок з прив’Ñзкою до ÑучаÑних зорÑних каталогів ще не Ñтворено.

    +

    Загалом ЇÑіанькаочен налічує 3083 назв зірок Ñіньгуанів. Повний ÑпиÑок цих +3083 зірок з прив’Ñзкою до ÑучаÑних зорÑних каталогів ще не Ñтворено.

    -

    Ðа відміну від Ñінгуанів, традиційні китайÑькі назви зірок вÑе ще широко викориÑтовуютьÑÑ, навіть ширше за Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð‘Ð°Ñ”Ñ€Ð° та ФлемÑтіда.

    +

    Ðа відміну від Ñінгуанів, традиційні китайÑькі назви зірок вÑе ще широко +викориÑтовуютьÑÑ, навіть ширше за Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð‘Ð°Ñ”Ñ€Ð° та ФлемÑтіда.

    Зовнішні поÑиланнÑ:

    Ðвтор

    -

    ЗапиÑи цієї культури неба було Ñтворено Karrie Berglund з Digitalis Education Solutions, Inc. на оÑнові ЗорÑні карти коÑмічного музею Гонконгу.

    +

    ЗапиÑи цієї картини зорÑного неба було Ñтворено Karrie Berglund з +Digitalis Education Solutions, Inc. на оÑнові ЗорÑні +карти коÑмічного музею Гонконгу.

    diff -Nru stellarium-0.12.1/skycultures/chinese/star_names.fab stellarium-0.12.4/skycultures/chinese/star_names.fab --- stellarium-0.12.1/skycultures/chinese/star_names.fab 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/chinese/star_names.fab 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,46 @@ + 90422|_("Softshell Turtle I") + 44382|_("Flying Fish I") + 34473|_("Flying Fish II") + 41312|_("Flying Fish III") + 40817|_("Flying Fish IV") + 35228|_("Flying Fish V") + 37504|_("Flying Fish VI") + 78933|_("West Gouqian Star") +114996|_("Crane V") + 86670|_("Six Jias VI") + 8796|_("Tianhunxinanxing") + 41704|_("Inner Steps I") + 45333|_("Inner Steps II") + 43903|_("Inner Steps III") + 46733|_("Inner Steps IV") + 43644|_("Inner Steps V") + 45455|_("Inner Steps VI") +110130|_("Beak I") +110838|_("Beak II") +118092|_("Beak III") + 2578|_("Beak IV") + 3330|_("Beak V") + 1599|_("Beak VI") +118322|_("Beak VII") + 74946|_("Triangle I") + 77952|_("Triangle II") + 82273|_("Shaofu") + 10064|_("Great Southern Star") + 10670|_("Celestial General X") + 10644|_("Celestial General XI") + 53295|_("Celestial Prison I") + 56034|_("Celestial Prison II") + 53721|_("Celestial Prison III") + 56148|_("Celestial Prison IV") + 53838|_("Celestial Prison V") + 55560|_("Celestial Prison VI") + 82514|_("Tail I") + 82396|_("Tail II") + 82671|_("Tail III") + 82729|_("Tail III") + 84143|_("Tail IV") + 86228|_("Tail V") + 87073|_("Tail VI") + 86670|_("Tail VII") + 85927|_("Tail VIII") + 85696|_("Tail IX") diff -Nru stellarium-0.12.1/skycultures/egyptian/CMakeLists.txt stellarium-0.12.4/skycultures/egyptian/CMakeLists.txt --- stellarium-0.12.1/skycultures/egyptian/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/egyptian/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/egyptian) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/egyptian ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/egyptian) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/egyptian - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/egyptian -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/egyptian - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/egyptian/description.bs.utf8 stellarium-0.12.4/skycultures/egyptian/description.bs.utf8 --- stellarium-0.12.1/skycultures/egyptian/description.bs.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/egyptian/description.bs.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,18 @@ +

    Egipatski

    +

    Kasna egipatska astronomija/astrologija prati grÄko/rimsku kulturu. Vjerovanje da zvijezde utiÄu na ljudsku sudbinu nije doprlo do Egipta sve do ptolomejskog perioda. Hram egipatske boginje Hathor u Denderu datira iz ptolomejskog perioda, najvjerovatnije iz prvog stoljeća prije nove ere. Tu se nalazi prekrasna ilustracija neba koja podržava ovu pretpostavku.

    +

    Ipak, koriÅ¡teni su razliÄiti nazivi za odreÄ‘ena sazviježđa. Naprimjer, Rak je predstavljen kao kornjaÅ¡ (Scarab Beetle). Lav u blizini Vage (Å¡to nije Lav u astrologiji) je sazviježđe Kentaur [1].

    +

    Ranija sazviježđa su problematiÄnija, ali postoje indikacije da su neki moderni horoskopski znakovi ustvari veoma stari [2], iako su znaÄajno izmijenjeni tokom vremena [3].

    + +

    Dodatni linkovi

    + + +

    Autor

    +

    Ove slike sazviježđa su rezultat rada Karrie Berglund iz firme Digitalis Education Solutions, Inc. Rad je zasnovan na Älanku "A Map of the Ancient Egyptian Firmament†Äiji je autor Juan Antonio Belmonte.

    + diff -Nru stellarium-0.12.1/skycultures/egyptian/description.uk.utf8 stellarium-0.12.4/skycultures/egyptian/description.uk.utf8 --- stellarium-0.12.1/skycultures/egyptian/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/egyptian/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,18 +1,37 @@

    ЄгипетÑька

    -

    ПізньоєгипетÑька аÑÑ‚Ñ€Ð¾Ð½Ð¾Ð¼Ñ–Ñ Ñ– аÑÑ‚Ñ€Ð¾Ð»Ð¾Ð³Ñ–Ñ ÐºÐ¾Ñ€Ð¸ÑтувалаÑÑ Ð·Ð´Ð¾Ð±ÑƒÑ‚ÐºÐ°Ð¼Ð¸ греко-римÑької культури. Віра у те, що зірки можуть впливати на долю людини, ймовірно, прийшла до Єгипту у період еллінізму. У храмі Хатор у Дендері, Ñкий було побудовано у еллініÑтичні чаÑи, ймовірно, у першому Ñтолітті до нашої ери, можна знайти чудову карту зорÑного неба, Ñка підтверджує цю думку.

    -

    ЄгипетÑька картина неба має певні відмінноÑÑ‚Ñ–. Ðаприклад, міÑце Рака у переліку Ñузір’їв займає Жук-Ñкарабей. Фігура Лева поблизу Терезів (не зодіакальне ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð›ÐµÐ²Ð°) — це єгипетÑька ÑÑƒÐ·Ñ–Ñ€â€™Ñ ÐšÐµÐ½Ñ‚Ð°Ð²Ñ€Ð° [1].

    -

    Ð’Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ€Ð°Ð½Ð½Ñ–Ñ… форм Ñузір’їв Ñ” доволі проблематичним, але Ñ–Ñнують Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ñ‚Ð¾Ð³Ð¾, що деÑкі з ÑучаÑних знаків Зодіаку Ñ” доволі давніми [2], хоча інші ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð·Ð°Ð·Ð½Ð°Ð²Ð°Ð»Ð¸ Ñуттєвих змін [3].

    +

    ПізньоєгипетÑька аÑÑ‚Ñ€Ð¾Ð½Ð¾Ð¼Ñ–Ñ Ñ– аÑÑ‚Ñ€Ð¾Ð»Ð¾Ð³Ñ–Ñ ÐºÐ¾Ñ€Ð¸ÑтувалаÑÑ Ð·Ð´Ð¾Ð±ÑƒÑ‚ÐºÐ°Ð¼Ð¸ +греко-римÑької культури. Віра у те, що зірки можуть впливати на долю людини, +ймовірно, прийшла до Єгипту у період еллінізму. У храмі Хатор у Дендері, +Ñкий було побудовано у еллініÑтичні чаÑи, ймовірно, у першому Ñтолітті до +нашої ери, можна знайти чудову карту зорÑного неба, Ñка підтверджує цю +думку.

    +

    ЄгипетÑька картина неба має певні відмінноÑÑ‚Ñ–. Ðаприклад, міÑце Рака у +переліку Ñузір’їв займає Жук-Ñкарабей. Фігура Лева поблизу Терезів (не +зодіакальне ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð›ÐµÐ²Ð°) — це єгипетÑька ÑÑƒÐ·Ñ–Ñ€â€™Ñ ÐšÐµÐ½Ñ‚Ð°Ð²Ñ€Ð° [1].

    +

    Ð’Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ€Ð°Ð½Ð½Ñ–Ñ… форм Ñузір’їв Ñ” доволі проблематичним, але Ñ–Ñнують +Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ñ‚Ð¾Ð³Ð¾, що деÑкі з ÑучаÑних знаків Зодіаку Ñ” доволі давніми [2], +хоча інші ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð·Ð°Ð·Ð½Ð°Ð²Ð°Ð»Ð¸ Ñуттєвих змін [3].

    Зовнішні поÑиланнÑ:

    Ðвтор

    -

    ЗапиÑи цієї культури неба було Ñтворено Karrie Berglund Digitalis Education Solutions, Inc. на оÑнові твору «A Map of the Ancient Egyptian Firmament», автором Ñкого Ñ” Хуан Ðнтоніо Бельмонте (Juan Antonio Belmonte).

    +

    ЗапиÑи цієї картини зорÑного неба було Ñтворено Karrie Berglund +Digitalis Education Solutions, Inc. на оÑнові твору «A Map of the Ancient +Egyptian Firmament», автором Ñкого Ñ” Хуан Ðнтоніо Бельмонте (Juan Antonio +Belmonte).

    diff -Nru stellarium-0.12.1/skycultures/indian/CMakeLists.txt stellarium-0.12.4/skycultures/indian/CMakeLists.txt --- stellarium-0.12.1/skycultures/indian/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,12 @@ + +########### install files ############### + +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/indian ) + +# install constellations data, artwork and descriptions +INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/indian + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/aquarius.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/aquarius.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/aries.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/aries.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/cancer.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/cancer.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/canis-major.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/canis-major.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/capricornus.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/capricornus.png differ diff -Nru stellarium-0.12.1/skycultures/indian/constellation_names.eng.fab stellarium-0.12.4/skycultures/indian/constellation_names.eng.fab --- stellarium-0.12.1/skycultures/indian/constellation_names.eng.fab 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/constellation_names.eng.fab 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,43 @@ +Lib "Tulaa Rashi" _("(Tulaa)") +Ari "Mesh Rashi" _("(Mesh)") +Cnc "Karkat Rashi" _("(Karkat)") +Cap "Makar Rashi" _("(Makar)") +Gem "Mithun Rashi" _("(Mithun)") +Leo "Simha Rashi" _("(Simha)") +Psc "Meen Rashi" _("(Meen)") +Sgr "Dhanus Rashi" _("(Dhanus)") +Sco "Brischik Rashi" _("(Brischik)") +Tau "Brisha Rashi" _("(Brisha)") +Aqr "Kumbha Rashi" _("(Kumbha)") +Vir "Kanya Rashi" _("(Kanya)") +Ori "Orion" _("Kalpurush") +Cma "Canis Major" _("Brihaat Swaan") +Uma "Ursa Major" _("Saptrshi") +N01 "Aswini" _("[Aswini]") +N02 "Bharani" _("[Bharani]") +N03 "Krithika" _("[Krithika]") +N04 "Rohini" _("[Rohini]") +N05 "Mrigasira" _("[Mrigasira]") +N06 "Ardhra" _("[Ardhra]") +N07 "Punarvasu" _("[Punarvasu]") +N08 "Pushya" _("[Pushya]") +N09 "Aslesha" _("[Aslesha]") +N10 "Magha" _("[Magha]") +N11 "Purva Phalguni" _("[Purva Phalguni]") +N12 "Uttara Phalguni" _("[Uttara Phalguni]") +N13 "Hasta" _("[Hasta]") +N14 "Chitra" _("[Chitra]") +N15 "Swati" _("[Swati]") +N16 "Visakha" _("[Visakha]") +N17 "Anuradha" _("[Anuradha]") +N18 "Jyeshta" _("[Jyeshta]") +N19 "Moola" _("[Moola]") +N20 "Purva AshaRa" _("[Purva AshaRa]") +N21 "Uttara AshaRa" _("[Uttara AshaRa]") +N22 "Shravana" _("[Shravana]") +N23 "Dhanista" _("[Dhanista]") +N24 "Shatabhisha" _("[Shatabhisha]") +N25 "Purva Bhadrapada" _("[Purva Bhadrapada]") +N26 "Uttara Bhadrapada" _("[Uttara Bhadrapada]") +N27 "Revathi" _("[Revathi]") +001 "Abhijit" _("{Abhijit}") diff -Nru stellarium-0.12.1/skycultures/indian/constellationsart.fab stellarium-0.12.4/skycultures/indian/constellationsart.fab --- stellarium-0.12.1/skycultures/indian/constellationsart.fab 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/constellationsart.fab 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,14 @@ +Aqr aquarius.png 144 464 115438 179 98 109074 465 49 102618 +Ari aries.png 12 130 13209 58 206 13914 210 47 8832 +Cnc cancer.png 29 166 44066 101 255 40526 206 91 40843 +Cap capricornus.png 15 436 107556 403 7 100064 460 438 102978 +CMa canis-major.png 21 347 35904 321 24 33160 318 492 30122 +Gem gemini.png 14 81 37740 117 252 32362 249 165 28734 +Leo leo.png 69 411 57632 383 186 49669 321 32 47908 +Lib libra.png 41 27 74785 58 170 77853 224 107 73714 +Ori orion.png 59 11 27913 329 477 27366 421 91 22449 +Psc pisces.png 24 104 4889 111 489 9487 481 155 114971 +Sco scorpius.png 447 29 78820 62 365 85927 217 462 82729 +Sgr sagittarius.png 96 82 95168 307 492 95294 506 100 87072 +Tau taurus.png 13 92 26451 399 438 15900 382 192 17999 +Vir virgo.png 65 389 72220 454 57 57380 338 382 65474 diff -Nru stellarium-0.12.1/skycultures/indian/constellationship.fab stellarium-0.12.4/skycultures/indian/constellationship.fab --- stellarium-0.12.1/skycultures/indian/constellationship.fab 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/constellationship.fab 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,44 @@ +Lib 11 74785 76333 76333 77853 77853 78207 78207 74785 74785 72622 72622 73714 73714 76600 76600 76470 76470 73714 73714 74392 74392 74785 +Ari 10 13209 9884 9884 8903 8903 9153 9153 9884 13209 13061 13209 13914 13914 14838 13914 10306 10306 9884 10306 8832 +Cnc 5 43103 42806 42806 40843 42806 42911 42911 44066 40526 42911 +Cap 9 100064 100345 100345 104139 104139 105515 105515 106985 106985 107556 105515 105881 105881 104139 100345 102485 104139 102978 +Gem 16 31681 34088 34088 35550 35550 35350 35350 32362 35550 36962 36962 37740 36962 37826 36962 36046 36046 34693 34693 36850 34693 33018 34693 32246 32246 30883 32246 30343 30343 29655 29655 28734 +Leo 12 55434 55642 55642 54879 54879 49669 49669 49583 49583 50583 50583 54872 54872 57632 50583 50335 50335 48455 48455 47908 54872 54879 49669 47508 +Psc 19 4889 5742 4889 6193 6193 5742 5742 7097 7097 8198 8198 9487 9487 8833 8833 7884 7884 7007 7007 4906 4906 3760 3760 1645 1645 118268 118268 116771 116771 116928 116928 115738 115738 114971 114971 115830 115830 116771 +Sgr 13 94141 93683 93683 93085 93683 93864 93864 92855 93864 93506 89931 93506 92855 92041 92041 89931 89931 88635 89642 90185 90185 89931 89931 90496 90496 89341 +Sco 14 80112 80763 80763 81266 78401 80112 80112 80763 80763 81266 81266 82396 82396 82545 82545 82729 82729 84143 84143 86228 86228 87073 87073 86670 86670 85927 85927 85696 +Tau 15 25428 21881 21881 20889 20889 26451 20205 20455 20205 18724 18724 16369 21421 20889 21421 20894 20894 20205 20889 20648 20648 20455 20455 17847 17847 16369 18907 18724 16369 15900 +Aqr 12 113136 112716 112716 112961 112961 111497 111497 110960 110960 110395 110395 109074 109074 106278 106278 102618 106278 104459 106278 109139 110003 109074 110003 110395 +Vir 12 57380 60030 60030 61941 61941 65474 65474 69427 69427 69701 69701 71957 65474 66249 66249 68520 68520 72220 66249 63090 63090 63608 63090 61941 +Ori 23 26727 26311 26311 25930 29038 27913 28614 27989 27989 26727 26727 27366 24436 24674 24674 25281 25281 25930 25930 25336 25336 26207 26207 27989 25336 22449 22449 22549 22549 22730 22730 23123 22449 22509 22509 22845 29038 28614 30419 29038 26727 26549 26549 26237 26237 26241 +CMa 17 33160 34045 34045 33347 33347 32349 32349 33977 33977 34444 34444 35037 35037 35904 33579 33856 33856 34444 33152 31592 31592 31416 31592 30324 31592 32349 33579 32759 30122 33579 33347 33160 33152 33579 +UMa 6 54061 53910 53910 58001 58001 59774 59774 62956 62956 65378 65378 67301 +N01 1 8832 8903 +N02 2 12719 13061 13061 13209 +N03 6 17851 17847 17847 17702 17702 17608 17608 17499 17499 17531 17531 17573 17573 17579 +N04 1 21421 21421 +N05 2 26207 26176 26176 26366 +N06 1 27989 27989 +N07 1 36850 37826 +N08 1 42911 41822 +N09 4 43109 42313 42313 42402 42402 42799 42799 43234 +N10 1 49669 49669 +N11 1 54872 54879 +N12 1 57632 57632 +N13 5 60965 61359 60965 59803 59803 59316 59316 59199 59316 61359 +N14 1 65474 65474 +N15 1 69673 69673 +N16 3 76333 74785 74785 72622 74785 74392 +N17 2 78820 78401 78401 78265 +N18 2 80112 80763 80763 81266 +N19 8 82396 82545 82545 82729 82729 84143 84143 86228 86228 87073 87073 86670 86670 85927 85927 85696 +N20 1 90185 89931 +N21 1 92855 93506 +N22 2 98036 97649 97649 97278 +N23 1 102281 101958 +N24 1 110395 110395 +N25 1 113881 113963 +N26 1 1067 667 +N27 1 5737 5737 +001 2 91926 91262 91262 91971 + diff -Nru stellarium-0.12.1/skycultures/indian/description.ar.utf8 stellarium-0.12.4/skycultures/indian/description.ar.utf8 --- stellarium-0.12.1/skycultures/indian/description.ar.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/description.ar.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,24 @@ + +

    الهندي الÙيدي

    +

    الثقاÙØ© الÙلكية الهندية الÙيدية مع بعض الكوكبات ذات العلاقة بالناكشاترا

    + +

    راشي - Rashi

    +

    دائرة البروج النجمية - عبارة عن حزام 360 درجة مثل دائرة البروج الاستوائية، مقسم غلى 12 قسم، كل قسم 30 درجة، ويسمّى القسم راشي أو علامة. حين عرض النجوم ÙÙŠ هذه الثقاÙØ© تجدأسماء هذه العلامات بين قوسين ( ) على شاشة البرنامج

    + +

    ناكشاترا - Nakshatra

    +

    هذه العلامات هي مواقع القمر خلال الشهر القمري ÙÙŠ Ùلك البهارتيا التقليدي، مبنياً على 28ØŒ وأحياناً 27 مجموعة نجمية صغيرة موجودة ÙÙŠ Atharvaveda ÙˆÙÙŠ Shatapatha Brahmana أيضاً. +لذلك، على شاشة البرنامج، حين عرض النجوم ÙÙŠ هذه الثقاÙØ© تجد Abhijit' Nkshatra' مميزة بـ { } وتجد أسماءالسبعة وعشرون الأخرى مميزة بـ [ ].

    + +

    ÙÙŠ الأساطير، الناكشارتا هن بنات داكشا براجيباتي السبعة والعشرون وزوجات شاندرا

    + +

    ليس هناك اشكال تخيلية للناكشارتا

    + +

    المؤلÙ

    +

    Tanmoy Saha

    + +

    روابط خارجية

    + + diff -Nru stellarium-0.12.1/skycultures/indian/description.bs.utf8 stellarium-0.12.4/skycultures/indian/description.bs.utf8 --- stellarium-0.12.1/skycultures/indian/description.bs.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/description.bs.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,17 @@ +

    Indijski

    +

    VediÄka (Vedic) sazviježđa sa nekim uobiÄajenim sazviježđima povezanim sa Nakshatraom.

    + +

    Rashi

    +

    Zvjezdani horoskop je zamišljeni pojas od 360 stepeni (kao što je tropski horoskop) podijeljen u 12 jednakih dijelova. Svaka dvanaestina (30 stepeni) naziva se znak ili rashi. Nazivi znakova prikazani su u ().

    + +

    Nakshatra

    +

    Ovo su pozicije Mjeseca dobijene na osnovu tradicionalne bhartiya astronomije i trajanja lunarnog mjeseca, a zasnovani su na listi od 28 (ponekad i 27) asterizama iz Atharvavedae i iz Shatapatha Brahmana. ZnaÄi, 'Abhijit' Nakshatra je u {} i svih ostalih 27 imena su prikazani u [].

    +

    U mitologiji se smatra da su Nakshatrae ustvari 27 kćerki Daksha Prajipatija i Chandre, boga mjeseca.

    + +

    Autor

    +

    Tanmoy Saha + +

    Dodatni linkovi

    + diff -Nru stellarium-0.12.1/skycultures/indian/description.en.utf8 stellarium-0.12.4/skycultures/indian/description.en.utf8 --- stellarium-0.12.1/skycultures/indian/description.en.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/description.en.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,19 @@ +

    Indian Vedic

    +

    Vedic Culture with some commonly known constellation related to Nakshatra.

    + +

    Rashi

    +

    The sidereal zodiac is an imaginary belt of 360 degrees (like the tropical zodiac), divided into 12 equal parts. Each twelfth part (of 30 degrees) is called a sign or rashi. Their names are shown in ().

    + +

    Nakshatra

    +

    These are mark Positions of the Moon during the Lunar month and traditional bhartiya astronomy, based on a list of 28 (some time 27) asterisms found in the Atharvaveda and also in the Shatapatha Brahmana. So 'Abhijit' Nakshatra is in {} and all other 27 names are shown in [].

    +

    In mythology the Nakshatras are considered to be the 27 daughters of Daksha Prajipati and wives of Chandra, the god of moon.

    +

    Nakshatras have no sky art.

    + +

    Author

    +

    Tanmoy Saha

    + +

    External links

    + diff -Nru stellarium-0.12.1/skycultures/indian/description.fr.utf8 stellarium-0.12.4/skycultures/indian/description.fr.utf8 --- stellarium-0.12.1/skycultures/indian/description.fr.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/description.fr.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,38 @@ + +

    + Culture védique indienne +

    +

    + Culture védique indienne avec quelques constellations communément connues en lien avec les Nakshatras. +

    +

    + Rashi +

    +

    + Le zodiaque sidéral est, comme le zodiaque tropique, une bande imaginaire 360° divisée en 12 parties égales. Chacun des douzièmes de cette bande de 30° est appelé un signe ou rashi. Leurs noms sont affichés entre parenthèses. +

    +

    + Nakshatra +

    +

    + Les Nakshatras sont des secteurs le long de l'écliptique. Dans l'astronomie traditionnelle bhartiya, elles sont associées à une liste de 28 (parfois 27) astérismes cités dans Atharvaveda et dans le Shatapatha Brahmana. Ainsi, Abhijit Nakshatra est indiqué entre accolades {} et les 27 autres noms sont affichés entre crochets []. +

    +

    + Dans la mythologie, les Nakshatras sont considérées comme les 27 filles de Daksha Prajipati et les femmes de Chandra, le dieu de la Lune. +

    +

    + Les Nakshatras n'ont pas de représentation artistique. +

    +

    + Auteur +

    +

    + Tanmoy Saha +

    +

    + Liens externes +

    + diff -Nru stellarium-0.12.1/skycultures/indian/description.pt_BR.utf8 stellarium-0.12.4/skycultures/indian/description.pt_BR.utf8 --- stellarium-0.12.1/skycultures/indian/description.pt_BR.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/description.pt_BR.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,19 @@ +

    Cultura do Céu Indiana

    + +

    A cultura védica apresenta algumas constelações comumente conhecidas relacionadas à Nakshatra.

    + +

    Rashi

    +

    O zodíaco sideral é um cinturão imaginário de 360 graus (como o zodíaco tropical), dividido em doze partes iguais. Cada duodécima parte (de 30 graus) é denominada sinal ou rashi. Os seus nomes são mostrados entre parênteses.

    + +

    Nakshatra

    +

    Estas são posições de marcação da Lua durante o mês lunar e a tradicional astronomia Bhartiya, com base em uma lista de 28 (às vezes 27) asterismos encontrados no Atharvaveda e também no Shatapatha Brahmana. Assim, o Nakshatra “Abhijit†está entre chaves e todos os outros vinte e sete nomes são mostrados entre colchetes.

    +

    Na mitologia, os Nakshatras são considerados as 27 filhas de Daksha Prajipati e as esposas de Chandra, o deus da lua.

    + +

    Linques externos

    +
      +
    • Constellation Artigo sobre constelações na Wikipedia (em inglês).
    • +
    • Nakshatra Artigo sobre os Nakshatras na Wikipedia (em inglês).
    • +
    + +

    Autor

    +

    Esta cultura do céu foi contribuída por Tanmoy Saha.

    \ No newline at end of file diff -Nru stellarium-0.12.1/skycultures/indian/description.ru.utf8 stellarium-0.12.4/skycultures/indian/description.ru.utf8 --- stellarium-0.12.1/skycultures/indian/description.ru.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/description.ru.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,23 @@ +

    ИндийÑÐºÐ°Ñ Ð²ÐµÐ´Ð¸Ñ‡ÐµÑкаÑ

    +

    ВедичеÑÐºÐ°Ñ ÐºÑƒÐ»ÑŒÑ‚ÑƒÑ€Ð° Ñ Ð½ÐµÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ð¼Ð¸ извеÑтными ÑозвездиÑми ÑвÑзана Ñ Ðакшатра.

    + +

    Раши

    +

    Звёздным зодиаком ÑвлÑетÑÑ Ð¼Ð½Ð¸Ð¼Ñ‹Ð¹ поÑÑ Ð² 360 градуÑов (как и тропичеÑкий зодиак), +разделенный на 12 равных чаÑтей. ÐšÐ°Ð¶Ð´Ð°Ñ 12-Ñ Ñ‡Ð°ÑÑ‚ÑŒ (учаÑток в 30 градуÑов) называетÑÑ +знак или Раши. Их Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¸Ð²ÐµÐ´ÐµÐ½Ñ‹ в круглых Ñкобках — ().

    + +

    Ðакшатра

    +

    Это знак раÑÐ¿Ð¾Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð›ÑƒÐ½Ñ‹ во течении лунного меÑÑца в традиционной аÑтрономии БхартьÑ, на оÑнове ÑпиÑка из 28 (иногда 27) +аÑтеризмов из Ðтхарваведы, а также в ШатапаÑа Брахмана. Так "Ðбхиджит" (Abhijit) Ðакшатра заключена в фигурные +Ñкобки — {} — а вÑе Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ Ð´Ñ€ÑƒÐ³Ð¸Ñ… 27 Ñозвездий заключены в прÑмоугольные Ñкобки — []. +

    Ð’ мифологии Ðакшатр ÑчитаютÑÑ 27-ÑŽ дочерьми Дакши Праджипати и жены Чандры, богини Луны.

    +

    Ðакшатр не имеют риÑунков-обозначений.

    + +

    Ðвтор

    +

    Танмой Саха (Tanmoy Saha)

    + +

    Внешние ÑÑылки

    + diff -Nru stellarium-0.12.1/skycultures/indian/description.uk.utf8 stellarium-0.12.4/skycultures/indian/description.uk.utf8 --- stellarium-0.12.1/skycultures/indian/description.uk.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,33 @@ +

    ІндійÑька ведична

    +

    Ведичну картину зорÑного неба з декількома відомими Ñузір’Ñми пов’Ñзано з +накшатрою.

    + +

    Раші

    +

    СонÑчний зодіак вважаєтьÑÑ ÑƒÑвним поÑÑом з 360 градуÑів (подібно до +тропічного зодіаку), поділеним на 12 рівних чаÑтин. Така дванадцÑта чаÑтина +(у 30 градуÑів) називаєтьÑÑ Ð·Ð½Ð°ÐºÐ¾Ð¼ або раші. Ðазви раші позначено круглими +дужками.

    + +

    Ðакшатра

    +

    Ðакшатри — це позиції або зупинки МіÑÑÑ†Ñ Ð¿Ñ€Ð¾Ñ‚Ñгом міÑÑÑ†Ñ Ð·Ð° міÑÑчним +календарем. У традиційній бхартійÑькій аÑтрономії визначено ÑпиÑок з 28 (або +27) аÑтеризмів, Ñкий можна знайти у Ðтхарваведі або Шатарпатха +Брахмана. ÐбхіджитÑькі накшатри позначено фігурними дужками, назви інших 27 +накшатр позначено квадратними дужками.

    +

    У міфології накшатри — це 27 дочок Дакші Праджипаті, дружини Чандри, бога +міÑÑцÑ.

    +

    Художніх зображень Ñузір’їв Ð´Ð»Ñ Ð½Ð°ÐºÑˆÐ°Ñ‚Ñ€ не передбачено.

    + +

    Ðвтор

    +

    Танмой Саха

    + +

    Зовнішні поÑиланнÑ:

    + Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/gemini.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/gemini.png differ diff -Nru stellarium-0.12.1/skycultures/indian/info.ini stellarium-0.12.4/skycultures/indian/info.ini --- stellarium-0.12.1/skycultures/indian/info.ini 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/info.ini 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,4 @@ +[info] +name = Indian Vedic +author = Tanmoy Saha +descriptionSource = Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/leo.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/leo.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/libra.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/libra.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/orion.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/orion.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/pisces.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/pisces.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/sagittarius.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/sagittarius.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/scorpius.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/scorpius.png differ diff -Nru stellarium-0.12.1/skycultures/indian/star_names.fab stellarium-0.12.4/skycultures/indian/star_names.fab --- stellarium-0.12.1/skycultures/indian/star_names.fab 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/indian/star_names.fab 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,21 @@ + 11767|_("Dhrub Tara") + 21421|_("Rohini") + 27989|_("Ardhra") + 49669|_("Magha") + 65474|_("Chitra") + 69673|_("Swati") + 97649|_("Shravana") + 24608|_("Bramha Hridya") + 32349|_("Lubdhak") + 24436|_("Vaanraja") + 54061|_("Kratu") + 53910|_("Pulaha") + 58001|_("Pulasta") + 59774|_("Atri") + 62956|_("Angirah") + 65378|_("Bashistha") + 67301|_("Marichi") + 65477|_("Arundhati") + 91262|_("Abhijit") + 80763|_("Jyeshta") + 30438|_("Auggashta") Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/taurus.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/taurus.png differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/skycultures/indian/virgo.png and /tmp/qEvCSzZF1M/stellarium-0.12.4/skycultures/indian/virgo.png differ diff -Nru stellarium-0.12.1/skycultures/inuit/CMakeLists.txt stellarium-0.12.4/skycultures/inuit/CMakeLists.txt --- stellarium-0.12.1/skycultures/inuit/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/inuit/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/inuit) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/inuit ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/inuit) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/inuit - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/inuit - FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/inuit - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/inuit/description.uk.utf8 stellarium-0.12.4/skycultures/inuit/description.uk.utf8 --- stellarium-0.12.1/skycultures/inuit/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/inuit/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,8 +1,16 @@

    ЕкÑімоÑька

    -

    Файли небеÑної культури еÑкімоÑів, викориÑтані у Stellarium, Ñ” адаптацією результатів доÑліджень Джона Макдональда (John MacDonald), викладених у книзі The Arctic Sky: Inuit Astronomy, Star Lore and Legend. Хоча Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° інші характериÑтики еÑкімоÑьких Ñузір’їв мають певні відмінноÑÑ‚Ñ– у різних племен, наведені у Stellarium дані відповідають загальній картині Ñузір’їв арктичних народів.

    +

    Файли небеÑної культури еÑкімоÑів, викориÑтані у Stellarium, Ñ” адаптацією +результатів доÑліджень Джона Макдональда (John MacDonald), викладених у +книзі The Arctic Sky: Inuit Astronomy, Star Lore and Legend. Хоча +Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° інші характериÑтики еÑкімоÑьких Ñузір’їв мають певні +відмінноÑÑ‚Ñ– у різних племен, наведені у Stellarium дані відповідають +загальній картині Ñузір’їв арктичних народів.

    + + -

    Зовнішні поÑиланнÑ:

    Ðвтори

    -

    ЗапиÑи цієї культури неба було Ñтворено Karrie Berglund Digitalis Education Solutions, Inc. в оÑновному на оÑнові даних книги The Arctic Sky: Inuit Astronomy, Star Lore and Legend Джона Макдональда (John MacDonald).

    +

    ЗапиÑи цієї картини зорÑного неба було Ñтворено Karrie Berglund +Digitalis Education Solutions, Inc. в оÑновному на оÑнові даних книги The +Arctic Sky: Inuit Astronomy, Star Lore and Legend Джона Макдональда +(John MacDonald).

    ІлюÑтрації Ñтворено Johan Meuris, за умов Ð»Ñ–Ñ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Free Art License.

    diff -Nru stellarium-0.12.1/skycultures/korean/CMakeLists.txt stellarium-0.12.4/skycultures/korean/CMakeLists.txt --- stellarium-0.12.1/skycultures/korean/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/korean/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/korean) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/korean ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/korean) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/korean - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/korean -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/korean - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/korean/description.uk.utf8 stellarium-0.12.4/skycultures/korean/description.uk.utf8 --- stellarium-0.12.1/skycultures/korean/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/korean/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,13 +1,36 @@

    КорейÑька

    ПоходженнÑ

    -

    КитайÑькі, корейÑькі та ÑпонÑькі ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¼Ð°ÑŽÑ‚ÑŒ Ñпільне Ð¿Ð¾Ñ…Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ Ñ– дуже Ñхожі за формою. Ці ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¾, відповідно, на зорÑній карті Дунь Ð¥ÑƒÐ°Ð½Ñ (VIII ÑÑ‚.), карті Чон-Сан-Йол-Ча-Бун-Я-Джі-До та на карті неба Кітори, намальованій у VII-VIII ÑÑ‚. н.е. Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° назви Ñузір’їв Ñ” подібними у китайÑькому запиÑів. Ðазви Ñузір’їв вперше згадуютьÑÑ Ñƒ «ІÑторичних запиÑках» (å²è¨˜), Ñтворених під Ñ‡Ð°Ñ Ð¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ Ð´Ð¸Ð½Ð°ÑÑ‚Ñ–Ñ— Хань, коли автор опиÑує події, Ñкі відбулиÑÑ Ð¿Ñ–Ð´ Ñ‡Ð°Ñ Ð¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ Ð´Ð¸Ð½Ð°ÑÑ‚Ñ–Ñ— Ð¡Ñ Ñƒ другому тиÑÑчолітті до н.е.

    +

    КитайÑькі, корейÑькі та ÑпонÑькі ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¼Ð°ÑŽÑ‚ÑŒ Ñпільне Ð¿Ð¾Ñ…Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ Ñ– дуже +Ñхожі за формою. Ці ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¾, відповідно, на зорÑній карті Дунь +Ð¥ÑƒÐ°Ð½Ñ (VIII ÑÑ‚.), карті Чон-Сан-Йол-Ча-Бун-Я-Джі-До та на карті неба Кітори, +намальованій у VII-VIII ÑÑ‚. н.е. Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° назви Ñузір’їв Ñ” подібними +у китайÑькому запиÑів. Ðазви Ñузір’їв вперше згадуютьÑÑ Ñƒ «ІÑторичних +запиÑках» (å²è¨˜), Ñтворених під Ñ‡Ð°Ñ Ð¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ Ð´Ð¸Ð½Ð°ÑÑ‚Ñ–Ñ— Хань, коли автор опиÑує +події, Ñкі відбулиÑÑ Ð¿Ñ–Ð´ Ñ‡Ð°Ñ Ð¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ Ð´Ð¸Ð½Ð°ÑÑ‚Ñ–Ñ— Ð¡Ñ Ñƒ другому тиÑÑчолітті до +н.е.

    -

    272 Ñузір’Ñ, показані на цій карті зорÑного неба Stellarium відповідають зображеннÑм Чон-Сан-Йол-Ча-Бун-Я-Джі-До, корейÑької карти Ñузір’їв, Ñку було вирізьблено на камені у 1395 році. Цю карту заÑновано на іншій карті зорÑного неба, Ñтвореній близько двох тиÑÑч років тому. Ðа карті зображено 1467 зірок Ñ– близько 190 Ñузір’їв, чиї форми трохи відрізнÑÑŽÑ‚ÑŒÑÑ Ð²Ñ–Ð´ форм китайÑьких Ñузір’їв. Ð†Ð½Ñ‚ÐµÑ€Ð¿Ñ€ÐµÑ‚Ð°Ñ†Ñ–Ñ ÐºÐ°Ñ€Ñ‚Ð¸ Ñ” непроÑтою Ñправою: карта занадто Ñтара, відповідніÑÑ‚ÑŒ вдалоÑÑ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð¸Ñ‚Ð¸ лише Ð´Ð»Ñ 300 зірок на ній. Ð’ÑÑ– зірки на карті було намальовано у колі, отже екватор має перебувати вище за південну межу карти. ЩільніÑÑ‚ÑŒ зірок у Ñузір’ÑÑ… приблизно зберігаєтьÑÑ Ð· чаÑом, але Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° розмір Ñузір’їв дещо змінюєтьÑÑ Ñƒ ÑпоÑіб, невідомий авторові карти. Ðвтор припуÑкав, що вÑÑ– ÑÑкраві зірки мають належати певному Ñузір’ю. Результати роботи Ñ” лише одним з поглÑдів на Ñтаровинну карту, отже у карті можуть відбутиÑÑ Ð·Ð¼Ñ–Ð½Ð¸, але поточний варіант дає кориÑтувачам уÑÐ²Ð»ÐµÐ½Ð½Ñ Ñ‰Ð¾Ð´Ð¾ того, Ñк мала виглÑдати корейÑька карта зорÑного неба. +

    272 Ñузір’Ñ, показані на цій карті зорÑного неба Stellarium відповідають +зображеннÑм Чон-Сан-Йол-Ча-Бун-Я-Джі-До, корейÑької карти Ñузір’їв, Ñку було +вирізьблено на камені у 1395 році. Цю карту заÑновано на іншій карті +зорÑного неба, Ñтвореній близько двох тиÑÑч років тому. Ðа карті зображено +1467 зірок Ñ– близько 190 Ñузір’їв, чиї форми трохи відрізнÑÑŽÑ‚ÑŒÑÑ Ð²Ñ–Ð´ форм +китайÑьких Ñузір’їв. Ð†Ð½Ñ‚ÐµÑ€Ð¿Ñ€ÐµÑ‚Ð°Ñ†Ñ–Ñ ÐºÐ°Ñ€Ñ‚Ð¸ Ñ” непроÑтою Ñправою: карта занадто +Ñтара, відповідніÑÑ‚ÑŒ вдалоÑÑ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð¸Ñ‚Ð¸ лише Ð´Ð»Ñ 300 зірок на ній. Ð’ÑÑ– зірки +на карті було намальовано у колі, отже екватор має перебувати вище за +південну межу карти. ЩільніÑÑ‚ÑŒ зірок у Ñузір’ÑÑ… приблизно зберігаєтьÑÑ Ð· +чаÑом, але Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° розмір Ñузір’їв дещо змінюєтьÑÑ Ñƒ ÑпоÑіб, +невідомий авторові карти. Ðвтор припуÑкав, що вÑÑ– ÑÑкраві зірки мають +належати певному Ñузір’ю. Результати роботи Ñ” лише одним з поглÑдів на +Ñтаровинну карту, отже у карті можуть відбутиÑÑ Ð·Ð¼Ñ–Ð½Ð¸, але поточний варіант +дає кориÑтувачам уÑÐ²Ð»ÐµÐ½Ð½Ñ Ñ‰Ð¾Ð´Ð¾ того, Ñк мала виглÑдати корейÑька карта +зорÑного неба.

    Зовнішні поÑиланнÑ:

    Ðвтор

    -

    ЗапиÑи цієї культури неба було Ñтворено кориÑтувачем Stellarium Jeong, Tae-Min

    +

    ЗапиÑи цієї культури неба було Ñтворено кориÑтувачем Stellarium Jeong, Tae-Min

    diff -Nru stellarium-0.12.1/skycultures/lakota/CMakeLists.txt stellarium-0.12.4/skycultures/lakota/CMakeLists.txt --- stellarium-0.12.1/skycultures/lakota/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/lakota/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/lakota) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/lakota ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/lakota) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/lakota - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/lakota -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/lakota - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/lakota/description.bs.utf8 stellarium-0.12.4/skycultures/lakota/description.bs.utf8 --- stellarium-0.12.1/skycultures/lakota/description.bs.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/lakota/description.bs.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,19 @@ +

    Lakota

    + +

    Lakote su indijansko pleme iz Sjeverne i Južne Dakote, +oblasti u Sjedinjenim AmeriÄkim Državama.

    + + +

    Dodatni linkovi

    + + + +

    Autor

    +

    Ove slike sazviježđa su rezultat rada Karrie Berglund iz firme Digitalis Education Solutions, Inc. Rad je zasnovan na knjizi Lakota Star Knowledge: Studies in Lakota Stellar Theology Äiji je autor Ronald Goodman. +

    + + diff -Nru stellarium-0.12.1/skycultures/lakota/description.uk.utf8 stellarium-0.12.4/skycultures/lakota/description.uk.utf8 --- stellarium-0.12.1/skycultures/lakota/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/lakota/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,18 +1,25 @@

    Лакота

    -

    Лакота — індіанÑьке плем’Ñ, що проживає у Північній та Південній Дакоті у Сполучених Штатах Ðмерики.

    +

    Лакота — індіанÑьке плем’Ñ, що проживає у Північній та Південній Дакоті у +Сполучених Штатах Ðмерики.

    Зовнішні поÑиланнÑ:

    Ðвтор

    -

    ЗапиÑи цієї культури неба було Ñтворено Karrie Berglund Digitalis Education Solutions, Inc. в оÑновному на оÑнові даних книги Lakota Star Knowledge: Studies in Lakota Stellar Theology , автор — Рональд Гудмен (Ronald Goodman). +

    ЗапиÑи цієї культури неба було Ñтворено Karrie Berglund Digitalis +Education Solutions, Inc. в оÑновному на оÑнові даних книги Lakota Star +Knowledge: Studies in Lakota Stellar Theology , автор — Рональд Гудмен +(Ronald Goodman).

    diff -Nru stellarium-0.12.1/skycultures/maori/CMakeLists.txt stellarium-0.12.4/skycultures/maori/CMakeLists.txt --- stellarium-0.12.1/skycultures/maori/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/maori/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/maori) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/maori ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/maori) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/maori - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/maori -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/maori - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/maori/description.uk.utf8 stellarium-0.12.4/skycultures/maori/description.uk.utf8 --- stellarium-0.12.1/skycultures/maori/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/maori/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,11 +1,21 @@

    МаорійÑька (Ðова ЗеландіÑ)

    -

    МаорійÑька (новозеландÑька) картина зорÑного неба подібна до полінезійÑької, але відрізнÑєтьÑÑ Ð²Ñ–Ð´ неї доÑтатньо, щоб вважати Ñ—Ñ— ÑамоÑтійною. ÐÑпекти пов’Ñзані з морем Ñ” оÑновним у картині зорÑного неба. Ð—Ð½Ð°Ð½Ð½Ñ Ð· Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ñ–Ñ€Ð¾Ðº широко викориÑтовувалиÑÑ Ð´Ð»Ñ Ð½Ð°Ð²Ñ–Ð³Ð°Ñ†Ñ–Ñ—. Як Ñ– у більшоÑÑ‚Ñ– інших культур, Ñ‡Ð°Ñ Ð·Ð°Ñ…Ð¾Ð´Ñƒ та ÑÑ…Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ ÑÑкравих зірок позначав початок Ñезонів поÑіву та Ð·Ð±Ð¸Ñ€Ð°Ð½Ð½Ñ Ð²Ñ€Ð¾Ð¶Ð°ÑŽ.

    +

    МаорійÑька (новозеландÑька) картина зорÑного неба подібна до полінезійÑької, +але відрізнÑєтьÑÑ Ð²Ñ–Ð´ неї доÑтатньо, щоб вважати Ñ—Ñ— ÑамоÑтійною. ÐÑпекти +пов’Ñзані з морем Ñ” оÑновним у картині зорÑного неба. Ð—Ð½Ð°Ð½Ð½Ñ Ð· Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ +зірок широко викориÑтовувалиÑÑ Ð´Ð»Ñ Ð½Ð°Ð²Ñ–Ð³Ð°Ñ†Ñ–Ñ—. Як Ñ– у більшоÑÑ‚Ñ– інших +культур, Ñ‡Ð°Ñ Ð·Ð°Ñ…Ð¾Ð´Ñƒ та ÑÑ…Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ ÑÑкравих зірок позначав початок Ñезонів +поÑіву та Ð·Ð±Ð¸Ñ€Ð°Ð½Ð½Ñ Ð²Ñ€Ð¾Ð¶Ð°ÑŽ.

    Зовнішні поÑиланнÑ:

    Ðвтор

    -

    ЗапиÑи цієї культури неба було Ñтворено кориÑтувачем Stellarium Dan Smale, d.smale(at)niwa.co.nz

    \ No newline at end of file +

    ЗапиÑи цієї культури неба було Ñтворено кориÑтувачем Stellarium Dan +Smale, d.smale(at)niwa.co.nz

    \ No newline at end of file diff -Nru stellarium-0.12.1/skycultures/navajo/CMakeLists.txt stellarium-0.12.4/skycultures/navajo/CMakeLists.txt --- stellarium-0.12.1/skycultures/navajo/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/navajo/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/navajo) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/navajo ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/navajo) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/navajo - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/navajo -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/navajo - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/navajo/description.bs.utf8 stellarium-0.12.4/skycultures/navajo/description.bs.utf8 --- stellarium-0.12.1/skycultures/navajo/description.bs.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/navajo/description.bs.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,19 @@ +

    Navaho

    + +

    Navoho je najveće indijansko pleme U Sjedinjenim AmeriÄkim Državama; Navaho nacija živi na podruÄju +sjevernoistoÄne Arizoni, jugoistoÄnog Utaha i sjevernozapadnog Novog Meksika.

    + +

    Dodatni linkovi

    + + + + +

    Autor

    +

    Ove slike sazviježđa su rezultat rada Karrie Berglund iz firme Digitalis Education Solutions, Inc. Rad je baziran na knjizi Star Trails-Navajo Äiji je autor Don Childrey. +

    diff -Nru stellarium-0.12.1/skycultures/navajo/description.uk.utf8 stellarium-0.12.4/skycultures/navajo/description.uk.utf8 --- stellarium-0.12.1/skycultures/navajo/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/navajo/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,18 +1,27 @@

    Ðавахо

    -

    Ðавахо Ñ” найбільшим з індіанÑьких племен у Сполучених Штатах Ðмерики. ТериторіÑми навахо Ñ” північний Ñхід штату Ðрізона, південний Ñхід штату Юта та північний захід штату Ðью-МекÑико.

    +

    Ðавахо Ñ” найбільшим з індіанÑьких племен у Сполучених Штатах +Ðмерики. ТериторіÑми навахо Ñ” північний Ñхід штату Ðрізона, південний Ñхід +штату Юта та північний захід штату Ðью-МекÑико.

    Зовнішні поÑиланнÑ:

    Ðвтор

    -

    ЗапиÑи цієї культури неба було Ñтворено Karrie Berglund Digitalis Education Solutions, Inc. в оÑновному на оÑнові даних книги Star Trails-Navajo , автор Дон Чилдрі (Don Childrey). +

    ЗапиÑи цієї картини зорÑного неба було Ñтворено Karrie Berglund +Digitalis Education Solutions, Inc. в оÑновному на оÑнові даних книги +Star Trails-Navajo , автор Дон Чилдрі (Don Childrey).

    diff -Nru stellarium-0.12.1/skycultures/norse/CMakeLists.txt stellarium-0.12.4/skycultures/norse/CMakeLists.txt --- stellarium-0.12.1/skycultures/norse/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/norse/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/norse) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/norse ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/norse) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/norse - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/norse -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/norse - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/norse/description.bs.utf8 stellarium-0.12.4/skycultures/norse/description.bs.utf8 --- stellarium-0.12.1/skycultures/norse/description.bs.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/norse/description.bs.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,10 @@ +

    Nordijski

    + +

    Dodatni linkovi

    + + + +

    Autor

    +

    Autor ovih sazviježđa je Stellarium korisnik Jonas Persson, jonas.persson(at)mna.hkr.se

    \ No newline at end of file diff -Nru stellarium-0.12.1/skycultures/norse/description.uk.utf8 stellarium-0.12.4/skycultures/norse/description.uk.utf8 --- stellarium-0.12.1/skycultures/norse/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/norse/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -2,9 +2,11 @@

    Зовнішні поÑиланнÑ:

    Ðвтор

    -

    ЗапиÑи цієї культури неба було Ñтворено кориÑтувачем Stellarium Jonas Persson, jonas.persson(at)mna.hkr.se

    \ No newline at end of file +

    ЗапиÑи цієї культури неба було Ñтворено кориÑтувачем Stellarium Jonas +Persson, jonas.persson(at)mna.hkr.se

    \ No newline at end of file diff -Nru stellarium-0.12.1/skycultures/polynesian/CMakeLists.txt stellarium-0.12.4/skycultures/polynesian/CMakeLists.txt --- stellarium-0.12.1/skycultures/polynesian/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/polynesian/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/polynesian) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/polynesian ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/polynesian) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/polynesian - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/polynesian -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/polynesian - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/polynesian/description.uk.utf8 stellarium-0.12.4/skycultures/polynesian/description.uk.utf8 --- stellarium-0.12.1/skycultures/polynesian/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/polynesian/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,10 +1,16 @@

    ПолінезійÑька

    -

    Полінезійці викориÑтовували ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð´Ð»Ñ Ð½Ð°Ð²Ñ–Ð³Ð°Ñ†Ñ–Ñ— у Тихому океані. Міфологічну Ñкладову назв Ñузір’їв також Ñ‚Ñ–Ñно пов’Ñзано з океаном.

    +

    Полінезійці викориÑтовували ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð´Ð»Ñ Ð½Ð°Ð²Ñ–Ð³Ð°Ñ†Ñ–Ñ— у Тихому +океані. Міфологічну Ñкладову назв Ñузір’їв також Ñ‚Ñ–Ñно пов’Ñзано з океаном.

    Зовнішні поÑиланнÑ:

    Ðвтори

    -

    ЗапиÑи цієї культури неба було Ñтворено Karrie Berglund Digitalis Education Solutions, Inc. в оÑновному на оÑнові даних ПолінезійÑького товариÑтва подорожей.

    +

    ЗапиÑи цієї картини зорÑного неба було Ñтворено Karrie Berglund +Digitalis Education Solutions, Inc. в оÑновному на оÑнові даних +ПолінезійÑького товариÑтва подорожей.

    diff -Nru stellarium-0.12.1/skycultures/sami/CMakeLists.txt stellarium-0.12.4/skycultures/sami/CMakeLists.txt --- stellarium-0.12.1/skycultures/sami/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/sami/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/sami) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/sami ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/sami) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/sami - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/sami -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/sami - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/sami/description.uk.utf8 stellarium-0.12.4/skycultures/sami/description.uk.utf8 --- stellarium-0.12.1/skycultures/sami/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/sami/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,37 +1,78 @@

    Саамі

    -

    ВважаєтьÑÑ, що Ñаами (лопарі або лапландці) Ñ” корінними мешканцÑми північних облаÑтей Ðорвегії, Швеції, ФінлÑндії та західної чаÑтини РоÑійÑької Федерації (КольÑького півоÑтрова). Докладніші дані можна знайти на samer.se та на Ñторінці щодо народу Ñаами у Вікіпедії.

    +

    ВважаєтьÑÑ, що Ñаами (лопарі або лапландці) Ñ” корінними мешканцÑми північних +облаÑтей Ðорвегії, Швеції, ФінлÑндії та західної чаÑтини РоÑійÑької +Федерації (КольÑького півоÑтрова). Докладніші дані можна знайти на samer.se та на Ñторінці щодо народу Ñаами у +Вікіпедії.

    Джерела

    -

    Картину зорÑного неба Ñаамів у Stellarium Ñтворено на оÑнові роботи Бо Лундмарка (Bo Lundmark) Bæi'vi mánno nástit -(назва шведÑькою: Sol- och mÃ¥nkult samt astrala och celesta föreställninga bland samerna -[Культ Ð¡Ð¾Ð½Ñ†Ñ Ñ– МіÑÑÑ†Ñ Ñ– аÑтральна та небеÑна картина Ñвіту у Ñаамів], 1982), значну чаÑтину цієї роботи заÑновано на творах ÑаамÑького художника та пиÑьменника Йогана Турі (Johan Turi).

    - -

    Ð¦Ñ ÐºÐ°Ñ€Ñ‚Ð¸Ð½Ð° зорÑного неба ÑкладаєтьÑÑ Ð· принаймні трьох трохи різних уÑвлень чаÑтин цього народу: південних Ñаамів, північних Ñаамів та роÑійÑьких Ñаамів. У кожної з цих трьох груп влаÑні оÑобливоÑÑ‚Ñ– мови, отже назви зорÑних об’єктів можуть бути різними у різних джерелах.

    - -

    СаамÑькі ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¼Ð¾Ð¶Ð½Ð° доÑліджувати за ужитковими предметами, пов’Ñзаними зі Ñтародавньою релігією цього народу, звідки можна зробити виÑновок про те, що у давні чаÑи нічне небо відігравало важливу роль у культурі Ñаамів.

    - -

    СаамÑька картина зорÑного неба має багато подібного з іншими арктичними та Ñубарктичними культурами Євразії. Однією з таких подібноÑтей, на жаль, Ñ” та, що значну чаÑтину культури Ñаамів було втрачено ще до того, Ñк Ñ—Ñ— вдалоÑÑ Ð·Ð°Ð´Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚ÑƒÐ²Ð°Ñ‚Ð¸ належним чином.

    +

    Картину зорÑного неба Ñаамів у Stellarium Ñтворено на оÑнові роботи Бо +Лундмарка (Bo Lundmark) Bæi'vi mánno nástit(назва шведÑькою: Sol- +och mÃ¥nkult samt astrala och celesta föreställninga bland +samerna[Культ Ð¡Ð¾Ð½Ñ†Ñ Ñ– МіÑÑÑ†Ñ Ñ– аÑтральна та небеÑна картина Ñвіту у +Ñаамів], 1982), значну чаÑтину цієї роботи заÑновано на творах +ÑаамÑького художника та пиÑьменника Йогана Турі (Johan Turi).

    + +

    Ð¦Ñ ÐºÐ°Ñ€Ñ‚Ð¸Ð½Ð° зорÑного неба ÑкладаєтьÑÑ Ð· принаймні трьох трохи різних уÑвлень +чаÑтин цього народу: південних Ñаамів, північних Ñаамів та роÑійÑьких +Ñаамів. У кожної з цих трьох груп влаÑні оÑобливоÑÑ‚Ñ– мови, отже назви +зорÑних об’єктів можуть бути різними у різних джерелах.

    + +

    СаамÑькі ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¼Ð¾Ð¶Ð½Ð° доÑліджувати за ужитковими предметами, пов’Ñзаними зі +Ñтародавньою релігією цього народу, звідки можна зробити виÑновок про те, що +у давні чаÑи нічне небо відігравало важливу роль у культурі Ñаамів.

    + +

    СаамÑька картина зорÑного неба має багато подібного з іншими арктичними та +Ñубарктичними культурами Євразії. Однією з таких подібноÑтей, на жаль, Ñ” та, +що значну чаÑтину культури Ñаамів було втрачено ще до того, Ñк Ñ—Ñ— вдалоÑÑ +задокументувати належним чином.

    Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ Ñ– зірки

    -

    Ймовірно, назви ÑаамÑьких Ñузір’їв Ñ” дуже давніми, але запиÑано Ñ—Ñ… було лише у XIX Ñтолітті. ЗалишаєтьÑÑ Ð½ÐµÐ²Ñ–Ð´Ð¾Ð¼Ð¸Ð¼, чи Ñ” ці запиÑи повними. Ðаведені назви Ñузір’їв та зірок пов’Ñзано з оÑновним Ñузір’Ñм, Сарва — тобто «Олень». «Сарва» ÑаамÑька назва оленÑ, іншим варіантом назви Ñ” Ð¡Ð°Ñ€Ð²Ð²Ñ–Ñ â€” тобто «Самець оленÑ». Корені назви цього Ñузір’Ñ, ймовірно, ÑÑгають чаÑів давньої миÑливÑької культури, Ñка виникла ще до Ð¾Ð´Ð¾Ð¼Ð°ÑˆÐ½ÐµÐ½Ð½Ñ Ð¿Ñ–Ð²Ð½Ñ–Ñ‡Ð½Ð¾Ð³Ð¾ оленÑ.

    - -

    Сарва ÑкладаєтьÑÑ Ð· Ñузір’їв КаÑіопеї, ПерÑÐµÑ Ñ‚Ð° чаÑтини ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð’Ñ–Ð·Ð½Ð¸Ñ‡Ð¾Ð³Ð¾ у західній культурі. Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ Ñ‚Ð° зірки навколо Сарви відповідають миÑливцÑм на оленÑ. Фавдна -(також можна прочитати Ñк Фавтна) — зірка Ðрктур, відповідає миÑливцеві, що цілитьÑÑ Ñƒ Ð¾Ð»ÐµÐ½Ñ Ð· лука зі Ñтрілою (Фауна давґґе — Великий Ківш). Фавдна має прицілитиÑÑ Ð´ÑƒÐ¶Ðµ добре, інакше може вцілити у Опору ÐÐµÐ±ÐµÑ Ð‘Ð¾Ð°Ð³â€™Ñ”Ð½Ð°Ñте (ПолÑрну зірку). За легендою, Ñкщо він це зробить, наÑтане кінець Ñвіту.

    - -

    У Фавдни Ñ” декілька помічників: Галла (Проціон1) та його Ñини — Òаллабарнек (поÑÑ ÐžÑ€Ñ–Ð¾Ð½Ð°), «ÐебеÑних Бігунів», Куойґагеґ’єк -(КаÑтор Ñ– ПоллукÑ) та «Бігун» (Вега). ПлеÑди мають назву Роуґот (Ð·Ð³Ñ€Ð°Ñ Ñобак) або МіеÑе-кора (телÑта).

    - -

    Чумацький шлÑÑ… називаєтьÑÑ Ð›Ð¾Ð´Ð´Ðµ-Ñ€Ð°Ñ—Ð´Ð´Ð°Ñ€Ð°Ñ (доÑлівно, пташиний шлÑÑ…) або Якке-мерка -(доÑлівно, «позначка років»). Ðазва, Ñка викориÑтовувалаÑÑ, залежить від Ñезону. Ðа картині зорÑного неба Йогана Турі можна бачити зірку ÒуовÑо-наÑте, ранкову зірку, Ñку можна пов’Ñзати з Венерою, але у такій прив’Ñзці немає певноÑÑ‚Ñ–, оÑкільки так могли називати Ñ– Ðльтаїр, зірку, Ñку можна бачити перед Ñвітанком (подібно до Ðрктура у нордичній культурі зорÑного неба).

    - -

    У ÑаамÑькій картині зорÑного неба небагато Ñузір’їв. Причиною цього можна вважати те, що Ñаами Ñ” мешканцÑми крайньої півночі. Ðа картину зорÑного неба могли вплинути такі фактори: більшу чаÑтину року південні зірки перебувають за горизонтом, північне ÑÑйво Ñ” чаÑто доÑтатньо ÑÑкравим, щоб зробити невидимими тьмÑні зірки.

    +

    Ймовірно, назви ÑаамÑьких Ñузір’їв Ñ” дуже давніми, але запиÑано Ñ—Ñ… було лише +у XIX Ñтолітті. ЗалишаєтьÑÑ Ð½ÐµÐ²Ñ–Ð´Ð¾Ð¼Ð¸Ð¼, чи Ñ” ці запиÑи повними. Ðаведені +назви Ñузір’їв та зірок пов’Ñзано з оÑновним Ñузір’Ñм, Сарва — тобто +«Олень». «Сарва» ÑаамÑька назва оленÑ, іншим варіантом назви Ñ” +Ð¡Ð°Ñ€Ð²Ð²Ñ–Ñ â€” тобто «Самець оленÑ». Корені назви цього Ñузір’Ñ, ймовірно, +ÑÑгають чаÑів давньої миÑливÑької культури, Ñка виникла ще до Ð¾Ð´Ð¾Ð¼Ð°ÑˆÐ½ÐµÐ½Ð½Ñ +північного оленÑ.

    + +

    Сарва ÑкладаєтьÑÑ Ð· Ñузір’їв КаÑіопеї, ПерÑÐµÑ Ñ‚Ð° чаÑтини ÑÑƒÐ·Ñ–Ñ€â€™Ñ +Візничого у західній культурі. Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ Ñ‚Ð° зірки навколо Сарви відповідають +миÑливцÑм на оленÑ. Фавдна(також можна прочитати Ñк Фавтна) — +зірка Ðрктур, відповідає миÑливцеві, що цілитьÑÑ Ñƒ Ð¾Ð»ÐµÐ½Ñ Ð· лука зі Ñтрілою +(Фауна давґґе — Великий Ківш). Фавдна має прицілитиÑÑ Ð´ÑƒÐ¶Ðµ добре, +інакше може вцілити у Опору ÐÐµÐ±ÐµÑ Ð‘Ð¾Ð°Ð³â€™Ñ”Ð½Ð°Ñте (ПолÑрну зірку). За +легендою, Ñкщо він це зробить, наÑтане кінець Ñвіту.

    + +

    У Фавдни Ñ” декілька помічників: Галла (Проціон1) та його Ñини — Òаллабарнек (поÑÑ ÐžÑ€Ñ–Ð¾Ð½Ð°), +«ÐебеÑних Бігунів», Куойґагеґ’єк(КаÑтор Ñ– ПоллукÑ) та «Бігун» +(Вега). ПлеÑди мають назву Роуґот (Ð·Ð³Ñ€Ð°Ñ Ñобак) або МіеÑе-кора +(телÑта).

    + +

    Чумацький шлÑÑ… називаєтьÑÑ Ð›Ð¾Ð´Ð´Ðµ-Ñ€Ð°Ñ—Ð´Ð´Ð°Ñ€Ð°Ñ (доÑлівно, пташиний шлÑÑ…) +або Якке-мерка(доÑлівно, «позначка років»). Ðазва, Ñка +викориÑтовувалаÑÑ, залежить від Ñезону. Ðа картині зорÑного неба Йогана Турі +можна бачити зірку ÒуовÑо-наÑте, ранкову зірку, Ñку можна пов’Ñзати з +Венерою, але у такій прив’Ñзці немає певноÑÑ‚Ñ–, оÑкільки так могли називати Ñ– +Ðльтаїр, зірку, Ñку можна бачити перед Ñвітанком (подібно до Ðрктура у +нордичній культурі зорÑного неба).

    + +

    У ÑаамÑькій картині зорÑного неба небагато Ñузір’їв. Причиною цього можна +вважати те, що Ñаами Ñ” мешканцÑми крайньої півночі. Ðа картину зорÑного неба +могли вплинути такі фактори: більшу чаÑтину року південні зірки перебувають +за горизонтом, північне ÑÑйво Ñ” чаÑто доÑтатньо ÑÑкравим, щоб зробити +невидимими тьмÑні зірки.

    Ðотатки

    -
    1. Зірку, Ñка відповідає Галла не вдалоÑÑ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð¸Ñ‚Ð¸ точно. Ймовірно, це Проціон, Рігель або Ð¡Ñ–Ñ€Ñ–ÑƒÑ â€” Проціон було вибрано через те, що Ð¡Ñ–Ñ€Ñ–ÑƒÑ Ð²Ð°Ð¶ÐºÐ¾ побачити з широт, у Ñких живуть Ñаами.
    +
    1. Зірку, Ñка відповідає Галла не вдалоÑÑ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð¸Ñ‚Ð¸ точно. Ймовірно, це +Проціон, Рігель або Ð¡Ñ–Ñ€Ñ–ÑƒÑ â€” Проціон було вибрано через те, що Ð¡Ñ–Ñ€Ñ–ÑƒÑ Ð²Ð°Ð¶ÐºÐ¾ +побачити з широт, у Ñких живуть Ñаами.

    Ðвтор

    diff -Nru stellarium-0.12.1/skycultures/tongan/CMakeLists.txt stellarium-0.12.4/skycultures/tongan/CMakeLists.txt --- stellarium-0.12.1/skycultures/tongan/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/tongan/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/tongan) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/tongan ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/tongan) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/tongan - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/tongan -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/tongan - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/tongan/description.en.utf8 stellarium-0.12.4/skycultures/tongan/description.en.utf8 --- stellarium-0.12.1/skycultures/tongan/description.en.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/tongan/description.en.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -57,10 +57,10 @@ Fetu'u'EsiafiFalling star tapukiteaVenus MatamemeaMars -Ma'afutoka (same as LMC)Canopus -Ma'afulele (same as SMC)Sirius +Ma'afutoka (same as SMC)Canopus +Ma'afulele (same as LMC)Sirius Velitoa hififoRigel -Velitoa hahakeBeteleguese +Velitoa hahakeBetelguese Hikule'oArcturus MonuafeMeissa MotulikiPleiades diff -Nru stellarium-0.12.1/skycultures/tongan/description.fr.utf8 stellarium-0.12.4/skycultures/tongan/description.fr.utf8 --- stellarium-0.12.1/skycultures/tongan/description.fr.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/tongan/description.fr.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -84,11 +84,11 @@ Mars - Ma'afutoka (idem GNM) + Ma'afutoka (idem PNM) Canope - Ma'afulele (idem PNM) + Ma'afulele (idem GNM) Sirius diff -Nru stellarium-0.12.1/skycultures/tongan/description.pt_BR.utf8 stellarium-0.12.4/skycultures/tongan/description.pt_BR.utf8 --- stellarium-0.12.1/skycultures/tongan/description.pt_BR.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/tongan/description.pt_BR.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -6,22 +6,13 @@

    A ancestralidade comum da cultura estelar polinésia é evidente nas similaridades das designações de estrelas. Por exemplo, as Plêiades são chamadas Mataliki em tonganês, Matariki em maori and Makali’i em havaiano.

    -

    Referências

    -
      - -
    1. Velt Kik, Ko E Ngaahi fetu’u ’o, Stars over tonga, 1990, ’Atenisi University, Nuku’alofa, Tonga Government printing department.
    2. -
    3. T. H. Fale, Tongan astronomy, 1990, Polynesian Eyes foundation, Nuku’alofa, Tonga -Choice printing.
    4. -
    5. E. E. V. Collocott, Tongan astronomy and calendar, 1992, Occasional Papers of the Bernice Pauahi Bishop Museum of -Polynesian ethnology and Natural History, Vol. 8, No. 4. Honolulu, Hawaii, Bishop Museum Press 1922, p. 157-173.
    6. -
    -

    Nomenclatura

    - + + @@ -32,8 +23,8 @@ - - + + @@ -58,5 +49,15 @@
    Termo tonganês Designação
    HumuSaco de Carvão
    KanivaVia Láctea
    Ma’afuleleGrande Nuvem de Magalhães
    Ma’afutokaPequena Nuvem de Magalhães
    Ma’afuleleGrande Nuvem de Magalhães
    Ma’afutokaPequena Nuvem de Magalhães
    ’Otu Ma’afuNuvens de Magalhães (ambas)
    Ha’amongaEclíptica
    MahinaLua
    Fetu’u’EsiafiEstrela cadente
    TapukiteaVênus
    MatamemeaMarte
    Ma’afutoka (igual à GNM)Canopus
    Ma’afulele (igual à PNM)Sirius
    Ma’afutoka (igual à PNM)Canopus
    Ma’afulele (igual à GNM)Sirius
    Velitoa hififoRigel
    Velitoa hahakeBetelgeuse
    Hikule’oArcturus
    Houmatoloa (Toloa, toloatonga, toloalahi)
    +

    Referências

    +
      + +
    1. Velt Kik, Ko E Ngaahi fetu’u ’o, Stars over tonga, 1990, ’Atenisi University, Nuku’alofa, Tonga Government printing department.
    2. +
    3. T. H. Fale, Tongan astronomy, 1990, Polynesian Eyes foundation, Nuku’alofa, Tonga +Choice printing.
    4. +
    5. E. E. V. Collocott, Tongan astronomy and calendar, 1992, Occasional Papers of the Bernice Pauahi Bishop Museum of +Polynesian ethnology and Natural History, Vol. 8, No. 4. Honolulu, Hawaii, Bishop Museum Press 1922, p. 157-173.
    6. +
    +

    Autor

    Esta cultura do céu foi contribuída pelo usuário do Stellarium Dan Smale, d.smale(at)niwa.co.nz

    \ No newline at end of file diff -Nru stellarium-0.12.1/skycultures/tongan/description.ru.utf8 stellarium-0.12.4/skycultures/tongan/description.ru.utf8 --- stellarium-0.12.1/skycultures/tongan/description.ru.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/tongan/description.ru.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -54,8 +54,8 @@ Фету'у'ЕÑиафи [Fetu'u'Esiafi]ÐŸÐ°Ð´Ð°ÑŽÑ‰Ð°Ñ Ð·Ð²ÐµÐ·Ð´Ð° тапукитеа [tapukitea]Венера Матамемеа [Matamemea]ÐœÐ°Ñ€Ñ -Ма'афутока [Ma'afutoka] (как и БМО)ÐšÐ°Ð½Ð¾Ð¿ÑƒÑ -Ма'афулеле [Ma'afulele] (как и ММО)Ð¡Ð¸Ñ€Ð¸ÑƒÑ +Ма'афутока [Ma'afutoka] (как и ММО)ÐšÐ°Ð½Ð¾Ð¿ÑƒÑ +Ма'афулеле [Ma'afulele] (как и БМО)Ð¡Ð¸Ñ€Ð¸ÑƒÑ Ð’ÐµÐ»Ð¸Ñ‚Ð¾Ð° хифифо [Velitoa hififo]Ригель Велитоа хахаке [Velitoa hahake]Бетельгейзе Хикуле'о [Hikule'o]Ðрктур diff -Nru stellarium-0.12.1/skycultures/tongan/description.uk.utf8 stellarium-0.12.4/skycultures/tongan/description.uk.utf8 --- stellarium-0.12.1/skycultures/tongan/description.uk.utf8 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/skycultures/tongan/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,83 @@ +

    ТонганÑька (Тонга)

    +

    Як Ñ– у вÑÑ–Ñ… полінезійців, картину зорÑного неба тонганців заÑновано на Ñ—Ñ— +практичному заÑтоÑуванні у навігації. У цій картині іноді важко розрізнити +назви окремих зірок від контурів Ñузір’їв. Зірка може мати декілька назв +через такі причини: 1) зірка Ñ” чаÑтиною різних контурів Ñузір’їв; 2) назви +зірки Ñ” різними на різних оÑтровах Тонга. Ðоменклатуру назв зірок визначено +приблизно на оÑнові обмежених джерел.

    + +

    Хоча назви більшоÑÑ‚Ñ– помітних зірок Ñ– Ñузір’їв (зокрема Оріона, ПлеÑд та +Південного ХреÑта) у тонганÑькій картині зорÑного неба визначено точно, +Ñ–Ñнує два значних винÑтки. Ðемає назви Ð´Ð»Ñ ÐŸÐ¾Ð»Ñрної зірки (α Малої +Ведмедиці). Це дивно через широту, на Ñкій розташовано оÑтрови Тонга, та +видиміÑÑ‚ÑŒ цієї зірки у певні пори року. У Ñ‡Ð°Ñ Ð¿Ñ–Ð²Ð½Ñ–Ñ‡Ð½Ð¸Ñ… подорожей +тонганÑьких мореплавців цей важливий навігаційний орієнтир не міг залишитиÑÑ +непоміченим. Сузір’ю Скорпіона (чаÑтини ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð°Ð±Ð¾ його зірки) теж не +знайшлоÑÑ Ð¼Ñ–ÑÑ†Ñ Ñƒ цій картині зорÑного неба. Це доволі дивно, оÑкільки у +більшоÑÑ‚Ñ– картин зорÑного неба, — глобально та у межах Полінезії, — Скорпіон +Ñ” центральним Ñузір’Ñм через те, що його проÑто помітити Ñ– його Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ +безпоÑередньо навпроти Оріона на нічному небі. [Ðвтори Stellarium будуть +раді будь-Ñкій інформації, Ñка могла б проÑÑнити ці аномалії.]

    + +

    Спільне Ð¿Ð¾Ñ…Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ Ð½Ð°Ð·Ð² зорÑних об’єктів Ñеред полінезійців Ñ” очевидним з +подібноÑÑ‚Ñ– назв зірок. Ðаприклад, ПлеÑди називаютьÑÑ ÐœÐ°Ñ‚Ð°Ð»Ñ–ÐºÑ– тонганÑькою, +Маталікі маорійÑькою та Макалі’ї гавайÑькою. +

    + +

    ПоÑиланнÑ

    +
      +
    1. Velt Kik, Ko E Ngaahi fetu'u 'o, Stars over tonga, 1990 'Atenisi +University, Nuku'alofa , Tonga Government printing department.
    2. +
    3. T.H Fale, Tongan astronomy, 1990 Polynesian Eyes foundation, +Nuku'alofa, Tonga Choice printing.
    4. +
    5. E. E. V. Collocott, Tongan astronomy and calendar, 1992 Occasional +Papers of the Bernice Pauahi Bishop Museum of Polynesian ethnology and +Natural History, Vol.8, No. 4 Honolulu, Hawaii, Bishop Museum Press 1922, +p. 157-173.
    6. +
    + +

    Ðоменклатура

    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Термін тонганÑькоюЗначеннÑ
    ГумуМішок Ð´Ð»Ñ Ð²ÑƒÐ³Ñ–Ð»Ð»Ñ
    КаніваЧумацький ШлÑÑ…
    Ма’афулелеВелика Магелланова Хмара
    Ма’афутокаМала Магелланова Хмара
    'оту Ма'афуМагелланові Хмари (обидві)
    Ха’амонгаЕкліптика
    МахінаМіÑÑць
    Ла’аСонце
    Фету’уЗірка (загалом)
    Фету’уфукаКомета
    ’УматаВеÑелка
    Фету’у’ЕÑіафіМетеорит
    тапукітеаВенера
    МатамемеаМарÑ
    Ма’афутока (те Ñаме, що Ñ– ММХ)КанопуÑ
    Ма’афулеле (те Ñаме, що Ñ– ВМХ)СіріуÑ
    Велітоа-хіфіфоРігель
    Велітоа-хахакеБетельгейзе
    Хікуле’оÐрктур
    МонуафеМеїÑа
    МотулікіПлеÑди
    Ту’улалупеГіади
    ТолоатонгаПівденний ХреÑÑ‚
    ТолоалахіÐеÑправжній ХреÑÑ‚
    + +ТонганÑькі ÑÑƒÐ·Ñ–Ñ€â€™Ñ + + + + + + + + + + +
    ТонганÑька Ð½Ð°Ð·Ð²Ð°Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð°Ð±Ð¾ нотатки
    Туїнга-ікаЧаÑтина Оріона, поÑÑ Ñ‚Ð° меч
    Ðе-е’увеаПівнічна Корона (гіпотетично)
    ФатаналуаВолоÑÑÑ Ð’ÐµÑ€Ð¾Ð½Ñ–ÐºÐ¸ (гіпотетично)
    Капакау’о’тафахіКаÑÑ–Ð¾Ð¿ÐµÑ (гіпотетично)
    ТолоаПоÑÑ ÐžÑ€Ñ–Ð¾Ð½Ð°
    Луа-тангатаКаÑтор Ñ–/або ПоллукÑ
    ФунгазіаТоліман Ñ–/або Ðгена
    Хоуматолоа (Толоа, толоатонга, толоалахі)
    + +

    Ðвтор

    +

    ЗапиÑи цієї культури неба було Ñтворено кориÑтувачем Stellarium Dan +Smale, d.smale(at)niwa.co.nz

    \ No newline at end of file diff -Nru stellarium-0.12.1/skycultures/tongan/references.txt stellarium-0.12.4/skycultures/tongan/references.txt --- stellarium-0.12.1/skycultures/tongan/references.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/tongan/references.txt 2013-08-04 06:20:27.000000000 +0000 @@ -34,7 +34,7 @@ Canopus Ma'afutoka (same as LMC) Sirius Ma'afulele (same as SMC) Rigel Velitoa hififo -Beteleguese Velitoa hahake +Betelguese Velitoa hahake Arcturus Hikule'o Meissa Monuafe diff -Nru stellarium-0.12.1/skycultures/tupi/CMakeLists.txt stellarium-0.12.4/skycultures/tupi/CMakeLists.txt --- stellarium-0.12.1/skycultures/tupi/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/tupi/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/tupi) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/tupi ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/tupi) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/tupi - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -#INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/tupi -# FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/tupi - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/tupi/description.uk.utf8 stellarium-0.12.4/skycultures/tupi/description.uk.utf8 --- stellarium-0.12.1/skycultures/tupi/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/tupi/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,23 +1,38 @@

    Тупі-Гуарані

    -

    Тупі-гуарані — назва, Ñку було дано ÑімейÑтву мов, Ñкими розмовлÑÑŽÑ‚ÑŒ корінні мешканці Бразилії та інших південноамериканÑьких країн. +

    Тупі-гуарані — назва, Ñку було дано ÑімейÑтву мов, Ñкими розмовлÑÑŽÑ‚ÑŒ корінні +мешканці Бразилії та інших південноамериканÑьких країн.

    Сузір'Ñ

    -

    Як Ñ– у багатьох інших культурах, ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð°Ð»Ð¸ÑÑ Ñ‚Ð° викориÑтовувалиÑÑ Ð´Ð»Ñ ÑÑ‚ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð° зміною Ñезонів та Ð¿ÐµÑ€ÐµÐ´Ð±Ð°Ñ‡ÐµÐ½Ð½Ñ Ñезонних змін погоди, Ñкі впливали на повÑÑкденне Ð¶Ð¸Ñ‚Ñ‚Ñ Ð»ÑŽÐ´ÐµÐ¹. У книзі Histoire de la Mission de Pères Capucins en l'Isle de Maragnan et terres circonvoisins, надрукованій у Парижі 1614 року, повідомлÑєтьÑÑ, що тупі мають назви Ð´Ð»Ñ Ð±Ð»Ð¸Ð·ÑŒÐºÐ¾ тридцÑти Ñузір’їв, але у книзі подано назви лише Ñеми таких Ñузір’їв.

    +

    Як Ñ– у багатьох інших культурах, ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð°Ð»Ð¸ÑÑ Ñ‚Ð° викориÑтовувалиÑÑ +Ð´Ð»Ñ ÑÑ‚ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð° зміною Ñезонів та Ð¿ÐµÑ€ÐµÐ´Ð±Ð°Ñ‡ÐµÐ½Ð½Ñ Ñезонних змін погоди, Ñкі +впливали на повÑÑкденне Ð¶Ð¸Ñ‚Ñ‚Ñ Ð»ÑŽÐ´ÐµÐ¹. У книзі Histoire de la Mission de +Pères Capucins en l'Isle de Maragnan et terres circonvoisins, +надрукованій у Парижі 1614 року, повідомлÑєтьÑÑ, що тупі мають назви Ð´Ð»Ñ +близько тридцÑти Ñузір’їв, але у книзі подано назви лише Ñеми таких +Ñузір’їв.

    Ема

    -

    У тупі це ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¼Ð°Ñ” назву Яндутім (Òуїра-Ðанду мовою гуарані), доÑлівно можна переклаÑти Ñк Білий ÑтрауÑ. ЗображеннÑм ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ñ” великий птах.

    -

    У перші два тижні Ñ‡ÐµÑ€Ð²Ð½Ñ Ñ†Ðµ ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¿Ð¾Ð²Ð½Ñ–ÑÑ‚ÑŽ можна бачити на Ñході неба ввечері. Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡Ð°Ð»Ð¾ початок зими на півдні Бразилії Ñ– початок поÑушливого Ñезону на півночі.

    +

    У тупі це ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¼Ð°Ñ” назву Яндутім (Òуїра-Ðанду мовою +гуарані), доÑлівно можна переклаÑти Ñк Білий ÑтрауÑ. ЗображеннÑм +ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ñ” великий птах.

    +

    У перші два тижні Ñ‡ÐµÑ€Ð²Ð½Ñ Ñ†Ðµ ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¿Ð¾Ð²Ð½Ñ–ÑÑ‚ÑŽ можна бачити на Ñході неба +ввечері. Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡Ð°Ð»Ð¾ початок зими на півдні Бразилії Ñ– початок +поÑушливого Ñезону на півночі.

    Гомем Велью (Старий чоловік)

    ЗображеннÑм цього ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ñ” Ñтарий чолові, що тримає палицю.

    -

    У другій половині Ð³Ñ€ÑƒÐ´Ð½Ñ Ñ†Ðµ ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¼Ð¾Ð¶Ð½Ð° повніÑÑ‚ÑŽ бачити на Ñході вечірнього неба. Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡Ð°Ñ” початок літа у південній чаÑтині Бразилії та початок Ñезону дощів на півночі.

    +

    У другій половині Ð³Ñ€ÑƒÐ´Ð½Ñ Ñ†Ðµ ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ð¼Ð¾Ð¶Ð½Ð° повніÑÑ‚ÑŽ бачити на Ñході +вечірнього неба. Ð¡ÑƒÐ·Ñ–Ñ€â€™Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡Ð°Ñ” початок літа у південній чаÑтині Бразилії +та початок Ñезону дощів на півночі.

    Зовнішні поÑиланнÑ:

    Ðвтор

    -ЗапиÑи цієї культури неба було Ñтворено кориÑтувачем Stellarium Пауло МарÑело Понтеш (Paulo Marcelo Pontes). +ЗапиÑи цієї культури неба було Ñтворено кориÑтувачем Stellarium Пауло +МарÑело Понтешем (Paulo Marcelo Pontes) diff -Nru stellarium-0.12.1/skycultures/western/CMakeLists.txt stellarium-0.12.4/skycultures/western/CMakeLists.txt --- stellarium-0.12.1/skycultures/western/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/western/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,20 +1,12 @@ ########### install files ############### -# install info.ini -INSTALL(FILES info.ini DESTINATION share/${PACKAGE}/skycultures/western) +# install info.ini and star_names.fab +INSTALL(FILES info.ini star_names.fab DESTINATION share/${PACKAGE}/skycultures/western ) -# install star_names.fab -INSTALL(FILES star_names.fab DESTINATION share/${PACKAGE}/skycultures/western) - -# install constellations data -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/western - FILES_MATCHING PATTERN "constellation*" ) - -# install artwork -INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/western - FILES_MATCHING PATTERN "*.png" ) - -# install descriptions +# install constellations data, artwork and descriptions INSTALL(DIRECTORY ./ DESTINATION share/${PACKAGE}/skycultures/western - FILES_MATCHING PATTERN "description.*.utf8" ) + FILES_MATCHING PATTERN "constellation*" + PATTERN "*.png" + PATTERN "description.*.utf8" + PATTERN "CMakeFiles" EXCLUDE ) diff -Nru stellarium-0.12.1/skycultures/western/description.hu.utf8 stellarium-0.12.4/skycultures/western/description.hu.utf8 --- stellarium-0.12.1/skycultures/western/description.hu.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/western/description.hu.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -14,6 +14,6 @@

    Külső hivatkozások

    diff -Nru stellarium-0.12.1/skycultures/western/description.uk.utf8 stellarium-0.12.4/skycultures/western/description.uk.utf8 --- stellarium-0.12.1/skycultures/western/description.uk.utf8 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/western/description.uk.utf8 2013-08-04 06:20:27.000000000 +0000 @@ -1,18 +1,46 @@

    Західна

    -

    Західна картина зорÑного неба викориÑтовуєтьÑÑ Ð½Ð° міжнародному рівні ÑучаÑними аÑтрономами та Ñ” офіційною Ñхемою зорÑного неба Міжнародного аÑтрономічного Ñоюзу. ІÑторичні корені цієї картини ÑÑгають давньогрецької аÑтрономії, можна також проÑлідкувати вплив Ñ–ÑламÑьких аÑтрономів. +

    Західна картина зорÑного неба викориÑтовуєтьÑÑ Ð½Ð° міжнародному рівні +ÑучаÑними аÑтрономами та Ñ” офіційною Ñхемою зорÑного неба Міжнародного +аÑтрономічного Ñоюзу. ІÑторичні корені цієї картини ÑÑгають давньогрецької +аÑтрономії, можна також проÑлідкувати вплив Ñ–ÑламÑьких аÑтрономів.

    Сузір'Ñ

    -

    У західній культурі небеÑну Ñферу поділено на 88 ділÑнок найрізноманітніших розмірів, Ñкі називаютьÑÑ Ñузір'Ñми, кожна облаÑÑ‚ÑŒ має точно визначені межі, Ñкі Ñтандартизовано Міжнародним аÑтрономічним Ñоюзом. Ці ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ñ” Ñтандартним ÑпоÑобом опиÑу неба, Ñкий повніÑÑ‚ÑŽ замінив подібні набори інших картин зорÑного неба.

    +

    У західній культурі небеÑну Ñферу поділено на 88 ділÑнок найрізноманітніших +розмірів, Ñкі називаютьÑÑ Ñузір'Ñми, кожна облаÑÑ‚ÑŒ має точно +визначені межі, Ñкі Ñтандартизовано Міжнародним аÑтрономічним Ñоюзом. Ці +ÑÑƒÐ·Ñ–Ñ€â€™Ñ Ñ” Ñтандартним ÑпоÑобом опиÑу неба, Ñкий повніÑÑ‚ÑŽ замінив подібні +набори інших картин зорÑного неба.

    Ðазви зірок

    -

    Більшу чаÑтину традиційних назв зірок західної культури запозичено у арабів. У аÑтрономії заміÑÑ‚ÑŒ традиційних назв широко викориÑтовуютьÑÑ Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð‘Ð°Ñ”Ñ€Ð° та ФлемÑтіда, а також Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð· інших зорÑних каталогів, хоча Ñ” декілька випадків, коли традиційні назви Ñ” популÑрнішими за позначеннÑ.

    +

    Більшу чаÑтину традиційних назв зірок західної культури запозичено у +арабів. У аÑтрономії заміÑÑ‚ÑŒ традиційних назв широко викориÑтовуютьÑÑ +Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð‘Ð°Ñ”Ñ€Ð° та ФлемÑтіда, а також Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð· інших зорÑних каталогів, +хоча Ñ” декілька випадків, коли традиційні назви Ñ” популÑрнішими за +позначеннÑ.

    Ðльтернативні файли аÑтеризмів Ð´Ð»Ñ Stellarium

    -

    Asterisms, H.A. Rey, з книги "The Stars: A New Way To See Them", tleemans

    -

    Звантажте цей файл constellationship.fab

    +

    Asterisms, H.A. Rey, з книги "The Stars: A New Way To See Them", tleemans

    +

    Звантажте цей файл constellationship.fab

    Зовнішні поÑиланнÑ:

    -
    • Сузір'Ñ ÑÑ‚Ð°Ñ‚Ñ‚Ñ Ñƒ Вікіпедії -
    • ЗорÑний каталог ÑÑ‚Ð°Ñ‚Ñ‚Ñ Ñƒ Вікіпедії -
    • Бібліотека зображень Ñузір’їв, війÑьково-морÑька обÑÐµÑ€Ð²Ð°Ñ‚Ð¾Ñ€Ñ–Ñ Ð¡Ð¨Ð Ñ‚Ð° ІнÑтитут коÑмічних телеÑкопів. Кліше ЙоганеÑа Ð“ÐµÐ²ÐµÐ»Ñ–Ñ (Johannes Hevelius). + diff -Nru stellarium-0.12.1/skycultures/western/star_names.fab stellarium-0.12.4/skycultures/western/star_names.fab --- stellarium-0.12.1/skycultures/western/star_names.fab 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/skycultures/western/star_names.fab 2013-08-04 06:20:27.000000000 +0000 @@ -4,7 +4,7 @@ 2081|_("Ankaa") 3179|_("Shedir") 3419|_("Diphda") - 3829|_("Van Maanen 2") + 3829|_("van Maanen 2") 5447|_("Mirach") 6411|_("Adhil") 6686|_("Ruchbah") @@ -41,6 +41,7 @@ 19849|_("Keid") 20889|_("Ain") 21421|_("Aldebaran") + 23203|_("Hind's Crimson Star") 23875|_("Cursa") 24186|_("Kapteyn's Star") 24436|_("Rigel") @@ -64,7 +65,8 @@ 30324|_("Mirzam") 30343|_("Tejat") 30438|_("Canopus") - 31681|_("Alhena") + 31646|_("Plaskett's star") + 31681|_("Alhena") 32246|_("Mebsuta") 32349|_("Sirius") 33579|_("Adhara") @@ -105,9 +107,11 @@ 54061|_("Dubhe") 54872|_("Zosma") 54879|_("Chertan") + 55042|_("Innes' Star") 55203|_("Alula Australis") 55219|_("Alula Borealis") 56211|_("Giausar") + 56709|_("Przybylski's Star") 57632|_("Denebola") 57757|_("Zavijava") 58001|_("Phad") @@ -120,6 +124,7 @@ 61084|_("Gacrux") 61317|_("Chara") 61941|_("Porrima") + 62223|_("La Superba") 62434|_("Mimosa") 62956|_("Alioth") 63125|_("Cor Caroli") @@ -202,6 +207,7 @@ 102098|_("Deneb") 102488|_("Gienah") 102618|_("Albali") +104214|_("Bessel's Star") 104987|_("Kitalpha") 105199|_("Alderamin") 106032|_("Alfirk") diff -Nru stellarium-0.12.1/src/CLIProcessor.cpp stellarium-0.12.4/src/CLIProcessor.cpp --- stellarium-0.12.1/src/CLIProcessor.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/CLIProcessor.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -27,6 +27,7 @@ #include #include +#include void CLIProcessor::parseCLIArgsPreConfig(const QStringList& argList) { @@ -219,7 +220,7 @@ { try { - QString newShotDir = argsGetOptionWithArg(argList, "", "--screenshot-dir", "").toString(); + QString newShotDir = QDir::fromNativeSeparators(argsGetOptionWithArg(argList, "", "--screenshot-dir", "").toString()); if (!newShotDir.isEmpty()) StelFileMgr::setScreenshotDir(newShotDir); } @@ -230,7 +231,7 @@ } else { - const QString& confScreenshotDir = confSettings->value("main/screenshot_dir", "").toString(); + const QString& confScreenshotDir = QDir::fromNativeSeparators(confSettings->value("main/screenshot_dir", "").toString()); if (!confScreenshotDir.isEmpty()) { try diff -Nru stellarium-0.12.1/src/CMakeLists.txt stellarium-0.12.4/src/CMakeLists.txt --- stellarium-0.12.1/src/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/CMakeLists.txt 2013-09-07 15:50:48.000000000 +0000 @@ -490,110 +490,121 @@ ################## so add the definitions to the compilation. ################## Also add the full path to the .a libraries at compilation time. IF (BUILD_STATIC_PLUGINS) - IF (USE_PLUGIN_HELLOSTELMODULE) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/HelloStelModule/src/${CMAKE_CFG_INTDIR}/libHelloStelModule.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_HELLOSTELMODULE) - ENDIF() - - IF (USE_PLUGIN_SIMPLEDRAWLINE) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/SimpleDrawLine/src/${CMAKE_CFG_INTDIR}/libSimpleDrawLine.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_SIMPLEDRAWLINE) - ENDIF() - -IF (USE_PLUGIN_OBSERVABILITY) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Observability/src/${CMAKE_CFG_INTDIR}/libObservability.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_OBSERVABILITY) -ENDIF() - IF (USE_PLUGIN_ANGLEMEASURE) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/AngleMeasure/src/${CMAKE_CFG_INTDIR}/libAngleMeasure.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_ANGLEMEASURE) - ENDIF() - - IF (USE_PLUGIN_COMPASSMARKS) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/CompassMarks/src/${CMAKE_CFG_INTDIR}/libCompassMarks.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_COMPASSMARKS) - ENDIF() - - IF (USE_PLUGIN_SATELLITES) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Satellites/src/${CMAKE_CFG_INTDIR}/libSatellites.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_SATELLITES) - ENDIF() - - IF (USE_PLUGIN_TELESCOPECONTROL) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/TelescopeControl/src/${CMAKE_CFG_INTDIR}/libTelescopeControl.a") - IF(WIN32) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} libwsock32.a) - ENDIF() - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_TELESCOPECONTROL) - ENDIF() - - IF (USE_PLUGIN_LOGBOOK) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/LogBook/src/${CMAKE_CFG_INTDIR}/libLogBook.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_LOGBOOK) - SET(QT_USE_QTSQL TRUE) - ENDIF() - - IF (USE_PLUGIN_OCULARS) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Oculars/src/${CMAKE_CFG_INTDIR}/libOculars.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_OCULARS) - SET(QT_USE_QTSQL TRUE) - ENDIF() - - IF (USE_PLUGIN_TEXTUSERINTERFACE) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/TextUserInterface/src/${CMAKE_CFG_INTDIR}/libTextUserInterface.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_TEXTUSERINTERFACE) - ENDIF() - - IF (USE_PLUGIN_SOLARSYSTEMEDITOR) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/SolarSystemEditor/src/${CMAKE_CFG_INTDIR}/libSolarSystemEditor.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_SOLARSYSTEMEDITOR) - ENDIF() - - IF (USE_PLUGIN_TIMEZONECONFIGURATION) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/TimeZoneConfiguration/src/${CMAKE_CFG_INTDIR}/libTimeZoneConfiguration.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_TIMEZONECONFIGURATION) - ENDIF() - - IF (USE_PLUGIN_SUPERNOVAE) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Supernovae/src/${CMAKE_CFG_INTDIR}/libSupernovae.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_SUPERNOVAE) - ENDIF() - - IF (USE_PLUGIN_QUASARS) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Quasars/src/${CMAKE_CFG_INTDIR}/libQuasars.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_QUASARS) - ENDIF() - - IF (USE_PLUGIN_PULSARS) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Pulsars/src/${CMAKE_CFG_INTDIR}/libPulsars.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_PULSARS) - ENDIF() - - IF (USE_PLUGIN_EXOPLANETS) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Exoplanets/src/${CMAKE_CFG_INTDIR}/libExoplanets.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_EXOPLANETS) - ENDIF() - - IF (USE_PLUGIN_SVMT) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} ${CMAKE_BINARY_DIR}/plugins/svmt/src/${CMAKE_CFG_INTDIR}/libSVMT.a) - IF(APPLE) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "-framework QtDeclarative") - ELSE() - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} ${QT_LIBRARY_DIR}/libQtDeclarative.so) - ENDIF() - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_SVMT) - ENDIF() - - IF (USE_PLUGIN_VIRGO) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} ${CMAKE_BINARY_DIR}/plugins/VirGO/src/${CMAKE_CFG_INTDIR}/libVirGO.a ${CFITSIO_LIBRARIES}) - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_VIRGO) - ENDIF() - - IF (USE_PLUGIN_RENDERERSTATISTICS) - SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/RendererStatistics/src/${CMAKE_CFG_INTDIR}/libRendererStatistics.a") - ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_RENDERERSTATISTICS) - ENDIF() + ### demo plugins ### + + IF (USE_PLUGIN_HELLOSTELMODULE) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/HelloStelModule/src/${CMAKE_CFG_INTDIR}/libHelloStelModule.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_HELLOSTELMODULE) + ENDIF() + + IF (USE_PLUGIN_SIMPLEDRAWLINE) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/SimpleDrawLine/src/${CMAKE_CFG_INTDIR}/libSimpleDrawLine.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_SIMPLEDRAWLINE) + ENDIF() + + ### work plugins ### + + IF (USE_PLUGIN_ANGLEMEASURE) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/AngleMeasure/src/${CMAKE_CFG_INTDIR}/libAngleMeasure.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_ANGLEMEASURE) + ENDIF() + + IF (USE_PLUGIN_COMPASSMARKS) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/CompassMarks/src/${CMAKE_CFG_INTDIR}/libCompassMarks.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_COMPASSMARKS) + ENDIF() + + IF (USE_PLUGIN_EXOPLANETS) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Exoplanets/src/${CMAKE_CFG_INTDIR}/libExoplanets.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_EXOPLANETS) + ENDIF() + + IF (USE_PLUGIN_LOGBOOK) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/LogBook/src/${CMAKE_CFG_INTDIR}/libLogBook.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_LOGBOOK) + SET(QT_USE_QTSQL TRUE) + ENDIF() + + IF (USE_PLUGIN_NOVAE) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Novae/src/${CMAKE_CFG_INTDIR}/libNovae.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_NOVAE) + ENDIF() + + IF (USE_PLUGIN_OBSERVABILITY) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Observability/src/${CMAKE_CFG_INTDIR}/libObservability.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_OBSERVABILITY) + ENDIF() + + IF (USE_PLUGIN_OCULARS) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Oculars/src/${CMAKE_CFG_INTDIR}/libOculars.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_OCULARS) + # SET(QT_USE_QTSQL TRUE) + ENDIF() + + IF (USE_PLUGIN_PULSARS) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Pulsars/src/${CMAKE_CFG_INTDIR}/libPulsars.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_PULSARS) + ENDIF() + + IF (USE_PLUGIN_QUASARS) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Quasars/src/${CMAKE_CFG_INTDIR}/libQuasars.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_QUASARS) + ENDIF() + + IF (USE_PLUGIN_RENDERERSTATISTICS) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/RendererStatistics/src/${CMAKE_CFG_INTDIR}/libRendererStatistics.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_RENDERERSTATISTICS) + ENDIF() + + IF (USE_PLUGIN_SATELLITES) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Satellites/src/${CMAKE_CFG_INTDIR}/libSatellites.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_SATELLITES) + ENDIF() + + IF (USE_PLUGIN_SOLARSYSTEMEDITOR) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/SolarSystemEditor/src/${CMAKE_CFG_INTDIR}/libSolarSystemEditor.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_SOLARSYSTEMEDITOR) + ENDIF() + + IF (USE_PLUGIN_SUPERNOVAE) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/Supernovae/src/${CMAKE_CFG_INTDIR}/libSupernovae.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_SUPERNOVAE) + ENDIF() + + IF (USE_PLUGIN_SVMT) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} ${CMAKE_BINARY_DIR}/plugins/svmt/src/${CMAKE_CFG_INTDIR}/libSVMT.a) + IF(APPLE) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "-framework QtDeclarative") + ELSE(APPLE) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} ${QT_LIBRARY_DIR}/libQtDeclarative.so) + ENDIF(APPLE) + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_SVMT) + ENDIF() + + IF (USE_PLUGIN_TELESCOPECONTROL) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/TelescopeControl/src/${CMAKE_CFG_INTDIR}/libTelescopeControl.a") + IF(WIN32) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} libwsock32.a) + ENDIF(WIN32) + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_TELESCOPECONTROL) + ENDIF() + + IF (USE_PLUGIN_TEXTUSERINTERFACE) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/TextUserInterface/src/${CMAKE_CFG_INTDIR}/libTextUserInterface.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_TEXTUSERINTERFACE) + ENDIF() + + IF (USE_PLUGIN_TIMEZONECONFIGURATION) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} "${CMAKE_BINARY_DIR}/plugins/TimeZoneConfiguration/src/${CMAKE_CFG_INTDIR}/libTimeZoneConfiguration.a") + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_TIMEZONECONFIGURATION) + ENDIF() + + IF (USE_PLUGIN_VIRGO) + SET(STELLARIUM_STATIC_PLUGINS_LIBRARIES ${STELLARIUM_STATIC_PLUGINS_LIBRARIES} ${CMAKE_BINARY_DIR}/plugins/VirGO/src/${CMAKE_CFG_INTDIR}/libVirGO.a ${CFITSIO_LIBRARIES}) + ADD_DEFINITIONS(-DUSE_STATIC_PLUGIN_VIRGO) + ENDIF() + ENDIF() @@ -606,7 +617,7 @@ SET(extLinkerOption ${extLinkerOption} ${QT_QTSCRIPT_LIBRARY}) ENDIF() IF(WIN32) - SET(extLinkerOption ${extLinkerOption} libwinmm.a) + SET(extLinkerOption ${extLinkerOption} libwinmm.a -lws2_32) ENDIF() IF(WIN32 AND ENABLE_WINDOWS_EXE_ICON) diff -Nru stellarium-0.12.1/src/StelLogger.cpp stellarium-0.12.4/src/StelLogger.cpp --- stellarium-0.12.1/src/StelLogger.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/StelLogger.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -251,13 +251,13 @@ int i; for(i = 0; lRet == ERROR_SUCCESS; i++) { - lRet = RegOpenKeyEx(HKEY_LOCAL_MACHINE, - TEXT(qPrintable(QString("%1\\%2").arg(procKey).arg(i))), + lRet = RegOpenKeyExA(HKEY_LOCAL_MACHINE, + qPrintable(QString("%1\\%2").arg(procKey).arg(i)), 0, KEY_QUERY_VALUE, &hKey); if(lRet == ERROR_SUCCESS) { - if(RegQueryValueEx(hKey, "~MHz", NULL, &dwType, (LPBYTE)&numVal, &dwSize) == ERROR_SUCCESS) + if(RegQueryValueExA(hKey, "~MHz", NULL, &dwType, (LPBYTE)&numVal, &dwSize) == ERROR_SUCCESS) writeLog(QString("Processor speed: %1 MHz").arg(numVal)); else writeLog("Could not get processor speed."); @@ -270,7 +270,7 @@ if (lRet == ERROR_SUCCESS) { - if (RegQueryValueEx(hKey, "ProcessorNameString", NULL, &dwType, (LPBYTE)&nameStr, &nameSize) == ERROR_SUCCESS) + if (RegQueryValueExA(hKey, "ProcessorNameString", NULL, &dwType, (LPBYTE)&nameStr, &nameSize) == ERROR_SUCCESS) writeLog(QString("Processor name: %1").arg(nameStr)); else writeLog("Could not get processor name."); diff -Nru stellarium-0.12.1/src/StelMainGraphicsView.cpp stellarium-0.12.4/src/StelMainGraphicsView.cpp --- stellarium-0.12.1/src/StelMainGraphicsView.cpp 2013-04-07 12:59:18.000000000 +0000 +++ stellarium-0.12.4/src/StelMainGraphicsView.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -41,6 +41,7 @@ #include #include #include +#include #ifndef DISABLE_SCRIPTING #include "StelScriptMgr.hpp" @@ -91,6 +92,10 @@ Q_IMPORT_PLUGIN(LogBook) #endif +#ifdef USE_STATIC_PLUGIN_NOVAE +Q_IMPORT_PLUGIN(Novae) +#endif + #ifdef USE_STATIC_PLUGIN_OCULARS Q_IMPORT_PLUGIN(Oculars) #endif @@ -421,12 +426,12 @@ if (!shotDir.isDir()) { - qWarning() << "ERROR requested screenshot directory is not a directory: " << shotDir.filePath(); + qWarning() << "ERROR requested screenshot directory is not a directory: " << QDir::toNativeSeparators(shotDir.filePath()); return; } else if (!shotDir.isWritable()) { - qWarning() << "ERROR requested screenshot directory is not writable: " << shotDir.filePath(); + qWarning() << "ERROR requested screenshot directory is not writable: " << QDir::toNativeSeparators(shotDir.filePath()); return; } @@ -438,8 +443,8 @@ break; } - qDebug() << "INFO Saving screenshot in file: " << shotPath.filePath(); + qDebug() << "INFO Saving screenshot in file: " << QDir::toNativeSeparators(shotPath.filePath()); if (!im.save(shotPath.filePath())) { - qWarning() << "WARNING failed to write screenshot to: " << shotPath.filePath(); + qWarning() << "WARNING failed to write screenshot to: " << QDir::toNativeSeparators(shotPath.filePath()); } } diff -Nru stellarium-0.12.1/src/StelMainGraphicsView.hpp stellarium-0.12.4/src/StelMainGraphicsView.hpp --- stellarium-0.12.1/src/StelMainGraphicsView.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/StelMainGraphicsView.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -106,13 +106,6 @@ //! Updates the scene and process all events void updateScene() { - - #ifdef QT_MAC_USE_COCOA - //This call solves the problems with the qt event dispatcher. The stack grew huge and many events were discarded - //http://bugreports.qt.nokia.com/browse/QTBUG-7502 - //The previous bug has been closed an fixed but this line is still needed. The patch didn't solve our problem - QCoreApplication::processEvents(QEventLoop::AllEvents); - #endif scene()->update(); } diff -Nru stellarium-0.12.1/src/StelMainWindow.cpp stellarium-0.12.4/src/StelMainWindow.cpp --- stellarium-0.12.1/src/StelMainWindow.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/StelMainWindow.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -36,7 +36,11 @@ #include #ifdef BUILD_FOR_MAEMO +#if QT_VERSION +#else +#include +#endif #include #include #endif diff -Nru stellarium-0.12.1/src/core/MultiLevelJsonBase.cpp stellarium-0.12.4/src/core/MultiLevelJsonBase.cpp --- stellarium-0.12.1/src/core/MultiLevelJsonBase.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/MultiLevelJsonBase.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -146,7 +147,7 @@ } catch (std::runtime_error e) { - qWarning() << "WARNING : Can't parse JSON description: " << fileName << ": " << e.what(); + qWarning() << "WARNING : Can't parse JSON description: " << QDir::toNativeSeparators(fileName) << ": " << e.what(); errorOccured = true; f.close(); return; diff -Nru stellarium-0.12.1/src/core/StelApp.cpp stellarium-0.12.4/src/core/StelApp.cpp --- stellarium-0.12.1/src/core/StelApp.cpp 2013-04-05 12:45:44.000000000 +0000 +++ stellarium-0.12.4/src/core/StelApp.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -65,6 +65,7 @@ #include #include #include +#include // Initialize static variables StelApp* StelApp::singleton = NULL; @@ -245,7 +246,7 @@ QNetworkDiskCache* cache = new QNetworkDiskCache(networkAccessManager); QString cachePath = StelFileMgr::getCacheDir(); - qDebug() << "Cache directory is: " << cachePath; + qDebug() << "Cache directory is: " << QDir::toNativeSeparators(cachePath); cache->setCacheDirectory(cachePath); networkAccessManager->setCache(cache); connect(networkAccessManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(reportFileDownloadFinished(QNetworkReply*))); diff -Nru stellarium-0.12.1/src/core/StelAudioMgr.cpp stellarium-0.12.4/src/core/StelAudioMgr.cpp --- stellarium-0.12.1/src/core/StelAudioMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelAudioMgr.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -18,6 +18,7 @@ #include "StelAudioMgr.hpp" #include +#include StelAudioMgr::StelAudioMgr() { @@ -87,7 +88,7 @@ #else // HAVE_QT_PHONON void StelAudioMgr::loadSound(const QString& filename, const QString& id) { - qWarning() << "This build of Stellarium does not support sound - cannot load audio" << filename << id; + qWarning() << "This build of Stellarium does not support sound - cannot load audio" << QDir::toNativeSeparators(filename) << id; } StelAudioMgr::~StelAudioMgr() {;} void StelAudioMgr::playSound(const QString&) {;} diff -Nru stellarium-0.12.1/src/core/StelCore.cpp stellarium-0.12.4/src/core/StelCore.cpp --- stellarium-0.12.1/src/core/StelCore.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelCore.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -893,11 +893,11 @@ { // cache last time to prevent to much slow system call static double lastJD = getJDay(); - static bool previousResult = (fabs(getJDay()-StelUtils::getJDFromSystem())JD_SECOND/4) { lastJD = getJDay(); - previousResult = (fabs(getJDay()-StelUtils::getJDFromSystem())getHomePlanet()->getSiderealTime(JDay)+position->getCurrentLocation().longitude)*M_PI/180.; } -//! Get the duration of a sideral day for the current observer in day. +//! Get the duration of a sidereal day for the current observer in day. double StelCore::getLocalSideralDayLength() const { return position->getHomePlanet()->getSiderealDay(); } +//! Get the duration of a sidereal year for the current observer in days. +double StelCore::getLocalSideralYearLength() const +{ + return position->getHomePlanet()->getSiderealPeriod(); +} + QString StelCore::getStartupTimeMode() { return startupTimeMode; @@ -1329,7 +1335,7 @@ break; case ChaprontMeeus: // Chapront, Chapront-Touze & Francou (1997) & Meeus (1998) algorithm for DeltaT - ndot = -26.0; // n.dot = -26.0 "/cy/cy + ndot = -25.7376; // n.dot = -25.7376 "/cy/cy DeltaT = StelUtils::getDeltaTByChaprontMeeus(jDay); break; case JPLHorizons: @@ -1370,6 +1376,16 @@ ndot = -25.858; // n.dot = -25.858 "/cy/cy DeltaT = StelUtils::getDeltaTByEspenakMeeus(jDay); break; + case Banjevic: + // Banjevic (2006) algorithm for DeltaT + ndot = -26.0; // n.dot = -26.0 "/cy/cy + DeltaT = StelUtils::getDeltaTByBanjevic(jDay); + break; + case IslamSadiqQureshi: + // Islam, Sadiq & Qureshi (2008 + revisited 2013) algorithm for DeltaT (6 polynomials) + ndot = -26.0; // n.dot = -26.0 "/cy/cy + DeltaT = StelUtils::getDeltaTByIslamSadiqQureshi(jDay); + break; case Custom: // User defined coefficients for quadratic equation for DeltaT ndot = getCustomNDot(); // n.dot = custom value "/cy/cy @@ -1496,6 +1512,12 @@ case EspenakMeeus: // GENERAL SOLUTION description = q_("This solution by F. Espenak and J. Meeus, based on Morrison & Stephenson (2004) and a polynomial fit through tabulated values for 1600-2000, is used for the %1NASA Eclipse Web Site%2 and in their Five Millennium Canon of Solar Eclipses: -1900 to +3000 (2006). This formula is also used in the solar, lunar and planetary ephemeris program SOLEX.").arg("").arg("").append(getCurrentDeltaTAlgorithmValidRange(jd, &marker)).append(" ").append(q_("Used by default.")).append(""); break; + case Banjevic: + description = q_("This solution by B. Banjevic, based on Stephenson & Morrison (1984), was published in article Ancient eclipses and dating the fall of Babylon (%1).").arg("2006").append(getCurrentDeltaTAlgorithmValidRange(jd, &marker)); + break; + case IslamSadiqQureshi: + description = q_("This solution by S. Islam, M. Sadiq and M. S. Qureshi, based on Meeus & Simons (2000), was published in article Error Minimization of Polynomial Approximation of DeltaT (%1) and revisited by Sana Islam in 2013.").arg("2008").append(getCurrentDeltaTAlgorithmValidRange(jd, &marker)); + break; case Custom: description = q_("This is a quadratic formula for calculation of %1T with coefficients defined by the user.").arg(QChar(0x0394)); break; @@ -1578,7 +1600,7 @@ validRangeAppendix = q_("with a mean error of less than one second, max. error 1.9s, and meaningless values outside this range"); break; case ChaprontTouze: - // FIXME: This is valid range? + // FIXME: It's valid range? start = -4000; finish = 8000; break; @@ -1592,9 +1614,7 @@ break; case ChaprontMeeus: start = -400; // 1800; // not explicitly given, but guess based on his using ChaprontFrancou which is cited elsewhere in a similar term with -391. - finish = 2150; // 1997; - //validRangeAppendix = q_("with a maximum error of 2.3 seconds"); // Wrong: This is only for the unused expression on p. 80! - //validRangeAppendix = q_("(estimated)"); + finish = 2150; // 1997; break; case JPLHorizons: start = -2999; @@ -1628,6 +1648,16 @@ start = -1999; finish = 3000; break; + case Banjevic: + start = -2020; + finish = 1620; + validRangeAppendix = q_("with zero values outside this range"); + break; + case IslamSadiqQureshi: + start = 1620; + finish = 2007; + validRangeAppendix = q_("with zero values outside this range"); + break; case Custom: // Valid range unknown break; @@ -1639,7 +1669,7 @@ validRange = q_("Valid range of usage: between years %1 and %2, %3.").arg(start).arg(finish).arg(validRangeAppendix); else validRange = q_("Valid range of usage: between years %1 and %2.").arg(start).arg(finish); - if (start > year or year > finish) + if (start > year || year > finish) *marker = "*"; } else diff -Nru stellarium-0.12.1/src/core/StelCore.hpp stellarium-0.12.4/src/core/StelCore.hpp --- stellarium-0.12.1/src/core/StelCore.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelCore.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -116,6 +116,8 @@ MorrisonStephenson2004, //!< Morrison & Stephenson (2004, 2005) algorithm for DeltaT Reijs, //!< Reijs (2006) algorithm for DeltaT EspenakMeeus, //!< Espenak & Meeus (2006) algorithm for DeltaT (Recommended, default) + Banjevic, //!< Banjevic (2006) algorithm for DeltaT + IslamSadiqQureshi, //!< Islam, Sadiq & Qureshi (2008 + revisited 2013) algorithm for DeltaT (6 polynomials) Custom //!< User defined coefficients for quadratic equation for DeltaT }; @@ -253,13 +255,16 @@ static const double JD_HOUR; static const double JD_DAY; - //! Get the sideral time shifted by the observer longitude - //! @return the locale sideral time in radian + //! Get the sidereal time shifted by the observer longitude + //! @return the local sidereal time in radian double getLocalSideralTime() const; - //! Get the duration of a sideral day for the current observer in day. + //! Get the duration of a sidereal day for the current observer in day. double getLocalSideralDayLength() const; + //! Get the duration of a sidereal year for the current observer in days. + double getLocalSideralYearLength() const; + //! Return the startup mode, can be preset|Preset or anything else QString getStartupTimeMode(); void setStartupTimeMode(const QString& s); diff -Nru stellarium-0.12.1/src/core/StelFileMgr.cpp stellarium-0.12.4/src/core/StelFileMgr.cpp --- stellarium-0.12.1/src/core/StelFileMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelFileMgr.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -59,7 +59,7 @@ if (!QFile(userDir).exists()) { - qWarning() << "User config directory does not exist: " << userDir; + qWarning() << "User config directory does not exist: " << QDir::toNativeSeparators(userDir); } try { @@ -411,7 +411,9 @@ else { qWarning() << "WARNING StelFileMgr::StelFileMgr: could not find install location:" - << installLocation.filePath() << " (we checked for " << checkFile.filePath() << ")."; + << QDir::toNativeSeparators(installLocation.filePath()) + << " (we checked for " << QDir::toNativeSeparators(checkFile.filePath()) + << ")."; throw (std::runtime_error("NOT FOUND")); } } @@ -426,12 +428,12 @@ QFileInfo userDirFI(newDir); if (!userDirFI.exists() || !userDirFI.isDir()) { - qWarning() << "WARNING StelFileMgr::setScreenshotDir dir does not exist: " << userDirFI.filePath(); + qWarning() << "WARNING StelFileMgr::setScreenshotDir dir does not exist: " << QDir::toNativeSeparators(userDirFI.filePath()); throw std::runtime_error("NOT_VALID"); } else if (!userDirFI.isWritable()) { - qWarning() << "WARNING StelFileMgr::setScreenshotDir dir is not writable: " << userDirFI.filePath(); + qWarning() << "WARNING StelFileMgr::setScreenshotDir dir is not writable: " << QDir::toNativeSeparators(userDirFI.filePath()); throw std::runtime_error("NOT_VALID"); } screenshotDir = userDirFI.filePath(); @@ -491,7 +493,7 @@ if (!uDir.exists()) { // The modules directory doesn't exist, lets create it. - qDebug() << "Creating directory " << uDir.filePath(); + qDebug() << "Creating directory " << QDir::toNativeSeparators(uDir.filePath()); if (!QDir("/").mkpath(uDir.filePath())) { throw std::runtime_error(QString("Could not create directory: " +uDir.filePath()).toStdString()); diff -Nru stellarium-0.12.1/src/core/StelFileMgr.hpp stellarium-0.12.4/src/core/StelFileMgr.hpp --- stellarium-0.12.1/src/core/StelFileMgr.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelFileMgr.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -17,7 +17,7 @@ * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ -#ifndef _STELFILEMGR_HPP +#ifndef _STELFILEMGR_HPP_ #define _STELFILEMGR_HPP_ #define CHECK_FILE "data/ssystem.ini" diff -Nru stellarium-0.12.1/src/core/StelIniParser.cpp stellarium-0.12.4/src/core/StelIniParser.cpp --- stellarium-0.12.1/src/core/StelIniParser.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelIniParser.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -79,7 +79,7 @@ bool writeStelIniFile(QIODevice &device, const QSettings::SettingsMap &map) { int maxKeyWidth = 30; - QRegExp reKeyXt("^(.+)/(.+)$"); // for extracting keys/values + QRegExp reKeyXt("^([^/]+)/(.+)$"); // for extracting keys/values // first go over map and find longest key length for(int i=0; i #include #include +#include StelLocationMgr::StelLocationMgr() { @@ -68,7 +69,7 @@ QFile sourcefile(cityDataPath); if (!sourcefile.open(QIODevice::ReadOnly)) { - qWarning() << "ERROR: Could not open location data file: " << cityDataPath; + qWarning() << "ERROR: Could not open location data file: " << QDir::toNativeSeparators(cityDataPath); return res; } @@ -105,14 +106,14 @@ { // Note it is quite normal to nor have a user locations file (e.g. first run) if (!isUserLocation) - qWarning() << "WARNING: Failed to locate location data file: " << fileName << e.what(); + qWarning() << "WARNING: Failed to locate location data file: " << QDir::toNativeSeparators(fileName) << e.what(); return locations; } QFile sourcefile(cityDataPath); if (!sourcefile.open(QIODevice::ReadOnly | QIODevice::Text)) { - qWarning() << "ERROR: Could not open location data file: " << cityDataPath; + qWarning() << "ERROR: Could not open location data file: " << QDir::toNativeSeparators(cityDataPath); return locations; } @@ -232,20 +233,20 @@ { if (!StelFileMgr::mkDir(StelFileMgr::getUserDir()+"/data")) { - qWarning() << "ERROR - cannot create non-existent data directory" << StelFileMgr::getUserDir()+"/data"; + qWarning() << "ERROR - cannot create non-existent data directory" << QDir::toNativeSeparators(StelFileMgr::getUserDir()+"/data"); qWarning() << "Location cannot be saved"; return false; } } cityDataPath = StelFileMgr::getUserDir()+"/data/user_locations.txt"; - qWarning() << "Will create a new user location file: " << cityDataPath; + qWarning() << "Will create a new user location file: " << QDir::toNativeSeparators(cityDataPath); } QFile sourcefile(cityDataPath); if (!sourcefile.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append)) { - qWarning() << "ERROR: Could not open location data file: " << cityDataPath; + qWarning() << "ERROR: Could not open location data file: " << QDir::toNativeSeparators(cityDataPath); return false; } @@ -293,20 +294,20 @@ { if (!StelFileMgr::mkDir(StelFileMgr::getUserDir()+"/data")) { - qWarning() << "ERROR - cannot create non-existent data directory" << StelFileMgr::getUserDir()+"/data"; + qWarning() << "ERROR - cannot create non-existent data directory" << QDir::toNativeSeparators(StelFileMgr::getUserDir()+"/data"); qWarning() << "Location cannot be saved"; return false; } } cityDataPath = StelFileMgr::getUserDir()+"/data/user_locations.txt"; - qWarning() << "Will create a new user location file: " << cityDataPath; + qWarning() << "Will create a new user location file: " << QDir::toNativeSeparators(cityDataPath); } QFile sourcefile(cityDataPath); if (!sourcefile.open(QIODevice::WriteOnly | QIODevice::Text)) { - qWarning() << "ERROR: Could not open location data file: " << cityDataPath; + qWarning() << "ERROR: Could not open location data file: " << QDir::toNativeSeparators(cityDataPath); return false; } diff -Nru stellarium-0.12.1/src/core/StelModuleMgr.cpp stellarium-0.12.4/src/core/StelModuleMgr.cpp --- stellarium-0.12.1/src/core/StelModuleMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelModuleMgr.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -20,6 +20,7 @@ #include #include #include +#include #include "StelModuleMgr.hpp" #include "StelApp.hpp" @@ -245,7 +246,7 @@ QPluginLoader loader(moduleFullPath); if (!loader.load()) { - qWarning() << "Couldn't load the dynamic library: " << moduleFullPath << ": " << loader.errorString(); + qWarning() << "Couldn't load the dynamic library: " << QDir::toNativeSeparators(moduleFullPath) << ": " << loader.errorString(); qWarning() << "Plugin " << dir << " will not be loaded."; continue; } @@ -253,7 +254,7 @@ QObject* obj = loader.instance(); if (!obj) { - qWarning() << "Couldn't open the dynamic library: " << moduleFullPath << ": " << loader.errorString(); + qWarning() << "Couldn't open the dynamic library: " << QDir::toNativeSeparators(moduleFullPath) << ": " << loader.errorString(); qWarning() << "Plugin " << dir << " will not be open."; continue; } diff -Nru stellarium-0.12.1/src/core/StelObject.cpp stellarium-0.12.4/src/core/StelObject.cpp --- stellarium-0.12.1/src/core/StelObject.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelObject.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -36,7 +36,7 @@ return core->j2000ToEquinoxEqu(getJ2000EquatorialPos(core)); } -// Get observer local sideral coordinate +// Get observer local sidereal coordinate Vec3d StelObject::getSideralPosGeometric(const StelCore* core) const { // Hour Angle corrected to Delta-T value diff -Nru stellarium-0.12.1/src/core/StelObjectMgr.cpp stellarium-0.12.4/src/core/StelObjectMgr.cpp --- stellarium-0.12.1/src/core/StelObjectMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelObjectMgr.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -228,7 +228,7 @@ Find and return the list of at most maxNbItem objects auto-completing passed object I18 name *************************************************************************/ -QStringList StelObjectMgr::listMatchingObjectsI18n(const QString& objPrefix, unsigned int maxNbItem) const +QStringList StelObjectMgr::listMatchingObjectsI18n(const QString& objPrefix, unsigned int maxNbItem, bool useStartOfWords) const { QStringList result; @@ -236,7 +236,7 @@ foreach (const StelObjectModule* m, objectsModule) { // Get matching object for this module - QStringList matchingObj = m->listMatchingObjectsI18n(objPrefix, maxNbItem); + QStringList matchingObj = m->listMatchingObjectsI18n(objPrefix, maxNbItem, useStartOfWords); result += matchingObj; maxNbItem-=matchingObj.size(); } @@ -249,7 +249,7 @@ Find and return the list of at most maxNbItem objects auto-completing passed object English name *************************************************************************/ -QStringList StelObjectMgr::listMatchingObjects(const QString& objPrefix, unsigned int maxNbItem) const +QStringList StelObjectMgr::listMatchingObjects(const QString& objPrefix, unsigned int maxNbItem, bool useStartOfWords) const { QStringList result; @@ -257,7 +257,7 @@ foreach (const StelObjectModule* m, objectsModule) { // Get matching object for this module - QStringList matchingObj = m->listMatchingObjects(objPrefix, maxNbItem); + QStringList matchingObj = m->listMatchingObjects(objPrefix, maxNbItem, useStartOfWords); result += matchingObj; maxNbItem-=matchingObj.size(); } diff -Nru stellarium-0.12.1/src/core/StelObjectMgr.hpp stellarium-0.12.4/src/core/StelObjectMgr.hpp --- stellarium-0.12.1/src/core/StelObjectMgr.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelObjectMgr.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -80,14 +80,16 @@ //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names. + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object names by order of relevance, or an empty list if nothing match - QStringList listMatchingObjectsI18n(const QString& objPrefix, unsigned int maxNbItem=5) const; + QStringList listMatchingObjectsI18n(const QString& objPrefix, unsigned int maxNbItem=5, bool useStartOfWords=false) const; //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names. + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object names by order of relevance, or an empty list if nothing match - QStringList listMatchingObjects(const QString& objPrefix, unsigned int maxNbItem=5) const; + QStringList listMatchingObjects(const QString& objPrefix, unsigned int maxNbItem=5, bool useStartOfWords=false) const; QStringList listAllModuleObjects(const QString& moduleId, bool inEnglish) const; QMap objectModulesMap() const; diff -Nru stellarium-0.12.1/src/core/StelObjectModule.hpp stellarium-0.12.4/src/core/StelObjectModule.hpp --- stellarium-0.12.1/src/core/StelObjectModule.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelObjectModule.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -58,14 +58,16 @@ //! Find and return the list of at most maxNbItem objects auto-completing passed object I18 name //! @param objPrefix the first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing matches - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const = 0; + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const = 0; //! Find and return the list of at most maxNbItem objects auto-completing passed object English name //! @param objPrefix the first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing matches - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const = 0; + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const = 0; virtual QStringList listAllObjects(bool inEnglish) const = 0; diff -Nru stellarium-0.12.1/src/core/StelObserver.cpp stellarium-0.12.4/src/core/StelObserver.cpp --- stellarium-0.12.1/src/core/StelObserver.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelObserver.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -27,6 +27,7 @@ #include "StelLocationMgr.hpp" #include "StelModuleMgr.hpp" +#include "LandscapeMgr.hpp" #include #include @@ -261,6 +262,15 @@ { timeToGo = 0.; currentLocation = moveTargetLocation; + LandscapeMgr* ls = GETSTELMODULE(LandscapeMgr); + if (ls->getFlagLandscapeAutoSelection()) + { + // If we have a landscape for target planet then set it, otherwise use default landscape + if (ls->getAllLandscapeNames().indexOf(currentLocation.planetName)>0) + ls->setCurrentLandscapeName(currentLocation.planetName); + else + ls->setCurrentLandscapeID(ls->getDefaultLandscapeID()); + } } else { @@ -268,7 +278,8 @@ { // Update SpaceShip position static_cast(artificialPlanet.data())->computeAverage(timeToGo/(timeToGo + deltaTime)); - currentLocation.planetName = q_("SpaceShip"); + // TRANSLATORS: "Planet name" displayed when "flying" to another planet with Ctrl+G. + currentLocation.planetName = N_("SpaceShip"); currentLocation.name = q_(moveStartLocation.planetName) + " -> " + q_(moveTargetLocation.planetName); } else diff -Nru stellarium-0.12.1/src/core/StelRegionObject.hpp stellarium-0.12.4/src/core/StelRegionObject.hpp --- stellarium-0.12.1/src/core/StelRegionObject.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelRegionObject.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _STELREGIONOBJECT_HPP_ diff -Nru stellarium-0.12.1/src/core/StelShortcutMgr.cpp stellarium-0.12.4/src/core/StelShortcutMgr.cpp --- stellarium-0.12.1/src/core/StelShortcutMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelShortcutMgr.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -32,6 +32,7 @@ #include #include #include +#include StelShortcutMgr::StelShortcutMgr() { @@ -229,7 +230,7 @@ { StelFileMgr::makeSureDirExistsAndIsWritable(StelFileMgr::getUserDir() + "/data/"); QString shortcutsFileFullPath = StelFileMgr::getUserDir() + "/data/shortcuts.json"; - qDebug() << "Creating file" << shortcutsFileFullPath; + qDebug() << "Creating file" << QDir::toNativeSeparators(shortcutsFileFullPath); QString defaultPath = StelFileMgr::findFile("data/default_shortcuts.json"); QFile::copy(defaultPath, shortcutsFileFullPath); } @@ -310,7 +311,7 @@ QString scriptFilePath = StelFileMgr::findFile(filePath); if (!QFileInfo(scriptFilePath).exists()) { - qWarning() << "Couldn't find script file" << scriptFilePath + qWarning() << "Couldn't find script file" << QDir::toNativeSeparators(scriptFilePath) << "for shortcut" << actionId; } else @@ -359,7 +360,7 @@ QString defaultPath = StelFileMgr::getInstallationDir() + "/data/default_shortcuts.json"; if (!QFileInfo(defaultPath).exists()) { - qWarning() << "Default shortcuts file (" << defaultPath + qWarning() << "Default shortcuts file (" << QDir::toNativeSeparators(defaultPath) << ") doesn't exist, restore defaults failed."; return; } @@ -388,7 +389,7 @@ if (!StelFileMgr::mkDir(userDataPath)) { qWarning() << "ERROR - cannot create non-existent data directory" - << userDataPath; + << QDir::toNativeSeparators(userDataPath); qWarning() << "Shortcuts aren't' saved"; return; } @@ -399,14 +400,14 @@ if (!shortcutsFile.open(QIODevice::WriteOnly | QIODevice::Text)) { qWarning() << "ERROR: Could not save shortcuts file" - << shortcutsFilePath; + << QDir::toNativeSeparators(shortcutsFilePath); return; } // QTextStream stream(&shortcutsFile); saveShortcuts(&shortcutsFile); shortcutsFile.close(); - qDebug() << "New shortcuts file saved to" << shortcutsFilePath; + qDebug() << "New shortcuts file saved to" << QDir::toNativeSeparators(shortcutsFilePath); } void StelShortcutMgr::saveShortcuts(QIODevice* output) const diff -Nru stellarium-0.12.1/src/core/StelSkyCultureMgr.cpp stellarium-0.12.4/src/core/StelSkyCultureMgr.cpp --- stellarium-0.12.1/src/core/StelSkyCultureMgr.cpp 2013-04-02 15:38:14.000000000 +0000 +++ stellarium-0.12.4/src/core/StelSkyCultureMgr.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -30,6 +30,7 @@ #include #include #include +#include StelSkyCultureMgr::StelSkyCultureMgr() { @@ -54,7 +55,7 @@ } catch (std::runtime_error& e) { - qWarning() << "WARNING: unable to successfully read info.ini file from skyculture dir" << dir; + qWarning() << "WARNING: unable to successfully read info.ini file from skyculture dir" << QDir::toNativeSeparators(dir); } } } @@ -78,7 +79,7 @@ // make sure culture definition exists before attempting or will die if (directoryToSkyCultureEnglish(cultureDir) == "") { - qWarning() << "Invalid sky culture directory: " << cultureDir; + qWarning() << "Invalid sky culture directory: " << QDir::toNativeSeparators(cultureDir); return false; } currentSkyCultureDir = cultureDir; @@ -149,7 +150,7 @@ if (culture=="") { qWarning() << "WARNING: StelSkyCultureMgr::directoryToSkyCultureI18(\"" - << directory << "\"): could not find directory"; + << QDir::toNativeSeparators(directory) << "\"): could not find directory"; return ""; } return q_(culture); diff -Nru stellarium-0.12.1/src/core/StelSkyImageTile.cpp stellarium-0.12.4/src/core/StelSkyImageTile.cpp --- stellarium-0.12.1/src/core/StelSkyImageTile.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelSkyImageTile.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -291,7 +291,7 @@ float extinctionMagnitude=0.0f; extinction.forward(&(altAz[2]), &extinctionMagnitude); // compute a simple factor from magnitude loss. - float extinctionFactor=pow(0.4, extinctionMagnitude); // drop of one magnitude: factor 2.5 or 40% + float extinctionFactor=pow(0.4f , extinctionMagnitude); // drop of one magnitude: factor 2.5 or 40% extinctedColor[0]*=fabs(extinctionFactor); extinctedColor[1]*=fabs(extinctionFactor); extinctedColor[2]*=fabs(extinctionFactor); diff -Nru stellarium-0.12.1/src/core/StelSkyLayerMgr.cpp stellarium-0.12.4/src/core/StelSkyLayerMgr.cpp --- stellarium-0.12.1/src/core/StelSkyLayerMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelSkyLayerMgr.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -302,7 +302,7 @@ } catch (std::runtime_error& e) { - qWarning() << "Could not find image" << filename << ":" << e.what(); + qWarning() << "Could not find image" << QDir::toNativeSeparators(filename) << ":" << e.what(); return false; } } @@ -368,7 +368,7 @@ } catch (std::runtime_error& e) { - qWarning() << "Could not find image" << filename << ":" << e.what(); + qWarning() << "Could not find image" << QDir::toNativeSeparators(filename) << ":" << e.what(); return false; } } diff -Nru stellarium-0.12.1/src/core/StelSkyLayerMgr.hpp stellarium-0.12.4/src/core/StelSkyLayerMgr.hpp --- stellarium-0.12.1/src/core/StelSkyLayerMgr.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelSkyLayerMgr.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -85,13 +85,13 @@ //! @param filename the name of the image file to load. Will be //! searched for using StelFileMgr, so partial names are fine. //! @param ra0 right ascention of corner 0 in degrees - //! @param dec0 declenation of corner 0 in degrees + //! @param dec0 declination of corner 0 in degrees //! @param ra1 right ascention of corner 1 in degrees - //! @param dec1 declenation of corner 1 in degrees + //! @param dec1 declination of corner 1 in degrees //! @param ra2 right ascention of corner 2 in degrees - //! @param dec2 declenation of corner 2 in degrees + //! @param dec2 declination of corner 2 in degrees //! @param ra3 right ascention of corner 3 in degrees - //! @param dec3 declenation of corner 3 in degrees + //! @param dec3 declination of corner 3 in degrees //! @param minRes the minimum resolution setting for the image //! @param maxBright the maximum brightness setting for the image //! @param visible initial visibility setting diff -Nru stellarium-0.12.1/src/core/StelSphereGeometry.cpp stellarium-0.12.4/src/core/StelSphereGeometry.cpp --- stellarium-0.12.1/src/core/StelSphereGeometry.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelSphereGeometry.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -463,7 +463,7 @@ ta.b=(texCoords->a+texCoords->b)*0.5; ta.c=texCoords->c; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1, true, true, false); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1, true, true, false); //va.a=vertices->a+vertices->b; //va.a.normalize(); @@ -476,7 +476,7 @@ ta.b=texCoords->b; ta.c=texCoords->c; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1, true, false, true); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1, true, false, true); return; } @@ -492,7 +492,7 @@ ta.b=texCoords->b; ta.c=(texCoords->b+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1, false, true, true); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1, false, true, true); va.a=vertices->a; //va.b=vertices->b+vertices->c; @@ -505,7 +505,7 @@ ta.b=(texCoords->b+texCoords->c)*0.5; ta.c=texCoords->c; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1, true, true, false); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1, true, true, false); return; } @@ -521,7 +521,7 @@ ta.b=texCoords->b; ta.c=(texCoords->a+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1, false, true, true); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1, false, true, true); //va.a=vertices->a+vertices->c; //va.a.normalize(); @@ -534,7 +534,7 @@ ta.b=texCoords->b; ta.c=texCoords->c; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1, true, false, true); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1, true, false, true); return; } @@ -552,7 +552,7 @@ ta.b=(texCoords->a+texCoords->b)*0.5; ta.c=(texCoords->b+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1); //va.a=vertices->a+vertices->b; //va.a.normalize(); @@ -566,7 +566,7 @@ ta.b=texCoords->b; ta.c=(texCoords->b+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1); va.a=vertices->a; //va.b=vertices->b+vertices->c; @@ -579,7 +579,7 @@ ta.b=(texCoords->b+texCoords->c)*0.5; ta.c=texCoords->c; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1, true, true, false); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1, true, true, false); return; } if (cDiscontinuity1 && !cDiscontinuity2 && cDiscontinuity3) @@ -595,7 +595,7 @@ ta.b=(texCoords->a+texCoords->b)*0.5; ta.c=(texCoords->a+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1); //va.a=vertices->a+vertices->b; //va.a.normalize(); @@ -609,7 +609,7 @@ ta.b=texCoords->c; ta.c=(texCoords->a+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1); //va.a=vertices->a+vertices->b; @@ -622,7 +622,7 @@ ta.b=texCoords->b; ta.c=texCoords->c; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1, true, false, true); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1, true, false, true); return; } @@ -638,7 +638,7 @@ ta.b=texCoords->b; ta.c=(texCoords->b+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1, false, true, true); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1, false, true, true); //va.a=vertices->b+vertices->c; //va.a.normalize(); @@ -652,7 +652,7 @@ ta.b=texCoords->c; ta.c=(texCoords->a+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1); va.b=va.a; va.a=vertices->a; @@ -666,7 +666,7 @@ ta.b=(texCoords->b+texCoords->c)*0.5; ta.c=(texCoords->a+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1); return; } @@ -683,7 +683,7 @@ ta.b=(texCoords->b+texCoords->c)*0.5; ta.c=(texCoords->a+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1); va.b=va.a; va.a=vertices->a; @@ -697,7 +697,7 @@ ta.b=(texCoords->a+texCoords->b)*0.5; ta.c=(texCoords->a+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1); //va.a=vertices->a+vertices->b; //va.a.normalize(); @@ -711,7 +711,7 @@ ta.b=texCoords->b; ta.c=(texCoords->b+texCoords->c)*0.5; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1); va.a=vertices->a;va.a+=vertices->c; va.a.normalize(); @@ -725,7 +725,7 @@ ta.b=(texCoords->b+texCoords->c)*0.5; ta.c=texCoords->c; } - projectSphericalTriangle(projector, clippingCap, &va, &ta, buffer, maxSqDistortion, nbI+1); + projectSphericalTriangle(projector, clippingCap, &va, texCoords ? &ta : 0, buffer, maxSqDistortion, nbI+1); return; } @@ -759,7 +759,8 @@ void SphericalRegion::updateFillVertexBuffer(StelRenderer* renderer, const DrawParams& params, bool handleDiscontinuity) { - const QVector& vertices = getOctahedronPolygon().fillVertices(); + const OctahedronPolygon &octahedron = getOctahedronPolygon(); + const QVector& vertices = octahedron.fillVertices(); StelProjector* projector = params.projector_; prepareVertexBufferUpdate(&fillPlainVertexBuffer, renderer); diff -Nru stellarium-0.12.1/src/core/StelSphericalIndexMultiRes.cpp stellarium-0.12.4/src/core/StelSphericalIndexMultiRes.cpp --- stellarium-0.12.1/src/core/StelSphericalIndexMultiRes.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelSphericalIndexMultiRes.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "StelSphericalIndexMultiRes.hpp" diff -Nru stellarium-0.12.1/src/core/StelSphericalIndexMultiRes.hpp stellarium-0.12.4/src/core/StelSphericalIndexMultiRes.hpp --- stellarium-0.12.1/src/core/StelSphericalIndexMultiRes.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelSphericalIndexMultiRes.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _STELSPHERICALINDEXMULTIRES_HPP_ diff -Nru stellarium-0.12.1/src/core/StelTranslator.cpp stellarium-0.12.4/src/core/StelTranslator.cpp --- stellarium-0.12.1/src/core/StelTranslator.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelTranslator.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -17,7 +17,11 @@ * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ +#ifdef _MSC_BUILD +#include "kdewin32/dirent.h" +#else #include +#endif #include #include #include @@ -28,6 +32,7 @@ #include #include #include +#include #include "StelUtils.hpp" #include "StelTranslator.hpp" @@ -68,10 +73,10 @@ { #ifdef Q_OS_WIN char ulng[3], ctry[3]; - if (GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SISO639LANGNAME, ulng, 3)) + if (GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SISO639LANGNAME, ulng, 3)) { ulng[2] = '\0'; - if (GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SISO3166CTRYNAME, ctry, 3)) + if (GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SISO3166CTRYNAME, ctry, 3)) { ctry[2] = '\0'; systemLangName = QString("%1_%2").arg(ulng).arg(ctry); @@ -215,7 +220,7 @@ if ((dp = opendir(QFile::encodeName(locDir).constData())) == NULL) { - qWarning() << "Unable to find locale directory containing translations:" << localeDir; + qWarning() << "Unable to find locale directory containing translations:" << QDir::toNativeSeparators(localeDir); return result; } @@ -245,7 +250,7 @@ QFile inf(fileName); if (!inf.open(QIODevice::ReadOnly)) { - qWarning() << "Can't open ISO639 codes file " << fileName; + qWarning() << "Can't open ISO639 codes file " << QDir::toNativeSeparators(fileName); Q_ASSERT(0); } diff -Nru stellarium-0.12.1/src/core/StelUtils.cpp stellarium-0.12.4/src/core/StelUtils.cpp --- stellarium-0.12.1/src/core/StelUtils.cpp 2013-04-08 14:18:23.000000000 +0000 +++ stellarium-0.12.4/src/core/StelUtils.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -1117,8 +1117,12 @@ // 1625.0=1625-jan-0.5=2314579.0 */ -double decYear2DeltaT(const double y) +// Implementation of algorithm by Espenak & Meeus (2006) for DeltaT computation +double getDeltaTByEspenakMeeus(const double jDay) { + int year, month, day; + getDateFromJulianDay(jDay, &year, &month, &day); + // Note: the method here is adapted from // "Five Millennium Canon of Solar Eclipses" [Espenak and Meeus, 2006] // A summary is described here: @@ -1126,6 +1130,8 @@ // GZ: I replaced the std::pow() calls by Horner's scheme with reversed factors, it's more accurate and efficient. // Old code left for readability, but can also be deleted. + double y = year+((month-1)*30.5+day/31*30.5)/366; + // set the default value for Delta T double u = (y-1820)/100.; double r = (-20 + 32 * u * u); @@ -1217,22 +1223,11 @@ //r = (-20 + 32 * std::pow((y-1820)/100,2) - 0.5628 * (2150 - y)); // r has been precomputed before, just add the term patching the discontinuity r -= 0.5628*(2150.0-y); - } + } return r; } -// Implementation of algorithm by Espenak & Meeus (2006) for DeltaT computation -double getDeltaTByEspenakMeeus(const double jDay) -{ - int year, month, day; - getDateFromJulianDay(jDay, &year, &month, &day); - - // approximate "decimal year" = year + (month - 0.5)/12 - //return decYear2DeltaT(year + (month - 0.5)/12); - return decYear2DeltaT(year+((month-1)*30.5+day/31*30.5)/366); -} - // Implementation of algorithm by Schoch (1931) for DeltaT computation double getDeltaTBySchoch(const double jDay) { @@ -1252,7 +1247,7 @@ { double u=(jDay-2415020.0)/36525.0; // (1900-jan-0.5) // TODO: Calculate Moon's longitude fluctuation - return (29.949*u +72.3165)*u +24.349 /* + 1.821*b*/ ; + return (29.950*u +72.318)*u +24.349 /* + 1.82144*b */ ; } // Implementation of algorithm by Astronomical Ephemeris (1960) for DeltaT computation, also used by Mucke&Meeus, Canon of Solar Eclipses, Vienna 1983 @@ -1261,7 +1256,7 @@ double u=(jDay-2415020.0)/36525.0; // (1900-jan-0.5) // TODO: Calculate Moon's longitude fluctuation // Note: also Mucke&Meeus 1983 ignore b - return (29.950*u +72.318)*u +24.349 /* + 1.82144*b */ ; + return (29.949*u +72.3165)*u +24.349 /* + 1.821*b*/ ; } // Implementation of algorithm by Tuckerman (1962, 1964) & Goldstine (1973) for DeltaT computation @@ -1318,9 +1313,9 @@ double yeardec=year+((month-1)*30.5+day/31*30.5)/366; double u = (yeardec-1800)/100; - if (-391 < year and year <= 948) + if (-391 < year && year <= 948) deltaT = (44.3*u +320.0)*u +1360.0; - if (948 < year and year <= 1600) + if (948 < year && year <= 1600) deltaT = 25.5*u*u; return deltaT; @@ -1346,12 +1341,12 @@ if (year <= 948) { u = (yeardec-948)/100; - deltaT = (46.5*u -405.0)*u + 1830.0; // GZ: TODO: merge conflict, did I mess orig -405->+405? Or AW? + deltaT = (46.5*u -405.0)*u + 1830.0; } - if (948 < year and year <= 1600) + if (948 < year && year <= 1600) { u = (yeardec-1850)/100; - deltaT = 25.5*u*u; + deltaT = 22.5*u*u; } return deltaT; @@ -1389,9 +1384,9 @@ double u=(jDay-2451545.0)/36525.0; // (2000-jan-1.5) - if (-391 < year and year <= 948) - deltaT = (42.4*u -495.0)*u + 2177.0; - if (948 < year and year <= 1600) + if (-391 < year && year <= 948) + deltaT = (42.4*u +495.0)*u + 2177.0; + if (948 < year && year <= 1600) deltaT = (23.6*u +100.0)*u + 102.0; return deltaT; @@ -1405,12 +1400,12 @@ double deltaT = 0.; getDateFromJulianDay(jDay, &year, &month, &day); - if (-2999 < year and year < 948) + if (-2999 < year && year < 948) { u=(jDay-2385800.0)/36525.0; // (1820-jan-1.5) deltaT = 31.0*u*u; } - if (948 < year and year <= 1620) + if (948 < year && year <= 1620) { u=(jDay-2451545.0)/36525.0; // (2000-jan-1.5) deltaT = (22.5*u +67.5)*u + 50.6; @@ -1546,13 +1541,13 @@ { u = 2.05 + ub; //deltaT = +14.7 - 18.8*u - 22.0*std::pow(u,2) + 173.0*std::pow(u,3) + 6.0*std::pow(u,4); - deltaT = (((6.0*u -173.0)*u -22.0)*u -18.8)*u +14.7; + deltaT = (((6.0*u +173.0)*u -22.0)*u -18.8)*u +14.7; } else if (year < 1870) { u = 1.55 + ub; - //deltaT = +5.7 + 12.7*u + 111.0*std::pow(u,2) - 534.0*std::pow(u,3) + 1654.0*std::pow(u,4); - deltaT = (((1654.0*u -534.0)*u +111)*u +12.7)*u +5.7; + //deltaT = +5.7 + 12.7*u + 111.0*std::pow(u,2) - 534.0*std::pow(u,3) - 1654.0*std::pow(u,4); + deltaT = (((-1654.0*u -534.0)*u +111)*u +12.7)*u +5.7; } else if (year < 1900) { @@ -1563,8 +1558,8 @@ else if (year < 1940) { u = 0.80 + ub; - //deltaT = +21.4 + 67.0*u + 443.0*std::pow(u,2) + 19.0*std::pow(u,3) + 4441.0*std::pow(u,4); - deltaT = (((4441.0*u + 19.0)*u +443.0)*u +67.0)*u +21.4; + //deltaT = +21.4 + 67.0*u - 443.0*std::pow(u,2) + 19.0*std::pow(u,3) + 4441.0*std::pow(u,4); + deltaT = (((4441.0*u + 19.0)*u -443.0)*u +67.0)*u +21.4; } else if (year < 1990) { @@ -1575,8 +1570,8 @@ else if (year <= 2000) { u = 0.05 + ub; - //deltaT = +60.8 + 82.0*u + 188.0*std::pow(u,2) - 5034.0*std::pow(u,3); - deltaT = ((-5034.0*u +188.0)*u +82.0)*u +60.8; + //deltaT = +60.8 + 82.0*u - 188.0*std::pow(u,2) - 5034.0*std::pow(u,3); + deltaT = ((-5034.0*u -188.0)*u +82.0)*u +60.8; } return deltaT; @@ -1623,7 +1618,7 @@ else if (year >= 1700) { // This term was added in the third edition (2007), its omission was a fault of the authors! double yDiff1700 = year-1700.0; - deltaT = ((-0.0000266484*yDiff1700 +0.003336121)*yDiff1700 + 0.005092142)*yDiff1700 + 8.118780842; + deltaT = ((-0.0000266484*yDiff1700 +0.003336121)*yDiff1700 - 0.005092142)*yDiff1700 + 8.118780842; } else if (year >= 1620) { @@ -1633,6 +1628,77 @@ return deltaT; } +// Implementation of algorithm by Banjevic (2006) for DeltaT computation. +double getDeltaTByBanjevic(const double jDay) +{ + int year, month, day; + getDateFromJulianDay(jDay, &year, &month, &day); + + double u, c; + + if (year>=-2020 && year<=-700) + { + u = (jDay-2378496.0)/36525.0; // 1800.0=1800-jan-0.5=2378496.0 + c = 30.86; + } + else if (year>-700 && year<=1620) + { + u = (jDay-2385800.0)/36525.0; // 1820.0=1820-jan-0.5=2385800.0 + c = 31; + } + else + { + u = 0.; + c = 0.; + } + + return c*u*u; +} + +// Implementation of algorithm by Islam, Sadiq & Qureshi (2008 + revisited 2013) for DeltaT computation. +double getDeltaTByIslamSadiqQureshi(const double jDay) +{ + int year, month, day; + getDateFromJulianDay(jDay, &year, &month, &day); + double deltaT = 0.0; // Return deltaT = 0 outside valid range. + double u; + const double ub=(jDay-2454101.0)/36525.0; // (2007-jan-0.5) + if (year >= 1620 && year <= 1698) + { + u = 3.48 + ub; + deltaT = (((1162.805 * u - 273.116) * u + 14.523) * u - 105.262) * u + 38.067; + } + else if (year <= 1806) + { + u = 2.545 + ub; + deltaT = (((-71.724 * u - 39.048) * u + 7.591) * u + 13.893) * u + 13.759; + } + else if (year <= 1872) + { + u = 1.675 + ub; + deltaT = (((-1612.55 * u - 157.977) * u + 161.524) * u - 3.654) * u + 5.859; + } + else if (year <= 1906) + { + u = 1.175 + ub; + deltaT = (((6250.501 * u + 1006.463) * u + 139.921) * u - 2.732) * u - 6.203; + } + else if (year <= 1953) + { + // revised 2013 per email + u = 0.77 + ub; + deltaT = (((-390.785 * u + 901.514) * u - 88.044) * u + 8.997) * u + 24.006; + } + else if (year <= 2007) + { + // revised 2013 per email + u = 0.265 + ub; + deltaT = (((1314.759 * u - 296.018) * u - 101.898) * u + 88.659) * u + 49.997; + } + + return deltaT; +} + double getMoonSecularAcceleration(const double jDay, const double nd) { int year, month, day; @@ -1653,7 +1719,7 @@ //double yeardec=year+((month-1)*30.5+day/31*30.5)/366; double sigma = -1.; - if (-1000 <= year and year <= 1600) + if (-1000 <= year && year <= 1600) { double cDiff1820= (jDay-2385800.0)/36525.0; // 1820.0=1820-jan-0.5=2385800.0 // sigma = std::pow((yeardec-1820.0)/100,2); // sigma(DeltaT) = 0.8*u^2 diff -Nru stellarium-0.12.1/src/core/StelUtils.hpp stellarium-0.12.4/src/core/StelUtils.hpp --- stellarium-0.12.1/src/core/StelUtils.hpp 2013-04-08 14:18:32.000000000 +0000 +++ stellarium-0.12.4/src/core/StelUtils.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -525,6 +525,30 @@ //! @return Delta-T in seconds double getDeltaTByReingoldDershowitz(const double jDay); + //! Get Delta-T estimation for a given date. + //! Implementation of algorithm by Banjevic (2006) for DeltaT computation. + //! Source: Ancient eclipses and dating the fall of Babylon + //! Banjevic, B. + //! Publications of the Astronomical Observatory of Belgrade, Vol. 80, p. 251-257 (2006) + //! 2006POBeo..80..251B [http://adsabs.harvard.edu/abs/2006POBeo..80..251B] + //! @param jDay the date and time expressed as a julian day + //! @return Delta-T in seconds + double getDeltaTByBanjevic(const double jDay); + + //! Get Delta-T estimation for a given date. + //! Implementation of algorithm by Islam, Sadiq & Qureshi (2008 + revisited 2013) for DeltaT computation. + //! Source: Error Minimization of Polynomial Approximation of DeltaT + //! Islam, S. & Sadiq, M. & Qureshi, M. S. + //! Journal of Astrophysics & Astronomy, Vol. 29, p. 363–366 (2008) + //! http://www.ias.ac.in/jaa/dec2008/JAA610.pdf + //! Note: These polynomials are based on the uncorrected deltaT table from the Astronomical Almanac, thus + //! ndot = -26.0 arcsec/cy^2. Meeus & Simons (2000) corrected the deltaT table for years before 1955.5 using + //! ndot = -25.7376 arcsec/cy^2. Therefore the accuracies stated by Meeus & Simons are correct and cannot be + //! compared with accuracies from Islam & Sadiq & Qureshi. + //! @param jDay the date and time expressed as a julian day + //! @return Delta-T in seconds + double getDeltaTByIslamSadiqQureshi(const double jDay); + //! Get Secular Acceleration estimation for a given year. //! Method described is here: http://eclipse.gsfc.nasa.gov/SEcat5/secular.html //! For adapting from -26 to -25.858, use -0.91072 * (-25.858 + 26.0) = -0.12932224 diff -Nru stellarium-0.12.1/src/core/StelVideoMgr.cpp stellarium-0.12.4/src/core/StelVideoMgr.cpp --- stellarium-0.12.1/src/core/StelVideoMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelVideoMgr.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -19,6 +19,7 @@ #include "StelVideoMgr.hpp" #include "StelMainGraphicsView.hpp" #include +#include StelVideoMgr::StelVideoMgr() @@ -180,7 +181,7 @@ #else // HAVE_QT_PHONON void StelVideoMgr::loadVideo(const QString& filename, const QString& id, float x, float y, bool show, float alpha) { - qWarning() << "[StelVideoMgr] This build of Stellarium does not support video - cannot load video" << filename << id << x << y << show << alpha; + qWarning() << "[StelVideoMgr] This build of Stellarium does not support video - cannot load video" << QDir::toNativeSeparators(filename) << id << x << y << show << alpha; } StelVideoMgr::~StelVideoMgr() {;} void StelVideoMgr::playVideo(const QString&) {;} diff -Nru stellarium-0.12.1/src/core/StelViewportEffect.cpp stellarium-0.12.4/src/core/StelViewportEffect.cpp --- stellarium-0.12.1/src/core/StelViewportEffect.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelViewportEffect.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -28,6 +28,7 @@ #include #include +#include StelViewportDistorterFisheyeToSphericMirror::StelViewportDistorterFisheyeToSphericMirror @@ -103,23 +104,24 @@ qMin(newProjectorParams.viewportXywh[2], newProjectorParams.viewportXywh[3])).toFloat(); - texture_wh = 1; - while (texture_wh < newProjectorParams.viewportXywh[2] || - texture_wh < newProjectorParams.viewportXywh[3]) - { - texture_wh <<= 1; - } - - viewportTextureOffset[0] = (texture_wh-newProjectorParams.viewportXywh[2])>>1; - viewportTextureOffset[1] = (texture_wh-newProjectorParams.viewportXywh[3])>>1; + // Vestigial mirror texture dimensions: used to be a single value, + // the closest power of 2 higher or equal to the larger screen dimension. + texture_w = newProjectorParams.viewportXywh[2]; + texture_h = newProjectorParams.viewportXywh[3]; +// while (texture_wh < newProjectorParams.viewportXywh[2] || +// texture_wh < newProjectorParams.viewportXywh[3]) +// { +// texture_wh <<= 1; +// } + // TODO: Given the above, is there any point in this? --BM newProjectorParams.viewportXywh[0] = (screenWidth-newProjectorParams.viewportXywh[2]) >> 1; newProjectorParams.viewportXywh[1] = (screenHeight-newProjectorParams.viewportXywh[3]) >> 1; StelApp::getInstance().getCore()->setCurrentStelProjectorParams(newProjectorParams); const QString customDistortionFileName = - conf.value("spheric_mirror/custom_distortion_file","").toString(); + QDir::fromNativeSeparators(conf.value("spheric_mirror/custom_distortion_file","").toString()); if (customDistortionFileName.isEmpty()) { @@ -208,8 +210,8 @@ // else if (y > newProjectorParams.viewportXywh[3]) // {y=newProjectorParams.viewportXywh[3];height=0;} - vertex.texCoord[0] = (viewportTextureOffset[0] + x) / texture_wh; - vertex.texCoord[1] = (viewportTextureOffset[1] + y) / texture_wh; + vertex.texCoord[0] = x / texture_w; + vertex.texCoord[1] = y / texture_h; texCoordGrid[row * cols + col] = vertex.texCoord; @@ -241,6 +243,47 @@ constructVertexBuffer(renderer); delete[] heightGrid; + + // FIXME: Comment out with /**/ after testing. --BM + qDebug() << "StelViewportDistorterFisheyeToSphericMirror():" + << "screen_w:" << this->screenWidth + << "screen_h:" << this->screenHeight << endl + << "originalProjectorParams.viewportXywh:" + << originalProjectorParams.viewportXywh[0] + << originalProjectorParams.viewportXywh[1] + << originalProjectorParams.viewportXywh[2] + << originalProjectorParams.viewportXywh[3] << endl + << "newProjectorParams.viewportXywh:" + << newProjectorParams.viewportXywh[0] + << newProjectorParams.viewportXywh[1] + << newProjectorParams.viewportXywh[2] + << newProjectorParams.viewportXywh[3] << endl + << "originalProjectorParams.fov:" + << originalProjectorParams.fov << endl + << "newProjectorParams.fov:" << newProjectorParams.fov << endl + << "originalProjectorParams.viewportCenter:" + << originalProjectorParams.viewportCenter[0] + << originalProjectorParams.viewportCenter[1] << endl + << "newProjectorParams.viewportCenter:" + << newProjectorParams.viewportCenter[0] + << newProjectorParams.viewportCenter[1] << endl + << "originalProjectorParams.viewportFovDiameter:" + << originalProjectorParams.viewportFovDiameter << endl + << "newProjectorParams.viewportFovDiameter:" + << newProjectorParams.viewportFovDiameter << endl + << "originalProjectorParams.zNear,zFar:" + << originalProjectorParams.zNear + << originalProjectorParams.zFar << endl + << "newProjectorParams.zNear,zFar:" + << newProjectorParams.zNear + << newProjectorParams.zFar << endl + //<< "viewport_texture_offset:" + //<< viewport_texture_offset[0] + //<< viewport_texture_offset[1] << endl + << "texture_w:" << texture_w << endl + << "texture_h:" << texture_h << endl + << "max_x:" << maxGridX << endl + << "max_y:" << maxGridY; } void StelViewportDistorterFisheyeToSphericMirror::loadGenerationParameters @@ -259,9 +302,14 @@ qDebug() << "spheric_mirror/texture_triangle_base_length too low : setting to 2.0"; triangleBaseLength = 2.f; } +#ifdef _MSC_BUILD // MSVC does not have a trunc function + maxGridX = (int)floor(0.5 + screenWidth / triangleBaseLength); + maxGridY = (int)floor(screenHeight / (triangleBaseLength * 0.5 * sqrt(3.0))); +#else maxGridX = (int)trunc(0.5 + screenWidth / triangleBaseLength); - stepX = screenWidth / (double)(maxGridX - 0.5); maxGridY = (int)trunc(screenHeight / (triangleBaseLength * 0.5 * sqrt(3.0))); +#endif + stepX = screenWidth / (double)(maxGridX - 0.5); stepY = screenHeight / (double)maxGridY; gamma = conf.value("spheric_mirror/projector_gamma",0.45).toDouble(); @@ -288,7 +336,7 @@ } catch (std::runtime_error& e) { - qWarning() << "WARNING: could not open custom_distortion_file:" << fileName << e.what(); + qWarning() << "WARNING: could not open custom_distortion_file:" << QDir::toNativeSeparators(fileName) << e.what(); return false; } Q_ASSERT(file.error() != QFile::NoError); @@ -317,8 +365,8 @@ in >> x >> y >> vertex.color[0] >> vertex.color[1] >> vertex.color[2]; vertex.color[3] = 1.0f; Q_ASSERT(in.status() != QTextStream::Ok); - vertex.texCoord[0] = (viewportTextureOffset[0] + x) / texture_wh; - vertex.texCoord[1] = (viewportTextureOffset[1] + y) / texture_wh; + vertex.texCoord[0] = x / texture_w; + vertex.texCoord[1] = y / texture_h; texCoordGrid[row * cols + col] = vertex.texCoord; @@ -448,8 +496,8 @@ } } - x = texture_wh*textureX - viewportTextureOffset[0] + newProjectorParams.viewportXywh[0]; - y = texture_wh*textureY - viewportTextureOffset[1] + newProjectorParams.viewportXywh[1]; + x = texture_w*textureX + newProjectorParams.viewportXywh[0]; + y = texture_h*textureY + newProjectorParams.viewportXywh[1]; } diff -Nru stellarium-0.12.1/src/core/StelViewportEffect.hpp stellarium-0.12.4/src/core/StelViewportEffect.hpp --- stellarium-0.12.1/src/core/StelViewportEffect.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/StelViewportEffect.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -72,8 +72,10 @@ const int screenHeight; const StelProjector::StelProjectorParams originalProjectorParams; StelProjector::StelProjectorParams newProjectorParams; - int viewportTextureOffset[2]; - int texture_wh; + // Dimensions of the auxiliary mirror texture (used to be texture_wh, + // because the texture used to be square); now used for convenience. --BM + int texture_w; + int texture_h; //! Maximum texture coordinates. //! diff -Nru stellarium-0.12.1/src/core/VecMath.hpp stellarium-0.12.4/src/core/VecMath.hpp --- stellarium-0.12.1/src/core/VecMath.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/VecMath.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -356,6 +356,11 @@ v[0] *= s; v[1] *= s; } +template void Vector2::operator/=(T s) +{ + v[0] /= s; v[1] /= s; +} + template Vector2 Vector2::operator-() const { return Vector2(-v[0], -v[1]); @@ -695,7 +700,7 @@ template void Vector4::operator-=(const Vector4& a) { - v[0] -= a.v[0]; v[1] -= a.v[1]; v[2] -= a.v[2]; v[3] -= a/v[3]; + v[0] -= a.v[0]; v[1] -= a.v[1]; v[2] -= a.v[2]; v[3] -= a.v[3]; } template void Vector4::operator*=(T s) @@ -703,6 +708,11 @@ v[0] *= s; v[1] *= s; v[2] *= s; v[3] *= s; } +template void Vector4::operator/=(T s) +{ + v[0] /= s; v[1] /= s; v[2] /= s; v[3] /= s; +} + template Vector4 Vector4::operator-() const { return Vector4(-v[0], -v[1], -v[2], -v[3]); diff -Nru stellarium-0.12.1/src/core/external/gettext.h stellarium-0.12.4/src/core/external/gettext.h --- stellarium-0.12.1/src/core/external/gettext.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/gettext.h 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, + Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _LIBGETTEXT_H diff -Nru stellarium-0.12.1/src/core/external/glues_stel/source/glues.h stellarium-0.12.4/src/core/external/glues_stel/source/glues.h --- stellarium-0.12.1/src/core/external/glues_stel/source/glues.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/glues_stel/source/glues.h 2013-08-04 06:20:27.000000000 +0000 @@ -46,6 +46,9 @@ #elif defined(QT_OPENGL_ES_2) # include #else +#ifdef _MSC_BUILD +#include +#endif # include #endif diff -Nru stellarium-0.12.1/src/core/external/glues_stel/source/glues_error.c stellarium-0.12.4/src/core/external/glues_stel/source/glues_error.c --- stellarium-0.12.1/src/core/external/glues_stel/source/glues_error.c 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/glues_stel/source/glues_error.c 2013-08-04 06:20:27.000000000 +0000 @@ -40,6 +40,9 @@ #elif defined(QT_OPENGL_ES_2) || defined(USE_OPENGL_ES2) # include #else +#ifdef _MSC_BUILD +#include +#endif # include #endif diff -Nru stellarium-0.12.1/src/core/external/kdewin32/dirent.c stellarium-0.12.4/src/core/external/kdewin32/dirent.c --- stellarium-0.12.1/src/core/external/kdewin32/dirent.c 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/kdewin32/dirent.c 2013-08-04 06:20:27.000000000 +0000 @@ -1,3 +1,4 @@ +#ifndef _MSC_BUILD /* ==================================================================== * The Apache Software License, Version 1.1 * @@ -147,3 +148,109 @@ } #endif // #ifndef __MINGW32__ + +#else + +/* lt__dirent.c -- internal directory entry scanning interface + + Copyright (C) 2001, 2004 Free Software Foundation, Inc. + Written by Bob Friesenhahn, 2001 + + NOTE: The canonical source of this file is maintained with the + GNU Libtool package. Report bugs to bug-libtool@gnu.org. + +GNU Libltdl is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later version. + +As a special exception to the GNU Lesser General Public License, +if you distribute this file as part of a program or library that +is built using GNU Libtool, you may include this file under the +same distribution terms that you use for the rest of that program. + +GNU Libltdl is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with GNU Libltdl; see the file COPYING.LIB. If not, a +copy can be downloaded from http://www.gnu.org/licenses/lgpl.html, +or obtained by writing to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ + +//#include "lt__private.h" + +#include +#include +#include "kdewin32/dirent.h" + +#if defined(WIN32) + +void closedir (DIR *entry) +{ + assert (entry != (DIR *) NULL); + FindClose (entry->hSearch); + free ((void *) entry); +} + +DIR* opendir (const char *path) +{ + char file_spec[260]; + DIR *entry; + + assert (path != (char *) 0); + if (strncpy (file_spec, path, sizeof file_spec) >= sizeof file_spec + || strncat (file_spec, "\\", sizeof file_spec) >= sizeof file_spec) + return (DIR *) 0; + entry = (DIR *) malloc (sizeof(DIR)); + if (entry != (DIR *) 0) + { + entry->firsttime = TRUE; + entry->hSearch = FindFirstFileA (file_spec, &entry->Win32FindDataA); + + if (entry->hSearch == INVALID_HANDLE_VALUE) + { + if (strncat (file_spec, "\\*.*", sizeof file_spec) < sizeof file_spec) + { + entry->hSearch = FindFirstFileA (file_spec, &entry->Win32FindDataA); + } + + if (entry->hSearch == INVALID_HANDLE_VALUE) + { + entry = (free (entry), (DIR *) 0); + } + } + } + + return entry; +} + +struct dirent* readdir (DIR *entry) +{ + int status; + + if (entry == (DIR *) 0) + return (struct dirent *) 0; + + if (!entry->firsttime) + { + status = FindNextFileA (entry->hSearch, &entry->Win32FindDataA); + if (status == 0) + return (struct dirent *) 0; + } + + entry->firsttime = FALSE; + if (strncpy (entry->file_info.d_name, entry->Win32FindDataA.cFileName, + sizeof entry->file_info.d_name) >= sizeof entry->file_info.d_name) + return (struct dirent *) 0; + entry->file_info.d_namlen = strlen (entry->file_info.d_name); + + return &entry->file_info; +} + +#endif /*defined(__WINDOWS__)*/ + +#endif \ No newline at end of file diff -Nru stellarium-0.12.1/src/core/external/kdewin32/dirent.h stellarium-0.12.4/src/core/external/kdewin32/dirent.h --- stellarium-0.12.1/src/core/external/kdewin32/dirent.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/kdewin32/dirent.h 2013-08-04 06:20:27.000000000 +0000 @@ -1,3 +1,4 @@ +#ifndef _MSC_BUILD /* This file is part of the KDE project Copyright (C) 2006 Peter Kuemmel @@ -39,3 +40,79 @@ #endif #endif // KDEWIN_DIRENT_H + +#else + +/* lt__dirent.h -- internal directory entry scanning interface + + Copyright (C) 2001, 2004, 2006 Free Software Foundation, Inc. + Written by Bob Friesenhahn, 2001 + + NOTE: The canonical source of this file is maintained with the + GNU Libtool package. Report bugs to bug-libtool@gnu.org. + +GNU Libltdl is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later version. + +As a special exception to the GNU Lesser General Public License, +if you distribute this file as part of a program or library that +is built using GNU Libtool, you may include this file under the +same distribution terms that you use for the rest of that program. + +GNU Libltdl is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with GNU Libltdl; see the file COPYING.LIB. If not, a +copy can be downloaded from http://www.gnu.org/licenses/lgpl.html, +or obtained by writing to the Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +#if !defined(__DIRENT_H) +#define __DIRENT_H 1 + +#ifdef __cplusplus +extern "C" { +#endif + +# include + +# define D_NAMLEN(dirent) (strlen((dirent)->d_name)) +//# define dirent lt__dirent +//# define DIR lt__DIR +//# define opendir lt__opendir +//# define readdir lt__readdir +//# define closedir lt__closedir + +//LT_BEGIN_C_DECLS + +struct dirent +{ + char d_name[260]; + int d_namlen; +}; + +typedef struct _DIR +{ + HANDLE hSearch; + WIN32_FIND_DATAA Win32FindDataA; + BOOL firsttime; + struct dirent file_info; +} DIR; + +DIR* opendir (const char *path); +struct dirent* readdir (DIR *entry); +void closedir (DIR *entry); + +#ifdef __cplusplus +} +#endif + +#endif /*!defined(LT__DIRENT_H)*/ + +#endif \ No newline at end of file diff -Nru stellarium-0.12.1/src/core/external/kdewin32/pwd.c stellarium-0.12.4/src/core/external/kdewin32/pwd.c --- stellarium-0.12.1/src/core/external/kdewin32/pwd.c 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/kdewin32/pwd.c 2013-08-04 06:20:27.000000000 +0000 @@ -19,10 +19,17 @@ #include +#ifdef _MSC_BUILD +#include +#include "kdewin32/pwd.h" +#include +#include +#else #include "kdewin32/stdlib.h" #include "kdewin32/pwd.h" #include "kdewin32/stdio.h" #include "kdewin32/errno.h" +#endif /* these functions always fail for win32 */ diff -Nru stellarium-0.12.1/src/core/external/kdewin32/sys/types.h stellarium-0.12.4/src/core/external/kdewin32/sys/types.h --- stellarium-0.12.1/src/core/external/kdewin32/sys/types.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/kdewin32/sys/types.h 2013-08-04 06:20:27.000000000 +0000 @@ -20,6 +20,17 @@ #ifndef KDEWIN_SYS_TYPES_H #define KDEWIN_SYS_TYPES_H +#ifdef _MSC_BUILD + +typedef unsigned int uid_t; +typedef unsigned int gid_t; +typedef unsigned int pid_t; +typedef unsigned short mode_t; +typedef int caddr_t; +typedef unsigned int nlink_t; + +#else + #include <../include/sys/types.h> typedef unsigned int uid_t; @@ -28,6 +39,8 @@ typedef unsigned int nlink_t; +#endif + // uint32 #include diff -Nru stellarium-0.12.1/src/core/external/kdewin32/unistd.c stellarium-0.12.4/src/core/external/kdewin32/unistd.c --- stellarium-0.12.1/src/core/external/kdewin32/unistd.c 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/kdewin32/unistd.c 2013-08-04 06:20:27.000000000 +0000 @@ -21,6 +21,14 @@ #include #include +#ifdef _MSC_BUILD +#include +#include +#include +#include +#include +#include "kdewin32/unistd.h" +#else #include "kdewin32/errno.h" #include "kdewin32/fcntl.h" #include "kdewin32/stdio.h" @@ -29,7 +37,9 @@ #include "kdewin32/sys/socket.h" #include "kdewin32/sys/stat.h" #include "kdewin32/unistd.h" +#endif +#ifndef _MSC_BUILD // BEGIN stat.c int lstat(const char *path, struct stat *sb) { @@ -41,6 +51,7 @@ return 0; } // END stat.c +#endif int getgroups(int size, gid_t list[]) { @@ -48,6 +59,7 @@ return 0; } +#ifndef _MSC_BUILD int readlink(const char *__path, char *__buf, int __buflen) { if (!__path) { @@ -68,6 +80,7 @@ errno = ENOENT; return -1; } +#endif int symlink(const char *__name1, const char *__name2) { @@ -423,7 +436,7 @@ } c = *next++; - cp = strchr(optstring, c); + cp = (char*) strchr(optstring, c); if (cp == NULL || c == ':') return '?'; @@ -451,7 +464,9 @@ } #endif // __MINGW32__ - +#ifdef _MSC_BUILD +typedef long int off_t; +#endif int truncate(const char *path, off_t length) { HANDLE hFile; diff -Nru stellarium-0.12.1/src/core/external/kdewin32/unistd.h stellarium-0.12.4/src/core/external/kdewin32/unistd.h --- stellarium-0.12.1/src/core/external/kdewin32/unistd.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/kdewin32/unistd.h 2013-08-04 06:20:27.000000000 +0000 @@ -21,9 +21,11 @@ #define _KDEWIN_UNISTD_H #include "kdewin32/sys/types.h" +#ifndef _MSC_BUILD #include <../include/unistd.h> #include +#endif #define environ _environ diff -Nru stellarium-0.12.1/src/core/external/kfilter/karchive.cpp stellarium-0.12.4/src/core/external/kfilter/karchive.cpp --- stellarium-0.12.1/src/core/external/kfilter/karchive.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/kfilter/karchive.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -31,7 +31,9 @@ #include #include #include +#ifdef Q_OS_UNIX #include +#endif #include #include #include diff -Nru stellarium-0.12.1/src/core/external/kfilter/karchive.h stellarium-0.12.4/src/core/external/kfilter/karchive.h --- stellarium-0.12.1/src/core/external/kfilter/karchive.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/external/kfilter/karchive.h 2013-08-04 06:20:27.000000000 +0000 @@ -21,7 +21,11 @@ #ifndef KARCHIVE_H #define KARCHIVE_H +#ifdef _MSC_BUILD +#include "kdewin32/sys/types.h" +#else #include +#endif #include #include diff -Nru stellarium-0.12.1/src/core/modules/Constellation.cpp stellarium-0.12.4/src/core/modules/Constellation.cpp --- stellarium-0.12.1/src/core/modules/Constellation.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/Constellation.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -63,7 +63,7 @@ void Constellation::generateArtVertices(StelRenderer* renderer, const int resolution) { // Texture not yet loaded. - if (NULL == artTexture || !artTexture->getStatus() == TextureStatus_Loaded) + if (NULL == artTexture || !(artTexture->getStatus() == TextureStatus_Loaded)) { // artVertices will be still NULL, and it will be generated in a future // call once the texture is loaded diff -Nru stellarium-0.12.1/src/core/modules/ConstellationMgr.cpp stellarium-0.12.4/src/core/modules/ConstellationMgr.cpp --- stellarium-0.12.1/src/core/modules/ConstellationMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/ConstellationMgr.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -26,6 +26,7 @@ #include #include #include +#include #include "ConstellationMgr.hpp" #include "Constellation.hpp" @@ -128,7 +129,7 @@ } catch (std::runtime_error& e) { - qDebug() << "No constellationsart.fab file found for sky culture " << skyCultureDir; + qDebug() << "No constellationsart.fab file found for sky culture " << QDir::toNativeSeparators(skyCultureDir); } try @@ -147,7 +148,7 @@ catch (std::runtime_error& e) { qWarning() << "ERROR: while loading new constellation data for sky culture " - << skyCultureDir << ", reason: " << e.what() << endl; + << QDir::toNativeSeparators(skyCultureDir) << ", reason: " << e.what() << endl; } // TODO: do we need to have an else { clearBoundaries(); } ? @@ -302,7 +303,7 @@ QFile in(fileName); if (!in.open(QIODevice::ReadOnly | QIODevice::Text)) { - qWarning() << "Can't open constellation data file" << fileName << "for culture" << cultureName; + qWarning() << "Can't open constellation data file" << QDir::toNativeSeparators(fileName) << "for culture" << cultureName; Q_ASSERT(0); } @@ -367,7 +368,7 @@ QFile fic(artfileName); if (!fic.open(QIODevice::ReadOnly | QIODevice::Text)) { - qWarning() << "Can't open constellation art file" << fileName << "for culture" << cultureName; + qWarning() << "Can't open constellation art file" << QDir::toNativeSeparators(fileName) << "for culture" << cultureName; return; } @@ -435,7 +436,7 @@ { // if the texture isn't found in the skycultures/[culture] directory, // try the central textures diectory. - qWarning() << "WARNING, could not locate texture file " << texfile + qWarning() << "WARNING, could not locate texture file " << QDir::toNativeSeparators(texfile) << " in the skycultures/" << cultureName << " directory... looking in general textures/ directory..."; try @@ -444,7 +445,7 @@ } catch(std::exception& e2) { - qWarning() << "ERROR: could not find texture, " << texfile << ": " << e2.what(); + qWarning() << "ERROR: could not find texture, " << QDir::toNativeSeparators(texfile) << ": " << e2.what(); } } @@ -616,7 +617,7 @@ QFile commonNameFile(namesFile); if (!commonNameFile.open(QIODevice::ReadOnly | QIODevice::Text)) { - qDebug() << "Cannot open file" << namesFile; + qDebug() << "Cannot open file" << QDir::toNativeSeparators(namesFile); return; } @@ -649,7 +650,7 @@ if (!recRx.exactMatch(record)) { - qWarning() << "ERROR - cannot parse record at line" << lineNumber << "in constellation names file" << namesFile; + qWarning() << "ERROR - cannot parse record at line" << lineNumber << "in constellation names file" << QDir::toNativeSeparators(namesFile); } else { @@ -696,15 +697,14 @@ void ConstellationMgr::setArtIntensity(const double intensity) { if (artIntensity != intensity) - { artIntensity = intensity; - vector < Constellation * >::const_iterator iter; - for (iter = asterisms.begin(); iter != asterisms.end(); ++iter) - { - (*iter)->artFader.setMaxValue(artIntensity); - } - emit artIntensityChanged(intensity); + + vector < Constellation * >::const_iterator iter; + for (iter = asterisms.begin(); iter != asterisms.end(); ++iter) + { + (*iter)->artFader.setMaxValue(artIntensity); } + emit artIntensityChanged(intensity); } double ConstellationMgr::getArtIntensity() const @@ -714,16 +714,15 @@ void ConstellationMgr::setArtFadeDuration(const float duration) { - if(artFadeDuration != duration) - { + if (artFadeDuration != duration) artFadeDuration = duration; - vector < Constellation * >::const_iterator iter; - for (iter = asterisms.begin(); iter != asterisms.end(); ++iter) - { - (*iter)->artFader.setDuration((int) (duration * 1000.f)); - } - emit artFadeDurationChanged(duration); + + vector < Constellation * >::const_iterator iter; + for (iter = asterisms.begin(); iter != asterisms.end(); ++iter) + { + (*iter)->artFader.setDuration((int) (duration * 1000.f)); } + emit artFadeDurationChanged(duration); } float ConstellationMgr::getArtFadeDuration() const @@ -1029,7 +1028,7 @@ QFile dataFile(boundaryFile); if (!dataFile.open(QIODevice::ReadOnly | QIODevice::Text)) { - qWarning() << "Boundary file " << boundaryFile << " not found"; + qWarning() << "Boundary file " << QDir::toNativeSeparators(boundaryFile) << " not found"; return false; } @@ -1129,20 +1128,31 @@ return NULL; } -QStringList ConstellationMgr::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem) const +QStringList ConstellationMgr::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (maxNbItem==0) return result; - QString objw = objPrefix.toUpper(); - + QString cn; + bool find; vector < Constellation * >::const_iterator iter; for (iter = asterisms.begin(); iter != asterisms.end(); ++iter) { - QString constw = (*iter)->getNameI18n().mid(0, objw.size()).toUpper(); - if (constw==objw) + cn = (*iter)->getNameI18n(); + find = false; + if (useStartOfWords) { - result << (*iter)->getNameI18n(); + if (objPrefix.toUpper()==cn.mid(0, objPrefix.size()).toUpper()) + find = true; + } + else + { + if (cn.contains(objPrefix,Qt::CaseInsensitive)) + find = true; + } + if (find) + { + result << cn; if (result.size()==maxNbItem) return result; } @@ -1150,20 +1160,31 @@ return result; } -QStringList ConstellationMgr::listMatchingObjects(const QString& objPrefix, int maxNbItem) const +QStringList ConstellationMgr::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (maxNbItem==0) return result; - QString objw = objPrefix.toUpper(); - + QString cn; + bool find; vector < Constellation * >::const_iterator iter; for (iter = asterisms.begin(); iter != asterisms.end(); ++iter) { - QString constw = (*iter)->getEnglishName().mid(0, objw.size()).toUpper(); - if (constw==objw) + cn = (*iter)->getEnglishName(); + find = false; + if (useStartOfWords) + { + if (objPrefix.toUpper()==cn.mid(0, objPrefix.size()).toUpper()) + find = true; + } + else + { + if (cn.contains(objPrefix,Qt::CaseInsensitive)) + find = true; + } + if (find) { - result << (*iter)->getEnglishName(); + result << cn; if (result.size()==maxNbItem) return result; } diff -Nru stellarium-0.12.1/src/core/modules/ConstellationMgr.hpp stellarium-0.12.4/src/core/modules/ConstellationMgr.hpp --- stellarium-0.12.1/src/core/modules/ConstellationMgr.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/ConstellationMgr.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -126,13 +126,15 @@ //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a vector of matching object name by order of relevance, or an empty vector if nothing match - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a vector of matching object name by order of relevance, or an empty vector if nothing match - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; virtual QStringList listAllObjects(bool inEnglish) const; virtual QString getName() const { return "Constellations"; } diff -Nru stellarium-0.12.1/src/core/modules/GeodesicGridDrawer.cpp stellarium-0.12.4/src/core/modules/GeodesicGridDrawer.cpp --- stellarium-0.12.1/src/core/modules/GeodesicGridDrawer.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/GeodesicGridDrawer.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include diff -Nru stellarium-0.12.1/src/core/modules/GeodesicGridDrawer.hpp stellarium-0.12.4/src/core/modules/GeodesicGridDrawer.hpp --- stellarium-0.12.1/src/core/modules/GeodesicGridDrawer.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/GeodesicGridDrawer.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _GEODESICGRIDDRAWER_HPP_ diff -Nru stellarium-0.12.1/src/core/modules/Landscape.cpp stellarium-0.12.4/src/core/modules/Landscape.cpp --- stellarium-0.12.1/src/core/modules/Landscape.cpp 2013-04-14 11:59:38.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/Landscape.cpp 2013-09-13 10:51:45.000000000 +0000 @@ -97,18 +97,14 @@ else defaultBortleIndex=-1; // mark "invalid/no change". if (defaultBortleIndex<=0) defaultBortleIndex=-1; // also allow neg. values in ini file, signalling "no change". if (defaultBortleIndex>9) defaultBortleIndex=9; // correct bad values. - if (landscapeIni.contains("location/display_fog")) - defaultFogSetting = landscapeIni.value("location/display_fog").toInt(); - else defaultFogSetting=-1; - if (landscapeIni.contains("location/atmospheric_extinction_coefficient")) - defaultExtinctionCoefficient = landscapeIni.value("location/atmospheric_extinction_coefficient").toDouble(); - else defaultExtinctionCoefficient=-1.0; - if (landscapeIni.contains("location/atmospheric_temperature")) - defaultTemperature = landscapeIni.value("location/atmospheric_temperature").toDouble(); - else defaultTemperature=-1000.0; - if (landscapeIni.contains("location/atmospheric_pressure")) - defaultPressure = landscapeIni.value("location/atmospheric_pressure").toDouble(); - else defaultPressure=-2.0; // "no change" + + + defaultFogSetting = landscapeIni.value("location/display_fog", -1).toInt(); + defaultExtinctionCoefficient = landscapeIni.value("location/atmospheric_extinction_coefficient", -1.0).toDouble(); + defaultTemperature = landscapeIni.value("location/atmospheric_temperature", -1000.0).toDouble(); + defaultPressure = landscapeIni.value("location/atmospheric_pressure", -2.0).toDouble(); + // Set night brightness for landscape + defaultBrightness = landscapeIni.value("landscape/initial_brightness", -1.0).toDouble(); } #include diff -Nru stellarium-0.12.1/src/core/modules/Landscape.hpp stellarium-0.12.4/src/core/modules/Landscape.hpp --- stellarium-0.12.1/src/core/modules/Landscape.hpp 2013-04-14 11:15:31.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/Landscape.hpp 2013-09-13 10:51:45.000000000 +0000 @@ -89,6 +89,9 @@ //! Return default atmospheric temperature, for refraction computation. //! returns -1 to signal "standard conditions", or -2 for "unknown/invalid/no change" float getDefaultAtmosphericPressure() const {return defaultPressure;} + //! Return default brightness for landscape + //! returns -1 to signal "standard conditions" (use default value from config.ini) + float getLandscapeNightBrightness() const {return defaultBrightness;} //! Set the z-axis rotation (offset from original value when rotated void setZRotation(float d) {angleRotateZOffset = d;} @@ -108,6 +111,7 @@ QString name; float skyBrightness; float nightBrightness; + float defaultBrightness; bool validLandscape; // was a landscape loaded properly? LinearFader landFader; LinearFader fogFader; diff -Nru stellarium-0.12.1/src/core/modules/LandscapeMgr.cpp stellarium-0.12.4/src/core/modules/LandscapeMgr.cpp --- stellarium-0.12.1/src/core/modules/LandscapeMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/LandscapeMgr.cpp 2013-09-13 10:51:45.000000000 +0000 @@ -242,6 +242,9 @@ // We define the brigthness zero when the sun is 8 degrees below the horizon. float sinSunAngleRad = sin(qMin(M_PI_2, asin(sunPos[2])+8.*M_PI/180.)); float initBrightness = getInitialLandscapeBrightness(); + // Setting for landscapes has priority if it enabled + if (landscape->getLandscapeNightBrightness()>0 && getFlagLandscapeNightBrightness()) + initBrightness = landscape->getLandscapeNightBrightness(); if(sinSunAngleRad < -0.1/1.5 ) landscapeBrightness = initBrightness; @@ -258,6 +261,10 @@ landscapeBrightness *= (atmosphere->getRealDisplayIntensityFactor()+0.1); } + // Brightness can't be over 1.f (see https://bugs.launchpad.net/stellarium/+bug/1115364) + if (landscapeBrightness>0.95) + landscapeBrightness = 0.95; + // TODO: should calculate dimming with solar eclipse even without atmosphere on if (core->getCurrentLocation().planetName.contains("Sun")) { @@ -297,8 +304,10 @@ cardinalsPoints = new Cardinals(); cardinalsPoints->setFlagShow(conf->value("viewing/flag_cardinal_points",true).toBool()); setFlagLandscapeSetsLocation(conf->value("landscape/flag_landscape_sets_location",false).toBool()); + setFlagLandscapeAutoSelection(conf->value("viewing/flag_landscape_autoselection", false).toBool()); // Set initial brightness for landscape. This feature has been added for folks which say "landscape is super dark, please add light". --AW setInitialLandscapeBrightness(conf->value("landscape/initial_brightness", 0.01).toFloat()); + setFlagLandscapeNightBrightness(conf->value("landscape/flag_brightness",false).toBool()); bool ok =true; setAtmosphereBortleLightPollution(conf->value("stars/init_bortle_scale",3).toInt(&ok)); @@ -453,6 +462,16 @@ return landscape->getFlagShowFog(); } +void LandscapeMgr::setFlagLandscapeAutoSelection(bool enableAutoSelect) +{ + flagLandscapeAutoSelection = enableAutoSelect; +} + +bool LandscapeMgr::getFlagLandscapeAutoSelection() const +{ + return flagLandscapeAutoSelection; +} + /********************************************************************* Retrieve list of the names of all the available landscapes *********************************************************************/ @@ -623,7 +642,7 @@ QString s; if (landscapeIni.status() != QSettings::NoError) { - qWarning() << "ERROR parsing landscape.ini file: " << landscapeFile; + qWarning() << "ERROR parsing landscape.ini file: " << QDir::toNativeSeparators(landscapeFile); s = ""; } else @@ -703,7 +722,7 @@ Q_UNUSED(toMainDirectory); if (!QFile::exists(sourceFilePath)) { - qDebug() << "LandscapeMgr: File does not exist:" << sourceFilePath; + qDebug() << "LandscapeMgr: File does not exist:" << QDir::toNativeSeparators(sourceFilePath); emit errorUnableToOpen(sourceFilePath); return QString(); } @@ -717,7 +736,7 @@ //qDebug() << "LandscapeMgr: No 'landscapes' subdirectory exists in" << parentDestinationDir.absolutePath(); if (!parentDestinationDir.mkdir("landscapes")) { - qWarning() << "LandscapeMgr: Unable to install landscape: Unable to create sub-directory 'landscapes' in" << parentDestinationDir.absolutePath(); + qWarning() << "LandscapeMgr: Unable to install landscape: Unable to create sub-directory 'landscapes' in" << QDir::toNativeSeparators(parentDestinationDir.absolutePath()); emit errorUnableToOpen(QDir::cleanPath(parentDestinationDir.filePath("landscapes")));//parentDestinationDir.absolutePath() return QString(); } @@ -727,7 +746,7 @@ KZip sourceArchive(sourceFilePath); if(!sourceArchive.open(QIODevice::ReadOnly)) { - qWarning() << "LandscapeMgr: Unable to open as a ZIP archive:" << sourceFilePath; + qWarning() << "LandscapeMgr: Unable to open as a ZIP archive:" << QDir::toNativeSeparators(sourceFilePath); emit errorNotArchive(); return QString(); } @@ -819,11 +838,11 @@ //This case already has been handled - and commented out - above. :) if(destinationDir.exists(landscapeID)) { - qWarning() << "LandscapeMgr: A subdirectory" << landscapeID << "already exists in" << destinationDir.absolutePath() << "Its contents may be overwritten."; + qWarning() << "LandscapeMgr: A subdirectory" << landscapeID << "already exists in" << QDir::toNativeSeparators(destinationDir.absolutePath()) << "Its contents may be overwritten."; } else if(!destinationDir.mkdir(landscapeID)) { - qWarning() << "LandscapeMgr: Unable to install landscape. Unable to create" << landscapeID << "directory in" << destinationDir.absolutePath(); + qWarning() << "LandscapeMgr: Unable to install landscape. Unable to create" << landscapeID << "directory in" << QDir::toNativeSeparators(destinationDir.absolutePath()); emit errorUnableToOpen(QDir::cleanPath(destinationDir.filePath(landscapeID))); return QString(); } @@ -850,7 +869,7 @@ //Make sure that everyone knows that the list of available landscapes has changed emit landscapesChanged(); - qDebug() << "LandscapeMgr: Successfully installed landscape directory" << landscapeID << "to" << destinationDir.absolutePath(); + qDebug() << "LandscapeMgr: Successfully installed landscape directory" << landscapeID << "to" << QDir::toNativeSeparators(destinationDir.absolutePath()); return landscapeID; } @@ -879,7 +898,7 @@ { if(!landscapeDir.remove(fileName)) { - qWarning() << "LandscapeMgr: Unable to remove" << fileName; + qWarning() << "LandscapeMgr: Unable to remove" << QDir::toNativeSeparators(fileName); emit errorRemoveManually(landscapeDir.absolutePath()); return false; } @@ -896,7 +915,7 @@ return false; } - qDebug() << "LandscapeMgr: Successfully removed" << landscapePath; + qDebug() << "LandscapeMgr: Successfully removed" << QDir::toNativeSeparators(landscapePath); //If the landscape has been selected, revert to the default one //TODO: Make this optional? @@ -959,7 +978,7 @@ } else { - qWarning() << "LandscapeMgr: Error! Landscape directory" << landscapePath << "does not contain a 'landscape.ini' file"; + qWarning() << "LandscapeMgr: Error! Landscape directory" << QDir::toNativeSeparators(landscapePath) << "does not contain a 'landscape.ini' file"; } return landscapeName; diff -Nru stellarium-0.12.1/src/core/modules/LandscapeMgr.hpp stellarium-0.12.4/src/core/modules/LandscapeMgr.hpp --- stellarium-0.12.1/src/core/modules/LandscapeMgr.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/LandscapeMgr.hpp 2013-09-13 10:51:45.000000000 +0000 @@ -163,6 +163,12 @@ //! Set the value of the flag determining if a change of landscape will update the observer location. void setFlagLandscapeSetsLocation(bool b) {flagLandscapeSetsLocation=b;} + //! Return the value of the flag determining if an using brightness for night landscape. + bool getFlagLandscapeNightBrightness() const {return flagLandscapeNightBrightness;} + //! Set the value of the flag determining if an using brightness for night landscape. + void setFlagLandscapeNightBrightness(bool b) {flagLandscapeNightBrightness=b;} + + //! Get flag for displaying Cardinals Points. bool getFlagCardinalsPoints() const; //! Set flag for displaying Cardinals Points. @@ -268,6 +274,11 @@ //! @param landscapeID an installed landscape's identifier (the folder name) quint64 loadLandscapeSize(QString landscapeID); + //! Get flag for autoselect of landscapes for planets. + bool getFlagLandscapeAutoSelection() const; + //! Set flag for autoselect of landscapes for planets. + void setFlagLandscapeAutoSelection(bool enableAutoSelect); + signals: void atmosphereDisplayedChanged(const bool displayed); void cardinalsPointsDisplayedChanged(const bool displayed); @@ -338,6 +349,10 @@ // Define whether the observer location is to be updated when the landscape is updated. bool flagLandscapeSetsLocation; + bool flagLandscapeAutoSelection; + + bool flagLandscapeNightBrightness; + // The ID of the currently loaded landscape QString currentLandscapeID; diff -Nru stellarium-0.12.1/src/core/modules/MeteorMgr.cpp stellarium-0.12.4/src/core/modules/MeteorMgr.cpp --- stellarium-0.12.1/src/core/modules/MeteorMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/MeteorMgr.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -88,6 +88,9 @@ void MeteorMgr::update(double deltaTime) { +#ifdef _MSC_BUILD + return; +#endif if (!flagShow) return; diff -Nru stellarium-0.12.1/src/core/modules/Nebula.cpp stellarium-0.12.4/src/core/modules/Nebula.cpp --- stellarium-0.12.1/src/core/modules/Nebula.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/Nebula.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -184,6 +184,11 @@ { float lim = mag; if (lim > 50) lim = 15.f; + + // temporary workaround of this bug: https://bugs.launchpad.net/stellarium/+bug/1115035 --AW + if (getEnglishName().contains("Pleiades")) + lim = 5.f; + if (lim>maxMagHints) return; renderer->setBlendMode(BlendMode_Add); @@ -233,6 +238,11 @@ { float lim = mag; if (lim > 50) lim = 15.f; + + // temporary workaround of this bug: https://bugs.launchpad.net/stellarium/+bug/1115035 --AW + if (getEnglishName().contains("Pleiades")) + lim = 5.f; + if (lim>maxMagLabel) return; diff -Nru stellarium-0.12.1/src/core/modules/NebulaMgr.cpp stellarium-0.12.4/src/core/modules/NebulaMgr.cpp --- stellarium-0.12.1/src/core/modules/NebulaMgr.cpp 2013-04-19 02:26:54.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/NebulaMgr.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -436,7 +436,7 @@ QFile ngcNameFile(catNGCNames); if (!ngcNameFile.open(QIODevice::ReadOnly | QIODevice::Text)) { - qWarning() << "NGC name data file" << catNGCNames << "not found."; + qWarning() << "NGC name data file" << QDir::toNativeSeparators(catNGCNames) << "not found."; return false; } @@ -495,7 +495,7 @@ istr >> num; if (istr.status()!=QTextStream::Ok) { - qWarning() << "cannot read Caldwell number at line" << lineNumber << "of" << catNGCNames; + qWarning() << "cannot read Caldwell number at line" << lineNumber << "of" << QDir::toNativeSeparators(catNGCNames); continue; } @@ -513,7 +513,7 @@ istr >> num; if (istr.status()!=QTextStream::Ok) { - qWarning() << "cannot read Messier number at line" << lineNumber << "of" << catNGCNames; + qWarning() << "cannot read Messier number at line" << lineNumber << "of" << QDir::toNativeSeparators(catNGCNames); continue; } @@ -525,7 +525,7 @@ readOk++; } else - qWarning() << "no position data for " << name << "at line" << lineNumber << "of" << catNGCNames; + qWarning() << "no position data for " << name << "at line" << lineNumber << "of" << QDir::toNativeSeparators(catNGCNames); } ngcNameFile.close(); qDebug() << "Loaded" << readOk << "/" << totalRecords << "NGC name records successfully"; @@ -565,6 +565,17 @@ return qSharedPointerCast(n); } + // Search by IC numbers (possible formats are "IC466" or "IC 466") + if (objw.mid(0, 2) == "IC") + { + foreach (const NebulaP& n, nebArray) + { + if (QString("IC%1").arg(n->IC_nb) == objw || QString("IC %1").arg(n->IC_nb) == objw) + return qSharedPointerCast(n); + } + } + + // Search by Messier numbers (possible formats are "M31" or "M 31") if (objw.mid(0, 1) == "M") { @@ -613,6 +624,16 @@ return qSharedPointerCast(n); } + // Search by IC numbers (possible formats are "IC466" or "IC 466") + if (objw.mid(0, 2) == "IC") + { + foreach (const NebulaP& n, nebArray) + { + if (QString("IC%1").arg(n->IC_nb) == objw || QString("IC %1").arg(n->IC_nb) == objw) + return qSharedPointerCast(n); + } + } + // Search by Messier numbers (possible formats are "M31" or "M 31") if (objw.mid(0, 1) == "M") { @@ -638,14 +659,13 @@ //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name -QStringList NebulaMgr::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem) const +QStringList NebulaMgr::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (maxNbItem==0) return result; QString objw = objPrefix.toUpper(); - - // Search by messier objects number (possible formats are "M31" or "M 31") + // Search by Messier objects number (possible formats are "M31" or "M 31") if (objw.size()>=1 && objw[0]=='M') { foreach (const NebulaP& n, nebArray) @@ -655,7 +675,7 @@ QString constws = constw.mid(0, objw.size()); if (constws==objw) { - result << constw; + result << constws; continue; // Prevent adding both forms for name } constw = QString("M %1").arg(n->M_nb); @@ -665,6 +685,26 @@ } } + // Search by IC objects number (possible formats are "IC466" or "IC 466") + if (objw.size()>=1 && objw[0]=='I') + { + foreach (const NebulaP& n, nebArray) + { + if (n->IC_nb==0) continue; + QString constw = QString("IC%1").arg(n->IC_nb); + QString constws = constw.mid(0, objw.size()); + if (constws==objw) + { + result << constws; + continue; // Prevent adding both forms for name + } + constw = QString("IC %1").arg(n->IC_nb); + constws = constw.mid(0, objw.size()); + if (constws==objw) + result << constw; + } + } + // Search by NGC numbers (possible formats are "NGC31" or "NGC 31") foreach (const NebulaP& n, nebArray) { @@ -673,7 +713,7 @@ QString constws = constw.mid(0, objw.size()); if (constws==objw) { - result << constw; + result << constws; continue; } constw = QString("NGC %1").arg(n->NGC_nb); @@ -692,7 +732,7 @@ QString constws = constw.mid(0, objw.size()); if (constws==objw) { - result << constw; + result << constws; continue; // Prevent adding both forms for name } constw = QString("C %1").arg(n->C_nb); @@ -702,29 +742,44 @@ } } + QString dson; + bool find; // Search by common names foreach (const NebulaP& n, nebArray) { - QString constw = n->nameI18.mid(0, objw.size()).toUpper(); - if (constw==objw) - result << n->nameI18; + dson = n->nameI18; + find = false; + if (useStartOfWords) + { + if (dson.mid(0, objw.size()).toUpper()==objw) + find = true; + + } + else + { + if (dson.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + result << dson; } result.sort(); - if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); - + if (maxNbItem > 0) + { + if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); + } return result; } //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name -QStringList NebulaMgr::listMatchingObjects(const QString& objPrefix, int maxNbItem) const +QStringList NebulaMgr::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (maxNbItem==0) return result; - QString objw = objPrefix.toUpper(); - - // Search by messier objects number (possible formats are "M31" or "M 31") + QString objw = objPrefix.toUpper(); + // Search by Messier objects number (possible formats are "M31" or "M 31") if (objw.size()>=1 && objw[0]=='M') { foreach (const NebulaP& n, nebArray) @@ -734,7 +789,7 @@ QString constws = constw.mid(0, objw.size()); if (constws==objw) { - result << constw; + result << constws; continue; // Prevent adding both forms for name } constw = QString("M %1").arg(n->M_nb); @@ -744,6 +799,26 @@ } } + // Search by IC objects number (possible formats are "IC466" or "IC 466") + if (objw.size()>=1 && objw[0]=='I') + { + foreach (const NebulaP& n, nebArray) + { + if (n->IC_nb==0) continue; + QString constw = QString("IC%1").arg(n->IC_nb); + QString constws = constw.mid(0, objw.size()); + if (constws==objw) + { + result << constws; + continue; // Prevent adding both forms for name + } + constw = QString("IC %1").arg(n->IC_nb); + constws = constw.mid(0, objw.size()); + if (constws==objw) + result << constw; + } + } + // Search by NGC numbers (possible formats are "NGC31" or "NGC 31") foreach (const NebulaP& n, nebArray) { @@ -752,7 +827,7 @@ QString constws = constw.mid(0, objw.size()); if (constws==objw) { - result << constw; + result << constws; continue; } constw = QString("NGC %1").arg(n->NGC_nb); @@ -771,7 +846,7 @@ QString constws = constw.mid(0, objw.size()); if (constws==objw) { - result << constw; + result << constws; continue; // Prevent adding both forms for name } constw = QString("C %1").arg(n->C_nb); @@ -781,16 +856,33 @@ } } + QString dson; + bool find; // Search by common names foreach (const NebulaP& n, nebArray) { - QString constw = n->englishName.mid(0, objw.size()).toUpper(); - if (constw==objw) - result << n->englishName; + dson = n->englishName; + find = false; + if (useStartOfWords) + { + if (dson.mid(0, objw.size()).toUpper()==objw) + find = true; + + } + else + { + if (dson.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + } + if (find) + result << dson; } result.sort(); - if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); + if (maxNbItem > 0) + { + if (result.size()>maxNbItem) result.erase(result.begin()+maxNbItem, result.end()); + } return result; } diff -Nru stellarium-0.12.1/src/core/modules/NebulaMgr.hpp stellarium-0.12.4/src/core/modules/NebulaMgr.hpp --- stellarium-0.12.1/src/core/modules/NebulaMgr.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/NebulaMgr.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -91,13 +91,15 @@ //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; // empty for now virtual QStringList listAllObjects(bool inEnglish) const { Q_UNUSED(inEnglish) return QStringList(); } virtual QString getName() const { return "Nebulae"; } diff -Nru stellarium-0.12.1/src/core/modules/Planet.cpp stellarium-0.12.4/src/core/modules/Planet.cpp --- stellarium-0.12.1/src/core/modules/Planet.cpp 2013-04-08 14:18:15.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/Planet.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -217,6 +217,10 @@ " P3 = normalize(P) * data.w;\n" " }\n" "\n" + " float L = length(Lp - P3);\n" + " RS = L * tan(asin(RS / L));\n" + " float R = atan(RS / L); //RS / L;\n" + "\n" " if((lambert > 0.0) || isRing)\n" " {\n" " if(ring && !isRing)\n" @@ -248,12 +252,10 @@ " vec3 C = data.rgb;\n" " float radius = data.a;\n" "\n" - " float L = length(Lp - P3);\n" " float l = length(C - P3);\n" - "\n" - " float R = RS / L;\n" - " float r = radius / l;\n" - " float d = length( (Lp - P3) / L - (C - P3) / l );\n" + " radius = l * tan(asin(radius / l));\n" + " float r = atan(radius / l); //radius / l;\n" + " float d = acos(min(1.0, dot(normalize(Lp - P3), normalize(C - P3)))); //length( (Lp - P3) / L - (C - P3) / l );\n" "\n" " float illumination = 1.0;\n" "\n" @@ -620,22 +622,19 @@ if (orbitFader.getInterstate()>0.000001 && deltaOrbitJD > 0 && (fabs(lastOrbitJD-date)>deltaOrbitJD || !orbitCached)) { - - // calculate orbit first (for line drawing) - double date_increment = re.siderealPeriod/ORBIT_SEGMENTS; double calc_date; // int delta_points = (int)(0.5 + (date - lastOrbitJD)/date_increment); int delta_points; if( date > lastOrbitJD ) { - delta_points = (int)(0.5 + (date - lastOrbitJD)/date_increment); + delta_points = (int)(0.5 + (date - lastOrbitJD)/deltaOrbitJD); } else { - delta_points = (int)(-0.5 + (date - lastOrbitJD)/date_increment); + delta_points = (int)(-0.5 + (date - lastOrbitJD)/deltaOrbitJD); } - double new_date = lastOrbitJD + delta_points*date_increment; + double new_date = lastOrbitJD + delta_points*deltaOrbitJD; // qDebug( "Updating orbit coordinates for %s (delta %f) (%d points)\n", name.c_str(), deltaOrbitJD, delta_points); @@ -647,7 +646,7 @@ if(d + delta_points >= ORBIT_SEGMENTS ) { // calculate new points - calc_date = new_date + (d-ORBIT_SEGMENTS/2)*date_increment; + calc_date = new_date + (d-ORBIT_SEGMENTS/2)*deltaOrbitJD; // date increments between points will not be completely constant though computeTransMatrix(calc_date); @@ -679,7 +678,7 @@ if(d + delta_points < 0 ) { // calculate new points - calc_date = new_date + (d-ORBIT_SEGMENTS/2)*date_increment; + calc_date = new_date + (d-ORBIT_SEGMENTS/2)*deltaOrbitJD; computeTransMatrix(calc_date); if (osculatingFunc) { @@ -708,7 +707,7 @@ // update all points (less efficient) for( int d=0; dsetBlendMode(BlendMode_Alpha); renderer->setGlobalColor(orbitColor[0], orbitColor[1], - orbitColor[2], orbitFader.getInterstate()); + orbitColor[2], orbitFader.getInterstate()); Vec3d onscreen; // special case - use current Planet position as center vertex so that draws diff -Nru stellarium-0.12.1/src/core/modules/SolarSystem.cpp stellarium-0.12.4/src/core/modules/SolarSystem.cpp --- stellarium-0.12.1/src/core/modules/SolarSystem.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/SolarSystem.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -58,6 +58,7 @@ #include #include #include +#include SolarSystem::SolarSystem() : moonScale(1.) @@ -253,10 +254,10 @@ { QString newName = QString("%1/data/ssystem-%2.ini").arg(StelFileMgr::getUserDir()).arg(QDateTime::currentDateTime().toString("yyyyMMddThhmmss")); if (QFile::rename(solarSystemFile, newName)) - qWarning() << "Invalid Solar System file" << solarSystemFile << "has been renamed to" << newName; + qWarning() << "Invalid Solar System file" << QDir::toNativeSeparators(solarSystemFile) << "has been renamed to" << QDir::toNativeSeparators(newName); else { - qWarning() << "Invalid Solar System file" << solarSystemFile << "cannot be removed!"; + qWarning() << "Invalid Solar System file" << QDir::toNativeSeparators(solarSystemFile) << "cannot be removed!"; qWarning() << "Please either delete it, rename it or move it elsewhere."; } } @@ -275,7 +276,7 @@ QSettings pd(filePath, StelIniFormat); if (pd.status() != QSettings::NoError) { - qWarning() << "ERROR while parsing" << filePath; + qWarning() << "ERROR while parsing" << QDir::toNativeSeparators(filePath); return false; } @@ -420,8 +421,7 @@ period = pd.value(secname+"/orbit_Period",-1e100).toDouble(); if (period <= -1e100) { meanMotion = (eccentricity == 1.0) - ? 0.01720209895 * (1.5/pericenterDistance) - * sqrt(0.5/pericenterDistance) + ? 0.01720209895 * (1.5/pericenterDistance) * sqrt(0.5/pericenterDistance) : (semi_major_axis > 0.0) ? 0.01720209895 / (semi_major_axis*sqrt(semi_major_axis)) : 0.01720209895 / (-semi_major_axis*sqrt(-semi_major_axis)); @@ -477,16 +477,16 @@ // Create an elliptical orbit EllipticalOrbit *orb = new EllipticalOrbit(pericenterDistance, - eccentricity, - inclination, - ascending_node, - arg_of_pericenter, - mean_anomaly, - period, - epoch, - parentRotObliquity, - parent_rot_asc_node, - parent_rot_j2000_longitude); + eccentricity, + inclination, + ascending_node, + arg_of_pericenter, + mean_anomaly, + period, + epoch, + parentRotObliquity, + parent_rot_asc_node, + parent_rot_j2000_longitude); orbits.push_back(orb); userDataPtr = orb; @@ -532,8 +532,7 @@ // in case of parent=sun: use Gaussian gravitational constant // for calculating meanMotion: meanMotion = (eccentricity == 1.0) - ? 0.01720209895 * (1.5/pericenterDistance) - * sqrt(0.5/pericenterDistance) + ? 0.01720209895 * (1.5/pericenterDistance) * sqrt(0.5/pericenterDistance) : (semi_major_axis > 0.0) ? 0.01720209895 / (semi_major_axis*sqrt(semi_major_axis)) : 0.01720209895 / (-semi_major_axis*sqrt(-semi_major_axis)); @@ -562,36 +561,32 @@ const double inclination = pd.value(secname+"/orbit_Inclination").toDouble()*(M_PI/180.0); const double arg_of_pericenter = pd.value(secname+"/orbit_ArgOfPericenter").toDouble()*(M_PI/180.0); const double ascending_node = pd.value(secname+"/orbit_AscendingNode").toDouble()*(M_PI/180.0); - const double parentRotObliquity = parent->getParent() - ? parent->getRotObliquity() - : 0.0; - const double parent_rot_asc_node = parent->getParent() - ? parent->getRotAscendingnode() - : 0.0; + const double parentRotObliquity = parent->getParent() ? parent->getRotObliquity() : 0.0; + const double parent_rot_asc_node = parent->getParent() ? parent->getRotAscendingnode() : 0.0; double parent_rot_j2000_longitude = 0.0; if (parent->getParent()) { - const double c_obl = cos(parentRotObliquity); - const double s_obl = sin(parentRotObliquity); - const double c_nod = cos(parent_rot_asc_node); - const double s_nod = sin(parent_rot_asc_node); - const Vec3d OrbitAxis0( c_nod, s_nod, 0.0); - const Vec3d OrbitAxis1(-s_nod*c_obl, c_nod*c_obl,s_obl); - const Vec3d OrbitPole( s_nod*s_obl,-c_nod*s_obl,c_obl); - const Vec3d J2000Pole(StelCore::matJ2000ToVsop87.multiplyWithoutTranslation(Vec3d(0,0,1))); - Vec3d J2000NodeOrigin(J2000Pole^OrbitPole); - J2000NodeOrigin.normalize(); - parent_rot_j2000_longitude = atan2(J2000NodeOrigin*OrbitAxis1,J2000NodeOrigin*OrbitAxis0); + const double c_obl = cos(parentRotObliquity); + const double s_obl = sin(parentRotObliquity); + const double c_nod = cos(parent_rot_asc_node); + const double s_nod = sin(parent_rot_asc_node); + const Vec3d OrbitAxis0( c_nod, s_nod, 0.0); + const Vec3d OrbitAxis1(-s_nod*c_obl, c_nod*c_obl,s_obl); + const Vec3d OrbitPole( s_nod*s_obl,-c_nod*s_obl,c_obl); + const Vec3d J2000Pole(StelCore::matJ2000ToVsop87.multiplyWithoutTranslation(Vec3d(0,0,1))); + Vec3d J2000NodeOrigin(J2000Pole^OrbitPole); + J2000NodeOrigin.normalize(); + parent_rot_j2000_longitude = atan2(J2000NodeOrigin*OrbitAxis1,J2000NodeOrigin*OrbitAxis0); } CometOrbit *orb = new CometOrbit(pericenterDistance, - eccentricity, - inclination, - ascending_node, - arg_of_pericenter, - time_at_pericenter, - meanMotion, - parentRotObliquity, - parent_rot_asc_node, - parent_rot_j2000_longitude); + eccentricity, + inclination, + ascending_node, + arg_of_pericenter, + time_at_pericenter, + meanMotion, + parentRotObliquity, + parent_rot_asc_node, + parent_rot_j2000_longitude); orbits.push_back(orb); userDataPtr = orb; posfunc = &cometOrbitPosFunc; @@ -880,11 +875,11 @@ if (systemPlanets.isEmpty()) { - qWarning() << "No Solar System objects loaded from" << filePath; + qWarning() << "No Solar System objects loaded from" << QDir::toNativeSeparators(filePath); return false; } - qDebug() << "Loaded" << readOk << "/" << totalPlanets << "planet orbits from" << filePath; + qDebug() << "Loaded" << readOk << "/" << totalPlanets << "planet orbits from" << QDir::toNativeSeparators(filePath); return true; } @@ -1371,38 +1366,69 @@ } //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name -QStringList SolarSystem::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem) const +QStringList SolarSystem::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (maxNbItem==0) return result; - QString objw = objPrefix.toUpper(); + + QString sson; + bool find; foreach (const PlanetP& p, systemPlanets) { - QString constw = p->getNameI18n().mid(0, objw.size()).toUpper(); - if (constw==objw) + sson = p->getNameI18n(); + find = false; + if (useStartOfWords) + { + QString constw = sson.mid(0, objPrefix.size()).toUpper(); + if (constw==objPrefix.toUpper()) + find = true; + } + else { - result << p->getNameI18n(); + if (sson.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + + } + if (find) + { + result << sson; if (result.size()==maxNbItem) return result; } + } return result; } //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name -QStringList SolarSystem::listMatchingObjects(const QString& objPrefix, int maxNbItem) const +QStringList SolarSystem::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (maxNbItem==0) return result; - QString objw = objPrefix.toUpper(); + + QString sson; + bool find; foreach (const PlanetP& p, systemPlanets) { - QString constw = p->getEnglishName().mid(0, objw.size()).toUpper(); - if (constw==objw) + sson = p->getEnglishName(); + find = false; + if (useStartOfWords) + { + QString constw = sson.mid(0, objPrefix.size()).toUpper(); + if (constw==objPrefix.toUpper()) + find = true; + } + else { - result << p->getEnglishName(); + if (sson.contains(objPrefix, Qt::CaseInsensitive)) + find = true; + + } + if (find) + { + result << sson; if (result.size()==maxNbItem) return result; } diff -Nru stellarium-0.12.1/src/core/modules/SolarSystem.hpp stellarium-0.12.4/src/core/modules/SolarSystem.hpp --- stellarium-0.12.1/src/core/modules/SolarSystem.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/SolarSystem.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -99,15 +99,17 @@ //! the passed object I18n name. //! @param objPrefix the case insensitive first letters of the searched object. //! @param maxNbItem the maximum number of returned object names. + //! @param useStartOfWords the autofill mode for returned objects names. //! @return a list of matching object name by order of relevance, or an empty list if nothing matches. - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; //! Find objects by translated name prefix. //! Find and return the list of at most maxNbItem objects auto-completing //! the passed object English name. //! @param objPrefix the case insensitive first letters of the searched object. //! @param maxNbItem the maximum number of returned object names. + //! @param useStartOfWords the autofill mode for returned objects names. //! @return a list of matching object name by order of relevance, or an empty list if nothing matches. - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; virtual QStringList listAllObjects(bool inEnglish) const; virtual QString getName() const { return "Solar System"; } diff -Nru stellarium-0.12.1/src/core/modules/Star.cpp stellarium-0.12.4/src/core/modules/Star.cpp --- stellarium-0.12.1/src/core/modules/Star.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/Star.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -35,6 +35,8 @@ if (StarMgr::getFlagSciNames()) { const QString sciName = StarMgr::getSciName(hip); if (!sciName.isEmpty()) return sciName; + const QString varSciName = StarMgr::getGcvsName(hip); + if (!varSciName.isEmpty() && varSciName!=sciName) return varSciName; return QString("HIP %1").arg(hip); } } diff -Nru stellarium-0.12.1/src/core/modules/Star.hpp stellarium-0.12.4/src/core/modules/Star.hpp --- stellarium-0.12.1/src/core/modules/Star.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/Star.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -55,8 +55,13 @@ #pragma pack(1) #endif struct Star1 { // 28 byte +#ifdef _MSC_BUILD + unsigned int hip:24; // 17 bits needed + unsigned int componentIds:8; // 5 bits needed +#else int hip:24; // 17 bits needed unsigned char componentIds; // 5 bits needed +#endif Int32 x0; // 32 bits needed Int32 x1; // 32 bits needed unsigned char bV; // 7 bits needed diff -Nru stellarium-0.12.1/src/core/modules/StarMgr.cpp stellarium-0.12.4/src/core/modules/StarMgr.cpp --- stellarium-0.12.1/src/core/modules/StarMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/StarMgr.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -28,6 +28,7 @@ #include #include #include +#include #include "StelProjector.hpp" #include "StarMgr.hpp" @@ -54,7 +55,11 @@ #include "RefractionExtinction.hpp" #include +#ifndef Q_OS_WIN #include +#else +#include "kdewin32/unistd.h" +#endif using namespace BigStarCatalogExtension; @@ -64,7 +69,7 @@ // This number must be incremented each time the content or file format of the stars catalogs change // It can also be incremented when the defaultStarsConfig.json file change. // It should always matchs the version field of the defaultStarsConfig.json file -static const int StarCatalogFormatVersion = 3; +static const int StarCatalogFormatVersion = 4; // Initialise statics bool StarMgr::flagSciNames = true; @@ -74,6 +79,10 @@ QMap StarMgr::commonNamesIndex; QHash StarMgr::sciNamesMapI18n; QMap StarMgr::sciNamesIndexI18n; +QHash StarMgr::sciAdditionalNamesMapI18n; +QMap StarMgr::sciAdditionalNamesIndexI18n; +QHash StarMgr::varStarsMapI18n; +QMap StarMgr::varStarsIndexI18n; QStringList initStringListFromFile(const QString& file_name) { @@ -182,13 +191,104 @@ return QString(); } +QString StarMgr::getSciAdditionalName(int hip) +{ + QHash::const_iterator it(sciAdditionalNamesMapI18n.find(hip)); + if (it!=sciAdditionalNamesMapI18n.end()) + return it.value(); + return QString(); +} + + +QString StarMgr::getGcvsName(int hip) +{ + QHash::const_iterator it(varStarsMapI18n.find(hip)); + if (it!=varStarsMapI18n.end()) + return it.value().designation; + return QString(); +} + +QString StarMgr::getGcvsVariabilityType(int hip) +{ + QHash::const_iterator it(varStarsMapI18n.find(hip)); + if (it!=varStarsMapI18n.end()) + return it.value().vtype; + return QString(); +} + +float StarMgr::getGcvsMaxMagnitude(int hip) +{ + QHash::const_iterator it(varStarsMapI18n.find(hip)); + if (it!=varStarsMapI18n.end()) + return it.value().maxmag; + return -99.f; +} + +int StarMgr::getGcvsMagnitudeFlag(int hip) +{ + QHash::const_iterator it(varStarsMapI18n.find(hip)); + if (it!=varStarsMapI18n.end()) + return it.value().mflag; + return 0; +} + + +float StarMgr::getGcvsMinMagnitude(int hip, bool firstMinimumFlag) +{ + QHash::const_iterator it(varStarsMapI18n.find(hip)); + if (it!=varStarsMapI18n.end()) + { + if (firstMinimumFlag) + { + return it.value().min1mag; + } + else + { + return it.value().min2mag; + } + } + return -99.f; +} + +QString StarMgr::getGcvsPhotometricSystem(int hip) +{ + QHash::const_iterator it(varStarsMapI18n.find(hip)); + if (it!=varStarsMapI18n.end()) + return it.value().photosys; + return QString(); +} + +double StarMgr::getGcvsEpoch(int hip) +{ + QHash::const_iterator it(varStarsMapI18n.find(hip)); + if (it!=varStarsMapI18n.end()) + return it.value().epoch; + return -99.f; +} + +double StarMgr::getGcvsPeriod(int hip) +{ + QHash::const_iterator it(varStarsMapI18n.find(hip)); + if (it!=varStarsMapI18n.end()) + return it.value().period; + return -99.f; +} + +int StarMgr::getGcvsMM(int hip) +{ + QHash::const_iterator it(varStarsMapI18n.find(hip)); + if (it!=varStarsMapI18n.end()) + return it.value().Mm; + return -99; +} + void StarMgr::copyDefaultConfigFile() { try { StelFileMgr::makeSureDirExistsAndIsWritable(StelFileMgr::getUserDir()+"/stars/default"); starConfigFileFullPath = StelFileMgr::getUserDir()+"/stars/default/starsConfig.json"; - qDebug() << "Creates file " << starConfigFileFullPath; + qDebug() << "Creates file " << QDir::toNativeSeparators(starConfigFileFullPath); QFile::copy(StelFileMgr::findFile("stars/default/defaultStarsConfig.json"), starConfigFileFullPath); } catch (std::runtime_error& e) @@ -312,7 +412,7 @@ // The file is supposed to be checked, but we can't find it if (checked) { - qWarning() << QString("Warning: could not find star catalog %1").arg(catalogFileName); + qWarning() << QString("Warning: could not find star catalog %1").arg(QDir::toNativeSeparators(catalogFileName)); setCheckFlag(catDesc.value("id").toString(), false); } return false; @@ -320,14 +420,14 @@ // Possibly fixes crash on Vista if (!StelFileMgr::isReadable(catalogFilePath)) { - qWarning() << QString("Warning: User does not have permissions to read catalog %1").arg(catalogFilePath); + qWarning() << QString("Warning: User does not have permissions to read catalog %1").arg(QDir::toNativeSeparators(catalogFilePath)); return false; } if (!checked) { // The file is not checked but we found it, maybe from a previous download/version - qWarning() << "Found file " << catalogFilePath << ", checking md5sum.."; + qWarning() << "Found file " << QDir::toNativeSeparators(catalogFilePath) << ", checking md5sum.."; QFile fic(catalogFilePath); fic.open(QIODevice::ReadOnly | QIODevice::Unbuffered); @@ -356,7 +456,7 @@ fic.close(); if (md5Hash.result().toHex()!=catDesc.value("checksum").toByteArray()) { - qWarning() << "Error: File " << catalogFileName << " is corrupt, MD5 mismatch! Found " << md5Hash.result().toHex() << " expected " << catDesc.value("checksum").toByteArray(); + qWarning() << "Error: File " << QDir::toNativeSeparators(catalogFileName) << " is corrupt, MD5 mismatch! Found " << md5Hash.result().toHex() << " expected " << catDesc.value("checksum").toByteArray(); fic.remove(); return false; } @@ -371,14 +471,15 @@ { maxGeodesicGridLevel = z->level; } - ZoneArray *&pos(zoneArrays[z->level]); + ZoneArray *pos(zoneArrays[z->level]); if (pos) { - qWarning() << catalogFileName << ", " << z->level << ": duplicate level"; + qWarning() << QDir::toNativeSeparators(catalogFileName) << ", " << z->level << ": duplicate level"; delete z; } else { + zoneArrays[z->level] = z; pos = z; } } @@ -447,7 +548,7 @@ catch (std::runtime_error& e) { qWarning() << "ERROR while loading data from " - << ("stars/default/" + cat_hip_sp_file_name) + << QDir::toNativeSeparators(("stars/default/" + cat_hip_sp_file_name)) << ": " << e.what(); } } @@ -466,7 +567,7 @@ catch (std::runtime_error& e) { qWarning() << "ERROR while loading data from " - << ("stars/default/" + cat_hip_cids_file_name) << ": " << e.what(); + << QDir::toNativeSeparators(("stars/default/" + cat_hip_cids_file_name)) << ": " << e.what(); } } @@ -482,11 +583,11 @@ commonNamesIndexI18n.clear(); commonNamesIndex.clear(); - qDebug() << "Loading star names from" << commonNameFile; + qDebug() << "Loading star names from" << QDir::toNativeSeparators(commonNameFile); QFile cnFile(commonNameFile); if (!cnFile.open(QIODevice::ReadOnly | QIODevice::Text)) { - qWarning() << "WARNING - could not open" << commonNameFile; + qWarning() << "WARNING - could not open" << QDir::toNativeSeparators(commonNameFile); return 0; } @@ -512,7 +613,7 @@ totalRecords++; if (!recordRx.exactMatch(record)) { - qWarning() << "WARNING - parse error at line" << lineNumber << "in" << commonNameFile + qWarning() << "WARNING - parse error at line" << lineNumber << "in" << QDir::toNativeSeparators(commonNameFile) << " - record does not match record pattern"; continue; } @@ -523,14 +624,14 @@ unsigned int hip = recordRx.capturedTexts().at(1).toUInt(&ok); if (!ok) { - qWarning() << "WARNING - parse error at line" << lineNumber << "in" << commonNameFile + qWarning() << "WARNING - parse error at line" << lineNumber << "in" << QDir::toNativeSeparators(commonNameFile) << " - failed to convert " << recordRx.capturedTexts().at(1) << "to a number"; continue; } QString englishCommonName = recordRx.capturedTexts().at(2).trimmed(); if (englishCommonName.isEmpty()) { - qWarning() << "WARNING - parse error at line" << lineNumber << "in" << commonNameFile + qWarning() << "WARNING - parse error at line" << lineNumber << "in" << QDir::toNativeSeparators(commonNameFile) << " - empty name field"; continue; } @@ -559,12 +660,14 @@ { sciNamesMapI18n.clear(); sciNamesIndexI18n.clear(); + sciAdditionalNamesMapI18n.clear(); + sciAdditionalNamesIndexI18n.clear(); - qDebug() << "Loading star names from" << sciNameFile; + qDebug() << "Loading star names from" << QDir::toNativeSeparators(sciNameFile); QFile snFile(sciNameFile); if (!snFile.open(QIODevice::ReadOnly | QIODevice::Text)) { - qWarning() << "WARNING - could not open" << sciNameFile; + qWarning() << "WARNING - could not open" << QDir::toNativeSeparators(sciNameFile); return; } const QStringList& allRecords = QString::fromUtf8(snFile.readAll()).split('\n'); @@ -586,7 +689,7 @@ const QStringList& fields = record.split('|'); if (fields.size()!=2) { - qWarning() << "WARNING - parse error at line" << lineNumber << "in" << sciNameFile + qWarning() << "WARNING - parse error at line" << lineNumber << "in" << QDir::toNativeSeparators(sciNameFile) << " - record does not match record pattern"; continue; } @@ -597,26 +700,31 @@ unsigned int hip = fields.at(0).toUInt(&ok); if (!ok) { - qWarning() << "WARNING - parse error at line" << lineNumber << "in" << sciNameFile + qWarning() << "WARNING - parse error at line" << lineNumber << "in" << QDir::toNativeSeparators(sciNameFile) << " - failed to convert " << fields.at(0) << "to a number"; continue; } - // Don't set the sci name if it's already set - if (sciNamesMapI18n.find(hip)!=sciNamesMapI18n.end()) - continue; - QString sci_name_i18n = fields.at(1).trimmed(); if (sci_name_i18n.isEmpty()) { - qWarning() << "WARNING - parse error at line" << lineNumber << "in" << sciNameFile + qWarning() << "WARNING - parse error at line" << lineNumber << "in" << QDir::toNativeSeparators(sciNameFile) << " - empty name field"; continue; } sci_name_i18n.replace('_',' '); - sciNamesMapI18n[hip] = sci_name_i18n; - sciNamesIndexI18n[sci_name_i18n.toUpper()] = hip; + // Don't set the main sci name if it's already set - it's additional sci name + if (sciNamesMapI18n.find(hip)!=sciNamesMapI18n.end()) + { + sciAdditionalNamesMapI18n[hip] = sci_name_i18n; + sciAdditionalNamesIndexI18n[sci_name_i18n.toUpper()] = hip; + } + else + { + sciNamesMapI18n[hip] = sci_name_i18n; + sciNamesIndexI18n[sci_name_i18n.toUpper()] = hip; + } ++readOk; } } @@ -624,6 +732,74 @@ qDebug() << "Loaded" << readOk << "/" << totalRecords << "scientific star names"; } +// Load GCVS from file +void StarMgr::loadGcvs(const QString& GcvsFile) +{ + varStarsMapI18n.clear(); + varStarsIndexI18n.clear(); + + qDebug() << "Loading variable stars from" << QDir::toNativeSeparators(GcvsFile); + QFile vsFile(GcvsFile); + if (!vsFile.open(QIODevice::ReadOnly | QIODevice::Text)) + { + qWarning() << "WARNING - could not open" << QDir::toNativeSeparators(GcvsFile); + return; + } + const QStringList& allRecords = QString::fromUtf8(vsFile.readAll()).split('\n'); + vsFile.close(); + + int readOk=0; + int totalRecords=0; + int lineNumber=0; + + // record structure is delimited with a tab character. + foreach(const QString& record, allRecords) + { + ++lineNumber; + if (record.isEmpty()) + continue; + + ++totalRecords; + const QStringList& fields = record.split('\t'); + + bool ok; + unsigned int hip = fields.at(0).toUInt(&ok); + if (!ok) + { + qWarning() << "WARNING - parse error at line" << lineNumber << "in" << QDir::toNativeSeparators(GcvsFile) + << " - failed to convert " << fields.at(0) << "to a number"; + continue; + } + + // Don't set the star if it's already set + if (varStarsMapI18n.find(hip)!=varStarsMapI18n.end()) + continue; + + varstar variableStar; + + variableStar.designation = fields.at(1).trimmed(); + variableStar.vtype = fields.at(2).trimmed(); + variableStar.maxmag = fields.at(3).toFloat(); + variableStar.mflag = fields.at(4).toInt(); + variableStar.min1mag = fields.at(5).toFloat(); + if (fields.at(6).isEmpty()) + variableStar.min2mag = 99.f; + else + variableStar.min2mag = fields.at(6).toFloat(); + variableStar.photosys = fields.at(7).trimmed(); + variableStar.epoch = fields.at(8).toDouble(); + variableStar.period = fields.at(9).toDouble(); + variableStar.Mm = fields.at(10).toInt(); + variableStar.stype = fields.at(11).trimmed(); + + varStarsMapI18n[hip] = variableStar; + varStarsIndexI18n[variableStar.designation.toUpper()] = hip; + ++readOk; + } + + qDebug() << "Loaded" << readOk << "/" << totalRecords << "variable stars"; +} + int StarMgr::getMaxSearchLevel() const { @@ -849,6 +1025,21 @@ return searchHP(it2.value()); } + + // Search by additional sci name + QMap::const_iterator it3 = sciAdditionalNamesIndexI18n.find(objw); + if (it3!=sciAdditionalNamesIndexI18n.end()) + { + return searchHP(it3.value()); + } + + // Search by GCVS name + QMap::const_iterator it4 = varStarsIndexI18n.find(objw); + if (it4!=varStarsIndexI18n.end()) + { + return searchHP(it4.value()); + } + return StelObjectP(); } @@ -871,12 +1062,19 @@ return searchHP(it.value()); } + // Search by additional sci name + QMap::const_iterator it2 = sciAdditionalNamesIndexI18n.find(objw); + if (it2!=sciAdditionalNamesIndexI18n.end()) + { + return searchHP(it2.value()); + } + return StelObjectP(); } //! Find and return the list of at most maxNbItem objects auto-completing //! the passed object I18n name. -QStringList StarMgr::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem) const +QStringList StarMgr::listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (maxNbItem==0) return result; @@ -884,17 +1082,34 @@ QString objw = objPrefix.toUpper(); // Search for common names - for (QMap::const_iterator it(commonNamesIndexI18n.lowerBound(objw)); it!=commonNamesIndexI18n.end(); ++it) - { - if (it.key().startsWith(objw)) + if (useStartOfWords) { + for (QMap::const_iterator it(commonNamesIndexI18n.lowerBound(objw)); it!=commonNamesIndexI18n.end(); ++it) { - if (maxNbItem==0) + if (it.key().startsWith(objw)) + { + if (maxNbItem==0) + break; + result << getCommonName(it.value()); + --maxNbItem; + } + else break; - result << getCommonName(it.value()); - --maxNbItem; } - else - break; + } + else + { + QMapIterator i(commonNamesIndexI18n); + while (i.hasNext()) + { + i.next(); + if (i.key().contains(objw)) + { + if (maxNbItem==0) + break; + result << getCommonName(i.value()); + --maxNbItem; + } + } } // Search for sci names @@ -919,6 +1134,32 @@ break; } + for (QMap::const_iterator it(sciAdditionalNamesIndexI18n.lowerBound(objw)); it!=sciAdditionalNamesIndexI18n.end(); ++it) + { + if (it.key().indexOf(bayerRegEx)==0) + { + if (maxNbItem==0) + break; + result << getSciAdditionalName(it.value()); + --maxNbItem; + } + else if (it.key().at(0) != objw.at(0)) + break; + } + + for (QMap::const_iterator it(varStarsIndexI18n.lowerBound(objw)); it!=varStarsIndexI18n.end(); ++it) + { + if (it.key().startsWith(objw)) + { + if (maxNbItem==0) + break; + result << getGcvsName(it.value()); + --maxNbItem; + } + else + break; + } + // Add exact Hp catalogue numbers QRegExp hpRx("^(HIP|HP)\\s*(\\d+)\\s*$"); hpRx.setCaseSensitivity(Qt::CaseInsensitive); @@ -943,7 +1184,7 @@ //! Find and return the list of at most maxNbItem objects auto-completing //! the passed object English name. -QStringList StarMgr::listMatchingObjects(const QString& objPrefix, int maxNbItem) const +QStringList StarMgr::listMatchingObjects(const QString& objPrefix, int maxNbItem, bool useStartOfWords) const { QStringList result; if (maxNbItem==0) return result; @@ -951,17 +1192,35 @@ QString objw = objPrefix.toUpper(); // Search for common names - for (QMap::const_iterator it(commonNamesIndex.lowerBound(objw)); it!=commonNamesIndex.end(); ++it) + if (useStartOfWords) { - if (it.key().startsWith(objw)) + for (QMap::const_iterator it(commonNamesIndex.lowerBound(objw)); it!=commonNamesIndex.end(); ++it) { - if (maxNbItem==0) + if (it.key().startsWith(objw)) + { + if (maxNbItem==0) + break; + result << getCommonName(it.value()); + --maxNbItem; + } + else break; - result << getCommonName(it.value()); - --maxNbItem; } - else - break; + } + else + { + QMapIterator i(commonNamesIndex); + while (i.hasNext()) + { + i.next(); + if (i.key().contains(objw)) + { + if (maxNbItem==0) + break; + result << getCommonName(i.value()); + --maxNbItem; + } + } } // Search for sci names @@ -986,6 +1245,33 @@ break; } + for (QMap::const_iterator it(sciAdditionalNamesIndexI18n.lowerBound(objw)); it!=sciAdditionalNamesIndexI18n.end(); ++it) + { + if (it.key().indexOf(bayerRegEx)==0) + { + if (maxNbItem==0) + break; + result << getSciAdditionalName(it.value()); + --maxNbItem; + } + else if (it.key().at(0) != objw.at(0)) + break; + } + + // Search for sci names for var stars + for (QMap::const_iterator it(varStarsIndexI18n.lowerBound(objw)); it!=varStarsIndexI18n.end(); ++it) + { + if (it.key().startsWith(objw)) + { + if (maxNbItem==0) + break; + result << getGcvsName(it.value()); + --maxNbItem; + } + else + break; + } + // Add exact Hp catalogue numbers QRegExp hpRx("^(HIP|HP)\\s*(\\d+)\\s*$"); hpRx.setCaseSensitivity(Qt::CaseInsensitive); @@ -1024,7 +1310,7 @@ } catch(std::runtime_error& e) { - qDebug() << "Could not load star_names.fab for sky culture " << skyCultureDir << ": " << e.what(); + qDebug() << "Could not load star_names.fab for sky culture " << QDir::toNativeSeparators(skyCultureDir) << ": " << e.what(); } try @@ -1036,6 +1322,15 @@ qWarning() << "WARNING: could not load scientific star names file: " << e.what(); } + try + { + loadGcvs(StelFileMgr::findFile("stars/default/gcvs_hip_part.dat")); + } + catch (std::runtime_error& e) + { + qWarning() << "WARNING: could not load variable stars file: " << e.what(); + } + // Turn on sci names/catalog names for western culture only setFlagSciNames(skyCultureDir.startsWith("western")); updateI18n(); diff -Nru stellarium-0.12.1/src/core/modules/StarMgr.hpp stellarium-0.12.4/src/core/modules/StarMgr.hpp --- stellarium-0.12.1/src/core/modules/StarMgr.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/StarMgr.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -38,6 +38,21 @@ static const int RCMAG_TABLE_SIZE = 4096; +typedef struct +{ + QString designation; //! GCVS designation + QString vtype; //! Type of variability + float maxmag; //! Magnitude at maximum brightness + int mflag; //! Magnitude flag code + float min1mag; //! First minimum magnitude or amplitude + float min2mag; //! Second minimum magnitude or amplitude + QString photosys; //! The photometric system for magnitudes + double epoch; //! Epoch for maximum light (Julian days) + double period; //! Period of the variable star (days) + int Mm; //! Rising time or duration of eclipse (%) + QString stype; //! Spectral type +} varstar; + //! @class StarMgr //! Stores the star catalogue data. //! Used to render the stars themselves, as well as determine the color table @@ -107,13 +122,15 @@ //! Find and return the list of at most maxNbItem objects auto-completing the passed object I18n name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjectsI18n(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; //! Find and return the list of at most maxNbItem objects auto-completing the passed object English name. //! @param objPrefix the case insensitive first letters of the searched object //! @param maxNbItem the maximum number of returned object names + //! @param useStartOfWords the autofill mode for returned objects names //! @return a list of matching object name by order of relevance, or an empty list if nothing match - virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5) const; + virtual QStringList listMatchingObjects(const QString& objPrefix, int maxNbItem=5, bool useStartOfWords=false) const; // empty, as there's too much stars for displaying at once virtual QStringList listAllObjects(bool inEnglish) const { Q_UNUSED(inEnglish) return QStringList(); } virtual QString getName() const { return "Stars"; } @@ -168,6 +185,46 @@ //! Hipparcos catalogue number. static QString getSciName(int hip); + //! Get the (translated) additional scientific name for a star with a + //! specified Hipparcos catalogue number. + static QString getSciAdditionalName(int hip); + + //! Get the (translated) scientific name for a variable star with a specified + //! Hipparcos catalogue number. + static QString getGcvsName(int hip); + + //! Get the type of variability for a variable star with a specified + //! Hipparcos catalogue number. + static QString getGcvsVariabilityType(int hip); + + //! Get the magnitude at maximum brightness for a variable star with a specified + //! Hipparcos catalogue number. + static float getGcvsMaxMagnitude(int hip); + + //! Get the magnitude flag code for a variable star with a specified + //! Hipparcos catalogue number. + static int getGcvsMagnitudeFlag(int hip); + + //! Get the minimum magnitude or amplitude for a variable star with a specified + //! Hipparcos catalogue number. + static float getGcvsMinMagnitude(int hip, bool firstMinimumFlag=true); + + //! Get the photometric system for a variable star with a specified + //! Hipparcos catalogue number. + static QString getGcvsPhotometricSystem(int hip); + + //! Get Epoch for maximum light for a variable star with a specified + //! Hipparcos catalogue number. + static double getGcvsEpoch(int hip); + + //! Get the period for a variable star with a specified + //! Hipparcos catalogue number. + static double getGcvsPeriod(int hip); + + //! Get the rising time or duration of eclipse for a variable star with a + //! specified Hipparcos catalogue number. + static int getGcvsMM(int hip); + static QString convertToSpectralType(int index); static QString convertToComponentIds(int index); @@ -204,6 +261,10 @@ //! @param the path to a file containing the scientific names for bright stars. void loadSciNames(const QString& sciNameFile); + //! Loads GCVS from a file. + //! @param the path to a file containing the GCVS. + void loadGcvs(const QString& GcvsFile); + //! Gets the maximum search level. // TODO: add a non-lame description - what is the purpose of the max search level? int getMaxSearchLevel() const; @@ -249,6 +310,11 @@ static QHash sciNamesMapI18n; static QMap sciNamesIndexI18n; + static QHash sciAdditionalNamesMapI18n; + static QMap sciAdditionalNamesIndexI18n; + + static QHash varStarsMapI18n; + static QMap varStarsIndexI18n; QFont starFont; static bool flagSciNames; diff -Nru stellarium-0.12.1/src/core/modules/StarWrapper.cpp stellarium-0.12.4/src/core/modules/StarWrapper.cpp --- stellarium-0.12.1/src/core/modules/StarWrapper.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/StarWrapper.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -54,11 +54,11 @@ if (flags&Magnitude) { - oss << q_("Magnitude: %1 (B-V: %2)").arg(QString::number(getVMagnitude(core, false), 'f', 2), QString::number(getBV(), 'f', 2)) << "
      "; - if (core->getSkyDrawer()->getFlagHasAtmosphere()) - { - oss << q_("Apparent Magnitude: %1 (by extinction)").arg(QString::number(getVMagnitude(core, true), 'f', 2)) << "
      "; - } + oss << q_("Magnitude: %1 (B-V: %2)").arg(QString::number(getVMagnitude(core, false), 'f', 2), QString::number(getBV(), 'f', 2)) << "
      "; + if (core->getSkyDrawer()->getFlagHasAtmosphere()) + { + oss << q_("Apparent Magnitude: %1 (by extinction)").arg(QString::number(getVMagnitude(core, true), 'f', 2)) << "
      "; + } } oss << getPositionInfoString(core, flags); @@ -80,6 +80,15 @@ QString str; QTextStream oss(&str); + const QString varType = StarMgr::getGcvsVariabilityType(s->hip); + const float maxVMag = StarMgr::getGcvsMaxMagnitude(s->hip); + const float magFlag = StarMgr::getGcvsMagnitudeFlag(s->hip); + const float minVMag = StarMgr::getGcvsMinMagnitude(s->hip); + const float min2VMag = StarMgr::getGcvsMinMagnitude(s->hip, false); + const QString photoVSys = StarMgr::getGcvsPhotometricSystem(s->hip); + const double vEpoch = StarMgr::getGcvsEpoch(s->hip); + const double vPeriod = StarMgr::getGcvsPeriod(s->hip); + const int vMm = StarMgr::getGcvsMM(s->hip); if (s->hip) { if ((flags&Name) || (flags&CatalogNumber)) @@ -87,17 +96,22 @@ const QString commonNameI18 = StarMgr::getCommonName(s->hip); const QString sciName = StarMgr::getSciName(s->hip); + const QString addSciName = StarMgr::getSciAdditionalName(s->hip); + const QString varSciName = StarMgr::getGcvsName(s->hip); bool nameWasEmpty=true; if (flags&Name) { - if (commonNameI18!="" || sciName!="") + if (commonNameI18!="" || sciName!="" || addSciName!="" || varSciName!="") { oss << commonNameI18 << (commonNameI18 == "" ? "" : " "); - if (commonNameI18!="" && sciName!="") + if (commonNameI18!="" && (sciName!="" || varSciName!="")) oss << "("; oss << (sciName=="" ? "" : sciName); - if (commonNameI18!="" && sciName!="") + oss << (addSciName=="" ? "" : QString(" - %1").arg(addSciName)); + if (varSciName!="" && varSciName!=sciName) + oss << (sciName=="" ? "" : " - ") << varSciName; + if (commonNameI18!="" && (sciName!="" || varSciName!="")) oss << ")"; nameWasEmpty=false; } @@ -114,40 +128,126 @@ oss << ""; } + bool ebsFlag = false; if (flags&Extra1) { + QString varstartype = ""; + QString startype = ""; + if(!varType.isEmpty()) + { + if (QString("FU GCAS I IA IB IN INA INB INT IT IN(YY) IS ISA ISB RCB RS SDOR UV UVN WR").contains(varType)) + varstartype = q_("eruptive variable star"); + else if (QString("ACYG BCEP BCEPS CEP CEP(B) CW CWA CWB DCEP DCEPS DSCT DSCTC GDOR L LB LC M PVTEL RPHS RR RR(B) RRAB RRC RV RVA RVB SR SRA SRB SRC SRD SXPHE ZZ ZZA ZZB").contains(varType)) + varstartype = q_("pulsating variable star"); + else if (QString("ACV, ACVO, BY, ELL, FKCOM, PSR, SXARI").contains(varType)) + varstartype = q_("rotating variable star"); + else if (QString("N NA NB NC NL NR SN SNI SNII UG UGSS UGSU UGZ ZAND").contains(varType)) + varstartype = q_("cataclysmic variable star"); + else if (QString("E EA EB EW GS PN RS WD WR AR D DM DS DW K KE KW SD E: E:/WR E/D E+LPB: EA/D EA/D+BY EA/RS EA/SD EA/SD: EA/GS EA/GS+SRC EA/DM EA/WR EA+LPB EA+LPB: EA+DSCT EA+BCEP: EA+ZAND EA+ACYG EA+SRD EB/GS EB/DM EB/KE EB/KE: EW/KE EA/AR/RS EA/GS/D EA/D/WR").contains(varType)) + { + varstartype = q_("eclipsing binary system"); + ebsFlag = true; + } + else + varstartype = q_("variable star"); + } + if (s->componentIds) - oss << q_("Type: %1").arg(q_("double star")) << "
      "; + startype = q_("double star"); else - oss << q_("Type: %1").arg(q_("star")) << "
      "; + startype = q_("star"); + + if (!varType.isEmpty()) + { + if (s->componentIds) + oss << q_("Type: %1, %2").arg(varstartype).arg(startype); + else + oss << q_("Type: %1").arg(varstartype); + oss << " (" << varType << ")
      "; + } else + oss << q_("Type: %1").arg(startype) << "
      "; + } if (flags&Magnitude) { - if (core->getSkyDrawer()->getFlagHasAtmosphere()) - oss << q_("Magnitude: %1 (extincted to: %2. B-V: %3)").arg(QString::number(getVMagnitude(core, false), 'f', 2), - QString::number(getVMagnitude(core, true), 'f', 2), - QString::number(s->getBV(), 'f', 2)) << "
      "; - else - oss << q_("Magnitude: %1 (B-V: %2)").arg(QString::number(getVMagnitude(core, false), 'f', 2), - QString::number(s->getBV(), 'f', 2)) << "
      "; + if (core->getSkyDrawer()->getFlagHasAtmosphere()) + oss << q_("Magnitude: %1 (extincted to: %2. B-V: %3)").arg(QString::number(getVMagnitude(core, false), 'f', 2), + QString::number(getVMagnitude(core, true), 'f', 2), + QString::number(s->getBV(), 'f', 2)) << "
      "; + else + oss << q_("Magnitude: %1 (B-V: %2)").arg(QString::number(getVMagnitude(core, false), 'f', 2), + QString::number(s->getBV(), 'f', 2)) << "
      "; } if ((flags&AbsoluteMagnitude) && s->plx && !isNan(s->plx) && !isInf(s->plx)) oss << q_("Absolute Magnitude: %1").arg(getVMagnitude(core, false)+5.*(1.+std::log10(0.00001*s->plx)), 0, 'f', 2) << "
      "; + if (flags&Magnitude) + { + if (!varType.isEmpty()) + { + float minimumM1 = minVMag; + float minimumM2 = min2VMag; + if (magFlag==1) // Amplitude + { + minimumM1 += maxVMag; + minimumM2 += maxVMag; + } + + if (min2VMag==99.f) + oss << q_("Magnitude range: %1%2%3 (Photometric system: %4)").arg(QString::number(maxVMag, 'f', 2)).arg(QChar(0x00F7)).arg(QString::number(minimumM1, 'f', 2)).arg(photoVSys) << "
      "; + else + oss << q_("Magnitude range: %1%2%3/%4 (Photometric system: %5)").arg(QString::number(maxVMag, 'f', 2)).arg(QChar(0x00F7)).arg(QString::number(minimumM1, 'f', 2)).arg(QString::number(minimumM2, 'f', 2)).arg(photoVSys) << "
      "; + } + } + oss << getPositionInfoString(core, flags); if (s->spInt && flags&Extra1) { - oss << q_("Spectral Type: %1").arg(StarMgr::convertToSpectralType(s->spInt)) << "
      "; + oss << q_("Spectral Type: %1").arg(StarMgr::convertToSpectralType(s->spInt)) << "
      "; } if ((flags&Distance) && s->plx && !isNan(s->plx) && !isInf(s->plx)) oss << q_("Distance: %1 Light Years").arg((AU/(SPEED_OF_LIGHT*86400*365.25)) / (s->plx*((0.00001/3600)*(M_PI/180))), 0, 'f', 2) << "
      "; if (s->plx && flags&Extra2) - oss << q_("Parallax: %1\"").arg(0.00001*s->plx, 0, 'f', 5) << "
      "; + oss << q_("Parallax: %1\"").arg(0.00001*s->plx, 0, 'f', 5) << "
      "; + + if (vEpoch>0 && flags&Extra1) + { + double vsEpoch = 2400000+vEpoch; + if (ebsFlag) + oss << q_("Epoch for minimum light: %1 JD").arg(QString::number(vsEpoch, 'f', 5)) << "
      "; + else + oss << q_("Epoch for maximum light: %1 JD").arg(QString::number(vsEpoch, 'f', 5)) << "
      "; + } + + if (vPeriod>0 && flags&Extra1) + oss << q_("Period: %1 days").arg(vPeriod) << "
      "; + + if (vEpoch>0 && vPeriod>0 && flags&Extra1) + { + // Calculate next minimum or maximum light + double vsEpoch = 2400000+vEpoch; + int npDelta = (core->getJDay()-vsEpoch)/vPeriod; + double npDate = vsEpoch + ((npDelta+1)*vPeriod); + QString nextDate = StelUtils::julianDayToISO8601String(npDate).replace("T", " "); + if (ebsFlag) + oss << q_("Next minimum light: %1 UTC").arg(nextDate) << "
      "; + else + oss << q_("Next maximum light: %1 UTC").arg(nextDate) << "
      "; + } + + if (vMm>0 && flags&Extra1) + { + if (ebsFlag) + oss << q_("Duration of eclipse: %1%").arg(vMm) << "
      "; + else + oss << q_("Rising time: %1%").arg(vMm) << "
      "; + } + StelObject::postProcessInfoString(str, flags); diff -Nru stellarium-0.12.1/src/core/modules/ZoneArray.cpp stellarium-0.12.4/src/core/modules/ZoneArray.cpp --- stellarium-0.12.1/src/core/modules/ZoneArray.cpp 2013-04-19 02:26:54.000000000 +0000 +++ stellarium-0.12.4/src/core/modules/ZoneArray.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -19,6 +19,7 @@ #include #include +#include #ifdef Q_OS_WIN #include #include @@ -83,8 +84,10 @@ } #if (!defined(__GNUC__)) +#ifndef _MSC_BUILD #warning Star catalogue loading has only been tested with gcc #endif +#endif ZoneArray* ZoneArray::create(const QString& catalogFilePath, bool use_mmap) { @@ -92,10 +95,10 @@ QFile* file = new QFile(catalogFilePath); if (!file->open(QIODevice::ReadOnly)) { - qWarning() << "Error while loading " << catalogFilePath << ": failed to open file."; + qWarning() << "Error while loading " << QDir::toNativeSeparators(catalogFilePath) << ": failed to open file."; return 0; } - dbStr = "Loading \"" + catalogFilePath + "\": "; + dbStr = "Loading \"" + QDir::toNativeSeparators(catalogFilePath) + "\": "; unsigned int magic,major,minor,type,level,mag_min,mag_range,mag_steps; if (ReadInt(*file,magic) < 0 || ReadInt(*file,type) < 0 || @@ -138,12 +141,11 @@ else if (magic == FILE_MAGIC) { // ok, FILE_MAGIC -#if (!defined(__GNUC__)) +#if (!defined(__GNUC__) && !defined(_MSC_BUILD)) if (use_mmap) { // mmap only with gcc: - dbStr += "warning - you must convert catalogue " - += "to native format before mmap loading"; + dbStr += "warning - you must convert catalogue to native format before mmap loading"; qDebug(qPrintable(dbStr)); return 0; @@ -195,7 +197,9 @@ // for your compiler. // Because your compiler does not pack the data, // which is crucial for this application. +#ifndef _MSC_BUILD Q_ASSERT(sizeof(Star2) == 10); +#endif rval = new SpecialZoneArray(file, byte_swap, use_mmap, level, mag_min, mag_range, mag_steps); if (rval == 0) { @@ -214,7 +218,9 @@ // for your compiler. // Because your compiler does not pack the data, // which is crucial for this application. +#ifndef _MSC_BUILD Q_ASSERT(sizeof(Star3) == 6); +#endif rval = new SpecialZoneArray(file, byte_swap, use_mmap, level, mag_min, mag_range, mag_steps); if (rval == 0) { diff -Nru stellarium-0.12.1/src/core/planetsephems/calc_interpolated_elements.h stellarium-0.12.4/src/core/planetsephems/calc_interpolated_elements.h --- stellarium-0.12.1/src/core/planetsephems/calc_interpolated_elements.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/calc_interpolated_elements.h 2013-08-04 06:20:27.000000000 +0000 @@ -23,10 +23,10 @@ ****************************************************************/ extern -void CalcInterpolatedElements(double t,double elem[], - int dim, - void (*calc_func)(double t,double elem[]), - double delta_t, +void CalcInterpolatedElements(const double t,double elem[], + const int dim, + void (*calc_func)(const double t,double elem[]), + const double delta_t, double *t0,double e0[], double *t1,double e1[], double *t2,double e2[]); diff -Nru stellarium-0.12.1/src/core/planetsephems/gust86.h stellarium-0.12.4/src/core/planetsephems/gust86.h --- stellarium-0.12.1/src/core/planetsephems/gust86.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/gust86.h 2013-08-04 06:20:27.000000000 +0000 @@ -88,7 +88,7 @@ ICRF <-> VSOP87 must be done with the matrix given above. */ -void GetGust86OsculatingCoor(double jd0,double jd,int body,double *xyz); +void GetGust86OsculatingCoor(const double jd0, const double jd, const int body,double *xyz); /* The oculating orbit of epoch jd0, evatuated at jd, is returned. */ diff -Nru stellarium-0.12.1/src/core/planetsephems/l1.h stellarium-0.12.4/src/core/planetsephems/l1.h --- stellarium-0.12.1/src/core/planetsephems/l1.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/l1.h 2013-08-04 06:20:27.000000000 +0000 @@ -64,7 +64,8 @@ which is the reference frame in VSOP87 and VSOP87A. */ -void GetL1OsculatingCoor(double jd0,double jd,int body,double *xyz); +void GetL1OsculatingCoor(const double jd0,const double jd, const int body,double *xyz); + /* The oculating orbit of epoch jd0, evatuated at jd, is returned. */ diff -Nru stellarium-0.12.1/src/core/planetsephems/marssat.h stellarium-0.12.4/src/core/planetsephems/marssat.h --- stellarium-0.12.1/src/core/planetsephems/marssat.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/marssat.h 2013-08-04 06:20:27.000000000 +0000 @@ -66,7 +66,7 @@ which is the reference frame in VSOP87 and VSOP87A. */ -void GetMarsSatOsculatingCoor(double jd0,double jd,int body,double *xyz); +void GetMarsSatOsculatingCoor(const double jd0, const double jd, const int body,double *xyz); /* The oculating orbit of epoch jd0, evatuated at jd, is returned. */ diff -Nru stellarium-0.12.1/src/core/planetsephems/pluto.c stellarium-0.12.4/src/core/planetsephems/pluto.c --- stellarium-0.12.1/src/core/planetsephems/pluto.c 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/pluto.c 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include diff -Nru stellarium-0.12.1/src/core/planetsephems/pluto.h stellarium-0.12.4/src/core/planetsephems/pluto.h --- stellarium-0.12.1/src/core/planetsephems/pluto.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/pluto.h 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef LN_PLUTO_H diff -Nru stellarium-0.12.1/src/core/planetsephems/sideral_time.c stellarium-0.12.4/src/core/planetsephems/sideral_time.c --- stellarium-0.12.1/src/core/planetsephems/sideral_time.c 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/sideral_time.c 2013-09-07 15:50:48.000000000 +0000 @@ -11,7 +11,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. Copyright (C) 2000 Liam Girdwood diff -Nru stellarium-0.12.1/src/core/planetsephems/stellplanet.c stellarium-0.12.4/src/core/planetsephems/stellplanet.c --- stellarium-0.12.1/src/core/planetsephems/stellplanet.c 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/stellplanet.c 2013-09-07 15:50:48.000000000 +0000 @@ -1,3 +1,21 @@ +/* +Copyright (C) 2003 Fabien Chereau + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Library General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. +*/ + #include "vsop87.h" #include "elp82b.h" #include "marssat.h" diff -Nru stellarium-0.12.1/src/core/planetsephems/stellplanet.h stellarium-0.12.4/src/core/planetsephems/stellplanet.h --- stellarium-0.12.1/src/core/planetsephems/stellplanet.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/stellplanet.h 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _STELLPLANET_H_ diff -Nru stellarium-0.12.1/src/core/planetsephems/tass17.h stellarium-0.12.4/src/core/planetsephems/tass17.h --- stellarium-0.12.1/src/core/planetsephems/tass17.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/tass17.h 2013-08-04 06:20:27.000000000 +0000 @@ -67,7 +67,7 @@ #define TASS17_IAPETUS 6 void GetTass17Coor(double jd,int body,double *xyz); -void GetTass17OsculatingCoor(double jd0,double jd,int body,double *xyz); +void GetTass17OsculatingCoor(const double jd0,const double jd, const int body,double *xyz); #ifdef __cplusplus } diff -Nru stellarium-0.12.1/src/core/planetsephems/vsop87.h stellarium-0.12.4/src/core/planetsephems/vsop87.h --- stellarium-0.12.1/src/core/planetsephems/vsop87.h 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/planetsephems/vsop87.h 2013-08-04 06:20:27.000000000 +0000 @@ -68,7 +68,7 @@ which is the reference frame in VSOP87 and VSOP87A. */ -void GetVsop87OsculatingCoor(double jd0,double jd,int body,double *xyz); +void GetVsop87OsculatingCoor(const double jd0,const double jd, const int body,double *xyz); /* The oculating orbit of epoch jd0, evatuated at jd, is returned. */ diff -Nru stellarium-0.12.1/src/core/renderer/StelGLUtilityFunctions.cpp stellarium-0.12.4/src/core/renderer/StelGLUtilityFunctions.cpp --- stellarium-0.12.1/src/core/renderer/StelGLUtilityFunctions.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/renderer/StelGLUtilityFunctions.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -18,6 +18,7 @@ */ #include +#include #include "StelFileMgr.hpp" #include "StelGLUtilityFunctions.hpp" @@ -75,6 +76,6 @@ if(findTextureFile("textures/" + filename, result, errorMessage)) {return result;} qWarning() << "WARNING : Couldn't find texture file " - << filename << ": " << result; + << QDir::toNativeSeparators(filename) << ": " << result; return QString(); } diff -Nru stellarium-0.12.1/src/core/renderer/StelQGLGLSLShader.cpp stellarium-0.12.4/src/core/renderer/StelQGLGLSLShader.cpp --- stellarium-0.12.1/src/core/renderer/StelQGLGLSLShader.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/renderer/StelQGLGLSLShader.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -22,9 +22,17 @@ #include +#define ALIGN_UNIFORM_SIZE(x) (((x) + (sizeof ((StelQGLGLSLShader *)0)->uniformStorage[0]-1)) / sizeof ((StelQGLGLSLShader *)0)->uniformStorage[0]) + int StelQGLGLSLShader::UNIFORM_SIZES[UniformType_max] = - {0, sizeof(float), sizeof(Vec2f), sizeof(Vec3f), - sizeof(Vec4f), sizeof(Mat4f), sizeof(bool), sizeof(int)}; + {0, + ALIGN_UNIFORM_SIZE(sizeof(float)), + ALIGN_UNIFORM_SIZE(sizeof(Vec2f)), + ALIGN_UNIFORM_SIZE(sizeof(Vec3f)), + ALIGN_UNIFORM_SIZE(sizeof(Vec4f)), + ALIGN_UNIFORM_SIZE(sizeof(Mat4f)), + ALIGN_UNIFORM_SIZE(sizeof(bool)), + ALIGN_UNIFORM_SIZE(sizeof(int))}; StelQGLGLSLShader::StelQGLGLSLShader(StelQGL2Renderer* renderer, bool internal) : StelGLSLShader() @@ -34,7 +42,6 @@ , bound(false) , useUnprojectedPosition_(false) , internal(internal) - , uniformStoragePointer(uniformStorage) , uniformStorageUsed(0) , uniformCount(0) , uniformStorageStackSize(0) diff -Nru stellarium-0.12.1/src/core/renderer/StelQGLGLSLShader.hpp stellarium-0.12.4/src/core/renderer/StelQGLGLSLShader.hpp --- stellarium-0.12.1/src/core/renderer/StelQGLGLSLShader.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/renderer/StelQGLGLSLShader.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -216,7 +216,7 @@ { Q_ASSERT_X(bound && state == State_Built, Q_FUNC_INFO, "uploadUniforms called on a shader that is not bound"); - const unsigned char* data = uniformStorage; + void * const * data = uniformStorage; for (int u = 0; u < uniformCount; u++) { const UniformType type = static_cast(uniformTypes[u]); @@ -310,7 +310,6 @@ "Too many uniform storage stack pops (nothing left to pop)"); --uniformStorageStackSize; uniformStorageUsed = uniformStorageUsedStack[uniformStorageStackSize]; - uniformStoragePointer = &(uniformStorage[uniformStorageUsed]); uniformCount = uniformCountStack[uniformStorageStackSize]; } @@ -323,7 +322,6 @@ "clearUniforms() called when the shader is not bound"); // We don't zero out the storage - we'll overwrite it as we add new uniforms. uniformStorageUsed = uniformCount = uniformStorageStackSize = 0; - uniformStoragePointer = uniformStorage; } protected: @@ -394,10 +392,7 @@ //! The data is then uploaded by uploadUniforms(). //! //! @see uploadUniforms, clearUniforms, pushUniformStorage - unsigned char uniformStorage [UNIFORM_STORAGE]; - - //! Pointer to uniformStorage[uniformStorageUsed]. Avoids breaking strict aliasing. - void* uniformStoragePointer; + void* uniformStorage [UNIFORM_STORAGE / sizeof(void*)]; //! Types of consecutive uniforms in uniformStorage. //! @@ -410,7 +405,7 @@ //! This means the user code needs to preserve the string until release() is called. const char* uniformNames [MAX_UNIFORMS]; - //! Bytes in uniformStorage used up at this moment. + //! Elements in uniformStorage used up at this moment. int uniformStorageUsed; //! Number of uniforms in uniformStorage at this moment. @@ -429,108 +424,53 @@ //! Number of items in uniformStorageUsedStack and uniformCountStack. int uniformStorageStackSize; - virtual void setUniformValue_(const char* const name, const float value) + void* setUniformValue_helper(const char* const name, const enum UniformType kind) { Q_ASSERT_X(bound, Q_FUNC_INFO, "Trying to set a uniform value with an unbound shader"); Q_ASSERT_X(uniformCount < MAX_UNIFORMS, Q_FUNC_INFO, "Too many uniforms"); - Q_ASSERT_X((uniformStorageUsed + sizeof(float)) < UNIFORM_STORAGE, Q_FUNC_INFO, + Q_ASSERT_X((unsigned)(uniformStorageUsed + UNIFORM_SIZES[kind]) < (UNIFORM_STORAGE / sizeof uniformStorage[0]), Q_FUNC_INFO, "Uniform storage exceeded"); - *static_cast(uniformStoragePointer) = value; + void* ret = static_cast(&uniformStorage[uniformStorageUsed]); uniformNames[uniformCount] = name; - uniformTypes[uniformCount++] = UniformType_float; - uniformStorageUsed += sizeof(float); - uniformStoragePointer = &(uniformStorage[uniformStorageUsed]); + uniformTypes[uniformCount++] = kind; + uniformStorageUsed += UNIFORM_SIZES[kind]; + return ret; + } + + virtual void setUniformValue_(const char* const name, const float value) + { + *static_cast(setUniformValue_helper(name, UniformType_float)) = value; } virtual void setUniformValue_(const char* const name, const Vec2f value) { - Q_ASSERT_X(bound, Q_FUNC_INFO, - "Trying to set a uniform value with an unbound shader"); - Q_ASSERT_X(uniformCount < MAX_UNIFORMS, Q_FUNC_INFO, "Too many uniforms"); - Q_ASSERT_X((uniformStorageUsed + sizeof(Vec2f)) < UNIFORM_STORAGE, Q_FUNC_INFO, - "Uniform storage exceeded"); - *static_cast(uniformStoragePointer) = value; - uniformNames[uniformCount] = name; - uniformTypes[uniformCount] = UniformType_vec2; - ++uniformCount; - uniformStorageUsed += sizeof(Vec2f); - uniformStoragePointer = &(uniformStorage[uniformStorageUsed]); + *static_cast(setUniformValue_helper(name, UniformType_vec2)) = value; } virtual void setUniformValue_(const char* const name, const Vec3f& value) { - Q_ASSERT_X(bound, Q_FUNC_INFO, - "Trying to set a uniform value with an unbound shader"); - Q_ASSERT_X(uniformCount < MAX_UNIFORMS, Q_FUNC_INFO, "Too many uniforms"); - Q_ASSERT_X((uniformStorageUsed + sizeof(Vec3f)) < UNIFORM_STORAGE, Q_FUNC_INFO, - "Uniform storage exceeded"); - *static_cast(uniformStoragePointer) = value; - uniformNames[uniformCount] = name; - uniformTypes[uniformCount] = UniformType_vec3; - ++uniformCount; - uniformStorageUsed += sizeof(Vec3f); - uniformStoragePointer = &(uniformStorage[uniformStorageUsed]); + *static_cast(setUniformValue_helper(name, UniformType_vec3)) = value; } virtual void setUniformValue_(const char* const name, const Vec4f& value) { - Q_ASSERT_X(bound, Q_FUNC_INFO, - "Trying to set a uniform value with an unbound shader"); - Q_ASSERT_X(uniformCount < MAX_UNIFORMS, Q_FUNC_INFO, "Too many uniforms"); - *static_cast(uniformStoragePointer) = value; - Q_ASSERT_X((uniformStorageUsed + sizeof(Vec4f)) < UNIFORM_STORAGE, Q_FUNC_INFO, - "Uniform storage exceeded"); - uniformNames[uniformCount] = name; - uniformTypes[uniformCount] = UniformType_vec4; - ++uniformCount; - uniformStorageUsed += sizeof(Vec4f); - uniformStoragePointer = &(uniformStorage[uniformStorageUsed]); + *static_cast(setUniformValue_helper(name, UniformType_vec4)) = value; } virtual void setUniformValue_(const char* const name, const Mat4f& m) { - Q_ASSERT_X(bound, Q_FUNC_INFO, - "Trying to set a uniform value with an unbound shader"); - Q_ASSERT_X(uniformCount < MAX_UNIFORMS, Q_FUNC_INFO, "Too many uniforms"); - Q_ASSERT_X((uniformStorageUsed + sizeof(Mat4f)) < UNIFORM_STORAGE, Q_FUNC_INFO, - "Uniform storage exceeded"); - *static_cast(uniformStoragePointer) = m; - uniformNames[uniformCount] = name; - uniformTypes[uniformCount] = UniformType_mat4; - ++uniformCount; - uniformStorageUsed += sizeof(Mat4f); - uniformStoragePointer = &(uniformStorage[uniformStorageUsed]); + *static_cast(setUniformValue_helper(name, UniformType_mat4)) = m; } virtual void setUniformValue_(const char* const name, const bool value) { - Q_ASSERT_X(bound, Q_FUNC_INFO, - "Trying to set a uniform value with an unbound shader"); - Q_ASSERT_X(uniformCount < MAX_UNIFORMS, Q_FUNC_INFO, "Too many uniforms"); - Q_ASSERT_X((uniformStorageUsed + sizeof(bool)) < UNIFORM_STORAGE, Q_FUNC_INFO, - "Uniform storage exceeded"); - *static_cast(uniformStoragePointer) = value; - uniformNames[uniformCount] = name; - uniformTypes[uniformCount] = UniformType_bool; - ++uniformCount; - uniformStorageUsed += sizeof(bool); - uniformStoragePointer = &(uniformStorage[uniformStorageUsed]); + *static_cast(setUniformValue_helper(name, UniformType_bool)) = value; } virtual void setUniformValue_(const char* const name, const int value) { - Q_ASSERT_X(bound, Q_FUNC_INFO, - "Trying to set a uniform value with an unbound shader"); - Q_ASSERT_X(uniformCount < MAX_UNIFORMS, Q_FUNC_INFO, "Too many uniforms"); - Q_ASSERT_X((uniformStorageUsed + sizeof(int)) < UNIFORM_STORAGE, Q_FUNC_INFO, - "Uniform storage exceeded"); - *static_cast(uniformStoragePointer) = value; - uniformNames[uniformCount] = name; - uniformTypes[uniformCount] = UniformType_int; - ++uniformCount; - uniformStorageUsed += sizeof(int); - uniformStoragePointer = &(uniformStorage[uniformStorageUsed]); + *static_cast(setUniformValue_helper(name, UniformType_int)) = value; } private: diff -Nru stellarium-0.12.1/src/core/renderer/StelQGLInterleavedArrayVertexBufferBackend.cpp stellarium-0.12.4/src/core/renderer/StelQGLInterleavedArrayVertexBufferBackend.cpp --- stellarium-0.12.1/src/core/renderer/StelQGLInterleavedArrayVertexBufferBackend.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/renderer/StelQGLInterleavedArrayVertexBufferBackend.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -47,7 +47,7 @@ StelQGLInterleavedArrayVertexBufferBackend::~StelQGLInterleavedArrayVertexBufferBackend() { - delete vertices; + std::free(vertices); if(NULL != projectedPositions) { std::free(projectedPositions); diff -Nru stellarium-0.12.1/src/core/renderer/StelQGLRenderer.cpp stellarium-0.12.4/src/core/renderer/StelQGLRenderer.cpp --- stellarium-0.12.1/src/core/renderer/StelQGLRenderer.cpp 2013-04-14 09:58:24.000000000 +0000 +++ stellarium-0.12.4/src/core/renderer/StelQGLRenderer.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -19,6 +19,10 @@ #include +#ifdef _MSC_BUILD +#define round(dbl) dbl >= 0.0 ? (int)(dbl + 0.5) : ((dbl - (double)(int)dbl) <= -0.5 ? (int)dbl : (int)(dbl - 0.5)) +#endif + #include "StelQGLRenderer.hpp" #include "StelLocaleMgr.hpp" #include "QSettings" @@ -57,11 +61,13 @@ else { // by default placeholder is hide but its can be enabled for debugging + bool debugMode = false; if (conf->value("debug/texture_placeholder_flag", false).toBool()) - { - getPlaceholderTexture()->bind(textureUnit); - currentlyBoundTextures[textureUnit] = getPlaceholderTexture(); - } + debugMode = true; + + getPlaceholderTexture(debugMode)->bind(textureUnit); + currentlyBoundTextures[textureUnit] = getPlaceholderTexture(debugMode); + } invariant(); } @@ -97,7 +103,7 @@ QImage image; // Texture in error state will be returned (loaded from NULL image), and // when bound, the placeholder texture will be used. - qWarning() << "createTextureBackend failed: file \"" << filename << "\" not found."; + qWarning() << "createTextureBackend failed: file \"" << QDir::toNativeSeparators(filename) << "\" not found."; return StelQGLTextureBackend::constructFromImage(this, QString(), params, image); } @@ -120,7 +126,7 @@ { // Texture in error state will be returned (loaded from NULL image), and // when bound, the placeholder texture will be used. - qWarning() << "createTextureBackend failed: found image file \"" << fullPath + qWarning() << "createTextureBackend failed: found image file \"" << QDir::toNativeSeparators(fullPath) << "\" but failed to load image data. "; } //Uploads to GL @@ -338,8 +344,8 @@ return; } - const int x = win[0]; - const int y = win[1]; + const int x = round(win[0]); + const int y = round(win[1]); // Avoid drawing if outside viewport. // We do a worst-case approximation as getting exact text dimensions is expensive. @@ -410,7 +416,7 @@ textTexture = StelQGLTextureBackend::constructFromImage (this, QString(), TextureParams().filtering(TextureFiltering_Linear), image); const QSize size = textTexture->getDimensions(); - if(!textTexture->getStatus() == TextureStatus_Loaded) + if (!(textTexture->getStatus() == TextureStatus_Loaded)) { qWarning() << "Texture error: " << textTexture->getErrorMessage(); Q_ASSERT_X(false, Q_FUNC_INFO, "Failed to construct a text texture"); diff -Nru stellarium-0.12.1/src/core/renderer/StelQGLRenderer.hpp stellarium-0.12.4/src/core/renderer/StelQGLRenderer.hpp --- stellarium-0.12.1/src/core/renderer/StelQGLRenderer.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/renderer/StelQGLRenderer.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -748,10 +748,14 @@ (const TextParams& params, QPainter& painter, const int baseX, const int baseY, StelProjectorP projector); //! Get the placeholder texture, lazily loading if it's not loaded yet. - StelQGLTextureBackend* getPlaceholderTexture() + StelQGLTextureBackend* getPlaceholderTexture(bool debug=false) { if(NULL != placeholderTexture) {return placeholderTexture;} + int color = 0; + if (debug) + color = 0x00FFFF00; + const int placeholderSize = 512; const int cellSize = 16; QImage image(placeholderSize, placeholderSize, QImage::Format_RGB888); @@ -759,7 +763,7 @@ { for (int x = 0; x < placeholderSize; x++) { - image.setPixel(x, y, (x / cellSize) % 2 == (y / cellSize) % 2 ? 0 : 0x00FFFF00); + image.setPixel(x, y, (x / cellSize) % 2 == (y / cellSize) % 2 ? 0 : color); } } placeholderTexture = diff -Nru stellarium-0.12.1/src/core/renderer/StelQGLViewport.hpp stellarium-0.12.4/src/core/renderer/StelQGLViewport.hpp --- stellarium-0.12.1/src/core/renderer/StelQGLViewport.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/renderer/StelQGLViewport.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -105,6 +105,11 @@ // Forces glWidget to initialize GL. glWidget->updateGL(); +#ifdef _MSC_BUILD + glEnable(GL_MULTISAMPLE); + glEnable(GL_LINE_SMOOTH); +#endif + // Qt GL2 paint engine does some FBO magic depending // on glBlendFunc having a particular value. I wasn't able // to figure out what value it was, so another workaround diff -Nru stellarium-0.12.1/src/core/renderer/StelRendererStatistics.hpp stellarium-0.12.4/src/core/renderer/StelRendererStatistics.hpp --- stellarium-0.12.1/src/core/renderer/StelRendererStatistics.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/renderer/StelRendererStatistics.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -146,7 +146,7 @@ { statistics[s] = 0.0f; } - else if(!swapModes[s] == StatisticSwapMode_DoNothing) + else if(swapModes[s] != StatisticSwapMode_DoNothing) { Q_ASSERT_X(false, Q_FUNC_INFO, "Unknown statistic swap mode"); } diff -Nru stellarium-0.12.1/src/core/renderer/StelTextureBackend.hpp stellarium-0.12.4/src/core/renderer/StelTextureBackend.hpp --- stellarium-0.12.1/src/core/renderer/StelTextureBackend.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/core/renderer/StelTextureBackend.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -24,6 +24,7 @@ #include #include #include +#include //! Possible states of a texture. @@ -201,12 +202,12 @@ invariant(); if(status != TextureStatus_Loading) { - qWarning() << "Unexpected error - texture " << path; + qWarning() << "Unexpected error - texture " << QDir::toNativeSeparators(path); qWarning() << "Texture status: " << textureStatusName(status); Q_ASSERT_X(false, Q_FUNC_INFO, "The only time an error can occur with a texture is during loading"); } - qWarning() << "Error occured during loading of texture " << path << + qWarning() << "Error occured during loading of texture " << QDir::toNativeSeparators(path) << ": " << error; errorMessage = error; status = TextureStatus_Error; diff -Nru stellarium-0.12.1/src/gui/AngleSpinBox.cpp stellarium-0.12.4/src/gui/AngleSpinBox.cpp --- stellarium-0.12.1/src/gui/AngleSpinBox.cpp 2013-03-28 16:39:13.000000000 +0000 +++ stellarium-0.12.4/src/gui/AngleSpinBox.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -357,7 +357,7 @@ s = (angle-d)*3600-60*m; // we may have seconds as 60 and one less minute... - if (s > 60.0 - ::pow(10, -1 * (decimalPlaces+1))) + if (s > 60.0 - ::pow(10.0, -1 * (decimalPlaces+1))) { m+=1; s-=60.0; @@ -371,9 +371,9 @@ } // fix when we have tiny tiny tiny values. - if (s < ::pow(10, -1 * (decimalPlaces+1))) + if (s < ::pow(10.0, -1 * (decimalPlaces+1))) s= 0.0; - else if (s < 0.0 && 0.0 - ::pow(10, -1 * (decimalPlaces+1))) + else if (s < 0.0 && 0.0 - ::pow(10.0, -1 * (decimalPlaces+1))) s= 0.0; QString signInd = positivePrefix(currentPrefixType); @@ -403,7 +403,7 @@ s = (angle-h)*3600.-60.*m; // we may have seconds as 60 and one less minute... - if (s > 60.0 - ::pow(10, -1 * (decimalPlaces+1))) + if (s > 60.0 - ::pow(10.0, -1 * (decimalPlaces+1))) { m+=1; s-=60.0; @@ -417,9 +417,9 @@ } // fix when we have tiny tiny tiny values. - if (s < ::pow(10, -1 * (decimalPlaces+1))) + if (s < ::pow(10.0, -1 * (decimalPlaces+1))) s= 0.0; - else if (s < 0.0 && 0.0 - ::pow(10, -1 * (decimalPlaces+1))) + else if (s < 0.0 && 0.0 - ::pow(10.0, -1 * (decimalPlaces+1))) s= 0.0; if (angleSpinBoxFormat == HMSLetters) diff -Nru stellarium-0.12.1/src/gui/AtmosphereDialog.cpp stellarium-0.12.4/src/gui/AtmosphereDialog.cpp --- stellarium-0.12.1/src/gui/AtmosphereDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/AtmosphereDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -1,4 +1,12 @@ /* + * Stellarium + * Copyright (C) 2011 Georg Zotti + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -8,7 +16,6 @@ * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ - #include "StelApp.hpp" #include "StelCore.hpp" #include "StelSkyDrawer.hpp" diff -Nru stellarium-0.12.1/src/gui/ConfigurationDialog.cpp stellarium-0.12.4/src/gui/ConfigurationDialog.cpp --- stellarium-0.12.1/src/gui/ConfigurationDialog.cpp 2013-04-19 02:26:54.000000000 +0000 +++ stellarium-0.12.4/src/gui/ConfigurationDialog.cpp 2013-09-13 10:51:45.000000000 +0000 @@ -48,6 +48,7 @@ #include "StarMgr.hpp" #include "NebulaMgr.hpp" #include "GridLinesMgr.hpp" +#include "MilkyWay.hpp" #ifndef DISABLE_SCRIPTING #include "StelScriptMgr.hpp" #endif @@ -62,6 +63,7 @@ #include #include #include +#include ConfigurationDialog::ConfigurationDialog(StelGui* agui) : StelDialog(agui), starCatalogDownloadReply(NULL), currentDownloadFile(NULL), progressBar(NULL), gui(agui) { @@ -509,6 +511,7 @@ conf->setValue("astro/flag_light_travel_time", ssmgr->getFlagLightTravelTime()); conf->setValue("viewing/flag_moon_scaled", ssmgr->getFlagMoonScale()); conf->setValue("astro/meteor_rate", mmgr->getZHR()); + conf->setValue("astro/milky_way_intensity", GETSTELMODULE(MilkyWay)->getIntensity()); // view dialog / markings tab settings conf->setValue("viewing/flag_azimuthal_grid", glmgr->getFlagAzimuthalGrid()); @@ -527,6 +530,7 @@ conf->setValue("viewing/flag_constellation_boundaries", cmgr->getFlagBoundaries()); conf->setValue("viewing/flag_constellation_art", cmgr->getFlagArt()); conf->setValue("viewing/flag_constellation_isolate_selected", cmgr->getFlagIsolateSelected()); + conf->setValue("viewing/flag_landscape_autoselection", lmgr->getFlagLandscapeAutoSelection()); conf->setValue("viewing/constellation_art_intensity", cmgr->getArtIntensity()); conf->setValue("viewing/flag_night", StelApp::getInstance().getVisionModeNight()); conf->setValue("astro/flag_star_name", smgr->getFlagLabels()); @@ -542,6 +546,7 @@ conf->setValue("landscape/flag_landscape_sets_location", lmgr->getFlagLandscapeSetsLocation()); conf->setValue("landscape/flag_landscape", lmgr->getFlagLandscape()); conf->setValue("landscape/flag_atmosphere", lmgr->getFlagAtmosphere()); + conf->setValue("landscape/flag_brightness", lmgr->getFlagLandscapeNightBrightness()); conf->setValue("landscape/flag_fog", lmgr->getFlagFog()); conf->setValue("stars/init_bortle_scale", core->getSkyDrawer()->getBortleScale()); conf->setValue("landscape/atmospheric_extinction_coefficient", core->getSkyDrawer()->getExtinctionCoefficient()); @@ -681,14 +686,15 @@ { int prevSel = ui->pluginsListWidget->currentRow(); ui->pluginsListWidget->clear(); - const QList pluginsList = StelApp::getInstance().getModuleMgr().getPluginsList(); + const QList pluginsList = StelApp::getInstance().getModuleMgr().getPluginsList(); foreach (const StelModuleMgr::PluginDescriptor& desc, pluginsList) { QString label = q_(desc.info.displayedName); QListWidgetItem* item = new QListWidgetItem(label); item->setData(Qt::UserRole, desc.info.id); - ui->pluginsListWidget->addItem(item); + ui->pluginsListWidget->addItem(item); } + ui->pluginsListWidget->sortItems(Qt::AscendingOrder); // If we had a valid previous selection (i.e. not first time we populate), restore it if (prevSel >= 0 && prevSel < ui->pluginsListWidget->count()) ui->pluginsListWidget->setCurrentRow(prevSel); @@ -836,7 +842,9 @@ void ConfigurationDialog::setFixedDateTimeToCurrent(void) { - ui->fixedDateTimeEdit->setDateTime(StelUtils::jdToQDateTime(StelApp::getInstance().getCore()->getJDay())); + StelCore* core = StelApp::getInstance().getCore(); + double JD = core->getJDay(); + ui->fixedDateTimeEdit->setDateTime(StelUtils::jdToQDateTime(JD+StelUtils::getGMTShiftFromQT(JD)/24-core->getDeltaT(JD)/86400)); ui->fixedTimeRadio->setChecked(true); setStartupTimeMode(); } @@ -953,7 +961,7 @@ currentDownloadFile = new QFile(path); if (!currentDownloadFile->open(QIODevice::WriteOnly)) { - qWarning() << "Can't open a writable file for storing new star catalog: " << path; + qWarning() << "Can't open a writable file for storing new star catalog: " << QDir::toNativeSeparators(path); currentDownloadFile->deleteLater(); currentDownloadFile = NULL; ui->downloadLabel->setText(q_("Error downloading %1:\n%2").arg(nextStarCatalogToDownload.value("id").toString()).arg(QString("Can't open a writable file for storing new star catalog: %1").arg(path))); @@ -1160,6 +1168,8 @@ // Espenak & Meeus (2006) used by default algorithms->addItem(q_("Espenak & Meeus (2006)").append(" *"), "EspenakMeeus"); algorithms->addItem(q_("Reijs (2006)"), "Reijs"); + algorithms->addItem(q_("Banjevic (2006)"), "Banjevic"); + algorithms->addItem(q_("Islam, Sadiq & Qureshi (2008, 2013)"), "IslamSadiqQureshi"); algorithms->addItem(q_("Custom equation of %1T").arg(QChar(0x0394)), "Custom"); //Restore the selection diff -Nru stellarium-0.12.1/src/gui/CustomDeltaTEquationDialog.cpp stellarium-0.12.4/src/gui/CustomDeltaTEquationDialog.cpp --- stellarium-0.12.1/src/gui/CustomDeltaTEquationDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/CustomDeltaTEquationDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -1,4 +1,12 @@ /* + * Stellarium + * Copyright (C) 2013 Alexander Wolf + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the diff -Nru stellarium-0.12.1/src/gui/CustomDeltaTEquationDialog.hpp stellarium-0.12.4/src/gui/CustomDeltaTEquationDialog.hpp --- stellarium-0.12.1/src/gui/CustomDeltaTEquationDialog.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/CustomDeltaTEquationDialog.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -1,6 +1,5 @@ /* * Stellarium - * * Copyright (C) 2013 Alexander Wolf * * This program is free software; you can redistribute it and/or diff -Nru stellarium-0.12.1/src/gui/LocationDialog.cpp stellarium-0.12.4/src/gui/LocationDialog.cpp --- stellarium-0.12.1/src/gui/LocationDialog.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/LocationDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -370,9 +370,26 @@ reportEdit(); StelLocation loc = locationFromFields(); StelCore* stelCore = StelApp::getInstance().getCore(); + LandscapeMgr* ls = GETSTELMODULE(LandscapeMgr); if (loc.planetName != stelCore->getCurrentLocation().planetName) + { setFieldsFromLocation(loc); - stelCore->moveObserverTo(loc, 0.); + if (ls->getFlagLandscapeAutoSelection()) + { + // If we have a landscape for selected planet then set it, otherwise use default landscape + // Details: https://bugs.launchpad.net/stellarium/+bug/1173254 + if (ls->getAllLandscapeNames().indexOf(loc.planetName)>0) + ls->setCurrentLandscapeName(loc.planetName); + else + ls->setCurrentLandscapeID(ls->getDefaultLandscapeID()); + } + + } + // Planet transition time also set to null to prevent uglyness when + // "use landscape location" is enabled for that planet's landscape. --BM + // NOTE: I think it also makes sense in the other cases. --BM + // FIXME: Avoid the unnecessary change of the location anyway. --BM + stelCore->moveObserverTo(loc, 0., 0.); } void LocationDialog::setPositionFromCoords(int ) diff -Nru stellarium-0.12.1/src/gui/SearchDialog.cpp stellarium-0.12.4/src/gui/SearchDialog.cpp --- stellarium-0.12.1/src/gui/SearchDialog.cpp 2013-04-16 15:54:33.000000000 +0000 +++ stellarium-0.12.4/src/gui/SearchDialog.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -162,6 +162,7 @@ QSettings* conf = StelApp::getInstance().getSettings(); Q_ASSERT(conf); useSimbad = conf->value("search/flag_search_online", true).toBool(); + useStartOfWords = conf->value("search/flag_start_words", false).toBool(); simbadServerUrl = conf->value("search/simbad_server_url", DEF_SIMBAD_URL).toString(); } @@ -238,8 +239,7 @@ connect(ui->psiPushButton, SIGNAL(clicked(bool)), this, SLOT(greekLetterClicked())); connect(ui->omegaPushButton, SIGNAL(clicked(bool)), this, SLOT(greekLetterClicked())); - connect(ui->checkBoxUseSimbad, SIGNAL(clicked(bool)), - this, SLOT(enableSimbadSearch(bool))); + connect(ui->checkBoxUseSimbad, SIGNAL(clicked(bool)), this, SLOT(enableSimbadSearch(bool))); ui->checkBoxUseSimbad->setChecked(useSimbad); populateSimbadServerList(); @@ -250,8 +250,10 @@ idx = ui->serverListComboBox->findData(QVariant(DEF_SIMBAD_URL), Qt::UserRole, Qt::MatchCaseSensitive); } ui->serverListComboBox->setCurrentIndex(idx); - connect(ui->serverListComboBox, SIGNAL(currentIndexChanged(int)), - this, SLOT(selectSimbadServer(int))); + connect(ui->serverListComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(selectSimbadServer(int))); + + connect(ui->checkBoxUseStartOfWords, SIGNAL(clicked(bool)), this, SLOT(enableStartOfWordsAutofill(bool))); + ui->checkBoxUseStartOfWords->setChecked(useStartOfWords); // list views initialization connect(ui->objectTypeComboBox, SIGNAL(activated(int)), this, SLOT(updateListWidget(int))); @@ -274,6 +276,16 @@ conf->setValue("search/flag_search_online", useSimbad); } +void SearchDialog::enableStartOfWordsAutofill(bool enable) +{ + useStartOfWords = enable; + + QSettings* conf = StelApp::getInstance().getSettings(); + Q_ASSERT(conf); + conf->setValue("search/flag_start_words", useStartOfWords); +} + + void SearchDialog::setVisible(bool v) { StelDialog::setVisible(v); @@ -335,12 +347,12 @@ QString greekText = substituteGreek(trimmedText); QStringList matches; if(greekText != trimmedText) { - matches = objectMgr->listMatchingObjectsI18n(trimmedText, 3); - matches += objectMgr->listMatchingObjects(trimmedText, 3); - matches += objectMgr->listMatchingObjectsI18n(greekText, (5 - matches.size())); + matches = objectMgr->listMatchingObjectsI18n(trimmedText, 3, useStartOfWords); + matches += objectMgr->listMatchingObjects(trimmedText, 3, useStartOfWords); + matches += objectMgr->listMatchingObjectsI18n(greekText, (8 - matches.size()), useStartOfWords); } else { - matches = objectMgr->listMatchingObjectsI18n(trimmedText, 5); - matches += objectMgr->listMatchingObjects(trimmedText, 5); + matches = objectMgr->listMatchingObjectsI18n(trimmedText, 5, useStartOfWords); + matches += objectMgr->listMatchingObjects(trimmedText, 5, useStartOfWords); } // remove possible duplicates from completion list @@ -431,7 +443,7 @@ ui->lineEditSearchSkyObject->clear(); ui->completionLabel->clearValues(); } - else if (objectMgr->findAndSelectI18n(nameI18n) or objectMgr->findAndSelect(nameI18n)) + else if (objectMgr->findAndSelectI18n(nameI18n) || objectMgr->findAndSelect(nameI18n)) { const QList newSelected = objectMgr->getSelectedObject(); if (!newSelected.empty()) @@ -586,8 +598,7 @@ { if (!objectMgr->listAllModuleObjects(it.key(), ui->searchInEnglishCheckBox->isChecked()).isEmpty()) { - QString moduleName = (ui->searchInEnglishCheckBox->isChecked() ? - it.value(): q_(it.value())); + QString moduleName = (ui->searchInEnglishCheckBox->isChecked() ? it.value(): q_(it.value())); ui->objectTypeComboBox->addItem(moduleName, QVariant(it.key())); } } diff -Nru stellarium-0.12.1/src/gui/SearchDialog.hpp stellarium-0.12.4/src/gui/SearchDialog.hpp --- stellarium-0.12.1/src/gui/SearchDialog.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/SearchDialog.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -105,6 +105,9 @@ //! Whether to use SIMBAD for searches or not. void enableSimbadSearch(bool enable); + //! Whether to use autofill for start of words or not. + void enableStartOfWordsAutofill(bool enable); + //! Set flagHasSelectedText as true, if search box has selected text void setHasSelectedFlag(); @@ -129,6 +132,7 @@ //! Used when substituting text with a Greek letter. bool flagHasSelectedText; + bool useStartOfWords; bool useSimbad; //! URL of the server used for SIMBAD queries. QString simbadServerUrl; diff -Nru stellarium-0.12.1/src/gui/SkyGui.cpp stellarium-0.12.4/src/gui/SkyGui.cpp --- stellarium-0.12.1/src/gui/SkyGui.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/SkyGui.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -30,6 +30,10 @@ #include #include +#ifdef _MSC_BUILD +#define round(dbl) dbl >= 0.0 ? (int)(dbl + 0.5) : ((dbl - (double)(int)dbl) <= -0.5 ? (int)dbl : (int)(dbl - 0.5)) +#endif + InfoPanel::InfoPanel(QGraphicsItem* parent) : QGraphicsTextItem("", parent) { QSettings* conf = StelApp::getInstance().getSettings(); diff -Nru stellarium-0.12.1/src/gui/StelGuiItems.cpp stellarium-0.12.4/src/gui/StelGuiItems.cpp --- stellarium-0.12.1/src/gui/StelGuiItems.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/StelGuiItems.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -45,6 +45,10 @@ #include #include +#ifdef _MSC_BUILD +#define round(dbl) dbl >= 0.0 ? (int)(dbl + 0.5) : ((dbl - (double)(int)dbl) <= -0.5 ? (int)dbl : (int)(dbl - 0.5)) +#endif + StelButton::StelButton(QGraphicsItem* parent, const QPixmap& apixOn, const QPixmap& apixOff, @@ -607,9 +611,9 @@ sigmaInfo = QString("; %1(%2T) = %3s").arg(QChar(0x03c3)).arg(QChar(0x0394)).arg(sigma, 3, 'f', 1); if (std::abs(deltaT)>60.) - datetime->setToolTip(QString("%1T = %2 (%3s)%8 [%4 @ -23.8946%5/cy%6%7]").arg(QChar(0x0394)).arg(StelUtils::hoursToHmsStr(deltaT/3600.)).arg(deltaT, 5, 'f', 2).arg(QChar(0x1e45)).arg(QChar(0x2033)).arg(QChar(0x00B2)).arg(sigmaInfo).arg(validRangeInfo)); + datetime->setToolTip(QString("%1T = %2 (%3s)%6 [n-dot @ -23.8946\"/cy%4%5]").arg(QChar(0x0394)).arg(StelUtils::hoursToHmsStr(deltaT/3600.)).arg(deltaT, 5, 'f', 2).arg(QChar(0x00B2)).arg(sigmaInfo).arg(validRangeInfo)); else - datetime->setToolTip(QString("%1T = %2s%7 [%3 @ -23.8946%4/cy%5%6]").arg(QChar(0x0394)).arg(deltaT, 3, 'f', 3).arg(QChar(0x1e45)).arg(QChar(0x2033)).arg(QChar(0x00B2)).arg(sigmaInfo).arg(validRangeInfo)); + datetime->setToolTip(QString("%1T = %2s%5 [n-dot @ -23.8946\"/cy%3%4]").arg(QChar(0x0394)).arg(deltaT, 3, 'f', 3).arg(QChar(0x00B2)).arg(sigmaInfo).arg(validRangeInfo)); } else datetime->setToolTip(""); diff -Nru stellarium-0.12.1/src/gui/StelScriptSyntaxHighlighter.cpp stellarium-0.12.4/src/gui/StelScriptSyntaxHighlighter.cpp --- stellarium-0.12.1/src/gui/StelScriptSyntaxHighlighter.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/StelScriptSyntaxHighlighter.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -24,7 +24,11 @@ #include "StelModuleMgr.hpp" #include "StelUtils.hpp" +#if QT_VERSION +#else +#include +#endif #include #include #include diff -Nru stellarium-0.12.1/src/gui/ViewDialog.cpp stellarium-0.12.4/src/gui/ViewDialog.cpp --- stellarium-0.12.1/src/gui/ViewDialog.cpp 2013-04-19 02:26:54.000000000 +0000 +++ stellarium-0.12.4/src/gui/ViewDialog.cpp 2013-09-13 10:51:45.000000000 +0000 @@ -199,6 +199,7 @@ connect(ui->zhrNone, SIGNAL(clicked()), this, SLOT(setZhrFromControls())); connect(ui->zhr10, SIGNAL(clicked()), this, SLOT(setZhrFromControls())); connect(ui->zhr80, SIGNAL(clicked()), this, SLOT(setZhrFromControls())); + connect(ui->zhr1000, SIGNAL(clicked()), this, SLOT(setZhrFromControls())); connect(ui->zhr10000, SIGNAL(clicked()), this, SLOT(setZhrFromControls())); connect(ui->zhr144000, SIGNAL(clicked()), this, SLOT(setZhrFromControls())); @@ -242,9 +243,15 @@ ui->landscapePositionCheckBox->setChecked(lmgr->getFlagLandscapeSetsLocation()); connect(ui->landscapePositionCheckBox, SIGNAL(toggled(bool)), lmgr, SLOT(setFlagLandscapeSetsLocation(bool))); + ui->landscapeBrightnessCheckBox->setChecked(lmgr->getFlagLandscapeNightBrightness()); + connect(ui->landscapeBrightnessCheckBox, SIGNAL(toggled(bool)), lmgr, SLOT(setFlagLandscapeNightBrightness(bool))); + ui->lightPollutionSpinBox->setValue(StelApp::getInstance().getCore()->getSkyDrawer()->getBortleScale()); connect(ui->lightPollutionSpinBox, SIGNAL(valueChanged(int)), lmgr, SLOT(setAtmosphereBortleLightPollution(int))); connect(ui->lightPollutionSpinBox, SIGNAL(valueChanged(int)), StelApp::getInstance().getCore()->getSkyDrawer(), SLOT(setBortleScale(int))); + + ui->autoChangeLandscapesCheckBox->setChecked(lmgr->getFlagLandscapeAutoSelection()); + connect(ui->autoChangeLandscapesCheckBox, SIGNAL(toggled(bool)), lmgr, SLOT(setFlagLandscapeAutoSelection(bool))); // GZ: changes for refraction //ui->pressureDoubleSpinBox->setValue(StelApp::getInstance().getCore()->getSkyDrawer()->getAtmospherePressure()); @@ -585,6 +592,8 @@ zhr = 10; if (ui->zhr80->isChecked()) zhr = 80; + if (ui->zhr1000->isChecked()) + zhr = 1000; if (ui->zhr10000->isChecked()) zhr = 10000; if (ui->zhr144000->isChecked()) @@ -605,6 +614,7 @@ { case 0: ui->zhrNone->setChecked(true); break; case 80: ui->zhr80->setChecked(true); break; + case 1000: ui->zhr1000->setChecked(true); break; case 10000: ui->zhr10000->setChecked(true); break; case 144000: ui->zhr144000->setChecked(true); break; default: ui->zhr10->setChecked(true); break; @@ -626,6 +636,9 @@ case 80: ui->zhrLabel->setText(""+q_("Standard Perseids rate")+""); break; + case 1000: + ui->zhrLabel->setText(""+q_("Meteor storm rate")+""); + break; case 10000: ui->zhrLabel->setText(""+q_("Exceptional Leonid rate")+""); break; diff -Nru stellarium-0.12.1/src/gui/configurationDialog.ui stellarium-0.12.4/src/gui/configurationDialog.ui --- stellarium-0.12.1/src/gui/configurationDialog.ui 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/configurationDialog.ui 2013-08-04 06:20:27.000000000 +0000 @@ -6,8 +6,8 @@ 0 0 - 483 - 446 + 481 + 444 @@ -692,6 +692,9 @@ + + Use current local date and time + use current @@ -951,6 +954,9 @@ + + Display solar shadows on planets and moons (For that feature needed OpenGL version 2 or higher) + Render Solar Shadows diff -Nru stellarium-0.12.1/src/gui/searchDialogGui.ui stellarium-0.12.4/src/gui/searchDialogGui.ui --- stellarium-0.12.1/src/gui/searchDialogGui.ui 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/searchDialogGui.ui 2013-09-07 15:50:48.000000000 +0000 @@ -6,8 +6,8 @@ 0 0 - 527 - 229 + 507 + 213 @@ -180,6 +180,9 @@ Qt::StrongFocus + + Use tab key for select of found items + false @@ -239,6 +242,9 @@ 0 + + Use tab key for select of found items + QFrame::NoFrame @@ -673,6 +679,51 @@ + + + + Ubuntu + + + + Lists + + + + QLayout::SetDefaultConstraint + + + + + + 0 + 0 + + + + Some objects may be found after activation respective plug-ins + + + + + + + + + + names in English + + + + + + + Search in list... + + + + + Options @@ -739,46 +790,23 @@ - - - - - - Ubuntu - - - - Lists - - - - QLayout::SetDefaultConstraint - - - - - - 0 - 0 - - - - - - - - - - - names in English - - - - - - - Search in list... + + + + Search options + + + 0 + + + + + Use autofill only from the beginning of words + + + + diff -Nru stellarium-0.12.1/src/gui/viewDialog.ui stellarium-0.12.4/src/gui/viewDialog.ui --- stellarium-0.12.1/src/gui/viewDialog.ui 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/gui/viewDialog.ui 2013-09-13 10:51:45.000000000 +0000 @@ -6,8 +6,8 @@ 0 0 - 594 - 513 + 648 + 511 @@ -328,7 +328,7 @@ - 0 + 2 @@ -429,8 +429,11 @@ + + Labels and markers for deep-sky objects (star clusters, galaxies and nebulas) + - Nebulas + DSOs @@ -522,6 +525,16 @@ + + + + Automatic change of landscape when planet is changed + + + Auto select landscapes + + + @@ -819,6 +832,9 @@ 10.000000000000000 + + 0.100000000000000 + 1.000000000000000 @@ -927,7 +943,7 @@ Hourly zenith rate - ZHR: + ZHR: Qt::PlainText @@ -983,6 +999,13 @@ + + + 1000 + + + + 10000 @@ -1068,7 +1091,7 @@ - Stars to magnitude + Limit the magnitude of stars Stars @@ -1124,10 +1147,10 @@ - Nebulas to magitude + Limit the magnitude of deep-sky objects (star clusters, galaxies and nebulas) - Nebulas + DSOs @@ -1616,6 +1639,13 @@ + + + + Use brightness settings for landscapes + + + diff -Nru stellarium-0.12.1/src/main.cpp stellarium-0.12.4/src/main.cpp --- stellarium-0.12.1/src/main.cpp 2013-04-20 08:09:29.000000000 +0000 +++ stellarium-0.12.4/src/main.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -33,8 +33,13 @@ #include #include #include +#include #ifdef Q_OS_WIN #include +#ifdef _MSC_BUILD + #include + #pragma comment(lib,"Winmm.lib") +#endif #endif //Q_OS_WIN //! @class GettextStelTranslator @@ -169,12 +174,12 @@ qDebug() << qPrintable(QString("[ %1 ]").arg(versionLine.leftJustified(maxLength, ' '))); qDebug() << qPrintable(QString("[ %1 ]").arg(copyrightLine.leftJustified(maxLength, ' '))); qDebug() << qPrintable(QString(" %1").arg(QString().fill('-', maxLength+2))); - qDebug() << "Writing log file to:" << StelLogger::getLogFileName(); + qDebug() << "Writing log file to:" << QDir::toNativeSeparators(StelLogger::getLogFileName()); qDebug() << "File search paths:"; int n=0; foreach (QString i, StelFileMgr::getSearchPaths()) { - qDebug() << " " << n << ". " << i; + qDebug() << " " << n << ". " << QDir::toNativeSeparators(i); ++n; } @@ -256,18 +261,18 @@ QFile(configFileFullPath).rename(backupFile); copyDefaultConfigFile(configFileFullPath); confSettings = new QSettings(configFileFullPath, StelIniFormat); - qWarning() << "Resetting defaults config file. Previous config file was backed up in " << backupFile; + qWarning() << "Resetting defaults config file. Previous config file was backed up in " << QDir::toNativeSeparators(backupFile); } } else { - qDebug() << "Config file " << configFileFullPath << " does not exist. Copying the default file."; + qDebug() << "Config file " << QDir::toNativeSeparators(configFileFullPath) << " does not exist. Copying the default file."; copyDefaultConfigFile(configFileFullPath); confSettings = new QSettings(configFileFullPath, StelIniFormat); } Q_ASSERT(confSettings); - qDebug() << "Config file is: " << configFileFullPath; + qDebug() << "Config file is: " << QDir::toNativeSeparators(configFileFullPath); // Override config file values from CLI. CLIProcessor::parseCLIArgsPostConfig(argList, confSettings); @@ -317,7 +322,7 @@ } catch (std::runtime_error& e) { - qWarning() << "ERROR while loading custom font " << fileFont << " : " << e.what(); + qWarning() << "ERROR while loading custom font " << QDir::toNativeSeparators(fileFont) << " : " << e.what(); } } @@ -362,24 +367,36 @@ GettextStelTranslator trans; app.installTranslator(&trans); - if (!QGLFormat::hasOpenGL()) - { + if (!QGLFormat::hasOpenGL()) // Check support of OpenGL + { + qWarning() << "Oops... This system does not support OpenGL."; QMessageBox::warning(0, "Stellarium", q_("This system does not support OpenGL.")); + app.quit(); } + else if (!(QGLFormat::openGLVersionFlags() & QGLFormat::OpenGL_Version_1_2)) // Check supported version of OpenGL + { + // OK, minimal required version of OpenGL is 1.2. If platform does not support this + // version then say to user about troubles and quit from application. + qWarning() << "Oops... This platform support only OpenGL 1.1."; + QMessageBox::warning(0, "Stellarium", q_("Your platform does not support minimal required OpenGL 1.2. Please upgrade drivers for graphics card.")); + app.quit(); + } + else + { + StelMainWindow mainWin; + mainWin.init(confSettings); + app.exec(); + mainWin.deinit(); + + delete confSettings; + StelLogger::deinit(); + + #ifdef Q_OS_WIN + if(timerGrain) + timeEndPeriod(timerGrain); + #endif //Q_OS_WIN - StelMainWindow mainWin; - mainWin.init(confSettings); - app.exec(); - mainWin.deinit(); - - delete confSettings; - StelLogger::deinit(); - - #ifdef Q_OS_WIN - if(timerGrain) - timeEndPeriod(timerGrain); - #endif //Q_OS_WIN - - return 0; + return 0; + } } diff -Nru stellarium-0.12.1/src/noGui/StelNoGui.cpp stellarium-0.12.4/src/noGui/StelNoGui.cpp --- stellarium-0.12.1/src/noGui/StelNoGui.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/noGui/StelNoGui.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "StelNoGui.hpp" diff -Nru stellarium-0.12.1/src/noGui/StelNoGui.hpp stellarium-0.12.4/src/noGui/StelNoGui.hpp --- stellarium-0.12.1/src/noGui/StelNoGui.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/noGui/StelNoGui.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _STELNOGUI_HPP_ diff -Nru stellarium-0.12.1/src/scripting/StelMainScriptAPI.cpp stellarium-0.12.4/src/scripting/StelMainScriptAPI.cpp --- stellarium-0.12.1/src/scripting/StelMainScriptAPI.cpp 2013-04-02 15:41:36.000000000 +0000 +++ stellarium-0.12.4/src/scripting/StelMainScriptAPI.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -161,6 +161,16 @@ return StelUtils::hoursToHmsStr(StelApp::getInstance().getCore()->getDeltaT(getJDay())/3600.); } +QString StelMainScriptAPI::getDeltaTAlgorithm() const +{ + return StelApp::getInstance().getCore()->getCurrentDeltaTAlgorithmKey(); +} + +void StelMainScriptAPI::setDeltaTAlgorithm(QString algorithmName) +{ + StelApp::getInstance().getCore()->setCurrentDeltaTAlgorithmKey(algorithmName); +} + //! Set time speed in JDay/sec //! @param ts time speed in JDay/sec void StelMainScriptAPI::setTimeRate(double ts) @@ -481,7 +491,7 @@ } catch(std::runtime_error& e) { - qWarning() << "cannot play sound" << filename << ":" << e.what(); + qWarning() << "cannot play sound" << QDir::toNativeSeparators(filename) << ":" << e.what(); return; } @@ -517,7 +527,7 @@ } catch(std::runtime_error& e) { - qWarning() << "cannot play video" << filename << ":" << e.what(); + qWarning() << "cannot play video" << QDir::toNativeSeparators(filename) << ":" << e.what(); return; } @@ -624,6 +634,7 @@ double StelMainScriptAPI::jdFromDateString(const QString& dt, const QString& spec) { + StelCore *core = StelApp::getInstance().getCore(); if (dt == "now") return StelUtils::getJDFromSystem(); @@ -640,20 +651,26 @@ if (ok) return jd; - QRegExp nowRe("^(now)?(\\s*([+\\-])\\s*(\\d+(\\.\\d+)?)\\s*(second|seconds|minute|minutes|hour|hours|day|days|week|weeks))(\\s+(sidereal)?)?"); + QRegExp nowRe("^(now)?(\\s*([+\\-])\\s*(\\d+(\\.\\d+)?)\\s*(second|seconds|minute|minutes|hour|hours|day|days|week|weeks|month|months|year|years))(\\s+(sidereal)?)?"); if (nowRe.exactMatch(dt)) { double delta; double unit; double dayLength = 1.0; + double yearLength = 365.242190419; // duration of Earth's mean tropical year + double monthLength = 27.321582241; // duration of Earth's mean tropical month if (nowRe.capturedTexts().at(1)=="now") jd = StelUtils::getJDFromSystem(); else - jd = StelApp::getInstance().getCore()->getJDay(); + jd = core->getJDay(); if (nowRe.capturedTexts().at(8) == "sidereal") - dayLength = StelApp::getInstance().getCore()->getLocalSideralDayLength(); + { + dayLength = core->getLocalSideralDayLength(); + yearLength = core->getLocalSideralYearLength(); + monthLength = 27.321661; // duration of Earth's sidereal month + } QString unitString = nowRe.capturedTexts().at(6); if (unitString == "seconds" || unitString == "second") @@ -666,6 +683,10 @@ unit = dayLength; else if (unitString == "weeks" || unitString == "week") unit = dayLength * 7.; + else if (unitString == "months" || unitString == "month") + unit = monthLength; + else if (unitString == "years" || unitString == "year") + unit = yearLength; else { qWarning() << "StelMainScriptAPI::setDate - unknown time unit:" << nowRe.capturedTexts().at(4); @@ -766,6 +787,80 @@ return map; } +QVariantMap StelMainScriptAPI::getSelectedObjectInfo() +{ + StelObjectMgr* omgr = GETSTELMODULE(StelObjectMgr); + QVariantMap map; + if (omgr->getSelectedObject().isEmpty()) + { + debug("getObjectData WARNING - object not selected"); + map.insert("found", false); + return map; + } + + StelObjectP obj = omgr->getSelectedObject()[0]; + + if (!obj) + { + debug("getObjectData WARNING - object not found"); + map.insert("found", false); + return map; + } + else + { + map.insert("found", true); + } + + // OK, object found. Let's go. + Vec3d pos; + double ra, dec, alt, azi, glong, glat; + StelCore* core = StelApp::getInstance().getCore(); + + // ra/dec + pos = obj->getEquinoxEquatorialPos(core); + StelUtils::rectToSphe(&ra, &dec, pos); + map.insert("ra", ra*180./M_PI); + map.insert("dec", dec*180./M_PI); + + // ra/dec in J2000 + pos = obj->getJ2000EquatorialPos(core); + StelUtils::rectToSphe(&ra, &dec, pos); + map.insert("raJ2000", ra*180./M_PI); + map.insert("decJ2000", dec*180./M_PI); + + // apparent altitude/azimuth + pos = obj->getAltAzPosApparent(core); + StelUtils::rectToSphe(&azi, &alt, pos); + map.insert("altitude", alt*180./M_PI); + map.insert("azimuth", azi*180./M_PI); + + // geometric altitude/azimuth + pos = obj->getAltAzPosGeometric(core); + StelUtils::rectToSphe(&azi, &alt, pos); + map.insert("altitude-geometric", alt*180./M_PI); + map.insert("azimuth-geometric", azi*180./M_PI); + + // galactic long/lat in J2000 + pos = obj->getJ2000GalacticPos(core); + StelUtils::rectToSphe(&glong, &glat, pos); + map.insert("glong", alt*180./M_PI); + map.insert("glat", azi*180./M_PI); + + // magnitude + map.insert("vmag", obj->getVMagnitude(core, false)); + map.insert("vmage", obj->getVMagnitude(core, true)); + + // angular size + map.insert("size", obj->getAngularSize(core)); + + // english name or designation & localized name + map.insert("name", obj->getEnglishName()); + map.insert("localized-name", obj->getNameI18n()); + + return map; +} + + void StelMainScriptAPI::clear(const QString& state) { LandscapeMgr* lmgr = GETSTELMODULE(LandscapeMgr); diff -Nru stellarium-0.12.1/src/scripting/StelMainScriptAPI.hpp stellarium-0.12.4/src/scripting/StelMainScriptAPI.hpp --- stellarium-0.12.1/src/scripting/StelMainScriptAPI.hpp 2013-04-02 15:40:39.000000000 +0000 +++ stellarium-0.12.4/src/scripting/StelMainScriptAPI.hpp 2013-08-04 06:20:27.000000000 +0000 @@ -67,16 +67,20 @@ //! You may also append " sidereal" to use sidereal days and so on. //! You can also use "now" at the start. For example: //! "now + 3 hours sidereal" - //! Note: you must use the plural all the time, even when the number - //! of the unit is 1. i.e. use "+ 1 days" not "+1 day". - //! Note: when sidereal time is used, the length of time for + //! @note you must use the plural all the time, even when the number + //! of the unit is 1. i.e. use "+ 1 days" not "+1 day". + //! @note when sidereal time is used, the length of time for //! each unit is dependent on the current planet. By contrast //! when sidereal timeis not specified (i.e. solar time is used) //! the value is conventional - i.e. 1 day means 1 Earth Solar day. //! @param spec "local" or "utc" - only has an effect when - //! the ISO date type is used. - //! @param enableDeltaT true or false - enable Delta-T correction or not - void setDate(const QString& dt, const QString& spec="utc", const bool& enableDeltaT=false); + //! the ISO date type is used. Defaults to "utc". + //! @param enableDeltaT is \a true or \a false - enable Delta-T correction or not. + //! Defaults to "true". + //! @note for fully compatibles behavior of this function with the version 0.11.4 + //! or earlier, you should call \b core.setDeltaTAlgorithm("WithoutCorrection"); + //! before running \b core.setDate(); for disabling DeltaT correction. + void setDate(const QString& dt, const QString& spec="utc", const bool& enableDeltaT=true); //! get the simulation date and time as a string in ISO format, //! e.g. "2008-03-24T13:21:01" @@ -90,6 +94,20 @@ //! @return the DeltaT for current simulation time. QString getDeltaT() const; + //! get the DeltaT equation name for the simulation date and time as a string + //! @return name of the DeltaT equation + QString getDeltaTAlgorithm() const; + + //! set equation of the DeltaT for the simulation date and time + //! @param algorithmName is name of equation, e.g. "WithoutCorrection" or "EspenakMeeus" + //! @note list of possible names of equation for DeltaT: WithoutCorrection, Schoch, Clemence, IAU, + //! AstronomicalEphemeris, TuckermanGoldstine, MullerStephenson, Stephenson1978, SchmadelZech1979, + //! MorrisonStephenson1982, StephensonMorrison1984, StephensonHoulden, Espenak, Borkowski, + //! SchmadelZech1988, ChaprontTouze, StephensonMorrison1995, Stephenson1997, ChaprontMeeus, + //! JPLHorizons, MeeusSimons, MontenbruckPfleger, ReingoldDershowitz, MorrisonStephenson2004, + //! EspenakMeeus, Reijs, Banjevic, IslamSadiqQureshi, Custom. + void setDeltaTAlgorithm(QString algorithmName); + //! Set time speed in JDay/sec //! @param ts the new rate of passage of time as a multiple of real time. //! For example if ts is 1, time will pass at the normal rate. If ts == 10 @@ -124,9 +142,9 @@ //! - altitude-geometric : geometric altitude angle in decimal degrees //! - azimuth-geometric : geometric azimuth angle in decimal degrees //! - ra : right ascension angle (current date frame) in decimal degrees - //! - dec : declenation angle in (current date frame) decimal degrees + //! - dec : declination angle in (current date frame) decimal degrees //! - raJ2000 : right ascension angle (J2000 frame) in decimal degrees - //! - decJ2000 : declenation angle in (J2000 frame) decimal degrees + //! - decJ2000 : declination angle in (J2000 frame) decimal degrees //! @deprecated Use getObjectInfo() QVariantMap getObjectPosition(const QString& name); @@ -139,9 +157,9 @@ //! - altitude-geometric : geometric altitude angle in decimal degrees //! - azimuth-geometric : geometric azimuth angle in decimal degrees //! - ra : right ascension angle (current date frame) in decimal degrees - //! - dec : declenation angle in (current date frame) decimal degrees + //! - dec : declination angle in (current date frame) decimal degrees //! - raJ2000 : right ascension angle (J2000 frame) in decimal degrees - //! - decJ2000 : declenation angle in (J2000 frame) decimal degrees + //! - decJ2000 : declination angle in (J2000 frame) decimal degrees //! - glongJ2000 : galactic longitude (J2000 frame) in decimal degrees //! - glatJ2000 : galactic latitude in (J2000 frame) decimal degrees //! - vmag : visual magnitude @@ -150,6 +168,25 @@ //! - localized-name : localized name QVariantMap getObjectInfo(const QString& name); + //! Fetch a map with data about an latest selected object's position, magnitude and so on + //! @return a map of object data. Keys: + //! - altitude : apparent altitude angle in decimal degrees + //! - azimuth : apparent azimuth angle in decimal degrees + //! - altitude-geometric : geometric altitude angle in decimal degrees + //! - azimuth-geometric : geometric azimuth angle in decimal degrees + //! - ra : right ascension angle (current date frame) in decimal degrees + //! - dec : declination angle in (current date frame) decimal degrees + //! - raJ2000 : right ascension angle (J2000 frame) in decimal degrees + //! - decJ2000 : declination angle in (J2000 frame) decimal degrees + //! - glongJ2000 : galactic longitude (J2000 frame) in decimal degrees + //! - glatJ2000 : galactic latitude in (J2000 frame) decimal degrees + //! - vmag : visual magnitude + //! - vmage : visual magnitude (extincted) + //! - size : angular size in decimal degrees + //! - name : english name + //! - localized-name : localized name + QVariantMap getSelectedObjectInfo(); + //! Clear the display options, setting a "standard" view. //! Preset states: //! - natural : azimuthal mount, atmosphere, landscape, @@ -395,7 +432,7 @@ //! path is specified, "scripts/" will be prefixed before the //! image is searched for using StelFileMgr. //! @param ra The right ascension of the center of the image in J2000 frame degrees - //! @param dec The declenation of the center of the image in J2000 frame degrees + //! @param dec The declination of the center of the image in J2000 frame degrees //! @param angSize The angular size of the image in arc minutes //! @param rotation The clockwise rotation angle of the image in degrees //! @param minRes The minimum resolution setting for the image diff -Nru stellarium-0.12.1/src/scripting/StelScriptMgr.cpp stellarium-0.12.4/src/scripting/StelScriptMgr.cpp --- stellarium-0.12.1/src/scripting/StelScriptMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/scripting/StelScriptMgr.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -196,7 +196,7 @@ QFile file(StelFileMgr::findFile("scripts/" + s, StelFileMgr::File)); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { - QString msg = QString("WARNING: script file %1 could not be opened for reading").arg(s); + QString msg = QString("WARNING: script file %1 could not be opened for reading").arg(QDir::toNativeSeparators(s)); emit(scriptDebug(msg)); qWarning() << msg; return QString(); @@ -217,7 +217,7 @@ } catch(std::runtime_error& e) { - QString msg = QString("WARNING: script file %1 could not be found: %2").arg(s).arg(e.what()); + QString msg = QString("WARNING: script file %1 could not be found: %2").arg(QDir::toNativeSeparators(s)).arg(e.what()); emit(scriptDebug(msg)); qWarning() << msg; return QString(); @@ -246,7 +246,7 @@ QFile file(StelFileMgr::findFile("scripts/" + s, StelFileMgr::File)); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { - QString msg = QString("WARNING: script file %1 could not be opened for reading").arg(s); + QString msg = QString("WARNING: script file %1 could not be opened for reading").arg(QDir::toNativeSeparators(s)); emit(scriptDebug(msg)); qWarning() << msg; return QString(); @@ -289,7 +289,7 @@ } catch(std::runtime_error& e) { - QString msg = QString("WARNING: script file %1 could not be found: %2").arg(s).arg(e.what()); + QString msg = QString("WARNING: script file %1 could not be found: %2").arg(QDir::toNativeSeparators(s)).arg(e.what()); emit(scriptDebug(msg)); qWarning() << msg; return QString(); @@ -338,7 +338,7 @@ } catch (std::runtime_error& e) { - QString msg = QString("WARNING: could not find script file %1: %2").arg(fileName).arg(e.what()); + QString msg = QString("WARNING: could not find script file %1: %2").arg(QDir::toNativeSeparators(fileName)).arg(e.what()); emit(scriptDebug(msg)); qWarning() << msg; return false; @@ -346,7 +346,7 @@ QFile fic(absPath); if (!fic.open(QIODevice::ReadOnly)) { - QString msg = QString("WARNING: cannot open script: %1").arg(fileName); + QString msg = QString("WARNING: cannot open script: %1").arg(QDir::toNativeSeparators(fileName)); emit(scriptDebug(msg)); qWarning() << msg; return false; @@ -485,7 +485,7 @@ } catch(std::runtime_error& e) { - qWarning() << "WARNING: script include:" << fileName << e.what(); + qWarning() << "WARNING: script include:" << QDir::toNativeSeparators(fileName) << e.what(); return false; } } @@ -494,12 +494,12 @@ bool ok = fic.open(QIODevice::ReadOnly); if (ok) { - qDebug() << "script include: " << path; + qDebug() << "script include: " << QDir::toNativeSeparators(path); preprocessScript(fic, output, scriptDir); } else { - qWarning() << "WARNING: could not open script include file for reading:" << path; + qWarning() << "WARNING: could not open script include file for reading:" << QDir::toNativeSeparators(path); return false; } } diff -Nru stellarium-0.12.1/src/scripting/StratoscriptPreprocessor.cpp stellarium-0.12.4/src/scripting/StratoscriptPreprocessor.cpp --- stellarium-0.12.1/src/scripting/StratoscriptPreprocessor.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/scripting/StratoscriptPreprocessor.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -31,6 +31,7 @@ #include #include #include +#include bool StelScriptMgr::preprocessStratoScript(QFile& input, QString& output, const QString& scriptDir) { @@ -62,7 +63,7 @@ } catch(std::runtime_error& e) { - qWarning() << "WARNING: script include:" << fileName << e.what(); + qWarning() << "WARNING: script include:" << QDir::toNativeSeparators(fileName) << e.what(); return false; } } @@ -71,12 +72,12 @@ bool ok = fic.open(QIODevice::ReadOnly); if (ok) { - qDebug() << "script include: " << path; + qDebug() << "script include: " << QDir::toNativeSeparators(path); preprocessScript(fic, output, scriptDir); } else { - qWarning() << "WARNING: could not open script include file for reading:" << path; + qWarning() << "WARNING: could not open script include file for reading:" << QDir::toNativeSeparators(path); return false; } } diff -Nru stellarium-0.12.1/src/tests/testConversions.cpp stellarium-0.12.4/src/tests/testConversions.cpp --- stellarium-0.12.1/src/tests/testConversions.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/tests/testConversions.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "tests/testConversions.hpp" diff -Nru stellarium-0.12.1/src/tests/testDates.cpp stellarium-0.12.4/src/tests/testDates.cpp --- stellarium-0.12.1/src/tests/testDates.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/tests/testDates.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -1,3 +1,21 @@ +/* + * Stellarium + * Copyright (C) 2009 Matthew Gates + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. + */ #include #include diff -Nru stellarium-0.12.1/src/tests/testDeltaT.cpp stellarium-0.12.4/src/tests/testDeltaT.cpp --- stellarium-0.12.1/src/tests/testDeltaT.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/tests/testDeltaT.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "tests/testDeltaT.hpp" diff -Nru stellarium-0.12.1/src/tests/testDeltaT.hpp stellarium-0.12.4/src/tests/testDeltaT.hpp --- stellarium-0.12.1/src/tests/testDeltaT.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/tests/testDeltaT.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #ifndef _TESTDELTAT_HPP_ diff -Nru stellarium-0.12.1/src/tests/testStelFileMgr.cpp stellarium-0.12.4/src/tests/testStelFileMgr.cpp --- stellarium-0.12.1/src/tests/testStelFileMgr.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/tests/testStelFileMgr.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -44,7 +44,7 @@ QFAIL(qPrintable("could not set the working directory to: "+workingDir)); } - qDebug() << "working directory: " << QDir::currentPath(); + qDebug() << "working directory: " << QDir::toNativeSeparators(QDir::currentPath()); StelFileMgr::init(); @@ -103,7 +103,7 @@ QFile f(p); if (!f.remove()) { - qWarning() << "could not clean up file:" << workingDir + "/" + p; + qWarning() << "could not clean up file:" << QDir::toNativeSeparators(workingDir + "/" + p); } } @@ -113,7 +113,7 @@ { if (!QDir().rmdir(testDirs.at(i))) { - qWarning() << "could not clean up directory:" << workingDir + "/" + testDirs.at(i); + qWarning() << "could not clean up directory:" << QDir::toNativeSeparators(workingDir + "/" + testDirs.at(i)); } } } diff -Nru stellarium-0.12.1/src/tests/testStelSphereGeometry.cpp stellarium-0.12.4/src/tests/testStelSphereGeometry.cpp --- stellarium-0.12.1/src/tests/testStelSphereGeometry.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/tests/testStelSphereGeometry.cpp 2013-08-04 06:20:27.000000000 +0000 @@ -320,8 +320,8 @@ QVERIFY(smallSquare.contains(v0)); QVERIFY(bigSquareConvex.contains(v0)); QVERIFY(bigSquare.contains(v0)); - // TODO fix - // QVERIFY(!holySquare.contains(v0)); + // FIXME: '!holySquare.contains(v0)' returned FALSE. + //QVERIFY(!holySquare.contains(v0)); QVERIFY(!smallSquare.contains(v1)); QVERIFY(bigSquare.contains(v1)); diff -Nru stellarium-0.12.1/src/tests/testStelVertexBuffer.cpp stellarium-0.12.4/src/tests/testStelVertexBuffer.cpp --- stellarium-0.12.1/src/tests/testStelVertexBuffer.cpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/tests/testStelVertexBuffer.cpp 2013-09-07 15:50:48.000000000 +0000 @@ -1,3 +1,21 @@ +/* + * Stellarium + * Copyright (C) Stellarium Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. + */ #include "tests/testStelVertexBuffer.hpp" diff -Nru stellarium-0.12.1/src/tests/testStelVertexBuffer.hpp stellarium-0.12.4/src/tests/testStelVertexBuffer.hpp --- stellarium-0.12.1/src/tests/testStelVertexBuffer.hpp 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/src/tests/testStelVertexBuffer.hpp 2013-09-07 15:50:48.000000000 +0000 @@ -1,3 +1,22 @@ +/* + * Stellarium + * Copyright (C) Stellarium Team + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. + */ + #ifndef _TESTSTELVERTEXBUFFER_HPP_ #define _TESTSTELVERTEXBUFFER_HPP_ diff -Nru stellarium-0.12.1/src/translations.h stellarium-0.12.4/src/translations.h --- stellarium-0.12.1/src/translations.h 2013-04-03 10:53:24.000000000 +0000 +++ stellarium-0.12.4/src/translations.h 2013-09-13 10:51:45.000000000 +0000 @@ -167,6 +167,7 @@ N_("Chinese"); N_("Egyptian"); N_("Inuit"); + N_("Indian Vedic"); N_("Korean"); N_("Lakota"); N_("Maori"); @@ -241,7 +242,16 @@ N_("Analemma"); // TRANSLATORS: Name of script N_("Sky Culture Tour"); - + // TRANSLATORS: Name and description of script + N_("Earth Events from Mercury"); + // TRANSLATORS: Name and description of script + N_("Earth Events from Venus"); + // TRANSLATORS: Name and description of script + N_("Earth Events from Mars"); + // TRANSLATORS: Name of script + N_("Earth Greatest Elongations and Brilliancies from Mars"); + // TRANSLATORS: Name of script + N_("Earth and Mars Greatest Elongations from Jupiter"); // ===================================================================== // Script descriptions @@ -262,14 +272,15 @@ N_("Phobos eclipsing the Sun as seen from Olympus Mons on Jan 10, 2068."); N_("Phobos occultations of Earth are common, as are occultations of Jupiter. But occultations of both on the same day are very rare. Here's one that takes place 1/23/2048. In real speed."); N_("Phobos races ahead of Mars and transits the sun, passes through it and then retrogrades back towards the sun and just partially transits it again (only seen in the southern hemisphere of Deimos), then Mars totally eclipses the sun while Phobos transits in darkness between Mars and Deimos. When Phobos emerges from Mars it is still eclipsed and dimmed in Mars' shadow, only to light up later."); - N_("Screensaver of various happenings in the Solar System. 171 events in all!"); + N_("Screensaver of various happenings in the Solar System. 187 events in all!"); N_("A tour of the western constellations."); N_("Look at the Sun from big planets of Solar System and Pluto."); N_("Best views of Earth from other Solar System bodies in the 21st Century."); N_("Transit of Venus as seen from Sydney Australia, 6th June 2012."); N_("A demonstration of the analemma - the path of the Sun across the sky during the year."); N_("Flash of the supernova observed by Tycho Brahe in 1572. The Supernovae plugin has to be enabled."); - + N_("Earth Greatest Elongations and Brilliancies from Mars 2000-3000"); + N_("Earth Greatest Elongations from Jupiter 2000-3000"); // ===================================================================== // List of countries @@ -576,7 +587,7 @@ N_("Constellation boundaries"); N_("Constellation labels"); N_("Constellation lines"); - N_("Nebulas background images"); + N_("Deep-sky objects background images"); N_("Ecliptic J2000 grid"); N_("Ecliptic line"); N_("Equator line"); @@ -588,7 +599,7 @@ N_("Ground"); N_("Horizon line"); N_("Meridian line"); - N_("Nebulas"); + N_("Deep-sky objects"); N_("Night mode"); N_("Planet labels"); N_("Planet orbits"); @@ -637,11 +648,17 @@ N_("Oculars popup menu"); N_("Image sensor frame"); N_("Telrad sight"); + N_("Select next telescope"); + N_("Select next eyepiece"); + N_("Select previous telescope"); + N_("Select previous eyepiece"); // Pulsars Plugin + N_("Show pulsars"); N_("Pulsars configuration window"); // Quasars Plugin + N_("Show quasars"); N_("Quasars configuration window"); // Satellites Plugin @@ -651,6 +668,9 @@ // Historical Supernovae Plugin N_("Historical Supernovae configuration window"); + + // Bright Novae Plugin + N_("Bright Novae configuration window"); // Telescope Control Plugin N_("Move a telescope to a given set of coordinates"); diff -Nru stellarium-0.12.1/stars/default/CMakeLists.txt stellarium-0.12.4/stars/default/CMakeLists.txt --- stellarium-0.12.1/stars/default/CMakeLists.txt 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/stars/default/CMakeLists.txt 2013-08-04 06:20:27.000000000 +0000 @@ -1,5 +1,5 @@ ########### install files ############### -INSTALL(FILES defaultStarsConfig.json name.fab stars_0_0v0_2.cat stars_1_0v0_2.cat stars_2_0v0_2.cat stars_3_1v0_1.cat stars_hip_cids_0v0_0.cat stars_hip_sp_0v0_0.cat DESTINATION share/${PACKAGE}/stars/default) +INSTALL(FILES defaultStarsConfig.json name.fab stars_0_0v0_3.cat stars_1_0v0_3.cat stars_2_0v0_3.cat stars_3_1v0_2.cat stars_hip_cids_0v0_0.cat stars_hip_sp_0v0_0.cat gcvs_hip_part.dat DESTINATION share/${PACKAGE}/stars/default) diff -Nru stellarium-0.12.1/stars/default/defaultStarsConfig.json stellarium-0.12.4/stars/default/defaultStarsConfig.json --- stellarium-0.12.1/stars/default/defaultStarsConfig.json 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/stars/default/defaultStarsConfig.json 2013-08-04 06:20:27.000000000 +0000 @@ -1,39 +1,39 @@ { - "version": 3, + "version": 4, "hipSpectralFile": "stars_hip_sp_0v0_0.cat", "hipComponentsIdsFile": "stars_hip_cids_0v0_0.cat", "catalogs": [ { "id": "stars0", - "fileName": "stars_0_0v0_2.cat", + "fileName": "stars_0_0v0_3.cat", "count": 0.005, "magRange": [-2, 6], "sizeMb": 0.1, - "checksum": "d40c3e1613e1f81b99f3ed6e37d55ee9", + "checksum": "89b6833280270f0846f2c7dae1e310e0", "checked": true }, { "id": "stars1", - "fileName": "stars_1_0v0_2.cat", + "fileName": "stars_1_0v0_3.cat", "count": 0.022, "magRange": [6, 7.5], "sizeMb": 0.6, - "checksum": "a009c49019548ec0af88eaf55109db78", + "checksum": "59eeeb88a0939930a7ae1042fb542bdd", "checked": true }, { "id": "stars2", - "fileName": "stars_2_0v0_2.cat", + "fileName": "stars_2_0v0_3.cat", "count": 0.15, "magRange": [7.5, 9], "sizeMb": 4.1, - "checksum": "d2f6616134dbdcc5838ef520fd66f144", + "checksum": "43e4a39a7198761e675b0f490de8a9ae", "checked": true }, { "id": "stars3", - "fileName": "stars_3_1v0_1.cat", + "fileName": "stars_3_1v0_2.cat", "count": 0.43, "magRange": [9, 10.5], "sizeMb": 4.2, diff -Nru stellarium-0.12.1/stars/default/gcvs_hip_part.dat stellarium-0.12.4/stars/default/gcvs_hip_part.dat --- stellarium-0.12.1/stars/default/gcvs_hip_part.dat 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/stars/default/gcvs_hip_part.dat 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,6886 @@ +1901 R And M 5.8 0 15.2 V 53820. 409.2 38 S3,5e-S8,8e(M7e) +10687 W And M 6.7 0 14.6 V 48654. 397.3 42 S6,1e-S9,2e +116287 Z And ZAND 7.7 0 11.3 V M2III+B1eq +114484 RT And EA/RS 8.97 0 9.83 9.28 V 51421.737 0.6289216 17 F8V+K1 +10192 RV And SRA 9.0 0 11.5 V 48667. 168.9 M4e +114345 RZ And CST 9.43 0 V K0 +114507 SS And SRC 10.0 0 11.4 p 152.5 M6II +116681 ST And SRA 7.7 0 11.8 V 53720. 326.6 52 C4,3e-C6,4e +363 SU And LC 8.0 0 8.5 V C6,4(C5II) +344 SV And M 7.7 0 14.7 V 53220. 313. 42 M5e-M7e +1878 SW And RRAB 9.14 0 10.09 V 53735.538 0.4422618 17 A7III-F8III +2546 TU And M 7.5 0 13.5 V 53700. 316.8 48 M5e +113405 TV And SRB 8.3 0 11.5 V 110. M4e-M5e +262 TW And EA 8.98 0 11.04 9.13 V 53693.355 4.122834 13 F0V+K0 +114757 TY And SRB 8.8 0 10.5 V 260. M5e-M6e +117591 TZ And LB: 8.0 0 9.3 V M5-6III +12298 UY And LB 7.4 0 12.3 V C5,4(N3) +1593 VX And SRA 7.5 0 9.7 V 375. C4,5J(N7) +113715 VY And SRB 9.6 0 11.8 V 149. C3,5J-C4,4-5(R8) +117143 WW And EA 10.92 1 0.67 0.16 V 34618.185 23.285213 05 A5+F3p +116883 WY And SRD 8.65 0 9.65 V 109.65 43 G2e-K2(M3) +6029 XX And RRAB 10.08 0 11.13 V 53662.575 0.722757 19 A8-F6 +114012 AA And EB 10.3 0 11.2 10.6 p 52500.730 0.9350969 B8V +114508 AB And EW 9.49 0 10.46 10.32 V 52500.0599 0.3318912 G5+G5V +115046 AC And * 10.70 1 1.2 V 28009.31 0.7112376 A9-F8 +115065 AN And EB 5.96 0 6.11 6.05 V 48500.732 3.21952 A7mIII-IV +2180 AQ And SRB 7.7 0 9.5 V 169. C5,4(Nb) +116958 AT And RRAB 10.42 0 10.92 V 53287.4851 0.6169122 21 F0-F7 +10027 BX And EB 8.87 0 9.53 9.12 V 52500.3454 0.6101119 F2V +2962 BZ And LB 7.7 0 8.6 V K9 +3432 CC And DSCT 9.19 0 9.46 V 0.1249078 40 F3IV-V +63 CG And ACV 6.32 0 6.42 V 41152.67 3.73975 B9pSiEu +8939 CI And RRAB 11.76 0 12.66 V 51441.803 0.4847267 18 A8 +4639 DQ And CWB: 11.23 0 12.00 V 51481.584 3.200635 23 K-M +3494 EG And ZAND 6.97 0 7.8 V M2IIIep +115036 ET And ACV 6.48 1 0.03 V 1.618875 B9pSi +115743 EW And LB 10.8 0 11.8 p C7,3(Nb) +3362 FF And UV+BY 12.02 0 12.90 U M1Ve+M1Ve +2355 GN And DSCTC 5.23 1 0.05 V 0.069304115 A9IV +3919 GO And ACV 6.12 1 0.04 V 2.5481 A0pSrCrEu +4322 GP And DSCT 10.53 1 0.6 V 47005.6145 0.0786827620 31 A3 +2243 GR And ACV 6.87 0 6.95 V 546.87 A2pSrCrEu +1475 GX And UV 10.30 0 10.85 U M1Ve +7651 GY And ACV 6.27 0 6.44 V 8000. B9VpCrEu +10270 GZ And EW 10.83 0 11.61 11.58 V 52500.1211 0.3050169 +6560 HN And ACV 6.67 0 6.76 V 69.92 A2pSrCrEu +7321 KK And ACV 5.91 1 0.01 V 0.6684 B9IVpSi +116039 KQ And LB: 9.4 0 10.1 p K5 +114154 KX And BE 6.88 0 7.28 V B3pe+K1III +114329 KY And BE 6.68 0 6.95 V B3Vne +114379 KZ And BY 7.91 0 8.03 V 3.03 K2Ve+K2Ve +113802 LN And CST: 6.39 0 V B2V +118214 LQ And BE 6.50 0 6.66 V 0.309446 B4Ven +1799 LR And ELL 7.10 0 7.15 7.14 V 44854.8800 1.432321 A3V +7493 OP And RS: 6.27 0 6.41 Hp 2.35954 K1III: +7951 OQ And LB 7.64 0 7.73 V M3III +115200 OT And EA 7.32 0 7.72 V 45711.73 20.85290 03 +117503 OU And FKCOM: 5.87 0 5.94 V 24.2 G1IIIe +117963 PV And ACV 6.91 0 6.99 V 3.5112 B9pSi +2865 PY And ACV 6.02 1 0.03 U 4.6904 B8IIIpHgMn +10944 PZ And ACV 5.59 1 0.05 V 4.1890 B9VpSi +5684 QU And RS 7.25 1 0.05 V 21.08 G5IV +5939 QV And ACV 6.22 1 0.05 U 5.229 B9IIIpSi +116354 V0340 And DSCTC 5.69 1 0.03 B 0.063 A1Vp +590 V0341 And LB 8.63 0 8.94 Hp +882 V0343 And LB 7.04 0 7.55 Hp M2 +919 V0344 And BY 7.95 1 0.04 V 6.105 K0V +988 V0345 And SRB: 7.79 0 7.98 Hp 45.13 M4 +1112 V0346 And LB: 8.98 0 9.10 Hp K5 +1110 V0347 And SRS: 9.38 0 9.72 Hp 48510.60 15.11 M2 +1233 V0348 And EA 6.75 0 6.90 Hp 48504.070 5.5392 B9 +1289 V0349 And LB: 8.81 0 8.93 Hp M0 +2054 V0350 And EA 7.56 0 7.63 Hp 47947.413 1.538824 10 A3 +2216 V0351 And LB 9.12 0 9.49 Hp M5 +2285 V0352 And LB: 9.01 0 9.13 Hp M0 +2384 V0353 And LB: 9.44 0 9.59 Hp M0 +2651 V0354 And SRD: 8.65 0 8.78 Hp 10.877 K0 +3454 V0355 And EA 7.69 0 8.0 7.9 V 52295.088 4.71841 F5 +3498 V0356 And LB: 9.04 0 9.17 Hp M1 +4129 V0357 And ELL: 6.70 0 6.74 6.7 Hp 1.66238 A2V +4621 V0358 And LB: 8.22 0 8.36 Hp M2 +4900 V0359 And BY: 10.89 0 11.31 Hp M0 +5002 V0360 And LB 7.05 0 7.23 Hp M3III +5450 V0361 And DSCTC 7.79 0 7.83 Hp 48500.0220 0.1140500 F0 +6852 V0362 And E: 8.42 0 8.55 Hp 18.518518 M0 +7122 V0363 And EB 9.10 0 9.37 9.34 Hp 48500.3980 1.27799 A2 +7205 V0364 And LB 9.21 0 9.31 Hp K2III +7511 V0365 And DSCTC 7.49 0 7.53 Hp 0.142816 F0 +8034 V0366 And LC 6.74 0 6.93 Hp M2Ib +8618 V0367 And SRS: 7.11 0 7.45 Hp 24.457 M4 +8682 V0368 And LB 9.01 0 9.58 Hp M8 +9150 V0369 And LB: 9.07 0 9.18 Hp M0 +9234 V0370 And SRB 6.18 0 7.19 Hp 228. M7III +9500 V0371 And BY: 8.30 0 8.34 Hp 1.4937 G5 +9740 V0372 And EA 9.05 0 9.53 9.37 Hp 51483.5838 2.940986 11 A5 +9779 V0373 And DSCTC 7.63 0 7.69 Hp 0.1128020 F0 +9867 V0374 And E: 10.30 0 11.55 Hp M0 +11785 V0375 And SRB 7.01 0 7.22 Hp 54. A0 +12039 V0376 And EB 7.68 0 8.00 7.96 Hp 52500.492 0.7986720 A0 +12136 V0377 And EA 7.46 0 7.58 Hp 48700.254 4.06366 05 B9 +113640 V0378 And BE 6.47 0 6.64 V B3Vpe +114100 V0379 And IA: 7.70 0 7.85 Hp B3 +114106 V0380 And LPB 7.97 0 8.02 Hp 1.37678 B9 +114305 V0381 And EA 7.35 0 7.42 Hp A0 +114384 V0382 And EB 9.16 0 9.44 9.24 Hp 51402.871 1.478983 A0 +114850 V0383 And LB: 8.35 0 8.46 Hp M0 +115504 V0384 And LB: 9.22 0 9.41 Hp M2 +115530 V0385 And LB 6.36 0 6.47 Hp M0 +115541 V0386 And LB: 9.32 0 9.53 Hp M0 +115643 V0387 And LB 6.76 0 6.87 Hp M0 +115755 V0388 And ACV 5.73 0 5.77 Hp 1.47931 B9Mn +116153 V0389 And EA 8.22 0 8.32 Hp A0 +116228 V0390 And SRB 6.56 0 6.75 Hp 303. M0 +116411 V0391 And LB 9.05 0 9.43 Hp M2 +116685 V0392 And EA 9.07 0 9.41 9.41 V 48035.107 4.046275 06 A2 +116716 V0393 And LB: 10.31 0 10.38 Hp +116870 V0394 And LPB 7.40 0 7.42 Hp 1.7776 B9 +117111 V0395 And EW 7.55 0 7.62 7.61 Hp 48699.9945 0.6847 A0 +117647 V0396 And DSCTC 7.92 0 7.95 Hp 0.1047310 F0 +117691 V0397 And LB: 8.60 0 8.72 Hp M5 +117744 V0398 And LB: 8.23 0 8.34 Hp M2 +117769 V0399 And LB 6.95 0 7.05 Hp M2III +118238 V0400 And E 8.57 0 8.65 Hp A5 +76 V0401 And LB: 9.04 0 9.14 Hp M0 +12056 V0406 And EB 9.22 0 9.42 9.39 V 52500.27 2.165032 B8 +117844 V0413 And EA/RS 7.61 0 8.46 U 48127.2 53. 04 G0III +10023 V0419 And DSCTC 9.14 1 0.04 B 0.054 F0 +2900 V0428 And SRS 5.13 1 0.06 V 11.5 K5-M0III +10951 V0436 And ACV 7.23 0 7.29 Hp 26.87 B9pCrEuSi +544 V0439 And BY 6.13 1 0.04 V 6.23 K0Ve +4983 V0442 And BE 6.63 0 6.92 V B2IVe +5521 V0443 And BY 7.66 1 0.02 V 20.27 K0V +5944 V0445 And BY 6.61 1 0.03 V 5.67 G0 +6680 V0446 And * 7.61 1 0.09 V 64.23 G4III +10321 V0450 And BY 7.19 1 0.02 V 7.6 G0V +10339 V0451 And BY 7.35 1 0.03 V 7.52 G0V +115331 V0453 And BY 7.36 1 0.04 V 7.489 K1V +116613 V0454 And BY 6.58 1 0.02 V 7.5 G3/4V +1030 V0470 And LPB 6.66 0 6.70 Hp 2.74725 B2V +6794 V0529 And GDOR+DSCT 6.48 0 6.51 Hp 0.40331 A7Vm +677 α And ACV: 2.06 1 0.04 V 0.966222 B8IVpHgMn +3693 ζ And ELL/RS 3.92 0 4.14 V 32761.016 17.769586 K1IIe +116584 λ And RS 3.65 0 4.05 V 43832.8 53.95 G8III-IV +113726 ο And GCAS 3.55 0 3.78 V B6IIIpe+A2p +49784 R Ant CST 7.65 0 V A0V +46810 S Ant EW 6.27 0 6.83 6.80 V 52627.7968 0.6483489 F3V +46924 T Ant DCEP 8.88 0 9.82 V 36120.608 5.898053 22 F6Iab +51821 U Ant LB 8.8 0 9.7 p C5,3(Nb) +50697 V Ant M 8.2 0 14.0 V 52772. 303. M7IIIe +49524 X Ant M 8.8 0 14.0 V 53458. 164.1 M2-M6e +47076 RR Ant LB 8.0 0 8.8 V M6III +50289 WY Ant RRAB 10.27 0 11.22 V 48500.5339 0.574341 15 A5-F4 +48188 XX Ant EA 8.60 0 9.23 9.23 V 53413.7871 0.888014 20 A8/F0V +49118 YY Ant LB 8.74 0 9.4 V M3/4III +49950 AB Ant LB 6.6 0 7.1 V C6,3(N0) +50456 AG Ant * 5.29 0 5.83 V 429. B9.5Ib-II +53227 AH Ant SRD 8.40 0 8.7 V 83. K2III +47018 AK Ant DSCTC 8.80 1 0.03 V 0.066 A2II/III(w) +46521 AL Ant LB 7.40 0 7.78 V M2/M3III +46833 AM Ant ACV 9.31 0 9.38 Hp 4.8910 Ap(Si) +46845 AN Ant EB 8.21 0 8.34 8.26 V 52974.8389 3.681309 F0/F2IV +47467 AO Ant LB 8.6 0 9.0 V M0 +49375 AP Ant ACV 6.93 0 6.99 Hp 18.201 Ap(Eu-Cr) +49960 AQ Ant LB 9.06 0 9.22 Hp K5 +50160 AR Ant LB 9.30 0 9.48 Hp M2/M3 +50256 AS Ant LB: 8.29 0 8.39 Hp K5III +50268 AT Ant SRA 8.1 0 8.6 V 53497. 45.3 M4III +51112 AU Ant SRB 8.30 0 8.64 V 30.3 M3III +51175 AV Ant SRB 7.5 0 8.3 V 84. M4III +51847 AW Ant SRD: 8.6 0 9.5 V 700. G5 +51924 AX Ant LB 8.53 0 8.70 V K5 +52239 AY Ant SRD 9.64 0 10.06 V 53.5 Kp +52567 AZ Ant DSCTC 7.93 0 7.96 Hp 0.1053030 A5/7V +53078 BB Ant SRB 8.1 0 9.0 V 125. M6III +53325 BC Ant LB 8.85 0 9.09 V K5 +48776 BF Ant DSCTC 6.32 1 0.01 V A4V +73223 R Aps CST: 5.35 0 V K4III-M0III +74179 S Aps RCB 9.6 0 15.2 V C(R3) +75707 U Aps LB 11.0 0 11.6 p C(Nb) +72444 TY Aps RRAB 11.25 0 12.20 V 39726.275 0.5016935 32 A8-F6 +85473 XX Aps M 10.1 0 13.2 V 53669. 159.54 Me +72721 XZ Aps RRAB 10.8 0 12.8 p 28715.330 0.587434 12 +85095 DW Aps EA/SD: 7.9 0 9.1 p 39209.502 2.312950 14 B6III +76011 NN Aps ACV 6.86 0 6.92 V +85760 NO Aps SR 5.71 0 5.95 V +69451 NP Aps LB 8.27 0 8.66 Hp +69850 NQ Aps SRB 7.22 0 7.35 Hp +69956 NR Aps LB: 7.86 0 7.97 Hp +70547 NS Aps LB 7.84 0 8.23 Hp +71929 NT Aps EW 8.40 0 8.87 Hp +72825 NU Aps LB: 8.56 0 8.71 Hp +72801 NV Aps LB: 8.90 0 9.03 Hp +73041 NW Aps EB 9.23 0 9.51 Hp +73122 NX Aps I: 11.24 0 11.66 Hp +74405 NY Aps BY: 9.50 0 9.61 Hp +74673 NZ Aps LB 7.94 0 8.08 Hp +74999 OO Aps LB 6.58 0 6.68 Hp +75420 OP Aps DSCTC 8.15 0 8.23 Hp +78179 OQ Aps LB 8.58 0 8.75 Hp +79747 OR Aps LPB: 9.11 0 9.22 Hp +81438 OS Aps LB 8.93 0 9.43 Hp +81530 OT Aps EA 7.98 0 8.34 Hp +81743 OU Aps ACV: 8.60 0 8.69 Hp +82982 OV Aps ACV: 8.14 0 8.19 Hp +83972 OW Aps LPB 7.14 0 7.19 Hp +84042 OX Aps LB 8.24 0 8.52 Hp +85714 OY Aps LB 8.01 0 8.43 Hp +85849 OZ Aps EA 8.59 0 8.67 Hp +86712 PP Aps EA 9.65 0 10.02 Hp +72055 PR Aps DSCTC 8.07 0 8.16 Hp +75994 PS Aps EB 7.86 0 7.97 7.89 V 48574.241 1.086152 F3V +70248 ε Aps GCAS: 4.99 0 5.04 Hp +68815 tet Aps SRB 6.4 0 8.6 p 119. M7III +117054 R Aqr M+ZAND 5.2 0 12.4 V 54045. 390. 41 M5e-M8.5e+pec +102829 T Aqr M 7.0 0 14.2 V 53229. 201.1 47 M2e-M5.5e +108876 U Aqr RCB 10.6 0 15.9 V pec +102546 V Aqr SRB 7.6 0 10.1 V 241. M6e +110146 X Aqr M 7.2 0 15.0 V 52951. 311.4 42 S6,3e:(M4e-M6.5e +117703 Z Aqr SRA 7.4 0 10.2 V 52945. 136.6 50 M1e-M7III +110509 RT Aqr M 8.8 0 13.1 V 51890. 252.2 50 M5e-M6e +115553 RU Aqr SRB 8.5 0 10.1 V 118.8 M4/5III +104930 SW Aqr RRAB 10.37 0 11.68 V 52896.700 0.459300 11 A5-G1 +106645 SX Aqr RRAB 11.05 0 12.19 V 53882.828 0.5357087 10 A5-F7 +106565 WW Aqr M 10.5 2 14.5 V 53640. 242.7 +101991 AE Aqr XM+ELL 10.18 0 12.12 V K3Ve+pec(e) +109165 BM Aqr SRB 9.6 0 10.4 V 55.6 M3III: +116664 BR Aqr RRAB 10.75 0 11.93 V 52068.837 0.4818713 12 A8-F6 +117439 BS Aqr DSCT 9.12 0 9.62 V 52093.793 0.197822 31 A8-F3 +108839 BV Aqr RRC 10.72 0 11.24 V 52730.904 0.363714 50 +110514 BW Aqr EA 10.31 0 10.92 10.86 V 52501.720 6.719708 04 F8IV+F7IV +111719 CY Aqr SXPHE 10.42 0 11.20 V 52956.629 0.061038408 26 A2-A8 +115135 DN Aqr RRAB 10.73 0 11.51 V 52033.899 0.633760 16 F3-F9 +113021 DS Aqr RVA 10.2 0 11.3 V 52213.5 77.34 F2II +103545 DV Aqr EB 5.89 0 6.25 6.1 V 52500.21 1.575529 A9IV +110396 DZ Aqr LB 8.2 0 9.3 V M7 +111452 EE Aqr EB 7.91 0 8.55 8.12 V 52500.055 0.50899582 F0V +117317 EL Aqr EW 10.35 0 10.75 10.71 V 52500.119 0.4814092 F3V +103261 EM Aqr DSCTC 6.55 1 0.03 V 0.1024746 A9Vn +102624 EN Aqr LB 4.41 1 0.06 V M3III +107516 EP Aqr SRB 6.37 0 6.82 V 55. M8III +113930 EQ Aqr SRB 9.1 0 9.9 V 117. M3/M4 +114017 ER Aqr LB 7.14 0 7.81 V M3III +117629 ET Aqr ACV 5.12 0 5.21 V 3.735239 B9pSiCrSr +104634 EW Aqr DSCTC 6.41 0 6.48 V 0.0968946 A8III +108644 FF Aqr EA/RS 10.08 0 11.47 U 42752.9577 9.207755 06 G8III+sdOB +110616 FI Aqr ACV 7.49 0 7.52 V 4.689 B9pSi +111802 FK Aqr UV+BY 10.9 0 11.72 U 4.252 M2Ve +112615 FM Aqr DSCTC 6.16 0 6.19 V 0.087 A9III-IV +103899 FN Aqr DSCTC 7.34 1 0.01 V F5III +113031 HI Aqr ACV: 5.80 1 0.01 V 3.40 B9pHgMn +114252 HK Aqr BY+UV 10.72 0 10.94 V 0.4312 M2.5Ve +111506 HM Aqr E: 8.72 0 9.40 V 52404. 255. A0III +106335 HZ Aqr RS 9.78 0 9.90 V 4.03 K3Ve+K7Ve +113020 IL Aqr BY 10.15 0 10.21 V M4V +101926 IM Aqr LB 7.81 0 7.97 Hp M1 +101988 IN Aqr LB 8.01 0 8.14 Hp M4III +102041 IO Aqr EA 8.80 0 9.22 9.17 V 52530.4516 2.368091 11 G0 +102777 IP Aqr LB 7.70 0 7.86 Hp M0 +102770 IQ Aqr SRB 6.02 0 6.58 Hp 384.6 M3 +103026 IR Aqr LB 7.73 0 7.92 Hp M4III: +103447 IS Aqr LB 7.77 0 7.89 Hp M0 +103769 IT Aqr SR 7.10 0 7.25 Hp M0 +103851 IU Aqr LB 6.46 0 6.64 Hp M3 +104279 IV Aqr LC 6.50 0 6.65 Hp M4:II: +105019 IW Aqr SRB 6.47 0 6.54 Hp 163. M4III: +105389 IX Aqr LB 7.50 0 7.61 Hp K2 +105575 IY Aqr LB 7.67 0 7.86 Hp M0 +106544 IZ Aqr LB 6.23 0 6.47 Hp M3 +108562 KK Aqr LB 7.90 0 8.23 Hp M2III +108844 KL Aqr LB 8.33 0 9.07 Hp M8 +108909 KM Aqr LB: 8.13 0 8.25 Hp M0 +109201 KN Aqr LB 6.85 0 7.02 Hp M3 +109382 KO Aqr LB 8.51 0 8.86 Hp M0 +109395 KP Aqr LB: 8.03 0 8.15 Hp M1/M2III +109476 KQ Aqr RS: 9.45 0 9.57 V 2.43367 A0V +109613 KR Aqr LB 7.25 0 7.36 Hp M0 +110037 KS Aqr LB 9.42 0 9.63 Hp M1 +110388 KT Aqr LB: 7.83 0 7.94 Hp M0III +110528 KU Aqr LB 7.7 0 8.6 V M3III +110707 KV Aqr E: 6.84 0 7.03 Hp A1V+G8/K1III +110881 KW Aqr LB 7.92 0 8.31 Hp M3III +111162 KX Aqr EA 8.11 0 8.58 8.47 V 52444.834 2.073225 10 F8/G0V +111315 KY Aqr LB: 8.81 0 8.94 Hp K5 +111365 KZ Aqr LB: 8.05 0 8.15 Hp M1 +111454 LL Aqr EA 9.23 0 9.86 0.32 V 48762.552 20.1784 G0 +111581 LM Aqr LB 8.19 0 8.39 Hp M0 +111606 LN Aqr BY: 10.86 0 11.30 Hp K: +111647 LO Aqr IB: 7.44 0 7.59 Hp F0 +112078 LP Aqr LB 6.30 0 6.64 Hp M0 +112420 LQ Aqr LB 6.71 0 6.78 Hp M0 +114094 LR Aqr LB 8.7 0 9.3 V M3III: +114426 LS Aqr SRD: 8.33 0 8.61 V 269. G6/G8Ib +115657 LT Aqr LB 7.96 0 8.13 Hp M3 +115844 LU Aqr SRD 7.39 0 7.54 Hp 14.9 K3III +117738 LV Aqr SR 7.53 0 7.75 Hp 34.32 M2III +117747 LW Aqr LB 7.24 0 7.46 Hp M4III +118002 LX Aqr SRB 7.29 0 7.38 Hp 312. M2III +102935 NP Aqr EB 7.59 0 7.69 7.64 V 47985.661 0.806982 F0V +104456 NR Aqr SRS: 7.56 1 0.02 V 12.08 K5III +105066 NS Aqr BY 8.08 1 0.02 V 13.78 K0V +109110 NT Aqr BY 7.57 1 0.06 V 10.29 G0V +111726 NU Aqr LB: 8.72 1 0.02 V K0III +111870 NV Aqr BY 7.74 1 0.02 V 6.20 G8/K0V +115527 NX Aqr BY: 7.62 1 0.02 V G5V +104743 OR Aqr EA 7.94 0 8.11 8.11 V 47977.020 11.42365 03 F0V +115675 OV Aqr EA 8.72 0 8.98 V 48635.393 21.66595 02 F2V +112961 λ Aqr LB 3.57 0 3.80 V M2.5IIIa +108874 ο Aqr GCAS 4.68 0 4.89 V B7IVe-sh +110672 Ï€ Aqr GCAS 4.42 0 4.87 V B1Ve +114939 χ Aqr SRB: 4.75 0 5.10 V 35.250 M3III +93820 R Aql M 5.5 0 12.0 V 43458. 284.2 42 M5e-M9e +99503 S Aql SRA 8.9 0 12.8 V 43855. 146.45 48 M3e-M5.5e +95820 U Aql DCEP 6.08 0 6.86 V 34922.31 7.02393 30 F5I-II-G1 +93666 V Aql SRB 6.6 0 8.4 V 353. C5,4-C6,4(N6) +93867 Y Aql E/KE 5.02 1 0.04 0.03 B 38607.445 1.30227 B8III-V +98220 RR Aql M 7.8 0 14.5 V 41764. 394.78 30 M6e-M9 +96580 RT Aql M 7.6 0 14.5 V 43290. 327.11 42 M6e-M8e(S) +93681 SZ Aql DCEP 7.92 0 9.26 V 35528.937 17.137939 37 F7-K1 +93990 TT Aql DCEP 6.46 0 7.70 V 37236.10 13.7546 34 F6-G5 +94605 TY Aql ACV: 10.5 0 11.0 p A1p(Si) +101162 TZ Aql LB 10.2 0 11.0 p M6 +93158 UV Aql SRA 11.1 0 12.4 p 30906. 385.5 C5,4-5(N4) +97465 WX Aql SRB 11.5 0 12.6 p 30584. 107. 45 M6 +101453 CH Aql RR 11.5 0 12.5 p 36050.335 0.38918702 +93124 FF Aql DCEPS 5.18 0 5.68 V 41576.428 4.470916 48 F5Ia-F8Ia +94094 FM Aql DCEP 7.89 0 8.66 V 35151.723 6.11423 30 F5-F9Ia +94402 FN Aql DCEPS 7.96 0 8.75 V 36804.603 9.48151 49 F8-G2 +97586 GY Aql SR 10. 2 16. p 204. M6III:e-M8 +98553 KL Aql DCEP 9.82 0 10.56 V 43338.695 6.108015 23 F6Iab-G6 +101156 KN Aql SRB 8.52 0 9.35 V 70. 41 M5e +92177 KO Aql EA/SD: 8.3 0 9.50 8.40 B 41887.4724 2.864055 13 A0V-A3V +96637 LU Aql SRB 10.9 0 12.0 p 27344. 105.7 M4-M5 +97184 NO Aql SRA 11.0 0 12.7 p 31592. 73.6 42 M4e +98270 PX Aql SR 9.4 0 11.7 V 27658. 154.8 M5 +96840 QS Aql EA/SD 5.93 0 6.06 5.97 V 40443.489 2.513294 17 B5V +99309 QY Aql EA/DS: 11.4 0 14.6 p 30223.615 7.229590 15 F0 +93399 V0336 Aql DCEP 9.50 0 10.28 V 36255.641 7.303552 31 F5-G2 +101356 V0341 Aql RRAB 10.13 0 11.39 V 41196.251 0.57802054 13 A6-F5 +94774 V0342 Aql EA 9.5 0 12.9 p 39318.581 3.390882 14 A4II +96349 V0417 Aql EW/KW: 11. 0 11.5 11.5 p 43016.404 0.3701288 G2V +96204 V0450 Aql SRB 6.30 0 6.65 V 31320. 64.20 52 M5III-M8III +93063 V0493 Aql DCEP 10.79 0 11.36 V 35653.117 2.987751 30 +94004 V0496 Aql DCEPS 7.59 0 7.98 V 36017.062 6.80703 33 G5 +98675 V0572 Aql CWB 11.00 0 11.44 V 41921.259 3.767697 45 +93502 V0599 Aql EB/KE: 6.67 0 6.75 6.73 V 21836.539 1.849084 B2V+B8 +95118 V0600 Aql DCEP 9.73 0 10.40 V 36317.031 7.23845 33 F6-G0 +98217 V0733 Aql DCEP 9.73 0 10.16 V 42597.207 6.178748 32 F9Ib +93809 V0805 Aql EA/DM 7.58 0 8.22 7.90 V 27927.8470 2.4082337 11 A2+A7 +96007 V0822 Aql EB/DM 6.87 0 7.44 7.07 V 42577.333 5.294950 B5+B8:V +93751 V0843 Aql EA/KE 9.8 0 10.2 p 29864.182 1.497957 B9 +100599 V0865 Aql M 9.5 0 13.9 p 38593. 364.8 M6-M7(S7,5e:) +92787 V0913 Aql SRA 9.2 0 10.5 p 29735. 50. M5II +95929 V0923 Aql GCAS 6.04 1 0.12 V B5.5IIIpe-B8V +97794 V1162 Aql DCEPS 8.6 0 9.3 p 25803.400 5.3761 50 G5 +97991 V1165 Aql CEP: 10. 0 10.5 p 36755.472 6.82957 30 +92865 V1182 Aql EB/KE: 8.5 0 8.65 8.65 V 39651.720 1.621924 O8Vnn +94982 V1208 Aql DSCTC 5.51 0 5.56 V 0.149663 F0III +92871 V1285 Aql UV 10.8 0 11.82 B M2Ve +93179 V1286 Aql ACV 5.83 0 5.93 V 41517.4 6.05 A4p(Eu-Cr-Sr) +94477 V1288 Aql ACV 5.06 0 5.16 V 44099.23 1.73 B8II-IIIp(Hg:) +97871 V1291 Aql ACV 5.61 0 5.67 V 32323. 224.5 A5p(Sr-Cr-Eu) +96159 V1293 Aql SRB 8.3 0 9.0 p M5III +96196 V1294 Aql GCAS 6.82 0 7.23 V B0.5IV +98719 V1295 Aql * 7.87 1 0.02 V A0ep +91910 V1331 Aql EB/KE: 7.7 0 8.05 7.95 V 42610.070 1.364209 B1V +97607 V1339 Aql GCAS: 6.33 0 6.52 V B2.5IVe +99540 V1357 Aql SXARI 7.94 1 0.04 V 44084.32 19.5 B5p +96714 V1379 Aql RS 8.34 0 8.55 V +98910 V1401 Aql SRD 6.18 0 6.55 V +93626 V1402 Aql WR 11.59 1 0.14 B +93904 V1403 Aql ACYG 7.41 1 0.08 V +99101 V1422 Aql BY 8.09 1 0.10 V +99210 V1423 Aql RS 7.8 1 0.04 V +94496 V1427 Aql SRD 10.48 0 10.88 U +94761 V1428 Aql BY 9.09 0 9.13 V +95793 V1431 Aql ACVO: 6.06 1 0.04 v +92151 V1434 Aql LB: 7.56 0 7.68 Hp +92715 V1435 Aql LB: 7.32 0 7.46 Hp +92836 V1436 Aql E: 9.52 0 11.45 Hp +93215 V1437 Aql BE 8.99 0 9.10 Hp +93259 V1438 Aql DSCTC 7.79 0 7.86 Hp +93349 V1439 Aql EB: 7.68 0 7.98 Hp +93724 V1440 Aql ELL:+NL: 8.40 0 8.75 Hp +93732 V1441 Aql EB 6.91 0 7.00 Hp +93773 V1442 Aql LB: 7.46 0 7.56 Hp +94011 V1443 Aql GCAS: 8.95 0 9.13 Hp +94169 V1444 Aql ACV: 7.93 0 7.99 Hp +94294 V1445 Aql LB: 11.10 0 11.37 Hp +94384 V1446 Aql BE 9.16 0 9.28 Hp +94588 V1447 Aql LPB: 7.34 0 7.44 Hp +94596 V1448 Aql BE: 7.92 0 8.09 Hp +94793 V1449 Aql BCEP 8.30 0 8.38 Hp +94824 V1450 Aql EB: 8.98 0 9.30 Hp +95049 V1451 Aql LB 6.83 0 6.99 Hp +95082 V1452 Aql CEP: 7.75 0 7.85 Hp +95499 V1453 Aql LB: 9.10 0 9.20 Hp +95547 V1454 Aql E: 8.09 0 8.23 Hp +95588 V1455 Aql EA: 8.08 0 8.27 Hp +95716 V1456 Aql SRB 8.42 0 8.63 Hp +95748 V1457 Aql SRB 8.07 0 8.26 Hp +96309 V1458 Aql SRA 8.33 0 8.45 Hp +96682 V1459 Aql LB: 8.48 0 8.65 Hp +96916 V1460 Aql LB: 9.31 0 9.41 Hp +97065 V1461 Aql EA 8.91 0 9.34 Hp +97059 V1462 Aql BE 8.28 0 8.39 Hp +97117 V1463 Aql BE 8.05 0 8.19 Hp +97600 V1464 Aql RRC: 8.69 0 8.76 Hp +97664 V1465 Aql ACV: 9.22 0 9.32 Hp +97787 V1466 Aql BE: 6.50 0 6.56 Hp +98060 V1467 Aql LB: 11.81 0 12.28 Hp +98542 V1468 Aql LB 10.31 0 10.63 Hp +98538 V1469 Aql LB 8.48 0 8.66 Hp +98826 V1470 Aql E 7.83 0 7.93 Hp +98893 V1471 Aql EB: 8.42 0 8.63 Hp +98954 V1472 Aql E: 6.38 0 6.54 Hp +99250 V1473 Aql LPB: 7.15 0 7.21 Hp +99456 V1474 Aql LB 7.39 0 7.65 Hp +99533 V1475 Aql LB 7.11 0 7.26 Hp +99547 V1476 Aql LB: 11.69 0 11.98 Hp +99720 V1477 Aql CEP: 9.32 0 9.76 Hp +99755 V1478 Aql LB 8.78 0 9.17 Hp +99754 V1479 Aql LB: 11.29 0 11.53 Hp +99890 V1480 Aql LB 12.05 0 12.69 Hp +99983 V1481 Aql LB 7.24 0 7.56 Hp +100550 V1482 Aql SRB 6.96 0 7.09 Hp +100926 V1483 Aql LB: 6.83 0 7.00 Hp +101639 V1484 Aql LB: 10.10 0 10.31 Hp +91911 V1485 Aql WR 11.88 0 12.70 V +98698 V1654 Aql BY 7.48 1 0.04 V +92943 V1665 Aql EA 8.09 0 8.40 8.26 V 52810.870 3.88181 B9V +94482 V1686 Aql EB 8.91 0 9.01 8.98 V 52070.764 6.07195 B6III +94650 V1688 Aql BY 8.06 1 0.02 V 14.16 K0V +95453 V1691 Aql DSCTC 6.82 1 0.04 B 0.0781 A9V +99711 V1703 Aql BY 7.79 1 0.03 V 23.98 K2V +92837 V1709 Aql GDOR 7.43 0 7.49 Hp 0.78666 F5 +97649 α Aql DSCT 0.77 1 0.00 V 0.06342 A7IV/V +97804 η Aql DCEP 3.48 0 4.39 V 36084.656 7.176641 32 F6Ib-G4Ib +96665 σ Aql EB/DM 5.14 1 0.2 0.1 V 22486.797 1.95026 B3V+B3V +81589 R Ara EA 6.17 0 7.32 6.2 V 47386.1200 4.42522 14 B9Vp +88064 S Ara RRAB 9.92 0 11.24 V 52764.738 0.4518587 12 A5-F3 +83387 T Ara SRB 8.9 0 9.8 V 170. C(R-Nb) +81309 X Ara M 8.4 0 13.5 V 52455. 177.7 40 M5e-M7eII-III +82695 Z Ara M 9.2 2 14.0 V 52982. 293.3 60 M3e-M5e +87980 SS Ara CST: 9.28 0 V K2/4 +84059 SZ Ara SRA 9.0 0 11.5 V 53097. 221.8 Ce(R-Nb) +88802 IN Ara RRAB 12.32 0 13.6 V 52802.840 0.631489 17 +88402 MS Ara RRAB 11.52 0 12.48 V 52918.610 0.5249875 25 +82023 V0340 Ara DCEP 9.63 0 10.76 V 52351.75 20.81110 24 +83003 V0341 Ara NL: 10.47 0 11.04 V +86306 V0535 Ara EW 7.17 0 7.75 7.71 V 39292.9351 0.62930098 A8V +87314 V0539 Ara EA+LPB 5.71 0 6.24 6.16 V 48753.440 3.169094 11 B2V+B3V +82531 V0610 Ara EW 8.86 0 9.31 V 52549.548 0.543159 F0V +86628 V0626 Ara LB 6.23 0 6.46 V M3III +85467 V0750 Ara BE 6.62 0 6.68 V B35e +84586 V0824 Ara RS 6.63 0 6.97 V 1.681652 G5IV+K0V-IV +83323 V0828 Ara BE 6.11 0 6.24 V B2IVe +84311 V0829 Ara ELL: 6.09 0 6.20 V 80. +88743 V0832 Ara RS 7.08 0 7.16 V 34.6 G8-K0III-IIp +83916 V0837 Ara WR 10.9 0 12.4 V [WC10] +81376 V0840 Ara LB 6.83 0 6.91 Hp M2/M3III +81478 V0841 Ara BY: 8.73 0 8.79 Hp 4.6875 K0V +81700 V0842 Ara SRB 8.0 0 8.7 V 166. +82335 V0843 Ara ACV 7.78 0 7.82 Hp 48502.3182 2.57281 Ap(Si) +82745 V0844 Ara LB: 8.38 0 8.49 Hp K2/K3III +82769 V0845 Ara LB: 8.37 0 8.48 Hp M3/M4III +82868 V0846 Ara BE 6.27 0 6.37 Hp B3Vnpe +82985 V0847 Ara LPB 6.50 0 6.53 Hp 0.94213 B5III +83105 V0848 Ara BE: 8.05 0 8.24 Hp B2IV +83250 V0849 Ara LC 8.02 0 8.21 Hp M3/M4Ib +83618 V0850 Ara LB 7.87 0 8.03 Hp M3III +83802 V0851 Ara EB 6.93 0 6.98 6.97 Hp 48500.2098 0.617372 A7III +83943 V0852 Ara EA 7.75 0 8.10 7.94 Hp 48500.410 3.7400 09 B8V +84025 V0853 Ara ACV 8.77 0 8.82 Hp 48501.486 1.9525 Ap(Si) +84105 V0854 Ara LB 5.87 0 5.99 Hp M1/M2III +84148 V0855 Ara LB 7.25 0 7.35 Hp M4III +84231 V0856 Ara LB: 8.34 0 8.44 Hp K4III: +84642 V0857 Ara BY: 9.59 0 9.71 Hp G8/K0V +84686 V0858 Ara ACV 8.21 0 8.31 Hp 48500.6500 1.80495 Ap(Cr-Eu) +85435 V0859 Ara LC 7.02 0 7.14 Hp M2II +85553 V0860 Ara LB 7.17 0 7.30 Hp M2/M3III +85729 V0861 Ara ACYG: 8.11 0 8.18 Hp B1Ib +85751 V0862 Ara BE: 5.92 0 6.04 Hp B7II/III +85820 V0863 Ara SRB 7.47 0 8.15 Hp 294. M4/5+A2/3V +85895 V0864 Ara BE 6.97 0 7.09 Hp B7:Vnnpe +85968 V0865 Ara SRS 7.55 0 7.70 V 27.8 M3/4III +86200 V0866 Ara ACV: 7.68 0 7.74 Hp Ap(Si-Cr) +86658 V0867 Ara EW 7.40 0 7.60 7.57 V 52764.7376 0.4937123 A0/A1IV +87302 V0868 Ara BE 7.57 0 7.63 Hp 22.568 B6Vne +88491 V0869 Ara LC 7.64 0 7.83 Hp M2Ib/II +88853 V0870 Ara EW 9.00 0 9.40 9.40 Hp 52031.780 0.399773 F8 +81650 V0872 Ara GDOR: 6.37 0 6.39 Hp 0.4266 +83603 V0873 Ara ACYG 7.17 0 7.23 Hp 3.08 +81604 V0882 Ara EA 7.61 0 7.80 7.77 V 48180.587 20.9659 03 A2IV +85792 α Ara BE 2.79 0 3.13 b 0.9807 B2Vne +85079 ι Ara BE 5.18 0 5.26 V 0.5565 B2IIIne +10576 R Ari M 7.1 0 14.3 V 53640. 185.67 47 M3e-M6e +13092 T Ari M 7.3 0 11.5 V 52600. 340. 49 M6e-M8e +10472 V Ari SRC 8.45 0 8.90 V 58.7 C5II +14601 X Ari RRAB 8.97 0 9.95 V 52894.804 0.6511628 13 A8-F4 +8993 RR Ari CST: 5.76 0 V K0III +13654 RZ Ari SRB 5.45 0 6.01 V 56.5 M6III +14893 SX Ari SXARI 5.75 0 5.81 V 0.727902 B9pSi +11678 UU Ari DSCTC 6.10 0 6.15 V 0.0676 A9V +12832 UV Ari DSCTC 5.18 0 5.22 V 0.0355 A7III-IV +14514 UW Ari CST: 6.11 0 V B1.5V +16042 UX Ari RS 6.36 0 6.70 V G5V+K0IV +8619 VV Ari DSCTC 6.69 0 6.73 V 0.0764 F0III +11390 VW Ari DSCT 6.64 0 6.76 V 0.1606 F0IV +12781 VX Ari UV 11.2 0 12.14 B M3.5Ve +13118 VY Ari RS 6.68 0 7.15 V 16.1996 K3-4IV-V +13121 VZ Ari ACV 5.82 0 5.89 V A0V +14610 WZ Ari RS 8.17 0 8.25 V 6.5870 G4V+G6V +15506 XX Ari ACV 7.33 0 7.42 V 2.4997 B9VSiCr +8968 ZZ Ari SRB 8.14 0 8.47 V 98. M2 +9619 AA Ari RV: 8.53 0 8.77 V 53586.9 67.1 K7 +9796 AB Ari LB: 9.00 0 9.20 V M0 +9963 AC Ari SRB 7.08 0 7.28 V 32. M1 +10701 AD Ari EB 7.40 0 7.47 7.4 V 53330.654 0.53972 F0 +10964 AE Ari LB 7.4 0 7.8 V +11035 AF Ari EA: 6.71 0 6.99 Hp 48081.59 G2IV +11369 AG Ari EA 8.14 0 8.42 8.3 V 48500.2720 1.96315 B9 +11982 AH Ari LB: 8.26 0 8.40 V K5 +12017 AI Ari SRB 10.0 0 10.6 V 41.4 M5 +12468 AK Ari LB: 7.87 0 8.02 V M1 +12657 AL Ari EA 9.23 0 9.77 9.4 V 52892.849 3.747457 06 F8 +12731 AM Ari SRB 7.18 0 7.38 V 55. M1 +13461 AN Ari SRS 9.10 0 9.42 V 26.4 M2 +13645 AO Ari LB: 6.81 0 6.93 Hp M0 +13801 AP Ari BY: 9.90 0 10.06 Hp K0V +14433 AQ Ari SRS: 7.14 0 7.27 Hp 4.17 M1III +15361 AR Ari DSCT 7.87 0 7.98 Hp 0.1770392 F0 +15939 AS Ari LB: 7.86 0 8.02 Hp M1 +16071 AT Ari SRS: 8.06 0 8.17 Hp 7.64 K5 +10013 AU Ari SRS 8.44 0 8.55 V 6.1236 M0 +10155 AV Ari SRS 5.67 0 5.74 V 5.0320 M3III +12600 AY Ari SRD: 6.82 1 0.02 V K0IV +10218 AZ Ari BY 7.33 1 0.02 V 8.98 G5V +13081 BC Ari BY 7.56 1 0.02 V K1V +13806 BW Ari BY 8.90 1 0.03 V 9.57 G5 +16090 CK Ari RS 11.04 0 11.17 * 10.0933 M0.5V +8832 γ Ari ACV 4.62 1 0.04 V 2.6095 A1pSrCrEu +24645 R Aur M 6.7 0 14.0 V 54040. 450. 51 M6.5e-M9.5e +30449 V Aur M 8.5 0 13.0 V 54699. 349. 54 C6,2e(N3e) +29441 X Aur M 7.8 0 13.8 V 54858. 165.5 50 M3e-M7e +25642 Y Aur DCEP 9.16 0 10.02 V 48164.755 3.8594076 33 F5-F9 +28714 RS Aur SR 8.7 0 11.7 V 173. 47 M4e-M6e +30827 RT Aur DCEP 5.00 0 5.82 V 54153.880 3.728485 25 F4Ib-G1Ib +26675 RU Aur M 8.0 0 16.0 V 54782. 463.0 42 M7e-M9e +31379 RV Aur SRB 11.8 0 13.1 p 229. C4,5 +23873 RW Aur IT 9.2 0 12.5 V G5Vep +23360 RX Aur DCEP 7.28 0 8.02 V 48503.159 11.626 49 F6-G2 +22925 SU Aur INT 8.9 0 10.0 V G2III(Li) +24201 SX Aur EB 8.38 0 9.14 8.87 V 52500.3179 1.2100855 B3V+B5V +24281 SY Aur DCEP 8.74 0 9.40 V 48164.95 10.14465 50 F5-F8 +31484 TU Aur SRB 7.60 0 8.30 Hp 156. M5III +23965 TX Aur LB 8.5 0 9.2 V C5,4(N3) +34743 TZ Aur RRAB 11.08 0 12.45 V 53751.356 0.39167475 14 A9-F7 +31579 UU Aur SRB 4.9 0 7.0 V 441. C5,3-C7,4(N3) +25050 UV Aur M 7.4 0 10.7 V 54821. 392.8 C6,2-C8,2Jep(Ne) +33450 UW Aur SRA 9.5 0 11.6 V 42800. 560.7 55 C4,5J(R6p/N3) +24549 UX Aur SRC 8.4 0 9.2 V 90. M4II +24476 UZ Aur SRB 9.7 0 10.8 p 69. M3-M4III +36314 VX Aur M 8.0 0 13.1 V 54467. 325.8 M5e +31173 WW Aur EA 5.86 0 6.54 6.43 V 52501.8139 2.52501936 10 A4m+A5m +24500 YZ Aur DCEP 9.94 0 10.93 V 43816.417 18.192830 30 F5-G2 +22910 AB Aur INA 6.3 0 8.4 V A0Ve+sh +25672 AD Aur SRB 11.0 0 13.1 p 162.3 M6 +24575 AE Aur INA 5.78 0 6.08 V O9.5V +30618 AH Aur EW 10.18 1 0.50 0.50 V 52500.3848 0.4941067 F7V +23210 AN Aur DCEP 10.11 0 10.83 V 51536.715 10.289381 52 F6-F9 +24740 AR Aur EA 6.15 0 6.82 6.70 V 52501.392 4.134651 07 B9p+B9(Hg-Mn) +22796 AU Aur M 10.0 0 14.0 V 54521. 400.5 50 C6-7,3e(N0e) +23657 BF Aur EB 8.70 0 9.48 9.48 V 52500.950 1.5832232 B5V+B5V +24226 BH Aur RRAB 11.12 0 12.20 V 53755.264 0.4560898 17 +24105 BK Aur DCEP 9.12 0 9.90 V 42825.384 8.002432 31 G2 +28715 CQ Aur EA/RS 9.04 0 9.37 9.14 V 43814.05 10.62251 14 G8IV+F5V +33368 CX Aur LB: 11.7 0 12.3 p K8V +23520 EL Aur LB 8.9 0 9.6 V C5,4(N3) +24744 EO Aur EA 7.56 0 8.13 7.89 V 52500.255 4.0656497 12 B3V+B3V +27398 FU Aur LB 10.6 0 12.5 p C7,2(N0) +26619 HH Aur CST: 8.54 0 V G6IV +32900 HS Aur EA 10.16 0 10.90 10.70 V 46105.6419 9.815377 03 G8V+G8V +23733 HZ Aur ACV 7.02 0 7.13 V 6.43000 B9pSiCr +24799 IQ Aur ACV 5.35 0 5.43 V 2.4660 22 B9VpSi +25565 IU Aur EB 8.19 0 8.89 8.74 V 38448.4068 1.81147435 B0p+B1Vp +24504 KW Aur DSCTC+ELL 4.95 0 5.08 V 0.088088 A9IV +25733 LY Aur EB 6.66 0 7.35 7.23 V 52501.836 4.002494 O9.5+O9.5III +24938 MZ Aur BE 8.14 0 8.30 Hp B2Vnpea +26718 NO Aur LC 6.06 0 6.44 V M2SIab +33643 NY Aur ACV 6.56 0 6.73 V 5.4379 A0pEuSrCr +33041 OX Aur DSCT 5.94 0 6.14 V 0.154412 F2IV +24738 PU Aur LB: 5.55 0 5.78 V M4III +29565 QR Aur ACV 7.19 0 7.21 Hp 16.990 A0pEuSrCr +34603 QY Aur UV 10.9 0 13.19 B M5Ve+M5Ve +22670 V0346 Aur LB: 8.43 0 8.72 Hp 365. SC5/9 +24815 V0348 Aur LB 12.0 0 13. p C6,3(N) +33269 V0352 Aur DSCTC 6.13 0 6.18 V 0.17 F1IV +25500 V0362 Aur LC 7.29 0 7.73 V M1.5Iab-Ib +31695 V0382 Aur SRD: 9.00 0 9.12 V F7IVwe +24488 V0390 Aur BY:+UV: 6.92 0 6.99 V 9.8 G5III +28930 V0394 Aur SRC 6.01 0 6.11 V 32.896 M3II +29793 V0395 Aur ELL 7.34 0 7.43 V 43978.905 23.1755 F5III+B8V +23783 V0398 Aur GDOR 4.93 0 5.03 V 1.25804 F0V +23433 V0402 Aur EW 8.84 0 8.98 8.98 V 54115.520 0.6034956 F2 +28162 V0403 Aur RS 6.49 0 6.68 V 73.1 G8III +29911 V0406 Aur EA 7.47 0 7.58 7.57 V 46770.690 5.46414 07 A3 +22863 V0407 Aur LB: 8.10 0 8.25 Hp M1 +22928 V0408 Aur LC 7.36 0 7.47 Hp M0Ib +23013 V0409 Aur SRD: 8.76 0 8.93 Hp 48532.31 58.19 F8 +23337 V0410 Aur EW 10.10 0 10.45 Hp 54783.884 0.3663612 G0 +23608 V0411 Aur LB: 8.24 0 8.35 Hp M0 +23947 V0412 Aur LB: 8.45 0 8.70 Hp M6III: +24029 V0413 Aur BE 7.95 0 8.33 Hp B1Ve +24118 V0414 Aur BE 8.20 0 8.30 Hp B2Vne +24238 V0415 Aur BE 7.80 0 7.87 Hp B2:V:nne +24326 V0416 Aur GCAS: 7.23 0 7.48 Hp B2V:pe +24350 V0417 Aur EA 7.92 0 8.15 8.08 Hp 48500.5262 1.86553 13 A0 +24481 V0418 Aur LB: 8.39 0 8.49 Hp K0 +24892 V0419 Aur LB: 7.32 0 7.42 Hp M3 +25114 V0420 Aur BE 7.42 0 7.53 Hp B0IVpe +25203 V0421 Aur LB 7.84 0 8.01 Hp M0 +25224 V0422 Aur BY: 11.73 0 12.04 Hp K5 +25178 V0423 Aur LPB: 8.63 0 8.79 Hp B8 +25252 V0424 Aur EB 8.31 0 8.48 8.44 Hp 48500.154 1.8370 B9 +25284 V0425 Aur EB 7.62 0 7.90 7.84 Hp 48500.8290 1.568583 B5 +25599 V0426 Aur EB 10.55 0 10.76 10.66 Hp 52925.5394 1.419094 B3V +25801 V0427 Aur LB 7.52 0 7.65 Hp K5 +25877 V0428 Aur RV 6.74 0 7.26 Hp 48526.89 89.20 K5 +25996 V0429 Aur LB: 8.61 0 8.71 Hp K0 +26128 V0430 Aur SRC 6.89 0 7.02 Hp 48636. 410. M2II +26354 V0431 Aur BE: 8.97 0 9.29 Hp 16.86 B5e +26434 V0432 Aur EA 7.98 0 8.40 V 51571.4123 3.08175 09 G0 +26606 V0433 Aur LPB: 6.02 0 6.06 Hp 4.6382 B2IV-V +26872 V0434 Aur BE 7.16 0 7.30 Hp B3Vne +26845 V0435 Aur BE 8.91 0 9.02 Hp B3e +27144 V0436 Aur LB: 8.27 0 8.44 Hp K5 +27469 V0437 Aur EA 8.42 0 9.00 Hp 48500.101 3.3638 B9 +27459 V0438 Aur GCAS 8.03 0 8.14 Hp B3:pe:shell +27591 V0439 Aur LB: 7.45 0 7.54 Hp K5 +27661 V0440 Aur LB: 6.24 0 6.37 Hp M3III +28023 V0441 Aur SR: 7.38 0 7.50 Hp M0 +28151 V0442 Aur SR: 7.04 0 7.39 Hp M5 +28283 V0443 Aur LB 8.33 0 8.64 Hp M2 +28499 V0444 Aur ACV 5.70 0 5.74 Hp 14.368 B9.5pSiFe +28628 V0445 Aur LPB 8.36 0 8.44 Hp 2.27366 B8 +28701 V0446 Aur LB 8.45 0 8.65 Hp M5 +28783 V0447 Aur BE 7.17 0 7.31 Hp B3Ve +28851 V0448 Aur LPB 8.49 0 8.56 Hp 4.0420 B9 +29108 V0449 Aur EB 7.46 0 7.58 7.53 Hp 52500.5934 0.70366366 A0 +29198 V0450 Aur SR: 7.94 0 8.10 Hp K7 +29352 V0451 Aur LPB 7.74 0 7.80 Hp 2.63323 B8 +29901 V0452 Aur LB: 6.77 0 6.87 Hp K2 +30227 V0453 Aur SR: 7.71 0 8.22 Hp M3 +30270 V0454 Aur EA 7.74 0 8.17 Hp 48502.21 27.027 F8 +30878 V0455 Aur EA 7.33 0 7.64 7.64 Hp 47931.70 3.14578 F2 +30822 V0456 Aur DSCTC 7.88 0 7.95 Hp 0.138657 F0 +31027 V0457 Aur LB: 8.84 0 8.94 Hp M0 +31255 V0458 Aur LB 7.53 0 7.65 Hp M5 +31485 V0459 Aur EB 7.68 0 8.12 7.96 Hp 48500.8270 1.062637 B8 +31719 V0460 Aur LB: 7.57 0 7.87 Hp M5 +32495 V0461 Aur LB: 9.41 0 9.56 Hp K5 +33389 V0462 Aur EB: 8.13 0 8.30 8.30 Hp 48500.7417 1.75680 A0 +34778 V0463 Aur ACV: 6.86 0 6.92 Hp 0.804150 A0 +22776 V0536 Aur BY 7.77 1 0.03 V 7.878 G5Ve +26779 V0538 Aur BY 6.34 0 6.38 Hp 10.86 K1Ve +32263 V0553 Aur GDOR 7.53 0 7.58 Hp 1.1505 F0 +22979 V0560 Aur EA 9.07 0 9.20 9.18 V 48181.925 1.528311 12 A0 +21697 V0584 Aur RS 9.9 1 0.07 V 0.7333 K2 +26658 V0617 Aur EB 8.03 0 8.21 8.13 V 48013.1 66.76 F5II+Be +28360 β Aur EA 1.89 0 1.98 1.98 V 52500.573 3.960036 06 A2IV+A2IV +23416 ε Aur EA 2.92 0 3.88 V 45513. 9884. 08 A8Iab: +23453 ζ Aur EA 3.70 0 3.97 V 52968.7941 972.150912 04 K5Ib-II+B6.5IV-V +28380 tet Aur ACV 2.62 0 2.70 V 3.6186 B9.5p(Si) +28404 Ï€ Aur LC 4.24 0 4.34 V M3.5II +71490 R Boo M 6.0 0 13.3 V 55029. 223.11 45 M3e-M8e +70291 S Boo M 7.4 0 14.0 V 55035. 269.88 47 M3e-M6e +70885 V Boo SR 7.0 0 12.0 V 257. 48 M6e +71995 W Boo SRB 4.49 0 5.4 V 25. M2-M4III +70224 Y Boo CST: 7.94 0 V K0III +72300 RR Boo M 8.2 0 15.0 V 54929. 194.0 48 M2e-M6e +71186 RS Boo RRAB 9.63 0 10.88 V 48500.3370 0.377339 17 A7-F5 +74802 RT Boo M 8.2 0 14.0 V 54873. 275.5 49 M6.5e-M8e +71644 RV Boo SRB 7.0 0 9.0 V 144. M5e-M7e +71802 RW Boo SRB 7.2 0 8.7 V 209. M5 +70401 RX Boo SRB 6.43 0 9.1 V 162.3 M6.5e-M8IIIe +72528 RY Boo CST: 7.12 0 7.16 V F5III-IV +74509 SS Boo EA/RS 10.28 0 10.95 0.1 V 52501.03 7.606146 10 G0V+K1IV +75942 ST Boo RRAB 10.28 0 11.54 V 48500.1722 0.622286 15 A7-F7 +69759 TV Boo RRC 10.71 0 11.30 V 51308.71 0.3125609 36 A7-F2 +72115 TW Boo RRAB 10.63 0 11.68 V 51559.98 0.5322715 13 F0-F9 +74061 TZ Boo EW 10.45 0 11.00 10.82 V 54961.423 0.2971613 G2V +70259 UV Boo CST: 8.13 0 V F5V +68292 UY Boo RRAB 10.23 0 11.40 V 53575.517 0.6508964 16 A8-F0 +69826 VW Boo EW 10.42 0 11.11 10.93 V 52500.0099 0.3423147 G5 +67431 XY Boo EW 10.29 0 10.76 10.73 V 52500.4721 0.3705754 F5V +75373 YZ Boo DSCT 10.30 0 10.80 V 48500.0030 0.1040920 31 A6-F1 +68064 ZZ Boo EA 6.79 0 7.44 7.44 V 52502.9212 4.9917633 06 F2V +73103 AC Boo EW 10.14 0 10.67 10.67 V 52500.3020 0.3524485 F8Vn +72342 AE Boo RRC 10.44 0 10.88 V 52861.512 0.3148958 45 F2 +76957 BP Boo ACV 5.34 1 0.02 U 1.30488 B9pSiCr +71487 BW Boo EA 7.13 0 7.46 7.17 V 52501.026 3.332816 06 F0V +73454 BX Boo ACV 6.33 0 6.41 V 2.88813 B9VpSiCrSr +69038 BY Boo LB: 4.98 0 5.33 V M4-4.5III +66538 BZ Boo DSCTC: 8.20 1 0.03 V 0.1329 A5 +72944 CE Boo UV 11.35 0 11.68 B M2Ve+M8Ve +69068 CF Boo LB 5.29 0 5.38 Hp M2IIIab +71280 CH Boo LB: 5.83 0 5.87 Hp M1IIIab +70236 CI Boo LB 6.23 0 6.57 Hp M3III +71319 CK Boo EW 8.95 0 9.25 9.22 V 52500.029 0.3551522 F8 +71168 CP Boo DSCTC: 6.89 1 0.02 B F8IV +69829 CY Boo SRB 5.74 0 5.90 V 23. M3III +72848 DE Boo RS 5.97 0 6.04 V 10.39 K2V +66496 DH Boo LB: 7.90 0 8.24 Hp M4 +66899 DI Boo LB 7.31 0 7.42 Hp M0 +67010 DK Boo LB 8.02 0 8.77 Hp K5 +67325 DL Boo LB 7.58 0 7.80 Hp K5 +67449 DM Boo NL: 8.73 0 8.94 Hp G5 +67657 DN Boo EW 11.03 0 11.32 11.28 V 53803.760 0.4475667 G0 +67917 DO Boo LB: 8.82 0 9.25 Hp M5 +68913 DP Boo LB: 6.53 0 6.69 Hp M1 +69405 DQ Boo BY: 9.30 0 9.42 Hp K0 +69695 DR Boo LB 8.06 0 8.60 Hp K0 +69712 DS Boo LB 8.74 0 8.94 Hp M2 +70198 DT Boo ISB 8.42 0 8.86 Hp M5 +70240 DU Boo EB 8.48 0 9.02 8.86 V 52500.033 1.055889 A2 +70287 DV Boo EA 7.53 0 7.76 7.69 V 48045.254 3.78264 06 A2 +70621 DW Boo EB: 7.36 0 7.45 7.43 V 55048.523 0.9244464 A0 +70800 DX Boo LB 6.67 0 6.76 V M1III +70876 DY Boo LB 9.26 0 9.47 Hp M2 +70902 DZ Boo LB: 8.68 0 8.89 V K5 +70999 EE Boo LB 8.49 0 8.69 Hp K5 +71107 EF Boo EW/RS 9.23 0 9.83 9.78 V 52500.2231 0.4205161 G5 +71712 EG Boo LB: 7.96 0 8.06 Hp K5 +71900 EH Boo LB 7.28 0 7.50 Hp M2 +71965 EI Boo SRD 8.89 0 9.11 Hp 35.32 K0 +72208 EK Boo LB: 5.33 0 5.71 Hp M5IIIab +72391 EL Boo EW 9.20 0 9.43 9.42 V 54633.625 0.4137642 F8 +72426 EM Boo EA 8.98 0 9.32 9.23 V 52736.755 2.446228 13 G5 +72637 EN Boo LB: 7.67 0 7.85 Hp M1 +72689 EO Boo LB: 8.45 0 8.60 Hp M2III +72680 EP Boo LB: 9.56 0 9.68 Hp M0 +72757 EQ Boo EA 8.80 0 9.20 9.11 V 47931.794 5.43536 04 G5 +72838 ER Boo LB: 9.89 0 10.02 Hp M0 +73034 ES Boo LB: 8.53 0 8.64 Hp M0 +73346 ET Boo EB 9.14 0 9.50 9.40 Hp 54982.456 0.6450412 F8 +73378 EU Boo LB: 10.09 0 10.25 Hp M0 +73589 EV Boo LB 6.42 0 6.61 Hp M5 +73612 EW Boo EA 10.31 0 10.69 10.34 Hp 52500.229 0.9063492 20 A0 +73662 EX Boo SRB 9.4 0 10.0 V 52. M5 +73643 EY Boo LB: 9.46 0 9.72 Hp M5 +74214 EZ Boo SRB 9.72 0 9.88 V 195. M2 +74253 FF Boo LB: 6.93 0 7.02 Hp M2.5III +74337 FG Boo LB 7.35 0 8.06 Hp M0 +74440 FH Boo LB: 9.18 0 9.35 Hp M0 +75203 FI Boo EW 9.55 0 9.68 9.66 V 52500.337 0.390001 G3V +75641 FK Boo LPB 7.79 0 7.83 Hp 1.5129 B9 +75720 FL Boo LB: 9.40 0 9.55 Hp K0 +76036 FM Boo LB: 10.65 0 10.83 Hp M0 +76042 FN Boo BY: 10.47 0 10.76 Hp K6 +76684 FO Boo LB: 7.65 0 7.76 Hp M1 +76970 FP Boo EW 10.14 0 10.44 10.38 Hp 52500.311 0.640458 A5 +67481 FQ Boo DSCTC 6.59 1 0.02 V 0.049 A2V +68660 FR Boo RS 9.26 0 9.30 B 96. K3III +68879 FZ Boo LB: 7.62 0 7.72 V M0III +69410 GY Boo BY 8.88 1 0.03 V 9.52 K0V +70142 GZ Boo BY 8.90 1 0.04 V 7.52 K2V +70826 HK Boo RS 8.43 1 0.09 V 17.62 G5IVe +70828 HL Boo EA: 7.61 1 0.03 V 51327.5 26.68 15 K0 +70836 HM Boo E:/RS 9.17 1 0.02 V 51339. 21.84 K3V +71395 HN Boo BY 7.48 1 0.04 V 11.54 K0V +72200 HO Boo BY 7.98 1 0.02 V 93. K2V +72567 HP Boo BY 5.98 0 6.01 Hp 7.85 G2V +71075 γ Boo DSCTC 3.02 0 3.07 V 0.2903137 A7III +69713 ι Boo DSCTC 4.73 0 4.78 V 0.027 A7V +72659 χ Boo BY 4.52 0 4.67 V 10.137 G8Ve+K4Ve +73695 i Boo EW 4.70 0 4.86 4.84 V 52500.1807 0.2678190 G2V+G2V +21766 R Cae M 6.7 0 13.7 V 40645. 390.95 41 M6e +22247 T Cae SR 9.0 0 10.8 p 27840. 156. C6,4(N4) +23596 X Cae DSCTC 6.28 0 6.39 V 39395.570 0.1352227 50 F1III-F2IV +22674 Z Cae SR 7.84 0 7.99 V 40667. 52. M2III +20665 RT Cae EW: 10.00 0 10.21 Hp +20670 RU Cae SRB 8.08 0 8.24 Hp +20856 RV Cae LB 6.44 0 6.56 Hp +20961 RW Cae SRB: 8.81 0 8.91 Hp +21063 RX Cae DSCTC 7.07 0 7.16 Hp +21190 RY Cae LB: 8.38 0 8.48 Hp +21213 RZ Cae EA: 7.68 0 7.82 Hp +21339 SS Cae LB: 8.23 0 8.33 Hp +22837 ST Cae LB: 9.29 0 9.46 Hp +22912 SU Cae LC: 8.51 0 8.71 Hp +23321 SV Cae SRB 7.74 0 7.86 Hp +26753 S Cam SRA 7.7 0 11.6 V 43360. 327.26 51 C7,3e(R8e) +17257 U Cam SRB 11.0 0 12.8 p 43060. C3,9-C6,4e(N5) +22127 X Cam M 7.4 0 14.2 V 44679. 143.56 49 K8-M8e +37440 Y Cam EA+DSCTC 10.50 0 12.24 10.60 V 42961.9275 3.3056244 16 A8V +26247 RR Cam SRA 9.5 0 11.3 V 37750. 123.88 44 M6 +43438 RS Cam SRB 7.9 0 9.7 V 27143. 88.6 45 M4III +35681 RU Cam CWA 8.10 0 9.79 V 22. 35 C0,1-C3,2e(K0-R0 +21046 RV Cam SRB 9.3 0 10.6 p 28861. 101. M4II-III-M6 +18260 RW Cam DCEP 8.20 0 9.10 V 37389.57 16.41437 34 F8Ib(F5-G1)+A: +19057 RX Cam DCEP 7.30 0 8.07 V 42766.583 7.912024 28 F6Ib-G2Ib +21059 RY Cam SRB 8.9 0 11.0 p 39238. 135.75 M3III +35197 SS Cam EA/SD/RS 10.05 0 10.62 10.35 V 35223.672 4.8242541 20 G1III+F5V +22552 ST Cam SRB 9.2 0 12.0 p 300. C5,4(N5) +32015 SV Cam EA/DW/RS 8.40 1 0.71 0.15 V 42594.6151 0.59306995 17 G5V+G3V +19270 SZ Cam EA/DM 7.0 0 7.29 7.24 B 41665.2516 2.6985439 17 O9.5V+B0 +27971 TU Cam EB/DM 5.12 0 5.29 5.22 V 38051.375 2.933241 A0IV-V +19115 UV Cam SRB 7.5 0 8.1 V 294. C5,3(R8) +39009 UY Cam RRC 11.33 0 11.66 V 35565.239 0.26704234 45 A3III-A6III +36547 VZ Cam SR 4.80 0 4.96 V 23.7 M4IIIa +19340 XX Cam RCB: 8.09 0 9.8 B G1I(C0-2,0) +20027 ZZ Cam LB 8.7 0 9.3 p M0-M5 +35045 AA Cam LB 9.0 0 9.6 p M5(S) +25740 AS Cam EA/DM 8.57 0 9.19 8.97 V 40204.5137 3.4309714 08 B8V+B9 +32549 AW Cam EB/KE 8.22 0 8.66 8.36 V 38738.452 0.7713468 A0V +39261 AX Cam ACV 5.95 0 6.08 V 41701.41 8.0278 40 A2p(Sr-Cr-Eu) +37934 BC Cam ACV 6.43 0 6.48 V 41254.08 4.285 F0p(Sr-Cr-Eu) +17296 BD Cam LB 5.04 0 5.17 V S5,3(M4III) +17884 BE Cam LC 4.35 0 4.48 V M2II +15520 BK Cam GCAS 4.78 0 4.89 V B2Ve +23743 BM Cam RS 6.18 1 0.14 V 44288.8 82.8 K0III +24254 BN Cam ACV 5.3 1 0.05 V 41252.91 0.7325 A0p(Si) +25156 BS Cam DSCTC 8.0 1 0.05 V +23734 BV Cam GCAS 5.08 1 0.07 V +16281 CE Cam ACYG 4.54 1 0.03 V +23768 CK Cam DCEP 7.19 0 7.80 V +24760 CL Cam RS 7.55 1 0.13 V +34101 CM Cam FKCOM 6.96 1 0.05 V +59504 CO Cam ELL 5.14 1 0.07 V +15321 CP Cam EB 10.75 0 11.23 Hp +15890 CQ Cam LC 5.15 0 5.27 Hp +16195 CR Cam BE: 8.22 0 8.53 Hp +16228 CS Cam ACYG: 4.29 0 4.34 Hp +16941 CT Cam BE 7.70 0 7.83 Hp +17333 CU Cam EA 7.94 0 8.18 Hp +17261 CV Cam EB 9.42 0 9.66 Hp +17361 CW Cam IA: 8.31 0 8.52 Hp +17590 CX Cam SRB: 7.79 0 7.97 Hp +18151 CY Cam LPB: 8.43 0 8.51 Hp +18593 CZ Cam * 9.52 0 9.72 Hp +18585 DD Cam EB 7.04 0 7.23 Hp +19008 DE Cam BE 8.16 0 8.33 Hp +19105 DF Cam SR: 9.01 0 9.35 Hp +19764 DG Cam LB: 8.34 0 8.47 Hp +20004 DH Cam ACV 6.70 0 6.74 Hp +20896 DI Cam EA 7.85 0 8.09 Hp +20779 DK Cam EA 7.60 0 7.71 Hp +21148 DL Cam BCEP: 5.81 0 5.85 Hp +21233 DM Cam LB 7.15 0 7.23 Hp +21913 DN Cam EW 8.28 0 8.74 Hp +22383 DO Cam SRB 6.91 0 7.25 Hp +22498 DP Cam E: 9.90 0 10.44 Hp +22795 DQ Cam E: 8.12 0 8.23 Hp +23033 DR Cam SRB 6.46 0 6.63 Hp +23440 DS Cam LB: 8.86 0 8.96 Hp +24390 DT Cam E: 8.17 0 8.23 Hp +24653 DU Cam SRB 8.60 0 9.18 Hp +24836 DV Cam EA 6.10 0 6.30 Hp +25233 DW Cam BY: 10.96 0 11.56 Hp +25229 DX Cam LB: 8.90 0 9.18 Hp +26758 DY Cam LB: 9.28 0 9.46 Hp +26517 DZ Cam LB: 8.49 0 8.62 Hp +27199 EE Cam DSCTC 7.78 0 7.86 Hp +27500 EF Cam LB: 8.85 0 8.96 Hp +28368 EG Cam BY: 10.30 0 10.54 Hp +28583 EH Cam LB: 9.41 0 9.59 Hp +28607 EI Cam LB: 7.12 0 7.16 Hp +29436 EK Cam LB: 8.74 0 8.84 Hp +30785 EL Cam LB: 9.03 0 9.60 Hp +31174 EM Cam LB: 9.13 0 9.31 Hp +31259 EN Cam ACV: 8.99 0 9.04 Hp +32085 EO Cam SRB 8.88 0 9.23 Hp +32647 EP Cam SRB 7.61 0 7.86 Hp +32653 EQ Cam SRB 7.94 0 8.08 Hp +33573 ER Cam LB: 9.04 0 9.16 Hp +34641 ES Cam LB 8.72 0 8.90 Hp +35200 ET Cam LB: 9.51 0 9.63 Hp +35247 EU Cam SRB 9.24 0 9.54 Hp +35690 EV Cam ACV: 6.95 0 6.99 Hp +36213 EW Cam RRAB 9.33 0 9.83 Hp +36578 EX Cam LB: 7.24 0 7.34 Hp +36945 EY Cam SRB: 8.52 0 8.80 Hp +36983 EZ Cam SRB 7.17 0 7.31 Hp +37961 FF Cam BE: 7.71 0 8.02 Hp +37595 FG Cam SRD 7.97 0 8.11 Hp +38900 FH Cam EW 6.91 0 6.97 Hp +38971 FI Cam LB: 8.88 0 9.00 Hp +39755 FK Cam SRB 8.90 0 9.38 Hp +43431 FL Cam LB 6.75 0 7.03 Hp +44943 FM Cam SRB: 9.07 0 9.29 Hp +46005 FN Cam EW 8.60 0 9.06 Hp +47833 FO Cam LB: 10.08 0 10.22 Hp +56328 FP Cam LB: 8.15 0 8.28 Hp +57923 FQ Cam LB: 9.36 0 9.53 Hp +58545 FR Cam LB 6.16 0 6.37 Hp +68832 FS Cam LB 8.81 0 8.99 Hp +19404 GQ Cam ACYG 8.13 0 8.20 Hp +16974 KZ Cam ACV 6.28 0 6.30 V +18012 MM Cam * 7.11 1 0.04 V K0III +21276 MS Cam BY 7.75 1 0.03 V 7.604 G0Ve +60725 MW Cam DSCT 9.25 0 9.36 Hp 0.132792 F0 +40534 R Cnc M 6.07 0 11.8 V 44231. 361.60 47 M6e-M9e +42853 S Cnc EA/DS 8.29 0 10.25 8.39 V 36985.029 9.4845516 08 B9V+G8IV +43905 T Cnc SRB 7.6 0 10.5 V 482. 35 C3,8-C5,5(R6-N6) +40977 V Cnc M 7.5 0 13.9 V 43485. 272.13 46 S0e-S7,9e +44995 W Cnc M 7.4 0 14.4 V 43896. 393.22 40 M6.5e-M9e +43811 X Cnc SRB 5.6 0 7.5 V 43631. 195. C5,4(N3) +41028 Z Cnc SRB 9.4 0 10.7 p 37026. 104. M6III +45058 RS Cnc SRC: 6.2 0 7.7 p 120. M6eIb-II(S) +44050 RT Cnc SRB 7.12 0 8.6 V 60. M5III +42303 RU Cnc EA/DS/RS 10.10 0 11.25 10.21 V 22650.720 10.172988 08 F9V:+G9V: +45709 RW Cnc RRAB 10.7 0 12.6 p 39556.314 0.547199 13 A5 +40388 RX Cnc SRB 9.2 0 11.3 p 120. M8 +42432 RZ Cnc EA/GS/RS 8.67 0 10.03 9.21 V 18702.531 21.642998 15 K2III+K4III +41936 TT Cnc RRAB 10.72 0 11.78 V 39944.367 0.5634494 18 A9-F4 +40351 TV Cnc M 9.5 2 14.5 V 52984. 263. M7 +39341 UU Cnc EB/GS 8.68 0 9.35 9.2 V 41072.03 96.71 K4III +42594 VZ Cnc DSCT 7.18 0 7.91 V 39897.4246 0.178363704 26 A7III-F2III +44349 WY Cnc EA/SD/RS 9.51 0 10.14 9.60 V 26352.3895 0.82937122 16 G5V +42917 BI Cnc ACV 5.58 0 5.71 V 41616.50 4.2359 A0p(Si-Cr) +39659 BL Cnc LB 5.97 0 6.04 V M3III +40240 BM Cnc ACV 5.53 0 5.65 V 39482.9 4.116 B9p(Si-Cr) +43575 BO Cnc LB: 5.9 0 6.37 V M3III +41400 BP Cnc SRB 5.41 0 5.75 V 40. M3III +42319 BR Cnc DSCTC 8.26 1 0.02 V 0.038 F0Vn +42485 BT Cnc DSCTC 6.66 1 0.06 V 0.10228 F0III +42705 BY Cnc DSCTC 7.91 1 0.01 V 0.058 A7Vn +41824 CU Cnc UV 10.9 0 13.9 U M5Ve +44862 CW Cnc LB 10.0 0 11.2 p M6 +41574 CX Cnc DSCTC 6.10 1 0.02 V 0.096 A5 +42600 EP Cnc DSCTC 6.76 1 0.03 V +41875 FI Cnc FKCOM 7.28 1 0.17 V +41951 FK Cnc BY: 7.94 1 0.03 V +42874 FL Cnc DSCTC 7.03 1 0.06 V +39297 FO Cnc LB: 8.60 0 8.77 Hp +41749 FQ Cnc SRB 8.40 0 8.62 Hp +41889 FR Cnc BY: 10.28 0 10.47 Hp +41978 FS Cnc LB: 8.60 0 8.81 Hp +42826 FT Cnc SRD 8.43 0 8.63 Hp +42921 FU Cnc SRB: 9.01 0 9.11 Hp +43199 FV Cnc UG: 10.44 0 10.62 Hp +43245 FW Cnc LB 6.91 0 7.05 Hp +43251 FX Cnc SRB 6.63 0 6.77 Hp +43967 FY Cnc SRB 8.71 0 8.97 Hp +44126 FZ Cnc SRB 6.28 0 6.38 Hp +44222 GG Cnc LB: 8.24 0 8.36 Hp +44530 GH Cnc SRB 7.59 0 7.72 Hp +44718 GI Cnc SRB 8.58 0 8.73 Hp +44773 GK Cnc LB: 9.10 0 9.20 Hp +45194 GL Cnc LB: 9.43 0 9.53 Hp +45295 GM Cnc LB: 8.61 0 8.73 Hp +45483 GN Cnc RR: 8.80 0 8.89 Hp +45597 GO Cnc EA 8.40 0 8.66 Hp +44303 HL Cnc BY 8.83 0 8.87 V +42253 HO Cnc BY 8.73 1 0.03 V 5.21 K5Ve +43422 HP Cnc BY 9.08 1 0.02 V 11.14 K0V +43670 II Cnc BY 8.46 1 0.05 V 8.19 G8V +43751 IK Cnc BY 8.32 1 0.03 V 9.45 G5V +45617 IP Cnc BY 7.20 1 0.02 V 43.4 K3V +40361 KP Cnc DSCTC 7.30 1 0.04 B 0.12 F2 +42753 KX Cnc EA 7.25 1 0.71 0.49 V 54182.8146 31.21985 01 F8 +44798 κ Cnc ACV: 5.22 0 5.27 V 39633.5 5.0035 B9IIIp(Hg-Mn) +67410 R CVn M 6.5 0 12.9 V 43586. 328.53 46 M5.5e-M9e +64488 S CVn CST 9.75 0 V K3III +61009 T CVn M: 7.6 0 12.6 V 42784. 290.09 42 M6.5e +65006 V CVn SRA 6.52 0 8.56 V 43929. 191.89 50 M4e-M6eIIIa: +68908 W CVn RRAB 10.03 0 10.96 V 21402.4238 0.551759337 15 F0-F7 +62223 Y CVn SRB 7.4 0 10.0 p 157. C5,4J(N3) +64293 RS CVn EA/AR/RS 7.93 0 9.14 8.19 V 22811.6995 4.7978870 11 F4IV-V+K0IVe +68357 RW CVn SRB 10.1 0 11.2 p 100. M7III +67087 RZ CVn RRAB 10.88 0 11.92 V 40343.851 0.5674110 17 A8 +67354 SS CVn RRAB 11.52 0 12.27 V 39622.705 0.4785210 15 A0 +68188 ST CVn RRC 11.04 0 11.60 V 40390.467 0.329045 43 A1 +64267 SY CVn LB 11. 0 12. p M8 +63389 TT CVn SRB 10.4 0 11.11 B 105. C3,5CH(R6p) +63024 TU CVn SRB 5.55 0 6.6 V 50. M5III +60564 UY CVn LB 10.6 0 11.8 p M5III +61029 UZ CVn RRAB 11.3 0 12.0 p 26427.3806 0.6977829 16 A5-F2 +65913 VY CVn LB 10.38 0 11.4 B M5 +66017 VZ CVn EA/DW 9.17 0 9.72 9.54 V 38880.5804 0.84246163 17 F2V +60467 AI CVn DSCT 5.89 0 6.15 V 0.2085 F3IV +64844 AO CVn DSCTC 4.70 0 4.75 V 44381.6675 0.12168 50 F3IIIp +67665 AW CVn SR: 4.72 0 4.81 V K5III +61748 AX CVn ACV 6.32 0 6.55 V 4900. A0p(Sr-Cr-Eu) +63253 BF CVn BY+UV: 10.50 0 10.60 V 3.17 M1.5Ve +66257 BH CVn RS 4.94 0 5.01 V 43639.52 2.6131738 F2IV +63701 BI CVn EW/KW 10.26 0 10.71 10.70 V 44365.2497 0.38416 G0 +64906 BK CVn ACV 5.13 1 0.04 V +64956 BL CVn ELL 8.13 1 0.24 V +65187 BM CVn RS 7.21 1 0.06 V +63368 BQ CVn RS 7.98 1 0.09 V +65309 BR CVn SRB 6.58 1 0.50 V +59136 BS CVn LB: 7.72 0 7.82 Hp +60384 BT CVn LB: 9.25 0 9.41 Hp +60477 BU CVn LB 7.90 0 8.20 Hp +61163 BV CVn LB 9.18 0 9.47 Hp +61186 BW CVn SRB 8.66 0 8.82 Hp +62097 BX CVn LB 7.65 0 7.97 Hp +62355 BY CVn LB 7.71 0 7.91 Hp +62891 BZ CVn LB 7.32 0 7.47 Hp +63360 CC CVn SRB: 7.92 0 8.13 Hp +63442 CD CVn LB: 9.48 0 9.64 Hp +63653 CE CVn LB 7.45 0 7.62 Hp +63706 CF CVn LB: 10.34 0 10.48 Hp +63850 CG CVn LB: 9.57 0 9.73 Hp +64508 CH CVn LB: 8.64 0 8.75 Hp +64528 CI CVn EA: 9.36 0 9.87 Hp +65296 CK CVn LB: 7.74 0 7.84 Hp +65376 CL CVn LB 6.10 0 6.20 Hp +65633 CM CVn LB: 8.89 0 9.03 Hp +65746 CN CVn LB: 9.54 0 9.69 Hp +65876 CO CVn LB 7.17 0 7.28 Hp +65953 CP CVn LB: 7.58 0 7.64 Hp +66124 CQ CVn LB: 8.19 0 8.29 Hp +66470 CR CVn SRB 7.55 0 7.68 Hp +66682 CS CVn LB: 9.13 0 9.25 Hp +67263 CT CVn LB 7.37 0 7.67 Hp +67357 CU CVn EW: 7.56 0 7.61 Hp +67662 CV CVn LB: 7.27 0 7.47 Hp +67803 CW CVn SRD 7.00 0 7.24 Hp +68384 CX CVn EA 9.39 0 9.69 Hp +68417 CY CVn LB 8.09 0 8.47 Hp +68904 CZ CVn LB: 7.69 0 7.83 Hp +60571 DD CVn GDOR 7.15 1 0.04 V +61481 DO CVn BY 8.52 1 0.02 V 8.73 K0V +61520 DP CVn BY: 8.58 1 0.07 V 14.21 G5III +62641 DT CVn DSCTC 6.04 1 0.03 B 0.114 A3V +63622 DW CVn BY: 8.12 1 0.04 V F8V +65380 EL CVn EA 9.42 0 9.59 9.50 V 48331.778 0.795629 10 A1V +35487 R CMa EA/SD 5.70 0 6.34 5.78 V 44289.361 1.1359405 15 F1V +34413 W CMa LB 6.35 0 7.9 V C6,3(N) +34042 Z CMa INA 8.8 0 11.2 p B8peq +33756 RV CMa LB 10.4 0 11.6 p M6 +34895 RW CMa DCEP 11.8 0 12.8 p 41042.22 5.729685 25 F5-G2 +35212 RY CMa DCEP 7.71 0 8.45 V 36416.937 4.67825 24 F6-G0Ib +35665 RZ CMa DCEP 9.36 0 9.97 V 36428.062 4.254832 28 F6 +36088 SS CMa DCEP 9.26 0 10.36 V 41109.19 12.361 45 F6-G2 +34431 SW CMa EA/DM 9.5 0 10.0 9.9 p 26706.177 10.091948 06 A8 +34527 TV CMa DCEP 10.16 0 10.96 V 40676.34 4.67001 29 F5-G2 +35708 TW CMa DCEP 9.28 0 9.93 V 39429.26 6.99507 31 F5-F8 +35412 UW CMa EB/KE: 4.84 0 5.33 5.25 V 36185.358 4.393407 O7Ia:fp+OB +34302 VV CMa CEP 12.2 0 12.8 p 26090.220 3.8627 +35793 VY CMa * 6.5 0 9.6 V M5eIbp(C6,3) +36125 VZ CMa DCEPS 9.15 0 9.60 V 26747.14 3.12640 43 +35865 BE CMa LB 11.0 0 12.3 p C5,5J(N) +34981 EW CMa GCAS 4.42 0 4.82 V B3IVe +33092 EY CMa BCEP 4.79 0 4.84 V 41296.1640 0.184557 50 B1III-IV +33165 EZ CMa WR 6.71 0 6.95 V 43200.47 3.763 WN5 +34646 FF CMa EB/KE 7.38 0 7.74 7.6 V 28847.465 1.213375 B2V+B2V +34221 FM CMa EB/DM 7.28 0 7.50 V 2.7888 B1V +34301 FN CMa BCEP 5.38 0 5.42 V 0.12377 B0III +30214 FR CMa GCAS 5.46 0 5.64 V B1Vpe +30800 FS CMa * 7.55 0 8.58 V B2IVep +32292 FT CMa GCAS 5.13 0 5.44 V B2Ve +33721 FU CMa GCAS 6.48 0 6.60 V B3IV-Vne +34360 FV CMa GCAS 5.64 0 5.94 V B2IV-Ve +35951 FW CMa GCAS 5.00 0 5.50 V B3Ve +36168 FY CMa GCAS 5.54 0 5.69 V B0IVpe +33953 FZ CMa EA/DM 8.05 0 8.44 8.44 V 41742.324 1.27306 16 B2.5IV-Vn +34937 GG CMa ELL+BCEP: 6.55 0 6.61 V B2IV +35746 GH CMa SRB 6.82 0 7.19 V 20. M6III +33868 GU CMa GCAS 6.49 0 6.72 V B2Vne +34924 GY CMa BCEP: 6.12 1 0.04 V 0.112 B0.5V +35187 GZ CMa EA/DM 8.1 0 8.7 p 38814.273 4.801052 07 A0 +33447 HH CMa BCEP 6.59 0 6.66 V 0.19 B2III +34852 HI CMa GCAS 7.8 1 0.4 p B2IIIe +32504 HK CMa ACV 6.06 0 6.09 Y 42818.88 2.181 B9p +34814 HN CMa DSCTC 6.61 1 0.02 V +34898 HO CMa E: 7.55 0 8.62 V +32385 HP CMa GCAS 5.48 0 5.80 V +35611 HQ CMa EA 6.01 0 6.27 V +31205 HR CMa EA/GS 6.24 0 6.32 V +32810 HZ CMa ELL 5.69 0 5.82 y +34248 IL CMa E+LPB: 6.32 0 6.54 V +29455 IO CMa EA 8.46 0 8.71 Hp +29488 IP CMa LPB 6.44 0 6.48 Hp +29474 IQ CMa EB 9.24 0 9.63 Hp +29604 IR CMa SRB 7.56 0 7.70 Hp +30174 IS CMa EW 6.96 0 7.44 Hp +30263 IT CMa LPB 7.82 0 7.86 Hp +30426 IU CMa ACV: 6.55 0 6.58 Hp +30409 IV CMa SRC 8.21 0 8.75 Hp +30583 IW CMa E: 6.88 0 6.96 Hp +30786 IX CMa EB 7.77 0 7.84 Hp +30840 IY CMa E: 5.64 0 5.72 Hp +30903 IZ CMa SRB 7.85 0 8.03 Hp +31008 KK CMa EB 8.17 0 8.26 Hp +31017 KL CMa EA 6.73 0 6.97 Hp +31086 KM CMa LB 6.24 0 6.50 Hp +31180 KN CMa SRD: 8.65 0 8.72 Hp +31296 KO CMa LB 8.06 0 8.48 Hp +32408 KP CMa LPB 7.58 0 7.63 Hp +32570 KQ CMa ACV 8.24 0 8.29 Hp +32671 KR CMa SRB 8.08 0 8.40 Hp +32696 KS CMa BE 7.25 0 7.37 Hp +32758 KT CMa E: 9.37 0 9.61 Hp +32815 KU CMa BE 7.93 0 8.10 Hp +32856 KV CMa E: 7.09 0 7.14 Hp +32937 KW CMa ACV 7.55 0 7.59 Hp +33040 KX CMa LB 6.07 0 6.37 Hp +33042 KY CMa LB 10.46 0 11.00 Hp +33119 KZ CMa BE 8.66 0 8.77 Hp +33200 LL CMa BE 7.36 0 7.64 Hp +33260 LM CMa ACYG: 8.64 0 8.70 Hp +33443 LN CMa LB: 9.15 0 9.26 Hp +33592 LO CMa SRB: 7.75 0 7.86 Hp +33676 LP CMa BE 9.20 0 9.31 Hp +33673 LQ CMa BE: 7.12 0 7.26 Hp +33778 LR CMa ACYG: 9.26 0 9.35 Hp +33804 LS CMa E: 5.57 0 5.60 Hp +34080 LT CMa EA 7.38 0 7.56 Hp +34161 LU CMa LB: 7.75 0 7.87 Hp +34287 LV CMa EB 8.65 0 8.83 Hp +34342 LW CMa SRB: 7.38 0 7.50 Hp +34448 LX CMa LB: 7.28 0 7.31 Hp +34569 LY CMa GCAS 8.99 0 9.27 Hp +34579 LZ CMa EB: 5.63 0 5.66 Hp +34798 MM CMa LPB 5.84 0 5.87 Hp +34986 MN CMa BE 9.53 0 9.70 Hp +35015 MO CMa I: 11.13 0 11.53 Hp +35036 MP CMa EB 8.30 0 8.48 Hp +35109 MQ CMa LB: 8.16 0 8.31 Hp +35156 MR CMa ACV 8.99 0 9.08 Hp +35168 MS CMa EA 7.08 0 7.20 Hp +35201 MT CMa LB: 8.23 0 8.35 Hp +35355 MU CMa BE: 8.94 0 9.04 Hp +35356 MV CMa EB 9.74 0 10.08 Hp +35407 MW CMa ACV 8.66 0 8.79 Hp +35461 MX CMa EB 6.74 0 6.81 Hp +35549 MY CMa LB: 10.49 0 10.76 Hp +35626 MZ CMa SRB 5.87 0 5.95 Hp +35769 NN CMa GCAS 7.05 0 7.30 Hp +35795 NO CMa BE: 5.33 0 5.38 Hp +35829 NP CMa BE 8.99 0 9.16 Hp +35926 NQ CMa BE: 9.81 0 10.12 Hp +36186 NR CMa DSCTC 5.67 0 5.70 Hp +32101 NZ CMa LPB 8.82 0 8.90 Hp +34561 OS CMa ACYG 6.04 0 6.07 Hp +32144 V0350 CMa GDOR 6.18 0 6.27 V +29568 V0352 CMa BY 6.37 0 6.40 V 7.2 G5V +30225 V0353 CMa BY 8.48 1 0.02 V K2V +31821 V0356 CMa BY: 8.44 1 0.02 V K1V +33274 V0377 CMa EA 7.88 0 7.98 7.98 V 48323.304 3.01351 04 B8III +33844 V0381 CMa EB 7.73 0 7.82 7.78 V 52942.804 3.37443 A2V +34262 V0388 CMa EA 8.25 0 8.43 8.34 V 53067.651 2.98260 05 B3V +35859 V0398 CMa EA 7.98 0 8.11 8.02 V 47912.729 2.198515 06 B9III +35370 V0422 CMa EA 8.91 0 9.07 8.95 V 51993.495 4.19184 05 B2IV/V +30324 β CMa BCEP 1.93 0 2.00 V 41296.175 0.25003 B1II-III +35904 η CMa ACYG 2.38 0 2.48 Hp +33347 ι CMa BCEP 4.36 0 4.40 V 0.08 B3II-III +32759 κ CMa GCAS 3.78 0 3.97 V B2Vne +33856 σ CMa LC 3.43 0 3.51 V K7Ib +35415 Ï„ CMa EB 4.32 0 4.37 Hp +35037 ω CMa GCAS 3.60 0 4.18 V B2IV-Ve +34474 R CMi M 7.25 0 11.6 V 41323. 337.78 48 C7,1Je(CSep) +36675 S CMi M 6.6 0 13.2 V 43911. 332.94 49 M6e-M8e +37459 U CMi M 8.0 0 14.0 V 43150. 413.88 52 M4e +38124 W CMi SRB 8.72 0 9.04 V 95. C7,2(R6) +37850 UX CMi SRA 10.2 0 11.6 p 26735. 150.5 M5 +37766 YZ CMi BY+UV 8.6 0 12.93 B 41355.178 2.780964 M4.5Ve +35915 ZZ CMi SR 10.2 0 11.9 p 28960. 500. M6I-IIep +35281 AA CMi RRAB 11.01 0 12.00 V 36576.435 0.47632310 20 A6 +38473 AD CMi DSCT 9.21 0 9.51 V 42429.4582 0.12297443 37 F0III-F3III +37705 AZ CMi DSCTC 6.44 0 6.51 V 40886.0713 0.09526 F0III +38361 BB CMi RRC 10.0 0 10.8 p 25644.400 0.396424 40 A5 +38406 BC CMi SRB 6.14 0 6.42 V 35. M5 +34463 BN CMi SRB: 7.01 0 7.10 Hp +35776 BO CMi * 8.07 0 8.36 Hp +36746 BP CMi SRB 6.77 0 6.91 Hp +36888 BQ CMi SRA: 7.69 0 7.90 Hp +37232 BR CMi ACV: 7.16 0 7.22 Hp +38807 BS CMi SRD: 7.80 0 7.89 Hp +38855 BT CMi BE 7.68 0 7.80 Hp +38945 BU CMi EA: 6.41 0 6.51 Hp +38987 BV CMi EA: 6.91 0 7.03 Hp +39635 BW CMi LB: 9.02 0 9.12 Hp +38138 DD CMi GDOR 7.50 0 7.57 Hp 0.713 F2 +39986 DE CMi DSCTC 7.96 1 0.06 B 0.088474 F0 +38581 DM CMi EA 8.13 0 8.22 8.20 V 48588.418 7.72461 03 A0V +36188 β CMi GCAS 2.84 0 2.92 V B8Ve +105498 T Cap M 8.4 0 14.3 V 39267. 269.28 44 M2e-M8.2 +104285 V Cap M 8.2 0 14.4 V 40395. 275.72 42 M5e-M8.2 +104252 RS Cap SRB 8.3 0 10.3 p 340. M4 +99990 RT Cap SRB 8.9 0 11.7 p 393. C6,4(N3) +103755 RV Cap RRAB 10.22 0 11.57 V 33883.262 0.44774401 A7-F4 +99765 TW Cap CWA 9.95 0 11.28 V 44073.10 28.6101 20 A5Ib-F4Ib +106653 UU Cap SRB 9.3 0 10.4 p 100. M4 +105285 YZ Cap RRC 11.02 0 11.60 V 43729.741 0.2734563 40 A5-A7 +106961 AD Cap E/RS 10.77 0 11.4 B 2.96000 G5+G5 +100154 AE Cap SR 9.0 0 11.1 B 200. M4 +107487 AG Cap SRB 5.90 0 6.14 V 25. M3III +101500 AK Cap LB 9.0 0 9.7 p M2 +103616 AO Cap ACV 6.2 1 0.05 V 2.25 B9p(Si) +107594 AP Cap ACV 7.60 0 7.65 V 42619.827 2.67 B9p(Si) +99333 AR Cap ACV 8.08 0 8.28 V +106497 AS Cap RS: 8.0 1 0.13 V +101098 AT Cap RS 8.87 0 9.18 V +99221 AV Cap ACV: 6.24 1 0.02 B +106255 BB Cap BY 11.96 0 11.99 V +99249 BC Cap SRB 8.13 0 8.37 Hp +99365 BD Cap DSCTC 7.51 0 7.57 Hp +99457 BE Cap BE: 6.16 0 6.43 V +100107 BF Cap EB 8.94 0 9.27 Hp +100234 BG Cap SRD: 8.92 0 9.04 Hp +100869 BH Cap EB: 8.03 0 8.16 Hp +101277 BI Cap LB: 9.64 0 9.79 Hp +101405 BK Cap LB: 8.78 0 8.90 Hp +102217 BL Cap RR: 7.38 0 7.45 Hp +102723 BM Cap E 9.16 0 9.42 Hp +105324 BN Cap IB: 8.15 0 8.54 Hp +106600 BO Cap LB: 8.07 0 8.19 Hp +106739 BP Cap LB 7.34 0 7.44 Hp +106764 BQ Cap EA 8.11 0 8.40 Hp +107530 BR Cap LB: 8.97 0 9.10 Hp +107845 BS Cap LB 7.72 0 7.82 Hp +108236 BT Cap SRB: 7.04 0 7.14 Hp +108274 BU Cap LB 7.70 0 7.95 Hp +108298 BV Cap LB 7.82 0 8.02 Hp +108494 BW Cap LB 6.07 0 6.19 Hp +107095 BY Cap RS 5.13 0 5.18 V +106985 γ Cap ACV 3.20 1 0.03 J +107556 δ Cap EA 2.81 0 3.05 2.90 V 35656.913 1.0227688 08 A7mIII +106723 ε Cap GCAS 4.48 0 4.72 V B3IV-Vpeq +105515 ι Cap BY 4.27 1 0.06 V +46806 R Car M 3.9 0 10.5 V 42000. 308.71 48 M4e-M8e +49751 S Car M 4.5 0 9.9 V 42112. 149.49 51 K5e-M6e +53394 T Car CST: 7.00 0 B K0III +53589 U Car DCEP 5.72 0 7.02 V 37320.055 38.7681 21 F6-G7Iab +41588 V Car DCEP 7.08 0 7.82 V 37454.023 6.69668 30 F6-G2Ib-II +41793 X Car EB/KE 7.90 0 8.65 8.6 V 28857.146 1.0826310 A0V+A0V +51653 Y Car DCEP(B) 7.53 0 8.48 V 41041.39 3.639760 29 F3 +52562 RT Car LC 8.2 0 9.9 V M2Ia-0 +45416 RU Car LB 10.9 0 12.1 p N3 +52661 SX Car DCEP 8.66 0 9.47 V 35074.336 4.8600 30 F5-G2Ib-II +52656 TZ Car SRB 10.2 0 11.9 p 69. R5 +51142 UW Car DCEP 8.98 0 9.86 V 34897.059 5.345773 28 G0 +51338 UX Car DCEP 7.81 0 8.67 V 34906.805 3.682246 26 F5-G1II +51909 UZ Car DCEP 9.00 0 9.62 V 34894.69 5.20466 29 G0 +52538 VY Car DCEP 6.87 0 8.05 V 10009.58 18.990 36 F6-G4Iab-Ib +53083 WW Car DCEP 9.35 0 10.11 V 34925.15 4.67681 28 F0 +53397 WZ Car DCEP 8.65 0 10.01 V 44143.17 23.0132 17 F8 +53536 XX Car DCEP 8.67 0 9.89 V 36221.730 15.71624 33 G0 +53945 XY Car DCEP 8.82 0 9.77 V 36190.230 12.43483 39 G5 +54101 XZ Car DCEP 8.05 0 9.13 V 36205.754 16.6499 37 K5 +51262 YZ Car DCEP 8.24 0 9.08 V 34907.04 18.1631 41 G5 +34310 AC Car SRB 9.1 0 10.3 p 99. M7III +53461 AG Car SDOR 7.1 0 9.0 p B0I-A2Ieq +50722 AQ Car DCEP 8.55 0 9.15 V 36188.449 9.76896 50 F8-G0Ib +53300 BZ Car SRC 8.9 0 10.8 p 97. M3Ib +50244 CN Car DCEP 10.24 0 11.00 V 34510.24 4.93261 30 +53593 CY Car DCEP 9.44 0 10.05 V 35069.355 4.26593 34 G0 +54543 ER Car DCEP 6.58 0 7.13 V 40277.88 7.71855 34 F8-G1Iab-Ib +50992 EX Car EA/SD 10.0 0 11.5 p 23997.641 1.396366 14 G0 +52380 EY Car DCEP 10.00 0 10.68 V 35067.004 2.87598 30 +53867 FN Car DCEP 11.16 0 11.85 V 34899.352 4.58569 40 +54891 FR Car DCEP 9.29 0 10.04 V 41048.5 10.71697 43 G5 +53444 GG Car EB/GS 9.1 0 9.5 9.5 p 29580.13 62.086 Beq +54621 GH Car DCEPS 9.00 0 9.35 V 35069.395 5.72557 44 G0 +54862 GI Car DCEPS 8.10 0 8.47 V 34924.602 4.43061 46 F3-F8Iab-Ib +48663 GX Car DCEP 8.94 0 9.77 V 40741.13 7.19673 29 F8II-K0 +50615 GZ Car DCEPS(B) 9.98 0 10.47 V 40742.6 4.15901 45 G5 +54066 HK Car DCEP 10.71 0 11.60 B 34535.35 6.69574 30 G5 +50843 HR Car SDOR 8.2 0 9.6 p B2eq +52157 HW Car DCEP 9.0 0 9.8 p 24404.94 9.2002 50 G2-3Ib-II +54715 IT Car DCEP 7.90 0 8.29 V 37299.766 7.53320 36 F8-K2Iab-Ib +52991 IX Car SRC 9.0 0 10.0 p 28900. 400. M2Iab +51576 PP Car GCAS 3.27 0 3.37 V B5Vne +51740 QS Car EA/DM 9.0 0 9.4 9.3 p 28656.315 9.3208 F2-F5 +54226 QU Car NL 11.4 1 0.7 V pec +48589 QX Car EA/DM 6.60 0 7.21 7.02 V 40701.3715 4.47804 06 B5V+B5V +49934 QY Car GCAS 5.63 0 5.83 V B2IVpne +52526 QZ Car EB 6.16 0 6.49 6.43 V 43192.4 5.9981 O9III +50371 V0337 Car LC 3.36 0 3.44 V K3II +38834 V0341 Car L 6.2 0 7.10 V M1-3II-III +42568 V0343 Car BCEP: 4.20 1 0.04 B B1.5III +43105 V0344 Car GCAS 4.4 0 4.51 V B3Vne +44626 V0345 Car GCAS 4.67 0 4.78 V B2Vne +50088 V0347 Car EA/DM 8.5 0 9.0 p 38474.425 5.72555 A3m +54572 V0353 Car GCAS 7.59 0 7.78 V B2Ve +120404 V0356 Car EA: 7.59 0 8.01 V B9.5IVp(Si) +45080 V0357 Car E: 3.41 0 3.44 V B2IV-V +52221 V0364 Car ACV 5.48 0 5.52 V 42428.81 1.668 B8IIIp(Si) +48761 V0367 Car EB/DM 7.49 0 7.59 7.54 V 42468.79 5.73 B6V +49926 V0368 Car LB: 6.1 0 6.40 V M5III +51676 V0369 Car ACYG 6.11 1 0.1 V B6eIa +52004 V0370 Car ACYG 5.45 0 5.52 V A0eIa +54461 V0371 Car ACYG 5.12 0 5.19 V B9.5eIa +38438 V0372 Car BCEP 5.69 1 0.02 V 0.1160 B2III +38994 V0374 Car GCAS 5.72 0 5.84 V B2IV-Vpne +39530 V0375 Car BCEP: 6.29 1 0.04 V B4Vn +43937 V0376 Car BCEPS 4.91 0 4.96 V 0.0208 B2IV-V +46224 V0377 Car EA/DM 8.05 0 8.34 V 2.242624 B4V +54463 V0382 Car DCEP: 3.84 0 4.02 V F8-G2Ia +33616 V0383 Car DSCTC 8.84 1 0.06 V Fm +54283 V0385 Car ELL:+WR 7.70 1 0.04 0.04 V 42000.0 4.762 WN8 +34105 V0386 Car ACV 5.16 1 0.02 V +34929 V0387 Car ACV 7.0 1 0.02 V +35692 V0388 Car ACV 7.94 1 0.03 V +35676 V0389 Car ACV 7.2 1 0.01 V +37248 V0390 Car ACV 6.06 1 0.00 V +48617 V0396 Car ELL 8.32 1 0.06 V +51109 V0398 Car E 9.69 1 0.03 V +51192 V0399 Car CEP 4.64 0 4.71 V +52059 V0407 Car ACV 6.71 0 6.74 V +36537 V0409 Car ACVO 9.1 1 0.03 B +54179 V0414 Car ACYG: 6.55 1 0.09 V +32761 V0415 Car EA/GS 4.39 1 0.06 V +48643 V0423 Car ACV 6.9 1 0.02 B +53274 V0428 Car E:/WR 10.7 1 0.05 V +52308 V0429 Car EA/WR 6.38 1 0.12 B +54266 V0430 Car BCEP: 6.68 1 0.03 V +54574 V0431 Car E/WR 8.09 1 0.02 B +30252 V0435 Car DSCTC 7.3 1 0.02 B +48619 V0437 Car ACVO 9.32 1 0.01 V +30546 V0444 Car LB: 8.07 0 8.30 Hp +31644 V0445 Car SRB 9.01 0 9.35 Hp +31664 V0446 Car LB: 8.72 0 8.84 Hp +32218 V0447 Car SRB 8.51 0 8.69 Hp +32531 V0448 Car SRD: 5.66 0 5.86 Hp +33063 V0449 Car SRD 9.03 0 9.18 Hp +34000 V0450 Car LPB 5.45 0 5.47 Hp +34122 V0451 Car SRB 8.83 0 9.12 Hp +34792 V0452 Car EA: 8.04 0 8.37 Hp +35979 V0453 Car EA: 11.32 0 12.19 Hp +36682 V0454 Car EB 6.92 0 7.10 Hp +37012 V0455 Car EA 8.33 0 8.55 Hp +37549 V0456 Car SXARI: 7.21 0 7.26 Hp +37555 V0457 Car LB: 8.41 0 8.51 Hp +37966 V0458 Car ACV: 6.85 0 6.92 Hp +38416 V0459 Car ACV 7.47 0 7.51 Hp +39070 V0460 Car LC 5.15 0 5.30 V +39225 V0461 Car EA 6.08 0 6.20 Hp +39310 V0462 Car EB 6.68 0 6.84 Hp +39611 V0463 Car BY: 10.41 0 10.60 Hp +39885 V0464 Car LB: 8.95 0 9.06 Hp +40638 V0465 Car LB: 8.73 0 8.87 Hp +40666 V0466 Car EA 7.25 0 7.55 Hp +40838 V0467 Car EA: 8.00 0 8.46 Hp +41266 V0468 Car ACV: 6.59 0 6.62 Hp +41644 V0469 Car ACV 6.39 0 6.42 Hp +41906 V0470 Car EB: 7.45 0 7.61 Hp +42251 V0471 Car BE 8.02 0 8.10 Hp +42819 V0472 Car ACV 6.78 0 6.83 Hp +43763 V0473 Car LPB 6.31 0 6.35 Hp +44216 V0474 Car BY 10.26 0 10.44 Hp +44266 V0475 Car SRB 7.79 0 8.25 Hp +44650 V0476 Car EA: 8.28 0 8.39 Hp +45094 V0477 Car EA 8.34 0 8.56 Hp +45615 V0478 Car SRD 6.28 0 6.30 Hp +46063 V0479 Car BY: 10.07 0 10.22 Hp +46147 V0480 Car BE 7.76 0 7.99 Hp +46452 V0481 Car ACV 7.72 0 7.77 Hp +46620 V0482 Car SRB: 5.85 0 5.95 Hp +46985 V0483 Car LPB 7.40 0 7.43 Hp +46978 V0484 Car GCAS 7.43 0 7.62 Hp +47549 V0485 Car BE 7.07 0 7.12 Hp +47591 V0486 Car EB 6.31 0 6.45 Hp +47893 V0487 Car ACV 6.39 0 6.49 Hp +47892 V0488 Car LPB 7.13 0 7.16 Hp +47992 V0489 Car SRB 8.17 0 8.60 Hp +48104 V0490 Car SRB 8.10 0 8.32 Hp +48665 V0491 Car BY:+E: 9.18 0 11.22 Hp +48782 V0492 Car LPB 6.14 0 6.18 Hp +48832 V0493 Car EA 8.84 0 9.19 Hp +48794 V0494 Car LB: 9.24 0 9.53 Hp +49642 V0495 Car ACV 6.40 0 6.42 Hp +49816 V0496 Car SRB 7.96 0 8.57 Hp +49927 V0497 Car BE 8.99 0 9.12 Hp +49945 V0498 Car E: 7.14 0 7.24 Hp +50272 V0499 Car ACYG: 7.91 0 7.99 Hp +50368 V0500 Car WR 10.61 0 10.81 Hp +50626 V0501 Car SRB 6.91 0 7.01 Hp +50846 V0502 Car LB: 8.25 0 8.36 Hp +51063 V0503 Car BE: 9.27 0 9.39 Hp +51150 V0504 Car ACYG: 7.14 0 7.21 Hp +51141 V0505 Car SRB 6.60 0 6.68 Hp +51246 V0506 Car LPB: 6.77 0 6.80 Hp +51265 V0507 Car BE 6.39 0 6.45 Hp +51310 V0508 Car ACYG 7.66 0 7.70 Hp +51429 V0509 Car EA 8.61 0 8.97 Hp +51453 V0510 Car GCAS 7.47 0 7.67 Hp +51424 V0511 Car LB 7.10 0 7.26 Hp +51810 V0512 Car SRB 6.85 0 6.98 Hp +51857 V0513 Car ACYG 6.72 0 6.76 Hp +52043 V0514 Car LPB 5.83 0 5.86 Hp +52046 V0515 Car SRB 7.79 0 8.03 Hp +52274 V0516 Car ACYG 7.03 0 7.08 Hp +52291 V0517 Car SRB: 7.86 0 7.95 Hp +52370 V0518 Car GCAS: 4.60 0 4.76 Hp +52405 V0519 Car BE 5.40 0 5.48 Hp +52468 V0520 Car LC: 4.63 0 4.70 Hp +52507 V0521 Car LB 7.23 0 7.69 Hp +52827 V0522 Car ACYG: 6.04 0 6.12 Hp +53109 V0523 Car ACYG 6.95 0 6.99 Hp +53154 V0524 Car ACYG 5.28 0 5.34 Hp +53470 V0525 Car LB 7.10 0 7.26 Hp +53479 V0526 Car ACYG: 7.38 0 7.45 Hp +53708 V0527 Car DSCTC: 9.04 0 9.09 Hp +54021 V0528 Car LC 6.51 0 6.75 Hp +54026 V0529 Car EA 8.19 0 8.58 Hp +54130 V0530 Car LC 8.00 0 8.22 Hp +54431 V0531 Car LB: 9.28 0 9.48 Hp +54708 V0532 Car SRB 6.10 0 6.28 Hp +54751 V0533 Car ACYG: 4.69 0 4.75 Hp +55078 V0534 Car IA: 10.73 0 11.06 Hp +55140 V0535 Car LB 6.05 0 6.16 Hp +55207 V0536 Car LPB: 8.87 0 8.97 Hp +55238 V0537 Car SRB 6.24 0 6.56 Hp +55355 V0538 Car LB: 7.64 0 8.20 Hp +52762 V0540 Car ACYG 6.98 0 7.04 Hp +48269 V0596 Car IA 8.44 0 8.75 V B5Vne +37763 V0606 Car EA 8.31 0 8.68 8.60 V 53042.680 12.3192 04 B8/9III +51425 V0655 Car EA 6.19 0 6.36 6.35 V 48175.220 16.9330 05 B4IV +54753 V0830 Car BCEP: 8.32 0 8.36 Hp 0.112217 B1:Vn +38827 χ Car BCEP 3.46 1 0.01 V 0.101 B2IV +47854 l Car DCEP 3.28 0 4.18 V 40736.9 35.53584 26 F6Ib-K0Ib +118188 R Cas M 4.7 0 13.5 V 44463. 430.46 40 M6e-M10e +1834 T Cas M 6.9 0 13.0 V 44160. 444.83 56 M6e-M9.0e +114515 V Cas M 6.9 0 13.4 V 44605. 228.83 48 M5e-M8.5e +4284 W Cas M 7.8 0 12.5 V 44209. 405.57 46 C7,1e +9057 X Cas M 9.45 0 13.2 V 43922. 422.84 55 C5,4e(N1e) +116556 RS Cas DCEP 9.53 0 10.36 V 42773.487 6.295983 27 F7-G1Ib +5589 RU Cas CST: 5.50 0 5.60 V B9IV +7548 RW Cas DCEP 8.62 0 9.76 V 35575.227 14.7949 37 F6-G5 +14542 RX Cas EB/GS 8.64 0 9.49 9.49 V 16250.910 32.31211 K1III+A5eIII +117690 RY Cas DCEP 9.38 0 10.39 V 37344.602 12.13726 41 F5-G3Ib +13133 RZ Cas EA/SD 6.18 0 7.72 6.26 V 43200.3063 1.195247 17 A2.8V +781 SS Cas M 8.8 0 13.3 V 44208. 140.57 48 M3e-M8e +1401 ST Cas SR 11.6 0 12.4 p C4,4(N3) +13367 SU Cas DCEPS 5.70 0 6.18 V 38000.598 1.949319 40 F5Ib-II-F7Ib-II +116705 SV Cas SRA 9.1 0 12.5 p 37964. 264.5 42 M6.5 +114160 SW Cas DCEP 9.32 0 10.01 V 42989.590 5.440950 31 F6-G2 +871 SX Cas EA/GS 8.96 0 9.83 9.32 V 39009.525 36.56375 10 B7eIII+K3III +1213 SY Cas DCEP 9.40 0 10.24 V 41682.230 4.071098 25 F5-G0 +11420 SZ Cas DCEPS 9.60 0 10.02 V 39059.47 13.63289 44 F6-G4Ib +2085 TU Cas CEP(B) 6.88 0 8.18 V 41704.839 2.139298 31 F3II-F5II +1550 TV Cas EA/SD 7.22 0 8.22 7.34 V 44602.4534 1.8125956 18 B9V+F7IV +12906 TW Cas EA 8.32 0 8.98 8.40 V 42008.3873 1.4283240 16 B9V+A0: +117763 TZ Cas LC 8.86 0 10.5 V M2Iab +117576 UU Cas EB/DM 10.4 0 10.8 10.5 p 28751.72 8.51929 B0.5III +5658 UZ Cas DCEP 10.93 0 11.73 V 36982.266 4.259459 26 F6-G2 +8614 VV Cas DCEP 10.26 0 11.20 V 42836.853 6.207059 26 F6-G2Ib +5138 VW Cas DCEP 10.36 0 11.07 V 42778.693 5.993859 33 F6-G2 +4008 VY Cas SRB 10.5 0 12.0 p 100. M6-M7 +7260 WW Cas LB 9.1 0 11.7 V C5,5(N1) +99 WZ Cas SRB 9.4 0 11.4 p 186. C9,2JLi(N1p) +3886 XY Cas DCEP 9.61 0 10.26 V 42006.786 4.501697 31 F6Ib-G2Ib +3572 YZ Cas EA/DM 5.71 0 6.12 5.78 B 28733.4218 4.467224 15 A2V+F2V +2644 ZZ Cas EB/KE 10.7 0 11.1 10.9 p 33437.495 1.243527 B3 +6191 AA Cas LB 8.3 0 9.4 V M6III +12235 AB Cas EA+DSCT 10.10 0 11.85 10.28 V 42714.4627 1.3668738 18 A3+KV +1415 AO Cas ELL/KE 6.07 0 6.24 6.24 V 32191.189 3.523487 O9III+O9III +6174 AQ Cas EA/D 10.06 0 11.0 10.4 V 26282.50 11.72115 18 B3+B9: +115990 AR Cas EA/DM 4.82 0 4.96 4.86 V 35792.8948 6.0663309 06 B3IV-V +796 BD Cas CWB 10.84 0 11.21 V 41932.032 3.650900 47 +4279 BM Cas EB/GS 8.78 0 9.31 8.98 V 25772.9 197.28 A5Ia-F0eIab +5846 BP Cas DCEP 10.55 0 11.33 V 36991.353 6.272724 28 F6-G1 +8312 BY Cas DCEPS 10.06 0 10.58 V 41774.191 3.223316 50 F5-F7 +15063 CC Cas EB/DM 7.06 0 7.30 7.26 V 43818.166 3.368753 O9IV+O9IV +117154 CD Cas DCEP 10.37 0 11.15 V 37023.312 7.80089 34 F6-G5 +118174 CF Cas DCEP 10.80 0 11.47 V 37022.191 4.87522 29 F8Ib-G0Ib +115390 CH Cas DCEP 10.37 0 11.45 V 36912.426 15.08619 40 F3pIb-F6 +115925 CY Cas DCEP 11.07 0 12.21 V 40119.466 14.37686 34 G0Ib-G2Ib +118122 DD Cas DCEP 9.56 0 10.18 V 42780.493 9.812027 50 F7-G1 +12817 DF Cas DCEP 10.53 0 11.13 V 41719.622 3.832472 30 F6-G4: +2347 DL Cas DCEP 8.63 0 9.26 V 42780.334 8.000669 33 F5Ib-G2Ib +12543 DO Cas EB/KE 8.39 0 9.01 8.61 V 33926.4573 0.6846661 A4V +116684 DW Cas DCEP 10.81 0 11.41 V 36980.605 4.99776 28 F7 +1162 FM Cas DCEP 8.82 0 9.47 V 42817.713 5.809284 30 F7-G0I +12416 GP Cas LC 11.5 0 12.7 p M2.0Iab +7139 IM Cas SRB 10.2 0 11.0 p 27990. 323. M2 +390 IX Cas CWA 11.19 0 11.77 V 42779.743 9.153375 49 F7 +779 KN Cas LC 10.5 0 11.2 p M1epIb+B2.6V +1263 MU Cas EB/DM 10.6 0 10.9 10.8 p 27962.509 3.861145 B8 +1945 NQ Cas LB 10.6 0 11.52 B C4,5J(R5) +5391 OX Cas EA/DM 9.90 0 10.35 10.30 V 41269.6355 2.4893427 15 B1V +117078 PZ Cas SRC 11.16 0 12.9 B 34150. 925. M2-4Ia +116018 V0358 Cas LC 11.5 0 13.8 p M3Ia-Iab +1222 V0363 Cas RRAB 10.29 0 10.73 V 36142.592 0.5465353 40 F3-F7 +14936 V0368 Cas EA 8.45 0 9.2 B 25554.320 4.451642 12 B3III +117957 V0373 Cas E:/GS 5.9 0 6.3 V 36491.237 13.4192 B0.5II+B0.5II +1543 V0377 Cas DSCT: 7.78 0 7.83 V 0.03 F0 +9042 V0391 Cas LB 9.2 0 10.0 p M4 +116210 V0436 Cas ACV 7.39 0 7.84 V 38666. 159.0 A0p(Sr-Cr-Eu) +6093 V0465 Cas SRB 7.7 0 8.9 p 60. M5 +6231 V0466 Cas LC 9.8 0 10.74 B M1.5Ib +12495 V0482 Cas BCEP 8.27 0 8.31 B 0.37822 O9.5I-II +3346 V0486 Cas E: 6.91 1 0.04 V 39012.27 5.551 B1III +5239 V0487 Cas SRD 7.44 0 7.74 V 134. G0-G4Ia +113561 V0509 Cas SRD 4.75 0 5.5 V F8e-KIa-0+B1V +3965 V0526 Cas DSCTC 6.34 0 6.37 V F5III +11604 V0528 Cas BCEP: 8.69 0 8.86 B B5V +11607 V0529 Cas GCAS 8.44 0 8.86 V B5Vea +6084 V0538 Cas ISB 9.4 0 10.6 p K5III +7598 V0539 Cas LB: 8.36 0 8.72 V M2 +9604 V0540 Cas ACV 7.73 0 7.75 V 40854.7 34.9 A0p(Cr) +2552 V0547 Cas UV 11.5 0 12.01 B M2.5Ve +4717 V0551 Cas ACV 8.43 0 8.77 V 41206. 69.0 A0p(Sr-Cr) +7965 V0557 Cas ACV 5.55 0 5.64 V 40974.88 3.1848 50 B9p(Si-Sr-Cr) +9906 V0558 Cas E 9.0 0 9.6 B A-F +11318 V0559 Cas EA 7.01 0 7.23 7.21 V 41357.560 1.58064 12 B9V +117447 V0566 Cas ACYG 5.34 0 5.45 V A3eqIa-0 +418 V0567 Cas ACV 5.71 0 5.81 V 40482.444 6.4322 50 B9p(Hg-Mn) +3401 V0594 Cas INA 10.9 0 12.00 B O9.5e +8025 V0595 Cas LC 8.75 0 9.05 V M2Ib +9481 V0598 Cas LB 7.38 0 7.54 V M3-4III +10904 V0605 Cas LC 8.22 0 8.48 V M2Iab +12469 V0615 Cas * 11.2 0 11.9 B B1eIb: +14827 V0623 Cas LB: 9.0 0 9.8 p C4,5J(R5) +113373 V0627 Cas SR: 12.4 0 13.24 V M2eII-III +114995 V0628 Cas INA 10.88 0 11.84 V Beq +7192 V0636 Cas DCEPS 7.09 0 7.26 V 44001.355 8.377 50 G0Ib +113797 V0638 Cas ACV 5.7 1 0.10 U 44115.24 5.36 B9IIIp(Heweak) +274 V0639 Cas ACYG 6.19 0 6.28 V +518 V0640 Cas E: 5.96 1 0.06 V +13290 V0648 Cas LC 11.8 0 12.6 p +114904 V0649 Cas EA/DM 6.53 1 0.10 V +117430 V0650 Cas ACV 6.41 1 0.02 V +6081 V0662 Cas XP: 11.06 1 0.10 V +14537 V0704 Cas SR 11.4 0 12.1 p +114817 V0728 Cas RS: 8.1 1 0.06 V +336 V0739 Cas LB 7.62 0 7.70 Hp +723 V0740 Cas SRD: 8.69 0 8.74 Hp +834 V0741 Cas EB 8.26 0 8.51 Hp +940 V0742 Cas BE 7.11 0 7.17 Hp +1652 V0743 Cas SRB 6.81 0 6.91 Hp +1735 V0744 Cas EA 8.44 0 8.70 Hp +1805 V0745 Cas EB 8.06 0 8.16 Hp +1921 V0746 Cas LPB 5.54 0 5.56 Hp +2271 V0747 Cas LB: 6.89 0 7.16 Hp +2596 V0748 Cas SRB 10.01 0 10.40 Hp +2667 V0749 Cas LB: 8.62 0 8.74 Hp +2808 V0750 Cas LB: 8.89 0 9.02 Hp +2813 V0751 Cas LPB 7.88 0 7.91 Hp +2899 V0752 Cas LB 7.75 0 8.54 Hp +3171 V0753 Cas LB 7.16 0 7.26 Hp +3294 V0754 Cas SRD 8.76 0 9.07 Hp +3367 V0755 Cas EA/GS: 7.14 0 7.30 V +3513 V0756 Cas DSCTC: 8.75 0 8.83 Hp +3839 V0757 Cas LPB 8.17 0 8.22 Hp +4451 V0758 Cas LB: 8.57 0 8.69 Hp +4918 V0759 Cas LB: 7.43 0 7.61 Hp +5161 V0760 Cas LPB 7.12 0 7.17 Hp +5688 V0761 Cas ACV: 6.38 0 6.41 Hp +5926 V0762 Cas BY: 5.92 0 6.02 Hp +5976 V0763 Cas SRB 8.27 0 8.43 Hp +6027 V0764 Cas BE 6.85 0 6.93 Hp +6171 V0765 Cas EB 10.72 0 11.11 Hp +6287 V0766 Cas EA 7.10 0 7.51 Hp +6934 V0767 Cas SRB 8.87 0 9.04 Hp +7103 V0768 Cas LPB: 10.09 0 10.18 Hp +7512 V0769 Cas LPB: 7.59 0 7.65 Hp +7755 V0770 Cas LB 7.45 0 8.13 Hp +7936 V0771 Cas BE: 9.31 0 9.48 Hp +7939 V0772 Cas ACV: 6.67 0 6.72 Hp +8115 V0773 Cas EA 6.21 0 6.30 Hp +8297 V0774 Cas SRB 8.35 0 8.67 Hp +8693 V0775 Cas EA: 9.73 0 9.93 Hp +8821 V0776 Cas EW: 8.94 0 9.09 Hp +8980 V0777 Cas BE 6.95 0 7.12 Hp +9211 V0778 Cas SRC 8.19 0 8.36 Hp +9494 V0779 Cas EA: 6.59 0 6.65 Hp +9538 V0780 Cas BE 8.08 0 8.24 Hp +9635 V0781 Cas SRD 7.58 0 7.68 Hp +9997 V0782 Cas BE 7.66 0 7.74 Hp +10147 V0783 Cas BE 9.81 0 10.00 Hp +10141 V0784 Cas DSCTC 6.70 0 6.76 Hp +10173 V0785 Cas EA 9.33 0 9.64 Hp +10243 V0786 Cas ACYG: 8.67 0 8.78 Hp +10486 V0787 Cas BE 8.00 0 8.24 Hp +11894 V0788 Cas LPB 7.88 0 7.92 Hp +11978 V0789 Cas SRB 6.70 0 6.84 Hp +12009 V0790 Cas ACYG: 8.42 0 8.54 Hp +12178 V0791 Cas EB 7.78 0 7.94 Hp +13016 V0792 Cas BCEP 9.26 0 9.45 Hp +13221 V0793 Cas EB 7.93 0 8.22 Hp +13276 V0794 Cas EA 7.88 0 8.10 Hp +13474 V0795 Cas E 8.97 0 9.19 Hp +13446 V0796 Cas LPB 8.062 0 8.11 Hp +13797 V0797 Cas LPB: 7.71 0 7.74 Hp +14049 V0798 Cas ACV 7.33 0 7.37 Hp +14377 V0799 Cas EA 8.80 0 9.15 Hp +14526 V0800 Cas LB 7.05 0 7.22 Hp +14626 V0801 Cas BE 6.48 0 6.57 Hp +14932 V0802 Cas I: 10.60 0 10.90 Hp +15139 V0803 Cas BE: 9.12 0 9.28 Hp +15408 V0804 Cas LB: 8.28 0 8.38 Hp +16319 V0805 Cas SRB 6.30 0 6.51 Hp +113897 V0806 Cas E: 9.00 0 9.20 Hp +114552 V0807 Cas ELL: 10.89 0 11.02 Hp +114815 V0808 Cas BE: 9.76 0 9.93 Hp +115141 V0809 Cas LC 6.58 0 6.71 Hp +115224 V0810 Cas BE 8.56 0 8.69 Hp +115244 V0811 Cas BE 8.62 0 8.79 Hp +115267 V0812 Cas ACV 8.12 0 8.18 Hp +115368 V0813 Cas BE 7.90 0 8.02 Hp +115952 V0814 Cas LB 7.55 0 7.80 Hp +116507 V0815 Cas LB: 8.77 0 8.88 Hp +116948 V0816 Cas LB 6.50 0 6.63 Hp +117205 V0817 Cas BE 8.26 0 8.61 Hp +117514 V0818 Cas BE 7.67 0 7.81 Hp +117830 V0819 Cas ACYG: 7.01 0 7.09 Hp +118139 V0820 Cas BE 8.19 0 8.27 Hp +118223 V0821 Cas EA 8.27 0 8.62 Hp +181 V0822 Cas SRB 6.75 0 6.84 Hp +3415 V0863 Cas WR 10.54 1 0.09 V +4907 V0966 Cas BY 7.67 1 0.02 V 12.165 G5V +8362 V0987 Cas BY 5.63 1 0.05 V 21.7 K0V +10531 V0989 Cas BY 7.13 1 0.03 V 6.79 K2V +10618 V0990 Cas * 7.03 1 0.02 V 7.48 K4II +623 V1006 Cas GDOR 8.37 1 0.13 V 0.9004 F2V +5674 V1012 Cas GDOR 7.68 1 0.06 B 0.5486 F1V +118077 V1022 Cas EA 5.56 0 5.68 5.59 Hp 49040.829 12.1564 04 F1/6V+F3V +2232 V1036 Cas INT: 9.40 1 0.10 V G0 +7238 V1123 Cas EA 10.91 1 0.20 0.11 I 51427.8223 4.5020 08 B2V +7280 V1132 Cas GDOR 8.24 0 8.30 I 0.62576 FOV +3179 α Cas CST: 2.20 0 2.27 V K0IIIa +746 β Cas DSCTC 2.25 0 2.31 V 38991.876 0.10430 40 F2III-IV +6686 δ Cas EA: 2.68 0 2.76 2.75 V 20161. 759. A5V +3821 η Cas RS: 3.58 0 3.63 Hp +11569 ι Cas ACV 4.45 0 4.53 V 37248.313 1.74050 35 B9p(Cr-Sr) +2599 κ Cas ACYG 4.22 0 4.30 B B1eaIa +3504 ο Cas GCAS 4.50 0 4.62 V B2-5eIV +3414 Ï€ Cas ELL 5.00 0 5.02 Hp +117863 Ï Cas SRD 4.1 0 6.2 V 320. F8pIa-K0pIa-0 +69754 R Cen M 5.3 0 11.8 8.3 V 41942. 546.2 M4e-M8IIe +60534 S Cen SR 9.2 0 10.7 p 65. C4,5(Nbp) +66825 T Cen SRA 5.5 0 9.0 V 43242. 90.44 47 K0:e-M4II:e +61286 U Cen M 7.0 0 14.0 V 39941. 220.28 47 M3II:e-M5IIe +71116 V Cen DCEP 6.43 0 7.21 V 40308.60 5.493839 26 F5Ib/II-G0 +58107 W Cen M 7.60 0 13.7 V 41786. 201.57 47 M3e-M8(III)e +57642 X Cen M 7.0 0 13.8 V 41709. 315.1 41 M5e-M6.5e +70969 Y Cen SRB: 8.9 0 10.0 p 180. M4e-M7 +69779 RR Cen EW/KE: 7.27 0 7.68 7.63 V 24231.0981 0.60569029 A9/F0V +67359 RT Cen M 8.1 0 13.6 V 42098. 255.02 47 M6II:e +59267 RU Cen RV 8.7 0 10.7 p 28015.51 64.727 A7Ib-G2pe +66466 RV Cen M 7.0 0 10.8 V 40960. 446.0 56 N3e +67626 RX Cen M 8.7 2 15. V 42114. 327.90 38 M5e +67556 SZ Cen EA/D 8.3 0 8.9 8.7 p 41386.7466 4.107983 15 A6III +62071 UW Cen RCB 9.1 2 14.5 V K +65242 UX Cen SRB 10.1 0 10.6 p 122. C(Nb) +64778 UY Cen SR 9.22 0 11.2 B 114.6 SC +56991 UZ Cen CEP(B) 8.30 0 9.12 V 40746.1 3.33434 27 F3Ib/II +66189 VW Cen DCEP 9.67 0 10.72 V 44023.17 15.03618 38 +57895 VZ Cen EA 8.34 0 8.6 8.4 B 29125.519 4.9287012 20 B2III/IV +66696 XX Cen DCEP 7.30 0 8.31 V 40366.24 10.954348 49 F6-G4(F7/8II) +60502 XZ Cen M 7.8 0 10.7 V 30136. 290.7 M5e +55726 AY Cen DCEP 8.58 0 9.16 V 36733.520 5.30975 32 G1I-G5 +55736 AZ Cen DCEPS 8.41 0 8.80 V 35223.36 3.21068 40 F7 +57978 BB Cen DCEPS 9.86 0 10.48 V 40990.27 3.99766 45 F5 +73533 BE Cen M 9.8 0 14.0 p 28740. 201.56 45 Me +57649 BK Cen CEP(B) 9.60 0 10.38 V 35221.711 3.173887 30 G5 +57130 KK Cen DCEP 10.84 0 11.94 V 41017.51 12.1803 47 +66383 KN Cen DCEP 9.28 0 10.36 V 36238.172 34.0457 21 +70203 V0339 Cen DCEP 8.40 0 9.17 V 40768.15 9.4660 50 F7II-G5 +64969 V0378 Cen DCEPS 8.27 0 8.68 V 34917.113 6.45930 32 F5Iab/b-G5 +65492 V0379 Cen EA/SD 8.8 0 9.6 8.9 p 28402.23 1.874685 18 B5V +67566 V0381 Cen CEP 7.32 0 8.01 V 36201.953 5.07878 28 F6-G7(F8Ib/II) +68178 V0412 Cen LB 7.1 0 9.6 B M3Iab/b-M7 +56176 V0419 Cen DCEPS 7.98 0 8.36 V 40760.28 5.50691 42 F7II-K0 +56898 V0420 Cen CWA 9.37 0 10.60 V 25350.67 24.7678 27 +63693 V0496 Cen DCEP 9.62 0 10.24 V 40773.38 4.42419 29 G3 +67976 V0499 Cen RRAB 10.36 0 11.54 V 41126.248 0.5212100 12 A3-F5 +72257 V0553 Cen CWB 8.23 0 8.80 V 41124.28 2.06051 41 F4-K0Ia(C) +57844 V0572 Cen SR 12.1 0 12.7 p 135. +69781 V0636 Cen EA/DM: 8.7 0 9.2 8.8 V 34540.340 4.28398 04 G0V +70890 V0645 Cen UV 12.1 0 13.12 B M5Ve +65970 V0659 Cen DCEP 6.45 0 6.71 V 40348.77 5.62180 43 F7Ib +65977 V0701 Cen EB/KE 8.8 0 9.3 9.1 V 39243.2661 0.738447 B9V +69491 V0716 Cen EB/KE 5.96 0 6.52 6.21 V 38524.4069 1.490096 B5V +71492 V0737 Cen DCEP 7.5 0 8.0 p 28656.350 7.06585 39 G2Ib +65715 V0743 Cen DSCT 8.57 0 8.82 V 39243.6436 0.10225435 36 A0V +66666 V0744 Cen SRB 5.14 0 6.55 V 90. M8III +57129 V0752 Cen EW/KW 9.1 0 9.66 9.61 V 44243.6916 0.37022484 G0 +57812 V0753 Cen RRC: 10.24 0 10.64 V 41386.144 0.221349 45 A5 +67682 V0757 Cen EW/KW 8.3 0 8.7 8.6 V 42308.6931 0.34316929 +67746 V0758 Cen EW/KE 8.8 0 9.40 9.15 B 44403.2797 0.58078556 B9IV +69256 V0759 Cen EW/KW 7.4 0 7.56 7.56 V 42196.0973 0.39395129 F9V +70300 V0761 Cen SXARI 4.38 0 4.43 V 42807.75 8.8171 B2V-B8IIIp(He-Si +56518 V0763 Cen SRB 5.55 0 5.80 V 60. M3III +66358 V0764 Cen SRD 8.84 0 9.13 V K2III +66645 V0765 Cen LB: 6.28 1 0.08 V M4 +67261 V0766 Cen SDOR: 6.17 0 7.50 V G8Ia-0 +67861 V0767 Cen GCAS 5.86 0 6.26 V B2IIIe +72432 V0768 Cen SRB 5.93 0 6.15 V M3 +55863 V0771 Cen SRC: 6.87 1 0.2 V M2Ib-II +57057 V0772 Cen LC: 7.80 0 8.36 V M2Ibep+B +67809 V0774 Cen GCAS 7.63 0 7.72 V B3Vne +59229 V0788 Cen EA/D 5.74 0 5.93 5.90 V 41370.496 4.966377 08 A2mA5-F2 +63820 V0789 Cen LB: 6.22 1 0.09 V M3/4III +69618 V0795 Cen GCAS 4.97 0 5.10 V B4Vne +57569 V0801 Cen GCAS:+XP 8.93 0 9.39 V B1Vne +67457 V0806 Cen SRB 4.16 0 4.26 V 12. M5III +56050 V0808 Cen ACYG 6.42 0 6.47 V B2eaIa +56201 V0809 Cen ACYG 6.31 0 6.36 V A3eIa +57175 V0810 Cen SRD 4.95 0 5.12 V 130. F5-G0Ia-0+B1Iab +54360 V0815 Cen ACV 5.14 1 0.03 V 2.433 A3p(Sr) +56709 V0816 Cen DSCT: 7.996 0 8.02 V 43400.0009 0.00843060 F8p +59232 V0817 Cen GCAS 5.47 0 5.58 V B3eaIV +69525 V0820 Cen RV 8.42 2 10.10 V 43325. 150. K0e +69619 V0821 Cen PVTEL 9.94 0 10.03 V B3p +63204 V0823 Cen ACV 6.7 1 0.00 V 2.84 A0p(Si-Cr) +64320 V0824 Cen ACV 6.3 1 0.03 V 1.272 A0p(Si) +67036 V0827 Cen ACV 6.46 1 0.02 V 2.605 A0p(Si) +68673 V0828 Cen ACV 6.10 1 0.04 V 1.837 A0p(Si) +56851 V0829 Cen RS 7.9 1 0.11 V +64425 V0831 Cen ELL: 4.49 0 4.66 V +72241 V0836 Cen BCEP 8.02 0 8.12 V +56759 V0837 Cen DSCT 7.16 1 0.10 V +57269 V0838 Cen BY 8.97 1 0.08 V +63347 V0839 Cen EW/KW 9.51 0 10.13 V +67013 V0851 Cen RS 7.78 0 7.88 V +70904 V0853 Cen DSCTC 6.97 1 0.02 V +56586 V0855 Cen BE 9.58 1 0.07 B +63250 V0856 Cen BCEP 8.32 0 8.37 V +59173 V0863 Cen BE: 4.38 0 4.43 b +69174 V0869 Cen * 5.92 1 0.09 V +56769 V0871 Cen EB 6.48 1 0.12 V +69122 V0883 Cen E 6.40 0 6.63 b +56992 V0885 Cen * 7.60 0 7.95 U +54593 V0897 Cen LB: 7.43 0 7.53 Hp +54659 V0898 Cen DCEPS: 7.93 0 8.21 Hp +54670 V0899 Cen LB: 8.20 0 8.33 Hp +54814 V0900 Cen E 6.95 0 6.99 Hp +54865 V0901 Cen EW: 11.94 0 12.31 Hp +55031 V0902 Cen E: 12.20 0 12.75 Hp +55283 V0903 Cen SRC 7.57 0 7.83 Hp +55396 V0904 Cen LB: 8.47 0 8.58 Hp +55448 V0905 Cen LB: 10.49 0 10.68 Hp +55499 V0906 Cen LPB: 9.57 0 9.71 Hp +55524 V0907 Cen BE 9.03 0 9.30 V +56353 V0908 Cen SRB 7.80 0 7.95 Hp +56435 V0909 Cen SRB 7.73 0 7.86 Hp +56556 V0910 Cen LC 7.19 0 7.34 Hp +56592 V0911 Cen GCAS: 9.00 0 9.45 Hp +56698 V0912 Cen LB 6.81 0 6.98 Hp +56702 V0913 Cen LB 6.19 0 6.45 Hp +56970 V0914 Cen LB 5.99 0 6.12 Hp +57067 V0915 Cen ACV: 8.00 0 8.05 Hp +57106 V0916 Cen BE 8.61 0 8.83 Hp +57237 V0917 Cen SRD 8.28 0 8.37 Hp +57512 V0918 Cen SRD: 5.49 0 5.56 Hp +57607 V0919 Cen SRB: 6.07 0 6.64 Hp +57653 V0920 Cen LB 7.43 0 7.53 Hp +57737 V0921 Cen SRB: 9.57 0 10.01 Hp +57808 V0922 Cen ACYG: 6.57 0 6.64 Hp +57843 V0923 Cen LC 7.60 0 7.95 Hp +58059 V0924 Cen SRB 6.89 0 7.05 Hp +58328 V0925 Cen SRB 8.60 0 8.76 Hp +59811 V0926 Cen SRB 6.67 0 6.73 Hp +60934 V0927 Cen LB 9.05 0 9.44 Hp +60979 V0928 Cen SRB 6.01 0 6.08 Hp +60984 V0929 Cen LB: 6.76 0 6.79 Hp +61040 V0930 Cen LB: 8.54 0 8.67 Hp +61226 V0931 Cen LB: 7.80 0 7.91 Hp +61247 V0932 Cen LB 9.07 0 9.34 Hp +61362 V0933 Cen LB: 8.61 0 8.71 Hp +61507 V0934 Cen SRB 7.84 0 7.96 Hp +61773 V0935 Cen LB 8.11 0 8.24 Hp +61975 V0936 Cen SRB 8.41 0 8.68 Hp +62064 V0937 Cen LB: 8.53 0 8.58 Hp +62086 V0938 Cen LB: 7.16 0 7.22 Hp +62316 V0939 Cen LB: 8.25 0 8.38 Hp +62445 V0940 Cen BY: 9.59 0 9.73 Hp +62623 V0941 Cen LB: 8.87 0 8.95 Hp +62767 V0942 Cen LB 7.21 0 7.32 Hp +62773 V0943 Cen ACV 6.93 0 6.98 Hp +63186 V0944 Cen LB: 9.23 0 9.42 Hp +63210 V0945 Cen LPB 5.14 0 5.16 Hp +63565 V0946 Cen BE 7.33 0 7.46 Hp +63849 V0947 Cen DSCTC: 6.52 0 6.55 Hp +63979 V0948 Cen EB: 9.01 0 9.29 Hp +64025 V0949 Cen EA 9.15 0 9.52 Hp +64130 V0950 Cen DSCTC 7.82 0 7.85 Hp +64334 V0951 Cen LB: 8.49 0 8.64 Hp +64359 V0952 Cen BE 8.02 0 8.11 Hp +64391 V0953 Cen LB 6.99 0 7.14 Hp +64471 V0954 Cen DSCT 7.29 0 7.40 Hp +64578 V0955 Cen BE 7.93 0 8.04 Hp +64572 V0956 Cen SRD: 8.31 0 8.58 Hp +64613 V0957 Cen SRB 11.11 0 11.78 Hp +64622 V0958 Cen BE 7.09 0 7.16 Hp +64653 V0959 Cen GCAS 9.67 0 10.00 Hp +64719 V0960 Cen E 9.51 0 9.82 Hp +64737 V0961 Cen ELL: 7.99 0 8.08 Hp +64712 V0962 Cen LB: 8.29 0 8.40 Hp +64941 V0963 Cen E: 8.69 0 8.79 Hp +65112 V0964 Cen EB 5.40 0 5.44 Hp +65294 V0965 Cen ACYG: 8.01 0 8.10 Hp +65517 V0966 Cen RS: 9.84 0 9.94 Hp +65637 V0967 Cen BE: 7.50 0 7.70 Hp +65776 V0968 Cen ACV 8.10 0 8.16 Hp +65818 V0969 Cen LPB: 10.03 0 10.25 Hp +66030 V0970 Cen LB 8.47 0 8.73 Hp +66070 V0971 Cen LB 8.51 0 8.69 Hp +66142 V0972 Cen WR 10.42 0 10.64 Hp +66157 V0973 Cen LB: 8.94 0 9.10 Hp +66394 V0974 Cen ELL: 7.67 0 7.71 Hp +66580 V0975 Cen E: 7.41 0 7.50 Hp +66631 V0976 Cen ACV: 9.38 0 9.50 Hp +67179 V0977 Cen LB: 8.87 0 8.97 Hp +67202 V0978 Cen LB 7.65 0 7.79 Hp +67324 V0979 Cen EB 7.49 0 7.61 Hp +67298 V0980 Cen LB 8.05 0 8.30 Hp +67604 V0981 Cen LB 8.18 0 8.38 Hp +67616 V0982 Cen BY: 9.60 0 9.85 Hp +67669 V0983 Cen E: 4.27 0 4.32 Hp +67704 V0984 Cen SRB 8.28 0 8.45 Hp +67830 V0985 Cen LB: 8.29 0 8.41 Hp +68019 V0986 Cen LB 6.69 0 6.79 Hp +68218 V0987 Cen BE 8.80 0 8.90 Hp +68186 V0988 Cen BY: 9.77 0 10.02 Hp +68298 V0989 Cen LB: 7.45 0 7.55 Hp +68500 V0990 Cen LB 7.37 0 7.60 Hp +68788 V0991 Cen LB: 9.15 0 9.30 Hp +68842 V0992 Cen EB: 6.23 0 6.32 Hp +68979 V0993 Cen ACV 8.87 0 8.91 Hp +68998 V0994 Cen SRD: 8.26 0 8.38 Hp +69272 V0995 Cen LB: 8.63 0 8.87 Hp +69539 V0996 Cen LB 7.01 0 7.37 Hp +69582 V0997 Cen LPB: 9.44 0 9.70 Hp +69557 V0998 Cen LB: 9.07 0 9.23 Hp +69847 V0999 Cen LPB: 9.03 0 9.15 Hp +69980 V1000 Cen E 8.40 0 8.65 Hp +69978 V1001 Cen IA: 7.24 0 7.42 Hp +70026 V1002 Cen LB 6.48 0 6.98 Hp +70290 V1003 Cen LC: 7.47 0 7.74 Hp +70250 V1004 Cen LB 8.86 0 9.12 Hp +70769 V1005 Cen SRB 7.98 0 8.13 Hp +70832 V1006 Cen SRB 8.59 0 8.81 Hp +71048 V1007 Cen SRB: 8.11 0 8.29 Hp +71194 V1008 Cen BE 7.70 0 7.77 Hp +71178 V1009 Cen BY: 10.24 0 10.43 Hp +71264 V1010 Cen GCAS 8.93 0 9.23 Hp +71563 V1011 Cen LB: 8.47 0 8.64 Hp +71709 V1012 Cen BE 9.10 0 9.16 Hp +71665 V1013 Cen LB 9.01 0 9.18 Hp +71922 V1014 Cen I: 11.52 0 12.24 Hp +71967 V1015 Cen CEP: 8.64 0 8.78 Hp +72117 V1016 Cen LB: 8.42 0 8.54 Hp +72372 V1017 Cen LB 7.59 0 7.79 V +72710 V1018 Cen LPB: 7.89 0 7.98 Hp +72800 V1019 Cen LPB 4.96 0 4.98 Hp +73082 V1020 Cen LB 8.77 0 8.92 Hp +73426 V1021 Cen SRB 8.46 0 8.64 Hp +73595 V1022 Cen RR: 8.33 0 8.38 Hp +57567 V1023 Cen DSCTC 7.94 1 0.05 V +62774 V1026 Cen GDOR 9.33 0 9.38 Hp +63547 V1028 Cen BE 10.52 0 10.70 Hp +64896 V1029 Cen ACYG 7.86 0 7.95 Hp +56726 V1051 Cen EA 7.13 0 7.24 V 47964.840 9.64645 O6.5V(f)+O8.5V +69617 V1061 Cen EA 9.55 0 9.71 9.61 V 52738.708 2.20957 11 B2V +56249 V1089 Cen EA 7.88 0 7.96 7.95 V 48502.854 5.48793 06 B9.5V +59869 V1118 Cen EA 9.55 0 10.1 9.9 V 47945.451 11.30489 02 G3V +63883 V1154 Cen SRS 6.33 0 6.58 V 21.8 M1III +64327 V1160 Cen EA 8.63 0 8.80 8.78 V 53183.610 10.35420 02 B7V +64716 V1166 Cen EA 8.77 0 8.98 8.87 V 51955.858 13.4197 04 B1/2V +65403 V1177 Cen EA 9.08 0 9.44 9.42 V 52014.643 5.7945 05 G5V +66751 V1198 Cen EA 8.66 0 8.80 8.73 V 48966.453 6.50404 06 B6II/III +67712 V1200 Cen EA 8.44 0 8.70 8.51 V 48509.652 2.482874 05 F5V +68339 V1202 Cen EA 8.42 0 8.62 8.62 V 47917.350 15.5543 02 B9V +69358 V1203 Cen EB 7.67 0 7.80 7.72 V 48433.960 2.67096 B4/5III/IV +57589 V1239 Cen IT 11.2 0 11.5 V 5.10 K5V +68702 β Cen BCEP 0.61 1 0.04 V 0.157 B1III +59196 δ Cen GCAS 2.51 0 2.65 V B2IVne +66657 ε Cen BCEP 2.29 0 2.31 V 41040.965 0.169608 B1III +71352 η Cen GCAS 2.30 0 2.41 V B1.5Vne +67472 μ Cen GCAS 2.92 0 3.47 V B2IV-Ve +67464 ν Cen ELL:+BCEP 3.38 0 3.41 V +68862 χ Cen BCEPS 4.15 1 0.02 B 0.035 B2V +106583 S Cep M 7.4 0 12.9 V 43787. 486.84 55 C7,4e(N8e) +104451 T Cep M 5.2 0 11.3 V 44177. 388.14 54 M5.5e-M8.8e +4843 U Cep EA/SD 6.75 0 9.24 6.93 V 44541.6031 2.4930475 15 B7Ve+G8III-IV +118027 V Cep CST: 6.56 0 V A3V +111592 W Cep SRC 7.02 0 9.2 V K0ep-M2epIa+B0/B +23727 RS Cep EA/DS 10.2 0 11.9 V 40862.677 12.420105 08 A5IIIe+G +6325 RU Cep SRD 8.2 0 9.8 V 109. G6-M3.5III +110504 RW Cep SRD 8.6 0 10.7 p 346. K0Ia-0 +3905 RX Cep SRD: 7.2 0 8.2 V 55. G5 +111839 RZ Cep RRC 9.11 0 9.75 V 42635.374 0.3086853 32 A0-F2 +17881 SS Cep SRB 8.0 0 9.1 p 90. M5III +108317 VV Cep EA/GS+SRC 4.80 0 5.36 V 43360. 7430. 08 M2epIa-Iab+B8:eV +101750 VW Cep EW/KW 7.23 0 7.68 7.56 V 44157.4131 0.27831460 G5+K0Ve +111166 WX Cep EA/DM 8.7 0 9.29 9.14 V 25088.537 3.3784535 13 A2+A5: +116648 XX Cep EA/SD 9.20 0 10.32 9.24 V 44839.8022 2.3373266 14 A8V +117724 XY Cep EA/SD 10.05 0 10.90 10.10 V 43791.3160 2.774527 12 B8-A0 +111257 XZ Cep EB/DM: 8.0 0 8.83 8.43 V 43297.811 5.0972267 O9.5V +112317 ZZ Cep EA/DM 8.60 0 9.55 8.74 V 27928.451 2.141800 12 B7+F0V +112562 AH Cep EB/DM 6.78 0 7.07 7.03 V 34989.4026 1.7747505 B0.5Vne+B0.5V +107500 AI Cep EB/DM 9.18 0 9.86 9.48 V 26550.341 4.225288 B0.5V:p +110964 AK Cep DCEP 10.86 0 11.52 V 37022.531 7.23268 28 F6-G2 +112882 AR Cep SRB 7.0 0 7.9 V M4III +108427 CP Cep DCEP 10.06 0 10.96 V 33052.33 17.8590 40 F5Ib-F7 +111633 CQ Cep EB/DM/WR 8.63 0 9.12 V 32456.668 1.641249 WN5.5+O7 +112430 CR Cep DCEP 9.43 0 9.83 V 42774.236 6.232964 39 F8.4 +113907 CW Cep EA/DM 7.60 0 8.04 8.01 V 35373.4496 2.729140 13 B0.5+B0.5IV-Vea +112254 DG Cep LB 11.54 0 12.5 B C6,4(Nb/R8) +112470 DH Cep ELL 8.58 0 8.62 V 32759.279 2.111040 O5.5+O6.5IV-Vn +113269 DI Cep INST 11.95 0 13.5 B G8pVe-K3Ve(T) +109273 DM Cep LB 8.4 0 9.6 p M4 +103471 DQ Cep DSCT 7.22 0 7.32 V 33924.8404 0.07886444 50 F4III +106024 EI Cep EA/DM 7.54 0 8.06 7.98 V 36820.4665 8.439334 06 Am+F1 +107083 EK Cep EA/DM 7.99 0 9.32 8.06 B 39002.7240 4.4277926 06 A0V +108073 EM Cep EW/KE 7.02 0 7.17 7.16 V 40134.7326 0.806187 B1IVe +18548 EZ Cep RRC 11.6 0 12.2 p 26631.370 0.378999 50 +105303 FZ Cep SR 8.5 0 9.1 p M5 +106226 GK Cep EB/KE 6.89 0 7.37 7.35 V 38694.7063 0.936157 A2V+A2V +110154 GP Cep E/WR+E: 8.96 0 9.07 V 31256.602 6.6883 WN6+O8-B0III:+O+ +111849 GQ Cep ACV 8.11 0 8.29 V 38350.57 2.037638 45 A0p(Si) +113385 GT Cep EA/SD 8.2 0 9.1 8.6 V 25628.250 4.908756 14 B3V +113017 IL Cep EA 9.29 0 9.61 V 1.401 B2-B3pe +108426 IR Cep DCEP 7.58 0 7.98 V 41696.582 2.114124 40 G0 +108772 LZ Cep ELL 5.56 0 5.66 5.63 B 41931.868 3.070510 O8.5III+O9Vn +108924 MO Cep LB: 5.13 0 5.33 V M5III +112969 MX Cep ACV 7.81 0 7.96 V 40785.2 17.22 A2p(Sr-Cr-Mn) +113738 NN Cep EA/DM 8.2 0 8.58 8.52 V 44507.4033 2.058305 12 A5 +113461 NY Cep EA/DM 7.40 0 7.55 V 41903.8136 15.275727 02 B0IV+B0IV +14870 OU Cep SR 11.1 0 12.0 p M8 +37391 OV Cep SR 5.00 0 5.07 V M2IIIab +112558 PS Cep E/DM 10.13 0 10.19 V 2.09168 B6Vne +106801 V0337 Cep ACYG 4.69 0 4.78 V B2Ib +107004 V0360 Cep DSCTC 8.3 1 0.03 V +106205 V0364 Cep ACV: 8.4 1 0.02 V +114307 V0367 Cep L 8.24 0 8.91 B +115147 V0368 Cep RS 7.7 1 0.04 V +108461 V0376 Cep RS 7.5 1 0.07 V +115550 V0377 Cep DSCTC 6.58 0 6.64 V +116109 V0378 Cep ELL 7.09 0 7.12 V +102258 V0379 Cep EA 6.65 1 0.06 B +103763 V0380 Cep INA 7.10 0 7.36 U +105259 V0381 Cep LC: 5.51 0 5.71 V +105268 V0382 Cep BE 5.08 0 5.23 V +107913 V0383 Cep EB 7.27 0 7.58 V +113853 V0387 Cep LPB 6.72 1 0.02 B +114831 V0388 Cep DSCT: 5.56 1 0.07 V +215 V0396 Cep LB: 9.24 0 9.35 Hp +270 V0397 Cep EA 7.39 0 7.81 Hp +302 V0398 Cep SRB 6.30 0 6.40 Hp +386 V0399 Cep IA 9.15 0 9.35 Hp +1041 V0400 Cep WR 10.58 0 10.77 Hp +1131 V0401 Cep SRB 8.17 0 8.33 Hp +2299 V0402 Cep DSCTC 10.56 0 10.64 Hp +9014 V0403 Cep SRB: 7.19 0 7.33 Hp +9717 V0404 Cep LB: 9.78 0 9.96 Hp +12805 V0405 Cep EA: 8.75 0 8.95 Hp +18468 V0406 Cep LB: 8.23 0 8.36 Hp +20315 V0407 Cep DSCTC 8.06 0 8.15 Hp +20860 V0408 Cep GCAS: 5.41 0 5.50 Hp +21499 V0409 Cep LB: 9.30 0 9.42 Hp +34575 V0410 Cep LB: 8.07 0 8.17 Hp +41118 V0411 Cep LB 8.27 0 8.42 Hp +99381 V0412 Cep LB 7.45 0 7.82 Hp +100746 V0413 Cep E: 7.54 0 7.59 Hp +102358 V0414 Cep SRB: 5.87 0 6.04 Hp +102445 V0415 Cep EA 7.90 0 8.23 Hp +102558 V0416 Cep SRB: 6.75 0 6.90 Hp +102926 V0417 Cep GCAS: 8.28 0 8.48 Hp +102943 V0418 Cep BE 9.34 0 9.48 Hp +104719 V0419 Cep LC: 6.28 0 6.55 Hp +104883 V0420 Cep GCAS 8.54 0 8.83 Hp +105091 V0421 Cep BE: 6.45 0 6.51 Hp +105193 V0422 Cep LB 6.37 0 6.51 Hp +105337 V0423 Cep LB 8.74 0 8.99 Hp +105690 V0424 Cep EA 8.92 0 9.28 Hp +105934 V0425 Cep LPB 9.20 0 9.31 Hp +105949 V0426 Cep LB 6.04 0 6.19 Hp +105960 V0427 Cep EB: 9.17 0 9.27 Hp +106200 V0428 Cep EB 8.29 0 8.62 Hp +106285 V0429 Cep ACYG: 7.48 0 7.54 Hp +106400 V0430 Cep BY: 9.41 0 9.52 Hp +106604 V0431 Cep ACV 6.42 0 6.47 Hp +106716 V0432 Cep BE 8.56 0 8.66 Hp +106712 V0433 Cep GCAS: 8.19 0 8.36 Hp +106964 V0434 Cep E 9.12 0 9.31 Hp +107353 V0435 Cep BE 9.48 0 9.59 Hp +107473 V0436 Cep SRB 7.68 0 8.06 Hp +107725 V0437 Cep LB: 9.32 0 9.49 Hp +108133 V0438 Cep SRB 6.32 0 6.49 Hp +108546 V0439 Cep BE: 7.69 0 7.80 Hp +108714 V0440 Cep ACYG: 9.43 0 9.55 Hp +108646 V0441 Cep EA 8.74 0 9.22 Hp +108938 V0442 Cep EB 6.93 0 7.06 Hp +108957 V0443 Cep EA 8.44 0 8.70 Hp +109124 V0444 Cep ELL: 6.33 0 6.40 Hp +109191 V0445 Cep ELL: 6.88 0 6.91 Hp +109311 V0446 Cep EA 7.31 0 7.45 Hp +109505 V0447 Cep LPB: 7.39 0 7.44 Hp +109606 V0448 Cep E: 9.59 0 9.73 Hp +110200 V0449 Cep ACYG: 8.95 0 9.06 Hp +110662 V0450 Cep BE 10.29 0 10.45 Hp +111250 V0451 Cep LB 10.27 0 11.12 Hp +112088 V0452 Cep SRD 8.74 0 8.84 Hp +112972 V0453 Cep EA 7.54 0 7.66 Hp +113065 V0454 Cep EA: 9.15 0 9.25 Hp +113263 V0455 Cep ACYG 8.48 0 8.53 Hp +113316 V0456 Cep ACV: 7.18 0 7.23 Hp +114344 V0457 Cep LPB 8.17 0 8.22 Hp +114791 V0458 Cep WR 9.64 0 9.82 Hp +115262 V0459 Cep DSCTC 7.72 0 7.75 Hp +116622 V0460 Cep LB 8.35 0 8.55 Hp +117469 V0461 Cep LB: 8.06 0 8.18 Hp +117670 V0462 Cep EB 8.66 0 8.77 Hp +40 V0463 Cep E: 10.24 0 10.55 Hp +109743 V0741 Cep EA 9.09 0 9.25 9.17 V 51450.602 6.00911 04 B8 +139 V0747 Cep EA 9.97 0 10.13 10.05 V 54400.5322 5.33146 06 O5V(f)n +106032 β Cep BCEP 3.16 0 3.27 V 40444.625 0.1904881 50 B2IIIeV +110991 δ Cep DCEP 3.48 0 4.37 V 36075.445 5.366341 25 F5Ib-G1Ib +109857 ε Cep DSCTC 4.15 0 4.21 V 0.041242 F0IV +109492 ζ Cep E: 3.50 0 3.54 Hp +107259 μ Cep SRC 3.43 0 5.1 V 730. M2eIa +107418 ν Cep ACYG 4.25 0 4.35 V +11350 R Cet M 7.2 0 14. V 43768. 166.24 43 M4e-M9 +1728 T Cet SRC 5.0 0 6.9 V 40562. 158.9 M5-6SIIe +11910 U Cet M 6.8 0 13.4 V 42137. 234.76 44 M2e-M6e +15465 X Cet M 8.4 0 13.0 V 41953. 177.14 49 M2e(S)-M6e +7149 RR Cet RRAB 9.10 0 10.10 V 33181.404 0.55302814 12 A7-F5 +4725 RU Cet RRAB 10.83 0 12.13 V 39826.411 0.586280 18 A7:-F8 +10491 RV Cet RRAB 10.35 0 11.22 V 39113.363 0.623403 20 F0-G5 +2655 RX Cet RRAB 11.01 0 11.75 V 40125.799 0.5736918 20 F0:-F4 +11517 RZ Cet RRAB 11.24 0 12.36 V 33906.892 0.51061074 16 A6-F4 +7647 SW Cet LB 9.8 0 10.9 p M7III +8294 TT Cet EW/KE: 10.8 0 11.32 11.1 V 32545.830 0.4859565 A +15090 TV Cet EA/DM 8.60 0 9.32 9.10 V 41275.962 9.1032884 03 F2 +8447 TW Cet EW/KW 10.43 0 11.18 11.14 V 42373.378 0.3168519 G5+G5 +320 UU Cet RRAB 11.54 0 12.36 V 41208.576 0.606081 20 A7-F6: +7417 WY Cet EA/SD: 9.6 0 10.4 p 26619.350 1.939675 13 A2 +13937 XY Cet EA/DM 8.65 0 9.54 9.34 V 38372.949 2.780712 10 Am+Am +9361 XZ Cet RRAB 9.24 0 9.71 V 0.8231000 22 A +9258 AA Cet EW/KE 6.2 0 6.7 6.7 p 41268.689 0.53616996 F2 +11348 AB Cet ACV: 5.71 0 5.88 V 33226.69 2.997814 50 A5Vp(Sr-Cr) +893 AC Cet LB 7.96 0 8.29 V M5III +1158 AD Cet LB: 4.9 0 5.16 V M3III +1170 AE Cet LB: 4.26 0 4.46 V M1III-M3III +2215 AG Cet SRB 6.99 0 7.45 V 90. M3 +4707 AK Cet LB 7.68 0 7.94 V M3 +5368 AL Cet LB 8.75 0 9.07 V M5III +5559 AM Cet SRB 6.84 0 7.12 V 70. M5III +8521 AQ Cet LB 8.49 0 9.00 V MC +9372 AR Cet SR: 5.40 0 5.61 V M3III +10733 AS Cet LB 7.90 0 8.09 V M2 +12594 AT Cet SRB 8.08 0 8.32 V 60. M5 +6539 AV Cet DSCTC 6.20 0 6.22 V 0.070 F0V +5951 AY Cet RS 5.35 0 5.58 V G5III-IVe +3025 BB Cet ACV 6.63 0 6.64 V 42620.629 1.4788 30 B8p(Si) +4488 BC Cet ACV 7.64 0 7.66 V 1.11 A0p(Si) +1792 BD Cet RS 8.2 1 0.10 V +1803 BE Cet BY 6.38 0 6.43 V +2852 BG Cet DSCTC 6.35 1 0.00 B +6448 BI Cet RS 8.08 0 8.30 V +8778 BK Cet DSCTC 5.73 0 5.81 V +12460 BS Cet DSCTC 6.65 0 6.73 V +2762 BU Cet RS 3.86 0 3.96 K +13976 BZ Cet BY 7.95 1 0.05 V +520 CE Cet SRB 7.54 0 7.67 Hp +696 CF Cet SRB 6.11 0 6.27 Hp +720 CG Cet SRB 7.12 0 7.23 Hp +1032 CH Cet LB 8.53 0 8.67 Hp +1378 CI Cet ACV: 9.46 0 9.52 Hp +1808 CK Cet EB 10.41 0 10.74 Hp +2274 CL Cet RRC: 9.88 0 10.00 Hp +2618 CM Cet LB: 9.58 0 9.73 Hp +3158 CN Cet EA: 9.10 0 9.74 Hp +4106 CO Cet SRD 7.48 0 7.61 Hp +4530 CP Cet SRD 8.57 0 8.63 Hp +4586 CQ Cet SRB 7.11 0 7.24 Hp +4726 CR Cet SRB 6.81 0 6.94 Hp +5227 CS Cet BY: 7.89 0 7.95 Hp +5452 CT Cet EW 9.41 0 9.59 Hp +6286 CU Cet SRB 8.66 0 9.70 Hp +6430 CV Cet SRB 9.23 0 9.65 Hp +6501 CW Cet RR: 8.40 0 8.49 Hp +7021 CX Cet E: 9.60 0 10.22 Hp +7218 CY Cet SRB: 7.98 0 8.11 Hp +7757 CZ Cet SRB 7.28 0 7.40 Hp +7986 DD Cet SRD 7.30 0 7.34 Hp +8196 DE Cet SRB 7.39 0 7.57 Hp +8337 DF Cet LB: 8.55 0 8.66 Hp +8579 DG Cet E 9.03 0 9.49 Hp +8574 DH Cet SR 9.31 0 9.93 Hp +8646 DI Cet SRD 9.42 0 9.72 Hp +9141 DK Cet BY: 8.16 0 8.28 Hp +9274 DL Cet SRB 11.29 0 11.76 Hp +9701 DM Cet LB 7.27 0 7.52 Hp +9854 DN Cet SRB 8.51 0 8.72 Hp +9996 DO Cet LB: 7.93 0 8.03 Hp +10099 DP Cet EA 6.85 0 7.05 Hp +10522 DQ Cet LB 7.76 0 8.02 Hp +10591 DR Cet SRB 9.14 0 9.35 Hp +10579 DS Cet EA: 8.97 0 9.34 Hp +11314 DT Cet EB: 9.15 0 9.27 Hp +11864 DU Cet LB: 10.08 0 10.32 Hp +11921 DV Cet LB: 8.35 0 8.45 Hp +11998 DW Cet SRB 8.47 0 8.63 Hp +12113 DX Cet DSCT 6.96 0 7.16 Hp +12311 DY Cet EW 9.54 0 10.12 Hp +12317 DZ Cet LB: 8.00 0 8.13 Hp +13198 EF Cet LB: 12.08 0 12.53 Hp +13495 EG Cet SRB 6.36 0 6.52 Hp +13756 EH Cet SRB: 6.05 0 6.22 Hp +14087 EI Cet ACV: 9.07 0 9.16 Hp +14731 EK Cet BY: 11.59 0 11.99 Hp +14915 EL Cet LB: 5.66 0 5.70 Hp +15728 EM Cet EA: 9.75 0 10.09 Hp +11192 EP Cet GDOR 6.74 0 6.77 V +5938 EW Cet BY 7.55 1 0.03 V 7.85 K0V +7576 EX Cet BY 7.66 1 0.02 V 7.15 G5V +7852 EY Cet BY 8.50 1 0.03 V 9.17 G0 +8486 EZ Cet BY 6.75 1 0.05 V 8.92 G1V +9716 FN Cet BY 7.79 1 0.04 V 15.78 K0V +9807 FO Cet GDOR 6.68 0 6.75 V 0.8227 F0 +11261 FR Cet * 6.31 0 6.65 V A0III +12031 FS Cet R 12.41 1 0.01 V DAwke+M1.5V +12158 FT Cet BY 8.10 1 0.04 V 11.784 K0V +13968 FU Cet * 7.86 1 0.05 V 21.20 G2III-IV +14228 HT Cet GDOR 7.06 1 0.02 B 1.0833 F2 +14135 α Cet LB: 2.45 0 2.54 V M2III +12387 δ Cet BCEP 4.05 0 4.10 V 38338.4763 0.16113668 B2IV +10826 ο Cet M 2.0 0 10.1 V 44839. 331.96 38 M5e-M9e +66121 S Cha CST 6.51 0 V F5V +58285 T Cha INSB 10.09 0 14.0 V F5 +42794 RS Cha EA+DSCT 6.02 0 6.68 6.53 V 42850.7688 1.669870 15 A5V+A7V +52381 RZ Cha EA/DM 8.2 0 9.1 8.8 p 41401.7711 2.832084 11 F5+F5V +53691 CR Cha INB 11.20 0 11.37 V K2e +54413 CU Cha INA 8.38 0 8.48 V B9-A0Vpe +54744 CV Cha INB 10.93 0 10.98 V G8e(T:) +54365 DI Cha INT 10.65 0 10.74 V +44145 DM Cha SRB 8.22 0 8.36 Hp +44189 DN Cha SRB 7.62 0 7.72 Hp +44800 DO Cha ELL: 7.74 0 7.78 Hp +48027 DP Cha SRB 7.84 0 7.98 Hp +51632 DQ Cha ACV 7.80 0 7.84 Hp +52340 DR Cha E 5.94 0 5.99 Hp +55085 DS Cha LB: 8.96 0 9.09 Hp +57263 DT Cha LB: 8.56 0 8.66 Hp +57505 DU Cha LB 7.10 0 7.55 Hp +57661 DV Cha ACV 9.93 0 10.07 Hp +58400 DW Cha BY: 10.64 0 10.83 Hp +58520 DX Cha IA: 6.59 0 6.70 Hp +66607 DY Cha LPB 6.32 0 6.34 Hp +58410 EE Cha DSCT 7.04 0 7.15 B +59093 EF Cha DSCT 7.86 0 7.97 B +49416 ER Cha DSCTC 7.6 1 0.08 B +46928 ζ Cha 5.06 0 5.17 V B5IV +68837 U Cir SR 12.0 0 13.5 p 23950. 145. C +68692 AT Cir EA/DM 8.4 0 8.8 p 15221.517 3.257494 15 A5IV/V +72583 AV Cir DCEP 8.0 0 8.6 p 38206.05 3.0651 40 F7II +72773 AX Cir DCEP 5.65 0 6.09 V 38199.54 5.273268 32 F2-G2II+B4 +72264 BP Cir CEP 7.54 1 0.33 V 2.3984 42 F2/3II +70346 BS Cir ACV 6.7 1 0.14 V 2.205 A2p(Si-Cr) +71960 BT Cir DSCTC 7.4 1 0.01 V +72121 BU Cir BCEP 6.10 1 0.02 V +73483 BV Cir DSCT 6.8 1 0.10 V +74634 CC Cir WR 11.71 1 0.10 V +67226 CD Cir LB: 7.74 0 7.82 Hp +68750 CE Cir E: 7.94 0 8.06 Hp +69445 CF Cir WR 11.89 0 12.40 Hp +71313 CG Cir EA 10.34 0 10.76 Hp +71359 CH Cir ACV 7.72 0 7.78 Hp +71390 CI Cir LB 7.12 0 7.23 Hp +71668 CK Cir BE 6.81 0 6.89 Hp +72032 CL Cir EA 8.57 0 9.15 Hp +72377 CM Cir ACV 7.08 0 7.14 Hp +72367 CN Cir EB 8.92 0 9.18 Hp +72438 CO Cir BE 5.79 0 5.92 Hp +72592 CP Cir GCAS: 7.51 0 7.74 Hp +72616 CQ Cir BE 9.91 0 10.06 Hp +72989 CR Cir LC: 7.39 0 7.50 Hp +73247 CS Cir EB 8.95 0 9.14 Hp +74011 CU Cir BE 8.48 0 8.59 Hp +74147 CV Cir BE 6.90 0 7.03 Hp +74654 CW Cir BE 7.95 0 8.16 V +74660 CX Cir ACYG: 8.04 0 8.23 Hp +75054 CY Cir LB 6.98 0 7.14 Hp +75224 CZ Cir ACYG: 7.92 0 8.02 Hp +69867 DF Cir RS 7.54 1 0.08 V 0.646 F5V +71908 α Cir ACVO 3.18 0 3.21 V +75323 γ Cir BE: 4.50 0 4.56 Hp +74778 δ Cir ELL 5.08 1 0.1 V +73129 tet Cir GCAS 5.02 0 5.44 V B3Vne +27286 S Col M 8.9 0 14.2 V 40559. 325.85 46 M6e-M8 +24824 T Col M 6.6 0 12.7 V 41973. 225.84 50 M3e-M6e +24514 RS Col EW/DW 9.54 0 9.99 9.97 V 40612.6483 0.672355 G+G +29528 RX Col RRAB 11.4 0 12.6 p 28812.567 0.594043 +24471 RY Col RRAB 10.44 0 11.24 V 34310.565 0.4788571 15 A7-F3 +23868 SU Col RRAB 11.3 0 12.3 p A2II +25194 SW Col LB: 5.71 1 0.34 V M1III +31099 SX Col LB: 6.28 1 0.13 V M1III +28489 TW Col ACV 7.0 1 0.03 V +27727 TZ Col RS 9.05 1 0.06 V +23815 UZ Col LB: 8.59 0 8.74 Hp +23981 VV Col LB 9.34 0 9.61 Hp +24710 VW Col EA 9.24 0 10.33 Hp +24713 VX Col LB: 8.48 0 8.58 Hp +25710 VY Col SRB 7.65 0 7.89 Hp +25775 VZ Col BY: 9.77 0 9.91 Hp +26123 WW Col LB: 9.52 0 9.65 Hp +26401 WX Col RS: 9.36 0 9.48 Hp +26620 WY Col LB: 9.19 0 9.30 Hp +26868 WZ Col LPB: 5.27 0 5.29 Hp +26959 XX Col SRB 6.75 0 6.93 Hp +27221 XY Col LB: 8.94 0 9.10 Hp +27407 XZ Col LB: 9.17 0 9.27 Hp +27473 YY Col SRD 8.47 0 8.64 Hp +27656 YZ Col SRD 9.06 0 9.23 Hp +27776 ZZ Col SRB 8.68 0 8.85 Hp +27925 AA Col DSCTC 8.18 0 8.25 Hp +28017 AB Col SRB: 7.71 0 7.87 Hp +28770 AC Col SRD 8.58 0 9.09 Hp +29096 AE Col BY: 11.69 0 11.99 Hp +29263 AF Col LB 5.46 0 5.68 Hp +29592 AG Col LB 8.78 0 9.10 Hp +30587 AH Col ACV 7.83 0 7.89 Hp +30875 AI Col SRB 8.15 0 8.27 Hp +31113 AK Col EA 9.03 0 9.25 Hp +31116 AL Col ACV 7.46 0 7.53 Hp +31701 AM Col LB 9.05 0 9.31 Hp +25007 AN Col BE 6.03 0 6.11 V +24947 AS Col RS: 7.34 0 7.38 V 0.690 F5/6V +29159 AU Col DSCTC 7.45 1 0.04 V 0.143 A2V +28836 AW Col EA 8.00 0 9.74 8.17 V 52764.4934 10.319 04 A3m +27810 λ Col ELL: 4.85 0 4.92 V 0.640 35 B5V +58854 R Com M 7.1 0 14.6 V 43539. 362.82 38 M5e-M8ep +61225 S Com RRAB 10.89 0 12.13 V 40654.641 0.5865907 14 A6-F7 +61809 U Com RRC 11.50 0 11.97 V 24961.445 0.2927382 35 A8-F0 +61243 RW Com EW/KW 11.00 0 11.70 11.56 V 40022.4163 0.2373459 G2+G2 +61414 RZ Com EW/KW 10.42 0 11.13 11.09 V 34837.4198 0.33850604 K0+G9 +64875 ST Com RRAB 10.91 0 11.84 V 43224.506 0.59892864 19 F2-F8 +61071 UU Com ACV+DSCTC 5.41 0 5.46 V 40334.194 A3p(Sr-Cr-Eu) +63561 UX Com EA/AR/RS 9.96 0 10.52 10.13 V 25798.328 3.642583 08 G2III +60904 AI Com ACV+DSCT: 5.23 0 5.40 V 39586.07 5.0633 A0p(Cr-Eu-Sr) +65915 FK Com FKCOM 8.14 0 8.33 V 42192.345 2.400 40 G2eapnIII+K3V +60066 FM Com DSCTC 6.40 0 6.48 V 0.0551 A5-A7mIV-V +63950 FS Com SRB 5.30 0 6.1 V 58. M5III +58519 GK Com SRB 6.84 0 7.13 V 50. M4III +59527 GM Com DSCTC 8.06 0 8.14 V 0.208 F5V +60514 GN Com ACV: 5.15 0 5.18 V A2V(Am) +64936 HH Com ACV 7.77 0 7.85 V 41731.0 5.07 A2p(Sr-Cr-Eu) +59995 HY Com RRC 10.25 0 10.73 V +60582 IL Com RS: 8.16 1 0.04 V +63087 IN Com R:/PN 8.7 1 0.07 V +65150 IO Com EA 9.15 0 9.48 V +66286 IT Com RS 7.57 1 0.20 V +59181 IU Com BY: 12.08 0 12.54 Hp +59602 IV Com BY: 11.91 0 12.13 Hp +59889 IW Com LB 7.94 0 8.08 Hp +60867 IX Com SRB 8.60 0 8.75 Hp +60999 IY Com LB 7.29 0 7.52 Hp +61180 IZ Com LB: 8.66 0 8.80 Hp +61204 KK Com EB: 9.54 0 9.77 Hp +61290 KL Com SR: 7.25 0 7.39 Hp +61701 KM Com LB 8.25 0 9.00 Hp +61976 KN Com LB: 8.78 0 8.92 Hp +62216 KO Com LB: 7.82 0 7.92 Hp +62484 KP Com SRB: 7.64 0 7.77 Hp +62494 KQ Com LB: 8.16 0 8.25 Hp +65069 KR Com EB: 7.26 0 7.32 Hp +65841 KS Com LB 8.47 0 8.71 Hp +66179 KT Com CWB: 8.34 0 8.41 Hp +60266 KU Com DSCTC: 7.42 1 0.01 V +62763 LS Com FKCOM 4.87 0 4.97 V +63462 LU Com RS: 4.90 1 0.15 V +59152 LV Com BY 9.16 1 0.03 V 5.5 K2V +62523 LW Com BY 6.31 1 0.10 V 15.80 G5V +62758 LX Com BY 9.09 1 0.05 V 7.74 K1Ve +63951 MP Com GDOR 6.86 0 6.94 Hp 1.073 F0 +59015 MS Com GDOR 7.85 1 0.10 B 0.6879 F0V+G5:V +61011 MY Com BY 10.23 1 0.08 V 1.1489 G0 +61902 NO Com EA 6.94 0 7.02 V 48052.22 2.7044 A5mF0 +62772 NQ Com BY 10.48 1 0.06 V 3.4046 M0 +64463 NW Com DSCTC+GDO 8.43 0 8.48 V 0.047852 Am +65933 PP Com DSCTC 7.38 1 0.01 V 0.06230061 sgF1 +93449 R CrA INSA 10.0 0 14.36 B A5IIpe +92207 V CrA RCB 8.3 2 16.5 V C(R0) +88584 W CrA SRB 11.0 0 13.1 p 125. C0-3(R4) +88081 RW CrA EA/SD 9.3 0 10.3 9.4 p 31017.297 1.6835995 18 A0 +88933 QT CrA SRD: 11.4 0 12.5 p 79.145 47 A/Fe-K +92244 V0413 CrA RRAB 10.23 0 10.90 V 41500.369 0.589339 17 F0-F8 +90894 V0668 CrA DSCTC 8.70 0 8.76 V 0.088 A4/5V +91327 V0681 CrA EA/DM 7.6 0 8.1 p 28748.350 2.163925 B9.5V +92989 V0686 CrA ACV 5.25 0 5.41 5.40 V 42254.500 7.34 B8IV(Si) +89290 V0692 CrA SXARI 5.46 1 0.05 V 1.67 B3p(Si) +93552 V0701 CrA DSCTC 5.69 0 5.73 V +88517 V0711 CrA EB 8.36 0 8.69 Hp +88711 V0712 CrA SRC 7.68 0 8.06 Hp +88902 V0713 CrA LB 7.57 0 7.72 Hp +89225 V0714 CrA ACV 8.10 0 8.15 Hp +89955 V0715 CrA ACV: 6.80 0 6.85 Hp +90254 V0716 CrA LB: 7.72 0 7.84 Hp +91292 V0717 CrA SRD 7.03 0 7.13 Hp +91494 V0718 CrA LB: 5.45 0 5.51 Hp +91777 V0719 CrA BE 6.99 0 7.03 Hp +93893 V0720 CrA LB 8.57 0 9.10 Hp +93174 ε CrA EW 4.74 0 5.00 4.95 V 39707.6619 0.5914264 F2V +77442 R CrB RCB 5.71 0 14.8 V C0,0(F8pep) +75143 S CrB M 5.8 0 14.1 V 44604. 360.26 35 M6e-M8e +74881 U CrB EA/SD 7.66 0 8.79 7.72 V 16747.9718 3.45220133 14 B6V+F8III-IV +77501 V CrB M 6.9 0 12.6 V 43763. 357.63 41 C6,2e(N2e) +77460 X CrB M 8.5 0 14.2 V 43719. 241.17 46 M5e-M7e +77284 Y CrB SRB 10.9 0 12.8 p 300. M8 +76844 RR CrB SRB 8.4 0 10.1 p 60.8 50 M5 +78235 RS CrB SRA 8.7 0 11.6 p 34825. 332.2 47 M7 +76551 RT CrB EA/AR:/RS 10.20 0 10.82 10.52 V 28273.243 5.1171590 08 G0 +76343 RU CrB SRA 10.6 0 11.7 V 25812. 436. 52 M5 +79974 RV CrB RRC 11.14 0 11.70 V 42926.334 0.331565 36 A9 +76658 RW CrB EA/SD: 10.22 0 10.78 10.29 V 40751.7302 0.7264114 20 F2V +80259 RY CrB SRB 9.2 0 10.4 V 31344. 90. 52 M10III +76791 SW CrB SRB 7.8 0 8.5 V 100. M0 +79659 SX CrB LB 9.8 0 10.3 p M5 +76460 SY CrB LB 10.4 0 11.0 p M6 +75225 TV CrB RRAB 10.6 0 12.2 p 31618.537 0.5846145 15 A8 +79607 TZ CrB RS+DSCT: 5.69 1 0.05 V 23869.561 1.139789 F8V +75283 UU CrB * 8.59 0 8.64 V 44381.753 F8 +75233 UV CrB ELL 7.20 1 0.16 V +76414 XY CrB LB: 8.18 0 8.30 Hp +77605 XZ CrB LB: 9.47 0 9.66 Hp +77598 YY CrB EW 8.64 0 9.13 Hp +77841 YZ CrB LB: 9.18 0 9.30 Hp +78061 ZZ CrB LB 7.89 0 8.05 Hp +78209 AA CrB LB: 9.41 0 9.53 Hp +78777 AB CrB LB: 9.15 0 9.26 Hp +78844 AC CrB LB: 8.23 0 8.36 Hp +78959 AD CrB SRB: 8.73 0 9.11 Hp +79057 AE CrB LB: 9.97 0 10.16 Hp +79162 AF CrB LB: 9.72 0 9.83 Hp +79283 AG CrB SRB 9.10 0 9.37 Hp +80073 AH CrB SRB 8.41 0 8.93 Hp +80100 AI CrB LB: 9.18 0 9.28 Hp +78234 AL CrB * 8.49 0 8.55 V +76330 AN CrB BY 8.61 1 0.02 V 9.37 K0V +76674 AO CrB BY 8.99 1 0.04 V 6.98 G5V +78913 AT CrB BY 8.58 1 0.02 V 26.02 K3V +75011 AX CrB BY 9.04 1 0.18 V 9.24 K0V +76426 BI CrB RS: 10.00 1 0.05 V 1.3393 A0 +76452 BK CrB BY 11.30 1 0.06 V 4.3950 M2 +76267 α CrB EA/DM 2.21 0 2.32 0.25 B 23163.770 17.359907 03 A0V+G5V +75695 β CrB ACV 3.65 0 3.72 V 40335.0 18.487 F0IIIp(Sr-Cr-Eu) +76952 γ CrB DSCTC 3.80 0 3.86 V 0.030 A0IV +77512 δ CrB RS: 4.57 0 4.69 V +76127 tet CrB BE 4.06 0 4.33 V +60106 R Crv M 6.7 0 14.4 V 42781. 317.03 41 M4.5e-M9:e +62518 X Crv SRB 10.8 2 12.0 p 112.3 M6III +61620 RV Crv EB/KE 8.60 0 9.16 V 41029.384 0.7472521 F0+G0: +62611 SV Crv SRB 6.78 0 7.6 V 70. M5III +61825 SX Crv EW/KW 8.99 0 9.25 9.23 V 41017.4557 0.3166386 F8 +60421 TT Crv SR 6.47 0 6.57 V 11.5 M3III +61496 TU Crv DSCTC 6.53 1 0.02 B 0.082 F0III +58579 TX Crv E: 8.08 0 8.60 Hp +58587 TY Crv ELL 5.19 0 5.23 Hp +58596 TZ Crv SRD 8.27 0 8.47 Hp +58997 UU Crv LB: 8.95 0 9.05 Hp +59914 UV Crv BY: 9.38 0 9.49 Hp +60117 UW Crv LB 8.03 0 8.28 Hp +60213 UX Crv LB 8.08 0 8.39 Hp +60438 UY Crv BY: 10.82 0 11.00 Hp +60520 UZ Crv LB 9.45 0 9.80 Hp +61910 VV Crv EA 5.19 0 5.34 Hp +62853 VW Crv SRB: 7.48 0 7.80 Hp +62505 VZ Crv BY 7.93 1 0.03 V 18.62 K2V +53809 R Crt SRB 9.8 0 11.2 p 160. M7 +57917 S Crt SRB 10.7 0 12.3 p 155. M6e-M7e +55639 T Crt SRB 9.7 0 11.3 p 70. M4 +55825 W Crt RRAB 10.74 0 12.08 V 39644.289 0.41201459 13 A5:-F6: +57625 X Crt RRAB 11.12 0 11.76 V 41798.339 0.73283324 18 F2-F7 +53915 RT Crt M 10.8 0 14. p 27459. 342.7 M8 +57800 RU Crt LB: 8.5 0 9.5 p M3 +55173 RX Crt SRB 7.3 0 7.7 V 300. M3 +56555 SS Crt SRB 8.54 0 8.82 V 40692. 65. +56327 SU Crt DSCTC 8.62 0 8.65 V 0.055 F2V +55106 SV Crt ACV 6.32 0 6.35 0.01 B 40373.62 5.90513 A8IVp(Sr-Cr-Si) +54999 SY Crt LB: 6.34 0 6.62 V M4III +55454 SZ Crt BY 8.1 1 0.03 V +55505 TV Crt RS 8.91 0 8.98 V +53905 TW Crt EA 8.39 0 8.72 Hp +54215 TX Crt ACV 9.58 0 9.71 Hp +54799 TY Crt SRB 8.00 0 8.18 Hp +54820 TZ Crt LB 7.97 0 8.14 Hp +54974 UU Crt SRB 6.70 0 7.01 Hp +55274 UV Crt SRB 8.49 0 8.67 Hp +55294 UW Crt LB: 8.24 0 8.35 Hp +55795 UX Crt SRB 6.53 0 6.69 Hp +55910 UY Crt LB: 8.26 0 8.39 Hp +56100 UZ Crt LB 7.74 0 7.90 Hp +56139 VV Crt E:/RS: 9.48 0 9.69 Hp +56835 VW Crt LB 7.75 0 7.88 Hp +56899 VX Crt SRB: 6.14 0 6.25 Hp +57072 VY Crt DSCTC 6.94 0 7.04 Hp +57173 VZ Crt LPB: 6.89 0 6.93 Hp +57411 WW Crt LB 7.47 0 7.61 Hp +55890 XY Crt ACVO 8.5 1 0.01 B +54002 AB Crt BY 9.03 1 0.03 V 10.33 K3V +60455 R Cru DCEP 6.40 0 7.23 V 34514.629 5.82575 28 F6-G2Ib-II +62986 S Cru DCEP 6.22 0 6.92 V 34973.520 4.68997 34 F6-G1Ib-II +60259 T Cru DCEP 6.32 0 6.83 V 34541.340 6.73331 34 F6-G2Ib +63175 V Cru M 10.4 0 13.90 B 15539. 376.5 Ce(Ne) +59483 W Cru EB/GS 9.04 0 10.38 9.3 B 40731.6 198.53 G2eIab +59996 SU Cru DCEP 9.38 0 10.10 V 35075.766 12.8476 34 +59935 AB Cru EA/DM 8.56 0 9.2 8.9 B 29235.019 3.4132987 19 O8Vne +59575 AD Cru DCEP 10.64 0 11.45 V 43344.123 6.39789 30 +59026 AI Cru EA/KE 9.55 0 10.30 9.94 B 33466.3358 1.4177073 20 B2IVe +59943 AO Cru LC 8.5 0 10.0 p M0Ia/ab +61136 BG Cru DCEPS 5.34 0 5.58 V 40393.66 3.3428 47 F5Ib-G0p +59844 BH Cru M 7.2 0 10.0 8.0 V 40858. 421. SC4.5/8-e-SC7/8- +60781 BL Cru SR: 5.43 1 0.35 V M4/5III +62913 BU Cru E: 6.80 0 6.90 V 43228.61 B1.5Ib +62949 BW Cru BCEP 9.03 0 9.09 V 0.203 B2III +58910 BY Cru EB/GS/K 7.62 0 8.01 V +62027 BZ Cru GCAS 5.24 0 5.45 V +62115 CD Cru E:/WR 10.71 1 0.11 V +61966 CH Cru GCAS: 4.88 0 5.7 B +59231 CO Cru DSCTC 9.22 0 9.30 V +62937 CY Cru BCEP+E: 9.66 1 0.05 V +58513 DD Cru LB: 8.89 0 9.05 Hp +58748 DE Cru LPB 6.77 0 6.82 Hp +58783 DF Cru LPB 7.78 0 7.84 Hp +58794 DG Cru GCAS 7.43 0 7.64 Hp +58835 DH Cru ACV 7.34 0 7.40 Hp +58954 DI Cru WR 10.62 0 10.94 Hp +59653 DK Cru BE 7.80 0 7.91 Hp +59678 DL Cru ACYG 6.24 0 6.28 Hp +60128 DM Cru ACYG: 6.88 0 6.91 Hp +60786 DN Cru E: 8.73 0 8.87 Hp +61448 DO Cru BE 10.09 0 10.32 Hp +61997 DP Cru EB 9.69 0 9.98 Hp +62291 DQ Cru BE 9.03 0 9.19 Hp +62333 DR Cru BY: 8.88 0 8.99 Hp +62732 DS Cru ACYG: 5.79 0 5.84 Hp +62919 DT Cru LPB: 10.02 0 10.21 Hp +62918 DU Cru LC 7.08 0 7.52 Hp +63136 DV Cru BY: 9.38 0 9.50 Hp +63170 DW Cru ACYG: 7.43 0 7.53 Hp +62434 β Cru BCEP 1.23 0 1.31 V 0.2365072 B0.5III-IV +59747 δ Cru BCEP 2.78 0 2.84 V 0.151038 40 B2IV +63007 λ Cru BCEP: 4.62 1 0.02 V 41779.081 0.3951 B4Vne +102571 T Cyg LB: 4.91 0 4.96 V K3III +100219 U Cyg M 5.9 0 12.1 V 44558. 463.24 48 C7,2e-C9,2(Npe) +102082 V Cyg M 7.7 0 13.9 V 44038. 421.27 46 C5,3e-C7,4e(Npe) +106642 W Cyg SRB 6.80 0 8.9 B 131.1 50 M4e-M6e(Tc:)III +102276 X Cyg DCEP 5.85 0 6.91 V 43830.387 16.386332 35 F7Ib-G8Ib +102999 Y Cyg EA/DM 7.30 0 7.90 7.75 V 09453.4192 2.9963328 10 B0IV+B0IV +99653 RS Cyg SRA 6.5 0 9.5 V 38300. 417.39 C8,2e(N0pe) +97068 RT Cyg M 6.0 0 13.1 V 44588. 190.28 44 M2e-M8.8eIb +107036 RU Cyg SRA 9.2 0 11.6 p 43798. 233.43 50 M6e-M8e +107242 RV Cyg SRB 10.8 0 12.4 p 263. C6,4e(N5) +101023 RW Cyg SRC 8.05 0 9.7 V 550. M2-4Ia-Iab +99424 RX Cyg CST 8.19 0 V B0III-IVn +97150 SU Cyg DCEP 6.44 0 7.22 V 43301.778 3.8455473 37 F2-G0I-II+B7V +99310 SV Cyg LB 11.67 0 13.2 B C5,5-C7,4(N3) +99089 SW Cyg EA/SD 9.24 0 11.83 9.30 V 41867.8173 4.57313411 12 A2e+K0 +101393 SZ Cyg DCEP 8.92 0 9.84 V 43306.79 15.10965 42 F9-G5Ib +96836 TT Cyg SRB 10.2 0 11.9 B 118. C5,4e(N3e) +103656 TX Cyg DCEP 8.59 0 10.02 V 43794.971 14.7098 37 F5-G6Ib +103364 UY Cyg RRAB 10.59 0 11.46 V 22433.7270 0.56070478 22 A8-F5 +99820 VW Cyg EA/DS 10.25 0 12.58 10.31 V 41116.8678 8.4303102 11 A3e+G5 +103433 VX Cyg DCEP 9.54 0 10.55 V 43783.642 20.133407 31 F5e-G2I-II +104002 VY Cyg DCEP 9.19 0 10.02 V 43045.282 7.856982 29 F6-G1Ib +107899 VZ Cyg DCEP 8.60 0 9.28 V 41705.702 4.864453 28 F5-G0 +98814 WW Cyg EA/SD 10.02 0 13.26 10.16 V 40377.886 3.3177690 14 B8+G +100113 WX Cyg M 8.8 0 13.2 V 40480. 410.45 48 C8,2JLi(N3e) +98737 XX Cyg SXPHE 11.28 0 12.13 V 44455.3945 0.134865113 22 A5 +96112 XZ Cyg RRAB 8.9 0 10.16 V 44124.440 0.46670 A5-F5 +105539 YY Cyg SRA 12.1 0 13.2 p 29826. 388. C6,0-C7,3eaV(n) +103856 YZ Cyg CST: 8.2 0 p A0 +98856 AA Cyg SRB 9.4 0 12.4 p 212.7 S7,5-S7.5,6(MpTc +106690 AB Cyg SRB 9.5 0 10.1 p 520. M4IIIe +101270 AD Cyg LB 10.4 0 11.4 B S5,8(Nb) +95902 AF Cyg SRB 7.4 0 9.4 p 92.5 M5e-M7 +101282 AI Cyg SRB 9.2 0 11.8 p 197.3 M6-M7 +102732 AM Cyg M 11.3 0 14.5 p 30075. 370.6 M6e +95777 AW Cyg SRB 11.0 0 14.5 p 340. C4,5(N3) +98190 AX Cyg LB 7.85 0 8.8 V C4,5(N6) +99336 AY Cyg LB 11.7 0 13.9 B C4,8-C7,4(N) +100404 BC Cyg SRC 11.3 0 13.8 p 700. M3.5Ia +96647 BG Cyg M 9.0 0 12.8 V 43784. 288.0 30 M7e-M8e +98852 CD Cyg DCEP 8.35 0 9.56 V 43831.167 17.073967 28 F8-K0Ib +103505 CG Cyg EA/SD/RS 9.73 0 10.86 10.44 V 39425.1221 0.63114100 13 G9.5V+K3V +95413 CH Cyg ZAND+SR 5.60 0 8.49 V M7IIIab+Be +97594 CI Cyg EA/GS+ZAN 9.9 0 13.1 p 11902. 855.25 16 Bep+M5III +100048 CN Cyg M 7.3 0 15.0 V 44577. 198.53 44 M2-M7e(S) +106752 CP Cyg CST 6.20 0 V A7III +96031 DD Cyg M 10.5 2 13. p 44568. 147.6 47 M0e +106574 DK Cyg EW/D 10.37 0 10.93 10.90 V 37999.5838 0.47069055 A7V +104185 DT Cyg DCEPS 5.57 0 5.96 V 44046.969 2.499215 48 F5.5-F7Ib-II +98376 GH Cyg DCEP 9.50 0 10.33 V 42743.743 7.817930 33 F5-G1 +101748 GO Cyg EB/KE 8.47 0 9.09 8.73 V 33930.4056 0.71776382 B9n+A0n:V +99599 KU Cyg EA/D:/RS: 10.73 0 12.38 11.15 V 33884.84 38.4393 08 F4p+K5eIII: +108205 LW Cyg LB 12.30 2 14.5 B C5,4(R3) +108508 MR Cyg EA/SD 8.75 0 9.68 9.12 V 33396.4069 1.67703362 22 B3V+B9 +99567 MW Cyg DCEP 9.14 0 9.90 V 42923.839 5.954586 30 F8-G2Ib +100258 MY Cyg EA/DM 8.30 0 9.02 8.99 V 33847.607 4.0051873 09 A7:m+A5:m +105485 MZ Cyg CWA: 10.76 0 12.68 V 43983.40 21.314 34 G1-G3 +100198 V0346 Cyg EA/SD 11.8 0 13.5 11.9 p 35686.750 2.743282 14 A5 +102648 V0367 Cyg EB/GS/SD: 6.67 0 7.60 7.16 V 37390.855 18.59773 B8peIa+F4III +97634 V0380 Cyg EA/DM 5.61 0 5.78 5.76 V 41256.053 12.425612 11 B1III+B3V: +100135 V0382 Cyg EB 8.29 0 9.18 9.12 V 36814.7706 1.8855146 O7+O8V +101035 V0383 Cyg CWB: 10.60 0 11.14 V 37298.125 4.612211 35 +104877 V0386 Cyg DCEP 9.25 0 9.97 V 42777.188 5.257606 29 F5-G1Ib +104371 V0389 Cyg * 5.55 0 5.71 V B9Vp(Si) +95816 V0401 Cyg EW/KE 10.64 0 11.17 11.13 V 43835.259 0.5827220 F0 +99276 V0402 Cyg DCEP 9.53 0 10.22 V 41698.635 4.364836 30 G0III +108183 V0413 Cyg LB 12.4 0 13.2 p C5,4(N3) +100214 V0444 Cyg EA/WR 7.92 0 8.22 8.06 V 41164.332 4.212424 20 O6+WN5.5 +99021 V0448 Cyg EB/SD 7.90 0 8.72 8.40 V 16361.107 6.5197162 O9.5e+B1Ib-II +104564 V0459 Cyg DCEP 10.27 0 10.99 V 36808.656 7.25125 29 F8 +107129 V0460 Cyg SRB 5.57 0 7.0 V 180. C6,4(N1) +100193 V0470 Cyg ELL/DM 8.53 0 8.55 8.54 V 42283.860 1.873142 B2+B2 +98955 V0477 Cyg EA/DM 8.50 0 9.34 8.69 V 44189.2639 2.3469906 07 A3V+F5V +100227 V0478 Cyg EA/DM 8.63 0 9.04 9.02 V 41602.724 2.8808994 16 O9.5Vp+B0V +98411 V0482 Cyg RCB 11.8 2 15.5 p +99887 V0495 Cyg DCEP 12.2 0 12.7 p 28419.278 6.72379 17 +103241 V0520 Cyg DCEP 10.53 0 11.11 V 43670.714 4.049068 23 G0 +105369 V0532 Cyg DCEPS 8.85 0 9.30 V 41706.559 3.283612 44 F5 +106754 V0538 Cyg DCEP 10.20 0 10.73 V 42772.924 6.118961 33 +98165 V0548 Cyg EA/SD: 8.54 0 9.29 8.62 V 44456.4958 1.805233 20 A1V+F7 +102195 V0568 Cyg GCAS 6.40 0 6.68 V B2IV-VeV +99675 V0695 Cyg EA/GS/D 3.73 0 3.89 V 41470.0 3784.3 02 K4Iab+B4IV-V +101341 V0729 Cyg EB/D/GS 9.05 0 9.37 9.29 V 40413.796 6.5977915 O7fIa+O8 +100582 V0744 Cyg LB 11.7 0 13.1 p C4-5,3(N) +97845 V0819 Cyg BCEP: 6.26 0 6.30 V 0.3775 B0.5IIIp +103632 V0832 Cyg GCAS 4.49 0 4.88 V B1.5Venn +105437 V0836 Cyg EB/KE 8.57 0 9.23 8.77 V 44853.4903 0.6534122 A0V +96596 V0924 Cyg DCEPS 10.56 0 10.85 V 43066.075 5.571472 40 F6 +97151 V0973 Cyg SRB 7.75 0 8.6 B 40. M3IIIa +99525 V1042 Cyg WR 8.06 0 8.16 V WC8(+OB) +104263 V1061 Cyg EA/D 9.4 0 9.9 9.5 p 26355.233 2.346656 07 F8 +105562 V1070 Cyg SRB 6.5 0 8.5 V 73.5 M7III +105739 V1073 Cyg EW/KE 8.23 0 8.61 8.57 V 38672.5816 0.7858597 A3Vm +96620 V1143 Cyg EA/DM 5.85 0 6.37 6.06 V 42212.7651 7.6407613 02 F5V+F5V +97439 V1154 Cyg CEP 8.95 0 9.37 V 37706.721 4.925537 31 G2 +99648 V1183 Cyg LB 10.5 0 11.7 p M6 +96292 V1264 Cyg ACV 6.48 0 6.67 V 40848.258 1.84534 40 B9p(Si-Cr-Sr) +96988 V1276 Cyg DSCTC 6.50 0 6.53 V 0.088 F3III +105269 V1334 Cyg DCEPS 5.77 0 5.96 V 40124.533 3.332816 50 F2Ib +107140 V1339 Cyg SRB 5.9 0 7.1 V 35. M3-M6 +96919 V1351 Cyg LB 6.33 0 6.55 V M5IIIa +98298 V1357 Cyg ELL+XF 8.72 0 8.93 8.88 V 41561.22 5.599824 O9.7IabpeV +98778 V1362 Cyg E: 8.09 0 8.21 V 7. B5II:nea +99672 V1372 Cyg ACV 7.33 0 7.39 V 18.2 A4p(Cr) +103655 V1396 Cyg UV+BY: 11.4 0 11.65 B M3Ve +104573 V1425 Cyg EB/KE: 7.7 1 0.45 0.31 V 40400.944 1.252387 B9+A0 +106628 V1427 Cyg GCAS 9.10 0 9.19 V B3eq +99848 V1488 Cyg EA/GS/D 3.90 0 4.14 V 41256.96 1147.4 02 K5Iab+B4IV-V +97472 V1507 Cyg E 6.92 0 7.04 7.01 V 43760.37 27.9705 B8II-IIIep +97630 V1509 Cyg LB 5.08 0 5.4 V M2IIIa +107983 V1578 Cyg INA 10.09 0 10.24 V A0eq +100250 V1584 Cyg ACV 6.48 1 0.04 V 41153.246 1.132854 B9p(Si) +107856 V1619 Cyg ACV 6.17 1 0.01 V 20.70 B8IIIp(Hg-Mn) +99303 V1624 Cyg SXARI 4.91 0 4.97 V 43699.12 0.70 B3VeV +99770 V1644 Cyg DSCTC 4.94 0 4.97 V 0.031 A2V +102724 V1661 Cyg ACYG 4.81 0 4.87 V B3eaIa +96362 V1671 Cyg SXARI 7.45 0 7.46 V 44107.24 9.35 B2Vp +98572 V1675 Cyg INSB 8.4 0 9.1 p M2 +99002 V1676 Cyg WR 6.75 0 6.84 V WN5+O9.5Ia +99769 V1679 Cyg WR 5.99 0 6.5 K WC6-7+Be +100289 V1685 Cyg INA 10.58 0 10.72 V B2e +100287 V1687 Cyg WR 4.0 1 2.5 K WC7p+O5 +102088 V1696 Cyg * 10.30 1 0.06 V 38626.237 4.3174 WN7.5 +104029 V1719 Cyg RRC 7.95 0 8.33 V 43776.715 0.267299 49 F5III +104290 V1720 Cyg ELL: 7.77 0 7.79 7.79 V 42692.557 0.248331 G5III +95556 V1741 Cyg ACV 4.60 1 0.02 U 41451.03 0.68674 B9p(Si) +96198 V1743 Cyg SRB: 5.96 1 0.18 V 40. M4.5III +96480 V1744 Cyg ACV: 7.5 1 0.04 V 44100.28 12.46 40 B9 +96530 V1745 Cyg DSCTC 7.3 0 7.34 V 0.0534 A3V +98425 V1746 Cyg GCAS+BCEP 5.19 1 0.07 V B3IV-Ve +94013 V1762 Cyg RS 5.81 0 6.03 V +96467 V1764 Cyg RS 7.69 1 0.15 V +97485 V1765 Cyg EB/GS+ACY 6.44 1 0.16 V +98863 V1768 Cyg ACYG 5.56 0 5.70 V +99377 V1769 Cyg EA/D/WR 7.99 0 8.09 V +99546 V1770 Cyg E:/WR 7.48 0 7.52 V +100142 V1773 Cyg ELL 6.44 1 0.05 V +102953 V1792 Cyg ELL 7.29 1 0.09 V +103144 V1794 Cyg FKCOM 7.23 1 0.17 V +104214 V1803 Cyg BY 5.19 0 5.27 V +105186 V1809 Cyg ELL 4.98 0 5.09 V +96003 V1817 Cyg RS: 6.37 1 0.05 V +96862 V1818 Cyg EA: 8.68 0 8.96 B +103968 V1898 Cyg EA/DM 7.71 0 8.15 V +96310 V1919 Cyg LB 6.66 0 6.73 V +103732 V1931 Cyg E+BE 5.33 0 5.48 V +105733 V1934 Cyg ACV 6.51 1 0.02 U +108845 V1942 Cyg ACV 5.47 1 0.05 U +96295 V1966 Cyg E:/PN 9.95 0 10.04 V +97235 V1967 Cyg SRB 7.43 0 7.83 V +103828 V1981 Cyg SRB 7.5 0 8.1 B +99031 V2008 Cyg RS: 5.36 1 0.05 V +99580 V2011 Cyg * 7.93 1 0.07 B +101138 V2014 Cyg BCEP: 4.86 1 0.03 B +101475 V2015 Cyg ACV 5.62 1 0.02 B +100586 V2031 Cyg EA 8.53 0 8.67 V +108198 V2075 Cyg RS 7.46 1 0.36 V +94743 V2077 Cyg E: 9.16 0 9.31 Hp +95187 V2078 Cyg BY: 11.34 0 11.65 Hp +95543 V2079 Cyg ACV: 7.00 0 7.06 Hp +95611 V2080 Cyg EA 7.46 0 7.87 Hp +95691 V2081 Cyg CEP: 8.69 0 8.75 Hp +95833 V2082 Cyg ELL 6.72 0 6.77 Hp +96011 V2083 Cyg EA 6.94 0 7.18 Hp +96189 V2084 Cyg DSCTC 7.41 0 7.46 Hp +96533 V2085 Cyg LB 7.29 0 7.40 Hp +96687 V2086 Cyg LB: 8.20 0 8.31 Hp +96872 V2087 Cyg LB 7.23 0 7.37 Hp +96966 V2088 Cyg DSCTC: 8.33 0 8.39 Hp +96989 V2089 Cyg SRB 8.20 0 8.35 Hp +97142 V2090 Cyg LB 6.32 0 6.73 V +97501 V2091 Cyg LB: 8.34 0 8.59 Hp +97584 V2092 Cyg LPB 8.20 0 8.24 Hp +97651 V2093 Cyg LB 6.00 0 6.40 Hp +98028 V2094 Cyg ACV 7.70 0 7.79 Hp +98156 V2095 Cyg ACV: 7.86 0 7.94 Hp +98121 V2096 Cyg SRD 7.98 0 8.09 Hp +98289 V2097 Cyg LPB 7.68 0 7.71 Hp +98283 V2098 Cyg LB 8.22 0 8.42 Hp +98422 V2099 Cyg SRB: 8.15 0 8.24 Hp +98379 V2100 Cyg LPB: 6.05 0 6.11 Hp +98424 V2101 Cyg LB 6.74 0 7.06 Hp +98603 V2102 Cyg LB 9.94 0 10.49 Hp +98635 V2103 Cyg BE 9.09 0 9.21 Hp +98611 V2104 Cyg IA 7.63 0 7.76 Hp +98729 V2105 Cyg ACYG: 8.07 0 8.17 Hp +98902 V2106 Cyg LB 8.42 0 8.61 Hp +99246 V2107 Cyg EB 8.57 0 8.75 Hp +99279 V2108 Cyg EB 7.86 0 8.01 Hp +99252 V2109 Cyg DSCT 7.48 0 7.66 Hp +99370 V2110 Cyg LPB 7.71 0 7.79 Hp +99415 V2111 Cyg LPB 7.62 0 7.65 Hp +99403 V2112 Cyg LB 7.34 0 7.61 Hp +99953 V2113 Cyg BE 7.09 0 7.26 Hp +100051 V2114 Cyg LB 6.92 0 7.19 Hp +100140 V2115 Cyg LB: 8.52 0 8.63 Hp +100242 V2116 Cyg SXARI: 6.71 0 6.75 Hp +100308 V2117 Cyg SXARI: 8.95 0 9.15 Hp +100548 V2118 Cyg ACYG: 7.12 0 7.20 Hp +100574 V2119 Cyg BE 5.74 0 5.85 Hp +100744 V2120 Cyg GCAS 7.13 0 7.34 Hp +100859 V2121 Cyg RRAB: 5.75 0 5.84 Hp +101068 V2122 Cyg ACV: 7.58 0 7.62 Hp +101411 V2123 Cyg BE 7.71 0 7.85 Hp +101412 V2124 Cyg LB 6.80 0 6.90 Hp +101474 V2125 Cyg LC 4.67 0 4.78 Hp +101439 V2126 Cyg EB: 9.01 0 9.10 Hp +101569 V2127 Cyg ACV: 8.17 0 8.22 Hp +101632 V2128 Cyg LB: 8.65 0 8.77 Hp +101862 V2129 Cyg DSCTC 8.37 0 8.44 Hp +101949 V2130 Cyg SXARI: 6.02 0 6.04 Hp +102397 V2131 Cyg LB 8.21 0 8.47 Hp +102457 V2132 Cyg LB 8.51 0 8.74 Hp +102524 V2133 Cyg EA 8.44 0 8.75 Hp +102622 V2134 Cyg EB 8.32 0 8.49 Hp +102700 V2135 Cyg BE 8.17 0 8.29 Hp +102827 V2136 Cyg E: 6.30 0 6.38 Hp +103013 V2137 Cyg LB: 7.82 0 7.93 Hp +103126 V2138 Cyg ACV: 7.55 0 7.61 Hp +103277 V2139 Cyg BE 7.12 0 7.28 Hp +103312 V2140 Cyg ACYG: 5.65 0 5.84 V +103476 V2141 Cyg LB 7.11 0 7.38 Hp +103645 V2142 Cyg SRB 6.85 0 6.95 Hp +103667 V2143 Cyg LB: 9.24 0 9.36 Hp +103700 V2144 Cyg GCAS: 7.12 0 7.27 Hp +103873 V2145 Cyg LB 8.48 0 8.65 Hp +104130 V2146 Cyg SRA 8.45 0 8.94 Hp +104196 V2147 Cyg ACV: 8.82 0 8.89 Hp +104483 V2148 Cyg EA 6.52 0 6.69 Hp +105010 V2149 Cyg GCAS 8.77 0 8.99 Hp +105162 V2150 Cyg EW: 8.09 0 8.19 Hp +105230 V2151 Cyg NL: 12.08 0 12.89 Hp +105448 V2152 Cyg ACV: 8.94 0 9.00 Hp +105565 V2153 Cyg BE 7.52 0 7.62 Hp +105584 V2154 Cyg EA 7.85 0 8.24 Hp +105699 V2155 Cyg GCAS 7.55 0 7.80 Hp +105741 V2156 Cyg BE 8.96 0 9.04 Hp +105811 V2157 Cyg ACYG: 5.87 0 5.92 Hp +105846 V2158 Cyg LB 7.57 0 7.78 Hp +105866 V2159 Cyg ACV: 7.87 0 7.96 Hp +105963 V2160 Cyg BY: 11.02 0 11.19 Hp +106009 V2161 Cyg LPB 8.03 0 8.08 Hp +106079 V2162 Cyg BE 7.56 0 7.67 Hp +106145 V2163 Cyg BE 6.89 0 7.02 Hp +106211 V2164 Cyg LB: 8.02 0 8.15 Hp +106476 V2165 Cyg EA 8.73 0 8.92 Hp +106620 V2166 Cyg BE 8.11 0 8.23 Hp +106662 V2167 Cyg LPB 9.43 0 9.48 Hp +106694 V2168 Cyg BY: 10.18 0 10.65 Hp +106812 V2169 Cyg EB 7.61 0 7.76 Hp +107161 V2170 Cyg LB 8.16 0 8.39 Hp +107532 V2171 Cyg LB 7.21 0 7.33 Hp +108326 V2172 Cyg BE 8.17 0 8.30 Hp +108348 V2173 Cyg LPB 6.47 0 6.51 Hp +108476 V2174 Cyg ACYG: 8.92 0 9.07 Hp +108738 V2175 Cyg BE 9.26 0 9.38 Hp +120155 V2183 Cyg WR 9.80 0 10.00 Hp +102237 V2195 Cyg RR: 12.1 0 13.7 p +103736 V2200 Cyg ACV 7.12 1 0.04 U +100542 V2245 Cyg LPB: 8.50 1 0.04 V +106708 V2256 Cyg ELL 8.07 0 8.17 Hp +95934 V2286 Cyg LB 7.51 1 0.03 V +99539 V2312 Cyg LBV 6.92 1 0.08 V +100443 V2314 Cyg EA 8.64 0 8.76 Hp +101227 V2425 Cyg BY 8.35 1 0.03 V 6.94 K0 +102766 V2431 Cyg BY 8.25 1 0.03 V 22.64 K2V +103859 V2436 Cyg BY 7.69 1 0.03 V 10.526 K2V +102098 α Cyg ACYG 1.21 0 1.29 V A2Iae +102589 λ Cyg BE 4.47 0 4.54 Hp +104887 Ï„ Cyg DSCT 3.65 0 3.75 V F0IV +105138 Ï… Cyg GCAS 4.28 0 4.50 V B2Vne +97629 χ Cyg M 3.3 0 14.2 V 42140. 408.05 41 S6,2e-S10,4e(MSe +100044 P Cyg SDOR 3. 0 6. V B1Iapeq +99802 R Del M 7.6 0 13.8 V 44091. 285.07 45 M5e-M6e +102246 S Del M 8.3 0 12.4 V 44887. 277.75 52 M5e-M8 +102440 U Del SRB 7.6 0 8.9 p 110. M5II-III +101780 W Del EA/SD 9.69 0 12.33 9.79 V 43328.5495 4.806100 12 B9.5Ve+G5 +101056 RS Del SRB: 9.18 0 10.0 B 60. M5-M8 +102853 TX Del CWB: 8.84 0 9.54 V 42947.009 6.165907 33 G0-G5 +101079 CT Del LB 6.8 0 8.5 V M7 +102593 DX Del RRAB 9.52 0 10.26 V 39367.340 0.47261673 20 A9-F6 +101810 EU Del SRB 5.79 0 6.9 V 41156. 59.7 M6.4III +103246 LR Del ACV 7.7 1 0.03 V 26. A0p +102158 LU Del SR: 6.22 1 0.25 V +99995 LZ Del GCAS 7.43 0 7.63 Hp +100383 MM Del LB: 11.44 0 11.70 Hp +100468 MN Del SRB 7.17 0 7.37 Hp +100802 MO Del BY: 11.04 0 11.27 Hp +100981 MP Del EA 7.62 0 7.89 Hp +101195 MQ Del SRD 8.64 0 8.79 Hp +101236 MR Del EA 8.85 0 9.16 Hp +101238 MS Del LB 8.28 0 8.44 Hp +101316 MT Del LB 7.05 0 7.30 Hp +101369 MU Del BY: 11.56 0 11.89 Hp +101512 MV Del SRB: 7.24 0 7.34 Hp +101615 MW Del SRB: 8.48 0 8.76 Hp +101657 MX Del EB 8.99 0 9.17 Hp +102330 MY Del LB: 8.01 0 8.15 Hp +102427 MZ Del EB 8.32 0 8.54 Hp +102545 NN Del EA 8.49 0 8.92 Hp +102844 NO Del LB 9.04 0 9.40 Hp +103083 NP Del ELL: 8.89 0 8.97 Hp +103185 NQ Del LB: 11.76 0 12.16 Hp +103417 NR Del LB 7.18 0 7.48 Hp +99866 NS Del ACV 9.22 1 0.09 V +101955 OQ Del BY 7.88 1 0.04 V K5V +102490 OR Del RS 7.09 1 0.03 V 6.557 K0IV +102281 δ Del DSCT 4.38 0 4.49 V F0IV +21479 R Dor SRB 4.8 0 6.6 V 338. M8IIIe +24055 U Dor M 8.1 0 14.6 p 29850. 394.4 M8IIIe +24763 RW Dor EW/KW 10.8 0 11.4 11.2 p 30938.6017 0.285463812 G +22256 SU Dor M 8.5 2 14.0 V 40741. 235.86 +29055 VW Dor RRAB 11.22 0 12.11 V 38379.453 0.570610 20 +19722 WW Dor SRB 8.66 0 8.87 V 40625. 52. M2(Ib/II) +19826 WX Dor SRB 8.76 0 8.91 V 80. MB +23840 WZ Dor SRB 5.2 1 0.12 V 40. M3III +18691 XY Dor LB: 6.50 1 0.07 V M1III +22381 XZ Dor LB: 6.55 1 0.16 V M4III +25647 AB Dor FKCOM: 6.77 0 6.98 V +19248 AG Dor RS 8.66 0 8.83 V +22229 AL Dor EA 7.80 0 8.12 Hp +22474 AM Dor LB: 8.35 0 8.45 Hp +22663 AN Dor EA 7.61 0 7.79 Hp +23374 AO Dor LB: 8.17 0 8.28 Hp +23793 AP Dor EW: 9.38 0 9.60 Hp +24064 AQ Dor LB 8.57 0 9.00 Hp +24221 AR Dor E: 7.12 0 7.20 Hp +24823 AS Dor LB: 9.72 0 9.95 Hp +25610 AT Dor LB: 8.63 0 8.73 Hp +26324 AU Dor LB: 8.73 0 8.86 Hp +26760 AV Dor EA 9.67 0 10.09 Hp +29564 AW Dor LB: 9.17 0 9.35 Hp +30775 AX Dor LB: 8.37 0 8.47 Hp +31057 AY Dor LB: 6.77 0 7.24 Hp +26368 AZ Dor BE 6.26 0 6.29 V +21281 α Dor ACV 3.26 0 3.30 V 43481.50 2.95 50 A0IIIp(Si) +26069 β Dor DCEP 3.46 0 4.08 V 40905.30 9.8426 48 F4-G4Ia-II +19893 γ Dor EW: 4.23 0 4.27 V F0V-F5V +81014 R Dra M 6.7 0 13.2 V 44779. 245.60 45 M5e-M9eIII +81835 S Dra SRB 10.5 0 11.5 p 136. M7 +87820 T Dra M 7.2 0 13.5 V 43957. 421.62 44 C6,2e-C8,3e(N0e) +57348 Z Dra EA/SD 10.8 0 14.1 11.0 p 43499.736 1.3574560 15 F4V +91316 RS Dra SRA 9.0 0 12.0 V 15120. 282.72 44 M5e +81238 RW Dra RRAB 11.05 0 12.08 V 39377.391 0.442917 A7-F4 +63152 RY Dra SRB: 6.03 0 8.0 V 200. C4,5J(N4p) +90092 RZ Dra EB/SD: 10.11 0 11.01 10.38 V 44177.5555 0.5508738 A5 +60694 SS Dra SRB 8.4 0 10.4 V 27667. 51.5 48 M5 +56734 SU Dra RRAB 9.18 0 10.27 V 43902.0467 0.66042001 15 F2-F7 +59946 SW Dra RRAB 9.94 0 10.94 V 26224.5876 0.56966993 17 A7-F8 +94162 SZ Dra LB 10.0 0 11.0 p M5 +84213 TT Dra SRB 10.5 2 12.5 p 107. M6 +83866 TV Dra LB 10.2 0 11.6 p M8p(S) +76196 TW Dra EA/SD 8.0 0 10.5 8.1 p 44136.295 2.8068470 17 A8V+K0III +81188 TX Dra SRB 7.9 0 10.2 p 78. 50 M4e-M5 +100605 UU Dra SRB 10.8 0 12.3 p 120. 50 M8IIIe +72026 UV Dra SRA 8.6 0 9.8 V 24436.4 77.4 43 M5 +87913 UW Dra LB 7.0 0 8.2 V K5p +95154 UX Dra SRA: 5.94 0 7.1 V 168. 50 C7,3(N0) +87816 UY Dra CST: 10.99 0 V K2III-IV +84496 VW Dra SRD: 6.0 0 7.0 V 170. K1.5IIIb +76709 VY Dra CST: 9.2 0 p K2 +80102 VZ Dra RRC 11.4 0 12.2 p 43361.3979 0.3210308 A +81519 WW Dra EA/AR/RS 8.3 1 0.65 0.08 V 28020.3686 4.6296238 12 G2IV+K0IV +94134 XZ Dra RRAB 9.59 0 10.65 V 41928.374 0.476497 20 A6-F6 +100261 AC Dra LB 7.14 1 0.25 B M5IIIab +101260 AF Dra ACV 5.15 0 5.22 V 20.2747 A0p(Sr-Cr-Eu) +78512 AG Dra ZAND 8.9 0 11.8 p 38900. 554. K3IIIep +82249 AH Dra SRB 8.5 0 9.3 p 30520. 158. M7 +82884 AI Dra EA/SD 7.05 0 8.09 7.16 V 43291.627 1.1988146 18 A0V +90474 AL Dra M 11.0 0 13.8 p 39409. 330.3 M7ea +60331 AS Dra * 8.00 0 8.10 V 35926.055 5.414905 G4+G9 +79804 AT Dra LB 6.8 0 7.5 p M4IIIa +81646 AZ Dra LB 8.0 0 8.9 p M2 +87604 BB Dra LB 10.9 0 11.7 p M8 +89372 BC Dra RRAB 11.27 0 11.80 V 42278.443 0.719576 22 F5 +92489 BF Dra EA 10.1 0 10.8 p 36317.579 5.60545 06 F8 +93595 BH Dra EA/SD: 8.38 0 9.27 8.58 V 40019.7982 1.81723857 11 A2V+Ap +94869 BK Dra RRAB 10.59 0 11.87 V 25523.305 0.5920815 12 A8 +98118 BS Dra EA/DM 9.12 0 9.86 9.84 V 41461.4242 3.3640120 07 F5V+F5V +72691 BT Dra RRAB 11.36 0 12.30 V 30734.635 0.5886740 16 A8 +74370 BV Dra EW/KW 7.88 0 8.48 8.40 V 44474.327 0.3500671 F7V +74368 BW Dra EW/KW 8.61 0 9.08 9.02 V 42572.538 0.2921671 +78891 BX Dra RR 11.5 0 12.2 p 27216.410 0.561192 20 A3 +91009 BY Dra BY+UV 8.04 0 8.48 V 3.813 K3V+MVe +78180 CL Dra DSCTC 4.95 1 0.02 V 0.063 F0IV +97326 CN Dra DSCTC 6.29 1 0.09 V 0.100 F0III +60998 CQ Dra LB: 4.95 0 5.04 V M3IIIa +79796 CR Dra UV 9.46 0 12.53 U M1.5Ve +57002 CT Dra LB 9.8 0 10.4 p M +67627 CU Dra LB: 4.52 0 4.67 V M3III +92133 CX Dra GCAS+ELL 5.68 0 5.99 V B2.5Ve +100221 DE Dra EA/DM 5.72 1 0.16 V 42626.2861 5.298036 05 B9V +93727 DG Dra ELL 9.40 1 0.19 0.17 V 41851.848 0.5713698 A5V +50709 DI Dra ACV 8.2 1 0.01 B 18. A0p(Sr-Cr-Eu) +59796 DK Dra RS 6.29 1 0.19 V 44048.0 63.15 50 K0III+K0III +71876 DL Dra DSCTC 6.22 0 6.29 V F2IV +62556 DP Dra UV 10.9 1 1.55 V +80375 DQ Dra ACV 5.74 1 0.01 V +85852 DR Dra RS 6.55 1 0.12 V +86167 DZ Dra SRB: 7.6 1 0.03 V +93187 EE Dra ACV 5.84 1 0.05 U +70953 EI Dra DSCT 8.50 1 0.11 V +71631 EK Dra BY 8.15 1 0.09 B +71040 ER Dra DSCTC 6.18 1 0.03 V +87311 ET Dra FKCOM 11.52 0 11.83 U +74280 EU Dra SRD: 8.56 1 0.20 V +78519 EV Dra RS 8.63 1 0.06 V +79762 EW Dra BY 10.69 0 10.74 V +53079 FF Dra LB 8.67 0 8.90 Hp +53564 FG Dra LB 7.41 0 7.68 Hp +53732 FH Dra SRB 8.51 0 8.80 Hp +56923 FI Dra SRB 8.30 0 8.52 Hp +61006 FK Dra EA 9.30 0 9.79 Hp +63602 FL Dra LB 9.84 0 10.13 Hp +65035 FM Dra SRB 8.76 0 8.99 Hp +67238 FN Dra LB 8.13 0 8.36 Hp +71015 FO Dra LB: 9.75 0 9.91 Hp +71269 FP Dra LB: 8.55 0 8.66 Hp +72198 FQ Dra ACV: 8.17 0 8.22 Hp +73237 FR Dra LB: 8.71 0 8.83 Hp +74938 FS Dra LB 8.20 0 8.33 Hp +76047 FT Dra LB 8.35 0 8.48 Hp +76272 FU Dra EW 10.58 0 11.10 Hp +76627 FV Dra LB 7.33 0 7.48 Hp +76947 FW Dra LB 7.84 0 7.98 Hp +77037 FX Dra EB 9.29 0 9.59 Hp +77445 FY Dra LB 8.14 0 8.41 Hp +77993 FZ Dra LB: 10.49 0 10.68 Hp +80961 GG Dra EB 8.77 0 8.89 Hp +81244 GH Dra LB: 10.04 0 10.19 Hp +81284 GI Dra SRD: 8.10 0 8.15 Hp +82056 GK Dra EA 8.78 0 9.20 Hp +83102 GL Dra SRB 8.60 0 8.84 Hp +84837 GM Dra EW 8.79 0 9.02 Hp +84896 GN Dra SRB 9.06 0 10.07 Hp +85125 GO Dra LB 9.14 0 9.45 Hp +85076 GP Dra LB 6.83 0 7.05 Hp +85277 GQ Dra EB 8.98 0 9.42 Hp +85522 GR Dra L 8.30 0 8.43 Hp +85718 GS Dra LB: 9.78 0 9.91 Hp +86450 GT Dra IA: 8.13 0 8.26 Hp +87228 GU Dra LB: 10.13 0 10.35 Hp +87576 GV Dra EA 8.59 0 8.70 Hp +87541 GW Dra DSCTC 9.31 0 9.38 Hp +88411 GX Dra SRD 8.32 0 8.57 Hp +89083 GY Dra LB 9.02 0 9.26 Hp +89243 GZ Dra E: 9.52 0 9.65 Hp +90463 HH Dra LB 8.80 0 9.13 Hp +90972 HI Dra RRC 9.02 0 9.20 Hp +91061 HK Dra LB 6.56 0 6.77 Hp +91052 HL Dra EB 7.35 0 7.66 Hp +91335 HM Dra SRD 8.17 0 8.30 Hp +91983 HN Dra RR: 8.16 0 8.23 Hp +92523 HO Dra LB 8.37 0 8.54 Hp +92835 HP Dra EA 8.06 0 8.36 Hp +92889 HQ Dra LB: 9.15 0 9.28 Hp +93145 HR Dra LB 9.25 0 9.51 Hp +94361 HS Dra LB 7.24 0 7.37 Hp +94897 HT Dra LB: 8.92 0 9.05 Hp +95320 HU Dra SRB 6.96 0 7.08 Hp +94978 HV Dra SRD+E: 7.79 0 8.14 Hp +96350 HW Dra LB 6.81 0 6.98 Hp +96429 HX Dra LB: 9.56 0 9.76 Hp +96547 HY Dra SRB 8.38 0 8.53 Hp +97263 HZ Dra EA 8.16 0 8.32 Hp +97678 II Dra SRD: 7.72 0 7.79 Hp +98095 IK Dra LB: 8.17 0 8.28 Hp +98297 IL Dra LB: 8.48 0 8.60 Hp +98932 IM Dra SRB 8.08 0 8.18 Hp +99037 IN Dra DSCTC 8.05 0 8.09 Hp +99640 IO Dra DSCTC: 7.86 0 7.92 Hp +99863 IP Dra EB 7.84 0 7.90 Hp +101960 IQ Dra SRB: 8.47 0 8.95 Hp +63076 IR Dra GDOR 5.26 0 5.34 Hp +70819 IT Dra DSCTC 7.53 1 0.03 V +73869 IU Dra BY 8.42 1 0.04 V +89005 LP Dra RS 8.50 0 8.58 V +91329 LT Dra RCB 7.48 2 12.6 V +93299 LV Dra ACV 5.31 0 5.34 Hp +68076 MP Dra BY 8.45 1 0.03 V 9.52 K0V +83536 MR Dra DSCTC 8.21 1 0.01 V 0.032 A5 +86456 MS Dra BY 8.39 1 0.03 V 18.31 K0V +94346 MV Dra BY 7.04 1 0.02 V 5.49 G8V +74355 NO Dra EA 8.02 0 8.14 8.13 V 48953.470 5.47798 04 A2V +86058 NP Dra EA 9.04 0 9.15 9.15 * 48604.780 3.10886 08 A0 +58567 OR Dra DSCT 7.40 0 7.44 V 0.1128290 F2 +74037 PX Dra EA 9.82 0 6.95 6.88 V 48832.12 2.44405 12 F4III +61281 κ Dra GCAS 3.82 0 4.01 V B6IIIe +92512 ο Dra RS 4.63 1 0.10 V +89908 φ Dra ACV 4.22 1 0.04 V 42229.40 1.71646 60 A0p(Si) +103419 S Equ EA/SD 8.0 0 10.08 8.11 V 42596.7434 3.4360969 13 B9V+F9III-IV +104895 RV Equ SRB 9.09 0 9.39 V 80. K0 +103431 SV Equ EW/KE 9.25 1 0.20 0.16 V 39382.427 0.881 A0 +103586 SX Equ LB: 8.29 0 8.41 Hp +105614 SY Equ BCEP 8.47 0 8.54 Hp +104075 TV Equ BY: 7.98 1 0.02 V 7.52 G5 +104521 γ Equ ACVO 4.58 0 4.77 V 0.00868 F0p(Sr-Cr-Eu) +22881 R Eri CST: 5.72 0 V G4III +23231 S Eri RRC: 4.77 0 4.80 V 0.273 F0IV +18336 T Eri M 7.2 0 13.2 V 42079. 252.29 45 M3e-M5e +19004 V Eri SRC 8.8 0 10.4 p 97.0 M6II +19567 W Eri M 7.5 0 14.5 V 40345. 376.63 40 M7e-M9 +9767 Y Eri M 10.7 0 13.5 p 30060. 302.7 M7e +13064 Z Eri SRB 7.0 0 8.63 B 80. M4III +13384 RR Eri SRB 7.4 0 9.20 B 97. M5III +20045 RS Eri M 9.2 2 12.8 p 38048. 296.00 M7e +16647 RT Eri M 8.5 0 12.9 p 29360. 370.8 46 M7e +20429 RW Eri SRA 10.2 0 11.7 p 16780. 91.4 44 M6 +22442 RX Eri RRAB 9.17 0 10.10 V 21692.479 0.58724622 16 A7-F6 +22000 RZ Eri EA/DS/RS 7.70 0 8.72 0.04 V 43574.083 39.28238 05 A5+G8IV +14856 SV Eri RRAB 9.56 0 10.23 V 35552.109 0.7137964 30 A8-F5 +24025 SY Eri SRB 10.4 0 11.4 p 96.0 C6,3(N0) +21464 UU Eri SRB 10.6 0 12.0 p 340. M7 +14699 UX Eri EW/KW 10.5 0 11.11 11.01 V 41922.3195 0.44527942 F8 +15027 UY Eri CWB 10.93 0 11.66 V 40862.908 2.213235 28 A5-F2 +15653 VW Eri SRD 9.2 0 11.16 B 83.4 K5 +15926 VX Eri SR: 10.0 0 10.6 p M3 +19610 YY Eri EW/KW 8.1 0 8.80 8.72 V 41581.624 0.32149415 G5+G5 +16496 AS Eri EA/SD 8.29 0 9.00 8.42 V 28538.066 2.664152 09 A3V +22750 BB Eri RRAB 10.96 0 11.91 V 39559.291 0.569898 12 F4 +22234 BC Eri EW/KE 10.83 0 11.32 11.26 V 0.52778916 A6 +19717 BM Eri E:/GS+SR 8.5 0 9.3 p 31140. M6III +17821 BR Eri SRB 8.37 0 9.7 B 175.5 M5 +17859 BU Eri EA 8.5 0 9. p 32244.33 A3 +18080 BV Eri EW 8.12 0 8.63 8.42 V 43449.7103 0.5076649 F2 +11964 CC Eri BY+UV 8.70 0 9.05 V 1.56145 K7Ve +9230 CI Eri EA/SD: 9.5 0 10.5 p 28782.475 3.382880 F8V +12071 CO Eri EA/SD 9.0 0 9.6 9.1 p 28776.575 5.7836 F7V +12199 CS Eri RRC 8.75 0 9.31 V 38417.087 0.311331 47 A2 +20943 CT Eri EW/KE 10.0 0 10.52 10.27 V 44555.6736 0.634195498 F0 +12981 CU Eri CST 8.7 0 V G5 +14040 CV Eri LB: 6.10 1 0.18 V M2III +14273 CW Eri EA/DM 8.43 0 8.96 8.86 V 41267.6752 2.7283737 10 F0 +18928 CX Eri SRB 8.89 0 9.43 V 40666. 97. MA +19116 CY Eri SRB 6.95 0 7.20 V 25. M4III +19238 CZ Eri SRB 8.75 0 8.97 V 50. MA +19533 DE Eri SRB 8.91 0 9.06 V 150. M2 +19694 DF Eri SRB 8.21 0 8.33 V 40643. 36. MA +20269 DG Eri SRB 6.94 0 7.14 V 40623. 82. M4III +20506 DH Eri SRB 8.13 0 8.33 V 60. M3 +18455 DL Eri DSCTC 6.15 1 0.09 V 0.155879 F1V +21763 DM Eri SRB 4.28 0 4.36 V 30. M4III +18339 DO Eri ACVO 5.97 0 6.00 V 44577.0 12.4580 50 A5p(Sr-Cr-Eu) +18931 DP Eri SRB 7.18 0 7.40 V 55. M5III +20243 DQ Eri SRB 6.84 0 7.05 V 30. M4III +20922 DU Eri GCAS 5.41 0 5.49 V B1Vne +21296 DV Eri LB: 5.10 0 5.13 V M3III +22024 DX Eri GCAS 5.76 0 5.98 V B2Ve +21192 DZ Eri SXARI 5.73 0 5.82 Y 42815.52 1.374 B9III(Heweak) +14736 EE Eri ACV 7.33 0 7.38 V 44197.2 2.1945 B9p(Cr-Eu) +16803 EG Eri ACV 5.23 0 5.32 V 43485.50 1.93 38 B9p(Si) +21278 EH Eri ACV 5.72 1 0.03 V 43461.00 3.82 60 B9p(Si) +19431 EI Eri RS 6.95 0 7.32 V +20263 EK Eri BY 6.24 1 0.12 V +14763 EL Eri RS 7.92 0 8.20 V +20271 EM Eri * 5.84 1 0.06 V +23794 EN Eri ACV: 4.89 1 0.01 U +13402 EP Eri RS 6.03 0 6.08 V +20979 EQ Eri DSCT 7.7 1 0.10 V +17447 EU Eri SRC 7.23 0 7.86 V 395. +22192 EX Eri DSCTC 6.19 1 0.03 V +8762 FF Eri LB: 7.89 0 8.00 Hp +8985 FG Eri DSCTC: 6.75 0 6.80 Hp +12016 FH Eri SRB 6.97 0 7.09 Hp +12373 FI Eri DSCTC 8.49 0 8.59 Hp +12833 FK Eri EA 9.21 0 9.58 Hp +13130 FL Eri SRB 8.39 0 8.60 Hp +13188 FM Eri LB: 8.23 0 8.33 Hp +13293 FN Eri SRA 7.19 0 7.27 Hp +13396 FO Eri EA 8.51 0 8.80 Hp +13475 FP Eri EW 9.71 0 9.85 Hp +13493 FQ Eri LB: 8.18 0 8.28 Hp +14038 FR Eri LB: 7.41 0 7.51 Hp +14055 FS Eri LB: 8.73 0 8.83 Hp +14665 FT Eri BY: 11.96 0 12.21 Hp +14703 FU Eri EA: 9.25 0 9.59 Hp +14919 FV Eri LB: 9.01 0 9.12 Hp +16315 FW Eri E 11.87 0 12.21 Hp +16864 FX Eri EW 9.73 0 9.97 Hp +17167 FY Eri ACV 5.47 0 5.51 Hp +17145 FZ Eri SRB 7.28 0 7.52 Hp +17390 GG Eri LB: 9.57 0 9.74 Hp +17441 GH Eri EA 9.03 0 9.61 Hp +17442 GI Eri SRB 7.99 0 8.29 Hp +17530 GK Eri EA 8.96 0 9.49 Hp +17993 GL Eri SRB 6.88 0 7.11 Hp +18048 GM Eri SRB 7.37 0 7.62 Hp +18124 GN Eri LB: 8.71 0 8.82 Hp +18318 GO Eri LB: 7.14 0 7.26 Hp +18291 GP Eri SRB: 9.66 0 10.22 Hp +18398 GQ Eri LB: 8.94 0 9.09 Hp +18694 GR Eri SRB: 8.33 0 8.48 Hp +18695 GS Eri LB: 8.58 0 8.72 Hp +19062 GT Eri EA 8.57 0 9.14 Hp +19398 GU Eri LPB 5.39 0 5.42 Hp +19463 GV Eri LB: 7.21 0 7.37 Hp +19571 GW Eri EA 5.84 0 6.01 Hp +19700 GX Eri SRB: 7.51 0 7.62 Hp +19725 GY Eri LPB 6.40 0 6.42 Hp +20075 GZ Eri LB 5.94 0 6.10 Hp +20806 HH Eri EA 8.50 0 8.85 Hp +20903 HI Eri LB: 8.19 0 8.30 Hp +20992 HK Eri LB: 9.74 0 9.91 Hp +21050 HL Eri EB 8.56 0 8.60 Hp +21080 HM Eri SRB: 8.24 0 8.42 Hp +21241 HN Eri EB 8.66 0 8.97 Hp +21563 HO Eri LB: 8.25 0 8.37 Hp +21648 HP Eri SRD: 8.44 0 8.53 Hp +21688 HQ Eri LB: 8.10 0 8.34 Hp +21825 HR Eri SRB 7.33 0 7.50 Hp +21894 HS Eri DSCTC: 6.79 0 6.86 Hp +21959 HT Eri LB: 7.91 0 8.03 Hp +22171 HU Eri LB: 9.05 0 9.19 Hp +22326 HV Eri DSCTC: 8.37 0 8.46 Hp +22631 HW Eri LB: 9.31 0 9.45 Hp +19383 IK Eri GDOR 8.14 0 8.16 V +13558 IP Eri BY: 7.32 1 0.04 V K0IV+DA +14157 IR Eri RS 8.45 1 0.02 V 8.05 K0V +14684 IS Eri BY 8.48 1 0.06 V 5.41 G0V +19938 IU Eri DSCTC 7.49 0 7.55 Hp 0.0689 A2 +22263 IX Eri BY 5.47 0 5.51 V 11.3 G3V +21955 KP Eri EA 8.78 0 8.93 8.93 V 47908.707 7.447126 03 A2 +12953 KU Eri GDOR 7.83 0 7.89 Hp 2.136 F2V +7588 α Eri BE 0.40 0 0.46 Hp 1.263 B3Ve +18543 γ Eri LB: 2.88 0 2.96 V M0III +17378 δ Eri RS: 3.51 0 3.56 V +16537 ε Eri BY 3.73 1 0.05 V +23972 λ Eri BCEP 4.22 0 4.34 V 0.701538 B2IVe +22109 μ Eri EA+LPB: 4.00 1 0.05 V 52574.04 7.380618 B5IV +21444 ν Eri BCEP 3.92 1 0.14 V 33629.277 0.17790414 B2III +17593 Ï€ Eri LB: 4.38 0 4.44 V M2III +11582 R For M 7.5 0 13.0 V 41974. 388.73 52 C4,3e(Ne) +17600 S For CST: 5.6 0 8.5 V F8 +12682 X For SRB 9.5 0 10.8 p 76. M3 +16503 RZ For SRA 9.2 0 10.0 p 28075. 64.6 M5 +9932 SS For RRAB 9.45 0 10.60 V 38668.951 0.495432 17 A3-G0 +16321 SX For RRAB 10.68 0 11.38 V 39158.231 0.6053397 16 F2-G2 +11644 TY For DSCTC 6.49 0 6.51 V 0.05 A9V +15092 TZ For EA/GS 6.84 0 7.05 V 43216.558 G0III+G0III +8281 UV For RS 7.97 0 8.07 V +12716 UX For RS 7.97 0 8.11 V +12788 UY For RS 8.22 0 8.25 V +8481 VZ For SRB 9.21 0 9.33 Hp +8681 WW For SRD 9.25 0 9.49 Hp +8698 WX For LB 8.79 0 9.04 Hp +8749 WY For E: 9.91 0 10.09 Hp +8781 WZ For EA: 9.35 0 9.73 Hp +8953 XX For SRB 8.93 0 9.59 Hp +9208 XY For LB: 9.47 0 9.86 Hp +9443 XZ For EW 9.97 0 10.29 Hp +10039 YY For LB: 7.81 0 7.92 Hp +10191 YZ For BY: 10.01 0 10.20 Hp +10841 ZZ For LB: 8.99 0 9.11 Hp +10851 AA For SRC 7.89 0 8.06 Hp +11677 AB For LB: 8.33 0 8.51 Hp +11970 AC For LB: 8.49 0 8.59 Hp +12163 AD For SRB 7.44 0 7.66 Hp +14568 AE For EA 10.32 0 10.89 Hp +14605 AF For LB 8.13 0 8.46 Hp +14750 AG For SRB 7.84 0 7.97 Hp +15324 AH For LB: 8.29 0 8.42 Hp +15479 AI For SRB: 5.65 0 5.75 Hp +16247 AK For E: 9.24 0 9.35 Hp +16366 AL For LB: 8.97 0 9.09 Hp +17373 AM For SRB 6.93 0 7.15 Hp +17599 AN For LB: 8.79 0 8.95 Hp +12694 AO For BY: 7.51 0 7.54 V +10765 AV For EA 8.63 0 8.72 8.65 V 48674.823 1.87970 06 F5V +9677 ν For ACV 4.68 0 4.73 V 43475.00 1.89 B9.5p(Si) +34356 R Gem M 6.0 0 14.0 V 43325. 369.91 36 S2,9e-S8,9e(Tc) +35812 V Gem M 7.8 0 14.9 V 42694. 274.8 45 M4(S)e-M8 +31404 W Gem DCEP 6.54 0 7.38 V 42755.191 7.913779 30 F5-G1 +32512 X Gem M 7.5 0 13.8 V 43553. 264.16 49 M5e-M8e(Tc:) +37438 Y Gem SRB 10.4 0 12.3 p 160. M6e-M7 +35667 RR Gem RRAB 10.62 0 11.99 V 41357.205 0.3973106 13 A9-F6 +28537 RW Gem EA/SD: 9.53 0 11.76 9.74 V 18302.655 2.8654972 15 B5V+F5 +32791 RX Gem EA/DS 9.20 0 10.81 9.28 V 40555.782 12.2086588 09 A3IIIea+K1: +36209 RY Gem EA/DS 8.69 0 11.04 8.75 V 39732.6328 9.300567 10 A2Ve+K2IV +28625 RZ Gem DCEP 9.49 0 10.46 V 42714.970 5.529286 22 F5-F9 +28472 SV Gem EA/SD: 10.55 0 12.0 V 18662.488 4.0061216 15 B3 +38561 SZ Gem RRAB 10.98 0 12.25 V 27194.027 0.5011365 12 A0 +29416 TV Gem SRC 8.54 0 9.8 B K5.5-M1.3Iab +32083 VW Gem LB 8.14 0 8.52 V C5,4(Na) +34859 VX Gem M 10.8 2 15.1 p 41280. 379.4 C7,2e-C9,1e(Nep) +29425 WY Gem LC+E: 8.89 0 9.8 B M2epIab+B2V-B3V +28945 AA Gem DCEP 9.36 0 10.11 V 37397.250 11.30235 47 F6-G3Ib +32180 AD Gem DCEP 9.45 0 10.23 V 41694.911 3.787980 28 F5-G2: +31361 BB Gem DCEP 10.75 0 11.88 V 41839.695 2.308207 18 +30965 BK Gem ISB: 9.8 0 10.1 p K5III +35617 BM Gem SRB 11.5 0 12.1 p 286. C5,4J(Nb) +37074 BN Gem GCAS 6.75 0 6.85 V O8Vpe +34909 BQ Gem SRB 6.63 0 7.02 B 50. M4IIIab +29450 BU Gem LC 5.74 0 8.1 V M1-M2Ia-Iab +31349 CR Gem LB 10.9 0 12.10 B C8,3e(N) +31306 DX Gem DCEPS 10.53 0 10.92 V 41866.668 3.137486 50 +32427 GX Gem EB/D: 10.9 0 11.5 11.3 p 25999.696 1.35003708 G5 +31108 HX Gem LB: 12.5 0 14. p C4,4(N) +32740 IS Gem SRC 6.6 0 7.3 p 47. K3II +29687 LR Gem BCEP 9.01 0 9.12 B 0.23887 B0IV +30046 LU Gem BCEP 7.21 0 7.24 B 0.21909 B0II +33929 NP Gem LB: 5.89 0 6.04 V M1.5 +36623 NQ Gem SR+ZAND 7.4 0 7.99 V 70. C6,2(R9)eV +31829 NY Gem SRB 12.5 2 15.5 p 200. C4-5,4(N) +37521 NZ Gem SR 5.52 0 5.72 V M3II-IIIS +35933 OT Gem GCAS 6.0 0 6.44 V B2III-Ve +30630 OU Gem BY 6.76 1 0.05 V +32753 OV Gem SXARI 5.85 1 0.10 V +34038 PS Gem SRD 7.24 0 7.58 V +29225 PU Gem ACYG 5.78 0 5.82 Hp +29589 PV Gem DSCTC 7.58 0 7.64 Hp +29757 PW Gem EA: 9.14 0 9.49 Hp +29840 PX Gem ACYG 6.33 0 6.38 Hp +30452 PY Gem BE 8.40 0 8.53 Hp +30722 PZ Gem BE: 6.60 0 6.65 Hp +31236 QQ Gem E: 7.62 0 7.74 Hp +31982 QR Gem LB 7.58 0 7.73 Hp +32459 QS Gem DSCT 8.86 0 8.97 Hp +32612 QT Gem EB 7.66 0 8.06 Hp +32743 QU Gem LB: 6.88 0 7.06 Hp +32776 QV Gem LB: 6.83 0 6.92 Hp +32845 QW Gem EW 10.34 0 10.73 Hp +33166 QX Gem LPB: 8.16 0 8.22 Hp +33493 QY Gem E: 7.08 0 7.20 Hp +33583 QZ Gem SRB 8.49 0 8.63 Hp +33890 V0335 Gem EA 7.90 0 8.05 Hp +33945 V0336 Gem SRB 7.84 0 8.04 Hp +33944 V0337 Gem EA: 8.52 0 8.89 Hp +34704 V0338 Gem LB: 7.95 0 8.06 Hp +35428 V0339 Gem E: 8.94 0 9.31 Hp +35664 V0340 Gem BY: 7.62 0 7.86 Hp +36110 V0341 Gem LB 8.24 0 8.42 Hp +36412 V0342 Gem LB: 7.31 0 7.38 Hp +36386 V0343 Gem SRB 7.61 0 7.86 Hp +36822 V0344 Gem DSCTC 8.07 0 8.10 Hp +37197 V0345 Gem DSCTC: 7.82 0 7.88 Hp +37436 V0346 Gem SRD: 8.37 0 8.51 Hp +37708 V0347 Gem LB: 7.28 0 7.39 Hp +37775 V0348 Gem E: 8.50 0 8.58 Hp +34995 V0356 Gem ACV 6.89 1 0.04 V +34775 V0373 Gem EB 9.26 0 9.42 9.39 V 53343.769 1.60498 F8 +36357 V0376 Gem BY 7.73 1 0.03 V 11.63 K2V +38228 V0377 Gem BY 6.93 1 0.05 V 6.46 G5IV +35624 V0389 Gem EA 8.74 0 8.92 8.78 V 48536.929 1.04776 13 A2 +38797 V0436 Gem GDOR 7.89 1 0.06 B 0.7248 F2IV-V +34088 ζ Gem DCEP 3.62 0 4.18 V 43805.927 10.15073 50 F7Ib-G3Ib +29655 η Gem SRA+EA 3.15 0 3.9 V 37725. 232.9 50 M3IIIab +30343 μ Gem LB 2.75 0 3.02 V M3.0IIIab +37629 σ Gem RS 4.13 0 4.29 V 44677.1 19.423 K1III +33927 ω Gem CEP: 5.14 1 0.08 V 0.7282 G5II +110736 S Gru M 6.0 0 15.0 V 40608. 401.51 43 M5e-M8IIIe +110697 T Gru M 7.8 0 12.3 p 42072. 136.49 48 M1Iae-M2Ibe +112009 W Gru EA/AR 9.4 0 10.0 10.0 p 30132.149 2.9685036 11 F6IV+F6IV +107231 RS Gru DSCT 7.92 0 8.51 V 34325.2931 0.14701131 24 A6-A9IV-F0 +112532 XZ Gru RRC 10.4 0 10.7 p 38260.438 0.34741 50 +110188 AW Gru E: 10.5 0 11.0 p 36758. 120. M4III +112750 AX Gru LB: 7.0 1 0.16 V M3III +110624 BK Gru ACV 6.82 0 6.89 V 2.48 A3p(Sr) +113711 BP Gru ACVO 7.6 1 0.00 B +108347 BZ Gru DSCTC 6.13 0 6.21 V +111833 CC Gru DSCTC 6.62 0 6.68 V +106077 CL Gru SRB 8.61 0 8.82 Hp +106652 CM Gru SRB 8.55 0 8.86 Hp +107745 CN Gru LB 8.00 0 8.16 Hp +108128 CO Gru SRB 7.70 0 8.17 Hp +108486 CP Gru EA 7.73 0 8.09 Hp +109594 CQ Gru LB: 8.45 0 8.55 Hp +109666 CR Gru LB 7.20 0 7.32 Hp +109901 CS Gru BY: 9.45 0 9.56 Hp +110703 CT Gru LB 7.77 0 8.16 Hp +111190 CU Gru LB: 8.17 0 8.30 Hp +111219 CV Gru LB: 7.35 0 7.46 Hp +111610 CW Gru SRB 6.65 0 6.76 Hp +111718 CX Gru ELL: 6.66 0 6.71 Hp +111771 CY Gru LB 8.99 0 9.41 Hp +111856 CZ Gru SRB 7.74 0 7.93 Hp +111989 DD Gru LB 7.99 0 8.16 Hp +112205 DE Gru LB 7.38 0 7.58 Hp +113442 DF Gru EA 10.35 0 10.78 Hp +113683 DG Gru BY: 12.21 0 12.73 Hp +113968 DH Gru BY: 11.71 0 12.07 Hp +114127 DI Gru E: 8.78 0 8.85 Hp +114217 DK Gru SRB: 7.87 0 7.98 Hp +114407 DL Gru LB 5.86 0 5.98 Hp +114736 DM Gru BY: 11.06 0 11.27 Hp +114946 DN Gru LB: 8.32 0 8.42 Hp +115392 DO Gru LB: 8.32 0 8.47 Hp +115647 DP Gru EA 8.31 0 8.63 Hp +115510 DQ Gru DSCTC: 6.18 0 6.25 Hp +111411 DR Gru DSCTC 7.44 0 7.51 Hp 0.0666 A3IV +109642 DV Gru EA 7.73 0 7.85 7.74 V 48398.245 4.818025 05 F8V +112122 β Gru LC: 2.0 0 2.3 V M3-5II-III +82516 S Her M 6.4 0 13.8 V 45054. 307.28 47 M4,Se-M7.5,Se +88923 T Her M 6.8 0 13.7 V 45306. 164.98 47 M2.5e-M8e +80488 U Her M 6.4 0 13.4 V 44994. 406.10 40 M6.5e-M9.5e +78574 X Her SRB 7.5 0 8.6 p 95.0 M6e +81354 Y Her CST: 7.3 0 p B9 +87965 Z Her EA/AR/RS 7.30 0 8.18 8.18 V 13086.3345 3.9928077 11 F4IV-V +78721 RR Her SRB 8.8 0 13.5 B 239.7 C5,7e-C8,1e(N0e) +84948 RS Her M 7.0 0 13.0 V 45194. 219.70 47 M4e-M8: +79233 RU Her M 6.8 0 14.3 V 44899. 484.83 43 M6e-M9 +90727 RX Her EA/DM 7.28 0 7.87 7.74 V 33170.398 1.7785724 13 A0V+A0V +81026 SS Her M 8.5 0 13.5 V 45209. 107.36 48 M0e-M5e +77619 ST Her SRB 8.8 0 10.3 p 148.0 M6-7IIIaS +78994 SX Her SRD 8.6 0 10.9 p 34218. 102.90 46 G3ep-K0(M3) +83304 SY Her M 8.4 0 14.0 p 45248. 116.91 49 M1e-M6e +86430 SZ Her EA/SD 9.86 0 11.87 10.10 V 41864.3051 0.81809828 18 F0V +82710 TT Her EB/KE 9.61 0 10.34 9.89 V 39995.908 0.91207546 A7V-F2V +87681 TW Her RRAB 10.52 0 11.83 V 21545.2340 0.399600104 13 A4-F6 +84670 TX Her EA/DM 8.54 0 9.31 8.97 V 40008.3643 2.05980944 08 A5+F0 +81291 TY Her CST: 10.0 0 p M0 +81160 TZ Her CST: 9.1 0 p F5 +81272 UU Her SRD 8.5 0 10.6 p 43651. 80.1 F2Ib-G0 +84329 UW Her SRB 8.6 0 9.5 p 103.6 M5e +87643 UX Her EA/SD 9.05 0 10.21 9.11 V 39672.3785 1.5488479 15 A3V +80853 VX Her RRAB 9.89 0 11.21 V 21750.4827 0.45537282 14 A4-F4 +84233 VZ Her RRAB 10.72 0 12.04 V 36788.898 0.44032789 13 A6-F4 +89018 XZ Her M 10.5 0 13.6 p 33887. 171.69 M0 +90697 AC Her RVA 6.85 0 9.0 V 35097.8 75.01 F2pIb-K4e(C0,0) +92414 AD Her EA/SD 9.70 0 11.17 9.79 V 39001.1348 9.76657 11 A4V+K2 +84293 AK Her EW/KW 8.29 0 8.77 8.64 V 42186.460 0.42152201 F2+F6 +86080 AN Her SRB 10.1 0 10.9 p 65. M5 +92452 AP Her CWA 10.19 0 11.18 V 43745.347 10.4156 40 F2Ib-II-G0 +78417 AR Her RRAB 10.59 0 11.63 V 41454.347 0.470028 20 A7-F3 +81506 AS Her M 9.9 0 15.3 p 40750. 269.14 53 M2e +86131 AT Her 11.2 0 12.25 B K0V +90312 AW Her EA/AR/RS 9.65 0 11.0 V 25719.434 8.800760 07 G0+K2 +92067 BB Her DCEP 9.76 0 10.46 V 42679.289 7.507945 32 G5 +80432 BE Her SRB 8.2 0 9.9 V 71.6 M4 +88242 BL Her CWB 9.70 0 10.62 V 41841.289 1.3074502 26 F0-F6II-III +84027 CX Her SRB 10.7 0 12.1 p 114. M7 +92708 DI Her EA/DM 8.39 0 9.11 8.95 V 42233.3476 10.5501680 04 B5V+B4V +80903 DY Her DSCT 10.15 0 10.66 V 33439.4865 0.148631353 28 A7III-F4III +92478 HS Her EA/DM 8.50 0 8.97 8.63 V 45160.434 1.637435 12 B6III +89669 IQ Her SRB 6.99 0 7.47 V 30496. 75. 44 M4 +79349 LQ Her LB: 5.58 0 5.83 V M4IIIa +78539 LS Her RRC 10.79 0 11.12 V 28004.947 0.23080771 40 A5 +88008 MM Her EA/AR/RS 9.45 0 10.43 9.7 V 31302.445 7.960322 05 G2-5 +89141 NQ Her CST 8.41 0 8.4 V A0 +87818 OO Her LB 10.2 0 10.8 p M6 +87850 OP Her SRB 5.85 0 6.73 V 41196. 120.5 M5IIb-IIIa(S) +88397 OU Her LB 11.1 0 11.6 p M6 +89039 PW Her EA/AR:/RS 9.84 0 10.44 10.1 V 44785.433 2.8809877 18 K0IV-V +87190 V0337 Her SRB 9.5 0 10.2 p 280. M8 +87556 V0338 Her EA/SD 10.07 0 11.15 10.13 V 43691.123 1.3057393 17 F1V +87747 V0441 Her SRD 5.34 0 5.54 V 68. F2Ibe +81815 V0449 Her LB 8.9 0 9.9 p M6 +83308 V0451 Her ACV 6.26 0 6.34 V 37145.3 6.0094 B9p(Cr-Eu) +88832 V0529 Her SR 10.5 0 11.4 p 36800. 400. M7-M10 +92036 V0535 Her ACV 6.41 0 6.58 V 38543.8 9.9750 40 B9p(Si-Sr-Cr) +88820 V0566 Her SRB 8.6 0 9.26 p 137. M4III +81362 V0600 Her ELL+BCEP: 7.03 1 0.03 V 5.20065 B0.5III +84054 V0620 Her DSCTC 6.19 0 6.23 V 0.0797 48 A8V +86809 V0624 Her EA/DM 6.18 0 6.36 6.35 V 40321.0049 3.894977 10 A3m +82172 V0636 Her LB 5.83 1 0.20 V M4III-IIIa +82321 V0637 Her ACV 4.78 0 4.85 V 3.8567 A3Vp(Sr-Cr-Eu) +85302 V0640 Her LB 5.98 0 6.21 V M4IIIab +85934 V0642 Her SRB 6.41 0 6.56 V 12. M4IIIa +82798 V0644 Her DSCTC 6.32 0 6.36 V 0.11505449 50 F2IV +82779 V0645 Her DSCT: 7.30 1 0.14 V A5 +84794 V0647 Her UV 12.2 0 12.99 B M4eV +85840 V0648 Her DSCTC 6.86 1 0.04 V 0.29 A7V +82236 V0652 Her * 10.50 0 10.61 V 42216.8050 0.10800182 30 B1 +84289 V0655 Her ACV: 8.2 1 0.02 V 36005.007 5.891 49 A7V +84833 V0656 Her LB: 4.9 0 5.1 V M2IIIab +85503 V0657 Her LB: 9.9 0 10.7 p M7 +89172 V0669 Her 6.62 1 0.14 B M3III +87280 V0744 Her GCAS 6.65 0 6.94 V B7Vne +80548 V0746 Her SR 6.59 0 6.76 V M4III +88030 V0771 Her ACV 6.44 0 6.52 V 41450.86 0.517468 B9p(Si-Cr-Sr) +88637 V0772 Her E 6.9 1 0.10 V 43392.823 0.879511 G2V +81337 V0773 Her ACV 6.01 1 0.03 U 41459.05 1.45876 40 B9p(Si-Sr-Cr:) +90959 V0774 Her UV 9.45 0 10.90 B K2 +92919 V0775 Her RS 8.05 1 0.12 V 43677.520 2.879395 K0V +82216 V0776 Her ACV 5.21 0 5.27 V +84014 V0792 Her EA/GS/RS 8.5 1 0.33 V +86869 V0814 Her SRD 6.97 0 7.12 V +88848 V0815 Her RS 7.6 1 0.1 V +84680 V0818 Her SRB 9.80 0 11.2 B +84949 V0819 Her EA/D+BY 5.51 1 0.12 V +88331 V0820 Her * 5.17 0 5.19 B +92593 V0822 Her EB/KE 6.12 0 6.30 V +82526 V0823 Her ACV 6.40 1 0.03 U +86946 V0826 Her ELL 6.68 1 0.02 V +92934 V0828 Her ACV 6.15 1 0.04 U +87497 V0830 Her DSCT: 9.20 0 9.33 V +88528 V0831 Her DSCTC: 6.28 0 6.34 V +84291 V0832 Her RS 8.8 1 0.04 V +86579 V0834 Her RS 8.0 1 0.10 V +87746 V0835 Her RS 7.94 0 8.09 V +77986 V0839 Her BE 5.74 0 5.84 V +82959 V0841 Her UV 11.08 0 11.25 U +83921 V0873 Her DSCT: 8.4 1 0.21 V +88639 V0885 Her BY 10.62 1 0.06 V +91043 V0889 Her BY 7.39 1 0.14 V +79331 V0890 Her LB: 9.26 0 9.37 Hp +79347 V0891 Her LB: 8.51 0 8.63 Hp +79543 V0892 Her SRB 7.70 0 7.96 Hp +80020 V0893 Her RR: 9.20 0 9.38 Hp +80302 V0894 Her SRD 8.17 0 8.32 Hp +80523 V0895 Her SRB 7.84 0 7.99 Hp +80541 V0896 Her LB: 8.67 0 8.85 Hp +80791 V0897 Her SRD: 6.88 0 7.12 Hp +80876 V0898 Her BY: 11.87 0 12.19 Hp +81191 V0899 Her EW 7.93 0 8.07 Hp +81245 V0900 Her LB: 8.74 0 8.86 Hp +81243 V0901 Her SR: 8.69 0 8.78 Hp +81319 V0902 Her LB: 7.08 0 7.17 Hp +81411 V0903 Her SRB 6.99 0 7.16 Hp +81426 V0904 Her LB: 6.98 0 7.08 Hp +81420 V0905 Her LB: 8.86 0 9.00 Hp +81483 V0906 Her LB 6.52 0 6.65 Hp +81622 V0907 Her LB: 8.38 0 8.48 Hp +81694 V0908 Her BY: 10.14 0 11.95 Hp +81855 V0909 Her LB 7.84 0 8.02 Hp +81938 V0910 Her LB: 8.47 0 8.62 Hp +81975 V0911 Her LB: 8.41 0 8.57 Hp +81967 V0912 Her SRD: 8.69 0 8.79 Hp +82029 V0913 Her LB: 8.45 0 8.56 Hp +82050 V0914 Her SRD 8.48 0 8.69 Hp +82103 V0915 Her LB: 8.32 0 8.44 Hp +82123 V0916 Her E: 8.03 0 8.38 Hp +82207 V0917 Her LB: 10.18 0 10.31 Hp +82253 V0918 Her EB 7.40 0 7.51 Hp +82346 V0919 Her DSCTC 8.42 0 8.46 Hp +82390 V0920 Her E: 7.88 0 7.98 Hp +82344 V0921 Her EB 9.45 0 9.80 Hp +82387 V0922 Her LB: 10.58 0 10.73 Hp +82428 V0923 Her EB 9.09 0 9.27 Hp +82776 V0924 Her SRB: 7.78 0 7.95 Hp +82825 V0925 Her LB: 9.57 0 9.72 Hp +82920 V0926 Her LB: 9.27 0 9.39 Hp +82883 V0927 Her DSCT 10.11 0 10.24 Hp +83208 V0928 Her LB: 8.00 0 8.12 Hp +83370 V0929 Her DSCTC 8.06 0 8.11 Hp +83425 V0930 Her BY: 10.48 0 10.67 Hp +83462 V0931 Her LB: 6.07 0 6.26 Hp +83584 V0932 Her LB 9.61 0 10.03 Hp +83713 V0933 Her LB: 9.26 0 9.37 Hp +83714 V0934 Her SRB: 7.62 0 7.78 Hp +83814 V0935 Her EB 8.44 0 8.64 Hp +83868 V0936 Her LB: 8.94 0 9.08 Hp +83904 V0937 Her LB: 9.53 0 9.65 Hp +84016 V0938 Her SRB: 7.89 0 7.98 Hp +84004 V0939 Her LB 7.24 0 8.02 Hp +84038 V0940 Her SRD 7.44 0 7.93 Hp +84191 V0941 Her LB: 10.10 0 10.24 Hp +84385 V0942 Her LB 7.18 0 7.30 Hp +84504 V0943 Her LB: 8.69 0 8.85 Hp +84596 V0944 Her LB 6.88 0 7.02 Hp +84726 V0945 Her LB 10.41 0 10.75 Hp +84752 V0946 Her BY: 10.86 0 11.52 Hp +84775 V0947 Her LB: 7.79 0 7.93 Hp +85057 V0948 Her EA 9.02 0 9.31 Hp +85065 V0949 Her SRB 8.78 0 9.28 Hp +85252 V0950 Her LB: 8.60 0 8.70 Hp +85344 V0951 Her LB: 8.84 0 8.95 Hp +85510 V0952 Her LB: 8.65 0 8.77 Hp +85644 V0953 Her LB: 9.16 0 9.27 Hp +85672 V0954 Her LB: 9.09 0 9.23 Hp +85904 V0955 Her LB: 9.86 0 10.07 Hp +86000 V0956 Her LB: 8.57 0 8.72 Hp +85992 V0957 Her LB 8.14 0 8.37 Hp +86073 V0958 Her LB: 9.64 0 9.84 Hp +86153 V0959 Her SRC 6.33 0 6.51 Hp +86392 V0960 Her SRD 7.51 0 7.60 Hp +86439 V0961 Her SRB 8.99 0 9.33 Hp +86395 V0962 Her SRB: 7.93 0 8.24 Hp +86588 V0963 Her LB 9.15 0 9.47 Hp +86710 V0964 Her LB 8.09 0 8.25 Hp +86709 V0965 Her SRC: 7.02 0 7.15 Hp +86711 V0966 Her DSCTC 8.01 0 8.11 Hp +86846 V0967 Her LB: 9.25 0 9.36 Hp +87114 V0968 Her LB 6.47 0 6.66 Hp +87245 V0969 Her LB: 7.51 0 7.55 Hp +87446 V0970 Her LB: 8.37 0 8.48 Hp +87908 V0971 Her SRB 8.20 0 8.52 Hp +87958 V0972 Her EW 6.73 0 6.80 Hp +88067 V0973 Her SRB: 9.04 0 9.47 Hp +88172 V0974 Her BE 6.38 0 6.45 Hp +88181 V0975 Her LB 7.31 0 7.52 Hp +88308 V0976 Her LB: 9.44 0 9.58 Hp +88394 V0977 Her LB 7.62 0 7.79 Hp +88434 V0978 Her LB 6.82 0 6.97 Hp +88537 V0979 Her DSCTC 8.52 0 8.58 Hp +88563 V0980 Her LB 6.96 0 7.06 Hp +88769 V0981 Her LB: 7.24 0 7.34 Hp +88722 V0982 Her LB 6.99 0 7.38 Hp +88761 V0983 Her LB 7.29 0 7.40 Hp +88823 V0984 Her LB: 9.56 0 9.67 Hp +89132 V0985 Her LB: 9.17 0 9.36 Hp +89142 V0986 Her LB: 8.00 0 8.10 Hp +89271 V0987 Her LB 9.82 0 10.07 Hp +89862 V0988 Her EA 7.71 0 7.90 Hp +89999 V0989 Her LPB 6.79 0 6.82 Hp +90338 V0990 Her EA: 7.72 0 7.96 Hp +90417 V0991 Her SRD: 9.33 0 9.98 Hp +90420 V0992 Her SRD 8.93 0 9.10 Hp +90409 V0993 Her LB: 9.80 0 9.94 Hp +90483 V0994 Her EA 6.93 0 7.24 Hp +90770 V0995 Her LB: 7.76 0 7.87 Hp +90803 V0996 Her LB: 9.80 0 9.97 Hp +91071 V0997 Her SRB 8.05 0 8.22 Hp +91140 V0998 Her E: 9.02 0 9.15 Hp +91422 V0999 Her LB: 8.89 0 9.14 Hp +91970 V1000 Her SRD 9.20 0 9.42 Hp +92237 V1001 Her LB 9.53 0 9.94 Hp +92374 V1002 Her EA 8.99 0 9.14 Hp +92699 V1003 Her DSCTC: 9.81 0 9.90 Hp +89972 V1017 Her EA 10.29 0 10.47 V +81633 V1082 Her BY 9.00 1 0.02 V 23. K2V +82042 V1085 Her BY 9.45 1 0.01 V 13.65 K5V +83006 V1089 Her BY 7.93 1 0.03 V 15.39 K0V +83020 V1090 Her BY 7.76 1 0.02 V 7.22 K0V +92372 V1109 Her EB 9.30 0 9.57 V 52760.834 2.59849 B9 +92449 V1110 Her BY 7.0 1 0.02 V 11.7 K5 +90919 V1136 Her GDOR 8.07 1 0.06 B 1.0044 F2IV +84345 α Her SRC 2.74 0 4.0 V M5Ib-II +80170 γ Her SRD: 4.02 1 0.09 B +86414 ι Her BCEP 2.93 1 0.02 U +87998 ν Her SRD: 4.38 0 4.48 V 29. F2II +87933 χ Her SRD 3.85 0 3.88 Hp +88794 ο Her GCAS 3.80 1 0.07 B B9Ve +79101 φ Her ACV: 4.22 0 4.23 Hp +79992 Ï„ Her LPB 3.83 0 3.86 Hp +80463 ω Her ACV 4.57 1 0.08 V 41254.70 2.951 B9p(Cr-Mn-Sr) +80704 g Her SRB 4.3 0 6.3 V 89.2 M6III +13502 R Hor M 4.7 0 14.3 V 41494. 407.6 40 M5e-M8eII-III +14042 T Hor M 7.2 0 13.7 V 41957. 217.60 48 M5IIe +14229 V Hor SRB 8.7 0 9.8 p M5III +14488 SZ Hor EW/KW 10.4 0 10.8 10.7 p 28048.610 0.4804562 +16339 TU Hor ELL 5.90 0 6.04 6.03 V 43055.620 0.935971 A2V+K +11648 TV Hor SRB 6.74 0 6.89 V 30. M4-5III +14930 TW Hor SRB 5.52 0 5.95 V 158. C7,2(N0) +11293 TZ Hor LB: 6.41 1 0.11 V M5III +13359 VZ Hor BY 8.75 0 8.88 V +17889 WX Hor SRA 7.14 0 7.88 V +11934 WY Hor EW 9.55 0 9.70 Hp +13074 WZ Hor EA: 8.14 0 8.46 Hp +13101 XX Hor LB: 8.99 0 9.09 Hp +13185 XY Hor SRB 7.72 0 7.98 Hp +13575 XZ Hor LB: 8.73 0 8.91 Hp +14238 YY Hor SRB 8.00 0 8.18 Hp +14656 YZ Hor ACV: 8.16 0 8.30 Hp +15186 ZZ Hor LB: 9.01 0 9.11 Hp +15316 AA Hor LB: 8.69 0 8.79 Hp +15757 AB Hor LB: 8.11 0 8.22 Hp +16070 AC Hor LB: 9.02 0 9.19 Hp +16772 AD Hor DSCTC 7.03 0 7.11 Hp +19380 AE Hor EA 8.56 0 8.87 Hp +65835 R Hya M 3.5 0 10.9 V 43596. 388.87 49 M6e-M9eS(Tc) +43653 S Hya M 7.2 0 13.3 V 43509. 256.63 49 M4e-M8.0e +43835 T Hya M 6.7 0 13.48 V 41975. 298.7 49 M3e-M9:e +52009 U Hya SRB 7.0 0 9.4 B 450. C6.5,3(N2)(Tc) +53085 V Hya SRA 10.9 0 16. p 30920. 530.7 50 C6,3e-C7,5e(N6e) +67419 W Hya SRA 7.7 0 11.6 p 43271. 361. 50 M7.5e-M9ep +47066 X Hya M 7.2 0 13.6 V 41060. 301.10 42 M7e-M8.5e +48327 Y Hya SRB 8.3 0 12.0 p 302.8 C5,4(N3p) +41664 RT Hya SRB 7.0 0 10.2 V 290. 46 M6e-M8e +69346 RU Hya M 7.2 0 14.3 V 43162. 331.5 35 M6e-M8.8e +42489 RV Hya SRC 8.7 0 10.0 p 116. M5II +44632 RX Hya EA/SD 8.9 0 11.6 0.05 V 43447.700 2.2816450 13 A8 +65896 SS Hya EA: 7.88 0 8.1 B B9 +61031 SV Hya RRAB 9.78 0 11.00 V 39318.319 0.47854395 15 F0-F8 +67064 SX Hya EA/SD 8.6 0 12.6 p 44344.451 2.895737 11 A3+K5: +45292 SZ Hya RRAB 10.44 0 11.84 V 40679.412 0.53724022 15 A7 +54807 TT Hya EA/SD 7.25 0 9.02 7.32 V 43918.1060 6.95342913 11 A5IIIe+G5IV +66433 TV Hya E: 8.0 0 8.2 p A3 +53911 TW Hya S: 10.5 0 12.2 p +47904 VX Hya DSCT: 10.21 0 10.96 V 0.2233889 F2Ib-F8 +41834 VZ Hya EA/DM 8.96 0 9.68 9.46 V 40254.8607 2.9042998 07 F5V+F5V +50073 WZ Hya RRAB 10.27 0 11.28 V 39627.363 0.537715 16 A2 +42502 AK Hya SRB 6.33 0 6.91 V 75. M4III +55347 BK Hya LB 10.4 0 11.4 p K5 +40186 DD Hya RRAB 11.5 0 12.5 p 41695.504 0.501776 12 A-F +57009 DN Hya M 11.4 0 14.4 p 28190. 182.4 Me +43063 EY Hya SRA 9.6 0 12.0 p 32707. 182.7 M7 +41437 FG Hya EW/KW 9.90 0 10.28 10.25 V 44968.2764 0.327832 G0 +41201 FK Hya LB 8.9 0 10.2 p MB +41751 GK Hya EA/DM/RS 9.35 0 9.91 9.57 V 14968.863 3.587052 10 G4V +40766 HQ Hya DSCTC 6.29 0 6.33 V 0.0755 F3IIIp +50966 HS Hya EA/D 8.07 0 8.61 8.55 V 41374.5954 1.5680420 10 F3+F4 +42146 HV Hya ACV 5.66 0 5.76 V 40619.8 5.57 A2p(Sr-Cr-Eu) +57613 II Hya SRB 4.85 0 5.12 V 40684. 61. M4III +58907 IK Hya RR 9.96 0 10.42 V 38461.510 0.65 A2: +46159 IL Hya RS 7.45 0 7.95 V 44662.355 12.86833 K1III +45824 IN Hya SRB 6.27 0 6.87 V 65. M4III +49610 IO Hya SRB 6.87 0 7.02 V 80. M4III +45266 IQ Hya M 5.0 0 6.2 I C3,2(Ne) +45999 KU Hya ACV 6.51 0 6.53 V 41799.78 33.97 50 A3Vp(Sr-Cr-Eu) +45184 KW Hya EA/DM 6.11 0 6.58 6.35 V 7.750 A3mIII:+A0V: +43305 KX Hya ACV 5.31 1 0.02 V 6. B9p(Hg-Mn) +41375 LM Hya DSCTC 5.80 1 0.00 B +63159 LN Hya SRD 6.57 0 6.90 V +41564 LO Hya EA/DM 6.37 0 6.61 V +46816 LQ Hya BY 7.79 0 7.86 V +51884 LR Hya BY 8.03 0 8.05 V +55292 LS Hya ACV 7.87 0 8.00 V +41274 LU Hya RS 7.34 0 7.39 V +58272 LV Hya ACV: 6.20 1 0.03 V +62905 LW Hya R: 9.56 0 9.63 V +45658 LX Hya ACVO 7.79 0 7.82 V +62788 MO Hya DSCTC 6.15 1 0.06 V +70972 MP Hya DSCTC 7.9 1 0.02 B +40689 MQ Hya SRD 8.52 0 8.69 Hp +40750 MR Hya SRB 9.00 0 9.18 Hp +40763 MS Hya SRD 6.99 0 7.09 Hp +40892 MT Hya SRB 9.83 0 10.15 Hp +42013 MU Hya SRB 7.45 0 7.62 Hp +42674 MV Hya SRB 7.74 0 7.86 Hp +42700 MW Hya LB 7.26 0 7.49 Hp +42951 MX Hya EA 6.52 0 7.01 Hp +43039 MY Hya LB 6.57 0 6.90 Hp +43308 MZ Hya SRB 8.84 0 9.03 Hp +43746 NN Hya LB: 6.65 0 6.76 Hp +44123 NO Hya SRB: 9.57 0 9.79 Hp +44359 NP Hya ACV: 7.08 0 7.14 Hp +44609 NQ Hya LB: 7.97 0 8.08 Hp +44675 NR Hya LB: 9.58 0 9.76 Hp +44738 NS Hya SRB 6.18 0 6.29 Hp +44813 NT Hya DSCTC 7.42 0 7.49 Hp +45030 NU Hya LB 8.33 0 8.50 Hp +45547 NV Hya LB: 7.65 0 7.75 Hp +45755 NW Hya LB: 7.79 0 7.89 Hp +45846 NX Hya EB 8.33 0 8.50 Hp +45887 NY Hya EA 8.65 0 9.02 Hp +46002 NZ Hya EA 8.28 0 8.78 Hp +46323 OO Hya I: 10.37 0 10.83 Hp +46435 OP Hya LB 6.97 0 7.10 Hp +46722 OQ Hya LB: 8.00 0 8.11 Hp +46948 OR Hya LB: 9.24 0 9.40 Hp +46987 OS Hya LB 8.45 0 8.70 Hp +46988 OT Hya SRB: 7.82 0 7.95 Hp +47130 OU Hya LB: 9.59 0 9.76 Hp +47102 OV Hya LB: 8.67 0 8.77 Hp +47427 OW Hya EA 6.29 0 6.66 Hp +48494 OX Hya SRB 7.67 0 7.84 Hp +48943 OY Hya BE 6.09 0 6.15 Hp +49177 OZ Hya EA 9.50 0 9.75 Hp +49209 PP Hya ELL: 6.84 0 6.91 Hp +49322 PQ Hya LB: 9.03 0 9.17 Hp +49463 PR Hya SRB 8.96 0 9.17 Hp +49755 PS Hya SRB: 7.12 0 7.21 Hp +49783 PT Hya LB: 8.02 0 8.13 Hp +50212 PU Hya LB: 8.83 0 8.92 Hp +51289 PV Hya LB 9.32 0 9.87 Hp +51496 PW Hya BY: 10.17 0 12.31 Hp +51683 PX Hya E 8.47 0 8.57 Hp +52509 PY Hya LB: 8.88 0 8.99 Hp +52565 PZ Hya LB: 9.93 0 10.38 Hp +52789 QQ Hya LB: 7.02 0 7.06 Hp +53487 QR Hya E 8.51 0 8.69 Hp +53753 QS Hya SRD 9.16 0 9.33 Hp +55953 QT Hya SRD 6.52 0 6.58 Hp +56300 QU Hya SRB 7.39 0 7.50 Hp +57678 QV Hya LB: 9.05 0 9.16 Hp +58802 QW Hya LB 8.84 0 9.36 Hp +58946 QX Hya SRB 7.47 0 7.59 Hp +59259 QY Hya EB: 9.07 0 9.36 Hp +59443 QZ Hya LB 7.57 0 7.70 Hp +59588 V0335 Hya LB 5.84 0 6.34 Hp +59789 V0336 Hya LB 7.47 0 7.59 Hp +59921 V0337 Hya SRA 8.38 0 9.20 Hp +60273 V0338 Hya SRB 8.27 0 8.55 Hp +61024 V0339 Hya SRB 8.16 0 8.42 Hp +61836 V0340 Hya EA 8.24 0 8.53 Hp +61908 V0341 Hya SRB 6.61 0 6.71 Hp +62062 V0342 Hya LB 6.72 0 6.91 Hp +62432 V0343 Hya SRB 8.01 0 8.23 Hp +63357 V0344 Hya LB: 7.28 0 7.38 Hp +63650 V0345 Hya LB: 8.93 0 9.03 Hp +65324 V0346 Hya SRB: 7.50 0 7.74 Hp +66273 V0347 Hya BY: 8.58 0 8.83 Hp +67531 V0348 Hya LB: 8.52 0 8.63 Hp +67984 V0349 Hya SRB 7.36 0 7.76 Hp +68757 V0350 Hya LB 7.89 0 8.16 Hp +69017 V0351 Hya LB 8.65 0 9.06 Hp +69110 V0352 Hya LB: 9.08 0 9.22 Hp +69211 V0353 Hya EA 7.51 0 7.65 Hp +69894 V0354 Hya E: 8.40 0 8.52 Hp +70370 V0355 Hya LB: 8.33 0 8.43 Hp +71077 V0356 Hya EB 7.56 0 7.69 Hp +48958 V0359 Hya ACV 7.85 0 7.88 V +40774 V0397 Hya BY 8.35 1 0.03 V 8.75 G5V +42333 V0401 Hya BY 6.73 1 0.05 V 6.14 G0 +44526 V0405 Hya BY 8.77 1 0.03 V 8.64 K2Ve +46223 V0415 Hya GDOR: 7.07 0 7.10 Hp 0.490 A3 +48830 V0416 Hya GDOR 6.64 0 6.73 Hp F0V +49366 V0417 Hya BY 8.15 1 0.03 V 10.74 K0V +51931 V0418 Hya BY: 8.71 1 0.02 V K2V +52462 V0419 Hya BY 7.72 1 0.02 V 13.47 K1V +45171 V0432 Hya EA 7.90 0 7.98 7.98 V 48594.965 1.115657 07 A1/2III/IV +42457 V0490 Hya EA 8.65 2 8.80 8.71 V 48794.107 92.1711 A0V +44258 V0511 Hya EA 8.99 0 9.06 9.05 V 48568.32 2.03915 08 A1V +57936 β Hya ACV 4.27 1 0.04 V 42451.78 2.344 B9IIIp(Si) +43109 ε Hya BY: 3.35 0 3.39 V +42799 η Hya BCEP 4.27 0 4.33 V 0.17 B3V +6552 BG Hyi DSCTC 8.2 1 0.03 V +8132 BM Hyi ACV 7.0 1 0.04 V +14521 BN Hyi DSCTC 5.7 1 0.02 V +10722 BQ Hyi E:/RS 8.06 0 8.22 V 18.66 G1 +14026 BT Hyi ACVO 9.1 1 0.01 V +610 BZ Hyi EA 8.53 0 8.69 Hp +7326 CC Hyi LB 8.97 0 9.17 Hp +7496 CD Hyi SRB: 8.28 0 8.35 Hp +7682 CE Hyi DSCTC 8.48 0 8.53 Hp +8035 CF Hyi BY: 9.23 0 9.41 Hp +8485 CG Hyi LPB 7.77 0 7.82 Hp +9472 CH Hyi SRB 6.77 0 6.90 Hp +10248 CI Hyi SRB 8.52 0 9.09 Hp +11039 CK Hyi LB: 8.38 0 8.48 Hp +11455 CL Hyi SRB: 6.48 0 7.15 Hp +12674 CM Hyi SRB 7.66 0 7.87 Hp +12884 CN Hyi EW 6.68 0 6.93 Hp +13189 CO Hyi SRB 8.55 0 8.88 Hp +13999 CP Hyi EW: 7.90 0 8.04 Hp +15931 CQ Hyi LB 8.48 0 8.67 Hp +16592 CR Hyi ELL: 9.28 0 9.34 Hp +16775 CS Hyi SRA 8.24 0 9.28 Hp +17543 CT Hyi ACV: 6.21 0 6.24 Hp +20015 CU Hyi BY: 9.20 0 9.44 Hp +8472 DH Hyi EA 8.45 0 8.63 8.58 V 48375.910 7.43367 03 A2mA5-A7 +105334 T Ind SRB 7.7 0 9.4 p 320. C7,2(Na) +104613 V Ind RRAB 9.12 0 10.48 V 40118.393 0.4795910 10 A5-G3: +107490 RR Ind SRB 10.9 0 13.1 p 30120. 140. 60 C6II(Na) +103215 SU Ind EB/DW 9.3 0 9.7 9.5 V 34267.489 0.986323 F5/6V +104424 AK Ind LB 9.1 0 9.4 p M4/5III +107705 AY Ind UV 9.9 0 11.26 B M2Ve +107525 BC Ind ACV 7.18 0 7.24 V 42619.508 1.788 40 B9p(Si) +108340 BD Ind ACV 7.5 1 0.01 V +108584 BE Ind DSCTC 8.4 1 0.02 V +108478 BG Ind EA 6.11 0 6.36 V +106013 BH Ind RS 9.44 0 9.89 V +114678 BI Ind RS 7.65 0 7.70 V +101185 BK Ind EA 10.30 0 10.84 Hp +101366 BL Ind LB 8.76 0 9.02 Hp +102064 BM Ind LB 8.85 0 9.05 Hp +102160 BN Ind SRB 7.51 0 7.64 Hp +102353 BO Ind EW 8.41 0 8.61 Hp +102895 BP Ind BY: 9.05 0 9.17 Hp +103290 BQ Ind SXPHE 9.78 0 10.05 Hp +104604 BR Ind EA 7.08 0 7.22 Hp +105404 BS Ind EA 9.01 0 9.32 Hp +106316 BT Ind SRB 7.87 0 8.52 Hp +107349 BU Ind LB: 10.09 0 10.32 Hp +107523 BV Ind LB: 8.98 0 9.08 Hp +108524 BW Ind SRD: 9.14 0 9.20 Hp +108741 BX Ind DSCTC 7.94 0 8.03 Hp +109325 BY Ind LB 8.86 0 9.04 Hp +109580 BZ Ind LB: 8.72 0 8.89 Hp +114917 CC Ind SRB: 6.66 0 7.36 Hp +106954 CF Ind DSCTC 7.76 0 7.81 Hp +108976 CK Ind GDOR 7.36 0 7.44 Hp 0.8853 A9/F0V +106360 CM Ind SRB 7.77 0 7.93 Hp +106234 CQ Ind EA 8.38 0 8.8 8.75 V 52625.750 26.921 02 F7V +110972 S Lac M 7.6 0 13.9 V 43804. 241.50 46 M4e-M8.2e +112545 U Lac SRC 9.4 0 12.1 p M4epIab+B +112626 V Lac DCEP 8.38 0 9.42 V 28901.285 4.983458 25 F5-G0 +112675 X Lac DCEPS 8.20 0 8.64 V 42738.132 5.444990 38 F6-G0 +109340 Y Lac DCEP 8.76 0 9.50 V 41746.745 4.323776 34 F5-G0 +111972 Z Lac DCEP 7.88 0 8.93 V 42827.123 10.885613 43 F6Ib-G6Ib +112026 RR Lac DCEP 8.38 0 9.30 V 42776.686 6.416243 30 F6-G2 +108728 RT Lac EB/AR/RS 8.84 0 9.89 9.62 V 44873.3648 5.0739496 G9IV+K1IV +112292 RV Lac SRB 11.0 0 12.7 p 67. M4 +108981 SS Lac EA/D 10.1 0 10.5 10.5 p 15900.76 14.41629 05 B7 +113052 SW Lac EW/KW 8.51 0 9.39 9.31 V 45275.3477 0.3207209 G8Vp+G8Vp +113252 SX Lac SRD 9.0 0 10.0 p 190.0 47 K2 +113260 TV Lac LB 11.5 0 12.3 p C4,5(N3) +112394 TX Lac LB 11.2 0 12.9 p C3:,4J(R5) +109303 AR Lac EA/AR/RS 6.08 0 6.77 6.43 V 41593.7123 1.98319204 15 G2IV-V+K0IV +108630 BG Lac DCEP 8.51 0 9.18 V 35315.273 5.331908 33 F7-G4 +108606 CM Lac EA/DM 8.18 0 9.15 8.53 V 27026.316 1.6046916 11 A2V+A8V +112436 CO Lac EA/DM 10.28 0 10.89 10.79 V 27534.0728 1.5422075 13 B8.5IV+B9.5V +109158 CT Lac SRA 10.6 0 17.2 p 41110. 555. 62 C6-,4(R) +110213 CZ Lac RRAB 10.77 0 11.26 V 45178.328 0.432205 14 A8-F5 +112031 DD Lac BCEP 5.16 0 5.28 V 43063.774 0.1930924 50 B1.5III +109420 DE Lac DSCT 10.08 0 10.43 V 42659.819 0.2536934 33 F5-F8 +109619 DH Lac M 11.6 0 14.6 p 41221. 288.8 M5e +113281 EN Lac BCEP+EA/D 5.41 1 0.11 B 50 B2IV +112460 EV Lac UV+BY 8.28 0 11.83 B M4.5Ve +113327 EW Lac GCAS 5.22 0 5.48 V B3III-IVpeV +112247 GL Lac ACV 8.73 0 8.90 V 36864.88 9.4871 57 B8p(Si) +109002 HK Lac RS 6.77 0 7.04 V 25.83 K0III-IVpeaV +109033 HT Lac SRB 6.08 0 6.36 V 82. M4IIIab +111072 V0350 Lac ELL+RS 6.27 0 6.47 6.45 V 44207.743 17.748 K2III-IVp +110287 V0357 Lac GCAS 7.02 1 0.2 B B1IV:pnne +112778 V0360 Lac EB/DM: 5.91 0 5.98 5.93 V 41895.8077 10.075 B3IV:eaV +111400 V0362 Lac ACV 8.69 1 0.07 V 44509.32 1.43 50 A0p(4200-Si) +112316 V0363 Lac LB 11.2 0 12.0 p C(N) +112928 V0364 Lac EA/DM 8.51 0 9.25 9.15 B 44257.2865 7.351522 06 A3 +109082 V0365 Lac ELL 6.27 1 0.08 V +113009 V0377 Lac LPB 6.25 1 0.02 B +108892 V0378 Lac LB 8.7 0 9.1 R +108776 V0393 Lac I: 10.51 0 10.98 Hp +108888 V0394 Lac EB 8.04 0 8.15 Hp +108911 V0395 Lac ACYG: 8.45 0 8.52 Hp +109020 V0396 Lac IA: 9.83 0 10.13 Hp +109113 V0397 Lac BE 9.67 0 9.79 Hp +109193 V0398 Lac EA 8.73 0 9.02 Hp +109205 V0399 Lac ACYG: 6.24 0 6.29 Hp +109238 V0400 Lac LPB: 7.87 0 7.95 Hp +109283 V0401 Lac EA 7.93 0 8.16 Hp +109354 V0402 Lac EA 6.70 0 6.99 Hp +109802 V0403 Lac LB: 7.73 0 7.81 Hp +110177 V0404 Lac BE 8.28 0 8.47 Hp +110408 V0405 Lac LPB 6.35 0 6.37 Hp +110500 V0406 Lac ACYG: 7.95 0 8.02 Hp +110622 V0407 Lac ELL: 8.31 0 8.38 Hp +110699 V0408 Lac GCAS 7.86 0 8.10 Hp +110921 V0409 Lac GCAS 8.41 0 8.62 Hp +110948 V0410 Lac LB 8.47 0 8.83 Hp +110968 V0411 Lac DCEPS 7.83 0 8.07 Hp +111022 V0412 Lac LC 4.39 0 4.56 Hp +111071 V0413 Lac ELL 9.72 0 9.85 Hp +111360 V0414 Lac ACV 7.33 0 7.39 Hp +111785 V0415 Lac BE 9.22 0 9.35 Hp +111795 V0416 Lac LB 5.05 0 5.18 Hp +111877 V0417 Lac LB 8.03 0 8.21 Hp +111907 V0418 Lac LB 6.72 0 7.09 Hp +112047 V0419 Lac LB: 9.15 0 9.33 Hp +112261 V0420 Lac SRD: 7.11 0 7.18 Hp +112339 V0421 Lac LB 7.73 0 7.89 Hp +112698 V0422 Lac IA: 7.78 0 7.85 Hp +113226 V0423 Lac BE 7.97 0 8.06 Hp +113288 V0424 Lac LC 5.03 0 5.11 Hp +112887 V0442 Lac * 12.26 1 0.30 V +108774 V0443 Lac BY: 7.96 1 0.02 V G5V +109527 V0446 Lac BY 7.23 1 0.02 V 9.083 K0V +109926 V0447 Lac BY 7.50 1 0.03 V 4.4266 K1V +111590 V0457 Lac EA 9.84 0 10.04 10.02 V 48305.198 6.15727 02 B9V +48036 R Leo M 4.4 0 11.3 V 44164. 309.95 43 M6e-M8IIIe-M9.5e +49026 V Leo M 8.4 0 14.6 V 42706. 273.35 44 M5e +53265 W Leo M 8.9 0 14.8 V 43627. 391.75 35 M5.5e-M7e +47178 Y Leo EA/SD 10.09 0 13.20 0.1 V 45436.451 1.6861020 14 A5V +48405 Z Leo SRB 9.9 0 11.5 p 36717. 56.83 47 M3III-IV +49628 RR Leo RRAB 9.94 0 11.27 V 43295.402 0.4523933 13 A7-F5 +49333 RY Leo SRB 9.0 0 11.8 V 155. 47 M2e +56409 SS Leo RRAB 10.38 0 11.56 V 41781.409 0.6263441 12 A7-F6 +56785 ST Leo RRAB 10.74 0 12.02 V 27923.118 0.4779843 15 A6-F8 +51802 TX Leo EA/DM 5.66 0 5.75 5.69 V 38844.3055 2.4450566 11 A2V +52066 UV Leo EA/DW 8.90 0 9.56 9.49 V 38440.7263 0.60008478 18 G0V+G2V +51353 UY Leo LB 9.5 0 11. p M7III +52249 UZ Leo EW/KE 9.58 0 10.15 10.12 V 39800.373 0.6180428 A7 +53449 VY Leo LB: 5.69 0 6.03 V M5.5III +58203 WX Leo LB 9.42 0 9.99 B M5 +49136 XY Leo EW/KW 9.45 0 9.93 9.80 V 45074.4906 0.2840969 K0V+K0 +49204 XZ Leo EW/KE 10.6 0 11.2 11.1 p 45025.358 0.4877351 A6 +49664 YY Leo SRB 10.5 0 11.4 p 40.9 M3 +49033 AC Leo CST: 9.44 0 9.49 V K0III +56947 AI Leo LB 8.44 0 10.5 V M5 +56976 AK Leo SRB 8.36 0 9.4 V 60. M5 +53937 AM Leo EW/KW 9.25 0 9.83 9.83 V 42493.389 0.36579740 F8V +54188 AP Leo EW/KW 9.32 0 9.91 9.88 V 39536.542 0.4303576 G0V +56350 AX Leo RRAB 11.8 0 12.3 p 25244.703 0.726828 18 A2 +56742 BX Leo RRC 11. 0 11.7 p 38406.72 0.36286 40 A6 +58016 CV Leo LB 10.67 0 11.2 B K5 +51213 CX Leo ACV 5.97 0 6.15 V 7.897 A0p(Si-Cr-Sr) +49657 DD Leo SRB: 10.2 0 10.9 p M8 +51008 DE Leo SRB: 5.60 1 0.07 V M2IIIabS +46053 DF Leo SRB 6.74 0 6.95 V 70. M4III +48218 DG Leo DSCTC 6.08 0 6.12 V 0.08184505 50 A8IV +49018 DH Leo RS 7.75 0 7.94 V 43194.475 1.06950 K0Ve+B: +50156 DK Leo BY 9.87 0 10.20 V 8.05 50 M0Ve +52123 DN Leo PVTEL: 9.91 0 10.00 V +57565 DQ Leo RS 4.53 1 0.03 V +47544 DR Leo LB 5.84 0 5.98 V +53985 DS Leo BY 9.52 0 9.57 V +48540 DV Leo SR 7.78 0 8.13 V +51080 DW Leo RS 8.5 1 0.08 V +46843 DX Leo BY 7.00 1 0.10 V +48215 DY Leo RS 7.59 1 0.05 V +53020 EE Leo BY 11.64 0 11.70 V +46570 EG Leo LB 8.78 0 8.97 Hp +46689 EH Leo SRB 7.70 0 7.89 Hp +46994 EI Leo SRB 7.38 0 7.49 Hp +47733 EK Leo SRB 8.73 0 8.91 Hp +48020 EL Leo SRB 7.52 0 7.83 Hp +48292 EM Leo LB 7.06 0 7.27 Hp +48472 EN Leo LB 8.11 0 8.25 Hp +49220 EO Leo LPB: 5.59 0 5.62 Hp +49300 EP Leo SRD: 8.01 0 8.08 Hp +50072 EQ Leo LB: 9.49 0 9.65 Hp +50750 ER Leo DSCTC: 9.88 0 9.94 Hp +51585 ES Leo SRB: 5.46 0 5.56 Hp +51677 ET Leo EW: 9.60 0 9.72 Hp +52315 EU Leo LB 7.59 0 7.71 Hp +52329 EV Leo SRB 7.63 0 7.77 Hp +52553 EW Leo SRB: 9.15 0 9.57 Hp +52580 EX Leo EW 8.27 0 8.49 Hp +52999 EY Leo LB 8.55 0 8.85 Hp +53653 EZ Leo LB 8.18 0 8.31 Hp +53944 FF Leo SRB 9.35 0 9.71 Hp +54108 FG Leo SRB 7.84 0 8.01 Hp +54268 FH Leo NL: 8.33 0 8.62 Hp +54613 FI Leo LB 6.92 0 7.34 Hp +54711 FK Leo EA 8.57 0 8.85 Hp +54723 FL Leo SRD: 8.39 0 8.76 V +54766 FM Leo EA 8.54 0 8.86 Hp +54951 FN Leo LC 4.56 0 4.64 Hp +55146 FO Leo EB 8.50 0 8.73 Hp +55432 FP Leo LB: 9.93 0 10.10 Hp +55460 FQ Leo LB: 8.19 0 8.32 Hp +55545 FR Leo LB: 9.70 0 9.89 Hp +55952 FS Leo EB 9.06 0 9.25 Hp +56072 FT Leo LB: 8.81 0 8.92 Hp +56217 FU Leo LB 8.77 0 9.25 Hp +56267 FV Leo SRB 7.87 0 8.05 Hp +57126 FW Leo ACV: 7.31 0 7.38 Hp +57480 FX Leo SR: 8.91 0 9.34 Hp +57655 FY Leo SRB 8.45 0 8.59 Hp +58359 FZ Leo BY: 8.44 0 8.58 Hp +49328 GM Leo DSCTC 7.10 1 0.04 V +58314 GR Leo BY 8.87 0 8.92 B +46637 GS Leo BY 8.66 1 0.06 V 3.041 G9V +47587 GT Leo BY 8.92 1 0.04 V 10.92 K0Ve +53472 GX Leo SRS 7.71 0 7.79 B 13.96 K4III +53486 GY Leo BY 7.37 1 0.03 V 11.43 K0V +53923 GZ Leo RS 8.83 0 8.95 V 1.5264 K0V+K2V +54155 HH Leo BY 7.57 0 7.61 V 6.9 G5V +57198 HL Leo BY 7.40 1 0.06 V 37.17 G2V +48895 HN Leo GDOR 6.44 0 6.51 V 0.7753 F0V+F5:V +54156 HR Leo EB 8.94 0 9.03 8.98 V 48220.840 1.081354 F2V +55791 KV Leo GDOR: 6.34 0 6.37 V 0.45286 F3IV +57632 β Leo DSCTC 2.14 1 0.02 V +51624 Ï Leo ACYG 3.83 0 3.90 V B1Iab +47886 R LMi M 6.3 0 13.2 V 45094. 372.19 41 M6.5e-M9.0e(Tc:) +48520 S LMi M 7.5 0 14.3 V 45292. 233.83 42 M2.0e-M8.2e +48106 T LMi EA/SD 10.87 0 12.92 10.97 V 45397.368 3.019885 12 A3V +52366 RX LMi SRB 5.98 0 6.16 V 150. M4IIIa +46952 SU LMi RS: 4.54 1 0.02 V +47080 SV LMi RS: 5.39 1 0.04 V +47761 TU LMi LB 9.0 0 9.9 p +48688 TV LMi EA: 9.10 0 9.36 Hp +49271 TW LMi SRB 7.36 0 7.48 Hp +49944 TX LMi LB: 8.76 0 8.86 Hp +50358 TY LMi LB 8.53 0 8.71 Hp +50502 TZ LMi SRB 8.46 0 8.63 Hp +50951 UU LMi SRB 6.89 0 7.03 Hp +52299 UV LMi LB: 8.07 0 8.18 Hp +52465 UW LMi EA 8.44 0 8.67 Hp +52623 UX LMi DSCTC 9.16 0 9.24 Hp +52723 UY LMi LB 8.13 0 8.35 Hp +52889 UZ LMi SRD: 8.64 0 8.82 Hp +53932 VV LMi SRD 8.21 0 8.44 Hp +54003 VW LMi EW: 8.03 0 8.45 Hp +54230 VX LMi SRB 8.55 0 8.84 Hp +53355 WW LMi DSCTC 6.16 0 6.23 V +53747 XZ LMi RS: 8.49 1 0.03 V 7.019 G8V +54028 YY LMi RS: 8.96 1 0.06 V 11.53 G5V +23203 R Lep M 5.5 0 11.7 V 42506. 427.07 55 C7,6e(N6e) +28874 S Lep SRB 6.0 0 7.58 V 89.0 M6III +23636 T Lep M 7.4 0 14.3 V 41844. 368.13 47 M6e-M9e +22952 U Lep RRAB 9.84 0 11.11 V 41352.346 0.5814762 13 A7-F7 +23950 Y Lep SRB 10.3 0 11.7 p 109. M4III +24169 RX Lep SRB 5.0 0 7.4 V 60. M6.2III +27400 RY Lep EA 8.2 0 9.1 V 38315.595 F0 +28816 SS Lep ZAND 4.82 0 5.06 V A0Veq+M1III +24621 SW Lep LB 9.5 0 10. p M3 +26284 SZ Lep LB: 7.40 0 7.93 V C7,3(R8) +23755 TU Lep ACV 7.07 1 0.10 V +26714 TW Lep RS: 7.0 1 0.32 V +24827 TX Lep ACV 6.54 1 0.04 V +24430 UU Lep RS 6.91 0 7.02 V +29365 UV Lep ACVO 6.77 1 0.01 V +23112 UW Lep LB: 9.84 0 10.04 Hp +23217 UX Lep LB: 9.47 0 9.67 Hp +23842 UY Lep LB: 9.68 0 9.85 Hp +23928 UZ Lep LB: 9.56 0 9.72 Hp +24318 VV Lep LB: 8.44 0 8.52 Hp +24707 VW Lep LB: 7.91 0 8.02 Hp +24840 VX Lep LB 6.76 0 6.99 Hp +25234 VY Lep LB: 9.08 0 9.19 Hp +25981 VZ Lep SRD 6.76 0 6.86 Hp +26243 WW Lep LPB 6.76 0 6.80 Hp +26612 WX Lep EB 7.93 0 8.02 Hp +27229 WY Lep LB 6.39 0 6.55 Hp +27318 WZ Lep LB 7.26 0 7.55 Hp +27748 XX Lep ACV 7.82 0 7.86 Hp +28094 XY Lep LB: 7.75 0 7.85 Hp +28973 XZ Lep LPB 6.60 0 6.62 Hp +28984 YY Lep SRB: 5.60 0 5.82 Hp +24825 YZ Lep LPB 6.30 0 6.36 Hp +28434 AC Lep GDOR 6.28 0 6.30 Hp +25486 AF Lep RS 6.26 0 6.35 V 1. F7V+G5V +28778 AW Lep GDOR: 7.65 0 7.69 Hp 0.4199 A9V +24305 μ Lep ACV 2.97 0 3.41 V 2. B9IIIp(Hg-Mn) +75144 S Lib M 7.5 0 13.0 V 41883. 192.9 49 M1.0e-M6.0e +74350 Y Lib M 7.6 0 14.7 V 44017. 275.7 41 M5e-M8.2e +75393 RS Lib M 7.0 0 13.0 V 42154. 217.65 48 M7e-M8.5e +76152 RU Lib M 7.2 0 14.4 V 41840. 316.56 46 M5e-M6e +71380 RV Lib EA/D/RS 9.02 0 9.50 9.44 V 30887.236 10.722164 14 G5 +77471 SS Lib EA/KE: 10.4 0 11.3 10.8 V 41155.660 1.4379983 20 A5 +76086 UZ Lib FKCOM 9.16 0 9.62 V 43222.15 4.75 K0IIIe +77663 VY Lib RRAB 11.12 0 12.14 V 41144.370 0.5339412 14 A7:-F7 +76050 VZ Lib EW/KW 10.13 0 10.63 10.55 V 44788.5901 0.35826334 F5 +74063 YY Lib M 9. 2 12. p 229.53 Me +76313 CG Lib RRC 11.20 0 11.80 V 41153.324 0.306850 32 A4-G0 +73315 EH Lib DSCT 9.35 0 10.08 V 33438.6082 0.0884132445 32 A5-F3 +74765 ES Lib EB/KE 7.10 0 7.57 7.33 V 40329.4669 0.8830356 A2-3V +78207 FX Lib GCAS 4.74 0 4.96 V B5IIIpe +73213 FY Lib SRB 7.06 0 7.78 V 120. M5III +74982 FZ Lib LB 6.73 0 7.24 V M4III +76075 GG Lib SR: 6.83 0 6.93 V M5:III +75325 GX Lib RS 7.31 1 0.08 V +75848 GZ Lib ACVO 6.66 0 6.71 V +74145 HI Lib ACVO 7.48 1 0.00 V +70945 HL Lib ELL: 6.93 0 7.02 V +75694 HM Lib SR: 7.42 0 7.63 V +71253 HN Lib BY 10.30 0 10.33 V +74995 HO Lib BY 10.56 0 10.58 V +78078 HR Lib DSCTC 6.13 1 0.02 V +70932 HS Lib LB 8.32 0 8.69 Hp +72209 HT Lib LB: 9.32 0 9.44 Hp +72566 HU Lib SRD 8.71 0 8.96 Hp +73445 HV Lib LB 7.89 0 8.10 Hp +73465 HW Lib RR: 9.09 0 9.22 Hp +73604 HX Lib LB: 8.45 0 8.56 Hp +73710 HY Lib DSCT 7.78 0 7.88 Hp +73984 HZ Lib LB: 8.02 0 8.12 Hp +74005 II Lib SRB 8.05 0 8.19 Hp +74119 IK Lib LB: 7.91 0 8.02 Hp +74127 IL Lib E 7.64 0 7.76 Hp +74245 IM Lib E: 9.66 0 10.01 Hp +74825 IN Lib RR: 7.33 0 7.42 Hp +74838 IO Lib RS: 9.34 0 9.46 Hp +75563 IP Lib BY: 9.97 0 10.15 Hp +75715 IQ Lib CEP: 9.33 0 9.42 Hp +75836 IR Lib EW: 8.72 0 8.83 Hp +75992 IS Lib LB: 9.11 0 9.28 Hp +76161 IT Lib EA: 9.01 0 9.51 Hp +76243 IU Lib LPB 5.11 0 5.16 Hp +76480 IV Lib E: 8.46 0 9.00 Hp +76694 IW Lib RR: 9.45 0 9.56 Hp +76828 IX Lib LB: 8.54 0 8.65 Hp +76909 IY Lib LB: 7.90 0 8.01 Hp +77861 IZ Lib SRB 7.52 0 7.63 Hp +72428 KL Lib DSCTC 8.79 1 0.02 V +71743 KU Lib BY 7.36 0 7.39 Hp 9.35 G6V +73184 KX Lib BY 5.72 1 0.04 V K4V +77707 KY Lib RS 8.93 1 0.04 V 13.62 K2V +73708 NW Lib LB 10.23 0 10.54 V C4,4 +73473 δ Lib EA/SD 4.91 0 5.90 4.98 V 42960.6994 2.3273543 23 A0IV-V +77811 λ Lib ELL 5.03 1 0.02 V +73714 σ Lib SRB 3.20 0 3.46 V 20. M3.5IIIa +73381 V Lup LB: 9.16 0 9.26 V C5,5(Nb) +71386 Z Lup LB 10.5 0 12.6 p C4,3-C6,3(Na) +70339 RS Lup LB 10.7 0 12.30 B C(Nb) +78094 RU Lup INT 9.6 0 13.4 p pec(T) +70590 RW Lup M 9.9 0 13.0 p 28766. 197. 36 MB +78317 RY Lup INSB 9.9 0 13.0 p G0Vea +77023 FQ Lup L: 9.5 0 10.5 p +75234 FW Lup RR 8.82 0 9.22 V 42171.377 0.4841712 23 F5IV +74950 GG Lup EB/DM 5.49 0 6.0 5.8 B 34532.325 2.164175 B7V +75430 GH Lup CEP 7.55 0 7.83 V 41125.4 9.285 G2Iab +73764 GM Lup LB: 6.38 0 6.7 V M6III +75727 GO Lup SRB 6.98 0 7.19 V M4III +74321 HP Lup EA 9.27 0 9.52 V +75558 HQ Lup ACV 7.37 0 7.38 V +74066 HR Lup ACV 5.76 0 5.81 V +74049 HS Lup E:/RS: 7.74 1 0.04 V +77157 HT Lup INT 10.26 0 10.40 V +70270 HX Lup ELL: 6.09 1 0.06 V +73937 HZ Lup ACV 5.96 1 0.07 V +78053 IM Lup INT 11.73 0 12.09 y +78435 IO Lup DSCTC 6.65 1 0.03 V +70530 IP Lup ACV 7.95 0 8.04 Hp +70840 IQ Lup E: 10.40 0 10.72 Hp +71128 IR Lup LB: 8.49 0 8.60 Hp +71666 IS Lup LPB 9.29 0 9.33 Hp +71727 IT Lup ACV 6.56 0 6.60 Hp +73479 IU Lup EA 8.78 0 9.10 Hp +73526 IV Lup LB 8.03 0 8.37 Hp +73763 IW Lup SRB 8.83 0 9.00 Hp +74152 IX Lup LB: 8.30 0 8.40 Hp +74166 IY Lup LB: 8.23 0 8.35 Hp +74252 IZ Lup SRB 8.30 0 8.45 Hp +74369 KK Lup LB 7.59 0 7.87 Hp +74714 KL Lup LB: 8.23 0 8.34 Hp +74807 KM Lup LB: 7.57 0 7.69 Hp +75035 KN Lup BY: 9.21 0 9.33 Hp +75207 KO Lup LB: 6.89 0 6.99 Hp +75620 KP Lup LB: 7.93 0 8.18 Hp +75818 KQ Lup E: 6.50 0 6.54 Hp +75924 KR Lup BY: 8.87 0 8.98 Hp +76044 KS Lup LB 8.89 0 8.98 Hp +76371 KT Lup BE 4.48 0 4.50 Hp +76762 KU Lup ACV 6.93 0 6.99 Hp +76987 KV Lup EB 8.75 0 8.97 Hp +77199 KW Lup BY: 9.40 0 9.58 Hp +77462 KX Lup LB: 8.34 0 8.44 Hp +77657 KY Lup ACV 8.88 0 8.99 Hp +77691 KZ Lup SRB 8.30 0 8.84 Hp +78533 LL Lup ACV: 7.41 0 7.47 Hp +78756 LM Lup ACV 6.90 0 6.94 Hp +78781 LN Lup SRB 7.37 0 7.72 Hp +76485 NX Lup GDOR 7.95 0 8.03 Hp F0V +72178 OO Lup EA 8.66 0 8.75 8.75 V 48347.805 7.06114 04 F3/F5V +73780 OR Lup EA 9.28 0 9.55 9.53 V 48681.670 7.55596 04 G0IV/V +74348 OY Lup EA 8.94 0 9.05 9.03 V 52878.610 6.14395 04 A1mA3-A6 +77972 PP Lup EA 8.67 0 9.06 8.82 V 53170.910 29.6924 04 A7+F +75787 V0376 Lup BCEP: 8.17 0 8.20 Hp 0.564882 B9III +71860 α Lup BCEP 2.29 0 2.34 V 37418.395 0.2598466 B1.5III +76297 γ Lup ELL: 2.69 0 2.71 Hp +75141 δ Lup BCEP 3.20 0 3.24 V 41045.172 0.16547 50 B1.5IV +71121 σ Lup ELL: 4.42 1 0.02 V +33824 R Lyn M 7.2 0 14.3 V 45175. 378.75 44 S2.5,5e-S6,8e: +41058 T Lyn M 8.8 0 13.5 V 43200. 406.0 47 C5,2e-C7,1e(NOe) +30945 V Lyn SRB 9.5 0 12.0 p M5III-IV +40546 W Lyn M 7.5 0 14.0 V 42050. 295.2 M6 +36288 Y Lyn SRC 7.8 0 10.3 p 110. M6SIb-II +39878 Z Lyn CST: 8.8 0 p A2 +30651 RR Lyn EA/DM 5.52 0 6.03 5.90 V 33153.8623 9.945079 04 A7Vm+F3V +39433 SV Lyn SRB 8.2 0 9.1 p 70. M5III +39771 SW Lyn EA/DW 9.51 0 10.20 9.65 V 43975.390 0.6440634 12 F2V +39960 SZ Lyn DSCT 9.08 0 9.72 V 38124.3982 0.120534920 30 A7-F2 +44428 TT Lyn RRAB 9.42 0 10.21 V 36651.3560 0.597434355 17 F0-F8 +36750 TV Lyn RRC 11.24 0 11.66 V 40950.922 0.24065119 42 A6 +37805 TW Lyn RRAB 11.0 0 12.3 p 45022.458 0.481860 17 F6-F8: +41782 TZ Lyn ACV 6.65 0 6.79 V 37311.12 6.80054 56 A0p(Eu-Cr-Sr) +44455 UV Lyn EW/KW 9.41 0 9.81 9.78 V 40271.5032 0.41498088 F8 +29919 UW Lyn LB: 4.95 1 0.11 V M3IIIab +44481 UX Lyn SRB: 6.60 0 6.78 V M6III +34912 UY Lyn LB: 5.47 0 5.55 V M3IIIab +30060 UZ Lyn E:+DSCTC: 4.43 0 4.73 V A2V +36626 VV Lyn UV+BY: 10.53 0 10.60 V M3.5Ve +39348 AE Lyn RS 6.49 1 0.06 V +45649 BE Lyn DSCT 8.60 0 9.00 V +45963 BF Lyn BY 7.72 1 0.1 V +36627 BL Lyn BY 11.76 0 11.80 V +38003 BM Lyn RS+E 7.70 1 0.25 V +41075 BN Lyn SRD: 4.21 0 4.27 V +31359 BQ Lyn SRD 6.48 0 6.69 Hp +33100 BR Lyn SRB: 7.39 0 7.95 Hp +33707 BS Lyn LB: 8.36 0 8.46 Hp +34343 BT Lyn SRB 9.18 0 9.45 Hp +34362 BU Lyn SRB: 8.61 0 8.80 Hp +34435 BV Lyn LB: 8.13 0 8.25 Hp +35525 BW Lyn SRB 8.22 0 8.41 Hp +35977 BX Lyn LB: 8.37 0 8.48 Hp +36334 BY Lyn SRB: 6.60 0 6.70 Hp +36545 BZ Lyn SRB: 7.56 0 7.72 Hp +36965 CC Lyn EW 6.42 0 6.52 Hp +37615 CD Lyn E: 9.83 0 10.37 Hp +37707 CE Lyn SRB 7.20 0 7.66 Hp +37748 CF Lyn E 9.61 0 9.93 Hp +37847 CG Lyn LB: 8.65 0 8.77 Hp +37973 CH Lyn SRB 7.93 0 8.07 Hp +37999 CI Lyn SRD 8.70 0 8.86 Hp +38257 CK Lyn LB 6.81 0 6.94 Hp +38684 CL Lyn EA 9.78 0 10.37 Hp +38738 CM Lyn LB 8.48 0 8.83 Hp +39250 CN Lyn EA 9.07 0 9.58 Hp +39944 CO Lyn DSCTC 6.88 0 6.94 Hp +40135 CP Lyn LB: 8.11 0 8.21 Hp +40230 CQ Lyn DSCT 8.04 0 8.14 Hp +40651 CR Lyn DSCTC 7.70 0 7.77 Hp +40641 CS Lyn EB 8.49 0 8.67 Hp +40931 CT Lyn SRB 7.97 0 8.11 Hp +41149 CU Lyn LB 8.76 0 8.97 Hp +41302 CV Lyn SRB: 8.61 0 8.73 Hp +42554 CW Lyn EB: 9.61 0 9.85 Hp +42744 CX Lyn LB 7.48 0 7.65 Hp +43685 CY Lyn ELL: 6.15 0 6.18 Hp +43963 CZ Lyn SRB 7.92 0 8.07 Hp +38723 DD Lyn DSCTC 6.23 1 0.03 V +47053 DI Lyn EA 6.79 0 6.87 V +37863 DO Lyn GDOR 7.17 1 0.05 V +37946 DU Lyn SRB 5.18 1 0.13 V +36704 DX Lyn BY 7.68 1 0.02 V 8.03 G5V +40395 EE Lyn DSCTC 9.12 0 9.14 V 0.05 F0 +40791 EF Lyn GDOR 7.23 0 7.27 Hp 0.4229 A5 +45290 EI Lyn SXARI 5.32 1 0.03 V 3.834 B8IIIp +38458 ET Lyn DSCTC 7.38 0 7.42 V 0.184373 gF1 +92862 R Lyr SRB 3.88 0 5.0 V 46. M5III +90883 T Lyr LB 7.84 0 9.6 V C6,5(R6) +89419 W Lyr M 7.3 0 13.0 V 45084. 197.88 48 M2e-M8e +95497 RR Lyr RRAB 7.06 0 8.12 V 42923.4193 0.56686776 19 A5.0-F7.0 +94438 SS Lyr M 8.4 0 14.0 V 45090. 346.33 M5IIIe +89498 TZ Lyr EB/D 10.87 0 11.85 11.05 V 44784.4093 0.5288269 F5V +91373 XY Lyr LC 5.80 0 6.35 V M4-5Ib-II +91015 CC Lyr CWA 11.65 0 12.45 V 44045.09 24.16 21 F0p +91634 CN Lyr RRAB 11.07 0 11.76 V 44486.3338 0.41138232 22 F0-F5 +92221 EZ Lyr RRAB 10.8 0 11.8 V 33914.3357 0.52526769 10 A7-F4 +91703 FI Lyr SRB 9.6 0 10.4 V 146. M +94335 FL Lyr EA/DM 9.27 0 9.89 9.52 V 38221.5525 2.1781544 08 G0V +91774 HK Lyr LB 7.8 0 9.6 V C6,4(N4) +95032 HO Lyr M 11.4 0 14.0 p 30584. 100.4 40 M2e +90053 IO Lyr RRAB 11.27 0 12.24 V 39618.9315 0.57712278 18 F1-F6 +93989 V0398 Lyr LB 7.30 0 7.57 V M6 +94311 V0471 Lyr ACV 5.91 0 5.98 V 41449.99 1.160898 B9p(Si) +94685 V0473 Lyr DCEPS: 5.99 0 6.35 V 39320.6859 1.49078 50 F6Ib-II +93926 V0478 Lyr RS 7.63 1 0.03 V 44506.76 2.185 G6V +93817 V0511 Lyr RS 8.92 1 0.08 V +89645 V0527 Lyr LB: 9.26 0 9.60 Hp +90170 V0528 Lyr SRB 6.61 0 6.77 Hp +90293 V0529 Lyr ACV 7.32 0 7.35 Hp +90723 V0530 Lyr LB: 7.40 0 7.51 Hp +90880 V0531 Lyr E: 8.27 0 8.63 Hp +90970 V0532 Lyr BE 6.44 0 6.54 Hp +91250 V0533 Lyr EB 6.26 0 6.38 Hp +91359 V0534 Lyr ACYG: 8.08 0 8.42 Hp +91671 V0535 Lyr LPB 7.36 0 7.40 Hp +91789 V0536 Lyr LB 7.97 0 8.27 Hp +92048 V0537 Lyr LB: 7.89 0 8.02 Hp +92335 V0538 Lyr LB 7.11 0 7.45 Hp +92537 V0539 Lyr EA 7.26 0 7.31 Hp +92513 V0540 Lyr LB 7.77 0 7.94 Hp +92700 V0541 Lyr LB 6.44 0 6.66 Hp +93104 V0542 Lyr EA 5.83 0 5.95 Hp +93177 V0543 Lyr BCEP: 6.10 0 6.20 Hp +93214 V0544 Lyr DSCTC 7.51 0 7.54 Hp +93210 V0545 Lyr LPB: 6.36 0 6.38 Hp +93222 V0546 Lyr LB: 7.78 0 7.88 Hp +93309 V0547 Lyr LB 6.48 0 6.58 Hp +93359 V0548 Lyr SRB 8.49 0 8.75 Hp +93633 V0549 Lyr DSCTC: 8.11 0 8.14 Hp +93808 V0550 Lyr LPB 6.43 0 6.47 Hp +93907 V0551 Lyr ELL: 7.11 0 7.17 Hp +94354 V0552 Lyr LB 7.05 0 7.18 Hp +94474 V0553 Lyr LB 9.51 0 10.19 Hp +94619 V0554 Lyr ACV: 8.06 0 8.14 Hp +94862 V0555 Lyr LB 8.45 0 8.59 Hp +95459 V0556 Lyr EB 8.09 0 8.30 Hp +95537 V0557 Lyr SRD 7.22 0 7.46 Hp +95673 V0558 Lyr BE 6.22 0 6.30 Hp +89771 V0590 Lyr BY 8.28 1 0.02 V 4.825 K0V +92122 V0595 Lyr BY 8.10 1 0.02 V 10.973 G5V +91262 α Lyr DSCTC -0.02 0 0.07 V 0.19 A0V +92420 β Lyr EB 3.25 0 4.36 3.85 V 08247.950 12.913834 B8II-IIIep +93903 ι Lyr BE 5.20 0 5.27 Hp +19424 U Men SRA 8.0 0 10.9 p 36065. 407.28 Me +25472 TY Men EW/K 8.08 0 8.56 8.47 V 42054.7973 0.46166701 A3-4V +25776 TZ Men EA/D 6.19 0 6.87 6.36 V 39190.34 8.56898 04 A1III+B9V: +25760 UX Men EA/DM 8.8 0 9.57 9.47 p 41984.6438 4.181100 05 G1V+G1V +26169 WX Men LB: 5.72 1 0.15 V M2-3III +22260 XZ Men DSCTC(B) 7.85 1 0.03 V A3p +23106 YY Men FKCOM: 8.60 0 8.89 V +24085 YZ Men RS 7.69 0 7.75 V +30582 AE Men RS 8.24 0 8.33 V +17955 AI Men SRB 7.42 0 7.48 Hp +18179 AK Men DSCT 9.13 0 9.27 Hp +25864 AL Men EB 8.90 0 9.21 Hp +28587 AM Men LB: 8.48 0 8.58 Hp +28440 AN Men EW 9.36 0 9.54 Hp +29964 AO Men BY: 9.96 0 10.18 Hp +31678 AP Men SRB 7.64 0 7.98 Hp +26264 ι Men ELL: 6.00 0 6.05 6.05 V 41979.85 5.288 B8II +101985 R Mic M 8.3 0 13.8 V 43311. 138.62 46 M4e +100935 T Mic SRB 7.7 0 9.6 p 347. M6e +101063 U Mic M 7.0 0 14.4 V 39540. 334.29 39 M5e-M7e +105638 V Mic M 9.4 0 14.0 p 30044. 381.15 M3e-M6e +105026 Z Mic RRAB 11.23 0 11.86 V 41597.376 0.5869340 15 F0-F8II +104986 RR Mic CWA 11.01 0 11.86 V 44139.57 31.52 19 +103684 ZZ Mic DSCT(B:) 9.27 0 9.69 V 40442.8443 0.0671835 40 A3-A8IV +102141 AT Mic UV 11.4 0 12.90 U M4.5Ve+M4.5Ve +102409 AU Mic BY+UV 8.59 0 8.96 V 42720.75 4.865 M1.6Ve +102096 AV Mic LC: 6.25 0 6.35 V M3II +105249 AW Mic RRC: 9.04 0 9.13 V 0.479 B9 +105090 AX Mic UV 9.21 0 9.31 U M0Ve +104861 BM Mic RS 8.23 0 8.45 V +104894 BN Mic RS 7.68 0 7.94 V +102626 BO Mic BY 9.2 1 0.21 V +105912 BR Mic BCEP 8.78 0 8.82 V +101678 BS Mic LB 8.64 0 9.02 Hp +101977 BT Mic EB 10.14 0 10.41 Hp +101968 BU Mic DSCTC 7.28 0 7.32 Hp +102256 BV Mic EA: 9.86 0 10.20 Hp +102355 BW Mic SRD: 9.19 0 9.31 Hp +102412 BX Mic EB: 6.91 0 6.96 Hp +103168 BY Mic LB: 6.49 0 6.52 Hp +103625 BZ Mic LB 8.72 0 8.90 Hp +105058 CC Mic E: 9.76 0 10.17 Hp +105464 CD Mic E: 8.59 0 9.04 Hp +105648 CE Mic BY: 11.17 0 11.39 Hp +105788 CF Mic LB 7.28 0 7.90 Hp +31978 S Mon IA: 4.62 0 4.68 V O7.5III-Vf +30541 T Mon DCEP 5.58 0 6.62 V 43784.615 27.024649 27 F7Iab-K1Iab+A0V +36521 U Mon RVB 6.1 0 8.8 p 38496. 91.32 22 F8eVIb-K0pIb(M2) +30326 V Mon M 6.0 0 13.9 V 44972. 340.5 46 M5e-M8e +33441 X Mon SRA 6.8 0 10.2 V 42446. 155.8 51 M1eIII-M6ep +39877 RT Mon SRB 8.13 0 10.3 V 107. 49 M3-4III +33163 RU Mon EA/DM 10.33 0 11.18 11.06 V 41743.1947 3.584749 06 B9p +33550 RV Mon SRB 9.71 0 11.9 B 131.5 C4,4-C6,2(Nb/R9) +31383 RW Mon EA/SD 9.26 0 11.51 9.45 V 33680.4481 1.90609412 15 B9V+F8V-G0IV +36394 RX Mon M 9.6 2 13.0 p 35800. 345.7 M6e-M9 +34326 RY Mon SRA 7.5 0 9.2 V 27440. 455.7 43 C5,5-C7,4:(N5/R) +30219 SV Mon DCEP 7.61 0 8.88 V 43794.338 15.232780 38 F6-G4 +30701 SW Mon SRB 9.05 0 10.9 V 112. M4III-M6 +32915 SZ Mon RVA 9.66 0 10.75 10.55 V 40550.0 32.685 F9-K5 +36043 TT Mon M 8.0 2 13.5 p 38323. 323.17 M5e-M8 +38523 TU Mon EA/SD 9.0 0 11.7 9.1 p 34068.1230 5.0490291 15 B5V+A5III: +32854 TX Mon DCEP 10.67 0 11.36 V 35838.977 8.701731 36 F6-G2 +33520 TZ Mon DCEP 10.43 0 11.18 V 37633.801 7.42818 30 F6-G1 +39042 UX Mon EA+DSCT: 8.22 0 9.16 8.52 V 33328.8533 5.9045505 17 A6Vep+G0-G2III-I +34003 VV Mon EA/D/RS 9.4 0 9.95 9.55 V 26037.543 6.050829 11 K0IV+G2 +33791 AC Mon DCEP 9.75 0 10.47 V 37683.203 8.01425 30 F5-G1 +34299 AO Mon EA/DM 9.6 0 10.23 10.16 V 40588.3272 1.884660 17 B3+B5 +35600 AR Mon EA/GS/RS 8.62 0 9.47 9.03 V 26606.408 21.20911 08 G8III+K0III +33237 AU Mon EA/DS: 8.11 0 9.06 8.2 V 42801.3752 11.1130371 10 B5ea+F0 +31019 AX Mon * 6.59 0 6.94 V 39550. 232.5 B1eqIV+K1II-III +31905 BE Mon DCEP 10.19 0 10.88 V 41880.240 2.705510 26 F4-G0 +33369 BG Mon SRB 9.2 0 10.4 V 31881. 30. C5,2(N) +31624 CV Mon DCEP 9.90 0 10.70 V 42773.136 5.378898 26 +33014 EK Mon DCEP 10.77 0 11.42 V 40896.54 3.957941 31 +30301 FU Mon SR 11.6 0 12.7 p 29350. 309.8 C8,0J(CSe) +38898 FW Mon EA/SD: 9.4 0 10.6 0.04 p 27562.220 3.8735903 13 B5+F2 +33059 GY Mon LB 9.4 0 11.6 p C6,3(N3/R8) +30351 IM Mon EB/KE 6.40 0 6.49 6.47 B 33340.168 1.190243 B5Vp+B7 +32520 MR Mon LB 9.6 0 11.2 p M3-M5 +32621 PZ Mon ISB: 9.6 0 11.1 p K2Ve +34421 V0465 Mon DCEP 10.17 0 10.77 V 41698.687 2.713176 38 G0 +28321 V0474 Mon DSCT 5.93 0 6.36 V 41661.1668 0.13612600 F2IV +32397 V0505 Mon EB/GS/D 7.15 0 7.65 7.55 V 44635.318 53.7805 B5eaIb+B5 +32516 V0508 Mon DCEP 10.22 0 10.74 V 41732.070 4.133608 26 +33530 V0523 Mon SRB 6.95 0 7.45 V 45. MB +33874 V0526 Mon DCEPS 8.45 0 8.78 V 40286.290 2.674985 48 F6II +34234 V0569 Mon BCEP 6.42 0 6.53 V 0.267 B0V +34724 V0571 Mon DSCTC 5.43 0 5.50 V F2V +30920 V0577 Mon UV 12.5 0 13.3 B M4.5Ve +32838 V0592 Mon ACV 6.16 0 6.32 V 33942.98 2.9760 A2p(Sr-Cr) +32627 V0613 Mon SRB: 7.64 0 8.5 V M2(S5,1) +33794 V0614 Mon SRB 7.01 0 7.36 V 60. C4,5J(R5) +39264 V0635 Mon EA/DM 7.6 0 8.1 p 29658.375 1.807805 F5+A2 +33971 V0637 Mon BCEP 4.96 0 5.01 V 43496.1169 0.19120 B1IV-Vea +29401 V0638 Mon ACV 6.16 0 6.18 V 43852.00 0.724 50 B9p(Hg-Mn) +31646 V0640 Mon * 6.04 0 6.08 V O8V+O8f +31939 V0641 Mon ELL 8.46 1 0.07 V 43214.577 1.304054 B1.5IV+B2V +33436 V0644 Mon GCAS 6.88 0 6.98 V B0-1V-IVeq+K +39211 V0645 Mon FKCOM 4.68 1 0.02 V 43100.000 0.207878 50 K4III +34049 V0646 Mon ACV 8.85 0 8.92 V 44230.732 11.978 A0p(Sr-Eu) +30793 V0648 Mon ACV 7.35 0 7.39 V +34541 V0651 Mon * 11.29 0 15.28 V +29323 V0653 Mon ACV 6.19 1 0.04 U +30789 V0682 Mon ACV 7.65 0 7.73 U +31766 V0689 Mon ACYG 6.19 0 6.26 V +39172 V0695 Mon BE 6.48 0 6.55 V +28744 V0696 Mon * 5.12 0 5.18 B +31235 V0700 Mon INA 8.62 0 8.91 V +32682 V0715 Mon LPB: 5.34 1 0.18 U +28215 V0717 Mon LB 7.27 0 7.50 Hp +29847 V0718 Mon LPB 8.08 0 8.13 Hp +30185 V0719 Mon LB: 7.14 0 7.23 Hp +30380 V0720 Mon LC: 9.60 0 9.83 Hp +30407 V0721 Mon LB 6.18 0 6.26 Hp +30806 V0722 Mon E: 7.84 0 7.99 Hp +30891 V0723 Mon SRD: 8.37 0 8.51 Hp +30909 V0724 Mon SRB 7.88 0 8.14 Hp +30992 V0725 Mon BE 8.87 0 9.01 Hp +30993 V0726 Mon LPB 7.93 0 7.97 Hp +31065 V0727 Mon EB 7.88 0 7.99 Hp +31199 V0728 Mon BE 8.03 0 8.12 Hp +31363 V0729 Mon SRB 6.72 0 6.90 Hp +31371 V0730 Mon EA: 8.85 0 8.95 Hp +31697 V0731 Mon ACYG: 6.16 0 6.22 Hp +31739 V0732 Mon LPB: 8.16 0 8.26 Hp +31894 V0733 Mon BE 8.61 0 8.83 Hp +31906 V0734 Mon ACV 8.49 0 8.55 Hp +31934 V0735 Mon ACV: 7.50 0 7.54 Hp +31925 V0736 Mon LB 6.90 0 7.04 Hp +32088 V0737 Mon BE 8.81 0 8.92 Hp +32187 V0738 Mon SRB 9.72 0 9.98 Hp +32586 V0739 Mon BE 8.94 0 9.04 Hp +32745 V0740 Mon ACV 7.28 0 7.34 Hp +32839 V0741 Mon LPB: 6.84 0 6.88 Hp +32947 V0742 Mon BE 6.89 0 6.94 Hp +32923 V0743 Mon GCAS 6.57 0 6.87 V +33267 V0744 Mon BE: 7.61 0 7.85 Hp +33261 V0745 Mon EA 7.69 0 7.99 Hp +33361 V0746 Mon BE 8.04 0 8.14 Hp +33437 V0747 Mon BE: 8.02 0 8.21 Hp +33822 V0748 Mon LB: 8.59 0 8.73 Hp +34032 V0749 Mon GCAS: 7.08 0 7.25 Hp +34116 V0750 Mon GCAS 6.92 0 7.22 V +34385 V0751 Mon SRB 7.85 0 7.99 Hp +34401 V0752 Mon DSCTC: 6.99 0 7.01 Hp +34684 V0753 Mon EB: 8.30 0 8.82 Hp +34807 V0754 Mon ACV: 8.70 0 8.79 Hp +35300 V0755 Mon LPB 7.18 0 7.23 Hp +35475 V0756 Mon LB: 7.12 0 7.29 Hp +35669 V0757 Mon BE: 6.49 0 6.58 Hp +35810 V0758 Mon LB 8.96 0 9.25 Hp +35831 V0759 Mon ACV: 8.68 0 8.80 Hp +36004 V0760 Mon LB 8.56 0 8.82 Hp +36093 V0761 Mon E: 8.36 0 8.44 Hp +36495 V0762 Mon LB: 8.81 0 8.91 Hp +36969 V0763 Mon BE 7.70 0 7.85 Hp +37126 V0764 Mon RRC 7.13 0 7.20 Hp +37294 V0765 Mon LB: 11.12 0 11.49 Hp +37466 V0766 Mon LB 8.25 0 8.39 Hp +38242 V0767 Mon LB 9.53 0 9.97 Hp +38728 V0768 Mon LB: 10.24 0 10.42 Hp +39017 V0769 Mon EB: 7.03 0 7.09 Hp +39541 V0770 Mon SRB: 7.37 0 7.46 Hp +39844 V0771 Mon LB: 8.15 0 8.26 Hp +39857 V0772 Mon CEP: 10.22 0 10.38 Hp +39927 V0773 Mon E: 7.59 0 7.67 Hp +39997 V0774 Mon LB 7.78 0 7.90 Hp +40025 V0775 Mon LB 7.57 0 7.73 Hp +30089 V0777 Mon R: 8.78 0 8.94 V +36419 V0827 Mon ACV 7.96 0 8.00 V +32475 V0839 Mon GDOR: 7.5 1 0.01 V +31069 V0848 Mon BY 8.94 1 0.02 V 19.98 K2IV-V +31849 V0850 Mon BY 9.37 1 0.03 V 9.99 K3V +34095 V0862 Mon BY 9.08 1 0.02 V 10.88 G5V +36827 V0867 Mon BY 8.16 1 0.02 V 4.76 K2V +37349 V0869 Mon BY 7.18 1 0.02 V K2Ve +33225 V0878 Mon EB 8.11 0 8.18 8.14 V 48574.663 0.697461 K0 +33303 V0880 Mon EW 8.21 0 8.41 8.41 V 52232.752 0.372457 G0 +33538 V0883 Mon EA 8.71 0 8.86 8.77 V 48701.550 50.363 02 F0 +37455 V0891 Mon EA 8.12 0 8.33 8.30 V 48196.000 31.4204 02 B9.5/A0IV +33513 V0920 Mon EA 7.47 0 7.54 7.48 V 48356.79 6.7664 05 A2:V:m+G8IIIe +33891 V0926 Mon SRC 6.50 0 6.70 V 39. M1Ib+A0 +34355 V0930 Mon EB 8.32 0 8.41 8.40 V 51889.743 2.35510 B3II/III +30867 β Mon BE 3.77 0 3.84 Hp +61981 R Mus DCEP 5.93 0 6.73 V 26496.288 7.510211 30 F7Ib-G2 +59551 S Mus DCEP 5.89 0 6.49 V 40299.42 9.66007 49 F6Ib-G0 +65166 T Mus SRB 9.4 0 12.0 p 93. C(Np) +63911 Y Mus RCB 10.5 0 12.1 p Fp +57260 RT Mus DCEP 8.57 0 9.32 V 43290.39 3.086131 27 F8 +56196 TU Mus EB/KE 8.17 0 8.75 8.65 V 41699.8270 1.3872833 O8.5Vn+O8 +57884 UU Mus DCEP 9.13 0 10.28 V 36208.270 11.63641 37 F7/G0p +61404 BO Mus LB 5.85 0 6.56 V M6II-III +58504 DZ Mus EA/D 8.3 0 8.9 p 18093.728 3.247619 B8/9IV-V +62981 EF Mus LB: 8.0 0 8.8 p K1II/III +65755 EZ Mus ACV 6.19 1 0.09 V 43172.57 4.3127 50 B8Vp(Si) +61796 FH Mus ELL: 6.26 1 0.03 0.03 V 0.58 B8V +58998 GS Mus ACYG 7.34 0 7.55 V +56862 GT Mus E:/RS 5.08 0 5.21 V +56144 KO Mus SRB: 8.52 0 8.85 Hp +56252 KP Mus BE 8.55 0 8.68 Hp +56246 KQ Mus LPB 6.92 0 6.98 Hp +56379 KR Mus E 6.68 0 6.87 Hp +57928 KS Mus LB: 8.07 0 8.17 Hp +58719 KT Mus LC: 7.76 0 8.10 Hp +59665 KU Mus EB: 9.06 0 9.26 Hp +59959 KV Mus BE: 8.46 0 8.61 Hp +60862 KW Mus LB: 9.18 0 9.30 Hp +61703 KY Mus ACYG: 6.24 0 6.30 Hp +61751 KZ Mus BCEP 9.02 0 9.10 Hp +61882 LL Mus EA 8.93 0 9.34 Hp +62247 LM Mus SRB 6.99 0 7.19 Hp +62339 LN Mus EB 9.19 0 9.46 Hp +62403 LO Mus BY: 8.61 0 8.72 Hp +62588 LP Mus LB: 8.45 0 8.56 Hp +62801 LQ Mus EA 9.08 0 9.78 Hp +63154 LR Mus LB: 8.13 0 8.25 Hp +63688 LS Mus BE 5.90 0 6.01 Hp +65398 LT Mus EB: 7.80 0 7.92 Hp +65693 LU Mus BE 9.17 0 9.28 Hp +65848 LV Mus BE 7.65 0 7.78 Hp +66572 LW Mus DSCT 9.22 0 9.36 Hp +66683 LX Mus EA 8.85 0 9.03 Hp +66783 LY Mus LB 6.55 0 6.97 Hp +60944 MO Mus ACYG 7.37 0 7.42 Hp +57032 MR Mus EA 8.41 0 8.53 8.53 V 48009.675 3.115733 A2V+F6V +61585 α Mus BCEP 2.68 0 2.73 V 0.0903 B2IV-V +61199 γ Mus LPB 3.78 0 3.80 Hp +59929 ε Mus SRB: 3.99 0 4.31 V 40. M5III +64661 η Mus E 4.76 0 4.81 V B8V +64094 tet Mus E+WR 5.50 0 5.52 V 40661.4 18.341 WC6+O9.5I +57581 μ Mus LB 4.6 0 4.8 V K4III +76377 R Nor M 6.5 0 13.9 p 41874. 507.50 M3e-M6II +79932 S Nor DCEP 6.12 0 6.77 V 44018.69 9.75411 47 F8-G0Ib +77058 T Nor M 6.2 0 13.6 V 40976. 240.7 41 M3e-M6e +76918 U Nor DCEP 8.63 0 9.83 V 44788.5 12.64371 46 F6-F8Ib/II-G5 +78797 RS Nor DCEP 9.62 0 10.39 V 35308.21 6.19814 29 +80365 RT Nor RCB 10.6 0 16.3 p C(R) +77913 SY Nor DCEP 8.98 0 9.94 V 40737.43 12.6452 35 +78771 TW Nor DCEP 11.17 0 12.22 V 41092.21 10.78618 50 +80931 VY Nor RRAB 12.1 0 12.8 p 25535.249 0.375305 43 +79625 GU Nor DCEP 10.08 0 10.73 V 44025.74 3.452877 34 +74448 IQ Nor DCEP 9.47 0 10.11 V 37875.77 8.23862 32 +80721 OZ Nor GCAS: 7.5 0 7.67 B B2Ve +80678 PQ Nor 7.69 0 7.74 V 42180.2 5.58 B8/9V +80782 QU Nor GCAS 5.29 0 5.41 V B1.5Iape +78731 QY Nor ACV 6.45 1 0.01 V 5.2 A0p(Si) +76629 V0343 Nor BY: 8.14 1 0.12 V +80563 V0348 Nor BCEP: 7.87 0 7.96 V +75878 V0358 Nor LB: 8.40 0 8.54 Hp +76968 V0359 Nor LB 7.59 0 7.76 Hp +77645 V0360 Nor ACYG: 5.77 0 5.79 Hp +78310 V0361 Nor ACYG: 7.10 0 7.16 Hp +78803 V0362 Nor LC: 7.12 0 7.28 Hp +78810 V0363 Nor LB: 7.89 0 8.02 Hp +79038 V0364 Nor BE 9.24 0 9.32 Hp +79055 V0365 Nor LB 6.89 0 6.99 Hp +79207 V0366 Nor ACYG: 8.52 0 8.62 Hp +79490 V0367 Nor LC: 5.94 0 6.11 Hp +79754 V0368 Nor SRB 5.43 0 5.54 Hp +79880 V0369 Nor LB 7.12 0 7.44 Hp +79949 V0370 Nor LB: 8.17 0 8.28 Hp +79958 V0371 Nor BY: 9.35 0 9.48 Hp +80531 V0372 Nor ACV: 7.80 0 7.86 Hp +80545 V0373 Nor E: 8.47 0 8.65 Hp +80557 V0374 Nor ELL: 7.16 0 7.23 Hp +80580 V0375 Nor LB: 9.79 0 9.93 Hp +80640 V0376 Nor BE: 8.57 0 8.74 Hp +80659 V0377 Nor LC 9.07 0 9.33 Hp +80788 V0378 Nor CEP: 6.21 0 6.23 Hp +80830 V0379 Nor LB 7.77 0 7.89 Hp +80965 V0380 Nor SRB 7.58 0 7.68 Hp +80222 V0399 Nor EB 8.19 0 8.30 8.24 V 53170.830 3.19288 F6/7V +81122 μ Nor ACYG: 4.87 0 4.98 V O9.7Iab +25412 R Oct M 6.4 0 13.2 V 41985. 405.39 44 M5.5e +51084 X Oct SRA 8.7 0 12.7 p 28885. 206.80 M3e-M6IIIe +86836 Z Oct M 11.0 0 13.5 p 13825. 335. +113652 RT Oct M 10.4 0 14.6 p 36063. 180.16 Me +703 RU Oct M 10.2 0 15. p 13443. 373. +67227 RV Oct RRAB 11.6 0 12.1 p 15116.665 0.5711625 11 +106649 RY Oct RRAB 10.4 0 12.1 p 27987.453 0.563469 36 +108057 SS Oct RRAB 10.8 0 12.1 p 28020.607 0.621825 13 +80990 UV Oct RRAB 8.70 0 9.97 V 34328.396 0.542625 A6-F6 +21989 UZ Oct EB/KE 9.03 0 9.56 9.48 V 42064.4480 1.1493549 +75736 BP Oct DSCTC 6.46 1 0.04 V 0.08 A2m +71348 BQ Oct LB: 6.8 1 0.1 V M4III(S5,1) +89858 BR Oct LB: 9.4 0 10.0 p M4-6 +110428 BW Oct LB: 8.8 0 9.7 p M7III +98757 CC Oct DSCTC 8.01 1 0.10 V 0.12490 Fm +99013 CE Oct DSCTC 8.02 1 0.02 V A7IV/V +102803 CF Oct RS 8.27 1 0.3 V +112355 CG Oct DSCTC 6.85 1 0.04 B +4266 CN Oct LB: 8.45 0 8.55 Hp +14210 CO Oct LB 8.74 0 8.92 Hp +14700 CP Oct DSCTC: 7.68 0 7.73 Hp +20930 CQ Oct SRB 8.12 0 8.59 Hp +22379 CR Oct SRB 7.16 0 7.27 Hp +39998 CS Oct LB: 7.72 0 7.82 Hp +57037 CT Oct BY: 10.91 0 11.34 Hp +59404 CU Oct ACV 7.39 0 7.43 Hp +82459 CV Oct LB 8.92 0 9.19 Hp +83255 CW Oct ACV: 6.05 0 6.07 Hp +83366 CX Oct SRB 7.83 0 8.05 Hp +93082 CY Oct LB 7.97 0 8.10 Hp +97159 CZ Oct LB 7.55 0 7.72 Hp +98832 DD Oct E: 9.72 0 9.94 Hp +100187 DE Oct RRC: 9.19 0 9.26 Hp +101572 DF Oct LB: 8.85 0 8.99 Hp +102428 DG Oct LB: 8.81 0 8.97 Hp +102984 DH Oct LB: 9.10 0 9.21 Hp +105581 DI Oct SRD 7.24 0 7.41 Hp +107823 DK Oct LPB 7.62 0 7.66 Hp +108192 DL Oct LB 7.64 0 8.18 Hp +108768 DM Oct BY: 11.69 0 12.03 Hp +110364 DN Oct SRB: 7.28 0 7.36 Hp +114889 DO Oct SRB: 8.20 0 8.34 Hp +114451 DP Oct LB 7.81 0 7.95 Hp +115609 DQ Oct SRB 8.35 0 8.59 Hp +49616 DR Oct RS: 8.70 0 8.73 V +102842 DU Oct EA/RS: 9.21 0 9.48 9.34 V 52845.852 2.47867 G3V +104043 α Oct EB 5.22 0 5.26 Hp +110256 ε Oct SRB 4.58 0 5.30 V 55. M6III +112781 χ Oct LPB 5.26 0 5.29 Hp +104382 σ Oct DSCTC 5.45 1 0.05 V 0.097 F0IV +84500 U Oph EA/DM 5.84 0 6.56 6.46 V 44416.3864 1.67734617 16 B5V+B5V +80550 V Oph M 7.3 0 11.6 V 45071. 297.21 48 C5,2-C7,4e(N3e) +91389 X Oph M 5.9 0 9.2 V 44729. 328.85 53 M5e-M9e +87495 Y Oph DCEPS 5.87 0 6.46 V 39853.30 17.12413 44 F8Ib-G3Ib +84763 Z Oph M 7.6 0 14.0 V 42238. 348.7 40 K3ep-M7.5e +89568 RY Oph M 7.4 0 13.8 V 45205. 150.41 46 M3e-M6e +92055 RZ Oph EA/GS 9.65 0 10.42 V 42204.39 261.9277 04 F3eIb+K5II +82352 TT Oph RVA 9.45 0 10.84 V 44449. 61.08 G2e-K0 +85617 TW Oph SRB 11.6 0 13.8 p 185. C5,5(Nb) +82977 UU Oph EA/SD 10.0 0 12.5 p 20750.489 4.3968025 12 A0 +83582 UX Oph M 9.4 0 13.6 V 38879. 116.71 M4e +85429 VW Oph M 10.5 0 14. p 38851. 285.00 M5e +83719 WZ Oph EA/DM 9.14 0 9.82 9.82 V 35648.775 4.183506 06 F8V+F8V +86777 XX Oph * 8.59 0 10.2 V Bpeq+M5 +83674 BF Oph DCEP 6.93 0 7.71 V 44435.21 4.06775 26 F6-G2 +83963 IX Oph INB 11.8 0 12.7 p Fpe +84346 V0438 Oph SRB 9.3 0 11.6 p 37130. 169.9 42 M0-M7e +80402 V0445 Oph RRAB 10.53 0 11.39 V 27543.547 0.3970227 18 A9-F6 +90599 V0451 Oph EA/DM 7.94 1 0.60 11.9 B 44834.365 2.19659616 12 B9V+A2 +85386 V0453 Oph RVA 10.40 0 11.53 V 37505. 81.300 Fp +89450 V0455 Oph RRAB 11.6 0 12.5 p 41833.389 0.45391060 20 A7 +81703 V0502 Oph EW/KW 8.34 0 8.84 8.81 V 41174.2288 0.45339345 G2V+F9V +88028 V0508 Oph EW/KW 10.06 0 10.69 10.59 V 45082.5430 0.344792129 G5 +87538 V0533 Oph SR: 8.3 0 9.3 p 41169. M6 +87860 V0566 Oph EW/KW 7.46 0 7.96 7.89 V 41835.8617 0.40964569 F4V +87994 V0567 Oph DSCT 11.07 0 11.43 V 38592.4048 0.149521 40 A7-F3 +89579 V0577 Oph EA/DM 11.36 0 12.00 10.5 B 42652.332 6.079096 03 A +88946 V0839 Oph EW/KW 8.8 0 9.39 9.38 V 40448.4129 0.40899532 F8V +86260 V0974 Oph DSCT 11.6 0 12.0 p 28671.437 0.1910568 30 +88522 V0986 Oph * 6.10 0 6.15 V 0.323 B0.5III +82339 V1010 Oph EB/KE 6.1 0 7.00 6.46 V 38937.7690 0.66142613 A5V +82817 V1054 Oph UV 10.14 0 11.72 U M4.5Ve+M4.5Ve +82323 V1121 Oph INT 11.2 0 12.2 V K5Ve(T) +88149 V2048 Oph GCAS+UV: 4.55 0 4.85 V B2-B6IV-VneV +87812 V2052 Oph BCEP 5.81 0 5.84 V 41442.048 0.1398903 50 B2IV-V +86605 V2076 Oph PVTEL 9.78 0 10.08 V 0.71 O9.5Ia-B1Ia(p) +80620 V2105 Oph SRB: 5.0 0 5.38 V M2.5III +82351 V2106 Oph SR 7.38 0 7.46 V 22. M2III +82011 V2111 Oph SR 6.69 0 7.08 V 45. M5III +84704 V2112 Oph DSCTC 6.50 0 6.52 V 44114.5474 0.1874472 F0III-IV +84780 V2113 Oph SR: 6.59 0 6.81 V M5III +85450 V2114 Oph SR 6.40 0 6.51 V 18. M4III +88272 V2118 Oph * 7.02 0 7.09 V 43330.644 0.8171 43 F2IV +86060 V2125 Oph ACV 6.57 1 0.04 V 9.75 B8p(Si) +88148 V2126 Oph ACV 6.36 1 0.00 V 2.41 A3p(Sr-Cr-Eu) +81300 V2133 Oph BY 6.57 1 0.04 B +80698 V2205 Oph PVTEL 10.40 0 10.59 V +83601 V2213 Oph BY 6.01 1 0.04 V +84478 V2215 Oph RS 6.26 0 6.34 V +82583 V2253 Oph RS 8.1 1 0.18 V +90313 V2291 Oph EA/GS 7.02 1 1.1 U +82588 V2292 Oph BY: 6.78 1 0.04 V +88132 V2300 Oph ELL: 6.7 1 0.02 V +80824 V2306 Oph BY 10.05 0 10.10 V +81624 V2307 Oph INA 9.50 0 11.13 U +86805 V2315 Oph ELL: 8.28 0 8.34 V +86960 V2320 Oph ELL: 7.36 0 7.39 V +86993 V2323 Oph ELL: 8.09 0 8.12 V +87184 V2327 Oph ELL: 7.51 0 7.54 V +78509 V2348 Oph LB 8.93 0 9.19 Hp +78949 V2349 Oph LB 7.31 0 7.45 Hp +80248 V2350 Oph LB: 7.41 0 7.51 Hp +80442 V2351 Oph RR: 8.43 0 8.51 Hp +81165 V2352 Oph BY: 11.33 0 11.67 Hp +81893 V2353 Oph ACV 7.58 0 7.64 Hp +82089 V2354 Oph LB: 8.58 0 8.68 Hp +82442 V2355 Oph EB 7.11 0 7.25 Hp +82544 V2356 Oph LB: 7.07 0 7.26 Hp +82967 V2357 Oph EW: 10.66 0 10.79 Hp +83021 V2358 Oph LB 8.35 0 8.52 Hp +83117 V2359 Oph LB 7.84 0 7.96 V +83209 V2360 Oph LB: 8.34 0 8.45 Hp +83322 V2361 Oph LB: 8.62 0 8.79 Hp +83416 V2362 Oph LB: 8.72 0 8.85 Hp +83632 V2363 Oph SRB 9.51 0 10.18 Hp +83638 V2364 Oph SRB 7.36 0 7.48 Hp +83891 V2365 Oph E: 8.91 0 9.11 Hp +83958 V2366 Oph LB: 8.97 0 9.06 Hp +84277 V2367 Oph BY: 11.88 0 12.15 Hp +84479 V2368 Oph EA 6.22 0 6.42 Hp +84595 V2369 Oph BY: 8.54 0 8.65 Hp +85087 V2370 Oph LB: 9.79 0 9.90 Hp +85189 V2371 Oph BCEP 9.12 0 9.18 Hp +85507 V2372 Oph LB 7.31 0 7.40 Hp +85812 V2373 Oph EB 7.39 0 7.46 Hp +85925 V2374 Oph SRD 7.81 0 7.92 Hp +85905 V2375 Oph LB 7.74 0 7.86 Hp +85974 V2376 Oph LB: 8.01 0 8.11 Hp +85944 V2377 Oph EB 8.60 0 8.73 Hp +85997 V2378 Oph E: 7.17 0 7.28 Hp +86084 V2379 Oph E: 7.95 0 8.12 Hp +86085 V2380 Oph LB 7.60 0 7.70 Hp +86374 V2381 Oph RR: 7.77 0 7.84 Hp +86487 V2382 Oph BE 7.26 0 7.29 Hp +86509 V2383 Oph BY: 10.38 0 10.68 Hp +86672 V2384 Oph E 9.10 0 9.24 Hp +86964 V2385 Oph BE 8.85 0 8.98 Hp +87107 V2386 Oph LB: 7.41 0 7.51 Hp +87474 V2387 Oph LB 7.64 0 7.82 Hp +87655 V2388 Oph EB 6.27 0 6.55 Hp +87797 V2389 Oph SRB 7.65 0 7.82 Hp +87999 V2390 Oph LB: 10.73 0 10.90 Hp +88601 V2391 Oph BY: 4.14 0 4.16 Hp +89527 V2392 Oph SRB: 6.03 0 6.20 Hp +90971 V2393 Oph ACV 6.40 0 6.44 Hp +83232 V2398 Oph IT 11.32 0 12.82 U +87937 V2500 Oph BY 9.55 1 0.02 V +89601 V2502 Oph GDOR: 6.61 0 6.77 Hp +82693 V2542 Oph DSCTC 6.25 1 0.02 V +88527 V2564 Oph LB: 7.34 1 0.05 V +80366 V2578 Oph BY 8.40 1 0.02 V 13.83 K2V +81716 V2581 Oph BY 9.42 1 0.04 V 10.58 K2V +83634 V2626 Oph EA 8.26 0 8.43 8.36 V 52787.824 10.8743 04 A5 +87511 V2653 Oph EA 9.51 0 9.77 9.75 V 48744.790 4.39435 07 G5 +88964 V2666 Oph GDOR 6.11 1 0.02 B 0.61439 F0V+G1V +81377 ζ Oph GCAS 2.56 0 2.58 V O9.5V(e) +84970 tet Oph BCEP 3.25 0 3.31 V 40324.230 0.140531 B2IV +83000 κ Oph LB: 4.1 0 5.0 p K2III +80569 χ Oph GCAS 4.18 0 5.0 V B1.5IV-Vpe +80975 ω Oph ACV 4.44 0 4.51 V 2.99 A7p(Sr-Cr) +23165 R Ori M 9.05 0 13.4 V 41391. 377.1 40 C8,2e(Ne) +25673 S Ori M 7.2 0 14.0 V 43945. 414.30 48 M6.5e-M9.5e +28041 U Ori M 4.8 0 13.0 V 45254. 368.3 38 M6e-M9.5e +23680 W Ori SRB 8.2 0 12.4 p 212. C5,4(N5) +28045 Z Ori EA/DS 9.8 0 10.7 9.9 p 25190.720 5.203265 12 B3 +30286 RS Ori DCEP 8.01 0 8.88 V 42820.794 7.566881 32 F5Ib-G1Ib +26032 RT Ori SRB 9.7 0 11.8 p 321. C6,4(Nb) +23602 UX Ori ISA(YY) 8.7 0 12.8 p A2ea +26063 VV Ori EA/KE: 5.31 0 5.66 5.50 V 40890.5158 1.4853784 20 B1V+B7V +26403 BF Ori INA 9.69 0 13.47 V A0:-FpII-Vea +30564 BL Ori LB 7.9 0 9.7 p C6,3(Nb,Tc) +28166 BQ Ori SR 9.4 0 11.5 p 110. M5IIIe-M8III +25737 CI Ori CST: 4.67 0 4.71 V K5III +25785 CK Ori SR: 5.9 0 7.1 V 120. K2IIIe: +25540 CO Ori INSB 10.3 0 13.8 p G5Vpe +29022 CS Ori DCEP 10.85 0 11.80 V 37258.156 3.88939 23 F5-G0 +28456 DN Ori EA/DS 9.8 0 11.1 9.9 p 35577.20 12.96641 08 A2e+F5III +28558 DP Ori SRB 10.5 0 12.5 p 33260. 90. M6.5 +22535 EP Ori M 10.5 0 13. p 33182. 358.5 M10e +24156 ER Ori EW/KW 9.28 0 10.01 9.97 V 41626.415 0.4233987 F8V +25863 EY Ori EA/D 9.43 0 10.13 9.54 V 43527.466 16.787832 06 A7Vm +25591 FO Ori EA/DS: 9.5 0 10.3 9.7 p 31820.627 18.80058 02 A3 +29896 GK Ori SR 9.5 0 11. V 26002. 236. C4-5,4-5(N) +25689 GW Ori INST 10.1 0 11.5 p G5-8Ve(T) +26258 NU Ori INSA 6.80 0 6.93 V B0.5V +25299 V0346 Ori ISA 10.0 0 11.9 p A5III: +27059 V0351 Ori INSA 8.3 0 11.6 p A7III +26081 V0371 Ori UV 11.0 0 13.01 B M2.5Ve +26327 V0380 Ori INAT 8.2 0 11.10 B B8-A2eq(T) +22943 V0429 Ori RRAB: 10. 0 11. V 28876.413 0.5017 27 +26742 V0901 Ori SXARI 6.97 0 7.02 V 42808.59 1.5385 B2Vp +29106 V0916 Ori BCEP 8.11 0 8.13 B 0.39912 B2.5V +29121 V0917 Ori BCEP 8.77 0 8.90 V 0.4033 B3Vn +30041 V0963 Ori BCEP: 8.47 0 8.50 V 0.2 B2Ibpea +28271 V1004 Ori DSCTC 5.88 0 5.92 V 0.0611 A5m +23200 V1005 Ori BY+UV 9.96 0 10.17 V 44521.37 4.565 50 M0.5Ve +26220 V1016 Ori EA 6.72 0 7.65 V 43144.600 65.43233 01 B0.5Vp +27341 V1031 Ori EA/DM 6.02 0 6.43 6.32 V 42688.8732 3.4057 01 A4V +23607 V1032 Ori ACV 4.65 0 4.69 V 43864.78 4.6398 50 B9p(Si) +26182 V1045 Ori ACV 6.73 1 0.04 V 43470.63 1.564 40 B9IVp(Si-Mn) +26233 V1046 Ori E:+SXARI 6.54 0 6.58 6.58 V 43495.091 0.94629 B2Vp(He+) +26728 V1051 Ori ACV 6.52 1 0.02 V 41728.18 1.099 55 B9.5IIIp(Si) +27423 V1054 Ori ACV 7.32 0 7.35 V 44202.159 8.635 F0p(Sr-Eu) +30162 V1056 Ori LC 7.93 0 8.19 V M3Ib-II +24716 V1057 Ori SRB 7.70 0 8.11 V 67. M5III +24196 V1085 Ori ACV 6.65 0 6.70 V +25302 V1086 Ori GCAS 4.92 0 4.96 V +25954 V1101 Ori SXARI 8.14 1 0.06 V +26048 V1107 Ori SXARI 8.06 1 0.02 V +26656 V1148 Ori ACV 8.04 1 0.04 V +26795 V1149 Ori RS: 7.2 1 0.11 V +30019 V1155 Ori ACV 6.32 1 0.02 V +25235 V1156 Ori SXARI 7.89 1 0.03 V +26304 V1179 Ori ACV 7.37 1 0.10 V +23245 V1192 Ori RS 7.50 0 7.57 V +26953 V1197 Ori ELL 6.30 1 0.03 V +23105 V1198 Ori RS 7.12 0 7.19 V +30055 V1260 Ori RS 7.7 1 0.11 V +25092 V1261 Ori EA/GS/WD 6.91 1 0.27 V +28582 V1307 Ori INA 9.48 1 0.35 V +29988 V1308 Ori INA 11.47 0 11.62 V +26857 V1352 Ori BY 11.48 0 11.55 V +29525 V1357 Ori RS: 6.44 0 6.49 V +30030 V1358 Ori BY 7.91 0 7.99 V +22454 V1359 Ori DSCTC 8.52 0 8.56 Hp +23328 V1360 Ori LPB: 7.18 0 7.22 Hp +23496 V1361 Ori EB 9.21 0 9.42 Hp +23701 V1362 Ori LB: 9.94 0 10.08 Hp +23809 V1363 Ori EW 10.35 0 10.59 Hp +23996 V1364 Ori LB: 7.95 0 8.08 Hp +24441 V1365 Ori BY: 6.46 0 6.87 Hp +24552 V1366 Ori E: 9.87 0 10.64 Hp +24625 V1367 Ori LB 8.58 0 8.78 Hp +25004 V1368 Ori SRA 9.66 0 10.01 Hp +25011 V1369 Ori BE 6.47 0 6.67 Hp +25394 V1370 Ori LPB 8.23 0 8.29 Hp +25577 V1371 Ori EB 8.16 0 8.24 Hp +25655 V1372 Ori BE 7.06 0 7.19 Hp +25681 V1373 Ori SRD 8.83 0 8.91 Hp +25896 V1374 Ori BE 7.45 0 7.72 Hp +25902 V1375 Ori E: 6.82 0 7.00 Hp +26223 V1376 Ori LB 6.89 0 7.19 Hp +26263 V1377 Ori LPB 6.35 0 6.37 Hp +26442 V1378 Ori LPB 7.06 0 7.12 Hp +26464 V1379 Ori LPB 7.56 0 7.60 Hp +27309 V1380 Ori EA 9.76 0 10.61 Hp +27912 V1381 Ori LB: 7.25 0 7.51 Hp +27941 V1382 Ori BE: 7.82 0 7.96 Hp +28039 V1383 Ori EB 8.47 0 8.66 Hp +28142 V1384 Ori EA 7.14 0 7.41 Hp +28519 V1385 Ori EB 7.47 0 7.64 Hp +28954 V1386 Ori BY: 6.88 0 6.94 Hp +29186 V1387 Ori EB 8.77 0 8.87 Hp +29321 V1388 Ori EA 7.41 0 7.76 Hp +29509 V1389 Ori SRB: 6.49 0 6.59 Hp +29563 V1390 Ori BE 8.04 0 8.16 Hp +29707 V1391 Ori LB 8.14 0 8.43 Hp +29787 V1392 Ori EB 7.73 0 7.92 Hp +29899 V1393 Ori CST: 11.3 0 V A5 +29961 V1394 Ori LB 9.60 0 9.93 Hp +30010 V1395 Ori LB: 8.92 0 9.02 Hp +25205 V1649 Ori DSCTC 6.34 1 0.01 V 0.0259 A2V +23385 V1801 Ori EA/RS 8.91 0 9.15 9.05 V 52997.720 4.14357 G3/G5V +25174 V1804 Ori EA 7.08 0 7.14 7.12 V 48188.925 2.22878 08 B9.5V +22848 V1834 Ori EA 6.85 0 6.94 6.87 V 47998.857 1.51058 08 A2III +26120 V1936 Ori INA: 6.89 0 7.03 J B3Vn +26335 V2689 Ori RS 8.80 0 9.05 V 12.285 K7 +27989 α Ori SRC 0.0 0 1.3 V 2335. M1-M2Ia-Ibe +24436 β Ori ACYG 0.17 0 0.22 Hp +26311 ε Ori ACYG 1.64 0 1.74 V B0.5Iabea +25281 η Ori EA+BCEP: 3.31 0 3.60 3.57 V 15761.826 7.989268 B0.5Vea+B3V +25473 ψ Ori E/D 4.55 0 4.61 4.58 V 38802.914 2.52596 B2IVea+B0 +26594 ω Ori GCAS 4.40 0 4.59 V B2IIIe +89258 R Pav M 7.5 0 13.8 V 42009. 229.46 48 M3e-M5(II)e +98031 S Pav SRA 6.6 0 10.4 V 38859. 380.86 49 M7IIe-M8III +97644 T Pav M 7.0 0 14.0 V 39429. 243.62 43 M4e +86728 V Pav SRB 9.3 0 11.2 p 225.4 C6,4(Nb) +99512 X Pav SRB 9.2 0 11.1 p 199.19 48 MC +105678 Y Pav SRB 8.6 0 10.3 p 30060. 233.3 C7,3(N0) +88775 RS Pav CWA 10.10 0 11.25 V 27247.600 19.954 38 Ke +106044 SX Pav SRB 5.34 0 5.97 V 50. M5-M7III +87804 WY Pav RRAB 11.4 0 12.5 p 26868.320 0.58858 +89886 AR Pav EA+ZAND 7.4 0 13.62 B 20330. 604.6 15 cont+M3III+shell +96581 BN Pav RRAB 11.2 0 12.5 p 28336.513 0.567173 16 +97605 BO Pav EA/D: 9.3 0 10.1 p 28698.43 19.23 03 +98265 BP Pav RRAB 11.3 0 12.7 p 28334.480 0.53740 +98447 BQ Pav M 10.9 2 14.0 p 27985. 112. 54 +101545 IV Pav RR: 10.4 0 10.8 p +103542 KZ Pav EA/SD 7.71 0 9.30 V 44431.7546 0.9498768 F6V +102508 MW Pav EW 8.51 0 8.95 8.92 V 40862.6076 0.79498855 F3IV/V +98608 NU Pav SRB 4.91 0 5.26 V 60. M6III +89324 NW Pav CWA 11.4 0 13.0 p 44168.80 30. +97674 NZ Pav DSCTC 6.04 1 0.01 V 0.08 F2III-IV +102070 V0342 Pav DSCTC 8.4 1 0.03 V 0.034 A6V +102717 V0343 Pav ACV 7.99 0 8.02 V +90304 V0346 Pav DSCTC 6.14 1 0.04 V +87043 V0352 Pav DSCTC 6.55 0 6.61 Hp +88118 V0353 Pav I: 11.89 0 12.42 Hp +88620 V0354 Pav LB 8.34 0 8.51 Hp +89316 V0355 Pav LB: 8.34 0 8.48 Hp +89416 V0356 Pav E: 7.45 0 7.62 Hp +90815 V0357 Pav ACV: 7.94 0 7.99 Hp +91193 V0358 Pav LB: 8.43 0 8.53 Hp +91516 V0359 Pav LB 7.38 0 7.68 Hp +91813 V0360 Pav LB 7.63 0 7.81 Hp +92148 V0361 Pav LB 7.07 0 7.17 Hp +92330 V0362 Pav E 7.44 0 7.64 Hp +92629 V0363 Pav EA 8.17 0 8.50 Hp +93272 V0364 Pav LPB: 6.77 0 6.80 Hp +93786 V0365 Pav LB: 8.88 0 9.00 Hp +94443 V0366 Pav LB: 8.32 0 8.48 Hp +94693 V0367 Pav EB 9.07 0 9.26 Hp +95160 V0368 Pav EB: 8.96 0 9.27 Hp +95405 V0369 Pav LB: 8.39 0 8.53 Hp +95403 V0370 Pav LC 8.15 0 8.45 Hp +95479 V0371 Pav LB 8.77 0 8.90 Hp +95592 V0372 Pav SRB 7.80 0 7.95 Hp +97803 V0373 Pav LB: 8.62 0 8.72 Hp +98267 V0374 Pav LB: 8.18 0 8.28 Hp +98811 V0375 Pav BY: 11.17 0 12.23 Hp +99358 V0376 Pav LB 7.82 0 7.95 Hp +99615 V0377 Pav ACV 8.89 0 8.93 Hp +99758 V0378 Pav SRB 6.67 0 6.82 Hp +100389 V0379 Pav LB: 8.92 0 9.02 Hp +100576 V0380 Pav LB: 8.67 0 8.77 Hp +101064 V0381 Pav LB 8.86 0 9.06 Hp +101286 V0382 Pav DSCT: 8.91 0 9.10 Hp +101303 V0383 Pav LB: 8.73 0 8.90 Hp +101705 V0384 Pav LB: 7.99 0 8.11 Hp +102866 V0385 Pav LB 8.93 0 9.37 Hp +103320 V0386 Pav EW 8.39 0 8.49 Hp +103553 V0387 Pav LB 8.57 0 8.87 Hp +103803 V0388 Pav DSCTC 8.81 0 8.88 Hp +104183 V0389 Pav LB: 7.61 0 7.71 Hp +105441 V0390 Pav BY: 9.03 0 9.20 Hp +105468 V0391 Pav LB: 7.72 0 7.83 Hp +105915 V0400 Pav EB 9.18 0 9.33 9.23 V 51905.532 1.155466 F5V +90773 V0405 Pav EA 9.11 0 9.20 9.12 V 48528.814 5.64797 04 F2IV +93015 κ Pav CEP 3.91 0 4.78 V 40140.167 9.09423 44 F5-G5I-II +92609 λ Pav GCAS 4.0 0 4.26 V B2II-IIIe +90797 ν Pav LPB 4.56 0 4.60 Hp +101773 Ï Pav DSCTC 4.85 1 0.05 V 0.1141 F0mIII +114114 R Peg M 6.9 0 13.8 V 42444. 378.1 44 M6e-M9e +115242 S Peg M 6.9 0 13.8 V 45311. 319.22 47 M5e-M8.5e +118149 U Peg EW/KW 9.23 0 10.07 9.73 V 36511.6682 0.374781439 F3+F3 +115188 W Peg M 7.6 0 13.0 V 44873. 345.5 46 M6e-M8e +8 Z Peg M 7.3 0 13.6 V 45090. 334.8 50 M6e-M8.5e(Tc) +109610 RS Peg M 8.2 0 14.7 V 45161. 415.4 45 M6e-M9e +109089 RZ Peg M 7.6 0 13.6 V 45248. 438.7 44 C9,1e(Ne)(Tc)/CS +111385 SS Peg M 8.0 0 13.6 V 45177. 424.8 M6e-M7e +112680 ST Peg SRB 9.9 0 11.6 p 136.2 M6e +109070 SV Peg SRB 9.2 0 11.0 p 144.6 M7 +112784 SX Peg M 9.7 0 15. p 45186. 303.6 43 S3,9e-S4.5,9e +536 TT Peg SRA 9.3 0 11.2 V 37178. 154. M6e +107390 TU Peg M 8.2 0 14.6 V 45137. 321.6 45 M7e-M8e +108928 TW Peg SRB 7.5 0 8.4 p 929.3 M6-M8 +110112 TX Peg SRB 9.3 0 10.80 B 120. 50 M5e +115986 TY Peg EA/SD 10.1 0 12.0 10.2 V 40451.784 3.092220 14 A2 +108934 UV Peg CST 9.1 0 V A0 +110099 UW Peg SRB 8.7 0 9.9 V 106. M5-M7 +107196 VX Peg SRB 10.0 0 11.6 p 934. M7 +116942 VZ Peg RRC 11.66 0 12.13 V 38317.2930 0.3064863 36 A0 +112868 AF Peg SRB 8.4 0 9.8 V 65. M5II-III +104506 AM Peg SRA 9.0 0 11.0 V 41620. 137.1 44 M1e-M3e +106740 AQ Peg EA/SD 10.39 0 12.85 10.47 V 41222.7048 5.5485028 12 A2e+G5 +105653 AU Peg CEP 8.98 0 9.47 V 42303.61 2.4015 33 F8 +107935 AV Peg RRAB 9.88 0 10.92 V 43790.316 0.3903747 17 A7-F6 +107960 AW Peg EA/DS 7.40 0 8.61 7.60 V 43741.400 10.62259 10 A5Ve+F2:pe +110493 BB Peg EW/KW 10.8 1 0.68 0.60 B 43764.3334 0.3615021 F8 +112057 BC Peg SRB 9.3 0 10.3 V 125. 40 M6 +112155 BD Peg SRB 9.4 0 10.3 p 78. 50 M6-M8 +112994 BH Peg RRAB 9.99 0 10.79 V 39365.280 0.640993 20 A8-F6 +113390 BI Peg SRA 9.9 0 11.2 V 27020. 500. 52 M6e +106417 BP Peg DSCT(B) 11.69 0 12.28 V 43014.5786 0.109543375 30 A0 +107078 CG Peg RRAB 10.64 0 11.58 V 39102.396 0.4671382 17 A7-F6 +108153 DF Peg EA/DS 9.1 0 10.9 9.2 p 33505.62 14.6987 04 A2: +109890 DH Peg RRC 9.15 0 9.80 V 44463.571 0.25551040 39 A5.0-F0.5 +116167 DI Peg EA/SD 9.38 0 10.48 9.59 V 45196.488 0.7118168 21 F4IV +116886 DK Peg EA/DM 10.0 0 10.7 p 45530.466 1.6318117 15 A0V+A2V +107571 DX Peg SRA 8.7 0 9.6 V 37555.9 80.66 M6 +114290 DY Peg SXPHE(B) 9.95 0 10.62 V 44502.0704 0.072926297 32 A3-F1 +106981 EE Peg EA/DM 6.93 0 7.51 7.06 V 45563.8916 2.62821423 09 A3mV+F5 +114930 EO Peg LB 9.6 0 10.5 p M7 +114944 EZ Peg NL: 9.57 1 0.34 V G5Ve +113173 GO Peg LB 8.6 0 9.3 p M4 +112909 GT Peg BY+UV 11.66 1 0.07 V 41388.783 1.6410 M3.5Ve +111191 GX Peg DSCTC 6.35 1 0.02 V 0.056 A8Vm +114347 GZ Peg SRA 4.95 0 5.23 V 43085.7 92.66 M4SIII +117628 HH Peg LB: 5.74 0 5.90 V M3III +107350 HN Peg BY 5.92 0 5.95 V 40821.48 24.90 G0V +107956 HO Peg LB 8.3 0 8.7 p M8III +108953 HP Peg LB 8.80 0 8.91 V C1,2CH(R6p) +113131 HR Peg SRB 6.12 0 6.49 V 50. S5,1(M4) +117730 HT Peg DSCTC 5.30 0 5.39 V 0.06 A4Vn +115806 HV Peg ACV 5.96 0 5.98 V 6.97 47 A0p(Hg-Mn) +116264 HW Peg LB: 5.32 1 0.30 V M5IIIa +117915 II Peg RS 7.18 0 7.78 V 44240. 6.7026 K2IV-Ve +105860 IK Peg DSCTC 6.07 1 0.03 V 0.044 A8m +112997 IM Peg RS 5.60 0 5.85 V 43760.6 24.44 K1III-IVp +110386 IN Peg GCAS 4.85 0 5.05 V +108578 IS Peg ZZO 9.8 1 0.08 V +112306 IV Peg M 12.0 0 17.8 B +105882 KP Peg EB/KE 7.05 0 7.26 V +116611 KS Peg EB/KE 5.37 1 0.12 B +116740 KT Peg RS 7.04 1 0.03 V +114025 KU Peg RS 7.7 1 0.08 V +110462 KX Peg RS 7.46 0 7.58 V +999 LN Peg RS 8.40 0 8.59 V +106231 LO Peg BY 9.04 0 9.27 V +113829 MT Peg BY 7.30 1 0.02 U +316 NN Peg DSCTC 7.26 0 7.33 Hp +852 NO Peg SRB 7.02 0 7.19 Hp +864 NP Peg SRA 9.61 0 9.81 Hp +989 NQ Peg SRB 7.58 0 7.84 Hp +104478 NR Peg EB: 8.13 0 8.31 Hp +104923 NS Peg LB: 7.92 0 8.03 Hp +105623 NT Peg BE 6.64 0 6.79 Hp +105958 NU Peg LB: 8.83 0 8.94 Hp +106062 NV Peg SRB 5.66 0 5.84 Hp +106232 NW Peg SRB 8.00 0 8.11 Hp +106242 NX Peg LB: 8.10 0 8.20 Hp +106579 NY Peg SRB 9.50 0 9.73 Hp +106897 NZ Peg RR: 5.83 0 5.86 Hp +107099 OO Peg EA 8.25 0 8.68 Hp +107202 OP Peg LB: 9.50 0 9.65 Hp +108022 OQ Peg BE 5.02 0 5.06 Hp +108061 OR Peg LB 7.40 0 7.68 Hp +108286 OS Peg LB: 9.06 0 9.16 Hp +108576 OT Peg BY: 9.89 0 10.05 Hp +108588 OU Peg LB 6.36 0 6.75 Hp +108807 OV Peg LB: 9.19 0 9.35 Hp +108943 OW Peg LB: 9.08 0 9.23 Hp +109072 OX Peg LB: 7.72 0 7.84 Hp +109212 OY Peg LB 6.26 0 6.47 Hp +109376 OZ Peg SRB 8.83 0 9.07 Hp +109437 PP Peg LB 7.15 0 7.26 Hp +110058 PQ Peg LB 7.24 0 7.42 Hp +110163 PR Peg CEP: 9.15 0 9.25 Hp +110251 PS Peg SRB 8.86 0 9.11 Hp +110346 PT Peg SRB 6.41 0 6.56 Hp +110464 PU Peg EB 8.02 0 8.12 Hp +110569 PV Peg LB 6.55 0 7.42 Hp +110596 PW Peg LB: 8.61 0 8.76 Hp +110617 PX Peg LB: 8.78 0 8.88 Hp +111119 PY Peg LB 8.72 0 8.94 Hp +111523 PZ Peg LB: 9.65 0 9.80 Hp +111932 QQ Peg BY: 11.31 0 11.88 Hp +111957 QR Peg LB: 7.79 0 7.91 Hp +112050 QS Peg LB: 7.96 0 8.06 Hp +112058 QT Peg EA 7.44 0 7.66 Hp +112212 QU Peg LB 7.32 0 7.42 Hp +112250 QV Peg LB: 7.90 0 8.00 Hp +112294 QW Peg LB 8.49 0 8.68 Hp +112399 QX Peg LB: 9.81 0 9.98 Hp +112574 QY Peg LB 8.63 0 8.77 Hp +112919 QZ Peg LB: 10.05 0 10.21 Hp +112960 V0335 Peg E: 7.36 0 7.39 Hp +113139 V0336 Peg LB 7.32 0 7.47 Hp +113321 V0337 Peg LB 7.72 0 7.86 Hp +113410 V0338 Peg LB: 7.23 0 7.32 Hp +113558 V0339 Peg LB: 9.31 0 9.41 Hp +113687 V0340 Peg LB 7.12 0 7.43 Hp +114024 V0341 Peg ELL 7.12 0 7.15 Hp +114189 V0342 Peg ELL: 6.00 0 6.06 Hp +114187 V0343 Peg EA: 6.17 0 6.39 Hp +114368 V0344 Peg LB: 9.63 0 9.78 Hp +114404 V0345 Peg LB 6.22 0 6.59 Hp +114608 V0346 Peg LB 6.65 0 6.78 Hp +114698 V0347 Peg SRD 9.46 0 9.67 Hp +114975 V0348 Peg LB: 7.96 0 8.09 Hp +114985 V0349 Peg SRB: 7.22 0 7.32 Hp +115563 V0350 Peg DSCTC 7.27 0 7.32 Hp +115627 V0351 Peg RRC 8.00 0 8.31 Hp +115991 V0352 Peg ACV: 7.08 0 7.12 Hp +116108 V0353 Peg EB 7.49 0 7.56 Hp +116119 V0354 Peg ACV 6.40 0 6.44 Hp +116435 V0355 Peg SRD 8.98 0 9.36 Hp +117161 V0356 Peg LB: 9.25 0 9.39 Hp +117185 V0357 Peg EW 9.01 0 9.49 Hp +117239 V0358 Peg SRB 10.33 0 10.69 Hp +117244 V0359 Peg SRB 7.94 0 8.09 Hp +117413 V0360 Peg RV: 8.05 0 8.43 Hp +117618 V0361 Peg LB 8.93 0 9.12 Hp +117632 V0362 Peg LB: 8.93 0 9.03 Hp +117986 V0363 Peg SRB 6.37 0 6.51 Hp +107558 V0372 Peg GDOR 6.53 1 0.07 B +107788 V0373 Peg UV: 5.17 0 5.53 V +108706 V0374 Peg UV 3.5 0 16.0 U +108859 V0376 Peg EP 7.65 1 0.02 V +109055 V0377 Peg DSCTC 7.95 1 0.03 B +106554 V0400 Peg LB: 6.90 1 0.02 V K0 +107781 V0401 Peg BY: 7.34 1 0.01 V 6.985 K0 +108156 V0402 Peg BY 7.73 1 0.01 V 4.51 K0V +111888 V0403 Peg BY 8.48 1 0.03 V 18.05 K2V +116416 V0406 Peg BY 7.90 1 0.01 V 12.525 G5V +110370 V0414 Peg EA 8.49 0 8.60 8.60 V 48367.865 3.69948 07 F8 +112068 V0415 Peg EA 8.15 0 8.25 8.24 V 48223.160 11.4456 05 F8 +113654 V0416 Peg EA: 8.13 0 8.19 8.19 V 48560.500 1.424797 05 A8V +116434 V0418 Peg GDOR 7.52 0 7.56 Hp 1.1417 A8:Vm+F3:V +578 V0421 Peg EA 8.27 0 8.73 8.63 V 54759.62 3.0875658 06 F2III/IV +113881 β Peg LB 2.31 0 2.74 V M2.5II-IIIe +1067 γ Peg BCEP 2.78 0 2.89 V 41224.640 0.151750125 50 B2IV +107315 ε Peg LC 0.7 0 3.5 V K2Ib +117718 φ Peg SRB: 5.11 0 5.17 Hp +115250 Ï„ Peg DSCTC 4.60 1 0.02 V 0.05433 A5IV +11093 S Per SRC 7.9 0 12.0 V 822. M3Iae-M7 +10829 T Per SRC 8.34 0 9.7 V 2430. M2Iab +9306 U Per M 7.4 0 12.8 V 45066. 320.26 46 M5e-M7e +13262 W Per SRC 8.7 0 11.8 V 485. M3Ia-Iab-M7 +18350 X Per GCAS+XP 6.03 0 7.0 V O9.5(III-V)ep +16126 Y Per M 8.1 0 11.3 V 45245. 248.60 48 C4,3e(R4e) +15811 RT Per EA/SD 10.46 0 11.74 10.67 V 33376.0583 0.84940032 16 F2V +16328 RU Per SRB 10.0 0 12.0 V 170. M4e +20245 RW Per EA/D 9.68 0 11.36 9.78 V 36701.0854 13.198904 08 A5IIIe+G0III +12891 RY Per EA/SD 8.50 0 10.25 8.65 V 27070.708 6.8635663 13 B5Vea+F6IV +13983 ST Per EA/SD 9.52 0 11.40 9.62 V 42436.588 2.648315 13 A3V+G-K +22445 SV Per DCEP 8.49 0 9.37 V 43839.296 11.129318 39 F6-G1 +19517 SW Per SRB 9.6 0 11.1 p 102. M5III +19978 SX Per DCEP 10.70 0 11.54 V 41847.979 4.289967 25 F5-G5 +19931 SY Per SRA 8.7 1 3.0 V 37635. 474. 54 C6,4e(N3e) +8565 TT Per SRB 9.2 0 10.6 p 82. M5II-III +10332 UX Per DCEP 11.02 0 12.07 V 37402.945 4.565815 26 F5-G3 +15530 UZ Per SRB 8.6 2 11.7 p 927. M5II-III +9928 VX Per DCEP 8.99 0 9.69 V 43758.994 10.88904 49 F6-G1 +12325 VZ Per LB: 10.6 0 10.8 V C4,5J(R4) +9582 XX Per SRC 8.2 0 10.2 p 415. M4Ib+B +17890 XY Per INA 9.8 0 11.0 p A2II+B6e +12302 YZ Per SRB 10.01 0 11.9 B 378. M1Iab-M3Iab +15145 AA Per SRA 10.4 0 11.7 p 24890. 130.4 55 M7 +16920 AB Per EA/SD 10.4 0 11.4 10.5 p 22987.207 7.1602886 12 A5 +19201 AG Per EA/DM 6.69 0 7.00 7.00 V 44584.583 2.02870904 12 B3Vn+B3 +19993 AR Per RRAB 9.92 0 10.83 V 27236.9179 0.42554892 16 A8-F6 +20202 AS Per DCEP 9.17 0 10.14 V 41723.934 4.972516 25 F8-G1 +22275 AW Per DCEP 7.04 0 7.89 V 42709.059 6.463589 25 F6-G0 +11400 BS Per SRB 12.0 0 13.6 p 400. C5,5(N4) +11346 DM Per EA/SD 7.86 0 8.59 8.02 V 41920.4543 2.7277427 17 B5V +18662 IQ Per EA/DM 7.72 0 8.27 7.88 V 44290.3461 1.7435701 12 B8Vp: +16591 IW Per ELL/DM 5.79 0 5.84 5.83 V 33617.317 0.9171877 A5m +16713 IX Per ELL 6.66 1 0.02 0.02 V 29146.901 1.326363 F2IV +7145 IZ Per EA/SD 7.8 0 9.0 8.3 p 44577.5874 3.687673 12 B8 +15726 KN Per RRC 11.2 0 11.8 p 36599.246 0.433224 50 A4-A6 +16516 KP Per BCEP 6.37 1 0.14 V 43862.739 0.2017786 50 B2IV +22365 KS Per * 7.60 1 0.25 V 30. A5Iape+B2: +13775 LT Per ACV 5.03 0 5.14 V 39837.7 2.88422 B9p(Si-Eu-Sr-Cr) +15003 LX Per EA/AR/RS 8.10 0 8.93 8.38 V 27033.120 8.038207 07 G5IV+G5IV +19343 MX Per GCAS 4.00 1 0.09 V 72. B3Vpe +10995 PR Per LC 9.8 0 10.8 p M1Iab-Ib +10055 V0351 Per BCEP: 8.69 0 8.72 V 0.3746 B1IVe +10391 V0353 Per BCEP 8.85 0 8.91 B 0.3908 B0.5IV +10541 V0354 Per BCEP 8.01 0 8.03 B 0.45039 O9.7Ib-IIIn: +10641 V0357 Per BCEP: 7.44 0 7.52 V 0.28619 B2Ib-II:p +11953 V0362 Per BCEP: 8.22 0 8.24 B 0.25942 B0IIIn +17846 V0376 Per DSCT 5.77 0 5.91 V 0.09937 A7IIIn +18912 V0380 Per ACV 7.76 1 0.03 V 37315.14 3.90072 A0p(Sr-Cr-Eu) +14450 V0383 Per ACV: 7.84 0 7.87 V 39860.7 7.7 B9V +18547 V0386 Per DSCTC 6.50 0 6.58 V 0.052 A8V +16470 V0396 Per SXARI 5.45 0 5.53 V 45699.972 2.4761 B5Vp(Mn-Heweak) +15026 V0410 Per SRB: 8.8 0 9.4 V 110. C7,4(Np) +15204 V0423 Per ELL: 6.65 1 0.03 U 5.543491 A1m +11769 V0425 Per ACYG 6.98 0 7.10 V 16.1 B6Iaea +8704 V0436 Per EA/D 5.49 0 5.85 5.74 V 43562.853 25.9359 02 B1.5V +10704 V0438 Per ELL 8.28 0 8.34 8.34 V 43000.00 3.50924 B1IV-V +11174 V0440 Per DCEPS 6.18 0 6.32 V 44869.94 7.570 50 F7Ib +11284 V0441 Per LC 8.19 0 8.53 V M2.5Iab +15862 V0461 Per DSCTC 8.98 1 0.01 V 0.035 F0V +17886 V0467 Per E/D 5.05 0 5.18 V 43101.24 22.58 A2V +20354 V0469 Per BCEP 4.81 0 4.86 V 0.304 B4.5V +9990 V0472 Per ACYG 5.64 0 5.74 V +10615 V0473 Per BCEP: 8.25 0 8.27 V +11060 V0474 Per ACYG 5.15 0 5.25 V +11391 V0475 Per ACYG 7.15 0 7.26 V +13178 V0480 Per ACYG 6.23 0 6.30 V +19178 V0490 Per E: 6.98 0 7.27 V +19255 V0491 Per BY 7.10 1 0.03 V +21144 V0492 Per RS: 6.7 1 0.07 V +12527 V0493 Per WR 10.6 1 0.04 V +16724 V0496 Per ACV 7.70 0 7.79 U +17323 V0497 Per ACV 9.52 0 9.56 V +17911 V0498 Per ACV 8.96 0 9.04 B +10961 V0505 Per EA/DM 6.87 0 7.46 V +14264 V0509 Per DSCT 6.47 0 6.64 V +15041 V0510 Per RS 7.30 1 0.22 V +10805 V0520 Per IA 6.55 0 6.66 V +14544 V0521 Per DSCTC 6.41 0 6.42 V +20063 V0545 Per LPB 6.22 1 0.04 V +8182 V0547 Per LB: 9.91 0 10.06 Hp +9017 V0548 Per BE 9.65 0 9.98 Hp +10463 V0549 Per BE 7.81 0 7.88 Hp +10489 V0550 Per SRC: 8.71 0 8.88 Hp +10633 V0551 Per ACYG 6.54 0 6.57 Hp +10981 V0552 Per EB 8.30 0 8.43 Hp +11098 V0553 Per ACYG: 7.54 0 7.66 Hp +11279 V0554 Per ACYG: 6.28 0 6.36 Hp +11722 V0555 Per BE 8.96 0 9.15 Hp +11888 V0556 Per ACYG: 8.86 0 9.08 Hp +12478 V0557 Per ACV: 7.32 0 7.37 Hp +12544 V0558 Per LB: 9.34 0 9.49 Hp +12565 V0559 Per ACV: 8.96 0 9.06 Hp +12569 V0560 Per LB: 8.43 0 8.53 Hp +12587 V0561 Per SRD 7.72 0 7.82 Hp +12662 V0562 Per ACV: 8.86 0 8.99 Hp +13058 V0563 Per LB 8.22 0 8.40 Hp +13252 V0564 Per LB: 8.47 0 8.59 Hp +13785 V0565 Per BY: 9.34 0 9.54 Hp +13829 V0566 Per ACV: 9.38 0 9.50 Hp +14213 V0567 Per SRD 7.91 0 8.05 Hp +14478 V0568 Per BY: 9.76 0 9.92 Hp +14616 V0569 Per LB: 7.87 0 7.98 Hp +14673 V0570 Per EB: 8.15 0 8.25 Hp +14824 V0571 Per LB 7.17 0 7.34 Hp +15193 V0572 Per EA 6.50 0 6.79 Hp +15241 V0573 Per E: 6.11 0 6.19 Hp +15721 V0574 Per SRB 7.26 0 7.39 Hp +15770 V0575 Per LPB: 5.27 0 5.32 Hp +15988 V0576 Per LPB: 6.04 0 6.08 Hp +16563 V0577 Per BY: 8.24 0 8.35 Hp +16644 V0578 Per EB 8.94 0 9.10 Hp +17042 V0579 Per RRC: 7.87 0 7.94 Hp +17666 V0580 Per E: 7.75 0 8.07 Hp +18424 V0581 Per BE 7.77 0 7.87 Hp +19335 V0582 Per RS: 5.63 0 5.74 Hp +19487 V0583 Per LB 7.51 0 7.83 Hp +19647 V0584 Per BE 8.00 0 8.19 Hp +19992 V0585 Per SRD: 7.48 0 7.51 Hp +19991 V0586 Per BE 8.00 0 8.11 Hp +20095 V0587 Per LB: 8.40 0 8.52 Hp +20235 V0588 Per SRB 7.77 0 7.93 Hp +20436 V0589 Per LB 7.81 0 7.90 Hp +20570 V0590 Per EB: 7.20 0 7.44 Hp +20993 V0591 Per LB: 7.80 0 8.13 Hp +22050 V0592 Per EB 8.30 0 8.65 Hp +22272 V0593 Per EB 8.67 0 8.87 Hp +22513 V0594 Per LB: 7.64 0 7.74 Hp +19391 V0643 Per SRS 7.68 0 7.80 Hp +14976 V0683 Per BY 8.15 1 0.02 V G5V +15609 V0686 Per BY 7.94 1 0.04 V 5.95 K0V +15767 V0687 Per BY 7.96 1 0.02 V 2.54 G0 +17094 V0736 Per EA 9.73 0 10.03 10.0 V 48678.948 3.76674 08 A4IV +14871 V0889 Per GDOR 7.26 1 0.02 B 0.34306 F1 +14576 β Per EA/SD 2.12 0 3.39 V 45641.5135 2.8673043 14 B8V +14328 γ Per EA/GS 3.63 1 0.55 B +17358 δ Per GCAS: 2.99 0 3.04 V B5III +18532 ε Per BCEP 2.88 0 3.00 V +18614 χ Per * 4.00 0 4.06 V O7.5III(f) +17448 ο Per ELL 3.79 0 3.88 V 36459.0 4.4191666 B1III+B2V +14354 Ï Per SRB 3.30 0 4.0 V 50. M4IIb-IIIa +13531 Ï„ Per EA/GS 3.94 0 4.07 V +8068 φ Per GCAS 3.96 0 4.11 V 19.5 B2Vne+B3Vne +16826 ψ Per GCAS 4.17 0 4.28 V B5III-Vne +20070 b Per ELL 4.52 0 4.68 V 43141.728 1.5273643 A2V +118249 S Phe SRB 8.6 0 10.6 p 141. M3e-M6IIIe +115870 RV Phe RRAB 11.12 0 12.26 V 41915.525 0.5964182 15 F6: +117254 SX Phe SXPHE(B) 6.76 0 7.53 V 38636.6170 0.054964438 34 A5-F4 +7024 SY Phe ISB: 9.75 0 9.96 V F8 +5955 AD Phe EW/KW 10.27 0 10.80 10.80 V 44250.598 0.3799252 +7183 AE Phe EW/KW 7.56 0 8.25 8.19 V 43732.8819 0.362377 G0V+G0V +2125 AG Phe EA/KE: 8.87 0 9.36 8.95 V 44170.7948 0.75533809 22 A9V +5438 AI Phe EA/DM 8.58 0 9.35 8.89 V 43410.6885 24.592325 02 F7V+G5:V +6207 AK Phe LB 7.40 0 7.64 V M4III +6952 AW Phe LB: 6.22 1 0.15 V M2III +116601 AY Phe LB 7.76 0 8.04 V M4III +3903 AZ Phe DSCTC 6.47 1 0.01 V 0.0492 A9/F0III +2388 BB Phe DSCTC 6.18 1 0.04 V +6408 BC Phe RS 8.4 1 0.06 V +8593 BD Phe DSCTC 5.90 0 5.94 V +117515 BF Phe DSCTC 7.7 1 0.03 V +3812 BG Phe BE 10.31 0 10.36 V +457 BH Phe SRB: 7.31 0 7.63 Hp +500 BI Phe SRB: 9.56 0 9.84 Hp +632 BK Phe LB: 9.17 0 9.30 Hp +883 BL Phe EB 8.34 0 8.68 Hp +1507 BM Phe EW 9.27 0 9.53 Hp +1555 BN Phe SRB 7.81 0 7.93 Hp +1627 BO Phe SRB 8.58 0 9.56 Hp +1880 BP Phe LB: 7.72 0 7.84 Hp +2005 BQ Phe SXPHE: 10.47 0 10.60 Hp +2462 BR Phe LB: 9.01 0 9.13 Hp +2960 BS Phe SRB 8.38 0 8.55 Hp +3852 BT Phe SRB 9.38 0 9.64 Hp +3894 BU Phe SRB 7.15 0 7.26 Hp +4328 BV Phe BY: 12.09 0 12.59 Hp +4448 BW Phe BY: 9.05 0 9.19 Hp +4658 BX Phe SRB 7.33 0 7.50 Hp +6584 BY Phe SR 7.87 0 7.91 Hp +6609 BZ Phe LB: 8.88 0 9.03 Hp +6856 CC Phe BY: 9.41 0 9.55 Hp +7940 CD Phe ACV: 8.69 0 8.74 Hp +8344 CE Phe SRB 7.04 0 7.22 Hp +9812 CF Phe SRB 7.05 0 7.21 Hp +116103 CG Phe SXPHE: 10.23 0 10.57 Hp +116640 CH Phe LB: 7.42 0 7.53 Hp +117099 CI Phe SRB: 7.22 0 7.81 Hp +117276 CK Phe LB 7.24 0 7.41 Hp +117669 CL Phe BY: 9.70 0 9.83 Hp +7649 CU Phe GDOR: 6.68 1 0.06 V F0V +10304 CV Phe DSCTC 7.84 1 0.02 V 0.080 F0V +6200 CX Phe EA 8.77 0 9.14 9.0 V 48736.140 19.9757 F0V +6867 γ Phe LB: 3.39 0 3.49 V M0IIIa +5348 ζ Phe EA/DM 3.91 0 4.42 V 41643.6890 1.6697671 12 B6V+B9V +116389 ι Phe ACV 4.70 0 4.75 V 12.5 A2Vp(Sr-Cr-Eu) +3277 χ Phe ACV 5.68 0 5.78 V 42314.48 3.9516 A9p(Sr-Cr-Eu) +3949 Ï Phe DSCT 5.17 0 5.27 V 0.110 F3III +8837 ψ Phe SR 4.3 0 4.5 V 30. M4III +22170 R Pic SR 6.35 0 10.1 V 44922. 170.9 M1IIe-M4IIe +24126 S Pic M 6.5 0 14.0 V 39595. 428.0 36 M6.5e-M8III-IIe +24468 T Pic M 7.9 0 14.4 V 41283. 200.58 49 M6IIIe +22466 U Pic RRAB 10.68 0 11.87 V 41666.449 0.4403710 12 A5-F6 +26958 W Pic LB 11.8 2 15.0 p C(N) +28474 RT Pic E: 9.9 2 12.5 p 24120.704 G8V +29583 ST Pic RR 9.29 0 9.77 V 42034.450 0.48574 22 F5V +24733 SU Pic EA/DM 10.15 0 10.64 10.4 V 28815.475 1.838115 A0 +28596 SW Pic LB: 6.45 1 0.12 V M4III +22340 SY Pic ACV 8.84 0 8.87 V 15.864 A5p(Sr-Eu) +27843 SZ Pic RS 7.81 0 7.97 V 43931.54 2.441 G8V +24603 TT Pic ACV 7.1 1 0.07 V +23833 TU Pic ACV 6.93 1 0.03 V +22370 TV Pic ELL 7.5 1 0.12 V +26300 TX Pic RS 6.08 0 6.12 V +29071 TY Pic RS 7.61 0 7.68 V +31062 TZ Pic RS 7.59 0 7.66 V +26373 UY Pic RS: 7.86 0 7.97 V +22868 UZ Pic E: 8.28 0 8.57 Hp +22971 VV Pic LB: 7.91 0 8.01 Hp +23196 VW Pic EW 7.06 0 7.15 Hp +23491 VX Pic SRB 8.71 0 8.93 Hp +23761 VY Pic LB: 8.30 0 8.54 Hp +24186 VZ Pic BY: 8.90 0 9.22 Hp +24943 WW Pic SRA 6.49 0 6.98 Hp +25579 WX Pic LB: 8.74 0 8.86 Hp +26679 WY Pic SRB: 8.05 0 8.20 Hp +26772 WZ Pic E: 9.26 0 9.35 Hp +26983 XX Pic SRB 7.54 0 7.74 Hp +27170 XY Pic EW 7.61 0 7.66 Hp +27134 XZ Pic BY: 9.30 0 9.60 Hp +27462 YY Pic DSCTC 7.57 0 7.64 Hp +27874 YZ Pic SRB 8.55 0 8.77 Hp +28134 ZZ Pic LB 8.45 0 9.14 Hp +28217 AA Pic LB: 8.15 0 8.26 Hp +30034 AB Pic BY: 9.21 0 9.35 Hp +30237 AC Pic SRB 6.78 0 6.89 Hp +30319 AD Pic LB 8.61 0 8.96 Hp +31068 AE Pic EB: 6.09 0 6.14 Hp +31711 AK Pic BY 6.14 0 6.19 V 2.60 G0V+K2/3V +29276 δ Pic EB/D: 4.65 0 4.90 4.83 V 41695.336 1.672541 B3III+O9V +1771 V Psc UV: 11. 0 12. p M1V +4652 W Psc M 11.4 0 14.8 p 45337. 188.1 48 M2e-M4 +116339 Y Psc EA/SD 10.1 0 13.1 p 45635.241 3.765767 10 A3+K0IV +5914 Z Psc SRB 8.8 0 10.1 p 144. C7,2(N0) +5746 RT Psc SRB 8.2 0 10.4 p 70. M0 +5803 RU Psc RRC 9.93 0 10.40 V 40143.4027 0.390385 48 A7-F3 +6554 RW Psc SRB 11.2 0 12.4 p 27139. 154. 48 M0e-M3 +6301 SS Psc RRC 10.73 0 11.21 V 19130.305 0.28779276 44 A7-F2 +114639 SZ Psc EA/DS/RS 7.18 0 7.72 7.38 V 35741.8461 3.9657900 11 K1IV-V+F8V +2219 TV Psc SR 4.65 0 5.42 V 31387. 49.1 M3III-M4IIIb +3129 TW Psc LB 10.6 0 12.2 p M8 +117245 TX Psc LB 4.79 0 5.20 V C7,2(N0)(Tc) +1196 UU Psc ELL/DW: 6.01 0 6.05 6.04 V 39765.175 0.841678 F1IV-V+F1IV-V +5980 UV Psc EA/D:/RS 8.91 0 10.05 9.54 V 43406.5225 0.8610482 12 G2 +8210 UZ Psc ACV 6.43 0 6.65 V 39757.91 4.1327 50 A2p(Cr-Eu-Sr-Si) +6981 VX Psc DSCT 5.90 0 6.02 V 0.131 A3V +8271 VY Psc DSCTC 6.54 0 6.59 V 0.2 A7III +115819 VZ Psc EW/KW 10.20 0 10.45 10.43 V 43832.206 0.2611865 +4655 WW Psc LB 5.97 0 6.11 V M2III +9809 WZ Psc SR 6.20 0 6.38 V 20. M4 +3685 XX Psc DSCTC: 6.13 1 0.04 V 0.1040 F0V +117887 XZ Psc LB 5.61 0 5.97 V M5IIb +154 YY Psc LB: 4.31 0 4.41 V M3III +7119 AE Psc E 7.09 1 0.16 V 1.4175 G5 +2903 AG Psc BCEP 5.81 0 5.94 V 0.08 B2.5IV +7042 AN Psc LB 8.08 0 8.28 V MB +664 AP Psc EB/GS 6.1 0 6.3 V +6307 AQ Psc EW/KW 8.60 0 8.96 V +6454 AR Psc XI+RS 8.2 0 9.1 p +113478 AZ Psc RS: 7.32 0 7.50 V +443 BC Psc RS 4.61 1 0.08 V +5007 BE Psc RS 8.8 1 0.21 V +7134 BF Psc RS 7.81 1 0.02 V +118286 BH Psc DSCTC 7.13 1 0.09 V +3121 BK Psc RS 10.41 0 10.60 V +117473 BR Psc BY 8.93 0 9.03 V +118293 BT Psc IB: 7.8 1 0.09 B +159 BU Psc IB: 6.9 1 0.06 B +1325 BV Psc SRB: 6.89 0 7.07 Hp +1429 BW Psc SRB 6.88 0 6.99 Hp +1435 BX Psc EB: 7.61 0 7.67 Hp +1497 BY Psc SRB 8.42 0 8.63 Hp +1609 BZ Psc SRB: 7.55 0 7.66 Hp +1843 CC Psc SRB: 9.92 0 10.17 Hp +1938 CD Psc SRD: 9.81 0 9.99 Hp +1941 CE Psc SRB 7.43 0 7.61 Hp +2080 CF Psc LPB 6.84 0 6.87 Hp +2123 CG Psc SRD 8.35 0 8.49 Hp +2340 CH Psc SRD 7.80 0 7.94 Hp +3518 CI Psc SRB 7.63 0 7.78 Hp +3808 CK Psc LB: 8.20 0 8.30 Hp +4304 CL Psc LB: 9.33 0 9.51 Hp +4316 CM Psc SR: 8.72 0 8.83 Hp +4433 CN Psc SRB 7.60 0 7.76 Hp +4452 CO Psc LB: 7.70 0 7.81 Hp +4593 CP Psc EB: 10.69 0 11.05 Hp +4945 CQ Psc SRD+EA 7.97 0 8.11 Hp +5091 CR Psc LB: 7.42 0 7.52 Hp +5409 CS Psc SRB 9.65 0 9.97 Hp +5525 CT Psc SRB 8.03 0 8.31 Hp +5662 CU Psc BY: 11.87 0 12.25 Hp +6220 CV Psc SRB 7.76 0 7.90 Hp +6453 CW Psc SRB 7.38 0 7.60 Hp +6998 CX Psc LB: 8.96 0 9.06 Hp +7505 CY Psc SRB 6.34 0 6.55 Hp +7768 CZ Psc LB: 9.28 0 9.44 Hp +8655 DD Psc LB: 8.16 0 8.26 Hp +9355 DE Psc SRD 7.43 0 7.56 Hp +9599 DF Psc BY: 11.84 0 12.07 Hp +112877 DG Psc LB: 8.74 0 8.91 Hp +113095 DH Psc LB: 8.69 0 8.80 Hp +113556 DI Psc LB: 7.28 0 7.38 Hp +113667 DK Psc LB: 8.38 0 8.51 Hp +114489 DL Psc LB 6.12 0 6.66 Hp +116223 DM Psc SRB 7.96 0 8.10 Hp +117311 DN Psc LB: 10.57 0 10.77 Hp +117459 DO Psc BY: 12.25 0 12.58 Hp +118222 DP Psc SRD 8.25 0 8.45 Hp +118307 DQ Psc SRB 6.82 0 6.94 Hp +109 DR Psc DSCTC 7.29 0 7.33 Hp +5772 DT Psc SR: 6.37 0 6.45 Hp +3632 EL Psc SRS 5.28 1 0.22 V 12. M4IIIa +6339 EN Psc BY 8.49 1 0.02 V 13.87 K2V +6917 EO Psc RS 7.74 1 0.02 V 10.49 K2V +8156 EU Psc EA 8.44 0 8.54 8.51 V 48648.639 1.69261 05 F0 +1295 EZ Psc BY 10.5 0 10.7 * 4.7901 M4 +2510 FM Psc GDOR 8.01 0 8.11 Hp 0.65070 F1V +3937 FT Psc BY 10.9 0 11.1 * 1.6968 M3.5 +7987 HU Psc DSCTC 7.57 1 0.02 B 0.0435787 F1V +9487 α Psc ACV 3.82 0 3.83 Hp +115738 κ Psc ACV 4.87 0 4.95 V 0.58525 A0p(Cr-Sr-Si-Eu) +110743 T PsA CST: 8.1 0 p F0 +108869 TT PsA LB 7.00 0 7.49 V M7III +113283 TW PsA BY 6.44 0 6.51 V 10.3 K5Ve +113598 TZ PsA RS 8.40 0 8.49 V +108975 UU PsA BE 5.86 0 5.91 b +111350 UW PsA DSCTC 8.2 1 0.08 B +106929 UX PsA LB: 7.42 0 7.56 Hp +107054 UY PsA LB: 7.72 0 8.08 Hp +107135 UZ PsA LB 7.27 0 7.40 Hp +108597 VV PsA BE 6.99 0 7.11 Hp +108982 VW PsA LB: 7.50 0 7.75 Hp +109282 VX PsA LB: 6.97 0 7.07 Hp +109884 VY PsA EB 8.81 0 9.01 Hp +111809 VZ PsA EA 5.68 0 5.72 Hp +112312 WW PsA BY+UV 11.81 0 12.16 Hp +113532 WX PsA DSCTC 5.57 0 5.59 Hp +113549 WY PsA LB: 8.71 0 8.87 Hp +114022 WZ PsA LB 8.10 0 8.36 Hp +113860 Ï€ PsA CST: 5.10 0 5.12 V F0V+F3V +37415 R Pup SRD 6.50 0 6.71 V G2Ia-0 +37950 S Pup CST 7.2 0 V A2 +38074 T Pup CST 6.14 0 V M2III +38957 V Pup EB/SD 4.35 0 4.92 4.82 V 45367.6063 1.4544859 B1Vp+B3: +37893 W Pup M 7.15 0 13.6 V 44956. 119.7 47 M1e-M6e +36685 X Pup DCEP 7.82 0 9.24 V 41108.8 25.9610 15 F6-G2 +36669 Z Pup M 7.2 0 15.3 V 43075. 508.6 38 M4e-M9e +40233 RS Pup DCEP 6.52 0 7.67 V 35734.426 41.3876 24 F9-G7 +39583 RT Pup SRB 10.2 0 11.0 B 100. C6,2(Nb) +39751 RU Pup SRB 10.3 0 12.2 p 425. C5,4(N3) +32115 RV Pup M 9.3 0 13.0 p 30093. 187.96 50 M1e-M9 +36544 RY Pup CST 9.17 0 B K5 +37809 RZ Pup CST 8.8 0 p K2 +32675 ST Pup CWA 9.28 0 10.68 V 44023.96 19. F2:e-G2I +38772 SU Pup M 9.3 2 14.0 p 31385. 339.8 M(S4,2)e +40593 SV Pup M 9.0 2 13.1 p 36284. 166.52 M5e +33912 TX Pup CST 9.2 0 p F7V +36683 TY Pup EW/KE 8.40 0 8.89 8.87 V 34412.106 0.819235 A9n +37497 UZ Pup EB/KE 9.35 0 10.34 10.0 V 44613.6982 0.79485120 A6+A6 +36617 VW Pup DCEP 11.00 0 11.75 V 43521.291 4.28537 22 F5-G0 +36666 VX Pup CEP(B) 7.73 0 8.59 V 36237.953 3.01087 50 F5-F8 +37207 VZ Pup DCEP 8.92 0 10.35 V 41121.19 23.1710 17 F5-G2 +37511 WW Pup DCEP 10.03 0 11.03 V 41047.29 5.516724 31 F5-F9 +37515 WX Pup DCEP 8.76 0 9.44 V 35042.184 8.937050 31 F6-G1 +38944 WY Pup DCEP 10.18 0 10.96 V 40925.40 5.25080 25 F5-F9 +39144 WZ Pup DCEP 9.85 0 10.76 V 34889.465 5.027286 27 F5-G2 +39849 XX Pup RRAB 10.49 0 11.77 V 41773.255 0.517181 13 A0-A7 +40277 XZ Pup EA/SD 7.75 0 10.26 7.90 V 42412.1945 2.1923631 21 A0 +41061 AC Pup LB 8.9 0 10.1 V C5,4(N) +38063 AD Pup DCEP 9.27 0 10.36 V 41126.18 13.5940 25 F5-G2 +38907 AP Pup DCEP 7.02 0 7.78 V 40689.21 5.0843102 51 F5-F7 +38965 AQ Pup DCEP 8.08 0 9.39 V 44676.57 30.104 17 F5Ib-G2Ib +39376 AR Pup RVB 8.7 0 10.9 p 74.58 F0I-II-F8I-II +39967 AS Pup M 9.0 0 12.8 p 35470. 324.65 50 M7e-M9 +40178 AT Pup DCEP 7.53 0 8.41 V 40741.22 6.6650 29 F8-G0 +38241 BM Pup DCEP 10.43 0 11.27 V 30792.566 7.19853 25 +39666 BN Pup DCEP 9.20 0 10.40 V 28078.04 13.6731 29 G4 +41352 CO Pup CWA 11.25 0 12.46 B 40979.52 16.0192 45 +37506 EK Pup DCEPS 10.46 0 10.88 V 35573.46 2.62594 45 +35584 HH Pup RRAB 10.44 0 11.78 V 38500.2486 0.39074628 12 A3II-III-F5 +36762 HI Pup EW/KW 10.7 0 11.0 11.0 V 34344.548 0.432651 +37779 HK Pup RRAB 11.4 0 12.4 p 36608.383 0.7342382 20 +40078 HL Pup CEP 11.1 0 11.8 p 30700.58 3.48250 25 +36773 KQ Pup LC 4.82 0 5.17 V M2epIab+B2V +38441 KZ Pup RR 11.3 0 12.8 p +38569 LL Pup CEP 11.2 0 12.3 p 28612.03 5.07753 24 +38854 LR Pup CEP 11.1 0 12.3 p 29631.743 3.33124 18 +39010 LS Pup CEP 9.8 0 10.8 p 38376.500 14.1464 35 +40274 MX Pup GCAS 4.60 0 4.92 V B1.5III-IVe +37174 MY Pup DCEPS 5.54 0 5.76 V 41043.72 5.69482 37 F4Iab +39487 MZ Pup LC: 5.2 0 5.44 V M1IIb +41361 NO Pup EA/KE: 6.53 0 6.98 6.66 V 41361.7635 1.25689059 12 B8V +33189 NP Pup LB 6.25 0 6.52 V C7,2(N0) +38502 NQ Pup LB 7.55 0 7.68 V S6,3 +40091 NS Pup LC 4.4 0 4.5 V K3Ib +35363 NV Pup GCAS 4.58 0 4.78 V B3Ve +35406 NW Pup BCEP+ELL: 5.11 1 0.07 V 0.125 B3Vea +35488 NX Pup INA 10.00 0 11.16 V A1-F2IIIe +38580 OR Pup LB: 6.85 0 7.1 V M7 +40321 OS Pup GCAS: 5.07 0 5.2 V B1.5IV +34899 OU Pup ACV 4.86 0 4.93 V 0.9183 A0p(Si) +36778 OW Pup GCAS 5.37 0 5.56 V B3Vne +37982 OX Pup ACV 6.30 0 6.36 V 2.41 B9p(Si) +39866 PQ Pup GCAS 6.17 0 6.42 V B4Ve +35029 PR Pup ACV 5.69 0 5.74 V 1.9347 40 A0p(Si) +36608 PS Pup ELL 6.62 1 0.02 0.02 V 1.3422 A0 +37036 PT Pup BCEP(B) 5.72 0 5.74 V 44254.151 0.162840 50 B2III +37173 PU Pup EB 4.69 0 4.75 4.74 V 43100.000 2.57895 B9 +37842 PV Pup EA/DM 6.88 0 7.32 7.31 V 43119.7334 1.660728 10 A8V+A8V +38792 PX Pup LB: 6.25 1 0.42 V M6III +39153 PY Pup ACV 6.12 1 0.04 V 43196.00 6.82 50 A0p(Si) +39329 QQ Pup ACV 6.6 1 0.06 V 43174.000 2.226 50 A0p(Si) +38159 QS Pup BCEP 5.84 0 V 0.1182 B1.5IV +38370 QU Pup BCEP(B) 6.04 0 V 43480.713 0.1927 B2IV +34834 QW Pup ACV 4.47 1 0.02 V +38031 QY Pup SRD 6.24 0 6.71 V +38455 QZ Pup ELL 4.47 0 4.54 V +39360 V0336 Pup ACV 5.52 1 0.02 V +39439 V0337 Pup ACV 7.6 1 0.03 V +31400 V0338 Pup RRAB 9.07 0 9.25 V +32434 V0339 Pup GCAS 6.15 0 6.27 V +38737 V0342 Pup SXARI: 6.7 1 0.04 V +36992 V0344 Pup RS 6.88 0 6.99 V +36381 V0349 Pup DSCTC 7.49 0 7.53 B +36500 V0350 Pup BCEP 7.48 0 7.52 B +39676 V0355 Pup DSCTC 8.5 1 0.04 B +29103 V0356 Pup RS: 8.33 0 8.46 Hp +31625 V0357 Pup LB: 8.11 0 8.21 Hp +33487 V0358 Pup EA: 9.30 0 9.54 Hp +33549 V0359 Pup LB: 8.88 0 9.04 Hp +33864 V0360 Pup EB: 6.52 0 6.58 Hp +34396 V0361 Pup EW 8.08 0 8.39 Hp +34659 V0362 Pup E: 7.52 0 7.63 Hp +34817 V0363 Pup LPB 5.89 0 5.91 Hp +34836 V0364 Pup IA: 8.70 0 9.75 Hp +35447 V0365 Pup EA 7.80 0 7.91 Hp +35607 V0366 Pup EA: 8.07 0 8.29 Hp +35898 V0367 Pup LB: 8.36 0 8.46 Hp +35960 V0368 Pup DSCTC 6.20 0 6.23 Hp +36227 V0369 Pup ACYG: 7.66 0 7.76 Hp +36250 V0370 Pup BE 8.47 0 8.59 Hp +36246 V0371 Pup LPB 7.03 0 7.06 Hp +36349 V0372 Pup BY: 9.97 0 10.13 Hp +36404 V0373 Pup BE 7.61 0 7.81 Hp +36409 V0374 Pup SRB 7.28 0 7.50 Hp +36605 V0375 Pup LPB: 8.63 0 8.69 Hp +36728 V0376 Pup EB: 6.21 0 6.24 Hp +36802 V0377 Pup LB 7.45 0 7.64 Hp +36981 V0378 Pup EB: 5.60 0 5.68 Hp +36971 V0379 Pup ACV 9.12 0 9.21 Hp +37099 V0380 Pup GCAS: 9.19 0 9.61 Hp +37296 V0381 Pup EB 7.26 0 7.71 Hp +37272 V0382 Pup BY: 11.01 0 11.22 Hp +37343 V0383 Pup SRB: 7.40 0 7.52 Hp +37433 V0384 Pup LC 8.76 0 9.40 Hp +37692 V0385 Pup ACV 8.00 0 8.09 Hp +37668 V0386 Pup SXARI: 8.66 0 8.81 Hp +37675 V0387 Pup BE 6.47 0 6.59 Hp +37743 V0388 Pup BE 9.95 0 10.16 Hp +37758 V0389 Pup IA: 8.17 0 8.35 Hp +37751 V0390 Pup EA 5.53 0 5.62 Hp +37927 V0391 Pup DSCTC: 7.88 0 7.95 Hp +37915 V0392 Pup E: 5.82 0 5.93 Hp +37925 V0393 Pup ELL 7.69 0 7.73 Hp +37985 V0394 Pup SRD 7.71 0 7.82 Hp +38110 V0395 Pup LPB 7.14 0 7.17 Hp +38155 V0396 Pup SRD 8.79 0 8.99 Hp +38167 V0397 Pup EA 5.91 0 6.09 Hp +38173 V0398 Pup ACYG: 7.80 0 7.91 Hp +38186 V0399 Pup EA 9.27 0 9.56 Hp +38326 V0400 Pup LB: 8.41 0 8.52 Hp +38338 V0401 Pup EA: 9.44 0 9.76 Hp +38430 V0402 Pup ACYG: 9.21 0 9.30 Hp +38439 V0403 Pup BE: 9.01 0 9.12 Hp +38650 V0404 Pup LPB 7.29 0 7.32 Hp +38866 V0405 Pup EB 8.72 0 8.92 Hp +38787 V0406 Pup LC 7.39 0 8.15 Hp +38923 V0407 Pup SRC: 6.82 0 7.46 Hp +39020 V0408 Pup BE 9.20 0 9.35 Hp +39090 V0409 Pup E: 8.38 0 8.47 Hp +39084 V0410 Pup EB 6.69 0 6.74 Hp +39128 V0411 Pup SRB 8.28 0 8.62 Hp +39131 V0412 Pup LB: 8.74 0 8.86 Hp +39162 V0413 Pup LPB: 7.62 0 7.69 Hp +39229 V0414 Pup ACV: 8.77 0 8.91 Hp +39290 V0415 Pup LPB 7.86 0 7.89 Hp +39365 V0416 Pup SRB: 7.20 0 7.45 Hp +39452 V0417 Pup E: 9.76 0 10.02 Hp +39521 V0418 Pup LB: 7.32 0 7.47 Hp +39637 V0419 Pup LB: 11.09 0 11.41 Hp +39834 V0420 Pup BE 6.30 0 6.57 Hp +39968 V0421 Pup EB 9.07 0 9.23 Hp +40005 V0422 Pup LB: 8.93 0 9.04 Hp +40066 V0423 Pup ACV 7.46 0 7.52 Hp +40074 V0424 Pup LB: 8.93 0 9.04 Hp +40139 V0425 Pup EB: 7.81 0 7.97 Hp +40148 V0426 Pup BE: 7.68 0 7.82 Hp +40144 V0427 Pup SRB: 6.46 0 6.82 Hp +40264 V0428 Pup SRB 7.69 0 7.84 Hp +40409 V0429 Pup LB: 8.95 0 9.05 Hp +40459 V0430 Pup BY: 10.13 0 10.26 Hp +40596 V0431 Pup E 7.21 0 7.32 Hp +40777 V0432 Pup ACV: 6.67 0 6.70 Hp +40805 V0433 Pup LB: 9.41 0 9.62 Hp +40853 V0434 Pup EA 7.76 0 8.38 Hp +40871 V0435 Pup LB: 8.33 0 8.43 Hp +41107 V0436 Pup LB 6.28 0 6.40 Hp +41121 V0437 Pup LB 8.72 0 8.92 Hp +41250 V0438 Pup EA 5.90 0 6.07 Hp +41324 V0439 Pup SRC 8.51 0 8.81 Hp +41390 V0440 Pup LB 8.77 0 9.01 Hp +37444 V0442 Pup ACYG 7.72 0 7.84 Hp +37876 V0443 Pup E/WR 10.49 1 0.04 V +37345 V0468 Pup BE 5.92 0 6.02 V +28796 V0575 Pup RS 6.62 1 0.04 V 3.3 G2V+G5V +41278 V0592 Pup RS 7.83 0 7.87 V 1.35 G1V+G3V +41475 V0596 Pup EA/DM 6.57 0 7.05 7.03 V 44620.6589 4.5961832 06 A1V+A1V +38466 V0615 Pup EA 8.91 0 8.98 8.97 V 52950.772 3.38771 16 B5V +39390 V0626 Pup EA 9.04 0 9.16 9.10 V 47913.248 1.425902 11 A0V +29057 V0647 Pup DSCT 6.74 0 6.78 V 0.1167053 F0V +39206 V0683 Pup LPB 8.28 0 8.36 Hp 1.21806 B7III/IV +39429 ζ Pup ACYG: 2.11 0 2.17 Hp +38070 ο Pup BE: 4.43 0 4.46 Hp +35264 Ï€ Pup SRD: 2.80 0 2.87 Hp +39757 Ï Pup DSCT 2.68 0 2.87 V 44995.905 0.1408809 48 F6IIp +36377 σ Pup ELL: 3.36 0 3.39 Hp +42975 R Pyx M 10.4 0 15.1 B 18606. 364.7 C(R)e +43541 RZ Pyx EB/KE 8.83 0 9.72 9.69 B 38431.474 0.656273 B7V +42733 TX Pyx E/KE 9.5 0 9.9 9.8 p 27844.475 1.123745 A3 +44164 TY Pyx EA/D/RS 6.85 0 7.50 7.48 V 43187.2304 3.1985787 07 G5+G5 +42619 TZ Pyx EW 10.7 0 11.1 11.1 V 28847.550 0.6973125 +43093 UZ Pyx SRB 6.99 0 7.47 V 100. C5,5J(R8) +41939 VX Pyx RS 6.32 0 6.42 V +43736 VY Pyx CWB 7.65 0 8.08 B +41515 XY Pyx EB 5.68 0 5.76 Hp +41541 XZ Pyx LB: 9.22 0 9.34 Hp +41535 YY Pyx SRA 9.07 0 9.36 Hp +41586 YZ Pyx BCEP: 7.62 0 7.66 Hp +41670 ZZ Pyx LB: 8.63 0 8.73 Hp +41714 AA Pyx ACV 9.07 0 9.12 Hp +41726 AB Pyx LC 6.58 0 6.89 Hp +41811 AC Pyx EA: 7.80 0 8.10 Hp +42110 AD Pyx LB 8.48 0 8.73 Hp +42469 AE Pyx SRD: 8.17 0 8.25 Hp +42533 AF Pyx E: 8.09 0 8.27 Hp +42756 AG Pyx LB: 8.36 0 8.46 Hp +42802 AH Pyx LB 8.45 0 8.69 Hp +43114 AI Pyx IA: 6.23 0 6.36 Hp +43215 AK Pyx LB 6.09 0 6.51 Hp +44281 AL Pyx LB 7.05 0 7.35 Hp +44308 AM Pyx LB: 8.20 0 8.31 Hp +45009 AN Pyx ACV: 8.25 0 8.30 Hp +45373 AO Pyx LB 8.35 0 8.73 Hp +45679 AP Pyx LB: 7.45 0 7.57 Hp +45706 AQ Pyx SRD 9.10 0 9.36 Hp +46241 AR Pyx EB: 8.72 0 8.97 Hp +42214 CS Pyx BY 8.08 1 0.03 V 13.97 G8/K0V +42281 CT Pyx BY 8.72 1 0.04 V 16.41 K1V +44851 CY Pyx E: 8.27 0 8.36 V 0.840 G3V +41980 DK Pyx EA 7.85 0 7.97 7.91 V 48112.955 6.17848 06 B3III +45945 DN Pyx EA 8.45 0 8.55 8.55 V 52764.617 6.64046 04 A0V +21252 R Ret M 6.5 0 14.2 V 41703. 278.46 48 M4e-M7.5e +19231 SX Ret SRB 9.24 0 9.80 V 40622. 100. M4-5III +19917 TT Ret ACV 6.37 1 0.01 V +19945 TX Ret DSCTC 8.6 1 0.03 B +16204 UU Ret SRB 9.26 0 9.45 Hp +16807 UV Ret LB: 9.20 0 9.33 Hp +17968 UW Ret SRB 7.76 0 7.92 Hp +18517 UX Ret EW 8.32 0 9.02 Hp +18659 UY Ret LB: 9.53 0 9.68 Hp +19530 UZ Ret DSCTC 9.28 0 9.34 Hp +20304 VV Ret LB 8.59 0 8.77 Hp +20657 VW Ret EA 8.76 0 9.28 Hp +16092 VY Ret EA 7.89 0 8.47 8.43 V 52898.794 14.21605 F5V +18744 γ Ret SR 4.42 0 4.64 V 25. M4III +98085 S Sge DCEP 5.24 0 6.04 V 42678.792 8.382086 31 F6Ib-G5Ib +95173 T Sge SRB 10.4 0 11.9 p 165.5 M4-M6.5 +94910 U Sge EA/SD 6.45 0 9.28 6.71 V 17130.4114 3.38061933 17 B8V+G2IV-III +98909 X Sge SR 7.0 0 9.7 V 25648. 196. 50 C6-,5(N3) +93987 SV Sge RCB 11.5 0 16.2 p C0-3,2-3(R2) +98438 VZ Sge LB 5.27 0 5.57 V M4IIIa +98662 BF Sge LB 10.3 0 12.1 B C4,4(N3) +98430 CW Sge EW/DW 11.0 0 11.8 11.7 p 37501.457 0.660347966 F5 +99527 FG Sge * 9.45 0 13.6 B B4Ieq-K2Ib +95657 HT Sge ACYG: 8.07 1 0.15 B B7Ia +98780 HU Sge LB 7.8 0 8.8 p M0 +94289 QR Sge E:/WR 11.04 0 11.12 V +97456 QT Sge E:/WR 10.50 1 0.04 V +97796 QZ Sge E: 6.16 0 6.23 V +94377 V0338 Sge E: 6.69 0 6.75 Hp +96599 V0339 Sge LC 8.46 0 8.84 Hp +96688 V0340 Sge LC: 6.37 0 6.47 Hp +96984 V0341 Sge GCAS: 7.67 0 7.84 Hp +97135 V0342 Sge SRB 6.78 0 6.92 Hp +97670 V0343 Sge E: 7.24 0 7.32 Hp +99176 V0344 Sge LB 6.35 0 6.52 Hp +99327 V0372 Sge BCEP 8.47 1 0.03 V 0.164314 B0.5III/IV +97365 δ Sge LB: 3.75 0 3.83 V M2.5II-III+B9V +94738 R Sgr M 6.7 0 12.83 V 43371. 269.84 46 M4e-M6e +94706 T Sgr M 7.1 0 12.9 V 44897. 394.66 47 S4.5,8e-S5.5,8e +90836 U Sgr DCEP 6.28 0 7.15 V 30117.925 6.745226 28 F5Ib-G1.5Ib +90799 V Sgr CST 8.1 0 V F2II +88567 W Sgr DCEP 4.29 0 5.14 V 43374.77 7.59503 32 F4-G2Ib +87072 X Sgr DCEP 4.20 0 4.90 V 40741.70 7.01283 36 F5-G2II +89968 Y Sgr DCEP 5.25 0 6.24 V 40762.38 5.77335 34 F5-G0Ib-II +98077 RR Sgr M 5.4 0 14.0 V 40809. 336.33 43 M4e-M9e +89637 RS Sgr EA/SD 6.01 0 6.97 6.28 V 20586.387 2.4156832 17 B3IV-V+A +100033 RT Sgr M 6.0 0 14.1 V 42083. 306.46 47 M5e-M7e +98334 RU Sgr M 6.0 0 13.8 V 41900. 240.49 43 M3e-M6e +90493 RV Sgr M 7.2 0 14.8 V 42621. 315.85 47 M4e-M9 +94489 RW Sgr SRA 9.0 0 11.7 V 41931. 186.82 47 M4II/IIIe-M6III: +94730 RY Sgr RCB 5.8 0 14.0 V G0Iaep(C1,0) +90709 SS Sgr SRB 10.9 0 11.3 p C3,4(R3/N) +93605 SU Sgr SRB 8.12 0 8.64 V 60. M6III +89084 SY Sgr INSA: 9.87 0 10.12 V F8 +86873 SZ Sgr SRB 11.05 0 11.9 B 73. C7,3(Nb) +97296 UW Sgr SRB 11.76 0 12.5 B C6,5-C7,1J(Na) +88838 VX Sgr SRC 6.52 0 14.0 V 36493. 732. M4eIa-M10eIa +89596 WZ Sgr DCEP 7.45 0 8.63 V 35506.629 21.849708 31 F8-K1 +90241 XX Sgr CEP 8.41 0 9.28 V 35308.449 6.424140 30 F6-G2 +90019 XZ Sgr EA/SD 8.82 0 10.93 8.95 V 41890.6201 3.275555 11 A3V+G5IV-V: +92370 YZ Sgr DCEP 7.02 0 7.76 V 35514.301 9.553606 49 F6-G2 +89276 AP Sgr DCEP 6.52 0 7.41 V 36045.500 5.057875 22 F6-G1 +96255 AQ Sgr SRB 9.1 0 11.4 p 199.6 C7,4(N3) +88855 AX Sgr SRD 9.2 0 10.0 p 350. G8Ia-M2Ia +90110 AY Sgr DCEP 10.10 0 10.92 V 40768.53 6.56959 31 F6-G1 +92491 BB Sgr DCEP 6.55 0 7.30 V 36053.535 6.63699 34 F6-G1 +87433 KW Sgr SRC 11.0 0 13.2 p 670. M0I-M4Ia +92013 V0350 Sgr DCEP 7.08 0 7.83 V 35317.227 5.15424 28 F5-G2Ib +92235 V0356 Sgr EA/DS: 6.84 0 7.66 7.24 V 33900.827 8.89610 12 B3V+A1II +96101 V0440 Sgr RRAB 9.60 0 10.80 V 41509.445 0.47747883 14 A4-F8 +97849 V0505 Sgr EA/SD 6.46 0 7.51 6.63 V 44461.5907 1.18287156 20 A2V+F6: +89326 V0675 Sgr RRAB 9.80 0 10.76 V 28387.244 0.6422893 14 A5-F6 +93293 V0733 Sgr M 11.2 0 14.4 p 30262. 100.9 50 +87668 V0774 Sgr LB 12.5 0 13.9 p M5 +86971 V0777 Sgr EA/GS 10.42 0 10.7 B 29411.7 936.07 06 K5Ib+A +92403 V1216 Sgr UV 11.2 0 12.55 B M3.6Ve +88069 V1647 Sgr EA/DM 6.94 0 7.57 7.43 V 41829.6951 3.28279251 08 A1V+A2V +98546 V1711 Sgr CWA 10.43 0 11.06 V 44151.11 28.556 35 F4-F6 +88022 V1721 Sgr EA/DM 10.4 0 10.6 p 28664.475 1.788564 10 F3V +94940 V1942 Sgr LB 6.74 0 7.00 V C6,4(N2/R8) +99082 V1943 Sgr LB 9. 0 11. p M8 +99126 V2232 Sgr RR 11.5 0 12.5 p +99129 V2235 Sgr EA 10. 0 10.5 p MB +89499 V2509 Sgr EB/KE 7.35 0 7.71 7.50 V 44387.7712 1.0869739 A0 +90801 V3508 Sgr GCAS 7.70 0 8.00 V B6IIIe +96176 V3790 Sgr LB: 7.24 0 7.54 V M2 +88905 V3792 Sgr EB/DM 6.43 0 6.88 6.81 V 41879.349 2.248082 B5 +98688 V3872 Sgr LB 4.45 0 4.64 V M4III +91781 V3879 Sgr SRB 6.05 0 6.58 V 50. M5.2III +97394 V3885 Sgr NL+ZZ: 10.27 0 10.51 V pec +87163 V3894 Sgr EB/D 6.21 0 6.39 6.37 V 44569.775 2.61862 B3IVe +88943 V3903 Sgr INA: 7.00 0 7.45 V O8Vn +94224 V3954 Sgr LB: 7.15 0 7.52 V M3 +95127 V3955 Sgr SRD 10. 0 11.2 p G0-G5 +97749 V3961 Sgr ACV 5.28 0 5.34 V 44457.77 2300. A0p(Si-Cr-Eu) +88123 V3984 Sgr GCAS 7.38 1 0.18 V B1.5Vne +93996 V4024 Sgr GCAS 5.34 0 5.60 V B2Ve +97351 V4026 Sgr SR: 6.69 0 6.90 V M5III +89980 V4028 Sgr SR: 6.10 0 6.38 V 35. M5III +89956 V4029 Sgr SDOR 8.12 0 8.29 V B9Iapeq +89963 V4030 Sgr ACYG: 8.30 0 8.41 V B8Iaea +90610 V4031 Sgr GCAS 6.52 0 6.67 V B2IVnep +89178 V4045 Sgr ACV 6.51 0 6.54 V 2.8855 A0p(Si-Cr-Eu) +90074 V4050 Sgr ACV 5.31 1 0.01 V 6.3 B8p(Sr-Ti-Cr) +96644 V4062 Sgr ACV 6.71 0 6.75 V 42620.099 1.737 30 B9p(Si) +96967 V4063 Sgr DSCT 7.9 1 0.12 V 0.361 F0 +97684 V4064 Sgr ACV 7.23 0 7.36 V 42621.478 4.718 30 B9p(Si) +88287 V4072 Sgr ELL/WR+* 8.74 1 1.2 V +89526 V4074 Sgr ZAND 8.6 0 12.3 p +92505 V4088 Sgr E 7.49 0 7.87 V +96234 V4089 Sgr EA/DM 5.87 0 6.07 V +96739 V4090 Sgr EA/DM 6.58 0 6.81 V +99011 V4091 Sgr RS: 8.4 1 0.04 V +91550 V4131 Sgr GCAS: 8.68 0 8.82 V +98763 V4133 Sgr ACV 6.90 0 6.92 V +95244 V4138 Sgr RS 6.57 0 6.85 V +95714 V4139 Sgr RS 8.40 0 8.69 V +93181 V4152 Sgr SR: 9.24 0 9.52 V +89164 V4159 Sgr BCEP 8.09 0 8.16 V +91132 V4190 Sgr DSCTC 6.44 0 6.48 V +93785 V4197 Sgr EW/KE 7.95 0 8.70 V +93887 V4198 Sgr * 6.23 0 6.29 V +95159 V4199 Sgr * 6.18 0 6.26 V +97944 V4200 Sgr BY 6.18 1 0.07 V +96440 V4333 Sgr DSCT 5.48 0 5.60 V +95266 V4371 Sgr BY 9.42 0 9.60 V +95755 V4372 Sgr ELL: 6.76 0 6.80 V +87136 V4375 Sgr BE 8.93 0 9.06 Hp +88073 V4376 Sgr ELL: 9.14 0 9.27 Hp +88182 V4377 Sgr LB: 8.94 0 9.04 Hp +88341 V4378 Sgr LB 9.94 0 10.47 Hp +88615 V4379 Sgr BE: 7.03 0 7.13 Hp +88789 V4380 Sgr LB 9.68 0 10.13 Hp +88876 V4381 Sgr ACYG: 6.57 0 6.62 Hp +88884 V4382 Sgr BCEP 7.93 0 7.98 Hp +89129 V4383 Sgr BE 8.69 0 8.82 Hp +89203 V4384 Sgr ACYG: 7.20 0 7.30 Hp +89238 V4385 Sgr ELL: 7.42 0 7.46 Hp +89404 V4386 Sgr E: 8.37 0 8.55 Hp +89470 V4387 Sgr ACV 6.09 0 6.12 Hp +89510 V4388 Sgr LB: 8.25 0 8.34 Hp +89662 V4389 Sgr SRB: 7.16 0 7.26 Hp +90001 V4390 Sgr EB 7.75 0 7.87 Hp +90043 V4391 Sgr SRB 8.32 0 8.53 Hp +90100 V4392 Sgr SRD: 8.41 0 8.55 Hp +90113 V4393 Sgr LB: 7.54 0 7.65 Hp +90259 V4394 Sgr EB: 10.52 0 11.06 Hp +90646 V4395 Sgr SRB 8.10 0 8.27 Hp +90671 V4396 Sgr EA 7.68 0 8.11 Hp +90811 V4397 Sgr SRB 8.11 0 8.27 Hp +90950 V4398 Sgr ACYG 6.89 0 6.93 Hp +91020 V4399 Sgr EA: 7.13 0 7.31 Hp +91130 V4400 Sgr BE 8.02 0 8.15 Hp +91135 V4401 Sgr SRB 6.64 0 6.77 Hp +91206 V4402 Sgr LB 8.35 0 8.65 Hp +91718 V4403 Sgr EA 8.68 0 9.14 Hp +92066 V4404 Sgr ACV 7.43 0 7.48 Hp +92079 V4405 Sgr SRB: 6.20 0 6.33 Hp +92142 V4406 Sgr SRB 6.73 0 6.89 Hp +92649 V4407 Sgr EB 6.62 0 6.80 Hp +92776 V4408 Sgr LPB: 8.28 0 8.37 Hp +93696 V4409 Sgr BE 8.67 0 8.78 Hp +93931 V4410 Sgr LB: 8.48 0 8.60 Hp +94537 V4411 Sgr E: 8.50 0 8.76 Hp +95036 V4412 Sgr LB: 7.97 0 8.10 Hp +95075 V4413 Sgr LB: 8.75 0 8.86 Hp +95063 V4414 Sgr SRB 7.60 0 7.77 Hp +95226 V4415 Sgr SRB 6.93 0 7.04 Hp +95252 V4416 Sgr SRB 8.01 0 8.17 Hp +95313 V4417 Sgr E: 8.94 0 9.34 Hp +95779 V4418 Sgr LB: 8.47 0 8.57 Hp +96111 V4419 Sgr SRB 6.47 0 6.65 Hp +96873 V4420 Sgr SRB: 8.62 0 8.82 Hp +96983 V4421 Sgr LB 9.20 0 9.39 Hp +97303 V4422 Sgr LB: 8.01 0 8.07 Hp +97460 V4423 Sgr LB: 8.17 0 8.27 Hp +97923 V4424 Sgr RRAB 10.04 0 10.68 Hp +98021 V4425 Sgr SXPHE: 9.38 0 9.92 Hp +98088 V4426 Sgr SRB 8.67 0 8.85 Hp +98113 V4427 Sgr LB 8.58 0 8.76 Hp +98539 V4428 Sgr EA 8.26 0 8.53 Hp +99042 V4429 Sgr SRD: 8.12 0 8.30 Hp +99408 V4430 Sgr LB 8.86 0 9.18 Hp +99553 V4431 Sgr SRD 8.54 0 8.68 Hp +99568 V4432 Sgr LB: 8.23 0 8.35 Hp +99606 V4433 Sgr IB: 10.63 0 11.36 Hp +99920 V4434 Sgr LB 6.16 0 6.33 Hp +100024 V4435 Sgr LB 8.66 0 8.86 Hp +100119 V4436 Sgr LB: 8.91 0 9.06 Hp +100253 V4437 Sgr EB 7.26 0 7.56 Hp +100422 V4438 Sgr LB 6.99 0 7.10 Hp +100413 V4439 Sgr SRB: 8.48 0 8.92 Hp +100743 V4440 Sgr LB: 8.75 0 8.88 Hp +100732 V4441 Sgr LB 7.42 0 7.53 Hp +100813 V4442 Sgr LB: 8.47 0 8.59 Hp +100868 V4443 Sgr LB 7.78 0 7.91 Hp +95358 V5546 Sgr GDOR 7.69 0 7.79 Hp F0V +96406 V5548 Sgr DSCTC: 5.82 1 0.04 B 0.11340 A1m +98034 V5553 Sgr EB 8.53 0 8.62 V 48404.165 2.69466 F5/F6V +89642 η Sgr LB: 3.05 0 3.12 V M3.5III +89341 μ Sgr EA+ACYG 3.80 0 3.88 V 44035. 180.55 11 B8eqIa+B1.5V +95176 Ï… Sgr EB/GS 4.53 0 4.61 4.59 V 20439.55 137.939 B8pI:+O9V +78872 Z Sco M 8.7 0 13.4 V 41750. 343.03 49 M5.5e:-M7e +82912 RR Sco M 5.0 0 12.4 V 45418. 281.45 47 M6II-IIIe-M9 +82833 RS Sco M 6.2 0 13.0 V 44676. 319.91 42 M5e-M9 +83059 RV Sco DCEP 6.61 0 7.49 V 34925.38 6.06133 24 F5-G1 +87345 RY Sco DCEP 7.51 0 8.44 V 28256.45 20.31322 37 F6-G2 +78746 RZ Sco M 8.0 0 12.8 V 44698. 156.60 45 M3e-M4e +87063 SX Sco SR: 10.5 0 11.4 p C5,4(N3) +84071 AH Sco SRC 8.1 0 12.0 p 29769. 713.6 46 M4e-M5Ia-Iab +82747 AK Sco INSB 8.7 0 11.7 p F5Vpea +81747 AX Sco SRB 9.85 0 12.0 B 138. M6 +86527 BM Sco SRD 6.8 0 8.7 p 815. K2.5Ib +84282 FV Sco EA/DM 7.95 0 8.72 0.1 V 42954.0424 5.7278964 13 B6V +82498 KQ Sco DCEP 9.34 0 10.29 V 35281.4 28.6896 35 K5 +87191 V0393 Sco EA/SD 8.2 0 9.0 8.3 p 28321.118 7.71250 12 B9 +87810 V0453 Sco EB/GS 6.36 0 6.73 6.70 V 42218.74 12.00597 B0.5Iape +85701 V0482 Sco DCEP 7.63 0 8.30 V 40754.495 4.527807 28 F5 +86512 V0494 Sco RRAB 10.62 0 11.91 V 41126.388 0.4273326 20 A5-F5: +87173 V0500 Sco DCEP 8.40 0 9.13 V 44400.89 9.316863 49 K0 +85035 V0636 Sco DCEP 6.40 0 6.92 V 40364.392 6.79671 34 F7/8Ib/II-G5 +87922 V0690 Sco RRAB 10.80 0 12.00 V 41797.592 0.4922551 17 A7-F8 +85985 V0701 Sco EW/KE 8.63 0 9.05 9.05 V 43574.8358 0.76187547 B1:V:nn +86650 V0703 Sco DSCT 7.58 0 8.04 V 42979.3923 0.11521772 35 A9-G0 +79476 V0718 Sco EA 8.98 0 10. V 42630.1 A2 +80405 V0760 Sco EA/DM 7.04 0 7.4 7.4 B 38230.250 1.7309 17 B3:Vn +79080 V0856 Sco INA 6.80 0 8.00 V A7IVe +82911 V0861 Sco EB 6.07 0 6.40 6.28 V 43704.21 7.84825 B0.5Iae +86468 V0862 Sco GCAS: 2. 0 8.5 V B1ne-B8 +83499 V0884 Sco ELL+X 6.51 0 6.60 6.57 V 42476.6801 3.41168 O5.5-O6.5Iaf +82669 V0900 Sco ELL: 6.29 0 6.34 V 42469.86 2.63 B0.5Iae +86624 V0905 Sco ACYG: 6.49 0 6.67 V A2Ia-0pe +87616 V0906 Sco EA/DM 5.96 0 6.23 6.21 V 39649.8190 2.785847 13 B9V+B9V +82554 V0911 Sco ACV 6.32 0 6.38 V 1.85 B9p(Si) +78246 V0913 Sco SXARI 5.40 0 5.47 V 0.492 B4IV-Vp(Heweak) +82926 V0914 Sco UV+BY 12.4 0 14.0 U M3Ve+M4Ve +84332 V0915 Sco 6.22 0 6.64 V G5Ia +81305 V0918 Sco ELL 5.42 0 5.50 V 9.813 O8.5I+O7III(f) +82543 V0919 Sco WR 6.45 0 6.61 V 2. WN7+O-B1I +83410 V0922 Sco DSCTC 7.45 1 0.10 B 0.05 A1IV +83491 V0923 Sco EA/D 5.86 0 6.24 V 41903.691 34.8269 F3IV-V+F3V +77909 V0927 Sco SXARI 5.8 1 0.03 V 44256.572 1.45937 B8IIIp(Heweak) +78183 V0928 Sco ACV 6.74 0 6.76 V +78877 V0929 Sco SXARI 5.89 0 5.91 V +80024 V0933 Sco ACV 7.37 1 0.04 V +80478 V0936 Sco ACV 7.63 0 7.71 V +85839 V0949 Sco DSCTC 6.13 1 0.05 V +86269 V0950 Sco DCEPS 7.07 0 7.40 V +87624 V0951 Sco ACV 6.39 0 6.44 V +79235 V0952 Sco ACV 6.57 1 0.04 V +80027 V0953 Sco ACV 9.2 1 0.04 V +81508 V0954 Sco EB/KE 7.49 0 7.75 V +81566 V0955 Sco ACV 8.65 1 0.04 V +87460 V0957 Sco SXARI 5.87 1 0.05 V +87560 V0958 Sco ACV 6.95 1 0.05 V +85680 V0965 Sco RS 8.46 0 8.67 V +80290 V0972 Sco DSCT 9.52 0 9.69 V +82493 V0973 Sco ACYG 5.22 0 5.28 V +85020 V0975 Sco ACYG 6.27 0 6.35 V +86432 V0994 Sco BCEP 7.10 0 7.22 V +81472 V1003 Sco ELL: 5.83 1 0.03 V +82691 V1007 Sco EB 6.06 1 0.24 V +84409 V1012 Sco EB 6.76 0 6.83 b +85676 V1017 Sco RS: 8.23 0 8.27 V +79081 V1027 Sco ACV: 6.60 0 6.67 V +80607 V1028 Sco ACV 7.00 1 0.01 V +84655 V1035 Sco WR 9.27 1 0.03 V +86011 V1036 Sco ELL 5.71 0 5.79 V +77369 V1039 Sco SRD: 11.01 0 11.44 Hp +77859 V1040 Sco BCEP: 5.39 0 5.42 Hp +78523 V1041 Sco EA 8.94 0 9.26 Hp +78534 V1042 Sco LB 9.18 0 9.38 Hp +78563 V1043 Sco SRB 7.45 0 7.58 Hp +78708 V1044 Sco E: 8.76 0 8.96 Hp +78880 V1045 Sco LB: 8.08 0 8.19 Hp +78919 V1046 Sco E 9.34 0 9.70 Hp +79085 V1047 Sco I: 11.17 0 11.53 Hp +79158 V1048 Sco LB: 9.05 0 9.15 Hp +79247 V1049 Sco LB 7.96 0 8.08 Hp +79479 V1050 Sco SRB 7.38 0 7.49 Hp +79530 V1051 Sco SXARI 6.40 0 6.43 Hp +79763 V1052 Sco LB: 8.62 0 8.73 Hp +80004 V1053 Sco LB: 8.03 0 8.16 Hp +80060 V1054 Sco E: 6.63 0 6.71 Hp +80603 V1055 Sco EW 8.65 0 8.92 Hp +80636 V1056 Sco BY: 9.47 0 9.55 Hp +80714 V1057 Sco SRB 7.62 0 7.85 Hp +80945 V1058 Sco ACYG 5.36 0 5.42 Hp +81256 V1059 Sco BE 9.37 0 9.64 Hp +81334 V1060 Sco DSCTC 8.88 0 8.92 Hp +81415 V1061 Sco LB 8.03 0 8.23 Hp +81477 V1062 Sco ACV 6.92 0 6.98 Hp +81645 V1063 Sco GCAS 7.87 0 8.06 Hp +81712 V1064 Sco LB: 7.60 0 7.70 Hp +81842 V1065 Sco ACV 7.69 0 7.75 Hp +81921 V1066 Sco LB: 9.07 0 9.20 Hp +82451 V1067 Sco E: 10.37 0 10.77 Hp +82650 V1068 Sco LB 5.71 0 5.96 Hp +82819 V1069 Sco EA: 8.54 0 8.79 Hp +82848 V1070 Sco LPB 7.65 0 7.70 Hp +83014 V1071 Sco SRB 6.54 0 6.64 Hp +83457 V1072 Sco DSCTC 7.42 0 7.47 Hp +83574 V1073 Sco ACYG: 4.89 0 4.95 Hp +83706 V1074 Sco ACYG: 6.23 0 6.26 Hp +84401 V1075 Sco BE: 5.57 0 5.64 Hp +84483 V1076 Sco BE 6.76 0 6.84 Hp +84650 V1077 Sco BE 6.36 0 6.44 Hp +84745 V1078 Sco BE 7.78 0 7.97 Hp +84876 V1079 Sco LB 8.98 0 9.62 Hp +85022 V1080 Sco IA: 7.65 0 7.78 Hp +85569 V1081 Sco EA 6.97 0 7.12 Hp +86163 V1082 Sco E: 10.09 0 10.53 Hp +86253 V1083 Sco BE 8.15 0 8.36 Hp +86294 V1084 Sco EW: 9.07 0 9.18 Hp +86434 V1085 Sco LB: 8.99 0 9.20 Hp +86751 V1086 Sco LB 6.44 0 6.67 Hp +87221 V1087 Sco LB 8.65 0 8.84 Hp +87255 V1088 Sco LB 8.01 0 8.18 Hp +87257 V1089 Sco ACV 7.52 0 7.57 Hp +87298 V1090 Sco E: 8.30 0 8.45 Hp +87580 V1091 Sco ACV 7.95 0 8.01 Hp +87886 V1092 Sco LPB 6.69 0 6.74 Hp +79970 V1195 Sco EA 8.86 0 9.04 9.01 V 47963.349 4.00305 B9IV +85377 V1229 Sco EB 8.90 0 9.08 8.96 V 47921.793 1.859839 B4III +79061 V1283 Sco EB 8.58 0 8.68 8.61 V 48510.607 1.7587 A0V+K0III +82378 V1290 Sco EA 7.96 0 8.07 8.01 V 48704.307 4.49244 09 O9.5IV +83583 V1300 Sco EA 8.87 0 9.03 9.02 V 48005.710 29.3467 02 B9IV/V +80763 α Sco LC 0.88 0 1.16 V M1.5Iab-Ib +78401 δ Sco GCAS 1.86 0 2.32 V +86670 κ Sco BCEP 2.41 0 2.42 V 0.1998303 B1.5III +85927 λ Sco BCEP+E: 1.62 1 0.06 V 40000.1235 0.2136966 B1.5IV +78265 Ï€ Sco EB 2.82 0 2.85 Hp +80112 σ Sco BCEP 2.86 0 2.94 V 44450.548 0.2468390 50 B2III+O9.5V +6759 R Scl SRB 9.1 0 12.9 p 370. C6,5ea(Np) +1236 S Scl M 5.5 0 13.6 V 42345. 362.57 48 M3e-M9e(Tc) +2286 T Scl M 8.47 0 13.5 V 41985. 202.42 49 M3-M6e +114318 Y Scl SRB 8.7 0 10.3 p M4 +3142 Z Scl CST: 6.68 0 V F8V +226 RU Scl RRAB 9.35 0 10.75 V 31122.839 0.49333878 12 A5:-F8 +8163 SV Scl RRC 11.12 0 11.66 V 41918.555 0.37760 35 A8-F6 +516 SW Scl SRC 7.3 0 9.3 V 40037. 146. M1Ib-IIe-M4IIIe +1182 UY Scl RRC: 11.53 0 11.96 V +5916 VV Scl EB:/DM: 8.35 0 8.50 8.50 V 36498.450 2.47962 A5p +6094 VW Scl RRAB 10.4 0 11.4 V 27809.381 0.5109147 13 +7398 VX Scl RRAB 11.55 0 12.32 V 41614.354 0.637334 14 +6888 WZ Scl DSCT 6.52 0 6.62 V F0IV +6942 XX Scl DSCT 8.84 0 8.93 V A7V +2880 AA Scl LB 8.63 0 8.99 V M5III +5661 AI Scl DSCT 5.89 0 5.98 V A7III +117931 AL Scl EA/DM 6.06 0 6.33 6.20 V 43698.5118 2.445088 09 B6V+A0V +5150 AP Scl ACVO 8.60 1 0.03 B +5118 AS Scl ELL: 8.10 1 0.03 V +328 AT Scl ELL: 7.08 1 0.03 V +1210 AU Scl DSCTC 8.4 1 0.01 B +1830 AV Scl ACV 6.24 1 0.03 U +5193 AW Scl ACV: 6.87 1 0.04 U +7372 BB Scl E 7.10 0 7.17 V +2164 BC Scl LB: 8.00 0 8.10 Hp +2550 BD Scl EB 10.12 0 10.39 Hp +6350 BE Scl EW 10.41 0 10.84 Hp +6536 BF Scl SRD 9.01 0 9.23 Hp +7315 BG Scl SRB 8.72 0 8.96 Hp +7323 BH Scl EA 7.942 0 8.18 Hp +7330 BI Scl LB: 6.92 0 7.01 Hp +7449 BK Scl LB: 7.61 0 7.72 Hp +8206 BL Scl LB: 7.68 0 7.80 Hp +114196 BM Scl LB: 8.28 0 8.38 Hp +114206 BN Scl EA 8.96 0 9.33 Hp +114400 BO Scl LB 8.08 0 8.22 Hp +114414 BP Scl LB: 8.07 0 8.19 Hp +115176 BQ Scl LB: 8.93 0 9.08 Hp +115565 BR Scl LB: 9.74 0 9.92 Hp +115858 BS Scl DSCTC 6.95 0 6.97 Hp +116105 BT Scl LB: 8.87 0 8.98 Hp +118277 BU Scl LB: 5.70 0 5.72 Hp +6659 BV Scl ACV 8.36 1 0.04 V +2486 CE Scl EA 9.70 0 9.92 9.75 V 48635.666 2.277687 F3V +4332 CG Scl EA 8.67 0 9.16 V 52227.588 11.03574 G5V +4505 CH Scl EA: 9.99 0 10.18 V 51881.544 1.577216 F2V +4974 CI Scl EA 8.78 0 9.0 8.92 V 52559.740 14.7104 03 F5/F6V +116475 CM Scl EA 8.81 0 8.93 8.92 V 48077.581 10.28857 03 F7V +4577 α Scl SXARI 4.31 1 0.04 V +2210 η Scl LB 4.80 0 4.90 V M4IIIa +4852 σ Scl ACV: 5.50 1 0.03 V +92202 R Sct RVA 4.2 0 8.6 V 44872. 146.5 G0Iae-K2p(M3)Ibe +92442 S Sct SRB 9.63 2 10.9 B 148.0 C6,4(N3) +92874 T Sct SRB 11.1 0 12.0 p 122. C7,3(N3) +90225 W Sct EA/DM 9.92 0 10.57 10.1 V 20665.47 10.2703 12 B3n+B0 +90791 X Sct DCEP 9.50 0 10.42 V 34905.58 4.19807 31 F6-G2 +91366 Y Sct DCEP 9.22 0 10.02 V 34947.20 10.341504 46 F8-G3 +91785 Z Sct DCEP 9.05 0 10.16 V 36247.160 12.901325 40 F8-G4 +92340 RS Sct EB/SD 9.78 0 10.91 10.08 V 44437.1658 0.6642384 F5 +91697 RU Sct DCEP 8.82 0 10.02 V 31174.67 19.70062 36 F4-G5 +91929 RV Sct LB: 8.7 0 9.05 V C4,4(R3/NB) +91275 RX Sct LB 11. 0 13. p C5,5(N3) +90303 RY Sct EB/GS 9.12 0 9.72 9.56 V 43342.42 11.12471 O9.7Ibpeq +90382 RZ Sct EA/GS 7.34 0 8.84 7.47 V 19261.1025 15.1902079 17 B3Ib +91867 SS Sct DCEP 7.90 0 8.43 V 35315.625 3.671253 37 F6-G0 +91706 TY Sct DCEP 10.31 0 11.25 V 37377.090 11.05302 47 F7-G5 +91613 CK Sct DCEP 10.30 0 10.88 V 40855.25 7.41522 32 G +91738 CM Sct DCEP 10.79 0 11.49 V 35111.320 3.916977 25 +91239 EV Sct DCEPS 9.90 0 10.32 V 43292.274 3.09099 50 G0II +91342 EW Sct CEP(B) 7.77 0 8.24 V G5 +90115 FR Sct ZAND 11.6 0 12.91 B M2.5epIab+B +92517 V0369 Sct DSCT 9.14 0 9.43 V 40393.709 0.223 F8III +90281 V0430 Sct ACYG 6.50 0 6.64 V B1Ia-Oe +90617 V0431 Sct ACYG 11.60 0 12.10 V B1Iaeq +90651 V0432 Sct ACV 5.96 1 0.01 V 2.1912 B9p(Si-Cr-Eu) +90267 V0433 Sct ACYG 8.18 1 0.05 V +91946 V0447 Sct BE 7.85 1 0.12 V +90768 V0448 Sct BE 7.42 0 7.48 Hp +90907 V0449 Sct ACYG: 7.93 0 8.02 Hp +90913 V0450 Sct SRD 5.49 0 5.62 Hp +91001 V0451 Sct ACV 7.93 0 8.00 Hp +91477 V0452 Sct ACYG: 9.87 0 10.10 Hp +91728 V0453 Sct LB 6.84 0 7.01 Hp +91871 V0454 Sct SRB 8.54 0 8.67 Hp +92128 V0455 Sct GCAS 9.00 0 9.32 Hp +92423 V0456 Sct LB 8.59 0 8.78 Hp +92510 V0457 Sct GCAS: 8.49 0 8.73 Hp +90552 V0493 Sct EA 8.32 0 8.74 8.52 V 52556.459 30.811 05 B1Iab +91726 δ Sct DSCT 4.60 0 4.79 V 43379.05 0.1937697 F3IIIp +77615 R Ser M 5.16 0 14.4 V 45521. 356.41 41 M5IIIe-M9e +75170 S Ser M 7.0 0 14.1 V 45433. 371.84 43 M5e-M6e +78976 U Ser M 7.8 0 14.7 V 45652. 237.50 48 M3e-M6e +88994 W Ser EA/GS 8.42 0 10.20 V 26625.493 14.15486 20 F5eIb(shell) +74558 Y Ser SRA 8.43 0 9.75 V 27514. 432.7 M5IIIe +74704 Z Ser SRA 9.4 0 10.9 p 23204. 87.57 M5III +75982 VY Ser RRAB 9.73 0 10.46 V 31225.341 0.71409384 20 F2-F6 +78307 AH Ser M 10.0 0 13.7 V 36682. 283.5 M2 +77830 AN Ser RRAB 10.40 0 11.44 V 14708.9500 0.52207162 18 A7-F5 +74556 AP Ser RRC 10.85 0 11.38 V 0.341 A7-F3 +76172 AR Ser RRAB 11.43 0 12.33 V 42918.394 0.5751416 20 F3 +77997 AT Ser RRAB 11.00 0 11.92 V 41798.579 0.7465465 18 A9-F5 +74739 BF Ser CWB 11.05 0 12.56 V 28744.094 1.1654394 12 A7-F3 +77027 BG Ser M 11.0 0 15. p 19887. 143. M6e-M8e +91201 BQ Ser CEP(B) 9.21 0 9.93 V 32410.50 4.2709 35 F6III +89013 CR Ser DCEP 10.50 0 11.32 V 35631.53 5.30141 25 G5 +89769 CV Ser E/D/WR 9.00 0 9.63 V 40785.29 29.7005 WC8+O8-O9III-IV +77798 CW Ser DSCT 11.59 0 12.06 V 31212.280 0.1891505 40 A/F +92194 DR Ser LB 10.4 0 13.39 B C6,4(N) +74584 FI Ser ACV 7.97 0 8.09 V 3. A0p(Sr-Cr-Eu) +89874 FK Ser BY: 10.9 0 11.5 p 5.20 K5Ve(Li)+K7Ve(Li +74386 FL Ser LB 5.79 0 6.02 V M4IIIab +89783 FO Ser LB 8.45 0 8.74 V C4,5(R6) +77910 FP Ser DSCTC 6.28 1 0.02 V 0.2 A7Vn +79086 FQ Ser LB 6.31 0 6.60 V M4III +91142 FR Ser ACV 6.34 0 6.52 V 41460.79 2.1436 A2p(Sr-Cr) +79072 FS Ser LB: 5.68 0 5.73 V M3.5IIIa +74334 LV Ser ACV 7.45 0 7.60 V 41060.5 2.7800 A3p(Sr-Cr-Eu) +76573 LY Ser LB: 6.70 0 6.96 V M4III +74975 MQ Ser BY: 4.99 0 5.11 V +78259 MS Ser BY 8.20 0 8.31 V +90858 MV Ser ACV 6.13 1 0.03 U +89681 MY Ser EB 7.33 0 7.66 V +78864 NQ Ser RS 8.3 1 0.11 V +89977 NW Ser BE 5.39 0 5.59 U +74471 OP Ser LB: 8.41 0 8.53 Hp +74633 OQ Ser SRB 7.19 0 7.47 Hp +74618 OR Ser LB: 8.62 0 8.78 Hp +74642 OS Ser SRB 9.12 0 9.38 Hp +75187 OT Ser BY: 10.03 0 10.16 Hp +75269 OU Ser EW: 8.25 0 8.43 Hp +75456 OV Ser LB 7.70 0 8.16 Hp +75584 OW Ser LB 7.00 0 7.14 Hp +75861 OX Ser SRD: 7.27 0 7.32 Hp +76091 OY Ser SRB 8.24 0 8.43 Hp +76296 OZ Ser LB 8.72 0 9.05 Hp +76515 PP Ser LB: 10.01 0 10.23 Hp +76538 PQ Ser NL: 8.12 0 8.22 Hp +76822 PR Ser LB: 9.42 0 9.62 Hp +77045 PS Ser E 8.19 0 8.37 Hp +77227 PT Ser LPB 5.36 0 5.39 Hp +78705 PU Ser SRB 8.35 0 8.65 Hp +78925 PV Ser LB: 9.50 0 9.68 Hp +79106 PW Ser LB: 8.26 0 8.38 Hp +79178 PX Ser LB: 9.33 0 9.47 Hp +79277 PY Ser LB 8.33 0 8.52 Hp +79712 PZ Ser LB: 9.59 0 9.74 Hp +88326 QQ Ser LB: 7.51 0 7.64 Hp +89753 QR Ser EB: 8.25 0 8.41 Hp +89816 QS Ser EA: 7.69 0 8.25 Hp +90761 QT Ser ISA: 7.77 0 7.85 Hp +90990 QU Ser ACV 7.78 0 7.84 Hp +91224 QV Ser ACV 7.83 0 7.88 Hp +77504 QX Ser E/RS 8.66 1 0.08 V +77902 QY Ser SRB 5.42 0 5.50 V +77752 V0373 Ser ACV 7.96 1 0.02 V +74702 V0379 Ser BY 7.05 0 7.08 Hp 5.97 K0 +77210 V0381 Ser RS 9.15 1 0.02 V 13.83 K2V +77408 V0382 Ser BY 7.44 1 0.04 V 14.045 G8V +77963 V0383 Ser RS 8.68 1 0.03 V 33.52 KV +89218 V0411 Ser EA 8.40 0 8.55 V 52437.660 34.536 04 O7.5If+O9I +91113 V0413 Ser EA 7.95 0 8.09 8.09 V 49038.828 2.259775 09 B3V +76276 δ Ser DSCTC 4.23 1 0.04 V 0.134 F0IV +86565 ο Ser DSCTC: 4.26 1 0.01 V 0.053 A2V +76866 χ Ser ACV 5.33 1 0.03 V 34134.06 1.59584 50 A0p(Sr-Cr-Eu) +90441 d Ser I: 5.17 0 5.29 V G0III+A6V +47630 R Sex LB: 9.7 0 10.6 p M5IIIe +51791 S Sex M 8.2 0 13.7 V 45390. 264.9 50 M2e-M5e +48503 T Sex RRC 9.81 0 10.32 V 41384.300 0.3246980 42 A7II-III-F4III +48316 W Sex SR 10.3 0 12.5 B 134.0 C6,3e(Nbe) +49217 Y Sex EW/KW 9.83 0 10.21 10.17 V 41766.288 0.4198228 F8 +50684 RS Sex BCEP: 6.64 0 6.68 V B2.5IV +49989 RT Sex SRB 7.9 0 8.95 V 96. M6 +50581 RW Sex NL+ZZ: 10.39 0 10.84 V pec +51075 RX Sex DSCTC 6.70 1 0.02 V 41303.024 0.0799 A3V +50885 SS Sex ACV 5.94 0 5.98 V 44318.00 4.37 B9p(Si-Sr-Cr) +48063 TV Sex LB: 8.82 0 8.97 Hp +48632 TW Sex LB: 7.91 0 8.03 Hp +48923 TX Sex SRB 7.18 0 7.29 Hp +48913 TY Sex E: 9.19 0 9.38 Hp +49613 TZ Sex SRB 6.66 0 6.87 Hp +50749 UU Sex SRB 8.74 0 9.05 Hp +50827 UV Sex SRB 6.91 0 7.18 Hp +52225 UW Sex LB: 9.17 0 9.33 Hp +49986 AN Sex RS 9.16 0 9.32 V 21.535 M1.5V +52634 BP Sex ACV 7.40 0 7.44 Hp 1.72907 A0p(Si) +51437 β Sex ACV: 5.00 0 5.10 V +20390 T Tau INT 9.3 0 13.5 V F8Ve-K1IV-Ve(T) +18174 X Tau CST 6.60 0 V F8IV +27181 Y Tau SRB 6.50 0 9.2 V 241.5 50 C6.5,4e(N3) +27695 RS Tau CST 9.0 0 V F5 +18972 RW Tau EA/SD 7.98 0 11.59 8.09 V 45684.204 2.7688356 14 B8Ve+K0IV +21600 RX Tau M 9.1 0 14.8 V 41282. 331.8 47 M6e-M7e +20387 RY Tau INT 9.3 0 13.0 p F8Ve-K1IV-Ve(T) +21467 RZ Tau EW/KW 10.08 0 10.71 10.66 V 37676.567 0.4156747 A7V+A7V +27119 ST Tau DCEP 7.79 0 8.62 V 41761.963 4.034299 27 F5-G5 +20587 SW Tau CWB 9.33 0 10.16 V 41687.770 1.583584 36 F4-F8 +21517 SZ Tau DCEPS 6.33 0 6.75 V 34628.57 3.14873 45 F5Ib-F9.5Ib +22578 TT Tau SRB 10.2 0 12.2 p 166.5 C4,2-C7,4(N3) +27135 TU Tau SRB 5.9 0 9.2 V 190. C5,4(N3)+A2III-V +19332 TV Tau SRA 9.3 0 12.2 V 25870. 120. 50 M6 +19296 TX Tau SRA 10.5 0 12.3 V 19384. 40.1 50 M5 +21334 TY Tau EA 11.5 0 12.0 V 21192.395 1.0773555 05 K0V +26754 AB Tau SRA 10.4 0 12.0 p 37340. 142.0 M5-M7 +18165 BL Tau SR: 10.0 0 12.0 p M4-M5 +20160 BP Tau INT(YY) 10.7 0 13.6 B K3Ve-M0Ve(T) +17851 BU Tau GCAS 4.77 0 5.50 V B8Vne +24663 CD Tau EA/D 6.77 0 7.34 7.31 V 41619.4075 3.435137 08 F7V+F5IV +25945 CE Tau SRC 4.23 0 4.54 V 165. M2Iab-Ib +26295 CQ Tau INSA 8.7 0 12.25 B A1-F5IVe +20777 DF Tau INST 9.2 0 15.0 p M0-3Ve(T) +27183 EU Tau DCEPS 7.90 0 8.25 V 41324.22 2.10248 40 G5 +19171 GS Tau ACV 5.15 0 5.22 V 21944.74 7.227424 50 B9p(Si) +21604 HU Tau EA/SD: 5.85 0 6.68 5.91 V 41275.3219 2.0562997 15 B8V +19513 IM Tau DSCT 5.37 0 5.58 V 44250.3492 0.145067 F2IV-V +20097 V0410 Tau INSB 11.3 0 12.4 B K3Ve-K7Ve +17962 V0471 Tau EA/D/RS+X 9.40 0 9.71 V 45612.3806 0.52118301 06 K0Vea+DA +22402 V0473 Tau ACV 7.22 0 7.36 V 38466.729 1.3900 B9p(Si-Cr) +18265 V0479 Tau DSCTC 7.39 0 7.46 V 0.076 F1/3III-IV +22565 V0480 Tau DSCTC 5.09 0 5.13 V 0.042 A7IV/V-A9IIIn +20219 V0483 Tau DSCTC 5.55 0 5.59 V 0.054 F0IV +16859 V0486 Tau ACV 6.65 0 6.78 V 41252.12 10.61 A0p(Cr-Sr-Eu) +27808 V0593 Tau GCAS 8.13 1 0.22 V B3Ve +20261 V0696 Tau DSCTC 5.22 0 5.28 V 0.036 A9/F0IV-V +16846 V0711 Tau RS 5.71 0 5.94 V 40000.58 2.840612 G5IV/Vea+K1IVea +20186 V0724 Tau ACV 5.36 0 5.40 V 42299.51 1.56896 40 A0p(Si) +26566 V0725 Tau XNGP 9.4 0 10.1 p O9.7IIIe +26964 V0731 Tau GCAS 5.98 0 6.27 V B2Ve-B5Vpe +18033 V0766 Tau ACV 6.30 1 0.06 V 43849.27 2.53465 50 B9p(Si) +19762 V0773 Tau INB+BY 10.59 0 10.95 V K2ea +19859 V0774 Tau BY: 6.28 0 6.37 V G0IV-V +20400 V0775 Tau DSCTC 5.72 1 0.01 V 0.0625 A3m +20648 V0776 Tau ACV: 4.29 0 4.32 V 40501.35 57.25 50 A2/3IV/Vm +20713 V0777 Tau DSCTC 4.73 1 0.02 B 0.16 A8Vn/F0V +27562 V0781 Tau EW/KW 8.9 0 9.3 9.3 p 43874.954 0.3449100 G0 +22394 V0808 Tau RS 9.52 1 0.08 V 44272.77 6.82 50 K3V+K3V +27743 V0809 Tau ACV 5.59 1 0.02 V 43859.00 2.6541 50 B9p(Si-Eu-Cr) +18485 V0817 Tau ELL 6.06 1 0.05 V +20019 V0818 Tau E/RS 8.30 1 0.15 V +21482 V0833 Tau BY 9.1 0 9.9 p +21818 V0834 Tau BY 7.94 0 8.33 V +16879 V0837 Tau BY: 8.2 1 0.09 V +19855 V0891 Tau BY 6.92 0 7.00 V +20130 V0893 Tau BY 8.63 1 0.02 V +20553 V0895 Tau BY 7.62 1 0.03 V +20577 V0897 Tau BY 7.80 1 0.04 V +20719 V0906 Tau BY 7.98 0 8.06 V +20741 V0911 Tau BY 8.11 1 0.03 V +20890 V0918 Tau BY 8.6 1 0.04 V +20899 V0920 Tau BY 7.84 1 0.05 V +20951 V0921 Tau BY 8.96 0 8.99 V +21317 V0938 Tau BY 7.94 1 0.03 V +26064 V0960 Tau GCAS 5.53 0 5.69 V +17608 V0971 Tau BCEP 4.18 1 0.01 V +19934 V0984 Tau BY 9.15 1 0.04 V +20082 V0985 Tau BY 9.60 1 0.02 V +20237 V0986 Tau BY 7.47 1 0.05 V +20388 V0987 Tau INT 8.98 0 9.10 V +20482 V0988 Tau BY 9.40 1 0.05 V +20485 V0989 Tau BY 10.49 1 0.03 V +20563 V0990 Tau BY 9.99 1 0.03 V +20815 V0993 Tau BY 7.42 1 0.02 V +21543 V0998 Tau BY 7.54 1 0.03 V +20171 V1024 Tau ACV 5.02 1 0.03 U +22510 V1060 Tau LB: 11.2 0 12.18 B +23151 V1061 Tau EB/KE 7.95 0 8.45 V +21768 V1080 Tau INA 10.29 0 10.56 V +22013 V1081 Tau E 6.9 0 7.3 V +17076 V1082 Tau RS 8.19 1 0.05 V +19877 V1099 Tau ELL: 6.31 1 0.02 V +21459 V1116 Tau DSCTC: 6.02 1 0.01 V +25278 V1119 Tau BY 4.98 0 5.02 V +15857 V1120 Tau LB: 8.88 0 9.00 Hp +15858 V1121 Tau EB: 8.46 0 8.89 Hp +16593 V1122 Tau LB: 7.51 0 7.61 Hp +16737 V1124 Tau SRD: 7.59 0 7.70 Hp +17024 V1125 Tau E 8.77 0 9.03 Hp +17040 V1126 Tau E: 10.47 0 10.60 Hp +17379 V1127 Tau SRB 8.40 0 8.91 Hp +17878 V1128 Tau EW 9.65 0 10.24 Hp +17873 V1129 Tau BY: 7.75 0 7.85 Hp +17988 V1130 Tau EB 6.65 0 7.04 Hp +18474 V1131 Tau DSCTC 8.82 0 8.89 Hp +18581 V1132 Tau LB: 7.18 0 7.29 Hp +18957 V1133 Tau LPB: 5.28 0 5.32 Hp +18996 V1134 Tau LB: 8.63 0 8.73 Hp +19137 V1135 Tau SRB 8.78 0 8.93 Hp +19591 V1136 Tau RS: 9.49 0 9.58 Hp +19672 V1137 Tau ACV: 6.18 0 6.22 Hp +19714 V1138 Tau SRB 8.10 0 8.27 Hp +19853 V1139 Tau LB: 7.36 0 7.71 Hp +20262 V1140 Tau ACV: 7.97 0 8.02 Hp +20493 V1141 Tau LPB 6.00 0 6.02 Hp +20513 V1142 Tau LB: 6.97 0 7.07 Hp +20715 V1143 Tau LPB 6.06 0 6.09 Hp +20963 V1144 Tau LPB 6.80 0 6.82 Hp +20958 V1145 Tau SRC: 6.87 0 7.07 Hp +21082 V1146 Tau LB: 6.33 0 6.36 Hp +21179 V1147 Tau BY: 10.96 0 11.13 Hp +21575 V1148 Tau ELL: 6.98 0 7.00 Hp +21621 V1149 Tau EA 8.49 0 8.65 Hp +21626 V1150 Tau BE 7.59 0 7.68 Hp +21633 V1151 Tau LB: 7.86 0 7.98 Hp +21810 V1152 Tau SRB: 8.69 0 9.18 Hp +23436 V1153 Tau BE 8.21 0 8.56 Hp +23699 V1154 Tau E: 6.71 0 6.81 Hp +23883 V1155 Tau BE 5.82 0 5.96 Hp +24019 V1156 Tau E: 6.00 0 6.10 Hp +24103 V1157 Tau LPB 7.90 0 7.94 Hp +24386 V1158 Tau SRB: 8.89 0 9.35 Hp +24906 V1159 Tau ACV 6.63 0 6.66 Hp +25779 V1160 Tau LB: 7.66 0 7.81 Hp +26282 V1161 Tau LB: 9.50 0 9.78 Hp +26449 V1162 Tau BE: 8.88 0 9.07 Hp +26574 V1163 Tau BE 8.40 0 8.53 Hp +26708 V1164 Tau ELL: 8.30 0 8.51 Hp +26998 V1165 Tau BE: 6.78 0 6.86 Hp +27012 V1166 Tau E: 9.41 0 9.58 Hp +27850 V1167 Tau BE 8.36 0 8.62 Hp +17704 V1229 Tau EA 6.84 0 6.94 6.88 V 52903.5981 2.461134 A0V +20056 V1232 Tau RS 7.53 1 0.05 V 8.968 G4V+G8V +20686 V1233 Tau BY 8.07 1 0.02 V 9.16 G3V+G6V +17826 V1243 Tau GDOR 8.60 1 0.08 B 0.44316 F2V +18263 V1289 Tau RS 10.9 1 0.12 V 2.2386 G5IV +19176 V1300 Tau IB 9.62 0 9.75 V 1.0790 G1 +19786 V1309 Tau BY 8.06 1 0.02 V 8.65 G0 +19793 V1310 Tau BY 8.08 1 0.03 V 8.48 G3V +21852 V1329 Tau IB 9.61 0 9.69 V 0.6000 G2V +23721 V1357 Tau IB 9.93 1 0.06 V 0.5239 G0 +25848 V1368 Tau IB 9.23 0 9.38 Hp 0.9426 G0 +26162 V1371 Tau BE 8.00 0 8.20 V 312. B8e +21421 α Tau LB: 0.75 0 0.95 V K5III +26451 ζ Tau E/GS+GCAS 2.88 0 3.17 3.05 V 44936.781 132.9735 B1IVe+G8III: +18724 λ Tau EA/DM 3.37 0 3.91 3.54 V 21506.8506 3.9529478 15 B3V+A4IV +16083 χ Tau E: 3.70 0 3.79 Hp +21273 Ï Tau DSCTC 4.90 1 0.01 B 0.067 A8Vn +20711 Ï… Tau DSCTC 4.28 0 4.31 V 0.1484 50 A8Vn +100137 X Tel M 10.4 2 14.0 V 52973. 309. M5e-M8e +89739 RS Tel RCB 9.0 0 15.34 V C(R4) +95676 SW Tel M 10.4 0 14.3 V 48719. 228.2 M4e +93844 BL Tel EA+SRD 7.09 0 9.41 0.1 V 45589. 778.3 10 F5Iab/b+M +97756 HO Tel EA 8.22 0 8.73 8.67 V 52202.506 1.613101 12 A7III(m) +100414 IS Tel EA 9.67 0 10.40 9.82 V 52985.526 1.152800 17 F5V +93476 MT Tel RRC 8.68 0 9.28 V 48500.270 0.3169 35 A0w +90099 PV Tel PVTEL 9.24 0 9.40 V B5p(He) +96178 PW Tel ACV 5.61 1 0.01 V 2.9213 A0p(Cr-Eu-Sr) +92680 PZ Tel BY 8.33 0 8.63 V 0.94088 K0Vp +96721 QQ Tel DSCTC 6.53 1 0.05 B 0.065 F2/3IV/III +89605 QV Tel BE 5.31 0 5.38 Hp B3IIIe +90026 QW Tel EW 7.55 0 7.69 7.67 V 52445.656 0.411930 F8/G0 +90108 QX Tel SRD: 8.62 0 8.78 Hp 28.3 K0III +91578 QY Tel EA 9.58 0 10.07 10.06 V 51957.064 2.488926 12 F8 +91832 QZ Tel EB 8.07 0 8.27 8.27 V 52831.746 1.0309913 A2V +93092 V0335 Tel LB: 8.06 0 8.17 Hp M2/M3III +94702 V0336 Tel BY: 11.69 0 12.03 Hp M +95578 V0337 Tel EW 9.90 0 10.21 10.20 V 51963.442 0.423389 F5V +95635 V0338 Tel LB 8.47 0 8.63 Hp M0III +96065 V0339 Tel SRS 6.80 0 7.02 V 24.20 M4III +96875 V0340 Tel BY: 9.65 0 9.84 V 1.71966 K0V +97032 V0341 Tel LB 7.19 0 7.56 Hp M5/M6III +97481 V0342 Tel LB 7.84 0 7.97 Hp M3III +97583 V0343 Tel EB 9.11 0 9.44 9.40 V 51874.858 0.875460 A2/A3V +97935 V0344 Tel SRS 8.6 0 9.0 V 27.4 M6III +98500 V0345 Tel LB 6.62 0 6.72 Hp M4III +98815 V0346 Tel LB 8.96 0 9.55 V M4/M5III +100665 V0347 Tel LB 8.36 0 8.68 Hp M3III +100921 V0348 Tel LB: 8.49 0 8.64 Hp M3III +97590 V0349 Tel GDOR: 7.60 0 7.73 Hp 0.6953 F0V +100090 V0350 Tel ACV 7.55 1 0.03 V 4.45 B9CrEuSr +92412 V0353 Tel ELL:+DSCT 7.13 0 7.20 Hp 3.2 A3III/IV +91928 V0359 Tel EA 8.54 0 8.83 8.66 V 48315.454 19.2449 02 B9V +92754 V0362 Tel EA 9.68 0 9.96 9.96 V 48017.991 1.21125 08 G3V +12193 R Tri M 5.4 0 12.6 V 45215. 266.9 44 M4IIIe-M8e +11423 S Tri M 8.9 2 12.4 V 35850. 241.6 48 M2e +12557 W Tri SRC 8.5 0 9.7 p 108. M5II +9383 X Tri EA/SD 8.55 0 11.27 9.07 V 42502.721 0.9715352 18 A5V+G0V +10280 TZ Tri ELL/RS 5.19 1 0.09 V 43729.8 14.732 G5III+G5III: +9630 XX Tri RS 8.1 0 8.7 V +7289 YZ Tri SRB 6.90 0 7.02 Hp +8665 ZZ Tri LB: 8.75 0 8.85 Hp +9171 AA Tri SRB 6.56 0 6.74 Hp +10077 AB Tri EB: 8.28 0 8.38 Hp +10319 AC Tri LB: 9.15 0 9.33 Hp +10714 AD Tri LB: 6.70 0 6.78 Hp +11272 AE Tri SRB: 6.96 0 7.14 Hp +11421 AF Tri LB 7.30 0 7.67 Hp +11437 AG Tri BY: 10.19 0 10.29 Hp +12465 AH Tri SRD 8.24 0 8.44 Hp +9644 AS Tri DSCTC 8.25 1 0.09 V 0.08 F0 +8796 α Tri ELL 3.52 0 3.53 Hp +75018 R TrA DCEP 6.33 0 7.00 V 40838.21 3.389287 30 F6Ib/II-G0 +78476 S TrA DCEP 5.95 0 6.81 V 40734.45 6.32344 28 F6II-G2 +74192 T TrA CST: 6.84 0 V B9IV +78978 U TrA CEP(B) 7.30 0 8.29 V 43267.14 2.568423 34 F5-F8Ib/II +82392 V TrA LB 10.0 0 10.7 p C5,5(Nb) +74582 X TrA LB 5.02 0 6.4 V C5,5(Nb) +81157 RT TrA CWB 9.43 0 10.18 V 41922.54 1.9461124 40 F8:(R)-G2I-II +83244 RW TrA RRAB 10.89 0 11.66 V 41489.292 0.3740438 20 F5-F6 +73152 EN TrA CEP: 8.7 0 9.1 p 41785.0 36.54 32 F2Ib +79212 EQ TrA EA/D 8.9 0 9.5 9.0 p 41100.006 2.709149 20 F3V +79079 LL TrA ACV 6.88 1 0.02 V 4.41 B9p(Si) +82129 LP TrA ACV 5.12 1 0.03 V 3.76 A0p(Si) +75961 LR TrA DCEPS 7.73 0 7.92 V +75689 LS TrA RS 7.30 0 7.53 V +78689 LT TrA WR 10.2 1 0.13 V +81254 LV TrA RCB: 8.28 0 8.35 V +74077 LW TrA LB: 8.55 0 8.68 Hp +75665 LX TrA SRD: 5.81 0 5.83 Hp +76279 LY TrA LB 7.10 0 7.29 V +76454 LZ TrA LPB 8.05 0 8.08 Hp +78034 MM TrA BE 10.45 0 10.60 Hp +78231 MN TrA EA 8.50 0 9.00 Hp +78491 MO TrA SRB 7.16 0 7.42 Hp +78526 MP TrA E: 7.76 0 7.87 Hp +78682 MQ TrA BE 6.86 0 7.25 Hp +80395 MR TrA ACV 8.71 0 8.82 Hp +80707 MS TrA ACV: 8.86 0 8.96 Hp +80978 MT TrA LB: 8.44 0 8.55 Hp +81554 MU TrA ACV 9.27 0 9.34 Hp +81753 MV TrA SRD 9.01 0 9.20 Hp +81968 MW TrA LB: 8.60 0 8.71 Hp +83150 MX TrA ACV 5.75 0 5.77 Hp +76254 MZ TrA EA 8.57 0 8.76 8.73 V 48127.076 4.73065 A4V +80022 NO TrA EA 8.67 0 8.86 8.85 V 48022.005 5.66215 F6V +81039 NP TrA DSCTC 7.88 1 0.03 V 0.0613 A3III +80645 ι TrA GDOR: 5.30 0 5.42 Hp +111946 T Tuc M 7.50 0 13.8 V 41974. 250.3 46 M3IIe-M6IIe +4541 W Tuc RRAB 10.73 0 11.92 V 36878.431 0.64222988 18 A5-F4: +110451 UU Tuc M 10.4 0 13.6 p 24005. 335. M4e +6115 AM Tuc RRC 11.39 0 11.87 V 41960.387 0.4056575 45 A7:-F3 +1387 AQ Tuc EW 9.91 0 10.48 10.48 V 40477.7743 0.59484267 F3/5(+A) +4200 BQ Tuc LB: 5.70 1 0.20 V M4III +5321 BS Tuc DSCT 7.43 0 7.57 V 0.065 A5III +4693 BT Tuc UV: 10.5 0 11.32 B K0V: +4879 CC Tuc LB 6.19 1 0.10 V M2III +4157 CF Tuc EA/RS 7.44 0 7.80 7.52 V 44160.52 2.79765 10 F8V+K1IV +115908 CG Tuc ACV 5.66 1 0.04 V 2.3148 A0p(Si) +523 CQ Tuc BY: 12.02 0 12.34 Hp +1146 CR Tuc LB 6.64 0 6.82 Hp +1217 CS Tuc LB 8.73 0 8.89 Hp +1993 CT Tuc BY: 11.35 0 11.63 Hp +2933 CU Tuc EA 9.99 0 10.40 Hp +3634 CV Tuc LB: 7.43 0 7.53 Hp +3791 CW Tuc ELL: 9.44 0 9.60 Hp +4406 CX Tuc LB: 9.23 0 9.43 Hp +4513 CY Tuc LB: 8.70 0 8.85 Hp +5038 CZ Tuc SRA 8.81 0 9.25 Hp +5868 DD Tuc SRB 8.54 0 8.74 Hp +6039 DE Tuc SRB 6.86 0 7.03 Hp +109547 DF Tuc LB: 7.62 0 7.75 Hp +109763 DG Tuc LB 7.96 0 8.19 Hp +109770 DH Tuc LB 7.70 0 8.25 Hp +109955 DI Tuc LB 7.08 0 7.21 Hp +110842 DK Tuc E: 6.90 0 6.97 Hp +112830 DL Tuc BY: 11.74 0 12.02 Hp +113330 DM Tuc LB 6.62 0 7.26 Hp +114175 DN Tuc E: 8.57 0 8.71 Hp +114427 DO Tuc BY: 11.26 0 11.61 Hp +114580 DP Tuc LB: 8.80 0 8.96 Hp +114716 DQ Tuc BY: 11.86 0 12.18 Hp +115433 DR Tuc LB 6.08 0 6.20 Hp +116748 DS Tuc RS: 8.27 0 8.39 Hp +117431 DT Tuc LB: 9.09 0 9.24 Hp +117520 DU Tuc SRB 7.19 0 7.58 Hp +117853 DV Tuc ACV 7.03 0 7.06 Hp +117871 DW Tuc LB: 9.04 0 9.15 Hp +118096 DX Tuc EW: 9.63 0 9.90 Hp +113402 EE Tuc GDOR: 6.72 0 6.82 Hp +2731 EN Tuc EB 8.58 0 8.64 8.61 V 52517.605 2.88083 A0V +2629 tet Tuc DSCTC 6.06 0 6.15 V 0.049308 A7IV +5268 ι Tuc SRD: 5.47 0 5.53 Hp +111310 ν Tuc LB: 4.75 0 4.93 V M4III +52546 R UMa M 6.5 0 13.7 V 45593. 301.62 39 M3e-M9e +62126 S UMa M 7.1 0 12.7 V 45778. 225.87 47 S0,9e-S5,9e +61532 T UMa M 6.6 0 13.5 V 45623. 256.60 41 M4IIIe-M7e +50222 U UMa 6.20 0 6.25 V M0III +44846 V UMa SRB 9.5 0 11.5 V 207.65 M5-M6 +47727 W UMa EW/KW 7.75 0 8.48 8.43 V 45765.7385 0.33363749 F8Vp+F8Vp +61839 Y UMa SRB 7.7 0 9.8 V 168. M7II-III: +58225 Z UMa SRB 6.2 0 9.4 V 195.5 M5IIIe +66122 RV UMa RRAB 9.81 0 11.30 V 45075.511 0.468060 20 A6-F5 +56974 RW UMa EA/D/RS 10.16 0 11.72 10.34 V 45823.412 7.328238 08 F9V+K1IV +60180 RY UMa SRB 6.68 0 8.3 V 310. M2-M3IIIe +40060 RZ UMa SRB 9.7 0 11.9 p 115. M5-M6 +55936 ST UMa SRB 6.0 0 7.6 V 110. M4-M5III +65547 SX UMa RRC 10.58 0 11.21 V 45109.333 0.3071178 38 A4-F5 +48682 SY UMa CST 5.27 0 V A3III +55360 SZ UMa UV 10.74 1 0.06 B M1.5V +44601 TT UMa LB 8.9 0 9.5 V M6III +56088 TU UMa RRAB 9.26 0 10.24 V 42831.4947 0.5576587 16 A8-F8 +57362 TV UMa SRB 6.75 0 7.34 V 42. M5III +52599 TX UMa EA/SD 7.06 0 8.80 7.13 V 44998.1475 3.0632382 12 B8V+G0III-IVea +47279 VV UMa EA/SD 10.13 0 10.91 10.26 V 45815.3365 0.687380 19 A2V +53682 VW UMa SR 6.85 0 7.71 V 610. M2 +52577 VY UMa LB 5.87 0 7.0 V C6,3(N0) +52346 WY UMa LB 10.0 0 10.8 p M5 +44998 XY UMa EB/DW/RS 9.50 1 0.67 0.19 V 35216.5011 0.478994587 G2V +47756 YY UMa SRB 10.2 0 11.3 p 25590. 326. M6 +51411 ZZ UMa EA/D 10.1 0 10.7 p 35951.484 2.29926 08 F8 +59411 AB UMa RRAB 10.3 0 11.7 p 36227.640 0.599577 30 F2 +47181 AE UMa SXPHE: 10.86 0 11.52 V 35604.338 0.086017055 16 A9 +56109 AW UMa EW/KW 6.83 0 7.13 7.08 V 44664.7993 0.4387299 F0-F2 +57504 AZ UMa LB 9.6 0 10.3 p M6III +45915 CG UMa LB 5.47 0 5.95 V M4IIIa +54522 CO UMa LB 5.74 0 5.95 V M3.5IIIab +66700 CQ UMa ACV 6.28 0 6.30 V 40747.620 2.449967 A4p(Sr-Cr-Eu) +67231 CR UMa ACV 5.65 0 5.70 V 41444.80 1.37996 B9p(Eu-Cr) +47965 CS UMa LB: 6.78 1 0.16 B M3IIIab +54382 CV UMa LB 9.3 0 10.3 p K5 +55641 CX UMa DSCTC: 6.8 1 0.02 V F0 +45493 DD UMa DSCTC 5.02 1 0.03 B 0.12 A5V +44439 DH UMa LB: 9.2 1 0.24 V C3,5J(R5) +46977 DK UMa RS: 4.56 1 0.05 V 0.9202 G4III-IV +47165 DL UMa DSCTC+E 7.55 1 0.05 V 0.0831 F0 +53425 DM UMa RS 9.57 1 0.32 V 45831.72 7.478 K0-K1III-IVea +58112 DN UMa EA 6.63 0 6.73 6.73 B 43936.4814 1.730418 10 A3Vn +58684 DP UMa DSCTC 5.21 1 0.03 V A7m +56135 EE UMa ELL: 6.35 1 0.16 V +67799 EH UMa LB 6.69 0 6.87 V +50685 EN UMa DSCTC 5.83 0 5.88 V +52602 EO UMa DSCTC 7.07 0 7.15 V +54540 EP UMa ACVO 6.06 1 0.01 V +50933 ET UMa ACV 4.91 1 0.05 B +46247 EZ UMa SRD: 6.23 0 6.28 V +46919 FF UMa RS 8.35 1 0.12 V +50752 FG UMa RS 7.45 1 0.11 V +54765 FI UMa DSCTC 6.65 1 0.03 V +55135 FK UMa RS 9.29 1 0.04 V +40902 FL UMa LB: 7.05 0 7.14 Hp +41581 FM UMa ACV: 9.10 0 9.17 Hp +42068 FN UMa LB 8.29 0 8.70 Hp +42239 FO UMa LB 7.11 0 7.22 Hp +43207 FP UMa LB: 9.23 0 9.36 Hp +43205 FQ UMa LB: 8.24 0 8.30 Hp +43469 FR UMa LB: 8.80 0 8.96 Hp +43515 FS UMa LB: 9.16 0 9.36 Hp +43738 FT UMa RRC: 9.29 0 9.42 Hp +44021 FU UMa LB: 8.97 0 9.07 Hp +44397 FV UMa SRB 8.65 0 8.81 Hp +44457 FW UMa LB: 9.34 0 9.66 Hp +44683 FX UMa EA: 7.14 0 7.18 Hp +44666 FY UMa SRB: 9.04 0 9.80 Hp +44925 FZ UMa LB 7.41 0 7.62 Hp +45693 GG UMa DSCTC: 8.66 0 8.72 Hp +45935 GH UMa SRB 8.32 0 8.58 Hp +46344 GI UMa SRB 7.86 0 8.12 Hp +47364 GK UMa SRB: 7.36 0 7.42 Hp +48422 GL UMa BY: 12.31 0 12.95 Hp +50097 GM UMa EB 6.66 0 6.81 Hp +50169 GN UMa LB 9.01 0 9.23 Hp +50167 GO UMa LB 7.42 0 7.68 Hp +50389 GP UMa LB: 6.60 0 6.65 Hp +50979 GQ UMa LB 10.07 0 10.35 Hp +51110 GR UMa LB 9.36 0 9.94 Hp +51361 GS UMa DSCTC: 8.76 0 8.81 Hp +51876 GT UMa EB 8.14 0 8.43 Hp +52215 GU UMa LB: 9.61 0 9.77 Hp +52265 GV UMa LB: 9.30 0 9.44 Hp +52508 GW UMa DSCT: 9.48 0 9.97 Hp +52663 GX UMa SRD 9.08 0 9.33 Hp +52794 GY UMa SRB 6.89 0 7.03 Hp +52892 GZ UMa E: 10.56 0 10.78 Hp +54165 HH UMa DSCT: 10.58 0 10.79 Hp +54243 HI UMa LB: 9.50 0 9.64 Hp +54251 HK UMa LB: 7.62 0 7.72 Hp +54396 HL UMa SRB 7.98 0 8.17 Hp +54518 HM UMa LB 6.86 0 6.98 Hp +55030 HN UMa EW: 9.90 0 10.02 Hp +55471 HO UMa LB 8.42 0 8.56 Hp +56012 HP UMa LB 9.06 0 9.27 Hp +56158 HQ UMa DSCTC 7.16 0 7.21 Hp +56330 HR UMa EA 8.70 0 9.02 Hp +56533 HS UMa LB 8.30 0 8.95 Hp +57582 HT UMa LB: 8.27 0 8.39 Hp +57731 HU UMa BY: 11.19 0 11.48 Hp +58157 HV UMa RRC 8.60 0 8.89 Hp +58295 HW UMa LB: 8.87 0 9.01 Hp +58648 HX UMa EB 8.89 0 9.06 Hp +58795 HY UMa LB: 7.32 0 7.43 Hp +58927 HZ UMa LB: 8.28 0 8.40 Hp +61237 II UMa EW: 8.17 0 8.48 Hp +61686 IK UMa LB: 9.66 0 9.96 Hp +62581 IL UMa SRB 9.44 0 9.79 Hp +62738 IM UMa LB 7.61 0 7.75 Hp +62936 IN UMa LB: 8.77 0 8.91 Hp +64636 IO UMa EA 8.19 0 8.79 Hp +66609 IP UMa DSCTC: 7.72 0 7.77 Hp +66738 IQ UMa SRB 4.69 0 4.75 Hp +67511 IR UMa LB 7.48 0 7.70 Hp +68284 IS UMa SRB: 9.90 0 10.07 Hp +68744 IT UMa LB: 8.69 0 8.85 Hp +69502 IU UMa LB: 8.29 0 8.40 Hp +69627 IV UMa ELL: 9.00 0 9.06 Hp +48129 IX UMa DSCTC 7.79 1 0.01 V +40462 KO UMa GDOR 7.18 1 0.04 V +43185 KP UMa ELL 7.87 1 0.04 V +57498 KW UMa DSCTC 6.83 1 0.03 B +46748 KZ UMa DSCTC 8.15 1 0.02 V +47924 LM UMa SRS 8.21 1 0.06 V +55563 LR UMa DSCTC: 7.74 1 0.07 B +41488 LS UMa GDOR 8.12 1 0.20 V 1.14 F0 +42919 LT UMa BY 8.91 1 0.03 V K0V +46099 LU UMa GDOR 8.44 0 8.65 Hp 1.1156 F0V +50180 LX UMa BY 8.02 1 0.05 V 4.935 G5V +53008 LZ UMa BY 8.31 1 0.02 V 8.47 G5V +54745 MN UMa BY 6.53 0 6.56 Hp 8.25 G0V +56829 MV UMa RS 8.22 1 0.02 V 10.84 K5V +57558 MX UMa DSCTC 8.78 1 0.08 B 0.116 F3III/IV +57859 MY UMa BY 8.97 1 0.03 V 11.43 K0V +59432 MZ UMa BY 7.96 1 0.02 V 7.44 K0V+K1V +60693 NN UMa BY: 7.53 1 0.03 V 7.4 K2 +61100 NO UMa RS: 8.08 1 0.03 V 8.81 K2V +61946 NP UMa BY 8.27 1 0.03 V 11.75 K3V +65515 NQ UMa BY 7.29 1 0.04 V 4.27 G9V +53209 NU UMa EA 9.27 0 9.50 9.50 V 48058.296 5.50762 03 G5IV +56275 NY UMa GDOR 7.95 0 8.02 V 0.7564 F1V+G0:V +59203 NZ UMa GDOR 7.72 0 7.82 V 0.7572 F0III +40772 OS UMa EA/RS 5.73 0 5.79 V 48022.9 89.06 10 G8III+F0: +46642 QR UMa EA 7.35 0 7.45 V 48147.080 1.7854 09 A5 +58557 V0350 UMa BY 10.8 1 0.05 R 1.336 K7V +63096 V0352 UMa ELL: 6.78 0 6.82 Hp 1.41353 A0 +62956 ε UMa ACV 1.76 1 0.02 V 26437.01 5.0887 A0p(Cr-Eu) +55203 χ UMa RS 4.38 1 0.01 V +48319 Ï… UMa DSCT 3.68 0 3.86 V 41353.540 0.1327 64 F2IV +80802 R UMi SRB 8.5 0 11.5 V 325.7 50 M7IIIe +75847 S UMi M 7.5 2 13.2 V 45931. 331.0 50 M6e-M9e +69816 U UMi M 7.1 0 13.0 V 45418. 330.92 50 M6e-M8e +66562 V UMi SRB 7.2 0 9.1 V 72.0 45 M5IIIab: +79069 W UMi EA/SD 8.51 0 9.59 8.66 V 33682.323 1.7011576 23 A3 +73199 RR UMi SRB 4.53 0 4.73 V 43.3 M5III +77623 RS UMi EA/D/RS 10.81 0 11.4 B 44756.734 6.16862258 12 F8 +68477 SV UMi LB: 9.30 0 9.50 Hp +68798 SW UMi LB: 8.71 0 8.82 Hp +70245 SX UMi LB: 8.07 0 8.24 Hp +71376 SY UMi LB: 8.63 0 8.77 Hp +72625 SZ UMi BY: 11.41 0 12.02 Hp +72992 TT UMi SRB 6.90 0 7.04 Hp +73047 TU UMi DSCTC 8.84 0 8.90 Hp +73474 TV UMi EB 8.77 0 8.85 Hp +74451 TW UMi LB 7.93 0 8.09 Hp +74034 TX UMi BY: 10.82 0 11.26 Hp +74866 TY UMi EA 7.79 0 8.24 Hp +75886 TZ UMi LB 8.40 0 8.60 Hp +76832 UU UMi BY: 12.04 0 12.40 Hp +79253 UV UMi LB: 9.47 0 9.84 Hp +80503 UW UMi SRB 8.81 0 9.09 Hp +82720 UX UMi LB: 9.70 0 9.87 Hp +59767 UY UMi GDOR: 6.30 0 6.38 Hp +63245 VV UMi EA 9.78 0 10.03 9.99 V 48557.320 7.1520 04 A3 +83317 VX UMi GDOR 6.48 1 0.06 B 0.34511 A9V +11767 α UMi DCEPS 1.86 0 2.13 V 31495.813 3.9696 50 F7Ib-F8Ib +75097 γ UMi DSCTC 3.04 1 0.05 V 39950.367 0.143009 A3II-III +82080 ε UMi EA/D/RS 4.19 0 4.23 4.21 V 33077.75 39.4809 04 G5III +84535 λ UMi SRB 6.35 0 6.45 Hp +49477 R Vel CST: 6.49 0 6.52 V K1III +46881 S Vel EA/SD 7.74 0 9.50 7.83 V 27612.3560 5.9336475 10 A5Ve+K5IIIe +42321 T Vel DCEP 7.68 0 8.34 V 40713.28 4.63974 30 F6-G0II +45949 V Vel DCEP 7.19 0 7.95 V 40736.25 4.370991 30 F6-F9II +50230 W Vel M 8.3 0 14.0 V 40699. 394.72 44 M5-M8IIIe +48662 X Vel SR 10.3 0 11.53 B 140. C4-5,4-5(Nb) +46502 Y Vel M 8.0 0 14.2 V 40437. 449.9 40 M8e-M9.5 +50655 RY Vel DCEP 7.86 0 8.89 V 44017.94 28.1357 22 F5-G3Ib/II +42257 RZ Vel DCEP 6.42 0 7.64 V 34845.57 20.398240 30 G1Ib-G8 +42929 ST Vel DCEP 9.39 0 10.08 V 40896.70 5.8584249 30 K +52570 SV Vel DCEP 7.91 0 9.12 V 36195.125 14.09707 34 F6-G5II +42831 SW Vel DCEP 7.44 0 8.96 V 40738.24 23.4410 15 F8/G0Ib +42926 SX Vel DCEP 7.92 0 8.72 V 21015.98 9.54993 49 F8II +52988 WW Vel M 10.8 0 14. p 23173. 187.4 M5e +52887 WX Vel M 11.2 0 14.2 p 28910. 411.5 M5e-M7IIIe +50407 WZ Vel SRB 9.0 0 10.0 p 130. M3-M5/6II/III +51894 XX Vel DCEP 10.25 0 11.22 V 34909.742 6.98457 26 +47177 AE Vel DCEP 9.88 0 10.73 V 40772.20 7.13357 33 +53213 AF Vel RRAB 10.68 0 11.78 V 41432.267 0.5273984 15 F1-F4 +40155 AH Vel DCEPS 5.50 0 5.89 V 42035.675 4.227171 50 F7Ib-II +40330 AI Vel DSCT 6.15 0 6.76 V 0.11157411 A2p-F2pIV/V +41784 AL Vel EA/GS/D 8.60 0 8.93 V 42510.04 96.107 09 K0III+A3III/V +42492 AP Vel CEP(B) 9.49 0 10.48 V 34900.805 3.12776 33 F9 +44847 BG Vel DCEP 7.43 0 7.91 V 34918.94 6.923655 32 F7/8II +47796 CD Vel RRAB 11.3 0 12.4 p 28721.235 0.5734894 14 F +53853 CI Vel M 11.0 0 13.5 p 28230. 142.5 M0e +49611 CM Vel SRC 8.7 0 11.0 p 28780. 780. M0-M5(II) +44245 CV Vel EA/DM 6.69 0 7.19 7.17 V 42048.6689 6.889494 07 B2.5V+B2.5V +45570 DK Vel DCEP 10.34 0 10.88 V 41354.250 2.48164 40 F8II +46610 DP Vel DCEP 11.51 0 12.20 V 35250.94 5.48438 24 +46746 DR Vel DCEP 9.12 0 9.97 V 34930.70 11.1993 42 +48122 FN Vel CEP 10.9 0 12.1 p 33240.35 5.32422 +48499 FP Vel LB 12.0 0 13.38 B C +41882 FY Vel EB:/GS 6.84 0 7.06 7.03 V 40210.586 33.72 B2Ibpe +44093 FZ Vel DSCTC 5.14 0 5.17 V 0.065 A6/7(m)-F0m +46188 GI Vel SRB 7.88 0 8.05 V 120. M3III +46194 GK Vel SRB 6.26 0 6.39 V 120. M3III-M5III +42315 GO Vel SRB 6.61 0 6.98 V 75. M4III-M5III +44368 GP Vel E+ACYG+XP 6.76 0 6.99 6.90 V 44275.20 8.9647 B0.5Iaeq +41483 GU Vel DSCTC 5.08 0 5.11 V 0.07 A9/F0III/IV +45085 GX Vel ACYG: 4.97 0 5.04 V B5Ia +50332 GY Vel LB 6.23 0 6.5 V M4/5III +50555 GZ Vel LC 3.43 0 3.81 R K3II +42177 HV Vel ACVO: 5.77 0 5.81 V 2.66745 B9p(Si) +42459 HW Vel BCEP 5.46 0 5.52 V 42745.000 0.26145 B6V +42712 HX Vel ELL: 5.48 0 5.53 5.50 V 42758.253 1.12488 B1.5Vn +42726 HY Vel ELL: 4.83 0 4.90 4.90 V 44627.727 3.106 B3IV +43354 HZ Vel DSCTC 6.39 1 0.02 V 0.087 A5III +47145 IM Vel ACVO 6.50 1 0.04 B 43181.00 2.85204 A8p(Sr-Eu-Cr) +47206 IN Vel RS: 8.84 0 9.13 V K2IIIp +47272 IO Vel ACV 6.9 1 0.03 V 43185.702 1.08184 65 A0p(Si-Sr) +47694 IP Vel E 6.03 1 0.19 B 42861.6697 B6V +39970 IS Vel BCEP 5.23 0 V 0.108 B1IVn +40662 IT Vel ELL: 7.03 0 7.08 7.08 V 42524.231 2.088 B7III +44213 IU Vel GCAS 5.97 0 6.08 V B2.5Vne +48799 IV Vel BCEP 5.99 1 0.01 B 43215.675 0.1608 B3IV +53530 IW Vel DSCTC 5.90 1 0.01 V 0.150 A4V +40430 IX Vel NL 9.1 0 10.0 p +43807 IY Vel * 6.23 0 6.27 V +44299 IZ Vel * 5.53 0 5.56 V +44790 KK Vel BCEP 6.75 0 6.80 V +45189 KL Vel ACV 5.56 0 5.57 V +48054 KN Vel E 7.1 1 0.09 V +53379 KQ Vel ACV 6.10 0 6.12 V +42715 KT Vel ACV 5.49 0 5.56 V +39873 KW Vel ACV 7.84 0 7.98 U +43413 KX Vel E 4.87 1 0.08 B +54060 LL Vel ELL: 6.71 0 6.76 V +42587 LM Vel ACYG 7.54 0 7.57 V +42679 LN Vel ACYG 5.19 0 5.25 V +45675 LR Vel ACYG 5.82 0 5.96 V +48904 LU Vel UV 11.5 0 13.76 U +50070 LW Vel DSCTC 5.24 0 5.29 V +51444 LX Vel EB/GS 6.60 0 6.66 b +45823 LY Vel LPB 7.75 1 0.02 V +48598 LZ Vel RS: 7.27 0 7.39 V +45091 MP Vel DSCTC 7.8 1 0.02 V +47131 MS Vel SRA 8.13 0 8.98 T +47889 MT Vel DSCTC 8.1 1 0.09 B +39584 MX Vel BE: 6.09 0 6.16 Hp +39687 MY Vel LPB 8.64 0 8.69 Hp +39759 MZ Vel LB: 7.74 0 7.84 Hp +39919 NN Vel ACYG: 5.62 0 5.65 Hp +40285 NO Vel EB 5.08 0 5.12 Hp +40504 NP Vel LB: 8.80 0 8.90 Hp +41113 NQ Vel IA: 7.63 0 7.77 Hp +41501 NR Vel GCAS: 7.56 0 7.75 Hp +41774 NS Vel GCAS: 7.23 0 7.37 Hp +42061 NT Vel EA 8.33 0 9.01 Hp +42161 NU Vel LB 7.32 0 7.50 Hp +42227 NV Vel IB: 9.47 0 9.72 Hp +42399 NW Vel SRD 7.92 0 8.05 Hp +42433 NX Vel E 7.25 0 7.38 Hp +42540 NY Vel ACV 5.15 0 5.19 Hp +42504 NZ Vel ELL: 5.11 0 5.14 Hp +42519 OO Vel ACV 7.41 0 7.44 Hp +43082 OP Vel ACYG: 5.50 0 5.55 Hp +43071 OQ Vel RRC: 7.73 0 7.77 Hp +43229 OR Vel BE 8.98 0 9.14 Hp +43443 OS Vel ACYG: 7.68 0 7.75 Hp +43493 OT Vel SRB 7.61 0 7.72 Hp +43792 OU Vel BE 8.04 0 8.12 Hp +43812 OV Vel EB: 8.19 0 8.32 Hp +43936 OW Vel SRD: 7.73 0 7.91 Hp +44166 OX Vel ACV: 7.60 0 7.71 Hp +44337 OY Vel ACV 5.19 0 5.22 Hp +44433 OZ Vel LB: 7.69 0 7.79 Hp +44482 PP Vel LB: 8.32 0 8.43 Hp +44612 PQ Vel EA 7.66 0 7.83 Hp +44655 PR Vel LPB 8.22 0 8.26 Hp +44996 PS Vel LPB 6.78 0 6.81 Hp +45079 PT Vel EA 7.05 0 7.60 Hp +45392 PU Vel EB 8.52 0 8.65 Hp +45467 PV Vel ACYG: 7.51 0 7.66 Hp +45509 PW Vel LB: 8.37 0 8.55 Hp +45548 PX Vel ACV 7.53 0 7.56 Hp +45633 PY Vel SRD: 9.32 0 9.46 Hp +45692 PZ Vel LPB 8.43 0 8.47 Hp +45833 QQ Vel BE 9.74 0 9.87 Hp +45934 QR Vel BE 10.13 0 10.30 Hp +46295 QS Vel ACV 8.28 0 8.33 Hp +46340 QT Vel EA 8.02 0 8.23 Hp +46959 QU Vel LB: 8.17 0 8.28 Hp +47074 QV Vel ACV 8.66 0 8.73 Hp +48120 QW Vel LB 7.41 0 7.61 Hp +48155 QX Vel EB 7.98 0 8.21 Hp +48185 QY Vel EA 8.25 0 8.46 Hp +48469 QZ Vel LPB 6.42 0 6.47 Hp +48527 V0335 Vel LPB 5.88 0 5.91 Hp +49393 V0336 Vel DSCTC 6.93 0 6.96 Hp +49743 V0337 Vel GCAS 7.83 0 8.10 Hp +49940 V0338 Vel ACV 7.86 0 7.92 Hp +50276 V0339 Vel LB 8.23 0 8.47 Hp +50463 V0340 Vel E: 7.89 0 7.99 Hp +50550 V0341 Vel EA 7.90 0 8.30 Hp +50598 V0342 Vel ACYG: 7.21 0 7.27 Hp +50702 V0343 Vel EA 8.31 0 8.95 Hp +50775 V0344 Vel DSCTC 7.96 0 8.00 Hp +50780 V0345 Vel EA 7.49 0 7.95 Hp +50970 V0346 Vel LB 6.50 0 6.84 Hp +51049 V0347 Vel LB 7.03 0 7.13 Hp +51087 V0348 Vel SRC 6.81 0 7.07 Hp +51355 V0349 Vel ACV: 9.64 0 9.78 Hp +51412 V0350 Vel ACV 7.45 0 7.53 Hp +51595 V0351 Vel E: 12.19 0 12.79 Hp +52095 V0352 Vel LB: 7.95 0 8.06 Hp +52624 V0353 Vel DSCTC: 7.68 0 7.72 Hp +52622 V0354 Vel LB 6.55 0 6.71 Hp +52748 V0355 Vel LB: 8.90 0 9.08 Hp +52816 V0356 Vel EB 6.73 0 6.87 Hp +53676 V0357 Vel LB: 8.35 0 8.50 Hp +53782 V0358 Vel LB 7.34 0 7.46 Hp +53806 V0359 Vel EA 7.58 0 7.84 Hp +53938 V0360 Vel ACV 7.70 0 7.80 Hp +53940 V0361 Vel LB 6.20 0 7.55 Hp +54112 V0362 Vel EW 9.09 0 9.36 Hp +42349 V0363 Vel LPB 8.84 0 8.93 Hp +50596 V0398 Vel ELL: 7.92 1 0.03 V 1.455 A1IV/V +50996 V0399 Vel BCEP: 8.24 1 0.02 V 0.65664 B9IV/V +44550 V0405 Vel EA 8.89 0 9.06 9.05 V 48311.779 10.31168 02 G3V +52362 V0432 Vel EA 9.04 0 9.22 9.22 V 48970.460 1.46857 08 F2V +53357 V0440 Vel EA 9.47 0 9.63 9.60 V 48603.597 2.354858 09 A7III +42036 V0451 Vel EB 7.46 0 7.50 7.49 V 52224.81 7.8553 B2V +42913 δ Vel EA 1.96 1 0.4 V +44816 λ Vel LC 2.14 0 2.30 V K4Ib-IIa +42536 ο Vel * 3.55 0 3.67 V 44651.6922 2.779 50 B3III-IV +46701 N Vel CST: 3.12 0 3.15 V K5III +61667 R Vir M 6.1 0 12.1 V 45872. 145.63 50 M3.5IIIe-M8.5e +66100 S Vir M 6.3 0 13.2 V 45046. 375.10 45 M6IIIe-M9.5e +62712 U Vir M 7.4 0 13.5 V 44736. 206.64 47 M2e-M8e: +65531 W Vir CWA 9.46 0 10.75 V 32697.783 17.2736 38 F0Ib-G0Ib +70669 RS Vir M 7.0 0 14.6 V 45753. 353.95 37 M6IIIe-M8e +63642 RT Vir SRB 7.41 0 8.70 V 155. M8III +62401 RU Vir M 9.0 0 14.2 V 37773. 433.2 49 C8,1e(R3ep) +59108 RW Vir LB 6.72 0 7.38 V M5III +120212 SS Vir SRA 6.0 0 9.6 V 45361. 364.14 48 C6,3e(Ne) +70702 ST Vir RRAB 10.84 0 12.08 V 40736.374 0.4108280 12 A6-A8 +64569 SW Vir SRB 6.40 0 7.90 V 150. M7III +57850 TY Vir SRD 7.97 0 8.5 V 50. G3pIb +59208 UU Vir RRAB 9.89 0 11.07 V 41797.461 0.47560652 17 A9-F5 +64672 UW Vir EA/SD 8.98 0 12.3 V 44345.413 1.8107755 14 A2 +63592 UY Vir EA/DM 8.00 0 8.8 8.1 V 30020.667 1.9945051 16 A7V +70751 AF Vir RRAB 10.94 0 12.01 V 40333.771 0.48376 30 A2 +58605 AG Vir EW/KE 8.35 1 0.58 0.44 V 45432.4146 0.64265075 A7-A9V +59683 AH Vir EW/KW 8.89 1 0.60 0.53 V 45814.385 0.407521 K0V+K0V +69306 AL Vir CWA 9.10 0 9.92 V 44396.69 10.30256 41 F0-F8 +65344 AM Vir RRAB 11.07 0 11.80 V 26859.275 0.61508784 21 A6 +63054 AT Vir RRAB 10.63 0 11.82 V 39678.262 0.5257931 12 A7 +65445 AU Vir RRC 11.36 0 11.90 V 41795.317 0.3432307 35 A5-F6: +65063 AV Vir RRAB 11.42 0 12.16 V 41470.283 0.6569090 17 A9-F6 +65660 AX Vir EB/KE 10.0 0 10.81 10.24 V 27570.444 0.7025262 A0p +67653 BB Vir RRAB 10.70 0 11.42 V 39613.776 0.4710965 13 A2 +65575 BD Vir EA/SD 9.9 0 11.2 V 42538.413 2.548537 18 A5 +67313 BF Vir EB/KE: 10.5 0 11.23 10.72 V 46070.684 0.640570 A2 +68258 BH Vir EA/DW/RS: 9.60 0 10.56 10.24 V 43230.609 0.81687161 16 G0V+G2V +61022 BK Vir SRB 7.28 0 8.8 V 150. M7III +63501 BZ Vir M 9.5 2 13. p 29701. 150.92 M5e +67439 CE Vir RV: 8.37 0 10.71 V 67. G-K +61473 CK Vir SRD 10.19 0 11.04 V 93. G +63344 CN Vir SRB 8.17 0 9.0 V 60. M3 +68137 CP Vir SRB 8.38 0 8.91 V 70. M7 +69929 CS Vir ACV 5.84 0 5.95 V 40382.25 9.2954 50 A0p(Cr-Eu) +69389 CU Vir ACV 4.92 0 5.07 V 41455.685 0.5206794 50 A0Vp(Si) +66200 CW Vir ACV 4.91 0 4.99 V 34816.9 3.7220 A1p(Sr-Cr-Eu) +64769 DK Vir DSCTC 6.67 0 6.72 V 41777.804 0.119153 40 F0IV +67744 DL Vir EA 7.0 0 7.5 V 38796.525 1.31548 14 G8III+A3 +69029 DM Vir EA/D 8.75 0 9.50 9.49 V 43583.8810 4.6694335 06 F6IV+F6IV +69325 DN Vir SRB 9.1 0 9.6 p MB +63510 DT Vir UV+BY 10.34 0 11.32 B M2Ve +62376 EP Vir ACV 6.29 0 6.39 V 40640.20 16.304 A0p(Sr-Eu-Cr) +66252 EQ Vir UV+BY 11.80 0 14.1 U K5Ve +68937 ER Vir SRB 6.45 0 6.63 V 40752. 55. M4III +69269 ET Vir SRB 4.80 0 5.00 V 40697. 80. M2IIIa +69449 EV Vir SRB 6.74 0 7.09 V 40726. 120. M4II-III +69981 EY Vir SRB 8.2 0 8.6 V M5 +70134 EZ Vir SRB 7.77 0 7.97 V 40710. 39. M1 +70553 FF Vir ACV 7.07 0 7.13 V 130.0 A2p(Cr-Sr) +59676 FG Vir DSCTC 6.53 0 6.58 V 0.079 Am +64768 FH Vir SRB 6.92 0 7.45 V 40740. 70. M6III +60500 FK Vir SRB 7.50 0 7.78 V 40. M4III +62267 FM Vir DSCTC 5.20 0 5.28 V 0.07188 F0IVm+A7V +65839 FO Vir EB/KE 6.50 0 6.82 6.67 V 45441.7110 0.775567 A7V +66345 FP Vir SRB 6.72 0 7.35 V 40. M4III +69126 FR Vir LB: 7.02 0 7.19 V M3III +69614 FS Vir LB: 6.37 0 6.52 V M4IIIab +60813 FT Vir DSCTC 6.20 0 6.24 V 0.05 F2III +61658 FW Vir SRB: 5.63 0 5.75 V 42250. 15. 50 M3IIIab +60924 FZ Vir SRB 6.81 0 6.98 V 25. M4III +61937 GG Vir DSCT 6.19 0 6.33 V A7V +66339 GP Vir GCAS 8.03 0 8.10 V B5e +72138 GR Vir EW/KW 7.8 1 0.45 0.41 V 45116.381 0.419757 G0 +64498 GZ Vir DSCTC 8.0 1 0.03 V +67186 HT Vir EW/KW 7.06 0 7.48 V +59600 HU Vir RS: 8.1 1 0.27 V +62157 HW Vir EA/D 10.5 1 0.90 V +66015 HX Vir DSCTC 6.01 1 0.02 V +64120 HY Vir EA 7.81 0 8.10 V +59346 II Vir DSCTC: 6.49 0 6.55 V +65411 IN Vir RS 9.24 1 0.15 V +58002 IQ Vir DSCTC 6.30 1 0.02 V +63958 IS Vir RS 8.27 1 0.05 V +68023 IT Vir ELL 7.82 0 7.86 V +56724 IW Vir LB 8.79 0 9.52 Hp +57264 IX Vir LB: 8.22 0 8.48 Hp +58372 IY Vir LB: 9.43 0 9.59 Hp +58866 IZ Vir SRB 7.14 0 7.24 Hp +59289 KK Vir LB: 9.23 0 9.34 Hp +59549 KL Vir SRB 8.27 0 8.42 Hp +60126 KM Vir LB 8.15 0 8.30 Hp +60298 KN Vir LB: 7.41 0 7.51 Hp +60333 KO Vir LB 7.46 0 7.62 Hp +60812 KP Vir EA 8.42 0 8.79 Hp +60938 KQ Vir LB: 8.84 0 8.95 Hp +61899 KR Vir SRD: 9.39 0 9.65 Hp +61903 KS Vir LB 7.62 0 7.82 Hp +62070 KT Vir SRB 7.42 0 7.56 Hp +62168 KU Vir LB 7.86 0 8.06 Hp +63313 KV Vir LB: 7.82 0 7.92 Hp +63560 KW Vir SRB 7.45 0 7.58 Hp +63752 KX Vir SRB 7.30 0 7.42 Hp +64210 KY Vir SRB: 8.02 0 8.35 Hp +64433 KZ Vir EB: 8.45 0 8.52 Hp +64460 LL Vir SRB: 6.91 0 7.08 Hp +64607 LN Vir E: 5.75 0 5.80 Hp +64645 LO Vir SRB 7.16 0 7.30 Hp +64834 LP Vir ELL: 6.92 0 7.08 Hp +64935 LQ Vir LB 8.16 0 8.30 Hp +64959 LR Vir SRD 8.44 0 8.70 Hp +65122 LS Vir SRB: 8.30 0 8.54 Hp +65225 LT Vir SRB: 7.49 0 7.67 Hp +65590 LU Vir EB: 7.88 0 8.16 Hp +66078 LV Vir EW: 8.50 0 8.68 Hp +66266 LW Vir LB: 9.14 0 9.29 Hp +66324 LX Vir LB 8.41 0 8.75 Hp +66407 LY Vir LB: 8.45 0 8.81 Hp +66875 LZ Vir LB 7.99 0 8.17 Hp +67254 MM Vir SRB: 8.89 0 9.05 Hp +67471 MN Vir LB: 9.02 0 9.13 Hp +67709 MO Vir SRD 9.03 0 9.26 Hp +68221 MP Vir LB: 8.72 0 8.82 Hp +68383 MQ Vir LB 8.80 0 8.99 Hp +68718 MR Vir EB 8.57 0 8.69 Hp +68881 MS Vir EW: 9.40 0 9.67 Hp +69348 MT Vir LB: 9.02 0 9.16 Hp +69403 MU Vir E: 7.24 0 7.28 Hp +69562 MV Vir BY: 10.38 0 12.06 Hp +69828 MW Vir EW: 7.00 0 7.04 Hp +69848 MX Vir DSCTC: 7.41 0 7.46 Hp +69966 MY Vir LB: 8.19 0 8.52 Hp +69987 MZ Vir LB 7.29 0 7.66 Hp +70020 NN Vir RRC: 7.60 0 8.02 Hp +70188 NO Vir LB 8.03 0 8.34 Hp +70450 NP Vir SRB: 8.79 0 9.00 Hp +70772 NQ Vir LB 7.36 0 7.57 Hp +70816 NR Vir SRD 6.93 0 7.09 Hp +71052 NS Vir EB 8.79 0 9.13 Hp +71374 NT Vir LB: 8.47 0 8.61 Hp +71455 NU Vir SRD 8.47 0 8.73 Hp +71868 NV Vir SRB: 8.54 0 8.98 Hp +72268 NW Vir LB: 7.22 0 7.32 Hp +71820 OV Vir DSCTC: 7.83 1 0.03 V +58981 OX Vir SRS: 6.64 0 6.75 V +63487 OY Vir SRS 7.51 1 0.06 V +68790 PP Vir ACVO 8.67 1 0.01 B +57658 PQ Vir BY: 9.12 1 0.03 V K0V +58237 PR Vir BY 9.50 1 0.05 V 17.16 K3V +63742 PX Vir BY 7.69 1 0.04 V 6.47 G5V +67705 QT Vir DSCTC 8.50 1 0.02 V 0.0562 A3 +72312 QY Vir BY 7.76 1 0.02 V 21.79 G8V +70566 V0349 Vir EA 8.29 0 8.34 8.30 V 48612.396 2.12408 06 F3V +64473 V0457 Vir RS 8.42 0 8.54 V 9.870 G5 +65474 α Vir ELL+BCEP 0.95 1 0.10 0.08 V 19530.49 4.014604 B1III-IV+B2V +57380 ν Vir SRB 4.10 0 4.16 Hp +61960 Ï Vir DSCTC 4.88 1 0.02 V +62985 ψ Vir LB 4.73 0 4.96 V M3III +56779 ω Vir LB 5.23 0 5.50 V M4III +36423 S Vol M 7.7 0 13.9 V 41940. 394.8 54 M4e +37120 W Vol EA/AR: 10.9 0 11.8 p 16846.411 2.758361 17 K/M +31539 UZ Vol E: 9.41 0 9.90 Hp +32507 VV Vol SRB 8.42 0 8.62 Hp +32953 VW Vol LB: 8.67 0 8.78 Hp +33107 VX Vol E: 8.03 0 8.28 Hp +33115 VY Vol LB: 8.81 0 8.92 Hp +34126 VZ Vol LB: 8.21 0 8.34 Hp +35464 WW Vol LB 7.92 0 8.21 V +37695 WX Vol LB 7.51 0 7.67 Hp +39791 WY Vol ACV 7.97 0 8.02 Hp +42841 WZ Vol EA 8.40 0 8.66 Hp +38176 AK Vol RS 8.54 0 8.65 V 31.808 G8III +104015 R Vul M 7.0 0 14.3 V 45586. 136.73 49 M3e-M7e +102949 T Vul DCEP 5.41 0 6.09 V 41705.121 4.435462 32 F5Ib-G0Ib +96458 U Vul DCEP 6.73 0 7.54 V 44939.58 7.990676 33 F6Iab-G2 +99362 W Vul SRB 10.2 0 11.8 p 234.52 43 M5IIIe +98212 X Vul DCEP 8.33 0 9.22 V 35309.977 6.319588 30 F6Ia-F9 +95163 Z Vul EA/SD 7.25 0 8.90 7.58 V 42947.4777 2.454934 18 B4V+A3III +94822 RS Vul EA/SD: 6.79 0 7.83 6.86 V 32808.257 4.4776635 14 B4V+A2IV +94287 RT Vul CST 7.5 0 p B8 +101888 RU Vul SRA 8.1 0 12.7 V 43440. 173.6 47 M3e-M4e +103069 RX Vul M 11. 0 15. p 27520. 457. M9e +97717 SV Vul DCEP 6.72 0 7.79 V 43086.89 45.0121 23 F7Iab-K0Iab +95702 BN Vul RRAB 10.63 0 11.40 V 45530.395 0.5941295 19 A6-F4 +100745 BP Vul EA/SD 10.1 0 11.3 10.5 p 46003.248 1.9403491 10 A7 +97309 BR Vul DCEP 11.8 0 12.8 p 16728.15 5.197170 28 +103191 BW Vul BCEP 6.52 1 0.24 V 45177.6220 0.20104117 50 B1III-B2IIIeaV +103933 DY Vul LB 8.4 0 9.7 p M3-M6 +103833 ER Vul EW/DW/RS 7.27 0 7.49 7.44 V 40182.2621 0.69809409 G0V+G5V +94827 ES Vul BCEP: 5.42 1 0.06 V 36338.5 0.6096 50 O8IV-B0.5IVeV +101527 FG Vul SRC 8.97 0 9.51 V 36095.8 86.0 M5II +102720 FI Vul LB 8.6 0 10.3 p M3 +93603 LT Vul DSCT 6.52 0 6.62 V 40720.7916 0.1090 47 F2III +99927 MW Vul ACV 6.62 0 6.70 V 42644.3 16.846 40 A0p(Si) +98543 NT Vul ACV 4.62 0 4.67 V 41885.2 14.0 A4IIIm +99738 NU Vul DSCTC 5.36 1 0.05 B 0.227 A7IVn-shell +97091 PS Vul E: 6.28 1 0.07 V B7V+G1:III +99824 QR Vul GCAS 4.60 0 4.80 V +99853 QS Vul EA/GS 5.15 1 0.12 V +97281 QY Vul E/WR 10.43 0 10.53 B +95260 V0377 Vul LPB 5.18 1 0.03 V +97572 V0379 Vul ELL 6.22 0 6.29 V +99923 V0383 Vul DSCTC 7.2 1 0.03 V +93270 V0387 Vul LB 6.21 0 6.32 Hp +94427 V0388 Vul ACV: 9.69 0 9.82 Hp +94969 V0389 Vul SRB 6.69 0 6.98 Hp +95512 V0390 Vul ACV: 7.39 0 7.41 Hp +96034 V0391 Vul LPB 7.32 0 7.36 Hp +96228 V0392 Vul ACV: 9.99 0 10.14 Hp +96493 V0393 Vul BY: 9.39 0 9.56 Hp +97500 V0394 Vul E: 8.75 0 8.92 Hp +97679 V0395 Vul BE 4.78 0 4.97 V +97681 V0396 Vul BE 7.77 0 7.82 Hp +98504 V0397 Vul ELL: 7.38 0 7.46 Hp +99402 V0398 Vul LPB: 7.54 0 7.62 Hp +100719 V0399 Vul EA: 7.01 0 7.17 Hp +102037 V0400 Vul EA: 6.76 0 6.82 Hp +102238 V0401 Vul BY: 10.85 0 11.03 Hp +102650 V0402 Vul EB: 8.32 0 8.45 Hp +104135 V0403 Vul EB 6.83 0 6.88 Hp +104175 V0404 Vul SRD 9.46 0 9.69 Hp +98505 V0452 Vul BY 7.67 1 0.03 V 12.039 G5V +105232 V0457 Vul BY 8.45 1 0.04 V 6.664 G8V diff -Nru stellarium-0.12.1/stars/default/name.fab stellarium-0.12.4/stars/default/name.fab --- stellarium-0.12.1/stars/default/name.fab 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/stars/default/name.fab 2013-09-07 15:50:48.000000000 +0000 @@ -2904,7 +2904,6 @@ 26727|ζ_Ori 25281|η_Ori 26220|θ1_Ori_A - 26220|θ1_Ori_B 26221|θ1_Ori_C 26224|θ1_Ori_D 26235|θ2_Ori @@ -2989,7 +2988,7 @@ 26366|40_Ori 26221|41_Ori_C 26224|41_Ori_D - 26220|41_Ori + 26220|41_Ori_A 26237|42_Ori 26235|43_Ori 26241|44_Ori @@ -3269,7 +3268,7 @@ 118234|Ï€_Phe 3949|Ï_Phe 117315|σ_Phe - 88|Ï„_Phe + 88|Ï„_Phe 5300|Ï…_Phe 8882|φ_Phe 9459|χ_Phe @@ -4303,13 +4302,14 @@ 69427|98_Vir 69701|99_Vir 69974|100_Vir - 70012|12_Vir - 70680|14_Vir - 70755|15_Vir - 70794|16_Vir - 71957|17_Vir - 72154|18_Vir - 72220|19_Vir + 70012|102_Vir + 70220|103_Vir + 70680|104_Vir + 70755|105_Vir + 70794|106_Vir + 71957|107_Vir + 72154|108_Vir + 72220|109_Vir 73620|110_Vir 44382|α_Vol 41312|β_Vol Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/stars/default/stars_0_0v0_2.cat and /tmp/qEvCSzZF1M/stellarium-0.12.4/stars/default/stars_0_0v0_2.cat differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/stars/default/stars_0_0v0_3.cat and /tmp/qEvCSzZF1M/stellarium-0.12.4/stars/default/stars_0_0v0_3.cat differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/stars/default/stars_1_0v0_2.cat and /tmp/qEvCSzZF1M/stellarium-0.12.4/stars/default/stars_1_0v0_2.cat differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/stars/default/stars_1_0v0_3.cat and /tmp/qEvCSzZF1M/stellarium-0.12.4/stars/default/stars_1_0v0_3.cat differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/stars/default/stars_2_0v0_2.cat and /tmp/qEvCSzZF1M/stellarium-0.12.4/stars/default/stars_2_0v0_2.cat differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/stars/default/stars_2_0v0_3.cat and /tmp/qEvCSzZF1M/stellarium-0.12.4/stars/default/stars_2_0v0_3.cat differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/stars/default/stars_3_1v0_1.cat and /tmp/qEvCSzZF1M/stellarium-0.12.4/stars/default/stars_3_1v0_1.cat differ Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/stars/default/stars_3_1v0_2.cat and /tmp/qEvCSzZF1M/stellarium-0.12.4/stars/default/stars_3_1v0_2.cat differ diff -Nru stellarium-0.12.1/stellarium-patch.iss.cmake stellarium-0.12.4/stellarium-patch.iss.cmake --- stellarium-0.12.1/stellarium-patch.iss.cmake 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/stellarium-patch.iss.cmake 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,142 @@ +; Stellarium patch installer +; Run "make install" first to generate the executable and translation files. +; The CMake-generated patch script is supposed to be edited manually after +; generation, but all changes will be OVERWRITTEN the next time CMake is run! + +; This script creates a setup file for a patch that REPLACES some of the files +; in an existing Stellarium installation. (By default, only the executables.) + +; Unlike a regular installation file, the patch installer does not create +; entries in the Start menu or an uninstaller. (So installing files that don't +; exist in the original instalaltion means that they won't be removed +; when uninstalling Stellarium.) + +[Setup] +@ISS_ARCHITECTURE_SPECIFIC@ +DisableStartupPrompt=yes +WizardSmallImageFile=data\icon.bmp +WizardImageFile=data\splash.bmp +WizardImageStretch=no +WizardImageBackColor=clBlack +AppName=Stellarium +; AppId should have the same value as AppName/AppId in the original installer +AppId=Stellarium +AppVersion=@PACKAGE_VERSION@ +AppVerName=Stellarium @PACKAGE_VERSION@ +AppPublisher=Stellarium team +AppPublisherURL=http://www.stellarium.org/ +OutputBaseFilename=stellarium-patch-@PACKAGE_VERSION@-@ISS_PACKAGE_PLATFORM@ +OutputDir=installers +; In 64-bit mode, {pf} is equivalent to {pf64}, +; see http://www.jrsoftware.org/ishelp/index.php?topic=32vs64bitinstalls +DefaultDirName={pf}\Stellarium +DefaultGroupName=Stellarium +UninstallDisplayIcon={app}\data\stellarium.ico +LicenseFile=COPYING +Compression=zip/9 + +; If uncommented, this file will be displayed before the installation begins +; (see http://www.jrsoftware.org/ishelp/index.php?topic=wizardpages) +;InfoBeforeFile=patch-warning.txt + +; Detect and use Stellarium's install directory +UsePreviousAppDir=yes +CreateUninstallRegKey=no +UpdateUninstallLogAppName=no + + +[Files] +Source: "@CMAKE_INSTALL_PREFIX@/bin/stellarium.exe"; DestDir: "{app}"; Flags: ignoreversion +Source: "@CMAKE_INSTALL_PREFIX@/lib/libstelMain.dll"; DestDir: "{app}"; Flags: ignoreversion + +; Thanks to the clever and competent design of the keyboard shortcut system, +; if your executable or changes/introduces StelAction names, you'll need this: +;Source: "@CMAKE_INSTALL_PREFIX@\share\stellarium\data\default_shortcuts.json"; DestDir: "{app}\data" + +; Possibly the same file as the InfoBeforeFile; also uncomment in [Icons] below +; Note that if you uncomment the README line below, you need to decide which one +; will have the "isreadme" flag. +;Source: "release-notes.txt"; DestDir: "{app}"; Flags: isreadme; DestName: "Release Notes (@PACKAGE_VERSION@).txt" + +; Some of these may need to be updated: +;Source: "README"; DestDir: "{app}"; Flags: isreadme; DestName: "README.rtf" +;Source: "INSTALL"; DestDir: "{app}"; DestName: "INSTALL.rtf" +;Source: "COPYING"; DestDir: "{app}"; DestName: "GPL.rtf" +;Source: "AUTHORS"; DestDir: "{app}"; DestName: "AUTHORS.rtf" +;Source: "ChangeLog"; DestDir: "{app}"; DestName: "ChangeLog.rtf" + +; Add further files to be updated here: + +; System libraries skipped - when building a patch, it's recommended to use +; the ones used in the last/appropriate release. + +; Uncomment to update data and/or localization +; If only a few are changed, add them individually instead of packing all. +;Source: "@CMAKE_INSTALL_PREFIX@\share\stellarium\*"; DestDir: "{app}\"; Flags: recursesubdirs +;Source: "@CMAKE_INSTALL_PREFIX@\share\locale\*"; DestDir: "{app}\locale\"; Flags: recursesubdirs + +[Tasks] +; It may be necessary to clean up the old configuration, +; so some of these can be checked by default. +; Don't forget to uncomment the actions themselves in [InstallDelete] below! + +;Name: removeconfig; Description: "{cm:RemoveMainConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked +;Name: removeplugins; Description: "{cm:RemovePluginsConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked +;Name: removesolar; Description: "{cm:RemoveSolarConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked +;Name: removelandscapes; Description: "{cm:RemoveUILandscapes}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked +;Name: removeshortcuts; Description: "{cm:RemoveShortcutsConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked + +[Run] +; An option to start Stellarium after setup has finished +Filename: "{app}\stellarium.exe"; Description: "{cm:LaunchProgram,Stellarium}"; Flags: postinstall nowait skipifsilent unchecked + +[InstallDelete] +;The old log file in all cases +Type: files; Name: "{userappdata}\Stellarium\log.txt" +;Type: files; Name: "{userappdata}\Stellarium\config.ini"; Tasks: removeconfig +;Type: files; Name: "{userappdata}\Stellarium\data\ssystem.ini"; Tasks: removesolar +;Type: filesandordirs; Name: "{userappdata}\Stellarium\modules"; Tasks: removeplugins +;Type: filesandordirs; Name: "{userappdata}\Stellarium\landscapes"; Tasks: removelandscapes +;Type: files; Name: "{userappdata}\Stellarium\data\shortcuts.json"; Tasks: removeshortcuts + + +[UninstallDelete] + + +[Icons] +; The default ones are already installed. + +; Uncomment if you have specified a release notes file in [Files] above +;Name: "{group}\Release Notes (@PACKAGE_VERSION@)"; Filename: "{app}\Release Notes (@PACKAGE_VERSION@).txt" + +; Recommended use Inno Setup 5.5.3+ +[Languages] +; Official translations of GUI of Inno Setup + translation Stellarium specific lines +Name: "en"; MessagesFile: "compiler:Default.isl,util\ISL\EnglishCM.isl" +Name: "ca"; MessagesFile: "compiler:Languages\Catalan.isl,util\ISL\CatalanCM.isl" +Name: "co"; MessagesFile: "compiler:Languages\Corsican.isl" +Name: "cs"; MessagesFile: "compiler:Languages\Czech.isl" +Name: "da"; MessagesFile: "compiler:Languages\Danish.isl" +Name: "nl"; MessagesFile: "compiler:Languages\Dutch.isl" +Name: "fi"; MessagesFile: "compiler:Languages\Finnish.isl" +Name: "fr"; MessagesFile: "compiler:Languages\French.isl,util\ISL\FrenchCM.isl" +Name: "de"; MessagesFile: "compiler:Languages\German.isl" +Name: "el"; MessagesFile: "compiler:Languages\Greek.isl" +Name: "he"; MessagesFile: "compiler:Languages\Hebrew.isl" +Name: "hu"; MessagesFile: "compiler:Languages\Hungarian.isl" +Name: "it"; MessagesFile: "compiler:Languages\Italian.isl" +Name: "ja"; MessagesFile: "compiler:Languages\Japanese.isl" +Name: "no"; MessagesFile: "compiler:Languages\Norwegian.isl,util\ISL\NorwegianCM.isl" +Name: "pl"; MessagesFile: "compiler:Languages\Polish.isl" +Name: "pt_BR"; MessagesFile: "compiler:Languages\BrazilianPortuguese.isl,util\ISL\BrazilianPortugueseCM.isl" +Name: "pt"; MessagesFile: "compiler:Languages\Portuguese.isl" +Name: "ru"; MessagesFile: "compiler:Languages\Russian.isl,util\ISL\RussianCM.isl" +Name: "sr"; MessagesFile: "compiler:Languages\SerbianCyrillic.isl" +Name: "sl"; MessagesFile: "compiler:Languages\Slovenian.isl" +Name: "es"; MessagesFile: "compiler:Languages\Spanish.isl" +Name: "uk"; MessagesFile: "compiler:Languages\Ukrainian.isl,util\ISL\UkrainianCM.isl" +; Unofficial translations of GUI of Inno Setup +Name: "bg"; MessagesFile: "util\ISL\Bulgarian.isl,util\ISL\BulgarianCM.isl" +Name: "bs"; MessagesFile: "util\ISL\Bosnian.isl,util\ISL\BosnianCM.isl" +Name: "gla"; MessagesFile: "util\ISL\ScotsGaelic.isl" + diff -Nru stellarium-0.12.1/stellarium.iss.cmake stellarium-0.12.4/stellarium.iss.cmake --- stellarium-0.12.1/stellarium.iss.cmake 2013-04-20 14:46:39.000000000 +0000 +++ stellarium-0.12.4/stellarium.iss.cmake 2013-08-04 06:20:27.000000000 +0000 @@ -1,120 +1,120 @@ -; Stellarium installer -; Run "make install" first to generate binary and translation files. -; @ISS_AUTOGENERATED_WARNING@ - -[Setup] -@ISS_ARCHITECTURE_SPECIFIC@ -DisableStartupPrompt=yes -WizardSmallImageFile=data\icon.bmp -WizardImageFile=data\splash.bmp -WizardImageStretch=no -WizardImageBackColor=clBlack -AppName=Stellarium -AppVersion=@PACKAGE_VERSION@ -AppVerName=Stellarium @PACKAGE_VERSION@ -AppPublisher=Stellarium team -AppPublisherURL=http://www.stellarium.org/ -OutputBaseFilename=stellarium-@PACKAGE_VERSION@-@ISS_PACKAGE_PLATFORM@ -OutputDir=installers -; In 64-bit mode, {pf} is equivalent to {pf64}, -; see http://www.jrsoftware.org/ishelp/index.php?topic=32vs64bitinstalls -DefaultDirName={pf}\Stellarium -DefaultGroupName=Stellarium -UninstallDisplayIcon={app}\data\stellarium.ico -LicenseFile=COPYING -Compression=zip/9 - -[Files] -Source: "@CMAKE_INSTALL_PREFIX@\bin\stellarium.exe"; DestDir: "{app}" -Source: "@CMAKE_INSTALL_PREFIX@\lib\libstelMain.dll"; DestDir: "{app}" -Source: "stellarium.url"; DestDir: "{app}" -Source: "README"; DestDir: "{app}"; Flags: isreadme; DestName: "README.rtf" -Source: "INSTALL"; DestDir: "{app}"; DestName: "INSTALL.rtf" -Source: "COPYING"; DestDir: "{app}"; DestName: "GPL.rtf" -Source: "AUTHORS"; DestDir: "{app}"; DestName: "AUTHORS.rtf" -Source: "ChangeLog"; DestDir: "{app}"; DestName: "ChangeLog.rtf" -Source: "@ICONV_INCLUDE_DIR@/../bin/libiconv*.dll"; DestDir: "{app}"; -Source: "@INTL_INCLUDE_DIR@/../bin/libintl*.dll"; DestDir: "{app}"; -Source: "@ZLIB_INCLUDE_DIR@/../bin/zlib1.dll"; DestDir: "{app}"; -@ISS_ARCH_SPECIFIC_MINGW_LIBS@ -Source: "@QT_BINARY_DIR@\phonon4.dll"; DestDir: "{app}"; -Source: "@QT_BINARY_DIR@\QtSql4.dll"; DestDir: "{app}"; -Source: "@QT_BINARY_DIR@\QtSvg4.dll"; DestDir: "{app}"; -Source: "@QT_BINARY_DIR@\QtCore4.dll"; DestDir: "{app}"; -Source: "@QT_BINARY_DIR@\QtGui4.dll"; DestDir: "{app}"; -Source: "@QT_BINARY_DIR@\QtOpenGL4.dll"; DestDir: "{app}"; -Source: "@QT_BINARY_DIR@\QtNetwork4.dll"; DestDir: "{app}"; -Source: "@QT_BINARY_DIR@\QtScript4.dll"; DestDir: "{app}"; -Source: "@QT_BINARY_DIR@\QtXml4.dll"; DestDir: "{app}"; -;Source: "@QT_PLUGINS_DIR@\sqldrivers\qsqlite4.dll"; DestDir: "{app}\sqldrivers\"; -Source: "@CMAKE_INSTALL_PREFIX@\share\stellarium\*"; DestDir: "{app}\"; Flags: recursesubdirs -; Locales -Source: "@CMAKE_INSTALL_PREFIX@\share\locale\*"; DestDir: "{app}\locale\"; Flags: recursesubdirs - -[Tasks] -Name: desktopicon; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}" -Name: desktopicon\common; Description: "{cm:ForAllUsers}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: exclusive -Name: desktopicon\user; Description: "{cm:ForCurrentUserOnly}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: exclusive unchecked -Name: removeconfig; Description: "{cm:RemoveMainConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked -Name: removeplugins; Description: "{cm:RemovePluginsConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked -Name: removesolar; Description: "{cm:RemoveSolarConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked -Name: removelandscapes; Description: "{cm:RemoveUILandscapes}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked -Name: removeshortcuts; Description: "{cm:RemoveShortcutsConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked - -[Run] -;An option to start Stellarium after setup has finished -Filename: "{app}\stellarium.exe"; Description: "{cm:LaunchProgram,Stellarium}"; Flags: postinstall nowait skipifsilent unchecked - -[InstallDelete] -;The old log file in all cases -Type: files; Name: "{userappdata}\Stellarium\log.txt" -Type: files; Name: "{userappdata}\Stellarium\config.ini"; Tasks: removeconfig -Type: files; Name: "{userappdata}\Stellarium\data\ssystem.ini"; Tasks: removesolar -Type: filesandordirs; Name: "{userappdata}\Stellarium\modules"; Tasks: removeplugins -Type: filesandordirs; Name: "{userappdata}\Stellarium\landscapes"; Tasks: removelandscapes -Type: files; Name: "{userappdata}\Stellarium\data\shortcuts.json"; Tasks: removeshortcuts - -[UninstallDelete] - -[Icons] -Name: "{group}\{cm:ProgramOnTheWeb,Stellarium}"; Filename: "{app}\stellarium.url"; IconFilename: "{app}\data\stellarium.ico" -Name: "{group}\Stellarium"; Filename: "{app}\stellarium.exe"; WorkingDir: "{app}"; IconFilename: "{app}\data\stellarium.ico" -Name: "{group}\Stellarium {cm:FallbackMode}"; Filename: "{app}\stellarium.exe"; Parameters: "--safe-mode"; WorkingDir: "{app}"; IconFilename: "{app}\data\stellarium.ico" -Name: "{group}\{cm:UninstallProgram,Stellarium}"; Filename: "{uninstallexe}" -Name: "{group}\config.ini"; Filename: "{userappdata}\Stellarium\config.ini" -Name: "{group}\{cm:LastRunLog}"; Filename: "{userappdata}\Stellarium\log.txt" -Name: "{group}\{cm:ChangeLog}"; Filename: "{app}\ChangeLog.rtf" -Name: "{commondesktop}\Stellarium"; Filename: "{app}\stellarium.exe"; WorkingDir: "{app}"; IconFilename: "{app}\data\stellarium.ico"; Tasks: desktopicon\common -Name: "{userdesktop}\Stellarium"; Filename: "{app}\stellarium.exe"; WorkingDir: "{app}"; IconFilename: "{app}\data\stellarium.ico"; Tasks: desktopicon\user - -; Recommended use Inno Setup 5.5.3+ -[Languages] -; Official translations of GUI of Inno Setup + translation Stellarium specific lines -Name: "en"; MessagesFile: "compiler:Default.isl,util\ISL\EnglishCM.isl" -Name: "ca"; MessagesFile: "compiler:Languages\Catalan.isl,util\ISL\CatalanCM.isl" -Name: "co"; MessagesFile: "compiler:Languages\Corsican.isl" -Name: "cs"; MessagesFile: "compiler:Languages\Czech.isl" -Name: "da"; MessagesFile: "compiler:Languages\Danish.isl" -Name: "nl"; MessagesFile: "compiler:Languages\Dutch.isl" -Name: "fi"; MessagesFile: "compiler:Languages\Finnish.isl" -Name: "fr"; MessagesFile: "compiler:Languages\French.isl,util\ISL\FrenchCM.isl" -Name: "de"; MessagesFile: "compiler:Languages\German.isl" -Name: "el"; MessagesFile: "compiler:Languages\Greek.isl" -Name: "he"; MessagesFile: "compiler:Languages\Hebrew.isl" -Name: "hu"; MessagesFile: "compiler:Languages\Hungarian.isl" -Name: "it"; MessagesFile: "compiler:Languages\Italian.isl" -Name: "ja"; MessagesFile: "compiler:Languages\Japanese.isl" -Name: "no"; MessagesFile: "compiler:Languages\Norwegian.isl,util\ISL\NorwegianCM.isl" -Name: "pl"; MessagesFile: "compiler:Languages\Polish.isl" -Name: "pt_BR"; MessagesFile: "compiler:Languages\BrazilianPortuguese.isl,util\ISL\BrazilianPortugueseCM.isl" -Name: "pt"; MessagesFile: "compiler:Languages\Portuguese.isl" -Name: "ru"; MessagesFile: "compiler:Languages\Russian.isl,util\ISL\RussianCM.isl" -Name: "sr"; MessagesFile: "compiler:Languages\SerbianCyrillic.isl" -Name: "sl"; MessagesFile: "compiler:Languages\Slovenian.isl" -Name: "es"; MessagesFile: "compiler:Languages\Spanish.isl" -Name: "uk"; MessagesFile: "compiler:Languages\Ukrainian.isl,util\ISL\UkrainianCM.isl" -; Unofficial translations of GUI of Inno Setup -Name: "bg"; MessagesFile: "util\ISL\Bulgarian.isl,util\ISL\BulgarianCM.isl" -Name: "bs"; MessagesFile: "util\ISL\Bosnian.isl,util\ISL\BosnianCM.isl" -Name: "gla"; MessagesFile: "util\ISL\ScotsGaelic.isl" - +; Stellarium installer +; Run "make install" first to generate the executable and translation files. +; @ISS_AUTOGENERATED_WARNING@ + +[Setup] +@ISS_ARCHITECTURE_SPECIFIC@ +DisableStartupPrompt=yes +WizardSmallImageFile=data\icon.bmp +WizardImageFile=data\splash.bmp +WizardImageStretch=no +WizardImageBackColor=clBlack +AppName=Stellarium +AppVersion=@PACKAGE_VERSION@ +AppVerName=Stellarium @PACKAGE_VERSION@ +AppPublisher=Stellarium team +AppPublisherURL=http://www.stellarium.org/ +OutputBaseFilename=stellarium-@PACKAGE_VERSION@-@ISS_PACKAGE_PLATFORM@ +OutputDir=installers +; In 64-bit mode, {pf} is equivalent to {pf64}, +; see http://www.jrsoftware.org/ishelp/index.php?topic=32vs64bitinstalls +DefaultDirName={pf}\Stellarium +DefaultGroupName=Stellarium +UninstallDisplayIcon={app}\data\stellarium.ico +LicenseFile=COPYING +Compression=zip/9 + +[Files] +Source: "@CMAKE_INSTALL_PREFIX@\bin\stellarium.exe"; DestDir: "{app}" +Source: "@CMAKE_INSTALL_PREFIX@\lib\libstelMain.dll"; DestDir: "{app}" +Source: "stellarium.url"; DestDir: "{app}" +Source: "README"; DestDir: "{app}"; Flags: isreadme; DestName: "README.rtf" +Source: "INSTALL"; DestDir: "{app}"; DestName: "INSTALL.rtf" +Source: "COPYING"; DestDir: "{app}"; DestName: "GPL.rtf" +Source: "AUTHORS"; DestDir: "{app}"; DestName: "AUTHORS.rtf" +Source: "ChangeLog"; DestDir: "{app}"; DestName: "ChangeLog.rtf" +Source: "@ICONV_INCLUDE_DIR@/../bin/libiconv*.dll"; DestDir: "{app}"; +Source: "@INTL_INCLUDE_DIR@/../bin/libintl*.dll"; DestDir: "{app}"; +Source: "@ZLIB_INCLUDE_DIR@/../bin/zlib1.dll"; DestDir: "{app}"; +@ISS_ARCH_SPECIFIC_MINGW_LIBS@ +Source: "@QT_BINARY_DIR@\phonon4.dll"; DestDir: "{app}"; +Source: "@QT_BINARY_DIR@\QtSql4.dll"; DestDir: "{app}"; +Source: "@QT_BINARY_DIR@\QtSvg4.dll"; DestDir: "{app}"; +Source: "@QT_BINARY_DIR@\QtCore4.dll"; DestDir: "{app}"; +Source: "@QT_BINARY_DIR@\QtGui4.dll"; DestDir: "{app}"; +Source: "@QT_BINARY_DIR@\QtOpenGL4.dll"; DestDir: "{app}"; +Source: "@QT_BINARY_DIR@\QtNetwork4.dll"; DestDir: "{app}"; +Source: "@QT_BINARY_DIR@\QtScript4.dll"; DestDir: "{app}"; +Source: "@QT_BINARY_DIR@\QtXml4.dll"; DestDir: "{app}"; +;Source: "@QT_PLUGINS_DIR@\sqldrivers\qsqlite4.dll"; DestDir: "{app}\sqldrivers\"; +Source: "@CMAKE_INSTALL_PREFIX@\share\stellarium\*"; DestDir: "{app}\"; Flags: recursesubdirs +; Locales +Source: "@CMAKE_INSTALL_PREFIX@\share\locale\*"; DestDir: "{app}\locale\"; Flags: recursesubdirs + +[Tasks] +Name: desktopicon; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}" +Name: desktopicon\common; Description: "{cm:ForAllUsers}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: exclusive +Name: desktopicon\user; Description: "{cm:ForCurrentUserOnly}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: exclusive unchecked +Name: removeconfig; Description: "{cm:RemoveMainConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked +Name: removeplugins; Description: "{cm:RemovePluginsConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked +Name: removesolar; Description: "{cm:RemoveSolarConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked +Name: removelandscapes; Description: "{cm:RemoveUILandscapes}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked +Name: removeshortcuts; Description: "{cm:RemoveShortcutsConfig}"; GroupDescription: "{cm:RemoveFromPreviousInstallation}"; Flags: unchecked + +[Run] +;An option to start Stellarium after setup has finished +Filename: "{app}\stellarium.exe"; Description: "{cm:LaunchProgram,Stellarium}"; Flags: postinstall nowait skipifsilent unchecked + +[InstallDelete] +;The old log file in all cases +Type: files; Name: "{userappdata}\Stellarium\log.txt" +Type: files; Name: "{userappdata}\Stellarium\config.ini"; Tasks: removeconfig +Type: files; Name: "{userappdata}\Stellarium\data\ssystem.ini"; Tasks: removesolar +Type: filesandordirs; Name: "{userappdata}\Stellarium\modules"; Tasks: removeplugins +Type: filesandordirs; Name: "{userappdata}\Stellarium\landscapes"; Tasks: removelandscapes +Type: files; Name: "{userappdata}\Stellarium\data\shortcuts.json"; Tasks: removeshortcuts + +[UninstallDelete] + +[Icons] +Name: "{group}\{cm:ProgramOnTheWeb,Stellarium}"; Filename: "{app}\stellarium.url"; IconFilename: "{app}\data\stellarium.ico" +Name: "{group}\Stellarium"; Filename: "{app}\stellarium.exe"; WorkingDir: "{app}"; IconFilename: "{app}\data\stellarium.ico" +Name: "{group}\Stellarium {cm:FallbackMode}"; Filename: "{app}\stellarium.exe"; Parameters: "--safe-mode"; WorkingDir: "{app}"; IconFilename: "{app}\data\stellarium.ico" +Name: "{group}\{cm:UninstallProgram,Stellarium}"; Filename: "{uninstallexe}" +Name: "{group}\config.ini"; Filename: "{userappdata}\Stellarium\config.ini" +Name: "{group}\{cm:LastRunLog}"; Filename: "{userappdata}\Stellarium\log.txt" +Name: "{group}\{cm:ChangeLog}"; Filename: "{app}\ChangeLog.rtf" +Name: "{commondesktop}\Stellarium"; Filename: "{app}\stellarium.exe"; WorkingDir: "{app}"; IconFilename: "{app}\data\stellarium.ico"; Tasks: desktopicon\common +Name: "{userdesktop}\Stellarium"; Filename: "{app}\stellarium.exe"; WorkingDir: "{app}"; IconFilename: "{app}\data\stellarium.ico"; Tasks: desktopicon\user + +; Recommended use Inno Setup 5.5.3+ +[Languages] +; Official translations of GUI of Inno Setup + translation Stellarium specific lines +Name: "en"; MessagesFile: "compiler:Default.isl,util\ISL\EnglishCM.isl" +Name: "ca"; MessagesFile: "compiler:Languages\Catalan.isl,util\ISL\CatalanCM.isl" +Name: "co"; MessagesFile: "compiler:Languages\Corsican.isl" +Name: "cs"; MessagesFile: "compiler:Languages\Czech.isl" +Name: "da"; MessagesFile: "compiler:Languages\Danish.isl" +Name: "nl"; MessagesFile: "compiler:Languages\Dutch.isl" +Name: "fi"; MessagesFile: "compiler:Languages\Finnish.isl" +Name: "fr"; MessagesFile: "compiler:Languages\French.isl,util\ISL\FrenchCM.isl" +Name: "de"; MessagesFile: "compiler:Languages\German.isl" +Name: "el"; MessagesFile: "compiler:Languages\Greek.isl" +Name: "he"; MessagesFile: "compiler:Languages\Hebrew.isl" +Name: "hu"; MessagesFile: "compiler:Languages\Hungarian.isl" +Name: "it"; MessagesFile: "compiler:Languages\Italian.isl" +Name: "ja"; MessagesFile: "compiler:Languages\Japanese.isl" +Name: "no"; MessagesFile: "compiler:Languages\Norwegian.isl,util\ISL\NorwegianCM.isl" +Name: "pl"; MessagesFile: "compiler:Languages\Polish.isl" +Name: "pt_BR"; MessagesFile: "compiler:Languages\BrazilianPortuguese.isl,util\ISL\BrazilianPortugueseCM.isl" +Name: "pt"; MessagesFile: "compiler:Languages\Portuguese.isl" +Name: "ru"; MessagesFile: "compiler:Languages\Russian.isl,util\ISL\RussianCM.isl" +Name: "sr"; MessagesFile: "compiler:Languages\SerbianCyrillic.isl" +Name: "sl"; MessagesFile: "compiler:Languages\Slovenian.isl" +Name: "es"; MessagesFile: "compiler:Languages\Spanish.isl" +Name: "uk"; MessagesFile: "compiler:Languages\Ukrainian.isl,util\ISL\UkrainianCM.isl" +; Unofficial translations of GUI of Inno Setup +Name: "bg"; MessagesFile: "util\ISL\Bulgarian.isl,util\ISL\BulgarianCM.isl" +Name: "bs"; MessagesFile: "util\ISL\Bosnian.isl,util\ISL\BosnianCM.isl" +Name: "gla"; MessagesFile: "util\ISL\ScotsGaelic.isl" + diff -Nru stellarium-0.12.1/stellarium_patch.iss stellarium-0.12.4/stellarium_patch.iss --- stellarium-0.12.1/stellarium_patch.iss 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/stellarium_patch.iss 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ -; This creates a setup file for a patch that REPLACES some of the files in an -; existing Stellarium installation. (By default, only the executable files.) - -; Unlike a regular installation file, the patch installer does not create -; entries in the Start menu or an uninstaller. (So installing files that don't -; exist in the original instalaltion means that they won't be removed -; when uninstalling Stellarium.) - -[Setup] -DisableStartupPrompt=yes -WizardSmallImageFile=data\icon.bmp -WizardImageFile=data\splash.bmp -WizardImageStretch=no -WizardImageBackColor=clBlack -AppName=Stellarium -; AppId should have the same value as AppName/AppId in the original installer -AppId=Stellarium -; Unlike the regular, CMake-generated Inno Setup project file, -; you need to UPDATE THE VERSION NUMBER manually. -AppVerName=Stellarium 0.10.5 -OutputBaseFilename=stellarium-0.10.5 -OutputDir=installers -DefaultDirName={pf}\Stellarium -DefaultGroupName=Stellarium -UninstallDisplayIcon={app}\data\stellarium.ico -LicenseFile=COPYING -Compression=zip/9 - -;If uncommented, this file will be displayed before the installation begins -;(see http://www.jrsoftware.org/ishelp/index.php?topic=wizardpages) -;InfoBeforeFile=patch_notes.txt - -;Detect and use Stellarium's install directory -UsePreviousAppDir=yes -CreateUninstallRegKey=no -UpdateUninstallLogAppName=no - -[Files] -Source: "builds\msys\src\stellarium.exe"; DestDir: "{app}" -Source: "builds\msys\src\libstelMain.dll"; DestDir: "{app}" - -;Some of these may need to be updated: -;Source: "README"; DestDir: "{app}"; Flags: isreadme; DestName: "README.rtf" -;Source: "INSTALL"; DestDir: "{app}"; DestName: "INSTALL.rtf" -;Source: "COPYING"; DestDir: "{app}"; DestName: "GPL.rtf" -;Source: "AUTHORS"; DestDir: "{app}"; DestName: "AUTHORS.rtf" -;Source: "ChangeLog"; DestDir: "{app}"; - -;Add further files to be updated here: - -[Tasks] - -[UninstallDelete] - -[Icons] diff -Nru stellarium-0.12.1/util/GCVS/format_description.txt stellarium-0.12.4/util/GCVS/format_description.txt --- stellarium-0.12.1/util/GCVS/format_description.txt 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/util/GCVS/format_description.txt 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,20 @@ +GCVS part for Stellarium. This file contains part of Hipparcos stars from GCVS. +Format: ++ One record per line ++ Fields in a record are delimited with the tab character ++ Line beginning with a # character are comments ++ Field are as follows: + - HIP + - GCVS designation + - Type of variability + - Magnitude at maximum brightness + - Magnitude flag code (0=No flag, + 1="(" if magMax is an amplitude, + 2="<" if magMax is a bright limit, + 3=">" if magMax is a faint limit) + - Minimum magnitude or amplitude + - The photometric system for magnitudes + - Epoch for maximum light (Julian days) + - Period of the variable star (days) + - Rising time or duration of eclipse (%) + - Spectral type diff -Nru stellarium-0.12.1/util/GCVS/gcvs_hip_part.dat stellarium-0.12.4/util/GCVS/gcvs_hip_part.dat --- stellarium-0.12.1/util/GCVS/gcvs_hip_part.dat 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/util/GCVS/gcvs_hip_part.dat 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,6886 @@ +1901 R And M 5.8 0 15.2 V 53820. 409.2 38 S3,5e-S8,8e(M7e) +10687 W And M 6.7 0 14.6 V 48654. 397.3 42 S6,1e-S9,2e +116287 Z And ZAND 7.7 0 11.3 V M2III+B1eq +114484 RT And EA/RS 8.97 0 9.83 9.28 V 51421.737 0.6289216 17 F8V+K1 +10192 RV And SRA 9.0 0 11.5 V 48667. 168.9 M4e +114345 RZ And CST 9.43 0 V K0 +114507 SS And SRC 10.0 0 11.4 p 152.5 M6II +116681 ST And SRA 7.7 0 11.8 V 53720. 326.6 52 C4,3e-C6,4e +363 SU And LC 8.0 0 8.5 V C6,4(C5II) +344 SV And M 7.7 0 14.7 V 53220. 313. 42 M5e-M7e +1878 SW And RRAB 9.14 0 10.09 V 53735.538 0.4422618 17 A7III-F8III +2546 TU And M 7.5 0 13.5 V 53700. 316.8 48 M5e +113405 TV And SRB 8.3 0 11.5 V 110. M4e-M5e +262 TW And EA 8.98 0 11.04 9.13 V 53693.355 4.122834 13 F0V+K0 +114757 TY And SRB 8.8 0 10.5 V 260. M5e-M6e +117591 TZ And LB: 8.0 0 9.3 V M5-6III +12298 UY And LB 7.4 0 12.3 V C5,4(N3) +1593 VX And SRA 7.5 0 9.7 V 375. C4,5J(N7) +113715 VY And SRB 9.6 0 11.8 V 149. C3,5J-C4,4-5(R8) +117143 WW And EA 10.92 1 0.67 0.16 V 34618.185 23.285213 05 A5+F3p +116883 WY And SRD 8.65 0 9.65 V 109.65 43 G2e-K2(M3) +6029 XX And RRAB 10.08 0 11.13 V 53662.575 0.722757 19 A8-F6 +114012 AA And EB 10.3 0 11.2 10.6 p 52500.730 0.9350969 B8V +114508 AB And EW 9.49 0 10.46 10.32 V 52500.0599 0.3318912 G5+G5V +115046 AC And * 10.70 1 1.2 V 28009.31 0.7112376 A9-F8 +115065 AN And EB 5.96 0 6.11 6.05 V 48500.732 3.21952 A7mIII-IV +2180 AQ And SRB 7.7 0 9.5 V 169. C5,4(Nb) +116958 AT And RRAB 10.42 0 10.92 V 53287.4851 0.6169122 21 F0-F7 +10027 BX And EB 8.87 0 9.53 9.12 V 52500.3454 0.6101119 F2V +2962 BZ And LB 7.7 0 8.6 V K9 +3432 CC And DSCT 9.19 0 9.46 V 0.1249078 40 F3IV-V +63 CG And ACV 6.32 0 6.42 V 41152.67 3.73975 B9pSiEu +8939 CI And RRAB 11.76 0 12.66 V 51441.803 0.4847267 18 A8 +4639 DQ And CWB: 11.23 0 12.00 V 51481.584 3.200635 23 K-M +3494 EG And ZAND 6.97 0 7.8 V M2IIIep +115036 ET And ACV 6.48 1 0.03 V 1.618875 B9pSi +115743 EW And LB 10.8 0 11.8 p C7,3(Nb) +3362 FF And UV+BY 12.02 0 12.90 U M1Ve+M1Ve +2355 GN And DSCTC 5.23 1 0.05 V 0.069304115 A9IV +3919 GO And ACV 6.12 1 0.04 V 2.5481 A0pSrCrEu +4322 GP And DSCT 10.53 1 0.6 V 47005.6145 0.0786827620 31 A3 +2243 GR And ACV 6.87 0 6.95 V 546.87 A2pSrCrEu +1475 GX And UV 10.30 0 10.85 U M1Ve +7651 GY And ACV 6.27 0 6.44 V 8000. B9VpCrEu +10270 GZ And EW 10.83 0 11.61 11.58 V 52500.1211 0.3050169 +6560 HN And ACV 6.67 0 6.76 V 69.92 A2pSrCrEu +7321 KK And ACV 5.91 1 0.01 V 0.6684 B9IVpSi +116039 KQ And LB: 9.4 0 10.1 p K5 +114154 KX And BE 6.88 0 7.28 V B3pe+K1III +114329 KY And BE 6.68 0 6.95 V B3Vne +114379 KZ And BY 7.91 0 8.03 V 3.03 K2Ve+K2Ve +113802 LN And CST: 6.39 0 V B2V +118214 LQ And BE 6.50 0 6.66 V 0.309446 B4Ven +1799 LR And ELL 7.10 0 7.15 7.14 V 44854.8800 1.432321 A3V +7493 OP And RS: 6.27 0 6.41 Hp 2.35954 K1III: +7951 OQ And LB 7.64 0 7.73 V M3III +115200 OT And EA 7.32 0 7.72 V 45711.73 20.85290 03 +117503 OU And FKCOM: 5.87 0 5.94 V 24.2 G1IIIe +117963 PV And ACV 6.91 0 6.99 V 3.5112 B9pSi +2865 PY And ACV 6.02 1 0.03 U 4.6904 B8IIIpHgMn +10944 PZ And ACV 5.59 1 0.05 V 4.1890 B9VpSi +5684 QU And RS 7.25 1 0.05 V 21.08 G5IV +5939 QV And ACV 6.22 1 0.05 U 5.229 B9IIIpSi +116354 V0340 And DSCTC 5.69 1 0.03 B 0.063 A1Vp +590 V0341 And LB 8.63 0 8.94 Hp +882 V0343 And LB 7.04 0 7.55 Hp M2 +919 V0344 And BY 7.95 1 0.04 V 6.105 K0V +988 V0345 And SRB: 7.79 0 7.98 Hp 45.13 M4 +1112 V0346 And LB: 8.98 0 9.10 Hp K5 +1110 V0347 And SRS: 9.38 0 9.72 Hp 48510.60 15.11 M2 +1233 V0348 And EA 6.75 0 6.90 Hp 48504.070 5.5392 B9 +1289 V0349 And LB: 8.81 0 8.93 Hp M0 +2054 V0350 And EA 7.56 0 7.63 Hp 47947.413 1.538824 10 A3 +2216 V0351 And LB 9.12 0 9.49 Hp M5 +2285 V0352 And LB: 9.01 0 9.13 Hp M0 +2384 V0353 And LB: 9.44 0 9.59 Hp M0 +2651 V0354 And SRD: 8.65 0 8.78 Hp 10.877 K0 +3454 V0355 And EA 7.69 0 8.0 7.9 V 52295.088 4.71841 F5 +3498 V0356 And LB: 9.04 0 9.17 Hp M1 +4129 V0357 And ELL: 6.70 0 6.74 6.7 Hp 1.66238 A2V +4621 V0358 And LB: 8.22 0 8.36 Hp M2 +4900 V0359 And BY: 10.89 0 11.31 Hp M0 +5002 V0360 And LB 7.05 0 7.23 Hp M3III +5450 V0361 And DSCTC 7.79 0 7.83 Hp 48500.0220 0.1140500 F0 +6852 V0362 And E: 8.42 0 8.55 Hp 18.518518 M0 +7122 V0363 And EB 9.10 0 9.37 9.34 Hp 48500.3980 1.27799 A2 +7205 V0364 And LB 9.21 0 9.31 Hp K2III +7511 V0365 And DSCTC 7.49 0 7.53 Hp 0.142816 F0 +8034 V0366 And LC 6.74 0 6.93 Hp M2Ib +8618 V0367 And SRS: 7.11 0 7.45 Hp 24.457 M4 +8682 V0368 And LB 9.01 0 9.58 Hp M8 +9150 V0369 And LB: 9.07 0 9.18 Hp M0 +9234 V0370 And SRB 6.18 0 7.19 Hp 228. M7III +9500 V0371 And BY: 8.30 0 8.34 Hp 1.4937 G5 +9740 V0372 And EA 9.05 0 9.53 9.37 Hp 51483.5838 2.940986 11 A5 +9779 V0373 And DSCTC 7.63 0 7.69 Hp 0.1128020 F0 +9867 V0374 And E: 10.30 0 11.55 Hp M0 +11785 V0375 And SRB 7.01 0 7.22 Hp 54. A0 +12039 V0376 And EB 7.68 0 8.00 7.96 Hp 52500.492 0.7986720 A0 +12136 V0377 And EA 7.46 0 7.58 Hp 48700.254 4.06366 05 B9 +113640 V0378 And BE 6.47 0 6.64 V B3Vpe +114100 V0379 And IA: 7.70 0 7.85 Hp B3 +114106 V0380 And LPB 7.97 0 8.02 Hp 1.37678 B9 +114305 V0381 And EA 7.35 0 7.42 Hp A0 +114384 V0382 And EB 9.16 0 9.44 9.24 Hp 51402.871 1.478983 A0 +114850 V0383 And LB: 8.35 0 8.46 Hp M0 +115504 V0384 And LB: 9.22 0 9.41 Hp M2 +115530 V0385 And LB 6.36 0 6.47 Hp M0 +115541 V0386 And LB: 9.32 0 9.53 Hp M0 +115643 V0387 And LB 6.76 0 6.87 Hp M0 +115755 V0388 And ACV 5.73 0 5.77 Hp 1.47931 B9Mn +116153 V0389 And EA 8.22 0 8.32 Hp A0 +116228 V0390 And SRB 6.56 0 6.75 Hp 303. M0 +116411 V0391 And LB 9.05 0 9.43 Hp M2 +116685 V0392 And EA 9.07 0 9.41 9.41 V 48035.107 4.046275 06 A2 +116716 V0393 And LB: 10.31 0 10.38 Hp +116870 V0394 And LPB 7.40 0 7.42 Hp 1.7776 B9 +117111 V0395 And EW 7.55 0 7.62 7.61 Hp 48699.9945 0.6847 A0 +117647 V0396 And DSCTC 7.92 0 7.95 Hp 0.1047310 F0 +117691 V0397 And LB: 8.60 0 8.72 Hp M5 +117744 V0398 And LB: 8.23 0 8.34 Hp M2 +117769 V0399 And LB 6.95 0 7.05 Hp M2III +118238 V0400 And E 8.57 0 8.65 Hp A5 +76 V0401 And LB: 9.04 0 9.14 Hp M0 +12056 V0406 And EB 9.22 0 9.42 9.39 V 52500.27 2.165032 B8 +117844 V0413 And EA/RS 7.61 0 8.46 U 48127.2 53. 04 G0III +10023 V0419 And DSCTC 9.14 1 0.04 B 0.054 F0 +2900 V0428 And SRS 5.13 1 0.06 V 11.5 K5-M0III +10951 V0436 And ACV 7.23 0 7.29 Hp 26.87 B9pCrEuSi +544 V0439 And BY 6.13 1 0.04 V 6.23 K0Ve +4983 V0442 And BE 6.63 0 6.92 V B2IVe +5521 V0443 And BY 7.66 1 0.02 V 20.27 K0V +5944 V0445 And BY 6.61 1 0.03 V 5.67 G0 +6680 V0446 And * 7.61 1 0.09 V 64.23 G4III +10321 V0450 And BY 7.19 1 0.02 V 7.6 G0V +10339 V0451 And BY 7.35 1 0.03 V 7.52 G0V +115331 V0453 And BY 7.36 1 0.04 V 7.489 K1V +116613 V0454 And BY 6.58 1 0.02 V 7.5 G3/4V +1030 V0470 And LPB 6.66 0 6.70 Hp 2.74725 B2V +6794 V0529 And GDOR+DSCT 6.48 0 6.51 Hp 0.40331 A7Vm +677 α And ACV: 2.06 1 0.04 V 0.966222 B8IVpHgMn +3693 ζ And ELL/RS 3.92 0 4.14 V 32761.016 17.769586 K1IIe +116584 λ And RS 3.65 0 4.05 V 43832.8 53.95 G8III-IV +113726 ο And GCAS 3.55 0 3.78 V B6IIIpe+A2p +49784 R Ant CST 7.65 0 V A0V +46810 S Ant EW 6.27 0 6.83 6.80 V 52627.7968 0.6483489 F3V +46924 T Ant DCEP 8.88 0 9.82 V 36120.608 5.898053 22 F6Iab +51821 U Ant LB 8.8 0 9.7 p C5,3(Nb) +50697 V Ant M 8.2 0 14.0 V 52772. 303. M7IIIe +49524 X Ant M 8.8 0 14.0 V 53458. 164.1 M2-M6e +47076 RR Ant LB 8.0 0 8.8 V M6III +50289 WY Ant RRAB 10.27 0 11.22 V 48500.5339 0.574341 15 A5-F4 +48188 XX Ant EA 8.60 0 9.23 9.23 V 53413.7871 0.888014 20 A8/F0V +49118 YY Ant LB 8.74 0 9.4 V M3/4III +49950 AB Ant LB 6.6 0 7.1 V C6,3(N0) +50456 AG Ant * 5.29 0 5.83 V 429. B9.5Ib-II +53227 AH Ant SRD 8.40 0 8.7 V 83. K2III +47018 AK Ant DSCTC 8.80 1 0.03 V 0.066 A2II/III(w) +46521 AL Ant LB 7.40 0 7.78 V M2/M3III +46833 AM Ant ACV 9.31 0 9.38 Hp 4.8910 Ap(Si) +46845 AN Ant EB 8.21 0 8.34 8.26 V 52974.8389 3.681309 F0/F2IV +47467 AO Ant LB 8.6 0 9.0 V M0 +49375 AP Ant ACV 6.93 0 6.99 Hp 18.201 Ap(Eu-Cr) +49960 AQ Ant LB 9.06 0 9.22 Hp K5 +50160 AR Ant LB 9.30 0 9.48 Hp M2/M3 +50256 AS Ant LB: 8.29 0 8.39 Hp K5III +50268 AT Ant SRA 8.1 0 8.6 V 53497. 45.3 M4III +51112 AU Ant SRB 8.30 0 8.64 V 30.3 M3III +51175 AV Ant SRB 7.5 0 8.3 V 84. M4III +51847 AW Ant SRD: 8.6 0 9.5 V 700. G5 +51924 AX Ant LB 8.53 0 8.70 V K5 +52239 AY Ant SRD 9.64 0 10.06 V 53.5 Kp +52567 AZ Ant DSCTC 7.93 0 7.96 Hp 0.1053030 A5/7V +53078 BB Ant SRB 8.1 0 9.0 V 125. M6III +53325 BC Ant LB 8.85 0 9.09 V K5 +48776 BF Ant DSCTC 6.32 1 0.01 V A4V +73223 R Aps CST: 5.35 0 V K4III-M0III +74179 S Aps RCB 9.6 0 15.2 V C(R3) +75707 U Aps LB 11.0 0 11.6 p C(Nb) +72444 TY Aps RRAB 11.25 0 12.20 V 39726.275 0.5016935 32 A8-F6 +85473 XX Aps M 10.1 0 13.2 V 53669. 159.54 Me +72721 XZ Aps RRAB 10.8 0 12.8 p 28715.330 0.587434 12 +85095 DW Aps EA/SD: 7.9 0 9.1 p 39209.502 2.312950 14 B6III +76011 NN Aps ACV 6.86 0 6.92 V +85760 NO Aps SR 5.71 0 5.95 V +69451 NP Aps LB 8.27 0 8.66 Hp +69850 NQ Aps SRB 7.22 0 7.35 Hp +69956 NR Aps LB: 7.86 0 7.97 Hp +70547 NS Aps LB 7.84 0 8.23 Hp +71929 NT Aps EW 8.40 0 8.87 Hp +72825 NU Aps LB: 8.56 0 8.71 Hp +72801 NV Aps LB: 8.90 0 9.03 Hp +73041 NW Aps EB 9.23 0 9.51 Hp +73122 NX Aps I: 11.24 0 11.66 Hp +74405 NY Aps BY: 9.50 0 9.61 Hp +74673 NZ Aps LB 7.94 0 8.08 Hp +74999 OO Aps LB 6.58 0 6.68 Hp +75420 OP Aps DSCTC 8.15 0 8.23 Hp +78179 OQ Aps LB 8.58 0 8.75 Hp +79747 OR Aps LPB: 9.11 0 9.22 Hp +81438 OS Aps LB 8.93 0 9.43 Hp +81530 OT Aps EA 7.98 0 8.34 Hp +81743 OU Aps ACV: 8.60 0 8.69 Hp +82982 OV Aps ACV: 8.14 0 8.19 Hp +83972 OW Aps LPB 7.14 0 7.19 Hp +84042 OX Aps LB 8.24 0 8.52 Hp +85714 OY Aps LB 8.01 0 8.43 Hp +85849 OZ Aps EA 8.59 0 8.67 Hp +86712 PP Aps EA 9.65 0 10.02 Hp +72055 PR Aps DSCTC 8.07 0 8.16 Hp +75994 PS Aps EB 7.86 0 7.97 7.89 V 48574.241 1.086152 F3V +70248 ε Aps GCAS: 4.99 0 5.04 Hp +68815 tet Aps SRB 6.4 0 8.6 p 119. M7III +117054 R Aqr M+ZAND 5.2 0 12.4 V 54045. 390. 41 M5e-M8.5e+pec +102829 T Aqr M 7.0 0 14.2 V 53229. 201.1 47 M2e-M5.5e +108876 U Aqr RCB 10.6 0 15.9 V pec +102546 V Aqr SRB 7.6 0 10.1 V 241. M6e +110146 X Aqr M 7.2 0 15.0 V 52951. 311.4 42 S6,3e:(M4e-M6.5e +117703 Z Aqr SRA 7.4 0 10.2 V 52945. 136.6 50 M1e-M7III +110509 RT Aqr M 8.8 0 13.1 V 51890. 252.2 50 M5e-M6e +115553 RU Aqr SRB 8.5 0 10.1 V 118.8 M4/5III +104930 SW Aqr RRAB 10.37 0 11.68 V 52896.700 0.459300 11 A5-G1 +106645 SX Aqr RRAB 11.05 0 12.19 V 53882.828 0.5357087 10 A5-F7 +106565 WW Aqr M 10.5 2 14.5 V 53640. 242.7 +101991 AE Aqr XM+ELL 10.18 0 12.12 V K3Ve+pec(e) +109165 BM Aqr SRB 9.6 0 10.4 V 55.6 M3III: +116664 BR Aqr RRAB 10.75 0 11.93 V 52068.837 0.4818713 12 A8-F6 +117439 BS Aqr DSCT 9.12 0 9.62 V 52093.793 0.197822 31 A8-F3 +108839 BV Aqr RRC 10.72 0 11.24 V 52730.904 0.363714 50 +110514 BW Aqr EA 10.31 0 10.92 10.86 V 52501.720 6.719708 04 F8IV+F7IV +111719 CY Aqr SXPHE 10.42 0 11.20 V 52956.629 0.061038408 26 A2-A8 +115135 DN Aqr RRAB 10.73 0 11.51 V 52033.899 0.633760 16 F3-F9 +113021 DS Aqr RVA 10.2 0 11.3 V 52213.5 77.34 F2II +103545 DV Aqr EB 5.89 0 6.25 6.1 V 52500.21 1.575529 A9IV +110396 DZ Aqr LB 8.2 0 9.3 V M7 +111452 EE Aqr EB 7.91 0 8.55 8.12 V 52500.055 0.50899582 F0V +117317 EL Aqr EW 10.35 0 10.75 10.71 V 52500.119 0.4814092 F3V +103261 EM Aqr DSCTC 6.55 1 0.03 V 0.1024746 A9Vn +102624 EN Aqr LB 4.41 1 0.06 V M3III +107516 EP Aqr SRB 6.37 0 6.82 V 55. M8III +113930 EQ Aqr SRB 9.1 0 9.9 V 117. M3/M4 +114017 ER Aqr LB 7.14 0 7.81 V M3III +117629 ET Aqr ACV 5.12 0 5.21 V 3.735239 B9pSiCrSr +104634 EW Aqr DSCTC 6.41 0 6.48 V 0.0968946 A8III +108644 FF Aqr EA/RS 10.08 0 11.47 U 42752.9577 9.207755 06 G8III+sdOB +110616 FI Aqr ACV 7.49 0 7.52 V 4.689 B9pSi +111802 FK Aqr UV+BY 10.9 0 11.72 U 4.252 M2Ve +112615 FM Aqr DSCTC 6.16 0 6.19 V 0.087 A9III-IV +103899 FN Aqr DSCTC 7.34 1 0.01 V F5III +113031 HI Aqr ACV: 5.80 1 0.01 V 3.40 B9pHgMn +114252 HK Aqr BY+UV 10.72 0 10.94 V 0.4312 M2.5Ve +111506 HM Aqr E: 8.72 0 9.40 V 52404. 255. A0III +106335 HZ Aqr RS 9.78 0 9.90 V 4.03 K3Ve+K7Ve +113020 IL Aqr BY 10.15 0 10.21 V M4V +101926 IM Aqr LB 7.81 0 7.97 Hp M1 +101988 IN Aqr LB 8.01 0 8.14 Hp M4III +102041 IO Aqr EA 8.80 0 9.22 9.17 V 52530.4516 2.368091 11 G0 +102777 IP Aqr LB 7.70 0 7.86 Hp M0 +102770 IQ Aqr SRB 6.02 0 6.58 Hp 384.6 M3 +103026 IR Aqr LB 7.73 0 7.92 Hp M4III: +103447 IS Aqr LB 7.77 0 7.89 Hp M0 +103769 IT Aqr SR 7.10 0 7.25 Hp M0 +103851 IU Aqr LB 6.46 0 6.64 Hp M3 +104279 IV Aqr LC 6.50 0 6.65 Hp M4:II: +105019 IW Aqr SRB 6.47 0 6.54 Hp 163. M4III: +105389 IX Aqr LB 7.50 0 7.61 Hp K2 +105575 IY Aqr LB 7.67 0 7.86 Hp M0 +106544 IZ Aqr LB 6.23 0 6.47 Hp M3 +108562 KK Aqr LB 7.90 0 8.23 Hp M2III +108844 KL Aqr LB 8.33 0 9.07 Hp M8 +108909 KM Aqr LB: 8.13 0 8.25 Hp M0 +109201 KN Aqr LB 6.85 0 7.02 Hp M3 +109382 KO Aqr LB 8.51 0 8.86 Hp M0 +109395 KP Aqr LB: 8.03 0 8.15 Hp M1/M2III +109476 KQ Aqr RS: 9.45 0 9.57 V 2.43367 A0V +109613 KR Aqr LB 7.25 0 7.36 Hp M0 +110037 KS Aqr LB 9.42 0 9.63 Hp M1 +110388 KT Aqr LB: 7.83 0 7.94 Hp M0III +110528 KU Aqr LB 7.7 0 8.6 V M3III +110707 KV Aqr E: 6.84 0 7.03 Hp A1V+G8/K1III +110881 KW Aqr LB 7.92 0 8.31 Hp M3III +111162 KX Aqr EA 8.11 0 8.58 8.47 V 52444.834 2.073225 10 F8/G0V +111315 KY Aqr LB: 8.81 0 8.94 Hp K5 +111365 KZ Aqr LB: 8.05 0 8.15 Hp M1 +111454 LL Aqr EA 9.23 0 9.86 0.32 V 48762.552 20.1784 G0 +111581 LM Aqr LB 8.19 0 8.39 Hp M0 +111606 LN Aqr BY: 10.86 0 11.30 Hp K: +111647 LO Aqr IB: 7.44 0 7.59 Hp F0 +112078 LP Aqr LB 6.30 0 6.64 Hp M0 +112420 LQ Aqr LB 6.71 0 6.78 Hp M0 +114094 LR Aqr LB 8.7 0 9.3 V M3III: +114426 LS Aqr SRD: 8.33 0 8.61 V 269. G6/G8Ib +115657 LT Aqr LB 7.96 0 8.13 Hp M3 +115844 LU Aqr SRD 7.39 0 7.54 Hp 14.9 K3III +117738 LV Aqr SR 7.53 0 7.75 Hp 34.32 M2III +117747 LW Aqr LB 7.24 0 7.46 Hp M4III +118002 LX Aqr SRB 7.29 0 7.38 Hp 312. M2III +102935 NP Aqr EB 7.59 0 7.69 7.64 V 47985.661 0.806982 F0V +104456 NR Aqr SRS: 7.56 1 0.02 V 12.08 K5III +105066 NS Aqr BY 8.08 1 0.02 V 13.78 K0V +109110 NT Aqr BY 7.57 1 0.06 V 10.29 G0V +111726 NU Aqr LB: 8.72 1 0.02 V K0III +111870 NV Aqr BY 7.74 1 0.02 V 6.20 G8/K0V +115527 NX Aqr BY: 7.62 1 0.02 V G5V +104743 OR Aqr EA 7.94 0 8.11 8.11 V 47977.020 11.42365 03 F0V +115675 OV Aqr EA 8.72 0 8.98 V 48635.393 21.66595 02 F2V +112961 λ Aqr LB 3.57 0 3.80 V M2.5IIIa +108874 ο Aqr GCAS 4.68 0 4.89 V B7IVe-sh +110672 Ï€ Aqr GCAS 4.42 0 4.87 V B1Ve +114939 χ Aqr SRB: 4.75 0 5.10 V 35.250 M3III +93820 R Aql M 5.5 0 12.0 V 43458. 284.2 42 M5e-M9e +99503 S Aql SRA 8.9 0 12.8 V 43855. 146.45 48 M3e-M5.5e +95820 U Aql DCEP 6.08 0 6.86 V 34922.31 7.02393 30 F5I-II-G1 +93666 V Aql SRB 6.6 0 8.4 V 353. C5,4-C6,4(N6) +93867 Y Aql E/KE 5.02 1 0.04 0.03 B 38607.445 1.30227 B8III-V +98220 RR Aql M 7.8 0 14.5 V 41764. 394.78 30 M6e-M9 +96580 RT Aql M 7.6 0 14.5 V 43290. 327.11 42 M6e-M8e(S) +93681 SZ Aql DCEP 7.92 0 9.26 V 35528.937 17.137939 37 F7-K1 +93990 TT Aql DCEP 6.46 0 7.70 V 37236.10 13.7546 34 F6-G5 +94605 TY Aql ACV: 10.5 0 11.0 p A1p(Si) +101162 TZ Aql LB 10.2 0 11.0 p M6 +93158 UV Aql SRA 11.1 0 12.4 p 30906. 385.5 C5,4-5(N4) +97465 WX Aql SRB 11.5 0 12.6 p 30584. 107. 45 M6 +101453 CH Aql RR 11.5 0 12.5 p 36050.335 0.38918702 +93124 FF Aql DCEPS 5.18 0 5.68 V 41576.428 4.470916 48 F5Ia-F8Ia +94094 FM Aql DCEP 7.89 0 8.66 V 35151.723 6.11423 30 F5-F9Ia +94402 FN Aql DCEPS 7.96 0 8.75 V 36804.603 9.48151 49 F8-G2 +97586 GY Aql SR 10. 2 16. p 204. M6III:e-M8 +98553 KL Aql DCEP 9.82 0 10.56 V 43338.695 6.108015 23 F6Iab-G6 +101156 KN Aql SRB 8.52 0 9.35 V 70. 41 M5e +92177 KO Aql EA/SD: 8.3 0 9.50 8.40 B 41887.4724 2.864055 13 A0V-A3V +96637 LU Aql SRB 10.9 0 12.0 p 27344. 105.7 M4-M5 +97184 NO Aql SRA 11.0 0 12.7 p 31592. 73.6 42 M4e +98270 PX Aql SR 9.4 0 11.7 V 27658. 154.8 M5 +96840 QS Aql EA/SD 5.93 0 6.06 5.97 V 40443.489 2.513294 17 B5V +99309 QY Aql EA/DS: 11.4 0 14.6 p 30223.615 7.229590 15 F0 +93399 V0336 Aql DCEP 9.50 0 10.28 V 36255.641 7.303552 31 F5-G2 +101356 V0341 Aql RRAB 10.13 0 11.39 V 41196.251 0.57802054 13 A6-F5 +94774 V0342 Aql EA 9.5 0 12.9 p 39318.581 3.390882 14 A4II +96349 V0417 Aql EW/KW: 11. 0 11.5 11.5 p 43016.404 0.3701288 G2V +96204 V0450 Aql SRB 6.30 0 6.65 V 31320. 64.20 52 M5III-M8III +93063 V0493 Aql DCEP 10.79 0 11.36 V 35653.117 2.987751 30 +94004 V0496 Aql DCEPS 7.59 0 7.98 V 36017.062 6.80703 33 G5 +98675 V0572 Aql CWB 11.00 0 11.44 V 41921.259 3.767697 45 +93502 V0599 Aql EB/KE: 6.67 0 6.75 6.73 V 21836.539 1.849084 B2V+B8 +95118 V0600 Aql DCEP 9.73 0 10.40 V 36317.031 7.23845 33 F6-G0 +98217 V0733 Aql DCEP 9.73 0 10.16 V 42597.207 6.178748 32 F9Ib +93809 V0805 Aql EA/DM 7.58 0 8.22 7.90 V 27927.8470 2.4082337 11 A2+A7 +96007 V0822 Aql EB/DM 6.87 0 7.44 7.07 V 42577.333 5.294950 B5+B8:V +93751 V0843 Aql EA/KE 9.8 0 10.2 p 29864.182 1.497957 B9 +100599 V0865 Aql M 9.5 0 13.9 p 38593. 364.8 M6-M7(S7,5e:) +92787 V0913 Aql SRA 9.2 0 10.5 p 29735. 50. M5II +95929 V0923 Aql GCAS 6.04 1 0.12 V B5.5IIIpe-B8V +97794 V1162 Aql DCEPS 8.6 0 9.3 p 25803.400 5.3761 50 G5 +97991 V1165 Aql CEP: 10. 0 10.5 p 36755.472 6.82957 30 +92865 V1182 Aql EB/KE: 8.5 0 8.65 8.65 V 39651.720 1.621924 O8Vnn +94982 V1208 Aql DSCTC 5.51 0 5.56 V 0.149663 F0III +92871 V1285 Aql UV 10.8 0 11.82 B M2Ve +93179 V1286 Aql ACV 5.83 0 5.93 V 41517.4 6.05 A4p(Eu-Cr-Sr) +94477 V1288 Aql ACV 5.06 0 5.16 V 44099.23 1.73 B8II-IIIp(Hg:) +97871 V1291 Aql ACV 5.61 0 5.67 V 32323. 224.5 A5p(Sr-Cr-Eu) +96159 V1293 Aql SRB 8.3 0 9.0 p M5III +96196 V1294 Aql GCAS 6.82 0 7.23 V B0.5IV +98719 V1295 Aql * 7.87 1 0.02 V A0ep +91910 V1331 Aql EB/KE: 7.7 0 8.05 7.95 V 42610.070 1.364209 B1V +97607 V1339 Aql GCAS: 6.33 0 6.52 V B2.5IVe +99540 V1357 Aql SXARI 7.94 1 0.04 V 44084.32 19.5 B5p +96714 V1379 Aql RS 8.34 0 8.55 V +98910 V1401 Aql SRD 6.18 0 6.55 V +93626 V1402 Aql WR 11.59 1 0.14 B +93904 V1403 Aql ACYG 7.41 1 0.08 V +99101 V1422 Aql BY 8.09 1 0.10 V +99210 V1423 Aql RS 7.8 1 0.04 V +94496 V1427 Aql SRD 10.48 0 10.88 U +94761 V1428 Aql BY 9.09 0 9.13 V +95793 V1431 Aql ACVO: 6.06 1 0.04 v +92151 V1434 Aql LB: 7.56 0 7.68 Hp +92715 V1435 Aql LB: 7.32 0 7.46 Hp +92836 V1436 Aql E: 9.52 0 11.45 Hp +93215 V1437 Aql BE 8.99 0 9.10 Hp +93259 V1438 Aql DSCTC 7.79 0 7.86 Hp +93349 V1439 Aql EB: 7.68 0 7.98 Hp +93724 V1440 Aql ELL:+NL: 8.40 0 8.75 Hp +93732 V1441 Aql EB 6.91 0 7.00 Hp +93773 V1442 Aql LB: 7.46 0 7.56 Hp +94011 V1443 Aql GCAS: 8.95 0 9.13 Hp +94169 V1444 Aql ACV: 7.93 0 7.99 Hp +94294 V1445 Aql LB: 11.10 0 11.37 Hp +94384 V1446 Aql BE 9.16 0 9.28 Hp +94588 V1447 Aql LPB: 7.34 0 7.44 Hp +94596 V1448 Aql BE: 7.92 0 8.09 Hp +94793 V1449 Aql BCEP 8.30 0 8.38 Hp +94824 V1450 Aql EB: 8.98 0 9.30 Hp +95049 V1451 Aql LB 6.83 0 6.99 Hp +95082 V1452 Aql CEP: 7.75 0 7.85 Hp +95499 V1453 Aql LB: 9.10 0 9.20 Hp +95547 V1454 Aql E: 8.09 0 8.23 Hp +95588 V1455 Aql EA: 8.08 0 8.27 Hp +95716 V1456 Aql SRB 8.42 0 8.63 Hp +95748 V1457 Aql SRB 8.07 0 8.26 Hp +96309 V1458 Aql SRA 8.33 0 8.45 Hp +96682 V1459 Aql LB: 8.48 0 8.65 Hp +96916 V1460 Aql LB: 9.31 0 9.41 Hp +97065 V1461 Aql EA 8.91 0 9.34 Hp +97059 V1462 Aql BE 8.28 0 8.39 Hp +97117 V1463 Aql BE 8.05 0 8.19 Hp +97600 V1464 Aql RRC: 8.69 0 8.76 Hp +97664 V1465 Aql ACV: 9.22 0 9.32 Hp +97787 V1466 Aql BE: 6.50 0 6.56 Hp +98060 V1467 Aql LB: 11.81 0 12.28 Hp +98542 V1468 Aql LB 10.31 0 10.63 Hp +98538 V1469 Aql LB 8.48 0 8.66 Hp +98826 V1470 Aql E 7.83 0 7.93 Hp +98893 V1471 Aql EB: 8.42 0 8.63 Hp +98954 V1472 Aql E: 6.38 0 6.54 Hp +99250 V1473 Aql LPB: 7.15 0 7.21 Hp +99456 V1474 Aql LB 7.39 0 7.65 Hp +99533 V1475 Aql LB 7.11 0 7.26 Hp +99547 V1476 Aql LB: 11.69 0 11.98 Hp +99720 V1477 Aql CEP: 9.32 0 9.76 Hp +99755 V1478 Aql LB 8.78 0 9.17 Hp +99754 V1479 Aql LB: 11.29 0 11.53 Hp +99890 V1480 Aql LB 12.05 0 12.69 Hp +99983 V1481 Aql LB 7.24 0 7.56 Hp +100550 V1482 Aql SRB 6.96 0 7.09 Hp +100926 V1483 Aql LB: 6.83 0 7.00 Hp +101639 V1484 Aql LB: 10.10 0 10.31 Hp +91911 V1485 Aql WR 11.88 0 12.70 V +98698 V1654 Aql BY 7.48 1 0.04 V +92943 V1665 Aql EA 8.09 0 8.40 8.26 V 52810.870 3.88181 B9V +94482 V1686 Aql EB 8.91 0 9.01 8.98 V 52070.764 6.07195 B6III +94650 V1688 Aql BY 8.06 1 0.02 V 14.16 K0V +95453 V1691 Aql DSCTC 6.82 1 0.04 B 0.0781 A9V +99711 V1703 Aql BY 7.79 1 0.03 V 23.98 K2V +92837 V1709 Aql GDOR 7.43 0 7.49 Hp 0.78666 F5 +97649 α Aql DSCT 0.77 1 0.00 V 0.06342 A7IV/V +97804 η Aql DCEP 3.48 0 4.39 V 36084.656 7.176641 32 F6Ib-G4Ib +96665 σ Aql EB/DM 5.14 1 0.2 0.1 V 22486.797 1.95026 B3V+B3V +81589 R Ara EA 6.17 0 7.32 6.2 V 47386.1200 4.42522 14 B9Vp +88064 S Ara RRAB 9.92 0 11.24 V 52764.738 0.4518587 12 A5-F3 +83387 T Ara SRB 8.9 0 9.8 V 170. C(R-Nb) +81309 X Ara M 8.4 0 13.5 V 52455. 177.7 40 M5e-M7eII-III +82695 Z Ara M 9.2 2 14.0 V 52982. 293.3 60 M3e-M5e +87980 SS Ara CST: 9.28 0 V K2/4 +84059 SZ Ara SRA 9.0 0 11.5 V 53097. 221.8 Ce(R-Nb) +88802 IN Ara RRAB 12.32 0 13.6 V 52802.840 0.631489 17 +88402 MS Ara RRAB 11.52 0 12.48 V 52918.610 0.5249875 25 +82023 V0340 Ara DCEP 9.63 0 10.76 V 52351.75 20.81110 24 +83003 V0341 Ara NL: 10.47 0 11.04 V +86306 V0535 Ara EW 7.17 0 7.75 7.71 V 39292.9351 0.62930098 A8V +87314 V0539 Ara EA+LPB 5.71 0 6.24 6.16 V 48753.440 3.169094 11 B2V+B3V +82531 V0610 Ara EW 8.86 0 9.31 V 52549.548 0.543159 F0V +86628 V0626 Ara LB 6.23 0 6.46 V M3III +85467 V0750 Ara BE 6.62 0 6.68 V B35e +84586 V0824 Ara RS 6.63 0 6.97 V 1.681652 G5IV+K0V-IV +83323 V0828 Ara BE 6.11 0 6.24 V B2IVe +84311 V0829 Ara ELL: 6.09 0 6.20 V 80. +88743 V0832 Ara RS 7.08 0 7.16 V 34.6 G8-K0III-IIp +83916 V0837 Ara WR 10.9 0 12.4 V [WC10] +81376 V0840 Ara LB 6.83 0 6.91 Hp M2/M3III +81478 V0841 Ara BY: 8.73 0 8.79 Hp 4.6875 K0V +81700 V0842 Ara SRB 8.0 0 8.7 V 166. +82335 V0843 Ara ACV 7.78 0 7.82 Hp 48502.3182 2.57281 Ap(Si) +82745 V0844 Ara LB: 8.38 0 8.49 Hp K2/K3III +82769 V0845 Ara LB: 8.37 0 8.48 Hp M3/M4III +82868 V0846 Ara BE 6.27 0 6.37 Hp B3Vnpe +82985 V0847 Ara LPB 6.50 0 6.53 Hp 0.94213 B5III +83105 V0848 Ara BE: 8.05 0 8.24 Hp B2IV +83250 V0849 Ara LC 8.02 0 8.21 Hp M3/M4Ib +83618 V0850 Ara LB 7.87 0 8.03 Hp M3III +83802 V0851 Ara EB 6.93 0 6.98 6.97 Hp 48500.2098 0.617372 A7III +83943 V0852 Ara EA 7.75 0 8.10 7.94 Hp 48500.410 3.7400 09 B8V +84025 V0853 Ara ACV 8.77 0 8.82 Hp 48501.486 1.9525 Ap(Si) +84105 V0854 Ara LB 5.87 0 5.99 Hp M1/M2III +84148 V0855 Ara LB 7.25 0 7.35 Hp M4III +84231 V0856 Ara LB: 8.34 0 8.44 Hp K4III: +84642 V0857 Ara BY: 9.59 0 9.71 Hp G8/K0V +84686 V0858 Ara ACV 8.21 0 8.31 Hp 48500.6500 1.80495 Ap(Cr-Eu) +85435 V0859 Ara LC 7.02 0 7.14 Hp M2II +85553 V0860 Ara LB 7.17 0 7.30 Hp M2/M3III +85729 V0861 Ara ACYG: 8.11 0 8.18 Hp B1Ib +85751 V0862 Ara BE: 5.92 0 6.04 Hp B7II/III +85820 V0863 Ara SRB 7.47 0 8.15 Hp 294. M4/5+A2/3V +85895 V0864 Ara BE 6.97 0 7.09 Hp B7:Vnnpe +85968 V0865 Ara SRS 7.55 0 7.70 V 27.8 M3/4III +86200 V0866 Ara ACV: 7.68 0 7.74 Hp Ap(Si-Cr) +86658 V0867 Ara EW 7.40 0 7.60 7.57 V 52764.7376 0.4937123 A0/A1IV +87302 V0868 Ara BE 7.57 0 7.63 Hp 22.568 B6Vne +88491 V0869 Ara LC 7.64 0 7.83 Hp M2Ib/II +88853 V0870 Ara EW 9.00 0 9.40 9.40 Hp 52031.780 0.399773 F8 +81650 V0872 Ara GDOR: 6.37 0 6.39 Hp 0.4266 +83603 V0873 Ara ACYG 7.17 0 7.23 Hp 3.08 +81604 V0882 Ara EA 7.61 0 7.80 7.77 V 48180.587 20.9659 03 A2IV +85792 α Ara BE 2.79 0 3.13 b 0.9807 B2Vne +85079 ι Ara BE 5.18 0 5.26 V 0.5565 B2IIIne +10576 R Ari M 7.1 0 14.3 V 53640. 185.67 47 M3e-M6e +13092 T Ari M 7.3 0 11.5 V 52600. 340. 49 M6e-M8e +10472 V Ari SRC 8.45 0 8.90 V 58.7 C5II +14601 X Ari RRAB 8.97 0 9.95 V 52894.804 0.6511628 13 A8-F4 +8993 RR Ari CST: 5.76 0 V K0III +13654 RZ Ari SRB 5.45 0 6.01 V 56.5 M6III +14893 SX Ari SXARI 5.75 0 5.81 V 0.727902 B9pSi +11678 UU Ari DSCTC 6.10 0 6.15 V 0.0676 A9V +12832 UV Ari DSCTC 5.18 0 5.22 V 0.0355 A7III-IV +14514 UW Ari CST: 6.11 0 V B1.5V +16042 UX Ari RS 6.36 0 6.70 V G5V+K0IV +8619 VV Ari DSCTC 6.69 0 6.73 V 0.0764 F0III +11390 VW Ari DSCT 6.64 0 6.76 V 0.1606 F0IV +12781 VX Ari UV 11.2 0 12.14 B M3.5Ve +13118 VY Ari RS 6.68 0 7.15 V 16.1996 K3-4IV-V +13121 VZ Ari ACV 5.82 0 5.89 V A0V +14610 WZ Ari RS 8.17 0 8.25 V 6.5870 G4V+G6V +15506 XX Ari ACV 7.33 0 7.42 V 2.4997 B9VSiCr +8968 ZZ Ari SRB 8.14 0 8.47 V 98. M2 +9619 AA Ari RV: 8.53 0 8.77 V 53586.9 67.1 K7 +9796 AB Ari LB: 9.00 0 9.20 V M0 +9963 AC Ari SRB 7.08 0 7.28 V 32. M1 +10701 AD Ari EB 7.40 0 7.47 7.4 V 53330.654 0.53972 F0 +10964 AE Ari LB 7.4 0 7.8 V +11035 AF Ari EA: 6.71 0 6.99 Hp 48081.59 G2IV +11369 AG Ari EA 8.14 0 8.42 8.3 V 48500.2720 1.96315 B9 +11982 AH Ari LB: 8.26 0 8.40 V K5 +12017 AI Ari SRB 10.0 0 10.6 V 41.4 M5 +12468 AK Ari LB: 7.87 0 8.02 V M1 +12657 AL Ari EA 9.23 0 9.77 9.4 V 52892.849 3.747457 06 F8 +12731 AM Ari SRB 7.18 0 7.38 V 55. M1 +13461 AN Ari SRS 9.10 0 9.42 V 26.4 M2 +13645 AO Ari LB: 6.81 0 6.93 Hp M0 +13801 AP Ari BY: 9.90 0 10.06 Hp K0V +14433 AQ Ari SRS: 7.14 0 7.27 Hp 4.17 M1III +15361 AR Ari DSCT 7.87 0 7.98 Hp 0.1770392 F0 +15939 AS Ari LB: 7.86 0 8.02 Hp M1 +16071 AT Ari SRS: 8.06 0 8.17 Hp 7.64 K5 +10013 AU Ari SRS 8.44 0 8.55 V 6.1236 M0 +10155 AV Ari SRS 5.67 0 5.74 V 5.0320 M3III +12600 AY Ari SRD: 6.82 1 0.02 V K0IV +10218 AZ Ari BY 7.33 1 0.02 V 8.98 G5V +13081 BC Ari BY 7.56 1 0.02 V K1V +13806 BW Ari BY 8.90 1 0.03 V 9.57 G5 +16090 CK Ari RS 11.04 0 11.17 * 10.0933 M0.5V +8832 γ Ari ACV 4.62 1 0.04 V 2.6095 A1pSrCrEu +24645 R Aur M 6.7 0 14.0 V 54040. 450. 51 M6.5e-M9.5e +30449 V Aur M 8.5 0 13.0 V 54699. 349. 54 C6,2e(N3e) +29441 X Aur M 7.8 0 13.8 V 54858. 165.5 50 M3e-M7e +25642 Y Aur DCEP 9.16 0 10.02 V 48164.755 3.8594076 33 F5-F9 +28714 RS Aur SR 8.7 0 11.7 V 173. 47 M4e-M6e +30827 RT Aur DCEP 5.00 0 5.82 V 54153.880 3.728485 25 F4Ib-G1Ib +26675 RU Aur M 8.0 0 16.0 V 54782. 463.0 42 M7e-M9e +31379 RV Aur SRB 11.8 0 13.1 p 229. C4,5 +23873 RW Aur IT 9.2 0 12.5 V G5Vep +23360 RX Aur DCEP 7.28 0 8.02 V 48503.159 11.626 49 F6-G2 +22925 SU Aur INT 8.9 0 10.0 V G2III(Li) +24201 SX Aur EB 8.38 0 9.14 8.87 V 52500.3179 1.2100855 B3V+B5V +24281 SY Aur DCEP 8.74 0 9.40 V 48164.95 10.14465 50 F5-F8 +31484 TU Aur SRB 7.60 0 8.30 Hp 156. M5III +23965 TX Aur LB 8.5 0 9.2 V C5,4(N3) +34743 TZ Aur RRAB 11.08 0 12.45 V 53751.356 0.39167475 14 A9-F7 +31579 UU Aur SRB 4.9 0 7.0 V 441. C5,3-C7,4(N3) +25050 UV Aur M 7.4 0 10.7 V 54821. 392.8 C6,2-C8,2Jep(Ne) +33450 UW Aur SRA 9.5 0 11.6 V 42800. 560.7 55 C4,5J(R6p/N3) +24549 UX Aur SRC 8.4 0 9.2 V 90. M4II +24476 UZ Aur SRB 9.7 0 10.8 p 69. M3-M4III +36314 VX Aur M 8.0 0 13.1 V 54467. 325.8 M5e +31173 WW Aur EA 5.86 0 6.54 6.43 V 52501.8139 2.52501936 10 A4m+A5m +24500 YZ Aur DCEP 9.94 0 10.93 V 43816.417 18.192830 30 F5-G2 +22910 AB Aur INA 6.3 0 8.4 V A0Ve+sh +25672 AD Aur SRB 11.0 0 13.1 p 162.3 M6 +24575 AE Aur INA 5.78 0 6.08 V O9.5V +30618 AH Aur EW 10.18 1 0.50 0.50 V 52500.3848 0.4941067 F7V +23210 AN Aur DCEP 10.11 0 10.83 V 51536.715 10.289381 52 F6-F9 +24740 AR Aur EA 6.15 0 6.82 6.70 V 52501.392 4.134651 07 B9p+B9(Hg-Mn) +22796 AU Aur M 10.0 0 14.0 V 54521. 400.5 50 C6-7,3e(N0e) +23657 BF Aur EB 8.70 0 9.48 9.48 V 52500.950 1.5832232 B5V+B5V +24226 BH Aur RRAB 11.12 0 12.20 V 53755.264 0.4560898 17 +24105 BK Aur DCEP 9.12 0 9.90 V 42825.384 8.002432 31 G2 +28715 CQ Aur EA/RS 9.04 0 9.37 9.14 V 43814.05 10.62251 14 G8IV+F5V +33368 CX Aur LB: 11.7 0 12.3 p K8V +23520 EL Aur LB 8.9 0 9.6 V C5,4(N3) +24744 EO Aur EA 7.56 0 8.13 7.89 V 52500.255 4.0656497 12 B3V+B3V +27398 FU Aur LB 10.6 0 12.5 p C7,2(N0) +26619 HH Aur CST: 8.54 0 V G6IV +32900 HS Aur EA 10.16 0 10.90 10.70 V 46105.6419 9.815377 03 G8V+G8V +23733 HZ Aur ACV 7.02 0 7.13 V 6.43000 B9pSiCr +24799 IQ Aur ACV 5.35 0 5.43 V 2.4660 22 B9VpSi +25565 IU Aur EB 8.19 0 8.89 8.74 V 38448.4068 1.81147435 B0p+B1Vp +24504 KW Aur DSCTC+ELL 4.95 0 5.08 V 0.088088 A9IV +25733 LY Aur EB 6.66 0 7.35 7.23 V 52501.836 4.002494 O9.5+O9.5III +24938 MZ Aur BE 8.14 0 8.30 Hp B2Vnpea +26718 NO Aur LC 6.06 0 6.44 V M2SIab +33643 NY Aur ACV 6.56 0 6.73 V 5.4379 A0pEuSrCr +33041 OX Aur DSCT 5.94 0 6.14 V 0.154412 F2IV +24738 PU Aur LB: 5.55 0 5.78 V M4III +29565 QR Aur ACV 7.19 0 7.21 Hp 16.990 A0pEuSrCr +34603 QY Aur UV 10.9 0 13.19 B M5Ve+M5Ve +22670 V0346 Aur LB: 8.43 0 8.72 Hp 365. SC5/9 +24815 V0348 Aur LB 12.0 0 13. p C6,3(N) +33269 V0352 Aur DSCTC 6.13 0 6.18 V 0.17 F1IV +25500 V0362 Aur LC 7.29 0 7.73 V M1.5Iab-Ib +31695 V0382 Aur SRD: 9.00 0 9.12 V F7IVwe +24488 V0390 Aur BY:+UV: 6.92 0 6.99 V 9.8 G5III +28930 V0394 Aur SRC 6.01 0 6.11 V 32.896 M3II +29793 V0395 Aur ELL 7.34 0 7.43 V 43978.905 23.1755 F5III+B8V +23783 V0398 Aur GDOR 4.93 0 5.03 V 1.25804 F0V +23433 V0402 Aur EW 8.84 0 8.98 8.98 V 54115.520 0.6034956 F2 +28162 V0403 Aur RS 6.49 0 6.68 V 73.1 G8III +29911 V0406 Aur EA 7.47 0 7.58 7.57 V 46770.690 5.46414 07 A3 +22863 V0407 Aur LB: 8.10 0 8.25 Hp M1 +22928 V0408 Aur LC 7.36 0 7.47 Hp M0Ib +23013 V0409 Aur SRD: 8.76 0 8.93 Hp 48532.31 58.19 F8 +23337 V0410 Aur EW 10.10 0 10.45 Hp 54783.884 0.3663612 G0 +23608 V0411 Aur LB: 8.24 0 8.35 Hp M0 +23947 V0412 Aur LB: 8.45 0 8.70 Hp M6III: +24029 V0413 Aur BE 7.95 0 8.33 Hp B1Ve +24118 V0414 Aur BE 8.20 0 8.30 Hp B2Vne +24238 V0415 Aur BE 7.80 0 7.87 Hp B2:V:nne +24326 V0416 Aur GCAS: 7.23 0 7.48 Hp B2V:pe +24350 V0417 Aur EA 7.92 0 8.15 8.08 Hp 48500.5262 1.86553 13 A0 +24481 V0418 Aur LB: 8.39 0 8.49 Hp K0 +24892 V0419 Aur LB: 7.32 0 7.42 Hp M3 +25114 V0420 Aur BE 7.42 0 7.53 Hp B0IVpe +25203 V0421 Aur LB 7.84 0 8.01 Hp M0 +25224 V0422 Aur BY: 11.73 0 12.04 Hp K5 +25178 V0423 Aur LPB: 8.63 0 8.79 Hp B8 +25252 V0424 Aur EB 8.31 0 8.48 8.44 Hp 48500.154 1.8370 B9 +25284 V0425 Aur EB 7.62 0 7.90 7.84 Hp 48500.8290 1.568583 B5 +25599 V0426 Aur EB 10.55 0 10.76 10.66 Hp 52925.5394 1.419094 B3V +25801 V0427 Aur LB 7.52 0 7.65 Hp K5 +25877 V0428 Aur RV 6.74 0 7.26 Hp 48526.89 89.20 K5 +25996 V0429 Aur LB: 8.61 0 8.71 Hp K0 +26128 V0430 Aur SRC 6.89 0 7.02 Hp 48636. 410. M2II +26354 V0431 Aur BE: 8.97 0 9.29 Hp 16.86 B5e +26434 V0432 Aur EA 7.98 0 8.40 V 51571.4123 3.08175 09 G0 +26606 V0433 Aur LPB: 6.02 0 6.06 Hp 4.6382 B2IV-V +26872 V0434 Aur BE 7.16 0 7.30 Hp B3Vne +26845 V0435 Aur BE 8.91 0 9.02 Hp B3e +27144 V0436 Aur LB: 8.27 0 8.44 Hp K5 +27469 V0437 Aur EA 8.42 0 9.00 Hp 48500.101 3.3638 B9 +27459 V0438 Aur GCAS 8.03 0 8.14 Hp B3:pe:shell +27591 V0439 Aur LB: 7.45 0 7.54 Hp K5 +27661 V0440 Aur LB: 6.24 0 6.37 Hp M3III +28023 V0441 Aur SR: 7.38 0 7.50 Hp M0 +28151 V0442 Aur SR: 7.04 0 7.39 Hp M5 +28283 V0443 Aur LB 8.33 0 8.64 Hp M2 +28499 V0444 Aur ACV 5.70 0 5.74 Hp 14.368 B9.5pSiFe +28628 V0445 Aur LPB 8.36 0 8.44 Hp 2.27366 B8 +28701 V0446 Aur LB 8.45 0 8.65 Hp M5 +28783 V0447 Aur BE 7.17 0 7.31 Hp B3Ve +28851 V0448 Aur LPB 8.49 0 8.56 Hp 4.0420 B9 +29108 V0449 Aur EB 7.46 0 7.58 7.53 Hp 52500.5934 0.70366366 A0 +29198 V0450 Aur SR: 7.94 0 8.10 Hp K7 +29352 V0451 Aur LPB 7.74 0 7.80 Hp 2.63323 B8 +29901 V0452 Aur LB: 6.77 0 6.87 Hp K2 +30227 V0453 Aur SR: 7.71 0 8.22 Hp M3 +30270 V0454 Aur EA 7.74 0 8.17 Hp 48502.21 27.027 F8 +30878 V0455 Aur EA 7.33 0 7.64 7.64 Hp 47931.70 3.14578 F2 +30822 V0456 Aur DSCTC 7.88 0 7.95 Hp 0.138657 F0 +31027 V0457 Aur LB: 8.84 0 8.94 Hp M0 +31255 V0458 Aur LB 7.53 0 7.65 Hp M5 +31485 V0459 Aur EB 7.68 0 8.12 7.96 Hp 48500.8270 1.062637 B8 +31719 V0460 Aur LB: 7.57 0 7.87 Hp M5 +32495 V0461 Aur LB: 9.41 0 9.56 Hp K5 +33389 V0462 Aur EB: 8.13 0 8.30 8.30 Hp 48500.7417 1.75680 A0 +34778 V0463 Aur ACV: 6.86 0 6.92 Hp 0.804150 A0 +22776 V0536 Aur BY 7.77 1 0.03 V 7.878 G5Ve +26779 V0538 Aur BY 6.34 0 6.38 Hp 10.86 K1Ve +32263 V0553 Aur GDOR 7.53 0 7.58 Hp 1.1505 F0 +22979 V0560 Aur EA 9.07 0 9.20 9.18 V 48181.925 1.528311 12 A0 +21697 V0584 Aur RS 9.9 1 0.07 V 0.7333 K2 +26658 V0617 Aur EB 8.03 0 8.21 8.13 V 48013.1 66.76 F5II+Be +28360 β Aur EA 1.89 0 1.98 1.98 V 52500.573 3.960036 06 A2IV+A2IV +23416 ε Aur EA 2.92 0 3.88 V 45513. 9884. 08 A8Iab: +23453 ζ Aur EA 3.70 0 3.97 V 52968.7941 972.150912 04 K5Ib-II+B6.5IV-V +28380 tet Aur ACV 2.62 0 2.70 V 3.6186 B9.5p(Si) +28404 Ï€ Aur LC 4.24 0 4.34 V M3.5II +71490 R Boo M 6.0 0 13.3 V 55029. 223.11 45 M3e-M8e +70291 S Boo M 7.4 0 14.0 V 55035. 269.88 47 M3e-M6e +70885 V Boo SR 7.0 0 12.0 V 257. 48 M6e +71995 W Boo SRB 4.49 0 5.4 V 25. M2-M4III +70224 Y Boo CST: 7.94 0 V K0III +72300 RR Boo M 8.2 0 15.0 V 54929. 194.0 48 M2e-M6e +71186 RS Boo RRAB 9.63 0 10.88 V 48500.3370 0.377339 17 A7-F5 +74802 RT Boo M 8.2 0 14.0 V 54873. 275.5 49 M6.5e-M8e +71644 RV Boo SRB 7.0 0 9.0 V 144. M5e-M7e +71802 RW Boo SRB 7.2 0 8.7 V 209. M5 +70401 RX Boo SRB 6.43 0 9.1 V 162.3 M6.5e-M8IIIe +72528 RY Boo CST: 7.12 0 7.16 V F5III-IV +74509 SS Boo EA/RS 10.28 0 10.95 0.1 V 52501.03 7.606146 10 G0V+K1IV +75942 ST Boo RRAB 10.28 0 11.54 V 48500.1722 0.622286 15 A7-F7 +69759 TV Boo RRC 10.71 0 11.30 V 51308.71 0.3125609 36 A7-F2 +72115 TW Boo RRAB 10.63 0 11.68 V 51559.98 0.5322715 13 F0-F9 +74061 TZ Boo EW 10.45 0 11.00 10.82 V 54961.423 0.2971613 G2V +70259 UV Boo CST: 8.13 0 V F5V +68292 UY Boo RRAB 10.23 0 11.40 V 53575.517 0.6508964 16 A8-F0 +69826 VW Boo EW 10.42 0 11.11 10.93 V 52500.0099 0.3423147 G5 +67431 XY Boo EW 10.29 0 10.76 10.73 V 52500.4721 0.3705754 F5V +75373 YZ Boo DSCT 10.30 0 10.80 V 48500.0030 0.1040920 31 A6-F1 +68064 ZZ Boo EA 6.79 0 7.44 7.44 V 52502.9212 4.9917633 06 F2V +73103 AC Boo EW 10.14 0 10.67 10.67 V 52500.3020 0.3524485 F8Vn +72342 AE Boo RRC 10.44 0 10.88 V 52861.512 0.3148958 45 F2 +76957 BP Boo ACV 5.34 1 0.02 U 1.30488 B9pSiCr +71487 BW Boo EA 7.13 0 7.46 7.17 V 52501.026 3.332816 06 F0V +73454 BX Boo ACV 6.33 0 6.41 V 2.88813 B9VpSiCrSr +69038 BY Boo LB: 4.98 0 5.33 V M4-4.5III +66538 BZ Boo DSCTC: 8.20 1 0.03 V 0.1329 A5 +72944 CE Boo UV 11.35 0 11.68 B M2Ve+M8Ve +69068 CF Boo LB 5.29 0 5.38 Hp M2IIIab +71280 CH Boo LB: 5.83 0 5.87 Hp M1IIIab +70236 CI Boo LB 6.23 0 6.57 Hp M3III +71319 CK Boo EW 8.95 0 9.25 9.22 V 52500.029 0.3551522 F8 +71168 CP Boo DSCTC: 6.89 1 0.02 B F8IV +69829 CY Boo SRB 5.74 0 5.90 V 23. M3III +72848 DE Boo RS 5.97 0 6.04 V 10.39 K2V +66496 DH Boo LB: 7.90 0 8.24 Hp M4 +66899 DI Boo LB 7.31 0 7.42 Hp M0 +67010 DK Boo LB 8.02 0 8.77 Hp K5 +67325 DL Boo LB 7.58 0 7.80 Hp K5 +67449 DM Boo NL: 8.73 0 8.94 Hp G5 +67657 DN Boo EW 11.03 0 11.32 11.28 V 53803.760 0.4475667 G0 +67917 DO Boo LB: 8.82 0 9.25 Hp M5 +68913 DP Boo LB: 6.53 0 6.69 Hp M1 +69405 DQ Boo BY: 9.30 0 9.42 Hp K0 +69695 DR Boo LB 8.06 0 8.60 Hp K0 +69712 DS Boo LB 8.74 0 8.94 Hp M2 +70198 DT Boo ISB 8.42 0 8.86 Hp M5 +70240 DU Boo EB 8.48 0 9.02 8.86 V 52500.033 1.055889 A2 +70287 DV Boo EA 7.53 0 7.76 7.69 V 48045.254 3.78264 06 A2 +70621 DW Boo EB: 7.36 0 7.45 7.43 V 55048.523 0.9244464 A0 +70800 DX Boo LB 6.67 0 6.76 V M1III +70876 DY Boo LB 9.26 0 9.47 Hp M2 +70902 DZ Boo LB: 8.68 0 8.89 V K5 +70999 EE Boo LB 8.49 0 8.69 Hp K5 +71107 EF Boo EW/RS 9.23 0 9.83 9.78 V 52500.2231 0.4205161 G5 +71712 EG Boo LB: 7.96 0 8.06 Hp K5 +71900 EH Boo LB 7.28 0 7.50 Hp M2 +71965 EI Boo SRD 8.89 0 9.11 Hp 35.32 K0 +72208 EK Boo LB: 5.33 0 5.71 Hp M5IIIab +72391 EL Boo EW 9.20 0 9.43 9.42 V 54633.625 0.4137642 F8 +72426 EM Boo EA 8.98 0 9.32 9.23 V 52736.755 2.446228 13 G5 +72637 EN Boo LB: 7.67 0 7.85 Hp M1 +72689 EO Boo LB: 8.45 0 8.60 Hp M2III +72680 EP Boo LB: 9.56 0 9.68 Hp M0 +72757 EQ Boo EA 8.80 0 9.20 9.11 V 47931.794 5.43536 04 G5 +72838 ER Boo LB: 9.89 0 10.02 Hp M0 +73034 ES Boo LB: 8.53 0 8.64 Hp M0 +73346 ET Boo EB 9.14 0 9.50 9.40 Hp 54982.456 0.6450412 F8 +73378 EU Boo LB: 10.09 0 10.25 Hp M0 +73589 EV Boo LB 6.42 0 6.61 Hp M5 +73612 EW Boo EA 10.31 0 10.69 10.34 Hp 52500.229 0.9063492 20 A0 +73662 EX Boo SRB 9.4 0 10.0 V 52. M5 +73643 EY Boo LB: 9.46 0 9.72 Hp M5 +74214 EZ Boo SRB 9.72 0 9.88 V 195. M2 +74253 FF Boo LB: 6.93 0 7.02 Hp M2.5III +74337 FG Boo LB 7.35 0 8.06 Hp M0 +74440 FH Boo LB: 9.18 0 9.35 Hp M0 +75203 FI Boo EW 9.55 0 9.68 9.66 V 52500.337 0.390001 G3V +75641 FK Boo LPB 7.79 0 7.83 Hp 1.5129 B9 +75720 FL Boo LB: 9.40 0 9.55 Hp K0 +76036 FM Boo LB: 10.65 0 10.83 Hp M0 +76042 FN Boo BY: 10.47 0 10.76 Hp K6 +76684 FO Boo LB: 7.65 0 7.76 Hp M1 +76970 FP Boo EW 10.14 0 10.44 10.38 Hp 52500.311 0.640458 A5 +67481 FQ Boo DSCTC 6.59 1 0.02 V 0.049 A2V +68660 FR Boo RS 9.26 0 9.30 B 96. K3III +68879 FZ Boo LB: 7.62 0 7.72 V M0III +69410 GY Boo BY 8.88 1 0.03 V 9.52 K0V +70142 GZ Boo BY 8.90 1 0.04 V 7.52 K2V +70826 HK Boo RS 8.43 1 0.09 V 17.62 G5IVe +70828 HL Boo EA: 7.61 1 0.03 V 51327.5 26.68 15 K0 +70836 HM Boo E:/RS 9.17 1 0.02 V 51339. 21.84 K3V +71395 HN Boo BY 7.48 1 0.04 V 11.54 K0V +72200 HO Boo BY 7.98 1 0.02 V 93. K2V +72567 HP Boo BY 5.98 0 6.01 Hp 7.85 G2V +71075 γ Boo DSCTC 3.02 0 3.07 V 0.2903137 A7III +69713 ι Boo DSCTC 4.73 0 4.78 V 0.027 A7V +72659 χ Boo BY 4.52 0 4.67 V 10.137 G8Ve+K4Ve +73695 i Boo EW 4.70 0 4.86 4.84 V 52500.1807 0.2678190 G2V+G2V +21766 R Cae M 6.7 0 13.7 V 40645. 390.95 41 M6e +22247 T Cae SR 9.0 0 10.8 p 27840. 156. C6,4(N4) +23596 X Cae DSCTC 6.28 0 6.39 V 39395.570 0.1352227 50 F1III-F2IV +22674 Z Cae SR 7.84 0 7.99 V 40667. 52. M2III +20665 RT Cae EW: 10.00 0 10.21 Hp +20670 RU Cae SRB 8.08 0 8.24 Hp +20856 RV Cae LB 6.44 0 6.56 Hp +20961 RW Cae SRB: 8.81 0 8.91 Hp +21063 RX Cae DSCTC 7.07 0 7.16 Hp +21190 RY Cae LB: 8.38 0 8.48 Hp +21213 RZ Cae EA: 7.68 0 7.82 Hp +21339 SS Cae LB: 8.23 0 8.33 Hp +22837 ST Cae LB: 9.29 0 9.46 Hp +22912 SU Cae LC: 8.51 0 8.71 Hp +23321 SV Cae SRB 7.74 0 7.86 Hp +26753 S Cam SRA 7.7 0 11.6 V 43360. 327.26 51 C7,3e(R8e) +17257 U Cam SRB 11.0 0 12.8 p 43060. C3,9-C6,4e(N5) +22127 X Cam M 7.4 0 14.2 V 44679. 143.56 49 K8-M8e +37440 Y Cam EA+DSCTC 10.50 0 12.24 10.60 V 42961.9275 3.3056244 16 A8V +26247 RR Cam SRA 9.5 0 11.3 V 37750. 123.88 44 M6 +43438 RS Cam SRB 7.9 0 9.7 V 27143. 88.6 45 M4III +35681 RU Cam CWA 8.10 0 9.79 V 22. 35 C0,1-C3,2e(K0-R0 +21046 RV Cam SRB 9.3 0 10.6 p 28861. 101. M4II-III-M6 +18260 RW Cam DCEP 8.20 0 9.10 V 37389.57 16.41437 34 F8Ib(F5-G1)+A: +19057 RX Cam DCEP 7.30 0 8.07 V 42766.583 7.912024 28 F6Ib-G2Ib +21059 RY Cam SRB 8.9 0 11.0 p 39238. 135.75 M3III +35197 SS Cam EA/SD/RS 10.05 0 10.62 10.35 V 35223.672 4.8242541 20 G1III+F5V +22552 ST Cam SRB 9.2 0 12.0 p 300. C5,4(N5) +32015 SV Cam EA/DW/RS 8.40 1 0.71 0.15 V 42594.6151 0.59306995 17 G5V+G3V +19270 SZ Cam EA/DM 7.0 0 7.29 7.24 B 41665.2516 2.6985439 17 O9.5V+B0 +27971 TU Cam EB/DM 5.12 0 5.29 5.22 V 38051.375 2.933241 A0IV-V +19115 UV Cam SRB 7.5 0 8.1 V 294. C5,3(R8) +39009 UY Cam RRC 11.33 0 11.66 V 35565.239 0.26704234 45 A3III-A6III +36547 VZ Cam SR 4.80 0 4.96 V 23.7 M4IIIa +19340 XX Cam RCB: 8.09 0 9.8 B G1I(C0-2,0) +20027 ZZ Cam LB 8.7 0 9.3 p M0-M5 +35045 AA Cam LB 9.0 0 9.6 p M5(S) +25740 AS Cam EA/DM 8.57 0 9.19 8.97 V 40204.5137 3.4309714 08 B8V+B9 +32549 AW Cam EB/KE 8.22 0 8.66 8.36 V 38738.452 0.7713468 A0V +39261 AX Cam ACV 5.95 0 6.08 V 41701.41 8.0278 40 A2p(Sr-Cr-Eu) +37934 BC Cam ACV 6.43 0 6.48 V 41254.08 4.285 F0p(Sr-Cr-Eu) +17296 BD Cam LB 5.04 0 5.17 V S5,3(M4III) +17884 BE Cam LC 4.35 0 4.48 V M2II +15520 BK Cam GCAS 4.78 0 4.89 V B2Ve +23743 BM Cam RS 6.18 1 0.14 V 44288.8 82.8 K0III +24254 BN Cam ACV 5.3 1 0.05 V 41252.91 0.7325 A0p(Si) +25156 BS Cam DSCTC 8.0 1 0.05 V +23734 BV Cam GCAS 5.08 1 0.07 V +16281 CE Cam ACYG 4.54 1 0.03 V +23768 CK Cam DCEP 7.19 0 7.80 V +24760 CL Cam RS 7.55 1 0.13 V +34101 CM Cam FKCOM 6.96 1 0.05 V +59504 CO Cam ELL 5.14 1 0.07 V +15321 CP Cam EB 10.75 0 11.23 Hp +15890 CQ Cam LC 5.15 0 5.27 Hp +16195 CR Cam BE: 8.22 0 8.53 Hp +16228 CS Cam ACYG: 4.29 0 4.34 Hp +16941 CT Cam BE 7.70 0 7.83 Hp +17333 CU Cam EA 7.94 0 8.18 Hp +17261 CV Cam EB 9.42 0 9.66 Hp +17361 CW Cam IA: 8.31 0 8.52 Hp +17590 CX Cam SRB: 7.79 0 7.97 Hp +18151 CY Cam LPB: 8.43 0 8.51 Hp +18593 CZ Cam * 9.52 0 9.72 Hp +18585 DD Cam EB 7.04 0 7.23 Hp +19008 DE Cam BE 8.16 0 8.33 Hp +19105 DF Cam SR: 9.01 0 9.35 Hp +19764 DG Cam LB: 8.34 0 8.47 Hp +20004 DH Cam ACV 6.70 0 6.74 Hp +20896 DI Cam EA 7.85 0 8.09 Hp +20779 DK Cam EA 7.60 0 7.71 Hp +21148 DL Cam BCEP: 5.81 0 5.85 Hp +21233 DM Cam LB 7.15 0 7.23 Hp +21913 DN Cam EW 8.28 0 8.74 Hp +22383 DO Cam SRB 6.91 0 7.25 Hp +22498 DP Cam E: 9.90 0 10.44 Hp +22795 DQ Cam E: 8.12 0 8.23 Hp +23033 DR Cam SRB 6.46 0 6.63 Hp +23440 DS Cam LB: 8.86 0 8.96 Hp +24390 DT Cam E: 8.17 0 8.23 Hp +24653 DU Cam SRB 8.60 0 9.18 Hp +24836 DV Cam EA 6.10 0 6.30 Hp +25233 DW Cam BY: 10.96 0 11.56 Hp +25229 DX Cam LB: 8.90 0 9.18 Hp +26758 DY Cam LB: 9.28 0 9.46 Hp +26517 DZ Cam LB: 8.49 0 8.62 Hp +27199 EE Cam DSCTC 7.78 0 7.86 Hp +27500 EF Cam LB: 8.85 0 8.96 Hp +28368 EG Cam BY: 10.30 0 10.54 Hp +28583 EH Cam LB: 9.41 0 9.59 Hp +28607 EI Cam LB: 7.12 0 7.16 Hp +29436 EK Cam LB: 8.74 0 8.84 Hp +30785 EL Cam LB: 9.03 0 9.60 Hp +31174 EM Cam LB: 9.13 0 9.31 Hp +31259 EN Cam ACV: 8.99 0 9.04 Hp +32085 EO Cam SRB 8.88 0 9.23 Hp +32647 EP Cam SRB 7.61 0 7.86 Hp +32653 EQ Cam SRB 7.94 0 8.08 Hp +33573 ER Cam LB: 9.04 0 9.16 Hp +34641 ES Cam LB 8.72 0 8.90 Hp +35200 ET Cam LB: 9.51 0 9.63 Hp +35247 EU Cam SRB 9.24 0 9.54 Hp +35690 EV Cam ACV: 6.95 0 6.99 Hp +36213 EW Cam RRAB 9.33 0 9.83 Hp +36578 EX Cam LB: 7.24 0 7.34 Hp +36945 EY Cam SRB: 8.52 0 8.80 Hp +36983 EZ Cam SRB 7.17 0 7.31 Hp +37961 FF Cam BE: 7.71 0 8.02 Hp +37595 FG Cam SRD 7.97 0 8.11 Hp +38900 FH Cam EW 6.91 0 6.97 Hp +38971 FI Cam LB: 8.88 0 9.00 Hp +39755 FK Cam SRB 8.90 0 9.38 Hp +43431 FL Cam LB 6.75 0 7.03 Hp +44943 FM Cam SRB: 9.07 0 9.29 Hp +46005 FN Cam EW 8.60 0 9.06 Hp +47833 FO Cam LB: 10.08 0 10.22 Hp +56328 FP Cam LB: 8.15 0 8.28 Hp +57923 FQ Cam LB: 9.36 0 9.53 Hp +58545 FR Cam LB 6.16 0 6.37 Hp +68832 FS Cam LB 8.81 0 8.99 Hp +19404 GQ Cam ACYG 8.13 0 8.20 Hp +16974 KZ Cam ACV 6.28 0 6.30 V +18012 MM Cam * 7.11 1 0.04 V K0III +21276 MS Cam BY 7.75 1 0.03 V 7.604 G0Ve +60725 MW Cam DSCT 9.25 0 9.36 Hp 0.132792 F0 +40534 R Cnc M 6.07 0 11.8 V 44231. 361.60 47 M6e-M9e +42853 S Cnc EA/DS 8.29 0 10.25 8.39 V 36985.029 9.4845516 08 B9V+G8IV +43905 T Cnc SRB 7.6 0 10.5 V 482. 35 C3,8-C5,5(R6-N6) +40977 V Cnc M 7.5 0 13.9 V 43485. 272.13 46 S0e-S7,9e +44995 W Cnc M 7.4 0 14.4 V 43896. 393.22 40 M6.5e-M9e +43811 X Cnc SRB 5.6 0 7.5 V 43631. 195. C5,4(N3) +41028 Z Cnc SRB 9.4 0 10.7 p 37026. 104. M6III +45058 RS Cnc SRC: 6.2 0 7.7 p 120. M6eIb-II(S) +44050 RT Cnc SRB 7.12 0 8.6 V 60. M5III +42303 RU Cnc EA/DS/RS 10.10 0 11.25 10.21 V 22650.720 10.172988 08 F9V:+G9V: +45709 RW Cnc RRAB 10.7 0 12.6 p 39556.314 0.547199 13 A5 +40388 RX Cnc SRB 9.2 0 11.3 p 120. M8 +42432 RZ Cnc EA/GS/RS 8.67 0 10.03 9.21 V 18702.531 21.642998 15 K2III+K4III +41936 TT Cnc RRAB 10.72 0 11.78 V 39944.367 0.5634494 18 A9-F4 +40351 TV Cnc M 9.5 2 14.5 V 52984. 263. M7 +39341 UU Cnc EB/GS 8.68 0 9.35 9.2 V 41072.03 96.71 K4III +42594 VZ Cnc DSCT 7.18 0 7.91 V 39897.4246 0.178363704 26 A7III-F2III +44349 WY Cnc EA/SD/RS 9.51 0 10.14 9.60 V 26352.3895 0.82937122 16 G5V +42917 BI Cnc ACV 5.58 0 5.71 V 41616.50 4.2359 A0p(Si-Cr) +39659 BL Cnc LB 5.97 0 6.04 V M3III +40240 BM Cnc ACV 5.53 0 5.65 V 39482.9 4.116 B9p(Si-Cr) +43575 BO Cnc LB: 5.9 0 6.37 V M3III +41400 BP Cnc SRB 5.41 0 5.75 V 40. M3III +42319 BR Cnc DSCTC 8.26 1 0.02 V 0.038 F0Vn +42485 BT Cnc DSCTC 6.66 1 0.06 V 0.10228 F0III +42705 BY Cnc DSCTC 7.91 1 0.01 V 0.058 A7Vn +41824 CU Cnc UV 10.9 0 13.9 U M5Ve +44862 CW Cnc LB 10.0 0 11.2 p M6 +41574 CX Cnc DSCTC 6.10 1 0.02 V 0.096 A5 +42600 EP Cnc DSCTC 6.76 1 0.03 V +41875 FI Cnc FKCOM 7.28 1 0.17 V +41951 FK Cnc BY: 7.94 1 0.03 V +42874 FL Cnc DSCTC 7.03 1 0.06 V +39297 FO Cnc LB: 8.60 0 8.77 Hp +41749 FQ Cnc SRB 8.40 0 8.62 Hp +41889 FR Cnc BY: 10.28 0 10.47 Hp +41978 FS Cnc LB: 8.60 0 8.81 Hp +42826 FT Cnc SRD 8.43 0 8.63 Hp +42921 FU Cnc SRB: 9.01 0 9.11 Hp +43199 FV Cnc UG: 10.44 0 10.62 Hp +43245 FW Cnc LB 6.91 0 7.05 Hp +43251 FX Cnc SRB 6.63 0 6.77 Hp +43967 FY Cnc SRB 8.71 0 8.97 Hp +44126 FZ Cnc SRB 6.28 0 6.38 Hp +44222 GG Cnc LB: 8.24 0 8.36 Hp +44530 GH Cnc SRB 7.59 0 7.72 Hp +44718 GI Cnc SRB 8.58 0 8.73 Hp +44773 GK Cnc LB: 9.10 0 9.20 Hp +45194 GL Cnc LB: 9.43 0 9.53 Hp +45295 GM Cnc LB: 8.61 0 8.73 Hp +45483 GN Cnc RR: 8.80 0 8.89 Hp +45597 GO Cnc EA 8.40 0 8.66 Hp +44303 HL Cnc BY 8.83 0 8.87 V +42253 HO Cnc BY 8.73 1 0.03 V 5.21 K5Ve +43422 HP Cnc BY 9.08 1 0.02 V 11.14 K0V +43670 II Cnc BY 8.46 1 0.05 V 8.19 G8V +43751 IK Cnc BY 8.32 1 0.03 V 9.45 G5V +45617 IP Cnc BY 7.20 1 0.02 V 43.4 K3V +40361 KP Cnc DSCTC 7.30 1 0.04 B 0.12 F2 +42753 KX Cnc EA 7.25 1 0.71 0.49 V 54182.8146 31.21985 01 F8 +44798 κ Cnc ACV: 5.22 0 5.27 V 39633.5 5.0035 B9IIIp(Hg-Mn) +67410 R CVn M 6.5 0 12.9 V 43586. 328.53 46 M5.5e-M9e +64488 S CVn CST 9.75 0 V K3III +61009 T CVn M: 7.6 0 12.6 V 42784. 290.09 42 M6.5e +65006 V CVn SRA 6.52 0 8.56 V 43929. 191.89 50 M4e-M6eIIIa: +68908 W CVn RRAB 10.03 0 10.96 V 21402.4238 0.551759337 15 F0-F7 +62223 Y CVn SRB 7.4 0 10.0 p 157. C5,4J(N3) +64293 RS CVn EA/AR/RS 7.93 0 9.14 8.19 V 22811.6995 4.7978870 11 F4IV-V+K0IVe +68357 RW CVn SRB 10.1 0 11.2 p 100. M7III +67087 RZ CVn RRAB 10.88 0 11.92 V 40343.851 0.5674110 17 A8 +67354 SS CVn RRAB 11.52 0 12.27 V 39622.705 0.4785210 15 A0 +68188 ST CVn RRC 11.04 0 11.60 V 40390.467 0.329045 43 A1 +64267 SY CVn LB 11. 0 12. p M8 +63389 TT CVn SRB 10.4 0 11.11 B 105. C3,5CH(R6p) +63024 TU CVn SRB 5.55 0 6.6 V 50. M5III +60564 UY CVn LB 10.6 0 11.8 p M5III +61029 UZ CVn RRAB 11.3 0 12.0 p 26427.3806 0.6977829 16 A5-F2 +65913 VY CVn LB 10.38 0 11.4 B M5 +66017 VZ CVn EA/DW 9.17 0 9.72 9.54 V 38880.5804 0.84246163 17 F2V +60467 AI CVn DSCT 5.89 0 6.15 V 0.2085 F3IV +64844 AO CVn DSCTC 4.70 0 4.75 V 44381.6675 0.12168 50 F3IIIp +67665 AW CVn SR: 4.72 0 4.81 V K5III +61748 AX CVn ACV 6.32 0 6.55 V 4900. A0p(Sr-Cr-Eu) +63253 BF CVn BY+UV: 10.50 0 10.60 V 3.17 M1.5Ve +66257 BH CVn RS 4.94 0 5.01 V 43639.52 2.6131738 F2IV +63701 BI CVn EW/KW 10.26 0 10.71 10.70 V 44365.2497 0.38416 G0 +64906 BK CVn ACV 5.13 1 0.04 V +64956 BL CVn ELL 8.13 1 0.24 V +65187 BM CVn RS 7.21 1 0.06 V +63368 BQ CVn RS 7.98 1 0.09 V +65309 BR CVn SRB 6.58 1 0.50 V +59136 BS CVn LB: 7.72 0 7.82 Hp +60384 BT CVn LB: 9.25 0 9.41 Hp +60477 BU CVn LB 7.90 0 8.20 Hp +61163 BV CVn LB 9.18 0 9.47 Hp +61186 BW CVn SRB 8.66 0 8.82 Hp +62097 BX CVn LB 7.65 0 7.97 Hp +62355 BY CVn LB 7.71 0 7.91 Hp +62891 BZ CVn LB 7.32 0 7.47 Hp +63360 CC CVn SRB: 7.92 0 8.13 Hp +63442 CD CVn LB: 9.48 0 9.64 Hp +63653 CE CVn LB 7.45 0 7.62 Hp +63706 CF CVn LB: 10.34 0 10.48 Hp +63850 CG CVn LB: 9.57 0 9.73 Hp +64508 CH CVn LB: 8.64 0 8.75 Hp +64528 CI CVn EA: 9.36 0 9.87 Hp +65296 CK CVn LB: 7.74 0 7.84 Hp +65376 CL CVn LB 6.10 0 6.20 Hp +65633 CM CVn LB: 8.89 0 9.03 Hp +65746 CN CVn LB: 9.54 0 9.69 Hp +65876 CO CVn LB 7.17 0 7.28 Hp +65953 CP CVn LB: 7.58 0 7.64 Hp +66124 CQ CVn LB: 8.19 0 8.29 Hp +66470 CR CVn SRB 7.55 0 7.68 Hp +66682 CS CVn LB: 9.13 0 9.25 Hp +67263 CT CVn LB 7.37 0 7.67 Hp +67357 CU CVn EW: 7.56 0 7.61 Hp +67662 CV CVn LB: 7.27 0 7.47 Hp +67803 CW CVn SRD 7.00 0 7.24 Hp +68384 CX CVn EA 9.39 0 9.69 Hp +68417 CY CVn LB 8.09 0 8.47 Hp +68904 CZ CVn LB: 7.69 0 7.83 Hp +60571 DD CVn GDOR 7.15 1 0.04 V +61481 DO CVn BY 8.52 1 0.02 V 8.73 K0V +61520 DP CVn BY: 8.58 1 0.07 V 14.21 G5III +62641 DT CVn DSCTC 6.04 1 0.03 B 0.114 A3V +63622 DW CVn BY: 8.12 1 0.04 V F8V +65380 EL CVn EA 9.42 0 9.59 9.50 V 48331.778 0.795629 10 A1V +35487 R CMa EA/SD 5.70 0 6.34 5.78 V 44289.361 1.1359405 15 F1V +34413 W CMa LB 6.35 0 7.9 V C6,3(N) +34042 Z CMa INA 8.8 0 11.2 p B8peq +33756 RV CMa LB 10.4 0 11.6 p M6 +34895 RW CMa DCEP 11.8 0 12.8 p 41042.22 5.729685 25 F5-G2 +35212 RY CMa DCEP 7.71 0 8.45 V 36416.937 4.67825 24 F6-G0Ib +35665 RZ CMa DCEP 9.36 0 9.97 V 36428.062 4.254832 28 F6 +36088 SS CMa DCEP 9.26 0 10.36 V 41109.19 12.361 45 F6-G2 +34431 SW CMa EA/DM 9.5 0 10.0 9.9 p 26706.177 10.091948 06 A8 +34527 TV CMa DCEP 10.16 0 10.96 V 40676.34 4.67001 29 F5-G2 +35708 TW CMa DCEP 9.28 0 9.93 V 39429.26 6.99507 31 F5-F8 +35412 UW CMa EB/KE: 4.84 0 5.33 5.25 V 36185.358 4.393407 O7Ia:fp+OB +34302 VV CMa CEP 12.2 0 12.8 p 26090.220 3.8627 +35793 VY CMa * 6.5 0 9.6 V M5eIbp(C6,3) +36125 VZ CMa DCEPS 9.15 0 9.60 V 26747.14 3.12640 43 +35865 BE CMa LB 11.0 0 12.3 p C5,5J(N) +34981 EW CMa GCAS 4.42 0 4.82 V B3IVe +33092 EY CMa BCEP 4.79 0 4.84 V 41296.1640 0.184557 50 B1III-IV +33165 EZ CMa WR 6.71 0 6.95 V 43200.47 3.763 WN5 +34646 FF CMa EB/KE 7.38 0 7.74 7.6 V 28847.465 1.213375 B2V+B2V +34221 FM CMa EB/DM 7.28 0 7.50 V 2.7888 B1V +34301 FN CMa BCEP 5.38 0 5.42 V 0.12377 B0III +30214 FR CMa GCAS 5.46 0 5.64 V B1Vpe +30800 FS CMa * 7.55 0 8.58 V B2IVep +32292 FT CMa GCAS 5.13 0 5.44 V B2Ve +33721 FU CMa GCAS 6.48 0 6.60 V B3IV-Vne +34360 FV CMa GCAS 5.64 0 5.94 V B2IV-Ve +35951 FW CMa GCAS 5.00 0 5.50 V B3Ve +36168 FY CMa GCAS 5.54 0 5.69 V B0IVpe +33953 FZ CMa EA/DM 8.05 0 8.44 8.44 V 41742.324 1.27306 16 B2.5IV-Vn +34937 GG CMa ELL+BCEP: 6.55 0 6.61 V B2IV +35746 GH CMa SRB 6.82 0 7.19 V 20. M6III +33868 GU CMa GCAS 6.49 0 6.72 V B2Vne +34924 GY CMa BCEP: 6.12 1 0.04 V 0.112 B0.5V +35187 GZ CMa EA/DM 8.1 0 8.7 p 38814.273 4.801052 07 A0 +33447 HH CMa BCEP 6.59 0 6.66 V 0.19 B2III +34852 HI CMa GCAS 7.8 1 0.4 p B2IIIe +32504 HK CMa ACV 6.06 0 6.09 Y 42818.88 2.181 B9p +34814 HN CMa DSCTC 6.61 1 0.02 V +34898 HO CMa E: 7.55 0 8.62 V +32385 HP CMa GCAS 5.48 0 5.80 V +35611 HQ CMa EA 6.01 0 6.27 V +31205 HR CMa EA/GS 6.24 0 6.32 V +32810 HZ CMa ELL 5.69 0 5.82 y +34248 IL CMa E+LPB: 6.32 0 6.54 V +29455 IO CMa EA 8.46 0 8.71 Hp +29488 IP CMa LPB 6.44 0 6.48 Hp +29474 IQ CMa EB 9.24 0 9.63 Hp +29604 IR CMa SRB 7.56 0 7.70 Hp +30174 IS CMa EW 6.96 0 7.44 Hp +30263 IT CMa LPB 7.82 0 7.86 Hp +30426 IU CMa ACV: 6.55 0 6.58 Hp +30409 IV CMa SRC 8.21 0 8.75 Hp +30583 IW CMa E: 6.88 0 6.96 Hp +30786 IX CMa EB 7.77 0 7.84 Hp +30840 IY CMa E: 5.64 0 5.72 Hp +30903 IZ CMa SRB 7.85 0 8.03 Hp +31008 KK CMa EB 8.17 0 8.26 Hp +31017 KL CMa EA 6.73 0 6.97 Hp +31086 KM CMa LB 6.24 0 6.50 Hp +31180 KN CMa SRD: 8.65 0 8.72 Hp +31296 KO CMa LB 8.06 0 8.48 Hp +32408 KP CMa LPB 7.58 0 7.63 Hp +32570 KQ CMa ACV 8.24 0 8.29 Hp +32671 KR CMa SRB 8.08 0 8.40 Hp +32696 KS CMa BE 7.25 0 7.37 Hp +32758 KT CMa E: 9.37 0 9.61 Hp +32815 KU CMa BE 7.93 0 8.10 Hp +32856 KV CMa E: 7.09 0 7.14 Hp +32937 KW CMa ACV 7.55 0 7.59 Hp +33040 KX CMa LB 6.07 0 6.37 Hp +33042 KY CMa LB 10.46 0 11.00 Hp +33119 KZ CMa BE 8.66 0 8.77 Hp +33200 LL CMa BE 7.36 0 7.64 Hp +33260 LM CMa ACYG: 8.64 0 8.70 Hp +33443 LN CMa LB: 9.15 0 9.26 Hp +33592 LO CMa SRB: 7.75 0 7.86 Hp +33676 LP CMa BE 9.20 0 9.31 Hp +33673 LQ CMa BE: 7.12 0 7.26 Hp +33778 LR CMa ACYG: 9.26 0 9.35 Hp +33804 LS CMa E: 5.57 0 5.60 Hp +34080 LT CMa EA 7.38 0 7.56 Hp +34161 LU CMa LB: 7.75 0 7.87 Hp +34287 LV CMa EB 8.65 0 8.83 Hp +34342 LW CMa SRB: 7.38 0 7.50 Hp +34448 LX CMa LB: 7.28 0 7.31 Hp +34569 LY CMa GCAS 8.99 0 9.27 Hp +34579 LZ CMa EB: 5.63 0 5.66 Hp +34798 MM CMa LPB 5.84 0 5.87 Hp +34986 MN CMa BE 9.53 0 9.70 Hp +35015 MO CMa I: 11.13 0 11.53 Hp +35036 MP CMa EB 8.30 0 8.48 Hp +35109 MQ CMa LB: 8.16 0 8.31 Hp +35156 MR CMa ACV 8.99 0 9.08 Hp +35168 MS CMa EA 7.08 0 7.20 Hp +35201 MT CMa LB: 8.23 0 8.35 Hp +35355 MU CMa BE: 8.94 0 9.04 Hp +35356 MV CMa EB 9.74 0 10.08 Hp +35407 MW CMa ACV 8.66 0 8.79 Hp +35461 MX CMa EB 6.74 0 6.81 Hp +35549 MY CMa LB: 10.49 0 10.76 Hp +35626 MZ CMa SRB 5.87 0 5.95 Hp +35769 NN CMa GCAS 7.05 0 7.30 Hp +35795 NO CMa BE: 5.33 0 5.38 Hp +35829 NP CMa BE 8.99 0 9.16 Hp +35926 NQ CMa BE: 9.81 0 10.12 Hp +36186 NR CMa DSCTC 5.67 0 5.70 Hp +32101 NZ CMa LPB 8.82 0 8.90 Hp +34561 OS CMa ACYG 6.04 0 6.07 Hp +32144 V0350 CMa GDOR 6.18 0 6.27 V +29568 V0352 CMa BY 6.37 0 6.40 V 7.2 G5V +30225 V0353 CMa BY 8.48 1 0.02 V K2V +31821 V0356 CMa BY: 8.44 1 0.02 V K1V +33274 V0377 CMa EA 7.88 0 7.98 7.98 V 48323.304 3.01351 04 B8III +33844 V0381 CMa EB 7.73 0 7.82 7.78 V 52942.804 3.37443 A2V +34262 V0388 CMa EA 8.25 0 8.43 8.34 V 53067.651 2.98260 05 B3V +35859 V0398 CMa EA 7.98 0 8.11 8.02 V 47912.729 2.198515 06 B9III +35370 V0422 CMa EA 8.91 0 9.07 8.95 V 51993.495 4.19184 05 B2IV/V +30324 β CMa BCEP 1.93 0 2.00 V 41296.175 0.25003 B1II-III +35904 η CMa ACYG 2.38 0 2.48 Hp +33347 ι CMa BCEP 4.36 0 4.40 V 0.08 B3II-III +32759 κ CMa GCAS 3.78 0 3.97 V B2Vne +33856 σ CMa LC 3.43 0 3.51 V K7Ib +35415 Ï„ CMa EB 4.32 0 4.37 Hp +35037 ω CMa GCAS 3.60 0 4.18 V B2IV-Ve +34474 R CMi M 7.25 0 11.6 V 41323. 337.78 48 C7,1Je(CSep) +36675 S CMi M 6.6 0 13.2 V 43911. 332.94 49 M6e-M8e +37459 U CMi M 8.0 0 14.0 V 43150. 413.88 52 M4e +38124 W CMi SRB 8.72 0 9.04 V 95. C7,2(R6) +37850 UX CMi SRA 10.2 0 11.6 p 26735. 150.5 M5 +37766 YZ CMi BY+UV 8.6 0 12.93 B 41355.178 2.780964 M4.5Ve +35915 ZZ CMi SR 10.2 0 11.9 p 28960. 500. M6I-IIep +35281 AA CMi RRAB 11.01 0 12.00 V 36576.435 0.47632310 20 A6 +38473 AD CMi DSCT 9.21 0 9.51 V 42429.4582 0.12297443 37 F0III-F3III +37705 AZ CMi DSCTC 6.44 0 6.51 V 40886.0713 0.09526 F0III +38361 BB CMi RRC 10.0 0 10.8 p 25644.400 0.396424 40 A5 +38406 BC CMi SRB 6.14 0 6.42 V 35. M5 +34463 BN CMi SRB: 7.01 0 7.10 Hp +35776 BO CMi * 8.07 0 8.36 Hp +36746 BP CMi SRB 6.77 0 6.91 Hp +36888 BQ CMi SRA: 7.69 0 7.90 Hp +37232 BR CMi ACV: 7.16 0 7.22 Hp +38807 BS CMi SRD: 7.80 0 7.89 Hp +38855 BT CMi BE 7.68 0 7.80 Hp +38945 BU CMi EA: 6.41 0 6.51 Hp +38987 BV CMi EA: 6.91 0 7.03 Hp +39635 BW CMi LB: 9.02 0 9.12 Hp +38138 DD CMi GDOR 7.50 0 7.57 Hp 0.713 F2 +39986 DE CMi DSCTC 7.96 1 0.06 B 0.088474 F0 +38581 DM CMi EA 8.13 0 8.22 8.20 V 48588.418 7.72461 03 A0V +36188 β CMi GCAS 2.84 0 2.92 V B8Ve +105498 T Cap M 8.4 0 14.3 V 39267. 269.28 44 M2e-M8.2 +104285 V Cap M 8.2 0 14.4 V 40395. 275.72 42 M5e-M8.2 +104252 RS Cap SRB 8.3 0 10.3 p 340. M4 +99990 RT Cap SRB 8.9 0 11.7 p 393. C6,4(N3) +103755 RV Cap RRAB 10.22 0 11.57 V 33883.262 0.44774401 A7-F4 +99765 TW Cap CWA 9.95 0 11.28 V 44073.10 28.6101 20 A5Ib-F4Ib +106653 UU Cap SRB 9.3 0 10.4 p 100. M4 +105285 YZ Cap RRC 11.02 0 11.60 V 43729.741 0.2734563 40 A5-A7 +106961 AD Cap E/RS 10.77 0 11.4 B 2.96000 G5+G5 +100154 AE Cap SR 9.0 0 11.1 B 200. M4 +107487 AG Cap SRB 5.90 0 6.14 V 25. M3III +101500 AK Cap LB 9.0 0 9.7 p M2 +103616 AO Cap ACV 6.2 1 0.05 V 2.25 B9p(Si) +107594 AP Cap ACV 7.60 0 7.65 V 42619.827 2.67 B9p(Si) +99333 AR Cap ACV 8.08 0 8.28 V +106497 AS Cap RS: 8.0 1 0.13 V +101098 AT Cap RS 8.87 0 9.18 V +99221 AV Cap ACV: 6.24 1 0.02 B +106255 BB Cap BY 11.96 0 11.99 V +99249 BC Cap SRB 8.13 0 8.37 Hp +99365 BD Cap DSCTC 7.51 0 7.57 Hp +99457 BE Cap BE: 6.16 0 6.43 V +100107 BF Cap EB 8.94 0 9.27 Hp +100234 BG Cap SRD: 8.92 0 9.04 Hp +100869 BH Cap EB: 8.03 0 8.16 Hp +101277 BI Cap LB: 9.64 0 9.79 Hp +101405 BK Cap LB: 8.78 0 8.90 Hp +102217 BL Cap RR: 7.38 0 7.45 Hp +102723 BM Cap E 9.16 0 9.42 Hp +105324 BN Cap IB: 8.15 0 8.54 Hp +106600 BO Cap LB: 8.07 0 8.19 Hp +106739 BP Cap LB 7.34 0 7.44 Hp +106764 BQ Cap EA 8.11 0 8.40 Hp +107530 BR Cap LB: 8.97 0 9.10 Hp +107845 BS Cap LB 7.72 0 7.82 Hp +108236 BT Cap SRB: 7.04 0 7.14 Hp +108274 BU Cap LB 7.70 0 7.95 Hp +108298 BV Cap LB 7.82 0 8.02 Hp +108494 BW Cap LB 6.07 0 6.19 Hp +107095 BY Cap RS 5.13 0 5.18 V +106985 γ Cap ACV 3.20 1 0.03 J +107556 δ Cap EA 2.81 0 3.05 2.90 V 35656.913 1.0227688 08 A7mIII +106723 ε Cap GCAS 4.48 0 4.72 V B3IV-Vpeq +105515 ι Cap BY 4.27 1 0.06 V +46806 R Car M 3.9 0 10.5 V 42000. 308.71 48 M4e-M8e +49751 S Car M 4.5 0 9.9 V 42112. 149.49 51 K5e-M6e +53394 T Car CST: 7.00 0 B K0III +53589 U Car DCEP 5.72 0 7.02 V 37320.055 38.7681 21 F6-G7Iab +41588 V Car DCEP 7.08 0 7.82 V 37454.023 6.69668 30 F6-G2Ib-II +41793 X Car EB/KE 7.90 0 8.65 8.6 V 28857.146 1.0826310 A0V+A0V +51653 Y Car DCEP(B) 7.53 0 8.48 V 41041.39 3.639760 29 F3 +52562 RT Car LC 8.2 0 9.9 V M2Ia-0 +45416 RU Car LB 10.9 0 12.1 p N3 +52661 SX Car DCEP 8.66 0 9.47 V 35074.336 4.8600 30 F5-G2Ib-II +52656 TZ Car SRB 10.2 0 11.9 p 69. R5 +51142 UW Car DCEP 8.98 0 9.86 V 34897.059 5.345773 28 G0 +51338 UX Car DCEP 7.81 0 8.67 V 34906.805 3.682246 26 F5-G1II +51909 UZ Car DCEP 9.00 0 9.62 V 34894.69 5.20466 29 G0 +52538 VY Car DCEP 6.87 0 8.05 V 10009.58 18.990 36 F6-G4Iab-Ib +53083 WW Car DCEP 9.35 0 10.11 V 34925.15 4.67681 28 F0 +53397 WZ Car DCEP 8.65 0 10.01 V 44143.17 23.0132 17 F8 +53536 XX Car DCEP 8.67 0 9.89 V 36221.730 15.71624 33 G0 +53945 XY Car DCEP 8.82 0 9.77 V 36190.230 12.43483 39 G5 +54101 XZ Car DCEP 8.05 0 9.13 V 36205.754 16.6499 37 K5 +51262 YZ Car DCEP 8.24 0 9.08 V 34907.04 18.1631 41 G5 +34310 AC Car SRB 9.1 0 10.3 p 99. M7III +53461 AG Car SDOR 7.1 0 9.0 p B0I-A2Ieq +50722 AQ Car DCEP 8.55 0 9.15 V 36188.449 9.76896 50 F8-G0Ib +53300 BZ Car SRC 8.9 0 10.8 p 97. M3Ib +50244 CN Car DCEP 10.24 0 11.00 V 34510.24 4.93261 30 +53593 CY Car DCEP 9.44 0 10.05 V 35069.355 4.26593 34 G0 +54543 ER Car DCEP 6.58 0 7.13 V 40277.88 7.71855 34 F8-G1Iab-Ib +50992 EX Car EA/SD 10.0 0 11.5 p 23997.641 1.396366 14 G0 +52380 EY Car DCEP 10.00 0 10.68 V 35067.004 2.87598 30 +53867 FN Car DCEP 11.16 0 11.85 V 34899.352 4.58569 40 +54891 FR Car DCEP 9.29 0 10.04 V 41048.5 10.71697 43 G5 +53444 GG Car EB/GS 9.1 0 9.5 9.5 p 29580.13 62.086 Beq +54621 GH Car DCEPS 9.00 0 9.35 V 35069.395 5.72557 44 G0 +54862 GI Car DCEPS 8.10 0 8.47 V 34924.602 4.43061 46 F3-F8Iab-Ib +48663 GX Car DCEP 8.94 0 9.77 V 40741.13 7.19673 29 F8II-K0 +50615 GZ Car DCEPS(B) 9.98 0 10.47 V 40742.6 4.15901 45 G5 +54066 HK Car DCEP 10.71 0 11.60 B 34535.35 6.69574 30 G5 +50843 HR Car SDOR 8.2 0 9.6 p B2eq +52157 HW Car DCEP 9.0 0 9.8 p 24404.94 9.2002 50 G2-3Ib-II +54715 IT Car DCEP 7.90 0 8.29 V 37299.766 7.53320 36 F8-K2Iab-Ib +52991 IX Car SRC 9.0 0 10.0 p 28900. 400. M2Iab +51576 PP Car GCAS 3.27 0 3.37 V B5Vne +51740 QS Car EA/DM 9.0 0 9.4 9.3 p 28656.315 9.3208 F2-F5 +54226 QU Car NL 11.4 1 0.7 V pec +48589 QX Car EA/DM 6.60 0 7.21 7.02 V 40701.3715 4.47804 06 B5V+B5V +49934 QY Car GCAS 5.63 0 5.83 V B2IVpne +52526 QZ Car EB 6.16 0 6.49 6.43 V 43192.4 5.9981 O9III +50371 V0337 Car LC 3.36 0 3.44 V K3II +38834 V0341 Car L 6.2 0 7.10 V M1-3II-III +42568 V0343 Car BCEP: 4.20 1 0.04 B B1.5III +43105 V0344 Car GCAS 4.4 0 4.51 V B3Vne +44626 V0345 Car GCAS 4.67 0 4.78 V B2Vne +50088 V0347 Car EA/DM 8.5 0 9.0 p 38474.425 5.72555 A3m +54572 V0353 Car GCAS 7.59 0 7.78 V B2Ve +120404 V0356 Car EA: 7.59 0 8.01 V B9.5IVp(Si) +45080 V0357 Car E: 3.41 0 3.44 V B2IV-V +52221 V0364 Car ACV 5.48 0 5.52 V 42428.81 1.668 B8IIIp(Si) +48761 V0367 Car EB/DM 7.49 0 7.59 7.54 V 42468.79 5.73 B6V +49926 V0368 Car LB: 6.1 0 6.40 V M5III +51676 V0369 Car ACYG 6.11 1 0.1 V B6eIa +52004 V0370 Car ACYG 5.45 0 5.52 V A0eIa +54461 V0371 Car ACYG 5.12 0 5.19 V B9.5eIa +38438 V0372 Car BCEP 5.69 1 0.02 V 0.1160 B2III +38994 V0374 Car GCAS 5.72 0 5.84 V B2IV-Vpne +39530 V0375 Car BCEP: 6.29 1 0.04 V B4Vn +43937 V0376 Car BCEPS 4.91 0 4.96 V 0.0208 B2IV-V +46224 V0377 Car EA/DM 8.05 0 8.34 V 2.242624 B4V +54463 V0382 Car DCEP: 3.84 0 4.02 V F8-G2Ia +33616 V0383 Car DSCTC 8.84 1 0.06 V Fm +54283 V0385 Car ELL:+WR 7.70 1 0.04 0.04 V 42000.0 4.762 WN8 +34105 V0386 Car ACV 5.16 1 0.02 V +34929 V0387 Car ACV 7.0 1 0.02 V +35692 V0388 Car ACV 7.94 1 0.03 V +35676 V0389 Car ACV 7.2 1 0.01 V +37248 V0390 Car ACV 6.06 1 0.00 V +48617 V0396 Car ELL 8.32 1 0.06 V +51109 V0398 Car E 9.69 1 0.03 V +51192 V0399 Car CEP 4.64 0 4.71 V +52059 V0407 Car ACV 6.71 0 6.74 V +36537 V0409 Car ACVO 9.1 1 0.03 B +54179 V0414 Car ACYG: 6.55 1 0.09 V +32761 V0415 Car EA/GS 4.39 1 0.06 V +48643 V0423 Car ACV 6.9 1 0.02 B +53274 V0428 Car E:/WR 10.7 1 0.05 V +52308 V0429 Car EA/WR 6.38 1 0.12 B +54266 V0430 Car BCEP: 6.68 1 0.03 V +54574 V0431 Car E/WR 8.09 1 0.02 B +30252 V0435 Car DSCTC 7.3 1 0.02 B +48619 V0437 Car ACVO 9.32 1 0.01 V +30546 V0444 Car LB: 8.07 0 8.30 Hp +31644 V0445 Car SRB 9.01 0 9.35 Hp +31664 V0446 Car LB: 8.72 0 8.84 Hp +32218 V0447 Car SRB 8.51 0 8.69 Hp +32531 V0448 Car SRD: 5.66 0 5.86 Hp +33063 V0449 Car SRD 9.03 0 9.18 Hp +34000 V0450 Car LPB 5.45 0 5.47 Hp +34122 V0451 Car SRB 8.83 0 9.12 Hp +34792 V0452 Car EA: 8.04 0 8.37 Hp +35979 V0453 Car EA: 11.32 0 12.19 Hp +36682 V0454 Car EB 6.92 0 7.10 Hp +37012 V0455 Car EA 8.33 0 8.55 Hp +37549 V0456 Car SXARI: 7.21 0 7.26 Hp +37555 V0457 Car LB: 8.41 0 8.51 Hp +37966 V0458 Car ACV: 6.85 0 6.92 Hp +38416 V0459 Car ACV 7.47 0 7.51 Hp +39070 V0460 Car LC 5.15 0 5.30 V +39225 V0461 Car EA 6.08 0 6.20 Hp +39310 V0462 Car EB 6.68 0 6.84 Hp +39611 V0463 Car BY: 10.41 0 10.60 Hp +39885 V0464 Car LB: 8.95 0 9.06 Hp +40638 V0465 Car LB: 8.73 0 8.87 Hp +40666 V0466 Car EA 7.25 0 7.55 Hp +40838 V0467 Car EA: 8.00 0 8.46 Hp +41266 V0468 Car ACV: 6.59 0 6.62 Hp +41644 V0469 Car ACV 6.39 0 6.42 Hp +41906 V0470 Car EB: 7.45 0 7.61 Hp +42251 V0471 Car BE 8.02 0 8.10 Hp +42819 V0472 Car ACV 6.78 0 6.83 Hp +43763 V0473 Car LPB 6.31 0 6.35 Hp +44216 V0474 Car BY 10.26 0 10.44 Hp +44266 V0475 Car SRB 7.79 0 8.25 Hp +44650 V0476 Car EA: 8.28 0 8.39 Hp +45094 V0477 Car EA 8.34 0 8.56 Hp +45615 V0478 Car SRD 6.28 0 6.30 Hp +46063 V0479 Car BY: 10.07 0 10.22 Hp +46147 V0480 Car BE 7.76 0 7.99 Hp +46452 V0481 Car ACV 7.72 0 7.77 Hp +46620 V0482 Car SRB: 5.85 0 5.95 Hp +46985 V0483 Car LPB 7.40 0 7.43 Hp +46978 V0484 Car GCAS 7.43 0 7.62 Hp +47549 V0485 Car BE 7.07 0 7.12 Hp +47591 V0486 Car EB 6.31 0 6.45 Hp +47893 V0487 Car ACV 6.39 0 6.49 Hp +47892 V0488 Car LPB 7.13 0 7.16 Hp +47992 V0489 Car SRB 8.17 0 8.60 Hp +48104 V0490 Car SRB 8.10 0 8.32 Hp +48665 V0491 Car BY:+E: 9.18 0 11.22 Hp +48782 V0492 Car LPB 6.14 0 6.18 Hp +48832 V0493 Car EA 8.84 0 9.19 Hp +48794 V0494 Car LB: 9.24 0 9.53 Hp +49642 V0495 Car ACV 6.40 0 6.42 Hp +49816 V0496 Car SRB 7.96 0 8.57 Hp +49927 V0497 Car BE 8.99 0 9.12 Hp +49945 V0498 Car E: 7.14 0 7.24 Hp +50272 V0499 Car ACYG: 7.91 0 7.99 Hp +50368 V0500 Car WR 10.61 0 10.81 Hp +50626 V0501 Car SRB 6.91 0 7.01 Hp +50846 V0502 Car LB: 8.25 0 8.36 Hp +51063 V0503 Car BE: 9.27 0 9.39 Hp +51150 V0504 Car ACYG: 7.14 0 7.21 Hp +51141 V0505 Car SRB 6.60 0 6.68 Hp +51246 V0506 Car LPB: 6.77 0 6.80 Hp +51265 V0507 Car BE 6.39 0 6.45 Hp +51310 V0508 Car ACYG 7.66 0 7.70 Hp +51429 V0509 Car EA 8.61 0 8.97 Hp +51453 V0510 Car GCAS 7.47 0 7.67 Hp +51424 V0511 Car LB 7.10 0 7.26 Hp +51810 V0512 Car SRB 6.85 0 6.98 Hp +51857 V0513 Car ACYG 6.72 0 6.76 Hp +52043 V0514 Car LPB 5.83 0 5.86 Hp +52046 V0515 Car SRB 7.79 0 8.03 Hp +52274 V0516 Car ACYG 7.03 0 7.08 Hp +52291 V0517 Car SRB: 7.86 0 7.95 Hp +52370 V0518 Car GCAS: 4.60 0 4.76 Hp +52405 V0519 Car BE 5.40 0 5.48 Hp +52468 V0520 Car LC: 4.63 0 4.70 Hp +52507 V0521 Car LB 7.23 0 7.69 Hp +52827 V0522 Car ACYG: 6.04 0 6.12 Hp +53109 V0523 Car ACYG 6.95 0 6.99 Hp +53154 V0524 Car ACYG 5.28 0 5.34 Hp +53470 V0525 Car LB 7.10 0 7.26 Hp +53479 V0526 Car ACYG: 7.38 0 7.45 Hp +53708 V0527 Car DSCTC: 9.04 0 9.09 Hp +54021 V0528 Car LC 6.51 0 6.75 Hp +54026 V0529 Car EA 8.19 0 8.58 Hp +54130 V0530 Car LC 8.00 0 8.22 Hp +54431 V0531 Car LB: 9.28 0 9.48 Hp +54708 V0532 Car SRB 6.10 0 6.28 Hp +54751 V0533 Car ACYG: 4.69 0 4.75 Hp +55078 V0534 Car IA: 10.73 0 11.06 Hp +55140 V0535 Car LB 6.05 0 6.16 Hp +55207 V0536 Car LPB: 8.87 0 8.97 Hp +55238 V0537 Car SRB 6.24 0 6.56 Hp +55355 V0538 Car LB: 7.64 0 8.20 Hp +52762 V0540 Car ACYG 6.98 0 7.04 Hp +48269 V0596 Car IA 8.44 0 8.75 V B5Vne +37763 V0606 Car EA 8.31 0 8.68 8.60 V 53042.680 12.3192 04 B8/9III +51425 V0655 Car EA 6.19 0 6.36 6.35 V 48175.220 16.9330 05 B4IV +54753 V0830 Car BCEP: 8.32 0 8.36 Hp 0.112217 B1:Vn +38827 χ Car BCEP 3.46 1 0.01 V 0.101 B2IV +47854 l Car DCEP 3.28 0 4.18 V 40736.9 35.53584 26 F6Ib-K0Ib +118188 R Cas M 4.7 0 13.5 V 44463. 430.46 40 M6e-M10e +1834 T Cas M 6.9 0 13.0 V 44160. 444.83 56 M6e-M9.0e +114515 V Cas M 6.9 0 13.4 V 44605. 228.83 48 M5e-M8.5e +4284 W Cas M 7.8 0 12.5 V 44209. 405.57 46 C7,1e +9057 X Cas M 9.45 0 13.2 V 43922. 422.84 55 C5,4e(N1e) +116556 RS Cas DCEP 9.53 0 10.36 V 42773.487 6.295983 27 F7-G1Ib +5589 RU Cas CST: 5.50 0 5.60 V B9IV +7548 RW Cas DCEP 8.62 0 9.76 V 35575.227 14.7949 37 F6-G5 +14542 RX Cas EB/GS 8.64 0 9.49 9.49 V 16250.910 32.31211 K1III+A5eIII +117690 RY Cas DCEP 9.38 0 10.39 V 37344.602 12.13726 41 F5-G3Ib +13133 RZ Cas EA/SD 6.18 0 7.72 6.26 V 43200.3063 1.195247 17 A2.8V +781 SS Cas M 8.8 0 13.3 V 44208. 140.57 48 M3e-M8e +1401 ST Cas SR 11.6 0 12.4 p C4,4(N3) +13367 SU Cas DCEPS 5.70 0 6.18 V 38000.598 1.949319 40 F5Ib-II-F7Ib-II +116705 SV Cas SRA 9.1 0 12.5 p 37964. 264.5 42 M6.5 +114160 SW Cas DCEP 9.32 0 10.01 V 42989.590 5.440950 31 F6-G2 +871 SX Cas EA/GS 8.96 0 9.83 9.32 V 39009.525 36.56375 10 B7eIII+K3III +1213 SY Cas DCEP 9.40 0 10.24 V 41682.230 4.071098 25 F5-G0 +11420 SZ Cas DCEPS 9.60 0 10.02 V 39059.47 13.63289 44 F6-G4Ib +2085 TU Cas CEP(B) 6.88 0 8.18 V 41704.839 2.139298 31 F3II-F5II +1550 TV Cas EA/SD 7.22 0 8.22 7.34 V 44602.4534 1.8125956 18 B9V+F7IV +12906 TW Cas EA 8.32 0 8.98 8.40 V 42008.3873 1.4283240 16 B9V+A0: +117763 TZ Cas LC 8.86 0 10.5 V M2Iab +117576 UU Cas EB/DM 10.4 0 10.8 10.5 p 28751.72 8.51929 B0.5III +5658 UZ Cas DCEP 10.93 0 11.73 V 36982.266 4.259459 26 F6-G2 +8614 VV Cas DCEP 10.26 0 11.20 V 42836.853 6.207059 26 F6-G2Ib +5138 VW Cas DCEP 10.36 0 11.07 V 42778.693 5.993859 33 F6-G2 +4008 VY Cas SRB 10.5 0 12.0 p 100. M6-M7 +7260 WW Cas LB 9.1 0 11.7 V C5,5(N1) +99 WZ Cas SRB 9.4 0 11.4 p 186. C9,2JLi(N1p) +3886 XY Cas DCEP 9.61 0 10.26 V 42006.786 4.501697 31 F6Ib-G2Ib +3572 YZ Cas EA/DM 5.71 0 6.12 5.78 B 28733.4218 4.467224 15 A2V+F2V +2644 ZZ Cas EB/KE 10.7 0 11.1 10.9 p 33437.495 1.243527 B3 +6191 AA Cas LB 8.3 0 9.4 V M6III +12235 AB Cas EA+DSCT 10.10 0 11.85 10.28 V 42714.4627 1.3668738 18 A3+KV +1415 AO Cas ELL/KE 6.07 0 6.24 6.24 V 32191.189 3.523487 O9III+O9III +6174 AQ Cas EA/D 10.06 0 11.0 10.4 V 26282.50 11.72115 18 B3+B9: +115990 AR Cas EA/DM 4.82 0 4.96 4.86 V 35792.8948 6.0663309 06 B3IV-V +796 BD Cas CWB 10.84 0 11.21 V 41932.032 3.650900 47 +4279 BM Cas EB/GS 8.78 0 9.31 8.98 V 25772.9 197.28 A5Ia-F0eIab +5846 BP Cas DCEP 10.55 0 11.33 V 36991.353 6.272724 28 F6-G1 +8312 BY Cas DCEPS 10.06 0 10.58 V 41774.191 3.223316 50 F5-F7 +15063 CC Cas EB/DM 7.06 0 7.30 7.26 V 43818.166 3.368753 O9IV+O9IV +117154 CD Cas DCEP 10.37 0 11.15 V 37023.312 7.80089 34 F6-G5 +118174 CF Cas DCEP 10.80 0 11.47 V 37022.191 4.87522 29 F8Ib-G0Ib +115390 CH Cas DCEP 10.37 0 11.45 V 36912.426 15.08619 40 F3pIb-F6 +115925 CY Cas DCEP 11.07 0 12.21 V 40119.466 14.37686 34 G0Ib-G2Ib +118122 DD Cas DCEP 9.56 0 10.18 V 42780.493 9.812027 50 F7-G1 +12817 DF Cas DCEP 10.53 0 11.13 V 41719.622 3.832472 30 F6-G4: +2347 DL Cas DCEP 8.63 0 9.26 V 42780.334 8.000669 33 F5Ib-G2Ib +12543 DO Cas EB/KE 8.39 0 9.01 8.61 V 33926.4573 0.6846661 A4V +116684 DW Cas DCEP 10.81 0 11.41 V 36980.605 4.99776 28 F7 +1162 FM Cas DCEP 8.82 0 9.47 V 42817.713 5.809284 30 F7-G0I +12416 GP Cas LC 11.5 0 12.7 p M2.0Iab +7139 IM Cas SRB 10.2 0 11.0 p 27990. 323. M2 +390 IX Cas CWA 11.19 0 11.77 V 42779.743 9.153375 49 F7 +779 KN Cas LC 10.5 0 11.2 p M1epIb+B2.6V +1263 MU Cas EB/DM 10.6 0 10.9 10.8 p 27962.509 3.861145 B8 +1945 NQ Cas LB 10.6 0 11.52 B C4,5J(R5) +5391 OX Cas EA/DM 9.90 0 10.35 10.30 V 41269.6355 2.4893427 15 B1V +117078 PZ Cas SRC 11.16 0 12.9 B 34150. 925. M2-4Ia +116018 V0358 Cas LC 11.5 0 13.8 p M3Ia-Iab +1222 V0363 Cas RRAB 10.29 0 10.73 V 36142.592 0.5465353 40 F3-F7 +14936 V0368 Cas EA 8.45 0 9.2 B 25554.320 4.451642 12 B3III +117957 V0373 Cas E:/GS 5.9 0 6.3 V 36491.237 13.4192 B0.5II+B0.5II +1543 V0377 Cas DSCT: 7.78 0 7.83 V 0.03 F0 +9042 V0391 Cas LB 9.2 0 10.0 p M4 +116210 V0436 Cas ACV 7.39 0 7.84 V 38666. 159.0 A0p(Sr-Cr-Eu) +6093 V0465 Cas SRB 7.7 0 8.9 p 60. M5 +6231 V0466 Cas LC 9.8 0 10.74 B M1.5Ib +12495 V0482 Cas BCEP 8.27 0 8.31 B 0.37822 O9.5I-II +3346 V0486 Cas E: 6.91 1 0.04 V 39012.27 5.551 B1III +5239 V0487 Cas SRD 7.44 0 7.74 V 134. G0-G4Ia +113561 V0509 Cas SRD 4.75 0 5.5 V F8e-KIa-0+B1V +3965 V0526 Cas DSCTC 6.34 0 6.37 V F5III +11604 V0528 Cas BCEP: 8.69 0 8.86 B B5V +11607 V0529 Cas GCAS 8.44 0 8.86 V B5Vea +6084 V0538 Cas ISB 9.4 0 10.6 p K5III +7598 V0539 Cas LB: 8.36 0 8.72 V M2 +9604 V0540 Cas ACV 7.73 0 7.75 V 40854.7 34.9 A0p(Cr) +2552 V0547 Cas UV 11.5 0 12.01 B M2.5Ve +4717 V0551 Cas ACV 8.43 0 8.77 V 41206. 69.0 A0p(Sr-Cr) +7965 V0557 Cas ACV 5.55 0 5.64 V 40974.88 3.1848 50 B9p(Si-Sr-Cr) +9906 V0558 Cas E 9.0 0 9.6 B A-F +11318 V0559 Cas EA 7.01 0 7.23 7.21 V 41357.560 1.58064 12 B9V +117447 V0566 Cas ACYG 5.34 0 5.45 V A3eqIa-0 +418 V0567 Cas ACV 5.71 0 5.81 V 40482.444 6.4322 50 B9p(Hg-Mn) +3401 V0594 Cas INA 10.9 0 12.00 B O9.5e +8025 V0595 Cas LC 8.75 0 9.05 V M2Ib +9481 V0598 Cas LB 7.38 0 7.54 V M3-4III +10904 V0605 Cas LC 8.22 0 8.48 V M2Iab +12469 V0615 Cas * 11.2 0 11.9 B B1eIb: +14827 V0623 Cas LB: 9.0 0 9.8 p C4,5J(R5) +113373 V0627 Cas SR: 12.4 0 13.24 V M2eII-III +114995 V0628 Cas INA 10.88 0 11.84 V Beq +7192 V0636 Cas DCEPS 7.09 0 7.26 V 44001.355 8.377 50 G0Ib +113797 V0638 Cas ACV 5.7 1 0.10 U 44115.24 5.36 B9IIIp(Heweak) +274 V0639 Cas ACYG 6.19 0 6.28 V +518 V0640 Cas E: 5.96 1 0.06 V +13290 V0648 Cas LC 11.8 0 12.6 p +114904 V0649 Cas EA/DM 6.53 1 0.10 V +117430 V0650 Cas ACV 6.41 1 0.02 V +6081 V0662 Cas XP: 11.06 1 0.10 V +14537 V0704 Cas SR 11.4 0 12.1 p +114817 V0728 Cas RS: 8.1 1 0.06 V +336 V0739 Cas LB 7.62 0 7.70 Hp +723 V0740 Cas SRD: 8.69 0 8.74 Hp +834 V0741 Cas EB 8.26 0 8.51 Hp +940 V0742 Cas BE 7.11 0 7.17 Hp +1652 V0743 Cas SRB 6.81 0 6.91 Hp +1735 V0744 Cas EA 8.44 0 8.70 Hp +1805 V0745 Cas EB 8.06 0 8.16 Hp +1921 V0746 Cas LPB 5.54 0 5.56 Hp +2271 V0747 Cas LB: 6.89 0 7.16 Hp +2596 V0748 Cas SRB 10.01 0 10.40 Hp +2667 V0749 Cas LB: 8.62 0 8.74 Hp +2808 V0750 Cas LB: 8.89 0 9.02 Hp +2813 V0751 Cas LPB 7.88 0 7.91 Hp +2899 V0752 Cas LB 7.75 0 8.54 Hp +3171 V0753 Cas LB 7.16 0 7.26 Hp +3294 V0754 Cas SRD 8.76 0 9.07 Hp +3367 V0755 Cas EA/GS: 7.14 0 7.30 V +3513 V0756 Cas DSCTC: 8.75 0 8.83 Hp +3839 V0757 Cas LPB 8.17 0 8.22 Hp +4451 V0758 Cas LB: 8.57 0 8.69 Hp +4918 V0759 Cas LB: 7.43 0 7.61 Hp +5161 V0760 Cas LPB 7.12 0 7.17 Hp +5688 V0761 Cas ACV: 6.38 0 6.41 Hp +5926 V0762 Cas BY: 5.92 0 6.02 Hp +5976 V0763 Cas SRB 8.27 0 8.43 Hp +6027 V0764 Cas BE 6.85 0 6.93 Hp +6171 V0765 Cas EB 10.72 0 11.11 Hp +6287 V0766 Cas EA 7.10 0 7.51 Hp +6934 V0767 Cas SRB 8.87 0 9.04 Hp +7103 V0768 Cas LPB: 10.09 0 10.18 Hp +7512 V0769 Cas LPB: 7.59 0 7.65 Hp +7755 V0770 Cas LB 7.45 0 8.13 Hp +7936 V0771 Cas BE: 9.31 0 9.48 Hp +7939 V0772 Cas ACV: 6.67 0 6.72 Hp +8115 V0773 Cas EA 6.21 0 6.30 Hp +8297 V0774 Cas SRB 8.35 0 8.67 Hp +8693 V0775 Cas EA: 9.73 0 9.93 Hp +8821 V0776 Cas EW: 8.94 0 9.09 Hp +8980 V0777 Cas BE 6.95 0 7.12 Hp +9211 V0778 Cas SRC 8.19 0 8.36 Hp +9494 V0779 Cas EA: 6.59 0 6.65 Hp +9538 V0780 Cas BE 8.08 0 8.24 Hp +9635 V0781 Cas SRD 7.58 0 7.68 Hp +9997 V0782 Cas BE 7.66 0 7.74 Hp +10147 V0783 Cas BE 9.81 0 10.00 Hp +10141 V0784 Cas DSCTC 6.70 0 6.76 Hp +10173 V0785 Cas EA 9.33 0 9.64 Hp +10243 V0786 Cas ACYG: 8.67 0 8.78 Hp +10486 V0787 Cas BE 8.00 0 8.24 Hp +11894 V0788 Cas LPB 7.88 0 7.92 Hp +11978 V0789 Cas SRB 6.70 0 6.84 Hp +12009 V0790 Cas ACYG: 8.42 0 8.54 Hp +12178 V0791 Cas EB 7.78 0 7.94 Hp +13016 V0792 Cas BCEP 9.26 0 9.45 Hp +13221 V0793 Cas EB 7.93 0 8.22 Hp +13276 V0794 Cas EA 7.88 0 8.10 Hp +13474 V0795 Cas E 8.97 0 9.19 Hp +13446 V0796 Cas LPB 8.062 0 8.11 Hp +13797 V0797 Cas LPB: 7.71 0 7.74 Hp +14049 V0798 Cas ACV 7.33 0 7.37 Hp +14377 V0799 Cas EA 8.80 0 9.15 Hp +14526 V0800 Cas LB 7.05 0 7.22 Hp +14626 V0801 Cas BE 6.48 0 6.57 Hp +14932 V0802 Cas I: 10.60 0 10.90 Hp +15139 V0803 Cas BE: 9.12 0 9.28 Hp +15408 V0804 Cas LB: 8.28 0 8.38 Hp +16319 V0805 Cas SRB 6.30 0 6.51 Hp +113897 V0806 Cas E: 9.00 0 9.20 Hp +114552 V0807 Cas ELL: 10.89 0 11.02 Hp +114815 V0808 Cas BE: 9.76 0 9.93 Hp +115141 V0809 Cas LC 6.58 0 6.71 Hp +115224 V0810 Cas BE 8.56 0 8.69 Hp +115244 V0811 Cas BE 8.62 0 8.79 Hp +115267 V0812 Cas ACV 8.12 0 8.18 Hp +115368 V0813 Cas BE 7.90 0 8.02 Hp +115952 V0814 Cas LB 7.55 0 7.80 Hp +116507 V0815 Cas LB: 8.77 0 8.88 Hp +116948 V0816 Cas LB 6.50 0 6.63 Hp +117205 V0817 Cas BE 8.26 0 8.61 Hp +117514 V0818 Cas BE 7.67 0 7.81 Hp +117830 V0819 Cas ACYG: 7.01 0 7.09 Hp +118139 V0820 Cas BE 8.19 0 8.27 Hp +118223 V0821 Cas EA 8.27 0 8.62 Hp +181 V0822 Cas SRB 6.75 0 6.84 Hp +3415 V0863 Cas WR 10.54 1 0.09 V +4907 V0966 Cas BY 7.67 1 0.02 V 12.165 G5V +8362 V0987 Cas BY 5.63 1 0.05 V 21.7 K0V +10531 V0989 Cas BY 7.13 1 0.03 V 6.79 K2V +10618 V0990 Cas * 7.03 1 0.02 V 7.48 K4II +623 V1006 Cas GDOR 8.37 1 0.13 V 0.9004 F2V +5674 V1012 Cas GDOR 7.68 1 0.06 B 0.5486 F1V +118077 V1022 Cas EA 5.56 0 5.68 5.59 Hp 49040.829 12.1564 04 F1/6V+F3V +2232 V1036 Cas INT: 9.40 1 0.10 V G0 +7238 V1123 Cas EA 10.91 1 0.20 0.11 I 51427.8223 4.5020 08 B2V +7280 V1132 Cas GDOR 8.24 0 8.30 I 0.62576 FOV +3179 α Cas CST: 2.20 0 2.27 V K0IIIa +746 β Cas DSCTC 2.25 0 2.31 V 38991.876 0.10430 40 F2III-IV +6686 δ Cas EA: 2.68 0 2.76 2.75 V 20161. 759. A5V +3821 η Cas RS: 3.58 0 3.63 Hp +11569 ι Cas ACV 4.45 0 4.53 V 37248.313 1.74050 35 B9p(Cr-Sr) +2599 κ Cas ACYG 4.22 0 4.30 B B1eaIa +3504 ο Cas GCAS 4.50 0 4.62 V B2-5eIV +3414 Ï€ Cas ELL 5.00 0 5.02 Hp +117863 Ï Cas SRD 4.1 0 6.2 V 320. F8pIa-K0pIa-0 +69754 R Cen M 5.3 0 11.8 8.3 V 41942. 546.2 M4e-M8IIe +60534 S Cen SR 9.2 0 10.7 p 65. C4,5(Nbp) +66825 T Cen SRA 5.5 0 9.0 V 43242. 90.44 47 K0:e-M4II:e +61286 U Cen M 7.0 0 14.0 V 39941. 220.28 47 M3II:e-M5IIe +71116 V Cen DCEP 6.43 0 7.21 V 40308.60 5.493839 26 F5Ib/II-G0 +58107 W Cen M 7.60 0 13.7 V 41786. 201.57 47 M3e-M8(III)e +57642 X Cen M 7.0 0 13.8 V 41709. 315.1 41 M5e-M6.5e +70969 Y Cen SRB: 8.9 0 10.0 p 180. M4e-M7 +69779 RR Cen EW/KE: 7.27 0 7.68 7.63 V 24231.0981 0.60569029 A9/F0V +67359 RT Cen M 8.1 0 13.6 V 42098. 255.02 47 M6II:e +59267 RU Cen RV 8.7 0 10.7 p 28015.51 64.727 A7Ib-G2pe +66466 RV Cen M 7.0 0 10.8 V 40960. 446.0 56 N3e +67626 RX Cen M 8.7 2 15. V 42114. 327.90 38 M5e +67556 SZ Cen EA/D 8.3 0 8.9 8.7 p 41386.7466 4.107983 15 A6III +62071 UW Cen RCB 9.1 2 14.5 V K +65242 UX Cen SRB 10.1 0 10.6 p 122. C(Nb) +64778 UY Cen SR 9.22 0 11.2 B 114.6 SC +56991 UZ Cen CEP(B) 8.30 0 9.12 V 40746.1 3.33434 27 F3Ib/II +66189 VW Cen DCEP 9.67 0 10.72 V 44023.17 15.03618 38 +57895 VZ Cen EA 8.34 0 8.6 8.4 B 29125.519 4.9287012 20 B2III/IV +66696 XX Cen DCEP 7.30 0 8.31 V 40366.24 10.954348 49 F6-G4(F7/8II) +60502 XZ Cen M 7.8 0 10.7 V 30136. 290.7 M5e +55726 AY Cen DCEP 8.58 0 9.16 V 36733.520 5.30975 32 G1I-G5 +55736 AZ Cen DCEPS 8.41 0 8.80 V 35223.36 3.21068 40 F7 +57978 BB Cen DCEPS 9.86 0 10.48 V 40990.27 3.99766 45 F5 +73533 BE Cen M 9.8 0 14.0 p 28740. 201.56 45 Me +57649 BK Cen CEP(B) 9.60 0 10.38 V 35221.711 3.173887 30 G5 +57130 KK Cen DCEP 10.84 0 11.94 V 41017.51 12.1803 47 +66383 KN Cen DCEP 9.28 0 10.36 V 36238.172 34.0457 21 +70203 V0339 Cen DCEP 8.40 0 9.17 V 40768.15 9.4660 50 F7II-G5 +64969 V0378 Cen DCEPS 8.27 0 8.68 V 34917.113 6.45930 32 F5Iab/b-G5 +65492 V0379 Cen EA/SD 8.8 0 9.6 8.9 p 28402.23 1.874685 18 B5V +67566 V0381 Cen CEP 7.32 0 8.01 V 36201.953 5.07878 28 F6-G7(F8Ib/II) +68178 V0412 Cen LB 7.1 0 9.6 B M3Iab/b-M7 +56176 V0419 Cen DCEPS 7.98 0 8.36 V 40760.28 5.50691 42 F7II-K0 +56898 V0420 Cen CWA 9.37 0 10.60 V 25350.67 24.7678 27 +63693 V0496 Cen DCEP 9.62 0 10.24 V 40773.38 4.42419 29 G3 +67976 V0499 Cen RRAB 10.36 0 11.54 V 41126.248 0.5212100 12 A3-F5 +72257 V0553 Cen CWB 8.23 0 8.80 V 41124.28 2.06051 41 F4-K0Ia(C) +57844 V0572 Cen SR 12.1 0 12.7 p 135. +69781 V0636 Cen EA/DM: 8.7 0 9.2 8.8 V 34540.340 4.28398 04 G0V +70890 V0645 Cen UV 12.1 0 13.12 B M5Ve +65970 V0659 Cen DCEP 6.45 0 6.71 V 40348.77 5.62180 43 F7Ib +65977 V0701 Cen EB/KE 8.8 0 9.3 9.1 V 39243.2661 0.738447 B9V +69491 V0716 Cen EB/KE 5.96 0 6.52 6.21 V 38524.4069 1.490096 B5V +71492 V0737 Cen DCEP 7.5 0 8.0 p 28656.350 7.06585 39 G2Ib +65715 V0743 Cen DSCT 8.57 0 8.82 V 39243.6436 0.10225435 36 A0V +66666 V0744 Cen SRB 5.14 0 6.55 V 90. M8III +57129 V0752 Cen EW/KW 9.1 0 9.66 9.61 V 44243.6916 0.37022484 G0 +57812 V0753 Cen RRC: 10.24 0 10.64 V 41386.144 0.221349 45 A5 +67682 V0757 Cen EW/KW 8.3 0 8.7 8.6 V 42308.6931 0.34316929 +67746 V0758 Cen EW/KE 8.8 0 9.40 9.15 B 44403.2797 0.58078556 B9IV +69256 V0759 Cen EW/KW 7.4 0 7.56 7.56 V 42196.0973 0.39395129 F9V +70300 V0761 Cen SXARI 4.38 0 4.43 V 42807.75 8.8171 B2V-B8IIIp(He-Si +56518 V0763 Cen SRB 5.55 0 5.80 V 60. M3III +66358 V0764 Cen SRD 8.84 0 9.13 V K2III +66645 V0765 Cen LB: 6.28 1 0.08 V M4 +67261 V0766 Cen SDOR: 6.17 0 7.50 V G8Ia-0 +67861 V0767 Cen GCAS 5.86 0 6.26 V B2IIIe +72432 V0768 Cen SRB 5.93 0 6.15 V M3 +55863 V0771 Cen SRC: 6.87 1 0.2 V M2Ib-II +57057 V0772 Cen LC: 7.80 0 8.36 V M2Ibep+B +67809 V0774 Cen GCAS 7.63 0 7.72 V B3Vne +59229 V0788 Cen EA/D 5.74 0 5.93 5.90 V 41370.496 4.966377 08 A2mA5-F2 +63820 V0789 Cen LB: 6.22 1 0.09 V M3/4III +69618 V0795 Cen GCAS 4.97 0 5.10 V B4Vne +57569 V0801 Cen GCAS:+XP 8.93 0 9.39 V B1Vne +67457 V0806 Cen SRB 4.16 0 4.26 V 12. M5III +56050 V0808 Cen ACYG 6.42 0 6.47 V B2eaIa +56201 V0809 Cen ACYG 6.31 0 6.36 V A3eIa +57175 V0810 Cen SRD 4.95 0 5.12 V 130. F5-G0Ia-0+B1Iab +54360 V0815 Cen ACV 5.14 1 0.03 V 2.433 A3p(Sr) +56709 V0816 Cen DSCT: 7.996 0 8.02 V 43400.0009 0.00843060 F8p +59232 V0817 Cen GCAS 5.47 0 5.58 V B3eaIV +69525 V0820 Cen RV 8.42 2 10.10 V 43325. 150. K0e +69619 V0821 Cen PVTEL 9.94 0 10.03 V B3p +63204 V0823 Cen ACV 6.7 1 0.00 V 2.84 A0p(Si-Cr) +64320 V0824 Cen ACV 6.3 1 0.03 V 1.272 A0p(Si) +67036 V0827 Cen ACV 6.46 1 0.02 V 2.605 A0p(Si) +68673 V0828 Cen ACV 6.10 1 0.04 V 1.837 A0p(Si) +56851 V0829 Cen RS 7.9 1 0.11 V +64425 V0831 Cen ELL: 4.49 0 4.66 V +72241 V0836 Cen BCEP 8.02 0 8.12 V +56759 V0837 Cen DSCT 7.16 1 0.10 V +57269 V0838 Cen BY 8.97 1 0.08 V +63347 V0839 Cen EW/KW 9.51 0 10.13 V +67013 V0851 Cen RS 7.78 0 7.88 V +70904 V0853 Cen DSCTC 6.97 1 0.02 V +56586 V0855 Cen BE 9.58 1 0.07 B +63250 V0856 Cen BCEP 8.32 0 8.37 V +59173 V0863 Cen BE: 4.38 0 4.43 b +69174 V0869 Cen * 5.92 1 0.09 V +56769 V0871 Cen EB 6.48 1 0.12 V +69122 V0883 Cen E 6.40 0 6.63 b +56992 V0885 Cen * 7.60 0 7.95 U +54593 V0897 Cen LB: 7.43 0 7.53 Hp +54659 V0898 Cen DCEPS: 7.93 0 8.21 Hp +54670 V0899 Cen LB: 8.20 0 8.33 Hp +54814 V0900 Cen E 6.95 0 6.99 Hp +54865 V0901 Cen EW: 11.94 0 12.31 Hp +55031 V0902 Cen E: 12.20 0 12.75 Hp +55283 V0903 Cen SRC 7.57 0 7.83 Hp +55396 V0904 Cen LB: 8.47 0 8.58 Hp +55448 V0905 Cen LB: 10.49 0 10.68 Hp +55499 V0906 Cen LPB: 9.57 0 9.71 Hp +55524 V0907 Cen BE 9.03 0 9.30 V +56353 V0908 Cen SRB 7.80 0 7.95 Hp +56435 V0909 Cen SRB 7.73 0 7.86 Hp +56556 V0910 Cen LC 7.19 0 7.34 Hp +56592 V0911 Cen GCAS: 9.00 0 9.45 Hp +56698 V0912 Cen LB 6.81 0 6.98 Hp +56702 V0913 Cen LB 6.19 0 6.45 Hp +56970 V0914 Cen LB 5.99 0 6.12 Hp +57067 V0915 Cen ACV: 8.00 0 8.05 Hp +57106 V0916 Cen BE 8.61 0 8.83 Hp +57237 V0917 Cen SRD 8.28 0 8.37 Hp +57512 V0918 Cen SRD: 5.49 0 5.56 Hp +57607 V0919 Cen SRB: 6.07 0 6.64 Hp +57653 V0920 Cen LB 7.43 0 7.53 Hp +57737 V0921 Cen SRB: 9.57 0 10.01 Hp +57808 V0922 Cen ACYG: 6.57 0 6.64 Hp +57843 V0923 Cen LC 7.60 0 7.95 Hp +58059 V0924 Cen SRB 6.89 0 7.05 Hp +58328 V0925 Cen SRB 8.60 0 8.76 Hp +59811 V0926 Cen SRB 6.67 0 6.73 Hp +60934 V0927 Cen LB 9.05 0 9.44 Hp +60979 V0928 Cen SRB 6.01 0 6.08 Hp +60984 V0929 Cen LB: 6.76 0 6.79 Hp +61040 V0930 Cen LB: 8.54 0 8.67 Hp +61226 V0931 Cen LB: 7.80 0 7.91 Hp +61247 V0932 Cen LB 9.07 0 9.34 Hp +61362 V0933 Cen LB: 8.61 0 8.71 Hp +61507 V0934 Cen SRB 7.84 0 7.96 Hp +61773 V0935 Cen LB 8.11 0 8.24 Hp +61975 V0936 Cen SRB 8.41 0 8.68 Hp +62064 V0937 Cen LB: 8.53 0 8.58 Hp +62086 V0938 Cen LB: 7.16 0 7.22 Hp +62316 V0939 Cen LB: 8.25 0 8.38 Hp +62445 V0940 Cen BY: 9.59 0 9.73 Hp +62623 V0941 Cen LB: 8.87 0 8.95 Hp +62767 V0942 Cen LB 7.21 0 7.32 Hp +62773 V0943 Cen ACV 6.93 0 6.98 Hp +63186 V0944 Cen LB: 9.23 0 9.42 Hp +63210 V0945 Cen LPB 5.14 0 5.16 Hp +63565 V0946 Cen BE 7.33 0 7.46 Hp +63849 V0947 Cen DSCTC: 6.52 0 6.55 Hp +63979 V0948 Cen EB: 9.01 0 9.29 Hp +64025 V0949 Cen EA 9.15 0 9.52 Hp +64130 V0950 Cen DSCTC 7.82 0 7.85 Hp +64334 V0951 Cen LB: 8.49 0 8.64 Hp +64359 V0952 Cen BE 8.02 0 8.11 Hp +64391 V0953 Cen LB 6.99 0 7.14 Hp +64471 V0954 Cen DSCT 7.29 0 7.40 Hp +64578 V0955 Cen BE 7.93 0 8.04 Hp +64572 V0956 Cen SRD: 8.31 0 8.58 Hp +64613 V0957 Cen SRB 11.11 0 11.78 Hp +64622 V0958 Cen BE 7.09 0 7.16 Hp +64653 V0959 Cen GCAS 9.67 0 10.00 Hp +64719 V0960 Cen E 9.51 0 9.82 Hp +64737 V0961 Cen ELL: 7.99 0 8.08 Hp +64712 V0962 Cen LB: 8.29 0 8.40 Hp +64941 V0963 Cen E: 8.69 0 8.79 Hp +65112 V0964 Cen EB 5.40 0 5.44 Hp +65294 V0965 Cen ACYG: 8.01 0 8.10 Hp +65517 V0966 Cen RS: 9.84 0 9.94 Hp +65637 V0967 Cen BE: 7.50 0 7.70 Hp +65776 V0968 Cen ACV 8.10 0 8.16 Hp +65818 V0969 Cen LPB: 10.03 0 10.25 Hp +66030 V0970 Cen LB 8.47 0 8.73 Hp +66070 V0971 Cen LB 8.51 0 8.69 Hp +66142 V0972 Cen WR 10.42 0 10.64 Hp +66157 V0973 Cen LB: 8.94 0 9.10 Hp +66394 V0974 Cen ELL: 7.67 0 7.71 Hp +66580 V0975 Cen E: 7.41 0 7.50 Hp +66631 V0976 Cen ACV: 9.38 0 9.50 Hp +67179 V0977 Cen LB: 8.87 0 8.97 Hp +67202 V0978 Cen LB 7.65 0 7.79 Hp +67324 V0979 Cen EB 7.49 0 7.61 Hp +67298 V0980 Cen LB 8.05 0 8.30 Hp +67604 V0981 Cen LB 8.18 0 8.38 Hp +67616 V0982 Cen BY: 9.60 0 9.85 Hp +67669 V0983 Cen E: 4.27 0 4.32 Hp +67704 V0984 Cen SRB 8.28 0 8.45 Hp +67830 V0985 Cen LB: 8.29 0 8.41 Hp +68019 V0986 Cen LB 6.69 0 6.79 Hp +68218 V0987 Cen BE 8.80 0 8.90 Hp +68186 V0988 Cen BY: 9.77 0 10.02 Hp +68298 V0989 Cen LB: 7.45 0 7.55 Hp +68500 V0990 Cen LB 7.37 0 7.60 Hp +68788 V0991 Cen LB: 9.15 0 9.30 Hp +68842 V0992 Cen EB: 6.23 0 6.32 Hp +68979 V0993 Cen ACV 8.87 0 8.91 Hp +68998 V0994 Cen SRD: 8.26 0 8.38 Hp +69272 V0995 Cen LB: 8.63 0 8.87 Hp +69539 V0996 Cen LB 7.01 0 7.37 Hp +69582 V0997 Cen LPB: 9.44 0 9.70 Hp +69557 V0998 Cen LB: 9.07 0 9.23 Hp +69847 V0999 Cen LPB: 9.03 0 9.15 Hp +69980 V1000 Cen E 8.40 0 8.65 Hp +69978 V1001 Cen IA: 7.24 0 7.42 Hp +70026 V1002 Cen LB 6.48 0 6.98 Hp +70290 V1003 Cen LC: 7.47 0 7.74 Hp +70250 V1004 Cen LB 8.86 0 9.12 Hp +70769 V1005 Cen SRB 7.98 0 8.13 Hp +70832 V1006 Cen SRB 8.59 0 8.81 Hp +71048 V1007 Cen SRB: 8.11 0 8.29 Hp +71194 V1008 Cen BE 7.70 0 7.77 Hp +71178 V1009 Cen BY: 10.24 0 10.43 Hp +71264 V1010 Cen GCAS 8.93 0 9.23 Hp +71563 V1011 Cen LB: 8.47 0 8.64 Hp +71709 V1012 Cen BE 9.10 0 9.16 Hp +71665 V1013 Cen LB 9.01 0 9.18 Hp +71922 V1014 Cen I: 11.52 0 12.24 Hp +71967 V1015 Cen CEP: 8.64 0 8.78 Hp +72117 V1016 Cen LB: 8.42 0 8.54 Hp +72372 V1017 Cen LB 7.59 0 7.79 V +72710 V1018 Cen LPB: 7.89 0 7.98 Hp +72800 V1019 Cen LPB 4.96 0 4.98 Hp +73082 V1020 Cen LB 8.77 0 8.92 Hp +73426 V1021 Cen SRB 8.46 0 8.64 Hp +73595 V1022 Cen RR: 8.33 0 8.38 Hp +57567 V1023 Cen DSCTC 7.94 1 0.05 V +62774 V1026 Cen GDOR 9.33 0 9.38 Hp +63547 V1028 Cen BE 10.52 0 10.70 Hp +64896 V1029 Cen ACYG 7.86 0 7.95 Hp +56726 V1051 Cen EA 7.13 0 7.24 V 47964.840 9.64645 O6.5V(f)+O8.5V +69617 V1061 Cen EA 9.55 0 9.71 9.61 V 52738.708 2.20957 11 B2V +56249 V1089 Cen EA 7.88 0 7.96 7.95 V 48502.854 5.48793 06 B9.5V +59869 V1118 Cen EA 9.55 0 10.1 9.9 V 47945.451 11.30489 02 G3V +63883 V1154 Cen SRS 6.33 0 6.58 V 21.8 M1III +64327 V1160 Cen EA 8.63 0 8.80 8.78 V 53183.610 10.35420 02 B7V +64716 V1166 Cen EA 8.77 0 8.98 8.87 V 51955.858 13.4197 04 B1/2V +65403 V1177 Cen EA 9.08 0 9.44 9.42 V 52014.643 5.7945 05 G5V +66751 V1198 Cen EA 8.66 0 8.80 8.73 V 48966.453 6.50404 06 B6II/III +67712 V1200 Cen EA 8.44 0 8.70 8.51 V 48509.652 2.482874 05 F5V +68339 V1202 Cen EA 8.42 0 8.62 8.62 V 47917.350 15.5543 02 B9V +69358 V1203 Cen EB 7.67 0 7.80 7.72 V 48433.960 2.67096 B4/5III/IV +57589 V1239 Cen IT 11.2 0 11.5 V 5.10 K5V +68702 β Cen BCEP 0.61 1 0.04 V 0.157 B1III +59196 δ Cen GCAS 2.51 0 2.65 V B2IVne +66657 ε Cen BCEP 2.29 0 2.31 V 41040.965 0.169608 B1III +71352 η Cen GCAS 2.30 0 2.41 V B1.5Vne +67472 μ Cen GCAS 2.92 0 3.47 V B2IV-Ve +67464 ν Cen ELL:+BCEP 3.38 0 3.41 V +68862 χ Cen BCEPS 4.15 1 0.02 B 0.035 B2V +106583 S Cep M 7.4 0 12.9 V 43787. 486.84 55 C7,4e(N8e) +104451 T Cep M 5.2 0 11.3 V 44177. 388.14 54 M5.5e-M8.8e +4843 U Cep EA/SD 6.75 0 9.24 6.93 V 44541.6031 2.4930475 15 B7Ve+G8III-IV +118027 V Cep CST: 6.56 0 V A3V +111592 W Cep SRC 7.02 0 9.2 V K0ep-M2epIa+B0/B +23727 RS Cep EA/DS 10.2 0 11.9 V 40862.677 12.420105 08 A5IIIe+G +6325 RU Cep SRD 8.2 0 9.8 V 109. G6-M3.5III +110504 RW Cep SRD 8.6 0 10.7 p 346. K0Ia-0 +3905 RX Cep SRD: 7.2 0 8.2 V 55. G5 +111839 RZ Cep RRC 9.11 0 9.75 V 42635.374 0.3086853 32 A0-F2 +17881 SS Cep SRB 8.0 0 9.1 p 90. M5III +108317 VV Cep EA/GS+SRC 4.80 0 5.36 V 43360. 7430. 08 M2epIa-Iab+B8:eV +101750 VW Cep EW/KW 7.23 0 7.68 7.56 V 44157.4131 0.27831460 G5+K0Ve +111166 WX Cep EA/DM 8.7 0 9.29 9.14 V 25088.537 3.3784535 13 A2+A5: +116648 XX Cep EA/SD 9.20 0 10.32 9.24 V 44839.8022 2.3373266 14 A8V +117724 XY Cep EA/SD 10.05 0 10.90 10.10 V 43791.3160 2.774527 12 B8-A0 +111257 XZ Cep EB/DM: 8.0 0 8.83 8.43 V 43297.811 5.0972267 O9.5V +112317 ZZ Cep EA/DM 8.60 0 9.55 8.74 V 27928.451 2.141800 12 B7+F0V +112562 AH Cep EB/DM 6.78 0 7.07 7.03 V 34989.4026 1.7747505 B0.5Vne+B0.5V +107500 AI Cep EB/DM 9.18 0 9.86 9.48 V 26550.341 4.225288 B0.5V:p +110964 AK Cep DCEP 10.86 0 11.52 V 37022.531 7.23268 28 F6-G2 +112882 AR Cep SRB 7.0 0 7.9 V M4III +108427 CP Cep DCEP 10.06 0 10.96 V 33052.33 17.8590 40 F5Ib-F7 +111633 CQ Cep EB/DM/WR 8.63 0 9.12 V 32456.668 1.641249 WN5.5+O7 +112430 CR Cep DCEP 9.43 0 9.83 V 42774.236 6.232964 39 F8.4 +113907 CW Cep EA/DM 7.60 0 8.04 8.01 V 35373.4496 2.729140 13 B0.5+B0.5IV-Vea +112254 DG Cep LB 11.54 0 12.5 B C6,4(Nb/R8) +112470 DH Cep ELL 8.58 0 8.62 V 32759.279 2.111040 O5.5+O6.5IV-Vn +113269 DI Cep INST 11.95 0 13.5 B G8pVe-K3Ve(T) +109273 DM Cep LB 8.4 0 9.6 p M4 +103471 DQ Cep DSCT 7.22 0 7.32 V 33924.8404 0.07886444 50 F4III +106024 EI Cep EA/DM 7.54 0 8.06 7.98 V 36820.4665 8.439334 06 Am+F1 +107083 EK Cep EA/DM 7.99 0 9.32 8.06 B 39002.7240 4.4277926 06 A0V +108073 EM Cep EW/KE 7.02 0 7.17 7.16 V 40134.7326 0.806187 B1IVe +18548 EZ Cep RRC 11.6 0 12.2 p 26631.370 0.378999 50 +105303 FZ Cep SR 8.5 0 9.1 p M5 +106226 GK Cep EB/KE 6.89 0 7.37 7.35 V 38694.7063 0.936157 A2V+A2V +110154 GP Cep E/WR+E: 8.96 0 9.07 V 31256.602 6.6883 WN6+O8-B0III:+O+ +111849 GQ Cep ACV 8.11 0 8.29 V 38350.57 2.037638 45 A0p(Si) +113385 GT Cep EA/SD 8.2 0 9.1 8.6 V 25628.250 4.908756 14 B3V +113017 IL Cep EA 9.29 0 9.61 V 1.401 B2-B3pe +108426 IR Cep DCEP 7.58 0 7.98 V 41696.582 2.114124 40 G0 +108772 LZ Cep ELL 5.56 0 5.66 5.63 B 41931.868 3.070510 O8.5III+O9Vn +108924 MO Cep LB: 5.13 0 5.33 V M5III +112969 MX Cep ACV 7.81 0 7.96 V 40785.2 17.22 A2p(Sr-Cr-Mn) +113738 NN Cep EA/DM 8.2 0 8.58 8.52 V 44507.4033 2.058305 12 A5 +113461 NY Cep EA/DM 7.40 0 7.55 V 41903.8136 15.275727 02 B0IV+B0IV +14870 OU Cep SR 11.1 0 12.0 p M8 +37391 OV Cep SR 5.00 0 5.07 V M2IIIab +112558 PS Cep E/DM 10.13 0 10.19 V 2.09168 B6Vne +106801 V0337 Cep ACYG 4.69 0 4.78 V B2Ib +107004 V0360 Cep DSCTC 8.3 1 0.03 V +106205 V0364 Cep ACV: 8.4 1 0.02 V +114307 V0367 Cep L 8.24 0 8.91 B +115147 V0368 Cep RS 7.7 1 0.04 V +108461 V0376 Cep RS 7.5 1 0.07 V +115550 V0377 Cep DSCTC 6.58 0 6.64 V +116109 V0378 Cep ELL 7.09 0 7.12 V +102258 V0379 Cep EA 6.65 1 0.06 B +103763 V0380 Cep INA 7.10 0 7.36 U +105259 V0381 Cep LC: 5.51 0 5.71 V +105268 V0382 Cep BE 5.08 0 5.23 V +107913 V0383 Cep EB 7.27 0 7.58 V +113853 V0387 Cep LPB 6.72 1 0.02 B +114831 V0388 Cep DSCT: 5.56 1 0.07 V +215 V0396 Cep LB: 9.24 0 9.35 Hp +270 V0397 Cep EA 7.39 0 7.81 Hp +302 V0398 Cep SRB 6.30 0 6.40 Hp +386 V0399 Cep IA 9.15 0 9.35 Hp +1041 V0400 Cep WR 10.58 0 10.77 Hp +1131 V0401 Cep SRB 8.17 0 8.33 Hp +2299 V0402 Cep DSCTC 10.56 0 10.64 Hp +9014 V0403 Cep SRB: 7.19 0 7.33 Hp +9717 V0404 Cep LB: 9.78 0 9.96 Hp +12805 V0405 Cep EA: 8.75 0 8.95 Hp +18468 V0406 Cep LB: 8.23 0 8.36 Hp +20315 V0407 Cep DSCTC 8.06 0 8.15 Hp +20860 V0408 Cep GCAS: 5.41 0 5.50 Hp +21499 V0409 Cep LB: 9.30 0 9.42 Hp +34575 V0410 Cep LB: 8.07 0 8.17 Hp +41118 V0411 Cep LB 8.27 0 8.42 Hp +99381 V0412 Cep LB 7.45 0 7.82 Hp +100746 V0413 Cep E: 7.54 0 7.59 Hp +102358 V0414 Cep SRB: 5.87 0 6.04 Hp +102445 V0415 Cep EA 7.90 0 8.23 Hp +102558 V0416 Cep SRB: 6.75 0 6.90 Hp +102926 V0417 Cep GCAS: 8.28 0 8.48 Hp +102943 V0418 Cep BE 9.34 0 9.48 Hp +104719 V0419 Cep LC: 6.28 0 6.55 Hp +104883 V0420 Cep GCAS 8.54 0 8.83 Hp +105091 V0421 Cep BE: 6.45 0 6.51 Hp +105193 V0422 Cep LB 6.37 0 6.51 Hp +105337 V0423 Cep LB 8.74 0 8.99 Hp +105690 V0424 Cep EA 8.92 0 9.28 Hp +105934 V0425 Cep LPB 9.20 0 9.31 Hp +105949 V0426 Cep LB 6.04 0 6.19 Hp +105960 V0427 Cep EB: 9.17 0 9.27 Hp +106200 V0428 Cep EB 8.29 0 8.62 Hp +106285 V0429 Cep ACYG: 7.48 0 7.54 Hp +106400 V0430 Cep BY: 9.41 0 9.52 Hp +106604 V0431 Cep ACV 6.42 0 6.47 Hp +106716 V0432 Cep BE 8.56 0 8.66 Hp +106712 V0433 Cep GCAS: 8.19 0 8.36 Hp +106964 V0434 Cep E 9.12 0 9.31 Hp +107353 V0435 Cep BE 9.48 0 9.59 Hp +107473 V0436 Cep SRB 7.68 0 8.06 Hp +107725 V0437 Cep LB: 9.32 0 9.49 Hp +108133 V0438 Cep SRB 6.32 0 6.49 Hp +108546 V0439 Cep BE: 7.69 0 7.80 Hp +108714 V0440 Cep ACYG: 9.43 0 9.55 Hp +108646 V0441 Cep EA 8.74 0 9.22 Hp +108938 V0442 Cep EB 6.93 0 7.06 Hp +108957 V0443 Cep EA 8.44 0 8.70 Hp +109124 V0444 Cep ELL: 6.33 0 6.40 Hp +109191 V0445 Cep ELL: 6.88 0 6.91 Hp +109311 V0446 Cep EA 7.31 0 7.45 Hp +109505 V0447 Cep LPB: 7.39 0 7.44 Hp +109606 V0448 Cep E: 9.59 0 9.73 Hp +110200 V0449 Cep ACYG: 8.95 0 9.06 Hp +110662 V0450 Cep BE 10.29 0 10.45 Hp +111250 V0451 Cep LB 10.27 0 11.12 Hp +112088 V0452 Cep SRD 8.74 0 8.84 Hp +112972 V0453 Cep EA 7.54 0 7.66 Hp +113065 V0454 Cep EA: 9.15 0 9.25 Hp +113263 V0455 Cep ACYG 8.48 0 8.53 Hp +113316 V0456 Cep ACV: 7.18 0 7.23 Hp +114344 V0457 Cep LPB 8.17 0 8.22 Hp +114791 V0458 Cep WR 9.64 0 9.82 Hp +115262 V0459 Cep DSCTC 7.72 0 7.75 Hp +116622 V0460 Cep LB 8.35 0 8.55 Hp +117469 V0461 Cep LB: 8.06 0 8.18 Hp +117670 V0462 Cep EB 8.66 0 8.77 Hp +40 V0463 Cep E: 10.24 0 10.55 Hp +109743 V0741 Cep EA 9.09 0 9.25 9.17 V 51450.602 6.00911 04 B8 +139 V0747 Cep EA 9.97 0 10.13 10.05 V 54400.5322 5.33146 06 O5V(f)n +106032 β Cep BCEP 3.16 0 3.27 V 40444.625 0.1904881 50 B2IIIeV +110991 δ Cep DCEP 3.48 0 4.37 V 36075.445 5.366341 25 F5Ib-G1Ib +109857 ε Cep DSCTC 4.15 0 4.21 V 0.041242 F0IV +109492 ζ Cep E: 3.50 0 3.54 Hp +107259 μ Cep SRC 3.43 0 5.1 V 730. M2eIa +107418 ν Cep ACYG 4.25 0 4.35 V +11350 R Cet M 7.2 0 14. V 43768. 166.24 43 M4e-M9 +1728 T Cet SRC 5.0 0 6.9 V 40562. 158.9 M5-6SIIe +11910 U Cet M 6.8 0 13.4 V 42137. 234.76 44 M2e-M6e +15465 X Cet M 8.4 0 13.0 V 41953. 177.14 49 M2e(S)-M6e +7149 RR Cet RRAB 9.10 0 10.10 V 33181.404 0.55302814 12 A7-F5 +4725 RU Cet RRAB 10.83 0 12.13 V 39826.411 0.586280 18 A7:-F8 +10491 RV Cet RRAB 10.35 0 11.22 V 39113.363 0.623403 20 F0-G5 +2655 RX Cet RRAB 11.01 0 11.75 V 40125.799 0.5736918 20 F0:-F4 +11517 RZ Cet RRAB 11.24 0 12.36 V 33906.892 0.51061074 16 A6-F4 +7647 SW Cet LB 9.8 0 10.9 p M7III +8294 TT Cet EW/KE: 10.8 0 11.32 11.1 V 32545.830 0.4859565 A +15090 TV Cet EA/DM 8.60 0 9.32 9.10 V 41275.962 9.1032884 03 F2 +8447 TW Cet EW/KW 10.43 0 11.18 11.14 V 42373.378 0.3168519 G5+G5 +320 UU Cet RRAB 11.54 0 12.36 V 41208.576 0.606081 20 A7-F6: +7417 WY Cet EA/SD: 9.6 0 10.4 p 26619.350 1.939675 13 A2 +13937 XY Cet EA/DM 8.65 0 9.54 9.34 V 38372.949 2.780712 10 Am+Am +9361 XZ Cet RRAB 9.24 0 9.71 V 0.8231000 22 A +9258 AA Cet EW/KE 6.2 0 6.7 6.7 p 41268.689 0.53616996 F2 +11348 AB Cet ACV: 5.71 0 5.88 V 33226.69 2.997814 50 A5Vp(Sr-Cr) +893 AC Cet LB 7.96 0 8.29 V M5III +1158 AD Cet LB: 4.9 0 5.16 V M3III +1170 AE Cet LB: 4.26 0 4.46 V M1III-M3III +2215 AG Cet SRB 6.99 0 7.45 V 90. M3 +4707 AK Cet LB 7.68 0 7.94 V M3 +5368 AL Cet LB 8.75 0 9.07 V M5III +5559 AM Cet SRB 6.84 0 7.12 V 70. M5III +8521 AQ Cet LB 8.49 0 9.00 V MC +9372 AR Cet SR: 5.40 0 5.61 V M3III +10733 AS Cet LB 7.90 0 8.09 V M2 +12594 AT Cet SRB 8.08 0 8.32 V 60. M5 +6539 AV Cet DSCTC 6.20 0 6.22 V 0.070 F0V +5951 AY Cet RS 5.35 0 5.58 V G5III-IVe +3025 BB Cet ACV 6.63 0 6.64 V 42620.629 1.4788 30 B8p(Si) +4488 BC Cet ACV 7.64 0 7.66 V 1.11 A0p(Si) +1792 BD Cet RS 8.2 1 0.10 V +1803 BE Cet BY 6.38 0 6.43 V +2852 BG Cet DSCTC 6.35 1 0.00 B +6448 BI Cet RS 8.08 0 8.30 V +8778 BK Cet DSCTC 5.73 0 5.81 V +12460 BS Cet DSCTC 6.65 0 6.73 V +2762 BU Cet RS 3.86 0 3.96 K +13976 BZ Cet BY 7.95 1 0.05 V +520 CE Cet SRB 7.54 0 7.67 Hp +696 CF Cet SRB 6.11 0 6.27 Hp +720 CG Cet SRB 7.12 0 7.23 Hp +1032 CH Cet LB 8.53 0 8.67 Hp +1378 CI Cet ACV: 9.46 0 9.52 Hp +1808 CK Cet EB 10.41 0 10.74 Hp +2274 CL Cet RRC: 9.88 0 10.00 Hp +2618 CM Cet LB: 9.58 0 9.73 Hp +3158 CN Cet EA: 9.10 0 9.74 Hp +4106 CO Cet SRD 7.48 0 7.61 Hp +4530 CP Cet SRD 8.57 0 8.63 Hp +4586 CQ Cet SRB 7.11 0 7.24 Hp +4726 CR Cet SRB 6.81 0 6.94 Hp +5227 CS Cet BY: 7.89 0 7.95 Hp +5452 CT Cet EW 9.41 0 9.59 Hp +6286 CU Cet SRB 8.66 0 9.70 Hp +6430 CV Cet SRB 9.23 0 9.65 Hp +6501 CW Cet RR: 8.40 0 8.49 Hp +7021 CX Cet E: 9.60 0 10.22 Hp +7218 CY Cet SRB: 7.98 0 8.11 Hp +7757 CZ Cet SRB 7.28 0 7.40 Hp +7986 DD Cet SRD 7.30 0 7.34 Hp +8196 DE Cet SRB 7.39 0 7.57 Hp +8337 DF Cet LB: 8.55 0 8.66 Hp +8579 DG Cet E 9.03 0 9.49 Hp +8574 DH Cet SR 9.31 0 9.93 Hp +8646 DI Cet SRD 9.42 0 9.72 Hp +9141 DK Cet BY: 8.16 0 8.28 Hp +9274 DL Cet SRB 11.29 0 11.76 Hp +9701 DM Cet LB 7.27 0 7.52 Hp +9854 DN Cet SRB 8.51 0 8.72 Hp +9996 DO Cet LB: 7.93 0 8.03 Hp +10099 DP Cet EA 6.85 0 7.05 Hp +10522 DQ Cet LB 7.76 0 8.02 Hp +10591 DR Cet SRB 9.14 0 9.35 Hp +10579 DS Cet EA: 8.97 0 9.34 Hp +11314 DT Cet EB: 9.15 0 9.27 Hp +11864 DU Cet LB: 10.08 0 10.32 Hp +11921 DV Cet LB: 8.35 0 8.45 Hp +11998 DW Cet SRB 8.47 0 8.63 Hp +12113 DX Cet DSCT 6.96 0 7.16 Hp +12311 DY Cet EW 9.54 0 10.12 Hp +12317 DZ Cet LB: 8.00 0 8.13 Hp +13198 EF Cet LB: 12.08 0 12.53 Hp +13495 EG Cet SRB 6.36 0 6.52 Hp +13756 EH Cet SRB: 6.05 0 6.22 Hp +14087 EI Cet ACV: 9.07 0 9.16 Hp +14731 EK Cet BY: 11.59 0 11.99 Hp +14915 EL Cet LB: 5.66 0 5.70 Hp +15728 EM Cet EA: 9.75 0 10.09 Hp +11192 EP Cet GDOR 6.74 0 6.77 V +5938 EW Cet BY 7.55 1 0.03 V 7.85 K0V +7576 EX Cet BY 7.66 1 0.02 V 7.15 G5V +7852 EY Cet BY 8.50 1 0.03 V 9.17 G0 +8486 EZ Cet BY 6.75 1 0.05 V 8.92 G1V +9716 FN Cet BY 7.79 1 0.04 V 15.78 K0V +9807 FO Cet GDOR 6.68 0 6.75 V 0.8227 F0 +11261 FR Cet * 6.31 0 6.65 V A0III +12031 FS Cet R 12.41 1 0.01 V DAwke+M1.5V +12158 FT Cet BY 8.10 1 0.04 V 11.784 K0V +13968 FU Cet * 7.86 1 0.05 V 21.20 G2III-IV +14228 HT Cet GDOR 7.06 1 0.02 B 1.0833 F2 +14135 α Cet LB: 2.45 0 2.54 V M2III +12387 δ Cet BCEP 4.05 0 4.10 V 38338.4763 0.16113668 B2IV +10826 ο Cet M 2.0 0 10.1 V 44839. 331.96 38 M5e-M9e +66121 S Cha CST 6.51 0 V F5V +58285 T Cha INSB 10.09 0 14.0 V F5 +42794 RS Cha EA+DSCT 6.02 0 6.68 6.53 V 42850.7688 1.669870 15 A5V+A7V +52381 RZ Cha EA/DM 8.2 0 9.1 8.8 p 41401.7711 2.832084 11 F5+F5V +53691 CR Cha INB 11.20 0 11.37 V K2e +54413 CU Cha INA 8.38 0 8.48 V B9-A0Vpe +54744 CV Cha INB 10.93 0 10.98 V G8e(T:) +54365 DI Cha INT 10.65 0 10.74 V +44145 DM Cha SRB 8.22 0 8.36 Hp +44189 DN Cha SRB 7.62 0 7.72 Hp +44800 DO Cha ELL: 7.74 0 7.78 Hp +48027 DP Cha SRB 7.84 0 7.98 Hp +51632 DQ Cha ACV 7.80 0 7.84 Hp +52340 DR Cha E 5.94 0 5.99 Hp +55085 DS Cha LB: 8.96 0 9.09 Hp +57263 DT Cha LB: 8.56 0 8.66 Hp +57505 DU Cha LB 7.10 0 7.55 Hp +57661 DV Cha ACV 9.93 0 10.07 Hp +58400 DW Cha BY: 10.64 0 10.83 Hp +58520 DX Cha IA: 6.59 0 6.70 Hp +66607 DY Cha LPB 6.32 0 6.34 Hp +58410 EE Cha DSCT 7.04 0 7.15 B +59093 EF Cha DSCT 7.86 0 7.97 B +49416 ER Cha DSCTC 7.6 1 0.08 B +46928 ζ Cha 5.06 0 5.17 V B5IV +68837 U Cir SR 12.0 0 13.5 p 23950. 145. C +68692 AT Cir EA/DM 8.4 0 8.8 p 15221.517 3.257494 15 A5IV/V +72583 AV Cir DCEP 8.0 0 8.6 p 38206.05 3.0651 40 F7II +72773 AX Cir DCEP 5.65 0 6.09 V 38199.54 5.273268 32 F2-G2II+B4 +72264 BP Cir CEP 7.54 1 0.33 V 2.3984 42 F2/3II +70346 BS Cir ACV 6.7 1 0.14 V 2.205 A2p(Si-Cr) +71960 BT Cir DSCTC 7.4 1 0.01 V +72121 BU Cir BCEP 6.10 1 0.02 V +73483 BV Cir DSCT 6.8 1 0.10 V +74634 CC Cir WR 11.71 1 0.10 V +67226 CD Cir LB: 7.74 0 7.82 Hp +68750 CE Cir E: 7.94 0 8.06 Hp +69445 CF Cir WR 11.89 0 12.40 Hp +71313 CG Cir EA 10.34 0 10.76 Hp +71359 CH Cir ACV 7.72 0 7.78 Hp +71390 CI Cir LB 7.12 0 7.23 Hp +71668 CK Cir BE 6.81 0 6.89 Hp +72032 CL Cir EA 8.57 0 9.15 Hp +72377 CM Cir ACV 7.08 0 7.14 Hp +72367 CN Cir EB 8.92 0 9.18 Hp +72438 CO Cir BE 5.79 0 5.92 Hp +72592 CP Cir GCAS: 7.51 0 7.74 Hp +72616 CQ Cir BE 9.91 0 10.06 Hp +72989 CR Cir LC: 7.39 0 7.50 Hp +73247 CS Cir EB 8.95 0 9.14 Hp +74011 CU Cir BE 8.48 0 8.59 Hp +74147 CV Cir BE 6.90 0 7.03 Hp +74654 CW Cir BE 7.95 0 8.16 V +74660 CX Cir ACYG: 8.04 0 8.23 Hp +75054 CY Cir LB 6.98 0 7.14 Hp +75224 CZ Cir ACYG: 7.92 0 8.02 Hp +69867 DF Cir RS 7.54 1 0.08 V 0.646 F5V +71908 α Cir ACVO 3.18 0 3.21 V +75323 γ Cir BE: 4.50 0 4.56 Hp +74778 δ Cir ELL 5.08 1 0.1 V +73129 tet Cir GCAS 5.02 0 5.44 V B3Vne +27286 S Col M 8.9 0 14.2 V 40559. 325.85 46 M6e-M8 +24824 T Col M 6.6 0 12.7 V 41973. 225.84 50 M3e-M6e +24514 RS Col EW/DW 9.54 0 9.99 9.97 V 40612.6483 0.672355 G+G +29528 RX Col RRAB 11.4 0 12.6 p 28812.567 0.594043 +24471 RY Col RRAB 10.44 0 11.24 V 34310.565 0.4788571 15 A7-F3 +23868 SU Col RRAB 11.3 0 12.3 p A2II +25194 SW Col LB: 5.71 1 0.34 V M1III +31099 SX Col LB: 6.28 1 0.13 V M1III +28489 TW Col ACV 7.0 1 0.03 V +27727 TZ Col RS 9.05 1 0.06 V +23815 UZ Col LB: 8.59 0 8.74 Hp +23981 VV Col LB 9.34 0 9.61 Hp +24710 VW Col EA 9.24 0 10.33 Hp +24713 VX Col LB: 8.48 0 8.58 Hp +25710 VY Col SRB 7.65 0 7.89 Hp +25775 VZ Col BY: 9.77 0 9.91 Hp +26123 WW Col LB: 9.52 0 9.65 Hp +26401 WX Col RS: 9.36 0 9.48 Hp +26620 WY Col LB: 9.19 0 9.30 Hp +26868 WZ Col LPB: 5.27 0 5.29 Hp +26959 XX Col SRB 6.75 0 6.93 Hp +27221 XY Col LB: 8.94 0 9.10 Hp +27407 XZ Col LB: 9.17 0 9.27 Hp +27473 YY Col SRD 8.47 0 8.64 Hp +27656 YZ Col SRD 9.06 0 9.23 Hp +27776 ZZ Col SRB 8.68 0 8.85 Hp +27925 AA Col DSCTC 8.18 0 8.25 Hp +28017 AB Col SRB: 7.71 0 7.87 Hp +28770 AC Col SRD 8.58 0 9.09 Hp +29096 AE Col BY: 11.69 0 11.99 Hp +29263 AF Col LB 5.46 0 5.68 Hp +29592 AG Col LB 8.78 0 9.10 Hp +30587 AH Col ACV 7.83 0 7.89 Hp +30875 AI Col SRB 8.15 0 8.27 Hp +31113 AK Col EA 9.03 0 9.25 Hp +31116 AL Col ACV 7.46 0 7.53 Hp +31701 AM Col LB 9.05 0 9.31 Hp +25007 AN Col BE 6.03 0 6.11 V +24947 AS Col RS: 7.34 0 7.38 V 0.690 F5/6V +29159 AU Col DSCTC 7.45 1 0.04 V 0.143 A2V +28836 AW Col EA 8.00 0 9.74 8.17 V 52764.4934 10.319 04 A3m +27810 λ Col ELL: 4.85 0 4.92 V 0.640 35 B5V +58854 R Com M 7.1 0 14.6 V 43539. 362.82 38 M5e-M8ep +61225 S Com RRAB 10.89 0 12.13 V 40654.641 0.5865907 14 A6-F7 +61809 U Com RRC 11.50 0 11.97 V 24961.445 0.2927382 35 A8-F0 +61243 RW Com EW/KW 11.00 0 11.70 11.56 V 40022.4163 0.2373459 G2+G2 +61414 RZ Com EW/KW 10.42 0 11.13 11.09 V 34837.4198 0.33850604 K0+G9 +64875 ST Com RRAB 10.91 0 11.84 V 43224.506 0.59892864 19 F2-F8 +61071 UU Com ACV+DSCTC 5.41 0 5.46 V 40334.194 A3p(Sr-Cr-Eu) +63561 UX Com EA/AR/RS 9.96 0 10.52 10.13 V 25798.328 3.642583 08 G2III +60904 AI Com ACV+DSCT: 5.23 0 5.40 V 39586.07 5.0633 A0p(Cr-Eu-Sr) +65915 FK Com FKCOM 8.14 0 8.33 V 42192.345 2.400 40 G2eapnIII+K3V +60066 FM Com DSCTC 6.40 0 6.48 V 0.0551 A5-A7mIV-V +63950 FS Com SRB 5.30 0 6.1 V 58. M5III +58519 GK Com SRB 6.84 0 7.13 V 50. M4III +59527 GM Com DSCTC 8.06 0 8.14 V 0.208 F5V +60514 GN Com ACV: 5.15 0 5.18 V A2V(Am) +64936 HH Com ACV 7.77 0 7.85 V 41731.0 5.07 A2p(Sr-Cr-Eu) +59995 HY Com RRC 10.25 0 10.73 V +60582 IL Com RS: 8.16 1 0.04 V +63087 IN Com R:/PN 8.7 1 0.07 V +65150 IO Com EA 9.15 0 9.48 V +66286 IT Com RS 7.57 1 0.20 V +59181 IU Com BY: 12.08 0 12.54 Hp +59602 IV Com BY: 11.91 0 12.13 Hp +59889 IW Com LB 7.94 0 8.08 Hp +60867 IX Com SRB 8.60 0 8.75 Hp +60999 IY Com LB 7.29 0 7.52 Hp +61180 IZ Com LB: 8.66 0 8.80 Hp +61204 KK Com EB: 9.54 0 9.77 Hp +61290 KL Com SR: 7.25 0 7.39 Hp +61701 KM Com LB 8.25 0 9.00 Hp +61976 KN Com LB: 8.78 0 8.92 Hp +62216 KO Com LB: 7.82 0 7.92 Hp +62484 KP Com SRB: 7.64 0 7.77 Hp +62494 KQ Com LB: 8.16 0 8.25 Hp +65069 KR Com EB: 7.26 0 7.32 Hp +65841 KS Com LB 8.47 0 8.71 Hp +66179 KT Com CWB: 8.34 0 8.41 Hp +60266 KU Com DSCTC: 7.42 1 0.01 V +62763 LS Com FKCOM 4.87 0 4.97 V +63462 LU Com RS: 4.90 1 0.15 V +59152 LV Com BY 9.16 1 0.03 V 5.5 K2V +62523 LW Com BY 6.31 1 0.10 V 15.80 G5V +62758 LX Com BY 9.09 1 0.05 V 7.74 K1Ve +63951 MP Com GDOR 6.86 0 6.94 Hp 1.073 F0 +59015 MS Com GDOR 7.85 1 0.10 B 0.6879 F0V+G5:V +61011 MY Com BY 10.23 1 0.08 V 1.1489 G0 +61902 NO Com EA 6.94 0 7.02 V 48052.22 2.7044 A5mF0 +62772 NQ Com BY 10.48 1 0.06 V 3.4046 M0 +64463 NW Com DSCTC+GDO 8.43 0 8.48 V 0.047852 Am +65933 PP Com DSCTC 7.38 1 0.01 V 0.06230061 sgF1 +93449 R CrA INSA 10.0 0 14.36 B A5IIpe +92207 V CrA RCB 8.3 2 16.5 V C(R0) +88584 W CrA SRB 11.0 0 13.1 p 125. C0-3(R4) +88081 RW CrA EA/SD 9.3 0 10.3 9.4 p 31017.297 1.6835995 18 A0 +88933 QT CrA SRD: 11.4 0 12.5 p 79.145 47 A/Fe-K +92244 V0413 CrA RRAB 10.23 0 10.90 V 41500.369 0.589339 17 F0-F8 +90894 V0668 CrA DSCTC 8.70 0 8.76 V 0.088 A4/5V +91327 V0681 CrA EA/DM 7.6 0 8.1 p 28748.350 2.163925 B9.5V +92989 V0686 CrA ACV 5.25 0 5.41 5.40 V 42254.500 7.34 B8IV(Si) +89290 V0692 CrA SXARI 5.46 1 0.05 V 1.67 B3p(Si) +93552 V0701 CrA DSCTC 5.69 0 5.73 V +88517 V0711 CrA EB 8.36 0 8.69 Hp +88711 V0712 CrA SRC 7.68 0 8.06 Hp +88902 V0713 CrA LB 7.57 0 7.72 Hp +89225 V0714 CrA ACV 8.10 0 8.15 Hp +89955 V0715 CrA ACV: 6.80 0 6.85 Hp +90254 V0716 CrA LB: 7.72 0 7.84 Hp +91292 V0717 CrA SRD 7.03 0 7.13 Hp +91494 V0718 CrA LB: 5.45 0 5.51 Hp +91777 V0719 CrA BE 6.99 0 7.03 Hp +93893 V0720 CrA LB 8.57 0 9.10 Hp +93174 ε CrA EW 4.74 0 5.00 4.95 V 39707.6619 0.5914264 F2V +77442 R CrB RCB 5.71 0 14.8 V C0,0(F8pep) +75143 S CrB M 5.8 0 14.1 V 44604. 360.26 35 M6e-M8e +74881 U CrB EA/SD 7.66 0 8.79 7.72 V 16747.9718 3.45220133 14 B6V+F8III-IV +77501 V CrB M 6.9 0 12.6 V 43763. 357.63 41 C6,2e(N2e) +77460 X CrB M 8.5 0 14.2 V 43719. 241.17 46 M5e-M7e +77284 Y CrB SRB 10.9 0 12.8 p 300. M8 +76844 RR CrB SRB 8.4 0 10.1 p 60.8 50 M5 +78235 RS CrB SRA 8.7 0 11.6 p 34825. 332.2 47 M7 +76551 RT CrB EA/AR:/RS 10.20 0 10.82 10.52 V 28273.243 5.1171590 08 G0 +76343 RU CrB SRA 10.6 0 11.7 V 25812. 436. 52 M5 +79974 RV CrB RRC 11.14 0 11.70 V 42926.334 0.331565 36 A9 +76658 RW CrB EA/SD: 10.22 0 10.78 10.29 V 40751.7302 0.7264114 20 F2V +80259 RY CrB SRB 9.2 0 10.4 V 31344. 90. 52 M10III +76791 SW CrB SRB 7.8 0 8.5 V 100. M0 +79659 SX CrB LB 9.8 0 10.3 p M5 +76460 SY CrB LB 10.4 0 11.0 p M6 +75225 TV CrB RRAB 10.6 0 12.2 p 31618.537 0.5846145 15 A8 +79607 TZ CrB RS+DSCT: 5.69 1 0.05 V 23869.561 1.139789 F8V +75283 UU CrB * 8.59 0 8.64 V 44381.753 F8 +75233 UV CrB ELL 7.20 1 0.16 V +76414 XY CrB LB: 8.18 0 8.30 Hp +77605 XZ CrB LB: 9.47 0 9.66 Hp +77598 YY CrB EW 8.64 0 9.13 Hp +77841 YZ CrB LB: 9.18 0 9.30 Hp +78061 ZZ CrB LB 7.89 0 8.05 Hp +78209 AA CrB LB: 9.41 0 9.53 Hp +78777 AB CrB LB: 9.15 0 9.26 Hp +78844 AC CrB LB: 8.23 0 8.36 Hp +78959 AD CrB SRB: 8.73 0 9.11 Hp +79057 AE CrB LB: 9.97 0 10.16 Hp +79162 AF CrB LB: 9.72 0 9.83 Hp +79283 AG CrB SRB 9.10 0 9.37 Hp +80073 AH CrB SRB 8.41 0 8.93 Hp +80100 AI CrB LB: 9.18 0 9.28 Hp +78234 AL CrB * 8.49 0 8.55 V +76330 AN CrB BY 8.61 1 0.02 V 9.37 K0V +76674 AO CrB BY 8.99 1 0.04 V 6.98 G5V +78913 AT CrB BY 8.58 1 0.02 V 26.02 K3V +75011 AX CrB BY 9.04 1 0.18 V 9.24 K0V +76426 BI CrB RS: 10.00 1 0.05 V 1.3393 A0 +76452 BK CrB BY 11.30 1 0.06 V 4.3950 M2 +76267 α CrB EA/DM 2.21 0 2.32 0.25 B 23163.770 17.359907 03 A0V+G5V +75695 β CrB ACV 3.65 0 3.72 V 40335.0 18.487 F0IIIp(Sr-Cr-Eu) +76952 γ CrB DSCTC 3.80 0 3.86 V 0.030 A0IV +77512 δ CrB RS: 4.57 0 4.69 V +76127 tet CrB BE 4.06 0 4.33 V +60106 R Crv M 6.7 0 14.4 V 42781. 317.03 41 M4.5e-M9:e +62518 X Crv SRB 10.8 2 12.0 p 112.3 M6III +61620 RV Crv EB/KE 8.60 0 9.16 V 41029.384 0.7472521 F0+G0: +62611 SV Crv SRB 6.78 0 7.6 V 70. M5III +61825 SX Crv EW/KW 8.99 0 9.25 9.23 V 41017.4557 0.3166386 F8 +60421 TT Crv SR 6.47 0 6.57 V 11.5 M3III +61496 TU Crv DSCTC 6.53 1 0.02 B 0.082 F0III +58579 TX Crv E: 8.08 0 8.60 Hp +58587 TY Crv ELL 5.19 0 5.23 Hp +58596 TZ Crv SRD 8.27 0 8.47 Hp +58997 UU Crv LB: 8.95 0 9.05 Hp +59914 UV Crv BY: 9.38 0 9.49 Hp +60117 UW Crv LB 8.03 0 8.28 Hp +60213 UX Crv LB 8.08 0 8.39 Hp +60438 UY Crv BY: 10.82 0 11.00 Hp +60520 UZ Crv LB 9.45 0 9.80 Hp +61910 VV Crv EA 5.19 0 5.34 Hp +62853 VW Crv SRB: 7.48 0 7.80 Hp +62505 VZ Crv BY 7.93 1 0.03 V 18.62 K2V +53809 R Crt SRB 9.8 0 11.2 p 160. M7 +57917 S Crt SRB 10.7 0 12.3 p 155. M6e-M7e +55639 T Crt SRB 9.7 0 11.3 p 70. M4 +55825 W Crt RRAB 10.74 0 12.08 V 39644.289 0.41201459 13 A5:-F6: +57625 X Crt RRAB 11.12 0 11.76 V 41798.339 0.73283324 18 F2-F7 +53915 RT Crt M 10.8 0 14. p 27459. 342.7 M8 +57800 RU Crt LB: 8.5 0 9.5 p M3 +55173 RX Crt SRB 7.3 0 7.7 V 300. M3 +56555 SS Crt SRB 8.54 0 8.82 V 40692. 65. +56327 SU Crt DSCTC 8.62 0 8.65 V 0.055 F2V +55106 SV Crt ACV 6.32 0 6.35 0.01 B 40373.62 5.90513 A8IVp(Sr-Cr-Si) +54999 SY Crt LB: 6.34 0 6.62 V M4III +55454 SZ Crt BY 8.1 1 0.03 V +55505 TV Crt RS 8.91 0 8.98 V +53905 TW Crt EA 8.39 0 8.72 Hp +54215 TX Crt ACV 9.58 0 9.71 Hp +54799 TY Crt SRB 8.00 0 8.18 Hp +54820 TZ Crt LB 7.97 0 8.14 Hp +54974 UU Crt SRB 6.70 0 7.01 Hp +55274 UV Crt SRB 8.49 0 8.67 Hp +55294 UW Crt LB: 8.24 0 8.35 Hp +55795 UX Crt SRB 6.53 0 6.69 Hp +55910 UY Crt LB: 8.26 0 8.39 Hp +56100 UZ Crt LB 7.74 0 7.90 Hp +56139 VV Crt E:/RS: 9.48 0 9.69 Hp +56835 VW Crt LB 7.75 0 7.88 Hp +56899 VX Crt SRB: 6.14 0 6.25 Hp +57072 VY Crt DSCTC 6.94 0 7.04 Hp +57173 VZ Crt LPB: 6.89 0 6.93 Hp +57411 WW Crt LB 7.47 0 7.61 Hp +55890 XY Crt ACVO 8.5 1 0.01 B +54002 AB Crt BY 9.03 1 0.03 V 10.33 K3V +60455 R Cru DCEP 6.40 0 7.23 V 34514.629 5.82575 28 F6-G2Ib-II +62986 S Cru DCEP 6.22 0 6.92 V 34973.520 4.68997 34 F6-G1Ib-II +60259 T Cru DCEP 6.32 0 6.83 V 34541.340 6.73331 34 F6-G2Ib +63175 V Cru M 10.4 0 13.90 B 15539. 376.5 Ce(Ne) +59483 W Cru EB/GS 9.04 0 10.38 9.3 B 40731.6 198.53 G2eIab +59996 SU Cru DCEP 9.38 0 10.10 V 35075.766 12.8476 34 +59935 AB Cru EA/DM 8.56 0 9.2 8.9 B 29235.019 3.4132987 19 O8Vne +59575 AD Cru DCEP 10.64 0 11.45 V 43344.123 6.39789 30 +59026 AI Cru EA/KE 9.55 0 10.30 9.94 B 33466.3358 1.4177073 20 B2IVe +59943 AO Cru LC 8.5 0 10.0 p M0Ia/ab +61136 BG Cru DCEPS 5.34 0 5.58 V 40393.66 3.3428 47 F5Ib-G0p +59844 BH Cru M 7.2 0 10.0 8.0 V 40858. 421. SC4.5/8-e-SC7/8- +60781 BL Cru SR: 5.43 1 0.35 V M4/5III +62913 BU Cru E: 6.80 0 6.90 V 43228.61 B1.5Ib +62949 BW Cru BCEP 9.03 0 9.09 V 0.203 B2III +58910 BY Cru EB/GS/K 7.62 0 8.01 V +62027 BZ Cru GCAS 5.24 0 5.45 V +62115 CD Cru E:/WR 10.71 1 0.11 V +61966 CH Cru GCAS: 4.88 0 5.7 B +59231 CO Cru DSCTC 9.22 0 9.30 V +62937 CY Cru BCEP+E: 9.66 1 0.05 V +58513 DD Cru LB: 8.89 0 9.05 Hp +58748 DE Cru LPB 6.77 0 6.82 Hp +58783 DF Cru LPB 7.78 0 7.84 Hp +58794 DG Cru GCAS 7.43 0 7.64 Hp +58835 DH Cru ACV 7.34 0 7.40 Hp +58954 DI Cru WR 10.62 0 10.94 Hp +59653 DK Cru BE 7.80 0 7.91 Hp +59678 DL Cru ACYG 6.24 0 6.28 Hp +60128 DM Cru ACYG: 6.88 0 6.91 Hp +60786 DN Cru E: 8.73 0 8.87 Hp +61448 DO Cru BE 10.09 0 10.32 Hp +61997 DP Cru EB 9.69 0 9.98 Hp +62291 DQ Cru BE 9.03 0 9.19 Hp +62333 DR Cru BY: 8.88 0 8.99 Hp +62732 DS Cru ACYG: 5.79 0 5.84 Hp +62919 DT Cru LPB: 10.02 0 10.21 Hp +62918 DU Cru LC 7.08 0 7.52 Hp +63136 DV Cru BY: 9.38 0 9.50 Hp +63170 DW Cru ACYG: 7.43 0 7.53 Hp +62434 β Cru BCEP 1.23 0 1.31 V 0.2365072 B0.5III-IV +59747 δ Cru BCEP 2.78 0 2.84 V 0.151038 40 B2IV +63007 λ Cru BCEP: 4.62 1 0.02 V 41779.081 0.3951 B4Vne +102571 T Cyg LB: 4.91 0 4.96 V K3III +100219 U Cyg M 5.9 0 12.1 V 44558. 463.24 48 C7,2e-C9,2(Npe) +102082 V Cyg M 7.7 0 13.9 V 44038. 421.27 46 C5,3e-C7,4e(Npe) +106642 W Cyg SRB 6.80 0 8.9 B 131.1 50 M4e-M6e(Tc:)III +102276 X Cyg DCEP 5.85 0 6.91 V 43830.387 16.386332 35 F7Ib-G8Ib +102999 Y Cyg EA/DM 7.30 0 7.90 7.75 V 09453.4192 2.9963328 10 B0IV+B0IV +99653 RS Cyg SRA 6.5 0 9.5 V 38300. 417.39 C8,2e(N0pe) +97068 RT Cyg M 6.0 0 13.1 V 44588. 190.28 44 M2e-M8.8eIb +107036 RU Cyg SRA 9.2 0 11.6 p 43798. 233.43 50 M6e-M8e +107242 RV Cyg SRB 10.8 0 12.4 p 263. C6,4e(N5) +101023 RW Cyg SRC 8.05 0 9.7 V 550. M2-4Ia-Iab +99424 RX Cyg CST 8.19 0 V B0III-IVn +97150 SU Cyg DCEP 6.44 0 7.22 V 43301.778 3.8455473 37 F2-G0I-II+B7V +99310 SV Cyg LB 11.67 0 13.2 B C5,5-C7,4(N3) +99089 SW Cyg EA/SD 9.24 0 11.83 9.30 V 41867.8173 4.57313411 12 A2e+K0 +101393 SZ Cyg DCEP 8.92 0 9.84 V 43306.79 15.10965 42 F9-G5Ib +96836 TT Cyg SRB 10.2 0 11.9 B 118. C5,4e(N3e) +103656 TX Cyg DCEP 8.59 0 10.02 V 43794.971 14.7098 37 F5-G6Ib +103364 UY Cyg RRAB 10.59 0 11.46 V 22433.7270 0.56070478 22 A8-F5 +99820 VW Cyg EA/DS 10.25 0 12.58 10.31 V 41116.8678 8.4303102 11 A3e+G5 +103433 VX Cyg DCEP 9.54 0 10.55 V 43783.642 20.133407 31 F5e-G2I-II +104002 VY Cyg DCEP 9.19 0 10.02 V 43045.282 7.856982 29 F6-G1Ib +107899 VZ Cyg DCEP 8.60 0 9.28 V 41705.702 4.864453 28 F5-G0 +98814 WW Cyg EA/SD 10.02 0 13.26 10.16 V 40377.886 3.3177690 14 B8+G +100113 WX Cyg M 8.8 0 13.2 V 40480. 410.45 48 C8,2JLi(N3e) +98737 XX Cyg SXPHE 11.28 0 12.13 V 44455.3945 0.134865113 22 A5 +96112 XZ Cyg RRAB 8.9 0 10.16 V 44124.440 0.46670 A5-F5 +105539 YY Cyg SRA 12.1 0 13.2 p 29826. 388. C6,0-C7,3eaV(n) +103856 YZ Cyg CST: 8.2 0 p A0 +98856 AA Cyg SRB 9.4 0 12.4 p 212.7 S7,5-S7.5,6(MpTc +106690 AB Cyg SRB 9.5 0 10.1 p 520. M4IIIe +101270 AD Cyg LB 10.4 0 11.4 B S5,8(Nb) +95902 AF Cyg SRB 7.4 0 9.4 p 92.5 M5e-M7 +101282 AI Cyg SRB 9.2 0 11.8 p 197.3 M6-M7 +102732 AM Cyg M 11.3 0 14.5 p 30075. 370.6 M6e +95777 AW Cyg SRB 11.0 0 14.5 p 340. C4,5(N3) +98190 AX Cyg LB 7.85 0 8.8 V C4,5(N6) +99336 AY Cyg LB 11.7 0 13.9 B C4,8-C7,4(N) +100404 BC Cyg SRC 11.3 0 13.8 p 700. M3.5Ia +96647 BG Cyg M 9.0 0 12.8 V 43784. 288.0 30 M7e-M8e +98852 CD Cyg DCEP 8.35 0 9.56 V 43831.167 17.073967 28 F8-K0Ib +103505 CG Cyg EA/SD/RS 9.73 0 10.86 10.44 V 39425.1221 0.63114100 13 G9.5V+K3V +95413 CH Cyg ZAND+SR 5.60 0 8.49 V M7IIIab+Be +97594 CI Cyg EA/GS+ZAN 9.9 0 13.1 p 11902. 855.25 16 Bep+M5III +100048 CN Cyg M 7.3 0 15.0 V 44577. 198.53 44 M2-M7e(S) +106752 CP Cyg CST 6.20 0 V A7III +96031 DD Cyg M 10.5 2 13. p 44568. 147.6 47 M0e +106574 DK Cyg EW/D 10.37 0 10.93 10.90 V 37999.5838 0.47069055 A7V +104185 DT Cyg DCEPS 5.57 0 5.96 V 44046.969 2.499215 48 F5.5-F7Ib-II +98376 GH Cyg DCEP 9.50 0 10.33 V 42743.743 7.817930 33 F5-G1 +101748 GO Cyg EB/KE 8.47 0 9.09 8.73 V 33930.4056 0.71776382 B9n+A0n:V +99599 KU Cyg EA/D:/RS: 10.73 0 12.38 11.15 V 33884.84 38.4393 08 F4p+K5eIII: +108205 LW Cyg LB 12.30 2 14.5 B C5,4(R3) +108508 MR Cyg EA/SD 8.75 0 9.68 9.12 V 33396.4069 1.67703362 22 B3V+B9 +99567 MW Cyg DCEP 9.14 0 9.90 V 42923.839 5.954586 30 F8-G2Ib +100258 MY Cyg EA/DM 8.30 0 9.02 8.99 V 33847.607 4.0051873 09 A7:m+A5:m +105485 MZ Cyg CWA: 10.76 0 12.68 V 43983.40 21.314 34 G1-G3 +100198 V0346 Cyg EA/SD 11.8 0 13.5 11.9 p 35686.750 2.743282 14 A5 +102648 V0367 Cyg EB/GS/SD: 6.67 0 7.60 7.16 V 37390.855 18.59773 B8peIa+F4III +97634 V0380 Cyg EA/DM 5.61 0 5.78 5.76 V 41256.053 12.425612 11 B1III+B3V: +100135 V0382 Cyg EB 8.29 0 9.18 9.12 V 36814.7706 1.8855146 O7+O8V +101035 V0383 Cyg CWB: 10.60 0 11.14 V 37298.125 4.612211 35 +104877 V0386 Cyg DCEP 9.25 0 9.97 V 42777.188 5.257606 29 F5-G1Ib +104371 V0389 Cyg * 5.55 0 5.71 V B9Vp(Si) +95816 V0401 Cyg EW/KE 10.64 0 11.17 11.13 V 43835.259 0.5827220 F0 +99276 V0402 Cyg DCEP 9.53 0 10.22 V 41698.635 4.364836 30 G0III +108183 V0413 Cyg LB 12.4 0 13.2 p C5,4(N3) +100214 V0444 Cyg EA/WR 7.92 0 8.22 8.06 V 41164.332 4.212424 20 O6+WN5.5 +99021 V0448 Cyg EB/SD 7.90 0 8.72 8.40 V 16361.107 6.5197162 O9.5e+B1Ib-II +104564 V0459 Cyg DCEP 10.27 0 10.99 V 36808.656 7.25125 29 F8 +107129 V0460 Cyg SRB 5.57 0 7.0 V 180. C6,4(N1) +100193 V0470 Cyg ELL/DM 8.53 0 8.55 8.54 V 42283.860 1.873142 B2+B2 +98955 V0477 Cyg EA/DM 8.50 0 9.34 8.69 V 44189.2639 2.3469906 07 A3V+F5V +100227 V0478 Cyg EA/DM 8.63 0 9.04 9.02 V 41602.724 2.8808994 16 O9.5Vp+B0V +98411 V0482 Cyg RCB 11.8 2 15.5 p +99887 V0495 Cyg DCEP 12.2 0 12.7 p 28419.278 6.72379 17 +103241 V0520 Cyg DCEP 10.53 0 11.11 V 43670.714 4.049068 23 G0 +105369 V0532 Cyg DCEPS 8.85 0 9.30 V 41706.559 3.283612 44 F5 +106754 V0538 Cyg DCEP 10.20 0 10.73 V 42772.924 6.118961 33 +98165 V0548 Cyg EA/SD: 8.54 0 9.29 8.62 V 44456.4958 1.805233 20 A1V+F7 +102195 V0568 Cyg GCAS 6.40 0 6.68 V B2IV-VeV +99675 V0695 Cyg EA/GS/D 3.73 0 3.89 V 41470.0 3784.3 02 K4Iab+B4IV-V +101341 V0729 Cyg EB/D/GS 9.05 0 9.37 9.29 V 40413.796 6.5977915 O7fIa+O8 +100582 V0744 Cyg LB 11.7 0 13.1 p C4-5,3(N) +97845 V0819 Cyg BCEP: 6.26 0 6.30 V 0.3775 B0.5IIIp +103632 V0832 Cyg GCAS 4.49 0 4.88 V B1.5Venn +105437 V0836 Cyg EB/KE 8.57 0 9.23 8.77 V 44853.4903 0.6534122 A0V +96596 V0924 Cyg DCEPS 10.56 0 10.85 V 43066.075 5.571472 40 F6 +97151 V0973 Cyg SRB 7.75 0 8.6 B 40. M3IIIa +99525 V1042 Cyg WR 8.06 0 8.16 V WC8(+OB) +104263 V1061 Cyg EA/D 9.4 0 9.9 9.5 p 26355.233 2.346656 07 F8 +105562 V1070 Cyg SRB 6.5 0 8.5 V 73.5 M7III +105739 V1073 Cyg EW/KE 8.23 0 8.61 8.57 V 38672.5816 0.7858597 A3Vm +96620 V1143 Cyg EA/DM 5.85 0 6.37 6.06 V 42212.7651 7.6407613 02 F5V+F5V +97439 V1154 Cyg CEP 8.95 0 9.37 V 37706.721 4.925537 31 G2 +99648 V1183 Cyg LB 10.5 0 11.7 p M6 +96292 V1264 Cyg ACV 6.48 0 6.67 V 40848.258 1.84534 40 B9p(Si-Cr-Sr) +96988 V1276 Cyg DSCTC 6.50 0 6.53 V 0.088 F3III +105269 V1334 Cyg DCEPS 5.77 0 5.96 V 40124.533 3.332816 50 F2Ib +107140 V1339 Cyg SRB 5.9 0 7.1 V 35. M3-M6 +96919 V1351 Cyg LB 6.33 0 6.55 V M5IIIa +98298 V1357 Cyg ELL+XF 8.72 0 8.93 8.88 V 41561.22 5.599824 O9.7IabpeV +98778 V1362 Cyg E: 8.09 0 8.21 V 7. B5II:nea +99672 V1372 Cyg ACV 7.33 0 7.39 V 18.2 A4p(Cr) +103655 V1396 Cyg UV+BY: 11.4 0 11.65 B M3Ve +104573 V1425 Cyg EB/KE: 7.7 1 0.45 0.31 V 40400.944 1.252387 B9+A0 +106628 V1427 Cyg GCAS 9.10 0 9.19 V B3eq +99848 V1488 Cyg EA/GS/D 3.90 0 4.14 V 41256.96 1147.4 02 K5Iab+B4IV-V +97472 V1507 Cyg E 6.92 0 7.04 7.01 V 43760.37 27.9705 B8II-IIIep +97630 V1509 Cyg LB 5.08 0 5.4 V M2IIIa +107983 V1578 Cyg INA 10.09 0 10.24 V A0eq +100250 V1584 Cyg ACV 6.48 1 0.04 V 41153.246 1.132854 B9p(Si) +107856 V1619 Cyg ACV 6.17 1 0.01 V 20.70 B8IIIp(Hg-Mn) +99303 V1624 Cyg SXARI 4.91 0 4.97 V 43699.12 0.70 B3VeV +99770 V1644 Cyg DSCTC 4.94 0 4.97 V 0.031 A2V +102724 V1661 Cyg ACYG 4.81 0 4.87 V B3eaIa +96362 V1671 Cyg SXARI 7.45 0 7.46 V 44107.24 9.35 B2Vp +98572 V1675 Cyg INSB 8.4 0 9.1 p M2 +99002 V1676 Cyg WR 6.75 0 6.84 V WN5+O9.5Ia +99769 V1679 Cyg WR 5.99 0 6.5 K WC6-7+Be +100289 V1685 Cyg INA 10.58 0 10.72 V B2e +100287 V1687 Cyg WR 4.0 1 2.5 K WC7p+O5 +102088 V1696 Cyg * 10.30 1 0.06 V 38626.237 4.3174 WN7.5 +104029 V1719 Cyg RRC 7.95 0 8.33 V 43776.715 0.267299 49 F5III +104290 V1720 Cyg ELL: 7.77 0 7.79 7.79 V 42692.557 0.248331 G5III +95556 V1741 Cyg ACV 4.60 1 0.02 U 41451.03 0.68674 B9p(Si) +96198 V1743 Cyg SRB: 5.96 1 0.18 V 40. M4.5III +96480 V1744 Cyg ACV: 7.5 1 0.04 V 44100.28 12.46 40 B9 +96530 V1745 Cyg DSCTC 7.3 0 7.34 V 0.0534 A3V +98425 V1746 Cyg GCAS+BCEP 5.19 1 0.07 V B3IV-Ve +94013 V1762 Cyg RS 5.81 0 6.03 V +96467 V1764 Cyg RS 7.69 1 0.15 V +97485 V1765 Cyg EB/GS+ACY 6.44 1 0.16 V +98863 V1768 Cyg ACYG 5.56 0 5.70 V +99377 V1769 Cyg EA/D/WR 7.99 0 8.09 V +99546 V1770 Cyg E:/WR 7.48 0 7.52 V +100142 V1773 Cyg ELL 6.44 1 0.05 V +102953 V1792 Cyg ELL 7.29 1 0.09 V +103144 V1794 Cyg FKCOM 7.23 1 0.17 V +104214 V1803 Cyg BY 5.19 0 5.27 V +105186 V1809 Cyg ELL 4.98 0 5.09 V +96003 V1817 Cyg RS: 6.37 1 0.05 V +96862 V1818 Cyg EA: 8.68 0 8.96 B +103968 V1898 Cyg EA/DM 7.71 0 8.15 V +96310 V1919 Cyg LB 6.66 0 6.73 V +103732 V1931 Cyg E+BE 5.33 0 5.48 V +105733 V1934 Cyg ACV 6.51 1 0.02 U +108845 V1942 Cyg ACV 5.47 1 0.05 U +96295 V1966 Cyg E:/PN 9.95 0 10.04 V +97235 V1967 Cyg SRB 7.43 0 7.83 V +103828 V1981 Cyg SRB 7.5 0 8.1 B +99031 V2008 Cyg RS: 5.36 1 0.05 V +99580 V2011 Cyg * 7.93 1 0.07 B +101138 V2014 Cyg BCEP: 4.86 1 0.03 B +101475 V2015 Cyg ACV 5.62 1 0.02 B +100586 V2031 Cyg EA 8.53 0 8.67 V +108198 V2075 Cyg RS 7.46 1 0.36 V +94743 V2077 Cyg E: 9.16 0 9.31 Hp +95187 V2078 Cyg BY: 11.34 0 11.65 Hp +95543 V2079 Cyg ACV: 7.00 0 7.06 Hp +95611 V2080 Cyg EA 7.46 0 7.87 Hp +95691 V2081 Cyg CEP: 8.69 0 8.75 Hp +95833 V2082 Cyg ELL 6.72 0 6.77 Hp +96011 V2083 Cyg EA 6.94 0 7.18 Hp +96189 V2084 Cyg DSCTC 7.41 0 7.46 Hp +96533 V2085 Cyg LB 7.29 0 7.40 Hp +96687 V2086 Cyg LB: 8.20 0 8.31 Hp +96872 V2087 Cyg LB 7.23 0 7.37 Hp +96966 V2088 Cyg DSCTC: 8.33 0 8.39 Hp +96989 V2089 Cyg SRB 8.20 0 8.35 Hp +97142 V2090 Cyg LB 6.32 0 6.73 V +97501 V2091 Cyg LB: 8.34 0 8.59 Hp +97584 V2092 Cyg LPB 8.20 0 8.24 Hp +97651 V2093 Cyg LB 6.00 0 6.40 Hp +98028 V2094 Cyg ACV 7.70 0 7.79 Hp +98156 V2095 Cyg ACV: 7.86 0 7.94 Hp +98121 V2096 Cyg SRD 7.98 0 8.09 Hp +98289 V2097 Cyg LPB 7.68 0 7.71 Hp +98283 V2098 Cyg LB 8.22 0 8.42 Hp +98422 V2099 Cyg SRB: 8.15 0 8.24 Hp +98379 V2100 Cyg LPB: 6.05 0 6.11 Hp +98424 V2101 Cyg LB 6.74 0 7.06 Hp +98603 V2102 Cyg LB 9.94 0 10.49 Hp +98635 V2103 Cyg BE 9.09 0 9.21 Hp +98611 V2104 Cyg IA 7.63 0 7.76 Hp +98729 V2105 Cyg ACYG: 8.07 0 8.17 Hp +98902 V2106 Cyg LB 8.42 0 8.61 Hp +99246 V2107 Cyg EB 8.57 0 8.75 Hp +99279 V2108 Cyg EB 7.86 0 8.01 Hp +99252 V2109 Cyg DSCT 7.48 0 7.66 Hp +99370 V2110 Cyg LPB 7.71 0 7.79 Hp +99415 V2111 Cyg LPB 7.62 0 7.65 Hp +99403 V2112 Cyg LB 7.34 0 7.61 Hp +99953 V2113 Cyg BE 7.09 0 7.26 Hp +100051 V2114 Cyg LB 6.92 0 7.19 Hp +100140 V2115 Cyg LB: 8.52 0 8.63 Hp +100242 V2116 Cyg SXARI: 6.71 0 6.75 Hp +100308 V2117 Cyg SXARI: 8.95 0 9.15 Hp +100548 V2118 Cyg ACYG: 7.12 0 7.20 Hp +100574 V2119 Cyg BE 5.74 0 5.85 Hp +100744 V2120 Cyg GCAS 7.13 0 7.34 Hp +100859 V2121 Cyg RRAB: 5.75 0 5.84 Hp +101068 V2122 Cyg ACV: 7.58 0 7.62 Hp +101411 V2123 Cyg BE 7.71 0 7.85 Hp +101412 V2124 Cyg LB 6.80 0 6.90 Hp +101474 V2125 Cyg LC 4.67 0 4.78 Hp +101439 V2126 Cyg EB: 9.01 0 9.10 Hp +101569 V2127 Cyg ACV: 8.17 0 8.22 Hp +101632 V2128 Cyg LB: 8.65 0 8.77 Hp +101862 V2129 Cyg DSCTC 8.37 0 8.44 Hp +101949 V2130 Cyg SXARI: 6.02 0 6.04 Hp +102397 V2131 Cyg LB 8.21 0 8.47 Hp +102457 V2132 Cyg LB 8.51 0 8.74 Hp +102524 V2133 Cyg EA 8.44 0 8.75 Hp +102622 V2134 Cyg EB 8.32 0 8.49 Hp +102700 V2135 Cyg BE 8.17 0 8.29 Hp +102827 V2136 Cyg E: 6.30 0 6.38 Hp +103013 V2137 Cyg LB: 7.82 0 7.93 Hp +103126 V2138 Cyg ACV: 7.55 0 7.61 Hp +103277 V2139 Cyg BE 7.12 0 7.28 Hp +103312 V2140 Cyg ACYG: 5.65 0 5.84 V +103476 V2141 Cyg LB 7.11 0 7.38 Hp +103645 V2142 Cyg SRB 6.85 0 6.95 Hp +103667 V2143 Cyg LB: 9.24 0 9.36 Hp +103700 V2144 Cyg GCAS: 7.12 0 7.27 Hp +103873 V2145 Cyg LB 8.48 0 8.65 Hp +104130 V2146 Cyg SRA 8.45 0 8.94 Hp +104196 V2147 Cyg ACV: 8.82 0 8.89 Hp +104483 V2148 Cyg EA 6.52 0 6.69 Hp +105010 V2149 Cyg GCAS 8.77 0 8.99 Hp +105162 V2150 Cyg EW: 8.09 0 8.19 Hp +105230 V2151 Cyg NL: 12.08 0 12.89 Hp +105448 V2152 Cyg ACV: 8.94 0 9.00 Hp +105565 V2153 Cyg BE 7.52 0 7.62 Hp +105584 V2154 Cyg EA 7.85 0 8.24 Hp +105699 V2155 Cyg GCAS 7.55 0 7.80 Hp +105741 V2156 Cyg BE 8.96 0 9.04 Hp +105811 V2157 Cyg ACYG: 5.87 0 5.92 Hp +105846 V2158 Cyg LB 7.57 0 7.78 Hp +105866 V2159 Cyg ACV: 7.87 0 7.96 Hp +105963 V2160 Cyg BY: 11.02 0 11.19 Hp +106009 V2161 Cyg LPB 8.03 0 8.08 Hp +106079 V2162 Cyg BE 7.56 0 7.67 Hp +106145 V2163 Cyg BE 6.89 0 7.02 Hp +106211 V2164 Cyg LB: 8.02 0 8.15 Hp +106476 V2165 Cyg EA 8.73 0 8.92 Hp +106620 V2166 Cyg BE 8.11 0 8.23 Hp +106662 V2167 Cyg LPB 9.43 0 9.48 Hp +106694 V2168 Cyg BY: 10.18 0 10.65 Hp +106812 V2169 Cyg EB 7.61 0 7.76 Hp +107161 V2170 Cyg LB 8.16 0 8.39 Hp +107532 V2171 Cyg LB 7.21 0 7.33 Hp +108326 V2172 Cyg BE 8.17 0 8.30 Hp +108348 V2173 Cyg LPB 6.47 0 6.51 Hp +108476 V2174 Cyg ACYG: 8.92 0 9.07 Hp +108738 V2175 Cyg BE 9.26 0 9.38 Hp +120155 V2183 Cyg WR 9.80 0 10.00 Hp +102237 V2195 Cyg RR: 12.1 0 13.7 p +103736 V2200 Cyg ACV 7.12 1 0.04 U +100542 V2245 Cyg LPB: 8.50 1 0.04 V +106708 V2256 Cyg ELL 8.07 0 8.17 Hp +95934 V2286 Cyg LB 7.51 1 0.03 V +99539 V2312 Cyg LBV 6.92 1 0.08 V +100443 V2314 Cyg EA 8.64 0 8.76 Hp +101227 V2425 Cyg BY 8.35 1 0.03 V 6.94 K0 +102766 V2431 Cyg BY 8.25 1 0.03 V 22.64 K2V +103859 V2436 Cyg BY 7.69 1 0.03 V 10.526 K2V +102098 α Cyg ACYG 1.21 0 1.29 V A2Iae +102589 λ Cyg BE 4.47 0 4.54 Hp +104887 Ï„ Cyg DSCT 3.65 0 3.75 V F0IV +105138 Ï… Cyg GCAS 4.28 0 4.50 V B2Vne +97629 χ Cyg M 3.3 0 14.2 V 42140. 408.05 41 S6,2e-S10,4e(MSe +100044 P Cyg SDOR 3. 0 6. V B1Iapeq +99802 R Del M 7.6 0 13.8 V 44091. 285.07 45 M5e-M6e +102246 S Del M 8.3 0 12.4 V 44887. 277.75 52 M5e-M8 +102440 U Del SRB 7.6 0 8.9 p 110. M5II-III +101780 W Del EA/SD 9.69 0 12.33 9.79 V 43328.5495 4.806100 12 B9.5Ve+G5 +101056 RS Del SRB: 9.18 0 10.0 B 60. M5-M8 +102853 TX Del CWB: 8.84 0 9.54 V 42947.009 6.165907 33 G0-G5 +101079 CT Del LB 6.8 0 8.5 V M7 +102593 DX Del RRAB 9.52 0 10.26 V 39367.340 0.47261673 20 A9-F6 +101810 EU Del SRB 5.79 0 6.9 V 41156. 59.7 M6.4III +103246 LR Del ACV 7.7 1 0.03 V 26. A0p +102158 LU Del SR: 6.22 1 0.25 V +99995 LZ Del GCAS 7.43 0 7.63 Hp +100383 MM Del LB: 11.44 0 11.70 Hp +100468 MN Del SRB 7.17 0 7.37 Hp +100802 MO Del BY: 11.04 0 11.27 Hp +100981 MP Del EA 7.62 0 7.89 Hp +101195 MQ Del SRD 8.64 0 8.79 Hp +101236 MR Del EA 8.85 0 9.16 Hp +101238 MS Del LB 8.28 0 8.44 Hp +101316 MT Del LB 7.05 0 7.30 Hp +101369 MU Del BY: 11.56 0 11.89 Hp +101512 MV Del SRB: 7.24 0 7.34 Hp +101615 MW Del SRB: 8.48 0 8.76 Hp +101657 MX Del EB 8.99 0 9.17 Hp +102330 MY Del LB: 8.01 0 8.15 Hp +102427 MZ Del EB 8.32 0 8.54 Hp +102545 NN Del EA 8.49 0 8.92 Hp +102844 NO Del LB 9.04 0 9.40 Hp +103083 NP Del ELL: 8.89 0 8.97 Hp +103185 NQ Del LB: 11.76 0 12.16 Hp +103417 NR Del LB 7.18 0 7.48 Hp +99866 NS Del ACV 9.22 1 0.09 V +101955 OQ Del BY 7.88 1 0.04 V K5V +102490 OR Del RS 7.09 1 0.03 V 6.557 K0IV +102281 δ Del DSCT 4.38 0 4.49 V F0IV +21479 R Dor SRB 4.8 0 6.6 V 338. M8IIIe +24055 U Dor M 8.1 0 14.6 p 29850. 394.4 M8IIIe +24763 RW Dor EW/KW 10.8 0 11.4 11.2 p 30938.6017 0.285463812 G +22256 SU Dor M 8.5 2 14.0 V 40741. 235.86 +29055 VW Dor RRAB 11.22 0 12.11 V 38379.453 0.570610 20 +19722 WW Dor SRB 8.66 0 8.87 V 40625. 52. M2(Ib/II) +19826 WX Dor SRB 8.76 0 8.91 V 80. MB +23840 WZ Dor SRB 5.2 1 0.12 V 40. M3III +18691 XY Dor LB: 6.50 1 0.07 V M1III +22381 XZ Dor LB: 6.55 1 0.16 V M4III +25647 AB Dor FKCOM: 6.77 0 6.98 V +19248 AG Dor RS 8.66 0 8.83 V +22229 AL Dor EA 7.80 0 8.12 Hp +22474 AM Dor LB: 8.35 0 8.45 Hp +22663 AN Dor EA 7.61 0 7.79 Hp +23374 AO Dor LB: 8.17 0 8.28 Hp +23793 AP Dor EW: 9.38 0 9.60 Hp +24064 AQ Dor LB 8.57 0 9.00 Hp +24221 AR Dor E: 7.12 0 7.20 Hp +24823 AS Dor LB: 9.72 0 9.95 Hp +25610 AT Dor LB: 8.63 0 8.73 Hp +26324 AU Dor LB: 8.73 0 8.86 Hp +26760 AV Dor EA 9.67 0 10.09 Hp +29564 AW Dor LB: 9.17 0 9.35 Hp +30775 AX Dor LB: 8.37 0 8.47 Hp +31057 AY Dor LB: 6.77 0 7.24 Hp +26368 AZ Dor BE 6.26 0 6.29 V +21281 α Dor ACV 3.26 0 3.30 V 43481.50 2.95 50 A0IIIp(Si) +26069 β Dor DCEP 3.46 0 4.08 V 40905.30 9.8426 48 F4-G4Ia-II +19893 γ Dor EW: 4.23 0 4.27 V F0V-F5V +81014 R Dra M 6.7 0 13.2 V 44779. 245.60 45 M5e-M9eIII +81835 S Dra SRB 10.5 0 11.5 p 136. M7 +87820 T Dra M 7.2 0 13.5 V 43957. 421.62 44 C6,2e-C8,3e(N0e) +57348 Z Dra EA/SD 10.8 0 14.1 11.0 p 43499.736 1.3574560 15 F4V +91316 RS Dra SRA 9.0 0 12.0 V 15120. 282.72 44 M5e +81238 RW Dra RRAB 11.05 0 12.08 V 39377.391 0.442917 A7-F4 +63152 RY Dra SRB: 6.03 0 8.0 V 200. C4,5J(N4p) +90092 RZ Dra EB/SD: 10.11 0 11.01 10.38 V 44177.5555 0.5508738 A5 +60694 SS Dra SRB 8.4 0 10.4 V 27667. 51.5 48 M5 +56734 SU Dra RRAB 9.18 0 10.27 V 43902.0467 0.66042001 15 F2-F7 +59946 SW Dra RRAB 9.94 0 10.94 V 26224.5876 0.56966993 17 A7-F8 +94162 SZ Dra LB 10.0 0 11.0 p M5 +84213 TT Dra SRB 10.5 2 12.5 p 107. M6 +83866 TV Dra LB 10.2 0 11.6 p M8p(S) +76196 TW Dra EA/SD 8.0 0 10.5 8.1 p 44136.295 2.8068470 17 A8V+K0III +81188 TX Dra SRB 7.9 0 10.2 p 78. 50 M4e-M5 +100605 UU Dra SRB 10.8 0 12.3 p 120. 50 M8IIIe +72026 UV Dra SRA 8.6 0 9.8 V 24436.4 77.4 43 M5 +87913 UW Dra LB 7.0 0 8.2 V K5p +95154 UX Dra SRA: 5.94 0 7.1 V 168. 50 C7,3(N0) +87816 UY Dra CST: 10.99 0 V K2III-IV +84496 VW Dra SRD: 6.0 0 7.0 V 170. K1.5IIIb +76709 VY Dra CST: 9.2 0 p K2 +80102 VZ Dra RRC 11.4 0 12.2 p 43361.3979 0.3210308 A +81519 WW Dra EA/AR/RS 8.3 1 0.65 0.08 V 28020.3686 4.6296238 12 G2IV+K0IV +94134 XZ Dra RRAB 9.59 0 10.65 V 41928.374 0.476497 20 A6-F6 +100261 AC Dra LB 7.14 1 0.25 B M5IIIab +101260 AF Dra ACV 5.15 0 5.22 V 20.2747 A0p(Sr-Cr-Eu) +78512 AG Dra ZAND 8.9 0 11.8 p 38900. 554. K3IIIep +82249 AH Dra SRB 8.5 0 9.3 p 30520. 158. M7 +82884 AI Dra EA/SD 7.05 0 8.09 7.16 V 43291.627 1.1988146 18 A0V +90474 AL Dra M 11.0 0 13.8 p 39409. 330.3 M7ea +60331 AS Dra * 8.00 0 8.10 V 35926.055 5.414905 G4+G9 +79804 AT Dra LB 6.8 0 7.5 p M4IIIa +81646 AZ Dra LB 8.0 0 8.9 p M2 +87604 BB Dra LB 10.9 0 11.7 p M8 +89372 BC Dra RRAB 11.27 0 11.80 V 42278.443 0.719576 22 F5 +92489 BF Dra EA 10.1 0 10.8 p 36317.579 5.60545 06 F8 +93595 BH Dra EA/SD: 8.38 0 9.27 8.58 V 40019.7982 1.81723857 11 A2V+Ap +94869 BK Dra RRAB 10.59 0 11.87 V 25523.305 0.5920815 12 A8 +98118 BS Dra EA/DM 9.12 0 9.86 9.84 V 41461.4242 3.3640120 07 F5V+F5V +72691 BT Dra RRAB 11.36 0 12.30 V 30734.635 0.5886740 16 A8 +74370 BV Dra EW/KW 7.88 0 8.48 8.40 V 44474.327 0.3500671 F7V +74368 BW Dra EW/KW 8.61 0 9.08 9.02 V 42572.538 0.2921671 +78891 BX Dra RR 11.5 0 12.2 p 27216.410 0.561192 20 A3 +91009 BY Dra BY+UV 8.04 0 8.48 V 3.813 K3V+MVe +78180 CL Dra DSCTC 4.95 1 0.02 V 0.063 F0IV +97326 CN Dra DSCTC 6.29 1 0.09 V 0.100 F0III +60998 CQ Dra LB: 4.95 0 5.04 V M3IIIa +79796 CR Dra UV 9.46 0 12.53 U M1.5Ve +57002 CT Dra LB 9.8 0 10.4 p M +67627 CU Dra LB: 4.52 0 4.67 V M3III +92133 CX Dra GCAS+ELL 5.68 0 5.99 V B2.5Ve +100221 DE Dra EA/DM 5.72 1 0.16 V 42626.2861 5.298036 05 B9V +93727 DG Dra ELL 9.40 1 0.19 0.17 V 41851.848 0.5713698 A5V +50709 DI Dra ACV 8.2 1 0.01 B 18. A0p(Sr-Cr-Eu) +59796 DK Dra RS 6.29 1 0.19 V 44048.0 63.15 50 K0III+K0III +71876 DL Dra DSCTC 6.22 0 6.29 V F2IV +62556 DP Dra UV 10.9 1 1.55 V +80375 DQ Dra ACV 5.74 1 0.01 V +85852 DR Dra RS 6.55 1 0.12 V +86167 DZ Dra SRB: 7.6 1 0.03 V +93187 EE Dra ACV 5.84 1 0.05 U +70953 EI Dra DSCT 8.50 1 0.11 V +71631 EK Dra BY 8.15 1 0.09 B +71040 ER Dra DSCTC 6.18 1 0.03 V +87311 ET Dra FKCOM 11.52 0 11.83 U +74280 EU Dra SRD: 8.56 1 0.20 V +78519 EV Dra RS 8.63 1 0.06 V +79762 EW Dra BY 10.69 0 10.74 V +53079 FF Dra LB 8.67 0 8.90 Hp +53564 FG Dra LB 7.41 0 7.68 Hp +53732 FH Dra SRB 8.51 0 8.80 Hp +56923 FI Dra SRB 8.30 0 8.52 Hp +61006 FK Dra EA 9.30 0 9.79 Hp +63602 FL Dra LB 9.84 0 10.13 Hp +65035 FM Dra SRB 8.76 0 8.99 Hp +67238 FN Dra LB 8.13 0 8.36 Hp +71015 FO Dra LB: 9.75 0 9.91 Hp +71269 FP Dra LB: 8.55 0 8.66 Hp +72198 FQ Dra ACV: 8.17 0 8.22 Hp +73237 FR Dra LB: 8.71 0 8.83 Hp +74938 FS Dra LB 8.20 0 8.33 Hp +76047 FT Dra LB 8.35 0 8.48 Hp +76272 FU Dra EW 10.58 0 11.10 Hp +76627 FV Dra LB 7.33 0 7.48 Hp +76947 FW Dra LB 7.84 0 7.98 Hp +77037 FX Dra EB 9.29 0 9.59 Hp +77445 FY Dra LB 8.14 0 8.41 Hp +77993 FZ Dra LB: 10.49 0 10.68 Hp +80961 GG Dra EB 8.77 0 8.89 Hp +81244 GH Dra LB: 10.04 0 10.19 Hp +81284 GI Dra SRD: 8.10 0 8.15 Hp +82056 GK Dra EA 8.78 0 9.20 Hp +83102 GL Dra SRB 8.60 0 8.84 Hp +84837 GM Dra EW 8.79 0 9.02 Hp +84896 GN Dra SRB 9.06 0 10.07 Hp +85125 GO Dra LB 9.14 0 9.45 Hp +85076 GP Dra LB 6.83 0 7.05 Hp +85277 GQ Dra EB 8.98 0 9.42 Hp +85522 GR Dra L 8.30 0 8.43 Hp +85718 GS Dra LB: 9.78 0 9.91 Hp +86450 GT Dra IA: 8.13 0 8.26 Hp +87228 GU Dra LB: 10.13 0 10.35 Hp +87576 GV Dra EA 8.59 0 8.70 Hp +87541 GW Dra DSCTC 9.31 0 9.38 Hp +88411 GX Dra SRD 8.32 0 8.57 Hp +89083 GY Dra LB 9.02 0 9.26 Hp +89243 GZ Dra E: 9.52 0 9.65 Hp +90463 HH Dra LB 8.80 0 9.13 Hp +90972 HI Dra RRC 9.02 0 9.20 Hp +91061 HK Dra LB 6.56 0 6.77 Hp +91052 HL Dra EB 7.35 0 7.66 Hp +91335 HM Dra SRD 8.17 0 8.30 Hp +91983 HN Dra RR: 8.16 0 8.23 Hp +92523 HO Dra LB 8.37 0 8.54 Hp +92835 HP Dra EA 8.06 0 8.36 Hp +92889 HQ Dra LB: 9.15 0 9.28 Hp +93145 HR Dra LB 9.25 0 9.51 Hp +94361 HS Dra LB 7.24 0 7.37 Hp +94897 HT Dra LB: 8.92 0 9.05 Hp +95320 HU Dra SRB 6.96 0 7.08 Hp +94978 HV Dra SRD+E: 7.79 0 8.14 Hp +96350 HW Dra LB 6.81 0 6.98 Hp +96429 HX Dra LB: 9.56 0 9.76 Hp +96547 HY Dra SRB 8.38 0 8.53 Hp +97263 HZ Dra EA 8.16 0 8.32 Hp +97678 II Dra SRD: 7.72 0 7.79 Hp +98095 IK Dra LB: 8.17 0 8.28 Hp +98297 IL Dra LB: 8.48 0 8.60 Hp +98932 IM Dra SRB 8.08 0 8.18 Hp +99037 IN Dra DSCTC 8.05 0 8.09 Hp +99640 IO Dra DSCTC: 7.86 0 7.92 Hp +99863 IP Dra EB 7.84 0 7.90 Hp +101960 IQ Dra SRB: 8.47 0 8.95 Hp +63076 IR Dra GDOR 5.26 0 5.34 Hp +70819 IT Dra DSCTC 7.53 1 0.03 V +73869 IU Dra BY 8.42 1 0.04 V +89005 LP Dra RS 8.50 0 8.58 V +91329 LT Dra RCB 7.48 2 12.6 V +93299 LV Dra ACV 5.31 0 5.34 Hp +68076 MP Dra BY 8.45 1 0.03 V 9.52 K0V +83536 MR Dra DSCTC 8.21 1 0.01 V 0.032 A5 +86456 MS Dra BY 8.39 1 0.03 V 18.31 K0V +94346 MV Dra BY 7.04 1 0.02 V 5.49 G8V +74355 NO Dra EA 8.02 0 8.14 8.13 V 48953.470 5.47798 04 A2V +86058 NP Dra EA 9.04 0 9.15 9.15 * 48604.780 3.10886 08 A0 +58567 OR Dra DSCT 7.40 0 7.44 V 0.1128290 F2 +74037 PX Dra EA 9.82 0 6.95 6.88 V 48832.12 2.44405 12 F4III +61281 κ Dra GCAS 3.82 0 4.01 V B6IIIe +92512 ο Dra RS 4.63 1 0.10 V +89908 φ Dra ACV 4.22 1 0.04 V 42229.40 1.71646 60 A0p(Si) +103419 S Equ EA/SD 8.0 0 10.08 8.11 V 42596.7434 3.4360969 13 B9V+F9III-IV +104895 RV Equ SRB 9.09 0 9.39 V 80. K0 +103431 SV Equ EW/KE 9.25 1 0.20 0.16 V 39382.427 0.881 A0 +103586 SX Equ LB: 8.29 0 8.41 Hp +105614 SY Equ BCEP 8.47 0 8.54 Hp +104075 TV Equ BY: 7.98 1 0.02 V 7.52 G5 +104521 γ Equ ACVO 4.58 0 4.77 V 0.00868 F0p(Sr-Cr-Eu) +22881 R Eri CST: 5.72 0 V G4III +23231 S Eri RRC: 4.77 0 4.80 V 0.273 F0IV +18336 T Eri M 7.2 0 13.2 V 42079. 252.29 45 M3e-M5e +19004 V Eri SRC 8.8 0 10.4 p 97.0 M6II +19567 W Eri M 7.5 0 14.5 V 40345. 376.63 40 M7e-M9 +9767 Y Eri M 10.7 0 13.5 p 30060. 302.7 M7e +13064 Z Eri SRB 7.0 0 8.63 B 80. M4III +13384 RR Eri SRB 7.4 0 9.20 B 97. M5III +20045 RS Eri M 9.2 2 12.8 p 38048. 296.00 M7e +16647 RT Eri M 8.5 0 12.9 p 29360. 370.8 46 M7e +20429 RW Eri SRA 10.2 0 11.7 p 16780. 91.4 44 M6 +22442 RX Eri RRAB 9.17 0 10.10 V 21692.479 0.58724622 16 A7-F6 +22000 RZ Eri EA/DS/RS 7.70 0 8.72 0.04 V 43574.083 39.28238 05 A5+G8IV +14856 SV Eri RRAB 9.56 0 10.23 V 35552.109 0.7137964 30 A8-F5 +24025 SY Eri SRB 10.4 0 11.4 p 96.0 C6,3(N0) +21464 UU Eri SRB 10.6 0 12.0 p 340. M7 +14699 UX Eri EW/KW 10.5 0 11.11 11.01 V 41922.3195 0.44527942 F8 +15027 UY Eri CWB 10.93 0 11.66 V 40862.908 2.213235 28 A5-F2 +15653 VW Eri SRD 9.2 0 11.16 B 83.4 K5 +15926 VX Eri SR: 10.0 0 10.6 p M3 +19610 YY Eri EW/KW 8.1 0 8.80 8.72 V 41581.624 0.32149415 G5+G5 +16496 AS Eri EA/SD 8.29 0 9.00 8.42 V 28538.066 2.664152 09 A3V +22750 BB Eri RRAB 10.96 0 11.91 V 39559.291 0.569898 12 F4 +22234 BC Eri EW/KE 10.83 0 11.32 11.26 V 0.52778916 A6 +19717 BM Eri E:/GS+SR 8.5 0 9.3 p 31140. M6III +17821 BR Eri SRB 8.37 0 9.7 B 175.5 M5 +17859 BU Eri EA 8.5 0 9. p 32244.33 A3 +18080 BV Eri EW 8.12 0 8.63 8.42 V 43449.7103 0.5076649 F2 +11964 CC Eri BY+UV 8.70 0 9.05 V 1.56145 K7Ve +9230 CI Eri EA/SD: 9.5 0 10.5 p 28782.475 3.382880 F8V +12071 CO Eri EA/SD 9.0 0 9.6 9.1 p 28776.575 5.7836 F7V +12199 CS Eri RRC 8.75 0 9.31 V 38417.087 0.311331 47 A2 +20943 CT Eri EW/KE 10.0 0 10.52 10.27 V 44555.6736 0.634195498 F0 +12981 CU Eri CST 8.7 0 V G5 +14040 CV Eri LB: 6.10 1 0.18 V M2III +14273 CW Eri EA/DM 8.43 0 8.96 8.86 V 41267.6752 2.7283737 10 F0 +18928 CX Eri SRB 8.89 0 9.43 V 40666. 97. MA +19116 CY Eri SRB 6.95 0 7.20 V 25. M4III +19238 CZ Eri SRB 8.75 0 8.97 V 50. MA +19533 DE Eri SRB 8.91 0 9.06 V 150. M2 +19694 DF Eri SRB 8.21 0 8.33 V 40643. 36. MA +20269 DG Eri SRB 6.94 0 7.14 V 40623. 82. M4III +20506 DH Eri SRB 8.13 0 8.33 V 60. M3 +18455 DL Eri DSCTC 6.15 1 0.09 V 0.155879 F1V +21763 DM Eri SRB 4.28 0 4.36 V 30. M4III +18339 DO Eri ACVO 5.97 0 6.00 V 44577.0 12.4580 50 A5p(Sr-Cr-Eu) +18931 DP Eri SRB 7.18 0 7.40 V 55. M5III +20243 DQ Eri SRB 6.84 0 7.05 V 30. M4III +20922 DU Eri GCAS 5.41 0 5.49 V B1Vne +21296 DV Eri LB: 5.10 0 5.13 V M3III +22024 DX Eri GCAS 5.76 0 5.98 V B2Ve +21192 DZ Eri SXARI 5.73 0 5.82 Y 42815.52 1.374 B9III(Heweak) +14736 EE Eri ACV 7.33 0 7.38 V 44197.2 2.1945 B9p(Cr-Eu) +16803 EG Eri ACV 5.23 0 5.32 V 43485.50 1.93 38 B9p(Si) +21278 EH Eri ACV 5.72 1 0.03 V 43461.00 3.82 60 B9p(Si) +19431 EI Eri RS 6.95 0 7.32 V +20263 EK Eri BY 6.24 1 0.12 V +14763 EL Eri RS 7.92 0 8.20 V +20271 EM Eri * 5.84 1 0.06 V +23794 EN Eri ACV: 4.89 1 0.01 U +13402 EP Eri RS 6.03 0 6.08 V +20979 EQ Eri DSCT 7.7 1 0.10 V +17447 EU Eri SRC 7.23 0 7.86 V 395. +22192 EX Eri DSCTC 6.19 1 0.03 V +8762 FF Eri LB: 7.89 0 8.00 Hp +8985 FG Eri DSCTC: 6.75 0 6.80 Hp +12016 FH Eri SRB 6.97 0 7.09 Hp +12373 FI Eri DSCTC 8.49 0 8.59 Hp +12833 FK Eri EA 9.21 0 9.58 Hp +13130 FL Eri SRB 8.39 0 8.60 Hp +13188 FM Eri LB: 8.23 0 8.33 Hp +13293 FN Eri SRA 7.19 0 7.27 Hp +13396 FO Eri EA 8.51 0 8.80 Hp +13475 FP Eri EW 9.71 0 9.85 Hp +13493 FQ Eri LB: 8.18 0 8.28 Hp +14038 FR Eri LB: 7.41 0 7.51 Hp +14055 FS Eri LB: 8.73 0 8.83 Hp +14665 FT Eri BY: 11.96 0 12.21 Hp +14703 FU Eri EA: 9.25 0 9.59 Hp +14919 FV Eri LB: 9.01 0 9.12 Hp +16315 FW Eri E 11.87 0 12.21 Hp +16864 FX Eri EW 9.73 0 9.97 Hp +17167 FY Eri ACV 5.47 0 5.51 Hp +17145 FZ Eri SRB 7.28 0 7.52 Hp +17390 GG Eri LB: 9.57 0 9.74 Hp +17441 GH Eri EA 9.03 0 9.61 Hp +17442 GI Eri SRB 7.99 0 8.29 Hp +17530 GK Eri EA 8.96 0 9.49 Hp +17993 GL Eri SRB 6.88 0 7.11 Hp +18048 GM Eri SRB 7.37 0 7.62 Hp +18124 GN Eri LB: 8.71 0 8.82 Hp +18318 GO Eri LB: 7.14 0 7.26 Hp +18291 GP Eri SRB: 9.66 0 10.22 Hp +18398 GQ Eri LB: 8.94 0 9.09 Hp +18694 GR Eri SRB: 8.33 0 8.48 Hp +18695 GS Eri LB: 8.58 0 8.72 Hp +19062 GT Eri EA 8.57 0 9.14 Hp +19398 GU Eri LPB 5.39 0 5.42 Hp +19463 GV Eri LB: 7.21 0 7.37 Hp +19571 GW Eri EA 5.84 0 6.01 Hp +19700 GX Eri SRB: 7.51 0 7.62 Hp +19725 GY Eri LPB 6.40 0 6.42 Hp +20075 GZ Eri LB 5.94 0 6.10 Hp +20806 HH Eri EA 8.50 0 8.85 Hp +20903 HI Eri LB: 8.19 0 8.30 Hp +20992 HK Eri LB: 9.74 0 9.91 Hp +21050 HL Eri EB 8.56 0 8.60 Hp +21080 HM Eri SRB: 8.24 0 8.42 Hp +21241 HN Eri EB 8.66 0 8.97 Hp +21563 HO Eri LB: 8.25 0 8.37 Hp +21648 HP Eri SRD: 8.44 0 8.53 Hp +21688 HQ Eri LB: 8.10 0 8.34 Hp +21825 HR Eri SRB 7.33 0 7.50 Hp +21894 HS Eri DSCTC: 6.79 0 6.86 Hp +21959 HT Eri LB: 7.91 0 8.03 Hp +22171 HU Eri LB: 9.05 0 9.19 Hp +22326 HV Eri DSCTC: 8.37 0 8.46 Hp +22631 HW Eri LB: 9.31 0 9.45 Hp +19383 IK Eri GDOR 8.14 0 8.16 V +13558 IP Eri BY: 7.32 1 0.04 V K0IV+DA +14157 IR Eri RS 8.45 1 0.02 V 8.05 K0V +14684 IS Eri BY 8.48 1 0.06 V 5.41 G0V +19938 IU Eri DSCTC 7.49 0 7.55 Hp 0.0689 A2 +22263 IX Eri BY 5.47 0 5.51 V 11.3 G3V +21955 KP Eri EA 8.78 0 8.93 8.93 V 47908.707 7.447126 03 A2 +12953 KU Eri GDOR 7.83 0 7.89 Hp 2.136 F2V +7588 α Eri BE 0.40 0 0.46 Hp 1.263 B3Ve +18543 γ Eri LB: 2.88 0 2.96 V M0III +17378 δ Eri RS: 3.51 0 3.56 V +16537 ε Eri BY 3.73 1 0.05 V +23972 λ Eri BCEP 4.22 0 4.34 V 0.701538 B2IVe +22109 μ Eri EA+LPB: 4.00 1 0.05 V 52574.04 7.380618 B5IV +21444 ν Eri BCEP 3.92 1 0.14 V 33629.277 0.17790414 B2III +17593 Ï€ Eri LB: 4.38 0 4.44 V M2III +11582 R For M 7.5 0 13.0 V 41974. 388.73 52 C4,3e(Ne) +17600 S For CST: 5.6 0 8.5 V F8 +12682 X For SRB 9.5 0 10.8 p 76. M3 +16503 RZ For SRA 9.2 0 10.0 p 28075. 64.6 M5 +9932 SS For RRAB 9.45 0 10.60 V 38668.951 0.495432 17 A3-G0 +16321 SX For RRAB 10.68 0 11.38 V 39158.231 0.6053397 16 F2-G2 +11644 TY For DSCTC 6.49 0 6.51 V 0.05 A9V +15092 TZ For EA/GS 6.84 0 7.05 V 43216.558 G0III+G0III +8281 UV For RS 7.97 0 8.07 V +12716 UX For RS 7.97 0 8.11 V +12788 UY For RS 8.22 0 8.25 V +8481 VZ For SRB 9.21 0 9.33 Hp +8681 WW For SRD 9.25 0 9.49 Hp +8698 WX For LB 8.79 0 9.04 Hp +8749 WY For E: 9.91 0 10.09 Hp +8781 WZ For EA: 9.35 0 9.73 Hp +8953 XX For SRB 8.93 0 9.59 Hp +9208 XY For LB: 9.47 0 9.86 Hp +9443 XZ For EW 9.97 0 10.29 Hp +10039 YY For LB: 7.81 0 7.92 Hp +10191 YZ For BY: 10.01 0 10.20 Hp +10841 ZZ For LB: 8.99 0 9.11 Hp +10851 AA For SRC 7.89 0 8.06 Hp +11677 AB For LB: 8.33 0 8.51 Hp +11970 AC For LB: 8.49 0 8.59 Hp +12163 AD For SRB 7.44 0 7.66 Hp +14568 AE For EA 10.32 0 10.89 Hp +14605 AF For LB 8.13 0 8.46 Hp +14750 AG For SRB 7.84 0 7.97 Hp +15324 AH For LB: 8.29 0 8.42 Hp +15479 AI For SRB: 5.65 0 5.75 Hp +16247 AK For E: 9.24 0 9.35 Hp +16366 AL For LB: 8.97 0 9.09 Hp +17373 AM For SRB 6.93 0 7.15 Hp +17599 AN For LB: 8.79 0 8.95 Hp +12694 AO For BY: 7.51 0 7.54 V +10765 AV For EA 8.63 0 8.72 8.65 V 48674.823 1.87970 06 F5V +9677 ν For ACV 4.68 0 4.73 V 43475.00 1.89 B9.5p(Si) +34356 R Gem M 6.0 0 14.0 V 43325. 369.91 36 S2,9e-S8,9e(Tc) +35812 V Gem M 7.8 0 14.9 V 42694. 274.8 45 M4(S)e-M8 +31404 W Gem DCEP 6.54 0 7.38 V 42755.191 7.913779 30 F5-G1 +32512 X Gem M 7.5 0 13.8 V 43553. 264.16 49 M5e-M8e(Tc:) +37438 Y Gem SRB 10.4 0 12.3 p 160. M6e-M7 +35667 RR Gem RRAB 10.62 0 11.99 V 41357.205 0.3973106 13 A9-F6 +28537 RW Gem EA/SD: 9.53 0 11.76 9.74 V 18302.655 2.8654972 15 B5V+F5 +32791 RX Gem EA/DS 9.20 0 10.81 9.28 V 40555.782 12.2086588 09 A3IIIea+K1: +36209 RY Gem EA/DS 8.69 0 11.04 8.75 V 39732.6328 9.300567 10 A2Ve+K2IV +28625 RZ Gem DCEP 9.49 0 10.46 V 42714.970 5.529286 22 F5-F9 +28472 SV Gem EA/SD: 10.55 0 12.0 V 18662.488 4.0061216 15 B3 +38561 SZ Gem RRAB 10.98 0 12.25 V 27194.027 0.5011365 12 A0 +29416 TV Gem SRC 8.54 0 9.8 B K5.5-M1.3Iab +32083 VW Gem LB 8.14 0 8.52 V C5,4(Na) +34859 VX Gem M 10.8 2 15.1 p 41280. 379.4 C7,2e-C9,1e(Nep) +29425 WY Gem LC+E: 8.89 0 9.8 B M2epIab+B2V-B3V +28945 AA Gem DCEP 9.36 0 10.11 V 37397.250 11.30235 47 F6-G3Ib +32180 AD Gem DCEP 9.45 0 10.23 V 41694.911 3.787980 28 F5-G2: +31361 BB Gem DCEP 10.75 0 11.88 V 41839.695 2.308207 18 +30965 BK Gem ISB: 9.8 0 10.1 p K5III +35617 BM Gem SRB 11.5 0 12.1 p 286. C5,4J(Nb) +37074 BN Gem GCAS 6.75 0 6.85 V O8Vpe +34909 BQ Gem SRB 6.63 0 7.02 B 50. M4IIIab +29450 BU Gem LC 5.74 0 8.1 V M1-M2Ia-Iab +31349 CR Gem LB 10.9 0 12.10 B C8,3e(N) +31306 DX Gem DCEPS 10.53 0 10.92 V 41866.668 3.137486 50 +32427 GX Gem EB/D: 10.9 0 11.5 11.3 p 25999.696 1.35003708 G5 +31108 HX Gem LB: 12.5 0 14. p C4,4(N) +32740 IS Gem SRC 6.6 0 7.3 p 47. K3II +29687 LR Gem BCEP 9.01 0 9.12 B 0.23887 B0IV +30046 LU Gem BCEP 7.21 0 7.24 B 0.21909 B0II +33929 NP Gem LB: 5.89 0 6.04 V M1.5 +36623 NQ Gem SR+ZAND 7.4 0 7.99 V 70. C6,2(R9)eV +31829 NY Gem SRB 12.5 2 15.5 p 200. C4-5,4(N) +37521 NZ Gem SR 5.52 0 5.72 V M3II-IIIS +35933 OT Gem GCAS 6.0 0 6.44 V B2III-Ve +30630 OU Gem BY 6.76 1 0.05 V +32753 OV Gem SXARI 5.85 1 0.10 V +34038 PS Gem SRD 7.24 0 7.58 V +29225 PU Gem ACYG 5.78 0 5.82 Hp +29589 PV Gem DSCTC 7.58 0 7.64 Hp +29757 PW Gem EA: 9.14 0 9.49 Hp +29840 PX Gem ACYG 6.33 0 6.38 Hp +30452 PY Gem BE 8.40 0 8.53 Hp +30722 PZ Gem BE: 6.60 0 6.65 Hp +31236 QQ Gem E: 7.62 0 7.74 Hp +31982 QR Gem LB 7.58 0 7.73 Hp +32459 QS Gem DSCT 8.86 0 8.97 Hp +32612 QT Gem EB 7.66 0 8.06 Hp +32743 QU Gem LB: 6.88 0 7.06 Hp +32776 QV Gem LB: 6.83 0 6.92 Hp +32845 QW Gem EW 10.34 0 10.73 Hp +33166 QX Gem LPB: 8.16 0 8.22 Hp +33493 QY Gem E: 7.08 0 7.20 Hp +33583 QZ Gem SRB 8.49 0 8.63 Hp +33890 V0335 Gem EA 7.90 0 8.05 Hp +33945 V0336 Gem SRB 7.84 0 8.04 Hp +33944 V0337 Gem EA: 8.52 0 8.89 Hp +34704 V0338 Gem LB: 7.95 0 8.06 Hp +35428 V0339 Gem E: 8.94 0 9.31 Hp +35664 V0340 Gem BY: 7.62 0 7.86 Hp +36110 V0341 Gem LB 8.24 0 8.42 Hp +36412 V0342 Gem LB: 7.31 0 7.38 Hp +36386 V0343 Gem SRB 7.61 0 7.86 Hp +36822 V0344 Gem DSCTC 8.07 0 8.10 Hp +37197 V0345 Gem DSCTC: 7.82 0 7.88 Hp +37436 V0346 Gem SRD: 8.37 0 8.51 Hp +37708 V0347 Gem LB: 7.28 0 7.39 Hp +37775 V0348 Gem E: 8.50 0 8.58 Hp +34995 V0356 Gem ACV 6.89 1 0.04 V +34775 V0373 Gem EB 9.26 0 9.42 9.39 V 53343.769 1.60498 F8 +36357 V0376 Gem BY 7.73 1 0.03 V 11.63 K2V +38228 V0377 Gem BY 6.93 1 0.05 V 6.46 G5IV +35624 V0389 Gem EA 8.74 0 8.92 8.78 V 48536.929 1.04776 13 A2 +38797 V0436 Gem GDOR 7.89 1 0.06 B 0.7248 F2IV-V +34088 ζ Gem DCEP 3.62 0 4.18 V 43805.927 10.15073 50 F7Ib-G3Ib +29655 η Gem SRA+EA 3.15 0 3.9 V 37725. 232.9 50 M3IIIab +30343 μ Gem LB 2.75 0 3.02 V M3.0IIIab +37629 σ Gem RS 4.13 0 4.29 V 44677.1 19.423 K1III +33927 ω Gem CEP: 5.14 1 0.08 V 0.7282 G5II +110736 S Gru M 6.0 0 15.0 V 40608. 401.51 43 M5e-M8IIIe +110697 T Gru M 7.8 0 12.3 p 42072. 136.49 48 M1Iae-M2Ibe +112009 W Gru EA/AR 9.4 0 10.0 10.0 p 30132.149 2.9685036 11 F6IV+F6IV +107231 RS Gru DSCT 7.92 0 8.51 V 34325.2931 0.14701131 24 A6-A9IV-F0 +112532 XZ Gru RRC 10.4 0 10.7 p 38260.438 0.34741 50 +110188 AW Gru E: 10.5 0 11.0 p 36758. 120. M4III +112750 AX Gru LB: 7.0 1 0.16 V M3III +110624 BK Gru ACV 6.82 0 6.89 V 2.48 A3p(Sr) +113711 BP Gru ACVO 7.6 1 0.00 B +108347 BZ Gru DSCTC 6.13 0 6.21 V +111833 CC Gru DSCTC 6.62 0 6.68 V +106077 CL Gru SRB 8.61 0 8.82 Hp +106652 CM Gru SRB 8.55 0 8.86 Hp +107745 CN Gru LB 8.00 0 8.16 Hp +108128 CO Gru SRB 7.70 0 8.17 Hp +108486 CP Gru EA 7.73 0 8.09 Hp +109594 CQ Gru LB: 8.45 0 8.55 Hp +109666 CR Gru LB 7.20 0 7.32 Hp +109901 CS Gru BY: 9.45 0 9.56 Hp +110703 CT Gru LB 7.77 0 8.16 Hp +111190 CU Gru LB: 8.17 0 8.30 Hp +111219 CV Gru LB: 7.35 0 7.46 Hp +111610 CW Gru SRB 6.65 0 6.76 Hp +111718 CX Gru ELL: 6.66 0 6.71 Hp +111771 CY Gru LB 8.99 0 9.41 Hp +111856 CZ Gru SRB 7.74 0 7.93 Hp +111989 DD Gru LB 7.99 0 8.16 Hp +112205 DE Gru LB 7.38 0 7.58 Hp +113442 DF Gru EA 10.35 0 10.78 Hp +113683 DG Gru BY: 12.21 0 12.73 Hp +113968 DH Gru BY: 11.71 0 12.07 Hp +114127 DI Gru E: 8.78 0 8.85 Hp +114217 DK Gru SRB: 7.87 0 7.98 Hp +114407 DL Gru LB 5.86 0 5.98 Hp +114736 DM Gru BY: 11.06 0 11.27 Hp +114946 DN Gru LB: 8.32 0 8.42 Hp +115392 DO Gru LB: 8.32 0 8.47 Hp +115647 DP Gru EA 8.31 0 8.63 Hp +115510 DQ Gru DSCTC: 6.18 0 6.25 Hp +111411 DR Gru DSCTC 7.44 0 7.51 Hp 0.0666 A3IV +109642 DV Gru EA 7.73 0 7.85 7.74 V 48398.245 4.818025 05 F8V +112122 β Gru LC: 2.0 0 2.3 V M3-5II-III +82516 S Her M 6.4 0 13.8 V 45054. 307.28 47 M4,Se-M7.5,Se +88923 T Her M 6.8 0 13.7 V 45306. 164.98 47 M2.5e-M8e +80488 U Her M 6.4 0 13.4 V 44994. 406.10 40 M6.5e-M9.5e +78574 X Her SRB 7.5 0 8.6 p 95.0 M6e +81354 Y Her CST: 7.3 0 p B9 +87965 Z Her EA/AR/RS 7.30 0 8.18 8.18 V 13086.3345 3.9928077 11 F4IV-V +78721 RR Her SRB 8.8 0 13.5 B 239.7 C5,7e-C8,1e(N0e) +84948 RS Her M 7.0 0 13.0 V 45194. 219.70 47 M4e-M8: +79233 RU Her M 6.8 0 14.3 V 44899. 484.83 43 M6e-M9 +90727 RX Her EA/DM 7.28 0 7.87 7.74 V 33170.398 1.7785724 13 A0V+A0V +81026 SS Her M 8.5 0 13.5 V 45209. 107.36 48 M0e-M5e +77619 ST Her SRB 8.8 0 10.3 p 148.0 M6-7IIIaS +78994 SX Her SRD 8.6 0 10.9 p 34218. 102.90 46 G3ep-K0(M3) +83304 SY Her M 8.4 0 14.0 p 45248. 116.91 49 M1e-M6e +86430 SZ Her EA/SD 9.86 0 11.87 10.10 V 41864.3051 0.81809828 18 F0V +82710 TT Her EB/KE 9.61 0 10.34 9.89 V 39995.908 0.91207546 A7V-F2V +87681 TW Her RRAB 10.52 0 11.83 V 21545.2340 0.399600104 13 A4-F6 +84670 TX Her EA/DM 8.54 0 9.31 8.97 V 40008.3643 2.05980944 08 A5+F0 +81291 TY Her CST: 10.0 0 p M0 +81160 TZ Her CST: 9.1 0 p F5 +81272 UU Her SRD 8.5 0 10.6 p 43651. 80.1 F2Ib-G0 +84329 UW Her SRB 8.6 0 9.5 p 103.6 M5e +87643 UX Her EA/SD 9.05 0 10.21 9.11 V 39672.3785 1.5488479 15 A3V +80853 VX Her RRAB 9.89 0 11.21 V 21750.4827 0.45537282 14 A4-F4 +84233 VZ Her RRAB 10.72 0 12.04 V 36788.898 0.44032789 13 A6-F4 +89018 XZ Her M 10.5 0 13.6 p 33887. 171.69 M0 +90697 AC Her RVA 6.85 0 9.0 V 35097.8 75.01 F2pIb-K4e(C0,0) +92414 AD Her EA/SD 9.70 0 11.17 9.79 V 39001.1348 9.76657 11 A4V+K2 +84293 AK Her EW/KW 8.29 0 8.77 8.64 V 42186.460 0.42152201 F2+F6 +86080 AN Her SRB 10.1 0 10.9 p 65. M5 +92452 AP Her CWA 10.19 0 11.18 V 43745.347 10.4156 40 F2Ib-II-G0 +78417 AR Her RRAB 10.59 0 11.63 V 41454.347 0.470028 20 A7-F3 +81506 AS Her M 9.9 0 15.3 p 40750. 269.14 53 M2e +86131 AT Her 11.2 0 12.25 B K0V +90312 AW Her EA/AR/RS 9.65 0 11.0 V 25719.434 8.800760 07 G0+K2 +92067 BB Her DCEP 9.76 0 10.46 V 42679.289 7.507945 32 G5 +80432 BE Her SRB 8.2 0 9.9 V 71.6 M4 +88242 BL Her CWB 9.70 0 10.62 V 41841.289 1.3074502 26 F0-F6II-III +84027 CX Her SRB 10.7 0 12.1 p 114. M7 +92708 DI Her EA/DM 8.39 0 9.11 8.95 V 42233.3476 10.5501680 04 B5V+B4V +80903 DY Her DSCT 10.15 0 10.66 V 33439.4865 0.148631353 28 A7III-F4III +92478 HS Her EA/DM 8.50 0 8.97 8.63 V 45160.434 1.637435 12 B6III +89669 IQ Her SRB 6.99 0 7.47 V 30496. 75. 44 M4 +79349 LQ Her LB: 5.58 0 5.83 V M4IIIa +78539 LS Her RRC 10.79 0 11.12 V 28004.947 0.23080771 40 A5 +88008 MM Her EA/AR/RS 9.45 0 10.43 9.7 V 31302.445 7.960322 05 G2-5 +89141 NQ Her CST 8.41 0 8.4 V A0 +87818 OO Her LB 10.2 0 10.8 p M6 +87850 OP Her SRB 5.85 0 6.73 V 41196. 120.5 M5IIb-IIIa(S) +88397 OU Her LB 11.1 0 11.6 p M6 +89039 PW Her EA/AR:/RS 9.84 0 10.44 10.1 V 44785.433 2.8809877 18 K0IV-V +87190 V0337 Her SRB 9.5 0 10.2 p 280. M8 +87556 V0338 Her EA/SD 10.07 0 11.15 10.13 V 43691.123 1.3057393 17 F1V +87747 V0441 Her SRD 5.34 0 5.54 V 68. F2Ibe +81815 V0449 Her LB 8.9 0 9.9 p M6 +83308 V0451 Her ACV 6.26 0 6.34 V 37145.3 6.0094 B9p(Cr-Eu) +88832 V0529 Her SR 10.5 0 11.4 p 36800. 400. M7-M10 +92036 V0535 Her ACV 6.41 0 6.58 V 38543.8 9.9750 40 B9p(Si-Sr-Cr) +88820 V0566 Her SRB 8.6 0 9.26 p 137. M4III +81362 V0600 Her ELL+BCEP: 7.03 1 0.03 V 5.20065 B0.5III +84054 V0620 Her DSCTC 6.19 0 6.23 V 0.0797 48 A8V +86809 V0624 Her EA/DM 6.18 0 6.36 6.35 V 40321.0049 3.894977 10 A3m +82172 V0636 Her LB 5.83 1 0.20 V M4III-IIIa +82321 V0637 Her ACV 4.78 0 4.85 V 3.8567 A3Vp(Sr-Cr-Eu) +85302 V0640 Her LB 5.98 0 6.21 V M4IIIab +85934 V0642 Her SRB 6.41 0 6.56 V 12. M4IIIa +82798 V0644 Her DSCTC 6.32 0 6.36 V 0.11505449 50 F2IV +82779 V0645 Her DSCT: 7.30 1 0.14 V A5 +84794 V0647 Her UV 12.2 0 12.99 B M4eV +85840 V0648 Her DSCTC 6.86 1 0.04 V 0.29 A7V +82236 V0652 Her * 10.50 0 10.61 V 42216.8050 0.10800182 30 B1 +84289 V0655 Her ACV: 8.2 1 0.02 V 36005.007 5.891 49 A7V +84833 V0656 Her LB: 4.9 0 5.1 V M2IIIab +85503 V0657 Her LB: 9.9 0 10.7 p M7 +89172 V0669 Her 6.62 1 0.14 B M3III +87280 V0744 Her GCAS 6.65 0 6.94 V B7Vne +80548 V0746 Her SR 6.59 0 6.76 V M4III +88030 V0771 Her ACV 6.44 0 6.52 V 41450.86 0.517468 B9p(Si-Cr-Sr) +88637 V0772 Her E 6.9 1 0.10 V 43392.823 0.879511 G2V +81337 V0773 Her ACV 6.01 1 0.03 U 41459.05 1.45876 40 B9p(Si-Sr-Cr:) +90959 V0774 Her UV 9.45 0 10.90 B K2 +92919 V0775 Her RS 8.05 1 0.12 V 43677.520 2.879395 K0V +82216 V0776 Her ACV 5.21 0 5.27 V +84014 V0792 Her EA/GS/RS 8.5 1 0.33 V +86869 V0814 Her SRD 6.97 0 7.12 V +88848 V0815 Her RS 7.6 1 0.1 V +84680 V0818 Her SRB 9.80 0 11.2 B +84949 V0819 Her EA/D+BY 5.51 1 0.12 V +88331 V0820 Her * 5.17 0 5.19 B +92593 V0822 Her EB/KE 6.12 0 6.30 V +82526 V0823 Her ACV 6.40 1 0.03 U +86946 V0826 Her ELL 6.68 1 0.02 V +92934 V0828 Her ACV 6.15 1 0.04 U +87497 V0830 Her DSCT: 9.20 0 9.33 V +88528 V0831 Her DSCTC: 6.28 0 6.34 V +84291 V0832 Her RS 8.8 1 0.04 V +86579 V0834 Her RS 8.0 1 0.10 V +87746 V0835 Her RS 7.94 0 8.09 V +77986 V0839 Her BE 5.74 0 5.84 V +82959 V0841 Her UV 11.08 0 11.25 U +83921 V0873 Her DSCT: 8.4 1 0.21 V +88639 V0885 Her BY 10.62 1 0.06 V +91043 V0889 Her BY 7.39 1 0.14 V +79331 V0890 Her LB: 9.26 0 9.37 Hp +79347 V0891 Her LB: 8.51 0 8.63 Hp +79543 V0892 Her SRB 7.70 0 7.96 Hp +80020 V0893 Her RR: 9.20 0 9.38 Hp +80302 V0894 Her SRD 8.17 0 8.32 Hp +80523 V0895 Her SRB 7.84 0 7.99 Hp +80541 V0896 Her LB: 8.67 0 8.85 Hp +80791 V0897 Her SRD: 6.88 0 7.12 Hp +80876 V0898 Her BY: 11.87 0 12.19 Hp +81191 V0899 Her EW 7.93 0 8.07 Hp +81245 V0900 Her LB: 8.74 0 8.86 Hp +81243 V0901 Her SR: 8.69 0 8.78 Hp +81319 V0902 Her LB: 7.08 0 7.17 Hp +81411 V0903 Her SRB 6.99 0 7.16 Hp +81426 V0904 Her LB: 6.98 0 7.08 Hp +81420 V0905 Her LB: 8.86 0 9.00 Hp +81483 V0906 Her LB 6.52 0 6.65 Hp +81622 V0907 Her LB: 8.38 0 8.48 Hp +81694 V0908 Her BY: 10.14 0 11.95 Hp +81855 V0909 Her LB 7.84 0 8.02 Hp +81938 V0910 Her LB: 8.47 0 8.62 Hp +81975 V0911 Her LB: 8.41 0 8.57 Hp +81967 V0912 Her SRD: 8.69 0 8.79 Hp +82029 V0913 Her LB: 8.45 0 8.56 Hp +82050 V0914 Her SRD 8.48 0 8.69 Hp +82103 V0915 Her LB: 8.32 0 8.44 Hp +82123 V0916 Her E: 8.03 0 8.38 Hp +82207 V0917 Her LB: 10.18 0 10.31 Hp +82253 V0918 Her EB 7.40 0 7.51 Hp +82346 V0919 Her DSCTC 8.42 0 8.46 Hp +82390 V0920 Her E: 7.88 0 7.98 Hp +82344 V0921 Her EB 9.45 0 9.80 Hp +82387 V0922 Her LB: 10.58 0 10.73 Hp +82428 V0923 Her EB 9.09 0 9.27 Hp +82776 V0924 Her SRB: 7.78 0 7.95 Hp +82825 V0925 Her LB: 9.57 0 9.72 Hp +82920 V0926 Her LB: 9.27 0 9.39 Hp +82883 V0927 Her DSCT 10.11 0 10.24 Hp +83208 V0928 Her LB: 8.00 0 8.12 Hp +83370 V0929 Her DSCTC 8.06 0 8.11 Hp +83425 V0930 Her BY: 10.48 0 10.67 Hp +83462 V0931 Her LB: 6.07 0 6.26 Hp +83584 V0932 Her LB 9.61 0 10.03 Hp +83713 V0933 Her LB: 9.26 0 9.37 Hp +83714 V0934 Her SRB: 7.62 0 7.78 Hp +83814 V0935 Her EB 8.44 0 8.64 Hp +83868 V0936 Her LB: 8.94 0 9.08 Hp +83904 V0937 Her LB: 9.53 0 9.65 Hp +84016 V0938 Her SRB: 7.89 0 7.98 Hp +84004 V0939 Her LB 7.24 0 8.02 Hp +84038 V0940 Her SRD 7.44 0 7.93 Hp +84191 V0941 Her LB: 10.10 0 10.24 Hp +84385 V0942 Her LB 7.18 0 7.30 Hp +84504 V0943 Her LB: 8.69 0 8.85 Hp +84596 V0944 Her LB 6.88 0 7.02 Hp +84726 V0945 Her LB 10.41 0 10.75 Hp +84752 V0946 Her BY: 10.86 0 11.52 Hp +84775 V0947 Her LB: 7.79 0 7.93 Hp +85057 V0948 Her EA 9.02 0 9.31 Hp +85065 V0949 Her SRB 8.78 0 9.28 Hp +85252 V0950 Her LB: 8.60 0 8.70 Hp +85344 V0951 Her LB: 8.84 0 8.95 Hp +85510 V0952 Her LB: 8.65 0 8.77 Hp +85644 V0953 Her LB: 9.16 0 9.27 Hp +85672 V0954 Her LB: 9.09 0 9.23 Hp +85904 V0955 Her LB: 9.86 0 10.07 Hp +86000 V0956 Her LB: 8.57 0 8.72 Hp +85992 V0957 Her LB 8.14 0 8.37 Hp +86073 V0958 Her LB: 9.64 0 9.84 Hp +86153 V0959 Her SRC 6.33 0 6.51 Hp +86392 V0960 Her SRD 7.51 0 7.60 Hp +86439 V0961 Her SRB 8.99 0 9.33 Hp +86395 V0962 Her SRB: 7.93 0 8.24 Hp +86588 V0963 Her LB 9.15 0 9.47 Hp +86710 V0964 Her LB 8.09 0 8.25 Hp +86709 V0965 Her SRC: 7.02 0 7.15 Hp +86711 V0966 Her DSCTC 8.01 0 8.11 Hp +86846 V0967 Her LB: 9.25 0 9.36 Hp +87114 V0968 Her LB 6.47 0 6.66 Hp +87245 V0969 Her LB: 7.51 0 7.55 Hp +87446 V0970 Her LB: 8.37 0 8.48 Hp +87908 V0971 Her SRB 8.20 0 8.52 Hp +87958 V0972 Her EW 6.73 0 6.80 Hp +88067 V0973 Her SRB: 9.04 0 9.47 Hp +88172 V0974 Her BE 6.38 0 6.45 Hp +88181 V0975 Her LB 7.31 0 7.52 Hp +88308 V0976 Her LB: 9.44 0 9.58 Hp +88394 V0977 Her LB 7.62 0 7.79 Hp +88434 V0978 Her LB 6.82 0 6.97 Hp +88537 V0979 Her DSCTC 8.52 0 8.58 Hp +88563 V0980 Her LB 6.96 0 7.06 Hp +88769 V0981 Her LB: 7.24 0 7.34 Hp +88722 V0982 Her LB 6.99 0 7.38 Hp +88761 V0983 Her LB 7.29 0 7.40 Hp +88823 V0984 Her LB: 9.56 0 9.67 Hp +89132 V0985 Her LB: 9.17 0 9.36 Hp +89142 V0986 Her LB: 8.00 0 8.10 Hp +89271 V0987 Her LB 9.82 0 10.07 Hp +89862 V0988 Her EA 7.71 0 7.90 Hp +89999 V0989 Her LPB 6.79 0 6.82 Hp +90338 V0990 Her EA: 7.72 0 7.96 Hp +90417 V0991 Her SRD: 9.33 0 9.98 Hp +90420 V0992 Her SRD 8.93 0 9.10 Hp +90409 V0993 Her LB: 9.80 0 9.94 Hp +90483 V0994 Her EA 6.93 0 7.24 Hp +90770 V0995 Her LB: 7.76 0 7.87 Hp +90803 V0996 Her LB: 9.80 0 9.97 Hp +91071 V0997 Her SRB 8.05 0 8.22 Hp +91140 V0998 Her E: 9.02 0 9.15 Hp +91422 V0999 Her LB: 8.89 0 9.14 Hp +91970 V1000 Her SRD 9.20 0 9.42 Hp +92237 V1001 Her LB 9.53 0 9.94 Hp +92374 V1002 Her EA 8.99 0 9.14 Hp +92699 V1003 Her DSCTC: 9.81 0 9.90 Hp +89972 V1017 Her EA 10.29 0 10.47 V +81633 V1082 Her BY 9.00 1 0.02 V 23. K2V +82042 V1085 Her BY 9.45 1 0.01 V 13.65 K5V +83006 V1089 Her BY 7.93 1 0.03 V 15.39 K0V +83020 V1090 Her BY 7.76 1 0.02 V 7.22 K0V +92372 V1109 Her EB 9.30 0 9.57 V 52760.834 2.59849 B9 +92449 V1110 Her BY 7.0 1 0.02 V 11.7 K5 +90919 V1136 Her GDOR 8.07 1 0.06 B 1.0044 F2IV +84345 α Her SRC 2.74 0 4.0 V M5Ib-II +80170 γ Her SRD: 4.02 1 0.09 B +86414 ι Her BCEP 2.93 1 0.02 U +87998 ν Her SRD: 4.38 0 4.48 V 29. F2II +87933 χ Her SRD 3.85 0 3.88 Hp +88794 ο Her GCAS 3.80 1 0.07 B B9Ve +79101 φ Her ACV: 4.22 0 4.23 Hp +79992 Ï„ Her LPB 3.83 0 3.86 Hp +80463 ω Her ACV 4.57 1 0.08 V 41254.70 2.951 B9p(Cr-Mn-Sr) +80704 g Her SRB 4.3 0 6.3 V 89.2 M6III +13502 R Hor M 4.7 0 14.3 V 41494. 407.6 40 M5e-M8eII-III +14042 T Hor M 7.2 0 13.7 V 41957. 217.60 48 M5IIe +14229 V Hor SRB 8.7 0 9.8 p M5III +14488 SZ Hor EW/KW 10.4 0 10.8 10.7 p 28048.610 0.4804562 +16339 TU Hor ELL 5.90 0 6.04 6.03 V 43055.620 0.935971 A2V+K +11648 TV Hor SRB 6.74 0 6.89 V 30. M4-5III +14930 TW Hor SRB 5.52 0 5.95 V 158. C7,2(N0) +11293 TZ Hor LB: 6.41 1 0.11 V M5III +13359 VZ Hor BY 8.75 0 8.88 V +17889 WX Hor SRA 7.14 0 7.88 V +11934 WY Hor EW 9.55 0 9.70 Hp +13074 WZ Hor EA: 8.14 0 8.46 Hp +13101 XX Hor LB: 8.99 0 9.09 Hp +13185 XY Hor SRB 7.72 0 7.98 Hp +13575 XZ Hor LB: 8.73 0 8.91 Hp +14238 YY Hor SRB 8.00 0 8.18 Hp +14656 YZ Hor ACV: 8.16 0 8.30 Hp +15186 ZZ Hor LB: 9.01 0 9.11 Hp +15316 AA Hor LB: 8.69 0 8.79 Hp +15757 AB Hor LB: 8.11 0 8.22 Hp +16070 AC Hor LB: 9.02 0 9.19 Hp +16772 AD Hor DSCTC 7.03 0 7.11 Hp +19380 AE Hor EA 8.56 0 8.87 Hp +65835 R Hya M 3.5 0 10.9 V 43596. 388.87 49 M6e-M9eS(Tc) +43653 S Hya M 7.2 0 13.3 V 43509. 256.63 49 M4e-M8.0e +43835 T Hya M 6.7 0 13.48 V 41975. 298.7 49 M3e-M9:e +52009 U Hya SRB 7.0 0 9.4 B 450. C6.5,3(N2)(Tc) +53085 V Hya SRA 10.9 0 16. p 30920. 530.7 50 C6,3e-C7,5e(N6e) +67419 W Hya SRA 7.7 0 11.6 p 43271. 361. 50 M7.5e-M9ep +47066 X Hya M 7.2 0 13.6 V 41060. 301.10 42 M7e-M8.5e +48327 Y Hya SRB 8.3 0 12.0 p 302.8 C5,4(N3p) +41664 RT Hya SRB 7.0 0 10.2 V 290. 46 M6e-M8e +69346 RU Hya M 7.2 0 14.3 V 43162. 331.5 35 M6e-M8.8e +42489 RV Hya SRC 8.7 0 10.0 p 116. M5II +44632 RX Hya EA/SD 8.9 0 11.6 0.05 V 43447.700 2.2816450 13 A8 +65896 SS Hya EA: 7.88 0 8.1 B B9 +61031 SV Hya RRAB 9.78 0 11.00 V 39318.319 0.47854395 15 F0-F8 +67064 SX Hya EA/SD 8.6 0 12.6 p 44344.451 2.895737 11 A3+K5: +45292 SZ Hya RRAB 10.44 0 11.84 V 40679.412 0.53724022 15 A7 +54807 TT Hya EA/SD 7.25 0 9.02 7.32 V 43918.1060 6.95342913 11 A5IIIe+G5IV +66433 TV Hya E: 8.0 0 8.2 p A3 +53911 TW Hya S: 10.5 0 12.2 p +47904 VX Hya DSCT: 10.21 0 10.96 V 0.2233889 F2Ib-F8 +41834 VZ Hya EA/DM 8.96 0 9.68 9.46 V 40254.8607 2.9042998 07 F5V+F5V +50073 WZ Hya RRAB 10.27 0 11.28 V 39627.363 0.537715 16 A2 +42502 AK Hya SRB 6.33 0 6.91 V 75. M4III +55347 BK Hya LB 10.4 0 11.4 p K5 +40186 DD Hya RRAB 11.5 0 12.5 p 41695.504 0.501776 12 A-F +57009 DN Hya M 11.4 0 14.4 p 28190. 182.4 Me +43063 EY Hya SRA 9.6 0 12.0 p 32707. 182.7 M7 +41437 FG Hya EW/KW 9.90 0 10.28 10.25 V 44968.2764 0.327832 G0 +41201 FK Hya LB 8.9 0 10.2 p MB +41751 GK Hya EA/DM/RS 9.35 0 9.91 9.57 V 14968.863 3.587052 10 G4V +40766 HQ Hya DSCTC 6.29 0 6.33 V 0.0755 F3IIIp +50966 HS Hya EA/D 8.07 0 8.61 8.55 V 41374.5954 1.5680420 10 F3+F4 +42146 HV Hya ACV 5.66 0 5.76 V 40619.8 5.57 A2p(Sr-Cr-Eu) +57613 II Hya SRB 4.85 0 5.12 V 40684. 61. M4III +58907 IK Hya RR 9.96 0 10.42 V 38461.510 0.65 A2: +46159 IL Hya RS 7.45 0 7.95 V 44662.355 12.86833 K1III +45824 IN Hya SRB 6.27 0 6.87 V 65. M4III +49610 IO Hya SRB 6.87 0 7.02 V 80. M4III +45266 IQ Hya M 5.0 0 6.2 I C3,2(Ne) +45999 KU Hya ACV 6.51 0 6.53 V 41799.78 33.97 50 A3Vp(Sr-Cr-Eu) +45184 KW Hya EA/DM 6.11 0 6.58 6.35 V 7.750 A3mIII:+A0V: +43305 KX Hya ACV 5.31 1 0.02 V 6. B9p(Hg-Mn) +41375 LM Hya DSCTC 5.80 1 0.00 B +63159 LN Hya SRD 6.57 0 6.90 V +41564 LO Hya EA/DM 6.37 0 6.61 V +46816 LQ Hya BY 7.79 0 7.86 V +51884 LR Hya BY 8.03 0 8.05 V +55292 LS Hya ACV 7.87 0 8.00 V +41274 LU Hya RS 7.34 0 7.39 V +58272 LV Hya ACV: 6.20 1 0.03 V +62905 LW Hya R: 9.56 0 9.63 V +45658 LX Hya ACVO 7.79 0 7.82 V +62788 MO Hya DSCTC 6.15 1 0.06 V +70972 MP Hya DSCTC 7.9 1 0.02 B +40689 MQ Hya SRD 8.52 0 8.69 Hp +40750 MR Hya SRB 9.00 0 9.18 Hp +40763 MS Hya SRD 6.99 0 7.09 Hp +40892 MT Hya SRB 9.83 0 10.15 Hp +42013 MU Hya SRB 7.45 0 7.62 Hp +42674 MV Hya SRB 7.74 0 7.86 Hp +42700 MW Hya LB 7.26 0 7.49 Hp +42951 MX Hya EA 6.52 0 7.01 Hp +43039 MY Hya LB 6.57 0 6.90 Hp +43308 MZ Hya SRB 8.84 0 9.03 Hp +43746 NN Hya LB: 6.65 0 6.76 Hp +44123 NO Hya SRB: 9.57 0 9.79 Hp +44359 NP Hya ACV: 7.08 0 7.14 Hp +44609 NQ Hya LB: 7.97 0 8.08 Hp +44675 NR Hya LB: 9.58 0 9.76 Hp +44738 NS Hya SRB 6.18 0 6.29 Hp +44813 NT Hya DSCTC 7.42 0 7.49 Hp +45030 NU Hya LB 8.33 0 8.50 Hp +45547 NV Hya LB: 7.65 0 7.75 Hp +45755 NW Hya LB: 7.79 0 7.89 Hp +45846 NX Hya EB 8.33 0 8.50 Hp +45887 NY Hya EA 8.65 0 9.02 Hp +46002 NZ Hya EA 8.28 0 8.78 Hp +46323 OO Hya I: 10.37 0 10.83 Hp +46435 OP Hya LB 6.97 0 7.10 Hp +46722 OQ Hya LB: 8.00 0 8.11 Hp +46948 OR Hya LB: 9.24 0 9.40 Hp +46987 OS Hya LB 8.45 0 8.70 Hp +46988 OT Hya SRB: 7.82 0 7.95 Hp +47130 OU Hya LB: 9.59 0 9.76 Hp +47102 OV Hya LB: 8.67 0 8.77 Hp +47427 OW Hya EA 6.29 0 6.66 Hp +48494 OX Hya SRB 7.67 0 7.84 Hp +48943 OY Hya BE 6.09 0 6.15 Hp +49177 OZ Hya EA 9.50 0 9.75 Hp +49209 PP Hya ELL: 6.84 0 6.91 Hp +49322 PQ Hya LB: 9.03 0 9.17 Hp +49463 PR Hya SRB 8.96 0 9.17 Hp +49755 PS Hya SRB: 7.12 0 7.21 Hp +49783 PT Hya LB: 8.02 0 8.13 Hp +50212 PU Hya LB: 8.83 0 8.92 Hp +51289 PV Hya LB 9.32 0 9.87 Hp +51496 PW Hya BY: 10.17 0 12.31 Hp +51683 PX Hya E 8.47 0 8.57 Hp +52509 PY Hya LB: 8.88 0 8.99 Hp +52565 PZ Hya LB: 9.93 0 10.38 Hp +52789 QQ Hya LB: 7.02 0 7.06 Hp +53487 QR Hya E 8.51 0 8.69 Hp +53753 QS Hya SRD 9.16 0 9.33 Hp +55953 QT Hya SRD 6.52 0 6.58 Hp +56300 QU Hya SRB 7.39 0 7.50 Hp +57678 QV Hya LB: 9.05 0 9.16 Hp +58802 QW Hya LB 8.84 0 9.36 Hp +58946 QX Hya SRB 7.47 0 7.59 Hp +59259 QY Hya EB: 9.07 0 9.36 Hp +59443 QZ Hya LB 7.57 0 7.70 Hp +59588 V0335 Hya LB 5.84 0 6.34 Hp +59789 V0336 Hya LB 7.47 0 7.59 Hp +59921 V0337 Hya SRA 8.38 0 9.20 Hp +60273 V0338 Hya SRB 8.27 0 8.55 Hp +61024 V0339 Hya SRB 8.16 0 8.42 Hp +61836 V0340 Hya EA 8.24 0 8.53 Hp +61908 V0341 Hya SRB 6.61 0 6.71 Hp +62062 V0342 Hya LB 6.72 0 6.91 Hp +62432 V0343 Hya SRB 8.01 0 8.23 Hp +63357 V0344 Hya LB: 7.28 0 7.38 Hp +63650 V0345 Hya LB: 8.93 0 9.03 Hp +65324 V0346 Hya SRB: 7.50 0 7.74 Hp +66273 V0347 Hya BY: 8.58 0 8.83 Hp +67531 V0348 Hya LB: 8.52 0 8.63 Hp +67984 V0349 Hya SRB 7.36 0 7.76 Hp +68757 V0350 Hya LB 7.89 0 8.16 Hp +69017 V0351 Hya LB 8.65 0 9.06 Hp +69110 V0352 Hya LB: 9.08 0 9.22 Hp +69211 V0353 Hya EA 7.51 0 7.65 Hp +69894 V0354 Hya E: 8.40 0 8.52 Hp +70370 V0355 Hya LB: 8.33 0 8.43 Hp +71077 V0356 Hya EB 7.56 0 7.69 Hp +48958 V0359 Hya ACV 7.85 0 7.88 V +40774 V0397 Hya BY 8.35 1 0.03 V 8.75 G5V +42333 V0401 Hya BY 6.73 1 0.05 V 6.14 G0 +44526 V0405 Hya BY 8.77 1 0.03 V 8.64 K2Ve +46223 V0415 Hya GDOR: 7.07 0 7.10 Hp 0.490 A3 +48830 V0416 Hya GDOR 6.64 0 6.73 Hp F0V +49366 V0417 Hya BY 8.15 1 0.03 V 10.74 K0V +51931 V0418 Hya BY: 8.71 1 0.02 V K2V +52462 V0419 Hya BY 7.72 1 0.02 V 13.47 K1V +45171 V0432 Hya EA 7.90 0 7.98 7.98 V 48594.965 1.115657 07 A1/2III/IV +42457 V0490 Hya EA 8.65 2 8.80 8.71 V 48794.107 92.1711 A0V +44258 V0511 Hya EA 8.99 0 9.06 9.05 V 48568.32 2.03915 08 A1V +57936 β Hya ACV 4.27 1 0.04 V 42451.78 2.344 B9IIIp(Si) +43109 ε Hya BY: 3.35 0 3.39 V +42799 η Hya BCEP 4.27 0 4.33 V 0.17 B3V +6552 BG Hyi DSCTC 8.2 1 0.03 V +8132 BM Hyi ACV 7.0 1 0.04 V +14521 BN Hyi DSCTC 5.7 1 0.02 V +10722 BQ Hyi E:/RS 8.06 0 8.22 V 18.66 G1 +14026 BT Hyi ACVO 9.1 1 0.01 V +610 BZ Hyi EA 8.53 0 8.69 Hp +7326 CC Hyi LB 8.97 0 9.17 Hp +7496 CD Hyi SRB: 8.28 0 8.35 Hp +7682 CE Hyi DSCTC 8.48 0 8.53 Hp +8035 CF Hyi BY: 9.23 0 9.41 Hp +8485 CG Hyi LPB 7.77 0 7.82 Hp +9472 CH Hyi SRB 6.77 0 6.90 Hp +10248 CI Hyi SRB 8.52 0 9.09 Hp +11039 CK Hyi LB: 8.38 0 8.48 Hp +11455 CL Hyi SRB: 6.48 0 7.15 Hp +12674 CM Hyi SRB 7.66 0 7.87 Hp +12884 CN Hyi EW 6.68 0 6.93 Hp +13189 CO Hyi SRB 8.55 0 8.88 Hp +13999 CP Hyi EW: 7.90 0 8.04 Hp +15931 CQ Hyi LB 8.48 0 8.67 Hp +16592 CR Hyi ELL: 9.28 0 9.34 Hp +16775 CS Hyi SRA 8.24 0 9.28 Hp +17543 CT Hyi ACV: 6.21 0 6.24 Hp +20015 CU Hyi BY: 9.20 0 9.44 Hp +8472 DH Hyi EA 8.45 0 8.63 8.58 V 48375.910 7.43367 03 A2mA5-A7 +105334 T Ind SRB 7.7 0 9.4 p 320. C7,2(Na) +104613 V Ind RRAB 9.12 0 10.48 V 40118.393 0.4795910 10 A5-G3: +107490 RR Ind SRB 10.9 0 13.1 p 30120. 140. 60 C6II(Na) +103215 SU Ind EB/DW 9.3 0 9.7 9.5 V 34267.489 0.986323 F5/6V +104424 AK Ind LB 9.1 0 9.4 p M4/5III +107705 AY Ind UV 9.9 0 11.26 B M2Ve +107525 BC Ind ACV 7.18 0 7.24 V 42619.508 1.788 40 B9p(Si) +108340 BD Ind ACV 7.5 1 0.01 V +108584 BE Ind DSCTC 8.4 1 0.02 V +108478 BG Ind EA 6.11 0 6.36 V +106013 BH Ind RS 9.44 0 9.89 V +114678 BI Ind RS 7.65 0 7.70 V +101185 BK Ind EA 10.30 0 10.84 Hp +101366 BL Ind LB 8.76 0 9.02 Hp +102064 BM Ind LB 8.85 0 9.05 Hp +102160 BN Ind SRB 7.51 0 7.64 Hp +102353 BO Ind EW 8.41 0 8.61 Hp +102895 BP Ind BY: 9.05 0 9.17 Hp +103290 BQ Ind SXPHE 9.78 0 10.05 Hp +104604 BR Ind EA 7.08 0 7.22 Hp +105404 BS Ind EA 9.01 0 9.32 Hp +106316 BT Ind SRB 7.87 0 8.52 Hp +107349 BU Ind LB: 10.09 0 10.32 Hp +107523 BV Ind LB: 8.98 0 9.08 Hp +108524 BW Ind SRD: 9.14 0 9.20 Hp +108741 BX Ind DSCTC 7.94 0 8.03 Hp +109325 BY Ind LB 8.86 0 9.04 Hp +109580 BZ Ind LB: 8.72 0 8.89 Hp +114917 CC Ind SRB: 6.66 0 7.36 Hp +106954 CF Ind DSCTC 7.76 0 7.81 Hp +108976 CK Ind GDOR 7.36 0 7.44 Hp 0.8853 A9/F0V +106360 CM Ind SRB 7.77 0 7.93 Hp +106234 CQ Ind EA 8.38 0 8.8 8.75 V 52625.750 26.921 02 F7V +110972 S Lac M 7.6 0 13.9 V 43804. 241.50 46 M4e-M8.2e +112545 U Lac SRC 9.4 0 12.1 p M4epIab+B +112626 V Lac DCEP 8.38 0 9.42 V 28901.285 4.983458 25 F5-G0 +112675 X Lac DCEPS 8.20 0 8.64 V 42738.132 5.444990 38 F6-G0 +109340 Y Lac DCEP 8.76 0 9.50 V 41746.745 4.323776 34 F5-G0 +111972 Z Lac DCEP 7.88 0 8.93 V 42827.123 10.885613 43 F6Ib-G6Ib +112026 RR Lac DCEP 8.38 0 9.30 V 42776.686 6.416243 30 F6-G2 +108728 RT Lac EB/AR/RS 8.84 0 9.89 9.62 V 44873.3648 5.0739496 G9IV+K1IV +112292 RV Lac SRB 11.0 0 12.7 p 67. M4 +108981 SS Lac EA/D 10.1 0 10.5 10.5 p 15900.76 14.41629 05 B7 +113052 SW Lac EW/KW 8.51 0 9.39 9.31 V 45275.3477 0.3207209 G8Vp+G8Vp +113252 SX Lac SRD 9.0 0 10.0 p 190.0 47 K2 +113260 TV Lac LB 11.5 0 12.3 p C4,5(N3) +112394 TX Lac LB 11.2 0 12.9 p C3:,4J(R5) +109303 AR Lac EA/AR/RS 6.08 0 6.77 6.43 V 41593.7123 1.98319204 15 G2IV-V+K0IV +108630 BG Lac DCEP 8.51 0 9.18 V 35315.273 5.331908 33 F7-G4 +108606 CM Lac EA/DM 8.18 0 9.15 8.53 V 27026.316 1.6046916 11 A2V+A8V +112436 CO Lac EA/DM 10.28 0 10.89 10.79 V 27534.0728 1.5422075 13 B8.5IV+B9.5V +109158 CT Lac SRA 10.6 0 17.2 p 41110. 555. 62 C6-,4(R) +110213 CZ Lac RRAB 10.77 0 11.26 V 45178.328 0.432205 14 A8-F5 +112031 DD Lac BCEP 5.16 0 5.28 V 43063.774 0.1930924 50 B1.5III +109420 DE Lac DSCT 10.08 0 10.43 V 42659.819 0.2536934 33 F5-F8 +109619 DH Lac M 11.6 0 14.6 p 41221. 288.8 M5e +113281 EN Lac BCEP+EA/D 5.41 1 0.11 B 50 B2IV +112460 EV Lac UV+BY 8.28 0 11.83 B M4.5Ve +113327 EW Lac GCAS 5.22 0 5.48 V B3III-IVpeV +112247 GL Lac ACV 8.73 0 8.90 V 36864.88 9.4871 57 B8p(Si) +109002 HK Lac RS 6.77 0 7.04 V 25.83 K0III-IVpeaV +109033 HT Lac SRB 6.08 0 6.36 V 82. M4IIIab +111072 V0350 Lac ELL+RS 6.27 0 6.47 6.45 V 44207.743 17.748 K2III-IVp +110287 V0357 Lac GCAS 7.02 1 0.2 B B1IV:pnne +112778 V0360 Lac EB/DM: 5.91 0 5.98 5.93 V 41895.8077 10.075 B3IV:eaV +111400 V0362 Lac ACV 8.69 1 0.07 V 44509.32 1.43 50 A0p(4200-Si) +112316 V0363 Lac LB 11.2 0 12.0 p C(N) +112928 V0364 Lac EA/DM 8.51 0 9.25 9.15 B 44257.2865 7.351522 06 A3 +109082 V0365 Lac ELL 6.27 1 0.08 V +113009 V0377 Lac LPB 6.25 1 0.02 B +108892 V0378 Lac LB 8.7 0 9.1 R +108776 V0393 Lac I: 10.51 0 10.98 Hp +108888 V0394 Lac EB 8.04 0 8.15 Hp +108911 V0395 Lac ACYG: 8.45 0 8.52 Hp +109020 V0396 Lac IA: 9.83 0 10.13 Hp +109113 V0397 Lac BE 9.67 0 9.79 Hp +109193 V0398 Lac EA 8.73 0 9.02 Hp +109205 V0399 Lac ACYG: 6.24 0 6.29 Hp +109238 V0400 Lac LPB: 7.87 0 7.95 Hp +109283 V0401 Lac EA 7.93 0 8.16 Hp +109354 V0402 Lac EA 6.70 0 6.99 Hp +109802 V0403 Lac LB: 7.73 0 7.81 Hp +110177 V0404 Lac BE 8.28 0 8.47 Hp +110408 V0405 Lac LPB 6.35 0 6.37 Hp +110500 V0406 Lac ACYG: 7.95 0 8.02 Hp +110622 V0407 Lac ELL: 8.31 0 8.38 Hp +110699 V0408 Lac GCAS 7.86 0 8.10 Hp +110921 V0409 Lac GCAS 8.41 0 8.62 Hp +110948 V0410 Lac LB 8.47 0 8.83 Hp +110968 V0411 Lac DCEPS 7.83 0 8.07 Hp +111022 V0412 Lac LC 4.39 0 4.56 Hp +111071 V0413 Lac ELL 9.72 0 9.85 Hp +111360 V0414 Lac ACV 7.33 0 7.39 Hp +111785 V0415 Lac BE 9.22 0 9.35 Hp +111795 V0416 Lac LB 5.05 0 5.18 Hp +111877 V0417 Lac LB 8.03 0 8.21 Hp +111907 V0418 Lac LB 6.72 0 7.09 Hp +112047 V0419 Lac LB: 9.15 0 9.33 Hp +112261 V0420 Lac SRD: 7.11 0 7.18 Hp +112339 V0421 Lac LB 7.73 0 7.89 Hp +112698 V0422 Lac IA: 7.78 0 7.85 Hp +113226 V0423 Lac BE 7.97 0 8.06 Hp +113288 V0424 Lac LC 5.03 0 5.11 Hp +112887 V0442 Lac * 12.26 1 0.30 V +108774 V0443 Lac BY: 7.96 1 0.02 V G5V +109527 V0446 Lac BY 7.23 1 0.02 V 9.083 K0V +109926 V0447 Lac BY 7.50 1 0.03 V 4.4266 K1V +111590 V0457 Lac EA 9.84 0 10.04 10.02 V 48305.198 6.15727 02 B9V +48036 R Leo M 4.4 0 11.3 V 44164. 309.95 43 M6e-M8IIIe-M9.5e +49026 V Leo M 8.4 0 14.6 V 42706. 273.35 44 M5e +53265 W Leo M 8.9 0 14.8 V 43627. 391.75 35 M5.5e-M7e +47178 Y Leo EA/SD 10.09 0 13.20 0.1 V 45436.451 1.6861020 14 A5V +48405 Z Leo SRB 9.9 0 11.5 p 36717. 56.83 47 M3III-IV +49628 RR Leo RRAB 9.94 0 11.27 V 43295.402 0.4523933 13 A7-F5 +49333 RY Leo SRB 9.0 0 11.8 V 155. 47 M2e +56409 SS Leo RRAB 10.38 0 11.56 V 41781.409 0.6263441 12 A7-F6 +56785 ST Leo RRAB 10.74 0 12.02 V 27923.118 0.4779843 15 A6-F8 +51802 TX Leo EA/DM 5.66 0 5.75 5.69 V 38844.3055 2.4450566 11 A2V +52066 UV Leo EA/DW 8.90 0 9.56 9.49 V 38440.7263 0.60008478 18 G0V+G2V +51353 UY Leo LB 9.5 0 11. p M7III +52249 UZ Leo EW/KE 9.58 0 10.15 10.12 V 39800.373 0.6180428 A7 +53449 VY Leo LB: 5.69 0 6.03 V M5.5III +58203 WX Leo LB 9.42 0 9.99 B M5 +49136 XY Leo EW/KW 9.45 0 9.93 9.80 V 45074.4906 0.2840969 K0V+K0 +49204 XZ Leo EW/KE 10.6 0 11.2 11.1 p 45025.358 0.4877351 A6 +49664 YY Leo SRB 10.5 0 11.4 p 40.9 M3 +49033 AC Leo CST: 9.44 0 9.49 V K0III +56947 AI Leo LB 8.44 0 10.5 V M5 +56976 AK Leo SRB 8.36 0 9.4 V 60. M5 +53937 AM Leo EW/KW 9.25 0 9.83 9.83 V 42493.389 0.36579740 F8V +54188 AP Leo EW/KW 9.32 0 9.91 9.88 V 39536.542 0.4303576 G0V +56350 AX Leo RRAB 11.8 0 12.3 p 25244.703 0.726828 18 A2 +56742 BX Leo RRC 11. 0 11.7 p 38406.72 0.36286 40 A6 +58016 CV Leo LB 10.67 0 11.2 B K5 +51213 CX Leo ACV 5.97 0 6.15 V 7.897 A0p(Si-Cr-Sr) +49657 DD Leo SRB: 10.2 0 10.9 p M8 +51008 DE Leo SRB: 5.60 1 0.07 V M2IIIabS +46053 DF Leo SRB 6.74 0 6.95 V 70. M4III +48218 DG Leo DSCTC 6.08 0 6.12 V 0.08184505 50 A8IV +49018 DH Leo RS 7.75 0 7.94 V 43194.475 1.06950 K0Ve+B: +50156 DK Leo BY 9.87 0 10.20 V 8.05 50 M0Ve +52123 DN Leo PVTEL: 9.91 0 10.00 V +57565 DQ Leo RS 4.53 1 0.03 V +47544 DR Leo LB 5.84 0 5.98 V +53985 DS Leo BY 9.52 0 9.57 V +48540 DV Leo SR 7.78 0 8.13 V +51080 DW Leo RS 8.5 1 0.08 V +46843 DX Leo BY 7.00 1 0.10 V +48215 DY Leo RS 7.59 1 0.05 V +53020 EE Leo BY 11.64 0 11.70 V +46570 EG Leo LB 8.78 0 8.97 Hp +46689 EH Leo SRB 7.70 0 7.89 Hp +46994 EI Leo SRB 7.38 0 7.49 Hp +47733 EK Leo SRB 8.73 0 8.91 Hp +48020 EL Leo SRB 7.52 0 7.83 Hp +48292 EM Leo LB 7.06 0 7.27 Hp +48472 EN Leo LB 8.11 0 8.25 Hp +49220 EO Leo LPB: 5.59 0 5.62 Hp +49300 EP Leo SRD: 8.01 0 8.08 Hp +50072 EQ Leo LB: 9.49 0 9.65 Hp +50750 ER Leo DSCTC: 9.88 0 9.94 Hp +51585 ES Leo SRB: 5.46 0 5.56 Hp +51677 ET Leo EW: 9.60 0 9.72 Hp +52315 EU Leo LB 7.59 0 7.71 Hp +52329 EV Leo SRB 7.63 0 7.77 Hp +52553 EW Leo SRB: 9.15 0 9.57 Hp +52580 EX Leo EW 8.27 0 8.49 Hp +52999 EY Leo LB 8.55 0 8.85 Hp +53653 EZ Leo LB 8.18 0 8.31 Hp +53944 FF Leo SRB 9.35 0 9.71 Hp +54108 FG Leo SRB 7.84 0 8.01 Hp +54268 FH Leo NL: 8.33 0 8.62 Hp +54613 FI Leo LB 6.92 0 7.34 Hp +54711 FK Leo EA 8.57 0 8.85 Hp +54723 FL Leo SRD: 8.39 0 8.76 V +54766 FM Leo EA 8.54 0 8.86 Hp +54951 FN Leo LC 4.56 0 4.64 Hp +55146 FO Leo EB 8.50 0 8.73 Hp +55432 FP Leo LB: 9.93 0 10.10 Hp +55460 FQ Leo LB: 8.19 0 8.32 Hp +55545 FR Leo LB: 9.70 0 9.89 Hp +55952 FS Leo EB 9.06 0 9.25 Hp +56072 FT Leo LB: 8.81 0 8.92 Hp +56217 FU Leo LB 8.77 0 9.25 Hp +56267 FV Leo SRB 7.87 0 8.05 Hp +57126 FW Leo ACV: 7.31 0 7.38 Hp +57480 FX Leo SR: 8.91 0 9.34 Hp +57655 FY Leo SRB 8.45 0 8.59 Hp +58359 FZ Leo BY: 8.44 0 8.58 Hp +49328 GM Leo DSCTC 7.10 1 0.04 V +58314 GR Leo BY 8.87 0 8.92 B +46637 GS Leo BY 8.66 1 0.06 V 3.041 G9V +47587 GT Leo BY 8.92 1 0.04 V 10.92 K0Ve +53472 GX Leo SRS 7.71 0 7.79 B 13.96 K4III +53486 GY Leo BY 7.37 1 0.03 V 11.43 K0V +53923 GZ Leo RS 8.83 0 8.95 V 1.5264 K0V+K2V +54155 HH Leo BY 7.57 0 7.61 V 6.9 G5V +57198 HL Leo BY 7.40 1 0.06 V 37.17 G2V +48895 HN Leo GDOR 6.44 0 6.51 V 0.7753 F0V+F5:V +54156 HR Leo EB 8.94 0 9.03 8.98 V 48220.840 1.081354 F2V +55791 KV Leo GDOR: 6.34 0 6.37 V 0.45286 F3IV +57632 β Leo DSCTC 2.14 1 0.02 V +51624 Ï Leo ACYG 3.83 0 3.90 V B1Iab +47886 R LMi M 6.3 0 13.2 V 45094. 372.19 41 M6.5e-M9.0e(Tc:) +48520 S LMi M 7.5 0 14.3 V 45292. 233.83 42 M2.0e-M8.2e +48106 T LMi EA/SD 10.87 0 12.92 10.97 V 45397.368 3.019885 12 A3V +52366 RX LMi SRB 5.98 0 6.16 V 150. M4IIIa +46952 SU LMi RS: 4.54 1 0.02 V +47080 SV LMi RS: 5.39 1 0.04 V +47761 TU LMi LB 9.0 0 9.9 p +48688 TV LMi EA: 9.10 0 9.36 Hp +49271 TW LMi SRB 7.36 0 7.48 Hp +49944 TX LMi LB: 8.76 0 8.86 Hp +50358 TY LMi LB 8.53 0 8.71 Hp +50502 TZ LMi SRB 8.46 0 8.63 Hp +50951 UU LMi SRB 6.89 0 7.03 Hp +52299 UV LMi LB: 8.07 0 8.18 Hp +52465 UW LMi EA 8.44 0 8.67 Hp +52623 UX LMi DSCTC 9.16 0 9.24 Hp +52723 UY LMi LB 8.13 0 8.35 Hp +52889 UZ LMi SRD: 8.64 0 8.82 Hp +53932 VV LMi SRD 8.21 0 8.44 Hp +54003 VW LMi EW: 8.03 0 8.45 Hp +54230 VX LMi SRB 8.55 0 8.84 Hp +53355 WW LMi DSCTC 6.16 0 6.23 V +53747 XZ LMi RS: 8.49 1 0.03 V 7.019 G8V +54028 YY LMi RS: 8.96 1 0.06 V 11.53 G5V +23203 R Lep M 5.5 0 11.7 V 42506. 427.07 55 C7,6e(N6e) +28874 S Lep SRB 6.0 0 7.58 V 89.0 M6III +23636 T Lep M 7.4 0 14.3 V 41844. 368.13 47 M6e-M9e +22952 U Lep RRAB 9.84 0 11.11 V 41352.346 0.5814762 13 A7-F7 +23950 Y Lep SRB 10.3 0 11.7 p 109. M4III +24169 RX Lep SRB 5.0 0 7.4 V 60. M6.2III +27400 RY Lep EA 8.2 0 9.1 V 38315.595 F0 +28816 SS Lep ZAND 4.82 0 5.06 V A0Veq+M1III +24621 SW Lep LB 9.5 0 10. p M3 +26284 SZ Lep LB: 7.40 0 7.93 V C7,3(R8) +23755 TU Lep ACV 7.07 1 0.10 V +26714 TW Lep RS: 7.0 1 0.32 V +24827 TX Lep ACV 6.54 1 0.04 V +24430 UU Lep RS 6.91 0 7.02 V +29365 UV Lep ACVO 6.77 1 0.01 V +23112 UW Lep LB: 9.84 0 10.04 Hp +23217 UX Lep LB: 9.47 0 9.67 Hp +23842 UY Lep LB: 9.68 0 9.85 Hp +23928 UZ Lep LB: 9.56 0 9.72 Hp +24318 VV Lep LB: 8.44 0 8.52 Hp +24707 VW Lep LB: 7.91 0 8.02 Hp +24840 VX Lep LB 6.76 0 6.99 Hp +25234 VY Lep LB: 9.08 0 9.19 Hp +25981 VZ Lep SRD 6.76 0 6.86 Hp +26243 WW Lep LPB 6.76 0 6.80 Hp +26612 WX Lep EB 7.93 0 8.02 Hp +27229 WY Lep LB 6.39 0 6.55 Hp +27318 WZ Lep LB 7.26 0 7.55 Hp +27748 XX Lep ACV 7.82 0 7.86 Hp +28094 XY Lep LB: 7.75 0 7.85 Hp +28973 XZ Lep LPB 6.60 0 6.62 Hp +28984 YY Lep SRB: 5.60 0 5.82 Hp +24825 YZ Lep LPB 6.30 0 6.36 Hp +28434 AC Lep GDOR 6.28 0 6.30 Hp +25486 AF Lep RS 6.26 0 6.35 V 1. F7V+G5V +28778 AW Lep GDOR: 7.65 0 7.69 Hp 0.4199 A9V +24305 μ Lep ACV 2.97 0 3.41 V 2. B9IIIp(Hg-Mn) +75144 S Lib M 7.5 0 13.0 V 41883. 192.9 49 M1.0e-M6.0e +74350 Y Lib M 7.6 0 14.7 V 44017. 275.7 41 M5e-M8.2e +75393 RS Lib M 7.0 0 13.0 V 42154. 217.65 48 M7e-M8.5e +76152 RU Lib M 7.2 0 14.4 V 41840. 316.56 46 M5e-M6e +71380 RV Lib EA/D/RS 9.02 0 9.50 9.44 V 30887.236 10.722164 14 G5 +77471 SS Lib EA/KE: 10.4 0 11.3 10.8 V 41155.660 1.4379983 20 A5 +76086 UZ Lib FKCOM 9.16 0 9.62 V 43222.15 4.75 K0IIIe +77663 VY Lib RRAB 11.12 0 12.14 V 41144.370 0.5339412 14 A7:-F7 +76050 VZ Lib EW/KW 10.13 0 10.63 10.55 V 44788.5901 0.35826334 F5 +74063 YY Lib M 9. 2 12. p 229.53 Me +76313 CG Lib RRC 11.20 0 11.80 V 41153.324 0.306850 32 A4-G0 +73315 EH Lib DSCT 9.35 0 10.08 V 33438.6082 0.0884132445 32 A5-F3 +74765 ES Lib EB/KE 7.10 0 7.57 7.33 V 40329.4669 0.8830356 A2-3V +78207 FX Lib GCAS 4.74 0 4.96 V B5IIIpe +73213 FY Lib SRB 7.06 0 7.78 V 120. M5III +74982 FZ Lib LB 6.73 0 7.24 V M4III +76075 GG Lib SR: 6.83 0 6.93 V M5:III +75325 GX Lib RS 7.31 1 0.08 V +75848 GZ Lib ACVO 6.66 0 6.71 V +74145 HI Lib ACVO 7.48 1 0.00 V +70945 HL Lib ELL: 6.93 0 7.02 V +75694 HM Lib SR: 7.42 0 7.63 V +71253 HN Lib BY 10.30 0 10.33 V +74995 HO Lib BY 10.56 0 10.58 V +78078 HR Lib DSCTC 6.13 1 0.02 V +70932 HS Lib LB 8.32 0 8.69 Hp +72209 HT Lib LB: 9.32 0 9.44 Hp +72566 HU Lib SRD 8.71 0 8.96 Hp +73445 HV Lib LB 7.89 0 8.10 Hp +73465 HW Lib RR: 9.09 0 9.22 Hp +73604 HX Lib LB: 8.45 0 8.56 Hp +73710 HY Lib DSCT 7.78 0 7.88 Hp +73984 HZ Lib LB: 8.02 0 8.12 Hp +74005 II Lib SRB 8.05 0 8.19 Hp +74119 IK Lib LB: 7.91 0 8.02 Hp +74127 IL Lib E 7.64 0 7.76 Hp +74245 IM Lib E: 9.66 0 10.01 Hp +74825 IN Lib RR: 7.33 0 7.42 Hp +74838 IO Lib RS: 9.34 0 9.46 Hp +75563 IP Lib BY: 9.97 0 10.15 Hp +75715 IQ Lib CEP: 9.33 0 9.42 Hp +75836 IR Lib EW: 8.72 0 8.83 Hp +75992 IS Lib LB: 9.11 0 9.28 Hp +76161 IT Lib EA: 9.01 0 9.51 Hp +76243 IU Lib LPB 5.11 0 5.16 Hp +76480 IV Lib E: 8.46 0 9.00 Hp +76694 IW Lib RR: 9.45 0 9.56 Hp +76828 IX Lib LB: 8.54 0 8.65 Hp +76909 IY Lib LB: 7.90 0 8.01 Hp +77861 IZ Lib SRB 7.52 0 7.63 Hp +72428 KL Lib DSCTC 8.79 1 0.02 V +71743 KU Lib BY 7.36 0 7.39 Hp 9.35 G6V +73184 KX Lib BY 5.72 1 0.04 V K4V +77707 KY Lib RS 8.93 1 0.04 V 13.62 K2V +73708 NW Lib LB 10.23 0 10.54 V C4,4 +73473 δ Lib EA/SD 4.91 0 5.90 4.98 V 42960.6994 2.3273543 23 A0IV-V +77811 λ Lib ELL 5.03 1 0.02 V +73714 σ Lib SRB 3.20 0 3.46 V 20. M3.5IIIa +73381 V Lup LB: 9.16 0 9.26 V C5,5(Nb) +71386 Z Lup LB 10.5 0 12.6 p C4,3-C6,3(Na) +70339 RS Lup LB 10.7 0 12.30 B C(Nb) +78094 RU Lup INT 9.6 0 13.4 p pec(T) +70590 RW Lup M 9.9 0 13.0 p 28766. 197. 36 MB +78317 RY Lup INSB 9.9 0 13.0 p G0Vea +77023 FQ Lup L: 9.5 0 10.5 p +75234 FW Lup RR 8.82 0 9.22 V 42171.377 0.4841712 23 F5IV +74950 GG Lup EB/DM 5.49 0 6.0 5.8 B 34532.325 2.164175 B7V +75430 GH Lup CEP 7.55 0 7.83 V 41125.4 9.285 G2Iab +73764 GM Lup LB: 6.38 0 6.7 V M6III +75727 GO Lup SRB 6.98 0 7.19 V M4III +74321 HP Lup EA 9.27 0 9.52 V +75558 HQ Lup ACV 7.37 0 7.38 V +74066 HR Lup ACV 5.76 0 5.81 V +74049 HS Lup E:/RS: 7.74 1 0.04 V +77157 HT Lup INT 10.26 0 10.40 V +70270 HX Lup ELL: 6.09 1 0.06 V +73937 HZ Lup ACV 5.96 1 0.07 V +78053 IM Lup INT 11.73 0 12.09 y +78435 IO Lup DSCTC 6.65 1 0.03 V +70530 IP Lup ACV 7.95 0 8.04 Hp +70840 IQ Lup E: 10.40 0 10.72 Hp +71128 IR Lup LB: 8.49 0 8.60 Hp +71666 IS Lup LPB 9.29 0 9.33 Hp +71727 IT Lup ACV 6.56 0 6.60 Hp +73479 IU Lup EA 8.78 0 9.10 Hp +73526 IV Lup LB 8.03 0 8.37 Hp +73763 IW Lup SRB 8.83 0 9.00 Hp +74152 IX Lup LB: 8.30 0 8.40 Hp +74166 IY Lup LB: 8.23 0 8.35 Hp +74252 IZ Lup SRB 8.30 0 8.45 Hp +74369 KK Lup LB 7.59 0 7.87 Hp +74714 KL Lup LB: 8.23 0 8.34 Hp +74807 KM Lup LB: 7.57 0 7.69 Hp +75035 KN Lup BY: 9.21 0 9.33 Hp +75207 KO Lup LB: 6.89 0 6.99 Hp +75620 KP Lup LB: 7.93 0 8.18 Hp +75818 KQ Lup E: 6.50 0 6.54 Hp +75924 KR Lup BY: 8.87 0 8.98 Hp +76044 KS Lup LB 8.89 0 8.98 Hp +76371 KT Lup BE 4.48 0 4.50 Hp +76762 KU Lup ACV 6.93 0 6.99 Hp +76987 KV Lup EB 8.75 0 8.97 Hp +77199 KW Lup BY: 9.40 0 9.58 Hp +77462 KX Lup LB: 8.34 0 8.44 Hp +77657 KY Lup ACV 8.88 0 8.99 Hp +77691 KZ Lup SRB 8.30 0 8.84 Hp +78533 LL Lup ACV: 7.41 0 7.47 Hp +78756 LM Lup ACV 6.90 0 6.94 Hp +78781 LN Lup SRB 7.37 0 7.72 Hp +76485 NX Lup GDOR 7.95 0 8.03 Hp F0V +72178 OO Lup EA 8.66 0 8.75 8.75 V 48347.805 7.06114 04 F3/F5V +73780 OR Lup EA 9.28 0 9.55 9.53 V 48681.670 7.55596 04 G0IV/V +74348 OY Lup EA 8.94 0 9.05 9.03 V 52878.610 6.14395 04 A1mA3-A6 +77972 PP Lup EA 8.67 0 9.06 8.82 V 53170.910 29.6924 04 A7+F +75787 V0376 Lup BCEP: 8.17 0 8.20 Hp 0.564882 B9III +71860 α Lup BCEP 2.29 0 2.34 V 37418.395 0.2598466 B1.5III +76297 γ Lup ELL: 2.69 0 2.71 Hp +75141 δ Lup BCEP 3.20 0 3.24 V 41045.172 0.16547 50 B1.5IV +71121 σ Lup ELL: 4.42 1 0.02 V +33824 R Lyn M 7.2 0 14.3 V 45175. 378.75 44 S2.5,5e-S6,8e: +41058 T Lyn M 8.8 0 13.5 V 43200. 406.0 47 C5,2e-C7,1e(NOe) +30945 V Lyn SRB 9.5 0 12.0 p M5III-IV +40546 W Lyn M 7.5 0 14.0 V 42050. 295.2 M6 +36288 Y Lyn SRC 7.8 0 10.3 p 110. M6SIb-II +39878 Z Lyn CST: 8.8 0 p A2 +30651 RR Lyn EA/DM 5.52 0 6.03 5.90 V 33153.8623 9.945079 04 A7Vm+F3V +39433 SV Lyn SRB 8.2 0 9.1 p 70. M5III +39771 SW Lyn EA/DW 9.51 0 10.20 9.65 V 43975.390 0.6440634 12 F2V +39960 SZ Lyn DSCT 9.08 0 9.72 V 38124.3982 0.120534920 30 A7-F2 +44428 TT Lyn RRAB 9.42 0 10.21 V 36651.3560 0.597434355 17 F0-F8 +36750 TV Lyn RRC 11.24 0 11.66 V 40950.922 0.24065119 42 A6 +37805 TW Lyn RRAB 11.0 0 12.3 p 45022.458 0.481860 17 F6-F8: +41782 TZ Lyn ACV 6.65 0 6.79 V 37311.12 6.80054 56 A0p(Eu-Cr-Sr) +44455 UV Lyn EW/KW 9.41 0 9.81 9.78 V 40271.5032 0.41498088 F8 +29919 UW Lyn LB: 4.95 1 0.11 V M3IIIab +44481 UX Lyn SRB: 6.60 0 6.78 V M6III +34912 UY Lyn LB: 5.47 0 5.55 V M3IIIab +30060 UZ Lyn E:+DSCTC: 4.43 0 4.73 V A2V +36626 VV Lyn UV+BY: 10.53 0 10.60 V M3.5Ve +39348 AE Lyn RS 6.49 1 0.06 V +45649 BE Lyn DSCT 8.60 0 9.00 V +45963 BF Lyn BY 7.72 1 0.1 V +36627 BL Lyn BY 11.76 0 11.80 V +38003 BM Lyn RS+E 7.70 1 0.25 V +41075 BN Lyn SRD: 4.21 0 4.27 V +31359 BQ Lyn SRD 6.48 0 6.69 Hp +33100 BR Lyn SRB: 7.39 0 7.95 Hp +33707 BS Lyn LB: 8.36 0 8.46 Hp +34343 BT Lyn SRB 9.18 0 9.45 Hp +34362 BU Lyn SRB: 8.61 0 8.80 Hp +34435 BV Lyn LB: 8.13 0 8.25 Hp +35525 BW Lyn SRB 8.22 0 8.41 Hp +35977 BX Lyn LB: 8.37 0 8.48 Hp +36334 BY Lyn SRB: 6.60 0 6.70 Hp +36545 BZ Lyn SRB: 7.56 0 7.72 Hp +36965 CC Lyn EW 6.42 0 6.52 Hp +37615 CD Lyn E: 9.83 0 10.37 Hp +37707 CE Lyn SRB 7.20 0 7.66 Hp +37748 CF Lyn E 9.61 0 9.93 Hp +37847 CG Lyn LB: 8.65 0 8.77 Hp +37973 CH Lyn SRB 7.93 0 8.07 Hp +37999 CI Lyn SRD 8.70 0 8.86 Hp +38257 CK Lyn LB 6.81 0 6.94 Hp +38684 CL Lyn EA 9.78 0 10.37 Hp +38738 CM Lyn LB 8.48 0 8.83 Hp +39250 CN Lyn EA 9.07 0 9.58 Hp +39944 CO Lyn DSCTC 6.88 0 6.94 Hp +40135 CP Lyn LB: 8.11 0 8.21 Hp +40230 CQ Lyn DSCT 8.04 0 8.14 Hp +40651 CR Lyn DSCTC 7.70 0 7.77 Hp +40641 CS Lyn EB 8.49 0 8.67 Hp +40931 CT Lyn SRB 7.97 0 8.11 Hp +41149 CU Lyn LB 8.76 0 8.97 Hp +41302 CV Lyn SRB: 8.61 0 8.73 Hp +42554 CW Lyn EB: 9.61 0 9.85 Hp +42744 CX Lyn LB 7.48 0 7.65 Hp +43685 CY Lyn ELL: 6.15 0 6.18 Hp +43963 CZ Lyn SRB 7.92 0 8.07 Hp +38723 DD Lyn DSCTC 6.23 1 0.03 V +47053 DI Lyn EA 6.79 0 6.87 V +37863 DO Lyn GDOR 7.17 1 0.05 V +37946 DU Lyn SRB 5.18 1 0.13 V +36704 DX Lyn BY 7.68 1 0.02 V 8.03 G5V +40395 EE Lyn DSCTC 9.12 0 9.14 V 0.05 F0 +40791 EF Lyn GDOR 7.23 0 7.27 Hp 0.4229 A5 +45290 EI Lyn SXARI 5.32 1 0.03 V 3.834 B8IIIp +38458 ET Lyn DSCTC 7.38 0 7.42 V 0.184373 gF1 +92862 R Lyr SRB 3.88 0 5.0 V 46. M5III +90883 T Lyr LB 7.84 0 9.6 V C6,5(R6) +89419 W Lyr M 7.3 0 13.0 V 45084. 197.88 48 M2e-M8e +95497 RR Lyr RRAB 7.06 0 8.12 V 42923.4193 0.56686776 19 A5.0-F7.0 +94438 SS Lyr M 8.4 0 14.0 V 45090. 346.33 M5IIIe +89498 TZ Lyr EB/D 10.87 0 11.85 11.05 V 44784.4093 0.5288269 F5V +91373 XY Lyr LC 5.80 0 6.35 V M4-5Ib-II +91015 CC Lyr CWA 11.65 0 12.45 V 44045.09 24.16 21 F0p +91634 CN Lyr RRAB 11.07 0 11.76 V 44486.3338 0.41138232 22 F0-F5 +92221 EZ Lyr RRAB 10.8 0 11.8 V 33914.3357 0.52526769 10 A7-F4 +91703 FI Lyr SRB 9.6 0 10.4 V 146. M +94335 FL Lyr EA/DM 9.27 0 9.89 9.52 V 38221.5525 2.1781544 08 G0V +91774 HK Lyr LB 7.8 0 9.6 V C6,4(N4) +95032 HO Lyr M 11.4 0 14.0 p 30584. 100.4 40 M2e +90053 IO Lyr RRAB 11.27 0 12.24 V 39618.9315 0.57712278 18 F1-F6 +93989 V0398 Lyr LB 7.30 0 7.57 V M6 +94311 V0471 Lyr ACV 5.91 0 5.98 V 41449.99 1.160898 B9p(Si) +94685 V0473 Lyr DCEPS: 5.99 0 6.35 V 39320.6859 1.49078 50 F6Ib-II +93926 V0478 Lyr RS 7.63 1 0.03 V 44506.76 2.185 G6V +93817 V0511 Lyr RS 8.92 1 0.08 V +89645 V0527 Lyr LB: 9.26 0 9.60 Hp +90170 V0528 Lyr SRB 6.61 0 6.77 Hp +90293 V0529 Lyr ACV 7.32 0 7.35 Hp +90723 V0530 Lyr LB: 7.40 0 7.51 Hp +90880 V0531 Lyr E: 8.27 0 8.63 Hp +90970 V0532 Lyr BE 6.44 0 6.54 Hp +91250 V0533 Lyr EB 6.26 0 6.38 Hp +91359 V0534 Lyr ACYG: 8.08 0 8.42 Hp +91671 V0535 Lyr LPB 7.36 0 7.40 Hp +91789 V0536 Lyr LB 7.97 0 8.27 Hp +92048 V0537 Lyr LB: 7.89 0 8.02 Hp +92335 V0538 Lyr LB 7.11 0 7.45 Hp +92537 V0539 Lyr EA 7.26 0 7.31 Hp +92513 V0540 Lyr LB 7.77 0 7.94 Hp +92700 V0541 Lyr LB 6.44 0 6.66 Hp +93104 V0542 Lyr EA 5.83 0 5.95 Hp +93177 V0543 Lyr BCEP: 6.10 0 6.20 Hp +93214 V0544 Lyr DSCTC 7.51 0 7.54 Hp +93210 V0545 Lyr LPB: 6.36 0 6.38 Hp +93222 V0546 Lyr LB: 7.78 0 7.88 Hp +93309 V0547 Lyr LB 6.48 0 6.58 Hp +93359 V0548 Lyr SRB 8.49 0 8.75 Hp +93633 V0549 Lyr DSCTC: 8.11 0 8.14 Hp +93808 V0550 Lyr LPB 6.43 0 6.47 Hp +93907 V0551 Lyr ELL: 7.11 0 7.17 Hp +94354 V0552 Lyr LB 7.05 0 7.18 Hp +94474 V0553 Lyr LB 9.51 0 10.19 Hp +94619 V0554 Lyr ACV: 8.06 0 8.14 Hp +94862 V0555 Lyr LB 8.45 0 8.59 Hp +95459 V0556 Lyr EB 8.09 0 8.30 Hp +95537 V0557 Lyr SRD 7.22 0 7.46 Hp +95673 V0558 Lyr BE 6.22 0 6.30 Hp +89771 V0590 Lyr BY 8.28 1 0.02 V 4.825 K0V +92122 V0595 Lyr BY 8.10 1 0.02 V 10.973 G5V +91262 α Lyr DSCTC -0.02 0 0.07 V 0.19 A0V +92420 β Lyr EB 3.25 0 4.36 3.85 V 08247.950 12.913834 B8II-IIIep +93903 ι Lyr BE 5.20 0 5.27 Hp +19424 U Men SRA 8.0 0 10.9 p 36065. 407.28 Me +25472 TY Men EW/K 8.08 0 8.56 8.47 V 42054.7973 0.46166701 A3-4V +25776 TZ Men EA/D 6.19 0 6.87 6.36 V 39190.34 8.56898 04 A1III+B9V: +25760 UX Men EA/DM 8.8 0 9.57 9.47 p 41984.6438 4.181100 05 G1V+G1V +26169 WX Men LB: 5.72 1 0.15 V M2-3III +22260 XZ Men DSCTC(B) 7.85 1 0.03 V A3p +23106 YY Men FKCOM: 8.60 0 8.89 V +24085 YZ Men RS 7.69 0 7.75 V +30582 AE Men RS 8.24 0 8.33 V +17955 AI Men SRB 7.42 0 7.48 Hp +18179 AK Men DSCT 9.13 0 9.27 Hp +25864 AL Men EB 8.90 0 9.21 Hp +28587 AM Men LB: 8.48 0 8.58 Hp +28440 AN Men EW 9.36 0 9.54 Hp +29964 AO Men BY: 9.96 0 10.18 Hp +31678 AP Men SRB 7.64 0 7.98 Hp +26264 ι Men ELL: 6.00 0 6.05 6.05 V 41979.85 5.288 B8II +101985 R Mic M 8.3 0 13.8 V 43311. 138.62 46 M4e +100935 T Mic SRB 7.7 0 9.6 p 347. M6e +101063 U Mic M 7.0 0 14.4 V 39540. 334.29 39 M5e-M7e +105638 V Mic M 9.4 0 14.0 p 30044. 381.15 M3e-M6e +105026 Z Mic RRAB 11.23 0 11.86 V 41597.376 0.5869340 15 F0-F8II +104986 RR Mic CWA 11.01 0 11.86 V 44139.57 31.52 19 +103684 ZZ Mic DSCT(B:) 9.27 0 9.69 V 40442.8443 0.0671835 40 A3-A8IV +102141 AT Mic UV 11.4 0 12.90 U M4.5Ve+M4.5Ve +102409 AU Mic BY+UV 8.59 0 8.96 V 42720.75 4.865 M1.6Ve +102096 AV Mic LC: 6.25 0 6.35 V M3II +105249 AW Mic RRC: 9.04 0 9.13 V 0.479 B9 +105090 AX Mic UV 9.21 0 9.31 U M0Ve +104861 BM Mic RS 8.23 0 8.45 V +104894 BN Mic RS 7.68 0 7.94 V +102626 BO Mic BY 9.2 1 0.21 V +105912 BR Mic BCEP 8.78 0 8.82 V +101678 BS Mic LB 8.64 0 9.02 Hp +101977 BT Mic EB 10.14 0 10.41 Hp +101968 BU Mic DSCTC 7.28 0 7.32 Hp +102256 BV Mic EA: 9.86 0 10.20 Hp +102355 BW Mic SRD: 9.19 0 9.31 Hp +102412 BX Mic EB: 6.91 0 6.96 Hp +103168 BY Mic LB: 6.49 0 6.52 Hp +103625 BZ Mic LB 8.72 0 8.90 Hp +105058 CC Mic E: 9.76 0 10.17 Hp +105464 CD Mic E: 8.59 0 9.04 Hp +105648 CE Mic BY: 11.17 0 11.39 Hp +105788 CF Mic LB 7.28 0 7.90 Hp +31978 S Mon IA: 4.62 0 4.68 V O7.5III-Vf +30541 T Mon DCEP 5.58 0 6.62 V 43784.615 27.024649 27 F7Iab-K1Iab+A0V +36521 U Mon RVB 6.1 0 8.8 p 38496. 91.32 22 F8eVIb-K0pIb(M2) +30326 V Mon M 6.0 0 13.9 V 44972. 340.5 46 M5e-M8e +33441 X Mon SRA 6.8 0 10.2 V 42446. 155.8 51 M1eIII-M6ep +39877 RT Mon SRB 8.13 0 10.3 V 107. 49 M3-4III +33163 RU Mon EA/DM 10.33 0 11.18 11.06 V 41743.1947 3.584749 06 B9p +33550 RV Mon SRB 9.71 0 11.9 B 131.5 C4,4-C6,2(Nb/R9) +31383 RW Mon EA/SD 9.26 0 11.51 9.45 V 33680.4481 1.90609412 15 B9V+F8V-G0IV +36394 RX Mon M 9.6 2 13.0 p 35800. 345.7 M6e-M9 +34326 RY Mon SRA 7.5 0 9.2 V 27440. 455.7 43 C5,5-C7,4:(N5/R) +30219 SV Mon DCEP 7.61 0 8.88 V 43794.338 15.232780 38 F6-G4 +30701 SW Mon SRB 9.05 0 10.9 V 112. M4III-M6 +32915 SZ Mon RVA 9.66 0 10.75 10.55 V 40550.0 32.685 F9-K5 +36043 TT Mon M 8.0 2 13.5 p 38323. 323.17 M5e-M8 +38523 TU Mon EA/SD 9.0 0 11.7 9.1 p 34068.1230 5.0490291 15 B5V+A5III: +32854 TX Mon DCEP 10.67 0 11.36 V 35838.977 8.701731 36 F6-G2 +33520 TZ Mon DCEP 10.43 0 11.18 V 37633.801 7.42818 30 F6-G1 +39042 UX Mon EA+DSCT: 8.22 0 9.16 8.52 V 33328.8533 5.9045505 17 A6Vep+G0-G2III-I +34003 VV Mon EA/D/RS 9.4 0 9.95 9.55 V 26037.543 6.050829 11 K0IV+G2 +33791 AC Mon DCEP 9.75 0 10.47 V 37683.203 8.01425 30 F5-G1 +34299 AO Mon EA/DM 9.6 0 10.23 10.16 V 40588.3272 1.884660 17 B3+B5 +35600 AR Mon EA/GS/RS 8.62 0 9.47 9.03 V 26606.408 21.20911 08 G8III+K0III +33237 AU Mon EA/DS: 8.11 0 9.06 8.2 V 42801.3752 11.1130371 10 B5ea+F0 +31019 AX Mon * 6.59 0 6.94 V 39550. 232.5 B1eqIV+K1II-III +31905 BE Mon DCEP 10.19 0 10.88 V 41880.240 2.705510 26 F4-G0 +33369 BG Mon SRB 9.2 0 10.4 V 31881. 30. C5,2(N) +31624 CV Mon DCEP 9.90 0 10.70 V 42773.136 5.378898 26 +33014 EK Mon DCEP 10.77 0 11.42 V 40896.54 3.957941 31 +30301 FU Mon SR 11.6 0 12.7 p 29350. 309.8 C8,0J(CSe) +38898 FW Mon EA/SD: 9.4 0 10.6 0.04 p 27562.220 3.8735903 13 B5+F2 +33059 GY Mon LB 9.4 0 11.6 p C6,3(N3/R8) +30351 IM Mon EB/KE 6.40 0 6.49 6.47 B 33340.168 1.190243 B5Vp+B7 +32520 MR Mon LB 9.6 0 11.2 p M3-M5 +32621 PZ Mon ISB: 9.6 0 11.1 p K2Ve +34421 V0465 Mon DCEP 10.17 0 10.77 V 41698.687 2.713176 38 G0 +28321 V0474 Mon DSCT 5.93 0 6.36 V 41661.1668 0.13612600 F2IV +32397 V0505 Mon EB/GS/D 7.15 0 7.65 7.55 V 44635.318 53.7805 B5eaIb+B5 +32516 V0508 Mon DCEP 10.22 0 10.74 V 41732.070 4.133608 26 +33530 V0523 Mon SRB 6.95 0 7.45 V 45. MB +33874 V0526 Mon DCEPS 8.45 0 8.78 V 40286.290 2.674985 48 F6II +34234 V0569 Mon BCEP 6.42 0 6.53 V 0.267 B0V +34724 V0571 Mon DSCTC 5.43 0 5.50 V F2V +30920 V0577 Mon UV 12.5 0 13.3 B M4.5Ve +32838 V0592 Mon ACV 6.16 0 6.32 V 33942.98 2.9760 A2p(Sr-Cr) +32627 V0613 Mon SRB: 7.64 0 8.5 V M2(S5,1) +33794 V0614 Mon SRB 7.01 0 7.36 V 60. C4,5J(R5) +39264 V0635 Mon EA/DM 7.6 0 8.1 p 29658.375 1.807805 F5+A2 +33971 V0637 Mon BCEP 4.96 0 5.01 V 43496.1169 0.19120 B1IV-Vea +29401 V0638 Mon ACV 6.16 0 6.18 V 43852.00 0.724 50 B9p(Hg-Mn) +31646 V0640 Mon * 6.04 0 6.08 V O8V+O8f +31939 V0641 Mon ELL 8.46 1 0.07 V 43214.577 1.304054 B1.5IV+B2V +33436 V0644 Mon GCAS 6.88 0 6.98 V B0-1V-IVeq+K +39211 V0645 Mon FKCOM 4.68 1 0.02 V 43100.000 0.207878 50 K4III +34049 V0646 Mon ACV 8.85 0 8.92 V 44230.732 11.978 A0p(Sr-Eu) +30793 V0648 Mon ACV 7.35 0 7.39 V +34541 V0651 Mon * 11.29 0 15.28 V +29323 V0653 Mon ACV 6.19 1 0.04 U +30789 V0682 Mon ACV 7.65 0 7.73 U +31766 V0689 Mon ACYG 6.19 0 6.26 V +39172 V0695 Mon BE 6.48 0 6.55 V +28744 V0696 Mon * 5.12 0 5.18 B +31235 V0700 Mon INA 8.62 0 8.91 V +32682 V0715 Mon LPB: 5.34 1 0.18 U +28215 V0717 Mon LB 7.27 0 7.50 Hp +29847 V0718 Mon LPB 8.08 0 8.13 Hp +30185 V0719 Mon LB: 7.14 0 7.23 Hp +30380 V0720 Mon LC: 9.60 0 9.83 Hp +30407 V0721 Mon LB 6.18 0 6.26 Hp +30806 V0722 Mon E: 7.84 0 7.99 Hp +30891 V0723 Mon SRD: 8.37 0 8.51 Hp +30909 V0724 Mon SRB 7.88 0 8.14 Hp +30992 V0725 Mon BE 8.87 0 9.01 Hp +30993 V0726 Mon LPB 7.93 0 7.97 Hp +31065 V0727 Mon EB 7.88 0 7.99 Hp +31199 V0728 Mon BE 8.03 0 8.12 Hp +31363 V0729 Mon SRB 6.72 0 6.90 Hp +31371 V0730 Mon EA: 8.85 0 8.95 Hp +31697 V0731 Mon ACYG: 6.16 0 6.22 Hp +31739 V0732 Mon LPB: 8.16 0 8.26 Hp +31894 V0733 Mon BE 8.61 0 8.83 Hp +31906 V0734 Mon ACV 8.49 0 8.55 Hp +31934 V0735 Mon ACV: 7.50 0 7.54 Hp +31925 V0736 Mon LB 6.90 0 7.04 Hp +32088 V0737 Mon BE 8.81 0 8.92 Hp +32187 V0738 Mon SRB 9.72 0 9.98 Hp +32586 V0739 Mon BE 8.94 0 9.04 Hp +32745 V0740 Mon ACV 7.28 0 7.34 Hp +32839 V0741 Mon LPB: 6.84 0 6.88 Hp +32947 V0742 Mon BE 6.89 0 6.94 Hp +32923 V0743 Mon GCAS 6.57 0 6.87 V +33267 V0744 Mon BE: 7.61 0 7.85 Hp +33261 V0745 Mon EA 7.69 0 7.99 Hp +33361 V0746 Mon BE 8.04 0 8.14 Hp +33437 V0747 Mon BE: 8.02 0 8.21 Hp +33822 V0748 Mon LB: 8.59 0 8.73 Hp +34032 V0749 Mon GCAS: 7.08 0 7.25 Hp +34116 V0750 Mon GCAS 6.92 0 7.22 V +34385 V0751 Mon SRB 7.85 0 7.99 Hp +34401 V0752 Mon DSCTC: 6.99 0 7.01 Hp +34684 V0753 Mon EB: 8.30 0 8.82 Hp +34807 V0754 Mon ACV: 8.70 0 8.79 Hp +35300 V0755 Mon LPB 7.18 0 7.23 Hp +35475 V0756 Mon LB: 7.12 0 7.29 Hp +35669 V0757 Mon BE: 6.49 0 6.58 Hp +35810 V0758 Mon LB 8.96 0 9.25 Hp +35831 V0759 Mon ACV: 8.68 0 8.80 Hp +36004 V0760 Mon LB 8.56 0 8.82 Hp +36093 V0761 Mon E: 8.36 0 8.44 Hp +36495 V0762 Mon LB: 8.81 0 8.91 Hp +36969 V0763 Mon BE 7.70 0 7.85 Hp +37126 V0764 Mon RRC 7.13 0 7.20 Hp +37294 V0765 Mon LB: 11.12 0 11.49 Hp +37466 V0766 Mon LB 8.25 0 8.39 Hp +38242 V0767 Mon LB 9.53 0 9.97 Hp +38728 V0768 Mon LB: 10.24 0 10.42 Hp +39017 V0769 Mon EB: 7.03 0 7.09 Hp +39541 V0770 Mon SRB: 7.37 0 7.46 Hp +39844 V0771 Mon LB: 8.15 0 8.26 Hp +39857 V0772 Mon CEP: 10.22 0 10.38 Hp +39927 V0773 Mon E: 7.59 0 7.67 Hp +39997 V0774 Mon LB 7.78 0 7.90 Hp +40025 V0775 Mon LB 7.57 0 7.73 Hp +30089 V0777 Mon R: 8.78 0 8.94 V +36419 V0827 Mon ACV 7.96 0 8.00 V +32475 V0839 Mon GDOR: 7.5 1 0.01 V +31069 V0848 Mon BY 8.94 1 0.02 V 19.98 K2IV-V +31849 V0850 Mon BY 9.37 1 0.03 V 9.99 K3V +34095 V0862 Mon BY 9.08 1 0.02 V 10.88 G5V +36827 V0867 Mon BY 8.16 1 0.02 V 4.76 K2V +37349 V0869 Mon BY 7.18 1 0.02 V K2Ve +33225 V0878 Mon EB 8.11 0 8.18 8.14 V 48574.663 0.697461 K0 +33303 V0880 Mon EW 8.21 0 8.41 8.41 V 52232.752 0.372457 G0 +33538 V0883 Mon EA 8.71 0 8.86 8.77 V 48701.550 50.363 02 F0 +37455 V0891 Mon EA 8.12 0 8.33 8.30 V 48196.000 31.4204 02 B9.5/A0IV +33513 V0920 Mon EA 7.47 0 7.54 7.48 V 48356.79 6.7664 05 A2:V:m+G8IIIe +33891 V0926 Mon SRC 6.50 0 6.70 V 39. M1Ib+A0 +34355 V0930 Mon EB 8.32 0 8.41 8.40 V 51889.743 2.35510 B3II/III +30867 β Mon BE 3.77 0 3.84 Hp +61981 R Mus DCEP 5.93 0 6.73 V 26496.288 7.510211 30 F7Ib-G2 +59551 S Mus DCEP 5.89 0 6.49 V 40299.42 9.66007 49 F6Ib-G0 +65166 T Mus SRB 9.4 0 12.0 p 93. C(Np) +63911 Y Mus RCB 10.5 0 12.1 p Fp +57260 RT Mus DCEP 8.57 0 9.32 V 43290.39 3.086131 27 F8 +56196 TU Mus EB/KE 8.17 0 8.75 8.65 V 41699.8270 1.3872833 O8.5Vn+O8 +57884 UU Mus DCEP 9.13 0 10.28 V 36208.270 11.63641 37 F7/G0p +61404 BO Mus LB 5.85 0 6.56 V M6II-III +58504 DZ Mus EA/D 8.3 0 8.9 p 18093.728 3.247619 B8/9IV-V +62981 EF Mus LB: 8.0 0 8.8 p K1II/III +65755 EZ Mus ACV 6.19 1 0.09 V 43172.57 4.3127 50 B8Vp(Si) +61796 FH Mus ELL: 6.26 1 0.03 0.03 V 0.58 B8V +58998 GS Mus ACYG 7.34 0 7.55 V +56862 GT Mus E:/RS 5.08 0 5.21 V +56144 KO Mus SRB: 8.52 0 8.85 Hp +56252 KP Mus BE 8.55 0 8.68 Hp +56246 KQ Mus LPB 6.92 0 6.98 Hp +56379 KR Mus E 6.68 0 6.87 Hp +57928 KS Mus LB: 8.07 0 8.17 Hp +58719 KT Mus LC: 7.76 0 8.10 Hp +59665 KU Mus EB: 9.06 0 9.26 Hp +59959 KV Mus BE: 8.46 0 8.61 Hp +60862 KW Mus LB: 9.18 0 9.30 Hp +61703 KY Mus ACYG: 6.24 0 6.30 Hp +61751 KZ Mus BCEP 9.02 0 9.10 Hp +61882 LL Mus EA 8.93 0 9.34 Hp +62247 LM Mus SRB 6.99 0 7.19 Hp +62339 LN Mus EB 9.19 0 9.46 Hp +62403 LO Mus BY: 8.61 0 8.72 Hp +62588 LP Mus LB: 8.45 0 8.56 Hp +62801 LQ Mus EA 9.08 0 9.78 Hp +63154 LR Mus LB: 8.13 0 8.25 Hp +63688 LS Mus BE 5.90 0 6.01 Hp +65398 LT Mus EB: 7.80 0 7.92 Hp +65693 LU Mus BE 9.17 0 9.28 Hp +65848 LV Mus BE 7.65 0 7.78 Hp +66572 LW Mus DSCT 9.22 0 9.36 Hp +66683 LX Mus EA 8.85 0 9.03 Hp +66783 LY Mus LB 6.55 0 6.97 Hp +60944 MO Mus ACYG 7.37 0 7.42 Hp +57032 MR Mus EA 8.41 0 8.53 8.53 V 48009.675 3.115733 A2V+F6V +61585 α Mus BCEP 2.68 0 2.73 V 0.0903 B2IV-V +61199 γ Mus LPB 3.78 0 3.80 Hp +59929 ε Mus SRB: 3.99 0 4.31 V 40. M5III +64661 η Mus E 4.76 0 4.81 V B8V +64094 tet Mus E+WR 5.50 0 5.52 V 40661.4 18.341 WC6+O9.5I +57581 μ Mus LB 4.6 0 4.8 V K4III +76377 R Nor M 6.5 0 13.9 p 41874. 507.50 M3e-M6II +79932 S Nor DCEP 6.12 0 6.77 V 44018.69 9.75411 47 F8-G0Ib +77058 T Nor M 6.2 0 13.6 V 40976. 240.7 41 M3e-M6e +76918 U Nor DCEP 8.63 0 9.83 V 44788.5 12.64371 46 F6-F8Ib/II-G5 +78797 RS Nor DCEP 9.62 0 10.39 V 35308.21 6.19814 29 +80365 RT Nor RCB 10.6 0 16.3 p C(R) +77913 SY Nor DCEP 8.98 0 9.94 V 40737.43 12.6452 35 +78771 TW Nor DCEP 11.17 0 12.22 V 41092.21 10.78618 50 +80931 VY Nor RRAB 12.1 0 12.8 p 25535.249 0.375305 43 +79625 GU Nor DCEP 10.08 0 10.73 V 44025.74 3.452877 34 +74448 IQ Nor DCEP 9.47 0 10.11 V 37875.77 8.23862 32 +80721 OZ Nor GCAS: 7.5 0 7.67 B B2Ve +80678 PQ Nor 7.69 0 7.74 V 42180.2 5.58 B8/9V +80782 QU Nor GCAS 5.29 0 5.41 V B1.5Iape +78731 QY Nor ACV 6.45 1 0.01 V 5.2 A0p(Si) +76629 V0343 Nor BY: 8.14 1 0.12 V +80563 V0348 Nor BCEP: 7.87 0 7.96 V +75878 V0358 Nor LB: 8.40 0 8.54 Hp +76968 V0359 Nor LB 7.59 0 7.76 Hp +77645 V0360 Nor ACYG: 5.77 0 5.79 Hp +78310 V0361 Nor ACYG: 7.10 0 7.16 Hp +78803 V0362 Nor LC: 7.12 0 7.28 Hp +78810 V0363 Nor LB: 7.89 0 8.02 Hp +79038 V0364 Nor BE 9.24 0 9.32 Hp +79055 V0365 Nor LB 6.89 0 6.99 Hp +79207 V0366 Nor ACYG: 8.52 0 8.62 Hp +79490 V0367 Nor LC: 5.94 0 6.11 Hp +79754 V0368 Nor SRB 5.43 0 5.54 Hp +79880 V0369 Nor LB 7.12 0 7.44 Hp +79949 V0370 Nor LB: 8.17 0 8.28 Hp +79958 V0371 Nor BY: 9.35 0 9.48 Hp +80531 V0372 Nor ACV: 7.80 0 7.86 Hp +80545 V0373 Nor E: 8.47 0 8.65 Hp +80557 V0374 Nor ELL: 7.16 0 7.23 Hp +80580 V0375 Nor LB: 9.79 0 9.93 Hp +80640 V0376 Nor BE: 8.57 0 8.74 Hp +80659 V0377 Nor LC 9.07 0 9.33 Hp +80788 V0378 Nor CEP: 6.21 0 6.23 Hp +80830 V0379 Nor LB 7.77 0 7.89 Hp +80965 V0380 Nor SRB 7.58 0 7.68 Hp +80222 V0399 Nor EB 8.19 0 8.30 8.24 V 53170.830 3.19288 F6/7V +81122 μ Nor ACYG: 4.87 0 4.98 V O9.7Iab +25412 R Oct M 6.4 0 13.2 V 41985. 405.39 44 M5.5e +51084 X Oct SRA 8.7 0 12.7 p 28885. 206.80 M3e-M6IIIe +86836 Z Oct M 11.0 0 13.5 p 13825. 335. +113652 RT Oct M 10.4 0 14.6 p 36063. 180.16 Me +703 RU Oct M 10.2 0 15. p 13443. 373. +67227 RV Oct RRAB 11.6 0 12.1 p 15116.665 0.5711625 11 +106649 RY Oct RRAB 10.4 0 12.1 p 27987.453 0.563469 36 +108057 SS Oct RRAB 10.8 0 12.1 p 28020.607 0.621825 13 +80990 UV Oct RRAB 8.70 0 9.97 V 34328.396 0.542625 A6-F6 +21989 UZ Oct EB/KE 9.03 0 9.56 9.48 V 42064.4480 1.1493549 +75736 BP Oct DSCTC 6.46 1 0.04 V 0.08 A2m +71348 BQ Oct LB: 6.8 1 0.1 V M4III(S5,1) +89858 BR Oct LB: 9.4 0 10.0 p M4-6 +110428 BW Oct LB: 8.8 0 9.7 p M7III +98757 CC Oct DSCTC 8.01 1 0.10 V 0.12490 Fm +99013 CE Oct DSCTC 8.02 1 0.02 V A7IV/V +102803 CF Oct RS 8.27 1 0.3 V +112355 CG Oct DSCTC 6.85 1 0.04 B +4266 CN Oct LB: 8.45 0 8.55 Hp +14210 CO Oct LB 8.74 0 8.92 Hp +14700 CP Oct DSCTC: 7.68 0 7.73 Hp +20930 CQ Oct SRB 8.12 0 8.59 Hp +22379 CR Oct SRB 7.16 0 7.27 Hp +39998 CS Oct LB: 7.72 0 7.82 Hp +57037 CT Oct BY: 10.91 0 11.34 Hp +59404 CU Oct ACV 7.39 0 7.43 Hp +82459 CV Oct LB 8.92 0 9.19 Hp +83255 CW Oct ACV: 6.05 0 6.07 Hp +83366 CX Oct SRB 7.83 0 8.05 Hp +93082 CY Oct LB 7.97 0 8.10 Hp +97159 CZ Oct LB 7.55 0 7.72 Hp +98832 DD Oct E: 9.72 0 9.94 Hp +100187 DE Oct RRC: 9.19 0 9.26 Hp +101572 DF Oct LB: 8.85 0 8.99 Hp +102428 DG Oct LB: 8.81 0 8.97 Hp +102984 DH Oct LB: 9.10 0 9.21 Hp +105581 DI Oct SRD 7.24 0 7.41 Hp +107823 DK Oct LPB 7.62 0 7.66 Hp +108192 DL Oct LB 7.64 0 8.18 Hp +108768 DM Oct BY: 11.69 0 12.03 Hp +110364 DN Oct SRB: 7.28 0 7.36 Hp +114889 DO Oct SRB: 8.20 0 8.34 Hp +114451 DP Oct LB 7.81 0 7.95 Hp +115609 DQ Oct SRB 8.35 0 8.59 Hp +49616 DR Oct RS: 8.70 0 8.73 V +102842 DU Oct EA/RS: 9.21 0 9.48 9.34 V 52845.852 2.47867 G3V +104043 α Oct EB 5.22 0 5.26 Hp +110256 ε Oct SRB 4.58 0 5.30 V 55. M6III +112781 χ Oct LPB 5.26 0 5.29 Hp +104382 σ Oct DSCTC 5.45 1 0.05 V 0.097 F0IV +84500 U Oph EA/DM 5.84 0 6.56 6.46 V 44416.3864 1.67734617 16 B5V+B5V +80550 V Oph M 7.3 0 11.6 V 45071. 297.21 48 C5,2-C7,4e(N3e) +91389 X Oph M 5.9 0 9.2 V 44729. 328.85 53 M5e-M9e +87495 Y Oph DCEPS 5.87 0 6.46 V 39853.30 17.12413 44 F8Ib-G3Ib +84763 Z Oph M 7.6 0 14.0 V 42238. 348.7 40 K3ep-M7.5e +89568 RY Oph M 7.4 0 13.8 V 45205. 150.41 46 M3e-M6e +92055 RZ Oph EA/GS 9.65 0 10.42 V 42204.39 261.9277 04 F3eIb+K5II +82352 TT Oph RVA 9.45 0 10.84 V 44449. 61.08 G2e-K0 +85617 TW Oph SRB 11.6 0 13.8 p 185. C5,5(Nb) +82977 UU Oph EA/SD 10.0 0 12.5 p 20750.489 4.3968025 12 A0 +83582 UX Oph M 9.4 0 13.6 V 38879. 116.71 M4e +85429 VW Oph M 10.5 0 14. p 38851. 285.00 M5e +83719 WZ Oph EA/DM 9.14 0 9.82 9.82 V 35648.775 4.183506 06 F8V+F8V +86777 XX Oph * 8.59 0 10.2 V Bpeq+M5 +83674 BF Oph DCEP 6.93 0 7.71 V 44435.21 4.06775 26 F6-G2 +83963 IX Oph INB 11.8 0 12.7 p Fpe +84346 V0438 Oph SRB 9.3 0 11.6 p 37130. 169.9 42 M0-M7e +80402 V0445 Oph RRAB 10.53 0 11.39 V 27543.547 0.3970227 18 A9-F6 +90599 V0451 Oph EA/DM 7.94 1 0.60 11.9 B 44834.365 2.19659616 12 B9V+A2 +85386 V0453 Oph RVA 10.40 0 11.53 V 37505. 81.300 Fp +89450 V0455 Oph RRAB 11.6 0 12.5 p 41833.389 0.45391060 20 A7 +81703 V0502 Oph EW/KW 8.34 0 8.84 8.81 V 41174.2288 0.45339345 G2V+F9V +88028 V0508 Oph EW/KW 10.06 0 10.69 10.59 V 45082.5430 0.344792129 G5 +87538 V0533 Oph SR: 8.3 0 9.3 p 41169. M6 +87860 V0566 Oph EW/KW 7.46 0 7.96 7.89 V 41835.8617 0.40964569 F4V +87994 V0567 Oph DSCT 11.07 0 11.43 V 38592.4048 0.149521 40 A7-F3 +89579 V0577 Oph EA/DM 11.36 0 12.00 10.5 B 42652.332 6.079096 03 A +88946 V0839 Oph EW/KW 8.8 0 9.39 9.38 V 40448.4129 0.40899532 F8V +86260 V0974 Oph DSCT 11.6 0 12.0 p 28671.437 0.1910568 30 +88522 V0986 Oph * 6.10 0 6.15 V 0.323 B0.5III +82339 V1010 Oph EB/KE 6.1 0 7.00 6.46 V 38937.7690 0.66142613 A5V +82817 V1054 Oph UV 10.14 0 11.72 U M4.5Ve+M4.5Ve +82323 V1121 Oph INT 11.2 0 12.2 V K5Ve(T) +88149 V2048 Oph GCAS+UV: 4.55 0 4.85 V B2-B6IV-VneV +87812 V2052 Oph BCEP 5.81 0 5.84 V 41442.048 0.1398903 50 B2IV-V +86605 V2076 Oph PVTEL 9.78 0 10.08 V 0.71 O9.5Ia-B1Ia(p) +80620 V2105 Oph SRB: 5.0 0 5.38 V M2.5III +82351 V2106 Oph SR 7.38 0 7.46 V 22. M2III +82011 V2111 Oph SR 6.69 0 7.08 V 45. M5III +84704 V2112 Oph DSCTC 6.50 0 6.52 V 44114.5474 0.1874472 F0III-IV +84780 V2113 Oph SR: 6.59 0 6.81 V M5III +85450 V2114 Oph SR 6.40 0 6.51 V 18. M4III +88272 V2118 Oph * 7.02 0 7.09 V 43330.644 0.8171 43 F2IV +86060 V2125 Oph ACV 6.57 1 0.04 V 9.75 B8p(Si) +88148 V2126 Oph ACV 6.36 1 0.00 V 2.41 A3p(Sr-Cr-Eu) +81300 V2133 Oph BY 6.57 1 0.04 B +80698 V2205 Oph PVTEL 10.40 0 10.59 V +83601 V2213 Oph BY 6.01 1 0.04 V +84478 V2215 Oph RS 6.26 0 6.34 V +82583 V2253 Oph RS 8.1 1 0.18 V +90313 V2291 Oph EA/GS 7.02 1 1.1 U +82588 V2292 Oph BY: 6.78 1 0.04 V +88132 V2300 Oph ELL: 6.7 1 0.02 V +80824 V2306 Oph BY 10.05 0 10.10 V +81624 V2307 Oph INA 9.50 0 11.13 U +86805 V2315 Oph ELL: 8.28 0 8.34 V +86960 V2320 Oph ELL: 7.36 0 7.39 V +86993 V2323 Oph ELL: 8.09 0 8.12 V +87184 V2327 Oph ELL: 7.51 0 7.54 V +78509 V2348 Oph LB 8.93 0 9.19 Hp +78949 V2349 Oph LB 7.31 0 7.45 Hp +80248 V2350 Oph LB: 7.41 0 7.51 Hp +80442 V2351 Oph RR: 8.43 0 8.51 Hp +81165 V2352 Oph BY: 11.33 0 11.67 Hp +81893 V2353 Oph ACV 7.58 0 7.64 Hp +82089 V2354 Oph LB: 8.58 0 8.68 Hp +82442 V2355 Oph EB 7.11 0 7.25 Hp +82544 V2356 Oph LB: 7.07 0 7.26 Hp +82967 V2357 Oph EW: 10.66 0 10.79 Hp +83021 V2358 Oph LB 8.35 0 8.52 Hp +83117 V2359 Oph LB 7.84 0 7.96 V +83209 V2360 Oph LB: 8.34 0 8.45 Hp +83322 V2361 Oph LB: 8.62 0 8.79 Hp +83416 V2362 Oph LB: 8.72 0 8.85 Hp +83632 V2363 Oph SRB 9.51 0 10.18 Hp +83638 V2364 Oph SRB 7.36 0 7.48 Hp +83891 V2365 Oph E: 8.91 0 9.11 Hp +83958 V2366 Oph LB: 8.97 0 9.06 Hp +84277 V2367 Oph BY: 11.88 0 12.15 Hp +84479 V2368 Oph EA 6.22 0 6.42 Hp +84595 V2369 Oph BY: 8.54 0 8.65 Hp +85087 V2370 Oph LB: 9.79 0 9.90 Hp +85189 V2371 Oph BCEP 9.12 0 9.18 Hp +85507 V2372 Oph LB 7.31 0 7.40 Hp +85812 V2373 Oph EB 7.39 0 7.46 Hp +85925 V2374 Oph SRD 7.81 0 7.92 Hp +85905 V2375 Oph LB 7.74 0 7.86 Hp +85974 V2376 Oph LB: 8.01 0 8.11 Hp +85944 V2377 Oph EB 8.60 0 8.73 Hp +85997 V2378 Oph E: 7.17 0 7.28 Hp +86084 V2379 Oph E: 7.95 0 8.12 Hp +86085 V2380 Oph LB 7.60 0 7.70 Hp +86374 V2381 Oph RR: 7.77 0 7.84 Hp +86487 V2382 Oph BE 7.26 0 7.29 Hp +86509 V2383 Oph BY: 10.38 0 10.68 Hp +86672 V2384 Oph E 9.10 0 9.24 Hp +86964 V2385 Oph BE 8.85 0 8.98 Hp +87107 V2386 Oph LB: 7.41 0 7.51 Hp +87474 V2387 Oph LB 7.64 0 7.82 Hp +87655 V2388 Oph EB 6.27 0 6.55 Hp +87797 V2389 Oph SRB 7.65 0 7.82 Hp +87999 V2390 Oph LB: 10.73 0 10.90 Hp +88601 V2391 Oph BY: 4.14 0 4.16 Hp +89527 V2392 Oph SRB: 6.03 0 6.20 Hp +90971 V2393 Oph ACV 6.40 0 6.44 Hp +83232 V2398 Oph IT 11.32 0 12.82 U +87937 V2500 Oph BY 9.55 1 0.02 V +89601 V2502 Oph GDOR: 6.61 0 6.77 Hp +82693 V2542 Oph DSCTC 6.25 1 0.02 V +88527 V2564 Oph LB: 7.34 1 0.05 V +80366 V2578 Oph BY 8.40 1 0.02 V 13.83 K2V +81716 V2581 Oph BY 9.42 1 0.04 V 10.58 K2V +83634 V2626 Oph EA 8.26 0 8.43 8.36 V 52787.824 10.8743 04 A5 +87511 V2653 Oph EA 9.51 0 9.77 9.75 V 48744.790 4.39435 07 G5 +88964 V2666 Oph GDOR 6.11 1 0.02 B 0.61439 F0V+G1V +81377 ζ Oph GCAS 2.56 0 2.58 V O9.5V(e) +84970 tet Oph BCEP 3.25 0 3.31 V 40324.230 0.140531 B2IV +83000 κ Oph LB: 4.1 0 5.0 p K2III +80569 χ Oph GCAS 4.18 0 5.0 V B1.5IV-Vpe +80975 ω Oph ACV 4.44 0 4.51 V 2.99 A7p(Sr-Cr) +23165 R Ori M 9.05 0 13.4 V 41391. 377.1 40 C8,2e(Ne) +25673 S Ori M 7.2 0 14.0 V 43945. 414.30 48 M6.5e-M9.5e +28041 U Ori M 4.8 0 13.0 V 45254. 368.3 38 M6e-M9.5e +23680 W Ori SRB 8.2 0 12.4 p 212. C5,4(N5) +28045 Z Ori EA/DS 9.8 0 10.7 9.9 p 25190.720 5.203265 12 B3 +30286 RS Ori DCEP 8.01 0 8.88 V 42820.794 7.566881 32 F5Ib-G1Ib +26032 RT Ori SRB 9.7 0 11.8 p 321. C6,4(Nb) +23602 UX Ori ISA(YY) 8.7 0 12.8 p A2ea +26063 VV Ori EA/KE: 5.31 0 5.66 5.50 V 40890.5158 1.4853784 20 B1V+B7V +26403 BF Ori INA 9.69 0 13.47 V A0:-FpII-Vea +30564 BL Ori LB 7.9 0 9.7 p C6,3(Nb,Tc) +28166 BQ Ori SR 9.4 0 11.5 p 110. M5IIIe-M8III +25737 CI Ori CST: 4.67 0 4.71 V K5III +25785 CK Ori SR: 5.9 0 7.1 V 120. K2IIIe: +25540 CO Ori INSB 10.3 0 13.8 p G5Vpe +29022 CS Ori DCEP 10.85 0 11.80 V 37258.156 3.88939 23 F5-G0 +28456 DN Ori EA/DS 9.8 0 11.1 9.9 p 35577.20 12.96641 08 A2e+F5III +28558 DP Ori SRB 10.5 0 12.5 p 33260. 90. M6.5 +22535 EP Ori M 10.5 0 13. p 33182. 358.5 M10e +24156 ER Ori EW/KW 9.28 0 10.01 9.97 V 41626.415 0.4233987 F8V +25863 EY Ori EA/D 9.43 0 10.13 9.54 V 43527.466 16.787832 06 A7Vm +25591 FO Ori EA/DS: 9.5 0 10.3 9.7 p 31820.627 18.80058 02 A3 +29896 GK Ori SR 9.5 0 11. V 26002. 236. C4-5,4-5(N) +25689 GW Ori INST 10.1 0 11.5 p G5-8Ve(T) +26258 NU Ori INSA 6.80 0 6.93 V B0.5V +25299 V0346 Ori ISA 10.0 0 11.9 p A5III: +27059 V0351 Ori INSA 8.3 0 11.6 p A7III +26081 V0371 Ori UV 11.0 0 13.01 B M2.5Ve +26327 V0380 Ori INAT 8.2 0 11.10 B B8-A2eq(T) +22943 V0429 Ori RRAB: 10. 0 11. V 28876.413 0.5017 27 +26742 V0901 Ori SXARI 6.97 0 7.02 V 42808.59 1.5385 B2Vp +29106 V0916 Ori BCEP 8.11 0 8.13 B 0.39912 B2.5V +29121 V0917 Ori BCEP 8.77 0 8.90 V 0.4033 B3Vn +30041 V0963 Ori BCEP: 8.47 0 8.50 V 0.2 B2Ibpea +28271 V1004 Ori DSCTC 5.88 0 5.92 V 0.0611 A5m +23200 V1005 Ori BY+UV 9.96 0 10.17 V 44521.37 4.565 50 M0.5Ve +26220 V1016 Ori EA 6.72 0 7.65 V 43144.600 65.43233 01 B0.5Vp +27341 V1031 Ori EA/DM 6.02 0 6.43 6.32 V 42688.8732 3.4057 01 A4V +23607 V1032 Ori ACV 4.65 0 4.69 V 43864.78 4.6398 50 B9p(Si) +26182 V1045 Ori ACV 6.73 1 0.04 V 43470.63 1.564 40 B9IVp(Si-Mn) +26233 V1046 Ori E:+SXARI 6.54 0 6.58 6.58 V 43495.091 0.94629 B2Vp(He+) +26728 V1051 Ori ACV 6.52 1 0.02 V 41728.18 1.099 55 B9.5IIIp(Si) +27423 V1054 Ori ACV 7.32 0 7.35 V 44202.159 8.635 F0p(Sr-Eu) +30162 V1056 Ori LC 7.93 0 8.19 V M3Ib-II +24716 V1057 Ori SRB 7.70 0 8.11 V 67. M5III +24196 V1085 Ori ACV 6.65 0 6.70 V +25302 V1086 Ori GCAS 4.92 0 4.96 V +25954 V1101 Ori SXARI 8.14 1 0.06 V +26048 V1107 Ori SXARI 8.06 1 0.02 V +26656 V1148 Ori ACV 8.04 1 0.04 V +26795 V1149 Ori RS: 7.2 1 0.11 V +30019 V1155 Ori ACV 6.32 1 0.02 V +25235 V1156 Ori SXARI 7.89 1 0.03 V +26304 V1179 Ori ACV 7.37 1 0.10 V +23245 V1192 Ori RS 7.50 0 7.57 V +26953 V1197 Ori ELL 6.30 1 0.03 V +23105 V1198 Ori RS 7.12 0 7.19 V +30055 V1260 Ori RS 7.7 1 0.11 V +25092 V1261 Ori EA/GS/WD 6.91 1 0.27 V +28582 V1307 Ori INA 9.48 1 0.35 V +29988 V1308 Ori INA 11.47 0 11.62 V +26857 V1352 Ori BY 11.48 0 11.55 V +29525 V1357 Ori RS: 6.44 0 6.49 V +30030 V1358 Ori BY 7.91 0 7.99 V +22454 V1359 Ori DSCTC 8.52 0 8.56 Hp +23328 V1360 Ori LPB: 7.18 0 7.22 Hp +23496 V1361 Ori EB 9.21 0 9.42 Hp +23701 V1362 Ori LB: 9.94 0 10.08 Hp +23809 V1363 Ori EW 10.35 0 10.59 Hp +23996 V1364 Ori LB: 7.95 0 8.08 Hp +24441 V1365 Ori BY: 6.46 0 6.87 Hp +24552 V1366 Ori E: 9.87 0 10.64 Hp +24625 V1367 Ori LB 8.58 0 8.78 Hp +25004 V1368 Ori SRA 9.66 0 10.01 Hp +25011 V1369 Ori BE 6.47 0 6.67 Hp +25394 V1370 Ori LPB 8.23 0 8.29 Hp +25577 V1371 Ori EB 8.16 0 8.24 Hp +25655 V1372 Ori BE 7.06 0 7.19 Hp +25681 V1373 Ori SRD 8.83 0 8.91 Hp +25896 V1374 Ori BE 7.45 0 7.72 Hp +25902 V1375 Ori E: 6.82 0 7.00 Hp +26223 V1376 Ori LB 6.89 0 7.19 Hp +26263 V1377 Ori LPB 6.35 0 6.37 Hp +26442 V1378 Ori LPB 7.06 0 7.12 Hp +26464 V1379 Ori LPB 7.56 0 7.60 Hp +27309 V1380 Ori EA 9.76 0 10.61 Hp +27912 V1381 Ori LB: 7.25 0 7.51 Hp +27941 V1382 Ori BE: 7.82 0 7.96 Hp +28039 V1383 Ori EB 8.47 0 8.66 Hp +28142 V1384 Ori EA 7.14 0 7.41 Hp +28519 V1385 Ori EB 7.47 0 7.64 Hp +28954 V1386 Ori BY: 6.88 0 6.94 Hp +29186 V1387 Ori EB 8.77 0 8.87 Hp +29321 V1388 Ori EA 7.41 0 7.76 Hp +29509 V1389 Ori SRB: 6.49 0 6.59 Hp +29563 V1390 Ori BE 8.04 0 8.16 Hp +29707 V1391 Ori LB 8.14 0 8.43 Hp +29787 V1392 Ori EB 7.73 0 7.92 Hp +29899 V1393 Ori CST: 11.3 0 V A5 +29961 V1394 Ori LB 9.60 0 9.93 Hp +30010 V1395 Ori LB: 8.92 0 9.02 Hp +25205 V1649 Ori DSCTC 6.34 1 0.01 V 0.0259 A2V +23385 V1801 Ori EA/RS 8.91 0 9.15 9.05 V 52997.720 4.14357 G3/G5V +25174 V1804 Ori EA 7.08 0 7.14 7.12 V 48188.925 2.22878 08 B9.5V +22848 V1834 Ori EA 6.85 0 6.94 6.87 V 47998.857 1.51058 08 A2III +26120 V1936 Ori INA: 6.89 0 7.03 J B3Vn +26335 V2689 Ori RS 8.80 0 9.05 V 12.285 K7 +27989 α Ori SRC 0.0 0 1.3 V 2335. M1-M2Ia-Ibe +24436 β Ori ACYG 0.17 0 0.22 Hp +26311 ε Ori ACYG 1.64 0 1.74 V B0.5Iabea +25281 η Ori EA+BCEP: 3.31 0 3.60 3.57 V 15761.826 7.989268 B0.5Vea+B3V +25473 ψ Ori E/D 4.55 0 4.61 4.58 V 38802.914 2.52596 B2IVea+B0 +26594 ω Ori GCAS 4.40 0 4.59 V B2IIIe +89258 R Pav M 7.5 0 13.8 V 42009. 229.46 48 M3e-M5(II)e +98031 S Pav SRA 6.6 0 10.4 V 38859. 380.86 49 M7IIe-M8III +97644 T Pav M 7.0 0 14.0 V 39429. 243.62 43 M4e +86728 V Pav SRB 9.3 0 11.2 p 225.4 C6,4(Nb) +99512 X Pav SRB 9.2 0 11.1 p 199.19 48 MC +105678 Y Pav SRB 8.6 0 10.3 p 30060. 233.3 C7,3(N0) +88775 RS Pav CWA 10.10 0 11.25 V 27247.600 19.954 38 Ke +106044 SX Pav SRB 5.34 0 5.97 V 50. M5-M7III +87804 WY Pav RRAB 11.4 0 12.5 p 26868.320 0.58858 +89886 AR Pav EA+ZAND 7.4 0 13.62 B 20330. 604.6 15 cont+M3III+shell +96581 BN Pav RRAB 11.2 0 12.5 p 28336.513 0.567173 16 +97605 BO Pav EA/D: 9.3 0 10.1 p 28698.43 19.23 03 +98265 BP Pav RRAB 11.3 0 12.7 p 28334.480 0.53740 +98447 BQ Pav M 10.9 2 14.0 p 27985. 112. 54 +101545 IV Pav RR: 10.4 0 10.8 p +103542 KZ Pav EA/SD 7.71 0 9.30 V 44431.7546 0.9498768 F6V +102508 MW Pav EW 8.51 0 8.95 8.92 V 40862.6076 0.79498855 F3IV/V +98608 NU Pav SRB 4.91 0 5.26 V 60. M6III +89324 NW Pav CWA 11.4 0 13.0 p 44168.80 30. +97674 NZ Pav DSCTC 6.04 1 0.01 V 0.08 F2III-IV +102070 V0342 Pav DSCTC 8.4 1 0.03 V 0.034 A6V +102717 V0343 Pav ACV 7.99 0 8.02 V +90304 V0346 Pav DSCTC 6.14 1 0.04 V +87043 V0352 Pav DSCTC 6.55 0 6.61 Hp +88118 V0353 Pav I: 11.89 0 12.42 Hp +88620 V0354 Pav LB 8.34 0 8.51 Hp +89316 V0355 Pav LB: 8.34 0 8.48 Hp +89416 V0356 Pav E: 7.45 0 7.62 Hp +90815 V0357 Pav ACV: 7.94 0 7.99 Hp +91193 V0358 Pav LB: 8.43 0 8.53 Hp +91516 V0359 Pav LB 7.38 0 7.68 Hp +91813 V0360 Pav LB 7.63 0 7.81 Hp +92148 V0361 Pav LB 7.07 0 7.17 Hp +92330 V0362 Pav E 7.44 0 7.64 Hp +92629 V0363 Pav EA 8.17 0 8.50 Hp +93272 V0364 Pav LPB: 6.77 0 6.80 Hp +93786 V0365 Pav LB: 8.88 0 9.00 Hp +94443 V0366 Pav LB: 8.32 0 8.48 Hp +94693 V0367 Pav EB 9.07 0 9.26 Hp +95160 V0368 Pav EB: 8.96 0 9.27 Hp +95405 V0369 Pav LB: 8.39 0 8.53 Hp +95403 V0370 Pav LC 8.15 0 8.45 Hp +95479 V0371 Pav LB 8.77 0 8.90 Hp +95592 V0372 Pav SRB 7.80 0 7.95 Hp +97803 V0373 Pav LB: 8.62 0 8.72 Hp +98267 V0374 Pav LB: 8.18 0 8.28 Hp +98811 V0375 Pav BY: 11.17 0 12.23 Hp +99358 V0376 Pav LB 7.82 0 7.95 Hp +99615 V0377 Pav ACV 8.89 0 8.93 Hp +99758 V0378 Pav SRB 6.67 0 6.82 Hp +100389 V0379 Pav LB: 8.92 0 9.02 Hp +100576 V0380 Pav LB: 8.67 0 8.77 Hp +101064 V0381 Pav LB 8.86 0 9.06 Hp +101286 V0382 Pav DSCT: 8.91 0 9.10 Hp +101303 V0383 Pav LB: 8.73 0 8.90 Hp +101705 V0384 Pav LB: 7.99 0 8.11 Hp +102866 V0385 Pav LB 8.93 0 9.37 Hp +103320 V0386 Pav EW 8.39 0 8.49 Hp +103553 V0387 Pav LB 8.57 0 8.87 Hp +103803 V0388 Pav DSCTC 8.81 0 8.88 Hp +104183 V0389 Pav LB: 7.61 0 7.71 Hp +105441 V0390 Pav BY: 9.03 0 9.20 Hp +105468 V0391 Pav LB: 7.72 0 7.83 Hp +105915 V0400 Pav EB 9.18 0 9.33 9.23 V 51905.532 1.155466 F5V +90773 V0405 Pav EA 9.11 0 9.20 9.12 V 48528.814 5.64797 04 F2IV +93015 κ Pav CEP 3.91 0 4.78 V 40140.167 9.09423 44 F5-G5I-II +92609 λ Pav GCAS 4.0 0 4.26 V B2II-IIIe +90797 ν Pav LPB 4.56 0 4.60 Hp +101773 Ï Pav DSCTC 4.85 1 0.05 V 0.1141 F0mIII +114114 R Peg M 6.9 0 13.8 V 42444. 378.1 44 M6e-M9e +115242 S Peg M 6.9 0 13.8 V 45311. 319.22 47 M5e-M8.5e +118149 U Peg EW/KW 9.23 0 10.07 9.73 V 36511.6682 0.374781439 F3+F3 +115188 W Peg M 7.6 0 13.0 V 44873. 345.5 46 M6e-M8e +8 Z Peg M 7.3 0 13.6 V 45090. 334.8 50 M6e-M8.5e(Tc) +109610 RS Peg M 8.2 0 14.7 V 45161. 415.4 45 M6e-M9e +109089 RZ Peg M 7.6 0 13.6 V 45248. 438.7 44 C9,1e(Ne)(Tc)/CS +111385 SS Peg M 8.0 0 13.6 V 45177. 424.8 M6e-M7e +112680 ST Peg SRB 9.9 0 11.6 p 136.2 M6e +109070 SV Peg SRB 9.2 0 11.0 p 144.6 M7 +112784 SX Peg M 9.7 0 15. p 45186. 303.6 43 S3,9e-S4.5,9e +536 TT Peg SRA 9.3 0 11.2 V 37178. 154. M6e +107390 TU Peg M 8.2 0 14.6 V 45137. 321.6 45 M7e-M8e +108928 TW Peg SRB 7.5 0 8.4 p 929.3 M6-M8 +110112 TX Peg SRB 9.3 0 10.80 B 120. 50 M5e +115986 TY Peg EA/SD 10.1 0 12.0 10.2 V 40451.784 3.092220 14 A2 +108934 UV Peg CST 9.1 0 V A0 +110099 UW Peg SRB 8.7 0 9.9 V 106. M5-M7 +107196 VX Peg SRB 10.0 0 11.6 p 934. M7 +116942 VZ Peg RRC 11.66 0 12.13 V 38317.2930 0.3064863 36 A0 +112868 AF Peg SRB 8.4 0 9.8 V 65. M5II-III +104506 AM Peg SRA 9.0 0 11.0 V 41620. 137.1 44 M1e-M3e +106740 AQ Peg EA/SD 10.39 0 12.85 10.47 V 41222.7048 5.5485028 12 A2e+G5 +105653 AU Peg CEP 8.98 0 9.47 V 42303.61 2.4015 33 F8 +107935 AV Peg RRAB 9.88 0 10.92 V 43790.316 0.3903747 17 A7-F6 +107960 AW Peg EA/DS 7.40 0 8.61 7.60 V 43741.400 10.62259 10 A5Ve+F2:pe +110493 BB Peg EW/KW 10.8 1 0.68 0.60 B 43764.3334 0.3615021 F8 +112057 BC Peg SRB 9.3 0 10.3 V 125. 40 M6 +112155 BD Peg SRB 9.4 0 10.3 p 78. 50 M6-M8 +112994 BH Peg RRAB 9.99 0 10.79 V 39365.280 0.640993 20 A8-F6 +113390 BI Peg SRA 9.9 0 11.2 V 27020. 500. 52 M6e +106417 BP Peg DSCT(B) 11.69 0 12.28 V 43014.5786 0.109543375 30 A0 +107078 CG Peg RRAB 10.64 0 11.58 V 39102.396 0.4671382 17 A7-F6 +108153 DF Peg EA/DS 9.1 0 10.9 9.2 p 33505.62 14.6987 04 A2: +109890 DH Peg RRC 9.15 0 9.80 V 44463.571 0.25551040 39 A5.0-F0.5 +116167 DI Peg EA/SD 9.38 0 10.48 9.59 V 45196.488 0.7118168 21 F4IV +116886 DK Peg EA/DM 10.0 0 10.7 p 45530.466 1.6318117 15 A0V+A2V +107571 DX Peg SRA 8.7 0 9.6 V 37555.9 80.66 M6 +114290 DY Peg SXPHE(B) 9.95 0 10.62 V 44502.0704 0.072926297 32 A3-F1 +106981 EE Peg EA/DM 6.93 0 7.51 7.06 V 45563.8916 2.62821423 09 A3mV+F5 +114930 EO Peg LB 9.6 0 10.5 p M7 +114944 EZ Peg NL: 9.57 1 0.34 V G5Ve +113173 GO Peg LB 8.6 0 9.3 p M4 +112909 GT Peg BY+UV 11.66 1 0.07 V 41388.783 1.6410 M3.5Ve +111191 GX Peg DSCTC 6.35 1 0.02 V 0.056 A8Vm +114347 GZ Peg SRA 4.95 0 5.23 V 43085.7 92.66 M4SIII +117628 HH Peg LB: 5.74 0 5.90 V M3III +107350 HN Peg BY 5.92 0 5.95 V 40821.48 24.90 G0V +107956 HO Peg LB 8.3 0 8.7 p M8III +108953 HP Peg LB 8.80 0 8.91 V C1,2CH(R6p) +113131 HR Peg SRB 6.12 0 6.49 V 50. S5,1(M4) +117730 HT Peg DSCTC 5.30 0 5.39 V 0.06 A4Vn +115806 HV Peg ACV 5.96 0 5.98 V 6.97 47 A0p(Hg-Mn) +116264 HW Peg LB: 5.32 1 0.30 V M5IIIa +117915 II Peg RS 7.18 0 7.78 V 44240. 6.7026 K2IV-Ve +105860 IK Peg DSCTC 6.07 1 0.03 V 0.044 A8m +112997 IM Peg RS 5.60 0 5.85 V 43760.6 24.44 K1III-IVp +110386 IN Peg GCAS 4.85 0 5.05 V +108578 IS Peg ZZO 9.8 1 0.08 V +112306 IV Peg M 12.0 0 17.8 B +105882 KP Peg EB/KE 7.05 0 7.26 V +116611 KS Peg EB/KE 5.37 1 0.12 B +116740 KT Peg RS 7.04 1 0.03 V +114025 KU Peg RS 7.7 1 0.08 V +110462 KX Peg RS 7.46 0 7.58 V +999 LN Peg RS 8.40 0 8.59 V +106231 LO Peg BY 9.04 0 9.27 V +113829 MT Peg BY 7.30 1 0.02 U +316 NN Peg DSCTC 7.26 0 7.33 Hp +852 NO Peg SRB 7.02 0 7.19 Hp +864 NP Peg SRA 9.61 0 9.81 Hp +989 NQ Peg SRB 7.58 0 7.84 Hp +104478 NR Peg EB: 8.13 0 8.31 Hp +104923 NS Peg LB: 7.92 0 8.03 Hp +105623 NT Peg BE 6.64 0 6.79 Hp +105958 NU Peg LB: 8.83 0 8.94 Hp +106062 NV Peg SRB 5.66 0 5.84 Hp +106232 NW Peg SRB 8.00 0 8.11 Hp +106242 NX Peg LB: 8.10 0 8.20 Hp +106579 NY Peg SRB 9.50 0 9.73 Hp +106897 NZ Peg RR: 5.83 0 5.86 Hp +107099 OO Peg EA 8.25 0 8.68 Hp +107202 OP Peg LB: 9.50 0 9.65 Hp +108022 OQ Peg BE 5.02 0 5.06 Hp +108061 OR Peg LB 7.40 0 7.68 Hp +108286 OS Peg LB: 9.06 0 9.16 Hp +108576 OT Peg BY: 9.89 0 10.05 Hp +108588 OU Peg LB 6.36 0 6.75 Hp +108807 OV Peg LB: 9.19 0 9.35 Hp +108943 OW Peg LB: 9.08 0 9.23 Hp +109072 OX Peg LB: 7.72 0 7.84 Hp +109212 OY Peg LB 6.26 0 6.47 Hp +109376 OZ Peg SRB 8.83 0 9.07 Hp +109437 PP Peg LB 7.15 0 7.26 Hp +110058 PQ Peg LB 7.24 0 7.42 Hp +110163 PR Peg CEP: 9.15 0 9.25 Hp +110251 PS Peg SRB 8.86 0 9.11 Hp +110346 PT Peg SRB 6.41 0 6.56 Hp +110464 PU Peg EB 8.02 0 8.12 Hp +110569 PV Peg LB 6.55 0 7.42 Hp +110596 PW Peg LB: 8.61 0 8.76 Hp +110617 PX Peg LB: 8.78 0 8.88 Hp +111119 PY Peg LB 8.72 0 8.94 Hp +111523 PZ Peg LB: 9.65 0 9.80 Hp +111932 QQ Peg BY: 11.31 0 11.88 Hp +111957 QR Peg LB: 7.79 0 7.91 Hp +112050 QS Peg LB: 7.96 0 8.06 Hp +112058 QT Peg EA 7.44 0 7.66 Hp +112212 QU Peg LB 7.32 0 7.42 Hp +112250 QV Peg LB: 7.90 0 8.00 Hp +112294 QW Peg LB 8.49 0 8.68 Hp +112399 QX Peg LB: 9.81 0 9.98 Hp +112574 QY Peg LB 8.63 0 8.77 Hp +112919 QZ Peg LB: 10.05 0 10.21 Hp +112960 V0335 Peg E: 7.36 0 7.39 Hp +113139 V0336 Peg LB 7.32 0 7.47 Hp +113321 V0337 Peg LB 7.72 0 7.86 Hp +113410 V0338 Peg LB: 7.23 0 7.32 Hp +113558 V0339 Peg LB: 9.31 0 9.41 Hp +113687 V0340 Peg LB 7.12 0 7.43 Hp +114024 V0341 Peg ELL 7.12 0 7.15 Hp +114189 V0342 Peg ELL: 6.00 0 6.06 Hp +114187 V0343 Peg EA: 6.17 0 6.39 Hp +114368 V0344 Peg LB: 9.63 0 9.78 Hp +114404 V0345 Peg LB 6.22 0 6.59 Hp +114608 V0346 Peg LB 6.65 0 6.78 Hp +114698 V0347 Peg SRD 9.46 0 9.67 Hp +114975 V0348 Peg LB: 7.96 0 8.09 Hp +114985 V0349 Peg SRB: 7.22 0 7.32 Hp +115563 V0350 Peg DSCTC 7.27 0 7.32 Hp +115627 V0351 Peg RRC 8.00 0 8.31 Hp +115991 V0352 Peg ACV: 7.08 0 7.12 Hp +116108 V0353 Peg EB 7.49 0 7.56 Hp +116119 V0354 Peg ACV 6.40 0 6.44 Hp +116435 V0355 Peg SRD 8.98 0 9.36 Hp +117161 V0356 Peg LB: 9.25 0 9.39 Hp +117185 V0357 Peg EW 9.01 0 9.49 Hp +117239 V0358 Peg SRB 10.33 0 10.69 Hp +117244 V0359 Peg SRB 7.94 0 8.09 Hp +117413 V0360 Peg RV: 8.05 0 8.43 Hp +117618 V0361 Peg LB 8.93 0 9.12 Hp +117632 V0362 Peg LB: 8.93 0 9.03 Hp +117986 V0363 Peg SRB 6.37 0 6.51 Hp +107558 V0372 Peg GDOR 6.53 1 0.07 B +107788 V0373 Peg UV: 5.17 0 5.53 V +108706 V0374 Peg UV 3.5 0 16.0 U +108859 V0376 Peg EP 7.65 1 0.02 V +109055 V0377 Peg DSCTC 7.95 1 0.03 B +106554 V0400 Peg LB: 6.90 1 0.02 V K0 +107781 V0401 Peg BY: 7.34 1 0.01 V 6.985 K0 +108156 V0402 Peg BY 7.73 1 0.01 V 4.51 K0V +111888 V0403 Peg BY 8.48 1 0.03 V 18.05 K2V +116416 V0406 Peg BY 7.90 1 0.01 V 12.525 G5V +110370 V0414 Peg EA 8.49 0 8.60 8.60 V 48367.865 3.69948 07 F8 +112068 V0415 Peg EA 8.15 0 8.25 8.24 V 48223.160 11.4456 05 F8 +113654 V0416 Peg EA: 8.13 0 8.19 8.19 V 48560.500 1.424797 05 A8V +116434 V0418 Peg GDOR 7.52 0 7.56 Hp 1.1417 A8:Vm+F3:V +578 V0421 Peg EA 8.27 0 8.73 8.63 V 54759.62 3.0875658 06 F2III/IV +113881 β Peg LB 2.31 0 2.74 V M2.5II-IIIe +1067 γ Peg BCEP 2.78 0 2.89 V 41224.640 0.151750125 50 B2IV +107315 ε Peg LC 0.7 0 3.5 V K2Ib +117718 φ Peg SRB: 5.11 0 5.17 Hp +115250 Ï„ Peg DSCTC 4.60 1 0.02 V 0.05433 A5IV +11093 S Per SRC 7.9 0 12.0 V 822. M3Iae-M7 +10829 T Per SRC 8.34 0 9.7 V 2430. M2Iab +9306 U Per M 7.4 0 12.8 V 45066. 320.26 46 M5e-M7e +13262 W Per SRC 8.7 0 11.8 V 485. M3Ia-Iab-M7 +18350 X Per GCAS+XP 6.03 0 7.0 V O9.5(III-V)ep +16126 Y Per M 8.1 0 11.3 V 45245. 248.60 48 C4,3e(R4e) +15811 RT Per EA/SD 10.46 0 11.74 10.67 V 33376.0583 0.84940032 16 F2V +16328 RU Per SRB 10.0 0 12.0 V 170. M4e +20245 RW Per EA/D 9.68 0 11.36 9.78 V 36701.0854 13.198904 08 A5IIIe+G0III +12891 RY Per EA/SD 8.50 0 10.25 8.65 V 27070.708 6.8635663 13 B5Vea+F6IV +13983 ST Per EA/SD 9.52 0 11.40 9.62 V 42436.588 2.648315 13 A3V+G-K +22445 SV Per DCEP 8.49 0 9.37 V 43839.296 11.129318 39 F6-G1 +19517 SW Per SRB 9.6 0 11.1 p 102. M5III +19978 SX Per DCEP 10.70 0 11.54 V 41847.979 4.289967 25 F5-G5 +19931 SY Per SRA 8.7 1 3.0 V 37635. 474. 54 C6,4e(N3e) +8565 TT Per SRB 9.2 0 10.6 p 82. M5II-III +10332 UX Per DCEP 11.02 0 12.07 V 37402.945 4.565815 26 F5-G3 +15530 UZ Per SRB 8.6 2 11.7 p 927. M5II-III +9928 VX Per DCEP 8.99 0 9.69 V 43758.994 10.88904 49 F6-G1 +12325 VZ Per LB: 10.6 0 10.8 V C4,5J(R4) +9582 XX Per SRC 8.2 0 10.2 p 415. M4Ib+B +17890 XY Per INA 9.8 0 11.0 p A2II+B6e +12302 YZ Per SRB 10.01 0 11.9 B 378. M1Iab-M3Iab +15145 AA Per SRA 10.4 0 11.7 p 24890. 130.4 55 M7 +16920 AB Per EA/SD 10.4 0 11.4 10.5 p 22987.207 7.1602886 12 A5 +19201 AG Per EA/DM 6.69 0 7.00 7.00 V 44584.583 2.02870904 12 B3Vn+B3 +19993 AR Per RRAB 9.92 0 10.83 V 27236.9179 0.42554892 16 A8-F6 +20202 AS Per DCEP 9.17 0 10.14 V 41723.934 4.972516 25 F8-G1 +22275 AW Per DCEP 7.04 0 7.89 V 42709.059 6.463589 25 F6-G0 +11400 BS Per SRB 12.0 0 13.6 p 400. C5,5(N4) +11346 DM Per EA/SD 7.86 0 8.59 8.02 V 41920.4543 2.7277427 17 B5V +18662 IQ Per EA/DM 7.72 0 8.27 7.88 V 44290.3461 1.7435701 12 B8Vp: +16591 IW Per ELL/DM 5.79 0 5.84 5.83 V 33617.317 0.9171877 A5m +16713 IX Per ELL 6.66 1 0.02 0.02 V 29146.901 1.326363 F2IV +7145 IZ Per EA/SD 7.8 0 9.0 8.3 p 44577.5874 3.687673 12 B8 +15726 KN Per RRC 11.2 0 11.8 p 36599.246 0.433224 50 A4-A6 +16516 KP Per BCEP 6.37 1 0.14 V 43862.739 0.2017786 50 B2IV +22365 KS Per * 7.60 1 0.25 V 30. A5Iape+B2: +13775 LT Per ACV 5.03 0 5.14 V 39837.7 2.88422 B9p(Si-Eu-Sr-Cr) +15003 LX Per EA/AR/RS 8.10 0 8.93 8.38 V 27033.120 8.038207 07 G5IV+G5IV +19343 MX Per GCAS 4.00 1 0.09 V 72. B3Vpe +10995 PR Per LC 9.8 0 10.8 p M1Iab-Ib +10055 V0351 Per BCEP: 8.69 0 8.72 V 0.3746 B1IVe +10391 V0353 Per BCEP 8.85 0 8.91 B 0.3908 B0.5IV +10541 V0354 Per BCEP 8.01 0 8.03 B 0.45039 O9.7Ib-IIIn: +10641 V0357 Per BCEP: 7.44 0 7.52 V 0.28619 B2Ib-II:p +11953 V0362 Per BCEP: 8.22 0 8.24 B 0.25942 B0IIIn +17846 V0376 Per DSCT 5.77 0 5.91 V 0.09937 A7IIIn +18912 V0380 Per ACV 7.76 1 0.03 V 37315.14 3.90072 A0p(Sr-Cr-Eu) +14450 V0383 Per ACV: 7.84 0 7.87 V 39860.7 7.7 B9V +18547 V0386 Per DSCTC 6.50 0 6.58 V 0.052 A8V +16470 V0396 Per SXARI 5.45 0 5.53 V 45699.972 2.4761 B5Vp(Mn-Heweak) +15026 V0410 Per SRB: 8.8 0 9.4 V 110. C7,4(Np) +15204 V0423 Per ELL: 6.65 1 0.03 U 5.543491 A1m +11769 V0425 Per ACYG 6.98 0 7.10 V 16.1 B6Iaea +8704 V0436 Per EA/D 5.49 0 5.85 5.74 V 43562.853 25.9359 02 B1.5V +10704 V0438 Per ELL 8.28 0 8.34 8.34 V 43000.00 3.50924 B1IV-V +11174 V0440 Per DCEPS 6.18 0 6.32 V 44869.94 7.570 50 F7Ib +11284 V0441 Per LC 8.19 0 8.53 V M2.5Iab +15862 V0461 Per DSCTC 8.98 1 0.01 V 0.035 F0V +17886 V0467 Per E/D 5.05 0 5.18 V 43101.24 22.58 A2V +20354 V0469 Per BCEP 4.81 0 4.86 V 0.304 B4.5V +9990 V0472 Per ACYG 5.64 0 5.74 V +10615 V0473 Per BCEP: 8.25 0 8.27 V +11060 V0474 Per ACYG 5.15 0 5.25 V +11391 V0475 Per ACYG 7.15 0 7.26 V +13178 V0480 Per ACYG 6.23 0 6.30 V +19178 V0490 Per E: 6.98 0 7.27 V +19255 V0491 Per BY 7.10 1 0.03 V +21144 V0492 Per RS: 6.7 1 0.07 V +12527 V0493 Per WR 10.6 1 0.04 V +16724 V0496 Per ACV 7.70 0 7.79 U +17323 V0497 Per ACV 9.52 0 9.56 V +17911 V0498 Per ACV 8.96 0 9.04 B +10961 V0505 Per EA/DM 6.87 0 7.46 V +14264 V0509 Per DSCT 6.47 0 6.64 V +15041 V0510 Per RS 7.30 1 0.22 V +10805 V0520 Per IA 6.55 0 6.66 V +14544 V0521 Per DSCTC 6.41 0 6.42 V +20063 V0545 Per LPB 6.22 1 0.04 V +8182 V0547 Per LB: 9.91 0 10.06 Hp +9017 V0548 Per BE 9.65 0 9.98 Hp +10463 V0549 Per BE 7.81 0 7.88 Hp +10489 V0550 Per SRC: 8.71 0 8.88 Hp +10633 V0551 Per ACYG 6.54 0 6.57 Hp +10981 V0552 Per EB 8.30 0 8.43 Hp +11098 V0553 Per ACYG: 7.54 0 7.66 Hp +11279 V0554 Per ACYG: 6.28 0 6.36 Hp +11722 V0555 Per BE 8.96 0 9.15 Hp +11888 V0556 Per ACYG: 8.86 0 9.08 Hp +12478 V0557 Per ACV: 7.32 0 7.37 Hp +12544 V0558 Per LB: 9.34 0 9.49 Hp +12565 V0559 Per ACV: 8.96 0 9.06 Hp +12569 V0560 Per LB: 8.43 0 8.53 Hp +12587 V0561 Per SRD 7.72 0 7.82 Hp +12662 V0562 Per ACV: 8.86 0 8.99 Hp +13058 V0563 Per LB 8.22 0 8.40 Hp +13252 V0564 Per LB: 8.47 0 8.59 Hp +13785 V0565 Per BY: 9.34 0 9.54 Hp +13829 V0566 Per ACV: 9.38 0 9.50 Hp +14213 V0567 Per SRD 7.91 0 8.05 Hp +14478 V0568 Per BY: 9.76 0 9.92 Hp +14616 V0569 Per LB: 7.87 0 7.98 Hp +14673 V0570 Per EB: 8.15 0 8.25 Hp +14824 V0571 Per LB 7.17 0 7.34 Hp +15193 V0572 Per EA 6.50 0 6.79 Hp +15241 V0573 Per E: 6.11 0 6.19 Hp +15721 V0574 Per SRB 7.26 0 7.39 Hp +15770 V0575 Per LPB: 5.27 0 5.32 Hp +15988 V0576 Per LPB: 6.04 0 6.08 Hp +16563 V0577 Per BY: 8.24 0 8.35 Hp +16644 V0578 Per EB 8.94 0 9.10 Hp +17042 V0579 Per RRC: 7.87 0 7.94 Hp +17666 V0580 Per E: 7.75 0 8.07 Hp +18424 V0581 Per BE 7.77 0 7.87 Hp +19335 V0582 Per RS: 5.63 0 5.74 Hp +19487 V0583 Per LB 7.51 0 7.83 Hp +19647 V0584 Per BE 8.00 0 8.19 Hp +19992 V0585 Per SRD: 7.48 0 7.51 Hp +19991 V0586 Per BE 8.00 0 8.11 Hp +20095 V0587 Per LB: 8.40 0 8.52 Hp +20235 V0588 Per SRB 7.77 0 7.93 Hp +20436 V0589 Per LB 7.81 0 7.90 Hp +20570 V0590 Per EB: 7.20 0 7.44 Hp +20993 V0591 Per LB: 7.80 0 8.13 Hp +22050 V0592 Per EB 8.30 0 8.65 Hp +22272 V0593 Per EB 8.67 0 8.87 Hp +22513 V0594 Per LB: 7.64 0 7.74 Hp +19391 V0643 Per SRS 7.68 0 7.80 Hp +14976 V0683 Per BY 8.15 1 0.02 V G5V +15609 V0686 Per BY 7.94 1 0.04 V 5.95 K0V +15767 V0687 Per BY 7.96 1 0.02 V 2.54 G0 +17094 V0736 Per EA 9.73 0 10.03 10.0 V 48678.948 3.76674 08 A4IV +14871 V0889 Per GDOR 7.26 1 0.02 B 0.34306 F1 +14576 β Per EA/SD 2.12 0 3.39 V 45641.5135 2.8673043 14 B8V +14328 γ Per EA/GS 3.63 1 0.55 B +17358 δ Per GCAS: 2.99 0 3.04 V B5III +18532 ε Per BCEP 2.88 0 3.00 V +18614 χ Per * 4.00 0 4.06 V O7.5III(f) +17448 ο Per ELL 3.79 0 3.88 V 36459.0 4.4191666 B1III+B2V +14354 Ï Per SRB 3.30 0 4.0 V 50. M4IIb-IIIa +13531 Ï„ Per EA/GS 3.94 0 4.07 V +8068 φ Per GCAS 3.96 0 4.11 V 19.5 B2Vne+B3Vne +16826 ψ Per GCAS 4.17 0 4.28 V B5III-Vne +20070 b Per ELL 4.52 0 4.68 V 43141.728 1.5273643 A2V +118249 S Phe SRB 8.6 0 10.6 p 141. M3e-M6IIIe +115870 RV Phe RRAB 11.12 0 12.26 V 41915.525 0.5964182 15 F6: +117254 SX Phe SXPHE(B) 6.76 0 7.53 V 38636.6170 0.054964438 34 A5-F4 +7024 SY Phe ISB: 9.75 0 9.96 V F8 +5955 AD Phe EW/KW 10.27 0 10.80 10.80 V 44250.598 0.3799252 +7183 AE Phe EW/KW 7.56 0 8.25 8.19 V 43732.8819 0.362377 G0V+G0V +2125 AG Phe EA/KE: 8.87 0 9.36 8.95 V 44170.7948 0.75533809 22 A9V +5438 AI Phe EA/DM 8.58 0 9.35 8.89 V 43410.6885 24.592325 02 F7V+G5:V +6207 AK Phe LB 7.40 0 7.64 V M4III +6952 AW Phe LB: 6.22 1 0.15 V M2III +116601 AY Phe LB 7.76 0 8.04 V M4III +3903 AZ Phe DSCTC 6.47 1 0.01 V 0.0492 A9/F0III +2388 BB Phe DSCTC 6.18 1 0.04 V +6408 BC Phe RS 8.4 1 0.06 V +8593 BD Phe DSCTC 5.90 0 5.94 V +117515 BF Phe DSCTC 7.7 1 0.03 V +3812 BG Phe BE 10.31 0 10.36 V +457 BH Phe SRB: 7.31 0 7.63 Hp +500 BI Phe SRB: 9.56 0 9.84 Hp +632 BK Phe LB: 9.17 0 9.30 Hp +883 BL Phe EB 8.34 0 8.68 Hp +1507 BM Phe EW 9.27 0 9.53 Hp +1555 BN Phe SRB 7.81 0 7.93 Hp +1627 BO Phe SRB 8.58 0 9.56 Hp +1880 BP Phe LB: 7.72 0 7.84 Hp +2005 BQ Phe SXPHE: 10.47 0 10.60 Hp +2462 BR Phe LB: 9.01 0 9.13 Hp +2960 BS Phe SRB 8.38 0 8.55 Hp +3852 BT Phe SRB 9.38 0 9.64 Hp +3894 BU Phe SRB 7.15 0 7.26 Hp +4328 BV Phe BY: 12.09 0 12.59 Hp +4448 BW Phe BY: 9.05 0 9.19 Hp +4658 BX Phe SRB 7.33 0 7.50 Hp +6584 BY Phe SR 7.87 0 7.91 Hp +6609 BZ Phe LB: 8.88 0 9.03 Hp +6856 CC Phe BY: 9.41 0 9.55 Hp +7940 CD Phe ACV: 8.69 0 8.74 Hp +8344 CE Phe SRB 7.04 0 7.22 Hp +9812 CF Phe SRB 7.05 0 7.21 Hp +116103 CG Phe SXPHE: 10.23 0 10.57 Hp +116640 CH Phe LB: 7.42 0 7.53 Hp +117099 CI Phe SRB: 7.22 0 7.81 Hp +117276 CK Phe LB 7.24 0 7.41 Hp +117669 CL Phe BY: 9.70 0 9.83 Hp +7649 CU Phe GDOR: 6.68 1 0.06 V F0V +10304 CV Phe DSCTC 7.84 1 0.02 V 0.080 F0V +6200 CX Phe EA 8.77 0 9.14 9.0 V 48736.140 19.9757 F0V +6867 γ Phe LB: 3.39 0 3.49 V M0IIIa +5348 ζ Phe EA/DM 3.91 0 4.42 V 41643.6890 1.6697671 12 B6V+B9V +116389 ι Phe ACV 4.70 0 4.75 V 12.5 A2Vp(Sr-Cr-Eu) +3277 χ Phe ACV 5.68 0 5.78 V 42314.48 3.9516 A9p(Sr-Cr-Eu) +3949 Ï Phe DSCT 5.17 0 5.27 V 0.110 F3III +8837 ψ Phe SR 4.3 0 4.5 V 30. M4III +22170 R Pic SR 6.35 0 10.1 V 44922. 170.9 M1IIe-M4IIe +24126 S Pic M 6.5 0 14.0 V 39595. 428.0 36 M6.5e-M8III-IIe +24468 T Pic M 7.9 0 14.4 V 41283. 200.58 49 M6IIIe +22466 U Pic RRAB 10.68 0 11.87 V 41666.449 0.4403710 12 A5-F6 +26958 W Pic LB 11.8 2 15.0 p C(N) +28474 RT Pic E: 9.9 2 12.5 p 24120.704 G8V +29583 ST Pic RR 9.29 0 9.77 V 42034.450 0.48574 22 F5V +24733 SU Pic EA/DM 10.15 0 10.64 10.4 V 28815.475 1.838115 A0 +28596 SW Pic LB: 6.45 1 0.12 V M4III +22340 SY Pic ACV 8.84 0 8.87 V 15.864 A5p(Sr-Eu) +27843 SZ Pic RS 7.81 0 7.97 V 43931.54 2.441 G8V +24603 TT Pic ACV 7.1 1 0.07 V +23833 TU Pic ACV 6.93 1 0.03 V +22370 TV Pic ELL 7.5 1 0.12 V +26300 TX Pic RS 6.08 0 6.12 V +29071 TY Pic RS 7.61 0 7.68 V +31062 TZ Pic RS 7.59 0 7.66 V +26373 UY Pic RS: 7.86 0 7.97 V +22868 UZ Pic E: 8.28 0 8.57 Hp +22971 VV Pic LB: 7.91 0 8.01 Hp +23196 VW Pic EW 7.06 0 7.15 Hp +23491 VX Pic SRB 8.71 0 8.93 Hp +23761 VY Pic LB: 8.30 0 8.54 Hp +24186 VZ Pic BY: 8.90 0 9.22 Hp +24943 WW Pic SRA 6.49 0 6.98 Hp +25579 WX Pic LB: 8.74 0 8.86 Hp +26679 WY Pic SRB: 8.05 0 8.20 Hp +26772 WZ Pic E: 9.26 0 9.35 Hp +26983 XX Pic SRB 7.54 0 7.74 Hp +27170 XY Pic EW 7.61 0 7.66 Hp +27134 XZ Pic BY: 9.30 0 9.60 Hp +27462 YY Pic DSCTC 7.57 0 7.64 Hp +27874 YZ Pic SRB 8.55 0 8.77 Hp +28134 ZZ Pic LB 8.45 0 9.14 Hp +28217 AA Pic LB: 8.15 0 8.26 Hp +30034 AB Pic BY: 9.21 0 9.35 Hp +30237 AC Pic SRB 6.78 0 6.89 Hp +30319 AD Pic LB 8.61 0 8.96 Hp +31068 AE Pic EB: 6.09 0 6.14 Hp +31711 AK Pic BY 6.14 0 6.19 V 2.60 G0V+K2/3V +29276 δ Pic EB/D: 4.65 0 4.90 4.83 V 41695.336 1.672541 B3III+O9V +1771 V Psc UV: 11. 0 12. p M1V +4652 W Psc M 11.4 0 14.8 p 45337. 188.1 48 M2e-M4 +116339 Y Psc EA/SD 10.1 0 13.1 p 45635.241 3.765767 10 A3+K0IV +5914 Z Psc SRB 8.8 0 10.1 p 144. C7,2(N0) +5746 RT Psc SRB 8.2 0 10.4 p 70. M0 +5803 RU Psc RRC 9.93 0 10.40 V 40143.4027 0.390385 48 A7-F3 +6554 RW Psc SRB 11.2 0 12.4 p 27139. 154. 48 M0e-M3 +6301 SS Psc RRC 10.73 0 11.21 V 19130.305 0.28779276 44 A7-F2 +114639 SZ Psc EA/DS/RS 7.18 0 7.72 7.38 V 35741.8461 3.9657900 11 K1IV-V+F8V +2219 TV Psc SR 4.65 0 5.42 V 31387. 49.1 M3III-M4IIIb +3129 TW Psc LB 10.6 0 12.2 p M8 +117245 TX Psc LB 4.79 0 5.20 V C7,2(N0)(Tc) +1196 UU Psc ELL/DW: 6.01 0 6.05 6.04 V 39765.175 0.841678 F1IV-V+F1IV-V +5980 UV Psc EA/D:/RS 8.91 0 10.05 9.54 V 43406.5225 0.8610482 12 G2 +8210 UZ Psc ACV 6.43 0 6.65 V 39757.91 4.1327 50 A2p(Cr-Eu-Sr-Si) +6981 VX Psc DSCT 5.90 0 6.02 V 0.131 A3V +8271 VY Psc DSCTC 6.54 0 6.59 V 0.2 A7III +115819 VZ Psc EW/KW 10.20 0 10.45 10.43 V 43832.206 0.2611865 +4655 WW Psc LB 5.97 0 6.11 V M2III +9809 WZ Psc SR 6.20 0 6.38 V 20. M4 +3685 XX Psc DSCTC: 6.13 1 0.04 V 0.1040 F0V +117887 XZ Psc LB 5.61 0 5.97 V M5IIb +154 YY Psc LB: 4.31 0 4.41 V M3III +7119 AE Psc E 7.09 1 0.16 V 1.4175 G5 +2903 AG Psc BCEP 5.81 0 5.94 V 0.08 B2.5IV +7042 AN Psc LB 8.08 0 8.28 V MB +664 AP Psc EB/GS 6.1 0 6.3 V +6307 AQ Psc EW/KW 8.60 0 8.96 V +6454 AR Psc XI+RS 8.2 0 9.1 p +113478 AZ Psc RS: 7.32 0 7.50 V +443 BC Psc RS 4.61 1 0.08 V +5007 BE Psc RS 8.8 1 0.21 V +7134 BF Psc RS 7.81 1 0.02 V +118286 BH Psc DSCTC 7.13 1 0.09 V +3121 BK Psc RS 10.41 0 10.60 V +117473 BR Psc BY 8.93 0 9.03 V +118293 BT Psc IB: 7.8 1 0.09 B +159 BU Psc IB: 6.9 1 0.06 B +1325 BV Psc SRB: 6.89 0 7.07 Hp +1429 BW Psc SRB 6.88 0 6.99 Hp +1435 BX Psc EB: 7.61 0 7.67 Hp +1497 BY Psc SRB 8.42 0 8.63 Hp +1609 BZ Psc SRB: 7.55 0 7.66 Hp +1843 CC Psc SRB: 9.92 0 10.17 Hp +1938 CD Psc SRD: 9.81 0 9.99 Hp +1941 CE Psc SRB 7.43 0 7.61 Hp +2080 CF Psc LPB 6.84 0 6.87 Hp +2123 CG Psc SRD 8.35 0 8.49 Hp +2340 CH Psc SRD 7.80 0 7.94 Hp +3518 CI Psc SRB 7.63 0 7.78 Hp +3808 CK Psc LB: 8.20 0 8.30 Hp +4304 CL Psc LB: 9.33 0 9.51 Hp +4316 CM Psc SR: 8.72 0 8.83 Hp +4433 CN Psc SRB 7.60 0 7.76 Hp +4452 CO Psc LB: 7.70 0 7.81 Hp +4593 CP Psc EB: 10.69 0 11.05 Hp +4945 CQ Psc SRD+EA 7.97 0 8.11 Hp +5091 CR Psc LB: 7.42 0 7.52 Hp +5409 CS Psc SRB 9.65 0 9.97 Hp +5525 CT Psc SRB 8.03 0 8.31 Hp +5662 CU Psc BY: 11.87 0 12.25 Hp +6220 CV Psc SRB 7.76 0 7.90 Hp +6453 CW Psc SRB 7.38 0 7.60 Hp +6998 CX Psc LB: 8.96 0 9.06 Hp +7505 CY Psc SRB 6.34 0 6.55 Hp +7768 CZ Psc LB: 9.28 0 9.44 Hp +8655 DD Psc LB: 8.16 0 8.26 Hp +9355 DE Psc SRD 7.43 0 7.56 Hp +9599 DF Psc BY: 11.84 0 12.07 Hp +112877 DG Psc LB: 8.74 0 8.91 Hp +113095 DH Psc LB: 8.69 0 8.80 Hp +113556 DI Psc LB: 7.28 0 7.38 Hp +113667 DK Psc LB: 8.38 0 8.51 Hp +114489 DL Psc LB 6.12 0 6.66 Hp +116223 DM Psc SRB 7.96 0 8.10 Hp +117311 DN Psc LB: 10.57 0 10.77 Hp +117459 DO Psc BY: 12.25 0 12.58 Hp +118222 DP Psc SRD 8.25 0 8.45 Hp +118307 DQ Psc SRB 6.82 0 6.94 Hp +109 DR Psc DSCTC 7.29 0 7.33 Hp +5772 DT Psc SR: 6.37 0 6.45 Hp +3632 EL Psc SRS 5.28 1 0.22 V 12. M4IIIa +6339 EN Psc BY 8.49 1 0.02 V 13.87 K2V +6917 EO Psc RS 7.74 1 0.02 V 10.49 K2V +8156 EU Psc EA 8.44 0 8.54 8.51 V 48648.639 1.69261 05 F0 +1295 EZ Psc BY 10.5 0 10.7 * 4.7901 M4 +2510 FM Psc GDOR 8.01 0 8.11 Hp 0.65070 F1V +3937 FT Psc BY 10.9 0 11.1 * 1.6968 M3.5 +7987 HU Psc DSCTC 7.57 1 0.02 B 0.0435787 F1V +9487 α Psc ACV 3.82 0 3.83 Hp +115738 κ Psc ACV 4.87 0 4.95 V 0.58525 A0p(Cr-Sr-Si-Eu) +110743 T PsA CST: 8.1 0 p F0 +108869 TT PsA LB 7.00 0 7.49 V M7III +113283 TW PsA BY 6.44 0 6.51 V 10.3 K5Ve +113598 TZ PsA RS 8.40 0 8.49 V +108975 UU PsA BE 5.86 0 5.91 b +111350 UW PsA DSCTC 8.2 1 0.08 B +106929 UX PsA LB: 7.42 0 7.56 Hp +107054 UY PsA LB: 7.72 0 8.08 Hp +107135 UZ PsA LB 7.27 0 7.40 Hp +108597 VV PsA BE 6.99 0 7.11 Hp +108982 VW PsA LB: 7.50 0 7.75 Hp +109282 VX PsA LB: 6.97 0 7.07 Hp +109884 VY PsA EB 8.81 0 9.01 Hp +111809 VZ PsA EA 5.68 0 5.72 Hp +112312 WW PsA BY+UV 11.81 0 12.16 Hp +113532 WX PsA DSCTC 5.57 0 5.59 Hp +113549 WY PsA LB: 8.71 0 8.87 Hp +114022 WZ PsA LB 8.10 0 8.36 Hp +113860 Ï€ PsA CST: 5.10 0 5.12 V F0V+F3V +37415 R Pup SRD 6.50 0 6.71 V G2Ia-0 +37950 S Pup CST 7.2 0 V A2 +38074 T Pup CST 6.14 0 V M2III +38957 V Pup EB/SD 4.35 0 4.92 4.82 V 45367.6063 1.4544859 B1Vp+B3: +37893 W Pup M 7.15 0 13.6 V 44956. 119.7 47 M1e-M6e +36685 X Pup DCEP 7.82 0 9.24 V 41108.8 25.9610 15 F6-G2 +36669 Z Pup M 7.2 0 15.3 V 43075. 508.6 38 M4e-M9e +40233 RS Pup DCEP 6.52 0 7.67 V 35734.426 41.3876 24 F9-G7 +39583 RT Pup SRB 10.2 0 11.0 B 100. C6,2(Nb) +39751 RU Pup SRB 10.3 0 12.2 p 425. C5,4(N3) +32115 RV Pup M 9.3 0 13.0 p 30093. 187.96 50 M1e-M9 +36544 RY Pup CST 9.17 0 B K5 +37809 RZ Pup CST 8.8 0 p K2 +32675 ST Pup CWA 9.28 0 10.68 V 44023.96 19. F2:e-G2I +38772 SU Pup M 9.3 2 14.0 p 31385. 339.8 M(S4,2)e +40593 SV Pup M 9.0 2 13.1 p 36284. 166.52 M5e +33912 TX Pup CST 9.2 0 p F7V +36683 TY Pup EW/KE 8.40 0 8.89 8.87 V 34412.106 0.819235 A9n +37497 UZ Pup EB/KE 9.35 0 10.34 10.0 V 44613.6982 0.79485120 A6+A6 +36617 VW Pup DCEP 11.00 0 11.75 V 43521.291 4.28537 22 F5-G0 +36666 VX Pup CEP(B) 7.73 0 8.59 V 36237.953 3.01087 50 F5-F8 +37207 VZ Pup DCEP 8.92 0 10.35 V 41121.19 23.1710 17 F5-G2 +37511 WW Pup DCEP 10.03 0 11.03 V 41047.29 5.516724 31 F5-F9 +37515 WX Pup DCEP 8.76 0 9.44 V 35042.184 8.937050 31 F6-G1 +38944 WY Pup DCEP 10.18 0 10.96 V 40925.40 5.25080 25 F5-F9 +39144 WZ Pup DCEP 9.85 0 10.76 V 34889.465 5.027286 27 F5-G2 +39849 XX Pup RRAB 10.49 0 11.77 V 41773.255 0.517181 13 A0-A7 +40277 XZ Pup EA/SD 7.75 0 10.26 7.90 V 42412.1945 2.1923631 21 A0 +41061 AC Pup LB 8.9 0 10.1 V C5,4(N) +38063 AD Pup DCEP 9.27 0 10.36 V 41126.18 13.5940 25 F5-G2 +38907 AP Pup DCEP 7.02 0 7.78 V 40689.21 5.0843102 51 F5-F7 +38965 AQ Pup DCEP 8.08 0 9.39 V 44676.57 30.104 17 F5Ib-G2Ib +39376 AR Pup RVB 8.7 0 10.9 p 74.58 F0I-II-F8I-II +39967 AS Pup M 9.0 0 12.8 p 35470. 324.65 50 M7e-M9 +40178 AT Pup DCEP 7.53 0 8.41 V 40741.22 6.6650 29 F8-G0 +38241 BM Pup DCEP 10.43 0 11.27 V 30792.566 7.19853 25 +39666 BN Pup DCEP 9.20 0 10.40 V 28078.04 13.6731 29 G4 +41352 CO Pup CWA 11.25 0 12.46 B 40979.52 16.0192 45 +37506 EK Pup DCEPS 10.46 0 10.88 V 35573.46 2.62594 45 +35584 HH Pup RRAB 10.44 0 11.78 V 38500.2486 0.39074628 12 A3II-III-F5 +36762 HI Pup EW/KW 10.7 0 11.0 11.0 V 34344.548 0.432651 +37779 HK Pup RRAB 11.4 0 12.4 p 36608.383 0.7342382 20 +40078 HL Pup CEP 11.1 0 11.8 p 30700.58 3.48250 25 +36773 KQ Pup LC 4.82 0 5.17 V M2epIab+B2V +38441 KZ Pup RR 11.3 0 12.8 p +38569 LL Pup CEP 11.2 0 12.3 p 28612.03 5.07753 24 +38854 LR Pup CEP 11.1 0 12.3 p 29631.743 3.33124 18 +39010 LS Pup CEP 9.8 0 10.8 p 38376.500 14.1464 35 +40274 MX Pup GCAS 4.60 0 4.92 V B1.5III-IVe +37174 MY Pup DCEPS 5.54 0 5.76 V 41043.72 5.69482 37 F4Iab +39487 MZ Pup LC: 5.2 0 5.44 V M1IIb +41361 NO Pup EA/KE: 6.53 0 6.98 6.66 V 41361.7635 1.25689059 12 B8V +33189 NP Pup LB 6.25 0 6.52 V C7,2(N0) +38502 NQ Pup LB 7.55 0 7.68 V S6,3 +40091 NS Pup LC 4.4 0 4.5 V K3Ib +35363 NV Pup GCAS 4.58 0 4.78 V B3Ve +35406 NW Pup BCEP+ELL: 5.11 1 0.07 V 0.125 B3Vea +35488 NX Pup INA 10.00 0 11.16 V A1-F2IIIe +38580 OR Pup LB: 6.85 0 7.1 V M7 +40321 OS Pup GCAS: 5.07 0 5.2 V B1.5IV +34899 OU Pup ACV 4.86 0 4.93 V 0.9183 A0p(Si) +36778 OW Pup GCAS 5.37 0 5.56 V B3Vne +37982 OX Pup ACV 6.30 0 6.36 V 2.41 B9p(Si) +39866 PQ Pup GCAS 6.17 0 6.42 V B4Ve +35029 PR Pup ACV 5.69 0 5.74 V 1.9347 40 A0p(Si) +36608 PS Pup ELL 6.62 1 0.02 0.02 V 1.3422 A0 +37036 PT Pup BCEP(B) 5.72 0 5.74 V 44254.151 0.162840 50 B2III +37173 PU Pup EB 4.69 0 4.75 4.74 V 43100.000 2.57895 B9 +37842 PV Pup EA/DM 6.88 0 7.32 7.31 V 43119.7334 1.660728 10 A8V+A8V +38792 PX Pup LB: 6.25 1 0.42 V M6III +39153 PY Pup ACV 6.12 1 0.04 V 43196.00 6.82 50 A0p(Si) +39329 QQ Pup ACV 6.6 1 0.06 V 43174.000 2.226 50 A0p(Si) +38159 QS Pup BCEP 5.84 0 V 0.1182 B1.5IV +38370 QU Pup BCEP(B) 6.04 0 V 43480.713 0.1927 B2IV +34834 QW Pup ACV 4.47 1 0.02 V +38031 QY Pup SRD 6.24 0 6.71 V +38455 QZ Pup ELL 4.47 0 4.54 V +39360 V0336 Pup ACV 5.52 1 0.02 V +39439 V0337 Pup ACV 7.6 1 0.03 V +31400 V0338 Pup RRAB 9.07 0 9.25 V +32434 V0339 Pup GCAS 6.15 0 6.27 V +38737 V0342 Pup SXARI: 6.7 1 0.04 V +36992 V0344 Pup RS 6.88 0 6.99 V +36381 V0349 Pup DSCTC 7.49 0 7.53 B +36500 V0350 Pup BCEP 7.48 0 7.52 B +39676 V0355 Pup DSCTC 8.5 1 0.04 B +29103 V0356 Pup RS: 8.33 0 8.46 Hp +31625 V0357 Pup LB: 8.11 0 8.21 Hp +33487 V0358 Pup EA: 9.30 0 9.54 Hp +33549 V0359 Pup LB: 8.88 0 9.04 Hp +33864 V0360 Pup EB: 6.52 0 6.58 Hp +34396 V0361 Pup EW 8.08 0 8.39 Hp +34659 V0362 Pup E: 7.52 0 7.63 Hp +34817 V0363 Pup LPB 5.89 0 5.91 Hp +34836 V0364 Pup IA: 8.70 0 9.75 Hp +35447 V0365 Pup EA 7.80 0 7.91 Hp +35607 V0366 Pup EA: 8.07 0 8.29 Hp +35898 V0367 Pup LB: 8.36 0 8.46 Hp +35960 V0368 Pup DSCTC 6.20 0 6.23 Hp +36227 V0369 Pup ACYG: 7.66 0 7.76 Hp +36250 V0370 Pup BE 8.47 0 8.59 Hp +36246 V0371 Pup LPB 7.03 0 7.06 Hp +36349 V0372 Pup BY: 9.97 0 10.13 Hp +36404 V0373 Pup BE 7.61 0 7.81 Hp +36409 V0374 Pup SRB 7.28 0 7.50 Hp +36605 V0375 Pup LPB: 8.63 0 8.69 Hp +36728 V0376 Pup EB: 6.21 0 6.24 Hp +36802 V0377 Pup LB 7.45 0 7.64 Hp +36981 V0378 Pup EB: 5.60 0 5.68 Hp +36971 V0379 Pup ACV 9.12 0 9.21 Hp +37099 V0380 Pup GCAS: 9.19 0 9.61 Hp +37296 V0381 Pup EB 7.26 0 7.71 Hp +37272 V0382 Pup BY: 11.01 0 11.22 Hp +37343 V0383 Pup SRB: 7.40 0 7.52 Hp +37433 V0384 Pup LC 8.76 0 9.40 Hp +37692 V0385 Pup ACV 8.00 0 8.09 Hp +37668 V0386 Pup SXARI: 8.66 0 8.81 Hp +37675 V0387 Pup BE 6.47 0 6.59 Hp +37743 V0388 Pup BE 9.95 0 10.16 Hp +37758 V0389 Pup IA: 8.17 0 8.35 Hp +37751 V0390 Pup EA 5.53 0 5.62 Hp +37927 V0391 Pup DSCTC: 7.88 0 7.95 Hp +37915 V0392 Pup E: 5.82 0 5.93 Hp +37925 V0393 Pup ELL 7.69 0 7.73 Hp +37985 V0394 Pup SRD 7.71 0 7.82 Hp +38110 V0395 Pup LPB 7.14 0 7.17 Hp +38155 V0396 Pup SRD 8.79 0 8.99 Hp +38167 V0397 Pup EA 5.91 0 6.09 Hp +38173 V0398 Pup ACYG: 7.80 0 7.91 Hp +38186 V0399 Pup EA 9.27 0 9.56 Hp +38326 V0400 Pup LB: 8.41 0 8.52 Hp +38338 V0401 Pup EA: 9.44 0 9.76 Hp +38430 V0402 Pup ACYG: 9.21 0 9.30 Hp +38439 V0403 Pup BE: 9.01 0 9.12 Hp +38650 V0404 Pup LPB 7.29 0 7.32 Hp +38866 V0405 Pup EB 8.72 0 8.92 Hp +38787 V0406 Pup LC 7.39 0 8.15 Hp +38923 V0407 Pup SRC: 6.82 0 7.46 Hp +39020 V0408 Pup BE 9.20 0 9.35 Hp +39090 V0409 Pup E: 8.38 0 8.47 Hp +39084 V0410 Pup EB 6.69 0 6.74 Hp +39128 V0411 Pup SRB 8.28 0 8.62 Hp +39131 V0412 Pup LB: 8.74 0 8.86 Hp +39162 V0413 Pup LPB: 7.62 0 7.69 Hp +39229 V0414 Pup ACV: 8.77 0 8.91 Hp +39290 V0415 Pup LPB 7.86 0 7.89 Hp +39365 V0416 Pup SRB: 7.20 0 7.45 Hp +39452 V0417 Pup E: 9.76 0 10.02 Hp +39521 V0418 Pup LB: 7.32 0 7.47 Hp +39637 V0419 Pup LB: 11.09 0 11.41 Hp +39834 V0420 Pup BE 6.30 0 6.57 Hp +39968 V0421 Pup EB 9.07 0 9.23 Hp +40005 V0422 Pup LB: 8.93 0 9.04 Hp +40066 V0423 Pup ACV 7.46 0 7.52 Hp +40074 V0424 Pup LB: 8.93 0 9.04 Hp +40139 V0425 Pup EB: 7.81 0 7.97 Hp +40148 V0426 Pup BE: 7.68 0 7.82 Hp +40144 V0427 Pup SRB: 6.46 0 6.82 Hp +40264 V0428 Pup SRB 7.69 0 7.84 Hp +40409 V0429 Pup LB: 8.95 0 9.05 Hp +40459 V0430 Pup BY: 10.13 0 10.26 Hp +40596 V0431 Pup E 7.21 0 7.32 Hp +40777 V0432 Pup ACV: 6.67 0 6.70 Hp +40805 V0433 Pup LB: 9.41 0 9.62 Hp +40853 V0434 Pup EA 7.76 0 8.38 Hp +40871 V0435 Pup LB: 8.33 0 8.43 Hp +41107 V0436 Pup LB 6.28 0 6.40 Hp +41121 V0437 Pup LB 8.72 0 8.92 Hp +41250 V0438 Pup EA 5.90 0 6.07 Hp +41324 V0439 Pup SRC 8.51 0 8.81 Hp +41390 V0440 Pup LB 8.77 0 9.01 Hp +37444 V0442 Pup ACYG 7.72 0 7.84 Hp +37876 V0443 Pup E/WR 10.49 1 0.04 V +37345 V0468 Pup BE 5.92 0 6.02 V +28796 V0575 Pup RS 6.62 1 0.04 V 3.3 G2V+G5V +41278 V0592 Pup RS 7.83 0 7.87 V 1.35 G1V+G3V +41475 V0596 Pup EA/DM 6.57 0 7.05 7.03 V 44620.6589 4.5961832 06 A1V+A1V +38466 V0615 Pup EA 8.91 0 8.98 8.97 V 52950.772 3.38771 16 B5V +39390 V0626 Pup EA 9.04 0 9.16 9.10 V 47913.248 1.425902 11 A0V +29057 V0647 Pup DSCT 6.74 0 6.78 V 0.1167053 F0V +39206 V0683 Pup LPB 8.28 0 8.36 Hp 1.21806 B7III/IV +39429 ζ Pup ACYG: 2.11 0 2.17 Hp +38070 ο Pup BE: 4.43 0 4.46 Hp +35264 Ï€ Pup SRD: 2.80 0 2.87 Hp +39757 Ï Pup DSCT 2.68 0 2.87 V 44995.905 0.1408809 48 F6IIp +36377 σ Pup ELL: 3.36 0 3.39 Hp +42975 R Pyx M 10.4 0 15.1 B 18606. 364.7 C(R)e +43541 RZ Pyx EB/KE 8.83 0 9.72 9.69 B 38431.474 0.656273 B7V +42733 TX Pyx E/KE 9.5 0 9.9 9.8 p 27844.475 1.123745 A3 +44164 TY Pyx EA/D/RS 6.85 0 7.50 7.48 V 43187.2304 3.1985787 07 G5+G5 +42619 TZ Pyx EW 10.7 0 11.1 11.1 V 28847.550 0.6973125 +43093 UZ Pyx SRB 6.99 0 7.47 V 100. C5,5J(R8) +41939 VX Pyx RS 6.32 0 6.42 V +43736 VY Pyx CWB 7.65 0 8.08 B +41515 XY Pyx EB 5.68 0 5.76 Hp +41541 XZ Pyx LB: 9.22 0 9.34 Hp +41535 YY Pyx SRA 9.07 0 9.36 Hp +41586 YZ Pyx BCEP: 7.62 0 7.66 Hp +41670 ZZ Pyx LB: 8.63 0 8.73 Hp +41714 AA Pyx ACV 9.07 0 9.12 Hp +41726 AB Pyx LC 6.58 0 6.89 Hp +41811 AC Pyx EA: 7.80 0 8.10 Hp +42110 AD Pyx LB 8.48 0 8.73 Hp +42469 AE Pyx SRD: 8.17 0 8.25 Hp +42533 AF Pyx E: 8.09 0 8.27 Hp +42756 AG Pyx LB: 8.36 0 8.46 Hp +42802 AH Pyx LB 8.45 0 8.69 Hp +43114 AI Pyx IA: 6.23 0 6.36 Hp +43215 AK Pyx LB 6.09 0 6.51 Hp +44281 AL Pyx LB 7.05 0 7.35 Hp +44308 AM Pyx LB: 8.20 0 8.31 Hp +45009 AN Pyx ACV: 8.25 0 8.30 Hp +45373 AO Pyx LB 8.35 0 8.73 Hp +45679 AP Pyx LB: 7.45 0 7.57 Hp +45706 AQ Pyx SRD 9.10 0 9.36 Hp +46241 AR Pyx EB: 8.72 0 8.97 Hp +42214 CS Pyx BY 8.08 1 0.03 V 13.97 G8/K0V +42281 CT Pyx BY 8.72 1 0.04 V 16.41 K1V +44851 CY Pyx E: 8.27 0 8.36 V 0.840 G3V +41980 DK Pyx EA 7.85 0 7.97 7.91 V 48112.955 6.17848 06 B3III +45945 DN Pyx EA 8.45 0 8.55 8.55 V 52764.617 6.64046 04 A0V +21252 R Ret M 6.5 0 14.2 V 41703. 278.46 48 M4e-M7.5e +19231 SX Ret SRB 9.24 0 9.80 V 40622. 100. M4-5III +19917 TT Ret ACV 6.37 1 0.01 V +19945 TX Ret DSCTC 8.6 1 0.03 B +16204 UU Ret SRB 9.26 0 9.45 Hp +16807 UV Ret LB: 9.20 0 9.33 Hp +17968 UW Ret SRB 7.76 0 7.92 Hp +18517 UX Ret EW 8.32 0 9.02 Hp +18659 UY Ret LB: 9.53 0 9.68 Hp +19530 UZ Ret DSCTC 9.28 0 9.34 Hp +20304 VV Ret LB 8.59 0 8.77 Hp +20657 VW Ret EA 8.76 0 9.28 Hp +16092 VY Ret EA 7.89 0 8.47 8.43 V 52898.794 14.21605 F5V +18744 γ Ret SR 4.42 0 4.64 V 25. M4III +98085 S Sge DCEP 5.24 0 6.04 V 42678.792 8.382086 31 F6Ib-G5Ib +95173 T Sge SRB 10.4 0 11.9 p 165.5 M4-M6.5 +94910 U Sge EA/SD 6.45 0 9.28 6.71 V 17130.4114 3.38061933 17 B8V+G2IV-III +98909 X Sge SR 7.0 0 9.7 V 25648. 196. 50 C6-,5(N3) +93987 SV Sge RCB 11.5 0 16.2 p C0-3,2-3(R2) +98438 VZ Sge LB 5.27 0 5.57 V M4IIIa +98662 BF Sge LB 10.3 0 12.1 B C4,4(N3) +98430 CW Sge EW/DW 11.0 0 11.8 11.7 p 37501.457 0.660347966 F5 +99527 FG Sge * 9.45 0 13.6 B B4Ieq-K2Ib +95657 HT Sge ACYG: 8.07 1 0.15 B B7Ia +98780 HU Sge LB 7.8 0 8.8 p M0 +94289 QR Sge E:/WR 11.04 0 11.12 V +97456 QT Sge E:/WR 10.50 1 0.04 V +97796 QZ Sge E: 6.16 0 6.23 V +94377 V0338 Sge E: 6.69 0 6.75 Hp +96599 V0339 Sge LC 8.46 0 8.84 Hp +96688 V0340 Sge LC: 6.37 0 6.47 Hp +96984 V0341 Sge GCAS: 7.67 0 7.84 Hp +97135 V0342 Sge SRB 6.78 0 6.92 Hp +97670 V0343 Sge E: 7.24 0 7.32 Hp +99176 V0344 Sge LB 6.35 0 6.52 Hp +99327 V0372 Sge BCEP 8.47 1 0.03 V 0.164314 B0.5III/IV +97365 δ Sge LB: 3.75 0 3.83 V M2.5II-III+B9V +94738 R Sgr M 6.7 0 12.83 V 43371. 269.84 46 M4e-M6e +94706 T Sgr M 7.1 0 12.9 V 44897. 394.66 47 S4.5,8e-S5.5,8e +90836 U Sgr DCEP 6.28 0 7.15 V 30117.925 6.745226 28 F5Ib-G1.5Ib +90799 V Sgr CST 8.1 0 V F2II +88567 W Sgr DCEP 4.29 0 5.14 V 43374.77 7.59503 32 F4-G2Ib +87072 X Sgr DCEP 4.20 0 4.90 V 40741.70 7.01283 36 F5-G2II +89968 Y Sgr DCEP 5.25 0 6.24 V 40762.38 5.77335 34 F5-G0Ib-II +98077 RR Sgr M 5.4 0 14.0 V 40809. 336.33 43 M4e-M9e +89637 RS Sgr EA/SD 6.01 0 6.97 6.28 V 20586.387 2.4156832 17 B3IV-V+A +100033 RT Sgr M 6.0 0 14.1 V 42083. 306.46 47 M5e-M7e +98334 RU Sgr M 6.0 0 13.8 V 41900. 240.49 43 M3e-M6e +90493 RV Sgr M 7.2 0 14.8 V 42621. 315.85 47 M4e-M9 +94489 RW Sgr SRA 9.0 0 11.7 V 41931. 186.82 47 M4II/IIIe-M6III: +94730 RY Sgr RCB 5.8 0 14.0 V G0Iaep(C1,0) +90709 SS Sgr SRB 10.9 0 11.3 p C3,4(R3/N) +93605 SU Sgr SRB 8.12 0 8.64 V 60. M6III +89084 SY Sgr INSA: 9.87 0 10.12 V F8 +86873 SZ Sgr SRB 11.05 0 11.9 B 73. C7,3(Nb) +97296 UW Sgr SRB 11.76 0 12.5 B C6,5-C7,1J(Na) +88838 VX Sgr SRC 6.52 0 14.0 V 36493. 732. M4eIa-M10eIa +89596 WZ Sgr DCEP 7.45 0 8.63 V 35506.629 21.849708 31 F8-K1 +90241 XX Sgr CEP 8.41 0 9.28 V 35308.449 6.424140 30 F6-G2 +90019 XZ Sgr EA/SD 8.82 0 10.93 8.95 V 41890.6201 3.275555 11 A3V+G5IV-V: +92370 YZ Sgr DCEP 7.02 0 7.76 V 35514.301 9.553606 49 F6-G2 +89276 AP Sgr DCEP 6.52 0 7.41 V 36045.500 5.057875 22 F6-G1 +96255 AQ Sgr SRB 9.1 0 11.4 p 199.6 C7,4(N3) +88855 AX Sgr SRD 9.2 0 10.0 p 350. G8Ia-M2Ia +90110 AY Sgr DCEP 10.10 0 10.92 V 40768.53 6.56959 31 F6-G1 +92491 BB Sgr DCEP 6.55 0 7.30 V 36053.535 6.63699 34 F6-G1 +87433 KW Sgr SRC 11.0 0 13.2 p 670. M0I-M4Ia +92013 V0350 Sgr DCEP 7.08 0 7.83 V 35317.227 5.15424 28 F5-G2Ib +92235 V0356 Sgr EA/DS: 6.84 0 7.66 7.24 V 33900.827 8.89610 12 B3V+A1II +96101 V0440 Sgr RRAB 9.60 0 10.80 V 41509.445 0.47747883 14 A4-F8 +97849 V0505 Sgr EA/SD 6.46 0 7.51 6.63 V 44461.5907 1.18287156 20 A2V+F6: +89326 V0675 Sgr RRAB 9.80 0 10.76 V 28387.244 0.6422893 14 A5-F6 +93293 V0733 Sgr M 11.2 0 14.4 p 30262. 100.9 50 +87668 V0774 Sgr LB 12.5 0 13.9 p M5 +86971 V0777 Sgr EA/GS 10.42 0 10.7 B 29411.7 936.07 06 K5Ib+A +92403 V1216 Sgr UV 11.2 0 12.55 B M3.6Ve +88069 V1647 Sgr EA/DM 6.94 0 7.57 7.43 V 41829.6951 3.28279251 08 A1V+A2V +98546 V1711 Sgr CWA 10.43 0 11.06 V 44151.11 28.556 35 F4-F6 +88022 V1721 Sgr EA/DM 10.4 0 10.6 p 28664.475 1.788564 10 F3V +94940 V1942 Sgr LB 6.74 0 7.00 V C6,4(N2/R8) +99082 V1943 Sgr LB 9. 0 11. p M8 +99126 V2232 Sgr RR 11.5 0 12.5 p +99129 V2235 Sgr EA 10. 0 10.5 p MB +89499 V2509 Sgr EB/KE 7.35 0 7.71 7.50 V 44387.7712 1.0869739 A0 +90801 V3508 Sgr GCAS 7.70 0 8.00 V B6IIIe +96176 V3790 Sgr LB: 7.24 0 7.54 V M2 +88905 V3792 Sgr EB/DM 6.43 0 6.88 6.81 V 41879.349 2.248082 B5 +98688 V3872 Sgr LB 4.45 0 4.64 V M4III +91781 V3879 Sgr SRB 6.05 0 6.58 V 50. M5.2III +97394 V3885 Sgr NL+ZZ: 10.27 0 10.51 V pec +87163 V3894 Sgr EB/D 6.21 0 6.39 6.37 V 44569.775 2.61862 B3IVe +88943 V3903 Sgr INA: 7.00 0 7.45 V O8Vn +94224 V3954 Sgr LB: 7.15 0 7.52 V M3 +95127 V3955 Sgr SRD 10. 0 11.2 p G0-G5 +97749 V3961 Sgr ACV 5.28 0 5.34 V 44457.77 2300. A0p(Si-Cr-Eu) +88123 V3984 Sgr GCAS 7.38 1 0.18 V B1.5Vne +93996 V4024 Sgr GCAS 5.34 0 5.60 V B2Ve +97351 V4026 Sgr SR: 6.69 0 6.90 V M5III +89980 V4028 Sgr SR: 6.10 0 6.38 V 35. M5III +89956 V4029 Sgr SDOR 8.12 0 8.29 V B9Iapeq +89963 V4030 Sgr ACYG: 8.30 0 8.41 V B8Iaea +90610 V4031 Sgr GCAS 6.52 0 6.67 V B2IVnep +89178 V4045 Sgr ACV 6.51 0 6.54 V 2.8855 A0p(Si-Cr-Eu) +90074 V4050 Sgr ACV 5.31 1 0.01 V 6.3 B8p(Sr-Ti-Cr) +96644 V4062 Sgr ACV 6.71 0 6.75 V 42620.099 1.737 30 B9p(Si) +96967 V4063 Sgr DSCT 7.9 1 0.12 V 0.361 F0 +97684 V4064 Sgr ACV 7.23 0 7.36 V 42621.478 4.718 30 B9p(Si) +88287 V4072 Sgr ELL/WR+* 8.74 1 1.2 V +89526 V4074 Sgr ZAND 8.6 0 12.3 p +92505 V4088 Sgr E 7.49 0 7.87 V +96234 V4089 Sgr EA/DM 5.87 0 6.07 V +96739 V4090 Sgr EA/DM 6.58 0 6.81 V +99011 V4091 Sgr RS: 8.4 1 0.04 V +91550 V4131 Sgr GCAS: 8.68 0 8.82 V +98763 V4133 Sgr ACV 6.90 0 6.92 V +95244 V4138 Sgr RS 6.57 0 6.85 V +95714 V4139 Sgr RS 8.40 0 8.69 V +93181 V4152 Sgr SR: 9.24 0 9.52 V +89164 V4159 Sgr BCEP 8.09 0 8.16 V +91132 V4190 Sgr DSCTC 6.44 0 6.48 V +93785 V4197 Sgr EW/KE 7.95 0 8.70 V +93887 V4198 Sgr * 6.23 0 6.29 V +95159 V4199 Sgr * 6.18 0 6.26 V +97944 V4200 Sgr BY 6.18 1 0.07 V +96440 V4333 Sgr DSCT 5.48 0 5.60 V +95266 V4371 Sgr BY 9.42 0 9.60 V +95755 V4372 Sgr ELL: 6.76 0 6.80 V +87136 V4375 Sgr BE 8.93 0 9.06 Hp +88073 V4376 Sgr ELL: 9.14 0 9.27 Hp +88182 V4377 Sgr LB: 8.94 0 9.04 Hp +88341 V4378 Sgr LB 9.94 0 10.47 Hp +88615 V4379 Sgr BE: 7.03 0 7.13 Hp +88789 V4380 Sgr LB 9.68 0 10.13 Hp +88876 V4381 Sgr ACYG: 6.57 0 6.62 Hp +88884 V4382 Sgr BCEP 7.93 0 7.98 Hp +89129 V4383 Sgr BE 8.69 0 8.82 Hp +89203 V4384 Sgr ACYG: 7.20 0 7.30 Hp +89238 V4385 Sgr ELL: 7.42 0 7.46 Hp +89404 V4386 Sgr E: 8.37 0 8.55 Hp +89470 V4387 Sgr ACV 6.09 0 6.12 Hp +89510 V4388 Sgr LB: 8.25 0 8.34 Hp +89662 V4389 Sgr SRB: 7.16 0 7.26 Hp +90001 V4390 Sgr EB 7.75 0 7.87 Hp +90043 V4391 Sgr SRB 8.32 0 8.53 Hp +90100 V4392 Sgr SRD: 8.41 0 8.55 Hp +90113 V4393 Sgr LB: 7.54 0 7.65 Hp +90259 V4394 Sgr EB: 10.52 0 11.06 Hp +90646 V4395 Sgr SRB 8.10 0 8.27 Hp +90671 V4396 Sgr EA 7.68 0 8.11 Hp +90811 V4397 Sgr SRB 8.11 0 8.27 Hp +90950 V4398 Sgr ACYG 6.89 0 6.93 Hp +91020 V4399 Sgr EA: 7.13 0 7.31 Hp +91130 V4400 Sgr BE 8.02 0 8.15 Hp +91135 V4401 Sgr SRB 6.64 0 6.77 Hp +91206 V4402 Sgr LB 8.35 0 8.65 Hp +91718 V4403 Sgr EA 8.68 0 9.14 Hp +92066 V4404 Sgr ACV 7.43 0 7.48 Hp +92079 V4405 Sgr SRB: 6.20 0 6.33 Hp +92142 V4406 Sgr SRB 6.73 0 6.89 Hp +92649 V4407 Sgr EB 6.62 0 6.80 Hp +92776 V4408 Sgr LPB: 8.28 0 8.37 Hp +93696 V4409 Sgr BE 8.67 0 8.78 Hp +93931 V4410 Sgr LB: 8.48 0 8.60 Hp +94537 V4411 Sgr E: 8.50 0 8.76 Hp +95036 V4412 Sgr LB: 7.97 0 8.10 Hp +95075 V4413 Sgr LB: 8.75 0 8.86 Hp +95063 V4414 Sgr SRB 7.60 0 7.77 Hp +95226 V4415 Sgr SRB 6.93 0 7.04 Hp +95252 V4416 Sgr SRB 8.01 0 8.17 Hp +95313 V4417 Sgr E: 8.94 0 9.34 Hp +95779 V4418 Sgr LB: 8.47 0 8.57 Hp +96111 V4419 Sgr SRB 6.47 0 6.65 Hp +96873 V4420 Sgr SRB: 8.62 0 8.82 Hp +96983 V4421 Sgr LB 9.20 0 9.39 Hp +97303 V4422 Sgr LB: 8.01 0 8.07 Hp +97460 V4423 Sgr LB: 8.17 0 8.27 Hp +97923 V4424 Sgr RRAB 10.04 0 10.68 Hp +98021 V4425 Sgr SXPHE: 9.38 0 9.92 Hp +98088 V4426 Sgr SRB 8.67 0 8.85 Hp +98113 V4427 Sgr LB 8.58 0 8.76 Hp +98539 V4428 Sgr EA 8.26 0 8.53 Hp +99042 V4429 Sgr SRD: 8.12 0 8.30 Hp +99408 V4430 Sgr LB 8.86 0 9.18 Hp +99553 V4431 Sgr SRD 8.54 0 8.68 Hp +99568 V4432 Sgr LB: 8.23 0 8.35 Hp +99606 V4433 Sgr IB: 10.63 0 11.36 Hp +99920 V4434 Sgr LB 6.16 0 6.33 Hp +100024 V4435 Sgr LB 8.66 0 8.86 Hp +100119 V4436 Sgr LB: 8.91 0 9.06 Hp +100253 V4437 Sgr EB 7.26 0 7.56 Hp +100422 V4438 Sgr LB 6.99 0 7.10 Hp +100413 V4439 Sgr SRB: 8.48 0 8.92 Hp +100743 V4440 Sgr LB: 8.75 0 8.88 Hp +100732 V4441 Sgr LB 7.42 0 7.53 Hp +100813 V4442 Sgr LB: 8.47 0 8.59 Hp +100868 V4443 Sgr LB 7.78 0 7.91 Hp +95358 V5546 Sgr GDOR 7.69 0 7.79 Hp F0V +96406 V5548 Sgr DSCTC: 5.82 1 0.04 B 0.11340 A1m +98034 V5553 Sgr EB 8.53 0 8.62 V 48404.165 2.69466 F5/F6V +89642 η Sgr LB: 3.05 0 3.12 V M3.5III +89341 μ Sgr EA+ACYG 3.80 0 3.88 V 44035. 180.55 11 B8eqIa+B1.5V +95176 Ï… Sgr EB/GS 4.53 0 4.61 4.59 V 20439.55 137.939 B8pI:+O9V +78872 Z Sco M 8.7 0 13.4 V 41750. 343.03 49 M5.5e:-M7e +82912 RR Sco M 5.0 0 12.4 V 45418. 281.45 47 M6II-IIIe-M9 +82833 RS Sco M 6.2 0 13.0 V 44676. 319.91 42 M5e-M9 +83059 RV Sco DCEP 6.61 0 7.49 V 34925.38 6.06133 24 F5-G1 +87345 RY Sco DCEP 7.51 0 8.44 V 28256.45 20.31322 37 F6-G2 +78746 RZ Sco M 8.0 0 12.8 V 44698. 156.60 45 M3e-M4e +87063 SX Sco SR: 10.5 0 11.4 p C5,4(N3) +84071 AH Sco SRC 8.1 0 12.0 p 29769. 713.6 46 M4e-M5Ia-Iab +82747 AK Sco INSB 8.7 0 11.7 p F5Vpea +81747 AX Sco SRB 9.85 0 12.0 B 138. M6 +86527 BM Sco SRD 6.8 0 8.7 p 815. K2.5Ib +84282 FV Sco EA/DM 7.95 0 8.72 0.1 V 42954.0424 5.7278964 13 B6V +82498 KQ Sco DCEP 9.34 0 10.29 V 35281.4 28.6896 35 K5 +87191 V0393 Sco EA/SD 8.2 0 9.0 8.3 p 28321.118 7.71250 12 B9 +87810 V0453 Sco EB/GS 6.36 0 6.73 6.70 V 42218.74 12.00597 B0.5Iape +85701 V0482 Sco DCEP 7.63 0 8.30 V 40754.495 4.527807 28 F5 +86512 V0494 Sco RRAB 10.62 0 11.91 V 41126.388 0.4273326 20 A5-F5: +87173 V0500 Sco DCEP 8.40 0 9.13 V 44400.89 9.316863 49 K0 +85035 V0636 Sco DCEP 6.40 0 6.92 V 40364.392 6.79671 34 F7/8Ib/II-G5 +87922 V0690 Sco RRAB 10.80 0 12.00 V 41797.592 0.4922551 17 A7-F8 +85985 V0701 Sco EW/KE 8.63 0 9.05 9.05 V 43574.8358 0.76187547 B1:V:nn +86650 V0703 Sco DSCT 7.58 0 8.04 V 42979.3923 0.11521772 35 A9-G0 +79476 V0718 Sco EA 8.98 0 10. V 42630.1 A2 +80405 V0760 Sco EA/DM 7.04 0 7.4 7.4 B 38230.250 1.7309 17 B3:Vn +79080 V0856 Sco INA 6.80 0 8.00 V A7IVe +82911 V0861 Sco EB 6.07 0 6.40 6.28 V 43704.21 7.84825 B0.5Iae +86468 V0862 Sco GCAS: 2. 0 8.5 V B1ne-B8 +83499 V0884 Sco ELL+X 6.51 0 6.60 6.57 V 42476.6801 3.41168 O5.5-O6.5Iaf +82669 V0900 Sco ELL: 6.29 0 6.34 V 42469.86 2.63 B0.5Iae +86624 V0905 Sco ACYG: 6.49 0 6.67 V A2Ia-0pe +87616 V0906 Sco EA/DM 5.96 0 6.23 6.21 V 39649.8190 2.785847 13 B9V+B9V +82554 V0911 Sco ACV 6.32 0 6.38 V 1.85 B9p(Si) +78246 V0913 Sco SXARI 5.40 0 5.47 V 0.492 B4IV-Vp(Heweak) +82926 V0914 Sco UV+BY 12.4 0 14.0 U M3Ve+M4Ve +84332 V0915 Sco 6.22 0 6.64 V G5Ia +81305 V0918 Sco ELL 5.42 0 5.50 V 9.813 O8.5I+O7III(f) +82543 V0919 Sco WR 6.45 0 6.61 V 2. WN7+O-B1I +83410 V0922 Sco DSCTC 7.45 1 0.10 B 0.05 A1IV +83491 V0923 Sco EA/D 5.86 0 6.24 V 41903.691 34.8269 F3IV-V+F3V +77909 V0927 Sco SXARI 5.8 1 0.03 V 44256.572 1.45937 B8IIIp(Heweak) +78183 V0928 Sco ACV 6.74 0 6.76 V +78877 V0929 Sco SXARI 5.89 0 5.91 V +80024 V0933 Sco ACV 7.37 1 0.04 V +80478 V0936 Sco ACV 7.63 0 7.71 V +85839 V0949 Sco DSCTC 6.13 1 0.05 V +86269 V0950 Sco DCEPS 7.07 0 7.40 V +87624 V0951 Sco ACV 6.39 0 6.44 V +79235 V0952 Sco ACV 6.57 1 0.04 V +80027 V0953 Sco ACV 9.2 1 0.04 V +81508 V0954 Sco EB/KE 7.49 0 7.75 V +81566 V0955 Sco ACV 8.65 1 0.04 V +87460 V0957 Sco SXARI 5.87 1 0.05 V +87560 V0958 Sco ACV 6.95 1 0.05 V +85680 V0965 Sco RS 8.46 0 8.67 V +80290 V0972 Sco DSCT 9.52 0 9.69 V +82493 V0973 Sco ACYG 5.22 0 5.28 V +85020 V0975 Sco ACYG 6.27 0 6.35 V +86432 V0994 Sco BCEP 7.10 0 7.22 V +81472 V1003 Sco ELL: 5.83 1 0.03 V +82691 V1007 Sco EB 6.06 1 0.24 V +84409 V1012 Sco EB 6.76 0 6.83 b +85676 V1017 Sco RS: 8.23 0 8.27 V +79081 V1027 Sco ACV: 6.60 0 6.67 V +80607 V1028 Sco ACV 7.00 1 0.01 V +84655 V1035 Sco WR 9.27 1 0.03 V +86011 V1036 Sco ELL 5.71 0 5.79 V +77369 V1039 Sco SRD: 11.01 0 11.44 Hp +77859 V1040 Sco BCEP: 5.39 0 5.42 Hp +78523 V1041 Sco EA 8.94 0 9.26 Hp +78534 V1042 Sco LB 9.18 0 9.38 Hp +78563 V1043 Sco SRB 7.45 0 7.58 Hp +78708 V1044 Sco E: 8.76 0 8.96 Hp +78880 V1045 Sco LB: 8.08 0 8.19 Hp +78919 V1046 Sco E 9.34 0 9.70 Hp +79085 V1047 Sco I: 11.17 0 11.53 Hp +79158 V1048 Sco LB: 9.05 0 9.15 Hp +79247 V1049 Sco LB 7.96 0 8.08 Hp +79479 V1050 Sco SRB 7.38 0 7.49 Hp +79530 V1051 Sco SXARI 6.40 0 6.43 Hp +79763 V1052 Sco LB: 8.62 0 8.73 Hp +80004 V1053 Sco LB: 8.03 0 8.16 Hp +80060 V1054 Sco E: 6.63 0 6.71 Hp +80603 V1055 Sco EW 8.65 0 8.92 Hp +80636 V1056 Sco BY: 9.47 0 9.55 Hp +80714 V1057 Sco SRB 7.62 0 7.85 Hp +80945 V1058 Sco ACYG 5.36 0 5.42 Hp +81256 V1059 Sco BE 9.37 0 9.64 Hp +81334 V1060 Sco DSCTC 8.88 0 8.92 Hp +81415 V1061 Sco LB 8.03 0 8.23 Hp +81477 V1062 Sco ACV 6.92 0 6.98 Hp +81645 V1063 Sco GCAS 7.87 0 8.06 Hp +81712 V1064 Sco LB: 7.60 0 7.70 Hp +81842 V1065 Sco ACV 7.69 0 7.75 Hp +81921 V1066 Sco LB: 9.07 0 9.20 Hp +82451 V1067 Sco E: 10.37 0 10.77 Hp +82650 V1068 Sco LB 5.71 0 5.96 Hp +82819 V1069 Sco EA: 8.54 0 8.79 Hp +82848 V1070 Sco LPB 7.65 0 7.70 Hp +83014 V1071 Sco SRB 6.54 0 6.64 Hp +83457 V1072 Sco DSCTC 7.42 0 7.47 Hp +83574 V1073 Sco ACYG: 4.89 0 4.95 Hp +83706 V1074 Sco ACYG: 6.23 0 6.26 Hp +84401 V1075 Sco BE: 5.57 0 5.64 Hp +84483 V1076 Sco BE 6.76 0 6.84 Hp +84650 V1077 Sco BE 6.36 0 6.44 Hp +84745 V1078 Sco BE 7.78 0 7.97 Hp +84876 V1079 Sco LB 8.98 0 9.62 Hp +85022 V1080 Sco IA: 7.65 0 7.78 Hp +85569 V1081 Sco EA 6.97 0 7.12 Hp +86163 V1082 Sco E: 10.09 0 10.53 Hp +86253 V1083 Sco BE 8.15 0 8.36 Hp +86294 V1084 Sco EW: 9.07 0 9.18 Hp +86434 V1085 Sco LB: 8.99 0 9.20 Hp +86751 V1086 Sco LB 6.44 0 6.67 Hp +87221 V1087 Sco LB 8.65 0 8.84 Hp +87255 V1088 Sco LB 8.01 0 8.18 Hp +87257 V1089 Sco ACV 7.52 0 7.57 Hp +87298 V1090 Sco E: 8.30 0 8.45 Hp +87580 V1091 Sco ACV 7.95 0 8.01 Hp +87886 V1092 Sco LPB 6.69 0 6.74 Hp +79970 V1195 Sco EA 8.86 0 9.04 9.01 V 47963.349 4.00305 B9IV +85377 V1229 Sco EB 8.90 0 9.08 8.96 V 47921.793 1.859839 B4III +79061 V1283 Sco EB 8.58 0 8.68 8.61 V 48510.607 1.7587 A0V+K0III +82378 V1290 Sco EA 7.96 0 8.07 8.01 V 48704.307 4.49244 09 O9.5IV +83583 V1300 Sco EA 8.87 0 9.03 9.02 V 48005.710 29.3467 02 B9IV/V +80763 α Sco LC 0.88 0 1.16 V M1.5Iab-Ib +78401 δ Sco GCAS 1.86 0 2.32 V +86670 κ Sco BCEP 2.41 0 2.42 V 0.1998303 B1.5III +85927 λ Sco BCEP+E: 1.62 1 0.06 V 40000.1235 0.2136966 B1.5IV +78265 Ï€ Sco EB 2.82 0 2.85 Hp +80112 σ Sco BCEP 2.86 0 2.94 V 44450.548 0.2468390 50 B2III+O9.5V +6759 R Scl SRB 9.1 0 12.9 p 370. C6,5ea(Np) +1236 S Scl M 5.5 0 13.6 V 42345. 362.57 48 M3e-M9e(Tc) +2286 T Scl M 8.47 0 13.5 V 41985. 202.42 49 M3-M6e +114318 Y Scl SRB 8.7 0 10.3 p M4 +3142 Z Scl CST: 6.68 0 V F8V +226 RU Scl RRAB 9.35 0 10.75 V 31122.839 0.49333878 12 A5:-F8 +8163 SV Scl RRC 11.12 0 11.66 V 41918.555 0.37760 35 A8-F6 +516 SW Scl SRC 7.3 0 9.3 V 40037. 146. M1Ib-IIe-M4IIIe +1182 UY Scl RRC: 11.53 0 11.96 V +5916 VV Scl EB:/DM: 8.35 0 8.50 8.50 V 36498.450 2.47962 A5p +6094 VW Scl RRAB 10.4 0 11.4 V 27809.381 0.5109147 13 +7398 VX Scl RRAB 11.55 0 12.32 V 41614.354 0.637334 14 +6888 WZ Scl DSCT 6.52 0 6.62 V F0IV +6942 XX Scl DSCT 8.84 0 8.93 V A7V +2880 AA Scl LB 8.63 0 8.99 V M5III +5661 AI Scl DSCT 5.89 0 5.98 V A7III +117931 AL Scl EA/DM 6.06 0 6.33 6.20 V 43698.5118 2.445088 09 B6V+A0V +5150 AP Scl ACVO 8.60 1 0.03 B +5118 AS Scl ELL: 8.10 1 0.03 V +328 AT Scl ELL: 7.08 1 0.03 V +1210 AU Scl DSCTC 8.4 1 0.01 B +1830 AV Scl ACV 6.24 1 0.03 U +5193 AW Scl ACV: 6.87 1 0.04 U +7372 BB Scl E 7.10 0 7.17 V +2164 BC Scl LB: 8.00 0 8.10 Hp +2550 BD Scl EB 10.12 0 10.39 Hp +6350 BE Scl EW 10.41 0 10.84 Hp +6536 BF Scl SRD 9.01 0 9.23 Hp +7315 BG Scl SRB 8.72 0 8.96 Hp +7323 BH Scl EA 7.942 0 8.18 Hp +7330 BI Scl LB: 6.92 0 7.01 Hp +7449 BK Scl LB: 7.61 0 7.72 Hp +8206 BL Scl LB: 7.68 0 7.80 Hp +114196 BM Scl LB: 8.28 0 8.38 Hp +114206 BN Scl EA 8.96 0 9.33 Hp +114400 BO Scl LB 8.08 0 8.22 Hp +114414 BP Scl LB: 8.07 0 8.19 Hp +115176 BQ Scl LB: 8.93 0 9.08 Hp +115565 BR Scl LB: 9.74 0 9.92 Hp +115858 BS Scl DSCTC 6.95 0 6.97 Hp +116105 BT Scl LB: 8.87 0 8.98 Hp +118277 BU Scl LB: 5.70 0 5.72 Hp +6659 BV Scl ACV 8.36 1 0.04 V +2486 CE Scl EA 9.70 0 9.92 9.75 V 48635.666 2.277687 F3V +4332 CG Scl EA 8.67 0 9.16 V 52227.588 11.03574 G5V +4505 CH Scl EA: 9.99 0 10.18 V 51881.544 1.577216 F2V +4974 CI Scl EA 8.78 0 9.0 8.92 V 52559.740 14.7104 03 F5/F6V +116475 CM Scl EA 8.81 0 8.93 8.92 V 48077.581 10.28857 03 F7V +4577 α Scl SXARI 4.31 1 0.04 V +2210 η Scl LB 4.80 0 4.90 V M4IIIa +4852 σ Scl ACV: 5.50 1 0.03 V +92202 R Sct RVA 4.2 0 8.6 V 44872. 146.5 G0Iae-K2p(M3)Ibe +92442 S Sct SRB 9.63 2 10.9 B 148.0 C6,4(N3) +92874 T Sct SRB 11.1 0 12.0 p 122. C7,3(N3) +90225 W Sct EA/DM 9.92 0 10.57 10.1 V 20665.47 10.2703 12 B3n+B0 +90791 X Sct DCEP 9.50 0 10.42 V 34905.58 4.19807 31 F6-G2 +91366 Y Sct DCEP 9.22 0 10.02 V 34947.20 10.341504 46 F8-G3 +91785 Z Sct DCEP 9.05 0 10.16 V 36247.160 12.901325 40 F8-G4 +92340 RS Sct EB/SD 9.78 0 10.91 10.08 V 44437.1658 0.6642384 F5 +91697 RU Sct DCEP 8.82 0 10.02 V 31174.67 19.70062 36 F4-G5 +91929 RV Sct LB: 8.7 0 9.05 V C4,4(R3/NB) +91275 RX Sct LB 11. 0 13. p C5,5(N3) +90303 RY Sct EB/GS 9.12 0 9.72 9.56 V 43342.42 11.12471 O9.7Ibpeq +90382 RZ Sct EA/GS 7.34 0 8.84 7.47 V 19261.1025 15.1902079 17 B3Ib +91867 SS Sct DCEP 7.90 0 8.43 V 35315.625 3.671253 37 F6-G0 +91706 TY Sct DCEP 10.31 0 11.25 V 37377.090 11.05302 47 F7-G5 +91613 CK Sct DCEP 10.30 0 10.88 V 40855.25 7.41522 32 G +91738 CM Sct DCEP 10.79 0 11.49 V 35111.320 3.916977 25 +91239 EV Sct DCEPS 9.90 0 10.32 V 43292.274 3.09099 50 G0II +91342 EW Sct CEP(B) 7.77 0 8.24 V G5 +90115 FR Sct ZAND 11.6 0 12.91 B M2.5epIab+B +92517 V0369 Sct DSCT 9.14 0 9.43 V 40393.709 0.223 F8III +90281 V0430 Sct ACYG 6.50 0 6.64 V B1Ia-Oe +90617 V0431 Sct ACYG 11.60 0 12.10 V B1Iaeq +90651 V0432 Sct ACV 5.96 1 0.01 V 2.1912 B9p(Si-Cr-Eu) +90267 V0433 Sct ACYG 8.18 1 0.05 V +91946 V0447 Sct BE 7.85 1 0.12 V +90768 V0448 Sct BE 7.42 0 7.48 Hp +90907 V0449 Sct ACYG: 7.93 0 8.02 Hp +90913 V0450 Sct SRD 5.49 0 5.62 Hp +91001 V0451 Sct ACV 7.93 0 8.00 Hp +91477 V0452 Sct ACYG: 9.87 0 10.10 Hp +91728 V0453 Sct LB 6.84 0 7.01 Hp +91871 V0454 Sct SRB 8.54 0 8.67 Hp +92128 V0455 Sct GCAS 9.00 0 9.32 Hp +92423 V0456 Sct LB 8.59 0 8.78 Hp +92510 V0457 Sct GCAS: 8.49 0 8.73 Hp +90552 V0493 Sct EA 8.32 0 8.74 8.52 V 52556.459 30.811 05 B1Iab +91726 δ Sct DSCT 4.60 0 4.79 V 43379.05 0.1937697 F3IIIp +77615 R Ser M 5.16 0 14.4 V 45521. 356.41 41 M5IIIe-M9e +75170 S Ser M 7.0 0 14.1 V 45433. 371.84 43 M5e-M6e +78976 U Ser M 7.8 0 14.7 V 45652. 237.50 48 M3e-M6e +88994 W Ser EA/GS 8.42 0 10.20 V 26625.493 14.15486 20 F5eIb(shell) +74558 Y Ser SRA 8.43 0 9.75 V 27514. 432.7 M5IIIe +74704 Z Ser SRA 9.4 0 10.9 p 23204. 87.57 M5III +75982 VY Ser RRAB 9.73 0 10.46 V 31225.341 0.71409384 20 F2-F6 +78307 AH Ser M 10.0 0 13.7 V 36682. 283.5 M2 +77830 AN Ser RRAB 10.40 0 11.44 V 14708.9500 0.52207162 18 A7-F5 +74556 AP Ser RRC 10.85 0 11.38 V 0.341 A7-F3 +76172 AR Ser RRAB 11.43 0 12.33 V 42918.394 0.5751416 20 F3 +77997 AT Ser RRAB 11.00 0 11.92 V 41798.579 0.7465465 18 A9-F5 +74739 BF Ser CWB 11.05 0 12.56 V 28744.094 1.1654394 12 A7-F3 +77027 BG Ser M 11.0 0 15. p 19887. 143. M6e-M8e +91201 BQ Ser CEP(B) 9.21 0 9.93 V 32410.50 4.2709 35 F6III +89013 CR Ser DCEP 10.50 0 11.32 V 35631.53 5.30141 25 G5 +89769 CV Ser E/D/WR 9.00 0 9.63 V 40785.29 29.7005 WC8+O8-O9III-IV +77798 CW Ser DSCT 11.59 0 12.06 V 31212.280 0.1891505 40 A/F +92194 DR Ser LB 10.4 0 13.39 B C6,4(N) +74584 FI Ser ACV 7.97 0 8.09 V 3. A0p(Sr-Cr-Eu) +89874 FK Ser BY: 10.9 0 11.5 p 5.20 K5Ve(Li)+K7Ve(Li +74386 FL Ser LB 5.79 0 6.02 V M4IIIab +89783 FO Ser LB 8.45 0 8.74 V C4,5(R6) +77910 FP Ser DSCTC 6.28 1 0.02 V 0.2 A7Vn +79086 FQ Ser LB 6.31 0 6.60 V M4III +91142 FR Ser ACV 6.34 0 6.52 V 41460.79 2.1436 A2p(Sr-Cr) +79072 FS Ser LB: 5.68 0 5.73 V M3.5IIIa +74334 LV Ser ACV 7.45 0 7.60 V 41060.5 2.7800 A3p(Sr-Cr-Eu) +76573 LY Ser LB: 6.70 0 6.96 V M4III +74975 MQ Ser BY: 4.99 0 5.11 V +78259 MS Ser BY 8.20 0 8.31 V +90858 MV Ser ACV 6.13 1 0.03 U +89681 MY Ser EB 7.33 0 7.66 V +78864 NQ Ser RS 8.3 1 0.11 V +89977 NW Ser BE 5.39 0 5.59 U +74471 OP Ser LB: 8.41 0 8.53 Hp +74633 OQ Ser SRB 7.19 0 7.47 Hp +74618 OR Ser LB: 8.62 0 8.78 Hp +74642 OS Ser SRB 9.12 0 9.38 Hp +75187 OT Ser BY: 10.03 0 10.16 Hp +75269 OU Ser EW: 8.25 0 8.43 Hp +75456 OV Ser LB 7.70 0 8.16 Hp +75584 OW Ser LB 7.00 0 7.14 Hp +75861 OX Ser SRD: 7.27 0 7.32 Hp +76091 OY Ser SRB 8.24 0 8.43 Hp +76296 OZ Ser LB 8.72 0 9.05 Hp +76515 PP Ser LB: 10.01 0 10.23 Hp +76538 PQ Ser NL: 8.12 0 8.22 Hp +76822 PR Ser LB: 9.42 0 9.62 Hp +77045 PS Ser E 8.19 0 8.37 Hp +77227 PT Ser LPB 5.36 0 5.39 Hp +78705 PU Ser SRB 8.35 0 8.65 Hp +78925 PV Ser LB: 9.50 0 9.68 Hp +79106 PW Ser LB: 8.26 0 8.38 Hp +79178 PX Ser LB: 9.33 0 9.47 Hp +79277 PY Ser LB 8.33 0 8.52 Hp +79712 PZ Ser LB: 9.59 0 9.74 Hp +88326 QQ Ser LB: 7.51 0 7.64 Hp +89753 QR Ser EB: 8.25 0 8.41 Hp +89816 QS Ser EA: 7.69 0 8.25 Hp +90761 QT Ser ISA: 7.77 0 7.85 Hp +90990 QU Ser ACV 7.78 0 7.84 Hp +91224 QV Ser ACV 7.83 0 7.88 Hp +77504 QX Ser E/RS 8.66 1 0.08 V +77902 QY Ser SRB 5.42 0 5.50 V +77752 V0373 Ser ACV 7.96 1 0.02 V +74702 V0379 Ser BY 7.05 0 7.08 Hp 5.97 K0 +77210 V0381 Ser RS 9.15 1 0.02 V 13.83 K2V +77408 V0382 Ser BY 7.44 1 0.04 V 14.045 G8V +77963 V0383 Ser RS 8.68 1 0.03 V 33.52 KV +89218 V0411 Ser EA 8.40 0 8.55 V 52437.660 34.536 04 O7.5If+O9I +91113 V0413 Ser EA 7.95 0 8.09 8.09 V 49038.828 2.259775 09 B3V +76276 δ Ser DSCTC 4.23 1 0.04 V 0.134 F0IV +86565 ο Ser DSCTC: 4.26 1 0.01 V 0.053 A2V +76866 χ Ser ACV 5.33 1 0.03 V 34134.06 1.59584 50 A0p(Sr-Cr-Eu) +90441 d Ser I: 5.17 0 5.29 V G0III+A6V +47630 R Sex LB: 9.7 0 10.6 p M5IIIe +51791 S Sex M 8.2 0 13.7 V 45390. 264.9 50 M2e-M5e +48503 T Sex RRC 9.81 0 10.32 V 41384.300 0.3246980 42 A7II-III-F4III +48316 W Sex SR 10.3 0 12.5 B 134.0 C6,3e(Nbe) +49217 Y Sex EW/KW 9.83 0 10.21 10.17 V 41766.288 0.4198228 F8 +50684 RS Sex BCEP: 6.64 0 6.68 V B2.5IV +49989 RT Sex SRB 7.9 0 8.95 V 96. M6 +50581 RW Sex NL+ZZ: 10.39 0 10.84 V pec +51075 RX Sex DSCTC 6.70 1 0.02 V 41303.024 0.0799 A3V +50885 SS Sex ACV 5.94 0 5.98 V 44318.00 4.37 B9p(Si-Sr-Cr) +48063 TV Sex LB: 8.82 0 8.97 Hp +48632 TW Sex LB: 7.91 0 8.03 Hp +48923 TX Sex SRB 7.18 0 7.29 Hp +48913 TY Sex E: 9.19 0 9.38 Hp +49613 TZ Sex SRB 6.66 0 6.87 Hp +50749 UU Sex SRB 8.74 0 9.05 Hp +50827 UV Sex SRB 6.91 0 7.18 Hp +52225 UW Sex LB: 9.17 0 9.33 Hp +49986 AN Sex RS 9.16 0 9.32 V 21.535 M1.5V +52634 BP Sex ACV 7.40 0 7.44 Hp 1.72907 A0p(Si) +51437 β Sex ACV: 5.00 0 5.10 V +20390 T Tau INT 9.3 0 13.5 V F8Ve-K1IV-Ve(T) +18174 X Tau CST 6.60 0 V F8IV +27181 Y Tau SRB 6.50 0 9.2 V 241.5 50 C6.5,4e(N3) +27695 RS Tau CST 9.0 0 V F5 +18972 RW Tau EA/SD 7.98 0 11.59 8.09 V 45684.204 2.7688356 14 B8Ve+K0IV +21600 RX Tau M 9.1 0 14.8 V 41282. 331.8 47 M6e-M7e +20387 RY Tau INT 9.3 0 13.0 p F8Ve-K1IV-Ve(T) +21467 RZ Tau EW/KW 10.08 0 10.71 10.66 V 37676.567 0.4156747 A7V+A7V +27119 ST Tau DCEP 7.79 0 8.62 V 41761.963 4.034299 27 F5-G5 +20587 SW Tau CWB 9.33 0 10.16 V 41687.770 1.583584 36 F4-F8 +21517 SZ Tau DCEPS 6.33 0 6.75 V 34628.57 3.14873 45 F5Ib-F9.5Ib +22578 TT Tau SRB 10.2 0 12.2 p 166.5 C4,2-C7,4(N3) +27135 TU Tau SRB 5.9 0 9.2 V 190. C5,4(N3)+A2III-V +19332 TV Tau SRA 9.3 0 12.2 V 25870. 120. 50 M6 +19296 TX Tau SRA 10.5 0 12.3 V 19384. 40.1 50 M5 +21334 TY Tau EA 11.5 0 12.0 V 21192.395 1.0773555 05 K0V +26754 AB Tau SRA 10.4 0 12.0 p 37340. 142.0 M5-M7 +18165 BL Tau SR: 10.0 0 12.0 p M4-M5 +20160 BP Tau INT(YY) 10.7 0 13.6 B K3Ve-M0Ve(T) +17851 BU Tau GCAS 4.77 0 5.50 V B8Vne +24663 CD Tau EA/D 6.77 0 7.34 7.31 V 41619.4075 3.435137 08 F7V+F5IV +25945 CE Tau SRC 4.23 0 4.54 V 165. M2Iab-Ib +26295 CQ Tau INSA 8.7 0 12.25 B A1-F5IVe +20777 DF Tau INST 9.2 0 15.0 p M0-3Ve(T) +27183 EU Tau DCEPS 7.90 0 8.25 V 41324.22 2.10248 40 G5 +19171 GS Tau ACV 5.15 0 5.22 V 21944.74 7.227424 50 B9p(Si) +21604 HU Tau EA/SD: 5.85 0 6.68 5.91 V 41275.3219 2.0562997 15 B8V +19513 IM Tau DSCT 5.37 0 5.58 V 44250.3492 0.145067 F2IV-V +20097 V0410 Tau INSB 11.3 0 12.4 B K3Ve-K7Ve +17962 V0471 Tau EA/D/RS+X 9.40 0 9.71 V 45612.3806 0.52118301 06 K0Vea+DA +22402 V0473 Tau ACV 7.22 0 7.36 V 38466.729 1.3900 B9p(Si-Cr) +18265 V0479 Tau DSCTC 7.39 0 7.46 V 0.076 F1/3III-IV +22565 V0480 Tau DSCTC 5.09 0 5.13 V 0.042 A7IV/V-A9IIIn +20219 V0483 Tau DSCTC 5.55 0 5.59 V 0.054 F0IV +16859 V0486 Tau ACV 6.65 0 6.78 V 41252.12 10.61 A0p(Cr-Sr-Eu) +27808 V0593 Tau GCAS 8.13 1 0.22 V B3Ve +20261 V0696 Tau DSCTC 5.22 0 5.28 V 0.036 A9/F0IV-V +16846 V0711 Tau RS 5.71 0 5.94 V 40000.58 2.840612 G5IV/Vea+K1IVea +20186 V0724 Tau ACV 5.36 0 5.40 V 42299.51 1.56896 40 A0p(Si) +26566 V0725 Tau XNGP 9.4 0 10.1 p O9.7IIIe +26964 V0731 Tau GCAS 5.98 0 6.27 V B2Ve-B5Vpe +18033 V0766 Tau ACV 6.30 1 0.06 V 43849.27 2.53465 50 B9p(Si) +19762 V0773 Tau INB+BY 10.59 0 10.95 V K2ea +19859 V0774 Tau BY: 6.28 0 6.37 V G0IV-V +20400 V0775 Tau DSCTC 5.72 1 0.01 V 0.0625 A3m +20648 V0776 Tau ACV: 4.29 0 4.32 V 40501.35 57.25 50 A2/3IV/Vm +20713 V0777 Tau DSCTC 4.73 1 0.02 B 0.16 A8Vn/F0V +27562 V0781 Tau EW/KW 8.9 0 9.3 9.3 p 43874.954 0.3449100 G0 +22394 V0808 Tau RS 9.52 1 0.08 V 44272.77 6.82 50 K3V+K3V +27743 V0809 Tau ACV 5.59 1 0.02 V 43859.00 2.6541 50 B9p(Si-Eu-Cr) +18485 V0817 Tau ELL 6.06 1 0.05 V +20019 V0818 Tau E/RS 8.30 1 0.15 V +21482 V0833 Tau BY 9.1 0 9.9 p +21818 V0834 Tau BY 7.94 0 8.33 V +16879 V0837 Tau BY: 8.2 1 0.09 V +19855 V0891 Tau BY 6.92 0 7.00 V +20130 V0893 Tau BY 8.63 1 0.02 V +20553 V0895 Tau BY 7.62 1 0.03 V +20577 V0897 Tau BY 7.80 1 0.04 V +20719 V0906 Tau BY 7.98 0 8.06 V +20741 V0911 Tau BY 8.11 1 0.03 V +20890 V0918 Tau BY 8.6 1 0.04 V +20899 V0920 Tau BY 7.84 1 0.05 V +20951 V0921 Tau BY 8.96 0 8.99 V +21317 V0938 Tau BY 7.94 1 0.03 V +26064 V0960 Tau GCAS 5.53 0 5.69 V +17608 V0971 Tau BCEP 4.18 1 0.01 V +19934 V0984 Tau BY 9.15 1 0.04 V +20082 V0985 Tau BY 9.60 1 0.02 V +20237 V0986 Tau BY 7.47 1 0.05 V +20388 V0987 Tau INT 8.98 0 9.10 V +20482 V0988 Tau BY 9.40 1 0.05 V +20485 V0989 Tau BY 10.49 1 0.03 V +20563 V0990 Tau BY 9.99 1 0.03 V +20815 V0993 Tau BY 7.42 1 0.02 V +21543 V0998 Tau BY 7.54 1 0.03 V +20171 V1024 Tau ACV 5.02 1 0.03 U +22510 V1060 Tau LB: 11.2 0 12.18 B +23151 V1061 Tau EB/KE 7.95 0 8.45 V +21768 V1080 Tau INA 10.29 0 10.56 V +22013 V1081 Tau E 6.9 0 7.3 V +17076 V1082 Tau RS 8.19 1 0.05 V +19877 V1099 Tau ELL: 6.31 1 0.02 V +21459 V1116 Tau DSCTC: 6.02 1 0.01 V +25278 V1119 Tau BY 4.98 0 5.02 V +15857 V1120 Tau LB: 8.88 0 9.00 Hp +15858 V1121 Tau EB: 8.46 0 8.89 Hp +16593 V1122 Tau LB: 7.51 0 7.61 Hp +16737 V1124 Tau SRD: 7.59 0 7.70 Hp +17024 V1125 Tau E 8.77 0 9.03 Hp +17040 V1126 Tau E: 10.47 0 10.60 Hp +17379 V1127 Tau SRB 8.40 0 8.91 Hp +17878 V1128 Tau EW 9.65 0 10.24 Hp +17873 V1129 Tau BY: 7.75 0 7.85 Hp +17988 V1130 Tau EB 6.65 0 7.04 Hp +18474 V1131 Tau DSCTC 8.82 0 8.89 Hp +18581 V1132 Tau LB: 7.18 0 7.29 Hp +18957 V1133 Tau LPB: 5.28 0 5.32 Hp +18996 V1134 Tau LB: 8.63 0 8.73 Hp +19137 V1135 Tau SRB 8.78 0 8.93 Hp +19591 V1136 Tau RS: 9.49 0 9.58 Hp +19672 V1137 Tau ACV: 6.18 0 6.22 Hp +19714 V1138 Tau SRB 8.10 0 8.27 Hp +19853 V1139 Tau LB: 7.36 0 7.71 Hp +20262 V1140 Tau ACV: 7.97 0 8.02 Hp +20493 V1141 Tau LPB 6.00 0 6.02 Hp +20513 V1142 Tau LB: 6.97 0 7.07 Hp +20715 V1143 Tau LPB 6.06 0 6.09 Hp +20963 V1144 Tau LPB 6.80 0 6.82 Hp +20958 V1145 Tau SRC: 6.87 0 7.07 Hp +21082 V1146 Tau LB: 6.33 0 6.36 Hp +21179 V1147 Tau BY: 10.96 0 11.13 Hp +21575 V1148 Tau ELL: 6.98 0 7.00 Hp +21621 V1149 Tau EA 8.49 0 8.65 Hp +21626 V1150 Tau BE 7.59 0 7.68 Hp +21633 V1151 Tau LB: 7.86 0 7.98 Hp +21810 V1152 Tau SRB: 8.69 0 9.18 Hp +23436 V1153 Tau BE 8.21 0 8.56 Hp +23699 V1154 Tau E: 6.71 0 6.81 Hp +23883 V1155 Tau BE 5.82 0 5.96 Hp +24019 V1156 Tau E: 6.00 0 6.10 Hp +24103 V1157 Tau LPB 7.90 0 7.94 Hp +24386 V1158 Tau SRB: 8.89 0 9.35 Hp +24906 V1159 Tau ACV 6.63 0 6.66 Hp +25779 V1160 Tau LB: 7.66 0 7.81 Hp +26282 V1161 Tau LB: 9.50 0 9.78 Hp +26449 V1162 Tau BE: 8.88 0 9.07 Hp +26574 V1163 Tau BE 8.40 0 8.53 Hp +26708 V1164 Tau ELL: 8.30 0 8.51 Hp +26998 V1165 Tau BE: 6.78 0 6.86 Hp +27012 V1166 Tau E: 9.41 0 9.58 Hp +27850 V1167 Tau BE 8.36 0 8.62 Hp +17704 V1229 Tau EA 6.84 0 6.94 6.88 V 52903.5981 2.461134 A0V +20056 V1232 Tau RS 7.53 1 0.05 V 8.968 G4V+G8V +20686 V1233 Tau BY 8.07 1 0.02 V 9.16 G3V+G6V +17826 V1243 Tau GDOR 8.60 1 0.08 B 0.44316 F2V +18263 V1289 Tau RS 10.9 1 0.12 V 2.2386 G5IV +19176 V1300 Tau IB 9.62 0 9.75 V 1.0790 G1 +19786 V1309 Tau BY 8.06 1 0.02 V 8.65 G0 +19793 V1310 Tau BY 8.08 1 0.03 V 8.48 G3V +21852 V1329 Tau IB 9.61 0 9.69 V 0.6000 G2V +23721 V1357 Tau IB 9.93 1 0.06 V 0.5239 G0 +25848 V1368 Tau IB 9.23 0 9.38 Hp 0.9426 G0 +26162 V1371 Tau BE 8.00 0 8.20 V 312. B8e +21421 α Tau LB: 0.75 0 0.95 V K5III +26451 ζ Tau E/GS+GCAS 2.88 0 3.17 3.05 V 44936.781 132.9735 B1IVe+G8III: +18724 λ Tau EA/DM 3.37 0 3.91 3.54 V 21506.8506 3.9529478 15 B3V+A4IV +16083 χ Tau E: 3.70 0 3.79 Hp +21273 Ï Tau DSCTC 4.90 1 0.01 B 0.067 A8Vn +20711 Ï… Tau DSCTC 4.28 0 4.31 V 0.1484 50 A8Vn +100137 X Tel M 10.4 2 14.0 V 52973. 309. M5e-M8e +89739 RS Tel RCB 9.0 0 15.34 V C(R4) +95676 SW Tel M 10.4 0 14.3 V 48719. 228.2 M4e +93844 BL Tel EA+SRD 7.09 0 9.41 0.1 V 45589. 778.3 10 F5Iab/b+M +97756 HO Tel EA 8.22 0 8.73 8.67 V 52202.506 1.613101 12 A7III(m) +100414 IS Tel EA 9.67 0 10.40 9.82 V 52985.526 1.152800 17 F5V +93476 MT Tel RRC 8.68 0 9.28 V 48500.270 0.3169 35 A0w +90099 PV Tel PVTEL 9.24 0 9.40 V B5p(He) +96178 PW Tel ACV 5.61 1 0.01 V 2.9213 A0p(Cr-Eu-Sr) +92680 PZ Tel BY 8.33 0 8.63 V 0.94088 K0Vp +96721 QQ Tel DSCTC 6.53 1 0.05 B 0.065 F2/3IV/III +89605 QV Tel BE 5.31 0 5.38 Hp B3IIIe +90026 QW Tel EW 7.55 0 7.69 7.67 V 52445.656 0.411930 F8/G0 +90108 QX Tel SRD: 8.62 0 8.78 Hp 28.3 K0III +91578 QY Tel EA 9.58 0 10.07 10.06 V 51957.064 2.488926 12 F8 +91832 QZ Tel EB 8.07 0 8.27 8.27 V 52831.746 1.0309913 A2V +93092 V0335 Tel LB: 8.06 0 8.17 Hp M2/M3III +94702 V0336 Tel BY: 11.69 0 12.03 Hp M +95578 V0337 Tel EW 9.90 0 10.21 10.20 V 51963.442 0.423389 F5V +95635 V0338 Tel LB 8.47 0 8.63 Hp M0III +96065 V0339 Tel SRS 6.80 0 7.02 V 24.20 M4III +96875 V0340 Tel BY: 9.65 0 9.84 V 1.71966 K0V +97032 V0341 Tel LB 7.19 0 7.56 Hp M5/M6III +97481 V0342 Tel LB 7.84 0 7.97 Hp M3III +97583 V0343 Tel EB 9.11 0 9.44 9.40 V 51874.858 0.875460 A2/A3V +97935 V0344 Tel SRS 8.6 0 9.0 V 27.4 M6III +98500 V0345 Tel LB 6.62 0 6.72 Hp M4III +98815 V0346 Tel LB 8.96 0 9.55 V M4/M5III +100665 V0347 Tel LB 8.36 0 8.68 Hp M3III +100921 V0348 Tel LB: 8.49 0 8.64 Hp M3III +97590 V0349 Tel GDOR: 7.60 0 7.73 Hp 0.6953 F0V +100090 V0350 Tel ACV 7.55 1 0.03 V 4.45 B9CrEuSr +92412 V0353 Tel ELL:+DSCT 7.13 0 7.20 Hp 3.2 A3III/IV +91928 V0359 Tel EA 8.54 0 8.83 8.66 V 48315.454 19.2449 02 B9V +92754 V0362 Tel EA 9.68 0 9.96 9.96 V 48017.991 1.21125 08 G3V +12193 R Tri M 5.4 0 12.6 V 45215. 266.9 44 M4IIIe-M8e +11423 S Tri M 8.9 2 12.4 V 35850. 241.6 48 M2e +12557 W Tri SRC 8.5 0 9.7 p 108. M5II +9383 X Tri EA/SD 8.55 0 11.27 9.07 V 42502.721 0.9715352 18 A5V+G0V +10280 TZ Tri ELL/RS 5.19 1 0.09 V 43729.8 14.732 G5III+G5III: +9630 XX Tri RS 8.1 0 8.7 V +7289 YZ Tri SRB 6.90 0 7.02 Hp +8665 ZZ Tri LB: 8.75 0 8.85 Hp +9171 AA Tri SRB 6.56 0 6.74 Hp +10077 AB Tri EB: 8.28 0 8.38 Hp +10319 AC Tri LB: 9.15 0 9.33 Hp +10714 AD Tri LB: 6.70 0 6.78 Hp +11272 AE Tri SRB: 6.96 0 7.14 Hp +11421 AF Tri LB 7.30 0 7.67 Hp +11437 AG Tri BY: 10.19 0 10.29 Hp +12465 AH Tri SRD 8.24 0 8.44 Hp +9644 AS Tri DSCTC 8.25 1 0.09 V 0.08 F0 +8796 α Tri ELL 3.52 0 3.53 Hp +75018 R TrA DCEP 6.33 0 7.00 V 40838.21 3.389287 30 F6Ib/II-G0 +78476 S TrA DCEP 5.95 0 6.81 V 40734.45 6.32344 28 F6II-G2 +74192 T TrA CST: 6.84 0 V B9IV +78978 U TrA CEP(B) 7.30 0 8.29 V 43267.14 2.568423 34 F5-F8Ib/II +82392 V TrA LB 10.0 0 10.7 p C5,5(Nb) +74582 X TrA LB 5.02 0 6.4 V C5,5(Nb) +81157 RT TrA CWB 9.43 0 10.18 V 41922.54 1.9461124 40 F8:(R)-G2I-II +83244 RW TrA RRAB 10.89 0 11.66 V 41489.292 0.3740438 20 F5-F6 +73152 EN TrA CEP: 8.7 0 9.1 p 41785.0 36.54 32 F2Ib +79212 EQ TrA EA/D 8.9 0 9.5 9.0 p 41100.006 2.709149 20 F3V +79079 LL TrA ACV 6.88 1 0.02 V 4.41 B9p(Si) +82129 LP TrA ACV 5.12 1 0.03 V 3.76 A0p(Si) +75961 LR TrA DCEPS 7.73 0 7.92 V +75689 LS TrA RS 7.30 0 7.53 V +78689 LT TrA WR 10.2 1 0.13 V +81254 LV TrA RCB: 8.28 0 8.35 V +74077 LW TrA LB: 8.55 0 8.68 Hp +75665 LX TrA SRD: 5.81 0 5.83 Hp +76279 LY TrA LB 7.10 0 7.29 V +76454 LZ TrA LPB 8.05 0 8.08 Hp +78034 MM TrA BE 10.45 0 10.60 Hp +78231 MN TrA EA 8.50 0 9.00 Hp +78491 MO TrA SRB 7.16 0 7.42 Hp +78526 MP TrA E: 7.76 0 7.87 Hp +78682 MQ TrA BE 6.86 0 7.25 Hp +80395 MR TrA ACV 8.71 0 8.82 Hp +80707 MS TrA ACV: 8.86 0 8.96 Hp +80978 MT TrA LB: 8.44 0 8.55 Hp +81554 MU TrA ACV 9.27 0 9.34 Hp +81753 MV TrA SRD 9.01 0 9.20 Hp +81968 MW TrA LB: 8.60 0 8.71 Hp +83150 MX TrA ACV 5.75 0 5.77 Hp +76254 MZ TrA EA 8.57 0 8.76 8.73 V 48127.076 4.73065 A4V +80022 NO TrA EA 8.67 0 8.86 8.85 V 48022.005 5.66215 F6V +81039 NP TrA DSCTC 7.88 1 0.03 V 0.0613 A3III +80645 ι TrA GDOR: 5.30 0 5.42 Hp +111946 T Tuc M 7.50 0 13.8 V 41974. 250.3 46 M3IIe-M6IIe +4541 W Tuc RRAB 10.73 0 11.92 V 36878.431 0.64222988 18 A5-F4: +110451 UU Tuc M 10.4 0 13.6 p 24005. 335. M4e +6115 AM Tuc RRC 11.39 0 11.87 V 41960.387 0.4056575 45 A7:-F3 +1387 AQ Tuc EW 9.91 0 10.48 10.48 V 40477.7743 0.59484267 F3/5(+A) +4200 BQ Tuc LB: 5.70 1 0.20 V M4III +5321 BS Tuc DSCT 7.43 0 7.57 V 0.065 A5III +4693 BT Tuc UV: 10.5 0 11.32 B K0V: +4879 CC Tuc LB 6.19 1 0.10 V M2III +4157 CF Tuc EA/RS 7.44 0 7.80 7.52 V 44160.52 2.79765 10 F8V+K1IV +115908 CG Tuc ACV 5.66 1 0.04 V 2.3148 A0p(Si) +523 CQ Tuc BY: 12.02 0 12.34 Hp +1146 CR Tuc LB 6.64 0 6.82 Hp +1217 CS Tuc LB 8.73 0 8.89 Hp +1993 CT Tuc BY: 11.35 0 11.63 Hp +2933 CU Tuc EA 9.99 0 10.40 Hp +3634 CV Tuc LB: 7.43 0 7.53 Hp +3791 CW Tuc ELL: 9.44 0 9.60 Hp +4406 CX Tuc LB: 9.23 0 9.43 Hp +4513 CY Tuc LB: 8.70 0 8.85 Hp +5038 CZ Tuc SRA 8.81 0 9.25 Hp +5868 DD Tuc SRB 8.54 0 8.74 Hp +6039 DE Tuc SRB 6.86 0 7.03 Hp +109547 DF Tuc LB: 7.62 0 7.75 Hp +109763 DG Tuc LB 7.96 0 8.19 Hp +109770 DH Tuc LB 7.70 0 8.25 Hp +109955 DI Tuc LB 7.08 0 7.21 Hp +110842 DK Tuc E: 6.90 0 6.97 Hp +112830 DL Tuc BY: 11.74 0 12.02 Hp +113330 DM Tuc LB 6.62 0 7.26 Hp +114175 DN Tuc E: 8.57 0 8.71 Hp +114427 DO Tuc BY: 11.26 0 11.61 Hp +114580 DP Tuc LB: 8.80 0 8.96 Hp +114716 DQ Tuc BY: 11.86 0 12.18 Hp +115433 DR Tuc LB 6.08 0 6.20 Hp +116748 DS Tuc RS: 8.27 0 8.39 Hp +117431 DT Tuc LB: 9.09 0 9.24 Hp +117520 DU Tuc SRB 7.19 0 7.58 Hp +117853 DV Tuc ACV 7.03 0 7.06 Hp +117871 DW Tuc LB: 9.04 0 9.15 Hp +118096 DX Tuc EW: 9.63 0 9.90 Hp +113402 EE Tuc GDOR: 6.72 0 6.82 Hp +2731 EN Tuc EB 8.58 0 8.64 8.61 V 52517.605 2.88083 A0V +2629 tet Tuc DSCTC 6.06 0 6.15 V 0.049308 A7IV +5268 ι Tuc SRD: 5.47 0 5.53 Hp +111310 ν Tuc LB: 4.75 0 4.93 V M4III +52546 R UMa M 6.5 0 13.7 V 45593. 301.62 39 M3e-M9e +62126 S UMa M 7.1 0 12.7 V 45778. 225.87 47 S0,9e-S5,9e +61532 T UMa M 6.6 0 13.5 V 45623. 256.60 41 M4IIIe-M7e +50222 U UMa 6.20 0 6.25 V M0III +44846 V UMa SRB 9.5 0 11.5 V 207.65 M5-M6 +47727 W UMa EW/KW 7.75 0 8.48 8.43 V 45765.7385 0.33363749 F8Vp+F8Vp +61839 Y UMa SRB 7.7 0 9.8 V 168. M7II-III: +58225 Z UMa SRB 6.2 0 9.4 V 195.5 M5IIIe +66122 RV UMa RRAB 9.81 0 11.30 V 45075.511 0.468060 20 A6-F5 +56974 RW UMa EA/D/RS 10.16 0 11.72 10.34 V 45823.412 7.328238 08 F9V+K1IV +60180 RY UMa SRB 6.68 0 8.3 V 310. M2-M3IIIe +40060 RZ UMa SRB 9.7 0 11.9 p 115. M5-M6 +55936 ST UMa SRB 6.0 0 7.6 V 110. M4-M5III +65547 SX UMa RRC 10.58 0 11.21 V 45109.333 0.3071178 38 A4-F5 +48682 SY UMa CST 5.27 0 V A3III +55360 SZ UMa UV 10.74 1 0.06 B M1.5V +44601 TT UMa LB 8.9 0 9.5 V M6III +56088 TU UMa RRAB 9.26 0 10.24 V 42831.4947 0.5576587 16 A8-F8 +57362 TV UMa SRB 6.75 0 7.34 V 42. M5III +52599 TX UMa EA/SD 7.06 0 8.80 7.13 V 44998.1475 3.0632382 12 B8V+G0III-IVea +47279 VV UMa EA/SD 10.13 0 10.91 10.26 V 45815.3365 0.687380 19 A2V +53682 VW UMa SR 6.85 0 7.71 V 610. M2 +52577 VY UMa LB 5.87 0 7.0 V C6,3(N0) +52346 WY UMa LB 10.0 0 10.8 p M5 +44998 XY UMa EB/DW/RS 9.50 1 0.67 0.19 V 35216.5011 0.478994587 G2V +47756 YY UMa SRB 10.2 0 11.3 p 25590. 326. M6 +51411 ZZ UMa EA/D 10.1 0 10.7 p 35951.484 2.29926 08 F8 +59411 AB UMa RRAB 10.3 0 11.7 p 36227.640 0.599577 30 F2 +47181 AE UMa SXPHE: 10.86 0 11.52 V 35604.338 0.086017055 16 A9 +56109 AW UMa EW/KW 6.83 0 7.13 7.08 V 44664.7993 0.4387299 F0-F2 +57504 AZ UMa LB 9.6 0 10.3 p M6III +45915 CG UMa LB 5.47 0 5.95 V M4IIIa +54522 CO UMa LB 5.74 0 5.95 V M3.5IIIab +66700 CQ UMa ACV 6.28 0 6.30 V 40747.620 2.449967 A4p(Sr-Cr-Eu) +67231 CR UMa ACV 5.65 0 5.70 V 41444.80 1.37996 B9p(Eu-Cr) +47965 CS UMa LB: 6.78 1 0.16 B M3IIIab +54382 CV UMa LB 9.3 0 10.3 p K5 +55641 CX UMa DSCTC: 6.8 1 0.02 V F0 +45493 DD UMa DSCTC 5.02 1 0.03 B 0.12 A5V +44439 DH UMa LB: 9.2 1 0.24 V C3,5J(R5) +46977 DK UMa RS: 4.56 1 0.05 V 0.9202 G4III-IV +47165 DL UMa DSCTC+E 7.55 1 0.05 V 0.0831 F0 +53425 DM UMa RS 9.57 1 0.32 V 45831.72 7.478 K0-K1III-IVea +58112 DN UMa EA 6.63 0 6.73 6.73 B 43936.4814 1.730418 10 A3Vn +58684 DP UMa DSCTC 5.21 1 0.03 V A7m +56135 EE UMa ELL: 6.35 1 0.16 V +67799 EH UMa LB 6.69 0 6.87 V +50685 EN UMa DSCTC 5.83 0 5.88 V +52602 EO UMa DSCTC 7.07 0 7.15 V +54540 EP UMa ACVO 6.06 1 0.01 V +50933 ET UMa ACV 4.91 1 0.05 B +46247 EZ UMa SRD: 6.23 0 6.28 V +46919 FF UMa RS 8.35 1 0.12 V +50752 FG UMa RS 7.45 1 0.11 V +54765 FI UMa DSCTC 6.65 1 0.03 V +55135 FK UMa RS 9.29 1 0.04 V +40902 FL UMa LB: 7.05 0 7.14 Hp +41581 FM UMa ACV: 9.10 0 9.17 Hp +42068 FN UMa LB 8.29 0 8.70 Hp +42239 FO UMa LB 7.11 0 7.22 Hp +43207 FP UMa LB: 9.23 0 9.36 Hp +43205 FQ UMa LB: 8.24 0 8.30 Hp +43469 FR UMa LB: 8.80 0 8.96 Hp +43515 FS UMa LB: 9.16 0 9.36 Hp +43738 FT UMa RRC: 9.29 0 9.42 Hp +44021 FU UMa LB: 8.97 0 9.07 Hp +44397 FV UMa SRB 8.65 0 8.81 Hp +44457 FW UMa LB: 9.34 0 9.66 Hp +44683 FX UMa EA: 7.14 0 7.18 Hp +44666 FY UMa SRB: 9.04 0 9.80 Hp +44925 FZ UMa LB 7.41 0 7.62 Hp +45693 GG UMa DSCTC: 8.66 0 8.72 Hp +45935 GH UMa SRB 8.32 0 8.58 Hp +46344 GI UMa SRB 7.86 0 8.12 Hp +47364 GK UMa SRB: 7.36 0 7.42 Hp +48422 GL UMa BY: 12.31 0 12.95 Hp +50097 GM UMa EB 6.66 0 6.81 Hp +50169 GN UMa LB 9.01 0 9.23 Hp +50167 GO UMa LB 7.42 0 7.68 Hp +50389 GP UMa LB: 6.60 0 6.65 Hp +50979 GQ UMa LB 10.07 0 10.35 Hp +51110 GR UMa LB 9.36 0 9.94 Hp +51361 GS UMa DSCTC: 8.76 0 8.81 Hp +51876 GT UMa EB 8.14 0 8.43 Hp +52215 GU UMa LB: 9.61 0 9.77 Hp +52265 GV UMa LB: 9.30 0 9.44 Hp +52508 GW UMa DSCT: 9.48 0 9.97 Hp +52663 GX UMa SRD 9.08 0 9.33 Hp +52794 GY UMa SRB 6.89 0 7.03 Hp +52892 GZ UMa E: 10.56 0 10.78 Hp +54165 HH UMa DSCT: 10.58 0 10.79 Hp +54243 HI UMa LB: 9.50 0 9.64 Hp +54251 HK UMa LB: 7.62 0 7.72 Hp +54396 HL UMa SRB 7.98 0 8.17 Hp +54518 HM UMa LB 6.86 0 6.98 Hp +55030 HN UMa EW: 9.90 0 10.02 Hp +55471 HO UMa LB 8.42 0 8.56 Hp +56012 HP UMa LB 9.06 0 9.27 Hp +56158 HQ UMa DSCTC 7.16 0 7.21 Hp +56330 HR UMa EA 8.70 0 9.02 Hp +56533 HS UMa LB 8.30 0 8.95 Hp +57582 HT UMa LB: 8.27 0 8.39 Hp +57731 HU UMa BY: 11.19 0 11.48 Hp +58157 HV UMa RRC 8.60 0 8.89 Hp +58295 HW UMa LB: 8.87 0 9.01 Hp +58648 HX UMa EB 8.89 0 9.06 Hp +58795 HY UMa LB: 7.32 0 7.43 Hp +58927 HZ UMa LB: 8.28 0 8.40 Hp +61237 II UMa EW: 8.17 0 8.48 Hp +61686 IK UMa LB: 9.66 0 9.96 Hp +62581 IL UMa SRB 9.44 0 9.79 Hp +62738 IM UMa LB 7.61 0 7.75 Hp +62936 IN UMa LB: 8.77 0 8.91 Hp +64636 IO UMa EA 8.19 0 8.79 Hp +66609 IP UMa DSCTC: 7.72 0 7.77 Hp +66738 IQ UMa SRB 4.69 0 4.75 Hp +67511 IR UMa LB 7.48 0 7.70 Hp +68284 IS UMa SRB: 9.90 0 10.07 Hp +68744 IT UMa LB: 8.69 0 8.85 Hp +69502 IU UMa LB: 8.29 0 8.40 Hp +69627 IV UMa ELL: 9.00 0 9.06 Hp +48129 IX UMa DSCTC 7.79 1 0.01 V +40462 KO UMa GDOR 7.18 1 0.04 V +43185 KP UMa ELL 7.87 1 0.04 V +57498 KW UMa DSCTC 6.83 1 0.03 B +46748 KZ UMa DSCTC 8.15 1 0.02 V +47924 LM UMa SRS 8.21 1 0.06 V +55563 LR UMa DSCTC: 7.74 1 0.07 B +41488 LS UMa GDOR 8.12 1 0.20 V 1.14 F0 +42919 LT UMa BY 8.91 1 0.03 V K0V +46099 LU UMa GDOR 8.44 0 8.65 Hp 1.1156 F0V +50180 LX UMa BY 8.02 1 0.05 V 4.935 G5V +53008 LZ UMa BY 8.31 1 0.02 V 8.47 G5V +54745 MN UMa BY 6.53 0 6.56 Hp 8.25 G0V +56829 MV UMa RS 8.22 1 0.02 V 10.84 K5V +57558 MX UMa DSCTC 8.78 1 0.08 B 0.116 F3III/IV +57859 MY UMa BY 8.97 1 0.03 V 11.43 K0V +59432 MZ UMa BY 7.96 1 0.02 V 7.44 K0V+K1V +60693 NN UMa BY: 7.53 1 0.03 V 7.4 K2 +61100 NO UMa RS: 8.08 1 0.03 V 8.81 K2V +61946 NP UMa BY 8.27 1 0.03 V 11.75 K3V +65515 NQ UMa BY 7.29 1 0.04 V 4.27 G9V +53209 NU UMa EA 9.27 0 9.50 9.50 V 48058.296 5.50762 03 G5IV +56275 NY UMa GDOR 7.95 0 8.02 V 0.7564 F1V+G0:V +59203 NZ UMa GDOR 7.72 0 7.82 V 0.7572 F0III +40772 OS UMa EA/RS 5.73 0 5.79 V 48022.9 89.06 10 G8III+F0: +46642 QR UMa EA 7.35 0 7.45 V 48147.080 1.7854 09 A5 +58557 V0350 UMa BY 10.8 1 0.05 R 1.336 K7V +63096 V0352 UMa ELL: 6.78 0 6.82 Hp 1.41353 A0 +62956 ε UMa ACV 1.76 1 0.02 V 26437.01 5.0887 A0p(Cr-Eu) +55203 χ UMa RS 4.38 1 0.01 V +48319 Ï… UMa DSCT 3.68 0 3.86 V 41353.540 0.1327 64 F2IV +80802 R UMi SRB 8.5 0 11.5 V 325.7 50 M7IIIe +75847 S UMi M 7.5 2 13.2 V 45931. 331.0 50 M6e-M9e +69816 U UMi M 7.1 0 13.0 V 45418. 330.92 50 M6e-M8e +66562 V UMi SRB 7.2 0 9.1 V 72.0 45 M5IIIab: +79069 W UMi EA/SD 8.51 0 9.59 8.66 V 33682.323 1.7011576 23 A3 +73199 RR UMi SRB 4.53 0 4.73 V 43.3 M5III +77623 RS UMi EA/D/RS 10.81 0 11.4 B 44756.734 6.16862258 12 F8 +68477 SV UMi LB: 9.30 0 9.50 Hp +68798 SW UMi LB: 8.71 0 8.82 Hp +70245 SX UMi LB: 8.07 0 8.24 Hp +71376 SY UMi LB: 8.63 0 8.77 Hp +72625 SZ UMi BY: 11.41 0 12.02 Hp +72992 TT UMi SRB 6.90 0 7.04 Hp +73047 TU UMi DSCTC 8.84 0 8.90 Hp +73474 TV UMi EB 8.77 0 8.85 Hp +74451 TW UMi LB 7.93 0 8.09 Hp +74034 TX UMi BY: 10.82 0 11.26 Hp +74866 TY UMi EA 7.79 0 8.24 Hp +75886 TZ UMi LB 8.40 0 8.60 Hp +76832 UU UMi BY: 12.04 0 12.40 Hp +79253 UV UMi LB: 9.47 0 9.84 Hp +80503 UW UMi SRB 8.81 0 9.09 Hp +82720 UX UMi LB: 9.70 0 9.87 Hp +59767 UY UMi GDOR: 6.30 0 6.38 Hp +63245 VV UMi EA 9.78 0 10.03 9.99 V 48557.320 7.1520 04 A3 +83317 VX UMi GDOR 6.48 1 0.06 B 0.34511 A9V +11767 α UMi DCEPS 1.86 0 2.13 V 31495.813 3.9696 50 F7Ib-F8Ib +75097 γ UMi DSCTC 3.04 1 0.05 V 39950.367 0.143009 A3II-III +82080 ε UMi EA/D/RS 4.19 0 4.23 4.21 V 33077.75 39.4809 04 G5III +84535 λ UMi SRB 6.35 0 6.45 Hp +49477 R Vel CST: 6.49 0 6.52 V K1III +46881 S Vel EA/SD 7.74 0 9.50 7.83 V 27612.3560 5.9336475 10 A5Ve+K5IIIe +42321 T Vel DCEP 7.68 0 8.34 V 40713.28 4.63974 30 F6-G0II +45949 V Vel DCEP 7.19 0 7.95 V 40736.25 4.370991 30 F6-F9II +50230 W Vel M 8.3 0 14.0 V 40699. 394.72 44 M5-M8IIIe +48662 X Vel SR 10.3 0 11.53 B 140. C4-5,4-5(Nb) +46502 Y Vel M 8.0 0 14.2 V 40437. 449.9 40 M8e-M9.5 +50655 RY Vel DCEP 7.86 0 8.89 V 44017.94 28.1357 22 F5-G3Ib/II +42257 RZ Vel DCEP 6.42 0 7.64 V 34845.57 20.398240 30 G1Ib-G8 +42929 ST Vel DCEP 9.39 0 10.08 V 40896.70 5.8584249 30 K +52570 SV Vel DCEP 7.91 0 9.12 V 36195.125 14.09707 34 F6-G5II +42831 SW Vel DCEP 7.44 0 8.96 V 40738.24 23.4410 15 F8/G0Ib +42926 SX Vel DCEP 7.92 0 8.72 V 21015.98 9.54993 49 F8II +52988 WW Vel M 10.8 0 14. p 23173. 187.4 M5e +52887 WX Vel M 11.2 0 14.2 p 28910. 411.5 M5e-M7IIIe +50407 WZ Vel SRB 9.0 0 10.0 p 130. M3-M5/6II/III +51894 XX Vel DCEP 10.25 0 11.22 V 34909.742 6.98457 26 +47177 AE Vel DCEP 9.88 0 10.73 V 40772.20 7.13357 33 +53213 AF Vel RRAB 10.68 0 11.78 V 41432.267 0.5273984 15 F1-F4 +40155 AH Vel DCEPS 5.50 0 5.89 V 42035.675 4.227171 50 F7Ib-II +40330 AI Vel DSCT 6.15 0 6.76 V 0.11157411 A2p-F2pIV/V +41784 AL Vel EA/GS/D 8.60 0 8.93 V 42510.04 96.107 09 K0III+A3III/V +42492 AP Vel CEP(B) 9.49 0 10.48 V 34900.805 3.12776 33 F9 +44847 BG Vel DCEP 7.43 0 7.91 V 34918.94 6.923655 32 F7/8II +47796 CD Vel RRAB 11.3 0 12.4 p 28721.235 0.5734894 14 F +53853 CI Vel M 11.0 0 13.5 p 28230. 142.5 M0e +49611 CM Vel SRC 8.7 0 11.0 p 28780. 780. M0-M5(II) +44245 CV Vel EA/DM 6.69 0 7.19 7.17 V 42048.6689 6.889494 07 B2.5V+B2.5V +45570 DK Vel DCEP 10.34 0 10.88 V 41354.250 2.48164 40 F8II +46610 DP Vel DCEP 11.51 0 12.20 V 35250.94 5.48438 24 +46746 DR Vel DCEP 9.12 0 9.97 V 34930.70 11.1993 42 +48122 FN Vel CEP 10.9 0 12.1 p 33240.35 5.32422 +48499 FP Vel LB 12.0 0 13.38 B C +41882 FY Vel EB:/GS 6.84 0 7.06 7.03 V 40210.586 33.72 B2Ibpe +44093 FZ Vel DSCTC 5.14 0 5.17 V 0.065 A6/7(m)-F0m +46188 GI Vel SRB 7.88 0 8.05 V 120. M3III +46194 GK Vel SRB 6.26 0 6.39 V 120. M3III-M5III +42315 GO Vel SRB 6.61 0 6.98 V 75. M4III-M5III +44368 GP Vel E+ACYG+XP 6.76 0 6.99 6.90 V 44275.20 8.9647 B0.5Iaeq +41483 GU Vel DSCTC 5.08 0 5.11 V 0.07 A9/F0III/IV +45085 GX Vel ACYG: 4.97 0 5.04 V B5Ia +50332 GY Vel LB 6.23 0 6.5 V M4/5III +50555 GZ Vel LC 3.43 0 3.81 R K3II +42177 HV Vel ACVO: 5.77 0 5.81 V 2.66745 B9p(Si) +42459 HW Vel BCEP 5.46 0 5.52 V 42745.000 0.26145 B6V +42712 HX Vel ELL: 5.48 0 5.53 5.50 V 42758.253 1.12488 B1.5Vn +42726 HY Vel ELL: 4.83 0 4.90 4.90 V 44627.727 3.106 B3IV +43354 HZ Vel DSCTC 6.39 1 0.02 V 0.087 A5III +47145 IM Vel ACVO 6.50 1 0.04 B 43181.00 2.85204 A8p(Sr-Eu-Cr) +47206 IN Vel RS: 8.84 0 9.13 V K2IIIp +47272 IO Vel ACV 6.9 1 0.03 V 43185.702 1.08184 65 A0p(Si-Sr) +47694 IP Vel E 6.03 1 0.19 B 42861.6697 B6V +39970 IS Vel BCEP 5.23 0 V 0.108 B1IVn +40662 IT Vel ELL: 7.03 0 7.08 7.08 V 42524.231 2.088 B7III +44213 IU Vel GCAS 5.97 0 6.08 V B2.5Vne +48799 IV Vel BCEP 5.99 1 0.01 B 43215.675 0.1608 B3IV +53530 IW Vel DSCTC 5.90 1 0.01 V 0.150 A4V +40430 IX Vel NL 9.1 0 10.0 p +43807 IY Vel * 6.23 0 6.27 V +44299 IZ Vel * 5.53 0 5.56 V +44790 KK Vel BCEP 6.75 0 6.80 V +45189 KL Vel ACV 5.56 0 5.57 V +48054 KN Vel E 7.1 1 0.09 V +53379 KQ Vel ACV 6.10 0 6.12 V +42715 KT Vel ACV 5.49 0 5.56 V +39873 KW Vel ACV 7.84 0 7.98 U +43413 KX Vel E 4.87 1 0.08 B +54060 LL Vel ELL: 6.71 0 6.76 V +42587 LM Vel ACYG 7.54 0 7.57 V +42679 LN Vel ACYG 5.19 0 5.25 V +45675 LR Vel ACYG 5.82 0 5.96 V +48904 LU Vel UV 11.5 0 13.76 U +50070 LW Vel DSCTC 5.24 0 5.29 V +51444 LX Vel EB/GS 6.60 0 6.66 b +45823 LY Vel LPB 7.75 1 0.02 V +48598 LZ Vel RS: 7.27 0 7.39 V +45091 MP Vel DSCTC 7.8 1 0.02 V +47131 MS Vel SRA 8.13 0 8.98 T +47889 MT Vel DSCTC 8.1 1 0.09 B +39584 MX Vel BE: 6.09 0 6.16 Hp +39687 MY Vel LPB 8.64 0 8.69 Hp +39759 MZ Vel LB: 7.74 0 7.84 Hp +39919 NN Vel ACYG: 5.62 0 5.65 Hp +40285 NO Vel EB 5.08 0 5.12 Hp +40504 NP Vel LB: 8.80 0 8.90 Hp +41113 NQ Vel IA: 7.63 0 7.77 Hp +41501 NR Vel GCAS: 7.56 0 7.75 Hp +41774 NS Vel GCAS: 7.23 0 7.37 Hp +42061 NT Vel EA 8.33 0 9.01 Hp +42161 NU Vel LB 7.32 0 7.50 Hp +42227 NV Vel IB: 9.47 0 9.72 Hp +42399 NW Vel SRD 7.92 0 8.05 Hp +42433 NX Vel E 7.25 0 7.38 Hp +42540 NY Vel ACV 5.15 0 5.19 Hp +42504 NZ Vel ELL: 5.11 0 5.14 Hp +42519 OO Vel ACV 7.41 0 7.44 Hp +43082 OP Vel ACYG: 5.50 0 5.55 Hp +43071 OQ Vel RRC: 7.73 0 7.77 Hp +43229 OR Vel BE 8.98 0 9.14 Hp +43443 OS Vel ACYG: 7.68 0 7.75 Hp +43493 OT Vel SRB 7.61 0 7.72 Hp +43792 OU Vel BE 8.04 0 8.12 Hp +43812 OV Vel EB: 8.19 0 8.32 Hp +43936 OW Vel SRD: 7.73 0 7.91 Hp +44166 OX Vel ACV: 7.60 0 7.71 Hp +44337 OY Vel ACV 5.19 0 5.22 Hp +44433 OZ Vel LB: 7.69 0 7.79 Hp +44482 PP Vel LB: 8.32 0 8.43 Hp +44612 PQ Vel EA 7.66 0 7.83 Hp +44655 PR Vel LPB 8.22 0 8.26 Hp +44996 PS Vel LPB 6.78 0 6.81 Hp +45079 PT Vel EA 7.05 0 7.60 Hp +45392 PU Vel EB 8.52 0 8.65 Hp +45467 PV Vel ACYG: 7.51 0 7.66 Hp +45509 PW Vel LB: 8.37 0 8.55 Hp +45548 PX Vel ACV 7.53 0 7.56 Hp +45633 PY Vel SRD: 9.32 0 9.46 Hp +45692 PZ Vel LPB 8.43 0 8.47 Hp +45833 QQ Vel BE 9.74 0 9.87 Hp +45934 QR Vel BE 10.13 0 10.30 Hp +46295 QS Vel ACV 8.28 0 8.33 Hp +46340 QT Vel EA 8.02 0 8.23 Hp +46959 QU Vel LB: 8.17 0 8.28 Hp +47074 QV Vel ACV 8.66 0 8.73 Hp +48120 QW Vel LB 7.41 0 7.61 Hp +48155 QX Vel EB 7.98 0 8.21 Hp +48185 QY Vel EA 8.25 0 8.46 Hp +48469 QZ Vel LPB 6.42 0 6.47 Hp +48527 V0335 Vel LPB 5.88 0 5.91 Hp +49393 V0336 Vel DSCTC 6.93 0 6.96 Hp +49743 V0337 Vel GCAS 7.83 0 8.10 Hp +49940 V0338 Vel ACV 7.86 0 7.92 Hp +50276 V0339 Vel LB 8.23 0 8.47 Hp +50463 V0340 Vel E: 7.89 0 7.99 Hp +50550 V0341 Vel EA 7.90 0 8.30 Hp +50598 V0342 Vel ACYG: 7.21 0 7.27 Hp +50702 V0343 Vel EA 8.31 0 8.95 Hp +50775 V0344 Vel DSCTC 7.96 0 8.00 Hp +50780 V0345 Vel EA 7.49 0 7.95 Hp +50970 V0346 Vel LB 6.50 0 6.84 Hp +51049 V0347 Vel LB 7.03 0 7.13 Hp +51087 V0348 Vel SRC 6.81 0 7.07 Hp +51355 V0349 Vel ACV: 9.64 0 9.78 Hp +51412 V0350 Vel ACV 7.45 0 7.53 Hp +51595 V0351 Vel E: 12.19 0 12.79 Hp +52095 V0352 Vel LB: 7.95 0 8.06 Hp +52624 V0353 Vel DSCTC: 7.68 0 7.72 Hp +52622 V0354 Vel LB 6.55 0 6.71 Hp +52748 V0355 Vel LB: 8.90 0 9.08 Hp +52816 V0356 Vel EB 6.73 0 6.87 Hp +53676 V0357 Vel LB: 8.35 0 8.50 Hp +53782 V0358 Vel LB 7.34 0 7.46 Hp +53806 V0359 Vel EA 7.58 0 7.84 Hp +53938 V0360 Vel ACV 7.70 0 7.80 Hp +53940 V0361 Vel LB 6.20 0 7.55 Hp +54112 V0362 Vel EW 9.09 0 9.36 Hp +42349 V0363 Vel LPB 8.84 0 8.93 Hp +50596 V0398 Vel ELL: 7.92 1 0.03 V 1.455 A1IV/V +50996 V0399 Vel BCEP: 8.24 1 0.02 V 0.65664 B9IV/V +44550 V0405 Vel EA 8.89 0 9.06 9.05 V 48311.779 10.31168 02 G3V +52362 V0432 Vel EA 9.04 0 9.22 9.22 V 48970.460 1.46857 08 F2V +53357 V0440 Vel EA 9.47 0 9.63 9.60 V 48603.597 2.354858 09 A7III +42036 V0451 Vel EB 7.46 0 7.50 7.49 V 52224.81 7.8553 B2V +42913 δ Vel EA 1.96 1 0.4 V +44816 λ Vel LC 2.14 0 2.30 V K4Ib-IIa +42536 ο Vel * 3.55 0 3.67 V 44651.6922 2.779 50 B3III-IV +46701 N Vel CST: 3.12 0 3.15 V K5III +61667 R Vir M 6.1 0 12.1 V 45872. 145.63 50 M3.5IIIe-M8.5e +66100 S Vir M 6.3 0 13.2 V 45046. 375.10 45 M6IIIe-M9.5e +62712 U Vir M 7.4 0 13.5 V 44736. 206.64 47 M2e-M8e: +65531 W Vir CWA 9.46 0 10.75 V 32697.783 17.2736 38 F0Ib-G0Ib +70669 RS Vir M 7.0 0 14.6 V 45753. 353.95 37 M6IIIe-M8e +63642 RT Vir SRB 7.41 0 8.70 V 155. M8III +62401 RU Vir M 9.0 0 14.2 V 37773. 433.2 49 C8,1e(R3ep) +59108 RW Vir LB 6.72 0 7.38 V M5III +120212 SS Vir SRA 6.0 0 9.6 V 45361. 364.14 48 C6,3e(Ne) +70702 ST Vir RRAB 10.84 0 12.08 V 40736.374 0.4108280 12 A6-A8 +64569 SW Vir SRB 6.40 0 7.90 V 150. M7III +57850 TY Vir SRD 7.97 0 8.5 V 50. G3pIb +59208 UU Vir RRAB 9.89 0 11.07 V 41797.461 0.47560652 17 A9-F5 +64672 UW Vir EA/SD 8.98 0 12.3 V 44345.413 1.8107755 14 A2 +63592 UY Vir EA/DM 8.00 0 8.8 8.1 V 30020.667 1.9945051 16 A7V +70751 AF Vir RRAB 10.94 0 12.01 V 40333.771 0.48376 30 A2 +58605 AG Vir EW/KE 8.35 1 0.58 0.44 V 45432.4146 0.64265075 A7-A9V +59683 AH Vir EW/KW 8.89 1 0.60 0.53 V 45814.385 0.407521 K0V+K0V +69306 AL Vir CWA 9.10 0 9.92 V 44396.69 10.30256 41 F0-F8 +65344 AM Vir RRAB 11.07 0 11.80 V 26859.275 0.61508784 21 A6 +63054 AT Vir RRAB 10.63 0 11.82 V 39678.262 0.5257931 12 A7 +65445 AU Vir RRC 11.36 0 11.90 V 41795.317 0.3432307 35 A5-F6: +65063 AV Vir RRAB 11.42 0 12.16 V 41470.283 0.6569090 17 A9-F6 +65660 AX Vir EB/KE 10.0 0 10.81 10.24 V 27570.444 0.7025262 A0p +67653 BB Vir RRAB 10.70 0 11.42 V 39613.776 0.4710965 13 A2 +65575 BD Vir EA/SD 9.9 0 11.2 V 42538.413 2.548537 18 A5 +67313 BF Vir EB/KE: 10.5 0 11.23 10.72 V 46070.684 0.640570 A2 +68258 BH Vir EA/DW/RS: 9.60 0 10.56 10.24 V 43230.609 0.81687161 16 G0V+G2V +61022 BK Vir SRB 7.28 0 8.8 V 150. M7III +63501 BZ Vir M 9.5 2 13. p 29701. 150.92 M5e +67439 CE Vir RV: 8.37 0 10.71 V 67. G-K +61473 CK Vir SRD 10.19 0 11.04 V 93. G +63344 CN Vir SRB 8.17 0 9.0 V 60. M3 +68137 CP Vir SRB 8.38 0 8.91 V 70. M7 +69929 CS Vir ACV 5.84 0 5.95 V 40382.25 9.2954 50 A0p(Cr-Eu) +69389 CU Vir ACV 4.92 0 5.07 V 41455.685 0.5206794 50 A0Vp(Si) +66200 CW Vir ACV 4.91 0 4.99 V 34816.9 3.7220 A1p(Sr-Cr-Eu) +64769 DK Vir DSCTC 6.67 0 6.72 V 41777.804 0.119153 40 F0IV +67744 DL Vir EA 7.0 0 7.5 V 38796.525 1.31548 14 G8III+A3 +69029 DM Vir EA/D 8.75 0 9.50 9.49 V 43583.8810 4.6694335 06 F6IV+F6IV +69325 DN Vir SRB 9.1 0 9.6 p MB +63510 DT Vir UV+BY 10.34 0 11.32 B M2Ve +62376 EP Vir ACV 6.29 0 6.39 V 40640.20 16.304 A0p(Sr-Eu-Cr) +66252 EQ Vir UV+BY 11.80 0 14.1 U K5Ve +68937 ER Vir SRB 6.45 0 6.63 V 40752. 55. M4III +69269 ET Vir SRB 4.80 0 5.00 V 40697. 80. M2IIIa +69449 EV Vir SRB 6.74 0 7.09 V 40726. 120. M4II-III +69981 EY Vir SRB 8.2 0 8.6 V M5 +70134 EZ Vir SRB 7.77 0 7.97 V 40710. 39. M1 +70553 FF Vir ACV 7.07 0 7.13 V 130.0 A2p(Cr-Sr) +59676 FG Vir DSCTC 6.53 0 6.58 V 0.079 Am +64768 FH Vir SRB 6.92 0 7.45 V 40740. 70. M6III +60500 FK Vir SRB 7.50 0 7.78 V 40. M4III +62267 FM Vir DSCTC 5.20 0 5.28 V 0.07188 F0IVm+A7V +65839 FO Vir EB/KE 6.50 0 6.82 6.67 V 45441.7110 0.775567 A7V +66345 FP Vir SRB 6.72 0 7.35 V 40. M4III +69126 FR Vir LB: 7.02 0 7.19 V M3III +69614 FS Vir LB: 6.37 0 6.52 V M4IIIab +60813 FT Vir DSCTC 6.20 0 6.24 V 0.05 F2III +61658 FW Vir SRB: 5.63 0 5.75 V 42250. 15. 50 M3IIIab +60924 FZ Vir SRB 6.81 0 6.98 V 25. M4III +61937 GG Vir DSCT 6.19 0 6.33 V A7V +66339 GP Vir GCAS 8.03 0 8.10 V B5e +72138 GR Vir EW/KW 7.8 1 0.45 0.41 V 45116.381 0.419757 G0 +64498 GZ Vir DSCTC 8.0 1 0.03 V +67186 HT Vir EW/KW 7.06 0 7.48 V +59600 HU Vir RS: 8.1 1 0.27 V +62157 HW Vir EA/D 10.5 1 0.90 V +66015 HX Vir DSCTC 6.01 1 0.02 V +64120 HY Vir EA 7.81 0 8.10 V +59346 II Vir DSCTC: 6.49 0 6.55 V +65411 IN Vir RS 9.24 1 0.15 V +58002 IQ Vir DSCTC 6.30 1 0.02 V +63958 IS Vir RS 8.27 1 0.05 V +68023 IT Vir ELL 7.82 0 7.86 V +56724 IW Vir LB 8.79 0 9.52 Hp +57264 IX Vir LB: 8.22 0 8.48 Hp +58372 IY Vir LB: 9.43 0 9.59 Hp +58866 IZ Vir SRB 7.14 0 7.24 Hp +59289 KK Vir LB: 9.23 0 9.34 Hp +59549 KL Vir SRB 8.27 0 8.42 Hp +60126 KM Vir LB 8.15 0 8.30 Hp +60298 KN Vir LB: 7.41 0 7.51 Hp +60333 KO Vir LB 7.46 0 7.62 Hp +60812 KP Vir EA 8.42 0 8.79 Hp +60938 KQ Vir LB: 8.84 0 8.95 Hp +61899 KR Vir SRD: 9.39 0 9.65 Hp +61903 KS Vir LB 7.62 0 7.82 Hp +62070 KT Vir SRB 7.42 0 7.56 Hp +62168 KU Vir LB 7.86 0 8.06 Hp +63313 KV Vir LB: 7.82 0 7.92 Hp +63560 KW Vir SRB 7.45 0 7.58 Hp +63752 KX Vir SRB 7.30 0 7.42 Hp +64210 KY Vir SRB: 8.02 0 8.35 Hp +64433 KZ Vir EB: 8.45 0 8.52 Hp +64460 LL Vir SRB: 6.91 0 7.08 Hp +64607 LN Vir E: 5.75 0 5.80 Hp +64645 LO Vir SRB 7.16 0 7.30 Hp +64834 LP Vir ELL: 6.92 0 7.08 Hp +64935 LQ Vir LB 8.16 0 8.30 Hp +64959 LR Vir SRD 8.44 0 8.70 Hp +65122 LS Vir SRB: 8.30 0 8.54 Hp +65225 LT Vir SRB: 7.49 0 7.67 Hp +65590 LU Vir EB: 7.88 0 8.16 Hp +66078 LV Vir EW: 8.50 0 8.68 Hp +66266 LW Vir LB: 9.14 0 9.29 Hp +66324 LX Vir LB 8.41 0 8.75 Hp +66407 LY Vir LB: 8.45 0 8.81 Hp +66875 LZ Vir LB 7.99 0 8.17 Hp +67254 MM Vir SRB: 8.89 0 9.05 Hp +67471 MN Vir LB: 9.02 0 9.13 Hp +67709 MO Vir SRD 9.03 0 9.26 Hp +68221 MP Vir LB: 8.72 0 8.82 Hp +68383 MQ Vir LB 8.80 0 8.99 Hp +68718 MR Vir EB 8.57 0 8.69 Hp +68881 MS Vir EW: 9.40 0 9.67 Hp +69348 MT Vir LB: 9.02 0 9.16 Hp +69403 MU Vir E: 7.24 0 7.28 Hp +69562 MV Vir BY: 10.38 0 12.06 Hp +69828 MW Vir EW: 7.00 0 7.04 Hp +69848 MX Vir DSCTC: 7.41 0 7.46 Hp +69966 MY Vir LB: 8.19 0 8.52 Hp +69987 MZ Vir LB 7.29 0 7.66 Hp +70020 NN Vir RRC: 7.60 0 8.02 Hp +70188 NO Vir LB 8.03 0 8.34 Hp +70450 NP Vir SRB: 8.79 0 9.00 Hp +70772 NQ Vir LB 7.36 0 7.57 Hp +70816 NR Vir SRD 6.93 0 7.09 Hp +71052 NS Vir EB 8.79 0 9.13 Hp +71374 NT Vir LB: 8.47 0 8.61 Hp +71455 NU Vir SRD 8.47 0 8.73 Hp +71868 NV Vir SRB: 8.54 0 8.98 Hp +72268 NW Vir LB: 7.22 0 7.32 Hp +71820 OV Vir DSCTC: 7.83 1 0.03 V +58981 OX Vir SRS: 6.64 0 6.75 V +63487 OY Vir SRS 7.51 1 0.06 V +68790 PP Vir ACVO 8.67 1 0.01 B +57658 PQ Vir BY: 9.12 1 0.03 V K0V +58237 PR Vir BY 9.50 1 0.05 V 17.16 K3V +63742 PX Vir BY 7.69 1 0.04 V 6.47 G5V +67705 QT Vir DSCTC 8.50 1 0.02 V 0.0562 A3 +72312 QY Vir BY 7.76 1 0.02 V 21.79 G8V +70566 V0349 Vir EA 8.29 0 8.34 8.30 V 48612.396 2.12408 06 F3V +64473 V0457 Vir RS 8.42 0 8.54 V 9.870 G5 +65474 α Vir ELL+BCEP 0.95 1 0.10 0.08 V 19530.49 4.014604 B1III-IV+B2V +57380 ν Vir SRB 4.10 0 4.16 Hp +61960 Ï Vir DSCTC 4.88 1 0.02 V +62985 ψ Vir LB 4.73 0 4.96 V M3III +56779 ω Vir LB 5.23 0 5.50 V M4III +36423 S Vol M 7.7 0 13.9 V 41940. 394.8 54 M4e +37120 W Vol EA/AR: 10.9 0 11.8 p 16846.411 2.758361 17 K/M +31539 UZ Vol E: 9.41 0 9.90 Hp +32507 VV Vol SRB 8.42 0 8.62 Hp +32953 VW Vol LB: 8.67 0 8.78 Hp +33107 VX Vol E: 8.03 0 8.28 Hp +33115 VY Vol LB: 8.81 0 8.92 Hp +34126 VZ Vol LB: 8.21 0 8.34 Hp +35464 WW Vol LB 7.92 0 8.21 V +37695 WX Vol LB 7.51 0 7.67 Hp +39791 WY Vol ACV 7.97 0 8.02 Hp +42841 WZ Vol EA 8.40 0 8.66 Hp +38176 AK Vol RS 8.54 0 8.65 V 31.808 G8III +104015 R Vul M 7.0 0 14.3 V 45586. 136.73 49 M3e-M7e +102949 T Vul DCEP 5.41 0 6.09 V 41705.121 4.435462 32 F5Ib-G0Ib +96458 U Vul DCEP 6.73 0 7.54 V 44939.58 7.990676 33 F6Iab-G2 +99362 W Vul SRB 10.2 0 11.8 p 234.52 43 M5IIIe +98212 X Vul DCEP 8.33 0 9.22 V 35309.977 6.319588 30 F6Ia-F9 +95163 Z Vul EA/SD 7.25 0 8.90 7.58 V 42947.4777 2.454934 18 B4V+A3III +94822 RS Vul EA/SD: 6.79 0 7.83 6.86 V 32808.257 4.4776635 14 B4V+A2IV +94287 RT Vul CST 7.5 0 p B8 +101888 RU Vul SRA 8.1 0 12.7 V 43440. 173.6 47 M3e-M4e +103069 RX Vul M 11. 0 15. p 27520. 457. M9e +97717 SV Vul DCEP 6.72 0 7.79 V 43086.89 45.0121 23 F7Iab-K0Iab +95702 BN Vul RRAB 10.63 0 11.40 V 45530.395 0.5941295 19 A6-F4 +100745 BP Vul EA/SD 10.1 0 11.3 10.5 p 46003.248 1.9403491 10 A7 +97309 BR Vul DCEP 11.8 0 12.8 p 16728.15 5.197170 28 +103191 BW Vul BCEP 6.52 1 0.24 V 45177.6220 0.20104117 50 B1III-B2IIIeaV +103933 DY Vul LB 8.4 0 9.7 p M3-M6 +103833 ER Vul EW/DW/RS 7.27 0 7.49 7.44 V 40182.2621 0.69809409 G0V+G5V +94827 ES Vul BCEP: 5.42 1 0.06 V 36338.5 0.6096 50 O8IV-B0.5IVeV +101527 FG Vul SRC 8.97 0 9.51 V 36095.8 86.0 M5II +102720 FI Vul LB 8.6 0 10.3 p M3 +93603 LT Vul DSCT 6.52 0 6.62 V 40720.7916 0.1090 47 F2III +99927 MW Vul ACV 6.62 0 6.70 V 42644.3 16.846 40 A0p(Si) +98543 NT Vul ACV 4.62 0 4.67 V 41885.2 14.0 A4IIIm +99738 NU Vul DSCTC 5.36 1 0.05 B 0.227 A7IVn-shell +97091 PS Vul E: 6.28 1 0.07 V B7V+G1:III +99824 QR Vul GCAS 4.60 0 4.80 V +99853 QS Vul EA/GS 5.15 1 0.12 V +97281 QY Vul E/WR 10.43 0 10.53 B +95260 V0377 Vul LPB 5.18 1 0.03 V +97572 V0379 Vul ELL 6.22 0 6.29 V +99923 V0383 Vul DSCTC 7.2 1 0.03 V +93270 V0387 Vul LB 6.21 0 6.32 Hp +94427 V0388 Vul ACV: 9.69 0 9.82 Hp +94969 V0389 Vul SRB 6.69 0 6.98 Hp +95512 V0390 Vul ACV: 7.39 0 7.41 Hp +96034 V0391 Vul LPB 7.32 0 7.36 Hp +96228 V0392 Vul ACV: 9.99 0 10.14 Hp +96493 V0393 Vul BY: 9.39 0 9.56 Hp +97500 V0394 Vul E: 8.75 0 8.92 Hp +97679 V0395 Vul BE 4.78 0 4.97 V +97681 V0396 Vul BE 7.77 0 7.82 Hp +98504 V0397 Vul ELL: 7.38 0 7.46 Hp +99402 V0398 Vul LPB: 7.54 0 7.62 Hp +100719 V0399 Vul EA: 7.01 0 7.17 Hp +102037 V0400 Vul EA: 6.76 0 6.82 Hp +102238 V0401 Vul BY: 10.85 0 11.03 Hp +102650 V0402 Vul EB: 8.32 0 8.45 Hp +104135 V0403 Vul EB 6.83 0 6.88 Hp +104175 V0404 Vul SRD 9.46 0 9.69 Hp +98505 V0452 Vul BY 7.67 1 0.03 V 12.039 G5V +105232 V0457 Vul BY 8.45 1 0.04 V 6.664 G8V diff -Nru stellarium-0.12.1/util/GCVS/gcvs_hip_part_creator.pl stellarium-0.12.4/util/GCVS/gcvs_hip_part_creator.pl --- stellarium-0.12.1/util/GCVS/gcvs_hip_part_creator.pl 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/util/GCVS/gcvs_hip_part_creator.pl 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,99 @@ +#!/usr/bin/perl + +# +# Tool for create a GCVS catalog for Stellarium +# +# Copyright (C) 2013 Alexander Wolf +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +# + +$SC = "./vcat-hip.dat"; # Source +$OC = "./gcvs_hip_part.dat"; # Destination + +open (OC, ">$OC"); +open (SC, "$SC"); +while () { + $rawstring = $_; + $hipstr = substr($rawstring,0,6); + $designationstr = substr($rawstring,15,9); + $vclassstr = substr($rawstring,44,9); + $maxmagstr = substr($rawstring,55,7); + $ampflagstr = substr($rawstring,65,1); + $min1magstr = substr($rawstring,66,6); + $min2magstr = substr($rawstring,79,6); + $flagstr = substr($rawstring,91,2); + $epochstr = substr($rawstring,94,10); + $periodstr = substr($rawstring,114,16); + $mmstr = substr($rawstring,134,2); + $sclassstr = substr($rawstring,140,16); + + $hipstr =~ s/(\s+)//gi; + $designationstr =~ s/(\s+)/ /gi; + $vclassstr =~ s/(\s+)//gi; + $maxmagstr =~ s/(\s+)//gi; + $min1magstr =~ s/(\s+)//gi; + $min2magstr =~ s/(\s+)//gi; + $epochstr =~ s/(\s+)//gi; + $periodstr =~ s/(\s+)//gi; + $mmstr =~ s/(\s+)//gi; + $sclassstr =~ s/(\s+)//gi; + $flagstr =~ s/(\s+)//gi; + + $designationstr =~ s/alf/α/; + $designationstr =~ s/bet/β/; + $designationstr =~ s/gam/γ/; + $designationstr =~ s/del/δ/; + $designationstr =~ s/eps/ε/; + $designationstr =~ s/zet/ζ/; + $designationstr =~ s/eta/η/; + $designationstr =~ s/the/θ/; + $designationstr =~ s/iot/ι/; + $designationstr =~ s/kap/κ/; + $designationstr =~ s/lam/λ/; + $designationstr =~ s/mu./μ/; + $designationstr =~ s/nu./ν/; + $designationstr =~ s/xi./ξ/; + $designationstr =~ s/omi/ο/; + $designationstr =~ s/pi./Ï€/; + $designationstr =~ s/rho/Ï/; + $designationstr =~ s/sig/σ/; + $designationstr =~ s/tau/Ï„/; + $designationstr =~ s/ups/Ï…/; + $designationstr =~ s/phi/φ/; + $designationstr =~ s/ksi/χ/; + $designationstr =~ s/khi/χ/; + $designationstr =~ s/psi/ψ/; + $designationstr =~ s/ome/ω/; + + $ampflag = 0; + if ($ampflagstr eq '(') { + $ampflag = 1; + } + if ($ampflagstr eq '<') { + $ampflag = 2; + } + if ($ampflagstr eq '>') { + $ampflag = 3; + } + + print OC $hipstr."\t".$designationstr."\t".$vclassstr."\t".$maxmagstr."\t".$ampflag."\t".$min1magstr."\t".$min2magstr."\t".$flagstr."\t".$epochstr."\t".$periodstr."\t".$mmstr."\t".$sclassstr."\n"; +} +close SC; +close OC; diff -Nru stellarium-0.12.1/util/GCVS/get-hip.pl stellarium-0.12.4/util/GCVS/get-hip.pl --- stellarium-0.12.1/util/GCVS/get-hip.pl 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/util/GCVS/get-hip.pl 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,68 @@ +#!/usr/bin/perl + +# +# Tool for create a GCVS catalog for Stellarium +# +# Copyright (C) 2013 Alexander Wolf +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +# + + +use LWP::UserAgent; + +$GCVS = "./varcat-hip.dat"; # GCVS part +$HIPV = "./vcat-hip.dat"; +$fpart = "http://simbad.u-strasbg.fr/simbad/sim-id?Ident="; +$lpart = "&NbIdent=1&Radius=2&Radius.unit=arcmin&submit=submit+id"; + +$ua = LWP::UserAgent->new( + keep_alive=>1, + timeout=>180 +); + +$ua->agent("Opera/9.80 (X11; Linux i686; U; ru) Presto/2.9.168 Version/11.50"); + +open (OUT, ">$HIPV"); +open (GV, "$GCVS"); +while () { + $rawstring = $_; + $designation = substr($rawstring,8,9); + $designation =~ s/[ ]{1,}/+/gi; + + $URL = $fpart.$designation.$lpart; + + $request = HTTP::Request->new('GET', $URL); + $responce = $ua->request($request); + $content = $responce->content; + + $content =~ m/>HIP<\/A> ([0-9]+)/gi; + $hipn = $1; + + $len = 6-length($hipn); + if ($len<6) { + $add = ""; + for ($i=0;$i<$len;$i++) { + $add .= " "; + } + print OUT $hipn.$add."|".$rawstring; + } +} +close GV; +close OUT; diff -Nru stellarium-0.12.1/util/GCVS/hip-var.pl stellarium-0.12.4/util/GCVS/hip-var.pl --- stellarium-0.12.1/util/GCVS/hip-var.pl 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/util/GCVS/hip-var.pl 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,50 @@ +#!/usr/bin/perl + +# +# Tool for create a GCVS catalog for Stellarium +# +# Copyright (C) 2013 Alexander Wolf +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included +# in all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. +# + +$GCVS = "./iii.dat"; # GCVS +$HIPV = "./varcat-hip.dat"; # Hipparcos +$TYCV = "./varcat-tyc.dat"; # Tycho 2 + +open (HV, ">$HIPV"); +#open (TV, ">$TYCV"); +open (GV, "$GCVS"); +while () { + $rawstring = $_; + $maxmagstr = substr($rawstring,48,8); + $maxmag = $maxmagstr+0; + $maxmagstr =~ s/[ ]+//gi; + $yearstr = substr($rawstring,100,4); + $year = $yearstr+0; + if ($maxmag<=12.5 && length($maxmagstr)!=0 && $year==0) { + print HV $rawstring; + } +# if ($maxmag>9.0 && $maxmag<=12.5 && $year==0) { +# print TV $rawstring; +# } +} +close GV; +close HV; +#close TV; diff -Nru stellarium-0.12.1/util/GCVS/iii.dat stellarium-0.12.4/util/GCVS/iii.dat --- stellarium-0.12.1/util/GCVS/iii.dat 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/util/GCVS/iii.dat 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,47970 @@ + NNo GCVS 2000.0 Type Max Min I Min II Epoch Year Period M-m Spectrum References Other design +------------------ ---------------------------------------------------------------------------------------------------------------- ----------------------------------------- +010001 |R And *|002402.0+383437 |M | 5.8 | 15.2 | |V |53820. | | 409.2 |38 |S3,5e-S8,8e(M7e) |HIP 00002| +010002 |S And *|004243.1+411605 |SNI | 5.8 |< 16. | |V |09775. |1885 | | |(SNI) |V 377 V 338|=M31 V0894 +010003 |T And |002223.1+265946 |M | 7.7 | 14.5 | |V |50854. | | 281.0 |46 |M4e-M7.5e |00001 00002| +010004 |U And |011529.7+404308 |M | 9.0 | 15.0 | |V |49564. | | 347.7 |40 |M6e |00001 00002| +010005 |V And |005006.3+353910 |M | 9.0 | 15.2 | |V |51528. | | 256.4 |45 |M2e-M3e |00001 00002| +010006 |W And *|021733.0+441818 |M | 6.7 | 14.6 | |V |48654. | | 397.3 |42 |S6,1e-S9,2e |HIP 00002| +010007 |X And |001609.5+470045 |M | 8.5 | 15.2 | |V |49620. | | 343.4 |37 |S2,9e-S5,5e |00001 00002| +010008 |Y And |013936.9+392035 |M | 8.2 | 15.1 | |V |49489. | | 220.5 |47 |M3e-M4.5e |00001 00002| +010009 |Z And *|233340.0+484906 |ZAND | 7.7 | 11.3 | |V | | | | |M2III+B1eq |N0036 00002| +010010 |RR And |005123.3+342237 |M | 8.4 | 15.6 | |V |49644. | | 330.6 |52 |S6.5,2e |00001 00002| +010011 |RS And *|235521.8+483818 |SRA | 7.0 | 9.4 | |V |38803. | | 136. | |M7-M10 |00001 DM | +010012 |RT And *|231110.1+530133 |EA/RS | 8.97 | 9.83 | 9.28 |V |51421.737 | | 0.6289216 |17 *|F8V+K1 |00001 HIP | +010013 |RU And *|013836.3+384014 |SRA | 9.9 | 14.5 | |V | | | 238.3 |49 |M5e-M6e |00001 00002| +010014 |RV And |021102.6+485645 |SRA | 9.0 | 11.5 | |V |48667. | | 168.9 | |M4e |00001 00002| +010015 |RW And |004718.9+324109 |M | 7.9 | 15.7 | |V |53360. | | 430. |36 |M5e-M10e(S6,2e) |00001 00002| +010016 |RX And *|010435.5+411758 |UGZ | 10.2 | 15.1 | |V | | |( 13. ) | |pec(UG) |09782 72085| +010017 |RY And *|232037.5+393714 |M | 10.0 | 15.3 | |V |53400. | | 391.2 | |M8 |00001 00002| +010018 |RZ And |230930.0+530240 |CST | 9.43 | | |V | | | | |K0 |00098 00002| +010019 |SS And *|231130.1+525313 |SRC | 10.0 | 11.4 | |p | | | 152.5 | |M6II |00098 00098| +010020 |ST And |233845.1+354621 |SRA | 7.7 | 11.8 | |V |53720. | | 326.6 |52 |C4,3e-C6,4e |00001 00002| +010021 |SU And *|000436.4+433305 |LC | 8.0 | 8.5 | |V | | | | |C6,4(C5II) | HIP | +010022 |SV And *|000420.1+400636 |M | 7.7 | 14.7 | |V |53220. | | 313. |42 |M5e-M7e |00001 00002| +010023 |SW And *|002343.1+292404 |RRAB | 9.14 | 10.09 | |V |53735.538 | | 0.4422618 |17 |A7III-F8III |00001 HIP | +010024 |SX And |013335.9+463113 |M | 8.7 |< 14.0 | |V |53208. | | 332.8 | |M6.5e |00001 00002| +010025 |SY And *|001316.4+434241 |EA | 10.7 | 12.2 | |V |17796.36 | | 34.90847 |06 |A0+K1 |08006 08006| +010026 |SZ And |225934.5+425031 |M | 9.5 |< 17.0 | |V |53520. | | 344. |42 |M2e |00001 00002| +010027 |TT And *|231322.9+460851 |EA | 11.5 | 13.1 | 11.6 |V |53662.4564 | | 2.765101 |09 *|A |N0038 GSC | +010028 |TU And |003222.7+260146 |M | 7.5 | 13.5 | |V |53700. | | 316.8 |48 |M5e |00001 00002| +010029 |TV And |225803.0+424411 |SRB | 8.3 | 11.5 | |V | | | 110. | |M4e-M5e |00001 00002| +010030 |TW And *|000318.2+325045 |EA | 8.98 | 11.04 | 9.13 |V |53693.355 | | 4.122834 |13 |F0V+K0 |00001 HIP | +010031 |TX And *|012158.4+384143 |M: | 10.4 | 13.8 | |V |32461. | | 233.4 |60 |M1e |00001 00002| +010032 |TY And |231444.2+404739 |SRB | 8.8 | 10.5 | |V | | | 260. : | |M5e-M6e |00001 00002| +010033 |TZ And |235051.8+473028 |LB: | 8.0 | 9.3 | |V | | | | |M5-6III |00001 HIP | +010034 |UU And *|004345.1+305620 |EA | 11.2 | 14.2 |( 0.2 R)|V |52925.426 | | 1.486293 |17 *|A8IV/V |00001 01136| +010035 |UV And |012917.6+363922 |SRB | 10.84 | 11.9 | |V | | | 227. | | |75119 75119| +010036 |UW And |001410.9+290121 |M | 9.4 |< 15.0 | |V |54024. | | 237. | |M5 |00001 00002| +010037 |UX And |023328.8+453916 |SRB | 8.2 | 9.9 | |V | | | 200. | |M6III |00001 00002| +010038 |UY And |023823.8+391010 |LB | 7.4 | 12.3 | |V | | | | |C5,4(N3) |00104 00002| +010039 |UZ And |011611.2+414458 |M | 9.1 | 15.6 | |V |53990. | | 316.0 |41 |M7e |00001 00002| +010040 |VV And | | | | | | | | | | | | |N +010041 |VW And |000440.1+344514 |CST | 11.3 | | |V | | | | | |00681 UCAC2| +010042 |VX And *|001954.0+444234 |SRA | 7.5 | 9.7 | |V | | | 375. | |C4,5J(N7) |N0039 00002| +010043 |VY And |230149.5+455309 |SRB | 9.6 | 11.8 | |V | | | 149. : | |C3,5J-C4,4-5(R8) |00310 00002| +010044 |VZ And |001438. +465252:|CST | 12.55 | | |V | | | | | |00681 DM | +010045 |WW And *|234453.5+454112 |EA | 10.92 |( 0.67 )|( 0.16 )|V |34618.185 | | 23.285213 |05 *|A5+F3p |N0040 HIP | +010046 |WX And *|004537.3+284500 |EA | 12.1 | 13.8 | |V |52616.404 | | 3.001134 |12 |F5IV |N0041 01936| +010047 |WY And *|234129.7+473544 |SRD | 8.65 | 9.65 | |V | | | 109.65 |43 |G2e-K2(M3) |N0042 DM | +010048 |WZ And *|010143.6+380547 |EB | 11.16 | 12.00 | 11.61 |V |52500.2323 | | 0.6956638 | |F5 |N0041 00002| +010049 |XX And *|011727.4+385702 |RRAB | 10.08 | 11.13 | |V |53662.575 | | 0.722757 |19 |A8-F6 |00001 00002| +010050 |XY And *|012642.4+340407 |RRAB | 12.90 | 14.22 | |V |49645.848 | | 0.39872544 |16 | |75119 06286| +010051 |XZ And *|015651.5+420602 |EA | 9.91 | 12.45 | |V |52500.5129 | | 1.3573091 |16 *|A1V |N0041 00002| +010052 |YY And |235732.3+320221 |M | 11.9 |< 15.2 | |p |51504. | | 227.8 | | |08009 GSC | +010053 |YZ And |002714.2+305349 |M | 9.7 | 15.9 | |V |54092. | | 207.0 | |M5e |00001 00002| +010054 |ZZ And *|004934.8+270120 |RRAB | 12.58 | 13.47 | |p |53326.338 | | 0.5545372 |15 | |00001 06286| +010055 |AA And *|230522.8+474035 |EB | 10.3 | 11.2 | 10.6 |p |52500.730 | | 0.9350969 | |B8V |N0041 HIP | +010056 |AB And *|231132.1+365335 |EW | 9.49 | 10.46 | 10.32 |V |52500.0599 | | 0.3318912 | |G5+G5V |N0041 00002| +010057 |AC And *|231802.4+484658 |* | 10.70 |( 1.2 )| |V |28009.31 | | 0.7112376 | |A9-F8 |N0043 HIP | +010058 |AD And *|233645.0+484016 |EB | 11.2 |( 0.62 )|( 0.58 )|V |52500.4854 | | 0.986202 | |A0V |N0041 01983| +010059 |AE And *|004302.5+414912 |SDOR | 15.1 | 17.6 | |B | | | | |pec(e) |04759 05952|=M31 V1005 +010060 |AF And *|004333.1+411211 |SDOR | 15.4 | 17.6 | |B | | | | |pec(e) |04759 V 338|=M31 V1076 +010061 |AG And *|003548.5+215459 |S: | 13.2 | 14.7 | |p | | | | |G2 |01986 06286| +010062 |AH And |020554.6+404327 |M | 9.3 |< 14.5 | |V |50110. | | 480.2 | |M4-M5e |00001 00114| +010063 |AI And |231818.8+485731 |M | 11.5 | 15.3 | |p |42498. | | 327. | | |00001 00114| +010064 |AK And |232111.6+500012 |M | 10.0 |< 15.0 | |V |52930. | | 317. | |S: |00001 00002| +010065 |AL And |232642.6+451456 |M | 10.0 |< 18. | |V |50655. | | 293. | | |00001 00002| +010066 |AM And *|000507.5+482705 |EA | 12.5 | 13.7 | |p |30696.373 | | 8.850510 |08 | |03115 GSC | +010067 |AN And *|231823.3+414625 |EB | 5.96 | 6.11 | 6.05 |V |48500.732 | | 3.21952 | |A7mIII-IV |HIP DM | +010068 |AO And |231759.6+464512 |M | 10.3 | 14.5 | |V |51512. | | 332.4 | | |00001 GSC | +010069 |AP And *|234930.7+454721 |EA | 11.3 | 11.9 | 11.8 |p |52500.2120 | | 1.5872910 |12 *|F5 |N0041 GSC | +010070 |AQ And *|002731.7+353515 |SRB | 7.7 | 9.5 | |V | | | 169. | |C5,4(Nb) |N0039 DM | +010071 |AR And *|014503.3+375633 |UGSS | 11.0 | 17.6 | |V | | |( 23. ) | |pec(UG) |09782 72085| +010072 |AS And |233901.8+471449 |EA | 13.8 | 15.2 | |p |53410.3288 | | | | |N0044 00534| +010073 |AT And *|234230.8+430052 |RRAB | 10.42 | 10.92 | |V |53287.4851 | | 0.6169122 |21 |F0-F7 |00001 HIP | +010074 |AU And |014720.7+394756 |LB | 9.9 | 10.6 | |V | | | | |M3 |01991 DM | +010075 |AV And |021128.5+401258 |LB | 13.8 | 14.5 | |p | | | | | |00542 00542| +010076 |AW And *|235536.3+452035 |SR: | 12.4 | 13.2 | |p | | | 330. : | | |01992 GSC | +010077 |AX And |023246.1+462921 |M | 9.3 | 16.2 | |V |51980. | | 378. | | |00001 00002| +010078 |AY And |230137.0+525121 |CST: | 11.0 | | |p | | | | | |03118 00150| +010079 |AZ And |230351.0+485154 |M | 10.2 |< 14.0 | |V |53985. | | 194.4 | |M4 |00001 00002| +010080 |BB And |001743.9+450852 |M | 13.0 |< 15.5 | |p |51425. | | 290. | |S3e |00678 06286| +010081 |BC And |230053.1+463038 |LB | 10.3 | 11.3 | |p | | | | |M7III |00098 00098| +010082 |BD And *|230705.2+505731 |EB | 11.3 | 11.7 | 11.4 |p |52500.3873 | | 0.4629057 | |F8 |N0041 00098| +010083 |BE And |231943.0+484009 |SRB | 10.2 | 11.9 | |p | | | 156.8 | |M5 |02268 02345| +010084 |BF And |232153.4+491526 |LB | 11.2 | 12.2 | |p | | | | |K-M: |00098 00098| +010085 |BG And |233059.4+431556 |M | 8.5 | 15.6 | |V |54045. | | 289.5 | |S6.5,5e |00001 00002| +010086 |BH And |001715.6+223541 |SRB | 10.0 | 11.4 | |V | | | 98.5 | |M5e |01090 01090| +010087 |BI And |022554.3+380722 |SRB | 11.9 | 13.0 | |p | | | 159.5 | |S8,8 |00821 00002| +010088 |BK And *|233506.0+410611 |RRAB | 12.40 | 13.43 | |V |50740.413 | | 0.4216035 |20 | |N0045 00534| +010089 |BL And *|231124.3+515231 |EB | 11.15 |( 0.77 )|( 0.32 )|V |52500.3814 | | 0.72237587 | |A0 |N0041 02345| +010090 |BM And |233738.4+482413 |INSB | 11.63 | 14.02 | |V | | | | |F8ea-K5Vea |N0046 02376| +010091 |BN And |011047.8+340737 |LB | 10.8 | 11.9 | |p | | | | |M4 |00680 02377| +010092 |BO And |225838.2+453152 |EA | 13.4 | 16.3 | |p |51442.681 | | 5.797370 |11 |B8 |00001 08015| +010093 |BP And |230059.1+500109 |M | 13.4 |< 16.5 | |p |28452. | | 141.6 | | |02267 02344| +010094 |BQ And |230205.1+513540 |M | 12.0 | 15.7 | |p |51440. | | 156. |45 | |00001 02344| +010095 |BR And |230515.8+521040 |M: | 15.7 |< 17. | |p |51310. | | 255. | | |02267 02375| +010096 |BS And |231247.0+515226 |EA | 15.3 | 17.2 | |p |29428.416 | | 3.1461666 |12 | |N0047 02375| +010097 |BT And |232333.4+482711 |SRA | 12.7 | 14.2 | |p |30580. | | 282.3 | |M0 |00990 02287| +010098 |BU And *|232339.9+394337 |M | 9.4 | 14.2 | |V |53585. | | 378. | |M7e |00001 00002| +010099 |BV And |232702.0+500713 |UG | 15.2 | 18. | |p | | |( 45. ) | |pec(UG) |08656 72085| +010100 |BW And |015633.1+390452 |SR | 12.3 | 14.9 | |p |51570. | | 179.8 |24 | |00868 01090| +010101 |BX And *|020903.4+404739 |EB | 8.87 | 9.53 | 9.12 |V |52500.3454 | | 0.6101119 | |F2V |N0041 HIP | +010102 |BY And |233733.4+474105 |SRD: | 10.4 | 11.7 | |p | | | | |K9 |08658 DM | +010103 |BZ And |003737.7+453615 |LB | 7.7 | 8.6 | |V | | | | |K9 |00821 02377| +010104 |CC And *|004348.0+421656 |DSCT | 9.19 | 9.46 | |V | | | 0.1249078 |40 |F3IV-V |02269 HIP | +010105 |CD And *|012628.4+442125 |EA | 9.9 | 10.4 | 10.4 |p |26414.418 | | 68.8832 |06 *|F8 |N0050 02377| +010106 |CE And *|012933.3+463933 |LB | 10.3 | 12.4 | |p | | | | |M2 |00821 02377| +010107 |CF And |230343.8+375114 |LB | 9.8 | 11.0 | |p | | | | |M7 |08021 DM | +010108 |CG And *|000043.6+451512 |ACV | 6.32 | 6.42 | |V |41152.67 | | 3.73975 | |B9pSiEu |69120 HIP | +010109 |CH And |013610.6+445230 |CWA | 15.0 | 16.0 | |p |35103.15 | | 9.77 |30 |F2-F8 |01325 01325| +010110 |CI And *|015508.3+434557 |RRAB | 11.76 | 12.66 | |V |51441.803 | | 0.4847267 |18 |A8 |00001 HIP | +010111 |CK And |231301.0+423041 |LB | 11.0 | 12.1 | |p | | | | |K5 |00821 00821| +010112 |CL And |231451.5+504627 |M | 11.1 |< 17.3 | |p |51410. | | 353.5 | |M8 |02267 02270| +010113 |CM And |234306.6+352845 |SR | 11.9 |< 13.7 | |p |35457. | | 374.0 | |M8 |00001 02380| +010114 |CN And *|002030.5+401334 |EB | 9.62 | 10.21 | 9.90 |V |50698.9447 | | 0.46279092 | |F5V |N0049 DM | +010115 |CO And *|011124.8+465749 |EA | 11.1 | 12.1 : | |p |52501.5247 | | 1.8276678 |14 |F8 |N0041 02271| +010116 |CP And *|021251.2+453752 |EA | 11.4 | 12.9 : | |p |53674.285 | | 3.608986 |11 |A5 |00001 02272| +010117 |CQ And |023132.0+455637 |SRA | 10.3 | 13.3 | |V |54095. | | 189.6 | |M4 |00001 00002| +010118 |CR And |023813.0+463330 |LB: | 10.8 | 11.6 | |p | | | | |M2 |00814 DM | +010119 |CS And |225805.8+484534 |SR | 12.1 | 13.4 | |p |51420. | | 117. | |M6.5 |02267 02344| +010120 |CT And |225937.3+514017 |LB | 13.4 | 15.0 | |p | | | | |M6: |02267 02344| +010121 |CU And *|230101.6+495825 |EA | 12.5 | 16. | |p |50344.322 | | 1.71601 |15 | |00001 02344| +010122 |CV And |230100.0+501832 |SRA | 12.4 | 13.8 | |p |51360. | | 261. | |45 |02267 02344| +010123 |CW And |230604.2+500418 |LB | 12.8 | 14.4 | |p | | | 80. | |M6.5 |00001 02344| +010124 |CX And |230724.6+504552 |SRA | 14.1 |< 16. | |p |51540. | | 420. | | |02267 02345| +010125 |CY And |230746.7+511432 |LB | 14.7 | 16.0 | |p | | | | |M6.5: |02267 02345| +010126 |CZ And |230900.9+493652 |EA | 12.4 | 13.0 | |p |31001.482 | | 2.717200 |07 |A6 |02267 02375| +010127 |DD And |231710.7+524940 |LB | 12.7 | 13.5 | |p | | | | |M6.5: |02267 02345| +010128 |DE And |231726.1+483306 |RRAB | 13.40 | 14.15 | |V |48112.766 | | 0.453635 |20 | |02267 02345| +010129 |DF And |231840.3+481122 |SRB | 12.9 | 13.7 | |p | | | 70.9 | |M4 |02267 02375| +010130 |DG And |232318.3+521058 |SRA | 14.0 | 16.2 | |p |51400. | | 157.2 | |M2 |02267 02345| +010131 |DH And |232438.6+490302 |SR | 14.3 | 15.7 | |p |51470. | | 143. | | |02267 02345| +010132 |DI And *|232656.3+485721 |CWB: | 12.3 | 13.6 | |p |51466.47 | | 3.338 | | |N0051 02345| +010133 |DK And *|232845.9+503429 |EW | 12.5 | 13.1 | 13.1 |p |51435.4353 | | 0.4892224 | | |N0052 02375| +010134 |DL And *|232947.1+485719 |SRA | 14.0 | 16.6 | |p |51445. | | 153. | |M7 |02267 02375| +010135 |DM And |233200.7+351149 |RRAB | 12.4 | 13.2 | |p |53320.357 | | 0.630387 |28 | |00001 00558| +010136 |DN And |233551.4+501020 |LB | 13.8 | 14.6 | |p | | | | | |02267 02345| +010137 |DO And *|001057.1+420640 |EB | 12.3 | 13.8 | 12.9 |p |52501.036 | | 1.348707 | | |N0041 00534| +010138 |DP And |001645.9+444031 |SR: | 12.4 | 13.6 | |p |51405. | | 113. | |M4e |00001 00534| +010139 |DQ And *|005934.5+452424 |CWB: | 11.23 | 12.00 | |V |51481.584 | | 3.200635 |23 |K-M |00001 02546| +010140 |DR And *|010510.7+341306 |RRAB | 11.65 | 12.94 | |V |52620.4385 | | 0.563130 |18 |A |00001 02377| +010141 |DS And *|015746.0+380428 |EA | 10.44 | 10.93 | 10.71 |V |52500.6834 | | 1.0105188 |17 |F2III |N0041 03102| +010142 |DT And |021652.2+485404 |SR | 13. | 14. | |p |36465. | | 375. | |M8 |02394 00922| +010143 |DU And *|023031.3+405033 |RRAB | 12.87 | 13.98 | |V |48210.70 | | 0.60686 |09 |F5 |73062 73062| +010144 |DV And |230426.9+382236 |LB | 10.8 | 12.5 | |p | | | | |K5 |08021 DM | +010145 |DW And |231427.6+420115 |E | 13.6 | 14.4 | |p |36110.39 | | | | |02394 00534| +010146 |DX And *|232946.7+434505 |UGSS | 11.0 | 15.5 | |V | | |( 239. ) | |pec(UG) |N0054 72085| +010147 |DY And |235842.2+412920 |RRAB | 12.73 | 13.57 | |V |50656.831 | | 0.603087 |17 | |02394 73140| +010148 |DZ And |003236.4+260121 |CST: | 10.22 | | |V | | | | |K2III |08660 04008| +010149 |EE And |003307.9+260226 |SR: | 13.4 | 15.0 | |V |37290. | | 285. : |30 : | |04008 04008| +010150 |EF And |003943.9+463320 |SRA | 11.4 | 12.6 | |p |36088. | | 114.57 | |M6 |N0056 03915| +010151 |EG And *|004437.2+404046 |ZAND | 6.97 | 7.8 | |V | | | | |M2IIIep |N0057 DM | +010152 |EH And |010312.7+455206 |LB | 11.2 | 12.1 | |p | | | | |M7 |N0058 DM | +010153 |EI And |010726.4+453634 |LB | 10.7 | 11.4 | |p | | | | |M4 |04015 DM | +010154 |EK And |011613.5+414422 |CST: | 11.2 | | |V | | | | | |N0059 06286| +010155 |EL And *|012627.9+445613 |EA | 13.3 | 13.7 | 13.7 |* |51473.615 | | 5.242 |06 | |N0060 04336| +010156 |EM And |012814.2+500015 |M | 12.7 |< 15.0 | |p |51460. | | 280. | | |04440 2MASS| +010157 |EN And |012842.1+433219 |SRA | 14.2 |< 15.8 | |p |51403. | | 125. : | | |00001 04424| +010158 |EO And |013158.5+454621 |M: | 14.1 |< 16.5 | |p | | | 233. | | |N0061 04424| +010159 |EP And *|014229.3+444542 |EW | 11.3 |( 0.60 )|( 0.60 )|V |42638.522 | | 0.40410755 | | |N0062 00819| +010160 |EQ And |015217.6+450356 |SR | 13.2 | 16.0 | |p | | | 211. : | | |N0061 04424| +010161 |ER And |225855.6+391856 |SRA | 13.0 |< 15.0 | |p |51360. | | 108.2 | | |08021 04321| +010162 |ES And |231136.3+490024 |LB | 11.5 | 12.5 | |p | | | | |M6 |04332 2MASS| +010163 |ET And *|231756.0+452920 |ACV | 6.48 |( 0.03 )| |V | | | 1.618875 | |B9pSi |N0063 HIP | +010164 |EU And *|231958.9+471435 |LB: | 10.7 | 11.8 | |V | | | | |C4,4(R) |00001 N0064| +010165 |EV And |232314.2+452459 |SR | 13.4 | 14.8 | |p |36781. | | 337. | |C5,5(R) |08021 04335| +010166 |EW And |232657.4+493059 |LB | 10.8 | 11.8 | |p | | | | |C7,3(Nb) |04336 04336| +010167 |EX And *|233951.9+474502 |EA | 12.7 | 14.1 | 13.0 |p |52500.268 | | 1.632498 |12 | |N0041 04335| +010168 |EY And *|234502.3+435526 |M | 13.3 |< 18. | |p |51400. | | 360. : | |M7-M9 |04335 04335| +010169 |EZ And |235051.8+430445 |M | 13.2 |< 17. | |p |51390. | | 275. | | |N0065 04335| +010170 |FF And *|004248.3+353256 |UV+BY | 12.02 | 12.90 | |U | | | | |M1Ve+M1Ve |07472 HIP | +010171 |FG And |004412.0+450338 |LB | 12.4 | 14.2 | |p | | | | |M |07434 04015| +010172 |FH And |004738.1+374956 |LB | 14.5 | 15.8 | |p | | | | |M7-M8 |07434 03905| +010173 |FI And |005639.9+371549 |RRAB | 13.78 | 14.86 | |V |48156.60 | | 0.564815 |12 | |06422 03905| +010174 |FK And |010703.1+372905 |EA | 14.0 | 16.8 | |p |38641.500 | | 2.26941 |12 *| |07434 03905| +010175 |FL And *|010801.4+365322 |EA | 14.3 | 15.1 | |p |52500.608 | | 0.9056485 |10 | |N0041 03905| +010176 |FM And |010846.8+363724 |RRAB | 13.45 | 14.30 | |V |50348.739 | | 0.695495 |15 | |N0055 03905| +010177 |FN And |011157.5+351724 |UGSS | 12.9 | 19.3 | |V | | | | |pec(UG) |03905 72085| +010178 |FO And *|011532.1+373734 |UGSU | 13.1 | 17.5 | |V | | |( 19. ) | |pec(UG) |N0066 72085| +010179 |FP And |011649.4+350333 |RR | 14.8 | 15.8 | |p |38622.50 | | | | |03905 03905| +010180 |FQ And |015152.0+385159 |RRAB | 14.6 | 16.3 | |p |38651.600 | | 0.4897512 |14 | |69005 03905| +010181 |FR And |015900.4+361242 |RR | 15.0 | 16.1 | |p |38642.480 | | 0.5039795 |15 | |69005 03905| +010182 |FS And |022555.0+373406 |UG | 14.5 |< 17.5 | |p | | | | |pec(UG) |69005 03905| +010183 |FT And |023051.1+381501 |RRAB | 15.5 | 16.5 | |p |38643.470 | | 0.496762 |15 |F0: |08656 08656| +010184 |FU And |225849.0+524704 |M | 15.0 |< 17.2 | |p |28511. | | 390.4 | | |75006 03910| +010185 |FV And *|230344.4+522847 |RRAB | 16.3 | 17.2 | |p |39059.377 | | 0.458987 |12 | |75006 03905| +010186 |FW And |230955.7+514134 |EA: | 16.2 | 17.0 | |p |31291.492 | | | | |75006 03905| +010187 |FX And |231315.7+495953 |M | 14.2 |< 17.2 | |p |51360. | | 323.7 | | |00001 03910| +010188 |FY And |232328.6+501558 |EA | 15.6 | 16.4 | |p |47269.461 | | | | |75006 03903| +010189 |FZ And |232540.3+530806 |UV | 14.8 |< 17.5 | |p | | | | | |75006 03903| +010190 |GG And |233719.8+470628 |SRB: | 8.4 | 8.9 | |V | | | | |M5: |03914 DM | +010191 |GH And *|233740.4+501434 |EA | 13.5 | 14.5 | 14.1 |p |39059.36 | | | | |N0068 03905| +010192 |GI And |233928.2+483025 |EW | 13.2 | 14.0 | |p | | | | |G0 |08656 03905| +010193 |GK And *|235347.2+453446 |EA | 11.3 | 12.4 | 11.5 |p |52501.745 | | 2.009316 |12 *| |N0041 03915| +010194 |GL And |235457.7+452337 |LB | 9.6 | 10.2 | |p | | | | |K4 |03915 03915| +010195 |GM And |000003.6+352146 |RRAB | 12.43 | 13.30 | |V |47548.628 | | 0.7067585 |09 | |N0069 03917| +010196 |GN And *|003007.4+294506 |DSCTC | 5.23 |( 0.05 )| |V | | | 0.069304115 | |A9IV |N0070 HIP | +010197 |GO And |005018.3+450008 |ACV | 6.12 |( 0.04 )| |V | | | 2.5481 | |A0pSrCrEu |N0071 HIP | +010198 |GP And *|005518.1+230949 |DSCT | 10.53 |( 0.6 )| |V |47005.61456 | | 0.0786827620 |31 |A3 |N0072 HIP | +010199 |GQ And *|001825.8+440138 |UV+BY: | 12.2 | 12.8 | |B | | | | |M6Ve |05825 09033| +010200 |GR And |002828.6+322616 |ACV | 6.87 | 6.95 | |V | | | 546.87 | |A2pSrCrEu |N0073 HIP | +010201 |GS And |004242.4+400825 |UV | 16.4 | 18.5 | |B | | | | | |05826 05826| +010202 |GT And |004509.8+413031 |RRAB | 16.7 | 17.5 | |B |39000.503 | | 0.57882025 |18 | |00001 08026| +010203 |GU And |023431.4+400406 |M | 13.9 | 18.2 | |p |38972. | | 280. |40 : | |05493 09384| +010204 |GV And |231312.6+365404 |RRAB | 13.07 | 14.03 | |V |48156.73 | | 0.528092 |20 | |05957 GSC | +010205 |GW And |003509.4+414004 |EA | 14.6 | 17.4 | |B |41278.329 | | 2.279354 |08 *| |06951 06951| +010206 |GX And *|001822.9+440123 |UV | 10.30 | 10.85 | |U | | | | |M1Ve |N0074 09033| +010207 |GY And *|013831.8+452359 |ACV | 6.27 | 6.44 | |V | | | 8000. : | |B9VpCrEu |N0075 HIP | +010208 |GZ And *|021214.1+443934 |EW | 10.83 | 11.61 | 11.58 |V |52500.1211 | | 0.3050169 | | |N0041 06830| +010209 |HH And |234155.0+441039 |BY | 12.23 | 12.34 | |V | | | | |M5.5Ve |73018 GSC | +010210 |HI And |003800.8+402623 |UV | 15.4 | 18.5 | |B | | | | | |05952 05952| +010211 |HK And |004631.9+450547 |RRAB | 13.60 | 14.68 | |V |51449.82 | | 0.510120 |12 | |00001 07434| +010212 |HL And |005756.4+382705 |SRB | 12.0 | 14.2 | |p | | | 100. : | | |00001 07434| +010213 |HM And |010453.1+450138 |M | 13.6 | 17.6 | |p |51520. | | 239. |50 : | |07434 07434| +010214 |HN And *|012418.7+430832 |ACV | 6.67 | 6.76 | |V | | | 69.92 | |A2pSrCrEu |06992 DM | +010215 |HO And |000722.0+435504 |LB | 12.0 | 13.0 | |p | | | | |C6,4 |02579 GSC | +010216 |HP And |001909.1+412742 |GAL: | 10.5 |< 14.5 | |p | | | | | |N0079 07734| +010217 |HQ And |003135.9+434906 |NL | 15.0 | 16.2 | |p | | | | |pec(e) |N0080 76005| +010218 |HR And *|003346.7+440410 |EA | 14.7 | 15.4 | |p |40812.510 | | 1.2357 |12 | |07434 07434| +010219 |HS And *|003433.8+412005 |EA | 12.7 | 14.1 | |p |52500.5045 | | 1.8571884 |10 :*| |N0041 07434| +010220 |HT And *|003735.8+415344 |IA: | 18.6 | 19.6 | |B | | | | | |05952 05952|=M31 V0031 +010221 |HU And *|003929.7+400500 |EW | 16.5 | 17.2 | 17.2 |B |53386.6583 | | 0.285789 | | |05952 05952| +010222 |HV And |004055.4+432500 |NL | 15.2 | 16.7 | |p | | | 0.055994 : | |pec(e) |N0080 72085| +010223 |HW And |004111.4+433321 |UV | 12.7 | 14.4 | |p | | | | | |07434 07434| +010224 |HX And |004207.7+382136 |RRAB | 16.2 | 16.9 | |p |40828.430 | | 0.65529 |18 | |07434 07434| +010225 |HY And *|004232.2+414015 |UV | 18.2 | 20.3 | |B | | | | | |N0082 07737|=M31 V0830 +010226 |HZ And *|004333.8+395652 |SR | 17.6 | 19.5 | |B | | | | | |05952 05952| +010227 |II And |004335.5+433355 |RRAB | 16.1 | 17.1 | |p |40828.540 | | 0.563275 |15 | |07434 07434| +010228 |IK And *|004500.2+431521 |RRAB | 16.3 | 17.7 | |p |40825.380 | | 0.503245 |14 | |07434 07737|=M31 V1126 +010229 |IL And *|004613.5+394608 |EA | 15.7 | 17.0 | |p |40827.400 | | 0.86759 |14 | |07434 07434| +010230 |IM And *|004646.8+393833 |EW | 18.3 | 19.0 | 18.8 |p |38327.450 | | 0.270377 | | |08028 07738| +010231 |IN And |004757.9+435956 |RRAB | 15.5 | 16.9 | |p |40825.420 | | 0.56987 |17 | |07434 07434| +010232 |IO And *|004819.0+394111 |QSO | 15.6 | 17.5 | |B | | | | |(QSO) |N0083 76005|=M31 V1194 +010233 |IP And *|005503.4+403701 |EA | 16.8 | 17.3 | |p |40837.500 | | 3.0798 |09 | |07434 07434| +010234 |IQ And |005533.1+382204 |RRAB | 16.0 | 17.3 | |p |40812.530 | | 0.487068 |30 : | |07434 07434| +010235 |IR And |005552.7+403747 |RRAB | 15.9 | 17.5 | |p |40811.525 | | 0.505294 |16 | |07434 07434| +010236 |IS And |005701.7+450950 |SRA | 15.4 | 17.5 | |p |40835. | | 254. | | |07434 07434| +010237 |IT And |005720.5+413845 |RRAB | 16.5 | 17.2 | |p |40827.470 | | 0.57736 |20 : | |07434 07434| +010238 |IU And |005729.8+422138 |RRAB | 15.5 | 16.7 | |p |40837.490 | | 0.517315 |20 | |07434 07434| +010239 |IV And |005927.1+393717 |SR: | 10.0 | 10.9 | |p | | | 300. : | |M7 |00001 07434| +010240 |IW And |010108.9+432326 |UGZ: | 13.7 | 17.3 | |p | | | | |pec |N0084 76005| +010241 |IX And |010140.5+375347 |SR | 12.9 | 14.2 | |p | | | 89. : | |M4 |00001 N0085| +010242 |IY And |010252.3+451123 |RRAB | 13.8 | 16.3 | |p |40811.506 | | 0.48543 |17 | |07434 07434| +010243 |IZ And |010703.9+424312 |UG | 15.4 | 20.5 : | |p | | | | |OB |N0086 72085| +010244 |KK And |013416.6+371414 |ACV | 5.91 |( 0.012 )| |V | | | 0.6684 | |B9IVpSi |07740 HIP | +010245 |KL And |021408.0+473945 |M: | 11. |< 13. | |R |51550. | | 270. : | |C-S |00001 GSC | +010246 |KM And *|022919.6+384646 |RR: | 14.4 | 14.9 | |p |41596.38 | | | | |06976 06976| +010247 |KN And |023608.8+380922 |EA | 11.7 | 13.1 | |p |52502.2558 | | 2.2621866 |10 : | |N0041 06976| +010248 |KO And |225857.6+520354 | | 17. | 20. : | |p | | | | | |03910 03910| +010249 |KP And *|230956.5+413504 |EA | 11.5 | 12.9 |( 0.1 R)|p |51408.708 | | 1.40538 |18 |A0 |N0060 00534| +010250 |KQ And |233043.5+460911 |LB: | 9.4 | 10.1 | |p | | | | |K5 |05526 05526| +010251 |KR And |234439.9+420332 |LB: | 10.4 | 10.9 | |p | | | | |M |04109 08662| +010252 |KS And |234505.3+465531 |LB | 9.4 | 10.0 | |p | | | | |M2 |05526 05526| +010253 |KT And |234808.9+444337 |SR: | 11.2 | 11.9 | |p | | | | |M5 |08662 08662| +010254 |KU And |000652.8+430501 |M | 6.5 | 10.5 : | |I |42345. | | 660. : | |M10 |68064 03586| +010255 |KV And *|021713.9+404130 |UGSU | 14.6 | 20.0 | |p | | |( 112. :) | | |08197 72085| +010256 |KW And |023518.0+411402 |UG | 14.8 | 22. : | |p | | | | |pec(UG) |08197 72085| +010257 |KX And *|230706.2+501133 |BE | 6.88 | 7.28 | |V | | | | |B3pe+K1III |N0088 HIP | +010258 |KY And |230916.8+493902 |BE | 6.68 | 6.95 : | |V | | | | |B3Vne |N0089 HIP | +010259 |KZ And *|230957.4+475730 |BY | 7.91 | 8.03 | |V | | | 3.03 | |K2Ve+K2Ve |N0115 HIP | +010260 |LL And *|004151.5+263722 |UGSU | 13.2 | 20. : | |V | | | | | |N0090 76005| +010261 |LM And *|021109.3+485134 |EB | 12.2 | 13.5 | 12.7 |p |53268.465 | | 0.7611836 | | |00001 08307| +010262 |LN And *|230245.1+440332 |CST: | 6.39 | | |V | | | | |B2V |N0091 HIP | +010263 |LO And *|232706.7+453322 |EW | 11.2 | 11.8 | 11.7 |V |52500.2505 | | 0.3804427 | | |N0041 04364| +010264 |LP And |233427.5+433301 |M | 1.8 | 3.7 | |K |46340. | | 614. | |C8,3.5e |N0092 06977| +010265 |LQ And *|235846.4+462448 |BE | 6.50 | 6.66 | |V | | | 0.309446 | |B4Ven |HIP HIP | +010266 |LR And *|002249.9+292715 |ELL | 7.10 | 7.15 | 7.14 |V |44854.8800 | | 1.432321 | |A3V |N0093 HIP | +010267 |LS And *|003210.2+415812 |NA | 11.7 | 20.2 | |B |41188. |1971 | | | |67003 72118|=M31 V0002 +010268 |LT And *|003524.5+394619 |UG | 18.1 | 19.5 | |B | | | | | |67004 72085|=M31 V0011 +010269 |LU And |004015.0+430549 |IA: | 17.3 |< 19.5 | |B | | | | | |67006 67006| +010270 |LV And *|021926.4+414557 |RRAB | 14.74 | 15.80 | |V |55515.75 | | 0.530386 |13 |F5 |00001 09384| +010271 |LW And |021938.0+382727 |EA: | 15.5 | 16.4 | |p | | | 1.94 : | | |09384 09384| +010272 |LX And |021944.1+402723 |UG | 12.2 | 16.5 | |V | | | | |pec(UG) |N0094 09384| +010273 |LY And *|022152.5+383742 |EW | 14.1 | 14.8 | 14.6 |p |51576.776 | | 0.34505 | | |N0060 09384| +010274 |LZ And *|022238.4+403202 |EW | 17.1 | 17.7 | 17.7 |p |37986.675 | | 0.49332 | |F7 |00001 09384| +010275 |MM And |022241.7+430932 |EA | 16.5 | 17.8 | |p |37938.058 | | 0.516833 |15 | |09384 09384| +010276 |MN And *|022251.1+415535 |EB | 15.1 | 16.2 | 15.5 |p |37938.262 | | 0.610651 | | |09384 09384| +010277 |MO And |022353.7+395903 |EA | 13.2 | 16.1 | |p |51373.851 | | 1.930460 |15 | |00001 09384| +010278 |MP And *|022413.7+411947 |RRAB | 15.20 | 16.49 | |V |37938.038 | | 0.4713518 |10 |F4 |09384 09384| +010279 |MQ And |022506.7+432207 |RRAB | 15.9 | 17.6 | |p |37937.841 | | 0.4127687 |40 : |K |09384 09384| +010280 |MR And *|022527.8+405726 |RRC | 15.5 | 16.1 | |p |37937.894 | | 0.279971 |40 |F0 |09384 09384| +010281 |MS And *|022546.9+395846 |EW | 15.8 | 16.5 | 16.3 |p |37937.831 | | 0.278120 | | |09384 09384| +010282 |MT And *|022704.8+400329 |EW | 14.8 | 15.3 | 15.3 |p |37937.991 | | 0.358781 | | |09384 09384| +010283 |MU And *|022926.5+393145 |RRAB | 15.7 | 16.7 | |p |37937.939 | | 0.602200 |20 : |F5 |09384 09384| +010284 |MV And *|023011.2+405302 |RRAB | 16.0 | 16.7 | |p |37937.780 | | 0.5782892 | |F4 |09384 09384| +010285 |MW And *|023129.0+394120 |EW | 15.0 | 15.8 | 15.5 |p |51523.637 | | 0.26375 | | |N0060 09384| +010286 |MX And *|023203.1+420831 |RRAB | 16.9 | 17.9 | |p |37937.779 | | 0.568832 |20 : |F5 |09384 09384| +010287 |MY And *|023209.5+430448 |RRAB | 15.4 | 16.3 | |p |37937.901 | | 0.554011 |12 |F5 |09384 09384| +010288 |MZ And *|023805.2+431823 |EW | 15.2 | 15.7 | 15.6 |p |37937.993 | | 0.362234 | | |09384 09384| +010289 |NN And *|000655.9+312813 |RRAB | 15.97 | 17.51 | |B |45324.713 | | 0.457328 |20 | |68001 68001| +010290 |NO And *|000658.3+320207 |RRC | 16.46 | 17.17 | |B |44912.758 | | 0.272611 |35 | |68001 68001| +010291 |NP And |001039.8+340656 |EA | 15.29 | 16.10 | |B |44856.976 | | 0.3244490 |15 : | |68001 68001| +010292 |NQ And *|001132.7+305141 |RRAB | 16.16 | 17.10 | |B |45322.717 | | 0.619330 |17 | |68001 68001| +010293 |NR And |004818.7+372216 |RRAB | 14.8 | 16.0 | |p |51509.614 | | 0.681862 |23 | |09685 09685| +010294 |NS And |004903.7+351311 |LB | 11.1 | 12.2 | |p | | | | |M3 |09685 09685| +010295 |NT And |005042.5+373459 |RRC | 15.9 | 16.6 | |p |38642.430 | | 0.351661 |40 : | |09685 09685| +010296 |NU And |010217.7+334455 |RRC | 16.3 | 16.8 | |p |38651.520 | | 0.3135345 |40 : | |09685 09685| +010297 |NV And |010223.0+375507 |LB | 15.3 | 16.3 | |p | | | | | |09685 09685| +010298 |NW And |011327.7+374438 |RRAB | 15.2 | 16.5 | |p |38641.500 | | 0.453653 |18 | |09685 09685| +010299 |NX And |011548.3+394505 |RRAB | 14.3 | 15.7 | |p |38641.530 | | 0.648047 |19 | |09685 09685| +010300 |NY And |011744.9+353055 |LB | 14.2 | 15.1 | |p | | | | | |09685 09685| +010301 |NZ And *|012341.3+362857 |EA | 14.9 | 16.3 | 15.1 |p |38643.545 | | 0.899669 |16 *| |09685 09685| +010302 |OO And |013103.7+350738 |LB | 11.1 | 12.5 | |p | | | | | |09685 09685| +010303 |OP And |013627.2+484322 |RS: | 6.27 | 6.41 | |Hp| | | 2.35954 | |K1III: |HIP HIP | +010304 |OQ And |014207.8+392444 |LB | 7.64 | 7.73 | |V | | | | |M3III |68006 HIP | +010305 |OR And *|230437.4+492724 |NL | 14.3 |< 17.5 | |p | | | | |pec(UG) |N0095 72085| +010306 |OS And |231206.0+472820 |NA | 6.3 | 18. | |V |46772. |1986 | | |pec(Nova) |N0096 72118| +010307 |OT And *|232001.2+414518 |EA | 7.32 | 7.72 | |V |45711.73 | | 20.85290 |03 | |68007 HIP | +010308 |OU And |234941.0+362531 |FKCOM: | 5.87 | 5.94 | |V | | | 24.2 : | |G1IIIe |N0097 HIP | +010309 |OV And *|002044.9+404942 |RRAB | 11.38 | 12.70 | |V |53335.418 | | 0.470580 |10 | |N0098 69003| +010310 |OW And |014502.7+373010 |LB | 13.7 | 14.2 | |p | | | | | |69005 69005| +010311 |OX And |015246.3+371242 |RRAB | 14.2 | 15.5 | |p |38670.530 | | 0.493404 | | |69005 69005| +010312 |OY And |015806.1+383919 |M | 13.7 | 16.6 | |p |51435. | | 300.1 | |C |69005 69005| +010313 |OZ And |020648.2+362623 |RRAB | 14.1 | 15.2 | |p |38642.475 | | 0.4960326 |15 | |69005 69005| +010314 |PP And |021042.5+381832 |EA | 14.3 | 16.6 | |p |39789.270 | | 2.71646 |15 *| |69005 69005| +010315 |PQ And *|022929.5+400240 |UG | 10.0 | 19. | |V | | | | |pec(UG) |N0099 76005| +010316 |PR And |231523.5+501855 |SRB: | 10.4 | 11.3 | |V | | | 96. : | |S |69010 GSC | +010317 |PS And |003937.7+381325 |SR | 10.7 | 11.4 | |p | | | 375. | | |70001 70001| +010318 |PT And *|004024.3+410404 |UG: | 16.2 |< 19.7 | |B | | | | | |N0100 N0100|=M31 V0324 +010319 |PU And *|004524.8+404812 |EB | 24.20 | 24.93 | 24.4 |B |46350.83 | | 0.5685 | | |70004 |=M31 V1151 +010320 |PV And |235537.9+462130 |ACV | 6.91 | 6.99 | |V | | | 3.5112 | |B9pSi |N0101 HIP | +010321 |PW And |001820.9+305722 |RS | 8.67 |( 0.10 )| |V | | | 1.745 | |K2V |71001 DM | +010322 |PX And *|003005.9+261727 |E+NL | 14.04 | 17. | |V |47783.798 | | 0.146350 | |pec(UG) |71003 72085| +010323 |PY And *|003620.1+271517 |ACV | 6.02 |( 0.03 )| |U | | | 4.6904 | |B8IIIpHgMn |71005 HIP | +010324 |PZ And |022058.2+500905 |ACV | 5.59 |( 0.05 )| |V | | | 4.1890 | |B9VpSi |N0102 HIP | +010325 |QQ And |231751.4+405131 |SR | 10.5 | 11.2 | |p | | | 72.4 | |M8 |72002 DM | +010326 |QR And *|001949.9+215652 |EA+NL | 12.16 | 13.07 | |V |35799.247 | | 0.6604565 | |pec(e) |73002 73002| +010327 |QS And *|002140.6+280928 |EW | 16.67 | 17.09 | 17.07 |V |49605.873 | | 0.276682 : | | |73003 USNO | +010328 |QT And |004117.3+342517 |BY+UV | 9.5 |( 0.43 Rc)| |V | | | 1.536 | |K3Ve |73004 DM | +010329 |QU And *|011306.1+413916 |RS | 7.25 |( 0.05 )| |V | | | 21.08 | |G5IV |78018 HIP | +010330 |QV And |011624.5+480456 |ACV | 6.22 |( 0.05 )| |U | | | 5.229 | |B9IIIpSi |67131 HIP | +010331 |QW And *|011848.3+493937 |EW | 12.6 |( 0.45 )|( 0.44 )|V |52500.474 | | 0.4918690 | | |N0041 73007| +010332 |QX And *|015757.8+374823 |EW | 11.28 | 11.50 | 11.49 |V |46785.8003 | | 0.411816 | |F6 |73008 02581| +010333 |QY And *|021108.5+485141 |SR: | 11.1 | 11.9 | |p | | | 2200. : | | |08307 08307| +010334 |QZ And *|225906.5+490758 |M: | 12.9 |< 15.0 | |V |49680. | | 367. : | | |73011 73011| +010335 |V0335 And |230202.4+395951 |M | 11.8 | 14.5 | |V |49540. | | 280. | | |73011 73011| +010336 |V0336 And *|230224.0+414337 |M | 11.6 |< 15.0 | |V |49520. | | 270. | | |73011 73011| +010337 |V0337 And *|231625.9+384347 |M | 11.3 | 14.4 | |V |49820. | | 362. | | |73011 73011| +010338 |V0338 And |232541.7+454205 |M | 12.0 |< 14.0 | |V |49520. | | 348. | | |73011 73011| +010339 |V0339 And |233407.7+462002 |M | 11.3 |< 15.0 | |V |49981. | | 325. | | |73011 73011| +010340 |V0340 And |233437.5+401411 |DSCTC | 5.69 |( 0.03 )| |B | | | 0.063 | |A1Vp |N0104 DM | +010341 |V0341 And |000710.2+345114 |LB | 8.63 | 8.94 | |Hp| | | | | |HIP HIP | +010342 |V0342 And *|001003.2+462325 |EA | 7.58 | 7.72 | 7.70 |Hp|48500.6933 | | 2.63934 |05 |A3 |HIP HIP | +010343 |V0343 And |001047.2+321433 |LB | 7.04 | 7.55 | |Hp| | | | |M2 |HIP HIP | +010344 |V0344 And |001122.4+302659 |BY | 7.95 |( 0.04 )| |V | | | 6.105 | |K0V |78018 HIP | +010345 |V0345 And |001215.8+434906 |SRB: | 7.79 | 7.98 | |Hp| | | 45.13 | |M4 |HIP HIP | +010346 |V0346 And |001350.2+365137 |LB: | 8.98 | 9.10 | |Hp| | | | |K5 |HIP HIP | +010347 |V0347 And |001349.5+253307 |SRS: | 9.38 | 9.72 | |Hp|48510.60 | | 15.11 | |M2 |HIP HIP | +010348 |V0348 And *|001517.8+441212 |EA | 6.75 | 6.90 | |Hp|48504.070 | | 5.5392 | |B9 |HIP HIP | +010349 |V0349 And |001609.4+475334 |LB: | 8.81 | 8.93 | |Hp| | | | |M0 |HIP HIP | +010350 |V0350 And |002602.7+354909 |EA | 7.56 | 7.63 | |Hp|47947.413 | | 1.538824 : |10 |A3 |HIP HIP | +010351 |V0351 And |002801.4+270551 |LB | 9.12 | 9.49 | |Hp| | | | |M5 |HIP HIP | +010352 |V0352 And |002911.2+445942 |LB: | 9.01 | 9.13 | |Hp| | | | |M0 |HIP HIP | +010353 |V0353 And |003026.2+402209 |LB: | 9.44 | 9.59 | |Hp| | | | |M0 |HIP HIP | +010354 |V0354 And |003336.8+395303 |SRD: | 8.65 | 8.78 | |Hp| | | 10.877 | |K0 |HIP HIP | +010355 |V0355 And *|004411.3+461408 |EA | 7.69 | 8.0 | 7.9 |V |52295.088 | | 4.71841 | |F5 |N0105 HIP | +010356 |V0356 And |004439.0+363609 |LB: | 9.04 | 9.17 | |Hp| | | | |M1 |HIP HIP | +010357 |V0357 And *|005253.4+383256 |ELL: | 6.70 | 6.74 | 6.7 |Hp| | | 1.66238 | |A2V |HIP HIP | +010358 |V0358 And |005921.9+425104 |LB: | 8.22 | 8.36 | |Hp| | | | |M2 |HIP HIP | +010359 |V0359 And |010252.7+470250 |BY: | 10.89 | 11.31 | |Hp| | | | |M0 |HIP HIP | +010360 |V0360 And |010404.5+384119 |LB | 7.05 | 7.23 | |Hp| | | | |M3III |HIP HIP | +010361 |V0361 And *|010945.3+380728 |DSCTC | 7.79 | 7.83 | |Hp|48500.0220 | | 0.1140500 | |F0 |HIP HIP | +010362 |V0362 And |012807.0+422801 |E: | 8.42 | 8.55 | |Hp| | | 18.518518 : | |M0 |HIP HIP | +010363 |V0363 And *|013146.6+360538 |EB | 9.10 | 9.37 | 9.34 |Hp|48500.3980 | | 1.27799 | |A2 |HIP HIP | +010364 |V0364 And |013250.5+453732 |LB | 9.21 | 9.31 | |Hp| | | | |K2III |HIP HIP | +010365 |V0365 And |013646.7+481856 |DSCTC | 7.49 | 7.53 | |Hp| | | 0.142816 | |F0 |HIP HIP | +010366 |V0366 And |014311.1+483100 |LC | 6.74 | 6.93 | |Hp| | | | |M2Ib |HIP HIP | +010367 |V0367 And |015109.3+380126 |SRS: | 7.11 | 7.45 | |Hp| | | 24.457 : | |M4 |00001 HIP | +010368 |V0368 And |015143.2+390826 |LB | 9.01 | 9.58 | |Hp| | | | |M8 |HIP HIP | +010369 |V0369 And *|015754.9+473353 |LB: | 9.07 | 9.18 | |Hp| | | | |M0 |HIP HIP | +010370 |V0370 And |015844.3+452607 |SRB | 6.18 | 7.19 | |Hp| | | 228. | |M7III |N0106 HIP | +010371 |V0371 And *|020212.9+364301 |BY: | 8.30 | 8.34 | |Hp| | | 1.4937 | |G5 |HIP HIP | +010372 |V0372 And *|020518.2+450534 |EA | 9.05 | 9.53 | 9.37 |Hp|51483.5838 | | 2.940986 |11 |A5 |00001 HIP | +010373 |V0373 And |020546.2+394535 |DSCTC | 7.63 | 7.69 | |Hp| | | 0.1128020 | |F0 |HIP HIP | +010374 |V0374 And |020657.2+451104 |E: | 10.30 | 11.55 | |Hp| | | | |M0 |HIP HIP | +010375 |V0375 And |023206.5+501051 |SRB | 7.01 | 7.22 | |Hp| | | 54. : | |A0 |00001 HIP | +010376 |V0376 And *|023511.6+495137 |EB | 7.68 | 8.00 | 7.96 |Hp|52500.492 | | 0.7986720 | |A0 |N0041 HIP | +010377 |V0377 And |023618.9+401218 |EA | 7.46 | 7.58 | |Hp|48700.254 | | 4.06366 : |05 : |B9 |00001 HIP | +010378 |V0378 And |230054.8+384228 |BE | 6.47 | 6.64 | |V | | | | |B3Vpe |N0107 HIP | +010379 |V0379 And |230633.0+465525 |IA: | 7.70 | 7.85 | |Hp| | | | |B3 |HIP HIP | +010380 |V0380 And |230637.0+423927 |LPB | 7.97 | 8.02 | |Hp| | | 1.37678 | |B9 |HIP HIP | +010381 |V0381 And |230857.1+385455 |EA | 7.35 | 7.42 | |Hp| | | | |A0 |HIP HIP | +010382 |V0382 And *|230958.0+425009 |EB | 9.16 | 9.44 | 9.24 |Hp|51402.871 | | 1.478983 | |A0 |00001 HIP | +010383 |V0383 And |231549.3+423444 |LB: | 8.35 | 8.46 | |Hp| | | | |M0 |HIP HIP | +010384 |V0384 And |232352.0+490408 |LB: | 9.22 | 9.41 | |Hp| | | | |M2 |HIP HIP | +010385 |V0385 And |232408.9+413646 |LB | 6.36 | 6.47 | |Hp| | | | |M0 |HIP HIP | +010386 |V0386 And |232414.9+352947 |LB: | 9.32 | 9.53 | |Hp| | | | |M0 |HIP HIP | +010387 |V0387 And |232536.1+525846 |LB | 6.76 | 6.87 | |Hp| | | | |M0 |HIP HIP | +010388 |V0388 And |232707.4+425443 |ACV | 5.73 | 5.77 | |Hp| | | 1.47931 | |B9Mn |N0108 HIP | +010389 |V0389 And |233201.3+434921 |EA | 8.22 | 8.32 | |Hp| | | | |A0 |HIP HIP | +010390 |V0390 And |233256.5+460725 |SRB | 6.56 | 6.75 | |Hp| | | 303. | |M0 |HIP HIP | +010391 |V0391 And |233524.2+364454 |LB | 9.05 | 9.43 | |Hp| | | | |M2 |HIP HIP | +010392 |V0392 And *|233848.7+442445 |EA | 9.07 | 9.41 | 9.41 |V |48035.107 | | 4.046275 |06 *|A2 |N0109 HIP | +010393 |V0393 And *|233912.5+503242 |LB: | 10.31 | 10.38 | |Hp| | | | | |HIP HIP | +010394 |V0394 And |234120.2+465136 |LPB | 7.40 | 7.42 | |Hp| | | 1.7776 | |B9 |HIP HIP | +010395 |V0395 And *|234432.1+462249 |EW | 7.55 | 7.62 | 7.61 |Hp|48699.9945 | | 0.6847 | |A0 |HIP HIP | +010396 |V0396 And |235133.4+472916 |DSCTC | 7.92 | 7.95 | |Hp| | | 0.1047310 | |F0 |HIP HIP | +010397 |V0397 And |235207.5+375101 |LB: | 8.60 | 8.72 | |Hp| | | | |M5 |HIP HIP | +010398 |V0398 And |235245.1+345819 |LB: | 8.23 | 8.34 | |Hp| | | | |M2 |HIP HIP | +010399 |V0399 And |235300.1+412045 |LB | 6.95 | 7.05 | |Hp| | | | |M2III |HIP HIP | +010400 |V0400 And |235857.8+404732 |E | 8.57 | 8.65 | |Hp| | | | |A5 |HIP HIP | +010401 |V0401 And |000054.8+324932 |LB: | 9.04 | 9.14 | |Hp| | | | |M0 |HIP HIP | +010402 |V0402 And |001107.3+303236 |UG | 15.5 |< 20. | |B | | | | | |75001 75001| +010403 |V0403 And |003853.0+453350 |M | 11.9 | 16.1 | |V |51540. | | 180. : | | |00001 76002| +010404 |V0404 And *|010124.4+411501 |EA/RS | 10.3 | 10.9 | 10.8 |Rc|52500.3140 | | 0.67603321 |18 *| |N0041 75003| +010405 |V0405 And |022226.0+472919 |RS | 11.0 | 11.31 | |V | | | 0.46543 | |M0Ve+dM5e |75004 75004| +010406 |V0406 And *|023525.6+455603 |EB | 9.22 | 9.42 | 9.39 |V |52500.27 | | 2.165032 | |B8 |N0041 HIP | +010407 |V0407 And |231058.1+501625 |RRAB | 15.5 | 16.6 | |p |29499.586 | | 0.651760 |12 | |75006 03910| +010408 |V0408 And |232155.5+485746 |RRAB | 14.8 | 15.6 | |p |29117.539 | | 0.55665801 |15 | |75006 03903| +010409 |V0409 And |232715.9+400124 |ZZO | 14.1 |( 0.15 )| |B | | | 0.02477 | |DO |75009 USNO | +010410 |V0410 And |233157.2+485918 |RRAB | 14.4 | 15.1 | |p |29117.544 | | 0.4274778 |12 | |75006 03910| +010411 |V0411 And *|234028.3+503300 |EB | 15.0 | 16.1 | 15.3 |p |30253.333 | | 0.8114528 | | |75006 03903| +010412 |V0412 And *|235339.0+453722 |EA | 11.95 | 12.40 | 12.35 |* |51507.720 | | 1.90871 |11 | |N0060 GSC | +010413 |V0413 And *|235404.0+391657 |EA/RS | 7.61 | 8.46 | |U |48127.2 | | 53. |04 |G0III |73005 HIP | +010414 |V0414 And |000936.9+374732 |M | 12.4 | 15.5 | |V |50691. | | 288. | | |76002 76002| +010415 |V0415 And |005043.3+463031 |SRB | 13.0 |< 16.0 | |V | | | 460. | | |76002 76002| +010416 |V0416 And |011030.5+450612 |M | 11.7 |< 14.7 | |V |50611. | | 359. | | |76002 76002| +010417 |V0417 And |011604.7+501145 |M | 11.1 | 14.7 | |V |51129. | | 281. | | |76002 76002| +010418 |V0418 And |013005.8+501001 |M | 11.3 | 14.4 | |V |51161. | | 305. | | |76002 76002| +010419 |V0419 And *|020902.3+393532 |DSCTC | 9.14 |( 0.04 )| |B | | | 0.054 | |F0 |76019 HIP | +010420 |V0420 And *|021821.3+504603 |M | 11.0 |< 15.0 | |V |52178. | | 355.8 | | |00001 76020| +010421 |V0421 And |022320.9+484342 |M | 10.1 |< 12. | |V | | | | |C6,2e |76023 76023| +010422 |V0422 And *|230757.1+501144 |EB | 13.4 | 14.0 | 13.7 |p |51535.715 | | 1.0155849 | | |00001 00534| +010423 |V0423 And |230852.5+524132 |RRAB | 15.8 | 16.7 | |p |29111.528 | | 0.4866552 |20 | |76245 02375| +010424 |V0424 And |232439.6+493601 |RRAB | 15.4 | 16.0 | |p |29117.559 | | 0.58234383 |13 | |76245 02375| +010425 |V0425 And |232737.3+501716 |EA | 13.3 | 14.6 | |p |51307.3800 | | 1.420743 |12 *| |00001 00534| +010426 |V0426 And |233428.8+500954 |LB | 14.1 | 14.9 | |p | | | | | |76245 00534| +010427 |V0427 And |233443.9+503111 |SRB | 14.4 | 16.2 | |p | | | 180. : | | |00001 00534| +010428 |V0428 And *|003646.4+442919 |SRS | 5.13 |( 0.06 )| |V | | | 11.5 | |K5-M0III |77008 HIP | +010429 |V0429 And *|004242.4+431901 |RPHS | 15.1 |( 0.02 )| |B | | | | | |77009 N0110| +010430 |V0430 And |013551.4+361025 |SR | 11.7 | 13.3 | |V | | | 200. : | | |00001 GSC | +010431 |V0431 And |014222.7+485735 |SR: | 11.1 | 12.1 | |V | | | | | |77004 GSC | +010432 |V0432 And |014915.6+452030 |LB | 12.3 | 13.4 | |V | | | | |M6 |77004 GSC | +010433 |V0433 And |015138.1+391544 |SR: | 9.8 | 10.9 | |V | | | | | |77004 GSC | +010434 |V0434 And |015320.8+440742 |LB | 13.1 | 14.1 | |V | | | | | |77004 GSC | +010435 |V0435 And |021249.4+471147 |LB | 10.9 | 11.6 | |V | | | | |M1 |77004 GSC | +010436 |V0436 And |022102.7+425638 |ACV | 7.23 | 7.29 | |Hp| | | 26.87 | |B9pCrEuSi |77022 HIP | +010437 |V0437 And |022725.0+425959 |LB | 11.0 | 11.9 | |V | | | | | |77004 GSC | +010438 |V0438 And |023406.1+433136 |LB | 11.5 | 12.4 | |V | | | | |M1 |77004 GSC | +010439 |V0439 And |000636.8+290117 |BY | 6.13 |( 0.04 )| |V | | | 6.23 | |K0Ve |78005 DM | +010440 |V0440 And *|002649.5+414909 |EA | 12.64 | 13.24 | 12.90 |* |52900.1019 | | 1.58260 |06 | |00001 78214| +010441 |V0441 And *|005644.2+412923 |EW | 13.48 | 14.25 | 14.25 |* |52930.9602 | | 0.4696 | | |00001 78214| +010442 |V0442 And |010353.4+473832 |BE | 6.63 | 6.92 | |V | | | | |B2IVe |78019 HIP | +010443 |V0443 And |011041.9+425555 |BY | 7.66 |( 0.02 )| |V | | | 20.27 | |K0V |78018 HIP | +010444 |V0444 And *|011528.7+411959 |EW | 13.04 | 13.74 | 13.70 |* |52914.2861 | | 0.4688 | | |78214 78214| +010445 |V0445 And |011629.3+425622 |BY | 6.61 |( 0.03 )| |V | | | 5.67 | |G0 |78018 HIP | +010446 |V0446 And *|012540.9+470707 |* | 7.61 |( 0.09 )| |V | | | 64.23 | |G4III |78018 HIP | +010447 |V0447 And |015853.9+373443 |RS | 13.39 |( 0.03 )| |V | | | 1.95 | | |78031 GSC | +010448 |V0448 And |020321.2+462348 |M | 10.5 | 13.6 | |* |51410. | | 285. : | | |N0103 GSC | +010449 |V0449 And *|020946.9+464317 |EW | 12.2 | 12.9 | 12.8 |* |51370.877 | | 0.33853 | | |N0103 GSC | +010450 |V0450 And |021255.0+404006 |BY | 7.19 |( 0.02 )| |V | | | 7.6 : | |G0V |78018 HIP | +010451 |V0451 And |021313.3+403027 |BY | 7.35 |( 0.03 )| |V | | | 7.52 | |G0V |78018 HIP | +010452 |V0452 And *|231859.2+483130 |EB | 13.7 | 15.2 | 14.3 |* |52958.0826 | | 0.9784 | | |78214 78214| +010453 |V0453 And |232136.5+440552 |BY | 7.36 |( 0.04 )| |V | | | 7.489 | |K1V |78018 HIP | +010454 |V0454 And |233758.5+461158 |BY | 6.58 |( 0.02 )| |V | | | 7.5 : | |G3/4V |77119 HIP | +010455 |V0455 And |233401.5+392141 |UG | 8.7 | 16.6 | |V | | | | |pec(e) |79103 79104| +010456 |V0456 And |001352.6+452634 |SR | 10.1 | 11.1 | |* |51470. | | 240. : | | |79100 79010| +010457 |V0457 And |004542.2+461158 |M: | 12.2 | 15.2 | |* |51400. | | 233. : | | |79036 USNO | +010458 |V0458 And |014402.1+480243 |EA | 12.20 |< 12.8 | 12.32 |* |51515.897 | | 2.2904 |10 | |79001 79014| +010459 |V0459 And |023357.9+455956 |M | 10.8 |< 13.8 | |* |51484. | | 384. : | | |79036 79026| +010460 |V0460 And |023414.3+421428 |DSCT | 13.2 | 13.8 | |* |51455.114 | | 0.0749808 | |F5: |79171 79150| +010461 |V0461 And |231159.0+493937 |LB | 9.6 | 9.9 | |* | | | | |M6 |79100 79177| +010462 |V0462 And |231932.6+455532 |EA | 12.25 | 12.81 | 12.78 |* |51483.638 | | 4.279 |06 | |79004 79066| +010463 |V0463 And |232013.9+370840 |EB | 12.15 | 13.05 | 12.50 |* |51446.889 | | 0.406095 | | |79025 GSC | +010464 |V0464 And |232401.8+465212 |SRB | 9.9 | 10.6 | |V | | | 120. | |M3 |79100 79228| +010465 |V0465 And |235315.9+465306 |LB | 12.5 | 13.2 | |p | | | | |Mb |79211 79211| +010466 |V0466 And |020025.4+441019 |UGSU | 12.8 |< 18. | |V | | | | |pec(UG) |79243 | +010467 |V0467 And *|000006.5+352201 |EW | 15.15 | 15.60 | 15.52 |y |54337.3854 | | 0.35340 | | |80003 GSC | NL80_1 +010468 |V0468 And *|000946.5+401135 |EA | 10.90 | 11.56 | 11.54 |* |51415.8742 | | 12.757 |10 | |80001 80016| NL80_1 +010469 |V0469 And *|001122.1+420539 |EW | 14.6 | 15.5 | 15.5 |* |52859.5092 | | 0.328177 | | |80017 80017| NL80_1 +010470 |V0470 And |001250.3+374137 |LPB | 6.66 | 6.70 | |Hp| | | 2.74725 | |B2V |80019 HIP | NL80_1 +010471 |V0471 And |001357.6+350243 |RS | 11.5 | 11.7 | |* | | | 2.573 | | |80021 GSC | NL80_1 +010472 |V0472 And *|001550.1+412803 |EW | 13.25 | 13.6 | 13.5 |* |51384.362 | | 0.85056 | | |80025 80025| NL80_1 +010473 |V0473 And *|001605.4+415124 |EW | 13.8 | 14.3 : | 14.15 |* |51442.752 | | 0.40136 | | |80025 80025| NL80_1 +010474 |V0474 And *|001650.1+434456 |EW | 13.5 | 13.85 | 13.8 |* |51359.654 | | 0.52042 | | |80025 80025| NL80_1 +010475 |V0475 And |001736.9+305120 |RS | 12.3 | 12.5 | |* | | | 13.5338 | | |80021 GSC | NL80_1 +010476 |V0476 And |001825.0+232434 |RS | 9.93 | 10.25 | |V | | | 1.5371 | |G0 |80021 DM | NL80_1 +010477 |V0477 And *|001831.3+302558 |EW | 13.65 | 13.95 | 13.95 |* |51448.945 | | 0.36255 | | |80025 80025| NL80_1 +010478 |V0478 And *|001855.9+223940 |DSCT | 10.38 | 10.60 | |V | | | 0.09600 | | |80029 DM | NL80_1 +010479 |V0479 And |001856.9+345444 |NL | 17.30 | 17.65 | |g | | | | | |80030 USNO | NL80_1 +010480 |V0480 And *|001912.7+330112 |EW | 12.75 | 13.05 | 13.0 |* |51541.898 | | 0.51003 | | |80025 80025| NL80_1 +010481 |V0481 And |002001.1+275954 |RS | 10.05 | 10.25 | |V | | | 4.6817 | |G5 |80021 GSC | NL80_1 +010482 |V0482 And *|002034.6+402506 |E/RS | 11.25 | 11.60 | 11.45 |* |51475.7 | | 11.284 | | |80028 80028| NL80_1 +010483 |V0483 And *|002035.3+400417 |EW | 11.97 | 12.2 | 12.2 |* |51497.684 | | 0.29707 | | |80031 80031| NL80_1 +010484 |V0484 And *|002105.4+322917 |EW | 13.0 | 13.28 | 13.28 |* |51492.020 | | 0.34900 | | |80032 80032| NL80_1 +010485 |V0485 And *|002119.2+352415 |EW | 11.08 | 11.23 | 11.22 |* |51505.709 | | 1.03257 | | |80033 80033| NL80_1 +010486 |V0486 And |002123.0+334237 |RS | 10.67 | 10.85 | |* | | | 8.3490 | | |80021 GSC | NL80_1 +010487 |V0487 And *|002127.0+301323 |EB | 11.6 | 11.76 | 11.74 |* |51594.91 | | 1.04068 | | |80028 80028| NL80_1 +010488 |V0488 And *|002206.0+403124 |EB | 12.55 | 12.9 | 12.65 : |* |51512.492 | | 0.68216 | | |80024 80024| NL80_1 +010489 |V0489 And *|002439.1+245523 |EB | 12.3 | 13.3 | 12.7 |V |52945.601 | | 0.4227560 | | |80001 GSC | NL80_1 +010490 |V0490 And *|002648.8+415004 |EW | 14.6 | 15.1 | 15.1 |V |53266.3825 | | 0.42418 | | |80038 80038| NL80_1 +010491 |V0491 And |003019.9+411040 |BY | 10.5 | 10.9 | |* | | | 36.50 | | |80043 80043| NL80_1 +010492 |V0492 And |003251.8+261815 |RRAB | 14.30 | 15.37 | |* |51532.63 | | 0.51203 | | |80026 USNO | NL80_1 +010493 |V0493 And |003408.5+252350 |RS | 10.64 | 10.78 | |* | | | 3.1555 | |K5 |80021 GSC | NL80_1 +010494 |V0494 And |003633.2+430554 |RS | 11.1 | 11.55 | |* | | | 24.41 | | |80049 80049| NL80_1 +010495 |V0495 And |003711.9+441300 |RS | 10.43 | 10.60 | |* | | | 16.71 | | |80049 80049| NL80_1 +010496 |V0496 And *|003933.0+273029 |EA | 12.5 | 14.7 | 12.6 : |V |53675.4319 | | 4.40262 |10 | |80051 GSC | NL80_1 +010497 |V0497 And *|003955.9+341453 |EW | 14.7 | 15.5 | 15.3 |* |51469.814 | | 0.30510 | | |80052 80052| NL80_1 +010498 |V0498 And *|004020.9+434325 |RS | 9.13 | 9.25 | |* | | | 10.78 | |K0 |80049 80049| NL80_1 +010499 |V0499 And |004046.1+432359 |RRC | 15.1 | 15.6 | |V |48400.0 | | 0.46614 |50 | |80054 80054| NL80_1 +010500 |V0500 And |004226.5+421537 |UG: | 14.5 |< 20.5 | |* | | | | | |80055 | NL80_1 +010501 |V0501 And |004306.4+413013 |UG: | 18.13 |< 19.5 | |V | | | | | |80056 80027| NL80_1 +010502 |V0502 And *|004338.3+301245 |EW | 13.8 | 14.2 | 14.15 |* |51453.702 | | 0.3189 | | |80052 80052| NL80_1 +010503 |V0503 And |004359.5+220909 |RRAB | 14.19 | 15.34 | |* |51403.89 | | 0.52516 | | |80026 GSC | NL80_1 +010504 |V0504 And *|004500.3+384356 |EW | 13.4 | 13.7 | 13.6 |* |51486.803 | | 0.6480 | | |80052 80052| NL80_1 +010505 |V0505 And *|004538.6+372829 |EW | 13.8 | 14.6 | 14.6 |* |51484.539 | | 0.394145 | | |80052 80052| NL80_1 +010506 |V0506 And *|004637.8+315117 |EW | 13.6 | 14.4 | 14.2 |* |51461.523 | | 0.34345 | | |80052 80052| NL80_1 +010507 |V0507 And |004705.4+301824 |RS | 11.0 | 11.2 | |* | | | 12.464 | |G0 |80060 80060| NL80_1 +010508 |V0508 And *|004744.1+360223 |EW | 12.15 | 12.45 | 12.4 |* |51464.040 | | 0.7752 | | |80052 80052| NL80_1 +010509 |V0509 And |004836.9+320859 |EW: | 12.54 | 12.65 | |* | | | 0.305384 | | |80021 GSC | NL80_1 +010510 |V0510 And *|004923.1+320037 |EA | 13.9 | 14.5 | 14.35 |* |51479.957 | | 1.587 |07 | |80063 80063| NL80_1 +010511 |V0511 And |005214.3+454126 |RS: | 11.8 | 12.0 | |* | | | 1.22208 | | |80067 80067| NL80_1 +010512 |V0512 And *|005217.3+351604 |EA | 11.8 | 12.5 | 11.95 |* |51462.627 | | 0.74532 |10 | |80063 80063| NL80_1 +010513 |V0513 And *|005417.8+394510 |EA | 12.8 | 13.2 | 12.9 |* |51489.80 | | 3.760 |10 | |80063 80063| NL80_1 +010514 |V0514 And *|005453.2+352803 |EW | 13.9 | 14.3 | 14.15 |* |51463.792 | | 0.36693 | | |80052 80052| NL80_1 +010515 |V0515 And |005519.9+461257 |NL | 14.7 |( 0.3 )| |B | | | 0.00556 | | |80035 80035| NL80_1 +010516 |V0516 And |005603.4+353358 |RRC | 11.65 | 12.0 | |* |51480.877 | | 0.42871 |45 | |80068 80068| NL80_1 +010517 |V0517 And *|005611.7+354910 |EW | 13.3 | 13.6 | 13.6 : |* |51463.954 | | 0.49053 | | |80052 80052| NL80_1 +010518 |V0518 And *|005728.9+400144 |EW | 13.5 | 13.9 | 13.85 |* |51489.881 | | 0.36115 | | |80052 80052| NL80_1 +010519 |V0519 And |005839.2+363850 |CWA | 13.15 | 13.65 | |* |51465.5 | | 20.7 |45 : | |80068 80068| NL80_1 +010520 |V0520 And |005904.5+455222 |SR | 10.95 | 11.4 | |* | | | 70. | | |80070 80070| NL80_1 +010521 |V0521 And *|010126.5+380313 |DSCTC | 11.29 |( 0.04 )| |V | | | 0.10096 | |F0-F2 |80072 80072| NL80_1 +010522 |V0522 And *|010328.9+430128 |EA | 13.34 | 13.94 | 13.94 |* |53598.1280 | | 7.5530 |03 | |80073 80073| NL80_1 +010523 |V0523 And *|010538.0+364906 |EA | 11.9 | 12.4 | 12.35 |* |51478.765 | | 0.52854 |13 | |80063 80063| NL80_1 +010524 |V0524 And |010547.1+443504 |SXPHE | 12.35 | 12.75 | |* |51505.700 | | 0.094493 |40 | |80028 80028| NL80_1 +010525 |V0525 And *|011648.1+341810 |EA/RS | 11.2 | 11.55 | 11.5 |* |51480.560 | | 1.4290 |10 | |80063 80063| NL80_1 +010526 |V0526 And *|012123.3+355012 |EB | 14.3 | 15.1 | 14.6 |* |51478.609 | | 0.48558 | | |80052 80052| NL80_1 +010527 |V0527 And *|012235.7+341936 |EW | 10.65 | 11.05 | 11.05 |* |51478.856 | | 0.70065 | | |80052 80052| NL80_1 +010528 |V0528 And |012259.8+362817 |SXPHE | 12.8 | 13.05 | |* |51481.805 | | 0.089613 |35 | |80082 80082| NL80_1 +010529 |V0529 And *|012726.7+410604 |GDOR+DSCT | 6.48 | 6.51 | |Hp| | | 0.40331 | |A7Vm |80161 HIP | NL80_1 +010530 |V0530 And *|012741.0+335156 |EB | 12.6 | 13.3 | 13.0 |* |51479.632 | | 0.57723 | | |80052 80052| NL80_1 +010531 |V0531 And *|013015.9+333919 |EW | 11.40 | 11.60 | 11.55 |* |51484.437 | | 0.40633 | | |80033 80033| NL80_1 +010532 |V0532 And *|013025.3+391830 |EW | 13.5 | 13.8 | 13.75 : |* |51462.747 | | 0.39902 | | |80052 80052| NL80_1 +010533 |V0533 And *|013130.5+380952 |EB | 13.8 | 14.4 | 14.05 |* |51464.606 | | 0.6032 | | |80052 80052| NL80_1 +010534 |V0534 And *|013130.5+345552 |EW | 14.2 | 14.6 | 14.6 |* |51481.515 | | 0.4073 | | |80052 80052| NL80_1 +010535 |V0535 And |013147.2+384803 |RS | 11.12 | 11.24 | |* | | | 8.7733 | | |80021 GSC | NL80_1 +010536 |V0536 And *|013428.6+395026 |EW: | 14.2 | 14.6 | 14.6 |* |51467.724 | | 0.6415 | | |80085 80085| NL80_1 +010537 |V0537 And *|013519.3+374638 |EA | 11.4 | 11.75 | 11.65 |* |51476.783 | | 0.90075 |11 | |80063 80063| NL80_1 +010538 |V0538 And *|013614.7+380434 |EW | 13.9 | 14.3 | 14.2 |* |51468.934 | | 0.51875 | | |80052 80052| NL80_1 +010539 |V0539 And |013626.2+404344 |RS | 12.11 | 12.34 | |* | | | 0.4357 | |M0.5V |80021 GSC | NL80_1 +010540 |V0540 And |013727.1+390008 |RS | 10.43 | 10.56 | |* | | | 1.0616 | | |80021 DM | NL80_1 +010541 |V0541 And *|013736.1+380357 |EA | 12.58 | 13.47 | 12.70 |* |51415.866 | | 3.9761 |12 | |80013 GSC | NL80_1 +010542 |V0542 And |014028.8+421201 |RS | 10.28 | 10.41 | |* | | | 1.0605 | |K0V |80021 DM | NL80_1 +010543 |V0543 And *|014225.3+375525 |EA | 11.0 | 11.8 | 11.15 |* |51475.665 | | 0.9264 |16 | |80063 80063| NL80_1 +010544 |V0544 And |014428.0+375854 |SXPHE | 12.9 | 13.5 | |* | | | 0.10694 |25 | |80082 80082| NL80_1 +010545 |V0545 And |014730.0+480648 |LB | 10.7 | 11.1 | |* | | | | | |80100 GSC | NL80_1 +010546 |V0546 And *|015112.6+434908 |EW | 11.23 | 11.76 | 11.76 |* |51475.6132 | | 0.38303 | | |80001 GSC | NL80_1 +010547 |V0547 And *|015203.0+374809 |EA/RS | 11.38 | 11.76 | 11.74 |* |51574.628 | | 1.9530 |10 | |80021 GSC | NL80_1 +010548 |V0548 And |015455.9+421257 |RRAB | 12.79 | 13.26 | |* |51415.88 | | 0.50699 | | |80026 GSC | NL80_1 +010549 |V0549 And *|015518.3+405533 |EW | 14.0 | 14.5 | 14.4 |* |51493.621 | | 0.31596 | | |80052 80052| NL80_1 +010550 |V0550 And |015608.2+431730 |RRAB | 12.65 | 13.17 | |* |51456.78 | | 0.77890 | | |80026 GSC | NL80_1 +010551 |V0551 And |015621.3+403517 |SR | 11.35 | 11.65 | |* | | | 50.5 | | |80070 80070| NL80_1 +010552 |V0552 And *|015739.9+435504 |EW | 16.89 | 17.55 | 17.36 |* |54712.3808 | | 0.28133 | | |80106 80106| NL80_1 +010553 |V0553 And *|015751.1+440215 |EW | 17.12 | 17.68 | 17.52 |* |54776.5584 | | 0.30903 | | |80106 80106| NL80_1 +010554 |V0554 And *|015757.2+442751 |EW | 16.32 | 16.78 | 16.72 |* |54773.3070 | | 0.35291 | | |80106 80106| NL80_1 +010555 |V0555 And *|015818.2+435927 |EB | 14.35 | 14.81 | 14.57 |* |54713.3508 | | 0.71681 | | |80106 80106| NL80_1 +010556 |V0556 And *|015847.8+443305 |EW | 14.55 | 14.80 | 14.70 |* |54775.5306 | | 0.43141 | | |80106 80106| NL80_1 +010557 |V0557 And *|015910.8+381233 |EW | 14.2 | 15.0 | 14.8 |* |51507.780 | | 0.34744 | | |80052 80052| NL80_1 +010558 |V0558 And *|015917.9+440758 |EW | 15.62 | 16.10 | 15.99 |* |54711.3850 | | 0.31092 | | |80106 80106| NL80_1 +010559 |V0559 And *|020024.7+442257 |EW | 16.05 | 16.20 | 16.17 |* |54712.2955 | | 0.34708 | | |80106 80106| NL80_1 +010560 |V0560 And *|020130.0+442915 |EA | 13.91 | 14.26 | 14.23 |* |54713.4729 | | 0.88508 |10 | |80106 80106| NL80_1 +010561 |V0561 And *|020203.6+435435 |EW | 16.03 | 16.42 | 16.38 |* |54713.3474 | | 0.33479 | | |80106 80106| NL80_1 +010562 |V0562 And |020211.4+441950 |DSCT | 16.67 | 16.85 | |* | | | 0.13805 | | |80106 80106| NL80_1 +010563 |V0563 And *|020240.1+364241 |EW | 13.7 | 14.2 | 14.0 |* |51478.76 | | 0.3058 | | |80101 80101| NL80_1 +010564 |V0564 And *|020308.4+441023 |EW | 13.98 | 14.07 | 14.06 |* |54774.3713 | | 0.39177 | | |80106 80106| NL80_1 +010565 |V0565 And *|020327.8+441451 |EW | 12.17 | 12.30 | 12.25 |* |54775.5870 | | 0.3272 | | |80106 80106| NL80_1 +010566 |V0566 And *|020720.0+353855 |EW | 10.85 | 11.30 | 11.25 |* |51478.78 | | 0.38970 | | |80101 80101| NL80_1 +010567 |V0567 And *|020759.5+401756 |EA | 11.65 | 12.35 | 11.8 |* |51510.265 | | 3.0155 |15 | |80107 80107| NL80_1 +010568 |V0568 And *|021305.4+404931 |EW | 13.9 | 14.5 | 14.4 |* |51509.930 | | 0.39428 | | |80101 80101| NL80_1 +010569 |V0569 And |021440.6+495319 |RRAB | 12.48 | 13.01 | |* |51425.75 | | 0.55289 | | |80026 GSC | NL80_1 +010570 |V0570 And |021545.9+401421 |LB | 9.86 | 10.15 | |* | | | | | |80070 80070| NL80_1 +010571 |V0571 And *|021913.8+375405 |EW | 13.65 | 14.2 | 14.1 |* |51512.954 | | 0.35764 | | |80102 80102| NL80_1 +010572 |V0572 And |022216.5+412300 |UGSU | 16.4 |< 19.5 | |Rc| | | | |pec(UG) |80114 80027| NL80_1 +010573 |V0573 And |022452.5+422654 |RS: | 13.8 | 14.5 | |* | | | 2.0452 | | |80021 GSC | NL80_1 +010574 |V0574 And |022722.4+391129 |LB | 10.0 | 10.3 | |* | | | | | |80100 GSC | NL80_1 +010575 |V0575 And *|022844.3+372859 |EW | 12.0 | 12.4 | 12.35 |* |51504.76 | | 0.6780 | | |80102 80102| NL80_1 +010576 |V0576 And |023253.2+463034 |SRB | 12.5 | 13.2 | |V | | | 81.9 | | |80117 80117| NL80_1 +010577 |V0577 And |023857.3+444423 |RS | 11.57 |( 0.13 )| |B | | | 2.716 | |G |80039 DM | NL80_1 +010578 |V0578 And |225850.0+405611 |BY | 10.86 |( 0.12 : *)| |V | | | 6.3266 | | |80021 GSC | NL80_3 +010579 |V0579 And |225911.1+362118 |EW | 12.5 | 12.8 | 12.8 |* |51448.643 | | 0.338134 | | |80085 80085| NL80_3 +010580 |V0580 And |230004.7+484737 |SR | 12.0 | 12.3 | |* | | | 195.9 : | | |80598 GSC | NL80_3 +010581 |V0581 And |230023.9+481810 |EA | 10.40 | 10.7 | 10.6 |* |51401.100 | | 19.9615 |09 | |80042 GSC | NL80_3 +010582 |V0582 And |230102.1+475344 |SR | 10.05 | 10.28 | |* | | | 52.9 | | |80598 GSC | NL80_3 +010583 |V0583 And |230135.5+483911 |EB | 12.55 | 12.80 | 12.7 |* |51497.9 | | 20.345 | | |80598 GSC | NL80_3 +010584 |V0584 And |230147.8+352848 |BY | 9.20 | 9.34 | |* | | | 14.1358 | |K2 |80021 DM | NL80_3 +010585 |V0585 And |230148.6+444829 |EB | 12.91 | 13.50 | 13.08 |* |51444.678 | | 0.73893 | | |80598 GSC | NL80_3 +010586 |V0586 And |230209.3+351539 |BY | 10.05 |( 0.08 *)| |V | | | 9.1534 | | |80021 DM | NL80_3 +010587 |V0587 And |230222.4+472129 |LB | 9.88 | 10.02 | |* | | | | | |80598 GSC | NL80_3 +010588 |V0588 And |230233.1+464948 |M | 9.44 | 12.22 | |* |51505. :| | 265.5 | |M4 |80598 2MASS| NL80_3 +010589 |V0589 And |230252.1+480610 |SR | 11.66 | 12.12 | |* | | | 52.3 | | |80598 GSC | NL80_3 +010590 |V0590 And |230325.7+441214 |EA | 13.05 | 13.40 | 13.10 |* |51390.74 | | 2.6670 |14 | |80598 GSC | NL80_3 +010591 |V0591 And |230342.6+530014 |EA | 13.74 | 15.14 | 13.85 |* |53292.1090 | | 2.6525 |10 | |80008 80008| NL80_3 +010592 |V0592 And |230343.7+462916 |SR | 10.87 | 11.02 | |* | | | 22.46 | | |80598 GSC | NL80_3 +010593 |V0593 And |230344.1+361523 |EW | 12.8 | 13.1 | 13.05 |* |51450.750 | | 0.37216 | | |80085 80085| NL80_3 +010594 |V0594 And |230415.6+471952 |SR: | 12.45 | 12.75 | |* | | | | | |80598 USNO | NL80_3 +010595 |V0595 And |230418.6+481948 |RRC | 13.0 | 13.3 | |* |51375.74 | | 0.20085 |45 | |80598 GSC | NL80_3 +010596 |V0596 And |230422.8+470318 |SR | 10.33 | 10.47 | |* | | | 60.24 | | |80598 GSC | NL80_3 +010597 |V0597 And |230604.1+483525 |EW: | 11.69 | 12.03 | 11.98 : |* |51442.686 | | 0.46775 | | |80001 GSC | NL80_3 +010598 |V0598 And |230606.4+481555 |SR | 11.50 | 11.80 | |* | | | 61.1 | | |80598 GSC | NL80_3 +010599 |V0599 And |230621.6+441218 |EA | 12.7 | 13.0 | |* |51337.897 | | 1.0981 |10 | |80001 GSC | NL80_3 +010600 |V0600 And |230636.2+471531 |EW | 12.30 | 12.75 | 12.67 : |* |55135.5821 | | 0.396770 | | |80596 GSC | NL80_3 +010601 |V0601 And |230638.1+492328 |EA | 11.73 | 12.20 | |* |55441.352 | | 1.2121 |17 | |80598 GSC | NL80_3 +010602 |V0602 And |230654.9+471636 |SR | 11.23 | 11.58 | |* | | | 78.5 | | |80598 GSC | NL80_3 +010603 |V0603 And |230715.1+482841 |LB | 11.80 | 12.15 | |* | | | | | |80598 USNO | NL80_3 +010604 |V0604 And *|230718.0+480523 |SR | 15.4 | 16.0 | |B | | | 143.4 | | |80598 GSC | NL80_3 +010605 |V0605 And |230729.2+442950 |SR | 10.15 | 10.40 | |* | | | 37.31 | | |80598 GSC | NL80_3 +010606 |V0606 And |230737.3+443118 |LB | 11.44 | 11.69 | |* | | | | | |80598 GSC | NL80_3 +010607 |V0607 And |230741.9+450931 |LB | 9.04 | 9.60 | |* | | | | | |80598 GSC | NL80_3 +010608 |V0608 And |230807.8+441045 |LB | 10.07 | 10.43 | |* | | | | |M |80598 GSC | NL80_3 +010609 |V0609 And |230819.8+440048 |SR: | 11.38 | 12.14 | |* | | | 98.2 : | | |80598 GSC | NL80_3 +010610 |V0610 And |230915.4+490133 |M: | 12.10 | 13.90 | |* |51313. :| | 290.9 | | |80598 USNO | NL80_3 +010611 |V0611 And |230919.9+481448 |EB | 13.56 | 13.95 | 13.75 |* |51566.60 | | 0.5864 | | |80598 GSC | NL80_3 +010612 |V0612 And |230935.3+451645 |CEP: | 12.70 | 12.95 | |* |51517.7 | | 27.064 |50 : | |80598 GSC | NL80_3 +010613 |V0613 And |231012.4+473414 |EA | 9.15 | 9.61 | 9.57 |* |55823.333 | | 1.875798 |16 |A5 |80001 DM | NL80_3 +010614 |V0614 And |231050.3+481549 |LB | 9.56 | 9.87 | |* | | | | | |80598 GSC | NL80_3 +010615 |V0615 And |231130.1+470252 |M | 10.86 |< 13.1 | |* |51451. | | | | |80598 USNO | NL80_3 +010616 |V0616 And |231147.2+480318 |LB | 10.1 | 10.7 | |* | | | | | |80598 GSC | NL80_3 +010617 |V0617 And |231223.5+440534 |LB | 10.70 | 11.06 | |* | | | | | |80598 GSC | NL80_3 +010618 |V0618 And |231233.6+451159 |LB | 11.97 | 12.25 | |* | | | | | |80598 GSC | NL80_3 +010619 |V0619 And |231253.2+452913 |SRB | 10.86 | 11.26 | |* | | | 57. | | |80001 GSC | NL80_3 +010620 |V0620 And |231253.3+450603 |SR | 12.73 | 13.0 | |* | | | 31.1 | | |80598 GSC | NL80_3 +010621 |V0621 And |231320.0+483927 |SR: | 12.15 | 12.75 | |* | | | | | |80598 GSC | NL80_3 +010622 |V0622 And |231326.3+440126 |DSCT | 11.00 | 11.10 | |* | | | 0.16878 | | |80598 GSC | NL80_3 +010623 |V0623 And |231352.4+442009 |LB | 11.64 | 12.0 | |* | | | | | |80598 GSC | NL80_3 +010624 |V0624 And |231531.4+441125 |LB | 9.34 | 9.57 | |* | | | | | |80598 GSC | NL80_3 +010625 |V0625 And |231540.3+360853 |EW | 13.98 | 14.57 | 14.50 |CV|53684.606 | | 0.2495841 | | |80001 80085| NL80_3 +010626 |V0626 And |231603.2+484636 |LB | 12.70 | 12.95 | |* | | | | | |80598 USNO | NL80_3 +010627 |V0627 And |231609.8+480130 |EB | 10.67 | 10.87 | 10.83 |* |51478.642 | | 1.2224 | | |80001 DM | NL80_3 +010628 |V0628 And |231622.1+472910 |LB | 11.8 | 12.2 | |* | | | | | |80598 GSC | NL80_3 +010629 |V0629 And |231653.0+442918 |EA | 11.2 | 11.65 | 11.4 |* |51535.708 | | 0.7426 |23 | |80598 GSC | NL80_3 +010630 |V0630 And |231703.9+530219 |EA | 14.40 | 15.10 | 14.75 |* |53595.1868 | | 2.8271 | | |80073 80073| NL80_3 +010631 |V0631 And |231820.9+465336 |SRB | 10.55 | 10.73 | |* | | | 43.7 | | |80598 GSC | NL80_3 +010632 |V0632 And |231858.4+440549 |RV: | 11.12 | 11.37 | 11.34 |* |51353.8 | | 44.6 | | |80598 GSC | NL80_3 +010633 |V0633 And |231918.7+394735 |EW | 13.84 | 14.33 | 14.21 |CV|53694.66 | | 0.2968971 | | |80001 80085| NL80_3 +010634 |V0634 And |231922.3+364909 |EB | 14.06 | 15.16 | 14.63 |CV|55159.74 | | 0.5774022 | | |80001 80085| NL80_3 +010635 |V0635 And |231931.4+465226 |SR | 10.98 | 12.21 | |* |51360. | | 266.4 | |C(N) |80598 GSC | NL80_3 +010636 |V0636 And |231931.9+492725 |LB | 9.34 | 9.52 | |* | | | | | |80598 DM | NL80_3 +010637 |V0637 And |231945.4+444930 |LB | 8.83 | 9.11 | |* | | | | |M8 |80598 DM | NL80_3 +010638 |V0638 And |231950.5+440733 |EW | 11.52 | 11.92 | 11.90 |* |51375.86 | | 0.33271 | | |80598 GSC | NL80_3 +010639 |V0639 And |232100.9+484610 |SR: | 12.30 | 13.10 | |* | | | 241.7 : | | |80598 USNO | NL80_3 +010640 |V0640 And |232117.4+492847 |LB | 9.70 | 9.95 | |* | | | | | |80598 GSC | NL80_3 +010641 |V0641 And |232124.0+402159 |EB | 13.4 | 13.85 | 13.55 |* |51449.741 | | 0.69491 | | |80085 80085| NL80_3 +010642 |V0642 And |232127.2+492539 |LB | 11.98 | 12.10 | |* | | | | | |80598 GSC | NL80_3 +010643 |V0643 And |232145.3+455209 |EA | 12.7 | 13.2 | 13.1 |* |51576.65 | | 1.5098 |09 | |80598 GSC | NL80_3 +010644 |V0644 And |232232.4+471541 |SR: | 10.53 | 10.73 | |* | | | 50.9 | | |80598 GSC | NL80_3 +010645 |V0645 And |232300.6+491434 |EW | 13.05 | 13.45 | 13.40 |* |51478.64 | | 0.41255 | | |80598 GSC | NL80_3 +010646 |V0646 And |232304.8+443706 |LB | 9.78 | 10.45 | |* | | | | |M |80598 GSC | NL80_3 +010647 |V0647 And |232305.8+470652 |SR | 11.63 | 11.98 | |* | | | 56.7 | | |80598 GSC | NL80_3 +010648 |V0648 And |232351.9+393234 |EB | 13.00 | 13.54 | 13.26 |CV|54012.72 | | 0.5321198 | | |80001 80085| NL80_3 +010649 |V0649 And |232429.1+474350 |EA | 11.55 | 11.70 | 11.65 |* |51467.80 | | 1.6116 |09 | |80598 GSC | NL80_3 +010650 |V0650 And |232441.3+463826 |LB | 9.15 | 9.36 | |* | | | | | |80598 GSC | NL80_3 +010651 |V0651 And |232448.9+483007 |EA | 12.38 | 12.75 | 12.50 |* |51455.82 | | 1.2138 |09 | |80598 GSC | NL80_3 +010652 |V0652 And |232450.7+433453 |BY: | 11.52 | 11.69 | |* | | | 8.230 | | |80598 GSC | NL80_3 +010653 |V0653 And |232507.6+482503 |SRB | 11.34 | 11.56 | |* | | | 32.8 | | |80001 GSC | NL80_3 +010654 |V0654 And |232510.7+484444 |SR: | 10.70 | 10.90 | |* | | | 31.1 : | | |80598 GSC | NL80_3 +010655 |V0655 And |232512.6+471449 |SR | 10.67 | 11.10 | |* | | | 57.8 | | |80598 GSC | NL80_3 +010656 |V0656 And |232519.3+480746 |LB | 11.45 | 11.63 | |* | | | | | |80598 GSC | NL80_3 +010657 |V0657 And |232544.8+470514 |SR | 11.6 | 12.1 | |* | | | 140. | | |80001 GSC | NL80_3 +010658 |V0658 And |232611.5+491315 |SRD: | 9.40 | 9.62 | |* | | | 112.4 : | |K5III |80598 DM | NL80_3 +010659 |V0659 And |232737.9+474803 |SR | 10.60 | 10.80 | |* | | | 43. : | | |80001 GSC | NL80_3 +010660 |V0660 And |232752.1+445415 |RRC | 12.22 | 12.58 | |* |51404.69 | | 0.38542 |45 | |80598 GSC | NL80_3 +010661 |V0661 And |232808.1+445621 |LB | 9.90 | 10.36 | |* | | | | | |80598 GSC | NL80_3 +010662 |V0662 And |232827.5+452240 |EA/RS | 10.65 | 11.05 | 10.75 : |* |51464.80 | | 1.7176 |06 | |80598 GSC | NL80_3 +010663 |V0663 And |232856.9+453829 |LB | 10.53 | 10.77 | |* | | | | | |80598 GSC | NL80_3 +010664 |V0664 And |232859.5+352444 |EW | 12.58 | 12.85 | 12.83 |* |51425.644 | | 0.42110 | | |80032 80032| NL80_3 +010665 |V0665 And |232933.5+452623 |EA | 12.7 | 13.3 | 12.9 |* |51478.58 | | 10.063 |09 | |80598 GSC | NL80_3 +010666 |V0666 And |232933.6+455910 |EW | 12.82 | 13.14 | 13.1 |* |51566.66 | | 0.4556 | | |80598 GSC | NL80_3 +010667 |V0667 And |232943.2+483658 |EB | 12.90 | 13.30 | 13.0 |* |55501.6967 | | 0.694498 | | |80001 GSC | NL80_3 +010668 |V0668 And |232953.8+465808 |LB | 9.35 | 9.55 | |* | | | | | |80598 GSC | NL80_3 +010669 |V0669 And |233034.3+433042 |LB | 11.71 | 11.93 | |* | | | | | |80598 GSC | NL80_3 +010670 |V0670 And |233037.3+462404 |DSCT | 10.62 | 10.91 | |* | | | 0.09966 | | |80598 GSC | NL80_3 +010671 |V0671 And |233050.0+481132 |SR | 10.98 | 11.46 | |* | | | 63.9 | | |80598 GSC | NL80_3 +010672 |V0672 And |233055.3+451624 |CEP: | 13.81 | 14.48 | |* |51442.67 | | 3.2041 |50 : | |80598 USNO | NL80_3 +010673 |V0673 And |233103.8+355547 |EB | 11.14 | 11.40 | 11.25 |V |53258.4176 | | 1.629275 | |G8V |80600 GSC | NL80_3 +010674 |V0674 And |233241.3+464758 |EA | 10.65 | 10.9 | 10.75 |* |51414.74 | | 2.84822 |09 | |80598 DM | NL80_3 +010675 |V0675 And |233324.1+484538 |DSCTC: | 11.6 |( 0.04 )| |B | | | 0.080 | | |80089 80089| NL80_3 +010676 |V0676 And |233413.9+363958 |EW | 12.86 | 13.26 | 13.26 |V |53255.3397 | | 0.364527 | | |80600 GSC | NL80_3 +010677 |V0677 And |233423.1+391423 |UGSU: | 18.2 |< 21. | |V | | | | |pec(e) |80610 80630| NL80_3 +010678 |V0678 And |233512.3+443934 |EW | 13.7 | 14.2 | 14.1 |* |55506.706 | | 0.3617120 | | |80001 GSC | NL80_3 +010679 |V0679 And |233528.5+472825 |SR | 12.05 | 12.23 | |* | | | 64.4 | | |80598 GSC | NL80_3 +010680 |V0680 And |233533.3+434657 |EW | 13.3 | 13.6 | 13.5 |* |51508.613 | | 0.36346 | | |80598 GSC | NL80_3 +010681 |V0681 And |233542.5+394427 |R | 14.38 | 14.71 | |CV| | | 0.1718023 | |sdB+dM3/4 |80611 GSC | NL80_3 +010682 |V0682 And |233603.8+465546 |LB | 10.87 | 11.31 | |* | | | | | |80598 GSC | NL80_3 +010683 |V0683 And |233627.8+440724 |EA | 10.45 | 10.95 | 10.65 |* |51573.63 | | 1.5580 | |F8 |80598 DM | NL80_3 +010684 |V0684 And |233738.1+485327 |SR | 12.70 | 13.10 | |* | | | 78.9 | | |80598 GSC | NL80_3 +010685 |V0685 And |233745.7+481323 |LB | 11.14 | 11.38 | |* | | | | | |80598 GSC | NL80_3 +010686 |V0686 And |233755.4+433637 |LB | 10.44 | 10.92 | |* | | | | |M |80598 GSC | NL80_3 +010687 |V0687 And |233827.9+363451 |EW | 11.68 | 11.83 | 11.83 |V |53254.4145 | | 0.395043 | |F3V |80600 GSC | NL80_3 +010688 |V0688 And |233840.2+491223 |SR | 10.48 | 11.03 | |* | | | 121.6 | | |80598 GSC | NL80_3 +010689 |V0689 And |233854.6+351217 |SR | 11.54 | 12.07 | |V | | | 114.504 | | |80600 GSC | NL80_3 +010690 |V0690 And |233906.3+440306 |LB | 9.40 | 9.92 | |* | | | | | |80598 GSC | NL80_3 +010691 |V0691 And |233906.4+420554 |BY | 10.15 | 10.3 | |* | | | 18.61 | | |80043 80043| NL80_3 +010692 |V0692 And |233912.4+452752 |EW | 12.85 | 13.48 | 13.35 |* |51453.635 | | 0.3380213 | | |80596 GSC | NL80_3 +010693 |V0693 And |234040.8+444856 |LB | 9.26 | 9.52 | |* | | | | | |80598 GSC | NL80_3 +010694 |V0694 And |234042.2+340241 |BY: | 13.11 | 13.39 | |V | | | 15.75 : | | |80001 GSC | NL80_3 +010695 |V0695 And |234042.3+471426 |LB | 12.00 | 12.30 | |* | | | | | |80598 GSC | NL80_3 +010696 |V0696 And |234114.2+352439 |EB | 12.85 | 13.26 | 13.10 |* |53254.4715 | | 0.798466 | | |80600 GSC | NL80_3 +010697 |V0697 And |234209.1+462434 |SR | 10.14 | 11.01 | |* | | | 158. : | | |80001 GSC | NL80_3 +010698 |V0698 And |234229.5+434602 |LB | 10.27 | 10.51 | |* | | | | | |80598 GSC | NL80_3 +010699 |V0699 And |234257.3+474920 |LB | 11.14 | 11.37 | |* | | | | | |80598 GSC | NL80_3 +010700 |V0700 And |234258.3+482716 |LB | 11.15 | 11.35 | |* | | | | | |80598 GSC | NL80_3 +010701 |V0701 And |234347.3+454045 |LB | 12.23 | 12.63 | |* | | | | | |80598 GSC | NL80_3 +010702 |V0702 And |234350.9+354921 |EW | 12.78 | 13.21 | 13.12 |CV|53557.875 | | 0.3406955 | | |80600 GSC | NL80_3 +010703 |V0703 And |234418.9+480850 |LB | 11.10 | 11.27 | |* | | | | | |80598 GSC | NL80_3 +010704 |V0704 And |234457.5+433122 |NL: | 12.6 | 18.2 | |CV| | | | |sdOA |80001 80027| NL80_3 +010705 |V0705 And |234521.6+340821 |EW | 11.12 | 11.40 | 11.39 |V |53255.3502 | | 0.354665 | | |80600 GSC | NL80_3 +010706 |V0706 And |234819.8+344834 |EA | 11.80 | 13.07 | 11.90 |* |51494.6701 | | 2.52094 |14 | |80001 GSC | NL80_3 +010707 |V0707 And |234823.6+361840 |EA | 9.93 | 10.42 | 10.13 |V |53260.7572 | | 2.588628 | |F5V |80600 DM | NL80_3 +010708 |V0708 And |235046.2+332104 |RRAB | 12.4 | 13.4 | |CV|55477.765 | | 0.5339229 |13 | |80001 GSC | NL80_3 +010709 |V0709 And |235111.8+342448 |SR | 12.05 | 12.61 | |V | | | 65.445 | | |80600 GSC | NL80_3 +010710 |V0710 And |235119.5+333350 |RRC: | 14.01 | 14.37 | |V |53258.7804 | | 0.219197 |38 | |80600 GSC | NL80_3 +010711 |V0711 And |235132.0+351854 |SR | 12.45 | 12.74 | |V | | | 58.005 | | |80600 GSC | NL80_3 +010712 |V0712 And |235439.2+364516 |EW | 10.27 | 10.53 | 10.47 |* |51462.648 | | 0.367168 | |G0V |80001 DM | NL80_3 +010713 |V0713 And |235508.3+332229 |RRC: | 12.01 | 12.13 | |V |53255.8821 | | 0.318456 | | |80600 GSC | NL80_3 +010714 |V0714 And |235630.5+362854 |EA | 12.00 | 12.48 | |V |53258.3692 | | 2.498501 |15 | |80600 GSC | NL80_3 +010715 |V0715 And |235750.1+334349 |BY | 11.21 |( 0.15 *)| |V | | | 1.4194 | | |80021 GSC | NL80_3 +019001 |alf And *|000823.3+290526 |ACV: | 2.06 |( 0.04 )| |V | | | 0.966222 | |B8IVpHgMn |08030 HIP | +019006 |zet And *|004720.3+241602 |ELL/RS | 3.92 | 4.14 | |V |32761.016 | | 17.769586 | |K1IIe |N0112 HIP | +019011 |lam And *|233733.8+462729 |RS | 3.65 | 4.05 | |V |43832.8 | | 53.95 | |G8III-IV |N0113 HIP | +019015 |omi And *|230155.3+421934 |GCAS | 3.55 | 3.78 | |V | | | | |B6IIIpe+A2p |N0107 HIP | +020001 |R Ant |100945.5-374356 |CST | 7.65 | | |V | | | | |A0V |01113 CoD | +020002 |S Ant *|093218.4-283740 |EW | 6.27 | 6.83 | 6.80 |V |52627.7968 | | 0.6483489 | |F3V |00001 CoD | +020003 |T Ant *|093350.9-363657 |DCEP | 8.88 | 9.82 | |V |36120.608 | | 5.898053 |22 |F6Iab |N0027 CoD | +020004 |U Ant |103512.9-393345 |LB | 8.8 | 9.7 | |p | | | | |C5,3(Nb) |06258 CoD | +020005 |V Ant *|102109.1-344719 |M | 8.2 | 14.0 | |V |52772. | | 303. | |M7IIIe |01113 06286| +020006 |W Ant |095108.6-295345 |SRB | 9.8 | 10.6 | |V | | | 122. | |M3e-M6e |N0002 06286| +020007 |X Ant |100642.2-300438 |M | 8.8 | 14.0 | |V |53458. | | 164.1 | |M2-M6e |N0002 02452| +020008 |Y Ant *|100832.8-351028 |EA | 10.04 | 10.91 | 10.63 |V |51930.737 | | 6.1039 |08 |F2III/IV |N0009 CoD | +020009 |Z Ant |104558.9-351504 |LB | 8.5 | 10.5 | |V | | | | |S5,4 |00001 CoD | +020010 |RR Ant |093538.9-395413 |LB | 8.0 | 8.8 | |V | | | | |M6III |00016 CoD | +020011 |RS Ant |102002.9-394508 |M | 11.4 |< 15.0 | |V |52105. | | 324. | |Me |00001 06286| +020012 |RT Ant |093215.3-251159 |RRAB | 13.2 | 14.2 | |V |53870.597 | | 0.552956 |25 | |00001 06286| +020013 |RU Ant |093355.5-274910 |RRAB | 14.3 | 15.7 | |p |26411.30 | | 0.53914 | | |01353 06286| +020014 |RV Ant |093508.6-250625 |RRAB | 13.9 | 15.5 | |p |26382.55 | | 0.53490 | | |01353 06286| +020015 |RW Ant |093603.9-285554 |RR | 13.9 | 15.0 | |p |26382.42 | | 0.36661 |09 | |01353 06286| +020016 |RX Ant |093754.9-274350 |M | 10.6 | 14.5 | |V |52643. | | 234. |60 |Me |00001 06286| +020017 |RY Ant |093806.5-274330 |SRB | 10.1 | 11.1 | |V | | | 72. | | |00001 06286| +020018 |RZ Ant |093835.7-295654 |SRA | 12.4 | 14.6 | |V |53503. | | 232. | | |00001 06286| +020019 |SS Ant |093910.9-263307 |RRAB | 12.8 | 14.2 | |V |53154.540 | | 0.483725 |25 | |00001 06286| +020020 |ST Ant |094422.9-284611 |RRAB | 13.9 | 15.7 | |p |26411.50 | | 0.51950 | | |01353 06286| +020021 |SU Ant |094641.9-244714 |M | 12.3 |< 14.8 | |V |53821. | | 335. | | |00001 06286| +020022 |SV Ant |094657.8-273816 |M | 11.8 |< 14.6 | |V |53169. | | 298. | | |00001 06286| +020023 |SW Ant *|094827.4-251126 |EW | 13.1 | 13.9 | 13.7 |V |52634.797 | | 0.380204 | | |N0002 06286| +020024 |SX Ant | | | | | | | | | | | | |=DI Pyx +020025 |SY Ant |093101.1-291258 |LB | 9.9 | 10.5 | |V | | | | | |01353 06286| +020026 |SZ Ant *|093852.9-295954 |E: | 11.7 | 12.4 | |p | | | | | |01353 06286| +020027 |TT Ant |093903.8-245222 |SRB | 12.7 | 13.6 | |V | | | 90. | | |00001 06286| +020028 |TU Ant *|094239.5-255139 |LB: | 11.8 | 12.8 | |p | | | | | |01353 06286| +020029 |TV Ant |094252.4-265205 |LB: | 13.3 | 14.4 | |p | | | | | |01353 06286| +020030 |TW Ant |094324.7-253948 |I: | 14.1 | 14.6 | |p | | | | | |01353 06286| +020031 |TX Ant |094405.7-263242 |I: | 15.3 | 15.9 | |p | | | | | |01353 06286| +020032 |TY Ant |094620.1-292415 |SRB | 11.3 | 12.0 | |V | | | 103. | | |00001 06286| +020033 |TZ Ant |094644.0-291842 |SRA | 10.9 | 11.7 | |V |53431. | | 99. | | |00001 06286| +020034 |UU Ant *|094652.5-264245 |EA | 11.94 | 12.4 | 12.1 |V |53474.6407 | | 1.36411 |14 | |00001 06286| +020035 |UV Ant |094827.2-284005 |L: | 12.2 | 13.1 | |V | | | | | |00001 06286| +020036 |UW Ant |094854.1-280718 |SRB | 12.1 | 13.6 | |V | | | 126. | |M3-4 |00001 06286| +020037 |UX Ant |105709.1-372355 |RCB | 12.6 |< 17.4 | |B | | | | |pec |00076 06286| +020038 |UY Ant |105908.6-355720 |M | 10.4 |< 14.5 | |V |53432. | | 297. | | |00001 06286| +020039 |UZ Ant |110520.2-385646 |RRAB | 13.1 | 14.4 | |p |53965.8348 | | 0.60032 |28 | |00001 GSC | +020040 |VV Ant *|110545.7-382123 |EA | 12.6 | 13.6 | 13.1 |V |51949.7724 | | 0.78419 |17 | |N0002 06286| +020041 |VW Ant |092905.2-393338 |EB | 11.2 | 12.8 | |V |51967.6270 | | 1.08401 | | |N0002 03125| +020042 |VX Ant |093246.9-292308 |RR | 14.4 | 15.8 | |p | | | | | |01353 06286| +020043 |VY Ant |094506.3-264537 |RR | 14.9 | 16.1 | |p | | | | | |01353 06286| +020044 |VZ Ant |102523.8-354003 |M | 11.1 |< 14.4 | |V |53453. | | 424. | |Me |00001 02385| +020045 |WW Ant |102613.6-383037 |M | 10.4 |< 14.5 | |V |53422. | | 264. | |Me |N0002 02382| +020046 |WX Ant *|103105.3-355827 |EA | 11.25 | 12.95 | 11.6 |V |51964.6801 | | 3.8171 |16 | |00001 06286| +020047 |WY Ant *|101605.0-294342 |RRAB | 10.27 | 11.22 | |V |48500.5339 | | 0.574341 |15 |A5-F4 |HIP 06286| +020048 |WZ Ant *|100622.5-385254 |EW | 11.7 | 12.1 | 12.1 |V |53523.5577 | | 0.445924 | | |N0002 06286| +020049 |XX Ant *|094924.7-382057 |EA | 8.60 | 9.23 | 9.23 |V |53413.7871 | | 0.888014 |20 |A8/F0V |N0009 CoD | +020050 |XY Ant |101812.2-364819 |EA | 9.95 | 10.65 | |V |52734.5941 | | 2.1803 |10 | |N0002 CoD | +020051 |XZ Ant |101827.6-331633 |EA | 9.65 | 10.75 | |V |53036.7096 | | 7.150737 |13 | |00001 CoD | +020052 |YY Ant |100130.6-380528 |LB | 8.74 | 9.4 | |V | | | | |M3/4III |00001 CoD | +020053 |YZ Ant *|101733.8-322810 |EA | 10.48 | 11.54 | 10.56 |V |52988.815 | | 2.152391 |14 |A1IV |00001 CoD | +020054 |ZZ Ant |092858.7-342128 |M | 10.3 |< 12.0 | |V |53433. | | 221. | |Me |00001 CoD | +020055 |AA Ant |100601.3-312303 |M | 11.2 |< 14.4 | |V |53428. | | 270. | |Me |02935 GSC | +020056 |AB Ant |101153.8-351929 |LB | 6.6 | 7.1 | |V | | | | |C6,3(N0) |00001 CoD | +020057 |AC Ant |102132.7-343932 |M | 10.7 |< 14.6 | |V |53497. | | 212.86 | |Me |06012 06286| +020058 |AD Ant |103010.4-371852 |M | 10.4 | 14.7 | |V |53459. | | 316. | |Me |00001 02382| +020059 |AE Ant |101200.8-323502 |SRB | 8.8 | 10.7 | |V | | | 258. | |M5 |00001 CoD | +020060 |AF Ant |093400.2-291524 |RR | 13.8 | 14.7 | |p | | | | | |01353 06286| +020061 |AG Ant *|101807.6-285931 |* | 5.29 | 5.83 | |V | | | 429. | |B9.5Ib-II |N0018 CoD | +020062 |AH Ant |105314.9-325919 |SRD | 8.40 | 8.7 | |V | | | 83. | |K2III |00001 CoD | +020063 |AI Ant *|094134.4-292225 |ACVO | 9.66 |( 0.02 )| |B | | | 3.69 | |Ap(Sr-Eu-Cr) |N0028 CoD | +020064 |AK Ant |093456.5-285239 |DSCTC | 8.80 |( 0.03 b )| |V | | | 0.066 | |A2II/III(w) |73012 CoD | +020065 |AL Ant |092918.1-334021 |LB | 7.40 | 7.78 | |V | | | | |M2/M3III |HIP HIP | +020066 |AM Ant |093235.1-335950 |ACV | 9.31 | 9.38 | |Hp| | | 4.8910 | |Ap(Si) |HIP HIP | +020067 |AN Ant *|093244.3-371335 |EB | 8.21 | 8.34 | 8.26 |V |52974.8389 | | 3.681309 | |F0/F2IV |00001 HIP | +020068 |AO Ant |094034.9-363214 |LB | 8.6 | 9.0 | |V | | | | |M0 |HIP HIP | +020069 |AP Ant |100449.0-281119 |ACV | 6.93 | 6.99 | |Hp| | | 18.201 | |Ap(Eu-Cr) |HIP HIP | +020070 |AQ Ant |101200.9-332725 |LB | 9.06 | 9.22 | |Hp| | | | |K5 |HIP HIP | +020071 |AR Ant |101421.0-380914 |LB | 9.30 | 9.48 | |Hp| | | | |M2/M3 |HIP HIP | +020072 |AS Ant |101542.7-312852 |LB: | 8.29 | 8.39 | |Hp| | | | |K5III |HIP HIP | +020073 |AT Ant |101550.7-321034 |SRA | 8.1 | 8.6 | |V |53497. | | 45.3 | |M4III |00001 HIP | +020074 |AU Ant |102634.7-344203 |SRB | 8.30 | 8.64 | |V | | | 30.3 | |M3III |N0002 HIP | +020075 |AV Ant |102710.0-371247 |SRB | 7.5 | 8.3 | |V | | | 84. | |M4III |00001 HIP | +020076 |AW Ant |103532.4-362312 |SRD: | 8.6 | 9.5 | |V | | | 700. : | |G5 |00001 HIP | +020077 |AX Ant |103624.9-314959 |LB | 8.53 | 8.70 | |V | | | | |K5 |HIP HIP | +020078 |AY Ant |104020.8-395603 |SRD | 9.64 | 10.06 | |V | | | 53.5 | |Kp |00001 HIP | +020079 |AZ Ant |104450.7-352039 |DSCTC | 7.93 | 7.96 | |Hp| | | 0.1053030 | |A5/7V |HIP HIP | +020080 |BB Ant |105133.1-343216 |SRB | 8.1 | 9.0 | |V | | | 125. | |M6III |00001 HIP | +020081 |BC Ant |105426.1-333009 |LB | 8.85 | 9.09 | |V | | | | |K5 |HIP HIP | +020082 |BD Ant |101806.4-360231 |M | 11.1 |< 15.0 | |V |53474. | | 283. | | |00001 USNO | +020083 |BE Ant |101800.2-325409 |M | 11.2 | 14.6 | |V |53476. | | 201. | | |00001 GSC | +020084 |BF Ant |095654.1-272831 |DSCTC | 6.32 |( 0.01 )| |V | | | | |A4V |78024 CoD | +020085 |BG Ant |093423.7-253313 |EB | 13.55 | 14.6 : | 13.75 |V |51553.950 | | 0.654531 | | |79003 79010| +020086 |BH Ant |093914.5-244037 |SRB | 11.2 | 12.0 | |V | | | 61. | | |79100 79010| +020087 |BI Ant |094253.8-401254 |SRA | 11.7 | 13.3 | |V |53530. | | 324. | | |79100 USNO | +020088 |BK Ant |094414.8-393941 |RRAB | 11.7 | 12.4 | |V |53135.653 | | 0.5165705 |20 | |79100 DM | +020089 |BL Ant |095053.5-270718 |EW | 13.6 | 14.4 | 14.4 |V |53511.544 | | 0.366935 | | |79064 79010| +020090 |BM Ant |095108.6-290851 |EW | 13.3 | 14.0 | 13.9 |V |53741.75 | | 0.82736 | | |79064 79010| +020091 |BN Ant *|095706.0-391726 |RRAB | 11.7 | 13.0 | |V |52841.465 | | 0.535901 |12 | |79064 GSC | +020092 |BO Ant |100753.8-323552 |EB | 8.83 | 9.37 | 9.01 |V |52215.849 | | 1.060168 | |A5V |79064 DM | +020093 |BP Ant |101031.4-363213 |M | 10.0 |< 14.2 | |V |53814. | | 190. | | |79064 GSC | +020094 |BQ Ant |101416.6-334322 |SRB | 9.8 | 10.9 | |V | | | 106. | | |79100 79080| +020095 |BR Ant |101555.5-305752 |LB | 10.0 | 11.5 | |V | | | | | |79100 DM | +020096 |BS Ant |101753.4-375012 |SRB | 11.5 | 12.3 | |V | | | 44. | | |79100 GSC | +020097 |BT Ant |103202.6-301037 |RR | 11.55 | 12.02 | |V |51870.54 | | 0.330435 |32 | |79064 79081| +020098 |BU Ant *|103910.2-393928 |LB | 9.5 | 10.8 | |V | | | | | |79100 DM | +020099 |BV Ant *|110125.5-371018 |EA | 11.52 | 12.24 | 12.24 |V |53447.705 | | 3.59426 |08 | |79003 DM | +020100 |BW Ant *|092920.2-312303 |XP | 18.63 | 22.89 | |V | | | | | |80321 80321| NL80_2 +020101 |BX Ant |101828.7-315003 |IT | 11.62 |( 0.49 )| |V | | | 0.54 | |M0Ve |80330 GSC | NL80_2 +020102 |BY Ant *|102248.4-333658 |EA | 9.21 | 9.28 | 9.26 |V |51906.72 | | 9.8604 |05 |Fm |80011 DM | NL80_2 +020103 |BZ Ant *|102934.8-303633 |IT | 9.65 |( 0.04 )| |V | | | 3.3 : | |F9Ve |80199 2MASS| NL80_2 +020104 |CC Ant *|103329.4-360358 |EA | 7.68 | 7.87 | 7.78 |V |53767.696 | | 2.44514 |14 |A8III |80011 DM | NL80_2 +020105 |CD Ant *|104129.7-341252 |EA | 10.33 | 10.67 | 10.63 |V |52043.870 | | 2.59549 |08 | |80048 GSC | NL80_2 +020106 |CE Ant |104230.1-334017 |IT | 11.06 |( 0.05 )| |V | | | 5.05 | |M2Ve |80330 GSC | NL80_2 +020107 |CF Ant |105221.4-361811 |EA | 10.12 | 10.47 | |V |53421.758 | | 1.53364 |08 |G2 |80011 GSC | NL80_2 +030001 |R Aps |145753.0-763946 |CST: | 5.35 | | |V | | | | |K4III-M0III |00207 CoD | +030002 |S Aps |150924.5-720345 |RCB | 9.6 | 15.2 | |V | | | | |C(R3) | 00002| +030003 |T Aps |135551.2-774808 |M | 8.4 | 15.0 | |V |41096. | | 261.03 |43 |M3e |00001 00002| +030004 |U Aps |152801.0-755547 |LB | 11.0 | 11.6 | |p | | | | |C(Nb) |00016 CoD | +030005 |V Aps |150447.5-713623 |LB | 10.5 | 11.5 | |p | | | | |MB |02043 05232| +030006 |W Aps |171416.2-740855 |LB | 10.8 | 12.2 | |p | | | | |M6 |00252 GSC | +030007 |X Aps |140422.6-713426 |M | 14.0 |< 16.5 | |p |25670. | | 240. | | |00047 00022| +030008 |Y Aps |140605.5-722249 |M | 14.2 |< 16.5 | |p |26090. | | 247.5 | | |00047 00022| +030009 |Z Aps *|140654.8-712217 |UGZ | 10.7 | 12.7 | |V | | |( 19. :) | | |07031 00022| +030010 |RR Aps |140721.9-710249 |M | 13.4 | 16.5 : | |p |25720. | | 124.0 | | |00047 00022| +030011 |RS Aps |140845.6-722556 |RRAB | 14.5 | 16.0 | |p |25327.48 | | 0.5652 | | |00047 00022| +030012 |RT Aps *|140908.7-713629 |M | 12.6 |< 16.5 | |p |40353. | | 244.73 | | |00001 00022| +030013 |RU Aps |142204.2-713909 |SR | 14.5 | 15.3 | |p |25410. | | 163. | | |00047 00022| +030014 |RV Aps |142417.0-731727 |EA/DS | 10.6 | 15.2 | |p |25360.4 | | 34.074 | |A-F |00047 UCAC2| +030015 |RW Aps |143133.3-704643 |M | 13.8 |< 16.5 | |p |25355. | | 117.3 | | |00047 00022| +030016 |RX Aps |143147.6-704721 |M | 10.5 | 16.0 | |p |25450. | | 474. | |Me |00047 00022| +030017 |RY Aps |143308.9-715600 |M | 10.0 |< 16.0 | |p |25660. | | 383. | | |00047 00022| +030018 |RZ Aps |143314.8-715638 |M | 13.5 |< 16.5 | |p |25330. | | 222.7 | |Me |00047 00022| +030019 |SS Aps |143429.8-725545 |E/SD: | 12.6 | 14.0 | |p | | | | | |00047 00022| +030020 |ST Aps |143427.5-721040 |M | 13.0 |< 16.5 | |p |25390. | | 256.3 | | |00047 00022| +030021 |SU Aps |143808.5-704207 |S: | 14.7 | 15.4 | |p | | | | | |00047 00022| +030022 |SV Aps |143843.9-723139 |M | 10.0 | 16.0 | |p |25410. | | 303. | | |00047 00022| +030023 |SW Aps |143841.0-711845 |RR | 14.0 | 14.6 | |p | | | | | |00047 00022| +030024 |SX Aps |143858.6-713840 |S: | 13.5 | 14.5 | |p | | | | | |00047 00022| +030025 |SY Aps |143924.3-724936 |RR: | 12.2 | 13.6 | |p | | | | | |00047 00022| +030026 |SZ Aps |143911.9-713829 |EA/SD | 14.0 | 16.3 | |p |25330.55 | | 3.520 | | |00047 00022| +030027 |TT Aps |143932.4-713402 |RR: | 12.8 | 14.0 | |p | | | | | |00047 00022| +030028 |TU Aps |144019.3-704525 |S: | 11.0 | 12.2 | |p | | | | | |00047 00022| +030029 |TV Aps |144549.7-711740 |E: | 13.7 | 14.7 | |p | | | | | |00047 00022| +030030 |TW Aps |144623.3-720401 |RR | 14.6 | 15.7 | |p | | | | | |00047 00022| +030031 |TX Aps |144803.0-724738 |M | 13.0 |< 16.5 | |p |25655. | | 240. | | |00047 00022| +030032 |TY Aps *|144850.0-711942 |RRAB | 11.25 | 12.20 | |V |39726.275 | | 0.5016935 |32 |A8-F6 |05233 00022| +030033 |TZ Aps |144915.2-705817 |M | 13.5 |< 16.5 | |p |25740. | | 315.1 | | |00047 00022| +030034 |UU Aps |145040.0-724319 |E/SD: | 14.5 | 16.0 | |p | | | | | |00047 00022| +030035 |UV Aps |145051.9-710712 |RR | 15.1 | 15.9 | |p |25433.24 | | 0.4194 : | | |00047 00022| +030036 |UW Aps |145226.2-712142 |RR: | 14.4 | 16.0 | |p | | | | | |00047 00022| +030037 |UX Aps |145230.3-705443 |RR | 14.7 | 15.8 | |p |25327.52 | | 0.40075 | | |00047 00022| +030038 |UY Aps |145934.4-714754 |RRAB | 12.0 | 13.7 | |p |25326.54 | | 0.48252 | | |00047 00022| +030039 |UZ Aps |150141.1-715907 |SR | 12.1 | 13.9 | |p |25690. | | 88.3 | | |00047 00022| +030040 |VV Aps |150248.4-714814 |M | 12.4 |< 16.5 | |p |39355. | | 234.25 | |Me |00001 00022| +030041 |VW Aps |150251.4-705717 |RR: | 13.5 | 14.7 | |p | | | | | |00047 00022| +030042 |VX Aps |155956.3-751320 |RRAB | 11.5 | 12.6 | |p |34239.361 | | 0.484578 |35 |F9: |00080 02338| +030043 |VY Aps |160053.6-742853 |SRA | 11.0 | 14.52 | |B |27933. | | 152. | |S |00016 CoD | +030044 |VZ Aps |161614.5-740225 |M | 8.2 | 17.5 | |p |36845. | | 385. | |M5e |00001 04001| +030045 |WW Aps |163131.2-745944 |M | 9.0 | 16.8 | |p |27946. | | 267. | |M4(Ib)e |00016 GSC | +030046 |WX Aps |141532.6-741536 |EA/SD: | 11.5 |< 13. | |p | | | | | |00085 CPD | +030047 |WY Aps |175223.4-771332 |M | 12.5 | 16. | |p | | | | | |00085 02386| +030048 |WZ Aps |151631.1-770635 |M: | 13. | 16. | |p | | | 300. : | | |02554 USNO | +030049 |XX Aps |172802.1-692022 |M | 10.1 | 13.2 | |V |53669. | | 159.54 | |Me |80002 08661| +030050 |XY Aps |181105.8-721820 |M | 13.5 | 18.5 | |p | | | | | |02554 GSC | +030051 |XZ Aps |145205.4-794047 |RRAB | 10.8 | 12.8 | |p |28715.330 | | 0.587434 |12 : | |06960 05389| +030052 |YY Aps *|150234.3-724511 |EA | 12. | 12.5 | |p | | | | | |06561 06561| +030053 |YZ Aps |151000.7-782303 |RRAB | 11.4 | 13.1 | |p |36809.410 | | 0.489 |15 | |06960 04001| +030054 |ZZ Aps |151701.3-775559 |RRC | 13.0 | 13.4 | |p |36694.43 | | 0.3774 |35 | |06960 04001| +030055 |AA Aps |151811.9-773623 |RRAB | 13.7 | 14.5 | |p |36728.525 | | 0.5417 |25 | |06960 04001| +030056 |AB Aps |151938.4-784038 |RRAB | 12.5 | 13.8 | |p |36728.380 | | 0.48185 |12 | |06960 04001| +030057 |AC Aps |152404.1-790631 |M | 11.5 | 15.7 | |p |36783. | | | | |05990 04001| +030058 |AD Aps |152635.1-783047 |RRAB | 13.5 | 14.9 | |p |36725.450 | | 0.5503 |10 | |06960 04001| +030059 |AE Aps |152632.2-770353 |RRAB | 13.8 | 15.0 | |p |36732.300 | | 0.44677 |18 | |06960 04001| +030060 |AF Aps *|153117.0-782043 |EW/KE | 13.4 | 14.1 | 13.9 |p |36690.399 | | 0.7975 | | |06960 04001| +030061 |AG Aps |153021.9-754439 |UG | 14.3 |< 16.0 | |p |36811. | | | | |06960 04001| +030062 |AH Aps |153528.9-802100 |RRAB | 14.7 | 15.8 | |p |36720.440 | | 0.4887 |18 | |06960 04001| +030063 |AI Aps |153609.3-750423 |RRAB | 14.3 | 15.7 | |p |36729.430 | | 0.55415 |10 | |06960 04001| +030064 |AK Aps |153603.1-742302 |RRAB | 13.7 | 15.1 | |p |36728.480 | | 0.66315 |15 | |06960 04001| +030065 |AL Aps |153738.4-754448 |EA | 12.7 | 13.4 | |p |36733.517 | | | | |06960 04001| +030066 |AM Aps |153953.7-742129 |RRAB | 14.7 | 15.7 | |p |36690.415 | | 0.606 |15 | |06960 04001| +030067 |AN Aps *|154116.3-735744 |EB/KE | 12.4 | 13.1 | 12.8 |p |36761.270 | | 1.0452 | | |06960 04001| +030068 |AO Aps |154236.3-730356 |M: | 14.1 |< 15.5 | |p |36727. | | | | |06960 04001| +030069 |AP Aps *|154419.4-761516 |EB/DM | 14.4 | 15.5 | 15.5 |p |36720.50 | | 5.378 | | |06960 04001| +030070 |AQ Aps |154434.5-734145 |SR | 13.3 | 14.1 | |p |36770. | | 70. : | | |06960 04001| +030071 |AR Aps |154418.8-722518 |RRAB | 13.3 | 14.4 | |p |36787.300 | | 0.624 |13 | |06960 04001| +030072 |AS Aps *|154643.2-732717 |EW/KW | 13.4 | 13.8 | 13.8 |p |36690.400 | | 0.32310 | | |06960 04001| +030073 |AT Aps |155005.3-774435 |RRAB | 13.3 | 14.4 | |p |36720.370 | | 0.49385 |10 | |06960 04001| +030074 |AU Aps |154915.0-762725 |RRAB | 13.1 | 14.0 | |p |36694.433 | | 0.5673 |12 | |06960 04001| +030075 |AV Aps *|154849.6-743033 |EB/SD | 13.8 | 14.4 |( 0.05 )|p |36690.405 | | 0.7095 | | |06960 04001| +030076 |AW Aps |154832.2-732816 |M | 14.2 |< 16.5 | |p | | | | | |04001 04001| +030077 |AX Aps |155509.2-740223 |RRAB | 14.6 | 15.7 | |p |36694.380 | | 0.4855 |15 | |06960 04001| +030078 |AY Aps |155815.6-773838 |E | 12.4 | 13.2 | |p |36811.353 | | | | |06960 04001| +030079 |AZ Aps |155634.9-744245 |RRAB | 13.8 | 15.8 | |p |36694.390 | | 0.599 |10 | |06960 04001| +030080 |BB Aps |155840.6-775216 |RR: | 12.3 | 13.2 | |p |36810.25 | | | | |06960 04001| +030081 |BC Aps |155925.0-762943 |RRAB | 13.1 | 13.9 | |p |36720.410 | | 0.5727 |18 | |06960 04001| +030082 |BD Aps |155832.7-733654 |E | 13.2 | 14.2 | |p |36810.335 | | | | |06960 04001| +030083 |BE Aps |160607.1-793455 |M | 13.9 |< 15.7 | |p |36825. :| | | | |06960 04001| +030084 |BF Aps |160915.5-810145 |RRAB | 14.0 | 15.4 | |p |36728.415 | | 0.5544 |10 | |06960 04001| +030085 |BG Aps |160954.1-783326 |RRAB | 14.2 | 15.3 | |p |36732.325 | | 0.5336 |12 | |06960 04001| +030086 |BH Aps |160840.2-765028 |EA/SD | 10.8 | 13.4 | |p |36728.435 | | 3.652 |10 :*| |06960 04001| +030087 |BI Aps |160933.8-741440 |RRAB | 13.8 | 14.8 | |p |36690.385 | | 0.5787 |12 | |06960 04001| +030088 |BK Aps |161253.6-760347 |RRAB | 14.1 | 15.2 | |p |36733.500 | | 0.608 |20 | |06960 04001| +030089 |BL Aps |161613.9-784427 |RRC | 15.1 | 15.6 | |p |36690.400 | | 0.2719 |25 | |06960 04001| +030090 |BM Aps |161315.2-732618 |M: | 12.2 |< 15.5 | |p |36760. | | | | |06960 04001| +030091 |BN Aps |161813.7-741245 |RRAB | 13.8 | 15.2 | |p |36694.410 | | 0.520 |08 | |06960 04001| +030092 |BO Aps |161755.5-723731 |E/SD: | 12.2 | 14.0 | |p |36811.238 | | | | |06960 04001| +030093 |BP Aps |162105.0-770141 |RRAB | 13.0 | 14.2 | |p |36775.218 | | 0.452 |15 | |06960 04001| +030094 |BQ Aps |162704.6-811007 |RRAB | 13.0 | 14.3 | |p |36728.384 | | 0.4563 |15 | |06960 04001| +030095 |BR Aps |162346.7-773512 |RRAB | 14.8 | 15.5 | |p |36725.450 | | 0.810 |18 | |06960 04001| +030096 |BS Aps |162051.5-714016 |RRAB | 11.8 | 12.8 | |p |37419.947 | | 0.5825555 |15 | |06834 06561| +030097 |BT Aps |162227.3-740039 |M | 13.5 |< 15.8 | |p |36830. :| | 150. : | | |06960 04001| +030098 |BU Aps |162911.6-810659 |RRAB | 14.5 | 15.3 | |p |36728.330 | | 0.634 |13 | |06960 04001| +030099 |BV Aps |162808.3-795742 |E | 12.1 | 12.5 | |p |36809.413 | | | | |06960 04001| +030100 |BW Aps |162414.5-741631 |RRAB | 13.0 | 14.5 | |p |36720.430 | | 0.5928 |15 | |06960 04001| +030101 |BX Aps |162634.5-755916 |RRC | 14.0 | 15.0 | |p |36694.430 | | 0.328 |20 | |06960 04001| +030102 |BY Aps |162658.1-751830 |L | 13.6 |< 15.6 | |p | | | | | |06960 04001| +030103 |BZ Aps |162829.4-772550 |SRA | 13.2 | 15.3 | |p |36840. :| | 180. : | | |06960 04001| +030104 |CC Aps |163118.9-795129 |M | 12.6 |< 15.5 | |p |36733. | | | | |06960 04001| +030105 |CD Aps |163529.9-804542 |EA/SD: | 11.3 | 11.8 | |p |28693.550 | | 0.893660 | | |05235 04001| +030106 |CE Aps *|162920.8-712741 |M |<13.5 |< 15.5 | |p | | | | | |04489 04489| +030107 |CF Aps |163541.9-723838 |M | 11.6 |< 16.1 | |P |38769. | | 233.9 | | |08661 08661| +030108 |CG Aps |164101.6-791136 |M | 13.0 | 17.0 | |p |36710. | | | | |05990 04001| +030109 |CH Aps |164356.6-805617 |RRAB | 13.2 | 14.1 | |p |36694.400 | | 0.5097 |20 | |06960 04001| +030110 |CI Aps |164503.5-803245 |RRAB | 14.5 | 15.3 | |p |36728.320 | | 0.5087 |10 | |06960 04001| +030111 |CK Aps |164206.4-741302 |RRAB | 12.4 | 13.2 | |p |36690.450 | | 0.6235 |25 | |06960 04001| +030112 |CL Aps |164231.9-743541 |RRAB | 13.4 | 14.6 | |p |36728.400 | | 0.4539 |15 | |06960 04001| +030113 |CM Aps |164554.3-775550 |RRAB | 15.2 | 15.9 | |p |36728.350 | | 0.5108 |15 | |06960 04001| +030114 |CN Aps |164456.3-760334 |E | 14.7 | 15.5 | |p |36780.219 | | | | |06960 04001| +030115 |CO Aps |164944.0-753636 |RRAB | 14.2 | 15.2 | |p |36720.405 | | 0.5945 |20 | |06960 04001| +030116 |CP Aps |165649.3-815019 |RRAB | 13.5 | 15.0 | |p |36690.360 | | 0.53065 |25 | |06960 04001| +030117 |CQ Aps |164928.7-720335 |M | 11.3 |< 14.5 | |V |54613. | | 249. | |Me |00001 08661| +030118 |CR Aps |165906.3-810751 |EA/SD: | 13.4 | 14.4 | |p |36730.450 | | 2.176 |15 *| |06960 04001| +030119 |CS Aps |165829.5-795955 |RRAB | 14.6 | 15.5 | |p |36728.420 | | 0.5119 |12 | |06960 04001| +030120 |CT Aps |170141.6-812119 |RRAB | 13.2 | 14.3 | |p |36690.410 | | 0.6435 |12 | |06960 04001| +030121 |CU Aps |170328.3-804029 |RRAB | 13.2 | 14.0 | |p |36725.390 | | 0.5376 |15 | |06960 04001| +030122 |CV Aps |165918.8-750203 |M | 12.5 |< 17. | |p | | | | | |04001 04001| +030123 |CW Aps |170109.8-755651 |RRAB | 13.3 | 14.6 | |p |36694.400 | | 0.6222 |15 | |06960 04001| +030124 |CX Aps |170542.9-793812 |RRAB | 14.5 | 15.8 | |p |36746.370 | | 0.4818 |15 | |06960 04001| +030125 |CY Aps *|170303.6-763351 |EA/SD | 12.9 | 14.2 | 13.0 |p |36746.350 | | 3.825 | | |06960 04001| +030126 |CZ Aps |170400.1-755253 |M | 13.3 |< 15.5 | |p |36825. :| | | | |06960 04001| +030127 |DD Aps |170353.8-743649 |RRAB | 12.3 | 13.1 | |p |36725.320 | | 0.6482 |20 | |06960 04001| +030128 |DE Aps |170742.3-760950 |RRC | 14.0 | 14.6 | |p |36725.440 | | 0.4044 |50 | |06960 04001| +030129 |DF Aps |170823.0-752814 |RRAB | 13.8 | 14.4 | |p |36729.420 | | 0.5454 |15 | |06960 04001| +030130 |DG Aps |171052.9-782618 |RRAB | 13.5 | 14.2 | |p |36694.440 | | 0.4255 |18 | |06960 04001| +030131 |DH Aps |170913.5-733847 |M | 13. |< 15. | |p | | | | | |02554 02834| +030132 |DI Aps |170948.7-732541 |RRAB | 12.5 | 13.4 | |p |36050.237 | | 0.519236 |13 | |00001 04489| +030133 |DK Aps |171837.9-814317 |RR | 14.8 | 15.6 | |p | | | | | |06960 04001| +030134 |DL Aps |171645.3-791001 |RRAB | 14.5 | 15.5 | |p |36728.405 | | 0.5381 |13 | |06960 04001| +030135 |DM Aps |171431.6-733027 |E | 12.7 | 13.4 | |p |36733.517 | | | | |06960 04001| +030136 |DN Aps |171414.7-721443 |M | 12.0 |< 14.8 | |V |53628. | | 210. | | |00001 04489| +030137 |DO Aps |171458.5-734347 |RRAB | 13.5 | 15.0 | |p |36729.300 | | 0.5062 |13 | |06960 04001| +030138 |DP Aps |171739.0-742707 |RRAB | 15.0 | 15.8 | |p |36690.400 | | 0.6109 |15 | |06960 04001| +030139 |DQ Aps |172002.1-762612 |RRAB | 15.0 | 15.8 | |p |36729.360 | | 0.5696 |15 | |06960 04001| +030140 |DR Aps |172508.6-803646 |RRAB | 13.3 | 14.6 | |p |36690.390 | | 0.5643 |13 | |06960 04001| +030141 |DS Aps |171839.8-711638 |M | 11.7 | 15.5 | |p |36785. | | 267. | |Me |04489 04489| +030142 |DT Aps |172247.7-750956 |UGSS | 14.4 |< 15.8 | |p | | |( 30. :) | | |06960 04001| +030143 |DU Aps |172546.0-782326 |EA/SD: | 11.3 | 12.0 | |p |28687.375 | | 3.087910 |10 | |05235 04001| +030144 |DV Aps |173039.6-804817 |M | 14.2 |< 15.6 | |p |36758. | | | | |06960 04001| +030145 |DW Aps |172330.0-675545 |EA/SD: | 7.9 | 9.1 | |p |39209.502 | | 2.312950 |14 |B6III |05236 CoD | +030146 |DX Aps |172732.9-763847 |M | 13.9 |< 15.7 | |p |36822. | | | | |06960 04001| +030147 |DY Aps |173027.9-773321 |RRAB | 13.8 | 14.8 | |p |36729.320 | | 0.6224 |10 | |06960 04001| +030148 |DZ Aps |172857.4-731123 |RRAB | 14.4 | 15.4 | |p |37419.714 | | 0.5520642 |14 | |06834 04001| +030149 |EE Aps |173515.9-804906 |RRAB | 13.6 | 15.0 | |p |36778.440 | | 0.4988 |08 | |06960 04001| +030150 |EF Aps *|173117.1-743824 |EA/DS | 12.3 | 13.3 | 12.6 |p |36760.20 | | 10.06 |14 *| |06960 04001| +030151 |EG Aps |173510.0-791951 |RRAB | 14.8 | 15.6 | |p |36725.470 | | 0.5289 |15 | |06960 04001| +030152 |EH Aps |173313.9-755805 |RRAB | 15.0 | 15.8 | |p |36728.420 | | 0.4684 |12 | |06960 04001| +030153 |EI Aps |173251.8-721925 |RRAB | 14.5 | 15.4 | |p |36568.238 | | 0.524278 |10 | |04489 04489| +030154 |EK Aps |173154.0-674252 |UG: | 15.2 |< 15.5 | |p | | |( 25. :) | | |04489 04489| +030155 |EL Aps |173541.3-761316 |RRAB | 12.6 | 13.2 | |p |27990.449 | | 0.5797269 |16 | |04183 02383| +030156 |EM Aps |173525.3-750451 |RRAB | 14.4 | 15.3 | |p |36690.350 | | 0.6028 |15 | |06960 04001| +030157 |EN Aps |173518.8-744211 |RRAB | 14.7 | 15.5 | |p |36728.430 | | 0.4500 |15 | |06960 04001| +030158 |EO Aps |173824.0-742758 |M | 12.5 |< 15.5 | |p |36840. :| | | | |06960 04001| +030159 |EP Aps |174431.6-801532 |M | 12.0 | 15.7 | |p |36728. | | | | |05990 04001| +030160 |EQ Aps |174314.4-790709 |RRAB | 14.8 | 15.5 | |p |36720.390 | | 0.4665 |18 | |06960 04001| +030161 |ER Aps |174359.1-761441 |RRAB | 13.0 | 13.8 | |p |36720.420 | | 0.4311 |18 | |06960 04001| +030162 |ES Aps |174736.4-800513 |E | 13.9 | 14.4 | |p |36810.335 | | | | |06960 04001| +030163 |ET Aps |174430.8-741931 |E | 11.5 | 12.1 | |p |36809.244 | | | | |06960 04001| +030164 |EU Aps |174455.7-745207 |RRAB | 12.7 | 13.9 | |p |36694.370 | | 0.5602 |20 | |06960 04001| +030165 |EV Aps |175152.1-774054 |RRC | 12.1 | 12.5 | |p |36725.390 | | 0.2834 |25 | |06960 04001| +030166 |EW Aps |175200.1-765126 |M | 12.5 | 17.5 | |p |36808. | | | | |05990 04001| +030167 |EX Aps |175145.0-692005 |RRAB | 11.5 | 12.8 | |p |27933.542 | | 0.4717993 |10 | |04183 02383| +030168 |EY Aps |181528.1-784016 |RRAB | 13.7 | 14.9 | |p |36729.360 | | 0.6073 |12 | |06960 04001| +030169 |EZ Aps |181920.8-793015 |RRAB | 14.8 | 15.6 | |p |36720.400 | | 0.524 |12 | |06960 04001| +030170 |FF Aps |143816.9-714750 |EA | 14.5 | 15.5 | |p |38551.44 | | | | |03776 03776| +030171 |FG Aps |150642.3-721322 |RR | 15. | 16. | |p | | | | | |03776 03776| +030172 |FH Aps |153139.5-724018 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +030173 |FI Aps |153258.5-731344 |SR: | 13.5 | 16. | |p | | | | | |03776 03776| +030174 |FK Aps |153713.4-721123 |RR | 15. | 16. | |p | | | | | |03776 03776| +030175 |FL Aps |154248.5-710709 |E | 15. | 16. | |p | | | | | |03776 03776| +030176 |FM Aps |155110.2-722616 |SR: | 15. | 17. | |p | | | | | |03776 03776| +030177 |FN Aps |155133.3-722222 |EA/SD | 11.0 | 12.4 | |p |16589.757 | | 5.73075 | | |08040 03776| +030178 |FO Aps |170125.2-714036 |RRAB | 14.3 | 15.2 | |p |36605.697 | | 0.679303 |13 | |03921 03921| +030179 |FP Aps |170144.4-720552 |RRAB | 14.2 | 15.1 | |p |36605.532 | | 0.5122420 |17 | |03921 03921| +030180 |FQ Aps |170232.4-714449 |RRAB | 13.9 | 15.3 | |p |36605.496 | | 0.5454634 |18 | |03921 03921| +030181 |FR Aps |171828.4-682821 |RRAB | 14.1 | 15.7 | |p |36605.387 | | 0.4225068 |14 | |03921 03921| +030182 |FS Aps |142928.4-703426 |SR: | 14.5 | 15.5 | |p | | | | | |03776 03776| +030183 |FT Aps |143529.2-721905 |SR: | 15. | 16.5 | |p | | | | | |03776 03776| +030184 |FU Aps |154924.9-711909 |SR: | 14.5 | 16. | |p | | | | | |03776 03776| +030185 |FV Aps |163740.9-750825 |M | 12.8 |< 17. | |p |36795. | | | | |05990 04001| +030186 |FW Aps |165427.1-751112 |M | 12.9 |< 17. | |p |36690. :| | | | |05990 04001| +030187 |FX Aps |170315.9-804245 |M: | 16. |< 17.5 | |p | | | | | |04001 04001| +030188 |FY Aps *|171420.2-700048 |EB/DM | 10.9 | 11.7 | |p |28745.125 | | 5.499350 | | |05255 05255| +030189 |FZ Aps |142824.8-825008 |EA/SD: | 12.5 | 13.2 | |p |38884.350 | | 2.89065 | | |05829 05829| +030190 |GG Aps |142611.7-791253 |M: | 12.2 | 16.8 | |p | | | | | |04618 05829| +030191 |GH Aps |170156.4-713044 |SRB | 9.5 | 11.3 | |V | | | 137.48 | |Me |80002 05834| +030192 |GI Aps |150108.3-784556 |L | 12.8 | 14.9 | |p | | | | | |06960 04001| +030193 |GK Aps *|151404.7-793120 |EW:/KW: | 13.4 | 13.9 | 13.9 |p |36720.411 | | 0.29615 | | |06960 04001| +030194 |GL Aps |151736.3-791237 |RRAB | 13.9 | 15.6 | |p |36730.347 | | 0.53325 |13 | |06960 04001| +030195 |GM Aps |151952.0-791906 |L | 13.2 | 13.9 | |p |36780. | | | | |06960 04001| +030196 |GN Aps |152312.4-785005 |L | 13.8 | 14.8 | |p | | | | | |06960 04001| +030197 |GO Aps *|153013.9-765815 |EB:/KE: | 14.6 | 15.4 | 14.8 |p |36690.42 | | 0.4991 | | |06960 04001| +030198 |GP Aps |153445.5-773448 |RRAB | 14.4 | 15.7 | |p |36759.290 | | 0.5032 |23 | |06960 04001| +030199 |GQ Aps *|153619.1-781347 |EW/KE | 14.5 | 15.0 | 14.8 |p |36729.450 | | 0.6353 | | |06960 04001| +030200 |GR Aps |154015.4-763429 |L | 12.5 | 12.9 | |p | | | | | |06960 04001| +030201 |GS Aps |153922.6-731033 |SRA: | 13.3 | 15.0 | |p |36795. | | | | |06960 04001| +030202 |GT Aps |154149.6-763928 |L | 12.6 | 13.0 | |p | | | | | |06960 04001| +030203 |GU Aps *|154642.4-801933 |EW/KW | 14.0 | 14.7 | 14.5 |p |36694.433 | | 0.43652 | | |06960 04001| +030204 |GV Aps |154436.8-735515 |RRAB | 13.9 | 15.1 | |p |36694.410 | | 0.49025 |20 | |06960 04001| +030205 |GW Aps |155146.0-801015 |SR: | 12.9 | 14.1 | |p |36810. | | | | |06960 04001| +030206 |GX Aps *|154838.0-750443 |SR | 13.9 | 14.4 | |p |36815. | | 60. : | | |06960 04001| +030207 |GY Aps *|155132.1-733352 |EW/KW | 13.9 | 14.3 | 14.2 |p |36694.433 | | 0.3752 | | |06960 04001| +030208 |GZ Aps |155436.4-760639 |SR | 13.7 | 14.4 | |p |36745. | | 65. | | |06960 04001| +030209 |HH Aps |155909.4-744736 |E | 14.3 | 14.8 | |p |36812.270 | | | | |06960 04001| +030210 |HI Aps |160025.8-734735 |L | 13.3 | 13.9 | |p | | | | | |06960 04001| +030211 |HK Aps |160340.9-734652 |L | 12.8 | 13.3 | |p | | | | | |06960 04001| +030212 |HL Aps *|160752.4-794933 |EB/KE | 12.3 | 12.9 | 12.6 |p |36728.405 | | 0.956 | | |06960 04001| +030213 |HM Aps |160831.6-735226 |SR | 12.2 | 12.7 | |p |36785. | | 65. : | | |06960 04001| +030214 |HN Aps |160914.2-750213 |L | 14.8 |< 15.5 | |p | | | | | |06960 04001| +030215 |HO Aps *|161209.2-765213 |EW/KE | 13.2 | 13.7 | 13.7 |p |36728.405 | | 0.5841 | | |06960 04001| +030216 |HP Aps |161932.6-805755 |L | 14.5 | 16.0 : | |p | | | | | |06960 04001| +030217 |HQ Aps |161345.3-734620 |L | 14.6 | 15.5 | |p | | | | | |06960 04001| +030218 |HR Aps |161450.7-735030 |E/SD: | 13.2 | 15.6 | |p |36811.377 | | | | |06960 04001| +030219 |HS Aps |161528.0-735423 |L | 14.4 | 15.5 | |p |36700. | | | | |06960 04001| +030220 |HT Aps *|162006.5-785509 |EB/KW: | 14.0 | 14.8 | 14.3 |p |36728.426 | | 0.4000 | | |06960 04001| +030221 |HU Aps |161747.8-752945 |E | 13.7 | 14.7 | |p |36690.40 | | | | |06960 04001| +030222 |HV Aps *|162514.6-791458 |SR | 13.2 | 13.7 | |p |36745. | | 65. : | | |06960 04001| +030223 |HW Aps |162326.5-742324 |L | 13.2 | 14.2 | |p | | | | | |06960 04001| +030224 |HX Aps *|162448.8-751833 |EB/KE | 14.2 | 14.9 | 14.4 |p |36745.365 | | 1.0312 | | |06960 04001| +030225 |HY Aps |162513.5-733720 |L | 10.8 | 11.2 | |p | | | | | |06960 04001| +030226 |HZ Aps |162702.1-761220 |L | 13.4 | 14.0 | |p |36690. | | | | |06960 04001| +030227 |II Aps *|162741.9-745044 |EW/KE | 11.2 | 11.7 | 11.6 |p |36694.450 | | 0.8424 | | |06960 04001| +030228 |IK Aps |162733.5-725257 |L | 12.2 | 14.0 | |p | | | | | |06960 04001| +030229 |IL Aps *|163000.5-762830 |L | 12.6 | 13.3 | |p |36730. | | | | |06960 04001| +030230 |IM Aps |163320.2-761738 |RRAB | 12.8 | 13.7 | |p |36720.385 | | 0.569 |12 | |06960 04001| +030231 |IN Aps |163433.9-762209 |RRAB | 14.9 | 16.0 | |p |36694.370 | | 0.5183 |12 | |06960 04001| +030232 |IO Aps *|163527.7-743318 |EA/SD | 12.3 | 13.3 | 12.4 |p |36720.36 | | 7.995 | *| |06960 04001| +030233 |IP Aps |164000.5-784246 |RRAB | 14.0 | 15.3 | |p |36729.290 | | 0.5022 |15 : | |06960 04001| +030234 |IQ Aps |163914.8-774453 |E | 14.0 | 14.8 | |p |36728.426 | | | | |06960 04001| +030235 |IR Aps *|164243.3-765140 |EW/KW | 13.4 | 13.8 | 13.8 |p |36690.370 | | 0.37142 | | |06960 04001| +030236 |IS Aps |164627.8-771444 |RRC | 13.6 | 14.1 | |p |36690.380 | | 0.2975 |40 | |06960 04001| +030237 |IT Aps |164849.5-785458 |L | 11.3 | 12.0 | |p |36730. | | | | |06960 04001| +030238 |IU Aps *|165338.5-805554 |EW/KW | 14.2 | 14.6 | 14.6 |p |36694.410 | | 0.3046 | | |06960 04001| +030239 |IV Aps |165331.6-792534 |E: | 14.3 | 14.7 | |p |36778.231 | | | | |06960 04001| +030240 |IW Aps |165213.2-755738 |SR | 11.6 | 12.0 | |p |36735. | | 30. : | | |06960 04001| +030241 |IX Aps |165618.0-780033 |L | 13.8 | 14.2 | |p | | | | | |06960 04001| +030242 |IY Aps *|165411.0-740249 |EW/KW | 12.7 | 13.0 | 12.9 |p |36720.390 | | 0.3422 | | |06960 04001| +030243 |IZ Aps |165639.7-740805 |RRAB | 13.7 | 14.7 | |p |36725.440 | | 0.9775 |20 | |06960 04001| +030244 |KK Aps |170035.2-755606 |RRC | 14.0 | 14.6 | |p |36728.370 | | 0.3559 |25 | |06960 04001| +030245 |KL Aps |170324.4-734856 |SR | 13.5 | 14.0 | |p |36730. | | 40. : | | |06960 04001| +030246 |KM Aps |170729.5-755051 |L | 11.0 | 11.5 | |p | | | | | |06960 04001| +030247 |KN Aps *|170716.4-741117 |EA/SD: | 13.4 | 14.0 | |p |36732.390 | | 2.851 |10 : | |06960 04001| +030248 |KO Aps |171310.4-781839 |RRAB | 14.8 | 15.5 | |p |36733.490 | | 0.49715 |18 | |06960 04001| +030249 |KP Aps |171022.4-732605 |SR | 12.6 | 13.4 | |p |36753. | | 40. : | | |06960 04001| +030250 |KQ Aps |171117.7-742954 |L | 13.0 | 13.5 | |p | | | | | |06960 04001| +030251 |KR Aps *|171302.2-740757 |L: | 13.0 | 13.4 | |p | | | | | |06960 04001| +030252 |KS Aps |171732.9-783728 |RRAB | 14.7 | 15.8 : | |p |36720.410 | | 0.49655 |08 | |06960 04001| +030253 |KT Aps *|171604.4-752924 |EW/KW | 15.0 | 15.3 | 15.2 |p |36720.430 | | 0.3742 : | | |06960 04001| +030254 |KU Aps |172151.1-810036 |SRA | 13.5 | 15.1 | |p |36795. | | 125. : | | |06960 04001| +030255 |KV Aps *|171745.4-762146 |EB/SD | 13.4 | 14.3 | 13.6 |p |36725.400 | | 0.7384 | | |06960 04001| +030256 |KW Aps |173038.4-765502 |RRAB | 14.2 | 15.7 | |p |36720.350 | | 0.4958 |10 | |06960 04001| +030257 |KX Aps |172816.3-740327 |SRA | 14.0 |< 15.8 | |p |36815. | | 150. : | | |06960 04001| +030258 |KY Aps |173630.0-765338 |RR | 15.3 |< 15.6 | |p |36812.381 | | | | |06960 04001| +030259 |KZ Aps *|173640.1-742747 |SR: | 14.2 | 15.2 | |p |36690. | | | | |06960 04001| +030260 |LL Aps |173708.6-741739 |RRAB | 14.4 | 15.5 | |p |36729.240 | | 0.6209 |15 | |06960 04001| +030261 |LM Aps *|174304.3-774647 |L: | 14.0 | 15.0 | |p | | | | | |06960 04001| +030262 |LN Aps *|174356.1-782845 |EW/KW | 12.8 | 13.3 | 13.3 |p |36720.400 | | 0.474 | | |06960 04001| +030263 |LO Aps *|174710.2-773720 |EB/KE | 11.3 | 11.8 | 11.5 |p |36729.330 | | 0.7988 | | |06960 04001| +030264 |LP Aps |175406.5-763819 |L | 13.7 | 14.5 | |p | | | | | |06960 04001| +030265 |LQ Aps |181447.6-790455 |RRAB | 15.2 | 15.9 | |p |36690.400 | | 0.5447 |10 : | |06960 04001| +030266 |LR Aps |164645.7-720423 |RRAB | 13.5 | 15.5 | |p |37295.980 | | 0.4757793 |13 | |06834 06834| +030267 |LS Aps |172219.0-710221 |RRAB | 14.1 | 15.3 | |p |37419.638 | | 0.4709907 |16 | |06834 06834| +030268 |LT Aps |173212.8-720840 |RRAB | 13.8 | 15.8 | |p |37419.946 | | 0.5633189 |19 : | |06834 06834| +030269 |LU Aps |174310.6-702346 |RRAB | 12.7 | 13.3 | |p |37295.613 | | 0.7550246 |20 | |06834 06834| +030270 |LV Aps |155501.7-740229 |SR | 13.0 | 14.8 | |p |36690. | | 150. : |16 | |06960 04001| +030271 |LW Aps |163635.5-730701 |SRB | 13.7 | 14.1 | |p | | | 60. : | | |06960 04001| +030272 |LX Aps |144545.6-705601 |RR: | 14.5 | 16. | |p | | | | | |03776 03776| +030273 |LY Aps |151940.2-711259 |LB | 12. | 12.5 | |p | | | | |M4 |00085 CPD | +030274 |LZ Aps |152703.3-714816 |RR: | 15. | 16. | |p | | | | | |03776 03776| +030275 |MM Aps |155807.2-721848 |M: | 12. | 15.3 | |p | | | | | |04453 05502| +030276 |MN Aps |161816.0-813111 |E: | 14.0 | 14.4 | |p |36836.26 | | | | |06960 04001| +030277 |MO Aps |162336.1-801507 |L | 12.5 | 13. | |p | | | | | |02554 02834| +030278 |MP Aps |164316.8-771422 |EW: | 13.0 | 13.3 | |p |36804.233 | | | | |06960 04001| +030279 |MQ Aps |170732.2-744027 |RR: | 14.6 | 14.9 | |p | | | | | |06960 04001| +030280 |MR Aps |170757.5-734335 |E | 10. | 11. | |p | | | | | |00085 02834| +030281 |MS Aps |171425.2-763324 |M: | 12.5 |< 13.5 | |p | | | | | |00085 02382| +030282 |MT Aps |172309.1-793150 |RR: | 13.6 | 14.1 | |p |36836.240 | | | | |06960 04001| +030283 |MU Aps |173112.1-733446 |E: | 14.8 | 15.5 | |p |36783.306 | | | | |06960 04001| +030284 |MV Aps |175400.0-733914 |LB | 13. | 14. | |p | | | | | |02554 04208| +030285 |MW Aps |152151.8-743350 |M | 11.0 | 16.7 | |p | | | | | |04453 06031| +030286 |MX Aps |173819.2-750810 |IS | 13.4 | 13.8 | |p | | | | | |06960 04001| +030287 |MY Aps *|143307.2-812014 |ZZA | 13.75 |( 0.05 : )| |V | | | | |DA |08310 06493| +030288 |MZ Aps |171009.3-722739 |M | 9.7 |< 14.0 | |V |52713. | | 392. | | |00001 08661| +030289 |NN Aps |153127.1-710344 |ACV | 6.86 | 6.92 | |V | | | | | |71133 CPD | +030290 |NO Aps |173127.5-805133 |SR | 5.71 | 5.95 | |V | | | | | |71030 CPD | +030291 |NP Aps |141310.9-732535 |LB | 8.27 | 8.66 | |Hp| | | | | |HIP HIP | +030292 |NQ Aps |141743.3-760518 |SRB | 7.22 | 7.35 | |Hp| | | | | |HIP HIP | +030293 |NR Aps |141855.8-712347 |LB: | 7.86 | 7.97 | |Hp| | | | | |HIP HIP | +030294 |NS Aps |142554.6-782728 |LB | 7.84 | 8.23 | |Hp| | | | | |HIP HIP | +030295 |NT Aps |144242.6-741842 |EW | 8.40 | 8.87 | |Hp| | | | | |HIP HIP | +030296 |NU Aps |145308.3-824057 |LB: | 8.56 | 8.71 | |Hp| | | | | |HIP HIP | +030297 |NV Aps |145251.2-713751 |LB: | 8.90 | 9.03 | |Hp| | | | | |HIP HIP | +030298 |NW Aps |145538.5-794821 |EB | 9.23 | 9.51 | |Hp| | | | | |HIP HIP | +030299 |NX Aps |145641.8-751904 |I: | 11.24 | 11.66 | |Hp| | | | | |HIP HIP | +030300 |NY Aps |151223.4-751516 |BY: | 9.50 | 9.61 | |Hp| | | | | |HIP HIP | +030301 |NZ Aps |151538.2-722355 |LB | 7.94 | 8.08 | |Hp| | | | | |HIP HIP | +030302 |OO Aps |151929.1-714731 |LB | 6.58 | 6.68 | |Hp| | | | | |HIP HIP | +030303 |OP Aps |152432.5-802626 |DSCTC | 8.15 | 8.23 | |Hp| | | | | |HIP HIP | +030304 |OQ Aps |155746.8-813130 |LB | 8.58 | 8.75 | |Hp| | | | | |HIP HIP | +030305 |OR Aps |161632.3-780800 |LPB: | 9.11 | 9.22 | |Hp| | | | | |HIP HIP | +030306 |OS Aps |163800.7-705303 |LB | 8.93 | 9.43 | |Hp| | | | | |HIP HIP | +030307 |OT Aps |163909.3-752919 |EA | 7.98 | 8.34 | |Hp| | | | | |HIP HIP | +030308 |OU Aps |164148.4-732558 |ACV: | 8.60 | 8.69 | |Hp| | | | | |HIP HIP | +030309 |OV Aps |165727.9-762506 |ACV: | 8.14 | 8.19 | |Hp| | | | | |HIP HIP | +030310 |OW Aps |170951.6-821907 |LPB | 7.14 | 7.19 | |Hp| | | | | |HIP HIP | +030311 |OX Aps |171051.2-734049 |LB | 8.24 | 8.52 | |Hp| | | | | |HIP HIP | +030312 |OY Aps |173054.8-813642 |LB | 8.01 | 8.43 | |Hp| | | | | |HIP HIP | +030313 |OZ Aps |173236.0-680404 |EA | 8.59 | 8.67 | |Hp| | | | | |HIP HIP | +030314 |PP Aps |174304.7-705222 |EA | 9.65 | 10.02 | |Hp| | | | | |HIP HIP | +030315 |PQ Aps |145909.3-821112 |RRC | 14.44 | 15.08 | |B | | | | | |75012 GSC | +030316 |PR Aps |144417.2-735806 |DSCTC | 8.07 | 8.16 | |Hp| | | | | |77086 DM | +030317 |PS Aps *|153111.1-784511 |EB | 7.86 | 7.97 | 7.89 |V |48574.241 | | 1.086152 | |F3V |78011 DM | +030318 |PT Aps |141533.0-721740 |EA | 12.19 | 13.3 : | 12.33 |V |51903.842 | | 2.74188 |16 | |79018 79076| +030319 |PU Aps |143753.2-742157 |EA | 12.35 | 14.0 : | 12.4 : |V |52867.455 | | 5.05085 |10 | |79004 79076| +030320 |PV Aps *|151128.5-732534 |EA | 7.80 | 8.30 | 8.26 : |V |52705.750 | | 28.877 |02 : |A9III/IV |79009 DM | +030321 |PW Aps |152528.4-782655 |SRB | 9.6 | 10.8 | |V | | | 89. | |Me |79100 DM | +030322 |PX Aps |164529.9-764819 |EB: | 12.31 | 12.64 | 12.45 : |V |53523.692 | | 0.820805 | | |79009 79082| +030323 |PY Aps |171340.1-735344 |SRB | 10.4 | 11.5 | |V | | | 142. | | |79100 79197| +030324 |PZ Aps |172447.0-690848 |EA | 11.50 | 12.39 | 11.68 |V |51950.843 | | 5.3275 |10 | |79018 79106| +030325 |QQ Aps |181701.8-781033 |EA | 13.3 | 14.4 : | 13.4 : |V |53581.740 | | 10.195 |09 | |79001 79124| +030326 |QR Aps |135735.8-730403 |M | 12.1 |< 14.5 | |V |54549. | | 237. | | |80001 2MASS| NL80_2 +030327 |QS Aps |135955.4-785251 |M | 10.8 |< 15.0 | |V |55011. | | 192. | | |80001 GSC | NL80_2 +030328 |QT Aps |140645.5-810616 |SRB | 11.3 | 12.3 | |V | | | 59.4 | | |80002 GSC | NL80_2 +030329 |QU Aps |140702.4-721130 |M | 12.4 |< 14.0 | |V |54291. | | 226. | | |80001 2MASS| NL80_2 +030330 |QV Aps |140800.8-804202 |M | 11.0 | 15.0 | |V |55032. | | 315. | | |80001 GSC | NL80_2 +030331 |QW Aps |140850.7-725248 |SRB | 12.8 | 14.6 | |V | | | 68.7 | | |80002 GSC | NL80_2 +030332 |QX Aps *|140956.3-710515 |SRB | 12.0 | 14.0 | |V | | | 653. | | |80001 GSC | NL80_2 +030333 |QY Aps |141319.2-751415 |M | 10.2 |< 15.0 | |V |55038. | | 329.6 | | |80002 2MASS| NL80_2 +030334 |QZ Aps |141355.9-761306 |M | 14.1 : | 17.0 : | |R |51915. | | 224. | | |80297 80297| NL80_2 +030335 |V0335 Aps |141451.7-791654 |SRA | 11.1 | 13.4 | |V |54927. | | 146.8 | | |80001 GSC | NL80_2 +030336 |V0336 Aps |141503.0-741447 |DSCT | 11.12 | 11.22 | |V | | | 0.1322093 | | |80242 80242| NL80_2 +030337 |V0337 Aps |141951.0-783858 |M | 10.4 | 15.0 | |V |53742. | | 185.4 | |Me |80001 GSC | NL80_2 +030338 |V0338 Aps |142104.2-754520 |RRAB | 12.7 | 14.5 | |V |54191.7014 | | 0.391472 |11 | |80001 USNO | NL80_2 +030339 |V0339 Aps *|142755.3-725231 |EB | 13.2 | 13.8 | 13.5 |* |53405.825 | | 0.551208 | | |80011 GSC | NL80_2 +030340 |V0340 Aps *|143036.4-732946 |EA | 13.3 | 14.6 | 13.5 |V |53812.70 | | 2.7842 |14 | |80011 GSC | NL80_2 +030341 |V0341 Aps |143624.2-793621 |M | 12.8 |< 14.6 | |V |54166. | | 267. | | |80399 80399| NL80_2 +030342 |V0342 Aps |143759.1-725245 |DSCT: | 15.1 |( 0.25 *)| |R |54289.256 | | 0.160524 | | |80006 USNO | NL80_2 +030343 |V0343 Aps |144001.3-724307 |DSCT | 15.6 | 15.9 | |* | | | 0.075 | | |80006 USNO | NL80_2 +030344 |V0344 Aps |144033.3-781915 |RRC | 13.8 | 14.5 | |V |54525.8443 | | 0.328182 |31 | |80395 80395| NL80_2 +030345 |V0345 Aps *|144920.1-794024 |EW | 13.9 | 14.6 | 14.5 |V |53863.7429 | | 0.383894 | | |80242 80242| NL80_2 +030346 |V0346 Aps *|145239.5-710427 |EA | 14.0 | 15.1 : | 14.9 : |V |52128.5119 | | 1.87547 |12 | |80395 80395| NL80_2 +030347 |V0347 Aps *|145938.0-724554 |RRAB | 13.4 | 14.0 | |V |54518.8231 | | 0.489722 |14 | |80395 80395| NL80_2 +030348 |V0348 Aps |150753.2-721738 |M | 12.4 |< 15.3 | |V |54906. | | 252. | |M5-M7 |80001 2MASS| NL80_2 +030349 |V0349 Aps |150923.6-761648 |SRB | 9.4 | 11.2 | |V | | | 170. | | |80002 DM | NL80_2 +030350 |V0350 Aps |150927.6-822643 |M | 11.0 |< 15.0 | |V |54940. | | 220. | | |80002 2MASS| NL80_2 +030351 |V0351 Aps |150951.9-763306 |M | 10.8 |< 14.3 | |V |54970. | | 190. | |Me |80001 2MASS| NL80_2 +030352 |V0352 Aps |151131.9-782404 |EW | 15.5 |( 0.7 *)| |R |53093.405 | | 0.27 | | |80409 USNO | NL80_2 +030353 |V0353 Aps |151337.3-755235 |M | 11.0 |< 14.5 | |V |54755. | | 288. | | |80406 80406| NL80_2 +030354 |V0354 Aps *|151528.6-774642 |EA | 12.35 | 12.60 | 12.50 |V |53646.5483 | | 0.587153 |17 | |80242 80242| NL80_2 +030355 |V0355 Aps |151850.7-731601 |M | 12.3 |< 15.0 | |V |54903. | | 255. | | |80001 2MASS| NL80_2 +030356 |V0356 Aps |152745.1-804431 |RRAB | 13.7 | 14.7 | |V |54586.671 | | 0.69107 |13 | |80135 GSC | NL80_2 +030357 |V0357 Aps |153156.0-782305 |EW | 15.5 | 15.8 | |* |53544.493 | | 0.304568 | | |80006 USNO | NL80_2 +030358 |V0358 Aps |153754.4-714847 |LB | 12.0 | 13.4 | |V | | | | | |80001 GSC | NL80_2 +030359 |V0359 Aps |153847.0-724016 |M | 11.1 | 15.0 | |V |55070. | | 371.3 | | |80002 GSC | NL80_2 +030360 |V0360 Aps |154939.2-762519 |DSCT | 13.35 | 13.63 | |V |54287.632 | | 0.0638629 | | |80006 GSC | NL80_2 +030361 |V0361 Aps |155303.9-722505 |M | 12.2 |< 15.4 | |V |54621. | | 159.3 | | |80001 GSC | NL80_2 +030362 |V0362 Aps |160124.5-770344 |RRC | 13.7 | 14.2 | |V |53893.635 | | 0.384399 |36 | |80135 GSC | NL80_3 +030363 |V0363 Aps |160332.3-705326 |RRAB | 11.5 | 12.1 | |V |53906.7818 | | 0.728561 |20 | |80002 GSC | NL80_3 +030364 |V0364 Aps |161019.3-765205 |EW | 14.3 | 14.7 | 14.65 |* |53545.560 | | 0.295466 | | |80006 USNO | NL80_3 +030365 |V0365 Aps |161926.1-714115 |EA | 13.9 | 14.8 : | 14.0 : |V |53913.6961 | | 2.61452 |12 | |80242 80242| NL80_3 +030366 |V0366 Aps |175033.3-691618 |GDOR | 11.55 | 11.62 | |V |54592.8024 | | 0.427913 | | |80242 80242| NL80_3 +0390041|del 1 Aps *|162020.8-784145 |LB: | 4.66 | 4.87 | |V | | | | |M4-M5III |04456 CPD | +039005 |eps Aps |142223.2-800632 |GCAS: | 4.99 | 5.04 | |Hp| | | | | |HIP HIP | +039008 |tet Aps |140519.9-764748 |SRB | 6.4 | 8.6 | |p | | | 119. | |M7III |00207 CPD | +0390101|kap 1 Aps *|153130.8-732323 |GCAS | 5.43 | 5.61 | |V | | | | |B3IVe |06311 CPD | +040001 |R Aqr *|234349.5-151704 |M+ZAND | 5.2 | 12.4 | |V |54045. | | 390. |41 |M5e-M8.5e+pec |00001 00002| +040002 |S Aqr |225706.5-202036 |M | 7.6 | 15.0 | |V |52107. | | 279.3 |39 |M4e-M6e |00001 00002| +040003 |T Aqr |204956.4-050848 |M | 7.0 | 14.2 | |V |53229. | | 201.1 |47 |M2e-M5.5e |00001 00002| +040004 |U Aqr |220319.7-163735 |RCB | 10.6 | 15.9 | |V | | | | |pec |03891 00002| +040005 |V Aqr *|204649.4+022615 |SRB | 7.6 | 10.1 | |V | | | 241. | |M6e |N0039 00002| +040006 |W Aqr *|204625.0-040500 |M | 8.3 | 15.2 | |V |53940. | | 376.1 |42 |M6-M8e |00001 00002| +040007 |X Aqr |221839.3-205404 |M | 7.2 | 15.0 | |V |52951. | | 311.4 |42 |S6,3e:(M4e-M6.5e)|00001 00002| +040008 |Y Aqr |204425.1-045001 |M | 8.1 | 15.5 | |V |52240. | | 382.34 |43 |M6.5e-M9 |00001 00002| +040009 |Z Aqr |235214.6-155117 |SRA | 7.4 | 10.2 | |V |52945. | | 136.6 |50 |M1e-M7III |00001 HIP | +040010 |RR Aqr |211501.3-025345 |M | 9.1 | 14.7 | |V |53954. | | 182.45 |43 |M2e-M4e |00001 00002| +040011 |RS Aqr |211058.1-040140 |M | 9.3 | 15.0 | |V |54005. | | 221.3 |50 |M2e |00001 00002| +040012 |RT Aqr |222312.9-220324 |M | 8.8 | 13.1 | |V |51890. | | 252.2 |50 |M5e-M6e |N0002 00002| +040013 |RU Aqr |232424.3-171909 |SRB | 8.5 | 10.1 | |V | | | 118.8 | |M4/5III |N0002 HIP | +040014 |RV Aqr |210551.7-001242 |M | 9.0 |< 13. | |V |52088. | | 453. | |C6,3e |N0002 GSC | +040015 |RW Aqr |212305.8+005016 |M | 8.5 | 14.5 | |V |54010. | | 140. |38 |M2e-M4e |00001 BD | +040016 |RX Aqr *|211246.3-142333 |LB | 7.8 | 8.6 | |V | | | | |M4 |00797 BD | +040017 |RY Aqr *|212016.0-104808 |EA | 8.82 | 10.21 | 8.92 |V |52500.0210 | | 1.966577 |10 *|A3 |N0041 BD | +040018 |RZ Aqr |212303.7-070629 |M | 10.0 |< 15.5 | |V |52954. | | 391. | |M3e-M9 |N0002 06286| +040019 |SS Aqr |221954.4-142407 |M | 9.2 | 13.6 | |V |52284. | | 202.2 |50 |M2e |N0002 BD | +040020 |ST Aqr *|222101.9-065751 |EB | 9.15 | 9.67 | 9.37 |V |52500.580 | | 0.7809919 | |A7:+G8IV: |00001 BD | +040021 |SU Aqr *|225203.9-125644 |EA | 9.67 | 10.28 | 9.74 |V |52500.714 | | 1.0446981 |17 |A5V |N0041 BD | +040022 |SV Aqr |232245.4-104900 |LB | 9.44 | 11.06 | |V | | | | |M4-5 |05973 BD | +040023 |SW Aqr *|211517.9+000435 |RRAB | 10.37 | 11.68 | |V |52896.700 | | 0.459300 |11 |A5-G1 |N0002 HIP | +040024 |SX Aqr *|213608.4+031350 |RRAB | 11.05 | 12.19 | |V |53882.828 | | 0.5357087 |10 |A5-F7 |00001 HIP | +040025 |SY Aqr |215044.5-050705 |SRB | 9.1 | 11.6 | |V | | | 215. | |M5 |00001 BD | +040026 |SZ Aqr |224250.3-211045 |LC | 8.4 | 10.4 | |V | | | | |K0-M3eIa |00001 BD | +040027 |TT Aqr *|225455.4-092228 |SRB | 8.3 | 9.2 | |V | | | 76.3 | |M5 |N0002 BD | +040028 |TU Aqr |210734.6+012228 |SRB | 11.4 | 13.8 | |V | | | 97.9 | | |N0002 06286| +040029 |TV Aqr |205342.2-013807 |M | 11.9 |< 14.2 | |V |52832. | | 398.5 | |M7 |00001 06286| +040030 |TW Aqr |210405.6-020244 |LB | 11.9 | 13.5 | |V | | | | |M5 |00001 06286| +040031 |TX Aqr |210642.6-012006 |M | 10.3 |< 14.0 | |V |52204. | | 348.7 | | |00001 GSC | +040032 |TY Aqr |214804.9+002202 |M | 12.0 |< 15.0 | |V |53544. | | 213. | | |00001 06286| +040033 |TZ Aqr *|220155.5-053603 |RRAB | 11.67 | 12.58 | |V |52922.604 | | 0.571191 |15 |A6-F6 |N0002 06286| +040034 |UU Aqr *|220905.7-034618 |EA+NL | 12.85 | 15.5 | |V |52500.0188 | | 0.163580482 |10 |pec(e) |N0041 72085| +040035 |UV Aqr |224359.4+014441 |SRA | 10.2 | 12.2 | |V |53902. | | 166.3 |50 |C |00001 06286| +040036 |UW Aqr |220639.2-002527 |SRB | 10.2 | 12.2 | |V | | | 212. | |M5 |00001 68018| +040037 |UX Aqr |231324.1-151916 |M | 10.0 |< 14.0 | |V |52824. | | 322. | |M4e |N0002 06286| +040038 |UY Aqr |204654.5-094746 | | 12.5 | 14.1 | |p | | | | | |01469 06286| +040039 |UZ Aqr |205108.4-044434 |SRB | 12.9 | 14.1 | |V | | | 93.0 | | |00001 06286| +040040 |VV Aqr |205900.7-073229 |M | 11.6 | 14.2 | |V |52248. | | 142.5 |45 | |N0002 06286| +040041 |VW Aqr |210054.5-013112 |M | 10.8 |< 14.5 | |V |53862. | | 210.2 | |Me |00001 06286| +040042 |VX Aqr |210232.6-063621 |M | 10.0 | 14.5 | |V |52803. | | 185.7 |55 | |00001 06286| +040043 |VY Aqr *|211209.2-084937 |UGSU | 10.0 | 17.52 | |V | | | | |pec(UG) |N0054 72085| +040044 |VZ Aqr |213024.6-025917 |UGSS | 12.0 | 18.4 | |V | | |( 50.4 ) | |pec(UG) |N0117 72085| +040045 |WW Aqr |213453.0+024210 |M | 10.5 |< 14.5 | |V |53640. | | 242.7 | | |00001 06286| +040046 |WX Aqr |221015.9-163947 |RRAB | 12.4 | 13.6 | |V |52083.781 | | 0.5508402 |15 | |00001 06286| +040047 |WY Aqr |221516.6+014017 |M | 10. |< 14. | |p |52622. | | 247.8 | | |00001 06286| +040048 |WZ Aqr |204024.1-130358 |RRAB | 13.1 | 14.30 | |V |53511.854 | | 0.4942677 |14 | |00001 06286| +040049 |XX Aqr *|204218.9-081530 |M | 9.1 |< 15.0 | |V |52810. | | 323.4 | |M4 |N0002 06286| +040050 |XY Aqr |232122.3-173058 |CST: | 9.37 | | |V | | | | |G0V |00001 BD | +040051 |XZ Aqr *|220500.8-084940 |EA | 11.8 | 13.6 |( 0.2 V)|p |52500.813 | | 2.059232 |11 | |N0041 GSC | +040052 |YY Aqr |221113.3-160747 |SRB | 10.0 | 12.3 | |V | | | 197. | |Me |N0002 06286| +040053 |YZ Aqr *|221430.5-105547 |RRAB | 11.98 | 13.1 | |V |52886.656 | | 0.5519346 |11 | |00001 06286| +040054 |ZZ Aqr |221935.3-094033 |SRA | 10.9 | 12.9 | |V |52887. | | 173.5 |35 | |00001 06286| +040055 |AA Aqr *|223603.8-100055 |RRAB | 12.26 | 13.4 | |V |53579.843 | | 0.6088859 |17 | |00001 06286| +040056 |AB Aqr |223834.6-140214 |LB | 8.8 | 10.0 | |V | | | | |M7 |00001 BD | +040057 |AC Aqr |211621.9-021342 |SRD | 10.0 | 10.5 | |V |52887. | | 68.0 | |F8 |00001 BD | +040058 |AD Aqr |211740.6-130653 |LB | 10.3 | 11.8 | |V | | | | |M2 |00001 BD | +040059 |AE Aqr *|204009.2-005215 |XM+ELL | 10.18 | 12.12 | |V | | | | |K3Ve+pec(e) | 72085| +040060 |AF Aqr |220425.9-213553 |E | 15.1 | 16.0 | |p | | | | | |00888 00022| +040061 |AG Aqr |220531.8-223001 |RR: | 14.5 | 15.4 | |p | | | | |A3 |00888 00022| +040062 |AH Aqr |220537.0-234235 |S: | 14.1 | 14.9 | |p | | | | |G0 |00888 00022| +040063 |AI Aqr |220701.9-204232 |RRAB | 12.8 | 13.9 | |V |52085.874 | | 0.618536 |20 : | |00001 00022| +040064 |AK Aqr |220932.1-191425 |RRAB | 13.5 | 14.6 | |V |53715.574 | | 0.607366 |12 | |00001 00022| +040065 |AL Aqr |221045.8-214652 |RR | 14.1 | 15.1 | |p |25442.50 | | 0.5707 | | |00888 00022| +040066 |AM Aqr *|221107.4-193133 |EW | 12.8 | 13.6 | 13.6 |V |51871.975 | | 0.373740 | | |N0002 00022| +040067 |AN Aqr |221111.3-184112 |RR | 13.5 | 14.3 | |p |25412.65 | | 0.37664 | | |00888 00022| +040068 |AO Aqr *|221131.9-224717 |EW | 11.04 | 11.67 | 11.65 |V |52898.651 | | 0.4893432 | |F: |00001 00022| +040069 |AP Aqr |221215.5-231925 |LB | 11.2 | 12.1 | |V | | | | | |00001 00022| +040070 |AQ Aqr |221250.9-210952 |M | 11.3 |< 15.0 | |V |52742. | | 237.1 | | |N0002 00022| +040071 |AR Aqr |221320.4-244303 |RRAB | 15.0 | 16.1 | |p |25425.60 | | 0.5821 |15 : | |00888 00022| +040072 |AS Aqr |221758.8-182410 |RRAB | 14.2 | 15.6 | |p |25449.55 | | 0.5306 | | |00888 00022| +040073 |AT Aqr *|222017.8-200650 |EW | 13.1 | 14.0 | 13.9 |V |52500.168 | | 0.3040946 | | |N0041 00022| +040074 |AU Aqr *|222137.2-244648 |EW | 12.6 | 13.3 | 13.2 |V |51870.920 | | 0.3711503 | | |N0002 00022| +040075 |AV Aqr |222413.4-194743 |M | 11.0 |< 14.5 | |V |52777. | | 250.7 | | |00001 00022| +040076 |AW Aqr |222454.7-233843 |RR | 15.0 |< 16.2 | |p |25412.63 | | 0.654 | | |00888 00022| +040077 |AX Aqr *|222539.3-181423 |RRC | 13.0 | 13.7 | |V |53162.897 | | 0.3881658 |48 | |00001 00022| +040078 |AY Aqr *|222652.1-192511 |EW | 13.4 | 14.4 | 14.3 |V |52875.780 | | 0.281996 | | |00001 00022| +040079 |AZ Aqr |222713.1-244341 |RR | 14.7 | 15.6 | |p | | | | | |00888 00022| +040080 |BB Aqr *|222733.3-222025 |RRAB | 14.7 | 16.2 | |p |25442.50 | | 0.53474 | | |00888 00022| +040081 |BC Aqr |223130.1-180413 |SRB | 13.5 | 14.5 | |V | | | 75. | | |00001 00022| +040082 |BD Aqr |223323.6-233659 |RRAB | 14.0 | 15.8 | |p |25439.53 | | 0.50113 | | |00888 00022| +040083 |BE Aqr |223533.1-175816 |RRAB | 13.1 | 14.8 | |p |51489.702 | | 0.4863896 |20 | |07806 00022| +040084 |BF Aqr |223559.9-191933 |E: | 14.2 | 14.9 | |p |46286.605 | | | | |00888 00022| +040085 |BG Aqr *|223726.0-182218 |RRAB | 13.6 | 15.4 | |p |25424.60 | | 0.505491 | | |07806 00022| +040086 |BH Aqr *|223858.8-194827 |RRAB | 12.6 | 14.1 | |V |52776.843 | | 0.5257406 |20 | |00001 00022| +040087 |BI Aqr *|224011.4-231341 |EB | 11.85 | 12.4 | 12.4 |V |52144.666 | | 13.0470 | | |00001 00022| +040088 |BK Aqr |210900.7-050456 |SRB | 9.1 | 10.1 | |V | | | 71.4 | |M5 |N0002 BD | +040089 |BL Aqr |211412.5-015843 |LB | 9.75 | 11.7 | |V | | | | |G2-K0(M2) |00104 BD | +040090 |BM Aqr |220645.0-153840 |SRB | 9.6 | 10.4 | |V | | | 55.6 | |M3III: |N0002 HIP | +040091 |BN Aqr *|222748.7-072902 |RRAB | 11.77 | 12.94 | |V |52900.644 | | 0.4696822 |12 |F3 |00001 00975| +040092 |BO Aqr *|225408.3-122138 |RRAB | 11.51 | 12.62 | |V |52922.754 | | 0.6940301 |16 |A8-F1 |00001 00975| +040093 |BP Aqr |230056.4-093857 |S: | 13.5 | 14.5 | |p | | | | |A7 |01767 01767| +040094 |BQ Aqr *|233608.9-162808 |EA | 10.7 | 11.5 | 10.9 |V |52070.826 | | 6.620525 |11 | |00001 00975| +040095 |BR Aqr *|233832.9-091908 |RRAB | 10.75 | 11.93 | |V |52068.837 | | 0.4818713 |12 |A8-F6 |00001 HIP | +040096 |BS Aqr *|234846.0-080845 |DSCT | 9.12 | 9.62 | |V |52093.793 | | 0.197822 |31 |A8-F3 |N0002 HIP | +040097 |BT Aqr *|205748.3-054107 |RRAB | 11.78 | 12.84 | |V |52885.794 | | 0.4063607 |15 |A |00001 00190| +040098 |BU Aqr |205812.8-131408 |RRAB | 13.0 | 14.1 | |V |53470.896 | | 0.530996 |20 : | |00001 03133| +040099 |BV Aqr *|220254.0-213132 |RRC | 10.72 | 11.24 | |V |52730.904 | | 0.363714 |50 | |00001 HIP | +040100 |BW Aqr *|222315.9-151956 |EA | 10.31 | 10.92 | 10.86 |V |52501.720 | | 6.719708 |04 *|F8IV+F7IV |N0041 HIP | +040101 |BX Aqr *|205143.1-110530 |EA | 12.0 | 13.5 | 12.2 |V |52502.640 | | 1.529629 |11 *| |00001 00190| +040102 |BY Aqr |205805.6-110233 |RRAB | 12.9 | 14.0 | |V |53191.937 | | 0.657805 |15 | |00001 06286| +040103 |BZ Aqr |210124.1-072600 |M | 10.8 |< 14.5 | |V |52513. | | 202.2 | |M3 |N0002 GSC | +040104 |CC Aqr |211332.0-083735 |RRAB | 13.6 | 14.8 | |V |52888.609 | | 0.468270 |20 : |F0: |00001 GSC | +040105 |CD Aqr *|211959.4-040632 |EA | 10.8 | 11.7 | 11.0 |V |51877.419 | | 4.837761 |12 *|A5 |N0002 BD | +040106 |CE Aqr |225221.0-104522 |SRB | 10.5 | 11.2 | |V | | | 57.3 | | |N0002 00975| +040107 |CF Aqr *|205357.5-134723 |RRAB | 14.37 | 15.93 | |V |49523.3495 | | 0.6323816 |19 : | |N0006 06286| +040108 |CG Aqr |205509.0-122044 |RRAB | 13.0 | 14.7 | |p |52897.67 | | 0.4533280 |15 : | |07806 06286| +040109 |CH Aqr *|205924.5-140153 |RRAB | 14.5 | 15.6 | |V |49523.4844 | | 0.4970528 |10 : | |07806 06286| +040110 |CI Aqr |210047.0-115256 |LB | 12.6 | 13.9 | |V | | | | | |00001 06286| +040111 |CK Aqr *|210102.3-110427 |EW | 12.86 | 13.47 | 13.38 |V |53892.798 | | 0.2833718 | | |00001 06286| +040112 |CL Aqr |210604.6-142401 |RRAB | 14.3 | 15.5 | |p |25413.593 | | 0.5954252 |20 : | |07806 07806| +040113 |CM Aqr |210825.4-135404 |RRC: | 13.3 | 14.0 | |V |53127.86 | | 0.351834 | | |N0002 06286| +040114 |CN Aqr |210826.8-130107 |SRA | 11.7 | 12.7 | |V |52969. | | 106.2 |45 | |00001 06286| +040115 |CO Aqr |211010.8-142041 |RRAB | 13.7 | 14.9 | |p |24737.444 | | 0.5610604 |24 : | |07806 06286| +040116 |CP Aqr *|211012.9-014316 |RRAB | 11.03 | 12.40 | |V |52094.717 | | 0.4634012 |15 |A7-F5 |00001 00205| +040117 |CQ Aqr |211059.6-141814 |EA: | 13.5 | 14.6 : | |V |53591.661 | | 0.9801057 | | |00001 06286| +040118 |CR Aqr *|211113.9-135914 |EB | 13.2 | 14.2 | 13.9 |V |52085.736 | | 0.514509 | | |00001 06286| +040119 |CS Aqr |211111.1-102500 |RRAB | 12.7 | 13.7 | |V |53144.889 | | 0.569839 |20 : | |00001 06286| +040120 |CT Aqr |211619.5-123537 |RRAB | 14.3 | 16.2 | |p |25423.65 | | 0.53966 | | |00193 06286| +040121 |CU Aqr |211823.4-111447 |RRAB | 14.6 | 16.2 | |p |25447.55 | | 0.48297 | | |00193 06286| +040122 |CV Aqr *| | | | | | | | | | | | |N +040123 |CW Aqr *|221922.3-165333 |EB | 10.62 | 11.09 | 10.83 |V |52859.689 | | 0.5429077 | | |00001 BD | +040124 |CX Aqr *|223543.9-004133 |EB | 10.55 | 11.80 | 10.90 |V |52500.4293 | | 0.5559894 |17 *|F2p |00001 00002| +040125 |CY Aqr *|223747.9+013204 |SXPHE | 10.42 | 11.20 | |V |52956.629 | | 0.061038408 |26 |A2-A8 |00001 HIP | +040126 |CZ Aqr *|232220.6-155621 |EA | 10.70 | 12.08 | 11.00 |V |54035.943 | | 0.86275209 |19 *|A7V |00001 BD | +040127 |DD Aqr *|224553.3+010259 |EB | 10.63 | 11.32 | |V |53268.609 | | 0.7210127 | |A5p |00001 00470| +040128 |DE Aqr |205538.6-122341 |LB | 11.7 | 13.0 | |V | | | | |M5 |00193 06286| +040129 |DF Aqr |205819.2-112054 |LB | 11.7 | 12.7 | |V | | | | |M5 |00193 06286| +040130 |DG Aqr |205841.3-104357 |SRB | 11.7 | 12.6 | |V | | | 95. | |M6: |N0002 06286| +040131 |DH Aqr |210052.8-120506 |SRB | 11.6 | 12.8 | |V | | | 64.7 | | |N0002 06286| +040132 |DI Aqr |210752.7-122815 |SRB | 10.7 | 12.0 | |V | | | 136.4 | | |N0002 06286| +040133 |DK Aqr |211402.5-115316 |LB | 11.8 | 12.9 | |V | | | | | |00193 06286| +040134 |DL Aqr |212249.4-024736 |SRA | 9.9 | 12.1 | |V |53269. | | 137.0 |40 | |00001 00205| +040135 |DM Aqr |231858.1-071850 |M | 10.9 | 14.3 | |V |52185. | | 148.3 |50 | |N0002 06286| +040136 |DN Aqr *|231917.2-241259 |RRAB | 10.73 | 11.51 | |V |52033.899 | | 0.633760 |16 |F3-F9 |00001 HIP | +040137 |DO Aqr *|204857.4+011634 |RRAB | 13.5 | 14.6 | |V |52896.700 | | 0.524289 |10 | |06983 06286| +040138 |DP Aqr |205149.3+022327 |RRAB | 13.7 | 14.8 | |p |37884.4543 | | 0.4448946 | | |05993 06286| +040139 |DQ Aqr |210215.6+013604 |S: | 14.5 | 15.8 | |p | | | | | |01443 GSC | +040140 |DR Aqr |210531.3+021508 |EA | 13.6 | 14.3 | |p |53830.910 | | 1.277989 |10 | |01443 GSC | +040141 |DS Aqr *|225317.0-183531 |RVA | 10.2 | 11.3 | |V |52213.5 | | 77.34 | |F2II |N0002 HIP | +040142 |DT Aqr |204941.7-142508 |LB | 9.84 | 10.53 | |V | | | | |M |00797 BD | +040143 |DU Aqr *| | | | | | | | | | | | |N +040144 |DV Aqr *|205841.8-142859 |EB | 5.89 | 6.25 | 6.1 |V |52500.21 | | 1.575529 | |A9IV |N0041 HIP | +040145 |DW Aqr |212608.5+015438 |RRAB | 14.3 | 16.3 | |p |26182.435 | | 0.4671973 |22 : | |04149 04392| +040146 |DX Aqr *|220226.3-165753 |EA | 6.43 | 6.88 | 6.55 |Hp|51808.000 | | 0.9450106 |15 |A2V |00001 HIP | +040147 |DY Aqr *|221904.3-023830 |EA | 10.23 | 10.95 | 10.32 |V |52500.29 | | 2.159702 |13 |A0 |N0041 05404| +040148 |DZ Aqr |222141.8-073630 |LB | 8.2 | 9.3 | |V | | | | |M7 |00001 HIP | +040149 |EE Aqr *|223442.0-195135 |EB | 7.91 | 8.55 | 8.12 |V |52500.055 | | 0.50899582 | |F0V |N0041 HIP | +040150 |EF Aqr *|230119.1-062615 |EA | 9.88 | 10.5 | 10.11 |V |51483.622 | | 2.85358 |06 |G1V |N0060 BD | +040151 |EG Aqr |232519.2-081820 |UG: | 14.0 | 18.5 | |p | | | | |K: |04037 72085| +040152 |EH Aqr |233406.0-224843 |UG: | 17.5 |< 21.0 | |p | | | | | |04037 76005| +040153 |EI Aqr *|212920.3-065900 |EA | 11.5 | 12.2 | 11.6 |V |51875.318 | | 1.222318 |12 | |03165 00190| +040154 |EK Aqr *|233916.2-090905 |EW | 10.80 | 11.33 | 11.23 |V |53301.009 | | 0.612790 | | |00001 05503| +040155 |EL Aqr *|234718.4-080512 |EW | 10.35 | 10.75 | 10.71 |V |52500.119 | | 0.4814092 | |F3V |N0041 BD | +040156 |EM Aqr |205508.3-012223 |DSCTC | 6.55 |( 0.03 )| |V | | | 0.1024746 | |A9Vn |HIP HIP | +040157 |EN Aqr |204744.2-050140 |LB | 4.41 |( 0.06 )| |V | | | | |M3III |05840 HIP | +040158 |EO Aqr |213309.0-033306 |EA | 14.1 | 16.0 | |p |37177.388 | | 3.115964 |14 | |06077 04392| +040159 |EP Aqr *|214631.9-021246 |SRB | 6.37 | 6.82 | |V | | | 55. : | |M8III |06645 HIP | +040160 |EQ Aqr |230417.2-160036 |SRB | 9.1 | 9.9 | |V | | | 117. | |M3/M4 |00001 HIP | +040161 |ER Aqr |230525.6-222913 |LB | 7.14 | 7.81 | |V | | | | |M3III |05973 HIP | +040162 |ES Aqr |233820.8-233320 |SRB | 9.56 | 10.2 | |V | | | 60.7 | |M4III |00001 CoD | +040163 |ET Aqr |235121.3-185433 |ACV | 5.12 | 5.21 | |V | | | 3.735239 | |B9pSiCrSr |N0102 HIP | +040164 |EU Aqr |203900.8+005558 |M | 10.5 |< 15.0 | |V |52554. | | 279.0 | |Me |N0002 06286| +040165 |EV Aqr |210617.9+005244 |SRA | 11.3 | 13.6 | |V |52143. | | 124.9 | | |N0002 06286| +040166 |EW Aqr |211141.3-142821 |DSCTC | 6.41 | 6.48 | |V | | | 0.0968946 | |A8III |HIP HIP | +040167 |EX Aqr *|211514.8+022845 |EB | 11.6 | 12.3 | 11.8 |V |52500.470 | | 0.8893842 | | |N0041 06286| +040168 |EY Aqr |211502.8-094637 |M | 11.8 |< 15.0 | |V |52756. | | 282.4 | | |N0002 08066| +040169 |EZ Aqr *|223833.5-151759 |UV+BY | 14.01 | 16.5 | |U | | | | |M5.5Ve |N0119 04284| +040170 |FF Aqr *|220036.4-024427 |EA/RS | 10.08 | 11.47 | |U |42752.9577 | | 9.207755 |06 |G8III+sdOB |08201 HIP | +040171 |FG Aqr *|221719.0-084813 |UV | 15.08 | 16.29 | |U | | | | |M4.5Ve |06873 06873| +040172 |FH Aqr |222502.5-045656 |RRAB | 13.2 | 14.3 | |V |52851.783 | | 0.5277362 |14 | |00001 08202| +040173 |FI Aqr *|222433.9-232203 |ACV | 7.49 | 7.52 | |V | | | 4.689 | |B9pSi |00208 HIP | +040174 |FK Aqr *|223845.6-203716 |UV+BY | 10.9 | 11.72 | |U | | | 4.252 | |M2Ve |N0024 HIP | +040175 |FL Aqr *|223845.3-203652 |UV+BY | 13.2 | 14.16 | |U | | | 1.95 | |M3Ve |N0121 GSC | +040176 |FM Aqr |224830.2-103320 |DSCTC | 6.16 | 6.19 | |V | | | 0.087 | |A9III-IV |08336 HIP | +040177 |FN Aqr |210307.6-011831 |DSCTC | 7.34 |( 0.01 )| |V | | | | |F5III |67009 HIP | +040178 |FO Aqr *|221755.4-082105 |XM | 12.7 | 14.2 | |V | | | 0.2020596 | |pec(e) |N0122 72085| +040179 |FP Aqr |204636.9-005410 |M | 11.1 | 15.5 | |V |52544. | | 483. | |M8 |N0002 GSC | +040180 |FQ Aqr |205121.3+021846 |PVTEL | 9.47 | 9.60 | |V | | | 21.23 |50 |F0 |68016 BD | +040181 |FR Aqr *|205648.5-045049 |UV | 14.16 | 14.42 | |U | | | | |M4e |68364 HIP | +040182 |FS Aqr *|220543.1-002346 |EW | 12.5 | 13.3 | 13.2 |V |53670.303 | | 0.2620461 | | |00001 68018| +040183 |FT Aqr |220718.5-001225 |LB | 11.6 | 12.6 | |V | | | | | |00001 68018| +040184 |FU Aqr *|220812.4-021013 |RRC: | 13.2 | 13.7 | |V |45234.336 | | 0.3184563 |50 | |68018 68018| +040185 |FV Aqr *|221203.0-084546 |RRAB | 13.2 | 14.5 | |V |52888.682 | | 0.6372034 |11 | |00001 68018| +040186 |FW Aqr *|221204.0-094326 |EA | 12.95 | 14.4 | 13.15 |V |53585.888 | | 4.8865 |12 | |N0060 68018| +040187 |FX Aqr *|221301.2-014341 |RRAB | 12.5 | 13.2 | |V |53253.723 | | 0.5882260 |20 | |00001 68018| +040188 |FY Aqr |221635.0-034855 |CWB | 11.8 | 12.7 | |V |52069.804 | | 1.022894 |12 | |N0002 68018| +040189 |FZ Aqr *|221708.3-060547 |EW | 14.5 | 14.8 | 14.7 |p |45341.506 | | 0.6791072 | | |68018 68018| +040190 |GG Aqr |221753.0-000535 |RRAB | 14.2 | 15.1 | |p |45226.416 | | 0.6556452 |12 | |68018 68018| +040191 |GH Aqr *|221954.2-050149 |EW | 12.6 | 13.1 | 13.1 |V |51875.956 | | 0.305583 | | |N0002 68018| +040192 |GI Aqr *|221953.5+001937 |EB: | 13.8 | 14.2 | 14.2 |p |45234.372 | | 3.137769 | | |68018 68018| +040193 |GK Aqr *|221956.9-003947 |EW | 12.0 | 12.9 | 12.8 |V |53656.382 | | 0.3274176 | | |00001 68018| +040194 |GL Aqr |222002.6-084609 |RR: | 14.1 | 14.7 | |p |45233.302 | | 0.400193 : |25 | |68018 68018| +040195 |GM Aqr *|222157.9-024003 |EW | 13.4 | 14.4 | 14.3 |V |52963.55 | | 0.3672862 | | |00001 68018| +040196 |GN Aqr *|222218.7-041223 |EA | 11.72 | 12.16 | 12.10 |V |53244.640 | | 4.40445 |05 | |N0060 68018| +040197 |GO Aqr |222304.0-070000 |RRC | 13.8 | 14.3 | |p |45592.386 | | 0.2937604 |30 | |68018 68018| +040198 |GP Aqr |222539.1-075628 |RRC | 10.63 | 11.04 | |V |52424.80 | | 0.405278 |50 | |N0002 68018| +040199 |GQ Aqr |222616.3-001341 |RRAB | 13.1 | 14.5 | |V |52385.918 | | 0.48400 |20 | |N0002 68018| +040200 |GR Aqr *|222635.6-084538 |RRAB | 14.7 | 16.5 : | |p |45582.384 | | 0.4027557 : |25 | |68018 68018| +040201 |GS Aqr *|222733.6-001718 |EW | 13.1 | 13.6 | 13.5 |V |52954.630 | | 0.374066 | | |N0002 68018| +040202 |GT Aqr |222817.4-005919 |RRAB | 13.5 | 14.6 | |V |51459.87 | | 0.54289 |30 : | |N0053 68018| +040203 |GU Aqr |222843.1-005115 |RR | 13.4 | 15.0 | |p | | | 0.465283 : | | |68018 68018| +040204 |GV Aqr *|223002.8-080627 |DSCT | 12.8 | 13.6 | |V | | | 0.168383 : |40 : | |00001 68018| +040205 |GW Aqr |223052.5-074241 |RRAB | 12.63 | 13.9 | |V |53146.899 | | 0.5259810 |15 | |00001 68018| +040206 |GX Aqr |223457.3-034233 |RRAB | 12.8 | 14.2 | |V |53243.518 | | 0.5473216 |15 | |00001 68018| +040207 |GY Aqr |223607.4-013756 |RRAB | 13.1 | 14.5 | |V |52151.599 | | 0.853872 |25 : | |N0002 68018| +040208 |GZ Aqr |224058.2-073304 |EW | 14.6 | 15.5 | |p |51453.713 | | 0.3027271 | | |00001 68018| +040209 |HH Aqr *|224131.5-062839 |RRAB | 11.6 | 12.7 | |V |51889.526 | | 0.5744539 |20 | |00001 68018| +040210 |HI Aqr *|225328.7-113700 |ACV: | 5.80 |( 0.01 )| |V | | | 3.40 : | |B9pHgMn |09919 HIP | +040211 |HK Aqr *|230819.6-152436 |BY+UV | 10.72 | 10.94 | |V | | | 0.4312 | |M2.5Ve |N0123 HIP | +040212 |HL Aqr *|222026.9+020054 |NL | 13.35 | 13.58 | |B | | | | |pec(e) |69012 72085| +040213 |HM Aqr *|223527.5-171527 |E: | 8.72 | 9.40 | |V |52404. | | 255. | |A0III |00001 HIP | +040214 |HN Aqr |223738.3-183951 |BCEP | 11.42 | 11.48 | |V | | | 0.152310 | |B1 |N0124 N0125| +040215 |HO Aqr |234636.8-102238 |IS: | 12.4 | 12.8 | |V | | | | | |00001 00205| +040216 |HP Aqr |234821.8-140825 |RRAB | 13.0 | 14.7 | |p |43874.168 | | 0.51876 |12 | |69018 GSC | +040217 |HQ Aqr |232413.2-123756 |RRAB | 12.3 | 13.6 | |V |53281.658 | | 0.5188923 |20 | |00001 N0126| +040218 |HR Aqr |233547.6-105925 |RRAB | 13.2 | 14.4 | |V |52114.825 | | 0.552666 |20 | |00001 N0127| +040219 |HS Aqr *|204054.0-003551 |EA | 9.07 | 9.50 | 9.23 |V |52500.6948 | | 0.7101875 |16 |F8V+G |N0041 71199| +040220 |HT Aqr |214019.8-014710 |SRB | 8.98 | 9.65 | |V | | | 301. | |M5 |00001 BD | +040221 |HU Aqr |210758.3-051739 |EA+XM | 15.0 | 19.8 | |V |49217.3459 | | 0.0868204162 |08 |M4.5V+pec(e) |N0128 76005| +040222 |HV Aqr *|212124.8-030937 |EW/RS | 9.74 | 10.21 | 10.15 |V |52500.2163 | | 0.3744583 | | |N0041 BD | +040223 |HW Aqr |235122.2-240813 |ZZA | 15.52 |( 0.2 )| |B | | | 0.0115 | | |72005 GSC | +040224 |HX Aqr |204011.6-005535 |E: | 11.86 | 12.30 | |V | | | | | |73013 GSC | +040225 |HY Aqr |213106.5-073421 |M | 10.7 |< 15.0 | |V |53252. | | 311. | |M8 |00001 GSC | +040226 |HZ Aqr *|213211.9+001318 |RS | 9.78 | 9.90 | |V | | | 4.03 | |K3Ve+K7Ve |73005 HIP | +040227 |II Aqr |221627.6-202724 |NL | 19.0 | 21.5 | |p | | | | |pec(e) |73015 76005| +040228 |IK Aqr |222543.7-111341 |BLLAC | 19.1 | 20.2 | |p | | | | |pec(BL) |04033 76005| +040229 |IL Aqr |225316.7-141549 |BY | 10.15 | 10.21 | |V | | | | |M4V |73018 BD | +040230 |IM Aqr |203918.0+020837 |LB | 7.81 | 7.97 | |Hp| | | | |M1 |HIP HIP | +040231 |IN Aqr |204006.3-140047 |LB | 8.01 | 8.14 | |Hp| | | | |M4III |HIP HIP | +040232 |IO Aqr *|204045.5+005621 |EA | 8.80 | 9.22 | 9.17 |V |52530.4516 | | 2.368091 |11 |G0 |N0129 HIP | +040233 |IP Aqr |204919.4-084739 |LB | 7.70 | 7.86 | |Hp| | | | |M0 |HIP HIP | +040234 |IQ Aqr |204917.2-003348 |SRB | 6.02 | 6.58 | |Hp| | | 384.6 : | |M3 |HIP HIP | +040235 |IR Aqr |205221.6-031314 |LB | 7.73 | 7.92 | |Hp| | | | |M4III: |HIP HIP | +040236 |IS Aqr |205729.2-031412 |LB | 7.77 | 7.89 | |Hp| | | | |M0 |HIP HIP | +040237 |IT Aqr |210140.5-040753 |SR | 7.10 | 7.25 | |Hp| | | | |M0 |HIP HIP | +040238 |IU Aqr |210235.2-095944 |LB | 6.46 | 6.64 | |Hp| | | | |M3 |HIP HIP | +040239 |IV Aqr |210732.9-000950 |LC | 6.50 | 6.65 | |Hp| | | | |M4:II: |HIP HIP | +040240 |IW Aqr |211617.8-091253 |SRB | 6.47 | 6.54 | |Hp| | | 163. : | |M4III: |00001 HIP | +040241 |IX Aqr |212050.1-090906 |LB | 7.50 | 7.61 | |Hp| | | | |K2 |HIP HIP | +040242 |IY Aqr |212259.2-061358 |LB | 7.67 | 7.86 | |Hp| | | | |M0 |HIP HIP | +040243 |IZ Aqr |213442.8+014945 |LB | 6.23 | 6.47 | |Hp| | | | |M3 |HIP HIP | +040244 |KK Aqr |215927.7-175944 |LB | 7.90 | 8.23 | |Hp| | | | |M2III |HIP HIP | +040245 |KL Aqr |220256.4+000412 |LB | 8.33 | 9.07 | |Hp| | | | |M8 |HIP HIP | +040246 |KM Aqr |220339.1-074705 |LB: | 8.13 | 8.25 | |Hp| | | | |M0 |HIP HIP | +040247 |KN Aqr |220718.1-102649 |LB | 6.85 | 7.02 | |Hp| | | | |M3 |HIP HIP | +040248 |KO Aqr |220935.5-020116 |LB | 8.51 | 8.86 | |Hp| | | | |M0 |HIP HIP | +040249 |KP Aqr |220944.9-135330 |LB: | 8.03 | 8.15 | |Hp| | | | |M1/M2III |HIP HIP | +040250 |KQ Aqr *|221040.0-240134 |RS: | 9.45 | 9.57 | |V | | | 2.43367 | |A0V |HIP HIP | +040251 |KR Aqr |221216.9-110356 |LB | 7.25 | 7.36 | |Hp| | | | |M0 |HIP HIP | +040252 |KS Aqr |221715.9-042922 |LB | 9.42 | 9.63 | |Hp| | | | |M1 |HIP HIP | +040253 |KT Aqr |222133.4-142725 |LB: | 7.83 | 7.94 | |Hp| | | | |M0III |HIP HIP | +040254 |KU Aqr |222330.4-201850 |LB | 7.7 | 8.6 | |V | | | | |M3III |HIP HIP | +040255 |KV Aqr *|222548.0-201413 |E: | 6.84 | 7.03 | |Hp| | | | |A1V+G8/K1III |HIP HIP | +040256 |KW Aqr |222750.8-215211 |LB | 7.92 | 8.31 | |Hp| | | | |M3III |HIP HIP | +040257 |KX Aqr *|223113.4-225948 |EA | 8.11 | 8.58 | 8.47 |V |52444.834 | | 2.073225 |10 |F8/G0V |00001 HIP | +040258 |KY Aqr |223304.1-071027 |LB: | 8.81 | 8.94 | |Hp| | | | |K5 |HIP HIP | +040259 |KZ Aqr |223341.1+011134 |LB: | 8.05 | 8.15 | |Hp| | | | |M1 |HIP HIP | +040260 |LL Aqr *|223442.1-033558 |EA | 9.23 | 9.86 |( 0.32 )|V |48762.552 | | 20.1784 | |G0 |N0109 HIP | +040261 |LM Aqr |223617.9-050917 |LB | 8.19 | 8.39 | |Hp| | | | |M0 |HIP HIP | +040262 |LN Aqr |223638.2-132034 |BY: | 10.86 | 11.30 | |Hp| | | | |K: |HIP HIP | +040263 |LO Aqr |223700.9-073400 |IB: | 7.44 | 7.59 | |Hp| | | | |F0 |HIP HIP | +040264 |LP Aqr |224206.0-050607 |LB | 6.30 | 6.64 | |Hp| | | | |M0 |HIP HIP | +040265 |LQ Aqr |224614.2-110959 |LB | 6.71 | 6.78 | |Hp| | | | |M0 |HIP HIP | +040266 |LR Aqr |230630.3-134507 |LB | 8.7 | 9.3 | |V | | | | |M3III: |00001 HIP | +040267 |LS Aqr |231025.4-131835 |SRD: | 8.33 | 8.61 | |V | | | 269. : | |G6/G8Ib |00001 HIP | +040268 |LT Aqr |232547.9-110920 |LB | 7.96 | 8.13 | |Hp| | | | |M3 |HIP HIP | +040269 |LU Aqr |232807.3-121244 |SRD | 7.39 | 7.54 | |Hp| | | 14.9 : | |K3III |HIP HIP | +040270 |LV Aqr |235241.4-162229 |SR | 7.53 | 7.75 | |Hp| | | 34.32 | |M2III |HIP HIP | +040271 |LW Aqr |235247.6-120101 |LB | 7.24 | 7.46 | |Hp| | | | |M4III |HIP HIP | +040272 |LX Aqr |235607.2-215931 |SRB | 7.29 | 7.38 | |Hp| | | 312. | |M2III |HIP HIP | +040273 |LY Aqr *|205107.5-082737 |R | 22.34 | 23.24 | |R | | | 0.1 | | |75013 75013| +040274 |LZ Aqr *|212314.5-054753 |XNDR | 16.5 | 21.7 | |R |50998. |1998 | | |pec(e) |N0130 | +040275 |MM Aqr |223312.3-200222 |ACVO | 10.09 |( 0.01 )| |B | | | 0.0080 | |ApEuSrCr |75015 BD | +040276 |MN Aqr |230400.5-205424 |M | 10.0 |< 14.5 | |V |52424. | | 285.4 | | |N0002 06286| +040277 |MO Aqr *|210357.0-021004 |EW | 9.95 | 10.28 | 10.26 |V |51998.469 | | 0.398140 | | |N0002 BD | +040278 |MP Aqr |203912.4-092310 |LB | 10.0 | 10.9 | |V | | | | | |00001 BD | +040279 |MQ Aqr |203934.7-065004 |SRB | 12.0 | 12.7 | |V | | | 65.6 : | | |00001 GSC | +040280 |MR Aqr |204121.1-054503 |SRB | 11.8 | 12.5 | |V | | | 93. | | |00001 GSC | +040281 |MS Aqr |204222.5-025442 |SRB | 10.4 | 11.3 | |V | | | 50. : | | |00001 GSC | +040282 |MT Aqr |204254.3-101108 |LB | 10.0 | 10.8 | |V | | | | | |00001 BD | +040283 |MU Aqr *|204813.3-012926 |EW | 11.11 | 11.63 | 11.62 |V |52396.876 | | 0.272220 | | |N0002 GSC | +040284 |MV Aqr |205037.4-135013 |SRB | 11.1 | 12.7 | |V | | | 95. | | |N0002 GSC | +040285 |MW Aqr |205127.5-025239 |SRB | 11.0 | 11.9 | |V | | | 64. | | |00001 GSC | +040286 |MX Aqr |205246.0-074538 |LB | 9.3 | 10.2 | |V | | | | |M8 |00001 BD | +040287 |MY Aqr |205556.0-012114 |SRB | 11.0 | 11.7 | |V | | | 113. | | |00001 GSC | +040288 |MZ Aqr |210513.0-101802 |SRB | 10.4 | 10.8 | |V | | | 61. : | | |00001 GSC | +040289 |NN Aqr *|214354.0-001341 |EW | 13.47 | 14.14 | 14.1 |R |51487.689 | | 0.30678 | | |00001 77201| +040290 |NO Aqr *|204418.0-124802 |EW | 14.15 | 14.73 | 14.70 |* |52496.3652 | | 0.32275 | | |78135 GSC | +040291 |NP Aqr *|205119.1-135528 |EB | 7.59 | 7.69 | 7.64 |V |47985.661 | | 0.806982 | |F0V |78011 BD | +040292 |NQ Aqr *|210753.5-113325 |EW | 12.3 | 13.0 | 12.8 |V |51875.185 | | 0.429587 | | |N0002 06286| +040293 |NR Aqr |210935.1-140700 |SRS: | 7.56 |( 0.02 )| |V | | | 12.08 : | |K5III |78018 BD | +040294 |NS Aqr |211702.1-010439 |BY | 8.08 |( 0.02 )| |V | | | 13.78 : | |K0V |78018 BD | +040295 |NT Aqr |220605.3-052129 |BY | 7.57 |( 0.06 )| |V | | | 10.29 | |G0V |78018 BD | +040296 |NU Aqr |223753.2-132215 |LB: | 8.72 |( 0.02 )| |V | | | | |K0III |78018 BD | +040297 |NV Aqr |223934.6-123655 |BY | 7.74 |( 0.02 )| |V | | | 6.20 : | |G8/K0V |78018 BD | +040298 |NW Aqr *|224943.0+004601 |EW | 13.3 | 14.2 | 14.1 |V |52135.5996 | | 0.301628 | | |00001 GSC | +040299 |NX Aqr |232406.3-073303 |BY: | 7.62 |( 0.02 )| |V | | | | |G5V |78018 BD | +040300 |NY Aqr |210900.9-142723 |RRAB | 13.0 | 13.8 | |V |52055.846 | | 0.601730 | | |N0002 06286| +040301 |NZ Aqr |204605.1-043107 |LB | 10.4 | 10.9 | |V | | | | | |79100 DM | +040302 |OO Aqr |204943.2-130736 |EW | 9.20 | 9.60 | 9.59 |V |52227.514 | | 0.586612 | |A5IV/V |79011 79096| +040303 |OP Aqr |205810.4-030731 |LB | 8.60 | 9.40 | |V | | | | |M5 |79100 DM | +040304 |OQ Aqr |210609.1-081112 |SRB | 10.1 | 11.5 | |V | | | 45. | | |79064 79096| +040305 |OR Aqr |211313.7-041600 |EA | 7.94 | 8.11 | 8.11 |V |47977.020 | | 11.42365 |03 |F0V |79004 DM | +040306 |OS Aqr |212539.2-133219 |EB | 12.00 | 12.60 | 12.26 : |V |52032.833 | | 0.586774 | | |79011 79010| +040307 |OT Aqr |222913.3-090254 |SRB | 9.6 | 10.1 | |V | | | 33.8 | | |79064 79227| +040308 |OU Aqr |230848.0-122040 |LB | 9.9 | 10.5 | |V | | | | | |79100 DM | +040309 |OV Aqr *|232608.6-192224 |EA | 8.72 | 8.98 | |V |48635.393 | | 21.66595 |02 : |F2V |79003 DM | +040310 |OW Aqr |233218.0-172351 |RRAB | 12.1 | 13.1 | |V |52862.722 | | 0.655178 |11 | |79064 79210| +040311 |OX Aqr |235401.3-074039 |RRAB | 12.0 | 13.0 | |V |52942.597 | | 0.52891 |20 | |79064 79086| +040312 |OY Aqr |203850.6-094556 |RRAB | 13.34 | 14.68 | |* |51421.42 | | 0.59881 | | |80026 GSC | NL80_3 +040313 |OZ Aqr |203917.3-053026 |RRAB | 13.66 | 14.55 | |* |51408.91 | | 0.53388 | | |80026 GSC | NL80_3 +040314 |PP Aqr |204243.8-090545 |DSCT | 13.55 | 13.70 | |* | | | 0.083195 | | |80005 GSC | NL80_3 +040315 |PQ Aqr |204315.8-090929 |RRAB | 12.9 | 13.9 | |V |52732.905 | | 0.512286 |15 | |80001 GSC | NL80_3 +040316 |PR Aqr |204334.7-073648 |LB | 12.4 | 13.1 | |* | | | | |M5 |80062 USNO | NL80_3 +040317 |PS Aqr |204403.7-032312 |RRAB | 13.92 | 14.86 | |* |51408.76 | | 0.59102 | | |80026 GSC | NL80_3 +040318 |PT Aqr |204429.6-002839 |RS | 11.85 | 12.25 | |V | | | 5.87332 | | |80001 GSC | NL80_3 +040319 |PU Aqr |204739.4+000840 |UG | 17.76 | 20.6 | |r | | | | |pec |80559 | NL80_3 +040320 |PV Aqr |204859.6-064455 |RS | 9.52 | 9.70 | |V | | | 2.05714 | |G5 |80001 DM | NL80_3 +040321 |PW Aqr |205017.9-053627 |E+XM | 17.75 | 19.28 | |V |52880.3276 | | 0.0654246 | |pec(e) |80119 USNO | NL80_3 +040322 |PX Aqr |205253.7-003800 |RRAB | 12.56 | 13.8 | |V |53547.8122 | | 0.500601 |11 | |80239 80239| NL80_3 +040323 |PY Aqr |205356.0-063202 |EW | 12.7 | 13.3 | 13.2 |V |52025.9 | | 0.402089 | | |80001 GSC | NL80_3 +040324 |PZ Aqr |205413.4-081838 |EW | 16.0 | 16.4 | 16.3 |* |52887.681 | | 0.25325 | | |80560 80560| NL80_3 +040325 |QQ Aqr |205438.1-073857 |EW | 15.8 | 16.5 | 16.4 |* |52887.526 | | 0.2694 | | |80560 80560| NL80_3 +040326 |QR Aqr |205501.3-065755 |EW | 13.0 | 13.6 | 13.5 |V |54331.651 | | 0.2409176 | | |80001 GSC | NL80_3 +040327 |QS Aqr |205835.6-132207 |EA | 7.46 | 8.05 | 7.71 |V |52445.749 | | 5.78261 | |G0V |80015 DM | NL80_3 +040328 |QT Aqr *|205914.9-061220 |UG | 16.6 | 19. | |V | | | | | |80064 USNO | NL80_3 +040329 |QU Aqr *|210014.1+004446 |UGSU | 16.1 | 18.8 | |V | | | | | |80564 80564| NL80_3 +040330 |QV Aqr *|210449.9+010546 |UG | 17.05 | 21.0 | |g | | | | |pec(UG) |80064 80027| NL80_3 +040331 |QW Aqr *|210726.1+011018 |RR(B) | 13.01 | 14.22 | |V | | | 0.35498 | | |80132 GSC | NL80_3 +040332 |QX Aqr |211406.0+001912 |CWA | 11.9 | 13.0 | |V |54709.7 | | 15.2875 |50 : | |80001 GSC | NL80_3 +040333 |QY Aqr |212955.0+010024 |RRAB | 12.9 | 13.9 | |V |51876.60 | | 0.48068 |15 | |80001 GSC | NL80_3 +040334 |QZ Aqr *|213122.4-003937 |UGSU | 14.1 | 21. | |* | | | | | |80577 USNO | NL80_3 +040335 |V0335 Aqr |213418.6-033956 |EA | 12.51 | 13.8 | 12.66 |V |52790.875 | | 1.319812 |08 | |80011 GSC | NL80_3 +040336 |V0336 Aqr |214012.7-012250 |RRAB | 13.85 | 14.73 | |* |51455.74 | | 0.48838 | | |80026 GSC | NL80_3 +040337 |V0337 Aqr |214105.8+022215 |RS | 11.3 | 12.2 | |V | | | 10.903 | | |80001 GSC | NL80_3 +040338 |V0338 Aqr |214610.0-010648 |EW | 12.55 | 13.3 | 13.3 |V |54297.845 | | 0.285143 | | |80001 GSC | NL80_3 +040339 |V0339 Aqr |214648.0-013245 |EA | 12.7 | 13.4 | 12.8 |V |52854.655 | | 1.073733 |15 | |80001 GSC | NL80_3 +040340 |V0340 Aqr |214842.5-000723 |UGSU: | 15.0 | 22.8 | |r'| | | | | |80582 | NL80_3 +040341 |V0341 Aqr |215141.3-030829 |RRAB | 12.6 | 13.5 | |V |51874.50 | | 0.486658 |20 | |80001 GSC | NL80_3 +040342 |V0342 Aqr |215356.7-023431 |BY | 11.8 | 11.9 | |* | | | 7.71 | | |80043 80043| NL80_3 +040343 |V0343 Aqr |220018.9-100248 |BY | 12.55 | 13.2 | |V | | | 7.034 | |K7V |80001 GSC | NL80_3 +040344 |V0344 Aqr |221519.8-003257 |UG: | 17.3 |< 19.7 | |* | | | | | |80410 80410| NL80_3 +040345 |V0345 Aqr |222300.5-032257 |BY | 10.9 | 11.4 | |V | | | 7.589 | |G9IVe |80034 DM | NL80_3 +040346 |V0346 Aqr |223152.9+023725 |RRAB | 13.08 | 14.06 | |V |52873.779 | | 0.53601 |14 | |80386 GSC | NL80_3 +040347 |V0347 Aqr |223303.1-111650 |RRAB | 13.60 | 14.83 | |* |51506.15 | | 0.60515 | | |80026 GSC | NL80_3 +040348 |V0348 Aqr |223648.1-080108 |RRC | 11.62 | 12.10 | |V |51456.690 | | 0.332914 |39 | |80083 GSC | NL80_3 +040349 |V0349 Aqr *|223843.8+010821 |XM: | 18.00 | 18.50 | |V | | | 0.0046725 | |pec(e) |80119 80027| NL80_3 +040350 |V0350 Aqr |223927.3-013657 |EW | 12.8 | 13.4 | 13.2 |V |51872.9 | | 0.430350 | | |80002 GSC | NL80_3 +040351 |V0351 Aqr |224410.1+005854 |EW | 12.50 | 12.95 | 12.90 |V |54365.632 | | 0.284671 | | |80596 GSC | NL80_3 +040352 |V0352 Aqr |224624.4-125448 |RRAB | 12.35 | 13.7 | |V |53905.912 | | 0.510933 |17 | |80001 GSC | NL80_3 +040353 |V0353 Aqr |224646.1-205838 |BY | 10.75 | 11.05 | |V | | | 5.0289 | | |80001 DM | NL80_3 +040354 |V0354 Aqr *|225247.5-244214 |RRAB | 12.55 | 13.8 | |V |55048.690 | | 0.5295565 |25 | |80377 GSC | NL80_3 +040355 |V0355 Aqr |230840.2-162300 |BY | 10.20 | 10.46 | |V | | | 5.160 | |K5V |80034 DM | NL80_3 +040356 |V0356 Aqr |231549.9-230013 |RRAB | 12.1 | 13.2 | |V |54309.7828 | | 0.554596 |08 | |80002 GSC | NL80_3 +040357 |V0357 Aqr *|231603.1-155331 |EW | 9.98 | 10.25 | 10.23 |V |51868.143 | | 0.470110 | |G0 |80036 DM | NL80_3 +040358 |V0358 Aqr *|231603.6-052709 |XM | 15.7 | 17.5 | |Rc|52825.8376 | | 0.1454516 | | |80620 80027| NL80_3 +040359 |V0359 Aqr |231707.0-123813 |RRAB | 13.89 | 15.39 | |* |53626.722 | | 0.5653044 |15 | |80001 GSC | NL80_3 +040360 |V0360 Aqr *|232030.7-144757 |RRAB | 12.3 | 13.0 | |V |54398.723 | | 0.6269552 |15 | |80377 GSC | NL80_3 +040361 |V0361 Aqr |232334.0-080045 |RRAB | 13.27 | 14.26 | |CV|55039.94 | | 0.5140994 |14 | |80001 GSC | NL80_3 +040362 |V0362 Aqr *|232547.8-113636 |EA+DSCTC | 9.55 | 9.80 | 9.62 |V |52058.5821 | | 1.594251 |13 |A2III |80281 DM | NL80_3 +040363 |V0363 Aqr |235427.8-123634 |EA | 12.3 | 12.8 | 12.45 : |V |52132.775 | | 1.99119 |08 |A5 |80011 GSC | NL80_3 +049011 |lam Aqr |225236.9-073447 |LB | 3.57 | 3.80 | |V | | | | |M2.5IIIa |HIP HIP | +049015 |omi Aqr |220318.8-020919 |GCAS | 4.68 | 4.89 | |V | | | | |B7IVe-sh |HIP HIP | +049016 |pi. Aqr |222516.6+012239 |GCAS | 4.42 | 4.87 | |V | | | | |B1Ve |08067 HIP | +049022 |khi Aqr |231650.9-074335 |SRB: | 4.75 | 5.10 | |V | | | 35.250 : | |M3III |N0132 HIP | +0490232|psi 2 Aqr |231754.2-091057 |BE: | 4.40 |( 0.06 b )| |V | | | 1.073 | |B5V |71150 HIP | +050001 |R Aql *|190622.3+081348 |M | 5.5 | 12.0 | |V |43458. | | 284.2 |42 |M5e-M9e |00001 00002| +050002 |S Aql |201137.5+153715 |SRA | 8.9 | 12.8 | |V |43855. | | 146.45 |48 |M3e-M5.5e |00001 00002| +050003 |T Aql |184543.7+084436 |LB: | 10.6 | 11.0 | |p | | | | |M5 |00340 00097| +050004 |U Aql *|192921.4-070239 |DCEP | 6.08 | 6.86 | |V |34922.31 | | 7.02393 |30 |F5I-II-G1 |02392 02061| +050005 |V Aql |190424.2-054105 |SRB | 6.6 | 8.4 | |V | | | 353. | |C5,4-C6,4(N6) |00444 00097| +050006 |W Aql *|191523.4-070250 |M | 7.3 | 14.3 | |V |39116. | | 490.43 |37 |S3,9e-S6,9e |00001 00002| +050007 |X Aql |195129.8+042752 |M | 8.3 | 15.5 | |V |41487. | | 347.04 |46 |M6e |00001 00002| +050008 |Y Aql *|190658.6+110416 |E/KE | 5.02 |( 0.04 )|( 0.03 )|B |38607.445 | | 1.30227 | |B8III-V |05239 BD | +050009 |Z Aql |201511.0-060904 |M | 8.2 | 14.8 | |V |41938. | | 129.226 |47 |M3e |00001 00002| +050010 |RR Aql *|195736.1-015311 |M | 7.8 | 14.5 | |V |41764. | | 394.78 |30 |M6e-M9 |00001 00002| +050011 |RS Aql |195906.6-075302 |M | 8.7 | 15.4 | |V |39193. | | 410.12 |48 |M5e-M8 |00001 00002| +050012 |RT Aql *|193801.6+114318 |M | 7.6 | 14.5 | |V |43290. | | 327.11 |42 |M6e-M8e(S) |00001 00002| +050013 |RU Aql |201244.8+125941 |M | 8.7 | 14.8 | |V |39171. | | 274.24 |42 |M5e |00001 00002| +050014 |RV Aql |194043.1+095552 |M | 8.1 | 15.0 | |V |42618. | | 218.60 |47 |M2e-M7:e |00001 00002| +050015 |RW Aql |201151.4+160335 |CST: | 9.0 | | |p | | | | |F3n |00333 00097| +050016 |RX Aql |194511.2+082641 |M | 13. | 17.5 : | |p |16729. | | 206. | | |02063 01960| +050017 |RY Aql |194823.0+113129 |M | 11.4 |< 15. | |p |35010. | | 353.2 | |M3IIIe-M5e |00001 00114| +050018 |RZ Aql |195353.8+093936 |M | 12.1 |< 14.5 | |p |29479. | | 336.75 | |M5e |00114 00114| +050019 |SS Aql |193233.5+103127 |M | 13.3 | 16. | |p |16795. | | 148. | |M6 |00114 00114| +050020 |ST Aql |194916.2+122213 |M | 12.5 |< 15. | |p |34990. | | 248.7 | | |00001 00114| +050021 |SU Aql |193600.3+040524 |M | 12.4 |< 16. | |p |31000. :| | 393. : | |S | 00114| +050022 |SV Aql |193901.8+115646 |M | 10.6 | 15.0 | |V |39170. | | 252.89 | |M8 |00001 00114| +050023 |SW Aql |195040.7+124913 |M | 13.3 | 16. | |p |29490. | | 247.0 | | |00343 00114| +050024 |SX Aql |195055.0+131313 |M | 12.7 | 16. | |p |27327. | | 309.5 | |M3e |00114 00114| +050025 |SY Aql *|200705.4+125706 |M | 8.3 | 15.4 | |V |42651. | | 355.92 |37 |M5e-M7e |00001 00002| +050026 |SZ Aql *|190439.4+011822 |DCEP | 7.92 | 9.26 | |V |35528.937 | | 17.137939 |37 |F7-K1 |00025 06225| +050027 |TT Aql *|190813.8+011755 |DCEP | 6.46 | 7.70 | |V |37236.10 | | 13.7546 |34 |F6-G5 |03509 06225| +050028 |TU Aql |192736.4+020311 |M | 10.3 | 16. : | |p |42930. | | 270.39 | |M4-M9 |00001 00114| +050029 |TV Aql *|201249.6+061800 |M | 9.9 |< 14.0 | |V |40434. | | 243.22 | |M4e |00001 00002| +050030 |TW Aql *|195100.9+135816 |SRD | 9.9 | 11.4 | |V |27588. | | 64.6 |41 |G0-K0 |00310 00537| +050031 |TX Aql |200637.5+035146 |SRD | 10.0 | 10.8 | |V | | | 35. |48 |G0 | 00537| +050032 |TY Aql |191507.7-070049 |ACV: | 10.5 | 11.0 | |p | | | | |A1p(Si) | 00002| +050033 |TZ Aql |203018.5-044517 |LB | 10.2 | 11.0 | |p | | | | |M6 | BD | +050034 |UU Aql *|195718.6-091920 |UGSS | 11.0 | 16.8 | |p | | |( 49.5 ) | |pec(UG) |08716 00002| +050035 |UV Aql |185832.4+142150 |SRA | 11.1 | 12.4 | |p |30906. | | 385.5 | |C5,4-5(N4) |01004 BD | +050036 |UW Aql |185733.6+002721 |LC | 10.1 | 11.6 | |p | | | | |M0Iab-M2Ia-Iab |02274 02274| +050037 |UX Aql |190025.1-112923 |M: | 14.0 |< 15.7 | |p |23645. | | 375. | | |01401 06286| +050038 |UY Aql *|190102.0-105501 |L | 14.3 | 15.3 | |p | | | | | |04231 06286| +050039 |UZ Aql |191328.2-102441 |M | 13.9 |< 17.0 | |p |36833. | | 285.9 | | |00504 00504| +050040 |VV Aql |194818.6-062633 |M: | 12.4 |< 15.5 | |p |21821. | | 259. | | |02064 06286| +050041 |VW Aql |185255.3+114107 |L | 11.4 | 12.8 | |p | | | | |M5III: |00266 00002| +050042 |VX Aql *|190009.6-013457 |M: | 12.2 |< 16.0 | |p | | | | |C9,1p(M0ep) | 06286| +050043 |VY Aql |190321.8-070924 |M | 11. |< 16. | |p |36103. | | 333.2 | |M5:e |00001 06286| +050044 |VZ Aql *|190503.0-065058 |CWB | 13.20 | 14.04 | |V |38231.625 | | 1.668239 |30 | |05375 02460| +050045 |WW Aql |191608.6-080456 |M | 11.5 |< 15. | |p |34314. | | 174.5 | |M3III:e |01006 06286| +050046 |WX Aql |194837.2+034149 |SRB | 11.5 | 12.6 | |p |30584. | | 107. |45 |M6 |01000 GSC | +050047 |WY Aql |195142.7+162459 |M | 12.5 |< 15.0 | |p |27552. | | 388. | |M3 |00773 00772| +050048 |WZ Aql |201439.0+044705 |M | 11.1 |< 14.0 | |p |34600. | | 316.4 | |M4-M6ep |00001 00114| +050049 |XX Aql |195101.1-003538 | | 13.2 | 14.9 | |p | | | | | |01521 GSC | +050050 |XY Aql |191451.0+041431 |M | 9.5 | 17. : | |V |38663. | | 423.4 | |M8 |00001 01956| +050051 |XZ Aql *|202213.4-072104 |EA/SD: | 10.1 | 11.4 | |p |41903.461 | | 2.139181 |14 *|A2 |00001 GSC | +050052 |YY Aql |185931.7-113458 |IS: | 15.2 |< 17.3 | |p | | | | | |00504 00504| +050053 |YZ Aql *|191646.2-003617 |EA/SD: | 10.5 | 14.2 | |V |34222.639 | | 4.67230 |15 |A3 |00769 01956| +050054 |ZZ Aql |192552.1-065830 |M | 12.7 | 17.1 | |p |38246. | | 145.50 |45 |Me |05405 05405| +050055 |AA Aql *|203815.1-025325 |RRAB | 11.00 | 12.34 | |V |24347.3966 | | 0.36178688 |17 |A5-F5 |03506 04449| +050056 |AB Aql |184742.7-020038 |LB | 11.2 | 13.7 | |p | | | | |M6III |01792 02274| +050057 |AC Aql *|185908.5-114101 |SRA | 13.4 | 15.7 | |p |36450. | | 159.93 |32 | |00504 00504| +050058 |AD Aql *|185908.7-081014 |RVA | 11.5 | 13.5 | |p |27628. | | 65.4 | |Fp(R) |00310 04231| +050059 |AE Aql *|185921.3-060636 |M | 14.1 | 17.8 | |p |26203. | | 222.5 | | |00742 2MASS| +050060 |AF Aql *|185932.2-090658 |M: | 15.0 |< 16.5 | |p |24037. | | 461. | | |01395 2MASS| +050061 |AG Aql |185932.8-060852 |M | 14.5 |< 16.5 | |p |23536. | | 182. | | |01395 06286| +050062 |AH Aql |190004.0-071917 |M | 11.7 |< 14.3 | |V |55104. | | 189. | | |00001 06286| +050063 |AI Aql |190012.4-073137 |SRA | 13.6 | 15.1 | |p |34188. | | 103. | | |04231 04231| +050064 |AK Aql |190030.6-065513 |M | 10.8 |< 17.0 | |p |38656. | | 298.0 | |M6e |00001 01594| +050065 |AL Aql *|190224.4-083310 |EA/DS | 11.2 | 13.4 | |p |38296.313 | | 20.98630 |10 | |08717 00504| +050066 |AM Aql |190217.9-060707 |M | 12.6 |< 17. | |p |20323. | | 210. |50 | |04231 04231| +050067 |AN Aql |190237.9-093221 |M | 14.0 |< 17.0 | |p |29886. | | 189. | | |04231 06286| +050068 |AO Aql |190244.1-061112 |M | 12.8 |< 17.2 | |p |40055. | | 285.9 |25 | |00001 00504| +050069 |AP Aql |190258.5-114512 |M: | 15.0 |< 16.5 | |p |38973. | | 263. | | |00504 00504| +050070 |AQ Aql |190314.4-110520 |M | 14.6 |< 16.5 | |p |28036. | | 278.25 | |M6 |00504 00504| +050071 |AR Aql |190319.0-113914 | | 15.0 | 15.8 | |p | | | | | |01618 GSC22| +050072 |AS Aql |190518.8-114014 | | 15.3 | 15.8 | |p | | | | | |01618 GSC22| +050073 |AT Aql |190714.7-110430 | | 15.2 | 15.7 | |p | | | | | |01618 GSC22| +050074 |AU Aql *|190713.9-071853 |SRA | 13.5 | 14.8 | |p |36423. | | 124.84 |45 | |00504 03146| +050075 |AV Aql |190824.1-092833 |M | 13.8 |< 16.5 | |p |36386. | | 440.1 | | |00504 00504| +050076 |AW Aql |190927.8-111205 |M | 13.2 | 18.0 | |p |23612. | | 267.5 | | |04231 06286| +050077 |AX Aql |191116.5-091019 |M | 12.6 |< 17.4 | |p |38977. | | 284.52 | | |06427 06427| +050078 |AY Aql |191146.2-112313 |RRAB | 15.2 | 16.4 | |p |36402.453 | | 0.4658136 |30 : | |06027 03146| +050079 |AZ Aql |191343.5-021137 | | 15.2 |< 16.5 | |p | | | | | |02066 GSC | +050080 |BB Aql |191639.1-085541 |M | 13.4 | 17.0 | |p |28740. | | 230.86 |48 | |00504 00504| +050081 |BC Aql |191724.2-090452 |CEP | 14.2 | 15.7 | |p |38889.618 | | 2.90513 |30 | |06027 03147| +050082 |BD Aql |191833.5-062214 |M | 14.6 |< 16.5 | |p |39052. | | 315.03 | | |00504 03146| +050083 |BE Aql |191929.6-065008 |M | 13.0 | 16.6 | |p |38230. | | 212.93 |45 | |00504 00504| +050084 |BF Aql |192023.6-062739 |M | 13.7 |< 16.5 | |p |36873.5 | | 288.49 | | |00504 00504| +050085 |BG Aql |192042.9-045258 |M | 14.2 |< 16.5 | |p |36797.5 | | 253.43 | | |00504 00504| +050086 |BH Aql |192119.0-064643 |L: | 14.1 | 15.3 | |p | | | | |M:e |00504 00504| +050087 |BI Aql |192211.6-082312 |M | 13.1 |< 16.5 | |p |38814. | | 412.01 | |M0e |00504 03146| +050088 |BK Aql |192300.3-084417 |M | 13.1 | 17.6 | |p |36403. | | 278.48 |28 | |00504 00504| +050089 |BL Aql *|192400.4-091405 |M | 13.2 | 16.1 | |p |36420. | | 157.32 |46 |M3 |00504 00504| +050090 |BM Aql |192512.3-073447 |M: | 13.7 |< 15.3 | |p |15562. | | 236.7 | | |00265 06286| +050091 |BN Aql |192508.5-011059 | | 15.5 | 16.5 | |p | | | | | |02066 GSC | +050092 |BO Aql |192601.4-061840 |L: | 13.9 | 15.0 | |p | | | | | |00504 00504| +050093 |BP Aql |192611.0-063435 |M | 13.0 | 16.5 | |p |38892. | | 193.40 |38 |M3e |00504 00504| +050094 |BQ Aql |192616.8-070246 |M | 13.4 | 15.0 | |p |37887. | | 235.66 |49 | |00504 00504| +050095 |BR Aql |192653.7-010425 | | 15.2 | 16.4 | |p | | | | | |02066 2MASS| +050096 |BS Aql |193029.1-085039 |L: | 13.9 | 15.0 | |p | | | | | |00504 00504| +050097 |BT Aql |193223.4-080629 |M | 12.4 | 16.5 | |p |38925.6 | | 292.52 |30 | |00504 00504| +050098 |BU Aql |193249.4-020238 | | 15.4 | 16.5 | |p | | | | | |02066 GSC | +050099 |BV Aql |193305.0-064907 |M | 14.0 | 16.5 | |p |38983. | | 204.55 |45 | |00504 00504| +050100 |BW Aql |193354.5-080041 |CEP: | 16.0 | 16.5 | |p | | | | | |01395 USNO | +050101 |BX Aql |193401.3-015847 | | 14.4 | 16.4 | |p | | | | | |02066 06286| +050102 |BY Aql *|193531.3-084050 |SRA | 14.1 | 16.2 | |p |38149. | | 187.25 |40 | |00504 00504| +050103 |BZ Aql |193529.1-014418 |M | 14.2 |< 17. | |p |37835. | | 311. | | |03148 USNO | +050104 |CC Aql |193647.0-010254 | | 16.1 |< 16.5 | |p | | | | | |02066 USNO | +050105 |CD Aql *|193815.3-041859 |M | 12.7 |< 15.5 | |p |36390. | | 227.03 | | |00504 00504| +050106 |CE Aql |194022.1-013432 | | 15.6 | 16.4 | |p | | | | | |02066 USNO | +050107 |CF Aql |194026.6-015239 | | 14.0 |< 16.5 | |p | | | | | |02066 06286| +050108 |CG Aql |194124.0-032215 |M: | 12.8 |< 16.5 | |p | | | | |M6III:e |02066 GSC | +050109 |CH Aql |203342.2-053849 |RR | 11.5 | 12.5 | |p |36050.335 | | 0.38918702 | | |03506 00504| +050110 |CI Aql |185203.6-012839 |N: | 11. | 15.5 | |p | | | | | |00266 USNO | +050111 |CK Aql |190230.8-045451 |SR | 14.9 | 15.7 | |p | | | | | |06996 06996| +050112 |CL Aql *|190250.8-095637 |M: | 12.8 |< 16.6 | |p |36375. | | 369. | | |06426 00504| +050113 |CM Aql *|190335.1-030315 |ZAND | 13.0 | 16.5 | |p | | | | |pec |02069 00504| +050114 |CN Aql |190735.9-081335 |M | 11.5 | 15.0 | |p |17094. | | 358. | | |01627 06286| +050115 |CO Aql |190932.8-101747 |M | 13.2 |< 16.0 | |p |38957. | | 168.64 | | |00504 00504| +050116 |CP Aql |191134.3-101552 |SRA | 14.2 | 16.3 | |p |39046. | | 103.57 |50 | |00504 00504| +050117 |CQ Aql |191141.0-100824 |SRA | 14.0 | 16.0 | |p |36379. | | 237.8 | | |00504 00504| +050118 |CR Aql *|191253.1-085339 |RRAB | 13.7 |< 15.5 | |p |37525.396 | | 0.4562249 |20 | |06027 06027| +050119 |CS Aql *|191542.2-103534 |M | 13.2 |< 15.5 | |p |38961. | | 255.68 | | |00504 00504| +050120 |CT Aql *|191704.7-092251 |M | 13.5 | 16.3 | |p |38949. | | 226.72 |42 | |00504 00504| +050121 |CU Aql *|191828.6-104136 |M | 11.8 | 15.8 | |p |36418. | | 199.22 |49 |M1III:e |00504 03147| +050122 |CV Aql *|191835.9-093326 |M | 14.6 |< 17. | |p |38269. | | 275.55 | | |00504 00504| +050123 |CW Aql *|191850.2-065743 |M | 13.9 | 16.3 | |p |36830.5 | | 317.97 |28 | |00504 00504| +050124 |CX Aql |191913.2-084152 |M | 13.7 |< 16.5 | |p |37859.2 | | 256.12 | | |00504 00504| +050125 |CY Aql |191925.0+003058 |M | 11.4 | 18.4 | |p |38576. | | 350.0 | |M8e |00001 03150| +050126 |CZ Aql |191958.2-071055 |L: | 13. | 15. | |p | | | | | |00504 00504| +050127 |DD Aql *|192021.4-093945 |M | 13.1 | 16.2 | |p |37575. | | 260.36 | |Me |00504 00504| +050128 |DE Aql |192033.8-095116 |M | 13.6 |< 17. | |p |36381. | | 256.87 | | |00504 00504| +050129 |DF Aql |192040.3-113045 |M | 12.3 | 15.2 | |p |38317. | | 242.97 |50 |M2III:e |00504 00504| +050130 |DG Aql |192220.6-114609 |SRA | 13.7 | 15.0 | |p |36446. | | 183.92 |28 | |00504 00504| +050131 |DH Aql |192610.8-101529 |UGSS | 12.5 |< 17.0 | |p | | |( 268. ) | | |05300 08807| +050132 |DI Aql |192632.9-113753 |M | 13.3 | 16.0 | |p |36393. | | 330.32 |30 |M4III:e |00504 00504| +050133 |DK Aql |192654.3-111315 |EA/SD: | 13. | 14. | |p |37527.393 | | 4.5468 | | |06027 06027| +050134 |DL Aql |192747.5-074905 |M | 14.7 |< 16.5 | |p |39065. | | 279.74 | | |00504 00504| +050135 |DM Aql |192811.3+042156 |M | 11.5 |< 16. | |p |33462. | | 343.2 | |M1 |01006 06286| +050136 |DN Aql |193132.8-104746 |SR: | 11.7 | 12.8 | |p | | | 110. : | |M6 |02072 BD | +050137 |DO Aql |193125.8-062539 |NB | 8.6 | 17.8 | |p |24450. :|1925 | | |pec(NOVA) | 00536| +050138 |DP Aql |193329.8-103526 |M | 13.8 | 16.5 | |p |36446. | | 340.90 | | |00504 00504| +050139 |DQ Aql |193333.1-114150 | | 14.0 | 15.8 | |p | | | | | |01469 06286| +050140 |DR Aql |193319.9+040612 |M | 12.5 |< 15.8 | |p |25520. | | 237. | | |02461 06286| +050141 |DS Aql |193643.6-081530 |M | 13.5 |< 16. | |p |36424. | | 246.88 | | |00504 00504| +050142 |DT Aql *|194125.5+012007 |M | 11. |< 16. | |p |38656. | | 288. | |M4 |00001 02544| +050143 |DU Aql |194312.9-073106 |M | 13.3 | 15.8 | |p |38953. | | 204.55 |40 | |00504 00504| +050144 |DV Aql |194327.3-101342 |M | 13.6 | 15.8 | |p |38919. | | 159.2 |46 | |00504 00504| +050145 |DW Aql |194411.4-112321 |M | 14.2 |< 16. | |p |38247. | | 157.0 | | |00504 00504| +050146 |DX Aql |194434.0-105817 |M | 11.0 |< 16. | |p |35045. | | 313.2 | |Me |00001 00567| +050147 |DY Aql *|194630.5-105655 |RV | 10.2 | 12.9 | |p |28344. | | 131.42 | |G8e-M3Ia |00368 00368| +050148 |DZ Aql |194629.4+014635 |M | 13.2 |< 16.0 | |p |27330. | | 284. | | |03152 03152| +050149 |EE Aql |194902.9-104625 | | 13.5 | 16. | |p | | | | | |01469 06286| +050150 |EF Aql |195151.7-054817 | | 12.7 | 15.0 | |p | | | | | |01469 06286| +050151 |EG Aql |195512.9-034820 |M | 13.3 | 16.0 | |p |27274. :| | 293. | | |02199 06286| +050152 |EH Aql |200049.9-095025 |L: | 13.4 | 15.5 | |p | | | | |M3III:e |01469 06286| +050153 |EI Aql |201021.3-001328 | | 13.5 |< 16. | |p | | | | | |01469 06286| +050154 |EK Aql |201400.5-051015 |M | 11.2 | 16.0 | |p |25805. | | 151.8 |40 |M3e-M4e |00266 06286| +050155 |EL Aql |185602.0-031920 |NA | 5.5 : | 19.0 | |p |25043. :|1927 | | |pec(NOVA) |00715 02075| +050156 |EM Aql |192307.7+055510 |M | 11. | 15. | |p |38586. | | 254.4 | |M7 |00001 01956| +050157 |EN Aql |200441.7-082132 | | 13.0 | 14.1 | |p | | | | | |01733 | +050158 |EO Aql |201654.3-081947 |S: | 12.9 | 13.8 | |p | | | | |M6 |01733 06286| +050159 |EP Aql |202526.8-080514 |M | 11.6 |< 14.0 | |p |18919. | | 431.1 | | |00797 06286| +050160 |EQ Aql |190444.7+182639 |SR: | 13.5 | 15.5 | |p |33231. | | 185.4 | |M5 |00504 00504| +050161 |ER Aql |191907.0+032405 |M | 11.8 | 16.3 | |p |34221. | | 337.6 | |S |01006 00744| +050162 |ES Aql |193221.6-001131 |SR | 13.2 |< 15.1 | |p |25455. | | 101.1 | |R: |02076 06286| +050163 |ET Aql |203159.8+001114 |L | 11.8 | 13.7 | |p | | | | | |00266 GSC | +050164 |EU Aql |185823.8+164655 |M | 11.2 | 15.0 | |V |27299. | | 321. | |M9 |02427 00869| +050165 |EV Aql *|190646.2+145546 |CEP | 12.4 | 13.9 | |p |36762.2 | | 38.767 | | |06007 00869| +050166 |EW Aql |192229.3+063951 | | 12.5 | 14.0 | |p | | | | |B8 |00744 00744| +050167 |EX Aql *|192507.6+050055 |SRB | 12.1 | 13.4 | |p | | | 99. | |M4 |00310 00744| +050168 |EY Aql |193444.5+150152 |NA | 10.5 : |< 20. | |p |24762. :|1926 | | | | 02544| +050169 |EZ Aql *|193929.7+083628 |RVA | 11.1 | 14.0 | |V |28596.45 | | 38.64 | |G5-K0 |03153 00155| +050170 |FF Aql *|185814.8+172139 |DCEPS | 5.18 | 5.68 | |V |41576.428 | | 4.470916 |48 |F5Ia-F8Ia |08300 BD | +050171 |FG Aql *|190222.2-053620 |INSB | 13.8 | 15.5 | |p | | | | |K2e |00504 06996| +050172 |FH Aql *|190223.2-053637 |INSB | 13.2 |< 16.5 | |p | | | | |K1e |00504 06996| +050173 |FI Aql |190350.4+140152 |SRA | 14.0 | 16.0 | |p |33166. | | 219. | | |00504 00504| +050174 |FK Aql *|190418.6+024647 |EA/SD | 11.1 | 13.5 |( 0.03 )|p |37786.079 | | 2.650876 |12 |B9 |00001 00197| +050175 |FL Aql |190500.9+180241 |M | 13.5 | 16.0 | |p |33094. | | 208.52 | | |00504 00504| +050176 |FM Aql *|190916.0+103309 |DCEP | 7.89 | 8.66 | |V |35151.723 | | 6.11423 |30 |F5-F9Ia |02083 03203| +050177 |FN Aql *|191247.3+033327 |DCEPS | 7.96 | 8.75 | |V |36804.603 | | 9.48151 |49 |F8-G2 |05661 03203| +050178 |FO Aql |191638.1+000737 |UGSS | 13.6 | 17.5 | |p | | |( 28.7 ) | | |01949 08807| +050179 |FP Aql |191719.6-000852 |M | 10.8 |< 15.8 | |p |33447. | | 333.6 | |M8 |01007 02544| +050180 |FQ Aql |192057.0+014829 |LB | 15.1 |< 17.3 | |p | | | | |M6 |01949 01956| +050181 |FR Aql |192223.2+031847 |M | 15.5 | 19. : | |p |25545. | | 291.3 | | |01949 01956| +050182 |FS Aql |192253.5+003250 |M | 14.1 |< 17.3 | |p |25462. | | 150. | | |01949 01956| +050183 |FT Aql |192343.8-003116 |M | 13.5 |< 16.1 | |p |25529. | | 367. | | |01949 USNO | +050184 |FU Aql |192455.1+035900 |M: | 14.6 |< 16.4 | |p |25504. | | 292. | | |01949 01956| +050185 |FV Aql |192504.5+024940 |M | 13.8 |< 17.0 | |p |25808. | | 208.5 | | |01949 01956| +050186 |FW Aql |192633.8-000225 |SRA: | 13.5 | 15.3 | |p |25538. | | 340.3 | | |01949 USNO | +050187 |FX Aql |192737.9+042211 |M | 15.5 |< 17.2 | |p |25430. | | 209.5 | | |01949 01956| +050188 |FY Aql |192800.8+034158 |M | 14.9 |< 17.4 | |p |25449. | | 208. | | |01949 01956| +050189 |FZ Aql *|192915.3-061758 |LB: | 11.1 | 11.8 | |p | | | | |M: | BD | +050190 |GG Aql |192857.6+034047 |M | 15.2 |< 17.4 | |p |26250. | | 343. | | |01949 01956| +050191 |GH Aql |193036.1+021023 |M | 14.3 |< 17.3 | |p |25520. | | 146. | | |01949 01956| +050192 |GI Aql |193115.4+023101 |M | 14.1 |< 17.2 | |p |25452. | | 213.6 | | |01949 01956| +050193 |GK Aql |193158.1+003756 |M | 13.6 |< 16.8 | |p |25474. | | 196. | | |01949 01956| +050194 |GL Aql |193211.8+020252 |M | 13.6 |< 16.9 | |p |25492. | | 308. | | |01949 01956| +050195 |GM Aql *|193236.1-062814 | | 13.5 | 15.2 | |p | | | | | |01330 GSC | +050196 |GN Aql |193306.5+025122 |M | 14.9 |< 17. | |p |25400. | | 202. | | |03148 01956| +050197 |GO Aql |193329.5+013524 |M | 13.4 |< 17.4 | |p |26536. | | 154.8 | | |01949 01956| +050198 |GP Aql |193328.9+033140 |M | 14.2 |< 16.6 | |p |25538. | | 421. | | |01949 01956| +050199 |GQ Aql |193459.7-003227 |M | 14.4 |< 16.1 | |p |26178. | | 202.5 | | |01949 01956| +050200 |GR Aql |193517.9+071531 |M | 13.6 |< 16.6 | |p |25532. | | 307.5 | |M5III:e |01949 01960| +050201 |GS Aql |193552.3+040328 |S: | 14.8 | 15.6 | |p | | | | | |01943 01956| +050202 |GT Aql |193629.6+044410 |M | 13.6 |< 17.0 | |p |25530. | | 204. | | |01949 01956| +050203 |GU Aql *|193702.6+060720 |EA/SD: | 14.6 | 15.7 | |p |25447.49 | | 2.209174 |10 : | |03148 01956| +050204 |GV Aql *|194058.0-033028 |M: | 12.5 |< 16. | |p |19245. | | 318.3 | |M6e |03156 03156| +050205 |GW Aql |194547.5-080027 |M | 13.0 |< 16. | |p | | | | |Me |01330 06286| +050206 |GX Aql |194854.2-072258 |M: | 12.0 | 15.5 | |p | | | 280. : | | |00266 06286| +050207 |GY Aql *|195006.3-073653 |SR | 10. |< 16. | |p | | | 204. | |M6III:e-M8 | 06286| +050208 |GZ Aql |195617.2-000258 |M | 13.0 |< 15.2 | |p |26940. | | 196. | | |02276 06286| +050209 |HH Aql |195904.3-000311 |M | 12.4 |< 16.0 | |p |36810. | | 236.65 | | |00001 06286| +050210 |HI Aql |200725.9+093333 |M | 12.5 |< 16. | |p |28409. | | 294. | | |01440 06286| +050211 |HK Aql *|184217.7+000918 |LB: | 8.9 | 10.9 | |p | | | | |K5III |02091 02091| +050212 |HL Aql *|184635.5-020108 |RR | 14.5 | 15.2 | |p |26153.640 | | 0.4285 : | | |01392 GSC | +050213 |HM Aql |184726.4-021311 |RRC | 13.5 | 14.2 | |p |25804.630 | | 0.344997 |45 : | |04231 04231| +050214 |HN Aql |185055.2-020005 |RR: | 12.9 | 13.7 | |p | | | | | |06996 06286| +050215 |HO Aql |185358.0-002705 |L: | 13.2 | 14.8 | |p | | | | | |02274 02274| +050216 |HP Aql |185930.5-051442 |M | 14.0 | 16.9 | |p |26472. | | 231. | |M6 |04231 04231| +050217 |HQ Aql |185940.5-051413 |M | 13.3 | 16.0 | |p |26187. | | 222.2 |49 |M5.5 |04231 04231| +050218 |HR Aql |185941.6-015250 |CST | 15. | | |p | | | | | |00742 GSC | +050219 |HS Aql |190027.8-084026 |M | 13.6 | 16.7 | |p |30942. | | 267. | |M6 |04231 04231| +050220 |HT Aql |190030.9-084023 |RR: | 13.3 | 14.0 | |p | | | | | |04231 04231| +050221 |HU Aql |190026.3-053017 |L: | 14.3 | 15.1 | |p | | | | | |01392 USNO | +050222 |HV Aql |190102.0+001451 |RR | 14.4 | 15.0 | |p | | | 0.508 | | |01392 UCAC2| +050223 |HW Aql |190244.2-061152 |CST: | 14.4 | 15.0 | |p | | | | | |00504 00504| +050224 |HX Aql |190245.0-061050 |CST | 15. | | |p | | | | | |00742 00504| +050225 |HY Aql |190247.6-061333 |EA/DS | 12.8 | 15.6 | |p |38970.409 | | 8.36087 |11 | |08717 00504| +050226 |HZ Aql |190335. -022225:|L: | 15.3 | 15.9 | |p | | | | | |01392 | +050227 |II Aql |190524.4-033549 |M: | 14.1 |< 18. | |p |24350. | | 310. : | | |04231 04231| +050228 |IK Aql |190539.6-024311 |M | 14.2 | 17.0 | |p |24082. | | 283. | | |04231 GSC | +050229 |IL Aql |190650. -004523:|L: | 15.3 | 16.5 | |p | | | | | |01392 | +050230 |IM Aql *|190756.7-064514 |RRAB | 13.7 | 15.1 | |p |36423.332 | | 0.4569487 |15 | |06077 00504| +050231 |IN Aql |190834.3-043631 |E: | 15.1 |< 15.7 | |p | | | | | |01392 GSC | +050232 |IO Aql *|190842.8-070728 |CST | 13. | | |p | | | | | |01394 04231| +050233 |IP Aql *|190845.7-070753 |EA/SD: | 14.3 | 14.9 | |p |28750.494 | | 2.19384 |14 | |04231 04231| +050234 |IQ Aql |190854.1-064904 |M | 13.6 |< 16.4 | |p |24348. | | 250. | | |04231 06286| +050235 |IR Aql |190946.3-052252 |M | 12.8 |< 16.0 | |p |37838. | | 351.9 | | |00001 04411| +050236 |IS Aql *|191009.2-002151 |L: | 13.4 | 14.9 | |p | | | | |M: |04231 04231| +050237 |IT Aql |191122.6-061400 |M | 14.2 |< 17.0 | |p |24080. | | 150. | | |01401 06286| +050238 |IU Aql |191433.5-005652 |CEP: | 13.5 | 14.5 | |p |15661. | | 22. | | |01392 GSC | +050239 |IV Aql |191504.3-000540 |LB | 12.8 | 13.6 | |p | | | | |M2 |02475 02544| +050240 |IW Aql |191551.3-022054 |M | 14.6 | 17.2 | |p |28396. | | 222. |31 | |04231 GSC | +050241 |IX Aql |191942.2-020002 |E: | 14.2 |< 14.9 | |p | | | | | |01392 GSC | +050242 |IY Aql |192148.3-004225 |S: | 13.3 | 13.8 | |p | | | | | |01392 USNO | +050243 |IZ Aql |192638.5-055609 |E: | 14.3 | 14.9 | |p | | | | | |01392 GSC | +050244 |KK Aql |194749.0+143308 |SRD | 10.9 | 12.9 | |p |28308.4 | | 88.7 |42 |G2e-G6(M2) |02093 BD | +050245 |KL Aql *|200109.8+154813 |DCEP | 9.82 | 10.56 | |V |43338.695 | | 6.108015 |23 |F6Iab-G6 |08632 08632| +050246 |KM Aql |200556.3-083052 |RR | 12.7 | 13.8 | |p | | | | | |00747 06286| +050247 |KN Aql |203015.2+015237 |SRB | 8.52 | 9.35 | |V | | | 70. |41 |M5e |01331 BD | +050248 |KO Aql *|184710.7+104549 |EA/SD: | 8.3 | 9.50 | 8.40 |B |41887.4724 | | 2.864055 |13 |A0V-A3V |08720 00110| +050249 |KP Aql *|190229.9+154801 |EA/DM | 9.7 | 10.43 | 10.43 |B |40396.4912 | | 3.36747959 |08 *|F+F |07020 00110| +050250 |KQ Aql |191222.9+013309 |SR | 11.2 | 13.4 | |p |25449. | | 164.2 | |M5e |02095 00533| +050251 |KR Aql |192527.0+093812 |S: | 13.5 | 14.6 | |p | | | | |M4 |01370 06286| +050252 |KS Aql |192833.4+132734 |SR | 16.3 | 18.0 | |p |33063. | | 144. : | | |00504 06996| +050253 |KT Aql |192959.9+121920 |M: | 14.5 |< 16.0 | |p |32812. | | 266.5 | |M5 |00504 00504| +050254 |KU Aql |193109.2+122616 |M: | 14.2 |< 16.0 | |p |26574. | | 467.9 | |M5 |00504 00504| +050255 |KV Aql *|193203.2+114331 |SR | 15.5 |< 16.3 | |p |29150. | | 372. | | |03148 00504| +050256 |KW Aql |193206.1+130050 |S: | 15.0 | 15.7 | |p | | | | | |01370 USNO | +050257 |KX Aql |193353.7+141748 |UG | 12.5 | 17.5 : | |p | | |( 300. :) | | |05386 02452| +050258 |KY Aql |193358.9+114405 |L: | 14.3 | 15.6 | |p | | | | | |00976 00976| +050259 |KZ Aql |193511.0+091001 |M | 12.7 | 16.0 | |p |25400. | | 330. | | |01370 2MASS| +050260 |LL Aql |193544.3+102117 |SR | 13.5 | 15.1 | |p | | | | | |06996 06996| +050261 |LM Aql |193616.5+020310 |M | 14.4 |< 17.0 | |p |26242. | | 257. | | |02076 01956| +050262 |LN Aql |193616.1+115321 |RV | 14.5 | 15.4 | |p |26232. | | 65. | | |01370 00504| +050263 |LO Aql |193628.4+105814 |M | 12.1 | 15.0 | |p |29436. | | 157.5 | |M0 |00504 06286| +050264 |LP Aql |193750.3+092013 |L: | 14.2 | 15.7 | |p | | | | | |01370 06286| +050265 |LQ Aql |193742.6+153809 | | 14.4 | 15.8 | |p | | | | | |01370 00504| +050266 |LR Aql |193751.0+124718 |M: | 13.6 |< 15.2 | |p |30970. | | 348.5 | | |02477 00504| +050267 |LS Aql |193833.6+124258 |SRB | 11.1 | 12.4 | |V |27633. | | 78.6 |41 |M4 |00460 06286| +050268 |LT Aql |193849.8+063459 |EA/SD | 12.4 | 14.9 | |p |25850.278 | | 1.846198 |11 *| |01949 02314| +050269 |LU Aql *|193852.0+154410 |SRB | 10.9 | 12.0 | |p |27344. | | 105.7 | |M4-M5 |00310 BD | +050270 |LV Aql |193908.5+125525 |M: | 14.9 |< 16.4 | |p |25820. | | 225. | | |01370 2MASS| +050271 |LW Aql |193912.7+121133 |M | 14.2 |< 16.5 | |p |26130. | | 380. : | | |01370 02003| +050272 |LX Aql |193907.9+145128 |SRA | 14.0 | 16.0 | |p |26280. | | 196. | |M9 |01370 06286| +050273 |LY Aql |193945.8+123941 |M | 13.5 |< 17.4 | |p |28710. | | 432. | | |02476 02476| +050274 |LZ Aql |193945.6+155612 |SRA | 14.2 |< 16.4 | |p |40054. | | 252.6 | | |00001 07332| +050275 |MM Aql |194008.7+144514 |SRA | 14.2 | 15.5 | |p |33070. | | 269.4 | |M8 |00504 00504| +050276 |MN Aql |194029.9+114414 |LB | 12.7 | 13.7 | |p | | | | |M3 |00104 06286| +050277 |MO Aql |194023.5+145714 |M | 15.2 |< 17.0 | |p |32826. | | 158.42 | | |07806 07806| +050278 |MP Aql |194035.7+151044 |M | 15.3 |< 17.0 | |p |39254. | | 215.8 | | |07806 07806| +050279 |MQ Aql |194055.7+123710 |CWB | 13.7 | 15.2 | |p |31321.506 | | 1.480737 |12 | |05448 03159| +050280 |MR Aql |194110.4+132126 |EA/SD: | 15.0 |< 16.0 | |p |32802.30 | | 3.111213 |10 | |07806 07806| +050281 |MS Aql |194107.1+114850 |LB | 10.6 | 11.2 | |p | | | | |M4III: |02096 02096| +050282 |MT Aql |194212.6+094135 |S: | 14.7 | 15.3 | |p | | | | | |01370 USNO | +050283 |MU Aql |194211.5+132025 |M | 12.0 | 15.5 | |p |35336. | | 141.85 | |M4 |00001 06286| +050284 |MV Aql *|194245.7+113234 |SRB | 12.9 | 13.8 | |p |28741. | | 153. | | |03152 03152| +050285 |MW Aql |194244.4+133415 |M | 13.1 |< 16.2 | |p |30240. | | 248.5 | |M3 |02478 01960| +050286 |MX Aql |194338.0+140316 |M: | 15.0 |< 16.3 | |p |26200. | | 440. : | |M9 |01370 GSC22| +050287 |MY Aql |194351.5+120735 |RR: | 14.7 | 15.5 | |p | | | | | |01370 USNO | +050288 |MZ Aql |194425.5+151421 |S: | 15.0 | 16.0 | |p | | | | | |01370 2MASS| +050289 |NN Aql *|194433.6+153329 |RRAB | 14.0 | 15.5 | |p |32802.359 | | 0.5790954 |20 | |07806 07806| +050290 |NO Aql |194509.8+045422 |SRA | 11.0 | 12.7 | |p |31592. | | 73.6 |42 |M4e |00364 01422| +050291 |NP Aql |194500.7+114550 |M | 13.8 | 16.5 | |p |26170. | | 195. | | |01370 02003| +050292 |NQ Aql |194507.1+122233 |S: | 14.9 | 15.5 | |p | | | | | |01370 GSC | +050293 |NR Aql |194521.5+095333 |M | 13.5 | 18. : | |p |24760. | | 216. | | |01370 06286| +050294 |NS Aql |194528.6+145502 |L | 15.0 | 16.0 | |p | | | | | |01370 GSC22| +050295 |NT Aql |194552.0+150920 |S: | 13.2 | 14.0 | |p | | | | | |01370 GSC | +050296 |NU Aql |194604.3+114543 |S: | 14.6 | 15.3 | |p | | | | | |01370 USNO | +050297 |NV Aql *|194629.3+135117 |SRB | 11.2 | 14.2 | |p |27062. | | 106.5 |48 | |00104 08071| +050298 |NW Aql |194711.2+122904 |M: | 13.4 |< 16.0 | |p |28730. | | 223.5 | | |02478 01960| +050299 |NX Aql |194711.0+132901 |E/SD: | 15.0 | 16.0 | |p |26270.500 | | 5.849 | | |01370 USNO | +050300 |NY Aql |194738.4+120924 |SRB | 12.8 | 14.5 | |p |28410. | | 154. | | |02477 02477| +050301 |NZ Aql |194752.1+130839 |M: | 15.0 |< 16.5 | |p |26215. | | 330. : | | |01370 02003| +050302 |OO Aql *|194812.7+091832 |EW/DW: | 9.2 | 9.9 | 9.8 |V |38613.2222 | | 0.50678848 | |G5V |08072 00522| +050303 |OP Aql |194808.3+092045 |EA/SD | 12.2 | 14.6 | |p |29056.512 | | 3.227797 |09 *| |02479 02480| +050304 |OQ Aql |194832.1+145655 |SRB | 10.0 | 11.3 | |V | | | 63.5 |49 |K5 |00460 GSC | +050305 |OR Aql |194853.4+160337 |SRA | 15.0 | 16.3 | |p |33480. | | 273. : | | |00001 03160| +050306 |OS Aql |194904.1+152526 |M | 12.6 | 16. | |p |29365. | | 398. | | |02097 02544| +050307 |OT Aql |194922.7+160346 |M | 13.5 |< 17.5 | |p |27930. | | 290. | | |03160 03160| +050308 |OU Aql |194951.7+092345 |M | 12.0 | 16.0 | |p |26160. | | 282. | |M3III:e |01370 06286| +050309 |OV Aql |195108.8+133100 | | 15.5 | 16.5 | |p | | | | | |01370 USNO | +050310 |OW Aql |195121.8+150012 |M | 12.3 | 14.8 | |p |40474. | | 194.4 | |N |00001 02452| +050311 |OX Aql *|195124.8+150643 |M | 13.0 |< 16.0 | |p |25790. | | 260. | | |01370 02452| +050312 |OY Aql |195157.6+114708 | | 13.4 | 15.6 | |p | | | | | |01370 06286| +050313 |OZ Aql |195229.4+121014 |RRAB | 13.3 | 14.5 | |p |37137.3932 | | 0.48079798 | | |03159 02481| +050314 |PP Aql *|195246.5+124009 |DCEP | 11.6 | 13.4 | |p |28337.5 | | 24.01 |35 | |03148 00504| +050315 |PQ Aql |195306.6+125901 |UG: | 14.8 |< 18.0 | |p | | | | | |01370 USNO | +050316 |PR Aql |195312.6+140922 |M: | 15.2 |< 17. | |p | | | 150. | | |00147 USNO | +050317 |PS Aql |195342.8+124752 |SR | 14.0 | 16.3 | |p |25780. | | 290. : | | |01370 02003| +050318 |PT Aql |195343.2+144109 |M | 13.5 |< 16.0 | |p |26150. | | 380. : | | |01370 GSC22| +050319 |PU Aql |195401.8+130711 |SRB | 13.6 | 14.9 | |p |28720. | | 192. | | |03148 GSC | +050320 |PV Aql |195949.7+103118 |LB | 10.8 | 12.3 | |p | | | | |M4 |01332 01332| +050321 |PW Aql |193505.1-051838 |RRAB | 12. | 14. | |p |36399.465 | | 0.475044 |15 | |06027 00317| +050322 |PX Aql |195802.5-091329 |SR | 9.4 | 11.7 | |V |27658. | | 154.8 | |M5 |00460 08073| +050323 |PY Aql |201813.6-060836 |M | 11. |< 12.5 | |p |27640. | | 120. : | |Me |00147 00190| +050324 |PZ Aql *|185556.0-025247 |CWA | 11.25 | 11.97 | |V |40862.3 | | 8.7530 |56 |F5-G3 |00001 02274| +050325 |QQ Aql |190208.5-090411 |M | 13.5 |< 16. | |p |24060. | | 353. | | |04231 02099| +050326 |QR Aql |192038.1+125555 | | 14. | 15. | |p | | | | | |01370 GSC | +050327 |QS Aql *|194105.5+134857 |EA/SD | 5.93 | 6.06 | 5.97 |V |40443.489 | | 2.513294 |17 *|B5V |06428 BD | +050328 |QT Aql |194308.4+022826 |M | 12.9 | 17.0 : | |p |31370. | | 157.6 | |M3III:e |00001 00533| +050329 |QU Aql |194732.6+083445 |M | 13.5 |< 15.5 | |p |26942. | | 607. | |Se |02101 02003| +050330 |QV Aql *|195416.6+073641 |RV | 12. | 15.5 | |p |27347. | | 169.5 | | |01440 00504| +050331 |QW Aql |195646.3+000051 |M | 13.2 |< 16.5 | |p |27004. | | 201.5 | | |00387 02316| +050332 |QX Aql |195828.6-022728 |M | 13.1 |< 16.5 | |p |26960. | | 222.5 | | |02102 02316| +050333 |QY Aql *|200928.8+151845 |EA/DS: | 11.4 | 14.6 | |p |30223.615 | | 7.229590 |15 |F0 | 00192| +050334 |QZ Aql |201746.4+080044 |M | 12.5 |< 15.5 | |p |40462. | | 213.6 | | |00001 00002| +050335 |V0335 Aql |202117.8+011919 |M | 11.6 |< 16. | |p |35670. | | 177.0 | |M1III:e |00001 02317| +050336 |V0336 Aql *|190119.7+000849 |DCEP | 9.50 | 10.28 | |V |36255.641 | | 7.303552 |31 |F5-G2 |02274 05404| +050337 |V0337 Aql *|190410.3-020147 |EB/DM | 8.57 | 9.27 | 9.09 |V |39328.504 | | 2.733849 | |B0.5Vp+B2V |00001 00010| +050338 |V0338 Aql |190514.9+174858 |L: | 11. | 12.5 | |p | | | | |M3 |00541 00541| +050339 |V0339 Aql |193832.8-095714 |M | 10.6 |< 12.5 | |p |33139. | | 213.3 | | |00001 00464| +050340 |V0340 Aql *|195556.5+155108 |EA/SD | 11.5 | 14.1 | |p |34181.552 | | 3.749053 |11 |F |08321 00772| +050341 |V0341 Aql *|203231.6+003507 |RRAB | 10.13 | 11.39 | |V |41196.251 | | 0.57802054 |13 |A6-F5 |07984 02104| +050342 |V0342 Aql *|191703.5+092039 |EA | 9.5 | 12.9 | |p |39318.581 | | 3.390882 |14 |A4II |00001 04493| +050343 |V0343 Aql *|193835.2+124527 |EA/SD: | 10.6 | 12.3 | 10.7 |p |28443.417 | | 1.844603 |15 *|A0V |00192 02105| +050344 |V0344 Aql |195324.7+021055 |M | 11.0 |< 16. | |p |35742. | | 283.1 | | |00001 02316| +050345 |V0345 Aql |195347.3+025930 |M | 11.5 |< 16. | |p |27336. | | 292.4 | | |03122 02316| +050346 |V0346 Aql *|200959.6+102100 |EA/SD | 9.0 | 10.1 | 9.1 |p |41918.384 | | 1.106363 |19 *|A0V |00001 02203| +050347 |V0347 Aql |190801.1+061828 |LB | 12.2 | 13.3 | |p | | | | |M6-M8 |03148 00533| +050348 |V0348 Aql *|191120.0+002912 |EA/SD: | 13. | 14.5 | |p |25447.450 | | 0.997766 |18 | |03165 03165| +050349 |V0349 Aql |191210.3-004322 |SR | 14.8 |< 16.0 | |p |25437. | | 98. | | |01949 00533| +050350 |V0350 Aql |191231.5-010425 |SRA | 14.0 | 16.3 | |p |25459. | | 267.7 | | |01949 00533| +050351 |V0351 Aql |191235.6+015445 |M | 12.7 |< 15.9 | |p |33887. | | 195.1 | | |00001 00533| +050352 |V0352 Aql *|191333.7+021813 |NL | 13.3 | 18.5 : | |p | | | | |ea | 08077| +050353 |V0353 Aql |191518.1+050306 |LB | 12.7 | 14.4 | |p | | | | |M6 |01949 02314| +050354 |V0354 Aql |191556.9+003733 |L: | 12.6 | 14.0 | |p | | | | |M0-M7(S) |03148 04494| +050355 |V0355 Aql |191713.4+005628 |M | 13.7 |< 16.2 | |p |25750. | | 215. | | |01949 02314| +050356 |V0356 Aql *|191713.5+014322 |NB | 7.0 | 17.7 | |p |28444. :|1936 | | |pec(NOVA) |00488 00002| +050357 |V0357 Aql |192043.9-004817 |M: | 14.6 |< 16.5 | |p |25734. | | 306. | | |01949 00533| +050358 |V0358 Aql |192128.8-003645 |M | 13.8 | 19. : | |p |26559. | | 267.6 | | |01949 00533| +050359 |V0359 Aql |192308.6-010931 |SRA | 14.2 | 16.2 | |p |25441. | | 147.5 | | |01949 00533| +050360 |V0360 Aql *|192259.2+024533 |SRA | 14.5 | 15.3 | |p |25535. | | 122.7 | | |01949 00533| +050361 |V0361 Aql |192443.8-000900 |M | 14.1 |< 15.2 | |p |25736. | | 224. | | |01949 00533| +050362 |V0362 Aql |192457.8-010508 |RV | 13.1 | 14.7 | |p |35377. | | 68. | | |02279 00533| +050363 |V0363 Aql |192538.0+044606 |M | 13.4 | 15.9 | |p |25533. | | 265.5 | | |01949 00533| +050364 |V0364 Aql |192602.0+033057 |M | 13.4 |< 15.7 | |p |25465. | | 342. | |M8 |01949 00533| +050365 |V0365 Aql |192615.5+035127 |M | 14.2 |< 16.5 | |p |25472. | | 112.5 | | |01949 02329| +050366 |V0366 Aql |192624.5+021709 |SRA | 14.8 |< 15.8 | |p |25447. | | 144.5 | | |01949 00533| +050367 |V0367 Aql *|192625.7+035607 |SR | 14.2 |< 16.5 | |p |37540. | | 70. | | |03148 00533| +050368 |V0368 Aql *|192634.4+073614 |NA | 5.0 | 15.7 | |V |28438.4 |1936 | | |pec(NOVA) |00488 06067| +050369 |V0369 Aql |192650.2+001810 |M: | 14.4 |< 15.0 | |p |25825. | | 242. | | |01949 00533| +050370 |V0370 Aql |192740.9+021452 |SRA | 12.9 | 14.2 | |p |25516. | | 170.5 | | |01949 00533| +050371 |V0371 Aql |192746.5+002837 |M | 13.6 | 17.5 : | |p |25852. | | 261. | | |01949 00533| +050372 |V0372 Aql |192917.2+031430 |SRA | 14.9 | 16.3 | |p |25495. | | 158. | | |01949 02314| +050373 |V0373 Aql |192914.3+064825 |LB | 14.0 | 15.1 | |p | | | | |M6.5 |01949 02329| +050374 |V0374 Aql *|193014.8-005010 |SRA | 8.8 | 11.7 | |V |38314. | | 456.50 | |C7,3(Ne) |08808 08808| +050375 |V0375 Aql |193005.7+063351 |M: | 13.7 |< 15.4 | |p |26167. | | 207. | |M5e |01949 00533| +050376 |V0376 Aql |193051.0+031658 |L | 14.0 | 15.0 | |p | | | | | |01943 02314| +050377 |V0377 Aql |193059.3+010541 |L | 14.6 | 15.5 | |p | | | | | |01943 00533| +050378 |V0378 Aql |193122.0-003758 |SRA | 13.4 | 15.9 | |p |25460. | | 351. | | |03148 00533| +050379 |V0379 Aql |193159.9-002840 |SRA: | 14.5 |< 15.8 | |p |25453. | | 365.6 | | |01949 2MASS| +050380 |V0380 Aql |193234.6+021742 |SR | 12.4 | 13.7 | |p |25413. | | 142. | | |01949 02329| +050381 |V0381 Aql |193253.6-010214 |RV | 12.7 | 15.4 | |p |25827. | | 54.8 | | |01949 02329| +050382 |V0382 Aql |193509.8+015531 |SRA | 14.7 | 16.3 | |p |25803. | | 279. | | |01949 02329| +050383 |V0383 Aql |193506.1+020226 |LB | 13.3 | 14.2 | |p | | | | | |01949 02329| +050384 |V0384 Aql |193500.5+060054 |M: | 13.8 |< 15.1 | |p |25543. | | 180.4 | |M4-M6.5 |01949 00533| +050385 |V0385 Aql |193538.8+045818 |LB | 13.8 | 14.3 | |p | | | | | |01943 02329| +050386 |V0386 Aql |193546.1+064610 |M | 12.7 | 18.5 : | |p |26633. | | 334.8 | |M6-M9 |01949 02329| +050387 |V0387 Aql |193625.4+004913 |SRA | 13.8 | 15.8 | |p |25479. | | 154. | | |01949 00533| +050388 |V0388 Aql |193628.0+013438 |SRA | 14.1 | 16.3 | |p |25419. | | 294. | | |01949 00533| +050389 |V0389 Aql |193638.0+030455 |L | 13.4 | 14.3 | |p | | | | | |01943 00533| +050390 |V0390 Aql |193731.9+032809 |M: | 14.7 |< 16.2 | |p |25839. | | 307. | | |01949 00533| +050391 |V0391 Aql |193752.6+064344 |LB | 12.2 | 14.4 | |p | | | | |C6,3(N6) |01949 02314| +050392 |V0392 Aql |193833.8-003135 |LB | 12.6 | 14.4 | |p | | | | | |01949 02314| +050393 |V0393 Aql |193841.6+023956 |M | 13.0 | 15.5 | |p |25849. | | 260. | | |01949 00533| +050394 |V0394 Aql |193920.4+020046 |LB | 14.0 | 15.2 | |p | | | | | |03148 00533| +050395 |V0395 Aql |193942.4+025214 |SR | 13.4 |< 15.2 | |p |25419. | | 97.2 | | |01949 00533| +050396 |V0396 Aql |193956.0-003553 |M | 13.2 |< 16.2 | |p |25427. | | 395. | | |01949 00533| +050397 |V0397 Aql |194015.3+052158 |M | 13.4 | 17.5 : | |p |25494. | | 183.6 | | |01949 00533| +050398 |V0398 Aql |194027.0+050645 |M: | 14.5 |< 16.4 | |p |25531. | | 139. | | |01949 02314| +050399 |V0399 Aql |194042.9+031206 |M | 12.4 | 15.9 | |p |25842. | | 230.4 | | |01949 00533| +050400 |V0400 Aql |194129.3+014750 |M | 14.2 |< 17. | |p |25810. | | 641. : | | |03148 00533| +050401 |V0401 Aql |194138.3+044535 |M: | 13.9 |< 15.8 | |p |25410. | | 387.5 | | |01949 00533| +050402 |V0402 Aql |194218.6+045010 |M: | 14.1 |< 15.6 | |p |25864. | | 280. : | | |00147 00533| +050403 |V0403 Aql |194228.7+022928 |M | 14.2 | 18.5 : | |p |25504. | | 289. | | |01949 00533| +050404 |V0404 Aql |194242.4+023948 |M | 14.1 | 17.5 : | |p |25442. | | 177.4 | | |01949 00533| +050405 |V0405 Aql |192640.8+042651 |M: | 14.3 |< 16.1 | |p |25524. | | 187.3 | | |01949 00533| +050406 |V0406 Aql *|191102.7+011125 |EA/SD | 13.1 | 15.5 | 13.3 : |p |25813.191 | | 5.818778 |07 *| |06105 02329| +050407 |V0407 Aql *|191110.8+010852 |EA/SD | 13.3 | 15.8 | |p |25792.505 | | 1.1819998 |20 *| |06105 00533| +050408 |V0408 Aql |191416.3+044606 |EA/SD | 14.1 |< 16.5 | |p |25835.41 | | 2.835003 |10 *| |03148 00533| +050409 |V0409 Aql *|191758.5-004044 |EA/DM | 11.5 | 12.4 | 12.2 |p |25503.385 | | 2.049390 |20 *|F5 | 00533| +050410 |V0410 Aql |192219.0+051832 |E | 14.5 | 15.0 | |p |26898.467 | | | | |03148 02329| +050411 |V0411 Aql *|192314.6+050605 |SR | 14.7 | 15.3 | |p |25514. | | 162.1 | | |01949 00533| +050412 |V0412 Aql |192321.0+013953 |LB | 12.4 | 13.8 | |p | | | | |M7 |01949 02329| +050413 |V0413 Aql |192450.9+022942 |EA/GS | 13.7 | 15.8 | |p |37930. | | 426.6 |14 |OB:e |03148 00533| +050414 |V0414 Aql |192649.6+045908 |EA/SD | 14.0 | 15.7 | |p |26946.405 | | 1.620842 |13 *| |03148 00533| +050415 |V0415 Aql |193043.7+134021 |EA/SD | 11.1 | 12.0 : | |p |28670.532 | | 2.462731 |20 : |F2 |05248 00470| +050416 |V0416 Aql |193339.5+003223 |EA/SD | 13.7 | 15.1 | |p |25535.322 | | 1.338052 |10 :*| |00001 02314| +050417 |V0417 Aql *|193524.1+055018 |EW/KW: | 11. | 11.5 | 11.5 |p |43016.404 | | 0.3701288 | |G2V |00001 02106| +050418 |V0418 Aql |193639.4+035700 |EA/SD | 12.8 |< 16. | |p |25445.48 | | 2.234904 |13 *| |03148 00533| +050419 |V0419 Aql |193848.5+001535 |L | 13.7 | 14.4 | |p | | | | | |01949 00533| +050420 |V0420 Aql |194014.4+023903 |EA/SD | 12.8 | 14.3 | |p |25410.485 | | 3.532698 |13 *| |01949 02329| +050421 |V0421 Aql *|194527.7+074704 |SRA | 13.5 | 15.5 | |p |29837. | | 312.09 | |M4III:e-M7e |00504 00504| +050422 |V0422 Aql |194818.3+062244 |M | 14.0 | 18. | |p |41938. | | 247.90 | |M3III:e |07003 00196| +050423 |V0423 Aql *|194840.8+004008 |SRB | 14.6 | 16.0 | |p |26955.5 | | 67.6 | | |00387 02316| +050424 |V0424 Aql |195022.3+034850 |M | 12.2 |< 15.5 | |p |27653.7 | | 190.85 | | |03166 03166| +050425 |V0425 Aql |195346.8+121717 |L | 13. | 14.5 | |p | | | | | |01440 00492| +050426 |V0426 Aql |195646.0+064355 |SRA | 14.5 | 15.5 | |p |27342. | | 119. | | |01440 00196| +050427 |V0427 Aql |195729.3+084225 |M | 13. |< 15.5 | |p |27332. | | 198. | |M4e |01440 00158| +050428 |V0428 Aql |195818.4+130134 |SR | 13.5 | 14.5 | |p |27296. | | 97.6 | | |01440 00196| +050429 |V0429 Aql |195831.0+160020 |LB | 11.5 | 13.0 | |p | | | | |M2-M6 |01439 00492| +050430 |V0430 Aql |195919.6+060332 |M: | 13.5 |< 15.5 | |p |27670. | | 266. | | |01440 00196| +050431 |V0431 Aql |200028.3+104721 |M | 13.5 |< 15.5 | |p |26957. | | 222.5 | | |01439 00158| +050432 |V0432 Aql |200102.5+105945 |M | 13.0 |< 15.5 | |p |27677. | | 248. | |M4e |01439 00158| +050433 |V0433 Aql *|200115.5+151736 |SRB | 11.5 | 13.5 | |p | | | 51. : | |M1 |08079 00492| +050434 |V0434 Aql |200322.7+085235 |SRA | 13. | 15. | |p |27285. | | 315. | |M6 |01440 00196| +050435 |V0435 Aql |200320.1+124627 |SRA | 13. | 15. | |p |27330. | | 205. | | |01439 00492| +050436 |V0436 Aql |200440.8+114518 |M | 12.5 |< 15.5 | |p |26960. | | 285. | |M4e |01439 00158| +050437 |V0437 Aql |200432.6+134807 |M: | 13.5 |< 15.5 | |p |27325. | | 192. | | |01440 00196| +050438 |V0438 Aql |200501.5+074113 |M | 12.5 |< 15.5 | |p |26963. | | 279. | |M3III:e |01440 00158| +050439 |V0439 Aql |200510.9+122157 |M: | 13.5 |< 15.5 | |p |27353. | | 380. | | |01439 00492| +050440 |V0440 Aql |200743.3+114159 |M: | 14. |< 15.5 | |p |27323. | | 228. | | |01440 00196| +050441 |V0441 Aql |200926.4+142928 |SRD | 12.5 | 15. | |p |28422. | | 120. | |G-F |01000 00492| +050442 |V0442 Aql |200958.0+125044 |M | 12.5 |< 15.5 | |p |28088. | | 308. | |M6.5 |01440 00294| +050443 |V0443 Aql |201157.2+125101 |M: | 14. |< 15.5 | |p |27286. | | 280. | | |01439 00492| +050444 |V0444 Aql |201853.9+073419 |M: | 14.5 |< 16. | |p |27378. | | 314. | | |01440 00196| +050445 |V0445 Aql |201938.8+060848 |EA/DS: | 13. | 15.5 | |p |30632.34 | | 9.4248 | | |00410 00158| +050446 |V0446 Aql |194720.2+160358 |SR | 11.4 | 12.8 | |p |26557. | | 137. |36 |M2 |02107 06286| +050447 |V0447 Aql |194755.7+073452 |M | 13.2 | 18. : | |p |28062. | | 254. | |R |01091 02098| +050448 |V0448 Aql |193021.8+105609 |SRA: | 15.3 |< 16.4 | |p |28415. | | 221.4 | | |03148 02282| +050449 |V0449 Aql *|193122.7+132806 |LB | 14.3 | 15.6 | |p | | | | |M6.5 |01091 02282| +050450 |V0450 Aql |193346.0+052757 |SRB | 6.30 | 6.65 | |V |31320. | | 64.20 |52 |M5III-M8III |01000 BD | +050451 |V0451 Aql |193535.0+114717 |LB | 14.6 |< 16.3 | |p | | | | |M6 |01091 02283| +050452 |V0452 Aql |193704.4+091204 |M | 13.9 |< 16.1 | |p |31360. | | 110.2 | | |00001 02003| +050453 |V0453 Aql |193748.8+103258 |M | 14.3 |< 16.6 | |p |36089. | | 321.08 | | |00001 02283| +050454 |V0454 Aql |193825.6+103542 |M | 14.2 |< 16.5 | |p |28400. | | 234. | | |04264 01960| +050455 |V0455 Aql |194013.4+130311 |M | 13.4 |< 16.3 | |p |28425. | | 350. | |M8 |01091 02098| +050456 |V0456 Aql |194113.5+072501 |M | 13.1 | 16.4 | |p |29190. | | 350. | | |01091 01960| +050457 |V0457 Aql |194532.7+121725 |M | 14.8 |< 16.2 | |p |28042. | | 274. | | |01091 USNO | +050458 |V0458 Aql |194714.0+073748 |SRA | 13.7 | 15.3 | |p |28305. | | 144. | | |01091 01960| +050459 |V0459 Aql |194736.0+095647 |M | 13.7 |< 16.5 | |p |28393. | | 315. | | |01091 01960| +050460 |V0460 Aql |195359.0+074610 |SR | 13.4 | 14.4 | |p |28400. | | 161. | | |01091 00196| +050461 |V0461 Aql *|195647.9+072229 |M: | 13.5 | 15.4 | |p |28040. | | 262. | | |01091 00158| +050462 |V0462 Aql |194417.6+144333 |LB | 13.5 | 14.5 | |p | | | | |M6.5 |01440 00409| +050463 |V0463 Aql |194719.8+134529 |LB | 14. | 15.5 | |p | | | | | |01440 00492| +050464 |V0464 Aql | | | | | | | | | | | | |=V0446 Aql +050465 |V0465 Aql |200133.9+133059 |L | 13. | 14. | |p | | | | | |01440 01217| +050466 |V0466 Aql |200635.5+104929 |M | 12. |< 15.5 | |p |27692. | | 428. | |M5 |01440 00542| +050467 |V0467 Aql *|201121.4+140606 |SR | 14.4 | 15.4 | |p | | | | | |08071 00542| +050468 |V0468 Aql |201534.5+081423 |L | 14.5 | 15.5 | |p | | | | | |01440 00492| +050469 |V0469 Aql |201736.0+043507 |SRA | 13.5 | 15. | |p |26975. | | 150. | | |01440 00492| +050470 |V0470 Aql |201828.9+073505 |L | 14.5 | 15.5 | |p | | | | | |01440 00492| +050471 |V0471 Aql |202121.9+055544 |SRA | 14. |< 15.5 | |p |27336. | | 104.9 | | |01440 01333| +050472 |V0472 Aql |202138.7+072905 |M: | 15. |< 16. | |p |27368. | | 130. | | |01440 00196| +050473 |V0473 Aql *|184637.4+112929 |LB | 13.5 | 14.5 | |p | | | | |M3: |00447 02328| +050474 |V0474 Aql |184713.7+103320 |M | 11.7 |< 17. | |p |26884. | | 307. | |M6.5 |00447 02328| +050475 |V0475 Aql |184829.7+113936 |RRAB | 14.5 | 16.0 | |p |29024.517 | | 0.756853 |19 | |00447 02328| +050476 |V0476 Aql *|184848.6+070849 |RRC: | 13.3 | 14.2 | |p |37868.44 | | 0.31233 |50 : | |03165 03165| +050477 |V0477 Aql |184924.3+083540 |LB | 12.1 | 12.8 | |p | | | | |M6.5 |00447 02328| +050478 |V0478 Aql |184937.4+115204 |LB | 12.5 | 14.5 | |p | | | | |C5,4(N) |00447 02328| +050479 |V0479 Aql |185019.6+104024 |EA/SD | 13.2 | 14.6 | |p |25808.565 | | 0.8335975 |20 *| |00001 02328| +050480 |V0480 Aql |185034.9+070734 |LB | 14.0 | 16.0 | |p | | | | | |03165 02328| +050481 |V0481 Aql |185119.4+104429 |M | 14.1 | 18.5 : | |p |26605. | | 225. | | |00447 02328| +050482 |V0482 Aql |185152.4+103748 |LB | 13.6 | 14.5 | |p | | | | |M6 |00447 02328| +050483 |V0483 Aql *|185200.8+102504 |LB | 14.5 | 16.2 | |p | | | | |M6 |00447 02328| +050484 |V0484 Aql |185202.3+095315 |L | 14.3 | 15.2 | |p | | | | | |00447 02328| +050485 |V0485 Aql |185208.9+094236 |M: | 14.9 |< 17. | |p |27320. | | 183.5 | | |00447 02328| +050486 |V0486 Aql *|185209.3+102301 |LB | 15.1 | 15.7 | |p | | | | |M3 |00447 02328| +050487 |V0487 Aql |185216.8+100203 |M | 15.2 |< 17. | |p |26936. | | 368. | | |00447 02328| +050488 |V0488 Aql |185322.4+110254 |M | 13.5 |< 17. | |p |25696. | | 428. | | |00447 02328| +050489 |V0489 Aql |185535.0+120430 |L: | 13.1 | 14.8 | |p | | | | | |03165 02328| +050490 |V0490 Aql |185826.0+125926 |LB | 14.1 | 15.5 | |p | | | | |M5 |03165 02328| +050491 |V0491 Aql |185910.3+100210 |LB | 14.3 | 15.6 | |p | | | | | |00447 02328| +050492 |V0492 Aql |185927.3+052240 |LC | 12.9 | 13.6 | |p | | | | |M1Iab-M2Ia |00447 02328| +050493 |V0493 Aql *|185724.3-004349 |DCEP | 10.79 | 11.36 | |V |35653.117 | | 2.987751 |30 | |00001 01407| +050494 |V0494 Aql |185923.6-073041 |EA/SD: | 14.4 | 16.1 | |p |28004.755 | | 2.544614 |11 *| |04231 04231| +050495 |V0495 Aql *|185932.7-091529 |EA/SD: | 14.5 | 15.0 | |p |29081.293 | | 1.008914 |15 | |01407 01407| +050496 |V0496 Aql *|190820.8-072616 |DCEPS | 7.59 | 7.98 | |V |36017.062 | | 6.80703 |33 |G5 |05366 05462| +050497 |V0497 Aql *|194919.3+065107 |M | 13.2 |< 16.3 | |p |28336. | | 256. | |M1e |01091 02283| +050498 |V0498 Aql |195554.1+143015 |M | 12.9 |< 16.3 | |p |28285. | | 294. | | |01091 02284| +050499 |V0499 Aql |201650.0-070658 |SRA | 9.9 | 12.2 | |V |31338. | | 159.1 |37 |M6 |01004 01110| +050500 |V0500 Aql |195228.0+082847 |NA | 6.1 : | 17.8 : | |p |30845. :|1943 | | |pec(NOVA) | 03151| +050501 |V0501 Aql |195309.8-052627 |L | 14.4 | 15.8 | |p | | | | | |00387 02316| +050502 |V0502 Aql |195635.5-023715 |M | 12.3 |< 16.5 | |p |26975. | | 286.5 | | |00387 02316| +050503 |V0503 Aql |195914.0-012201 |M | 12.5 |< 16. | |p |26937. | | 138.2 | | |00387 02316| +050504 |V0504 Aql |200147.1+020723 |M | 12.6 |< 16.5 | |p |27337. | | 265.7 | |M0: |00387 02316| +050505 |V0505 Aql |200237.1+001626 |SR | 14.2 | 15.8 | |p |26958. | | 82.8 |57 | |00387 02317| +050506 |V0506 Aql |200250.8-043256 |L | 13.9 | 15.9 | |p | | | | | |00387 02332| +050507 |V0507 Aql |200320.2-012932 |M: | 14.2 |< 16.5 | |p |27347. | | 268. | | |00387 02317| +050508 |V0508 Aql |200532.8-004419 |RRAB | 14.3 | 15.9 | |p |26951.38 | | 0.6251413 |20 | |00387 02332| +050509 |V0509 Aql |200616.9+022725 |L | 14.3 | 15.5 | |p | | | | | |00387 02317| +050510 |V0510 Aql |200737.4-022706 |M | 15.1 |< 16.5 | |p |26945. | | 257.5 | | |00387 02317| +050511 |V0511 Aql |200927.9+020259 |L | 13.1 | 14.1 | |p | | | | | |00387 02317| +050512 |V0512 Aql |201016.7-033308 |SRA | 13.9 | 15.5 | |p |26989. | | 174.5 |43 | |00387 02317| +050513 |V0513 Aql |201006.4+002251 |SRB | 13.3 | 15.3 | |p | | | 370. : | | |00387 02317| +050514 |V0514 Aql |201102.8-041738 |M | 13.0 | 16.0 | |p |26963. | | 291. |64 | |00387 02317| +050515 |V0515 Aql |201214.6-002328 |SRA | 13.2 | 15.4 | |p |27338. | | 165. |52 | |00387 02317| +050516 |V0516 Aql |201236.5+015448 |L | 14.7 | 15.9 | |p | | | | | |00387 02317| +050517 |V0517 Aql |201346.1+025932 |M | 12.7 |< 16.5 | |p |27330. | | 305. | | |00387 02317| +050518 |V0518 Aql |201437.4+000853 |RRAB | 13.0 | 14.3 | |p |26928.398 | | 0.4064188 |15 | |00387 02317| +050519 |V0519 Aql |201439.9-011036 |M | 12.7 |< 16.5 | |p |26900. | | 350. | |Me |00387 02317| +050520 |V0520 Aql |201444.6+002428 |LB | 13.9 | 15.1 | |p | | | | | | 02317| +050521 |V0521 Aql |201702.0-031538 |SRA | 12.1 | 13.9 | |p |26966. | | 166. |52 |M0 |00387 02317| +050522 |V0522 Aql |201733.0-002501 |SR | 13.4 | 14.8 | |p | | | 82. : | | |00387 02317| +050523 |V0523 Aql |201742.6-010616 |RRAB | 13.6 | 15.4 | |p |26945.385 | | 0.5403242 |35 | |00387 02317| +050524 |V0524 Aql *|201757.1+010405 |LB | 14.3 | 15.1 | |p | | | | | |00387 08656| +050525 |V0525 Aql |201950.2-041742 |RRAB | 12.5 | 13.7 | |p |26928.432 | | 0.515686 |26 | |00387 02317| +050526 |V0526 Aql |191438.1+062858 |CEP | 13.4 | 15.1 | |p |25535.3 | | 4.2112 |25 | |03148 00533| +050527 |V0527 Aql *|191854.7+035128 |LB | 14.2 | 15.9 | |p | | | | | |03165 00533| +050528 |V0528 Aql *|191919.1+003753 |NA | 7.2 | 18.1 | |p |31695. |1945 | | |pec(NOVA) |01946 01947| +050529 |V0529 Aql |191929.9+004527 |M: | 15.0 |< 16.5 | |p |25432. | | 230.5 | | |03148 00533| +050530 |V0530 Aql |192036.2-011617 |M | 12.9 | 19. : | |p |25453. | | 366. | | |01949 00533| +050531 |V0531 Aql |192250.2+061419 |M: | 14.1 |< 15.4 | |p |25889. | | 303. | | |01949 02314| +050532 |V0532 Aql |192656.2+010013 |M | 13.8 |< 16.3 | |p |25891. | | 312. | | |01949 00533| +050533 |V0533 Aql |193233.3+110231 |M | 13.9 |< 16.3 | |p |29195. | | 354. | | |01091 02348| +050534 |V0534 Aql |193526.2+073332 |M: | 14.3 |< 15.4 | |p |25875. | | | | |01949 00533| +050535 |V0535 Aql *|193608.2+021707 |L: | 14.1 | 14.7 | |p | | | | | |03148 00533| +050536 |V0536 Aql |193857.4+103017 |INT | 12.6 | 16.3 | |p | | | | |K7e(T) |00504 06996| +050537 |V0537 Aql *|194654.8+021313 |M | 14.0 |< 16. | |p |26949. | | 400. | | |00387 02331| +050538 |V0538 Aql *|194727.6+001316 |SRA | 13.7 | 15.8 | |p |27273. | | 187.5 | | |00387 02332| +050539 |V0539 Aql |194752.8-034740 |M | 11.6 | 16. | |p |26930. | | 320. | | |00387 02316| +050540 |V0540 Aql |194813.4+023913 |M | 13.8 | 18.5 : | |p |28038. | | 308.5 | | |00387 02332| +050541 |V0541 Aql |194827.6+015306 |LB | 12.5 | 13.7 | |p | | | | |M7 |00387 02316| +050542 |V0542 Aql |194846.8-002812 |M | 13.3 |< 16. | |p |26939. | | 282. | | |00387 02316| +050543 |V0543 Aql |194935.8-053233 |M | 12.0 |< 15. | |p |23615. | | 152.0 | |M5III:e |00199 06286| +050544 |V0544 Aql |194932.2-025838 |SRA | 14.0 | 15.6 | |p |27014. | | 125.4 | | |00387 02332| +050545 |V0545 Aql |194936.8-020329 |M | 13.5 |< 16. | |p |26914. | | 243.5 | | |00387 02316| +050546 |V0546 Aql |194953.5-040120 |M | 13.6 |< 16. | |p |27627. | | 201. | | |00387 02332| +050547 |V0547 Aql |194951.7-010520 |M | 12.0 | 16.5 | |p |27421. | | 282. | |M4III:e |00387 02332| +050548 |V0548 Aql |194959.5-020225 |SRA | 14.6 | 16.0 | |p |26979. | | 132. | | |00387 02316| +050549 |V0549 Aql |195038.6-035725 |L | 14.2 | 15.3 | |p | | | | | |00387 02316| +050550 |V0550 Aql |195053.6+004604 |L | 13.6 | 15.7 | |p | | | | | |00387 02332| +050551 |V0551 Aql |195117.7-024211 |M | 14.2 | 18.0 : | |p |27334. | | 238.5 | | |00387 02316| +050552 |V0552 Aql |195121.8-012930 |L | 14.2 | 15.3 | |p | | | | | |00387 02332| +050553 |V0553 Aql |195152.0+024818 |M | 10.9 |< 16. | |p |38606. | | 212.0 | |M3e |00001 02316| +050554 |V0554 Aql |195321.1-043659 |M | 13.1 |< 16. | |p |27351. | | 322. | | |00387 02316| +050555 |V0555 Aql |195326.6-044401 |M | 14.0 |< 16.5 | |p |27296. | | 212. | | |00387 02332| +050556 |V0556 Aql |195443.6-031843 |LB | 13.8 | 15.2 | |p | | | | | |00387 02316| +050557 |V0557 Aql |195441.9+032147 |EA/SD | 13.4 | 15.6 | |p |26945.420 | | 2.75045 |08 *| |03165 02332| +050558 |V0558 Aql *|195454.9-035004 |M | 13.6 |< 16. | |p |27605. | | 374. | | |00387 02316| +050559 |V0559 Aql |195530.1+022641 |L | 13.8 | 15.1 | |p | | | | | |00387 02316| +050560 |V0560 Aql |195538.0-001843 |M | 13.2 |< 16.5 | |p |27400. | | 357. | | |00387 02332| +050561 |V0561 Aql |195554.5+013414 |M | 14.2 | 18.5 : | |p |26939. | | 208.3 | | |00387 02332| +050562 |V0562 Aql |195602.4-003559 |L | 12.7 | 13.6 | |p | | | | | |00387 02316| +050563 |V0563 Aql |195716.1-013102 |LB | 12.3 | 14.3 | |p | | | | |M2 |00387 02332| +050564 |V0564 Aql |195834.9+023647 |L | 14.2 | 15.5 | |p | | | | | |00387 02332| +050565 |V0565 Aql |195917.3+010028 |M | 14.0 | 19. : | |p |27059. | | 271. | | |00387 02316| +050566 |V0566 Aql |195923.2+000611 |M | 13.5 |< 16.5 | |p |26957. | | 335. | | |00387 02316| +050567 |V0567 Aql |195942.7+031840 |SR | 13.0 | 15.7 | |p |27394. | | 285.5 | | |00387 02316| +050568 |V0568 Aql |200020.7-015243 |LB | 12.9 | 14.8 | |p | | | | |M7 |00387 02316| +050569 |V0569 Aql |200019.1+015343 |LB | 13.7 | 14.8 | |p | | | | | |00387 02317| +050570 |V0570 Aql |200028.4+004515 |SRA | 14.9 | 15.9 | |p |26950. | | 152. |48 | |00387 02317| +050571 |V0571 Aql *|200207.2+031153 |M | 14.1 |< 16.5 | |p |26945. | | 371. | | |00387 02332| +050572 |V0572 Aql *|200232.7+004250 |CWB | 11.00 | 11.44 | |V |41921.259 | | 3.767697 |45 | |08300 00470| +050573 |V0573 Aql |200340.4+011249 |LB | 14.4 | 15.5 | |p | | | | | |00387 02332| +050574 |V0574 Aql |200539.9+021942 |L | 13.5 | 14.5 | |p | | | | | |00387 02317| +050575 |V0575 Aql |200540.0+032249 |M | 12.2 | 17. | |p |27387. | | 253. | | |00387 02317| +050576 |V0576 Aql |200552.8-011002 |LB | 13.0 | 15.3 | |p | | | | | |03165 02317| +050577 |V0577 Aql |200557.5+015250 |LB | 14.3 | 15.7 | |p | | | | | |00387 02332| +050578 |V0578 Aql |200759.6-043925 |M: | 13.8 |< 16. | |p |27272. | | 243. | | |00387 02332| +050579 |V0579 Aql |200811.9-000122 |L | 14.5 | 15.7 | |p | | | | | |00387 02333| +050580 |V0580 Aql |200838.7-042520 |M | 12.5 | 18.5 : | |p |29789. | | 150.2 | |Me |01003 02333| +050581 |V0581 Aql |200829.1+004906 |M | 12.5 |< 17. | |p |29803. | | 215.8 | | |00001 02333| +050582 |V0582 Aql |200910.7-000703 |SR | 13.0 | 14.0 | |p | | | 56.6 | | |00387 02333| +050583 |V0583 Aql |201000.4-014106 |M | 13.2 | 18.5 : | |p |27420. | | 285. | | |00387 02333| +050584 |V0584 Aql |201029.8-013741 |LB | 10.7 | 12.1 | |p | | | | |M8 |00387 02333| +050585 |V0585 Aql |201039.6-030049 |M | 14.5 | 19.0 : | |p |27393. | | 161. | | |00387 02333| +050586 |V0586 Aql *|201314.0+150032 |SR | 12.1 | 13.8 | |p |27566. | | 82. | | |00773 02331| +050587 |V0587 Aql |201532.2-025821 |L | 14.1 | 15.6 | |p | | | | | |00387 02333| +050588 |V0588 Aql |201540.2-035703 |L | 13.2 | 14.2 | |p | | | | | |00387 02333| +050589 |V0589 Aql |201555.2+010030 |EA/SD | 14.7 | 16.4 | |p |26955.370 | | 1.2909125 |10 *|A5 |08656 02317| +050590 |V0590 Aql |201708.5-040307 |RVA | 13.1 | 14.8 | |p |26975. | | 117.2 |24 | |00387 02333| +050591 |V0591 Aql |201729.5+014837 |M | 13.3 | 18.5 : | |p |27004. | | 199. | | |00387 02333| +050592 |V0592 Aql |201831.6+002513 |SRA | 13.4 | 16.0 | |p |26988. | | 197. | | |00387 02333| +050593 |V0593 Aql |201904.5+015414 |L | 14.0 | 15.6 | |p | | | | | |00387 02333| +050594 |V0594 Aql |202103.4+023402 |L | 14.1 | 15.1 | |p | | | | | |00387 02333| +050595 |V0595 Aql |202135.5+004310 |M | 12.5 |< 16. | |p |27022. | | 241.3 | | |00387 02317| +050596 |V0596 Aql *|202150.8-015247 |SR | 14.9 | 16.7 : | |p |26917. | | 96.3 | | |00387 02317| +050597 |V0597 Aql | | | | | | | | | | | | |=V0487 Sct +050598 |V0598 Aql |185856.3-064800 |L | 15.7 | 16.1 | |p | | | | | |01402 01402| +050599 |V0599 Aql *|190234.1-104318 |EB/KE: | 6.67 | 6.75 | 6.73 |V |21836.539 | | 1.849084 | |B2V+B8 |00007 BD | +050600 |V0600 Aql *|192102.4+083059 |DCEP | 9.73 | 10.40 | |V |36317.031 | | 7.23845 |33 |F6-G0 |00001 00156| +050601 |V0601 Aql |194006.5-002046 |M | 12.9 |< 16.0 | |p |31658. | | 340.4 | | |00001 02370| +050602 |V0602 Aql *|195100.6+162644 |EA/DM: | 11.9 | 13.2 | 12.7 |p |31330.226 | | 3.0124765 |10 |A2 |00001 02330| +050603 |V0603 Aql *|184854.6+003503 |NA+E+X | -1.4 | 12.03 | |V |21755. |1918 | | |pec(NOVA)-e+cont | 00002| +050604 |V0604 Aql |190206.2-042645 |NA | 7.6 : | 18. | |p |17072. :|1905 | | |pec(NOVA) | 02452| +050605 |V0605 Aql *|191820.4+014700 |* | 10.4 | | |V | | | | |R0 | 02460| +050606 |V0606 Aql |192024.3-000802 |NA | 5.5 : | 17.3 : | |p |14754. :|1899 | | |pec(NOVA) | 02452| +050607 |V0607 Aql |193525.6+004242 |M | 14.1 |< 18.5 | |p |31378. | | 474. | |M9 |03170 01956| +050608 |V0608 Aql |195358.8-004246 |LB | 11.7 | 12.5 | |p | | | | |M5 |00387 02332| +050609 |V0609 Aql *|200958.7+143814 |EB/DW | 11.7 | 12.1 | 11.9 |p |29365.725 | | 0.796565 | |F8 |01957 01957| +050610 |V0610 Aql |192728.9+071135 |RRAB | 14.9 | 15.9 | |p |29163.316 | | 0.347280 |25 | |01091 02348| +050611 |V0611 Aql |192740.0+114846 |EA/SD | 14.2 | 15.3 | |p |29163.246 | | 5.42883 |07 *| |01091 02348| +050612 |V0612 Aql |192943.6+110035 |LB | 14.4 | 15.2 | |p | | | | | |01091 02282| +050613 |V0613 Aql |193042.4+074741 |SR | 15.3 |< 16.3 | |p |31020. | | 150. : | | |01091 02348| +050614 |V0614 Aql |193056.3+083356 |M | 14.6 |< 16.3 | |p |28025. | | 207. | | |01091 02282| +050615 |V0615 Aql *|193104.2+120934 |M | 15.3 |< 16.2 | |p |33117. | | 306.5 | | |00504 02282| +050616 |V0616 Aql *|193136.1+104907 |EA:/SD: | 14.1 | 15.0 | |p |28332.448 | | 1.69058 : |10 | |01091 02348| +050617 |V0617 Aql |193201.2+123443 |M | 14.5 | 18. : | |p |29990. | | 310. | | |01091 02348| +050618 |V0618 Aql *|193222.8+115903 |M: | 15.2 |< 17.0 | |p |29070. | | 386. | | |01091 02348| +050619 |V0619 Aql |193258.4+074110 |M | 14.0 | 18.0 : | |p |28830. | | 300. | | |01091 02343| +050620 |V0620 Aql |193316.1+075429 |M | 13.3 |< 16.0 | |p |28785. | | 287. | | |01091 02283| +050621 |V0621 Aql |193320.7+061545 |SRB | 12.3 | 13.4 | |p | | | 147. | |M5-M6.5 |01091 02283| +050622 |V0622 Aql |193322.7+105816 |LB | 12.3 | 14.3 | |p | | | | |K |03165 02283| +050623 |V0623 Aql |193335.0+062926 |SRA: | 15.1 | 17.5 : | |p |28055. | | 253. | |M8 |01091 02283| +050624 |V0624 Aql |193336.4+073424 |M | 12.6 |< 16.2 | |p |28826. | | 286. | | |01091 02283| +050625 |V0625 Aql |193342.9+070141 |RRAB | 14.6 | 15.9 | |p |28423.310 | | 0.425692 |20 | |01091 02283| +050626 |V0626 Aql |193358.0+091044 |M | 13.8 |< 16.2 | |p |28070. | | 142. | | |01091 02283| +050627 |V0627 Aql |193412.9+085011 |L | 13.5 | 14.5 | |p | | | | | |01091 02283| +050628 |V0628 Aql |193452.1+072714 |M: | 14.2 |< 16.2 | |p |28405. | | 154. | | |01091 02283| +050629 |V0629 Aql |193529.6+091236 |RRAB | 14.8 | 16.1 | |p |29483.400 | | 0.368012 |17 | |01091 02348| +050630 |V0630 Aql |193542.5+075211 |EA/SD | 14.3 | 16.0 | |p |28045.337 | | 3.22203 |09 *| |01091 02343| +050631 |V0631 Aql |193545.8+120324 |EA/SD | 13.5 | 14.9 | |p |29163.326 | | 1.155125 |08 *| |01091 02283| +050632 |V0632 Aql |193610.2+152848 |M: | 14.9 |< 16.3 | |p |33410. | | 305. | | |00001 00504| +050633 |V0633 Aql |193630.5+094809 |M | 15.2 | 18. : | |p |28080. | | 168. | | |01091 02283| +050634 |V0634 Aql |193640.4+070242 |EA/SD | 14.8 | 16.2 | |p |30147.644 | | 7.496 |08 *| |01091 02348| +050635 |V0635 Aql |193645.0+091852 |M: | 14.3 |< 16.4 | |p |28070. | | 166. | | |01091 02283| +050636 |V0636 Aql |193709.0+071819 |M: | 15.4 |< 16.5 | |p |28000. | | 363. | | |01091 02348| +050637 |V0637 Aql *|193714.8+113959 |M | 13.4 |< 15.7 | |p |28335. | | 369. | |M2 |01091 02283| +050638 |V0638 Aql *|193733.7+123433 |M | 14.8 | 18. : | |p |28425. | | 289. | | |01091 02283| +050639 |V0639 Aql |193741.4+081648 |RRAB | 15.0 | 16.2 | |p |29161.352 | | 0.554564 |20 | |01091 02348| +050640 |V0640 Aql *|193752.5+104710 |EB/KE | 12.6 | 13.4 | 12.8 |p |39024.405 | | 0.5614 | | |08084 08084| +050641 |V0641 Aql |193752.8+092806 |M | 14.2 |< 16.1 | |p |28440. | | 248. | | |01091 02283| +050642 |V0642 Aql |193810.9+112043 |LB | 13.4 | 14.5 | |p | | | | |M6 |01091 02283| +050643 |V0643 Aql |193828.7+115053 |L | 14.0 | 14.6 | |p | | | | | |01091 02283| +050644 |V0644 Aql |193832.5+115413 |EA/SD | 14.8 | 16.2 | |p |30545.411 | | 3.71583 | | |01091 02348| +050645 |V0645 Aql |193839.9+125138 |M: | 14.0 |< 16.1 | |p |28040. | | 263. | | |01091 02283| +050646 |V0646 Aql |193902.3+082025 |M: | 15.2 |< 16.5 | |p |29190. | | 188. | | |01091 02348| +050647 |V0647 Aql *|193855.6+111453 |EA/SD: | 14.7 | 15.6 | |p |28067.302 | | 3.399233 |16 *| |07806 02283| +050648 |V0648 Aql |193904.5+073812 |SRA | 13.3 | 14.2 | |p |28237. | | 152. | |M1 |01091 02283| +050649 |V0649 Aql |193945.2+122849 |LB | 12.2 | 13.6 | |p | | | | |M3 |01091 02283| +050650 |V0650 Aql |194018.3+080448 |SRA | 13.3 | 15.0 | |p |28265. | | 138. | | |01091 02283| +050651 |V0651 Aql |194047.5+062905 |RRAB | 15.2 | 16.2 | |p |31322.404 | | 0.5188355 |20 : | |03171 02348| +050652 |V0652 Aql |194026.8+082348 |M: | 14.9 |< 16.4 | |p |29090. | | 309. | | |01091 02348| +050653 |V0653 Aql |194039.5+100233 |M: | 14.7 |< 16.5 | |p |29100. | | 447. | | |01091 02348| +050654 |V0654 Aql |194201.5+061538 |L | 14.5 | 15.0 | |p | | | | | |01091 02348| +050655 |V0655 Aql |194203.5+074602 |M: | 14.5 |< 16.5 | |p |29158. | | 307. | | |01091 02348| +050656 |V0656 Aql |194210.0+070956 |M | 14.4 |< 16.7 | |p |29105. | | 310. | | |01091 02348| +050657 |V0657 Aql |194221.9+154559 |SRA | 14.6 | 16.3 | |p |28397. | | 368.8 | | |04027 02348| +050658 |V0658 Aql |194239.0+154559 |M: | 14.7 |< 16.2 | |p |29070. | | 256. | | |01091 02322| +050659 |V0659 Aql |194304.5+151108 |M: | 15.1 |< 16.2 | |p |29000. | | 226. | | |01091 02348| +050660 |V0660 Aql |194343.8+060005 |LB | 13.8 | 15.0 | |p | | | | |M5III:e |01091 02283| +050661 |V0661 Aql |194344.2+060411 |M: | 14.3 |< 16.3 | |p |28025. | | 337. | | |01091 02348| +050662 |V0662 Aql |194352.2+053718 |L | 13.7 | 14.3 | |p | | | | | |01091 02348| +050663 |V0663 Aql *|194402.6+053642 |M | 14.2 | 18.0 : | |p |29475. | | 389. | | |01091 02348| +050664 |V0664 Aql |194346.0+151343 |M | 14.8 | 18.0 | |p |30593. | | 276. | | |00773 02349| +050665 |V0665 Aql |194417.4+060603 |SRA | 14.5 | 15.6 | |p |29025. | | 149. | | |01091 02348| +050666 |V0666 Aql *|194429.8+120523 |M | 14.3 | 15.8 : | |p |28065. | | 305. | | |01091 02283| +050667 |V0667 Aql |194438.0+100922 |L | 12.6 | 13.4 | |p | | | | | |01091 02343| +050668 |V0668 Aql |194500.7+055128 |RRAB | 14.6 | 15.6 | |p |29158.341 | | 0.389160 |33 | |01091 02348| +050669 |V0669 Aql |194455.3+093949 |M: | 15.1 |< 16.6 | |p |28055. | | 396. | |M6III: |01091 02283| +050670 |V0670 Aql |194507.7+095358 |LB | 13.6 | 14.3 | |p | | | | |M6e: |01091 02348| +050671 |V0671 Aql |194557.3+003002 |M | 13.8 | 18.0 : | |p |27280. | | 221. | | |00387 02316| +050672 |V0672 Aql *|194537.7+080118 |RRAB | 12.6 | 13.5 | |p |37943.341 | | 0.5298365 |25 | |00001 00504| +050673 |V0673 Aql |194537.9+101633 |M: | 15.5 |< 17.0 | |p |30000. :| | 300. : | | |01091 02348| +050674 |V0674 Aql |194604.0+065550 |L | 14.1 | 15.0 | |p | | | | | |01091 02283| +050675 |V0675 Aql |194602.7+135853 |IA: | 14.3 | 14.7 | |p | | | | | |01091 02343| +050676 |V0676 Aql |194642.8+062446 |EW/KE: | 14.3 | 14.8 | |p |29453.469 | | 0.575476 | | |01091 02348| +050677 |V0677 Aql |194630.8+100403 |SR | 14.2 |< 15.4 | |p |28081. | | 167. | | |01091 02283| +050678 |V0678 Aql *|194658.8+152523 |SRB | 14.6 | 16.1 | |p |29723. | | 142.0 | | |04027 02349| +050679 |V0679 Aql |194714.1+151842 |L | 13.5 | 15.0 | |p | | | | | |01091 02349| +050680 |V0680 Aql |194738.4+053544 |SR | 13.8 | 15.4 | |p |29153. | | 193. | | |01091 02349| +050681 |V0681 Aql |194732.0+085246 |L | 12.9 | 13.6 | |p | | | | | |01091 02283| +050682 |V0682 Aql |194755.3+014411 |IS | 13.7 | 15.2 | |p | | | | | |00387 02332| +050683 |V0683 Aql |194750.2+064754 |L | 12.7 | 13.7 | |p | | | | | |01091 02283| +050684 |V0684 Aql |194753.8+113930 |M: | 14.4 |< 16.2 | |p |29500. | | 306. | | |01091 02283| +050685 |V0685 Aql |194802.9+145037 |LB | 14.1 | 15.2 | |p | | | | |M6 |01091 02343| +050686 |V0686 Aql |194844.4-051631 |IS | 14.0 | 16.0 | |p | | | | | |00387 02316| +050687 |V0687 Aql |194835.5+110851 |L | 14.0 | 14.9 | |p | | | | | |01091 02283| +050688 |V0688 Aql *|194828.9+153716 |EA/DM: | 10.3 | 11.1 | 10.8 |p |33543.296 | | 3.889717 |15 *|OB |08085 02330| +050689 |V0689 Aql |194920.1-040858 |LB | 13.1 | 13.9 | |p | | | | | |03165 02316| +050690 |V0690 Aql |194933.0+090759 |EA/SD: | 15.1 | 15.7 | |p |28045.397 | | 1.42225 | | |01091 02349| +050691 |V0691 Aql |195026.1-014402 |RRAB | 14.0 | 15.5 | |p |30932.412 | | 0.552162 |19 | |06024 02332| +050692 |V0692 Aql |195021.5+014814 |L | 12.3 | 12.8 | |p | | | | | |00387 02332| +050693 |V0693 Aql |195033.1-005604 |L | 14.3 | 15.4 | |p | | | | | |00387 02332| +050694 |V0694 Aql *|195019.2+075015 |EA/SD | 12.4 | 12.9 | |p |28782.334 | | 0.450175 |27 |F0 |01091 02283| +050695 |V0695 Aql |195031.5+060242 |RRAB | 14.9 | 15.4 | |p |41919.405 | | 0.685555 |12 | |07333 06286| +050696 |V0696 Aql |195017.6+144159 |SRA: | 15.0 |< 16.5 | |p |29142. | | 164. | | |01091 02349| +050697 |V0697 Aql |195052.3+054404 |SR | 14.9 | 16.1 | |p |29470. | | 253. | | |01091 02349| +050698 |V0698 Aql |195040.6+101958 |SRA | 13.9 | 16.3 | |p |28050. | | 397. | |M6 |01091 02284| +050699 |V0699 Aql *|195047.1+074208 |EW/KE | 13.2 | 13.8 | 13.75 |p |28038.376 | | 0.876892 | | |03148 02284| +050700 |V0700 Aql |195046.4+132723 |SRB | 11.0 | 12.2 | |p |40484. | | 53. : | |K0 |00001 02284| +050701 |V0701 Aql |195051.5+095708 |L | 13.6 | 14.8 | |p | | | | | |01091 02284| +050702 |V0702 Aql |195102.0+121422 |LB | 14.2 | 15.3 | |p | | | | |M |03165 02284| +050703 |V0703 Aql |195131.5+094322 |L | 14.6 | 15.2 | |p | | | | | |01091 02284| +050704 |V0704 Aql |195131.5+141556 |M | 12.2 | 15.8 | |p |28055. | | 281. | | |01091 02284| +050705 |V0705 Aql |195146.4+123516 |M | 14.3 |< 16.3 | |p |28340. | | 366. | | |01091 02343| +050706 |V0706 Aql *|195257.8-020549 |RRAB | 12.2 | 13.6 | |p |27003.280 | | 0.3772390 |30 |F0 |00387 02316| +050707 |V0707 Aql |195220.4+160517 |M | 13.9 |< 16.5 | |p |27535. | | 259. | | |00773 02330| +050708 |V0708 Aql *|195228.8+145311 |SRB | 13.9 | 14.9 | |p |40468. | | 65.0 | | |00001 02330| +050709 |V0709 Aql |195311.8-011445 |RRAB | 14.2 | 15.5 | |p |30932.496 | | 0.607783 |16 | |06024 02332| +050710 |V0710 Aql |195252.0+092031 |SR | 15.3 | 16.2 | |p |29100. | | 210. | | |01091 02349| +050711 |V0711 Aql |195344.1+105942 |EA/SD | 15.0 | 16.1 | |p |29071.511 | | 2.487117 |10 *| |01091 01960| +050712 |V0712 Aql |195350.4+115340 |EA | 14.4 | 14.8 | |p | | | 1.005 /N| | |01091 02284| +050713 |V0713 Aql |195342.3+153110 |M | 14.4 | 17.5 : | |p |27560. | | 300. | | |00773 02330| +050714 |V0714 Aql *|195406.3+075333 |EA/SD: | 13.9 | 14.8 | |p |28045.367 | | 3.05985 |08 | |01091 02349| +050715 |V0715 Aql |195423.6+080018 |M | 13.8 |< 16.2 | |p |28350. | | 224. | | |01091 02349| +050716 |V0716 Aql |195428.8+065930 |L | 14.1 | 15.1 | |p | | | | | |01091 02284| +050717 |V0717 Aql |195511.7+001319 |RRAB | 13.6 | 15.5 | |p |30930.454 | | 0.486594 |15 | |06024 02332| +050718 |V0718 Aql |195445.1+140958 |LB | 14.0 | 14.7 | |p | | | | | |03148 02349| +050719 |V0719 Aql |195530.6+072543 |EA/SD | 12.2 | 14.0 | |p |28753.477 | | 6.751715 |04 *| |01091 02343| +050720 |V0720 Aql |195544.3+015038 |L | 15.0 | 15.9 | |p | | | | | |00387 02332| +050721 |V0721 Aql |195536.2+082321 |RRC | 14.5 | 15.1 | |p |36819.415 | | 0.319997 |34 | |03148 02349| +050722 |V0722 Aql |195600.8-014447 |L | 14.3 | 15.3 | |p | | | | | |00387 02332| +050723 |V0723 Aql |195638.5-005822 |RR | 14.8 | 15.6 | |p | | | 1.014 /N| | |00387 02332| +050724 |V0724 Aql *|195642.7+010503 |EW/DW | 11.10 | 11.57 | 11.57 |V |36818.672 | | 0.51752 | |G0 |03157 02316| +050725 |V0725 Aql |195645.0+104933 |UG | 13.7 | 16.2 | |p | | | | | |01091 02284| +050726 |V0726 Aql |195655.9+055857 |M | 13.3 | 18.0 : | |p |29157. | | 337. | | |01091 02284| +050727 |V0727 Aql |195653.6+075853 |M | 13.5 |< 16.2 | |p |28035. | | 279. | | |01091 02284| +050728 |V0728 Aql |195700.3+061836 |RRAB | 14.5 | 16.0 | |p |41892.423 | | 0.448598 |10 | |07333 02349| +050729 |V0729 Aql |195650.7+131750 |EA/SD: | 14.2 | 15.1 | |p |28337.391 | | 1.281905 |22 *| |01091 02349| +050730 |V0730 Aql |195703.1+114830 |LB | 13.3 | 13.9 | |p | | | | |M2 |01091 02349| +050731 |V0731 Aql |195706.7+153303 |LB | 14.1 | 14.9 | |p | | | | | |00773 02330| +050732 |V0732 Aql |195738.9+063349 |LB | 12.4 | 13.4 | |p | | | | |M2 |01091 02284| +050733 |V0733 Aql *|195733.0+110237 |DCEP | 9.73 | 10.16 | |V |42597.207 | | 6.178748 |32 |F9Ib |08632 03173| +050734 |V0734 Aql *|195730.1+154343 |M: | 14.6 |< 16.1 | |p |27543. | | 256. | | |00773 02330| +050735 |V0735 Aql |195743.6+154908 |L | 14.6 | 16.1 | |p | | | | | |00773 02330| +050736 |V0736 Aql |195757.2+154626 |LB | 14.3 | 17.0 : | |p | | | | | |00773 02285| +050737 |V0737 Aql |195758.7+152651 |EA/SD: | 14.9 | 15.6 | |p |27638.444 | | 1.033737 |15 *| |00773 02285| +050738 |V0738 Aql |195830.8+001920 |L | 14.1 | 14.9 | |p | | | | | |00387 02332| +050739 |V0739 Aql |195839.7-044921 |RR | 14.2 | 15.7 | |p | | | 0.43 : | | |00387 02332| +050740 |V0740 Aql |195831.5+054405 |RRAB | 14.2 | 15.4 | |p |41915.372 | | 0.4407905 |11 | |00001 02349| +050741 |V0741 Aql |195835.5+080530 |RRAB | 14.8 | 15.2 | |p |36816.410 | | 0.610766 |16 | |03148 02349| +050742 |V0742 Aql |195833.5+110521 |L | 14.7 | 15.8 | |p | | | | | |01091 02284| +050743 |V0743 Aql *|195844.1+095712 |SR | 15.9 | 16.5 | |p |29475. | | 100. | | |01091 02349| +050744 |V0744 Aql |195835.4+160253 |M | 13.7 |< 16.5 | |p |27581. | | 277. | | |00773 02330| +050745 |V0745 Aql |195923.6-015751 |RRC: | 13.7 | 14.2 | |p | | | | | |00387 02316| +050746 |V0746 Aql |195858.5+113506 |SR | 14.9 | 16.2 | |p | | | 70. : | | |01091 02349| +050747 |V0747 Aql |195903.9+144551 |M | 14.0 |< 16.2 | |p |28090. | | 295. | | |01091 02284| +050748 |V0748 Aql |195939.6+104623 |L | 14.2 | 14.9 | |p | | | | | |01091 02343| +050749 |V0749 Aql |195941.0+105444 |L | 14.6 | 15.2 | |p | | | | | |01091 02284| +050750 |V0750 Aql |200005.5+102102 |M | 14.3 | 18.5 : | |p |28010. | | 359. | | |01091 02349| +050751 |V0751 Aql |200018.6+021500 |RRAB | 14.0 | 15.0 | |p |26980.237 | | 0.5575074 |12 | |00387 02332| +050752 |V0752 Aql |200028.2+002109 |LB | 13.1 | 14.4 | |p | | | | |M |03165 02316| +050753 |V0753 Aql |200008.2+101522 |RRAB | 14.8 | 15.5 | |p |29496.382 | | 0.4268972 |15 | |03174 02349| +050754 |V0754 Aql |200039.8-051645 |L | 14.6 | 15.4 | |p | | | | | |00387 02316| +050755 |V0755 Aql *|200007.3+144229 |EA/SD: | 14.8 | 15.8 | |p |29195.308 | | 1.015963 |20 *| |04027 02350| +050756 |V0756 Aql |200015.5+130422 |RV: | 15.2 | 16.4 | |p | | | 110. : | | |01091 02349| +050757 |V0757 Aql |200019.6+095425 |SRA | 14.0 | 16.2 | |p |28255. | | 158. | | |01091 02284| +050758 |V0758 Aql |200020.6+110213 |LB | 13.4 | 13.8 | |p | | | | |M6e |01091 02284| +050759 |V0759 Aql |200014.8+135459 |M | 13.9 | 18.0 : | |p |29115. | | 333. | | |01091 02284| +050760 |V0760 Aql |200040.1+084206 |EA/SD: | 13.5 | 14.5 | |p |28045.362 | | 1.2598703 |10 *| |00001 02284| +050761 |V0761 Aql |200027.3+142138 |EA/SD | 13.0 | 14.1 | |p |28067.342 | | 1.069343 |10 *| |01091 02284| +050762 |V0762 Aql |200106.9+001503 |EA/SD | 13.9 | 15.7 | |p |30930.410 | | 2.1 /N| | |00387 02317| +050763 |V0763 Aql |200132.8-033454 |RRAB | 14.8 | 15.6 | |p |27311.431 | | 0.5862158 |15 | |00387 02332| +050764 |V0764 Aql |200131.9+053258 |RRAB | 14.8 | 15.4 | |p |29453.438 | | 0.36413 | | |01091 02349| +050765 |V0765 Aql *|200204.9-030231 |DCEPS | 12.23 | 12.40 | |V |43997.16 | | 5.727 |50 : | |08637 02317| +050766 |V0766 Aql *|200202.2+022126 |RRC: | 14.0 | 14.6 | |p |30933.51 | | 0.3444 | | |00387 02317| +050767 |V0767 Aql |200155.8+124248 |RRAB | 14.7 | 15.3 | |p |29071.461 | | 0.57724 |16 | |01091 02284| +050768 |V0768 Aql |200224.8+152101 |SR | 13.8 |< 15.1 | |p | | | | | |00773 02285| +050769 |V0769 Aql *|200312.7-034049 |EA/SD: | 14.9 | 15.9 | |p |27272.47 | | 4.56228 |13 | |00387 02332| +050770 |V0770 Aql *|200309.2+095014 |EA/SD: | 13.6 | 14.6 | 14.0 |p |28746.408 | | 1.59289 |10 *| |01091 02284| +050771 |V0771 Aql *|200329.4+131051 |IS | 14.8 |< 16.5 | |p | | | | | |01091 02349| +050772 |V0772 Aql |200358.6+113841 |M | 14.9 | 18.0 : | |p |28825. | | 285. | | |01091 02349| +050773 |V0773 Aql |200436.5-012947 |RRAB | 13.6 | 15.2 | |p |26931.488 | | 0.4849264 |29 | |00387 02317| +050774 |V0774 Aql *|200443.4+114126 |L | 12.8 | 13.7 | |p | | | | | |01091 02349| +050775 |V0775 Aql |200429.5+083034 |M: | 14.8 |< 16.3 | |p |29070. :| | 306. : | | |01091 02349| +050776 |V0776 Aql |200434.4+082920 |M | 13.8 | 16.5 | |p |29200. | | 285. | | |01091 02349| +050777 |V0777 Aql *|200511.6+074128 |SRA | 14.1 | 15.4 | |p |29478. | | 223. | | |01091 02349| +050778 |V0778 Aql |200524.9+145108 |M | 13.4 | 18.0 : | |p |29090. | | 260. | | |00773 02331| +050779 |V0779 Aql |200648.4-004833 |RRAB | 15.0 | 16.3 | |p |27577.521 | | 0.3941683 | | |00387 02332| +050780 |V0780 Aql |200627.8+081926 |M | 13.0 |< 16.4 | |p |31235. | | 367. | | |01091 02349| +050781 |V0781 Aql |200646.1+150157 |L | 14.1 | 15.2 | |p | | | | | |00773 02331| +050782 |V0782 Aql |200714.4+012931 |RR | 15.0 | 16.0 | |p |30936.456 | | 0.385 |42 | |00387 02317| +050783 |V0783 Aql |200652.6+151605 |L | 14.6 | 15.3 | |p | | | | | |00773 02331| +050784 |V0784 Aql *|200707.2+132959 |EW/KW | 14.2 | 14.8 | 14.8 |p |29108.388 | | 0.457394 | | |01091 02349| +050785 |V0785 Aql |200737.5+025331 |RRAB | 13.3 | 14.9 | |p |27356.250 | | 0.428819 |20 | |00387 02332| +050786 |V0786 Aql |200808.4-002152 |L | 11.9 | 12.6 | |p | | | | | |00387 02333| +050787 |V0787 Aql |200820.8+000425 |E | 14.5 | 15.5 | |p |26931.488 | | 1.04 /N| | |00387 02317| +050788 |V0788 Aql |200848.4-010424 |RRAB | 13.6 | 14.1 | |p |27340.383 | | 0.63021 |30 | |00387 02317| +050789 |V0789 Aql |200917.7-001021 |IS: | 13.0 | 13.6 | |p | | | | | |00387 02333| +050790 |V0790 Aql |201127.4-004715 |RRC | 14.5 | 15.0 | |p |30937.495 | | 0.258 |45 | |00387 02317| +050791 |V0791 Aql |201319.4+030649 |L | 14.9 | 15.8 | |p | | | | | |00387 02333| +050792 |V0792 Aql |201502.4-002859 |RRAB | 14.3 | 15.5 | |p |27395.246 | | 0.5855120 |26 | |00387 02333| +050793 |V0793 Aql |201523.0+032107 |RRC | 12.6 | 13.1 | |p |30930.42 | | 0.398 |40 | |00387 02333| +050794 |V0794 Aql *|201734.0-033950 |NL | 14.0 | 16.5 | |p | | | | |pec(e+cont) |04519 04519| +050795 |V0795 Aql |184706.9+114012 |EA/DS | 13.4 |< 16.4 | |p |29054.716 | | 12.098163 |10 : | |05249 02368| +050796 |V0796 Aql |184917.9+112741 |EA/SD: | 14.8 |< 17.0 | |p |30200.451 | | | | |00164 02368| +050797 |V0797 Aql |184956.8+112743 |M | 14.6 |< 17.0 | |p |29539. :| | 302. : | | |00164 02368| +050798 |V0798 Aql |185302.0+094656 |SRA | 15.0 | 16.3 | |p |39705. | | 365.8 | | |06004 02368| +050799 |V0799 Aql |185548.8-034024 |EA/SD: | 12.9 | 13.7 | |p |32853.184 | | 2.100617 |10 *| |02274 01397| +050800 |V0800 Aql *|185632.4+104842 |LB: | 12.8 | 15.7 | |p | | | | | |03165 02368| +050801 |V0801 Aql *|185858.3-063045 |CWA | 14.4 | 16.3 : | |p |27932.68 | | 14.167 | | |01397 01397| +050802 |V0802 Aql |185854.8-030112 |DSCT | 13.4 | 14.3 | |p |28668.534 | | 0.1337997 |50 | |01397 01397| +050803 |V0803 Aql *|190044.1-072855 |EW/KW | 14.0 | 15.0 | 14.8 |p |28780.357 | | 0.2634254 | | |08088 01397| +050804 |V0804 Aql *|190541.4-061304 |EW/DW: | 12.5 | 12.8 | 12.8 |p |28777.322 | | 0.655366 | | |01397 01397| +050805 |V0805 Aql *|190618.2-113857 |EA/DM | 7.58 | 8.22 | 7.90 |V |27927.8470 | | 2.4082337 |11 *|A2+A7 |00001 BD | +050806 |V0806 Aql |190540.5+080256 |M: | 15.8 |< 17.0 | |p |31374. | | 300. : | |M6-M9 |01949 02368| +050807 |V0807 Aql |190516.9+174932 |LB: | 13.0 | 14.0 | |p | | | | |M6.5 |00966 00002| +050808 |V0808 Aql *|190726.3-093349 |EA/SD | 13.1 | 14.0 | 13.3 |p |27929.963 | | 1.573873 |09 *| |01397 01397| +050809 |V0809 Aql |190744.1-070335 |RRC | 14.0 | 14.5 | |p |28779.310 | | 0.286862 |25 | |01397 00504| +050810 |V0810 Aql |190948.8+011259 |M | 14.8 |< 17.2 | |p |25529. | | 114. | | |01949 02368| +050811 |V0811 Aql |191249.2-002329 |M: | 14.8 |< 16.8 | |p |40145. | | 146.1 | | |00001 02368| +050812 |V0812 Aql *|191854.1+041735 |SR: | 14.8 | 16.8 | |p |26925. | | 150. : | |M7-M8 |01949 02369| +050813 |V0813 Aql |192007.3+025557 |M: | 16.2 |< 17.4 | |p |25882. | | 343. | | |01949 02369| +050814 |V0814 Aql *|192054.7-010214 |M | 14.7 |< 17.0 | |p |25478. | | 173.5 | | |01949 02369| +050815 |V0815 Aql |192211.9-013251 |M | 13.3 |< 15.7 | |p |26482. | | 210.5 | | |01949 02329| +050816 |V0816 Aql |192310.6-013102 |M | 13.2 |< 16.5 | |p |31325. :| | 366. : | | |01949 02329| +050817 |V0817 Aql |192301.3+081243 |M | 13.6 |< 16.8 | |p |31650. | | 310. : | | |01949 02369| +050818 |V0818 Aql |192328.3+031940 |M: | 15.5 |< 17.4 | |p |25885. | | 339. | | |01949 02369| +050819 |V0819 Aql |192607.6+074249 |M: | 15.5 |< 16.8 | |p |31650. | | | |M7-M9 |01949 02369| +050820 |V0820 Aql |192859.2-015134 |M | 13.7 |< 16.5 | |p |31652. | | 330. : | | |01949 02369| +050821 |V0821 Aql |193016.0+050727 |SRA: | 15.6 |< 17.0 | |p |25790. | | 102.8 | | |01949 02369| +050822 |V0822 Aql *|193115.8-020637 |EB/DM | 6.87 | 7.44 | 7.07 |V |42577.333 | | 5.294950 | |B5+B8:V |08091 00562| +050823 |V0823 Aql |193424.3+053919 |M | 14.1 | 18.0 : | |p |25473. | | 259. | | |01949 02369| +050824 |V0824 Aql |193519.6+033913 |M | 15.1 |< 17.5 | |p |26229. | | 139. | | |01949 02369| +050825 |V0825 Aql |193828.9+040257 |M: | 15.1 |< 17.0 | |p |25495. | | 165. | | |01949 02369| +050826 |V0826 Aql |193827.8+062500 |M: | 15.4 |< 16.5 | |p |31650. | | 211. | | |03148 02369| +050827 |V0827 Aql |193950.7+104941 |M: | 14.6 |< 17.7 | |p |33420. | | 387. : | | |00504 06996| +050828 |V0828 Aql |194345.5+105238 |EA | 14.2 | 15.4 | |p | | | | | |02002 02003| +050829 |V0829 Aql *|194657.3+033029 |EA/SD: | 11.2 | 12.0 | |p |42621.472 | | 1.2114053 | |F5 |08096 BD | +050830 |V0830 Aql |194642.3+160211 |LB | 10.1 | 10.8 | |p | | | | |M4-M6 |00104 00492| +050831 |V0831 Aql |195047.5-033658 |RRAB | 15.7 | 16.5 | |p | | | | | |00845 02370| +050832 |V0832 Aql |195124.3+042006 |RRAB | 14.4 | 16.2 | |p |41904.460 | | 0.52353 |10 | |07003 02370| +050833 |V0833 Aql |195554.2+043530 |M: | 15.0 |< 16.5 | |p |31671. | | | | |02267 02370| +050834 |V0834 Aql |200953.8+034118 |M: | 14.5 |< 16.5 | |p | | | | | |02267 02371| +050835 |V0835 Aql |201015.4-054300 |M: | 13.8 | 18.5 : | |p |31671. | | | | |02267 02371| +050836 |V0836 Aql *|201249.9-043608 |EA: | 13.8 | 14.7 | |p | | | | |A2 |02267 02371| +050837 |V0837 Aql |203228.2-051712 |M | 11.1 |< 16. | |p |33125. | | 177.9 | |Me |00797 06286| +050838 |V0838 Aql |203815.3-065440 |M: | 12.3 |< 13.0 | |p |27281. | | 336. | | |00797 00190| +050839 |V0839 Aql |184517.4-025725 |LB | 12.5 | 13.4 | |p | | | | |M1 |01110 01110| +050840 |V0840 Aql |185718.4+064154 |SR | 11.0 | 11.8 | |p | | | 67.5 | |M3-M7 |02004 02004| +050841 |V0841 Aql |190739.8+102944 |NB | 11.5 |< 17.5 | |p |33743. :|1951 | | |pec(NOVA) | 02206| +050842 |V0842 Aql |191354.4+023731 |LB | 9.7 | 11.0 | |p | | | | |M6+III: |02004 02004| +050843 |V0843 Aql |190526.4-064752 |EA/KE | 9.8 | 10.2 | |p |29864.182 | | 1.497957 : | |B9 |00169 06286| +050844 |V0844 Aql |190656.9+070906 |SRA | 10.3 | 11.1 | |p |29817. | | 369. | |M5-M7ep |00169 BD | +050845 |V0845 Aql |202921.5+005055 |M | 11.8 | 16.7 | |p |34222. | | 228.5 |50 : | |00001 06286| +050846 |V0846 Aql |191336.4-015501 |M | 13.3 |< 16.1 | |p |29459. | | 170. | | |01949 02369| +050847 |V0847 Aql |191949.0+020155 |M | 15.8 |< 17.5 | |p |25808. | | 168.5 | | |01949 02369| +050848 |V0848 Aql |192034.3+030300 |L | 14.1 | 15.3 | |p | | | | | |01949 02314| +050849 |V0849 Aql |192321.6-012132 |M: | 15.4 |< 16.4 | |p |25538. | | 289.5 | | |01949 02329| +050850 |V0850 Aql *|192334.7+003759 |M: | 16.2 |< 17.3 | |p |25888. | | 320. | | |01949 02369| +050851 |V0851 Aql |192400.8+012125 |M | 16.0 |< 17.8 | |p |25851. | | 148. | | |01949 02369| +050852 |V0852 Aql |192543.2-001718 |L | 14.2 | 15.7 | |p | | | | | |01949 02369| +050853 |V0853 Aql |192807.6+014437 |L | 14.9 | 16.5 | |p | | | | | |01949 02369| +050854 |V0854 Aql |192827.4+020654 |M: | 15.3 |< 17.2 | |p |25799. | | 192. | | |01949 02369| +050855 |V0855 Aql |192831.1+023651 |SR | 14.0 | 15.3 | |p |25838.7 | | 54.44 | | |01949 00533| +050856 |V0856 Aql |192852.2-004637 |IS: | 13.0 | 15.6 | |p | | | | | |01949 00533| +050857 |V0857 Aql |192841.8+035401 |L | 15.7 | 16.5 | |p | | | | | |01949 02369| +050858 |V0858 Aql |192912.2+035141 |LB | 11.4 | 12.2 | |p | | | | |M4-M5 |01949 02329| +050859 |V0859 Aql |193101.2+052354 |LB | 11.7 | 12.7 | |p | | | | | |01949 02369| +050860 |V0860 Aql |193334.2+041305 |SRA | 15.0 | 17.1 | |p |25476. | | 347. | | |01949 02369| +050861 |V0861 Aql |193358.7+040953 |RVA | 15.1 | 16.5 | |p |25839. | | 110.6 | | |01949 02369| +050862 |V0862 Aql |193542.7-001158 |M | 14.7 | 17.2 | |p |26516. | | 143. | | |01949 02369| +050863 |V0863 Aql |193539.4+075557 |M: | 14.4 |< 16.6 | |p |28342. | | 242. | | |01949 02369| +050864 |V0864 Aql |200754.9+104734 |E | 13.1 | 13.8 | |p |33949.27 | | | | |01446 00294| +050865 |V0865 Aql |202354.6+005645 |M | 9.5 | 13.9 | |p |38593. | | 364.8 | |M6-M7(S7,5e:) |00001 04341| +050866 |V0866 Aql *|184925.0-010620 |EA/SD | 14.6 | 16.0 | 14.8 |p |38641.264 | | 1.1966770 |17 *| |08097 00494| +050867 |V0867 Aql *|185610.6-001545 |M | 13.4 | 16.2 | |p |37528. | | 195.16 | | |08097 00494| +050868 |V0868 Aql |185647.7+014852 |L: | 13.2 | 16.1 | |p | | | | | |08097 00494| +050869 |V0869 Aql |191941.8-012609 |EA/SD | 14.7 | 15.9 | |p |25798.45 | | 1.098718 |15 *| |03148 02369| +050870 |V0870 Aql |193613.8+070418 |RV | 14.1 | 15.5 | |p | | | 100. : | | |01949 00533| +050871 |V0871 Aql *|184239.4-030928 |EA/SD: | 13.3 | 14.5 | 14.5 |p |38637.28 | | 2.952682 |05 *| |08097 06887| +050872 |V0872 Aql *|184258.7-021353 |EA/SD: | 15.1 | 16.4 | 15.7 : |p |38621.39 | | 0.5389006 |20 :*| |08097 06887| +050873 |V0873 Aql *|184500.6+003404 |EW/KW: | 13.3 | 14.3 | |p |38651.325 | | 0.3575706 | | |08097 06887| +050874 |V0874 Aql |184541.1+093839 |M | 14.6 |< 17.0 | |p |29428. | | 145. | |C |00164 02368| +050875 |V0875 Aql *|184639.5+115724 |SR: | 14.6 | 16.5 | |p |29116. | | 60.05 |38 | |00164 02368| +050876 |V0876 Aql |184716.7+103649 |L | 14.5 | 16.0 | |p | | | | | |00164 02368| +050877 |V0877 Aql *|184912.6+094417 |M | 14.5 | 18. : | |p |29396. | | 121.6 | | |00164 02368| +050878 |V0878 Aql |185006.0+070620 |LB | 11.9 | 12.9 | |p | | | | |M2-M6 |00164 02368| +050879 |V0879 Aql |184958.6+105853 |DSCT | 13.1 | 14.8 | |p |29431.472 | | 0.118981 |25 : | |00164 02368| +050880 |V0880 Aql |184959.5+112530 |RRAB | 14.9 | 15.6 | |p |37870.480 | | 0.4478 |20 | |06004 06004| +050881 |V0881 Aql |185227.0+075858 |L: | 11.8 | 13.0 | |p | | | | | |00164 02368| +050882 |V0882 Aql *|185501.9+003355 |RRAB | 13.2 | 15.2 | |p |38616.417 | | 0.5096161 |20 | |08097 06887| +050883 |V0883 Aql |185551.0+092916 |LB | 13.8 | 15.5 | |p | | | | |M0: |00164 02368| +050884 |V0884 Aql |185554.0+111330 |L | 14.1 | 16.1 | |p | | | | | |00164 02368| +050885 |V0885 Aql *|185801.6+002818 |EA/SD | 14.3 | 15.5 | 14.9 : |p |38621.320 | | 6.039064 |10 | |08097 06887| +050886 |V0886 Aql |185911.3-011909 |M | 14.8 | 18.0 : | |p |36398. | | 324. : | | |08097 06887| +050887 |V0887 Aql |190019.0+134439 |EA/SD: | 12.7 | 14.4 | |p | | | | | |00164 02368| +050888 |V0888 Aql *|190137.5+113800 |EA/SD: | 13.2 | 14.9 | |p |30200.54 | | | | |00164 02368| +050889 |V0889 Aql *|191849.8+161500 |EA/DM | 8.52 | 9.1 | 9.0 |V |38242.334 | | 11.120879 |03 *|B9 |08098 04524| +050890 |V0890 Aql *| | | | | | | | | | | | |N +050891 |V0891 Aql *|194410.9+001826 |EW/KW | 15.4 | 15.8 | 15.8 |p |30931.38 | | 0.419508 | | |02267 02370| +050892 |V0892 Aql |194422.0+020312 |RRAB | 14.5 | 15.6 | |p |29110.464 | | 0.488852 |18 : | |02267 02370| +050893 |V0893 Aql |194931.9-021630 |M | 12.0 |< 16.5 | |p |28110. | | 316.7 | |M2III:e |02267 02370| +050894 |V0894 Aql |195235.8+041904 |RRAB | 15.0 | 16.9 | |p |41915.372 | | 0.59976 |08 | |07003 02370| +050895 |V0895 Aql *|195448.3+042946 |RRC | 13.5 | 14.2 | |p |41892.423 | | 0.26515 |35 | |07003 02370| +050896 |V0896 Aql |195657.8+013148 |RRAB | 14.4 | 15.2 | |p |30931.412 | | 0.443063 |20 | |02267 02370| +050897 |V0897 Aql |195740.6-022837 |EA/SD: | 16.1 | 16.9 | |p |30903.468 | | 0.7563 | | |02267 02370| +050898 |V0898 Aql |195904.5-015522 |L | 13.0 | 13.8 | |p | | | | | |02267 02370| +050899 |V0899 Aql |200129.4+042536 |SR | 13.5 | 16.6 | |p | | | 100. : | | |02267 02370| +050900 |V0900 Aql |200325.0-050915 |RRAB | 14.6 | 16.0 | |p |30937.53 | | 0.874 |20 : | |02267 02370| +050901 |V0901 Aql |200511.9-023959 |M | 13.1 |< 16.5 | |p |28453. | | 312. | | |02267 02370| +050902 |V0902 Aql |200530.8+042713 |LB | 11.1 | 12.8 | |p | | | | |M |02267 02371| +050903 |V0903 Aql |200822.1-052119 |RRAB | 15.9 | 16.5 | |p |30930.42 | | 0.35366 |20 | |02267 02371| +050904 |V0904 Aql |201009.7-000309 |RRAB | 14.4 | 15.2 | |p |30936.43 | | 0.620067 |10 | |02267 02371| +050905 |V0905 Aql |201015.3+013418 |RRAB | 15.0 | 16.1 | |p |31671.457 | | 0.435006 |14 | |02267 02371| +050906 |V0906 Aql |201256.1+043208 |RRAB | 14.9 | 15.7 | |p |30932.417 | | 0.477799 |15 | |02267 02371| +050907 |V0907 Aql *|201442.1+004937 |EW/KE: | 15.3 | 15.7 | 15.7 |p |30930.44 | | 0.676776 | | |02267 02371| +050908 |V0908 Aql |201832.4+004229 |RRAB | 15.2 | 16.0 | |p |30932.417 | | 0.364756 |19 | |02267 02371| +050909 |V0909 Aql |202159.4-044149 |RR: | 14.5 | 15.3 | |p |30937.50 | | 0.5756 |49 | |02267 02371| +050910 |V0910 Aql |202311.6-013358 |RRAB | 13.5 | 15.1 | |p |31672.406 | | 1. /N| | |02267 02371| +050911 |V0911 Aql |202347.3+033650 |RR | 15.6 | 16.7 | |p |31673.495 | | | | |02267 02371| +050912 |V0912 Aql *|184816.3+004904 |DCEP | 12.5 | 13.7 | |p |27245.478 | | 4.40034 |31 |G0 |07007 00141| +050913 |V0913 Aql |185429.0+103757 |SRA | 9.2 | 10.5 | |p |29735. | | 50. | |M5II |02593 03763| +050914 |V0914 Aql *|190251.9-031009 |EA/SD: | 14.8 | 16.3 | |p |38289.206 | | 3.337217 |10 | |08717 02274| +050915 |V0915 Aql |190309.9+121509 |LB | 10.2 | 10.8 | |p | | | | |S5,2-S7,2 |05411 BD | +050916 |V0916 Aql |191000.4+123212 |DCEP | 11.6 | 13.2 | |p |36341.31 | | 13.44155 |40 | |02596 02596| +050917 |V0917 Aql |191052.1+120900 |EA/SD: | 13.5 | 14.5 | |p |36381.405 | | 1.832405 | | |02600 00489| +050918 |V0918 Aql |191701.2-101735 |M | 13.6 | 16.3 | |p |39010. | | 196.91 |37 | |00504 06286| +050919 |V0919 Aql *|192255.7-010231 |EB/KE: | 13.0 | 14.0 | 13.8 |p |35369.358 | | 0.797102 | | |02279 00533| +050920 |V0920 Aql *|192737.9-010150 |RRAB | 13.3 | 14.3 | |p |34548.507 | | 0.4955033 |12 | |02279 00533| +050921 |V0921 Aql |193019.9-013517 |RRAB | 13.5 | 15.0 | |p |35698.533 | | 0.482889 |12 | |03148 02369| +050922 |V0922 Aql *|193029.1+011305 |RRAB | 16.3 | 17.5 | |p |34192.413 | | 0.458874 |11 | |02279 02369| +050923 |V0923 Aql *|193033.1+032640 |GCAS | 6.04 |( 0.12 )| |V | | | | |B5.5IIIpe-B8V |03178 BD | +050924 |V0924 Aql |193436.4-054802 |M | 13.3 | 16.5 | |p |38284. | | 273.65 |48 |Me |00504 00504| +050925 |V0925 Aql *|194202.3+115015 |SR | 10.1 | 12.0 | |p | | | | |K5 |06996 02096| +050926 |V0926 Aql |194813.4+092343 |EA/SD: | 13.8 | 14.6 | |p |28403.500 | | 2.97303 |10 : | |02480 02480| +050927 |V0927 Aql |185850.8-081237 |RRAB | 14.5 | 15.6 | |p |28668.560 | | 0.447804 |13 | |04231 04231| +050928 |V0928 Aql |185903.0-081311 |SR | 15.2 | 16.7 | |p |28354. | | 87.4 | | |04231 04231| +050929 |V0929 Aql *|185859.6-054731 |E: | 15.1 | 15.7 | |p | | | | | |04231 04231| +050930 |V0930 Aql |185922.7-082142 |RR | 15.0 | 16.7 | |p | | | 0.364 | | |04231 04231| +050931 |V0931 Aql |185928.1-110559 |RRC | 15.6 | 16.4 | |p |36406.370 | | 0.392429 |28 | |06077 04231| +050932 |V0932 Aql |185931.3-081716 |RR | 15.4 | 16.3 | |p |28668.572 | | 0.492054 |27 | |04231 04231| +050933 |V0933 Aql |185956.4-111959 |EA/SD | 15.3 | 17.1 | |p |36428.383 | | 6.0499355 |09 *| |08717 04231| +050934 |V0934 Aql |185956.5-111129 |IS: | 15.5 | 17.1 | |p | | | | | |00504 04231| +050935 |V0935 Aql |190005.8-063721 |E/SD: | 15.2 | 16.9 | |p | | | | | |04231 04231| +050936 |V0936 Aql *|190017.5-053749 |E | 13.9 | 14.8 | |p | | | | | |04231 04231| +050937 |V0937 Aql |190036.2-114754 |M | 13.0 | 18. | |p |27660. | | 321. | |M5.5 |04231 04231| +050938 |V0938 Aql |190032.3-072754 |LB | 14.1 | 16.0 | |p | | | | |M5 |04231 04231| +050939 |V0939 Aql |190035.0-062859 |SRA | 15.5 | 17.1 | |p |29105. | | 119. | |M5 |04231 04231| +050940 |V0940 Aql |190042.1-063601 |LB | 14.0 | 15.6 | |p | | | | |M5 |04231 04231| +050941 |V0941 Aql |190128.5-054436 |SRB | 15.2 | 16.8 | |p | | | 250. : | |M5 |04231 04231| +050942 |V0942 Aql |190148.3-060408 |SRA | 15.1 | 16.9 | |p |29140. :| | 120. : | |M4 |04231 04231| +050943 |V0943 Aql |190159.4-071152 |RR | 13.8 | 14.8 | |p | | | 0.535 : | | |04231 04231| +050944 |V0944 Aql |190214.4-055723 |SRA | 16.7 |< 18. | |p |27979. | | 330. | | |04231 04231| +050945 |V0945 Aql |190216.8-062011 |SRA | 14.9 | 16.3 | |p |29110. | | 220. | |M5 |04231 04231| +050946 |V0946 Aql |190231.4-063253 |RR | 15.2 | 16.9 | |p | | | 0.656 : | | |04231 04231| +050947 |V0947 Aql *|190237.9-052121 |RR: | 13.6 | 14.7 | |p | | | 0.5 : | | |04231 04231| +050948 |V0948 Aql |190249.6-052343 |SR: | 14.5 | 16.3 | |p |27648. | | 145. | | |04231 04231| +050949 |V0949 Aql |190303.0-094001 |SRA | 15.2 | 17.5 | |p |30877. :| | 276. | |M6: |04231 04231| +050950 |V0950 Aql |190306.7-093544 |M | 14.3 | 16.8 | |p |32450. | | 150. | |M5 |04231 04231| +050951 |V0951 Aql |190320.6-052514 |M | 15.3 |< 18.9 | |p |27996. | | 298. | |M |04231 04231| +050952 |V0952 Aql |190350.5-061531 |L | 15.5 | 16.8 | |p | | | | | |04231 04231| +050953 |V0953 Aql |190400.5-070919 |M | 15.5 | 18.2 | |p |29030. | | 204.25 | | |04231 04231| +050954 |V0954 Aql |190402.5-055347 |L | 14.8 | 15.9 | |p | | | | | |04231 04231| +050955 |V0955 Aql *|190418.4-104803 |EA/KE: | 14.1 | 15.0 | 14.9 |p |36430.425 | | 1.5331646 |15 | |08717 04231| +050956 |V0956 Aql *|190427.1-104651 |EW/KW | 13.9 | 14.3 | 14.2 |p |28671.518 | | 0.396174 | | |04231 04231| +050957 |V0957 Aql *|190431.8-104240 |RRAB | 13.7 | 15.1 | |p |29878.043 | | 0.6051399 |12 | |04530 04231| +050958 |V0958 Aql *|190441.3-090558 |RRAB | 15.7 | 16.9 | |p |38979.423 | | 0.4778669 |15 | |06077 04231| +050959 |V0959 Aql |190602.0-073750 |M | 14.2 | 17.5 | |p |28000. | | 320. | |M |04231 04231| +050960 |V0960 Aql |190616.9-084657 |RRAB | 14.1 | 15.7 | |p |28729.489 | | 0.627162 |20 : | |04231 04231| +050961 |V0961 Aql |190630.8-085340 |M | 14.0 |< 16.6 | |p |28760. | | 383. | | |04231 04231| +050962 |V0962 Aql |190644.0+132141 |EA/SD | 12.3 | 14.5 | |p |37159.415 | | 1.1654 | | |04239 04239| +050963 |V0963 Aql |191047.8-053235 |EA/SD: | 14.4 | 15.7 | |p |36402.38 | | 3.03685 |03 | |08717 04411| +050964 |V0964 Aql *|191056.6-053146 |EA/SD | 13.6 | 14.4 | 13.7 |p |38587.429 | | 1.2625425 |20 : | |08717 04231| +050965 |V0965 Aql |191132.6-020528 |SRA: | 13.9 |< 15.3 | |p |29850. | | 279. | | |04231 04231| +050966 |V0966 Aql |191159.9-020207 |M | 12.8 | 17.3 : | |p |26590. | | 353. | | |04231 04231| +050967 |V0967 Aql |191528.0-110019 |RRAB | 13.7 | 14.7 | |p |36405.400 | | 0.6685285 |13 | |06077 04231| +050968 |V0968 Aql |191709.0-052224 |M: | 14.4 |< 16.0 | |p |36400. | | 222.6 | | |04243 04411| +050969 |V0969 Aql *|191954.0-071314 |RRC | 14. | 14.8 | |p |36403.346 | | 0.293075 | | |06027 06027| +050970 |V0970 Aql |192318.8+072309 |EA/SD | 13.9 | 15.4 | |p |25535.303 | | 1.268987 |16 *| |03148 00533| +050971 |V0971 Aql |192604.8-105430 |CWB | 12.8 | 14.2 | |p |37129.246 | | 1.6244959 |36 | |05448 05448| +050972 |V0972 Aql |192555.9+071155 |RR | 14. | 15. | |p | | | | | |04341 04341| +050973 |V0973 Aql |192712.7+113257 |SR | 16. | 17.5 | |p | | | | | |04341 04341| +050974 |V0974 Aql |193006.6+073959 |M | 16.5 |< 17.5 | |p | | | | |M6-M9 |04341 04341| +050975 |V0975 Aql |193003.0+111628 |E | 16. | 16.5 | |p | | | | | |04341 04341| +050976 |V0976 Aql |193018.5+112336 |M: | 15. |< 17. | |p | | | | | |04341 04341| +050977 |V0977 Aql |193116.6+104844 |RR: | 17. | 18. | |p | | | | | |04341 04341| +050978 |V0978 Aql |193131.6+021257 |RRAB | 14.6 | 15.9 | |p |37576.282 | | 0.520935 |15 | |03148 02369| +050979 |V0979 Aql |193207.2+030045 |DCEP | 14.1 | 14.8 | |p |25465.60 | | 2.36562 |20 : | |03148 00533| +050980 |V0980 Aql |193229.1+071353 |M: | 16. |< 17.5 | |p | | | | |M8-M10 |04341 04341| +050981 |V0981 Aql *|193258.5+044931 |EB/SD | 14.1 | 15.3 | 14.5 |p |26505.465 | | 1.058151 | | |03148 00533| +050982 |V0982 Aql |193324.3+065200 |SR | 16. | 17.5 | |p | | | | | |04341 04341| +050983 |V0983 Aql |193346.0+102607 |EA | 15. | 15.5 | |p | | | | | |04341 04341| +050984 |V0984 Aql |193405.9+113403 |EA | 16. | 16.5 | |p | | | | | |04341 04341| +050985 |V0985 Aql |193419.1+104727 |M: | 16.5 |< 18. | |p | | | | | |04341 04341| +050986 |V0986 Aql |193430.0+060814 |M | 15.5 |< 17.5 | |p | | | | |M7-M8 |04341 04341| +050987 |V0987 Aql |193422.5+120507 |M: | 16. |< 18. | |p | | | | | |04341 04341| +050988 |V0988 Aql |193430.7+105021 |M: | 16. |< 18. | |p | | | | | |04341 04341| +050989 |V0989 Aql |193454.9+075357 |EA/SD: | 15.5 | 17. | |p | | | | | |04341 04341| +050990 |V0990 Aql |193523.6+041045 |EA/SD: | 15.2 | 16. | |p |31670.43 | | 3.05046 |10 : | |03148 02369| +050991 |V0991 Aql *|193534.9+063346 |E: | 14. | 16. | |p | | | | | |04341 04341| +050992 |V0992 Aql *|193556.9+142729 |SRA | 15.5 |< 17. | |p |36809. | | 329.07 | | |00504 04261| +050993 |V0993 Aql |193613.3+103825 |SRA | 15.0 | 17.0 | |p |29060. | | 208. | | |04262 04264| +050994 |V0994 Aql |193633.1+100247 |M | 15. |< 18. | |p | | | | | |04341 04341| +050995 |V0995 Aql |193705.9+103421 |EA | 16. | 17. | |p | | | | | |04341 04341| +050996 |V0996 Aql |193722.1+053808 |L | 14. | 15.5 | |p | | | | | |04341 04341| +050997 |V0997 Aql |193723.3+053555 |EA/SD: | 13.0 | 13.6 | |p |25503.34 | | 1.794843 |16 | |03148 02369| +050998 |V0998 Aql *|193704.2+134119 |M: | 16.5 |< 18. | |p | | | | | |04341 04341| +050999 |V0999 Aql *|193745.8+103253 |EA/SD: | 15.2 | 16.0 | |p |35695.416 | | 0.4335 | | |04263 04264| +051000 |V1000 Aql |193827.8+060245 |RRAB | 15.4 |< 16.5 | |p | | | | | |03148 02370| +051001 |V1001 Aql |193844.2+092534 |M: | 16. |< 17.5 | |p | | | | | |04341 04341| +051002 |V1002 Aql |193846.5+055705 |RR | 15.5 | 16.5 | |p | | | | | |04341 04341| +051003 |V1003 Aql |193907.7+091543 |M | 15. |< 18. | |p | | | | | |04341 04341| +051004 |V1004 Aql |193917.4+105707 |M | 14.0 | 17.0 | |p |29135. | | 388. | | |04263 04264| +051005 |V1005 Aql |193941.3+113713 |RRAB | 15.5 | 16.5 | |p |33148.306 | | 0.627168 | | |06997 04341| +051006 |V1006 Aql |193950.6+110927 |RRAB: | 14.6 | 15.8 | |p | | | 0.5 : | | |04267 04264| +051007 |V1007 Aql |193947.6+161125 |RR | 16. | 17. | |p | | | | | |04341 04341| +051008 |V1008 Aql |194027.4+102457 |EA/SD | 16.1 |< 17.0 | |p |29491.482 | | 6.89355 |10 : | |04267 04264| +051009 |V1009 Aql |194055.2+140833 |M: | 15.4 |< 17. | |p |28257. | | 321.2 | | |00504 04261| +051010 |V1010 Aql |194122.7+093638 |EA | 15.5 | 16.5 | |p | | | | | |04341 04341| +051011 |V1011 Aql |194133.7+113617 |RR | 17. | 18. | |p | | | | | |04341 04341| +051012 |V1012 Aql |194129.9+154119 |ISB | 12.9 | 14.7 | |p | | | | | |04027 02284| +051013 |V1013 Aql |194143.4+143038 |EA/DS | 14.5 | 16. | |p |39346.282 | | 11.266153 |07 | |07806 04341| +051014 |V1014 Aql |194204.7+063346 |EA | 15.5 | 16.5 | |p | | | | | |04341 04341| +051015 |V1015 Aql |194209.1+134623 |EA: | 16. | 17. | |p | | | | | |04341 04341| +051016 |V1016 Aql |194216.2+113736 |SR: | 15.5 | 16.5 | |p | | | | | |04341 04341| +051017 |V1017 Aql *|194231.6+110122 |EA/SD: | 16.2 |< 17.0 | |p |35717.368 | | 2.5038 |07 | |04267 04264| +051018 |V1018 Aql |194255.0+003948 |RRAB | 14.2 | 15.2 | |p |31027.29 | | 0.539869 |15 | |04251 02370| +051019 |V1019 Aql |194228.3+152129 |M: | 15. |< 17. | |p | | | | | |04341 04341| +051020 |V1020 Aql |194329.8+061830 |M: | 16. |< 17.5 | |p | | | | | |04341 04341| +051021 |V1021 Aql |194322.0+121913 |M | 15.5 |< 18. | |p | | | | | |04341 04341| +051022 |V1022 Aql |194341.0+110443 |SRA | 15.6 |< 17.0 | |p |29453. | | 109. | | |04273 04264| +051023 |V1023 Aql |194346.0+134124 |M: | 15.5 |< 17. | |p | | | | | |04341 04341| +051024 |V1024 Aql |194354.9+152323 |EA/SD | 16. | 17.5 | |p |39269.526 | | 1.790328 |15 *| |07806 04341| +051025 |V1025 Aql |194416.8+112133 |RR | 15.5 | 17. | |p | | | | | |04341 04341| +051026 |V1026 Aql |194409.0+144437 |RR | 17. | 18. | |p | | | | | |04341 04341| +051027 |V1027 Aql |194427.4+101817 |M | 15.5 |< 18. | |p | | | | | |04341 04341| +051028 |V1028 Aql |194545.3-005803 |RR: | 16. | 17. | |p | | | | | |04341 04341| +051029 |V1029 Aql |194526.9+155442 |SR: | 16.5 | 17.5 | |p | | | | | |04341 04341| +051030 |V1030 Aql |194554.9+142952 |M: | 16. |< 18. | |p | | | | | |04341 04341| +051031 |V1031 Aql |194636.2-035907 |RR | 16. | 17. | |p | | | | | |04341 04341| +051032 |V1032 Aql |194645.2-040018 |RR | 16. | 17. | |p | | | | | |04341 04341| +051033 |V1033 Aql *|194644.8+142157 |EA/SD | 15. |< 17.5 | |p |38669.204 | | 3.59958 |12 | |07806 04341| +051034 |V1034 Aql |194716.1+074632 |SR | 15.5 | 16.5 | |p | | | | | |04341 04341| +051035 |V1035 Aql |194732.2+085942 |RR: | 15. | 16. | |p | | | | | |04341 04341| +051036 |V1036 Aql |194755.2+150731 |M: | 16. |< 18. | |p | | | | | |04341 04341| +051037 |V1037 Aql |194842.2+144808 |M: | 16. |< 18. | |p | | | | | |04341 04341| +051038 |V1038 Aql |194927.8+100817 |M | 15. |< 18. | |p | | | | | |04341 04341| +051039 |V1039 Aql |194957.6+011104 |RR | 15.5 | 16.5 | |p | | | | | |04341 04341| +051040 |V1040 Aql |195001.6+094944 |RR: | 15. | 16.5 | |p | | | | | |04341 04341| +051041 |V1041 Aql |194956.8+144157 |RR: | 15.5 | 16. | |p | | | | | |04341 04341| +051042 |V1042 Aql |195001.6+141223 |RR | 16. | 17. | |p | | | | | |04341 04341| +051043 |V1043 Aql |195019.7+120540 |M | 15. | 18. | |p | | | | | |04341 04341| +051044 |V1044 Aql |195115.0+125436 |M | 15.5 | 18. | |p | | | | | |04341 04341| +051045 |V1045 Aql *|195105.4+151919 |EA/SD: | 13.3 | 14.3 | 13.5 |p |27713.307 | | 2.193750 |05 *| |04027 02330| +051046 |V1046 Aql *|195120.3+151908 |EA/SD | 13.4 | 14.5 | |p |35114.998 | | 5.282908 |06 *| |08321 02330| +051047 |V1047 Aql |195131.1+105722 |UG | 15. |< 17.5 | |p | | | | | |04341 04341| +051048 |V1048 Aql |195133.4+104633 |EA | 15. | 16. | |p | | | | | |04341 04341| +051049 |V1049 Aql |195151.1+083313 |EA/SD: | 14.5 | 16. | |p | | | | | |04341 04341| +051050 |V1050 Aql |195143.4+105115 |UG | 14.5 | 17.5 | |p | | | | | |04341 04341| +051051 |V1051 Aql |195209.8-002157 |SRB | 11. | 12. | |p | | | 100. : | |M3-M5 |04278 04278| +051052 |V1052 Aql |195216.8+060258 |SR: | 13.5 | 14. | |p | | | | | |04341 04341| +051053 |V1053 Aql |195154.4+153440 |L | 14.8 | 15.7 | |p | | | | | |04027 02330| +051054 |V1054 Aql |195218.2+115541 |SR | 12.2 | 12.6 | |p | | | | |M4 |04029 02349| +051055 |V1055 Aql |195228.7+065602 |M | 15.5 |< 18. | |p |42260. | | 214. | | |08106 04341| +051056 |V1056 Aql |195214.8+141027 |E: | 16. | 17. | |p | | | | | |04341 04341| +051057 |V1057 Aql |195249.9+112211 |E: | 16. | 17. | |p | | | | | |04341 04341| +051058 |V1058 Aql |195303.1+131358 |EA | 15. | 16. | |p | | | | | |04341 04341| +051059 |V1059 Aql |195349.6+064505 |RRAB | 15.7 | 16.9 | |p |41904.460 | | 0.48786 |10 | |07003 04341| +051060 |V1060 Aql |195338.0+150811 |EA/SD | 15.3 | 16.7 : | |p |30200.547 | | 5.22580 |10 :*| |04027 02350| +051061 |V1061 Aql |195420.8+070131 |RR | 15.5 | 17. | |p | | | | | |04341 04341| +051062 |V1062 Aql |195433.5+054059 |M | 14. |< 17. | |p | | | | | |04341 04341| +051063 |V1063 Aql |195433.1+062157 |M: | 16. |< 17. | |p | | | | | |04341 04341| +051064 |V1064 Aql *|195456.7+153220 |SRB | 14.3 | 15.1 | |p | | | | | |07806 02330| +051065 |V1065 Aql |195529.9+140208 |RR | 15.5 | 16.5 | |p | | | | | |04341 04341| +051066 |V1066 Aql |195627.7+090228 |EA | 14.5 | 15. | |p | | | | | |04341 04341| +051067 |V1067 Aql |195649.7+153912 |SR: | 16. | 17. | |p | | | | | |04341 04341| +051068 |V1068 Aql |195718.8+072015 |RR | 14.5 | 15.5 | |p | | | | | |04341 04341| +051069 |V1069 Aql |195718.5+033432 |RR | 14. | 15. | |p | | | | | |04341 04341| +051070 |V1070 Aql |195822.9+081425 |RR | 14. | 14.5 | |p | | | | | |04341 04341| +051071 |V1071 Aql |195919.9+094056 |RR | 15.5 | 17. | |p | | | | | |04341 04341| +051072 |V1072 Aql *|195910.5+144913 |M | 16.5 | 20. : | |p | | | | | |04341 04341| +051073 |V1073 Aql |195927.9+121249 |SR | 16. | 18. | |p | | | | | |04341 04341| +051074 |V1074 Aql |195937.4+115727 |RR | 16. | 17. | |p | | | | | |04341 04341| +051075 |V1075 Aql *|200017.3+153411 |EA/SD: | 13.5 | 14.5 | 13.6 |p |27635.457 | | 0.880981 |18 | |04027 00492| +051076 |V1076 Aql *|200202.8-003754 |EA: | 16. | 17. | |p | | | | | |04341 04341| +051077 |V1077 Aql |200144.7+095415 |IS | 16.5 | 17.5 | |p | | | | | |04341 04341| +051078 |V1078 Aql |200157.0+093743 |M | 14.5 |< 17.5 | |p | | | | | |04341 04341| +051079 |V1079 Aql |200149.1+142906 |M | 14.5 |< 17. | |p |40080. | | 293. : | | |00001 04341| +051080 |V1080 Aql |200227.7+095912 |IS | 15. | 17.5 | |p | | | | | |04341 04341| +051081 |V1081 Aql |200238.7+090345 |SR | 14.5 | 16.5 | |p | | | | | |04341 04341| +051082 |V1082 Aql |200235.4+142435 |SR | 14.5 | 17. | |p | | | | | |04341 04341| +051083 |V1083 Aql |200255.0+101313 |IS: | 15.5 | 16.5 | |p | | | | | |04341 04341| +051084 |V1084 Aql |200343.5+005338 |RR: | 16.5 | 17.5 | |p | | | 0.7 : | |F0 |08656 04341| +051085 |V1085 Aql |200345.8+030320 |RRAB | 15. | 16. | |p |26928.390 | | 0.5085416 |16 |F5 |08656 04341| +051086 |V1086 Aql *|200409.4+144234 |SR | 15. |< 16.5 | |p | | | | | |04341 04341| +051087 |V1087 Aql |200436.9+113955 |RR | 15.5 | 16.5 | |p | | | | | |04341 04341| +051088 |V1088 Aql |200444.7+115259 |E | 14.5 | 15.5 | |p | | | | | |04341 04341| +051089 |V1089 Aql |200459.7+103650 |RR | 15. | 16. | |p | | | | | |04341 04341| +051090 |V1090 Aql |200558.5+032357 |EA/SD: | 15.5 | 17.5 | |p | | | | | |04341 04341| +051091 |V1091 Aql |200544.7+131705 |SR | 15. | 17. | |p | | | | | |04341 04341| +051092 |V1092 Aql |200627.4+135945 |M | 14.5 |< 17. | |p |40046. | | 356. | | |06028 04341| +051093 |V1093 Aql *|200705.2+001023 |EA: | 16.5 | 17.5 | |p | | | | | |04341 04341| +051094 |V1094 Aql |200642.3+145941 |RRAB | 13.2 | 14.5 | |p |27612.528 | | 0.4440723 |14 | |04027 00196| +051095 |V1095 Aql *|200805.5+151644 |SRD | 12.3 | 13.4 | |p |29048. | | 42.24 |45 : | |04027 02350| +051096 |V1096 Aql *|200845.3+145434 |EB:/KE: | 13.0 | 13.4 | 13.3 |p |36757.605 | | 1.111392 | | |04027 02350| +051097 |V1097 Aql *|200849.8+155928 |EA/SD | 13.9 | 15.0 | 14.0 |p |28369.445 | | 1.22524 |16 *| |04027 02285| +051098 |V1098 Aql |201049.0+150745 |M | 15. |< 19. | |p | | | | | |04341 04341| +051099 |V1099 Aql |201227.7-004112 |EA | 15. | 16. | |p | | | | | |04341 04341| +051100 |V1100 Aql |201326.6-015412 |RR | 15.5 | 16.5 | |p | | | | | |04341 04341| +051101 |V1101 Aql *|201304.1+153546 |IS | 13.8 | 14.9 | |p | | | | | |04027 02285| +051102 |V1102 Aql |201503.9-015629 |RR | 14.5 | 15. | |p | | | | | |04341 04341| +051103 |V1103 Aql |190016.7+160454 |M: | 16. | 19. | |p | | | | | |03776 03776| +051104 |V1104 Aql |190340.2+144418 |RR | 17. | 18. | |p |38641.329 | | | | |03776 03776| +051105 |V1105 Aql |190414.1+163747 |M | 16. | 19. | |p | | | | | |03776 03776| +051106 |V1106 Aql |190425.6+141334 |RR | 17.5 | 18.5 | |p |38652.352 | | | | |03776 03776| +051107 |V1107 Aql |190437.8+144954 |M | 16. | 19. | |p | | | | | |03776 03776| +051108 |V1108 Aql |190527.2+155808 |SR: | 17. | 19. | |p | | | | | |03776 03776| +051109 |V1109 Aql |190540.2+141444 |EA/SD: | 17. | 19.5 | |p |38652.352 | | | | |03776 03776| +051110 |V1110 Aql |190617.1+031909 |EA/DM: | 13.5 | 14.0 | |p |31029.27 | | 2.564714 |13 | |03148 02368| +051111 |V1111 Aql |190615.8+152832 |M: | 17. | 19.5 | |p | | | | | |03776 03776| +051112 |V1112 Aql |190739.2-002306 |EA/SD | 14.0 |< 16.5 | |p |25859.360 | | 3.494951 |20 :*| |07010 03910| +051113 |V1113 Aql *|190927.6-005049 |M: | 15.1 |< 17. | |p |37835. | | 698. | | |07010 03910| +051114 |V1114 Aql |191010.6-012635 |M: | 15.9 |< 17. | |p |31370. | | 294.5 | | |07010 03910| +051115 |V1115 Aql |191104.2+033423 |M: | 15.5 |< 17.5 | |p |27220. | | 417. | | |07010 03910| +051116 |V1116 Aql |191550.4-012809 |M | 14.8 |< 17.5 | |p |38675. | | 860. /N| | |07010 03910| +051117 |V1117 Aql *|191709.1+005947 |EA/SD | 16.2 | 17.8 : | 16.6 |p |31374.25 | | 4.68477 |07 *| |07010 03910| +051118 |V1118 Aql |191751.6+022704 |RRAB | 15.6 | 16.9 | |p |31027.287 | | 0.589085 |14 | |07010 03910| +051119 |V1119 Aql |191757.3+001349 |LB: | 15.8 |< 17.5 | |p | | | | | |07010 03910| +051120 |V1120 Aql |191900.1+033047 |M: | 16.0 |< 17.5 | |p |37935. | | 142.3 | | |07010 03910| +051121 |V1121 Aql |191912.7+004714 |EA/SD | 15.9 |< 17.3 | |p |31374.260 | | 3.2155 |16 *| |07010 03903| +051122 |V1122 Aql |191945.4+022351 |M: | 15.6 |< 17.5 | |p |25465. | | 175.8 | | |07010 03910| +051123 |V1123 Aql |191952.4+065356 |M: | 15.4 |< 17.5 | |p |37565. | | 357. | | |07010 03903| +051124 |V1124 Aql |192036.9+023004 |M | 14.8 |< 18. | |p |37925. | | 355. | | |07010 05243| +051125 |V1125 Aql *|192152.9+072150 |EA/SD | 15.9 | 17.2 : | 16.0 |p |31650.462 | | 1.80375 |18 *| |07010 03910| +051126 |V1126 Aql |192246.8+072656 |M | 14.8 |< 17.5 | |p |37965. | | 360. : | | |07010 03910| +051127 |V1127 Aql |192400.1+014149 |RRAB | 14.8 | 16.0 | |p |31652.467 | | 0.356005 |20 | |07010 03910| +051128 |V1128 Aql |192444.0+031749 |E: | 16.0 |< 17.0 | |p | | | 1. /N| | |07010 03910| +051129 |V1129 Aql |192456.4+055455 |RRAB | 14.7 | 15.7 | |p |25445.52 | | 0.4536536 |11 | |03148 02369| +051130 |V1130 Aql |192634.6-013026 |M | 14.0 |< 18. | |p |38270. | | 320. : | | |07010 03910| +051131 |V1131 Aql |192736.9+032312 |M | 15.7 |< 18. | |p |37570. | | 271.5 | | |07010 03910| +051132 |V1132 Aql |192802.9+041255 |M: | 15.0 |< 16.5 | |p |37945. | | 244.5 | | |07010 03910| +051133 |V1133 Aql |192935.9+043328 |M: | 16.8 |< 18. | |p |31650. | | 405. | | |07010 03910| +051134 |V1134 Aql |193039.6+075014 |RRAB | 15.4 | 16.2 | |p |31647.492 | | 0.509020 |16 | |07010 03910| +051135 |V1135 Aql |193104.2-001846 |EA/SD | 15.5 | 16.6 | |p |31650.462 | | 3.14546 |07 *| |07010 03910| +051136 |V1136 Aql |193253.6+062537 |RRAB | 15.7 | 16.5 | |p |37543.330 | | 0.577265 |17 | |07010 03910| +051137 |V1137 Aql |193301.8+134442 |SR: | 14.5 | 16.5 | |p | | | | | |04341 04341| +051138 |V1138 Aql |193346.9+025745 |EA/DS | 15.7 |< 17. | |p |31652.35 | | 8.9065 |10 *| |07010 03910| +051139 |V1139 Aql |193348.1+032649 |RR | 16.0 |< 17. | |p |39672.491 | | | | |07010 03910| +051140 |V1140 Aql *|193703.9+023632 |RRAB | 15.0 | 16.2 | |p |37545.365 | | 0.46421 |15 | |03927 03927| +051141 |V1141 Aql |193709.8+023601 |UG | 14.5 | 20. | |p | | |( 45. :) | | |03160 01956| +051142 |V1142 Aql |193710.8+073629 |SRA: | 16.1 |< 17. | |p |37880. | | 175.5 | | |07010 03910| +051143 |V1143 Aql |193800.8+135036 |SR: | 16. |< 17.5 | |p |39400. :| | 168. : | | |00001 03903| +051144 |V1144 Aql |193931.0+044537 |M | 14.2 |< 17.5 | |p |26605. | | 307.5 | | |07010 03910| +051145 |V1145 Aql |193946.4+024356 |SRA | 14.8 | 15.9 | |p |37815. | | 75. | | |07010 03910| +051146 |V1146 Aql |194028.3+051743 |RRAB | 15.0 | 16.1 | |p |29460.410 | | 0.731706 |16 | |07010 03910| +051147 |V1147 Aql |194043.0-001119 |M | 14.2 |< 17. | |p |37590. | | 208. | | |07010 03910| +051148 |V1148 Aql |194141.1+121926 |EA/SD | 15. | 17. | |p |33128.407 | | 3.658565 | | |07806 03903| +051149 |V1149 Aql |194159.0+141207 |RR: | 15.5 | 16.5 | |p |30545.44 | | | | |03903 03903| +051150 |V1150 Aql |194235.0+011550 |M | 14.3 |< 17.5 | |p |26515. | | 298. | | |07010 03910| +051151 |V1151 Aql |194232.9+040434 |RRAB | 15.2 | 15.8 | |p |37560.310 | | 0.60730 |16 | |07010 03910| +051152 |V1152 Aql |194321.7+000500 |RRAB | 15.5 | 16.4 | |p |31029.295 | | 0.426448 |19 | |07010 03910| +051153 |V1153 Aql |194327.3+011326 |M | 13.6 |< 17. | |p |38675. | | 315.5 : | | |07010 03910| +051154 |V1154 Aql *|194443.0+043612 |EA/SD | 14.6 | 15.8 | 14.8 |p |37559.480 | | 1.83506 |16 *| |07010 03910| +051155 |V1155 Aql |194449.8+052014 |M: | 15.0 |< 17. | |p |37600. | | 325. | | |07010 03903| +051156 |V1156 Aql |194505.2+023346 |EA/SD | 15.4 | 16.5 | |p |31652.467 | | 1.420572 |15 : | |07010 03903| +051157 |V1157 Aql |194610.3+072503 |EA/SD: | 15. | 17. | |p |30994.34 | | | | |03903 03903| +051158 |V1158 Aql |194747.4-033606 |RR | 15. | 16. | |p |30234.37 | | | | |03903 03903| +051159 |V1159 Aql |194925.8+023131 |SR: | 16. |< 17.5 | |p | | | | | |03903 03903| +051160 |V1160 Aql |194959.6+030910 |M | 14.5 | 19. : | |p |39384. :| | | | |03903 03903| +051161 |V1161 Aql |195138.1+072930 |RR | 15. | 16. | |p |38288.39 | | | | |03903 03903| +051162 |V1162 Aql |195221.0-112201 |DCEPS | 8.6 | 9.3 | |p |25803.400 | | 5.3761 |50 : |G5 |03929 BD | +051163 |V1163 Aql |195348.7-025758 |SR: | 15. | 17.5 | |p | | | | | |03903 03903| +051164 |V1164 Aql |195439.2-014327 |EA/SD: | 14.5 | 16. | |p |39378.340 | | | | |03903 03903| +051165 |V1165 Aql *|195452.8+124558 |CEP: | 10. | 10.5 | |p |36755.472 | | 6.82957 |30 : | |03932 04564| +051166 |V1166 Aql *|195553.4+023241 |RR: | 16. |< 17.5 | |p | | | | | |03903 03903| +051167 |V1167 Aql |195728.6+002915 |RR: | 15. |< 16.5 | |p | | | | | |03903 03903| +051168 |V1168 Aql |195842.1+114841 |EA/SD | 11.9 | 13.9 | |p |28248.610 | | 1.272567 |10 *| |03148 00158| +051169 |V1169 Aql |200008.9-021328 |M | 15. | 17.5 | |p |38300. :| | | | |03903 03903| +051170 |V1170 Aql |200112.0+033130 |M | 15. |< 17.5 | |p |30240. :| | | | |03903 03903| +051171 |V1171 Aql |200124.0+042444 |RR: | 15. | 16. | |p | | | | | |03903 03903| +051172 |V1172 Aql |200223.0-003208 |RR | 16. | 17. | |p |38289.32 | | | | |03903 03903| +051173 |V1173 Aql *|200331.6+021420 |RR | 16. | 16.5 | |p |39376.34 | | | | |03903 03903| +051174 |V1174 Aql |200507.2-042428 |RR | 15. | 16.5 | |p |38613.41 | | | | |03903 03903| +051175 |V1175 Aql |200554.8+021716 |RR | 15.5 | 16.5 | |p | | | | | |03903 03903| +051176 |V1176 Aql |200755.0+030057 |RR | 15. | 16.5 | |p |30931.41 | | | | |03903 03903| +051177 |V1177 Aql |201146.4-031920 |RRAB | 15.0 | 16.3 | |B |45205.37 | | 0.478934 |20 | |09144 03903| +051178 |V1178 Aql |201810.9-005120 |RR | 15. | 16. | |p |38613.43 | | | | |03903 03903| +051179 |V1179 Aql |201923.6-012102 |RR | 15. | 16. | |p |38613.41 | | | | |03903 03903| +051180 |V1180 Aql |202418.1+021252 |RR: | 15. | 16. | |p | | | | | |03903 03903| +051181 |V1181 Aql |184616.9+103103 |RRAB | 15.1 | 16.5 | |p |36806.467 | | 0.391524 |15 | |05249 02368| +051182 |V1182 Aql *|185523.1+092048 |EB/KE: | 8.5 | 8.65 | 8.65 |V |39651.720 | | 1.621924 | |O8Vnn |06442 BD | +051183 |V1183 Aql |185558.0+120014 |DCEP | 14.4 | 15.7 | |p |37871.582 | | 3.288265 |20 : | |05249 02368| +051184 |V1184 Aql *|185914.3+102230 |EW/KE: | 13.1 | 13.5 | 13.4 |p |37432.495 | | 0.789801 | | |05249 02368| +051185 |V1185 Aql |190202.2+140311 |SR: | 18. | 19.5 | |p | | | | | |03776 03776| +051186 |V1186 Aql |190225.9+142237 |LB: | 17. | 18.5 | |p | | | | | |03776 03776| +051187 |V1187 Aql |190256.3+153321 |SR: | 17. | 19. | |p | | | | | |03776 03776| +051188 |V1188 Aql |190605.5-011214 |LB | 15.6 |< 16.2 | |p | | | | | |07010 03910| +051189 |V1189 Aql |190615.6+014735 |E: | 13.5 | 14.5 | |p |37878.51 | | | | |05506 05506| +051190 |V1190 Aql |190659.1-061925 |M: | 15.3 |< 17. | |p |36403. | | 271. | | |00504 00504| +051191 |V1191 Aql |190804.4-035101 |SR: | 14.5 |< 16.3 | |p |36396. | | 315.0 | | |00504 05507| +051192 |V1192 Aql |191122.4+020802 |M: | 15.4 |< 17.5 | |p |25535. | | 261. | | |07010 03910| +051193 |V1193 Aql |191117.4-011017 |SR: | 15. | 16. | |p | | | | | |05506 05506| +051194 |V1194 Aql |191146.2-101427 |M | 14.3 |< 17. | |p |37554. | | 219.2 | | |00504 05507| +051195 |V1195 Aql |191335.8+023938 |M: | 14.0 | 16.5 | |p |38590. :| | | |M2e |07010 03910| +051196 |V1196 Aql |191432.6-001824 |M | 14. |< 17.5 | |p | | | | | |05506 05506| +051197 |V1197 Aql |191447.3+011112 |EA | 13.2 | 13.7 | |p |37586.280 | | 0.937732 |15 *| |07010 03910| +051198 |V1198 Aql |191505.9+025600 |E | 15.5 | 16. | |p |38622.43 | | | | |05506 05506| +051199 |V1199 Aql |191530.7+044554 |SR | 16. | 16.5 | |p | | | | | |05506 05506| +051200 |V1200 Aql *|191556.6+004846 |M: | 15.4 |< 17.5 | |p |31326. | | 290. : | | |03148 02369| +051201 |V1201 Aql |191625.8-002042 |RRAB | 16.3 | 17.3 : | |p |37545.40 | | 0.4002 |25 | |07010 03910| +051202 |V1202 Aql |191717.7+021536 |LB: | 16. | 17. | |p | | | | | |05506 05506| +051203 |V1203 Aql |191818.3+020104 |LB: | 16. | 17. | |p | | | | | |05506 05506| +051204 |V1204 Aql *|191909.7-003207 |RR: | 15.5 |< 16.5 | |p | | | | | |05506 05506| +051205 |V1205 Aql |191920.2+024212 |E: | 15.9 |< 16.5 | |p |37883.43 | | 1. : | | |03148 02369| +051206 |V1206 Aql |191920.1+042959 |E | 14. | 14.5 | |p |37940.52 | | | | |05506 05506| +051207 |V1207 Aql |191948.9+001541 |RR | 16.5 | 17. | |p | | | | | |05506 05506| +051208 |V1208 Aql *|191939.4+122229 |DSCTC | 5.51 | 5.56 | |V | | | 0.149663 | |F0III |04591 BD | +051209 |V1209 Aql |192031.1+002457 |RR | 16. | 16.5 | |p | | | | | |05506 05506| +051210 |V1210 Aql |192022.7+045551 |M | 13.8 |< 17. | |p |38286. | | 302. | | |07010 03910| +051211 |V1211 Aql |192047.1-013145 |RR | 15.5 | 17. | |p | | | | | |05506 05506| +051212 |V1212 Aql |192032.8+022421 |E | 14.5 | 15. | |p |37940.52 | | | | |05506 05506| +051213 |V1213 Aql |192210.3-043902 |M | 14.2 | 16.7 | |p |39044. | | 209.73 |43 | |00504 00504| +051214 |V1214 Aql |192210.1+023325 |E | 15.5 | 16. | |p |37878.48 | | | | |05506 05506| +051215 |V1215 Aql |192224.9+012759 |RR | 15.3 |< 16.0 | |p |37932.310 | | 0.5013 :/N| | |07010 03910| +051216 |V1216 Aql |192230.3+043931 |RR: | 16. | 17. | |p | | | | | |05506 05506| +051217 |V1217 Aql |192257.0-090555 |M | 13.0 | 16.0 | |p |39048. | | 335. |36 | |00504 00504| +051218 |V1218 Aql |192249.2+002351 |E | 13.5 | 14.0 | |p |37820.544 | | | | |07010 03910| +051219 |V1219 Aql |192307.2-063612 |SR | 15.5 | 16.5 | |p |38920. | | 230. : | | |00504 00504| +051220 |V1220 Aql |192317.4+015144 |RRAB | 14.5 | 17. | |p | | | | | |05506 05506| +051221 |V1221 Aql |192323.9+044849 |RR | 15.5 | 16. | |p | | | | | |05506 05506| +051222 |V1222 Aql |192416.6-002002 |LB | 15.8 |< 16.5 | |p | | | | | |07010 03910| +051223 |V1223 Aql |192418.8-001309 |LB | 14.7 | 15.8 | |p | | | | | |07010 03910| +051224 |V1224 Aql |192403.0+072833 |EA/SD: | 15.5 |< 16.5 | |p |39349.48 | | | | |05506 05506| +051225 |V1225 Aql |192425.9+020152 |L | 15.4 | 15.9 | |p | | | | | |07010 03910| +051226 |V1226 Aql |192421.1+055106 |L | 15.9 |< 17.5 | |p | | | | | |07010 03910| +051227 |V1227 Aql |192434.7+031059 |RR | 16.5 | 17.5 | |p | | | | | |05506 05506| +051228 |V1228 Aql |192447.8-011851 |E | 14. | 14.5 | |p |38940.52 | | | | |05506 05506| +051229 |V1229 Aql |192444.6+041448 |NA | 6.7 | 18. : | |B |40687. |1970 | | |pec(NOVA) |07334 05383| +051230 |V1230 Aql |192513.5+033901 |E | 16.5 | 17. | |p |37886.52 | | | | |05506 05506| +051231 |V1231 Aql |192555.8+073606 |LB | 15.1 | 16.0 | |p | | | | |M7 |07010 03910| +051232 |V1232 Aql |192656.0+063009 |RRAB | 14.7 | 15.8 | |p |31371.304 | | 0.699931 |14 | |07010 03910| +051233 |V1233 Aql |192725.4+022303 |UG | 15.5 | 20. : | |p | | | | | |05506 05506| +051234 |V1234 Aql |191920.2+021732 |E | 15. | 16. | |p |37885.46 | | | | |05506 05506| +051235 |V1235 Aql |192816.4+024617 |E | 15. | 15.5 | |p |37898.42 | | | | |05506 05506| +051236 |V1236 Aql |192840.1+064410 |SR: | 15.9 |< 17. | |p | | | | |M7 |01949 02369| +051237 |V1237 Aql |192846.9+072455 |L | 13.8 | 14.5 | |p | | | | | |07010 03903| +051238 |V1238 Aql |192852.8-013814 |M | 15. |< 18.5 | |p | | | | | |05506 05506| +051239 |V1239 Aql |192901.9+035911 |E | 16. | 16.5 | |p |38284.33 | | | | |05506 05506| +051240 |V1240 Aql |192857.3+071707 |E | 14.5 | 15. | |p |38674.30 | | | | |05506 05506| +051241 |V1241 Aql |192902.8+053819 |M: | 15.4 |< 17. | |p |37870. | | 272.5 | |M3-M7 |07010 03910| +051242 |V1242 Aql |192922.2+032820 |M: | 15.6 |< 17.5 | |p |37580. | | 229.5 | | |03972 03910| +051243 |V1243 Aql |192929.6+053713 |EA | 13.3 | 13.9 | |p |25809.517 | | 0.703048 |21 *| |07010 03910| +051244 |V1244 Aql |192937.1+034356 |RR | 16. | 17. | |p | | | | | |05506 05506| +051245 |V1245 Aql |193051.5+022746 |M | 15.4 | 18. | |p |29462. | | 224. | | |07010 03910| +051246 |V1246 Aql |193122.0-054351 |M: | 15.0 |< 16.5 | |p |36746. | | 251.34 | | |00504 00504| +051247 |V1247 Aql |193122.5+043616 |SRA | 15.3 | 17. | |p |37845. | | 170. | | |07010 03910| +051248 |V1248 Aql *|193136.1+050836 |M: | 16. |< 17. | |p | | | | | |03148 02369| +051249 |V1249 Aql |193141.6+032335 |RR | 15.5 | 16.5 | |p | | | | | |05506 05506| +051250 |V1250 Aql |193207.6+064946 |L | 14.9 | 15.5 | |p | | | | | |07010 03910| +051251 |V1251 Aql *|193213.0+053654 |E | 15.0 | 15.6 | |p | | | 1. /N| | |07010 03903| +051252 |V1252 Aql |193246.1+023440 |M | 15.9 |< 18. | |p |37845. | | 470. | | |07010 03910| +051253 |V1253 Aql |193258.4+052821 |E | 15. | 15.5 | |p |38940.52 | | | | |05506 05506| +051254 |V1254 Aql |193337.4+031510 |RR | 16. | 16.5 | |p |37842.49 | | | | |05506 05506| +051255 |V1255 Aql |193339.0+045102 |LB | 14.7 | 15.2 | |p | | | | | |07010 03903| +051256 |V1256 Aql |193350.8+010701 |L | 15.4 | 16.5 | |p | | | | | |05250 03910| +051257 |V1257 Aql |193345.7+054516 |E | 14.5 | 15. | |p |38940.52 | | | | |05506 05506| +051258 |V1258 Aql |193436.0+051032 |M: | 15.5 |< 17. | |p | | | | | |05506 05506| +051259 |V1259 Aql |193432.8+040155 |M: | 15.6 |< 17. | |p |37880. | | 1060. :/N| | |07010 03910| +051260 |V1260 Aql |193451.3-004606 |LB | 15.8 |< 16.5 | |p | | | | | |05250 03910| +051261 |V1261 Aql *|193443.6+070846 |LB | 10.0 | 10.4 | |p | | | | |M4 |07010 03910| +051262 |V1262 Aql |193515.4-062910 |L: | 15.2 | 15.8 | |p | | | | | |00504 00504| +051263 |V1263 Aql |193512.5+020521 |LB | 12.5 | 13.0 | |p | | | | |M6 |07010 03910| +051264 |V1264 Aql |193538.6+040846 |RRAB | 15.4 | 16.0 | |p |37545.420 | | 0.524025 |10 | |07010 03910| +051265 |V1265 Aql |193539.5+051149 |SRB | 15.8 | 17. | |p | | | 120. : | | |07010 03910| +051266 |V1266 Aql |193558.2+050054 |M: | 15.6 |< 17. | |p |37915. | | 193. | | |07010 03910| +051267 |V1267 Aql |193629.8+012020 |SRA | 15.2 | 16.3 | |p |25445. | | 105.1 | | |07010 03910| +051268 |V1268 Aql |193624. +061144:|E | 16. | 17. | |p |39349.48 | | | | |05506 05506| +051269 |V1269 Aql *|193640.2+005339 |E | 12.5 | 13. | |p |38940.52 | | | | |05506 05506| +051270 |V1270 Aql |193646.3-001027 |RR | 16. | 16.5 | |p |37940.52 | | | | |05506 05506| +051271 |V1271 Aql |193711.7-010237 |RRAB | 15. | 16. | |p | | | | | |05506 05506| +051272 |V1272 Aql |193657.5+055533 |E | 14. | 14.5 | |p |37857.46 | | | | |05506 05506| +051273 |V1273 Aql |193723.6+022128 |EA | 13.5 | 14. | |p |38940.52 | | | | |05506 05506| +051274 |V1274 Aql |193711.9+045313 |LB | 14.9 | 15.5 | |p | | | | | |07010 03910| +051275 |V1275 Aql |193735.0+054828 |RRAB | 15.5 | 16.5 | |p | | | | | |05506 05506| +051276 |V1276 Aql |193915.7+022723 |E | 14.5 | 15. | |p |37588.36 | | | | |05506 05506| +051277 |V1277 Aql |193924.0+040904 |E | 14. | 15. | |p | | | | | |05506 05506| +051278 |V1278 Aql |194027.6+073511 |EA | 15. | 15.5 | |p |38940.52 | | | | |05506 05506| +051279 |V1279 Aql |194047.6+022929 |LB | 11.0 | 11.5 | |p | | | | |M4 |07010 03903| +051280 |V1280 Aql |194235.0+062456 |L | 14.5 | 15.2 | |p | | | | | |07010 03910| +051281 |V1281 Aql *|194319.2-002133 |CWA: | 14.3 | 15.0 | |p |37588. | | 32.05 |44 : | |07010 03903| +051282 |V1282 Aql |194330.0+014216 |LB | 14.5 | 15.0 | |p | | | | | |07010 03910| +051283 |V1283 Aql |194413.5+010439 |SRB | 15.8 | 16.5 | |p | | | 80. : | | |07010 03910| +051284 |V1284 Aql |201838.0+021617 |SR: | 14. | 15. | |p | | | | | |03903 03903| +051285 |V1285 Aql |185527.4+082409 |UV | 10.8 | 11.82 | |B | | | | |M2Ve |05831 GSC | +051286 |V1286 Aql *|185846.9+135424 |ACV | 5.83 | 5.93 | |V |41517.4 | | 6.05 | |A4p(Eu-Cr-Sr) |07021 BD | +051287 |V1287 Aql |190651.0-082548 |M: | 13.0 : | | |p | | | | |M5III:e |05159 05159| +051288 |V1288 Aql *|191342.7+021737 |ACV | 5.06 | 5.16 | |V |44099.23 | | 1.73 | |B8II-IIIp(Hg:) |04602 BD | +051289 |V1289 Aql |193842.3+121629 |NL: | 13. |< 15.5 | |p |16315. | | | | |05957 01960| +051290 |V1290 Aql |194631.9+104704 |ZAND: | 15. |< 16.5 | |p | | | | | |05957 01960| +051291 |V1291 Aql *|195318.7-030652 |ACV | 5.61 | 5.67 | |V |32323. | | 224.5 | |A5p(Sr-Cr-Eu) |07022 BD | +051292 |V1292 Aql |200758.9+073350 |M: | 12.4 : | | |p | | | | |M3e |05159 05159| +051293 |V1293 Aql |193307.8+050146 |SRB | 8.3 | 9.0 | |p | | | | |M5III |06302 BD | +051294 |V1294 Aql |193336.9+034541 |GCAS | 6.82 | 7.23 | |V | | | | |B0.5IV |08110 BD | +051295 |V1295 Aql *|200302.5+054417 |* | 7.87 |( 0.02 )| |V | | | | |A0ep |05880 BD | +051296 |V1296 Aql |190957.8-045548 |IS | 15.0 | 15.9 | |p | | | | | |06996 06996| +051297 |V1297 Aql *|191145.6+011333 |EA/SD | 14.4 | 16.5 | 14.5 |p |35692.285 | | 1.914502 |15 | |06105 06105| +051298 |V1298 Aql *|191657.5+050910 |UV | 17.28 | 17.48 | |V | | | | |M5Ve |06835 04607| +051299 |V1299 Aql |200503.4+145819 |EA/SD: | 13. | 14. | |p |39237.559 | | 1.791745 |12 *| |07806 00196| +051300 |V1300 Aql *|201027.9-061614 |M: | 2.2 | 3.2 | |K | | | 680. | |M: |06925 USNO | +051301 |V1301 Aql |191755.2+044718 |NA | 10.3 |< 20. | |V |42570. |1975 | | |pec(NOVA) |08111 08111| +051302 |V1302 Aql *|192648.1+112117 |* | 13.7 | 15.0 | |p | | | | |F8I-G0I |04609 04610| +051303 |V1303 Aql |194618.1+045922 |RRAB | 15.1 | 16.3 | |p |41918.290 | | 0.64980 |12 | |07333 07438| +051304 |V1304 Aql |194519.9+050816 |RRC | 17.5 | 18.0 | |p |41899.450 | | 0.3304 |35 | |07438 07438| +051305 |V1305 Aql |194633.8+061638 |RRC | 16.0 | 16.4 | |p |41915.330 | | 0.39088 |30 : | |07333 07438| +051306 |V1306 Aql |194917.5+041639 |RRAB | 14.6 | 16.2 | |p |41900.468 | | 0.46596 |15 | |07333 07438| +051307 |V1307 Aql |194931.1+070201 |DCEP | 17.1 | 18.1 | |p |41923.35 | | 1.9487 |15 | |07333 07438| +051308 |V1308 Aql |194847.4+072216 |RR | 17.0 | 17.4 | |p |41922.331 | | 0.2614 |15 | |07439 07439| +051309 |V1309 Aql |194852.3+072220 |E/SD: | 16.7 | 18.1 | |p |41923.371 | | 6.97 /N| | |07439 07439| +051310 |V1310 Aql |195153.7+062642 |RRC | 16.6 | 17.2 | |p |41956.287 | | 0.32778 |50 | |07333 07438| +051311 |V1311 Aql |195227.1+053334 |EA/SD: | 16.5 | 17.4 | |p |41924.40 | | 1.05169 |16 | |07333 07438| +051312 |V1312 Aql |195416.8+052157 |RRAB | 15.3 | 17.0 | |p |41954.341 | | 0.52101 |10 | |07333 07438| +051313 |V1313 Aql |185724.2+104234 |RR: | 13.7 | 15.6 | |p | | | | | |00164 02368| +051314 |V1314 Aql |190839.3-035451 |IS | 14.6 | 16.8 | |p | | | | | |06996 06996| +051315 |V1315 Aql |191354.5+121804 |IS | 13.8 | 15.6 | |p | | | | | |06996 04261| +051316 |V1316 Aql |191425.3+125256 |M | 12.6 | 17.2 | |p |33128. | | 328. |25 |M0 |08112 00504| +051317 |V1317 Aql |191855.3+080011 |EA: | 15.5 | 16.5 | |p | | | | | |00085 02369| +051318 |V1318 Aql |192628.6+084711 |LB: | 14.5 |< 15.5 | |p | | | | |S |01217 01217| +051319 |V1319 Aql |193603.5-002651 |LB: | 12.6 | 13.2 | |V | | | | |M8 |06977 06977| +051320 |V1320 Aql |194406.2+015746 |SR: | 14.6 | 15.5 | |p | | | | | |00085 02370| +051321 |V1321 Aql |194747.1+043443 |L: | 15.0 | 16.1 | |p | | | | | |02267 02370| +051322 |V1322 Aql |194759.3+021911 |SR: | 15.5 | 17. | |p | | | | | |03903 03903| +051323 |V1323 Aql *|195050.4+013246 |SR: | 16. | 17.5 | |p | | | | | |03903 03903| +051324 |V1324 Aql |195138.1+050804 |RRAB | 15.8 | 17.2 | |p |42277.390 | | 0.45966 |12 | |07745 07745| +051325 |V1325 Aql *|195300.6+042500 |L: | 15.8 | 16.3 | |p | | | | | |02267 02370| +051326 |V1326 Aql |195626.5+051221 |EA/SD | 14.9 | 16.6 | |p |41922.380 | | 1.47106 |10 | |07745 07745| +051327 |V1327 Aql |195619.0+014644 |UG: | 16. | 17.5 | |p | | | | | |04341 04341| +051328 |V1328 Aql |195640.1+043246 |M | 15.2 |< 18. | |p |42277. | | 249. | | |08106 07745| +051329 |V1329 Aql |201045.3+022244 |LB: | 14.8 |< 16.5 | |p | | | | | |02267 02371| +051330 |V1330 Aql |203401.6+022016 |SR | 10. | 11. | |p | | | | |M6 |08065 BD | +051331 |V1331 Aql *|184412.8-013316 |EB/KE: | 7.7 | 8.05 | 7.95 |V |42610.070 | | 1.364209 | |B1V |08113 BD | +051332 |V1332 Aql |194411.1-111927 |SR: | 10.8 | 11.5 | |p | | | | | |07594 07594| +051333 |V1333 Aql *|191116.1+003506 |XNDB | 14.82 | 19.4 | |V |43687. :| |( 435. :) | |G7-K3 |04756 04625| +051334 |V1334 Aql |191749.7-045053 |RRC | 14.6 | 15.1 | |p |42592.357 | | 0.3265261 | | |08204 08204| +051335 |V1335 Aql |191817.1-050605 |UV: | 15.4 | 16.3 | |p | | | | | |08204 08204| +051336 |V1336 Aql *|191841.9-051411 |M: | 16.2 |< 18. | |p | | | | | |08204 08204| +051337 |V1337 Aql |192548.9+072034 |LB: | 14.2 | 14.8 | |p | | | | | |07010 03910| +051338 |V1338 Aql *|192928.7+033034 |SR: | 15.2 | 16.0 | |p | | | | | |03148 02369| +051339 |V1339 Aql |195017.5+075409 |GCAS: | 6.33 | 6.52 | |V | | | | |B2.5IVe |05150 BD | +051340 |V1340 Aql *|184416.0-033015 |EA/SD | 14.3 | 15.7 | |p |38641.305 | | 1.5969404 |16 | |08097 00494| +051341 |V1341 Aql *|185549.7-000138 |EW/KW: | 13.0 | 13.7 | 13.4 |p |38621.432 | | 0.3040063 | | |08097 06887| +051342 |V1342 Aql |190715.8-023152 |M | 14.9 |< 17.5 | |p |37115. | | 301. | | |00504 02274| +051343 |V1343 Aql *|191149.6+045858 |E+XJ | 13.0 | 15.13 | |V |44332.94 | | 13.0848 | |pec(e) |00515 00515| +051344 |V1344 Aql |191159.2+042118 |DCEP | 7.65 | 8.00 | |V |43398.071 | | 7.47803 |35 |G1Ib |08317 BD | +051345 |V1345 Aql *|191239.2+052037 |EA/SD | 13.9 | 15.6 | 14.3 |p |44374.427 | | 3.0283388 |12 *| |08318 08318| +051346 |V1346 Aql |191335.9+160955 |M | 12.0 | 15.1 | |I |42190. | | 278. |46 | |08319 08319| +051347 |V1347 Aql |191442.0+161858 |M: | 14.8 | 16.8 | |I |41980. | | 420. |30 | |08319 08319| +051348 |V1348 Aql |191617.4-092712 |UV | 15.2 |< 18.0 | |p | | | | | |08320 08320| +051349 |V1349 Aql *|191527.3+154754 |M | 10.0 | 14.5 | |I |42273. | | 260. |34 |M8 |08319 08319| +051350 |V1350 Aql |191533.0+155137 |M | 13.9 | 16.3 : | |I |41570. | | 330. |40 : | |08319 08319| +051351 |V1351 Aql |191540.4+160944 |M | 13.3 | 16.4 | |I |42190. | | 430. : |38 | |08319 08319| +051352 |V1352 Aql *|192031.0+110154 |INT | 12.05 | 12.72 | |V | | | | |pec(T) |08433 00965| +051353 |V1353 Aql *|192420.6+160243 |EB/KE | 10.5 | 11.4 | 10.9 |p |34461.529 | | 1.4147979 | |A |08321 08321| +051354 |V1354 Aql |193357.9+114603 |SRB | 12.0 | 14.8 | |p | | | | | |08322 00976| +051355 |V1355 Aql *|193352.3+155628 |EB | 12.7 | 13.6 | 13.3 |p |35428.2445 | | 0.5157965 | | |08321 08321| +051356 |V1356 Aql |194658.9-020434 |RRC: | 10.3 | 10.5 | |V |43698.607 | | 0.324 |30 |A6 |01187 00470| +051357 |V1357 Aql *|201203.9+152128 |SXARI | 7.94 |( 0.04 )| |V |44084.32 | | 19.5 | |B5p |08747 BD | +051358 |V1358 Aql |192524.7-064021 |E | 15.7 | 16.5 | |p | | | | | |00504 00504| +051359 |V1359 Aql |200340.0-032239 |DCEPS: | 8.83 | 9.02 | |V | | | 3.7317 |60 : |G5 |08637 BD | +051360 |V1360 Aql |184553.1-014648 |M | 10.4 | 12.5 | |K | | | | | |67012 | +051361 |V1361 Aql |184709.9-023536 |M | 8.5 | 12.2 | |H | | | | | |67012 | +051362 |V1362 Aql |184842.0-025029 |M | 5.3 | 6.5 | |L | | | | | |67012 | +051363 |V1363 Aql |185126.3-010352 |M | 5.8 | 6.7 | |L | | | | | |67013 | +051364 |V1364 Aql |185201.5-012646 |M | 6.5 | 8.0 | |H | | | | | |67012 2MASS| +051365 |V1365 Aql |185222.3-001411 |M | 3.9 | 7.2 | |L | | | | | |67012 | +051366 |V1366 Aql |185830.0+064302 |M | 7.5 | 9.3 | |H | | | | | |67013 | +051367 |V1367 Aql |190409.8+061317 |M | 9.0 | 11.4 | |K | | | | | |67012 | +051368 |V1368 Aql |190907.5+081623 |M | 6.8 | 7.9 | |L | | | | | |67012 UCAC2| +051369 |V1369 Aql |191419.6+111035 |M | 6.7 | 9.0 | |K | | | | | |67012 | +051370 |V1370 Aql |192321.1+022926 |NA | 6.0 : | 20.0 : | |V | | | | | |67016 67016| +051371 |V1371 Aql |193718.1+091913 |RRAB | 15.5 | 16. | |p | | | | | |67018 67017| +051372 |V1372 Aql |193836.7+082441 |RR | 15.5 | 16. | |p | | | | | |67018 67017| +051373 |V1373 Aql |193912.3+133749 |E | 16.5 | 17.5 | |p | | | | | |67018 67017| +051374 |V1374 Aql |194125.5+081904 |LB | 14.5 | 15. | |p | | | | | |67018 67017| +051375 |V1375 Aql |194122.5+131352 |LB | 15.5 | 16.5 | |p | | | | | |67018 67017| +051376 |V1376 Aql |195749.3+113454 |EA/GS | 11.6 | 12.7 | |p | | | | | |67020 67019| +051377 |V1377 Aql |191531.4+003237 |EA/D | 15.8 | 17.5 | |B | | | | | |68023 USNO | +051378 |V1378 Aql |191635.4+034319 |N | 10. |< 12.7 | |V | | | | | |68024 | +051379 |V1379 Aql |193938.8-060350 |RS | 8.34 | 8.55 | |V | | | | | |68316 BD | +051380 |V1380 Aql |194125.4+145355 |IS: | 15.5 | 16. | |p | | | | | |68353 68027| +051381 |V1381 Aql |194206.0+080112 |IS: | 15.5 | 16. | |p | | | | | |68354 68027| +051382 |V1382 Aql |194218.8+095936 |SR | 15. | 15.5 | |p | | | | | |68354 68027| +051383 |V1383 Aql |194241.1+075149 |E | 16. | 16.5 | |p | | | | | |68354 68027| +051384 |V1384 Aql |194310.3+063945 |LB | 13. | 13.5 | |p | | | | | |68354 68027| +051385 |V1385 Aql |194327.1+122403 |SR | 15.5 | 16. | |p | | | | | |68354 68027| +051386 |V1386 Aql |194426.0+134658 |RRAB | 15.5 | 16.5 | |p | | | | | |68354 68027| +051387 |V1387 Aql |194432.2+152755 |LB | 15.5 | 16. | |p | | | | | |68354 68027| +051388 |V1388 Aql |194456.9+080130 |LB | 16. | 17. | |p | | | | | |68354 68027| +051389 |V1389 Aql |194610.3+114926 |LB | 14. | 14.5 | |p | | | | | |68354 68027| +051390 |V1390 Aql |194645.4+062358 |SR: | 16. | 17. | |p | | | | | |68354 68027| +051391 |V1391 Aql |194742.2+123413 |LB | 16. | 17. | |p | | | | | |68354 68027| +051392 |V1392 Aql |194949.0+080430 |SR | 15. | 15.5 | |p | | | | | |68354 68027| +051393 |V1393 Aql |194956.0+071203 |LB | 14.5 | 15. | |p | | | | | |68354 68027| +051394 |V1394 Aql |195004.3+145157 |E: | 16. | 16.5 | |p | | | | | |68354 68027| +051395 |V1395 Aql |195029.1+141501 |LB | 15.5 | 16. | |p | | | | | |68354 68027| +051396 |V1396 Aql |195107.8+115632 |LB | 15. | 15.5 | |p | | | | | |68354 68027| +051397 |V1397 Aql |195212.2+113357 |LB | 13.5 | 14. | |p | | | | | |68354 68027| +051398 |V1398 Aql |195214.9+143039 |SR | 15.5 | 16. | |p | | | | | |68355 68027| +051399 |V1399 Aql |195313.0+123309 |RRC | 14. | 14.5 | |p | | | | | |68355 68027| +051400 |V1400 Aql |195424.6+143230 |SRA | 15.5 | 16.5 | |p | | | | | |68355 68027| +051401 |V1401 Aql |200505.4-113558 |SRD | 6.18 | 6.55 | |V | | | | | |68029 BD | +051402 |V1402 Aql |190359.0-041902 |WR | 11.59 |( 0.14 )| |B | | | | | |69021 BD | +051403 |V1403 Aql |190718.1+032635 |ACYG | 7.41 |( 0.08 )| |V | | | | | |69022 BD | +051404 |V1404 Aql |191057.2+045036 |SRB | 12.25 | 12.39 | |V | | | | | |69023 69023| +051405 |V1405 Aql |191847.9-051419 |XB+E: | 21.00 | 21.66 | |B | | | | | |69025 69304| +051406 |V1406 Aql |194556.9+041446 |UV | 14. |( 0.22 )| |U | | | | | |69026 69027| +051407 |V1407 Aql |195716.9-111416 |M | 9.0 |< 13. | |V | | | | | |69029 69030| +051408 |V1408 Aql |195924.0+114230 |XI | 18.68 | 18.98 | |V | | | | | |69031 69032| +051409 |V1409 Aql |200132.9+054734 |SR | 13.6 | 14.8 | |p | | | | | |69034 69033| +051410 |V1410 Aql |200158.4+114606 |LB | 13.4 | 13.8 | |p | | | | | |69034 69033| +051411 |V1411 Aql |200159.2+134902 |LB | 15.0 | 15.4 | |p | | | | | |69034 69033| +051412 |V1412 Aql |201355.7+064245 |E/WD | 15.67 | 18.3 | |V | | | | | |69035 69036| +051413 |V1413 Aql |190346.9+162617 |ZAND+E | 10.6 | 15.1 | |V | | | | | |71177 71178| +051414 |V1414 Aql |193439.9-073420 |M | 9.0 | 14.4 | |V | | | | | |71185 71186| +051415 |V1415 Aql |194345.3+034431 |M | 0.9 | 1.9 | |L | | | | | |71002 USNO | +051416 |V1416 Aql |200743.0+060313 |M | 1.1 | 2.1 | |L | | | | | |71002 USNO | +051417 |V1417 Aql |184224.9-021725 |M | 12.0 | 13.4 | |I | | | | | |72006 72006| +051418 |V1418 Aql |190318.4+073050 |M | 6.66 | 9.33 | |J | | | | | |72007 72008| +051419 |V1419 Aql |191306.8+013423 |NA | 7.66 |< 22. | |V | | | | | |72009 72010| +051420 |V1420 Aql |192018.1-080212 |M | 6.18 | 8.33 | |J | | | | | |72007 72011| +051421 |V1421 Aql |192714.8+070413 |M | 6.66 | 7.98 | |J | | | | | |72007 72031| +051422 |V1422 Aql |200709.3+151602 |BY | 8.09 |( 0.10 )| |V | | | | | |72012 BD | +051423 |V1423 Aql |200827.0+154030 |RS | 7.8 |( 0.045 )| |V | | | | | |72012 BD | +051424 |V1424 Aql |201045.1+151203 |EA | 8.69 |( 0.14 )| |V | | | | | |72013 BD | +051425 |V1425 Aql |190526.6-014203 |NA | 7.5 : |< 19. | |V | | | | | |73019 73020| +051426 |V1426 Aql |191212.0+042342 |EA | 9.3 |( 0.45 )| |B | | | | | |73021 BD | +051427 |V1427 Aql |191358.6+000732 |SRD | 10.48 | 10.88 | |U | | | | | |73022 BD | +051428 |V1428 Aql |191655.3+051008 |BY | 9.09 | 9.13 | |V | | | | | |73018 BD | +051429 |V1429 Aql |192134.0+145257 |SDOR: | 11.46 | 12.26 | |U | | | | | |73023 BD | +051430 |V1430 Aql |192148.5+043257 |EA/RS | 10.2 |( 0.80 )| |V | | | | | |73024 73025| +051431 |V1431 Aql |192901.0+015702 |ACVO: | 6.06 |( 0.04 )| |v | | | | | |73026 BD | +051432 |V1432 Aql |194011.4-102525 |XM+E | 14.2 | 18. | |V | | | | | |73027 73028| +051433 |V1433 Aql |194055.3+152017 |M | 3.7 | 4.7 | |K | | | | | |73029 GSC22| +051434 |V1434 Aql |184655.6+092509 |LB: | 7.56 | 7.68 | |Hp| | | | | |HIP HIP | +051435 |V1435 Aql |185329.9+093931 |LB: | 7.32 | 7.46 | |Hp| | | | | |HIP HIP | +051436 |V1436 Aql |185453.7+105840 |E: | 9.52 | 11.45 | |Hp| | | | | |HIP HIP | +051437 |V1437 Aql |185915.2-070801 |BE | 8.99 | 9.10 | |Hp| | | | | |HIP HIP | +051438 |V1438 Aql |185951.0+112642 |DSCTC | 7.79 | 7.86 | |Hp| | | | | |HIP HIP | +051439 |V1439 Aql |190049.4+143249 |EB: | 7.68 | 7.98 | |Hp| | | | | |HIP HIP | +051440 |V1440 Aql |190500.1-070831 |ELL:+NL: | 8.40 | 8.75 | |Hp| | | | | |HIP HIP | +051441 |V1441 Aql |190508.5+093832 |EB | 6.91 | 7.00 | |Hp| | | | | |HIP HIP | +051442 |V1442 Aql |190548.2+121227 |LB: | 7.46 | 7.56 | |Hp| | | | | |HIP HIP | +051443 |V1443 Aql |190825.2+090801 |GCAS: | 8.95 | 9.13 | |Hp| | | | | |HIP HIP | +051444 |V1444 Aql |191009.9+022127 |ACV: | 7.93 | 7.99 | |Hp| | | | | |HIP HIP | +051445 |V1445 Aql |191135.3-012353 |LB: | 11.10 | 11.37 | |Hp| | | | | |HIP HIP | +051446 |V1446 Aql |191240.3-062732 |BE | 9.16 | 9.28 | |Hp| | | | | |HIP HIP | +051447 |V1447 Aql |191458.1+102434 |LPB: | 7.34 | 7.44 | |Hp| | | | | |HIP HIP | +051448 |V1448 Aql |191501.4+094827 |BE: | 7.92 | 8.09 | |Hp| | | | | |HIP HIP | +051449 |V1449 Aql |191714.8+010334 |BCEP | 8.30 | 8.38 | |Hp| | | | | |HIP HIP | +051450 |V1450 Aql |191741.0+083651 |EB: | 8.98 | 9.30 | |Hp| | | | | |HIP HIP | +051451 |V1451 Aql |192024.7-103337 |LB | 6.83 | 6.99 | |Hp| | | | | |HIP HIP | +051452 |V1452 Aql |192040.9+142509 |CEP: | 7.75 | 7.85 | |Hp| | | | | |HIP HIP | +051453 |V1453 Aql |192529.0-065542 |LB: | 9.10 | 9.20 | |Hp| | | | | |HIP HIP | +051454 |V1454 Aql |192605.1+033110 |E: | 8.09 | 8.23 | |Hp| | | | | |HIP HIP | +051455 |V1455 Aql |192633.2-080942 |EA: | 8.08 | 8.27 | |Hp| | | | | |HIP HIP | +051456 |V1456 Aql |192806.2+114701 |SRB | 8.42 | 8.63 | |Hp| | | | | |HIP HIP | +051457 |V1457 Aql |192827.9+093747 |SRB | 8.07 | 8.26 | |Hp| | | | | |HIP HIP | +051458 |V1458 Aql |193455.8+061402 |SRA | 8.33 | 8.45 | |Hp| | | | | |HIP HIP | +051459 |V1459 Aql |193920.7+102316 |LB: | 8.48 | 8.65 | |Hp| | | | | |HIP HIP | +051460 |V1460 Aql |194202.0-100532 |LB: | 9.31 | 9.41 | |Hp| | | | | |HIP HIP | +051461 |V1461 Aql |194334.1-090402 |EA | 8.91 | 9.34 | |Hp| | | | | |HIP HIP | +051462 |V1462 Aql |194330.5+004032 |BE | 8.28 | 8.39 | |Hp| | | | | |HIP HIP | +051463 |V1463 Aql |194415.9+073518 |BE | 8.05 | 8.19 | |Hp| | | | | |HIP HIP | +051464 |V1464 Aql |195015.5-083606 |RRC: | 8.69 | 8.76 | |Hp| | | | | |HIP HIP | +051465 |V1465 Aql |195055.2+064925 |ACV: | 9.22 | 9.32 | |Hp| | | | | |HIP HIP | +051466 |V1466 Aql |195215.6+102106 |BE: | 6.50 | 6.56 | |Hp| | | | | |HIP HIP | +051467 |V1467 Aql |195542.9+032152 |LB: | 11.81 | 12.28 | |Hp| | | | | |HIP HIP | +051468 |V1468 Aql |200105.2-072152 |LB | 10.31 | 10.63 | |Hp| | | | | |HIP HIP | +051469 |V1469 Aql |200103.8+093051 |LB | 8.48 | 8.66 | |Hp| | | | | |HIP HIP | +051470 |V1470 Aql *|200409.3+114740 |E | 7.83 | 7.93 | |Hp| | | | | |HIP HIP | +051471 |V1471 Aql |200454.9+022631 |EB: | 8.42 | 8.63 | |Hp| | | | | |HIP HIP | +051472 |V1472 Aql *|200526.6+153002 |E: | 6.38 | 6.54 | |Hp| | | | | |HIP HIP | +051473 |V1473 Aql |200849.7+121342 |LPB: | 7.15 | 7.21 | |Hp| | | | | |HIP HIP | +051474 |V1474 Aql |201109.6+062055 |LB | 7.39 | 7.65 | |Hp| | | | | |HIP HIP | +051475 |V1475 Aql |201202.0+074104 |LB | 7.11 | 7.26 | |Hp| | | | | |HIP HIP | +051476 |V1476 Aql |201207.0+074708 |LB: | 11.69 | 11.98 | |Hp| | | | | |HIP HIP | +051477 |V1477 Aql |201405.4-045016 |CEP: | 9.32 | 9.76 | |Hp| | | | | |HIP HIP | +051478 |V1478 Aql |201424.9-000020 |LB | 8.78 | 9.17 | |Hp| | | | | |HIP HIP | +051479 |V1479 Aql |201424.3+115726 |LB: | 11.29 | 11.53 | |Hp| | | | | |HIP HIP | +051480 |V1480 Aql |201600.9+020641 |LB | 12.05 | 12.69 | |Hp| | | | | |HIP HIP | +051481 |V1481 Aql |201700.3+070418 |LB | 7.24 | 7.56 | |Hp| | | | | |HIP HIP | +051482 |V1482 Aql |202319.2-002708 |SRB | 6.96 | 7.09 | |Hp| | | | | |HIP HIP | +051483 |V1483 Aql |202746.1-053915 |LB: | 6.83 | 7.00 | |Hp| | | | | |HIP HIP | +051484 |V1484 Aql |203605.7+010146 |LB: | 10.10 | 10.31 | |Hp| | | | | |HIP HIP | +051485 |V1485 Aql |184413.2-034758 |WR | 11.88 | 12.70 | |V | | | | | |75019 75020| +051486 |V1486 Aql |190521.3-031834 |M | 12.8 |< 14.6 | |p | | | | | |75021 75021| +051487 |V1487 Aql |191511.6+105644 |XN | 12.15 | 14.3 | |K | | | | | |75022 75023| +051488 |V1488 Aql |193239.8-062643 |UV | 14.7 | 16.2 | |p | | | | | |75024 75024| +051489 |V1489 Aql |195338.1+092328 |CEP: | 12.1 |( 0.15 )| |V | | | | | |75025 GSC | +051490 |V1490 Aql |195340.2+092351 |EA | 10.5 | 11.0 | |V | | | | | |75025 GSC | +051491 |V1491 Aql |195402.9+131618 |ACV | 9.97 |( 0.07 U )| |V | | | | | |75026 BD | +051492 |V1492 Aql |201144.6+085517 |EA | 13.3 |( 1.0 )| |R | | | | | |75027 USNO | +051493 |V1493 Aql |190736.9+123127 |NA | 10.04 |( 21. )| |V | | | | | |75018 75285| +051494 |V1494 Aql |192305.3+045720 |N | 5.03 | 16. | |V | | | | | |75305 75306| +051495 |V1495 Aql |185317.8-000628 |DCEP | 14.0 | 15.0 | |p | | | | | |76189 76189| +051496 |V1496 Aql |185459.5-000436 |DCEP: | 12.5 | 13.4 | |p | | | | | |76189 76189| +051497 |V1497 Aql |185726.7-033434 |SR: | 11.8 | 13.5 | |* | | | | | |76057 USNO | +051498 |V1498 Aql |185735.9+100902 |SR: | 13.8 | 15.5 | |* | | | | | |76057 76057| +051499 |V1499 Aql |185751.1-015900 |SR | 10.7 | 11.6 | |* | | | | | |76190 USNO | +051500 |V1500 Aql | | | | | | | | | | | | |=V0488 Sct +051501 |V1501 Aql |185839.6-035817 |M: | 13.2 | 15.8 | |* | | | | | |76057 USNO | +051502 |V1502 Aql |185852.6-094107 |SR: | 11.5 | 12.9 | |* | | | | | |76195 76057| +051503 |V1503 Aql |185901.3-032307 |SR: | 12.5 | 13.8 | |* | | | | | |76147 76057| +051504 |V1504 Aql |185901.4+104221 |M: | 14.0 |< 16.0 | |* | | | | | |76057 76057| +051505 |V1505 Aql |185911.1-013850 |SR: | 13.2 |< 14.6 | |* | | | | | |76192 76057| +051506 |V1506 Aql |185951.2+100832 |M: | 13.1 |< 15.8 | |* | | | | | |76057 76057| +051507 |V1507 Aql |185953.9-031434 |M: | 10.5 |< 13.1 | |* | | | | | |76190 76057| +051508 |V1508 Aql |185955.1-101059 |SR: | 12.5 | 13.9 | |* | | | | | |76190 USNO | +051509 |V1509 Aql |190011.9-025724 |SR: | 10.8 | 13.6 | |* | | | | | |76197 76057| +051510 |V1510 Aql |190017.7-060658 |M: | 11.7 | 14.5 | |* | | | | | |76192 USNO | +051511 |V1511 Aql |190031.8-021220 |SR | 13.0 | 14.8 | |* | | | | | |76057 USNO | +051512 |V1512 Aql |190049.5-015345 |SR | 12.1 | 13.3 | |* | | | | | |76195 USNO | +051513 |V1513 Aql |190105.0-031049 |SR: | 11.0 | 13.2 | |* | | | | | |76197 USNO | +051514 |V1514 Aql |190110.0-100330 |SR: | 12.5 | 14.0 | |* | | | | | |76072 USNO | +051515 |V1515 Aql |190115.0+113239 |SR: | 12.3 | 13.7 | |* | | | | | |76057 76057| +051516 |V1516 Aql |190120.4-033036 |SR: | 12.9 | 14.4 | |* | | | | | |76057 USNO | +051517 |V1517 Aql |190139.6-064623 |SR: | 12.2 | 14.3 | |* | | | | | |76192 USNO | +051518 |V1518 Aql |190153.2+105655 |SR: | 13.1 | 15.1 | |* | | | | | |76057 76057| +051519 |V1519 Aql |190153.3+120533 |SR: | 12.1 | 13.6 | |* | | | | | |76057 76057| +051520 |V1520 Aql |190158.5-020047 |SR | 12.5 |( 0.7 )| |V | | | | | |76198 GSC | +051521 |V1521 Aql |190209.5+165605 |SR | 12.8 | 14.3 | |* | | | | | |76057 USNO | +051522 |V1522 Aql |190225.4-075650 |SR: | 11.3 | 13.4 | |* | | | | | |76190 USNO | +051523 |V1523 Aql |190228.4-011217 |SR: | 13.7 | 16.0 | |* | | | | | |76057 76057| +051524 |V1524 Aql |190236.0-070134 |SR: | 11.1 | 13.2 | |* | | | | | |76190 USNO | +051525 |V1525 Aql |190242.9-014251 |SR: | 12.7 | 14.5 | |* | | | | | |76192 76057| +051526 |V1526 Aql |190605.7-012959 |M | 10. |< 12.5 | |* | | | | | |76199 USNO | +051527 |V1527 Aql |190847.6-040246 |M: | 14.1 |( 1.5 * )| |V | | | | | |76200 USNO | +051528 |V1528 Aql |190853.1-020118 |M | 11.0 |< 12.0 | |I | | | | | |76198 2MASS| +051529 |V1529 Aql |191103.0+003938 |EW | 17.3 | 17.7 | |I | | | | | |76203 76203| +051530 |V1530 Aql |191105.9+003906 |EW | 17.6 | 18.1 | |I | | | | | |76203 76203| +051531 |V1531 Aql |191109.2+003154 |EW | 15.5 | 15.7 | |I | | | | | |76203 76203| +051532 |V1532 Aql |191114.2+003446 |EW | 15.2 | 15.6 | |I | | | | | |76203 76203| +051533 |V1533 Aql |191117.7+003335 |EA | 17.5 | 18.1 | |I | | | | | |76203 76203| +051534 |V1534 Aql |191118.3+003712 |EW | 16.6 | 17.1 | |I | | | | | |76203 76203| +051535 |V1535 Aql |191123.5+003605 |EW | 16.2 | 16.6 | |I | | | | | |76203 76203| +051536 |V1536 Aql |191124.8+003820 |EW | 18.5 | 19.1 | |I | | | | | |76203 76203| +051537 |V1537 Aql |191128.8+003249 |EW | 16.9 | 17.7 | |I | | | | | |76203 76203| +051538 |V1538 Aql |192436.4+063128 |EW: | 12.3 | 12.7 | |* | | | | | |76272 GSC | +051539 |V1539 Aql |192634.5+033152 |LPB | 8.43 |( 0.03 )| |V | | | | | |76208 DM | +051540 |V1540 Aql |192809.3+102938 |SR: | 12.4 | 13.4 | |* | | | | | |76057 76057| +051541 |V1541 Aql |194258.2-051337 |M | 9.52 |< 13. | |* | | | | | |76217 USNO | +051542 |V1542 Aql |194625.1+084513 |DSCT: | 11.71 | 12.34 | |* | | | | | |76170 GSC | +051543 |V1543 Aql |194915.2+103543 |SR | 12.13 | 12.40 | |* | | | | | |76169 GSC | +051544 |V1544 Aql |195412.7+103929 |SR | 12.2 | 12.5 | |* | | | | | |76169 USNO | +051545 |V1545 Aql |195706.6-074528 |M | 10.09 |< 12.5 | |* | | | | | |76219 GSC | +051546 |V1546 Aql |195855.3+110703 |SR: | 12.0 | 12.9 | |* | | | | | |76197 UCAC2| +051547 |V1547 Aql |200936.2+103909 |SR | 12.63 | 13.04 | |* | | | | | |76169 GSC | +051548 |V1548 Aql |190728.4+114446 |N | 10.8 |< 18. | |V | | | | | |77167 77168| +051549 |V1549 Aql |184632.1-025723 |SR | 7.5 | 8.3 | |I | | | | | |77149 GSC | +051550 |V1550 Aql |185043.4-033431 |SR | 6.8 | 7.0 | |I | | | | | |77149 GSC | +051551 |V1551 Aql |185235.9-031217 |SR | 8.0 | 8.8 | |I | | | | | |77149 USNO | +051552 |V1552 Aql |185911.0+172704 |M | 11.4 |< 14.3 | |V | | | | | |77004 2MASS| +051553 |V1553 Aql |190256.8+002548 |M: | 12.0 |< 13.8 | |V | | | | | |77004 GSC | +051554 |V1554 Aql |190336.6+023737 |M: | 12.8 | 14.2 | |I | | | | | |77164 GSC22| +051555 |V1555 Aql |190340.4+014235 |M | 12.8 | 16. : | |I | | | | | |77164 2MASS| +051556 |V1556 Aql |190408.0+024154 |M | 11.5 | 14.9 | |I | | | | | |77164 USNO | +051557 |V1557 Aql |190408.4+015856 |M | 12.5 | 15.5 : | |I | | | | | |77164 GSC22| +051558 |V1558 Aql |190418.3+013041 |M | 12.3 | 14.5 | |I | | | | | |77164 GSC22| +051559 |V1559 Aql |190418.3+025113 |M | 11.2 | 14.4 | |I | | | | | |77164 GSC22| +051560 |V1560 Aql |190434.2+020646 |M | 11.9 | 15.0 | |I | | | | | |77164 GSC22| +051561 |V1561 Aql |190439.5+012218 |M | 10.0 | 13.1 | |I | | | | | |77164 GSC22| +051562 |V1562 Aql |190442.8+025143 |M | 12.4 | 15.1 | |I | | | | | |77164 GSC22| +051563 |V1563 Aql |190450.5+022230 |LB | 10.7 | 11.8 | |I | | | | | |77164 GSC22| +051564 |V1564 Aql |190450.8+023320 |M | 11.8 | 15.2 | |I | | | | | |77164 USNO | +051565 |V1565 Aql |190451.2+013142 |M | 11.3 | 14.5 | |I | | | | | |77164 GSC22| +051566 |V1566 Aql |190451.8+025418 |M | 12.4 | 15.4 : | |I | | | | | |77164 2MASS| +051567 |V1567 Aql |190453.2+020840 |M | 10.9 | 15.1 | |I | | | | | |77164 GSC22| +051568 |V1568 Aql |190454.0+023747 |M | 11.9 | 14.6 | |I | | | | | |77164 GSC22| +051569 |V1569 Aql |190455.8+012130 |M | 11.9 | 15.8 | |I | | | | | |77164 GSC22| +051570 |V1570 Aql |190504.6+011604 |M | 10.2 | 14.8 | |I | | | | | |77164 USNO | +051571 |V1571 Aql |190509.7+021337 |M | 11.8 | 14.0 | |I | | | | | |77164 2MASS| +051572 |V1572 Aql |190509.8+021800 |M | 11.9 | 15.1 | |I | | | | | |77164 GSC22| +051573 |V1573 Aql |190510.3+013802 |M | 12.8 | 15.6 | |I | | | | | |77164 USNO | +051574 |V1574 Aql |190514.6+014452 |M | 12.0 | 15.5 | |I | | | | | |77164 USNO | +051575 |V1575 Aql |190514.7+015552 |M | 12.1 | 14.8 | |I | | | | | |77164 77164| +051576 |V1576 Aql |190517.3+015332 |M | 12.2 | 15.6 : | |I | | | | | |77164 77164| +051577 |V1577 Aql |190518.5+013936 |M | 9.5 | 13.0 | |I | | | | | |77164 GSC22| +051578 |V1578 Aql |190519.9+022741 |M | 11.8 | 15.5 : | |I | | | | | |77164 GSC22| +051579 |V1579 Aql |190521.8+014233 |M | 11.8 | 15.3 | |I | | | | | |77164 USNO | +051580 |V1580 Aql |190556.4+025651 |M | 11.4 | 15.2 | |I | | | | | |77164 GSC22| +051581 |V1581 Aql |190601.5+015003 |M | 12.0 | 15.5 | |I | | | | | |77164 GSC22| +051582 |V1582 Aql |190601.6+020858 |M | 12.6 | 15.0 | |I | | | | | |77164 USNO | +051583 |V1583 Aql |190607.6+012202 |M | 10.1 | 13.6 | |I | | | | | |77164 GSC22| +051584 |V1584 Aql |190617.1+021242 |M | 11.1 | 14.5 | |I | | | | | |77164 GSC22| +051585 |V1585 Aql |190619.2+015702 |M | 12.5 | 15.5 : | |I | | | | | |77164 GSC22| +051586 |V1586 Aql |190623.7+123818 |M: | 12.4 | 15.1 | |* | | | | | |77156 GSC22| +051587 |V1587 Aql |190627.9+005943 |M | 12.1 | 15.7 | |I | | | | | |77164 USNO | +051588 |V1588 Aql |190628.4+031019 |M | 12.0 | 15.0 | |I | | | | | |77164 USNO | +051589 |V1589 Aql |190639.5+032622 |M | 11.4 | 14.8 | |I | | | | | |77164 2MASS| +051590 |V1590 Aql |190641.1+030221 |M | 13.0 | 15.4 | |I | | | | | |77164 2MASS| +051591 |V1591 Aql |190643.1+031712 |M | 12.9 | 15.4 | |I | | | | | |77164 USNO | +051592 |V1592 Aql |190645.4+031638 |M | 12.9 | 15.3 | |I | | | | | |77164 USNO | +051593 |V1593 Aql |190646.9+032522 |M | 11.5 | 14.5 | |I | | | | | |77164 GSC22| +051594 |V1594 Aql |190655.8+025944 |M | 12.1 | 15. : | |I | | | | | |77164 USNO | +051595 |V1595 Aql |190658.2+025909 |M | 13.1 | 15.4 | |I | | | | | |77164 GSC22| +051596 |V1596 Aql |190701.2+012959 |M | 11.7 | 15.2 | |I | | | | | |77164 GSC22| +051597 |V1597 Aql |190703.2+023102 |M | 13.2 | 15.6 | |I | | | | | |77164 GSC22| +051598 |V1598 Aql |190711.6-041001 |M | 10.2 |< 12.0 | |I | | | | | |77149 USNO | +051599 |V1599 Aql |190712.9+032104 |M | 11.2 | 14.5 | |I | | | | | |77164 GSC22| +051600 |V1600 Aql |190713.2+011720 |M | 10.5 | 14.2 | |I | | | | | |77164 USNO | +051601 |V1601 Aql |190714.2+032506 |M | 11.8 | 15.0 | |I | | | | | |77164 GSC22| +051602 |V1602 Aql |190719.3+014934 |M | 11.2 | 15.5 | |I | | | | | |77164 GSC22| +051603 |V1603 Aql |190727.1+022434 |M | 11.0 | 14.4 | |I | | | | | |77164 USNO | +051604 |V1604 Aql |190728.3+122345 |SR: | 12.7 | 13.8 | |* | | | | | |77156 GSC22| +051605 |V1605 Aql |190730.9+023342 |M | 11.5 | 14.6 | |I | | | | | |77164 2MASS| +051606 |V1606 Aql |190731.2+122358 |M: | 13.4 | 15.9 | |* | | | | | |77156 GSC22| +051607 |V1607 Aql |190734.1+025010 |M | 11.5 | 15.3 | |I | | | | | |77164 USNO | +051608 |V1608 Aql |190737.6+032927 |M | 12.6 | 15.5 : | |I | | | | | |77164 USNO | +051609 |V1609 Aql |190806.3+021742 |M | 12.2 | 15.5 | |I | | | | | |77164 GSC22| +051610 |V1610 Aql |190807.0+021909 |SR | 12.8 | 13.8 | |I | | | | | |77164 GSC22| +051611 |V1611 Aql |190810.0+023150 |M | 12.4 | 15.6 | |I | | | | | |77164 USNO | +051612 |V1612 Aql |190818.4+014628 |M | 11.9 | 15.5 : | |I | | | | | |77164 USNO | +051613 |V1613 Aql |190833.7+015553 |M | 11.9 | 15.0 | |I | | | | | |77164 USNO | +051614 |V1614 Aql |190845.8+031602 |SR | 8.7 | 10.8 | |I | | | | | |77164 USNO | +051615 |V1615 Aql |190848.1+013929 |M | 10.5 | 14.5 | |I | | | | | |77164 USNO | +051616 |V1616 Aql |190849.7+025044 |M | 12.0 | 15.5 : | |I | | | | | |77164 2MASS| +051617 |V1617 Aql |190902.8+030625 |M | 12.5 | 15.2 | |I | | | | | |77164 GSC22| +051618 |V1618 Aql |190917.3+025453 |M | 10.4 | 14.0 | |I | | | | | |77164 USNO | +051619 |V1619 Aql |190931.3+030316 |M | 12.4 | 15.2 | |I | | | | | |77164 GSC22| +051620 |V1620 Aql |190940.9+021326 |M | 12.2 | 14.9 | |I | | | | | |77164 GSC22| +051621 |V1621 Aql |190953.0+025421 |M | 11.6 | 15.0 | |I | | | | | |77164 USNO | +051622 |V1622 Aql |190953.6+024627 |M | 10.8 | 14.0 | |I | | | | | |77164 USNO | +051623 |V1623 Aql |190958.9+025134 |M | 13.0 | 15.2 | |I | | | | | |77164 USNO | +051624 |V1624 Aql |191002.7+030351 |M | 12.0 | 16. : | |I | | | | | |77164 GSC22| +051625 |V1625 Aql |191006.6+034328 |M | 11.8 | 14.2 | |I | | | | | |77164 USNO | +051626 |V1626 Aql |191007.0+030817 |M | 12.0 | 15.3 | |I | | | | | |77164 GSC22| +051627 |V1627 Aql |191008.6+021630 |M | 12.3 | 15.5 : | |I | | | | | |77164 GSC22| +051628 |V1628 Aql |191012.3+024438 |M | 11.7 | 15.0 | |I | | | | | |77164 USNO | +051629 |V1629 Aql |191021.7+025808 |M | 12.8 | 15.5 | |I | | | | | |77164 GSC22| +051630 |V1630 Aql |191021.8+022420 |M | 13.1 | 15.5 | |I | | | | | |77164 GSC22| +051631 |V1631 Aql |191023.5+022525 |M | 12.8 | 15.3 | |I | | | | | |77164 GSC22| +051632 |V1632 Aql |191025.6+021833 |M | 12.3 | 15.3 | |I | | | | | |77164 GSC22| +051633 |V1633 Aql |191110.9+023502 |M | 13.3 | 15.5 | |I | | | | | |77164 GSC22| +051634 |V1634 Aql |191130.4+025024 |M | 13.0 | 15.3 | |I | | | | | |77164 GSC22| +051635 |V1635 Aql |191200.7+023430 |M | 13. : | 15.2 : | |I | | | | | |77164 2MASS| +051636 |V1636 Aql |191233.2-030836 |SR | 9.8 | 10.6 | |I | | | | | |77149 GSC | +051637 |V1637 Aql |191348.6-052952 |SR | 7.0 | 7.7 | |I | | | | | |77149 GSC | +051638 |V1638 Aql |191731.4+082718 |M: | 12.8 |< 14.0 | |V | | | | | |77004 USNO | +051639 |V1639 Aql |191841.1+072403 |LB | 11.8 | 12.1 | |* | | | | | |77125 GSC | +051640 |V1640 Aql |192035.0-035751 |M | 11.9 |( 2.50 )| |R | | | | | |77172 77172| +051641 |V1641 Aql |192050.1+072315 |LB | 12.8 | 13.2 | |* | | | | | |77125 GSC | +051642 |V1642 Aql |192157.3+035555 |LB | 12.4 | 12.9 | |* | | | | | |77125 GSC | +051643 |V1643 Aql |192429.6+045640 |SR: | 11.4 | 12.9 | |* | | | | | |77156 USNO | +051644 |V1644 Aql |192442.8+040656 |LB | 12.1 | 12.7 | |* | | | | | |77125 USNO | +051645 |V1645 Aql |192448.3-082920 |SR: | 10.5 | 12.6 | |V | | | | | |77004 GSC | +051646 |V1646 Aql |193421.5+035443 |EA | 11.9 | 12.4 | |* | | | | | |77125 GSC | +051647 |V1647 Aql |194008.3-102226 |EW | 13.5 |( 0.46 )| |R | | | | | |77176 GSC | +051648 |V1648 Aql *|194108.3+020231 |* | 10.95 | 11.22 | |V | | | | | |77178 GSC | +051649 |V1649 Aql |194506.6+035553 |LB | 12.7 | 13.3 | |* | | | | | |77125 GSC | +051650 |V1650 Aql |194814.9+035113 |LB | 11.1 | 11.4 | |* | | | | | |77125 GSC | +051651 |V1651 Aql |194836.8+072117 |LB | 12.7 | 13.2 | |* | | | | | |77125 USNO | +051652 |V1652 Aql |194947.2+040724 |LB | 13.0 | 13.6 | |* | | | | | |77125 USNO | +051653 |V1653 Aql |195359.4+071445 |LB | 12.0 | 12.4 | |* | | | | | |77125 GSC | +051654 |V1654 Aql |200247.0+031934 |BY | 7.48 |( 0.04 b )| |V | | | | | |77182 DM | +051655 |V1655 Aql |200302.8+152742 |SR | 8.23 | 8.43 | |V | | | | | |77183 DM | +051656 |V1656 Aql |200951.5+155734 |EA/RS | 13.4 | 14.8 | |B | | | | | |77187 77187| +051657 |V1657 Aql |201043.2+045552 |SR: | 13.9 |( 0.85 )| |Rc| | | | | |77188 77188| +051658 |V1658 Aql |201043.8+045449 |BY | 9.50 |( 0.14 Rc)| |V | | | | | |77188 77188| +051659 |V1659 Aql |201103.3+045510 |BY | 9.00 |( 0.11 Rc)| |V | | | | | |77188 77188| +051660 |V1660 Aql |201448.7+035532 |DSCT: | 12.1 | 12.4 | |* | | | | | |77122 GSC | +051661 |V1661 Aql |203451.7-024255 |SR: | 12.6 | 13.6 | |V | | | | | |77004 UCAC2| +051662 |V1662 Aql |203550.6-013620 |SR: | 11.1 | 13.1 | |V | | | | | |77004 GSC | +051663 |V1663 Aql |190512.2+051412 |NL | 10.84 |< 18. | |V |53532. |2002 | | |Kep |78073 2MASS| +051664 |V1664 Aql |184339.2-000427 |SR | 11.3 | 13.0 | |I |51443 | | 280. : | | |78006 2MASS| +051665 |V1665 Aql *|185609.9+075608 |EA | 8.09 | 8.40 | 8.26 |V |52810.870 | | 3.88181 | |B9V |78011 DM | +051666 |V1666 Aql |185710.9+100617 |SR: | 13.0 |< 14.9 | |* | | | | | |78006 2MASS| +051667 |V1667 Aql |185722.1+114834 |M: | 13.4 |< 15.8 | |* | | | | | |78006 2MASS| +051668 |V1668 Aql |185742.3+111257 |M | 11.6 | 14.8 | |* |51309 | | | | |78006 2MASS| +051669 |V1669 Aql |185813.4+150622 |M: | 12.1 |< 15.1 | |* | | | | | |78006 78256| +051670 |V1670 Aql |185821.0+112031 |SR: | 13.4 |< 15.5 | |* | | | | | |78006 2MASS| +051671 |V1671 Aql |185843.6+125613 |SR: | 13.3 |< 15.0 | |* | | | | | |78006 2MASS| +051672 |V1672 Aql |190010.9+034547 |SDOR: | 6.91 | 8.58 | |K | | | | | |78257 2MASS| +051673 |V1673 Aql |190015.1+105017 |M: | 11.8 | 15.6 | |* |51460 | | | | |78006 2MASS| +051674 |V1674 Aql |190016.8-102636 |RRAB | 12.7 | 13.6 | |V |52846.53 | | 0.69839 |16 | |78258 78258| +051675 |V1675 Aql |190028.1+140953 |M | 12.5 | 15.2 | |* |51459 | | | | |78006 2MASS| +051676 |V1676 Aql |190040.5-095148 |SR: | 12.3 | 14.0 | |* | | | | | |78006 2MASS| +051677 |V1677 Aql |190109.4+153857 |SR: | 11.6 | 14.0 | |* |51340 | | | | |78006 2MASS| +051678 |V1678 Aql |190116.3+103122 |SR: | 13.8 |< 15.2 | |* | | | | | |78006 2MASS| +051679 |V1679 Aql |190132.3+150022 |M: | 11.8 | 13.7 | |* |51340 | | | | |78006 2MASS| +051680 |V1680 Aql |190214.5+130303 |NA | 9.7 |< 21. | |V |46266. |1985 | | | |78259 78259| +051681 |V1681 Aql |190227.8+181236 |M: | 12.3 | 15.0 | |* | | | | | |78006 2MASS| +051682 |V1682 Aql |190241.8+124600 |M: | 12.1 | 15.1 | |* | | | | | |78006 2MASS| +051683 |V1683 Aql |190253.7-102643 |M | 9.8 | 12.6 | |* |53275 | | 370. | | |78006 2MASS| +051684 |V1684 Aql |190333.4+163120 |SR: | 13.0 |( 0.6 )| |V | | | | | |78260 GSC | +051685 |V1685 Aql |191036.1+024929 |ZAND | 15.9 | 17.0 | |V | | | | | |78253 78262| +051686 |V1686 Aql *|191347.7-015007 |EB | 8.91 | 9.01 | 8.98 |V |52070.764 | | 6.07195 | |B6III |78011 DM | +051687 |V1687 Aql *|191439.6+035040 |EW | 11.42 | 11.85 | 11.85 |V |52464.5579 | | 0.5878039 | | |78097 GSC | +051688 |V1688 Aql |191535.0+113317 |BY | 8.06 |( 0.02 )| |V | | | 14.16 : | |K0V |78018 DM | +051689 |V1689 Aql |192030.0-070241 |SRA | 11.3 | 12.2 | |V |52761 | | 116. | |M7 |78130 GSC | +051690 |V1690 Aql |192238.4+140753 |M: | 10.6 |< 13.1 | |* |52515 | | | | |78088 2MASS| +051691 |V1691 Aql |192501.5-045304 |DSCTC | 6.82 |( 0.04 )| |B | | | 0.0781 | |A9V |78270 DM | +051692 |V1692 Aql *|192628.2+071149 |EW | 11.22 | 11.45 | 11.44 |* |52140.960 | | 0.60926 | | |78065 GSC | +051693 |V1693 Aql |192751.0+111101 |M | 12.1 | 16.4 | |* |52390 | | 538. : | | |78006 2MASS| +051694 |V1694 Aql |193200.4+110925 |M: | 11.4 | 14.1 | |* |51415 | | | | |78006 2MASS| +051695 |V1695 Aql |193822.3-033237 |EW | 10.80 | 11.38 | |V |52522.440 | | 0.4128 | | |78272 DM | +051696 |V1696 Aql |194225.9-105818 |SRA | 10.0 | 13.1 | |V |52912 | | 154.7 | |Me |78130 GSC | +051697 |V1697 Aql |194321.5+003035 |SRA | 13.2 | 15.0 | |V |51335 | | 192. | | |78040 GSC | +051698 |V1698 Aql |194449.5-004657 |SRB | 11.5 | 13.5 | |V | | | 248. | | |78278 78278| +051699 |V1699 Aql |194821.3-051507 |M | 12.9 | 15.0 | |* |52447 | | 315. | | |78103 GSC | +051700 |V1700 Aql |200055.4+072442 |EA | 8.27 | 8.64 | |V |52527.618 | | 3.40078 | |B9 |78011 DM | +051701 |V1701 Aql |200056.9-060514 |M | 12.1 |< 14.6 | |V |53166 | | 321. | | |78103 2MASS| +051702 |V1702 Aql |200226.5-044635 |EA | 12.06 | 13.18 | |V |52087.723 | | 1.68502 |11 | |78283 GSC | +051703 |V1703 Aql |201359.8-005201 |BY | 7.79 |( 0.03 )| |V | | | 23.98 | |K2V |78018 DM | +051704 |V1704 Aql |202024.0-034859 |RRAB | 12.45 | 13.18 | |* |52523.40 | | 0.5152 |20 | |78272 GSC | +051705 |V1705 Aql |191756.7+154717 |M | 12.7 | 16.0 : | |I |42225. | | 425. |52 |M3 |08319 08319| +051706 |V1706 Aql *|185845.8-055705 |CWA | 13.99 | 15.10 | |V |38584.45 | | 15.38153 |43 | |07806 01407| +051707 |V1707 Aql *|185203.7+111726 |EA | 12.47 | 13.05 | 13.0 : |V |52888.602 | | 3.63592 |05 |A5 |79009 79130| +051708 |V1708 Aql |185357.5+013641 |SR: | 10.2 | 10.7 | |* | | | | | |79100 79175| +051709 |V1709 Aql |185454.4+010718 |GDOR | 7.43 | 7.49 | |Hp| | | 0.78666 | |F5 |79145 DM | +051710 |V1710 Aql *|190200.3+020911 |* | 13.1 | 13.9 | |V |49795.85 | | 68.132 | |B8 |79162 GSC | +051711 |V1711 Aql *|191315.2+013438 |LB | 9.2 | 9.9 | |V | | | | |M1 |79100 DM | +051712 |V1712 Aql |192528.5+112339 |EW | 13.15 | 14.0 | 13.9 : |V |52868.547 | | 0.396110 | | |79009 79049| +051713 |V1713 Aql |193744.0+014936 |EW | 10.61 | 11.15 | 11.07 |V |52481.639 | | 0.531737 | |dK2: |79018 79132| +051714 |V1714 Aql |193939.5+093410 |EA | 11.76 | 12.45 : | 12.40 |V |51486.657 | | 0.962992 |11 | |79004 79133| +051715 |V1715 Aql |194539.2-051918 |M | 11.5 |< 15.0 | |V |53488. | | 267. | | |79064 79010| +051716 |V1716 Aql |194858.7+123406 |SRB | 11.4 | 12.7 | |V | | | 106. | | |79064 79040| +051717 |V1717 Aql |194901.5+002912 |M | 11.3 |< 16. | |V |53892. | | 360. | | |79100 79219| +051718 |V1718 Aql |195034.0+005438 |SRB | 11.8 | 12.7 | |V | | | 57. | | |79100 79040| +051719 |V1719 Aql *|195044.2+014550 |EA | 8.78 | 8.96 | 8.79 : |V |51421.753 | | 2.1774 |07 |G5V |79009 DM | +051720 |V1720 Aql |195254.1+064054 |LB | 11.5 | 12.0 | |* | | | | | |79100 79049| +051721 |V1721 Aql |190628.6+070645 |N | 14.0 |< 20. | |* |54732. :|2008 | | |pec(Nova) |79244 | +051722 |V1722 Aql |191409.7+151634 |N | 10.29 |< 21. | |V |55183. |2009 | 2009 | |pec(Nova) |80211 | NL80_1 +051723 |V1723 Aql |184738.4-034714 |NA | 13.4 |< 18. | |Rc|55451 :|2010 | | |pec(Nova) |80424 | NL80_2 +051724 |V1724 Aql |185235.0-001843 |NA: | 13.7 |< 19. | |V |56236. |2012 | | |pec(Nova) |80632 80633| NL80_3 +051725 |V1725 Aql |184911.4+002359 |EA | 12.41 | 13.2 | 13.2 |V |52725.340 | | 99.4022 |05 | |80042 GSC | NL80_3 +051726 |V1726 Aql |184953.4+110010 |LB | 11.8 |( 0.31 )| |Ic| | | | | |80509 USNO | NL80_3 +051727 |V1727 Aql |185009.6+105936 |LB | 10.5 |( 0.29 )| |Ic| | | | | |80509 USNO | NL80_3 +051728 |V1728 Aql |185105.4-031540 |DSCTC | 6.9 |( 0.02 )| |V | | | 0.049051 | |A2 |80510 80510| NL80_3 +051729 |V1729 Aql |185122.2-031904 |DSCTC | 6.1 |( 0.03 )| |V | | | 0.080734 | |F2III |80510 80510| NL80_3 +051730 |V1730 Aql |185354.9-004812 |BE: | 11.9 | 12.3 | |V | | | | |OB:e |80077 GSC | NL80_3 +051731 |V1731 Aql |185520.6-010531 |SR | 12.3 | 13.0 | |V | | | 61. | | |80273 GSC | NL80_3 +051732 |V1732 Aql *|185659.1+002812 |EB | 12.4 | 13.3 | 12.8 |V |51981.4 | | 1.529950 | | |80002 GSC | NL80_3 +051733 |V1733 Aql |185750.4+013115 |SRB | 10.9 | 11.3 | |V | | | 186.8 | |ea |80002 GSC | NL80_3 +051734 |V1734 Aql |185850.4+174209 |LB | 13.1 | 14.0 | |* | | | | | |80001 2MASS| NL80_3 +051735 |V1735 Aql |185919.2+174432 |M | 12.7 |< 15.7 | |V |52228. | | 310. | | |80001 2MASS| NL80_3 +051736 |V1736 Aql |185941.3+180937 |SR | 10.9 | 11.8 | |* |51449. | | 88. | | |80001 2MASS| NL80_3 +051737 |V1737 Aql *|190047.5-085721 |M | 11.5 : | 15.5 : | |R |54631. | | 380. | | |80001 2MASS| NL80_3 +051738 |V1738 Aql |190115.5-114840 |LB | 12.4 | 14.0 | |V | | | | | |80001 GSC | NL80_3 +051739 |V1739 Aql |190156.3-011506 |EA | 12.94 | 13.45 | 13.14 |V |54368.6111 | | 2.291977 |19 | |80001 USNO | NL80_3 +051740 |V1740 Aql |190207.0+020727 |EW | 14.0 | 14.4 | 14.4 |I |53205.4431 | | 0.44014 | | |80038 80038| NL80_3 +051741 |V1741 Aql |190239.6+012914 |SR | 12.7 | 14.2 | |V |54308. | | 165. | | |80001 GSC | NL80_3 +051742 |V1742 Aql *|190332.0+104353 |M | 14.28 | 17.09 | |Rc|54000. | | 308. | |Me |80513 80513| NL80_3 +051743 |V1743 Aql *|190719.7+041539 |EB+EA | 14.83 | 15.10 | 15.02 |Ic|50673.5606 | | 0.6743 | | |80515 80515| NL80_3 +051744 |V1744 Aql |190720.8+042047 |EW | 16.72 | 16.83 | 16.81 |Ic|50654.7124 | | 0.7515 | | |80515 | NL80_3 +051745 |V1745 Aql |190721.9+041614 |EW | 17.8 | 18.4 | 18.2 |Ic|50650.6618 | | 0.6486 | | |80515 | NL80_3 +051746 |V1746 Aql |190722.4+041443 |CWA: | 15.1 | 15.4 | |Ic| | | 41.6058 |45 | |80515 80515| NL80_3 +051747 |V1747 Aql |190723.4+084332 |EA | 10.34 | 11.00 | 10.48 |V |51332.759 | | 1.27428 |15 |AO |80042 GSC | NL80_3 +051748 |V1748 Aql |190723.8+041907 |CWA: | 18.0 | 18.5 | |Ic| | | 12.9082 | | |80515 80515| NL80_3 +051749 |V1749 Aql |190724.3+040811 |BY: | 16.7 | 17.2 | |Ic| | | | | |80515 80515| NL80_3 +051750 |V1750 Aql |190727.9+041509 |GDOR | 14.92 | 15.00 | |Ic| | | 0.6374 | | |80515 80515| NL80_3 +051751 |V1751 Aql |190728.6+041107 |EW | 16.4 | 17.2 | 17.2 |Ic|50674.5056 | | 0.3779 | | |80515 2MASS| NL80_3 +051752 |V1752 Aql *|190728.7+041854 |GDOR: | 15.52 | 15.64 | |Ic| | | 0.2641 | | |80515 80515| NL80_3 +051753 |V1753 Aql |190730.2+042047 |EW | 17.2 | 17.4 | 17.4 |Ic|50674.6688 | | 0.4990 | | |80515 GSC23| NL80_3 +051754 |V1754 Aql |190731.9+041441 |BY | 15.78 | 15.95 | |Ic| | | 20.8 | | |80515 80515| NL80_3 +051755 |V1755 Aql |190732.3+041905 |SR: | 14.07 | 14.22 | |Ic| | | 28. : | | |80515 2MASS| NL80_3 +051756 |V1756 Aql |190737.1+042002 |SR | 15.08 | 15.27 | |Ic| | | 56. : | | |80515 80515| NL80_3 +051757 |V1757 Aql |190738.3+041823 |EA | 17.9 | 18.7 | 18.15 : |Ic|50668.71 | | 1.77 : |16 : | |80515 | NL80_3 +051758 |V1758 Aql |190739.7+041240 |EW | 18.2 | 18.5 | 18.5 |Ic|50654.7205 | | 0.3985 | | |80515 | NL80_3 +051759 |V1759 Aql |190740.8+041158 |EB | 15.84 | 16.06 | 15.98 : |Ic|50653.5233 | | 24.2911 | | |80515 2MASS| NL80_3 +051760 |V1760 Aql *|190741.1+041555 |GDOR: | 15.75 | 15.91 | |Ic| | | 4.352 | | |80515 80515| NL80_3 +051761 |V1761 Aql |190743.8+041903 |SR: | 13.92 | 14.08 | |Ic| | | 32.4 : | | |80515 2MASS| NL80_3 +051762 |V1762 Aql |190744.7+041734 |EA | 13.78 | 14.02 | |Ic|50670.55 | | | | |80515 2MASS| NL80_3 +051763 |V1763 Aql |190744.9+041032 |EA | 15.60 | 15.81 | |Ic|51067.5311 | | 24.3224 | | |80515 2MASS| NL80_3 +051764 |V1764 Aql |190746.1+040955 |EW | 16.23 | 16.48 | 16.44 |Ic|50674.5882 | | 0.7071 | | |80515 80515| NL80_3 +051765 |V1765 Aql |190746.6+041941 |EW | 17.30 | 17.75 | 17.70 |Ic|50649.7320 | | 0.4328 | | |80515 | NL80_3 +051766 |V1766 Aql |190747.2+041930 |CWB: | 17.9 | 18.3 | |Ic|50647.75 | | 3.61 |32 | |80515 80515| NL80_3 +051767 |V1767 Aql |190747.4+041958 |LB | 13.93 | 14.01 | |Ic| | | | | |80515 2MASS| NL80_3 +051768 |V1768 Aql |190748.2+042009 |EA | 13.16 | 13.26 | |Ic|51078.49 | | 0.971 : | | |80515 GSC | NL80_3 +051769 |V1769 Aql |190748.5+041820 |EW | 17.16 | 17.66 | 17.60 |Ic|50668.7497 | | 0.7118 | | |80515 GSC23| NL80_3 +051770 |V1770 Aql |190749.0+041252 |SR: | 14.64 | 14.79 | |Ic| | | 37.8 : | | |80515 2MASS| NL80_3 +051771 |V1771 Aql |190750.8+041512 |EW | 17.24 | 17.65 | 17.56 |Ic|50647.6095 | | 0.5443 | | |80515 | NL80_3 +051772 |V1772 Aql |190752.1+041016 |EW | 17.40 | 17.65 | 17.61 |Ic|50649.7562 | | 0.8196 | | |80515 2MASS| NL80_3 +051773 |V1773 Aql |190753.5+041749 |SR | 13.74 | 14.08 | |Ic| | | 74.8 : | | |80515 80515| NL80_3 +051774 |V1774 Aql |190753.6+041902 |EW | 17.06 | 17.30 | 17.26 : |Ic|50647.5920 | | 0.7708 | | |80515 2MASS| NL80_3 +051775 |V1775 Aql |190757.8+041043 |SR | 13.04 | 13.18 | |Ic| | | 30. : | | |80515 80515| NL80_3 +051776 |V1776 Aql |190759.1+041646 |EW: | 16.08 | 16.38 | 16.36 |Ic|50664.5525 | | 1.0639 | | |80515 2MASS| NL80_3 +051777 |V1777 Aql |190759.1+041746 |EA | 18.0 | 18.48 | 18.12 |Ic|50650.5765 | | 1.2026 |21 | |80515 80515| NL80_3 +051778 |V1778 Aql |190800.3+040848 |GDOR | 14.64 | 14.72 | |Ic| | | 0.4950 | | |80515 80515| NL80_3 +051779 |V1779 Aql |190800.3+040903 |LB: | 12.45 | 12.67 | |Ic| | | | | |80515 80515| NL80_3 +051780 |V1780 Aql |190800.7+041019 |EW | 17.02 | 17.21 | 17.17 |Ic|50647.6764 | | 0.3920 | | |80515 GSC23| NL80_3 +051781 |V1781 Aql |190801.3+041323 |EA | 17.41 | 17.70 | 17.56 : |Ic| | | 1.14 : | | |80515 | NL80_3 +051782 |V1782 Aql |190802.2+040901 |DSCT | 13.75 | 13.92 | |Ic| | | 0.1542 | | |80515 80515| NL80_3 +051783 |V1783 Aql |190803.6+041130 |EB | 15.90 | 16.12 | 16.05 |Ic|50658.7265 | | 0.5989 | | |80515 80515| NL80_3 +051784 |V1784 Aql |190804.4+041612 |EW | 17.09 | 17.51 | 17.46 |Ic|50674.6353 | | 0.5048 | | |80515 | NL80_3 +051785 |V1785 Aql |190805.7+041206 |LB | 12.98 | 13.24 | |Ic| | | | | |80515 80515| NL80_3 +051786 |V1786 Aql |190806.9+040853 |BY: | 15.85 | 16.07 | |Ic| | | 6.236 | | |80515 80515| NL80_3 +051787 |V1787 Aql |190807.7+041928 |EA | 16.37 | 16.53 | |Ic| | | 0.75 : | | |80515 USNO | NL80_3 +051788 |V1788 Aql |190810.1+041326 |EB | 15.96 | 16.22 | |Ic|50664.5824 | | 4.1549 | | |80515 | NL80_3 +051789 |V1789 Aql |190810.8+041020 |EW | 17.63 | 17.95 | 17.95 |Ic|50649.7239 | | 0.4332 | | |80515 | NL80_3 +051790 |V1790 Aql |190811.3+041634 |EB | 14.92 | 15.18 | 15.11 |Ic|50647.5419 | | 0.8095 | | |80515 USNO | NL80_3 +051791 |V1791 Aql |190812.3+040819 |BY: | 15.4 | 15.8 | |Ic| | | 39.0 | | |80515 80515| NL80_3 +051792 |V1792 Aql |190813.1+042154 |M: | 14.9 | 16.2 | |Ic|50715. :| | | | |80515 80515| NL80_3 +051793 |V1793 Aql |190813.4-061247 |SR: | 11.8 | 12.3 | |* | | | | | |80062 2MASS| NL80_3 +051794 |V1794 Aql |190814.4+041452 |EW | 17.53 | 18.10 | 18.02 |Ic|50647.774 | | 0.3556 | | |80515 | NL80_3 +051795 |V1795 Aql |190931.2+114855 |DCEP | 13.5 | 14.6 | |V |53830.8 | | 20.839 |25 | |80001 GSC | NL80_3 +051796 |V1796 Aql |191014.1+050138 |EW | 10.87 | 11.28 | 11.23 |V |51320.786 | | 0.345897 | | |80042 GSC | NL80_3 +051797 |V1797 Aql |191232.7+105635 |LB: | 11.55 | 11.96 | |* | | | | | |80062 2MASS| NL80_3 +051798 |V1798 Aql |191248.7+145722 |EW | 11.55 | 11.94 | 11.94 |V |54629.7659 | | 0.340113 | | |80001 GSC | NL80_3 +051799 |V1799 Aql |191350.5+110944 |EW | 11.46 | 12.20 | 12.10 |V |52403.733 | | 0.3348417 | | |80042 GSC | NL80_3 +051800 |V1800 Aql |191524.8+103022 |EA | 10.34 | 10.92 | 10.8 : |V |51475.666 | | 6.8855 |05 |A2 |80042 DM | NL80_3 +051801 |V1801 Aql *|191822.7-024211 |* | 10.65 | 10.82 | |V | | | 22.5 : | |F3 |80625 DM | NL80_3 +051802 |V1802 Aql |191838.0+124325 |SR | 12.9 | 13.6 | |* | | | 160. : | | |80001 2MASS| NL80_3 +051803 |V1803 Aql |192007.0+124743 |DCEP | 10.15 | 10.60 | |V |52733.4 | | 8.627245 | | |80002 BD | NL80_3 +051804 |V1804 Aql |192036.2+124737 |DCEP | 11.9 | 12.5 | |* |51450.1 | | 18.3 |40 | |80081 GSC | NL80_3 +051805 |V1805 Aql |192219.3+121548 |EA | 11.67 | 12.3 : | 11.93 |V |52552.553 | | 5.00337 |04 | |80013 GSC | NL80_3 +051806 |V1806 Aql |192230.8+115734 |BE | 10.6 | 10.9 | |V | | | | |Be |80077 80077| NL80_3 +051807 |V1807 Aql |192333.5+043725 |EA | 11.93 | 12.6 | 12.5 |V |52853.755 | | 2.1085 |07 | |80042 GSC | NL80_3 +051808 |V1808 Aql |192349.1+081826 |EW | 9.14 | 9.49 | 9.45 |* |52812.702 | | 0.423796 | |F5 |80042 DM | NL80_3 +051809 |V1809 Aql |192944.9+032554 |SR: | 12.4 | 13.0 | |V | | | 36.175 : | | |80001 GSC | NL80_3 +051810 |V1810 Aql |193019.6+132919 |SR | 11.2 | 11.7 | |* | | | 64.0 | | |80001 USNO | NL80_3 +051811 |V1811 Aql *|194042.5+014106 |EA | 10.42 | 10.67 | 10.67 |V |53153.850 | | 3.40300 |07 | |80011 GSC | NL80_3 +051812 |V1812 Aql |195110.6-010126 |EW | 10.16 | 10.33 | 10.30 |V |52437.759 | | 0.523673 | |A3 |80042 DM | NL80_3 +051813 |V1813 Aql |195330.1+020125 |EW | 13.15 | 13.75 | 13.65 |V |51420.616 | | 0.290570 | | |80042 GSC | NL80_3 +051814 |V1814 Aql |195455.1+065456 |EA | 10.42 | 11.30 | 10.62 |V |52524.606 | | 0.986783 |15 | |80042 DM | NL80_3 +051815 |V1815 Aql *|195629.2-010233 |* | 13.4 |( 0.02 )| |V | | | 1.441769 | |DA6 |80534 GSC | NL80_3 +051816 |V1816 Aql |195742.9-014540 |SRB: | 12.0 | 12.4 | |* | | | 75. | | |80001 GSC | NL80_3 +051817 |V1817 Aql |200111.9+075854 |EA | 9.64 | 10.00 | 9.72 |V |52383.0 | | 0.781565 |17 |A2 |80001 DM | NL80_3 +051818 |V1818 Aql |200134.9+045925 |SR | 11.95 | 12.39 | |* | | | 62.2 | | |80001 USNO | NL80_3 +051819 |V1819 Aql |200442.0-011446 |EW | 11.6 | 12.10 | 12.05 |V |52564.5864 | | 0.551128 | | |80002 GSC | NL80_3 +051820 |V1820 Aql *|200455.8+012157 |EA | 12.2 | 12.7 | 12.35 |V |52206.6 | | 0.678825 |10 | |80001 GSC | NL80_3 +051821 |V1821 Aql |200636.6+092953 |RRC | 11.66 | 12.1 | |V |54233.8681 | | 0.329661 |40 | |80001 GSC | NL80_3 +051822 |V1822 Aql |200711.6+085441 |LB | 12.0 | 12.8 | |* | | | | | |80062 GSC | NL80_3 +051823 |V1823 Aql |200830.6-024558 |SR | 13.4 | 14.5 | |V | | | 50.0 | | |80001 GSC | NL80_3 +051824 |V1824 Aql |201001.8+023814 |SRB | 13.2 | 14.5 | |V | | | 57.3 | | |80001 USNO | NL80_3 +051825 |V1825 Aql |201309.8+102039 |EA | 8.78 | 9.34 | 9.30 |V |52879.640 | | 1.705523 |12 |F8 |80042 DM | NL80_3 +051826 |V1826 Aql |201342.6+135625 |EA | 10.85 | 11.25 | 11.24 : |V |52843.679 | | 1.746548 |12 |A5 |80011 GSC | NL80_3 +051827 |V1827 Aql |201947.7+043402 |EA | 14.25 | 14.7 | 14.35 : |V |54326.04 | | 0.963627 |18 | |80547 USNO | NL80_3 +051828 |V1828 Aql |202000.5+043757 |EA | 13.13 | 13.93 | 13.26 |V |51288.9198 | | 0.1103741 |11 | |80547 USNO | NL80_3 +051829 |V1829 Aql |202737.8-013959 |RRAB | 11.50 | 12.10 | |V |52812.7353 | | 0.724820 |15 | |80001 GSC | NL80_3 +059001 |alf Aql |195047.0+085206 |DSCT | 0.77 |( 0.004 * )| |V | | | 0.06342 | |A7IV/V |79163 DM | +059007 |eta Aql *|195228.4+010020 |DCEP | 3.48 | 4.39 | |V |36084.656 | | 7.176641 |32 |F6Ib-G4Ib |02392 BD | +059018 |sig Aql *|193911.6+052352 |EB/DM | 5.14 |( 0.2 )|( 0.1 )|V |22486.797 | | 1.95026 | |B3V+B3V |02005 BD | +060001 |R Ara *|163944.7-565940 |EA | 6.17 | 7.32 | 6.2 |V |47386.1200 | | 4.42522 |14 *|B9Vp |N0001 CPD | +060002 |S Ara *|175910.7-492601 |RRAB | 9.92 | 11.24 | |V |52764.738 | | 0.4518587 |12 |A5-F3 |00001 CoD | +060003 |T Ara *|170233.1-550416 |SRB | 8.9 | 9.8 | |V | | | 170. | |C(R-Nb) |N0002 CPD | +060004 |U Ara |175337.6-514114 |M | 7.7 | 14.1 | |V |51981. | | 224.6 |44 |M3IIep |00001 00002| +060005 |V Ara |175456.2-481830 |M | 10.0 |< 14.3 | |V |53249. | | 384.7 | |M6e |N0002 CoD | +060006 |W Ara |175700.7-494804 |SRB | 8.8 | 10.0 | |V | | | 122. | |M5III |N0002 CoD | +060007 |X Ara |163624.7-552453 |M | 8.4 | 13.5 | |V |52455. | | 177.7 |40 |M5e-M7eII-III |N0002 00002| +060008 |Y Ara |163905.5-594823 |M | 8.6 |< 14.0 | |V |52481. | | 240.2 | |M2e-M4e |N0002 06286| +060009 |Z Ara |165413.3-561554 |M | 9.2 |< 14.0 | |V |52982. | | 293.3 |60 |M3e-M5e |N0002 GSC | +060010 |RR Ara |172752.0-495415 |M | 11.5 | 15.8 | |B |52542. | | 204. | |M3e |00001 N0003| +060011 |RS Ara |165900.1-642624 |M | 10.1 |< 12.2 | |V |52928. | | 204.4 | |Me |00001 GSC | +060012 |RT Ara |172618.3-551356 |RVA | 10.2 | 11.3 | |V |51981.8 | | 76.69 | |F8Ia |00001 07336| +060013 |RU Ara |172906.2-605357 |M | 8.6 | 13.0 | |V |52868. | | 256.8 | |M5e |00001 CPD | +060014 |RV Ara |173259.4-641654 |M | 9.4 |< 15.0 | |V |52593. | | 290.95 | |Me |N0002 08613| +060015 |RW Ara *|173449.2-570851 |EA | 8.85 | 11.45 | 8.91 |V |52740.796 | | 4.3674535 |13 |A1IV |00001 CPD | +060016 |RX Ara |165232.3-610443 |LB: | 9.4 | 10.0 | |V | | | | |M5 |00016 CoD | +060017 |RY Ara |172104.6-510714 |RVA: | 8.71 | 11.51 | |V | | | 145. : | |G5-K0 |N0004 CPD | +060018 |RZ Ara |174823.1-523903 |M | 9.4 |< 14.0 | |V |52851. | | 295.7 | |M1e-M3e |N0002 2MASS| +060019 |SS Ara |175819.1-500940 |CST: | 9.28 | | |V | | | | |K2/4 |00001 CoD | +060020 |ST Ara |165946.4-560825 |M | 10.6 | 14.3 | |V |52532. | | 258.6 | |Me |N0002 2MASS| +060021 |SU Ara |170237.5-542559 | | 12. |< 15. | |p | | | | | |00029 USNO | +060022 |SV Ara |170638.9-552935 |M | 11.5 |< 14.4 | |V |52418. | | 134.25 | | |N0002 GSC | +060023 |SW Ara |171955.4-582321 |EA | 12.5 | 15.9 | |p |53124.984 | | 6.23796 |13 | |00001 06286| +060024 |SX Ara |181007.8-542247 |M | 11.2 |< 14.4 | |V |52826. | | 388.5 | |Me |N0002 06286| +060025 |SY Ara *|163521.1-544518 |EA | 10.50 | 12.11 | 10.60 |V |53230.692 | | 1.8566643 |13 *|A |00001 00430| +060026 |SZ Ara *|171107.4-615715 |SRA | 9.0 | 11.5 | |V |53097. | | 221.8 | |Ce(R-Nb) |00001 06286| +060027 |TT Ara |180355.7-471400 |M | 9.4 | 14.2 | |V |52554. | | 178.6 | |M6e |N0002 GSC | +060028 |TU Ara |171951.5-502304 |M | 10.4 |< 13.7 | |V |53037. | | 353. | |Me |00001 GSC | +060029 |TV Ara *|164938.4-533852 |M | 12. |< 15. | |p |52277. | | 366. | |M2e |N0002 GSC | +060030 |TW Ara |173121.8-660509 |RRAB | 15.5 : | 16.62 | |V |49205.1602 | | 0.5330 |18 :| |N0006 USNO | +060031 |TX Ara *|173633.6-521010 |M: | 14.0 | 16.5 | |p | | | 255. | | |01954 2MASS| +060032 |TY Ara |173817.3-523346 |M | 11.5 |< 14.0 | |V |52419. | | 169.4 | |Me |N0002 2MASS| +060033 |TZ Ara |174320.7-535850 |M | 12.0 |< 15.0 | |V |52891. | | 275.7 | | |N0002 GSC | +060034 |UU Ara |174743.4-535036 |M | 11.4 | 15.0 | |V |52274. | | 190.1 | | |N0002 2MASS| +060035 |UV Ara |180946.3-522451 |M | 11.9 |< 15.0 | |V |52589. | | 244.1 | | |N0002 UCAC2| +060036 |UW Ara *|174734.5-484451 |EA | 9.48 | 10.40 | 9.53 |V |52740.812 | | 3.297015 |11 *|A0V |00001 CoD | +060037 |UX Ara |165522.5-515535 |M | 9.9 |< 12.8 | |V | | | 250. : | | |00001 2MASS| +060038 |UY Ara |172929.0-595402 |RVA | 10.5 | 11.4 | |V |52080.6 | | 57.95 | |G |00001 06286| +060039 |UZ Ara |163653.2-561823 |EA | 11.4 | 12.4 | |p |51955.840 | | 1.5999079 |11 *| |00001 00427| +060040 |VV Ara |163716.2-531051 |EA | 13.2 | 13.8 | |p |25598.723 | | 1.00937 |22 *| |00427 00427| +060041 |VW Ara |163559.4-563711 |EA | 13.4 | 15.1 | |p |25776.869 | | 3.71955 |20 *| |00430 00430| +060042 |VX Ara |163658.5-593414 |SRB: | 11.3 | 12.7 | |V | | | 149. | | |N0002 GSC | +060043 |VY Ara |163657.3-584646 |M: | 15.0 |< 16.5 | |p |52700. | | 247. | | |00424 2MASS| +060044 |VZ Ara |163729.9-582351 |RRAB | 13.2 | 14.8 | |p |25678.320 | | 0.62563 |13 | |00433 00433| +060045 |WW Ara |163756.1-581135 |M | 12.2 |< 15.0 | |V |52528. | | 221.0 | | |N0002 06286| +060046 |WX Ara |163754.3-563334 |M: | 15.0 |< 16.5 | |p |25412. | | 252. | | |00424 06286| +060047 |WY Ara |163857.6-593620 |M | 12.5 |< 14.3 | |V |52889. | | | | |00001 06286| +060048 |WZ Ara |163909.5-575336 |EA | 11.55 | 12.02 | |V |26067.70 | | 14.1423 |11 *| |00429 GSC | +060049 |XX Ara *|163926.7-593149 |EA | 13.6 | 15.2 | 14.1 |p |25744.950 | | 9.8442 | | |00430 00430| +060050 |XY Ara |163913.3-575610 |SR | 15.0 | 16.5 | |p |24273. | | 219.5 | | |00424 GSC | +060051 |XZ Ara |164006.3-585139 |M: | 15.0 |< 16.5 | |p |24680. | | 224. | | |00424 2MASS| +060052 |YY Ara |164120.4-595231 |SR | 11.8 | 13.0 | |p |52221. | | 92. | |K0-M |N0002 06286| +060053 |YZ Ara |164244.5-600657 |M | 11.5 |< 14.0 | |V |52804. | | 274. | |Me |N0002 06286| +060054 |ZZ Ara |163629.7-512437 |EA | 12.7 | 13.9 | |p |25771.410 | | 1.79942 |23 *| |00433 00433| +060055 |AA Ara *|164028.6-563223 |EA | 13.0 | 14.9 | 13.3 |p |25822.590 | | 8.5207 |20 : | |00433 00433| +060056 |AB Ara |164209.1-571845 |CWB: | 12.7 | 13.5 | |V |51942.5 | | 5.95705 |20 | |N0002 00433| +060057 |AC Ara |164321.4-562718 |EA | 13.1 | 14.8 | |p |25623.330 | | 16.4370 |23 : | |00433 00433| +060058 |AD Ara *|164551.1-554744 |CWA | 13.61 | 14.48 | |V |44023.34 | | 15.9556 |50 | |00046 00433| +060059 |AE Ara |174104.9-470327 |ZAND | 11.5 | 13.8 | |p | | | | |M4+pec(e) |00255 GSC | +060060 |AF Ara *|163716.8-554357 |EA | 13.6 | 14.7 | 13.8 |p |25765.428 | | 0.844688 |20 : | |00430 00430| +060061 |AG Ara |163753.9-543431 |M | 13.2 | 16.0 | |p |26014. | | 193. | | |01962 2MASS| +060062 |AH Ara |164157.9-535339 |EA | 13.0 | 14.5 | |p |53191.746 | | 1.00503 |15 *| |00001 00430| +060063 |AI Ara |171545.7-455825 |M | 14.4 |< 16.5 | |p |53261. | | 310.4 | | |00014 2MASS| +060064 |AK Ara |172011.6-472216 |M | 11.2 |< 14.2 | |V |53136. | | 293.3 | |M5:e |00014 GSC | +060065 |AL Ara |172007.2-454304 |M: | 14.8 |< 16.5 | |p |26505. | | 178.7 | | |00014 2MASS| +060066 |AM Ara |172456.5-454904 |M | 13.5 |< 16.5 | |p |26175. | | 262.3 | | |00014 2MASS| +060067 |AN Ara |172634.3-471800 |SRA | 12.7 | 14.0 | |p |25780. | | 153. | |M1e |00014 GSC | +060068 |AO Ara |172709.0-463805 |M | 14.0 |< 16.5 | |p |52467. | | 265. | | |00014 2MASS| +060069 |AP Ara |172827.1-464016 |M: | 15.2 |< 16.7 | |p |52058. | | 184.1 | | |00014 2MASS| +060070 |AQ Ara |172833.4-465806 |M | 11.1 | 14.5 | |V |52360. | | 235.3 |30 | |N0002 2MASS| +060071 |AR Ara |172942.4-462929 |SRA | 13.7 | 16.0 | |p |26560. | | 190. | | |00014 2MASS| +060072 |AS Ara |173023.4-472311 |SR | 14.5 | 16.5 | |p |52753. | | 257. : | | |00001 2MASS| +060073 |AT Ara |173033.8-460559 |UGSS | 11.5 | 15.32 | |V | | |( 61.8 ) | |pec(UG) |04646 72085| +060074 |AU Ara |173124.3-454451 |SRA | 14.5 | 16.3 | |p |24330. | | 248. | | |00014 2MASS| +060075 |AV Ara |173148.4-472306 |M | 12.5 |< 14.8 | |V |52698. | | 203.7 | | |00014 2MASS| +060076 |AW Ara *|173206.5-460138 |M | 14.2 |< 16.5 | |p |23980. | | 180.5 | | |00014 GSC | +060077 |AX Ara |173300.3-461406 |M | 13.7 |< 16.5 | |p |53176. | | 196.6 | | |00014 GSC | +060078 |AY Ara |173420.5-464413 |M | 11.7 | 14.4 | |V |52705. | | 358. | | |00014 GSC | +060079 |AZ Ara |173445.2-470639 |M | 13.4 |< 16.5 | |p |53037. | | 460. | | |00014 2MASS| +060080 |BB Ara |173543.5-462021 |M: | 15.0 |< 16.5 | |p |24405. | | 220.5 | | |00014 2MASS| +060081 |BC Ara |173544.7-463451 |M: | 15.1 |< 16.5 | |p |26460. | | 151.2 | | |00014 2MASS| +060082 |BD Ara |173555.2-470100 |M | 12.7 |< 15.0 | |V |52922. | | 269. | | |00001 2MASS| +060083 |BE Ara |173737.0-471227 |M: | 14.6 |< 16.5 | |p |53142. | | 224. | | |00014 2MASS| +060084 |BF Ara *|173821.3-471042 |UGSU | 13.6 |< 16.0 | |p | | |( 84.3 ) | | |N0007 N0007| +060085 |BG Ara |173946.5-460520 |M | 14.3 |< 16.5 | |p |52717. | | 305. | | |N0002 2MASS| +060086 |BH Ara |174008.4-474241 |M: | 14.5 |< 16.5 | |p |52860. | | 275.3 | | |00014 2MASS| +060087 |BI Ara |174022.8-455611 |M | 13.6 | 16.4 | |p |52494. | | 158.2 | | |N0002 2MASS| +060088 |BK Ara |174149.7-472746 |M | 11.6 | 14.6 | |V |52192. | | 206.1 |45 | |00001 2MASS| +060089 |BL Ara |174431.6-455457 |M | 13.7 |< 16.5 | |p |52514. | | 217.7 | | |N0002 2MASS| +060090 |BM Ara |174648.0-462941 |M | 11.7 |< 14.1 | |V |52082. | | 231.2 | | |00001 2MASS| +060091 |BN Ara |174742.4-471850 |M | 11.3 |< 14.1 | |V |52547. | | 339.7 | |Me |00014 2MASS| +060092 |BO Ara |174821.5-472019 |M | 11.4 |< 14.0 | |V |52509. | | 196. | | |00014 GSC | +060093 |BP Ara |174836.0-473917 |M | 11.4 | 14.0 | |V |52270. | | 206.3 | | |N0002 GSC | +060094 |BQ Ara |174844.5-461441 |SRB | 11.9 | 13.8 | |p | | | 77.5 | | |N0002 GSC | +060095 |BR Ara |175148.3-454624 |M | 13.6 |< 16.5 | |p |52100. | | 260. | | |00014 GSC | +060096 |BS Ara |175442.6-460808 |M: | 15.0 |< 16.5 | |p |52846. | | 256. : | | |00001 2MASS| +060097 |BT Ara |175442.5-455616 |M | 10.2 |< 14.4 | |V |52400. | | 370. | | |00014 2MASS| +060098 |BU Ara |175635.6-460316 |M | 14.4 |< 16.5 | |p |26065. | | 217.2 | |Me |00014 2MASS| +060099 |BV Ara |175813.2-465649 |SRB | 14.7 | 16.5 | |p | | | 198. | | |00014 GSC | +060100 |BW Ara |164905.2-591150 |RRAB | 14.9 | 16.3 | |p |26868.491 | | 0.615194 | | |01972 06286| +060101 |BX Ara |164932.9-591811 |M: | 14.6 |< 16.5 | |p |27635. | | 213. | | |01972 06286| +060102 |BY Ara |164956.3-585313 |RRAB | 14.7 | 16.3 | |p |26865.203 | | 0.626463 | | |01972 06286| +060103 |BZ Ara |165014.7-584512 |RR: | 14.5 | 15.1 | |p |27546.445 | | 0.2 : | | |01972 06286| +060104 |CC Ara *|165023.1-584655 |M | 12.1 |< 15.0 | |V |52548. | | 312. | | |00001 06286| +060105 |CD Ara |165023.4-585443 |M | 14.0 | 17.4 | |p |26920. | | 244. : | | |01972 06286| +060106 |CE Ara |165245.4-585757 |M | 10.6 |< 13.4 | |V |52950. | | 270.0 | | |N0002 06286| +060107 |CF Ara |165353.5-590946 |RRAB | 14.7 | 16.3 | |p |26899.440 | | 0.651275 | | |01972 06286| +060108 |CG Ara |165635.1-590441 |M | 14.5 |< 16.6 | |p |52743. | | 270. | | |01972 2MASS| +060109 |CH Ara |170648.1-590322 |M | 9.7 |< 13.4 | |V |52821. | | 247.5 | |Me |00001 2MASS| +060110 |CI Ara |170800.0-555001 |M | 12.0 |< 18. | |p |52645. | | 273.6 | |Me |N0002 2MASS| +060111 |CK Ara |170903.8-614851 |SRB | 10.5 | 11.7 | |V | | | 334. | | |N0002 GSC | +060112 |CL Ara *|170959.6-581012 |EW: | 12.9 | 13.7 | 13.6 |V |52129.544 | | 0.414584 | | |00001 06286| +060113 |CM Ara |171139.7-625124 |SR | 12.6 |< 14.0 | |V |52463. | | 243.3 | | |N0002 06286| +060114 |CN Ara |171116.3-602044 |M | 13.5 |< 16.5 | |p |52760. | | 282. | |Me |00251 06286| +060115 |CO Ara |171107.5-582248 |SRB | 12.4 | 14.3 | |V | | | 192. | |Me |N0002 06286| +060116 |CP Ara |171238.2-625114 |M | 13.1 |< 15.4 | |V |52437. | | 205. : | | |00251 06286| +060117 |CQ Ara |171208.4-583424 |M | 14.0 |< 17.5 | |p |53075. | | 181.3 | | |00251 06286| +060118 |CR Ara |171238.3-614353 |RRAB | 13.0 | 14.4 | |p |26864.460 | | 0.50096 | | |00251 USNO | +060119 |CS Ara |171235.2-602908 |RRAB | 13.0 | 14.3 | |p |26869.370 | | 0.49340 | | |00251 06286| +060120 |CT Ara *|171234.5-572412 |M: | 15.2 | 17.7 | |p |26570. | | 232. | | |00251 06286| +060121 |CU Ara |171259.1-602005 |E | 14.4 | 16.0 | |p |26865.360 | | 1.38583 | | |00251 06286| +060122 |CV Ara |171312.8-611139 |RRAB | 12.0 | 13.2 | |p |27277.250 | | 0.55658 | | |00251 USNO | +060123 |CW Ara |171425.4-621829 |M | 10.1 | 15.0 | |V |52352. | | 215.9 | |Me |N0002 GSC | +060124 |CX Ara |171433.2-602417 |SR | 14.2 | 15.8 | |p |36802. | | 140. : | | |00251 06286| +060125 |CY Ara *|171447.7-554518 |EA | 12.3 | 13.6 | 12.6 |V |53140.821 | | 3.01482 | | |00001 06286| +060126 |CZ Ara |171557.0-630312 |RRAB | 12.4 | 13.4 | |p |27267.330 | | 0.720175 | | |00251 GSC | +060127 |DD Ara |171610.9-614801 |M | 10.3 |< 14.2 | |V |52562. | | 297.0 | | |N0002 GSC | +060128 |DE Ara |171533.4-570515 |M | 13.6 |< 16.5 | |p |26150. | | 219. | | |00251 06286| +060129 |DF Ara |171552.9-570125 |SRB | 11.2 | 12.0 | |V | | | 73. | | |N0002 06286| +060130 |DG Ara |171618.3-595528 |RRAB | 14.0 | 15.2 | |p |26892.520 | | 0.77533 | | |00251 06286| +060131 |DH Ara |171626.8-550604 |RRAB | 13.4 | 14.9 | |p |52068.651 | | 0.476685 | | |N0002 06286| +060132 |DI Ara |171745.6-610049 |M | 14.5 |< 17. | |p |26090. | | 291. | | |00251 06286| +060133 |DK Ara |171746.1-555838 |M | 11.3 |< 14.0 | |V |52634. | | 274. | |Me |N0002 06286| +060134 |DL Ara |171918.3-591331 |RRAB | 12.2 | 12.9 | |V |52195.485 | | 0.453495 |20 | |N0002 06286| +060135 |DM Ara |171917.4-572132 |M | 13.3 |< 16.5 | |p |26220. | | 352.5 | |Me |00251 06286| +060136 |DN Ara |172026.5-624621 |SR | 12.7 | 13.7 | |V |52085. | | 78.4 | | |N0002 GSC | +060137 |DO Ara |172003.8-584458 |RRAB | 14.4 | 15.3 | |p |26868.580 | | 0.63201 | | |00251 06286| +060138 |DP Ara |172119.6-585051 |SRB | 9.3 | 9.9 | |V | | | 49.7 | |M3/4(III) |N0002 CPD | +060139 |DQ Ara |172117.5-534343 |M | 11.1 |< 14.9 | |V |52977. | | 300. | |Me |N0002 06286| +060140 |DR Ara |172240.4-631309 |SRB | 10.8 | 12.7 | |V | | | 196. | |Me |00001 06286| +060141 |DS Ara |172145.9-565311 |M | 14.0 |< 16.5 | |p |52927. | | 322. | | |00251 06286| +060142 |DT Ara |172152.6-572008 |M | 11.8 | 14.5 | |V |52598. | | 247.3 | | |N0002 06286| +060143 |DU Ara *|172312.6-635348 |CW | 11.73 | 12.46 | |V |52105.572 | | 1.6406576 |33 | |00001 06286| +060144 |DV Ara |172245.4-612628 |M | 11.9 |< 14.8 | |V |52922. | | 362. | |Me |00251 2MASS| +060145 |DW Ara |172216.5-571818 |M | 11.7 |< 14.3 | |V |52522. | | 265.7 | |Me |00251 06286| +060146 |DX Ara |172242.5-580415 |M | 13.3 |< 16.5 | |p |52313. | | 227.4 | |Me |N0002 06286| +060147 |DY Ara |172223.3-543855 |SR | 11.2 | 14.0 | |V |52416. | | 164. | | |N0002 GSC | +060148 |DZ Ara *|172311.2-585214 |M | 12.5 |< 16.5 | |p |51968. | | 161.8 | |Me |00001 06286| +060149 |EE Ara |172320.4-562220 |M | 11.0 |< 13.8 | |V |52406. | | 308. | | |00251 06286| +060150 |EF Ara |172350.8-574916 |RRAB | 14.9 | 16.2 | |p |27226.600 | | 0.43983 | | |00251 06286| +060151 |EG Ara |172435.4-614404 |SR: | 14.1 | 15.1 | |p | | | | | |00251 06286| +060152 |EH Ara *|172504.9-632636 |M: | 12.6 |< 14.2 | |p |52606. | | 218.5 | | |N0002 06286| +060153 |EI Ara |172428.9-594403 |RRAB | 13.1 | 14.3 | |p |26240.290 | | 0.50821 | | |00251 06286| +060154 |EK Ara *|172449.8-594116 |M | 12.3 |< 14.6 | |V |52564. | | 289. | | |N0002 06286| +060155 |EL Ara |172518.7-594353 |M | 11.4 |< 13.9 | |V |52559. | | 293. | | |00251 06286| +060156 |EM Ara |172457.0-570031 |M | 11.4 |< 14.1 | |V |52683. | | 202.2 | |Me |N0002 06286| +060157 |EN Ara |172504.2-550611 |RRAB | 14.0 | 15.4 | |p |26869.230 | | 0.433056 | | |00251 06286| +060158 |EO Ara |172603.5-601454 |M | 14.0 |< 16.5 | |p |52406. | | 226.4 | | |00251 06286| +060159 |EP Ara |172704.2-610438 |M | 13.5 |< 16.5 | |p |52733. | | 251. | | |00001 06286| +060160 |EQ Ara |172632.6-551719 |M | 12.3 |< 15.6 | |V |52898. | | 221.5 | |Me |00251 06286| +060161 |ER Ara *|172752.0-620354 |E | 13.4 | 14.5 | 14.2 |p |26864.380 | | 0.63260 | | |00251 GSC | +060162 |ES Ara |172727.6-555904 |M | 12.0 |< 15.0 | |V |53133. | | 289. | |Me |00001 06286| +060163 |ET Ara |172819.8-573749 |RRAB | 13.9 | 15.0 | |p |25473.320 | | 0.54086 | | |00251 06286| +060164 |EU Ara |172826.8-540347 |SRB | 11.1 | 12.0 | |V | | | 235. | | |00001 06286| +060165 |EV Ara |173004.7-632758 |M | 12.4 |< 14.7 | |V |52713. | | 260. | |Me |00001 06286| +060166 |EW Ara |172900.7-540908 |M | 11.3 |< 15.0 | |V |52766. | | 247.2 | |Me |N0002 06286| +060167 |EX Ara |172935.2-570501 |E | 14.4 | 15.8 | |p |26865.180 | | 3.44947 | | |00251 06286| +060168 |EY Ara |172929.9-562020 |RRAB | 13.7 | 15.2 | |p |26563.350 | | 0.68710 | | |00251 06286| +060169 |EZ Ara |172931.8-554819 |RRC | 12.9 | 13.7 | |V |51940.84 | | 0.327288 |50 | |N0002 06286| +060170 |FF Ara |172959.7-592918 |EB | 13.3 | 14.0 | |p |52546.554 | | 0.69901 | | |00251 06286| +060171 |FG Ara |173043.3-631003 |M | 10.6 |< 14.5 | |V |52908. | | 376. | | |00251 06286| +060172 |FH Ara |172936.4-535744 |M | 10.2 |< 14.5 | |V |53269. | | 434. | |Me |N0002 06286| +060173 |FI Ara |173143.6-605953 |M | 11.3 |< 14.6 | |V |53112. | | 267.5 | |Me |00251 06286| +060174 |FK Ara |173138.6-603024 |M: | 14.8 |< 16.5 | |p |52910. | | 286. | | |00251 06286| +060175 |FL Ara |173141.1-592741 |RRAB | 14.0 | 15.2 | |p |27221.500 | | 0.44928 | | |00251 06286| +060176 |FM Ara |173133.7-583722 |RRAB | 13.9 | 15.3 | |p |26865.240 | | 0.58404 | | |00251 06286| +060177 |FN Ara |173119.1-561317 |M: | 14.8 |< 16.5 | |p |52724. | | 181. | | |00251 06286| +060178 |FO Ara |173112.4-550506 |RRAB | 12.7 | 13.7 | |V |52725.838 | | 0.600222 |16 | |00001 06286| +060179 |FP Ara |173134.9-572436 |RRAB: | 14.9 | 16.0 | |p |26188.310 | | 0.48840 | | |00251 06286| +060180 |FQ Ara | | | | | | | | | | | | |=RV Ara +060181 |FR Ara *|173229.3-591101 |EA | 11.8 | 12.6 | 12.0 |V |52071.672 | | 1.66864 |16 | |00001 GSC | +060182 |FS Ara *|173206.1-553630 |RRAB | 14.8 | 15.6 | |p |26869.550 | | 0.57995 | | |00251 06286| +060183 |FT Ara *|173256.6-564523 |RRAB | 13.5 | 14.5 | |V |53144.852 | | 0.78432 |15 | |00001 06286| +060184 |FU Ara *|173332.3-580950 |EB: | 10.30 | 10.85 | 10.60 |V |51940.94 | | 0.864510 | | |N0002 06286| +060185 |FV Ara |173510.1-630250 |UG | 12. |< 18. | |p | | | | | |00251 72085| +060186 |FW Ara |173429.8-582633 |M: | 14.5 |< 16.5 | |p |52143. | | 426. | | |00251 06286| +060187 |FX Ara |173419.4-570941 |SRD | 12.3 | 13.8 | |V | | | 164. | |K0 |N0002 06286| +060188 |FY Ara |173522.6-565717 |M | 11.5 |< 14.0 | |V |52324. | | 200. | | |N0002 06286| +060189 |FZ Ara |173552.0-580716 |SRB | 13.1 | 15.0 | |V | | | 168. | | |00001 06286| +060190 |GG Ara |173625.5-592419 |M | 10.7 |< 15.0 | |V |52829. | | 236.8 | | |N0002 06286| +060191 |GH Ara |173612.1-565615 |M | 10.5 |< 14.6 | |V |53154. | | 329. | | |N0002 06286| +060192 |GI Ara *|173652.3-602027 |RRAB | 14.8 | 16.13 | |V |49128.6775 | | 0.48023 |13 : | |N0006 06286| +060193 |GK Ara *|173634.2-594327 |SRA: | 12.9 |< 14.6 | |V |52105. | | 237. | | |00251 2MASS| +060194 |GL Ara |173732.8-632720 |RRAB | 13.4 | 14.5 | |p |26188.240 | | 0.48316 | | |00251 06286| +060195 |GM Ara *|173717.6-611933 |EB | 12.6 | 13.7 | 13.1 |V |51950.05 | | 0.562295 | | |N0002 06286| +060196 |GN Ara |173714.7-582104 |RRAB | 12.6 | 13.6 | |V |52725.838 | | 0.592072 |20 | |00251 GSC | +060197 |GO Ara |173651.4-541324 |M | 12.8 |< 15.0 | |V |52474. | | 202.0 | | |N0002 06286| +060198 |GP Ara |173746.1-562704 |RRAB | 13.5 | 14.9 | |p |52446.650 | | 0.54526 | | |00251 06286| +060199 |GQ Ara |173851.0-571110 |M: | 14.5 |< 16.5 | |p |52089. | | 286. | | |00251 06286| +060200 |GR Ara |173917.4-594643 |M | 13.1 |< 16.5 | |p |52648. | | 251.0 |40 | |N0002 06286| +060201 |GS Ara |173936.6-550502 |LB | 14.2 | 15.5 | |p | | | | | |00251 06286| +060202 |GT Ara |174025.9-595733 |M | 11.1 |< 14.0 | |V |52301. | | 126.2 | | |N0002 06286| +060203 |GU Ara |174102.6-632553 |M | 11.7 |< 15.0 | |V |52440. | | 183.2 | | |00251 GSC | +060204 |GV Ara |174111.3-632632 |RRAB | 13.5 | 14.5 | |p |27254.400 | | 0.60261 | | |00251 GSC | +060205 |GW Ara |174037.8-600223 |SRB | 11.7 | 13.2 | |V | | | 392. | | |N0002 06286| +060206 |GX Ara |174012.6-554016 |RRAB | 14.5 | 15.8 | |p |26869.490 | | 0.56956 | | |00251 06286| +060207 |GY Ara |174005.4-540502 |SRB | 12.0 | 13.2 | |V | | | 138. | | |N0002 06286| +060208 |GZ Ara |174127.6-625753 |M | 12.8 |< 16.5 | |p |52900. | | 262.5 | | |N0002 06286| +060209 |HH Ara |174125.1-620420 |M | 11.4 |< 14.5 | |V |52164. | | 290. | | |00001 06286| +060210 |HI Ara |174115.5-540602 |E | 14.3 | 16.5 | |p |26505.530 | | 1.72402 | | |00251 06286| +060211 |HK Ara |174419.9-561102 |SR: | 12.6 | 14.0 | |V | | | 116. : | | |N0002 06286| +060212 |HL Ara |174549.3-565948 |RRAB | 14.4 | 15.5 | |p |52129.544 | | 0.58996 | | |00251 06286| +060213 |HM Ara |174542.1-540149 |M | 12.1 | 14.7 | |V |52189. | | 171.3 |60 | |N0002 06286| +060214 |HN Ara |174643.8-564026 |SRA | 11.9 | 12.5 | |V |52150. | | 88.4 |30 | |N0002 05286| +060215 |HO Ara |175239.1-564217 |RRAB | 15.2 | 16.5 | |V |49205.5043 | | 0.52023 |11 : | |00251 06286| +060216 |HP Ara |175230.6-550758 |RRAB | 15.31 | 16.22 | |V |49206.2956 | | 0.44908 |20 | |00251 06286| +060217 |HQ Ara |175320.6-535058 |M | 10.4 |< 14.0 | |V |52427. | | 261.5 | |Me |00251 06286| +060218 |HR Ara |175425.4-555119 |SRB | 11.0 | 12.0 | |V | | | 121. | | |N0002 06286| +060219 |HS Ara |175503.6-562704 |E | 14.0 | 15.4 | |p |27627.200 | | 2.64564 | | |00251 06286| +060220 |HT Ara |175608.2-552816 |RR | 13.9 | 15.0 : | |p |26091.540 | | 0.49660 | | |00251 06286| +060221 |HU Ara |175622.5-551121 |M | 11.3 |< 14.0 | |V |52811. | | 242.3 | |Me |N0002 06286| +060222 |HV Ara | | | | | | | | | | | | |=AN Pav +060223 |HW Ara |175824.5-564954 |RR | 14.6 | 15.7 | |p |52736.798 | | 0.45219 | | |00251 06286| +060224 |HX Ara |175844.9-551624 |RRC | 11.85 | 12.22 | |V |52699.869 | | 0.219408 |39 | |00001 06286| +060225 |HY Ara |180032.1-544150 |M | 11.2 |< 14.3 | |V |53242. | | 113.8 | | |N0002 06286| +060226 |HZ Ara |180043.6-551617 |RR | 14.6 | 15.6 | |p |25416.470 | | 0.34254 | | |00251 06286| +060227 |II Ara |180237.6-560126 |M | 12.1 |< 14.5 | |V |52461. | | 223. | | |00001 06286| +060228 |IK Ara |180302.2-543610 |RRAB | 14.3 | 15.4 | |p |26868.530 | | 0.58658 | | |00251 06286| +060229 |IL Ara |180454.9-562756 |RRAB | 14.9 | 15.8 | |p |26218.280 | | 0.57670 | | |00251 06286| +060230 |IM Ara |180657.6-555427 |M | 13.2 |< 16.5 | |p |52408. | | 269.7 | | |00251 06286| +060231 |IN Ara *|180740.2-543629 |RRAB | 12.32 | 13.6 | |V |52802.840 | | 0.631489 |17 | |00001 06286| +060232 |IO Ara |172035.0-535241 |M | 11.4 |< 14.0 | |V |52425. | | 273. | |Me |N0002 06286| +060233 |IP Ara |163711.0-553627 |RRAB | 13.9 | 14.6 | |p |26120.621 | | 0.8567876 |20 : | |00435 00435| +060234 |IQ Ara |164424.0-543344 |RRAB | 13.6 | 14.8 | |p |26472.584 | | 0.41066286 |13 | |00435 00435| +060235 |IR Ara |171721.6-553916 |SRB | 11.9 | 12.4 | |V | | | 70. | | |N0002 06286| +060236 |IS Ara |171754.9-551426 |EA | 13.9 | 15.0 | |p |36689.38 | | 1.67 |15 :*| |01385 04001| +060237 |IT Ara *|172458.2-595425 |EB | 11.9 | 12.5 | 12.2 |V |52770.776 | | 0.528395 | | |N0002 06286| +060238 |IU Ara |172531.6-545149 |E | 13.5 | 14.0 | |p |26154.460 | | | | |00251 06286| +060239 |IV Ara |173055.1-581124 |LB: | 12.9 | 14.1 | |V | | | | | |00001 06286| +060240 |IW Ara *|173301.4-583431 |E | 13.9 | 14.5 | |p |26154.460 | | | | |00251 06286| +060241 |IX Ara |173411.5-575459 |E | 13.7 | 14.3 | |p |26091.540 | | | | |00251 06286| +060242 |IY Ara |173510.4-572059 |E | 15.0 | 16.0 | |p |26154.460 | | | | |00251 06286| +060243 |IZ Ara |173529.2-580257 |SRB | 12.5 | 13.4 | |V | | | 62.2 | | |N0002 06286| +060244 |KK Ara |173708.3-631108 |LB | 11.3 | 11.8 | |V | | | | | |00251 06286| +060245 |KL Ara |173949.6-573139 |E | 14.0 | 14.8 | |p |26091.540 | | | | |00251 06286| +060246 |KM Ara |174217.9-543920 |SRB | 11.9 | 12.4 | |V | | | 97. : | | |00001 06286| +060247 |KN Ara |174629.6-565620 |SRB | 11.4 | 12.0 | |V | | | 410. | | |00001 06286| +060248 |KO Ara *|174630.9-535251 |EW | 12.8 | 13.7 | 13.4 |V |53122.799 | | 0.382562 | | |N0002 06286| +060249 |KP Ara *|175132.1-561345 |SRA | 12.6 | 13.7 | |V |53129. | | 277. |50 | |00001 06286| +060250 |KQ Ara |175439.6-545509 |LB | 13.2 | 14.1 | |V | | | | | |00001 2MASS| +060251 |KR Ara |175613.5-522753 |SRA | 11.6 | 13.6 | |V |52907. | | 204. | | |00001 GSC | +060252 |KS Ara |180010.1-543704 |LB | 12.2 | 12.8 | |V | | | | | |00001 06286| +060253 |KT Ara |180056.7-500529 |M | 12.5 |< 16.1 | |p |53220. | | 259. | | |00001 GSC | +060254 |KU Ara *|180144.9-523456 |EA | 12.3 | 13.3 | 13.1 |V |52194.510 | | 2.314 | | |00629 GSC | +060255 |KV Ara |180207.2-543726 |SRB | 11.9 | 12.8 | |V | | | 293. | | |N0002 06286| +060256 |KW Ara |180628.5-525246 |SRB | 12.8 | 14.1 | |V | | | 59. | | |N0002 06286| +060257 |KX Ara |180658.1-525538 |LB | 12.5 | 13.5 | |V | | | | | |00001 06286| +060258 |KY Ara *|180822.0-545617 |UG: | 15.8 |< 21. | |B |28715. | | | | |N0008 76005| +060259 |KZ Ara *|180814.0-494256 |SRD | 11.9 |< 13.3 | |V |53239. | | 145.5 | |K6e |N0002 06286| +060260 |LL Ara |175649.1-503842 |M | 14.8 |< 16.5 | |p | | | 240. : | | |00629 2MASS| +060261 |LM Ara |180447.0-504038 |M | 13.7 | 17.7 | |p |51954. | | 250. | | |00001 2MASS| +060262 |LN Ara |180455.1-530600 |M | 11.8 |< 14.6 | |V |52152. | | 122.5 | | |00001 06286| +060263 |LO Ara |163737.9-525449 |M: | 11.6 |< 13.5 | |p |27995. | | 282. | | |00016 2MASS| +060264 |LP Ara *|164001.8-463935 |EB | 10.0 | 11.0 | 10.4 |V |51965.813 | | 8.533069 | |B8 |00001 CoD | +060265 |LQ Ara |165141.5-610120 |SRA | 9.92 | 10.60 | |V |53224. | | 183.7 |50 |SC |N0002 CoD | +060266 |LR Ara *|165337.2-613511 |EA | 10.43 | 11.01 | 11.01 |V |51953.846 | | 1.51955 |17 |B2 |N0009 CPD | +060267 |LS Ara |165907.2-600527 |M | 11.0 | 17. | |p |53294. | | 394. | |S5,6e |N0002 2MASS| +060268 |LT Ara |172230.1-470403 |E | 10.8 | 15.4 | |p |24376.567 | | 12.974 | |A |00300 03520| +060269 |LU Ara *|172347.0-550344 |EA | 10.3 | 11.6 | 10.4 |V |53128.815 | | 2.38003 |13 | |00016 07336| +060270 |LV Ara |172318.8-465115 |E | 13.8 | 16.0 | |p |52144.492 | | 1.892233 | | |00300 USNO | +060271 |LW Ara *|172809.3-463814 |CW | 12.4 | 13.4 | |V |51952.6 | | 11.148218 |43 | |N0002 UCAC2| +060272 |LX Ara |172809.7-463750 |RRAB | 13.8 | 15.1 | |p |26561.227 | | 0.49421 | | |00300 GSC22| +060273 |LY Ara |173428.5-455542 |RRAB | 15.2 | 16.5 | |p |26561.520 | | 0.45213 | | |00300 GSC22| +060274 |LZ Ara |174406.0-463007 |RRAB | 14.8 | 16.5 | |p |26472.536 | | 0.437934 | | |00300 USNO | +060275 |MM Ara *|174741.1-463053 |EA | 11.25 | 11.89 | 11.85 |V |52102.592 | | 2.556502 | |A2 |00001 CoD | +060276 |MN Ara |174823.7-464115 |RRAB | 15.1 |< 16.5 | |p |26119.568 | | 0.464459 | | |00300 GSC22| +060277 |MO Ara |174857.0-463651 |RR | 14.6 | 15.4 | |p |26183.350 | | 0.379771 | | |00300 GSC22| +060278 |MP Ara |175041.3-465341 |RRAB | 14.8 | 16.1 | |p |25469.185 | | 0.456094 | | |00300 USNO | +060279 |MQ Ara *|175310.2-464804 |RRAB | 14.9 | 16.1 | |p |25469.246 | | 0.456585 | | |00300 03776| +060280 |MR Ara *|175641.0-454624 |CW | 10.94 | 12.30 | |V |51978.8 | | 19.822392 |48 | |N0002 03513| +060281 |MS Ara *|180304.3-524321 |RRAB | 11.52 | 12.48 | |V |52918.610 | | 0.5249875 |25 | |00001 06286| +060282 |MT Ara *|171738.1-603113 |E | 12.8 | 14.3 | |p | | | | | |01021 06286| +060283 |MU Ara |171843.2-603428 |RR | 16.6 | 17.7 | |p | | | | | |01021 06286| +060284 |MV Ara *|171919.3-574050 |RRAB | 14.8 | 16.0 | |p |36689.400 | | 0.5623 |17 | |01385 04001| +060285 |MW Ara |172030.1-601108 |LB: | 16.0 | 17.2 | |p | | | | | |01021 06286| +060286 |MX Ara *|172209.8-594021 |CW: | 14.7 | 15.7 | |p |36720.300 | | 1.155 : |40 : | |01385 04001| +060287 |MY Ara |172240.0-581815 |RR | 15.2 | 16.2 | |p | | | | | |01021 06286| +060288 |MZ Ara |172357.8-583130 |RR | 15.5 | 17.0 | |p | | | | | |01021 06286| +060289 |NN Ara |172442.1-591416 |SRA | 11.9 | 12.8 | |V |53133. | | 121.2 |50 | |00001 GSC | +060290 |NO Ara *|172442.4-571856 |EA: | 12.7 | 13.7 | 13.0 V |V |52932.56 | | 0.6926504 |12 : | |01021 UCAC2| +060291 |NP Ara |172516.5-570325 |RR | 14.7 | 15.9 | |p | | | | | |01021 06286| +060292 |NQ Ara |172731.4-590758 |E | 15.1 | 16.4 | |p | | | | | |01021 06286| +060293 |NR Ara |172738.2-580153 |RR | 15.5 | 16.6 | |p | | | | | |01021 06286| +060294 |NS Ara |172820.9-592835 |RR | 16.2 | 17.2 | |p | | | | | |01021 06286| +060295 |NT Ara |172919.7-575436 |RR | 14.5 | 15.5 | |p | | | | | |01021 06286| +060296 |NU Ara *|173025.2-612703 |RR | 16.3 | 17.5 | |p | | | | | |01021 06286| +060297 |NV Ara |173117.1-605046 |RR | 14.4 | 15.9 | |p | | | | | |01021 06286| +060298 |NW Ara |173159.3-570701 |RR | 15.4 | 16.7 | |p | | | | | |01021 06286| +060299 |NX Ara |173341.0-570412 |RR | 15.5 | 16.5 | |p | | | | | |01021 06286| +060300 |NY Ara |173459.6-592333 |RR | 14.5 | 16.6 | |p | | | | | |01021 06286| +060301 |NZ Ara |173750.0-593731 |RR | 15.3 | 17.2 | |p | | | | | |01021 06286| +060302 |OO Ara |173748.8-570624 |RR | 14.4 | 15.5 | |p | | | | | |01021 06286| +060303 |OP Ara |173846.6-564934 |RR | 14.1 | 15.5 | |p | | | | | |01021 06286| +060304 |OQ Ara |173943.5-563953 |RR | 14.8 | 16.3 | |p | | | | | |01021 06286| +060305 |OR Ara |174324.5-564231 |RR | 14.9 | 16.1 | |p | | | | | |01021 06286| +060306 |OS Ara |174614.3-563408 |RR | 15.4 | 16.6 | |p | | | | | |01021 06286| +060307 |OT Ara |174837.2-563708 |RR | 16.0 | 17.0 | |p | | | | | |01021 06286| +060308 |OU Ara |174937.3-563849 |RR | 15.2 | 16.8 | |p | | | | | |01021 06286| +060309 |OV Ara |175258.0-563955 |RR | 14.2 | 15.3 | |p | | | | | |01021 06286| +060310 |OW Ara |175643.0-561647 |EA | 13.0 | 13.9 | |V |53067.894 | | 2.73006 |11 | |00001 06286| +060311 |OX Ara |180312.7-565910 |RR | 16.0 | 17.2 | |p | | | | | |01021 06286| +060312 |OY Ara *|164050.4-522551 |NA+EA | 6.0 | 17.5 | |p |18767. |1910 | | |pec(NOVA) |72118 N0010| +060313 |OZ Ara |175411.9-553900 |RR | 14.8 | 16.2 | |p | | | | | |00629 06286| +060314 |PP Ara |175600.5-532908 |RR | 13.5 | 15.1 | |p | | | | | |00629 USNO | +060315 |PQ Ara |175614.1-515044 |M | 10.9 |< 13.5 | |V |52038. | | 329. | |Me |00001 2MASS| +060316 |PR Ara |175705.1-541306 |RR | 13.5 | 15.4 | |p | | | | | |00629 USNO | +060317 |PS Ara |175723.8-531009 |RR | 14.0 | 15.5 | |p | | | | | |00629 06286| +060318 |PT Ara |175807.1-515635 |RR | 14.8 | 15.9 | |p | | | | | |00629 USNO | +060319 |PU Ara |175906.5-552512 |RR | 15.0 | 16.2 | |p | | | | | |00629 06286| +060320 |PV Ara |180028.5-531620 |RR | 14.5 | 15.5 | |p | | | | | |00629 06286| +060321 |PW Ara |180040.6-542133 |RR | 14.3 | 15.5 | |p | | | | | |00629 06286| +060322 |PX Ara |180200.8-503735 |RR | 14.8 | 16.2 | |p | | | | | |00629 06286| +060323 |PY Ara |180212.5-525337 |RR | 14.3 | 15.3 | |p | | | | | |00629 06286| +060324 |PZ Ara |180245.0-553418 |RR | 14.1 | 15.8 | |p | | | | | |00629 06286| +060325 |QQ Ara |180325.9-555844 |RR | 13.3 | 15.1 | |p |53250.624 | | 0.5486 : | | |00629 06286| +060326 |QR Ara *|180305.5-505539 |EB | 13.4 | 15.6 | |p | | | | | |00629 06031| +060327 |QS Ara |180353.0-544300 |RR | 14.7 | 15.8 | |p | | | | | |00629 USNO | +060328 |QT Ara |180519.8-552152 |RR | 12.5 | 14.4 | |p | | | | | |00629 GSC22| +060329 |QU Ara |180503.9-512707 |RR | 12.0 | 13.7 | |p | | | | | |00629 06286| +060330 |QV Ara |180817.1-524005 |RR | 13.7 | 14.8 | |p | | | 0.3180 : | | |00001 GSC | +060331 |QW Ara |180848.3-495202 |RR | 14.3 | 16.5 | |p | | | | | |00629 USNO | +060332 |QX Ara *|163819.4-543339 |M | 11.3 |< 15.0 | |V |52704. | | 231. | | |N0002 2MASS| +060333 |QY Ara |164616.4-535751 |M: | 10.7 |< 12.8 | |V |51970. | | 261. : | | |00001 2MASS| +060334 |QZ Ara |165024.7-555650 |M | 11.5 |< 14.2 | |V |52751. | | 397. | |Me |00001 02386| +060335 |V0335 Ara |172736.0-561649 |RR | 14.5 | 15.5 | |p | | | | | |00251 06286| +060336 |V0336 Ara *|172906.0-612724 |EA | 12.1 | 13.3 | 12.3 |V |51933.57 | | 3.031760 |13 | |N0002 02383| +060337 |V0337 Ara |174204.5-510120 |M | 10.4 | 14.2 : | |V |52425. | | 163.8 | |Me |N0002 02386| +060338 |V0338 Ara |174827.8-525703 |M | 10.5 |< 14.4 | |V |52533. | | 274. | |Me |N0002 02383| +060339 |V0339 Ara |174957.0-492919 |EA | 10.2 | 10.8 | |p |28698.385 | | 2.438853 |11 *| |04183 04791| +060340 |V0340 Ara *|164519.1-512033 |DCEP | 9.63 | 10.76 | |V |52351.75 | | 20.81110 |24 : | |N0011 02382| +060341 |V0341 Ara *|165741.5-631238 |NL: | 10.47 | 11.04 | |V | | | | | |00001 CPD | +060342 |V0342 Ara *|163606.5-552408 |M: | 15.0 |< 16.5 | |p |36760. | | 140. : | | |08121 04001| +060343 |V0343 Ara |163635.3-582737 |EA | 15.0 |< 16.0 | |p |36781.282 | | 1.412 | | |08121 04001| +060344 |V0344 Ara |163623.4-553412 |M | 12.0 | 14.6 : | |V |52753. | | 245. : | | |00001 04001| +060345 |V0345 Ara *|163751.1-572120 |M | 14.5 |< 16.5 | |p |36810. | | 180. : | | |08121 04001| +060346 |V0346 Ara |163816.9-573819 |E | 15.0 |< 16.0 | |p | | | | | |08121 04001| +060347 |V0347 Ara |163848.9-611041 |EA | 14.8 |< 16.0 | |p |36728.352 | | | | |08121 04001| +060348 |V0348 Ara |163843.6-555155 |RR: | 14.3 | 15.3 | |p |36760.332 | | | | |08121 04001| +060349 |V0349 Ara *|163922.6-605742 |EA | 8.58 | 9.08 | 8.93 |V |51946.885 | | 2.651782 |16 |A5V |N0002 CoD | +060350 |V0350 Ara |163916.2-580739 |E | 12.0 | 12.5 | |p |36748.362 :| | | | |08121 04001| +060351 |V0351 Ara |163918.7-580545 |M: | 11.7 |< 13.8 | |V |52669. | | 278. | | |N0002 04001| +060352 |V0352 Ara |163951.6-602035 |SR | 14.0 | 15.0 | |p |36735. | | 60. | | |08121 04001| +060353 |V0353 Ara |164002. -580533:|RRAB | 14.6 | 15.5 | |p |36695.330 | | 0.5873 |20 | |04637 | +060354 |V0354 Ara |164021.1-572707 |RR | 14.5 | 15.5 | |p |36831.248 | | | | |08121 04001| +060355 |V0355 Ara *|164020.1-570719 |M | 15.0 |< 17.0 | |p |36838. | | | | |08121 04001| +060356 |V0356 Ara *|164010.5-551742 |M | 14.0 |< 16.0 | |p |36825. | | | | |08121 04001| +060357 |V0357 Ara |164056.6-593857 |M | 14.0 |< 16.5 | |p |52566. | | 277. | | |00001 04001| +060358 |V0358 Ara |164105.0-585721 |RRAB | 14.2 | 15.6 | |p |36723.420 | | 0.498 |12 | |08122 04001| +060359 |V0359 Ara |164102.8-560316 |RRC | 15.6 | 16.0 | |p |36695.348 | | 0.3197 : | | |08122 04001| +060360 |V0360 Ara *|164227.1-580238 |EA | 13.6 | 14.9 | 13.8 |p |36760.255 | | 2.605 |15 *| |08122 04001| +060361 |V0361 Ara *|164204.4-542137 |EA | 13.1 |< 14.9 | 13.6 |p |36803.28 | | 12.595 : |16 : | |08122 04001| +060362 |V0362 Ara *|164247.3-565102 |EA | 15.1 | 16.2 | 15.6 |p |36721.30 | | 2.785 |20 :*| |08122 04001| +060363 |V0363 Ara |164257.9-555128 |LB | 15.3 |< 16.3 | |p |36785. | | | | |08122 04001| +060364 |V0364 Ara |164313.7-563436 |E | 13.0 | 14.2 | |p | | | | | |08122 04001| +060365 |V0365 Ara |164408.6-602718 |RRAB | 14.2 | 15.5 | |p |36725.308 | | 0.5221 |17 | |08122 04001| +060366 |V0366 Ara |164412.8-564012 |M: | 14.3 |< 16.3 | |p |36738. | | | | |08122 04001| +060367 |V0367 Ara |164408.4-553924 |E: | 13.6 | 13.9 | |p | | | | | |08122 04001| +060368 |V0368 Ara |164414.1-554554 |EA | 14.2 | 15.4 | |p |36725.32 | | 3.562 |18 *| |08122 04001| +060369 |V0369 Ara |164427.5-550932 |M: | 14.6 |< 16.3 | |p |36767. | | | | |08122 04001| +060370 |V0370 Ara |164501.5-580056 |EA | 15.5 | 16.3 | |p |36729.295 | | 2.5885 |15 *| |08122 04001| +060371 |V0371 Ara |164516.9-574940 |M | 13.2 |< 16.3 | |p |36833. | | | |Me |08122 04001| +060372 |V0372 Ara |164528.6-574254 |RRAB | 14.6 | 15.8 | |p |36689.413 | | 0.6020 |10 | |08122 04001| +060373 |V0373 Ara |164603.3-600730 |M: | 14.5 |< 16.3 | |p |36680. :| | 170. : | | |08122 04001| +060374 |V0374 Ara |164555.8-570533 |RRAB | 15.1 | 16.0 | |p |36725.310 | | 0.5291 |12 | |08122 04001| +060375 |V0375 Ara |164624.3-594539 |E | 13.2 | 13.5 | |p | | | | | |08122 04001| +060376 |V0376 Ara |164613.2-572329 |RRAB | 15.3 | 16.0 | |p |36731.290 | | 0.6391 |15 | |08122 04001| +060377 |V0377 Ara |164641.5-600048 |RR | 15.8 |< 16.3 | |p | | | | | |08122 04001| +060378 |V0378 Ara |164745.9-592248 |M | 14.3 |< 16.3 | |p |36810. | | | | |08122 04001| +060379 |V0379 Ara |164836.5-580602 |RRAB | 15.2 | 16.0 | |p |36720.370 | | 0.540 |18 | |08122 04001| +060380 |V0380 Ara |164831.5-564903 |M | 15.2 |< 19.0 | |p |53242. | | 228. | | |00001 04001| +060381 |V0381 Ara |164919.2-601553 |RRAB | 14.0 | 15.2 | |p |36694.360 | | 0.5121 |25 | |08122 04001| +060382 |V0382 Ara |164848.8-541358 |SRB: | 12.5 |< 14.2 | |V | | | 99. : | | |00001 04001| +060383 |V0383 Ara *|164940.5-602832 |M | 14.0 |< 16.3 | |p |36810. | | | | |08122 04001| +060384 |V0384 Ara |164929.1-555151 |RRAB | 14.6 | 15.7 | |p |36689.370 | | 0.4832 |30 | |08122 04001| +060385 |V0385 Ara |164958.3-565759 |RRAB | 15.1 | 16.1 | |p |36728.345 | | 0.5229 |17 | |08122 04001| +060386 |V0386 Ara |164947.9-552030 |M: | 15.0 |< 16.3 | |p |36793. | | | | |08122 04001| +060387 |V0387 Ara |165027.5-583728 |RRC | 15.0 | 15.5 | |p |36694.370 | | 0.4049 |40 | |08122 04001| +060388 |V0388 Ara |165025.3-553748 |M | 13.0 |< 16.3 | |p |52511. | | 233. : | | |00001 04001| +060389 |V0389 Ara |165150.5-605501 |M | 14.0 |< 16.3 | |p |52461. | | 455. | |Me |00001 04001| +060390 |V0390 Ara |165114.9-551448 |M: | 14.6 |< 16.3 | |p |36835. | | | | |08122 04001| +060391 |V0391 Ara |165232.7-632455 |RRC | 15.0 | 15.7 | |p |36695.358 | | 0.2875 |40 | |08122 04001| +060392 |V0392 Ara |165227.2-615754 |RRAB | 15.0 | 16.0 | |p |36729.284 | | 0.5199 |15 | |08122 04001| +060393 |V0393 Ara |165158.6-572342 |RRAB | 15.5 | 16.4 | |p |36695.363 | | 0.489 |13 | |08122 04001| +060394 |V0394 Ara |165209.4-571817 |EA | 15.2 | 16.3 | |p |36730.25 | | 2.100 |16 *| |08122 04001| +060395 |V0395 Ara |165204.5-553729 |M | 12.4 |< 16.0 | |p |52441. | | 159. | | |N0002 04001| +060396 |V0396 Ara |165240.2-595138 |RRAB | 14.3 | 15.6 | |p |36694.330 | | 0.6347 |17 | |08122 04001| +060397 |V0397 Ara |165237.0-582140 |RRAB | 14.5 | 15.7 | |p |36723.360 | | 0.619 |13 | |08122 04001| +060398 |V0398 Ara |165315.0-613808 |RRAB | 15.1 | 16.1 | |p |36725.383 | | 0.43225 |12 | |08122 04001| +060399 |V0399 Ara |165318.6-614119 |RRAB | 14.9 | 15.8 | |p |36725.372 | | 0.5424 |15 | |08122 04001| +060400 |V0400 Ara |165309.5-570144 |RRAB | 15.0 | 16.0 | |p |36689.390 | | 0.6276 : |15 | |01385 04001| +060401 |V0401 Ara |165343.7-560347 |RRAB | 13.8 | 15.1 | |p |36724.395 | | 0.5621 |13 | |01385 04001| +060402 |V0402 Ara |165511.0-611325 |RRAB | 14.4 | 15.2 | |p |36689.390 | | 0.547 |20 | |01385 04001| +060403 |V0403 Ara |165430.1-553213 |RRAB | 15.0 | 16.0 | |p |36721.310 | | 0.5431 |13 | |01385 04001| +060404 |V0404 Ara |165445.4-551150 |M | 11.6 | 16. | |V |53117. | | 322. | | |00001 04001| +060405 |V0405 Ara |165539.0-593945 |RRAB | 15.3 | 16.0 | |p |36694.315 | | 0.4493 |20 | |01385 04001| +060406 |V0406 Ara |165544.2-565455 |RRAB | 15.4 | 16.2 | |p |36723.300 | | 0.5224 |13 | |01385 04001| +060407 |V0407 Ara |165640.3-593209 |RRAB | 14.6 | 15.9 | |p |36725.360 | | 0.4654 |12 | |01385 04001| +060408 |V0408 Ara |165630.9-574015 |RRAB | 13.0 | 13.8 | |p |36694.400 | | 0.5121 |15 | |01385 04001| +060409 |V0409 Ara |165641.6-561032 |RRAB | 15.0 | 15.6 | |p |36694.350 | | 0.532 |20 | |01385 04001| +060410 |V0410 Ara |165744.6-622535 |M | 13.7 |< 16.2 | |p |36810. | | | | |01385 04001| +060411 |V0411 Ara |165736.7-604655 |M: | 14.6 |< 16.5 | |p |36700. | | 160. : | | |01385 04001| +060412 |V0412 Ara |165727.9-592539 |EA | 13.2 | 15.2 | |p |36689.385 | | 1.477 |12 *| |01385 04001| +060413 |V0413 Ara |165811.3-613810 |RRAB | 14.3 | 16.1 | |p |36730.440 | | 0.4848 |18 : | |01385 04001| +060414 |V0414 Ara |165750.7-590723 |RRAB | 13.0 | 14.0 | |p |36694.360 | | 0.5746 |15 | |01385 04001| +060415 |V0415 Ara |165757.8-583658 |RRAB | 14.7 | 15.7 | |p |36720.360 | | 0.5759 |15 | |01385 04001| +060416 |V0416 Ara |165806.7-553013 |EA | 12.6 | 15.5 | |p |36730.440 | | | | |01385 04001| +060417 |V0417 Ara |165910.5-572042 |E: | 14.4 |< 15.7 | |p |36762.448 | | | | |01385 04001| +060418 |V0418 Ara |165925.3-631928 |RRAB | 15.4 | 16.6 | |V |49522.6418 | | 0.50533 |12 | |N0006 04001| +060419 |V0419 Ara *|165853.7-594807 |SR | 14.2 | 16.0 | |p |36725. | | 55. | | |01385 04001| +060420 |V0420 Ara |165849.0-590127 |RRAB | 14.8 | 15.9 | |p |36694.320 | | 0.6349 |20 | |01385 04001| +060421 |V0421 Ara *|165846.2-580925 |EB | 14.8 | 15.6 | 15.1 |p |36732.281 | | 0.5724 | | |01385 04001| +060422 |V0422 Ara *|165918.6-614333 | | 14.2 | 16.2 | |p | | | | |AV+K7V |01385 72085| +060423 |V0423 Ara |165939.6-625204 |RRAB | 14.7 | 15.8 | |p |36695.370 | | 0.4308 |20 : | |01385 04001| +060424 |V0424 Ara |165951.8-624810 |RRAB | 15.1 | 15.9 | |p |36720.370 | | 0.550 |30 : | |01385 04001| +060425 |V0425 Ara |165900.3-573737 |RRAB | 15.0 | 15.9 | |p |36695.370 | | 0.6144 |20 | |01385 04001| +060426 |V0426 Ara |165910.6-582217 |M | 12.3 |< 14.4 | |V |52410. | | 254.8 | | |N0002 04001| +060427 |V0427 Ara |165919.3-583126 |RRAB | 14.2 | 15.4 | |p |36725.351 | | 0.59165 |08 | |01385 04001| +060428 |V0428 Ara |165947.5-600711 |RRAB | 14.5 | 15.6 | |p |36694.320 | | 0.6424 |15 | |01385 04001| +060429 |V0429 Ara |165923.4-551220 |RRAB | 14.3 | 15.2 | |p |36730.425 | | 0.4914 |20 | |01385 04001| +060430 |V0430 Ara |165933.5-552803 |RRAB | 12.6 | 14.1 | |p |52820.551 | | 0.528406 |15 | |00001 04001| +060431 |V0431 Ara |165934.5-552735 |RR: | 15.0 | 15.5 | |p | | | | | |01385 04001| +060432 |V0432 Ara |170019.9-594547 |M | 12.7 |< 15.0 | |V |53176. | | 253.3 | | |00001 04001| +060433 |V0433 Ara *|170006.1-575151 |UG+EA | 14.8 |< 19. | |p | | |( 23. :) | | |01385 76005| +060434 |V0434 Ara |170018.3-591004 |RRAB | 14.7 | 15.4 | |p |36689.380 | | 0.5001 |17 | |01385 04001| +060435 |V0435 Ara |170038.3-581527 |RRAB | 15.3 | 16.2 | |p |36728.330 | | 0.4605 |10 | |01385 04001| +060436 |V0436 Ara |170128.5-625729 |RRC | 14.5 | 15.1 | |p |36689.400 | | 0.452 |40 : | |01385 04001| +060437 |V0437 Ara |170037.5-571118 |M | 12.8 |< 16.2 | |p |52530. | | 220. | | |N0002 04001| +060438 |V0438 Ara |170113.1-591947 |RRAB | 15.1 | 15.7 | |p |36694.350 | | 0.6440 |20 | |01385 04001| +060439 |V0439 Ara |170151.6-614140 |RRAB | 13.8 | 15.5 | |p |36720.280 | | 0.5979 |13 | |01385 04001| +060440 |V0440 Ara *|170107.5-563742 |EA | 14.1 | 15.2 | 14.5 |p |36695.350 | | 12.99 |20 :*| |01385 04001| +060441 |V0441 Ara |170124.9-581642 |RRAB | 14.8 | 15.7 | |p |36731.320 | | 0.5833 |12 | |01385 04001| +060442 |V0442 Ara |170133.9-581834 |EA: | 15.0 | 15.9 | |p |36730.44 | | 4.076 | | |01385 04001| +060443 |V0443 Ara |170202.0-590744 |RRAB | 14.5 | 15.6 | |p |36721.330 | | 0.5952 |17 | |01385 04001| +060444 |V0444 Ara *|170200.7-560611 |EA | 14.0 | 15.6 | 14.2 |p |36725.308 | | 2.373 : |05 *| |01385 04001| +060445 |V0445 Ara |170212.3-564321 |EA | 13.9 | 15.4 | |p |36779.30 | | 5.57 | | |01385 04001| +060446 |V0446 Ara |170259.5-612630 |M | 12.2 |< 15.5 | |V |52778. | | 342. | | |N0002 04001| +060447 |V0447 Ara *|170256.2-562348 |EA | 12.7 | 13.9 | |V |52027.729 | | 1.35225 : | | |00001 04001| +060448 |V0448 Ara |170355.6-604426 |RRAB | 15.1 | 16.0 | |p |36689.410 | | 0.58975 |15 | |01385 04001| +060449 |V0449 Ara |170424.4-625959 |RRAB | 13.5 | 15.1 | |p |36730.460 | | 0.4761 |12 | |01385 04001| +060450 |V0450 Ara |170429.5-613929 |RRAB | 14.3 | 15.0 | |p |36694.370 | | 0.5801 |15 | |01385 04001| +060451 |V0451 Ara |170335.2-551948 |M | 12.7 | 16.0 | |p |52854. | | 350. | | |00001 04001| +060452 |V0452 Ara |170438. -612058:|RRAB | 15.2 | 16.0 | |p |36720.380 | | 0.5295 |15 | |04637 | +060453 |V0453 Ara |170425.3-565919 |RRAB | 12.9 | 14.6 | |p |36695.358 | | 0.5875 |17 | |01385 04001| +060454 |V0454 Ara *|170411.7-545231 |EB | 13.2 | 13.9 | 13.6 |V |52088.600 | | 0.81082 | | |00001 04001| +060455 |V0455 Ara |170425.4-570840 |RRAB | 13.1 | 14.5 | |p |36720.380 | | 0.58925 |13 | |01385 04001| +060456 |V0456 Ara |170504.0-591515 |RR | 15.0 | 15.4 | |p | | | | | |01385 04001| +060457 |V0457 Ara |170502.3-575411 |RRAB | 14.7 | 15.7 | |p |36689.410 | | 0.4524 |15 | |01385 04001| +060458 |V0458 Ara |170510.5-584553 |RRAB | 13.8 | 14.8 | |p |36689.420 | | 0.4713 |10 | |01385 04001| +060459 |V0459 Ara |170507.7-553409 |EA | 15.0 | 16.2 | |p |36725.351 | | | | |01385 04001| +060460 |V0460 Ara |170559.4-612413 |RR | 15.6 |< 16.0 | |p |36733.478 | | | | |01385 04001| +060461 |V0461 Ara *|170613.9-625442 |E: | 14.2 | 14.8 | |p |36725.393 | | | | |01385 04001| +060462 |V0462 Ara |170543.4-583802 |RRAB | 15.0 | 16.1 | |p |36723.390 | | 0.4952 |15 | |01385 04001| +060463 |V0463 Ara |170538.7-574932 |RRAB | 14.1 | 15.2 | |p |36720.340 | | 0.5348 |25 | |01385 04001| +060464 |V0464 Ara |170601.7-594019 |RRAB | 14.3 | 15.6 | |p |36730.308 | | 0.5183 |12 | |01385 04001| +060465 |V0465 Ara |170535.1-552145 |RRAB | 14.7 | 15.6 | |p |36689.410 | | 0.5904 |15 | |01385 04001| +060466 |V0466 Ara |170620.6-590217 |M | 13.4 |< 16.3 | |p |36670. | | | | |01385 04001| +060467 |V0467 Ara |170605.9-581941 |RRAB | 14.8 | 15.9 | |p |36721.340 | | 0.5242 |15 | |01385 04001| +060468 |V0468 Ara |170713.4-591022 |RRAB | 15.0 | 16.1 | |p |36730.420 | | 0.6651 |10 | |01385 04001| +060469 |V0469 Ara |170723.8-594209 |RRAB | 16.00 | 17.14 | |V |49522.1166 | | 0.60895 |12 | |N0006 04001| +060470 |V0470 Ara |170752.6-622008 |SR | 14.0 | 15.0 | |p |36725. | | | | |01385 04001| +060471 |V0471 Ara |170833.4-651859 |M | 10.9 |< 14.5 | |V |54623. | | 276.7 | |Me |00001 08661| +060472 |V0472 Ara |170826.4-623451 |RRAB | 13.5 | 14.6 | |p |36694.360 | | 0.5691 |15 | |01385 04001| +060473 |V0473 Ara |170803.3-583627 |RRAB | 14.6 | 15.9 | |p |36724.370 | | 0.5338 |12 | |01385 04001| +060474 |V0474 Ara |170742.3-553147 |RRAB | 15.1 | 15.9 | |p |36720.370 | | 0.533 |15 | |01385 04001| +060475 |V0475 Ara |170816.6-591948 |CEP | 14.1 | 15.5 | |p |36720.29 | | 1.5012 |07 | |01385 04001| +060476 |V0476 Ara |170802.6-564150 |RRAB | 14.4 | 15.4 | |p |36695.350 | | 0.605 |13 | |01385 04001| +060477 |V0477 Ara |170813.6-575355 |RRAB | 15.1 | 16.0 | |p |36694.380 | | 0.5274 |15 | |01385 04001| +060478 |V0478 Ara |170915.6-630603 |RR: | 15.5 | 16.0 | |p | | | | | |01385 04001| +060479 |V0479 Ara |170918.8-620412 |RRAB | 13.5 | 14.8 | |p |52736.761 | | 0.55821 |15 | |00001 04001| +060480 |V0480 Ara *|170841.8-580538 |EW | 14.9 | 15.5 | 15.5 |p |36725.290 | | 0.7756 | | |01385 04001| +060481 |V0481 Ara |170958.3-633125 |RR | 15.1 | 16.0 | |p | | | | | |01385 04001| +060482 |V0482 Ara *|170957.3-624811 |EA | 13.2 | 14.0 | 13.5 |V |53032.874 | | 5.08638 |09 | |00001 04001| +060483 |V0483 Ara |170913.2-575447 |SR | 13.8 | 15.0 | |p |36725. | | 55. | | |01385 04001| +060484 |V0484 Ara |170905.3-544436 |SR | 14.0 | 15.0 | |p |36725. | | | | |01385 04001| +060485 |V0485 Ara *|171017.6-594613 |EA | 14.7 | 15.7 | 14.8 |p |36731.305 | | 1.2264 |15 *| |01385 04001| +060486 |V0486 Ara |171019.5-591016 |RRAB | 13.7 | 14.8 | |p |36695.340 | | 0.4502 |17 | |01385 04001| +060487 |V0487 Ara |170957.4-565829 |RR | 13.8 | 15.5 | |p |36731.302 | | | | |01385 04001| +060488 |V0488 Ara |171035.9-585536 |RRAB | 14.6 | 15.7 | |p |36720.350 | | 0.4487 |15 | |01385 04001| +060489 |V0489 Ara *|171042.5-560344 |EB | 12.1 | 13.0 | 12.4 |V |53239.598 | | 0.640075 | | |N0002 04001| +060490 |V0490 Ara |171130.7-590625 |RRAB | 14.4 | 15.7 | |p |36695.340 | | 0.5304 |20 | |01385 04001| +060491 |V0491 Ara *|171104.8-562226 |EB | 12.2 | 13.4 | 12.8 |V |52732.844 | | 0.940097 | | |00001 04001| +060492 |V0492 Ara *|171124.4-570054 |EW | 14.0 | 14.7 | 14.5 |p |36689.430 | | 0.6536 | | |01385 04001| +060493 |V0493 Ara |171158.7-573647 |M | 13.7 |< 16.2 | |p | | | | | |01385 04001| +060494 |V0494 Ara |171244.4-571506 |LB | 14.1 | 15.2 | |p | | | | | |01385 04001| +060495 |V0495 Ara |171239.9-544335 |RRAB | 14.0 | 15.6 | |p |36694.360 | | 0.6966 |12 | |01385 04001| +060496 |V0496 Ara |171257.8-565733 |RRAB | 15.3 | 16.3 | |p |36689.395 | | 0.4401 |20 : | |01385 04001| +060497 |V0497 Ara *|171302.4-560338 |EA | 13.3 | 14.6 | 13.4 |V |52791.641 | | 1.14085 |12 | |00001 04001| +060498 |V0498 Ara |171423.7-584635 |M: | 13.1 |< 14.9 | |V |53139. | | 215. : | |M4-M5 |00001 04001| +060499 |V0499 Ara |171439.4-585351 |UG | 14.8 |< 16.2 | |p | | | | | |01385 72085| +060500 |V0500 Ara |171428.3-572617 |RRC | 14.0 | 14.6 | |p |36720.390 | | 0.2447 |40 : | |01385 04001| +060501 |V0501 Ara *|171446.9-584555 |EA | 13.6 | 15.8 | 13.8 |p |36724.38 | | 7.97 |10 :*| |04637 04001| +060502 |V0502 Ara |171428.2-545529 |EA | 13.3 | 15.2 | |p |51941.311 | | 2.41155 |08 | |N0015 04001| +060503 |V0503 Ara |171524.8-593701 |RRAB | 13.8 | 15.1 | |p |36720.380 | | 0.4706 |20 | |01385 04001| +060504 |V0504 Ara |171526.9-592559 |E: | 14.8 | 15.2 | |p | | | | | |01385 04001| +060505 |V0505 Ara |171458.0-560916 |E | 14.3 | 15.4 | |p |36761.276 | | | | |01385 04001| +060506 |V0506 Ara |171538.8-564943 |RRAB | 15.1 | 16.0 | |p |36729.350 | | 0.6079 |15 | |01385 04001| +060507 |V0507 Ara |171648.5-625038 |RRAB | 15.2 | 16.1 | |V |49128.3583 | | 0.5930 |20 | |N0006 04001| +060508 |V0508 Ara |171607.4-555507 |RRAB | 14.8 | 15.8 | |p |36695.350 | | 0.6151 |15 | |01385 04001| +060509 |V0509 Ara |171628.3-575113 |M | 12.4 | 16.0 | |p |52743. | | 500. : | | |00001 04001| +060510 |V0510 Ara |171654.1-564550 |RRAB | 14.5 | 15.6 | |p |36689.390 | | 0.5826 |13 | |01385 04001| +060511 |V0511 Ara |171731.0-593626 |M: | 15.2 |< 16.2 | |p |53139. | | 290. : | | |00001 04001| +060512 |V0512 Ara |171802.0-612903 |RRAB | 15.1 | 15.9 | |p |36721.300 | | 0.5124 |15 | |01385 04001| +060513 |V0513 Ara |171834.4-603925 |E | 15.5 | 16.3 | |p | | | | | |01385 04001| +060514 |V0514 Ara |171819.8-542546 |SRD | 13.5 | 14.8 : | |V |52792. | | 118. | |K0-K2 |00001 04001| +060515 |V0515 Ara |171828.0-545343 |LB | 15.0 | 16.0 | |p |36812. | | | | |01385 04001| +060516 |V0516 Ara |171941.6-611226 |E | 14.8 | 15.2 | |p |36723.370 | | 0.6635 : | | |01385 04001| +060517 |V0517 Ara |171859.6-551922 |RRAB | 13.7 | 14.7 | |p |36724.395 | | 0.6886 |20 | |01385 04001| +060518 |V0518 Ara |171910.6-561129 |RRAB | 14.3 | 15.8 | |p |36721.300 | | 0.6605 |30 : | |01385 04001| +060519 |V0519 Ara |172025.4-623422 |RRAB | 14.3 | 15.5 | |p |36720.320 | | 0.5108 |10 | |01385 04001| +060520 |V0520 Ara *|171953.7-564308 |M: | 14.5 |< 16.2 | |p | | | | | |01385 04001| +060521 |V0521 Ara |172110.1-595433 |RR | 15.7 | 16.4 | |p |36695.320 | | 0.520 : |40 : | |01385 04001| +060522 |V0522 Ara |172235.8-602240 |RRAB | 15.08 | 16.3 | |V |49530.6118 | | 0.53141 |12 | |N0006 04001| +060523 |V0523 Ara |172409.1-670545 |M | 11.9 |< 14.3 | |V |52403. | | 201.2 |25 | |00001 04489| +060524 |V0524 Ara |172501.7-623302 |SRB | 13.9 | 15.1 | |p | | | 112. | | |00001 04001| +060525 |V0525 Ara |172511.0-594604 |E | 15.2 | 16.3 | |p |36788.345 | | | | |01385 04001| +060526 |V0526 Ara |172540.9-620535 |RR | 15.0 | 16.0 | |p | | | | | |01385 04001| +060527 |V0527 Ara |172722.8-661754 |RRAB | 14.2 | 15.0 | |p |36568.049 | | 0.707776 |17 | |04489 04489| +060528 |V0528 Ara *|172758.6-622740 |RRAB: | 14.9 | 15.8 | |p |36695.400 | | 0.6547 |20 | |01385 04001| +060529 |V0529 Ara *|172901.2-625850 |EA | 13.0 | 13.7 | 13.1 |V |52096.582 | | 0.95197 |14 | |00001 04001| +060530 |V0530 Ara |172800.2-491637 |EA | 12.00 | 13.6 | |V |51934.900 | | 3.6383 |12 | |N0015 06561| +060531 |V0531 Ara *|172805.6-492955 |EA | 10.62 | 11.25 | 11.25 |V |51935.72 | | 2.975283 |11 | |N0002 06561| +060532 |V0532 Ara *|172911.7-510541 |EA | 11.4 | 12.0 | 11.5 |V |51934.10 | | 0.670973 |15 | |N0002 06561| +060533 |V0533 Ara |173924.1-671459 |RRAB | 13.0 | 14.1 | |p |52406.737 | | 0.567861 |12 | |00001 04489| +060534 |V0534 Ara |173918.9-665500 |M | 10.1 | 15.0 : | |V |54612. | | 227.7 | | |00001 08661| +060535 |V0535 Ara *|173805.5-564917 |EW | 7.17 | 7.75 | 7.71 |V |39292.9351 | | 0.62930098 | |A8V |N0016 06561| +060536 |V0536 Ara *|174014.4-535032 |EA | 11.7 | 13.0 | 11.8 |V |52923.570 | | 2.374084 |13 | |00001 67025| +060537 |V0537 Ara *|174800.1-544212 |EA | 8.64 | 8.94 | 8.91 |V |52861.711 | | 1.874351 | |B7IV |00001 CPD | +060538 |V0538 Ara |174918.7-532013 |CWA | 12.3 | 13.9 | |V |52177.50 | | 15.8612 |28 | |00001 06561| +060539 |V0539 Ara *|175028.4-533645 |EA+LPB | 5.71 | 6.24 | 6.16 |V |48753.440 | | 3.169094 |11 |B2V+B3V |N0017 CPD | +060540 |V0540 Ara |173904.5-545138 |RR | 15. | 16. | |p | | | | | |03776 03776| +060541 |V0541 Ara |173936.6-540852 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +060542 |V0542 Ara |173943.8-525430 |RR | 14. | 15. | |p | | | | | |03776 03776| +060543 |V0543 Ara |174143.2-522044 |RR | 16. | 17. | |p | | | | | |03776 03776| +060544 |V0544 Ara *|174202.6-524257 |EA | 13.3 | 14.0 | 13.8 |V |53141.814 | | 1.81635 : | | |00001 03776| +060545 |V0545 Ara |174229.7-485339 |RR | 15.5 | 17. | |p | | | | | |03776 03776| +060546 |V0546 Ara |174259.4-502748 |RR | 15. | 16. | |p | | | | | |03776 03776| +060547 |V0547 Ara |174412.5-470614 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +060548 |V0548 Ara |174444.8-515926 |RR: | 15. | 16. | |p | | | | | |03776 03776| +060549 |V0549 Ara |174451.5-500740 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +060550 |V0550 Ara |174443.4-471850 |RR | 15. | 16. | |p | | | | | |03776 03776| +060551 |V0551 Ara |174521.7-500415 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +060552 |V0552 Ara |174551.8-533730 |RR | 15. | 16. | |p | | | | | |03776 03776| +060553 |V0553 Ara |174627.2-495008 |RR | 14.5 | 16. | |p | | | | | |03776 03776| +060554 |V0554 Ara |174634.5-501141 |RR | 16. | 17. | |p | | | | | |03776 03776| +060555 |V0555 Ara |174710.0-463034 |RR | 15.5 | 16.5 | |p |38557.52 | | | | |03776 03776| +060556 |V0556 Ara |174728.2-501953 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +060557 |V0557 Ara |174734.4-491221 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +060558 |V0558 Ara |174810.3-501123 |RR | 16. | 17. | |p | | | | | |03776 03776| +060559 |V0559 Ara |174837.8-512326 |RR | 15. | 16. | |p | | | | | |03776 03776| +060560 |V0560 Ara |174816.3-475919 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +060561 |V0561 Ara |174855.8-522931 |M | 12.5 |< 15.0 | |V |52907. | | 300. | |Me |00001 03776| +060562 |V0562 Ara *|174923.3-551915 |EA | 13.7 | 14.4 | 13.9 |V |52026.679 | | 3.08214 |08 | |N0015 03776| +060563 |V0563 Ara |174915.5-522522 |RR | 14.5 | 16. | |p | | | | | |03776 03776| +060564 |V0564 Ara |174955.8-545151 |RR | 14.5 | 16. | |p |38537.58 | | | | |03776 03776| +060565 |V0565 Ara |174959.1-534223 |RR | 14.5 | 16. | |p | | | | | |03776 03776| +060566 |V0566 Ara |174920.8-465014 |RR | 16. | 17. | |p | | | | | |03776 03776| +060567 |V0567 Ara |175035.1-534854 |RR | 15. | 16. | |p | | | | | |03776 03776| +060568 |V0568 Ara |175124.7-460511 |RR | 15.5 | 17. | |p | | | | | |03776 03776| +060569 |V0569 Ara |175130.9-463214 |RR | 15. | 16. | |p | | | | | |03776 03776| +060570 |V0570 Ara |175312.5-550933 |RR | 14.5 | 16. | |p | | | | | |03776 03776| +060571 |V0571 Ara |175304.8-523126 |RR | 16. | 17. | |p | | | | | |03776 03776| +060572 |V0572 Ara |175315.8-500735 |RR | 15. | 16. | |p | | | | | |03776 03776| +060573 |V0573 Ara |175323.2-502253 |RR | 15. | 16. | |p | | | | | |03776 03776| +060574 |V0574 Ara |175343.6-491546 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +060575 |V0575 Ara |175353.0-491020 |RR | 15. | 16. | |p | | | | | |03776 03776| +060576 |V0576 Ara |175427.6-530245 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +060577 |V0577 Ara *|175359.2-474248 |RR | 16.5 | 17.5 | 13.3 : |p | | | | | |03776 03776| +060578 |V0578 Ara |175420.9-500138 |RR | 16. | 17. | |p | | | | | |03776 03776| +060579 |V0579 Ara |175433.9-512238 |RR | 15. | 16. | |p | | | | | |03776 03776| +060580 |V0580 Ara |175414.5-465811 |RR | 15. | 16.5 | |p | | | | | |03776 03776| +060581 |V0581 Ara |175442.0-511558 |RR | 15. | 16. | |p | | | | | |03776 03776| +060582 |V0582 Ara |175433.4-464241 |RR | 15. | 16. | |p | | | | | |03776 03776| +060583 |V0583 Ara *|175459.0-460205 |RR | 16. | 17. | |p | | | | | |03776 03776| +060584 |V0584 Ara |175539.8-524715 |RR | 15. | 16. | |p | | | | | |03776 03776| +060585 |V0585 Ara |175553.2-520609 |EA | 15.5 | 16.5 | |p |38536.319 | | | | |03776 03776| +060586 |V0586 Ara |175600.0-463009 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +060587 |V0587 Ara |175650.4-484619 |RR | 15.5 | 17. | |p | | | | | |03776 03776| +060588 |V0588 Ara |175732.2-471822 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +060589 |V0589 Ara |175839.5-550521 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +060590 |V0590 Ara |175742.8-453323 |RR | 15. | 16. | |p | | | | | |03776 03776| +060591 |V0591 Ara |175859.7-473840 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +060592 |V0592 Ara |180110.6-485549 |RR | 15. | 16. | |p | | | | | |03776 03776| +060593 |V0593 Ara |180124.2-455902 |SRA | 11.6 | 13.6 | |V |53110. | | 156.5 |50 : | |00001 03776| +060594 |V0594 Ara |180202.6-484430 |RR | 16. | 17. | |p | | | | | |03776 03776| +060595 |V0595 Ara |180221.6-471258 |RR | 15. | 16. | |p | | | | | |03776 03776| +060596 |V0596 Ara |180303.2-500750 |RR | 16. | 17. | |p |38555.35 | | | | |03776 03776| +060597 |V0597 Ara |180309.5-472002 |RR | 15. | 16. | |p | | | | | |03776 03776| +060598 |V0598 Ara |180358.7-474709 |RR | 15. | 16. | |p | | | | | |03776 03776| +060599 |V0599 Ara |180518.4-475845 |RR | 15. | 16. | |p | | | | | |03776 03776| +060600 |V0600 Ara |180519.0-473957 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +060601 |V0601 Ara |180532.1-470832 |RR | 16. | 17. | |p | | | | | |03776 03776| +060602 |V0602 Ara |180540.9-482150 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +060603 |V0603 Ara |180728.0-471522 |RR | 15. | 16. | |p | | | | | |03776 03776| +060604 |V0604 Ara |180741.8-454838 |RR | 15. | 16. | |p | | | | | |03776 03776| +060605 |V0605 Ara |180745.6-453113 |RR | 15. | 16. | |p | | | | | |03776 03776| +060606 |V0606 Ara |180802.8-481916 |RR | 15. | 16. | |p | | | | | |03776 03776| +060607 |V0607 Ara |180901.6-514410 |RR | 15. | 16. | |p | | | | | |03776 03776| +060608 |V0608 Ara |180914.6-485756 |EA | 15. | 16.5 | |p |38555.397 | | | | |03776 03776| +060609 |V0609 Ara |164422.2-553732 |SRA | 12.6 | 13.8 | |V |53163. | | 165. | | |00001 04001| +060610 |V0610 Ara |165211.3-571542 |EW | 8.86 | 9.31 | |V |52549.548 | | 0.543159 | |F0V |HIP CPD | +060611 |V0611 Ara |165355.4-570753 |RV: | 15.0 | 16.0 | |p |36755. | | 55. : | | |01385 04001| +060612 |V0612 Ara |170705.2-550332 |SRA | 12.1 | 14.2 | |V |52842. | | 264. | | |N0002 04001| +060613 |V0613 Ara *|180744.3-542631 |RR | 15.5 | 17. | |p | | | | | |03776 03776| +060614 |V0614 Ara |170215.8-575358 |M | 11.9 |< 15.0 | |V |52305. | | 273.6 | |Me |N0002 05829| +060615 |V0615 Ara |170301.8-611622 |M | 12.7 | 16.6 | |p | | | | |Me |04488 05834| +060616 |V0616 Ara *|170702.6-470011 |EB | 8.15 | 8.51 | 8.47 |V |52106.586 | | 4.99525 | |B3III |N0002 CoD | +060617 |V0617 Ara *|171007.3-603953 |CWB | 11.49 | 11.97 | |V |52755.74 | | 2.52203 |30 | |00001 05834| +060618 |V0618 Ara |173920.1-644501 |M | 10.5 |< 14.0 | |V |52392. | | 135.7 | | |N0002 05834| +060619 |V0619 Ara |173939.0-502208 |M | 10.6 |< 14.0 | |V |52493. | | 218.3 | |Me |N0002 05829| +060620 |V0620 Ara |174713.2-560558 |EA | 9.9 | 11.3 | |V |52405.747 | | 3.10993 |10 |B9III |N0009 05835| +060621 |V0621 Ara |163618.2-571519 |RRAB | 14.7 | 15.7 | |p |36781.363 | | 0.479 |20 | |08121 04001| +060622 |V0622 Ara |163714.6-583232 |LB | 15.3 |< 16.0 | |p |36800. | | | | |08121 04001| +060623 |V0623 Ara |163711.2-572749 |E | 14.0 | 14.5 | |p |36695.329 | | 1.7188 | | |08121 04001| +060624 |V0624 Ara *|163839.6-553938 |SRA | 11.65 | 12.2 | |V |53043. | | 294. | | |00001 04001| +060625 |V0625 Ara |163939.2-544448 |LB | 12.0 | 12.3 | |V | | | | | |00001 04001| +060626 |V0626 Ara |174203.6-503039 |LB | 6.23 | 6.46 | |V | | | | |M3III |06645 CoD | +060627 |V0627 Ara |174934.1-565812 |RR | 16.2 | 16.7 | |p | | | | | |01021 06286| +060628 |V0628 Ara |180349.1-523548 |E | 15.6 |< 16.2 | |p | | | | | |00629 USNO | +060629 |V0629 Ara |164930.8-605353 |SR | 13.7 | 15.5 | |p |36790. | | | |Me |08122 04001| +060630 |V0630 Ara |164821.0-494152 |SRB | 12.0 | 13.6 | |V | | | 98. | |M6e |00001 05234| +060631 |V0631 Ara |170657.3-654004 |SRA | 11.4 | 12.6 | |V |53224. | | 208. | |Me |00001 04489| +060632 |V0632 Ara |171424.1-673330 |RRAB | 15.12 | 16.03 | |V |49520.164 | | 0.5868458 |15 | |N0006 06834| +060633 |V0633 Ara |171701.0-521406 |M | 11.0 |< 14.5 | |V |52907. | | 223.3 | | |00001 06561| +060634 |V0634 Ara |172329.1-673734 |RRAB | 14.2 | 15.1 | |p |37296.086 | | 0.6284849 |17 | |06834 06834| +060635 |V0635 Ara |172219.3-530942 |M | 10.0 |< 13.0 | |V |53631. | | 470. | |Ce |N0002 GSC | +060636 |V0636 Ara |173046.1-670600 |RRAB | 14.0 | 14.9 | |p |37296.031 | | 0.4558950 |13 | |06834 06834| +060637 |V0637 Ara |173105.3-670124 |RRC | 14.3 | 15.0 | |p |37419.997 | | 0.3814870 |45 | |06834 06834| +060638 |V0638 Ara |173059.2-493210 |M: | 11.5 |< 13.2 | |V |52097. | | 194. | |Me |00001 GSC | +060639 |V0639 Ara *|174104.6-533259 |M | 12.3 | 17.6 | |p |52792. | | 312.5 | |Me |00001 67025| +060640 |V0640 Ara |175007.9-491034 |M | 11.8 |< 13.6 | |V |52336. | | 223.4 | |Me |N0002 GSC | +060641 |V0641 Ara |180059.4-473623 |SR: | 13. | 14. | |p | | | | |Me |06561 06561| +060642 |V0642 Ara |164118.8-572432 |SR | 15.3 | 16.2 | |p |36725. | | 60. : | | |08122 04001| +060643 |V0643 Ara |164134.1-571324 |M: | 12.5 |< 14.1 | |V |52716. | | 249.3 : | | |00001 04001| +060644 |V0644 Ara |164226.5-604755 |LB | 12.8 | 14.4 | |V | | | | | |00001 04001| +060645 |V0645 Ara |164225.1-591958 |LB | 15.3 |< 16.3 | |p |36730. | | | | |08122 04001| +060646 |V0646 Ara |164209.5-560326 |M: | 14.1 |< 16.0 | |p |36720. | | | | |08122 04001| +060647 |V0647 Ara |164219.3-572132 |LB | 15.4 |< 16.3 | |p | | | | | |08122 04001| +060648 |V0648 Ara |164304.8-591737 |LB | 15.6 |< 16.3 | |p |36780. | | | | |08122 04001| +060649 |V0649 Ara |164330.3-592409 |SRA | 13.2 | 14.4 | |V |52157. | | 172. : | | |00001 04001| +060650 |V0650 Ara *|164343.8-554833 |SRA | 10.5 | 12.7 | |V |52408. | | 167.4 | |S7,7 |N0002 04001| +060651 |V0651 Ara *|164355.5-565202 |EW | 14.6 | 15.4 | 15.3 |p |36725.305 | | 0.27706 | | |08122 04001| +060652 |V0652 Ara |164450.6-562055 |M | 12.3 |< 16. | |V |52652. | | 275. | | |N0002 04001| +060653 |V0653 Ara *|164504.3-545855 |EW | 12.5 | 13.2 | 13.0 |V |51933.132 | | 0.300746 | | |N0002 04001| +060654 |V0654 Ara |164522.6-571742 |LB | 15.4 |< 16.3 | |p |36708. | | | | |08122 04001| +060655 |V0655 Ara |164543.2-583818 |SR | 14.8 | 15.6 | |p |36690. | | 80. : | | |08122 04001| +060656 |V0656 Ara *|164538.1-571845 |RRC: | 14.6 | 15.2 | |p |36725.33 | | 0.3429 |40 | |08122 04001| +060657 |V0657 Ara |164601.9-583514 |LB | 15.1 | 15.7 | |p | | | | | |08122 04001| +060658 |V0658 Ara *|164629.1-613305 |EW: | 15.4 | 16.0 | 16.0 |p |36689.370 | | 0.6276 | | |08122 04001| +060659 |V0659 Ara *|164631.4-612604 |EW | 13.9 | 14.5 | 14.4 |p |36695.362 | | 0.29188 | | |08122 04001| +060660 |V0660 Ara |164632.0-583721 |M: | 15.5 |< 16.3 | |p | | | | | |08122 04001| +060661 |V0661 Ara |164635.5-585621 |SRB | 12.6 | 13.6 | |V | | | 135.9 | | |N0002 04001| +060662 |V0662 Ara |164640.5-573102 |RV: | 11.5 | 12.5 | |V |52879.5 | | 92.80 | | |00001 04001| +060663 |V0663 Ara |164657.7-554121 |UGSU | 13.5 |< 17. | |V | | | | | |78043 78043| +060664 |V0664 Ara |164743.5-585525 |SR | 9.9 | 11.0 | |V | | | 114. | | |N0002 04001| +060665 |V0665 Ara |164736.4-561651 |M: | 15.0 |< 16.3 | |p | | | | | |08122 04001| +060666 |V0666 Ara |164801.1-591633 |SR: | 15.0 | 15.8 | |p |36750. | | | | |08122 04001| +060667 |V0667 Ara |164930.3-611005 |SR | 13.7 | 15.6 | |p |36762. | | | | |08122 04001| +060668 |V0668 Ara *|165003.6-624031 |EW | 13.3 | 13.9 | 13.8 |p |36725.302 | | 0.6014 | | |08122 04001| +060669 |V0669 Ara |164956.0-592000 |SR | 14.5 | 15.2 | |p |36720. | | | | |08122 04001| +060670 |V0670 Ara |165025.2-615521 |IS | 14.7 | 16.1 | |p | | | | | |08122 04001| +060671 |V0671 Ara |165120.7-563042 |RRAB | 14.2 | 15.4 | |p |36689.370 | | 0.4709 |18 | |08122 04001| +060672 |V0672 Ara |165138.2-564046 |LB | 14.0 | 15.0 | |p | | | | | |08122 04001| +060673 |V0673 Ara |165212.9-551152 |SR | 13.3 | 15.7 | |p | | | 236. | | |N0002 04001| +060674 |V0674 Ara |165227.8-554901 |RRAB | 13.8 | 15.4 | |p |36689.410 | | 0.5016 |15 | |08122 04001| +060675 |V0675 Ara |163812.4-543315 |M | 11.4 |< 13.2 | |V |52795. | | 193.6 | | |00001 04001| +060676 |V0676 Ara |164128.7-560230 |LB | 12.8 | 14.0 | |V | | | | | |08122 04001| +060677 |V0677 Ara |164146.0-572256 |SRA | 10.5 | 11.5 | |V |53123. | | 109.4 |45 | |N0002 04001| +060678 |V0678 Ara |164224.2-560236 |E | 14.8 | 15.5 | |p | | | | | |08122 04001| +060679 |V0679 Ara |164253.3-595348 |E | 15.4 | 15.8 | |p | | | | | |08122 04001| +060680 |V0680 Ara |164307.6-610542 |RRC | 11.85 | 12.21 | |V |51933.769 | | 0.303787 |40 : | |N0002 04001| +060681 |V0681 Ara |164325.3-605114 |E | 14.8 | 15.5 | |p |36733.478 | | | | |08122 04001| +060682 |V0682 Ara |164335.1-554806 |RR: | 15.6 | 16.0 | |p | | | | | |08122 04001| +060683 |V0683 Ara |164344.2-554044 |E | 14.6 |< 16.3 | |p |36818.29 | | | | |08122 04001| +060684 |V0684 Ara |164450.2-594646 |SRA | 12.8 | 14.4 | |V |52785. | | 132.6 |45 :| |00001 04001| +060685 |V0685 Ara |164546.6-575841 |E: | 14.8 | 15.1 | |p | | | | | |08122 04001| +060686 |V0686 Ara |164748.2-595210 |RV | 12.7 | 14.1 | |V |52178.5 | | 36.30 | |K4-K5 |00001 04001| +060687 |V0687 Ara *|164730.5-552339 |EW: | 13.0 | 13.3 | |p | | | 0.3 : | | |08122 04001| +060688 |V0688 Ara |164811.0-595025 |SR | 13.4 | 14.0 | |p | | | 195.2 | |M6-M7 |N0002 04001| +060689 |V0689 Ara |164949.6-624518 |LB | 13.0 | 14.6 | |V | | | | | |00001 04001| +060690 |V0690 Ara |164942.4-583732 |RV: | 13.4 | 14.2 | |p |36765. | | | | |08122 04001| +060691 |V0691 Ara |165227.2-561213 |RV | 11.3 | 11.9 | |V |53081. | | 130.6 | | |00001 04001| +060692 |V0692 Ara |165334.1-565447 |RRAB | 14.3 | 15.5 | |p |36730.430 | | 0.496 |15 | |01385 04001| +060693 |V0693 Ara |165401.0-593522 |SR | 14.5 | 15.0 | |p |36725. | | 95. : | | |01385 04001| +060694 |V0694 Ara |165439.8-622259 |SRB | 13.0 | 14.0 | |V | | | 164.5 | | |00001 04001| +060695 |V0695 Ara |165453.4-633320 |RRAB | 15.2 | 16.0 | |p |36695.380 | | 0.5555 : | | |01385 04001| +060696 |V0696 Ara |165436.4-600905 |SRA | 13.0 | 14.3 | |V |53159. | | 127.8 |50 | |00001 04001| +060697 |V0697 Ara |165407.1-561113 |RRAB | 14.8 | 16.0 | |p |36720.300 | | 0.5387 |15 | |01385 04001| +060698 |V0698 Ara |165525.7-600905 |SRA | 11.9 | 14.0 | |V |52333. | | 249. | |M6-M7 |N0002 04001| +060699 |V0699 Ara |165511.4-571345 |RRC | 15.0 | 15.9 | |p |36695.398 | | 0.3274 |30 | |01385 04001| +060700 |V0700 Ara *|165537.1-565803 |EW | 15.1 | 15.7 | 15.7 |p |36725.330 | | 0.6256 : | | |01385 04001| +060701 |V0701 Ara |165628.5-611503 |RRAB | 12.7 | 14.0 | |V |52821.568 | | 0.55585 |18 | |00001 04001| +060702 |V0702 Ara *|165619.1-565430 |EW | 13.3 | 14.0 | 14.0 |p |36694.355 | | 0.4613 | | |01385 04001| +060703 |V0703 Ara |165620.6-560108 |RRAB | 14.6 | 15.2 | |p |36694.345 | | 0.5083 |20 | |01385 04001| +060704 |V0704 Ara |165616.9-552758 |EA | 12.9 | 15.6 | |p |36724.381 | | 1.3277 |13 : | |01385 04001| +060705 |V0705 Ara *|165715.4-600807 |EW | 13.9 | 14.4 | 14.4 |p |36694.300 | | 0.9264 | | |01385 04001| +060706 |V0706 Ara |165656.4-570354 |LB | 13.0 | 14.0 | |V | | | | | |00001 04001| +060707 |V0707 Ara |165740.9-571258 |RRAB | 13.8 | 14.8 | |p |36689.410 | | 0.4811 |20 | |01385 04001| +060708 |V0708 Ara |165904.0-622357 |SRB | 13.3 | 14.3 | |V | | | 56.7 | | |00001 04001| +060709 |V0709 Ara |165824.6-571955 |SR | 15.0 | 15.7 | |p |36765. | | 80. : | | |01385 04001| +060710 |V0710 Ara *|165856.8-584939 |SR | 8.5 | 10.0 | |V | | | 94.6 | |M5/6III |00001 04001| +060711 |V0711 Ara |170005.3-620114 |M: | 15.0 |< 16.0 | |p |36680. :| | | | |01385 04001| +060712 |V0712 Ara |170000.0-605114 |SR | 12.5 | 13.3 | |V |52813. | | 123. | | |00001 04001| +060713 |V0713 Ara |170036.6-612418 |LC | 7.86 | 8.82 | |V | | | | |M2Iab/b |00001 CPD | +060714 |V0714 Ara |165957.2-553603 |RRC | 13.8 | 14.6 | |p |36689.390 | | 0.4309 : |50 | |01385 04001| +060715 |V0715 Ara |170014.6-554917 |SRA | 12.8 | 14.0 | |V |52329. :| | 163.4 | | |N0002 04001| +060716 |V0716 Ara |170026.9-562212 |LB | 14.4 | 15.2 | |p | | | | |M3-M4 |01385 04001| +060717 |V0717 Ara |170056.4-583616 |RRAB | 14.3 | 15.7 | |p |36788.345 | | 0.5053 |10 |F |01385 04001| +060718 |V0718 Ara |170310.8-633453 |EA | 14.0 | 15.1 | |p |36725.308 | | 3.064 |04 *| |01385 04001| +060719 |V0719 Ara |170233.5-574912 |SRB | 12.8 | 14.0 | |V | | | 77.0 | | |00001 04001| +060720 |V0720 Ara |170339.7-631808 |LB | 14.6 | 16.2 | |p | | | | |M5e-M8 |01385 04001| +060721 |V0721 Ara |170242.9-564504 |E: | 15.4 | 15.8 | |p | | | | | |01385 04001| +060722 |V0722 Ara *|170259.6-570642 |EA | 9.96 | 10.51 | 10.09 |V |52755.728 | | 0.988918 |17 | |01385 04001| +060723 |V0723 Ara |170359.7-575657 |LB | 15.0 | 15.7 | |p | | | | | |01385 04001| +060724 |V0724 Ara |170405.0-574021 |SR | 12.0 | 13.2 | |V |52275. | | 141.4 | | |N0002 04001| +060725 |V0725 Ara |170516.2-630820 |SRB | 12.7 | 13.5 | |V | | | 117. | | |00001 04001| +060726 |V0726 Ara |170505.2-610601 |RRAB | 15.1 | 15.6 | |p |36694.350 | | 0.4247 : |20 : | |01385 04001| +060727 |V0727 Ara |170517.6-611123 |RRAB | 13.5 | 14.5 | |p |36721.280 | | 0.555 |15 | |01385 04001| +060728 |V0728 Ara *|170441.8-552319 |EW | 13.0 | 13.6 | 13.5 |V |52719.824 | | 0.73464 | | |00001 04001| +060729 |V0729 Ara *|170736.6-481909 |SR | 10.0 | 11.5 | |V |52753. | | 38.0 | | |00001 05937| +060730 |V0730 Ara |170908.5-572910 |RR | 15.3 | 16.0 | |p | | | | | |01385 04001| +060731 |V0731 Ara |171016.3-572645 |SRB | 12.4 | 13.2 | |V | | | 58.4 | | |N0002 04001| +060732 |V0732 Ara |171333.6-575516 |SRA | 12.5 |< 14.5 | |V |52117. | | 136.5 | |M3-M4 |N0002 04001| +060733 |V0733 Ara |171352.8-590518 |SRA | 12.3 | 13.7 | |V |52441. | | 183. | | |00001 06286| +060734 |V0734 Ara |171349.2-573006 |M | 13.0 |< 15.4 | |V |52758. | | 314. | |M6-M7e |00001 04001| +060735 |V0735 Ara |171452.4-602558 |RR: | 15.4 | 16.0 | |p | | | | | |01385 04001| +060736 |V0736 Ara |171615.9-594225 |RRAB | 13.3 | 14.1 | |p |36720.340 | | 0.6003 |18 | |01385 04001| +060737 |V0737 Ara |171624.9-564728 |SRB | 14.4 | 15.6 | |p | | | 70. : | | |01385 04001| +060738 |V0738 Ara |171702.3-551517 |LB: | 13.0 | 13.7 | |p | | | | | |00001 04001| +060739 |V0739 Ara |171802.3-590617 |RR: | 16.4 | 17.4 | |p | | | | | |01021 06286| +060740 |V0740 Ara *|171839.6-595541 |EW: | 12.9 | 13.7 | 13.5 |V |52751.696 | | 0.37935 | | |00001 06286| +060741 |V0741 Ara |171900.2-561910 |SR | 15.1 | 16.2 | |p |36800. | | 130. : | | |01385 04001| +060742 |V0742 Ara |171948.4-604930 |RR | 16.0 | 16.9 | |p | | | | | |01021 06286| +060743 |V0743 Ara |172103.7-602928 |LB: | 15.5 | 16.2 | |p | | | | | |01385 04001| +060744 |V0744 Ara *|172139.1-615218 |L | 15.6 | 16.2 | |p | | | | | |01385 04001| +060745 |V0745 Ara |172054.3-562508 |LB: | 15.5 | 16.0 | |p | | | | |K3-K4 |01385 04001| +060746 |V0746 Ara |172131.8-571716 |E | 15.2 | 16.0 | |p | | | | | |01385 04001| +060747 |V0747 Ara |172234.1-575729 |RR | 15.8 | 16.3 | |p | | | | | |01021 06286| +060748 |V0748 Ara |172341.9-600129 |E | 14.5 | 15.0 | |p | | | | | |04001 04001| +060749 |V0749 Ara |172420.5-610927 |RR | 14.9 | 15.4 | |p | | | | | |01021 06286| +060750 |V0750 Ara |172754.8-470134 |BE | 6.62 | 6.68 | |V | | | | |B35e |75098 CoD | +060751 |V0751 Ara |173146.4-603854 |RR | 16.0 | 16.9 | |p | | | | | |01021 06286| +060752 |V0752 Ara |173214.3-593805 |RR | 16.5 | 17.1 | |p | | | | | |01021 06286| +060753 |V0753 Ara |173644.1-580639 |RR | 17.0 | 17.8 | |p | | | | | |01021 06286| +060754 |V0754 Ara |173644.5-575846 |RR | 17.2 | 18.0 | |p | | | | | |01021 06286| +060755 |V0755 Ara *|174006.6-643416 |M | 14.6 | 17.2 | |p |51950. :| | | |Me |04488 GSC | +060756 |V0756 Ara |173905.0-584625 |RR | 16.7 | 17.5 | |p | | | | | |01021 06286| +060757 |V0757 Ara |174029.4-602906 |RR | 16.3 | 17.1 | |p | | | | | |01021 06286| +060758 |V0758 Ara |174101.9-602348 |LB | 15.5 | 16.1 | |p | | | | | |01021 06286| +060759 |V0759 Ara |174049.1-583952 |RR | 16.1 | 16.8 | |p | | | | | |01021 06286| +060760 |V0760 Ara |174930.5-482643 |EA | 12.09 | 13.04 | |V |51948.501 | | 5.5851 |08 | |N0015 06561| +060761 |V0761 Ara |175617.8-455524 |RR: | 15. | 16. | |p | | | | | |03776 03776| +060762 |V0762 Ara |175855.6-464953 |M | 11.6 |< 14.5 | |V |52623. | | 196.4 | | |N0002 06561| +060763 |V0763 Ara |175908.2-474527 |SRB | 10.70 | 11.27 | |V | | | 87. | | |N0002 06561| +060764 |V0764 Ara |175947.1-531616 |RR: | 15.5 | 16.5 | |p | | | | | |03776 03776| +060765 |V0765 Ara |180334.6-471443 |RR | 15. | 16. | |p | | | | | |03776 03776| +060766 |V0766 Ara |163838.8-564932 |M | 14.6 |< 18. | |p |52246. | | 120.3 | | |N0002 UCAC2| +060767 |V0767 Ara |164405.9-575115 |M | 15.4 |< 17.5 | |p |36785. | | | | |04637 UCAC2| +060768 |V0768 Ara |164433.9-542322 |M | 11.2 |< 14.0 | |V |52801. | | 238. | |Me |N0002 GSC | +060769 |V0769 Ara |164518.7-570831 |M | 12.3 |< 14.7 | |V |53278. | | 307. | |Me |00001 USNO | +060770 |V0770 Ara |165354.2-573604 |M | 15.0 |< 18. | |p | | | | | |02589 2MASS| +060771 |V0771 Ara |165514.9-623722 |M | 10.8 |< 14.2 | |V |52418. | | 185. : | |Me |00001 05834| +060772 |V0772 Ara |165643.4-633035 |M | 14.0 | 17.8 | |p | | | | | |04488 USNO | +060773 |V0773 Ara |165547.1-561751 |M | 11.8 |< 14.2 | |V |52548. | | 275. | | |00001 GSC | +060774 |V0774 Ara |165736.7-630515 |M | 14.0 | 16.8 | |p |52346. | | 227. | | |N0002 GSC | +060775 |V0775 Ara |165748.5-565015 |M | 12.0 |< 14.5 | |V |52540. | | 250. | | |N0002 GSC22| +060776 |V0776 Ara |165756.8-575247 |M | 12.6 |< 15.0 | |V |52437. | | 206. | |Me |00001 USNO | +060777 |V0777 Ara |170007.2-565949 |M | 12.7 |< 15.0 | |V |52591. | | 251. | | |N0002 GSC22| +060778 |V0778 Ara |170115.9-601327 |M | 10.8 |< 14.4 | |V |52070. | | 182.0 | | |N0002 USNO | +060779 |V0779 Ara |170149.2-575934 |M | 11.7 |< 14.4 | |V |53125. | | 188.1 | | |00001 USNO | +060780 |V0780 Ara |170646.5-583118 |M | 15.4 |< 18. | |p |36780. | | | | |04637 GSC22| +060781 |V0781 Ara *|170713.9-565614 |E | 14.5 | 15.0 | 14.8 |p |36732.281 | | 0.30875 : | | |01385 04001| +060782 |V0782 Ara |170914.5-524103 |M: | 16.5 |< 17.5 | |p | | | | | |02589 USNO | +060783 |V0783 Ara *|170952.2-584311 |EB: | 13.8 | 14.4 | 13.9 |p |36720.375 | | 0.4641 | | |01385 04001| +060784 |V0784 Ara |170943.1-542244 |M | 12.4 |< 14.8 | |V |52107. | | 182.0 | | |N0002 USNO | +060785 |V0785 Ara |171113.2-571405 |EW | 13.7 | 14.3 | |p |52144.482 | | 0.6504 | | |01385 04001| +060786 |V0786 Ara |171156.4-551002 |RV: | 12.6 | 13.7 | |V |52129. | | 187. | | |00001 04001| +060787 |V0787 Ara |171148.5-565653 |SRB | 12.9 | 13.8 | |V | | | 50.6 | | |N0002 04001| +060788 |V0788 Ara |171139.8-552402 |SRB | 12.0 | 13.0 | |V | | | 123. | |M6-M7 |N0002 04001| +060789 |V0789 Ara *|171234.2-611937 |EW | 14.0 | 14.8 | 14.8 |p |36689.350 | | 0.7622 | | |01385 04001| +060790 |V0790 Ara *|171521.6-553216 |EW | 14.2 | 14.8 | 14.8 |p |36689.370 | | 0.6836 | | |01385 04001| +060791 |V0791 Ara *|171635.9-602100 |EW | 12.5 | 13.2 | 13.1 |V |51932.94 | | 0.363643 | | |N0002 04001| +060792 |V0792 Ara *|171616.5-560727 |EB | 14.7 | 15.3 | 15.2 |p |36720.365 | | 0.5967 : | | |01385 04001| +060793 |V0793 Ara *|172054.0-630340 | | 14.3 | 17.5 | |p | | | | | |04488 GSC22| +060794 |V0794 Ara |172043.3-604757 |SRA | 12.1 | 13.0 | |V |52105. | | 66.66 |35 | |N0002 04001| +060795 |V0795 Ara |172121.6-580953 |RRC | 15.5 | 15.9 | |p |36689.410 | | 0.2475 |50 : | |01385 04001| +060796 |V0796 Ara |172531.4-603919 |SRB | 9.4 | 10.5 | |V | | | 64.7 | | |N0002 04001| +060797 |V0797 Ara |172615.6-495328 |M | 11.1 |< 13.8 | |V |52514. | | 195.8 | | |N0002 06031| +060798 |V0798 Ara |173038.3-521309 |M | 10.4 |< 13.5 | |V |52415. | | 273. | |Me |00001 06031| +060799 |V0799 Ara |163831.3-593905 |SR | 14.7 | 16.8 | |p |36735. | | | | |04637 GSC22| +060800 |V0800 Ara |170326.7-610218 |LB: | 14.7 | 17.9 | |p | | | | | |04637 USNO | +060801 |V0801 Ara *|164055.6-534505 |XB | 16.9 | 19.5 | |V | | | | |pec(e) |N0019 01201| +060802 |V0802 Ara |164055.0-534534 |UV | 14.27 | 15.53 | |V | | | | | |08329 01364| +060803 |V0803 Ara |165502.6-571726 |LB | 13.7 | 14.3 | |p | | | | | |01385 04001| +060804 |V0804 Ara |165659.0-602418 |LB: | 13.03 | 13.49 | |V | | | | | |N0021 04001| +060805 |V0805 Ara |165702.3-602945 |EW: | 14.4 | 15.0 | |p | | | 0.4 : | | |01385 04001| +060806 |V0806 Ara |165718.1-615140 |E | 15.0 | 15.7 | |p |36838.254 | | | | |01385 04001| +060807 |V0807 Ara |170023.7-572531 |E: | 15.0 | 15.6 | |p | | | 0.5 : | | |01385 04001| +060808 |V0808 Ara *|170135.4-615936 |RRC: | 14.4 | 15.0 | |p | | | | | |01385 04001| +060809 |V0809 Ara |170223.2-610523 |LB | 13.2 | 14.0 | |V | | | | | |01385 04001| +060810 |V0810 Ara |170235.6-593050 |SRB | 11.3 |< 13.0 | |V | | | 120. : | | |00001 04001| +060811 |V0811 Ara |170341.7-613016 |SRB | 11.0 | 11.5 | |V | | | 97. | | |N0002 04001| +060812 |V0812 Ara |170326.4-592936 |SRB | 11.5 | 12.7 | |V | | | 66.7 | | |N0002 04001| +060813 |V0813 Ara |170326.7-554134 |SRB: | 13.2 | 14.2 | |V | | | 180. : | | |00001 04001| +060814 |V0814 Ara |170503.7-593224 |LB | 15.3 | 16.0 | |p | | | | |M5IIIe |01385 04001| +060815 |V0815 Ara |170710.1-631745 |SRB | 12.1 | 12.9 | |V | | | 55.2 | | |00001 04001| +060816 |V0816 Ara *|170927.8-623007 |LB: | 15.2 | 15.7 | |p | | | | | |01385 04001| +060817 |V0817 Ara |170926.0-574441 |L | 13.2 | 14.0 | |p | | | | | |01385 04001| +060818 |V0818 Ara |171744.4-613805 |SRA | 12.2 | 13.4 | |V |52662. :| | 364. | | |N0002 04001| +060819 |V0819 Ara |172405.5-484213 |SRB | 9.28 | 9.82 | |V | | | 71.2 | | |N0002 01697| +060820 |V0820 Ara *|174746.9-520710 |* | 15.57 | 15.74 | |V |42962.58 | | 2.8391 | |DAp |08335 08335| +060821 |V0821 Ara *|170249.4-484723 |XF: | 15.4 | 20.4 : | |V | | | | |pec(e) |N0023 N0022| +060822 |V0822 Ara |172623.9-661930 |M | 12.5 |< 15.0 | |V |53807. | | 360. | | |00001 08661| +060823 |V0823 Ara |164319.4-461842 |M | 10.3 |< 15.0 | |V |53367. | | 473. | | |N0002 USNO | +060824 |V0824 Ara |171725.5-665704 |RS | 6.63 | 6.97 | |V | | | 1.681652 | |G5IV+K0V-IV |N0024 CPD | +060825 |V0825 Ara *|174010.8-534734 |SRB | 12.3 | 13.5 | |V | | | 39.6 | | |N0002 67025| +060826 |V0826 Ara *|174017.1-534103 |RRAB | 15.32 | 16.52 | |V | | | 0.4940 |11 | |N0025 67025| +060827 |V0827 Ara *|174207.2-534752 |EW | 16.25 | 17.02 | 16.75 |V |49008.5982 | | 0.4218 | | |N0025 67025| +060828 |V0828 Ara |170147.4-585730 |BE | 6.11 | 6.24 | |V | | | | |B2IVe |75098 CPD | +060829 |V0829 Ara *|171413.4-565319 |ELL: | 6.09 | 6.20 | |V | | | 80. | | |68034 CPD | +060830 |V0830 Ara |173356.4-453738 |BE | 8.11 | 8.21 | |V | | | | |B1V:nne |68035 CoD | +060831 |V0831 Ara |172106.1-455856 |BCEP: | 7.79 | 7.85 | |V | | | | |B2III |69037 CoD | +060832 |V0832 Ara *|180700.3-481450 |RS | 7.08 | 7.16 | |V | | | 34.6 | |G8-K0III-IIp |69011 CoD | +060833 |V0833 Ara |174007.9-453908 |M | 6.69 | 8.48 | |J | | | 524. : | | |71144 2MASS| +060834 |V0834 Ara *|174829.6-515503 |ACVO | 10.32 |( 0.01 B )| |V | | | | |Ap(Eu-Sr-Cr) |71157 CoD | +060835 |V0835 Ara *|164411.4-483918 |ACVO | 10.41 |( 0.01 )| |B | | | | |A5p(Eu-Si?) |72014 CoD | +060836 |V0836 Ara |165954.5-461902 |E | 7.47 | 7.65 | |V |53250.579 | | 7.0337 : | |B1II |00001 CoD | +060837 |V0837 Ara *|170900.9-565448 |WR | 10.9 | 12.4 | |V | | | | |[WC10] |72179 CPD | +060838 |V0838 Ara |163920.3-540435 |M | 10.8 | 17. | |V |52809. | | 256. | | |N0002 73030| +060839 |V0839 Ara *|171621.1-592924 |BE | 10.75 : | 10.95 | |V | | | | | |73032 CPD | +060840 |V0840 Ara |163708.5-522254 |LB | 6.83 | 6.91 | |Hp| | | | |M2/M3III |HIP HIP | +060841 |V0841 Ara |163831.1-572811 |BY: | 8.73 | 8.79 | |Hp| | | 4.6875 | |K0V |HIP HIP | +060842 |V0842 Ara |164119.7-551752 |SRB | 8.0 | 8.7 | |V | | | 166. | | |N0002 HIP | +060843 |V0843 Ara |164926.5-495909 |ACV | 7.78 | 7.82 | |Hp|48502.3182 | | 2.57281 | |Ap(Si) |HIP HIP | +060844 |V0844 Ara |165443.5-460524 |LB: | 8.38 | 8.49 | |Hp| | | | |K2/K3III |HIP HIP | +060845 |V0845 Ara |165455.5-480611 |LB: | 8.37 | 8.48 | |Hp| | | | |M3/M4III |HIP HIP | +060846 |V0846 Ara |165608.8-504029 |BE | 6.27 | 6.37 | |Hp| | | | |B3Vnpe |HIP HIP | +060847 |V0847 Ara |165729.9-603600 |LPB | 6.50 | 6.53 | |Hp| | | 0.94213 | |B5III |HIP HIP | +060848 |V0848 Ara |165856.8-460744 |BE: | 8.05 | 8.24 | |Hp| | | | |B2IV |HIP HIP | +060849 |V0849 Ara |170055.7-562848 |LC | 8.02 | 8.21 | |Hp| | | | |M3/M4Ib |HIP HIP | +060850 |V0850 Ara |170523.5-580436 |LB | 7.87 | 8.03 | |Hp| | | | |M3III |HIP HIP | +060851 |V0851 Ara *|170735.1-464047 |EB | 6.93 | 6.98 | 6.97 |Hp|48500.2098 | | 0.617372 | |A7III |HIP HIP | +060852 |V0852 Ara *|170929.9-471539 |EA | 7.75 | 8.10 | 7.94 |Hp|48500.410 | | 3.7400 |09 |B8V |HIP HIP | +060853 |V0853 Ara |171034.4-500315 |ACV | 8.77 | 8.82 | |Hp|48501.486 | | 1.9525 | |Ap(Si) |HIP HIP | +060854 |V0854 Ara |171138.7-485224 |LB | 5.87 | 5.99 | |Hp| | | | |M1/M2III |HIP HIP | +060855 |V0855 Ara |171214.6-532234 |LB | 7.25 | 7.35 | |Hp| | | | |M4III |HIP HIP | +060856 |V0856 Ara |171302.9-585441 |LB: | 8.34 | 8.44 | |Hp| | | | |K4III: |HIP HIP | +060857 |V0857 Ara |171814.7-602728 |BY: | 9.59 | 9.71 | |Hp| | | | |G8/K0V |HIP HIP | +060858 |V0858 Ara |171845.1-572621 |ACV | 8.21 | 8.31 | |Hp|48500.6500 | | 1.80495 | |Ap(Cr-Eu) |HIP HIP | +060859 |V0859 Ara |172733.6-531321 |LC | 7.02 | 7.14 | |Hp| | | | |M2II |HIP HIP | +060860 |V0860 Ara |172902.2-590157 |LB | 7.17 | 7.30 | |Hp| | | | |M2/M3III |HIP HIP | +060861 |V0861 Ara |173107.1-532843 |ACYG: | 8.11 | 8.18 | |Hp| | | | |B1Ib |HIP HIP | +060862 |V0862 Ara |173123.3-565516 |BE: | 5.92 | 6.04 | |Hp| | | | |B7II/III |HIP HIP | +060863 |V0863 Ara |173210.5-510427 |SRB | 7.47 | 8.15 | |Hp| | | 294. | |M4/5+A2/3V |HIP HIP | +060864 |V0864 Ara |173311.4-583327 |BE | 6.97 | 7.09 | |Hp| | | | |B7:Vnnpe |HIP HIP | +060865 |V0865 Ara |173411.7-482807 |SRS | 7.55 | 7.70 | |V | | | 27.8 | |M3/4III |00001 HIP | +060866 |V0866 Ara |173656.6-550816 |ACV: | 7.68 | 7.74 | |Hp| | | | |Ap(Si-Cr) |HIP HIP | +060867 |V0867 Ara *|174221.2-461756 |EW | 7.40 | 7.60 | 7.57 |V |52764.7376 | | 0.4937123 | |A0/A1IV |00001 HIP | +060868 |V0868 Ara |175018.9-471350 |BE | 7.57 | 7.63 | |Hp| | | 22.568 | |B6Vne |HIP HIP | +060869 |V0869 Ara |180408.9-474313 |LC | 7.64 | 7.83 | |Hp| | | | |M2Ib/II |HIP HIP | +060870 |V0870 Ara *|180822.7-564602 |EW | 9.00 | 9.40 | 9.40 |Hp|52031.780 | | 0.399773 | |F8 |00001 HIP | +060871 |V0871 Ara |163723.3-484211 |EA | 10.97 | 12.59 | |V |51922.306 | | 9.4166 |02 | |N0015 CoD | +060872 |V0872 Ara |164044.4-512842 |GDOR: | 6.37 | 6.39 | |Hp| | | 0.4266 | | |75029 CoD | +060873 |V0873 Ara |170518.9-470409 |ACYG | 7.17 | 7.23 | |Hp| | | 3.08 | | |75030 CoD | +060874 |V0874 Ara |170857.6-523923 |M | 11.0 |< 14.2 | |V |52475. | | 265. | |Me |00001 GSC | +060875 |V0875 Ara |170943.5-514052 |M | 10.4 |< 14.0 | |V |52705. | | 240. | | |N0002 GSC | +060876 |V0876 Ara |171901.8-544556 |ZZA | 15.6 |( 0.10 )| |V | | | | |DA7 |75032 75033| +060877 |V0877 Ara |171653.9-653252 |UGSU | 13.5 |< 15.5 | |p | | | | | |N0026 76152| +060878 |V0878 Ara *|164948.8-470746 |EW: | 8.00 | 8.22 | 8.21 |V |52102.557 | | 0.770478 | |B3II/III |78011 CoD | +060879 |V0879 Ara |171205.4-663600 |M | 12.2 |< 14.8 | |V |52560. | | 340. | | |00001 02383| +060880 |V0880 Ara |172925.1-511023 |M | 11.2 | 14.7 | |V |52406. | | 186. | |Me |78090 GSC | +060881 |V0881 Ara *|174155.0-453416 |EA | 10.14 | 10.63 | 10.57 |V |52764.755 | | 2.41887 | |F8 |78011 06561| +060882 |V0882 Ara |163956.4-610928 |EA | 7.61 | 7.80 | 7.77 : |V |48180.587 | | 20.9659 |03 |A2IV |79018 DM | +060883 |V0883 Ara *|165145.1-501747 |EA | 8.55 | 9.0 : | 8.79 |V |52192.575 | | 61.874 |02 : |ApSi |79003 DM | +060884 |V0884 Ara |170241.0-585420 |EA | 9.20 | 9.48 | 9.3 : |V |51932.820 | | 15.4908 |05 |B8II/III |79011 DM | +060885 |V0885 Ara |170359.7-632436 |EB | 13.37 | 14.2 : | 13.75 |V |53417.842 | | 0.52382 | | |79009 79063| +060886 |V0886 Ara |172156.2-512526 |SRB | 10.7 | 12.3 | |V | | | 380. | | |79100 79222| +060887 |V0887 Ara |172710.1-571144 |EB: | 13.6 | 14.25 : | 13.8 : |V |52508.663 | | 0.55277 | | |79009 GSC | +060888 |V0888 Ara |173030.6-614625 |EW | 8.75 | 9.09 | 9.07 |V |51966.816 | | 0.899788 | |F2IV/V |79011 DM | +060889 |V0889 Ara |173942.0-523803 |EA | 11.27 | 12.07 | 12.06 |V |52563.539 | | 1.05333 |15 | |79018 DM | +060890 |V0890 Ara |174134.5-485436 |CWA | 11.9 | 12.8 | |V |53130.23 | | 10.5919 |22 | |79209 79136| +060891 |V0891 Ara |174150.2-515336 |EB | 12.4 | 13.4 | 12.7 |V |51994.792 | | 0.524694 | | |79018 GSC | +060892 |V0892 Ara |174327.5-522143 |EA | 11.41 | 12.0 | 11.85 |V |53526.855 | | 3.14535 |06 | |79009 DM | +060893 |V0893 Ara |174703.3-463350 |EA | 13.4 | 14.1 : | 14.1 : |V |53463.860 | | 5.6303 |05 | |79001 79089| +060894 |V0894 Ara |174830.3-511336 |EA | 12.25 | 13.3 | 12.37 |V |52463.628 | | 1.65552 |14 | |79003 79118| +060895 |V0895 Ara |180601.7-473127 |RVA | 9.84 | 12.76 | |V |52057.0 | | 108.71 | | |79123 DM | +060896 |V0896 Ara |180616.7-560213 |EA | 13.5 | 14.15 : | 13.9 : |V |52548.610 | | 0.96025 |13 | |79009 79010| +060897 |V0897 Ara |163531.0-503210 |M | 10.9 |< 14.4 | |V |54922. | | 528. | |Se |80001 2MASS| NL80_3 +060898 |V0898 Ara *|164408.9-471904 |BCEP | 10.02 | 10.17 | |V | | | 0.2020686 | |B0.5III |80445 DM | NL80_3 +060899 |V0899 Ara |164554.9-535731 |M | 11.7 |< 14.7 | |V |55070. | | 400. | | |80239 USNO | NL80_3 +060900 |V0900 Ara |164630.2-470110 |BCEP | 10.86 |( 0.06 )| |V | | | 0.2242066 | | |80445 GSC | NL80_3 +060901 |V0901 Ara |165553.6-480852 |BCEP | 9.00 | 9.06 | |V | | | 0.2649903 | |B1II |80445 DM | NL80_3 +060902 |V0902 Ara |165732.4-463747 |SR | 3.78 | 4.86 | |K | | | 527. : | |C |80166 2MASS| NL80_3 +060903 |V0903 Ara |170329.0-565757 |EW | 12.34 |( 0.06 )| |I |53504.1880 | | 0.30158 | | |80231 USNO | NL80_3 +060904 |V0904 Ara |171145.1-602614 |RR: | 12.28 |( 0.1 )| |I | | | 0.37350 | | |80231 GSC | NL80_3 +060905 |V0905 Ara |171301.2-610950 |EW | 14.00 |( 0.2 *)| |V |53152.391 | | 0.243909 | | |80006 USNO | NL80_3 +060906 |V0906 Ara |171317.8-611035 |EA | 15.11 |( 0.25 *)| |V |53926.381 | | 1.0226 | | |80006 USNO | NL80_3 +060907 |V0907 Ara |172022.6-584351 |EW | 13.3 | 13.6 | 13.5 : |V |54308.5914 | | 0.467014 | | |80242 80242| NL80_3 +060908 |V0908 Ara |172956.8-554346 |RRAB | 13.3 | 13.9 : | |V |54962.7427 | | 0.578642 |18 | |80242 80242| NL80_3 +060909 |V0909 Ara *|174028.4-474415 |M | 11.7 |< 15.0 | |V |55075. | | 194. | |Me |80001 2MASS| NL80_3 +060910 |V0910 Ara |174323.3-473353 |EA | 8.68 | 8.90 | 8.74 |V |52898.614 | | 7.35765 | |Am(A0/A5/A7) |80011 DM | NL80_3 +060911 |V0911 Ara |174835.1-460036 |EB | 13.4 | 14.0 | 13.9 |V |52026.800 | | 0.51275 | | |80011 USNO | NL80_3 +060912 |V0912 Ara |175031.7-493154 |DSCT | 12.1 | 12.4 | |V | | | 0.0726830 | | |80242 80242| NL80_3 +060913 |V0913 Ara |175737.8-514248 |RRAB | 13.1 | 13.6 | |V |52198.498 | | 0.76025 |29 | |80135 USNO | NL80_3 +060914 |V0914 Ara |175824.0-492539 |EA | 12.38 | 12.6 | |V |53909.8807 | | 1.44315 |12 | |80242 80242| NL80_3 +060915 |V0915 Ara |180002.5-501144 |RRC | 13.7 | 14.2 | |V |52164.49 | | 0.392725 |46 : | |80135 USNO | NL80_3 +069001 |alf Ara |173150.5-495234 |BE | 2.79 | 3.13 | |b | | | 0.9807 | |B2Vne |71150 CoD | +069009 |iot Ara |172316.1-472806 |BE | 5.18 | 5.26 | |V | | | 0.5565 | |B2IIIne |71150 68335| +070001 |R Ari *|021607.1+250324 |M | 7.1 | 14.3 | |V |53640. | | 185.67 |47 |M3e-M6e |00001 00002| +070002 |S Ari |020437.7+123137 |M | 9.3 | 15.8 | |V |53710. | | 291.0 |44 |M4e-M5e |00001 00002| +070003 |T Ari *|024819.7+173034 |M | 7.3 | 11.5 | |V |52600. | | 340. |49 |M6e-M8e |00001 00002| +070004 |U Ari *|031103.0+144800 |M | 7.2 | 15.8 | |V |53658. | | 371.1 |41 |M4e-M7.5e |00001 00002| +070005 |V Ari |021500.1+121424 |SRC | 8.45 | 8.90 | |V | | | 58.7 | |C5II |N0002 HIP | +070006 |W Ari *|032045. +285711:|N: | 9.5 |< 20. | |V | |1855 | | | |72118 BD | +070007 |X Ari *|030830.9+102645 |RRAB | 8.97 | 9.95 | |V |52894.804 | | 0.6511628 |13 |A8-F4 |00001 HIP | +070008 |Y Ari |024100.2+311159 |SRB | 9.9 | 12.5 | |p | | | 109. | |M5e |00634 BD | +070009 |Z Ari |030811.8+265917 |M | 10.6 | 14.4 | |V |51495. | | 337. | |M5 |00001 00565| +070010 |RR Ari |015551.0+233438 |CST: | 5.76 | | |V | | | | |K0III |HIP HIP | +070011 |RS Ari *|024614.1+275239 |EA | 10.7 | 12.1 | 11.0 |p |52507.45 | | 8.80315 |10 *|F8IV-V+G5IV |N0041 BD | +070012 |RT Ari |030523.8+193150 |M | 10.2 |< 15.0 | |V |50807. | | 258.1 | | |N0002 06286| +070013 |RU Ari *|024445.5+121903 |M | 10.6 |< 13.6 | |V |51425. | | 353.5 |40 : |M10 |02021 01423| +070014 |RV Ari *|021507.5+180428 |DSCT | 11.61 |( 0.75 )| |V | | | 0.09312808 | |A0 |N0134 00196| +070015 |RW Ari *|021603.7+173159 |RRC | 12.12 | 12.60 | |V |51139.242 | | 0.3543006 |42 | |00001 04737| +070016 |RX Ari *|021520.8+223411 |EA | 9.40 | 10.1 | 9.5 |V |38398.5697 | | 1.029626 |18 |F2V |N0041 BD | +070017 |RY Ari *|020228.4+161611 |LB | 9.1 | 10.1 | |V | | | | |M6.5 |01280 BD | +070018 |RZ Ari |025548.5+181954 |SRB | 5.45 | 6.01 | |V | | | 56.5 | |M6III |N0135 HIP | +070019 |SS Ari *|020418.4+240002 |EW | 10.10 | 10.63 | 10.5 |V |52500.2879 | | 0.40598257 | |F8 |N0041 BD | +070020 |ST Ari |031007.9+132713 |SRB | 9.0 | 10.6 | |V | | | 96. | |M4 |00001 BD | +070021 |SU Ari *|024830.5+172147 |N: | 9.5 |< 14.5 | |V | |1854 | | | |72118 72118| +070022 |SV Ari |032503.3+194953 |N: | 12. | 22.1 | |p |17156. :|1905 | | | |72118 72118| +070023 |SW Ari |020504.2+192521 |LB | 9.8 | 11.1 | |V | | | | |M3 |01110 01110| +070024 |SX Ari |031214.3+271525 |SXARI | 5.75 | 5.81 | |V | | | 0.727902 | |B9pSi |N0136 BD | +070025 |SY Ari |021734.1+214259 |RRAB | 12.1 | 13.4 | |V |53586.853 | | 0.5666818 |15 : | |00001 02345| +070026 |SZ Ari *|032623.9+194010 |EA | 11.0 | 11.8 | |V |52500.15 | | 1.717523 |11 |F0 |N0041 02610| +070027 |TT Ari *|020653.1+151742 |NL | 10.2 | 16.5 | |V | | | | |pec(e) |N0137 72085| +070028 |TU Ari *|020904.3+211129 |RRAB | 13.63 | 14.80 | |V |51467.68 | | 0.47157 |20 | |N0053 00141| +070029 |TV Ari |021108.7+202700 |RRAB | 13.1 | 14.2 | |V |53340.652 | | 0.579923 |20 | |00001 02345| +070030 |TW Ari |022948.1+160249 |LB | 9.4 | 10.4 | |V | | | | |M5 |01280 BD | +070031 |TX Ari *|030551.8+283404 |EA | 11.4 | 12.6 | |p |52502.191 | | 2.691352 |11 *| |N0041 04036| +070032 |TY Ari |020840.3+251306 |RRC | 13.0 | 13.9 | |V |52277.302 | | 0.329764 |40 | |N0139 02345| +070033 |TZ Ari |020013.0+130307 |UV+BY: | 14.12 | 15.42 | |U | | | | |M4.5Ve |05509 05509| +070034 |UU Ari *|023038.4+195119 |DSCTC | 6.10 | 6.15 | |V | | | 0.0676 | |A9V |N0140 HIP | +070035 |UV Ari *|024457.6+122645 |DSCTC | 5.18 | 5.22 | |V | | | 0.0355 | |A7III-IV |07985 HIP | +070036 |UW Ari |030725.7+175248 |CST: | 6.11 | | |V | | | | |B1.5V |N0141 HIP | +070037 |UX Ari *|032635.4+284254 |RS | 6.36 | 6.70 | |V | | | | |G5V+K0IV |N0142 HIP | +070038 |UY Ari |020549.1+172935 |SRB | 9.75 | 10.19 | |V | | | 34.6 | |M5 |00001 00196| +070039 |UZ Ari |030134.7+214813 |SR | 11.8 | 12.6 | |V | | | 163. : | |M8 |00001 GSC | +070040 |VV Ari |015109.5+203052 |DSCTC | 6.69 | 6.73 | |V | | | 0.0764 | |F0III |08336 HIP | +070041 |VW Ari *|022645.6+103355 |DSCT | 6.64 | 6.76 | |V | | | 0.1606 | |F0IV |N0143 HIP | +070042 |VX Ari |024415.5+253124 |UV | 11.2 : | 12.14 | |B | | | | |M3.5Ve |08341 HIP | +070043 |VY Ari *|024843.7+310655 |RS | 6.68 | 7.15 | |V | | | 16.1996 | |K3-4IV-V |77103 HIP | +070044 |VZ Ari |024845.9+251117 |ACV | 5.82 | 5.89 | |V | | | | |A0V |68036 HIP | +070045 |WW Ari *|020812.3+150847 |UV:+BY: | 15.2 | 16.2 | |B | | | | |M4.5Ve+M4.5Ve |69040 69040| +070046 |WX Ari *|024736.2+103539 |E+NL | 15.3 | 15.8 | |V |51081.54406 | | 0.13935119 | |pec(e) |N0144 72085| +070047 |WY Ari |025637.6+200537 |INT | 12.25 | 12.88 | |V | | | | |K5Ve |N0145 06415| +070048 |WZ Ari |030840.7+253531 |RS | 8.17 | 8.25 | |V | | | 6.5870 | |G4V+G6V |HIP HIP | +070049 |XX Ari |031947.8+190435 |ACV | 7.33 | 7.42 | |V | | | 2.4997 | |B9VSiCr |77014 HIP | +070050 |XY Ari |025608.2+192634 |XM | 13.54 | 17.60 | |J | | | 0.25271 | |G0: |72017 2MASS| +070051 |XZ Ari *|023224.1+280305 |EW | 13.84 | 14.06 | 14.0 |V |49605.929 | | 0.265461 | | |73003 GSC | +070052 |YY Ari *|024316.5+220335 |SR | 5.12 | 5.32 | |J | | | 184. : | |M8 |73033 GSC | +070053 |YZ Ari *|025727.5+111806 |M | 5.05 | 6.55 | |J | | | 447. | |M8 |73014 2MASS| +070054 |ZZ Ari |015531.2+171122 |SRB | 8.14 | 8.47 | |V | | | 98. | |M2 |00001 HIP | +070055 |AA Ari |020337.7+225222 |RV: | 8.53 | 8.77 | |V |53586.9 | | 67.1 | |K7 |00001 HIP | +070056 |AB Ari |020558.7+220929 |LB: | 9.00 | 9.20 | |V | | | | |M0 |00001 HIP | +070057 |AC Ari |020817.0+244909 |SRB | 7.08 | 7.28 | |V | | | 32. | |M1 |00001 HIP | +070058 |AD Ari *|021745.4+182718 |EB | 7.40 | 7.47 | 7.4 |V |53330.654 | | 0.53972 | |F0 |N0002 HIP | +070059 |AE Ari |022114.5+232536 |LB | 7.4 | 7.8 | |V | | | | | |00001 HIP | +070060 |AF Ari |022206.6+225225 |EA: | 6.71 | 6.99 | |Hp|48081.59 | | | |G2IV |HIP HIP | +070061 |AG Ari *|022627.0+125356 |EA | 8.14 | 8.42 | 8.3 |V |48500.2720 | | 1.96315 | |B9 |HIP HIP | +070062 |AH Ari |023433.5+250057 |LB: | 8.26 | 8.40 | |V | | | | |K5 |00001 HIP | +070063 |AI Ari |023500.6+222758 |SRB | 10.0 | 10.6 | |V | | | 41.4 | |M5 |N0002 HIP | +070064 |AK Ari |024031.7+211116 |LB: | 7.87 | 8.02 | |V | | | | |M1 |00001 HIP | +070065 |AL Ari *|024236.3+124408 |EA | 9.23 | 9.77 | 9.4 |V |52892.849 | | 3.747457 |06 |F8 |00001 HIP | +070066 |AM Ari |024339.0+173255 |SRB | 7.18 | 7.38 | |V | | | 55. : | |M1 |00001 HIP | +070067 |AN Ari |025318.9+120017 |SRS | 9.10 | 9.42 | |V | | | 26.4 | |M2 |N0002 HIP | +070068 |AO Ari |025541.3+310235 |LB: | 6.81 | 6.93 | |Hp| | | | |M0 |HIP HIP | +070069 |AP Ari |025742.8+235745 |BY: | 9.90 | 10.06 | |Hp| | | | |K0V |HIP HIP | +070070 |AQ Ari |030617.1+113955 |SRS: | 7.14 | 7.27 | |Hp| | | 4.17 : | |M1III |HIP HIP | +070071 |AR Ari |031804.2+245238 |DSCT | 7.87 | 7.98 | |Hp| | | 0.1770392 | |F0 |HIP HIP | +070072 |AS Ari |032514.0+211251 |LB: | 7.86 | 8.02 | |Hp| | | | |M1 |HIP HIP | +070073 |AT Ari |032659.4+244925 |SRS: | 8.06 | 8.17 | |Hp| | | 7.64 : | |K5 |HIP HIP | +070074 |AU Ari |020856.7+173446 |SRS | 8.44 | 8.55 | |V | | | 6.1236 : | |M0 |HIP HIP | +070075 |AV Ari |021037.6+193001 |SRS | 5.67 | 5.74 | |V | | | 5.0320 : | |M3III |HIP HIP | +070076 |AW Ari *|014843.6+130412 |EW | 13.66 | 14.33 | 14.3 |* |52194.8429 | | 0.38176699 | | |77017 GSC | +070077 |AX Ari |015814.0+223412 |SRB | 12.3 | 13.4 | |V | | | 248. | | |N0002 GSC | +070078 |AY Ari |024200.8+305609 |SRD: | 6.82 |( 0.02 )| |V | | | | |K0IV |77023 HIP | +070079 |AZ Ari |021123.1+212239 |BY | 7.33 |( 0.02 )| |V | | | 8.98 : | |G5V |78018 HIP | +070080 |BB Ari |024457.7+273109 |UGSU | 13.5 |< 17. | |* | | | | | |78043 78043| +070081 |BC Ari |024809.1+270407 |BY | 7.56 |( 0.02 )| |V | | | | |K1V |78018 HIP | +070082 |BD Ari |024812.4+161628 |SRB | 11.1 | 12.2 | |V | | | 192. | |M7 |79100 GSC | +070083 |BE Ari |014710.2+234532 |RS: | 9.90 | 10.15 | |V | | | 21.203 | |K0 |80060 80060| NL80_1 +070084 |BF Ari *|015141.6+124430 |* | 15.18 |( 0.4 )| |Ks| | | 0.123 | |T1 |80045 2MASS| NL80_1 +070085 |BG Ari *|015151.9+140048 |NL | 19.5 | 20.3 | |g | | | | |pec(e) |80030 USNO | NL80_1 +070086 |BH Ari |015548.0+242606 |RS | 10.6 | 10.8 | |V | | | 3.2541 | | |80021 DM | NL80_1 +070087 |BI Ari *|015727.9+182740 |RPHS | 15.3 |( 0.04 )| |B | | | 0.001901 | |sdB+G5/K5V |80105 80204| NL80_1 +070088 |BK Ari |015935.6+234853 |RS | 12.12 | 12.36 | |* | | | 5.5569 | | |80021 GSC | NL80_1 +070089 |BL Ari |020319.4+220521 |RRAB | 13.72 | 14.51 | |* |51409.93 | | 0.50921 | | |80026 GSC | NL80_1 +070090 |BM Ari *|020638.3+141528 |EW | 10.8 | 11.4 | 11.35 |V |53739.608 | | 0.484967 | | |80002 DM | NL80_1 +070091 |BN Ari *|020907.8+262907 |EW | 10.38 | 11.02 | 10.98 |V |51525.671 | | 0.299376 | | |80042 GSC | NL80_1 +070092 |BO Ari *|021208.8+270818 |EW | 9.77 | 10.19 | 10.19 |V |52898.8115 | | 0.318197 | | |80002 GSC | NL80_1 +070093 |BP Ari |022032.4+200729 |RS | 9.26 | 9.50 | |V | | | 9.18 | |G5 |80034 DM | NL80_1 +070094 |BQ Ari *|024840.7+134448 |EW | 10.28 | 10.55 | 10.54 |V |51382.902 | | 0.282336 | | |80042 DM | NL80_1 +070095 |BR Ari |025351.6+152107 |RS | 10.36 | 10.48 | |V | | | 1.009 | |G0V |80039 GSC | NL80_1 +070096 |BS Ari *|025525.8+200452 |IT | 10.69 |( 0.11 )| |Ic| | | 3.36 | |K4V |80127 GSC | NL80_1 +070097 |BT Ari |025557.8+200545 |BY: | 11.6 |( 0.06 )| |Ic| | | 4.249 | |K0V |80128 GSC | NL80_1 +070098 |BU Ari *|025608.0+200324 |INT | 12.51 |( 1.14 )| |Ic| | | 1.27 | |M1IIIe |80127 USNO | NL80_1 +070099 |BV Ari *|025608.4+200339 |INT | 12.17 |( 0.12 )| |Ic| | | 6.6 | |M4 |80127 GSC | NL80_1 +070100 |BW Ari |025746.7+293941 |BY | 8.90 |( 0.03 )| |V | | | 9.57 | |G5 |80129 HIP | NL80_1 +070101 |BX Ari *|025811.2+203003 |INT | 10.54 |( 0.56 )| |Ic| | | 0.505 : | |K4V |80128 GSC | NL80_1 +070102 |BY Ari |025816.1+194719 |INT | 13.40 |( 0.27 )| |Ic| | | 1.205 | |M5 |80128 USNO | NL80_1 +070103 |BZ Ari |025828.8+294754 |IT: | 11.26 | 11.43 | |* | | | 0.6741 | |K0IV |80021 GSC | NL80_1 +070104 |CC Ari |030239.9+303218 |BY | 12.4 | 12.6 | |* | | | 3.20744 | | |80060 80060| NL80_1 +070105 |CD Ari |030315.5+271642 |RRC | 11.3 | 11.9 | |V |52939.728 | | 0.328282 |38 | |80002 GSC | NL80_1 +070106 |CE Ari |030349.9+250234 |RS | 11.50 | 11.62 | |* | | | 2.6754 | | |80021 GSC | NL80_1 +070107 |CF Ari |030405.1+300310 |RS: | 11.05 | 11.17 | |* | | | 1.8070 | |K0V |80021 GSC | NL80_1 +070108 |CG Ari |031531.9+260450 |RS | 11.94 | 12.18 | |* | | | 9.3197 | | |80021 GSC | NL80_1 +070109 |CH Ari |032231.6+285320 |RS | 10.80 | 10.93 | |* | | | 1.6648 | | |80021 GSC | NL80_1 +070110 |CI Ari |032305.5+183445 |RRAB | 12.2 | 13.6 | |V |52892.862 | | 0.455289 |15 | |80002 GSC | NL80_1 +070111 |CK Ari |032714.4+272309 |RS | 11.04 | 11.17 | |* | | | 10.0933 | |M0.5V |80021 HIP | NL80_1 +070112 |CL Ari *|032906.6+272449 |EB | 9.75 | 10.31 | 10.00 |V |51475.670 | | 0.993618 | |F2 |80048 DM | NL80_1 +079003 |gam Ari *|015331.8+191738 |ACV | 4.62 |( 0.04 )| |V | | | 2.6095 | |A1pSrCrEu |08141 HIP | +0790191|tau 1 Ari *|032113.6+210850 |EB: | 5.26 | 5.32 | |Hp|48500.579 | | 2.20356 | |B5IV |HIP HIP | +080001 |R Aur *|051717.7+533510 |M | 6.7 | 14.0 | |V |54040. | | 450. |51 |M6.5e-M9.5e |00001 HIP | +080002 |S Aur |052707.4+340859 |SR | 8.2 | 14.7 | |V | | | 596. | |C4-5,4-5(N3) |N0039 00002| +080003 |T Aur *|053159.1+302646 |NB+EA | 4.1 | 15.5 | |B |12088. |1891 | | |pec(Nova) |00488 03195| +080004 |U Aur *|054209.1+320223 |M | 7.4 | 15.5 | |V |54563. | | 400. |40 |M7e-M9e |00001 00002| +080005 |V Aur |062402.3+474224 |M | 8.5 | 13.0 | |V |54699. | | 349. |54 |C6,2e(N3e) |00001 HIP | +080006 |W Aur |052654.6+365411 |M | 8.0 | 15.3 | |V |54345. | | 271.3 |40 |M3e-M8e |00001 00002| +080007 |X Aur |061213.4+501340 |M | 7.8 | 13.8 | |V |54858. | | 165.5 |50 |M3e-M7e |00001 HIP | +080008 |Y Aur |052839.2+422616 |DCEP | 9.16 | 10.02 | |V |48164.755 | | 3.8594076 |33 |F5-F9 |00001 HIP | +080009 |Z Aur *|060145.5+531820 |SR | 9.2 | 12.0 | |V |54830. | | 111.5 |47 |M3 |00001 00002| +080010 |RR Aur |061208.2+430952 |M | 9.0 | 15.6 | |V |54816. | | 309.8 |47 |M3e-M7e |00001 00002| +080011 |RS Aur *|060353.7+461735 |SR | 8.7 | 11.7 | |V | | | 173. |47 |M4e-M6e |N0039 HIP | +080012 |RT Aur *|062834.1+302935 |DCEP | 5.00 | 5.82 | |V |54153.880 | | 3.728485 |25 |F4Ib-G1Ib |00001 HIP | +080013 |RU Aur *|054007.9+373811 |M | 8.0 | 16.0 | |V |54782. | | 463.0 |42 |M7e-M9e |00001 HIP | +080014 |RV Aur |063444.6+423013 |SRB | 11.8 | 13.1 | |p | | | 229. | |C4,5 |00373 HIP | +080015 |RW Aur *|050749.6+302405 |IT | 9.2 | 12.5 | |V | | | | |G5Vep |01923 HIP | +080016 |RX Aur *|050123.2+395737 |DCEP | 7.28 | 8.02 | |V |48503.159 | | 11.626 |49 |F6-G2 |HIP HIP | +080017 |RY Aur *|051825.1+382019 |EA | 11.7 | 14.0 | |p |53426.412 | | 2.725396 |14 *|B9 |00001 GSC | +080018 |RZ Aur *|054922.4+314209 |EA | 11.9 | 14.0 | |V |52502.951 | | 3.010585 |12 *|A |N0041 01924| +080019 |SS Aur *|061322.5+474426 |UGSS | 10.2 | 16.13 | |V | | |( 55.7 ) | |pec(UG) |N0150 72085| +080020 |ST Aur *|061459.0+464748 |M | 9.6 | 17.9 | |V |54387. | | 295.6 | | |00001 00002| +080021 |SU Aur *|045559.4+303402 |INT | 8.9 | 10.0 | |V | | | | |G2III(Li) |N0151 HIP | +080022 |SV Aur |060340.2+462608 |LB | 9.4 | 10.3 | |V | | | | |M1 |01078 BD | +080023 |SW Aur |043819.3+311848 |M | 13.3 | 17.0 | |p |51580. | | 309.85 |50 : | |00001 GSC | +080024 |SX Aur *|051142.9+420955 |EB | 8.38 | 9.14 | 8.87 |V |52500.3179 | | 1.2100855 | |B3V+B5V |N0041 HIP | +080025 |SY Aur *|051239.2+424954 |DCEP | 8.74 | 9.40 | |V |48164.95 | | 10.14465 |50 |F5-F8 |00001 HIP | +080026 |SZ Aur *|054156.6+385556 |M | 8.2 | 15.3 | |V |54551. | | 455.6 |46 |M8e |00001 GSC | +080027 |TT Aur *|050942.3+393511 |EA | 8.40 | 9.51 | 8.97 |V |48599.2964 | | 1.332735 |21 *|B2Vn |N0152 GSC | +080028 |TU Aur |063537.1+453723 |SRB | 7.60 | 8.30 | |Hp| | | 156. | |M5III |00001 HIP | +080029 |TV Aur |045808.2+483337 |SRB | 10.1 | 11.1 | |V | | | 182.9 | |S5,8:-S7,5 |01078 BD | +080030 |TW Aur *|055706.7+453034 |SRB | 7.4 | 9.5 | |V | | | 104. | |M5III |00361 BD | +080031 |TX Aur |050905.5+390009 |LB | 8.5 | 9.2 | |V | | | | |C5,4(N3) | HIP | +080032 |TY Aur |045856.1+481925 |CST | 10.64 | | |V | | | | |F8 | BD | +080033 |TZ Aur *|071135.0+404637 |RRAB | 11.08 | 12.45 | |V |53751.356 | | 0.39167475 |14 |A9-F7 |00001 HIP | +080034 |UU Aur *|063632.8+382644 |SRB | 4.9 | 7.0 | |V | | | 441. | |C5,3-C7,4(N3) |N0039 HIP | +080035 |UV Aur *|052148.9+323040 |M | 7.4 | 10.7 | |V |54821. | | 392.8 | |C6,2-C8,2Jep(Ne) |00001 HIP | +080036 |UW Aur *|065717.4+410704 |SRA | 9.5 | 11.6 | |V |42800. | | 560.7 |55 |C4,5J(R6p/N3) |04972 HIP | +080037 |UX Aur |051557.9+493247 |SRC | 8.4 | 9.2 | |V | | | 90. : | |M4II |01078 HIP | +080038 |UY Aur *|045147.4+304714 |INT | 11.2 | 13.53 | |V | | | | |K7Ve(Li) | GSC | +080039 |UZ Aur |051510.0+400757 |SRB | 9.7 | 10.8 | |p | | | 69. : | |M3-M4III |00589 HIP | +080040 |VV Aur |061342.2+453111 |M | 12.2 |< 15. | |p |51508. | | 424.70 | |M8e |00001 GSC | +080041 |VW Aur *|061714.4+331223 |SRB | 10.0 | 11.6 | |p | | | 215. | |M6 |01505 BD | +080042 |VX Aur |072830.5+405813 |M | 8.0 | 13.1 | |V |54467. | | 325.8 | |M5e |00001 HIP | +080043 |VY Aur |060952.1+463428 |M | 9.3 | 15.3 | |V |54853. | | 405.8 | |M8e |00001 00002| +080044 |VZ Aur |061427.1+464921 |CST: | 10.99 | | |V | | | | |A9 |N0153 BD | +080045 |WW Aur *|063227.2+322718 |EA | 5.86 | 6.54 | 6.43 |V |52501.8139 | | 2.52501936 |10 *|A4m+A5m |N0041 HIP | +080046 |WX Aur |050642.0+473502 |LB | 13.0 | 14.0 | |p | | | | |M3 |01078 GSC | +080047 |WY Aur |054226.2+471020 |SR: | 13.21 | 13.47 | |V | | | | | |73062 01925| +080048 |WZ Aur |054542.9+433726 |M | 11.4 |< 16. | |V |51450. | | 283.8 | | |00001 01921| +080049 |XX Aur *|054709.9+410952 |EB | 13.1 | 14.6 | 13.4 |p |52503.51 | | 5.412322 | | |N0041 01921| +080050 |XY Aur |055545.6+410624 |M | 11.7 |< 15. | |p |34350. | | 283.1 | | |00001 01925| +080051 |XZ Aur |060429.5+471712 |SR | 11.3 | 12.5 | |V | | | 215. : | |C4-5,4-5(N) |00001 00002| +080052 |YY Aur |060406.2+420031 |M | 10.0 |< 14.4 | |V |53270. | | 337.9 : | |M5e |00001 01921| +080053 |YZ Aur *|051522.0+400441 |DCEP | 9.94 | 10.93 | |V |43816.417 | | 18.192830 |30 |F5-G2 |N0154 HIP | +080054 |ZZ Aur *|054542.1+410859 |EB | 10.75 | 11.69 | 11.04 |V |52500.2769 | | 0.6012172 | |A7 |N0041 BD | +080055 |AA Aur |064112.9+440959 |M | 8.8 | 16.0 | |V |54420. | | 267.9 | |M3e |00001 08156| +080056 |AB Aur *|045545.8+303304 |INA | 6.3 | 8.4 | |V | | | | |A0Ve+sh | HIP | +080057 |AC Aur |052704.3+500728 |M | 8.5 | 15.0 | |V |54721. | | 312.4 | |M5e |00001 GSC | +080058 |AD Aur |052900.0+390254 |SRB | 11.0 | 13.1 | |p | | | 162.3 | |M6 |00608 HIP | +080059 |AE Aur *|051618.1+341844 |INA | 5.78 | 6.08 | |V | | | | |O9.5V | HIP | +080060 |AF Aur |054844.4+445437 |SR: | 11.3 | 14.5 : | |p | | | | |C4,4(N) | 04986| +080061 |AG Aur |062735.3+470152 |SRD | 8.8 | 11.8 | |V |54828. | | 99. |48 |G2e-K0(M3) |00001 GSC | +080062 |AH Aur *|062604.9+275956 |EW | 10.18 |( 0.50 )|( 0.50 )|V |52500.3848 | | 0.4941067 | |F7V |N0041 HIP | +080063 |AI Aur |063349.6+301518 |SR | 9.06 | 9.79 | |V | | | 65. | |M5III |N0155 BD | +080064 |AK Aur |063918.0+313644 |EA | 10.55 |( 0.5 )| |B |51577.66 | | 4.76 |12 |A1 |00001 GSC | +080065 |AL Aur |063317.4+313530 |M | 9.0 | 16.6 | |V |53824. | | 388.0 | |M7e |00001 02014| +080066 |AM Aur *|045637.0+321211 |EA | 10.08 | 11.22 | 10.15 |V |52983.529 | | 13.61855 |14 *|A8 |00001 BD | +080067 |AN Aur |045941.5+405010 |DCEP | 10.11 | 10.83 | |V |51536.715 | | 10.289381 |52 |F6-F9 |00001 HIP | +080068 |AO Aur *|054745.0+320053 |DCEP | 10.38 | 11.30 | |V |51437.91 | | 6.76216 |27 |F5-G0 |00001 08632| +080069 |AP Aur *|072350.3+362653 |EB | 11.0 |( 0.54 )|( 0.51 )|V |50461.0921 | | 0.56937243 | |A2 |N0156 00002| +080070 |AQ Aur *|050630.3+352316 |M | 10.3 | 15.5 | |V |54791. | | 343.0 | |M7 |00001 N0157| +080071 |AR Aur *|051818.9+334603 |EA | 6.15 | 6.82 | 6.70 |V |52501.392 | | 4.134651 |07 *|B9p+B9(Hg-Mn) |N0041 HIP | +080072 |AS Aur |060524.4+284723 |DCEP | 11.52 | 12.25 | |V |47648.646 | | 3.175001 |22 |F6-F9 |N0154 N0159| +080073 |AT Aur |052313.5+361106 |M | 13.9 |< 15.7 | |p |51415. :| | 376. | |M9 |01938 00533| +080074 |AU Aur |045415.0+495400 |M | 10.0 | 14.0 | |V |54521. | | 400.5 |50 |C6-7,3e(N0e) |00001 HIP | +080075 |AV Aur |053713.6+390439 |CST: | 9.64 | | |V | | | | |M0 |N0153 GSC | +080076 |AW Aur *|054000.7+284249 |M | 10.1 | 17.1 | |V |53823. | | 443.2 | |M5-M9 |00001 00002| +080077 |AX Aur |054650.8+313553 |DCEP | 12.15 | 12.68 | |V |48569.54 | | 3.04664 |30 | |N0160 N0160| +080078 |AY Aur |055603.6+320918 |M | 9.8 | 16. | |V |54196. | | 384.3 | |M6.5 |00001 00002| +080079 |AZ Aur *|060107.3+394015 |M | 8.2 | 14.0 | |V |54467. | | 411.9 | |C7,1e-C8,2-3(N0e)|00001 00002| +080080 |BB Aur |060325.0+313841 |SRB | 11.0 | 12.4 | |p | | | 704. | |M3-M4S |00608 00608| +080081 |BC Aur *|054616.6+325050 |EA | 11.6 | 13.2 | 11.7 |p |54803.768 | | 5.759759 |10 | |00001 GSC | +080082 |BD Aur |060744.0+403118 |M | 13.5 |< 15.5 | |p |51621. | | 260. | | |00001 GSC | +080083 |BE Aur |045940.0+295827 |EA | 13.5 | 14.7 | |V |46717.582 | | 2.104454 |11 *| |00332 00533| +080084 |BF Aur *|050503.5+411719 |EB | 8.70 | 9.48 | 9.48 |V |52500.950 | | 1.5832232 | |B5V+B5V |N0041 HIP | +080085 |BG Aur | | | | | | | | | | | | |=V1240 Tau +080086 |BH Aur |051204.3+335747 |RRAB | 11.12 | 12.20 | |V |53755.264 | | 0.4560898 |17 | |N0161 HIP | +080087 |BI Aur |051637.6+295209 |M | 13.5 | 16.3 | |p |51337. :| | 345. | |M6 |00001 00533| +080088 |BK Aur |051040.2+494115 |DCEP | 9.12 | 9.90 | |V |42825.384 | | 8.002432 |31 |G2 |08632 HIP | +080089 |BL Aur |055023.3+301948 |LB: | 14.2 | 15.3 | |p | | | | | |03602 02321| +080090 |BM Aur |055123.8+311357 |M | 13.3 | 16.0 | |p |51490. :| | 195. | | |00609 00533| +080091 |BN Aur |055437.8+312402 |M | 13.6 | 18.5 | |p |26250. | | 136. | | |00609 00533| +080092 |BO Aur |060010.6+291407 |SRB | 11.8 | 13.1 | |p | | | 1000. : | |M6 |00608 02310| +080093 |BP Aur |060122.1+283305 |LB | 13.9 | 14.9 | |p | | | | |M6.5 |00609 02321| +080094 |BQ Aur |060143.7+292716 |LB | 13.4 | 14.5 | |p | | | | |C5,3(N) |00609 02321| +080095 |BR Aur |060245.9+293845 |LB | 13.5 | 14.7 | |p | | | | |C |00609 02310| +080096 |BS Aur |060417.0+282902 |M | 10.2 |< 15.0 | |V |41255. | | 466.7 | |M8-M9 |N0162 02310| +080097 |BT Aur |060428.7+295105 |M | 13.0 | 18.5 | |p |27085. | | 560. | |M8: |00609 02310| +080098 |BU Aur |060957.7+312427 |SRA | 11.3 | 11.8 | |p |26655. | | 169. | |M1 |00609 02321| +080099 |BV Aur |061054.8+301352 |M | 13.8 | 17.0 | |p |26280. | | 388. | |M8 |00609 02310| +080100 |BW Aur |062659.1+454736 |M | 11.2 |< 14.0 | |V |51494. | | 360. | |M6 |00001 06286| +080101 |BX Aur |063432.5+424042 |LB: | 11.6 | 12.5 | |p | | | | | |01059 01059| +080102 |BY Aur |063750. +442859*|M | 14.9 |< 16.8 | |p |27727. | | 264. : | | |01941 | +080103 |BZ Aur |063959.3+444855 |LB | 14.6 | 15.8 | |p | | | | | |01941 GSC | +080104 |CC Aur |064907.8+455608 |LB | 12.9 | 14.7 | |p | | | | |M4 |01941 06286| +080105 |CD Aur |064938.5+481701 |M | 12.6 |< 16.5 | |p |51612. :| | 334.5 | | |01941 06286| +080106 |CE Aur |065521.1+461710 |M | 11.8 |< 17.5 | |p |50141. :| | 332. | |M7 |01941 06286| +080107 |CF Aur |045432.6+335621 |LB | 15.3 | 15.7 | |p | | | | | |00332 02320| +080108 |CG Aur *|050342.6+291132 |EA | 11.73 | 12.26 | 12.05 |R |52501.699 | | 1.8048556 |10 |A7 |N0041 GSC | +080109 |CH Aur |050529.5+313546 |EA | 14.8 | 16.6 | |p |51508.62 | | 5.010011 |15 | |00001 07806| +080110 |CI Aur *|050922.9+292716 |EA | 12.40 | 13.60 | 12.45 |V |52501.042 | | 1.870031 |10 *| |N0041 06445| +080111 |CK Aur |050949.3+365744 |EA | 12.0 | 13.0 | |p |28834.28 | | | |A0 |00608 00608| +080112 |CL Aur *|051254.2+333028 |EA | 11.7 | 13.01 |( 0.32 )|V |50097.2712 | | 1.24437505 |18 *|A0 |N0163 GSC | +080113 |CM Aur |052920.1+432433 |LB | 12.8 | 13.8 | |p | | | | |C5,4(N) |01059 HIP | +080114 |CN Aur |054507.8+511143 |SRB | 11.5 | 12.6 | |p | | | 85.6 | |M6 |01078 GSC | +080115 |CO Aur *|060028.5+351844 |CEP(B) | 7.43 | 7.97 | |V | | | 1.783027 | |F5Ib |N0164 GSC | +080116 |CP Aur *|060051.6+394439 |EA | 13.2 | 14.7 | 13.3 |R |51274.800 | | 2.7645 |08 | |N0015 GSC | +080117 |CQ Aur *|060353.6+311941 |EA/RS | 9.04 | 9.37 | 9.14 : |V |43814.05 | | 10.62251 |14 |G8IV+F5V |N0165 HIP | +080118 |CR Aur |062858.9+434545 |RRAB | 13.55 | 14.28 | |V |48157.86 | | 0.59141 |20 | |N0166 06286| +080119 |CS Aur |063324.4+442422 |SRB | 12.9 | 14.0 | |p | | | 109.8 | |M3 |01059 GSC | +080120 |CT Aur |063507.1+445551 |LB: | 13.0 | 13.8 | |p | | | | |M4 |01059 01059| +080121 |CU Aur |063600. +470743*|E | 15.6 | 16.7 | |p |27724.873 | | | | |01941 | +080122 |CV Aur |063957.6+440225 |LB: | 14.4 | 15.6 | |p | | | | | |01941 GSC | +080123 |CW Aur |064158.4+455258 |E | 15.5 | 16.3 | |p | | | | | |01941 GSC | +080124 |CX Aur |065622.1+465927 |LB: | 11.7 | 12.3 | |p | | | | |K8V |01941 HIP | +080125 |CY Aur |045740.1+460533 |DCEP | 11.42 | 12.32 | |V |43536.86 | | 13.84765 |37 | |00001 GSC | +080126 |CZ Aur |072848.9+355527 |LB | 10.5 | 11.5 | |p | | | | |M4 |00922 00922| +080127 |DD Aur |045631.6+335737 |LB | 13.5 | 14.8 | |p | | | | |M6 |00332 02320| +080128 |DE Aur |045649.4+364709 |LB | 15.2 | 15.9 | |p | | | | | |00332 02320| +080129 |DF Aur |045854.1+351351 |LB | 14.8 | 15.3 | |p | | | | |M6 |00332 02320| +080130 |DG Aur |050133.6+323403 |INSA | 13.5 | 15.0 | |p | | | | | |00082 GSC | +080131 |DH Aur |050144.1+351414 |SRB | 13.9 | 14.6 | |p | | | 500. : | |M3 |00332 GSC | +080132 |DI Aur |050603.8+372506 |LB | 15.2 | 15.7 | |p | | | | |C(N:) |00332 02320| +080133 |DK Aur |050630.2+343741 |LB | 15.2 | 15.9 | |p | | | | |S |00332 02320| +080134 |DL Aur |050722.8+322851 |LB | 14.0 | 15.1 | |p | | | | |M6 |00332 02320| +080135 |DM Aur |050756.9+374858 |M | 10.0 |< 13.5 | |V |54870. | | 337.7 | |M7 |00001 GSC | +080136 |DN Aur *|050800.0+332352 |RRC | 13.30 | 13.72 | |V |51473.802 | | 0.30846 |36 | |00001 GSC | +080137 |DO Aur |050913.3+363539 |EA | 14.1 | 14.6 | |p |52500.748 | | 0.788655 |19 *| |N0041 00533| +080138 |DP Aur |050927.3+302322 |M | 15.0 | 19. : | |p |51640. | | 256. | | |00332 GSC | +080139 |DQ Aur |050959.7+342845 |LB | 13.2 | 14.9 | |p | | | | |M6p |00332 GSC | +080140 |DR Aur |051009.0+365611 |SRA | 14.6 | 16.0 | |p |51598. | | 278. | |M6 |00332 GSC | +080141 |DS Aur |051027.7+335939 |LB: | 14.5 | 17.2 | |B | | | | |C(N) |00332 02320| +080142 |DT Aur |051032.3+321043 |M | 13.3 | 17.6 | |B |51478. | | 168.7 |50 | |00001 07091| +080143 |DU Aur |051114.5+311950 |M | 11.0 | 14.2 | |V |32953. | | 275.2 | |M6 |00608 02320| +080144 |DV Aur |051320.7+343704 |SRB | 12.9 | 15.1 | |p | | | 117. | |M5 |00001 07091| +080145 |DW Aur |051425.8+300103 |LB | 14.3 | 15.4 | |p | | | | | |00332 02320| +080146 |DX Aur |051805.4+334649 |SRA | 13.9 | 15.0 | |p |51450. | | 340. | | |00332 00533| +080147 |DY Aur |051819.0+351500 |M | 12.4 | 15.6 | |V |51450. | | 474. |50 |C(R) |00001 00533| +080148 |DZ Aur |052101.1+382806 |LB | 14.3 | 15.5 | |p | | | | |M6 |00332 02320| +080149 |EE Aur |052055.5+350521 |LB | 13.9 | 15.5 | |p | | | | |M3-M7 |00332 02320| +080150 |EF Aur |052121.3+380523 |LB | 14.2 | 15.2 | |p | | | | |C |00332 02320| +080151 |EG Aur |052651.5+320310 |SRB | 12.4 | 13.7 | |p | | | 149.5 : | |M6.5 |00001 07789| +080152 |EH Aur |053347.1+343622 |LB | 14.0 | 15.0 | |p | | | | |M6 |00332 02320| +080153 |EI Aur *|050314.8+324510 |EA | 14.5 | 15.0 | 15.0 |p |52500.1019 | | 1.2266935 |13 *| |N0041 02320| +080154 |EK Aur |050429.9+383429 |EA | 14.2 | 15.2 | |p | | | | | |00332 00533| +080155 |EL Aur |050323.0+503758 |LB | 8.9 | 9.6 | |V | | | | |C5,4(N3) |01078 HIP | +080156 |EM Aur *|051324.4+370559 |EB | 11.05 | 11.60 | 11.50 |R |54499.4277 | | 1.821972 | |A3 |00001 BD | +080157 |EN Aur |051508.8+334432 |LB | 12.4 | 14.3 | |p | | | | |M6 |07091 GSC | +080158 |EO Aur *|051821.1+363755 |EA | 7.56 | 8.13 | 7.89 |V |52500.255 | | 4.0656497 |12 *|B3V+B3V |N0041 HIP | +080159 |EP Aur *|061132.1+312853 |EB | 11.16 |( 0.66 )|( 0.22 )|V |52500.500 | | 0.5910094 | |F8 |N0041 02321| +080160 |EQ Aur *|065027.3+352146 |EA | 12.72 | 14.2 | 12.93 |R |54491.46 | | 3.429388 |15 | |00001 GSC | +080161 |ER Aur *|051310.0+415926 |DCEP | 11.17 | 11.80 | |V |47407.47 | | 15.6973 |40 | |00001 GSC | +080162 |ES Aur |061747.7+340208 |LB | 10.6 | 11.0 | |p | | | | |M6 |00346 GSC | +080163 |ET Aur |070703.3+370147 |M | 9.6 | 16.0 | |V |54510. | | 205.3 | |M2e |00001 00922| +080164 |EU Aur *|044035.8+352510 |EA | 12.7 | 13.6 | 12.9 |R |51483.65 | | 3.521025 |10 *| |01091 02341| +080165 |EV Aur |045124.4+424700 |SR | 11.97 | 12.39 | |V | | | 55. | | |73062 02341| +080166 |EW Aur *|045124.8+381119 |DCEP | 13.00 | 13.85 | |V |50341.41 | | 2.65959 |16 | |00001 04341| +080167 |EX Aur |045241.4+380118 |LB | 15.4 | 16.1 | |p | | | | |C |05147 02342| +080168 |EY Aur |045315.6+414857 |LB | 11.6 | 13.7 | |V | | | | |M6 | 02342| +080169 |EZ Aur |045313.0+404343 |SRB | 11.1 | 11.6 | |V | | | 140. | |M6.5 |07341 02342| +080170 |FF Aur *|045518.1+395847 |DCEP | 13.10 | 14.21 | |V |48574.74 | | 2.12053 |15 | |00001 02342| +080171 |FG Aur *|045546.0+372106 |EA | 11.65 | 12.55 | 12.1 |R |51386.985 | | 13.6456 |13 *|F7III |00001 02356| +080172 |FH Aur |045616.2+400432 |LB | 12.5 | 14.6 | |p | | | | |M6.5 |01091 02342| +080173 |FI Aur |050224.7+420942 |LB | 12.4 | 13.4 | |p | | | | |M6.5 |01091 02342| +080174 |FK Aur |050336.0+402940 |RV: | 13.2 | 15.2 | |p |51503. | | 95.9 | | |00001 02356| +080175 |FL Aur |050539.5+411300 |LB | 13.1 | 15.1 | |p | | | | |M3 |01091 02356| +080176 |FM Aur |053640.8+315612 |IS | 13.03 | 13.34 | |V | | | | | |73062 73062| +080177 |FN Aur *|053946.0+323405 |EA | 11.9 | 13.1 | 12.2 |R |52504.55 | | 8.34312 |08 | |N0041 02357| +080178 |FO Aur *|054304.0+321215 |EA | 13.7 | 14.8 | 14.0 |R |52500.763 | | 0.6100133 |14 | |N0041 02357| +080179 |FP Aur *|054338.8+305332 |EA | 11.7 | 12.0 | |p |52500.2744 | | 0.9472340 |21 |A5 |N0041 02357| +080180 |FQ Aur |054431.1+304040 |LB | 13.5 | 14.1 | |p | | | | |M3 |00612 02357| +080181 |FR Aur *|054700.8+322531 |EA | 12.7 | 14.2 | 13.0 |p |52502.5500 | | 2.6067796 |15 | |N0041 00608| +080182 |FS Aur *|054748.3+283512 |UG | 14.0 | 17.2 | |p | | |( 12. )| | |N0167 72085| +080183 |FT Aur |054811.1+321516 |LB | 13.4 | 14.2 | |p | | | | |M6.5 |00612 02357| +080184 |FU Aur |054808.2+303752 |LB | 10.6 | 12.5 | |p | | | | |C7,2(N0) | HIP | +080185 |FV Aur |054942.0+310707 |EA | 15.0 | 16.7 | |p |26003.360 | | 2.741598 |10 : | |05257 02357| +080186 |FW Aur *|055210.3+301244 |EA | 12.3 | 14.3 | 12.5 |R |53762.4667 | | 2.559973 |16 | |00001 00608| +080187 |FX Aur |055421.0+283632 |LB: | 14.1 | 16.0 | |p | | | | | |00082 02357| +080188 |FY Aur |055512.2+284338 |EA | 15.1 | 16.5 | |p |25996.2 | | 32.6379 |06 : | |00612 02357| +080189 |FZ Aur *|060643.6+315520 |EA | 13.2 | 14.5 | |p |51518.595 | | 7.132 |04 : | |N0060 02357| +080190 |GG Aur |060700.3+321310 |SRB | 13.7 | 14.6 | |p | | | 67.8 | | |00001 02357| +080191 |GH Aur |060927.7+282944 |M | 14.6 |< 18. | |p |52950. | | 388. | |S |00001 02358| +080192 |GI Aur *|061136.4+292642 |EA: | 11.45 | 11.90 | 11.50 : |R |54412.818 | | 1.2078591 | |F0 |00001 02358| +080193 |GK Aur |045106.8+465110 |EA | 13.5 | 15.5 | |p |51255.967 | | 19.857 |10 *| |08163 00141| +080194 |GL Aur |045251.4+464048 |E | 13.5 | 15.0 | |p |36135.209 | | | | |08163 08163| +080195 |GM Aur |045511.0+302200 |INT | 13.1 | 13.9 | |p | | | | |K3Ve(T)-M0 |00598 GSC | +080196 |GN Aur |055439.3+403327 |M | 10.5 | 13.2 | |R |51438. | | 240. | | |00001 00158| +080197 |GO Aur |062602.0+502929 |M | 9.2 | 15.9 | |V |54399. | | 292.45 |50 | |00001 02378| +080198 |GP Aur |062618.4+424157 |CWB | 13.15 | 14.00 | |V |48651.66 | | 1.6695 | |26 |73062 01059| +080199 |GQ Aur |062642.9+471424 |M | 10.0 | 17.0 | |V |54914. | | 307.8 |50 |M3 |00001 02378| +080200 |GR Aur |064342.6+380153 |M | 12.3 |< 13.5 | |p |51615. | | 400. : | | |04099 02378| +080201 |GS Aur |051906.8+302815 |LB | 11.8 | 14.0 | |p | | | | | |03213 00608| +080202 |GT Aur |053626.8+443529 |DCEP | 11.70 | 12.60 | |V |47848.76 | | 4.404750 |20 | |N0159 00542| +080203 |GU Aur |054036.1+465337 |SRA | 10.94 | 12.8 | |R |51464. | | 199. | | |00001 00542| +080204 |GV Aur |054414.0+373513 |DCEP | 11.57 | 12.51 | |V |48515.46 | | 5.25998 |23 | |00001 00491| +080205 |GW Aur |060036.8+324117 |EA | 12.6 | 13.3 | |R |51492.66 | | 2.49481 |11 | |N0060 00542| +080206 |GX Aur *|062456.4+383956 |EB | 11.50 | 12.2 | 12.2 |V |52500.885 | | 1.143288 | |A |N0041 01059| +080207 |GY Aur *|045648.6+303536 |EA | 12.7 | 13.3 | 12.8 |R |51427.646 | | 4.117398 |12 *| |00001 00608| +080208 |GZ Aur |050003.1+300109 |IS: | 13.5 | 16.3 | |p | | | | |ea |06996 06286| +080209 |HH Aur |053929.8+295001 |CST: | 8.54 | | |V | | | | |G6IV |09984 HIP | +080210 |HI Aur |054700.2+285129 |CST: | 10.8 | | |V | | | | |C |00001 00620| +080211 |HK Aur |054853.7+285110 |LB | 13.6 | 15.4 | |p | | | | |M3 |00001 00620| +080212 |HL Aur *|061913.0+494207 |EB | 10.80 | 11.69 | 11.25 |V |52500.5886 | | 0.6225051 | |F4 |N0041 N0168| +080213 |HM Aur |072906.8+404058 |LB | 11.3 | 12.4 | |p | | | | |M7III |00833 76005| +080214 |HN Aur *|045115.5+434048 |SRB | 11.2 | 11.7 | |V | | | 165. : | |C(N5) |08734 GSC | +080215 |HO Aur |050747.0+312019 |IS: | 12.6 | 13.7 | |p | | | | |ea |07806 06286| +080216 |HP Aur *|051021.8+354747 |EA | 11.16 | 11.79 | 11.55 |V |46353.2360 | | 1.4228191 |08 *|G0 |N0169 02615| +080217 |HQ Aur |052955.9+513736 |M | 13. |< 15.5 | |p |36084. | | | | |02394 00158| +080218 |HR Aur |063111.0+305616 |E:/RS: | 10.92 | 12.09 | |V |46759.855 | | 1.627777 | |K0:e |N0170 02378| +080219 |HS Aur *|065118.5+474024 |EA | 10.16 | 10.90 | 10.70 |V |46105.6419 | | 9.815377 |03 *|G8V+G8V |N0171 HIP | +080220 |HT Aur |071648.2+393901 |M | 8.9 | 15.9 | |V |54449. | | 300.85 | |M |00001 06286| +080221 |HU Aur *|043904.4+343924 |EA | 11.1 | 11.8 | 11.8 |V |52500.6805 | | 1.4080071 |15 *| |N0041 00819| +080222 |HV Aur |045316.9+381629 |UGSU | 14.7 |< 19. | |V | | | | | |N0172 76005| +080223 |HW Aur *|050125.2+394812 |EB | 12.6 | 13.3 | 13.2 |R |52501.1217 | | 1.1774218 | | |N0041 02356| +080224 |HX Aur |050240.8+483622 |M: | 13. |< 15. | |p | | | | | |04062 GSC | +080225 |HY Aur |050721.2+511129 |SR: | 13. | 14.5 | |p | | | | | |04062 GSC | +080226 |HZ Aur |050608.4+335507 |ACV | 7.02 | 7.13 | |V | | | 6.43000 | |B9pSiCr |N0173 HIP | +080227 |II Aur *|050641.7+344055 |EB: | 14.7 | 16.2 | 15.0 : |p |52500.146 | | 0.9189079 | | |N0041 02320| +080228 |IK Aur |050813.3+334753 |EA | 16.6 |< 17.5 | |B |39411.470 | | 4.0522 |12 | |07089 04341| +080229 |IL Aur |051409.1+371445 |EA: | 12.0 | 12.6 | |V | | | | | |04341 04341| +080230 |IM Aur *|051529.7+462421 |EA | 7.96 | 8.55 | 8.21 |V |52500.7300 | | 1.2472863 |20 *|B6V |N0041 BD | +080231 |IN Aur |051527.2+372221 |DCEP | 13.55 | 14.18 | |V |48569.82 | | 4.91071 |30 | |00001 N0160| +080232 |IO Aur |051551.4+383437 |E | 12.9 | 13.4 | |p |38442.282 | | | | |N0174 04341| +080233 |IP Aur |051730.2+365948 |E | 14.6 |< 16.0 | |p |39775.495 | | | | |N0174 04341| +080234 |IQ Aur |051900.0+334454 |ACV | 5.35 | 5.43 | |V | | | 2.4660 |22 |B9VpSi |03357 HIP | +080235 |IR Aur |052152.1+391411 |E | 16.5 |< 17. | |p |38373.478 | | | | |N0174 04341| +080236 |IS Aur *|052721.8+430543 |SR | 12.2 | 15.1 | |p |26260. | | 76.5 | |M2 |04070 GSC | +080237 |IT Aur |052738.2+321233 |EA | 14.6 | 15.2 | |p |39775.495 | | | | |N0174 04341| +080238 |IU Aur *|052752.4+344658 |EB | 8.19 | 8.89 | 8.74 |V |38448.4068 | | 1.81147435 | |B0p+B1Vp |N0175 HIP | +080239 |IV Aur |053049.8+355445 |IA: | 14.5 |< 16.5 | |p | | | | | |N0174 04341| +080240 |IW Aur |053235.1+332154 |DCEP | 14.8 | 16.0 | |p |51533.6 | | 7.30 |33 | |N0177 04341| +080241 |IX Aur |053608.3+380200 |LB | 11.2 | 12.5 | |p | | | | |M7 |04077 02378| +080242 |IY Aur *|054827.2+430458 |EB | 9.27 | 9.86 | 9.49 |V |52502.097 | | 2.793380 | |B5:p |N0041 04364| +080243 |IZ Aur *|055336.5+522557 |EA | 13.0 | 14.6 | 13.4 |* |52500.4268 | | 0.7711671 |23 | |N0041 04065| +080244 |KK Aur |060146.8+410636 |M | 11.5 |< 15. | |p |27394. | | 297.4 | | |04092 04092| +080245 |KL Aur |060437.2+515430 |EA | 13.3 | 15.1 | |R |51275.200 | | 3.195 |09 | |N0015 04065| +080246 |KM Aur |060542.2+502027 |EA | 15. | 16. | |p | | | | | |04065 04065| +080247 |KN Aur |060531.3+493205 |RRAB | 18.5 | 20. | |p |37947.600 | | 0.58246 |30 | |04065 04065| +080248 |KO Aur *|060615.2+482213 |EA | 9.90 | 10.52 | 10.45 |V |54802.868 | | 3.9537957 |05 *| |00001 04364| +080249 |KP Aur |060600.3+362038 |M | 12.4 |< 15.0 | |p |51600. | | 265. | |M8 |00001 04093| +080250 |KQ Aur |061517.6+501203 |LB | 10.9 | 11.4 | |p | | | | |M |04022 BD | +080251 |KR Aur *|061543.9+283509 |NL | 11.3 |< 17.6 | |B | | | | |pec(e) |04815 72085| +080252 |KS Aur |062543.9+362620 |LB | 10.8 | 12.6 | |p | | | | |M6 |04098 02378| +080253 |KT Aur |062743.7+534147 |SRA | 11.1 | 12.6 | |p |36670. | | 131. | |M5 |04099 04099| +080254 |KU Aur *|062804.4+302334 |EA | 11.7 | 12.8 | 11.8 |V |52500.0847 | | 1.3195742 |10 |F5 |N0041 04336| +080255 |KV Aur |063658.3+275724 |SRB | 12.3 | 14.4 : | |p | | | 750. | |C |04102 04102| +080256 |KW Aur *|051524.4+324115 |DSCTC+ELL | 4.95 | 5.08 | |V | | | 0.088088 | |A9IV |04822 HIP | +080257 |KX Aur *|051638.5+340404 |INS: | 16.7 | 17.7 | |p | | | | | |03947 03947| +080258 |KY Aur *|051709.1+342117 |INS: | 16.6 |< 18.5 | |p | | | | | |03947 03947| +080259 |KZ Aur |053503.0+463303 |LB | 14.0 |< 16.0 | |p | | | | | |N0188 03903| +080260 |LL Aur |053608.5+472533 |E | 15.1 | 15.8 | |p |41682.505 | | | | |N0188 03903| +080261 |LM Aur |053817.2+470012 |SRA | 13.6 | 15.9 | |p |38820. | | 363. | | |N0188 03905| +080262 |LN Aur |055129.2+441637 |M | 14.8 |< 17.4 | |p |51530. | | 397. : | | |N0188 03905| +080263 |LO Aur |055723.9+482242 |M | 11.7 | 17.5 | |V |54139. | | 505. |42 |M9 |00001 03905| +080264 |LP Aur |055725.5+413913 |RV: | 15.1 | 16.5 | |p |39143. | | | | |N0188 03903| +080265 |LQ Aur |060010.8+475915 |RRAB | 15.0 | 16.8 | |p |39060.661 | | 0.545133 |18 | |N0188 03905| +080266 |LR Aur |060014.0+283557 |EA | 14.9 |< 16. | |p |38441.27 | | 19.7803 : | | |06953 03910| +080267 |LS Aur |060747.0+404557 |M | 13.3 | 15.9 | |p |51549. | | 273.0 | | |00001 03905| +080268 |LT Aur |061314.0+431455 |EA | 13.7 | 15.4 | |p |51514.844 | | 2.099027 |11 | |00001 03905| +080269 |LU Aur |061325.0+420341 |EA | 14.3 | 15.7 | |p |39029.609 | | 1.157389 |07 *| |N0188 03905| +080270 |LV Aur |061808.4+480120 |EA | 13.4 | 16.2 | |p |51985.509 | | 3.4742474 |07 *| |00001 03903| +080271 |LW Aur *|062522.2+440702 |SR: | 15.2 | 16.0 | |p |43735. | | | | |N0188 03903| +080272 |LX Aur |062802.3+484555 |EA | 14.0 | 15.7 | |p |39038.530 | | 2.896902 |11 *| |N0188 03905| +080273 |LY Aur *|052942.6+352230 |EB | 6.66 | 7.35 | 7.23 |V |52501.836 | | 4.002494 | |O9.5+O9.5III |N0041 HIP | +080274 |LZ Aur |053904.2+295534 |LB | 14.1 | 15.4 | |p | | | | |M7 |06953 03910| +080275 |MM Aur |053919.9+285930 |EA | 15.6 | 16.5 : | |p |38048.335 | | 0.7746 : |07 *| |06953 03910| +080276 |MN Aur *|054057.6+460816 |EA/RS: | 10.80 | 11.82 | 11.16 |R |51502.482 | | 5.580910 |09 | |N0041 05514| +080277 |MO Aur |054520.6+315432 |EA | 12.4 | 13.4 | |R |52501.5400 | | 5.266706 |09 *| |N0041 05515| +080278 |MP Aur |054646.2+314241 |EA | 14.8 | 16.2 | |p |52500.40 | | 2.060672 |20 :*| |N0041 05515| +080279 |MQ Aur |055153.3+315120 |LB | 13.3 | 14.7 | |p | | | | | |06953 03910| +080280 |MR Aur *|055133.7+310652 |EW | 15.1 | 15.5 | 15.5 |p |38414.466 | | 0.6903 : | | |06953 05515| +080281 |MS Aur |055638.6+315156 |LB | 13.1 | 13.6 | |p | | | | |M7 |06953 03910| +080282 |MT Aur *|055726.9+304206 |EA | 14.8 | 16.2 | |p |52500.675 | | 1.1912658 |15 | |N0041 05515| +080283 |MU Aur |055745.4+293508 |EA | 13.2 | 13.6 | |p |52501.260 | | 2.202281 |20 *| |N0041 05515| +080284 |MV Aur |055812.4+302919 |RRAB | 13.20 | 14.18 | |V |54176.383 | | 0.553586 |15 | |00001 05515| +080285 |MW Aur |060229.1+292010 |E: | 12.4 | 13.0 | |p |36904.646 | | | | |05516 05516| +080286 |MX Aur |061609.7+441127 |SR | 14.5 | 15.7 | |p |38850. | | | | |N0188 03905| +080287 |MY Aur |044921.3+305536 |M | 14.4 |< 17. | |p |39560. | | 331.6 | | |05836 05836| +080288 |MZ Aur |052033.0+363756 |BE | 8.14 | 8.30 | |Hp| | | | |B2Vnpea |HIP HIP | +080289 |NN Aur |053513.8+314840 |EA | 11.97 | 12.50 | |R |54085.528 | | 2.1760786 | | |00001 05527| +080290 |NO Aur |054042.0+315514 |LC | 6.06 | 6.44 | |V | | | | |M2SIab |09344 HIP | +080291 |NP Aur |062801.8+360459 |M | 13. |< 15.5 | |p |39063. | | 334. | | |05957 00122| +080292 |NQ Aur *|045319.9+435039 |SRB: | 10.9 | 11.6 | |R | | | 450. : | |C(N) |06566 GSC | +080293 |NR Aur |045326.9+404149 |SRB: | 11.8 | 12.5 | |V | | | 200. : | |C(N) |06566 GSC | +080294 |NS Aur |050308.3+421832 |SRB: | 14.8 | 15.4 | |B | | | 350. : | |C(N) |06566 GSC | +080295 |NT Aur |050905.3+294019 |EA | 15.2 | 16.8 | |p |39420.515 | | 3.577832 |11 *| |07806 GSC | +080296 |NU Aur *|050902.3+284053 |RRAB | 13.2 | 14.9 | |p |39060.561 | | 0.53941672 |20 | |07806 GSC | +080297 |NV Aur *|051119.4+525234 |M | 3.6 | 6.2 | |H |41021. | | 635. | |M10 |07343 2MASS| +080298 |NW Aur *|052256.7+332856 |CST | 14.5 | | |V | | | | | |N0189 06307| +080299 |NX Aur *|052304.2+332847 |INSA | 14.1 | 16.6 | |B | | | | |ea |06448 06448| +080300 |NY Aur |065920.1+421853 |ACV | 6.56 | 6.73 | |V | | | 5.4379 | |A0pEuSrCr |07039 HIP | +080301 |NZ Aur |051407.2+344742 |LB | 13.0 | 13.7 | |V | | | | |C |07036 07036| +080302 |OO Aur |051857.0+345709 |LB: | 13.8 | 14.6 | |V | | | | |C |07036 GSC | +080303 |OP Aur *|052803.2+343014 |M: | 12.8 | 15.6 | |V |40870. | | 500. : | |C0-C1ea |07036 04828| +080304 |OQ Aur |052826.6+352944 |LB | 14.5 | 15.3 | |V | | | | |C |07036 07036| +080305 |OR Aur |053014.0+315936 |LB | 14.3 | 14.9 | |V | | | | |C |07036 07036| +080306 |OS Aur |053030.8+314324 |LB | 13.8 | 14.5 | |V | | | | |C |07036 07036| +080307 |OT Aur |053109.6+343952 |LB | 11.6 | 12.9 | |V | | | | |C |07036 GSC | +080308 |OU Aur |053107.2+315417 |LB | 12.4 | 13.2 | |V | | | | |C(N) |07036 GSC | +080309 |OV Aur |053240.7+325621 |LB | 11.2 | 11.8 | |V | | | | |C(R) |07036 GSC | +080310 |OW Aur |053501.5+335100 |LB | 12.3 | 13.6 | |V | | | | |C |07036 GSC | +080311 |OX Aur *|065301.4+385209 |DSCT | 5.94 | 6.14 | |V | | | 0.154412 | |F2IV |05453 HIP | +080312 |OY Aur |045942.3+424630 |SR: | 11.5 | 12.0 | |V | | | 250. : | |C(N) |06566 GSC | +080313 |OZ Aur *|050252.0+322950 |EB | 13.5 | 14.1 | 13.8 |R |51528.96 | | 0.9537 | | |N0190 07091| +080314 |PP Aur |050436.6+284122 |LB | 13.9 | 15.2 | |p | | | | | |07806 GSC | +080315 |PQ Aur |050611.8+291849 |SRB | 14.0 | 14.9 | |p | | | 167.6 | |M3 |07806 GSC | +080316 |PR Aur |050735.8+290016 |SRB | 10.4 | 10.7 | |R | | | 57.4 | |M6 |00001 GSC | +080317 |PS Aur |051104.0+321806 |IS: | 13.5 | 14.5 | |p | | | | | |07806 GSC | +080318 |PT Aur |051230.6+302935 |LB: | 13.3 | 14.0 | |B | | | | |M3 |07789 GSC | +080319 |PU Aur |051815.7+424732 |LB: | 5.55 | 5.78 | |V | | | | |M4III |N0191 HIP | +080320 |PV Aur |051753.8+321244 |LB | 16.2 | 17.7 | |B | | | | |C |07036 GSC | +080321 |PW Aur |051827.4+300850 |IS: | 14.5 | 16.0 | |p | | | | |ea |06996 GSC | +080322 |PX Aur |054327.8+422243 |EA | 15.5 | 16.6 | |p |39026.557 | | 1.492839 |10 *| |N0188 03903| +080323 |PY Aur |054950.4+413953 |RRAB | 13.7 | 15.4 | |p |39144.552 | | 0.457152 |19 | |N0188 03905| +080324 |PZ Aur |055321.8+431112 |RRAB | 15.0 | 16.1 | |p |39038.537 | | 0.530001 |20 : | |N0188 03905| +080325 |QQ Aur |055722.1+394224 |LB | 11.6 | 13.3 | |V | | | | |C(N) |07793 GSC | +080326 |QR Aur |061343.1+414150 |ACV | 7.19 | 7.21 | |Hp| | | 16.990 | |A0pEuSrCr |HIP HIP | +080327 |QS Aur |061422.7+474530 |SR | 15.3 | 15.9 | |p | | | 432. | | |N0192 03905| +080328 |QT Aur *|061627.6+395324 |EA | 13.3 | 15.0 | |p |52500.435 | | 1.0895041 |18 *| |N0041 03905| +080329 |QU Aur *|062735.0+461631 |S: | 13.9 | 14.8 | |p | | | | | |01941 2MASS| +080330 |QV Aur |062642.5+303345 |M | 12.6 |< 17.0 | |p |36560. | | 299.0 | | |08176 00122| +080331 |QW Aur |063357.8+281719 |SRA | 11.9 | 13.1 | |V |43490. | | 188. | |M8 |67269 67269| +080332 |QX Aur |065709.0+473523 |SR | 11.3 | 14.0 | |p | | | 200. : | |M8e |00001 06286| +080333 |QY Aur *|071001.8+383146 |UV | 10.9 | 13.19 | |B | | | | |M5Ve+M5Ve |06948 HIP | +080334 |QZ Aur *|052834.1+331822 |NA+E | 6.0 | 18.0 | |p |38440. |1964 | | |pec(Nova) |08078 72118| +080335 |V0335 Aur |054229.3+373847 |DCEP | 11.90 | 12.90 | |V |48580.59 | | 3.41270 |20 | |N0160 N0160| +080336 |V0336 Aur |045744.4+320729 |LB | 13.6 | 14.2 | |B | | | | |C |08144 GSC | +080337 |V0337 Aur |045924.9+315358 |M | 11.8 | 14.8 | |V |41375. | | 420. | |C(N) |N0194 GSC | +080338 |V0338 Aur |050920.5+295441 |SR | 13.8 | 15.7 | |B | | | 340. : | |C |N0194 GSC | +080339 |V0339 Aur |052418.7+303203 |LB | 14.9 | 15.7 | |B | | | | |C |08144 GSC | +080340 |V0340 Aur |053959.4+332642 |SR | 12.3 | 13.0 | |V | | | 350. : | |C |08144 GSC | +080341 |V0341 Aur |054101.2+343714 |SR | 13.3 | 14.0 | |V | | | 350. : | |C |08144 GSC | +080342 |V0342 Aur |054154.2+374212 |SR: | 12.6 | 13.4 | |V | | | 400. : | |C |08144 GSC | +080343 |V0343 Aur |054302.5+334036 |LB: | 16.2 | 17.4 | |B | | | | |C |08144 GSC | +080344 |V0344 Aur |054650.1+371003 |SR: | 16.7 | 18.2 | |B | | | 375. : | |C(N) |08144 08144| +080345 |V0345 Aur |060451.4+340745 |LB | 12.4 | 13.4 | |p | | | | |M6 |07793 GSC | +080346 |V0346 Aur |045234.9+383020 |LB: | 8.43 | 8.72 | |Hp| | | 365. : | |SC5/9 |HIP HIP | +080347 |V0347 Aur |045657.0+513052 |INT | 13.1 | 16. : | |p | | | 346. : | |M2Ve |N0195 08347| +080348 |V0348 Aur *|051910.2+354732 |LB | 12.0 | 13. | |p | | | | |C6,3(N) |02576 HIP | +080349 |V0349 Aur |052610.4+322447 |LB: | 12.9 | 13.6 | |V | | | | |C |08144 GSC | +080350 |V0350 Aur |052644.8+320039 |LB: | 14.3 | 15.2 | |B | | | | |C |08144 GSC | +080351 |V0351 Aur |053358.9+332009 |SR: | 13.0 | 13.9 | |V | | | 620. : | |C |08144 GSC | +080352 |V0352 Aur |065514.7+435436 |DSCTC | 6.13 | 6.18 | |V | | | 0.17 | |F1IV |01746 HIP | +080353 |V0353 Aur *|044253.6+360654 |* | 16.5 | 19.2 | |p | | | | |pec(e) |08735 03831| +080354 |V0354 Aur |053649.6+412758 |EA | 15.0 | 16.2 | |p |39057.530 | | 2.45179 |10 | |03833 08732| +080355 |V0355 Aur *|053941.3+420714 |EA | 11.14 | 11.76 | 11.38 |R |51277.680 | | 17.6445 | | |N0060 08732| +080356 |V0356 Aur *|054228.1+285956 |DSCT | 7.97 | 8.10 | |V | | | 0.1892678 | |F4IIIp |N0196 BD | +080357 |V0357 Aur |054655.5+481759 |M: | 14.6 |< 16.4 | |p |39080. | | 339. | | |03833 08732| +080358 |V0358 Aur *|055240.6+321151 |LB | 12.2 | 13.0 | |V | | | | |C(N) |08734 GSC | +080359 |V0359 Aur |055747.4+433434 |LB | 13.3 | 14.4 | |p | | | | | |03833 08732| +080360 |V0360 Aur |061600.8+425052 |LB | 15.8 | 16.3 | |p | | | | | |03833 08732| +080361 |V0361 Aur *|052038.3+304824 |ZZA | 15.6 |( 0.02 )| |V | | | | | |67028 02387| +080362 |V0362 Aur |052710.2+295516 |LC | 7.29 | 7.73 | |V | | | | |M1.5Iab-Ib |02556 HIP | +080363 |V0363 Aur |053333.5+365933 |E+NL | 14.23 | 15.0 | |V |52500.0140 | | 0.32124179 | |pec(e) |N0041 72085| +080364 |V0364 Aur |053027.5+462015 |EA | 12.2 | 12.8 | |R |52500.6057 | | 0.6990248 |20 | |N0041 03905| +080365 |V0365 Aur *|053607.0+485652 |EA | 13.8 | 15.1 | 14.2 : |p |41600.386 | | 1.020948 |18 *| |N0188 03903| +080366 |V0366 Aur |053617.2+485930 |SR | 13.9 | 14.9 | |p |43670. | | | | |N0188 03903| +080367 |V0367 Aur |053813.6+431043 |LB | 14.5 | 14.9 | |p | | | | | |N0188 03905| +080368 |V0368 Aur |054119.9+411912 |SR | 13.7 | 14.5 | |p | | | | | |N0188 03903| +080369 |V0369 Aur |054231.1+493624 |SR | 13.0 | 14.0 | |p |42000. | | | | |N0188 03905| +080370 |V0370 Aur |054349.7+324206 |M | 15.7 | 17.9 | |I |49611. | | 683. : | | |76006 2MASS| +080371 |V0371 Aur |055220.2+433655 |EA | 15.5 | 16.9 | |p |38709.681 | | 1.210833 |08 *| |N0188 03905| +080372 |V0372 Aur |055443.0+415213 |LB: | 14.3 | 15.3 | |p | | | | | |N0188 03905| +080373 |V0373 Aur *|055924.9+382538 |M | 1.0 | 2.5 | |L | | | 590. : | |M9 |71002 GSC | +080374 |V0374 Aur |060952.4+443055 |RRAB | 15.7 | 16.6 | |p |38842.372 | | 0.514464 |18 | |N0188 03903| +080375 |V0375 Aur |061129.3+421925 |SR | 14.6 | 15.6 | |p |43736. | | 510. | | |N0188 03905| +080376 |V0376 Aur |061201.8+460640 |LB | 14.2 | 15.0 | |p | | | | | |N0188 03905| +080377 |V0377 Aur |061349.5+441704 |RRAB | 14.2 | 15.0 | |p |39142.345 | | 0.609213 |19 | |N0188 03903| +080378 |V0378 Aur |062033.3+465000 |RRAB | 14.1 | 14.7 | |p |38709.679 | | 0.502798 |19 | |N0188 03905| +080379 |V0379 Aur |062130.2+415101 |EA | 13.6 | 14.5 | |p |52500.3625 | | 1.3510226 |12 *| |N0041 03903| +080380 |V0380 Aur |062123.1+411313 |SR | 13.6 | 14.5 | |p |41765. | | | |M |N0188 03905| +080381 |V0381 Aur |062213.9+460436 |SR: | 13.7 | 14.8 | |p | | | | | |N0188 03905| +080382 |V0382 Aur *|063752.4+533102 |SRD: | 9.00 | 9.12 | |V | | | | |F7IVwe |68039 HIP | +080383 |V0383 Aur |071647.5+383333 |EA | 16.46 | 18.72 | |B |44551.801 | | 0.5759 |25 | |68001 68001| +080384 |V0384 Aur |071811.8+403112 |EW | 17.64 | 18.42 | |B |44961.806 | | 0.280292 | | |68001 68001| +080385 |V0385 Aur |072556.4+381311 |RRAB | 17.38 | 18.15 | |B |45324.771 | | 0.54160 |40 : | |68001 68001| +080386 |V0386 Aur *|072613.3+405250 |RRC | 16.73 | 17.38 | |B |44960.717 | | 0.304879 |45 : | |68001 68001| +080387 |V0387 Aur *|072701.0+363847 |RRAB | 16.42 | 17.95 | |B |44995.909 | | 0.49227 |15 : | |68001 68001| +080388 |V0388 Aur *|072708.5+384810 |EB | 16.62 | 17.64 | 17.2 : |B |44609.689 | | 0.340350 | | |68001 68001| +080389 |V0389 Aur |073010.9+382153 |RRAB | 17.17 | 18.42 | |B |45355.971 | | 0.5631099 |10 : | |68001 68001| +080390 |V0390 Aur *|051515.5+471015 |BY:+UV: | 6.92 | 6.99 | |V | | | 9.8 | |G5III |69044 HIP | +080391 |V0391 Aur |055924.3+350805 |SRA | 11.5 | 13.0 | |V |43870. | | 155. | |S |69010 GSC | +080392 |V0392 Aur |061421.1+280759 |SRB: | 12.4 | 13.8 | |V | | | 175. : | |S |69010 GSC | +080393 |V0393 Aur |054739.1+431252 |SRA | 1.3 | 2.3 | |L | | | 517. | |C |71002 06977| +080394 |V0394 Aur *|060622.4+293045 |SRC | 6.01 | 6.11 | |V | | | 32.896 | |M3II |71062 HIP | +080395 |V0395 Aur |061622.2+285107 |ELL | 7.34 | 7.43 | |V |43978.905 | | 23.1755 | |F5III+B8V |71064 HIP | +080396 |V0396 Aur |045537.0+301755 |INT | 10.76 | 11.01 | |V | | | 2.236 | |K0Ve |N0198 72160| +080397 |V0397 Aur *|045602.0+302104 |INT | 11.46 | 11.74 | |V | | | 9.345 | |K7 |N0199 72020| +080398 |V0398 Aur *|050640.6+513552 |GDOR | 4.93 | 5.03 | |V | | | 1.25804 | |F0V |N0200 HIP | +080399 |V0399 Aur |052540.4+293815 |SR | 11.1 | 11.8 | |p | | | 250. : | |M: |72022 GSC | +080400 |V0400 Aur |052851.7+322522 |SR | 11.1 | 11.7 | |p | | | 80. : | |M: |72022 GSC | +080401 |V0401 Aur |052852.9+322839 |SR: | 9.6 | 10.1 | |p | | | 70. : | | |72022 BD | +080402 |V0402 Aur *|050214.7+311549 |EW | 8.84 | 8.98 | 8.98 |V |54115.520 | | 0.6034956 | |F2 |00001 HIP | +080403 |V0403 Aur *|055704.6+490147 |RS | 6.49 | 6.68 | |V | | | 73.1 | |G8III |73005 HIP | +080404 |V0404 Aur *|055713.5+432817 |EB | 12.2 |( 0.59 )|( 0.28 : )|V |52501.033 | | 0.7543173 | | |N0041 04364| +080405 |V0405 Aur |055759.3+535345 |XM | 14.6 |( 0.12 )| |V | | | 0.00315723 | |pec |73037 76005| +080406 |V0406 Aur *|061751.5+323017 |EA | 7.47 | 7.58 | 7.57 |V |46770.690 | | 5.46414 |07 :*|A3 |73038 HIP | +080407 |V0407 Aur |045507.2+404452 |LB: | 8.10 | 8.25 | |Hp| | | | |M1 |HIP HIP | +080408 |V0408 Aur |045603.4+432936 |LC | 7.36 | 7.47 | |Hp| | | | |M0Ib |HIP HIP | +080409 |V0409 Aur |045659.0+375158 |SRD: | 8.76 | 8.93 | |Hp|48532.31 | | 58.19 | |F8 |HIP HIP | +080410 |V0410 Aur *|050110.8+343027 |EW | 10.10 | 10.45 | |Hp|54783.884 | | 0.3663612 | |G0 |N0201 HIP | +080411 |V0411 Aur *|050434.5+302250 |LB: | 8.24 | 8.35 | |Hp| | | | |M0 |HIP HIP | +080412 |V0412 Aur |050848.0+423443 |LB: | 8.45 | 8.70 | |Hp| | | | |M6III: |HIP HIP | +080413 |V0413 Aur |050956.4+370016 |BE | 7.95 | 8.33 | |Hp| | | | |B1Ve |HIP HIP | +080414 |V0414 Aur |051048.2+410010 |BE | 8.20 | 8.30 | |Hp| | | | |B2Vne |HIP HIP | +080415 |V0415 Aur |051214.5+411255 |BE | 7.80 | 7.87 | |Hp| | | | |B2:V:nne |HIP HIP | +080416 |V0416 Aur |051313.3+401137 |GCAS: | 7.23 | 7.48 | |Hp| | | | |B2V:pe |HIP HIP | +080417 |V0417 Aur *|051331.8+353911 |EA | 7.92 | 8.15 | 8.08 |Hp|48500.5262 | | 1.86553 |13 |A0 |HIP HIP | +080418 |V0418 Aur |051511.5+482142 |LB: | 8.39 | 8.49 | |Hp| | | | |K0 |HIP HIP | +080419 |V0419 Aur |052008.2+354710 |LB: | 7.32 | 7.42 | |Hp| | | | |M3 |HIP HIP | +080420 |V0420 Aur |052235.2+374034 |BE | 7.42 | 7.53 | |Hp| | | | |B0IVpe |HIP HIP | +080421 |V0421 Aur |052330.2+501314 |LB | 7.84 | 8.01 | |Hp| | | | |M0 |HIP HIP | +080422 |V0422 Aur |052342.6+504451 |BY: | 11.73 | 12.04 | |Hp| | | | |K5 |HIP HIP | +080423 |V0423 Aur |052310.1+354232 |LPB: | 8.63 | 8.79 | |Hp| | | | |B8 |HIP HIP | +080424 |V0424 Aur *|052400.8+323732 |EB | 8.31 | 8.48 | 8.44 |Hp|48500.154 | | 1.8370 | |B9 |HIP HIP | +080425 |V0425 Aur *|052430.5+414938 |EB | 7.62 | 7.90 | 7.84 |Hp|48500.8290 | | 1.568583 | |B5 |HIP HIP | +080426 |V0426 Aur *|052812.3+352552 |EB | 10.55 | 10.76 | 10.66 |Hp|52925.5394 | | 1.419094 | |B3V |00001 HIP | +080427 |V0427 Aur |053035.9+313040 |LB | 7.52 | 7.65 | |Hp| | | | |K5 |HIP HIP | +080428 |V0428 Aur |053126.7+381911 |RV | 6.74 | 7.26 | |Hp|48526.89 | | 89.20 : | |K5 |HIP HIP | +080429 |V0429 Aur |053254.9+520741 |LB: | 8.61 | 8.71 | |Hp| | | | |K0 |HIP HIP | +080430 |V0430 Aur |053417.0+410724 |SRC | 6.89 | 7.02 | |Hp|48636. | | 410. | |M2II |HIP HIP | +080431 |V0431 Aur *|053642.3+341206 |BE: | 8.97 | 9.29 | |Hp| | | 16.86 : | |B5e |HIP HIP | +080432 |V0432 Aur *|053732.5+370512 |EA | 7.98 | 8.40 | |V |51571.4123 | | 3.08175 |09 |G0 |N0202 HIP | +080433 |V0433 Aur *|053918.3+291255 |LPB: | 6.02 | 6.06 | |Hp| | | 4.6382 | |B2IV-V |HIP HIP | +080434 |V0434 Aur |054219.9+430335 |BE | 7.16 | 7.30 | |Hp| | | | |B3Vne |HIP HIP | +080435 |V0435 Aur |054159.4+293122 |BE | 8.91 | 9.02 | |Hp| | | | |B3e |HIP HIP | +080436 |V0436 Aur |054517.0+354142 |LB: | 8.27 | 8.44 | |Hp| | | | |K5 |HIP HIP | +080437 |V0437 Aur *|054903.1+540157 |EA | 8.42 | 9.00 | |Hp|48500.101 | | 3.3638 : | |B9 |HIP HIP | +080438 |V0438 Aur |054853.6+290810 |GCAS | 8.03 | 8.14 | |Hp| | | | |B3:pe:shell |HIP HIP | +080439 |V0439 Aur |055033.8+472740 |LB: | 7.45 | 7.54 | |Hp| | | | |K5 |HIP HIP | +080440 |V0440 Aur *|055125.8+320729 |LB: | 6.24 | 6.37 | |Hp| | | | |M3III |HIP HIP | +080441 |V0441 Aur |055537.6+532736 |SR: | 7.38 | 7.50 | |Hp| | | | |M0 |HIP HIP | +080442 |V0442 Aur |055654.8+353444 |SR: | 7.04 | 7.39 | |Hp| | | | |M5 |HIP HIP | +080443 |V0443 Aur |055833.7+433015 |LB | 8.33 | 8.64 | |Hp| | | | |M2 |HIP HIP | +080444 |V0444 Aur |060058.6+475407 |ACV | 5.70 | 5.74 | |Hp| | | 14.368 | |B9.5pSiFe |N0108 HIP | +080445 |V0445 Aur |060239.2+425256 |LPB | 8.36 | 8.44 | |Hp| | | 2.27366 | |B8 |HIP HIP | +080446 |V0446 Aur |060342.6+503645 |LB | 8.45 | 8.65 | |Hp| | | | |M5 |HIP HIP | +080447 |V0447 Aur |060438.4+463506 |BE | 7.17 | 7.31 | |Hp| | | | |B3Ve |HIP HIP | +080448 |V0448 Aur |060524.0+334402 |LPB | 8.49 | 8.56 | |Hp| | | 4.0420 | |B9 |HIP HIP | +080449 |V0449 Aur *|060819.0+453316 |EB | 7.46 | 7.58 | 7.53 |Hp|52500.5934 | | 0.70366366 | |A0 |N0041 HIP | +080450 |V0450 Aur |060932.6+283957 |SR: | 7.94 | 8.10 | |Hp| | | | |K7 |HIP HIP | +080451 |V0451 Aur |061114.9+285427 |LPB | 7.74 | 7.80 | |Hp| | | 2.63323 | |B8 |HIP HIP | +080452 |V0452 Aur |061745.0+392826 |LB: | 6.77 | 6.87 | |Hp| | | | |K2 |HIP HIP | +080453 |V0453 Aur |062133.3+523114 |SR: | 7.71 | 8.22 | |Hp| | | | |M3 |HIP HIP | +080454 |V0454 Aur |062203.1+343551 |EA | 7.74 | 8.17 | |Hp|48502.21 | | 27.027 | |F8 |00001 HIP | +080455 |V0455 Aur *|062854.9+520733 |EA | 7.33 | 7.64 | 7.64 |Hp|47931.70 | | 3.14578 | |F2 |N0203 HIP | +080456 |V0456 Aur |062831.7+390638 |DSCTC | 7.88 | 7.95 | |Hp| | | 0.138657 | |F0 |HIP HIP | +080457 |V0457 Aur |063037.7+514645 |LB: | 8.84 | 8.94 | |Hp| | | | |M0 |HIP HIP | +080458 |V0458 Aur |063319.6+471306 |LB | 7.53 | 7.65 | |Hp| | | | |M5 |HIP HIP | +080459 |V0459 Aur *|063537.6+323437 |EB | 7.68 | 8.12 | 7.96 |Hp|48500.8270 | | 1.062637 | |B8 |HIP HIP | +080460 |V0460 Aur |063806.4+511208 |LB: | 7.57 | 7.87 | |Hp| | | | |M5 |HIP HIP | +080461 |V0461 Aur |064653.2+450211 |LB: | 9.41 | 9.56 | |Hp| | | | |K5 |HIP HIP | +080462 |V0462 Aur *|065636.6+463219 |EB: | 8.13 | 8.30 | 8.30 |Hp|48500.7417 | | 1.75680 | |A0 |HIP HIP | +080463 |V0463 Aur |071201.1+435035 |ACV: | 6.86 | 6.92 | |Hp| | | 0.804150 | |A0 |HIP HIP | +080464 |V0464 Aur |043912.1+325435 |M | 12.1 |< 15.2 | |V |51598. | | 280. | | |00001 GSC | +080465 |V0465 Aur |044648.0+355740 |SRB | 12.5 | 13.3 | |V | | | 69. : | | |00001 GSC | +080466 |V0466 Aur |045210.1+370328 |SRB | 13.3 | 14.5 | |V | | | 165. | | |00001 GSC | +080467 |V0467 Aur |045553.0+404613 |LB | 10.3 | 11.5 | |V | | | | | |00001 GSC | +080468 |V0468 Aur *|045611.6+444639 |EB | 12.4 | 12.7 | 12.6 |V |50395.5073 | | 0.91279 | | |75034 GSC | +080469 |V0469 Aur *|045556.8+364826 |LB: | 16.1 | 18.8 | |B | | | | | |00001 GSC | +080470 |V0470 Aur |045615.2+444654 |DCEP | 12.0 | 12.6 | |R |51537.62 | | 3.40724 |22 | |00001 GSC | +080471 |V0471 Aur |045604.6+371845 |SRB | 11.4 | 11.8 | |R | | | 88. | | |00001 GSC | +080472 |V0472 Aur |045947.3+350302 |SRB | 10.2 | 10.7 | |R | | | 160. : | | |00001 GSC | +080473 |V0473 Aur |050255.5+364409 |LB: | 11.9 | 12.7 | |V | | | | | |00001 GSC | +080474 |V0474 Aur |050447.8+400612 |LB: | 14.2 | 15.2 | |B | | | | | |00001 GSC | +080475 |V0475 Aur |050629.8+292631 |LB: | 11.0 | 11.4 | |R | | | | | |00001 GSC | +080476 |V0476 Aur |050737.9+424300 |LB: | 14.3 | 15.6 | |B | | | | | |00001 GSC | +080477 |V0477 Aur |050924.6+520007 |LB | 12.6 | 13.9 | |R | | | | | |75002 06286| +080478 |V0478 Aur |050944.6+404425 |LB: | 10.9 | 12.0 | |R | | | | | |00001 GSC | +080479 |V0479 Aur |051016.6+392319 |LB: | 9.6 | 10.1 | |R | | | | |C |00001 GSC | +080480 |V0480 Aur |051020.3+394923 |M | 15.2 | 17.9 | |B | | | | | |00001 GSC | +080481 |V0481 Aur |051023.3+411936 |LB: | 14.2 | 15.5 | |B | | | | | |00001 GSC | +080482 |V0482 Aur |051042.0+335718 |SRA: | 9.7 | 11.9 | |R |51594. | | 280. : | | |00001 GSC | +080483 |V0483 Aur |051144.3+541800 |M | 11.7 |< 15.0 | |V |51475. | | | | |00001 GSC | +080484 |V0484 Aur |051320.0+535442 |LB: | 9.3 | 9.6 | |R | | | | | |00001 GSC | +080485 |V0485 Aur |051641.1+501333 |M | 9.6 | 12.6 | |R |51418. | | 372. : | | |00001 2MASS| +080486 |V0486 Aur |051746.8+365932 |SR: | 10.6 | 11.3 | |R | | | | | |00001 GSC | +080487 |V0487 Aur |052045.0+381050 |SR: | 10.6 | 13.3 | |R | | | | | |00001 GSC | +080488 |V0488 Aur |052229.1+470258 |M: | 9.9 | 12.2 | |R |51559. | | 392. | | |00001 2MASS| +080489 |V0489 Aur |052226.6+425742 |LB: | 12.5 | 13.3 | |B | | | | | |00001 GSC | +080490 |V0490 Aur *|052841.9+350542 |CST: | 13.5 | | |R | | | | | |00001 GSC | +080491 |V0491 Aur |053024.3+391541 |LB: | 10.5 | 11.4 | |R | | | | | |00001 2MASS| +080492 |V0492 Aur |053656.9+520233 |SR | 12.1 | 13.5 | |R | | | 330. : | |Ce |00001 GSC | +080493 |V0493 Aur |055009.5+542244 |M | 10.6 | 16.1 | |V |52375. | | 306.7 | | |00001 GSC | +080494 |V0494 Aur |060031.1+552715 |M | 10.8 | 15.8 | |V |54220. | | 337.5 | | |00001 75037| +080495 |V0495 Aur *|064733.7+471015 |EA | 12.72 | 13.28 | 12.85 |V |51450.109 | | 1.046374 |20 *| |00001 GSC | +080496 |V0496 Aur |072752.2+404656 |UG | 15.7 |< 21. | |R | | | | |pec(UG) |75039 79229| +080497 |V0497 Aur |045233.5+454137 |LB: | 11.0 | 12.5 | |R | | | | | |00001 GSC | +080498 |V0498 Aur |045526.9+291511 |LB: | 13.3 | 14.4 | |B | | | | | |00001 GSC | +080499 |V0499 Aur *|045554.7+364825 |LB: | 14.3 | 15.0 | |B | | | | | |00001 GSC | +080500 |V0500 Aur |045627.4+330350 |LB | 10.5 | 10.7 | |R | | | | | |00001 GSC | +080501 |V0501 Aur *|045706.5+314250 |IT: | 10.59 | 10.83 | |V | | | | |K2 |76033 GSC | +080502 |V0502 Aur |050423.5+375811 |LB: | 11.0 | 12.0 | |V | | | | | |00001 GSC | +080503 |V0503 Aur |051055.4+331807 |SRB | 11.1 | 11.7 | |R | | | 81. | | |00001 GSC | +080504 |V0504 Aur |052559.7+451219 |LB | 11.8 | 12.6 | |V | | | | | |00001 GSC | +080505 |V0505 Aur |052736.3+484223 |LB: | 11.6 | 12.5 | |B | | | | | |00001 GSC | +080506 |V0506 Aur |053042.4+425020 |LB: | 14.1 | 15.6 | |B | | | | | |00001 GSC | +080507 |V0507 Aur |055149.5+542141 |LB: | 13.0 | 13.9 | |V | | | | | |00001 2MASS| +080508 |V0508 Aur |055714.8+322239 |M | 12.1 |< 15.2 | |V |51516. | | 317. | |S |00001 2MASS| +080509 |V0509 Aur |060539.5+522423 |LB: | 12.6 | 14.0 | |V | | | | | |00001 2MASS| +080510 |V0510 Aur |060638.7+375755 |M: | 11.0 | 14.3 | |R |51508. | | | | |00001 GSC | +080511 |V0511 Aur |060910.0+501727 |SRB | 10.2 | 10.5 | |R | | | 81. | | |00001 GSC | +080512 |V0512 Aur |061225.1+432815 |M: | 15.9 | 18.8 | |B | | | | | |00001 GSC | +080513 |V0513 Aur |061414.8+504152 |LB | 11.9 | 13.1 | |V | | | | |M7 |00001 GSC | +080514 |V0514 Aur |061710.8+303755 |M: | 15.0 | 18.7 | |B | | | | | |00001 GSC | +080515 |V0515 Aur |061912.9+502837 |M: | 17.3 |< 20.0 | |B | | | | |C(N) |00001 GSC | +080516 |V0516 Aur |062119.6+415800 |M | 14.9 | 19.1 | |B | | | | | |00001 2MASS| +080517 |V0517 Aur |062504.8+514654 |SR | 10.6 | 11.6 | |R | | | 270. : | | |00001 GSC | +080518 |V0518 Aur |062636.6+292002 |LB: | 10.5 | 11.5 | |V | | | | | |00001 GSC | +080519 |V0519 Aur |063242.2+431713 |LB: | 10.6 | 11.1 | |R | | | | | |00001 GSC | +080520 |V0520 Aur |063324.7+345414 |LB: | 11.2 | 12.0 | |V | | | | | |00001 GSC | +080521 |V0521 Aur |063413.6+455759 |LB: | 11.0 | 11.7 | |V | | | | | |00001 GSC | +080522 |V0522 Aur |063807.2+345921 |SRA: | 10.9 | 12.0 | |R |51457. | | 180. : | | |00001 2MASS| +080523 |V0523 Aur *|072403.5+412602 |EW | 13.4 | 14.3 | 14.1 |R |52500.0526 | | 0.3304376 | | |N0041 GSC | +080524 |V0524 Aur |044028.0+301650 |M | 9.8 | 12.5 | |R | | | | | |00001 2MASS| +080525 |V0525 Aur |044329.3+343219 |M | 9.5 | 12.9 | |Ic|49952. | | 386. | | |76006 75290| +080526 |V0526 Aur |050147.6+380542 |BY | 10.62 | 10.77 | |R | | | 2.8542 | |G0 |N0205 GSC | +080527 |V0527 Aur |050207.9+380142 |DCEP: | 13.4 | 14.1 | |R |51521.98 | | 37.9 : | | |00001 GSC | +080528 |V0528 Aur *|051252.4+464303 |M | 8.1 | 11.2 | |I |50050. | | 433. : | | |76006 75290| +080529 |V0529 Aur |052339.9+323016 |M | 12.8 | 16.8 | |I |49935. | | 575. : | | |76006 75290| +080530 |V0530 Aur *|054529.9+290706 |M | 9.4 | 12.4 | |I |49955. | | 449. : | | |76006 75290| +080531 |V0531 Aur |055146.4+352219 |M | 13.6 | 15.7 | |I |49781. | | 535. : | | |76006 75290| +080532 |V0532 Aur |061345.1+522540 |M | 11.0 | 15.3 : | |R |51536. | | 260. : | | |00001 2MASS| +080533 |V0533 Aur |062021.4+352221 |M | 11.3 | 15.6 | |I |49708. | | 428. : | | |76006 75290| +080534 |V0534 Aur *|062623.9+275644 |EA | 10.40 | 10.75 | 10.75 |V |51570.2412 | | 4.2836529 |06 | |N0206 77054| +080535 |V0535 Aur *|063246.2+462333 |EW | 12.70 | 13.17 | 13.15 |V |54757.424 | | 0.3847486 | | |00001 GSC | +080536 |V0536 Aur |045356.2+364527 |BY | 7.77 |( 0.03 )| |V | | | 7.878 | |G5Ve |78018 DM | +080537 |V0537 Aur |050845.0+401517 |DSCTC | 12.1 |( 0.05 )| |V | | | 0.15132 | | |78067 GSC | +080538 |V0538 Aur |054120.3+532852 |BY | 6.34 | 6.38 | |Hp| | | 10.86 | |K1Ve |78005 HIP | +080539 |V0539 Aur *|055150.5+323235 |DSCT | 16.05 |( 0.55 Rc)| |V | | | 0.109835 | | |78080 78080| +080540 |V0540 Aur *|055216.6+322815 |EA: | 14.98 |( 0.23 Rc)| |V |51540.518 | | | | |78080 78080| +080541 |V0541 Aur *|055220.4+323320 |EA: | 13.78 |( 0.4 Rc)| |V | | | | | |78080 78080| +080542 |V0542 Aur *|055233.0+323241 |EW | 16.07 |( 0.35 Rc)|( 0.3 )|V |51575.5083 | | 0.4224 | | |78080 78080| +080543 |V0543 Aur *|055239.1+323631 |EW | 17.83 |( 0.68 Rc)|( 0.66 )|V |51574.262 :| | 0.3579 | | |78080 78080| +080544 |V0544 Aur *|055253.2+323302 |EW | 16.17 |( 0.33 Rc)|( 0.31 )|V |51576.456 :| | 0.5585 | | |78080 78080| +080545 |V0545 Aur *|055300.7+322451 |RRC: | 16.11 |( 0.39 Rc)| |V | | | 0.2800 |40 | |78080 78080| +080546 |V0546 Aur *|060144.1+495630 |GDOR: | 13.97 | 14.07 | |V | | | 0.82235 | | |78081 78081| +080547 |V0547 Aur *|060157.4+495855 |GDOR: | 14.46 | 14.54 | |V |52308.55 | | 0.9616 : | | |00001 78081| +080548 |V0548 Aur *|060205.3+494911 |DSCT | 15.32 | 15.42 | |V | | | 0.096 | | |78081 78081| +080549 |V0549 Aur *|060221.4+495237 |EA | 15.90 |< 16.40 | |V |52308.387 | | | | |78081 78081| +080550 |V0550 Aur *|060226.4+495157 |DSCTC | 13.01 | 13.08 | |V | | | 0.087 | | |78081 78081| +080551 |V0551 Aur *|060238.1+495302 |EA+DSCT | 14.43 | 14.65 | 14.58 |V |52640.6072 | | 1.17320 | |F |78081 78081| +080552 |V0552 Aur *|061409.8+453009 |AM: | 11.2 | 14.5 | |p | | | 0.060868 | |K |78085 78085| +080553 |V0553 Aur |064411.8+365938 |GDOR | 7.53 | 7.58 | |Hp| | | 1.1505 | |F0 |78091 HIP | +080554 |V0554 Aur | | | | | | | | | | | | |=ER Tau +080555 |V0555 Aur | | | | | | | | | | | | |=ES Tau +080556 |V0556 Aur |044518.7+355815 |SR | 10.4 | 11.0 | |R | | | 150. : | | |00001 04341| +080557 |V0557 Aur |045046.7+424032 |SR: | 10.3 | 10.6 | |R | | | | |C(N) |00001 GSC | +080558 |V0558 Aur |045340.1+371844 |SR: | 11.2 | 11.8 | |R | | | | | |00001 04341| +080559 |V0559 Aur |045545.0+415227 |SR: | 10.6 | 10.9 | |R | | | 170. : | |C |00001 GSC | +080560 |V0560 Aur *|045642.8+391724 |EA | 9.07 | 9.20 | 9.18 : |V |48181.925 | | 1.528311 |12 : |A0 |79006 HIP | +080561 |V0561 Aur |050354.2+294904 |LB | 10.6 | 10.8 | |R | | | | | |00001 GSC | +080562 |V0562 Aur *|051855.3+293821 |EW | 12.87 | 13.21 | 13.19 |R |51509.098 | | 0.52878 | | |79004 GSC | +080563 |V0563 Aur |052200.6+325353 |LB | 11.3 | 12.5 | |R | | | | | |00001 04341| +080564 |V0564 Aur |053205.0+300655 |SRB | 10.6 | 11.0 | |R | | | 110. | |M6 |00001 GSC | +080565 |V0565 Aur *|053742.4+391530 |EA | 11.84 | 12.19 | 12.16 |R |51598.723 | | 4.2650 |06 | |79004 79041| +080566 |V0566 Aur |054203.0+410348 |SR | 10.8 | 11.2 | |R | | | 240. : | | |00001 03905| +080567 |V0567 Aur *|054337.0+335414 |EW | 12.55 | 13.2 : | 13.10 |R |51548.612 | | 0.71003 | | |79004 GSC | +080568 |V0568 Aur |054355.5+445140 |SRB | 11.1 | 11.4 | |R | | | 110. | | |00001 03905| +080569 |V0569 Aur |054634.2+442652 |EB | 13.0 | 13.5 | 13.25 |R |51531.634 | | 1.1833 | | |79004 GSC | +080570 |V0570 Aur |054927.8+443924 |SRB | 9.5 | 10.1 | |R | | | 78. | | |00001 00158| +080571 |V0571 Aur |054941.9+395440 |LB | 9.6 | 10.0 | |R | | | | | |00001 03905| +080572 |V0572 Aur |055651.0+300657 |LB | 10.1 | 10.5 | |R | | | | |C |00001 05527| +080573 |V0573 Aur |055804.3+464811 |LB | 10.6 | 10.9 | |R | | | | | |03905 03905| +080574 |V0574 Aur *|060148.7+514504 |RRAB | 13.4 | 14.1 | |R |51509.693 | | 0.57979 |15 | |79025 04065| +080575 |V0575 Aur |060730.9+510653 |RRAB | 12.33 | 13.4 | |R |52990.5840 | | 0.497932 |10 | |79048 04065| +080576 |V0576 Aur *|061011.3+300144 |EA | 9.68 | 9.98 : | 9.97 : |R |51464.843 | | 1.9614 |06 : |A0 |78225 DM | +080577 |V0577 Aur |061018.1+320311 |SR: | 12.7 | 13.5 | |V | | | | | |00001 2MASS| +080578 |V0578 Aur |062250.0+301952 |LB | 11.2 | 11.9 | |R | | | | | |04367 04367| +080579 |V0579 Aur *|062546.5+461958 |EA | 13.97 | 15.0 | 14.35 |R |51517.640 | | 2.0338 |15 : | |79004 GSC | +080580 |V0580 Aur *|063214.1+310955 |EA | 13.78 | 15.2 | 13.8 : |R |51519.672 | | 4.3976 |08 | |79004 GSC | +080581 |V0581 Aur *|051206.9+454643 |M | 11.3 | 16.4 | |R |51502. | | 306. : | | |00001 2MASS| +080582 |V0582 Aur |052552.0+345230 |FU: | 12.7 | 17.4 | |* | | | | | |80212 2MASS| NL80_1 +080583 |V0583 Aur |043925.5+333245 |IB | 11.39 | 11.56 | |V | | | 2.4180 | |K5 |80021 GSC | NL80_1 +080584 |V0584 Aur *|043931.0+340745 |RS | 9.9 |( 0.07 * )| |V | | | 0.7333 | |K2 |80021 HIP | NL80_1 +080585 |V0585 Aur *|044729.2+315143 |EB | 11.05 | 11.45 | 11.30 |* |51601.666 | | 0.535297 | |F5 |80013 GSC | NL80_1 +080586 |V0586 Aur |045104.9+434647 |DSCTC: | 12.05 |( 0.04 )| |V | | | 0.05963 | | |80176 80176| NL80_1 +080587 |V0587 Aur |045117.8+433714 |DSCTC: | 11.44 |( 0.05 )| |V | | | 0.2232 | | |80176 80176| NL80_1 +080588 |V0588 Aur |045222.1+400635 |RS | 12.47 |( 0.16 * )| |V | | | 6.2542 | | |80021 GSC | NL80_1 +080589 |V0589 Aur *|045224.2+431955 |EA | 12.2 | 12.9 | 12.3 |* |51528.66 | | 1.1600 |18 | |80107 80107| NL80_1 +080590 |V0590 Aur |045308.7+331202 |IB | 13.69 | 13.88 | |V | | | | |G8 |80154 GSC | NL80_1 +080591 |V0591 Aur *|045400.2+393344 |EB | 10.81 | 11.42 | 10.99 |* |51628.627 | | 1.10965 | |A0 |80011 GSC | NL80_1 +080592 |V0592 Aur |045450.6+320412 |RS | 11.43 |( 0.10 * )| |V | | | 0.2801 | |G0 |80021 DM | NL80_1 +080593 |V0593 Aur |045639.2+434846 |RS: | 9.6 | 9.9 | |* | | | 52. | | |80115 80115| NL80_1 +080594 |V0594 Aur *|045751.4+393002 |EA | 12.45 | 13.2 | 13.1 |* |51527.899 | | 1.4368 |12 | |80107 80107| NL80_1 +080595 |V0595 Aur |045809.0+433301 |RS | 11.98 |( 0.19 * )| |V | | | 0.4411 | | |80021 GSC | NL80_1 +080596 |V0596 Aur *|050202.3+423755 |EW | 11.83 | 12.29 | 12.27 |* |53686.5780 | | 0.397885 | | |80172 GSC | NL80_1 +080597 |V0597 Aur |050206.2+311102 |RS | 11.07 |( 0.07 * )| |V | | | 4.2336 | |G5 |80021 DM | NL80_1 +080598 |V0598 Aur |050329.6+310942 |RS: | 11.60 | 12.10 | |* | | | 16.98 | | |80177 GSC | NL80_1 +080599 |V0599 Aur *|050846.8+320209 |EW | 12.0 | 12.35 | 12.25 |V |53686.4414 | | 0.316535 | | |80172 GSC | NL80_1 +080600 |V0600 Aur |051022.3+312640 |IB | 11.30 |( 0.08 * )| |V | | | 2.2013 | |K2IV |80021 GSC | NL80_1 +080601 |V0601 Aur |051043.4+302043 |RS | 12.01 |( 0.14 * )| |V | | | 1.8082 | | |80021 GSC | NL80_1 +080602 |V0602 Aur |051043.9+461439 |BY | 11.5 | 11.7 | |* | | | 24.920 | | |80060 80060| NL80_1 +080603 |V0603 Aur *|051057.2+521457 |EW | 12.8 | 13.4 | 13.4 |* |51403.8564 | | 0.3746 | | |80016 80016| NL80_1 +080604 |V0604 Aur |051908.5+340538 |IB | 12.30 |( 0.17 * )| |V | | | 2.1662 | |K2IV |80021 GSC | NL80_1 +080605 |V0605 Aur |052246.8+353536 |LB | 12.5 | 13.0 | |* | | | | | |80062 USNO | NL80_1 +080606 |V0606 Aur *|052336.6+293428 |EA | 10.77 | 11.13 | 10.84 |* |51531.695 | | 1.8868 |14 |A5m |80011 DM | NL80_1 +080607 |V0607 Aur *|052424.6+543922 |EA/RS | 10.5 | 11.3 | 11.1 |V |54175.868 | | 2.0668 |08 | |80185 GSC | NL80_1 +080608 |V0608 Aur *|052737.9+395533 |EA | 12.5 |( 0.41 )|( 0.15 )|V |51900.1194 | | 0.7632387 | | |80186 GSC | NL80_1 +080609 |V0609 Aur *|052748.6+395411 |EB | 13.1 | 13.6 | 13.3 |V |51914.7611 | | 0.474728 | | |80186 GSC | NL80_1 +080610 |V0610 Aur *|053001.9+332406 |EA | 10.75 | 11.07 | 10.85 : |* |51514.840 | | 1.6192 |13 |B5 |80042 GSC | NL80_1 +080611 |V0611 Aur |053020.9+414914 |RS | 11.48 |( 0.08 * )| |V | | | 0.7299 | | |80021 GSC | NL80_1 +080612 |V0612 Aur *|053240.0+493419 |EA | 13.0 | 13.8 : | 13.7 : |* |51520.84 | | 1.66134 |10 | |80013 GSC | NL80_1 +080613 |V0613 Aur |053505.7+394632 |IB: | 10.83 |( 0.14 * )| |V | | | 4.5055 | |K0V |80021 DM | NL80_1 +080614 |V0614 Aur |053807.2+422029 |BY | 12.12 |( 0.10 * )| |V | | | 3.3000 | | |80021 GSC | NL80_1 +080615 |V0615 Aur |053844.5+535631 |SRB | 10.5 | 10.9 | |* | | | 47. | | |80100 GSC | NL80_1 +080616 |V0616 Aur |053929.4+354109 |INB | 12.01 | 14.01 | |Ks| | | | | |80196 80196| NL80_1 +080617 |V0617 Aur *|053956.6+300511 |EB | 8.03 | 8.21 | 8.13 |V |48013.1 | | 66.76 | |F5II+Be |80015 HIP | NL80_1 +080618 |V0618 Aur *|054338.2+315854 |EA | 12.95 | 13.9 : | 13.25 |* |51537.633 | | 0.99282 |13 | |80042 GSC | NL80_1 +080619 |V0619 Aur |054356.0+525731 |SRB: | 10.0 | 11.0 | |* | | | 92. | | |80100 GSC | NL80_1 +080620 |V0620 Aur *|054540.2+410624 |EA | 12.03 | 12.38 | 12.3 |* |53409.3330 | | 1.503265 |09 | |80197 80197| NL80_1 +080621 |V0621 Aur |054604.5+344528 |DCEP | 12.3 | 12.8 | |* |51514.7 | | 4.69 |21 | |80081 GSC | NL80_1 +080622 |V0622 Aur *|054753.6+390141 |EW | 15.13 | 15.32 | 15.3 : |* |54457.4902 | | 0.3043 | | |80200 80200| NL80_1 +080623 |V0623 Aur *|054815.4+390210 |EB | 12.5 | 12.9 | 12.7 |* |54346.5408 | | 0.60304 | | |80202 80202| NL80_1 +080624 |V0624 Aur *|054818.1+385709 |EA | 15.91 | 16.40 | |* |54473.5953 | | 0.7077 |19 | |80200 80200| NL80_1 +080625 |V0625 Aur *|054824.5+390538 |EW | 16.85 | 17.43 | 17.36 |* |54430.0040 | | 0.3309 | | |80200 80200| NL80_1 +080626 |V0626 Aur *|054837.6+391028 |EW | 15.59 | 15.86 | 15.83 |* |54429.6411 | | 0.3956 | | |80200 80200| NL80_1 +080627 |V0627 Aur *|054900.7+391434 |EW | 13.7 | 14.1 | 14.05 |* |54354.4867 | | 0.38781 | | |80202 80202| NL80_1 +080628 |V0628 Aur *|054908.4+391237 |EA | 15.71 | 16.31 | 15.99 |* |54429.7525 | | 1.3130 : |12 | |80200 80200| NL80_1 +080629 |V0629 Aur *|054917.2+392012 |EB | 16.42 | 17.06 | 16.75 |* |54429.4820 | | 0.4105 | | |80200 80200| NL80_1 +080630 |V0630 Aur *|055011.4+391026 |EB | 14.03 | 14.24 | 14.22 |* |54405.7351 | | 1.1958 | | |80200 80200| NL80_1 +080631 |V0631 Aur *|055014.3+391936 |EW | 15.97 | 16.61 | 16.59 |* |54429.5185 | | 0.3459 | | |80200 80200| NL80_1 +080632 |V0632 Aur *|055017.9+390712 |EB | 15.95 | 17.25 | 16.35 |* |54429.7173 | | 0.4652 | | |80200 80200| NL80_1 +080633 |V0633 Aur |055027.0+391315 |EA | 14.22 | 15.72 | |* |54412.4971 | | 2.6333 |10 : | |80200 80200| NL80_1 +080634 |V0634 Aur *|055045.2+392122 |EW | 15.0 | 15.27 | 15.22 |* |54429.8141 | | 0.4509 | | |80200 80200| NL80_1 +080635 |V0635 Aur |055102.1+391516 |BY: | 15.71 | 15.91 | |* | | | 0.5634 | | |80200 80200| NL80_1 +080636 |V0636 Aur *|055254.7+351610 |EW | 13.35 | 14.04 | 13.91 |* |53385.6005 | | 0.3406176 | | |80206 80206| NL80_1 +080637 |V0637 Aur *|055258.8+362337 |DCEPS | 10.05 | 10.37 | |* |51543.6 | | 7.85 |33 | |80081 GSC | NL80_1 +080638 |V0638 Aur |055313.5+382407 |RS: | 11.4 | 11.7 | |* | | | 14.003 | | |80060 80060| NL80_1 +080639 |V0639 Aur *|055443.4+524338 |EW | 14.01 | 14.85 | 14.70 |* |53318.3104 | | 0.3571 | | |80008 80008| NL80_1 +080640 |V0640 Aur *|060207.6+523144 |EW | 12.52 | 13.25 | 13.12 |* |53285.2664 | | 0.3280 | | |80008 80008| NL80_2 +080641 |V0641 Aur *|060347.6+421907 |EA | 12.90 | 13.65 | 13.65 |* |51274.691 | | 0.50488 |19 | |80042 GSC | NL80_2 +080642 |V0642 Aur |060951.0+322948 |BY | 10.39 |( 0.05 *)| |V | | | 7.8858 | | |80021 GSC | NL80_2 +080643 |V0643 Aur |061046.5+524643 |RRAB | 13.52 | 14.38 | |* |51593.61 | | 0.56447 |10 | |80026 GSC | NL80_2 +080644 |V0644 Aur *|061825.7+342939 |EA | 11.22 | 11.53 | 11.53 |* |51488.800 | | 0.78045 |15 | |80011 GSC | NL80_2 +080645 |V0645 Aur *|061915.4+282623 |EA | 9.72 | 10.26 | 10.10 |V |52977.747 | | 10.8925 |04 |A2 |80023 DM | NL80_2 +080646 |V0646 Aur *|063540.5+420415 |EW | 13.40 | 13.78 | 13.76 |V |53014.7709 | | 0.43869 | | |80254 GSC | NL80_2 +080647 |V0647 Aur *|063632.5+353543 |XM | 15.9 |( 0.45 *)| |R | | | | |pec(e) |80255 80255| NL80_2 +080648 |V0648 Aur *|064116.9+464908 |EW/RS | 11.63 | 11.96 | 11.80 |* |54085.591 | | 0.422467 | | |80258 GSC | NL80_2 +080649 |V0649 Aur |065341.9+424219 |BY | 11.28 |( 0.08 *)| |V | | | 3.5416 | |K7V |80021 GSC | NL80_2 +080650 |V0650 Aur |071145.0+403207 |ELL: | 13.6 |( 0.05 )| |V | | | 0.645 : | | |80270 80270| NL80_2 +080651 |V0651 Aur |071647.7+431818 |RRAB | 12.86 | 13.29 | |* |51277.68 | | 0.61773 |22 | |80026 GSC | NL80_2 +080652 |V0652 Aur |072135.7+435906 |LB: | 12.6 | 13.2 | |* | | | | | |80062 GSC | NL80_2 +080653 |V0653 Aur |072452.4+353127 |RRAB | 12.17 | 13.04 | |* |51532.63 | | 0.57928 |17 | |80001 GSC | NL80_2 +080654 |V0654 Aur |072910.7+365839 |XM | 19.5 | 20.7 | |V | | | | | |80278 USNO | NL80_2 +089002 |bet Aur *|055931.7+445651 |EA | 1.89 | 1.98 | 1.98 |V |52500.573 | | 3.960036 |06 *|A2IV+A2IV |N0041 HIP | +089005 |eps Aur *|050158.1+434924 |EA | 2.92 | 3.88 | |V |45513. | | 9884. |08 |A8Iab: |00001 HIP | +089006 |zet Aur *|050228.7+410433 |EA | 3.70 | 3.97 | |V |52968.7941 | | 972.150912 |04 |K5Ib-II+B6.5IV-V |N0041 HIP | +089008 |tet Aur *|055943.3+371245 |ACV | 2.62 | 2.70 | |V | | | 3.6186 | |B9.5p(Si) |HIP HIP | +089016 |pi. Aur |055956.1+455612 |LC | 4.24 | 4.34 | |V | | | | |M3.5II |05841 HIP | +0890231|psi 1 Aur *|062453.9+491716 |SRC | 4.68 | 5.70 | |V | | | 175. : | |K5-M0Iab-Ib |N0135 HIP | +090001 |R Boo *|143711.6+264412 |M | 6.0 | 13.3 | |V |55029. | | 223.11 |45 |M3e-M8e |00001 HIP | +090002 |S Boo |142252.9+534837 |M | 7.4 | 14.0 | |V |55035. | | 269.88 |47 |M3e-M6e |00001 HIP | +090003 |T Boo |141407.0+190400:|N: | 9.7 : |< 17.0 | |V |00510. |1860 | | | |00860 N0207| +090004 |U Boo |145420.0+174144 |SRB | 9.7 | 13.2 | |V | | | 204. |49 |M4e |N0039 GSC | +090005 |V Boo *|142945.3+385141 |SR | 7.0 | 12.0 | |V | | | 257. |48 |M6e |N0039 HIP | +090006 |W Boo |144325.4+263140 |SRB | 4.49 | 5.4 | |V | | | 25. | |M2-M4III |N0208 HIP | +090007 |X Boo |142410.4+161908 |CST | 10.25 | | |V | | | | | | BD | +090008 |Y Boo |142201.6+194819 |CST: | 7.94 | | |V | | | | |K0III | HIP | +090009 |Z Boo *|140629.8+132900 |M | 8.2 | 15.7 | |V |54558. | | 282.2 |40 |M5e-M6e |00001 BD | +090010 |RR Boo |144705.8+391902 |M | 8.2 | 15.0 | |V |54929. | | 194.0 |48 |M2e-M6e |00001 HIP | +090011 |RS Boo *|143333.2+314517 |RRAB | 9.63 | 10.88 | |V |48500.3370 | | 0.377339 |17 |A7-F5 |HIP HIP | +090012 |RT Boo |151714.7+362133 |M | 8.2 | 14.0 | |V |54873. | | 275.5 |49 |M6.5e-M8e |00001 HIP | +090013 |RU Boo *|144600.2+231844 |RRAB | 12.97 | 14.18 | |V |53455.747 | | 0.4926699 |13 | |00001 06286| +090014 |RV Boo |143915.9+323222 |SRB | 7.0 | 9.0 | |V | | | 144. | |M5e-M7e |N0039 HIP | +090015 |RW Boo |144113.4+313420 |SRB | 7.2 | 8.7 | |V | | | 209. | |M5 |01100 HIP | +090016 |RX Boo *|142411.6+254213 |SRB | 6.43 | 9.1 | |V | | | 162.3 | |M6.5e-M8IIIe |N0209 HIP | +090017 |RY Boo |144943.0+230156 |CST: | 7.12 | 7.16 | |V | | | | |F5III-IV | HIP | +090018 |RZ Boo |140315.2+284139 |SRA | 9.8 | 12.6 | |V |53900. | | 210.9 | |M4 |00001 GSC | +090019 |SS Boo *|151332.5+383406 |EA/RS | 10.28 | 10.95 |( 0.1 )|V |52501.03 | | 7.606146 |10 *|G0V+K1IV |N0041 HIP | +090020 |ST Boo *|153039.2+354704 |RRAB | 10.28 | 11.54 | |V |48500.1722 | | 0.622286 |15 |A7-F7 |HIP HIP | +090021 |SU Boo *|142921.0+320804 |EA | 11.96 | 12.72 | 12.04 |V |52500.895 | | 1.561258 |13 |A3V |N0041 GSC | +090022 |SV Boo *|143406.3+390633 |RRAB | 12.78 | 13.52 | |V |54200.462 | | 0.581443 |17 | |00001 GSC | +090023 |SW Boo *|142734.9+360244 |RRAB | 11.76 | 12.88 | |V |53540.492 | | 0.513551 |13 |F6 |00001 GSC | +090024 |SX Boo |135608.7+140812 |SRA | 10.5 | 14.5 | |V |53480. | | 151.7 | |M0e |00001 GSC | +090025 |SY Boo *|141240.0+173222 |EB | 12.25 | 12.87 | 12.46 : |V |52500.3928 | | 0.7144818 | | |N0041 06286| +090026 |SZ Boo *|144213.3+281223 |RRAB | 11.92 | 13.05 | |V |53160.642 | | 0.5228203 |10 |F5 |00001 06286| +090027 |TT Boo |145744.8+404341 |UGSU | 12.1 | 19.19 | |V | | |( 45. ) | | |03225 72085| +090028 |TU Boo *|140458.0+300002 |EW | 11.53 | 12.48 | 12.17 |V |52500.1633 | | 0.3242827 | |G3 |N0041 GSC | +090029 |TV Boo *|141636.6+422136 |RRC | 10.71 | 11.30 | |V |51308.71 | | 0.3125609 |36 |A7-F2 |00001 06286| +090030 |TW Boo *|144505.9+410144 |RRAB | 10.63 | 11.68 | |V |51559.98 | | 0.5322715 |13 |F0-F9 |00001 HIP | +090031 |TX Boo *|144717.4+315028 |EB | 12.2 | 12.6 | 12.3 |R |54633.699 | | 3.4127464 | |F0: |00001 GSC | +090032 |TY Boo *|150046.9+350755 |EW | 11.39 | 12.06 | 11.92 |V |54202.337 | | 0.3171485 | |G3 |00001 GSC | +090033 |TZ Boo *|150809.1+395813 |EW | 10.45 | 11.00 | 10.82 |V |54961.423 | | 0.2971613 | |G2V |00001 HIP | +090034 |UU Boo *|151705.3+350657 |RRAB | 11.50 | 12.81 | |V |54491.653 | | 0.4569339 |10 |F5 |N0210 06286| +090035 |UV Boo |142232.4+253300 |CST: | 8.13 | | |V | | | | |F5V | HIP | +090036 |UW Boo *|142059.6+470645 |EA | 10.91 | 11.73 |( 0.1 pg)|V |52500.0434 | | 1.0047082 |20 |F0 |N0041 BD | +090037 |UX Boo |142134.5+465943 |EA: | 10.93 | 11.6 | |V |48761.621 | | | |G2V-G8III |N0211 BD | +090038 |UY Boo *|135846.3+125707 |RRAB | 10.23 | 11.40 | |V |53575.517 | | 0.6508964 |16 |A8-F0 |00001 HIP | +090039 |UZ Boo |144401.2+220055 |UG | 11.0 | 20.4 | |V | | |( 2191. ) | | |N0054 72085| +090040 |VV Boo |140936.8+384034 |SR | 10.0 | 10.5 | |R | | | 260. : | |M7 |00001 GSC | +090041 |VW Boo *|141726.0+123403 |EW | 10.42 | 11.11 | 10.93 |V |52500.0099 | | 0.3423147 | |G5 |N0041 HIP | +090042 |VX Boo |143859.7+250842 |RRAB | 12.92 | 13.99 | |V |52707.83 | | 0.591148 |10 | |00001 06286| +090043 |VY Boo |144944.9+242911 |RRAB | 12.63 | 13.65 | |V |50893.754 | | 0.661716 |10 | |N0055 06286| +090044 |VZ Boo |145315.9+255719 |RRAB | 14.53 | 15.60 | |* |53851.87 | | 0.625709 |20 | |00001 GSC | +090045 |WW Boo |145654.6+253500 |RRAB | 12.4 | 13.6 | |V |53897.416 | | 0.479267 |15 | |00001 06286| +090046 |WX Boo |150621.5+255548 |SRB | 11.1 | 12.2 | |V | | | 207. | | |00001 GSC | +090047 |WY Boo |135938.5+274715 |SR | 10.0 | 11.0 | |V | | | 114. | |M5 |00001 BD | +090048 |WZ Boo |150209.4+242942 |RRAB | 13.4 | 14.4 | |V |54140.87 | | 0.577494 |22 | |00001 06286| +090049 |XX Boo |145137.6+292127 |RRAB | 11.8 | 12.4 | |R |53485.629 | | 0.581402 |20 |A2 |00001 06286| +090050 |XY Boo *|134911.6+201125 |EW | 10.29 | 10.76 | 10.73 |V |52500.4721 | | 0.3705754 | |F5V |N0041 HIP | +090051 |XZ Boo |135355.2+171651 |LB | 8.8 | 9.9 | |V | | | | |M5 |00001 BD | +090052 |YY Boo *|153528.3+432849 |EA | 11.9 | 13.2 | 12.1 |R |52500.428 | | 3.933070 | |A4 |N0041 02379| +090053 |YZ Boo |152407.0+365201 |DSCT | 10.30 | 10.80 | |V |48500.0030 | | 0.1040920 |31 |A6-F1 |HIP HIP | +090054 |ZZ Boo *|135609.5+255507 |EA | 6.79 | 7.44 | 7.44 |V |52502.9212 | | 4.9917633 |06 |F2V |N0041 HIP | +090055 |AA Boo |140234.2+075352 |LB | 9.5 | 10.4 | |V | | | | |M4p |00001 BD | +090056 |AB Boo |140704. +204400:|N: | 4.5 | | |V | |1877 | | | |00858 72118| +090057 |AC Boo *|145628.3+462144 |EW | 10.14 | 10.67 | 10.67 |V |52500.3020 | | 0.3524485 | |F8Vn |N0041 HIP | +090058 |AD Boo *|143512.8+243822 |EA | 9.45 | 10.09 | 9.85 |V |52501.5314 | | 2.0688069 |08 |G0 |N0041 GSC | +090059 |AE Boo *|144735.3+165044 |RRC | 10.44 | 10.88 | |V |52861.512 | | 0.3148958 |45 |F2 |00001 HIP | +090060 |AF Boo |133602.9+212932 |RRAB | 15.5 | 17.0 | |p |37766.540 | | 0.530177 |10 | |05264 04341| +090061 |AG Boo |133629.9+273354 |RRAB | 14.2 | 16.0 | |p |52373.585 | | 0.5221015 |14 | |04176 GSC | +090062 |AH Boo |133654.7+223047 |RRAB | 12.8 | 14.2 | |V |53836.637 | | 0.5543294 |10 | |00001 04341| +090063 |AI Boo |133809.4+153855 |CST | 14.56 : | | |V | | | | |G2 |N0211 04341| +090064 |AK Boo *|133839.1+241105 |EW | 15.8 | 16.3 | 16.3 |p |37823.588 | | 0.69339 | | |05264 04341| +090065 |AL Boo |133855.8+184241 |M | 12.0 |< 14.8 | |V |53517. | | 167.0 | | |00001 04341| +090066 |AM Boo |133854.5+234549 |RRAB | 13.5 | 15.0 | |V |53805.76 | | 0.46439 |10 | |00001 04341| +090067 |AN Boo |133947.7+153533 |RRAB | 13.7 | 15.5 | |p |37823.400 | | 0.53249 |08 | |05264 04341| +090068 |AO Boo *|134428.5+221721 |RRAB | 15.38 | 16.45 | |* |53469.86 | | 0.479493 | | |00001 04341| +090069 |AP Boo |134457.2+194103 |RRAB | 15.5 | 16.7 | |p |37820.424 | | 0.55525 |10 | |05264 04065| +090070 |AQ Boo *|134726.9+171825 |EW | 12.2 | 12.9 | 12.9 |V |52500.2019 | | 0.3331394 | |F8p |00001 04341| +090071 |AR Boo *|134810.3+245526 |EW | 12.7 | 13.6 | 13.5 |V |52500.3838 | | 0.34487642 | | |N0041 04176| +090072 |AS Boo |134818.3+244704 |RRAB | 14.5 | 16.0 | |p |36687.32 | | 0.4924987 | | |04176 04176| +090073 |AT Boo |134906.4+162222 |RRAB | 13.9 | 15.6 | |p |37766.550 | | 0.515153 |10 | |05264 04341| +090074 |AU Boo |134949.8+160747 |RRAB | 15.1 | 15.9 | |p |37818.500 | | 0.651265 |12 | |05264 04341| +090075 |AV Boo |135106.8+173904 |E: | 15.7 | 16.2 : | |p |53069.6868 | | | |K5 |N0212 04341| +090076 |AW Boo |135128.4+201454 |RRAB | 14.0 | 15.9 | |p |37818.430 | | 0.52706 |08 | |05264 04341| +090077 |AX Boo |135203.4+183340 |RRAB | 14.2 | 15.3 | |p |37818.480 | | 0.587125 |12 | |05264 04341| +090078 |AY Boo |135312.8+171245 |RRAB | 13.6 | 15.0 | |V |53426.80 | | 0.614345 |12 | |00001 04065| +090079 |AZ Boo |135318.2+152833 |RRAB | 14.0 | 15.7 | |p |37668.520 | | 0.48926 |10 | |05264 04341| +090080 |BB Boo |135337.6+215046 |RRAB | 14.4 | 16.0 | |p |37823.460 | | 0.47275 |08 | |05264 04341| +090081 |BC Boo |135338.3+262101 |RRAB | 15.5 | 17.2 | |p |36692.320 | | 0.578795 |25 : | |04421 04421| +090082 |BD Boo |135433.7+273140 |RRAB | 13.8 | 14.9 | |p |53082.77 | | 0.548577 |15 | |00001 04176| +090083 |BE Boo *|135538.3+175252 |RRAB | 14.6 | 15.3 | |p |37669.520 | | 0.31062 |15 | |05264 04341| +090084 |BF Boo |135821.1+251825 |RRAB | 14.8 | 15.7 | |p |36669.40 | | 0.817796 |25 | |04421 04421| +090085 |BG Boo |140029.0+250544 |RRC | 13.2 | 13.9 | |V |54524.82 | | 0.3200402 |40 : | |00001 04176| +090086 |BH Boo |140258.0+253212 |RRAB | 14.0 | 15.5 | |p |51325.79 | | 0.600915 |10 | |04421 04421| +090087 |BI Boo *|140440.3+281142 |RRAB | 15.3 | 16.0 | |p |34146.45 | | 0.5762165 |12 | |07131 04178| +090088 |BK Boo *|140504.7+283603 |CST: | 13.5 | | |R | | | | | |00001 04172| +090089 |BL Boo *|140540.4+282912 |BLBOO | 14.43 | 15.10 | |V |50253.686 | | 0.8213010 |42 |A2-F0 |N0213 04172| +090090 |BM Boo |140711.0+295440 |RRAB | 14.3 | 15.6 | |p |36715.355 | | 0.501587 |20 : |A-F |04172 04172| +090091 |BN Boo *|140721.0+290251 |RRAB | 15.4 | 16.4 | |p |37131.341 | | 0.5196619 |17 |B-A |07131 04178| +090092 |BO Boo *|141134.5+312818 |RRAB | 14.5 | 15.7 | |p |36669.26 | | 0.571775 |25 | |04421 04421| +090093 |BP Boo |154250.8+522139 |ACV | 5.34 |( 0.02 )| |U | | | 1.30488 | |B9pSiCr |06989 HIP | +090094 |BQ Boo |133920.3+181205 |RRAB | 13.7 | 15.4 | |p |37669.480 | | 0.62031 |10 | |05264 04065| +090095 |BR Boo *|134037.9+160630 |RRC | 13.4 | 14.3 | |p |52371.386 | | 0.304575 |30 | |00001 04341| +090096 |BS Boo |134143.0+233501 |RRC | 15.6 | 16.3 | |p |37669.620 | | 0.296149 |25 : | |05264 04341| +090097 |BT Boo |134328.6+235608 |RRAB | 15.4 | 16.0 | |p |37668.550 | | 0.67456 |10 | |05264 04065| +090098 |BU Boo *|140142.5+223016 |RRAB | 14.36 | 14.73 | |V |53117.429 | | 0.4450 |22 : | |73062 04341| +090099 |BV Boo |134203.9+225450 |LB | 11.7 | 12.1 | |V | | | | | |05264 04341| +090100 |BW Boo *|143708.8+355547 |EA | 7.13 | 7.46 | 7.17 |V |52501.026 | | 3.332816 |06 |F0V |N0041 HIP | +090101 |BX Boo *|150038.7+471639 |ACV | 6.33 | 6.41 | |V | | | 2.88813 | |B9VpSiCrSr |HIP HIP | +090102 |BY Boo |140755.8+435116 |LB: | 4.98 | 5.33 | |V | | | | |M4-4.5III |05055 HIP | +090103 |BZ Boo |133821.4+271714 |DSCTC: | 8.20 |( 0.03 )| |V | | | 0.1329 : | |A5 |00001 HIP | +090104 |CC Boo *|134022.9+274058 |QSO | 18.0 | 19.5 | |B | | | | | |N0214 06128| +090105 |CD Boo *|134123.3+274955 |QSO | 19.0 | 19.7 | |B | | | | | |N0215 06128| +090106 |CE Boo *|145429.2+160604 |UV | 11.35 | 11.68 | |B | | | | |M2Ve+M8Ve |07440 HIP | +090107 |CF Boo |140817.3+492729 |LB | 5.29 | 5.38 | |Hp| | | | |M2IIIab |HIP HIP | +090108 |CG Boo |141632.3+273929 |RRAB | 13.7 | 14.4 | |R |51356.77 | | 0.60533 |17 | |00001 04172| +090109 |CH Boo |143439.6+492206 |LB: | 5.83 | 5.87 | |Hp| | | | |M1IIIab |HIP HIP | +090110 |CI Boo |142214.0+292212 |LB | 6.23 | 6.57 | |Hp| | | | |M3III |HIP HIP | +090111 |CK Boo *|143503.8+090649 |EW | 8.95 | 9.25 | 9.22 |V |52500.029 | | 0.3551522 | |F8 |N0041 HIP | +090112 |CL Boo |141131.5+533037 |RRAB | 16.05 | 16.9 | |* |54238.85 | | 0.58045 |16 | |00001 08350| +090113 |CM Boo *|141603.1+200338 |RRAB | 12.1 | 13.2 | |V |53862.616 | | 0.609069 |16 | |00001 08351| +090114 |CN Boo |141604.1+185443 |DSCTC: | 6.24 |( 0.03 : )| |B | | | 0.04 : | |A8m |08352 BD | +090115 |CO Boo |143328.3+173647 |M | 11.2 |< 15. | |V |53433. | | 280.5 | | |00001 08351| +090116 |CP Boo |143320.3+365733 |DSCTC: | 6.89 |( 0.02 )| |B | | | | |F8IV |08353 HIP | +090117 |CQ Boo |145404.8+153747 |RRC | 11.65 | 12.25 | |V |54664.610 | | 0.281882 |40 | |00001 67035| +090118 |CR Boo |134855.3+075735 |UGSU: | 13.0 | 17.5 | |V | | | | |pec |N0216 76005| +090119 |CS Boo |140601.8+243415 |RRAB | 12.3 | 13.5 | |V |53820.708 | | 0.5533825 | | |00001 08351| +090120 |CT Boo |140821.0+533040 |NL: | 17.0 | 18.7 : | |B | | | | | |68042 68042| +090121 |CU Boo |152221.7+522843 |RRC: | 13.0 | 13.3 | |R |54316.373 | | 0.29624 |40 | |68043 68043| +090122 |CV Boo *|152619.6+365854 |EA | 10.65 | 11.48 | 11.36 |V |52500.5608 | | 0.8469938 |15 |G0 |N0041 BD | +090123 |CW Boo |145832.7+100819 |ZZB | 15.9 |( 0.25 : )| |B | | | 0.00769 | |DB |N0217 69046| +090124 |CX Boo |142439.1+091722 |ZZA | 14.3 |( 0.1 )| |V | | | 0.0014 | |DA |71125 02387| +090125 |CY Boo |141728.4+151548 |SRB | 5.74 | 5.90 | |V | | | 23. | |M3III |77065 HIP | +090126 |CZ Boo |143346.1+275801 |RRAB | 17.60 | 18.32 | |V |49747.655 | | 0.437536 |20 | |73003 USNO | +090127 |DD Boo |145120.1+233230 |RRC | 12.4 | 12.9 | |V |53090.785 | | 0.3393397 |40 | |00001 73040| +090128 |DE Boo *|145323.8+190910 |RS | 5.97 | 6.04 | |V | | | 10.39 | |K2V |73005 HIP | +090129 |DF Boo |145511.2+280232 |RRAB | 14.49 | 15.04 | |V |49178.703 | | 0.622135 |20 | |73003 GSC | +090130 |DG Boo |151802.0+464206 |RRAB | 11.59 | 12.76 | |V |54313.435 | | 0.4586685 |15 | |00001 GSC | +090131 |DH Boo |133752.9+132648 |LB: | 7.90 | 8.24 | |Hp| | | | |M4 |HIP HIP | +090132 |DI Boo |134234.2+231907 |LB | 7.31 | 7.42 | |Hp| | | | |M0 |HIP HIP | +090133 |DK Boo |134359.1+214905 |LB | 8.02 | 8.77 | |Hp| | | | |K5 |HIP HIP | +090134 |DL Boo |134757.4+185640 |LB | 7.58 | 7.80 | |Hp| | | | |K5 |HIP HIP | +090135 |DM Boo *|134922.7+103527 |NL: | 8.73 | 8.94 | |Hp| | | | |G5 |HIP HIP | +090136 |DN Boo *|135142.0+141806 |EW | 11.03 | 11.32 | 11.28 |V |53803.760 | | 0.4475667 | |G0 |00001 HIP | +090137 |DO Boo |135437.5+121615 |LB: | 8.82 | 9.25 | |Hp| | | | |M5 |HIP HIP | +090138 |DP Boo |140629.6+165813 |LB: | 6.53 | 6.69 | |Hp| | | | |M1 |HIP HIP | +090139 |DQ Boo *|141236.2+451153 |BY: | 9.30 | 9.42 | |Hp| | | | |K0 |HIP HIP | +090140 |DR Boo |141558.2+342615 |LB | 8.06 | 8.60 | |Hp| | | | |K0 |HIP HIP | +090141 |DS Boo |141609.5+525617 |LB | 8.74 | 8.94 | |Hp| | | | |M2 |HIP HIP | +090142 |DT Boo |142144.6+435948 |ISB | 8.42 | 8.86 | |Hp| | | | |M5 |HIP HIP | +090143 |DU Boo *|142217.7+412702 |EB | 8.48 | 9.02 | 8.86 |V |52500.033 | | 1.055889 | |A2 |N0041 HIP | +090144 |DV Boo *|142249.7+145620 |EA | 7.53 | 7.76 | 7.69 |V |48045.254 | | 3.78264 |06 |A2 |79006 HIP | +090145 |DW Boo *|142647.4+082254 |EB: | 7.36 | 7.45 | 7.43 |V |55048.523 | | 0.9244464 | |A0 |00001 HIP | +090146 |DX Boo |142846.0+255114 |LB | 6.67 | 6.76 | |V | | | | |M1III |HIP HIP | +090147 |DY Boo |142938.6+190009 |LB | 9.26 | 9.47 | |Hp| | | | |M2 |HIP HIP | +090148 |DZ Boo |142953.9+193508 |LB: | 8.68 | 8.89 | |V | | | | |K5 |HIP HIP | +090149 |EE Boo |143114.3+453543 |LB | 8.49 | 8.69 | |Hp| | | | |K5 |HIP HIP | +090150 |EF Boo *|143230.5+504941 |EW/RS | 9.23 | 9.83 | 9.78 |V |52500.2231 | | 0.4205161 | |G5 |N0041 HIP | +090151 |EG Boo |144008.2+282536 |LB: | 7.96 | 8.06 | |Hp| | | | |K5 |HIP HIP | +090152 |EH Boo |144223.3+544812 |LB | 7.28 | 7.50 | |Hp| | | | |M2 |HIP HIP | +090153 |EI Boo |144306.9+425407 |SRD | 8.89 | 9.11 | |Hp| | | 35.32 | |K0 |HIP HIP | +090154 |EK Boo |144606.0+150754 |LB: | 5.33 | 5.71 | |Hp| | | | |M5IIIab |HIP HIP | +090155 |EL Boo *|144803.4+135641 |EW | 9.20 | 9.43 | 9.42 |V |54633.625 | | 0.4137642 | |F8 |00001 HIP | +090156 |EM Boo *|144832.2+244504 |EA | 8.98 | 9.32 | 9.23 |V |52736.755 | | 2.446228 |13 |G5 |00001 HIP | +090157 |EN Boo |145102.9+120951 |LB: | 7.67 | 7.85 | |Hp| | | | |M1 |HIP HIP | +090158 |EO Boo |145142.2+190521 |LB: | 8.45 | 8.60 | |Hp| | | | |M2III |HIP HIP | +090159 |EP Boo |145136.8+260735 |LB: | 9.56 | 9.68 | |Hp| | | | |M0 |HIP HIP | +090160 |EQ Boo *|145225.8+175723 |EA | 8.80 | 9.20 | 9.11 |V |47931.794 | | 5.43536 |04 |G5 |79193 HIP | +090161 |ER Boo |145318.0+355345 |LB: | 9.89 | 10.02 | |Hp| | | | |M0 |HIP HIP | +090162 |ES Boo |145533.6+352721 |LB: | 8.53 | 8.64 | |Hp| | | | |M0 |HIP HIP | +090163 |ET Boo *|145920.3+464904 |EB | 9.14 | 9.50 | 9.40 |Hp|54982.456 | | 0.6450412 | |F8 |00001 HIP | +090164 |EU Boo |145942.4+320351 |LB: | 10.09 | 10.25 | |Hp| | | | |M0 |HIP HIP | +090165 |EV Boo |150230.7+314102 |LB | 6.42 | 6.61 | |Hp| | | | |M5 |HIP HIP | +090166 |EW Boo *|150246.1+375436 |EA | 10.31 | 10.69 | 10.34 |Hp|52500.229 | | 0.9063492 |20 |A0 |N0041 HIP | +090167 |EX Boo |150327.3+252538 |SRB | 9.4 | 10.0 | |V | | | 52. | |M5 |00001 HIP | +090168 |EY Boo |150310.2+431115 |LB: | 9.46 | 9.72 | |Hp| | | | |M5 |HIP HIP | +090169 |EZ Boo |150957.0+202526 |SRB | 9.72 | 9.88 | |V | | | 195. | |M2 |00001 HIP | +090170 |FF Boo |151031.5+114025 |LB: | 6.93 | 7.02 | |Hp| | | | |M2.5III |HIP HIP | +090171 |FG Boo |151135.0+495411 |LB | 7.35 | 8.06 | |Hp| | | | |M0 |HIP HIP | +090172 |FH Boo |151246.8+441617 |LB: | 9.18 | 9.35 | |Hp| | | | |M0 |HIP HIP | +090173 |FI Boo *|152206.0+511055 |EW | 9.55 | 9.68 | 9.66 |V |52500.337 | | 0.390001 | |G3V |N0041 HIP | +090174 |FK Boo |152714.9+503710 |LPB | 7.79 | 7.83 | |Hp| | | 1.5129 | |B9 |HIP HIP | +090175 |FL Boo *|152809.9+382138 |LB: | 9.40 | 9.55 | |Hp| | | | |K0 |HIP HIP | +090176 |FM Boo |153145.0+434513 |LB: | 10.65 | 10.83 | |Hp| | | | |M0 |HIP HIP | +090177 |FN Boo |153146.8+470325 |BY: | 10.47 | 10.76 | |Hp| | | | |K6 |HIP HIP | +090178 |FO Boo |153932.1+424149 |LB: | 7.65 | 7.76 | |Hp| | | | |M1 |HIP HIP | +090179 |FP Boo *|154300.3+431555 |EW | 10.14 | 10.44 | 10.38 |Hp|52500.311 | | 0.640458 | |A5 |N0041 HIP | +090180 |FQ Boo |134944.1+082431 |DSCTC | 6.59 |( 0.02 b )| |V | | | 0.049 | |A2V |75040 HIP | +090181 |FR Boo |140315.7+243551 |RS | 9.26 | 9.30 | |B | | | 96. | |K3III |73005 HIP | +090182 |FS Boo *| | | | | | | | | | | | |N +090183 |FT Boo |141359.6+472643 |RRAB | 13.4 | 14.6 | |R |51422.190 | | 0.458775 |15 | |N0218 GSC | +090184 |FU Boo |142253.8+193220 |RRAB | 13.2 | 14.6 | |V |51432.74 | | 0.65357 |18 | |N0218 GSC | +090185 |FV Boo |150825.8+093619 |M: | 13.6 |< 15.0 | |V |54505. | | 314. | |M9III |00001 GSC | +090186 |FW Boo |152925.8+522509 |RV: | 12.2 | 13.9 | |R | | | 102. | | |79207 GSC | +090187 |FX Boo |154107.5+472044 |M: | 11.9 |< 14.1 | |R |51401. | | 160. | | |00001 2MASS| +090188 |FY Boo *|134651.8+225713 |EW | 13.0 | 13.9 | 13.8 |V |52500.0230 | | 0.2411593 | | |N0041 GSC | +090189 |FZ Boo |140612.9+104934 |LB: | 7.62 | 7.72 | |V | | | | |M0III |77023 HIP | +090190 |GG Boo *|140916.6+383734 |EB | 12.26 | 12.65 | 12.46 |R |51259.8645 | | 0.42695 | | |77100 GSC | +090191 |GH Boo *|141451.5+273416 |EW | 11.6 | 12.0 | 11.9 |V |52500.4012 | | 0.6595104 | | |00001 GSC | +090192 |GI Boo *|143723.3+380442 |EA | 11.3 | 11.8 | 11.4 |R |51286.7052 | | 1.0335 |15 | |77100 DM | +090193 |GK Boo *|143820.7+363225 |EA | 10.3 | 10.8 | 10.7 |R |54959.525 | | 0.4777725 |17 | |00001 GSC | +090194 |GL Boo *|144005.7+263402 |EA | 10.8 | 11.3 | 11.0 |V |52501.7330 | | 3.1974877 |17 | |N0041 DM | +090195 |GM Boo *|144726.6+224514 |EW | 11.85 | 12.35 | 12.30 |V |52500.102 | | 0.3611189 | | |N0041 GSC | +090196 |GN Boo *|145007.8+293859 |EW | 10.75 | 11.35 | |* |55015.4454 | | 0.3015996 | | |00001 GSC | +090197 |GO Boo *|145312.5+284222 |EA | 12.0 | 12.4 | 12.1 : |R |52500.4161 | | 3.0764190 |09 | |N0041 GSC | +090198 |GP Boo *|145730.9+240252 |EB | 10.65 | 11.03 | 10.75 |V |52500.1110 | | 0.81877010 | | |N0041 GSC | +090199 |GQ Boo *|145936.7+250245 |EW | 12.8 | 13.3 | 13.2 |V |52500.257 | | 0.3846395 | | |N0041 GSC | +090200 |GR Boo *|145954.5+255434 |EW | 11.30 | 11.85 | 11.80 |V |52500.1925 | | 0.3766704 | | |N0041 GSC | +090201 |GS Boo *|150029.6+334022 |EA | 11.35 | 12.01 | 11.45 |R |52500.045 | | 1.256816 |13 | |N0041 DM | +090202 |GT Boo *|151726.7+381336 |EB | 12.1 | 12.4 | 12.3 |R |52500.5173 | | 0.56892286 | | |N0041 GSC | +090203 |GU Boo *|152154.8+335610 |EA | 13.1 | 13.7 | 13.7 : |R |54936.462 | | 0.488730 |10 | |00001 GSC | +090204 |GV Boo *|133659.4+265248 |EW | 12.3 | 13.1 | 12.9 |V |54924.3933 | | 0.3678717 | | |00001 GSC | +090205 |GW Boo *|135313.9+200943 |EW | 10.19 | 10.65 | 10.59 |V |52788.42371 | | 0.53158 | |A9III |78104 DM | +090206 |GX Boo *|140105.6+244217 |EW: | 12.16 | 12.32 | 12.32 |R |51332.194 | | 0.387810 | | |78161 GSC | +090207 |GY Boo |141241.6+234852 |BY | 8.88 |( 0.03 )| |V | | | 9.52 : | |K0V |78018 HIP | +090208 |GZ Boo |142108.9+372404 |BY | 8.90 |( 0.04 )| |V | | | 7.52 | |K2V |78018 HIP | +090209 |HH Boo *|142144.1+464159 |EW | 10.91 | 11.55 | 11.42 |V |52500.3368 | | 0.31866645 | |G5III |N0041 GSC | +090210 |HI Boo |142643.2+315216 |RS: | 10.25 |( 0.35 )| |V | | | 20.83 | |K2III |78173 DM | +090211 |HK Boo *|142901.2+120720 |RS | 8.43 |( 0.09 )| |V | | | 17.62 | |G5IVe |78018 HIP | +090212 |HL Boo |142902.8+110234 |EA: | 7.61 |( 0.03 )| |V |51327.5 | | 26.68 |15 : |K0 |78018 HIP | +090213 |HM Boo |142909.3+381640 |E:/RS | 9.17 |( 0.02 )| |V |51339. | | 21.84 | |K3V |78018 HIP | +090214 |HN Boo |143600.6+094448 |BY | 7.48 |( 0.04 )| |V | | | 11.54 | |K0V |78018 HIP | +090215 |HO Boo |144603.1+273044 |BY | 7.98 |( 0.02 )| |V | | | 93. : | |K2V |78018 HIP | +090216 |HP Boo |145015.8+235443 |BY | 5.98 | 6.01 | |Hp| | | 7.85 | |G2V |78005 HIP | +090217 |HQ Boo *|134952.2+122229 |RRAB | 14.35 | 15.05 | |R |51427.42 | | 0.6193 |15 : |BA |79025 08066| +090218 |HR Boo *|144833.0+214401 |EW | 13.2 | 13.8 | 13.70 |V |54585.705 | | 0.315964 | | |00001 GSC | +090219 |HS Boo |150006.3+214743 |RRAB | 14.0 | 15.1 | |R |51414.522 | | 0.52930 |15 : | |79025 GSC | +090220 |HT Boo |150646.1+212617 |RRAB | 14.4 | 15.4 | |R |51388.922 | | 0.47451 |18 : | |79025 GSC | +090221 |HU Boo |150731.5+250307 |RRC | 14.3 | 15.1 | |R |51408.102 | | 0.33730 |33 | |79025 GSC | +090222 |HV Boo |150949.8+265115 |RRAB | 13.1 | 14.0 | |V |53868.622 | | 0.681476 |20 | |00001 GSC | +090223 |HW Boo *|134323.2+150917 |UG | 14.7 | 18.5 | |R | | | | |pec(UG) |80167 80167| NL80_2 +090224 |HX Boo |134808.5+074913 |SRB | 8.97 | 9.59 | |V | | | 56.2 | |M5 |80002 DM | NL80_2 +090225 |HY Boo |135649.2+242927 |RS | 10.74 | 10.92 | |V | | | 12.23 | | |80034 GSC | NL80_2 +090226 |HZ Boo |140408.4+121034 |RRAB | 12.6 | 14.0 | |V |53071.8071 | | 0.454794 |15 | |80002 GSC | NL80_2 +090227 |II Boo |140510.3+140451 |RRAB | 12.8 | 14.0 | |V |54968.60 | | 0.536217 |18 | |80001 GSC | NL80_2 +090228 |IK Boo *|140846.2+292908 |EW | 11.42 | 11.76 | 11.69 |* |53382.6264 | | 0.303119 | | |80172 GSC | NL80_2 +090229 |IL Boo *|140900.5+451837 |EW | 13.1 | 13.55 | 13.45 |* |51438.735 | | 0.34741 | | |80101 80101| NL80_2 +090230 |IM Boo |140905.6+474928 |RRAB | 13.0 | 14.0 | |* |51423.007 | | 0.615767 |13 | |80168 80168| NL80_2 +090231 |IN Boo *|140921.3+311008 |EW: | 13.5 | 14.4 | 14.3 |* |51332.70 | | 0.285767 : | | |80001 GSC | NL80_2 +090232 |IO Boo *|141251.0+243202 |EW | 11.61 | 12.21 | 12.09 |V |52395.7197 | | 0.2710 | | |80393 80393| NL80_2 +090233 |IP Boo *|141457.4+391924 |RRC | 14.4 | 15.0 | |* |51395.565 | | 0.38107 |35 | |80205 80205| NL80_2 +090234 |IQ Boo |141525.5+281656 |RRAB | 13.78 | 14.59 | |* |53144.63 | | 0.535225 |20 | |80001 GSC | NL80_2 +090235 |IR Boo |141546.6+165605 |RRAB | 14.20 | 15.27 | |* |51359.81 | | 0.57031 | | |80026 GSC | NL80_2 +090236 |IS Boo *|141600.1+491416 |EW | 14.0 | 14.6 | 14.5 |V |51421.597 | | 0.25145 | | |80102 80102| NL80_2 +090237 |IT Boo |141614.6+483922 |SRD: | 11.05 | 11.35 | |* | | | 70. | | |80070 80070| NL80_2 +090238 |IU Boo |141630.9+265525 |BY | 10.32 | 10.56 | |V | | | 7.0209 | | |80021 GSC | NL80_2 +090239 |IV Boo |141639.6+301703 |EW: | 14.9 |( 0.71 )| |V | | | 0.283050 | | |80394 GSC | NL80_2 +090240 |IW Boo *|141646.3+430845 |EW | 13.4 | 13.7 | 13.6 |* |51512.954 | | 0.35764 | | |80102 80102| NL80_2 +090241 |IX Boo *|141653.6+235246 |EW: | 12.9 | 13.3 | 13.15 |V |54667.50 | | 0.354310 | | |80001 GSC | NL80_2 +090242 |IY Boo |141939.2+254724 |RRAB | 14.26 | 15.42 | |* |51615.70 | | 0.59165 | | |80026 GSC | NL80_2 +090243 |IZ Boo |142004.7+390301 |BY: | 11.79 |( 0.06 *)| |V | | | 0.3693 | |M2.5 |80021 GSC | NL80_2 +090244 |KK Boo *|142014.7+431058 |EW | 14.3 | 14.8 | 14.7 |* |51394.744 | | 0.27913 | | |80052 80052| NL80_2 +090245 |KL Boo |142019.6+275857 |BY | 10.93 | 11.28 | |V | | | 7.8248 | |K5V |80021 GSC | NL80_2 +090246 |KM Boo *|142053.8+542853 |EW | 14.05 | 14.7 | 14.6 |* |51425.818 | | 0.35866 | | |80085 80085| NL80_2 +090247 |KN Boo *|142138.2+075320 |RPHS | 15.10 |( 0.02 )| |V | | | 0.00167 | |sdB |80398 80204| NL80_2 +090248 |KO Boo *|142157.5+232656 |EW: | 13.15 | 13.35 | 13.35 |* |51247.3147 | | 0.369508 | | |80394 GSC | NL80_2 +090249 |KP Boo *|142335.3+433941 |EB | 11.90 | 12.35 | 12.1 |* |51399.545 | | 0.58987 | | |80101 80101| NL80_2 +090250 |KQ Boo |142510.3+392001 |RS | 12.7 | 13.0 | |* | | | 6.372 | | |80115 80115| NL80_2 +090251 |KR Boo |142529.4+205747 |RRAB | 12.4 | 13.6 | |V |52834.542 | | 0.512138 |17 | |80001 GSC | NL80_2 +090252 |KS Boo |142656.6+233653 |BY | 10.90 |( 0.05 *)| |V | | | 6.4131 | | |80021 GSC | NL80_2 +090253 |KT Boo |142902.5+335039 |BY | 9.32 |( 0.07 *)| |V | | | 3.8028 | |G0 |80021 DM | NL80_2 +090254 |KU Boo |143030.8+502022 |RRAB | 13.17 | 13.85 | |* |51567.83 | | 0.57066 |14 | |80318 GSC | NL80_2 +090255 |KV Boo |143033.5+384355 |SRB | 8.8 | 10.1 | |* | | | 75. | |M |80001 GSC | NL80_2 +090256 |KW Boo *|143040.4+271329 |EW: | 14.0 | 14.5 | 14.5 |* |51373.74 | | 0.34887 | | |80001 GSC | NL80_2 +090257 |KX Boo |143100.9+202532 |RRAB | 13.71 | 14.48 | |* |51631.76 | | 0.61712 |15 | |80026 GSC | NL80_2 +090258 |KY Boo |143104.0+440422 |RS | 11.6 | 11.8 | |* | | | 6.70280 | | |80067 80067| NL80_2 +090259 |KZ Boo *|143234.4+542739 |EW | 12.65 | 13.1 | 13.1 |* |51397.801 | | 0.353515 | | |80085 80085| NL80_2 +090260 |LL Boo *|143241.2+461140 |RS | 12.09 | 12.24 | |* | | | 6.862 | | |80115 80115| NL80_2 +090261 |LM Boo *|143635.5+240037 |EW | 12.6 | 13.2 | 13.1 |V |53823.7171 | | 0.327925 | | |80002 GSC | NL80_2 +090262 |LN Boo |143709.0+254447 |RRAB | 13.33 | 14.52 | |* |51287.87 | | 0.46675 |21 | |80026 GSC | NL80_2 +090263 |LO Boo |143729.5+412835 |BY | 13.15 |( 0.13 *)| |V | | | 2.0896 | |M2.5V |80021 GSC | NL80_2 +090264 |LP Boo |143732.0+352819 |SR | 9.8 | 10.2 | |* | | | 80. : | | |80070 80070| NL80_2 +090265 |LQ Boo |143753.7+345924 |RRAB | 13.24 | 13.97 | |* |51330.75 | | 0.56435 |15 | |80026 GSC | NL80_2 +090266 |LR Boo |143806.8+354941 |RS | 12.2 | 12.4 | |* | | | 1.384 | | |80370 80370| NL80_2 +090267 |LS Boo |143821.8+142455 |RRAB | 12.4 | 13.6 | |V |54627.60 | | 0.5527108 |15 | |80001 GSC | NL80_2 +090268 |LT Boo |143845.1+534659 |RRAB | 14.25 | 15.22 | |* |51390.73 | | 0.52238 | | |80026 GSC | NL80_2 +090269 |LU Boo |143854.6+330020 |BY | 11.12 |( 0.07 *)| |V | | | 5.0682 : | | |80021 GSC | NL80_2 +090270 |LV Boo |143902.2+535744 |RRAB | 14.44 | 15.42 | |* |51286.67 | | 0.51600 | | |80026 GSC | NL80_2 +090271 |LW Boo |144032.6+173557 |RRAB | 12.4 | 13.5 | |V |54175.7868 | | 0.563420 |15 | |80002 GSC | NL80_2 +090272 |LX Boo |144145.3+423121 |BY | 11.39 |( 0.14 *)| |V | | | 0.5940 | | |80021 GSC | NL80_2 +090273 |LY Boo |144153.8+390155 |EW | 13.1 |( 0.21 )| |V |51246.2978 | | 0.414408 | | |80394 GSC | NL80_2 +090274 |LZ Boo |144241.8+500624 |RRAB | 12.60 | 13.46 | |* |51615.83 | | 0.61179 |14 | |80026 GSC | NL80_2 +090275 |MM Boo |144248.4+423130 |RRAB | 13.8 | 14.8 | |V |51410.72 | | 0.49506 |11 | |80168 80168| NL80_2 +090276 |MN Boo *|144351.2+474303 |EW | 9.18 | 9.48 | 9.46 |* |51421.594 | | 0.38769 | |G0 |80101 80101| NL80_2 +090277 |MO Boo |144421.2+403908 |RRAB | 13.8 | 14.8 | |* |51409.84 | | 0.499975 |12 : | |80168 80168| NL80_2 +090278 |MP Boo |144438.3+531305 |RS | 10.95 | 11.15 | |* | | | 72. | | |80069 80069| NL80_2 +090279 |MQ Boo *|144448.6+443900 |EB | 12.60 | 13.05 | 12.85 |* |51352.765 | | 0.49340 | | |80101 80101| NL80_2 +090280 |MR Boo *|144533.4+511045 |EB | 11.06 | 11.47 | 11.34 |* |51408.908 | | 0.86685 | | |80101 80101| NL80_2 +090281 |MS Boo |144541.0+340719 |RS | 11.2 | 11.4 | |* | | | 11.131 | | |80370 80370| NL80_2 +090282 |MT Boo *|144706.7+410339 |EW | 13.45 | 13.95 | 13.9 |* |51411.847 | | 0.36534 | | |80101 80101| NL80_2 +090283 |MU Boo |144814.7+192019 |RRC: | 13.6 | 14.3 | |V |54630.6049 | | 0.320375 |34 | |80001 GSC | NL80_2 +090284 |MV Boo |144831.0+350318 |EA/RS | 10.70 | 10.90 | |* |51288.72 | | 3.56053 |08 | |80001 GSC | NL80_2 +090285 |MW Boo *|144848.8+474042 |EW | 14.0 | 14.4 | 14.4 |* |51408.507 | | 0.36414 | | |80101 80101| NL80_2 +090286 |MX Boo |144952.6+420627 |RS | 10.81 | 10.96 | |* | | | 13.7137 | | |80170 80170| NL80_2 +090287 |MY Boo *|145217.9+541551 |EW | 13.7 | 14.4 | 14.2 |* |51387.900 | | 0.47337 | | |80085 80085| NL80_2 +090288 |MZ Boo |145240.2+453941 |RRAB | 12.3 | 13.1 | |* |51325.754 | | 0.50075 |12 | |80168 80168| NL80_2 +090289 |NN Boo *|145339.9+403143 |RR(B) | 12.65 | 13.18 | |* |51312.71 | | 0.35299 | | |80026 GSC | NL80_2 +090290 |NO Boo |145501.9+144203 |EB:/RS | 11.19 | 11.42 | |* |51425.66 | | 3.4934 : | | |80170 80170| NL80_2 +090291 |NP Boo |145641.0+273025 |M | 10.5 | 13.0 | |V |53056. | | 233.3 | | |80002 GSC | NL80_2 +090292 |NQ Boo |145800.7+131149 |RS | 10.7 | 11.0 | |* | | | 59.66 | | |80158 GSC | NL80_2 +090293 |NR Boo *|145828.4+110555 |EW | 13.5 | 14.4 | 14.2 |V |53142.73 | | 0.356729 | | |80002 GSC | NL80_2 +090294 |NS Boo |150018.9+335207 |BY | 11.81 |( 0.12 *)| |V | | | 2.4429 | | |80021 GSC | NL80_2 +090295 |NT Boo *|150032.8+495503 |EW | 12.1 | 12.35 | 12.35 |* |51408.707 | | 0.43489 | | |80101 80101| NL80_2 +090296 |NU Boo *|150034.6+541054 |EW | 13.4 | 13.8 | 13.75 : |* |51401.807 | | 0.33957 | | |80101 80101| NL80_2 +090297 |NV Boo |150047.6+350951 |RRC | 14.70 | 15.12 | |V |52722.3398 | | 0.3488485 |47 | |80404 80087| NL80_2 +090298 |NW Boo *|150049.7+350835 |EA | 14.8 |( 0.52 )|( 0.18 )|* |52820.526 | | 1.011856 |20 | |80087 80087| NL80_2 +090299 |NX Boo *|150059.5+341141 |EW | 13.02 | 13.40 | 13.36 |* |51578.8373 | | 0.251133 | | |80001 GSC | NL80_2 +090300 |NY Boo *|150109.6+484816 |EW | 12.15 | 12.5 | 12.5 |* |51406.635 | | 0.32679 | | |80101 80101| NL80_2 +090301 |NZ Boo *|150241.0+333424 |UGSU+E | 13.7 | 19.6 | |V |53799.6405 | | 0.05890947 | |pec(UG) |80285 USNO | NL80_2 +090302 |OO Boo |150247.4+221821 |RS | 10.7 | 10.9 | |V | | | 1.153 : | | |80001 DM | NL80_2 +090303 |OP Boo *|150312.1+533354 |EW | 12.8 | 13.1 | 13.05 |* |51372.668 | | 0.311445 | | |80102 80102| NL80_2 +090304 |OQ Boo |150337.7+280334 |EW | 12.17 |( 0.09 )| |V |51218.5117 | | 0.397984 | | |80394 GSC | NL80_2 +090305 |OR Boo |150427.4+515204 |RRAB | 13.4 | 14.6 | |* |51391.783 | | 0.47950 |11 | |80205 80205| NL80_2 +090306 |OS Boo *|150437.6+425606 |EW | 13.8 | 14.1 | 14.0 |* |51382.777 | | 0.27572 | | |80101 80101| NL80_2 +090307 |OT Boo *|150650.4+473816 |EA | 9.8 | 10.25 | 10.0 |* |51434.97 | | 15.64 |07 |F8 |80407 80407| NL80_2 +090308 |OU Boo |150701.4+412253 |RRAB | 14.1 | 15.1 | |* |51376.611 | | 0.50575 |15 : | |80168 80168| NL80_2 +090309 |OV Boo *|150722.4+523040 |EA | 18.2 | 19.6 | |V |53798.7388 | | 0.04625829 |05 |DAe |80408 G2.3 | NL80_2 +090310 |OW Boo |150734.0+100249 |RRAB | 14.58 | 15.69 | |* |51620.88 | | 0.35734 | | |80026 GSC | NL80_2 +090311 |OX Boo |150807.3+330039 |RRAB | 14.01 | 14.92 | |* |51332.75 | | 0.51100 | | |80026 GSC | NL80_2 +090312 |OY Boo |151113.3+342616 |RRAB | 13.38 | 14.20 | |* |51339.91 | | 0.55604 |17 | |80026 GSC | NL80_2 +090313 |OZ Boo |151248.0+284014 |EW | 13.9 |( 0.25 V)| |* |51218.5117 | | 0.324012 | | |80394 GSC | NL80_2 +090314 |PP Boo |151414.1+454913 |NL | 20.2 | 20.5 | |g | | | | |pec(e) |80030 80027| NL80_2 +090315 |PQ Boo |151703.2+533229 |RRC | 12.8 | 13.2 | |* |51381.093 | | 0.26446 |35 | |80168 80168| NL80_2 +090316 |PR Boo *|151832.0+445712 |EW | 13.7 | 14.1 : | 14.05 |* |51349.790 | | 0.3713 | | |80101 80101| NL80_2 +090317 |PS Boo *|151944.2+502057 |EW | 12.3 | 12.6 | 12.5 |* |51403.825 | | 0.281615 | | |80101 80101| NL80_2 +090318 |PT Boo *|152015.2+432349 |EW | 12.6 | 12.85 | 12.82 |* |51373.940 | | 0.44664 | | |80102 80102| NL80_2 +090319 |PU Boo *|152302.2+453920 |EW | 10.6 | 10.9 | 10.85 |* |51395.826 | | 0.48224 | | |80101 80101| NL80_2 +090320 |PV Boo |152325.5+335158 |EW | 14.51 |( 0.63 V)| |* |51219.3725 | | 0.292534 | | |80394 GSC | NL80_2 +090321 |PW Boo |152714.3+341452 |RRAB | 12.92 | 13.80 | |* |51573.84 | | 0.59522 |12 | |80026 GSC | NL80_2 +090322 |PX Boo |152742.0+494817 |RRAB | 13.67 | 14.59 | |* |51356.70 | | 0.55776 |14 | |80026 GSC | NL80_2 +090323 |PY Boo *|152822.1+513221 |EW | 12.1 | 12.65 | 12.55 |* |51403.125 | | 0.278047 | | |80101 80101| NL80_2 +090324 |PZ Boo *|153007.9+431501 |EW | 12.9 | 13.4 | 13.25 |* |51400.538 | | 0.62265 | | |80102 80102| NL80_2 +090325 |QQ Boo *|153204.8+453408 |EW | 12.45 | 12.85 | 12.75 |* |51415.776 | | 0.27648 | | |80101 80101| NL80_2 +090326 |QR Boo |153320.4+434427 |RRAB | 14.6 | 15.6 | |* |51387.87 | | 0.5705 |30 : | |80205 80205| NL80_2 +090327 |QS Boo |153442.3+485210 |RR | 14.6 | 15.2 | |* |51399.88 | | 0.50852 : |30 : | |80168 80168| NL80_2 +090328 |QT Boo *|153511.0+494744 |EW | 11.65 | 11.8 | 11.75 |* |51402.537 | | 0.319065 | | |80085 80085| NL80_2 +090329 |QU Boo |153605.6+420023 |SRD | 11.55 | 11.74 | |* |51442. | | 54. |35 | |80070 80070| NL80_2 +090330 |QV Boo *|153629.5+395611 |EW | 14.2 | 15.0 | 15.0 |* |51396.81 | | 0.32480 | | |80101 80101| NL80_2 +090331 |QW Boo *|153634.6+463809 |EW | 12.1 | 12.45 | 12.4 |* |51391.922 | | 0.29087 | | |80101 80101| NL80_2 +090332 |QX Boo *|153649.3+473719 |EW | 12.5 | 13.2 | 13.1 |* |51395.970 | | 0.360465 | | |80101 80101| NL80_2 +090333 |QY Boo *|153917.4+434545 |EW | 12.7 | 12.9 | 12.85 |* |51404.765 | | 0.34189 | | |80102 80102| NL80_2 +090334 |QZ Boo |153920.9+474524 |RS | 10.95 | 11.25 | |* | | | 20.0 | | |80115 80115| NL80_2 +090335 |V0335 Boo |154058.9+402700 |BY | 10.50 |( 0.05 *)| |V | | | 1.9775 | | |80021 GSC | NL80_2 +090336 |V0336 Boo |154436.6+461922 |SXPHE | 12.35 | 12.70 | |* |51388.951 | | 0.112892 |25 | |80178 80178| NL80_2 +090337 |V0337 Boo |154535.0+420507 |BY | 13.67 |( 0.21 *)| |V | | | 5.7211 | | |80021 GSC | NL80_2 +090338 |V0338 Boo *|154626.1+441847 |RR(B) | 12.71 | 13.22 | |* | | | 0.49404 | | |80026 GSC | NL80_2 +090339 |V0339 Boo *|154835.0+432845 |EW | 10.7 | 10.9 | 10.9 |* |51393.654 | | 0.36281 | | |80102 80102| NL80_2 +090340 |V0340 Boo |154859.7+401408 |RRAB | 13.7 | 14.1 | |* |51387.83 | | 0.71073 |30 : | |80168 80168| NL80_2 +099003 |gam Boo *|143204.7+381830 |DSCTC | 3.02 | 3.07 | |V | | | 0.2903137 | |A7III |03236 HIP | +099009 |iot Boo |141609.9+512202 |DSCTC | 4.73 | 4.78 | |V | | | 0.027 | |A7V |N0219 HIP | +0990102|kap 2 Boo *|141329.0+514724 |DSCTC | 4.50 | 4.58 | |V | | | 0.06479 | |A8IV |N0220 HIP | +099014 |ksi Boo *|145123.4+190602 |BY | 4.52 | 4.67 | |V | | | 10.137 | |G8Ve+K4Ve |03866 HIP | +099109 |i Boo *|150347.3+473915 |EW | 4.70 | 4.86 | 4.84 |V |52500.1807 | | 0.2678190 | |G2V+G2V |N0041 HIP | +100001 |R Cae |044030.1-381407 |M | 6.7 | 13.7 | |V |40645. | | 390.95 |41 |M6e |00001 00002| +100002 |S Cae *|045656.4-330800 |E | 10.47 | 11.28 | |V | | | | | |06450 CoD | +100003 |T Cae |044718.9-361234 |SR | 9.0 | 10.8 | |p |27840. | | 156. | |C6,4(N4) |00016 03389| +100004 |U Cae |045314.4-374916 |RRAB | 11.6 | 13.1 | |V |34314.590 | | 0.419794 |18 | |00080 06286| +100005 |V Cae |050137.7-390806 |RRAB | 12.33 | 13.28 | |V |34322.315 | | 0.570798 |19 | |05775 02381| +100006 |W Cae |045021.6-454650 |EA/SD: | 10. | 10.8 | |p |28752.600 | | 6.97885 | |G0 |03795 CoD | +100007 |X Cae *|050426.2-354218 |DSCTC | 6.28 | 6.39 | |V |39395.570 | | 0.1352227 |50 |F1III-F2IV |06451 CoD | +100008 |Y Cae |045047.7-401253 |LB | 8.74 | 8.86 | |V | | | | |M3(III) |05828 CoD | +100009 |Z Cae |045235.4-430338 |SR | 7.84 | 7.99 | |V |40667. | | 52. | |M2III |05828 CoD | +100010 |RR Cae |042105.6-483907 |EA/WD | 14.88 |( 3.3 )| |B | | | | | |69047 69048| +100011 |RS Cae |045325.5-421340 |XM | 18.4 | 19.6 | |V | | | | | |73043 73043| +100012 |RT Cae |042538.7-380334 |EW: | 10.00 | 10.21 | |Hp| | | | | |HIP HIP | +100013 |RU Cae |042540.4-395009 |SRB | 8.08 | 8.24 | |Hp| | | | | |HIP HIP | +100014 |RV Cae |042809.5-415735 |LB | 6.44 | 6.56 | |Hp| | | | | |HIP HIP | +100015 |RW Cae |042940.9-482220 |SRB: | 8.81 | 8.91 | |Hp| | | | | |HIP HIP | +100016 |RX Cae *|043053.3-411027 |DSCTC | 7.07 | 7.16 | |Hp| | | | | |HIP HIP | +100017 |RY Cae |043235.4-401230 |LB: | 8.38 | 8.48 | |Hp| | | | | |HIP HIP | +100018 |RZ Cae |043301.5-381700 |EA: | 7.68 | 7.82 | |Hp| | | | | |HIP HIP | +100019 |SS Cae |043444.9-420146 |LB: | 8.23 | 8.33 | |Hp| | | | | |HIP HIP | +100020 |ST Cae |045449.4-293342 |LB: | 9.29 | 9.46 | |Hp| | | | | |HIP HIP | +100021 |SU Cae |045550.0-274217 |LC: | 8.51 | 8.71 | |Hp| | | | | |HIP HIP | +100022 |SV Cae |050056.5-420011 |SRB | 7.74 | 7.86 | |Hp| | | | | |HIP HIP | +100023 |SW Cae |044141.9-331453 |SRB | 9.0 | 10.9 | |V | | | 223. | | |79100 DM | +100024 |SX Cae |044356.5-430519 |EA | 12.27 | 13.1 | 12.95 |V |52215.706 | | 3.6521 |05 | |79018 79034| +100025 |SY Cae |045100.9-340215 |BY: | 17.42 | 17.48 | |Ic| | | 0.2875 | |L0.5 |80175 2MASS| NL80_1 +110001 |R Cam *|141751.0+834954 |M | 6.97 | 14.4 | |V |43978. | | 270.22 |45 |S2,8e-S8,7e |00001 00002| +110002 |S Cam |054102.5+684755 |SRA | 7.7 | 11.6 | |V |43360. | | 327.26 |51 |C7,3e(R8e) |00001 00002| +110003 |T Cam *|044008.9+660849 |M | 7.3 | 14.4 | |V |43433. | | 373.20 |47 |S4,7e-S8.5,8e |00001 00002| +110004 |U Cam *|034148.2+623854 |SRB | 11.0 | 12.8 | |p |43060. | | | |C3,9-C6,4e(N5) | 00002| +110005 |V Cam *|060232.3+743027 |M | 7.7 | 16.0 | |V |43402. | | 522.45 |31 |M7e |00001 00002| +110006 |W Cam |062556.3+752704 |M | 10.8 | 14.5 | |V |35213. | | 283.6 | |M7 |05167 00100| +110007 |X Cam |044542.2+750604 |M | 7.4 | 14.2 | |V |44679. | | 143.56 |49 |K8-M8e |00001 00002| +110008 |Y Cam *|074111.0+760426 |EA+DSCTC | 10.50 | 12.24 | 10.60 |V |42961.92757 | | 3.3056244 |16 *|A8V |08593 05177| +110009 |Z Cam *|082513.2+730639 |UGZ | 10.0 | 14.5 | |V | | |( 22. ) | |pec(UG)+G1 | 00002| +110010 |RR Cam |053527.2+722758 |SRA | 9.5 | 11.3 | |V |37750. | | 123.88 |44 |M6 |00001 01078| +110011 |RS Cam *|085049.6+785741 |SRB | 7.9 | 9.7 | |V |27143. | | 88.6 |45 |M4III |00310 00102| +110012 |RT Cam |063519.4+640534 |M | 10.2 |< 14.0 | |p |43837. | | 366.31 | |M6e |00001 00100| +110013 |RU Cam *|072144.1+694015 |CWA | 8.10 | 9.79 | |V | | | 22. |35 |C0,1-C3,2e(K0-R0)| 02301| +110014 |RV Cam |043041.7+572442 |SRB | 9.3 | 10.6 | |p |28861. | | 101. | |M4II-III-M6 |03246 01078| +110015 |RW Cam *|035421.8+583912 |DCEP | 8.20 | 9.10 | |V |37389.57 | | 16.41437 |34 |F8Ib(F5-G1)+A: |03167 07170| +110016 |RX Cam *|040458.5+583935 |DCEP | 7.30 | 8.07 | |V |42766.583 | | 7.912024 |28 |F6Ib-G2Ib |08632 05186| +110017 |RY Cam *|043050.1+642630 |SRB | 8.9 | 11.0 | |p |39238. | | 135.75 | |M3III |01078 01078| +110018 |RZ Cam |063359.8+670131 |RRAB | 12.09 | 13.30 | |V |39418.983 | | 0.48044941 |05 | |02038 02039| +110019 |SS Cam *|071624.7+731957 |EA/SD/RS | 10.05 | 10.62 | 10.35 : |V |35223.672 | | 4.8242541 |20 |G1III+F5V |08623 GSC | +110020 |ST Cam |045113.4+681008 |SRB | 9.2 | 12.0 | |p | | | 300. : | |C5,4(N5) | 01078| +110021 |SU Cam |063812.7+735458 |M | 8.9 | 12.6 | |V |44265. | | 285.03 | |M5 |00001 00114| +110022 |SV Cam *|064119.1+821602 |EA/DW/RS | 8.40 |( 0.71 )|( 0.15 :pg)|V |42594.61518 | | 0.59306995 |17 *|G5V+G3V |08593 00010| +110023 |SW Cam *|080359.8+732431 |M | 9.8 | 13.3 : | |V |43419. | | 252.8 | |M5e |00001 00675| +110024 |SX Cam |042408.8+681318 |M | 10.8 | 15.5 : | |V |41650. | | 393.3 | |M6e: |00001 01078| +110025 |SY Cam |061121.5+800426 |SRB | 10.5 | 11.8 | |p | | | 400. : | |M4 |00104 BD | +110026 |SZ Cam *|040749.3+621959 |EA/DM | 7.0 | 7.29 | 7.24 |B |41665.2516 | | 2.6985439 |17 |O9.5V+B0 |04226 02071| +110027 |TT Cam |050037.8+581309 |M | 11.8 |< 15.5 | |p |28962. | | 252.6 | |M0-M7 |01078 01078| +110028 |TU Cam *|055457.8+595318 |EB/DM | 5.12 | 5.29 | 5.22 |V |38051.375 | | 2.933241 | |A0IV-V |05266 BD | +110029 |TV Cam *|040732.8+601907 |DCEP | 11.22 | 12.21 | |V |37407.35 | | 5.29497 |32 |F3pIb-F7pIb |02304 01078| +110030 |TW Cam |042047.6+572629 |RVB | 8.98 | 10.27 | |V |38607.8 | | 87.22 | |F8Ib-G8Ib |08079 01078| +110031 |TX Cam *|050051.2+561055 |M | 11.6 | 17.68 | |B |44215. | | 557.4 | |M8-M10 |01078 05118| +110032 |TY Cam |053326.3+622915 |RRAB | 12.6 | 13.8 | |p |28107.212 | | 0.670067 |15 | |01078 02077| +110033 |TZ Cam |055345.3+630050 |SRB | 11.5 | 12.4 | |p |28783. | | 253.3 |43 |M8 |01078 01078| +110034 |UU Cam |035217.7+743357 |RRC | 11.8 | 12.3 | |p |27160.516 | | 0.3412637 |40 |A7 |00001 01078| +110035 |UV Cam |040553.9+614740 |SRB | 7.5 | 8.1 | |V | | | 294. : | |C5,3(R8) |01078 01078| +110036 |UW Cam |044828.6+733453 |SR | 11.5 | 12.9 | |p |29170. | | 544. |63 |M1 |01078 01078| +110037 |UX Cam |051046.2+684014 |LB | 9.5 | 10.5 | |p | | | | |M6 |01078 01078| +110038 |UY Cam *|075858.9+724715 |RRC | 11.33 | 11.66 | |V |35565.239 | | 0.26704234 |45 |A3III-A6III |03258 00675| +110039 |UZ Cam *|141902.3+810316 |M | 12.4 |< 14.5 | |p |43773. | | 225.64 | |M3 |00001 00114| +110040 |VV Cam |045918.0+661915 |CST: | 13.5 | | |p | | | | |G5III: |01078 02080| +110041 |VW Cam |050045.0+662657 |CST: | 13.2 | | |p | | | | | |01078 02080| +110042 |VX Cam |050512.5+643726 |M | 13.2 |< 15.5 | |p |27160. | | 265.7 | | |01078 02080| +110043 |VY Cam |050608.0+563828 |SRA | 12.4 | 13.6 | |p |29093. | | 227. |43 |M6 |01078 01078| +110044 |VZ Cam |073104.5+822441 |SR | 4.80 | 4.96 | |V | | | 23.7 | |M4IIIa |02082 00462| +110045 |WW Cam *|043125.3+642146 |EA/DM | 10.6 | 11.1 | 11.1 |p |40381.534 | | 2.274367 |09 |A: |00001 07361| +110046 |WX Cam |034903.8+531100 |LB | 12.2 | 13.0 | |p | | | | |S5,8 |01110 02320| +110047 |WY Cam |043953.6+790751 |M | 11.4 |< 15.1 | |p |33654. | | 406.96 | |S2e |00001 GSC | +110048 |WZ Cam |073029.9+750346 |SR | 11.7 | 13.1 | |p | | | | |M4 |00144 00319| +110049 |XX Cam *|040838.8+532139 |RCB: | 8.09 | 9.8 | |B | | | | |G1I(C0-2,0) |02086 08129| +110050 |XY Cam |050007.9+794354 |M: | 12.8 |< 14.5 | |p |32420. | | 268. | | |01351 01351| +110051 |XZ Cam |051712.7+755005 |EA/DS | 11.4 | 14.4 | |p |32468.503 | | 11.0146 |08 *|A0 |00410 00988| +110052 |YY Cam |054828.9+800325 |SR | 12.3 |< 14.8 | |p |32373. | | 219. | |M2 |00001 01351| +110053 |YZ Cam |062325.8+800415 |M | 12.0 |< 14.4 | |p |32490. | | 362. | |M8 |03122 01351| +110054 |ZZ Cam |041743.9+622048 |LB | 8.7 | 9.3 | |p | | | | |M0-M5 |01078 01078| +110055 |AA Cam |071452.1+684815 |LB | 9.0 | 9.6 | |p | | | | |M5(S) |00333 BD | +110056 |AB Cam *|034608.3+584703 |DCEP | 11.35 | 12.34 | |V |37406.586 | | 5.78764 |32 |F3pIb-G0pIb |00001 02090| +110057 |AC Cam |032347.9+592121 |DCEP | 13.6 | 15.0 | |p |44520.664 | | 4.156769 |20 | |04276 00947| +110058 |AD Cam *|032926.0+602648 |DCEP | 12.9 | 14.7 | |p |44113.470 | | 11.260991 |36 : | |04276 00947| +110059 |AE Cam *|033155.3+602907 |EA/SD | 15.6 | 17.4 | 15.8 |p |43701.497 | | 1.226763 |20 *| |04276 00947| +110060 |AF Cam |033215.5+584722 |UG | 13.4 | 17.6 | |p | | |( 74.9 ) | | |04276 00947| +110061 |AG Cam |040111.7+551743 |SR | 12.9 | 15.0 | |p | | | | |M3 |02094 02094| +110062 |AH Cam *|040638.9+553000 |RRAB | 11.31 | 12.33 | |V |38729.458 | | 0.3687346 |21 |B9 |00001 06108| +110063 |AI Cam |044104.7+730132 |SR: | 12.2 |< 14.5 | |p |29730. | | | |M5 |00822 00822| +110064 |AK Cam *|083825.7+765528 |EA/SD: | 10.3 | 10.9 | |p |41515.390 | | 2.226835 |11 |F4 |00001 BD | +110065 |AL Cam |114024.7+801410 |EA/SD: | 10.5 | 11.3 | |p |26411.523 | | 1.32833335 |15 |A5V |03253 07187| +110066 |AM Cam |033620.2+621714 |CEP | 14.3 | 15.5 | |p |43851.53 | | 3.997197 |25 | |04276 04042| +110067 |AN Cam |040557.6+765312 |EA/DS | 10.4 | 11.2 | |p |26003.470 | | 20.9986 |07 |F8 |04014 BD | +110068 |AO Cam |042813.6+530245 |EW/KW | 9.5 | 10. | |p |44559.9604 | | 0.329917 | | |05442 03776| +110069 |AP Cam |045459.7+741727 |LB | 10.5 | 11.3 | |p | | | | |M6.5 |04057 BD | +110070 |AQ Cam |045117.9+545600 |EA/SD | 12. | 16. : | |p |30735.398 | | 3.10911 |10 *| |03142 04059| +110071 |AR Cam |050220.0+535603 |M | 12.5 |< 15.5 | |p | | | | | |04059 04059| +110072 |AS Cam *|052946.9+692945 |EA/DM | 8.57 | 9.19 | 8.97 |V |40204.5137 | | 3.4309714 |08 |B8V+B9 |05267 BD | +110073 |AT Cam *|053717.2+670234 |EW/DM: | 9.8 | 10.6 | 10.6 |p |26057.475 | | 1.39590 | |A0 |04109 04109| +110074 |AU Cam *|054556.0+685401 |SRA | 10.0 | 10.7 | |V |38140. | | 366. |30 | |04087 04087| +110075 |AV Cam *|062801.9+774934 |EA/KE: | 11.6 | 12.1 | |p |26251.410 | | 1.444917 |13 | |04020 00174| +110076 |AW Cam *|064728.8+693745 |EB/KE | 8.22 | 8.66 | 8.36 |V |38738.452 | | 0.7713468 | |A0V | BD | +110077 |AX Cam *|080142.5+601928 |ACV | 5.95 | 6.08 | |V |41701.41 | | 8.0278 |40 |A2p(Sr-Cr-Eu) |05268 BD | +110078 |AY Cam *|082551.8+771307 |EA/DM | 9.69 | 10.26 | 10.23 |V |39385.5084 | | 2.7349658 |13 *|G0 |05456 04132| +110079 |AZ Cam *|091438.4+815630 |EB/DM | 10.1 | 10.9 | 10.8 |p |40655.4792 | | 1.319226 | |F0 |00001 BD | +110080 |BB Cam |124619.4+770630 |SRB | 15.1 | 17.1 | |p | | | 142. | |M0 |04279 04279| +110081 |BC Cam |074627.4+624950 |ACV | 6.43 | 6.48 | |V |41254.08 | | 4.285 | |F0p(Sr-Cr-Eu) |07441 BD | +110082 |BD Cam |034209.3+631301 |LB | 5.04 | 5.17 | |V | | | | |S5,3(M4III) |01371 BD | +110083 |BE Cam |034931.3+653134 |LC | 4.35 | 4.48 | |V | | | | |M2II |04590 BD | +110084 |BF Cam |035221.9+635812 |M: | 14. |< 15.5 | |p | | | | |M5 |00492 00492| +110085 |BG Cam |042112.6+751119 |LB | 11.38 | 11.81 | |V | | | | |M4III |07853 07853| +110086 |BH Cam |055502.4+645843 |LB | 2.37 | 2.53 | |K | | | | |M8 |06005 04032| +110087 |BI Cam *|080646.6+662920 |LB | 11.1 | | |R | | | | |M5 |04057 04057| +110088 |BK Cam *|031959.3+653908 |GCAS | 4.78 | 4.89 | |V | | | | |B2Ve | BD | +110089 |BL Cam |034719.8+632243 |SXPHE | 12.92 | 13.25 | |V |43125.8048 | | 0.03909760 |41 |pec |04281 07917| +110090 |BM Cam *|050612.1+590117 |RS | 6.18 |( 0.140 )| |V |44288.8 | | 82.8 | |K0III |08737 BD | +110091 |BN Cam |051222.5+735648 |ACV | 5.3 |( 0.05 )| |V |41252.91 | | 0.7325 | |A0p(Si) |08488 BD | +110092 |BO Cam |031642.5+630524 |E | 14.7 | 15.3 | |p | | | | | |67038 67037| +110093 |BP Cam |032223.5+613747 |UV: | 15.3 | 16.8 | |p | | | | | |67038 67037| +110094 |BQ Cam |033459.9+531023 |XFPNG | 11.3 | 12.1 | |J | | | | | |67040 67482| +110095 |BR Cam |045927.2+552521 |ZZ | 16.0 |( 0.3 )| |V | | | | | |67041 67042| +110096 |BS Cam |052259.9+692405 |DSCTC | 8.0 |( 0.05 )| |V | | | | | |67044 BD | +110097 |BT Cam |120144.7+800500 |ZZA | 16.0 |( 0.08 )| |V | | | | | |67045 67046| +110098 |BU Cam |123555.6+824152 |RRAB | 13.1 | 15.5 | |p | | | | | |67048 67048| +110099 |BV Cam |050608.4+585821 |GCAS | 5.08 |( 0.07 )| |V | | | | | |68046 BD | +110100 |BW Cam |051952.1+631556 |M | 1.69 | 3.09 | |K | | | | | |68015 USNO | +110101 |BX Cam |054644.2+695826 |M | 13.2 | 16.8 | |V | | | | | |68015 USNO | +110102 |BY Cam |054248.9+605132 |XM | 15.16 |< 17.0 | |B | | | | | |69049 69049| +110103 |BZ Cam |062934.1+710437 |NL | 12.5 | 14.1 | |B | | | | | |70011 70010| +110104 |CC Cam |045717.4+692719 |M | 10.7 | 14.5 | |V | | | | | |71035 71024| +110105 |CD Cam |075811.0+724552 |EW | 11.63 | 11.85 | |V | | | | | |72023 72024| +110106 |CE Cam |032954.7+585244 |ACYG | 4.54 |( 0.03 )| |V | | | | | |73044 BD | +110107 |CF Cam |033512.0+581741 |DCEP: | 13.3 | 14.3 | |p | | | | | |73045 GSC | +110108 |CG Cam |034942.1+681026 |RCB: | 14.2 | 15.8 | |B | | | | | |73046 GSC | +110109 |CH Cam |040659.4+605515 |ZZ | 14.4 |( 0.1 )| |V | | | | | |73047 73048| +110110 |CI Cam |041942.1+555958 |ZAND: | 12.31 | 13.08 | |B | | | | | |73049 GSC | +110111 |CK Cam |050631.6+552113 |DCEP | 7.19 | 7.80 | |V | | | | | |73050 BD | +110112 |CL Cam |051831.1+755649 |RS | 7.55 |( 0.13 )| |V | | | | | |73005 BD | +110113 |CM Cam |070415.1+752441 |FKCOM | 6.96 |( 0.05 )| |V | | | | | |73005 BD | +110114 |CN Cam |113611.8+811737 |RRAB | 9.80 | 10.27 | |B | | | | | |73051 BD | +110115 |CO Cam |121211.9+773659 |ELL | 5.14 |( 0.07 )| |V | | | | | |73052 BD | +110116 |CP Cam |031739.2+641220 |EB | 10.75 | 11.23 | |Hp| | | | | |HIP HIP | +110117 |CQ Cam |032440.6+643510 |LC | 5.15 | 5.27 | |Hp| | | | | |HIP HIP | +110118 |CR Cam |032839.2+622935 |BE: | 8.22 | 8.53 | |Hp| | | | | |HIP HIP | +110119 |CS Cam |032904.1+595625 |ACYG: | 4.29 | 4.34 | |Hp| | | | | |HIP HIP | +110120 |CT Cam |033801.0+551015 |BE | 7.70 | 7.83 | |Hp| | | | | |HIP HIP | +110121 |CU Cam |034235.9+771013 |EA | 7.94 | 8.18 | |Hp| | | | | |HIP HIP | +110122 |CV Cam |034149.8+531737 |EB | 9.42 | 9.66 | |Hp| | | | | |HIP HIP | +110123 |CW Cam |034300.3+573356 |IA: | 8.31 | 8.52 | |Hp| | | | | |HIP HIP | +110124 |CX Cam |034606.2+535419 |SRB: | 7.79 | 7.97 | |Hp| | | | | |HIP HIP | +110125 |CY Cam |035249.0+532901 |LPB: | 8.43 | 8.51 | |Hp| | | | | |HIP HIP | +110126 |CZ Cam *|035843.6+690100 |* | 9.52 | 9.72 | |Hp| | | | | |HIP HIP | +110127 |DD Cam |035838.2+535919 |EB | 7.04 | 7.23 | |Hp| | | | | |HIP HIP | +110128 |DE Cam |040421.6+531945 |BE | 8.16 | 8.33 | |Hp| | | | | |HIP HIP | +110129 |DF Cam |040542.3+570737 |SR: | 9.01 | 9.35 | |Hp| | | | | |HIP HIP | +110130 |DG Cam |041415.2+663253 |LB: | 8.34 | 8.47 | |Hp| | | | | |HIP HIP | +110131 |DH Cam |041721.1+571042 |ACV | 6.70 | 6.74 | |Hp| | | | | |HIP HIP | +110132 |DI Cam |042842.1+794207 |EA | 7.85 | 8.09 | |Hp| | | | | |HIP HIP | +110133 |DK Cam |042703.5+714653 |EA | 7.60 | 7.71 | |Hp| | | | | |HIP HIP | +110134 |DL Cam |043201.8+535439 |BCEP: | 5.81 | 5.85 | |Hp| | | | | |HIP HIP | +110135 |DM Cam |043316.9+524818 |LB | 7.15 | 7.23 | |Hp| | | | | |HIP HIP | +110136 |DN Cam |044246.2+725842 |EW | 8.28 | 8.74 | |Hp| | | | | |HIP HIP | +110137 |DO Cam |044905.8+613027 |SRB | 6.91 | 7.25 | |Hp| | | | | |HIP HIP | +110138 |DP Cam |045025.1+631959 |E: | 9.90 | 10.44 | |Hp| | | | | |HIP HIP | +110139 |DQ Cam |045414.8+583813 |E: | 8.12 | 8.23 | |Hp| | | | | |HIP HIP | +110140 |DR Cam |045709.6+590713 |SRB | 6.46 | 6.63 | |Hp| | | | | |HIP HIP | +110141 |DS Cam |050218.9+634613 |LB: | 8.86 | 8.96 | |Hp| | | | | |HIP HIP | +110142 |DT Cam |051357.7+563029 |E: | 8.17 | 8.23 | |Hp| | | | | |HIP HIP | +110143 |DU Cam |051723.4+620049 |SRB | 8.60 | 9.18 | |Hp| | | | | |HIP HIP | +110144 |DV Cam |051927.9+580703 |EA | 6.10 | 6.30 | |Hp| | | | | |HIP HIP | +110145 |DW Cam |052345.5+684114 |BY: | 10.96 | 11.56 | |Hp| | | | | |HIP HIP | +110146 |DX Cam |052344.2+604316 |LB: | 8.90 | 9.18 | |Hp| | | | | |HIP HIP | +110147 |DY Cam |054103.7+785842 |LB: | 9.28 | 9.46 | |Hp| | | | | |HIP HIP | +110148 |DZ Cam |053820.6+692358 |LB: | 8.49 | 8.62 | |Hp| | | | | |HIP HIP | +110149 |EE Cam |054555.0+631747 |DSCTC | 7.78 | 7.86 | |Hp| | | | | |HIP HIP | +110150 |EF Cam |054924.9+780324 |LB: | 8.85 | 8.96 | |Hp| | | | | |HIP HIP | +110151 |EG Cam |055937.8+583535 |BY: | 10.30 | 10.54 | |Hp| | | | | |HIP HIP | +110152 |EH Cam |060201.3+694757 |LB: | 9.41 | 9.59 | |Hp| | | | | |HIP HIP | +110153 |EI Cam |060216.3+665359 |LB: | 7.12 | 7.16 | |Hp| | | | | |HIP HIP | +110154 |EK Cam |061206.8+625809 |LB: | 8.74 | 8.84 | |Hp| | | | | |HIP HIP | +110155 |EL Cam |062804.9+744435 |LB: | 9.03 | 9.60 | |Hp| | | | | |HIP HIP | +110156 |EM Cam |063229.4+665453 |LB: | 9.13 | 9.31 | |Hp| | | | | |HIP HIP | +110157 |EN Cam |063322.5+630821 |ACV: | 8.99 | 9.04 | |Hp| | | | | |HIP HIP | +110158 |EO Cam |064211.3+742851 |SRB | 8.88 | 9.23 | |Hp| | | | | |HIP HIP | +110159 |EP Cam |064837.5+765924 |SRB | 7.61 | 7.86 | |Hp| | | | | |HIP HIP | +110160 |EQ Cam |064840.5+644516 |SRB | 7.94 | 8.08 | |Hp| | | | | |HIP HIP | +110161 |ER Cam |065835.1+705451 |LB: | 9.04 | 9.16 | |Hp| | | | | |HIP HIP | +110162 |ES Cam |071029.9+633709 |LB | 8.72 | 8.90 | |Hp| | | | | |HIP HIP | +110163 |ET Cam |071627.9+792845 |LB: | 9.51 | 9.63 | |Hp| | | | | |HIP HIP | +110164 |EU Cam |071700.2+740841 |SRB | 9.24 | 9.54 | |Hp| | | | | |HIP HIP | +110165 |EV Cam |072150.7+750522 |ACV: | 6.95 | 6.99 | |Hp| | | | | |HIP HIP | +110166 |EW Cam |072728.0+724213 |RRAB | 9.33 | 9.83 | |Hp| | | | | |HIP HIP | +110167 |EX Cam |073124.3+660805 |LB: | 7.24 | 7.34 | |Hp| | | | | |HIP HIP | +110168 |EY Cam |073541.5+672710 |SRB: | 8.52 | 8.80 | |Hp| | | | | |HIP HIP | +110169 |EZ Cam |073604.4+662813 |SRB | 7.17 | 7.31 | |Hp| | | | | |HIP HIP | +110170 |FF Cam |074652.9+814057 |BE: | 7.71 | 8.02 | |Hp| | | | | |HIP HIP | +110171 |FG Cam |074250.5+610927 |SRD | 7.97 | 8.11 | |Hp| | | | | |HIP HIP | +110172 |FH Cam |075739.8+773435 |EW | 6.91 | 6.97 | |Hp| | | | | |HIP HIP | +110173 |FI Cam |075828.4+671854 |LB: | 8.88 | 9.00 | |Hp| | | | | |HIP HIP | +110174 |FK Cam |080732.0+604233 |SRB | 8.90 | 9.38 | |Hp| | | | | |HIP HIP | +110175 |FL Cam |085046.6+780955 |LB | 6.75 | 7.03 | |Hp| | | | | |HIP HIP | +110176 |FM Cam |090915.8+745321 |SRB: | 9.07 | 9.29 | |Hp| | | | | |HIP HIP | +110177 |FN Cam |092258.0+771311 |EW | 8.60 | 9.06 | |Hp| | | | | |HIP HIP | +110178 |FO Cam |094500.1+851440 |LB: | 10.08 | 10.22 | |Hp| | | | | |HIP HIP | +110179 |FP Cam |113252.4+795500 |LB: | 8.15 | 8.28 | |Hp| | | | | |HIP HIP | +110180 |FQ Cam |115247.4+765920 |LB: | 9.36 | 9.53 | |Hp| | | | | |HIP HIP | +110181 |FR Cam |120018.6+805112 |LB | 6.16 | 6.37 | |Hp| | | | | |HIP HIP | +110182 |FS Cam |140538.6+813624 |LB | 8.81 | 8.99 | |Hp| | | | | |HIP HIP | +110183 |FT Cam |032114.4+610526 |UG | 14.0 |< 17.6 | |B | | | | | |75041 75041| +110184 |FU Cam |032350.0+645647 |M | 12.2 | 14.8 | |p | | | | | |75002 GSC | +110185 |FV Cam |032638.0+680831 |SR: | 13.4 | 14.9 | |p | | | | | |75002 GSC | +110186 |FW Cam |033040.5+672408 |M: | 13.8 |< 14.7 | |p | | | | | |75002 2MASS| +110187 |FX Cam |033319.2+680441 |SR: | 12.1 | 12.8 | |p | | | | | |75002 GSC | +110188 |FY Cam |033623.6+613601 |M: | 13.8 |< 15.1 | |p | | | | | |75002 GSC | +110189 |FZ Cam |034025.2+604652 |SR: | 12.1 | 13.2 | |p | | | | | |75002 GSC | +110190 |GG Cam |034040.5+610503 |SR: | 12.7 | 14.6 | |p | | | | | |75002 GSC | +110191 |GH Cam |034131.5+670444 |EA | 13.8 | 17.0 : | |B | | | | | |75042 GSC | +110192 |GI Cam |034303.3+683528 |SR: | 13.6 | 14.3 | |p | | | | | |75002 GSC | +110193 |GK Cam |034400.2+654659 |SR: | 12.1 | 12.9 | |p | | | | | |75002 GSC | +110194 |GL Cam |034840.2+581712 |SR: | 12.4 | 13.8 | |p | | | | | |75002 GSC | +110195 |GM Cam |035910.1+580108 |M | 12.4 |< 15.0 | |p | | | | | |75002 | +110196 |GN Cam |040230.1+591922 |SR: | 13.3 | 14.6 | |p | | | | | |75002 GSC | +110197 |GO Cam |040312.5+561339 |SR: | 12.8 | 14.5 | |p | | | | | |75002 GSC | +110198 |GP Cam |040427.8+555527 |SR: | 10.5 | 11.4 | |p | | | | | |75002 GSC | +110199 |GQ Cam |040923.3+570528 |ACYG | 8.13 | 8.20 | |Hp| | | | | |75030 BD | +110200 |GR Cam |041512.4+525538 |SR: | 12.0 | 14.4 | |p | | | | | |75002 GSC | +110201 |GS Cam *|041546.7+541954 |SR: | 14.0 | 14.9 | |p | | | | | |75002 USNO | +110202 |GT Cam |041914.6+535601 |SR: | 12.8 | 13.8 | |p | | | | | |75002 GSC | +110203 |GU Cam |042446.6+555543 |SR: | 11.8 | 13.4 | |p | | | | | |75002 GSC | +110204 |GV Cam |042936.6+664548 |SR: | 13.2 | 14.3 | |p | | | | | |75002 GSC | +110205 |GW Cam |043142.0+581807 |SR: | 12.2 | 13.0 | |p | | | | | |75002 GSC | +110206 |GX Cam |043307.4+632122 |SR: | 13.8 | 14.7 | |p | | | | | |75002 GSC | +110207 |GY Cam |043517.5+621624 |SR: | 12.5 | 14.2 | |p | | | | | |75002 GSC | +110208 |GZ Cam |043521.6+600130 |SR: | 13.4 | 14.2 | |p | | | | | |75002 GSC | +110209 |HH Cam |043517.7+572329 |SR: | 11.3 | 13.2 | |p | | | | | |75002 GSC | +110210 |HI Cam |043545.4+631217 |M: | 13.7 |< 15.0 | |p | | | | | |75002 2MASS| +110211 |HK Cam |043619.9+665102 |SR: | 11.8 | 12.6 | |p | | | | | |75002 GSC | +110212 |HL Cam |044439.4+685436 |SR: | 12.7 | 13.9 | |p | | | | | |75002 GSC | +110213 |HM Cam |044625.1+542851 |M: | 12.6 |< 15.1 | |p | | | | | |75002 GSC | +110214 |HN Cam |045035.9+601035 |SR: | 13.4 | 14.1 | |p | | | | | |75002 GSC | +110215 |HO Cam |051254.1+591936 |M | 12.1 |< 15.3 | |p | | | | | |75002 GSC | +110216 |HP Cam |060633.6+673300 |SR: | 11.3 | 13.1 | |p | | | | | |75002 GSC | +110217 |HQ Cam |062035.6+671523 |EA | 12.1 | 14.3 | |p | | | | | |75002 GSC | +110218 |HR Cam |071709.7+740041 |R | 15.4 |( 0.06 )| |V | | | | | |75043 75044| +110219 |HS Cam |071914.5+655745 |EA+XM | 19.4 |( 4. )| |B | | | | | |75045 75045| +110220 |HT Cam |075701.4+630602 |XM | 17.2 |( 1.4 )| |B | | | | | |75046 75046| +110221 |HU Cam |080740.0+762249 |RRAB | 14.4 |( 0.48 )| |V | | | | | |75047 75048| +110222 |HV Cam |081142.6+760453 |EA | 15.2 |( 0.52 R )| |V | | | | | |75049 GSC | +110223 |HW Cam |082734.3+835257 |EA | 10.3 |( 0.45 )| |V | | | | | |75050 75051| +110224 |HX Cam |033100.2+604740 |SR: | 12.7 | 13.2 | |V | | | | | |76012 GSC | +110225 |HY Cam |033256.5+535847 |SR: | 13.1 | 13.8 | |V | | | | | |76012 GSC | +110226 |HZ Cam |033641.4+532837 |SR: | 11.1 | 11.6 | |V | | | | | |76012 GSC | +110227 |II Cam |034015.6+685435 |SR: | 11.8 | 12.4 | |V | | | | | |76012 GSC | +110228 |IK Cam |034103.9+673852 |M: | 14.1 |< 15.1 | |V | | | | | |76012 GSC | +110229 |IL Cam |034352.5+674033 |M | 12.7 |< 15.1 | |V | | | | | |76012 USNO | +110230 |IM Cam |040329.5+531419 |SR: | 13.0 | 13.5 | |V | | | | | |76012 GSC | +110231 |IN Cam |041218.2+540208 |SR: | 13.3 | 13.9 | |V | | | | | |76012 GSC | +110232 |IO Cam |042218.5+563538 |SR: | 12.1 | 12.7 | |V | | | | | |76258 GSC | +110233 |IP Cam |042548.0+525648 |SR: | 12.3 | 12.8 | |V | | | | | |76012 GSC | +110234 |IQ Cam |042606.9+542818 |E | 14.48 | 14.63 | |Rc| | | | | |76035 76036| +110235 |IR Cam |042942.7+583739 |SR: | 12.7 | 13.3 | |V | | | | | |76012 GSC | +110236 |IS Cam |043258.5+632144 |SR: | 13.7 | 14.3 | |V | | | | | |76012 GSC | +110237 |IT Cam |043411.0+573334 |LB | 12.1 | 12.8 | |V | | | | | |76012 GSC | +110238 |IU Cam |043916.9+654757 |SR: | 11.8 | 12.4 | |V | | | | | |76012 GSC | +110239 |IV Cam |050422.2+674748 |SR: | 11.4 | 12.4 | |V | | | | | |76012 GSC | +110240 |IW Cam |050842.5+661601 |M | 12.5 |< 14.7 | |V | | | | | |76012 USNO | +110241 |IX Cam |051046.2+621403 |SR: | 13.4 | 14.1 | |V | | | | | |76012 GSC | +110242 |IY Cam |051438.4+640622 |SR: | 12.9 | 14.0 | |V | | | | | |76012 GSC | +110243 |IZ Cam |051750.9+645208 |SR: | 11.9 | 12.6 | |V | | | | | |76012 GSC | +110244 |KK Cam |051946.1+642602 |M | 12.0 |< 14.5 | |V | | | | | |76012 GSC | +110245 |KL Cam |052243.7+641908 |SR: | 10.8 | 12.9 | |V | | | | | |76012 GSC | +110246 |KM Cam |053359.2+575338 |SR: | 13.2 | 14.0 | |V | | | | | |76012 GSC | +110247 |KN Cam |053729.1+672533 |M | 10.7 | 14.8 | |V | | | | | |76012 GSC | +110248 |KO Cam |054744.5+563233 |SR: | 11.6 | 12.9 | |V | | | | | |76012 GSC | +110249 |KP Cam |054903.6+690908 |SR: | 11.7 | 12.9 | |V | | | | | |76012 GSC | +110250 |KQ Cam |055622.6+662701 |SR: | 11.8 | 13.0 | |V | | | | | |76012 GSC | +110251 |KR Cam |060402.0+593219 |SR: | 11.1 | 12.1 | |V | | | | | |76012 GSC | +110252 |KS Cam |060822.8+575736 |SR: | 11.0 | 12.0 | |V | | | | | |76012 GSC | +110253 |KT Cam |061050.5+674413 |SR: | 12.1 | 13.1 | |V | | | | | |76012 GSC | +110254 |KU Cam |061424.8+683850 |SR: | 11.7 | 12.7 | |V | | | | | |76012 GSC | +110255 |KV Cam |064125.7+645032 |SR: | 11.4 | 11.9 | |V | | | | | |76012 GSC | +110256 |KW Cam |064835.3+642100 |SR: | 10.3 | 11.4 | |V | | | | | |76012 GSC | +110257 |KX Cam |032305.9+565244 |M | 12.4 | 14.7 | |I | | | | | |77012 77013| +110258 |KY Cam |032759.1+604455 |M | 15.0 | 17.6 | |I | | | | | |77012 77013| +110259 |KZ Cam |033819.7+565558 |ACV | 6.28 | 6.30 | |V | | | | | |77029 DM | +110260 |LL Cam |035104.2+584225 |M | 9.3 | 12.9 | |I | | | | | |77012 77013| +110261 |LM Cam |035635.8+572027 |M | 9.5 | 13.9 | |I | | | | | |77012 77013| +110262 |LN Cam |040547.3+584522 |ELL: | 10.3 |( 0.04 )| |V | | | | | |77034 DM | +110263 |LO Cam |040609.0+584831 |DCEP | 11.67 | 12.84 | |B | | | | | |77034 77214| +110264 |LP Cam |040940.4+622712 |RRAB | 11.10 | 11.75 | |V | | | | | |77036 77214| +110265 |LQ Cam |041222.6+535506 |M | 7.3 | 11.5 | |I | | | | | |77012 77013| +110266 |LR Cam |054305.2+684007 |EW | 10.7 |( 0.63 )| |V | | | | | |77048 77048| +110267 |LS Cam |055724.1+724152 |NL | 16.7 | 19.3 | |B | | | | | |77049 77050| +110268 |LT Cam |055815.5+594623 |EW | 14.5 |( 0.2 )| |V | | | | | |77051 77051| +110269 |LU Cam |055818.0+675346 |UG | 14.0 |< 16.0 | |V | | | | | |77052 77050| +110270 |LV Cam |055925.7+595124 |EW | 16.0 |( 0.4 )| |V | | | | | |77051 77051| +110271 |LW Cam |070410.0+620328 |XM | 17.0 | 20.0 | |V | | | | | |77062 77062| +110272 |LX Cam |032446.1+555212 |M: | 12.1 |< 14.5 | |* |52194 :| | 275. : | | |78006 2MASS| +110273 |LY Cam |033508.3+550455 |SRA: | 10.7 |< 12.4 | |* |51401 | | 340. : | | |78006 2MASS| +110274 |LZ Cam *|034745.0+632825 |EB | 19.5 | 20.6 | 20.2 |V |51871.186 | | 0.326171 | | |78059 78059| +110275 |MM Cam *|035100.5+690610 |* | 7.11 |( 0.04 )| |V | | | | |K0III |78018 DM | +110276 |MN Cam |035729.8+545618 |DCEP | 11.2 | 11.7 | |* |51485.596 | | 8.196 | | |78061 GSC | +110277 |MO Cam |035859.5+561113 |BE | 11.14 | 11.39 | |V | | | | |Be |78062 GSC | +110278 |MP Cam *|040101.2+551110 |EB: | 12.5 | 14.3 | 13.0 |* |53003.2500 | | 2.6092 | | |78214 78214| +110279 |MQ Cam |040131.0+550243 |DCEP | 11.9 | 12.3 | |* |51451.1 | | 6.60 |25 | |78061 GSC | +110280 |MR Cam |041218.1+584005 |M | 9.8 | 12.6 | |* |51520 | | 350. : | | |78040 GSC | +110281 |MS Cam |043354.3+643800 |BY | 7.75 |( 0.03 )| |V | | | 7.604 | |G0Ve |78018 DM | +110282 |MT Cam *|044024.4+552515 |EW | 12.94 | 13.54 | 13.54 |* |52975.3307 | | 0.3662 | | |78214 78214| +110283 |MU Cam *|062516.3+733439 |XM | 14.3 | 15.0 | |R | | | 0.19661 | |pec(e) |78087 78087| +110284 |MV Cam |081947.2+774432 |SRA | 9.1 | 9.6 | |* |51630 | | 56. | | |78040 GSC | +110285 |MW Cam |122643.7+812826 |DSCT | 9.25 | 9.36 | |Hp| | | 0.132792 | |F0 |78157 DM | +110286 |MX Cam |035624.5+690229 |EA | 12.30 | 14.4 | 12.47 |* |51401.892 | | 1.40856 |16 | |79006 GSC | +110287 |MY Cam |035918.3+571414 |ELL | 9.8 | 10.15 | |* |51466.763 | | 1.175 | |O6V(f)+O6V(f) |79146 DM | +110288 |MZ Cam |040515.9+543611 |DCEPS | 11.3 | 11.7 | |* |51500.77 | | 3.25 |40 | |79025 79026| +110289 |NN Cam |041238.2+692909 |UG | 13.2 | 15.6 | |* | | | | | |79174 79043| +110290 |NO Cam |041451.6+752041 |EW | 12.2 | 13.0 | 12.9 |* |51497.718 | | 0.43075 | |F5 |79025 GSC | +110291 |NP Cam |060205.2+725105 |SRD: | 11.1 | 11.9 | |* |51517. | | 35.0 |35 |F4 |79025 79046| +110292 |NQ Cam |074812.8+722917 |EW | 13.1 | 13.8 | 13.65 |* |51489.223 | | 0.36209 | | |79025 79061| +110293 |NR Cam |075430.6+780645 |EW | 10.76 | 11.25 | 11.18 |* |51589.757 | | 0.255885 | | |79009 79062| +110294 |NS Cam |075539.7+741511 |EB | 12.9 | 13.5 | 13.2 |* |51473.49 | | 0.90733 | | |79025 79061| +110295 |NT Cam |082417.4+743025 |DSCT | 13.1 | 13.5 | |* |51555.057 | | 0.082417 |35 |B8 |79025 GSC | +110296 |NU Cam |095447.4+832101 |EB | 10.75 | 11.15 | 11.05 |* |51278.439 | | 0.690046 | |F4 |79006 79077| +110297 |NV Cam |031804.7+613406 |SR: | 12.45 | 12.96 | |* | | | | | |80062 USNO | NL80_1 +110298 |NW Cam *|032504.5+584050 |EA: | 13.0 | 13.8 | 13.8 |* |51492.87 | | 1.1483 |12 : | |80107 80107| NL80_1 +110299 |NX Cam *|032610.6+593443 |EW: | 10.5 | 10.95 | 10.8 |* |51447.79 | | 0.6058 | | |80101 80101| NL80_1 +110300 |NY Cam |032752.2+561418 |LB | 12.70 | 13.35 | |* | | | | | |80062 USNO | NL80_1 +110301 |NZ Cam *|033019.2+655403 |EW: | 13.4 | 13.9 | 13.85 |* |51499.24 | | 1.360 | | |80102 80102| NL80_1 +110302 |OO Cam *|033218.4+611641 |EA | 10.90 | 11.33 | 11.24 |* |51578.625 | | 8.1190 |03 : | |80023 GSC | NL80_1 +110303 |OP Cam *|033301.0+583155 |EW | 12.9 | 13.2 | 13.15 |* |51453.283 | | 0.42555 | | |80143 80143| NL80_1 +110304 |OQ Cam *|033334.3+641646 |EW | 10.9 | 11.4 | 11.4 |* |51501.714 | | 0.43784 | | |80144 80144| NL80_1 +110305 |OR Cam |033423.7+582450 |DCEPS | 9.62 | 9.88 | |* |51479.64 | | 3.6818 |50 : | |80131 80131| NL80_1 +110306 |OS Cam *|033447.3+621453 |EW | 13.0 | 13.25 | 13.25 |* |51496.23 | | 0.60545 | | |80144 80144| NL80_1 +110307 |OT Cam |034022.3+640611 |EA/RS: | 12.0 | 12.5 | |* |51495.88 | | 10.883 |05 | |80145 80145| NL80_1 +110308 |OU Cam |034235.5+662221 |CEP | 11.55 | 11.8 | |* |51504.5 | | 25.3 |43 | |80116 80116| NL80_1 +110309 |OV Cam |034655.4+765839 |LB | 12.8 | 13.4 | |* | | | | | |80062 GSC | NL80_1 +110310 |OW Cam |034710.6+532315 |M: | 13.2 | 15.2 : | |* |51523. | | 305. : | | |80070 80070| NL80_1 +110311 |OX Cam |034825.7+592632 |DCEP | 10.0 | 10.5 | |* |51473.8 | | 5.07 |22 |F6-G1Ib |80081 GSC | NL80_1 +110312 |OY Cam *|034832.5+633041 |EA | 12.8 | 13.4 | 13.0 |* |51496.90 | | 5.295 |18 | |80150 80150| NL80_1 +110313 |OZ Cam |034844.8+671613 |SR | 12.3 | 12.8 | |* |51444. | | 70. |40 | |80070 80070| NL80_1 +110314 |PP Cam *|034903.5+742734 |EA | 12.45 | 13.01 | 13.01 |* |51421.782 | | 0.84040 |11 | |80042 GSC | NL80_1 +110315 |PQ Cam *|035041.8+673446 |EA | 11.65 | 11.95 | |* | | | 1.21565 |10 | |80013 GSC | NL80_1 +110316 |PR Cam *|035153.5+540953 |EW | 12.75 | 13.10 | 13.05 |* |51488.468 | | 0.38736 | | |80143 80143| NL80_1 +110317 |PS Cam *|035403.4+595412 |EB | 12.58 | 13.55 | 13.0 |* |53709.9545 | | 0.9202 | | |80008 80008| NL80_1 +110318 |PT Cam *|035452.5+673807 |EA | 11.88 | 12.28 | 12.13 |* |51482.655 | | 4.0451 |04 | |80013 GSC | NL80_1 +110319 |PU Cam |035456.1+672412 |SRB | 10.7 | 11.1 | |* | | | 56. | | |80100 GSC | NL80_1 +110320 |PV Cam |035622.4+571526 |DCEPS: | 11.9 | 12.2 | |* |51495.1 | | 3.09 |50 : | |80081 GSC | NL80_1 +110321 |PW Cam |035624.6+651614 |SR | 10.6 | 10.8 | |* |51483. | | 29. |35 | |80070 80070| NL80_1 +110322 |PX Cam *|035748.1+573128 |EA | 12.49 | 13.55 | 12.77 |* |51553.62 | | 4.5534 |12 | |80013 GSC | NL80_1 +110323 |PY Cam |035837.7+551427 |SRB | 10.8 | 11.2 | |* | | | 50. | | |80100 GSC | NL80_1 +110324 |PZ Cam *|035947.8+634950 |EW | 13.2 | 13.5 | 13.45 |* |51497.704 | | 0.28589 | | |80144 80144| NL80_1 +110325 |QQ Cam |040236.5+642653 |CWA | 12.2 | 12.7 | |* |51488.2 | | 12.3 |58 | |80081 GSC | NL80_1 +110326 |QR Cam |040253.8+541034 |DCEP | 13.7 | 14.3 | |* |51498.24 | | 3.082 |19 | |80143 80143| NL80_1 +110327 |QS Cam |040346.5+571452 |DCEP | 11.6 | 12.1 | |* |51521.9 | | 5.12 |22 | |80081 GSC | NL80_1 +110328 |QT Cam *|040400.1+623155 |EA | 13.7 | 14.6 | 14.2 |* |51485.1 | | 25.25 |10 | |80150 80150| NL80_1 +110329 |QU Cam *|040755.1+773122 |EA | 11.05 | 11.5 | 11.20 |* |51503.629 | | 0.75184 |15 | |80150 80150| NL80_1 +110330 |QV Cam *|040811.3+555012 |EB | 12.10 | 12.65 : | 12.5 : |* |51420.645 | | 2.9060 | |OB |80013 GSC | NL80_1 +110331 |QW Cam *|040813.9+541234 |EW | 13.5 | 14.0 | 13.85 |* |51517.65 | | 0.9210 | | |80102 80102| NL80_1 +110332 |QX Cam *|041005.4+614638 |CWB | 13.2 | 13.7 | |* |51497.642 | | 1.1136 |35 | |80163 80163| NL80_1 +110333 |QY Cam *|041148.1+564627 |EA | 12.5 | 12.95 | 12.95 |* |51519.26 | | 2.5453 |16 | |80150 80150| NL80_1 +110334 |QZ Cam *|041335.9+602311 |EA | 12.95 | 13.5 | 13.5 : |* |51513.91 | | 3.372 |08 | |80150 80150| NL80_1 +110335 |V0335 Cam *|041441.8+675013 |EA | 11.62 | 11.9 | 11.66 |* |51378.998 | | 1.24513 |13 | |80013 GSC | NL80_1 +110336 |V0336 Cam |041609.0+562652 |LB | 13.05 | 13.7 | |* | | | | | |80062 USNO | NL80_1 +110337 |V0337 Cam *|041620.0+685821 |EB | 9.95 | 10.40 | 10.15 |* |51523.466 | | 0.75678 | |A2 |80144 80144| NL80_1 +110338 |V0338 Cam |041920.8+555855 |LB | 14.18 | 15.00 | |V | | | | | |80165 80165| NL80_1 +110339 |V0339 Cam *|041945.1+555736 |DSCTC | 12.35 | 12.42 | |V | | | 0.0506318 | | |80165 80165| NL80_1 +110340 |V0340 Cam *|041952.5+560052 |EW | 14.08 | 14.15 | 14.14 |V |54086.5650 | | 0.4657358 | | |80165 80165| NL80_1 +110341 |V0341 Cam |042243.6+623337 |SR: | 12.9 | 13.5 | |* | | | 147. : | | |80001 USNO | NL80_1 +110342 |V0342 Cam |042332.8+745250 |UGSU | 13.5 |< 17. | |B | | | | |pec(UG) |80167 80167| NL80_1 +110343 |V0343 Cam *|042359.1+583534 |EA | 13.61 | 14.89 | 14.84 |* |53321.9950 | | 5.2633 |09 | |80008 80008| NL80_1 +110344 |V0344 Cam |042415.2+713914 |RRC: | 13.9 | 14.3 | |* |51524.966 | | 0.2884 |35 | |80168 80168| NL80_1 +110345 |V0345 Cam *|042555.4+691546 |EW | 13.3 | 13.65 | 13.55 |* |51523.934 | | 0.45159 | | |80144 80144| NL80_1 +110346 |V0346 Cam *|042559.7+683259 |EW | 15.82 | 16.18 | 16.13 |* |54506.378 | | 0.397794 | | |80169 80169| NL80_1 +110347 |V0347 Cam *|042623.1+791352 |EA | 11.37 | 11.8 : | 11.7 : |* |51532.600 | | 9.4545 |03 : | |80023 GSC | NL80_1 +110348 |V0348 Cam *|042641.6+684428 |EB | 15.86 | 16.29 | 16.10 |* |54502.192 | | 0.511654 | | |80169 80169| NL80_1 +110349 |V0349 Cam *|042726.0+683324 |EB | 14.96 | 15.16 | 15.03 |* |54460.430 | | 1.2500 | | |80169 80169| NL80_1 +110350 |V0350 Cam |042732.9+594904 |RRAB | 13.9 | 14.5 | |* |51530.135 | | 0.6149 |18 : | |80168 80168| NL80_1 +110351 |V0351 Cam *|042735.0+681742 |EW | 16.23 | 16.52 | 16.48 |* |54506.343 | | 0.348318 | | |80169 80169| NL80_1 +110352 |V0352 Cam *|042818.8+684718 |EW | 13.98 | 14.31 | 14.27 |* |54507.288 | | 0.388967 | | |80169 80169| NL80_1 +110353 |V0353 Cam *|042831.3+682053 |EA | 15.21 | 17.86 | 15.34 |* |54460.424 | | 1.3268 |15 | |80169 80169| NL80_1 +110354 |V0354 Cam *|042841.0+683327 |RRAB | 12.93 | 13.95 | |* |54533.315 | | 0.679933 |17 | |80169 80169| NL80_1 +110355 |V0355 Cam |042846.2+551701 |RRC | 12.2 | 12.5 | |* |51589.623 | | 0.21852 |32 | |80001 GSC | NL80_1 +110356 |V0356 Cam *|042909.9+683401 |EW | 13.06 | 13.41 | 13.37 |* |54460.476 | | 0.402501 | | |80169 80169| NL80_1 +110357 |V0357 Cam |042925.4+684302 |CEP: | 13.80 | 13.93 | |* |54497.52 | | 1.1109 | | |80169 80169| NL80_1 +110358 |V0358 Cam |043006.0+560317 |LB | 10.6 | 11.0 | |* | | | | | |80100 GSC | NL80_1 +110359 |V0359 Cam |043018.7+535625 |DCEP | 11.9 | 12.4 | |* |51538.9 | | 6.6 |23 | |80081 GSC | NL80_1 +110360 |V0360 Cam |043023.2+550409 |SRS | 11.7 | 11.9 | |* |51438. | | 28.5 | | |80001 GSC | NL80_1 +110361 |V0361 Cam *|043251.2+784254 |EA | 11.27 | 11.5 | 11.4 |* |51598.565 | | 8.6386 |06 | |80023 GSC | NL80_1 +110362 |V0362 Cam *|043336.2+640538 |EW | 11.63 | 12.12 | 12.08 |* |51443.7706 | | 0.7208 | | |80016 80016| NL80_1 +110363 |V0363 Cam |043442.0+554232 |SR | 11.0 | 11.4 | |* | | | 32. | | |80016 80016| NL80_1 +110364 |V0364 Cam *|043448.5+683548 |EA | 12.87 | 13.9 | 13.18 : |* |51542.60 | | 6.4150 |15 | |80013 GSC | NL80_1 +110365 |V0365 Cam |043633.6+572405 |SRA: | 11.6 | 13.6 | |* |51430. | | 260. : | | |80016 80016| NL80_1 +110366 |V0366 Cam *|043739.6+715846 |EW | 10.55 | 10.85 | 10.85 |* |51525.04 | | 0.77337 | | |80102 80102| NL80_1 +110367 |V0367 Cam |044055.2+533807 |DSCT | 10.69 | 10.90 | |* | | | 0.121596 | | |80171 GSC | NL80_1 +110368 |V0368 Cam *|044324.3+722001 |EW | 13.7 | 14.2 | 14.1 |* |51551.756 | | 0.40891 | | |80144 80144| NL80_1 +110369 |V0369 Cam *|044330.2+635912 |EW | 12.5 | 13.2 | 13.2 |* |51483.6406 | | 0.3452 | | |80016 80016| NL80_1 +110370 |V0370 Cam |044336.9+693221 |SR | 11.6 | 12.15 | |* | | | 49.7 | | |80070 80070| NL80_1 +110371 |V0371 Cam |044424.1+785412 |SRD | 12.5 | 12.8 | |* |51493. | | 56.5 | | |80070 80070| NL80_1 +110372 |V0372 Cam *|044529.3+635717 |EB | 13.0 | 13.6 | 13.5 |* |51415.8135 | | 1.0792 | | |80016 80016| NL80_1 +110373 |V0373 Cam *|044644.0+592751 |EW | 12.5 | 13.0 : | 12.8 : |* |51553.706 | | 0.3858 | | |80144 80144| NL80_1 +110374 |V0374 Cam *|044818.9+640116 |EA | 12.4 | 13.1 | 12.55 |* |51489.326 | | 0.80688 |08 | |80150 80150| NL80_1 +110375 |V0375 Cam *|045535.5+783756 |EW | 13.6 | 14.2 | 14.1 |* |51497.087 | | 0.32208 | | |80144 80144| NL80_1 +110376 |V0376 Cam |045721.0+792059 |SXPHE | 11.75 | 12.15 | |* |51495.807 | | 0.1403229 |18 | |80178 80178| NL80_1 +110377 |V0377 Cam |045851.3+570053 |RRAB | 13.85 | 14.80 | |* |53027.2380 | | 0.53201 |15 | |80008 80008| NL80_1 +110378 |V0378 Cam *|050009.2+734108 |EA | 12.16 | 12.7 : | 12.7 : |* |51633.64 | | 5.5577 |08 | |80013 GSC | NL80_1 +110379 |V0379 Cam *|050442.9+613353 |EA | 12.29 | 15.07 | 12.42 |V |54481.2279 | | 1.1670805 |19 | |80180 80180| NL80_1 +110380 |V0380 Cam |050718.8+714522 |RS: | 12.6 | 12.85 | |* | | | 7.27 | | |80181 80181| NL80_1 +110381 |V0381 Cam *|050842.0+704044 |EB | 12.50 | 13.1 | 12.75 |* |51599.730 | | 0.458030 | | |80013 GSC | NL80_1 +110382 |V0382 Cam *|051018.5+631951 |EA | 10.8 | 11.1 | 10.95 |* |51517.85 | | 0.86803 |10 : | |80150 80150| NL80_1 +110383 |V0383 Cam *|051039.4+751034 |EW | 11.65 | 11.90 | 11.85 |* |51526.953 | | 0.37727 | | |80144 80144| NL80_1 +110384 |V0384 Cam *|051853.8+654233 |EA | 12.5 | 12.75 | 12.75 |* |51522.42 | | 1.3846 |12 | |80107 80107| NL80_1 +110385 |V0385 Cam *|051947.1+773614 |EB | 13.65 | 14.20 | 13.85 |* |51515.845 | | 0.61525 | | |80144 80144| NL80_1 +110386 |V0386 Cam *|052133.9+714546 |EW | 12.3 | 12.75 | 12.7 |* |51456.594 | | 0.50808 | | |80085 80085| NL80_1 +110387 |V0387 Cam *|052146.3+654455 |EB | 12.5 | 13.1 | 12.75 |* |51520.553 | | 0.65113 | | |80144 80144| NL80_1 +110388 |V0388 Cam |052202.3+772744 |SRD | 11.05 | 11.3 | |* | | | 44.5 | | |80070 80070| NL80_1 +110389 |V0389 Cam *|052254.8+700015 |EW | 11.8 | 12.5 | 12.3 |* |51496.523 | | 0.4399 | | |80144 80144| NL80_1 +110390 |V0390 Cam |052923.4+785741 |DSCT | 13.5 | 13.85 | |* |51514.986 | | 0.0632385 | | |80187 80187| NL80_1 +110391 |V0391 Cam *|053233.9+624752 |UGSU | 11.6 | 16.9 | |V | | | (133.6 ) | |pec(UG) |80188 80188| NL80_1 +110392 |V0392 Cam *|053344.9+713729 |EW | 13.8 | 14.3 | 14.2 |* |51508.525 | | 0.6640 | | |80102 80102| NL80_1 +110393 |V0393 Cam *|053448.3+701429 |EW | 13.9 | 14.7 | 14.6 |* |51453.660 | | 0.38571 | | |80052 80052| NL80_1 +110394 |V0394 Cam *|053450.3+722645 |EW | 13.2 | 13.6 | 13.6 |* |51518.418 | | 0.38149 | | |80144 80144| NL80_1 +110395 |V0395 Cam *|053536.0+710335 |EA | 12.30 | 12.91 | 12.39 |* |51459.747 | | 2.7527 |11 | |80013 GSC | NL80_1 +110396 |V0396 Cam *|053641.4+721947 |EW | 13.7 | 14.1 | 14.0 |* |51511.118 | | 0.3863 | | |80144 80144| NL80_1 +110397 |V0397 Cam *|053649.7+734140 |EA | 13.45 | 14.65 | 13.65 : |* |51400.858 | | 1.83953 |09 | |80013 GSC | NL80_1 +110398 |V0398 Cam *|053714.5+674222 |EA | 13.02 | 14.1 | 13.2 |* |51615.633 | | 2.0872 |10 | |80013 GSC | NL80_1 +110399 |V0399 Cam *|053823.5+611725 |EA | 10.02 | 10.20 | 10.18 |* |51508.70 | | 2.5978 |10 : |F0 |80107 80107| NL80_1 +110400 |V0400 Cam *|053941.8+710531 |EA | 13.40 | 14.35 : | 13.6 |* |51556.795 | | 2.3588 |08 | |80013 GSC | NL80_1 +110401 |V0401 Cam *|053955.3+694522 |EW | 13.2 | 13.7 | 13.6 |* |51514.170 | | 0.31582 | | |80144 80144| NL80_1 +110402 |V0402 Cam |053957.8+645116 |RRAB | 13.9 | 14.9 | |* |51512.838 | | 0.52947 |10 | |80168 80168| NL80_1 +110403 |V0403 Cam *|053958.5+672018 |EW | 11.16 | 11.38 | 11.38 |* |51513.661 | | 0.38635 | | |80144 80144| NL80_1 +110404 |V0404 Cam *|054015.7+661430 |EA | 12.95 | 13.35 | 13.15 : |* |51513.705 | | 0.9879 |16 | |80150 80150| NL80_1 +110405 |V0405 Cam *|054250.7+642515 |EW | 11.52 | 11.75 | 11.72 |* |51517.885 | | 0.37475 | | |80144 80144| NL80_1 +110406 |V0406 Cam *|054335.0+624641 |EW | 12.65 | 13.0 | 12.9 |* |51516.546 | | 0.29048 | | |80144 80144| NL80_1 +110407 |V0407 Cam |054353.5+725451 |SR | 11.37 | 11.68 | |* | | | 48. | | |80070 80070| NL80_1 +110408 |V0408 Cam *|054449.1+710810 |EB: | 13.05 | 13.3 | 13.15 |* |51519.537 | | 1.0417 | | |80102 80102| NL80_1 +110409 |V0409 Cam *|054643.9+752057 |EA | 11.03 | 11.29 | 11.27 : |* |51524.605 | | 6.6764 |04 : | |80023 GSC | NL80_1 +110410 |V0410 Cam *|054751.5+621133 |EW | 12.25 | 12.6 | 12.55 |* |51517.627 | | 0.65856 | | |80102 80102| NL80_1 +110411 |V0411 Cam |054919.8+674403 |RS | 12.0 | 12.2 | |* | | | 7.43 | | |80203 80203| NL80_1 +110412 |V0412 Cam *|055055.1+625146 |EA | 12.7 | 14.3 : | 12.8 |* |51515.70 | | 7.468 |10 | |80150 80150| NL80_1 +110413 |V0413 Cam |055246.5+725116 |RRAB | 12.8 | 13.1 | |* |51521.899 | | 0.42720 |20 | |80205 80205| NL80_1 +110414 |V0414 Cam |055325.0+794501 |RRC | 13.75 | 14.2 | |* |51514.596 | | 0.25155 |40 | |80103 80103| NL80_1 +110415 |V0415 Cam *|055738.2+803818 |EW | 13.7 | 14.1 | 14.1 |* |51514.008 | | 0.43262 | | |80144 80144| NL80_1 +110416 |V0416 Cam *|055903.8+710236 |EW | 14.4 | 15.0 | 15.0 |* |51516.170 | | 0.3863 | | |80144 80144| NL80_1 +110417 |V0417 Cam *|055928.0+623910 |EW | 14.2 | 14.7 | 14.6 |* |51499.085 | | 0.28482 | | |80144 80144| NL80_1 +110418 |V0418 Cam *|060045.0+713626 |EW | 13.7 | 14.4 | 14.4 |* |51521.827 | | 0.30675 | | |80144 80144| NL80_2 +110419 |V0419 Cam *|060100.4+615651 |EW | 12.3 | 12.6 | 12.6 |* |51503.548 | | 0.41470 | | |80144 80144| NL80_2 +110420 |V0420 Cam *|060129.6+710819 |EB | 13.9 | 14.5 | 14.0 |* |51519.97 | | 0.56556 | | |80144 80144| NL80_2 +110421 |V0421 Cam *|060453.3+795342 |EA | 12.83 | 13.5 | 13.5 : |* |51593.737 | | 2.25303 |04 | |80013 GSC | NL80_2 +110422 |V0422 Cam *|060738.2+694347 |EA | 11.32 | 11.88 | 11.67 |* |51548.607 | | 17.871 |02 : | |80023 GSC | NL80_2 +110423 |V0423 Cam *|060749.7+724637 |EA/RS | 11.35 | 12.05 | 11.90 |* |51521.79 | | 3.070 | | |80143 80143| NL80_2 +110424 |V0424 Cam *|060844.4+733343 |EW | 13.15 | 13.5 | 13.5 |* |51523.877 | | 0.32584 | | |80144 80144| NL80_2 +110425 |V0425 Cam |060927.4+792547 |SRA | 12.13 | 12.33 | |* |51499. | | 33.8 |45 | |80070 80070| NL80_2 +110426 |V0426 Cam *|061044.3+680015 |EW | 13.5 | 14.0 | 14.0 |* |51521.549 | | 0.34783 | | |80144 80144| NL80_2 +110427 |V0427 Cam |061044.7+703415 |SRA | 9.95 | 10.25 | |* |51515. | | 50.4 |47 | |80070 80070| NL80_2 +110428 |V0428 Cam *|061251.1+771051 |EW | 12.85 | 13.15 | 13.15 |* |51513.64 | | 0.29061 | | |80144 80144| NL80_2 +110429 |V0429 Cam *|061306.6+762949 |EW | 13.0 | 13.5 | 13.45 |* |51515.038 | | 0.44113 | | |80144 80144| NL80_2 +110430 |V0430 Cam |061347.0+633510 |RS | 10.47 | 10.74 | |* | | | 22.3 | | |80246 80246| NL80_2 +110431 |V0431 Cam |061353.8+672100 |SR | 11.4 | 11.65 | |* |51536. | | 61. |42 | |80070 80070| NL80_2 +110432 |V0432 Cam *|061413.8+705233 |EW | 14.1 | 14.5 | 14.4 |* |51521.473 | | 0.35253 | | |80144 80144| NL80_2 +110433 |V0433 Cam |061518.1+672008 |RRAB | 13.0 | 13.8 | |* |51547.240 | | 0.5177 |20 | |80168 80168| NL80_2 +110434 |V0434 Cam |061519.6+771952 |LB | 10.45 | 10.85 | |* | | | | | |80070 80070| NL80_2 +110435 |V0435 Cam |061520.9+820813 |SXPHE | 13.7 | 14.1 | |* |51483.966 | | 0.077493 | | |80082 80082| NL80_2 +110436 |V0436 Cam *|061555.8+665316 |EA | 13.5 | 14.1 | 13.8 |* |51527.360 | | 1.0541 |10 | |80150 80150| NL80_2 +110437 |V0437 Cam *|061843.6+701234 |EB | 13.9 | 14.8 | 14.3 |* |51523.043 | | 0.43903 | | |80144 80144| NL80_2 +110438 |V0438 Cam *|062000.8+772254 |EW: | 13.6 | 13.9 | 13.9 : |* |51514.11 | | 0.5008 | | |80102 80102| NL80_2 +110439 |V0439 Cam *|062202.0+721847 |EB | 12.55 | 12.83 | 12.70 |* |51522.140 | | 1.1484 | | |80144 80144| NL80_2 +110440 |V0440 Cam *|062257.5+733043 |EB | 13.5 | 14.3 | 13.8 |* |51523.187 | | 1.1514 | | |80144 80144| NL80_2 +110441 |V0441 Cam |062508.8+694852 |LB | 10.24 | 10.46 | |* | | | | | |80070 80070| NL80_2 +110442 |V0442 Cam |062558.1+733115 |EW: | 12.94 | 13.32 | |* |53667.2697 | | 0.4426426 | | |80248 GSC | NL80_2 +110443 |V0443 Cam *|062802.5+742423 |EW | 14.0 | 14.9 | 14.7 |* |51514.42 | | 0.4117 | | |80144 80144| NL80_2 +110444 |V0444 Cam *|062847.3+792212 |EW | 13.8 | 14.3 | 14.3 |* |51512.748 | | 0.36296 | | |80144 80144| NL80_2 +110445 |V0445 Cam *|063140.7+783952 |EW | 14.4 | 15.2 | 15.1 |* |51513.577 | | 0.30118 | | |80144 80144| NL80_2 +110446 |V0446 Cam |063218.0+700816 |SR | 11.25 | 11.4 | |V | | | 32.2 | | |80070 80070| NL80_2 +110447 |V0447 Cam *|063721.1+680441 |EB | 11.89 | 12.36 | 12.03 |* |51612.652 | | 0.83614 | | |80013 GSC | NL80_2 +110448 |V0448 Cam |064044.8+732201 |SR | 12.3 | 12.6 | |* | | | 25.4 | | |80070 80070| NL80_2 +110449 |V0449 Cam *|064242.6+632016 |EA | 12.7 | 13.0 | 12.73 : |* |51529.18 | | 2.902 |09 | |80104 80104| NL80_2 +110450 |V0450 Cam *|064243.2+720003 |EW | 12.65 | 13.00 | 12.95 |* |51520.863 | | 0.85110 | | |80102 80102| NL80_2 +110451 |V0451 Cam *|064243.7+642152 |EW | 13.2 | 13.7 | 13.65 |* |51531.160 | | 0.40146 | | |80144 80144| NL80_2 +110452 |V0452 Cam *|064352.7+702150 |EW | 12.10 | 12.35 | 12.35 |* |51525.978 | | 0.39745 | | |80102 80102| NL80_2 +110453 |V0453 Cam *|064433.9+713702 |ELL | 12.85 | 13.1 | 13.1 |* |51525.197 | | 0.32805 | | |80102 80102| NL80_2 +110454 |V0454 Cam *|064511.3+725136 |EA: | 13.9 | 14.3 | 14.1 |* |51524.21 | | 0.6016 |19 | |80144 80144| NL80_2 +110455 |V0455 Cam *|064725.0+694215 |EA | 10.88 | 11.33 | 11.05 |* |51537.601 | | 1.66900 |08 | |80013 GSC | NL80_2 +110456 |V0456 Cam *|064752.2+641145 |EW | 12.1 | 12.3 | 12.3 |* |51527.718 | | 0.41980 | | |80144 80144| NL80_2 +110457 |V0457 Cam *|064804.0+704534 |EW | 13.8 | 14.2 | 14.1 |* |51526.535 | | 0.30330 | | |80144 80144| NL80_2 +110458 |V0458 Cam |064825.3+642947 |LB: | 12.6 | 13.4 | |* | | | | |M |80062 GSC | NL80_2 +110459 |V0459 Cam *|064827.6+652057 |EA | 11.1 | 11.65 | 11.5 |* |51542.667 | | 1.5047 |07 |G4 |80150 80150| NL80_2 +110460 |V0460 Cam *|065030.5+644625 |EW | 13.2 | 13.6 | 13.55 |* |51528.567 | | 0.36045 | | |80144 80144| NL80_2 +110461 |V0461 Cam *|065047.2+732133 |EW | 13.3 | 13.75 | 13.7 |* |51525.557 | | 0.338555 | | |80144 80144| NL80_2 +110462 |V0462 Cam *|065133.5+742335 |EA | 14.25 | 14.75 | 14.49 |V |52727.3070 | | 0.952241 |12 | |80262 80262| NL80_2 +110463 |V0463 Cam |065318.1+724542 |RS | 12.1 | 12.25 | |* | | | 5.617 | | |80181 80181| NL80_2 +110464 |V0464 Cam *|065401.6+802126 |EB | 13.0 | 13.45 | 13.15 |* |51501.896 | | 0.48608 | | |80144 80144| NL80_2 +110465 |V0465 Cam *|065617.6+670449 |EA | 13.4 | 14.5 | 13.55 |* |51567.820 | | 1.93653 |12 | |80013 GSC | NL80_2 +110466 |V0466 Cam *|065918.6+714952 |EW | 12.6 | 13.1 | 13.1 |* |51526.230 | | 0.399885 | | |80144 80144| NL80_2 +110467 |V0467 Cam |070218.1+720853 |RRAB | 13.9 | 14.4 | |* |51526.64 | | 0.6282 |25 | |80205 80205| NL80_2 +110468 |V0468 Cam *|070333.8+630809 |EW | 12.5 | 13.05 | 13.03 |* |51530.631 | | 0.34750 | | |80144 80144| NL80_2 +110469 |V0469 Cam *|070613.8+671814 |EA | 12.60 | 13.15 | 13.05 |* |51531.85 | | 11.866 |02 | |80013 GSC | NL80_2 +110470 |V0470 Cam *|071042.1+665544 |EA | 14.1 |( 0.65 )|( 0.15 )|B |51822.7609 | | 0.09564662 |15 |sdB |80232 GSC | NL80_2 +110471 |V0471 Cam |071317.1+701634 |RS | 10.9 | 11.1 | |* | | | 12.38 | | |80181 80181| NL80_2 +110472 |V0472 Cam |071412.8+764951 |SR | 12.2 | 12.7 | |* | | | 67. | | |80070 80070| NL80_2 +110473 |V0473 Cam *|071704.9+771026 |EW | 11.55 | 12.20 | 12.15 |* |51528.964 | | 0.298438 | | |80144 80144| NL80_2 +110474 |V0474 Cam *|071915.0+690316 |EW | 11.0 | 11.5 | 11.4 |V |51441.216 | | 0.328207 | | |80274 80274| NL80_2 +110475 |V0475 Cam *|072248.0+742003 |EW | 13.61 | 13.66 | 13.64 |R |54428.423 | | 0.4586 | | |80275 80275| NL80_2 +110476 |V0476 Cam *|072320.9+752822 |EA | 13.20 | 14.7 : | 13.40 |* |51461.695 | | 3.0703 |13 | |80013 GSC | NL80_2 +110477 |V0477 Cam *|072412.6+753503 |EB | 12.52 | 12.75 | 12.61 |* |51620.782 | | 2.7404 | | |80013 GSC | NL80_2 +110478 |V0478 Cam *|072723.8+772223 |EA | 12.3 | 13.7 | 12.5 |* |51523.31 | | 3.52632 |10 |G5 |80150 80150| NL80_2 +110479 |V0479 Cam *|072724.5+742600 |EW | 13.22 | 13.68 | 13.67 |* |54479.5727 | | 0.32539 | | |80276 80276| NL80_2 +110480 |V0480 Cam |073055.3+634350 |RS: | 9.6 | 9.9 | |* | | | 85.28 | |G5II |80158 GSC | NL80_2 +110481 |V0481 Cam *|073210.4+843352 |EW | 14.5 | 15.5 | 15.3 : |* |51438.788 | | 0.319855 | | |80085 80085| NL80_2 +110482 |V0482 Cam *|073341.4+673216 |EA+NL | 15.1 | 18.4 | 15.3 |B |52001.32730 | | 0.1336195 | |pec(e) |80280 80280| NL80_2 +110483 |V0483 Cam *|073540.2+834236 |EW | 12.95 | 13.35 | 13.25 |* |51461.888 | | 0.38225 | | |80085 80085| NL80_2 +110484 |V0484 Cam |073701.4+704550 |EA | 13.1 | 14.0 : | |* |51590.615 | | 3.9887 | | |80011 GSC | NL80_2 +110485 |V0485 Cam |073708.8+703345 |EA | 13.3 |< 14.3 | |* |51295.655 | | 0.722543 |10 | |80013 GSC | NL80_2 +110486 |V0486 Cam |073838.6+692048 |RRAB | 13.30 | 14.50 | |* |51287.65 | | 0.80633 |25 | |80026 GSC | NL80_2 +110487 |V0487 Cam *|074319.4+780700 |EB | 14.4 | 14.9 | 14.6 |* |51514.925 | | 0.47766 | | |80052 80052| NL80_2 +110488 |V0488 Cam *|074739.0+781011 |EW | 12.80 | 12.95 | 12.90 |* |51523.196 | | 0.26742 | | |80144 80144| NL80_2 +110489 |V0489 Cam *|074843.7+762809 |EA/RS | 10.94 | 11.22 | 11.21 |* |51525.793 | | 0.619753 |10 | |80042 GSC | NL80_2 +110490 |V0490 Cam *|075152.2+745344 |EW | 13.8 | 14.3 | 14.1 |* |51553.773 | | 0.32348 | | |80144 80144| NL80_2 +110491 |V0491 Cam |075245.1+811952 |RRC | 11.88 | 12.04 | |* |51521.80 | | 0.39275 |44 | |80083 GSC | NL80_2 +110492 |V0492 Cam |080004.3+672245 |RRAB | 13.76 | 15.28 | |* |51609.18 | | 0.57254 | | |80026 USNO | NL80_2 +110493 |V0493 Cam |080052.2+701903 |RRAB | 14.37 | 15.52 | |* |51541.70 | | 0.45031 | | |80026 GSC | NL80_2 +110494 |V0494 Cam *|081131.8+741626 |EA | 13.25 | 14.00 | 13.9 |* |51517.60 | | 6.2222 |03 | |80013 GSC | NL80_2 +110495 |V0495 Cam *|081925.6+770514 |EW | 13.0 | 13.35 | 13.3 |* |51530.837 | | 0.35445 | | |80144 80144| NL80_2 +110496 |V0496 Cam *|081952.4+810946 |EW | 13.95 | 14.4 : | 14.4 : |* |51378.363 | | 0.39289 | | |80013 GSC | NL80_2 +110497 |V0497 Cam *|084241.3+834714 |EW | 13.50 | 14.05 | 14.0 |* |51518.790 | | 0.554646 | | |80013 GSC | NL80_2 +110498 |V0498 Cam *|085158.1+740155 |EA | 11.79 | 12.22 | 12.02 |* |51582.760 | | 12.111 |02 | |80023 GSC | NL80_2 +110499 |V0499 Cam *|085424.3+794054 |EA | 10.52 | 10.9 | 10.56 |* |51318.730 | | 2.93555 |04 | |80013 GSC | NL80_2 +110500 |V0500 Cam *|085559.1+782426 |EW | 14.0 | 14.8 | 14.6 |* |51513.517 | | 0.24835 | | |80144 GSC | NL80_2 +110501 |V0501 Cam *|085710.7+791221 |EW | 13.8 | 14.1 | 14.05 |* |51490.934 | | 0.45438 | | |80085 80085| NL80_2 +110502 |V0502 Cam *|085918.4+801950 |EA | 12.49 | 13.05 | 13.00 : |* |51577.753 | | 3.78551 |04 | |80013 GSC | NL80_2 +110503 |V0503 Cam *|090046.9+764603 |EA | 12.05 | 12.7 : | 12.6 : |* |51549.642 | | 2.97703 |07 | |80013 GSC | NL80_2 +110504 |V0504 Cam *|090400.0+761632 |EA | 11.66 | 11.95 | 11.90 |* |51593.71 | | 19.971 : |02 | |80013 GSC | NL80_2 +110505 |V0505 Cam *|090849.1+824606 |EW | 13.8 | 14.5 | 14.4 |* |51468.912 | | 0.33636 | | |80052 80052| NL80_2 +110506 |V0506 Cam *|091027.5+841723 |EW | 12.7 | 13.3 | 13.2 |* |51475.958 | | 0.34010 | | |80052 80052| NL80_2 +110507 |V0507 Cam *|091113.8+775224 |EA | 11.74 | 12.13 | 11.81 |* |51502.792 | | 2.21127 |11 | |80013 GSC | NL80_2 +110508 |V0508 Cam *|092118.1+783742 |EW | 12.5 | 12.63 | 12.6 |* |51525.370 | | 0.30172 | | |80144 80144| NL80_2 +110509 |V0509 Cam *|092413.3+794454 |EW | 13.0 | 13.6 | 13.55 |* |51492.277 | | 0.35034 | | |80144 80144| NL80_2 +110510 |V0510 Cam |092414.8+811329 |CWB | 14.05 | 14.9 | |* |51449.82 | | 1.8118 |07 | |80177 GSC | NL80_2 +110511 |V0511 Cam *|100554.7+815900 |EW | 12.6 | 12.85 | 12.85 |* |51470.670 | | 0.404615 | | |80085 80085| NL80_2 +110512 |V0512 Cam *|101641.7+843206 |EW: | 12.80 | 13.05 | 13.05 |* |51454.75 | | 0.572734 | | |80011 GSC | NL80_2 +110513 |V0513 Cam |101933.2+833613 |RRAB | 14.0 | 14.8 | |* |51478.045 | | 0.5925 |10 : | |80168 80168| NL80_2 +110514 |V0514 Cam *|112830.1+793856 |EW | 12.4 | 13.0 | 12.9 |* |51458.976 | | 0.36274 | | |80144 80144| NL80_2 +110515 |V0515 Cam *|114501.3+762421 |EB | 13.45 | 14.1 | 13.7 |* |51462.93 | | 0.9238 | | |80359 80359| NL80_2 +110516 |V0516 Cam *|120043.9+770500 |EA | 10.45 | 10.77 | |* |51370.69 | | 5.2218 |07 |F2 |80011 DM | NL80_2 +110517 |V0517 Cam *|120651.0+771857 |EA | 10.98 | 11.38 | 11.05 |* |51581.763 | | 2.09223 |06 | |80011 GSC | NL80_2 +110518 |V0518 Cam *|131255.8+834143 |EA | 11.92 | 12.50 | 12.08 |* |51325.750 | | 3.6165 |14 | |80013 GSC | NL80_2 +110519 |V0519 Cam *|141525.0+840333 |EA | 12.58 | 13.05 | 12.80 |* |51343.697 | | 0.85026 |18 | |80013 GSC | NL80_2 +120001 |R Cnc *|081633.8+114335 |M | 6.07 | 11.8 | |V |44231. | | 361.60 |47 |M6e-M9e |00001 00002| +120002 |S Cnc *|084356.1+190203 |EA/DS | 8.29 | 10.25 | 8.39 |V |36985.029 | | 9.4845516 |08 |B9V+G8IV |06111 00462| +120003 |T Cnc |085640.1+195057 |SRB | 7.6 | 10.5 | |V | | | 482. |35 |C3,8-C5,5(R6-N6) |00001 00002| +120004 |U Cnc *|083546.3+185345 |M | 8.5 | 15.5 | |V |40627. | | 304.78 |40 |M2e |00001 00002| +120005 |V Cnc *|082142.9+171707 |M | 7.5 | 13.9 | |V |43485. | | 272.13 |46 |S0e-S7,9e |00001 00002| +120006 |W Cnc |090952.6+251454 |M | 7.4 | 14.4 | |V |43896. | | 393.22 |40 |M6.5e-M9e |00001 00002| +120007 |X Cnc |085522.9+171353 |SRB | 5.6 | 7.5 | |V |43631. | | 195. : | |C5,4(N3) |05628 00097| +120008 |Y Cnc |080427.1+200750 | | 13. | 15. | |p | | | | | | 02078| +120009 |Z Cnc |082225.3+145932 |SRB | 9.4 | 10.7 | |p |37026. | | 104. : | |M6III |02079 BD | +120010 |RR Cnc |081103.1+230855 |M | 9.8 | 15. | |p |41400. | | 298.26 | |M3e |00001 00114| +120011 |RS Cnc *|091038.8+305747 |SRC: | 6.2 | 7.7 | |p | | | 120. : | |M6eIb-II(S) | 06225| +120012 |RT Cnc *|085816.0+105043 |SRB | 7.12 | 8.6 | |V | | | 60. : | |M5III |08643 00119| +120013 |RU Cnc *|083730.1+233342 |EA/DS/RS | 10.10 | 11.25 | 10.21 : |V |22650.720 | | 10.172988 |08 |F9V:+G9V: |02087 00537| +120014 |RV Cnc |080942.9+192634 |CST: | 13.0 | | |p | | | | |F8 |02079 00002| +120015 |RW Cnc *|091906.0+290356 |RRAB | 10.7 | 12.6 | |p |39556.314 | | 0.547199 |13 |A5 |05238 02088| +120016 |RX Cnc |081443.5+244405 |SRB | 9.2 | 11.3 | |p | | | 120. : | |M8 |02079 BD | +120017 |RY Cnc *|083954.6+194919 |EA/SD | 12.99 | 15.52 | |V |42458.547 | | 1.0929430 |18 *| |00001 02092| +120018 |RZ Cnc *|083908.5+314745 |EA/GS/RS | 8.67 | 10.03 | 9.21 |V |18702.531 | | 21.642998 |15 |K2III+K4III |07194 BD | +120019 |SS Cnc *|080625.6+231506 |RRAB | 11.49 | 12.72 | |V |23078.589 | | 0.36733792 |13 |A4-F5 |00001 02108| +120020 |ST Cnc |080927.9+143952 |M | 12. |< 16. | |p |34815. | | 139.7 | |M8 |02931 00114| +120021 |SU Cnc |081330.6+134806 |M | 12.0 |< 16. | |p |34410. | | 187.1 | |M6 |02306 00114| +120022 |SV Cnc *|085000.9+095947 |RRAB | 14.04 | 15.13 | |V |38825.545 | | 0.5261988 |14 | |01790 00531| +120023 |SW Cnc |090859.3+093541 |EA/SD: | 11.6 | 12.5 | |p |30495.651 | | 1.799211 |10 *|F8 |03115 00531| +120024 |SX Cnc |085119.6+253324 |RRAB | 12.6 | 14.0 | |p |38052.371 | | 0.5101754 |12 | |05270 06286| +120025 |SY Cnc *|090103.3+175356 |UGZ | 10.6 | 14.0 | |p | | |( 27. ) | |pec(UG)+G |02109 02544| +120026 |SZ Cnc |082123.4+140015 |M | 10.2 | 15.1 | |p |42824. | | 319.15 | |M2 |00001 02110| +120027 |TT Cnc *|083255.2+131129 |RRAB | 10.72 | 11.78 | |V |39944.367 | | 0.5634494 |18 |A9-F4 |05271 02111| +120028 |TU Cnc |085216.6+090519 |EA/SD | 9.9 | 12.4 | |p |42050.7344 | | 5.561451 |09 *|A0 |00001 BD | +120029 |TV Cnc |081418.8+083425 |M | 9.5 |< 14.5 | |V |52984. | | 263. | |M7 |00001 00491| +120030 |TW Cnc *|082937.3+122720 |EA | 8.50 | 8.97 |( 0.1 pg)|V |31854.76 | | 70.760 |03 |G8III+A8 |02402 02190| +120031 |TX Cnc *|084001.7+185959 |EW/KW | 10.00 | 10.35 | 10.32 |V |38011.3909 | | 0.382881537 | |F8V+F7V |06112 BD | +120032 |TY Cnc *|084709.7+082425 |EA/SD | 12.7 | 15.7 | |p |31516.620 | | 2.768289 |15 | |03115 06286| +120033 |TZ Cnc |090401.0+205655 |SRA | 10.7 | 12.1 | |B |42842. | | 55.3 | |M3-M5III |04288 00837| +120034 |UU Cnc *|080230.9+151042 |EB/GS | 8.68 | 9.35 | 9.2 |V |41072.03 | | 96.71 | |K4III |03257 BD | +120035 |UV Cnc *|083846.7+210934 |LB | 9. | 10.5 | |p | | | | |M4 |01047 08667| +120036 |UW Cnc |085059.3+073650 |LB | 12.9 | 13.9 | |p | | | | | |04027 02323| +120037 |UX Cnc |090329.5+073538 |LB | 12.1 | 12.6 | |p | | | | | |04027 02323| +120038 |UY Cnc |083607.0+131232 |M | 10.8 | 17. | |p |40641. | | 228.55 | |M6.5 |00001 00541| +120039 |UZ Cnc *|080323.4+191054 |EA/DM | 11.2 | 11.9 | 11.4 |p |35550.54 | | 11.5815 |15 |G0 |02431 00156| +120040 |VV Cnc |081116.3+190855 |LB | 10.5 | 11.5 | |p | | | | |M3 |01110 00156| +120041 |VW Cnc |081338.2+101150 |M | 10.6 | 16. | |p |36262. | | 366. | |M7 |00001 06286| +120042 |VX Cnc |080254.0+185940 |SRB | 11.1 | 11.7 | |p | | | 36.4 | |M1 |01544 00156| +120043 |VY Cnc *|090041.1+185523 |EW/DW | 11.9 | 12.4 | 12.3 : |p |31163.318 | | 0.71942 | |G2 |00192 00192| +120044 |VZ Cnc *|084052.1+094927 |DSCT | 7.18 | 7.91 | |V |39897.4246 | | 0.178363704 |26 |A7III-F2III |05272 06286| +120045 |WW Cnc *|090948.6+302537 |EA/SD | 10.5 | 11.6 | |p |27133.459 | | 1.1159843 |14 |F7+A6 |07531 00362| +120046 |WX Cnc *|084650.8+325105 |EA/DM: | 10.5 | 11.2 | 10.7 |p |25620.377 | | 1.2245888 |10 |F2 |00001 02378| +120047 |WY Cnc *|090155.5+264123 |EA/SD/RS | 9.51 | 10.14 | 9.60 |V |26352.3895 | | 0.82937122 |16 |G5V |03261 02378| +120048 |WZ Cnc |080849.1+164452 |SRB | 10.5 | 11.5 | |p | | | 120. : | |M2 |00499 BD | +120049 |XX Cnc *|084317.2+203601 |LB | 10.1 | 11.0 | |p | | | | |M4 |00499 08667| +120050 |XY Cnc |082513.7+155659 |E | 12.1 | 13.0 | |p |34090.15 | | | |K2V |00836 00837| +120051 |XZ Cnc *|082919.5+131239 |EB/DM: | 9.8 | 10.2 | 10.2 |p |25647.390 | | 1.113753 | |A5 |03262 00196| +120052 |YY Cnc *|083438.9+311828 |E: | 11.3 | 11.7 | |p | | | 0.5557 : | |F2 | 02378| +120053 |YZ Cnc *|081056.6+280833 |UGSU | 10.2 | 14.6 | |p | | |( 11.3 ) | |pec(UG) |03264 00002| +120054 |ZZ Cnc *|075706.9+105905 |EA/DS | 9.4 | 10.9 | |p |26770.350 | | 25.5950 |08 |A8IV-V:+K0III: |04020 04132| +120055 |AA Cnc |083722.9+261224 |UV: | 12.1 : | 14.6 | |p | | | | | |06122 04139| +120056 |AB Cnc |083737.2+143555 |EA | 14. | 15. | |p |37638.464 | | | | |04141 00141| +120057 |AC Cnc *|084427.1+125232 |EA/WD+NL: | 13.80 | 15.4 | 14.7 |V |44290.309 | | 0.30047768 |11 |pec(e) |04455 04460| +120058 |AD Cnc *|084620.1+102008 |EW/KW | 13.10 | 13.40 | 13.4 |V |43192.430 | | 0.28273824 | |K0 |04466 04145| +120059 |AE Cnc |084806.8+091021 |EA/SD | 13.4 | 16.7 | |p |43170.4645 | | 2.238603 |13 | |04470 04145| +120060 |AF Cnc |085027.7+104706 |RRAB | 15.4 | 16.9 | |p |42537.30 | | 0.490352 |20 | |07333 04145| +120061 |AG Cnc |085125.3+120257 |RR: | 14.2 | 14.8 | |p | | | 0.313335 : | | |04146 04145| +120062 |AH Cnc *|085137.9+115057 |EW/KW | 13.31 | 13.69 | 13.68 |V |41740.7166 | | 0.36044098 | |F5-F7 |04475 04145| +120063 |AI Cnc |085519.7+122314 |RRAB | 14.4 | 15.8 | |p |36661.26 | | 0.564308 | | |04146 04145| +120064 |AK Cnc |085521.2+111815 |UG | 13. |< 17. | |p | | | | | |04141 00541| +120065 |AL Cnc |085606.8+143834 |EA | 13.0 | 14.0 | |p | | | | | |04146 04145| +120066 |AM Cnc |085614.8+113721 |RRAB | 14.0 | 15.2 | |p |36660.35 | | 0.557615 | | |04146 04145| +120067 |AN Cnc |085810.3+154818 |RRAB | 12.1 | 13.0 | |V |38430.4448 | | 0.54315826 |11 | |03452 00541| +120068 |AO Cnc *|085917.0+090834 |EA/SD | 13.3 | 14.6 | 13.4 |p |25647.539 | | 1.91322 |13 *| |04027 00531| +120069 |AP Cnc *|090652.2+083629 |RRAB | 13.3 | 14.9 | |p |34396.424 | | 0.5329375 |41 | |03506 02323| +120070 |AQ Cnc |091739.0+123904 |RRAB | 11.1 | 12.0 | |p |33001.336 | | 0.5485195 |15 |A2 |05342 02609| +120071 |AR Cnc |092207.6+310315 |UG: | 15.3 |< 17.4 | |p | | | | | |04153 04153| +120072 |AS Cnc |082542.1+254308 |RRAB | 11.9 | 13.0 | |p |39200.406 | | 0.617520 |20 | |05519 04336| +120073 |AT Cnc |082836.9+252003 |UG: | 12.3 | 14.6 | |p | | |( 14. ) | |DAe |04476 05519| +120074 |AU Cnc *|083352. +192742:|UV | 16.6 | 19.1 | |U | | | | | |03924 | +120075 |AV Cnc *|083722. +195730:|UV | 16.6 | 18.6 | |U | | | | | |03924 | +120076 |AW Cnc *|083830. +180726:|UV | 15.6 | 18.6 | |U | | | | | |05520 | +120077 |AX Cnc *|083909.9+194659 |UV | 14.8 | 18.8 | |U | | | | |M2.5e |03924 | +120078 |AY Cnc *|083915. +200111:|UV | 15.5 |< 17. | |U | | | | | |05521 | +120079 |AZ Cnc *|084029.7+182409 |UV | 14.1 | 20.5 | |U | | | | | |03924 USNO | +120080 |BB Cnc *|084037. +192919:|UV | | 20.7 | |p | | | | |M: |05520 | +120081 |BC Cnc *|084107. +190117:|UV | | 20.1 | |B | | | | |M: |05520 | +120082 |BD Cnc *|084111.9+195356 |UV | 13.5 |< 18. | |U | | | | | |05521 GSC | +120083 |BE Cnc *|084123. +201216:|UV | 16.6 | 21.6 | |U | | | | | |03924 | +120084 |BF Cnc |084212.8+074837 |RR | 15.5 | 16. | |p |39557.45 | | | | |05515 05515| +120085 |BG Cnc *|084243. +194612:|UV | 15.5 | 18.5 | |U | | | | | |03924 | +120086 |BH Cnc *|084247. +210112:|UV | 16.3 | 19.5 | |B | | | | | |02029 | +120087 |BI Cnc *|084445.0+100454 |ACV | 5.58 | 5.71 | |V |41616.50 | | 4.2359 | |A0p(Si-Cr) |04479 BD | +120088 |BK Cnc *|084612. +184700:|UV | 15.7 | 18.7 | |U | | | | | |05520 | +120089 |BL Cnc |080618.4+223808 |LB | 5.97 | 6.04 | |V | | | | |M3III |05841 BD | +120090 |BM Cnc *|081308.9+293924 |ACV | 5.53 | 5.65 | |V |39482.9 | | 4.116 | |B9p(Si-Cr) |05390 BD | +120091 |BN Cnc *|084039.2+191342 |DSCTC | 7.80 |( 0.03 )| |V | | | 0.0388205 | |A8V |04481 08667| +120092 |BO Cnc |085228.6+281533 |LB: | 5.9 | 6.37 | |V | | | | |M3III |05840 BD | +120093 |BP Cnc |082643.9+123917 |SRB | 5.41 | 5.75 | |V | | | 40. : | |M3III |06994 BD | +120094 |BQ Cnc *|084026.8+201055 |DSCTC | 8.19 |( 0.02 )| |V | | | 0.074 | |F2Vn |06838 08667| +120095 |BR Cnc *|083740.7+193106 |DSCTC | 8.26 |( 0.02 )| |V | | | 0.038 | |F0Vn |06838 08667| +120096 |BS Cnc *|083909.1+193533 |DSCTC | 8.50 |( 0.02 )| |V | | | 0.051 | |A9Vn |06838 08667| +120097 |BT Cnc *|083942.7+194643 |DSCTC | 6.66 |( 0.06 )| |V | | | 0.10228 | |F0III |04482 08667| +120098 |BU Cnc *|083944.7+191631 |DSCTC | 7.67 |( 0.03 )| |V | | | 0.071 | |A7Vn |06838 08667| +120099 |BV Cnc *|084033.0+191140 |DSCTC | 8.65 |( 0.02 )| |V | | | 0.21 | |F0V |06456 BD | +120100 |BW Cnc *|084052.5+201600 |DSCTC | 8.48 |( 0.01 )| |V | | | 0.072 | |F0Vn |06838 08667| +120101 |BX Cnc *|084206.5+192441 |DSCTC | 7.96 |( 0.02 )| |V | | | 0.053 | |A7V |06838 08667| +120102 |BY Cnc *|084210.8+185604 |DSCTC | 7.91 |( 0.01 )| |V | | | 0.058 | |A7Vn |06838 08667| +120103 |BZ Cnc *|083034. +190211:|UV | 14.9 | 15.6 | |p | | | | | |07442 | +120104 |CC Cnc *|083619.2+212106 |UG | 13.1 | 17.6 | |B | | | | | |07443 07443| +120105 |CD Cnc *|083646. +191856:|UV | 14.6 | 17.9 | |p | | | | | |07442 | +120106 |CE Cnc *|083837. +214556:|UV | 14.3 | 17.7 | |U | | | | | |07442 | +120107 |CF Cnc *|083834. +191532:|UV | 15.2 | 20.0 | |U | | | | | |07442 | +120108 |CG Cnc *|084109. +184517:|UV | 17.5 | 18.3 | |p | | | | | |07442 | +120109 |CH Cnc *|084108. +174859:|UV | 17.5 | 18.5 | |p | | | | | |07442 | +120110 |CI Cnc *|084127. +181404:|UV | 15.6 | 18.4 | |U | | | | | |07442 | +120111 |CK Cnc *|084133. +184446:|UV | 16.5 | 18.4 | |p | | | | | |07442 | +120112 |CL Cnc *|084204. +195708:|UV | 16.1 | 17.5 | |p | | | | | |07442 | +120113 |CM Cnc *|084235. +204142:|UV | 14.8 | 16.4 | |U | | | | | |07442 | +120114 |CN Cnc *|084233. +183348:|UV | 16.2 | 17.4 | |p | | | | | |07442 | +120115 |CO Cnc *|084251. +181405:|UV | 16.1 | 18.6 | |p | | | | | |07442 | +120116 |CP Cnc *|084322. +191204:|UV | 16.5 | 19.1 | |p | | | | | |07442 | +120117 |CQ Cnc |084522.3+151630 |RRAB | 12.7 | 13.8 | |p |42873.34 | | 0.524654 |07 | |04486 04486| +120118 |CR Cnc *|084722. +192632:|UV | 16.1 | 18.0 | |p | | | | | |07442 | +120119 |CS Cnc *|084744. +182119:|UV | 15.5 | 19.4 | |U | | | | | |07442 | +120120 |CT Cnc |082139.5+310543 |LB | 12.1 | 12.8 | |p | | | | |M1 |05519 BD | +120121 |CU Cnc *|083137.6+192340 |UV | 10.9 | 13.9 | |U | | | | |M5Ve |07800 07477| +120122 |CV Cnc *|083137.7+192351 |UV | 11.8 | 15.8 | |U | | | | |M5Ve |07800 07477| +120123 |CW Cnc |090826.5+131314 |LB | 10.0 | 11.2 | |p | | | | |M6 |02609 BD | +120124 |CX Cnc |082836.8+240842 |DSCTC | 6.10 |( 0.025 )| |V | | | 0.096 | |A5 |08290 BD | +120125 |CY Cnc *|083837.9+195923 |DSCTC | 8.14 |( 0.02 )| |V | | | 0.1 : | |F0V |06456 BD | +120126 |CZ Cnc *|082522.2+202159 |UV: | 13.5 |< 20. | |p | | | | | |08354 08354| +120127 |DD Cnc *|083322.3+204319 |UV | 16.0 |< 18.0 | |U | | | | |M3-4 |08356 08356| +120128 |DE Cnc |083527.3+194531 |UG | 14.6 | 18.0 | |p | | | | | |01807 08357| +120129 |DF Cnc *|083528.9+181222 |UV | 14.0 | 16.5 | |U | | | | |M4 |08356 08356| +120130 |DG Cnc *|083543.4+191448 |UV | 13.5 | 15.5 | |U | | | | |M2: |08356 08356| +120131 |DH Cnc *|083630. +203933:|UV | 17.0 |< 18.0 | |U | | | | |M |08356 | +120132 |DI Cnc *|083627. +193533:|UV | 16.1 | 19.9 | |U | | | | | |08358 | +120133 |DK Cnc |083806.7+202250 |SRB | 10.4 | 11.7 | |V | | | 100. : | |M3 |01998 00499| +120134 |DL Cnc *|083829.4+203226 |UV | 14.0 |< 18.0 | |U | | | | |M |08356 08356| +120135 |DM Cnc *|083832.1+182754 |UV | 17.1 | 18.1 | |B | | | | | |02029 08359| +120136 |DN Cnc *|083844. +191725:|UV | 15.8 | 18.9 | |U | | | | | |08358 | +120137 |DO Cnc *|083951.4+203450 |UV | 14.5 | 18.0 | |U | | | | |M3-4 |08356 08356| +120138 |DP Cnc *|084136.5+173347 |UV | 13.2 | 18.0 | |U | | | | |M3-4 |08356 08356| +120139 |DQ Cnc *|084213.8+202127 |UV | 15.0 | 16.8 | |U | | | | |M1: |08356 08356| +120140 |DR Cnc *|084444.9+192423 |UV | 15.5 |< 18.0 | |U | | | | |M |08356 08356| +120141 |DS Cnc *|084513.6+174326 |UV | 16.3 | 17.0 | |U | | | | |M4 |08356 08356| +120142 |DT Cnc *|084646.2+204334 |UV | 15.0 | 17.5 | |U | | | | |M |08356 08356| +120143 |DU Cnc *|084802. +200554:|UV | 16.3 | 17.8 | |U | | | | | |08358 | +120144 |DV Cnc |090315.6+081246 |SRB: | 10.0 | 11.3 | |V |43537. | | 118. | |M4 |02171 08361| +120145 |DW Cnc |075853.1+161645 |UG | 15. | 17.5 | |V | | | | |OB |08738 08738| +120146 |DX Cnc |082949.3+264634 |UV | 14.3 | 19.0 | |U | | | | | |67049 67050| +120147 |DY Cnc |083429. +191534:|UV | 12.0 | 16.5 | |U | | | | | |67051 | +120148 |DZ Cnc |083431. +191521:|UV | 11.5 | 14. | |U | | | | | |67051 | +120149 |EE Cnc |083815. +192809:|UV | 11.0 | 14.5 | |U | | | | | |67051 | +120150 |EF Cnc |084038.8+231550 |EW | 11.7 | 12.4 | |p | | | | | |67054 67053| +120151 |EG Cnc |084304.0+275150 |NL | 11.9 | 17. : | |V | | | | | |67055 67055| +120152 |EH Cnc |082618.4+205250 |EW/KW | 11.73 | 12.47 : | |V | | | | | |68305 68048| +120153 |EI Cnc |085816.1+194548 |UV | 16.32 | 16.68 | |U | | | | | |68049 68306| +120154 |EK Cnc |083200. +211448:|UV | 16.2 | 17.6 | |U | | | | | |70013 | +120155 |EL Cnc |083611. +200134:|UV | 17.9 | 21.0 | |p | | | | | |70013 | +120156 |EM Cnc |083822. +201344:|UV | 15. |< 17. | |U | | | | | |70014 | +120157 |EN Cnc |083853. +195137:|UV | 15.5 | 18. | |U | | | | | |70014 | +120158 |EO Cnc |083903. +200236:|UV | 14.0 | 16.9 | |U | | | | | |70013 | +120159 |EP Cnc |084056.3+193449 |DSCTC | 6.76 |( 0.03 )| |V | | | | | |70016 BD | +120160 |EQ Cnc |084122. +195116:|UV | 15.8 | 17.1 | |p | | | | | |70013 | +120161 |ER Cnc |084549. +195043:|UV | 14.5 |< 17. | |U | | | | | |70014 | +120162 |ES Cnc |085120.8+115326 |EA | 11.16 | 11.28 | |V | | | | | |71078 71079| +120163 |ET Cnc |085126.8+115612 |EW/KW | 15.96 |( 0.12 )| |V | | | | | |71080 71081| +120164 |EU Cnc |085127.2+114657 |AM: | 20.4 | 21.0 | |V | | | | | |71080 71081| +120165 |EV Cnc |085128.1+114928 |EW/KW | 12.80 |( 0.10 )| |V | | | | | |71080 71081| +120166 |EW Cnc |085132.6+115041 |DSCTC | 12.27 |( 0.02 )| |V | | | | | |71082 71081| +120167 |EX Cnc |085134.3+115111 |DSCTC | 10.95 |( 0.05 )| |V | | | | | |71082 71083| +120168 |EY Cnc |085135.2+115032 |BY: | 19.94 | | |V | | | | | |71080 71081| +120169 |EZ Cnc |085257.7+234754 |RRAB | 11.78 | 12.72 | |V | | | | | |71084 71084| +120170 |FF Cnc |082939.3+171701 |EA | 10.82 | 11.40 | |V | | | | | |72025 72025| +120171 |FG Cnc |084211. +204014:|UV | 15.0 | 15.6 | |U | | | | | |72026 | +120172 |FH Cnc |084659. +203458:|UV | 13.5 |< 17. | |U | | | | | |72026 | +120173 |FI Cnc |083217.3+291910 |FKCOM | 7.28 |( 0.17 )| |V | | | | | |73005 BD | +120174 |FK Cnc |083305.0+111605 |BY: | 7.94 |( 0.03 )| |V | | | | | |73005 BD | +120175 |FL Cnc |084414.8+320346 |DSCTC | 7.03 |( 0.06 )| |V | | | | | |73053 BD | +120176 |FM Cnc |084736.7+275959 |RRAB | 15.51 | 16.71 | |V | | | | | |73003 USNO | +120177 |FN Cnc |090202.4+275834 |RRAB | 15.40 | 16.71 | |V | | | | | |73003 USNO | +120178 |FO Cnc |080205.4+245835 |LB: | 8.60 | 8.77 | |Hp| | | | | |HIP HIP | +120179 |FP Cnc |080856.4+324911 |BY | 9.94 | 10.18 | |Hp| | | | | |HIP HIP | +120180 |FQ Cnc |083048.8+142552 |SRB | 8.40 | 8.62 | |Hp| | | | | |HIP HIP | +120181 |FR Cnc |083230.5+154926 |BY: | 10.28 | 10.47 | |Hp| | | | | |HIP HIP | +120182 |FS Cnc |083323.1+202324 |LB: | 8.60 | 8.81 | |Hp| | | | | |HIP HIP | +120183 |FT Cnc |084334.9+311902 |SRD | 8.43 | 8.63 | |Hp| | | | | |HIP HIP | +120184 |FU Cnc |084450.3+073717 |SRB: | 9.01 | 9.11 | |Hp| | | | | |HIP HIP | +120185 |FV Cnc *|084801.7+184038 |UG: | 10.44 | 10.62 | |Hp| | | | | |HIP HIP | +120186 |FW Cnc |084837.0+102559 |LB | 6.91 | 7.05 | |Hp| | | | | |HIP HIP | +120187 |FX Cnc |084839.5+123249 |SRB | 6.63 | 6.77 | |Hp| | | | | |HIP HIP | +120188 |FY Cnc |085713.8+305838 |SRB | 8.71 | 8.97 | |Hp| | | | | |HIP HIP | +120189 |FZ Cnc |085910.7+180806 |SRB | 6.28 | 6.38 | |Hp| | | | | |HIP HIP | +120190 |GG Cnc |090025.9+242948 |LB: | 8.24 | 8.36 | |Hp| | | | | |HIP HIP | +120191 |GH Cnc |090422.5+291605 |SRB | 7.59 | 7.72 | |Hp| | | | | |HIP HIP | +120192 |GI Cnc |090643.4+242321 |SRB | 8.58 | 8.73 | |Hp| | | | | |HIP HIP | +120193 |GK Cnc |090730.4+163637 |LB: | 9.10 | 9.20 | |Hp| | | | | |HIP HIP | +120194 |GL Cnc |091235.3+065629 |LB: | 9.43 | 9.53 | |Hp| | | | | |HIP HIP | +120195 |GM Cnc |091350.1+141239 |LB: | 8.61 | 8.73 | |Hp| | | | | |HIP HIP | +120196 |GN Cnc |091604.4+200423 |RR: | 8.80 | 8.89 | |Hp| | | | | |HIP HIP | +120197 |GO Cnc |091738.1+164218 |EA | 8.40 | 8.66 | |Hp| | | | | |HIP HIP | +120198 |GP Cnc |083809.7+071333 |DSCTC | 11.2 |( 0.09 )| |R | | | | | |75052 75052| +120199 |GQ Cnc |091208.4+265018 |EW | 13.4 |( 0.97 )| |V | | | | | |75053 UCAC2| +120200 |GR Cnc |075654.0+094238 |M | 12.4 | 15.2 | |V | | | | | |76012 GSC | +120201 |GS Cnc |081506.3+283110 |SR: | 10.9 | 12.1 | |V | | | | | |76012 DM | +120202 |GT Cnc |082201.4+133705 |SR: | 10.8 | 12.4 | |V | | | | | |76012 UCAC2| +120203 |GU Cnc |082614.0+152139 |SR: | 10.6 | 11.7 | |V | | | | | |76012 GSC | +120204 |GV Cnc |082740.5+191544 |SR: | 11.4 | 13.1 | |V | | | | | |76012 GSC | +120205 |GW Cnc |084812.7+210714 |L: | 12.1 | 13.1 | |V | | | | | |76012 UCAC2| +120206 |GX Cnc |085049.5+121716 |RS | 11.72 |( 0.08 )| |V | | | | | |76092 GSC | +120207 |GY Cnc |090950.6+184947 |UGSU:+E | 12.5 | 17.80 | |V | | | | | |76093 76270| +120208 |GZ Cnc |091551.7+090050 |UG | 13.1 | 15.4 | |V | | | | | |76261 GSC | +120209 |HH Cnc |091650.7+284943 |UGSS | 13.7 | 18. | |V | | | | | |76096 USNO | +120210 |HI Cnc |084118.4+191540 |DSCTC | 7.92 |( 0.01 )| |V | | | | | |77076 DM | +120211 |HK Cnc |085902.6+115628 |RPHS | 13.56 |( 0.04 * )| |V | | | | | |77078 77079| +120212 |HL Cnc |090122.8+104359 |BY | 8.83 | 8.87 | |V | | | | | |77080 DM | +120213 |HM Cnc |080623.0+152732 |XM: | 21.2 |( 1.08 )| |I | | | 0.0037 | | |78105 78105| +120214 |HN Cnc *|081546.8+162156 |EW | 11.13 | 11.54 | 11.53 |V |51968.495 | | 0.494514 | | |78065 GSC | +120215 |HO Cnc |083655.8+231448 |BY | 8.73 |( 0.03 )| |V | | | 5.21 : | |K5Ve |78018 DM | +120216 |HP Cnc |085042.2+075152 |BY | 9.08 |( 0.02 )| |V | | | 11.14 : | |K0V |78018 DM | +120217 |HQ Cnc *|085045.0+114546 |E | 17.77 |( 0.20 )| |V | | | 0.2888 | |A |78113 USNO | +120218 |HR Cnc |085055.0+115651 |RS: | 15.93 |( 0.12 )| |V | | | 3.58 | | |78113 USNO | +120219 |HS Cnc |085104.8+114557 |EW | 13.51 |( 0.14 )| |V | | | 0.35967 | | |78323 GSC | +120220 |HT Cnc *|085107.2+115302 |E: | 12.61 |( 0.06 )| |V | | | 1.44 : | | |78115 GSC | +120221 |HU Cnc *|085113.4+115140 |RS: | 13.45 | 13.61 | |V | | | 23. : | |G8IV |78323 GSC | +120222 |HV Cnc |085118.0+114554 |EA | 12.73 |( 0.00 )| |V |45788.13 | | 10.33813 | | |78311 GSC | +120223 |HW Cnc *|085118.7+114703 |RS: | 12.60 |( 0.07 )| |V | | | 9.2 | | |78115 GSC | +120224 |HX Cnc *|085119.7+115211 |RS: | 13.90 |( 0.08 )| |V | | | 2.6 | | |78115 GSC | +120225 |HY Cnc |085124.1+120131 |RS: | 14.98 |( 0.07 )| |V | | | 2.65 | | |78115 GSC | +120226 |HZ Cnc *|085323.7+164935 |* | 14.1 |( 0.03 )| |R | | | | |sd:B |78116 78009| +120227 |II Cnc |085349.9+265448 |BY | 8.46 |( 0.05 )| |V | | | 8.19 | |G8V |78018 DM | +120228 |IK Cnc |085441.5+163640 |BY | 8.32 |( 0.03 )| |V | | | 9.45 : | |G5V |78018 DM | +120229 |IL Cnc *|085551.5+200339 |EW | 12.35 | 12.96 | 12.88 |* |52721.5705 | | 0.267650 | | |78060 GSC | +120230 |IM Cnc *|085721.0+240651 |EA | 12.82 | 13.6 | 13.5 |V |51603.767 | | 2.35439 | | |78225 GSC | +120231 |IN Cnc *|091614.7+161526 |EB | 11.87 | 12.56 | 12.24 |* |52721.3126 | | 0.50146 | | |78060 GSC | +120232 |IO Cnc *|091716.1+161935 |EW | 13.89 | 14.52 | 14.45 |* |52721.4882 | | 0.34781 | | |78060 GSC | +120233 |IP Cnc |091753.5+283338 |BY | 7.20 |( 0.02 )| |V | | | 43.4 | |K3V |78018 DM | +120234 |IQ Cnc *|092059.2+145725 |EW | 13.05 | 13.45 | 13.44 |* |52678.248 | | 0.53461 | | |78122 GSC | +120235 |IR Cnc |082618.4+231513 |EB | 11.90 | 12.33 | 12.27 |* |51598.746 | | 0.717775 | | |79004 79066| +120236 |IS Cnc |083647.4+065922 |LB | 10.8 | 11.2 | |V | | | | |M3 |79100 79017| +120237 |IT Cnc |084242.6+212457 |EW: | 12.5 | 12.9 | 12.9 |* |51560.714 | | 0.363675 : | | |79004 GSC | +120238 |IU Cnc |090059.1+125852 |EW | 11.80 | 12.36 | 12.32 |* |51630.657 | | 0.4216475 | | |79003 79070| +120239 |IV Cnc *|080159.8+134944 |EW | 15.54 | 16.15 | 16.07 |* |52678.419 | | 0.350335 | | |80164 80164| NL80_2 +120240 |IW Cnc |080453.6+194511 |RRAB | 12.4 | 13.1 | |V |53078.5482 | | 0.603380 |15 | |80002 GSC | NL80_2 +120241 |IX Cnc |080540.0+152259 |DSCT: | 20.4 |( 0.15 : *)| |V | | | | | |80133 USNO | NL80_2 +120242 |IY Cnc |080629.1+154046 |UV: | 22.0 |( 1.0 *)| |I | | | | | |80133 SDSS | NL80_2 +120243 |IZ Cnc |080700.4+151100 |SXPHE | 15.4 |( 0.24 *)| |V | | | 0.04 : | |FV |80133 80174| NL80_2 +120244 |KK Cnc *|080714.3+113811 |UGSU | 13.6 | 20. | |* | | | | |pec(UG) |80233 USNO | NL80_2 +120245 |KL Cnc |080750.6+282108 |RS | 11.6 | 11.8 | |* | | | 3.88535 | | |80067 80067| NL80_2 +120246 |KM Cnc *|080815.9+230410 |EW | 12.6 | 13.1 | 12.8 |* |52707.522 | | 0.536435 | | |80294 GSC | NL80_2 +120247 |KN Cnc |081035.3+274928 |RS | 11.6 | 11.9 | |* | | | 17.737 | | |80060 80060| NL80_2 +120248 |KO Cnc |081116.0+115658 |RV | 11.2 | 11.5 | |V |54467.7 | | 66.25 | | |80297 80297| NL80_2 +120249 |KP Cnc |081427.1+204228 |DSCTC | 7.30 |( 0.04 )| |B | | | 0.12 : | |F2 |80299 HIP | NL80_2 +120250 |KQ Cnc |081636.0+182058 |RRAB | 13.1 | 14.3 | |V |53409.5962 | | 0.66096 |17 | |80001 GSC | NL80_2 +120251 |KR Cnc |082622.6+265946 |EA | 10.36 |( 0.014 )| |Rc|52676.3021 | | 3.35002 |03 |F+G |80305 GSC | NL80_2 +120252 |KS Cnc |082834.2+320404 |RRAB | 14.16 | 15.16 | |* |51623.64 | | 0.53040 |18 | |80026 USNO | NL80_2 +120253 |KT Cnc *|083125.3+114813 |EW | 13.6 | 14.2 | 14.2 : |V |53019.7728 | | 0.3236934 | | |80254 GSC | NL80_2 +120254 |KU Cnc |083526.9+241539 |RS | 11.25 | 11.6 | |V | | | 20.74 | |K7 |80002 GSC | NL80_2 +120255 |KV Cnc *|084002.4+274332 |RRAB | 11.9 | 13.0 | |V |52761.4932 | | 0.50200 |15 | |80026 GSC | NL80_2 +120256 |KW Cnc |084048.0+152452 |RRAB | 14.07 | 15.00 | |* |51555.74 | | 0.60102 |20 | |80026 GSC | NL80_2 +120257 |KX Cnc *|084246.2+315145 |EA | 7.25 |( 0.71 I)|( 0.49I )|V |54182.8146 | | 31.21985 |01 |F8 |80310 HIP | NL80_2 +120258 |KY Cnc *|084416.2+250433 |EA | 10.25 | 10.86 | 10.80 |V |54428.8140 | | 2.3807 |10 | |80002 GSC | NL80_2 +120259 |KZ Cnc |085044.0+114249 |EA | 15.66 | 15.76 | |V |53436.7 | | | | |80314 USNO | NL80_2 +120260 |LL Cnc *|085051.2+192126 |EB | 11.90 | 12.48 | 12.05 |V |53801.542 | | 1.32434 | | |80001 GSC | NL80_2 +120261 |LM Cnc *|085059.8+135745 |EW | 13.2 | 13.6 | 13.6 |V |51397.2637 | | 0.3216105 | | |80282 GSC | NL80_2 +120262 |LN Cnc |085216.8+114832 |EW: | 14.32 | 14.45 | |V | | | 0.54 | | |80314 GSC | NL80_2 +120263 |LO Cnc *|085301.3+120821 |EW | 16.88 | 17.16 | 17.10 |I | | | 0.28 | | |80314 USNO | NL80_2 +120264 |LP Cnc *|085319.0+121003 |EW | 13.12 | 13.26 | 13.25 |I | | | 0.445 | | |80314 GSC | NL80_2 +120265 |LQ Cnc |090002.3+273929 |RRC | 11.7 | 12.2 | |V |53125.4772 | | 0.337429 |43 | |80002 GSC | NL80_2 +120266 |LR Cnc |090347.7+121826 |RS | 12.00 | 12.23 | |* | | | 5.3287 | | |80170 80170| NL80_2 +120267 |LS Cnc *|090404.8+175125 |EW | 15.65 | 16.68 | 16.52 |* |52721.274 | | 0.2876726 | | |80005 80005| NL80_2 +120268 |LT Cnc *|091025.4+120827 |* | 13.9 |( 0.02 )| |R | | | 0.0458 | |sdB |80235 USNO | NL80_2 +120269 |LU Cnc *|091425.9+185354 |EW | 12.1 | 12.60 | 12.55 |V |52733.576 | | 0.3985528 | | |80001 GSC | NL80_2 +120270 |LV Cnc *|091945.3+085711 |ZZ | 18.85 | 19.05 | |* | | | 0.0030 | |pec(e) |80283 USNO | NL80_2 +129010 |kap Cnc *|090744.8+104006 |ACV: | 5.22 | 5.27 | |V |39633.5 | | 5.0035 | |B9IIIp(Hg-Mn) |05339 BD | +130001 |R CVn *|134857.0+393233 |M | 6.5 | 12.9 | |V |43586. | | 328.53 |46 |M5.5e-M9e |00001 00002| +130002 |S CVn |131306.4+372237 |CST | 9.75 | | |V | | | | |K3III |01701 07204| +130003 |T CVn *|123012.4+313012 |M: | 7.6 | 12.6 | |V |42784. | | 290.09 |42 |M6.5e |00001 00002| +130004 |U CVn *|124719.6+382231 |M | 8.8 |< 12.5 | |p |42491. | | 345.65 | |M7e |00001 00583| +130005 |V CVn *|131927.8+453138 |SRA | 6.52 | 8.56 | |V |43929. | | 191.89 |50 |M4e-M6eIIIa: |00001 00002| +130006 |W CVn *|140628.0+374942 |RRAB | 10.03 | 10.96 | |V |21402.4238 | | 0.551759337 |15 |F0-F7 |07366 00884| +130007 |X CVn |140457.3+373651 |CST | 10.8 | | |p | | | | | | GSC | +130008 |Y CVn *|124507.8+452625 |SRB | 7.4 | 10.0 | |p | | | 157. | |C5,4J(N3) |00650 06225| +130009 |Z CVn *|124945.4+434626 |RRAB | 11.46 | 12.36 | |V |38931.371 | | 0.653819 |28 |A8-F5 |07114 06286| +130010 |RR CVn *|122907.5+343850 |RRAB | 11.89 | 13.15 | |V |43670.6126 | | 0.55860758 |15 |A9-F5 |04496 00884| +130011 |RS CVn *|131036.9+355606 |EA/AR/RS | 7.93 | 9.14 | 8.19 |V |22811.6995 | | 4.7978870 |11 |F4IV-V+K0IVe |08623 00462| +130012 |RT CVn |134844.7+334335 |M | 12.0 | 16.0 | |p |34400. | | 253.60 |45 : |M5e |00001 00567| +130013 |RU CVn *|135933.3+313904 |RRAB | 11.36 | 12.48 | |V |34483.467 | | 0.5732449 |16 |A2 |05436 02455| +130014 |RV CVn *|134018.1+281822 |EW/SD: | 15.0 | 16.03 | 15.81 |B |44375.4430 | | 0.2695671 | |F8+G1: |07212 GSC | +130015 |RW CVn |135933.5+371150 |SRB | 10.1 | 11.2 | |p | | | 100. : | |M7III |00231 BD | +130016 |RX CVn *|134842.6+412307 |RRAB | 12.19 | 12.97 | |V |39566.019 | | 0.5400264 |16 | |03271 06286| +130017 |RY CVn |134423.5+333057 |LB | 11.0 | 11.8 | |p | | | | |M4 |00225 00225| +130018 |RZ CVn *|134503.0+323917 |RRAB | 10.88 | 11.92 | |V |40343.851 | | 0.5674110 |17 |A8 |00001 03272| +130019 |SS CVn |134815.9+395403 |RRAB | 11.52 | 12.27 | |V |39622.705 | | 0.4785210 |15 |A0 |00001 03272| +130020 |ST CVn *|135734.1+295129 |RRC | 11.04 | 11.60 | |V |40390.467 | | 0.329045 |43 |A1 |05839 03272| +130021 |SU CVn | | | | | | | | | | | | |=NR UMa +130022 |SV CVn *|123556.0+371225 |RRAB | 12.20 | 13.00 | |V |39952.760 | | 0.668062 |12 |A0 |05274 00228| +130023 |SW CVn *|124055.0+370507 |RRAB | 12.03 | 13.44 | |V |39555.945 | | 0.4416567 |12 |A0 |00001 01332| +130024 |SX CVn |132943.1+452846 |CST: | 10.3 | | |p | | | | |G2 |00001 BD | +130025 |SY CVn |131020.3+470228 |LB | 11. | 12. | |p | | | | |M8 |00922 BD | +130026 |SZ CVn |135044.3+373707 |RRAB | 12.7 | 13.73 | |B |29336.499 | | 0.5496623 |16 | |00001 01709| +130027 |TT CVn |125922.6+374904 |SRB | 10.4 | 11.11 | |B | | | 105. | |C3,5CH(R6p) |07213 BD | +130028 |TU CVn |125456.5+471148 |SRB | 5.55 | 6.6 | |V | | | 50. | |M5III |05429 BD | +130029 |TV CVn |131511.8+421600 |LB | 10.8 | 11.8 | |p | | | | |M5 |00362 00362| +130030 |TW CVn |125921.2+435316 |LB | 11.0 | 12.6 | |p | | | | |M5III |00499 02379| +130031 |TX CVn *|124442.1+364551 |ZAND | 9.2 | 11.8 | |p | | | | |B1-B9Veq+K0III-M4|02626 02626| +130032 |TY CVn |125421.6+321434 |RRAB | 12.6 | 13.9 | |p |35929.430 | | 0.5134427 |10 | |02629 02629| +130033 |TZ CVn |130129.2+320513 |RRAB | 13.5 | 14.8 | |p |35953.324 | | 0.5518794 |18 | |02629 02629| +130034 |UU CVn *|140021.2+292506 |RRAB | 15.0 | 16.0 | |p |39945.444 | | 0.5409529 |17 | |07131 02632| +130035 |UV CVn *|140049.3+281951 |RRAB | 13.4 | 14.9 | |p |36669.502 | | 0.631598 |17 | |07131 02632| +130036 |UW CVn *|140118.7+281224 |SXPHE: | 15.0 | 15.6 | |p |34454.569 | | 0.14623292 |47 | |07131 02632| +130037 |UX CVn *|121448.5+363849 |ELL+E: | 11.73 | 12.00 | 11.94 |U |41096.183 | | 0.573703 | |B3 |06125 04577| +130038 |UY CVn |122453.8+453505 |LB | 10.6 | 11.8 | |p | | | | |M5III |04022 BD | +130039 |UZ CVn |123027.7+403032 |RRAB | 11.3 | 12.0 | |p |26427.3806 | | 0.6977829 |16 |A5-F2 |04171 00819| +130040 |VV CVn *|131741.6+324002 |EA | 14.1 | 14.6 | 14.3 : |p |35550.28 | | 0.5331238 |24 | |04172 04172| +130041 |VW CVn *|132942.2+285249 |EW | 11.4 | 12.6 | 12.4 |p |35923.246 | | 0.850012 | | |04172 04172| +130042 |VX CVn |132940.4+410528 |SRA | 10.2 | 11.5 | |p |26860. | | 360. | |M4 |04109 00174| +130043 |VY CVn |133043.9+374630 |LB | 10.38 | 11.4 | |B | | | | |M5 |04022 BD | +130044 |VZ CVn *|133203.4+283505 |EA/DW | 9.17 | 9.72 | 9.54 |V |38880.5804 | | 0.84246163 |17 *|F2V |05984 00462| +130045 |WW CVn *|133430.9+291815 |RRAB | 13.9 | 15.3 | |p |35614.37 | | 0.523403 |25 | |04176 04176| +130046 |WX CVn |133545.9+315142 |RRAB | 14.9 | 15.8 | |p |36692.348 | | 0.729253 |25 | |04421 04421| +130047 |WY CVn *|134047.6+283327 |RRAB | 15.5 | 16.3 | |p |35600.384 | | 0.6369126 |23 | |07212 04176| +130048 |WZ CVn *|134220.4+275352 |RRAB | 15.4 | 16.7 | |p |38831.440 | | 0.509396 |12 | |06128 06128| +130049 |XX CVn *|134226.8+281113 |RRAB | 15.3 | 16.5 | |B |38106.540 | | 0.513006 |17 : | |06128 04341| +130050 |XY CVn |134801.5+291142 |RRC | 13.5 | 14.5 | |p |35596.296 | | 0.357279 |40 | |04176 04176| +130051 |XZ CVn |134942.4+290541 |RRC | 13.1 | 13.7 | |p |35614.350 | | 0.3280825 |40 | |04176 04176| +130052 |YY CVn |135517.2+294133 |RRAB | 14.9 | 16.4 | |p |36660.52 | | 0.562715 |15 | |04421 04421| +130053 |YZ CVn *|135648.9+284420 |EA/SD | 12.5 | 13.4 |( 0.05 v)|p |44793.446 | | 1.175558 |14 | |00001 04172| +130054 |ZZ CVn |135911.1+452816 |LB | 10.9 | 11.8 | |p | | | | |M7 |04022 00819| +130055 |AA CVn *|120812.9+331949 |RRAB | 16.6 | 17.7 | |p |37370.224 | | 0.667606 |15 |F3-F4 |04650 03950| +130056 |AB CVn |121138.7+332658 |EA | 14.7 | 15.4 | |p |37370.229 | | 1.29006 |20 | |03950 03950| +130057 |AC CVn |121510.2+345440 |RRC | 16.2 | 16.6 | |p |37370.489 | | 0.38403 |38 | |03950 03950| +130058 |AD CVn *|121754.9+342025 |RRAB | 15.7 | 17.0 | |p |37370.602 | | 0.567284 |15 : |A7-F4 |04650 03950| +130059 |AE CVn |122125.9+333341 |RRAB | 16.9 | 17.9 | |p |37370.724 | | 0.561622 |17 | |04650 03950| +130060 |AF CVn *|122214.0+334449 |RRAB | 15.8 | 17.4 | |B |37370.322 | | 0.512780 |20 |F4 |04650 03950| +130061 |AG CVn *|122216.6+334905 |RRAB | 16.5 | 17.5 | |B |37370.172 | | 0.673695 |24 |F5 |04650 03950| +130062 |AH CVn *|122217.3+335743 |RRC | 15.7 | 16.4 | |B |37370.523 | | 0.354365 |40 |F3 |04650 03950| +130063 |AI CVn *|122347.0+423234 |DSCT | 5.89 | 6.15 | |V | | | 0.2085 | |F3IV |04652 BD | +130064 |AK CVn *|122618.0+340831 |RRC | 15.1 | 15.7 | |B |37370.644 | | 0.356213 |45 |F6 |04650 03950| +130065 |AL CVn |122943.9+320549 |RRC: | 17.8 | 18.5 | |p | | | | | |03950 03950| +130066 |AM CVn *|123454.6+373743 |* | 14.10 | 14.18 | |V |43575.72125 | | 0.01216609 | |DBp |04675 03953| +130067 |AN CVn *|125929.0+320210 |RRAB | 15.3 | 16.7 | |B |37351.298 | | 0.595606 : |20 |F5 |04650 03950| +130068 |AO CVn |131732.5+403421 |DSCTC | 4.70 | 4.75 | |V |44381.6675 | | 0.12168 |50 |F3IIIp |04677 BD | +130069 |AP CVn |125110.6+325819 |RRAB | 12.4 | 13.9 | |p |40022.531 | | 0.57465 |16 | |06851 06064| +130070 |AQ CVn *|124341.8+322128 |* | 10.7 | 13.1 | |Y | | | | |A0 |06839 07044| +130071 |AR CVn |134207.2+294556 |RRAB | 18.9 | 19.9 | |B |38521.420 | | 0.62722 |22 : | |06128 06128| +130072 |AS CVn |123055.6+315213 |UV | 12.5 | 15.8 | |p | | | | | |07445 07445| +130073 |AT CVn |121817.0+333956 |RRAB: | 14.7 | 15.4 | |p | | | | | |03950 03950| +130074 |AU CVn |131028.7+322044 |BLLAC | 14.2 | 20.0 | |B | | | | |cont |06541 02629| +130075 |AV CVn |132118.7+435914 |LB | 9.5 | 12.1 | |p | | | | |S2.5,9 |00586 BD | +130076 |AW CVn |135147.5+342639 |SR: | 4.72 | 4.81 | |V | | | | |K5III |04513 BD | +130077 |AX CVn |123916.9+355707 |ACV | 6.32 | 6.55 | |V | | | 4900. | |A0p(Sr-Cr-Eu) |06631 BD | +130078 |AY CVn |120855.8+404942 |RR: | 15.6 | 16.6 | |p | | | | | |08362 08362| +130079 |AZ CVn |121000.5+392640 |L: | 15.9 | 16.8 | |p | | | | | |08362 08362| +130080 |BB CVn |121117.3+394017 |L: | 16.2 | 17.4 | |p | | | | | |08362 08362| +130081 |BC CVn |121206.6+385936 |SRB | 15.5 | 17.4 | |p | | | 122. | | |08362 08362| +130082 |BD CVn |121350.0+420250 |RR: | 15.1 | 16.7 | |p | | | | | |08362 08362| +130083 |BE CVn |121759.7+403310 |IS: | 16.0 | 18.1 | |p | | | | | |08362 08362| +130084 |BF CVn *|125740.3+351330 |BY+UV: | 10.50 | 10.60 | |V | | | 3.17 | |M1.5Ve |02195 06874| +130085 |BG CVn *|130958.6+350946 |ZZA | 15.33 |( 0.09 : )| |V | | | | |DA |08364 02387| +130086 |BH CVn *|133447.8+371057 |RS | 4.94 | 5.01 | |V |43639.52 | | 2.6131738 | |F2IV |08365 BD | +130087 |BI CVn *|130316.4+363701 |EW/KW | 10.26 | 10.71 | 10.70 |V |44365.2497 | | 0.38416 | |G0 |03876 BD | +130088 |BK CVn |131814.5+494055 |ACV | 5.13 |( 0.04 )| |V | | | | | |68036 BD | +130089 |BL CVn |131851.9+332619 |ELL | 8.13 |( 0.24 )| |V | | | | | |68052 BD | +130090 |BM CVn |132132.3+385250 |RS | 7.21 |( 0.06 )| |V | | | | | |68053 BD | +130091 |BN CVn |122936.8+474918 |RR: | 11.5 | 12. | |V | | | | | |70017 70018| +130092 |BO CVn |135908.2+404909 |EW | 9.48 | 10.10 | |V | | | | | |70019 BD | +130093 |BP CVn |124741.5+342254 |SR | 11.9 | 12.8 | |p | | | | | |72022 72027| +130094 |BQ CVn |125903.8+470905 |RS | 7.98 |( 0.09 )| |V | | | | | |73005 BD | +130095 |BR CVn |132305.5+470007 |SRB | 6.58 |( 0.50 )| |V | | | | | |73054 BD | +130096 |BS CVn |120735.4+420415 |LB: | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +130097 |BT CVn |122251.1+500246 |LB: | 9.25 | 9.41 | |Hp| | | | | |HIP HIP | +130098 |BU CVn |122353.9+404310 |LB | 7.90 | 8.20 | |Hp| | | | | |HIP HIP | +130099 |BV CVn |123159.4+432859 |LB | 9.18 | 9.47 | |Hp| | | | | |HIP HIP | +130100 |BW CVn |123214.4+452950 |SRB | 8.66 | 8.82 | |Hp| | | | | |HIP HIP | +130101 |BX CVn |124333.7+411542 |LB | 7.65 | 7.97 | |Hp| | | | | |HIP HIP | +130102 |BY CVn |124637.5+472220 |LB | 7.71 | 7.91 | |Hp| | | | | |HIP HIP | +130103 |BZ CVn |125320.0+463923 |LB | 7.32 | 7.47 | |Hp| | | | | |HIP HIP | +130104 |CC CVn |125859.0+343245 |SRB: | 7.92 | 8.13 | |Hp| | | | | |HIP HIP | +130105 |CD CVn |130002.5+472632 |LB: | 9.48 | 9.64 | |Hp| | | | | |HIP HIP | +130106 |CE CVn |130244.4+452305 |LB | 7.45 | 7.62 | |Hp| | | | | |HIP HIP | +130107 |CF CVn |130320.3+393814 |LB: | 10.34 | 10.48 | |Hp| | | | | |HIP HIP | +130108 |CG CVn |130508.0+483707 |LB: | 9.57 | 9.73 | |Hp| | | | | |HIP HIP | +130109 |CH CVn |131319.8+403339 |LB: | 8.64 | 8.75 | |Hp| | | | | |HIP HIP | +130110 |CI CVn |131333.4+474752 |EA: | 9.36 | 9.87 | |Hp| | | | | |HIP HIP | +130111 |CK CVn |132257.3+513911 |LB: | 7.74 | 7.84 | |Hp| | | | | |HIP HIP | +130112 |CL CVn |132353.9+370202 |LB | 6.10 | 6.20 | |Hp| | | | | |HIP HIP | +130113 |CM CVn |132723.4+390858 |LB: | 8.89 | 9.03 | |Hp| | | | | |HIP HIP | +130114 |CN CVn |132837.8+424534 |LB: | 9.54 | 9.69 | |Hp| | | | | |HIP HIP | +130115 |CO CVn |133012.7+454407 |LB | 7.17 | 7.28 | |Hp| | | | | |HIP HIP | +130116 |CP CVn |133117.2+362849 |LB: | 7.58 | 7.64 | |Hp| | | | | |HIP HIP | +130117 |CQ CVn |133319.8+441734 |LB: | 8.19 | 8.29 | |Hp| | | | | |HIP HIP | +130118 |CR CVn |133738.7+421203 |SRB | 7.55 | 7.68 | |Hp| | | | | |HIP HIP | +130119 |CS CVn *|134011.4+350311 |LB: | 9.13 | 9.25 | |Hp| | | | | |HIP HIP | +130120 |CT CVn |134710.9+474345 |LB | 7.37 | 7.67 | |Hp| | | | | |HIP HIP | +130121 |CU CVn |134820.1+312404 |EW: | 7.56 | 7.61 | |Hp| | | | | |HIP HIP | +130122 |CV CVn |135147.1+394010 |LB: | 7.27 | 7.47 | |Hp| | | | | |HIP HIP | +130123 |CW CVn |135323.1+334712 |SRD | 7.00 | 7.24 | |Hp| | | | | |HIP HIP | +130124 |CX CVn |135955.7+280941 |EA | 9.39 | 9.69 | |Hp| | | | | |HIP HIP | +130125 |CY CVn |140022.4+375216 |LB | 8.09 | 8.47 | |Hp| | | | | |HIP HIP | +130126 |CZ CVn |140626.1+305047 |LB: | 7.69 | 7.83 | |Hp| | | | | |HIP HIP | +130127 |DD CVn |122456.9+425117 |GDOR | 7.15 |( 0.04 )| |V | | | | | |75054 BD | +130128 |DE CVn |132653.4+453247 |E | 13.68 |( 0.13 )| |Rc| | | | | |75055 75055| +130129 |DF CVn |124337.2+384416 |EW | 10.96 | 11.46 | |V | | | | | |76119 76120| +130130 |DG CVn |133146.6+291637 |UV+BY: | 13.52 |( 0.1 )| |B | | | | | |76123 76123| +130131 |DH CVn |122608.0+355559 |EW | 12.72 | 13.24 | |* | | | | | |77099 UCAC2| +130132 |DI CVn |123201.5+353000 |EB: | 13.6 | 14.4 | |V | | | | | |77100 GSC | +130133 |DK CVn |123309.3+375822 |EA | 12.7 | 13.2 : | |V | | | | | |77100 GSC | +130134 |DL CVn |125214.2+385631 |EB | 12.0 | 12.3 | |V | | | | | |77100 GSC | +130135 |DM CVn |133619.3+292341 |EA | 12.5 | 13.2 | |V | | | | | |77100 UCAC2| +130136 |DN CVn |120917.0+333936 |RRC | 14.82 | 15.20 | |V |49043.590 | | 0.3266873 |47 | |78155 GSC | +130137 |DO CVn |123551.3+511317 |BY | 8.52 |( 0.02 )| |V | | | 8.73 | |K0V |78018 DM | +130138 |DP CVn |123617.0+513052 |BY: | 8.58 |( 0.07 )| |V | | | 14.21 | |G5III |78018 DM | +130139 |DQ CVn *|124033.4+342256 |EW | 12.12 | 12.59 | 12.59 |* |53094.6168 | | 0.491421 | | |78264 GSC | +130140 |DR CVn *|124441.8+355756 |EW | 11.62 | 11.92 | 11.92 |* |52715.7932 | | 0.3290529 | | |78264 GSC | +130141 |DS CVn |124716.3+351206 |RRAB | 14.18 | 15.15 | |V |50528.277 | | 0.6184320 |13 | |78264 GSC | +130142 |DT CVn |125010.7+373101 |DSCTC | 6.04 |( 0.03 )| |B | | | 0.114 | |A3V |78037 DM | +130143 |DU CVn *|125140.0+371547 |EW | 14.1 | 14.6 | 14.6 |* |51341.744 | | 0.30725 | | |78161 GSC | +130144 |DV CVn |125351.2+320956 |RRC | 14.75 | 15.30 | |V |48722.690 | | 0.2979233 |35 | |78155 GSC | +130145 |DW CVn |130222.3+372043 |BY: | 8.12 |( 0.04 )| |V | | | | |F8V |78018 DM | +130146 |DX CVn *|130549.2+383706 |EW | 12.25 | 12.71 | 12.68 |* |52694.5006 | | 0.357382 | | |78264 GSC | +130147 |DY CVn *|131047.8+364408 |EW | 13.05 | 13.90 | 13.85 |* |52691.6833 | | 0.2459495 | | |78264 GSC | +130148 |DZ CVn |131703.4+360658 |RRAB | 14.00 | 15.03 | |V |50532.856 | | 0.6773250 |17 | |78155 GSC | +130149 |EE CVn *|133413.8+312126 |EW | 13.7 | 14.5 | 14.4 |* |52691.7085 | | 0.280563 | | |78264 GSC | +130150 |EF CVn *|133638.4+281141 |EW | 13.08 | 13.56 | 13.54 |* |52308.4873 | | 0.2720494 | | |78264 GSC | +130151 |EG CVn |133726.2+373500 |EW | 12.99 | 13.60 | |* |52296.6908 | | 0.349271 | | |78264 GSC | +130152 |EH CVn *|134113.7+314724 |EW | 13.0 | 13.4 | 13.3 |* |51328.7471 | | 0.263587 | | |78161 GSC | +130153 |EI CVn *|140205.6+340240 |EW | 11.82 | 12.60 | 12.50 |* |52694.3796 | | 0.260768 | | |78264 GSC | +130154 |EK CVn |131432.5+342056 |LB: | 9.05 | 9.6 | |* | | | | |M6 |79100 DM | +130155 |EL CVn |132357.0+433555 |EA | 9.42 | 9.59 | 9.50 |V |48331.778 | | 0.795629 |10 |A1V |79006 DM | +130156 |EM CVn |132422.8+480438 |SR | 12.1 | 13.5 | |* |51350. | | 143. | | |79190 79190| +130157 |EN CVn |133205.3+460007 |EA | 10.92 | 11.40 : | 11.4 : |* |51338.725 | | 0.33448 |05 |F7 |79009 DM | +130158 |EO CVn *|122224.7+334615 |EW | 12.25 | 12.56 | 12.53 |* |51628.4660 | | 0.35887 | |F8 |80001 GSC | NL80_2 +130159 |EP CVn |122308.7+452754 |RS | 11.1 | 11.4 | |* | | | 11.80 | | |80158 GSC | NL80_2 +130160 |EQ CVn |122557.8+334651 |EA/RS | 11.97 |( 0.13 *)| |V | | | 1.3636 | |G0V |80021 GSC | NL80_2 +130161 |ER CVn |122751.2+333843 |BY | 11.90 |( 0.10 *)| |V | | | 12.5865 | |M0 |80021 GSC | NL80_2 +130162 |ES CVn |123704.0+374456 |BY | 13.61 |( 0.17 *)| |V | | | 0.7941 | | |80021 GSC | NL80_2 +130163 |ET CVn |124328.0+375736 |RS | 10.7 | 11.0 | |* | | | 11.034 | |K2V: |80370 80370| NL80_2 +130164 |EU CVn |124352.3+473831 |RRAB | 12.93 | 13.58 | |* |51280.84 | | 0.56257 |15 | |80026 GSC | NL80_2 +130165 |EV CVn *|124405.2+371128 |EW | 14.3 | 15.2 | 15.2 |* |51603.7685 | | 0.33599001 | | |80371 GSC | NL80_2 +130166 |EW CVn |124408.5+402330 |BY | 11.28 |( 0.13 *)| |V | | | 2.6454 | |G5 |80021 DM | NL80_2 +130167 |EX CVn *|124427.6+383044 |EW | 13.6 | 14.2 | 14.0 |* |51620.675 | | 0.27716199 | | |80371 GSC | NL80_2 +130168 |EY CVn *|130625.4+342917 |EW | 11.94 | 12.25 | 12.21 |* |53060.5691 | | 0.342687 | | |80378 GSC | NL80_2 +130169 |EZ CVn |131249.3+462829 |LB | 13.1 | 13.8 | |* | | | | | |80062 GSC | NL80_2 +130170 |FF CVn |131926.0+360407 |BY | 11.1 | 11.3 | |* | | | 16.599 | | |80370 80370| NL80_2 +130171 |FG CVn |132426.4+303314 |BY | 9.83 |( 0.03 *)| |V | | | 3.3479 | |F2 |80021 DM | NL80_2 +130172 |FH CVn |132712.1+455826 |BY | 11.38 |( 0.16 *)| |V | | | 2.1838 | | |80021 GSC | NL80_2 +130173 |FI CVn *|132837.3+353312 |EW | 11.90 | 12.02 | 12.00 : |* |51579.42 | | 0.33405 | | |80001 GSC | NL80_2 +130174 |FK CVn |132931.2+293616 |BY | 10.38 |( 0.06 *)| |V | | | 7.9604 | | |80021 GSC | NL80_2 +130175 |FL CVn |133115.8+405657 |RRAB | 14.4 | 15.3 | |* |51422.846 | | 0.51423 |15 | |80205 80205| NL80_2 +130176 |FM CVn |133240.5+284758 |BY | 10.98 |( 0.09 *)| |V | | | 2.4849 | | |80021 DM | NL80_2 +130177 |FN CVn *|133609.3+455941 |EW | 12.15 | 12.45 | 12.4 |* |51479.871 | | 0.61071 | | |80085 80085| NL80_2 +130178 |FO CVn |133722.1+413438 |RRC | 11.05 | 11.2 | |* |51426.808 | | 0.284485 |48 | |80103 80103| NL80_2 +130179 |FP CVn |133924.7+400905 |BY | 11.04 |( 0.03 *)| |V | | | 16.2579 | | |80021 GSC | NL80_2 +130180 |FQ CVn *|134117.7+315430 |EB | 12.97 | 13.40 | 13.23 |* |53094.3741 | | 0.371039 | | |80378 GSC | NL80_2 +130181 |FR CVn |134328.2+391133 |BY | 11.30 | 11.43 | |* | | | 3.079 | | |80001 GSC | NL80_2 +130182 |FS CVn |134330.7+332951 |BY | 11.25 |( 0.10 *)| |V | | | 5.9383 | | |80021 GSC | NL80_2 +130183 |FT CVn |134842.5+415508 |RRAB | 14.5 | 15.9 | |* |51396.56 | | 0.5451 |22 | |80205 80205| NL80_2 +130184 |FU CVn *|135209.7+411742 |EW | 11.15 | 11.55 | 11.5 |* |51430.975 | | 0.96213 | | |80102 80102| NL80_2 +130185 |FV CVn *|135313.7+322247 |EW | 11.77 | 12.15 | 12.10 |* |53117.3815 | | 0.315367 | | |80378 GSC | NL80_2 +130186 |FW CVn *|135418.9+404542 |EW | 9.25 |( 0.07 *)|( 0.05 *)|V | | | 0.3454 | |G0 |80021 DM | NL80_2 +130187 |FX CVn |135552.0+443117 |RRAB | 13.5 | 14.6 | |* |51361.7519 | | 0.54836 |15 | |80297 80297| NL80_2 +130188 |FY CVn *|135642.5+393436 |EW | 13.3 | 13.7 | 13.7 |* |51404.625 | | 0.38610 | | |80102 80102| NL80_2 +130189 |FZ CVn *|135812.2+394434 |EW | 13.5 | 14.0 | 13.8 |* |51404.856 | | 0.35834 | | |80102 80102| NL80_2 +130190 |GG CVn *|135843.3+312510 |EW | 12.93 | 13.37 | 13.33 |* |53502.5459 | | 0.385946 | | |80172 GSC | NL80_2 +130191 |GH CVn *|135920.4+414956 |EW | 13.1 | 13.4 | 13.35 |* |51396.623 | | 0.38136 | | |80102 80102| NL80_2 +130192 |GI CVn *|135951.0+470636 |EW | 14.1 | 14.9 | 14.6 |* |51433.612 | | 0.30316 | | |80102 80102| NL80_2 +130193 |GK CVn *|140048.2+334722 |EB: | 14.4 | 15.5 | 14.7 |* |51428.913 | | 0.40129 | | |80102 80102| NL80_2 +130194 |GL CVn *|140052.8+340057 |EA | 12.3 | 12.8 | 12.55 |* |51429.63 | | 1.8584 |10 | |80107 80107| NL80_2 +130195 |GM CVn *|140146.6+320848 |EW | 10.15 | 10.45 | 10.41 |* |53502.5478 | | 0.366986 | | |80172 GSC | NL80_2 +130196 |GN CVn *|140509.0+385419 |EW | 11.46 | 12.20 | 12.13 |* |53382.6919 | | 0.395010 | | |80172 GSC | NL80_2 +130197 |GO CVn *|140645.5+430644 |EB | 13.5 | 13.9 | 13.7 |* |51389.637 | | 0.53756 | | |80102 80102| NL80_2 +1390012|alf 2 CVn *|125601.7+381906 |ACV | 2.84 | 2.98 | |V |39012.61 | | 5.46939 |60 |B9.5Vp(Si-Cr-Eu) |06632 BD | +140001 |R CMa *|071928.2-162343 |EA/SD | 5.70 | 6.34 | 5.78 |V |44289.361 | | 1.1359405 |15 *|F1V |00001 00010| +140002 |S CMa |070927.7-325537 |CST | 9.0 | | |p | | | | |A5 | CPD | +140003 |T CMa |072125.9-252645 |SR | 9.0 | 11. | |V |23692. | | 309. | | |00147 CoD | +140004 |U CMa |061850.6-261000 |SRA | 10.0 | 12.0 | |p |31437. | | 304.90 |40 |M7e |00001 CoD | +140005 |V CMa |064340.7-314657 |M | 10.3 | 13.3 | |p |31478. | | 242.54 |40 |Me |00001 GSC | +140006 |W CMa |070803.4-115524 |LB | 6.35 | 7.9 | |V | | | | |C6,3(N) |00374 06360| +140007 |X CMa |065645.9-235755 |SRB | 10.0 | 11.2 | |p | | | 106.6 | |M7 |01266 CoD | +140008 |Y CMa |070412.8-163535 |M | 13.0 | 16.2 | |p |26320. | | 406. | |M8e: |00510 USNO | +140009 |Z CMa *|070343.2-113306 |INA | 8.8 | 11.2 | |p | | | | |B8peq |00867 04002| +140010 |RR CMa *|072250.3-163527 |EA/SD | 12.5 | 14.2 | 13.1 |p |25704.282 | | 1.196242 | | |00412 00531| +140011 |RS CMa |072450.2-154807 |LB | 14.0 | 15.1 | |p | | | | |M6.5 |00412 00531| +140012 |RT CMa *|061313.5-173916 |EA/SD | 11.4 | 12.9 | 11.5 |V |26625.547 | | 1.293772 |17 *|F8 |00391 00391| +140013 |RU CMa |062233.6-224129 |EA/SD | 11.3 | 14.6 | |V |26711.342 | | 1.976168 |12 | |00391 00391| +140014 |RV CMa |070040.1-142059 |LB | 10.4 | 11.6 | |p | | | | |M6 |01710 00391| +140015 |RW CMa |071311.7-184351 |DCEP | 11.8 | 12.8 | |p |41042.22 | | 5.729685 |25 |F5-G2 |00001 00391| +140016 |RX CMa *|071351.9-180941 |EA/SD | 11.0 | 13.0 | 11.1 |p |42413.0587 | | 2.0691121 |16 | |08593 00391| +140017 |RY CMa |071637.6-112914 |DCEP | 7.71 | 8.45 | |V |36416.937 | | 4.67825 |24 |F6-G0Ib |02309 00391| +140018 |RZ CMa *|072132.9-164114 |DCEP | 9.36 | 9.97 | |V |36428.062 | | 4.254832 |28 |F6 |00001 00391| +140019 |SS CMa |072607.2-251526 |DCEP | 9.26 | 10.36 | |V |41109.19 | | 12.361 |45 |F6-G2 |00001 01717| +140020 |ST CMa |063222.4-224446 |M | 11. | 15. | |p |39049. | | 288.5 | | |00001 00391| +140021 |SU CMa |070123.3-190246 |M | 10.0 |< 12.9 | |V |26690. | | 248. |32 |M6.5 |00391 00391| +140022 |SV CMa |070125.9-190202 |LB | 10.00 | 11.5 | |V | | | | |M3-M4 |00391 00391| +140023 |SW CMa *|070815.2-222625 |EA/DM | 9.5 | 10.0 | 9.9 |p |26706.177 | | 10.091948 |06 *|A8 |03284 00391| +140024 |SX CMa *|071008.0-161439 |EA/SD | 10.1 | 11.0 | 10.3 |p |28095.400 | | 1.62425838 |22 *|A5: |00007 00391| +140025 |SY CMa |071033.1-195011 |M | 10.4 | 14.3 | |p |38821. | | 220.0 | |M4-6 |00001 00405| +140026 |SZ CMa |071303.7-152444 |EA/SD: | 10.2 | 11.1 | |V |26743.337 | | 2.8560849 |07 *|F8 |01373 00391| +140027 |TT CMa |072202.0-145657 |M | 12.3 | 16.3 | |p |26020. | | 314. | |S |00510 00391| +140028 |TU CMa *|063136.7-240951 |EA | 9.7 | 10.7 | 10.1 |V |26977.445 | | 1.1278041 |16 *| |03285 00391| +140029 |TV CMa |070915.4-134710 |DCEP | 10.16 | 10.96 | |V |40676.34 | | 4.67001 |29 |F5-G2 |00001 00391| +140030 |TW CMa |072202.4-141906 |DCEP | 9.28 | 9.93 | |V |39429.26 | | 6.99507 |31 |F5-F8 |00001 00391| +140031 |TX CMa |061324.6-223252 |EA/SD | 9.6 | 10.8 | |V |42363.504 | | 2.3973893 |10 *|B8 |00001 00391| +140032 |TY CMa |061803.1-162848 |M | 11.5 |< 14. | |p |27699. | | 228. | | |00394 00391| +140033 |TZ CMa |064147.2-194025 |EA | 9.8 | 10.5 | |V |27124.871 | | 1.911446 |17 |A0 |01373 00391| +140034 |UU CMa |065841.5-184848 |EA/SD | 10. | 12.5 | |p |44598.412 | | 2.1664842 |17 *| |00001 00391| +140035 |UV CMa |070507.0-281829 |M | 10.5 |< 14. | |p |27410. | | 340. | |M5-8e |00394 00391| +140036 |UW CMa *|071840.4-243331 |EB/KE: | 4.84 | 5.33 | 5.25 |V |36185.358 | | 4.393407 | |O7Ia:fp+OB |04990 06425| +140037 |UX CMa *|072021.0-121429 |EB/KE | 11.7 | 12.6 | 12.3 |V |26706.235 | | 0.962084 | | |00391 00391| +140038 |UY CMa |061816.4-170235 |SRD | 10.8 | 12.8 | |p | | | 114.6 | |G0 |06107 00368| +140039 |UZ CMa |061847.4-170227 |SRC | 10.18 | 12.3 | |V |29324. | | 82.5 |47 |M6II |00391 00391| +140040 |VV CMa |070641.3-143006 |CEP | 12.2 | 12.8 | |p |26090.220 | | 3.8627 | | |01716 GSC | +140041 |VW CMa *|071225.5-252958 |EB/KE | 9.0 | 9.2 | 9.1 |p |27924.229 | | 0.720831 | | |00435 00435| +140042 |VX CMa |071639.0-221050 |CWB | 15.2 | 16.0 | |p |27831.413 | | 2.04425 |15 | |00435 00435| +140043 |VY CMa *|072258.3-254603 |* | 6.5 | 9.6 | |V | | | | |M5eIbp(C6,3) |06132 06599| +140044 |VZ CMa |072628.3-255536 |DCEPS | 9.15 | 9.60 | |V |26747.14 | | 3.12640 |43 | |01266 00391| +140045 |WW CMa *|061950.9-213907 |S: | 9.16 | 9.57 | |V | | | | |F6-G1 | 00391| +140046 |WX CMa |065520.9-233835 |SR | 14.2 | 15.7 | |p |28190. | | 125. | | |01276 01276| +140047 |WY CMa |071140.1-265840 |CWB | 14.2 | 14.6 | |p |28065.51 | | 1.144379 |30 : | |01276 01276| +140048 |WZ CMa |071849.2-270743 |UGZ: | 14.5 |< 16.0 | |p | | |( 27.1 ) | | | 01276| +140049 |XX CMa |072345.7-195417 |SR | 13.3 | 15.5 | |p |28144. | | 421. | | |01276 01276| +140050 |XY CMa *|070001.9-223126 |EA | 13.3 | 13.9 | |p |28060.751 | | 1.409696 |18 | |01718 01718| +140051 |XZ CMa |070024.8-202554 |CEP | 13.0 | 14.4 | |p |28060.31 | | 2.557705 |26 | |01718 01718| +140052 |YY CMa |070051.9-191432 |EA | 12.3 | 12.7 | |p |28068.441 | | 5.60945 |20 :*| |01279 01279| +140053 |YZ CMa |070053.2-192733 |CWB | 12.8 | 13.9 | |p |28054.65 | | 3.15664 |30 | |01279 01279| +140054 |ZZ CMa *|070147.0-193554 |EA/SD | 12.7 | 13.7 | 13.0 |p |28058.271 | | 2.703849 |19 *| |01279 01279| +140055 |AA CMa |070444.9-243109 |EA/SD | 13.8 | 15.9 | |p |28055.390 | | 1.401912 |16 *| |01279 01279| +140056 |AB CMa |070544.1-185124 |RRAB | 13.5 | 14.5 | |p |28048.337 | | 0.6231735 |15 | |01279 01279| +140057 |AC CMa |070818.0-194002 |EA/SD | 12.8 | 15.3 | |p |28069.195 | | 3.40641 |10 *| |01279 01279| +140058 |AD CMa |071319.5-193043 |EA | 13.5 | 13.7 | |p |28060.944 | | 0.7933136 |21 *| |01718 01718| +140059 |AE CMa *|071349.1-182207 |EA/SD: | 13.1 | 13.8 | |p |28061.153 | | 3.493109 |16 | |01718 01718| +140060 |AF CMa |071522.8-234043 |EA/DS | 12.3 | 15.5 | |p |28073.265 | | 8.38100 |10 | |01279 01279| +140061 |AG CMa |071547.7-260957 |EA/SD | 13.9 | 15.0 | |p |28059.355 | | 2.672654 |10 *| |01718 01718| +140062 |AH CMa |071606.1-270959 |EA/SD | 13.9 |< 15.5 | |p |28059.06 | | 5.50783 |10 : | |01718 01718| +140063 |AI CMa |071640.3-243011 |CEP | 13.1 | 14.6 | |p |28056.43 | | 3.27513 |20 | |01279 01279| +140064 |AK CMa |072002.6-222300 |EA/SD: | 13.1 | 14.1 | |p |28060.924 | | 1.8081903 |15 *| |01279 01279| +140065 |AL CMa |072145.1-263200 |CEP | 13.6 | 14.3 | |p |28059.21 | | 2.82549 |26 | |01279 01279| +140066 |AM CMa |072247.8-264252 |CEP | 13.1 | 14.4 | |p |28060.69 | | 2.54554 |20 | |01718 01718| +140067 |AN CMa *|072307.9-253426 |EA | 14.7 | 15.3 | |p |28050.257 | | 2.416532 |14 | |01279 01279| +140068 |AO CMa *|072440.6-261119 |DCEP | 12.9 | 14.1 | |p |28062.70 | | 5.81634 |28 | |01718 01718| +140069 |AP CMa |072507.8-192856 |EA/SD: | 14.3 | 15.1 | |p |28060.483 | | 2.138104 |13 *| |01718 01718| +140070 |AQ CMa |070401.1-215655 |L | 13.4 | 14. | |p | | | | | |01719 01719| +140071 |AR CMa *|070556.2-244100 |EA | 11.9 | 12.5 | |p |28060.204 | | 1.166069 |15 | |01719 01719| +140072 |AS CMa *|070603.2-224930 |EA/SD: | 14.7 | 15.6 | |p |28059.871 | | 1.180968 |14 | |01719 01719| +140073 |AT CMa |070651.8-255840 |EA/DS | 12.5 | 14.1 | |p |28054.256 | | 10.0628 |10 :*| |01719 01719| +140074 |AU CMa |070842.9-185632 |EA/DS: | 14.3 |< 15.0 | |p |28053.170 | | 12.8861 |10 | |01719 01719| +140075 |AV CMa |070830.0-233430 |SR | 14.9 | 16.0 | |p |28090. | | 160. | | |01719 01719| +140076 |AW CMa |070842.9-231520 |M: | 14.6 |< 16.0 | |p |28187. | | 295. | | |01719 01719| +140077 |AX CMa |071345.0-245426 |EA/SD | 14.5 |< 16.0 | |p |28060.496 | | 2.622513 |16 | |01719 01719| +140078 |AY CMa |071644.6-223613 |EA/SD | 12.9 | 14.6 | |p |28055.829 | | 7.37793 |09 *| |01719 01719| +140079 |AZ CMa |072016.1-213925 |EA/SD: | 15.2 |< 16.0 | |p |28057.459 | | 4.78159 | | |01719 01719| +140080 |BB CMa |072046.9-244227 |L | 13.7 | 15.5 | |p | | | | | |01719 01719| +140081 |BC CMa |072107.5-213038 |CEP | 13.8 | 14.6 | |p |28052.48 | | 4.17540 |20 | |01719 01719| +140082 |BD CMa |072106.2-260215 |EA/GS: | 13.0 | 13.6 | |p |28076.89 | | 44.446 |07 *| |01719 01719| +140083 |BE CMa |072338.6-225811 |LB | 11.0 | 12.3 | |p | | | | |C5,5J(N) |01719 01719| +140084 |BF CMa |072518.4-183257 |SRA | 14.5 | 16.0 | |p |28200. | | 650. | |M6.5 |01719 01719| +140085 |BG CMa |065604.0-253901 |EA/SD: | 13.7 | 14.6 | |p |28061.278 | | 1.739225 |20 *| |01342 01342| +140086 |BH CMa |065918.2-233239 |M: | 14.1 |< 15.5 | |p |28520. | | 279. | | |01720 USNO | +140087 |BI CMa |070243.4-235231 |M | 13.5 |< 15.5 | |p |27891. | | 131. | |M5e |01720 GSC22| +140088 |BK CMa |070329.0-224843 |L | 14.2 |< 15.5 | |p | | | | | |01720 USNO | +140089 |BL CMa |070505.8-234657 |EA/SD: | 14.8 |< 15.5 | |p |28065.253 | | 4.02299 |18 | |01342 01342| +140090 |BM CMa |070531.4-215456 |EA/SD | 14.5 |< 16.5 | |p |28064.092 | | 5.12231 |12 | |01342 01342| +140091 |BN CMa *|071038.9-253922 |EA/SD | 14.8 | 15.8 | 14.9 |p |28060.962 | | 0.6282793 |20 *| |01342 01342| +140092 |BO CMa |071348.9-194127 |SRB | 13.5 | 14.7 | |p | | | 420. : | |C5,4(N) |00001 02353| +140093 |BP CMa |071519.7-220047 |M | 13.5 |< 15.5 | |p |27830. | | 450. | | |01720 USNO | +140094 |BQ CMa *|071509.3-254658 |M | 12.2 | 15.2 | |p |28095. | | 351. | | |01720 02385| +140095 |BR CMa |071629.9-242053 |L | 13.3 | 14.9 | |p | | | | | |01720 USNO | +140096 |BS CMa *|071625.1-254830 |EB/KE | 14.4 | 14.6 | 14.5 |p |28066.993 | | 0.5599411 | | |01342 01342| +140097 |BT CMa |071914.9-210753 |M | 13.2 |< 15.5 | |p |27690. | | 300. | | |01720 GSC | +140098 |BU CMa |071924.8-193529 |EA/SD: | 15.0 | 16.0 | |p |28052.775 | | 3.70043 |10 *| |01342 01342| +140099 |BV CMa |072030.8-191301 |LB | 14.7 | 15.3 | |p | | | | |C(N) |01720 GSC | +140100 |BW CMa |072208.0-183819 |RRAB | 12.9 | 14.5 | |p |28060.743 | | 0.5268024 |20 : | |01342 02342| +140101 |BX CMa |072505.9-203345 |SRB | 12.7 | 13.7 | |p |28245. | | 117. | |S |01720 GSC | +140102 |BY CMa |072629.4-275530 |CEP | 13.0 | 14.4 | |p |28067.564 | | 3.184580 |20 | |01342 01342| +140103 |BZ CMa |065645.4-255342 |M: | 14.0 |< 15.5 | |p |27840. | | 320. | |S |00406 00406| +140104 |CC CMa *|065858.5-234925 |SR | 13.1 | 14.2 | |p | | | 120. : | | |00001 01349| +140105 |CD CMa |070044.9-244149 |L | 13.5 | 14.5 | |p | | | | | |01349 01349| +140106 |CE CMa *|070248.8-225135 |EA/GS: | 12.8 | 13.4 | 13.3 |p |28096.021 | | 27.0711 |05 :*| |01721 01721| +140107 |CF CMa |070252.3-261703 |SR | 13.6 | 14.1 | |p |28135. :| | 55. : | | |00406 00406| +140108 |CG CMa |070405.3-234534 |N: | 13.7 |< 15.7 | |p |27450. :| | | | |01350 01350| +140109 |CH CMa *|070427.4-242934 |EA/KE | 12.8 | 13.2 | 12.9 |p |28094.083 | | 0.860963 |19 | |01349 01349| +140110 |CI CMa |070449.8-271720 |EA/SD: | 13.8 | 14.4 | |p |28095.098 | | 2.954456 |14 *| |00405 00405| +140111 |CK CMa *|070652.1-235653 |EA/SD | 15.0 | 16.2 | 15.4 |p |28080.653 | | 1.092208 |19 | |00406 00406| +140112 |CL CMa |070727.4-253844 |M: | 14.0 |< 15.5 | |p |28100. | | 380. | | |00001 00406| +140113 |CM CMa *|070913.0-183841 |EB/KE | 13.0 | 13.4 | 13.1 |p |28097.800 | | 0.5309208 | | |01350 01350| +140114 |CN CMa |070934.6-183348 |CWB: | 14.1 | 15.1 | |p |28079.23 | | 2.54612 |28 | |01349 01349| +140115 |CO CMa *|071401.0-260635 |SRB | 9.7 | 10.5 | |p | | | 80. : | |M3e |00001 CoD | +140116 |CP CMa |071454.4-221409 |CEP | 13.2 | 14.3 | |p |28089.89 | | 4.84569 |23 | |01349 01349| +140117 |CQ CMa |071552.1-192011 |SRB | 12.5 | 13.1 | |p |28138. | | 67. | |M6 |01349 01349| +140118 |CR CMa *|071802.1-194058 |EB/SD | 12.1 | 13.1 | 12.4 |p |28094.488 | | 0.6241424 | | |01349 01349| +140119 |CS CMa |071804.8-183726 |SRB | 11.7 | 13.0 | |p | | | 180. : | |M3-M4 |01350 02360| +140120 |CT CMa |071756.5-261736 |EA/SD | 12.3 | 14.0 | |p |28096.374 | | 1.7512889 |17 *| |00406 00406| +140121 |CU CMa |071858.7-183409 |EA | 14.3 | 14.7 | |p |28061.935 | | 0.6589195 |15 *| |00406 00406| +140122 |CV CMa *|071923.5-184239 |EA/DM | 13.0 | 13.6 | 13.5 |p |28044.810 | | 3.62833 |09 | |01721 01721| +140123 |CW CMa *|072152.5-234737 |EA/DM | 8.58 | 8.98 | 8.94 |V |42090.1657 | | 2.11797737 |09 *|A0V |05016 CoD | +140124 |CX CMa *|072201.0-255236 |EB/KE | 9.9 | 10.6 | 10.3 |p |28095.601 | | 0.954608 | | |00406 00391| +140125 |CY CMa |072302.7-252813 |SRA | 11.6 | 12.6 | |p |28157. | | 117. | |M6 |00406 00406| +140126 |CZ CMa |072357.0-185605 |EA | 13.4 | 13.7 | |p |28078.738 | | 0.694820 |20 : | |01349 01349| +140127 |DD CMa *|072408.7-191047 |EA/SD | 11.6 | 12.4 | 11.8 |p |28095.663 | | 2.0083807 |16 | |00406 00406| +140128 |DE CMa *|072509.8-271918 |EA/KE | 13.0 | 13.6 | 13.4 |p |28083.933 | | 0.6959640 |18 | |01349 01349| +140129 |DF CMa |064453.6-211647 |M | 13.5 |< 15.5 | |p | | | | | |00085 02352| +140130 |DG CMa |064613.1-184544 |M | 13. |< 16. | |p | | | 200. : | | |00085 02352| +140131 |DH CMa |064641.0-124519 |M: | 14.5 |< 16. | |p | | | | | |00085 02352| +140132 |DI CMa |064722.6-123948 |M | 13. |< 16.5 | |p | | | | |M2 |00085 02359| +140133 |DK CMa |064906.3-134620 |M: | 14.5 |< 16. | |p | | | | |S: |00085 02352| +140134 |DL CMa |065148.6-190218 |M | 11.8 |< 16. | |p |34399. | | 345. : | |M7e |03122 02353| +140135 |DM CMa |065247.2-142127 |M | 13.5 |< 16. | |p | | | | |M0: |00085 02359| +140136 |DN CMa |065517.5-164753 |M | 12.8 |< 16. | |p | | | | |M8 |00085 02353| +140137 |DO CMa |072203.9-161318 |EA/SD | 14.0 | 15.9 | |p |26391.368 | | 2.725258 |17 | |00412 02342| +140138 |DP CMa |072359.2-171258 |EA/SD | 13.0 | 14.5 | |p |28884.128 | | 3.388943 |12 | |03289 02342| +140139 |DQ CMa |072502.9-161942 |EA: | 14.8 |< 15.8 | |p |30326.564 | | | | |00412 02360| +140140 |DR CMa |072224.1-151933 |LB | 13.4 | 14.2 | |p | | | | |M5 |00412 00975| +140141 |DS CMa *|072409.8-151454 |M | 13.6 |< 17. | |p |25296. | | 468. | |M4 |00412 02311| +140142 |DT CMa |071741.0-141259 |LB | 12.6 | 14.1 | |p | | | | |MS |00412 02342| +140143 |DU CMa |071825.2-171531 |SRA | 12.3 | 14.0 | |p |31490. | | 252.8 | |M6.5 |00412 02360| +140144 |DV CMa *|071917.4-141905 |SR | 14.2 | 15.4 | |p | | | 350. : | | |00412 02342| +140145 |DW CMa |071935.9-173919 |L | 12.8 | 13.6 | |p | | | | |ea |00412 02342| +140146 |DX CMa |072443.9-125800 |LB | 13.4 | 14.7 | |p | | | | |M4 |00412 02342| +140147 |DY CMa |064237.6-142719 |SR | 10.5 | 12. | |p | | | | |M7 |00415 02352| +140148 |DZ CMa |071659.3-151825 |DCEP | 12.6 | 13.5 | |p |26352.17 | | 1.75434 |40 |G0 |03148 02311| +140149 |EE CMa |072311.8-151932 |EA/SD: | 13.8 | 14.8 | |p |25623.511 | | 0.89309 |08 *| |03148 02342| +140150 |EF CMa *|072437.7-172919 |EA/DS | 11.3 | 12.1 | |p |25647.00 | | 59.36 |07 : | |05283 00132| +140151 |EG CMa |061727.6-213629 |EA/SD | 10.5 | 12. | |p |25623.410 | | 1.83783 | | |05018 01111| +140152 |EH CMa |061712.5-310147 |M | 10.5 | 13.5 | |p |34393. | | 290. | |M8e |00829 00829| +140153 |EI CMa |063529.4-175520 |EA | 14. | 15. | |p | | | | | |04065 04065| +140154 |EK CMa |063649.6-150627 |EA | 15. | 16. | |p | | | | | |04065 04065| +140155 |EL CMa |063739.0-200113 |EA | 13.5 | 14.5 | |p | | | | | |04065 04065| +140156 |EM CMa |064049.5-134655 |M: | 14.5 |< 17. | |p | | | | | |04065 04065| +140157 |EN CMa |064054.0-192346 |RR | 15. | 16. | |p | | | | | |04065 04065| +140158 |EO CMa |064423.0-204937 |M | 15.5 |< 19. | |p | | | | | |04065 04065| +140159 |EP CMa |064643.0-154203 |M | 13.0 |< 17. | |p | | | | | |04065 04065| +140160 |EQ CMa |064851.6-161804 |EA | 13.5 | 15. | |p | | | | | |04065 04065| +140161 |ER CMa |065201.1-124543 |IS: | 15. | 16. | |p | | | | | |04065 04065| +140162 |ES CMa |065628.8-161106 |EA | 16. | 17.5 | |p | | | | | |04065 04065| +140163 |ET CMa |065646.0-153816 |RR | 14.5 | 15.5 | |p | | | | | |04065 04065| +140164 |EU CMa |070540.3-160845 |UG | 16.5 |< 19. | |p | | | | | |04065 04065| +140165 |EV CMa |071934.1-194808 |EA/SD: | 14.8 | 15.5 | |p |29338.668 | | 4.171548 |14 : | |04117 04117| +140166 |EW CMa *|071415.2-262109 |GCAS | 4.42 | 4.82 | |V | | | | |B3IVe |08419 CoD | +140167 |EX CMa *|065143.2-132950 |EA: | 14.5 | 15. | |p |37974. | | | | |04065 04065| +140168 |EY CMa *|065332.9-201327 |BCEP | 4.79 | 4.84 | |V |41296.1640 | | 0.184557 |50 |B1III-IV |07243 BD | +140169 |EZ CMa *|065413.1-235542 |WR | 6.71 | 6.95 | |V |43200.47 | | 3.763 | |WN5 |05019 CoD | +140170 |FF CMa *|071030.6-303945 |EB/KE | 7.38 | 7.74 | 7.6 |V |28847.465 | | 1.213375 | |B2V+B2V |05284 CoD | +140171 |FG CMa |063612.4-195214 |LB: | 14. | 15. | |p | | | | | |05515 05515| +140172 |FH CMa |063619.7-303436 |M: | 11.5 |< 12.5 | |p | | | | |M7 |00085 CoD | +140173 |FI CMa |063933.6-132717 |SR: | 14. | 15. | |p | | | | | |05515 05515| +140174 |FK CMa |065350.2-134416 |EA | 16. | 17.5 | |p |38000.59 | | | | |05515 05515| +140175 |FL CMa |070002.9-140939 |DCEP: | 13.3 | 14.0 : | |V |54213.496 | | 2.7816 |25 : | |00001 05515| +140176 |FM CMa *|070542.1-124843 |EB/DM | 7.28 | 7.50 | |V | | | 2.7888 | |B1V |06135 08087| +140177 |FN CMa *|070640.8-111739 |BCEP | 5.38 | 5.42 | |V | | | 0.12377 | |B0III |05522 06633| +140178 |FO CMa |070833.9-162812 |EA | 16. | 17. | |p |38001.52 | | | | |05515 05515| +140179 |FP CMa |071012.2-153205 |E | 14.5 | 15. | |p | | | | | |05515 05515| +140180 |FQ CMa *|070443.8-284355 |EB | 9.6 | 10.2 | 9.7 |p |38433.400 | | 2.652 | | |05843 CoD | +140181 |FR CMa *|062124.7-114624 |GCAS | 5.46 | 5.64 | |V | | | | |B1Vpe |06311 BD | +140182 |FS CMa *|062817.4-130311 |* | 7.55 | 8.58 | |V | | | | |B2IVep |06312 BD | +140183 |FT CMa *|064428.5-310414 |GCAS | 5.13 | 5.44 | |V | | | | |B2Ve |08419 CoD | +140184 |FU CMa *|070019.4-220709 |GCAS | 6.48 | 6.60 | |V | | | | |B3IV-Vne |06311 BD | +140185 |FV CMa |070722.6-235027 |GCAS | 5.64 | 5.94 | |V | | | | |B2IV-Ve |08419 CoD | +140186 |FW CMa *|072440.2-161205 |GCAS | 5.00 | 5.50 | |V | | | | |B3Ve |08419 BD | +140187 |FX CMa |072703.9-114314 |SRB | 8.56 | 8.86 | |V | | | 40. : | |S3,9(C1) |06059 BD | +140188 |FY CMa |072659.5-230510 |GCAS | 5.54 | 5.69 | |V | | | | |B0IVpe |08419 BD | +140189 |FZ CMa *|070242.6-112712 |EA/DM | 8.05 | 8.44 | 8.44 |V |41742.324 | | 1.27306 |16 *|B2.5IV-Vn |07045 07045| +140190 |GG CMa *|071347.2-310501 |ELL+BCEP: | 6.55 | 6.61 | |V | | | | |B2IV |06840 CoD | +140191 |GH CMa |072223.1-203024 |SRB | 6.82 | 7.19 | |V | | | 20. : | |M6III |06645 BD | +140192 |GI CMa |064743.0-134000 |RRAB | 12.1 | 13.4 | |p |38739.506 | | 0.452239 | | |07446 07446| +140193 |GK CMa |063615.5-165451 |M | 13.5 | 16. | |p | | | | |M4e |00085 02359| +140194 |GL CMa |063828.4-165613 |L: | 13.5 | 14.5 | |p | | | | | |00085 02352| +140195 |GM CMa |064115.1-221643 |SR: | 14.8 | 15.8 | |p | | | | |C |04579 GSC | +140196 |GN CMa |064227.4-190050 |LB | 12. | 13. | |p | | | | |M7 |00085 02352| +140197 |GO CMa |064615.5-125253 |LB: | 13. | 14. | |p | | | | |C(N) |00085 02352| +140198 |GP CMa |065246.0-120955 |LB: | 9. | 12.1 | |V | | | | |Cea: |00685 00685| +140199 |GQ CMa |065401.1-131309 |LB: | 13. | 14. | |p | | | | |M6.5 |00085 02353| +140200 |GR CMa |065507.0-140933 |LB | 13. | 14. | |p | | | | |M7 |00085 02353| +140201 |GS CMa |065540.8-165149 |LB: | 13. | 14. | |p | | | | |M7 |00085 02353| +140202 |GT CMa |065944.7-161018 |LB: | 14. | 16. | |p | | | | |M9: |00085 02359| +140203 |GU CMa *|070149.5-111803 |GCAS | 6.49 | 6.72 | |V | | | | |B2Vne |07824 06633| +140204 |GV CMa |070814.0-183033 |L | 11.5 | 12.5 | |p | | | | | |00085 02353| +140205 |GW CMa |071107.9-290717 |LB | 11. | 12. | |p | | | | |M5 |00085 CoD | +140206 |GX CMa |071200.4-192037 |L | 13.5 | 14.5 | |p | | | | | |00085 02353| +140207 |GY CMa *|071336.5-272123 |BCEP: | 6.12 |( 0.04 )| |V | | | 0.112 | |B0.5V |06840 CoD | +140208 |GZ CMa *|071619.2-164300 |EA/DM | 8.1 | 8.7 | |p |38814.273 | | 4.801052 |07 |A0 |04514 BD | +140209 |HH CMa |065714.8-221210 |BCEP | 6.59 | 6.66 | |V | | | 0.19 | |B2III |08115 CoD | +140210 |HI CMa |071245.5-153007 |GCAS | 7.8 |( 0.4 )| |p | | | | |B2IIIe |05857 BD | +140211 |HK CMa *|064701.5-210055 |ACV | 6.06 | 6.09 | |Y |42818.88 | | 2.181 | |B9p |08054 BD | +140212 |HL CMa *|064517.2-165135 |UGSS+XM | 10.0 | 14.5 | |V | | |( 15. ) | |pec(UG) |03886 03886| +140213 |HM CMa |064519.0-164809 |UV | 8.9 | 11.97 | |V | | | | | |67056 67056| +140214 |HN CMa |071224.2-272829 |DSCTC | 6.61 |( 0.025 )| |V | | | | | |67057 CoD | +140215 |HO CMa |071313.1-305759 |E: | 7.55 | 8.62 | |V | | | | | |67058 CoD | +140216 |HP CMa |064531.2-305656 |GCAS | 5.48 | 5.80 | |V | | | | | |68296 CoD | +140217 |HQ CMa |072054.9-265750 |EA | 6.01 | 6.27 | |V | | | | | |68298 CoD | +140218 |HR CMa |063246.9-110959 |EA/GS | 6.24 | 6.32 | |V | | | | | |71065 BD | +140219 |HS CMa |063341.3-180739 |M | 9.8 | 14.0 | |V | | | | | |71066 71066| +140220 |HT CMa |070242.5-112612 |IA | 11.87 | 12.24 | |V | | | | | |72028 72029| +140221 |HU CMa |070406.7-112609 |IA | 11.61 | 12.05 | |V | | | | | |72028 72029| +140222 |HV CMa |070505.8-150058 |M | 7.10 | 9.93 | |J | | | | | |72007 72142| +140223 |HW CMa |070821.9-222430 |EA | 9.19 |( 0.13 )| |y | | | | | |72030 BD | +140224 |HX CMa |071204.1-201717 |M | 6.94 | 8.62 | |J | | | | | |72007 72031| +140225 |HY CMa |061238.8-164836 |E/RS | 9.26 | 9.84 | |V | | | | | |73055 BD | +140226 |HZ CMa |065023.4-314222 |ELL | 5.69 | 5.82 | |y | | | | | |73056 CoD | +140227 |II CMa |065736.4-131436 |EW | 15.22 | 15.74 | |V | | | | | |73057 73057| +140228 |IK CMa |065742.2-131314 |EW | 18.00 | 18.43 | |V | | | | | |73057 73057| +140229 |IL CMa |070600.5-303921 |E+LPB: | 6.32 | 6.54 | |V | | | | | |73058 CoD | +140230 |IM CMa |071853.2-245723 |ELL: | 10.52 | 10.58 | |b | | | | | |73059 73060| +140231 |IN CMa |072048.0-314703 |NL | 14.64 | 14.89 | |V | | | | | |73061 USNO | +140232 |IO CMa |061222.4-302853 |EA | 8.46 | 8.71 | |Hp| | | | | |HIP HIP | +140233 |IP CMa |061246.3-174548 |LPB | 6.44 | 6.48 | |Hp| | | | | |HIP HIP | +140234 |IQ CMa |061237.3-251607 |EB | 9.24 | 9.63 | |Hp| | | | | |HIP HIP | +140235 |IR CMa |061419.0-193131 |SRB | 7.56 | 7.70 | |Hp| | | | | |HIP HIP | +140236 |IS CMa |062056.4-294015 |EW | 6.96 | 7.44 | |Hp| | | | | |HIP HIP | +140237 |IT CMa |062158.2-262211 |LPB | 7.82 | 7.86 | |Hp| | | | | |HIP HIP | +140238 |IU CMa *|062347.6-194707 |ACV: | 6.55 | 6.58 | |Hp| | | | | |HIP HIP | +140239 |IV CMa |062339.1-270357 |SRC | 8.21 | 8.75 | |Hp| | | | | |HIP HIP | +140240 |IW CMa |062540.5-294211 |E: | 6.88 | 6.96 | |Hp| | | | | |HIP HIP | +140241 |IX CMa |062805.6-270837 |EB | 7.77 | 7.84 | |Hp| | | | | |HIP HIP | +140242 |IY CMa |062839.2-322217 |E: | 5.64 | 5.72 | |Hp| | | | | |HIP HIP | +140243 |IZ CMa |062912.0-260708 |SRB | 7.85 | 8.03 | |Hp| | | | | |HIP HIP | +140244 |KK CMa |063026.6-150608 |EB | 8.17 | 8.26 | |Hp| | | | | |HIP HIP | +140245 |KL CMa |063029.8-145716 |EA | 6.73 | 6.97 | |Hp| | | | | |HIP HIP | +140246 |KM CMa |063124.0-325207 |LB | 6.24 | 6.50 | |Hp| | | | | |HIP HIP | +140247 |KN CMa |063234.5-231108 |SRD: | 8.65 | 8.72 | |Hp| | | | | |HIP HIP | +140248 |KO CMa |063346.2-303458 |LB | 8.06 | 8.48 | |Hp| | | | | |HIP HIP | +140249 |KP CMa |064557.9-284844 |LPB | 7.58 | 7.63 | |Hp| | | | | |HIP HIP | +140250 |KQ CMa |064747.1-221010 |ACV | 8.24 | 8.29 | |Hp| | | | | |HIP HIP | +140251 |KR CMa |064850.6-202532 |SRB | 8.08 | 8.40 | |Hp| | | | | |HIP HIP | +140252 |KS CMa |064915.9-124005 |BE | 7.25 | 7.37 | |Hp| | | | | |HIP HIP | +140253 |KT CMa |064950.3-113024 |E: | 9.37 | 9.61 | |Hp| | | | | |HIP HIP | +140254 |KU CMa |065026.5-140648 |BE | 7.93 | 8.10 | |Hp| | | | | |HIP HIP | +140255 |KV CMa |065052.7-205437 |E: | 7.09 | 7.14 | |Hp| | | | | |HIP HIP | +140256 |KW CMa |065141.4-234810 |ACV | 7.55 | 7.59 | |Hp| | | | | |HIP HIP | +140257 |KX CMa |065300.3-265728 |LB | 6.07 | 6.37 | |Hp| | | | | |HIP HIP | +140258 |KY CMa |065302.0-314651 |LB | 10.46 | 11.00 | |Hp| | | | | |HIP HIP | +140259 |KZ CMa |065352.2-131109 |BE | 8.66 | 8.77 | |Hp| | | | | |HIP HIP | +140260 |LL CMa |065435.9-175502 |BE | 7.36 | 7.64 | |Hp| | | | | |HIP HIP | +140261 |LM CMa |065511.7-215219 |ACYG: | 8.64 | 8.70 | |Hp| | | | | |HIP HIP | +140262 |LN CMa |065712.5-302937 |LB: | 9.15 | 9.26 | |Hp| | | | | |HIP HIP | +140263 |LO CMa |065844.5-203655 |SRB: | 7.75 | 7.86 | |Hp| | | | | |HIP HIP | +140264 |LP CMa |065946.5-161203 |BE | 9.20 | 9.31 | |Hp| | | | | |HIP HIP | +140265 |LQ CMa |065944.5-282359 |BE: | 7.12 | 7.26 | |Hp| | | | | |HIP HIP | +140266 |LR CMa |070051.1-233548 |ACYG: | 9.26 | 9.35 | |Hp| | | | | |HIP HIP | +140267 |LS CMa |070106.0-251256 |E: | 5.57 | 5.60 | |Hp| | | | | |HIP HIP | +140268 |LT CMa |070402.6-121717 |EA | 7.38 | 7.56 | |Hp| | | | | |HIP HIP | +140269 |LU CMa |070500.2-313134 |LB: | 7.75 | 7.87 | |Hp| | | | | |HIP HIP | +140270 |LV CMa |070630.5-113216 |EB | 8.65 | 8.83 | |Hp| | | | | |HIP HIP | +140271 |LW CMa |070709.6-293222 |SRB: | 7.38 | 7.50 | |Hp| | | | | |HIP HIP | +140272 |LX CMa |070827.7-183611 |LB: | 7.28 | 7.31 | |Hp| | | | | |HIP HIP | +140273 |LY CMa |070937.0-160547 |GCAS | 8.99 | 9.27 | |Hp| | | | | |HIP HIP | +140274 |LZ CMa |070943.0-251352 |EB: | 5.63 | 5.66 | |Hp| | | | | |HIP HIP | +140275 |MM CMa |071212.2-255633 |LPB | 5.84 | 5.87 | |Hp| | | | | |HIP HIP | +140276 |MN CMa |071419.9-152344 |BE | 9.53 | 9.70 | |Hp| | | | | |HIP HIP | +140277 |MO CMa *|071435.1-172319 |I: | 11.13 | 11.53 | |Hp| | | | | |HIP HIP | +140278 |MP CMa |071448.3-210127 |EB | 8.30 | 8.48 | |Hp| | | | | |HIP HIP | +140279 |MQ CMa |071534.7-272522 |LB: | 8.16 | 8.31 | |Hp| | | | | |HIP HIP | +140280 |MR CMa |071558.7-175406 |ACV | 8.99 | 9.08 | |Hp| | | | | |HIP HIP | +140281 |MS CMa |071606.9-302607 |EA | 7.08 | 7.20 | |Hp| | | | | |HIP HIP | +140282 |MT CMa |071630.1-295615 |LB: | 8.23 | 8.35 | |Hp| | | | | |HIP HIP | +140283 |MU CMa |071809.6-153742 |BE: | 8.94 | 9.04 | |Hp| | | | | |HIP HIP | +140284 |MV CMa |071809.9-300505 |EB | 9.74 | 10.08 | |Hp| | | | | |HIP HIP | +140285 |MW CMa |071838.5-291745 |ACV | 8.66 | 8.79 | |Hp| | | | | |HIP HIP | +140286 |MX CMa |071912.8-245721 |EB | 6.74 | 6.81 | |Hp| | | | | |HIP HIP | +140287 |MY CMa |072007.2-201958 |LB: | 10.49 | 10.76 | |Hp| | | | | |HIP HIP | +140288 |MZ CMa |072104.3-255330 |SRB | 5.87 | 5.95 | |Hp| | | | | |HIP HIP | +140289 |NN CMa |072243.3-260041 |GCAS | 7.05 | 7.30 | |Hp| | | | | |HIP HIP | +140290 |NO CMa *|072300.7-315526 |BE: | 5.33 | 5.38 | |Hp| | | | | |HIP HIP | +140291 |NP CMa |072319.3-300441 |BE | 8.99 | 9.16 | |Hp| | | | | |HIP HIP | +140292 |NQ CMa |072420.7-263028 |BE: | 9.81 | 10.12 | |Hp| | | | | |HIP HIP | +140293 |NR CMa |072708.0-175154 |DSCTC | 5.67 | 5.70 | |Hp| | | | | |HIP HIP | +140294 |NS CMa |062909.5-311533 |EA | 14.00 | 16.71 | |V | | | | | |75056 GSC | +140295 |NT CMa |062933.6-311758 |RRAB | 16.79 | 17.83 | |V | | | | | |75056 75057| +140296 |NU CMa |062933.7-311702 |EW | 17.72 | 18.08 | |V | | | | | |75056 75057| +140297 |NV CMa |062935.6-311655 |EA | 16.27 | 16.95 | |V | | | | | |75056 75057| +140298 |NW CMa |062944.9-311819 |EW | 16.56 | 16.95 | |V | | | | | |75056 75057| +140299 |NX CMa |062956.1-312019 |EA | 16.20 | 16.47 | |V | | | | | |75056 USNO | +140300 |NY CMa |064023.1-125307 |SR: | 13.0 | 14.4 | |p | | | | | |75002 GSC | +140301 |NZ CMa |064223.3-222138 |LPB | 8.82 | 8.90 | |Hp| | | | | |75030 BD | +140302 |OO CMa |064615.4-262016 |M: | 12.2 | 15.0 | |p | | | | | |75002 UCAC2| +140303 |OP CMa |065406.6-150710 |SR: | 14.8 |< 15.1 | |p | | | | | |75002 USNO | +140304 |OQ CMa |065423.2-150003 |SR: | 12.0 | 14.0 | |p | | | | | |75002 UCAC2| +140305 |OR CMa |065540.0-120455 |M | 13.7 |< 17. | |p | | | | | |75002 2MASS| +140306 |OS CMa |070933.4-161404 |ACYG | 6.04 | 6.07 | |Hp| | | | | |75030 BD | +140307 |OT CMa |071433.8-325948 |M | 11.5 |< 15.0 | |p | | | | | |75021 75021| +140308 |OU CMa |071825.5-131356 |EB: | 15.17 |( 0.5 )| |B | | | | | |75059 75059| +140309 |OV CMa |061551.8-120837 |SR: | 11.9 | 13.4 | |V | | | | | |76012 GSC | +140310 |OW CMa |061847.5-141309 |SR: | 13.2 | 14.9 | |V | | | | | |76012 GSC | +140311 |OX CMa |062852.3-274514 |SR: | 12.5 | 14.0 | |V | | | | | |76012 USNO | +140312 |OY CMa |062855.8-115100 |M: | 12.8 |< 15.2 | |V | | | | | |76012 GSC | +140313 |OZ CMa |062957.9-154807 |SR: | 12.3 | 13.3 | |V | | | | | |76012 GSC | +140314 |PP CMa |063344.6-194250 |SR: | 14.6 |< 15.2 | |V | | | | | |76012 USNO | +140315 |PQ CMa |063427.0-134145 |SR: | 12.5 | 15.2 | |V | | | | | |76059 GSC | +140316 |PR CMa |063431.9-263756 |SR: | 12.2 | 13.9 | |V | | | | | |76012 GSC | +140317 |PS CMa |063543.3-262227 |SR: | 12.5 | 13.3 | |V | | | | | |76012 GSC | +140318 |PT CMa |063639.2-130514 |SR: | 11.5 | 12.3 | |V | | | | | |76012 GSC | +140319 |PU CMa |064047.7-242315 |UGSU: | 11.5 | 15.1 | |V | | | | | |76064 USNO | +140320 |PV CMa |064503.3-252239 |SR: | 13.2 | 13.8 | |V | | | | | |76012 GSC | +140321 |PW CMa |064709.2-252118 |SR: | 13.2 | 14.8 | |V | | | | | |76012 GSC | +140322 |PX CMa |070303.8-204913 |EW | 18.72 | 19.09 | |Ic| | | | | |76065 76065| +140323 |PY CMa |070304.1-205023 |EW | 18.27 | 18.64 | |Ic| | | | | |76065 76065| +140324 |PZ CMa |070305.0-204950 |EA | 16.63 | 17.11 | |Ic| | | | | |76065 76065| +140325 |QQ CMa |070305.1-204951 |EW | 18.60 | 18.80 | |Ic| | | | | |76065 76065| +140326 |QR CMa |070307.3-204917 |EW | 17.68 | 18.00 | |Ic| | | | | |76065 76065| +140327 |QS CMa |070307.7-204912 |E/RS | 17.71 | 17.98 | |Ic| | | | | |76065 76065| +140328 |QT CMa |070954.7-143141 |SR: | 12.5 | 14.2 | |V | | | | | |76012 GSC | +140329 |QU CMa |071354.6-254920 |EB | 11.76 | 12.14 | |V | | | | | |76067 76068| +140330 |QV CMa |071525.4-174919 |M | 12.1 |< 14.8 | |V | | | | | |76070 USNO | +140331 |QW CMa |071744.2-281450 |LB | 13.5 | 14.1 | |V | | | | | |76012 USNO | +140332 |QX CMa |071834.4-245727 |LPB: | 11.13 | 11.19 | |b | | | | | |76071 76071| +140333 |QY CMa |071838.8-245616 |DSCTC: | 10.59 | 10.64 | |b | | | | | |76071 76071| +140334 |QZ CMa |071910.2-295234 |SR: | 12.4 | 14.7 | |V | | | | | |76012 GSC | +140335 |V0335 CMa |071937.0-311745 |LB: | 12.0 | 12.8 | |V | | | | | |76012 GSC | +140336 |V0336 CMa |072005.4-260230 |SR: | 14.5 | 15.2 | |V | | | | | |76012 USNO | +140337 |V0337 CMa |072120.0-202218 |SR: | 12.6 | 14.5 | |V | | | | | |76012 USNO | +140338 |V0338 CMa |072135.2-154428 |SR: | 12.3 | 13.5 | |V | | | | | |76012 GSC | +140339 |V0339 CMa |072135.4-202736 |LB: | 11.0 | 11.9 | |V | | | | | |76012 GSC | +140340 |V0340 CMa |072136.7-285743 |SR: | 12.1 | 13.0 | |V | | | | | |76012 GSC | +140341 |V0341 CMa |072142.2-282957 |SR: | 12.3 | 12.9 | |V | | | | | |76012 GSC | +140342 |V0342 CMa |072143.4-153528 |SR: | 13.3 | 15.1 | |V | | | | | |76012 USNO | +140343 |V0343 CMa |072149.1-283840 |SR: | 11.8 | 12.7 | |V | | | | | |76012 GSC | +140344 |V0344 CMa |072249.5-243820 |SR: | 13.6 | 14.8 | |V | | | | | |76012 GSC | +140345 |V0345 CMa |072350.1-153315 |SR: | 13.4 | 14.1 | |V | | | | | |76012 USNO | +140346 |V0346 CMa |072530.1-295123 |SR: | 11.9 | 12.4 | |V | | | | | |76012 GSC | +140347 |V0347 CMa |072535.5-160135 |SR: | 13.4 | 14.3 | |V | | | | | |76012 2MASS| +140348 |V0348 CMa |072540.3-220228 |SR: | 12.0 | 13.5 | |V | | | | | |76012 GSC | +140349 |V0349 CMa |072558.2-114422 |M | 13.2 |< 15.4 | |V | | | | | |76012 2MASS| +140350 |V0350 CMa |064246.0-222655 |GDOR | 6.18 | 6.27 | |V | | | | | |77035 DM | +140351 |V0351 CMa |072306.6-292220 |LB: | 10.7 | 12.5 | |V | | | | | |77004 GSC | +140352 |V0352 CMa |061345.3-235143 |BY | 6.37 | 6.40 | |V | | | 7.2 | |G5V |78046 DM | +140353 |V0353 CMa |062133.1-221253 |BY | 8.48 |( 0.02 )| |V | | | | |K2V |78018 DM | +140354 |V0354 CMa |062603.8-142101 |M | 11.1 | 13.9 | |V |52904 | | 248. | | |78130 USNO | +140355 |V0355 CMa |063252.3-261024 |M | 10.8 |< 14.3 | |V |52213 | | 370. | |S |78130 78086| +140356 |V0356 CMa |063911.6-263419 |BY: | 8.44 |( 0.02 )| |V | | | | |K1V |78018 DM | +140357 |V0357 CMa |072004.1-193045 |SRA | 9.6 | 10.0 | |V |52400 | | 270. | |M3e |78090 DM | +140358 |V0358 CMa *|072022.4-234357 |WR: | 13.9 |( 0.10 )| |V |52032.600 | | 0.227 | |WN4/WC |78101 78102| +140359 |V0359 CMa |072114.8-291800 |SRA | 11.2 | 13.0 | |V | | | 290. | |M7 |78130 GSC | +140360 |V0360 CMa |061507.6-145504 |RRAB | 12.0 | 13.1 | |V |53744.708 | | 0.666328 |15 | |79100 79034| +140361 |V0361 CMa |062501.2-232826 |SRB | 10.3 | 11.7 | |V | | | 153. | |M5-6 |79064 DM | +140362 |V0362 CMa |062650.3-231506 |EB | 9.57 | 9.79 | 9.73 |V |51982.584 | | 10.585 | | |79011 DM | +140363 |V0363 CMa |062941.3-202146 |SRB | 9.0 | 9.7 | |V | | | 90. | | |79064 DM | +140364 |V0364 CMa |063147.7-145451 |SRB | 10.6 | 11.7 | |V | | | 138. | |M8 |79100 GSC | +140365 |V0365 CMa |063517.9-152250 |SRA | 10.5 | 13.6 | |V |53460. | | 258. | | |79100 79058| +140366 |V0366 CMa |063541.1-291246 |SRA | 11.7 | 14.1 | |V |53674. | | 233. | | |79100 GSC | +140367 |V0367 CMa |063546.9-130502 |SR: | 11.2 | 12.9 | |V | | | 750. : | |M4 |79100 79058| +140368 |V0368 CMa |063639.5-165934 |SRB | 10.4 | 11.1 | |V | | | 354. | | |79100 79022| +140369 |V0369 CMa |063716.5-295002 |SRB | 9.6 | 10.5 | |V | | | 53.8 | | |79064 DM | +140370 |V0370 CMa |064005.5-135531 |SRB | 10.4 | 11.4 | |V | | | 76.2 | | |79064 79184| +140371 |V0371 CMa |064108.1-200905 |SRB | 10.8 | 11.7 | |V | | | 301. | |C |79100 79047| +140372 |V0372 CMa |064314.2-155612 |SRB | 10.2 | 11.1 | |V | | | 86. : | |M7 |79100 79058| +140373 |V0373 CMa |064633.0-191918 |SRB | 11.8 | 12.8 | |V | | | 42.5 | | |79064 79184| +140374 |V0374 CMa |065123.2-161456 |SRB | 10.2 | 10.6 | |V | | | 73. : | |C |79064 79186| +140375 |V0375 CMa |065205.7-132957 |EA | 12.07 | 13.08 | 12.17 |V |51920.655 | | 2.3540 |12 | |79003 79047| +140376 |V0376 CMa |065404.7-192954 |LB | 11.5 | 12.7 | |V | | | | | |79100 79047| +140377 |V0377 CMa *|065516.1-171255 |EA | 7.88 | 7.98 | 7.98 |V |48323.304 | | 3.01351 |04 |B8III |79018 DM | +140378 |V0378 CMa |065714.1-312458 |EB | 10.60 | 11.05 | 10.76 |V |52967.757 | | 0.877912 | | |79011 DM | +140379 |V0379 CMa |065955.8-155548 |LB | 11.0 | 12.2 | |V | | | | |M6 |79100 79187| +140380 |V0380 CMa |070104.0-185136 |LB | 11.8 | 12.4 | |V | | | | |R: |79100 79022| +140381 |V0381 CMa |070132.0-275134 |EB | 7.73 | 7.82 | 7.78 |V |52942.804 | | 3.37443 | |A2V |79006 DM | +140382 |V0382 CMa |070229.8-153920 |SRB | 9.9 | 10.5 | |V | | | 75.4 | | |79064 79022| +140383 |V0383 CMa *|070311.0-245106 |SRB | 11.7 | 12.2 | |V | | | 50. | |Me |79100 GSC | +140384 |V0384 CMa |070355.1-175248 |DCEP | 11.7 | 12.3 | |V |51876.784 | | 4.2059 | | |79064 79047| +140385 |V0385 CMa |070404.7-160622 |SRB | 10.8 | 11.3 | |V | | | 170. | |N |79100 79188| +140386 |V0386 CMa |070432.3-193746 |LB | 11.6 | 12.4 | |V | | | | | |79100 79047| +140387 |V0387 CMa |070536.1-250633 |SRB | 8.9 | 10.0 | |V | | | 129. | |M5 |79064 DM | +140388 |V0388 CMa *|070607.4-125708 |EA | 8.25 | 8.43 | 8.34 |V |53067.651 | | 2.98260 |05 |B3V |79018 DM | +140389 |V0389 CMa |070617.2-243658 |LB: | 8.9 | 9.7 | |V | | | | |M5 |79100 DM | +140390 |V0390 CMa |070638.0-154807 |DCEP | 12.3 | 13.3 | |V |51875.776 | | 4.4633 |20 | |79064 79187| +140391 |V0391 CMa |070946.2-200535 |EA | 10.06 | 10.55 | 10.25 : |V |51922.660 | | 1.75690 |10 | |79011 DM | +140392 |V0392 CMa |071016.4-161549 |SRB | 11.0 | 12.1 | |V | | | 154. | |M7 |79100 GSC | +140393 |V0393 CMa |071318.2-143447 |SRB | 8.0 | 8.4 | |V | | | 83. | |M5III |79100 79022| +140394 |V0394 CMa |071401.7-143601 |LB | 10.0 | 10.6 | |V | | | | |S: |79100 79047| +140395 |V0395 CMa |071420.3-194022 |SRB | 12.3 | 13.3 | |V | | | 131. | |M7 |79100 79047| +140396 |V0396 CMa |071442.1-172541 |LB | 10.2 | 10.9 | |V | | | | |C5:,3: |79100 79187| +140397 |V0397 CMa |071518.3-161612 |EA | 11.13 | 11.60 | 11.53 |V |52215.795 | | 2.53153 |09 | |79018 79058| +140398 |V0398 CMa |072334.6-311800 |EA | 7.98 | 8.11 | 8.02 |V |47912.729 | | 2.198515 |06 |B9III |79006 DM | +140399 |V0399 CMa |061255.8-144006 |RRC | 11.7 | 12.2 | |V |51869.82 | | 0.320102 |40 | |80002 GSC | NL80_2 +140400 |V0400 CMa *|061523.4-184114 |EW | 18.45 | 19.38 | 19.25 |V |48667.6597 | | 0.27006 | | |80247 80247| NL80_2 +140401 |V0401 CMa *|061529.9-184040 |EA | 17.75 | 18.08 | 17.85 |V |48939.6704 | | 0.69123 | | |80247 80247| NL80_2 +140402 |V0402 CMa *|061533.9-183922 |EA | 15.84 | 16.29 | 16.20 |V |48566.7517 | | 6.94454 | | |80247 80247| NL80_2 +140403 |V0403 CMa *|061546.1-183707 |ELL: | 16.02 | 16.10 | 16.10 |V |48668.5280 | | 2.06390 | | |80247 80247| NL80_2 +140404 |V0404 CMa *|061555.4-184452 |EA | 17.45 | 18.40 | 17.90 |V |48566.8295 | | 0.45178 |13 | |80247 80247| NL80_2 +140405 |V0405 CMa *|062426.2-204454 |EW | 10.64 | 10.98 | 10.97 |V |51868.231 | | 0.384692 | | |80036 DM | NL80_2 +140406 |V0406 CMa |062927.1-311829 |GDOR: | 16.07 | 16.09 | |V | | | 0.76793 | | |80251 80251| NL80_2 +140407 |V0407 CMa |062932.8-311746 |BY: | 15.59 | 15.63 | |V | | | | | |80251 80251| NL80_2 +140408 |V0408 CMa *|062933.0-311753 |EW | 17.38 | 17.43 | 17.43 |V | | | 0.28598 | | |80251 80251| NL80_2 +140409 |V0409 CMa *|062933.4-311624 |DSCTC: | 15.88 | 15.91 | |V | | | 0.12785 | | |80251 80251| NL80_2 +140410 |V0410 CMa *|062934.3-311618 |EA | 17.17 | 17.33 | 17.23 |V |50456.57 | | 3.257344 : | | |80251 80251| NL80_2 +140411 |V0411 CMa *|062935.7-311704 |EA | 15.15 | 16.20 | 15.20 |V |48225.7332 | | 1.382703 |14 | |80251 80251| NL80_2 +140412 |V0412 CMa |062941.1-311906 |BY: | 13.75 | 13.84 | |V | | | | | |80251 80251| NL80_2 +140413 |V0413 CMa |062945.3-311719 |EA | 18.39 | 18.58 : | |V |50457.835 | | 6.2568 : | | |80251 80251| NL80_2 +140414 |V0414 CMa |063442.6-154639 |RRAB | 13.0 | 14.2 | |V |53816.6216 | | 0.408588 |10 | |80002 GSC | NL80_2 +140415 |V0415 CMa *|063641.1-223653 |EA | 6.34 | 6.48 | 6.40 |V |48401.484 | | 1.98571 |06 |B5V |80015 DM | NL80_2 +140416 |V0416 CMa *|065232.0-253330 |EW | 8.61 | 8.99 | 8.94 |V |51868.247 | | 0.418639 | |F6V |80036 DM | NL80_2 +140417 |V0417 CMa |070109.2-290625 |ZAND | 10.47 | 10.87 | |V | | | | |S6,8e |80267 GSC | NL80_2 +140418 |V0418 CMa |070330.5-153236 |CEP | 13.45 | 14.25 | |V |53601.93 | | 3.5227 |24 | |80135 GSC | NL80_2 +140419 |V0419 CMa *|070922.6-162031 |EB | 12.85 | 13.3 | 13.05 |V |54526.63 | | 1.27288 | | |80011 GSC | NL80_2 +140420 |V0420 CMa |071556.7-151808 |SR | 5.47 | 5.73 | |K | | | 486. : | |C |80166 2MASS| NL80_2 +140421 |V0421 CMa |071608.3-232702 |I | 10.55 | 10.73 | |V | | | | |F5 |80184 DM | NL80_2 +140422 |V0422 CMa *|071821.9-245112 |EA | 8.91 | 9.07 | 8.95 |V |51993.495 | | 4.19184 |05 |B2IV/V |80015 GSC | NL80_2 +140423 |V0423 CMa |072315.2-294321 |DCEP | 12.5 | 13.25 | |V |52496.49 | | 3.3363 |20 | |80177 GSC | NL80_2 +140424 |V0424 CMa |072403.5-125228 |M: | 3.75 | 4.94 | |K | | | 620. : | |C |80166 2MASS| NL80_2 +140425 |V0425 CMa |072407.3-233046 |M | 4.22 | 5.45 | |K | | | 560. : | |C |80166 2MASS| NL80_2 +140426 |V0426 CMa |072435.3-155952 |SR | 5.06 | 5.36 | |K | | | 457. | |C |80166 2MASS| NL80_2 +140427 |V0427 CMa *|072438.5-283800 |EA | 12.85 | 14.0 | 12.95 : |V |53459.653 | | 3.5485 |13 | |80048 GSC | NL80_2 +149002 |bet CMa *|062242.0-175721 |BCEP | 1.93 | 2.00 | |V |41296.175 | | 0.25003 | |B1II-III |07254 BD | +149007 |eta CMa |072405.7-291811 |ACYG | 2.38 | 2.48 | |Hp| | | | | |HIP HIP | +149009 |iot CMa |065608.2-170315 |BCEP | 4.36 | 4.40 | |V | | | 0.08 : | |B3II-III |08395 BD | +149010 |kap CMa |064950.5-323031 |GCAS | 3.78 | 3.97 | |V | | | | |B2Vne | CoD | +1490141|ksi 1 CMa *|063151.4-232506 |BCEP | 4.33 | 4.36 | |V |41296.0514 | | 0.2095755 | |B0.5IV |07243 CoD | +1490151|omi 1 CMa |065408.0-241103 |LC | 3.78 | 3.99 | |V | | | | |K2.5Iab |06313 CoD | +1490152|omi 2 CMa |070301.5-235000 |ACYG | 2.98 | 3.04 | |Hp| | | | | |HIP HIP | +149018 |sig CMa *|070143.1-275605 |LC | 3.43 | 3.51 | |V | | | | |K7Ib |04659 CoD | +149019 |tau CMa *|071842.5-245716 |EB | 4.32 | 4.37 | |Hp| | | | | |HIP HIP | +149024 |ome CMa *|071448.6-264622 |GCAS | 3.60 | 4.18 | |V | | | | |B2IV-Ve |07367 CoD | +150001 |R CMi *|070842.6+100127 |M | 7.25 | 11.6 | |V |41323. | | 337.78 |48 |C7,1Je(CSep) |00001 00002| +150002 |S CMi |073243.1+081905 |M | 6.6 | 13.2 | |V |43911. | | 332.94 |49 |M6e-M8e |00001 00002| +150003 |T CMi *|073400.5+114407 |M | 9.5 | 15.1 | |V |42045. | | 328.3 |47 |M4Se-M8 |00001 00002| +150004 |U CMi *|074120.0+082249 |M | 8.0 | 14.0 | |V |43150. | | 413.88 |52 |M4e |00001 00002| +150005 |V CMi |070658.9+085237 |M | 7.4 | 15.1 | |V |42737. | | 366.10 |39 |M4e-M10 |00001 00002| +150006 |W CMi |074845.5+052335 |SRB | 8.72 | 9.04 | |V | | | 95. : | |C7,2(R6) |07213 BD | +150007 |X CMi *|072144.7+022126 |RRAB | 12.5 | 13.6 | |p |28257.272 | | 0.363527 |19 |F5-F6 |00001 00530| +150008 |Y CMi |072649.3+015346 |RRAB | 14.1 | 15.2 | |p |25242.65 | | 0.4865 |19 | |00386 00530| +150009 |Z CMi |073431.4+025357 |SR | 14.0 | 15.2 | |p |25210. | | 140. |50 | |00386 00530| +150010 |RR CMi |073559.3+061744 |SR | 12.9 | 14.6 | |p |25270. | | 128. | | |00386 00530| +150011 |RS CMi *|073850.8+030028 |EA/SD | 13.8 | 15.4 | |p |25242.565 | | 5.02775 |04 | |03292 00530| +150012 |RT CMi |074026.9+061634 |EA | 14.2 | 14.9 | |p |25275.56 | | 1.25883 |13 | |00386 00530| +150013 |RU CMi |072140.4+031716 |L | 14.0 | 15.3 | |p | | | | | |00386 00531| +150014 |RV CMi |072150.6+041440 |RRAB | 12.7 | 14.2 | |p |25235.55 | | 0.62551 |21 | |00386 00531| +150015 |RW CMi |072222.6+022622 |EA | 13.2 | 14.0 | |p | | | | | |00386 00531| +150016 |RX CMi *|072243.2+065900 |EA | 14.1 | 15.0 | 14.6 |p |25235.61 | | 8.59865 |09 | |00384 00531| +150017 |RY CMi *|072258.2+064635 |EA/SD | 11.9 | 14.9 | 12.0 : |p |25323.51 | | 3.265211 |11 | |01715 00531| +150018 |RZ CMi |072341.1+064657 |SR | 13.6 | 15.2 | |p |25328. | | 190. |47 | |00386 00531| +150019 |SS CMi |072451.0+053336 |SR | 13.0 | 14.5 | |p |25345. | | 265. | | |00386 00531| +150020 |ST CMi |072600.4+063137 |SRB | 13.2 | 14.4 | |p | | | 190. : | | |00386 00531| +150021 |SU CMi |072733.1+050350 |SR | 13.6 | 14.6 | |p |25303. | | 175. | | |00386 00531| +150022 |SV CMi |073108.4+055849 |UGZ | 13.0 | 16.3 | |p | | |( 16. :) | |pec(UG) |00386 00531| +150023 |SW CMi |073247.8+081058 |S: | 15.6 | 16.4 | |p | | | | | |00386 00531| +150024 |SX CMi *|073436.4+053834 |EA | 13.4 | 14.8 | 13.6 |p |25247.62 | | 3.4304 | | |00386 00531| +150025 |SY CMi *|073646.9+072250 |RRAB | 14.8 | 16.3 | |p |36599.250 | | 0.566 |14 | |03148 00531| +150026 |SZ CMi |073649.0+041428 |SR | 12.4 | 13.4 | |p |25310. | | 125. | | |00386 00531| +150027 |TT CMi |073702.0+053316 |EA | 14.0 | 14.8 | |p |25235.67 | | 0.84555 |22 | |00386 00531| +150028 |TU CMi *|073705.8+075048 |EW/KW | 14.4 | 15.1 | 15.1 |p |25245.604 | | 0.43344 | | |03148 00531| +150029 |TV CMi |073939.4+065801 |SRA | 14.7 | 16.8 | |p |25231. | | 140. |47 | |00386 00531| +150030 |TW CMi *|073947.5+065510 |EA/KE | 14.8 | 15.6 | 15.6 |p |25304.369 | | 1.07926 |12 | |03148 00531| +150031 |TX CMi *|074020.0+044240 |EW/KW | 14.0 | 15.0 | 14.7 |p |36598.611 | | 0.389 | | |03148 00531| +150032 |TY CMi |074052.9+025229 |EA | 13.0 | 13.9 | |p |25302.52 | | 1.29909 |19 | |00386 00531| +150033 |TZ CMi |074112.8+065424 |EA/DS | 14.0 | 15.0 | |p |25217.53 | | 11.662 |05 | |00386 00531| +150034 |UU CMi |074235.0+065403 |LB: | 14.2 | 15.4 | |p | | | | | |03148 00531| +150035 |UV CMi |074418.9+042651 |LB | 12.4 | 13.8 | |p | | | | | |00386 00531| +150036 |UW CMi |074516.1+011055 |M | 13.7 |< 16.4 | |p |25370. | | 340. | | |00386 00531| +150037 |UX CMi |074533.8+051231 |SRA | 10.2 | 11.6 | |p |26735. | | 150.5 | |M5 |02431 BD | +150038 |UY CMi |074754.1+093332 |EA | 13.8 | 15.4 | |p |25532.63 | | 22.242 /N| | |00386 00531| +150039 |UZ CMi *|075051.8+033904 |EW/DW | 11.6 | 12.1 | 12.1 |p |25243.69 | | 0.761950 | |F8 |00386 00531| +150040 |VV CMi |075136.3+032903 |M | 11.6 |< 19. | |p |25356. | | 334. | | |01724 00531| +150041 |VW CMi |075241.4+031703 |SR | 13.2 | 14.3 | |p |25325. | | 109. |37 | |00386 00531| +150042 |VX CMi |075400.8+014415 |M | 11.8 |< 16.4 | |p |25362. | | 272.7 | |Me |01724 00531| +150043 |VY CMi |075605.3+041528 |CEP: | 14.6 | 15.8 | |p |25299.5 | | 6.460 : |15 : | |00386 00531| +150044 |VZ CMi |071209.6+111729 |M | 12. |< 15.5 | |p |34824. | | 284.6 | | |00001 00489| +150045 |WW CMi |071105.9+040436 |M | 13.0 |< 15.5 | |p |35184. | | 176.40 | | |00001 05285| +150046 |WX CMi |071157.5+072959 |M | 11.0 | 15.8 | |p |36120. | | 420.1 |25 |Se |05025 05025| +150047 |WY CMi |071614.6+034400 |M | 13.0 | 16.0 | |p |27732. | | 274. | | |00394 00489| +150048 |WZ CMi |071848.6+024322 |M | 13. |< 15.5 | |p |27364. | | 316. | | |00394 00489| +150049 |XX CMi |071257.9+023731 |SR: | 13.2 | 15.3 | |p | | | | |M7 |05285 05285| +150050 |XY CMi |071643.3+030659 |L | 14. | 15.5 | |p | | | | | |00395 00491| +150051 |XZ CMi *|075407.1+033920 |EA | 9.7 | 10.42 | 9.88 |V |42444.4017 | | 0.5788095 |22 *|F0 |00001 02532| +150052 |YY CMi *|080638.6+015547 |EB | 8.33 | 9.13 | 8.88 |V |28023.147 | | 1.0940197 | |F6Vn |03295 06637| +150053 |YZ CMi *|074440.2+033309 |BY+UV | 8.6 | 12.93 | |B |41355.178 | | 2.780964 | |M4.5Ve |06948 00664| +150054 |ZZ CMi |072414.0+085352 |SR | 10.2 | 11.9 | |p |28960. | | 500. : | |M6I-IIep |00346 00346| +150055 |AA CMi |071719.2+014340 |RRAB | 11.01 | 12.00 | |V |36576.435 | | 0.47632310 |20 |A6 |03297 00156| +150056 |AB CMi |070757.3+115819 |EA/SD | 13.4 | 15.9 | |p |30349.52 | | 4.07142 |11 *| |00407 02352| +150057 |AC CMi |072950.1+103656 |EA/DW | 11. | 11.5 | |p |31521.38 | | 0.7887 | |F5 |00279 00279| +150058 |AD CMi |075247.2+013551 |DSCT | 9.21 | 9.51 | |V |42429.4582 | | 0.12297443 |37 |F0III-F3III |06719 06463| +150059 |AE CMi |075256.1+010940 |M | 12.3 |< 15. | |p | | | | |M2e |01726 | +150060 |AF CMi |075938.9+003028 |M | 12. |< 14. | |p |33380. :| | | |M7e |01726 06286| +150061 |AG CMi *|070836.0+061426 |EA/SD | 10.9 | 11.9 | |p |34698.677 | | 1.6645438 |16 *|F4 |06136 06136| +150062 |AH CMi *|071045.0+105909 |RRC: | 12.3 | 12.6 | |p |30267.663 | | 0.345845 |49 | |00407 02346| +150063 |AI CMi |073541.1+001458 |L: | 8.8 | 10.6 | |p | | | | |G5Iab |01728 BD | +150064 |AK CMi *|074015.6+035709 |EA/SD | 10.1 | 11.5 | 10.3 |p |43101.672 | | 0.5658975 |30 :*|A-F |04836 00462| +150065 |AL CMi *|074857.1+053811 |RRAB | 12. | 13. | |p |36597.356 | | 0.55050 |17 | |03300 00196| +150066 |AM CMi *|075018.1+015719 |EB/KE | 10.0 | 10.7 | 10.5 |p |25244.653 | | 1.0191860 | | |02633 02633| +150067 |AN CMi *|070909.2+014211 |EA/SD | 14.0 | 15.5 | |p |34779.327 | | 1.8223649 |21 | |04428 04428| +150068 |AO CMi *|071004.2+015829 |EA/SD | 14.4 | 15.6 | 14.5 |p |34424.373 | | 0.85310722 |22 | |04428 04428| +150069 |AP CMi |072442.6-000720 |EA | 12.5 | 13.5 | |p |26770.357 | | | | |00158 00158| +150070 |AQ CMi |071434.8+084806 |UG: | 14.5 |< 16.5 | |p | | | | | |03183 03183| +150071 |AR CMi |073702.8+040012 |EA | 15. | 17. | |p | | | | | |03910 03910| +150072 |AS CMi |074410.3+081715 |RR | 14.5 | 16. | |p | | | | | |03910 03910| +150073 |AT CMi |074937.0+015740 |RR | 16. | 17. | |p | | | | | |03910 03910| +150074 |AU CMi |075038.0+061229 |RR | 16. | 17. | |p | | | | | |03910 03910| +150075 |AV CMi |070910.9+121119 |EA | 11.8 | 12.1 | |p |38378.59 | | 1.13888 |10 : | |07010 05515| +150076 |AW CMi |071247.8+083309 |RR | 16.0 |< 16.5 | |p | | | 1.04 :/N| | |07010 05515| +150077 |AX CMi |071305.2+084411 |SRB: | 13.8 | 14.6 | |p | | | 70. : | | |07010 05515| +150078 |AY CMi |071354.5+082545 |EA | 14.1 |< 16.0 | |p |31555.37 | | 10.45623 : |10 | |07010 05515| +150079 |AZ CMi |074407.6+022420 |DSCTC | 6.44 | 6.51 | |V |40886.0713 | | 0.09526 | |F0III |06014 BD | +150080 |BB CMi |075124.6+045439 |RRC | 10.0 | 10.8 | |p |25644.400 | | 0.396424 |40 |A5 |05957 05957| +150081 |BC CMi |075207.2+031638 |SRB | 6.14 | 6.42 | |V | | | 35. : | |M5 |06645 BD | +150082 |BD CMi |072025.0+092257 |LB: | 11.2 | 12.5 | |V | | | | |M3 |00416 00196| +150083 |BE CMi |073629.1+020444 |LB | 11.5 | 12.0 | |p | | | | |C5,5(R8) |00333 BD | +150084 |BF CMi *|073018.9+043122 |EA/SD: | 10.3 | 11.1 |( 0.05 : )|V |44169.571 | | 1.1806866 |18 *| |04451 08373| +150085 |BG CMi |073129.1+095623 |XBP | 14.5 |( 0.43 )| |V | | | | | |67060 USNO | +150086 |BH CMi |080236.4+014350 |EW | 9.3 |( 0.37 : )| |V | | | | | |70020 BD | +150087 |BI CMi |080531.7+020932 |DSCT: | 9.0 |( 0.1 : )| |V | | | | | |70021 BD | +150088 |BK CMi |071538.9+050339 |SR | 12. | 13.5 | |B | | | | | |72032 BD | +150089 |BL CMi |072349.2+013704 |E: | 11.5 | 12.5 | |p | | | | | |72033 72034| +150090 |BM CMi |074852.8+053928 |IS | 14.34 | 15.23 | |V | | | | | |73062 73062| +150091 |BN CMi |070836.9+041034 |SRB: | 7.01 | 7.10 | |Hp| | | | | |HIP HIP | +150092 |BO CMi *|072248.4+072940 |* | 8.07 | 8.36 | |Hp| | | | | |HIP HIP | +150093 |BP CMi |073327.5+110042 |SRB | 6.77 | 6.91 | |Hp| | | | | |HIP HIP | +150094 |BQ CMi |073503.0+061140 |SRA: | 7.69 | 7.90 | |Hp| | | | | |HIP HIP | +150095 |BR CMi |073851.0+075800 |ACV: | 7.16 | 7.22 | |Hp| | | | | |HIP HIP | +150096 |BS CMi |075631.7+062423 |SRD: | 7.80 | 7.89 | |Hp| | | | | |HIP HIP | +150097 |BT CMi |075704.0+025703 |BE | 7.68 | 7.80 | |Hp| | | | | |HIP HIP | +150098 |BU CMi |075805.9+071249 |EA: | 6.41 | 6.51 | |Hp| | | | | |HIP HIP | +150099 |BV CMi |075845.2+053724 |EA: | 6.91 | 7.03 | |Hp| | | | | |HIP HIP | +150100 |BW CMi |080559.0+060001 |LB: | 9.02 | 9.12 | |Hp| | | | | |HIP HIP | +150101 |BX CMi |071046.3+075350 |EA | 10.81 | 11.48 | |V | | | | | |75060 75061| +150102 |BY CMi |073130.4+044509 |EA | 14.1 | 15.0 | |p | | | | | |75062 75063| +150103 |BZ CMi |071152.6+040405 |EA: | 11.4 | 11.9 | |* | | | | | |76066 GSC | +150104 |CC CMi |072451.0+120817 |SR: | 11.8 | 12.9 | |V | | | | | |76012 GSC | +150105 |CD CMi |072527.4+101824 |SR | 11.5 | 11.8 | |* | | | | | |76073 GSC | +150106 |CE CMi |072528.5+003513 |M: | 14.5 |< 15.0 | |V | | | | | |76012 USNO | +150107 |CF CMi |072633.2+100356 |SR | 12.29 | 12.59 | |* | | | | | |76074 GSC | +150108 |CG CMi |072646.9+022558 |LB | 12.3 | 13.1 | |V | | | | | |76012 USNO | +150109 |CH CMi |072744.1+091904 |SR: | 11.1 | 12.5 | |V | | | | | |76012 GSC | +150110 |CI CMi |073317.9+110208 |SR: | 13.0 | 15.0 | |V | | | | | |76012 GSC | +150111 |CK CMi |073548.0+110115 |SR: | 11.3 | 12.5 | |V | | | | | |76012 UCAC2| +150112 |CL CMi |073947.7+031242 |SR: | 11.5 | 12.3 | |V | | | | | |76012 GSC | +150113 |CM CMi |074000.7+055923 |SR: | 11.7 | 12.9 | |V | | | | | |76012 GSC | +150114 |CN CMi |074551.4+005540 |M | 13.1 |< 15.3 | |V | | | | | |76012 USNO | +150115 |CO CMi |075211.1+102901 |SR: | 12.6 | 13.7 | |V | | | | | |76012 GSC | +150116 |CP CMi |075656.5+032228 |SR: | 13.5 | 14.5 | |V | | | | | |76012 GSC | +150117 |CQ CMi |075953.8+015017 |SR: | 14.0 | 14.7 | |V | | | | | |76012 GSC | +150118 |CR CMi |080602.9+030947 |SR: | 11.5 | 12.5 | |V | | | | | |76012 UCAC2| +150119 |CS CMi |080621.6+032302 |SR: | 12.3 | 13.5 | |V | | | | | |76012 GSC | +150120 |CT CMi |080816.2+004337 |SR: | 12.0 | 12.5 | |V | | | | | |76012 USNO | +150121 |CU CMi |080925.5+050820 |SR: | 12.7 | 13.7 | |V | | | | | |76012 GSC | +150122 |CV CMi |081109.5+004031 |SR: | 10.57 |( 0.7 )| |V | | | | | |76012 GSC | +150123 |CW CMi |075045.5-000011 |EW/K | 11.2 |( 0.43 )| |V | | | | | |77066 GSC | +150124 |CX CMi *|071334.1+101513 |EW | 11.41 | 12.02 | 11.97 |V |51951.3605 | | 1.121968 | | |78097 GSC | +150125 |CY CMi |071610.3+095948 |SRD | 8.11 | 8.26 | |V | | | 36.8 | |F5Iab |78099 DM | +150126 |CZ CMi |071657.3+091236 |EW | 10.54 | 11.06 | |V |52336.3877 | | 0.426388 | | |78097 GSC | +150127 |DD CMi |074858.2+003943 |GDOR | 7.50 | 7.57 | |Hp| | | 0.713 | |F2 |78091 DM | +150128 |DE CMi |080958.5+010114 |DSCTC | 7.96 |( 0.06 )| |B | | | 0.088474 | |F0 |78106 DM | +150129 |DF CMi |071023.2+062912 |SRB | 11.5 | 14.1 | |V | | | 137.9 | |M4 |79064 79133| +150130 |DG CMi |071833.4+092940 |EA | 11.94 | 13.9 : | 12.05 |* |53113.570 | | 0.99369 |15 | |79003 GSC | +150131 |DH CMi |071844.8+102153 |SRB | 10.5 | 11.3 | |V | | | 72.1 | | |79064 79133| +150132 |DI CMi |072700.3+035827 |LB | 12.0 | 12.8 | |V | | | | |M5 |79100 79060| +150133 |DK CMi |073314.2+024416 |EA | 11.88 | 12.65 | 12.18 |V |51560.719 | | 5.04735 |05 | |79003 79059| +150134 |DL CMi *|074436.4+071652 |EA | 12.86 | 13.45 | 13.45 |* |51629.654 | | 4.01732 |06 | |79009 79060| +150135 |DM CMi |075359.9+034500 |EA | 8.13 | 8.22 | 8.20 |V |48588.418 | | 7.72461 |03 : |A0V |79006 DM | +150136 |DN CMi |080952.9+050336 |SRB | 9.1 | 9.6 | |V | | | 152. | |C(Np) |79100 DM | +150137 |DO CMi *|071219.4+092103 |DSCT | 10.54 | 10.73 | |V | | | 0.19450 | | |80272 DM | NL80_2 +150138 |DP CMi *|071814.9+014127 |EA/RS | 10.62 | 10.90 | 10.78 : |V |52998.75 | | 7.40522 | | |80001 GSC | NL80_2 +150139 |DQ CMi |072038.5+064055 |RRAB | 11.7 | 12.4 | |V |53031.6263 | | 0.615830 |20 | |80002 GSC | NL80_2 +150140 |DR CMi *|072431.4+030328 |EA | 11.08 | 11.65 | 11.42 |V |51557.760 | | 23.7704 | | |80023 GSC | NL80_2 +150141 |DS CMi *|072519.0-000500 |EW | 11.6 | 11.92 | 11.88 |V |52786.4526 | | 0.649350 | | |80002 GSC | NL80_2 +150142 |DT CMi |072816.1+094926 |RRAB | 13.5 | 14.5 | |V |52685.6274 | | 0.589799 |25 | |80002 USNO | NL80_2 +150143 |DU CMi |072937.0+010141 |SRB | 11.7 | 12.9 | |V | | | 101. | | |80001 GSC | NL80_2 +150144 |DV CMi |073716.9+113954 |SRB | 11.55 | 12.05 | |V | | | 55. : | | |80001 GSC | NL80_2 +150145 |DW CMi *|074033.1+044220 |EW | 14.3 |( 0.8 *)|( 0.7 *)|R |52611.6147 | | 0.3075550 | | |80282 USNO | NL80_2 +150146 |DX CMi *|074653.2+003544 |EA | 12.05 | 12.8 | 12.1 : |V |52713.563 | | 2.30318 |12 | |80013 GSC | NL80_2 +150147 |DY CMi *|074727.6+065050 |UGSU | 11.4 | 19.1 | |V | | | | |pec(UG) |80233 80234| NL80_2 +150148 |DZ CMi |075058.4+065934 |RRAB | 13.5 | 15.0 | |V |52388.81 | | 0.463201 |30 | |80002 GSC | NL80_2 +150149 |EE CMi |075108.0+005635 |SRB | 12.5 | 14.1 | |V | | | 224.4 | | |80002 GSC | NL80_2 +150150 |EF CMi |075250.4+001410 |RRC: | 12.2 | 12.6 | |V |52026.5249 | | 0.194885 |42 | |80002 GSC | NL80_2 +150151 |EG CMi *|075330.4+011853 |EW | 13.2 | 13.7 | 13.7 |V |52667.783 | | 0.533620 | | |80002 GSC | NL80_2 +150152 |EH CMi |075501.1+002337 |SRA | 10.91 | 11.7 | |V |52670. | | 173.5 | | |80001 GSC | NL80_2 +150153 |EI CMi *|075706.3+011720 |EW | 13.0 | 13.9 | 13.8 |V |53478.4714 | | 0.362538 | | |80002 GSC | NL80_2 +150154 |EK CMi *|075717.5-000501 |EB | 11.85 | 12.38 | 12.20 |V |54467.7174 | | 0.66075 | | |80002 GSC | NL80_2 +150155 |EL CMi *|075946.8+002107 |EA | 11.8 | 12.8 | 12.1 |V |53871.5051 | | 1.053830 |20 | |80002 GSC | NL80_2 +150156 |EM CMi |080222.0-000124 |RRAB | 14.9 | 15.6 | |V |51614.5724 | | 0.584383 |15 | |80159 GSC | NL80_2 +150157 |EN CMi |080446.3-001819 |RRAB | 16.9 | 17.8 | |V |51976.6492 | | 0.539763 |20 | |80159 USNO | NL80_2 +150158 |EO CMi |080822.0+000039 |RRAB | 16.9 | 18.1 | |V |51572.6875 | | 0.550513 |11 | |80159 USNO | NL80_2 +150159 |EP CMi *|081000.9+001022 |EB | 12.2 | 13.3 | 12.9 |V |53733.8001 | | 2.7255 | | |80002 GSC | NL80_2 +150160 |EQ CMi *|081044.7+010330 |EW | 13.0 | 13.6 | 13.5 |V |53660.8509 | | 0.479536 | | |80002 GSC | NL80_2 +150161 |ER CMi |081105.3+040138 |M | 13.0 | 17.6 | |V |53102. | | 364.9 | |M8 |80296 2MASS| NL80_2 +159002 |bet CMi |072709.0+081722 |GCAS | 2.84 | 2.92 | |V | | | | |B8Ve | BD | +160001 |R Cap |201118.4-141603 |M | 9.4 | 14.9 | |V |39014. | | 345.13 |44 |Ne |00001 00002| +160002 |S Cap |204144.3-190328 |CST: | 9.2 | | |p | | | | |G5 | BD | +160003 |T Cap |212200.8-150933 |M | 8.4 | 14.3 | |V |39267. | | 269.28 |44 |M2e-M8.2 |00001 00002| +160004 |U Cap |204808.6-144701 |M | 10.4 | 15.7 | |V |38975. | | 203.14 |46 |M5.5e |00001 00002| +160005 |V Cap |210736.6-235514 |M | 8.2 | 14.4 | |V |40395. | | 275.72 |42 |M5e-M8.2 |00001 00002| +160006 |W Cap |201429.0-215845 |M | 11.0 | 15.0 | |V |38948. | | 209.67 |51 |M5e-M8.0 |00001 00002| +160007 |X Cap |210833.0-212052 |M | 10.2 | 15.0 | |V |38971. | | 217.94 |48 |M2.0e-M7.5 |00001 00002| +160008 |Y Cap |213422.9-135830 |M | 10.0 | 15.0 | |V |16735. | | 411.76 |35 | |05041 00002| +160009 |Z Cap |211037.5-161025 |M | 8.6 | 15.0 | |V |42017. | | 181.48 |49 |M2e-M7.0 |00001 00002| +160010 |RR Cap |210220.8-270515 |M | 7.8 | 15.5 | |V |39096. | | 277.54 |40 |M5e-M8.5 |00001 00002| +160011 |RS Cap *|210715.4-162521 |SRB | 8.3 | 10.3 | |p | | | 340. | |M4 |00358 BD | +160012 |RT Cap *|201706.5-211905 |SRB | 8.9 | 11.7 | |p | | | 393. | |C6,4(N3) | 06754| +160013 |RU Cap *|203234.0-214126 |M | 9.2 | 15.2 | |V |38891. | | 347.37 |36 |M9e |00001 00002| +160014 |RV Cap *|210128.9-151346 |RRAB | 10.22 | 11.57 | |V |33883.262 | | 0.44774401 | |A7-F4 |03506 01729| +160015 |RW Cap *|201756.1-174023 |EA/SD: | 9.8 | 11.0 | 9.9 |p |42664.532 | | 3.392446 |16 |A3+A4 |00001 00024| +160016 |RX Cap *|201455.2-125635 |RV | 11.6 | 13.7 | 12.5 |p |20741.4 | | 67.92 |22 |F8-G0 |01730 02452| +160017 |RY Cap *|200656.3-085450 |M: | 12.4 |< 13.5 | |p | | | | | |01731 USNO | +160018 |RZ Cap |203830.1-120106 |RR: | 12.5 | 13.5 | |p | | | 0.5 : | | |01732 06286| +160019 |SS Cap |200827.2-091406 |M | 11.9 |< 16. | |p |34981. | | 252.6 | | |00001 06286| +160020 |ST Cap |201103.1-131859 |M | 12.6 |< 15.5 | |p |34961. | | 268.5 | |M6IIIe |00001 08588| +160021 |SU Cap |201747.0-135733 | | 12.4 | 13.8 | |p | | | | | |01733 08588| +160022 |SV Cap |202337.7-090755 |LB | 11.8 | 12.9 | |p | | | | | |00797 06286| +160023 |SW Cap |202620.2-093256 |M | 12.6 |< 14.5 | |p |34290. | | 344.6 | | |02931 06286| +160024 |SX Cap |202840.3-122832 |RR: | 13.0 | 14.3 | |p | | | | | |01733 06286| +160025 |SY Cap |202947.5-155438 |M: | 12.6 |< 14.5 | |p | | | | | |01733 06286| +160026 |SZ Cap |200703.8-094607 |M | 13.0 |< 16. | |p |34520. | | 253.0 | |Me |02306 06286| +160027 |TT Cap |201612.5-112239 | | 14.0 | 15.0 | |p | | | | | |01330 06286| +160028 |TU Cap |201410.2-155344 |SRB | 9.20 | 11.29 | |V | | | 90. : | |M5 |06450 01110| +160029 |TV Cap *|202358.1-114934 |SRB | 10.8 | 12.2 | |p | | | 151. | |M5e |00001 BD | +160030 |TW Cap *|201428.4-135008 |CWA | 9.95 | 11.28 | |V |44073.10 | | 28.6101 |20 : |A5Ib-F4Ib |00001 08588| +160031 |TX Cap |204032.1-170328 |M | 10.9 |< 14.5 | |p |34961. | | 129.35 | |M4e |00001 00190| +160032 |TY Cap *|202429.7-125755 |EA/SD | 10.5 | 11.8 | 10.6 |p |44793.452 | | 1.4234498 |19 *|A5 |00001 01735| +160033 |TZ Cap |204934.0-143443 |EB: | 11.8 | 13.6 | |p |28777.164 | | 1.99743 | | |00732 00293| +160034 |UU Cap |213610.4-135206 |SRB | 9.3 | 10.4 | |p | | | 100. : | |M4 |01158 BD | +160035 |UV Cap |214441.4-171234 |RR | 12.8 |< 14.9 | |p | | | | |F0-F5 |08656 00293| +160036 |UW Cap *|202051.3-103055 |EA/KE | 10.9 | 11.5 | 11.5 |p |43016.360 | | 1.399111 |14 *|A:+A: |00001 BD | +160037 |UX Cap |205403.3-172752 |RRAB | 13.5 | 14.5 | |p |25413.60 | | 0.62553 | | |00193 06286| +160038 |UY Cap |205538.0-174357 |SR | 13.5 | 14.3 | |p |25500. | | 139. : | | |00193 06286| +160039 |UZ Cap |205637.0-154020 |RRAB | 14.0 | 15.3 | |p |25498.40 | | 0.53282 | | |00193 06286| +160040 |VV Cap |205917.1-180802 |RRAB | 14.0 | 15.4 | |p |25479.40 | | 0.50177 | | |00193 06286| +160041 |VW Cap |210411.0-172656 |RR | 12.6 | 13.5 | |p |25409.60 | | 0.31426 | | |00193 06286| +160042 |VX Cap |210622.4-184940 |CWB | 14.2 | 15.5 | |V |25418.656 | | 1.3275583 |12 | |05448 05448| +160043 |VY Cap | | | | | | | | | | | | |=NY Aqr +160044 |VZ Cap |210927.3-152348 |RRAB | 14.4 | 15.8 | |p |26447.55 | | 0.64464 | | |00193 06286| +160045 |WW Cap |211057.5-153930 |RRAB | 14.3 | 15.9 | |p |25447.55 | | 0.46572 | | |00193 06286| +160046 |WX Cap |211224.4-180257 |RR | 14.7 | 15.8 | |p |25439.50 | | 0.85524 | | |00193 06286| +160047 |WY Cap |211244.6-172427 |RRAB | 13.7 | 14.9 | |p |25413.60 | | 0.46564 | | |00193 06286| +160048 |WZ Cap |212317.4-151052 |EW/KW | 14.0 | 14.7 | |p |25424.58 | | 0.313086 | | |00193 06286| +160049 |XX Cap |205334.9-143950 |L | 12.8 | 14.2 | |p | | | | | |00193 06286| +160050 |XY Cap |205718.6-165735 |SR | 13.5 | 14.6 | |p | | | | | |00193 06286| +160051 |XZ Cap |210252.0-191634 |L | 13.8 | 14.8 | |p | | | | | |00193 06286| +160052 |YY Cap |210355.1-184718 |LB | 11.1 | 11.6 | |p | | | | |M0 |00193 BD | +160053 |YZ Cap *|211932.4-150701 |RRC | 11.02 | 11.60 | |V |43729.741 | | 0.2734563 |40 |A5-A7 |00001 08087| +160054 |ZZ Cap |213414.2-165534 |SR | 11. | 12. | |p | | | 133. : | | |01110 01110| +160055 |AA Cap |215028.0-155028 |SR | 10.5 | 11.5 | |p |30629. | | 72.9 |41 |M5 |01110 01110| +160056 |AB Cap |205929.6-144800 |LB | 10.4 | 11.0 | |p | | | | |M2 |00479 BD | +160057 |AC Cap |201417.3-265444 |M | 11. |< 13.5 | |p |28700. :| | | |Me |00085 02384| +160058 |AD Cap *|213948.9-160021 |E/RS | 10.77 | 11.4 | |B | | | 2.96000 | |G5+G5 |07373 BD | +160059 |AE Cap *|201857.2-155128 |SR | 9.0 | 11.1 | |B | | | 200. | |M4 |03263 BD | +160060 |AF Cap |201454.1-210540 |EA | 10.1 | 10.8 | |p |38252.290 | | 6.03145 |10 | |04350 04383| +160061 |AG Cap |214616.3-091633 |SRB | 5.90 | 6.14 | |V | | | 25. : | |M3III |06645 BD | +160062 |AH Cap |214432.9-093209 |SR | 11. | 12.5 | |p | | | | |Me |00190 00190| +160063 |AI Cap |201728.4-105739 |EA | 11.9 | 12.8 | |p | | | | | |07594 07594| +160064 |AK Cap |203407.6-231459 |LB | 9.0 | 9.7 | |p | | | | |M2 |00190 CoD | +160065 |AL Cap |203731.6-153722 |L | 12.3 | 13.2 | |p | | | | | |07594 07594| +160066 |AM Cap |203844.4-094100 |LB | 10.4 | 11.1 | |p | | | | |M2 |02546 02546| +160067 |AN Cap |203247.4-263323 |RR: | 12. | 13. | |p | | | | | |00085 02384| +160068 |AO Cap |205936.1-190207 |ACV | 6.2 |( 0.050 )| |V | | | 2.25 | |B9p(Si) |08375 BD | +160069 |AP Cap |214736.4-171741 |ACV | 7.60 | 7.65 | |V |42619.827 | | 2.67 | |B9p(Si) |08312 BD | +160070 |AQ Cap |210316.5-184156 |EW/KW | 13.0 | 13.9 | |p | | | | | |67062 67063| +160071 |AR Cap |200942.0-182048 |ACV | 8.08 | 8.28 | |V | | | | | |68148 BD | +160072 |AS Cap |213416.6-132902 |RS: | 8.0 |( 0.13 )| |V | | | | | |68056 BD | +160073 |AT Cap |202936.9-210735 |RS | 8.87 | 9.18 | |V | | | | | |69011 BD | +160074 |AU Cap |212129.7-150922 |RS | 7.98 | 8.02 | |V | | | | | |69011 BD | +160075 |AV Cap |200831.3-100345 |ACV: | 6.24 |( 0.02 u )| |B | | | | | |70022 BD | +160076 |AW Cap |203809.8-173007 |ACVO | 9.72 |( 0.01 B )| |V | | | | | |71157 BD | +160077 |AX Cap |200857.0-171639 |UG: | 18.3 | 21.5 | |V | | | | | |73063 73064| +160078 |AY Cap |203006.8-233041 |SR | 6.36 | 6.88 | |J | | | | | |73033 GSC | +160079 |AZ Cap |205602.7-171054 |BY+UV | 10.40 | 10.50 | |V | | | | | |73065 73065| +160080 |BB Cap |213118.6-094726 |BY | 11.96 | 11.99 | |V | | | | | |73018 73066| +160081 |BC Cap |200849.5-152444 |SRB | 8.13 | 8.37 | |Hp| | | | | |HIP HIP | +160082 |BD Cap |201006.8-251702 |DSCTC | 7.51 | 7.57 | |Hp| | | | | |HIP HIP | +160083 |BE Cap |201110.1-085032 |BE: | 6.16 | 6.43 | |V | | | | | |HIP HIP | +160084 |BF Cap |201828.6-191729 |EB | 8.94 | 9.27 | |Hp| | | | | |HIP HIP | +160085 |BG Cap |201945.3-132709 |SRD: | 8.92 | 9.04 | |Hp| | | | | |HIP HIP | +160086 |BH Cap *|202708.5-113251 |EB: | 8.03 | 8.16 | |Hp| | | | | |HIP HIP | +160087 |BI Cap |203143.0-115304 |LB: | 9.64 | 9.79 | |Hp| | | | | |HIP HIP | +160088 |BK Cap |203303.0-191819 |LB: | 8.78 | 8.90 | |Hp| | | | | |HIP HIP | +160089 |BL Cap |204239.8-180635 |RR: | 7.38 | 7.45 | |Hp| | | | | |HIP HIP | +160090 |BM Cap |204855.7-203708 |E | 9.16 | 9.42 | |Hp| | | | | |HIP HIP | +160091 |BN Cap *|212002.5-271816 |IB: | 8.15 | 8.54 | |Hp| | | | | |HIP HIP | +160092 |BO Cap |213522.8-230705 |LB: | 8.07 | 8.19 | |Hp| | | | | |HIP HIP | +160093 |BP Cap |213720.0-112739 |LB | 7.34 | 7.44 | |Hp| | | | | |HIP HIP | +160094 |BQ Cap |213736.1-202555 |EA | 8.11 | 8.40 | |Hp| | | | | |HIP HIP | +160095 |BR Cap |214644.9-222901 |LB: | 8.97 | 9.10 | |Hp| | | | | |HIP HIP | +160096 |BS Cap |215056.5-201120 |LB | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +160097 |BT Cap |215538.4-210824 |SRB: | 7.04 | 7.14 | |Hp| | | | | |HIP HIP | +160098 |BU Cap |215607.6-140208 |LB | 7.70 | 7.95 | |Hp| | | | | |HIP HIP | +160099 |BV Cap |215624.9-093509 |LB | 7.82 | 8.02 | |Hp| | | | | |HIP HIP | +160100 |BW Cap |215843.8-211059 |LB | 6.07 | 6.19 | |Hp| | | | | |HIP HIP | +160101 |BX Cap |205239.3-202000 |LB | 11.2 | 12.8 | |p | | | | | |75064 UCAC2| +160102 |BY Cap |214132.9-140251 |RS | 5.13 | 5.18 | |V | | | | | |75011 BD | +160103 |BZ Cap |203618.0-241814 |SR: | 10.4 | 11.0 | |V | | | | | |77004 DM | +160104 |CC Cap |204409.7-221812 |SR: | 11.7 | 12.8 | |V | | | | | |77004 UCAC2| +160105 |CD Cap |205235.9-263851 |SR: | 12.3 | 13.0 | |V | | | | | |77004 GSC | +160106 |CE Cap |210242.8-234655 |SR: | 11.6 | 12.2 | |V | | | | | |77004 77228| +160107 |CF Cap |210331.6-245555 |SR: | 12.8 | 13.6 | |V | | | | | |77004 UCAC2| +160108 |CG Cap |211801.2-232750 |SR: | 13.2 | 14.1 | |V | | | | | |77004 GSC | +160109 |CH Cap |211937.5-224227 |SR: | 11.8 | 12.6 | |V | | | | | |77004 DM | +160110 |CI Cap |212201.6-213727 |SR: | 13.9 | 15.3 | |V | | | | | |77004 GSC | +160111 |CK Cap |213953.4-154035 |LB: | 12.0 | 12.8 | |V | | | | | |77004 UCAC2| +160112 |CL Cap |201826.8-185820 |EW | 12.49 | 12.93 | |* |52508.702 | | 0.39118 | | |78122 GSC | +160113 |CM Cap *|201949.6-123038 |EW | 9.70 | 10.25 | 10.20 |V |51979.010 | | 0.4189 | |F8/G0V |78130 DM | +160114 |CN Cap |202154.0-162704 |RRAB | 14.84 | 15.32 | |* |52496.7839 | | 0.58840 |20 | |78172 GSC | +160115 |CO Cap |203310.5-234011 |SRA | 10.8 | 12.8 | |V |52156 | | 242. | |M5e |78090 78174| +160116 |CP Cap |212559.3-150305 |RRC: | 12.9 | 13.5 | |V |52116.695 | | 0.344291 : |38 | |79100 79010| +160117 |CQ Cap |212632.7-175243 |EB | 8.82 | 9.21 | 9.10 |V |52867.648 | | 0.690808 | |A9V |79011 DM | +160118 |CR Cap *|212721.2-190759 |RR(B) | 12.9 | 14.2 | |V |53172.822 | | 0.35206 | | |79208 79010| +160119 |CS Cap |215654.3-121250 |SRB | 9.3 | 10.3 | |V | | | 74. | |M3:III: |79100 DM | +160120 |CT Cap |201159.5-155402 |RRAB | 14.1 | 15.1 | |* |52846.6159 | | 0.56793 |15 | |80544 80544| NL80_3 +160121 |CU Cap |201903.0-140205 |RS | 10.60 | 11.35 | |V | | | 11.794 | |K1IIIe |80034 GSC | NL80_3 +160122 |CV Cap |201908.4-164800 |EW | 13.70 | 13.93 | 13.90 |* |52846.475 | | 0.32191 | | |80164 80164| NL80_3 +160123 |CW Cap |201911.3-163959 |EW | 14.45 | 14.70 | 14.70 |* |52493.418 | | 0.3641660 | | |80164 80164| NL80_3 +160124 |CX Cap |202411.8-245701 |RVA: | 12.4 | 13.7 | |V |52945.5 | | 51.37 | | |80022 GSC | NL80_3 +160125 |CY Cap |202842.3-094317 |RS | 9.25 | 9.45 | |V | | | 2.402 | |G5 |80034 DM | NL80_3 +160126 |CZ Cap |203224.4-112517 |RRAB | 13.57 | 15.00 | |* |51452.72 | | 0.68503 | | |80026 GSC | NL80_3 +160127 |DD Cap |203425.0-104058 |EA/RS | 10.03 | 10.40 | |V |52040.825 | | 7.3457 | |K1III |80048 GSC | NL80_3 +160128 |DE Cap |203510.3-191411 |EW | 12.88 | 13.28 | 13.23 |* |52508.676 | | 0.3927425 | | |80164 80164| NL80_3 +160129 |DF Cap |203641.3-191500 |RPHS | 15.42 |( 0.05 )| |B | | | 0.001701 | |sdB |80327 GSC | NL80_3 +160130 |DG Cap |204142.3-221921 |BY | 9.72 | 10.00 | |V | | | 5.3080 | |K6Ve |80034 HIP | NL80_3 +160131 |DH Cap |211155.5-210942 |RRAB | 13.2 | 14.4 | |V |52067.736 | | 0.469366 |11 | |80135 GSC | NL80_3 +160132 |DI Cap |211305.3-172913 |BY | 10.50 | 10.76 | |V | | | 4.820 : | |K6Ve |80034 GSC | NL80_3 +160133 |DK Cap *|213513.3-133323 |RPHS | 12.9 |( 0.01 )| |B | | | 0.0457 | |sdB |80578 GSC | NL80_3 +160134 |DL Cap |213902.0-211246 |RRAB | 11.9 | 12.6 | |V |53279.676 | | 0.661860 |15 | |80002 GSC | NL80_3 +160135 |DM Cap *|215411.1-090122 |NL | 20.2 | 20.7 | |* | | | | |pec(e) |80030 80027| NL80_3 +169003 |gam Cap |214005.5-163944 |ACV | 3.20 |( 0.03 )| |J | | | | | |75065 BD | +169004 |del Cap *|214702.4-160738 |EA | 2.81 | 3.05 | 2.90 |V |35656.913 | | 1.0227688 |08 *|A7mIII |06781 BD | +169005 |eps Cap *|213704.8-192758 |GCAS | 4.48 | 4.72 | |V | | | | |B3IV-Vpeq |03712 BD | +169009 |iot Cap |212214.8-165004 |BY | 4.27 |( 0.06 )| |V | | | | | |73005 BD | +170001 |R Car *|093214.6-624720 |M | 3.9 | 10.5 | |V |42000. | | 308.71 |48 |M4e-M8e |00001 00002| +170002 |S Car |100921.9-613256 |M | 4.5 | 9.9 | |V |42112. | | 149.49 |51 |K5e-M6e |00001 00002| +170003 |T Car |105517.2-603101 |CST: | 7.00 | | |B | | | | |K0III |00693 03508| +170004 |U Car *|105748.2-594356 |DCEP | 5.72 | 7.02 | |V |37320.055 | | 38.7681 |21 |F6-G7Iab |06006 08613| +170005 |V Car *|082843.7-600721 |DCEP | 7.08 | 7.82 | |V |37454.023 | | 6.69668 |30 : |F6-G2Ib-II |06006 CoD | +170006 |W Car | | | | | | | | | | | | |=V Vel +170007 |X Car *|083116.8-591337 |EB/KE | 7.90 | 8.65 | 8.6 |V |28857.146 | | 1.0826310 | |A0V+A0V |00007 CoD | +170008 |Y Car *|103310.9-582955 |DCEP(B) | 7.53 | 8.48 | |V |41041.39 | | 3.639760 |29 |F3 |06143 03308| +170009 |Z Car |101354.6-585109 |M | 10.2 | 15.2 | |V |39448. | | 384.01 |37 |M6e |00001 00002| +170010 |RR Car *|095804.8-585140 |SRB | 9.1 | 10.4 | |p | | | | |M6.5SII-III |02430 00002| +170011 |RS Car |110805.7-615608 |NA | 7.0 |< 15.8 | |p |13285. :|1895 | | |pec(NOVA) |01887 05288| +170012 |RT Car *|104447.1-592448 |LC | 8.2 | 9.9 | |V | | | | |M2Ia-0 |00001 03508| +170013 |RU Car |091516.9-661410 |LB | 10.9 | 12.1 | |p | | | | |N3 |00370 05625| +170014 |RV Car |095820.9-635352 |M | 10.2 |< 16. | |V |38937. | | 365.68 |39 |M6e |00001 00002| +170015 |RW Car |091936.1-684528 |M | 8.5 | 15.0 | |V |38991. | | 318.62 |47 |M4e-M7e |00001 00002| +170016 |RX Car |103645.8-621917 |M | 12. |< 14. | |p |19466. | | 332.8 | |MS |00697 USNO | +170017 |RY Car *|112011.4-615217 |M | 12.5 |< 17.2 | |p |38744. | | 424.3 |45 |S7,8e |00001 06816| +170018 |RZ Car |103537.3-704300 |M | 8.8 |< 15.0 | |V |39586. | | 272.77 |42 |M4e-M8e |00001 00002| +170019 |SS Car |105810.6-615458 |EA | 12.3 | 13.0 | |p |23828.36 | | 3.300759 |07 |A |00034 08613| +170020 |ST Car *|101553.1-601255 |EB/SD | 9.6 |( 1.15 )|( 0.27 )|V |44317.7292 | | 0.90164965 | |A0IV+F6 |06833 03508| +170021 |SU Car |101330.4-605310 |M | 10. | 17.5 | |p |40096. | | 575.6 | |M5-M8e |05148 05625| +170022 |SV Car |094820.6-593212 |M | 10.1 |< 13.8 | |p |29340. | | 298.4 | |M9e |01000 USNO | +170023 |SW Car *|102657.1-581634 |EA/DS | 10.8 | 12.4 |( 0.05 )|p |28947.643 | | 8.165878 |10 *|A0 |03308 05289| +170024 |SX Car |104605.8-573251 |DCEP | 8.66 | 9.47 | |V |35074.336 | | 4.8600 |30 |F5-G2Ib-II |06006 02483| +170025 |SY Car |111538.6-575542 |LB | 10.8 | 11.6 | |p | | | | |C(N3) | 05625| +170026 |SZ Car *|095951.7-601306 |SRB | 10.0 | 12.1 | |p | | | 126. : | |C(N3) |00692 05625| +170027 |TT Car |102039.4-614448 |M | 12. |< 17. | |p |20621. | | 370.5 | |M6e |00697 03508| +170028 |TU Car |103456.0-604238 |M | 12. |< 17. | |p |20347. | | 258. | |C |00697 03508| +170029 |TV Car |103843.6-604925 |LB: | 12.4 | 14.72 | |B | | | | |C |01889 GSC | +170030 |TW Car |105504.1-590325 |LB: | 11.7 | 13.7 | |p | | | | |M3 |01889 GSC | +170031 |TX Car *|105858.1-590457 |RRAB | 12.5 | 13.3 | |p |24566.442 | | 0.6011360 |27 : | |00694 00694| +170032 |TY Car |105141.3-724610 |SRB | 11.0 | 12.5 | |p | | | 184. | |M5 |00003 05625| +170033 |TZ Car *|104603.0-653653 |SRB | 10.2 | 11.9 | |p | | | 69. | |R5 |00003 05625| +170034 |UU Car |092658.5-733237 |M | 9.9 |< 12.9 | |p |29523. | | 197.68 |47 |M3e |00001 08613| +170035 |UV Car |102423.3-605431 |LB | 10.6 | 12.6 | |p | | | | |M3-M5 |00016 05625| +170036 |UW Car |102650.9-594010 |DCEP | 8.98 | 9.86 | |V |34897.059 | | 5.345773 |28 |G0 |06006 05625| +170037 |UX Car *|102911.2-573648 |DCEP | 7.81 | 8.67 | |V |34906.805 | | 3.682246 |26 |F5-G1II |06006 03508| +170038 |UY Car |103204.4-614658 |DCEP | 8.54 | 9.33 | |V |34890.645 | | 5.543726 |27 |G |06006 03508| +170039 |UZ Car |103617.8-610045 |DCEP | 9.00 | 9.62 | |V |34894.69 | | 5.20466 |29 |G0 |06006 03508| +170040 |VV Car *|103826.0-591223 |INB: | 11.4 | 13.0 | |p | | | | |M3-M6 | 03308| +170041 |VW Car |103824.0-604712 |M | 13. |< 16. | |p |24916. | | 109.03 | | |00077 00077| +170042 |VX Car |104020.0-575641 |L | 11.1 | 12.7 | |p | | | | | |03551 03551| +170043 |VY Car *|104432.7-573355 |DCEP | 6.87 | 8.05 | |V |10009.58 | | 18.990 |36 |F6-G4Iab-Ib |02309 06998| +170044 |VZ Car |105054.8-602108 | | 13.1 |< 15.1 | |p | | | | | |01888 08613| +170045 |WW Car |105135.8-592306 |DCEP | 9.35 | 10.11 | |V |34925.15 | | 4.67681 |28 |F0 |02309 08613| +170046 |WX Car |105358.7-583128 |M | 13. |< 17. | |p | | | 390. : | | |00697 05151| +170047 |WY Car |105415.4-582402 |M: | 14. | 17. | |p | | | 280. : | | |00697 USNO | +170048 |WZ Car *|105518.7-605624 |DCEP | 8.65 | 10.01 | |V |44143.17 | | 23.0132 |17 |F8 |00001 08613| +170049 |XX Car *|105709.2-650805 |DCEP | 8.67 | 9.89 | |V |36221.730 | | 15.71624 |33 |G0 |02309 CoD | +170050 |XY Car *|110216.1-641546 |DCEP | 8.82 | 9.77 | |V |36190.230 | | 12.43483 |39 |G5 |02309 CoD | +170051 |XZ Car *|110413.5-605848 |DCEP | 8.05 | 9.13 | |V |36205.754 | | 16.6499 |37 |K5 |06006 08613| +170052 |YY Car |102009.1-612634 |EA/SD | 10.0 | 11.5 | |p |23901.932 | | 2.64264 |12 *| |00032 05625| +170053 |YZ Car *|102816.9-592101 |DCEP | 8.24 | 9.08 | |V |34907.04 | | 18.1631 |41 |G5 |02309 03308| +170054 |ZZ Car |105423.6-584655 | | 13.4 | 14.5 | |p | | | | | |01888 USNO | +170055 |AA Car |102151.8-610851 | | 13.5 | 14.5 | |p | | | | | |01889 USNO | +170056 |AB Car |063615.4-555147 |SRA | 11.1 | 13.0 | |p |29850. | | 310. |32 : | |00353 CoD | +170057 |AC Car |070648.0-582252 |SRB | 9.1 | 10.3 | |p | | | 99. : | |M7III |00016 03389| +170058 |AD Car |103523.4-590623 |SR: | 12.0 | 13.3 | |p | | | | |M5-M7 |01889 04641| +170059 |AE Car *|110053.7-584750 | | 14.0 | 15.0 | |p | | | | | |01889 USNO | +170060 |AF Car *|101353.1-590111 |M | 10.0 | 15.0 | |p |38125. | | 453.0 | |M8e |00001 00002| +170061 |AG Car *|105611.6-602713 |SDOR | 7.1 | 9.0 | |p | | | | |B0I-A2Ieq |01890 08613| +170062 |AH Car |071936. -561039:| | 12.0 | 13.0 | |p | | | | | |00029 | +170063 |AI Car |074822.3-522809 |EA: | 10.0 |< 12.0 | |p | | | | | |00029 GSC | +170064 |AK Car |080156.8-575559 |M | 12.7 |< 13.5 | |p |28824. | | 298.2 | | |00001 GSC | +170065 |AL Car |090019.3-594011 |M | 11.5 | 15.5 | |p |28267. | | 424. | | |00016 05625| +170066 |AM Car |101429.4-604328 |SR | 14.3 | 16.5 | |p |21021. | | 314. | |C(N:) |00697 USNO | +170067 |AN Car |101553.8-585233 |M | 13. |< 17. | |p |38770. | | 407.55 | | |00001 GSC | +170068 |AO Car |101758. -594451:| | 13.8 | 15.5 | |p | | | | | |00697 | +170069 |AP Car |101908.2-612230 |M | 12.5 |< 17. | |p |20252. | | 369. | | |00697 05625| +170070 |AQ Car |102123.0-610427 |DCEP | 8.55 | 9.15 | |V |36188.449 | | 9.76896 |50 |F8-G0Ib |06006 05625| +170071 |AR Car |102232. -635848:| | 14. | 15. | |p | | | | | |00697 | +170072 |AS Car *|102423.5-601457 |EA | 11. | 12.2 | |p |23921.655 | | 2.76593 |13 | |00032 05625| +170073 |AT Car |102524.5-595642 | | 10.4 | 12.5 | |p | | | | |B5-B7ea |00029 05625| +170074 |AU Car |102529.6-615101 |M: | 13.8 |< 15.6 | |p |25750. | | 332. | |MS |03551 05625| +170075 |AV Car |103134. -632627:| | 15. | 17. | |p | | | | | |00697 | +170076 |AW Car *|103235.1-604610 |EA/SD | 12.2 | 16.5 | |p |23997.328 | | 6.51070 |09 | |01892 USNO | +170077 |AX Car |103312.4-582944 |CST: | 11.5 | 13. | |p | | | | | |00016 UCAC2| +170078 |AY Car |103431.4-594831 | | 12.1 | 14. | |p | | | | | |00697 UCAC2| +170079 |AZ Car |103517.0-602658 | | 15.5 |< 17. | |p | | | | | |00697 GSC | +170080 |BB Car |103528. -605615:| | 14. | 17. | |p | | | | | |00697 | +170081 |BC Car |103732.3-590039 |SR | 13. | 16. | |p | | | 130. | | |00147 GSC | +170082 |BD Car |104132.7-594816 |IN: | 13.3 | 15. | |p | | | | | |00697 2MASS| +170083 |BE Car |104139. -601949:| | 15. | 15.8 | |p | | | | | |00697 | +170084 |BF Car |104240. -601502:| | 14.8 | 16. | |p | | | | | |00697 | +170085 |BG Car |104252. -600903:| | 14.8 | 16. | |p | | | | | |00697 | +170086 |BH Car |104253. -600633:| | 14.5 | 16. | |p | | | | | |00697 | +170087 |BI Car |104330.9-632903 |LB | 12.6 | 16.5 | |p | | | | | |03551 03551| +170088 |BK Car |104417. -592705:| | 14. | 16. | |p | | | | | |00697 | +170089 |BL Car *|104451.6-595029 |EA/SD | 14.5 | 16.5 | |p |23900.874 | | 3.35531 |13 | |00032 UCAC2| +170090 |BM Car |104518. -602324:| | 14. | 15.5 | |p | | | | | |00697 | +170091 |BN Car |104537. -600837:| | 14. | 16. | |p | | | | | |00697 | +170092 |BO Car *|104550.7-592919 |LC | 7.18 | 8.5 | |V | | | | |M4Ib |00001 08613| +170093 |BP Car *|104641.9-600947 |EA/DS | 11.5 | 12.5 | |p |23879.931 | | 9.64492 |04 *| |00032 08613| +170094 |BQ Car |104747. -583322:| | 15.5 | 17. | |p | | | | | |00697 | +170095 |BR Car |104756.5-600909 |CST | 11.4 | | |p | | | | | |00003 08613| +170096 |BS Car *|104811. -625710:|EW/KW | 14.7 | 15.3 | 15.3 |p |23866.298 | | 0.292506 | | |00032 | +170097 |BT Car |104942.9-604456 |CST: | 12.7 | | |p | | | | | |00016 08613| +170098 |BU Car *|105036.0-593020 |EB | 13.2 | 14.5 : | 13.9 |V |51921.8 | | 1.55515 | | |00001 2MASS| +170099 |BV Car |105139.2-601426 | | 15. |< 17. | |p | | | | | |00697 USNO | +170100 |BW Car |105159. -584739:| | 15. | 16. | |p | | | | | |00697 | +170101 |BX Car |105205.7-622859 |SRA | 12.5 | 15.5 | |p |23925. | | 427. | | |03551 03551| +170102 |BY Car |105259. -601611:| | 14.5 | 16. | |p | | | | | |00697 | +170103 |BZ Car *|105406.3-620233 |SRC | 8.9 | 10.8 | |p | | | 97. | |M3Ib |00003 08613| +170104 |CC Car |105427.0-612049 |DCEP | 11.71 | 12.83 | |V |40741.35 | | 4.75995 |24 | |00001 00077| +170105 |CD Car *|105709.9-610141 |EA | 12. | 12.9 | |p |23900.198 | | 2.96756 |08 *| |00032 08613| +170106 |CE Car |105828.6-634826 | | 11.9 |< 16. | |p | | | | | |01893 USNO | +170107 |CF Car *|105905.1-601644 |DCEP | 13.1 | 13.8 | |p |23789.3 | | 5.4949 |40 | |00077 00077| +170108 |CG Car |105924.0-623356 |M | 11.0 |< 16. | |p |28746. | | 224.7 | |Me |00001 2MASS| +170109 |CH Car *|110424.3-612204 |M | 10.9 | 15.4 : | |V |53473. | | 224.3 | | | UCAC3| +170110 |CI Car *|111406.6-602436 |EA/SD | 11.8 | 13.8 | |p |23901.246 | | 2.81849 |11 |A2 |00032 05151| +170111 |CK Car |102425.4-601129 |SRC | 9.2 | 10.5 | |p |29500. | | 525. : | |M3.5Iab |00692 05625| +170112 |CL Car |105359.9-610531 |SRC | 9.7 | 12.2 | |p |29530. | | 513. | |M5Iab |00003 03508| +170113 |CM Car |094755.8-672707 |M | 11.5 |< 14. | |p |28885. | | 335. | |M2e |00016 GSC | +170114 |CN Car |101532.9-581028 |DCEP | 10.24 | 11.00 | |V |34510.24 | | 4.93261 |30 | |02309 00694| +170115 |CO Car *|101756.6-632230 |EA/DS | 9.6 | 10.8 | |p |23877.983 | | 8.3121 |10 | |00032 CPD | +170116 |CP Car |102548.8-591254 |EA | 13.2 | 14.4 | |p |23898.707 | | 2.3942 |12 *| |00032 03308| +170117 |CQ Car |103120.1-595849 |DCEP | 14.3 | 14.9 | |p |24298.405 | | 5.318934 |26 | |00694 00694| +170118 |CR Car |103254.1-583116 |DCEP | 11.30 | 11.89 | |V |40737.25 | | 9.76094 |50 | |00001 01894| +170119 |CS Car |103437.2-580123 |DCEP | 13.0 | 13.9 | |p |24294.31 | | 6.66234 |30 | |00046 05151| +170120 |CT Car |103655.8-613453 |DCEP | 11.70 | 12.82 | |V |35095.840 | | 18.0565 |33 | |06006 01895| +170121 |CU Car |103948.7-585519 |EA | 13.8 | 15.1 | |p |23928.944 | | 4.10112 |05 *| |00032 USNO | +170122 |CV Car *|104544.4-575500 |EA/DS: | 11.1 | 13.2 |( 0.05 )|p |25759.730 | | 14.414897 |10 |A3 |01896 01896| +170123 |CW Car |104640.9-572035 |EA/SD | 12.8 | 14.2 | |p |23940.986 | | 1.97398 |13 *| |00032 05151| +170124 |CX Car |105735.2-583313 |EA/SD | 10.0 | 10.8 | |p |23909.914 | | 3.34717 |12 *|A |00032 CPD | +170125 |CY Car |105750.7-604432 |DCEP | 9.44 | 10.05 | |V |35069.355 | | 4.26593 |34 |G0 |06006 00694| +170126 |CZ Car |110329.4-602412 |EA | 12.6 | 13.6 | |p |23900.498 | | 2.2850 |13 *| |00032 08613| +170127 |DD Car |110552.8-632956 |EA/SD | 13.2 | 14.1 | |p |23904.270 | | 1.44272 |14 *| |00032 UCAC2| +170128 |DE Car *|110613.7-604733 |EA/SD | 11.2 | 13.8 | |p |23891.343 | | 3.71306 |11 |A |00032 05151| +170129 |DF Car |111016.0-632505 |EA/DM | 12.8 | 13.3 | |p |23906.697 | | 1.8663 |10 *| |00032 GSC | +170130 |DG Car |111208.9-611424 |EA/DS | 11.3 | 13.3 | |p |18098.75 | | 34.7247 |04 | |01267 CPD | +170131 |DH Car *|111452.0-614538 |UV | 14.6 | 16.36 | |B | | | | | |02194 05290| +170132 |DI Car *|111552.4-695447 |* | 9.63 | 12.19 | |V | | | | |pec(R) | 05324| +170133 |DK Car *|111657.9-602929 |EA/DS | 11.6 | 12.7 | |p |23918.458 | | 11.335 |10 | |00032 05151| +170134 |DL Car |111804.3-591011 |EA/SD | 12.8 | 14.4 | |p |23901.355 | | 4.8215 |09 *| |00032 05625| +170135 |DM Car *|111843.1-583012 |EA/SD | 13.1 | 15.1 | |p |23911.648 | | 5.3163 |14 | |00032 USNO | +170136 |DN Car |101031.7-604226 |EA/SD | 13. | 14.4 | |p |23871.050 | | 1.4525 |15 *| |00035 03311| +170137 |DO Car |101320.6-591308 |EA | 9.3 | 9.5 | |p |29765.533 | | 3.85194 |09 |A1IV-V |00007 CoD | +170138 |DP Car *|101455.9-582415 |EA | 13. | 14.0 | 13.1 |p |23877.795 | | 7.5637 |10 |A8 |00035 GSC | +170139 |DQ Car |102156.7-571441 |EA | 11.1 | 11.5 | |p |23872.929 | | 0.86691 |19 |A0 |00035 CPD | +170140 |DR Car |102441.4-602955 |EA/SD | 11.7 | 12.5 | |p |23849.5 | | 3.9957 |10 : |B5 |00016 05625| +170141 |DS Car *|103104.8-613947 |EA/KE: | 12.5 | 12.9 | |p |23843.447 | | 1.0988 |10 | |00035 UCAC2| +170142 |DT Car |103652.6-583628 |EA | 14.5 | 14.9 | |p |23869.293 | | 4.2866 |11 | |00035 2MASS| +170143 |DU Car *|103736.0-641554 |EA | 13.5 | 14.6 | |p |23856.352 | | 4.9695 |10 | |00035 USNO | +170144 |DV Car |104004.6-601216 |EA/KE: | 10.0 | 10.3 | |p |23840.321 | | 0.8405 |24 |B8 |00035 CoD | +170145 |DW Car *|104310.1-600212 |EA/KE | 9.6 | 10.3 | 10.3 |p |29241.997 | | 1.3277504 |18 |B5 |00007 08613| +170146 |DX Car |104448.2-622355 |EA/DM | 10.6 | 10.8 | |p |23810.13 | | 10.466 |10 | |00035 CPD | +170147 |DY Car |105232.8-603136 |DCEP | 10.91 | 11.76 | |V |40773.22 | | 4.67461 |24 | |00001 00694| +170148 |DZ Car |105809.9-592301 |EA/AR: | 13. | 13.7 | |p |23899.235 | | 2.3921 |15 *| |00035 08613| +170149 |EE Car |105944.9-640946 |RRAB | 12.9 | 13.5 | |p |24553.54 | | 0.6787054 |16 | |00694 00694| +170150 |EF Car *|110036.3-571241 |EA | 13. | 13.6 | |p |23899.42 | | 6.578 |08 | |00035 2MASS| +170151 |EG Car *|110159.1-574521 |EA | 13.5 | 14.1 | |p |23874.264 | | 6.908 |10 *| |00035 USNO | +170152 |EH Car *|110423.8-611823 |EA/DS | 12.5 |< 15. | |p |23916.48 | | 13.367 |08 | |00035 08613| +170153 |EI Car |110513.7-621600 |EA/SD | 14. | 15.3 | |p |23870.557 | | 0.90145 |16 *| |00035 USNO | +170154 |EK Car *|110557.5-593850 |EA/DM | 14. | 14.4 | |p |23864.54 | | 1.75106 |16 *| |00035 USNO | +170155 |EL Car |110642.5-643539 |EA/SD | 13.5 |< 15. | |p |23912.93 | | 3.46824 |12 | |00035 USNO | +170156 |EM Car *|111204.5-610543 |EA/DM | 8.73 | 9.0 | 8.9 |B |29551.574 | | 3.41427 |14 *|O8V+O8V |00007 05288| +170157 |EN Car *|111207.5-604316 |EA/KE | 10.58 | 10.9 | |B |23879.894 | | 1.53498 |15 *|B3-B5 |00035 05288| +170158 |EO Car |111939. -571720:|EA | 13.5 | 14.4 | |p |23870.129 | | 2.15225 |18 *| |00035 | +170159 |EP Car |102823.2-585759 |M: | 13.0 |< 16. | |p | | | | | |05473 01267| +170160 |EQ Car *|104719.8-582813 |EA/DS: | 13.5 | 14.5 | 13.7 |p |25018.12 | | 25.5190 |17 | |01900 USNO | +170161 |ER Car *|110941.1-585016 |DCEP | 6.58 | 7.13 | |V |40277.88 | | 7.71855 |34 |F8-G1Iab-Ib |05366 03389| +170162 |ES Car *|111013.1-601403 |INS | 13.0 | 14.5 | |p | | | | | |01890 05174| +170163 |ET Car |101124.3-612910 |DCEP | 14. | 15.4 | |p |26883.217 | | 2.910837 |17 | |00046 | +170164 |EU Car |101606.5-620555 |EA/SD | 14. | 15.4 | |p |23918.540 | | 2.52589 |09 | |01892 USNO | +170165 |EV Car |102021.6-602716 |SRC | 9.2 | 10.6 | |p |29475. | | 347. : | |M4.5Ia |00692 05625| +170166 |EW Car |102049.7-611507 |DCEP | 14.5 | 15.3 | |p |24560.83 | | 4.23873 |17 | |00046 | +170167 |EX Car |102459.6-633810 |EA/SD | 10.0 | 11.5 | |p |23997.641 | | 1.396366 |14 *|G0 |01892 CPD | +170168 |EY Car |104223.0-610957 |DCEP | 10.00 | 10.68 | |V |35067.004 | | 2.87598 |30 | |08711 CPD | +170169 |EZ Car *|104253.9-622333 |EA/KE | 9.5 | 10.0 | 9.8 |p |23995.421 | | 1.1886881 |20 |B4III-IV |00003 CPD | +170170 |FF Car |104454.1-581753 |DCEP | 13.2 | 14.2 | |p |26007.10 | | 16.3285 |37 | |00046 GSC | +170171 |FG Car |104730.1-573303 |EA | 13. | 14.1 | |p |23903.885 | | 2.262515 |14 *| |01892 UCAC2| +170172 |FH Car |104818.6-603903 |DCEP | 13.0 | 14.0 | |p |25570.23 | | 5.66439 |25 | |00046 08613| +170173 |FI Car *|105101.8-583526 |DCEP | 11.34 | 11.92 | |V |41122.8 | | 13.4582 |50 | |00001 05151| +170174 |FK Car *|105356.4-595754 |DCEP | 13. | 14.4 | |p |25382.96 | | 23.254 |14 | |00046 08613| +170175 |FL Car |105354.4-612721 |EA | 12.5 | 12.8 | |p |23940.386 | | 0.92576 |25 | |01892 08613| +170176 |FM Car |110025.1-605936 |DCEP | 13. | 14.1 | |p |24298.06 | | 7.63861 |29 | |01901 08613| +170177 |FN Car |110114.4-600700 |DCEP | 11.16 | 11.85 | |V |34899.352 | | 4.58569 |40 : | |06006 08613| +170178 |FO Car *|110130.7-621727 |DCEP | 10.51 | 11.11 | |V |41115.8 | | 10.3568 |45 | |00001 GSC | +170179 |FP Car *|110435.9-623422 |EA | 10.1 | 11.5 | |B |21725.048 | | 176.027 |04 |B5III |00003 05291| +170180 |FQ Car *|111012.9-605051 |DCEP | 12.8 | 14.0 | |p |41148.24 | | 10.27399 |44 | |07934 UCAC2| +170181 |FR Car |111421.2-600311 |DCEP | 9.29 | 10.04 | |V |41048.5 | | 10.71697 |43 |G5 |00001 05151| +170182 |FS Car *|103839.2-590933 |EB | 10.8 | 11.5 | 10.9 |p |22746.105 | | 2.146587 | | |01902 01902| +170183 |FT Car *|103923.0-604919 |RR | 12.2 | 14.4 | |p | | | 0.5 : | | |00699 UCAC2| +170184 |FU Car |104100.3-592313 |M: | 15. |< 17. : | |p | | | 365. : | |Cea |01903 GSC | +170185 |FV Car *|104231.9-615756 |EA/SD | 12.9 | 15.8 | 13.0 |p |30877.1073 | | 2.11149854 |19 | |03106 GSC | +170186 |FW Car |104250.9-590503 |M: | 15. |< 17. : | |p | | | 365. : | | |01903 | +170187 |FX Car |105355.9-590128 |M | 16.3 |< 18.5 | |p | | | 380. | | |00249 USNO | +170188 |FY Car |105034.7-623217 |SR: | 11.0 | 12.5 | |p |28665. | | 27.0 | | |00016 01902| +170189 |FZ Car |105401.8-591159 |DCEPS | 11.72 | 12.12 | |V |25738.51 | | 3.57792 |45 | |08711 01905| +170190 |GG Car *|105558.9-602334 |EB/GS | 9.1 | 9.5 | 9.5 |p |29580.13 | | 62.086 | |Beq |00007 01906| +170191 |GH Car *|111044.6-604501 |DCEPS | 9.00 | 9.35 | |V |35069.395 | | 5.72557 |44 |G0 |06006 05288| +170192 |GI Car |111400.0-575439 |DCEPS | 8.10 | 8.47 | |V |34924.602 | | 4.43061 |46 |F3-F8Iab-Ib |06006 05625| +170193 |GK Car *|111401.5-574316 |RV | 12.5 | 14.0 | 13.2 |p |24239. | | 55.6 |14 | |01905 01905| +170194 |GL Car *|111439.8-603936 |EA/DM | 9.73 | 10.33 | 10.31 |B |24264.448 | | 2.4222338 |14 *|B3:V |01907 05288| +170195 |GM Car *|103715.6-591423 |EB/KE | 9.11 |< 9.39 | 9.22 |V |29344.340 | | 1.535433 | |B8II-III |08083 03308| +170196 |GN Car *|110859.7-641928 |EB | 11.8 | 13.1 | 12.1 |p |23970.247 | | 4.34381 | | |00055 00055| +170197 |GO Car *|102008.9-613452 |EA | 14.3 | 14.8 | |p |24641.422 | | 2.75646 |13 *| |01909 01909| +170198 |GP Car *|103001.0-590444 |EA | 12.4 | 12.8 | 12.8 |p |24445.440 | | 2.264192 |23 | |00060 00060| +170199 |GQ Car *|103620.8-603542 |EW | 13.0 | 13.7 | 13.5 |p |24001.220 | | 0.68371 | | |00060 00060| +170200 |GR Car *|103850.7-581237 |EA/DM | 13.6 | 14.0 | 14.0 |p |23906.54 | | 17.13952 |02 | |01910 00060| +170201 |GS Car |105154.2-612802 |DCEP | 12.8 | 14.1 | |p |24072.10 | | 4.05515 |20 | |00060 00060| +170202 |GT Car |105926.1-592911 |DCEP | 11.57 | 13.19 | |V |26128.51 | | 13.1620 |50 | |00046 00060| +170203 |GU Car |110652.3-571403 |EA/SD | 11.1 | 12.2 | |p |28692.42 | | 3.49056 |13 |A2 |00016 00060| +170204 |GV Car *|110532.9-584350 |EA/DM | 8.92 | 9.32 | 9.1 |V |23828.433 | | 4.294621 |10 *|A0 |01911 03389| +170205 |GW Car *|093623.3-595910 |EB/KE | 9.55 | 10.1 | 9.9 |V |30291.0395 | | 1.1289111 | |B1III:n |01123 03312| +170206 |GX Car |095526.2-582547 |DCEP | 8.94 | 9.77 | |V |40741.13 | | 7.19673 |29 |F8II-K0 |00001 05625| +170207 |GY Car |100154.2-624938 |M | 11.3 |< 15.0 | |p |30875. | | 305. | | |04151 04151| +170208 |GZ Car *|102020.4-592236 |DCEPS(B) | 9.98 | 10.47 | |V |40742.6 | | 4.15901 |45 |G5 |07326 00092| +170209 |HH Car *|105336.7-592718 |EA/DM | 10.30 | 10.82 | 10.66 |V |41698.660 | | 3.231497 |18 |Bea |00001 05292| +170210 |HI Car *|110127.1-602629 |EA/SD | 10.6 | 11.5 | 10.8 |p |30334.761 | | 2.227342 |18 *|B5 |01123 01123| +170211 |HK Car *|110345.2-603832 |DCEP | 10.71 | 11.60 | |B |34535.35 | | 6.69574 |30 |G5 |02309 00092| +170212 |HL Car *|100442.8-615035 |EA/DS | 11. | 14. | |p |23379.16 | | 18.22465 |09 | |00077 03311| +170213 |HM Car |100951.6-610025 |EA/DS | 12. | 13. | |p |24996.978 | | 10.97299 |07 | |00077 00077| +170214 |HN Car *|101024.9-610001 |EA/KE | 11.9 | 12.5 | 12.5 |p |24358.678 | | 1.3918766 |17 | |00077 00077| +170215 |HO Car |101618.4-633220 |RRC | 13.3 | 13.8 | |p |23900.710 | | 0.4021 |50 | |00077 00077| +170216 |HP Car *|101935.7-572419 |EA/DM | 8.85 | 9.3 | 9.3 |V |24348.182 | | 1.6004464 |12 *|B2IIIn |00077 07330| +170217 |HQ Car *|102032.0-611457 |DCEP | 11.84 | 13.02 | |V |20326.03 | | 14.0722 |31 | |00077 00077| +170218 |HR Car *|102253.8-593728 |SDOR | 8.2 | 9.6 | |p | | | | |B2eq |01913 03308| +170219 |HS Car |102434.2-593209 |DCEP | 12.7 | 13.9 | |p |24593.52 | | 5.092090 |30 | |00077 00077| +170220 |HT Car *|102822.5-574448 |EW | 13.8 | 14.3 | 14.0 |p |24282.1840 | | 0.6629146 | | |01915 01915| +170221 |HU Car |103105.7-622334 |RRAB | 14.0 | 14.9 | |p |24650.364 | | 0.6620123 |11 | |01915 01915| +170222 |HV Car *|103527.3-572938 |EA | 14.0 | 14.4 | 14.2 |p |24560.507 | | 2.583908 |07 | |01915 01915| +170223 |HW Car *|103920.3-610909 |DCEP | 9.0 | 9.8 | |p |24404.94 | | 9.2002 |50 |G2-3Ib-II |00077 CoD | +170224 |HX Car *|104350.8-595238 |EA | 14.4 | 15.2 | 14.5 |p |24389.943 | | 3.242949 |10 | |00077 00077| +170225 |HY Car |104343.3-625400 |RRAB | 13.6 | 15.0 | |p |24922.770 | | 0.5095905 |10 | |00077 00077| +170226 |HZ Car |104611.9-600035 |EA/DS | 14.6 | 16. : | |p |26423.30 | | 38.35941 |01 | |00077 00077| +170227 |II Car |104849.1-600347 |DCEP | 14.0 | 14.9 | |p |24884.80 | | 64.24 |27 | |00077 00077| +170228 |IK Car *|104857.6-641027 |DCEP | 14.1 | 15.0 | |p |24561.28 | | 5.10179 |20 | |01915 01915| +170229 |IL Car *|105341.7-613654 |EA | 14.3 |< 15.3 | 14.4 |p |25377.345 | | 2.808617 |13 | |01915 01915| +170230 |IM Car |105509.2-603252 |DCEP | 12.9 | 13.8 | |p |24537.21 | | 5.33625 |32 | |01915 01915| +170231 |IN Car *|105623.1-611446 |EA | 14.7 | 15.3 | |p |24573.574 | | 1.6768072 |19 *| |01916 01916| +170232 |IO Car |105626.2-604358 |CEP | 11.81 | 12.56 | |B |24378.72 | | 13.606 |46 | |00077 00077| +170233 |IP Car |110128.4-641727 |DCEP | 14. | 15. | |p |24394.59 | | 7.1225 |22 | |00077 00077| +170234 |IQ Car *|110529.4-575544 |EA/DS | 13.8 | 15.4 | |p |25009.04 | | 14.2860 |08 *| |00077 00077| +170235 |IR Car *|110906.5-594029 |EW/KW | 12.2 | 12.6 | 12.6 |p |24380.061 | | 0.3460624 | | |00077 00077| +170236 |IS Car *|111123.0-622612 |EW/KW | 13.6 | 14.0 | 14.0 |p |24579.714 | | 0.4296032 | | |00077 00077| +170237 |IT Car |111210.1-614518 |DCEP | 7.90 | 8.29 | |V |37299.766 | | 7.53320 |36 |F8-K2Iab-Ib |06006 05288| +170238 |IU Car *|065307.5-593544 |RRAB | 11.35 | 12.30 | |V |41695.359 | | 0.737148 |18 |A6-F5 |00001 02338| +170239 |IV Car |100236.7-585723 |EA/SD | 11.3 | 14.1 | |p |30853.244 | | 2.742844 |11 *| |00046 02338| +170240 |IW Car *|092653.3-633749 |RVB | 7.9 | 9.6 | |p |29401. | | 67.5 | |F7-8 |01917 08087| +170241 |IX Car *|105026.3-595857 |SRC | 9.0 | 10.0 | |p |28900. | | 400. | |M2Iab |01918 08613| +170242 |IY Car |074310.8-624734 |M | 11. |< 16. | |p | | | | |Me |00085 02385| +170243 |IZ Car *|083225.2-570213 |M | 12. |< 14. | |p | | | | |Me |00085 02381| +170244 |KK Car |083601.3-595627 |M | 11.8 | 15.2 | |p | | | | |M5ep |00085 02385| +170245 |KL Car |094248.8-634131 |M | 12. |< 13.5 | |p | | | | |S2,5e |00085 02382| +170246 |KM Car |095225.0-630113 |M | 11.9 |< 15.0 | |p |31575. | | 244. | | |04151 04151| +170247 |KN Car |100248.5-702728 |M | 13. |< 16.5 | |p |19175. | | | |S5,6e |00085 02385| +170248 |KO Car |100918.5-650834 |M | 11. |< 13. | |p | | | | | |00085 02382| +170249 |KP Car |101329.6-724131 |EA | 11. |< 13. | |p | | | | | |00085 CPD | +170250 |KQ Car *|092919.5-605122 |EA/SD | 10.2 | 11.5 | 10.3 |p |30868.225 | | 2.318375 |17 *|B8III-IV |00245 03312| +170251 |KR Car |092956.2-620912 |M | 12.3 |< 15.0 | |p |31635. | | 112. | |Me |00245 00245| +170252 |KS Car |072650.3-615135 |SR | 12.5 | 14.5 | |p | | | | |M5e |00085 02385| +170253 |KT Car |080108.0-553906 |M | 13.8 |< 18. | |p | | | | |M0e |04618 04256| +170254 |KU Car *|103745.2-584011 |EA | 11.1 | 11.6 | 11.6 |p |30845.981 | | 5.921121 |09 *| |01123 01123| +170255 |KV Car |110302.6-670737 |SRB | 9.8 | 10.6 | |p | | | 150. : | |M4III |00090 05625| +170256 |KW Car |085626.0-585437 |M | 11.8 |< 15.0 | |p |30140. | | 383. | |Me |04151 04151| +170257 |KX Car |085646.8-624249 |M | 11.4 |< 15.0 | |p |30873. | | 269. | |Me |04151 04151| +170258 |KY Car |090254.1-574829 |M | 13.5 |< 15.5 | |p |31617. | | 325. : | | |04151 04151| +170259 |KZ Car |090320.9-584047 |M | 13.7 |< 17. | |p |30850. | | 263. | | |04151 04151| +170260 |LL Car |090538.3-624137 |M | 13.6 |< 15.5 | |p |31610. | | 285. | | |04151 04151| +170261 |LM Car |090724.8-655237 |M | 14. | 17. | |p |36724. | | | | |04001 04001| +170262 |LN Car |090620.2-735723 |RR | 15. | 16. | |p | | | | | |04001 04001| +170263 |LO Car |090901.6-660845 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +170264 |LP Car |091010.3-680738 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +170265 |LQ Car |091048.0-661122 |EA | 15. |< 17. | |p | | | | | |04001 04001| +170266 |LR Car |091103.7-660343 |EA | 14. | 14.5 | |p | | | | | |04001 04001| +170267 |LS Car |091049.7-722647 |SR | 12. | 13. | |p |36730. :| | | | |04001 04001| +170268 |LT Car |091330.9-683343 |RR | 13.5 | 15. | |p | | | | | |04001 04001| +170269 |LU Car |091333.1-701632 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +170270 |LV Car |091509.2-660847 |RR | 15. | 16. | |p | | | | | |04001 04001| +170271 |LW Car |091538.4-692023 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +170272 |LX Car |091822.5-675518 |RR | 16. | 17. | |p | | | | | |04001 04001| +170273 |LY Car |091806.3-733204 |RR | 15.5 | 16.5 | |p | | | | | |04001 04001| +170274 |LZ Car |092238.0-693440 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +170275 |MM Car |092501.7-711351 |RR | 15. | 16. | |p | | | | | |04001 04001| +170276 |MN Car |092722.9-630246 |M | 12.7 |< 15.5 | |p |31510. | | 237. | | |04151 04151| +170277 |MO Car |092658.3-703040 |RR | 14. | 15. | |p | | | | | |04001 04001| +170278 |MP Car *|092829.3-672608 |RR | 14. | 15. | |p | | | | | |04001 04001| +170279 |MQ Car |092853.8-700416 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +170280 |MR Car |092924.2-695235 |RR | 16. | 17. | |p | | | | | |04001 04001| +170281 |MS Car |093027.6-662030 |RR | 16. | 17. | |p | | | | | |04001 04001| +170282 |MT Car |093052.7-680640 |RR | 16. | 17. | |p | | | | | |04001 04001| +170283 |MU Car |093129.6-680733 |RR | 14. | 15.5 | |p | | | | | |04001 04001| +170284 |MV Car |093322.9-685701 |EA | 13.5 | 14. | |p | | | | | |04001 04001| +170285 |MW Car |093537.6-654545 |EA | 14.5 | 15.5 | |p | | | | | |04001 04001| +170286 |MX Car |093739.2-663427 |RR | 15. | 16.5 | |p | | | | | |04001 04001| +170287 |MY Car |093722.4-680841 |RR | 15. | 16.5 | |p | | | | | |04001 04001| +170288 |MZ Car *|093729.8-673820 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +170289 |NN Car |093744.3-715501 |EA | 13. | 14.5 | |p | | | | | |04001 04001| +170290 |NO Car |093929.4-615803 |SRB | 14.8 |< 15.5 | |p | | | 240. : | | |04151 04151| +170291 |NP Car |094214.1-594039 |SRA | 14.6 |< 15.5 | |p |31610. | | 287. | | |04151 04151| +170292 |NQ Car |094147.0-700516 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +170293 |NR Car |094230.7-653017 |EA | 15. |< 16.5 | |p | | | | | |04001 04001| +170294 |NS Car |094206.1-685019 |RR | 15. | 16. | |p | | | | | |04001 04001| +170295 |NT Car |094328.8-623712 |M | 11.3 |< 15.0 | |p |31590. | | 313. | | |04151 04151| +170296 |NU Car |094346.5-723525 |EA | 14.5 | 15.5 | |p | | | | | |04001 04001| +170297 |NV Car |094337.5-732026 |EA | 14.5 | 15. | |p | | | | | |04001 04001| +170298 |NW Car |094454.4-675650 |SR | 13. | 15. | |p |36704. :| | | |Me |04001 04001| +170299 |NX Car |094746.6-682044 |RR | 15. | 16. | |p | | | | | |04001 04001| +170300 |NY Car |095225.8-675718 |EA | 15. | 16. | |p | | | | | |04001 04001| +170301 |NZ Car |095441.3-685359 |EA | 15. | 15.5 | |p | | | | | |04001 04001| +170302 |OO Car *|095608.9-582842 |EA | 14.3 | 15.5 : | 14.7 |p |30708.539 | | 4.722075 |12 | |04151 04151| +170303 |OP Car |095452.9-723821 |RR | 16. | 17. | |p | | | | | |04001 04001| +170304 |OQ Car |095558.6-680942 |IS | 14.5 | 17. | |p | | | | | |04001 04001| +170305 |OR Car |095726.7-670212 |RR | 13.5 | 14.5 | |p | | | | | |04001 04001| +170306 |OS Car |095740.7-675619 |M | 16. |< 17. | |p | | | | | |04001 04001| +170307 |OT Car |095907.5-682327 |EA | 12. | 12.5 | |p | | | | | |04001 04001| +170308 |OU Car |095904.1-721918 |RR | 15.5 | 16.5 | |p | | | | | |04001 04001| +170309 |OV Car *|100321.9-611822 |EA/SD | 13.3 | 14.9 | 13.5 |p |31234.261 | | 1.276572 |12 | |04151 04151| +170310 |OW Car |100326.2-693242 |EA | 14. | 15. | |p | | | | | |04001 04001| +170311 |OX Car |100439.1-701005 |RR | 15. | 16. | |p | | | | | |04001 04001| +170312 |OY Car *|100622.2-701405 |UGSU+E | 12.2 | 17. | |B | | |( 260. ) | |pec(UG) |00001 05183| +170313 |OZ Car |101038.0-725623 |RR | 14. | 14.5 | |p | | | | | |04001 04001| +170314 |PP Car |103201.5-614107 |GCAS | 3.27 | 3.37 | |V | | | | |B5Vne |04118 CoD | +170315 |PQ Car |105841.3-744952 |M | 13.0 |< 16.0 | |p |36785. | | | |Me |08727 04001| +170316 |PR Car |110113.1-731621 |M | 13. |< 16. | |p |36685. :| | | |Me |04001 04001| +170317 |PS Car |110149.9-741227 |M | 15.0 |< 16.2 | |p |36680. :| | | | |08727 04001| +170318 |PT Car *|110317.6-745637 |EA/SD | 12.8 | 16.0 | 13.0 : |p |36720.28 | | 2.6500 |10 | |08727 04001| +170319 |PU Car |110852.9-752136 |CEP: | 14.8 | 15.7 | |p |36718.212 | | | | |08727 04001| +170320 |PV Car |111231.7-750623 |RRAB | 15.1 | 16.0 | |p |36723.290 | | 0.4661 |20 : | |08727 04001| +170321 |PW Car |111809.7-743446 |EA | 12.7 | 14.0 | |p |36721.270 | | | | |08727 04001| +170322 |PX Car *|062100.2-543257 |EB/KE | 9.65 | 10.45 | 10.10 |V |28656.275 | | 0.795171 | |A9IV |05187 CoD | +170323 |PY Car |073458.9-634404 |E | 10.0 | 10.6 | |p |14939.729 | | 3.34066 | | |08040 CPD | +170324 |PZ Car |103745.2-612826 |EA/DM | 10.0 | 10.3 | |p |25384.72 | | 10.40059 |15 *|G5 |03551 CPD | +170325 |QQ Car |084642.4-580536 |EA/DM | 10.1 | 10.4 | |p |28663.325 | | 11.01985 | | |05289 05289| +170326 |QR Car *|095108.4-672612 |EB/KE | 10.0 | 10.5 | 10.4 |p |36691.256 | | 1.197375 | |A3 |05393 04001| +170327 |QS Car *|103417.5-710954 |EA/DM | 9.0 | 9.4 | 9.3 |p |28656.315 | | 9.3208 | |F2-F5 |05289 CoD | +170328 |QT Car |105221.2-715333 |EB | 11.4 | 12.3 | |p |34310.525 | | 1.632520 | | |05255 05255| +170329 |QU Car *|110542.5-683758 |NL | 11.4 |( 0.7 )| |V | | | | |pec |05524 05778| +170330 |QV Car |092118.1-584058 |SRB | 8.51 | 8.76 | |V |40689. :| | 75. | |M5III |05828 CoD | +170331 |QW Car |093257.6-741635 |EA/SD | 9.9 | 12.1 | |p |28904.505 | | 2.853175 | | |05236 05236| +170332 |QX Car *|095433.9-582517 |EA/DM | 6.60 | 7.21 | 7.02 |V |40701.3715 | | 4.47804 |06 |B5V+B5V |07436 05625| +170333 |QY Car *|101146.5-580338 |GCAS | 5.63 | 5.83 | |V | | | | |B2IVpne |05188 04641| +170334 |QZ Car *|104422.9-595936 |EB | 6.16 | 6.49 | 6.43 |V |43192.4 | | 5.9981 | |O9III |05189 04641| +170335 |V0335 Car |104450.9-685025 |SRA | 11.7 | 13.0 | |p | | | | |Me |00085 02382| +170336 |V0336 Car | | | | | | | | | | | | |=IZ Car +170337 |V0337 Car |101705.0-611956 |LC | 3.36 | 3.44 | |V | | | | |K3II |03712 05625| +170338 |V0338 Car |111352.3-583630 |EA/GS | 9.3 | 9.8 | |p |38555.198 | | 74.64 | |B9ea |06317 06317| +170339 |V0339 Car |111941.5-732337 |L | 12.5 | 17.5 | |p | | | | | |06318 06318| +170340 |V0340 Car |064052.2-522600 |SR | 9.5 | 10.5 | |p | | | | |M4/5pe |00085 CoD | +170341 |V0341 Car *|075651.0-590733 |L | 6.2 | 7.10 | |V | | | | |M1-3II-III |05196 07467| +170342 |V0342 Car |082854.3-594747 |M | 13.3 | 17.5 | |p | | | | |Me |04618 GSC | +170343 |V0343 Car *|084037.0-594540 |BCEP: | 4.20 |( 0.04 )| |B | | | | |B1.5III |04456 CoD | +170344 |V0344 Car |084642.5-564611 |GCAS | 4.4 | 4.51 | |V | | | | |B3Vne |06311 CoD | +170345 |V0345 Car |090538.4-703219 |GCAS | 4.67 | 4.78 | |V | | | | |B2Vne |06311 CoD | +170346 |V0346 Car |092126.9-680457 |M: | 13.5 | 17.5 | |p | | | | |Me |04001 04001| +170347 |V0347 Car *|101333.8-732004 |EA/DM | 8.5 | 9.0 | |p |38474.425 | | 5.72555 | |A3m |06871 06871| +170348 |V0348 Car *|102659.0-574033 |EB | 8.55 | 8.93 | 8.9 |V |39637.3 | | 5.562107 | |B1III+B |07048 04641| +170349 |V0349 Car |102935.4-575759 |LC | 7.76 | 8.31 | |V | | | | |M2Iab |06149 CoD | +170350 |V0350 Car |104000.7-715914 |EA | 12.9 | 13.8 | |p | | | 2. : | | |06318 06318| +170351 |V0351 Car |104519.0-720357 |M | 12.2 | 15.2 | |p |40627. | | | |M4-M5e |06318 06318| +170352 |V0352 Car |110727.8-731352 |M | 11.7 | 15. | |p |36675. :| | | |Me |04001 06318| +170353 |V0353 Car |111002.3-600543 |GCAS | 7.59 | 7.78 | |V | | | | |B2Ve |07778 04641| +170354 |V0354 Car *|102826.3-673618 |M: | 12.0 |< 16. | |V | | | | | |07447 USNO | +170355 |V0355 Car |072908.4-631445 |L | 11. | 12. | |p | | | | | |00085 02381| +170356 |V0356 Car *|075802.9-603653 |EA: | 7.59 | 8.01 | |V | | | | |B9.5IVp(Si) |07829 07829| +170357 |V0357 Car *|091058.1-585801 |E: | 3.41 | 3.44 | |V | | | | |B2IV-V |07832 05625| +170358 |V0358 Car |091851.1-682632 |M | 14.5 | 17. | |p |36735. | | | | |04001 04001| +170359 |V0359 Car |095124.9-652654 |SR | 14. | 16. | |p | | | | | |04001 04001| +170360 |V0360 Car |095148.8-692020 |SR | 14. | 16. | |p | | | | | |04001 04001| +170361 |V0361 Car *|103543.8-581442 |LC | 7.09 | 7.57 | |V | | | | |M1.5Iab-Ib |07892 05200| +170362 |V0362 Car |105956.1-753759 |M | 13.5 | 16.8 | |p | | | | |Me |04001 04001| +170363 |V0363 Car |095327.5-602133 |M | 13.5 | 17. | |p | | | | |M5e |04618 USNO | +170364 |V0364 Car |104011.4-650601 |ACV | 5.48 | 5.52 | |V |42428.81 | | 1.668 | |B8IIIp(Si) |07614 CPD | +170365 |V0365 Car *|110316.0-582728 |NB | 10.1 | 18.3 | |B |32820. |1948 | | |pec(e) |07918 07918| +170366 |V0366 Car |095443.4-571853 |M+ZAND | 5.70 | 8.60 | |J | | | 433. | |pec(e) |09146 08077| +170367 |V0367 Car *|095645.3-573917 |EB/DM | 7.49 | 7.59 | 7.54 |V |42468.79 | | 5.73 | |B6V |08222 07616| +170368 |V0368 Car |101135.5-584940 |LB: | 6.1 | 6.40 | |V | | | | |M5III |08223 CPD | +170369 |V0369 Car |103325.4-581125 |ACYG | 6.11 |( 0.1 )| |V | | | | |B6eIa |08070 CPD | +170370 |V0370 Car |103727.1-584400 |ACYG | 5.45 | 5.52 | |V | | | | |A0eIa |08070 07619| +170371 |V0371 Car |110834.0-615650 |ACYG | 5.12 | 5.19 | |V | | | | |B9.5eIa |08070 CPD | +170372 |V0372 Car |075229.7-542202 |BCEP | 5.69 |( 0.027 )| |V | | | 0.1160 | |B2III |08380 CoD | +170373 |V0373 Car *|075745.9-604935 |GCAS | 8.9 | 9.2 | |V | | | | |B9pe |02388 08383| +170374 |V0374 Car *|075850.5-604928 |GCAS | 5.72 | 5.84 | |V | | | | |B2IV-Vpne |08386 07830| +170375 |V0375 Car *|080442.9-625011 |BCEP: | 6.29 |( 0.04 )| |V | | | | |B4Vn |08387 CPD | +170376 |V0376 Car *|085658.4-591346 |BCEPS | 4.91 | 4.96 | |V | | | 0.0208 | |B2IV-V |08308 CPD | +170377 |V0377 Car |092527.1-572144 |EA/DM | 8.05 | 8.34 | |V | | | 2.242624 | |B4V |08389 CPD | +170378 |V0378 Car *|103553.6-581448 |BCEP: | 9.22 |( 0.015 )| |V | | | 0.188 | |B0.5III |08215 02405| +170379 |V0379 Car *|103558.5-581416 |BCEP+E: | 8.21 | 9.34 | |V | | | 0.1753 | |B1III |08215 02405| +170380 |V0380 Car *|103601.6-581510 |BCEP: | 8.95 |( 0.02 )| |V | | | 0.236 : | |B0.5III |08215 02405| +170381 |V0381 Car *|103608.3-581304 |BCEP: | 9.04 | 9.06 | |V | | | 0.17 : | |B1III |08215 02405| +170382 |V0382 Car *|110835.4-585830 |DCEP: | 3.84 | 4.02 | |V | | | | |F8-G2Ia |02555 05625| +170383 |V0383 Car |065904.0-583053 |DSCTC | 8.84 |( 0.06 )| |V | | | | |Fm |03889 CPD | +170384 |V0384 Car *|091745.3-683627 |SRB | 9.7 | 11.7 | |V | | | 100. | |Me |00001 08741| +170385 |V0385 Car *|110617.2-653035 |ELL:+WR | 7.70 |( 0.04 )|( 0.04 )|V |42000.0 | | 4.762 | |WN8 |03899 CPD | +170386 |V0386 Car |070418.3-564459 |ACV | 5.16 |( 0.026 )| |V | | | | | |67064 CPD | +170387 |V0387 Car |071339.9-534004 |ACV | 7.0 |( 0.023 )| |V | | | | | |67064 CPD | +170388 |V0388 Car |072151.4-554616 |ACV | 7.94 |( 0.03 )| |V | | | | | |67066 CPD | +170389 |V0389 Car |072141.1-615705 |ACV | 7.2 |( 0.01 )| |V | | | | | |67066 CPD | +170390 |V0390 Car |073900.3-531624 |ACV | 6.06 |( 0.004 )| |V | | | | | |67067 CoD | +170391 |V0391 Car |075802.5-604847 |ACV | 8.92 | 8.96 | |V | | | | | |67072 67071| +170392 |V0392 Car |075810.5-605158 |EA/DM+ACV:| 9.49 | 9.67 | |V | | | | | |67072 67071| +170393 |V0393 Car |075902.7-613501 |DSCT | 7.47 |( 0.23 )| |V | | | | | |67076 CPD | +170394 |V0394 Car |081913.2-603507 |M | 13.8 |< 17. | |p | | | | | |67077 USNO | +170395 |V0395 Car |092234.7-631741 |XI+E: | 15.50 | 18.6 | |B | | | | | |67080 67078| +170396 |V0396 Car |095452.9-574338 |ELL | 8.32 |( 0.06 )| |V | | | | | |67081 CPD | +170397 |V0397 Car |100003.7-661635 |DCEPS | 8.21 | 8.44 | |V | | | | | |67083 CPD | +170398 |V0398 Car |102631.4-583826 |E | 9.69 |( 0.035 )| |V | | | | | |67084 CPD | +170399 |V0399 Car |102724.5-573820 |CEP | 4.64 | 4.71 | |V | | | | | |67098 CPD | +170400 |V0400 Car |103448.7-580901 |BCEP | 9.76 |( 0.01 B )| |V | | | | | |67102 67100| +170401 |V0401 Car |103530.1-581208 |BCEP | 9.56 |( 0.03 B )| |V | | | | | |67102 67100| +170402 |V0402 Car |103532.3-581522 |GCAS | 9.91 | 9.97 : | |V | | | | | |67102 67100| +170403 |V0403 Car |103540.7-581244 |BCEP | 8.78 |( 0.04 B )| |V | | | | | |67102 67100| +170404 |V0404 Car |103548.2-581416 |BCEP | 9.21 | 9.23 | |V | | | | | |67102 67100| +170405 |V0405 Car |103548.2-581233 |BCEP | 9.29 |( 0.01 B )| |V | | | | | |67102 67100| +170406 |V0406 Car |103557.8-581221 |BCEP | 9.26 |( 0.03 B )| |V | | | | | |67102 67100| +170407 |V0407 Car |103817.6-650231 |ACV | 6.71 | 6.74 | |V | | | | | |67104 CPD | +170408 |V0408 Car |105815.0-625202 |M | 0.20 | 0.55 | |K | | | | | |67106 CPD | +170409 |V0409 Car |073057.0-575928 |ACVO | 9.1 |( 0.03 )| |B | | | | | |68299 CPD | +170410 |V0410 Car |075807.8-604635 |DSCTC | 10.67 |( 0.05 )| |V | | | | | |68059 68304| +170411 |V0411 Car |103119.4-595826 |N: | 14.5 | 19. | |p | | | | | |68307 USNO | +170412 |V0412 Car |103543.3-581334 |BCEP: | 9.85 | 9.88 | |V | | | | | |68061 68310| +170413 |V0413 Car |105605.5-602326 |SRB | 8.98 | 9.12 | |V | | | | | |68062 CPD | +170414 |V0414 Car |110457.6-595132 |ACYG: | 6.55 |( 0.09 )| |V | | | | | |68313 CPD | +170415 |V0415 Car |064951.3-533721 |EA/GS | 4.39 |( 0.06 )| |V | | | | | |69051 CPD | +170416 |V0416 Car |075745.5-604703 |DSCTC: | 10.57 | 10.64 | |V | | | | | |69052 69053| +170417 |V0417 Car |075814.0-603902 |DSCTC: | 10.70 |( 0.02 )| |B | | | | | |69052 69053| +170418 |V0418 Car |075819.8-604939 |DSCTC: | 11.29 |( 0.03 )| |B | | | | | |69052 69053| +170419 |V0419 Car |075830.9-603747 |DSCTC: | 10.87 |( 0.02 )| |B | | | | | |69052 69053| +170420 |V0420 Car |075833.3-604926 |DSCTC: | 10.53 | 10.56 | |V | | | | | |69052 69053| +170421 |V0421 Car |075851.4-604003 |DSCTC: | 10.73 | 10.82 | |V | | | | | |69052 69053| +170422 |V0422 Car |075921.3-604856 |ACV | 9.08 | 9.13 | |V | | | | | |69056 69053| +170423 |V0423 Car |095506.0-572259 |ACV | 6.9 |( 0.02 )| |B | | | | | |69057 CPD | +170424 |V0424 Car |100239.8-595755 |ACV | 9.58 | 9.66 | |U | | | | | |69056 69058| +170425 |V0425 Car |103955.9-583319 |M | 8.61 | 11.48 | |J | | | | | |69060 | +170426 |V0426 Car |104756.9-590853 |PVTEL | 10.40 | 10.60 | |V | | | | | |69062 69063| +170427 |V0427 Car |105304.6-593020 |SXARI: | 8.9 |( 0.015 )| |V | | | | | |69064 CPD | +170428 |V0428 Car |105344.8-593047 |E:/WR | 10.7 |( 0.05 )| |V | | | | | |69064 CPD | +170429 |V0429 Car |104117.5-594037 |EA/WR | 6.38 |( 0.12 )| |B | | | | | |70023 70024| +170430 |V0430 Car |110605.8-595700 |BCEP: | 6.68 |( 0.03 )| |V | | | | | |70025 CoD | +170431 |V0431 Car |111004.1-605845 |E/WR | 8.09 |( 0.02 )| |B | | | | | |70023 CoD | +170432 |V0432 Car |110840.3-604252 |SDOR | 11.79 | 12.43 | |V | | | | | |71100 71101| +170433 |V0433 Car |102356.9-572752 |BCEP | 8.12 | 8.17 | |V | | | | | |72035 CPD | +170434 |V0434 Car |103036.7-574853 |SRC | 9.26 | 12.0 | |J | | | | | |72036 | +170435 |V0435 Car |062150.1-511416 |DSCTC | 7.3 |( 0.02 )| |B | | | | | |73067 CoD | +170436 |V0436 Car |074457.9-525713 |UG: | 13.6 | 15.8 | |B | | | | | |73068 73068| +170437 |V0437 Car |095453.4-584145 |ACVO | 9.32 |( 0.01 B )| |V | | | | | |73069 CPD | +170438 |V0438 Car |103544.7-581431 |ELL: | 11.25 |( 0.07 B )| |V | | | | | |73070 73070| +170439 |V0439 Car |103553.3-581358 |BE: | 13.46 |( 0.05 B )| |V | | | | | |73070 73070| +170440 |V0440 Car |103554.8-581300 |BCEP | 9.14 |( 0.01 )| |B | | | | | |73070 73070| +170441 |V0441 Car |103612.2-581409 |ELL: | 13.51 |( 0.04 B )| |V | | | | | |73070 73070| +170442 |V0442 Car |105912.1-601842 |DCEP | 13.82 | 14.45 | |V | | | | | |73071 73071| +170443 |V0443 Car |105942.3-602123 |DSCTC | 13.12 |( 0.04 )| |V | | | | | |73071 73071| +170444 |V0444 Car |062517.1-515023 |LB: | 8.07 | 8.30 | |Hp| | | | | |HIP HIP | +170445 |V0445 Car |063721.7-545845 |SRB | 9.01 | 9.35 | |Hp| | | | | |HIP HIP | +170446 |V0446 Car |063737.7-572615 |LB: | 8.72 | 8.84 | |Hp| | | | | |HIP HIP | +170447 |V0447 Car |064333.1-530126 |SRB | 8.51 | 8.69 | |Hp| | | | | |HIP HIP | +170448 |V0448 Car |064718.7-553224 |SRD: | 5.66 | 5.86 | |Hp| | | | | |HIP HIP | +170449 |V0449 Car |065312.9-522437 |SRD | 9.03 | 9.18 | |Hp| | | | | |HIP HIP | +170450 |V0450 Car |070315.1-591041 |LPB | 5.45 | 5.47 | |Hp| | | | | |HIP HIP | +170451 |V0451 Car |070431.4-602802 |SRB | 8.83 | 9.12 | |Hp| | | | | |HIP HIP | +170452 |V0452 Car |071210.2-595022 |EA: | 8.04 | 8.37 | |Hp| | | | | |HIP HIP | +170453 |V0453 Car |072452.4-630042 |EA: | 11.32 | 12.19 | |Hp| | | | | |HIP HIP | +170454 |V0454 Car |073246.1-533319 |EB | 6.92 | 7.10 | |Hp| | | | | |HIP HIP | +170455 |V0455 Car |073625.3-615226 |EA | 8.33 | 8.55 | |Hp| | | | | |HIP HIP | +170456 |V0456 Car |074223.8-560846 |SXARI: | 7.21 | 7.26 | |Hp| | | | | |HIP HIP | +170457 |V0457 Car |074227.3-632908 |LB: | 8.41 | 8.51 | |Hp| | | | | |HIP HIP | +170458 |V0458 Car |074656.7-522050 |ACV: | 6.85 | 6.92 | |Hp| | | | | |HIP HIP | +170459 |V0459 Car |075213.3-593649 |ACV | 7.47 | 7.51 | |Hp| | | | | |HIP HIP | +170460 |V0460 Car |075937.5-603513 |LC | 5.15 | 5.30 | |V | | | | | |HIP HIP | +170461 |V0461 Car |080123.0-543056 |EA | 6.08 | 6.20 | |Hp| | | | | |HIP HIP | +170462 |V0462 Car |080215.5-553226 |EB | 6.68 | 6.84 | |Hp| | | | | |HIP HIP | +170463 |V0463 Car |080540.0-592526 |BY: | 10.41 | 10.60 | |Hp| | | | | |HIP HIP | +170464 |V0464 Car |080848.9-613408 |LB: | 8.95 | 9.06 | |Hp| | | | | |HIP HIP | +170465 |V0465 Car |081745.0-612800 |LB: | 8.73 | 8.87 | |Hp| | | | | |HIP HIP | +170466 |V0466 Car |081805.0-601850 |EA | 7.25 | 7.55 | |Hp| | | | | |HIP HIP | +170467 |V0467 Car |082001.7-565130 |EA: | 8.00 | 8.46 | |Hp| | | | | |HIP HIP | +170468 |V0468 Car |082509.3-552822 |ACV: | 6.59 | 6.62 | |Hp| | | | | |HIP HIP | +170469 |V0469 Car |082929.8-541242 |ACV | 6.39 | 6.42 | |Hp| | | | | |HIP HIP | +170470 |V0470 Car |083241.1-552812 |EB: | 7.45 | 7.61 | |Hp| | | | | |HIP HIP | +170471 |V0471 Car |083652.7-633739 |BE | 8.02 | 8.10 | |Hp| | | | | |HIP HIP | +170472 |V0472 Car |084330.1-614120 |ACV | 6.78 | 6.83 | |Hp| | | | | |HIP HIP | +170473 |V0473 Car |085454.0-581423 |LPB | 6.31 | 6.35 | |Hp| | | | | |HIP HIP | +170474 |V0474 Car |090023.2-630004 |BY | 10.26 | 10.44 | |Hp| | | | | |HIP HIP | +170475 |V0475 Car |090051.3-575501 |SRB | 7.79 | 8.25 | |Hp| | | | | |HIP HIP | +170476 |V0476 Car |090552.6-693431 |EA: | 8.28 | 8.39 | |Hp| | | | | |HIP HIP | +170477 |V0477 Car |091108.3-581953 |EA | 8.34 | 8.56 | |Hp| | | | | |HIP HIP | +170478 |V0478 Car |091751.7-670303 |SRD | 6.28 | 6.30 | |Hp| | | | | |HIP HIP | +170479 |V0479 Car |092335.0-611136 |BY: | 10.07 | 10.22 | |Hp| | | | | |HIP HIP | +170480 |V0480 Car |092439.5-584121 |BE | 7.76 | 7.99 | |Hp| | | | | |HIP HIP | +170481 |V0481 Car |092826.3-722521 |ACV | 7.72 | 7.77 | |Hp| | | | | |HIP HIP | +170482 |V0482 Car |093023.4-582143 |SRB: | 5.85 | 5.95 | |Hp| | | | | |HIP HIP | +170483 |V0483 Car |093434.9-640151 |LPB | 7.40 | 7.43 | |Hp| | | | | |HIP HIP | +170484 |V0484 Car |093429.8-660720 |GCAS | 7.43 | 7.62 | |Hp| | | | | |HIP HIP | +170485 |V0485 Car |094137.3-683018 |BE | 7.07 | 7.12 | |Hp| | | | | |HIP HIP | +170486 |V0486 Car |094213.0-665453 |EB | 6.31 | 6.45 | |Hp| | | | | |HIP HIP | +170487 |V0487 Car |094540.6-571110 |ACV | 6.39 | 6.49 | |Hp| | | | | |HIP HIP | +170488 |V0488 Car |094540.4-700706 |LPB | 7.13 | 7.16 | |Hp| | | | | |HIP HIP | +170489 |V0489 Car |094654.6-693012 |SRB | 8.17 | 8.60 | |Hp| | | | | |HIP HIP | +170490 |V0490 Car |094827.1-573931 |SRB | 8.10 | 8.32 | |Hp| | | | | |HIP HIP | +170491 |V0491 Car *|095530.2-575717 |BY:+E: | 9.18 | 11.22 | |Hp| | | | | |HIP HIP | +170492 |V0492 Car |095659.8-690607 |LPB | 6.14 | 6.18 | |Hp| | | | | |HIP HIP | +170493 |V0493 Car *|095740.3-594252 |EA | 8.84 | 9.19 | |Hp| | | | | |HIP HIP | +170494 |V0494 Car |095705.5-703503 |LB: | 9.24 | 9.53 | |Hp| | | | | |HIP HIP | +170495 |V0495 Car |100756.6-621317 |ACV | 6.40 | 6.42 | |Hp| | | | | |HIP HIP | +170496 |V0496 Car |101010.6-710412 |SRB | 7.96 | 8.57 | |Hp| | | | | |HIP HIP | +170497 |V0497 Car |101136.3-595302 |BE | 8.99 | 9.12 | |Hp| | | | | |HIP HIP | +170498 |V0498 Car *|101149.9-613231 |E: | 7.14 | 7.24 | |Hp| | | | | |HIP HIP | +170499 |V0499 Car |101552.6-572230 |ACYG: | 7.91 | 7.99 | |Hp| | | | | |HIP HIP | +170500 |V0500 Car |101702.3-575447 |WR | 10.61 | 10.81 | |Hp| | | | | |HIP HIP | +170501 |V0501 Car |102027.4-720749 |SRB | 6.91 | 7.01 | |Hp| | | | | |HIP HIP | +170502 |V0502 Car |102257.6-604011 |LB: | 8.25 | 8.36 | |Hp| | | | | |HIP HIP | +170503 |V0503 Car |102600.2-574937 |BE: | 9.27 | 9.39 | |Hp| | | | | |HIP HIP | +170504 |V0504 Car |102655.7-573625 |ACYG: | 7.14 | 7.21 | |Hp| | | | | |HIP HIP | +170505 |V0505 Car |102649.3-731005 |SRB | 6.60 | 6.68 | |Hp| | | | | |HIP HIP | +170506 |V0506 Car |102802.9-571155 |LPB: | 6.77 | 6.80 | |Hp| | | | | |HIP HIP | +170507 |V0507 Car |102818.3-630952 |BE | 6.39 | 6.45 | |Hp| | | | | |HIP HIP | +170508 |V0508 Car |102849.3-605341 |ACYG | 7.66 | 7.70 | |Hp| | | | | |HIP HIP | +170509 |V0509 Car |103011.7-622922 |EA | 8.61 | 8.97 | |Hp| | | | | |HIP HIP | +170510 |V0510 Car |103033.7-612011 |GCAS | 7.47 | 7.67 | |Hp| | | | | |HIP HIP | +170511 |V0511 Car |103007.9-705317 |LB | 7.10 | 7.26 | |Hp| | | | | |HIP HIP | +170512 |V0512 Car |103506.2-692105 |SRB | 6.85 | 6.98 | |Hp| | | | | |HIP HIP | +170513 |V0513 Car |103542.0-581134 |ACYG | 6.72 | 6.76 | |Hp| | | | | |HIP HIP | +170514 |V0514 Car |103802.6-571523 |LPB | 5.83 | 5.86 | |Hp| | | | | |HIP HIP | +170515 |V0515 Car |103807.1-603256 |SRB | 7.79 | 8.03 | |Hp| | | | | |HIP HIP | +170516 |V0516 Car |104053.0-575608 |ACYG | 7.03 | 7.08 | |Hp| | | | | |HIP HIP | +170517 |V0517 Car |104105.5-731700 |SRB: | 7.86 | 7.95 | |Hp| | | | | |HIP HIP | +170518 |V0518 Car |104214.1-642759 |GCAS: | 4.60 | 4.76 | |Hp| | | | | |HIP HIP | +170519 |V0519 Car |104240.6-591257 |BE | 5.40 | 5.48 | |Hp| | | | | |HIP HIP | +170520 |V0520 Car |104332.3-603400 |LC: | 4.63 | 4.70 | |Hp| | | | | |HIP HIP | +170521 |V0521 Car |104410.0-720352 |LB | 7.23 | 7.69 | |Hp| | | | | |HIP HIP | +170522 |V0522 Car |104805.4-595509 |ACYG: | 6.04 | 6.12 | |Hp| | | | | |HIP HIP | +170523 |V0523 Car |105156.2-582456 |ACYG | 6.95 | 6.99 | |Hp| | | | | |HIP HIP | +170524 |V0524 Car |105230.9-571426 |ACYG | 5.28 | 5.34 | |Hp| | | | | |HIP HIP | +170525 |V0525 Car |105616.3-580311 |LB | 7.10 | 7.26 | |Hp| | | | | |HIP HIP | +170526 |V0526 Car |105624.5-573305 |ACYG: | 7.38 | 7.45 | |Hp| | | | | |HIP HIP | +170527 |V0527 Car |105920.6-580728 |DSCTC: | 9.04 | 9.09 | |Hp| | | | | |HIP HIP | +170528 |V0528 Car |110306.2-605439 |LC | 6.51 | 6.75 | |Hp| | | | | |HIP HIP | +170529 |V0529 Car |110312.8-630400 |EA | 8.19 | 8.58 | |Hp| | | | | |HIP HIP | +170530 |V0530 Car |110429.2-625744 |LC | 8.00 | 8.22 | |Hp| | | | | |HIP HIP | +170531 |V0531 Car |110816.5-613310 |LB: | 9.28 | 9.48 | |Hp| | | | | |HIP HIP | +170532 |V0532 Car |111203.5-582524 |SRB | 6.10 | 6.28 | |Hp| | | | | |HIP HIP | +170533 |V0533 Car |111236.0-601904 |ACYG: | 4.69 | 4.75 | |Hp| | | | | |HIP HIP | +170534 |V0534 Car *|111633.9-620656 |IA: | 10.73 | 11.06 | |Hp| | | | | |HIP HIP | +170535 |V0535 Car |111719.0-674925 |LB | 6.05 | 6.16 | |Hp| | | | | |HIP HIP | +170536 |V0536 Car |111818.3-625829 |LPB: | 8.87 | 8.97 | |Hp| | | | | |HIP HIP | +170537 |V0537 Car |111843.7-581111 |SRB | 6.24 | 6.56 | |Hp| | | | | |HIP HIP | +170538 |V0538 Car |112006.2-651507 |LB: | 7.64 | 8.20 | |Hp| | | | | |HIP HIP | +170539 |V0539 Car |082633.2-571806 |ACV | 8.86 |( 0.13 )| |V | | | | | |75066 CPD | +170540 |V0540 Car |104719.1-571932 |ACYG | 6.98 | 7.04 | |Hp| | | | | |75030 CPD | +170541 |V0541 Car |105106.0-621702 |EA/WR | 11.73 |( 0.09 )| |V | | | | | |75067 75020| +170542 |V0542 Car |103341.8-641346 |BY | 11.75 |( 0.04 )| |V | | | | | |76104 76105| +170543 |V0543 Car |103547.3-641846 |BY | 14.61 |( 0.17 )| |V | | | | | |76104 76105| +170544 |V0544 Car |103618.3-641457 |BY | 15.14 |( 0.17 )| |V | | | | | |76104 76105| +170545 |V0545 Car |103626.4-650017 |BY | 14.35 |( 0.10 )| |V | | | | | |76104 76105| +170546 |V0546 Car |103638.1-644754 |BY | 12.73 |( 0.15 )| |V | | | | | |76104 76105| +170547 |V0547 Car |103722.3-644320 |BY | 15.08 |( 0.08 )| |V | | | | | |76104 76105| +170548 |V0548 Car |103749.5-640051 |BY | 15.06 |( 0.21 )| |V | | | | | |76104 76105| +170549 |V0549 Car |103955.3-633623 |BY | 14.88 |( 0.10 )| |V | | | | | |76104 76105| +170550 |V0550 Car |103956.0-635930 |BY | 12.14 |( 0.11 )| |V | | | | | |76104 76105| +170551 |V0551 Car |104030.1-644217 |BY | 14.75 |( 0.08 )| |V | | | | | |76104 76105| +170552 |V0552 Car |104051.4-644248 |BY | 12.19 |( 0.21 )| |V | | | | | |76104 76105| +170553 |V0553 Car |104100.0-642001 |BY | 15.39 |( 0.10 )| |V | | | | | |76104 76105| +170554 |V0554 Car |104145.4-642803 |BY | 13.64 |( 0.21 )| |V | | | | | |76104 76105| +170555 |V0555 Car |104207.1-644608 |BY | 11.57 |( 0.07 )| |V | | | | | |76104 76106| +170556 |V0556 Car |104228.1-643612 |BY | 15.59 |( 0.07 )| |V | | | | | |76104 76105| +170557 |V0557 Car |104241.5-642104 |BY | 10.57 |( 0.21 )| |V | | | | | |76104 76107| +170558 |V0558 Car |104406.8-635935 |BY | 11.07 |( 0.08 )| |V | | | | | |76104 76105| +170559 |V0559 Car |104422.6-641530 |BY | 10.92 |( 0.06 )| |V | | | | | |76104 76106| +170560 |V0560 Car |104433.7-594415 |ELL | 7.74 |( 0.02 )| |V | | | | | |76108 DM | +170561 |V0561 Car |104459.6-650219 |BY | 10.89 |( 0.09 )| |V | | | | | |76104 76107| +170562 |V0562 Car |104518.6-633227 |BY | 14.12 |( 0.08 )| |V | | | | | |76104 76105| +170563 |V0563 Car |104530.0-642521 |BY | 10.66 |( 0.10 )| |V | | | | | |76104 76107| +170564 |V0564 Car |104614.8-640258 |BY | 10.70 |( 0.12 )| |V | | | | | |76104 76105| +170565 |V0565 Car |104635.3-640345 |BY | 12.71 |( 0.12 )| |V | | | | | |76104 76105| +170566 |V0566 Car |104651.8-633416 |BY | 12.97 |( 0.21 )| |V | | | | | |76104 76105| +170567 |V0567 Car |104818.4-640953 |BY | 10.26 |( 0.05 )| |V | | | | | |76104 76107| +170568 |V0568 Car |104825.4-642244 |BY | 13.79 |( 0.07 )| |V | | | | | |76104 76105| +170569 |V0569 Car |104926.4-643900 |BY | 13.33 |( 0.14 )| |V | | | | | |76104 76105| +170570 |V0570 Car |104948.4-644629 |BY | 11.73 |( 0.10 )| |V | | | | | |76104 76105| +170571 |V0571 Car |104956.8-634819 |BY | 12.94 |( 0.11 )| |V | | | | | |76104 76105| +170572 |V0572 Car |104447.3-594353 |EA | 8.66 | 9.07 | |V | | | | | |77090 DM | +170573 |V0573 Car |104508.2-594049 |EA: | 9.45 | 10.00 | |y | | | | | |77091 77091| +170574 |V0574 Car |105139.1-605635 |WR | 12.73 |( 0.05 )| |V | | | | | |77093 77093| +170575 |V0575 Car *|072449.6-512827 |EA | 7.82 | 8.23 | 8.08 |V |52784.540 | | 7.0508 | |F2V |78011 DM | +170576 |V0576 Car *|081915.7-601001 |* | 6.32 | 8.17 | |K | | | | |G+M |78108 2MASS| +170577 |V0577 Car |082203.6-605713 |M | 10.4 | 14.8 | |V |52920 | | 209. | |Me |78130 USNO | +170578 |V0578 Car |084345.4-550152 |M | 11.2 |< 14.0 | |V |52190 | | 180. | | |78040 USNO | +170579 |V0579 Car |090326.0-640357 |SRA | 13.0 | 15.0 | |V |52055 | | 260. | | |78130 USNO | +170580 |V0580 Car |090502.8-571536 |M | 12.8 |< 14.7 | |V |52783 | | 287. | | |78130 USNO | +170581 |V0581 Car |090513.1-615545 |M | 12.6 |< 14.4 | |V |53000 | | 373. | | |78130 USNO | +170582 |V0582 Car |090518.0-670824 |SRA: | 11.0 | 12.6 | |V |52624 | | 252. | | |78130 78121| +170583 |V0583 Car |090918.5-714712 |SRA | 12.7 | 15.1 | |V |53398 | | 272. | | |78130 GSC | +170584 |V0584 Car |091130.0-613713 |M | 10.8 | 15.0 | |V |51960 | | 307. | | |78130 78126| +170585 |V0585 Car |091257.9-574828 |M: | 10.9 |< 15.0 | |V |51956 | | 301. | |M7 |78130 USNO | +170586 |V0586 Car |091627.5-720415 |M | 11.0 | 13.5 | |V |52820 | | 183. | | |78130 78129| +170587 |V0587 Car |092029.3-664847 |SRB: | 12.0 | 12.8 | |V | | | 231. : | | |78130 78121| +170588 |V0588 Car |092108.9-615622 |M | 11.0 |< 14.2 | |V |52971 | | 406. | |Me |78040 USNO | +170589 |V0589 Car |092332.2-722249 |M | 12.6 |< 15.0 | |V |53004 | | 245. | | |78040 USNO | +170590 |V0590 Car |092535.9-633552 |RRAB | 12.7 | 13.8 | |V |53153.580 | | 0.495155 | | |78130 78120| +170591 |V0591 Car |092700.9-703756 |LB | 12.5 | 13.5 | |V | | | | | |78130 78121| +170592 |V0592 Car *|093345.3-660117 |EW | 10.87 | 11.50 | 11.45 |V |52615.737 | | 0.80110 | | |78011 78121| +170593 |V0593 Car |093517.0-682353 |M | 10.9 | 15.0 | |V |52810 | | 335. | | |78130 GSC | +170594 |V0594 Car |093724.3-634846 |EA | 10.4 | 11.2 | |V |51948.606 | | 3.16583 | |A5 |78011 78132| +170595 |V0595 Car |093955.1-743243 |M | 10.2 | 13.6 | |V |52940 | | 186. | |Me |78090 78133| +170596 |V0596 Car |095028.5-605803 |IA | 8.44 | 8.75 | |V | | | | |B5Vne |78038 DM | +170597 |V0597 Car |101810.3-605942 |SRB | 9.5 | 10.0 | |V | | | 113. | |S |78130 GSC | +170598 |V0598 Car *|104246.9-725912 |EA | 10.81 | 11.38 | 11.32 |V |51880.770 | | 3.51151 | | |78011 DM | +170599 |V0599 Car |105327.3-582525 |IA | 8.85 | 9.41 | |V | | | | |B8e |78038 DM | +170600 |V0600 Car |110602.8-683633 |M | 10.6 | 14.0 | |V |52750 | | 280. | |S4,2 |78142 78142| +170601 |V0601 Car |111223.9-602243 |SRA | 8.2 | 8.5 | |V | | | 73. | |M0 |78290 DM | +170602 |V0602 Car |111330.0-600529 |SRC | 7.6 | 9.1 | |V | | | 635. | |M3Ia+ |78130 DM | +170603 |V0603 Car |065510.1-620747 |RRAB | 13.6 | 14.5 | |V |53109.608 | | 0.565778 |25 | |79064 GSC | +170604 |V0604 Car |071450.6-591604 |EW | 9.16 | 9.64 | 9.60 |V |51878.748 | | 0.472292 | |F7IV/V |79011 DM | +170605 |V0605 Car |073950.2-533828 |EB | 9.50 | 10.18 | 9.91 |V |52989.797 | | 0.688714 | |A1/2V |79011 79233| +170606 |V0606 Car |074438.7-564232 |EA | 8.31 | 8.68 | 8.60 : |V |53042.680 | | 12.3192 |04 |B8/9III |79018 DM | +170607 |V0607 Car *|075622.7-611702 |ACV | 9.34 | 9.41 | |V | | | 1.9457 | |Ap |79100 DM | +170608 |V0608 Car |080734.0-551937 |EW | 8.87 | 9.55 | 9.55 |V |51884.718 | | 0.967554 | |A0V |79011 DM | +170609 |V0609 Car |091025.4-573022 |EA | 10.96 | 11.82 | 11.35 |V |52690.713 | | 3.13602 |06 | |79003 DM | +170610 |V0610 Car |092259.8-594456 |EA | 10.20 | 10.75 : | 10.60 : |V |53383.850 | | 4.84493 |08 |B8 |79003 DM | +170611 |V0611 Car |093135.2-655105 |EA | 11.95 | 12.45 | 12.15 |V |52706.640 | | 0.98273 |14 | |79064 79063| +170612 |V0612 Car |093314.2-642107 |M | 10.8 | 14.3 | |V |52174. | | 386. | | |79072 79073| +170613 |V0613 Car |093516.6-602728 |EA | 12.30 | 13.10 | 12.4 : |V |53091.199 | | 5.9441 |11 | |79100 GSC | +170614 |V0614 Car |093657.8-655007 |SRB | 10.3 | 11.7 | |V | | | 165. | |S7,8 |79100 79068| +170615 |V0615 Car |093735.8-583038 |SRB | 10.0 | 11.7 | |V | | | 115. | |M4 |79100 79080| +170616 |V0616 Car |094107.2-725320 |LB | 10.5 | 11.6 | |V | | | | | |79100 GSC | +170617 |V0617 Car |094133.9-613903 |M | 12.1 |< 14.4 | |V |53755. | | 165.2 | | |79064 USNO | +170618 |V0618 Car |094211.8-590218 |SRA | 11.7 | 12.9 | |V |53357.8 | | 67.6 | |M7 |79064 79075| +170619 |V0619 Car |094313.0-720638 |LB | 12.2 | 13.5 | |V | | | | | |79230 79063| +170620 |V0620 Car |094316.3-660352 |LB | 9.70 | 10.45 | |V | | | | | |79100 DM | +170621 |V0621 Car *|094341.4-613215 |M | 12.6 |< 14.8 | |V |53553. | | 269. | | |79100 2MASS| +170622 |V0622 Car |094347.0-660454 |SRB | 12.6 | 14.0 | |V | | | 220. | | |79100 79063| +170623 |V0623 Car |094533.9-735800 |EA | 13.2 | 14.0 | 13.7 |V |53495.643 | | 1.61492 |13 : | |79064 79076| +170624 |V0624 Car |094558.0-721238 |SRB | 8.6 | 9.5 | |V | | | 85. | |M6/7III |79100 DM | +170625 |V0625 Car *|095047.8-672315 |EW | 11.15 | 12.00 | 11.95 |V |52783.535 | | 0.2769435 | | |79011 79063| +170626 |V0626 Car |095048.0-690603 |LB | 10.0 | 10.7 | |V | | | | | |79100 79078| +170627 |V0627 Car *|095108.6-570845 |SRA: | 11.6 |< 12.8 | |V |52950. | | 346. | |M9 |79072 GSC | +170628 |V0628 Car |095133.2-733612 |SRB | 12.9 | 13.8 | |V | | | 90.4 | | |79064 79063| +170629 |V0629 Car |095304.6-654810 |EW | 11.8 | 12.3 | 12.3 |V |53832.64 | | 0.562480 | | |79064 79063| +170630 |V0630 Car |095459.6-615741 |M: | 12.4 |< 14.2 | |V |53079. | | 230. | | |79064 USNO | +170631 |V0631 Car |095718.3-671009 |SRB | 11.5 | 12.2 | |V | | | 60. | | |79100 79063| +170632 |V0632 Car |095750.4-581533 |EA | 12.16 | 12.66 | 12.54 |V |53018.820 | | 7.1362 |05 | |79018 79034| +170633 |V0633 Car |095822.5-722937 |EA | 12.4 | 13.2 | 12.6 |V |53788.663 | | 1.89450 |15 | |79064 79063| +170634 |V0634 Car |100019.4-691340 |SRA: | 13.2 |< 15.0 | |V |53814. | | 344. | | |79072 79063| +170635 |V0635 Car |100030.0-695821 |EB | 12.6 | 13.3 : | 12.8 : |V |53018.786 | | 0.79995 | | |79018 79076| +170636 |V0636 Car |100103.4-685419 |M | 11.4 |< 14.4 | |V |53585. | | 203. | | |79100 USNO | +170637 |V0637 Car |100123.7-711701 |RRC | 12.9 | 13.5 | |V |53010.806 | | 0.303849 |35 | |79064 79063| +170638 |V0638 Car *|100208.6-700635 |SRA | 12.8 | 14.2 : | |V |53422. | | 194. | | |79100 79063| +170639 |V0639 Car |100234.7-750037 |RRC | 13.2 | 13.8 | |V |52923.878 | | 0.297768 |45 : | |79064 79076| +170640 |V0640 Car |100430.3-583952 |INA | 7.4 | 9.8 | |V | | | | |B3/4[e] |79234 DM | +170641 |V0641 Car |100457.7-600456 |M | 12.0 |< 14.2 | |V |53877. | | 203. | | |79072 USNO | +170642 |V0642 Car |100527.8-673659 |M: | 12.6 |< 14.0 | |V |53904. | | 283. | |Me |79100 GSC | +170643 |V0643 Car |100609.0-601037 |M | 10.8 | 14.2 | |V |52783. | | 418. | |Se |79100 USNO | +170644 |V0644 Car *|100647.5-715043 |SR | 12.8 | 14.5 | |V |53672. | | 213. | | |79100 USNO | +170645 |V0645 Car |100734.1-630949 |M | 11. | 16.5 | |V |53455. | | 350. | |M9 |79072 2MASS| +170646 |V0646 Car |100914.3-624223 |M | 13.0 | 16.2 : | |V |53897. | | 304. | |M8 |79100 USNO | +170647 |V0647 Car |101035.6-615148 |SRB | 9.4 | 9.7 | |V | | | 190. | |M2/3(III) |79100 DM | +170648 |V0648 Car |101103.0-574814 |ZAND: | 9.6 | 10.0 | |V | | | | |M3ep+OB |79100 DM | +170649 |V0649 Car |101246.3-574951 |M | 11.8 |< 14.6 | |V |53443. | | 288. | | |79072 USNO | +170650 |V0650 Car |101412.1-660819 |M | 12.6 |< 15.8 | |V |52999. | | 328. | | |79072 USNO | +170651 |V0651 Car |102123.9-685023 |M | 12.7 |< 15.0 | |V |52999. | | 293. | | |79100 USNO | +170652 |V0652 Car |102454.1-635214 |SRA: | 12.0 |< 13.8 | |V |52854. | | 376. | |M8 |79072 2MASS| +170653 |V0653 Car |102539.6-681456 |M | 11.6 |< 14.0 | |V |53756. | | 298. | |Me |79100 GSC | +170654 |V0654 Car |102924.6-600516 |EA | 12.5 | 13.3 : | 13.1 : |V |51919.730 | | 2.87362 |05 |B8V |79018 79155| +170655 |V0655 Car *|103008.8-665905 |EA | 6.19 | 6.36 | 6.35 |V |48175.220 | | 16.9330 |05 |B4IV |79009 DM | +170656 |V0656 Car |103627.1-621133 |DCEP | 12.6 | 13.7 | |V |51913.9 | | 24.22 |17 | |79064 GSC | +170657 |V0657 Car |103827.3-571938 |M | 12.8 | 17.7 | |V |51962. | | 400. : | |M10 |79100 USNO | +170658 |V0658 Car |103847.3-584332 |EA | 9.08 | 9.37 | 9.23 |V |52786.540 | | 32.186 |18 |A1Iab |79004 DM | +170659 |V0659 Car |104113.2-713315 |M | 13.0 |< 16.2 | |V |53906. | | 336. | | |79072 USNO | +170660 |V0660 Car *|104339.6-601022 |M: | 10.6 : | 14.6 : | |V | | | 424. : | |C |79100 2MASS| +170661 |V0661 Car *|104400.4-595228 |EA | 8.07 | 8.28 | 8.2 : |V |53131.619 | | 23.944 |04 : |O7II |79216 DM | +170662 |V0662 Car *|104536.3-594823 |EB | 12.05 | 12.75 | 12.75 |V |53490.609 | | 1.41355 | |O4V |79064 79217| +170663 |V0663 Car |104846.4-691750 |M | 10.5 | 15.8 | |V |53837. | | 269. | | |79072 GSC | +170664 |V0664 Car |105030.7-724436 |M | 10.1 |< 15.0 | |V |53503. | | 227. | |Me |79064 79076| +170665 |V0665 Car *|105152.0-662007 |EA | 10.90 | 11.30 | 11.3 : |V |51888.780 | | 15.509 |04 : | |79009 DM | +170666 |V0666 Car |105208.2-733639 |SRB | 11.0 | 13.3 | |V | | | 146.4 | | |79064 79076| +170667 |V0667 Car |105244.3-581039 |SRB | 10.0 | 10.5 | |V | | | 40. | |M5-M7 |79100 DM | +170668 |V0668 Car |105255.3-693908 |M | 11.9 |< 14.4 | |V |53868. | | 251. | | |79100 GSC | +170669 |V0669 Car |105323.8-593512 |SRA: | 12.4 | 13.8 : | |V |53871. | | 290. | |S |79072 USNO | +170670 |V0670 Car |105636.5-713227 |M | 11.4 | 15.0 | |V |53832. | | 216. | |Me |79064 79076| +170671 |V0671 Car |105809.3-721446 |M | 8.8 | 12.4 | |V |53757. | | 226. | |Me |79064 DM | +170672 |V0672 Car |105925.4-581218 |M | 12.3 |< 15.0 | |V |53561. | | 355. | |M7 |79072 USNO | +170673 |V0673 Car |110538.6-731548 |M | 12.1 |< 15.0 | |V |53868. | | 242. | |Me |79064 GSC | +170674 |V0674 Car *|110650.2-595048 |EA | 9.94 | 10.47 | 10.24 |V |52973.770 | | 19.811 |03 |B1V |79003 DM | +170675 |V0675 Car *|110742.1-713541 |SRA: | 10.9 |< 12.2 | |V |53657. | | 414. | | |79064 79071| +170676 |V0676 Car |110919.6-714812 |SRB | 10.1 | 11.0 | |V | | | 56.7 | | |79064 79087| +170677 |V0677 Car |111328.9-673529 |M | 12.0 |< 15.2 | |V |53541. | | 131. | | |79072 GSC | +170678 |V0678 Car |111729.0-740309 |SRB | 13.3 | 14.8 | |V | | | 174. : | | |79100 79063| +170679 |V0679 Car |111353.8-611348 |NA | 7.80 |< 20. | |V |54797. |2008 | 2008 | |pec(Nova) |80213 | NL80_1 +170680 |V0680 Car *|070014.7-605155 |BY: | 11.75 |( 0.04 )| |V | | | 4.4 | |G5V |80199 2MASS| NL80_2 +170681 |V0681 Car *|073903.7-603709 |EA+DSCT: | 10.04 | 10.22 | 10.19 |V |51978.6871 | | 1.2209619 |09 |A5II |80281 DM | NL80_2 +170682 |V0682 Car |082122.3-532853 |SR | 12.6 |< 13.7 | |V | | | 83. : | | |80256 GSC | NL80_2 +170683 |V0683 Car |084636.2-580726 |LB | 12.8 |< 13.4 | |V | | | | | |80256 2MASS| NL80_2 +170684 |V0684 Car *|085729.6-625350 |EA | 8.76 | 8.94 | 8.94 |V |52619.731 | | 3.33751 |09 |A5IV/V |80011 DM | NL80_2 +170685 |V0685 Car |091639.5-743645 |LB | 12.0 |< 12.5 | |V | | | | | |80256 GSC | NL80_2 +170686 |V0686 Car *|093338.8-574209 |EA | 8.92 | 9.05 | 9.01 |V |53851.646 | | 2.08489 |07 |A0V |80011 DM | NL80_2 +170687 |V0687 Car |094416.4-751013 |SRA | 12.9 |< 14.3 | |V |53820. | | 204. | | |80256 GSC | NL80_2 +170688 |V0688 Car |094441.5-624732 |M | 6.52 | 7.70 | |K | | | 547. | |C |80166 2MASS| NL80_2 +170689 |V0689 Car |094509.3-632726 |RRAB | 12.02 | 12.82 | |V |53556.5229 | | 0.60586 |17 | |80002 GSC | NL80_2 +170690 |V0690 Car |094826.8-580105 |DCEP | 11.59 | 12.20 | |V |53025.32 | | 4.15049 |25 | |80326 GSC | NL80_2 +170691 |V0691 Car |094925.0-724502 |RRAB | 13.8 | 14.6 | |V |53439.76 | | 0.55131 |20 : | |80135 GSC | NL80_2 +170692 |V0692 Car |094949.4-625609 |SR | 12.2 | 13.3 | |V | | | 190. : | | |80001 GSC | NL80_2 +170693 |V0693 Car |095229.9-752228 |M | 2.48 | 4.25 | |K | | | 539. | |C |80166 2MASS| NL80_2 +170694 |V0694 Car |095439.5-680357 |RRAB | 13.3 | 14.3 | |V |53865.587 | | 0.575349 |16 | |80135 GSC | NL80_2 +170695 |V0695 Car |095452.1-603526 |M | 6.17 | 7.99 | |K | | | 714. | |C |80166 2MASS| NL80_2 +170696 |V0696 Car |095632.7-672642 |RRAB | 13.5 | 14.3 | |V |52926.857 | | 0.569655 |16 | |80135 GSC | NL80_2 +170697 |V0697 Car |100008.5-620519 |M | 8.35 | 10.06 | |K | | | 506. | |C |80166 2MASS| NL80_2 +170698 |V0698 Car |100357.6-600037 |SRB | 11.6 | 12.5 | |V | | | 235. | |C(R) |80001 GSC | NL80_2 +170699 |V0699 Car |100419.6-590400 |M: | 5.55 | 6.53 | |K | | | 531. | |C |80166 2MASS| NL80_2 +170700 |V0700 Car |100657.2-592125 |SR | 8.99 | 9.57 | |J | | | 448. | |C |80166 2MASS| NL80_2 +170701 |V0701 Car *|100913.6-571434 |CEP(B) | 10.7 | 11.5 | |V |52655.94 | | 4.089 | | |80328 GSC | NL80_2 +170702 |V0702 Car |101134.9-575753 |M | 6.63 | 8.38 | |K | | | 585. | | |80166 2MASS| NL80_2 +170703 |V0703 Car |101140.9-632106 |SRB | 12.7 | 13.3 | |V | | | 170. | |M7 |80001 2MASS| NL80_2 +170704 |V0704 Car |101239.9-601330 |SRA | 11.9 | 14.2 : | |V |54814. | | 422. | |Ce |80001 GSC | NL80_2 +170705 |V0705 Car |101243.9-611724 |M: | 13.2 | 16.5 | |R | | | | | |80001 2MASS| NL80_2 +170706 |V0706 Car *|101453.2-590256 |SRA | 12.5 | 14.2 | |V |54893. | | 184. | |M7e |80001 GSC | NL80_2 +170707 |V0707 Car |101527.0-575811 |LB | 7.32 | 9.28 | |J | | | | |C |80166 2MASS| NL80_2 +170708 |V0708 Car |101537.9-593305 |DCEP | 11.9 | 12.5 | |V |52960.04 | | 51.42724 |25 | |80326 GSC | NL80_2 +170709 |V0709 Car |101916.9-571926 |LB | 10.8 | 12.0 | |V | | | | |K |80184 GSC | NL80_2 +170710 |V0710 Car |102144.0-581635 |M | 5.32 | 6.66 | |K | | | 675. | | |80166 2MASS| NL80_2 +170711 |V0711 Car |102349.2-591354 |M | 5.13 | 5.59 | |K | | | 585. : | |C |80166 2MASS| NL80_2 +170712 |V0712 Car *|102358.0-574549 |EB/WR | 10.64 | 11.07 | 11.07 |I |53124.569 | | 3.686 | |WN6ha |80333 2MASS| NL80_2 +170713 |V0713 Car *|102735.9-582327 |EA | 9.45 | 9.64 | 9.62 |V |52703.70 | | 3.12881 |13 |B2V |80011 GSC | NL80_2 +170714 |V0714 Car *|102815.8-574139 |EA | 9.68 | 9.85 | 9.77 |V |51958.636 | | 2.04530 |13 |B2 |80011 GSC | NL80_2 +170715 |V0715 Car |102944.3-622829 |SR | 9.63 | 9.89 | |J | | | 168. | |C |80166 2MASS| NL80_2 +170716 |V0716 Car |103110.7-592818 |M | 10.5 |< 13.8 | |V |54565. | | 408. | | |80001 2MASS| NL80_2 +170717 |V0717 Car *|103209.8-590542 |EB+EB | 10.44 | 10.94 | 10.85 |V |54540.7963 | | 0.9533071 | |F |80138 GSC | NL80_2 +170718 |V0718 Car *|103308.1-713345 |EW+EW | 10.55 | 10.87 | 10.85 |V |53773.7961 | | 0.816190 | | |80138 GSC | NL80_2 +170719 |V0719 Car |103708.9-605934 |SR | 8.64 | 9.30 | |J | | | 495. : | | |80166 2MASS| NL80_2 +170720 |V0720 Car *|104129.9-595658 |ACV: | 9.69 | 9.82 | |V | | | 3.08133 | |B8 |80335 80335| NL80_2 +170721 |V0721 Car |104205.6-593327 |SRB | 8.5 | 9.1 | |V | | | 52.95 | |M4/5III: |80335 80335| NL80_2 +170722 |V0722 Car |104232.1-593530 |BE: | 8.84 | 9.01 | |V | | | | |B2/3II |80335 80335| NL80_2 +170723 |V0723 Car |104323.3-593357 |FU: | 13.5 |< 16.5 | |Ks| | | | | |80336 80336| NL80_2 +170724 |V0724 Car *|104327.4-600555 |BCEP | 8.86 | 9.03 | |V | | | 0.451686 | |B1V |80335 80335| NL80_2 +170725 |V0725 Car *|104330.8-592924 |EA | 9.95 | 10.16 | 10.05 |V |52979.820 | | 9.4109 |03 : |B0V(n) |80335 80335| NL80_2 +170726 |V0726 Car |104333.8-591828 |SRB | 11.6 | 12.4 | |V | | | 57.1 | |M |80335 80335| NL80_2 +170727 |V0727 Car |104410.2-691819 |R | 12.0 |( 0.04 )| |R | | | 0.336784 | |DA+dMe |80337 80337| NL80_2 +170728 |V0728 Car |104413.5-593640 |SRB | 12.53 | 13.69 | |V | | | 222. | |S |80001 GSC | NL80_2 +170729 |V0729 Car |104440.5-600333 |SR: | 9.35 | 9.85 | |V |54986.6 | | 106. | | |80335 80335| NL80_2 +170730 |V0730 Car |104457.3-595606 |SRC: | 7.7 | 7.9 | |V | | | 99.8 : | |M1Iab+B |80335 80335| NL80_2 +170731 |V0731 Car *|104512.7-594446 |EA | 9.27 | 9.78 : | 9.7 |V |52652.800 | | 2.29995 |12 |OBV+O9.5V |80335 80335| NL80_2 +170732 |V0732 Car |104616.0-582521 |SR | 6.87 | 7.11 | |J | | | 232. : | |C |80166 2MASS| NL80_2 +170733 |V0733 Car *|104638.9-592346 |EA | 10.76 | 11.03 | 10.91 |V |51920.833 | | 2.95697 |09 |B2-3 |80335 80335| NL80_2 +170734 |V0734 Car *|104727.8-593747 |EA | 11.20 | 11.58 | 11.30 |V |52662.788 | | 3.10746 |04 |A |80335 80335| NL80_2 +170735 |V0735 Car |104730.5-591138 |ACV | 10.26 | 10.39 | |V | | | 3.1450 | |B8V |80335 80335| NL80_2 +170736 |V0736 Car *|104738.9-603704 |EA | 7.91 | 8.18 | 8.17 |V |52700.640 | | 17.7997 |04 |B1Vnep |80023 DM | NL80_2 +170737 |V0737 Car |104800.4-594121 |SR | 10.42 | 10.86 | |V | | | 22.25 | |M5-M7 |80335 80335| NL80_2 +170738 |V0738 Car *|104846.5-603540 |EB | 9.08 | 9.17 | 9.14 |V |53015.80 | | 4.778 | |B1IIIn |80015 GSC | NL80_2 +170739 |V0739 Car |105004.8-615133 |EP: | 15.69 | 15.70 | |I |52324.94513 | | 1.86990 |02 | |80343 80343| NL80_2 +170740 |V0740 Car |105020.5-612835 |EA | 16.66 | 16.72 | |I |52329.94514 | | 8.34670 |02 | |80342 80342| NL80_2 +170741 |V0741 Car |105024.7-612612 |EA | 14.90 | 14.98 | |I |52324.21555 | | 6.06430 |04 | |80342 80342| NL80_2 +170742 |V0742 Car |105034.6-615726 |EP | 15.72 | 15.73 | |I |52324.70067 | | 1.68965 |05 | |80343 80343| NL80_2 +170743 |V0743 Car |105036.3-614037 |EA | 15.86 | 15.93 | |I |52325.68889 | | 3.23210 |05 | |80342 80342| NL80_2 +170744 |V0744 Car *|105041.4-591246 |EB | 8.43 | 8.55 | 8.49 |V |51936.715 | | 1.51416 | |B9IV |80015 DM | NL80_2 +170745 |V0745 Car |105051.0-613456 |EA | 16.19 | 16.22 | |I |52327.36759 | | 5.74073 |02 | |80343 80343| NL80_2 +170746 |V0746 Car |105109.2-614312 |EA | 16.23 | 16.31 | |I |52331.49765 | | 9.16590 |02 | |80342 80342| NL80_2 +170747 |V0747 Car |105123.4-614722 |EA | 15.94 | 15.97 | |I |52327.28057 | | 4.83037 |02 | |80343 80343| NL80_2 +170748 |V0748 Car |105140.4-613416 |EA | 16.71 | 16.74 | |I |52325.29544 | | 5.02260 |05 | |80342 80342| NL80_2 +170749 |V0749 Car |105158.6-614121 |EA | 14.29 | 14.33 | |I |52323.67601 | | 5.28260 |05 | |80342 80342| NL80_2 +170750 |V0750 Car *|105220.7-612946 |EA | 15.76 | 15.79 | |I |52323.24893 | | 1.71213 |06 | |80342 80342| NL80_2 +170751 |V0751 Car |105224.0-613110 |EA | 16.16 | 16.19 | |I |52324.37986 | | 3.05810 |04 | |80342 80342| NL80_2 +170752 |V0752 Car |105224.4-612649 |EP | 14.42 | 14.45 | |I |52324.36394 | | 1.43250 |05 | |80342 80342| NL80_2 +170753 |V0753 Car |105228.3-612932 |EA | 16.15 | 16.18 | |I |52326.36185 | | 2.84857 |04 | |80342 80342| NL80_2 +170754 |V0754 Car *|105246.4-612318 |EA | 13.64 | 13.66 | |I |52327.53260 | | 3.87900 |10 | |80342 80342| NL80_2 +170755 |V0755 Car |105255.4-605210 |M | 5.69 | 6.86 | |K | | | 483. | |C |80166 2MASS| NL80_2 +170756 |V0756 Car |105256.8-615055 |EA | 14.88 | 14.90 | |I |52323.32754 | | 0.82670 |09 | |80342 80342| NL80_2 +170757 |V0757 Car |105258.5-615144 |EA | 16.69 | 16.73 | |I |52324.23024 | | 2.36180 |03 | |80342 80342| NL80_2 +170758 |V0758 Car |105312.4-613019 |EA | 17.28 | 17.33 | |I |52325.78009 | | 4.18590 |04 | |80342 80342| NL80_2 +170759 |V0759 Car |105317.8-612421 |EP | 16.96 | 16.98 | |V |53470.56397 | | 4.014484 |03 |G |80345 80342| NL80_2 +170760 |V0760 Car |105327.0-614320 |EA | 17.10 | 17.15 | |I |52328.02979 | | 6.06800 |04 | |80342 80342| NL80_2 +170761 |V0761 Car |105329.5-614738 |EA | 13.84 | 13.86 | |I |52323.79252 | | 3.09790 |05 | |80342 80342| NL80_2 +170762 |V0762 Car |105333.5-614705 |EA | 16.69 | 16.74 | |I |52324.30267 | | 8.21690 |03 | |80342 80342| NL80_2 +170763 |V0763 Car |105340.6-612515 |EP: | 14.99 | 15.00 | |I |52322.55993 | | 0.589128 |13 |F0V |80240 80240| NL80_2 +170764 |V0764 Car |105351.1-613414 |EA | 17.71 | 17.74 | |I |52324.78332 | | 2.53585 |06 | |80342 80342| NL80_2 +170765 |V0765 Car |105423.5-613722 |EA | 16.66 | 16.71 | |I |52323.55936 | | 3.18980 |05 | |80342 80342| NL80_2 +170766 |V0766 Car |105427.4-613818 |EA | 15.00 | 15.02 | |I |52327.42530 | | 7.39100 |06 | |80343 80343| NL80_2 +170767 |V0767 Car |105510.2-613105 |EA: | 14.97 | 14.98 | |I |52329.84698 | | 1.92720 |04 | |80343 80343| NL80_2 +170768 |V0768 Car |105512.7-615455 |EA | 16.47 | 16.50 | |I |52323.36419 | | 1.10280 |07 | |80342 80342| NL80_2 +170769 |V0769 Car |105517.8-615436 |EA | 15.51 | 15.53 | |I |52322.83195 | | 0.56765 |16 : | |80342 80342| NL80_2 +170770 |V0770 Car |105519.3-613212 |EA | 16.36 | 16.38 | |I |52325.30146 | | 1.39358 |08 | |80342 80342| NL80_2 +170771 |V0771 Car |105520.2-612500 |EA | 15.20 | 15.22 | |I |52324.91426 | | 2.20674 |07 | |80342 80342| NL80_2 +170772 |V0772 Car *|105544.1-684727 |EB | 7.98 | 8.17 | 8.07 |V |51339.87 | | 0.88417 | |A1V |80011 DM | NL80_2 +170773 |V0773 Car |105548.8-612845 |EA | 14.32 | 14.36 | |I |52327.38138 | | 3.09222 |07 | |80342 80342| NL80_2 +170774 |V0774 Car |105611.1-612956 |EA | 15.78 | 15.79 | |I |52323.00793 | | 2.28990 |04 | |80342 80342| NL80_2 +170775 |V0775 Car |105633.9-613711 |EA | 14.90 | 14.94 | |I |52323.51865 | | 3.20820 |05 | |80342 80342| NL80_2 +170776 |V0776 Car |105636.5-612847 |EA | 16.44 | 16.46 | |I |52322.67722 | | 1.04155 |05 | |80342 80342| NL80_2 +170777 |V0777 Car |105645.4-600337 |M | 12.5 |< 14.5 | |V |54473. | | 461. | |C |80001 GSC | NL80_2 +170778 |V0778 Car |105651.6-615615 |EA | 16.64 | 16.67 | |I |52327.77953 | | 6.39800 |04 | |80342 80342| NL80_2 +170779 |V0779 Car |105723.3-612646 |EA | 16.50 | 16.54 | |I |52322.96414 | | 0.97810 |08 | |80342 80342| NL80_2 +170780 |V0780 Car |105731.1-612722 |EA | 16.73 | 16.78 | |I |52324.30930 | | 1.57900 |09 | |80342 80342| NL80_2 +170781 |V0781 Car |105742.4-613624 |EA | 14.87 | 14.89 | |I |52323.20108 | | 1.59920 |04 | |80342 80342| NL80_2 +170782 |V0782 Car |105747.1-621916 |M | 5.83 | 6.39 | |K | | | 473. | |C |80166 GSC | NL80_2 +170783 |V0783 Car |105751.9-614359 |EA | 15.82 | 15.83 | |I |52343.82550 | | 5.30382 |04 | |80343 80343| NL80_2 +170784 |V0784 Car |105754.3-614203 |EA | 16.50 | 16.52 | |I |52325.49707 | | 1.80730 |06 | |80342 80342| NL80_2 +170785 |V0785 Car |105801.9-614952 |EA | 16.12 | 16.14 | |I |52326.45043 | | 5.45550 |07 | |80342 80342| NL80_2 +170786 |V0786 Car |105803.0-613426 |EA | 16.30 | 16.33 | |I |52323.84747 | | 0.764244 |06 |K3III+M7V |80346 80342| NL80_2 +170787 |V0787 Car |105819.2-612928 |EA | 16.32 | 16.38 | |I |52323.92937 | | 2.77700 |04 | |80342 80342| NL80_2 +170788 |V0788 Car *|105841.8-615313 |EA | 13.76 | 13.78 | |I |52323.54517 | | 2.12678 |04 | |80342 80342| NL80_2 +170789 |V0789 Car |105859.9-613444 |EA | 16.69 | 16.75 | |I |52324.98303 | | 3.11300 |05 | |80342 80342| NL80_2 +170790 |V0790 Car *|105900.1-613742 |EA | 15.45 | 15.50 | |I |52324.44012 | | 2.11460 |06 | |80342 80342| NL80_2 +170791 |V0791 Car |105905.5-603149 |M | 5.14 | 6.00 | |K | | | 416. | |C |80166 2MASS| NL80_2 +170792 |V0792 Car |105922.1-612522 |EA | 14.58 | 14.61 | |I |52323.58871 | | 1.25012 |09 | |80342 80342| NL80_2 +170793 |V0793 Car |105926.4-613650 |EA | 15.41 | 15.43 | |I |52323.10755 | | 3.21650 |08 | |80342 80342| NL80_2 +170794 |V0794 Car |105935.5-615700 |EA | 15.28 | 15.31 | |I |52324.28819 | | 1.32452 |08 | |80342 80342| NL80_2 +170795 |V0795 Car |105939.2-612408 |EA | 16.32 | 16.38 | |I |52332.12239 | | 6.60672 |04 | |80342 80342| NL80_2 +170796 |V0796 Car |105941.5-615516 |EA | 15.32 | 15.35 | |I |52328.81199 | | 5.32038 |03 | |80342 80342| NL80_2 +170797 |V0797 Car |105941.9-613235 |EA | 15.57 | 15.59 | |I |52327.40830 | | 5.11080 |03 | |80343 80343| NL80_2 +170798 |V0798 Car |105949.5-615208 |EA | 15.10 | 15.11 | |I |52327.35782 | | 2.75330 |04 | |80343 80343| NL80_2 +170799 |V0799 Car |110034.7-620410 |EA | 15.68 | 15.71 | |I |52684.10926 | | 3.06280 |03 |A2 |80344 80344| NL80_2 +170800 |V0800 Car |110113.8-614422 |EP: | 16.45 | 16.49 | |I |52684.68281 | | 3.39330 |03 |F8 |80344 80344| NL80_2 +170801 |V0801 Car |110152.0-615802 |EP: | 14.80 | 14.82 | |I |52683.75001 | | 5.67860 |02 |A8 |80344 80344| NL80_2 +170802 |V0802 Car *|110204.3-620943 |SRD | 8.70 | 8.95 | |V | | | 92. | |F3II |80184 DM | NL80_2 +170803 |V0803 Car |110243.7-613747 |EA | 16.41 | 16.44 | |I |52684.64467 | | 2.53420 |04 |A2 |80344 80344| NL80_2 +170804 |V0804 Car |110300.7-613328 |M | 12.6 |< 14.3 | |V |54579. | | 536. | |C |80001 2MASS| NL80_2 +170805 |V0805 Car |110423.7-614311 |EP: | 16.04 | 16.06 | |I |52685.20281 | | 2.64550 |04 |G9 |80344 80344| NL80_2 +170806 |V0806 Car |110438.7-740110 |E: | 13.73 | 14.46 | |Ks| | | | | |80348 2MASS| NL80_2 +170807 |V0807 Car |110512.2-611401 |EA | 16.89 | 16.94 | |I |52077.22138 | | 8.04060 |01 | |80342 80342| NL80_2 +170808 |V0808 Car |110523.0-731857 |SR | 13.0 |< 15.0 | |V | | | 229. | | |80001 GSC | NL80_2 +170809 |V0809 Car |110533.5-610846 |EA | 16.99 | 17.02 | |I |52073.42506 | | 1.58105 |06 | |80342 80342| NL80_2 +170810 |V0810 Car |110548.8-605451 |EA | 16.79 | 16.82 | |I |52073.10520 | | 1.28870 |06 | |80342 80342| NL80_2 +170811 |V0811 Car |110558.9-611009 |EA | 16.44 | 16.49 | |I |52077.39865 | | 6.85400 |03 | |80342 80342| NL80_2 +170812 |V0812 Car |110606.3-605620 |EA | 16.55 | 16.59 | |I |52075.19708 | | 2.33708 |06 | |80342 80342| NL80_2 +170813 |V0813 Car |110610.6-611453 |EA | 15.87 | 15.90 | |I |52076.33895 | | 1.58511 |06 | |80342 80342| NL80_2 +170814 |V0814 Car |110637.8-611916 |EA | 16.96 | 16.99 | |I |52077.35886 | | 2.64270 |07 | |80342 80342| NL80_2 +170815 |V0815 Car |110649.6-613024 |I: | 13.6 | 15.8 | |I | | | | | |80351 80351| NL80_2 +170816 |V0816 Car |110651.1-611110 |EA | 15.40 | 15.41 | |I |52324.97937 | | 1.80380 |08 |FV+MV |80343 80343| NL80_2 +170817 |V0817 Car |110651.9-605146 |EA | 15.61 | 15.63 | |I |52342.28258 | | 7.26867 |02 | |80343 80343| NL80_2 +170818 |V0818 Car |110652.6-611417 |EP: | 16.38 | 16.40 | |I |52076.34670 | | 4.18760 |03 | |80342 80342| NL80_2 +170819 |V0819 Car |110704.1-605421 |EA | 15.18 | 15.23 | |I |52074.42473 | | 3.51407 |04 | |80342 80342| NL80_2 +170820 |V0820 Car |110750.8-610540 |EA | 16.17 | 16.19 | |I |52075.85150 | | 5.434691 |02 | |80421 80342| NL80_2 +170821 |V0821 Car *|110753.4-610418 |EA | 15.94 | 15.97 | |I |52076.31928 | | 1.720390 |05 | |80421 80342| NL80_2 +170822 |V0822 Car |110754.2-735757 |E: | 14.33 | 15.09 : | |Ks| | | | | |80348 2MASS| NL80_2 +170823 |V0823 Car |110829.5-611913 |NC: | 17.1 |< 19.6 | |I |50580. :|1997 | | | |80354 80354| NL80_2 +170824 |V0824 Car |110837.1-612017 |EA | 14.60 | 14.62 | |I |52075.77838 | | 2.30890 |07 | |80342 80342| NL80_2 +170825 |V0825 Car |110837.2-611046 |EA | 15.91 | 15.95 | |I |52077.66751 | | 2.60119 |07 | |80342 80342| NL80_2 +170826 |V0826 Car |110841.0-610759 |EA | 16.26 | 16.29 | |I |52076.62809 | | 4.26800 |11 | |80342 80342| NL80_2 +170827 |V0827 Car |110857.8-605259 |EA | 16.40 | 16.45 | |I |52078.76236 | | 5.27980 |05 | |80342 80342| NL80_2 +170828 |V0828 Car |110857.9-610130 |EP: | 15.75 | 15.76 | |I |52074.24553 | | 1.06698 |09 | |80342 80342| NL80_2 +170829 |V0829 Car *|110949.4-602810 |EA | 9.42 | 9.58 | 9.51 |V |53470.672 | | 0.96280 |15 |B3.5V |80015 DM | NL80_2 +170830 |V0830 Car |111236.4-583838 |BCEP: | 8.32 | 8.36 | |Hp| | | 0.112217 | |B1:Vn |80019 HIP | NL80_2 +170831 |V0831 Car *|111514.5-600953 |EA: | 7.70 | 7.80 | 7.78 |V |51908.74 | | 14.758 | |B1/2II/IIIn |80015 DM | NL80_2 +170832 |V0832 Car |111638.9-655056 |M | 3.73 | 5.30 | |K | | | 623. | |C |80166 2MASS| NL80_2 +170833 |V0833 Car *|111743.0-575930 |ELL: | 9.45 | 9.54 | 9.54 |V |54133.79 | | 1.24357 | |B1.5Vnn |80011 DM | NL80_2 +170834 |V0834 Car |105019.7-640647 |NA | 10.2 |< 19. | |V |55987. |2012 | | |pec(Nova) |80634 80635| NL80_3 +179007 |eta Car *|104503.5-594104 |SDOR | -0.8 | 7.9 | |V | | | | |pec(e) |07272 08613| +179022 |khi Car *|075646.7-525857 |BCEP | 3.46 |( 0.015 )| |V | | | 0.101 | |B2IV |08395 CoD | +179112 |l Car |094514.8-623028 |DCEP | 3.28 | 4.18 | |V |40736.9 | | 35.53584 |26 |F6Ib-K0Ib |00001 05232| +180001 |R Cas *|235824.9+512320 |M | 4.7 | 13.5 | |V |44463. | | 430.46 |40 |M6e-M10e |00001 00002| +180002 |S Cas |011942.0+723641 |M | 7.9 | 16.1 | |V |43870. | | 612.43 |43 |S3,4e-S5,8e |00001 00002| +180003 |T Cas *|002314.3+554733 |M | 6.9 | 13.0 | |V |44160. | | 444.83 |56 |M6e-M9.0e |00001 00002| +180004 |U Cas *|004621.4+481439 |M | 8.0 | 15.7 | |V |44621. | | 277.19 |44 |S3,5e-S8,6e |00001 00002| +180005 |V Cas |231140.7+594159 |M | 6.9 | 13.4 | |V |44605. | | 228.83 |48 |M5e-M8.5e |00001 00002| +180006 |W Cas *|005453.9+583349 |M | 7.8 | 12.5 | |V |44209. | | 405.57 |46 |C7,1e |00001 00002| +180007 |X Cas *|015638.1+591534 |M | 9.45 | 13.2 | |V |43922. | | 422.84 |55 |C5,4e(N1e) |00001 00002| +180008 |Y Cas *|000321.4+554052 |M | 8.7 | 15.3 | |V |44506. | | 413.48 |43 |M6e-M8.5e |00001 00002| +180009 |Z Cas *|234431.5+563452 |M | 8.5 | 15.4 | |V |42376. | | 495.71 |39 |M7e |00001 00002| +180010 |RR Cas |235549.0+534329 |M | 9.5 | 14.7 | |V |44470. | | 300.07 |48 |M5e |00001 00002| +180011 |RS Cas *|233716.1+622544 |DCEP | 9.53 | 10.36 | |V |42773.487 | | 6.295983 |27 |F7-G1Ib |08632 07920| +180012 |RT Cas |234624.3+542909 |SRA | 11.0 | 14.0 | |p |29549. | | 399.8 | |M7 |00343 00101| +180013 |RU Cas |011141.4+650108 |CST: | 5.50 | 5.60 | |V | | | | |B9IV | 02061| +180014 |RV Cas *|005242.8+472456 |M | 7.3 | 16.1 | |V |44313. | | 331.68 |38 |M4.5e-M9.5e |00001 00002| +180015 |RW Cas *|013714.0+574533 |DCEP | 8.62 | 9.76 | |V |35575.227 | | 14.7949 |37 |F6-G5 |00001 00884| +180016 |RX Cas *|030745.8+673439 |EB/GS | 8.64 | 9.49 |< 9.49 |V |16250.910 | | 32.31211 | |K1III+A5eIII |05031 06225| +180017 |RY Cas *|235207.0+584430 |DCEP | 9.38 | 10.39 | |V |37344.602 | | 12.13726 |41 |F5-G3Ib |03157 00884| +180018 |RZ Cas *|024855.5+693803 |EA/SD | 6.18 | 7.72 | 6.26 |V |43200.3063 | | 1.195247 |17 *|A2.8V |00018 05056| +180019 |SS Cas |000936.5+513401 |M | 8.8 | 13.3 | |V |44208. | | 140.57 |48 |M3e-M8e |00001 00002| +180020 |ST Cas |001732.1+501714 |SR | 11.6 | 12.4 | |p | | | | |C4,4(N3) |00882 00103| +180021 |SU Cas *|025158.8+685319 |DCEPS | 5.70 | 6.18 | |V |38000.598 | | 1.949319 |40 |F5Ib-II-F7Ib-II |00883 05056| +180022 |SV Cas *|233901.4+521545 |SRA | 9.1 | 12.5 | |p |37964. | | 264.5 |42 |M6.5 |00001 BD | +180023 |SW Cas |230710.1+583315 |DCEP | 9.32 | 10.01 | |V |42989.590 | | 5.440950 |31 |F6-G2 |08632 00884| +180024 |SX Cas *|001042.1+545329 |EA/GS | 8.96 | 9.83 | 9.32 |V |39009.525 | | 36.56375 |10 |B7eIII+K3III |05067 00102| +180025 |SY Cas *|001509.8+582527 |DCEP | 9.40 | 10.24 | |V |41682.230 | | 4.071098 |25 |F5-G0 |08300 00887| +180026 |SZ Cas *|022713.8+592738 |DCEPS | 9.60 | 10.02 | |V |39059.47 | | 13.63289 |44 |F6-G4Ib |05074 00884| +180027 |TT Cas |001009.2+545235 |M | 13.0 | 16.4 | |p |30030. | | 396. | |M8 |00001 06286| +180028 |TU Cas *|002619.4+511649 |CEP(B) | 6.88 | 8.18 | |V |41704.839 | | 2.139298 |31 |F3II-F5II |05075 BD | +180029 |TV Cas *|001918.7+590821 |EA/SD | 7.22 | 8.22 | 7.34 |V |44602.4534 | | 1.8125956 |18 |B9V+F7IV |00001 05100| +180030 |TW Cas *|024554.8+654335 |EA | 8.32 | 8.98 | 8.40 |V |42008.3873 | | 1.4283240 |16 |B9V+A0: |08720 00010| +180031 |TX Cas *|025216.2+624658 |EB/DM | 9.16 | 9.8 | 9.6 |V |29677.228 | | 2.926870 | |B0V |00007 BD | +180032 |TY Cas *|003659.5+630802 |M | 11.5 |< 17.5 | |p |43405. | | 645.0 | |M6 |00001 00197| +180033 |TZ Cas |235256.2+610008 |LC | 8.86 | 10.5 | |V | | | | |M2Iab |00104 BD | +180034 |UU Cas *|235039.5+605439 |EB/DM | 10.4 | 10.8 | 10.5 |p |28751.72 | | 8.51929 | |B0.5III |00893 00884| +180035 |UV Cas |230214.7+593637 |RCB | 11.8 | 16.5 | |p | | | | |F0Ib-G5Ib |00098 05155| +180036 |UW Cas |003601.3+575443 |M | 10.7 |< 17.0 | |p |39935. | | 290.48 | |M8 |00001 00969| +180037 |UX Cas |001323.3+632731 |SRB | 12.0 |< 13.8 | |p |27330. | | 360. : | |C6,2(R2) |00001 00894| +180038 |UY Cas |230201.4+573819 |SRA | 9.8 | 12.0 | |V |34035. | | 102.85 |38 |M3e-M4e |01005 00895| +180039 |UZ Cas *|011241.2+611248 |DCEP | 10.93 | 11.73 | |V |36982.266 | | 4.259459 |26 |F6-G2 |00321 00321| +180040 |VV Cas *|015107.0+595318 |DCEP | 10.26 | 11.20 | |V |42836.853 | | 6.207059 |26 |F6-G2Ib |08632 00884| +180041 |VW Cas *|010548.2+614518 |DCEP | 10.36 | 11.07 | |V |42778.693 | | 5.993859 |33 |F6-G2 |08632 00884| +180042 |VX Cas |003130.7+615851 |ISA | 10.5 | 13.3 | |V | | | | |A0ea |05157 00197| +180043 |VY Cas |005126.0+625515 |SRB | 10.5 | 12.0 | |p | | | 100. | |M6-M7 |00898 00884| +180044 |VZ Cas |011628.4+562343 |M | 9.3 | 15.0 | |V |44676. | | 169.24 |46 |M0e-M3e |00001 00899| +180045 |WW Cas |013332.7+574505 |LB | 9.1 | 11.7 | |V | | | | |C5,5(N1) | 00685| +180046 |WX Cas |015403.7+610633 |LC | 9.4 | 11.5 | |V | | | | |M2Iab-Ib |00197 00103| +180047 |WY Cas *|235801.4+562914 |M | 10.0 | 16.9 | |p |44310. | | 476.56 |39 |S6,5pe |00001 07377| +180048 |WZ Cas *|000115.9+602119 |SRB | 9.4 | 11.4 | |p | | | 186. | |C9,2JLi(N1p) |00001 00002| +180049 |XX Cas *|012934.6+605805 |EA/DM | 10.0 | 10.7 | 10.2 |p |36527.619 | | 3.0671773 |20 *|B4Vn+B6Vn |03119 00901| +180050 |XY Cas |004953.3+600739 |DCEP | 9.61 | 10.26 | |V |42006.786 | | 4.501697 |31 |F6Ib-G2Ib |08300 00884| +180051 |XZ Cas |012256.4+611035 |LB | 9.0 | 9.6 | |V | | | | |M0 |00903 BD | +180052 |YY Cas |031018.0+654434 |LB | 11.4 | 11.9 | |p | | | | |M0 |00904 BD | +180053 |YZ Cas *|004539.1+745917 |EA/DM | 5.71 | 6.12 | 5.78 |B |28733.4218 | | 4.467224 |15 |A2V+F2V |00905 BD | +180054 |ZZ Cas *|003330.4+623040 |EB/KE | 10.7 | 11.1 | 10.9 |p |33437.495 | | 1.243527 | |B3 |00001 00522| +180055 |AA Cas |011925.7+561945 |LB | 8.3 | 9.4 | |V | | | | |M6III |00179 04551| +180056 |AB Cas *|023731.5+711816 |EA+DSCT | 10.10 | 11.85 | 10.28 |V |42714.4627 | | 1.3668738 |18 *|A3+KV |00001 00906| +180057 |AC Cas |010237.5+715013 |SRA | 12.7 | 14.7 | |p |25698. | | 165.4 | |M1 |00001 00531| +180058 |AD Cas |010433.8+710221 |M | 12.4 |< 17.5 | |p |40500. | | 147.21 | | |00001 07414| +180059 |AE Cas *|012700.3+700738 |EA/SD | 12.7 | 13.5 | 12.8 |p |25411.500 | | 0.759119 |20 *| |00907 00531| +180060 |AF Cas |013259.9+703105 |SR | 14.2 | 18. : | |p |25333. | | 181. | |M8: |00907 00531| +180061 |AG Cas |013405.3+725158 |M | 13.7 | 18.0 : | |p |29696. | | 342.2 | | |01000 00531| +180062 |AH Cas *|013438.7+705703 |EA/SD: | 13.2 | 14.3 | 13.3 |p |25501.401 | | 1.402265 |10 *| |00907 00531| +180063 |AI Cas |014501.8+725147 |M | 13.2 |< 18. | |p |27966. | | 302.5 | | |01000 00531| +180064 |AK Cas |015558.8+693149 |M | 13.3 |< 18. | |p |25655. | | 422.4 | | |00114 00531| +180065 |AL Cas *|021344.6+700843 |EW | 12.9 | 13.6 | 13.6 |p |44490.366 | | 0.50055583 | | |00001 00531| +180066 |AM Cas |022623.4+711832 |UGSS | 12.3 | 15.2 | |p | | |( 30. ) | | |05421 05421| +180067 |AN Cas |025306.0+715057 |M | 14.7 |< 16. | |p |25326. | | 313. | | |00907 00531| +180068 |AO Cas *|001743.1+512559 |ELL/KE | 6.07 | 6.24 | 6.24 |V |32191.189 | | 3.523487 | |O9III+O9III |03323 BD | +180069 |AP Cas |003316.2+625426 |DCEP | 11.25 | 11.87 | |V |37244.281 | | 6.8470 |35 |F6Ib-F7.5Ib |00908 00908| +180070 |AQ Cas *|011910.4+622348 |EA/D | 10.06 | 11.0 | 10.4 |V |26282.50 | | 11.72115 |18 |B3+B9: |00001 00192| +180071 |AR Cas *|233001.9+583256 |EA/DM | 4.82 | 4.96 | 4.86 |V |35792.8948 | | 6.0663309 |06 *|B3IV-V |06470 BD | +180072 |AS Cas *|002537.8+641348 |CEP(B) | 11.81 | 12.55 | |V |43809.75 | | 3.02125 |30 | |08637 08637| +180073 |AT Cas |003421.1+623459 |EA/SD | 13.9 | 15.1 | |p |27139.027 | | 1.595557 |13 *| |00339 00339| +180074 |AU Cas |005513.0+641539 |RR | 13.4 | 15.0 | |p |25553.23 | | 0.52826 | | |00909 06286| +180075 |AV Cas |005935.1+604324 |M | 13.5 |< 17.8 | |p |31027. | | 322. | |M8 |00001 06286| +180076 |AW Cas |011601.2+613715 |DCEP | 13.2 | 14.3 | |p |26972.474 | | 4.27833 |40 | |00910 00910| +180077 |AX Cas *|012350.0+613428 |EB | 12.8 | 13.3 | 12.9 |p |28626.442 | | 0.600376 | | |00911 GSC | +180078 |AY Cas |013900.0+645921 |DCEP | 11.23 | 11.95 | |V |36999.797 | | 2.871294 |35 |F4 |00001 00912| +180079 |AZ Cas *|014216.5+612516 |EA/GS | 9.22 | 9.52 | |V |42689. | | 3402. |03 |F8-M0eIb+B0-B1V |08827 08826| +180080 |BB Cas |235059.5+620843 |M | 12.1 | 16.6 | |p |35350. | | 340.0 |35 |M8 |00913 00913| +180081 |BC Cas |235117.5+601810 |N | 12. |< 17. | |p |25859. :|1929 | | | |00914 00914| +180082 |BD Cas *|000951.4+613051 |CWB | 10.84 | 11.21 | |V |41932.032 | | 3.650900 |47 | |08300 00915| +180083 |BE Cas *|001008.2+591259 |INSB | 12.5 | 13.7 | |p | | | | |F2 |00453 GSC | +180084 |BF Cas |001403.3+605911 |DCEP | 13.1 | 14.1 | |p |28776.50 | | 3.63029 |39 | |00915 00915| +180085 |BG Cas |001442.5+621952 |EA | 12.9 | 13.7 | |p |28427.421 | | 3.953548 |13 *| |00176 GSC | +180086 |BH Cas |002121.4+590905 |EW: | 12.3 | 12.7 | |p | | | 0.5 : | | |00916 GSC | +180087 |BI Cas |004331.3+623956 |EB/GS | 12.10 | 12.84 | |V |33218.38 | | 21.533306 | | |09148 00917| +180088 |BK Cas |005307.4+643603 |RRAB | 13.3 | 14.8 | |p |38317.375 | | 0.3902672 |20 | |06930 06930| +180089 |BL Cas |005426.2+633321 |SR | 11.7 | 12.4 | |V | | | 84. : | |M6ea |00918 00918| +180090 |BM Cas *|005446.0+640505 |EB/GS | 8.78 | 9.31 | 8.98 |V |25772.9 | | 197.28 | |A5Ia-F0eIab |03257 08828| +180091 |BN Cas *|010001.7+600515 |EA/D | 13.1 | 13.5 | 13.4 |p |28308.35 | | 3.21579 |20 *|G0 |00911 GSC | +180092 |BO Cas |010244.1+603616 |LB | 14.2 | 15.3 | |p | | | | |M6 |00911 GSC | +180093 |BP Cas |011501.1+653558 |DCEP | 10.55 | 11.33 | |V |36991.353 | | 6.272724 |28 |F6-G1 |05693 00920| +180094 |BQ Cas |011741.4+591824 |LB | 13.5 | 14.4 | |p | | | 275. : | |M6.5 |00911 06286| +180095 |BR Cas |012139.8+653651 |RRAB | 13.5 | 14.5 | |B |38406.183 | | 0.608289 |15 | |05727 03645| +180096 |BS Cas *|012138.6+591027 |EW/KW | 12.2 | 12.6 | 12.6 |p |27984.489 | | 0.4404832 | |A-F |00911 GSC | +180097 |BT Cas |012502.2+610441 |M | 11.9 |< 17.0 | |p |38656. | | 399. | |M8 |00001 06286| +180098 |BU Cas *|012841.0+610755 |EA/DM | 11.6 | 12.1 | |p |28423.570 | | 2.2551986 |10 |A |05733 05733| +180099 |BV Cas |013001.1+621703 |DCEP | 12.8 | 14.3 | |p |28771.214 | | 5.39964 |20 | |00896 00896| +180100 |BW Cas |013929.0+632610 |EA: | 12.4 | 13.1 | |p |25999.26 | | 1.895 | | |00909 GSC | +180101 |BX Cas |014711.9+623406 |SR | 11.4 | 12.3 | |p |28765. | | | |M5 |00144 BD | +180102 |BY Cas *|014711.9+612521 |DCEPS | 10.06 | 10.58 | |V |41774.191 | | 3.223316 |50 |F5-F7 |08300 00921| +180103 |BZ Cas *|015342.5+625735 |EA/SD | 11.4 | 12.4 | 11.5 |V |29497.316 | | 2.1264317 |16 *|A0 |02263 00922| +180104 |CC Cas *|031405.3+593349 |EB/DM | 7.06 | 7.30 | 7.26 |V |43818.166 | | 3.368753 | |O9IV+O9IV |00001 BD | +180105 |CD Cas |234502.6+630014 |DCEP | 10.37 | 11.15 | |V |37023.312 | | 7.80089 |34 |F6-G5 |03157 00924| +180106A|CE CasA*|235809.5+611249 |DCEP | 10.63 | 11.15 | |V |37745.602 | | 5.1410583 |30 |F9Ib |05296 00925| +180106B|CE CasB*|235809.2+611249 |DCEP | 10.62 | 11.30 | |V |37742.754 | | 4.4793014 |30 |F8Ib-G0Ib |05296 00925| +180107 |CF Cas *|235818.0+611316 |DCEP | 10.80 | 11.47 | |V |37022.191 | | 4.87522 |29 |F8Ib-G0Ib |05295 00137| +180108 |CG Cas *|000059.3+605732 |DCEP | 10.89 | 11.73 | |V |36885.566 | | 4.36554 |26 |F5-F8 |02551 00137| +180109 |CH Cas *|232228.4+624526 |DCEP | 10.37 | 11.45 | |V |36912.426 | | 15.08619 |40 |F3pIb-F6 |03330 00137| +180110 |CI Cas |012103.6+672548 |LB | 13.9 | 15.3 | |p | | | | |M6.5 |00907 02319| +180111 |CK Cas |013320.0+682836 |LB | 13.7 | 14.8 | |p | | | | |M6 |00907 02319| +180112 |CL Cas |014230.7+702519 |M | 12.7 |< 16. | |p |29956. | | 318.8 | |M8 |01000 02319| +180113 |CM Cas |015256.3+675647 |M | 13.4 |< 16. | |p |25652. | | 250. | |M2 |00907 02319| +180114 |CN Cas |022124.2+680633 |LB | 13.4 | 14.1 | |p | | | | |M6.5 |00907 02319| +180115 |CO Cas |022222.8+683048 |L | 12.5 | 15. | |p | | | | | |00907 02320| +180116 |CP Cas |003541.0+703109 |LB | 13. | 14.5 | |p | | | | |C(R) |00122 00122| +180117 |CQ Cas *|024640.0+630020 |SRB | 10.0 | 11.5 | |V | | | 2300. | |M6.5 |00104 00541| +180118 |CR Cas *|230452.0+593357 |EB/SD | 12.1 | 13.9 | 13.3 |B |40526.26 | | 2.840183 | |G5-K8: |07920 00927| +180119 |CS Cas *|235014.2+512359 |CWA | 11.46 | 12.88 | |V |37948.934 | | 14.73602 |37 |F8 |00001 00098| +180120 |CT Cas |002003.0+631047 |DCEP | 13.1 | 14.3 | |p |28806.4 | | 3.81061 |30 | |03331 03331| +180121 |CU Cas |002014.0+620736 |SRB | 12.0 | 13.1 | |p | | | 85. | |M6 |00144 06286| +180122 |CV Cas *|003154.5+714139 |EA/SD | 13.9 |< 17.5 | |p |38317.310 | | 2.587566 |07 *| |07414 00922| +180123 |CW Cas *|004552.7+630508 |EW/KW | 11.02 | 11.62 | 11.47 |V |41649.40322 | | 0.3188449 | |G8p |08829 00832| +180124 |CX Cas |025120.4+632529 |SRA | 13. | 14.5 | |p |28754. | | 134.2 |50 |M6 |00204 00541| +180125 |CY Cas *|232912.8+632228 |DCEP | 11.07 | 12.21 | |V |40119.466 | | 14.37686 |34 |G0Ib-G2Ib |07920 00137| +180126 |CZ Cas |233927.4+622220 |DCEP | 11.30 | 12.11 | |V |36905.242 | | 5.66438 |30 |F6 |08831 00137| +180127 |DD Cas *|235735.0+624306 |DCEP | 9.56 | 10.18 | |V |42780.493 | | 9.812027 |50 |F7-G1 |08632 03203| +180128 |DE Cas |022140.8+605442 |SRB | 13.9 | 15.1 | |p |28925. | | 151. | |M6 |00911 00922| +180129 |DF Cas *|024443.3+612753 |DCEP | 10.53 | 11.13 | |V |41719.622 | | 3.832472 |30 |F6-G4: |08300 00930| +180130 |DG Cas |232734.9+554318 |LB | 14.1 | 14.8 | |p | | | | |M7e |02267 02287| +180131 |DH Cas |235238.7+564436 |M | 13.5 |< 16.8 | |p |27942. | | 322. | | |00453 02287| +180132 |DI Cas *|000440.7+553214 |M | 11.6 |< 17.0 | |p |37170. | | 363.9 | |M5 |00001 02336| +180133 |DK Cas |001807.9+572607 |UGSS | 15.3 | 19.5 : | |p | | |( 96. :) | | |05386 USNO | +180134 |DL Cas *|002958.6+601243 |DCEP | 8.63 | 9.26 | |V |42780.334 | | 8.000669 |33 |F5Ib-G2Ib |08632 00932| +180135 |DM Cas | | | | | | | | | | | | |=WW Cam +180136 |DN Cas *|022311.5+604950 |EA/DM | 9.81 | 10.24 | 10.13 |V |41388.571 | | 2.310955 |15 *|O8V+O8V |07295 02281| +180137 |DO Cas *|024124.2+603312 |EB/KE | 8.39 | 9.01 | 8.61 |V |33926.4573 | | 0.6846661 | |A4V |05895 BD | +180138 |DP Cas *|232012.7+621826 |EB/KE | 13.4 | 13.8 | 13.6 |p |27535.480 | | 1.221622 | | |00152 02335| +180139 |DQ Cas |232457.4+621851 |LB | 14.3 | 14.7 | |B | | | | |M5-M6 |07920 02335| +180140 |DR Cas |233053.4+620723 |LB | 12.4 | 12.7 | |B | | | | |M2:S: |00453 02287| +180141 |DS Cas |233220.9+620633 |SRB | 13.8 | 16.2 | |B | | | 340. : | |C5+,3(N) |07920 02336| +180142 |DT Cas |233459.6+592129 |DCEP | 14.15 | 15.05 | |B |34684.20 | | 4.78996 |25 | |02401 02401| +180143 |DU Cas |233712.0+572623 |M | 12.6 | 17.0 | |p |35239. | | 396.5 |49 |C |00001 02377| +180144 |DV Cas |233749.4+562607 |M | 14.6 |< 17.4 | |p |28083. | | 265.6 | | |00453 02287| +180145 |DW Cas |233848.4+592331 |DCEP | 10.81 | 11.41 | |V |36980.605 | | 4.99776 |28 |F7 |03157 00098| +180146 |DX Cas |233935.1+593510 |M | 13.0 | 16.5 | |p |28256. | | 352.6 |49 |C |00453 02336| +180147 |DY Cas |233932.6+571017 |SRA | 12.6 | 13.5 | |p |28070. | | 330. |48 |M6 |00453 02287| +180148 |DZ Cas *|233950.0+555256 |EB/KE | 11.6 | 12.3 | 12.0 |p |28434.556 | | 0.7848916 | |A9 |00453 02287| +180149 |EE Cas |234315.9+550704 |L | 14.9 | 15.5 | |p | | | | | |00453 02287| +180150 |EF Cas |234323.5+581226 |SR | 14.0 | 15.8 | |p |27990. | | 386. |47 | |00453 02336| +180151 |EG Cas *|234541.2+571308 |EW | 12.9 | 13.4 | 13.1 |p |36491.39 | | 0.61145517 | | |03335 02287| +180152 |EH Cas |234537.0+622056 |LB | 11.6 | 12.80 | |B | | | | |M3 |00453 02287| +180153 |EI Cas |234546.1+580643 |EA/SD | 14.0 | 15.0 | |p |33184.46 | | 1.68914 |14 *| |02401 02401| +180154 |EK Cas *|234707.1+553237 |EA/DM | 11.9 | 12.5 |( 0.05 )|V |38388.25 | | 8.678018 |14 *| |03257 02287| +180155 |EL Cas |234738.6+622711 |EA | 13.7 | 14.5 | |p |34335.10 | | 5.28224 |07 *| |02401 02401| +180156 |EM Cas *|234813.9+610154 |SRA | 13.9 | 17.6 | |B |36430. | | 272.5 | |M6 |05956 05956| +180157 |EN Cas *|235022.6+561718 |EA | 12.2 | 13.2 | 12.4 |p |28728.48 | | 4.437737 |20 *| |03115 00098| +180158 |EO Cas |235127.3+625147 |M | 12.5 |< 17.1 | |p |29908. | | 455. | |Se |00001 02336| +180159 |EP Cas *|235258.9+572651 |EB/SD | 11.2 | 12.3 | 11.4 |p |28179.182 | | 0.8134394 | | |02263 02287| +180160 |EQ Cas *|235253.3+550049 |RVA | 9.3 | 13.4 | 12.7 |V |35155.11 | | 58.34 | |Fp(R) |08079 00098| +180161 |ER Cas |235452.7+612039 |SR | 13.7 | 15.6 | |p |27970. | | 171.7 | |M6 |00453 02336| +180162 |ES Cas |235546.3+561014 |EA/SD | 14.7 | 16.2 | |p |29161.49 | | 2.10956 |10 *| |00453 02288| +180163 |ET Cas |235758.4+592508 |SR | 15.7 | 17.3 | |p |28015. | | 248. | | |00453 02288| +180164 |EU Cas |235838.3+605343 |M | 13.2 |< 17.8 | |p |28276. | | 447. | | |00453 02288| +180165 |EV Cas |235859.2+545108 |LB | 14.7 | 15.5 | |p | | | | | |00453 02288| +180166 |EW Cas |000107.0+583306 |RRAB | 14.5 | 15.4 | |p |28250.494 | | 0.540338 |30 | |00453 02288| +180167 |EX Cas |000241.8+615140 |DCEP | 13.5 | 14.4 | |p |27991.4 | | 4.30530 |26 | |00453 02336| +180168 |EY Cas *|000322.7+574454 |EW/KW | 14.0 | 14.5 | 14.5 |p |27962.491 | | 0.4819764 | | |00453 02336| +180169 |EZ Cas |000436.4+601818 |LB | 14.9 | 16.1 | |p | | | | |M5 |00453 02288| +180170 |FF Cas |000440.4+602201 |LB | 15.6 | 16.5 | |p | | | | | |00453 02288| +180171 |FG Cas |000529.2+562303 |M | 14.2 |< 17.2 | |p |28096. | | 248.3 | | |00453 02336| +180172 |FH Cas |000552.6+550202 |SRA | 12.5 | 13.7 | |p |28658. | | 210. | |M6 |00453 02377| +180173 |FI Cas |000609.9+555851 |UGSS | 15.0 | 18.5 : | |p | | |( 32. ) | | |03791 02288| +180174 |FK Cas |000603.0+551202 |M | 12.6 |< 18. | |p |32820. | | 333.6 | | |01003 00098| +180175 |FL Cas |001215.6+571901 |M | 14.6 |< 17.5 | |p |28140. | | 278. | | |00453 02288| +180176 |FM Cas |001428.2+561511 |DCEP | 8.82 | 9.47 | |V |42817.713 | | 5.809284 |30 |F7-G0I |08632 02288| +180177 |FN Cas |001550.7+573240 |M | 12.8 |< 17.4 | |p |35507. | | 173.9 |46 |M3 |02430 02336| +180178 |FO Cas |001702.5+604810 |DCEP | 15.1 | 16.0 | |p |27951.7 | | 6.7988 |21 | |00453 02288| +180179 |FP Cas |001823.4+615228 |LB | 14.1 | 15.4 | |B | | | | |M6 |00453 02288| +180180 |FQ Cas |002125.6+591356 |M | 13.9 |< 17.4 | |p |28024. | | 266.5 | |C |00453 02336| +180181 |FR Cas |002226.9+591134 |LB | 12.7 | 13.9 | |B | | | | |C4,3-C7,4(N) |00453 02288| +180182 |FS Cas |002439.5+571827 |EA | 13.9 | 15.2 | |p |28038.54 | | 3.08087 |10 *|F2 |00453 02336| +180183 |FT Cas |002500.3+593124 |M | 12.5 |< 17.7 | |p |35127. | | 369. | | |02430 02336| +180184 |FU Cas |003454.3+551716 |L | 13.6 | 14.2 | |p | | | | | |00453 02377| +180185 |FV Cas |003636.4+551332 |EA/SD | 13.0 | 15.3 | |p |27962.58 | | 3.06673 |10 *| |00453 02377| +180186 |FW Cas |003644.5+621628 |DCEP | 13.5 | 14.3 | |p |28250.6 | | 6.23705 |30 | |00453 02288| +180187 |FX Cas |003806.7+571204 |SRA | 12.9 | 16.1 | |p |28176. | | 289. | |C6,4e |00453 02336| +180188 |FY Cas |003850.1+595411 |L | 15.4 | 16.2 | |p | | | | | |00453 02288| +180189 |FZ Cas |003904.8+594041 |LB | 12.2 | 14.2 | |B | | | | |M5-M8 |00453 02336| +180190 |GG Cas *|011612.9+561943 |EA/DM | 9.94 | 10.29 | 9.99 |V |41054.9335 | | 3.758719 |13 |B5-B8V+F8-G0III |00001 03339| +180191 |GH Cas |014903.4+561627 |EA/SD | 12.3 | 15.8 | |p |28635.377 | | 3.35867 |12 *| |00911 02347| +180192 |GI Cas |015812.7+583445 |EA/SD | 14.8 | 17.0 | |p |28007.32 | | 4.68130 |09 | |00911 02281| +180193 |GK Cas *|015845.6+594612 |EA | 12.9 | 13.7 |( 0.05 )|p |28495.469 | | 2.303715 |11 | |00911 00940| +180194 |GL Cas |021046.4+591513 |DCEP | 13.4 | 14.4 | |p |28021.41 | | 4.00789 |22 | |00911 02281| +180195 |GM Cas |022656.7+603417 |DCEP | 13.4 | 14.0 | |p |32228.213 | | 7.4689 |34 | |05244 05297| +180196 |GN Cas |023058.7+604806 |RRAB | 15.6 | 16.8 | |p |29165.362 | | 0.39786056 |20 | |05849 02347| +180197 |GO Cas |023505.7+592303 |DCEP | 14.9 | 15.8 | |p |28072.10 | | 3.23904 |33 | |00911 02282| +180198 |GP Cas |023950.4+593551 |LC | 11.5 | 12.7 | |p | | | | |M2.0Iab |00911 02282| +180199 |GQ Cas |024419.0+605556 |SRB | 14.8 | 16.4 | |p | | | 95. | |M6 |00911 02347| +180200 |GR Cas |024746.1+600412 |EA | 13.7 | 14.5 | |p |35367.437 | | 1.0462616 |12 | |06472 06472| +180201 |GS Cas |025112.3+591350 |LB | 12.6 | 13.3 | |p | | | | |M6.5 |00911 02347| +180202 |GT Cas *|001330.1+581701 |EA/SD | 11.9 | 12.8 | |p |27341.425 | | 2.989804 |14 |A0 |02263 00941| +180203 |GU Cas *|001625.0+562047 |EA | 11.1 | 12.0 | 11.3 |p |41181.458 | | 3.093391 |10 |OB |06100 00941| +180204 |GV Cas |004522.5+585527 |LB | 12.6 | 13.9 | |B | | | | |M3 |00911 GSC | +180205 |GW Cas |004653.3+564009 |LB | 14.0 | 15.1 | |p | | | | |C |00911 02339| +180206 |GX Cas |004901.5+565245 |UGSS | 13.9 | 18.5 | |p | | |( 240. :) | | |00911 02339| +180207 |GY Cas |004935.3+560930 |RRAB | 15.2 | 16.2 | |p |28249.500 | | 0.470272 |13 | |00911 02339| +180208 |GZ Cas *|005143.3+555923 |SR | 12.0 | 13.0 | |p |35040. | | 168. | |M |00001 00942| +180209 |HH Cas *|005153.3+555911 |SR | 13.2 | 14.2 | |p |35091. | | 80.2 | | |00001 00942| +180210 |HI Cas |005529.8+535221 |M | 11.5 | 16.7 | |p |31005. | | 296.4 |50 | |00911 00942| +180211 |HK Cas |005720.1+552620 |DCEP | 14.7 | 16.3 | |p |27991.614 | | 2.499563 |36 | |00911 02339| +180212 |HL Cas |010005.4+565240 |SRA | 14.9 |< 17.0 | |p |28076. | | 334. | |C |00911 02339| +180213 |HM Cas |010034.8+553622 |M | 13.9 |< 18.0 | |p |28018. | | 423. | | |00911 02339| +180214 |HN Cas *|010054.4+555418 |EA/SD | 14.3 | 16.6 | |p |28246.42 | | 2.659427 |07 | |00911 02339| +180215 |HO Cas |010243.6+615143 |LB | 13.4 | 14.0 | |p | | | | |C4,3(R) |00911 02339| +180216 |HP Cas |010413.2+540453 |L | 15.2 | 15.8 | |p | | | | | |00911 02339| +180217 |HQ Cas |010750.6+600711 |EA | 13.9 | 14.6 | |p |28521.30 | | 2.19470 |12 *| |00911 02339| +180218 |HR Cas |010707.9+543708 |EA/SD | 15.4 |< 17.4 | |p |29229.30 | | 3.54371 |05 : | |00911 02339| +180219 |HS Cas *|010819.9+633512 |LC | 10.9 | 12.33 | |B | | | | |M4Ia |00498 BD | +180220 |HT Cas *|011013.0+600436 |UGSS+EA | 12.60 | 19.32 | |V | | |( 70. :) | |pec(UG) |06102 02339| +180221 |HU Cas *|011103.6+572046 |RRAB | 12.0 | 13.5 | |p |31435.049 | | 0.41159560 |20 |A2 |00874 00558| +180222 |HV Cas |011103.5+534340 |M | 12.9 | 17.2 | |p |38120. | | 527. |45 |C4,3-5,4e(Ne) |00001 02339| +180223 |HW Cas |011225.9+545008 |SR | 14.4 | 15.3 | |p |28503. | | 149. | | |00911 02339| +180224 |HX Cas |011612.0+591522 |LB | 14.1 | 15.0 | |p | | | | |M3 |00911 02339| +180225 |HY Cas |011606.9+571424 |EA | 15.6 |< 16.7 | |p |30721.33 | | 12.07 /N| | |00911 02339| +180226 |HZ Cas |012149.9+545849 |LB | 12.8 | 13.5 | |p | | | | | |00911 02339| +180227 |II Cas |012641.0+604646 |M | 14.5 |< 18.0 | |p |28357. | | 289. | |M5 |00911 02340| +180228 |IK Cas |012636.9+550935 |SR | 14.2 | 15.5 | |p |28226. | | 196.7 | |M7.9 |00911 02340| +180229 |IL Cas *|013046.8+600602 |EA/SD | 10.6 | 11.5 |( 0.05 )|p |28008.215 | | 3.4517461 |11 *|B5 |05733 05733| +180230 |IM Cas |013200.3+621945 |SRB | 10.2 | 11.0 | |p |27990. | | 323. | |M2 |00911 02340| +180231 |IN Cas |014057.2+561944 |M | 13.5 |< 17.5 | |p |28268. | | 224. | | |00911 02340| +180232 |IO Cas |014702.6+593623 |DCEP | 14.4 | 15.4 | |p |28635.57 | | 5.60392 |26 | |00911 02340| +180233 |IP Cas |014855.9+544329 |LB | 12.5 | 13.4 | |p | | | | |M |00911 02340| +180234 |IQ Cas |014941.7+594310 |EA | 12.2 | 13.4 | |p |28308.42 | | 3.54175 |14 *| |00911 02340| +180235 |IR Cas *|230652.4+540452 |EB | 10.8 | 12.3 | 11.5 |p |42364.054 | | 0.6806854 | |F4: |06180 06202| +180236 |IS Cas *|232828.6+603356 |EA/SD: | 12.1 | 13.1 | 12.2 |B |28776.263 | | 1.8415124 |14 *|A2 |00001 00098| +180237 |IT Cas *|234201.4+514437 |EA/DM | 11.1 | 11.9 | 11.8 |p |28762.434 | | 3.896638 |05 *|F6 |02263 00098| +180238 |IU Cas |234439.2+522042 |RRAB | 12.1 | 13.0 | |p |28748.274 | | 0.649384 |15 | |00098 00098| +180239 |IV Cas *|234931.5+530805 |EA/SD | 11.2 | 12.4 | 11.3 |p |40854.597 | | 0.9985245 |20 *|A2 |00001 00098| +180240 |IW Cas *|000244.2+484251 |M | 11.4 |< 14.7 | |p |37855. | | 396.38 | |S4.5,9e |00001 00098| +180241 |IX Cas *|000450.8+501406 |CWA | 11.19 | 11.77 | |V |42779.743 | | 9.153375 |49 |F7 |08632 00098| +180242 |IY Cas |005153.0+571233 |SR | 11.8 | 14.2 | |p |35059. | | 86.00 |53 | |00001 00945| +180243 |IZ Cas |005240.2+472816 |LB | 11.5 | 13.1 | |p | | | | |K8 |00156 00156| +180244 |KK Cas |234956.0+595627 |DCEP | 13.0 | 14.0 | |p |28112.368 | | 8.191650 |35 | |00176 00558| +180245 |KL Cas *|005141.5+585152 |EB/SD | 11.8 | 13.5 | 12.3 |p |31056.004 | | 2.447426 | |OB |00942 00945| +180246 |KM Cas |022930.5+612944 |SDOR: | 12.2 | 13.1 | |p | | | | |B1eaI-II | 00945| +180247 |KN Cas |000936.4+624004 |LC | 10.5 | 11.2 | |p | | | | |M1epIb+B2.6V |00812 BD | +180248 |KO Cas *|002150.8+482543 |M | 12.1 |< 14.0 | |p |35834. | | 300.4 | | |00001 00534| +180249 |KP Cas |003854.7+611300 |UGSS | 15.2 | 20. | |p | | | | | |00164 02355| +180250 |KQ Cas |003837.7+583242 |EA/SD | 14.1 |< 17.0 | |p |27991.147 | | 6.164501 |15 | |00176 02377| +180251 |KR Cas *|005402.1+543101 |EA/SD | 9.8 | 11.0 | 9.9 |p |15038.229 | | 4.904278 |15 *|A0 |00821 00942| +180252 |KS Cas |005704.1+484211 |SRA | 11.0 | 12.5 | |p |28412. | | 454. | |M5 |00680 02377| +180253 |KT Cas |010450.2+540620 |EA/SD | 12.4 | 14.7 | |p |34330.21 | | 2.769682 |12 | |02403 00930| +180254 |KU Cas |013102.4+575412 |UGSS | 13.3 | 18. | |p | | |( 60. ) | | |00164 02356| +180255 |KV Cas |013638.0+611327 |EA/SD | 15.1 |< 17.4 | |p |29486.420 | | 5.444000 |11 *| |00164 02356| +180256 |KW Cas |225848.6+571331 |M | 13.1 |< 17. | |p |31292. | | 249. | |M6.5 |02267 02344| +180257 |KX Cas |230236.6+575511 |M | 14.5 |< 16.5 | |p |29239. | | 290. | | |02267 02375| +180258 |KY Cas |230453.6+531547 | | 16.0 |< 17.5 | |p | | | | | |02267 02375| +180259 |KZ Cas |230814.0+562717 |UGSS | 15.2 | 19. | |p | | |( 62.3 ) | | |02267 02375| +180260 |LL Cas |230920.2+544450 |M | 15.3 |< 17. | |p |27957. | | 141. | |M |02267 02287| +180261 |LM Cas |231259.9+565121 |UGSS | 15.8 |< 19. | |p | | | | | |02267 02375| +180262 |LN Cas |232022.0+544542 |M | 13.0 |< 17. | |p |28428. | | 288. | | |02267 02345| +180263 |LO Cas |234301.5+524716 |E | 15.0 |< 17. | |p |31413.428 | | | | |02267 02376| +180264 |LP Cas |235718.8+545251 |M | 14.9 |< 17.0 | |p |29143. | | 294. | | |00176 02376| +180265 |LQ Cas |000411.0+614208 |EA/SD | 14.1 |< 17.2 | |p |27951.500 | | 2.8694336 | | |00176 02376| +180266 |LR Cas *|013249.9+630103 |EB/DM | 10.7 | 11.4 | 10.9 |p |41959.276 | | 4.4557746 | |B5 |00001 00946| +180267 |LS Cas |233809.9+560147 |M | 14.4 | 16.9 | |B |31385. | | 340. | |Ce(Ne) |02267 02345| +180268 |LT Cas |024551.5+631816 |DCEP | 13.1 | 14.7 | |p |44144.900 | | 5.90488 |25 | |04276 00947| +180269 |LU Cas *|024648.1+631814 |EA/SD | 14.2 | 16.1 | 14.3? |p |44145.456 | | 2.036951 |16 | |04276 00947| +180270 |LV Cas |025457.1+584043 |EA/SD | 15.5 | 16.8 : | |p |44145.536 | | 1.273545 |18 | |04276 00947| +180271 |LW Cas *|025721.9+604120 |INA | 15.4 |< 17.1 | |p | | | | |A0III |08841 00947| +180272 |LX Cas *|030054.4+602734 |EA | 14.9 | 15.7 | 15.3 |p |44142.444 | | 1.3971453 |13 | |04276 00947| +180273 |LY Cas *|030105.6+590554 |EA/SD | 14.9 | 16.4 | 15.2 |p |43695.462 | | 1.476412 |10 *| |04276 00947| +180274 |LZ Cas |003723.2+464607 |SR | 11.0 | 13.0 | |p |25566. | | 111.3 | |M |00821 00821| +180275 |MM Cas *|005435.0+542636 |EA/SD | 12.0 | 13.1 | 12.4 |p |35401.483 | | 1.15847 |18 |F |02645 02355| +180276 |MN Cas *|014203.0+545736 |EA/DM | 10.10 | 10.58 | 10.57 |V |42326.4699 | | 1.91692705 |17 *|A0V+A0V |06380 02356| +180277 |MO Cas *|232043.4+611444 |M | 16.5 |< 19. | |B |37891. | | 252.25 |50 |M8 |07920 00950| +180278 |MP Cas *|232039.6+611352 |M | 17.8 |< 19. | |B |40550. | | 338. |50 |M8 |07920 00950| +180279 |MQ Cas |000937.6+581311 |IA | 11.7 | 13.6 | |p | | | | |ea |00176 02376| +180280 |MR Cas *|001142.0+580424 |EW/KW | 14.9 | 15.7 | 15.5 |B |29079.277 | | 0.3529360 | | |00176 02376| +180281 |MS Cas *|001153.2+600638 |EA/SD | 12.9 | 13.8 | 13.2 |p |35075.519 | | 1.1727363 |12 *|A |02528 02528| +180282 |MT Cas *|001443.7+544014 |EW/KW | 13.3 | 14.13 | 14.02 |B |44941.5925 | | 0.31387768 | | |00001 02376| +180283 |MU Cas *|001551.6+602554 |EB/DM | 10.6 | 10.9 | 10.8 |p |27962.509 | | 3.861145 | |B8 |00176 02376| +180284 |MV Cas *|001637.7+624849 |EA/SD | 13.9 | 16.2 | 14.0 |p |28425.564 | | 1.1122565 |25 :*| |00176 02376| +180285 |MW Cas |001649.6+550501 |EA | 13.5 | 14.5 | |p |29338.43 | | | | |00176 02376| +180286 |MX Cas |001953.4+550103 |EA | 14.4 | 15.0 | |p |29491.42 | | | | |00176 02376| +180287 |MY Cas *|002107.0+635446 |EB/SD | 14.8 | 16.4 | 15.2 |B |38621.453 | | 0.926235 | | |06384 02376| +180288 |MZ Cas |002124.3+595711 |LC | 10.6 | 11.8 | |p | | | | |M2Iab |00176 BD | +180289 |NN Cas *|002220.1+573003 |EB/SD | 13.6 | 14.8 | 14.0 |p |27951.526 | | 0.9808207 | | |00176 02376| +180290 |NO Cas |002404.7+612030 |RRAB | 12.0 | 12.8 | |p |38353.480 | | 0.719472 |35 |A |06404 02376| +180291 |NP Cas |002357.6+625700 |DCEP | 14.5 | 15.2 | |p |29129.568 | | 6.170600 |28 | |00176 02376| +180292 |NQ Cas |002434.9+541738 |LB | 10.6 | 11.52 | |B | | | | |C4,5J(R5) |00176 02376| +180293 |NR Cas |002527.2+560509 |IS | 13.6 | 14.3 | |p | | | | | |00176 02377| +180294 |NS Cas |003057.0+571825 |L | 14.7 | 15.1 | |p | | | | | |00176 02377| +180295 |NT Cas *|003204.6+552721 |EA/KE | 14.2 | 14.8 | 14.4 |p |28054.598 | | 1.122520 |10 *| |00176 02377| +180296 |NU Cas *|003224.7+570152 |EB/KE | 13.2 | 13.9 | 13.4 |p |29144.395 | | 0.7666818 | | |00176 02377| +180297 |NV Cas *|003613.0+555448 |EA | 14.8 | 15.5 | |p |29166.348 | | 0.7415245 |18 | |00176 02377| +180298 |NW Cas |003716.6+584624 |LB | 13.1 | 14.8 | |B | | | | |M4 |00176 02377| +180299 |NX Cas |003859.5+592749 |I | 14.1 | 15.5 | |p | | | | | |00176 02377| +180300 |NY Cas |004023.2+583707 |DCEPS | 13.3 | 13.9 | |p |29165.466 | | 2.8230921 |45 | |00176 02377| +180301 |NZ Cas |004348.4+601210 |EA | 13.2 | 13.7 | |p |29102.542 | | 2.770992 |13 *| |00176 02377| +180302 |OO Cas |004400.9+585606 |LB | 11.7 | 12.7 | |p | | | | |M6.5 |00164 02355| +180303 |OP Cas *|004629.9+633236 |DCEP | 12.9 | 14.2 | |p |37180.25 | | 5.5128 |36 | |06461 02377| +180304 |OQ Cas |004725.1+610147 |EA | 14.4 | 15.1 | |p |29106.496 | | 0.7166958 |30 *| |00176 02377| +180305 |OR Cas *|004801.3+605142 |EA/SD | 11.4 | 12.4 | 11.8 |p |44210.389 | | 1.2457116 |10 *|F3 |00001 02377| +180306 |OS Cas |005038.5+601307 |LB | 13.7 |< 17.0 | |p | | | | |S |00085 02355| +180307 |OT Cas |005302.7+603548 |M | 15.3 |< 17.5 | |p |29106. | | 288.5 | | |00164 02355| +180308 |OU Cas |005316.8+604144 |EA | 14.8 | 17.0 | |p |31031.430 | | | | |00164 02355| +180309 |OV Cas |005338.1+632029 |SRA | 14.8 | 17.0 | |p |29244. | | 337.5 | |C6,3(R) |00164 02355| +180310 |OW Cas |010121.5+541030 |L | 14.6 | 16.8 | |p | | | | | |00164 02355| +180311 |OX Cas *|010900.1+612815 |EA/DM | 9.90 | 10.35 | 10.30 |V |41269.6355 | | 2.4893427 |15 |B1V |07383 04190| +180312 |OY Cas |011157.5+620725 |EA | 15.5 |< 16.8 | |p |29108.508 | | 2.019284 |05 *| |00164 02355| +180313 |OZ Cas |011419.6+620239 |DCEP | 15.2 | 16.2 | |p |29880.465 | | 5.0800 |30 | |03183 02355| +180314 |PP Cas |012001.5+573129 |LB | 11.0 | 12.0 | |p | | | | |M5 |00164 02355| +180315 |PQ Cas |012836.1+611208 |LB | 14.9 | 16.9 | |p | | | | | |00164 02356| +180316 |PR Cas *|013251.4+580133 |M | 14.3 |< 17.0 | |p |29240. | | 342. | | |00164 02356| +180317 |PS Cas |013530.4+554254 |RRAB | 13.7 | 15.5 | |p |28183.250 | | 0.443649 |17 | |03165 02356| +180318 |PT Cas |013805.6+555815 |M | 15.4 |< 17.5 | |p |29070. | | 300. | |C6-,4 |00164 02356| +180319 |PU Cas |014128.1+591314 |LB | 12.0 | 13.5 | |p | | | | |M6 |00164 02356| +180320 |PV Cas *|231002.6+591206 |EA/DM | 9.71 | 10.36 | 10.36 |V |40227.4044 | | 1.75046986 |12 *|B8V+B8V |07041 02636| +180321 |PW Cas |232558.5+611601 |DCEP | 14.0 | 14.8 | |B |28818.50 | | 3.999927 |25 |F6-G0 |07920 00832| +180322 |PX Cas *|233402.3+565029 |EA/SD | 14.8 | 16.0 | 15.0 |p |29129.375 | | 1.8396105 |22 *| |00176 02376| +180323 |PY Cas *|234343.5+610553 |SR | 11.3 | 14.46 | |B |34080. | | 111. | |M5III |00176 02376| +180324 |PZ Cas *|234403.3+614722 |SRC | 11.16 | 12.9 | |B |34150. | | 925. | |M2-4Ia |06803 02225| +180325 |QQ Cas *|234536.8+595422 |EB/DM | 10.3 | 10.9 | 10.8 |p |42009.407 | | 2.142043 | |B2 |00001 02409| +180326 |QR Cas |235104.2+554149 |RRAB | 13.9 | 15.4 | |p |29129.388 | | 0.4877090 |15 | |03349 02376| +180327 |QS Cas |235158.6+560232 |EA/SD | 13.6 | 16.5 | |p |27962.382 | | 5.289979 |10 *| |00176 GSC | +180328 |QT Cas |235310.0+623802 |L | 13.4 | 14.1 | |p | | | | | |00176 02376| +180329 |QU Cas |235425.6+560421 |EA/SD | 15.1 | 16.4 | |p |29229.288 | | 0.9718566 |20 *| |00176 02376| +180330 |QV Cas |235722.0+621059 |L | 14.9 | 15.5 | |p | | | | | |00176 02376| +180331 |QW Cas |235744.2+565646 |LB | 12.8 | 13.9 | |B | | | | |M |07341 02376| +180332 |QX Cas *|235843.1+610940 |EA/DM | 10.19 | 10.70 | 10.50 |V |35755.000 | | 6.00471 |09 *|B1V+B1V |02470 02445| +180333 |QY Cas |235905.2+540101 |RRC | 14.2 | 14.8 | |p |29106.598 | | 0.378 |46 | |09037 02376| +180334 |QZ Cas |235941.0+562414 |LB | 13.5 | 15.2 | |B | | | | | |07341 02376| +180335 |V0335 Cas |235938.5+594530 |LB | 14.0 | 15.5 | |p | | | | |M5 |00176 02376| +180336 |V0336 Cas *|000100.4+602646 |EB | 13.4 | 14.1 | 13.6 |p |28428.534 | | 0.5972877 | | |00176 02376| +180337 |V0337 Cas |001322.4+581234 |EA/DM | 12.6 | 13.1 | |p |29491.425 | | 7.046585 |04 *|A2 |05303 05303| +180338 |V0338 Cas |001306.8+490622 |LB: | 11.2 | 12.5 | |p | | | | |M2 |00721 00812| +180339 |V0339 Cas |003757.8+602224 |EA: | 14.0 | 15.2 | |p | | | | | |00176 02377| +180340 |V0340 Cas |005429.2+482127 |SR | 12.6 | 14.2 | |p | | | 350. : | |M0 |08846 08846| +180341 |V0341 Cas *|225934.7+562310 |EA/SD | 14.7 | 17.3 | |p |28487.310 | | 3.407180 |18 | |02561 02287| +180342 |V0342 Cas |230121.2+575202 |DCEP | 12.4 | 13.5 | |p |27955.71 | | 3.91989 |20 |F6-G0 |03350 02375| +180343 |V0343 Cas |230449.6+563258 |SRA | 13.5 | 14.5 | |p |28392. | | 123.9 | |M5-M6 |02267 02344| +180344 |V0344 Cas *|230735.1+572334 |EW/KE | 12.8 | 13.4 | 13.4 |p |36456.48 | | 1.00075 | | |03861 02375| +180345 |V0345 Cas *|230839.9+540655 |EB/SD: | 13.1 | 14.2 | 13.6 |p |28835.307 | | 0.6887589 | | |02267 02345| +180346 |V0346 Cas *|231055.5+531350 |LB | 12.7 | 13.6 | |p | | | | |M6.5 |02267 02345| +180347 |V0347 Cas |231051.7+545008 |SRA | 14.0 | 14.7 | |p |28359. | | 119.2 | | |02267 02287| +180348 |V0348 Cas |231126.0+574457 |RRAB | 14.2 | 15.5 | |p |36491.45 | | 0.819934 |30 | |03351 03351| +180349 |V0349 Cas |231131.1+560130 |SR | 12.5 | 14.2 | |p |28377. | | 70.79 |49 | |02267 02345| +180350 |V0350 Cas |231202.6+534031 |EA | 13.2 | 14.6 | |p |29877.549 | | 2.057264 |13 :*| |02267 02345| +180351 |V0351 Cas |231213.0+562625 |SRA | 13.1 | 14.1 | |p |28455. | | 146. | |M6 |02267 02345| +180352 |V0352 Cas |231757.6+534426 |SRA | 14.4 | 15.6 | |p |31005. | | 176. | |M6 |02267 02375| +180353 |V0353 Cas |232328.1+561001 |SRA | 13.5 | 15.0 | |p |28433. | | 365. | |C4,5J(N) |02267 02345| +180354 |V0354 Cas |232627.2+535307 |M | 13.1 |< 17. | |p |29085. | | 372. | |M: |02267 02345| +180355 |V0355 Cas |232706.3+564445 |EA/SD | 12.7 | 14.3 | |p |30260.563 | | 2.25949 |19 | |02267 02345| +180356 |V0356 Cas |232913.2+563933 |LB | 11.8 | 13.1 | |p | | | | |M6.5 |02267 02345| +180357 |V0357 Cas *|232950.7+545800 |EB | 13.0 | 13.9 | 13.6 |p |29456.512 | | 0.760747 | | |02267 02345| +180358 |V0358 Cas |233027.4+575834 |LC | 11.5 | 13.8 | |p | | | | |M3Ia-Iab |02267 02376| +180359 |V0359 Cas *|233427.1+561918 |EB | 11.8 | 12.6 | 12.0 |p |29079.480 | | 1.303879 | |A0 |02267 02376| +180360 |V0360 Cas *|233447.6+555417 |EA/SD | 12.1 | 13.4 | 12.3 |p |31346.424 | | 1.500590 |12 |A |02267 02376| +180361 |V0361 Cas *|234144.3+560953 |EA/KE: | 12.3 | 12.8 | |p |30319.344 | | 1.228985 |07 : |A |02267 02376| +180362 |V0362 Cas |000221.5+632807 |ISA | 12.0 | 13.6 | |p | | | | |B |00176 00558| +180363 |V0363 Cas *|001514.3+602026 |RRAB | 10.29 | 10.73 | |V |36142.592 | | 0.5465353 |40 |F3-F7 |03633 02551| +180364 |V0364 Cas *|005243.0+502810 |EA | 11.2 | 11.9 | 11.9 |p |34333.298 | | 1.543068 |15 |A2 |00001 02636| +180365 |V0365 Cas *|010053.1+563645 |SRB | 10.2 | 12.0 | |p | | | 136. | |M5S(S7,2) |04015 02638| +180366 |V0366 Cas *|010825.6+584418 |EW/DW | 12.0 | 12.7 | 12.7 |p |35075.461 | | 0.72927425 | |G1: |06922 02355| +180367 |V0367 Cas |014111.3+611535 |EA/SD | 14.2 |< 17.3 | |p |29486.465 | | 3.70941 |11 | |02640 02640| +180368 |V0368 Cas |031235.5+595511 |EA | 8.45 | 9.2 | |B |25554.320 | | 4.451642 |12 |B3III |02594 BD | +180369 |V0369 Cas |232931.3+523039 |EA | 15.0 | 16.7 | |p |31001.439 | | | | |02267 02375| +180370 |V0370 Cas |233017.8+505009 |L | 13.8 | 14.4 | |p | | | | | |02267 02375| +180371 |V0371 Cas |233346.3+533715 |E | 16.1 | 17.0 | |p |31002.421 | | | | |02267 02376| +180372 |V0372 Cas |233410.0+542224 |LB | 14.5 | 15.1 | |p | | | | |M3 |02267 02287| +180373 |V0373 Cas *|235533.8+572444 |E:/GS | 5.9 | 6.3 | |V |36491.237 | | 13.4192 | |B0.5II+B0.5II |02646 BD | +180374 |V0374 Cas *|235633.5+560745 |EA/SD | 11.8 | 12.7 | 12.1 |p |29490.269 | | 1.0448096 |17 |A |02670 02551| +180375 |V0375 Cas *|235709.4+630022 |EB/KE | 10.1 | 10.9 | 10.6 |p |34642.255 | | 1.47338431 | |B3 |02679 02679| +180376 |V0376 Cas |001126.5+585003 |INA | 16. | 18. | |p | | | | |B5ea |04002 04002| +180377 |V0377 Cas *|001914.3+594218 |DSCT: | 7.78 | 7.83 | |V | | | 0.03 | |F0 |04005 BD | +180378 |V0378 Cas |002145.6+591456 |LB | 16. | 17. | |p | | | | | |04006 GSC | +180379 |V0379 Cas |002636.0+604754 |DCEPS | 8.88 | 9.23 | |V |44883.47 | | 4.30575 |45 |F6-G0 |08860 06228| +180380 |V0380 Cas *|003056.0+734006 |EA/SD | 10.4 | 11.2 | |p |25645.505 | | 1.357273 |20 |A0 |05304 04014| +180381 |V0381 Cas *|003251.6+491939 |EA/DM | 10.2 | 10.8 | 10.8 |p |44546.297 | | 1.7459455 |13 *|B3 |00001 BD | +180382 |V0382 Cas |003537.5+580025 |SRA | 10.7 | 11.5 | |R |37494. | | 139. |50 |C |04342 04342| +180383 |V0383 Cas |004343.5+620009 |L: | 17.0 |< 18.0 | |p | | | | | |06953 04341| +180384 |V0384 Cas |004528.2+473501 |EA/KE | 11.8 | 12.3 | |p |36073.516 | | 1.108273 |20 *|A0 |06952 04015| +180385 |V0385 Cas |004917.9+503903 |EA/D | 11.6 | 12.2 | |p |26626.373 | | 2.830424 |12 *| |04024 04015| +180386 |V0386 Cas |005911.3+555720 |EA/DS | 14.0 | 16.5 | |p |29219.478 | | 28.652245 |04 *| |06953 04341| +180387 |V0387 Cas |010031.8+584146 |EA/DM | 12.5 | 13.0 | |p |28523.713 | | 1.608208 | | |05235 04341| +180388 |V0388 Cas *|010319.8+622156 |UV | 12.5 | 13.66 | |V | | | | |M3Vpe-M7Ve |02901 00664| +180389 |V0389 Cas |011417.3+485926 |EA | 10.8 | 12.2 | |p |35662.479 | | 2.494757 |09 *| |00001 04016| +180390 |V0390 Cas |012837.1+621638 |M | 14.3 |< 17.5 | |p |29322. | | 362. | |C |06953 04341| +180391 |V0391 Cas |015631.7+701214 |LB | 9.2 | 10.0 | |p | | | | |M4 |04024 BD | +180392 |V0392 Cas *|020037.3+690722 |EB | 13.8 | 14.6 | 14.0 |p |38680.605 | | 4.54027 | | |07202 07202| +180393 |V0393 Cas |020239.6+711752 |SRA | 7.0 | 8.0 | |V |43210. | | 393. | |M0 |00001 BD | +180394 |V0394 Cas *|020202.1+624130 |EB/SD | 15.0 | 17.0 | 15.6 |p |29110.470 | | 0.929271 | | |06953 04341| +180395 |V0395 Cas |021029.2+631751 |DCEP | 10.39 | 10.95 | |V |41949.427 | | 4.037728 |26 |G3 |08300 00174| +180396 |V0396 Cas *|231336.0+564417 |EA/DM | 9.9 | 10.4 | 10.2 |p |25883.850 | | 11.12576 |08 *|B9 |04009 BD | +180397 |V0397 Cas |231433.6+571521 |M | 13. | 17. | |p |24430. :| | 345. : | |M9 |04333 USNO | +180398 |V0398 Cas |232230.8+591826 |LB | 11.2 | 12.2 | |B | | | | |M2 |04396 04396| +180399 |V0399 Cas *|232225.2+610747 |EW | 13.9 | 14.3 | 14.1 |p |36458.451 | | 0.660375 | | |04334 02375| +180400 |V0400 Cas |232712.1+583114 |LB | 13.7 | 14.4 | |p | | | | |M0 |04338 00832| +180401 |V0401 Cas *|233010.4+600403 |EW | 15.0 | 15.7 | 15.7 |p |36488.47 | | 0.81153 | | |04339 04339| +180402 |V0402 Cas *|233659.0+615253 |EB/D | 15.0 | 15.4 | 15.3 |p |33895.493 | | 2.0015187 | | |04423 04423| +180403 |V0403 Cas |233738.0+545050 |I | 10.5 | 11.0 | |p | | | | |G5 |04109 BD | +180404 |V0404 Cas |233713.6+615158 |RRC | 15.2 | 15.6 | |p |33129.438 | | 0.3089292 |37 | |04423 04423| +180405 |V0405 Cas | | | | | | | | | | | | |=CD Cas +180406 |V0406 Cas *|234914.2+645017 |EB/AR | 16.2 | 17.1 | 16.8 |p |34623.391 | | 2.13242 | | |04423 04423| +180407 |V0407 Cas |235424.6+620858 |DCEP | 12.8 | 13.6 | |p |33132.487 | | 4.5845526 |24 | |04423 04423| +180408 |V0408 Cas |001314.5+555430 |SR | 15.5 | 17.5 | |p |38290. :| | | | |03903 03903| +180409 |V0409 Cas |002238.0+572638 |M: | 14.5 |< 17. | |p |39440. :| | | | |03903 03903| +180410 |V0410 Cas *|002327.7+614629 |NL | 15.5 | 18. | |p | | | | | |03903 03903| +180411 |V0411 Cas |003011.3+560748 |EA/SD | 13.9 | 16.7 | |B |41162.50 | | 3.87472 |10 | |08159 08159| +180412 |V0412 Cas |004604.3+551941 |SRB | 13.8 | 16.0 | |p |30400. | | 347. /N| | |06953 03905| +180413 |V0413 Cas |004716.7+550824 |M | 13.0 |< 17.5 | |p |38660. | | 320. | | |06953 03910| +180414 |V0414 Cas |004810.0+533402 |M | 14.4 | 17.0 | |p |29243. | | 195. | |M8 |06953 03905| +180415 |V0415 Cas |005431.1+592400 |EA/DS | 14.0 | 16.8 | |p |29106.587 | | 12.536157 |06 *| |06953 03905| +180416 |V0416 Cas |010159.1+571519 |LB | 12.2 | 13.2 | |p | | | | | |06953 03905| +180417 |V0417 Cas |010719.9+533804 |M | 14.0 |< 17.5 | |p |30215. | | 418. /N| | |06953 03910| +180418 |V0418 Cas |011259.9+621047 |M | 14.6 |< 20. | |p |28235. | | 480. | | |06953 03910| +180419 |V0419 Cas |011905.7+565348 |EA | 14.3 | 15.0 | |p |28183.242 | | 1.586706 |21 *| |03991 03991| +180420 |V0420 Cas |013114.1+584728 |EA | 14.9 | 16.5 | |p |29134.508 | | 18.3832 : | | |06953 03905| +180421 |V0421 Cas |013752.5+571958 |EA/SD | 14.5 | 15.7 | |p |29168.446 | | 4.463606 |10 *| |06953 05307| +180422 |V0422 Cas |014039.3+592527 |EA/SD | 14.9 | 16.7 | |p |30261.488 | | 3.706768 |10 : | |06953 05308| +180423 |V0423 Cas *|014344.5+644951 |EW | 14. | 14.5 | 14.3 |p |28626.434 | | 0.627858 | | |03183 00922| +180424 |V0424 Cas |014703.6+564738 |EA/SD: | 15.1 | 16.5 | |p |38653.57 | | 3.09 /N| | |06953 03910| +180425 |V0425 Cas |230346.7+531715 |NL | 14.5 | 18. | |p | | | | | |03905 08855| +180426 |V0426 Cas |230547.8+565642 |M | 15.5 |< 17.5 | |p |39384. :| | | |M5e |03903 03903| +180427 |V0427 Cas *|230624.2+574234 |EB/KE | 13.3 | 13.8 | 13.7 |p |34329.357 | | 1.303990 | | |03861 03861| +180428 |V0428 Cas *|230635.3+562259 |SR | 15.5 | 17.5 | |p | | | | | |03905 03905| +180429 |V0429 Cas |231551.3+543541 |EA | 15. | 16. | |p |39059.36 | | | | |03905 03905| +180430 |V0430 Cas *|231539.1+561348 |SR | 15.5 | 17. | |p |31320. :| | | | |03903 03903| +180431 |V0431 Cas |231922.0+542627 |EA | 15.5 | 16.5 | |p |39058.41 | | | | |03903 03903| +180432 |V0432 Cas | | | | | | | | | | | | |=IM Cep +180433 |V0433 Cas |232512.1+611929 |RCB: | 15.2 |< 16.5 | |p | | | | |C(N) |07920 03776| +180434 |V0434 Cas *|232855.5+552147 |SR: | 16. | 18. | |p | | | | | |03903 03903| +180435 |V0435 Cas |233127.4+592424 |EA | 15.2 | 16.2 | |B |42071.319 | | | | |07920 03903| +180436 |V0436 Cas |233247.6+575420 |ACV | 7.39 | 7.84 | |V |38666. | | 159.0 | |A0p(Sr-Cr-Eu) |07219 BD | +180437 |V0437 Cas |233350.1+551823 |M | 14.4 |< 17.1 | |B |41170. | | 266.4 | | |07385 03905| +180438 |V0438 Cas |233600.1+620312 |M | 14.6 | 19. : | |B |40922. | | 324.5 |50 | |07920 03999| +180439 |V0439 Cas |233803.5+524739 |SR | 15. | 17.5 | |p | | | | | |03910 03910| +180440 |V0440 Cas |233804.8+512555 |EA | 15. | 15.5 | |p |30262.50 | | | | |03903 03903| +180441 |V0441 Cas *|233958.9+632055 |M | 16.2 |< 18.5 | |p |38655. | | 175.6 | |S |07222 07222| +180442 |V0442 Cas *|234014.8+535734 |EA/SD | 13.2 | 17.0 | |p |43079.465 | | 3.592205 |11 | |07255 05310| +180443 |V0443 Cas |234137.9+513236 |EA | 14.5 | 15.5 | |p |29391.58 | | | | |03903 03903| +180444 |V0444 Cas *|235405.3+565611 |EA/SD: | 15.9 | 17.2 | 16.0 |p |43047.396 | | 2.224754 |11 | |07305 07043| +180445 |V0445 Cas *|003139.6+531300 |EB | 10.89 | 11.32 | 11.08 |V |41921.3782 | | 0.67352 | | |06954 05525| +180446 |V0446 Cas |003612.5+624111 |LB | 9.9 | 10.5 | |p | | | | |M0-M4III |05394 05394| +180447 |V0447 Cas |004343.8+595013 |LB: | 12.5 | 14.0 | |p | | | | | |05526 05526| +180448 |V0448 Cas *|004707.8+602114 |EW | 14.5 | 15.0 | 15.0 |p |38284.511 | | 0.574046 | | |06953 03910| +180449 |V0449 Cas |005057.7+584657 |E | 15. | 16. | |p |40145.48 | | | | |05527 05527| +180450 |V0450 Cas *|005129.0+613858 |INS | 15.3 | 17.6 : | |B | | | | |e |07308 07308| +180451 |V0451 Cas |005220.1+594332 |LB | 9.3 | 10.0 | |p | | | | |M5 |05525 05525| +180452 |V0452 Cas |005218.0+535150 |UGSS | 14. | 17.5 : | |p | | | | | |05527 05527| +180453 |V0453 Cas |010202.9+563753 |LB: | 15. | 16. | |p | | | | | |05527 05527| +180454 |V0454 Cas |010458.3+603022 |LB: | 15. | 16. | |p | | | | | |05527 05527| +180455 |V0455 Cas |010645.6+614521 |LB | 15.5 | 16.6 | |p | | | | | |06953 03910| +180456 |V0456 Cas |010618.1+540324 |SRA | 13.6 | 14.3 | |p |28855. | | 135.3 | | |06953 04341| +180457 |V0457 Cas |010953.0+551331 |SRA | 15.5 | 16.5 | |p |28475. | | 137. | | |06953 03910| +180458 |V0458 Cas |011046.8+602334 |E | 15.5 | 16. | |p |38289.50 | | | | |05527 05527| +180459 |V0459 Cas *|011129.9+610848 |EA/DM | 10.9 | 11.6 | 11.6 |p |25321.600 | | 8.458294 |04 *|B9 |05395 05395| +180460 |V0460 Cas |011228.0+541827 |E | 16. | 16.5 | |p |39775.64 | | | | |05527 05527| +180461 |V0461 Cas |011309.6+595109 |SRB | 15.3 | 16.4 | |p | | | 130. : | | |06953 03905| +180462 |V0462 Cas |011336.5+541405 |EA | 15. | 16.5 | |p |40127.36 | | | | |05527 05527| +180463 |V0463 Cas |011540.0+580528 |LB | 15.0 | 16.0 | |p | | | | | |06953 03910| +180464 |V0464 Cas |011750.8+564904 |E | 15.5 | 16. | |p |40145.47 | | | | |05527 05527| +180465 |V0465 Cas |011813.9+574811 |SRB | 7.7 | 8.9 | |p | | | 60. | |M5 |07112 03980| +180466 |V0466 Cas *|011953.6+581831 |LC | 9.8 | 10.74 | |B | | | | |M1.5Ib |05394 05397| +180467 |V0467 Cas |012216.3+572306 |SRB | 15.4 | 16.1 | |p | | | 100. | | |06953 04341| +180468 |V0468 Cas |012654.2+531748 |RRAB | 14. | 16. | |p |39802.24 | | | | |05527 05527| +180469 |V0469 Cas |012718.4+590758 |EA | 16. | 17. | |p |39775.64 | | | | |05527 05527| +180470 |V0470 Cas |013218.2+562958 |E | 13.0 | 13.5 | |p |29231.369 | | 0.444692 | | |06953 04341| +180471 |V0471 Cas |013220.5+551220 |EW/KW | 14.1 | 14.6 | |p |29486.449 | | 0.335998 | | |06953 03910| +180472 |V0472 Cas |013331.9+603247 |LB | 14.2 | 14.9 | |p | | | | | |06953 04341| +180473 |V0473 Cas |013452.3+563910 |E | 13.4 | 14.0 | |p | | | | | |06953 04341| +180474 |V0474 Cas |013741.2+555032 |LB: | 14.5 | 15.5 | |p | | | | | |05527 05527| +180475 |V0475 Cas |014118.5+562545 |SRA | 15.3 | 16.3 | |p |29116. | | 106.7 | | |06953 03910| +180476 |V0476 Cas |014321.8+592151 |M | 16.0 |< 19. | |p |29085. | | 228. | | |06953 03910| +180477 |V0477 Cas |014310.3+552725 |LB: | 15. |< 16. | |p | | | | | |05527 05527| +180478 |V0478 Cas |014318.9+554005 |E | 15. | 15.5 | |p |39792.46 | | | | |05527 05527| +180479 |V0479 Cas |014629.1+564042 |E: | 16.5 | 17.5 | |p |39801.56 | | | | |05527 05527| +180480 |V0480 Cas *|014751.5+552816 |EW/KW | 14.6 | 14.9 | 14.7 |p |38315.465 | | 0.342012 | | |06953 03905| +180481 |V0481 Cas |015645.1+591844 |SRB | 15.5 |< 17.5 | |p | | | 160. : | |C(N) |06953 03905| +180482 |V0482 Cas *|024044.9+611656 |BCEP | 8.27 | 8.31 | |B | | | 0.37822 : | |O9.5I-II |05522 BD | +180483 |V0483 Cas |024541.0+590356 |SR: | 15. | 17. | |p | | | | | |03905 03905| +180484 |V0484 Cas |232114.6+564304 |SR: | 16. | 17. | |p | | | | | |03903 03903| +180485 |V0485 Cas |000213.3+645424 |ISB | 14.2 | 16.5 | |p | | | | |ea |06474 06474| +180486 |V0486 Cas |004238.0+522014 |E: | 6.91 |( 0.04 )| |V |39012.27 | | 5.551 | |B1III |05847 BD | +180487 |V0487 Cas |010659.7+634623 |SRD | 7.44 | 7.74 | |V | | | 134. | |G0-G4Ia |05848 BD | +180488 |V0488 Cas |023801.3+630145 |M | 11.2 |< 17.0 | |R |44489. | | 282.36 | | |04276 05849| +180489 |V0489 Cas |023824.1+582422 |M | 15.3 |< 17.0 | |R |38420. | | 330. | | |05849 05849| +180490 |V0490 Cas |023835.8+575050 |M: | 13.5 |< 17.0 | |R |38322. | | 788. /N| | |05849 05849| +180491 |V0491 Cas |023931.9+584130 |LB: | 16.0 | 16.7 | |R | | | | | |05849 05849| +180492 |V0492 Cas |024345.1+602525 |LB: | 14.4 | 15.6 | |R | | | | | |05849 05849| +180493 |V0493 Cas |024411.0+620354 |LB: | 15.8 |< 17.0 | |R | | | | | |05849 05849| +180494 |V0494 Cas *|024445.6+590145 |LB: | 15.8 |< 17.0 | |R | | | | | |05849 05849| +180495 |V0495 Cas |024616.2+621703 |IS: | 15.3 |< 17.0 | |R | | | | | |05849 05849| +180496 |V0496 Cas |024736.6+603500 |LB | 15.8 | 16.8 | |R | | | | | |05849 05849| +180497 |V0497 Cas *|024933.3+602629 |E: | 15.5 | 17.0 | |R |38374.361 | | | | |05849 05849| +180498 |V0498 Cas *|025034.5+601923 |E | 15.8 |< 17.0 | |R |38407.234 | | | | |05849 05849| +180499 |V0499 Cas *|025056.8+604427 |LB: | 13.4 | 14.7 | |p | | | | | |05849 05849| +180500 |V0500 Cas |025133.0+575035 |M | 14.4 | 17.0 | |R |38735. | | 250. | | |05849 05849| +180501 |V0501 Cas |025246.5+631611 |E | 15.1 | 15.9 | |R |39198.328 | | | | |05849 05849| +180502 |V0502 Cas |025225.7+584603 |UG: | 16.1 |< 17.0 | |R | | | | | |05849 05849| +180503 |V0503 Cas |025308.9+583440 |SR | 15.4 |< 17.0 | |R |39100. | | 120. : | | |05849 05849| +180504 |V0504 Cas |025736.0+615503 |M | 15.8 |< 17.0 | |R |38664. | | 170. : | | |05849 05849| +180505 |V0505 Cas |030259.6+605047 |IS: | 12.9 | 14.8 | |p | | | | | |05849 05849| +180506 |V0506 Cas |030421.8+612543 |ISB: | 15.6 | 17.0 | |R | | | | | |05849 05849| +180507 |V0507 Cas |030411.1+603334 |E | 15.4 |< 17.0 | |R |38322.444 | | | | |05849 05849| +180508 |V0508 Cas |030806.6+612731 |ISB | 15.2 | 16.4 | |R | | | | | |05849 05849| +180509 |V0509 Cas *|230005.1+565643 |SRD | 4.75 | 5.5 | |V | | | | |F8e-KIa-0+B1V |08863 BD | +180510 |V0510 Cas |001230.4+653305 |INS: | 15.1 | 15.7 | |p | | | | |ea: |06474 05529| +180511 |V0511 Cas |001254.9+653410 |INSB | 15.8 | 17.0 | |p | | | | |ea |06474 05529| +180512 |V0512 Cas |001329.2+653600 |INB | 16.2 | 16.9 | |p | | | | |Ge(T:) |06474 05529| +180513 |V0513 Cas |001814.9+661814 |UGZ: | 15.5 |< 17.2 | |p | | | | | |06474 05529| +180514 |V0514 Cas |002605.8+535508 |CEP: | 16.0 | 17.8 | |p | | | | | |06319 06319| +180515 |V0515 Cas |003252.2+525351 |L: | 14.8 | 16.3 | |p | | | | | |06319 06319| +180516 |V0516 Cas |003521.8+525954 |RR | 14.1 | 15.2 | |p | | | | | |06319 06319| +180517 |V0517 Cas |003534.9+560726 |L: | 15.5 | 16.6 | |p | | | | | |06319 06319| +180518 |V0518 Cas *|021726.2+594312 |E/DM | 10.82 | 11.1 | |V | | | 3. | |B3 |06320 06320| +180519 |V0519 Cas |025647.9+632717 |ISB: | 13.8 | 15.1 | |p | | | | | |04276 00947| +180520 |V0520 Cas *|234207.4+555438 |EW/KW | 12.5 | 13.1 | 13.1 |B |41186.369 | | 0.48959 | | |07651 07651| +180521 |V0521 Cas *|235706.3+564541 |DSCT | 14.40 |( 0.21 )| |B | | | 0.160 | | |06321 07680| +180522 |V0522 Cas |235734.6+644649 |INT | 14.8 | 17.0 | |p | | | | |e(T) |06474 05529| +180523 |V0523 Cas *|004006.3+501416 |EW/KW | 10.62 | 11.45 | 11.34 |V |41220.3036 | | 0.23369068 | | |08866 07049| +180524 |V0524 Cas *|004600.1+691053 |M | 13.5 |< 17.5 | |p |40500. | | | |S |07694 07694| +180525 |V0525 Cas |004757.8+703846 |SR: | 14.0 | 16.7 | |p |41360. | | | |M2 |07414 07414| +180526 |V0526 Cas *|005057.4+513029 |DSCTC | 6.34 | 6.37 | |V | | | | |F5III |07695 BD | +180527 |V0527 Cas *|010247.9+703902 |EA/AR | 12.9 | 13.8 | 13.5 |p |42744.267 | | 4.86039 | | |07700 07694| +180528 |V0528 Cas |022937.7+603926 |BCEP: | 8.69 | 8.86 | |B | | | | |B5V |06844 BD | +180529 |V0529 Cas |022943.5+604039 |GCAS | 8.44 | 8.86 | |V | | | | |B5Vea |06844 BD | +180530 |V0530 Cas |233044.1+601521 |LB | 13.8 | 16.2 | |B | | | | |M3 |07920 07920| +180531 |V0531 Cas |233823.8+615421 |IN: | 14.2 | 15.9 | |B | | | | | |06100 06100| +180532 |V0532 Cas *|235905.6+565816 |SRA | 9.9 | 11.1 | |V |41238. | | 450. |50 |C6,3e(Ne) |08868 08868| +180533 |V0533 Cas *|235954.3+565847 |SRA | 12.1 | 14.3 | |V |41250. | | 305. |50 |C(N) |08868 08868| +180534 |V0534 Cas |001317.9+555912 |SRB | 12.0 | 13.0 | |p | | | | | |07974 07974| +180535 |V0535 Cas |001939.8+522156 |LB | 10.5 | 11.4 | |p | | | | |MA |08069 08069| +180536 |V0536 Cas *|002541.8+564251 |RRC | 15.2 | 15.8 | |p |41546.489 | | 0.395616 |42 | |07974 07974| +180537 |V0537 Cas |010330.6+532641 |ISA: | 11.4 | 13.1 | |p | | | | | |08869 04016| +180538 |V0538 Cas |011807.2+614304 |ISB | 9.4 | 10.6 | |p | | | | |K5III |08870 05394| +180539 |V0539 Cas |013752.4+624749 |LB: | 8.36 | 8.72 | |V | | | | |M2 |07315 BD | +180540 |V0540 Cas *|020330.5+693456 |ACV | 7.73 | 7.75 | |V |40854.7 | | 34.9 | |A0p(Cr) |06992 BD | +180541 |V0541 Cas *|023429.2+632028 |EW | 10.4 | 11.1 | 11.0 |p |39026.542 | | 0.909026 | | |08871 04321| +180542 |V0542 Cas *|235659.0+564606 |LB | 13.6 | 14.2 | |V | | | | |M5 |08868 07341| +180543 |V0543 Cas |235840.5+582111 |LB: | 16.6 | 17.1 | |B | | | | |C |06566 06566| +180544 |V0544 Cas *|001602.8+485506 |EA/SD | 12.9 | 14.7 | |p |42819.266 | | 3.37472 |15 |A-F |08147 08147| +180545 |V0545 Cas |002016.0+592314 |ISA: | 11.4 | 12.6 | |p | | | | | |07914 02786| +180546 |V0546 Cas *|002501.2+611841 |EB/KE | 14.2 | 14.8 | 14.8 |B |41160.590 | | 1.106205 | | |08817 07834| +180547 |V0547 Cas *|003229.4+671408 |UV | 11.5 | 12.01 | |B | | | | |M2.5Ve |07835 08874| +180548 |V0548 Cas |003809.9+625346 |LB | 15.5 | 16.5 | |p | | | | | |03903 03903| +180549 |V0549 Cas |004417.0+604220 |LB | 15.0 | 15.5 | |p | | | | |M4 |06953 04341| +180550 |V0550 Cas |005138.0+584850 |LB | 15.0 | 15.5 | |p | | | | | |06953 03905| +180551 |V0551 Cas *|010033.4+602641 |ACV | 8.43 | 8.77 | |V |41206. | | 69.0 | |A0p(Sr-Cr) |07893 BD | +180552 |V0552 Cas |010518.7+632125 |RRAB: | 14.7 | 15.7 | |p | | | | | |00164 02355| +180553 |V0553 Cas |010811.0+621612 |INS: | 14.2 | 15.5 | |p | | | | | |06953 03910| +180554 |V0554 Cas *|011020.1+623040 |EA: | 11.2 | 11.8 | |p |39089. :| | | |M2I+Be |08818 BD | +180555 |V0555 Cas |011608.2+553010 |LB | 11.0 | 11.7 | |p | | | | |M1 |02579 02355| +180556 |V0556 Cas |012351.8+623120 |RR: | 11.6 | 13.1 | |p | | | | | |00164 02355| +180557 |V0557 Cas |014220.5+680235 |ACV | 5.55 | 5.64 | |V |40974.88 | | 3.1848 |50 |B9p(Si-Sr-Cr) |08819 BD | +180558 |V0558 Cas |020731.8+652856 |E | 9.0 | 9.6 | |B | | | | |A-F |03835 07846| +180559 |V0559 Cas *|022540.1+613259 |EA | 7.01 | 7.23 | 7.21 |V |41357.560 | | 1.58064 |12 |B9V |07295 BD | +180560 |V0560 Cas |231043.4+571554 |LB | 13.1 | 13.7 | |p | | | | |M8 |02267 02345| +180561 |V0561 Cas |231115.1+555616 |LB | 13.2 | 13.7 | |p | | | | |M5 |02267 02345| +180562 |V0562 Cas |231313.4+563613 |ISB: | 13.4 | 14.6 | |p | | | | |M8 |02267 02345| +180563 |V0563 Cas |231655.3+602601 |M | 11.2 | 15.4 | |V |41175. | | 543. |50 |M5.5e-M8.7e |07920 07920| +180564 |V0564 Cas |232707.6+525310 |SR: | 14.5 | 15.5 | |p | | | | | |03903 03903| +180565 |V0565 Cas |234744.8+542111 |SR: | 16. | 17. | |p | | | | | |03903 03903| +180566 |V0566 Cas *|234850.2+621252 |ACYG | 5.34 | 5.45 | |V | | | | |A3eqIa-0 |07850 BD | +180567 |V0567 Cas |000506.2+611850 |ACV | 5.71 | 5.81 | |V |40482.444 | | 6.4322 |50 |B9p(Hg-Mn) |07955 BD | +180568 |V0568 Cas |011713.5+745120 |RR: | 13.1 | 14.0 | |p |41770.250 | | 0.623 : | | |08823 00122| +180569 |V0569 Cas *|231517.5+592752 |M | 17.2 |< 18. | |B |40925. | | 364. |50 |M6 |07920 07920| +180570 |V0570 Cas |231627.7+594818 |E: | 13.8 | 16.5 | |B |40839.45 | | | |F-G: |07920 07920| +180571 |V0571 Cas |231941.6+595818 |LB | 12.9 | 15.5 | |I | | | | |M |07920 07920| +180572 |V0572 Cas |231957.1+622748 |M | 10.6 | 14.4 | |I |41000. | | 775. | |M8-M10 |07920 07920| +180573 |V0573 Cas |232114.6+590853 |M | 10.0 | 13.6 | |I |41775. | | 356.5 |40 |M7 |07920 07920| +180574 |V0574 Cas |232131.9+602213 |LB | 15.4 | 17.5 | |B | | | | |M5 |07920 07920| +180575 |V0575 Cas |232155.1+620303 |M | 17.5 |< 19. | |B |40070. | | 282. |50 |M2e-M4e |07920 07920| +180576 |V0576 Cas |232311.7+614439 |LB | 12.0 | 14. | |I | | | | |M6 |07920 07920| +180577 |V0577 Cas |232333.7+602823 |E: | 14.2 | 15.1 | |B |40119.45 | | | |F-G: |07920 07920| +180578 |V0578 Cas |232507.2+590304 |EA | 16.2 | 17.8 | |B |40531.27 | | | |A-F |07920 07920| +180579 |V0579 Cas |232555.3+605731 |SRB | 17.1 | 18.9 : | |B | | | 220. | |M5 |07920 07920| +180580 |V0580 Cas |232815.4+602859 |LB | 13.2 | 14.0 | |B | | | | |M2 |07920 07920| +180581 |V0581 Cas |232958.0+602812 |M | 12.0 | 16.0 | |I |40975. | | 435. |50 |M8 |07920 07920| +180582 |V0582 Cas |233011.3+601646 |SRA | 14.8 | 16.6 : | |B |40125. | | 300. |50 |M5 |07920 07920| +180583 |V0583 Cas |233116.3+613218 |LB | 12.6 | 14.0 | |I | | | | |M |07920 07920| +180584 |V0584 Cas |233147.6+610246 |M | 16.5 |< 18.5 | |B |40060. | | 336.5 |30 |M6-M8 |07920 07920| +180585 |V0585 Cas |233359.0+610410 |LB | 12.2 | 12.7 | |I | | | | |M5 |07920 07920| +180586 |V0586 Cas |233516.8+613525 |SRA | 15.0 | 16.1 | |B |40125. | | 165. | |M3 |07920 07920| +180587 |V0587 Cas |233745.5+605939 |SRB | 12.3 | 13.0 | |I | | | 145. : | |M6 |07920 07920| +180588 |V0588 Cas |012238.1+542308 |DCEP: | 12.2 | 13.6 | |p | | | | | |00164 02355| +180589 |V0589 Cas *|014605.5+605937 |LC | 8.75 | 9.22 | |V | | | | |M3Iab-Ib |07315 BD | +180590 |V0590 Cas |032341.7+761653 |M: | 14. |< 15.5 | |p |36615. | | 393. : | | |00001 00542| +180591 |V0591 Cas |001537.0+635302 |UV | 13.2 | 14.4 | |B | | | | |M2 |08325 08325| +180592 |V0592 Cas *|002052.2+554216 |NL | 12.79 : |( 0.4 : )| |V | | | | |Oep |08326 GSC | +180593 |V0593 Cas |003028.6+625008 |UV | 12.6 | 13.9 | |B | | | | |M |08325 08325| +180594 |V0594 Cas |004318.3+615440 |INA | 10.9 | 12.00 | |B | | | | |O9.5e |08328 BD | +180595 |V0595 Cas |014302.7+563046 |LC | 8.75 | 9.05 | |V | | | | |M2Ib |02556 BD | +180596 |V0596 Cas |015923.5+583116 |UV | 13.3 | 14.0 | |B | | | | |M4Ve |08331 07144| +180597 |V0597 Cas |015953.7+601258 |UV | 10.1 | 13.2 | |B | | | | |M |08332 08332| +180598 |V0598 Cas *|020159.1+615418 |LB | 7.38 | 7.54 | |V | | | | |M3-4III |08875 BD | +180599 |V0599 Cas |020235. +602814:|UV | 11.9 | 14.1 | |B | | | | |M2 |08332 08332| +180600 |V0600 Cas |020302.1+611537 |UV | 12.0 | 14.9 | |B | | | | |M2-M3 |08332 08332| +180601 |V0601 Cas |021331.6+602603 |UV | 11.3 | 13.9 | |B | | | | |M1 |08332 08332| +180602 |V0602 Cas |021440.0+612035 |UV | 14.8 | 15.5 | |B | | | | |M1 |08339 08339| +180603 |V0603 Cas |021444.4+594757 |UV | 11.1 | 13.2 | |B | | | | |M0-M1 |08339 08339| +180604 |V0604 Cas |021905.4+594130 |UV | 14.8 | 16.0 | |B | | | | |M2 |08339 08339| +180605 |V0605 Cas |022022.5+594017 |LC | 8.22 | 8.48 | |V | | | | |M2Iab |02556 BD | +180606 |V0606 Cas |022214.2+593653 |UV | 12.2 | 14.5 | |B | | | | | |08339 08339| +180607 |V0607 Cas |022226.3+613535 |UV | 12.1 | 14.1 | |B | | | | |M: |08339 08339| +180608 |V0608 Cas |022426.1+712307 |E: | 12.3 : | 13.3 : | |p | | | 0.47 : | | |08340 08340| +180609 |V0609 Cas |022452.9+615346 |UV | 12.3 | 14.7 | |B | | | | |M3 |08339 08339| +180610 |V0610 Cas |022641.7+594708 |UV | 13.7 | 14.9 | |B | | | | |M0-M1 |08339 08339| +180611 |V0611 Cas |022723.6+612633 |UV | 13.7 | 15.2 | |B | | | | |M2 |08339 08339| +180612 |V0612 Cas |023039.6+610025 |UV | 12.5 | 14.2 | |B | | | | |M2 |08339 08339| +180613 |V0613 Cas |023748. +620747:|UV | 12.8 | 15.3 | |B | | | | |M1 |08342 08342| +180614 |V0614 Cas |023853.4+622718 |UV | 12.2 | 13.3 | |B | | | | |M |08342 08342| +180615 |V0615 Cas *|024031.7+611346 |* | 11.2 | 11.9 | |B | | | | |B1eIb: |08346 03544| +180616 |V0616 Cas |024158.4+632019 |UV | 14.9 | 15.6 | |B | | | | |M2-M3 |08342 08342| +180617 |V0617 Cas |024229.0+631304 |UV | 13.3 | 15.4 | |B | | | | |M2 |08342 08342| +180618 |V0618 Cas |025128. +631402:|UV | 12.6 | 15.7 | |B | | | | |M2 |08342 08342| +180619 |V0619 Cas |031056. +624250:|UV | 12.1 | 14.3 | |B | | | | | |08348 08348| +180620 |V0620 Cas |031114.4+604819 |UV | 14.2 | 15.6 | |B | | | | |M1 |08348 08348| +180621 |V0621 Cas |031113.6+610814 |UV | 10.8 | 13.4 | |B | | | | |M2 |08348 08348| +180622 |V0622 Cas |031050.4+605009 |UV | 14.1 | 15.0 | |B | | | | |M0-M1 |08348 08348| +180623 |V0623 Cas |031125.3+575411 |LB: | 9.0 | 9.8 | |p | | | | |C4,5J(R5) |02576 BD | +180624 |V0624 Cas |031129.6+603536 |UV | 12.3 | 13.9 | |B | | | | |M2 |08348 08348| +180625 |V0625 Cas |031210.3+615707 |UV | 14.4 | 15.3 | |B | | | | |M2 |08348 08348| +180626 |V0626 Cas |031218.8+610306 |UV | 11.9 | 14.6 | |B | | | | |M1 |08348 08348| +180627 |V0627 Cas *|225741.0+584913 |SR: | 12.4 | 13.24 | |V | | | | |M2eII-III |08433 08893| +180628 |V0628 Cas |231725.6+605043 |INA | 10.88 | 11.84 | |V | | | | |Beq |06415 04002| +180629 |V0629 Cas |233601.0+523757 |ACV | 9.0 |( 0.074 )| |V | | | 0.63195 | |A0p(Si) |07955 BD | +180630 |V0630 Cas |234852.0+512739 |UG: | 12.3 | 17.1 | |p | | | | | |08355 08355| +180631 |V0631 Cas |235420.9+614902 |UV | 13.3 | 14.5 | |B | | | | |M1 |08325 08325| +180632 |V0632 Cas |235700.4+605554 |UV | 13.9 | 14.8 | |B | | | | |M1-M2 |08325 08325| +180633 |V0633 Cas |001126.0+584929 |INA | 15.20 | 15.34 | |B | | | | |B3e |03926 04002| +180634 |V0634 Cas |004933.6+644700 |LC | 10.67 | 11.00 | |V | | | | |M1.9Iab |02556 GSC | +180635 |V0635 Cas *|011831.9+634433 |XNGP | 14.5 | 16.3 | |V | | | | |Be |03936 03935| +180636 |V0636 Cas |013243.2+633538 |DCEPS | 7.09 | 7.26 | |V |44001.355 | | 8.377 |50 |G0Ib |08745 BD | +180637 |V0637 Cas |025653.2+573325 |LC | 9.84 | 10.08 | |V | | | | |M2.2Iab |02556 GSC | +180638 |V0638 Cas *|230243.9+551411 |ACV | 5.7 |( 0.10 )| |U |44115.24 | | 5.36 | |B9IIIp(He weak) |08747 BD | +180639 |V0639 Cas |000325.7+633826 |ACYG | 6.19 | 6.28 | |V | | | | | |67108 BD | +180640 |V0640 Cas |000615.8+582612 |E: | 5.96 |( 0.066 )| |V | | | | | |67109 BD | +180641 |V0641 Cas |000926.3+635714 |SRB: | 10.1 | 11.1 | |p | | | | | |67110 BD | +180642 |V0642 Cas |001504.7+635038 |ISB | 10.3 | 11.3 | |p | | | | | |67112 67111| +180643 |V0643 Cas |002857.7+602138 |DCEP | 11.7 | 12.1 | |p | | | | | |67110 GSC | +180644 |V0644 Cas |010116.6+601418 |DCEP | 11.3 | 11.9 | |p | | | | | |67020 GSC | +180645 |V0645 Cas |011852.9+580932 |SRA | 16.9 | 18.4 | |B | | | | | |67121 67121| +180646 |V0646 Cas |013035.1+624331 |EA/KE: | 10.21 | 10.5 | |B | | | | | |67124 67124| +180647 |V0647 Cas |023027.5+623146 |SRA | 14.8 | 17.2 | |B | | | | | |67126 67126| +180648 |V0648 Cas |025104.0+575120 |LC | 11.8 | 12.6 | |p | | | | | |67118 BD | +180649 |V0649 Cas |231627.1+615747 |EA/DM | 6.53 |( 0.10 )| |V | | | | | |67128 BD | +180650 |V0650 Cas |234839.0+645235 |ACV | 6.41 |( 0.02 )| |V | | | | | |67134 BD | +180651 |V0651 Cas |234833.5+574457 |EW/KW | 10.5 | 11.0 | |p | | | | | |67020 67137| +180652 |V0652 Cas |235218.8+580536 |LB | 11.7 | 12.1 | |V | | | | | |67140 67139| +180653 |V0653 Cas |235721.3+582504 |SR | 13.9 | 15.4 | |V | | | | | |67140 67155| +180654 |V0654 Cas |000020.6+605943 |EA/D | 11.1 |( 0.5 : )| |p | | | | | |67156 67157| +180655 |V0655 Cas |010704.5+492447 |SR: | 13.4 | 15.0 | |V | | | | | |68015 UCAC2| +180656 |V0656 Cas |023544.7+650859 |M | 8.2 | 10.8 : | |I | | | | | |68015 68282| +180657 |V0657 Cas |235204.9+614812 |M | 4.3 | 6.2 | |1.| | | | | |68015 2MASS| +180658 |V0658 Cas |000705.6+614855 |M | 11.5 | 14.0 | |V | | | | | |69065 69065| +180659 |V0659 Cas |001756.3+590915 |M | 13.5 |< 17.0 | |V | | | | | |69065 69065| +180660 |V0660 Cas |003426.3+643253 |SR: | 12.8 | 15.0 | |V | | | | | |69065 69065| +180661 |V0661 Cas |004654.5+635606 |SRB: | 12.3 | 14.2 | |V | | | | | |69010 GSC | +180662 |V0662 Cas |011802.7+651730 |XP: | 11.06 |( 0.10 : )| |V | | | | | |69066 69067| +180663 |V0663 Cas |024232.5+713440 |DSCTC | 8.8 |( 0.04 v )| |V | | | | | |69068 BD | +180664 |V0664 Cas |030347.0+645436 |R | 14. |( 1.1 )| |B | | | | | |69069 69070| +180665 |V0665 Cas |230108.3+585236 |XP | 23.5 | | |B | | | | | |69071 69072| +180666 |V0666 Cas |020128.1+581814 |M | 10.0 | 13.8 | |V | | | | | |70001 70026| +180667 |V0667 Cas |032056.1+704639 |M | 8.8 |< 14.5 | |p | | | | | |70028 70027| +180668 |V0668 Cas |002741.2+693852 |M | 1.0 | 2.8 | |L | | | | | |71002 USNO | +180669 |V0669 Cas |013351.2+622653 |M: | 1.57 | 3.02 | |L | | | | | |71006 | +180670 |V0670 Cas |022212. +611040:|SR: | 14.1 | 15.2 | |B | | | | | |71015 | +180671 |V0671 Cas |022322.6+593801 |SR | 14.1 |< 16.5 | |I | | | | | |71015 2MASS| +180672 |V0672 Cas |022429.9+592431 |SR | 15.0 | 17.4 | |B | | | | | |71015 GSC | +180673 |V0673 Cas |022556. +593730:|L | 12.8 | 13.6 | |I | | | | | |71015 | +180674 |V0674 Cas |022808. +620925:|LB | 18.4 | 20.0 | |B | | | | | |71015 | +180675 |V0675 Cas |022909. +603022:|M | 11.4 | 14.5 | |I | | | | | |71015 | +180676 |V0676 Cas |023103. +624517:|M | 7.4 | 10.4 | |I | | | | | |71015 | +180677 |V0677 Cas |023522. +631206:|I | 15.6 | 16.6 | |B | | | | | |71015 | +180678 |V0678 Cas |023514. +595806:|SR | 13.2 | 15.4 | |I | | | | | |71015 | +180679 |V0679 Cas |023626. +592302:|E: | 14.7 | 16.0 | |B | | | | | |71015 | +180680 |V0680 Cas |023644. +633702:|I: | 14.1 | 16.4 | |I | | | | | |71015 | +180681 |V0681 Cas |023834. +584957:|I: | 16.8 | 17.7 | |B | | | | | |71015 | +180682 |V0682 Cas |023855.6+590209 |I | 16.5 | 18.0 | |B | | | | | |71015 USNO | +180683 |V0683 Cas |023903. +594355:|I | 11.7 | 12.9 | |I | | | | | |71015 | +180684 |V0684 Cas |023921. +620355:|I | 12.8 | 13.8 | |I | | | | | |71015 | +180685 |V0685 Cas |024032. +632652:|LB | 12.1 | 12.9 | |I | | | | | |71015 | +180686 |V0686 Cas |024117. +623449:|I | 17.2 | 18.4 | |B | | | | | |71015 | +180687 |V0687 Cas |024120. +624349:|SR | 13.2 | 16.0 | |I | | | | | |71015 | +180688 |V0688 Cas |024456. +620439:|SR | 17.7 | 18.8 | |B | | | | | |71015 | +180689 |V0689 Cas |024541. +603837:|I | 16.9 | 17.7 | |B | | | | | |71015 | +180690 |V0690 Cas |024551. +630537:|M | 12.3 | 15.4 | |I | | | | | |71015 | +180691 |V0691 Cas |024552. +582236:|I | 17.6 | 18.5 | |B | | | | | |71015 | +180692 |V0692 Cas |024725. +580832:|M | 12.3 | 15.9 | |I | | | | | |71015 | +180693 |V0693 Cas |024750. +624231:|E | 14.9 | 16.2 | |B | | | | | |71015 | +180694 |V0694 Cas |025044. +582822:|M | 12.9 | 15.7 | |I | | | | | |71015 | +180695 |V0695 Cas |025100.9+614111 |SRA | 17.2 | 19.1 | |B | | | | | |71015 USNO | +180696 |V0696 Cas |025146.5+592737 |M | 12.2 | 15.5 | |I | | | | | |71015 USNO | +180697 |V0697 Cas |025502.2+603110 |I | 14.1 | 15.1 | |B | | | | | |71015 GSC | +180698 |V0698 Cas |025914. +611357:|I | 16.8 | 18.1 | |B | | | | | |71015 | +180699 |V0699 Cas |030041. +613652:|E: | 12.2 | 13.2 | |I | | | | | |71015 | +180700 |V0700 Cas |030045.1+594306 |LB | 10.8 | 11.8 | |I | | | | | |71015 USNO | +180701 |V0701 Cas |032337. +702710:|M | 1.3 | 3.6 | |L | | | | | |71002 | +180702 |V0702 Cas |230037.4+543942 |EA/SD | 14.0 | 15.0 | |p | | | | | |71221 71203| +180703 |V0703 Cas |022746. +605026:|I | 14.6 | 15.8 | |B | | | | | |72037 | +180704 |V0704 Cas |030740.5+602922 |SR | 11.4 | 12.1 | |p | | | | | |72022 BD | +180705 |V0705 Cas |234147.2+573101 |NA | 5.8 |< 16. | |V | | | | | |72039 72039| +180706 |V0706 Cas |000734.6+644314 |M: | 12.0 | 16.0 | |V | | | | | |73072 73072| +180707 |V0707 Cas |000817.8+524557 |M: | 11.6 | 16.8 | |V | | | | | |73072 73072| +180708 |V0708 Cas |001113.7+641932 |M: | 11.5 | 16.5 | |V | | | | | |73072 73072| +180709 |V0709 Cas |002848.8+591722 |XM | 14.75 | 15.35 | |B | | | | | |73068 73068| +180710 |V0710 Cas |003646.3+632854 |FU | 18.6 | 21.6 | |V | | | | | |73074 73074| +180711 |V0711 Cas |003823.6+482255 |E | 25.02 | 26.19 | |g | | | | | |73075 73075| +180712 |V0712 Cas |003826.8+482009 |E | 24.48 | 25.41 | |g | | | | | |73075 73075| +180713 |V0713 Cas |003827.4+482152 |E | 24.55 | 25.59 | |g | | | | | |73075 73075| +180714 |V0714 Cas |003827.5+482620 |E | 24.46 | 25.32 | |g | | | | | |73075 73075| +180715 |V0715 Cas |003854.0+482516 |E | 24.32 | 25.44 | |g | | | | | |73075 73075| +180716 |V0716 Cas |003857.4+482707 |E: | 24.17 |< 25.08 | |g | | | | | |73075 73075| +180717 |V0717 Cas |003857.4+482425 |RRC: | 24.28 | 25.33 | |g | | | | | |73075 73075| +180718 |V0718 Cas |003857.8+482732 |E | 24.22 | 25.20 | |g | | | | | |73075 73075| +180719 |V0719 Cas |003858.6+482658 |E | 24.30 | 25.33 | |g | | | | | |73075 73075| +180720 |V0720 Cas |004507.1+532648 |SR | 9.6 | 12.5 | |p | | | | | |73076 73077| +180721 |V0721 Cas |005633.1+593944 |M: | 12.2 |< 15.0 | |V | | | | | |73072 73072| +180722 |V0722 Cas |005924.1+604421 |M: | 11.9 | 14.7 | |V | | | | | |73072 73072| +180723 |V0723 Cas |010505.3+540040 |NB | 7.08 |< 18. | |V | | | | | |73078 73079| +180724 |V0724 Cas |011453.6+633644 |M: | 10.8 | 16.2 | |V | | | | | |73072 73072| +180725 |V0725 Cas |022113.6+603347 |M | 12.8 | 15.4 | |I | | | | | |73080 USNO | +180726 |V0726 Cas |023730. +620100:|L | 11.1 | 12.1 | |I | | | | | |73080 | +180727 |V0727 Cas |030337.8+700802 |M | 10.0 | 15.8 | |p | | | | | |73081 73081| +180728 |V0728 Cas |231529.2+615157 |RS: | 8.1 |( 0.06 )| |V | | | | | |73082 BD | +180729 |V0729 Cas |235401.2+620419 |E | 12.89 | 13.03 | |V | | | | | |73062 73062| +180730 |V0730 Cas |235646.6+564326 |EW | 14.53 | 14.60 | |V | | | | | |73083 73083| +180731 |V0731 Cas |235700.2+564508 |EA | 19.09 | 19.46 | |V | | | | | |73083 73083| +180732 |V0732 Cas |235709.9+564218 |EW | 14.26 | 14.42 | |V | | | | | |73083 73083| +180733 |V0733 Cas |235724.5+564513 |EB | 15.92 | 16.03 | |V | | | | | |73083 73083| +180734 |V0734 Cas |235725.7+564333 |EB | 15.18 | 15.41 | |V | | | | | |73083 73083| +180735 |V0735 Cas |235730.9+563949 |DSCTC | 14.04 | 14.08 | |V | | | | | |73083 73083| +180736 |V0736 Cas |235733.4+564432 |EW | 14.81 | 14.97 | |V | | | | | |73083 73083| +180737 |V0737 Cas |235749.4+564700 |EW | 16.69 | 16.86 | |V | | | | | |73083 73083| +180738 |V0738 Cas |235757.3+564548 |EW | 19.30 | 19.71 | |V | | | | | |73083 73083| +180739 |V0739 Cas |000416.0+650911 |LB | 7.62 | 7.70 | |Hp| | | | | |HIP HIP | +180740 |V0740 Cas |000857.2+662724 |SRD: | 8.69 | 8.74 | |Hp| | | | | |HIP HIP | +180741 |V0741 Cas |001010.5+643848 |EB | 8.26 | 8.51 | |Hp| | | | | |HIP HIP | +180742 |V0742 Cas *|001137.1+581243 |BE | 7.11 | 7.17 | |Hp| | | | | |HIP HIP | +180743 |V0743 Cas |002043.6+615247 |SRB | 6.81 | 6.91 | |Hp| | | | | |HIP HIP | +180744 |V0744 Cas |002156.7+532851 |EA | 8.44 | 8.70 | |Hp| | | | | |HIP HIP | +180745 |V0745 Cas *|002253.3+621429 |EB | 8.06 | 8.16 | |Hp| | | | | |HIP HIP | +180746 |V0746 Cas *|002415.7+520112 |LPB | 5.54 | 5.56 | |Hp| | | | | |HIP HIP | +180747 |V0747 Cas *|002857.0+482449 |LB: | 6.89 | 7.16 | |Hp| | | | | |HIP HIP | +180748 |V0748 Cas |003258.9+483930 |SRB | 10.01 | 10.40 | |Hp| | | | | |HIP HIP | +180749 |V0749 Cas |003348.9+581255 |LB: | 8.62 | 8.74 | |Hp| | | | | |HIP HIP | +180750 |V0750 Cas |003544.2+494411 |LB: | 8.89 | 9.02 | |Hp| | | | | |HIP HIP | +180751 |V0751 Cas |003547.7+554226 |LPB | 7.88 | 7.91 | |Hp| | | | | |HIP HIP | +180752 |V0752 Cas |003645.4+485708 |LB | 7.75 | 8.54 | |Hp| | | | | |HIP HIP | +180753 |V0753 Cas |004024.8+593050 |LB | 7.16 | 7.26 | |Hp| | | | | |HIP HIP | +180754 |V0754 Cas |004201.9+535733 |SRD | 8.76 | 9.07 | |Hp| | | | | |HIP HIP | +180755 |V0755 Cas |004250.1+641729 |EA/GS: | 7.14 | 7.30 | |V | | | | | |HIP HIP | +180756 |V0756 Cas |004450.4+601833 |DSCTC: | 8.75 | 8.83 | |Hp| | | | | |HIP HIP | +180757 |V0757 Cas |004916.1+682802 |LPB | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +180758 |V0758 Cas |005658.1+561424 |LB: | 8.57 | 8.69 | |Hp| | | | | |HIP HIP | +180759 |V0759 Cas |010309.9+530826 |LB: | 7.43 | 7.61 | |Hp| | | | | |HIP HIP | +180760 |V0760 Cas |010604.0+574523 |LPB | 7.12 | 7.17 | |Hp| | | | | |HIP HIP | +180761 |V0761 Cas |011309.8+614222 |ACV: | 6.38 | 6.41 | |Hp| | | | | |HIP HIP | +180762 |V0762 Cas |011611.9+714438 |BY: | 5.92 | 6.02 | |Hp| | | | | |HIP HIP | +180763 |V0763 Cas |011647.9+751202 |SRB | 8.27 | 8.43 | |Hp| | | | | |HIP HIP | +180764 |V0764 Cas |011726.3+573756 |BE | 6.85 | 6.93 | |Hp| | | | | |HIP HIP | +180765 |V0765 Cas |011909.1+581726 |EB | 10.72 | 11.11 | |Hp| | | | | |HIP HIP | +180766 |V0766 Cas |012040.6+513541 |EA | 7.10 | 7.51 | |Hp| | | | | |HIP HIP | +180767 |V0767 Cas |012920.6+614542 |SRB | 8.87 | 9.04 | |Hp| | | | | |HIP HIP | +180768 |V0768 Cas |013131.6+594608 |LPB: | 10.09 | 10.18 | |Hp| | | | | |HIP HIP | +180769 |V0769 Cas |013647.0+632452 |LPB: | 7.59 | 7.65 | |Hp| | | | | |HIP HIP | +180770 |V0770 Cas |013951.7+605408 |LB | 7.45 | 8.13 | |Hp| | | | | |HIP HIP | +180771 |V0771 Cas |014200.9+614744 |BE: | 9.31 | 9.48 | |Hp| | | | | |HIP HIP | +180772 |V0772 Cas |014202.9+610218 |ACV: | 6.67 | 6.72 | |Hp| | | | | |HIP HIP | +180773 |V0773 Cas |014418.0+573212 |EA | 6.21 | 6.30 | |Hp| | | | | |HIP HIP | +180774 |V0774 Cas |014700.0+602220 |SRB | 8.35 | 8.67 | |Hp| | | | | |HIP HIP | +180775 |V0775 Cas |015150.5+632715 |EA: | 9.73 | 9.93 | |Hp| | | | | |HIP HIP | +180776 |V0776 Cas |015323.4+700233 |EW: | 8.94 | 9.09 | |Hp| | | | | |HIP HIP | +180777 |V0777 Cas |015542.9+591624 |BE | 6.95 | 7.12 | |Hp| | | | | |HIP HIP | +180778 |V0778 Cas |015828.9+591609 |SRC | 8.19 | 8.36 | |Hp| | | | | |HIP HIP | +180779 |V0779 Cas |020209.3+753008 |EA: | 6.59 | 6.65 | |Hp| | | | | |HIP HIP | +180780 |V0780 Cas |020236.4+594117 |BE | 8.08 | 8.24 | |Hp| | | | | |HIP HIP | +180781 |V0781 Cas |020349.1+641415 |SRD | 7.58 | 7.68 | |Hp| | | | | |HIP HIP | +180782 |V0782 Cas |020845.4+650215 |BE | 7.66 | 7.74 | |Hp| | | | | |HIP HIP | +180783 |V0783 Cas |021030.9+640531 |BE | 9.81 | 10.00 | |Hp| | | | | |HIP HIP | +180784 |V0784 Cas |021025.5+595847 |DSCTC | 6.70 | 6.76 | |Hp| | | | | |HIP HIP | +180785 |V0785 Cas |021049.9+644945 |EA | 9.33 | 9.64 | |Hp| | | | | |HIP HIP | +180786 |V0786 Cas |021143.9+604245 |ACYG: | 8.67 | 8.78 | |Hp| | | | | |HIP HIP | +180787 |V0787 Cas |021513.0+640128 |BE | 8.00 | 8.24 | |Hp| | | | | |HIP HIP | +180788 |V0788 Cas |023326.6+705723 |LPB | 7.88 | 7.92 | |Hp| | | | | |HIP HIP | +180789 |V0789 Cas |023430.7+764305 |SRB | 6.70 | 6.84 | |Hp| | | | | |HIP HIP | +180790 |V0790 Cas |023448.1+603308 |ACYG: | 8.42 | 8.54 | |Hp| | | | | |HIP HIP | +180791 |V0791 Cas |023655.3+595301 |EB | 7.78 | 7.94 | |Hp| | | | | |HIP HIP | +180792 |V0792 Cas |024722.3+591711 |BCEP | 9.26 | 9.45 | |Hp| | | | | |HIP HIP | +180793 |V0793 Cas |025012.0+725452 |EB | 7.93 | 8.22 | |Hp| | | | | |HIP HIP | +180794 |V0794 Cas |025053.5+622204 |EA | 7.88 | 8.10 | |Hp| | | | | |HIP HIP | +180795 |V0795 Cas |025334.7+734616 |E | 8.97 | 9.19 | |Hp| | | | | |HIP HIP | +180796 |V0796 Cas |025309.8+584556 |LPB | 8.062 | 8.112 | |Hp| | | | | |HIP HIP | +180797 |V0797 Cas |025737.8+610744 |LPB: | 7.71 | 7.74 | |Hp| | | | | |HIP HIP | +180798 |V0798 Cas |030053.8+593958 |ACV | 7.33 | 7.37 | |Hp| | | | | |HIP HIP | +180799 |V0799 Cas |030527.5+613918 |EA | 8.80 | 9.15 | |Hp| | | | | |HIP HIP | +180800 |V0800 Cas |030735.0+754813 |LB | 7.05 | 7.22 | |Hp| | | | | |HIP HIP | +180801 |V0801 Cas |030854.2+622305 |BE | 6.48 | 6.57 | |Hp| | | | | |HIP HIP | +180802 |V0802 Cas |031233.6+691414 |I: | 10.60 | 10.90 | |Hp| | | | | |HIP HIP | +180803 |V0803 Cas |031510.9+595443 |BE: | 9.12 | 9.28 | |Hp| | | | | |HIP HIP | +180804 |V0804 Cas |031839.7+771924 |LB: | 8.28 | 8.38 | |Hp| | | | | |HIP HIP | +180805 |V0805 Cas |033019.4+715150 |SRB | 6.30 | 6.51 | |Hp| | | | | |HIP HIP | +180806 |V0806 Cas |230357.6+541154 |E: | 9.00 | 9.20 | |Hp| | | | | |HIP HIP | +180807 |V0807 Cas |231213.0+593559 |ELL: | 10.89 | 11.02 | |Hp| | | | | |HIP HIP | +180808 |V0808 Cas |231527.9+620445 |BE: | 9.76 | 9.93 | |Hp| | | | | |HIP HIP | +180809 |V0809 Cas |231923.8+624423 |LC | 6.58 | 6.71 | |Hp| | | | | |HIP HIP | +180810 |V0810 Cas |232019.0+554828 |BE | 8.56 | 8.69 | |Hp| | | | | |HIP HIP | +180811 |V0811 Cas |232034.3+581639 |BE | 8.62 | 8.79 | |Hp| | | | | |HIP HIP | +180812 |V0812 Cas |232048.9+622445 |ACV | 8.12 | 8.18 | |Hp| | | | | |HIP HIP | +180813 |V0813 Cas |232210.5+562054 |BE | 7.90 | 8.02 | |Hp| | | | | |HIP HIP | +180814 |V0814 Cas |232931.3+514107 |LB | 7.55 | 7.80 | |Hp| | | | | |HIP HIP | +180815 |V0815 Cas |233631.4+510737 |LB: | 8.77 | 8.88 | |Hp| | | | | |HIP HIP | +180816 |V0816 Cas |234220.9+643055 |LB | 6.50 | 6.63 | |Hp| | | | | |HIP HIP | +180817 |V0817 Cas |234555.1+544408 |BE | 8.26 | 8.61 | |Hp| | | | | |HIP HIP | +180818 |V0818 Cas |234953.1+621251 |BE | 7.67 | 7.81 | |Hp| | | | | |HIP HIP | +180819 |V0819 Cas |235350.0+605112 |ACYG: | 7.01 | 7.09 | |Hp| | | | | |HIP HIP | +180820 |V0820 Cas |235747.7+594312 |BE | 8.19 | 8.27 | |Hp| | | | | |HIP HIP | +180821 |V0821 Cas |235849.2+534020 |EA | 8.27 | 8.62 | |Hp| | | | | |HIP HIP | +180822 |V0822 Cas |000217.7+604211 |SRB | 6.75 | 6.84 | |Hp| | | | | |HIP HIP | +180823 |V0823 Cas |000542.4+632414 |* | 11.4 | 12.2 | |B | | | | | |75068 GSC | +180824 |V0824 Cas |002231.3+630159 |DCEP | 11.03 | 11.36 | |V | | | | | |75069 75069| +180825 |V0825 Cas |002518.2+604554 |CEP(B) | 14.1 | 15.0 | |B | | | | | |75070 75070| +180826 |V0826 Cas |003502.8+611902 |LB: | 10.5 | 14.6 | |V | | | | | |75071 75071| +180827 |V0827 Cas |003718.8+631257 |DCEPS | 12.3 | 12.7 | |B | | | | | |75069 75069| +180828 |V0828 Cas |004229.3+615547 |INT | 14.96 | 15.75 | |U | | | | | |75072 75073| +180829 |V0829 Cas |011751.6+671352 |M | 10.00 |( 2.4 )| |K | | | | | |75074 | +180830 |V0830 Cas |011826.7+504019 |RRC | 13.2 |( 0.60 )| |V | | | | | |75075 75076| +180831 |V0831 Cas |014700.2+612124 |XP | 11.49 |( 0.19 )| |V | | | | | |75077 GSC | +180832 |V0832 Cas |014738.5+604157 |ZAND: | 7.3 | 7.8 | |K | | | | | |75078 GSC | +180833 |V0833 Cas |025440.0+633317 |DCEP | 13.6 | 14.9 | |B | | | | | |75069 75069| +180834 |V0834 Cas |030554.7+574544 |DCEP | 15.6 | 17.0 | |B | | | | | |75069 75069| +180835 |V0835 Cas |030715.1+652805 |SR: | 11.9 | 14.4 | |p | | | | | |75002 GSC | +180836 |V0836 Cas |030843.6+620815 |DCEP | 12.6 | 13.1 | |B | | | | | |75069 75069| +180837 |V0837 Cas |231526.1+572705 |LB | 12.5 |< 16.2 | |V | | | | | |75079 75079| +180838 |V0838 Cas |232302.0+561523 |SR | 12.6 |< 15.0 | |V | | | | | |75079 75079| +180839 |V0839 Cas |232435.9+613850 |LPB | 13.07 | 13.13 | |B | | | | | |75080 75080| +180840 |V0840 Cas |232437.4+613858 |DSCTC | 15.06 | 15.13 | |B | | | | | |75080 75080| +180841 |V0841 Cas |232445.5+613652 |EA | 17.4 | 18.0 | |B | | | | | |75080 75080| +180842 |V0842 Cas |232452.1+613631 |LPB | 13.00 | 13.09 | |B | | | | | |75080 75080| +180843 |V0843 Cas |232453.0+613522 |LPB | 14.30 | 14.35 | |B | | | | | |75080 75080| +180844 |V0844 Cas |232531.3+552207 |M | 12.5 |< 15.0 | |V | | | | | |75079 75079| +180845 |V0845 Cas |232615.0+572356 |RR: | 13.9 | 14.8 | |p | | | | | |75006 75007| +180846 |V0846 Cas |233320.3+610709 |DCEP | 14.2 | 15.0 | |B | | | | | |75069 75069| +180847 |V0847 Cas |233609.1+534400 |EA: | 14.8 | 15.6 | |p | | | | | |75006 75007| +180848 |V0848 Cas |233624.8+531656 |EA: | 15.2 | 16.2 | |p | | | | | |75006 75007| +180849 |V0849 Cas |233738.6+530717 |* | 13.8 | 15.6 | |p | | | | | |75006 75008| +180850 |V0850 Cas |233739.8+585046 |SR | 12.9 | 15.2 | |V | | | | | |75079 75079| +180851 |V0851 Cas |233801.4+534345 |EA: | 14.1 | 15.1 | |p | | | | | |75006 75007| +180852 |V0852 Cas |234610.0+584017 |SR | 13.1 | 15.1 | |V | | | | | |75079 75079| +180853 |V0853 Cas |234913.4+545404 |M | 12.5 | 15.5 | |V | | | | | |75079 75079| +180854 |V0854 Cas |235209.2+663450 |M | 11.3 | 14.3 | |V | | | | | |75079 75079| +180855 |V0855 Cas |000529.3+525258 |M | 12.6 |< 16.0 | |V | | | | | |76002 76002| +180856 |V0856 Cas |000642.7+522733 |SR | 12.5 | 14.8 | |V | | | | | |76002 76002| +180857 |V0857 Cas |000939.8+531011 |M | 12.5 |< 15.2 | |V | | | | | |76002 76002| +180858 |V0858 Cas |001910.7+520203 |SR | 13.0 | 15.3 | |V | | | | | |76002 76002| +180859 |V0859 Cas |002120.7+512139 |M | 10.5 | 15.5 | |V | | | | | |76002 76002| +180860 |V0860 Cas |002649.0+494036 |EA | 12.4 | 13.8 | |V | | | | | |76002 76002| +180861 |V0861 Cas |003636.7+680120 |M | 7.5 | 10.8 | |I | | | | | |76006 76006| +180862 |V0862 Cas |003840.2+531611 |M | 11.0 |< 16.0 | |V | | | | | |76002 76002| +180863 |V0863 Cas |004328.4+644535 |WR | 10.54 |( 0.09 )| |V | | | | | |76007 76008| +180864 |V0864 Cas |004501.1+484104 |SRA | 10.7 | 13.1 | |V | | | | | |76002 76002| +180865 |V0865 Cas |004906.9+680548 |M | 9.7 | 11.6 | |I | | | | | |76006 76011| +180866 |V0866 Cas |004937.9+505642 |SR: | 11.7 | 12.9 | |V | | | | | |76012 GSC | +180867 |V0867 Cas |005628.4+604710 |M | 8.8 | 11.8 | |I | | | | | |76006 76011| +180868 |V0868 Cas |014638.0+610844 |EA: | 15.5 |( 0.14 I )| |B | | | | | |76017 76017| +180869 |V0869 Cas |014650.3+610647 |E: | 16.4 |( 0.55 I )| |B | | | | | |76017 76017| +180870 |V0870 Cas |232703.6+543715 |RRAB | 14.1 | 15.3 | |p | | | | | |76245 76248| +180871 |V0871 Cas |233417.3+555358 |DSCT | 12.5 |( 0.18 )| |V | | | | | |76250 GSC | +180872 |V0872 Cas |234132.5+512001 |EB | 13.8 | 14.4 | |p | | | | | |76245 76249| +180873 |V0873 Cas |235344.9+505919 |SRA | 13.5 | 15.3 | |V | | | | | |76002 76002| +180874 |V0874 Cas |235632.2+564418 |EA | 13.98 | 14.31 | |V | | | | | |76255 76255| +180875 |V0875 Cas |235638.7+564359 |EW: | 16.96 | 17.82 | |V | | | | | |76255 76255| +180876 |V0876 Cas |235650.1+564930 |EW: | 17.26 | 17.72 : | |V | | | | | |76255 76255| +180877 |V0877 Cas |235739.5+564100 |EW | 15.32 | 15.58 | |V | | | | | |76255 76255| +180878 |V0878 Cas |000052.9+622515 |DSCT | 15.6 | 16.0 | |B | | | | | |77001 77001| +180879 |V0879 Cas |000146.0+622528 |DCEP | 15.4 | 16.3 | |B | | | | | |77002 77002| +180880 |V0880 Cas |005533.9+682855 |SR: | 11.6 | 12.2 | |V | | | | | |77004 GSC | +180881 |V0881 Cas |005656.2+642701 |SR: | 12.9 | 13.9 | |V | | | | | |77004 USNO | +180882 |V0882 Cas |005718.6+672029 |SR: | 13.6 | 14.5 | |V | | | | | |77004 77010| +180883 |V0883 Cas |005742.7+640835 |SR: | 12.4 | 13.4 | |V | | | | | |77004 GSC | +180884 |V0884 Cas |005909.2+634850 |SR: | 10.5 | 12.4 | |V | | | | | |77004 77010| +180885 |V0885 Cas |010055.8+672042 |SR: | 12.4 | 13.5 | |V | | | | | |77004 GSC | +180886 |V0886 Cas |010119.8+684302 |SR: | 12.7 | 13.6 | |V | | | | | |77004 GSC | +180887 |V0887 Cas |010158.4+575949 |SR | 8.1 | 8.8 | |I | | | | | |77012 77013| +180888 |V0888 Cas |010527.4+655900 |SR: | 9.3 | 11.5 | |* | | | | | |77004 USNO | +180889 |V0889 Cas |010625.0+654802 |SR: | 11.8 | 12.6 | |V | | | | | |77004 GSC | +180890 |V0890 Cas |010744.6+590302 |M | 11.5 |< 14.0 | |* | | | | | |77004 GSC22| +180891 |V0891 Cas |011022.3+660713 |SR: | 11.8 | 12.7 | |V | | | | | |77004 GSC | +180892 |V0892 Cas |011234.4+655409 |SR: | 13.2 | 14.0 | |V | | | | | |77004 GSC | +180893 |V0893 Cas |011413.9+655137 |SR: | 11.5 | 12.6 | |V | | | | | |77004 GSC | +180894 |V0894 Cas |011511.8+663954 |SR: | 11.6 | 12.6 | |V | | | | | |77004 GSC | +180895 |V0895 Cas |011618.3+674523 |SR: | 10.8 | 11.6 | |V | | | | | |77004 GSC | +180896 |V0896 Cas |011916.4+661548 |SR: | 12.8 | 13.6 | |V | | | | | |77004 GSC | +180897 |V0897 Cas |012013.7+653127 |M | 11.0 |< 13.6 | |* | | | | | |77004 USNO | +180898 |V0898 Cas |012018.3+642807 |SR: | 12.8 | 13.8 | |V | | | | | |77004 77010| +180899 |V0899 Cas |012204.1+665012 |SR: | 11.5 | 12.2 | |V | | | | | |77004 GSC | +180900 |V0900 Cas |012300.7+643924 |SR: | 11.1 | 12.3 | |V | | | | | |77004 GSC | +180901 |V0901 Cas |012435.5+654101 |SR: | 11.1 | 12.1 | |V | | | | | |77004 GSC | +180902 |V0902 Cas |012558.4+632932 |SR: | 10.9 | 11.8 | |V | | | | | |77004 GSC22| +180903 |V0903 Cas |012752.4+674712 |SR: | 12.6 | 13.6 | |V | | | | | |77004 GSC | +180904 |V0904 Cas |012757.2+654322 |SR: | 12.6 | 13.4 | |V | | | | | |77004 GSC | +180905 |V0905 Cas |012935.1+650205 |SR: | 11.3 | 12.5 | |V | | | | | |77004 GSC | +180906 |V0906 Cas |013258.5+674854 |SR: | 13.4 | 14.2 | |V | | | | | |77004 GSC | +180907 |V0907 Cas |013456.9+672935 |SR: | 13.1 | 14.1 | |V | | | | | |77004 GSC22| +180908 |V0908 Cas |013620.4+583142 |SR: | 12.0 | 13.2 | |V | | | | | |77004 GSC | +180909 |V0909 Cas |013638.5+612554 |BCEP | 10.7 |( 0.19 )| |R | | | | | |77016 77016| +180910 |V0910 Cas |013701.3+611558 |SR: | 12.5 | 13.7 | |V | | | | | |77004 GSC | +180911 |V0911 Cas |013946.8+594230 |SR: | 12.1 | 13.0 | |V | | | | | |77004 GSC | +180912 |V0912 Cas |014008.3+645151 |SR: | 13.0 | 14.4 | |V | | | | | |77004 GSC | +180913 |V0913 Cas |014022.4+624022 |SR: | 12.5 | 13.5 | |V | | | | | |77004 GSC | +180914 |V0914 Cas |014118.9+633644 |SR: | 11.4 | 12.1 | |V | | | | | |77004 GSC | +180915 |V0915 Cas |014238.3+633632 |SR: | 11.5 | 12.4 | |V | | | | | |77004 GSC | +180916 |V0916 Cas |014301.8+632206 |SR: | 14.3 | 15.2 | |V | | | | | |77004 GSC | +180917 |V0917 Cas |014336.4+584808 |SR: | 10.5 | 11.2 | |V | | | | | |77004 GSC | +180918 |V0918 Cas |014358.3+584105 |SR: | 12.1 | 13.3 | |V | | | | | |77004 GSC | +180919 |V0919 Cas |014731.1+590320 |SR: | 14.0 |< 15.3 | |V | | | | | |77004 GSC | +180920 |V0920 Cas |014816.3+630707 |SR: | 10.4 | 11.2 | |V | | | | | |77004 GSC | +180921 |V0921 Cas |014919.8+561222 |SR: | 11.7 | 13.4 | |V | | | | | |77004 GSC | +180922 |V0922 Cas |015010.6+661339 |SR: | 10.8 | 11.6 | |V | | | | | |77004 GSC | +180923 |V0923 Cas |015615.9+600104 |SR: | 12.4 | 13.8 | |V | | | | | |77004 GSC22| +180924 |V0924 Cas |020057.1+583658 |SR: | 11.3 | 13.5 | |V | | | | | |77004 77010| +180925 |V0925 Cas |020300.5+583613 |SR: | 11.8 | 12.5 | |V | | | | | |77004 GSC | +180926 |V0926 Cas |020751.5+614057 |SR: | 13.2 | 14.3 | |V | | | | | |77004 GSC | +180927 |V0927 Cas |020815.8+591556 |SR: | 10.9 | 11.8 | |V | | | | | |77004 GSC | +180928 |V0928 Cas |021140.6+611426 |M: | 12.1 |< 14.1 | |* | | | | | |77004 GSC22| +180929 |V0929 Cas |021515.3+654220 |SR: | 12.2 | 13.3 | |V | | | | | |77004 GSC | +180930 |V0930 Cas |021520.5+621350 |SR: | 13.3 | 14.2 | |V | | | | | |77004 GSC | +180931 |V0931 Cas |021523.8+650140 |SR: | 12.8 | 13.5 | |V | | | | | |77004 GSC | +180932 |V0932 Cas |021533.5+641610 |SR: | 12.8 | 14.3 | |V | | | | | |77004 GSC | +180933 |V0933 Cas |022032.8+623202 |SR: | 11.7 | 13.8 | |V | | | | | |77004 GSC | +180934 |V0934 Cas |022114.9+664217 |SR: | 11.8 | 12.5 | |V | | | | | |77004 GSC | +180935 |V0935 Cas |022222.6+665129 |SR: | 12.9 | 14.0 | |V | | | | | |77004 GSC | +180936 |V0936 Cas |022231.4+665940 |SR: | 13.9 | 14.7 | |V | | | | | |77004 GSC | +180937 |V0937 Cas |022722.1+623826 |SR: | 13.7 | 14.5 | |V | | | | | |77004 GSC | +180938 |V0938 Cas |022911.7+665234 |SR: | 13.0 | 14.1 | |V | | | | | |77004 GSC | +180939 |V0939 Cas |023112.9+634020 |M | 14.5 | 16.5 | |I | | | | | |77012 77013| +180940 |V0940 Cas |023324.0+642502 |SR: | 13.3 | 14.1 | |V | | | | | |77004 GSC | +180941 |V0941 Cas |023404.7+605915 |SR: | 12.5 | 13.3 | |V | | | | | |77004 GSC | +180942 |V0942 Cas |023422.2+651849 |SR: | 12.8 | 13.6 | |V | | | | | |77004 GSC | +180943 |V0943 Cas |023440.2+630004 |SR: | 12.6 | 13.6 | |V | | | | | |77004 GSC | +180944 |V0944 Cas |023745.0+644857 |SR: | 13.0 | 13.9 | |V | | | | | |77004 GSC | +180945 |V0945 Cas |024029.3+621620 |SR: | 13.5 | 14.4 | |V | | | | | |77004 GSC22| +180946 |V0946 Cas |024419.4+644558 |DCEP | 12.6 | 13.4 | |B | | | | | |77024 GSC | +180947 |V0947 Cas |024726.8+635823 |M | 9.0 | 12.1 | |I | | | | | |77012 77013| +180948 |V0948 Cas |024856.2+670012 |SR: | 12.6 | 13.9 | |V | | | | | |77004 GSC | +180949 |V0949 Cas |024930.0+614237 |M: | 11.4 | 13.8 | |* | | | | | |77004 GSC | +180950 |V0950 Cas |025223.0+670755 |SR: | 13.2 | 14.8 | |V | | | | | |77004 GSC | +180951 |V0951 Cas |025310.2+661518 |SR: | 13.0 | 13.9 | |V | | | | | |77004 GSC | +180952 |V0952 Cas |030220.7+710940 |EA | 11.7 | 12.9 | |P | | | | | |77026 77027| +180953 |V0953 Cas |031224.1+600221 |M: | 12.1 |< 13.9 | |* | | | | | |77004 GSC22| +180954 |V0954 Cas |031335.0+594804 |M | 15.0 | 18.9 | |I | | | | | |77012 77013| +180955 |V0955 Cas |235137.2+630037 |M | 15.7 | 22.0 | |I | | | | | |77012 77013| +180956 |V0956 Cas |000505.4+593901 |IS: | 14.2 | 17.2 | |B | | | | | |78001 78002| +180957 |V0957 Cas |000945.7+503039 |SR: | 11.6 | 12.8 | |* | | | | | |78006 USNO | +180958 |V0958 Cas |001048.5+572927 |SR: | 8.8 | 9.8 | |* | | | | | |78006 GSC | +180959 |V0959 Cas |001202.7+550519 |EW | 12.0 | 12.6 | |* |51335.8533 | | 1.0652 | | |78006 GSC | +180960 |V0960 Cas |001950.4+474238 |SR | 11.5 | 12.3 | |* | | | 130. : | | |78006 USNO | +180961 |V0961 Cas *|002649.3+552724 |EB | 12.0 |( 0.40 )|( 0.22 )|V |52668.3556 | | 0.75986 | | |78010 GSC | +180962 |V0962 Cas *|003539.5+545545 |EA | 12.93 | 13.51 | 13.42 |* |53002.1207 | | 2.7129 | | |78214 78214| +180963 |V0963 Cas |004422.5+572627 |SR: | 12.3 | 13.8 | |* | | | | | |78006 USNO | +180964 |V0964 Cas |004959.3+525635 |SR: | 12.3 | 13.1 | |* | | | 110. : | | |78006 USNO | +180965 |V0965 Cas |005540.9+673432 |SR: | 14.4 | 16.2 | |* | | | | | |78006 2MASS| +180966 |V0966 Cas |010257.2+691337 |BY | 7.67 |( 0.02 )| |V | | | 12.165 | |G5V |78018 DM | +180967 |V0967 Cas |011100.0+670955 |SRA | 12.3 | 14.3 | |* |51475 | | 256. : | | |78006 USNO | +180968 |V0968 Cas |011847.2+560136 |SR | 12.9 | 13.7 | |* | | | 80. : | | |78006 USNO | +180969 |V0969 Cas |014346.9+615141 |EA/RS | 13.18 |( 0.21 I )| |V |49938.523 | | 2.5409 : | | |78025 78025| +180970 |V0970 Cas |014357.4+674747 |LB: | 13.1 | 14.5 | |* | | | | | |78006 2MASS| +180971 |V0971 Cas *|014412.0+615219 |EA/RS: | 14.43 |( 0.77 I )|( 0.36 )|V |49641.5930 | | 7.695 | | |78025 78025| +180972 |V0972 Cas |014518.0+610657 |BE | 9.90 |( 0.39 Ic)| |Rc| | | | | |78026 DM | +180973 |V0973 Cas |014537.8+610759 |BE | 12.97 |( 0.09 Ic)| |Rc| | | | | |78026 GSC | +180974 |V0974 Cas |014539.6+611259 |BE | 12.09 |( 0.10 Ic)| |Rc| | | | | |78026 GSC | +180975 |V0975 Cas |014546.4+610921 |BE | 11.77 |( 0.10 Ic)| |Rc| | | | | |78026 GSC | +180976 |V0976 Cas |014556.1+611246 |BE | 11.58 |( 0.20 Ic)| |Rc| | | | | |78026 GSC | +180977 |V0977 Cas |014559.3+611246 |BE | 10.23 |( 0.20 Ic)| |Rc| | | | | |78026 DM | +180978 |V0978 Cas |014606.1+611339 |BE | 11.11 |( 0.25 Ic)| |Rc| | | | | |78026 DM | +180979 |V0979 Cas |014614.0+611344 |BE | 12.85 |( 0.10 Ic)| |Rc| | | | | |78026 GSC | +180980 |V0980 Cas |014620.2+611422 |BE | 11.44 |( 0.15 Ic)| |Rc| | | | | |78026 GSC | +180981 |V0981 Cas |014626.8+610742 |BE | 10.20 |( 0.15 Ic)| |Rc| | | | | |78026 DM | +180982 |V0982 Cas |014626.9+611412 |BE | 11.90 |( 0.12 Ic)| |Rc| | | 0.67298 | | |78026 GSC | +180983 |V0983 Cas |014627.7+611226 |BE | 10.34 |( 0.35 Ic)| |Rc| | | | | |78026 GSC | +180984 |V0984 Cas |014630.6+611429 |BE | 11.66 |( 0.42 Ic)| |Rc| | | | | |78026 GSC | +180985 |V0985 Cas |014635.5+611548 |BE | 9.85 |( 0.36 Ic)| |Rc| | | | | |78026 DM | +180986 |V0986 Cas |014703.7+611732 |BE | 12.07 |( 0.05 Ic)| |Rc| | | | | |78026 GSC | +180987 |V0987 Cas |014744.8+635109 |BY | 5.63 |( 0.05 )| |V | | | 21.7 | |K0V |78005 DM | +180988 |V0988 Cas |020040.2+583137 |ACVO | 8.54 |( 0.02 )| |B | | | 0.00528 | |F0 |78032 DM | +180989 |V0989 Cas |021542.5+674020 |BY | 7.13 |( 0.03 )| |V | | | 6.79 | |K2V |78018 DM | +180990 |V0990 Cas *|021641.8+671702 |* | 7.03 |( 0.02 )| |V | | | 7.48 : | |K4II |78018 DM | +180991 |V0991 Cas |031658.1+670245 |M | 12.2 | 15.0 | |* |52215 :| | 430. : | | |78006 2MASS| +180992 |V0992 Cas |230124.6+591225 |M: | 13.0 | 16.2 | |* | | | | | |78006 2MASS| +180993 |V0993 Cas |230149.8+591902 |SR: | 11.3 | 12.2 | |* |51500 | | | | |78006 2MASS| +180994 |V0994 Cas |231833.8+573738 |SR: | 12.7 | 15.0 | |* | | | | | |78006 2MASS| +180995 |V0995 Cas |233331.9+591832 |LB: | 14.1 | 16.4 | |* | | | | | |78006 2MASS| +180996 |V0996 Cas |234134.0+593528 |SR | 11.8 | 13.3 | |* |51384 | | 260. : | | |78006 2MASS| +180997 |V0997 Cas |234443.6+611658 |DCEP | 14.8 | 15.8 | |B |42486.26 | | 7.67786 |35 | |78313 GSC | +180998 |V0998 Cas |234640.9+592634 |SR: | 12.6 | 13.9 | |* |51473 | | | | |78006 2MASS| +180999 |V0999 Cas |234703.9+591557 |SR: | 13.2 | 14.4 | |* |51320 | | | | |78040 2MASS| +181000 |V1000 Cas |234943.8+571312 |M | 12.5 | 15.2 | |* |51450 | | | | |78006 2MASS| +181001 |V1001 Cas *|235017.1+511129 |EA | 13.6 | 14.7 | 14.0 |* |52937.0855 | | 0.4288 |15 | |78214 78214| +181002 |V1002 Cas *|232009.2+630123 |EA/SD | 16.3 | 17.5 | 16.5 |B |40059.405 | | 1.6458435 |10 | |07920 00163| +181003 |V1003 Cas |021134.5+590606 |LB | 14.0 | 14.6 | |p | | | | |M6 |00911 02340| +181004 |V1004 Cas |000719.1+641700 |EA | 12.80 | 13.3 : | 13.3 : |* |51378.760 | | 1.18185 |16 | |79001 79002| +181005 |V1005 Cas |000725.3+632057 |EA | 12.59 | 13.20 | 12.80 |* |51421.720 | | 11.038 | | |79004 79144| +181006 |V1006 Cas *|000737.5+533136 |GDOR | 8.37 |( 0.13 )| |V | | | 0.9004 | |F2V |79111 DM | +181007 |V1007 Cas |000803.3+510803 |EW | 12.00 | 12.44 | 12.41 |* |51324.849 | | 0.332004 | | |79004 79005| +181008 |V1008 Cas |002116.2+481106 |LB | 9.5 | 9.8 | |* | | | | | |79100 GSC | +181009 |V1009 Cas |005109.9+560459 |EB | 12.30 | 12.65 | 12.50 |* |51486.57 | | 0.7845 | | |79025 79008| +181010 |V1010 Cas |005757.0+600615 |EA | 9.51 | 9.92 | 9.90 : |* |51482.637 | | 2.398 |09 |A2V |79009 DM | +181011 |V1011 Cas |010415.0+623216 |EB | 12.57 | 13.0 | 12.75 |* |51415.814 | | 0.67708 | | |79004 79008| +181012 |V1012 Cas *|011253.9+513609 |GDOR | 7.68 |( 0.06 )| |B | | | 0.5486 | |F1V |79219 DM | +181013 |V1013 Cas |012142.4+614607 |DCEP | 12.6 | 13.1 | |* |51546.5 | | 3.76 |30 | |79012 79013| +181014 |V1014 Cas |012836.5+523732 |EB | 12.6 | 13.3 | 13.1 |* |51497.062 | | 0.8553 | | |79025 79014| +181015 |V1015 Cas |014206.4+704340 |EA | 11.80 | 12.55 : | 11.9 |* |51343.082 | | 4.922 |08 | |79004 79016| +181016 |V1016 Cas |014316.8+595951 |DCEP | 12.27 | 12.70 | |* |51495.29 | | 3.845 |25 | |79025 79144| +181017 |V1017 Cas |021424.8+653558 |DCEP | 11.8 | 12.4 | |* |51522.7 | | 5.03 |20 | |79012 79185| +181018 |V1018 Cas *|030119.4+603420 |EA | 10.26 | 10.56 | 10.52 |* |51601.625 | | 4.1278 |10 |O7V |79004 GSC | +181019 |V1019 Cas |231751.6+620805 |DCEPS | 10.9 | 11.1 | |* |51573.0 | | 3.62 |50 |F6: |79012 79142| +181020 |V1020 Cas |233239.0+630409 |DCEP | 12.13 | 12.65 | |* |51551.2 | | 4.74 |28 | |79012 79089| +181021 |V1021 Cas |233524.0+615012 |EA | 12.98 | 13.6 | 13.6 |* |51452.60 | | 1.924 |13 | |79001 79002| +181022 |V1022 Cas *|235708.5+554221 |EA | 5.56 | 5.68 | 5.59 : |Hp|49040.829 | | 12.1564 |04 : |F1/6V+F3V |79213 DM | +181023 |V1023 Cas |000006.7+563912 |RRAB | 18.13 | 18.75 | |V | | | 0.6437 |17 | |80004 80004| NL80_1 +181024 |V1024 Cas |000039.4+564529 |EW | 17.65 | 17.78 | |V | | | 0.3354 | | |80004 80004| NL80_1 +181025 |V1025 Cas *|000138.5+525414 |EA | 12.68 | 13.15 | 12.82 |* |53294.0289 | | 1.0996 |14 | |80008 80008| NL80_1 +181026 |V1026 Cas *|000701.9+644405 |DSCTC | 8.73 |( 0.06 )| |V | | | 0.160018 | |A5 |80014 DM | NL80_1 +181027 |V1027 Cas *|001045.6+612756 |EA | 13.55 | 14.03 | 13.90 |V |54404.8586 | | 2.7172 |12 |A9V |80009 GSC | NL80_1 +181028 |V1028 Cas |001201.9+603751 |LB | 12.5 | 13.5 | |* | | | | |M6.5 |80018 80018| NL80_1 +181029 |V1029 Cas |001842.8+540221 |CWA | 13.4 | 14.4 | |* |51339.9 | | 15.51 |57 | |80028 80028| NL80_1 +181030 |V1030 Cas *|001936.6+483955 |EW | 13.8 | 14.25 | 14.15 |* |51390.564 | | 0.30421 | | |80025 80025| NL80_1 +181031 |V1031 Cas *|002114.4+660509 |EW | 12.75 | 13.25 | 13.1 |* |51415.005 | | 0.43062 | | |80032 80032| NL80_1 +181032 |V1032 Cas *|002217.2+464937 |EA | 12.3 | 12.7 | 12.5 |* |51498.130 | | 3.3579 |11 | |80024 80024| NL80_1 +181033 |V1033 Cas |002257.6+614108 |NL | 16.4 | 16.9 | |Rc| | | 0.0066 | |pec(e) |80035 80035| NL80_1 +181034 |V1034 Cas |002511.0+513531 |RRAB | 13.30 | 14.04 | |* |51540.62 | | 0.48325 |16 | |80026 GSC | NL80_1 +181035 |V1035 Cas |002759.0+490945 |RRC | 12.22 | 12.62 | |* |51541.62 | | 0.39202 | | |80026 GSC | NL80_1 +181036 |V1036 Cas *|002817.1+634406 |INT: | 9.40 |( 0.10 )| |V | | | | |G0 |80039 HIP | NL80_1 +181037 |V1037 Cas *|002903.0+593419 |XP | 17.2 | 22. | |i'| | | | | |80040 80040| NL80_1 +181038 |V1038 Cas *|002953.0+475034 |EB | 9.89 | 10.10 | 10.05 |* |51542.625 | | 20.30 | | |80042 DM | NL80_1 +181039 |V1039 Cas |003026.4+684259 |SRB | 10.0 | 10.3 | |* | | | 43. | | |80001 80044| NL80_1 +181040 |V1040 Cas |003148.1+570134 |DSCT: | 14.8 |( 0.4 )| |R |53671.422 | | 0.0733 | | |80046 80046| NL80_1 +181041 |V1041 Cas |003254.2+470849 |RRAB | 12.73 | 13.39 | |* |51443.72 | | 0.56741 | | |80026 GSC | NL80_1 +181042 |V1042 Cas |003432.3+512900 |SRA: | 11.0 | 11.7 | |* |51575. | | 180. : | | |80001 GSC | NL80_1 +181043 |V1043 Cas *|003711.9+530133 |EA | 13.29 | 14.18 | 13.5 |* |53300.9578 | | 0.6616 |12 | |80008 80008| NL80_1 +181044 |V1044 Cas *|003956.3+674255 |EA: | 9.50 | 9.83 | 9.63 |* |51425.74 | | 3.5791 |30 : |B5 |80011 DM | NL80_1 +181045 |V1045 Cas |004043.6+765849 |RRAB | 12.98 | 14.03 | |* |51505.61 | | 0.45746 | | |80026 GSC | NL80_1 +181046 |V1046 Cas *|004044.2+585054 |EA | 11.6 | 12.8 | 11.7 : |B |44377.35 | | 0.9805 |13 | |80053 80053| NL80_1 +181047 |V1047 Cas |004201.5+541505 |RRC | 11.14 | 11.47 | |* |51413.66 | | 0.33440 | | |80026 GSC | NL80_1 +181048 |V1048 Cas |004430.6+564551 |SR | 9.81 | 10.00 | |V | | | 57.61 | | |80057 DM | NL80_1 +181049 |V1049 Cas |004525.0+580552 |EA | 11.0 | 11.43 | |* |51483.697 | | 2.98128 |20 | |80013 GSC | NL80_1 +181050 |V1050 Cas |004534.3+561627 |LB | 11.29 | 11.85 | |V | | | | | |80057 GSC | NL80_1 +181051 |V1051 Cas |004611.8+571306 |LB | 10.81 | 11.13 | |V | | | | | |80057 GSC | NL80_1 +181052 |V1052 Cas |004623.6+631937 |DSCTC | 11.31 | 11.35 | |V | | | 0.127 | | |80059 80059| NL80_1 +181053 |V1053 Cas *|004712.7+610204 |EW | 15.2 | 15.8 | 15.7 |R |54008.5783 | | 0.649435 | | |80061 80061| NL80_1 +181054 |V1054 Cas *|004820.8+591647 |LB | 11.1 | 11.5 | |* | | | | |M5 |80062 GSC | NL80_1 +181055 |V1055 Cas |004821.0+711611 |BY | 11.30 |( 0.08 )| |V | | | 9.517 | |G |80039 GSC | NL80_1 +181056 |V1056 Cas *|005100.2+584836 |EB | 13.7 | 14.2 : | 14.0 : |* |52974.5862 | | 0.7427 | | |80065 80065| NL80_1 +181057 |V1057 Cas |005153.0+651050 |RRC: | 10.28 | 10.52 | |* |51459.61 | | 0.42333 | |F4II |80026 GSC | NL80_1 +181058 |V1058 Cas |005158.2+535141 |DSCTC | 14.02 |( 0.04 )| |V | | | 0.06695 | |A |80066 80066| NL80_1 +181059 |V1059 Cas |005436.0+743141 |RRAB: | 10.52 | 10.73 | |* |51401.76 | | 0.64968 |32 | |80026 GSC | NL80_1 +181060 |V1060 Cas *|005514.3+612349 |EA | 10.02 | 10.45 | 10.42 |* |51339.87 | | 1.81603 |13 |A2 |80011 DM | NL80_1 +181061 |V1061 Cas *|005613.7+650716 |EA | 10.21 | 10.59 | 10.50 |* |51390.705 | | 3.6493 |15 | |80011 DM | NL80_1 +181062 |V1062 Cas *|010209.2+595543 |EB | 10.55 | 10.87 | 10.8 |* |51554.484 | | 1.1644 | |F0V |80024 80024| NL80_1 +181063 |V1063 Cas *|010447.3+760614 |EW | 11.6 | 12.3 | 12.3 |* |51578.7522 | | 0.6200 | | |80016 80016| NL80_1 +181064 |V1064 Cas *|010759.9+633743 |EW | 11.30 | 11.80 | 11.73 |* |51349.919 | | 0.457606 | |B2 |80042 GSC | NL80_1 +181065 |V1065 Cas *|010928.9+683915 |EA/RS | 9.92 | 10.15 | 10.14 |* |51608.823 | | 13.651 |09 | |80042 DM | NL80_1 +181066 |V1066 Cas *|011055.2+580556 |EA | 10.81 | 11.06 | 11.06 |* |51548.650 | | 8.4650 |06 : | |80023 DM | NL80_1 +181067 |V1067 Cas *|011301.2+744354 |EB | 12.2 | 13.15 | 12.9 |* |51608.517 | | 0.41324 | | |80032 80032| NL80_1 +181068 |V1068 Cas *|011414.2+525439 |EA | 14.58 | 16.20 | 14.78 |* |53209.2340 | | 1.8060 |11 | |80008 80008| NL80_1 +181069 |V1069 Cas *|011508.6+543934 |EW | 12.52 | 12.75 | 12.72 |* |51581.870 | | 0.40903 | | |80032 80032| NL80_1 +181070 |V1070 Cas *|011559.0+524640 |EA | 10.44 | 10.80 | 10.47 |* |51460.635 | | 4.4745 |05 | |80013 DM | NL80_1 +181071 |V1071 Cas |011616.4+741341 |RV: | 11.6 | 11.85 | |* |51463. | | 96.7 | | |80028 80028| NL80_1 +181072 |V1072 Cas |011616.6+633153 |BE | 11.7 | 11.9 | |* | | | | |Be |80077 80077| NL80_1 +181073 |V1073 Cas *|011702.5+575632 |DCEPS: | 15.71 | 15.83 | |V |54442.1118 | | 7.845039 | | |80078 2MASS| NL80_1 +181074 |V1074 Cas *|011708.7+582828 |DSCT: | 16.54 | 16.67 | |V | | | 0.171418 | | |80078 2MASS| NL80_1 +181075 |V1075 Cas *|011712.9+585000 |LB: | 13.60 | 13.90 | |V | | | | | |80078 GSC | NL80_1 +181076 |V1076 Cas *|011734.0+580923 |EW | 15.68 | 15.97 | 15.97 |V |54416.0145 | | 0.381185 | | |80078 2MASS| NL80_1 +181077 |V1077 Cas *|011749.8+582431 |EW | 14.73 | 15.58 | 15.5 |V |54416.0161 | | 0.260823 | | |80078 2MASS| NL80_1 +181078 |V1078 Cas |011751.4+581524 |DSCTC | 15.40 | 15.47 | |V | | | 0.048419 | | |80078 2MASS| NL80_1 +181079 |V1079 Cas *|011757.5+582750 |EB | 15.83 | 16.00 | 15.90 |V |54415.8081 | | 0.283611 | | |80078 2MASS| NL80_1 +181080 |V1080 Cas *|011805.4+575752 |EA | 14.10 | 14.58 | 14.5 |V |54419.8162 | | 2.571928 |07 | |80078 2MASS| NL80_1 +181081 |V1081 Cas *|011811.0+583201 |EW | 16.71 | 17.07 | 17.07 |V |54416.0459 | | 0.374246 | | |80078 2MASS| NL80_1 +181082 |V1082 Cas *|011841.3+580757 |LB | 13.35 | 13.65 | |V | | | | | |80078 GSC | NL80_1 +181083 |V1083 Cas *|011848.2+583139 |DCEPS | 13.97 | 14.13 | |V |54458.0865 | | 4.078303 |40 : | |80078 2MASS| NL80_1 +181084 |V1084 Cas *|011849.2+582353 |EA | 13.55 | 13.99 | 13.8 |V |54439.2008 | | 1.720430 |09 | |80078 2MASS| NL80_1 +181085 |V1085 Cas *|011902.0+581010 |LB | 12.45 | 12.80 | |V | | | | | |80078 GSC | NL80_1 +181086 |V1086 Cas |011902.4+581920 |LPB: | 11.75 | 11.95 | |V | | | | |B5 |80078 GSC | NL80_1 +181087 |V1087 Cas *|011908.3+580419 |DCEPS | 14.61 | 14.87 | |V |54418.6319 | | 1.824432 |30 : | |80078 2MASS| NL80_1 +181088 |V1088 Cas *|011917.2+574559 |DSCT | 15.70 | 15.83 | |V | | | 0.194762 | | |80078 G2.3 | NL80_1 +181089 |V1089 Cas |011922.8+710255 |LB | 12.4 | 13.3 | |* | | | | | |80062 GSC | NL80_1 +181090 |V1090 Cas *|011929.5+581341 |EW | 16.33 | 16.54 | 16.5 |V |54415.7227 | | 0.297507 | | |80078 2MASS| NL80_1 +181091 |V1091 Cas |011939.9+670905 |LB | 13.1 | 14.0 | |* | | | | | |80062 2MASS| NL80_1 +181092 |V1092 Cas *|011952.1+584458 |RR: | 15.34 | 15.45 | |V |54417.4587 | | 0.888248 | | |80078 2MASS| NL80_1 +181093 |V1093 Cas *|012014.9+581436 |EW | 14.54 | 14.83 | 14.8 |V |54415.8838 | | 0.554334 | | |80078 GSC | NL80_1 +181094 |V1094 Cas *|012023.1+591716 |EW | 12.1 | 12.4 | 12.35 : |* |54389.5032 | | 0.514270 | | |80080 GSC | NL80_1 +181095 |V1095 Cas *|012023.9+575727 |RRAB | 15.15 | 15.77 | |V |54416.7453 | | 0.602602 |15 | |80078 2MASS| NL80_1 +181096 |V1096 Cas *|012037.9+583439 |EB | 14.95 | 15.67 | 15.2 |V |54416.8896 | | 0.552955 | | |80078 2MASS| NL80_1 +181097 |V1097 Cas *|012038.1+574911 |LB | 13.54 | 13.82 | |V | | | | | |80078 GSC | NL80_1 +181098 |V1098 Cas *|012043.5+582822 |EA | 16.72 | 16.89 | 16.8 : |V |54418.0380 | | 1.58797 |16 | |80078 2MASS| NL80_1 +181099 |V1099 Cas *|012048.8+583113 |DCEP: | 15.27 | 15.47 | |V |54442.7258 | | 14.44783 |40 : | |80078 2MASS| NL80_1 +181100 |V1100 Cas |012121.1+640603 |DCEP | 11.5 | 12.0 | |* |51447.3 | | 4.71 |22 | |80081 GSC | NL80_1 +181101 |V1101 Cas *|012145.8+580122 |EW | 16.21 | 16.65 | 16.6 |V |54415.8258 | | 0.320205 | | |80078 2MASS| NL80_1 +181102 |V1102 Cas *|012155.6+580611 |CWB: | 13.79 | 13.93 | |V |54439.5650 | | 1.168862 | | |80078 GSC | NL80_1 +181103 |V1103 Cas *|012159.2+583314 |EA | 11.38 | 11.95 : | 11.95 : |* |51556.605 | | 6.1772 |09 |B0 |80023 GSC | NL80_1 +181104 |V1104 Cas *|012204.5+583811 |EA | 13.86 | 14.38 | |V |54418.7578 | | 3.953425 : | | |80078 GSC | NL80_1 +181105 |V1105 Cas *|012223.0+582408 |DSCTC | 14.76 | 14.83 | |V | | | 0.063837 | | |80078 2MASS| NL80_1 +181106 |V1106 Cas *|012231.9+734509 |EA | 12.88 | 13.25 | 13.05 |* |51612.599 | | 0.97410 |10 | |80013 GSC | NL80_1 +181107 |V1107 Cas *|012314.6+613453 |EW | 13.0 | 13.6 | 13.5 |* |53215.441 | | 0.273406 | | |80001 GSC | NL80_1 +181108 |V1108 Cas |012346.4+584054 |SRB | 12.05 | 12.7 | |* | | | 58. | | |80001 GSC | NL80_1 +181109 |V1109 Cas |012622.2+731311 |RRAB | 12.67 | 13.47 | |* |51414.73 | | 0.43612 | | |80026 GSC | NL80_1 +181110 |V1110 Cas *|013005.4+734532 |EA | 10.55 | 10.91 | 10.7 : |* |51478.660 | | 24.850 |02 : | |80023 DM | NL80_1 +181111 |V1111 Cas |013206.5+604527 |DSCTC | 16.97 | 17.01 | |V | | | 0.1100 | | |80086 80086| NL80_1 +181112 |V1112 Cas *|013210.7+663459 |EA | 11.48 | 11.85 : | |* |51378.632 | | 2.12893 |10 | |80013 GSC | NL80_1 +181113 |V1113 Cas |013211.1+603547 |DSCTC | 15.15 | 15.17 | |V | | | 0.1239 | | |80086 80086| NL80_1 +181114 |V1114 Cas *|013213.2+603456 |EW | 18.7 | 19.0 | 19.0 |V |53405.680 | | 0.3555 | | |80086 80086| NL80_1 +181115 |V1115 Cas *|013220.8+551357 |EW | 13.7 | 14.3 | 14.2 |R |53388.369 | | 0.32329 | | |80087 80087| NL80_1 +181116 |V1116 Cas |013237.0+615812 |BCEP | 9.35 | 9.45 | |V | | | 0.67410 |30 |B0.5III |80057 DM | NL80_1 +181117 |V1117 Cas |013251.2+604533 |DSCTC | 15.76 | 15.78 | |V | | | 0.0282 | | |80086 80086| NL80_1 +181118 |V1118 Cas |013254.8+604245 |DSCTC | 15.82 | 15.87 | |V | | | 0.0736 : | | |80086 80086| NL80_1 +181119 |V1119 Cas |013259.6+604938 |DSCTC | 13.98 | 14.07 | |V | | | 0.0725 | | |80086 80086| NL80_1 +181120 |V1120 Cas *|013307.1+604751 |EA | 16.90 | 17.60 | 17.2 |V |53365.760 | | 1.2410 |09 | |80086 80086| NL80_1 +181121 |V1121 Cas *|013311.9+605131 |EW | 18.2 | 18.5 | 18.45 : |V |53405.650 | | 0.2915 | | |80086 80086| NL80_1 +181122 |V1122 Cas *|013315.2+604100 |BE | 9.63 |( 0.44 )| |I | | | | |B5V |80088 80088| NL80_1 +181123 |V1123 Cas *|013316.3+603802 |EA | 10.91 |( 0.20 )|( 0.11 )|I |51427.8223 | | 4.5020 : |08 |B2V |80088 80088| NL80_1 +181124 |V1124 Cas |013316.9+605018 |DSCTC | 15.94 | 15.98 | |V | | | 0.1463 | | |80086 80086| NL80_1 +181125 |V1125 Cas *|013329.8+604711 |EW | 17.00 | 17.75 | 17.65 |V |53366.690 | | 0.3525 | | |80086 80086| NL80_1 +181126 |V1126 Cas |013331.9+603624 |GDOR: | 16.71 | 16.80 | |V | | | 0.3551 | | |80086 80086| NL80_1 +181127 |V1127 Cas |013332.3+603930 |GDOR | 13.09 |( 0.11 )| |I | | | 0.6751 | | |80088 80088| NL80_1 +181128 |V1128 Cas |013333.2+613330 |SRC | 8.51 | 8.74 | |V | | | 92.6 | |M1.5Ib |80057 DM | NL80_1 +181129 |V1129 Cas |013335.6+604039 |SRS | 10.41 |( 0.08 )| |I | | | 1.1494 | | |80088 80088| NL80_1 +181130 |V1130 Cas |013336.8+603756 |EA | 13.83 |( 0.21 )| |I |51426.7624 | | 1.6888 : |07 | |80088 80088| NL80_1 +181131 |V1131 Cas *|013341.5+744545 |EA | 12.25 | 12.60 | 12.54 |* |51532.61 | | 9.7814 |05 | |80013 GSC | NL80_1 +181132 |V1132 Cas |013345.5+603723 |GDOR | 8.24 | 8.30 | |I | | | 0.62576 | |FOV |80HIP 80088| NL80_1 +181133 |V1133 Cas *|013354.0+604026 |EA | 13.47 | 14.02 | 13.62 : |V |53370.550 | | 2.0278 |07 | |80086 80086| NL80_1 +181134 |V1134 Cas *|013358.4+603102 |EB | 18.94 | 19.50 | 19.34 |V |53405.620 | | 0.4514 | | |80086 80086| NL80_1 +181135 |V1135 Cas *|013415.4+604219 |EW | 18.45 | 18.85 | 18.85 |V |53365.760 | | 0.4464 | | |80086 80086| NL80_1 +181136 |V1136 Cas *|013426.8+603511 |EW | 16.67 | 16.78 | 16.77 |V |53405.660 | | 0.7080 | | |80086 80086| NL80_1 +181137 |V1137 Cas *|013453.9+673815 |EA | 11.85 | 12.39 | 12.28 |* |54763.3379 | | 4.15907 |06 | |80209 GSC | NL80_1 +181138 |V1138 Cas *|013516.7+564439 |EA | 13.1 | 13.6 | 13.4 |R |52618.349 | | 0.798267 |13 | |80087 80087| NL80_1 +181139 |V1139 Cas *|013544.5+554113 |EW | 12.8 |( 0.43 )|( 0.30 )|* |51867.348 | | 0.29710 | | |80046 80046| NL80_1 +181140 |V1140 Cas |013621.5+685228 |EA | 12.82 | 13.2 | |* |51443.764 | | 3.8347 |08 | |80013 GSC | NL80_1 +181141 |V1141 Cas *|013818.0+610835 |EA | 12.28 | 12.93 | 12.76 |* |51542.702 | | 6.9092 |08 |B1V: |80023 GSC | NL80_1 +181142 |V1142 Cas *|014332.2+640215 |ELL: | 11.10 | 11.15 | 11.15 |V | | | 1.48632 | | |80094 80094| NL80_1 +181143 |V1143 Cas |014335.6+640207 |BCEP | 11.30 | 11.45 | |V | | | 0.189991 | | |80094 80094| NL80_1 +181144 |V1144 Cas |014408.1+603920 |EA | 16.00 |( 0.14 I )| |V |50540.415 | | | | |80095 80095| NL80_1 +181145 |V1145 Cas |014419.7+603929 |GDOR | 15.98 |( 0.13 I )| |V | | | 0.8319 | | |80095 80095| NL80_1 +181146 |V1146 Cas |014422.7+604044 |BE | 12.38 |( 0.24 I )| |V | | | | |ea |80095 80095| NL80_1 +181147 |V1147 Cas |014428.1+604003 |BE | 10.69 |( 0.12 I )| |V | | | | |Be |80095 80095| NL80_1 +181148 |V1148 Cas |014429.9+604027 |GDOR | 14.62 |( 0.07 I )| |V | | | 2.0325 | | |80095 80095| NL80_1 +181149 |V1149 Cas |014433.2+604056 |BE | 12.86 |( 0.14 I )| |V | | | | |Be |80095 80095| NL80_1 +181150 |V1150 Cas |014442.6+604017 |GDOR | 14.09 |( 0.08 I )| |V | | | 2.5452 | | |80095 80095| NL80_1 +181151 |V1151 Cas |014544.0+610646 |RRAB | 18.2 |( 0.6 I )| |R |50171.319 | | 0.614 |15 | |80097 80097| NL80_1 +181152 |V1152 Cas |014626.6+611706 |ELL | 13.37 |( 0.03 )| |Ic| | | 1.3077 | | |80098 80098| NL80_1 +181153 |V1153 Cas |014629.0+611613 |LPB | 13.52 |( 0.03 )| |Ic| | | 0.6698 | | |80098 80098| NL80_1 +181154 |V1154 Cas |014631.5+650135 |DCEP | 10.8 | 11.1 | |* |51492.0 | | 2.113 |35 | |80081 GSC | NL80_1 +181155 |V1155 Cas *|014639.0+611406 |BCEP | 10.41 |( 0.04 )| |I | | | 0.194047 | |B5 |80098 80098| NL80_1 +181156 |V1156 Cas *|014639.8+610952 |BCEP | 11.72 |( 0.03 )| |I | | | 0.27640 | | |80098 80098| NL80_1 +181157 |V1157 Cas |014640.8+611845 |ELL | 13.09 |( 0.11 )| |I | | | 0.5760 | | |80098 80098| NL80_1 +181158 |V1158 Cas |014914.5+765512 |SRA | 13.0 | 13.6 | |* |51615. | | 63. | | |80001 USNO | NL80_1 +181159 |V1159 Cas *|015108.2+744832 |EA | 11.82 |< 12.2 | 11.91 |* |51541.84 | | 14.068 |09 | |80013 GSC | NL80_1 +181160 |V1160 Cas *|015639.2+721947 |EA | 11.68 | 12.0 | 12.0 |* |51490.875 | | 2.13318 |10 | |80013 GSC | NL80_1 +181161 |V1161 Cas |015812.8+733239 |LB | 12.8 | 13.6 | |* | | | | | |80062 USNO | NL80_1 +181162 |V1162 Cas *|020831.9+680615 |EA | 11.06 | 11.78 | 11.67 |* |51427.630 | | 29.067 | | |80023 GSC | NL80_1 +181163 |V1163 Cas |021426.6+594512 |GCAS | 10.8 | 11.3 | |* | | | | |Be |80111 80111| NL80_1 +181164 |V1164 Cas *|021757.8+705812 |EA | 12.23 | 12.73 | 12.27 : |* |51582.61 | | 3.7134 |09 | |80013 GSC | NL80_1 +181165 |V1165 Cas |022722.4+643529 |LB | 12.45 | 13.10 | |* | | | | | |80062 USNO | NL80_1 +181166 |V1166 Cas *|023209.6+613824 |EA | 11.65 | 12.35 | 11.80 |* |51460.630 | | 1.3210 |14 |B2V |80033 80033| NL80_1 +181167 |V1167 Cas |023524.5+644504 |SR | 12.74 | 13.30 | |* | | | 55. | | |80001 USNO | NL80_1 +181168 |V1168 Cas |024012.9+642319 |RV: | 12.5 | 13.0 | |* |51476. | | 172. | | |80001 GSC | NL80_1 +181169 |V1169 Cas |024014.4+610917 |RS: | 14.45 |( 0.03 )| |V | | | 4.686 | |KOIII:p |80124 80124| NL80_1 +181170 |V1170 Cas *|024731.1+582006 |EW | 11.15 | 11.49 | 11.47 |* |51421.708 | | 0.960968 | |B5 |80042 GSC | NL80_1 +181171 |V1171 Cas |025057.7+753400 |LB | 10.64 | 11.00 | |* | | | | | |80100 GSC | NL80_1 +181172 |V1172 Cas *|025523.2+631653 |EA | 12.58 | 13.25 | 12.8 |* |51409.87 | | 9.3685 |12 | |80013 GSC | NL80_1 +181173 |V1173 Cas |025826.1+720019 |SR | 12.5 | 13.2 | |* | | | 56. | | |80001 GSC | NL80_1 +181174 |V1174 Cas *|031622.5+761719 |EA | 12.75 | 13.2 | 12.85 |* |51576.59 | | 13.382 |03 : | |80013 GSC | NL80_1 +181175 |V1175 Cas *|032126.5+732608 |EA | 9.78 | 10.25 | 10.22 : |* |51602.607 | | 3.4572 |06 | |80042 DM | NL80_1 +181176 |V1176 Cas *|032449.2+772012 |EA | 11.18 | 11.72 | 11.7 : |* |51572.752 | | 6.3344 |04 | |80023 GSC | NL80_1 +181177 |V1177 Cas *|032450.7+703322 |EA | 11.30 | 11.58 | 11.47 : |* |51486.7 | | 105. |04 | |80001 GSC | NL80_1 +181178 |V1178 Cas *|033316.9+693534 |EA | 12.50 | 13.38 | 12.92 |* |51474.57 | | 8.662 |12 | |80013 GSC | NL80_1 +181179 |V1179 Cas *|033557.4+692559 |EA | 12.9 |< 13.6 | 13.0 |* |51489.714 | | 1.66859 |16 | |80013 GSC | NL80_1 +181180 |V1180 Cas |023301.5+724327 |INT | 14.59 | 21.00 | |Ic| | | | |K7-M0e |80430 80430| NL80_2 +181181 |V1181 Cas |225714.8+572845 |BE | 10.7 | 11.1 | |* | | | | |Be |80077 80077| NL80_3 +181182 |V1182 Cas |225835.0+570919 |BY: | 11.6 |( 0.19 )| |B | | | 17.314 | |K |80039 DM | NL80_3 +181183 |V1183 Cas *|230237.4+593618 |DSCTC | 7.36 | 7.42 | |Hp| | | 0.050571 | |A8III |80599 HIP | NL80_3 +181184 |V1184 Cas |230349.5+593004 |EW | 14.4 |( 0.25 : *)|( 0.25 : *)|V |52879.4490 | | 0.577032 | | |80017 80017| NL80_3 +181185 |V1185 Cas |232605.4+521812 |EA | 10.34 | 10.47 | 10.46 |* |54397.51 | | 5.84530 | | |80001 GSC | NL80_3 +181186 |V1186 Cas |232702.4+521448 |EW: | 12.80 | 13.10 | 12.95 |V |52857.4245 | | 0.615257 | | |80017 80017| NL80_3 +181187 |V1187 Cas |232705.4+572535 |SR | 12.0 | 12.4 | |* | | | 77. : | | |80597 80597| NL80_3 +181188 |V1188 Cas |232942.2+550347 |EW: | 15.3 |( 0.4 *)|( 0.3 )|R |52859.3088 | | 0.662505 | | |80017 80017| NL80_3 +181189 |V1189 Cas |232947.2+594353 |EW | 15.59 | 16.37 | 16.37 |* |53295.2354 | | 0.7053 | | |80008 80008| NL80_3 +181190 |V1190 Cas |232953.6+565022 |SR | 11.1 | 11.55 | |* | | | 58. | | |80597 80597| NL80_3 +181191 |V1191 Cas |233222.7+600515 |EA | 11.20 | 11.48 | 11.48 |* |51462.625 | | 1.94145 | |OB |80042 GSC | NL80_3 +181192 |V1192 Cas |233630.5+632729 |SRA | 10.8 | 11.0 | |* |51512. | | 37.4 | | |80597 80597| NL80_3 +181193 |V1193 Cas |234130.8+513259 |LB | 11.8 | 12.3 | |* | | | | | |80062 USNO | NL80_3 +181194 |V1194 Cas *|234233.8+561120 |DSCTC | 10.55 | 10.63 | |* | | | 0.1387 | | |80612 GSC | NL80_3 +181195 |V1195 Cas |235354.4+590901 |LB | 12.2 | 12.7 | |* | | | | | |80062 GSC | NL80_3 +181196 |V1196 Cas |235518.4+564314 |EA/RS | 19.92 | 20.20 | 20.20 |r'|51800.6104 | | 0.904404 | | |80614 80614| NL80_3 +181197 |V1197 Cas |235543.0+563915 |EA | 17.34 | 17.45 | |r'|51387.457 :| | | | |80614 80614| NL80_3 +181198 |V1198 Cas |235558.9+564030 |EA | 20.1 | 20.7 | |r'|51798.5229 | | | | |80614 80614| NL80_3 +181199 |V1199 Cas |235559.2+564514 |EA | 19.71 | 19.82 | 19.74 |r'|51801.9712 | | 0.800610 |08 | |80614 80614| NL80_3 +181200 |V1200 Cas |235601.7+564308 |EA/RS | 17.64 | 17.82 | 17.67 : |r'|51802.0119 | | 2.769 |04 | |80614 80614| NL80_3 +181201 |V1201 Cas |235608.3+564134 |UV | 18.0 | 22.0 | |V | | | | | |80004 80004| NL80_3 +181202 |V1202 Cas |235609.1+563343 |EA | 15.81 | 16.00 | 15.88 |i |51813.147 | | 0.5440 |22 | |80631 80004| NL80_3 +181203 |V1203 Cas |235611.8+564556 |EA/RS | 20.05 | 20.62 | 20.2 : |r'|51807.2607 | | 1.531 |06 | |80614 80614| NL80_3 +181204 |V1204 Cas |235615.3+563536 |EW | 18.44 | 18.66 | 18.65 |V | | | 0.3397 | | |80004 80004| NL80_3 +181205 |V1205 Cas |235618.3+563415 |EW | 18.89 | 19.22 | 19.18 |V | | | 0.2731 | | |80004 80004| NL80_3 +181206 |V1206 Cas |235626.7+580137 |DCEP | 11.7 | 12.1 | |* |51455.9 | | 4.74 | | |80081 GSC | NL80_3 +181207 |V1207 Cas |235635.9+564430 |EW | 18.14 | 18.95 | 18.85 |V |51812.055 | | 0.3791 | | |80004 80004| NL80_3 +181208 |V1208 Cas |235636.7+565243 |EA | 17.37 | 17.52 | |r'|51798.6707 | | 5.664 |03 | |80614 80614| NL80_3 +181209 |V1209 Cas |235644.6+564944 |EB | 17.96 | 18.7 : | 18.45 |V | | | 0.4902 | | |80004 80004| NL80_3 +181210 |V1210 Cas |235646.8+563614 |EA | 19.42 | 19.80 | |r'|51805.4288 | | | | |80614 80614| NL80_3 +181211 |V1211 Cas |235647.1+565110 |EA | 19.55 | 19.64 | 19.62 |r'|51800.6203 | | 2.4867 |03 | |80614 80614| NL80_3 +181212 |V1212 Cas |235647.7+563628 |EA/RS | 19.40 | 19.56 | |r'|51808.6076 | | 1.759555 |04 | |80614 80614| NL80_3 +181213 |V1213 Cas |235650.8+563826 |E | 16.12 | 16.21 | |V | | | 1.7327 | | |80004 80004| NL80_3 +181214 |V1214 Cas |235656.4+564835 |EA | 17.36 | 17.73 | 17.46 |V | | | 0.7061 |23 | |80004 80004| NL80_3 +181215 |V1215 Cas |235657.2+563403 |EA | 21.10 | 21.50 | |r'|51798.4653 | | 2.621486 |02 | |80001 80614| NL80_3 +181216 |V1216 Cas |235710.7+563327 |EW | 17.40 | 17.47 | 17.45 |V | | | 0.2790 | | |80004 80004| NL80_3 +181217 |V1217 Cas |235711.9+563125 |E | 19.33 | 19.40 : | |r'|51798.5967 | | | | |80614 80614| NL80_3 +181218 |V1218 Cas |235712.9+563126 |EA | 16.71 | 16.90 | |r'|51391.5539 | | 1.03377 : | | |80614 80614| NL80_3 +181219 |V1219 Cas |235718.0+565112 |EA | 17.55 | 17.72 | 17.60 |r'|51805.5715 | | 0.856026 |11 | |80614 80614| NL80_3 +181220 |V1220 Cas |235724.5+565517 |EP: | 18.02 | 18.05 | |r'|51805.5405 | | | | |80614 80614| NL80_3 +181221 |V1221 Cas |235725.2+563437 |EW | 19.49 | 20.20 | 19.95 |V | | | 0.2789 | | |80004 80004| NL80_3 +181222 |V1222 Cas |235730.0+565734 |EA/RS | 20.25 | 20.60 | 20.50 |r'|51801.1921 | | 0.902117 |07 | |80614 80614| NL80_3 +181223 |V1223 Cas |235734.7+563320 |EW | 17.89 | 18.50 | 18.45 |V | | | 0.3228 | | |80004 80004| NL80_3 +181224 |V1224 Cas |235738.6+563558 |E | 13.80 | 13.92 | |V | | | 2.1077 | | |80004 80004| NL80_3 +181225 |V1225 Cas |235744.9+563356 |ELL: | 16.15 | 16.24 | 16.24 |V | | | 2.3362 | | |80004 80004| NL80_3 +181226 |V1226 Cas |235745.1+565537 |EA: | 20.70 | 20.80 | |r'|51806.4638 | | | | |80614 80614| NL80_3 +181227 |V1227 Cas |235751.1+564203 |EA | 18.98 | 19.21 | |r'|51801.6078 | | | | |80614 80614| NL80_3 +181228 |V1228 Cas |235810.7+562933 |EW | 18.04 | 18.19 | 18.19 : |V | | | 0.3781 | | |80004 80004| NL80_3 +181229 |V1229 Cas |235812.1+563806 |EW | 19.25 | 20.00 | 19.85 |V | | | 0.2907 | | |80004 80004| NL80_3 +181230 |V1230 Cas |235813.4+564536 |EA | 20.40 | 20.58 | 20.46 |r'|51806.5823 | | 1.074 |06 | |80614 80614| NL80_3 +181231 |V1231 Cas |235813.5+564726 |EB | 18.99 | 19.20 | 19.11 |V | | | 0.3489 | | |80004 80004| NL80_3 +181232 |V1232 Cas |235827.3+564636 |E | 20.86 | 20.99 | |r'|51807.5492 | | | | |80614 80614| NL80_3 +181233 |V1233 Cas |235829.2+563242 |EA/RS | 18.84 | 19.08 | 19.01 |r'|51805.5611 | | 0.856336 |07 | |80614 80614| NL80_3 +181234 |V1234 Cas |235833.9+563705 |EA | 19.14 | 19.26 : | |r'|51801.584 :| | 3.6216 : | | |80614 80614| NL80_3 +181235 |V1235 Cas |235836.7+562655 |EA | 18.07 | 18.32 | |r'|51384.481 | | | | |80614 80614| NL80_3 +181236 |V1236 Cas *|235837.7+563954 |EA | 18.88 | 19.40 | 19.07 |V | | | 0.4044 |18 | |80004 80004| NL80_3 +181237 |V1237 Cas |235839.4+563645 |EA/RS | 20.51 | 20.99 | |r'|51808.7056 | | 0.450285 | | |80614 80614| NL80_3 +181238 |V1238 Cas |235846.4+564602 |EW | 16.64 | 16.71 | 16.71 |V | | | 0.2651 | | |80004 80004| NL80_3 +181239 |V1239 Cas |235903.8+563917 |E | 16.37 | 16.45 | |V | | | 3.0314 : | | |80004 80004| NL80_3 +181240 |V1240 Cas |235921.5+562948 |EA | 17.03 | 17.16 | |V | | | 1.6617 : | | |80004 80004| NL80_3 +181241 |V1241 Cas |235923.0+563551 |EW | 16.73 | 16.80 | 16.79 |V | | | 0.2317 | | |80004 80004| NL80_3 +181242 |V1242 Cas |235933.5+564324 |EA | 17.3 | 18.0 | 17.9 |i |51811.259 | | 0.5134 |18 | |80004 80004| NL80_3 +181243 |V1243 Cas |235940.9+564308 |EW | 17.30 | 18.05 | 17.95 |V | | | 0.3499 | | |80004 80004| NL80_3 +181244 |V1244 Cas |235950.8+564456 |EW | 15.13 | 15.25 | 15.25 |V | | | 0.3862 | | |80004 80004| NL80_3 +189001 |alf Cas *|004030.4+563214 |CST: | 2.20 | 2.27 | |V | | | | |K0IIIa | BD | +189002 |bet Cas *|000910.7+590859 |DSCTC | 2.25 | 2.31 | |V |38991.876 | | 0.10430 |40 |F2III-IV |03902 BD | +189003 |gam Cas *|005642.5+604300 |GCAS | 1.6 | 3.0 | |V | | | | |B0.5IVpe |06475 BD | +189004 |del Cas *|012549.0+601407 |EA: | 2.68 | 2.76 | 2.75 |V |20161. | | 759. | |A5V |05160 BD | +189007 |eta Cas |004906.3+574855 |RS: | 3.58 | 3.63 | |Hp| | | | | |HIP HIP | +189009 |iot Cas *|022903.9+672409 |ACV | 4.45 | 4.53 | |V |37248.313 | | 1.74050 |35 |B9p(Cr-Sr) |08824 BD | +189010 |kap Cas *|003300.0+625554 |ACYG | 4.22 | 4.30 | |B | | | | |B1eaIa |08876 BD | +189015 |omi Cas *|004443.5+481704 |GCAS | 4.50 | 4.62 | |V | | | | |B2-5eIV |07855 BD | +189016 |pi. Cas *|004328.1+470128 |ELL | 5.00 | 5.02 | |Hp| | | | | |HIP HIP | +189017 |rho Cas *|235423.0+572958 |SRD | 4.1 | 6.2 | |V | | | 320. | |F8pIa-K0pIa-0 |08877 BD | +189202 |B Cas *|002520. +640818:|SNI: | -4.0 |< 19. : | |V |22950. |1572 | | | |0095 80887| +190001 |R Cen *|141634.3-595449 |M | 5.3 | 11.8 | 8.3 |V |41942. | | 546.2 | |M4e-M8IIe |00001 00002| +190002 |S Cen |122433.9-492625 |SR | 9.2 | 10.7 | |p | | | 65. | |C4,5(Nbp) |00003 05464| +190003 |T Cen |134145.6-333551 |SRA | 5.5 | 9.0 | |V |43242. | | 90.44 |47 |K0:e-M4II:e |00001 00002| +190004 |U Cen |123330.8-543934 |M | 7.0 | 14.0 | |V |39941. | | 220.28 |47 |M3II:e-M5IIe |00001 00002| +190005 |V Cen *|143233.1-565316 |DCEP | 6.43 | 7.21 | |V |40308.60 | | 5.493839 |26 |F5Ib/II-G0 |05060 CoD | +190006 |W Cen |115501.3-591514 |M | 7.60 | 13.7 | |V |41786. | | 201.57 |47 |M3e-M8(III)e |00001 00002| +190007 |X Cen |114911.8-414527 |M | 7.0 | 13.8 | |V |41709. | | 315.1 |41 |M5e-M6.5e |00001 00002| +190008 |Y Cen |143058.6-300552 |SRB: | 8.9 | 10.0 | |p | | | 180. : | |M4e-M7 |00005 CoD | +190009 |Z Cen *|133956.0-313831 |SNI | 8.0 |< 20.5 | |p |13383. :|1895 | | |pec(SN) |02249 GSC | +190010 |RR Cen *|141657.2-575116 |EW/KE: | 7.27 | 7.68 | 7.63 |V |24231.0981 | | 0.60569029 | *|A9/F0V |06477 08830| +190011 |RS Cen *|112027.9-615237 |M | 7.75 | 14.1 | |V |41966. | | 164.37 |46 |M1Ibe-M5(III)e |00001 00002| +190012 |RT Cen *|134820.9-365145 |M | 8.1 | 13.6 | |V |42098. | | 255.02 |47 |M6II:e |00001 00002| +190013 |RU Cen |120923.8-452535 |RV | 8.7 | 10.7 | |p |28015.51 | | 64.727 | |A7Ib-G2pe |03510 05464| +190014 |RV Cen |133736.0-562835 |M | 7.0 | 10.8 | |V |40960. | | 446.0 |56 |N3e |00001 00002| +190015 |RW Cen |110717.9-550719 |SRA | 8.6 | 10.3 | |V |38134. | | 185.2 |53 |N3 |05975 05464| +190016 |RX Cen |135125.4-365638 |M | 8.7 |< 15. | |V |42114. | | 327.90 |38 |M5e |00001 00002| +190017 |RY Cen |144952.4-423049 |M | 10.5 | 16.4 | |p |28739. | | 327.5 | |M5e |01004 GSC | +190018 |RZ Cen *|130156.0-643737 |EB/KE: | 8.95 | 9.60 | 9.4 |V |29342.942 | | 1.8759517 | |B2V |00007 04641| +190019 |SS Cen *|131338.5-640904 |EA/SD | 9.4 | 11.0 | 9.5 |p |29552.475 | | 2.4787192 |14 |B8V |00007 CPD | +190020 |ST Cen *|110958.6-522929 |EA/DM: | 10.62 | 11.34 | 11.30 |V |43173.056 | | 1.2234184 |22 |F9V |00007 CoD | +190021 |SU Cen *|111109.3-475037 |EA/SD: | 9.1 | 10.0 | 9.2 |p |29253.830 | | 5.35432828 |15 |F0/3V |00007 CoD | +190022 |SV Cen *|114757.2-603358 |EB/KE: | 8.71 | 9.98 | 9.45 |V |44061.0600 | | 1.658500 | |B1V+B6.5II-III |05212 04641| +190023 |SW Cen |121747.5-494404 |EA/SD | 10.0 | 12.2 | |p |29236.591 | | 5.2195375 |13 |B9V |00007 05464| +190024 |SX Cen *|122112.6-491241 |RVB | 9.6 | 12.5 | |p | | | 32.8642 | |F5-G3/5Vp |00011 05464| +190025 |SY Cen *|134151.5-614610 |EA/SD | 11.2 | 12.2 | |p |27892.6234 | | 6.631357 |11 |A5 |00013 CoD | +190026 |SZ Cen *|135035.1-582957 |EA/D | 8.3 | 8.9 | 8.7 |p |41386.7466 | | 4.107983 |15 |A6III |05213 CoD | +190027 |TT Cen |131935.2-604646 |M | 11.5 |< 16.5 | |p |25380. | | 462. | |CSe |00014 05464| +190028 |TU Cen |143401.2-314140 |M | 9.5 | 14.5 | |p |28214. | | 293.90 | |M4e-M7e |01004 CoD | +190029 |TV Cen |121431.7-513158 |SRB: | 10. | 10.5 | |p | | | 175. : | |C(Nb) |00003 05464| +190030 |TW Cen |135743.2-310411 |M | 8.8 |< 12.6 | |p |29310. | | 269.27 |43 |M4e-M8II: |01004 08087| +190031 |TX Cen *|143512.0-605952 |DCEP | 9.85 | 11.14 | |V |34964.000 | | 17.0936 |38 | |02309 GSC | +190032 |TY Cen |130330.1-633930 |S: | 14.0 | 17.1 | |p | | | | | |00015 USNO | +190033 |TZ Cen *|130407.2-604558 |CST: | 11.5 | 13.0 | |p | | | | | |00016 GSC | +190034 |UU Cen |132206.3-611839 |M | 10.4 | 14.4 | |p |15121. | | 368. | |M8e |00017 05464| +190035 |UV Cen |114057.1-573930 |M | 10.1 |< 13.5 | |p |29157. | | 274.3 | |Me |00001 GSC | +190036 |UW Cen *|124317.2-543141 |RCB | 9.1 |< 14.5 | |V | | | | |K |00003 05464| +190037 |UX Cen |132209.8-641308 |SRB | 10.1 | 10.6 | |p | | | 122. : | |C(Nb) |00003 CoD | +190038 |UY Cen |131631.8-444216 |SR | 9.22 | 11.2 | |B | | | 114.6 : | |SC |00018 CoD | +190039 |UZ Cen *|114058.5-624133 |CEP(B) | 8.30 | 9.12 | |V |40746.1 | | 3.33434 |27 |F3Ib/II |05119 CoD | +190040 |VV Cen |114629.1-615327 |M | 10.2 | 17.1 | |B |10160. | | 199. | |M2:e-M4e |00020 00021| +190041 |VW Cen *|133359.0-640320 |DCEP | 9.67 | 10.72 | |V |44023.17 | | 15.03618 |38 | |02309 00022| +190042 |VX Cen |135113.3-602437 |SR | 9.5 | 12.8 | |p |29800. | | 307.8 | |S8,5e(M4-8II-III)|00023 06965| +190043 |VY Cen |113114.5-512622 |L | 11.0 | 11.5 | |p | | | | | |00016 CoD | +190044 |VZ Cen *|115228.8-613127 |EA | 8.34 | 8.6 | 8.4 |B |29125.519 | | 4.9287012 |20 |B2III/IV |00007 04641| +190045 |WW Cen |130924.7-601458 |SRB | 8.8 | 11.6 | |V | | | 304. | |M5-M7 |00003 04641| +190046 |WX Cen *|131252.5-632345 |S: | 13.44 | 13.93 | |V | | | | |pec(e) |05314 08833| +190047 |WY Cen |131615.3-630228 |E | 14.0 | 14.7 | |p | | | | | |00014 GSC | +190048 |WZ Cen *|131933.3-625548 |EB/SD: | 13.7 | 14.8 | 14.2 |p |28034.27 | | 3.61155 | | |00013 00013| +190049 |XX Cen |134018.6-573648 |DCEP | 7.30 | 8.31 | |V |40366.24 | | 10.954348 |49 |F6-G4(F7/8II) |05060 CoD | +190050 |XY Cen |134844.7-443048 |LB | 10.7 | 11.1 | |p | | | | |M0 |00016 CoD | +190051 |XZ Cen |122412.0-353802 |M | 7.8 | 10.7 | |V |30136. | | 290.7 | |M5e |00026 05464| +190052 |YY Cen |123541.8-543452 |M: | 12.5 |< 14.3 | |p |28696. | | | |M5e |00016 05464| +190053 |YZ Cen |125410.7-435256 |SR: | 10.5 | 11.0 | |p | | | | |K3III |00018 CoD | +190054 |ZZ Cen *|135958.6-471341 | | 10.5 | 13.0 | |V | | | | | |00027 CoD | +190055 |AA Cen *|140000.5-471339 | | 10.7 | 13.5 | |V | | | | | |00027 CoD | +190056 |AB Cen *|112621.3-582458 |EA/DS | 10.6 | 13.2 | |p |23885.15 | | 46.853 |08 : |G0: |00028 CPD | +190057 |AC Cen |113309. -574135:|CST: | 11. |< 13. | |p | | | | | |00016 GSC | +190058 |AD Cen |115311.6-591848 |LC: | 9.4 | 11.4 | |p | | | | |K3(II)-M3e | 00002| +190059 |AE Cen |120255.9-551309 | | 12. | 15.5 | |p | | | | | |00029 GSC | +190060 |AF Cen |130407.6-562015 |M | 10.5 |< 15. | |p |25758. | | 284. | | |00030 GSC | +190061 |AG Cen |133130.2-541827 |CST | 10.5 | | |p | | | | | |00030 CoD | +190062 |AH Cen |134045.3-572813 |CST | 12.5 | | |p | | | | | |00030 GSC | +190063 |AI Cen |135442.4-562451 |CST | 13. | | |p | | | | | |00030 GSC | +190064 |AK Cen |143155.7-592740 | | 12. | 14. | |p | | | | | |00029 USNO | +190065 |AL Cen |123606.1-533607 |SRA | 10.0 | 11.9 | |p |29835. | | 125. | |M1/3e |00003 05464| +190066 |AM Cen |134717.6-532126 |LB | 10.4 | 11.61 | |B | | | | |SC |00016 CoD | +190067 |AN Cen |134800.5-380816 |M | 11.5 |< 14. | |p |12642. | | 333. | |Me |00017 05625| +190068 |AO Cen |150051.7-422937 |M | 10.6 |< 12.5 | |p |13627. | | 189. | |M2e |00031 CoD | +190069 |AP Cen *|150110.1-342831 |M | 10.4 |< 13.5 | |p |13355. | | 357. | |M5e |00017 CoD | +190070 |AQ Cen |140459.9-352950 |M | 9.3 |< 13.5 | |p |29719. | | 387.5 | |Me |01004 08073| +190071 |AR Cen |110813.2-562532 |EA/DS | 12.5 | 14.1 | |p |23893.2 | | 8.971 | | |00032 GSC | +190072 |AS Cen *|111305.7-570744 |EW/KW | 13. | 13.2 | 13.2 |p |25025.408 | | 0.30523688 | | |00033 USNO | +190073 |AT Cen |111938. -565502:|RRAB | 13.2 | 14.0 | |p |23821.138 | | 0.455890 |15 | |00034 | +190074 |AU Cen |135157.9-522239 |M | 12.5 |< 16.5 | |p |23918. | | 261.5 | | |00030 06286| +190075 |AV Cen *|112438. -602018:|EA/SD | 14. |< 15. | 14.1 |p |23899.932 | | 1.5804 |23 | |00035 | +190076 |AW Cen |131345.3-565815 |SR | 10.3 | 11.3 | |p | | | 90. | |M4(III) |00003 CoD | +190077 |AX Cen |110533.6-545753 |RRAB | 13. | 14. | |p |23937.95 | | 0.5137541 |10 | |00036 05464| +190078 |AY Cen |112505.8-604405 |DCEP | 8.58 | 9.16 | |V |36733.520 | | 5.30975 |32 |G1I-G5 |02309 CoD | +190079 |AZ Cen *|112513.0-612209 |DCEPS | 8.41 | 8.80 | |V |35223.36 | | 3.21068 |40 |F7 |02431 CoD | +190080 |BB Cen |115333.5-625108 |DCEPS | 9.86 | 10.48 | |V |40990.27 | | 3.99766 |45 |F5 |08834 00021| +190081 |BC Cen |140223.5-583415 |M | 11.0 | 17.0 | |p |24310. | | 293. | |M |00014 06286| +190082 |BD Cen *|142355.4-595142 |EA/KE: | 10.2 | 11.4 | 10.7 |p |28693.326 | | 1.201114 |18 *| |00016 CoD | +190083 |BE Cen |150146.2-301441 |M | 9.8 | 14.0 | |p |28740. | | 201.56 |45 |Me |00005 08087| +190084 |BF Cen *|113617.0-612801 |EA/DM: | 8.5 | 9.4 | 8.8 |p |24262.28 | | 3.69334 |20 |B7 |00039 03389| +190085 |BG Cen *|113721.4-640215 |E/KE | 11.8 | 12.6 | 12.3 |p |23990.237 | | 0.743112 | | |00040 00040| +190086 |BH Cen *|113910.2-632515 |EB/KE | 10.03 | 11.16 | 11.1 V |V |31748.7478 | | 0.79158298 | |B5V |05794 05747| +190087 |BI Cen *|114554.6-592240 |RRAB | 11.18 | 12.33 | |V |36690.224 | | 0.453183 |26 |A3-F3: |03126 00040| +190088 |BK Cen *|114916.0-630443 |CEP(B) | 9.60 | 10.38 | |V |35221.711 | | 3.173887 |30 |G5 |05316 04655| +190089 |BL Cen |130631.9-553452 |M | 13.3 |< 16.5 | |p |25390. | | 226.8 | | |00030 GSC | +190090 |BM Cen |131738.4-561710 |EA/SD | 13.2 | 16.0 | |p |27927.485 | | 4.36990 |06 | |00013 00013| +190091 |BN Cen |131840.5-573524 |M: | 14.8 |< 16.3 | |p |13717. | | 258. | | |00030 06286| +190092 |BO Cen |131839.8-540549 |M | 13.0 |< 16.5 | |p |25438. | | 282.5 | | |00030 06286| +190093 |BP Cen |131908.7-495505 |EA/SD | 12.2 | 16.0 | |p |24644.722 | | 2.17042 | | |00030 06286| +190094 |BQ Cen |132027.9-503720 |S: | 12.0 | 13.1 | |p | | | | | |00030 06286| +190095 |BR Cen |132439.5-522001 |SR | 11.8 | 14.0 | |p | | | | |Me |00030 06286| +190096 |BS Cen |132447.5-570526 |RRAB | 13.2 | 13.9 | |p |28339.303 | | 0.5632623 |14 | |00013 00013| +190097 |BT Cen |132709.4-535909 |RR: | 14.5 | 15.5 | |p | | | | | |00030 06286| +190098 |BU Cen |132936.7-500006 |RV: | 12.4 | 14.2 | |p | | | 85.5 | | |00030 06286| +190099 |BV Cen *|133119.5-545834 |UGSS+E/WD | 10.7 | 13.6 | |V |40264.780 | | 0.6096144 | |pec(UG) |05799 08852| +190100 |BW Cen |133301.8-504844 |M | 13.5 | 16.5 : | |p |25325. | | 229.2 | | |00030 06286| +190101 |BX Cen |133344.0-505043 |M | 13.7 |< 16.5 | |p |25302. | | 208. | | |00030 06286| +190102 |BY Cen |133347.6-511508 |M: | 15.0 |< 16.5 | |p |24296. | | 191.5 | | |00030 USNO | +190103 |BZ Cen |133629.8-505123 |RRAB | 14.5 | 15.4 | |p |24644.655 | | 0.5457 | | |00030 USNO | +190104 |CC Cen |133713.9-534314 |M | 14.0 |< 16.5 | |p |25740. | | 246. | | |00030 GSC | +190105 |CD Cen |133721.3-534855 |M | 11.5 | 16.2 | |p |25390. | | 178. | | |00030 03508| +190106 |CE Cen |133725.5-533633 |M: | 14.8 |< 16.4 | |p |24390. | | 464. | | |00030 06286| +190107 |CF Cen |134057.9-524429 |M: | 14.5 |< 16. | |p | | | | | |00030 GSC | +190108 |CG Cen |134358.9-551943 |S: | 13.3 | 14.8 | |p | | | | | |00043 06286| +190109 |CH Cen |134433.4-550415 |S: | 14.0 | 14.9 | |p | | | | | |00030 06286| +190110 |CI Cen |134441.3-500502 |SR | 14.6 | 16.5 | |p |25705. | | 140.1 | | |00030 GSC | +190111 |CK Cen |134749.8-574212 |M | 12.3 | 16.3 | |p |25385. | | 198. | | |00030 06286| +190112 |CL Cen |134855.1-550725 |SR | 15.2 | 16.5 : | |p |25325. | | 273. | | |00030 06286| +190113 |CM Cen |135102.4-553320 |M | 12.2 |< 16.5 | |p |27480. | | 457. | | |04174 04174| +190114 |CN Cen *|112547.8-593756 |RVA | 12.5 | 14. | 13.3 |p |24204.5 | | 51.0 | |G4 |00044 00044| +190115 |CO Cen |130726.6-555528 |M | 14.0 |< 16.5 | |p |25378. | | 237.5 | | |00030 06286| +190116 |CP Cen |130742.1-563149 |S: | 14.3 | 15.5 | |p | | | | | |00030 06286| +190117 |CQ Cen |130803.4-552918 |E/SD: | 11.7 | 12.5 | |p |27950.032 | | 6.30159 | | |00013 00013| +190118 |CR Cen |130951.7-574212 |M | 13.8 |< 16.5 | |p |25305. | | 180.5 | | |00030 06286| +190119 |CS Cen |130954.4-565834 |M | 13.8 | 16.4 | |p |25305. | | 177. | | |00030 06286| +190120 |CT Cen |131043.0-581639 |EA/DS | 10.3 | 13.0 | |p |25438.206 | | 16.394 | |A3(ea) |00030 CoD | +190121 |CU Cen |131056.3-564729 |E: | 14.0 | 15.0 : | |p | | | | | |00030 06286| +190122 |CV Cen |131142.5-565948 |SR | 14.7 | 16.6 | |p |25305. | | 150. | | |00030 06286| +190123 |CW Cen |131155.4-550458 |S: | 14.3 | 15.2 | |p | | | | | |00030 06286| +190124 |CX Cen |131214.9-565922 |E/SD | 13.5 | 14.7 | |p |27953.38 | | 3.01692 | | |00013 00013| +190125 |CY Cen |131213.0-525252 |EA/SD | 13.3 | 16.1 | |p |24317.519 | | 1.34832 | | |00030 06286| +190126 |CZ Cen |131242.1-523104 |SR | 13.4 | 15.2 | |p | | | | | |00030 06286| +190127 |DD Cen |131300.0-552123 |S: | 13.9 | 14.6 | |p | | | | | |00030 06286| +190128 |DE Cen |131313.1-531251 |E/SD: | 14.4 | 15.8 | |p | | | 1.0 /N| | |00030 06286| +190129 |DF Cen |131312.8-570850 |L | 12.7 | 14.3 | |p | | | | | |00030 06286| +190130 |DG Cen |131310.3-511253 |M | 12.4 | 16.4 | |p |25325. | | 185. | |Me |00030 06286| +190131 |DH Cen |131321.6-491737 |E | 14.4 | 15.3 | |p | | | 2. /N| | |00030 UCAC2| +190132 |DI Cen *|131509.7-555808 |EA/DM | 11.8 | 12.5 | 12.3 |p |28295.4584 | | 3.549574 |08 : | |00013 00013| +190133 |DK Cen |131724.5-582321 |EA/DS | 11.8 | 12.9 | |p |28658.572 | | 9.475357 |08 | |00013 00013| +190134 |DL Cen |131737.0-564833 |RR | 14.4 | 15.3 | |p | | | | | |00030 06286| +190135 |DM Cen |131930.2-542223 |SR | 14.8 | 16.4 : | |p |14139. | | 132.8 | | |00030 USNO | +190136 |DN Cen |132022.1-580209 |EB/SD: | 12.9 | 13.6 | |p |28007.220 | | 0.7390078 | | |03551 03551| +190137 |DO Cen |132010.0-504758 |RR: | 15.4 | 16.0 | |p | | | | | |00030 USNO | +190138 |DP Cen |132038.4-520930 |E/SD: | 14.0 | 14.7 | |p |25357.379 | | 5.121 | | |00030 06286| +190139 |DQ Cen |132119.9-581116 |S: | 14.6 | 15.7 | |p | | | | | |00030 GSC | +190140 |DR Cen |132109.3-520757 |M | 13.3 | 16.2 | |p |25624. | | 263.5 | | |00030 06286| +190141 |DS Cen |132140.9-501726 |RR | 14.9 | 15.8 | |p | | | | | |00030 USNO | +190142 |DT Cen *|132253.0-545158 | | 12.0 | 12.6 | |p | | | | | |00030 GSC | +190143 |DU Cen |132340.0-552939 |E/SD: | 15.0 | 16.1 | |p | | | 1. /N| | |00030 USNO | +190144 |DV Cen |132419.3-532907 |E | 13.1 | 13.5 | |p | | | | | |00030 06286| +190145 |DW Cen |132425.9-524145 |RR | 15.0 | 15.8 | |p | | | | | |00030 USNO | +190146 |DX Cen *|132527.6-553544 | | 15.5 |< 16.0 | |p | | | | | |00030 USNO | +190147 |DY Cen *|132534.0-541444 |RCB | 12.0 |< 16.4 | |p | | | | |pec |00030 03508| +190148 |DZ Cen |132546.6-504041 |SR | 15.2 | 16.4 | |p |25658. | | 223. | | |00030 USNO | +190149 |EE Cen |132715.7-575815 |SR | 12.3 | 14.2 | |p | | | 198. | | |00030 06286| +190150 |EF Cen |132718.6-545405 |RR: | 15.0 | 15.8 | |p | | | | | |00030 USNO | +190151 |EG Cen |132736.8-512111 |M | 14.5 |< 16.5 | |p |25302. | | 282.7 | | |00030 USNO | +190152 |EH Cen |132903.9-544457 |E/SD: | 12.9 | 13.7 | |p |29339.222 | | 1.8185635 | | |00013 00013| +190153 |EI Cen |132940.6-550449 |E/SD | 14.9 | 16.2 | |p |28403.24 | | 1.842507 | | |00013 00013| +190154 |EK Cen |132949.1-580432 |M: | 14.8 |< 16.5 | |p |23900. | | 280. | | |00030 06286| +190155 |EL Cen |133025.2-565452 |E | 12.3 | 12.7 | |p | | | | | |00030 06286| +190156 |EM Cen |133012.8-494729 |RRAB | 14.3 | 15.3 | |p |25410.293 | | 0.599935 | | |00030 USNO | +190157 |EN Cen |133031.8-550815 |E/SD: | 14.7 | 15.6 | |p | | | 3. /N| | |00030 GSC | +190158 |EO Cen |133142.5-582337 |EA/DS | 11.0 | 13.1 | |p |29019.9662 | | 9.42567 | | |00013 00013| +190159 |EP Cen *|133146.0-573346 |EA/SD | 11.3 | 12.5 | 11.5 |p |27871.487 | | 0.925449 |23 *| |00013 00013| +190160 |EQ Cen |133217.4-523219 |RRC | 14.4 | 15.2 | |p |24644.722 | | 0.256845 | | |00030 GSC | +190161 |ER Cen |133323.2-553151 |RR: | 14.9 | 15.6 | |p | | | | | |00030 GSC | +190162 |ES Cen |133325.9-515222 |M | 14.5 |< 16.5 | |p |23900. | | 173.6 | | |00030 USNO | +190163 |ET Cen |133459.9-565135 |M | 14.3 |< 16.5 | |p |24300. | | 260. | | |00030 06286| +190164 |EU Cen *|133452.8-512932 |S: | 15.0 | 15.5 | |p | | | | | |00030 USNO | +190165 |EV Cen |133600.4-532600 |S: | 14.5 | 15.0 | |p | | | | | |00030 GSC | +190166 |EW Cen |133742.7-522210 |RR: | 15.9 |< 16.5 | |p | | | | | |00030 USNO | +190167 |EX Cen |133817.5-560039 |M: | 14.8 |< 16.5 | |p |24667. | | 314. | | |00030 2MASS| +190168 |EY Cen |133914.6-492559 |SR | 14.2 | 16.3 | |p |25378. | | 236. | | |00030 GSC | +190169 |EZ Cen |133950.4-511100 |RRC | 15.3 | 16.0 | |p |24643.736 | | 0.39553 : | | |00030 GSC | +190170 |FF Cen |133946.7-501458 | | 14.9 | 15.4 | |p | | | | | |00030 USNO | +190171 |FG Cen |134006.7-501721 |RRAB | 14.8 | 16.3 | |p |25327.436 | | 0.46095 | | |00030 06286| +190172 |FH Cen |134044.3-514043 |M | 14.2 |< 16.4 | |p |24285. | | 191. | | |00030 USNO | +190173 |FI Cen |134101.2-523051 |S: | 15.3 | 15.9 | |p | | | | | |00030 USNO | +190174 |FK Cen |134152.9-562641 |EA/SD | 13.3 | 15.0 | |p |27633.272 | | 2.191340 | | |00013 00013| +190175 |FL Cen |134151.6-503241 |RR: | 15.8 | 16.4 | |p | | | | | |00030 USNO | +190176 |FM Cen |134222.3-500101 |M: | 15.2 |< 16.7 | |p |23918. | | 267. | | |00030 USNO | +190177 |FN Cen |134235.5-512130 |S: | 14.0 | 14.6 | |p | | | | | |00030 GSC | +190178 |FO Cen |134302.1-520345 |S: | 16.1 |< 16.6 | |p | | | | | |00030 USNO | +190179 |FP Cen |134330.8-525241 |S: | 15.8 |< 16.6 | |p | | | | | |00030 USNO | +190180 |FQ Cen |134334.0-502445 |RRAB | 15.3 | 16.4 | |p |25438.206 | | 0.52399 | | |00030 USNO | +190181 |FR Cen |134335.4-494020 |RR | 15.2 | 16.3 | |p | | | | | |00030 USNO | +190182 |FS Cen |134407.2-515208 |RR | 15.3 | 15.8 | |p | | | | | |00030 USNO | +190183 |FT Cen |134417.5-514400 |RR | 16.0 |< 16.5 | |p | | | | | |00030 USNO | +190184 |FU Cen |134440.6-510702 |S: | 15.6 | 16.2 | |p | | | | | |00030 USNO | +190185 |FV Cen |134505.4-563140 |L | 15.4 |< 16.5 | |p | | | | | |00030 USNO | +190186 |FW Cen |134523.5-562154 |E | 12.4 | 12.9 | |p | | | | | |00030 GSC | +190187 |FX Cen |134521.5-533316 |RR | 14.5 | 15.4 | |p | | | | | |00030 USNO | +190188 |FY Cen |134528.6-520511 | | 16.2 |< 16.7 | |p | | | | | |00030 USNO | +190189 |FZ Cen |134605.2-515220 |S: | 15.5 | 16.2 | |p | | | | | |00030 USNO | +190190 |GG Cen |134601.9-501607 |RR: | 15.5 | 16.3 | |p | | | | | |00030 USNO | +190191 |GH Cen |134616.9-513551 |RR | 15.9 | 16.6 | |p |24644.620 | | 0.45082 | | |00030 USNO | +190192 |GI Cen *|134621.2-512003 |S: | 16.2 |< 16.7 | |p | | | | | |00030 USNO | +190193 |GK Cen |134620.9-493551 |RRAB | 13.6 | 15.0 | |p |24643.736 | | 0.6599 | | |00030 GSC | +190194 |GL Cen |134701.5-505031 | | 16.0 |< 16.6 | |p | | | | | |00030 2MASS| +190195 |GM Cen *|134726.2-572625 |S: | 14.3 | 15.0 | |p | | | | | |00030 GSC | +190196 |GN Cen |134709.6-514546 |S: | 15.5 | 16.4 | |p | | | | | |00030 06286| +190197 |GO Cen |134728.3-503725 |RR: | 15.8 |< 16.5 | |p | | | | | |00030 USNO | +190198 |GP Cen |134732.8-505752 |E: | 15.5 | 16.2 | |p | | | | | |00030 USNO | +190199 |GQ Cen |134803.9-521022 |S: | 15.3 | 15.8 | |p | | | | | |00030 USNO | +190200 |GR Cen |134825.7-510529 |RR | 16.1 |< 16.7 | |p | | | | | |00030 USNO | +190201 |GS Cen |134915.6-505847 |M: | 14.7 |< 16.5 | |p |25328. | | 253.5 | | |00030 06286| +190202 |GT Cen |134925.1-510028 | | 15.4 | 16.3 | |p | | | | | |00030 06286| +190203 |GU Cen |134957.4-504813 |RR | 15.9 |< 16.5 | |p | | | | | |00030 USNO | +190204 |GV Cen |135026.7-543424 |L | 15.1 |< 16.5 | |p | | | | | |00030 06286| +190205 |GW Cen |135022.1-491741 |RR | 14.1 | 15.3 | |p | | | | | |00030 06286| +190206 |GX Cen |135054.5-574023 |EA/SD | 14.0 | 16.0 | |p |28360.15 | | 5.57642 | | |00013 00013| +190207 |GY Cen |135103.4-510207 |E/SD: | 14.5 | 15.1 | |p |24653.650 | | 1.5916 | | |00030 GSC | +190208 |GZ Cen |135126.2-540158 |S: | 14.9 | 15.7 | |p | | | | | |00030 GSC | +190209 |HH Cen |135131.5-523009 |S: | 14.9 | 15.4 | |p | | | | | |00030 GSC | +190210 |HI Cen |135133.1-520600 |RRAB | 15.3 | 16.4 | |p |24644.688 | | 0.55515 | | |00030 USNO | +190211 |HK Cen |135130.6-511353 |E/SD: | 13.4 | 14.8 | |p | | | 7. /N| | |00030 06286| +190212 |HL Cen |135136.3-512511 |RR: | 15.9 |< 16.5 | |p | | | | | |00030 USNO | +190213 |HM Cen |135143.0-521339 |M: | 14.9 |< 16.5 | |p |24317. | | 209.7 | | |00030 USNO | +190214 |HN Cen |135216.9-510639 |RR | 15.2 | 15.8 | |p | | | | | |00030 USNO | +190215 |HO Cen |135225.8-513449 |S: | 16.0 |< 16.6 | |p | | | | | |00030 | +190216 |HP Cen |135229.6-512936 |RRAB | 15.2 | 16.4 | |p |24644.756 | | 0.56495 | | |00030 06286| +190217 |HQ Cen |135251.2-562923 |S: | 12.5 | 13.3 | |p | | | | | |00030 GSC | +190218 |HR Cen |135243.2-513852 |RR | 14.4 | 15.1 | |p | | | | | |00030 USNO | +190219 |HS Cen |135244.6-523216 |L: | 15.4 | 15.9 | |p | | | | | |00030 06286| +190220 |HT Cen |135303.4-510621 |RRAB | 15.3 | 16.5 | |p |24301.641 | | 0.51911 | | |00030 06286| +190221 |HU Cen |135335.9-503303 |S: | 14.4 | 15.1 | |p | | | | | |00030 GSC | +190222 |HV Cen |135357.4-564247 |SR | 13.7 | 15.3 | |p |23914. | | 286. | | |00030 GSC | +190223 |HW Cen |135417.9-504758 |S: | 16.2 |< 16.7 | |p | | | | | |00030 USNO | +190224 |HX Cen |135457.1-514715 |E: | 15.5 | 16.1 | |p | | | | | |00030 USNO | +190225 |HY Cen |135655.7-565528 |M | 12.4 |< 16.0 | |p |25360. | | 311. | |Me |00030 GSC | +190226 |HZ Cen |135710.4-531909 |S: | 15.0 | 15.5 | |p | | | | | |00030 UCAC2| +190227 |II Cen |135741.9-555252 |E | 15.5 | 16.4 | |p | | | | | |00030 USNO | +190228 |IK Cen |135736.6-525125 |M: | 15.2 |< 16.5 | |p |23900. | | 301.5 | | |00030 GSC | +190229 |IL Cen |135750.6-521704 |S: | 14.6 | 15.2 | |p | | | | | |00030 GSC | +190230 |IM Cen |135823.5-555351 |SR: | 13.7 | 14.9 | |p | | | 49.2 | | |00030 GSC | +190231 |IN Cen |135914.5-521043 |E/SD: | 14.6 |< 16.0 | |p | | | | | |00030 GSC | +190232 |IO Cen |135938.0-560856 |M: | 15.4 |< 16.5 | |p |25414. | | 242. | | |00030 USNO | +190233 |IP Cen |140025.2-554012 |M | 14.5 |< 16.5 | |p |25390. | | 188.5 | | |00030 GSC | +190234 |IQ Cen *|140034.4-541616 |EA/SD | 12.7 | 15.7 | |p |27901.403 | | 2.359520 | | |00013 00013| +190235 |IR Cen |140020.4-523909 |M: | 15.1 |< 16.5 | |p |24643. | | 260. | | |00030 USNO | +190236 |IS Cen |140151.7-552647 |E | 15.3 | 16.0 | |p | | | | | |00030 USNO | +190237 |IT Cen |140254.2-555737 |RR | 14.0 | 14.6 | |p | | | | | |00030 GSC | +190238 |IU Cen |140730.9-564155 |CEP | 12.9 | 14.3 | |p |34572.29 | | 3.31926 |25 | |02309 00013| +190239 |IV Cen |112810.4-601027 |EA/DS: | 11.4 | 12.1 | |p |24464.62 | | 19.138 |11 *|G8 |00045 00045| +190240 |IW Cen *|113321.3-594930 |EB/KE | 12.0 | 12.4 | 12.1 |p |24776.098 | | 1.132963 | | |00045 00045| +190241 |IX Cen *|113738.5-612801 |EA/DS | 12.6 | 13.8 | |p |24950.085 | | 9.0904 |09 *| |00045 00045| +190242 |IY Cen *|113804.4-630604 |EA/DS: | 12.0 | 12.5 | |p |24679.48 | | 20.461 |18 | |00045 00045| +190243 |IZ Cen *|114119.6-621553 |DCEP | 14.28 | 15.1 | |B |26029.19 | | 5.8923 |32 | |07452 00045| +190244 |KK Cen *|114248.2-585936 |DCEP | 10.84 | 11.94 | |V |41017.51 | | 12.1803 |47 | |02309 00045| +190245 |KL Cen |114601.9-624408 |EA/SD | 12.3 | 13.6 | |p |24708.483 | | 5.29654 |04 | |00045 00045| +190246 |KM Cen *|114917.0-620406 |EW/KE | 13.0 | 13.4 | 13.3 |p |24775.681 | | 0.773320 | | |00045 00045| +190247 |KN Cen *|133636.9-643330 |DCEP | 9.28 | 10.36 | |V |36238.172 | | 34.0457 |21 | |00001 00022| +190248 |KO Cen |134209.1-640012 |S: | 13.8 | 15.2 | |p | | | | | |00047 00022| +190249 |KP Cen |135922.5-643508 |S: | 14.0 | 15.5 | |p | | | | | |00047 00022| +190250 |KQ Cen *|142525.5-635946 |SR | 12.0 | 13.5 | |p | | | | |S7,6 |00047 00022| +190251 |KR Cen |142922.5-642212 |M | 13.3 |< 16.5 | |p |26170. | | 286.6 | | |00047 00022| +190252 |KS Cen |114710.6-413145 |RRAB | 12.5 | 14.2 | |p |25995.342 | | 0.397420 |18 | |00048 00048| +190253 |KT Cen *|114805.3-622111 |EA/DM | 12.12 | 12.72 | 12.72 |V |41696.32 | | 4.130435 |12 *| |00049 00050| +190254 |KU Cen |115151.7-411710 |DSCT | 13.4 | 14.1 | |p |25995.1073 | | 0.08000536 |30 | |00051 00052| +190255 |KV Cen |115220.8-402919 |RRC | 14.0 | 14.7 | |p |25995.165 | | 0.340109 |44 | |00048 00048| +190256 |KW Cen |115507.1-443135 |RRAB | 13.3 | 13.9 | |p |25995.318 | | 0.592629 |18 | |00048 00048| +190257 |KX Cen |115914.0-401421 |RRAB | 13.4 | 14.4 | |p |25782.3235 | | 0.576153 |17 | |00048 00048| +190258 |KY Cen *|120144.3-461643 |E/KE | 13.1 | 13.5 | 13.3 |p |25350.367 | | 0.5306986 | | |00053 00048| +190259 |KZ Cen *|120155.2-461642 |CWB | 11.80 | 12.77 | |V |35219.656 | | 1.519927 |40 | |00051 00052| +190260 |LL Cen *|121458.9-400731 |EA/SD | 13.0 | 14.4 | 13.1 |p |25782.2934 | | 2.091827 |15 | |00048 00048| +190261 |LM Cen |121554.0-450743 |RRAB | 13.3 | 14.4 | |p |25995.433 | | 0.562723 |11 | |00048 00048| +190262 |LN Cen |121657.2-475937 |RRAB | 13.9 | 14.5 | |p |25995.228 | | 0.825040 |19 | |00048 00048| +190263 |LO Cen |121705.8-471343 |RRAB | 13.4 | 14.3 | |p |25995.2605 | | 0.594348 |16 | |00048 00048| +190264 |LP Cen |122216.9-414610 |EA/SD | 10.0 | 11.4 | |p |25994.2848 | | 2.472329 |08 |A9V |00048 00048| +190265 |LQ Cen |122221.4-465737 |RRAB | 13.6 | 14.6 | |p |25995.109 | | 0.612294 |13 | |00048 00048| +190266 |LR Cen *|112348.8-604954 |EA/SD | 12.15 | 13.28 | 12.30 |V |24608.5402 | | 2.095595 |17 |B8.5III |00054 00054| +190267 |LS Cen |112831.2-622839 |RRAB | 13.4 | 14.1 | |p |24921.523 | | 0.5129933 |24 | |00054 00054| +190268 |LT Cen *|112900.5-605250 |EA/DM | 9.2 | 9.6 | 9.6 |p |25028.933 | | 1.625914 |15 |B9V |00054 CoD | +190269 |LU Cen *|112902.8-594007 |EA | 13.0 | 13.7 | |p |24480.356 | | 1.554970 |13 | |00054 00054| +190270 |LV Cen *|113317.8-631433 |DCEP | 13.3 | 14.7 | |B |26926.25 | | 4.97513 |25 | |07452 00054| +190271 |LW Cen *|113731.9-632052 |EB/KE | 8.90 | 9.65 | 9.6 |V |24824.462 | | 1.0025674 | |B1.5V |00054 04641| +190272 |LX Cen *|114003.2-591507 |EA/SD: | 13.5 | 13.9 | 13.55 |p |24634.17 | | 4.33734 |15 | |00054 00054| +190273 |LY Cen |114848.0-584213 |M | 11.8 |< 15.0 | |p |25380. | | 345. | | |00054 00054| +190274 |LZ Cen *|115032.5-604738 |EB/DM | 8.10 | 8.50 | 8.50 |V |26096.384 | | 2.757717 | |B2III |00049 04641| +190275 |MM Cen *|115455.9-605042 |EA/DM | 12.3 | 12.8 | 12.7 |p |24860.248 | | 2.094477 |23 | |00054 00054| +190276 |MN Cen *|112803.0-612441 |EA/DM | 8.6 | 9.0 | 8.7 |p |24918.58 | | 3.48916 |17 |B2/3V |00055 04641| +190277 |MO Cen |114201.2-614021 |EA/DS: | 9.8 | 10.1 | |p |24294.33 | | 9.6565 | |B8 |00055 04641| +190278 |MP Cen *|114345.8-614436 |EB/DM | 9.7 | 10.4 | 10.0 |p |29113.350 | | 2.9934466 | |B3 |00007 04641| +190279 |MQ Cen *|114415.6-614259 |EA/DM | 9.7 | 10.1 | 10.1 |p |29113.387 | | 3.6869340 |20 |B6 |00007 04641| +190280 |MR Cen *|114509.7-605811 |EB/DM | 10.2 | 10.8 | 10.5 |p |24296.44 | | 3.91373 | |B7 |00055 04641| +190281 |MS Cen |115432.4-610610 |EA/DS: | 13.6 | 14.1 | |p |23992.19 | | 8.7258 |17 | |00055 00055| +190282 |MT Cen |114359.1-603342 |NA | 8.5 |< 15. | |p |26473. |1931 | | | |00056 00056| +190283 |MU Cen |121253.9-442816 |UGSS | 11.8 | 15.0 : | |V | | | 44.9 | |pec(UG) |05919 08852| +190284 |MV Cen *|122406.8-485349 |EW/DW | 14.2 | 14.7 | 14.6 |p |25984.4059 | | 0.3381606 | | |00057 00058| +190285 |MW Cen |122823.1-482031 |EA/SD | 12.0 | 14.0 | |p |25984.4208 | | 2.2815304 |12 : | |00059 00058| +190286 |MX Cen |122958.4-492250 |EA/SD: | 13.5 | 14.5 | |p |25984.3102 | | 1.199676 |18 *| |00057 00058| +190287 |MY Cen *|131104.5-613738 |DCEP | 11.64 | 12.60 | |V |34940.145 | | 3.71861 |27 | |02309 06286| +190288 |MZ Cen |131401.8-641930 |CEP | 11.21 | 11.99 | |V |26063.5 | | 10.353 | | |00014 06286| +190289 |NN Cen |131415.6-605247 |UGSS | 13.2 | 17.5 | |p | | |( 50. ) | | | 08852| +190290 |NO Cen *|131457.3-591021 |E/SD | 14.0 | 15.1 | 14.2 |p |26485.30 | | 1.69524 | | |00014 USNO | +190291 |NP Cen *|131638.0-621248 |EA/SD | 9.8 | 10.9 | 10.2 |p |27946.241 | | 2.852993 |14 |A5 |00013 CoD | +190292 |NQ Cen |131700.8-585607 |E/SD: | 13.7 | 14.3 | |p |28642.472 | | 1.320350 | | |00013 00013| +190293 |NR Cen |131927.2-600420 |E/KW: | 14.2 | 14.7 | |p |26062.51 | | 0.48085 | | |00014 06286| +190294 |NS Cen |132138.3-583011 |M | 11.6 |< 16.5 | |p |26190. | | 345.5 | | |00014 USNO | +190295 |NT Cen |132216.0-614611 |E/SD: | 14.4 | 15.2 | |p |28039.27 | | 1.847308 | | |00013 00013| +190296 |NU Cen |132317.1-643442 |M: | 14.6 |< 16.5 | |p |25650. | | 620. : | | |00014 06286| +190297 |NV Cen |132301.1-564826 |E/SD: | 13.4 | 14.1 | |p |26474.41 | | 2.5054 | | |00014 06286| +190298 |NW Cen |132321.9-604828 |M | 13.7 |< 18. | |p |25630. | | 384. | | |00014 06286| +190299 |NX Cen |132433.3-624202 |E/SD: | 13.0 | 13.6 | |p |24700.51 | | 1.7605 | | |00014 06286| +190300 |NY Cen *|132548.0-625505 |EB/SD | 11.8 | 12.8 | 11.9 |p |28594.883 | | 1.2952007 | | |00013 00013| +190301 |NZ Cen |132602.6-631828 |M | 12.3 |< 18.5 | |p |25620. | | 382. | |Se |00014 06286| +190302 |OO Cen *|132630.2-630945 |DCEP | 11.62 | 12.47 | |V |35611.13 | | 12.8805 |36 | |02309 00013| +190303 |OP Cen *|132642.0-584606 |EW/KW | 13.1 | 13.8 | 13.8 |p |28403.208 | | 0.4623130 | | |00013 00013| +190304 |OQ Cen |132713.3-584808 |M | 13.7 |< 16.5 | |p |25430. | | 547. | | |00014 06286| +190305 |OR Cen |132749.5-621951 |SR | 14.0 | 14.8 | |p |26120. | | 129. | | |00014 06286| +190306 |OS Cen |132740.6-592024 |M | 11.0 |< 16. | |p |21344. | | 433. | |M6e |00014 06286| +190307 |OT Cen |133428.1-635447 |M | 13.5 |< 16.5 | |p |25670. | | 383. | | |00014 06286| +190308 |OU Cen *|133500.6-615819 |EB/DM | 10.5 | 11.2 | 10.9 |p |27904.614 | | 2.014028 | | |00013 CoD | +190309 |OV Cen *|133556.5-625106 |EB/KE | 10.5 | 11.1 | 11.0 |p |28402.7059 | | 1.1371994 | | |00013 CPD | +190310 |OW Cen |134154.7-622023 |M | 12.0 |< 18. | |p |26020. | | 290. | |M4e |00014 06286| +190311 |OX Cen *|134239.8-640152 |EA/KW | 13.7 | 14.8 | 14.3 |p |26159.24 | | 0.46698 | | |00014 06286| +190312 |OY Cen |134259.4-581213 |M | 14.2 |< 16.5 | |p |26380. | | 353.5 | | |00014 06286| +190313 |OZ Cen |134649.8-591558 |EW/KW | 12.6 | 13.1 | |p |26118.32 | | 0.35577 | | |00014 06286| +190314 |PP Cen |134739.4-605909 |M | 10.8 |< 13.7 | |V |53551. | | 317. | | |00001 06286| +190315 |PQ Cen |135021.9-634658 |E/SD: | 10.5 | 11.2 | |p |26159.31 | | 1.05716 | | |00014 CPD | +190316 |PR Cen |135332.8-631148 |E/SD: | 14.0 | 14.6 | |p |25684.51 | | 1.17505 | | |00014 06286| +190317 |PS Cen |135422.4-585339 |E/SD | 14.8 | 16.0 | |p |26172.20 | | 0.9621 | | |00014 06286| +190318 |PT Cen |135541.7-605334 |EA/SD | 14.5 | 16.5 | |p |28658.47 | | 2.500255 | | |00013 00013| +190319 |PU Cen |135553.8-595606 |E/SD | 13.1 | 14.3 | |p |28402.22 | | 1.145229 | | |00013 00013| +190320 |PV Cen |135635.6-584716 |E/SD | 11.4 | 12.5 | |p |25684.50 | | 1.91733 | | |00014 06286| +190321 |PW Cen |135640.0-573535 |E/SD: | 11.3 | 11.8 | |p |24682.59 | | 2.5034 | | |00014 06286| +190322 |PX Cen |135712.5-602232 |E/SD: | 14.0 | 14.9 | |p |26179.28 | | 1.18078 | | |00014 06286| +190323 |PY Cen |135800.9-581522 |M: | 15.5 |< 16.5 | |p |24700. | | 390. : | | |00014 06286| +190324 |PZ Cen |135831.1-600526 |E/SD: | 13.8 | 14.6 | |p |26204.23 | | 1.4396 | | |00014 06286| +190325 |QQ Cen |135849.3-585203 |SR | 14.3 | 16.7 | |p |25680. | | 323. | | |00014 06286| +190326 |QR Cen |135951.9-593844 |E/SD: | 13.1 | 13.7 | |p |25413.27 | | 1.14432 | | |00014 06286| +190327 |QS Cen *|140213.8-624752 |EA/SD | 12.1 | 13.7 | |p |27951.30 | | 4.9389 |07 | |00013 00013| +190328 |QT Cen *|140326.1-623552 |E/SD | 13.2 | 14.7 | 13.4 |p |28941.973 | | 4.596359 | | |00013 00013| +190329 |QU Cen |140333.4-631741 |M | 12.5 |< 16.5 | |p |26090. | | 220. | |Me |00014 06286| +190330 |QV Cen |140556.2-574514 |RR | 13.3 | 14.0 | |p |26485.30 | | 0.45649 | | |00014 UCAC2| +190331 |QW Cen |140637.2-584233 |M: | 15.0 |< 16.5 | |p |26130. | | 410. | | |00014 06286| +190332 |QX Cen |140709.9-573744 |M | 12.3 |< 16.5 | |p |26400. | | 341. | | |00014 GSC | +190333 |QY Cen *|140817.2-614410 |DCEP | 11.28 | 12.36 | |V |28228.12 | | 17.7524 |32 | |00013 00013| +190334 |QZ Cen *|140916.1-594724 |RR | 13.0 | 14.5 | |p |25382.34 | | 0.50202 | | |00014 06286| +190335 |V0335 Cen |141032.6-591939 |SRA | 14.3 | 16.1 | |p |26175. | | 256. | |S |00014 06286| +190336 |V0336 Cen |141302.4-572217 |SR | 12.7 | 14.3 | |p |25750. | | 240. | | |00014 06286| +190337 |V0337 Cen |141710.8-630144 |E/SD: | 12.1 | 12.7 | |p |26479.37 | | 1.86435 | | |00014 06286| +190338 |V0338 Cen |142105.4-632859 |E/SD: | 14.7 | 15.5 | |p |25413.20 | | 1.1127 | | |00014 06286| +190339 |V0339 Cen *|142148.5-613259 |DCEP | 8.40 | 9.17 | |V |40768.15 | | 9.4660 |50 |F7II-G5 |00001 05288| +190340 |V0340 Cen |142324.9-633321 |M | 13.6 |< 16.5 | |p |26180. | | 357. | | |00014 USNO | +190341 |V0341 Cen |142619.5-633906 |M | 13.3 |< 16.5 | |p |25690. | | 342. | | |00014 USNO | +190342 |V0342 Cen |110714.6-555744 |IS | 14.6 |< 16.0 | |p | | | | | |00060 00060| +190343 |V0343 Cen *|112653.3-621155 |EB/KE | 13.1 | 13.7 | 13.5 |p |25301.535 | | 0.5877106 | | |00061 00061| +190344 |V0344 Cen *|112323.0-605138 |EA/SD: | 12.2 | 13.0 | 12.3 |p |24516.663 | | 1.891912 |16 |F5 |00062 00062| +190345 |V0345 Cen |114253.9-480645 |RV | 13.5 | 15.1 | |p |25645. | | 80. | | |00053 00053| +190346 |V0346 Cen *|114249.7-622605 |EA/DM | 8.48 | 8.9 | 8.8 |B |21963.674 | | 6.32227 |11 |B3II/III |00063 07715| +190347 |V0347 Cen |114503.9-470338 |M | 14.0 |< 16.5 | |p |25615. | | 268. | | |00053 00053| +190348 |V0348 Cen *|114828.9-434653 |EA/SD | 10.7 | 13.4 | |p |25355.4320 | | 2.1524026 |11 |A |00053 00053| +190349 |V0349 Cen *|114948.8-410601 |EW/KW | 13.9 | 14.5 | 14.5 |p |25362.3752 | | 0.45563292 | | |00053 00053| +190350 |V0350 Cen *|115011.1-633911 |EA/KE: | 10.1 | 10.6 | 10.3 |p |30868.561 | | 3.216929 |25 | |01123 CPD | +190351 |V0351 Cen *|115042.8-475658 |SR | 14.0 | 15.5 | |p |26523. | | 172. | | |00001 00065| +190352 |V0352 Cen |115113.9-493031 |M | 12.3 | 15.1 | |p |26124. | | 240.7 | |Me |00065 00065| +190353 |V0353 Cen |115141.7-450459 |EA/SD | 13.0 | 15.3 | |p |26171.5770 | | 6.68525 |11 | |00065 00065| +190354 |V0354 Cen |115143.3-475613 |M | 13.6 |< 16. | |p |25738. | | 150.4 | |Ce |00065 00065| +190355 |V0355 Cen |115356.0-451150 |SR | 12.0 | 13.1 | |p |26130. | | 81. : | | |00065 00065| +190356 |V0356 Cen *|115516.8-490847 |EW/KW | 14.7 | 15.0 | 15.0 |p |25351.3581 | | 0.3109235 | | |00053 00053| +190357 |V0357 Cen |115553.9-395336 |SR | 13.8 | 14.7 | |p | | | 90. : | | |00066 00065| +190358 |V0358 Cen *|115731.4-491033 |SR | 13.9 | 15.8 | |p |26039. | | 231.9 | | |00065 00065| +190359 |V0359 Cen |115815.3-414608 |N: | 13.8 |< 16. | |p |26087. :|1930 | | | |00065 00065| +190360 |V0360 Cen |115954.5-423124 |M | 13.2 | 15.7 | |p |26015. | | 187.1 | | |00065 00065| +190361 |V0361 Cen |120159.4-490014 |SR | 14.2 | 16.2 | |p |25347. | | 174.5 | | |00053 00053| +190362 |V0362 Cen |120333.1-432344 |M | 12.7 |< 16. | |p |25973. | | 275.9 | | |00065 00065| +190363 |V0363 Cen |120520.2-471001 |EA/SD | 13.1 | 15.1 | |p |25354.384 | | 2.862479 |13 | |00053 00053| +190364 |V0364 Cen |120522.5-474429 |RRAB | 15.0 | 16.2 | |p |25350.3607 | | 0.5513845 |15 | |00053 00053| +190365 |V0365 Cen *|120913.8-482821 |EA/DS: | 14.0 | 15.0 | |p |25361.44 | | 9.5508 |12 | |00053 00053| +190366 |V0366 Cen |120912.9-464849 |M | 11.8 | 16.1 | |p |26124. | | 247.7 | | |00065 00065| +190367 |V0367 Cen |121105.5-404705 |M | 13.1 |< 16. | |p |26125. | | 265.2 | | |00065 00065| +190368 |V0368 Cen |121305.8-501224 |SR | 10.2 | 11.0 | |p |27615. | | 175. | |M6/7(III) |00067 05464| +190369 |V0369 Cen |121459.7-544913 |SRB | 8.02 |( 0.51 )| |V | | | 70. : | |M5II |08837 CoD | +190370 |V0370 Cen |121750.4-462655 |M | 13.2 |< 16.7 | |p |25700. | | 403. | | |00053 05464| +190371 |V0371 Cen |121825.4-430307 |RR | 13.5 | 15.3 | |p |26174.2006 | | 0.44611598 |40 | |00065 00065| +190372 |V0372 Cen |122018.3-443142 |M | 11.0 | 16.2 | |p |25973. | | 316.7 | |Me |00065 08087| +190373 |V0373 Cen *|122604.9-454929 |UG | 13.5 | 15.8 | |p | | | | |pec(UG) |00065 08852| +190374 |V0374 Cen |122651.1-432058 |RRAB | 14.7 | 15.8 | |p |26173.9349 | | 0.5435242 |10 | |00065 00065| +190375 |V0375 Cen |123249.1-462457 |M | 12.2 |< 16.0 | |p |25695. | | 280.0 | |Me |00053 00053| +190376 |V0376 Cen |123336.3-452505 |RRAB | 15.0 | 15.6 | |p |26174.0350 | | 0.4662865 |11 | |00065 00065| +190377 |V0377 Cen *|125717.5-480338 |EA/DS | 8.4 | 9.1 | |p |30393.956 | | 8.251658 |06 |A2V |01123 CoD | +190378 |V0378 Cen |131858.3-622256 |DCEPS | 8.27 | 8.68 | |V |34917.113 | | 6.45930 |32 |F5Iab/b-G5 |02309 CoD | +190379 |V0379 Cen *|132521.3-594653 |EA/SD | 8.8 | 9.6 | 8.9 |p |28402.23 | | 1.874685 |18 *|B5V |00013 05464| +190380 |V0380 Cen *|132723.4-615226 |EA/KE | 9.7 | 10.2 | 10.0 |p |27807.601 | | 1.0872172 |20 *|B5V |00013 06291| +190381 |V0381 Cen |135044.3-573450 |CEP | 7.32 | 8.01 | |V |36201.953 | | 5.07878 |28 |F6-G7(F8Ib/II) |02309 CoD | +190382 |V0382 Cen |113354.6-605033 |EA/SD: | 13.3 | 13.9 | |p |25329.484 | | 6.0137 |04 *| |00069 00069| +190383 |V0383 Cen *|113749.5-603551 |EA/DM | 13.1 | 13.7 | 13.6 : |p |25352.31 | | 6.78459 |03 *| |00070 00070| +190384 |V0384 Cen *|113917.3-621029 |EA/DM | 11.8 | 12.4 | 12.2 |p |25056.372 | | 12.63524 |03 | |00071 00071| +190385 |V0385 Cen *|114033.9-483923 |EA/SD: | 12.9 | 13.5 | 13.0 |p |25361.4638 | | 1.062665 |18 | |00072 00072| +190386 |V0386 Cen |114056.1-483306 |EA/SD: | 14.6 | 15.2 | |p |25650.331 | | 1.383374 |25 | |00072 00072| +190387 |V0387 Cen |114401.1-631122 |EA/DS: | 12.9 | 13.7 | |p |25393.269 | | 12.77143 |02 | |00070 00070| +190388 |V0388 Cen *|120150.2-453815 |EB/DM | 14.7 | 15.7 | 15.7 |p |25354.4518 | | 4.4633148 | | |00072 00072| +190389 |V0389 Cen |120850.1-450753 |M | 14.6 |< 17. | |p |25415. | | 278.5 | | |00072 00072| +190390 |V0390 Cen |120935.7-481625 |M: | 15.5 |< 16. | |p |25646. | | 366. : | | |00072 00072| +190391 |V0391 Cen |121933.2-481616 |SR | 14.0 | 15.8 | |p |25338. | | 284. | | |00072 00072| +190392 |V0392 Cen |122432.7-472204 |IS | 15.0 | 16.0 | |p | | | | | |00065 00065| +190393 |V0393 Cen |122446.7-443353 |EA/SD: | 13.3 | 13.9 | |p |25362.417 | | 3.185704 |10 | |00072 00072| +190394 |V0394 Cen |122957.7-470725 |RRAB | 15.2 | 16.1 | |p |25354.399 | | 0.5223834 | | |00072 00072| +190395 |V0395 Cen |123500.9-475822 |SR | 12.2 | 14.2 | |p |25500. | | 370. |39 | |00072 00072| +190396 |V0396 Cen |131725.0-613502 |LC: | 10.00 | 10.6 | |B | | | | |M4Ia-Iab-M6 |00014 05464| +190397 |V0397 Cen |131744.2-624121 |LB: | 14.3 | 15.8 | |p | | | | |M4(S:) |00014 06286| +190398 |V0398 Cen |131955.2-604227 |SRA | 11.9 | 13.9 | |p |27843. | | 264. | | |04174 04174| +190399 |V0399 Cen *|132200.9-594607 |EA/SD | 13.0 | 13.7 | 13.1 |p |28658.375 | | 1.746685 |15 | |00013 00013| +190400 |V0400 Cen |132231.8-620925 |SR: | 14.2 | 15.1 | |p | | | | | |00014 06286| +190401 |V0401 Cen |132524.4-602751 |LB: | 11.1 | 11.6 | |p | | | | |M |00014 CoD | +190402 |V0402 Cen |132823.3-633502 |EA/SD: | 9.30 | 9.8 | |B |28330.383 | | 3.71996 |09 : |B9IV |00016 06965| +190403 |V0403 Cen |132927.3-591856 |SR: | 11.6 | 13.1 | |p | | | | | |00014 06286| +190404 |V0404 Cen |133243.3-600204 |E | 12.0 | 12.6 | |p | | | | | |00014 06286| +190405 |V0405 Cen *|133517.1-601935 |RV: | 12.2 | 13.7 | |p | | | | | |04174 04174| +190406 |V0406 Cen |134129.9-635545 |E | 12.0 | 12.5 | |p | | | | | |00014 06286| +190407 |V0407 Cen |134312.2-631642 |E | 13.9 | 14.5 | |p | | | | | |00014 06286| +190408 |V0408 Cen |134539.0-621240 |E | 14.7 | 15.3 | |p | | | | | |00014 06286| +190409 |V0409 Cen |134542.0-585754 |M: | 15.0 |< 16.5 | |p | | | | | |00014 06286| +190410 |V0410 Cen |134917.8-623519 |SR: | 12.6 | 13.5 | |p | | | | | |00014 06286| +190411 |V0411 Cen |135156.5-640356 |L | 13.0 | 13.9 | |p | | | | | |00014 GSC | +190412 |V0412 Cen *|135728.1-574240 |LB | 7.1 | 9.6 | |B | | | | |M3Iab/b-M7 |00014 06965| +190413 |V0413 Cen |140440.6-585332 |E | 9.93 | 10.3 | |B | | | | |B8IV-V |00014 05288| +190414 |V0414 Cen |140835.2-620239 |E | 15.2 | 16.0 | |p | | | | | |00014 06286| +190415 |V0415 Cen |141319.8-445338 |CWA | 12.5 | 14.3 | |p |25771.3 | | 26.735 |38 | |00073 06286| +190416 |V0416 Cen |141545.3-604354 |EA/DS: | 11.3 | 12.1 | |p |30794.34 | | 8.2108 | | |00013 00013| +190417 |V0417 Cen |141559.9-615350 |L | 11.7 | 13.5 | |p | | | | |ea |00014 06286| +190418 |V0418 Cen |142118.6-641430 |LC | 8.7 | 9.5 | |p | | | | |K4II |00014 CoD | +190419 |V0419 Cen *|113054.4-565356 |DCEPS | 7.98 | 8.36 | |V |40760.28 | | 5.50691 |42 |F7II-K0 |00001 CoD | +190420 |V0420 Cen *|113950.3-475751 |CWA | 9.37 | 10.60 | |V |25350.67 | | 24.7678 |27 | |02309 00074| +190421 |V0421 Cen |114744.5-461038 |M | 13.1 |< 15.4 | |p |25678. | | 480. | | |00074 00074| +190422 |V0422 Cen |115152.0-422751 |SRA | 11.6 | 12.1 | |p |25382. | | 193. | |M4e |00074 00074| +190423 |V0423 Cen |120455.3-411338 |M | 12.2 |< 16.0 | |p |26488. | | 325. | | |00075 USNO | +190424 |V0424 Cen |120617.3-491402 |M | 12.4 |< 15.2 | |p |21310. | | 287.4 | | |00074 00074| +190425 |V0425 Cen |121415.1-431736 |M | 11.6 |< 15.9 | |p |25348. | | 287. | |Me |00074 00074| +190426 |V0426 Cen |121753.4-410457 |SR | 14.2 | 15.7 | |p |25645. | | 165. | | |00075 GSC | +190427 |V0427 Cen *|122240.0-441543 |SR | 14.0 | 15.8 | |p |25720. | | 192. | | |00074 00074| +190428 |V0428 Cen |122345.5-490944 |SR | 13.3 | 14.9 | |p |27600. | | 104.5 | | |00001 00074| +190429 |V0429 Cen |122638.9-452215 |SR | 14.0 | 15.2 | |p |25348. | | 104. | | |00075 GSC | +190430 |V0430 Cen |123053.6-402130 |RRAB | 14.2 | 15.4 | |p |25354.3925 | | 0.4563941 |15 | |00074 00074| +190431 |V0431 Cen |123234.2-444824 |M | 12.1 |< 16.4 | |p |25369. | | 265.5 | | |00074 00074| +190432 |V0432 Cen |123406.4-401752 |M: | 14.0 |< 15.5 | |p |25353. | | 317. | | |00075 USNO | +190433 |V0433 Cen |111009.1-355910 |M | 11.9 |< 16.5 | |p |27910. | | 367. | |Me |00076 05464| +190434 |V0434 Cen |111203.7-360948 |LB | 10.4 | 11.0 | |p | | | | |K5 |00076 05464| +190435 |V0435 Cen |111224.0-392203 |M | 11.8 | 15.4 | |p |27850. | | 211. | |Me |00076 06286| +190436 |V0436 Cen *|111400.2-374048 |UGSU | 11.5 | 15.2 | |B | | |( 32. ) | |pec(UG) |00001 08852| +190437 |V0437 Cen |111741.4-395546 |M | 10.7 | 15.5 | |p |27850. | | 350. | |Me |00076 06286| +190438 |V0438 Cen |111802.9-381107 |E | 11.8 | 12.2 | |p | | | | | |00076 06286| +190439 |V0439 Cen |112240.4-373942 |SR | 12.8 | 14.2 | |p |28300. | | 274. | | |00076 GSC | +190440 |V0440 Cen *|112257.6-614736 |EA/SD | 13.6 | 15.1 | |B |24387.325 | | 3.313506 |12 |B |00077 00077| +190441 |V0441 Cen |112400.2-585304 |EA/SD | 13.1 | 14.6 | |p |24313.091 | | 2.022493 |12 *| |00077 00077| +190442 |V0442 Cen |112452.0-355437 |UGSS | 11.89 |< 16.5 | |V | | |( 25. ) | |pec(UG) |05983 08852| +190443 |V0443 Cen *|112522.5-593740 |EA/DS: | 12.8 | 15.3 | |p |25307.940 | | 8.893006 |10 | |00077 00077| +190444 |V0444 Cen |122943.7-342202 |RR | 12.5 | 13.3 | |p | | | 0.53 | | |00078 06286| +190445 |V0445 Cen |123133.9-352924 |E/DS: | 11.9 | 13.7 | |p | | | 14.1 | |Me |00078 06286| +190446 |V0446 Cen |123135.7-374754 |RR | 14.5 | 16.0 | |p | | | 0.52 | | |00078 06286| +190447 |V0447 Cen |123153.2-335236 |RR | 15.0 | 15.5 | |p | | | 0.46 | | |00078 06286| +190448 |V0448 Cen |123540.5-353811 |EW/KW | 13.6 | 14.3 | |p | | | 0.33 | | |00078 06286| +190449 |V0449 Cen |123819.8-354629 |SRD | 10.3 | 11.8 | |p |39614. | | 123. | |G8 |04514 06286| +190450 |V0450 Cen |124004.6-341618 |RR | 13.8 | 14.8 | |p | | | 0.465 | | |00078 06286| +190451 |V0451 Cen |124147.3-345542 |M | 12.0 | 15.0 | |p | | | 201. | | |00078 08087| +190452 |V0452 Cen |124149.7-350047 |RR | 14.5 | 15.5 | |p | | | 0.406 | | |00078 USNO | +190453 |V0453 Cen |124207.9-373926 |SR | 13.0 | 14.0 | |p | | | 118. | | |00078 06286| +190454 |V0454 Cen |124216.1-342451 |RR | 14.5 | 15.3 | |p | | | 0.52 | | |00078 USNO | +190455 |V0455 Cen |124401.1-304215 |SR | 11.6 | 13.7 | |V |42832. | | 108.3 | | |06577 06286| +190456 |V0456 Cen |124430.4-312122 |RRC | 15.1 | 16.0 | |V |43938.537 | | 0.343410 |27 | |06577 06286| +190457 |V0457 Cen |124503.1-303647 |RRAB | 14.5 | 15.7 | |V |42992.327 | | 0.412602 |15 | |06577 06286| +190458 |V0458 Cen |124627.9-313316 |RR | 14.6 | 16.0 | |p | | | 0.574 | | |00078 06286| +190459 |V0459 Cen |124705.3-311932 |RR | 14.8 | 16.3 | |p | | | 0.52 | | |00078 06286| +190460 |V0460 Cen |124713.9-335931 |RR | 14.6 | 15.5 | |p | | | 0.50 | | |00078 06286| +190461 |V0461 Cen |124715.9-322842 |RR | 14.7 | 16.0 | |p | | | 0.68 | | |00078 06286| +190462 |V0462 Cen |124715.5-311339 |EW/KE | 13.5 | 14.2 | |p | | | 0.65 | | |00078 06286| +190463 |V0463 Cen |124728.0-371453 |RR | 13.8 | 15.0 | |p | | | 0.491 | | |00078 06286| +190464 |V0464 Cen |124739.8-314415 |RR | 14.8 | 16.0 | |p | | | 0.598 | | |00078 06286| +190465 |V0465 Cen |124744.8-341022 |RR | 14.5 | 15.3 | |p | | | 0.62 | | |00078 06286| +190466 |V0466 Cen |124820.7-332410 |RR | 13.8 | 14.8 | |p | | | 0.573 | | |00078 06286| +190467 |V0467 Cen | | | | | | | | | | | | |=V0746 Cen +190468 |V0468 Cen |124832.8-302840 |RR | 14.7 | 15.5 | |p | | | 0.57 | | |00078 06286| +190469 |V0469 Cen |124834.2-304019 |RR | 14.7 | 16.0 | |p | | | 0.538 | | |00078 06286| +190470 |V0470 Cen |124854.3-313332 |RR | 13.6 | 14.5 | |p | | | 0.420 | | |00078 06286| +190471 |V0471 Cen |124903.3-331542 |SR | 13.0 | 14.5 | |p | | | 90. | | |00078 06286| +190472 |V0472 Cen |124912.8-341553 |EB/KW: | 12.7 | 13.2 | |p | | | 0.40 | | |00078 06286| +190473 |V0473 Cen |125037.2-311301 |M | 12.4 |< 16.0 | |p | | | 224. | |Me |00078 06286| +190474 |V0474 Cen |125112.5-354931 |RR | 14.5 | 15.8 | |p | | | 0.515 | | |00078 06286| +190475 |V0475 Cen |125208.3-323620 |RR | 15.0 | 16.2 | |p | | | 0.503 | | |00078 06286| +190476 |V0476 Cen |125215.0-345708 |M | 12.0 |< 16.0 | |p | | | 270. | | |00078 06286| +190477 |V0477 Cen |125328.4-331908 |RR | 14.3 | 15.7 | |p | | | 0.45 | | |00078 06286| +190478 |V0478 Cen |125353.1-313943 |RR | 14.0 | 15.0 | |p | | | 0.50 | | |00078 06286| +190479 |V0479 Cen |125401.3-324134 |RR | 14.4 | 15.2 | |p | | | 0.517 | | |00078 06286| +190480 |V0480 Cen |125422.1-371017 |RR | 12.7 | 14.0 | |p | | | 0.52 | | |00078 06286| +190481 |V0481 Cen |125433.1-304459 |RR | 13.3 | 14.8 | |p | | | 0.60 | | |00078 06286| +190482 |V0482 Cen |125443.1-325004 |RR | 15.3 | 16.5 | |p | | | 0.496 | | |00078 06286| +190483 |V0483 Cen |125643.0-350702 |RR | 14.3 | 15.0 | |p | | | 0.610 | | |00078 06286| +190484 |V0484 Cen |125702.6-365450 |M | 13.5 |< 16.0 | |p | | | 285. | |Me |00078 06286| +190485 |V0485 Cen |125723.3-331207 |UG | 12.9 |< 16.5 | |p | | |( 12. :) | | |04063 08852| +190486 |V0486 Cen |125759.6-341046 |RR | 14.2 | 15.0 | |p | | | 0.587 | | |00078 06286| +190487 |V0487 Cen |125820.1-315903 |M | 11.8 | 15.5 | |p | | | 260. | | |00078 UCAC2| +190488 |V0488 Cen |125908.8-353221 |RR | 14.5 | 15.5 | |p | | | 0.555 | | |00078 06286| +190489 |V0489 Cen |130139.1-301712 |RR | 13.3 | 14.8 | |p | | | 0.595 | | |00078 06286| +190490 |V0490 Cen |130352.0-335638 |RR | 13.5 | 14.8 | |p | | | 0.627 | | |00078 08613| +190491 |V0491 Cen *|113459.0-573015 |SR | 11.3 | 12.5 | |p |27892. | | 202. | |Me |00016 02338| +190492 |V0492 Cen |115341.0-531323 |M | 11.2 | 15.2 | |p |28320. | | 330. | | |00016 GSC | +190493 |V0493 Cen |121544.4-512852 |M: | 11.5 |< 13.5 | |p |28326. | | 220. | | |00016 05464| +190494 |V0494 Cen |125032.4-381632 |RRAB | 13.1 | 14.2 | |V |34240.225 | | 0.780149 |09 | |00080 02338| +190495 |V0495 Cen *|130134.8-560531 |EA/DS | 10.4 | 11.9 | 10.6 |p |29393.686 | | 33.4871 |09 |Be |00081 00081| +190496 |V0496 Cen *|130310.7-605239 |DCEP | 9.62 | 10.24 | |V |40773.38 | | 4.42419 |29 |G3 |00001 CoD | +190497 |V0497 Cen |131758.0-414026 |M | 10.8 |< 13.5 | |p |28389. | | 335. | |Me |00016 CPD | +190498 |V0498 Cen *|134225.1-450554 |EA/SD: | 10.3 | 11.3 | |p |28275.35 | | 6.30038 | | |00016 CoD | +190499 |V0499 Cen *|135514.8-431425 |RRAB | 10.36 | 11.54 | |V |41126.248 | | 0.5212100 |12 |A3-F5 |07984 06286| +190500 |V0500 Cen |140914.5-401503 |M | 11.0 | 15.8 | |p |26045. | | 225. | | |00073 08613| +190501 |V0501 Cen |141150.0-435631 |RR | 12.7 | 14.3 | |p |25774.360 | | 0.45385 | | |00073 06286| +190502 |V0502 Cen |141209.2-401025 |M | 11.8 | 16.0 | |p |25740. | | 209. | |Me |00073 08613| +190503 |V0503 Cen |141245.2-402346 |RRAB | 13.8 | 15.0 | |p |25707.480 | | 0.52342 | | |00073 08613| +190504 |V0504 Cen *|141249.2-402138 |RCB | 12.0 |< 18.0 | |p | | | | | |00073 08613| +190505 |V0505 Cen |141301.2-453309 |M | 13.5 |< 16.5 | |p |26045. | | 296. | | |00073 06286| +190506 |V0506 Cen *|141314.7-410237 |M | 14.0 |< 16.3 | |p |25740. | | 257. | | |00073 USNO | +190507 |V0507 Cen |141437.6-454846 |SRA | 12.8 | 15.0 | |p |26900. | | 370. | |Me |00073 06286| +190508 |V0508 Cen *|141456.7-413554 |EW/KW | 12.7 | 13.2 | 13.2 |p |25707.535 | | 0.491766 | | |00073 08613| +190509 |V0509 Cen |141610.1-421950 |RR | 15.4 | 16.5 | |p | | | | | |00073 06286| +190510 |V0510 Cen |141701.1-404016 |L | 13.5 | 14.7 | |p | | | | | |00073 08613| +190511 |V0511 Cen |141724.0-374241 |M | 12.8 | 15.5 | |p |26920. | | 240. | | |00073 06286| +190512 |V0512 Cen |141929.9-384245 |E | 11.5 | 12.0 | |p | | | | | |00073 06286| +190513 |V0513 Cen |141931.2-385129 |RRAB | 12.8 | 14.7 | |p |28262.590 | | 0.49896 | | |00073 06286| +190514 |V0514 Cen |142002.0-402806 |RRAB | 15.0 | 16.2 | |p |26124.330 | | 0.61724 | | |00073 06286| +190515 |V0515 Cen |142201.9-420513 |RRAB | 14.1 | 15.4 | |p |25707.610 | | 0.57556 | | |00073 06286| +190516 |V0516 Cen |142351.7-402125 |SR | 12.0 | 13.3 | |p |26060. | | 148. | | |00073 06286| +190517 |V0517 Cen |142531.9-405334 |L | 14.0 | 14.7 | |p | | | | | |00073 06286| +190518 |V0518 Cen |142717.1-414704 |RR | 14.0 | 14.7 | |p |27981.220 | | 0.68072 | | |00073 06286| +190519 |V0519 Cen |142829.5-414155 |M | 14.2 |< 16.5 | |p |26480. | | 290. | | |00073 06286| +190520 |V0520 Cen |142842.3-391956 |M | 11.1 | 16.1 | |p |26470. | | 276. | |Me |00073 06286| +190521 |V0521 Cen |142845.0-415228 |M | 13.7 |< 16.5 | |p |26175. | | 254. | | |00073 06286| +190522 |V0522 Cen |142927.6-371344 |RR | 12.0 | 12.8 | |p |26012.590 | | 0.62364 | | |00073 06286| +190523 |V0523 Cen |142942.3-402323 |RR | 14.9 | 15.9 | |p |26125.380 | | 0.38091 | | |00073 06286| +190524 |V0524 Cen |142956.3-392230 |LB | 12.0 | 13.0 | |p | | | | | |00073 06286| +190525 |V0525 Cen |143020.3-420034 |LB | 13.7 | 14.3 | |p | | | | | |00073 06286| +190526 |V0526 Cen *|143137.2-414843 |RRAB | 14.9 | 16.1 | |p |29020.500 | | 0.56149 | | |00073 06286| +190527 |V0527 Cen *|143218.4-404913 |RR | 15.3 | 16.2 | |p |25774.340 | | 0.61149 | | |00073 USNO | +190528 |V0528 Cen |143212.8-371806 |L | 14.0 | 15.3 | |p | | | | | |00073 06286| +190529 |V0529 Cen |143219.0-380835 |RRAB | 14.3 | 15.8 | |p |25685.540 | | 0.67350 | | |00073 06286| +190530 |V0530 Cen |143257.1-405434 |M: | 14.4 |< 16.3 | |p |25720. | | 297. | | |00073 06286| +190531 |V0531 Cen |143508.5-401429 |LB | 12.0 | 13.5 | |p | | | | | |00073 06286| +190532 |V0532 Cen *|143645.0-411233 |RS: | 12.9 | 14.1 | |p | | | | |G8IV-Vea |09078 09078| +190533 |V0533 Cen |143642.8-392756 |SR | 12.8 | 14.0 | |p | | | 160. | | |00073 06286| +190534 |V0534 Cen |143733.6-393006 |RR | 13.7 | 14.6 | |p |26114.310 | | 0.62915 | | |00073 06286| +190535 |V0535 Cen |143727.4-370301 |RR | 12.1 | 12.8 | |p |25707.450 | | 0.37150 | | |00073 06286| +190536 |V0536 Cen |143751.0-373434 |E/SD: | 13.6 | 14.5 | |p |26507.270 | | 1.29263 | | |00073 06286| +190537 |V0537 Cen |143810.8-395630 |LB | 13.2 | 14.1 | |p | | | | | |00073 06286| +190538 |V0538 Cen |143813.8-402538 |RR | 12.9 | 13.5 | |p |26125.470 | | 0.60022 | | |00073 06286| +190539 |V0539 Cen |143820.9-414603 |RR | 13.5 | 14.7 | |p |28632.540 | | 0.44239 | | |00073 06286| +190540 |V0540 Cen |143836.8-401821 |ISA | 14.8 | 16.2 | |p | | | | | |00073 06286| +190541 |V0541 Cen |143926.3-374055 |M: | 14.3 |< 16.0 | |p |26080. | | 196. | | |00073 06286| +190542 |V0542 Cen |144014.4-402953 |RR | 14.5 | 15.8 | |p |25707.490 | | 0.45696 | | |00073 06286| +190543 |V0543 Cen |144105.5-422453 |SR | 14.8 | 15.6 | |p |26770. | | 165. | | |00073 06286| +190544 |V0544 Cen *|144221.2-384024 |E/SD: | 14.9 | 15.9 | |p |26063.530 | | 3.0968 | | |00073 USNO | +190545 |V0545 Cen *|144255.3-411847 |M | 12.6 |< 17. | |p |26080. | | 355. | | |00073 06286| +190546 |V0546 Cen |144310.4-404821 |L | 13.6 | 15.0 | |p | | | | | |00073 06286| +190547 |V0547 Cen |144310.6-381210 |RRAB | 14.7 | 15.7 | |p |27214.380 | | 0.64137 | | |00073 06286| +190548 |V0548 Cen |144348.9-401745 |L | 11.9 | 12.4 | |p | | | | | |00073 06286| +190549 |V0549 Cen |144352.9-395442 |M | 13.0 | 16.0 | |p |25710. | | 282. | | |00073 06286| +190550 |V0550 Cen |144458.7-372148 |M | 14.2 | 16.8 | |p |29035. | | 142.9 | | |00073 06286| +190551 |V0551 Cen |144549.0-412612 |SR | 14.9 | 16.0 | |p | | | 270. | | |00073 06286| +190552 |V0552 Cen |144630.7-415335 |RR | 14.7 | 15.3 | |p |27515.510 | | 0.65360 | | |00073 06286| +190553 |V0553 Cen *|144633.6-321015 |CWB | 8.23 | 8.80 | |V |41124.28 | | 2.06051 |41 |F4-K0Ia(C) |06480 CoD | +190554 |V0554 Cen |144734.6-371816 |RRAB | 13.8 | 15.1 | |p |28339.430 | | 0.70251 | | |00073 06286| +190555 |V0555 Cen |144805.4-414524 |SR | 13.8 | 15.3 | |p | | | 72. | | |00073 06286| +190556 |V0556 Cen |144810.5-413445 |SR | 14.5 | 15.7 | |p | | | 227. | | |00073 06286| +190557 |V0557 Cen |144814.5-381832 |M | 12.8 |< 16.5 | |p |26540. | | 307. | | |00073 06286| +190558 |V0558 Cen |144900.7-412657 |RR | 14.3 | 15.2 | |p |25736.360 | | 0.38291 | | |00073 06286| +190559 |V0559 Cen |144923.3-415038 |RRAB | 14.2 | 15.3 | |p |25707.560 | | 0.57056 | | |00073 06286| +190560 |V0560 Cen |144924.9-400429 |L | 13.9 | 14.7 | |p | | | | | |00073 06286| +190561 |V0561 Cen |144928.9-400507 |L | 13.3 | 14.2 | |p | | | | | |00073 06286| +190562 |V0562 Cen |144957.2-415558 |M | 12.0 | 15.8 | |p |25735. | | 193. | |Me |00073 06286| +190563 |V0563 Cen |144950.9-385308 |RRAB | 14.6 | 15.7 | |p |25689.460 | | 1.07688 |12 : | |00073 06286| +190564 |V0564 Cen |145014.7-373931 |RR | 14.7 | 15.6 | |p |25707.520 | | 0.48955 | | |00073 06286| +190565 |V0565 Cen *|145114.5-405833 |EW/KW | 13.5 | 14.0 | 13.9 |p |27508.585 | | 0.476148 | | |00073 06286| +190566 |V0566 Cen |145444.7-385646 |M | 11.4 |< 16.2 | |p |26140. | | 350. | |Me |00073 06286| +190567 |V0567 Cen |145557.3-385828 |M: | 14.8 |< 16.5 | |p |26090. | | 198. | | |00073 06286| +190568 |V0568 Cen |145609.9-413905 |M | 12.5 | 16.0 | |p |26560. | | 302. | | |00073 06286| +190569 |V0569 Cen |145752.9-414708 |M | 12.8 | 16.0 | |p |25710. | | 170.5 | |Me |00073 06286| +190570 |V0570 Cen |113750.1-393617 |RRAB | 13.4 | 14.4 | |p |27869.450 | | 0.60450 | | |00066 06286| +190571 |V0571 Cen |114358.9-363953 |M | 13.2 |< 16.0 | |p |27960. | | 254.4 | | |00066 06286| +190572 |V0572 Cen |115143.1-391227 |SR | 12.1 | 12.7 | |p | | | 135. | | |00066 06286| +190573 |V0573 Cen |115152.5-382113 |SR | 13.9 | 14.6 | |p | | | 300. : | | |00066 06286| +190574 |V0574 Cen *|115304.5-391355 |RRAB | 13.2 | 14.4 | |p |27893.492 | | 0.49661 | | |00066 GSC | +190575 |V0575 Cen |115429.6-384433 |M | 13.3 |< 15.5 | |p |28230. | | 400.7 | | |00066 06286| +190576 |V0576 Cen |115612.8-355931 |EW/KW | 12.6 | 13.4 | |p |43941.474 | | 0.378011 | | |00001 06286| +190577 |V0577 Cen *|115640.5-354345 |EA | 14.2 | 14.6 | 14.4 |V |53415.1300 | | 1.18713 | | |80231 GSC | +190578 |V0578 Cen |115706.9-393131 |RRAB | 13.9 | 15.0 | |p |27890.373 | | 0.64092 | | |00066 USNO | +190579 |V0579 Cen |115708.8-370559 |RRAB | 14.6 | 15.7 | |p |27919.413 | | 0.69928 | | |00066 06286| +190580 |V0580 Cen |115720.4-364022 |RR | 13.9 | 14.8 | |p |27869.450 | | 0.58714 | | |00066 06286| +190581 |V0581 Cen |115757.2-360613 |EW/KW | 14.4 | 14.8 | |p |27869.318 | | 0.34408 | | |00066 06286| +190582 |V0582 Cen |120049.6-361201 |RRAB | 14.2 | 15.4 | |p |27891.517 | | 0.62632 | | |00066 06286| +190583 |V0583 Cen |120125.6-372453 |M | 12.1 | 16.1 | |p |28340. | | 306.8 | | |00066 06286| +190584 |V0584 Cen |120219.4-384623 |RR | 13.0 | 13.9 | |p |27869.318 | | 0.45904 | | |00066 06286| +190585 |V0585 Cen *|120307.2-403922 |EA/KE | 12.8 | 13.4 | 13.0 |p |27958.214 | | 0.61426 | | |00066 06286| +190586 |V0586 Cen |120331.4-380151 |M | 12.0 |< 16.0 | |p |28280. | | 220.6 | |Me |00066 02382| +190587 |V0587 Cen |120459.9-364632 |RR | 15.2 | 15.9 | |p |27890.524 | | 0.53484 | | |00066 06286| +190588 |V0588 Cen |120834.9-392806 |M | 13.3 |< 15.5 | |p |28960. | | 284.4 | |Me |00066 USNO | +190589 |V0589 Cen |120842.3-381611 |RR | 13.4 | 14.2 | |p |27890.305 | | 0.52821 | | |00066 06286| +190590 |V0590 Cen |111225.2-365246 |RR | 11.8 | 12.8 | |p | | | | | |00076 05464| +190591 |V0591 Cen |124218.0-333408 |UG: | 14.0 | 16.0 | |p | | | | | |00078 08087| +190592 |V0592 Cen *|130830.5-592302 |SR | 11.6 | 12.8 | |p | | | 40. | | |00083 00083| +190593 |V0593 Cen *|131713.3-623734 |EW/KE | 10.5 | 11.3 | 11.2 |p |27621.2693 | | 0.7553542 | |B1V |00083 00083| +190594 |V0594 Cen *|132337.8-471107 |EW/KW | 13.7 | 14.5 | 14.4 |p |27621.539 | | 0.31709593 | | |00084 00084| +190595 |V0595 Cen |112206.2-363508 |RR | 12.2 | 13.2 | |p | | | | | |00076 06286| +190596 |V0596 Cen | | | | | | | | | | | | |=V0583 Cen +190597 |V0597 Cen |120517.3-551114 |SR | 11. | 12.5 | |p |28675. | | 220. | | |00085 02382| +190598 |V0598 Cen |121758.1-515143 |M | 11.4 |< 15.5 | |p | | | | |Me |00085 02385| +190599 |V0599 Cen |123108.9-391819 |M | 11. |< 13. | |p | | | | | |00085 02382| +190600 |V0600 Cen |123840.9-373330 |EA/SD: | 12.8 | 14.8 | |p | | | | | |00078 06286| +190601 |V0601 Cen |125651.9-340148 |EA | 12.25 | 13.9 | |V |53474.78 | | 2.533051 |10 | |00001 08613| +190602 |V0602 Cen |125959.3-583053 |EA/SD: | 10. | 11.5 | |p | | | | |B6/8III/IV |00085 03511| +190603 |V0603 Cen |130450.4-353527 |M | 11.1 |< 13.4 | |p |38898. | | 253. | |K0 |04514 CoD | +190604 |V0604 Cen |131525.4-570405 |RRAB | 14.6 | 15.6 | |p |29013.596 | | 0.5121914 |20 | |00013 00013| +190605 |V0605 Cen |131816.9-550510 |EA/DS | 13.7 | 14.9 | |p |27546.39 | | 9.8208 |05 | |00013 00013| +190606 |V0606 Cen *|132136.3-603115 |EB/KE | 9.4 | 10.25 | 9.8 |V |27952.354 | | 1.495093 | |B1/2Ib/II |00001 05464| +190607 |V0607 Cen *|132512.8-632548 |E/DM | 13.6 | 14.3 | 14.1 |p |27926.36 | | 4.44460 | | |00013 00013| +190608 |V0608 Cen *|132948.4-630633 |EB/DM | 12.7 | 13.5 | 13.1 |p |28402.239 | | 1.6287427 | | |00013 00013| +190609 |V0609 Cen *|133127.6-543524 |EW/KW | 13.3 | 13.6 | 13.6 |p |28402.2005 | | 0.45844226 | | |00013 00013| +190610 |V0610 Cen |133401.4-544631 |RRAB | 13.3 | 14.0 | |p |28017.292 | | 0.5194562 |21 | |00013 00013| +190611 |V0611 Cen |133426.1-605503 |E/SD: | 14.4 | 15.3 | |p |28066.262 | | 3.57833 | | |00013 00013| +190612 |V0612 Cen |133603.2-632434 |E/SD: | 13.0 | 13.6 | |p |27683.214 | | 5.77580 | | |00013 00013| +190613 |V0613 Cen |134116.9-622323 |E/SD: | 14.9 | 15.6 | |p |28091.00 | | 1.663700 | | |00013 00013| +190614 |V0614 Cen |134450.9-592758 |E | 10.7 | 11.0 | |p |28074.15 | | 3.47361 | |B9/A0V |00013 CoD | +190615 |V0615 Cen *|134845.2-552902 |EW/KW | 13.7 | 14.0 | 14.0 |p |28228.458 | | 0.4066346 | | |00013 00013| +190616 |V0616 Cen |134906.5-351546 |M | 13.2 | 17.1 | |p | | | | |Me |00086 02385| +190617 |V0617 Cen *|135051.3-574814 |E/DS: | 13.6 | 14.4 | 13.8 : |p |28403.87 | | 40.154 | | |00013 00013| +190618 |V0618 Cen |135036.2-454605 |M | 11. |< 15.5 | |p | | | | |Me |00085 02385| +190619 |V0619 Cen *|135350.5-614821 |E/DS | 12.5 | 14. | |p |27567.95 | | 16.4555 | | |00013 00013| +190620 |V0620 Cen |140210.6-600148 |E/SD: | 13.9 | 14.4 | |p |27692.226 | | 2.16621 | | |00013 00013| +190621 |V0621 Cen *|140249.5-624323 |EA/SD: | 9.9 | 10.4 | |p |28992.83 | | 3.68357 | |B8/9II/III |00013 CoD | +190622 |V0622 Cen |140413.2-631643 |E/SD | 14.3 | 15.5 | |p |28015.190 | | 1.741509 | | |00013 00013| +190623 |V0623 Cen |140435.8-392354 |M | 12.6 |< 15.0 | |p | | | 270. | | |00086 02385| +190624 |V0624 Cen *|140623.8-543735 |EA/SD | 14.8 | 15.6 | 14.9 |p |28341.312 | | 0.70008425 |25 *| |00013 00013| +190625 |V0625 Cen *|140637.3-564219 |EW/KW | 14.4 | 15.0 | 15.0 |p |28228.476 | | 0.4697062 | | |00013 00013| +190626 |V0626 Cen |140747.2-571040 |RRAB | 14.9 | 15.7 | |p |28447.26 | | 0.613212 |30 : | |00013 00013| +190627 |V0627 Cen *|140920.3-633436 |EA/DS: | 14.0 | 15.0 | |p |27565.37 | | 14.984 | | |00013 00013| +190628 |V0628 Cen *|140930.8-590235 |E/DM | 12.9 | 13.4 | 13.2 |p |28658.477 | | 3.74010 | | |00013 00013| +190629 |V0629 Cen |141001.4-562834 |E/SD: | 14.3 | 15.1 | |p |27871.580 | | 2.319727 | | |00013 00013| +190630 |V0630 Cen *|141142.0-625035 |EA/KE | 14.1 | 14.4 | 14.2 |p |27566.275 | | 0.7295246 |18 | |00013 00013| +190631 |V0631 Cen |141222.6-581045 |E/SD: | 13.7 | 14.4 | |p |28341.300 | | 1.052534 | | |00013 00013| +190632 |V0632 Cen |141339.6-592558 |E/SD: | 14.9 | 15.5 | |p |28658.561 | | 2.891291 | | |00013 00013| +190633 |V0633 Cen |141302.5-434818 |RR | 12.9 | 14.2 | |p | | | | | |00087 UCAC2| +190634 |V0634 Cen |141357.8-582144 |E/SD | 14.8 |< 16. : | |p |27946.12 | | 3.21218 | | |00013 00013| +190635 |V0635 Cen *|141715.5-601501 |EB/KE | 13.5 | 14.2 | 13.9 |p |28015.17 | | 1.345692 | | |00013 00013| +190636 |V0636 Cen *|141657.9-495642 |EA/DM: | 8.7 | 9.2 | 8.8 |V |34540.340 | | 4.28398 |04 *|G0V |02412 CoD | +190637 |V0637 Cen |141634.8-400026 |EW/KW: | 12.5 | 13.1 | |p | | | | | |00087 08613| +190638 |V0638 Cen |141632.0-322721 |M | 12.0 |< 15.5 | |p | | | | | |00086 02385| +190639 |V0639 Cen |141900.9-592026 |E/SD: | 12.8 | 13.3 | |p |27658.29 | | 5.3605 | | |00013 00013| +190640 |V0640 Cen |142942.1-371156 |RR | 14.2 | 15.0 | |p | | | | | |00087 06286| +190641 |V0641 Cen |143907.8-595009 |DCEP | 9.96 | 10.86 | |V |41771.771 | | 35.216 | |F5-G9 |08752 08752| +190642 |V0642 Cen |144327.3-410206 |RR | 15.7 | 16.5 | |p | | | | | |00087 06286| +190643 |V0643 Cen |150139.4-394536 |M: | 12. |< 13.5 | |p |28770. | | | |M3e |00085 02382| +190644 |V0644 Cen *|114306.5-604405 |GCAS: | 8.7 | 10.2 | |p | | | | |B2IIIe | 04641| +190645 |V0645 Cen *|142943.0-624046 |UV | 12.1 | 13.12 | |B | | | | |M5Ve |00089 05288| +190646 |V0646 Cen *|113658.8-531235 |EA/SD | 9.0 | 11.7 | 9.1 |p |43916.1946 | | 2.24657322 |15 |B8IV |01123 03512| +190647 |V0647 Cen |114345.6-455848 |SR | 13.7 | 15.4 | |p | | | 210. | | |00091 00091| +190648 |V0648 Cen |120004.8-425633 |L: | 13.4 | 14.3 | |p | | | | | |00091 00091| +190649 |V0649 Cen |120438.5-480257 |L: | 14.3 | 14.8 | |p | | | | | |00091 00091| +190650 |V0650 Cen |120723.8-435209 |M | 13.0 |< 15.0 | |p | | | 300. : | |Me |00091 05464| +190651 |V0651 Cen |121217.6-462131 |SR | 13.0 | 13.7 | |p | | | 400. : | | |00091 00091| +190652 |V0652 Cen |121344.4-485044 |SR | 13.0 | 14.2 | |p |25354.19 | | 86.38 | | |00091 00091| +190653 |V0653 Cen |121537.6-455806 |IS: | 14.0 |< 15.0 | |p | | | | | |00091 05464| +190654 |V0654 Cen |121642.3-461053 |IS | 12.8 | 14.1 | |p | | | | | |00091 08087| +190655 |V0655 Cen |131316.9-332031 |M | 13.6 |< 16.6 | |p | | | | |Me |00086 GSC22| +190656 |V0656 Cen |131525.0-312004 |E/SD: | 13.0 | 14.4 | |p | | | | | |00086 UCAC2| +190657 |V0657 Cen |132916.6-333737 |M | 14.0 |< 16.8 | |p | | | | | |00086 GSC | +190658 |V0658 Cen |132923.4-381239 | | 13.8 | 15.1 | |p | | | 15.37 | | |00086 GSC | +190659 |V0659 Cen |133133.4-613457 |DCEP | 6.45 | 6.71 | |V |40348.77 | | 5.62180 |43 |F7Ib |05366 05317| +190660 |V0660 Cen |133212.8-335456 |M | 13.3 |< 16.5 | |p | | | | | |00086 USNO | +190661 |V0661 Cen |133353.2-334340 |M | 11.5 | 16.6 | |p | | | 250. : | |Me |00086 02382| +190662 |V0662 Cen *|133655.7-352830 |CEP | 14.4 | 15.5 | |p | | | | | |00086 UCAC2| +190663 |V0663 Cen |133932.9-304640 |M | 11.9 |< 16.8 | |p | | | 310. : | |Me |00086 GSC | +190664 |V0664 Cen |134146.5-303019 |M | 13.6 |< 16.2 | |p | | | | | |00086 GSC | +190665 |V0665 Cen |134536.9-333346 |M | 12.9 | 16.9 | |p | | | | |Me |00086 UCAC2| +190666 |V0666 Cen |140426.0-365931 |RR | 13.0 | 13.6 | |p | | | 0.43927 | | |00086 GSC | +190667 |V0667 Cen |143059.6-351349 |RR | 13.3 | 14.2 | |p | | | 0.60135 | | |00086 GSC | +190668 |V0668 Cen |143359.6-342810 |E/SD: | 12.6 | 13.8 | |p | | | | | |00086 GSC | +190669 |V0669 Cen |122617.5-414707 |SR | 13.8 |< 14.5 | |p | | | 180. | | |00093 00093| +190670 |V0670 Cen |123211.5-470239 |SR | 14.1 |< 14.4 | |p | | | 100. | | |00093 00093| +190671 |V0671 Cen |134009.7-372628 |RRAB | 11.6 | 12.5 | |V |34399.620 | | 0.437670 |27 : | |00080 02382| +190672 |V0672 Cen *|134507.9-460933 |EB/KE | 11.3 | 11.6 | 11.5 |V |34485.509 | | 0.508864 | | |00080 CoD | +190673 |V0673 Cen *|140314.6-484730 |EB/KE: | 10.3 | 10.5 |( 0.05 )|V |34421.603 | | 0.932792 | |A0 |00080 CoD | +190674 |V0674 Cen *|140324.1-362420 |RRAB | 11.0 | 11.9 | |V |34432.590 | | 0.493919 |15 | |00080 06286| +190675 |V0675 Cen |142450.9-343945 |CWB | 11.6 | 12.2 | |V |34481.80 | | 4.6384 |37 : | |00080 02382| +190676 |V0676 Cen *|143750.8-385044 |EW/KW | 11.9 | 12.6 | 12.5 |V |34425.555 | | 0.292397 | | |00080 CoD | +190677 |V0677 Cen *|144234.6-402716 |EW/KW | 11.5 | 11.7 | 11.6 |V |34421.488 | | 0.325067 | | |00080 CoD | +190678 |V0678 Cen *|145123.9-374047 |EB/KE | 10.5 | 10.9 | 10.6 |V |34479.355 | | 1.301858 | | |00080 CoD | +190679 |V0679 Cen *|113818.6-632035 |* | 15.5 | 18. | |V | | | | | |02681 02681| +190680 |V0680 Cen |140528.9-312348 |LB: | 11.5 | 12.1 | |p | | | | | |02412 CoD | +190681 |V0681 Cen |140954.2-303814 |LB: | 11.2 | 12.0 | |p | | | | |M6 |02412 CoD | +190682 |V0682 Cen *|143019.9-344702 |IS: | 11.9 | 12.7 | |V | | | | | |02412 02382| +190683 |V0683 Cen |143248.5-333233 |SR: | 11.4 | 12.3 | |p | | | 11.65 : | | |02412 CoD | +190684 |V0684 Cen *|112317.4-613651 |EA/DS | 13.6 | 14.1 |( 0.05 )|p |25370.34 | | 8.0113 |08 *| |04160 04160| +190685 |V0685 Cen *|112426.6-574340 |EA/DM | 9.4 | 9.8 | 9.5 |p |25351.530 | | 1.190964 | |B9IV/V |04160 04641| +190686 |V0686 Cen *|113137.5-610321 |CEP | 12.4 | 14.0 | |p |28720. | | 69.3 | | |07452 04160| +190687 |V0687 Cen *|113144.5-615706 |EA/DM | 13.8 | 14.6 | 14.1 |p |26010.539 | | 1.896194 |09 | |04160 04160| +190688 |V0688 Cen *|113150.4-623325 |EB/KE | 12.5 | 13.0 | 12.7 |p |26891.198 | | 0.946067 | | |04160 04160| +190689 |V0689 Cen *|113652.8-581401 |EB/KE | 11.9 | 12.6 | 12.1 |p |24966.133 | | 0.5585365 | | |04160 04160| +190690 |V0690 Cen *|114511.7-624424 |EA/SD | 14.6 | 15.4 |( 0.03 )|p |24969.835 | | 1.1814615 |21 | |04160 04160| +190691 |V0691 Cen |114722.4-613732 |EA | 12.6 | 13.0 | |p |25835.224 | | 7.36632 |09 | |04160 04160| +190692 |V0692 Cen *|115331.5-631527 |EA/DM | 11.1 | 11.8 | 11.6 |p |26129.328 | | 1.723708 |09 | |04160 04160| +190693 |V0693 Cen |130426.8-582118 |M: | 14.6 |< 16.0 | |p |27892. | | 388. | | |04174 04174| +190694 |V0694 Cen | | | | | | | | | | | | |=BL Cen +190695 |V0695 Cen |130636.1-564701 |L | 14.0 | 14.7 | |p | | | | | |04174 04174| +190696 |V0696 Cen |131552.2-553638 |M: | 14.2 |< 16.0 | |p |27596. | | 169.3 | | |04174 04174| +190697 |V0697 Cen |131907.6-582908 |EA/SD: | 13.1 | 13.8 | |p |28642.488 | | 2.0600512 |12 | |04174 04174| +190698 |V0698 Cen |132002.6-595820 |M | 14.0 |< 16.0 | |p |27984. | | 309. | | |04174 04174| +190699 |V0699 Cen |132024.9-620956 |SR | 13.9 | 14.8 | |p |28340. | | 156. : | | |04174 04174| +190700 |V0700 Cen |132809.8-324325 |EA/SD: | 11.6 | 12.4 | |p |28330.346 | | 0.7649654 |15 *| |04183 CoD | +190701 |V0701 Cen *|133137.7-514618 |EB/KE | 8.8 | 9.3 | 9.1 |V |39243.2661 | | 0.738447 | |B9V |00001 CoD | +190702 |V0702 Cen |133243.4-631952 |M | 11.9 |< 16.0 | |p |27820. | | 470. | | |04174 04174| +190703 |V0703 Cen |135215.1-561509 |RR | 14.2 | 14.8 | |p |28642.485 | | 0.6668608 |36 | |04174 04174| +190704 |V0704 Cen *|135455.7-582717 |L: | 14.3 |< 16.0 | |p | | | | |ea: |04174 04174| +190705 |V0705 Cen |135600.2-553628 |M: | 14.6 |< 16.0 | |p |27562. | | 193.8 | | |04174 04174| +190706 |V0706 Cen |140129.4-572019 |L | 14.1 | 15.0 | |p | | | | | |04174 04174| +190707 |V0707 Cen |140410.8-542707 |M: | 14.2 |< 16.0 | |p |31610. | | 247. | | |04174 04174| +190708 |V0708 Cen |140610.3-544515 |M: | 14.7 |< 16.0 | |p |27954. | | 264. : | | |04174 04174| +190709 |V0709 Cen |140817.2-560317 |M: | 14.9 |< 16.0 | |p |33030. | | 213. | | |04174 04174| +190710 |V0710 Cen |140846.9-570436 |SR | 14.8 |< 16.0 | |p |27906. | | 243. : | | |04174 04174| +190711 |V0711 Cen |140943.5-561712 |M | 13.6 |< 16.0 | |p |27665. | | 251. | | |04174 04174| +190712 |V0712 Cen |140911.4-325129 |EA | 13. | 13.5 | |p | | | | | |04001 04001| +190713 |V0713 Cen |141118.0-545449 |M | 13.1 |< 17.5 | |p |28040. | | 275. | | |04174 04174| +190714 |V0714 Cen |141023.9-321721 |RR | 13. | 14. | |p | | | | | |04001 04001| +190715 |V0715 Cen |141148.0-335413 |RR | 14. | 15. | |p | | | | | |04001 04001| +190716 |V0716 Cen *|141339.8-543732 |EB/KE | 5.96 | 6.52 | 6.21 |V |38524.4069 | | 1.490096 | |B5V |05318 CoD | +190717 |V0717 Cen |141414.3-545202 |M | 13.4 |< 16.0 | |p |31594. | | 297. | | |04174 04174| +190718 |V0718 Cen |141639.7-321637 |RR | 12.5 | 13.5 | |p | | | | | |04001 04001| +190719 |V0719 Cen |141700.4-320542 |RR | 15. | 16. | |p | | | | | |04001 04001| +190720 |V0720 Cen |141802.7-323217 |RR | 14. | 14.5 | |p | | | | | |04001 04001| +190721 |V0721 Cen |141825.6-310927 |EA | 13. | 13.5 | |p | | | | | |04001 04001| +190722 |V0722 Cen |142154.0-320642 |RR | 15. | 16. | |p | | | | | |04001 04001| +190723 |V0723 Cen |142158.4-314230 |EA/SD: | 14.5 | 16.5 | |p | | | | | |04001 04001| +190724 |V0724 Cen |142257.0-302152 |RR | 15. | 16. | |p | | | | | |04001 04001| +190725 |V0725 Cen |142527.4-320033 |RR | 15. | 16. | |p | | | | | |04001 04001| +190726 |V0726 Cen |142610.8-302505 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +190727 |V0727 Cen |142705.5-323020 |EA | 13.5 | 14. | |p | | | | | |04001 04001| +190728 |V0728 Cen |142800.7-332845 |RR | 14. | 15. | |p | | | | | |04001 04001| +190729 |V0729 Cen |142808.3-333152 |RR | 14. | 15. | |p | | | | | |04001 04001| +190730 |V0730 Cen |142840.7-302255 |RR | 15.5 | 16.5 | |p | | | | | |04001 04001| +190731 |V0731 Cen |142952.0-310058 |EA | 13. | 14. | |p | | | | | |04001 04001| +190732 |V0732 Cen |143105.9-323559 |RR | 13. | 14.5 | |p | | | | | |04001 04001| +190733 |V0733 Cen |143310.6-333141 |RR | 15. | 16. | |p | | | | | |04001 04001| +190734 |V0734 Cen |143410.8-300734 |RR | 13.5 | 15. | |p | | | | | |04001 04001| +190735 |V0735 Cen |143422.1-312919 |RR | 13.5 | 15. | |p | | | | | |04001 04001| +190736 |V0736 Cen |143511.8-303544 |RR | 13.5 | 14.5 | |p | | | | | |04001 04001| +190737 |V0737 Cen |143712.0-620039 |DCEP | 7.5 | 8.0 | |p |28656.350 | | 7.06585 |39 |G2Ib |05319 CoD | +190738 |V0738 Cen |143716.4-315620 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +190739 |V0739 Cen |143828.3-324536 |RR | 15. | 16. | |p | | | | | |04001 04001| +190740 |V0740 Cen |143952.9-313230 |RR | 15. | 16. | |p | | | | | |04001 04001| +190741 |V0741 Cen |144317.7-334027 |RR | 14. | 15. | |p | | | | | |04001 04001| +190742 |V0742 Cen *|112727.8-413051 |EB/DM | 9.4 | 10.2 | 10.1 |p |38493.450 | | 6.490 | |B9V |04655 CoD | +190743 |V0743 Cen *|132822.1-511732 |DSCT | 8.57 | 8.82 | |V |39243.6436 | | 0.10225435 |36 |A0V |06779 CoD | +190744 |V0744 Cen |133959.8-495700 |SRB | 5.14 | 6.55 | |V | | | 90. : | |M8III |05992 CoD | +190745 |V0745 Cen *|142715.3-620338 |EB/SD | 9.3 | 10.3 | 9.6 |p |33792.235 | | 3.025101 | |B6/8Ib/II |05994 06965| +190746 |V0746 Cen *|124824.1-333929 |E/SD: | 11.5 | 12.5 | |p |27892.550 | | 5.21035 | | |05399 06286| +190747 |V0747 Cen *|133923.8-450554 |EB/KE | 9.86 | 10.46 | 10.05 |V |36710.286 | | 0.53719488 | |A9/F0V |05656 CoD | +190748 |V0748 Cen *|145936.7-332504 |EA/GS | 11.55 | 13.65 | |V |41917. | | 566.5 |14 |Fep+M |07348 CoD | +190749 |V0749 Cen |150144.7-362124 |M: | 12.5 |< 14.5 | |p | | | | |Me |06561 06561| +190750 |V0750 Cen |113047.3-603530 |LB: | 12.2 |< 12.6 | |I | | | | |C |05853 05853| +190751 |V0751 Cen |113214.7-605418 |LB: | 10.0 |< 10.4 | |I | | | | |C |05853 05853| +190752 |V0752 Cen *|114248.1-354858 |EW/KW | 9.1 | 9.66 | 9.61 |V |44243.6916 | | 0.37022484 | |G0 |00001 CoD | +190753 |V0753 Cen *|115115.3-554816 |RRC: | 10.24 | 10.64 | |V |41386.144 | | 0.221349 |45 |A5 |06970 05855| +190754 |V0754 Cen *|125943.3-585842 |EA/SD | 11.1 |< 13.2 | |p |27924.427 | | 3.76581 | | |08040 05829| +190755 |V0755 Cen *|130538.0-621211 |UVN | 13.0 | 13.4 | |B | | | | |Ke |05856 06482| +190756 |V0756 Cen *|133418.1-631412 |UVN: | | 14.98 | |V | | | | |pec |05856 06482| +190757 |V0757 Cen *|135155.7-363725 |EW/KW | 8.3 | 8.7 | 8.6 |V |42308.69312 | | 0.34316929 | | |07391 CoD | +190758 |V0758 Cen *|135242.9-553228 |EW/KE | 8.8 | 9.40 | 9.15 |B |44403.2797 | | 0.58078556 | |B9IV |07413 CoD | +190759 |V0759 Cen *|141041.3-474608 |EW/KW | 7.4 | 7.56 | 7.56 |V |42196.09732 | | 0.39395129 | |F9V |07420 CoD | +190760 |V0760 Cen |141231.8-592528 |UV: | 8.1 | 13. | |p | | | | | |05858 05858| +190761 |V0761 Cen *|142302.2-393043 |SXARI | 4.38 | 4.43 | |V |42807.75 | | 8.8171 | |B2V-B8IIIp(He-Si)|08054 CoD | +190762 |V0762 Cen |143130.8-630111 |EA | 10.3 | 10.8 | |p |28664.450 | | 3.367895 | | |05835 05835| +190763 |V0763 Cen *|113513.3-472221 |SRB | 5.55 | 5.80 | |V | | | 60. : | |M3III |06590 CoD | +190764 |V0764 Cen |133608.3-332845 |SRD | 8.84 | 9.13 | |V | | | | |K2III |06450 CoD | +190765 |V0765 Cen |133940.8-394451 |LB: | 6.28 |( 0.08 )| |V | | | | |M4 |05840 CoD | +190766 |V0766 Cen *|134710.9-623523 |SDOR: | 6.17 | 7.50 | |V | | | | |G8Ia-0 |06481 06965| +190767 |V0767 Cen *|135357.2-470741 |GCAS | 5.86 | 6.26 | |V | | | | |B2IIIe |08419 CoD | +190768 |V0768 Cen *|144838.0-363805 |SRB | 5.93 | 6.15 | |V | | | | |M3 |06023 CoD | +190769 |V0769 Cen |111120.8-474850 |M | 10. |< 14. | |p |38793. | | 325. | | |06847 06847| +190770 |V0770 Cen *|112109.1-603213 |BCEP: | 12.32 | 12.5 | |V | | | 0.17 | |B5eVIII-V |07055 UCAC2| +190771 |V0771 Cen |112659.7-612210 |SRC: | 6.87 |( 0.2 )| |V | | | | |M2Ib-II |05899 04641| +190772 |V0772 Cen *|114149.4-632452 |LC: | 7.80 | 8.36 | |V | | | | |M2Ibep+B |06149 04641| +190773 |V0773 Cen |134951.0-373101 |M: | 12. : | 16.3 | |p | | | | |Me |00086 CoD | +190774 |V0774 Cen |135328.2-390326 |GCAS | 7.63 | 7.72 | |V | | | | |B3Vne |06313 CoD | +190775 |V0775 Cen *|135828.3-514453 |EA/DM | 9.9 | 10.6 | |p |28740.250 | | 1.327286 | |F0IV |06871 06871| +190776 |V0776 Cen |150302.7-411419 |M | 12.0 | 17.6 | |p | | | | |Me |02935 06031| +190777 |V0777 Cen *|111143.8-512430 |EA/DM | 9.8 | 10.4 | |p |38471.404 | | 1.776028 | | |06847 06847| +190778 |V0778 Cen |112056.6-620037 |M | 11.4 | 16.6 | |B | | | | | |07452 07452| +190779 |V0779 Cen *|112115.1-603728 |E+XP | 13.25 | 13.46 | 13.39 |V |41133.125 | | 2.08726 | |O6.5II-III |07453 08858| +190780 |V0780 Cen |112638.9-594751 |M | 13.2 | 16.3 | |p | | | | | |07452 07452| +190781 |V0781 Cen |113320.7-613526 |M | 13.8 | 18. : | |B | | | | | |07452 07452| +190782 |V0782 Cen |115307.0-624310 |DCEP | 13.6 | 14.5 | |V | | | 11.578 |40 | |07452 07452| +190783 |V0783 Cen *|112112.4-603608 |ACV: | 14.83 | 14.97 | |B | | | 2.33 : | |A |07570 USNO | +190784 |V0784 Cen *|112536.8-602423 |LB | 12.4 | 14.4 | |p | | | | | |07452 07452| +190785 |V0785 Cen |113537.0-471006 |LB: | 7.6 |( 0.31 )| |V | | | | |M3II/III |06323 CoD | +190786 |V0786 Cen |113611.3-631700 |EA: | 9.3 | 9.77 | |V |41364.851 :| | | |B3III/V |07452 04641| +190787 |V0787 Cen |114836.9-625957 |EA | 14.5 | 15.3 | |V | | | | | |07452 07452| +190788 |V0788 Cen *|120853.8-441934 |EA/D | 5.74 | 5.93 | 5.90 |V |41370.496 | | 4.966377 |08 |A2mA5-F2 |07860 CoD | +190789 |V0789 Cen |130448.2-411147 |LB: | 6.22 |( 0.09 )| |V | | | | |M3/4III |06324 CoD | +190790 |V0790 Cen *|132235.9-605820 |BCEP: | 6.16 | 6.27 : | |V | | | | |B2.5Vn |03712 06965| +190791 |V0791 Cen *|132631.4-472557 |SRA | 13.2 | 14.6 | |V |41153. | | 140. |50 |M5: |07867 08880| +190792 |V0792 Cen |141127.6-312507 |L | 15. | 16. | |p | | | | | |04001 04001| +190793 |V0793 Cen |141133.0-301826 |RR: | 14. | 16. | |p | | | | | |04001 04001| +190794 |V0794 Cen |141209.0-310337 |LB | 13.5 | 14.5 | |p | | | | | |04001 04001| +190795 |V0795 Cen *|141457.1-570510 |GCAS | 4.97 | 5.10 | |V | | | | |B4Vne |06311 06965| +190796 |V0796 Cen |141706.1-563157 |LB | 11.5 | 12.5 | |p | | | | | |06561 06561| +190797 |V0797 Cen |142333.1-312824 |E | 11. | 12. | |p | | | | | |04001 04001| +190798 |V0798 Cen |143449.0-605751 |LB: | 8.7 | 9.3 | |p | | | | |M6III |05076 05288| +190799 |V0799 Cen |145306.8-334145 |M: | | | | | | | | |Me |04256 04256| +190800 |V0800 Cen |145930.2-352227 |SR | 10. | 12. | |p | | | | |Me |00085 05937| +190801 |V0801 Cen *|114800.0-621225 |GCAS:+XP | 8.93 | 9.39 | |V | | | | |B1Vne |07928 08882| +190802 |V0802 Cen |124901.6-364546 |M | 9.8 | 12.6 | |p |38554. | | 228. | | |04514 CoD | +190803 |V0803 Cen *|132344.5-414430 |RCB | 13.2 | 17.7 | |V | | | | |pec |07933 07933| +190804 |V0804 Cen |133738.5-483442 |M | 10.9 |< 13.8 | |p |38511. | | 261. | | |04514 07842| +190805 |V0805 Cen |133850.4-540701 |E/DM | 9.9 | 10.3 | |p |28655.350 | | 2.211155 | |A0IV |08040 CoD | +190806 |V0806 Cen |134926.7-342703 |SRB | 4.16 | 4.26 | |V | | | 12. : | |M5III |07704 CoD | +190807 |V0807 Cen *|142515.9-611912 |GCAS | 9.40 | 9.50 | |V | | | | |B3Vne |07934 07776| +190808 |V0808 Cen |112915.1-633314 |ACYG | 6.42 | 6.47 | |V | | | | |B2eaIa |08070 04641| +190809 |V0809 Cen |113115.1-611643 |ACYG | 6.31 | 6.36 | |V | | | | |A3eIa |08227 04641| +190810 |V0810 Cen *|114331.2-622922 |SRD | 4.95 | 5.12 | |V | | | 130. : | |F5-G0Ia-0+B1Iab |04388 07715| +190811 |V0811 Cen |115114.7-631349 |EA: | 11.0 | 11.6 | |V |41364.86 | | | | |07452 07452| +190812 |V0812 Cen |131354.2-574046 |NB | 11. |< 15. | |V |41796. |1973 | | |pec(NOVA) |08231 08231| +190813 |V0813 Cen *|132601.5-473636 |DSCT | 14.6 | 15.0 | |V |30000.022 | | 0.06272267 |39 |A4-A6 |03938 08742| +190814 |V0814 Cen *|132744.1-472610 |EA | 14.10 | 14.82 | 14.165: |V |33929.9724 | | 1.16812901 |14 *|A0V |07719 08742| +190815 |V0815 Cen |110716.7-423819 |ACV | 5.14 |( 0.03 )| |V | | | 2.433 | |A3p(Sr) |02590 CoD | +190816 |V0816 Cen *|113737.0-464235 |DSCT: | 7.996 | 8.020 | |V |43400.00090 | | 0.00843060 | |F8p |08885 CoD | +190817 |V0817 Cen |120854.6-411354 |GCAS | 5.47 | 5.58 | |V | | | | |B3eaIV |06311 CoD | +190818 |V0818 Cen |125228.6-493152 |M | 12.1 |< 14.1 | |p | | | | | |08368 08368| +190819 |V0819 Cen |131921.7-581142 |RR: | 9.00 |( 0.07 )| |V |42460.59 | | 0.6755 : |60 |A2 |08222 CPD | +190820 |V0820 Cen *|141356.4-380547 |RV | 8.42 |< 10.10 | |V |43325. | | 150. | |K0e |08369 CoD | +190821 |V0821 Cen |141458.6-461719 |PVTEL | 9.94 | 10.03 | |V | | | | |B3p |07799 CoD | +190822 |V0822 Cen *|145821.9-314007 |XND | 12.8 | 19. | |B | | | | |K4V+pec(e) |08372 08372| +190823 |V0823 Cen |125658.2-543514 |ACV | 6.7 |( 0.005 )| |V | | | 2.84 | |A0p(Si-Cr) |02590 CPD | +190824 |V0824 Cen |131058.4-523401 |ACV | 6.3 |( 0.035 )| |V | | | 1.272 | |A0p(Si) |02590 CoD | +190825 |V0825 Cen *|132612.7-472443 |M | 13.1 | 16.1 | |p |30139.4 | | 235.74 | |Me |03938 08742| +190826 |V0826 Cen *|132705.4-472905 |SR | 14.2 | 14.7 | |p | | | 100. | |M4-M5 |07867 08742| +190827 |V0827 Cen |134416.0-510045 |ACV | 6.46 |( 0.025 )| |V | | | 2.605 | |A0p(Si) |02590 CoD | +190828 |V0828 Cen |140327.5-412524 |ACV | 6.10 |( 0.045 )| |V | | | 1.837 | |A0p(Si) |02590 CoD | +190829 |V0829 Cen |113922.2-392308 |RS | 7.9 : |( 0.11 )| |V | | | | | |67024 CoD | +190830 |V0830 Cen |114728.6-615715 |ELL+XP | 13.08 | 13.17 | |V | | | | | |67164 67165| +190831 |V0831 Cen |131217.6-595514 |ELL: | 4.49 | 4.66 | |V | | | | | |67169 CPD | +190832 |V0832 Cen |132552.7-473203 |RRC | 15.0 | 15.5 | |p | | | | | |67176 | +190833 |V0833 Cen |132555.5-473744 |RRAB | 14.4 | 15.4 | |p | | | | | |67177 67026| +190834 |V0834 Cen |140907.4-451716 |E+XPM | 14.20 | 16.00 | |V | | | | | |67179 67179| +190835 |V0835 Cen |141409.4-632547 |M | 4.35 | 5.72 | |K | | | | | |67189 67186| +190836 |V0836 Cen |144625.8-371320 |BCEP | 8.02 | 8.12 | |V | | | | | |67197 CoD | +190837 |V0837 Cen |113810.9-454458 |DSCT | 7.16 |( 0.10 )| |V | | | | | |68314 CoD | +190838 |V0838 Cen |114438.5-492503 |BY | 8.97 |( 0.08 )| |V | | | | | |68315 CoD | +190839 |V0839 Cen |125849.7-365833 |EW/KW | 9.51 | 10.13 | |V | | | | | |68318 CoD | +190840 |V0840 Cen |132049.5-555014 |NL | 7.5 |< 12.5 | |V | | | | | |68069 GSC | +190841 |V0841 Cen |143416.1-602429 |RS | 8.49 | 8.85 | |V | | | | | |68322 CPD | +190842 |V0842 Cen |143552.6-573735 |N | 4.6 | 18.6 : | |V | | | | | |68171 USNO | +190843 |V0843 Cen |113555.5-613614 |BE | 8.59 |( 0.12 )| |B | | | | | |69073 69074| +190844 |V0844 Cen |113604.9-613449 |BE: | 10.1 |( 0.03 )| |B | | | | | |69073 69074| +190845 |V0845 Cen |113608.1-613838 |BE | 10.0 |( 0.07 )| |B | | | | | |69073 69074| +190846 |V0846 Cen |113610.2-613740 |BE | 9.27 |( 0.04 )| |B | | | | | |69073 69074| +190847 |V0847 Cen |113614.1-613736 |BCEP: | 9.7 |( 0.01 )| |B | | | | | |69073 69074| +190848 |V0848 Cen |113622.0-613629 |BE | 10.4 |( 0.06 )| |B | | | | | |69073 69074| +190849 |V0849 Cen |113631.6-613426 |BE: | 8.6 |( 0.06 )| |B | | | | | |69073 69074| +190850 |V0850 Cen |130117.2-613606 |XP | 13.40 | 13.89 | |V | | | | | |69075 69076| +190851 |V0851 Cen |134400.9-612159 |RS | 7.78 | 7.88 | |V | | | | | |69078 CPD | +190852 |V0852 Cen |141152.1-512624 |M: | 6.7 |( 0.4 )| |K | | | | | |69079 69081| +190853 |V0853 Cen |142958.4-560753 |DSCTC | 6.97 |( 0.02 )| |V | | | | | |69084 CPD | +190854 |V0854 Cen |143449.3-393320 |RCB: | 7.13 | 14.1 | |V | | | | | |69086 69087| +190855 |V0855 Cen |113605.5-614206 |BE | 9.58 |( 0.07 )| |B | | | | | |70030 70029| +190856 |V0856 Cen |125736.3-494650 |BCEP | 8.32 | 8.37 | |V | | | | | |70031 CoD | +190857 |V0857 Cen |113146.5-410247 |UV | 13.4 | 13.98 | |U | | | | | |71095 GSC | +190858 |V0858 Cen |113616.2-380211 |RS | 10.58 |( 0.15 )| |V | | | | | |71106 CoD | +190859 |V0859 Cen |114541.0-615927 |L | 12.87 | 13.48 | |I | | | | | |71107 | +190860 |V0860 Cen |114624.6-620755 |L | 12.59 | 13.47 | |I | | | | | |71107 2MASS| +190861 |V0861 Cen |115229.4-621039 |L | 12.83 | 13.66 | |I | | | | | |71107 2MASS| +190862 |V0862 Cen |115610.7-615922 |L | 10.01 | 10.59 | |I | | | | | |71107 2MASS| +190863 |V0863 Cen |120805.2-503941 |BE: | 4.38 | 4.43 | |b | | | | | |71074 CoD | +190864 |V0864 Cen |131801.1-622604 |WR | 11.90 | | |V | | | | | |71117 71118| +190865 |V0865 Cen |132219.6-630731 |L | 9.30 | 10.51 | |I | | | | | |71107 2MASS| +190866 |V0866 Cen |133637.9-632012 |L | 13.18 | 13.71 | |I | | | | | |71107 2MASS| +190867 |V0867 Cen |133843.1-630424 |L | 13.14 | 14.10 | |I | | | | | |71107 2MASS| +190868 |V0868 Cen |135010.6-630852 |N | 10.24 |< 22.5 | |V | | | | | |71122 USNO | +190869 |V0869 Cen |140935.0-513017 |* | 5.92 |( 0.09 )| |V | | | | | |71123 CoD | +190870 |V0870 Cen |113819.9-632037 |BE | 10.41 | 10.68 | |V | | | | | |72077 CPD | +190871 |V0871 Cen |113820.4-632222 |EB | 6.48 |( 0.12 )| |V | | | | | |72041 CPD | +190872 |V0872 Cen |114710.5-620954 |CEP | 12.67 | 13.12 | |I | | | | | |72042 UCAC2| +190873 |V0873 Cen |114859.0-622544 |CEP | 11.32 | 11.75 | |I | | | | | |72042 2MASS| +190874 |V0874 Cen |115142.1-631402 |CEP | 13.76 | 14.15 | |I | | | | | |72042 2MASS| +190875 |V0875 Cen |115354.6-585824 |M | 3.90 | 5.62 | |L'| | | | | |72007 2MASS| +190876 |V0876 Cen |115440.4-621721 |CEP | 12.12 | 12.54 | |I | | | | | |72042 UCAC2| +190877 |V0877 Cen |125942.0-613807 |EB | 10.44 | 11.15 | |V | | | | | |72043 72044| +190878 |V0878 Cen |130415.2-611857 |EB | 10.37 | 11.12 | |V | | | | | |72043 72044| +190879 |V0879 Cen |131905.2-643731 |M | 6.8 | 9.2 | |K | | | | | |72036 2MASS| +190880 |V0880 Cen |132223.1-625110 |CEP | 12.44 | 12.89 | |I | | | | | |72042 UCAC2| +190881 |V0881 Cen |132721.7-630110 |CEP | 10.26 | 10.93 | |I | | | | | |72042 GSC | +190882 |V0882 Cen |133543.5-624003 |CEP | 11.56 | 11.79 | |I | | | | | |72042 UCAC2| +190883 |V0883 Cen |140856.3-591636 |E | 6.40 | 6.63 | |b | | | | | |72040 CPD | +190884 |V0884 Cen |143330.6-602332 |M | 7.93 |( 1.71 )| |H | | | | | |72036 2MASS| +190885 |V0885 Cen |114058.8-553426 |* | 7.60 | 7.95 | |U | | | | | |73084 CPD | +190886 |V0886 Cen |123850.9-494759 |ZZA | 13.96 |( 0.02 )| |V | | | | | |73085 73086| +190887 |V0887 Cen |123857.4-510524 |RRAB | 19.11 | 19.87 | |B | | | | | |73087 USNO | +190888 |V0888 Cen |130231.8-601137 |NA | 7.59 |< 15.0 | |V | | | | | |73088 USNO | +190889 |V0889 Cen |132659.8-620149 |ELL | 11.65 | 11.81 | |V | | | | | |73089 73090| +190890 |V0890 Cen |134931.9-475441 |NL | 19.0 | 21.5 | |p | | | | | |73015 73015| +190891 |V0891 Cen |135029.2-480248 |NL | 19.0 | 21.0 | |p | | | | | |73015 73015| +190892 |V0892 Cen |135548.0-514300 |EA+ACV: | 9.47 | 9.95 | |V | | | | | |73091 CoD | +190893 |V0893 Cen |140029.3-624709 |ZAND: | 5.57 | 6.35 | |K | | | | | |73092 73092| +190894 |V0894 Cen |141551.0-600115 |SR | 13.5 |< 19.0 | |Ic| | | | | |73093 73093| +190895 |V0895 Cen |142927.2-380409 |E+AM: | 16.5 | 18.1 | |V | | | | | |73354 73094| +190896 |V0896 Cen |143744.1-594553 |DSCTC | 8.4 |( 0.02 )| |V | | | | | |73067 CPD | +190897 |V0897 Cen |111021.4-360543 |LB: | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +190898 |V0898 Cen |111120.4-543325 |DCEPS: | 7.93 | 8.21 | |Hp| | | | | |HIP HIP | +190899 |V0899 Cen |111127.4-485106 |LB: | 8.20 | 8.33 | |Hp| | | | | |HIP HIP | +190900 |V0900 Cen |111317.5-500721 |E | 6.95 | 6.99 | |Hp| | | | | |HIP HIP | +190901 |V0901 Cen |111403.3-513256 |EW: | 11.94 | 12.31 | |Hp| | | | | |HIP HIP | +190902 |V0902 Cen *|111556.4-484127 |E: | 12.20 | 12.75 | |Hp| | | | | |HIP HIP | +190903 |V0903 Cen |111921.2-450536 |SRC | 7.57 | 7.83 | |Hp| | | | | |HIP HIP | +190904 |V0904 Cen |112034.2-355901 |LB: | 8.47 | 8.58 | |Hp| | | | | |HIP HIP | +190905 |V0905 Cen |112121.9-554547 |LB: | 10.49 | 10.68 | |Hp| | | | | |HIP HIP | +190906 |V0906 Cen |112158.8-610146 |LPB: | 9.57 | 9.71 | |Hp| | | | | |HIP HIP | +190907 |V0907 Cen |112219.7-610425 |BE | 9.03 | 9.30 | |V | | | | | |HIP HIP | +190908 |V0908 Cen |113304.8-444614 |SRB | 7.80 | 7.95 | |Hp| | | | | |HIP HIP | +190909 |V0909 Cen |113413.7-543320 |SRB | 7.73 | 7.86 | |Hp| | | | | |HIP HIP | +190910 |V0910 Cen |113545.0-613441 |LC | 7.19 | 7.34 | |Hp| | | | | |HIP HIP | +190911 |V0911 Cen |113609.4-614142 |GCAS: | 9.00 | 9.45 | |Hp| | | | | |HIP HIP | +190912 |V0912 Cen |113732.6-392132 |LB | 6.81 | 6.98 | |Hp| | | | | |HIP HIP | +190913 |V0913 Cen |113734.1-605412 |LB | 6.19 | 6.45 | |Hp| | | | | |HIP HIP | +190914 |V0914 Cen |114042.5-535807 |LB | 5.99 | 6.12 | |Hp| | | | | |HIP HIP | +190915 |V0915 Cen *|114155.0-634743 |ACV: | 8.00 | 8.05 | |Hp| | | | | |HIP HIP | +190916 |V0916 Cen |114225.4-622838 |BE | 8.61 | 8.83 | |Hp| | | | | |HIP HIP | +190917 |V0917 Cen |114409.0-453443 |SRD | 8.28 | 8.37 | |Hp| | | | | |HIP HIP | +190918 |V0918 Cen |114719.1-574147 |SRD: | 5.49 | 5.56 | |Hp| | | | | |HIP HIP | +190919 |V0919 Cen |114839.2-355913 |SRB: | 6.07 | 6.64 | |Hp| | | | | |HIP HIP | +190920 |V0920 Cen |114924.5-602533 |LB | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +190921 |V0921 Cen *|115023.4-354547 |SRB: | 9.57 | 10.01 | |Hp| | | | | |HIP HIP | +190922 |V0922 Cen |115113.0-615046 |ACYG: | 6.57 | 6.64 | |Hp| | | | | |HIP HIP | +190923 |V0923 Cen |115142.9-610930 |LC | 7.60 | 7.95 | |Hp| | | | | |HIP HIP | +190924 |V0924 Cen |115426.7-565811 |SRB | 6.89 | 7.05 | |Hp| | | | | |HIP HIP | +190925 |V0925 Cen |115743.0-373902 |SRB | 8.60 | 8.76 | |Hp| | | | | |HIP HIP | +190926 |V0926 Cen |121555.6-540325 |SRB | 6.67 | 6.73 | |Hp| | | | | |HIP HIP | +190927 |V0927 Cen |122921.0-381550 |LB | 9.05 | 9.44 | |Hp| | | | | |HIP HIP | +190928 |V0928 Cen |122957.9-414409 |SRB | 6.01 | 6.08 | |Hp| | | | | |HIP HIP | +190929 |V0929 Cen |123000.5-425547 |LB: | 6.76 | 6.79 | |Hp| | | | | |HIP HIP | +190930 |V0930 Cen |123037.7-361423 |LB: | 8.54 | 8.67 | |Hp| | | | | |HIP HIP | +190931 |V0931 Cen |123246.3-380437 |LB: | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +190932 |V0932 Cen |123305.8-373849 |LB | 9.07 | 9.34 | |Hp| | | | | |HIP HIP | +190933 |V0933 Cen *|123426.0-452346 |LB: | 8.61 | 8.71 | |Hp| | | | | |HIP HIP | +190934 |V0934 Cen |123608.2-334446 |SRB | 7.84 | 7.96 | |Hp| | | | | |HIP HIP | +190935 |V0935 Cen |123939.0-445536 |LB | 8.11 | 8.24 | |Hp| | | | | |HIP HIP | +190936 |V0936 Cen |124202.1-375637 |SRB | 8.41 | 8.68 | |Hp| | | | | |HIP HIP | +190937 |V0937 Cen |124313.3-360040 |LB: | 8.53 | 8.58 | |Hp| | | | | |HIP HIP | +190938 |V0938 Cen |124330.4-411918 |LB: | 7.16 | 7.22 | |Hp| | | | | |HIP HIP | +190939 |V0939 Cen |124614.1-435955 |LB: | 8.25 | 8.38 | |Hp| | | | | |HIP HIP | +190940 |V0940 Cen |124751.9-512638 |BY: | 9.59 | 9.73 | |Hp| | | | | |HIP HIP | +190941 |V0941 Cen |124954.6-341824 |LB: | 8.87 | 8.95 | |Hp| | | | | |HIP HIP | +190942 |V0942 Cen |125144.7-310501 |LB | 7.21 | 7.32 | |Hp| | | | | |HIP HIP | +190943 |V0943 Cen |125150.6-311207 |ACV | 6.93 | 6.98 | |Hp| | | | | |HIP HIP | +190944 |V0944 Cen |125642.1-384840 |LB: | 9.23 | 9.42 | |Hp| | | | | |HIP HIP | +190945 |V0945 Cen |125704.3-511156 |LPB | 5.14 | 5.16 | |Hp| | | | | |HIP HIP | +190946 |V0946 Cen |130134.9-604017 |BE | 7.33 | 7.46 | |Hp| | | | | |HIP HIP | +190947 |V0947 Cen |130506.7-470701 |DSCTC: | 6.52 | 6.55 | |Hp| | | | | |HIP HIP | +190948 |V0948 Cen |130637.6-643337 |EB: | 9.01 | 9.29 | |Hp| | | | | |HIP HIP | +190949 |V0949 Cen |130712.8-542000 |EA | 9.15 | 9.52 | |Hp| | | | | |HIP HIP | +190950 |V0950 Cen |130838.4-543652 |DSCTC | 7.82 | 7.85 | |Hp| | | | | |HIP HIP | +190951 |V0951 Cen |131114.3-390008 |LB: | 8.49 | 8.64 | |Hp| | | | | |HIP HIP | +190952 |V0952 Cen |131129.5-552125 |BE | 8.02 | 8.11 | |Hp| | | | | |HIP HIP | +190953 |V0953 Cen |131152.4-524844 |LB | 6.99 | 7.14 | |Hp| | | | | |HIP HIP | +190954 |V0954 Cen |131249.9-613242 |DSCT | 7.29 | 7.40 | |Hp| | | | | |HIP HIP | +190955 |V0955 Cen |131411.5-632225 |BE | 7.93 | 8.04 | |Hp| | | | | |HIP HIP | +190956 |V0956 Cen |131408.3-544135 |SRD: | 8.31 | 8.58 | |Hp| | | | | |HIP HIP | +190957 |V0957 Cen |131436.4-312511 |SRB | 11.11 | 11.78 | |Hp| | | | | |HIP HIP | +190958 |V0958 Cen |131440.7-383906 |BE | 7.09 | 7.16 | |Hp| | | | | |HIP HIP | +190959 |V0959 Cen |131510.0-605801 |GCAS | 9.67 | 10.00 | |Hp| | | | | |HIP HIP | +190960 |V0960 Cen |131554.9-561931 |E | 9.51 | 9.82 | |Hp| | | | | |HIP HIP | +190961 |V0961 Cen |131604.8-623502 |ELL: | 7.99 | 8.08 | |Hp| | | | | |HIP HIP | +190962 |V0962 Cen |131547.0-420318 |LB: | 8.29 | 8.40 | |Hp| | | | | |HIP HIP | +190963 |V0963 Cen |131844.4-581601 |E: | 8.69 | 8.79 | |Hp| | | | | |HIP HIP | +190964 |V0964 Cen |132037.8-524452 |EB | 5.40 | 5.44 | |Hp| | | | | |HIP HIP | +190965 |V0965 Cen |132255.6-620044 |ACYG: | 8.01 | 8.10 | |Hp| | | | | |HIP HIP | +190966 |V0966 Cen |132547.8-481458 |RS: | 9.84 | 9.94 | |Hp| | | | | |HIP HIP | +190967 |V0967 Cen |132725.1-623856 |BE: | 7.50 | 7.70 | |Hp| | | | | |HIP HIP | +190968 |V0968 Cen |132903.9-585632 |ACV | 8.10 | 8.16 | |Hp| | | | | |HIP HIP | +190969 |V0969 Cen |132934.3-611136 |LPB: | 10.03 | 10.25 | |Hp| | | | | |HIP HIP | +190970 |V0970 Cen |133214.3-615926 |LB | 8.47 | 8.73 | |Hp| | | | | |HIP HIP | +190971 |V0971 Cen |133241.7-534952 |LB | 8.51 | 8.69 | |Hp| | | | | |HIP HIP | +190972 |V0972 Cen |133330.1-621901 |WR | 10.42 | 10.64 | |Hp| | | | | |HIP HIP | +190973 |V0973 Cen |133338.9-303755 |LB: | 8.94 | 9.10 | |Hp| | | | | |HIP HIP | +190974 |V0974 Cen |133646.7-322413 |ELL: | 7.67 | 7.71 | |Hp| | | | | |HIP HIP | +190975 |V0975 Cen |133854.1-550128 |E: | 7.41 | 7.50 | |Hp| | | | | |HIP HIP | +190976 |V0976 Cen |133927.9-635908 |ACV: | 9.38 | 9.50 | |Hp| | | | | |HIP HIP | +190977 |V0977 Cen |134602.9-332803 |LB: | 8.87 | 8.97 | |Hp| | | | | |HIP HIP | +190978 |V0978 Cen |134617.6-470922 |LB | 7.65 | 7.79 | |Hp| | | | | |HIP HIP | +190979 |V0979 Cen |134756.8-635144 |EB | 7.49 | 7.61 | |Hp| | | | | |HIP HIP | +190980 |V0980 Cen |134730.9-460940 |LB | 8.05 | 8.30 | |Hp| | | | | |HIP HIP | +190981 |V0981 Cen |135108.9-303358 |LB | 8.18 | 8.38 | |Hp| | | | | |HIP HIP | +190982 |V0982 Cen |135117.8-392818 |BY: | 9.60 | 9.85 | |Hp| | | | | |HIP HIP | +190983 |V0983 Cen |135149.6-325939 |E: | 4.27 | 4.32 | |Hp| | | | | |HIP HIP | +190984 |V0984 Cen |135207.8-412733 |SRB | 8.28 | 8.45 | |Hp| | | | | |HIP HIP | +190985 |V0985 Cen |135341.0-444953 |LB: | 8.29 | 8.41 | |Hp| | | | | |HIP HIP | +190986 |V0986 Cen |135544.1-415942 |LB | 6.69 | 6.79 | |Hp| | | | | |HIP HIP | +190987 |V0987 Cen |135757.8-595305 |BE | 8.80 | 8.90 | |Hp| | | | | |HIP HIP | +190988 |V0988 Cen |135734.0-313911 |BY: | 9.77 | 10.02 | |Hp| | | | | |HIP HIP | +190989 |V0989 Cen |135852.2-474825 |LB: | 7.45 | 7.55 | |Hp| | | | | |HIP HIP | +190990 |V0990 Cen |140121.9-371953 |LB | 7.37 | 7.60 | |Hp| | | | | |HIP HIP | +190991 |V0991 Cen |140448.1-343347 |LB: | 9.15 | 9.30 | |Hp| | | | | |HIP HIP | +190992 |V0992 Cen |140546.5-544010 |EB: | 6.23 | 6.32 | |Hp| | | | | |HIP HIP | +190993 |V0993 Cen |140719.3-632608 |ACV | 8.87 | 8.91 | |Hp| | | | | |HIP HIP | +190994 |V0994 Cen |140733.5-541550 |SRD: | 8.26 | 8.38 | |Hp| | | | | |HIP HIP | +190995 |V0995 Cen |141052.2-391109 |LB: | 8.63 | 8.87 | |Hp| | | | | |HIP HIP | +190996 |V0996 Cen |141407.3-535555 |LB | 7.01 | 7.37 | |Hp| | | | | |HIP HIP | +190997 |V0997 Cen |141433.7-614756 |LPB: | 9.44 | 9.70 | |Hp| | | | | |HIP HIP | +190998 |V0998 Cen |141417.2-475025 |LB: | 9.07 | 9.23 | |Hp| | | | | |HIP HIP | +190999 |V0999 Cen |141741.3-604719 |LPB: | 9.03 | 9.15 | |Hp| | | | | |HIP HIP | +191000 |V1000 Cen |141909.4-565518 |E | 8.40 | 8.65 | |Hp| | | | | |HIP HIP | +191001 |V1001 Cen |141909.0-555256 |IA: | 7.24 | 7.42 | |Hp| | | | | |HIP HIP | +191002 |V1002 Cen |141944.3-365130 |LB | 6.48 | 6.98 | |Hp| | | | | |HIP HIP | +191003 |V1003 Cen |142252.2-555744 |LC: | 7.47 | 7.74 | |Hp| | | | | |HIP HIP | +191004 |V1004 Cen |142226.4-383855 |LB | 8.86 | 9.12 | |Hp| | | | | |HIP HIP | +191005 |V1005 Cen |142825.1-393229 |SRB | 7.98 | 8.13 | |Hp| | | | | |HIP HIP | +191006 |V1006 Cen |142906.4-603847 |SRB | 8.59 | 8.81 | |Hp| | | | | |HIP HIP | +191007 |V1007 Cen |143148.0-383330 |SRB: | 8.11 | 8.29 | |Hp| | | | | |HIP HIP | +191008 |V1008 Cen |143336.8-584915 |BE | 7.70 | 7.77 | |Hp| | | | | |HIP HIP | +191009 |V1009 Cen |143325.8-343238 |BY: | 10.24 | 10.43 | |Hp| | | | | |HIP HIP | +191010 |V1010 Cen |143429.3-641207 |GCAS | 8.93 | 9.23 | |Hp| | | | | |HIP HIP | +191011 |V1011 Cen |143810.2-624304 |LB: | 8.47 | 8.64 | |Hp| | | | | |HIP HIP | +191012 |V1012 Cen |144005.5-595553 |BE | 9.10 | 9.16 | |Hp| | | | | |HIP HIP | +191013 |V1013 Cen |143928.3-313936 |LB | 9.01 | 9.18 | |Hp| | | | | |HIP HIP | +191014 |V1014 Cen |144236.4-324335 |I: | 11.52 | 12.24 | |Hp| | | | | |HIP HIP | +191015 |V1015 Cen *|144308.9-302133 |CEP: | 8.64 | 8.78 | |Hp| | | | | |HIP HIP | +191016 |V1016 Cen |144508.2-384517 |LB: | 8.42 | 8.54 | |Hp| | | | | |HIP HIP | +191017 |V1017 Cen |144753.6-321450 |LB | 7.59 | 7.79 | |V | | | | | |HIP HIP | +191018 |V1018 Cen |145157.6-404821 |LPB: | 7.89 | 7.98 | |Hp| | | | | |HIP HIP | +191019 |V1019 Cen |145251.1-374811 |LPB | 4.96 | 4.98 | |Hp| | | | | |HIP HIP | +191020 |V1020 Cen |145612.0-352316 |LB | 8.77 | 8.92 | |Hp| | | | | |HIP HIP | +191021 |V1021 Cen |150019.1-375214 |SRB | 8.46 | 8.64 | |Hp| | | | | |HIP HIP | +191022 |V1022 Cen |150234.8-413425 |RR: | 8.33 | 8.38 | |Hp| | | | | |HIP HIP | +191023 |V1023 Cen |114759.8-401730 |DSCTC | 7.94 |( 0.05 v )| |V | | | | | |75081 CoD | +191024 |V1024 Cen |122015.1-535531 |SRD: | 9.36 |( 0.10 )| |V | | | | | |75082 CPD | +191025 |V1025 Cen |123816.4-384246 |XM | 15.20 | 16.45 | |B | | | | | |75083 75083| +191026 |V1026 Cen |125150.8-520743 |GDOR | 9.33 | 9.38 | |Hp| | | | | |75029 CoD | +191027 |V1027 Cen | | | | | | | | | | | | |=V0487 Cen +191028 |V1028 Cen |130117.8-485319 |BE | 10.52 | 10.70 | |Hp| | | | | |75084 CoD | +191029 |V1029 Cen |131806.9-634114 |ACYG | 7.86 | 7.95 | |Hp| | | | | |75030 CPD | +191030 |V1030 Cen |132801.7-472319 |DSCTC: | 9.28 |( 0.03 )| |V | | | | | |75085 CoD | +191031 |V1031 Cen |134205.0-303456 |M | 12.4 | 14.5 | |p | | | | | |75002 GSC | +191032 |V1032 Cen |140810.3-412353 |IT | 12.05 | 12.19 | |V | | | | | |75086 CoD | +191033 |V1033 Cen |114122.7-641016 |XM | 16.6 |( 1.0 )| |V | | | | | |76114 76005| +191034 |V1034 Cen |143501.3-602332 |DSCTC | 9.14 |( 0.03 )| |B | | | | | |76009 DM | +191035 |V1035 Cen |143521.5-622240 |DSCTC | 9.18 |( 0.02 )| |B | | | | | |76009 DM | +191036 |V1036 Cen |143639.7-623342 |DSCTC | 10.03 |( 0.02 )| |B | | | | | |76009 DM | +191037 |V1037 Cen |145650.5-300534 |M | 12.0 | 14.9 | |V | | | | | |76054 GSC | +191038 |V1038 Cen |150251.7-413603 |M | 12.7 |< 14.8 | |V | | | | | |76128 GSC | +191039 |V1039 Cen |135541.2-641557 |NA | 9.11 |< 20. | |V | | | | | |77111 | +191040 |V1040 Cen |115527.0-564153 |UG | 12.5 |< 14.6 | |V | | | | | |77098 USNO | +191041 |V1041 Cen |124908.8-411226 |DSCTC | 12.4 |( 0.02 )| |V | | | | | |77101 GSC | +191042 |V1042 Cen |125001.1-520126 |M | 8.9 | 12.7 | |R | | | | | |77102 77219| +191043 |V1043 Cen |131317.2-325912 |XM | 14.62 | 16.38 | |V | | | | | |77108 77108| +191044 |V1044 Cen |131601.4-370011 |ZAND | 10.7 | 11.7 | |V | | | | | |77109 DM | +191045 |V1045 Cen *|132736.5-474640 |RRAB | 17.42 | 18.65 | |V | | | | | |77110 USNO | +191046 |V1046 Cen |125553.0-374205 |RR | 13.3 | 14.8 | |p | | | 0.53 | | |00078 GSC | +191047 |V1047 Cen |132049.7-623751 |N | 8.8 |< 11.0 | |V | | | | | |78261 | +191048 |V1048 Cen *|112842.7-592543 |CEP(B) | 9.57 | 9.83 | |I | | | 0.922405 | |F8 |78147 DM | +191049 |V1049 Cen |113717.6-503023 |SRA | 10.7 | 11.9 | |V |53387 | | 82. | |Me |78090 78150| +191050 |V1050 Cen |113743.2-440431 |M | 10.4 | 14.5 | |V |52850 | | 240. | |Me |78090 78289| +191051 |V1051 Cen |113748.4-631924 |EA | 7.13 | 7.24 | |V |47964.840 | | 9.64645 | |O6.5V(f)+O8.5V |78011 DM | +191052 |V1052 Cen |113944.5-601028 |IA | 8.97 | 9.56 | |V | | | | |B9.5V |78038 DM | +191053 |V1053 Cen *|122858.3-341502 |EW | 11.80 | 12.65 | 12.57 |V |51905.805 | | 0.323464 | | |78011 DM | +191054 |V1054 Cen *|123249.0-354142 |EW | 11.20 | 12.20 | 12.18 : |V |52454.529 | | 0.3483075 | | |78011 DM | +191055 |V1055 Cen |124540.4-474005 |M | 12.0 |< 15.0 | |V |52075 | | 272.7 | |Me |78090 USNO | +191056 |V1056 Cen |125844.7-423043 |M | 10.4 |< 11.5 | |V |53176 | | 353. | |Me |78090 GSC | +191057 |V1057 Cen *|131238.2-632232 |EW | 12.4 | 12.8 | 12.7 |V |53523.6052 | | 0.451682 | | |78166 78166| +191058 |V1058 Cen |131311.0-632331 |IS | 11.8 |( 0.2 * )| |R | | | | | |78166 78166| +191059 |V1059 Cen *|134301.3-483622 |M | 11.2 |< 15.0 | |V |52724 | | 259. | |Me |78090 GSC | +191060 |V1060 Cen |134932.1-462611 |SRA: | 10.6 |< 11.5 | |V |52660 | | 363. | |Me |78090 GSC | +191061 |V1061 Cen *|141456.8-611418 |EA | 9.55 | 9.71 | 9.61 |V |52738.708 | | 2.20957 |11 |B2V |78011 DM | +191062 |V1062 Cen |143028.1-630746 |M | 11.0 |< 14.5 | |V |52503 | | 265.7 | |Me |78130 78174| +191063 |V1063 Cen |144126.5-354738 |DSCTC | 10.71 |( 0.02 )| |B | | | 0.050 | |A2 |78176 DM | +191064 |V1064 Cen |141847.4-300503 |SR | 15. | 16. | |p | | | | |Me |04001 04001| +191065 |V1065 Cen |114310.2-580404 |NA | 8.5 |< 17.0 | |V |54126. |2007 | | |pec(Nova) |79137 | +191066 |V1066 Cen |110638.3-491800 |SR | 11.5 | 12.6 | |V |53726. | | 104. | |M5e |79100 GSC | +191067 |V1067 Cen |110714.9-441134 |M | 10.8 |< 14.8 | |V |52656. | | 331. | | |79064 USNO | +191068 |V1068 Cen |110725.4-524800 |M | 12.6 |< 15.2 | |V |53876. | | 261. | |M9 |79072 USNO | +191069 |V1069 Cen |110725.8-424631 |M | 11.0 |< 14.4 | |V |53757. | | 170. | |Me |79064 GSC | +191070 |V1070 Cen |111139.8-541126 |SRA: | 12.9 |< 14.8 | |V |53055. | | 281. | |M2e |79072 USNO | +191071 |V1071 Cen |111207.6-373438 |EA | 9.68 | 10.23 | 10.03 : |V |51966.704 | | 2.69535 |06 |A5 |79011 DM | +191072 |V1072 Cen |111213.3-551700 |M | 11.8 |< 14.7 | |V |53482. | | 197. | |M8 |79064 GSC | +191073 |V1073 Cen |111232.6-473341 |M | 11.4 |< 14.8 | |V |53751. | | 340. | |Me |79072 GSC | +191074 |V1074 Cen |111237.1-562016 |EA | 11.4 |< 12.0 | 12.1 |V |51947.689 | | 2.4255 |09 |A |79064 DM | +191075 |V1075 Cen |111339.4-472723 |M | 10.9 | 14.7 | |V |53564. | | 202. | | |79064 GSC | +191076 |V1076 Cen |111422.4-424020 |M | 11.9 |< 14.9 | |V |53832. | | 318. | |Me |79072 GSC | +191077 |V1077 Cen |111459.9-422827 |M | 11.6 |< 14.6 | |V |53391. | | 273. | | |79072 GSC | +191078 |V1078 Cen |111641.6-423810 |EA | 11.96 | 12.66 | 12.11 |V |52736.612 | | 1.81033 |12 | |79018 DM | +191079 |V1079 Cen |111735.4-513740 |M | 10.2 |< 14.6 | |V |53423. | | 278. | |Me |79072 GSC | +191080 |V1080 Cen |111806.6-460851 |M | 11.0 | 14.8 | |V |53870. | | 138. | |Me |79100 GSC | +191081 |V1081 Cen |112158.3-492855 |M | 11.2 |< 15.0 | |V |53745. | | 276. | | |79072 USNO | +191082 |V1082 Cen |112205.5-471733 |EA | 12.32 | 13.6 | 12.45 : |V |52934.800 | | 2.63205 |13 | |79018 79087| +191083 |V1083 Cen |112508.3-603128 |LB | 12.0 | 12.6 | |V | | | | |M6 |79100 GSC | +191084 |V1084 Cen |112612.2-512138 |SRB | 8.85 | 10.55 | |V | | | 135. | | |79100 DM | +191085 |V1085 Cen |112646.2-504714 |M | 12.3 | 17.1 : | |V |52963. | | 360. : | | |79072 USNO | +191086 |V1086 Cen *|112818.5-491500 |M | 11.2 |< 13.2 | |V |52835. | | 145. | |Me |79072 GSC | +191087 |V1087 Cen *|112852.0-625552 |EA | 9.34 | 9.52 | 9.50 |V |50563.528 | | 5.04913 |09 |O9V |79218 DM | +191088 |V1088 Cen |112855.8-534300 |SRB | 9.45 | 10.00 | |V | | | 83. | |M9 |79100 DM | +191089 |V1089 Cen *|113148.7-604136 |EA | 7.88 | 7.96 | 7.95 |V |48502.854 | | 5.48793 |06 |B9.5V |79006 DM | +191090 |V1090 Cen |113202.0-442301 |M | 11.7 | 14.4 | |V |53894. | | 222. | | |79064 GSC | +191091 |V1091 Cen |113329.1-533713 |M | 11.5 |< 14.5 | |V |53523. | | 262. | | |79100 USNO | +191092 |V1092 Cen |113626.2-611910 |LC | 7.60 | 8.05 | |V | | | | |M2.5Iab-Ib |79100 DM | +191093 |V1093 Cen |113626.7-593057 |EA | 12.1 | 12.8 | 12.8 |V |52676.759 | | 4.07612 |06 | |79100 GSC | +191094 |V1094 Cen *|113633.8-463007 |EB | 9.90 | 10.45 | 10.16 |V |51869.90 | | 0.97772 | |A4 |79064 DM | +191095 |V1095 Cen *|114148.8-515229 |M: | 12.0 |< 13.6 | |V |53895. | | 336. | | |79064 USNO | +191096 |V1096 Cen |114248.4-514609 |SRB | 9.5 | 11.2 | |V | | | 64. | | |79064 DM | +191097 |V1097 Cen |114659.8-622829 |EB | 11.7 | 12.7 | 12.1 |V |53034.7643 | | 0.91093 | | |79064 GSC | +191098 |V1098 Cen |114704.3-622855 |SR: | 14.0 | 15.8 | |R | | | | |M8 |79100 USNO | +191099 |V1099 Cen |114720.2-615458 |EB | 10.90 | 11.95 | 11.35 |V |52425.5314 | | 1.25094 | |B5 |79064 79090| +191100 |V1100 Cen *|114753.8-634459 |M | 11.7 |< 14.6 | |V |53516. | | 345. | |M6 |79072 GSC | +191101 |V1101 Cen |114914.5-461323 |EA | 8.13 | 8.55 | 8.46 |V |52434.486 | | 5.0323 |11 |F5V |79011 DM | +191102 |V1102 Cen |114930.1-354654 |SRB | 11.1 | 12.1 | |V | | | 83. | | |79100 DM | +191103 |V1103 Cen |115113.6-380314 |SRB | 13.0 | 14.0 | |V | | | 153. | | |79100 GSC | +191104 |V1104 Cen *|115142.7-625311 |EB | 9.91 | 10.27 | 10.19 |V |51971.701 | | 0.876112 | |B5 |79011 DM | +191105 |V1105 Cen |115408.7-541017 |SRB | 9.8 | 10.8 | |V | | | 59. | | |79100 DM | +191106 |V1106 Cen |115512.9-565221 |EB | 12.25 | 13.1 | 12.50 |V |52726.8976 | | 1.22383 | | |79064 79071| +191107 |V1107 Cen |115903.5-523506 |SRA | 11.6 | 13.7 | |V |53877. | | 157. | | |79100 GSC | +191108 |V1108 Cen |120012.7-421204 |SRA | 12.3 | 14.5 | |V |53743. | | 128. | | |79100 GSC | +191109 |V1109 Cen |120046.1-402116 |EA | 9.58 | 10.23 | 10.1 : |V |52414.567 | | 3.3370 |07 |A7/8V |79011 DM | +191110 |V1110 Cen |120347.8-531648 |M | 12.0 |< 14.6 | |V |53707. | | 348.8 | | |79064 GSC | +191111 |V1111 Cen |120540.0-354518 |SRB | 10.8 | 11.8 | |V | | | 59. | | |79064 DM | +191112 |V1112 Cen |120637.7-424319 |EW | 13.8 | 14.6 | 14.5 : |V |53820.724 | | 0.386639 | | |79100 GSC | +191113 |V1113 Cen |120646.9-501926 |M | 11.1 | 14.0 | |V |53862. | | 127.8 | |Me |79064 GSC | +191114 |V1114 Cen |120821.7-430401 |RRC | 13.1 | 13.7 | |V |53597.472 | | 0.278507 |35 | |79064 GSC | +191115 |V1115 Cen |121006.8-532540 |M | 12.8 |< 15.0 | |V |53393. | | 325. | | |79072 USNO | +191116 |V1116 Cen |121103.3-504023 |EA | 11.72 | 13.7 | 11.85 |V |52759.622 | | 1.95074 |14 | |79018 DM | +191117 |V1117 Cen |121157.6-505042 |EA | 11.5 | 13.1 | 11.7 |V |53835.669 | | 1.135683 |15 | |79064 DM | +191118 |V1118 Cen |121643.0-455203 |EA | 9.55 | 10.1 : | 9.9 : |V |47945.451 | | 11.30489 |02 : |G3V |79004 DM | +191119 |V1119 Cen *|121656.8-451207 |EA | 9.49 | 9.89 | 9.82 |V |52106.482 | | 5.90859 |05 |A8/9IV |79011 DM | +191120 |V1120 Cen |121837.0-530812 |M | 13.2 |< 16.8 | |V |53141. | | 241. | | |79072 USNO | +191121 |V1121 Cen |122338.7-342413 |EA | 10.80 | 11.60 | 10.97 |V |52710.707 | | 0.996386 |18 | |79003 DM | +191122 |V1122 Cen |122403.0-414908 |SRB | 10.5 | 11.6 | |V | | | 177. | | |79064 DM | +191123 |V1123 Cen |122453.5-470908 |SRD | 7.84 | 8.04 | |V |53582. | | 60.6 | |F3Ib |79093 79093| +191124 |V1124 Cen |122636.6-522525 |M | 10.8 |< 14.5 | |V |53418. | | 305. | |S7,8e |79064 GSC | +191125 |V1125 Cen |122901.2-475739 |SRB | 10.6 | 11.9 | |V | | | 110. | | |79100 79078| +191126 |V1126 Cen |123254.5-543854 |LB | 9.85 | 10.14 | |V | | | | | |79100 DM | +191127 |V1127 Cen |123352.8-344958 |SRB | 10.8 | 11.8 | |V | | | 68. | | |79064 DM | +191128 |V1128 Cen |123514.7-353650 |LB | 12.0 | 12.9 | |V | | | | | |79100 GSC | +191129 |V1129 Cen *|123907.9-453344 |EB+* | 9.1 | 9.85 | 9.75 |V |52491.552 | | 0.893025 | |F0IV-III |79156 DM | +191130 |V1130 Cen |124046.4-345135 |RRC | 13.6 | 14.2 | |V |53453.663 | | 0.255521 |35 | |79100 GSC | +191131 |V1131 Cen |124156.6-501612 |M | 11.4 |< 15.0 | |V |53893. | | 232. | |Me |79064 USNO | +191132 |V1132 Cen |124209.6-435503 |M: | 13.5 |< 15.0 | |V |53716. | | 560. | |Ce |79100 USNO | +191133 |V1133 Cen *|124315.0-334102 |EA | 9.56 | 9.78 | 9.60 |V |52064.518 | | 1.270335 |17 |G8IV CNIII |79003 DM | +191134 |V1134 Cen |124454.1-401718 |RRAB | 13.4 | 14.8 | |V |53127.652 | | 0.49843 |25 | |79100 GSC | +191135 |V1135 Cen |124800.5-440120 |M | 11.0 |< 15.0 | |V |53863. | | 260. | |Me |79064 GSC | +191136 |V1136 Cen |124933.0-552340 |M | 11.8 |< 14.4 | |V |53873. | | 229. | | |79064 USNO | +191137 |V1137 Cen |125056.1-311919 |LB: | 12.7 | 13.7 | |V | | | | | |79100 GSC | +191138 |V1138 Cen |125203.8-310253 |RRC | 13.0 | 13.6 | |V |52810.5462 | | 0.322775 |35 | |79064 GSC | +191139 |V1139 Cen |125223.8-310327 |EW | 13.8 | 14.7 | 14.5 |V |51876.8519 | | 0.323558 | | |79093 79093| +191140 |V1140 Cen |125316.4-372102 |EW | 13.6 | 14.7 | 14.4 |V |53862.60 | | 0.43461 | | |79190 79190| +191141 |V1141 Cen |125700.3-333007 |LB | 9.3 | 9.9 | |V | | | | |K5 |79100 DM | +191142 |V1142 Cen *|125814.9-625808 |EA | 11.67 | 12.43 | 12.30 |V |52755.618 | | 2.52480 |07 |A |79100 79071| +191143 |V1143 Cen |125908.5-314155 |LB | 10.9 | 11.9 | |V | | | | | |79100 DM | +191144 |V1144 Cen |125914.9-315642 |EA | 11.97 | 12.7 | 12.26 |V |53133.814 | | 1.069415 |11 | |79003 DM | +191145 |V1145 Cen |125947.8-501547 |RRAB | 12.8 | 14.0 | |V |53008.828 | | 0.588218 |18 | |79064 GSC | +191146 |V1146 Cen |130050.1-643751 |SRA | 10.5 | 12.0 | |V |53044. | | 299. | |C |79064 GSC | +191147 |V1147 Cen |130057.6-491212 |UGSS: | 11.0 | 13.7 | |V | | | (38.) | | |79237 79071| +191148 |V1148 Cen |130144.9-504217 |M | 10.8 |< 14.4 | |V |53776. | | 287. | | |79064 USNO | +191149 |V1149 Cen |130154.9-504045 |EA | 11.24 | 13.05 | 11.43 |V |52738.740 | | 3.5116 |14 | |79018 DM | +191150 |V1150 Cen |130238.4-470716 |SRA | 11.5 | 13.6 | |V |53799. | | 151. | | |79064 GSC | +191151 |V1151 Cen |130314.9-483029 |M | 10.6 |< 14.5 | |V |53760. | | 192. | |Me |79064 USNO | +191152 |V1152 Cen |130351.0-640600 |LB | 8.2 | 9.1 | |V | | | | |M6III |79100 DM | +191153 |V1153 Cen |130436.0-614017 |EA | 9.68 | 10.22 | 10.13 |V |53153.621 | | 5.97872 |07 |B0V |79003 DM | +191154 |V1154 Cen |130530.8-520656 |SRS | 6.33 | 6.58 | |V | | | 21.8 | |M1III |79190 DM | +191155 |V1155 Cen *|130617.9-482746 |BY | 10.90 |( 0.05 )| |V | | | 8.1 : | |K0Ve |79147 2MASS| +191156 |V1156 Cen |130626.5-382317 |EA | 10.30 | 11.02 | 10.99 |V |52116.460 | | 1.04222 |17 |A1/2V |79018 DM | +191157 |V1157 Cen |130633.9-423234 |M | 10.6 : |< 14. | |V |53591. | | 195. | | |79064 GSC | +191158 |V1158 Cen |131031.7-451947 |SRB | 12.6 | 14.2 | |V | | | 178. | | |79190 79190| +191159 |V1159 Cen |131044.1-471719 |M | 11.4 |< 14.7 | |V |53089. | | 280. | |Me |79064 GSC | +191160 |V1160 Cen |131106.7-541000 |EA | 8.63 | 8.80 | 8.78 |V |53183.610 | | 10.35420 |02 |B7V |79003 DM | +191161 |V1161 Cen |131209.1-395444 |SRA | 11.0 | 12.2 | |V |53101. | | 328. | | |79064 GSC | +191162 |V1162 Cen |131224.0-570644 |M | 13.2 |< 15.1 | |V |53827. | | 303. | |M10 |79190 79190| +191163 |V1163 Cen |131225.6-570001 |SRB | 9.0 | 9.2 | |V | | | 46.2 | |S5,4 |79064 DM | +191164 |V1164 Cen |131300.3-483050 |LB | 12.5 | 14.2 | |V | | | | | |79100 GSC | +191165 |V1165 Cen |131446.4-555853 |SRB | 9.05 | 10.95 | |V | | | 106.8 | | |79064 GSC | +191166 |V1166 Cen *|131551.3-635303 |EA | 8.77 | 8.98 | 8.87 |V |51955.858 | | 13.4197 |04 : |B1/2V |79006 DM | +191167 |V1167 Cen |131553.0-360348 |RRAB | 13.0 | 14.1 | |V |53607.498 | | 0.43143 |20 : | |79190 79190| +191168 |V1168 Cen |131717.7-334721 |RRAB | 12.7 | 13.4 | |V |53542.659 | | 0.516305 |25 : | |79064 GSC | +191169 |V1169 Cen |131830.8-623945 |EA | 10.44 | 10.67 | 10.65 |V |51985.818 | | 11.0385 |03 |B3-B5 |79006 DM | +191170 |V1170 Cen |131902.6-470721 |M | 12.0 |< 15.1 | |V |53737. | | 358. | |Me |79064 USNO | +191171 |V1171 Cen |132035.5-632443 |BE | 9.05 | 9.32 | |V | | | | |B2/4III/IVe |79100 DM | +191172 |V1172 Cen |132137.6-613415 |LB | 8.4 | 8.7 | |V | | | | |K-M |79100 DM | +191173 |V1173 Cen |132142.9-604947 |SRB | 11.0 | 11.9 | |V | | | 204. | |M7 |79064 79010| +191174 |V1174 Cen |132149.9-615703 |BE | 10.5 | 10.9 | |V | | | | |B5e |79100 GSC | +191175 |V1175 Cen |132228.7-455330 |EA | 11.81 | 12.61 | 12.03 |V |52793.568 | | 0.740645 |21 | |79018 GSC | +191176 |V1176 Cen *|132301.8-622632 |EA | 10.09 | 10.36 | 10.30 |V |53474.580 | | 31.029 |06 |B1Ia |79009 DM | +191177 |V1177 Cen |132418.2-371701 |EA | 9.08 | 9.44 : | 9.42 : |V |52014.643 | | 5.7945 |05 |G5V |79018 DM | +191178 |V1178 Cen |132453.5-394403 |EA | 11.70 | 13.8 | 11.83 |V |53106.757 | | 2.13185 |10 | |79003 79091| +191179 |V1179 Cen |132556.5-401819 |RRC | 13.6 | 14.4 | |V |53818.7046 | | 0.274223 |38 | |79190 GSC | +191180 |V1180 Cen *|132629.2-642951 |M | 11.0 |< 13.1 | |V |53539. | | 218. | |M6 |79064 2MASS| +191181 |V1181 Cen |132745.4-374659 |RRAB | 12.4 | 13.5 | |V |52657.828 | | 0.548042 |11 | |79064 GSC | +191182 |V1182 Cen *|132810.1-480229 |EA | 12.8 | 13.4 : | |V |52860.575 | | 0.94909 |20 : | |79190 79190| +191183 |V1183 Cen |132851.5-320009 |LB | 9.3 | 10.4 | |V | | | | |M6 |79100 DM | +191184 |V1184 Cen |132907.0-355241 |RRC | 12.6 | 13.2 | |V |53597.499 | | 0.339625 |35 | |79064 GSC | +191185 |V1185 Cen *|132913.0-640641 |LB: | 13.0 | 14.0 : | |V | | | | | |79100 GSC | +191186 |V1186 Cen |132914.0-592733 |LB | 12.8 | 13.8 | |V | | | | |M6 |79100 2MASS| +191187 |V1187 Cen |132914.4-441403 |SRB | 9.0 | 9.9 | |V | | | 65. | |M3 |79100 DM | +191188 |V1188 Cen |133204.3-383632 |RRAB | 13.9 | 14.8 : | |V |52736.6821 | | 0.70943 |30 : | |79190 GSC | +191189 |V1189 Cen |133459.4-355216 |RRAB | 13.5 | 14.8 | |V |52652.844 | | 0.58534 |17 | |79190 GSC | +191190 |V1190 Cen |133514.8-435022 |SRB | 10.6 | 12.6 | |V | | | 128. | | |79100 79233| +191191 |V1191 Cen |133619.2-342512 |RRAB | 13.4 | 14.8 | |V |53423.7902 | | 0.50063 |09 | |79190 GSC | +191192 |V1192 Cen |133736.8-381145 |M | 12.0 |< 14.3 | |V |53093. | | 305. | | |79190 USNO | +191193 |V1193 Cen |133807.8-392953 |SRA | 12.1 | 14.3 | |V |53507. | | 159. | | |79064 GSC | +191194 |V1194 Cen *|133834.6-494259 |EB | 9.71 | 9.93 | 9.87 |V |51984.818 | | 0.793856 | |A6IV |79018 DM | +191195 |V1195 Cen |133939.4-404927 |LB | 10.4 | 11.5 | |V | | | | | |79100 DM | +191196 |V1196 Cen |134002.1-440455 |M | 12.7 |< 14.3 | |V |53063. | | 318. | | |79190 USNO | +191197 |V1197 Cen *|134038.0-632230 |DCEP | 12.4 | 12.9 | |V |54301.57 | | 5.555 |25 | |79064 USNO | +191198 |V1198 Cen *|134051.6-625247 |EA | 8.66 | 8.80 | 8.73 : |V |48966.453 | | 6.50404 |06 |B6II/III |79003 DM | +191199 |V1199 Cen |134522.9-355616 |SRA: | 12.2 | 14.0 | |V |53755. | | 202. | | |79064 GSC | +191200 |V1200 Cen |135217.5-383717 |EA | 8.44 | 8.70 | 8.51 |V |48509.652 | | 2.482874 |05 |F5V |79011 DM | +191201 |V1201 Cen |135558.2-302936 |SRB | 9.6 | 10.4 | |V | | | 164. | |Me |79064 DM | +191202 |V1202 Cen *|135920.1-622737 |EA | 8.42 | 8.62 | 8.62 : |V |47917.350 | | 15.5543 |02 : |B9V |79018 DM | +191203 |V1203 Cen |141148.0-620135 |EB | 7.67 | 7.80 | 7.72 |V |48433.960 | | 2.67096 | |B4/5III/IV |79009 DM | +191204 |V1204 Cen |141348.4-640030 |EA | 10.95 | 11.65 | 11.4 : |V |52652.828 | | 2.32713 |06 | |79003 79101| +191205 |V1205 Cen |141640.7-365618 |SRA | 10.2 | 12.7 | |V |53800. | | 176. | | |79100 DM | +191206 |V1206 Cen |141929.1-342350 |EA | 11.77 | 12.76 | 12.05 |V |53063.822 | | 2.582712 |10 | |79003 DM | +191207 |V1207 Cen |142103.2-325313 |EA | 10.71 | 11.93 | 10.88 |V |51948.804 | | 8.5366 |06 |G6V |79011 DM | +191208 |V1208 Cen |143205.6-633139 |M | 11.8 |< 14.6 | |V |53792. | | 453. | | |79064 USNO | +191209 |V1209 Cen |143603.1-582825 |EA | 11.49 | 11.9 : | 11.9 : |V |51954.777 | | 2.09093 |11 | |79018 GSC | +191210 |V1210 Cen *|143655.6-581541 |CEP(B) | 9.75 | 10.35 | |V |52082.85 | | 4.317 | | |79102 DM | +191211 |V1211 Cen |143929.4-422708 |EB: | 11.26 | 11.87 | 11.77 |V |52452.523 | | 1.14153 | | |79018 DM | +191212 |V1212 Cen |143502.5-640620 |NA | 8.38 |< 19. | |V |54708. |2008 | | | |79245 | +191213 |V1213 Cen |133115.8-635739 |NA | 8.53 |< 15. | |V |54960. |2009 | 2009 | |pec(Nova) |80214 | NL80_1 +191214 |V1214 Cen *|110614.8-422432 |EB+DSCTC | 10.47 | 10.76 | 10.69 |V |51950.2300 | | 2.136998 | | |80281 DM | NL80_2 +191215 |V1215 Cen *|111326.2-452343 |IT | 13.80 |( 0.11 )| |V | | | 0.63 | |M0.5Ve |80330 GSC | NL80_2 +191216 |V1216 Cen *|111435.5-553008 |EA | 11.32 | 11.47 | |V |54486.72 | | 3.80399 |10 | |80011 GSC | NL80_2 +191217 |V1217 Cen |112105.5-384516 |IT | 12.4 | 12.9 | |V | | | 3.30327 | |M1Ve |80001 GSC | NL80_2 +191218 |V1218 Cen *|112217.5-623830 |EA | 13.3 | 14.0 | 13.5 |V |54154.8125 | | 0.767307 |12 | |80242 80242| NL80_2 +191219 |V1219 Cen *|112325.9-623842 |EA | 10.42 | 10.70 | 10.65 |V |54833.8244 | | 9.3270 |03 |B9.5IV/V |80001 DM | NL80_2 +191220 |V1220 Cen |113045.0-604359 |EA | 16.35 | 16.38 | |I |52684.68689 | | 4.55170 |03 |F8 |80344 80344| NL80_2 +191221 |V1221 Cen |113104.5-410703 |RRAB | 12.2 | 12.9 | |V |55001.335 | | 0.353228 |25 | |80002 GSC | NL80_2 +191222 |V1222 Cen |113131.6-603653 |EA | 16.83 | 16.85 | |I |52683.45961 | | 1.43290 |07 | |80344 80344| NL80_2 +191223 |V1223 Cen |113218.8-612034 |M | 5.57 | 6.13 | |K | | | 395. | |C |80166 2MASS| NL80_2 +191224 |V1224 Cen |113221.8-605046 |EP: | 15.94 | 15.96 | |I |52683.46444 | | 1.48350 |07 |G9 |80344 80344| NL80_2 +191225 |V1225 Cen |113229.9-605826 |EA | 15.03 | 15.04 | |I |52683.36717 | | 2.07380 |07 |A2 |80344 80344| NL80_2 +191226 |V1226 Cen |113230.4-603842 |EA | 15.67 | 15.70 | |I |52686.11365 | | 3.84170 |04 |A9 |80344 80344| NL80_2 +191227 |V1227 Cen |113304.3-603405 |EA | 16.33 | 16.35 | |I |52685.48763 | | 2.74120 |06 |A9 |80344 80344| NL80_2 +191228 |V1228 Cen |113318.0-630616 |BCEP | 9.55 |( 0.04 )| |V | | | 0.16848 | |B1III |80356 DM | NL80_2 +191229 |V1229 Cen *|113333.9-635345 |EB | 9.23 | 9.52 | 9.49 |V |51868.478 | | 0.991121 | |B1.5Vn |80036 DM | NL80_2 +191230 |V1230 Cen |113403.8-605414 |EA | 13.69 | 13.70 | |I |52682.92526 | | 3.34980 |03 |K4 |80344 80344| NL80_2 +191231 |V1231 Cen |113405.5-603939 |EP: | 16.57 | 16.61 | |I |52685.79072 | | 2.94460 |03 | |80344 80344| NL80_2 +191232 |V1232 Cen |113445.0-382549 |SXPHE: | 12.26 | 12.67 | |V | | | 0.129485 |20 : | |80358 DM | NL80_2 +191233 |V1233 Cen |113452.8-605236 |EA | 16.74 | 16.77 | |V |52685.19335 | | 2.44560 |06 | |80344 80344| NL80_2 +191234 |V1234 Cen |113540.4-502833 |M | 11.7 |< 14.2 | |V |52762. | | 310. | | |80360 2MASS| NL80_2 +191235 |V1235 Cen |113616.7-602918 |M: | 11.6 |< 12.2 | |V |54460. | | 510. | |C |80001 2MASS| NL80_2 +191236 |V1236 Cen |114613.0-570405 |LB | 11.00 | 11.50 | |V | | | | |M5 |80001 GSC | NL80_2 +191237 |V1237 Cen *|114633.6-621756 |EW | 11.1 | 11.9 | 11.7 |V |54540.7779 | | 0.486009 | | |80242 80242| NL80_2 +191238 |V1238 Cen *|114823.7-372849 |IT | 14.00 |( 0.08 )| |V | | | 3.98 | | |80330 2MASS| NL80_2 +191239 |V1239 Cen *|114824.2-372849 |IT | 11.2 | 11.5 | |V | | | 5.10 | |K5V |80330 DM | NL80_2 +191240 |V1240 Cen |114848.3-633728 |M | 4.60 | 6.34 | |K | | | 615. | |C |80166 2MASS| NL80_2 +191241 |V1241 Cen |114921.3-600705 |M | 4.57 | 5.58 | |K | | | 652. | |C |80166 2MASS| NL80_2 +191242 |V1242 Cen *|115047.3-555506 |EA | 13.6 |< 14.2 | 13.8 |V |52760.7435 | | 1.285056 |08 : | |80242 80242| NL80_2 +191243 |V1243 Cen |115100.8-490609 |M | 11.8 |< 14.5 | |V |53451. | | 500. | | |80360 GSC | NL80_2 +191244 |V1244 Cen |115255.7-621654 |EA | 14.96 | 14.97 | |I |52687.41198 | | 3.66946 |04 |G1 |80344 80344| NL80_2 +191245 |V1245 Cen |115330.7-610333 |M | 5.30 | 6.22 | |K | | | 535. | |C |80166 2MASS| NL80_2 +191246 |V1246 Cen |115405.5-620439 |EA | 16.30 | 16.32 | |I |52685.88809 | | 3.73000 |04 |F8 |80344 80344| NL80_2 +191247 |V1247 Cen |115521.5-620356 |EA | 15.39 | 15.42 | |I |52685.15132 | | 4.39560 |03 |A8 |80344 80344| NL80_2 +191248 |V1248 Cen |115529.4-640725 |M: | 5.66 | 6.38 | |K | | | 512. | | |80166 2MASS| NL80_2 +191249 |V1249 Cen |121530.7-394843 |BY | 11.1 | 11.4 | |V | | | 5.067861 | |M0 |80002 DM | NL80_2 +191250 |V1250 Cen |123420.5-481520 |IT | 13.41 |( 0.05 V)| |R | | | 0.72 | |M2 |80330 2MASS| NL80_2 +191251 |V1251 Cen |123420.6-481514 |IT | 13.51 |( 0.13 V)| |R | | | 0.65 | |M1.5 |80330 2MASS| NL80_2 +191252 |V1252 Cen |123504.3-413639 |IT | 11.4 |( 0.14 V)| |R | | | 8.33 | |M2Ve |80330 GSC | NL80_2 +191253 |V1253 Cen |123803.8-383125 |CEP | 11.75 | 12.50 | |V |51885.1 | | 4.321 |27 | |80368 DM | NL80_2 +191254 |V1254 Cen *|124452.7-424414 |EW | 11.17 | 11.75 | 11.75 |V |52738.684 | | 0.370790 | | |80365 80365| NL80_2 +191255 |V1255 Cen |124737.1-393242 |RRAB | 16.20 | 16.72 | |V |52101.34 | | 0.6405 |20 | |80373 80373| NL80_2 +191256 |V1256 Cen |124851.2-481708 |M | 11.4 |< 14.3 | |V |53755. | | 319. | | |80360 GSC | NL80_2 +191257 |V1257 Cen |125051.4-515635 |RS | 11.6 | 12.2 | |V | | | 2.76116 | |K5Ve |80002 GSC | NL80_2 +191258 |V1258 Cen *|130029.1-305257 |EA+UG | 15.4 | 22.2 | |V |50567.55919 | | 0.08885 |11 |pec(UG) |80374 80374| NL80_2 +191259 |V1259 Cen *|130220.3-632824 |BCEP | 11.3 | 11.5 | |V | | | 0.189127 | |B |80356 GSC | NL80_2 +191260 |V1260 Cen *|130236.1-595601 |EA | 9.46 | 9.55 | 9.50 |V |51888.826 | | 3.56278 |10 |A0IV |80015 DM | NL80_2 +191261 |V1261 Cen *|130657.2-495427 |BY: | 10.7 |( 0.09 )| |B | | | 3.9 : | |F7 |80199 2MASS| NL80_2 +191262 |V1262 Cen *|130740.7-372934 |EW | 11.82 | 12.7 | 12.6 |V |52712.825 | | 3.370469 | | |80365 80365| NL80_2 +191263 |V1263 Cen *|130807.3-325413 |EB | 12.10 | 12.95 : | 12.5 |V |52699.756 | | 0.410756 | | |80365 80365| NL80_2 +191264 |V1264 Cen *|131018.4-450914 |EA+DSCT | 12.35 | 14.1 | 12.50 |V |54246.7742 | | 5.3504751 |10 |A7V |80379 GSC | NL80_2 +191265 |V1265 Cen *|131055.2-484404 |RS | 10.7 | 11.5 | |V | | | 3.537281 | | |80138 DM | NL80_2 +191266 |V1266 Cen *|131234.3-603339 |EB | 8.05 | 8.16 | 8.13 |V |53476.93 | | 10.157 | |A1III |80011 DM | NL80_2 +191267 |V1267 Cen |132045.4-461138 |IT | 11.69 |( 0.12 V)| |R | | | 0.69 | |K5 |80330 GSC | NL80_2 +191268 |V1268 Cen |132137.2-442152 |IT | 12.08 |( 0.07 V)| |R | | | | |M0.5V |80330 GSC | NL80_2 +191269 |V1269 Cen *|132811.3-332347 |EW | 12.70 | 13.65 | 13.5 |V |52452.468 | | 0.389941 | | |80365 80365| NL80_2 +191270 |V1270 Cen |133026.2-641010 |EP: | 15.88 | 15.90 | |I |53471.95 | | 5.26066 |04 |G9 |80369 80344| NL80_2 +191271 |V1271 Cen |133028.2-381230 |CWA: | 12.6 | 13.6 | |V |53882.8 | | 15.305 |52 | |80002 GSC | NL80_2 +191272 |V1272 Cen |133042.9-635731 |EA | 14.34 | 14.35 | |I |52698.32754 | | 4.90185 |03 |F6 |80344 80344| NL80_2 +191273 |V1273 Cen |133055.7-635839 |EA | 15.69 | 15.70 | |I |52696.73100 | | 2.74730 |08 |G9 |80344 80344| NL80_2 +191274 |V1274 Cen |133058.5-641154 |EA | 16.15 | 16.17 | |I |52697.11292 | | 2.68153 |05 | |80344 80344| NL80_2 +191275 |V1275 Cen |133101.0-635836 |EP: | 14.87 | 14.88 | |I |52731.37770 | | 3.75819 |04 |A9 |80344 80344| NL80_2 +191276 |V1276 Cen |133131.5-641052 |EA | 16.81 | 16.85 | |I |52698.14260 | | 2.89185 |04 | |80344 80344| NL80_2 +191277 |V1277 Cen |133154.4-640240 |EA | 16.35 | 16.39 | |I |52697.54746 | | 2.12676 |06 | |80344 80344| NL80_2 +191278 |V1278 Cen |133212.0-643257 |EA | 14.13 | 14.14 | |I |52696.94702 | | 3.65080 | |K4 |80344 80344| NL80_2 +191279 |V1279 Cen |133223.8-641035 |EA | 15.31 | 15.32 | |I |52699.83984 | | 5.21920 |03 |G9 |80344 80344| NL80_2 +191280 |V1280 Cen |133252.5-635745 |EA | 15.78 | 16.81 | |I |52696.24111 | | 0.94621 |06 |G9 |80344 80344| NL80_2 +191281 |V1281 Cen |133325.9-641639 |EA | 15.62 | 15.63 | |I |52701.09815 | | 5.27700 |03 |A6 |80344 80344| NL80_2 +191282 |V1282 Cen |133338.0-640524 |EP: | 15.89 | 15.91 | |I |52698.60150 | | 6.38410 |01 |K4 |80344 80344| NL80_2 +191283 |V1283 Cen |133354.7-640944 |EA | 15.26 | 15.29 | |I |52699.47628 | | 3.58341 |03 |A9 |80344 80344| NL80_2 +191284 |V1284 Cen *|133356.9-315321 |EW | 12.75 | 13.5 | 13.35 |V |52760.748 | | 0.323526 | | |80365 80365| NL80_2 +191285 |V1285 Cen |133422.8-640718 |EA | 17.05 | 17.09 | |I |52698.99295 | | 5.86821 |02 | |80344 80344| NL80_2 +191286 |V1286 Cen *|133501.7-421943 |EB | 11.37 | 11.98 | 11.55 |V |51996.681 | | 0.613378 | | |80365 80365| NL80_2 +191287 |V1287 Cen |133741.1-582310 |M | 4.37 | 5.91 | |K | | | 556. | |C |80166 2MASS| NL80_2 +191288 |V1288 Cen |134752.6-310401 |RRAB | 13.6 | 14.8 : | |V |53898.5827 | | 0.488774 |13 | |80297 80297| NL80_2 +191289 |V1289 Cen *|134909.2-474634 |EA | 10.4 | 11.2 | 11.1 |V |53012.8434 | | 0.897009 |15 |F5 |80002 GSC | NL80_2 +191290 |V1290 Cen |134930.0-311430 |SRB | 10.1 | 11.6 | |V | | | 128. | | |80002 DM | NL80_2 +191291 |V1291 Cen |135153.6-373624 |M | 10.6 |< 15.0 | |V |54895. | | 265. | |Me |80001 GSC | NL80_2 +191292 |V1292 Cen |135434.5-640323 |M | 4.36 | 5.93 | |K | | | 678. | |C |80166 2MASS| NL80_2 +191293 |V1293 Cen |135452.2-391830 |M | 10.6 | 15.0 | |V |55039. | | 186. | |Me |80002 2MASS| NL80_2 +191294 |V1294 Cen *|135541.8-443857 |EA/RS | 7.80 | 8.07 | 8.07 |V |54302.6004 | | 1.16553 |21 |A0Vn |80297 80297| NL80_2 +191295 |V1295 Cen |135554.8-413132 |M | 11.1 | 14.7 | |V |54936. | | 140. | | |80001 GSC | NL80_2 +191296 |V1296 Cen *|135642.9-422417 |EW | 10.71 | 11.40 | 11.34 |V |51979.678 | | 0.506878 | | |80365 80365| NL80_2 +191297 |V1297 Cen |135645.5-623603 |M | 14.4 |< 17.2 | |I |51319. | | 600. : | | |80389 2MASS| NL80_2 +191298 |V1298 Cen *|135658.4-631357 |EB | 15.03 | 15.24 | 15.15 |I |51252.72 | | 11.4596 | | |80390 USNO | NL80_2 +191299 |V1299 Cen |135709.7-625654 |M | 14.0 | 16.7 : | |I |51700. | | 520. : | | |80389 2MASS| NL80_2 +191300 |V1300 Cen |135809.5-631315 |M | 16.2 : |< 18.7 | |I |51626. | | 400. : | | |80389 2MASS| NL80_2 +191301 |V1301 Cen |135811.0-632513 |M | 13.0 |< 15.4 | |I |51672. | | 400. : | | |80389 2MASS| NL80_2 +191302 |V1302 Cen |135817.1-562111 |SRB | 7.3 | 7.8 | |V | | | 314. | |C(N) |80297 80297| NL80_2 +191303 |V1303 Cen |135835.5-632456 |M: | 13.3 | 14.1 | |I |51314. | | 395. | | |80389 2MASS| NL80_2 +191304 |V1304 Cen |135856.8-405350 |RRAB | 12.2 | 13.5 | |V |52089.131 | | 0.615901 |14 | |80391 GSC | NL80_2 +191305 |V1305 Cen |135915.8-630945 |M | 14.8 |< 17.6 | |I |51565. : | | 380. | | |80389 2MASS| NL80_2 +191306 |V1306 Cen |135925.6-625424 |M | 13.0 | 15.5 | |I |51618. | | 200. | | |80389 2MASS| NL80_2 +191307 |V1307 Cen |140003.5-593745 |SR: | 15.03 | 15.24 | |Ic| | | | | |80392 80392| NL80_2 +191308 |V1308 Cen |140009.6-623714 |M | 16.5 : | 17.9 | |I |51530. : | | 395. | | |80389 2MASS| NL80_2 +191309 |V1309 Cen |140020.7-593108 |M: | 10.6 | 12.6 | |Ic| | | | | |80392 80392| NL80_2 +191310 |V1310 Cen |140027.7-593015 |LB: | 13.2 | 13.5 | |Ic| | | | | |80392 80392| NL80_2 +191311 |V1311 Cen |140033.5-384107 |SRB | 8.9 | 10.4 | |V | | | 171. | | |80001 DM | NL80_2 +191312 |V1312 Cen *|140047.3-593639 |EA | 16.72 | 16.9 | 16.85 : |Ic|50556.5543 | | 0.8247 |10 | |80392 80392| NL80_2 +191313 |V1313 Cen *|140047.9-593824 |EW | 17.59 | 18.00 | 18.00 |Ic|50565.7874 | | 0.4238 | | |80392 80392| NL80_2 +191314 |V1314 Cen *|140048.7-593215 |EA | 13.42 | 13.8 | 13.55 |Ic|50543.8816 | | 1.6631 |10 | |80392 80392| NL80_2 +191315 |V1315 Cen *|140053.5-593337 |EW | 16.28 | 16.6 | 16.6 |Ic|50557.6561 | | 0.3076 | | |80392 80392| NL80_2 +191316 |V1316 Cen *|140056.8-593323 |EA | 13.68 | 14.53 | 13.80 |Ic|50556.5126 | | 1.7403 |18 | |80392 80392| NL80_2 +191317 |V1317 Cen *|140059.2-593542 |EA | 15.32 | 16.02 | 15.6 : |Ic|50647.5140 | | 3.9205 |15 | |80392 80392| NL80_2 +191318 |V1318 Cen *|140103.7-593117 |EW | 14.01 | 14.30 | 14.25 |Ic|50546.7752 | | 0.5589 | | |80392 80392| NL80_2 +191319 |V1319 Cen |140104.5-593256 |EA | 15.44 | 15.88 | |Ic|50557.5743 | | 6.9030 : | | |80392 80392| NL80_2 +191320 |V1320 Cen *|140104.9-593054 |EW | 18.16 | 18.46 | 18.40 |Ic|50536.8106 | | 0.8841 | | |80392 80392| NL80_2 +191321 |V1321 Cen *|140108.7-592802 |EW | 16.75 | 17.16 | 17.10 |Ic|50563.7291 | | 0.3774 | | |80392 80392| NL80_2 +191322 |V1322 Cen *|140111.8-592730 |EW | 15.09 | 15.19 | 15.19 : |Ic|50536.8106 | | 0.5554 | | |80392 80392| NL80_2 +191323 |V1323 Cen |140114.0-593909 |SR: | 14.89 | 15.24 | |Ic| | | | | |80392 80392| NL80_2 +191324 |V1324 Cen |140120.7-593131 |SR: | 12.38 : | 13.20 | |Ic| | | | | |80392 80392| NL80_2 +191325 |V1325 Cen |140132.8-593737 |EA | 15.71 | 16.3 | |Ic|50621.5563 | | 1.9703 | | |80392 80392| NL80_2 +191326 |V1326 Cen *|140133.0-593246 |EW | 11.35 | 11.70 | 11.67 |Ic|50567.6886 | | 0.9158 | | |80392 80392| NL80_2 +191327 |V1327 Cen |140222.9-603737 |SRB | 12.6 | 14.5 | |V | | | 136.9 | | |80002 2MASS| NL80_2 +191328 |V1328 Cen |140404.8-610150 |M | 4.63 | 5.63 | |K | | | 495. | |C |80166 2MASS| NL80_2 +191329 |V1329 Cen |140432.8-485418 |M | 11.6 |< 15.0 | |V |54889. | | 186.8 | | |80002 2MASS| NL80_2 +191330 |V1330 Cen |140432.9-594122 |M | 4.57 | 5.62 | |K | | | 538. | |C |80166 2MASS| NL80_2 +191331 |V1331 Cen |140433.9-453232 |CWA | 13.0 | 13.9 | |V |55080.0923 | | 16.9856 | | |80326 GSC | NL80_2 +191332 |V1332 Cen |140556.0-520529 |SRB | 12.7 | 13.7 | |V | | | 73.5 | | |80001 GSC | NL80_2 +191333 |V1333 Cen |140559.9-620423 |LB | 10.4 | 11.9 | |V | | | | |M7-M8 |80001 GSC | NL80_2 +191334 |V1334 Cen |140637.1-433345 |SRA | 10.1 | 13.0 | |V |54994. | | 196.6 | | |80001 GSC | NL80_2 +191335 |V1335 Cen |140701.2-423301 |RS | 10.00 | 10.15 | |V | | | 1.693846 : | |G1V |80002 GSC | NL80_2 +191336 |V1336 Cen |140719.7-481020 |M | 12.1 |< 15.0 | |V |54872. | | 222. | | |80001 GSC | NL80_2 +191337 |V1337 Cen |140839.7-493513 |M | 10.4 |< 15.0 | |V |54540. | | 282.9 | | |80002 GSC | NL80_2 +191338 |V1338 Cen |140858.5-463643 |DSCT | 10.2 | 10.7 | |V |53764.8191 | | 0.1309382 |25 |F0V |80001 DM | NL80_2 +191339 |V1339 Cen |141008.5-382751 |M | 11.6 |< 15.0 | |V |54844. | | 251. | | |80001 2MASS| NL80_2 +191340 |V1340 Cen |141021.5-615207 |SRB | 12.6 | 14.3 | |V | | | 54.3 | | |80002 2MASS| NL80_2 +191341 |V1341 Cen |141909.8-565941 |SRA | 9.4 | 11.6 | |V |54932. | | 419. | |C(N) |80001 2MASS| NL80_2 +191342 |V1342 Cen |141942.1-302805 |RRAB | 14.1 | 15.1 | |V |52722.742 | | 0.565275 |12 : | |80135 GSC | NL80_2 +191343 |V1343 Cen |142108.1-370416 |RRC | 12.0 | 12.6 | |V |51947.337 | | 0.28518 |15 | |80386 DM | NL80_2 +191344 |V1344 Cen |142330.4-575304 |RRAB | 11.3 | 12.3 | |V |54482.8388 | | 0.418257 |16 | |80001 GSC | NL80_2 +191345 |V1345 Cen |142345.7-582925 |RRAB | 11.3 | 11.8 | |V |53875.7933 | | 0.631275 | | |80001 GSC | NL80_2 +191346 |V1346 Cen |142348.3-574401 |M | 11.7 |< 14.7 | |V |54619. | | 137.5 | | |80399 80399| NL80_2 +191347 |V1347 Cen *|142524.1-301316 |EA | 10.3 | 11.2 | 11.1 |V |52463.5431 | | 1.25197 |20 |F2V |80001 DM | NL80_2 +191348 |V1348 Cen |142550.1-322428 |RRAB | 13.8 | 14.5 | |V |53809.78 | | 0.777373 |26 | |80135 GSC | NL80_2 +191349 |V1349 Cen |142628.1-600211 |SRB | 11.0 | 11.7 | |V | | | 226.2 | |C(N) |80002 GSC | NL80_2 +191350 |V1350 Cen |142705.3-581918 |LB | 11.5 | 12.1 | |V | | | | |M6e |80001 GSC | NL80_2 +191351 |V1351 Cen *|142833.6-320826 |EW | 10.65 | 11.30 | 11.27 |V |51924.880 | | 0.399114 | | |80365 80365| NL80_2 +191352 |V1352 Cen |142902.8-385423 |SRB | 9.4 | 10.7 | |V | | | 268. : | |M6 |80001 DM | NL80_2 +191353 |V1353 Cen |143025.4-360435 |RRAB | 12.9 | 14.0 | |V |54235.6908 | | 0.489976 |15 | |80001 GSC | NL80_2 +191354 |V1354 Cen |143254.5-311310 |RRC | 13.2 | 13.9 | |V |54585.7613 | | 0.346292 |38 | |80001 GSC | NL80_2 +191355 |V1355 Cen |143734.1-344927 |M | 13.5 |< 15.5 | |P |54709. | | 204. | | |80399 80399| NL80_2 +191356 |V1356 Cen *|143736.9-610848 |EA | 11.97 | 12.96 | 12.96 |V |51939.218 | | 3.17071 |14 | |80365 80365| NL80_2 +191357 |V1357 Cen |143815.8-640752 |M | 13.1 |< 14.9 | |V |54217. | | 284. | | |80399 80399| NL80_2 +191358 |V1358 Cen *|143822.4-302754 |M | 12.1 |< 13.6 | |V |53444. | | 279. | | |80399 80399| NL80_2 +191359 |V1359 Cen |143904.9-585530 |M | 13.3 | 16. | |P |53422. | | 217. | | |80399 80399| NL80_2 +191360 |V1360 Cen |143929.8-335127 |RRC | 13.3 | 13.8 | |V |52498.53 | | 0.344249 |42 | |80083 GSC | NL80_2 +191361 |V1361 Cen |144039.4-315920 |RRAB | 12.6 | 13.2 | |V |53506.5864 | | 0.723500 |25 | |80001 GSC | NL80_2 +191362 |V1362 Cen *|144047.4-372518 |EW | 9.25 | 9.53 | |V |51868.276 | | 0.353410 | |G2V |80036 DM | NL80_2 +191363 |V1363 Cen |144108.0-611854 |M | 11.6 |< 14.4 | |V |53446. | | 601. | |Se |80399 80399| NL80_2 +191364 |V1364 Cen |144111.5-624833 |M: | 13.0 |< 14.2 | |V |54489. | | 251. | | |80399 80399| NL80_2 +191365 |V1365 Cen |144821.4-421543 |SRB | 12.5 | 13.9 | |V | | | 97. | | |80001 GSC | NL80_2 +191366 |V1366 Cen |145744.9-302639 |RRAB | 12.37 | 13.36 | |V |52761.579 | | 0.62168 |14 | |80386 GSC | NL80_2 +191367 |V1367 Cen |145803.6-354905 |RRAB: | 13.8 | 14.8 | |V |54340.5574 | | 0.47909 : |18 : | |80001 GSC | NL80_2 +191368 |V1368 Cen |134109.3-581517 |NA | 9.4 |< 17. | |V |56010. |2012 | | |pec(Nova) |80638 80639| NL80_3 +199002 |bet Cen *|140349.4-602223 |BCEP | 0.61 |( 0.045 )| |V | | | 0.157 | |B1III |08886 05288| +199004 |del Cen *|120821.5-504321 |GCAS | 2.51 | 2.65 | |V | | | | |B2IVne |08663 CoD | +199005 |eps Cen *|133953.3-532759 |BCEP | 2.29 | 2.31 | |V |41040.965 | | 0.169608 | |B1III |06356 CoD | +199007 |eta Cen *|143530.4-420928 |GCAS | 2.30 | 2.41 | |V | | | | |B1.5Vne |07869 CoD | +199012 |mu. Cen *|134937.0-422825 |GCAS | 2.92 | 3.47 | |V | | | | |B2IV-Ve |00094 CoD | +199013 |nu. Cen |134930.3-414116 |ELL:+BCEP | 3.38 | 3.41 | |V | | | | | |67201 CoD | +1990151|omi 1 Cen *|113146.1-592631 |SRD | 5.8 | 6.6 | |B | | | 200. : | |G3Ia-0 |04164 CoD | +1990152|omi 2 Cen |113148.8-593056 |ACYG | 5.12 | 5.22 | |V | | | 46.3 : | |A2eaIa |08070 CoD | +199022 |khi Cen |140602.8-411047 |BCEPS | 4.15 |( 0.020 )| |B | | | 0.035 | |B2V |08308 CoD | +200001 |R Cep | | | | | | | | | | | | |=UZ UMi +200002 |S Cep |213512.8+783728 |M | 7.4 | 12.9 | |V |43787. | | 486.84 |55 |C7,4e(N8e) |00001 00002| +200003 |T Cep *|210931.8+682927 |M | 5.2 | 11.3 | |V |44177. | | 388.14 |54 |M5.5e-M8.8e |00001 00002| +200004 |U Cep *|010218.4+815232 |EA/SD | 6.75 | 9.24 | 6.93 |V |44541.6031 | | 2.4930475 |15 |B7Ve+G8III-IV |08888 00097| +200005 |V Cep |235627.8+831128 |CST: | 6.56 | | |V | | | | |A3V | 08953| +200006 |W Cep *|223627.6+582534 |SRC | 7.02 | 9.2 | |V | | | | |K0ep-M2epIa+B0/B1|00001 00098| +200007 |X Cep *|205610.1+830325 |M | 8.1 | 16.0 | |V |43834. | | 535.19 |42 |M4.5e:-M7e |00001 00002| +200008 |Y Cep |003822.8+802126 |M | 8.1 | 16.0 | |V |44134. | | 332.57 |40 |M5e-M8.2e |00001 00002| +200009 |Z Cep |022617.4+814042 |M | 10.1 | 15.7 | |V |42156. | | 279.16 |48 |M2e-M8.2 |00001 00002| +200010 |RR Cep |024315.5+810810 |M | 9.0 | 15.5 | |V |43601. | | 384.18 |41 |M5e-M8.8e |00001 00002| +200011 |RS Cep *|050603.2+801452 |EA/DS | 10.2 | 11.9 | |V |40862.677 | | 12.420105 |08 |A5IIIe+G |06978 00100| +200012 |RT Cep |214652.7+643610 |M | 11.7 |< 14.7 | |p |39724. | | 621.55 | |M6 |00001 01765| +200013 |RU Cep |012111.9+850756 |SRD | 8.2 | 9.8 | |V | | | 109. | |G6-M3.5III |02430 00102| +200014 |RV Cep |001310.6+735148 |M | 11.5 | 16. | |p |43041. | | 272.45 |48 : |M2e-M7 |00001 00102| +200015 |RW Cep |222307.0+555748 |SRD | 8.6 | 10.7 | |p | | | 346. : | |K0Ia-0 |00111 00103| +200016 |RX Cep |005004.6+815802 |SRD: | 7.2 | 8.2 | |V | | | 55. : | |G5 |00334 03514| +200017 |RY Cep |232114.5+785732 |M | 8.6 | 13.6 | |V |44533. | | 149.06 |51 |Ke-M0e |00001 00105| +200018 |RZ Cep *|223913.2+645131 |RRC | 9.11 | 9.75 | |V |42635.374 | | 0.3086853 |32 |A0-F2 |08697 00107| +200019 |SS Cep *|034930.0+801921 |SRB | 8.0 | 9.1 | |p | | | 90. | |M5III |00108 08953| +200020 |ST Cep |223010.7+570003 |LC | 9.7 | 11.6 | |p | | | | |M2Ia-Iab |00098 00103| +200021 |SU Cep *|214640.6+571737 |EB/KE | 10.0 | 10.9 | 10.6 |p |26325.465 | | 0.9014011 | |B8 |03526 00110| +200022 |SV Cep *|222133.2+734027 |ISA | 10.35 | 12.15 | |V | | | | |A0ea |05476 02220| +200023 |SW Cep |212545.9+623426 |SRC | 10.8 | 12.2 | |p | | | 70. | |M3.5Ia-Iab |00111 00103| +200024 |SX Cep *|210137.5+681131 |INSB: | 15.8 | 18.3 | |p | | | | | |03527 03527| +200025 |SY Cep *|221334.2+623140 |EA/DM | 12.05 | 12.98 | 12.70 |V |44103.330 | | 8.3455 |03 *|A3: |08892 00113| +200026 |SZ Cep *|200957.6+771109 |M | 8.6 | 15.5 | |V |42624. | | 326.59 | |S3.5,8e-S4,8:e |00001 00114| +200027 |TT Cep *|220528.5+623010 |SRA | 12.7 | 14.1 | |p |19822. | | 176.0 | |M5 |00115 00116| +200028 |TU Cep |220237.5+631352 |SRA | 12.9 | 15.2 | |p |30611. | | 102.15 | | |00115 00116| +200029 |TV Cep |220953.9+630717 |EA/SD | 12.2 | 14.7 | |p |21366.623 | | 3.857082 |08 | |03528 00116| +200030 |TW Cep |215313.7+615809 |M | 12.2 | 18. | |p |30670. | | 281.2 |37 |M6.5 |00115 00116| +200031 |TX Cep |235322.2+761105 |M | 12.3 |< 16. | |p |29534. | | 377.0 | | |00114 00114| +200032 |TY Cep *|214135.1+863811 |SRA | 9.7 | 13.3 | |V |24510. | | 330. | |M3 |00117 00118| +200033 |TZ Cep |002515.3+735411 |SRD | 9.0 | 11.0 | |V |25840. | | 83.0 |48 |G6-K2e(M2) |00373 00119| +200034 |UU Cep |203905.3+593221 |SRA | 13.2 | 15.3 | |p |29450. | | 372.7 | |M3 |02415 02415| +200035 |UV Cep |205155.7+562509 | | 14. | 16. | |p | | | | | |00120 USNO | +200036 |UW Cep |205923.0+585333 |M | 14. |< 16. | |p | | | | |M8 |00121 00122| +200037 |UX Cep |210354.8+552751 | | 15. |< 16. | |p | | | | | |00120 USNO | +200038 |UY Cep |210819.3+584555 |M | 12.1 | 16.5 | |p |34587. | | 276.8 | |M7e |01007 00114| +200039 |UZ Cep *|230813.9+703627 |M | 11.3 |< 15. | |p |44609. | | 303.5 | |M4-M5 |00001 00114| +200040 |VV Cep *|215639.1+633732 |EA/GS+SRC | 4.80 | 5.36 | |V |43360. | | 7430. |08 |M2epIa-Iab+B8:eV |08698 02471| +200041 |VW Cep *|203721.5+753602 |EW/KW | 7.23 | 7.68 | 7.56 |V |44157.4131 | | 0.27831460 | *|G5+K0Ve |08898 07302| +200042 |VX Cep |225049.5+641505 |M | 11.4 |< 15.5 | |p |34692. | | 532.3 | |M8 |00001 00114| +200043 |VY Cep | | | | | | | | | | | | |=RR Cep +200044 |VZ Cep *|215011.1+712638 |EA | 9.74 | 10.15 | 9.93 |V |43720.420 | | 1.1833648 |12 *|G0 |00001 08900| +200045 |WW Cep |221827.9+695140 |EA/SD: | 11.1 | 11.9 | |p |25029.495 | | 1.53360 | |G3 |00123 00124| +200046 |WX Cep *|223115.8+633122 |EA/DM | 8.7 | 9.29 | 9.14 |V |25088.537 | | 3.3784535 |13 |A2+A5: |08901 00124| +200047 |WY Cep *|224620.7+674222 |EB/KE: | 10.8 | 11.7 | 11.5 |p |25123.080 | | 1.249056 | |A7 |00063 00010| +200048 |WZ Cep *|232224.2+725457 |EW/KW | 11.4 | 12.0 | 11.9 |p |28040.556 | | 0.4174471 | |F5 |00126 00124| +200049 |XX Cep *|233820.3+642003 |EA/SD | 9.20 | 10.32 | 9.24 V |V |44839.8022 | | 2.3373266 |14 *|A8V |00001 00124| +200050 |XY Cep *|235232.9+685602 |EA/SD | 10.05 | 10.90 | 10.10 |V |43791.3160 | | 2.774527 |12 *|B8-A0 |08903 00124| +200051 |XZ Cep *|223225.1+670903 |EB/DM: | 8.0 | 8.83 | 8.43 |V |43297.811 | | 5.0972267 | |O9.5V |08904 00124| +200052 |YY Cep |220147.8+565810 |M | 12.0 |< 16. | |p |38678. | | 526.08 | |M6 |00001 07303| +200053 |YZ Cep |221801.2+571717 |ISB | 12.2 | 13.5 | |p | | | | |G0V |00128 06286| +200054 |ZZ Cep *|224502.6+680759 |EA/DM | 8.60 | 9.55 | 8.74 |V |27928.451 | | 2.141800 |12 *|B7+F0V |00803 00124| +200055 |AA Cep |220811.9+563046 |LB: | 13.4 | 14.5 | |p | | | | |M7 |00130 00130| +200056 |AB Cep |221110.6+551653 |M | 12.0 | 15.5 | |p |41160. | | 324.5 | |M8e |00001 00131| +200057 |AC Cep |222722.7+571559 |M | 12.5 |< 15. | |p |38698. :| | | |M6.5: |03532 00133| +200058 |AD Cep |003126.4+823542 |SR | 10.8 | 15.5 | |p | | | 166. | |M6.5-M8 |00134 00135| +200059 |AE Cep |012248.3+800157 |M | 11.0 |< 16. | |p |28676. | | 170.3 | | |01000 00135| +200060 |AF Cep |021335.1+824403 |M | 12.0 |< 15.5 | |p |28733. | | 232.2 | | |01000 00135| +200061 |AG Cep |022014.7+784537 |M | 10.5 |< 16. | |p |29975. | | 445. | |M9.2-M10e |00001 00135| +200062 |AH Cep *|224752.9+650344 |EB/DM | 6.78 | 7.07 | 7.03 |V |34989.4026 | | 1.7747505 | |B0.5Vne+B0.5V |08873 BD | +200063 |AI Cep *|214622.6+565502 |EB/DM | 9.18 | 9.86 | 9.48 |V |26550.341 | | 4.225288 | |B0.5V:p |03526 03526| +200064 |AK Cep |222850.1+581239 |DCEP | 10.86 | 11.52 | |V |37022.531 | | 7.23268 |28 |F6-G2 |03532 00137| +200065 |AL Cep |224916.9+583507 |M | 10.9 | 14.5 | |p |34397. | | 277.3 |40 |M5-M6.5e |00001 00138| +200066 |AM Cep |214127.1+762312 |M | 13. | 16.9 | |B |28118. | | 333. | |M8 |00001 00139| +200067 |AN Cep *|231807.3+830039 |SR | 9.6 | 12.2 | |p | | | 127. | |M8e |00108 08953| +200068 |AO Cep |223616.1+570208 |EA/DS | 13.5 | 14.5 | |p |26973.40 | | 8.2392 | | |00140 00141| +200069 |AP Cep |002154.2+762706 |M | 12.6 |< 16. | |p |38125. | | 125.61 | |Me |00001 00114| +200070 |AQ Cep |082243.9+860452 |RRAB | 12.2 | 13.3 | |V |28128.414 | | 0.6514463 |15 | |03633 00142| +200071 |AR Cep |225133.9+850247 |SRB | 7.0 | 7.9 | |V | | | | |M4III | 08953| +200072 |AS Cep |230205.2+594906 |LB | 11.3 | 12.9 | |p | | | | |M3 |00098 07920| +200073 |AT Cep |234953.0+780205 |SRB | 12.2 | 13.7 | |p | | | 100. : | | |00144 00143| +200074 |AU Cep |002614.0+742942 |M | 14. |< 16. | |p |28120. | | 320. | | |08906 00122| +200075 |AV Cep *|055426.6+860121 |EA | 12.4 |< 13.6 | |p |28776.222 | | 2.9581 |12 | |00144 00145| +200076 |AW Cep |211130.2+735315 |M | 12. |< 16. | |p |28846. | | 251. | |M8 |00146 00146| +200077 |AX Cep |212654.0+701316 |M | 9.5 | 13.0 | |V |37023. | | 395.0 |46 |C(N) |00001 00146| +200078 |AY Cep |220004.7+822152 |M | 11.0 |< 14.5 | |V |29421. | | 281.0 | | |01001 00146| +200079 |AZ Cep |220838.5+593301 |LC | 11.8 | 12.70 | |B | | | | |M2.0Ia |00098 00098| +200080 |BB Cep *|225530.2+640031 |EA/DS | 12.1 | 13.2 | |p |27327.51 | | 30.1856 |09 |G0 |00001 02335| +200081 |BC Cep |230407.5+704827 |M | 13.5 |< 15.5 | |p | | | 318. | |M10 |08906 00148| +200082 |BD Cep |201126.5+801041 |M | 11.5 |< 15. | |p |31910. | | 415. | |M7 |01000 00146| +200083 |BE Cep *|224120.8+583631 |EW/KW | 12.4 | 13.3 | 13.0 |p |28751.309 | | 0.42439595 | | |00149 00150| +200084 |BF Cep *|203126.5+625650 |M | 10.0 |< 14.5 | |V |44248. | | 430.14 | |M7 |00001 00151| +200085 |BG Cep |220030.7+682823 |IA: | 13.2 | 14.3 | |p | | | | |B8: |00152 02335| +200086 |BH Cep *|220142.9+694437 |ISB | 10.79 | 12.7 | |V | | | | |F5IVea |08616 08616| +200087 |BI Cep |220202.7+682432 |RVA | 12.5 | 14.3 | |p |27153. | | 212. | |M5eII |00152 02335| +200088 |BK Cep |220826.8+681810 |SRA | 13.8 | 14.5 | |p |26801. | | 62.3 |47 | |00152 02335| +200089 |BL Cep |221309.3+673534 |LB | 13.6 | 14.6 | |p | | | | |M5 |00152 02335| +200090 |BM Cep |221645.6+665939 |LB | 13.7 | 14.2 | |p | | | | | |00152 02335| +200091 |BN Cep |221701.8+663634 |LB | 13.8 | 14.1 | |p | | | | | |00152 02335| +200092 |BO Cep *|221654.1+700345 |INSB | 11.96 | 13.7 | |B | | | | |F2:ea |08616 00491| +200093 |BP Cep |221930.0+664817 |SRA | 12.6 | 13.4 | |p |27084. | | 57.5 | |M7 |00152 02335| +200094 |BQ Cep |222656.3+682512 |LB | 14.2 | 15.0 | |p | | | | | |00152 02335| +200095 |BR Cep |222717.1+661000 |EA/SD | 12.5 | 15.0 | |p |26802.525 | | 3.1677136 |14 *| |00001 02318| +200096 |BS Cep |222905.4+651442 |UGZ: | 13.9 | 16.0 | |p | | |( 40. :) | | |00152 02335| +200097 |BT Cep |223130.4+672348 |LB | 12.7 | 13.8 | |p | | | | | |00152 02318| +200098 |BU Cep |223215.6+645840 |EA/KE: | 12.2 | 12.9 | |p |26821.380 | | 1.414388 |14 *| |00152 02335| +200099 |BV Cep |223841.4+693756 |LB | 14.2 | 14.8 | |p | | | | |M6.5 |00152 02335| +200100 |BW Cep |224117.0+630237 |SR | 13.9 | 14.8 | |p |27164. | | 83.5 | | |00152 02335| +200101 |BX Cep |225015.7+652102 |LB | 13.6 | 14.7 | |p | | | | |M5 |00152 02335| +200102 |BY Cep |225150.6+653854 |LB | 13.1 | 13.9 | |p | | | | |M2 |00152 02335| +200103 |BZ Cep |225413.8+640321 |LB | 13.8 | 14.5 | |p | | | | | |00152 02335| +200104 |CC Cep |230128.5+614020 |ISB | 14.5 | 16.4 | |p | | | | |G-K: |07920 02335| +200105 |CD Cep |230431.8+640845 |LB | 14.6 | 15.4 | |p | | | | |M3 |00152 02335| +200106 |CE Cep |230430.3+644547 |M | 14.7 | 18. | |p |27366. | | 419. : | |M4 |00152 02335| +200107 |CF Cep |230556.5+693724 |M | 13.2 |< 17.0 | |p |27370. | | 329. | | |00152 02335| +200108 |CG Cep |231026.0+663332 |UGSS | 14.5 | 17.2 | |p | | |( 20. :) | | |00152 02335| +200109 |CH Cep |231043.6+642853 |SRA | 13.3 | 14.4 | |p |26772. | | 107. | |M5 |00152 02318| +200110 |CI Cep |231126.8+625854 |M | 12.8 | 18.0 | |B |41705. | | 306.8 |20 |M5-M6e |07920 02335| +200111 |CK Cep |231243.8+635717 |SRB | 12.4 | 13.1 | |p | | | 110. : | |M7 |00152 02318| +200112 |CL Cep |231257.1+653610 |EA | 14.9 | 15.4 | |p |27189.440 | | 3.78568 |11 | |00152 02335| +200113 |CM Cep |232238.0+651758 |EA/SD | 12.1 | 13.7 | |p |27159.468 | | 1.8589265 |15 *| |00001 02335| +200114 |CN Cep |232534.8+644725 |DCEP | 13.6 | 14.5 | |p |33067.4 | | 9.50250 |35 | |03861 02336| +200115 |CO Cep *|005445.1+775521 |EA/DM: | 12.0 | 12.7 | 12.6 |V |29043.457 | | 4.137590 |08 *| |04524 00143| +200116 |CP Cep *|215752.7+560950 |DCEP | 10.06 | 10.96 | |V |33052.33 | | 17.8590 |40 |F5Ib-F7 |08617 00155| +200117 |CQ Cep *|223654.0+565421 |EB/DM/WR | 8.63 | 9.12 | |V |32456.668 | | 1.641249 | |WN5.5+O7 |06489 08953| +200118 |CR Cep *|224624.8+592632 |DCEP | 9.43 | 9.83 | |V |42774.236 | | 6.232964 |39 |F8.4 |08632 00098| +200119 |CS Cep |211920.3+622445 |SR: | 12.8 | 13.7 | |p | | | 145. | |M6 |00156 00156| +200120 |CT Cep |214612.3+673811 |LB | 12.5 |< 14.4 | |p | | | | |M7 |04298 00156| +200121 |CU Cep |221131.9+570218 |SRB | 11.9 | 15. | |p | | | 700. | |M4-M6 |08619 00158| +200122 |CV Cep *|224954.5+593935 |SR | 12.4 | 13.8 | |p | | | 60. | |M4S |08618 00159| +200123 |CW Cep *|230402.2+632349 |EA/DM | 7.60 | 8.04 | 8.01 |V |35373.4496 | | 2.729140 |13 *|B0.5+B0.5IV-Vea |08620 BD | +200124 |CX Cep *|220933.5+574431 |EB/WR | 12.09 | 12.24 | 12.16 |V |44451.4234 | | 2.12687 | |WN5+O8V |08911 00161| +200125 |CY Cep | | | | | | | | | | | | |=V1002 Cas +200126 |CZ Cep |001743.9+760359 |M: | 14.2 |< 16. | |p |28260. | | | | |00122 00122| +200127 |DD Cep *|204230.5+591558 |M | 14.0 |< 17.5 | |p |33605. | | 167.6 | | |00164 02354| +200128 |DE Cep |204820.2+590956 |EA/SD | 14.1 | 16.3 | |p |28074.415 | | 1.938824 |10 | |00164 02370| +200129 |DF Cep |224255.4+573704 |M | 14.9 |< 16.5 | |p | | | | | |02267 02375| +200130 |DG Cep |224411.1+614343 |LB | 11.54 | 12.5 | |B | | | | |C6,4(Nb/R8) |00085 02374| +200131 |DH Cep *|224654.1+580504 |ELL | 8.58 | 8.62 | |V |32759.279 | | 2.111040 | |O5.5+O6.5IV-Vn |08912 05479| +200132 |DI Cep |225611.5+584002 |INST | 11.95 | 13.5 | |B | | | | |G8pVe-K3Ve(T) |00166 00166| +200133 |DK Cep *|215834.2+605702 |EA/SD | 12.2 | 14.2 | 12.4 |p |33590.5630 | | 0.9859064 |30 | |03526 00167| +200134 |DL Cep *|220025.2+594130 |EB/DM | 12.4 | 13.2 | 12.7 |p |33946.608 | | 1.630481 | | |03526 00167| +200135 |DM Cep |220816.4+724607 |LB | 8.4 | 9.6 | |p | | | | |M4 |03135 08900| +200136 |DN Cep |221332.9+555825 |EA/SD | 12.0 | 13.0 | |p |33873.700 | | 3.306164 |10 |B5 |05862 05862| +200137 |DO Cep *|222759.5+574145 |UV | 10.3 | 11.4 | |V | | | | |M4.5Ve |00171 00172| +200138 |DP Cep *|230821.1+611200 |EA/SD | 13.9 | 15.0 | 14.4 |B |33622.256 | | 1.2699676 |20 |F0 |07920 07920| +200139 |DQ Cep *|205748.6+552916 |DSCT | 7.22 | 7.32 | |V |33924.8404 | | 0.07886444 |50 |F4III |06484 BD | +200140 |DR Cep |204905.5+585357 |DCEP | 13.2 | 15.0 | |p |30704.82 | | 19.06588 |28 |F5p |03752 02370| +200141 |DS Cep |202441.0+595841 |L | 12.5 | 13.9 | |p | | | | | |00164 02354| +200142 |DT Cep |203322.1+601353 |EA/SD | 13.5 | 15.6 | |p |27697.493 | | 5.530436 |09 *| |00164 02354| +200143 |DU Cep |204107.2+582638 |ISB | 13.6 | 16.2 | |p | | | | | |00164 02354| +200144 |DV Cep |204318.4+722230 |E | 11.4 | 12.2 | |p | | | | | |00174 00174| +200145 |DW Cep |205139.7+624850 |EA/SD | 11.7 | 12.7 | |p |26980.297 | | 2.51686 |23 : |B8 |02222 02222| +200146 |DX Cep *|224419.1+835702 |RRAB | 12.0 | 13.7 | |B |38656.355 | | 0.52604167 |15 |A7-F6 |03645 00174| +200147 |DY Cep *|233205.4+640054 |EB | 11.7 | 12.0 | 11.8 |p |29079.434 | | 2.3620175 | |F2: |00176 02376| +200148 |DZ Cep |214457.3+583449 |INSA | 14.4 |< 16.2 | |p | | | | | |08621 08622| +200149 |EE Cep *|220922.8+554524 |EA | 10.72 | 12.15 | |V |34346.0 | | 2049.53 |01 *|B5III-IV+e |08921 07404| +200150 |EF Cep *|044539.1+804425 |EW | 12.0 | 12.6 | 12.6 |p |31860.546 | | 0.606072 | | |02263 02263| +200151 |EG Cep *|201556.8+764836 |EB | 9.31 | 10.21 | 9.61 |V |42594.3825 | | 0.54462183 | |A3 |08593 00462| +200152 |EH Cep *|210324.4+675906 |INSB | 12.1 | 15.9 | |p | | | | |G2ea-K2e |02552 02669| +200153 |EI Cep *|212828.2+762413 |EA/DM | 7.54 | 8.06 | 7.98 |V |36820.4665 | | 8.439334 |06 *|Am+F1 |08922 08953| +200154 |EK Cep *|214121.5+694134 |EA/DM | 7.99 | 9.32 | 8.06 |B |39002.7240 | | 4.4277926 |06 |A0V |08626 03539| +200155 |EL Cep *|214622.5+691108 |RRAB | 12.2 | 13.9 | |p |36079.348 | | 0.4166275 |32 | |03506 02335| +200156 |EM Cep *|215348.1+623652 |EW/KE | 7.02 | 7.17 | 7.16 |V |40134.7326 | | 0.806187 | |B1IVe |08701 03542| +200157 |EN Cep |002441.6+832620 |RR | 14.5 | 15.5 | |p | | | | | |04341 04341| +200158 |EO Cep *|002339.4+784656 |EB/DM | 12.0 | 12.8 | 12.3 |p |27364.315 | | 1.833658 | | |03235 03235| +200159 |EP Cep *|004654.5+852144 |EW/KW | 16.6 | 17.1 | 17.0 |V |39236.472 | | 0.289745 | | |06003 04341| +200160 |EQ Cep *|004733.9+851625 |EW/KW | 16.4 | 17.0 | 16.7 |V |39237.319 | | 0.306906 | | |06003 04341| +200161 |ER Cep *|005027.8+851509 |EW/KW | 15.67 | 16.34 | 16.27 |V |41975.043 | | 0.2857355 | | |08628 04341| +200162 |ES Cep *|005050.4+851613 |EW/KW | 15.52 | 15.90 | 15.8 |V |40808.380 | | 0.342454 | | |06003 04341| +200163 |ET Cep |010223.4+852350 |RR: | 13.5 | 14.5 | |p | | | | | |04341 04341| +200164 |EU Cep |012052.2+845407 |RR | 14.5 | 15.5 | |p | | | | | |04341 04341| +200165 |EV Cep |014317.4+844354 |RR: | 14. | 15. | |p | | | | | |04341 04341| +200166 |EW Cep |015330.7+850345 |RR | 17. | 18. | |p | | | | | |04341 04341| +200167 |EX Cep *|020359.4+783322 |EA/DM | 11.4 | 11.8 | 11.6 |p |26649.400 | | 1.675064 |12 *|G4 |04109 04109| +200168 |EY Cep *|034004.1+810109 |EB/DM | 10.1 | 10.7 | 10.4 |p |26427.575 | | 5.51672 | |A5 |03235 BD | +200169 |EZ Cep *|035805.4+811423 |RRC | 11.6 | 12.2 | |p |26631.370 | | 0.378999 |50 | |04109 04353| +200170 |FF Cep |082650.5+850702 |SRA | 10.3 | 11.2 | |p |28415. | | 185. | |M |04014 08953| +200171 |FG Cep | | | | | | | | | | | | |=IN Cep +200172 |FH Cep *|203421.8+643841 |EB | 11.8 | 12.5 | 12.1 |p |34599.502 | | 3.141964 | | |04300 04297| +200173 |FI Cep |204409.8+672024 |M | 15.5 |< 17.1 | |p |37670. | | 280. | | |04298 00141| +200174 |FK Cep |204607.8+603836 |E | 16.0 |< 17. | |p |37944.55 | | | | |03148 04065| +200175 |FL Cep *|204650.2+565428 |EA/SD | 14.3 | 16.5 | |p |28048.38 | | 2.26198 |16 | |03148 04065| +200176 |FM Cep |205112.3+691636 |RRAB | 14.3 | 15.1 | |p |36081.423 | | 0.482427 |15 | |04298 04297| +200177 |FN Cep |205244.3+680546 |EA | 14.6 | 16.1 | |p |36821.42 | | 2.4540 |08 | |04298 04298| +200178 |FO Cep |205413.9+661829 |M | 16.4 |< 17.3 | |p |37170. | | 350. | | |04298 04298| +200179 |FP Cep |205454.0+662641 |RRAB | 12.4 | 13.3 | |p |37119.486 | | 0.46786353 |20 | |03506 02334| +200180 |FQ Cep |205510.0+670158 |M | 16.6 |< 17.5 | |p |37670. | | 422.25 | | |04418 02334| +200181 |FR Cep |205546.7+681237 |M | 14.2 | 17.0 | |p |37670. | | 170. | | |04298 04298| +200182 |FS Cep *|205859.9+693728 |EB/KE | 11.8 | 12.3 | 12.0 |p |26930.450 | | 1.347522 | | |03235 04109| +200183 |FT Cep *|205922.9+681445 |LB | 17.2 | 18.8 | |p | | | | | |03527 03527| +200184 |FU Cep *|210146.8+680845 |INS | 17.2 | 18.2 | |p | | | | |ea |03527 03527| +200185 |FV Cep *|210212.8+682350 |INSB | 14.7 | 17.4 | |p | | | | |K7e |03527 03527| +200186 |FW Cep *|210233.0+680729 |INS | 16.2 | 17.4 | |p | | | | |ea: |03527 03527| +200187 |FX Cep |210306.5+661032 |UGSS | 15.0 | 17.5 | |p | | |( 12. :) | | |04298 04298| +200188 |FY Cep |211150.7+674123 |M | 16.2 |< 17.3 | |p |36840. | | 280. | | |04298 04298| +200189 |FZ Cep |211942.8+552700 |SR | 8.5 | 9.1 | |p | | | | |M5 |02522 08953| +200190 |GG Cep |212022.6+672552 |EA/SD | 13.9 | 15.7 | |p |36834.35 | | 1.9032 |20 : | |04298 02334| +200191 |GH Cep |212004.4+775044 |M | 12.5 | 15.5 | |p |26782. | | 331. | |M3 |04312 00158| +200192 |GI Cep *|212928.9+651421 |EA/KE | 11.4 | 12.5 | 11.9 |p |36875.375 | | 1.037684 |20 : | |04298 00319| +200193 |GK Cep *|213059.1+704924 |EB/KE | 6.89 | 7.37 | 7.35 |V |38694.7063 | | 0.936157 | |A2V+A2V |07405 04315| +200194 |GL Cep *|213747.2+574414 |INSB | 12.9 | 13.9 | |p | | | | |M6.5 |04317 08622| +200195 |GM Cep *|213817.3+573123 |INS | 13.5 | 16.4 | |p | | | | | |08925 08925| +200196 |GN Cep |215952.2+572149 |SRA | 12.2 |< 14.5 | |p |37155. | | 230. | |M6 |03532 08640| +200197 |GO Cep | | | | | | | | | | | | |=AY Cep +200198 |GP Cep *|221845.6+560734 |E/WR+E: | 8.96 | 9.07 | |V |31256.602 | | 6.6883 | |WN6+O8-B0III:+O+O|07306 04323| +200199 |GQ Cep |223922.9+753928 |ACV | 8.11 | 8.29 | |V |38350.57 | | 2.037638 |45 |A0p(Si) |08022 BD | +200200 |GR Cep |224742.9+611615 |LB | 11.0 | 12.2 | |p | | | | |M5 |04330 03757| +200201 |GS Cep *|225129.5+570018 |EB/KE | 10.2 | 11.1 | 10.6 |p |26350.375 | | 0.772002 | |A0 |04009 00462| +200202 |GT Cep *|225747.3+682426 |EA/SD | 8.2 | 9.1 | 8.6 |V |25628.250 | | 4.908756 |14 *|B3V |04020 08645| +200203 |GU Cep |231010.9+611430 |LC | 11.6 | 12.6 | |p | | | | |M2Iab |04396 07920| +200204 |GV Cep |234801.9+841949 |EA: | 17. | 18. | |p | | | | | |04341 04341| +200205 |GW Cep *|014558.6+800455 |EW/KW | 11.4 | 12.10 | 12.00 |p |38383.711 | | 0.31885 | |G3 |03913 00174| +200206 |GX Cep |200432.1+595331 |SR | 15.5 | 16.4 | |p | | | | | |03148 04065| +200207 |GY Cep |200551.5+603917 |LB | 11.4 | 12.3 | |p | | | | | |03148 04065| +200208 |GZ Cep |201354.8+760849 |RRAB | 13.5 | 14.4 | |p |27453.260 | | 0.694582 |20 | |03160 01464| +200209 |HH Cep |201843.7+603614 |LB | 14.4 | 15.5 | |p | | | | | |03148 04065| +200210 |HI Cep |202458.5+613356 |E | 12.3 | 13.8 | |p |37934.509 | | | | |03916 03916| +200211 |HK Cep *|203932.6+564903 |EB/KE | 14.2 | 14.8 | 14.4 |p |37642.210 | | 1.0513 | | |03148 04065| +200212 |HL Cep |212057.8+675931 |M: | 17.2 |< 18.2 | |p |36874. | | | | |04298 04298| +200213 |HM Cep |212358.7+672812 |M: | 17.0 |< 18.5 | |p | | | 300. : | | |04298 04298| +200214 |HN Cep |222522.5+571557 |M | 14.1 |< 17.3 | |p |34016. | | 307.2 | | |05862 05862| +200215 |HO Cep |223421.8+623604 |M: | 14.5 | 18. | |p |38670. | | | | |03905 03905| +200216 |HP Cep |225949.3+654421 |M: | 16. |< 20. | |p | | | 390. :/N| | |03905 03905| +200217 |HQ Cep |231246.8+612633 |EA/SD | 15.6 | 16.5 | |B |37905.5 | | 1.15379 |13 | |07920 07920| +200218 |HR Cep |000712.3+671241 |UV | 17.1 | 17.8 | |V | | | | | |05529 05529| +200219 |HS Cep |204218.6+691625 |UV | 17.0 | 17.7 | |p | | | | | |08937 USNO | +200220 |HT Cep |204433.8+672327 |UV | 16.6 | 17.5 | |p | | | | | |08937 USNO | +200221 |HU Cep |204614.7+670948 |UV | 15.2 | 18.0 : | |p | | | | | |05531 05531| +200222 |HV Cep |204906.4+662655 |UV | 16.9 | 17.9 | |p | | | | | |08937 USNO | +200223 |HW Cep |204926.2+674952 |UV | 15.7 | 17.1 | |p | | | | | |05531 05531| +200224 |HX Cep |204942.7+690328 |UV | 16.9 | 18.0 | |p | | | | | |08937 USNO | +200225 |HY Cep |205105.7+685523 |UV | 16.4 | 17.8 | |p | | | | | |08937 USNO | +200226 |HZ Cep *|210136.2+680822 |UVN | 13.2 | 18.2 | |p | | | | | |05531 03527| +200227 |II Cep |210725.4+663021 |UV | 16.7 | 17.4 | |p | | | | | |05530 USNO | +200228 |IK Cep |215205.5+564548 |SR | 14.4 | 15.5 | |p | | | | |M7e |04317 02374| +200229 |IL Cep *|225315.6+620845 |EA | 9.29 | 9.61 | |V | | | 1.401 : | |B2-B3pe |05522 BD | +200230 |IM Cep *|231310.9+624206 |EB | 13.2 | 14.2 | 13.6 |p |29931.265 | | 0.921589 | | |05402 05402| +200231 |IN Cep |202932.6+670211 |M | 14. |< 15.5 | |p |39048. | | 411.7 | | |05957 00542| +200232 |IO Cep *|211030.7+574309 |EA/SD | 11.4 | 12.6 | 11.7 |p |30729.280 | | 1.2358073 |15 *|F8 |06325 05957| +200233 |IP Cep *|214655.5+685250 |EW | 11.5 | 12.1 | 12.1 |p |29495.570 | | 0.89888 | | |05957 05957| +200234 |IQ Cep |215236.0+555838 |LB | 12.7 | 14.0 | |p | | | | |M5: |05862 05862| +200235 |IR Cep *|215751.9+610108 |DCEP | 7.58 | 7.98 | |V |41696.582 | | 2.114124 |40 |G0 |08300 08940| +200236 |IS Cep |215853.4+553025 |SRB | 15.2 | 15.7 | |B | | | 125. | |C(R) |06566 06566| +200237 |IT Cep |220229.3+570838 |CWB: | 14.6 | 15.4 | |p |33873.67 | | 7.34744 |33 | |05862 05862| +200238 |IU Cep |220242.0+544409 |LB | 13.8 | 14.7 | |p | | | | | |05862 05862| +200239 |IV Cep *|220437.0+533024 |NA | 7.0 | 19.3 | |B |41139. |1971 | | |pec(NOVA) |07406 07406| +200240 |IW Cep *|220433.1+552737 |EA/SD | 13.6 | 15.6 | 13.7 |p |32768.388 | | 1.609413 |16 *| |05862 05862| +200241 |IX Cep *|220717.5+532413 |EA/SD | 16.8 | 17.9 | 17.0 |p |34240.430 | | 1.0970019 |26 : | |05862 05862| +200242 |IY Cep |220735.5+552147 |CEP | 13.6 | 14.8 | |p |33476.258 | | 5.656906 |32 : | |05862 05862| +200243 |IZ Cep |220816.9+535516 |M | 14.6 |< 18.2 | |p |34001. | | 323.4 | | |05862 05862| +200244 |KK Cep |220917.8+545821 |SR | 16.0 | 18.1 | |p | | | 243. : | | |05862 05862| +200245 |KL Cep *|221022.9+540909 |EA | 11.3 | 12.5 : | |p |34724.7 | | 256.1 |03 |K0: |05862 05862| +200246 |KM Cep |221021.2+550917 |RRAB | 14.0 | 15.1 | |p |34152.610 | | 0.5679795 |26 : | |05862 05862| +200247 |KN Cep |221044.0+553738 |LB: | 14.6 | 15.3 | |p | | | | | |05862 05862| +200248 |KO Cep |221058.4+561730 |DCEP | 15.5 | 16.5 | |p |34240.571 | | 4.55809 |35 | |05862 05862| +200249 |KP Cep *|221158.4+543830 |EA/SD: | 12.8 | 13.7 |( 0.03 )|p |34011.281 | | 1.935106 |14 *| |05862 05862| +200250 |KQ Cep |221228.5+541241 |SRA | 16.0 | 17.8 | |p |33549. | | 310.0 | | |05862 05862| +200251 |KR Cep |221248.8+561538 |LB | 14.0 | 15.1 | |p | | | | | |05862 05862| +200252 |KS Cep |221501.2+561239 |SRB | 15.5 | 16.6 | |p | | | 1000. : | | |05862 05862| +200253 |KT Cep |221533.3+561422 |LB | 14.0 | 14.7 | |p | | | | | |05862 05862| +200254 |KU Cep |221648.1+563723 |M | 14.4 |< 17.6 | |p |33145. | | 280.1 | | |05862 05862| +200255 |KV Cep *|221909.3+554940 |EB | 14.1 | 14.8 | 14.3 |p |33539.610 | | 0.858230 | | |05862 05862| +200256 |KW Cep |222313.7+560853 |LB | 12.6 | 13.8 | |p | | | | |M5 |05862 05862| +200257 |KX Cep |222428.3+573944 |LB | 14.2 | 15.5 | |p | | | | | |05862 05862| +200258 |KY Cep *|223216. +573952:|* | 4. : | 13. : | |p |40797.333 | | | |pec(cont) |05864 | +200259 |KZ Cep *|225630.9+625207 |BCEP | 8.20 | 8.22 | |B | | | 0.24544 | |B0V |05522 BD | +200260 |LL Cep *|230419.3+744025 |EB | 13.5 | 15. | 14.0 |p |27119.460 | | 0.7841514 | | |05957 05957| +200261 |LM Cep *|204358.2+623029 |EA | 12.6 | 14.2 | 12.8 |p |30517.339 | | 3.3128065 |18 :*| |06325 06325| +200262 |LN Cep |210552.0+635422 |M | 13.7 |< 16.0 | |p |30662. | | 181.5 | | |06325 06325| +200263 |LO Cep |211943.0+614227 |IA | 13.7 | 15.8 | |p | | | | |A0-A5 |08133 06325| +200264 |LP Cep *|211950.0+604326 |EA/SD | 13.7 | 15.0 | 13.8 |p |30517.465 | | 0.6930642 |16 *| |06325 06325| +200265 |LQ Cep *|212525.9+611325 |M | 14.5 |< 15.7 | |p |30322. | | 285.7 | | |06325 06325| +200266 |LR Cep |213052.8+610718 |RRAB | 15.0 | 15.9 | |p |30576.474 | | 0.4306951 |20 | |06325 06325| +200267 |LS Cep |213041.8+640032 |EA/SD: | 14.7 |< 15.8 | |p |30590.650 | | 3.2655017 |17 | |06325 06325| +200268 |LT Cep |213317.8+574814 |RR: | 14.6 | 15.4 | |p |31076.250 | | 0.5 : | | |06325 06325| +200269 |LU Cep *|213514.6+605418 |LB | 12.5 | 13.3 | |p | | | | |C4-5,4-5(N3) |06325 06325| +200270 |LV Cep |214216.2+640201 |EA | 15.4 | 16.1 | |p |30515.399 | | 9.7181902 |14 *| |06325 06325| +200271 |LW Cep *|214240.1+635332 |EA/SD | 14.8 | 15.8 |( 0.05 )|p |30974.386 | | 1.4019731 |16 *| |06325 06325| +200272 |LX Cep |215757.7+631001 |M | 13.6 |< 16.3 | |p |30372. | | 374. | | |06325 06325| +200273 |LY Cep |215900.9+623521 |EA/DM | 13.9 | 14.2 | |p |30693.386 | | 1.9479836 |17 *| |06325 06325| +200274 |LZ Cep *|220204.6+580001 |ELL | 5.56 | 5.66 | 5.63 |B |41931.868 | | 3.070510 | |O8.5III+O9Vn |08213 BD | +200275 |MM Cep |220422.7+543507 |M | 16.2 |< 18.4 | |p |32785. | | 471.2 | | |06329 06329| +200276 |MN Cep *|220425.7+542618 |EA/DS | 14.7 | 15.7 |( 0.08 : )|p |34004.394 | | 10.37564 |06 :*| |06329 06329| +200277 |MO Cep |220353.0+630712 |LB: | 5.13 | 5.33 | |V | | | | |M5III |06330 BD | +200278 |MP Cep |220549.6+533745 |LB | 13.5 | 14.3 | |p | | | | | |06329 06329| +200279 |MQ Cep *|220659.5+544043 |EB | 15.4 | 16.6 | 15.7 |p |34152.609 | | 0.9305391 | | |06329 06329| +200280 |MR Cep |221116.5+550112 |SRB | 14.4 | 16.2 | |p | | | 87. : | | |06329 06329| +200281 |MS Cep |221132.2+541419 |EA/SD | 14.7 | 16.7 | |p |33595.406 | | 3.360962 |16 *| |06329 06329| +200282 |MT Cep *|221834.3+563124 |EB/KE | 14.6 | 15.5 | 15.5 |p |34240.4258 | | 1.2064196 | | |06329 06329| +200283 |MU Cep |222338.6+574051 |CEP | 12.7 | 14.1 | |p |33541.653 | | 3.767820 |33 | |06329 06329| +200284 |MV Cep |224455.8+595420 |LB | 11.4 | 12.1 | |V | | | | |C(N) |06566 06566| +200285 |MW Cep |225118.9+603436 |M | 14.8 |< 18. | |B |41207. :| | 400. : | |C(N) |06566 06566| +200286 |MX Cep *|225241.9+584823 |ACV | 7.81 | 7.96 | |V |40785.2 | | 17.22 | |A2p(Sr-Cr-Mn) |06992 BD | +200287 |MY Cep *|225431.8+604939 |SRC | 14.4 | 15.3 | |V | | | | |M7-M7.5I |07341 06566| +200288 |MZ Cep *|225445.2+604642 |LB | 14.7 | 15.4 | |V | | | | |C(N) |06566 06566| +200289 |NN Cep *|230205.6+623044 |EA/DM | 8.2 | 8.58 | 8.52 |V |44507.4033 | | 2.058305 |12 *|A5 |08948 08686| +200290 |NO Cep |235426.8+665419 |ISB | 15.1 | 16.7 | |p | | | | |e(T:) |06474 06474| +200291 |NP Cep |000825.4+715953 |EA/SD | 16.1 | 17.8 | |p |41380.221 | | 1.035205 |15 | |07694 07694| +200292 |NQ Cep |002510.0+700852 |M | 14.8 | 18.5 : | |p |38344. | | | |M6 |07414 00922| +200293 |NR Cep *|002611.4+692822 |EA | 13.0 | 13.6 | 13.6 |p |38289.576 | | 0.949552 |12 | |07414 07414| +200294 |NS Cep *|204523.4+604313 |EA | 12.2 | 12.6 |( 0.04 )|p |30639.300 | | 0.7763644 |19 | |06325 06325| +200295 |NT Cep |213037.1+614250 |LB | 11.2 | 11.7 | |p | | | | |M6 |06325 06325| +200296 |NU Cep |213156.1+613000 |EA | 11.9 | 12.7 | |p |30633.378 | | 4.980605 |04 *| |07056 06325| +200297 |NV Cep |221112.1+544122 |LB | 13.2 | 14.2 | |p | | | | | |06329 06329| +200298 |NW Cep *|221348.0+554421 |EA/SD: | 10.6 | 11.5 | 10.7 |p |33853.384 | | 2.7530064 |18 *| |06329 06329| +200299 |NX Cep |222031.0+562951 |SRD: | 12.4 | 13.1 | |p |33813. | | 311. | |F2: |06329 06329| +200300 |NY Cep *|225839.8+630438 |EA/DM | 7.40 | 7.55 | |V |41903.8136 | | 15.275727 |02 |B0IV+B0IV |08691 07410| +200301 |NZ Cep |215659.8+561120 |SRB | 16.4 | 17.1 | |B | | | 250. : | |C(N) |06566 06566| +200302 |OO Cep |224751.9+595912 |LB: | 12.6 | 13.1 | |V | | | | |C(N) |06566 06566| +200303 |OP Cep |225013.3+584936 |LB: | 13.0 | 13.4 | |V | | | | |C(N) |06566 06566| +200304 |OQ Cep |231257.0+603438 |SRB | 13. |< 18. | |B | | | 370. | |M7-M8 |07920 07920| +200305 |OR Cep |000614.3+700403 |LB | 14. | 17. | |p | | | | |C |00122 00122| +200306 |OS Cep *|002720.6+865459 |M | 14.2 |< 18. | |B |39238. | | 278. | | |08706 08706| +200307 |OT Cep *|002918.1+821009 |EA | 12.7 | 13.4 | 13.3 |B |43042.374 | | 0.9624724 |15 *| |08707 08707| +200308 |OU Cep |031158.3+833446 |SR | 11.1 | 12.0 | |p | | | | |M8 |00174 BD | +200309 |OV Cep |074030.5+870112 |SR | 5.00 | 5.07 | |V | | | | |M2IIIab |06994 BD | +200310 |OW Cep |202603.8+613522 |LB | 12.7 | 13.1 | |p | | | | | |03148 04065| +200311 |OX Cep |204655.7+584313 |IB: | 15.8 | 16.5 | |p | | | | | |03148 04065| +200312 |OY Cep |210940.3+755313 |LB: | 13.5 | 14.4 | |p | | | | |M3-M7 |01464 01464| +200313 |OZ Cep *|214247.6+585721 |M: | 14.5 |< 17.5 | |p |41869. | | 354. : | | |08622 07881| +200314 |PP Cep |214507.0+592527 |L | 14.3 | 15.2 | |p | | | | | |08622 08622| +200315 |PQ Cep |214428.8+733805 |M | 10.5 |< 15.5 | |p |36485. | | | |C6-,3e(N) |02594 00158| +200316 |PR Cep |215801.3+564449 |LB: | 1.48 | 1.86 | |K | | | | |M8 |06352 00685| +200317 |PS Cep *|224749.6+580850 |E/DM | 10.13 | 10.19 | |V | | | 2.09168 | |B6Vne |07882 05479| +200318 |PT Cep |234022.4+702630 |SR | 13.9 | 15.3 | |p | | | | | |07883 07883| +200319 |PU Cep |234046.0+701940 |SR | 11.7 | 13.5 | |p | | | | |C |07883 07883| +200320 |PV Cep *|204554.0+675739 |INT | 11.1 | 18. | |R | | | | |A5Ve-K0e(T) |08950 07935| +200321 |PW Cep *|210136.0+680823 |INS | 16.9 |< 18.5 | |p | | | | |ea |03527 03527| +200322 |PX Cep |213558.0+655142 |E | 12.0 | 13.7 | |p |36098.33 | | | | |04298 02786| +200323 |PY Cep |215346.0+603214 |LB | 15.7 |< 17.5 | |p | | | | | |07881 07881| +200324 |PZ Cep |225655.4+602510 |SRB | 12.3 | 13.0 | |I | | | 150. : | | |07920 07920| +200325 |QQ Cep |225943.9+605325 |EB: | 15.7 | 16.2 | |B |40889.44 | | | | |07920 07920| +200326 |QR Cep |230150.9+614007 |M | 12.8 | 15.6 | |I |40669. | | 399. | |M8-M10 |07920 07920| +200327 |QS Cep |230303.8+613018 |M | 12.2 | 14.3 | |I |40890. | | 146. |40 |M4-M5 |07920 07920| +200328 |QT Cep |230558.5+601459 |M | 11.9 | 13.8 | |I |41623. | | 460. |40 |M6: |07920 07920| +200329 |QU Cep |230620.8+600433 |M | 12.9 | 16.2 | |I |40115. | | 340. |50 |M5-M6 |07920 2MASS| +200330 |QV Cep |231147.8+603414 |E: | 14.4 | 15.5 | |B |40889.44 | | | | |07920 07920| +200331 |QW Cep |231228.4+595219 |LB | 16.2 | 17.7 | |B | | | | |M7 |07920 07920| +200332 |QX Cep |231330.3+625032 |M | 10.0 | 14.25 | |I |41660. | | 330. |50 |M7 |07920 07920| +200333 |QY Cep |231338.2+630902 |M | 10.6 | 14.5 | |I |41215. | | 353. |50 |M5 |07920 07920| +200334 |QZ Cep *|233712.4+665510 |EB/KE | 11.3 | 11.9 | 11.9 |p |37017.434 | | 1.5146774 | |A4 |08718 04015| +200335 |V0335 Cep |204259.2+670809 |UV | 17.0 | 18.0 | |p | | | | | |08241 08241| +200336 |V0336 Cep |204702.9+671953 |UV | 17.0 | 20.5 | |p | | | | | |08241 08241| +200337 |V0337 Cep |213755.2+620455 |ACYG | 4.69 | 4.78 | |V | | | | |B2Ib |08213 BD | +200338 |V0338 Cep *|214532.2+611230 |EA | 9.3 | 10.11 | 9.52 |V |44114.580 | | 2.1044165 |20 :*| |08952 BD | +200339 |V0339 Cep |211145.4+574250 |SR: | 13.0 | 14.5 | |R | | | | | |08376 08376| +200340 |V0340 Cep |211232.1+572925 |SR: | 13.0 | 14.5 | |R | | | | | |08376 08376| +200341 |V0341 Cep |211323.7+580248 |SR: | 12.5 | 14.0 | |R | | | | | |08376 08376| +200342 |V0342 Cep *|211730.1+581113 |M: | 12.0 | 14.5 | |R | | | | | |08376 08376| +200343 |V0343 Cep |211735.1+555936 |SRA | 9.8 | 11.4 | |R |42675. | | 525. | |C |08377 GSC | +200344 |V0344 Cep *| | | | | | | | | | | | |=V0343 Cep +200345 |V0345 Cep *|212440.3+571845 |SRA | 9.8 | 12.2 | |R |38418. | | 417.7 | | |02771 02771| +200346 |V0346 Cep *|212625.7+580702 |SR: | 13.5 | 15.0 | |R | | | | | |08376 08376| +200347 |V0347 Cep *|212930.9+575927 |INSB: | 11.0 | 14.5 | |R | | | | | |07881 08376| +200348 |V0348 Cep |213006.0+560003 |SR: | 13.0 | 15.0 | |R | | | | | |08376 08376| +200349 |V0349 Cep |214013.4+564934 |SR: | 13.0 | 14.0 | |R | | | | | |08376 08376| +200350 |V0350 Cep |214259.9+661129 |INT | 17.0 |< 21. | |p | | | | |e(T) |08381 08381| +200351 |V0351 Cep *|223341.4+571906 |CWB | 9.25 | 9.70 | |V |42676.397 | | 2.80591 |38 |F8 |08958 BD | +200352 |V0352 Cep |230127.1+613350 |LB | 10.8 | 11.5 | |B | | | | |M7: |07920 07920| +200353 |V0353 Cep |205750.5+552622 |UV | 16.7 | 18.2 | |p | | | | | |08748 08748| +200354 |V0354 Cep |223334.7+585348 |LC | 10.82 | 11.35 | |V | | | | |M2.7Iab |02556 GSC | +200355 |V0355 Cep |224910.5+591813 |LC | 10.68 | 11.10 | |V | | | | |M1.1Iab |02556 GSC | +200356 |V0356 Cep |231331.5+603019 |LC | 9.86 | 10.13 | |V | | | | |M0.8Ib |02556 GSC | +200357 |V0357 Cep |020410.1+785046 |E+IS: | 13.5 | 14.5 | |p | | | | | |67204 67203| +200358 |V0358 Cep |022729.0+811003 |EB/KW | 13.5 | 14.5 | |p | | | | | |67207 67206| +200359 |V0359 Cep |203048.7+602133 |SR: | 14.9 |< 15.5 | |p | | | | | |67210 67210| +200360 |V0360 Cep |214018.7+682322 |DSCTC | 8.3 |( 0.03 )| |V | | | | | |67214 BD | +200361 |V0361 Cep |214250.2+660635 |INA | 10.07 | 10.20 | |V | | | | | |67215 BD | +200362 |V0362 Cep |231248.4+860622 |M: | 13.0 | 19.0 | |p | | | | | |67222 67222| +200363 |V0363 Cep |212731.4+714900 |SR: | 13.5 | 15.6 | |V | | | | | |68015 GSC | +200364 |V0364 Cep |213044.2+705959 |ACV: | 8.4 |( 0.025 )| |V | | | | | |68070 BD | +200365 |V0365 Cep |213042.4+613326 |SRA | 11.8 | 13.4 | |V | | | | | |69010 GSC | +200366 |V0366 Cep |214234.1+572009 |M: | 15.0 | 18.0 | |V | | | | | |69088 69088| +200367 |V0367 Cep |230858.7+624856 |L | 8.24 | 8.91 | |B | | | | | |69089 BD | +200368 |V0368 Cep |231926.6+790013 |RS | 7.7 |( 0.04 B )| |V | | | | | |69090 69305| +200369 |V0369 Cep |004612.6+851402 |EW/KW | 16.9 | 17.4 | |B | | | | | |70032 70032| +200370 |V0370 Cep |004717.0+851535 |EW/KW | 17.1 | 17.3 | |B | | | | | |70032 70032| +200371 |V0371 Cep |004822.9+851555 |EB | 15.87 | 16.24 | |V | | | | | |70032 70032| +200372 |V0372 Cep |005124.5+851803 |FKCOM: | 14.0 | 14.1 | |B | | | | | |70032 70032| +200373 |V0373 Cep |214306.8+660654 |INA | 11.82 | 12.89 | |V | | | | | |70033 70034| +200374 |V0374 Cep |230507.5+621537 |BE | 10.2 | 10.7 | |V | | | | | |70036 70035| +200375 |V0375 Cep |214454.8+654355 |EW: | 16.11 | 16.6 | |V | | | | | |71218 71219| +200376 |V0376 Cep |215819.8+825216 |RS | 7.5 |( 0.07 )| |V | | | | | |71001 BD | +200377 |V0377 Cep |232420.7+862504 |DSCTC | 6.58 | 6.64 | |V | | | | | |71222 BD | +200378 |V0378 Cep |233133.9+861041 |ELL | 7.09 | 7.12 | |V | | | | | |71222 BD | +200379 |V0379 Cep |204313.7+570650 |EA | 6.65 |( 0.06 b )| |B | | | | | |72045 BD | +200380 |V0380 Cep |210136.9+680948 |INA | 7.10 | 7.36 | |U | | | | | |72187 72046| +200381 |V0381 Cep |211915.7+583725 |LC: | 5.51 | 5.71 | |V | | | | | |72047 BD | +200382 |V0382 Cep |211922.2+645219 |BE | 5.08 | 5.23 | |V | | | | | |72048 BD | +200383 |V0383 Cep |215147.6+615635 |EB | 7.27 | 7.58 | |V | | | | | |72050 72050| +200384 |V0384 Cep |222553.6+602044 |M | 13.72 | 15.34 | |I | | | | | |72006 72006| +200385 |V0385 Cep |224907.3+621109 |INA | 13.97 | 14.74 | |V | | | | | |72028 72051| +200386 |V0386 Cep |225312.3+611701 |SR | 8.8 | 11.5 | |V | | | | | |72052 72052| +200387 |V0387 Cep |230323.7+602644 |LPB | 6.72 |( 0.02 b )| |B | | | | | |72045 BD | +200388 |V0388 Cep |231537.7+705317 |DSCT: | 5.56 |( 0.07 )| |V | | | | | |72053 BD | +200389 |V0389 Cep |212846.1+555824 |ISA: | 13.1 | 15.3 | |p | | | | | |73095 73095| +200390 |V0390 Cep |213650.7+573111 |INB | 13. | 16.2 | |B | | | | | |73096 73097| +200391 |V0391 Cep |214027.5+663521 |INT | 14.9 | 17.0 | |B | | | | | |73098 73098| +200392 |V0392 Cep |214257.7+660422 |INT | |( 1.2 )| |r | | | | | |73099 73099| +200393 |V0393 Cep |215021.3+593656 |ISA: | 12.2 | 14.8 | |p | | | | | |73095 73095| +200394 |V0394 Cep |220241.0+592709 |CWB: | 14.2 | 16.1 | |p | | | | | |73095 73095| +200395 |V0395 Cep |232052.1+741407 |INT | 9.5 |( 0.08 )| |V | | | | | |73100 GSC | +200396 |V0396 Cep |000241.9+750210 |LB: | 9.24 | 9.35 | |Hp| | | | | |HIP HIP | +200397 |V0397 Cep |000324.0+731028 |EA | 7.39 | 7.81 | |Hp| | | | | |HIP HIP | +200398 |V0398 Cep |000351.6+664244 |SRB | 6.30 | 6.40 | |Hp| | | | | |HIP HIP | +200399 |V0399 Cep |000449.0+681119 |IA | 9.15 | 9.35 | |Hp| | | | | |HIP HIP | +200400 |V0400 Cep |001301.0+723119 |WR | 10.58 | 10.77 | |Hp| | | | | |HIP HIP | +200401 |V0401 Cep |001406.0+732327 |SRB | 8.17 | 8.33 | |Hp| | | | | |HIP HIP | +200402 |V0402 Cep |002920.1+795242 |DSCTC | 10.56 | 10.64 | |Hp| | | | | |HIP HIP | +200403 |V0403 Cep |015602.9+805430 |SRB: | 7.19 | 7.33 | |Hp| | | | | |HIP HIP | +200404 |V0404 Cep |020459.9+825036 |LB: | 9.78 | 9.96 | |Hp| | | | | |HIP HIP | +200405 |V0405 Cep |024434.4+791156 |EA: | 8.75 | 8.95 | |Hp| | | | | |HIP HIP | +200406 |V0406 Cep |035650.7+844910 |LB: | 8.23 | 8.36 | |Hp| | | | | |HIP HIP | +200407 |V0407 Cep |042107.4+812542 |DSCTC | 8.06 | 8.15 | |Hp| | | | | |HIP HIP | +200408 |V0408 Cep |042813.3+834828 |GCAS: | 5.41 | 5.50 | |Hp| | | | | |HIP HIP | +200409 |V0409 Cep |043702.4+824125 |LB: | 9.30 | 9.42 | |Hp| | | | | |HIP HIP | +200410 |V0410 Cep |070939.5+853412 |LB: | 8.07 | 8.17 | |Hp| | | | | |HIP HIP | +200411 |V0411 Cep |082323.4+862243 |LB | 8.27 | 8.42 | |Hp| | | | | |HIP HIP | +200412 |V0412 Cep |201016.1+612045 |LB | 7.45 | 7.82 | |Hp| | | | | |HIP HIP | +200413 |V0413 Cep |202533.5+801313 |E: | 7.54 | 7.59 | |Hp| | | | | |HIP HIP | +200414 |V0414 Cep |204422.1+562918 |SRB: | 5.87 | 6.04 | |Hp| | | | | |HIP HIP | +200415 |V0415 Cep |204531.8+622345 |EA | 7.90 | 8.23 | |Hp| | | | | |HIP HIP | +200416 |V0416 Cep |204701.1+582500 |SRB: | 6.75 | 6.90 | |Hp| | | | | |HIP HIP | +200417 |V0417 Cep |205110.0+552920 |GCAS: | 8.28 | 8.48 | |Hp| | | | | |HIP HIP | +200418 |V0418 Cep |205124.1+570343 |BE | 9.34 | 9.48 | |Hp| | | | | |HIP HIP | +200419 |V0419 Cep |211247.3+600553 |LC: | 6.28 | 6.55 | |Hp| | | | | |HIP HIP | +200420 |V0420 Cep |211445.5+594540 |GCAS | 8.54 | 8.83 | |Hp| | | | | |HIP HIP | +200421 |V0421 Cep *|211718.8+583641 |BE: | 6.45 | 6.51 | |Hp| | | | | |HIP HIP | +200422 |V0422 Cep |211832.4+611104 |LB | 6.37 | 6.51 | |Hp| | | | | |HIP HIP | +200423 |V0423 Cep |212011.1+794603 |LB | 8.74 | 8.99 | |Hp| | | | | |HIP HIP | +200424 |V0424 Cep |212423.3+562142 |EA | 8.92 | 9.28 | |Hp| | | | | |HIP HIP | +200425 |V0425 Cep |212717.0+595330 |LPB | 9.20 | 9.31 | |Hp| | | | | |HIP HIP | +200426 |V0426 Cep |212725.3+594500 |LB | 6.04 | 6.19 | |Hp| | | | | |HIP HIP | +200427 |V0427 Cep |212732.6+591741 |EB: | 9.17 | 9.27 | |Hp| | | | | |HIP HIP | +200428 |V0428 Cep |213040.8+615013 |EB | 8.29 | 8.62 | |Hp| | | | | |HIP HIP | +200429 |V0429 Cep |213138.4+573009 |ACYG: | 7.48 | 7.54 | |Hp| | | | | |HIP HIP | +200430 |V0430 Cep |213301.1+620009 |BY: | 9.41 | 9.52 | |Hp| | | | | |HIP HIP | +200431 |V0431 Cep |213525.9+681309 |ACV | 6.42 | 6.47 | |Hp| | | | | |HIP HIP | +200432 |V0432 Cep |213659.6+580825 |BE | 8.56 | 8.66 | |Hp| | | | | |HIP HIP | +200433 |V0433 Cep |213657.1+681107 |GCAS: | 8.19 | 8.36 | |Hp| | | | | |HIP HIP | +200434 |V0434 Cep |213949.7+654401 |E | 9.12 | 9.31 | |Hp| | | | | |HIP HIP | +200435 |V0435 Cep |214434.0+590326 |BE | 9.48 | 9.59 | |Hp| | | | | |HIP HIP | +200436 |V0436 Cep |214604.7+790107 |SRB | 7.68 | 8.06 | |Hp| | | | | |HIP HIP | +200437 |V0437 Cep |214921.0+563333 |LB: | 9.32 | 9.49 | |Hp| | | | | |HIP HIP | +200438 |V0438 Cep |215426.6+801831 |SRB | 6.32 | 6.49 | |Hp| | | | | |HIP HIP | +200439 |V0439 Cep |215919.7+601752 |BE: | 7.69 | 7.80 | |Hp| | | | | |HIP HIP | +200440 |V0440 Cep |220119.9+593007 |ACYG: | 9.43 | 9.55 | |Hp| | | | | |HIP HIP | +200441 |V0441 Cep |220036.6+750423 |EA | 8.74 | 9.22 | |Hp| | | | | |HIP HIP | +200442 |V0442 Cep |220412.9+595202 |EB | 6.93 | 7.06 | |Hp| | | | | |HIP HIP | +200443 |V0443 Cep |220427.8+622428 |EA | 8.44 | 8.70 | |Hp| | | | | |HIP HIP | +200444 |V0444 Cep |220613.6+562036 |ELL: | 6.33 | 6.40 | |Hp| | | | | |HIP HIP | +200445 |V0445 Cep |220710.9+722222 |ELL: | 6.88 | 6.91 | |Hp| | | | | |HIP HIP | +200446 |V0446 Cep |220845.6+610121 |EA | 7.31 | 7.45 | |Hp| | | | | |HIP HIP | +200447 |V0447 Cep *|221059.6+632359 |LPB: | 7.39 | 7.44 | |Hp| | | | | |HIP HIP | +200448 |V0448 Cep *|221209.8+534156 |E: | 9.59 | 9.73 | |Hp| | | | | |HIP HIP | +200449 |V0449 Cep |221920.9+585711 |ACYG: | 8.95 | 9.06 | |Hp| | | | | |HIP HIP | +200450 |V0450 Cep |222503.7+575030 |BE | 10.29 | 10.45 | |Hp| | | | | |HIP HIP | +200451 |V0451 Cep |223226.9+583706 |LB | 10.27 | 11.12 | |Hp| | | | | |HIP HIP | +200452 |V0452 Cep |224210.3+752611 |SRD | 8.74 | 8.84 | |Hp| | | | | |HIP HIP | +200453 |V0453 Cep *|225245.8+605459 |EA | 7.54 | 7.66 | |Hp| | | | | |HIP HIP | +200454 |V0454 Cep *|225354.0+623548 |EA: | 9.15 | 9.25 | |Hp| | | | | |HIP HIP | +200455 |V0455 Cep |225608.6+585315 |ACYG | 8.48 | 8.53 | |Hp| | | | | |HIP HIP | +200456 |V0456 Cep |225656.1+595742 |ACV: | 7.18 | 7.23 | |Hp| | | | | |HIP HIP | +200457 |V0457 Cep |230928.4+682542 |LPB | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +200458 |V0458 Cep |231512.4+602702 |WR | 9.64 | 9.82 | |Hp| | | | | |HIP HIP | +200459 |V0459 Cep |232045.1+770346 |DSCTC | 7.72 | 7.75 | |Hp| | | | | |HIP HIP | +200460 |V0460 Cep |233801.6+652602 |LB | 8.35 | 8.55 | |Hp| | | | | |HIP HIP | +200461 |V0461 Cep |234909.1+684007 |LB: | 8.06 | 8.18 | |Hp| | | | | |HIP HIP | +200462 |V0462 Cep |235149.7+815013 |EB | 8.66 | 8.77 | |Hp| | | | | |HIP HIP | +200463 |V0463 Cep |000029.3+671300 |E: | 10.24 | 10.55 | |Hp| | | | | |HIP HIP | +200464 |V0464 Cep |202911.7+641623 |M | 11.9 | 15.4 | |V | | | | | |75087 75087| +200465 |V0465 Cep |203112.6+604032 |LB | 12.8 |( 0.09 )| |Rc| | | | | |75088 75088| +200466 |V0466 Cep |203114.0+603647 |EW | 15.6 |( 0.36 )| |Rc| | | | | |75088 75088| +200467 |V0467 Cep |203118.8+603810 |EA | 14.1 |( 0.36 )| |Rc| | | | | |75088 75088| +200468 |V0468 Cep |203124.4+604019 |LB: | 12.0 |( 0.14 )| |Rc| | | | | |75088 75088| +200469 |V0469 Cep |203127.0+603818 |LB: | 12.1 |( 0.02 )| |Rc| | | | | |75088 75088| +200470 |V0470 Cep |203129.0+603936 |EA | 14.4 |( 0.40 )| |Rc| | | | | |75088 75088| +200471 |V0471 Cep |203323.6+615230 |SRB | 13.1 | 14.7 | |V | | | | | |75087 75087| +200472 |V0472 Cep |204716.7+603527 |SRD | 13.2 |< 16.2 | |V | | | | | |75087 75087| +200473 |V0473 Cep |204730.6+613812 |M | 12.3 |< 16.2 | |V | | | | | |75087 75087| +200474 |V0474 Cep |204855.8+632628 |LB | 12.3 |< 16.0 | |V | | | | | |75087 75087| +200475 |V0475 Cep |205547.5+581518 |M: | 13.0 |< 16.0 | |V | | | | | |75087 75087| +200476 |V0476 Cep |210041.6+580506 |SRA: | 14.2 |< 16.0 | |V | | | | | |75087 75087| +200477 |V0477 Cep |210326.9+595831 |M | 12.4 | 15.3 | |V | | | | | |75087 75087| +200478 |V0478 Cep |211058.0+580103 |SRA | 13.7 | 16.0 | |V | | | | | |75087 75087| +200479 |V0479 Cep |211349.9+615123 |SRA | 11.8 | 13.7 | |V | | | | | |75079 75079| +200480 |V0480 Cep |211707.6+553022 |M | 12.1 | 14.6 | |V | | | | | |75087 75087| +200481 |V0481 Cep |211927.2+612613 |M | 12.1 | 16.0 | |V | | | | | |75079 75079| +200482 |V0482 Cep |212411.8+592749 |SRA | 13.5 | 15.5 | |V | | | | | |75079 75079| +200483 |V0483 Cep |212502.0+615936 |SRA | 13.4 | 15.3 | |V | | | | | |75079 75079| +200484 |V0484 Cep |212727.3+625324 |SRA | 13.2 | 15.0 | |V | | | | | |75079 75079| +200485 |V0485 Cep |213111.1+642736 |M | 12.6 |< 16.0 | |V | | | | | |75087 75087| +200486 |V0486 Cep |213308.2+614630 |SRA | 11.8 | 14.3 | |V | | | | | |75079 75079| +200487 |V0487 Cep |213431.9+585103 |SRA | 13.5 | 15.6 | |V | | | | | |75079 75079| +200488 |V0488 Cep |213519.2+573639 |IN | 12.4 | 13.4 | |p | | | | | |75089 75089| +200489 |V0489 Cep |213532.6+655734 |E/RS: | 13.3 |( 0.51 )| |V | | | | | |75090 75090| +200490 |V0490 Cep |213930.7+565911 |XP | 15.2 | 15.8 | |B | | | | | |75091 USNO | +200491 |V0491 Cep |214006.2+593544 |SRA | 12.3 | 14.7 | |V | | | | | |75079 75079| +200492 |V0492 Cep |214403.8+663912 |LB | 14.3 | 15.3 | |V | | | | | |75079 75079| +200493 |V0493 Cep |214825.2+580052 |SRB | 13.7 | 15.1 | |V | | | | | |75079 75079| +200494 |V0494 Cep |214817.8+623808 |SRB | 12.6 | 14.5 | |V | | | | | |75079 75079| +200495 |V0495 Cep |215059.1+592739 |LB | 12.8 | 14.8 | |V | | | | | |75079 75079| +200496 |V0496 Cep |215219.4+624840 |M | 12.9 |< 16.0 | |V | | | | | |75079 75079| +200497 |V0497 Cep |215326.6+623513 |E: | 8.89 | 9.04 | |V | | | | | |75092 BD | +200498 |V0498 Cep |215444.1+635622 |M | 11.5 |< 16.0 | |V | | | | | |75079 75079| +200499 |V0499 Cep |215515.4+634333 |M | 12.0 | 14.7 | |V | | | | | |75079 75079| +200500 |V0500 Cep |215529.0+635624 |LB | 13.5 | 14.8 | |V | | | | | |75079 75079| +200501 |V0501 Cep |215726.1+641249 |M | 12.2 | 15.5 | |V | | | | | |75079 75079| +200502 |V0502 Cep |215747.4+643525 |SRA | 14.1 | 15.3 | |V | | | | | |75079 75079| +200503 |V0503 Cep |215808.6+660003 |M | 11.8 | 16.0 | |V | | | | | |75079 75079| +200504 |V0504 Cep |215825.6+634328 |M | 11.4 | 15.2 | |V | | | | | |75079 75079| +200505 |V0505 Cep |220110.4+661030 |SRB | 12.0 | 14.5 | |V | | | | | |75079 75079| +200506 |V0506 Cep |220136.7+625927 |M | 12.4 | 15.3 | |V | | | | | |75079 75079| +200507 |V0507 Cep |220240.4+613729 |SRA | 12.4 | 14.7 | |V | | | | | |75079 75079| +200508 |V0508 Cep |220321.3+621829 |LB | 11.8 | 14.1 | |V | | | | | |75079 75079| +200509 |V0509 Cep |220421.8+641043 |LB | 14.1 |< 16.0 | |V | | | | | |75079 75079| +200510 |V0510 Cep |220430.1+620448 |LB | 12.0 | 14.3 | |V | | | | | |75079 75079| +200511 |V0511 Cep |220633.8+643959 |SRB | 13.0 | 14.9 | |V | | | | | |75079 75079| +200512 |V0512 Cep |220659.8+652810 |M | 11.8 | 14.6 | |V | | | | | |75079 75079| +200513 |V0513 Cep |220833.4+633442 |M | 12.5 |< 16.0 | |V | | | | | |75079 75079| +200514 |V0514 Cep |221100.1+593842 |M | 12.5 | 16.0 | |V | | | | | |75079 75079| +200515 |V0515 Cep |221137.4+600532 |M | 13.2 |< 16.0 | |V | | | | | |75079 75079| +200516 |V0516 Cep |221426.1+600431 |SRA | 12.7 | 14.4 | |V | | | | | |75079 75079| +200517 |V0517 Cep |221539.4+661753 |LB | 13.8 | 15.0 | |V | | | | | |75079 75079| +200518 |V0518 Cep |222014.5+604615 |LB | 13.2 | 14.0 | |V | | | | | |75079 75079| +200519 |V0519 Cep |222230.0+640925 |M | 13.6 |< 16.0 | |V | | | | | |75079 75079| +200520 |V0520 Cep |222306.5+564250 |SRA | 12.2 | 14.6 | |V | | | | | |75079 75079| +200521 |V0521 Cep |222340.5+584456 |L | 14.0 | 15.2 | |V | | | | | |75079 75079| +200522 |V0522 Cep |222640.2+583135 |LB | 11.0 | 13.3 | |V | | | | | |75079 75079| +200523 |V0523 Cep |223541.9+643956 |M | 13.0 | 15.8 | |V | | | | | |75079 75079| +200524 |V0524 Cep |223736.0+611609 |M | 11.8 |< 14.5 | |V | | | | | |75079 75079| +200525 |V0525 Cep |224241.8+602401 |BE | 12.57 | 12.85 | |V | | | | | |75094 GSC | +200526 |V0526 Cep |224254.6+655853 |M | 10.9 | 16.0 | |V | | | | | |75079 75079| +200527 |V0527 Cep |225054.0+620443 |M | 12.8 | 16.0 | |V | | | | | |75079 75079| +200528 |V0528 Cep |225132.9+582557 |M | 12.6 |< 16.0 | |V | | | | | |75079 75079| +200529 |V0529 Cep |225447.3+574727 |DCEP | 13.3 | 14.9 | |p | | | | | |75006 75007| +200530 |V0530 Cep |231432.3+785640 |M | 11.8 | 15. | |V | | | | | |75095 75291| +200531 |V0531 Cep |231810.6+655244 |M | 11.9 | 16.1 | |V | | | | | |75079 75079| +200532 |V0532 Cep |231836.1+640852 |SR | 13.0 | 15.0 | |V | | | | | |75079 75079| +200533 |V0533 Cep |232000.9+653208 |M | 12.7 | 16.0 | |V | | | | | |75079 75079| +200534 |V0534 Cep |232925.2+645940 |LB | 12.6 | 15.3 | |V | | | | | |75079 75079| +200535 |V0535 Cep |211735.0+651947 |SR: | 12.0 | 13.0 | |V | | | | | |76012 GSC | +200536 |V0536 Cep |211907.3+653113 |SR: | 11.2 | 11.7 | |V | | | | | |76012 GSC | +200537 |V0537 Cep |212024.0+644153 |SR: | 12.4 | 13.4 | |V | | | | | |76012 GSC | +200538 |V0538 Cep |212129.3+634220 |SR: | 13.3 | 14.2 | |V | | | | | |76012 GSC | +200539 |V0539 Cep |212235.7+612910 |SR: | 12.3 | 12.9 | |V | | | | | |76012 GSC | +200540 |V0540 Cep |212323.8+601727 |SR: | 12.7 | 13.7 | |V | | | | | |76012 GSC | +200541 |V0541 Cep |212336.2+615857 |SR: | 10.7 | 11.4 | |V | | | | | |76012 GSC | +200542 |V0542 Cep |212439.2+594304 |SR: | 13.0 | 14.3 | |V | | | | | |76012 GSC | +200543 |V0543 Cep |212702.2+565955 |SR: | 10.9 | 11.5 | |V | | | | | |76012 GSC | +200544 |V0544 Cep |212711.6+581340 |SR: | 14.2 | 14.9 | |V | | | | | |76012 GSC | +200545 |V0545 Cep |212805.8+662026 |SR: | 11.8 | 12.6 | |V | | | | | |76012 GSC | +200546 |V0546 Cep |212832.1+615051 |SR: | 13.0 | 14.3 | |V | | | | | |76012 GSC | +200547 |V0547 Cep |212847.5+585329 |SR: | 12.1 | 12.6 | |V | | | | | |76012 GSC | +200548 |V0548 Cep |212900.1+653921 |SR: | 14.2 | 14.7 | |V | | | | | |76012 GSC | +200549 |V0549 Cep |213001.0+614137 |SR: | 13.1 | 13.8 | |V | | | | | |76012 GSC | +200550 |V0550 Cep |213015.8+581739 |SR: | 12.0 | 12.6 | |V | | | | | |76012 GSC | +200551 |V0551 Cep |213043.9+584648 |SR: | 12.0 | 12.6 | |V | | | | | |76012 USNO | +200552 |V0552 Cep |213100.4+583915 |SR: | 13.2 | 13.8 | |V | | | | | |76012 GSC | +200553 |V0553 Cep |213103.5+675333 |SR: | 11.9 | 12.4 | |V | | | | | |76012 GSC | +200554 |V0554 Cep |213201.6+652118 |SR: | 13.5 | 14.1 | |V | | | | | |76012 GSC | +200555 |V0555 Cep |213202.9+650946 |SR: | 13.1 | 13.8 | |V | | | | | |76012 GSC | +200556 |V0556 Cep |213243.0+604253 |SR: | 12.5 | 13.6 | |V | | | | | |76054 GSC | +200557 |V0557 Cep |213323.1+564446 |SR: | 13.9 | 14.5 | |V | | | | | |76012 GSC | +200558 |V0558 Cep |213408.7+611423 |SR: | 13.7 | 14.5 | |V | | | | | |76054 GSC | +200559 |V0559 Cep |213508.0+625226 |SR: | 12.7 | 14.1 | |V | | | | | |76012 GSC | +200560 |V0560 Cep |213610.4+554111 |SR: | 11.8 | 12.4 | |V | | | | | |76012 GSC | +200561 |V0561 Cep |213657.8+565736 |SR: | 12.2 | 12.8 | |V | | | | | |76012 GSC | +200562 |V0562 Cep |213711.1+610456 |SR: | 12.8 | 13.6 | |V | | | | | |76054 GSC | +200563 |V0563 Cep |213723.1+631120 |SR: | 12.7 | 14.2 | |V | | | | | |76012 GSC | +200564 |V0564 Cep |213833.3+691840 |SR: | 10.7 | 11.4 | |V | | | | | |76012 GSC | +200565 |V0565 Cep |213859.9+614612 |SR: | 13.8 | 14.3 | |V | | | | | |76012 GSC | +200566 |V0566 Cep |213910.4+681612 |SR: | 12.5 | 13.0 | |V | | | | | |76012 GSC | +200567 |V0567 Cep |213925.6+675824 |SR: | 12.0 | 13.4 | |V | | | | | |76012 USNO | +200568 |V0568 Cep |213946.3+573936 |SR: | 11.6 | 12.2 | |V | | | | | |76012 GSC | +200569 |V0569 Cep |214004.7+555055 |SR: | 11.6 | 12.5 | |V | | | | | |76012 GSC | +200570 |V0570 Cep |214024.9+605043 |SR: | 12.3 | 12.8 | |V | | | | | |76054 GSC | +200571 |V0571 Cep |214050.0+554758 |SR: | 11.8 | 12.8 | |V | | | | | |76012 USNO | +200572 |V0572 Cep |214053.9+620504 |SR: | 13.0 | 13.5 | |V | | | | | |76012 GSC | +200573 |V0573 Cep |214116.6+664054 |SR: | 14.3 | 14.9 | |V | | | | | |76012 GSC | +200574 |V0574 Cep |214132.3+675247 |SR: | 11.7 | 12.3 | |V | | | | | |76012 GSC | +200575 |V0575 Cep |214149.0+583707 |SR: | 13.2 | 14.0 | |V | | | | | |76012 GSC | +200576 |V0576 Cep |214203.8+565425 |SR: | 13.1 | 13.6 | |V | | | | | |76012 GSC | +200577 |V0577 Cep |214243.3+614535 |SR: | 12.8 | 13.6 | |V | | | | | |76012 GSC | +200578 |V0578 Cep |214345.7+675312 |SR: | 11.4 | 12.0 | |V | | | | | |76012 GSC | +200579 |V0579 Cep |214442.1+674929 |SR: | 11.9 | 13.0 | |V | | | | | |76012 GSC | +200580 |V0580 Cep |214443.7+632132 |SR: | 12.0 | 13.2 | |V | | | | | |76012 GSC | +200581 |V0581 Cep |214510.9+574804 |SR: | 12.7 | 13.4 | |V | | | | | |76012 GSC | +200582 |V0582 Cep |214528.4+660017 |SR: | 11.8 | 12.4 | |V | | | | | |76012 GSC | +200583 |V0583 Cep |214549.8+681524 |SR: | 10.3 | 11.1 | |V | | | | | |76012 GSC | +200584 |V0584 Cep |214551.3+634917 |SR: | 12.8 | 13.6 | |V | | | | | |76012 GSC | +200585 |V0585 Cep |214552.5+633510 |SR: | 12.9 | 13.5 | |V | | | | | |76012 GSC | +200586 |V0586 Cep |214553.2+620016 |SR: | 12.0 | 12.9 | |V | | | | | |76012 GSC | +200587 |V0587 Cep |214554.9+591625 |SR: | 12.3 | 12.9 | |V | | | | | |76012 GSC | +200588 |V0588 Cep |214629.4+590120 |SR: | 13.3 | 14.3 | |V | | | | | |76012 GSC | +200589 |V0589 Cep |214656.3+612617 |SR: | 12.8 | 13.6 | |V | | | | | |76012 GSC | +200590 |V0590 Cep |214657.1+593448 |SR: | 13.6 | 14.2 | |V | | | | | |76012 GSC | +200591 |V0591 Cep |214822.4+685210 |SR: | 10.7 | 11.3 | |V | | | | | |76012 GSC | +200592 |V0592 Cep |214940.8+644930 |SR: | 11.8 | 12.3 | |V | | | | | |76012 GSC | +200593 |V0593 Cep |214951.1+560256 |SR: | 13.0 | 13.8 | |V | | | | | |76012 GSC | +200594 |V0594 Cep |215010.3+555456 |SR: | 12.3 | 13.0 | |V | | | | | |76012 GSC | +200595 |V0595 Cep |215031.3+691746 |SR: | 13.5 | 14.5 | |V | | | | | |76012 GSC | +200596 |V0596 Cep |215113.2+661745 |SR: | 12.4 | 14.0 | |V | | | | | |76012 GSC | +200597 |V0597 Cep |215142.3+610235 |SR: | 11.9 | 12.5 | |V | | | | | |76012 GSC | +200598 |V0598 Cep |215221.9+671809 |SR: | 13.6 | 14.3 | |V | | | | | |76012 GSC | +200599 |V0599 Cep |215304.9+650211 |SR: | 14.3 | 14.9 | |V | | | | | |76012 GSC | +200600 |V0600 Cep |215341.3+591733 |SR: | 11.83 |( 0.6 )| |V | | | | | |76054 GSC | +200601 |V0601 Cep |215428.7+565056 |SR: | 10.9 | 11.8 | |V | | | | | |76012 GSC | +200602 |V0602 Cep |215436.5+664524 |SR: | 13.6 | 14.3 | |V | | | | | |76012 GSC | +200603 |V0603 Cep |215456.8+663101 |SR: | 11.62 |( 0.5 )| |V | | | | | |76012 GSC | +200604 |V0604 Cep |215459.0+693034 |SR: | 11.7 | 12.2 | |V | | | | | |76012 GSC | +200605 |V0605 Cep |215514.0+564119 |SR: | 10.8 | 11.3 | |V | | | | | |76012 GSC | +200606 |V0606 Cep |215524.8+635322 |SR: | 13.0 | 13.7 | |V | | | | | |76012 USNO | +200607 |V0607 Cep |215527.3+611714 |SR: | 12.4 | 12.9 | |V | | | | | |76012 GSC | +200608 |V0608 Cep |215534.6+670807 |SR: | 12.9 | 13.8 | |V | | | | | |76012 GSC | +200609 |V0609 Cep |215534.7+595508 |SR: | 12.2 | 13.0 | |V | | | | | |76012 GSC | +200610 |V0610 Cep |215544.9+573921 |SR: | 12.5 | 13.6 | |V | | | | | |76012 GSC | +200611 |V0611 Cep |215611.2+580646 |SR: | 12.9 | 13.5 | |V | | | | | |76012 GSC | +200612 |V0612 Cep |215631.4+663605 |SR: | 12.3 | 13.2 | |V | | | | | |76012 GSC | +200613 |V0613 Cep |215659.4+564608 |SR: | 11.4 | 12.0 | |V | | | | | |76012 GSC | +200614 |V0614 Cep |215707.6+600040 |SR: | 12.8 | 13.7 | |* | | | | | |76057 USNO | +200615 |V0615 Cep |215726.3+670923 |SR: | 13.6 | 14.7 | |V | | | | | |76012 GSC | +200616 |V0616 Cep |215735.5+614607 |SR: | 12.2 | 12.8 | |V | | | | | |76012 GSC | +200617 |V0617 Cep |215736.0+573541 |SR: | 11.4 | 11.9 | |V | | | | | |76012 GSC | +200618 |V0618 Cep |215802.7+620014 |SR: | 12.8 | 13.4 | |V | | | | | |76012 GSC | +200619 |V0619 Cep |215817.1+660028 |SR: | 10.6 | 11.3 | |V | | | | | |76012 GSC | +200620 |V0620 Cep |215825.7+601722 |SR: | 12.6 | 13.3 | |V | | | | | |76012 GSC | +200621 |V0621 Cep |215829.2+635007 |SR: | 11.5 | 12.0 | |V | | | | | |76012 GSC | +200622 |V0622 Cep |215855.9+581947 |SR: | 13.0 | 13.5 | |V | | | | | |76012 GSC | +200623 |V0623 Cep |215906.2+604054 |SR: | 12.1 | 12.6 | |V | | | | | |76012 GSC | +200624 |V0624 Cep |215914.6+642217 |SR: | 13.3 | 14.5 | |V | | | | | |76012 GSC | +200625 |V0625 Cep |215935.2+564832 |SR: | 11.5 | 12.5 | |V | | | | | |76012 GSC | +200626 |V0626 Cep |215938.5+642717 |SR: | 10.8 | 11.5 | |V | | | | | |76012 GSC | +200627 |V0627 Cep |215940.6+635928 |SR: | 13.2 | 13.8 | |V | | | | | |76012 GSC | +200628 |V0628 Cep |220011.5+605134 |SR: | 11.6 | 12.2 | |V | | | | | |76012 GSC | +200629 |V0629 Cep |220024.4+555241 |SR: | 10.7 | 11.7 | |V | | | | | |76012 GSC | +200630 |V0630 Cep |220027.0+675945 |SR: | 13.2 | 14.2 | |V | | | | | |76012 GSC | +200631 |V0631 Cep |220043.4+650348 |SR: | 13.9 | 14.5 | |V | | | | | |76012 GSC | +200632 |V0632 Cep |220106.6+582541 |SR: | 12.7 | 13.3 | |V | | | | | |76012 USNO | +200633 |V0633 Cep |220148.2+611730 |SR: | 13.8 | 14.5 | |V | | | | | |76012 GSC | +200634 |V0634 Cep |220227.6+661247 |SR: | 11.4 | 12.5 | |V | | | | | |76012 GSC | +200635 |V0635 Cep |220253.1+565010 |SR: | 10.9 | 12.2 | |V | | | | | |76012 GSC | +200636 |V0636 Cep |220358.4+593911 |SR: | 11.0 | 11.8 | |* | | | | | |76057 GSC | +200637 |V0637 Cep |220358.8+551656 |SR: | 13.8 | 14.5 | |V | | | | | |76054 GSC | +200638 |V0638 Cep |220428.8+683956 |SR: | 10.9 | 11.6 | |V | | | | | |76012 GSC | +200639 |V0639 Cep |220439.2+533530 |SR: | 12.7 | 14.0 | |* | | | | | |76197 USNO | +200640 |V0640 Cep |220558.0+605955 |SR: | 11.8 | 12.9 | |V | | | | | |76012 GSC | +200641 |V0641 Cep |220605.0+554152 |SR: | 12.3 | 13.1 | |V | | | | | |76012 GSC | +200642 |V0642 Cep |220605.3+584637 |SR: | 13.1 | 13.7 | |V | | | | | |76012 GSC | +200643 |V0643 Cep |220606.1+591529 |SR: | 11.7 | 12.4 | |V | | | | | |76012 GSC | +200644 |V0644 Cep |220621.1+593939 |SR: | 10.7 | 11.7 | |V | | | | | |76012 GSC | +200645 |V0645 Cep |220637.9+594121 |SRA | 11.0 | 13.0 | |V | | | | | |76240 GSC | +200646 |V0646 Cep |220844.0+611216 |SR: | 11.8 | 12.8 | |V | | | | | |76012 GSC | +200647 |V0647 Cep |220849.4+551546 |SR: | 14.5 | 15.2 | |V | | | | | |76054 GSC | +200648 |V0648 Cep |220932.2+553224 |SR: | 12.6 | 13.8 | |V | | | | | |76054 GSC | +200649 |V0649 Cep |220947.6+610937 |SR: | 12.4 | 13.2 | |V | | | | | |76012 GSC | +200650 |V0650 Cep |221229.8+554502 |SR: | 12.8 | 13.7 | |V | | | | | |76054 GSC | +200651 |V0651 Cep |221256.2+594650 |SR: | 11.3 | 12.3 | |V | | | | | |76012 GSC | +200652 |V0652 Cep |221415.5+592201 |SR: | 11.6 | 12.3 | |V | | | | | |76012 GSC | +200653 |V0653 Cep |221507.3+585247 |SR: | 13.5 | 14.2 | |V | | | | | |76012 GSC | +200654 |V0654 Cep |221514.9+574656 |SR: | 11.5 | 12.3 | |V | | | | | |76012 GSC | +200655 |V0655 Cep |221525.8+573243 |SR: | 12.9 | 13.6 | |V | | | | | |76012 GSC | +200656 |V0656 Cep |221721.6+575805 |SR: | 12.1 | 12.8 | |V | | | | | |76012 GSC | +200657 |V0657 Cep |221800.6+623656 |SR: | 12.5 | 13.2 | |V | | | | | |76012 GSC | +200658 |V0658 Cep |221807.6+570138 |SR: | 11.6 | 12.7 | |V | | | | | |76054 GSC | +200659 |V0659 Cep |221818.6+673937 |SR: | 11.8 | 13.0 | |V | | | | | |76012 GSC | +200660 |V0660 Cep |221907.6+594459 |SR: | 13.7 |< 14.4 | |V | | | | | |76012 GSC | +200661 |V0661 Cep |222108.7+692757 |SR: | 11.8 | 12.3 | |V | | | | | |76012 GSC | +200662 |V0662 Cep |222129.2+604312 |SR: | 13.1 | 13.8 | |V | | | | | |76012 GSC | +200663 |V0663 Cep |222257.5+583654 |SR: | 12.5 | 13.0 | |V | | | | | |76012 GSC | +200664 |V0664 Cep |222351.7+584417 |SR: | 12.4 | 13.4 | |V | | | | | |76012 GSC | +200665 |V0665 Cep |222459.2+692033 |SR: | 14.2 | 14.7 | |V | | | | | |76012 GSC | +200666 |V0666 Cep |222512.3+593837 |SR: | 12.3 | 12.8 | |V | | | | | |76012 GSC | +200667 |V0667 Cep |222548.3+605144 |SR: | 12.6 | 13.1 | |V | | | | | |76012 GSC | +200668 |V0668 Cep |222550.2+582332 |SR: | 12.8 | 13.5 | |V | | | | | |76012 GSC | +200669 |V0669 Cep |222638.7+611332 |SR: | 12.59 |( 0.5 )| |V | | | | | |76012 GSC | +200670 |V0670 Cep |222722.5+642910 |SR: | 13.5 | 14.1 | |V | | | | | |76012 GSC | +200671 |V0671 Cep |222728.9+584203 |SR: | 12.3 | 13.2 | |V | | | | | |76012 GSC | +200672 |V0672 Cep |222729.5+592602 |SR: | 11.2 | 11.7 | |V | | | | | |76012 GSC | +200673 |V0673 Cep |222813.2+574731 |SR: | 12.2 | 12.7 | |V | | | | | |76054 GSC | +200674 |V0674 Cep |222817.4+591404 |SR: | 10.6 | 11.7 | |V | | | | | |76012 GSC | +200675 |V0675 Cep |222831.1+602749 |SR: | 12.0 | 12.9 | |V | | | | | |76054 GSC | +200676 |V0676 Cep |222847.2+583219 |SR: | 12.4 | 13.3 | |V | | | | | |76012 GSC | +200677 |V0677 Cep |222853.7+580109 |SR: | 12.3 | 13.0 | |V | | | | | |76054 GSC | +200678 |V0678 Cep |222913.5+565548 |SR: | 12.9 | 13.5 | |V | | | | | |76054 GSC | +200679 |V0679 Cep |222937.8+593016 |SR: | 12.2 | 12.9 | |V | | | | | |76012 GSC | +200680 |V0680 Cep |222950.2+651923 |SR: | 13.4 | 14.7 | |V | | | | | |76012 GSC | +200681 |V0681 Cep |223002.3+570313 |SR: | 11.7 | 13.0 | |V | | | | | |76054 GSC | +200682 |V0682 Cep |223141.1+590044 |SR: | 11.3 | 12.1 | |V | | | | | |76012 GSC | +200683 |V0683 Cep |223150.2+565949 |SR: | 13.0 | 13.6 | |V | | | | | |76054 GSC | +200684 |V0684 Cep |223157.2+601352 |SR: | 12.9 | 13.6 | |V | | | | | |76054 GSC | +200685 |V0685 Cep |223232.3+593406 |SR: | 11.64 |( 0.6 )| |V | | | | | |76012 GSC | +200686 |V0686 Cep |223337.3+633510 |SR: | 11.5 | 12.0 | |V | | | | | |76012 GSC | +200687 |V0687 Cep |223355.2+631853 |SR: | 11.8 | 12.3 | |V | | | | | |76012 GSC | +200688 |V0688 Cep |223409.5+585927 |SR: | 12.7 | 13.3 | |V | | | | | |76012 GSC | +200689 |V0689 Cep |223411.9+633248 |SR: | 13.2 | 13.8 | |V | | | | | |76012 GSC | +200690 |V0690 Cep |223416.6+675528 |SR: | 10.8 | 11.3 | |V | | | | | |76012 GSC | +200691 |V0691 Cep |223430.8+680010 |SR: | 12.9 | 13.7 | |V | | | | | |76012 GSC | +200692 |V0692 Cep |223748.6+631541 |SR: | 12.8 | 13.7 | |V | | | | | |76012 GSC | +200693 |V0693 Cep |223905.4+651721 |SR: | 12.8 | 13.6 | |V | | | | | |76012 GSC | +200694 |V0694 Cep |223935.4+660248 |SR: | 13.2 | 13.7 | |V | | | | | |76012 GSC | +200695 |V0695 Cep |224139.0+675957 |SR: | 14.1 | 14.8 | |V | | | | | |76012 USNO | +200696 |V0696 Cep |224318.1+672734 |SR: | 10.4 | 11.2 | |V | | | | | |76012 GSC | +200697 |V0697 Cep |224528.4+675839 |SR: | 12.1 | 12.6 | |V | | | | | |76012 GSC | +200698 |V0698 Cep |224552.4+574307 |EA | 12.75 | 13.50 | |V | | | | | |76244 76244| +200699 |V0699 Cep |224600.7+574650 |EW | 11.60 | 11.95 | |V | | | | | |76244 76244| +200700 |V0700 Cep |224608.6+670256 |SR: | 13.0 | 13.7 | |V | | | | | |76012 GSC | +200701 |V0701 Cep |224730.9+671149 |SR: | 11.2 | 11.7 | |V | | | | | |76012 GSC | +200702 |V0702 Cep |235005.2+680204 |GDOR | 13.74 | 13.78 | |V | | | | | |76253 76253| +200703 |V0703 Cep |205437.6+560534 |M | 16.4 | 18.9 | |I | | | | | |77012 77013| +200704 |V0704 Cep |212309.2+554915 |M | 9.0 | 11.7 | |I | | | | | |77012 77013| +200705 |V0705 Cep |214652.6+601349 |M | 14.3 | 17.4 | |I | | | | | |77012 77013| +200706 |V0706 Cep |220458.2+540740 |SR: | 13.8 | 14.5 | |V | | | | | |77004 GSC | +200707 |V0707 Cep |224059.8+694615 |M | 9.9 | 12.4 | |I | | | | | |77012 77013| +200708 |V0708 Cep |224814.1+695829 |M | 7.7 | 11.0 | |I | | | | | |77012 77013| +200709 |V0709 Cep |225809.1+662112 |N: | 12.63 | 20.6 | |* | | | | | |77206 77207| +200710 |V0710 Cep |230446.7+640525 |EB | 7.41 | 7.75 | |V | | | | | |77208 DM | +200711 |V0711 Cep *|230515.0+632345 |EA | 8.95 |( 0.23 )| |V | | | | | |77209 77209| +200712 |V0712 Cep |234833.2+685014 |LB | 13.1 | 14.9 | |V | | | | | |77004 GSC | +200713 |V0713 Cep |204638.7+603803 |UG | 15.3 | 18.8 | |B | | | | | |78297 USNO | +200714 |V0714 Cep |205005.7+611453 |M: | 13.2 |< 15.1 | |* |51475 | | 290. : | | |78040 2MASS| +200715 |V0715 Cep |210654.2+613100 |LB: | 12.3 | 13.1 | |* | | | | | |78006 2MASS| +200716 |V0716 Cep |212703.5+592443 |M | 12.0 |< 17. | |* |51454 | | 330. : | | |78006 2MASS| +200717 |V0717 Cep |214333.1+572526 |M: | 13.2 | 16.3 | |* | | | | | |78006 2MASS| +200718 |V0718 Cep |214854.8+590817 |SR: | 13.6 | 15.8 | |* | | | | | |78006 2MASS| +200719 |V0719 Cep |215125.3+592845 |M: | 12.9 | 16.0 | |* | | | | | |78006 2MASS| +200720 |V0720 Cep |215600.9+561928 |SR: | 13.1 |< 15.2 | |* | | | | | |78006 2MASS| +200721 |V0721 Cep |215720.4+553540 |SR | 13.8 |< 15.2 | |* |51550 | | 300. : | | |78006 2MASS| +200722 |V0722 Cep |215912.4+585852 |SR | 12.5 | 13.3 | |* | | | 180. : | | |78006 2MASS| +200723 |V0723 Cep |220012.4+593117 |M: | 11.4 | 14.4 | |* | | | | | |78006 2MASS| +200724 |V0724 Cep |220431.1+593059 |SR: | 13.1 | 14.7 | |* | | | | | |78006 2MASS| +200725 |V0725 Cep |220516.1+590755 |SR | 13.0 | 14.7 | |* |51545 | | 222. | | |78006 2MASS| +200726 |V0726 Cep |220802.5+584847 |M | 12.2 |< 15. | |R |51565 | | 320. : | | |78006 2MASS| +200727 |V0727 Cep *|221225.9+545322 |EA | 14.12 | 14.56 | 14.48 |V |53675.1063 | | 6.6490 |03 | |78027 USNO | +200728 |V0728 Cep |221749.2+591610 |SR: | 11.0 | 12.5 | |* | | | | | |78006 2MASS| +200729 |V0729 Cep |222608.7+571548 |SR: | 12.7 | 14.0 | |* | | | | | |78006 2MASS| +200730 |V0730 Cep |225403.8+585401 |ISA | 12.6 | 15.9 | |V | | | | |B2e |78304 78304| +200731 |V0731 Cep |233743.3+641812 |EA | 10.53 |( 0.85 * )| |V |52591.2773 | | 6.068697 |06 | |78003 78308| +200732 |V0732 Cep *|204248.8+551936 |SRA | 12.6 | 16.0 | |V |41605. | | 395. |50 : |C(N) |03814 03814| +200733 |V0733 Cep |225333.3+623224 |FU: | 15.7 |< 20. | |R | | | | | 79143 2MASS| +200734 |V0734 Cep |000738.6+760828 |EA | 11.05 | 11.42 | 11.40 |* |51482.647 | | 3.7659 |07 |A3IV |79003 GSC | +200735 |V0735 Cep |210223.9+600442 |EA | 11.39 | 11.87 | 11.82 |V |51481.644 | | 2.5035 |17 | |79009 GSC | +200736 |V0736 Cep |211629.1+552310 |EW | 9.96 | 10.42 | 10.40 |* |51288.827 | | 0.85785 | |F5 |79004 DM | +200737 |V0737 Cep *|212348.3+633328 |EW | 11.95 | 12.33 | 12.30 |* |51448.689 | | 0.298755 | | |79004 GSC | +200738 |V0738 Cep *|212955.1+585616 |EA | 10.00 | 10.29 | 10.25 |* |51428.659 | | 1.29827 |16 |B1:V |79004 DM | +200739 |V0739 Cep |213454.6+555632 |DCEP | 12.9 | 13.4 | |* |51525.4 | | 6.717 |30 | |79100 79138| +200740 |V0740 Cep |220432.9+801115 |RRAB | 12.9 | 14.1 | |* |51403.83 | | 0.48390 |14 | |79169 79016| +200741 |V0741 Cep *|221348.1+671026 |EA | 9.09 | 9.25 | 9.17 |V |51450.602 | | 6.00911 |04 |B8 |79006 DM | +200742 |V0742 Cep |221724.3+705342 |RRAB | 12.6 | 13.7 | |* |51421.80 | | 0.43081 |11 | |79100 79054| +200743 |V0743 Cep *|221806.2+555416 |EA | 10.53 | 10.85 : | 10.8 : |* |51542.684 | | 4.6722 |14 : |B0III: |79004 GSC | +200744 |V0744 Cep |222405.0+684459 |EB | 12.20 | 12.54 | 12.40 |* |51426.642 | | 0.62455 | | |79009 79140| +200745 |V0745 Cep |223751.8+850615 |EA | 13.10 | 13.85 | |* |51353.855 | | 2.91935 |10 | |79003 79112| +200746 |V0746 Cep |224220.5+655443 |EA | 11.40 | 11.85 | 11.45 |* |51338.882 | | 1.25996 |15 | |79009 GSC | +200747 |V0747 Cep *|000146.9+673025 |EA | 9.97 | 10.13 | 10.05 |V |54400.5322 | | 5.33146 |06 |O5V(f)n |80009 80009| NL80_1 +200748 |V0748 Cep *|000631.1+791142 |EA | 13.28 | 14.8 | 13.3 |* |51465.569 | | 2.50931 |10 | |80013 GSC | NL80_1 +200749 |V0749 Cep *|000748.6+704022 |EA | 10.62 | 11.0 | 10.9 |* |51358.71 | | 5.1398 |08 | |80013 GSC | NL80_1 +200750 |V0750 Cep *|001450.9+714945 |EA | 11.42 | 11.86 | 11.63 : |* |51465.650 | | 18.8805 |04 | |80023 GSC | NL80_1 +200751 |V0751 Cep *|001452.5+753918 |EB | 13.4 | 14.0 | 13.7 |* |51322.565 | | 1.16374 | | |80024 80024| NL80_1 +200752 |V0752 Cep *|001456.1+721831 |EW | 13.05 | 13.5 | 13.4 |* |51359.030 | | 0.45033 | | |80025 80025| NL80_1 +200753 |V0753 Cep *|001542.4+780029 |EA | 11.22 | 11.51 | 11.45 |* |51454.66 | | 68.13 |09 | |80013 GSC | NL80_1 +200754 |V0754 Cep *|001542.6+751155 |EW | 12.0 | 12.3 | 12.25 |* |51335.008 | | 0.40905 | | |80025 80025| NL80_1 +200755 |V0755 Cep *|001824.2+730724 |EW | 12.63 | 12.95 | 12.95 |* |51449.762 | | 0.39217 | | |80011 GSC | NL80_1 +200756 |V0756 Cep *|002002.6+805044 |EA | 13.4 | 14.30 | 14.20 |* |51454.597 | | 1.72267 |08 | |80013 GSC | NL80_1 +200757 |V0757 Cep *|002024.9+781428 |EW | 14.0 | 14.8 | 14.7 |* |51606.822 | | 0.34385 | | |80025 80025| NL80_1 +200758 |V0758 Cep *|002342.0+832158 |EA | 12.95 | 13.7 | 13.5 |* |51408.840 | | 3.1778 |09 : | |80024 80024| NL80_1 +200759 |V0759 Cep *|002920.7+844545 |RRC: | 15.70 | 15.96 | |R | | | 0.33023 | | |80041 80041| NL80_1 +200760 |V0760 Cep *|003348.9+852922 |EW | 14.87 | 15.30 | 15.15 |R |52607.1130 | | 0.3164920 | | |80041 80041| NL80_1 +200761 |V0761 Cep *|003405.3+845159 |RRC | 13.88 | 14.12 | |R | | | 0.23626 |50 | |80041 80041| NL80_1 +200762 |V0762 Cep |003640.0+850318 |BY | 14.71 | 14.75 | |R | | | 20.7782 | | |80050 2MASS| NL80_1 +200763 |V0763 Cep |003906.0+851840 |BY | 15.76 | 15.80 | |R | | | 9.8833 | | |80050 2MASS| NL80_1 +200764 |V0764 Cep *|004410.2+845413 |EW | 17.30 | 17.86 | 17.86 |R |52605.0182 | | 0.2785467 | | |80041 80041| NL80_1 +200765 |V0765 Cep |004414.2+851634 |BY | 16.93 | 17.03 | |R | | | 7.0235 | | |80050 2MASS| NL80_1 +200766 |V0766 Cep |004430.7+850129 |BY | 17.78 | 17.87 | |R | | | 8.5905 | | |80050 2MASS| NL80_1 +200767 |V0767 Cep *|004436.6+851423 |EA | 14.83 | 15.34 | 15.34 |V | | | 1.35796 |21 | |80001 80058| NL80_1 +200768 |V0768 Cep |004440.6+851521 |BY | 14.51 | 14.52 | |R | | | 23.6631 : | | |80050 GSC | NL80_1 +200769 |V0769 Cep |004452.2+851554 |BY | 15.31 | 15.34 | |R | | | 10.0506 | | |80050 2MASS| NL80_1 +200770 |V0770 Cep |004518.7+851837 |BY | 16.14 | 16.20 | |R | | | 5.6293 | | |80050 2MASS| NL80_1 +200771 |V0771 Cep |004653.9+851437 |BY | 14.01 | 14.03 | |R | | | 1.2996 | | |80050 2MASS| NL80_1 +200772 |V0772 Cep |004704.3+851502 |BY | 16.53 | 16.61 | |R | | | 3.2064 | | |80050 2MASS| NL80_1 +200773 |V0773 Cep |004711.8+851331 |BY | 14.08 | 14.10 | |R | | | 4.5295 | | |80050 2MASS| NL80_1 +200774 |V0774 Cep |004825.9+851223 |BY | 16.08 | 16.12 | |R | | | 23.3154 | | |80050 2MASS| NL80_1 +200775 |V0775 Cep *|004846.5+851727 |EB | 14.00 | 14.23 | 14.05 |R |52606.0472 | | 0.68586 | | |80041 80041| NL80_1 +200776 |V0776 Cep |004855.0+851713 |BY | 16.22 | 16.26 | |R | | | 13.5641 | | |80050 2MASS| NL80_1 +200777 |V0777 Cep *|004922.3+845258 |EW | 16.31 | 16.68 | 16.56 |R |52607.1152 | | 0.3863448 | | |80041 80041| NL80_1 +200778 |V0778 Cep |004925.3+850118 |BY | 18.25 | 18.42 | |R | | | 2.3476 | | |80050 2MASS| NL80_1 +200779 |V0779 Cep |004936.5+850626 |BY | 16.27 | 16.32 | |R | | | 11.6443 | | |80050 2MASS| NL80_1 +200780 |V0780 Cep |005002.8+852123 |BY | 15.12 | 15.23 | |R | | | 1.3836 | | |80050 2MASS| NL80_1 +200781 |V0781 Cep |005044.7+851139 |BY | 16.78 | 16.86 | |R | | | 3.1596 | | |80050 80041| NL80_1 +200782 |V0782 Cep *|005115.0+852451 |EW | 15.56 | 15.68 | 15.58 |R |52607.0887 | | 0.3605843 | | |80041 80041| NL80_1 +200783 |V0783 Cep |005115.9+850948 |BY | 14.65 | 14.68 | |R | | | 8.4529 | | |80050 GSC | NL80_1 +200784 |V0784 Cep *|005208.8+851906 |EB | 17.19 |( 0.15 )|( 0.07 )|V | | | 0.3040 | | |80050 2MASS| NL80_1 +200785 |V0785 Cep *|005237.7+851035 |EA | 14.58 | 15.20 | 14.52 |R |51605.2429 | | 2.8136 |12 | |80041 80041| NL80_1 +200786 |V0786 Cep |005246.0+851215 |BY | 15.52 |( 0.06 )| |R | | | 1.1513 | | |80050 2MASS| NL80_1 +200787 |V0787 Cep |005420.2+852401 |BY | 18.74 | 18.92 | |R | | | 2.4354 | | |80050 G2.3 | NL80_1 +200788 |V0788 Cep |005543.6+852401 |BY | 15.67 |( 0.08 )| |R | | | 6.2921 | | |80050 2MASS| NL80_1 +200789 |V0789 Cep *|005932.2+845140 |EW | 14.55 | 14.86 | 14.80 |R |52605.0779 | | 0.3541034 | | |80041 80041| NL80_1 +200790 |V0790 Cep *|010150.7+852400 |EW | 12.70 | 12.80 | 12.80 |R |52605.0041 | | 0.3214957 | | |80041 80041| NL80_1 +200791 |V0791 Cep *|010739.7+852400 |EW | 16.99 | 17.21 | 17.19 |i |52605.0052 | | 0.2887089 | | |80041 80041| NL80_1 +200792 |V0792 Cep *|010801.0+844725 |DSCT: | 13.17 | 13.66 | |R | | | 0.13331 |20 |F |80041 80041| NL80_1 +200793 |V0793 Cep *|010831.8+851254 |EW | 15.98 | 16.33 | 16.31 |R |51811.2954 | | 0.3072132 | | |80041 80041| NL80_1 +200794 |V0794 Cep *|011359.0+844526 |DSCTC: | 12.5 |( 0.04 )| |V | | | 0.0738 | | |80076 GSC | NL80_1 +200795 |V0795 Cep |012431.0+850107 |RRC | 11.48 | 11.68 | |* |51414.69 | | 0.36697 |50 |F0: |80083 GSC | NL80_1 +200796 |V0796 Cep *|014136.4+800419 |EW | 12.2 | 12.85 | 12.85 |V |53433.6360 | | 0.39290 | | |80210 80210| NL80_1 +200797 |V0797 Cep *|014247.6+800752 |EW | 14.6 | 15.0 | 14.95 |R |53715.410 | | 0.270416 | | |80093 80093| NL80_1 +200798 |V0798 Cep *|015434.8+792809 |EA | 11.90 | 12.50 | 12.43 |* |51607.605 | | 16.080 | | |80023 GSC | NL80_1 +200799 |V0799 Cep |015538.0+810709 |LB | 10.23 | 10.67 | |* | | | | | |80070 80070| NL80_1 +200800 |V0800 Cep *|021759.9+811006 |EA | 13.0 | 13.7 | 13.7 |* |51486.547 | | 1.2180 |12 | |80107 80107| NL80_1 +200801 |V0801 Cep *|022126.6+781021 |EA | 12.9 | 13.4 : | 13.1 : |* |51542.57 | | 2.0153 |10 | |80013 GSC | NL80_1 +200802 |V0802 Cep *|023425.0+793739 |EW | 13.3 | 13.7 | 13.65 |* |51455.860 | | 0.34698 | | |80120 80120| NL80_1 +200803 |V0803 Cep *|025618.2+821824 |EW | 13.8 | 14.2 | 14.2 |* |51501.722 | | 0.41947 | | |80085 80085| NL80_1 +200804 |V0804 Cep *|025841.3+844904 |EW | 12.94 | 13.45 | 13.45 |* |51378.632 | | 0.347592 | | |80013 GSC | NL80_1 +200805 |V0805 Cep *|033111.5+790016 |EA | 12.37 | 12.87 | 12.46 |* |51598.585 | | 6.2966 |03 : | |80013 GSC | NL80_1 +200806 |V0806 Cep *|041937.6+803546 |EA | 11.09 | 11.35 | 11.34 |* |51473.578 | | 1.35263 |10 | |80013 GSC | NL80_1 +200807 |V0807 Cep |045653.3+852823 |CWA | 12.7 | 13.3 | |* |51353.8 | | 20.95 | | |80177 GSC | NL80_1 +200808 |V0808 Cep *|052045.9+851156 |EB | 11.55 | 11.92 | 11.78 : |* |51352.350 | | 0.484564 | | |80013 GSC | NL80_1 +200809 |V0809 Cep |230804.7+604652 |N | 11.27 |< 20. | |V |56327. |2013 | | |pec(Nova) |80636 80637| NL80_3 +200810 |V0810 Cep *|200204.1+613312 |EB | 13.1 | 13.63 | 13.38 |* |54474.3121 | | 0.584566 | | |80540 80540| NL80_3 +200811 |V0811 Cep |200416.8+610532 |EW | 14.2 | 14.9 | 14.9 |* |51550.8745 | | 0.250762 | | |80541 80541| NL80_3 +200812 |V0812 Cep |200523.6+613445 |EA | 12.9 | 13.2 | 12.95 |* |54476.3320 | | 2.203 |05 | |80202 80202| NL80_3 +200813 |V0813 Cep |200829.8+605735 |EW | 13.15 | 13.5 | 13.4 |* |51299.605 | | 0.338893 | | |80542 80542| NL80_3 +200814 |V0814 Cep |201138.6+613349 |EA | 11.48 | 11.90 | 11.56 |* |51615.805 | | 1.72032 |11 | |80011 GSC | NL80_3 +200815 |V0815 Cep |201357.9+612419 |SRB | 10.8 | 11.25 | |* | | | 69. : | | |80539 80539| NL80_3 +200816 |V0816 Cep |202612.0+755601 |EW | 13.45 | 14.1 | 14.0 |* |51318.641 | | 0.311412 | | |80526 80526| NL80_3 +200817 |V0817 Cep |202924.7+602944 |EW | 15.52 | 16.32 | 16.28 |Rc|52700.329 | | 0.4511 | | |80554 80554| NL80_3 +200818 |V0818 Cep *|202935.2+603834 |RRAB | 15.85 | 16.68 | |Rc|52700.46 | | 0.5668 |15 | |80554 80554| NL80_3 +200819 |V0819 Cep |203001.4+604603 |EW | 15.70 | 16.00 | 15.97 |Rc|52700.187 | | 0.3601 | | |80554 80554| NL80_3 +200820 |V0820 Cep |203004.4+603433 |EW | 17.80 | 18.51 | 18.42 |Rc|52700.13 | | 0.2946 | | |80554 80554| NL80_3 +200821 |V0821 Cep *|203016.2+603632 |EW | 17.30 | 18.09 | 17.95 |Rc|52700.025 | | 0.2419 | | |80554 80554| NL80_3 +200822 |V0822 Cep *|203240.4+604541 |DSCT: | 17.52 | 17.74 | |Rc| | | 0.11142 |50 | |80554 80554| NL80_3 +200823 |V0823 Cep |203245.7+603555 |SR: | 13.63 | 14.20 | |Rc| | | 95. : | | |80554 80554| NL80_3 +200824 |V0824 Cep |203302.1+604324 |EA: | 15.76 | 16.10 | 15.86 |Rc|52700.185 | | 0.3379 |24 : | |80554 80554| NL80_3 +200825 |V0825 Cep |203316.0+604424 |BY: | 16.88 | 17.24 | |Rc| | | 1.143 | | |80554 80554| NL80_3 +200826 |V0826 Cep |203322.8+603714 |EW | 16.53 | 17.04 | 17.00 |Rc|52700.15 | | 0.2951 | | |80554 80554| NL80_3 +200827 |V0827 Cep |203707.7+633915 |UG | 16.4 | 19.7 | |* | | | | | |80556 80556| NL80_3 +200828 |V0828 Cep |204605.7+554201 |SR | 11.10 | 11.30 | |* | | | 62. | | |80546 GSC | NL80_3 +200829 |V0829 Cep |204905.1+701920 |EW | 14.15 | 14.8 | 14.7 |* |51330.632 | | 0.336323 | | |80526 80526| NL80_3 +200830 |V0830 Cep |205443.7+695958 |EW | 13.4 | 14.85 | 13.8 |* |51325.650 | | 0.260118 | | |80526 80526| NL80_3 +200831 |V0831 Cep |205515.9+605202 |LB: | 12.4 | 12.9 | |* | | | | | |80062 2MASS| NL80_3 +200832 |V0832 Cep |205526.1+613528 |RS | 12.2 | 12.4 | |* | | | 5.8098 | | |80539 80539| NL80_3 +200833 |V0833 Cep |205541.6+624435 |EB | 10.12 | 10.4 | 10.23 |* |51459.518 | | 0.707009 | | |80526 80526| NL80_3 +200834 |V0834 Cep |205721.5+553004 |EB | 12.9 | 13.4 | 13.35 |* |51323.843 | | 1.1232 | | |80526 80526| NL80_3 +200835 |V0835 Cep *|210137.6+620041 |EW: | 12.6 | 12.95 | 12.9 |* |51448.943 | | 0.45224 | | |80539 80539| NL80_3 +200836 |V0836 Cep |210145.4+614009 |EW | 13.25 | 13.6 | 13.55 |* |51508.736 | | 0.418772 | | |80526 80526| NL80_3 +200837 |V0837 Cep |210211.4+595319 |EW | 12.8 | 13.0 | 13.0 |* |51475.581 | | 0.43806 | | |80539 80539| NL80_3 +200838 |V0838 Cep |210237.4+625055 |EB | 12.5 | 13.05 | 12.65 |* |51502.746 | | 0.531977 | | |80526 80526| NL80_3 +200839 |V0839 Cep *|210331.7+592550 |EA | 9.93 | 10.24 | 10.19 |* |51448.645 | | 9.9634 |08 |B8 |80023 DM | NL80_3 +200840 |V0840 Cep |210714.7+641715 |SR | 13.1 | 13.9 | |* | | | 91. | | |80001 USNO | NL80_3 +200841 |V0841 Cep |211132.0+592724 |EA | 13.4 | 14.1 | 13.55 |* |51449.827 | | 2.7549 |10 | |80013 GSC | NL80_3 +200842 |V0842 Cep |211140.7+764010 |EW | 14.0 | 14.7 | 14.6 |* |51330.685 | | 0.288957 | | |80526 80526| NL80_3 +200843 |V0843 Cep |211347.6+780546 |EW | 13.35 | 14.0 | 13.9 |* |51361.811 | | 0.493470 | | |80526 80526| NL80_3 +200844 |V0844 Cep |211422.8+821831 |RS | 12.5 | 12.85 | |* | | | 5.186 | | |80539 80539| NL80_3 +200845 |V0845 Cep |211531.2+780055 |EW: | 14.3 | 15.2 | 14.9 |* |51475.790 | | 0.386163 | | |80526 80526| NL80_3 +200846 |V0846 Cep |211816.0+642508 |SR | 12.6 | 13.1 | |* | | | 95. | | |80001 USNO | NL80_3 +200847 |V0847 Cep |211912.1+735558 |SRB | 10.8 | 11.1 | |* | | | 45. | | |80100 GSC | NL80_3 +200848 |V0848 Cep |212050.2+571335 |SR | 10.4 | 10.8 | |* | | | 58. | | |80001 USNO | NL80_3 +200849 |V0849 Cep |212527.2+704002 |EA | 10.85 | 11.45 | 11.25 : |* |51414.125 | | 2.02958 |10 | |80107 80107| NL80_3 +200850 |V0850 Cep *|212952.1+645517 |EA | 9.98 | 10.6 | 10.31 : |V |51475.710 | | 12.922 |03 |A0 |80023 DM | NL80_3 +200851 |V0851 Cep |213022.7+701929 |LB | 12.3 | 12.7 | |* | | | | | |80070 80070| NL80_3 +200852 |V0852 Cep |213253.9+703743 |RS | 12.05 | 12.33 | |* | | | 22.7 | | |80069 80069| NL80_3 +200853 |V0853 Cep |213317.1+701856 |EW | 13.7 | 14.2 | 14.2 |* |51459.706 | | 0.61543 | | |80052 80052| NL80_3 +200854 |V0854 Cep |213452.4+733647 |EA | 13.25 | 13.85 | 13.75 |* |51460.917 | | 1.13858 |10 | |80107 80107| NL80_3 +200855 |V0855 Cep |213501.0+703104 |EW | 13.65 | 14.05 | 14.0 |* |51461.856 | | 0.36986 | | |80085 80085| NL80_3 +200856 |V0856 Cep |213922.8+794208 |EW | 12.25 | 12.5 | 12.5 |* |51401.864 | | 0.314009 | | |80580 80580| NL80_3 +200857 |V0857 Cep |214541.7+775634 |RRAB | 13.45 | 14.0 | |* |51337.86 | | 0.56999 |19 | |80083 GSC | NL80_3 +200858 |V0858 Cep |214745.0+725746 |LB | 12.1 | 12.5 | |* | | | | | |80539 80539| NL80_3 +200859 |V0859 Cep |214759.7+571225 |DCEP | 12.85 | 13.2 | |* |51580.65 | | 8.18 | | |80566 80566| NL80_3 +200860 |V0860 Cep |214820.7+553901 |DCEP | 12.85 | 13.3 | |* |51447.70 | | 5.04 | | |80566 80566| NL80_3 +200861 |V0861 Cep |214902.8+830322 |RRAB | 13.70 | 14.42 | |* |51414.73 | | 0.45571 | | |80026 GSC | NL80_3 +200862 |V0862 Cep |215044.2+800816 |EA | 11.95 | 12.3 | 12.3 |* |51363.535 | | 1.28875 |16 | |80584 80584| NL80_3 +200863 |V0863 Cep |215233.0+654734 |EB | 12.5 | 12.8 | 12.7 |* |51277.661 | | 1.17652 | | |80539 80539| NL80_3 +200864 |V0864 Cep |215309.7+704924 |EB | 14.15 | 14.75 : | 14.6 |* |51502.447 | | 1.58181 | | |80539 80539| NL80_3 +200865 |V0865 Cep |215546.9+561237 |M | 13.0 |< 16. | |* |53290. :| | 310. : | | |80586 USNO | NL80_3 +200866 |V0866 Cep |215704.3+681531 |EW | 13.4 | 14.0 | 13.85 |* |51358.668 | | 0.325898 | | |80580 80580| NL80_3 +200867 |V0867 Cep |215735.0+711829 |LB: | 10.1 | 10.7 | |* | | | | | |80100 GSC | NL80_3 +200868 |V0868 Cep |220202.8+564443 |EA | 13.35 | 13.82 | 13.78 |* |53687.0714 | | 1.1205 |14 | |80073 80073| NL80_3 +200869 |V0869 Cep |220336.1+551414 |SR | 11.4 | 11.8 | |* | | | 75. : | | |80001 USNO | NL80_3 +200870 |V0870 Cep |220426.6+615401 |EW | 10.93 | 11.17 | 11.15 |* |51299.985 | | 0.301067 | | |80013 GSC | NL80_3 +200871 |V0871 Cep |220634.3+565058 |SR | 12.2 | 12.7 | |* | | | 70. | | |80001 USNO | NL80_3 +200872 |V0872 Cep |221230.4+571733 |EW | 14.8 |( 0.44 )|( 0.34 )|R |49516.3664 | | 0.2800284 | | |80591 80591| NL80_3 +200873 |V0873 Cep *|221233.6+571558 |ACYG | 8.5 |( 0.04 )| |R | | | 7.273 | |B9Iab |80591 80591| NL80_3 +200874 |V0874 Cep *|221234.0+571529 |BCEP | 12.9 |( 0.03 )| |R | | | 0.202890 | |B3:V |80591 80591| NL80_3 +200875 |V0875 Cep |221301.2+832005 |EW | 12.00 | 12.33 | 12.31 |* |51415.813 | | 0.60703 | | |80013 GSC | NL80_3 +200876 |V0876 Cep |221337.0+554428 |DSCT | 11.20 | 11.35 | |* |52617.476 | | 0.148585 | | |80171 GSC | NL80_3 +200877 |V0877 Cep |221345.8+754348 |EA | 11.70 | 12.16 | 12.0 |* |51421.718 | | 6.01927 |04 | |80013 GSC | NL80_3 +200878 |V0878 Cep |221444.8+680445 |BY | 11.12 | 11.22 | |* | | | 1.490 | | |80001 GSC | NL80_3 +200879 |V0879 Cep |221801.3+724114 |LB | 12.6 | 13.3 | |* | | | | | |80062 USNO | NL80_3 +200880 |V0880 Cep *|222459.6+701854 |EA | 10.63 | 11.06 | 10.81 |* |51467.580 | | 27.33 | | |80023 GSC | NL80_3 +200881 |V0881 Cep *|222515.9+701434 |EA | 11.64 | 11.96 | 11.73 |* |51466.747 | | 2.3337 |11 | |80023 GSC | NL80_3 +200882 |V0882 Cep *|222531.1+624527 |BY | 11.6 | 12.1 | |* | | | 22.889 | | |80001 GSC | NL80_3 +200883 |V0883 Cep |222616.0+740629 |EA | 13.20 | 13.7 | 13.45 |* |51420.765 | | 0.62448 |13 | |80013 GSC | NL80_3 +200884 |V0884 Cep |222851.3+731758 |SR | 12.5 | 13.0 | |* | | | 97. | | |80001 USNO | NL80_3 +200885 |V0885 Cep |222903.1+714843 |EW | 13.1 | 13.45 | 13.4 |* |51560.779 | | 0.652783 | | |80580 80580| NL80_3 +200886 |V0886 Cep |223057.1+655306 |EA | 10.76 | 10.98 | 10.87 |* |51364.751 | | 3.8053 |08 |Be |80042 GSC | NL80_3 +200887 |V0887 Cep |223100.2+695221 |EA | 12.50 | 12.9 | 12.9 |* |51612.585 | | 1.69189 |05 | |80013 GSC | NL80_3 +200888 |V0888 Cep |223137.7+715359 |EA | 11.81 | 12.1 : | 12.05 : |* |51503.789 | | 2.92473 |06 | |80013 GSC | NL80_3 +200889 |V0889 Cep |223416.8+664633 |EW | 12.55 | 12.85 | 12.8 |* |51550.540 | | 0.41831 | | |80031 80031| NL80_3 +200890 |V0890 Cep |223446.0+581805 |EA | 9.97 | 10.34 | 10.25 |V |52891.1763 | | 1.955103 | |O9V |80057 GSC | NL80_3 +200891 |V0891 Cep |223500.9+595246 |EA | 14.65 | 16.18 | 16.18 |* |53337.0859 | | 4.5899 |07 | |80073 80073| NL80_3 +200892 |V0892 Cep |223509.4+742717 |EW | 13.5 | 14.0 | 13.95 |* |51511.873 | | 0.362436 | | |80580 80580| NL80_3 +200893 |V0893 Cep |223526.9+640755 |SR | 11.8 | 12.1 | |* | | | 50.4 | | |80001 GSC | NL80_3 +200894 |V0894 Cep |223630.3+632559 |LB | 12.5 | 13.0 | |* | | | | | |80062 USNO | NL80_3 +200895 |V0895 Cep |223637.3+643253 |EA | 11.00 | 11.28 | 11.26 |* |51504.779 | | 2.4859 |09 | |80001 DM | NL80_3 +200896 |V0896 Cep |223715.6+821027 |ELL | 15.73 |( 0.08 )| |R |52514.4112 | | 0.12368 | |DA+dM |80594 80594| NL80_3 +200897 |V0897 Cep *|223718.8+705429 |EA | 11.45 | 11.69 | 11.65 |* |51474.575 | | 4.4871 |05 | |80023 GSC | NL80_3 +200898 |V0898 Cep *|223802.4+672759 |EA | 12.20 | 12.65 : | 12.64 : |* |51364.686 | | 2.87475 |07 | |80023 GSC | NL80_3 +200899 |V0899 Cep |223915.5+640636 |SRA | 13.7 | 15.1 | |* |51459.5 | | 137. | | |80566 80566| NL80_3 +200900 |V0900 Cep |223949.5+583255 |EA | 9.38 | 10.05 | 9.55 |V |52894.2908 | | 3.09209 | |B5V |80057 DM | NL80_3 +200901 |V0901 Cep |224010.4+603350 |DCEP | 11.1 | 11.4 | |* |51500.2 | | 9.0 | | |80081 GSC | NL80_3 +200902 |V0902 Cep |224107.8+824225 |EW | 11.78 | 12.28 | 12.23 |* |52856.842 | | 0.328692 | | |80042 GSC | NL80_3 +200903 |V0903 Cep |224202.9+580406 |LB | 10.14 | 10.40 | |V | | | | |M2III |80057 GSC | NL80_3 +200904 |V0904 Cep |224215.4+631853 |SR | 12.3 | 12.7 | |* | | | 66. | | |80001 GSC | NL80_3 +200905 |V0905 Cep |224327.4+742221 |RRAB | 13.65 | 14.45 | |* |51520.62 | | 0.51366 | | |80026 USNO | NL80_3 +200906 |V0906 Cep |224400.8+671259 |SRA | 13.15 | 13.5 | |* |51561.5 | | 55.4 | | |80566 80566| NL80_3 +200907 |V0907 Cep |224543.4+732159 |EB | 12.35 | 12.9 | 12.6 |* |51514.789 | | 0.63622 | | |80584 80584| NL80_3 +200908 |V0908 Cep |224621.7+595731 |DCEPS | 11.28 | 11.55 | |V |52896.9093 | | 3.0332 |35 | |80057 GSC | NL80_3 +200909 |V0909 Cep |224712.2+595834 |EW | 12.13 | 12.47 | 12.44 |V |52892.0818 | | 0.425526 | | |80057 GSC | NL80_3 +200910 |V0910 Cep |224805.4+614502 |EA | 12.35 | 12.65 | 12.65 |* |51416.550 | | 2.4530 |13 | |80584 80584| NL80_3 +200911 |V0911 Cep |224823.1+602417 |DCEP | 12.09 | 12.73 | |V |52897.6785 | | 4.27785 |22 | |80057 GSC | NL80_3 +200912 |V0912 Cep |224902.3+723554 |SR | 11.0 | 11.45 | |* | | | 65. | | |80597 80597| NL80_3 +200913 |V0913 Cep |224946.2+682412 |LB | 12.6 | 12.95 | |* | | | | | |80566 80566| NL80_3 +200914 |V0914 Cep |225107.6+782722 |EW | 13.1 | 13.4 | 13.4 |* |51490.892 | | 0.38618 | | |80031 80031| NL80_3 +200915 |V0915 Cep |225128.0+714321 |EA | 11.18 | 11.61 | 11.45 |* |51341.863 | | 3.5697 |04 | |80013 GSC | NL80_3 +200916 |V0916 Cep |225340.5+602323 |SR | 13.0 | 13.7 | |* | | | 70. : | | |80001 USNO | NL80_3 +200917 |V0917 Cep |225758.9+685354 |EW | 12.88 | 13.25 | 13.2 |* |51383.775 | | 0.411767 | | |80013 GSC | NL80_3 +200918 |V0918 Cep |225844.0+814952 |EW | 13.19 | 13.56 | 13.56 |* |51572.760 | | 0.85353 | | |80013 GSC | NL80_3 +200919 |V0919 Cep *|225940.8+651240 |EA | 10.62 | 10.92 | 10.86 |* |51295.837 | | 1.85197 |10 | |80042 DM | NL80_3 +200920 |V0920 Cep |230109.6+595641 |BE | 11.2 | 11.7 | |* | | | | |Be |80077 80077| NL80_3 +200921 |V0921 Cep *|230114.0+623405 |EA | 11.62 | 12.20 | 12.03 |* |51311.870 | | 13.714 |07 | |80023 GSC | NL80_3 +200922 |V0922 Cep *|230139.2+694245 |EA | 11.46 | 11.92 | 11.92 |* |51606.605 | | 3.57494 |05 | |80023 GSC | NL80_3 +200923 |V0923 Cep |230224.9+724842 |EA | 11.57 | 12.00 | 11.85 |* |51403.677 | | 2.94152 |05 | |80013 GSC | NL80_3 +200924 |V0924 Cep |230307.9+775930 |EA | 11.81 | 12.15 | 11.94 |* |51318.730 | | 1.25771 |08 | |80013 GSC | NL80_3 +200925 |V0925 Cep |230542.2+751839 |EA | 11.64 | 11.95 | 11.69 : |* |51400.735 | | 2.14718 |10 | |80013 GSC | NL80_3 +200926 |V0926 Cep |230559.0+811042 |CWA | 12.45 | 12.7 | |* |51379. | | 45.35 |32 | |80177 GSC | NL80_3 +200927 |V0927 Cep |230641.7+704459 |EA | 9.60 | 10.05 | 10.05 |* |51426.62 | | 2.57791 |10 | |80013 DM | NL80_3 +200928 |V0928 Cep |230730.1+624042 |LB | 12.9 | 13.6 | |* | | | | | |80062 USNO | NL80_3 +200929 |V0929 Cep |230754.5+601028 |EA | 11.37 | 11.8 : | 11.8 : |* |51340.81 | | 7.0206 |05 | |80013 GSC | NL80_3 +200930 |V0930 Cep |231027.1+695448 |EW | 12.48 | 12.83 | 12.83 |* |51553.616 | | 0.393725 | | |80013 GSC | NL80_3 +200931 |V0931 Cep |231053.1+645547 |CEP | 11.35 | 11.55 | |* |51442.0 | | 19.2 |40 | |80116 80116| NL80_3 +200932 |V0932 Cep |231752.0+754354 |RRAB | 13.10 | 13.69 | |* |51507.88 | | 0.68034 | | |80026 GSC | NL80_3 +200933 |V0933 Cep |231835.1+804335 |EB | 13.95 | 14.55 | 14.4 |* |51482.715 | | 0.48792 | | |80032 80032| NL80_3 +200934 |V0934 Cep |231906.7+694514 |EW | 13.02 | 13.5 | 13.45 : |* |51479.633 | | 0.431012 | | |80011 GSC | NL80_3 +200935 |V0935 Cep |232224.0+743844 |EB | 12.05 | 12.55 | 12.35 |* |51407.420 | | 1.2280 | | |80024 80024| NL80_3 +200936 |V0936 Cep |232243.2+751240 |EW | 13.7 | 14.1 | 14.05 |* |51590.515 | | 0.36401 | | |80032 80032| NL80_3 +200937 |V0937 Cep |232350.4+781417 |EA | 11.95 | 12.3 | 12.3 |* |51417.698 | | 1.58145 |12 | |80013 GSC | NL80_3 +200938 |V0938 Cep |232425.2+683829 |EA | 12.76 | 13.25 | 12.88 |* |51421.760 | | 2.72771 |05 | |80013 GSC | NL80_3 +200939 |V0939 Cep |232439.8+711310 |EA | 12.39 | 13.0 | 12.9 : |* |51457.76 | | 5.5466 | | |80013 GSC | NL80_3 +200940 |V0940 Cep |232559.0+643456 |EB | 11.55 | 11.9 | 11.7 |* |51338.487 | | 0.97578 | | |80024 80024| NL80_3 +200941 |V0941 Cep |232711.3+700808 |EA | 12.95 | 13.4 | 13.4 |* |51612.610 | | 1.39409 |10 | |80013 GSC | NL80_3 +200942 |V0942 Cep |232852.5+742600 |EA | 13.43 | 14.05 | 13.95 |* |51532.589 | | 1.69810 |08 | |80013 GSC | NL80_3 +200943 |V0943 Cep |232919.6+761253 |EW | 13.3 | 13.9 | 13.7 |* |51350.838 | | 0.36845 | | |80032 80032| NL80_3 +200944 |V0944 Cep *|233034.9+663346 |EA | 10.86 | 11.21 | 11.07 |* |51478.573 | | 6.560 | | |80023 GSC | NL80_3 +200945 |V0945 Cep |233254.6+654417 |EB | 11.87 | 12.17 | 12.02 |* |51609.340 | | 1.12995 | | |80024 80024| NL80_3 +200946 |V0946 Cep |233434.3+674235 |EB | 12.85 | 13.17 | 13.15 |* |51558.520 | | 1.1465 | | |80024 80024| NL80_3 +200947 |V0947 Cep |233554.5+811534 |EW | 12.62 | 12.88 | 12.88 |* |51524.605 | | 0.331676 | | |80011 GSC | NL80_3 +200948 |V0948 Cep |233657.6+742030 |EA | 12.35 | 12.6 | 12.6 |* |51397.820 | | 1.13502 |10 | |80013 GSC | NL80_3 +200949 |V0949 Cep |233826.9+772434 |EA | 12.35 | 12.8 | 12.45 |* |51413.641 | | 1.067973 |05 | |80013 GSC | NL80_3 +200950 |V0950 Cep |233827.1+645439 |SR | 12.85 | 13.63 | |* | | | 69. | | |80001 GSC | NL80_3 +200951 |V0951 Cep |233915.4+780651 |EB | 13.1 | 13.7 | 13.35 |* |51598.638 | | 0.55135 | | |80024 80024| NL80_3 +200952 |V0952 Cep |233941.5+660725 |LB | 12.6 | 13.1 | |* | | | | |M7 |80062 USNO | NL80_3 +200953 |V0953 Cep |234142.9+810335 |EA/RS | 11.08 | 12.00 | 11.34 |* |51356.739 | | 1.54912 |04 | |80042 GSC | NL80_3 +200954 |V0954 Cep *|234212.1+674902 |EB | 12.28 | 12.61 | 12.52 |* |51507.885 | | 0.51978 | | |80011 GSC | NL80_3 +200955 |V0955 Cep |234343.6+812752 |EA | 12.18 | 12.70 | 12.50 |* |51332.731 | | 1.040474 |10 | |80013 GSC | NL80_3 +200956 |V0956 Cep |234517.8+800412 |EA | 12.41 | 12.92 | 12.9 |* |51287.83 | | 6.0213 |03 | |80013 GSC | NL80_3 +200957 |V0957 Cep *|234610.4+712955 |EA | 11.52 | 11.96 | 11.94 |* |51504.666 | | 1.98873 | | |80023 GSC | NL80_3 +200958 |V0958 Cep |234950.0+822226 |EW | 10.75 | 10.88 | 10.88 |* |51362.575 | | 0.34529 | |F5 |80032 80032| NL80_3 +200959 |V0959 Cep |235012.9+683325 |EW | 11.45 | 11.68 | 11.68 |* |51535.698 | | 0.372266 | | |80011 DM | NL80_3 +200960 |V0960 Cep |235113.1+685526 |EW | 13.1 | 13.8 | 13.6 |* |54585.6474 | | 0.333985 | | |80080 GSC | NL80_3 +200961 |V0961 Cep *|235806.0+673611 |EA | 10.43 | 10.83 | 10.75 : |* |51442.716 | | 7.0385 | |A5 |80023 DM | NL80_3 +209002 |bet Cep *|212839.6+703339 |BCEP | 3.16 | 3.27 | |V |40444.625 | | 0.1904881 |50 |B2IIIeV |06487 BD | +209004 |del Cep *|222910.3+582455 |DCEP | 3.48 | 4.37 | |V |36075.445 | | 5.366341 |25 |F5Ib-G1Ib |02392 08953| +209005 |eps Cep *|221502.2+570237 |DSCTC | 4.15 | 4.21 | |V | | | 0.041242 | |F0IV |08955 BD | +209006 |zet Cep *|221051.3+581205 |E: | 3.50 | 3.54 | |Hp| | | | | |HIP HIP | +209012 |mu. Cep *|214330.5+584648 |SRC | 3.43 | 5.1 | |V | | | 730. | |M2eIa |08956 08953| +209013 |nu. Cep |214526.9+610715 |ACYG | 4.25 | 4.35 | |V | | | | | |68370 BD | +210001 |R Cet |022602.3-001042 |M | 7.2 | 14. | |V |43768. | | 166.24 |43 |M4e-M9 |00001 00002| +210002 |S Cet |002403.6-091941 |M | 7.6 | 14.7 | |V |42650. | | 320.45 |47 |M3e-M6.5e: |00001 00002| +210003 |T Cet |002146.3-200329 |SRC | 5.0 | 6.9 | |V |40562. | | 158.9 | |M5-6SIIe |00001 00002| +210004 |U Cet |023343.7-130854 |M | 6.8 | 13.4 | |V |42137. | | 234.76 |44 |M2e-M6e |00001 00002| +210005 |V Cet |235754.0-085731 |M | 8.6 | 14.8 | |V |38792. | | 257.82 |45 |M3e |00001 00002| +210006 |W Cet *|000207.4-144033 |M | 7.1 | 14.8 | |V |38578. | | 351.31 | |S6,3e-S9,2e |00001 00002| +210007 |X Cet |031926.1-010356 |M | 8.4 | 13.0 | |V |41953. | | 177.14 |49 |M2e(S)-M6e |00001 00002| +210008 |Y Cet | | | | | | | | | | | | |N +210009 |Z Cet |010645.1-012853 |M | 8.4 | 14.2 | |V |41679. | | 184.81 |48 |M1e-M6.5e |00001 00002| +210010 |RR Cet *|013208.2+012030 |RRAB | 9.10 | 10.10 | |V |33181.404 | | 0.55302814 |12 |A7-F5 |03506 00188| +210011 |RS Cet |022800.1+001317 |SR: | 7.9 | 8.6 | |V | | | | |G |00179 08953| +210012 |RT Cet |011652.8-235040 |LB | 10.6 | 11.8 | |p | | | | |M6 |08905 00022| +210013 |RU Cet *|010040.3-155728 |RRAB | 10.83 | 12.13 | |V |39826.411 | | 0.586280 |18 |A7:-F8 |05233 02455| +210014 |RV Cet *|021514.9-104801 |RRAB | 10.35 | 11.22 | |V |39113.363 | | 0.623403 |20 |F0-G5 |05233 00184| +210015 |RW Cet *|021521.4-121227 |EA/SD | 10.43 | 11.4 | 10.5 |B |42229.3883 | | 0.9752009 |21 *|A5 |08593 00186| +210016 |RX Cet *|003338.3-152915 |RRAB | 11.01 | 11.75 | |V |40125.799 | | 0.5736918 |20 |F0:-F4 |05839 00188| +210017 |RY Cet |021600.1-203111 |M | 10.5 |< 13.5 | |p |25795. | | 374. | |M5e-M7 |00189 00190| +210018 |RZ Cet *|022832.4-082130 |RRAB | 11.24 | 12.36 | |V |33906.892 | | 0.51061074 |16 |A6-F4 |06071 00188| +210019 |SS Cet *|024836.3+014827 |EA/SD | 9.4 | 13.0 | |V |42451.329 | | 2.973976 |13 |A0 |00001 00192| +210020 |ST Cet |004904.3+022516 |RR | 13.4 | 15.0 | |p |25197.334 | | 0.5265382 |42 : | |03506 06286| +210021 |SU Cet |004935.0+022254 |RRAB | 13.7 | 15.2 | |p |25197.349 | | 0.5426428 |21 : | |03506 06286| +210022 |SV Cet *|003455.8-223847 |EW/KE | 14.5 | 14.9 | 14.9 |B |25887.425 | | 0.5841870 | | |00194 00194| +210023 |SW Cet |013830.1+012140 |LB | 9.8 | 10.9 | |p | | | | |M7III |00195 00196| +210024 |SX Cet |004753.2-011859 |SR | 13.2 | 14.6 | |p | | | 200. : | | |00193 UCAC2| +210025 |SY Cet |004806.8+005043 |L: | 13.5 | 14.4 | |p | | | | | |00193 06286| +210026 |SZ Cet |010459.2-024137 |L: | 12.5 | 13.2 | |p | | | | | |00193 BD | +210027 |TT Cet *|014656.5-094510 |EW/KE: | 10.8 | 11.32 | 11.1 |V |32545.830 | | 0.4859565 | |A |01005 02532| +210028 |TU Cet *|025921.7+031633 |EA/SD | 10.8 | 11.8 | 10.9 |V |28507.240 | | 4.39117 |14 |F6-F8V |00197 00197| +210029 |TV Cet *|031436.5+024516 |EA/DM | 8.60 | 9.32 | 9.10 |V |41275.962 | | 9.1032884 |03 *|F2 |06011 08953| +210030 |TW Cet *|014854.1-205335 |EW/KW | 10.43 | 11.18 | 11.14 |V |42373.378 | | 0.3168519 | |G5+G5 |00001 08953| +210031 |TX Cet *|015606.3-004420 |EB/KE | 10.90 | 11.47 | 11.12 |V |43082.6343 | | 0.74084025 | |A2nn |08809 00192| +210032 |TY Cet *|022044.3-142323 |EW/KE | 11.62 | 12.1 | 12.1 |B |27414.006 | | 0.647364 | |F0 |00192 00192| +210033 |TZ Cet |022242.4-101208 |SR | 10.0 | 10.47 | |B |29220. | | 95. | |M3 |00199 08953| +210034 |UU Cet *|000405.1-165952 |RRAB | 11.54 | 12.36 | |V |41208.576 | | 0.606081 |20 |A7-F6: |07984 00182| +210035 |UV Cet *|013901.4-175702 |UV | 6.8 | 12.95 | |V | | | | |M5.5Ve | 00002| +210036 |UW Cet |004357.6+000216 |RR | 15.0 | 16.2 | |p | | | | | |00193 06286| +210037 |UX Cet |010600.3-001834 |RRAB | 14.0 | 15.1 | |p |43427.55 | | 0.595 |10 | |09147 06286| +210038 |UY Cet |002706.5-063617 |SRB | 9.8 | 11.4 | |p |26755. | | 440. |53 |M7 |00201 08953| +210039 |UZ Cet |020605.7-101245 |SRA | 9.6 | 10.6 | |p |26615. | | 121.74 | |M2 |00123 08953| +210040 |VV Cet *|005543.3-020538 |EW/KE | 10.3 | 11.0 | 11.0 |p |31328.483 | | 0.522390 | |A5 |03566 BD | +210041 |VW Cet |013904.3-175049 |EB/KW: | 11.6 | 12.1 | |V |35111.396 | | 0.486 | | |02209 05288| +210042 |VX Cet *|023935.2-001544 |EA/SD: | 11. | 11.5 | |p |26955.895 | | 2.7207954 |06 |F |06078 00205| +210043 |VY Cet *|014933.7-193729 |EW/KW | 11.10 | 11.72 | 11.70 |V |35429.021 | | 0.3408097 | | |00001 BD | +210044 |VZ Cet *|021920.8-025840 |* | 9.5 | 12. | |V |33300. :| | 4750. : |50 |Beq |02115 08953| +210045 |WW Cet *|001124.7-112843 |UG | 9.3 | 16.8 | |p | | |( 31.2 ) | |pec(UG) |08810 08852| +210046 |WX Cet |011704.2-175623 |UG | 9.5 | 18. | |p | | |( 450. :) | |pec(UG) |08928 08927| +210047 |WY Cet |013535.9-115631 |EA/SD: | 9.6 | 10.4 | |p |26619.350 | | 1.939675 |13 *|A2 |05304 BD | +210048 |WZ Cet *|014100.7-064334 |EA/DM | 10.8 | 11.4 | 11.0 |p |26308.350 | | 6.645088 |14 *|A0 |04020 BD | +210049 |XX Cet |022239.9-193247 |QSO | 18.0 | 19.7 | |p | | | | | |04033 04033| +210050 |XY Cet *|025933.5+033103 |EA/DM | 8.65 | 9.54 | 9.34 |V |38372.949 | | 2.780712 |10 |Am+Am |05488 04132| +210051 |XZ Cet |020016.6-162046 |RRAB | 9.24 | 9.71 | |V | | | 0.8231000 |22 |A |03306 08953| +210052 |YY Cet *|020012.0-181228 |EB/KE: | 9. | 9.4 | 9.2 |p |27333.500 | | 1.117455 | |A7 |05377 BD | +210053 |YZ Cet |011230.6-165956 |UV | 13.15 | 13.87 | |B | | | | |M5.5Ve |08929 04408| +210054 |ZZ Cet *|013613.4-112031 |ZZA | 14.13 |( 0.03 )| |V | | | |50 |DA |08816 06493| +210055 |AA Cet *|015900.7-225511 |EW/KE | 6.2 | 6.7 | 6.7 : |p |41268.689 | | 0.53616996 | |F2 |00001 08953| +210056 |AB Cet *|022600.3-152029 |ACV: | 5.71 | 5.88 | |V |33226.69 | | 2.997814 |50 |A5Vp(Sr-Cr) |05880 BD | +210057 |AC Cet |001058.0-183423 |LB | 7.96 | 8.29 | |V | | | | |M5III |05973 BD | +210058 |AD Cet *|001427.6-074650 |LB: | 4.9 | 5.16 | |V | | | | |M3III |05841 BD | +210059 |AE Cet |001438.4-185558 |LB: | 4.26 | 4.46 | |V | | | | |M1III-M3III |05841 BD | +210060 |AF Cet |002023.1-232259 |LB | 9.99 | 10.25 | |V | | | | |M6III |05973 CoD | +210061 |AG Cet |002800.6-113932 |SRB | 6.99 | 7.45 | |V | | | 90. : | |M3 |05973 08953| +210062 |AH Cet |003805.1-212436 |LB | 9.44 | 9.56 | |V | | | | |M6III |05973 BD | +210063 |AI Cet |004201.2-093852 |SRB | 8.48 | 9.00 | |V | | | 47. : | |M8 |05973 08953| +210064 |AK Cet |010030.4-121145 |LB | 7.68 | 7.94 | |V | | | | |M3 |05973 BD | +210065 |AL Cet |010838.9-170349 |LB | 8.75 | 9.07 | |V | | | | |M5III |05973 BD | +210066 |AM Cet |011117.3-133012 |SRB | 6.84 | 7.12 | |V | | | 70. : | |M5III |05973 BD | +210067 |AN Cet |011414.8-021046 |SRB | 8.37 | 8.74 | |V | | | 20. : | |M4 |05973 BD | +210068 |AO Cet |012017.2-094451 |LB | 9.05 | 9.29 | |V | | | | |M2 |05973 BD | +210069 |AP Cet |013425.8-185828 |SR: | 11. |< 12. | |p | | | | |M7 |00190 00190| +210070 |AQ Cet |014954.6-045134 |LB | 8.49 | 9.00 | |V | | | | |MC |05973 BD | +210071 |AR Cet |020026.8-083126 |SR: | 5.40 | 5.61 | |V | | | | |M3III |05973 BD | +210072 |AS Cet |021808.6-140801 |LB | 7.90 | 8.09 | |V | | | | |M2 |05973 BD | +210073 |AT Cet |024157.5-223622 |SRB | 8.08 | 8.32 | |V | | | 60. : | |M5 |05973 00022| +210074 |AU Cet |000239.3-192639 |SR | 9.53 | 9.90 | |V | | | 47. | |M6III |05973 BD | +210075 |AV Cet |012402.5-080027 |DSCTC | 6.20 | 6.22 | |V | | | 0.070 | |F0V |06255 BD | +210076 |AW Cet |025402.8-002512 |RR: | 13.69 |( 0.53 )| |V | | | | |A2: |06850 07058| +210077 |AX Cet |002159.7-214517 |EA | 11.5 |< 12.5 | |p | | | | | |00190 06286| +210078 |AY Cet |011636.3-023001 |RS | 5.35 | 5.58 | |V | | | | |G5III-IVe |08933 BD | +210079 |AZ Cet |011848.2+020117 |RRAB | 13.5 | 14.5 | |p |43425.478 | | 0.5488 |12 | |08246 08246| +210080 |BB Cet |003831.9-201748 |ACV | 6.63 | 6.64 | |V |42620.629 | | 1.4788 |30 |B8p(Si) |00208 BD | +210081 |BC Cet |005732.5-102833 |ACV | 7.64 | 7.66 | |V | | | 1.11 | |A0p(Si) |08934 BD | +210082 |BD Cet |002246.3-091351 |RS | 8.2 |( 0.10 )| |V | | | | | |67226 BD | +210083 |BE Cet |002251.8-121234 |BY | 6.38 | 6.43 | |V | | | | | |67239 BD | +210084 |BF Cet |002704.0+004031 |RRC | 13.24 | 13.77 | |V | | | | | |67240 GSC | +210085 |BG Cet |003606.9-225032 |DSCTC | 6.35 |( 0.009 )| |B | | | | | |67245 CoD | +210086 |BH Cet |005002.8-173627 |CWB | 13.9 | 14.9 | |p | | | | | |68076 68076| +210087 |BI Cet |012250.3+004243 |RS | 8.08 | 8.30 | |V | | | | | |68279 BD | +210088 |BK Cet |015252.1-165545 |DSCTC | 5.73 | 5.81 | |V | | | | | |68079 BD | +210089 |BL Cet |013901.4-175701 |UV | | 12.52 | |V | | | | | |69092 69093| +210090 |BM Cet |235650.5-105539 |RRC | 15.9 | 17.0 | |B | | | | | |70007 | +210091 |BN Cet |020615.8-190726 |ACVO | 9.3 |( 0.01 B )| |V | | | | | |71009 BD | +210092 |BO Cet |020639.2-020342 |NL | | | | | | | | | |71010 GSC | +210093 |BP Cet |022452.2+082405 |RRAB | 14.2 | 15.1 | |p | | | | | |71016 71016| +210094 |BQ Cet |023514.8+024757 |UV | 13.7 | 16.4 | |p | | | | | |71016 71016| +210095 |BR Cet |023706.2+065456 |UV | 14.3 |< 16.5 | |p | | | | | |71016 71016| +210096 |BS Cet |024026.6-142657 |DSCTC | 6.65 | 6.73 | |V | | | | | |71017 BD | +210097 |BT Cet |235758.0-125214 |EA | 15.6 | 16.2 | |p | | | | | |71016 71016| +210098 |BU Cet |003514.9-033534 |RS | 3.86 | 3.96 | |K | | | | | |72054 BD | +210099 |BV Cet |004345.9-100025 |ZZ | 14.51 |( 0.1 )| |V | | | | | |72055 72056| +210100 |BW Cet |013116.5-110708 |ACVO | 9.38 |( 0.01 B )| |V | | | | | |73101 BD | +210101 |BX Cet |023615.3+065218 |BY | 11.64 | 11.68 | |V | | | | | |73018 73102| +210102 |BY Cet |024726.9-001222 |RS | 9.55 | 9.69 | |V | | | | | |73103 BD | +210103 |BZ Cet |030002.8+074459 |BY | 7.95 |( 0.05 )| |V | | | | | |73005 BD | +210104 |CC Cet |031055.0+094926 |R | 13.80 | 14.07 | |H | | | | | |73104 73GSC| +210105 |CD Cet |031322.9+044629 |BY | 13.81 | 13.87 | |V | | | | | |73018 73102| +210106 |CE Cet |000616.9-104643 |SRB | 7.54 | 7.67 | |Hp| | | | | |HIP HIP | +210107 |CF Cet |000833.5-173441 |SRB | 6.11 | 6.27 | |Hp| | | | | |HIP HIP | +210108 |CG Cet |000853.6-221046 |SRB | 7.12 | 7.23 | |Hp| | | | | |HIP HIP | +210109 |CH Cet |001253.4-221551 |LB | 8.53 | 8.67 | |Hp| | | | | |HIP HIP | +210110 |CI Cet |001713.2-140633 |ACV: | 9.46 | 9.52 | |Hp| | | | | |HIP HIP | +210111 |CK Cet |002257.0-203924 |EB | 10.41 | 10.74 | |Hp| | | | | |HIP HIP | +210112 |CL Cet *|002904.1-171301 |RRC: | 9.88 | 10.00 | |Hp| | | | | |HIP HIP | +210113 |CM Cet |003314.3-104343 |LB: | 9.58 | 9.73 | |Hp| | | | | |HIP HIP | +210114 |CN Cet |004010.0-085553 |EA: | 9.10 | 9.74 | |Hp| | | | | |HIP HIP | +210115 |CO Cet |005240.6-212619 |SRD | 7.48 | 7.61 | |Hp| | | | | |HIP HIP | +210116 |CP Cet |005800.4-223545 |SRD | 8.57 | 8.63 | |Hp| | | | | |HIP HIP | +210117 |CQ Cet |005843.8-193758 |SRB | 7.11 | 7.24 | |Hp| | | | | |HIP HIP | +210118 |CR Cet |010040.4-013931 |SRB | 6.81 | 6.94 | |Hp| | | | | |HIP HIP | +210119 |CS Cet |010649.0-225121 |BY: | 7.89 | 7.95 | |Hp| | | | | |HIP HIP | +210120 |CT Cet |010945.8-201259 |EW | 9.41 | 9.59 | |Hp| | | | | |HIP HIP | +210121 |CU Cet |012037.1-082453 |SRB | 8.66 | 9.70 | |Hp| | | | | |HIP HIP | +210122 |CV Cet |012236.2-045612 |SRB | 9.23 | 9.65 | |Hp| | | | | |HIP HIP | +210123 |CW Cet |012330.2-135527 |RR: | 8.40 | 8.49 | |Hp| | | | | |HIP HIP | +210124 |CX Cet |013028.1-173359 |E: | 9.60 | 10.22 | |Hp| | | | | |HIP HIP | +210125 |CY Cet |013258.9+000737 |SRB: | 7.98 | 8.11 | |Hp| | | | | |HIP HIP | +210126 |CZ Cet |013953.8-225448 |SRB | 7.28 | 7.40 | |Hp| | | | | |HIP HIP | +210127 |DD Cet |014235.8-201021 |SRD | 7.30 | 7.34 | |Hp| | | | | |HIP HIP | +210128 |DE Cet |014521.4-031008 |SRB | 7.39 | 7.57 | |Hp| | | | | |HIP HIP | +210129 |DF Cet |014731.4-075237 |LB: | 8.55 | 8.66 | |Hp| | | | | |HIP HIP | +210130 |DG Cet |015037.3-045715 |E | 9.03 | 9.49 | |Hp| | | | | |HIP HIP | +210131 |DH Cet |015034.0-173900 |SR | 9.31 | 9.93 | |Hp| | | | | |HIP HIP | +210132 |DI Cet |015128.3-152719 |SRD | 9.42 | 9.72 | |Hp| | | | | |HIP HIP | +210133 |DK Cet |015749.0-215405 |BY: | 8.16 | 8.28 | |Hp| | | | | |HIP HIP | +210134 |DL Cet |015911.3+013645 |SRB | 11.29 | 11.76 | |Hp| | | | | |HIP HIP | +210135 |DM Cet |020446.7-171715 |LB | 7.27 | 7.52 | |Hp| | | | | |HIP HIP | +210136 |DN Cet |020646.6+035415 |SRB | 8.51 | 8.72 | |Hp| | | | | |HIP HIP | +210137 |DO Cet |020844.9-172329 |LB: | 7.93 | 8.03 | |Hp| | | | | |HIP HIP | +210138 |DP Cet |020951.4+034610 |EA | 6.85 | 7.05 | |Hp| | | | | |HIP HIP | +210139 |DQ Cet |021535.7-232208 |LB | 7.76 | 8.02 | |Hp| | | | | |HIP HIP | +210140 |DR Cet |021622.9+030611 |SRB | 9.14 | 9.35 | |Hp| | | | | |HIP HIP | +210141 |DS Cet |021609.3-210030 |EA: | 8.97 | 9.34 | |Hp| | | | | |HIP HIP | +210142 |DT Cet |022537.8+084318 |EB: | 9.15 | 9.27 | |Hp| | | | | |HIP HIP | +210143 |DU Cet |023305.1+100814 |LB: | 10.08 | 10.32 | |Hp| | | | | |HIP HIP | +210144 |DV Cet |023352.7-060020 |LB: | 8.35 | 8.45 | |Hp| | | | | |HIP HIP | +210145 |DW Cet |023440.5-024740 |SRB | 8.47 | 8.63 | |Hp| | | | | |HIP HIP | +210146 |DX Cet |023602.6+062557 |DSCT | 6.96 | 7.16 | |Hp| | | | | |HIP HIP | +210147 |DY Cet |023833.2-141757 |EW | 9.54 | 10.12 | |Hp| | | | | |HIP HIP | +210148 |DZ Cet |023836.2-210218 |LB: | 8.00 | 8.13 | |Hp| | | | | |HIP HIP | +210149 |EE Cet *|024952.4+085623 |EW | 8.78 | 9.03 | |Hp| | | | | |HIP HIP | +210150 |EF Cet |024951.7+062802 |LB: | 12.08 | 12.53 | |Hp| | | | | |HIP HIP | +210151 |EG Cet |025346.2+092009 |SRB | 6.36 | 6.52 | |Hp| | | | | |HIP HIP | +210152 |EH Cet |025704.6+043004 |SRB: | 6.05 | 6.22 | |Hp| | | | | |HIP HIP | +210153 |EI Cet |030138.0+021006 |ACV: | 9.07 | 9.16 | |Hp| | | | | |HIP HIP | +210154 |EK Cet |031015.5+055432 |BY: | 11.59 | 11.99 | |Hp| | | | | |HIP HIP | +210155 |EL Cet *|031226.4+063939 |LB: | 5.66 | 5.70 | |Hp| | | | | |HIP HIP | +210156 |EM Cet |032237.9-003143 |EA: | 9.75 | 10.09 | |Hp| | | | | |HIP HIP | +210157 |EN Cet |002727.9-010827 |UG | 14.5 |< 18.5 | |R | | | | | |75096 | +210158 |EO Cet |012343.3-050546 |RPHS | 12.32 |( 0.05 )| |V | | | | | |75097 GSC | +210159 |EP Cet |022409.6-161516 |GDOR | 6.74 | 6.77 | |V | | | | | |75029 BD | +210160 |EQ Cet |012852.5-233943 |XM | 16.1 | 16.7 | |i | | | | | |76014 76014| +210161 |ER Cet |013406.6-101403 |M: | 11.7 | 15.2 | |V | | | | | |76012 GSC | +210162 |ES Cet |020052.2-092431 |AM | 16.9 |( 0.15 )| |V | | | | | |77018 77019| +210163 |ET Cet |003221.6-183909 |SR: | 12.0 | 13.0 | |V | | | | | |77004 GSC | +210164 |EU Cet |004424.6-002743 |RRAB | 17.5 |( 1.00 )| |V | | | 0.59219 |15 | |78015 USNO | +210165 |EV Cet *|005753.8-004635 |EW | 11.6 |( 0.48 )|( 0.44 )|V |51131.3749 | | 0.4282299 | | |78017 GSC | +210166 |EW Cet |011624.2-120549 |BY | 7.55 |( 0.03 )| |V | | | 7.85 | |K0V |78018 DM | +210167 |EX Cet |013735.5-064538 |BY | 7.66 |( 0.02 )| |V | | | 7.15 | |G5V |78018 DM | +210168 |EY Cet |014058.8-052413 |BY | 8.50 |( 0.03 )| |V | | | 9.17 | |G0 |78018 DM | +210169 |EZ Cet |014923.4-104213 |BY | 6.75 |( 0.05 )| |V | | | 8.92 | |G1V |78005 DM | +210170 |FF Cet |015050.9-000756 |RRAB | 18. |( 0.93 )| |V | | | 0.50596 |15 | |78015 USNO | +210171 |FG Cet |015058.2-005051 |RRAB | 17.5 |( 0.82 )| |V | | | 0.56960 |37 | |78015 USNO | +210172 |FH Cet *|015105.9-033241 |EA | 13.7 | 14.7 | 13.8 |V |51944.6628 | | 0.936002 |10 | |78028 GSC | +210173 |FI Cet |015118.6-022301 |UG: | 14.0 | 20.8 | |R | | | | | |78029 78029| +210174 |FK Cet |015331.3-003418 |RRAB | 17.4 |( 0.57 )| |V | | | 0.60227 |22 | |78015 USNO | +210175 |FL Cet *|015543.4+002807 |E+XM | 15.5 |( 5.9 )| |V |52613.78907 | | 0.06051621 | |pec(e) |78030 USNO | +210176 |FM Cet |020246.0-000002 |RRAB | 16. |( 0.98 )| |V | | | 0.56384 |18 | |78015 USNO | +210177 |FN Cet |020459.3-154041 |BY | 7.79 |( 0.04 )| |V | | | 15.78 | |K0V |78018 DM | +210178 |FO Cet |020610.7-101634 |GDOR | 6.68 | 6.75 | |V | | | 0.8227 | |F0 |78034 DM | +210179 |FP Cet |020825.1-003444 |RRAB | 18. |( 1.19 )| |V | | | 0.51541 |15 | |78015 USNO | +210180 |FQ Cet |021218.7-133042 |EA | 10.4 |( 0.1 )| |V |50185.5067 | | 6.709914 | | |78036 DM | +210181 |FR Cet *|022458.4-024648 |* | 6.31 | 6.65 | |V | | | | |A0III |78038 DM | +210182 |FS Cet |023507.6+034357 |R | 12.41 |( 0.01 )| |V | | | | |DAwke+M1.5V |78041 78009| +210183 |FT Cet |023641.8-030922 |BY | 8.10 |( 0.04 )| |V | | | 11.784 | |K0V |78018 DM | +210184 |FU Cet *|025953.2-004047 |* | 7.86 |( 0.05 )| |V | | | 21.20 | |G2III-IV |78018 DM | +210185 |FV Cet |003357.8-133119 |RRAB | 12.6 | 13.9 | |V |53900.913 | | 0.43724 |17 | |79064 79096| +210186 |FW Cet |004024.6-213434 |RRAB | 12.9 | 13.8 | |V |52978.586 | | 0.565349 |15 | |79100 79086| +210187 |FX Cet |004506.1-185415 |RRAB | 11.9 | 13.2 | |V |52569.644 | | 0.497032 |10 | |79170 79096| +210188 |FY Cet |013547.9-112229 |SRB | 9.4 | 10.9 | |V | | | 212. | |M0 |79100 79096| +210189 |FZ Cet |014225.3-221557 |UGSU | 12.2 | 18.7 | |p | | | | | |79229 79029| +210190 |GG Cet |015301.0-080422 |RRAB | 13.5 | 15.3 : | |V |53677.6427 | | 0.49144 |17 : | |79100 79010| +210191 |GH Cet |015649.9-211144 |EA | 10.52 | 11.20 | 10.60 |V |51876.593 | | 1.135238 |12 | |79011 DM | +210192 |GI Cet |030313.1+005420 |SR | 13.3 | 14.9 | |* | | | 220. : | | |79100 GSC | +210193 |GK Cet |000347.5-112835 |RRAB | 12.3 | 13.2 | |V |52944.732 | | 0.74089 |25 | |80002 GSC | NL80_1 +210194 |GL Cet |001159.8-243359 |SRB | 9.7 | 10.9 | |V | | | 101. | |M6 |80002 GSC | NL80_1 +210195 |GM Cet |001244.9-110118 |SRB | 9.0 | 10.7 | |V | | | 215. | |M5 |80001 DM | NL80_1 +210196 |GN Cet |002431.5-095404 |LB | 10.3 | 11.0 | |V | | | | |M6 |80001 DM | NL80_1 +210197 |GO Cet *|003030.1-145033 |* | 14.38 |( 0.18 )| |K | | | 1.46 | |L7 |80045 80045| NL80_1 +210198 |GP Cet *|003655.1-055227 |EA | 9.81 | 10.26 | 9.89 |V |51466.870 | | 3.4885 |12 |F0V |80048 DM | NL80_1 +210199 |GQ Cet |004520.6-041925 |RRAB | 12.9 | 13.8 | |V |52944.609 | | 0.56667 |15 | |80001 GSC | NL80_1 +210200 |GR Cet *|004716.0-194144 |EW | 11.21 | 11.59 | 11.47 |V |51868.031 | | 0.488810 | |FO |80036 DM | NL80_1 +210201 |GS Cet |005050.9+000913 |NL | 20.65 | 20.85 | |g | | | 0.0558 | |pec(e) |80064 80027| NL80_1 +210202 |GT Cet |010515.9+015914 |RS | 11.56 | 11.90 | |V | | | 6.9058 | | |80034 GSC | NL80_1 +210203 |GU Cet |011340.4+020940 |RRAB | 12.8 | 14.3 | |V |51869.21 | | 0.451646 |15 | |80002 GSC | NL80_1 +210204 |GV Cet |011825.3-172456 |RRAB | 12.8 | 14.0 : | |V |52972.6906 | | 0.62088 |20 | |80002 GSC | NL80_1 +210205 |GW Cet *|012848.3-112713 |RRAB | 12.4 | 13.9 | |V |52519.796 | | 0.516648 |30 : | |80001 GSC | NL80_1 +210206 |GX Cet |013016.7-024240 |RRAB | 14.32 | 15.35 | |* |51535.64 | | 0.61088 | |F |80026 GSC | NL80_1 +210207 |GY Cet *|013132.4-090122 |ZZ | 18.35 | 18.59 | |V | | | | |pec(e) |80208 USNO | NL80_1 +210208 |GZ Cet *|013701.1-091234 |UGSU | 12.4 | 18.6 | |V | | | | |pec(e)+M |80090 80027| NL80_1 +210209 |HH Cet |014018.0+013954 |RRAB | 14.10 | 15.10 | |* |51450.69 | | 0.48770 | | |80026 GSC | NL80_1 +210210 |HI Cet *|014416.9-021845 |EA | 12.88 | 14.5 : | 13.07 |V |53400.508 | | 2.71883 |11 | |80048 80048| NL80_1 +210211 |HK Cet *|014721.8-215651 |ZZA | 14.85 |( 0.15 * )| |V | | | 0.005350 | |DA |80099 GSC | NL80_1 +210212 |HL Cet |015752.3-053203 |RRC | 11.8 | 12.3 | |V |51870.083 | | 0.301467 |40 | |80002 GSC | NL80_1 +210213 |HM Cet |020731.4+054106 |RRC | 12.66 | 13.48 | |V |51443.92 | | 0.22232 | | |80026 GSC | NL80_1 +210214 |HN Cet |021952.3+091648 |RRAB | 12.3 | 13.2 | |V |51932.40 | | 0.462674 |30 | |80002 GSC | NL80_1 +210215 |HO Cet |023321.4-104705 |UGSU | 12.02 | 19.0 | |V | | | | | |80118 80118| NL80_1 +210216 |HP Cet |023322.6+005100 |NL | 19.4 | 20.1 | |V | | | | |pec(e) |80119 USNO | NL80_1 +210217 |HQ Cet |023555.9+024629 |RRAB | 13.3 | 14.2 | |V |51920.88 | | 0.64537 |20 | |80001 GSC | NL80_1 +210218 |HR Cet |024236.2+071726 |RS | 8.83 | 9.10 | |V | | | 52.84 | |K0 |80034 DM | NL80_1 +210219 |HS Cet *|024644.5+010755 |EA | 10.5 | 11.1 | 11.1 |V |53381.240 | | 3.6910 |08 | |80002 DM | NL80_1 +210220 |HT Cet |030328.2+061336 |GDOR | 7.06 |( 0.02 )| |B | | | 1.0833 | |F2 |80130 HIP | NL80_1 +210221 |HU Cet |030556.8-003616 |DSCT: | 20.2 |( 0.3 * )| |V | | | 0.064 : | | |80133 USNO | NL80_1 +210222 |HV Cet |030558.6+054714 |NL | 15.7 | 20. | |* | | | | |pec(e) |80134 USNO | NL80_1 +210223 |HW Cet |031234.3+094457 |RS | 10.10 | 10.52 | |V | | | 6.209 | | |80034 DM | NL80_1 +219001 |alf Cet |030216.8+040523 |LB: | 2.45 | 2.54 | |V | | | | |M2III |06994 BD | +219004 |del Cet *|023929.0+001943 |BCEP | 4.05 | 4.10 | |V |38338.4763 | | 0.16113668 | |B2IV |08935 BD | +2190101|kap 1 Cet |031921.7+032213 |BY | 4.95 | 4.99 | |Hp| | | | | |HIP HIP | +219015 |omi Cet *|021920.8-025840 |M | 2.0 | 10.1 | |V |44839. | | 331.96 |38 |M5e-M9e |00001 00002| +220001 |R Cha |082146.5-762118 |M | 7.5 | 14.2 | |V |42006. | | 334.58 |41 |M4e-M7e |00001 00002| +220002 |S Cha *|133313.7-773410 |CST | 6.51 | | |V | | | | |F5V |00207 CPD | +220003 |T Cha *|115713.5-792132 |INSB | 10.09 | 14.0 | |V | | | | |F5 |02412 03508| +220004 |U Cha |134826.7-823927 |M | 11.0 |< 13.5 | |p |23210. | | 341.3 | | |00031 GSC | +220005 |V Cha |074635.3-780110 |M | 12. |< 14. | |p | | | | |M5e |00085 04256| +220006 |W Cha |082822.2-763343 |M | 12. | 16. | |p |39317. | | 286.3 | | |06055 02385| +220007 |X Cha |103822.5-804646 |M | 10.8 | 17. | |p | | | | |Me |00085 02385| +220008 |Y Cha |112536.5-770035 |M | 11.3 | 16. | |p | | | | |Me |00085 02385| +220009 |Z Cha *|080728.2-763201 |UGSU+EA | 11.5 | 16.23 | |V | | |( 104.1 ) | |pec(UG) |06494 08852| +220010 |RR Cha |132624.0-821943 |NA | 7.1 |< 15. | |p |34478. |1953 | | | |02736 08941| +220011 |RS Cha *|084312.2-790412 |EA+DSCT | 6.02 | 6.68 | 6.53 |V |42850.7688 | | 1.669870 |15 *|A5V+A7V |04293 CPD | +220012 |RT Cha |101031.7-803616 |RR | 14. | 15. | |p | | | | | |04001 04001| +220013 |RU Cha |101429.9-811944 |M | 11.4 | 16.2 | |p | | | | | |08727 04001| +220014 |RV Cha |102921.3-810829 |RRAB | 13.2 | 13.8 | |p |36689.260 | | 0.7014 |15 | |08727 04001| +220015 |RW Cha *|103238.5-805040 |EW/KE: | 14.0 | 14.6 | 14.6 |p |36693.32 | | 0.6385 | | |08727 04001| +220016 |RX Cha |103626.3-800248 |UG | 14.4 |< 16.9 | |p | | | | | |04159 08852| +220017 |RY Cha *|103919.5-770538 |EB/SD | 13.8 | 14.8 | 14.0 |p |36695.260 | | 1.778 | | |08727 04001| +220018 |RZ Cha *|104224.1-820214 |EA/DM | 8.2 | 9.1 | 8.8 |p |41401.7711 | | 2.832084 |11 *|F5+F5V |04302 CPD | +220019 |SS Cha |104435.3-821950 |EA | 14.4 | 15.1 | |p |36694.258 :| | | | |08727 04001| +220020 |ST Cha |104715.9-792807 |IS | 12.8 | 17.6 | |p | | | | | |04305 04001| +220021 |SU Cha |105014.9-782453 |RRAB | 14.4 | 15.8 | |p |36689.304 | | 0.618757 |18 | |04159 04001| +220022 |SV Cha |105137.9-800650 |M | 14.0 |< 16.2 | |p |36790. | | | | |08727 04001| +220023 |SW Cha |105413.5-775511 |IS: | 15.0 | 16.0 | |p | | | | | |04305 04001| +220024 |SX Cha |105600.2-772440 |INSB | 14.0 | 16.6 | |B | | | | |M1Ve |04159 04068| +220025 |SY Cha *|105630.5-771140 |INSB | 12.2 | 15.0 | |p | | | | |K2Ve |04159 04068| +220026 |SZ Cha |105816.9-771718 |INSB | 12.68 | 14.6 | |B | | | | |K0e |04159 04001| +220027 |TT Cha |105735.8-802853 |RRAB | 14.8 | 15.8 | |p |36685.275 | | 0.5312 |12 : | |08727 04001| +220028 |TU Cha |105757.5-792354 |EA | 13.3 | 13.8 | |p |36728.253 :| | | | |08727 04001| +220029 |TV Cha |105650.3-822544 |SR | 13.5 | 15. | |p | | | 100. : | | |04001 04001| +220030 |TW Cha *|105901.1-772241 |INSB | 12.8 | 15.28 | |B | | | | |K0:e |04159 04068| +220031 |TX Cha |110202.2-812443 |EA | 13.0 | 13.7 | |p |36808.25 :| | | | |08727 04001| +220032 |TY Cha |110206.4-815312 |M | 11.5 |< 16.5 | |p | | | | | |04001 04001| +220033 |TZ Cha |110351.1-765546 |INS | 15.9 | 16.7 | |p | | | | | |04159 04001| +220034 |UU Cha |110521.6-763022 |INS | 15.2 | 16.68 | |B | | | | | |04159 04001| +220035 |UV Cha |110553.1-761825 |INS | 14.0 | 15.5 | |p | | | | |ea |04159 04001| +220036 |UW Cha |110551.9-800839 |RRAB | 14.4 | 15.1 | |p |36693.270 | | 0.5903 |15 : | |08727 04001| +220037 |UX Cha |110645.2-772702 |INS | 15.2 | 18.18 | |B | | | | | |04159 04001| +220038 |UY Cha |110659.2-771854 |INS | 15.3 | 18.07 | |B | | | | |ea |04159 04068| +220039 |UZ Cha |110712.2-763223 |INS | 15.6 | 16.86 | |B | | | | | |04159 04001| +220040 |VV Cha |110728.8-765212 |INSB | 14.2 | 16.06 | |B | | | | |K0:e |04159 04068| +220041 |VW Cha *|110801.5-774229 |INSB | 12.8 | 14.6 | |p | | | | |G1V:e |04159 04068| +220042 |VX Cha |110852.4-764400 |INS | 15.2 | 16.7 | |p | | | | | |04159 04001| +220043 |VY Cha |110854.7-770213 |INS | 13.10 | 16.8 | |B | | | | |ea |04159 04068| +220044 |VZ Cha *|110924.3-762321 |INS | 12.4 | 15.54 | |B | | | | |ea |04462 04068| +220045 |WW Cha |111000.8-763459 |INS | 13.5 | 16.3 | |p | | | | |ea |04159 04068| +220046 |WX Cha |110958.9-773709 |INSB | 13.7 | 16.61 | |B | | | | |K7-M0ea |04159 04068| +220047 |WY Cha |111007.1-762938 |INSB | 14.5 | 16.1 | |p | | | | |K7ea |04159 04068| +220048 |WZ Cha |111053.3-763432 |INSB | 14.9 | 16.68 | |B | | | | |M1ea |04159 04068| +220049 |XX Cha |111139.8-762015 |INSB | 13.3 | 16.67 | |B | | | | |M0e |04159 04068| +220050 |XY Cha |111057.6-812344 |RRAB | 15.6 | 16.4 | |p |36694.258 | | 0.5093 |40 : | |08727 04001| +220051 |XZ Cha |111208.8-785440 |M | 13. |< 17. | |p | | | | | |04001 04001| +220052 |YY Cha |111402.4-765435 |M | 12.9 | 17.0 | |p | | | | |Me |04159 04001| +220053 |YZ Cha *|113409.1-774435 |EA/DM | 11.15 |( 0.4 )|( 0.4 )|B |42145.881 | | 4.457357 | |A0 |07002 04001| +220054 |ZZ Cha |113804.4-813030 |EA | 15.2 | 16.0 | |p |36728.253 :| | | | |08727 04001| +220055 |AA Cha |114042.0-811002 |EA | 14.3 | 15.6 | |p |36693.38 | | 3.829 |10 | |08727 04001| +220056 |AB Cha |114323.5-785354 |EA | 14.5 | 15.4 | |p |36732.276 :| | | | |08727 04001| +220057 |AC Cha |114342.7-773755 |RRAB | 15.4 | 16.1 | |p |36689.271 | | 0.556 |20 : | |08727 04001| +220058 |AD Cha |115206.0-794624 |RR | 15.3 | 16.3 | |p | | | 0.46645 | | |04159 04001| +220059 |AE Cha |115319.7-785118 |RRAB | 14.0 | 15.1 | |p |36689.320 | | 0.48115 |10 | |08727 04001| +220060 |AF Cha |115551.1-771918 |RRAB | 15.0 | 16.2 | |p |36689.313 | | 0.439 |20 | |08727 04001| +220061 |AG Cha |115726.9-822808 |EA | 14.3 | 15.3 | |p |36725.260 | | | | |08727 04001| +220062 |AH Cha |120155.1-771235 |RRAB | 15.0 | 15.8 | |p |36691.250 | | 0.5683 |20 : | |08727 04001| +220063 |AI Cha |120503.0-793230 |RR | 16. | 17. | |p | | | | | |04001 04001| +220064 |AK Cha |120843.6-823516 |M | 13.7 |< 16.3 | |p | | | | | |08727 04001| +220065 |AL Cha |120937.5-784102 |RRAB | 14.2 | 15.5 | |p | | | 0.602497 | | |04159 04001| +220066 |AM Cha |121202.2-770035 |M | 13. |< 17. | |p | | | | | |04001 04001| +220067 |AN Cha |121608.0-761025 |EA/SD | 14.5 | 15.8 | |p | | | 5.0593 | | |04159 04001| +220068 |AO Cha |121610.6-804501 |M | 13. | 16.5 | |p | | | | | |04001 04001| +220069 |AP Cha |121942.8-820325 |SRA | 13.7 | 16.1 | |p | | | | | |04159 04001| +220070 |AQ Cha |122426.8-762429 |RR: | 15.0 | 16.4 | |p |36776.215 | | | | |08727 04001| +220071 |AR Cha |122804.5-790851 |L | 13.5 | 14.5 | |p | | | | | |04001 04001| +220072 |AS Cha |123011.3-764545 |EA/SD | 14.0 | 16.0 | |p |36695.250 | | 0.8414 |18 *| |08727 04001| +220073 |AT Cha |123536.3-791159 |M | 12.8 | 18.0 | |p | | | | | |04001 04001| +220074 |AU Cha |123638.8-764012 |DSCT | 15.3 | 15.8 | |p |36684.235 | | 0.1752 |40 : | |08727 04001| +220075 |AV Cha |123709.1-771818 |M | 14.6 | 16.6 | |p | | | | | |08727 04001| +220076 |AW Cha |124124.5-782612 |M: | 15.0 |< 16.3 | |p | | | | | |08727 04001| +220077 |AX Cha |124506.3-772014 |M: | 15.4 |< 17.0 | |p | | | | | |04159 04001| +220078 |AY Cha |124606.3-784304 |RR | 15.0 | 16.0 | |p |36774.234 | | | | |08727 04001| +220079 |AZ Cha |125012.9-815716 |RR | 13.3 | 14.4 | |p |36691.370 | | 0.454 : | | |08727 04001| +220080 |BB Cha |130143.7-804105 |EA | 13.4 | 13.9 | |p | | | | | |08727 04001| +220081 |BC Cha |130159.2-775122 |INS | 13.7 | 16.2 | |p | | | | |ea |04159 04068| +220082 |BD Cha |130358.9-802725 |RR | 14.8 | 15.6 | |p | | | 0.54604 | | |04159 04001| +220083 |BE Cha |130459.0-765650 |E | 13.8 | 14.7 | |p | | | 0.80990 | | |04159 04001| +220084 |BF Cha |130520.6-773902 |INS | 13.4 | 13.9 | |p | | | | |ea |04159 04068| +220085 |BG Cha |130638.0-812418 |E | 15.4 | 16.3 | |p | | | | | |04159 04001| +220086 |BH Cha |130542.9-765702 |RR | 14.5 | 16.1 | |p | | | 0.391636 | | |04159 04001| +220087 |BI Cha |130649.3-762247 |EA | 15. | 15.5 | |p | | | | | |04001 04001| +220088 |BK Cha |130709.3-773030 |INS | 15.2 | 17.07 | |B | | | | |ea |04068 04001| +220089 |BL Cha |130830.6-802439 |EA | 15.7 | 16.5 | |p | | | | | |04159 04001| +220090 |BM Cha |130806.4-775505 |INS: | 14.6 | 16.63 | |B | | | | |ea |04159 04068| +220091 |BN Cha |131555.3-791356 |EA/SD | 14.2 | 15.3 | |p |36685.40 | | 6.273 |08 *| |08727 04001| +220092 |BO Cha |131823.2-771704 |M: | 14.7 |< 16.0 | |p |36715. | | | | |08727 04001| +220093 |BP Cha |132346.2-775048 |I | 14. | 15. | |p | | | | | |04001 04001| +220094 |BQ Cha |132453.9-792359 |E | 15.4 | 16.5 | |p | | | | | |08727 04001| +220095 |BR Cha |132621.4-801256 |RRAB | 13.9 | 15.6 | |p |36690.230 | | 1.074 |16 | |08727 04001| +220096 |BS Cha |132614.6-782748 |RRAB | 14.1 | 15.8 | |p |36685.250 | | 0.5181 |13 | |08727 04001| +220097 |BT Cha |132823.3-802640 |M | 13.3 | 17.5 | |p | | | | | |04001 04001| +220098 |BU Cha |134300.0-794742 |M | 12.7 |< 16.5 | |p |36692. :| | | |Me |08727 04001| +220099 |BV Cha |130221.2-794526 |CWB | 12.4 | 13.4 | |p |38472.320 | | 1.238 |25 | |05449 04001| +220100 |BW Cha |134016.9-782237 |EA/SD: | 11.67 |( 0.8 )| |B |28664.400 | | 2.116255 |11 *| |05289 CPD | +220101 |BX Cha |111950.6-762849 |M | 12.5 |< 17. | |p | | | | | |04001 04001| +220102 |BY Cha |133448.7-764556 |RR | 14.5 | 15.5 | |p |38529.32 | | | | |03776 03776| +220103 |BZ Cha |080632.0-761136 |RR | 13.4 | 14.2 | |p | | | | | |06318 06318| +220104 |CC Cha |081834.9-754623 |L | 13.2 | 14.1 | |p | | | | | |06318 06318| +220105 |CD Cha |085312.8-760037 |RR | 14.1 | 14.8 | |p | | | | | |06318 06318| +220106 |CE Cha |100455.7-780823 |L | 13.9 | 14.6 | |p | | | | | |06318 06318| +220107 |CF Cha |101603.4-795511 |L | 13.5 | 14.1 | |p | | | | | |06318 06318| +220108 |CG Cha *|103157.0-795101 |EW/KW | 13.9 | 14.4 | 14.4 |p |36720.335 | | 0.37652 | | |08727 04001| +220109 |CH Cha *|103645.5-792504 |EW/KW | 14.3 | 15.1 | 15.1 |p |36685.255 | | 0.4394 | | |08727 04001| +220110 |CI Cha |110721.4-814737 |LB: | 8.82 | 8.95 | |V | | | | |C |06353 CPD | +220111 |CK Cha |113323.8-772722 |M | 11. |< 13.1 | |p | | | | |Me |04001 05254| +220112 |CL Cha |130004.6-782858 |LB: | 13. | 14.5 | |p | | | | |Me |04001 05523| +220113 |CM Cha |130213.9-763758 |IT: | 13.8 | 14.4 | |p | | | | |e(T) |08727 04001| +220114 |CN Cha |105957.6-795701 |SR: | 15. | 17. | |p | | | | | |04001 04001| +220115 |CO Cha |124008.2-803155 |M | 13.0 |< 17. | |p | | | | | |04159 04001| +220116 |CP Cha |124516.4-781605 |L: | 15.5 | 17. | |p | | | | | |04001 04001| +220117 |CQ Cha |125007.0-775601 |CWA | 13.0 | 13.9 | |p |36695. | | 12.3 |50 : | |08727 04001| +220118 |CR Cha |105907.0-770140 |INB | 11.20 | 11.37 | |V | | | | |K2e |06415 06415| +220119 |CS Cha |110224.9-773336 |INB | 11.56 | 11.70 | |V | | | | |K5e |08378 08390| +220120 |CT Cha |110409.7-762719 |INB | 12.31 | 12.43 | |V | | | | |G8:ea |08378 08390| +220121 |CU Cha |110803.3-773918 |INA | 8.38 | 8.48 | |V | | | | |B9-A0Vpe |08378 06415| +220122 |CV Cha |111227.7-764422 |INB | 10.93 | 10.98 | |V | | | | |G8e(T:) |06415 06415| +220123 |CW Cha |111231.2-764423 |INB | 14.45 | 14.91 | |V | | | | |G:e |08390 08390| +220124 |CX Cha *|104416.9-783947 |EW/KW | 15.2 | 15.6 | 15.5 |p |36684.252 | | 0.3604 | | |08727 04001| +220125 |CY Cha *|104721.6-792931 |EW/KW | 13.5 | 14.0 | 14.0 |p |36685.250 | | 0.4440 | | |08727 04001| +220126 |CZ Cha *|105317.5-794141 |EW | 14.0 | 14.6 | 14.6 |p |36685.269 | | 0.6250 | | |08727 04001| +220127 |DD Cha *|110857.2-804049 |EW | 14.2 | 14.7 | 14.7 |p |36684.262 | | 0.5716 | | |08727 04001| +220128 |DE Cha |114635.6-763515 |RRAB | 14.5 | 15.4 | |p |36684.250 | | 0.3258 |13 | |08727 04001| +220129 |DF Cha |120732.5-792433 |E | 14.3 | 15.2 | |p |36723.298 | | | | |08727 04001| +220130 |DG Cha *|124108.5-784038 |EW/KE: | 13.8 | 14.6 | 14.5 |p |36684.250 | | 1.0128 : | | |08727 04001| +220131 |DH Cha |132320.2-801640 |SR: | 14.8 | 16.0 | |p | | | | | |08727 04001| +220132 |DI Cha |110720.7-773807 |INT | 10.65 | 10.74 | |V | | | | | |70037 70009| +220133 |DK Cha |125317.1-770711 |INA | 9.28 | 11.15 | |J | | | | | |72057 72058| +220134 |DL Cha |130608.6-770627 |SRB | 12.3 | 13.3 | |p | | | | | |73105 73106| +220135 |DM Cha |085924.6-780534 |SRB | 8.22 | 8.36 | |Hp| | | | | |HIP HIP | +220136 |DN Cha |090005.1-754332 |SRB | 7.62 | 7.72 | |Hp| | | | | |HIP HIP | +220137 |DO Cha |090747.2-821930 |ELL: | 7.74 | 7.78 | |Hp| | | | | |HIP HIP | +220138 |DP Cha |094724.3-810341 |SRB | 7.84 | 7.98 | |Hp| | | | | |HIP HIP | +220139 |DQ Cha |103252.7-810947 |ACV | 7.80 | 7.84 | |Hp| | | | | |HIP HIP | +220140 |DR Cha |104151.5-794700 |E | 5.94 | 5.99 | |Hp| | | | | |HIP HIP | +220141 |DS Cha |111641.4-791553 |LB: | 8.96 | 9.09 | |Hp| | | | | |HIP HIP | +220142 |DT Cha |114436.1-774903 |LB: | 8.56 | 8.66 | |Hp| | | | | |HIP HIP | +220143 |DU Cha |114714.3-763705 |LB | 7.10 | 7.55 | |Hp| | | | | |HIP HIP | +220144 |DV Cha |114930.6-760932 |ACV | 9.93 | 10.07 | |Hp| | | | | |HIP HIP | +220145 |DW Cha |115828.2-775430 |BY: | 10.64 | 10.83 | |Hp| | | | | |HIP HIP | +220146 |DX Cha |120005.1-781135 |IA: | 6.59 | 6.70 | |Hp| | | | | |HIP HIP | +220147 |DY Cha |133912.0-754102 |LPB | 6.32 | 6.34 | |Hp| | | | | |HIP HIP | +220148 |DZ Cha |114932.6-785101 |INT | 12.72 | 13.06 | |V | | | | | |75086 GSC | +220149 |EE Cha |115835.2-774932 |DSCT | 7.04 | 7.15 | |B | | | | | |76116 DM | +220150 |EF Cha |120705.5-784428 |DSCT | 7.86 | 7.97 | |B | | | | | |76116 DM | +220151 |EG Cha |083656.2-785646 |INT | 10.61 |( 0.07 )| |V | | | | | |77073 77074| +220152 |EH Cha |084137.2-790331 |INT | 14.33 |( 0.08 )| |V | | | | | |77073 77074| +220153 |EI Cha |084223.7-790404 |INT | 12.73 |( 0.13 )| |V | | | | | |77073 77074| +220154 |EK Cha |084227.3-785749 |INT | 15.20 |( 0.03 )| |V | | | | | |77073 77074| +220155 |EL Cha |084239.3-785444 |INT | 14.08 |( 0.16 )| |V | | | | | |77073 77074| +220156 |EM Cha |084307.1-790453 |INT | 10.84 |( 0.05 )| |V | | | | | |77073 77074| +220157 |EN Cha |084416.6-785909 |INT | 15.00 |( 0.38 )| |V | | | | | |77073 77074| +220158 |EO Cha |084432.4-784632 |INT | 12.53 |( 0.26 )| |V | | | | | |77073 77074| +220159 |EP Cha |084701.6-785934 |INT | 11.13 |( 0.19 )| |V | | | | | |77073 77074| +220160 |EQ Cha |084757.2-785454 |INT | 13.17 |( 0.20 )| |V | | | | | |77073 77074| +220161 |ER Cha |100513.7-790344 |DSCTC | 7.6 |( 0.08 )| |B | | | | | |77086 DM | +220162 |ES Cha *|084130.6-785307 |INT | 17.07 |( 0.14 )| |V | | | | |M4 |78111 78111| +220163 |ET Cha *|084318.6-790518 |INT | 13.97 |( 0.7 )| |V | | | | |M2e |78111 78111| +220164 |EU Cha |092308.1-783641 |M | 12.4 |< 15.2 | |V |53133 | | 228. | | |78040 USNO | +220165 |EV Cha |133252.5-761222 |M | 11.1 | 14.0 | |V |52731 | | 166. | |Me |78090 78133| +220166 |EW Cha |091402.6-821312 |EA | 8.60 | 8.91 | 8.65 |V |52658.760 | | 3.81876 |05 |A1V |79011 DM | +220167 |EX Cha |093325.7-785255 |M | 11.2 |< 15.0 | |V |52404. | | 238. | | |79064 79076| +220168 |EY Cha |103525.0-775909 |SRA: | 13.0 | 14.3 | |V |53793. | | 154. | | |79100 79063| +220169 |EZ Cha |103909.0-775722 |LB | 9.0 | 10.3 | |V | | | | |Mc |79100 DM | +220170 |FF Cha |104644.9-802614 |LB | 9.6 | 10.7 | |V | | | | | |79100 79082| +220171 |FG Cha |105128.6-804640 |SRA | 12.1 | 14.8 | |V |53577. | | 176. | | |79064 79081| +220172 |FH Cha |110014.1-764416 |IT: | 13.3 | 14.8 | |V | | | | |pec(e) |79100 79085| +220173 |FI Cha |110743.7-773941 |INT | 8.22 | 8.39 | |Ks| | | | |M0.5e |79088 79085| +220174 |FK Cha |110758.0-773845 |INT | 6.83 | 7.33 | |Ks| | | | |K7e |79088 79085| +220175 |FL Cha |110839.0-771604 |INT | 8.83 | 9.22 | |Ks| | | | |K8e |79088 79085| +220176 |FM Cha |110953.4-763426 |INT | 9.22 | 10.20 | |J | | | | |K4-K6e |79088 79085| +220177 |FN Cha |111004.7-763545 |INT | 9.12 | 9.32 | |Ks| | | | |M0e |79088 79088| +220178 |FO Cha *|111049.6-771752 |INT | 9.20 | 9.42 | |Ks| | | | |K7e |79088 79085| +220179 |FP Cha |112405.9-755449 |SRA | 11.3 | 12.6 : | |V |53774. | | 234. | | |79072 79063| +220180 |FQ Cha |113011.0-780703 |SRB | 11.4 | 13.3 | |V | | | 177. | | |79100 79063| +220181 |FR Cha |113522.8-815050 |SRB | 11.3 | 12.6 | |V | | | 144. | | |79100 79063| +220182 |FS Cha |115138.6-781154 |M | 12.5 |< 14.6 | |V |53574. | | 281. | | |79064 USNO | +220183 |FT Cha |115153.9-764407 |SRA | 12.8 | 14.5 | |V |53764. | | 154.9 | | |79064 79063| +220184 |FU Cha |120059.3-794600 |SRB | 10.6 | 11.3 | |V | | | 70.7 | | |79064 79063| +220185 |FV Cha |123333.9-822628 |SRB | 9.92 | 10.18 | |V | | | 26.5 | | |79064 79063| +220186 |FW Cha |124556.9-810008 |M | 12.4 |< 15.0 | |V |53798. | | 202. | | |79093 79093| +220187 |FX Cha |125057.1-811924 |SRB | 12.8 | 14.8 | |V | | | 174. | | |79100 79063| +220188 |FY Cha |130210.3-760304 |LB: | 12.8 | 14.2 | |V | | | | | |79100 79063| +220189 |FZ Cha |130423.1-792738 |LB | 11.1 | 12.3 | |V | | | | | |79100 79063| +220190 |GG Cha |132157.3-781043 |LB | 8.0 | 8.9 | |V | | | | |M5III |79100 DM | +220191 |GH Cha |132927.8-790704 |SRB | 9.2 | 10.1 | |V | | | 280. | | |79100 DM | +220192 |GI Cha |133625.5-793327 |SRB | 12.1 | 13.3 | |V | | | 276. | | |79064 79063| +220193 |GK Cha |133753.4-755022 |M | 12.4 |< 14.1 | |V |53851. | | 277. | | |79190 USNO | +220194 |GL Cha |134735.3-760715 |M | 12.2 |< 14.5 | |V |53895. | | 283. | | |79100 GSC | +220195 |GM Cha *|110928.6-763328 |INT | 10.61 | 12.75 | |Ks| | | | | |80434 80434| NL80_2 +220196 |GN Cha |093006.1-800114 |SRB | 13.1 |< 14.4 | |V | | | 102. | | |80001 GSC | NL80_2 +220197 |GO Cha *|093310.4-802834 |EW | 10.64 | 10.97 | 10.95 |V |51868.118 | | 0.406067 | | |80036 GSC | NL80_2 +220198 |GP Cha *|095357.6-763652 |RVB | 11.0 | 13.0 | |V | | | 100.6 | |G0 |80184 GSC | NL80_2 +220199 |GQ Cha *|100452.5-792805 |EA | 13.65 |< 14.8 | 13.8 |V |54159.79 | | 2.09192 |12 | |80011 GSC | NL80_2 +220200 |GR Cha |110347.6-771956 |INT | 9.99 | 10.12 | |Ks| | | | |M5e |80348 80349| NL80_2 +220201 |GS Cha *|110415.1-760638 |INB | 13.78 | 14.10 | |Ks| | | | | |80348 2MASS| NL80_2 +220202 |GT Cha *|110429.5-765619 |E: | 13.56 | 13.92 | |Ks| | | | | |80348 2MASS| NL80_2 +220203 |GU Cha |110457.0-771557 |INT | 10.20 | 11.23 | |Ks| | | | |M3e |80348 80350| NL80_2 +220204 |GV Cha |110519.4-760826 |E: | 13.33 | 13.83 | |Ks| | | | | |80348 2MASS| NL80_2 +220205 |GW Cha |110637.9-791011 |E: | 12.17 | 12.58 | |Ks| | | | | |80348 2MASS| NL80_2 +220206 |GX Cha |110641.8-763549 |INT | 10.09 | 10.28 | |Ks| | | | |M4.5e |80348 80349| NL80_2 +220207 |GY Cha |110711.2-761947 |E: | 12.90 | 13.60 | |Ks| | | | | |80348 2MASS| NL80_2 +220208 |GZ Cha |110716.2-772307 |INB | 11.34 | 11.75 | |Ks| | | | |M1 |80348 2MASS| NL80_2 +220209 |HH Cha |110729.9-772502 |E: | 10.84 | 11.20 | |Ks| | | | |A |80348 2MASS| NL80_2 +220210 |HI Cha |110735.2-773449 |INT | 16.2 |( 0.18 )| |R | | | 4.75 | |M5e |80352 80353| NL80_2 +220211 |HK Cha *|110742.5-773359 |INT | 17.7 |( 0.06 )| |R | | | 3.21 | |M6e |80352 80353| NL80_2 +220212 |HL Cha |110752.3-773657 |INT | 14.90 |( 0.08 )| |I | | | 2.19 | |M6e |80352 80353| NL80_2 +220213 |HM Cha *|110757.3-771726 |INT | 9.62 | 9.99 | |Ks| | | | |M1e |80348 2MASS| NL80_2 +220214 |HN Cha *|110758.1-774241 |INT | 9.76 | 10.07 | |Ks| | | | |M2.5e |80348 80350| NL80_2 +220215 |HO Cha *|110803.0-773843 |INT | 8.09 | 8.36 | |Ks| | | | |M1e |80348 2MASS| NL80_2 +220216 |HP Cha *|110815.2-773353 |INT | 6.07 | 6.36 | |Ks| | | | |K7e |80348 80353| NL80_2 +220217 |HQ Cha |110839.5-773417 |INT | 14.97 |( 0.06 )| |I | | | 3.36 | |M6e |80352 80353| NL80_2 +220218 |HR Cha |110854.2-773212 |INT | 14.76 |( 0.07 )| |I | | | 4.25 | |M5e |80352 80353| NL80_2 +220219 |HS Cha |110855.0-763241 |INT | 11.43 | 11.61 | |Ks| | | | |M5.5e |80348 2MASS| NL80_2 +220220 |HT Cha |110907.9-764911 |ISB: | 11.50 | 11.92 | |Ks| | | | |M3 |80348 2MASS| NL80_2 +220221 |HU Cha |110918.1-763029 |INT | 9.10 | 9.36 | |Ks| | | | |M1e |80348 80349| NL80_2 +220222 |HV Cha |110922.7-763432 |INT | 8.53 | 9.04 | |Ks| | | | |M1e |80348 2MASS| NL80_2 +220223 |HW Cha |110941.9-763458 |INB | 9.93 | 10.15 | |Ks| | | | | |80348 2MASS| NL80_2 +220224 |HX Cha |110954.1-762925 |INT | 9.22 | 9.40 | |Ks| | | | |M2e |80348 80350| NL80_2 +220225 |HY Cha |110954.4-763111 |INT | 12.71 | 13.18 | |Ks| | | | |M2e |80348 2MASS| NL80_2 +220226 |HZ Cha |110955.1-763241 |INB | 9.63 | 10.10 | |Ks| | | | | |80348 2MASS| NL80_2 +220227 |II Cha |111003.8-755340 |E: | 12.10 | 12.61 | |Ks| | | | | |80348 GSC | NL80_2 +220228 |IK Cha |111053.6-772501 |INT | 10.80 | 11.50 | |Ks| | | | |M4.5e |80348 2MASS| NL80_2 +220229 |IL Cha |111134.8-763621 |INT | 9.60 | 9.83 | |Ks| | | | |M2.5e |80348 GSC | NL80_2 +220230 |IM Cha |111203.5-772601 |INT | 11.45 | 12.04 | |Ks| | | | |M5e |80348 80355| NL80_2 +220231 |IN Cha |111209.8-763437 |INT | 9.77 | 9.97 | |Ks| | | | |M5e |80348 80350| NL80_2 +220232 |IO Cha |111333.6-763537 |INT | 10.65 | 10.86 | |Ks| | | | |M4.5e |80348 80350| NL80_2 +220233 |IP Cha |111407.8-763609 |E: | 13.36 | 13.78 | |Ks| | | | | |80348 2MASS| NL80_2 +220234 |IQ Cha |111508.0-790121 |SR: | 13.5 |< 15.0 | |V | | | 223. : | | |80001 2MASS| NL80_2 +220235 |IR Cha |123215.9-771723 |LB | 12.7 | 14.0 | |V | | | | | |80001 GSC | NL80_2 +220236 |IS Cha |124338.3-774614 |EA | 13.7 | 14.1 | |V |53794.81 | | 4.9695 |10 | |80011 GSC | NL80_2 +220237 |IT Cha *|135303.9-800109 |EW | 12.65 | 13.1 | 13.1 |V |53449.8177 | | 0.716652 | | |80002 GSC | NL80_2 +229006 |zet Cha *|093353.4-805629 | | 5.06 | 5.17 | |V | | | | |B5IV |04614 CPD | +230001 |R Cir |152753.6-574335 |SRB | 10.2 | 12.1 | |p | | | 222. | |M4/6III |00023 08953| +230002 |S Cir *|152917.4-580443 |EA/DS | 10.8 | 12.1 | 10.9 |p |29117.474 | | 9.976596 |15 |A: |00007 CoD | +230003 |T Cir *|134324.0-652832 |EA/SD | 9.3 | 10.6 | 9.4 |p |29095.586 | | 3.2984345 |13 |B6/8II/III |00007 06965| +230004 |U Cir *|140542.4-670055 |SR | 12.0 | 13.5 | |p |23950. | | 145. | |C |00047 00022| +230005 |V Cir *|144454.7-570156 |EB/DM | 10.8 | 11.3 | 11.0 |p |38499.325 | | 4.40901 | | |08040 CPD | +230006 |W Cir *| | | | | | | | | | | | |=NW Lup +230007 |X Cir |144247.0-651236 |NB | 6.5 |< 16.5 | |p |24762. |1926 | | |pec(NOVA) | 08953| +230008 |Y Cir |133909.9-650211 |E/SD: | 10.8 | 11.8 | |p |25327.50 | | 3.17 | | |00047 00022| +230009 |Z Cir |135102.5-702823 |RCB: | 12.0 | 15.0 | |p | | | | |Me |03578 00022| +230010 |RR Cir |135034.6-665752 |E | 12.0 | 13.0 | |p | | | | | |00047 00022| +230011 |RS Cir |135150.9-685148 |SR | 13.5 | 15.7 | |p |25320. | | 120.2 | | |00047 00022| +230012 |RT Cir |135202.6-701017 |RRAB | 14.2 | 15.5 | |p |25355.50 | | 0.48373 |28 | |00047 00022| +230013 |RU Cir |135301.5-692934 |M | 13.4 |< 16.5 | |p |26015. | | 278. | | |00047 00022| +230014 |RV Cir |135320.3-652427 |RR: | 13.5 | 14.6 | |p | | | | | |00047 00022| +230015 |RW Cir |135359.2-685040 |M: | 14.9 |< 16.5 | |p |25670. | | 310. | | |00047 00022| +230016 |RX Cir |135420.1-695403 |RR | 12.8 | 14.2 | |p |25327.50 | | 0.46098 | | |00047 00022| +230017 |RY Cir |135534.8-671715 |M | 13.7 |< 16.5 | |p |25780. | | 415. | |S6,8e |00047 00022| +230018 |RZ Cir |135657.5-645820 |E/SD | 14.1 | 15.2 | |p |25384.34 | | 3.6933 | | |00047 00022| +230019 |SS Cir |135732.2-655347 |RR: | 13.2 | 14.7 | |p | | | | | |00047 00022| +230020 |ST Cir |140112.5-693224 |M | 12.4 | 16.0 : | |p |25410. | | 193.8 | | |00047 00022| +230021 |SU Cir |140101.6-654632 |M: | 14.9 |< 16.5 | |p |26100. | | 224.3 | | |00047 00022| +230022 |SV Cir |140142.4-674139 |E/SD: | 13.0 | 15.0 | |p | | | | | |00047 00022| +230023 |SW Cir |140216.0-702944 |M | 14.4 |< 16.5 | |p |25390. | | 109.5 | | |00047 00022| +230024 |SX Cir |140139.2-655219 |M | 14.3 |< 16.5 | |p |26130. | | 206. | | |00047 00022| +230025 |SY Cir |140333.8-693754 |RV | 12.2 | 15.0 | |p |25328.0 | | 46.36 | | |00047 00022| +230026 |SZ Cir |140505.1-703432 |M | 13.0 |< 16.5 | |p |24000. | | 273. | | |00047 00022| +230027 |TT Cir |140430.9-682624 |M | 14.0 | 17.5 | |p |23960. | | 326. | | |00047 00022| +230028 |TU Cir |140544.9-654814 |M | 12.8 |< 16.5 | |p |26030. | | 303. | | |00047 00022| +230029 |TV Cir |140658.0-693239 |M: | 15.0 |< 16.5 | |p |25660. | | 294. | | |00047 00022| +230030 |TW Cir *|140828.8-700941 |E/SD | 13.0 | 14.3 | 13.3 |p |25356.41 | | 1.11015 | | |00047 00022| +230031 |TX Cir |140817.8-672141 |M: | 14.9 |< 16.4 : | |p |25810. | | 425. | | |00047 00022| +230032 |TY Cir |140841.1-681455 |S: | 12.5 | 13.5 | |p | | | | | |00047 00022| +230033 |TZ Cir |141117.7-683844 |M | 14.0 |< 16.5 | |p |26030. | | 169.7 | | |00047 00022| +230034 |UU Cir |141118.3-670345 |M | 13.5 |< 16.5 | |p |25400. | | 132.5 | |M6e |00047 00022| +230035 |UV Cir |141248.6-684116 |S: | 13.2 | 14.5 | |p | | | | | |00047 00022| +230036 |UW Cir |141209.8-675757 |SR | 13.0 | 14.8 | |p |26150. | | 190.5 | | |00047 00022| +230037 |UX Cir |141559.3-673909 |E | 12.2 | 13.3 | |p | | | | | |00047 00022| +230038 |UY Cir *|141757.1-675740 |S: | 13.3 | 14.2 | |p | | | | | |00047 00022| +230039 |UZ Cir *|142052.1-673056 |M | 11.1 | 15.8 | |p |21700. | | 538. | | |00047 00022| +230040 |VV Cir |142116.2-664051 |M | 13.0 |< 16.5 | |p |25460. | | 423.5 | | |00047 00022| +230041 |VW Cir |142153.9-662234 |SRB | 10.5 | 12.1 | |p |14750. | | 206. |47 |M2e |00047 00022| +230042 |VX Cir *|142308.4-695735 |M | 11.0 |< 16.5 | |p |25370. | | 417. | |M7e |00047 00022| +230043 |VY Cir |142423.2-695758 |E/SD: | 11.7 | 13.0 | |p | | | | | |00047 00022| +230044 |VZ Cir |142401.9-660552 |S: | 12.6 | 14.1 | |p | | | | | |00047 00022| +230045 |WW Cir |142448.9-650348 |M: | 15.3 |< 16.5 | |p |25380. | | 430. | | |00047 00022| +230046 |WX Cir |142529.8-690803 |M | 13.4 |< 16.5 | |p |25320. | | 266. | | |00047 00022| +230047 |WY Cir |142636.8-650000 |M | 13.5 |< 16.5 | |p |26150. | | 337.3 | | |00047 00022| +230048 |WZ Cir |142823.8-693148 |M | 13.3 |< 16.5 | |p |23970. | | 252. | | |00047 00022| +230049 |XX Cir |142933.5-683758 |RR | 14.0 | 15.5 | |p |23991.50 | | 0.41905 | | |00047 00022| +230050 |XY Cir |143103.9-663854 |E | 12.1 | 13.0 | |p | | | | | |00047 00022| +230051 |XZ Cir |143626.0-695046 |M | 14.2 |< 16.5 | |p |23880. | | 325. | | |00047 00022| +230052 |YY Cir |143628.6-663453 |M | 14.0 | 16.6 | |p |26045. | | 220. | | |00047 00022| +230053 |YZ Cir |143649.8-673739 |M | 14.2 |< 16.5 | |p |23990. | | 320. | | |00047 00022| +230054 |ZZ Cir |143824.1-663014 |E: | 13.5 | 14.2 | |p | | | | | |00047 00022| +230055 |AA Cir |143953.0-675626 |M | 14.2 |< 16.5 | |p |25650. | | 281. | | |00047 00022| +230056 |AB Cir |144002.5-670223 |M | 13.8 |< 16.5 | |p |25380. | | 273. | | |00047 00022| +230057 |AC Cir |144112.5-703132 |RR: | 14.3 | 15.2 | |p | | | | | |00047 00022| +230058 |AD Cir |144133.1-682316 |LB: | 10.9 | 12.4 | |p | | | | |M5 |00016 00022| +230059 |AE Cir |144451.3-692335 |RCB | 12.2 | 16.0 : | |p | | | | | |00047 08129| +230060 |AF Cir |144730.3-695348 |S: | 13.7 | 14.5 | |p | | | | | |00047 00022| +230061 |AG Cir |144722.8-675530 |S: | 12.5 | 13.5 | |p | | | | | |00047 00022| +230062 |AH Cir |144929.9-693916 |RR | 14.8 | 16.2 | |p | | | | | |00047 00022| +230063 |AI Cir |144931.3-685136 |N | 10.9 |< 16.5 | |p |20282. |1914 | | | |00047 00022| +230064 |AK Cir |145000.3-685234 |M | 13.4 |< 16.5 | |p |25660. | | 287.5 | | |00047 00022| +230065 |AL Cir |145023.3-702713 |S: | 13.2 | 14.0 | |p | | | | | |00047 00022| +230066 |AM Cir |145353.4-691519 |M | 14.2 |< 16.5 | |p |25410. | | 281.7 | | |00047 00022| +230067 |AN Cir |140421.9-653805 |EA/SD | 13.8 | 16.6 | |p |25775.28 | | 4.6415 | | |00014 06286| +230068 |AO Cir |140632.9-650444 |M | 13.2 | 15.8 | |p |26410. | | 427. | | |00014 06286| +230069 |AP Cir |135122.2-653012 |M: | 15.0 |< 16.5 | |p | | | | | |00014 2MASS| +230070 |AQ Cir *|143719.8-644524 |E/KE | 11.0 | 11.7 | |p |28656.350 | | 0.57284 | |OB |00016 CPD | +230071 |AR Cir *|144809.3-600025 |NB | 10.3 | 15.0 | |p |17258. |1906 | | | |01887 08953| +230072 |AS Cir |151339.5-602018 |SR: | 12. |< 13.5 | |p | | | | |C |00085 04256| +230073 |AT Cir *|140338.2-664407 |EA/DM | 8.4 | 8.8 | |p |15221.517 | | 3.257494 |15 |A5IV/V |08040 06871| +230074 |AU Cir |144345.3-664213 |EA/SD | 10.7 | 11.9 | |V |28334.225 | | 2.0660680 |14 *| |04183 CPD | +230075 |AV Cir |145030.3-672951 |DCEP | 8.0 | 8.6 | |p |38206.05 | | 3.0651 |40 |F7II |04383 08953| +230076 |AW Cir |145011.0-643243 |EA/SD: | 12. | 13.5 | |p | | | | | |06561 06561| +230077 |AX Cir *|145235.3-634835 |DCEP | 5.65 | 6.09 | |V |38199.54 | | 5.273268 |32 |F2-G2II+B4 |05060 CPD | +230078 |AY Cir |143536.2-683845 |EA | 15. | 16. | |p |38524.47 | | | | |03776 03776| +230079 |AZ Cir |143822.4-661444 |EA | 14.5 | 15.5 | |p |38547.29 | | | | |03776 03776| +230080 |BB Cir |144257.5-581824 |EA/SD: | 9.4 | 10.2 | |p |38195.225 | | 3.0872 | |A2IV |05137 08953| +230081 |BC Cir |145126.2-702926 |RR | 15. | 16. | |p |38551.40 | | | | |03776 03776| +230082 |BD Cir *|145105.4-555500 |EA/KE: | 9.4 | 9.9 | 9.5 |p |38205.310 | | 0.86956 |18 | |04430 08953| +230083 |BE Cir |145442.9-653403 |EA/SD: | 15.5 |< 17. | |p | | | | | |03776 03776| +230084 |BF Cir *|150232.0-645742 |EB/DM: | 8.8 | 9.2 | 8.9 |p |38199.345 | | 6.458997 | |B5V |08040 08667| +230085 |BG Cir *|150421.5-660504 |EB/DM | 9.6 | 10.3 | 10.3 |p |34365.525 | | 1.911485 | |ea |03922 08667| +230086 |BH Cir |151751.2-640058 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +230087 |BI Cir |143250.0-692644 |SR: | 15.5 | 16.5 | |p | | | | | |03776 03776| +230088 |BK Cir |143453.4-662207 |SR: | 14. | 15. | |p | | | | | |03776 03776| +230089 |BL Cir |144956.7-692051 |SR: | 15. | 16. | |p | | | | | |03776 03776| +230090 |BM Cir |144958.4-660232 |SR: | 15.5 | 16.5 | |p | | | | | |03776 03776| +230091 |BN Cir *|151750.4-594342 |E | 9.2 | 9.6 | |p |38233.250 | | 6.7125 | |B9III/IV |06336 06336| +230092 |BO Cir |144600.4-652300 |DSCTC | 9.73 |( 0.02 )| |V |43584.120 | | 0.1412 |40 |Fm |08391 CPD | +230093 |BP Cir |144642.0-612743 |CEP | 7.54 |( 0.33 )| |V | | | 2.3984 |42 |F2/3II |02873 CPD | +230094 |BQ Cir |151540.9-590838 |SRB: | 14.7 | 15.7 | |V | | | | |ea |08392 08392| +230095 |BR Cir *|152040.8-571000 |XF | 7.21 | 11.38 | |K | | | | |e |02936 02911| +230096 |BS Cir |142332.1-663842 |ACV | 6.7 |( 0.14 )| |V | | | 2.205 | |A2p(Si-Cr) |02590 CPD | +230097 |BT Cir |144304.5-621226 |DSCTC | 7.4 |( 0.01 )| |V | | | | | |67247 CPD | +230098 |BU Cir |144511.0-553606 |BCEP | 6.10 |( 0.02 )| |V | | | | | |67249 CPD | +230099 |BV Cir |150102.2-643434 |DSCT | 6.8 |( 0.10 )| |V | | | | | |67250 CPD | +230100 |BW Cir |135809.7-644405 |XN | 16.9 |< 17.5 | |V | | | | | |69095 | +230101 |BX Cir |140136.5-660956 |PVTEL | 12.53 | 12.58 | |V | | | | | |73107 73090| +230102 |BY Cir |144453.5-635356 |N | 7.2 |< 12. | |V | | | | | |73108 73109| +230103 |BZ Cir |145415.2-681619 |NL | 18.15 |( 0.6 )| |V | | | | | |73110 73111| +230104 |CC Cir |151457.7-595030 |WR | 11.71 |( 0.10 )| |V | | | | | |73112 73090| +230105 |CD Cir |134631.5-644032 |LB: | 7.74 | 7.82 | |Hp| | | | | |HIP HIP | +230106 |CE Cir |140420.9-652458 |E: | 7.94 | 8.06 | |Hp| | | | | |HIP HIP | +230107 |CF Cir |141303.5-652653 |WR | 11.89 | 12.40 | |Hp| | | | | |HIP HIP | +230108 |CG Cir |143459.8-660150 |EA | 10.34 | 10.76 | |Hp| | | | | |HIP HIP | +230109 |CH Cir |143535.1-684421 |ACV | 7.72 | 7.78 | |Hp| | | | | |HIP HIP | +230110 |CI Cir |143555.0-695814 |LB | 7.12 | 7.23 | |Hp| | | | | |HIP HIP | +230111 |CK Cir |143931.7-681212 |BE | 6.81 | 6.89 | |Hp| | | | | |HIP HIP | +230112 |CL Cir |144404.1-562133 |EA | 8.57 | 9.15 | |Hp| | | | | |HIP HIP | +230113 |CM Cir |144757.1-683111 |ACV | 7.08 | 7.14 | |Hp| | | | | |HIP HIP | +230114 |CN Cir |144749.0-602526 |EB | 8.92 | 9.18 | |Hp| | | | | |HIP HIP | +230115 |CO Cir |144844.5-663537 |BE | 5.79 | 5.92 | |Hp| | | | | |HIP HIP | +230116 |CP Cir |145034.2-661534 |GCAS: | 7.51 | 7.74 | |Hp| | | | | |HIP HIP | +230117 |CQ Cir |145050.3-601710 |BE | 9.91 | 10.06 | |Hp| | | | | |HIP HIP | +230118 |CR Cir |145456.9-610433 |LC: | 7.39 | 7.50 | |Hp| | | | | |HIP HIP | +230119 |CS Cir |145812.2-611404 |EB | 8.95 | 9.14 | |Hp| | | | | |HIP HIP | +230120 |CT Cir |145841.2-575104 |SRB | 8.11 | 8.30 | |Hp| | | | | |HIP HIP | +230121 |CU Cir |150730.1-604637 |BE | 8.48 | 8.59 | |Hp| | | | | |HIP HIP | +230122 |CV Cir |150903.3-615315 |BE | 6.90 | 7.03 | |Hp| | | | | |HIP HIP | +230123 |CW Cir |151516.2-581022 |BE | 7.95 | 8.16 | |V | | | | | |HIP HIP | +230124 |CX Cir |151524.1-590429 |ACYG: | 8.04 | 8.23 | |Hp| | | | | |HIP HIP | +230125 |CY Cir |152013.0-572353 |LB | 6.98 | 7.14 | |Hp| | | | | |HIP HIP | +230126 |CZ Cir |152220.1-590850 |ACYG: | 7.92 | 8.02 | |Hp| | | | | |HIP HIP | +230127 |DD Cir |142323.4-690845 |NA | 7.5 |< 21. | |V | | | | | |75292 75293| +230128 |DE Cir |151752.5-615716 |N | 7.5 |< 18. | |* |52922. |2003 | | |pec(Nova) |78177 | +230129 |DF Cir |141751.4-680249 |RS | 7.54 |( 0.08 )| |V | | | 0.646 | |F5V |78046 DM | +230130 |DG Cir |150323.8-632259 |INA | 12.75 | 16.80 | |V | | | | |Beq |78038 GSC | +230131 |DH Cir |134255.1-652242 |SRB | 12.1 | 12.9 | |V | | | 55. | | |79064 GSC | +230132 |DI Cir |140149.5-644917 |EA | 11.30 | 11.70 | 11.36 |V |52720.688 | | 1.44876 |14 | |79003 79099| +230133 |DK Cir *|144712.7-574038 |EA | 7.68 | 7.98 | 7.77 |V |52776.748 | | 18.569 |03 : |A1IV |79011 DM | +230134 |DL Cir |144808.1-603409 |EA | 12.30 | 13.85 | 12.45 |V |52643.849 | | 2.43419 |10 | |79018 79087| +230135 |DM Cir |152408.5-565015 |EW | 9.99 | 10.51 | 10.43 |V |53011.851 | | 0.386773 | |F7/G0 |79018 DM | +230136 |DN Cir |135129.2-654656 |M | 5.82 | 7.60 | |K | | | 690. | |C |80166 2MASS| NL80_2 +230137 |DO Cir |135203.6-673056 |M | 3.03 | 4.70 | |K | | | 500. | |C |80166 2MASS| NL80_2 +230138 |DP Cir |135659.5-703517 |M | 12.6 |< 15.0 | |V |54565. | | 171. | | |80297 80297| NL80_2 +230139 |DQ Cir |140600.1-684412 |M | 13.5 |< 14.4 | |V |53464. | | 284. | | |80297 80297| NL80_2 +230140 |DR Cir |141315.7-651257 |M: | 13.2 | 17.0 | |R | | | | |M9 |80001 2MASS| NL80_2 +230141 |DS Cir |141856.4-691427 |SRB | 11.5 | 12.2 | |V | | | 81. | | |80001 GSC | NL80_2 +230142 |DT Cir |142315.1-653331 |M: | 13.7 |< 14.6 | |V |54165. | | 303. | |M9:p |80399 80399| NL80_2 +230143 |DU Cir |142436.7-653750 |M | 11.7 | 16.7 | |R |53454. | | 270. : | | |80001 2MASS| NL80_2 +230144 |DV Cir |143848.7-684849 |M | 10.2 |< 14.3 | |V |54691. | | 352. | |Me |80399 80399| NL80_2 +230145 |DW Cir |143856.0-692232 |M: | 13.3 |< 14.5 | |V |52102. | | 227. : | | |80001 2MASS| NL80_2 +230146 |DX Cir |144043.7-645307 |M: | 11.8 |< 13.4 | |V |53741. | | 273. | | |80001 2MASS| NL80_2 +230147 |DY Cir |144313.8-570845 |M | 5.74 | 6.24 | |K | | | 488. | |C |80166 2MASS| NL80_2 +230148 |DZ Cir |144426.3-633328 |M | 7.20 | 9.63 | |K | | | 643. | |C |80166 2MASS| NL80_2 +230149 |EE Cir |144548.6-634551 |M | 11.7 |< 14.6 | |V |54493. | | 372. | | |80399 80399| NL80_2 +230150 |EF Cir |144610.9-565209 |M: | 13.0 |< 14.5 | |V |52491. | | 298. : | | |80001 2MASS| NL80_2 +230151 |EG Cir |144716.1-641402 |M: | 13.7 |< 17.0 | |V |54506. | | 287. : | | |80001 2MASS| NL80_2 +230152 |EH Cir |144804.2-572037 |M | 7.87 | 10.12 | |K | | | 723. | |C |80166 2MASS| NL80_2 +230153 |EI Cir |144916.9-663923 |M | 11.8 |< 14.4 | |V |54480. | | 385. | | |80399 80399| NL80_2 +230154 |EK Cir |144937.5-670619 |M | 12.8 |< 14.7 | |V |52909. | | 402. | | |80399 80399| NL80_2 +230155 |EL Cir *|144941.0-674812 |M | 11.2 |< 14.0 | |V |53831. | | 232. | | |80399 80399| NL80_2 +230156 |EM Cir |145021.5-673824 |M | 13.5 |< 16.6 | |V |54270. | | 280. | | |80399 80399| NL80_2 +230157 |EN Cir |145152.0-685512 |M | 11.8 |< 14.6 | |V |54499. | | 439. | | |80399 80399| NL80_2 +230158 |EO Cir |145310.7-640034 |M | 12.3 |< 15.8 | |V |54543. | | 256. | | |80399 80399| NL80_2 +230159 |EP Cir |145416.2-644407 |M | 12.7 |< 15.5 | |V |54611. | | 298. | | |80399 80399| NL80_2 +230160 |EQ Cir |145558.1-655552 |SRA | 12.6 | 14.6 | |V |54994. | | 136. | | |80001 2MASS| NL80_2 +230161 |ER Cir |145902.1-654445 |M | 12.9 |< 14.5 | |V |54680. | | 378. | | |80399 80399| NL80_2 +230162 |ES Cir |150012.9-625403 |DSCT | 10.52 | 11.22 | |V | | | 0.101565 |19 | |80358 DM | NL80_2 +230163 |ET Cir |150125.4-654424 |M | 12.3 |< 14.9 | |V |55085. | | 437. | | |80002 2MASS| NL80_2 +230164 |EU Cir |150356.6-641343 |M | 12.3 |< 14.5 | |V |54705. | | 239. | |M5-M7 |80399 80399| NL80_2 +230165 |EV Cir |150546.5-582255 |DCEP | 11.9 | 13.1 | |V |53054.7 | | 16.7018 |25 | |80326 GSC | NL80_2 +230166 |EW Cir |151028.1-635423 |RRAB | 12.9 | 13.7 | |V |54250.6006 | | 0.415422 |20 | |80002 USNO | NL80_2 +230167 |EX Cir |151214.6-571328 |M | 6.17 | 8.63 | |K | | | 948. | | |80166 2MASS| NL80_2 +230168 |EY Cir |151335.3-635334 |SRB | 7.70 | 8.30 | |V | | | 58.0 | |M5III |80001 DM | NL80_2 +239001 |alf Cir |144230.4-645831 |ACVO | 3.18 | 3.21 | |V | | | | | |67251 CPD | +239003 |gam Cir |152322.6-591915 |BE: | 4.50 | 4.56 | |Hp| | | | | |HIP HIP | +239004 |del Cir |151656.9-605726 |ELL | 5.08 |( 0.1 )| |V | | | | | |72059 CPD | +239008 |tet Cir *|145644.0-624652 |GCAS | 5.02 | 5.44 | |V | | | | |B3Vne |08419 CPD | +240001 |R Col |055033.0-291155 |M | 7.8 | 15.0 | |V |42016. | | 327.62 |39 |M3e-M7 |00001 00002| +240002 |S Col |054656.3-314128 |M | 8.9 | 14.2 | |V |40559. | | 325.85 |46 |M6e-M8 |00001 00002| +240003 |T Col *|051917.3-334229 |M | 6.6 | 12.7 | |V |41973. | | 225.84 |50 |M3e-M6e |00001 00002| +240004 |U Col *|061453.1-330424 |EA/SD | 10.4 | 11.0 | 10.5 |p |28521.774 | | 1.24617466 |16 |A |00007 08953| +240005 |V Col |061015.2-304555 |M | 10.4 |< 15. | |p |14980. | | 300. | |Me |00213 08953| +240006 |W Col |062751.9-400558 |M | 9.3 |< 11.5 | |p |15411. | | 327. | |M6e |00213 08953| +240007 |X Col |052612.6-285021 |M | 11. |< 13. | |p |29500. | | 321.9 | | |01004 2MASS| +240008 |Y Col *|051402.7-400225 |S: | 14. | 15.5 | |p | | | | | |00214 08954| +240009 |Z Col *|051428.9-400257 |RRAB | 15.3 | 17.3 | |B |42662.860 | | 0.52059 |10 | |08954 08954| +240010 |RR Col |063319.0-351753 |EA | 10.2 | 10.7 | |p |14277.3 | | 11.305 :/N| | |00215 08953| +240011 |RS Col *|051531.2-284502 |EW/DW | 9.54 | 9.99 | 9.97 |V |40612.6483 | | 0.672355 | *|G+G |00001 08953| +240012 |RT Col |051650.6-272825 |RRAB | 12.4 | 13.5 | |B |27779.550 | | 0.5365936 |14 |A2II |00016 02338| +240013 |RU Col |053450.8-302515 |EA/SD: | 10.9 | 12.0 | |p |28862.429 :| | | | |00016 03389| +240014 |RV Col |053544.2-304935 |SRD | 9.3 | 10.3 | |p |27800. | | 105.7 |40 : |G5 |00016 03389| +240015 |RW Col |060338.6-313525 |RRAB | 11.5 | 12.5 | |p |27808.515 | | 0.529234 |15 | |00016 02338| +240016 |RX Col |061314.7-371501 |RRAB | 11.4 | 12.6 | |p |28812.567 | | 0.594043 | | |00016 02338| +240017 |RY Col *|051507.8-413742 |RRAB | 10.44 | 11.24 | |V |34310.565 | | 0.4788571 |15 |A7-F3 |03126 06286| +240018 |RZ Col *|051954.1-355406 |EW/KE | 11.0 | 11.58 | 11.20 |V |34326.2824 | | 0.56522725 | | |04826 04004| +240019 |SS Col |054143.4-385700 |M: | 13. |< 14.5 | |p | | | | | |06561 06561| +240020 |ST Col |055903.9-392727 |EA | 11. | 11.5 | |p | | | | | |06561 06561| +240021 |SU Col |050747.0-335155 |RRAB | 11.3 | 12.3 | |p | | | | |A2II | CoD | +240022 |SV Col |053854.0-333756 |EA/SD: | 11.4 | 12.2 | |p |38708.300 | | 3.6218 | | |05532 05532| +240023 |SW Col |052324.0-394042 |LB: | 5.71 |( 0.34 )| |V | | | | |M1III |05890 CoD | +240024 |SX Col |063135.0-365624 |LB: | 6.28 |( 0.13 )| |V | | | | |M1III |05840 CoD | +240025 |SY Col |062749.8-383404 |M | 12.7 |< 15.5 | |p | | | | |Me |04453 GSC | +240026 |SZ Col |050847.0-343102 |LB: | 9.4 | 10.1 | |p | | | | |M6 |00085 CoD | +240027 |TT Col |054906.4-322000 |SR: | 12. | 14. | |p | | | | |M7 |00085 02381| +240028 |TU Col |055003.7-402412 |SR: | 12. |< 13. | |p | | | | | |00085 02381| +240029 |TV Col *|052925.5-324904 |NL+X | 13.6 |< 14.5 | |B |44171.46 | | 0.21631 | |pec(e+cont) |08959 08394| +240030 |TW Col |060051.0-425214 |ACV | 7.0 |( 0.032 )| |V | | | | | |67064 CoD | +240031 |TX Col |054320.2-410155 |XPM | 14.5 | 15.8 | |B | | | | | |69096 69096| +240032 |TY Col |055750.8-380403 |RS | 9.57 | 9.64 | |V | | | | | |71106 GSC | +240033 |TZ Col |055216.0-283925 |RS | 9.05 |( 0.06 )| |V | | | | | |72060 CoD | +240034 |UU Col |051213.2-324140 |XM | 17.25 | 18.2 | |B | | | | | |73113 73113| +240035 |UV Col |051638.4-405300 |M | 4.07 | 5.59 | |J | | | | | |73014 GSC | +240036 |UW Col | | | | | | | | | | | | |=X Col +240037 |UX Col |052856.5-332816 |RS: | 10.53 | 10.61 | |V | | | | | |73103 CoD | +240038 |UY Col |055941.4-303954 |DSCT | 8.95 | 9.12 | |V | | | | | |73114 CoD | +240039 |UZ Col |050706.2-374202 |LB: | 8.59 | 8.74 | |Hp| | | | | |HIP HIP | +240040 |VV Col |050915.1-381314 |LB | 9.34 | 9.61 | |Hp| | | | | |HIP HIP | +240041 |VW Col *|051800.4-272927 |EA | 9.24 | 10.33 | |Hp| | | | | |HIP HIP | +240042 |VX Col |051803.4-300009 |LB: | 8.48 | 8.58 | |Hp| | | | | |HIP HIP | +240043 |VY Col |052924.5-305722 |SRB | 7.65 | 7.89 | |Hp| | | | | |HIP HIP | +240044 |VZ Col |053014.0-424150 |BY: | 9.77 | 9.91 | |Hp| | | | | |HIP HIP | +240045 |WW Col |053415.9-362601 |LB: | 9.52 | 9.65 | |Hp| | | | | |HIP HIP | +240046 |WX Col |053712.9-424256 |RS: | 9.36 | 9.48 | |Hp| | | | | |HIP HIP | +240047 |WY Col |053930.0-363359 |LB: | 9.19 | 9.30 | |Hp| | | | | |HIP HIP | +240048 |WZ Col |054215.2-344004 |LPB: | 5.27 | 5.29 | |Hp| | | | | |HIP HIP | +240049 |XX Col |054314.5-332530 |SRB | 6.75 | 6.93 | |Hp| | | | | |HIP HIP | +240050 |XY Col |054610.2-352349 |LB: | 8.94 | 9.10 | |Hp| | | | | |HIP HIP | +240051 |XZ Col |054812.8-331353 |LB: | 9.17 | 9.27 | |Hp| | | | | |HIP HIP | +240052 |YY Col |054905.3-282247 |SRD | 8.47 | 8.64 | |Hp| | | | | |HIP HIP | +240053 |YZ Col |055121.4-415742 |SRD | 9.06 | 9.23 | |Hp| | | | | |HIP HIP | +240054 |ZZ Col |055239.5-364253 |SRB | 8.68 | 8.85 | |Hp| | | | | |HIP HIP | +240055 |AA Col |055432.7-350507 |DSCTC | 8.18 | 8.25 | |Hp| | | | | |HIP HIP | +240056 |AB Col |055534.5-285713 |SRB: | 7.71 | 7.87 | |Hp| | | | | |HIP HIP | +240057 |AC Col |060430.7-340328 |SRD | 8.58 | 9.09 | |Hp| | | | | |HIP HIP | +240058 |AD Col |060524.7-284039 |E: | 7.66 | 7.84 | |Hp| | | | | |HIP HIP | +240059 |AE Col |060814.5-285941 |BY: | 11.69 | 11.99 | |Hp| | | | | |HIP HIP | +240060 |AF Col |061010.4-402114 |LB | 5.46 | 5.68 | |Hp| | | | | |HIP HIP | +240061 |AG Col |061411.9-341518 |LB | 8.78 | 9.10 | |Hp| | | | | |HIP HIP | +240062 |AH Col |062542.5-354151 |ACV | 7.83 | 7.89 | |Hp| | | | | |HIP HIP | +240063 |AI Col |062852.7-372029 |SRB | 8.15 | 8.27 | |Hp| | | | | |HIP HIP | +240064 |AK Col |063143.4-343001 |EA | 9.03 | 9.25 | |Hp| | | | | |HIP HIP | +240065 |AL Col |063145.2-371023 |ACV | 7.46 | 7.53 | |Hp| | | | | |HIP HIP | +240066 |AM Col |063753.6-341745 |LB | 9.05 | 9.31 | |Hp| | | | | |HIP HIP | +240067 |AN Col |052116.9-342042 |BE | 6.03 | 6.11 | |V | | | | | |75098 CoD | +240068 |AO Col |053245.8-280047 |M: | 11.9 |< 15.0 | |p | | | | | |75002 UCAC2| +240069 |AP Col |060452.0-343336 |UV | 13.40 |( 2.5 U )| |B | | | | | |75099 75100| +240070 |AQ Col |052325.5-391155 |RPHS | 15.55 |( 0.10 )| |V | | | | | |76037 GSC | +240071 |AR Col |063914.5-332210 |SR: | 12.3 | 13.3 | |V | | | | | |76012 GSC | +240072 |AS Col |052038.0-394518 |RS: | 7.34 | 7.38 | |V | | | 0.690 : | |F5/6V |78046 DM | +240073 |AT Col |053705.3-393226 |BY | 9.52 | 9.61 | |V | | | 1.422 | |K0V |78046 DM | +240074 |AU Col |060902.6-410705 |DSCTC | 7.45 |( 0.04 b )| |V | | | 0.143 | |A2V |78037 DM | +240075 |AV Col |055650.6-274002 |RRAB | 11.6 | 13.0 | |V |52664.677 | | 0.468743 |12 | |79100 79068| +240076 |AW Col *|060511.3-324351 |EA | 8.00 | 9.74 | 8.17 |V |52764.4934 | | 10.319 |04 |A3m |79100 DM | +240077 |AX Col |063404.8-413232 |SRA | 9.2 | 10.2 | |V |53735. | | 96.5 | | |79064 DM | +240078 |AY Col *|051908.4-374031 |EA/RS | 10.46 | 11.0 | 10.63 |V |52867.708 | | 17.943 |06 |G8III |80048 DM | NL80_1 +240079 |AZ Col *|052850.6-301013 |EW | 11.30 | 11.66 | 11.65 |V |51868.163 | | 0.302101 | | |80036 DM | NL80_1 +240080 |BB Col |054343.1-322329 |M | 4.15 | 5.51 | |Ks| | | 483. | | |80166 2MASS| NL80_1 +240081 |BC Col *|055707.9-273832 |EW | 12.74 | 13.7 | 13.5 |V |52665.6089 | | 0.296830 | | |80002 GSC | NL80_1 +240082 |BD Col *|055734.8-351711 |BY: | 12.66 |( 0.07 )| |V | | | 6.4 | |G8V |80199 2MASS| NL80_1 +240083 |BE Col *|060402.4-314341 |EA | 11.29 | 11.63 | 11.55 |V |52529.8677 | | 0.64788 |20 | |80002 GSC | NL80_2 +249011 |lam Col |055306.9-334805 |ELL: | 4.85 | 4.92 | |V | | | 0.640 |35 |B5V |08380 CoD | +250001 |R Com *|120415.2+184657 |M | 7.1 | 14.6 | |V |43539. | | 362.82 |38 |M5e-M8ep |00001 00002| +250002 |S Com *|123245.6+270145 |RRAB | 10.89 | 12.13 | |V |40654.641 | | 0.5865907 |14 |A6-F7 |05917 00107| +250003 |T Com *|125838.9+230821 |M | 11.5 | 15.6 | |B |33735. | | 406. | |M2:-M8-9eIII |00114 00114| +250004 |U Com *|124003.2+272956 |RRC | 11.50 | 11.97 | |V |24961.445 | | 0.2927382 |35 |A8-F0 |00217 00107| +250005 |V Com *|121015.9+272554 |RRAB | 12.48 | 13.77 | |V |40683.940 | | 0.46914575 |08 |A2 |00001 00219| +250006 |W Com *|122131.7+281358 |BLLAC | 11.5 | 17.5 | |B | | | | |cont |06778 07696| +250007 |X Com *|130022.1+282402 |GAL | 15.9 | 17.9 | |B | | | | |cont-e |04920 06756| +250008 |Y Com *|130634.3+185821 |SRB | 13.4 | 14.39 | |B | | | 95. : | | |08967 00223| +250009 |Z Com *|130818.2+183226 |RRAB | 13.14 | 14.29 | |V |39951.749 | | 0.5466826 |13 | |00001 00223| +250010 |RR Com *|131035.9+180110 |RRC | 16.1 | 16.7 | |V |42480.420 | | 0.3806046 |40 | |00001 00223| +250011 |RS Com *|131439.5+171149 |RRAB | 14.7 | 15.9 | |p |23143.540 | | 0.6696205 |15 | |00222 00223| +250012 |RT Com *|131653.4+170631 |RRAB | 13.40 | 14.49 | |V |40023.3841 | | 0.5651761 |19 | |06058 00223| +250013 |RU Com *|131651.6+190840 | | 14.4 | 15.1 | |p | | | | |G0 |00223 00223| +250014 |RV Com *|131753.4+184022 |RRC | 13.87 | 14.32 | |V |23113.393 | | 0.3499545 |40 | |00222 00223| +250015 |RW Com *|123300.3+264258 |EW/KW | 11.00 | 11.70 | 11.56 |V |40022.4163 | | 0.2373459 | |G2+G2 |08968 00107| +250016 |RX Com |125859.7+151121 |M | 13.3 |< 17.8 | |p |36776. | | 211.11 | | |09079 06286| +250017 |RY Com *|130508.0+231642 |RRAB | 11.66 | 12.87 | |V |39598.806 | | 0.4689531 |20 |F2-F5 |00001 06108| +250018 |RZ Com *|123505.1+232014 |EW/KW | 10.42 | 11.13 | 11.09 |V |34837.4198 | | 0.33850604 | |K0+G9 |03580 00192| +250019 |SS Com *|124939.1+184212 |EW/KW | 11.3 | 11.9 | 11.9 |B |25002.510 | | 0.4127919 | |F5 |00192 00192| +250020 |ST Com *|131751.3+204651 |RRAB | 10.91 | 11.84 | |V |43224.506 | | 0.59892864 |19 |F2-F8 |00001 04948| +250021 |SU Com |120352.0+181804 |RRAB | 15.4 | 16.4 | |B |22807.520 | | 0.603411 |20 | |05264 GSC | +250022 |SV Com |120847.9+184056 |RR | 16.8 | 17.6 | |p |25300.459 | | 0.6012 | | |00229 | +250023 |SW Com |120906.4+193514 |ISB: | 10.8 | 12.0 | |p | | | | |G8-K3: |00230 06286| +250024 |SX Com *|120937.7+180851 |RR | 16.3 | 17.6 | |p |25320.504 | | 0.4558 | | |00229 | +250025 |SY Com |121020.4+193039 |SR | 10.6 | 11.68 | |B | | | 175.5 | |M4 |00231 01025| +250026 |SZ Com *|121119.9+184948 |RR | 16.0 | 17.0 | |p |25303.659 | | 0.6893 | | |00229 USNO | +250027 |TT Com |121549.0+183221 |RR | 16.0 | 16.7 | |p |25301.550 | | 0.5511 | | |00229 USNO | +250028 |TU Com *|121346.9+305908 |RRAB | 12.9 | 14.6 | |p |28954.480 | | 0.4618091 |22 |A8-F4 |07011 03950| +250029 |TV Com |122757.9+184808 |LB | 10.90 | 13.3 | |B | | | | |M2 |00233 BD | +250030 |TW Com |121842.8+220549 |LB | 9.44 | 10.1 | |V | | | | |K5 |00104 08953| +250031 |TX Com |125000.6+310824 |RRAB | 13.5 | 14.8 | |p |35550.435 | | 0.536470 |10 | |02533 00839| +250032 |TY Com |122221.4+161734 |RRAB | 13.1 | 14.2 | |B |37752.343 | | 0.598256 |20 | |05338 02761| +250033 |TZ Com |123009.9+135355 |RR | 16.5 | 17.5 | |p | | | | | |02763 02763| +250034 |UU Com *|123100.6+243402 |ACV+DSCTC | 5.41 | 5.46 | |V |40334.194 | | | |A3p(Sr-Cr-Eu) |08969 02979| +250035 |UV Com *|125934.0+301925 |RRAB | 15.1 | 16.1 | |p |35550.280 | | 0.615548 |18 |F4-F6 |02629 03950| +250036 |UW Com *|125952.2+301432 |RRAB | 13.7 | 15.0 | |B |37351.670 | | 0.532331 |12 |F5 |04650 03950| +250037 |UX Com *|130133.0+283754 |EA/AR/RS | 9.96 | 10.52 | 10.13 |V |25798.328 | | 3.642583 |08 |G2III |08592 BD | +250038 |UY Com *|131111.3+283457 |RRAB | 15.0 | 16.6 | |p |37351.804 | | 0.468273 |12 |F4-F5 |04650 03950| +250039 |UZ Com *|131226.7+302116 |RRAB | 13.0 | 14.0 | |p |37351.255 | | 0.736941 |20 |F5-F6 |04650 03950| +250040 |VV Com *|131807.7+285349 |RRAB | 15.9 | 16.9 | |p |37351.742 | | 0.694312 |15 |F5-F6 |04650 03950| +250041 |VW Com *|133244.6+164839 |UV | 10.9 | 11.39 | |V | | | | |M4Ve |02767 00664| +250042 |VX Com |115840.2+222308 |RRAB | 16.4 | 17.4 | |B |37752.410 | | 0.54416 |07 | |05264 04065| +250043 |VY Com *|115903.8+170022 |EB/KE | 13.9 | 14.6 | 14.5 |p |37669.465 | | 1.00872 | | |05264 04341| +250044 |VZ Com |120105.1+221255 |RRAB | 15.2 | 17.0 | |B |38085.483 | | 0.49325 |08 | |05264 04341| +250045 |WW Com |120357.0+222809 |RRAB | 15.8 | 16.4 | |B |37668.503 | | 0.73838 |12 | |05264 04341| +250046 |WX Com |120545.0+220121 |RRAB | 16.0 | 17.0 | |B |37779.310 | | 0.59098 |15 | |05264 04341| +250047 |WY Com |120647.9+161710 |CST | 15.2 | | |p | | | | |G0 |05264 04341| +250048 |WZ Com |120734.0+200609 |RRAB | 13.9 | 15.5 | |B |37737.590 | | 0.646043 |10 | |05264 04065| +250049 |XX Com |120802.2+161048 |CST | 12.1 | | |p | | | | |F5 |05264 04341| +250050 |XY Com |120746.6+213741 |RRAB | 15.3 | 16.1 | |B |37668.435 | | 0.611915 |16 | |05264 04341| +250051 |XZ Com |120905.7+234516 |RRAB | 15.8 | 17.1 | |B |38089.560 | | 0.54674 |08 | |05264 04341| +250052 |YY Com |121049.3+201740 |RRAB | 13.8 | 15.3 | |B |37668.510 | | 0.73668 |12 | |05264 04341| +250053 |YZ Com |121307.5+215649 |RRAB | 15.4 | 16.9 | |B |37778.430 | | 0.46260 |10 | |05264 04341| +250054 |ZZ Com |121617.3+233453 |RRAB | 15.2 | 16.4 | |B |38089.540 | | 0.55154 |10 | |05264 04341| +250055 |AA Com |121610.1+250120 |RRAB | 14.6 | 16.4 | |B |40352.637 | | 0.487821 |10 | |04979 04341| +250056 |AB Com |121846.7+233843 |M | 14.4 |< 17.0 | |p |42188. | | 194.7 | | |07748 04341| +250057 |AC Com |122053.3+221029 |RRAB | 13.6 | 15.1 | |B |38472.390 | | 0.590915 |13 | |05264 04065| +250058 |AD Com |122145.8+173456 |RRAB | 15.0 | 16.5 | |B |37752.422 | | 0.55446 |20 | |00001 04065| +250059 |AE Com |122350.5+220310 |RRAB | 14.2 | 15.9 | |B |38134.395 | | 0.496910 |11 | |05264 04341| +250060 |AF Com |122343.0+213950 |RRAB | 15.7 | 16.9 | |B |38411.680 | | 0.483168 |12 | |05264 04065| +250061 |AG Com |122436.6+245910 |RRC | 12.9 | 13.5 | |B |37669.510 | | 0.322432 |30 | |05264 04065| +250062 |AH Com |122855.6+164502 |RRC | 13.9 | 14.9 | |B |37779.430 | | 0.31016 |40 | |05264 04341| +250063 |AI Com *|122854.7+255446 |ACV+DSCT: | 5.23 | 5.40 | |V |39586.07 | | 5.0633 | |A0p(Cr-Eu-Sr) |08974 02979| +250064 |AK Com |122953.4+231514 |RRC | 16.7 | 17.5 | |B |37737.630 | | 0.36299 |20 | |05264 04065| +250065 |AL Com *|123225.9+142044 |UGSS | 13.0 | 20.0 | |p | | |( 325.4 ) | |pec(UG) |08976 08852| +250066 |AM Com |123328.2+222840 |RRAB | 15.3 | 16.4 | |B |37781.327 | | 0.524020 |20 | |05264 04065| +250067 |AN Com |123543.4+180307 |RRC | 15.7 | 16.5 | |B |37785.380 | | 0.33974 |20 | |05264 04341| +250068 |AO Com |123610.0+222342 |RRAB | 14.0 | 15.0 | |B |37779.456 | | 0.645536 |25 | |05264 04065| +250069 |AP Com |123918.7+220315 |RRAB | 14.0 | 15.2 | |B |37779.398 | | 0.593595 |15 | |05264 04065| +250070 |AQ Com *|124242.6+215217 |EW/KW | 15.2 | 15.7 | 15.7 |p |37779.425 | | 0.28208 | | |05264 04341| +250071 |AR Com |124343.4+165715 |RRC | 15.4 | 15.7 | |B |37764.450 | | 0.291303 |40 | |05264 04341| +250072 |AS Com |124523.6+164053 |RR | 17.1 | 17.9 | |B |37764.405 | | 0.354188 |30 : | |05264 04341| +250073 |AT Com |124540.3+181247 |RRAB | 13.9 | 15.5 | |B |37779.400 | | 0.344465 |20 | |05264 04341| +250074 |AU Com |124557.6+195016 |RRAB | 15.3 | 16.5 | |B |37781.367 | | 0.572880 |18 | |05264 04341| +250075 |AV Com |124658.5+151010 |RRAB | 15.3 | 16.3 | |B |39527.620 | | 0.5362 |08 | |05264 04341| +250076 |AW Com |124918.0+284927 |RRAB | 14.7 | 16.3 | |p | | | 0.45 : | | |04172 04172| +250077 |AX Com |125037.3+181836 |RRAB | 14.9 | 17.1 | |B |38083.556 | | 0.487016 |10 | |05264 05002| +250078 |AY Com |125112.8+201712 |RRC | 16.4 | 17.1 | |B |37696.510 | | 0.35455 |28 | |05264 04341| +250079 |AZ Com |125350.1+221839 |RRC | 15.6 | 16.4 | |B |37696.590 | | 0.39983 |25 | |05264 04341| +250080 |BB Com |125427.2+215451 |RRAB | 14.9 | 16.4 | |B |37785.414 | | 0.465965 |15 | |05264 04065| +250081 |BC Com |125440.6+194803 |RRAB | 16.1 | 16.9 | |B |37783.470 | | 0.49236 |10 | |05264 04065| +250082 |BD Com |125455.5+231525 |RR | 14.5 | 15.1 | |B |33005.444 | | 0.5416158 |46 : | |04149 00839| +250083 |BE Com |125802.5+195401 |RRAB | 15.7 | 16.6 | |B |37705.680 | | 0.41421 |20 | |05264 04341| +250084 |BF Com |130213.6+241420 |RRAB | 13.4 | 15.1 | |B |37705.490 | | 0.66141 |07 | |05264 04341| +250085 |BG Com |131944.6+181826 |RRC | 15.7 | 16.2 | |B |37668.575 | | 0.305352 |30 : | |05264 04341| +250086 |BH Com |132158.7+164218 |RRAB | 13.1 | 14.6 | |B |37669.500 | | 0.58412 |14 | |05264 04341| +250087 |BI Com |132244.6+234042 |RRAB | 15.7 | 16.7 | |B |37668.430 | | 0.55498 |10 | |05264 04341| +250088 |BK Com |132809.8+201334 |RRAB | 14.8 | 15.4 | |B |37669.580 | | 0.45219 |10 | |05264 04341| +250089 |BL Com |132811.7+175105 |RRAB | 14.2 | 16.5 | |B |37668.575 | | 0.464705 |10 | |05264 04065| +250090 |BM Com *|132822.2+155008 |EB/KE | 13.5 | 14.1 | 13.8 |p |37821.880 | | 1.26452 | | |05264 04341| +250091 |BN Com |132908.3+171901 |RRAB | 15.4 | 16.7 | |B |37820.400 | | 0.59680 |10 | |05264 04341| +250092 |BO Com |133105.5+163622 |RRAB | 14.3 | 16.0 | |B |37812.465 | | 0.56376 |08 | |05264 04065| +250093 |BP Com |133119.4+225431 |RRAB | 15.0 | 16.5 | |B |37818.450 | | 0.483677 |17 | |05264 04341| +250094 |BQ Com |133213.4+262531 |RRAB | 13.7 | 15.5 | |p | | | 0.510 : | | |04176 04176| +250095 |BR Com |133402.8+182447 |RRAB | 16.6 | 17.5 | |B |37821.370 | | 0.53484 |15 | |05264 04341| +250096 |BS Com *|133439.2+241638 |RRAB | 12.4 | 13.6 | |p |36692.34 | | 0.36350 |25 | |04172 04172| +250097 |BT Com |133455.4+262700 |RRAB | 14.2 | 15.9 | |p |35602.446 | | 0.5735457 |10 | |04176 04176| +250098 |BU Com |133517.4+203048 |RRC | 14.2 | 14.9 | |B |37668.575 | | 0.326626 |20 | |05264 04341| +250099 |BV Com |120224.2+173459 |RRAB | 14.1 | 16.0 | |B |37669.490 | | 0.461039 |10 | |05264 04065| +250100 |BW Com |120416.7+185312 |RRAB | 14.5 | 15.1 | |B |37668.450 | | 0.73359 |17 | |05264 04065| +250101 |BX Com | | | | | | | | | | | | |=XY Com +250102 |BY Com |120817.7+152543 |RR | 15. | 16. | |p | | | | | |03910 03910| +250103 |BZ Com *|121133.4+313555 |RRAB | 16.3 | 17.6 | |p |37370.400 | | 0.507449 |10 |F4-F6 |04650 03950| +250104 |CC Com *|121206.0+223159 |EW/KW | 11.30 | 12.21 | 12.09 |V |39533.5830 | | 0.22068628 | | |05028 04341| +250105 |CD Com *|121234.0+304802 |RRAB | 14.6 | 16.1 | |p |37300.307 | | 0.5896066 |20 |F0-F2 |05040 03950| +250106 |CE Com |121246.7+210023 |RRC | 15.4 | 16.1 | |B |37668.440 | | 0.304579 |13 | |05264 04341| +250107 |CF Com *|121309.1+230407 |RRAB | 16.6 | 17.4 | |B |37669.560 | | 0.73923 |12 : | |05264 03910| +250108 |CG Com *|121328.4+312416 |RRAB | 15.3 | 16.9 | |p |37370.645 | | 0.4683235 |18 |A7-F5 |04650 03950| +250109 |CH Com |121347.1+222042 |RRAB | 16.2 | 16.7 | |B |37737.560 | | 0.67169 |14 | |05264 04341| +250110 |CI Com *|121411.2+140149 |EW: | 13.5 | 13.9 | |p | | | | | |04784 03903| +250111 |CK Com *|121450.6+330606 |RRAB | 14.2 | 15.5 | |p |41630.35 | | 0.6939962 |10 |F0-F5 |05040 03950| +250112 |CL Com *|121716.3+305839 |RRAB | 14.8 | 15.9 | |p |37370.348 | | 0.556293 |15 |F6-F7 |04650 03950| +250113 |CM Com |121925.2+212059 |E | 13.0 | 13.6 | |p |37781.360 | | 3.596785 | | |05264 04065| +250114 |CN Com *|121947.0+163050 |EB | 13.3 | 14.0 | 13.5 |p |37668.520 | | 0.73544 | | |05264 02587| +250115 |CO Com |122013.7+321154 |RRAB | 17.4 | 18.7 | |p | | | 0.5541 : | | |03950 03950| +250116 |CP Com *|122134.6+325411 |RRAB | 16.4 | 17.5 | |B |37370.373 | | 0.519858 |25 |A9-F3 |04650 03950| +250117 |CQ Com | | | | | | | | | | | | |=TY Com +250118 |CR Com |122326.2+160501 |RRAB | 12.9 | 14.2 | |B |35211.373 | | 0.719398 |22 | |00001 04065| +250119 |CS Com |122418.8+175253 |RRC | 16.7 | 17.3 | |B |37752.370 | | 0.30645 |20 | |05264 03910| +250120 |CT Com *|122349.0+240756 |UV | 12.5 | 16.0 | |U | | | | |M |03924 05520| +250121 |CU Com |122446.6+222428 |RRAB | 13.1 | 13.6 | |B |38089.668 | | 0.416091 |09 | |05264 04065| +250122 |CV Com *|122426.6+254507 |UV | 14.3 | 16.8 | |U | | | | |M |03924 05495| +250123 |CW Com |122542.8+220528 |RRC | 14.4 | 15.0 | |B |37668.400 | | 0.332295 |25 | |05264 03910| +250124 |CX Com *|122657.0+270105 |UV | 12.8 | 16.5 | |B | | | | |M3-4 |08397 05495| +250125 |CY Com |122820.0+245719 |RRAB | 14.4 | 15.5 | |B |42561.570 | | 0.757881 | | |07748 04065| +250126 |CZ Com |122851.9+250641 |RRC | 13.5 | 14.0 | |B |37781.367 | | 0.29484 |40 | |05264 04065| +250127 |DD Com *|122846.2+214333 |EW/KW | 14.3 | 15.05 | 14.90 |B |37779.410 | | 0.2692061 | | |05063 04341| +250128 |DE Com |122904.8+184005 |RRAB | 16.7 | 17.4 | |B |37737.640 | | 0.68863 |16 | |05264 03910| +250129 |DF Com |122912.7+200457 |RRAB | 17.0 | 17.9 | |B |37752.360 | | 0.58609 |12 | |05264 04341| +250130 |DG Com *|123010.0+210017 |EB/SD | 14.3 | 15.5 | 14.6 |p |37795.500 | | 0.986615 | | |05264 04341| +250131 |DH Com |123135.4+212932 |RRAB | 16.5 | 17.5 | |B |37764.290 | | 0.61377 |15 | |05264 03910| +250132 |DI Com |123318.9+234442 |RRAB | 15.6 | 16.5 | |B |37779.400 | | 0.702485 |12 | |05264 04065| +250133 |DK Com |123354.7+221033 |RRAB | 14.4 | 16.0 | |B |37821.460 | | 0.556211 |09 | |05264 04065| +250134 |DL Com *|123421.4+160744 |RRAB | 12.9 | 14.9 | |B |41065.475 | | 0.4321025 |13 | |07416 03945| +250135 |DM Com |123538.2+163220 |RRAB | 14.7 | 15.8 | |B |37785.350 | | 0.50626 |13 | |05264 04065| +250136 |DN Com |123540.5+172850 |RRAB | 16.7 | 17.7 | |B |37784.370 | | 0.64795 |10 | |05264 03910| +250137 |DO Com |123843.0+183242 |M | 12.1 | 15.3 | |p |37770. | | 130. | | |05264 04065| +250138 |DP Com |123909.8+204517 |RRAB | 15.2 | 16.2 | |B |37764.250 | | 0.72262 |13 | |05264 04065| +250139 |DQ Com |124008.9+174423 |RRC | 16.8 | 17.4 | |B |37764.240 | | 0.320379 |40 | |05264 03910| +250140 |DR Com *|124038.4+222201 |RRC | 13.7 | 14.2 | |B |37783.444 | | 0.22592 |50 | |05264 04065| +250141 |DS Com *|124223.8+255147 |RRAB | 16.9 | 17.6 | |B |37736.384 | | 0.635389 |30 |F6 |04650 03950| +250142 |DT Com *|124240.3+281324 |RRAB | 16.0 | 16.9 | |B |37736.452 | | 0.604116 |17 |F1-F5 |04650 03950| +250143 |DU Com *|124317.7+294114 |RRAB | 15.5 | 17.0 | |B |37736.453 | | 0.533047 |18 |F4-F5 |04650 03950| +250144 |DV Com *|124354.3+280116 |RRAB | 14.2 | 15.5 | |B |37700.314 | | 0.5408441 |18 |F1-F6 |05040 03950| +250145 |DW Com *|124354.1+291225 |RRAB | 16.7 | 18.0 | |B |37736.787 | | 0.600748 |13 |A7-F4 |04650 03950| +250146 |DX Com |124417.4+300112 |RRC | 15.9 | 16.6 | |p |37736.803 | | 0.33305 |35 : | |03950 03950| +250147 |DY Com |124441.3+172212 |RRC | 15.6 | 16.5 | |B |37785.280 | | 0.35667 |35 | |05264 04341| +250148 |DZ Com |124613.4+182808 |SRA | 13.9 | 16.3 | |p |37750.0 | | 91.5 | | |05264 03910| +250149 |EE Com *|124707.7+261020 |RRAB | 15.5 | 16.9 | |B |37736.776 | | 0.539586 |20 |A9 |04650 03950| +250150 |EF Com *|124828.1+252324 |RRAB | 15.4 | 17.0 | |p |37736.566 | | 0.47680 |30 |F3 |03950 03950| +250151 |EG Com *|124830.3+294734 |RRAB | 16.7 | 18.1 | |B |37736.635 | | 0.546480 |30 : |A5-A9 |04650 03950| +250152 |EH Com |124837.6+181025 |RRAB | 15.2 | 16.0 | |B |37764.440 | | 0.62437 |16 | |05264 04065| +250153 |EI Com *|125042.8+301154 |RRAB | 16.3 | 17.2 | |B |37736.640 | | 0.603314 |17 |F1-F4 |04650 03950| +250154 |EK Com |125121.4+271347 |EW | 12.7 | 13.4 | |p | | | | | |03950 03950| +250155 |EL Com *|125132.4+240721 |RRAB | 13.9 | 15.8 | |B |38532.557 | | 0.343329 |18 | |06851 00839| +250156 |EM Com *|125138.3+303103 |RRAB | 14.8 | 15.8 | |B |37736.586 | | 0.542555 |17 |F5 |04650 03950| +250157 |EN Com *|125409.6+252707 |RRAB | 15.7 | 17.2 | |B |37736.844 | | 0.523182 |17 |F4-F5 |04650 03950| +250158 |EO Com *|125722.1+285319 |RRAB | 14.7 | 15.5 | |B |37351.572 | | 0.632090 |15 |F6 |04650 03950| +250159 |EP Com *|125750.7+281722 |RRAB | 16.7 | 18.1 | |B |37351.594 | | 0.559020 |07 |F5 |04650 03950| +250160 |EQ Com *|125902.8+180244 |EB | 14.4 | 15.9 | 15.3 |p |37705.584 | | 0.361867 | | |05264 04065| +250161 |ER Com *|125905.3+291746 |RRAB | 17.2 | 18.6 | |B |37351.672 | | 0.543148 |22 |A7 |04650 03950| +250162 |ES Com *|125907.4+263549 |RRAB | 15.4 | 16.2 | |B |37736.638 | | 0.718162 |35 |F0-F2 |04650 03950| +250163 |ET Com |130005.2+292933 |RRC | 16.4 | 17.2 | |p |37351.676 | | 0.41441 |42 | |03950 03950| +250164 |EU Com |130359.8+194219 |LB | 12.0 | 12.3 | |p | | | | |M5 |05264 04065| +250165 |EV Com |130615.2+293657 |RRAB | 16.7 | 18.1 | |B |37351.548 | | 0.533002 |15 | |04650 03950| +250166 |EW Com *|131301.6+310121 |RRC | 15.0 | 15.6 | |B |37351.637 | | 0.347753 |38 |A6-F0 |04650 03950| +250167 |EX Com *|131303.8+302438 |RRAB | 16.8 | 18.0 | |B |37351.360 | | 0.558412 : |15 |F2-F3 |04650 03950| +250168 |EY Com *|131355.4+310454 |EW/KW | 17.2 | 18.0 | 18.0 |p |37351.865 | | 0.2993278 | | |00001 03950| +250169 |EZ Com *|131808.0+275743 |RRAB | 16.5 | 17.5 | |B |37351.827 | | 0.568404 : |15 |F5-F6 |04650 03950| +250170 |FF Com |131846.9+223109 |RRAB | 16.0 | 16.8 | |B |37669.540 | | 0.62075 |08 | |05264 04065| +250171 |FG Com *|132033.7+222654 |RRC | 15.2 | 16.0 | |B |38146.510 | | 0.30921 |30 | |05264 04341| +250172 |FH Com |132425.5+160007 |RRAB | 14.3 | 15.0 | |B |37669.480 | | 0.74794 |15 | |05264 04341| +250173 |FI Com |132532.7+164944 |RRC | 15.3 | 15.9 | |B |37668.550 | | 0.35344 |12 | |05264 04341| +250174 |FK Com *|133046.8+241358 |FKCOM | 8.14 | 8.33 | |V |42192.345 | | 2.400 |40 : |G2eapnIII+K3V |08343 BD | +250175 |FL Com |133505.0+195018 |RRC | 15.6 | 16.2 | |B |37669.500 | | 0.363775 |30 | |05264 04065| +250176 |FM Com *|121902.0+260030 |DSCTC | 6.40 | 6.48 | |V | | | 0.0551 | |A5-A7mIV-V |07015 02979| +250177 |FN Com |121906.5+182121 |LB | 10.7 | 11.0 | |p | | | | | |05264 04341| +250178 |FO Com *|122207. +274322:|UV | 14.5 |< 18.5 | |U | | | | |M: |05520 | +250179 |FP Com *|122719.2+273600 |UV | 15.5 |< 21. | |p | | | | | |05378 2MASS| +250180 |FQ Com |130237.0+311825 |LB | 14.0 | 15.6 | |p | | | | |M7eIII |05379 03950| +250181 |FR Com |130612.8+211116 |RRAB | 15.4 | 16.3 | |B |39527.520 | | 0.6098 |15 | |05264 04341| +250182 |FS Com |130622.6+223658 |SRB | 5.30 | 6.1 | |V | | | 58. : | |M5III |04513 08953| +250183 |FT Com |123047. +292227:|RR: | 19.5 | 20.2 | |p | | | | | |05378 | +250184 |FU Com |123051.5+270710 |UG: | 19.5 | 21. : | |p | | | | | |05378 USNO | +250185 |FV Com |123757.1+295805 |RRAB | 13.5 | 14.7 | |p |38887.686 | | 0.472469 |12 |A5 |05868 00839| +250186 |FW Com |124315. +281735:|RR: | 19.0 | 20.2 | |p | | | | | |05378 | +250187 |FX Com |124427. +293936:|RR: | 19.7 | 20.5 | |p | | | | | |05378 | +250188 |FY Com |124916.0+272522 |UG: | 19.5 | 21. : | |p | | | | | |05378 | +250189 |FZ Com *|131032.2+273602 |EA | 15.0 | 16.1 | |p |37433.897 | | 9.409728 : | | |06259 03950| +250190 |GG Com |131954.0+294222 |RRAB | 15.7 | 17.0 | |p |37435.712 | | | | |06259 03950| +250191 |GH Com |120524.5+273821 |RRAB | 13.7 | 15.8 | |p |39938.440 | | 0.444768 |12 | |07011 06064| +250192 |GI Com |123336.5+280641 |UV | 14.1 | 20.5 | |p | | | | | |06337 06337| +250193 |GK Com |120004.7+192510 |SRB | 6.84 | 7.13 | |V | | | 50. | |M4III |06645 BD | +250194 |GL Com | | | | | | | | | | | | |=GH Com +250195 |GM Com *|121224.9+272248 |DSCTC | 8.06 | 8.14 | |V | | | 0.208 : | |F5V |06456 02979| +250196 |GN Com *|122418.5+260555 |ACV: | 5.15 | 5.18 | |V | | | | |A2V(Am) |06456 02979| +250197 |GO Com *|125637.0+263644 |UGSS | 13.1 | 20. | |p | | | | | |06852 08852| +250198 |GP Com *|130542.3+180104 |* | 15.69 |( 0.6 )| |V | | | | |DBe |08990 07060| +250199 |GQ Com *|120442.1+275412 |QSO | 14.7 | 16.1 | |p | | | | |pec(e) |08992 08815| +250200 |GR Com |120518.6+275658 |RRAB | 15.4 | 16.7 | |p |37786.395 | | 0.521820 |21 | |07011 07011| +250201 |GS Com |122456.1+275908 |RRAB | 15.9 | 16.9 | |p |37843.443 | | 0.52945 |17 | |07011 07011| +250202 |GT Com *| | | | | | | | | | | | |N +250203 |GU Com |123903.3+181824 |RRAB | 12.9 | 14.2 | |p |38462.618 | | 0.490785 |35 | |07457 07457| +250204 |GV Com |120756.7+314549 |RRAB: | 17.7 | 18.8 | |p | | | | | |03950 03950| +250205 |GW Com |121628.9+313744 |E: | 15.8 | 16.7 | |p | | | | | |03950 03950| +250206 |GX Com |123359.2+232631 |UV: | 15.1 | 15.9 | |p | | | | | |07445 07445| +250207 |GY Com |121926.0+282728 |RRAB | 14.8 | 16.1 | |p |40377.654 | | 0.534476 |10 | |07938 07938| +250208 |GZ Com |122139.6+281506 |RRAB | 16.5 | 17.5 | |B | | | 0.64527 |23 | |07939 07696| +250209 |HH Com *|131837.3+262157 |ACV | 7.77 | 7.85 | |V |41731.0 | | 5.07 | |A2p(Sr-Cr-Eu) |08470 BD | +250210 |HI Com *|121640.4+244844 |RR | 16.4 | 17.4 | |p | | | | | |08396 08396| +250211 |HK Com *|121813. +264921:|UV | 14.8 | 18.1 | |p | | | | | |08397 | +250212 |HL Com |121822.9+301118 |RRC | 15.4 | 16.0 | |B |43574.877 | | 0.339 |45 | |08398 07678| +250213 |HM Com *|121910.9+250917 |RR | 16.4 | 17.4 | |p | | | | | |08396 08396| +250214 |HN Com *|121919. +271321:|UV | 15.4 | 16.6 | |p | | | | | |08397 | +250215 |HO Com *|121931. +251321:|UV | 16.2 |< 21. | |p | | | | | |08397 | +250216 |HP Com *|122442. +264723:|UV | 14.6 | 18.5 | |U | | | | | |08397 | +250217 |HQ Com *|122513. +233624:|UV | 14.7 | 19.6 | |p | | | | | |08397 | +250218 |HR Com *|122618.4+245220 |RR | 16.4 |< 17.5 | |p | | | | | |08396 08396| +250219 |HS Com *|122624. +255324:|UV | 15.5 |< 21. | |p | | | | | |08397 | +250220 |HT Com *|122736.8+241358 |RR | 16.4 | 17.5 | |p | | | | | |08396 08396| +250221 |HU Com *|122918.4+250247 |RR | 16.7 | 17.5 | |p | | | | | |08396 08396| +250222 |HV Com *|123154. +250927:|UV | 15.3 | 16.6 | |U | | | | | |08397 | +250223 |HW Com *|123316.7+280507 |RR | 16.5 | 17.5 | |p | | | | | |08396 08396| +250224 |HX Com |121518.6+142741 |RRAB | 15.2 | 16.5 | |B | | | | | |67252 67252| +250225 |HY Com |121816.0+160916 |RRC | 10.25 | 10.73 | |V | | | | | |67254 BD | +250226 |HZ Com |122940.9+243115 |RS | 9.71 | 9.81 | |V | | | | | |67255 BD | +250227 |II Com |123714.1+142632 |RRAB | 15.0 | 16.2 | |p | | | | | |67256 67256| +250228 |IK Com |124111.5+145334 |RRAB | 15.0 | 16.1 | |p | | | | | |67256 67256| +250229 |IL Com |122502.3+253338 |RS: | 8.16 |( 0.04 )| |V | | | | | |68082 BD | +250230 |IM Com |123115.4+141215 |UG: | 17.6 | 18.5 | |B | | | | | |68042 68042| +250231 |IN Com |125533.7+255331 |R:/PN | 8.7 |( 0.07 )| |V | | | | | |68084 68083| +250232 |IO Com |132103.6+222826 |EA | 9.15 | 9.48 | |V | | | | | |70038 70038| +250233 |IP Com |125630.8+295336 |RRAB | 14.48 | 15.14 | |V | | | | | |72061 72062| +250234 |IQ Com |120603.6+275918 |RRAB | 14.92 | 16.17 | |V | | | | | |73003 USNO | +250235 |IR Com |123932.1+210806 |UG:+E | 13.4 | 18.5 | |p | | | | | |73355 USNO | +250236 |IS Com |131438.9+275629 |RRC | 13.62 | 13.95 | |V | | | | | |73003 UCAC2| +250237 |IT Com |133508.1+204655 |RS | 7.57 |( 0.20 )| |V | | | | | |73005 BD | +250238 |IU Com |120811.6+170317 |BY: | 12.08 | 12.54 | |Hp| | | | | |HIP HIP | +250239 |IV Com |121320.5+164140 |BY: | 11.91 | 12.13 | |Hp| | | | | |HIP HIP | +250240 |IW Com |121656.6+274423 |LB | 7.94 | 8.08 | |Hp| | | | | |HIP HIP | +250241 |IX Com |122832.7+293524 |SRB | 8.60 | 8.75 | |Hp| | | | | |HIP HIP | +250242 |IY Com |123007.5+175344 |LB | 7.29 | 7.52 | |Hp| | | | | |HIP HIP | +250243 |IZ Com |123210.0+205509 |LB: | 8.66 | 8.80 | |Hp| | | | | |HIP HIP | +250244 |KK Com |123231.1+210603 |EB: | 9.54 | 9.77 | |Hp| | | | | |HIP HIP | +250245 |KL Com |123332.2+242655 |SR: | 7.25 | 7.39 | |Hp| | | | | |HIP HIP | +250246 |KM Com |123851.5+134814 |LB | 8.25 | 9.00 | |Hp| | | | | |HIP HIP | +250247 |KN Com |124202.4+140934 |LB: | 8.78 | 8.92 | |Hp| | | | | |HIP HIP | +250248 |KO Com |124503.9+233537 |LB: | 7.82 | 7.92 | |Hp| | | | | |HIP HIP | +250249 |KP Com |124817.9+191922 |SRB: | 7.64 | 7.77 | |Hp| | | | | |HIP HIP | +250250 |KQ Com |124823.3+203813 |LB: | 8.16 | 8.25 | |Hp| | | | | |HIP HIP | +250251 |KR Com |132015.8+174557 |EB: | 7.26 | 7.32 | |Hp| | | | | |HIP HIP | +250252 |KS Com |132947.7+274030 |LB | 8.47 | 8.71 | |Hp| | | | | |HIP HIP | +250253 |KT Com |133350.2+172530 |CWB: | 8.34 | 8.41 | |Hp| | | | | |HIP HIP | +250254 |KU Com |122126.7+245949 |DSCTC: | 7.42 |( 0.01 )| |V | | | | | |75101 BD | +250255 |KV Com |123532.7+195441 |E+UV | 14.5 | 15.5 | |p | | | | | |75102 75102| +250256 |KW Com |125336.2+224735 |E+UV | 15.0 | 16.5 | |p | | | | | |75102 75102| +250257 |KX Com |125652.6+232951 |UV | 13.0 | 15.5 | |p | | | | | |75102 75102| +250258 |KY Com |125900.3+211254 |E+UV | 15.5 | 17.5 | |p | | | | | |75102 75102| +250259 |KZ Com |130033.2+225541 |UV | 15.0 | 17.0 | |p | | | | | |75102 75102| +250260 |LL Com |131759.9+300802 |EB | 12.3 | 13.0 | |p | | | | | |75103 75103| +250261 |LM Com |122630.8+303852 |R | 16.00 | 16.22 | |Rc| | | | | |76118 76095| +250262 |LN Com |131102.6+180354 |SR: | 14.0 | 14.7 | |V | | | | | |76012 GSC | +250263 |LO Com |123204.9+262248 |EW | 12.38 | 13.20 | |* | | | | | |77099 UCAC2| +250264 |LP Com |123305.5+270804 |EW | 12.76 | 13.37 | |* | | | | | |77099 UCAC2| +250265 |LQ Com |123730.3+260452 |EW | 12.8 | 13.3 | |V | | | | | |77100 GSC | +250266 |LR Com |124506.9+213933 |EA | 10.8 | 11.7 | |V | | | | | |77004 GSC | +250267 |LS Com |125141.9+273227 |FKCOM | 4.87 | 4.97 | |V | | | | | |77103 DM | +250268 |LT Com |125241.8+261638 |EB | 10.53 | 10.74 | |V | | | | | |77104 DM | +250269 |LU Com |130016.5+304706 |RS: | 4.90 |( 0.15 )| |V | | | | | |77105 DM | +250270 |LV Com |120750.9+185656 |BY | 9.16 |( 0.03 )| |V | | | 5.5 | |K2V |78018 DM | +250271 |LW Com |124847.0+245025 |BY | 6.31 |( 0.10 )| |V | | | 15.80 | |G5V |78160 DM | +250272 |LX Com |125138.4+253032 |BY | 9.09 |( 0.05 )| |V | | | 7.74 | |K1Ve |78018 DM | +250273 |LY Com |125447.3+311645 |RRC | 14.46 | 15.02 | |V |47654.582 | | 0.2953118 |40 | |78155 GSC | +250274 |LZ Com |125651.2+281035 |RRC | 14.37 | 14.79 | |V |47654.668 | | 0.2581435 |45 | |78155 GSC | +250275 |MM Com *|130011.7+302311 |EW | 12.25 | 12.89 | 12.80 |* |51600.9795 | | 0.3019899 | | |78264 GSC | +250276 |MN Com *|130042.5+191236 |* | 15.9 |( 0.05 )| |Ic| | | 9.92 | |L1 |78007 2MASS| +250277 |MO Com |130514.4+283713 |RRAB | 14.25 | 14.58 | |V |47295.604 | | 0.6485456 |28 | |78155 GSC | +250278 |MP Com |130622.7+221648 |GDOR | 6.86 | 6.94 | |Hp| | | 1.073 | |F0 |78165 DM | +250279 |MQ Com |130929.7+270059 |RRAB | 14.01 | 14.36 | |V |47295.705 | | 0.6224220 |20 | |78155 GSC | +250280 |MR Com *|131424.2+271132 |EW | 12.00 | 12.45 | 12.43 |* |52308.4688 | | 0.412749 | | |78264 GSC | +250281 |MS Com |120600.8+231217 |GDOR | 7.85 |( 0.10 )| |B | | | 0.6879 | |F0V+G5:V |79219 DM | +250282 |MT Com *|125510.6+264227 |NL+ZZ | 18.0 | 19.0 | |V | | | | |DA+dM |79157 79158| +250283 |MU Com |132953.1+253904 |SRB | 11.0 | 11.5 | |V | | | 90.2 | | |79064 79196| +250284 |MV Com |120315.6+160638 |BY | 12.1 | 12.7 | |V | | | 3.530 | | |80034 80043| NL80_2 +250285 |MW Com *|121911.6+291201 |EA/RS | 10.36 | 10.6 : | 10.5 |* |51361.6996 | | 2.1677 |09 |F6 |80021 DM | NL80_2 +250286 |MX Com *|122354.9+224546 |EB | 11.80 | 11.96 | 11.94 |V |54656.4793 | | 1.81771 | | |80001 GSC | NL80_2 +250287 |MY Com |123013.7+215811 |BY | 10.23 |( 0.08 *)| |V | | | 1.1489 | |G0 |80021 HIP | NL80_2 +250288 |MZ Com *|123240.7+234805 |EA/RS | 10.05 | 10.33 | 10.2 : |V |52669.8558 | | 7.54596 |05 | |80001 GSC | NL80_2 +250289 |NN Com *|123531.9+141934 |EW | 12.14 | 12.68 | 12.67 |* |52763.558 | | 0.58283 | | |80367 80367| NL80_2 +250290 |NO Com |124107.8+302614 |EA | 6.94 | 7.02 | |V |48052.22 | | 2.7044 | |A5mF0 |80015 HIP | NL80_2 +250291 |NP Com |124848.3+144530 |RS | 9.8 | 10.1 | |V | | | 2.455 | |K0 |80034 GSC | NL80_2 +250292 |NQ Com |125147.2+223240 |BY | 10.48 |( 0.06 *)| |V | | | 3.4046 | |M0 |80021 HIP | NL80_2 +250293 |NR Com |125532.9+301111 |BY | 11.23 |( 0.06 *)| |V | | | 2.5903 | |K8V |80021 GSC | NL80_2 +250294 |NS Com *|125642.6+230907 |EW | 13.2 | 13.6 | 13.5 |V |53811.6873 | | 0.330805 | | |80001 GSC | NL80_2 +250295 |NT Com |130346.0+283721 |RS | 10.68 | 10.91 | |* | | | 3.2035 | |G5V: |80021 DM | NL80_2 +250296 |NU Com |131008.4+243602 |SRB | 9.3 | 9.9 | |V | | | 73. | |M5 |80001 DM | NL80_2 +250297 |NV Com *|131228.3+251427 |EW: | 11.85 | 12.17 | 12.15 |V |54231.56 | | 0.370890 | | |80001 GSC | NL80_2 +250298 |NW Com *|131247.4+265252 |DSCTC+GDOR| 8.43 | 8.48 | |V | | | 0.047852 | |Am |80380 HIP | NL80_2 +250299 |NX Com |131308.0+294052 |BY | 11.08 |( 0.04 *)| |V | | | 9.1128 | |G7V |80021 GSC | NL80_2 +250300 |NY Com |131434.5+203025 |RRAB | 15.0 | 17.1 | |P |37052.282 | | 0.501149 |10 : | |80381 80381| NL80_2 +250301 |NZ Com |131504.5+194253 |RRC | 15.9 | 16.8 | |P |45761.490 | | 0.315251 |30 : | |80381 80381| NL80_2 +250302 |OO Com |131519.7+193024 |RRAB | 14.1 | 15.3 | |P |53830.33 | | 0.600920 |20 | |80001 80381| NL80_2 +250303 |OP Com *|131812.5+172202 |RRAB | 15.5 | 17.2 | |P |41393.548 | | 0.484674 |30 : | |80381 80381| NL80_2 +250304 |OQ Com |131841.9+174524 |RRAB | 14.0 | 15.6 | |P |45408.493 | | 0.557481 |20 : | |80381 80381| NL80_2 +250305 |OR Com *|131954.5+195357 |RRAB | 12.6 | 13.7 | |V |40358.366 | | 0.601167 |25 | |80381 80381| NL80_2 +250306 |OS Com |132032.7+190922 |RRC | 15.6 | 16.4 | |P |40294.495 | | 0.336356 |50 : | |80381 80381| NL80_2 +250307 |OT Com |132117.6+210125 |BY | 11.82 |( 0.11 *)| |V | | | 1.3456 | | |80021 GSC | NL80_2 +250308 |OU Com |132118.4+180822 |SXPHE | 15.5 | 16.8 | |P |37050.3068 | | 0.0656853 |40 : | |80381 80381| NL80_2 +250309 |OV Com |132200.1+182709 |RRAB | 15.5 | 17.2 | |P |40742.325 | | 0.491717 |20 : | |80381 80381| NL80_2 +250310 |OW Com *|132412.8+170218 |EW | 15.4 | 16.4 | 16.3 |P |37074.525 | | 0.258127 | | |80381 80381| NL80_2 +250311 |OX Com *|132448.6+174110 |EW | 15.2 | 16.2 | 16.1 : |P |39971.516 | | 0.400234 | | |80381 80381| NL80_2 +250312 |OY Com |132810.4+193817 |LB: | 14.6 | 15.4 | |P | | | | | |80381 80381| NL80_2 +250313 |OZ Com |132909.3+180017 |RRAB | 16.0 | 17.6 | |P |44040.335 | | 0.720507 |20 : | |80381 80381| NL80_2 +250314 |PP Com |133100.9+262325 |DSCTC | 7.38 |( 0.01 )| |V | | | 0.06230061 | |sgF1 |80092 HIP | NL80_2 +250315 |PQ Com |133153.5+154118 |R | 13.8 |( 0.05 )| |R | | | 0.250 | |sd:Bp |80235 GSC | NL80_2 +250316 |PR Com |133204.6+183103 |RRAB | 15.5 | 16.5 | |P |40360.371 | | 0.590303 |25 | |80381 80381| NL80_2 +260001 |R CrA *|190153.6-365708 |INSA | 10.0 | 14.36 | |B | | | | |A5IIpe |08962 08961| +260002 |S CrA *|190108.6-365720 |INT | 10.49 | 13.2 | |V | | | | |Ge(T) |08962 08961| +260003 |T CrA *|190158.6-365750 |INSB | 11.67 | 14.3 | |V | | | | |F0ea |08962 08961| +260004 |U CrA |184107.0-375011 |M | 9.9 | 14.3 | |p |33175. | | 147.50 |42 |M2Ibe |01004 08613| +260005 |V CrA *|184732.3-380932 |RCB | 8.3 |< 16.5 | |V | | | | |C(R0) |08140 08613| +260006 |W CrA |180512.2-392033 |SRB | 11.0 | 13.1 | |p | | | 125. : | |C0-3(R4) |00236 CoD | +260007 |X CrA |180959.5-452449 |SRB | 10.8 | 12.7 | |p | | | 324. : | |MC |00235 03206| +260008 |Y CrA |181422.9-425032 |ZAND | 12.0 | 13.8 | |p | | | | |pec | 02452| +260009 |Z CrA |183104.3-445808 |M | 11.0 |< 12.9 | |p |11189. | | 303. | |M6e |00237 2MASS| +260010 |RR CrA |180557.1-381512 |M | 9.8 |< 14.0 | |p |29050. | | 280.10 | |M2e-M7II-IIIe |01004 06286| +260011 |RS CrA *|190315.1-393423 |M: | 10.0 |< 13.0 | |p | | | | | |08963 08953| +260012 |RT CrA |184533.0-384650 |M | 11.0 |< 13.5 | |p |10223. | | 218. | | |00237 08613| +260013 |RU CrA |191723.4-393647 |L: | 9.8 | 12.4 | |p | | | | | |00016 08953| +260014 |RV CrA |184007.1-423550 | | 12.2 | 15.5 | |p | | | | | |00239 CoD | +260015 |RW CrA *|175920.3-375253 |EA/SD | 9.3 | 10.3 | 9.4 |p |31017.297 | | 1.6835995 |18 |A0 |00240 00024| +260016 |RX CrA |182628.1-441754 |M | 10.6 |< 15. | |p |11862. | | 285.9 | |M3e |00016 CoD | +260017 |RY CrA |182158.1-445359 |M | 12.1 |< 14. | |p |28845. | | 195. | |M4e |00016 2MASS| +260018 |RZ CrA |190837.3-422133 |M | 9.9 |< 13.5 | |p |28744. | | 460. : | |M6e |00016 08953| +260019 |SS CrA *|180804.6-434500 |M | 12.2 | 15.7 | |V |31290. | | 237. : | | |04151 08964| +260020 |ST CrA |175950.1-432639 |M | 13.5 | 17.0 | |p |23755. | | 244.3 | |Me |00242 GSC | +260021 |SU CrA |180056.5-435650 |M | 14.5 |< 17.0 | |p |23699. | | 230.2 | | |00242 2MASS| +260022 |SV CrA *|180119.1-432336 |M | 13.5 | 17.0 | |p |23643. | | 353.5 | | |00242 USNO | +260023 |SW CrA |180133.2-434052 |M | 13.0 | 17.0 | |p |23675. | | 212.4 | |Me |00242 2MASS| +260024 |SX CrA |180138.7-434346 |M | 12.0 |< 16.5 | |p |23678. | | 215.8 | |Me |00242 2MASS| +260025 |SY CrA |180321.5-423757 |M | 13.0 | 16.5 | |p |23687. | | 268.0 | | |00242 2MASS| +260026 |SZ CrA |180828. -430555:|RRAB | 14.5 | 16.0 | |p |23311.83 | | 0.5058 | | |00242 | +260027 |TT CrA |180935.9-431655 |M | 13.0 | 17.0 | |p |23730. | | 252.0 | | |00242 08087| +260028 |TU CrA |180939.9-430142 |M | 13.5 | 17.0 | |p |23549. | | 207.5 | | |00242 08087| +260029 |TV CrA |180940.5-425743 |RRAB | 13.3 | 14.6 | |p |30927.280 | | 0.5083144 |09 | |03513 03513| +260030 |TW CrA |181140.3-423336 |M | 13.0 | 17.0 | |p |23619. | | 185.9 | | |00242 08087| +260031 |TX CrA |181429.7-431421 |RRAB | 14.6 | 15.6 | |p |30930.294 | | 0.4366280 |07 | |03513 03513| +260032 |TY CrA *|190140.8-365234 |EA | 9.39 | 9.81 | |V |42954.29 | | 2.888777 |06 |B9Vea |08965 08961| +260033 |TZ CrA *|181848.2-432137 |EA/SD | 9.6 | 10.33 | 9.72 |V |36080.035 | | 0.68674954 |20 *|A1III/IV |02487 08087| +260034 |UU CrA *|184045.9-421429 |EA/SD | 10.9 | 11.6 | 11.0 |p |16208.865 | | 2.2379960 |21 |A0 |02196 CoD | +260035 |UV CrA |185212.8-371915 |RRAB | 14.9 | 15.9 | |p |24018.335 | | 0.4730841 |23 | |00243 00243| +260036 |UW CrA |185221.3-372039 |RRAB | 13.4 | 15.2 | |p |23996.259 | | 0.5159405 |16 | |00244 00244| +260037 |UX CrA *|185731.8-374758 |M | 10.9 |< 17.0 | |p |27160. | | 347.5 | |M(6:)e |00235 GSC | +260038 |UY CrA *|190006. -365447:|CWB | 14.5 | 16.0 | |p |26571.55 | | 6.9963 |37 | |00245 | +260039 |UZ CrA |185317.6-380522 |M | 12.0 |< 16. | |p |16283. | | 107. | | |00246 08613| +260040 |VV CrA *|190306.7-371249 |INT | 13.0 |< 17.0 | |p | | | | |pec(T) |00247 07017| +260041 |VW CrA |190328.7-382005 |M | 12.5 |< 16. | |p |13710. | | 312. | |Me |00246 00244| +260042 |VX CrA |190335.3-382035 |M | 12.5 |< 16. | |p |13704. | | 310. | |Me |00246 00244| +260043 |VY CrA |180230.6-403300 |M | 13.2 |< 16.5 | |p |26490. | | 192. | | |00248 06286| +260044 |VZ CrA |180443.8-382925 |M | 13.5 |< 16.5 | |p |26540. | | 355. | | |00248 06286| +260045 |WW CrA |180536.8-434957 |RRAB | 12.0 | 12.7 | |p |31287.228 | | 0.5594749 |20 | |03516 03516| +260046 |WX CrA |180850.5-371943 |RCB | 11.0 |< 16.5 | |p | | | | |C(R5) |08140 08087| +260047 |WY CrA |181116. -423801:| | 14.2 |< 17.5 | |p | | | | | |00249 | +260048 |WZ CrA |181502.3-401325 |M | 12.5 |< 16.5 | |p |26480. | | 276. | | |00248 06286| +260049 |XX CrA |181544.2-372806 |RRAB | 13.7 | 14.9 | |p |31672.310 | | 0.5551489 |20 | |03513 03513| +260050 |XY CrA |181939.0-371839 |M | 13.1 |< 16.5 | |p |25430. | | 261.5 | | |00251 06286| +260051 |XZ CrA |182011.7-394739 |M | 12.9 |< 16.5 | |p |24640. | | 223. | | |00248 06286| +260052 |YY CrA |184115.1-370234 |M | 10.8 | 16.5 | |p |36804. | | 125.88 |39 |M3Ibe |00001 08613| +260053 |YZ CrA |184121.8-370202 |M | 13.4 | 18.0 | |p |36710. | | 193.4 | | |00001 08613| +260054 |ZZ CrA |184123.6-370306 |EA | 13.0 | 13.9 | |p | | | | | |00252 08613| +260055 |AA CrA |185228.1-375831 |M | 13.2 | 15.5 | |p |25560. | | 288. | | |03516 03516| +260056 |AB CrA |185653.6-392537 | | 15.5 | 16.5 | |p | | | | | |00249 2MASS| +260057 |AC CrA |175850.1-384225 |M | 14.0 |< 16.5 | |p |26220. | | 222. | | |00248 06286| +260058 |AD CrA |180106.1-395321 |M | 13.7 | 16.8 : | |p |26580. | | 171. | | |00248 06286| +260059 |AE CrA |180126.4-374538 |M | 14.4 |< 16.5 | |p |26500. | | 248. | | |00251 06286| +260060 |AF CrA *|180129.8-371141 |M | 12.0 |< 16.5 | |p |26470. | | 467. | |M5e |00251 08087| +260061 |AG CrA |180222.9-375746 |M: | 15.5 |< 16.5 | |p |25420. | | 575. | | |00251 06286| +260062 |AH CrA |180714.5-382330 |M | 13.5 |< 16.5 | |p |26520. | | 250. | | |00248 06286| +260063 |AI CrA |180923.6-401704 |M | 14.0 |< 16.5 | |p |26160. | | 268. | | |00248 06286| +260064 |AK CrA |181225.6-371342 |M | 14.5 |< 16.5 | |p |26080. | | 410. | | |00251 06286| +260065 |AL CrA *|181511.5-370652 |CWA | 11.46 | 12.58 | |V |35124.375 | | 17.060 |47 | |00046 04151| +260066 |AM CrA |184115.4-372905 |SR | 8.6 | 12.7 | |p | | | 187.5 : | |M3e |00235 08613| +260067 |AN CrA *|183941.8-413808 |RRAB | 13.0 | 14.4 | |p |25465.362 | | 0.5585143 |16 | |00243 00243| +260068 |AO CrA |183946.4-392814 |RRAB | 14.7 | 15.5 | |p |21847.264 | | 0.6514709 |18 | |00243 00243| +260069 |AP CrA |183955.6-373357 |RRAB | 14.4 | 15.4 | |p |23989.245 | | 0.6665832 |14 | |00243 00243| +260070 |AQ CrA |184034.6-402025 |DSCT: | 14.5 | 15.0 | |p |23991.271 | | 0.1187024 |42 | |00243 00243| +260071 |AR CrA |184304.6-380705 |RRAB | 13.6 | 14.5 | |p |23879.468 | | 0.7333033 |14 | |00243 00243| +260072 |AS CrA |184310.0-390612 |RRAB | 14.9 | 15.6 | |p |23877.573 | | 0.5191569 |15 | |00243 00243| +260073 |AT CrA |184341.5-404442 |RRAB | 14.6 | 15.5 | |p |24018.290 | | 0.4242427 |14 | |00243 00243| +260074 |AU CrA *|184548.9-405536 |RRAB | 14.9 | 15.5 | |p |25381.570 | | 0.6646496 |26 | |00243 00243| +260075 |AV CrA |184647.9-402319 |EA/SD: | 14.4 | 15.3 | |p |23878.533 | | 0.6590927 |18 *| |00243 00243| +260076 |AW CrA |184847.9-371348 |RRAB | 14.7 | 15.8 | |p |23880.548 | | 0.4357756 |16 | |00243 00243| +260077 |AX CrA |184942.2-405246 |RRAB | 14.4 | 15.6 | |p |23989.328 | | 0.6384869 |19 | |00243 00243| +260078 |AY CrA *|185133.0-372926 |EW/KW | 14.5 | 15.2 | 15.2 |p |24018.329 | | 0.4806400 | | |00243 00243| +260079 |AZ CrA |185144.7-385910 |RRAB | 14.5 | 15.9 | |p |24030.241 | | 0.4354278 |09 | |00243 00243| +260080 |BB CrA |185218.9-410717 |RRAB | 14.0 | 15.3 | |p |24018.237 | | 0.4644827 |11 | |00243 00243| +260081 |BC CrA |185319.1-402418 |RRAB | 14.0 | 15.3 | |p |23880.550 | | 0.4338259 |14 | |00243 00243| +260082 |BD CrA |185429.9-393240 |RRAB | 14.3 | 15.7 | |p |23992.264 | | 0.4496168 |16 | |00243 00243| +260083 |BE CrA |185454.0-402316 |CWB | 13.57 | 14.9 | |B |25479.25 | | 3.33650 |21 | |00046 00243| +260084 |BF CrA |185537.7-373520 |RRAB | 15.0 | 16.3 | |p |23877.538 | | 0.4581130 |35 | |00243 00243| +260085 |BG CrA *|185601.2-371619 |EW | 14.5 | 15.3 | 15.1 |p |23877.542 | | 0.4527708 | | |00243 00243| +260086 |BH CrA *|185644.3-394309 |RRAB | 14.5 | 15.6 | |p |25479.414 | | 0.5793620 |16 | |00243 00243| +260087 |BI CrA |185913.5-400823 |RRAB | 13.3 | 14.3 | |p |23989.388 | | 0.6193972 |27 | |00243 00243| +260088 |BK CrA |191133.8-412151 |RRAB | 12.9 | 14.3 | |p |23880.538 | | 0.6170315 |15 | |00253 00243| +260089 |BL CrA |191823.1-393433 |RRAB | 15.1 | 16.0 | |p |23987.311 | | 0.6682496 |19 | |00243 00243| +260090 |BM CrA |183615.2-393855 |RRAB | 13.2 | 14.2 | |p |24021.326 | | 0.4683532 |16 | |00244 00244| +260091 |BN CrA |183627.8-390256 |IS | 13.0 | 14.3 | |p | | | | | |00244 00244| +260092 |BO CrA |183649.6-410605 |RRAB | 14.1 | 14.8 | |p |23878.532 | | 0.5985054 |19 | |00244 00244| +260093 |BP CrA |183650.9-372553 |UGZ: | 13.5 | 15.9 | |V | | |( 13.5 ) | | |00254 08852| +260094 |BQ CrA |183701.4-380435 |CWB | 13.2 | 14.5 | |p |23880.575 | | 1.1276457 |12 | |00244 00244| +260095 |BR CrA |183731.8-395041 |RRAB | 14.2 | 15.1 | |p |23990.278 | | 0.6566548 |17 | |00244 00244| +260096 |BS CrA |183848.9-372607 |EA/DS | 13.0 | 14.7 | |p |23990.28 | | 11.36545 |07 *| |00244 08087| +260097 |BT CrA |183912.4-410702 |RRAB | 14.2 | 14.9 | |p |23881.524 | | 0.5424889 |29 | |00244 00244| +260098 |BU CrA |183910.5-373838 |RRAB | 14.5 | 15.4 | |p |23880.556 | | 0.5470096 |11 | |00244 00244| +260099 |BV CrA |183916.2-380654 |RRAB | 14.2 | 15.2 | |p |23987.321 | | 0.4904128 |17 | |00244 00244| +260100 |BW CrA |184022.7-403113 |RRAB | 14.6 | 15.5 | |p |23883.567 | | 0.5887684 |14 | |00244 00244| +260101 |BX CrA |184305.1-370611 |EA/SD: | 14.4 | 14.9 | |p |23883.546 | | 2.409662 |06 *| |00244 00244| +260102 |BY CrA |184350.7-384332 |RRAB | 14.9 | 15.8 | |p |23878.561 | | 0.4826170 |12 | |00244 00244| +260103 |BZ CrA |184428.6-403152 |RRAB | 14.8 | 15.6 | |p |24016.265 | | 0.4432499 |14 | |00244 00244| +260104 |CC CrA |184503.1-365854 |RRAB | 14.7 | 15.7 | |p |23883.550 | | 0.5922067 |15 | |00244 00244| +260105 |CD CrA |184633.1-380008 |M | 13.5 | 16.3 | |p |25800. | | 265. | | |04229 04229| +260106 |CE CrA |184728.3-395301 |RRAB | 14.4 | 15.5 | |p |23989.321 | | 0.4604108 |11 | |00244 00244| +260107 |CF CrA |184826.0-393717 |RRC | 14.4 | 15.0 | |p |23965.374 | | 0.3311464 |40 | |00244 00244| +260108 |CG CrA |184847.6-392506 |RRAB | 14.5 | 15.8 | |p |23997.278 | | 0.4815783 |15 | |00244 00244| +260109 |CH CrA |185043.5-405251 |RRAB | 14.5 | 15.5 | |p |23881.568 | | 0.4810838 |17 | |00244 00244| +260110 |CI CrA |185053.0-370100 |RRAB | 14.8 | 15.6 | |p |23986.224 | | 0.6124905 |26 | |00244 00244| +260111 |CK CrA |185110.8-385751 |RRAB | 15.0 | 15.9 | |p |23989.277 | | 0.4437775 |12 | |00244 00244| +260112 |CL CrA |185120.0-405759 |RRAB | 14.3 | 15.4 | |p |24020.321 | | 0.6556387 |15 | |00244 00244| +260113 |CM CrA *|185122.5-403235 |RRAB | 14.9 | 15.7 | |p |23987.301 | | 0.5057266 |14 | |00244 00244| +260114 |CN CrA |185128.0-411518 |M | 11.4 |< 14.5 | |p |26270. | | 214. | |M1e |00255 UCAC2| +260115 |CO CrA |185140.2-371825 |RRAB | 14.3 | 15.6 | |p |23990.335 | | 0.4833536 |13 | |00244 00244| +260116 |CP CrA |185225.4-385606 |RRAB | 14.8 | 15.5 | |p |23877.54 | | 0.6092638 |29 | |00244 00244| +260117 |CQ CrA |185245.9-400854 |RRC | 14.6 | 15.2 | |p |23989.273 | | 0.3337360 |46 | |00244 00244| +260118 |CR CrA *|185256.8-384922 |EW/KW | 15.1 | 15.7 | 15.7 |p |23877.555 | | 0.4081666 | | |00244 00244| +260119 |CS CrA *|185342.2-400302 |EW/KE | 14.7 | 15.2 | 15.2 |p |23987.29 | | 0.8131734 | | |00244 00244| +260120 |CT CrA |185352.1-394913 |SR | 13.9 | 15.0 | |p | | | 64. | | |00244 00244| +260121 |CU CrA |185353.3-385713 |RRAB | 14.6 | 15.8 | |p |23989.333 | | 0.4590166 |15 | |00244 00244| +260122 |CV CrA |185425.6-382556 |RRAB | 12.5 | 14.2 | |p |23992.303 | | 0.4709644 |17 | |00244 00244| +260123 |CW CrA |185504.8-374931 |EA | 13.4 | 15.0 | |p |24026.2922 | | 1.919673 |15 *| |00244 00244| +260124 |CX CrA |185657.7-391203 |RRAB | 14.9 | 15.8 | |p |24029.214 | | 0.5225518 |12 | |00244 00244| +260125 |CY CrA *|185751.2-390351 |RRAB | 12.8 | 13.9 | |p |23881.52 | | 0.5159328 |16 | |00244 00244| +260126 |CZ CrA |185854.7-411634 |RR | 14.3 | 15.3 | |p |23883.558 | | 0.4429593 |34 | |00244 00244| +260127 |DD CrA |190051.2-402026 |RRAB | 14.3 | 15.1 | |p |24019.238 | | 0.6096285 |16 | |00244 00244| +260128 |DE CrA |190059.0-380933 |RRAB | 15.3 | 16.2 | |p |23880.546 | | 1.00938 |16 | |00244 00244| +260129 |DF CrA |190129.7-404934 |RRAB | 13.5 | 15.2 | |p |23965.380 | | 0.5298251 |11 | |00244 00244| +260130 |DG CrA *|190155.1-372340 |INS | 13.4 | 16.2 | |p | | | | |ea |00244 08961| +260131 |DH CrA |190436.9-394211 |RRAB | 14.4 | 15.6 | |p |23877.56 | | 0.7630378 |37 | |00244 00244| +260132 |DI CrA |190746.3-413249 |SR | 12.7 | 14.0 | |p | | | | | |00244 00244| +260133 |DK CrA |190756.9-412131 |RRAB | 13.9 | 15.2 | |p |23880.544 | | 0.4613204 |11 | |00244 00244| +260134 |DL CrA *|191026.0-391812 |EB/SD | 13.4 | 14.7 | 13.6 |p |23989.273 | | 0.5769555 | | |00244 00244| +260135 |DM CrA |191045.5-391039 |RRAB | 13.9 | 14.9 | |p |23877.540 | | 0.6592222 |17 | |00244 00244| +260136 |DN CrA *|191155.0-391153 |RRAB | 14.2 | 15.4 | |p |23988.317 | | 0.4823327 |15 | |00244 00244| +260137 |DO CrA |191312.8-391404 |RRAB | 14.6 | 15.8 | |p |23879.500 | | 0.5297219 |11 | |00244 00244| +260138 |DP CrA |185658.5-392116 |RRAB | 14.4 | 15.3 | |p |23987.30 | | 0.6745818 |22 | |00244 00244| +260139 |DQ CrA |175935.8-424531 |M: | 14.7 |< 16.5 | |p |25750. | | 148.6 | | |00014 USNO | +260140 |DR CrA |180023.8-410808 |M | 14.3 |< 16.5 | |p |25470. | | 260. | | |00014 USNO | +260141 |DS CrA |180123.3-440154 |M: | 15.0 |< 16.8 | |p |25455. | | 208. | | |00014 USNO | +260142 |DT CrA |175839.3-380534 |RR | 15.4 | 16.8 : | |p |26067.610 | | 0.45111 | | |00251 06286| +260143 |DU CrA |175836.5-370508 |M | 14.5 |< 16.5 | |p |26480. | | 243.8 | | |00251 06286| +260144 |DV CrA |175842.9-381041 |M | 14.5 |< 16.5 | |p |25830. | | 206.5 | | |00251 06286| +260145 |DW CrA |175941.7-380046 |M | 14.2 |< 16.5 | |p |26600. | | 280. | | |00251 06286| +260146 |DX CrA |175942.1-381452 |I | 14.8 | 15.6 | |p | | | | | |00251 06286| +260147 |DY CrA |175943.0-370425 |RRAB | 15.5 | 16.8 | |p |26097.595 | | 0.5812 | | |00251 06286| +260148 |DZ CrA *|175948.5-372226 |EA/SD: | 12.8 | 13.6 | |p |30993.290 | | 2.669630 |12 | |03513 03513| +260149 |EE CrA *|175952.7-380743 |SR | 13.0 | 15.5 | |p | | | 167. | | |00251 06286| +260150 |EF CrA |180002.5-381631 |M | 14.5 |< 16.5 | |p |24760. | | 238.5 | | |00251 06286| +260151 |EG CrA |180009.9-375719 |M | 13.6 | 16.5 | |p |26180. | | 128.1 | | |00251 06286| +260152 |EH CrA |180025.1-374006 |RR | 15.4 | 16.8 | |p |24728.565 | | 0.44016 | | |00251 06286| +260153 |EI CrA |180028.5-371933 |I: | 14.7 | 15.9 | |p | | | | | |00251 06286| +260154 |EK CrA *|180029.5-371318 |M: | 14.8 |< 16.5 | |p |24750. | | 435. | | |00251 06286| +260155 |EL CrA |180046.5-374451 |M | 14.3 |< 16.5 | |p |24700. | | 239. | | |00251 06286| +260156 |EM CrA |180049.1-373025 |M: | 14.8 |< 16.5 | |p |25830. | | 273.5 | | |00251 06286| +260157 |EN CrA |180202.7-380914 |RR | 15.2 | 15.9 | |p |26593.300 | | 0.29752 | | |00251 06286| +260158 |EO CrA |180204.3-371429 |M | 14.4 |< 16.5 | |p |26110. | | 185.5 | | |00251 06286| +260159 |EP CrA |180214.4-372137 |RRAB | 14.5 | 15.8 | |p |26179.380 | | 0.65683 | | |00251 06286| +260160 |EQ CrA |180222.8-373257 |M | 14.2 |< 16.5 | |p |26100. | | 206.5 | | |00251 06286| +260161 |ER CrA |180241.6-370530 |M | 14.5 |< 16.5 | |p |20360. | | 252. | | |00251 06286| +260162 |ES CrA |180257.0-373539 |M | 13.7 |< 16.5 | |p |26190. | | 248.5 | | |00251 06286| +260163 |ET CrA |180257.9-373203 |M: | 14.7 |< 16.5 | |p |26150. | | 316. | | |00251 06286| +260164 |EU CrA |180305.3-381133 |M: | 15.0 |< 16.5 | |p |25790. | | 244.5 | | |00251 06286| +260165 |EV CrA |180306.5-381209 |RR | 15.2 | 16.4 | |p |27597.240 | | 0.445995 | | |00251 06286| +260166 |EW CrA |180314.2-372312 |M: | 15.3 |< 16.5 | |p |26130. | | 214. | | |00251 06286| +260167 |EX CrA |180319.7-375938 |M: | 15.5 |< 16.5 | |p |25430. | | 308. : | | |00251 06286| +260168 |EY CrA |180319.6-370600 |M | 13.8 |< 16.5 | |p |24620. | | 417.3 | | |00251 06286| +260169 |EZ CrA |180321.4-372928 |RRAB | 14.9 | 16.2 | |p |24649.750 | | 0.53966 | | |00251 06286| +260170 |FF CrA *|180335.1-372104 |M: | 13.4 |< 15.0 | |p |23930. | | 139. | | |00251 06286| +260171 |FG CrA |180355.2-374807 |RR | 15.6 | 16.8 | |p |26210.390 | | 0.40266 | | |00251 06286| +260172 |FH CrA |180357.1-373155 |M: | 15.0 |< 16.5 | |p |24750. | | 320. | | |00251 06286| +260173 |FI CrA |180359.8-381513 |RR | 14.9 | 16.2 | |p |26090.590 | | 0.4910 | | |00251 06286| +260174 |FK CrA *|180401.9-375035 |EA/SD | 14.3 | 16.0 | 14.5 |p |30500.490 | | 3.267581 |12 *| |03513 03513| +260175 |FL CrA |180408.7-381442 |I: | 13.6 | 14.5 | |p | | | | | |00251 06286| +260176 |FM CrA |180445.7-375249 |M: | 14.9 |< 16.5 | |p |24720. | | 270. | | |00251 06286| +260177 |FN CrA |180446.3-372421 |M: | 15.4 |< 16.5 | |p |24760. | | 242.5 | | |00251 06286| +260178 |FO CrA |180505.9-381510 |SR | 13.3 | 15.0 | |p | | | 100. : | | |00251 06286| +260179 |FP CrA |180500.2-372533 |M: | 14.8 |< 16.5 | |p |24700. | | 240. | | |00251 06286| +260180 |FQ CrA |180535.4-381253 |I | 13.0 | 13.4 | |p | | | | | |00251 06286| +260181 |FR CrA |180555.9-381206 |M: | 15.0 |< 16.5 | |p |26150. | | 136. | | |00251 06286| +260182 |FS CrA *|180612.2-373129 |EW/KW | 13.8 | 14.6 | 14.5 |p |31204.3895 | | 0.2636378 | | |00240 06286| +260183 |FT CrA |180623.1-372628 |M | 13.4 | 16.0 : | |p |24400. | | 120.5 | | |00251 06286| +260184 |FU CrA |180628.2-374933 |SR: | 13.8 | 16.3 | |p |23910. | | 99. | | |00251 06286| +260185 |FV CrA |180627.3-371528 |M: | 15.2 |< 16.5 | |p |24720. | | 199. | | |00251 06286| +260186 |FW CrA *|180653.4-373232 |SR | 13.8 | 15.6 | |p |25830. | | 114.2 | |ea: |00251 06286| +260187 |FX CrA |180707.7-373821 |E/SD: | 14.4 | 15.4 | |p |26145.250 | | 2.0475 | | |00251 06286| +260188 |FY CrA |180721.6-372849 |M | 14.2 |< 16.5 | |p |26145. | | 212.2 | | |00251 06286| +260189 |FZ CrA |180726.5-371615 |RRAB | 15.0 | 16.1 | |p |26123.630 | | 0.53527 | | |00251 06286| +260190 |GG CrA |180736.4-375249 |M | 12.5 | 16.3 | |p |26560. | | 129.2 | | |00251 06286| +260191 |GH CrA |180800.5-372432 |M: | 14.7 |< 16.5 | |p |26590. | | 299.6 | | |00251 06286| +260192 |GI CrA |180802.7-372710 |M | 14.5 |< 16.5 | |p |24770. | | 165.8 | | |00251 06286| +260193 |GK CrA |180800.4-374515 |RRAB | 14.0 | 15.0 | |p |30602.341 | | 0.4889115 |10 | |03516 03516| +260194 |GL CrA |180801.6-371512 |RR | 15.2 | 16.2 | |p |26179.440 | | 0.47233 | | |00251 06286| +260195 |GM CrA |180805.8-375818 |M | 13.5 |< 16.5 | |p |26110. | | 224.6 | | |00251 06286| +260196 |GN CrA |180802.6-370733 |RR | 14.6 | 15.4 | |p |26125.450 | | 0.53849 | | |00251 06286| +260197 |GO CrA |180804.6-372206 |RRAB | 15.0 | 16.1 | |p |26180.310 | | 0.53040 | | |00251 06286| +260198 |GP CrA |180810.4-373310 |RR | 15.5 |< 16.5 | |p |24712.660 | | 0.43631 | | |00251 06286| +260199 |GQ CrA |180814.8-380514 |SR | 14.8 | 16.4 | |p | | | | | |00251 06286| +260200 |GR CrA |180844.4-373742 |M | 12.7 |< 16.5 | |p |26180. | | 220. | |Me |00251 06286| +260201 |GS CrA *|180848.1-370049 |M | 14.4 |< 16.5 | |p |25360. | | 282. | | |00251 06286| +260202 |GT CrA |180900.1-381421 |RR | 15.4 | 16.7 : | |p |26179.340 | | 0.45711 | | |00251 06286| +260203 |GU CrA |180900.5-372331 |M | 13.7 |< 16.5 | |p |26170. | | 341. | | |00251 06286| +260204 |GV CrA |180909.4-372624 |I | 14.0 | 16.0 | |p | | | | | |00251 06286| +260205 |GW CrA |180925.9-370806 |RRAB | 14.8 | 15.9 | |p |26179.440 | | 0.60410 | | |00251 06286| +260206 |GX CrA |180926.5-372417 |I | 14.0 | 15.2 | |p | | | | | |00251 06286| +260207 |GY CrA |180934.0-371702 |I | 13.2 | 14.1 | |p | | | | | |00251 06286| +260208 |GZ CrA |180952.5-371216 |M | 13.5 |< 16.5 | |p |26190. | | 277.5 | |Me |00251 06286| +260209 |HH CrA |181005.6-380306 |RR | 15.3 | 16.6 | |p |26133.310 | | 0.49410 | | |00251 06286| +260210 |HI CrA |181035.5-370406 |RR | 15.0 | 16.1 | |p |24655.850 | | 0.47071 | | |00251 06286| +260211 |HK CrA |181056.3-381142 |M | 14.1 |< 16.5 | |p |26560. | | 196. | | |00251 06286| +260212 |HL CrA |181054.9-374444 |M: | 15.4 |< 16.5 | |p |26080. | | 273.5 | | |00251 06286| +260213 |HM CrA |181104.5-374437 |M: | 15.3 |< 16.5 | |p |26170. | | 257. | | |00251 06286| +260214 |HN CrA |181111.9-372125 |RRAB | 15.1 | 16.1 | |p |25851.280 | | 0.53668 | | |00251 06286| +260215 |HO CrA |181126.1-374613 |RR | 15.3 | 16.4 | |p |25799.460 | | 0.48744 | | |00251 06286| +260216 |HP CrA |181133.2-375733 |M | 13.5 |< 16.5 | |p |26100. | | 144. | | |00251 06286| +260217 |HQ CrA |181153.7-373915 |CWB | 14.2 | 15.6 | |p |30559.244 | | 1.414950 |42 | |03513 03513| +260218 |HR CrA |181230.0-375928 |SR: | 13.4 | 15.9 | |p | | | | |C(R) |00251 06286| +260219 |HS CrA |181250.9-371237 |M | 14.5 |< 16.5 | |p |26200. | | 236. | | |00251 06286| +260220 |HT CrA |181316.4-381001 |RR | 15.1 | 15.8 | |p |26501.500 | | 0.6308 | | |00251 06286| +260221 |HU CrA |181345.6-375455 |RRAB | 14.8 | 16.0 | |p |25801.500 | | 0.7059 | | |00251 06286| +260222 |HV CrA |181356.3-373212 |RRAB | 14.3 | 15.5 | |p |24728.630 | | 0.65005 | | |00251 06286| +260223 |HW CrA |181402.4-372154 |RR | 14.9 | 16.0 | |p |24626.860 | | 0.44928 | | |00251 06286| +260224 |HX CrA |181403.2-380357 |RRAB | 14.1 | 15.2 | |p |31203.454 | | 0.6593034 |18 | |03513 03513| +260225 |HY CrA |181406.6-371744 |I | 13.7 | 15.0 | |p | | | | | |00251 06286| +260226 |HZ CrA |181417.3-371824 |RRAB | 15.1 | 16.1 | |p |24650.760 | | 0.57238 | | |00251 06286| +260227 |II CrA |181422.1-370936 |M | 13.4 |< 16.5 | |p |25790. | | 260.2 | | |00251 06286| +260228 |IK CrA |181434.0-373958 |I | 15.5 | 16.3 | |p | | | | | |00251 06286| +260229 |IL CrA |181457.1-373734 |M | 13.5 |< 16.5 | |p |26110. | | 252.2 | | |00251 06286| +260230 |IM CrA |181516.0-370216 |M | 14.5 | 18.0 | |p |26080. | | 212.4 | | |00251 06286| +260231 |IN CrA |181530.8-380609 |RR | 14.9 | 16.2 | |p |25418.430 | | 0.44081 | | |00251 06286| +260232 |IO CrA |181646.0-372327 |SR | 15.0 | 15.9 | |p |24700. | | 170. | | |00251 06286| +260233 |IP CrA |181652.9-375728 |RRAB | 13.8 | 15.2 | |p |30927.318 | | 0.4880765 |14 | |03513 03513| +260234 |IQ CrA |181752.2-372252 |RRAB | 14.6 | 15.5 | |p |31328.255 | | 0.4501817 |09 | |03513 03513| +260235 |IR CrA |181825.6-374653 |RR | 14.0 | 14.9 | |p |26120.390 | | 0.50950 | | |00251 06286| +260236 |IS CrA |181937.1-380407 |EA/SD | 10.9 | 12.2 | |p |31293.214 | | 3.236580 |12 *|A2 |03513 03513| +260237 |IT CrA *|182011.6-372415 |EA/SD | 13.5 | 14.4 | 13.6 |p |30994.341 | | 5.71151 |07 *| |03513 03513| +260238 |IU CrA |182024.2-381715 |M | 12.7 |< 16.5 | |p |24010. | | 251.6 | | |00251 06286| +260239 |IV CrA |180758.6-380510 |I: | 14.3 | 15.3 | |p | | | | | |00251 06286| +260240 |IW CrA |180957.2-381407 |SR: | 14.4 | 15.4 | |p | | | | | |00251 06286| +260241 |IX CrA |181144.5-380346 |I: | 14.0 | 15.4 | |p | | | | | |00251 06286| +260242 |IY CrA |180523.4-433356 |M | 13.6 |< 15.7 | |p |31266. | | 199. | |Me |04151 04151| +260243 |IZ CrA |175845.5-382250 |M | 15.0 |< 17.0 | |p |26590. | | 244. | | |00248 06286| +260244 |KK CrA |175858.3-385506 |M: | 15.5 |< 17.0 | |p |26480. | | 260. | | |00248 06286| +260245 |KL CrA |175900.1-382214 |M: | 15.0 |< 16.5 | |p |26530. | | 160. | | |00248 06286| +260246 |KM CrA *|175905.7-392950 |M | 12.0 |< 16.5 | |p |26550. | | 241. | |Me |00248 2MASS| +260247 |KN CrA |175910.2-393526 |M: | 15.4 |< 17.0 | |p |26570. | | 278. | | |00248 06286| +260248 |KO CrA |175913.2-385604 |RRAB | 13.7 | 14.4 | |p |31285.349 | | 0.5935684 |17 | |03516 03516| +260249 |KP CrA |175923.8-400511 |RR | 14.9 | 16.1 | |p |26803.580 | | 0.48491 | | |00248 06286| +260250 |KQ CrA *|175934.5-393507 |CWA | 11.92 | 12.91 | |V |35152.715 | | 30.864 |24 | |02309 03513| +260251 |KR CrA |175936.1-401604 |SR | 14.0 | 16.3 | |p |26190. | | 133. | | |00248 06286| +260252 |KS CrA |175937.0-392635 |LB | 14.0 | 15.1 | |p | | | | | |00248 06286| +260253 |KT CrA *|175944.0-392908 |SR | 13.9 | 15.7 | |p | | | 100. : | | |00248 06286| +260254 |KU CrA |180006.9-393815 |M | 14.5 |< 17.0 | |p |26520. | | 251. | | |00248 06286| +260255 |KV CrA |180018.4-383013 |RR | 15.6 |< 16.5 | |p |26179.350 | | 0.45889 | | |00248 06286| +260256 |KW CrA |180040.1-393756 |EA/SD | 13.0 | 15.1 | |p |31668.247 | | 2.770906 |10 *| |03513 03513| +260257 |KX CrA |180048.5-384824 |M | 14.5 |< 16.5 | |p |26620. | | 180. | | |00248 06286| +260258 |KY CrA |180100.0-401820 |RR | 15.4 | 16.5 | |p | | | | | |00248 06286| +260259 |KZ CrA |180102.9-403217 |M | 14.5 |< 16.5 | |p |26470. | | 214. | | |00248 06286| +260260 |LL CrA |180123.0-384834 |M | 14.8 |< 17.0 | |p |26560. | | 156. | | |00248 06286| +260261 |LM CrA |180138.7-395237 |RRAB | 14.3 | 15.4 | |p |30875.359 | | 0.4561435 |12 | |03513 03513| +260262 |LN CrA |180144.3-404334 |M | 14.4 |< 16.5 | |p |26100. | | 338. | | |00248 06286| +260263 |LO CrA |180206.7-393819 |M: | 15.0 |< 16.5 | |p |26540. | | 425. : | | |00248 06286| +260264 |LP CrA |180207.0-385539 |LB | 14.2 | 15.4 | |p | | | | | |00248 06286| +260265 |LQ CrA |180207.4-385717 |RR | 14.2 | 15.0 | |p |26179.340 | | 0.62362 | | |00248 06286| +260266 |LR CrA |180214.9-391059 |RR | 15.2 | 16.2 | |p | | | 0.5 : | | |00248 USNO | +260267 |LS CrA |180216.3-384304 |RRAB | 14.4 | 15.2 | |p |30602.260 | | 0.4836382 |10 | |03513 03513| +260268 |LT CrA |180242.2-393610 |RRAB | 15.5 | 16.6 | |p |26563.480 | | 0.64175 | | |00248 06286| +260269 |LU CrA *|180241.1-383115 |M | 14.2 |< 16.5 | |p |26560. | | 365. | | |00248 2MASS| +260270 |LV CrA |180252.0-401218 |RR | 14.9 | 16.3 | |p | | | | | |00248 06286| +260271 |LW CrA |180300.3-394421 |M: | 14.7 |< 16.5 | |p |26470. | | 205. | | |00248 06286| +260272 |LX CrA |180313.2-401259 |M: | 14.0 |< 15.5 | |p |31675. | | 212. | | |03513 03513| +260273 |LY CrA |180309.4-382530 |RR | 15.5 | 16.6 | |p |26179.230 | | 0.44818 | | |00248 06286| +260274 |LZ CrA |180309.7-382630 |RR | 15.5 | 16.7 | |p |26179.500 | | 0.46881 | | |00248 06286| +260275 |MM CrA |180316.6-393156 |I | 14.8 | 16.0 | |p | | | | | |00248 06286| +260276 |MN CrA |180322.8-403934 |M | 13.2 |< 16.5 | |p |26590. | | 234. | | |00248 06286| +260277 |MO CrA |180324.0-405301 |RR | 15.2 | 16.4 | |p | | | | | |00248 06286| +260278 |MP CrA |180318.2-384246 |RR | 15.0 | 16.3 | |p |26179.390 | | 0.48753 | | |00248 06286| +260279 |MQ CrA |180333.0-395152 |M | 13.5 |< 16.5 | |p |26050. | | 204. | |Me |00248 00021| +260280 |MR CrA |180336. -395334:|RR | 15.0 | 16.2 | |p | | | | | |00248 06286| +260281 |MS CrA *|180338.3-401726 |I | 14.5 | 15.5 | |p | | | | | |00248 06286| +260282 |MT CrA *|180337.9-384020 |EA/DM: | 12.6 | 13.8 | 13.1 |p |31290.564 | | 14.6770 |08 *| |03513 03513| +260283 |MU CrA |180340.8-390724 |M | 13.0 |< 16.5 | |p |26570. | | 290. | | |00248 06286| +260284 |MV CrA |180342.5-392615 |RRAB | 14.5 | 15.5 | |p |32445.258 | | 0.39045434 |12 | |03513 03513| +260285 |MW CrA |180345.7-383508 |SRB | 13.8 | 15.1 | |p | | | | | |00248 06286| +260286 |MX CrA |180347.0-390233 |RR | 15.5 |< 16.5 | |p | | | | | |00248 06286| +260287 |MY CrA |180351.9-390949 |RRAB | 14.8 | 16.0 | |p |26187.370 | | 0.53460 | | |00248 06286| +260288 |MZ CrA |180355.9-384106 |M | 14.3 |< 16.5 | |p |26220. | | 210. | | |00248 2MASS| +260289 |NN CrA |180407.6-405053 |RR | 15.4 | 16.4 | |p | | | | | |00248 06286| +260290 |NO CrA *|180403.0-393016 |I | 14.7 | 15.7 | |p | | | | | |00248 06286| +260291 |NP CrA |180404.9-392956 |RR | 15.0 | 16.4 | |p | | | | | |00248 06286| +260292 |NQ CrA |180417.2-403837 |M | 14.2 |< 16.5 | |p |26240. | | 210. | | |00248 06286| +260293 |NR CrA |180416.2-390040 |RRAB | 14.5 | 15.5 | |p |31238.511 | | 0.5358802 |18 | |03513 03513| +260294 |NS CrA |180424.8-382542 |RR | 15.0 | 16.3 | |p |26179.280 | | 0.43775 | | |00248 06286| +260295 |NT CrA |180434.2-393615 |RR | 15.3 | 16.5 | |p |26563.230 | | 0.32165 | | |00248 06286| +260296 |NU CrA |180433.3-382919 |RR | 15.2 | 16.7 | |p |26179.480 | | 0.46566 | | |00248 06286| +260297 |NV CrA |180442.7-395419 |M | 14.0 |< 17.0 | |p |26590. | | 285. | | |00248 06286| +260298 |NW CrA |180443.5-400343 |RR | 15.2 | 16.4 | |p | | | | | |00248 06286| +260299 |NX CrA |180500.5-402710 |M | 14.0 |< 16.5 | |p |26550. | | 212. | | |00248 06286| +260300 |NY CrA |180503.0-401609 |M: | 14.6 |< 16.5 | |p |26590. | | 299. | | |00248 06286| +260301 |NZ CrA |180513.0-383647 |RR | 15.3 | 16.6 | |p | | | | | |00248 06286| +260302 |OO CrA |180518.4-392125 |RR | 15.7 | 16.5 | |p | | | 0.521 | | |00248 GSC22| +260303 |OP CrA |180532.1-384450 |M | 13.8 |< 16.5 | |p |26460. | | 262. | | |00248 06286| +260304 |OQ CrA |180547.3-402902 |LB | 14.5 | 16.5 | |p | | | | | |00248 06286| +260305 |OR CrA |180544.6-382904 |M | 14.0 |< 16.5 | |p |26180. | | 112.5 | | |00248 06286| +260306 |OS CrA |180556.0-394418 |RRAB | 14.7 | 15.6 | |p |31203.481 | | 0.5639971 |10 | |03513 03513| +260307 |OT CrA |180607. -392341:|M | 14.0 |< 16.5 | |p |26560. | | 330. | | |00248 06286| +260308 |OU CrA |180606.4-390228 |RRAB | 14.9 | 15.7 | |p |30927.3069 | | 0.4801547 |20 | |00240 06286| +260309 |OV CrA |180606.3-382918 |RRAB | 15.3 | 16.6 | |p |26563.430 | | 0.56314 | | |00248 06286| +260310 |OW CrA |180622.9-385240 |E/SD: | 14.5 | 15.5 | |p |23965.690 | | 1.8539 | | |00248 06286| +260311 |OX CrA |180636.5-393545 |RRAB | 13.7 | 14.9 | |p |30970.259 | | 0.5375499 |11 | |03513 03513| +260312 |OY CrA |180710.7-393701 |M | 14.5 |< 16.5 | |p |26100. | | 214. | | |00248 06286| +260313 |OZ CrA |180715.2-392302 |RR | 14.7 | 15.8 | |p | | | | | |00248 06286| +260314 |PP CrA |180717.6-393659 |LB: | 14.9 | 16.3 | |p | | | | | |00248 06286| +260315 |PQ CrA |180721.7-401441 |RR | 15.0 | 16.2 | |p | | | | | |00248 06286| +260316 |PR CrA |180731.4-392338 |RR | 15.2 | 16.6 | |p | | | | | |00248 06286| +260317 |PS CrA |180733.9-384103 |M | 13.0 |< 16.5 | |p |26240. | | 380. | | |00248 06286| +260318 |PT CrA |180740.7-403520 |EA/DS: | 13.7 | 14.3 | |p |31291.39 | | 8.33358 |08 *| |03513 03513| +260319 |PU CrA |180800.4-403240 |M | 13.8 |< 16.5 | |p |26590. | | 257. | | |00248 06286| +260320 |PV CrA |180759.3-392545 |RR | 15.5 | 16.6 | |p | | | | | |00248 06286| +260321 |PW CrA |180800.5-383556 |M | 14.2 |< 16.5 | |p | | | 300. : | | |00248 06286| +260322 |PX CrA |180828.0-401043 |SRA | 13.7 | 15.0 | |p |26540. | | 88.5 | | |00248 06286| +260323 |PY CrA |180842.7-385558 |RRAB | 13.6 | 15.0 | |p |30989.245 | | 0.4473689 |08 | |03513 03513| +260324 |PZ CrA |180846.0-392739 |EA/SD | 13.0 | 14.5 | |p |31293.4923 | | 1.1672542 |14 | |00240 06286| +260325 |QQ CrA |180858.4-385831 |M: | 15.6 |< 16.5 | |p | | | | | |00248 06286| +260326 |QR CrA *|180906.3-392150 |I | 15.3 | 16.3 | |p | | | | | |00248 06286| +260327 |QS CrA |180904.7-385330 |RRAB | 14.5 | 15.5 | |p |31268.365 | | 0.4431357 |12 | |03513 03513| +260328 |QT CrA |180912.4-401213 |SRD: | 11.4 | 12.5 | |p | | | 79.145 |47 |A/Fe-K |00235 06286| +260329 |QU CrA |180911.2-383922 |E/SD: | 14.2 | 15.0 | |p |26180.230 | | 2.4287 | | |00248 06286| +260330 |QV CrA |180921.6-404349 |RRAB | 14.9 | 15.6 | |p |32445.252 | | 0.6605972 |08 | |03513 03513| +260331 |QW CrA |180923.8-404400 |LB | 14.9 | 16.2 | |p | | | | | |00248 06286| +260332 |QX CrA |180926.6-390932 |RRAB | 14.6 | 15.5 | |p |31345.258 | | 0.4392209 |10 | |03513 03513| +260333 |QY CrA |180928.0-382958 |SRA | 14.0 | 15.4 | |p |26175. | | 91. | | |00248 06286| +260334 |QZ CrA |180945.3-381810 |M: | 15.2 |< 16.5 | |p |26520. | | 202. : | | |00248 06286| +260335 |V0335 CrA |181000.2-384245 |M | 13.0 |< 17.0 | |p |26160. | | 392. | | |00248 06286| +260336 |V0336 CrA |181017.4-394210 |RR | 15.5 | 16.5 | |p | | | 0.510 | | |00248 06286| +260337 |V0337 CrA |181041.4-384226 |RRAB | 14.4 | 15.3 | |p |30606.279 | | 0.6083327 |07 | |03513 03513| +260338 |V0338 CrA |181047.1-400158 |M | 14.4 |< 16.5 | |p |26160. | | 223. | | |00248 2MASS| +260339 |V0339 CrA |181100.4-402859 |RR | 15.3 | 16.8 | |p |26563.240 | | 0.540 : | | |00248 06286| +260340 |V0340 CrA |181112.0-403852 |RR | 14.8 | 15.7 | |p |26563.440 | | 0.77007 | | |00248 06286| +260341 |V0341 CrA |181118.1-400233 |RR | 14.7 | 15.8 | |p | | | | | |00248 06286| +260342 |V0342 CrA |181125.6-403038 |RR | 15.0 | 15.7 | |p |26559.290 | | 0.72019 | | |00248 06286| +260343 |V0343 CrA |181128.1-382655 |M | 12.8 |< 16.5 | |p |26140. | | 273. | | |00248 06286| +260344 |V0344 CrA |181133.4-392738 |RRAB | 15.5 | 16.6 | |p |26563.440 | | 0.584 | | |00248 06286| +260345 |V0345 CrA |181200.4-385740 |M | 14.4 |< 16.5 | |p |26520. | | 189. | |M4e |00248 06286| +260346 |V0346 CrA |181208.8-384423 |M: | 15.0 |< 16.5 | |p |26450. | | 268. | | |00248 06286| +260347 |V0347 CrA *|181219.8-391422 |CWA | 12.20 | 13.18 | |V |31169.8 | | 15.3460 |50 | |03516 03516| +260348 |V0348 CrA |181229.1-403442 |RR | 15.6 | 16.8 | |p |26563.320 | | 0.435 | | |00248 06286| +260349 |V0349 CrA |181249.0-404139 |SRB | 14.0 | 15.3 | |p | | | 80. | | |00248 06286| +260350 |V0350 CrA *|181243.6-382024 |EB/KW: | 13.2 | 13.9 | 13.4 |p |30994.310 | | 0.4662128 | | |03516 03516| +260351 |V0351 CrA |181247.8-390544 |RR | 14.8 | 16.1 | |p |26563.340 | | 0.53190 | | |00248 06286| +260352 |V0352 CrA |181252.2-390359 |M: | 15.0 |< 16.5 | |p |26500. | | 277. | | |00248 06286| +260353 |V0353 CrA |181258.1-393850 |SR | 14.7 | 16.3 | |p |26510. | | 120. : | | |00248 06286| +260354 |V0354 CrA |181338.9-394158 |M: | 14.8 |< 16.5 | |p |26470. | | 415. : | | |00248 06286| +260355 |V0355 CrA |181349.9-392932 |RRAB | 15.3 | 16.6 | |p |26563.480 | | 0.60177 | | |00248 06286| +260356 |V0356 CrA |181358.4-395527 |M | 13.7 |< 17.0 | |p |26240. | | 186. | | |00248 06286| +260357 |V0357 CrA |181410.4-400118 |RR | 15.5 | 16.6 | |p |26563.230 | | 0.61527 | | |00248 06286| +260358 |V0358 CrA |181426.4-382948 |M | 14.2 |< 16.5 | |p |26460. | | 208. | | |00248 06286| +260359 |V0359 CrA |181603.3-383906 |E | 12.0 | 12.9 | |p |26563.300 | | | | |00248 06286| +260360 |V0360 CrA |181506.4-391301 |M: | 14.6 |< 16.5 | |p |26550. | | 375. | | |00248 06286| +260361 |V0361 CrA |181508.1-391417 |M | 14.0 |< 16.5 | |p |26610. | | 211. | | |00248 06286| +260362 |V0362 CrA |181512.8-395942 |SRA | 13.6 | 14.9 | |p |26120. | | 150. | | |00248 06286| +260363 |V0363 CrA |181515.0-402335 |RR | 15.3 | 16.5 | |p | | | 0.450 | | |00248 06286| +260364 |V0364 CrA |181510.4-382330 |RRAB | 14.4 | 15.5 | |p |31594.385 | | 0.4567146 |10 | |03513 03513| +260365 |V0365 CrA |181517.7-392243 |M | 14.4 |< 16.5 | |p |26170. | | 222. | | |00248 06286| +260366 |V0366 CrA |181524.5-382134 |M | 14.4 |< 16.5 | |p |26180. | | 278. | | |00248 06286| +260367 |V0367 CrA |181525.6-384533 |RR | 15.2 | 16.2 | |p | | | 0.500 | | |00248 06286| +260368 |V0368 CrA |181553.1-393209 |M | 13.6 |< 16.5 | |p |26470. | | 211. | |Me |00248 06286| +260369 |V0369 CrA |181603.9-382346 |RRAB | 14.4 | 15.1 | |p |31675.252 | | 0.4785549 |09 | |03513 03513| +260370 |V0370 CrA |181613.1-390352 |M | 14.0 |< 16.5 | |p |31608. | | 208.7 | | |00001 04151| +260371 |V0371 CrA |181635.3-391238 |M | 14.0 |< 16.5 | |p |31333. | | 195.7 | | |00001 04151| +260372 |V0372 CrA |181643.5-393109 |RR: | 15.4 | 16.6 | |p | | | | | |00248 06286| +260373 |V0373 CrA |181648.4-393909 |RRAB | 13.2 | 14.5 | |p |32765.456 | | 0.5414076 |11 | |03513 03513| +260374 |V0374 CrA |181730.1-395339 |RRAB | 14.2 | 15.4 | |p |30927.287 | | 0.5630170 |11 | |03513 03513| +260375 |V0375 CrA |181801.0-401742 |M | 12.6 |< 17.0 | |p |26560. | | 400. | |Me |00248 06286| +260376 |V0376 CrA |181822.6-382750 |SR | 13.5 | 14.6 | |p | | | 150. | | |00248 06286| +260377 |V0377 CrA |181827.7-383405 |SRB | 14.2 | 15.5 | |p | | | | | |00248 06286| +260378 |V0378 CrA |181849.1-390444 |RRAB | 13.8 | 15.4 | |p |30574.333 | | 0.4540524 |11 | |03513 03513| +260379 |V0379 CrA |181925.7-385158 |M: | 15.0 |< 16.5 | |p | | | | | |00248 06286| +260380 |V0380 CrA |181954.9-385047 |RRAB | 13.7 | 15.1 | |p |30965.306 | | 0.4516861 |12 | |03513 03513| +260381 |V0381 CrA |182004.5-383017 |RRAB | 15.4 | 16.6 | |p |26563.480 | | 0.60760 | | |00248 06286| +260382 |V0382 CrA |182021.9-391006 |RRAB | 13.9 | 15.1 | |p |30970.3587 | | 0.6152571 |15 | |03513 03513| +260383 |V0383 CrA |182054.8-382904 |M | 13.8 |< 17.0 | |p |31000. | | 288. | | |03516 03516| +260384 |V0384 CrA |185137.7-380815 |M | 10.3 | 15. | |p |21123. | | 203. | |Me |00256 08613| +260385 |V0385 CrA *|180153.7-423711 |RV | 11.5 | 14.0 | |p |30991. | | 79.7 | | |04151 04151| +260386 |V0386 CrA |181633.3-394933 |SRB | 14.5 | 15.3 | |p | | | | | |00248 06286| +260387 |V0387 CrA |181738.5-420419 |SRA | 13.1 | 15.0 | |p |31221. | | 195. | | |04151 04151| +260388 |V0388 CrA |184413.1-432154 |M: | 12.5 |< 14. | |p | | | | |Me |00085 02383| +260389 |V0389 CrA |184817.2-431850 |M | 12.5 | 15.3 | |p | | | | |Me |00085 02386| +260390 |V0390 CrA |185218. -372121:|M | 11.3 | 15.0 | |p |20713. | | 179. | | |00256 08613| +260391 |V0391 CrA |191227.3-385905 |M | 12.0 |< 15.5 | |p |25358. | | 228. | |Me |03516 02386| +260392 |V0392 CrA |175916.9-433225 |RRAB | 14.4 | 15.0 | |p |31269.4908 | | 0.4139545 |15 | |00240 00240| +260393 |V0393 CrA |175944.0-420503 |RRAB | 13.7 | 14.7 | |p |30544.3739 | | 0.5316205 |14 | |00240 00240| +260394 |V0394 CrA |180026.1-390035 |NA | 7.5 |< 13.5 | |p |32999. |1949 | | |pec(NOVA) | 08953| +260395 |V0395 CrA |180249.5-440044 |RRC | 14.9 | 15.3 | |p |31171.5766 | | 0.3651451 |50 : | |00240 00240| +260396 |V0396 CrA |180354.0-433652 |RRAB | 13.4 | 14.4 | |p |31285.3123 | | 0.6477281 |20 | |00240 00240| +260397 |V0397 CrA |180555.6-421832 |RRC | 14.8 | 15.2 | |p |31203.4558 | | 0.3293815 |30 : | |00240 00240| +260398 |V0398 CrA |180642.6-410353 |RRAB | 14.2 | 15.4 | |p |31233.5803 | | 0.6024356 |16 | |00240 00240| +260399 |V0399 CrA |180656.1-385518 |RRAB | 14.9 | 15.7 | |p |30964.2786 | | 0.6827669 |13 | |00240 00240| +260400 |V0400 CrA |180932.3-414440 |RRAB | 14.0 | 14.6 | |p |30500.4366 | | 0.5720811 |17 | |00240 00240| +260401 |V0401 CrA |181031.6-414145 |RRAB | 13.8 | 14.5 | |p |30994.2658 | | 0.6300753 |16 | |00240 00240| +260402 |V0402 CrA |181259.6-420049 |RRAB: | 14.3 | 14.9 | |p |31001.2353 | | 0.4566853 |30 | |00240 00240| +260403 |V0403 CrA |181639.6-435031 |RRAB | 14.0 | 15.4 | |p |30877.2945 | | 0.6307521 |13 | |00240 00240| +260404 |V0404 CrA |181743.0-440450 |RRAB | 13.1 | 14.0 | |p |30962.2139 | | 0.4882873 |12 | |00240 00240| +260405 |V0405 CrA |181831.1-414815 |EA/SD | 12.1 | 13.5 | |p |31287.3160 | | 1.174856 |18 | |00240 00240| +260406 |V0406 CrA |182129.9-390818 |RRC | 13.5 | 14.1 | |p |31000.401 | | 0.534357 |50 | |00240 00240| +260407 |V0407 CrA |182239.4-415846 |RRAB | 14.8 | 15.3 | |p |31269.3809 | | 0.474460 |11 | |00240 00240| +260408 |V0408 CrA |182241.5-395823 |RRAB | 14.0 | 15.0 | |p |30965.3063 | | 0.4841287 |11 | |00240 00240| +260409 |V0409 CrA |183205.3-403111 |RRAB | 14.2 | 15.0 | |p |31171.6052 | | 0.5868876 |12 | |00240 00240| +260410 |V0410 CrA |183322.4-413503 |RRAB | 14.5 | 15.1 | |p |30549.5290 | | 0.5483071 |11 | |00240 00240| +260411 |V0411 CrA |184303.0-385535 |M | 11.5 |< 16.0 | |p |25764. | | 340. | |M3e |04229 04229| +260412 |V0412 CrA |184515.5-383419 |EA/DM: | 10.7 | 11.3 | |V |34338.32 | | 4.8370 |10 :*| |00080 08613| +260413 |V0413 CrA *|184757.6-374423 |RRAB | 10.23 | 10.90 | |V |41500.369 | | 0.589339 |17 |F0-F8 |05233 06286| +260414 |V0414 CrA |180443.8-414452 |M | 13.4 |< 15.8 | |p |31304. | | 176. | | |02769 02769| +260415 |V0415 CrA |180858.8-391242 |M: | 13.7 |< 15.9 | |p |29800. | | 265. : | | |02769 02769| +260416 |V0416 CrA |181037.7-410231 |M | 12.5 |< 16. | |p |31314. | | 207. | | |02770 08087| +260417 |V0417 CrA |181100.7-422432 |M: | 12.8 | | |p |31254. | | 249. | | |02770 08087| +260418 |V0418 CrA |182045.5-444450 |RRAB | 13.5 | 15.1 | |p |31288.353 | | 0.4265594 |15 | |02770 03776| +260419 |V0419 CrA |182508.5-375159 |M | 12.8 |< 15.2 | |p |31632. | | 252. | | |02769 02769| +260420 |V0420 CrA |182711.5-385602 |M | 13.6 |< 15.8 | |p |31258. | | 250. | | |02769 02769| +260421 |V0421 CrA |183335.4-373726 |M | 12.8 |< 14.8 | |p |30944. | | 251. | | |02769 02769| +260422 |V0422 CrA | | | | | | | | | | | | |=SS CrA +260423 |V0423 CrA |181108.3-445256 |M | 13.2 |< 15.0 | |p |30565. | | 300. : | |Me |04151 04151| +260424 |V0424 CrA |181329.9-414114 |M | 13.3 |< 16. | |p |30945. | | 217. | | |04151 04151| +260425 |V0425 CrA |181457.2-413142 |SRA | 12.8 | 15.0 | |p |31287. | | 167. | | |04151 04151| +260426 |V0426 CrA |181545.7-425329 |M: | 13.3 |< 15.0 | |p |30165. | | 367. | |Me |04151 04151| +260427 |V0427 CrA |181727.5-432129 |M | 12.9 |< 15.5 | |p |31205. | | 216. | | |04151 04151| +260428 |V0428 CrA *|181847.0-405344 |M | 13.5 |< 15.4 | |p |30913. | | 365. | | |04151 04151| +260429 |V0429 CrA |182039.4-414432 |M: | 14.4 |< 15.4 | |p |31337. | | 195. | | |04151 04151| +260430 |V0430 CrA |182112.6-413436 |M | 13.1 |< 15.3 | |p |31205. | | 342. : | | |04151 04151| +260431 |V0431 CrA |182237.9-371755 |SR | 13.7 | 14.8 | |p |31300. | | | | |04151 04151| +260432 |V0432 CrA |182436.0-430929 |RRAB | 14.7 |< 15.4 | |p |30913.305 | | 0.521199 | | |04151 04151| +260433 |V0433 CrA |182439.1-415821 |SRA | 13.2 | 15.0 | |p |30560. | | 170. | | |04151 04151| +260434 |V0434 CrA |182512.8-390010 |M: | 13.8 |< 15.3 | |p |31305. | | 146. | |Me |04151 04151| +260435 |V0435 CrA |182531.0-375214 |RRAB | 14.1 |< 14.7 | |p |31287.465 | | 0.660893 | | |04151 04151| +260436 |V0436 CrA |182619.6-392620 |M: | 13.2 |< 15.0 | |p |30575. | | 218. | | |04151 04151| +260437 |V0437 CrA |182716.8-423706 |M | 12.9 |< 15.0 | |p |31297. | | 167. | | |04151 04151| +260438 |V0438 CrA |182724.1-413652 |EA/SD | 14.3 | 15.5 | |p |31178.620 | | 1.230644 |15 | |04151 04151| +260439 |V0439 CrA |182731.0-403617 |M: | 14.5 |< 15.5 | |p |31230. | | 198. | | |04151 04151| +260440 |V0440 CrA |182856.6-434522 |M | 15. |< 17. | |p | | | | | |04001 04001| +260441 |V0441 CrA |182954.7-410656 |M | 11.2 |< 15.5 | |p |31560. | | 379. | | |03516 03516| +260442 |V0442 CrA |183456.7-430309 |M: | 13.9 |< 14.9 | |p |30940. | | 201. | | |04151 04151| +260443 |V0443 CrA |183512.2-424100 |M: | 13.4 |< 14.5 | |p |30975. | | 165. | |Me |04151 04151| +260444 |V0444 CrA |183655.5-392738 |SRA | 13.7 | 14.8 | |p |25738. | | 127. | | |04229 04229| +260445 |V0445 CrA |183738.2-443032 |EA | 13. | 13.5 | |p | | | | | |06561 06561| +260446 |V0446 CrA |184321.4-382006 |M | 13.4 | 16.0 | |p |25556. | | 175.1 | | |04229 04229| +260447 |V0447 CrA |185235.5-402805 |SRB | 13.8 | 15.0 | |p |25506. | | 95.1 | | |04229 04229| +260448 |V0448 CrA |185349.7-393758 |M | 13.2 |< 16.0 | |p |25764. | | 282. | | |04229 04229| +260449 |V0449 CrA *|185717.7-380830 |CWA | 13.0 | 15.2 | |p |44157.43 | | 16.4943 |44 | |04229 04229| +260450 |V0450 CrA |175913.5-450618 |SRA | 13.9 | 14.9 | |p |31550. | | 250. | | |03513 03513| +260451 |V0451 CrA |175906.9-422228 |RRAB | 14.9 | 15.5 | |p |31285.333 | | 0.434249 | | |03513 03513| +260452 |V0452 CrA |175925.6-444107 |RRAB | 14.0 | 14.8 | |p |31669.327 | | 0.44530187 |08 | |03513 03513| +260453 |V0453 CrA |175932.0-451427 |RR | 14. | 15. | |p | | | | | |03776 03776| +260454 |V0454 CrA *|175909.9-393817 |EA/DM | 10.1 | 10.9 | 10.5 |p |31264.460 | | 2.396874 |08 *|A5 |03513 03513| +260455 |V0455 CrA *|175906.7-380849 |EA/SD | 13.6 | 14.3 | 13.7 |p |31264.481 | | 0.807647 |18 | |03513 03513| +260456 |V0456 CrA |175914.5-400836 |I | 14.2 |< 15.5 | |p | | | | | |03513 03513| +260457 |V0457 CrA *|175944.1-420349 |RR | 13.6 | 14.1 | |p |31327.331 | | 0.2540511 |20 | |03513 03513| +260458 |V0458 CrA |180005.0-451057 |EA/SD: | 13.4 | 14.0 | |p |31238.5064 | | 1.2662796 |10 *| |03516 03516| +260459 |V0459 CrA |180009.7-402134 |RRAB | 14.9 | 15.3 | |p |31678.320 | | 0.5970656 |15 | |03513 03513| +260460 |V0460 CrA |180039.7-445721 |RRAB | 13.8 | 14.8 | |p |31178.518 | | 0.705186 |13 | |03513 03513| +260461 |V0461 CrA |180041.5-412735 |EA/SD: | 14.3 | 15.3 | |p |31672.221 | | 3.645399 |12 *| |03513 03513| +260462 |V0462 CrA |180041.3-411614 |RRAB | 15.0 | 15.8 | |p |31668.260 | | 0.6297656 |10 | |03513 03513| +260463 |V0463 CrA |180047.3-420358 |RRAB | 14.0 | 15.0 | |p |30913.2935 | | 0.6040585 |10 | |03516 03516| +260464 |V0464 CrA |180057.6-411729 |SR | 13.1 | 14.1 | |p | | | 150. : | | |03513 03513| +260465 |V0465 CrA *|180127.6-452512 |EW/KW | 13.7 | 14.2 | 14.2 |p |31203.484 | | 0.3948938 | | |03513 03513| +260466 |V0466 CrA |180137.0-444657 |RR | 15. | 16. | |p | | | | | |03776 03776| +260467 |V0467 CrA *|180133.9-415955 |RRAB | 14.5 | 15.3 | |p |31208.516 | | 0.448016 |20 | |03513 03513| +260468 |V0468 CrA |180146.9-423555 |RRAB | 13.6 | 14.7 | |p |30642.2862 | | 0.5477956 |10 | |03513 03513| +260469 |V0469 CrA |180218.2-413322 |RRAB | 14.3 | 14.8 | |p |31317.436 | | 0.6780236 |12 | |03513 03513| +260470 |V0470 CrA |180238.0-421317 |M | 13.0 |< 15.5 | |p |31338. | | 228. | | |03516 03516| +260471 |V0471 CrA *|180245.7-383647 |EA/DM | 12.9 | 13.5 | 13.3 |p |30877.333 | | 2.486044 |12 *| |03513 03513| +260472 |V0472 CrA |180258.3-404439 |RRAB | 14.7 | 15.7 | |p |31344.371 | | 0.4721885 |14 | |03513 03513| +260473 |V0473 CrA |180328.9-415403 |M | 12.2 | 15.5 | |p |31240. | | 134. | |Me |03516 03516| +260474 |V0474 CrA |180327.0-404421 |RRAB | 14.2 | 15.3 | |p |31178.629 | | 0.745245 |14 | |03513 03513| +260475 |V0475 CrA |180346.9-420846 |RRAB | 14.6 | 15.5 | |p |31288.495 | | 0.5119430 |10 | |03513 03513| +260476 |V0476 CrA |180328.4-371951 |I | 12.5 | 13.5 | |p | | | | | |03513 03513| +260477 |V0477 CrA |180414.5-450840 |M: | 13.9 |< 15.5 | |p |31264. | | 208. | | |03513 03513| +260478 |V0478 CrA *|180421.2-452806 |SR | 13.1 | 14.0 | |p | | | | | |03513 03513| +260479 |V0479 CrA |180408.5-413342 |M | 13.4 |< 15.5 | |p |32445. | | 226. | | |03513 03513| +260480 |V0480 CrA *|180419.1-394522 |EB/KE | 13.5 | 14.0 | 13.9 |p |31594.406 | | 0.5330303 | | |03513 03513| +260481 |V0481 CrA |180430.1-404353 |RRAB | 14.5 | 15.6 | |p |31203.461 | | 0.4855527 |10 | |03513 03513| +260482 |V0482 CrA |180431.8-411703 |RRAB | 14.3 | 15.1 | |p |31204.408 | | 0.541714 |08 | |03513 03513| +260483 |V0483 CrA |180534.8-421647 |RRAB | 14.6 | 15.5 | |p |30962.287 | | 0.485049 |15 | |03513 03513| +260484 |V0484 CrA |180532.4-410744 |M | 13.4 |< 15.5 | |p |31575. | | 191. | | |03513 03513| +260485 |V0485 CrA |180537.8-421633 |M: | 14.5 |< 15.5 | |p |31180. | | 240. | | |03513 03513| +260486 |V0486 CrA |180548.7-421314 |RRAB | 14.5 | 15.6 | |p |30973.287 | | 0.4601694 |13 | |03513 03513| +260487 |V0487 CrA |180637.3-440936 |M: | 13.8 |< 15.5 | |p |31640. | | 238. | | |03513 03513| +260488 |V0488 CrA |180641.7-425246 |RR | 15.1 | 15.7 | |p |31017.252 | | 0.513188 |15 : | |03513 03513| +260489 |V0489 CrA |180642.1-422235 |RRAB | 15.0 | 15.7 | |p |31325.418 | | 0.4987269 |10 | |03513 03513| +260490 |V0490 CrA *|180644.4-393910 |RRC | 14.5 | 14.8 | |p |31178.551 | | 0.359331 |45 | |03513 03513| +260491 |V0491 CrA |180659.6-420249 |I | 13.6 | 14.5 | |p | | | | | |03513 03513| +260492 |V0492 CrA |180704.6-415449 |M | 14.0 |< 16. | |p |31675. | | 212. | | |03513 03513| +260493 |V0493 CrA *|180714.7-413151 |RRAB | 15.0 | 15.8 | |p |31675.310 | | 0.5194291 |12 | |03513 03513| +260494 |V0494 CrA |180723.2-391425 |I | 13.2 | 14.1 | |p | | | | | |03513 03513| +260495 |V0495 CrA |180803.9-405543 |M: | 13.6 |< 15.5 | |p |31592. | | 282. | | |03513 03513| +260496 |V0496 CrA |180823.1-443947 |I | 13.5 | 14.2 | |p | | | | | |03513 03513| +260497 |V0497 CrA |180858.9-443521 |RRAB | 14.3 | 15.3 | |p |31000.287 | | 0.5293979 |11 | |03513 03513| +260498 |V0498 CrA |180905.2-421622 |SRA | 13.0 | 15.5 | |p |29730. | | 362. | | |03516 03516| +260499 |V0499 CrA |180908.2-405758 |RRAB | 14.5 | 15.3 | |p |31178.569 | | 0.4854272 |13 | |03513 03513| +260500 |V0500 CrA |181000.3-444405 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +260501 |V0501 CrA *|180957.8-400745 |EW/KW | 12.8 | 13.4 | 13.4 |p |31171.5587 | | 0.4110812 | | |03513 03513| +260502 |V0502 CrA |181006.9-412340 |RRAB | 13.7 | 14.3 | |p |31178.6005 | | 0.29832626 |18 | |03513 03513| +260503 |V0503 CrA *|181019.9-374304 |EA/SD | 13.9 | 15.0 | |p |30875.4003 | | 0.9090427 |11 | |03513 03513| +260504 |V0504 CrA |181035.7-400311 |I | 14.0 | 15.0 | |p | | | | | |03516 03516| +260505 |V0505 CrA |181107.2-450853 |RR | 16. | 17. | |p | | | | | |03776 03776| +260506 |V0506 CrA |181103.6-385055 |RRAB | 14.8 | 15.4 | |p |31351.265 | | 0.5572837 |14 | |03513 03513| +260507 |V0507 CrA |181129.4-451715 |RR | 15. | 16. | |p | | | | | |03776 03776| +260508 |V0508 CrA |181132.5-382313 |SRA | 13.9 | 15.2 | |p |31610. | | 139. | | |03513 03513| +260509 |V0509 CrA |181156.5-434633 |SRA | 12.4 | 14.0 | |p |31555. | | 158. | | |03513 03513| +260510 |V0510 CrA |181203.4-450238 |RR | 15. | 16. | |p | | | | | |03776 03776| +260511 |V0511 CrA *|181233.1-441414 |EA | 13.6 | 14.2 | |p |31590.442 | | 1.3984752 |07 *| |03513 03513| +260512 |V0512 CrA *|181229.1-422655 |RRAB | 14.6 | 15.4 | |p |31017.265 | | 0.440711 |10 | |03513 03513| +260513 |V0513 CrA *|181329.8-443736 |EW/KE | 12.8 | 13.2 | 13.2 |p |30930.265 | | 0.658039 | | |03513 03513| +260514 |V0514 CrA *|181338.5-433236 |EB/KE | 13.7 | 14.5 | 14.0 |p |30989.308 | | 0.945919 | | |03513 03513| +260515 |V0515 CrA |181349.9-425431 |SR | 13.9 | 14.9 | |p | | | 85. : | | |03513 03513| +260516 |V0516 CrA |181352.9-433420 |EA/SD: | 13.6 | 14.3 | |p |31594.304 | | 4.379678 |09 *| |03513 03513| +260517 |V0517 CrA |181341.8-405406 |RRAB | 14.6 | 15.6 | |p |30994.3356 | | 0.7120926 |13 | |03513 03513| +260518 |V0518 CrA |181354.7-423320 |RRC | 13.0 | 13.3 | |p |31178.600 | | 0.3099883 |50 : | |03513 03513| +260519 |V0519 CrA |181350.1-390103 |RRAB | 15.0 |< 15.7 | |p |31594.398 | | 0.5224506 | | |03513 03513| +260520 |V0520 CrA |181407.6-374845 |M: | 13.7 |< 15.5 | |p |29730. | | | | |03516 03516| +260521 |V0521 CrA |181447.9-442732 |M | 12.4 | 14.9 | |p |31280. | | 129.8 | | |03516 03516| +260522 |V0522 CrA |181446.3-430751 |RRAB | 14.1 | 15.3 | |p |31264.4621 | | 0.4460844 |12 | |03513 03513| +260523 |V0523 CrA |181447.5-431750 |RRAB | 13.9 | 15.3 | |p |31238.5168 | | 0.3854905 |11 | |03513 03513| +260524 |V0524 CrA |181509.5-414045 |RRAB | 14.4 | 15.2 | |p |31371.288 | | 0.5095011 |11 | |03513 03513| +260525 |V0525 CrA |181517.6-415545 |SRA | 14.2 | 15.5 | |p |31595. | | 137.6 | | |03513 03513| +260526 |V0526 CrA |181526.7-413738 |RRAB | 14.3 | 15.3 | |p |31001.276 | | 0.5089750 |09 | |03513 03513| +260527 |V0527 CrA *|181544.7-422808 |RRAB | 13.1 | 14.1 | |p |30932.2723 | | 0.5847543 |16 | |03516 03516| +260528 |V0528 CrA |181537.3-405439 |RRAB | 14.5 | 15.5 | |p |32445.270 | | 0.4898917 |10 | |03513 03513| +260529 |V0529 CrA |181558.2-410526 |I | 11.8 | 14.7 | |p | | | | | |03516 03516| +260530 |V0530 CrA | | | | | | | | | | | | |=V0359 CrA +260531 |V0531 CrA |181617.4-423219 |RRAB | 14.3 | 15.3 | |p |31204.477 | | 0.659210 |11 | |03513 03513| +260532 |V0532 CrA |181621.4-420935 |RRAB | 14.6 | 15.5 | |p |30962.232 | | 0.441861 |18 | |03513 03513| +260533 |V0533 CrA |181606.0-382259 |RRAB | 14.6 | 15.5 | |p |31672.305 | | 0.6796521 |10 | |03513 03513| +260534 |V0534 CrA |181653.9-422010 |RRAB | 14.7 | 15.4 | |p |30998.280 | | 0.4763739 |18 | |03513 03513| +260535 |V0535 CrA *|181644.3-390150 |RRAB | 14.7 | 15.6 | |p |31668.301 | | 0.6516156 |18 | |03513 03513| +260536 |V0536 CrA |181657.6-381809 |RRAB | 14.5 | 15.8 | |p |31668.288 | | 0.6565000 |14 | |03513 03513| +260537 |V0537 CrA |181701.0-390639 |I | 11.6 | 12.6 | |p | | | | | |03513 03513| +260538 |V0538 CrA |181736.7-435219 |RRAB | 12.8 | 13.7 | |p |30998.3044 | | 0.5640743 |15 | |03513 03513| +260539 |V0539 CrA |181732.1-415152 |RRAB | 13.4 | 15.1 | |p |31017.2636 | | 0.5468374 |11 | |03513 03513| +260540 |V0540 CrA |181735.7-412013 |RRAB | 14.3 | 15.5 | |p |31178.557 | | 0.5198316 |18 | |03513 03513| +260541 |V0541 CrA *|181801.4-372812 |RRC | 13.7 | 14.2 | |p |31171.568 | | 0.333482 |38 | |03513 03513| +260542 |V0542 CrA |181807.1-391334 |RRC | 14.9 | 15.4 | |p |31678.305 | | 0.3646246 |30 | |03513 03513| +260543 |V0543 CrA |181826.3-413923 |M | 11.0 |< 15.5 | |p |29800. | | 328. | |Me |03516 03516| +260544 |V0544 CrA |181853.9-445130 |M | 13.0 |< 15.5 | |p |31320. | | 200. | |Me |03513 03513| +260545 |V0545 CrA *|181841.9-385534 |RRAB | 14.7 | 15.2 | |p |31671.290 | | 0.6138613 |10 | |03513 03513| +260546 |V0546 CrA |181903.5-415710 |LB | 12.9 | 13.6 | |p | | | | |C |03516 03516| +260547 |V0547 CrA |181938.2-393628 |RRAB | 14.3 | 15.3 | |p |31178.572 | | 0.5935574 |12 | |03513 03513| +260548 |V0548 CrA |181949.3-405520 |RRAB | 14.2 | 14.9 | |p |30964.3222 | | 0.6057870 |11 | |03513 03513| +260549 |V0549 CrA |181943.0-381928 |RRAB | 15.0 | 15.6 | |p |31558.507 | | 0.5564248 |12 | |03513 03513| +260550 |V0550 CrA |182008.1-435927 |M | 13.0 |< 15.5 | |p |31280. | | 218. | | |03516 03516| +260551 |V0551 CrA |182010.0-425315 |RRAB | 14.8 | 15.9 | |p |30993.302 | | 0.4427868 | | |03513 03513| +260552 |V0552 CrA |181958.3-392010 |RRAB | 14.9 | 15.6 | |p |32765.479 | | 0.6296346 |11 | |03513 03513| +260553 |V0553 CrA *|181953.9-373238 |RRC | 13.0 | 13.6 | |p |30998.235 | | 0.3470706 |40 : | |03516 03516| +260554 |V0554 CrA |182018.2-433250 |RRAB | 14.8 | 15.5 | |p |31675.263 | | 0.6211548 |11 | |03513 03513| +260555 |V0555 CrA |182016.6-415040 |RRAB | 15.0 | 15.5 | |p |30965.259 | | 0.554492 |11 | |03513 03513| +260556 |V0556 CrA |182029.2-425014 |M | 12.8 |< 15.5 | |p |31560. | | 189. | | |03513 03513| +260557 |V0557 CrA |182016.0-385115 |RRAB | 14.2 | 15.4 | |p |31325.4409 | | 0.4914820 |12 | |03513 03513| +260558 |V0558 CrA |182026.1-411230 |M: | 13.6 |< 15.5 | |p |31317. | | 163. | | |03513 03513| +260559 |V0559 CrA |182046.1-405204 |RRAB | 14.6 | 15.5 | |p |31342.319 | | 0.5380969 |11 | |03513 03513| +260560 |V0560 CrA |182037.9-371401 |SRA | 12.5 | 13.4 | |p |31320. | | 257. | | |03516 03516| +260561 |V0561 CrA |182055.5-383211 |RRAB | 14.0 | 15.5 | |p |31669.308 | | 0.4446294 |11 | |03513 03513| +260562 |V0562 CrA |182131.1-442043 |RRAB | 14.1 | 15.2 | |p |30927.3217 | | 0.4465585 |10 | |03513 03513| +260563 |V0563 CrA |182125.3-381732 |RRAB | 14.3 | 15.5 | |p |31678.321 | | 0.6132210 |11 | |03513 03513| +260564 |V0564 CrA |182205.7-395304 |RRAB | 14.7 | 15.6 | |p |31342.278 | | 0.5069520 |11 | |03513 03513| +260565 |V0565 CrA |182246.2-444622 |RR | 14. | 15. | |p | | | | | |03776 03776| +260566 |V0566 CrA *|182249.4-451329 |EA/SD | 12.6 | 13.6 | 12.7 |p |30930.421 | | 2.088947 |13 | |03513 03513| +260567 |V0567 CrA |182328.9-395330 |RRAB | 13.7 | 14.7 | |p |30989.2842 | | 0.5059397 |11 | |03513 03513| +260568 |V0568 CrA *|182327.4-380031 |L | 14.3 | 15.0 | |p | | | | | |03516 03516| +260569 |V0569 CrA *|182333.1-382516 |EA/SD | 12.9 | 14.5 | 13.1 |p |31208.3844 | | 0.7532544 |18 *| |03513 03513| +260570 |V0570 CrA |182340.7-404513 |RRAB | 14.5 | 15.3 | |p |31371.278 | | 0.6598780 |12 | |03513 03513| +260571 |V0571 CrA *|182331.7-370726 |EW/KW | 14.3 | 14.8 | 14.7 |p |32765.4424 | | 0.39217582 | | |03513 03513| +260572 |V0572 CrA *|182350.0-411957 |EA/DM | 13.8 | 14.4 | 14.0 |p |31289.46 | | 4.39933 |10 *| |03513 03513| +260573 |V0573 CrA |182334.0-370745 |M | 13.8 | 20.5 : | |p |35960. | | 231.5 | | |05869 03513| +260574 |V0574 CrA |182354.8-391209 |RRAB | 14.2 | 15.5 | |p |31233.591 | | 0.461590 |11 | |03513 03513| +260575 |V0575 CrA |182411.2-424751 |RR | 13.7 | 14.1 | |p |31288.255 | | 0.5601738 |10 | |03516 03516| +260576 |V0576 CrA |182432.5-452338 |SR | 13.5 | 14.3 | |p | | | 75. : | | |03513 03513| +260577 |V0577 CrA *|182427.0-435658 |EW/KW | 12.9 | 13.2 | 13.2 |p |30932.275 | | 0.4167260 | | |03513 03513| +260578 |V0578 CrA *|182406.8-370803 |SR | 12.6 | 14.2 | |p | | | 60. : | | |03513 03513| +260579 |V0579 CrA |182411.3-385643 |M | 13.4 |< 15.5 | |p |31294. | | 222. | | |03513 03513| +260580 |V0580 CrA *|182428.9-420742 |EA/SD | 14.2 | 15.3 | 14.4 |p |30962.206 | | 6.85005 |10 *| |03513 03513| +260581 |V0581 CrA |182443.5-452444 |M | 10.9 |< 15.5 | |p |31325. | | 1100. : | | |03513 03513| +260582 |V0582 CrA |182435.6-425729 |I | 13.6 | 14.5 | |p | | | | | |03513 03513| +260583 |V0583 CrA |182419.4-374853 |EA/SD | 14.1 | 15.6 | |p |33411.823 | | 4.937094 |11 *| |03513 03513| +260584 |V0584 CrA |182456.1-400542 |M: | 14.4 |< 15.5 | |p |31208. | | 231. | | |03513 03513| +260585 |V0585 CrA |182458.5-374219 |RRAB | 14.6 | 15.5 | |p |32765.517 | | 0.5469411 |18 | |03513 03513| +260586 |V0586 CrA |182512.8-405343 |RRAB | 13.3 | 14.1 | |p |31178.6223 | | 0.5665063 |14 | |03513 03513| +260587 |V0587 CrA |182526.0-390341 |M: | 14.6 |< 15.5 | |p |31325. | | 786. /N| | |03513 03513| +260588 |V0588 CrA |182536.2-405841 |EA/SD: | 13.4 | 14.0 | |p |31288.483 | | 1.3219462 |09 *| |03513 03513| +260589 |V0589 CrA |182540.0-421423 |M | 12.9 |< 15.5 | |p |31170. | | 270. | | |03513 03513| +260590 |V0590 CrA |182549.6-411034 |RRC | 14.5 | 15.0 | |p |30473.512 | | 0.306726 |45 | |03513 03513| +260591 |V0591 CrA |182542.8-380428 |M: | 13.9 |< 15.5 | |p |31570. | | 199. | | |03513 03513| +260592 |V0592 CrA |182620.8-445950 |RRAB | 11.5 | 13.1 | |p |31001.3205 | | 0.5937039 |16 | |03516 03516| +260593 |V0593 CrA |182557.3-370627 |RRAB | 12.6 | 14.3 | |p |30970.3362 | | 0.39106422 |10 | |03516 03516| +260594 |V0594 CrA |182619.3-404041 |M | 13.0 | 15.5 | |p |31225. | | 239. | | |03513 03513| +260595 |V0595 CrA *|182649.2-442343 |RRAB | 14.8 | 15.6 | |p |31671.362 | | 0.4536868 |12 | |03513 03513| +260596 |V0596 CrA |182628.9-375958 |RRAB | 14.0 | 14.9 | |p |30932.274 | | 0.572160 |12 | |03513 03513| +260597 |V0597 CrA |182637.4-381108 |RRAB | 14.8 | 15.5 | |p |31371.271 | | 0.6379719 |18 | |03513 03513| +260598 |V0598 CrA |182644.8-400951 |RRAB | 14.9 | 15.7 | |p |31670.320 | | 0.4453427 |15 | |03513 03513| +260599 |V0599 CrA |182713.2-424326 |RRAB | 13.3 | 14.4 | |p |30930.3281 | | 0.5426838 |15 | |03513 03513| +260600 |V0600 CrA |182719.5-442502 |SRA | 13.8 | 15.2 | |p |31590. | | 151. | | |03513 03513| +260601 |V0601 CrA *|182653.6-375019 |RRC | 13.6 | 14.1 | |p |31671.331 | | 0.3285214 |40 | |03513 03513| +260602 |V0602 CrA |182711.5-414128 |RRAB | 14.8 | 15.7 | |p |31678.271 | | 0.5658886 |08 | |03513 03513| +260603 |V0603 CrA *|182729.8-400434 |EA/SD | 12.6 | 13.8 | |p |30993.1325 | | 2.883052 |14 *| |03516 03516| +260604 |V0604 CrA *|182750.0-421019 |EA/SD: | 14.8 | 15.4 | |p |31294.175 | | 2.0352675 |12 | |03513 03513| +260605 |V0605 CrA |182744.3-391408 |EA/SD | 13.2 | 14.6 | |p |31001.1987 | | 1.4801751 |09 *| |03513 03513| +260606 |V0606 CrA |182753.4-402208 |RRAB | 14.6 | 15.6 | |p |31612.348 | | 0.5730097 |11 | |03513 03513| +260607 |V0607 CrA *|182831.3-445053 |EB/KE | 13.3 | 14.3 | 14.3 |p |31671.295 | | 0.72349782 | | |03513 03513| +260608 |V0608 CrA |182822.7-421424 |RRAB | 14.1 | 14.7 | |p |30932.289 | | 0.510267 |11 | |03513 03513| +260609 |V0609 CrA |182810.8-385358 |RRAB | 14.7 | 15.3 | |p |32765.419 | | 0.6032923 |15 | |03513 03513| +260610 |V0610 CrA |182837.8-391212 |RRAB | 14.1 | 15.0 | |p |31265.5823 | | 0.7675259 |16 | |03513 03513| +260611 |V0611 CrA |182846.5-373309 |I | 13.6 | 14.8 | |p | | | | | |03513 03513| +260612 |V0612 CrA *|182909.1-380509 |EA/SD: | 13.8 | 14.5 | |p |31668.278 | | 1.3762059 |11 | |03513 03513| +260613 |V0613 CrA |182916.1-373129 |RRAB | 14.5 | 15.4 | |p |31208.428 | | 0.5277858 |11 | |03513 03513| +260614 |V0614 CrA |182933.9-395148 |RRAB | 13.1 | 14.2 | |p |30993.252 | | 0.608194 |13 | |03516 03516| +260615 |V0615 CrA *|182934.0-370107 |RRAB | 13.47 | 14.58 | |V |40815.628 | | 0.5211638 |12 | |00001 03513| +260616 |V0616 CrA |183003.6-430329 |M | 13.0 |< 15.5 | |p |31600. | | 298. | | |03513 03513| +260617 |V0617 CrA |182954.9-381121 |RRAB | 14.4 | 15.2 | |p |30932.259 | | 0.531111 |12 | |03513 03513| +260618 |V0618 CrA |183009.3-400732 |RRAB | 13.3 | 14.5 | |p |30993.2999 | | 0.5307857 |15 | |03513 03513| +260619 |V0619 CrA |183025.9-421351 |SRA | 12.2 | 14.1 | |p |31356. | | 162. | | |03516 03516| +260620 |V0620 CrA |183112.6-440728 |EA/SD | 12.4 | 13.6 | |p |31327.2580 | | 2.615237 |11 *| |03513 03513| +260621 |V0621 CrA |183124.3-443835 |RRAB | 14.3 | 15.3 | |p |31000.265 | | 0.450966 |08 | |03513 03513| +260622 |V0622 CrA *|183106.3-382107 |SR | 12.5 | 13.3 | |p | | | | | |03513 03513| +260623 |V0623 CrA |183106.2-374156 |RRAB | 14.3 | 15.2 | |p |31178.604 | | 0.4819768 |10 : | |03513 03513| +260624 |V0624 CrA |183158.6-451130 |SR | 13.1 | 14.4 | |p | | | | | |03513 03513| +260625 |V0625 CrA |183152.2-412530 |SRA | 13.5 | 14.2 | |p |31280. | | 109.1 | | |03516 03516| +260626 |V0626 CrA |183159.4-393753 |RRAB | 14.5 | 15.5 | |p |31327.284 | | 0.5150246 |11 | |03513 03513| +260627 |V0627 CrA |183236.6-443132 |M | 12.8 |< 15.5 | |p |31590. | | 343. | |Me |03513 03513| +260628 |V0628 CrA |183240.9-412532 |SR | 13.1 | 14.0 | |p | | | 95. : | | |03513 03513| +260629 |V0629 CrA |183315.3-410726 |RRAB | 12.6 | 13.9 | |p |30877.3431 | | 0.44479329 |10 | |03516 03516| +260630 |V0630 CrA |183334.3-423917 |RRAB | 14.0 | 15.1 | |p |31269.3460 | | 0.6596409 |11 | |03513 03513| +260631 |V0631 CrA |183330.7-390922 |RRAB | 14.4 | 15.3 | |p |30962.188 | | 0.525259 | | |03513 03513| +260632 |V0632 CrA |183342.8-411408 |M | 13.2 |< 15.5 | |p |31560. | | 211. | | |03513 03513| +260633 |V0633 CrA *|183400.1-380027 |RRAB | 14.8 | 15.4 | |p |31672.299 | | 0.5708383 |12 | |03513 03513| +260634 |V0634 CrA *|183424.4-422717 |EW/KW | 13.4 | 13.9 | 13.9 |p |30930.308 | | 0.3079578 | | |03513 03513| +260635 |V0635 CrA |183503.8-425649 |I | 12.5 | 13.1 | |p | | | | | |03513 03513| +260636 |V0636 CrA |183542.9-444708 |M | 13.3 |< 15.5 | |p |31350. | | 183. | | |03513 03513| +260637 |V0637 CrA |183605.1-433222 |RRAB | 13.1 | 14.3 | |p |31000.3027 | | 0.5993137 |12 | |03513 03513| +260638 |V0638 CrA |183716.6-441144 |M | 12.2 |< 15.5 | |p |31672. | | 317. | | |03513 03513| +260639 |V0639 CrA |183704.5-402512 |M | 13.5 |< 15.5 | |p |28064. | | 252. : | | |03516 03516| +260640 |V0640 CrA |183813.8-390129 |M | 13.5 |< 15.5 | |p |25524. | | 161. | |Me |03516 03516| +260641 |V0641 CrA |183900.8-390945 |I | 13.8 | 14.6 | |p | | | | | |03516 03516| +260642 |V0642 CrA |183957.3-371008 |RRAB | 15.4 | 16.1 | |p |28038.322 | | 0.52931492 |20 | |03516 03516| +260643 |V0643 CrA |184153.4-372830 |RRAB | 14.9 | 15.8 | |p |28016.247 | | 0.6542708 |12 | |03516 03516| +260644 |V0644 CrA |184544.1-375231 |SRA | 13.8 | 15.5 | |p |25500. | | 111. | | |03516 03516| +260645 |V0645 CrA |184616.9-380252 |RRAB | 14.8 | 15.8 | |p |28433.359 | | 0.5768337 |20 | |03516 03516| +260646 |V0646 CrA |184753.7-403942 |M | 12.6 |< 15.5 | |p |25712. | | 326. | |Me |03516 03516| +260647 |V0647 CrA |184910.3-402527 |M | 12.8 |< 15.5 | |p |25460. | | 179. | | |03516 03516| +260648 |V0648 CrA *|185745.0-411351 |EA/SD | 12.1 | 14.0 | |p |25738.5375 | | 4.844838 |08 *| |03516 03516| +260649 |V0649 CrA |190332.7-404043 |SRA | 13.4 | 15.0 | |p |25514. | | 188. | | |03516 03516| +260650 |V0650 CrA |190401.9-411702 |M | 12.8 | 15.5 | |p |24280. | | 332. | | |03516 03516| +260651 |V0651 CrA |190459.6-411435 |I | 13.5 | 15.0 | |p | | | | | |03516 03516| +260652 |V0652 CrA |191338.9-403755 |SR | 14.3 | 14.8 | |p |25400. | | 192. | | |03516 03516| +260653 |V0653 CrA |191436.0-373616 |M: | 14.2 |< 15.5 | |p |25430. | | 211. | | |03516 03516| +260654 |V0654 CrA |175952.1-451818 |SR: | 13.5 | 14.5 | |p | | | | | |03776 03776| +260655 |V0655 CrA |182444.8-365942 |N | 8. : | 17. : | |p | |1967 | | |pec(NOVA) |05537 05537| +260656 |V0656 CrA |182243.3-370638 |RRAB | 15.2 | 16.5 | |p |35661.876 | | 0.70768 |22 | |05869 USNO | +260657 |V0657 CrA |182245.7-370424 |SRB | 15.7 | 17.4 | |p | | | | | |05869 2MASS| +260658 |V0658 CrA |182813.9-365926 |RRAB | 15.0 | 16.6 | |p |35660.775 | | 0.45213 |15 | |05869 UCAC2| +260659 |V0659 CrA *|182907.3-370148 |SRA | 14.7 | 16.4 | |p |36720. | | 187.2 | | |05869 USNO | +260660 |V0660 CrA |183230.2-370634 |RRAB | 14.9 | 16.4 | |p |35640.882 | | 0.47751 |18 | |05869 USNO | +260661 |V0661 CrA |183415.1-370718 |RRAB | 15.9 | 17.1 | |p |35662.838 | | 0.54843 |23 | |05869 USNO | +260662 |V0662 CrA |183530.4-365644 |UG | 15.7 |< 19.6 | |p | | | | | |05869 GSC22| +260663 |V0663 CrA |183602.5-370505 |RRAB | 14.9 | 16.0 | |p |35658.892 | | 0.52958 |12 | |05869 USNO | +260664 |V0664 CrA |183626.0-370304 |SRA | 14.6 | 16.5 | |p |36673. | | 173. : | | |05869 USNO | +260665 |V0665 CrA | | | | | | | | | | | | |=YY CrA +260666 |V0666 CrA |182222.8-365955 |SR | 14.9 | 16.3 | |p |36810. | | | | |05869 2MASS| +260667 |V0667 CrA *|190116.3-365628 |INSB | 16. | 18. | |p | | | | | |05870 05870| +260668 |V0668 CrA |183224.8-421914 |DSCTC | 8.70 | 8.76 | |V | | | 0.088 | |A4/5V |06338 CoD | +260669 |V0669 CrA |182855.5-403546 |M | 13.4 | 16.5 | |p | | | | |Me |04001 04001| +260670 |V0670 CrA |183513.4-452206 |M | 14.3 | 17. | |p | | | | |Me |04725 2MASS| +260671 |V0671 CrA |184434.3-441630 |SRA: | 13.3 | 15.5 | |p | | | | |Me |04001 04001| +260672 |V0672 CrA |175921.3-404027 |RR | 14.8 | 15.6 | |p | | | | | |00248 06286| +260673 |V0673 CrA |180912.1-373843 |RR | 15.6 |< 16.5 | |p |24056.500 | | | | |00251 06286| +260674 |V0674 CrA |181248.4-400123 |LB | 14.9 | 15.8 | |p | | | | | |00248 06286| +260675 |V0675 CrA |181419.2-400132 |RRC | 14.4 | 14.8 | |p |31017.254 | | 0.380763 |42 | |03513 03513| +260676 |V0676 CrA *|181442.1-450232 |I: | 16.0 | 17.5 | |p | | | | | |03776 03776| +260677 |V0677 CrA |181444.4-373822 |RR | 15.2 | 16.2 | |p |24656.850 | | | | |00251 06286| +260678 |V0678 CrA |182751.7-445706 |RR: | 15. | 16. | |p | | | | | |04001 04001| +260679 |V0679 CrA |183300.3-424516 |SR | 15. | 17. | |p | | | | | |04001 04001| +260680 |V0680 CrA |183636.9-415127 |RR: | 16. | 17. | |p | | | | | |04001 04001| +260681 |V0681 CrA |183739.6-425720 |EA/DM | 7.6 | 8.1 | |p |28748.350 | | 2.163925 | |B9.5V |03973 CoD | +260682 |V0682 CrA |183859.6-441034 |SR | 15.5 | 17. | |p | | | | | |04001 04001| +260683 |V0683 CrA |184530.2-445811 |SR | 13. | 15. | |p | | | | | |04001 04001| +260684 |V0684 CrA |184553.8-445810 |RR: | 16. | 17. | |p | | | | | |04001 04001| +260685 |V0685 CrA |184948.0-444117 |M: | 11.5 | 16.0 | |p | | | | |Me |04725 06031| +260686 |V0686 CrA *|185640.5-372036 |ACV | 5.25 | 5.41 | 5.40 |V |42254.500 | | 7.34 | |B8IV(Si) |08970 CoD | +260687 |V0687 CrA |190012.0-441300 |SR | 14. | 16. | |p | | | | | |04001 04001| +260688 |V0688 CrA |184605.0-431740 |M: | 14.0 |< 15.5 | |p | | | | |Me |04725 GSC | +260689 |V0689 CrA |184940.7-440401 | | 13.0 | 16.0 | |p | | | | | |04725 GSC22| +260690 |V0690 CrA |190032.3-444909 |M: | 12. |< 13. | |p | | | | |Me |07428 GSC | +260691 |V0691 CrA *|182546.9-370619 |E+X | 14.8 | 16.6 | |B |44105.667 | | 0.232111 | |e |08971 02946| +260692 |V0692 CrA *|181312.7-412010 |SXARI | 5.46 |( 0.05 )| |V | | | 1.67 | |B3p(Si) |08415 CoD | +260693 |V0693 CrA |184157.9-373114 |NA | 6.5 |< 19. | |V |44697. |1981 | | |pec(NOVA) |08972 08973| +260694 |V0694 CrA |181225.8-374509 |ACVO | 7.95 |( 0.005 B )| |V | | | | | |69097 CoD | +260695 |V0695 CrA |175903.3-384740 |M | 9.35 | 11.59 | |J | | | | | |71144 2MASS| +260696 |V0696 CrA |180005.2-380142 |M | 10.15 | 12.57 | |J | | | | | |71144 2MASS| +260697 |V0697 CrA |180027.2-374834 |M | 7.45 | 8.89 | |H | | | | | |71144 GSC22| +260698 |V0698 CrA |180224.8-382713 |M | 8.24 | 10.37 | |J | | | | | |71144 2MASS| +260699 |V0699 CrA |180256.8-371157 |M | 7.54 | 8.68 | |J | | | | | |71144 GSC22| +260700 |V0700 CrA |180325.0-374620 |M | 8.33 | 9.98 | |J | | | | | |71144 2MASS| +260701 |V0701 CrA |190317.7-381511 |DSCTC | 5.69 | 5.73 | |V | | | | | |71017 CoD | +260702 |V0702 CrA |190202.0-370744 |INT | 10.48 | 10.58 | |V | | | | | |72063 72064| +260703 |V0703 CrA |175846.6-390919 |M | 10.55 | 14.04 | |H | | | | | |73116 2MASS| +260704 |V0704 CrA |182430.1-441157 |DSCTC | 7.90 | 7.93 | |V | | | | | |73117 CoD | +260705 |V0705 CrA |183310.8-405445 |EW | 18.15 | 18.48 | |V | | | | | |73118 73118| +260706 |V0706 CrA |183332.7-405737 |EW | 18.90 | 19.57 | |V | | | | | |73118 73118| +260707 |V0707 CrA |183357.8-405908 |EW | 16.15 | 16.37 | |V | | | | | |73118 73118| +260708 |V0708 CrA |183402.1-410121 |EW | 17.55 | 17.90 | |V | | | | | |73118 73118| +260709 |V0709 CrA |190134.9-370057 |INB | 11.33 | 11.67 | |V | | | | | |73119 73120| +260710 |V0710 CrA |190150.7-365810 |INB | 5.84 | 9.13 | |K | | | | | |73121 73122| +260711 |V0711 CrA |180432.8-421324 |EB | 8.36 | 8.69 | |Hp| | | | | |HIP HIP | +260712 |V0712 CrA |180636.4-433739 |SRC | 7.68 | 8.06 | |Hp| | | | | |HIP HIP | +260713 |V0713 CrA |180853.3-392940 |LB | 7.57 | 7.72 | |Hp| | | | | |HIP HIP | +260714 |V0714 CrA |181229.5-414258 |ACV | 8.10 | 8.15 | |Hp| | | | | |HIP HIP | +260715 |V0715 CrA |182114.4-390118 |ACV: | 6.80 | 6.85 | |Hp| | | | | |HIP HIP | +260716 |V0716 CrA |182457.8-383430 |LB: | 7.72 | 7.84 | |Hp| | | | | |HIP HIP | +260717 |V0717 CrA |183715.7-404813 |SRD | 7.03 | 7.13 | |Hp| | | | | |HIP HIP | +260718 |V0718 CrA |183935.2-431109 |LB: | 5.45 | 5.51 | |Hp| | | | | |HIP HIP | +260719 |V0719 CrA |184253.1-391708 |BE | 6.99 | 7.03 | |Hp| | | | | |HIP HIP | +260720 |V0720 CrA |190709.1-390757 |LB | 8.57 | 9.10 | |Hp| | | | | |HIP HIP | +260721 |V0721 CrA |190945.9-370426 |INT | 13.17 | 13.56 | |V | | | | | |75086 75104| +260722 |V0722 CrA |180613.7-401507 |SR: | 12.3 |< 13.0 | |V | | | | | |76054 USNO | +260723 |V0723 CrA |183821.4-385356 |SR: | 12.1 | 12.8 | |V | | | | | |76054 GSC | +260724 |V0724 CrA |183922.8-382525 |SR: | 10.0 | 11.0 | |V | | | | | |76054 GSC | +260725 |V0725 CrA |184027.2-381930 |SR: | 12.1 | 12.8 | |V | | | | | |76054 GSC | +260726 |V0726 CrA |184430.8-434108 |M | 11.0 |< 14.3 | |V | | | | | |76186 76187| +260727 |V0727 CrA |185803.9-435032 |M: | 12.7 |< 14.7 | |V | | | | | |76191 GSC | +260728 |V0728 CrA |175916.5-423507 |UGSU | 14.2 | 18. | |p | | | | | |78224 USNO | +260729 |V0729 CrA |183213.9-443702 |SRA | 11.4 | 13.6 | |V |52900 | | 336. | |Me |78090 2MASS| +260730 |V0730 CrA *|184921.2-381105 |EW: | 9.78 | 10.01 | 9.99 |V |52470.531 | | 0.84116 | | |78130 DM | +260731 |V0731 CrA *|183051.8-371649 |EB | 10.9 | 11.3 : | 11.05 : |V |52796.754 | | 0.537745 | | |79011 DM | +260732 |V0732 CrA |184251.2-431121 |EA | 10.68 | 11.51 | 10.80 |V |52712.879 | | 1.00545 |16 | |79018 DM | +260733 |V0733 CrA |184737.7-410344 |EA | 12.40 | 13.36 | 12.6 |V |52082.640 | | 2.65996 |11 | |79004 USNO | +260734 |V0734 CrA |185108.7-431106 |EA | 11.08 | 12.0 | 11.18 |V |52943.530 | | 0.978382 |16 | |79003 DM | +260735 |V0735 CrA |191012.9-443117 |M | 10.6 | 14.6 | |V |53492. | | 373. | | |79064 GSC | +260736 |V0736 CrA |180110.4-435504 |SRB | 10.36 | 10.86 | |V | | | 61.2 | | |80001 GSC | NL80_3 +260737 |V0737 CrA *|180233.0-400516 |BCEP | 9.18 | 9.30 | |Hp| | | 0.152934 | |B0III |80019 HIP | NL80_3 +260738 |V0738 CrA *|180701.4-440045 |RRC | 16.9 | 17.7 : | |B |43342.705 | | 0.3044 |40 : | |80495 80495| NL80_3 +260739 |V0739 CrA *|180719.3-432747 |RRAB | 15.0 | 16.8 | |B |43348.785 | | 0.447 |20 : | |80495 80495| NL80_3 +260740 |V0740 CrA *|180746.0-440225 |RRAB | 14.4 | 15.9 | |B |43341.651 | | 0.629 |10 : | |80495 80495| NL80_3 +260741 |V0741 CrA *|180756.3-435248 |RRAB | 16.0 | 17.0 | |B |43343.835 | | 0.650 |20 : | |80495 80495| NL80_3 +260742 |V0742 CrA *|180810.7-434305 |RRAB | 15.5 | 16.7 | |B |43330.560 | | 0.517 | | |80495 80495| NL80_3 +260743 |V0743 CrA *|180834.8-435443 |RRAB | 14.8 | 15.8 | |B |43343.835 | | 0.741 |30 : | |80495 80495| NL80_3 +260744 |V0744 CrA |180840.0-393023 |RRAB | 13.2 | 13.7 | |V |53547.753 | | 0.64437 |29 | |80135 GSC | NL80_3 +260745 |V0745 CrA *|180908.5-433021 |RRAB | 15.2 | 16.7 | |B |43348.785 | | 0.473 |20 : | |80495 80495| NL80_3 +260746 |V0746 CrA |181057.9-400150 |RRC | 13.6 | 14.1 | |V |52543.52 | | 0.362915 |38 | |80135 2MASS| NL80_3 +260747 |V0747 CrA |182158.5-445117 |LB | 10.5 | 11.6 | |V | | | | | |80001 GSC | NL80_3 +260748 |V0748 CrA |182828.6-425125 |M | 12.0 : |< 15.6 | |R |54298. | | 227. | | |80297 80297| NL80_3 +260749 |V0749 CrA |183915.0-444310 |RRAB | 13.5 | 14.35 | |V |53470.861 | | 0.536320 |14 | |80135 GSC | NL80_3 +260750 |V0750 CrA |184427.4-371728 |EW | 9.94 | 10.17 | 10.14 |V |52814.673 | | 0.379130 | | |80011 DM | NL80_3 +260751 |V0751 CrA |184840.1-393319 |SRA | 12.3 | 14.4 | |V |54365. | | 135.7 | | |80297 80297| NL80_3 +260752 |V0752 CrA |190302.4-394255 |M | 13.1 |< 15.0 | |V |55076. | | 455. | | |80001 2MASS| NL80_3 +260753 |V0753 CrA |191743.8-440017 |RS | 9.75 | 10.10 | |V | | | 9.424 | |G8IIIe |80002 DM | NL80_3 +269005 |eps CrA *|185843.4-370627 |EW | 4.74 | 5.00 | 4.95 |V |39707.6619 | | 0.5914264 | |F2V |05341 03508| +270001 |R CrB *|154834.4+280924 |RCB | 5.71 | 14.8 | |V | | | | |C0,0(F8pep) | 00002| +270002 |S CrB *|152124.0+312203 |M | 5.8 | 14.1 | |V |44604. | | 360.26 |35 |M6e-M8e |00001 00002| +270003 |T CrB *|155930.2+255513 |NR | 2.0 | 10.8 | |V |31860. |1946 |(29000. ) | |M3III+pec(NOVA) | 00566| +270004 |U CrB *|151811.4+313849 |EA/SD | 7.66 | 8.79 | 7.72 |V |16747.9718 | | 3.45220133 |14 *|B6V+F8III-IV |08608 00010| +270005 |V CrB |154931.3+393418 |M | 6.9 | 12.6 | |V |43763. | | 357.63 |41 |C6,2e(N2e) |00001 00002| +270006 |W CrB |161524.6+374744 |M | 7.8 | 14.3 | |V |44192. | | 238.40 |45 |M2e-M5e |00001 00002| +270007 |X CrB |154853.5+361453 |M | 8.5 | 14.2 | |V |43719. | | 241.17 |46 |M5e-M7e |00001 00002| +270008 |Y CrB |154643.7+381921 |SRB | 10.9 | 12.8 | |p | | | 300. | |M8 | 00567| +270009 |Z CrB |155608.4+291418 |M | 8.8 | 15.5 | |V |42514. | | 250.68 |42 |M4e-M5e |00001 00002| +270010 |RR CrB *|154126.2+383327 |SRB | 8.4 | 10.1 | |p | | | 60.8 |50 |M5 |01100 00002| +270011 |RS CrB *|155830.8+360120 |SRA | 8.7 | 11.6 | |p |34825. | | 332.2 |47 |M7 |02430 08953| +270012 |RT CrB *|153803.0+292914 |EA/AR:/RS | 10.20 | 10.82 | 10.52 |V |28273.243 | | 5.1171590 |08 *|G0 |08592 08953| +270013 |RU CrB |153536.6+254510 |SRA | 10.6 | 11.7 | |V |25812. | | 436. |52 |M5 |00373 BD | +270014 |RV CrB *|161925.9+294248 |RRC | 11.14 | 11.70 | |V |42926.334 | | 0.331565 |36 |A9 |08697 01102| +270015 |RW CrB *|153915.2+293720 |EA/SD: | 10.22 | 10.78 | 10.29 |V |40751.7302 | | 0.7264114 |20 |F2V |06497 08953| +270016 |RX CrB |151749.4+293953 |CST: | 10.2 | 11.8 | |p | | | | |A-F | 08953| +270017 |RY CrB |162305.1+305101 |SRB | 9.2 | 10.4 | |V |31344. | | 90. |52 |M10III |03246 08953| +270018 |RZ CrB |160944.8+315638 | | 14.0 | 15.5 | |p | | | | |F0 |01104 GSC | +270019 |SS CrB |154127.1+363741 |LB | 10. | 11. | |p | | | | |M5 |00922 08953| +270020 |ST CrB |155016.0+381949 |LB | 10.5 | 11.5 | |p | | | | |M5 |00922 00922| +270021 |SU CrB |162336.3+362522 |RRAB | 13.4 | 14.8 | |p |27666.394 | | 0.5730086 |10 | |03271 02323| +270022 |SV CrB |162406.6+363552 |LB | 13.0 | 14.0 | |p | | | | |M3 |00152 02282| +270023 |SW CrB |154045.3+384307 |SRB | 7.8 | 8.5 | |V | | | 100. : | |M0 |08179 08953| +270024 |SX CrB |161523.8+331948 |LB | 9.8 | 10.3 | |p | | | | |M5 |00169 02379| +270025 |SY CrB |153655.2+323454 |LB | 10.4 | 11.0 | |p | | | | |M6 |04022 08953| +270026 |SZ CrB |154725.9+293943 |RRAB | 12.5 | 14.0 | |p |36288.5371 | | 0.448619 |10 | |04186 04185| +270027 |TT CrB |154831.7+281655 |SRB | 10.9 | 12.1 | |V | | | 60. : | |M2 |07019 04187| +270028 |TU CrB |160944.3+393432 |EA/SD: | 12.8 | 13.6 | |p |36322.550 | | 1.6136929 | | |04191 GSC | +270029 |TV CrB |152221.4+265238 |RRAB | 10.6 | 12.2 | |p |31618.537 | | 0.5846145 |15 |A8 |05436 03160| +270030 |TW CrB *|160650.7+271635 |EB/KE | 10.5 | 11.3 | 11.0 |p |37898.3681 | | 0.58887327 | | |07063 04239| +270031 |TX CrB |154633.5+314047 |SR: | 10.8 | 11.6 | |p | | | | |M3 |00819 BD | +270032 |TY CrB |160123.1+364834 |ZZA | 14.53 |( 0.15 )| |B | | | | |DA |08400 09033| +270033 |TZ CrB *|161440.9+335131 |RS+DSCT: | 5.69 |( 0.05 )| |V |23869.561 | | 1.139789 | |F8V |08402 BD | +270034 |UU CrB *|152252.8+313313 |* | 8.59 | 8.64 | |V |44381.753 | | | |F8 |08751 BD | +270035 |UV CrB |152225.3+253727 |ELL | 7.20 |( 0.16 )| |V | | | | | |68316 BD | +270036 |UW CrB |160545.9+255146 |X+E | 18.87 | 20.10 | |R | | | | | |71136 71137| +270037 |UX CrB |161654.3+310721 |EA | 13.12 | 13.60 | |B | | | | | |71138 71138| +270038 |UY CrB |160621.8+280704 |RR: | 12.5 | 13.8 | |p | | | | | |72065 72065| +270039 |UZ CrB |151659.8+275758 |RRAB | 17.47 | 18.22 | |V | | | | | |73003 USNO | +270040 |VV CrB |155058.8+313004 |SRB | 10.9 | 12.6 | |p | | | | | |73123 GSC | +270041 |VW CrB |160003.7+331116 |UG | 14.5 |< 17.5 | |B | | | | | |73124 73124| +270042 |VX CrB |160003.5+345821 |RRAB | 13.6 | 15.0 | |B | | | | | |73124 73124| +270043 |VY CrB |160611.6+332216 |RRAB | 13.7 | 15.1 | |B | | | | | |73124 73124| +270044 |VZ CrB |161628.9+295619 |RRAB | 14.7 | 16.1 | |B | | | | | |73124 73124| +270045 |WW CrB |161659.5+393837 |RRAB | 14.5 | 16.7 | |B | | | | | |73126 73126| +270046 |WX CrB |161914.1+393009 |RRAB | 12.9 | 14.6 | |B | | | | | |73126 73126| +270047 |WY CrB |162129.2+292001 |RRAB | 15.3 | 16.6 | |B | | | | | |73124 73124| +270048 |WZ CrB |162246.3+391122 |RRAB | 15.8 | 17.1 | |B | | | | | |73127 73127| +270049 |XX CrB |162348.0+275647 |EW | 15.12 | 15.35 | |V | | | | | |73003 GSC | +270050 |XY CrB |153626.2+372236 |LB: | 8.18 | 8.30 | |Hp| | | | | |HIP HIP | +270051 |XZ CrB |155034.3+342530 |LB: | 9.47 | 9.66 | |Hp| | | | | |HIP HIP | +270052 |YY CrB |155032.4+375008 |EW | 8.64 | 9.13 | |Hp| | | | | |HIP HIP | +270053 |YZ CrB |155338.9+254715 |LB: | 9.18 | 9.30 | |Hp| | | | | |HIP HIP | +270054 |ZZ CrB |155615.4+311320 |LB | 7.89 | 8.05 | |Hp| | | | | |HIP HIP | +270055 |AA CrB |155813.3+281622 |LB: | 9.41 | 9.53 | |Hp| | | | | |HIP HIP | +270056 |AB CrB |160457.4+273820 |LB: | 9.15 | 9.26 | |Hp| | | | | |HIP HIP | +270057 |AC CrB |160540.4+305501 |LB: | 8.23 | 8.36 | |Hp| | | | | |HIP HIP | +270058 |AD CrB |160708.7+322247 |SRB: | 8.73 | 9.11 | |Hp| | | | | |HIP HIP | +270059 |AE CrB |160812.5+373601 |LB: | 9.97 | 10.16 | |Hp| | | | | |HIP HIP | +270060 |AF CrB |160924.8+305201 |LB: | 9.72 | 9.83 | |Hp| | | | | |HIP HIP | +270061 |AG CrB |161053.3+290830 |SRB | 9.10 | 9.37 | |Hp| | | | | |HIP HIP | +270062 |AH CrB |162035.0+343740 |SRB | 8.41 | 8.93 | |Hp| | | | | |HIP HIP | +270063 |AI CrB |162104.4+373932 |LB: | 9.18 | 9.28 | |Hp| | | | | |HIP HIP | +270064 |AK CrB |155601.5+370622 |SR: | 11.2 | 12.4 | |V | | | | | |76012 GSC | +270065 |AL CrB *|155830.5+265111 |* | 8.49 | 8.55 | |V | | | | | |77119 DM | +270066 |AM CrB |161050.4+372857 |EA | 12.8 | 13.5 | |V | | | | | |77100 GSC | +270067 |AN CrB |153530.2+361235 |BY | 8.61 |( 0.02 )| |V | | | 9.37 : | |K0V |78018 DM | +270068 |AO CrB |153925.2+273735 |BY | 8.99 |( 0.04 )| |V | | | 6.98 | |G5V |78018 DM | +270069 |AP CrB |155412.4+272151 |XM | 16.5 |( 0.65 )| |R |52079.791 | | 0.105462 | |wd+M4V |78179 78179| +270070 |AQ CrB |155731.8+283801 |RRAB | 11.78 | 12.73 | |V |50724.980 | | 0.665426 |14 | |78264 78181| +270071 |AR CrB *|155918.6+275215 |EW | 10.84 | 11.45 | 11.44 |* |52365.5044 | | 0.397352 | | |78264 GSC | +270072 |AS CrB *|160014.5+351232 |EW | 11.34 | 11.85 | 11.75 |* |52409.4467 | | 0.380658 | | |78264 GSC | +270073 |AT CrB |160629.6+383756 |BY | 8.58 |( 0.02 )| |V | | | 26.02 | |K3V |78018 DM | +270074 |AU CrB |161331.7+323443 |DSCT | 12.3 | 12.5 | |* | | | 0.05172 | | |78186 GSC | +270075 |AV CrB *|161458.6+301636 |EW | 11.87 | 12.48 | 12.41 |* |52360.4749 | | 0.308193 | | |78264 GSC | +270076 |AW CrB *|161520.2+354226 |DSCT: | 11.08 | 11.35 | |* |51295.3703 | | 0.180465 | | |78264 GSC | +270077 |AX CrB |151940.1+315033 |BY | 9.04 |( 0.18 )| |V | | | 9.24 | |K0V |80412 HIP | NL80_2 +270078 |AY CrB *|152235.8+310803 |EW | 13.5 | 14.1 | 14.0 |* |51462.650 | | 0.46046 | | |80413 80413| NL80_2 +270079 |AZ CrB |152502.7+294335 |SRB | 9.75 | 10.2 | |* | | | 80. : | | |80414 80414| NL80_2 +270080 |BB CrB |152554.3+275218 |RRAB | 14.34 | 15.32 | |* |51343.75 | | 0.70131 | | |80026 GSC | NL80_2 +270081 |BC CrB |153039.4+301225 |RS | 11.85 | 12.0 | |* | | | 4.4507 | | |80414 80414| NL80_2 +270082 |BD CrB *|153122.4+355254 |EW | 14.2 | 14.7 | 14.6 |* |51219.2895 | | 0.356866 | | |80394 GSC | NL80_2 +270083 |BE CrB |153352.7+311801 |BY | 12.14 |( 0.09 *)| |V | | | 1.5262 | | |80021 GSC | NL80_2 +270084 |BF CrB |153406.0+334948 |RRAB | 14.08 | 14.97 | |* |51353.84 | | 0.51679 | | |80026 GSC | NL80_2 +270085 |BG CrB *|153440.6+265443 |RS | 9.04 |( 0.06 *)| |V | | | 0.3322 | |G0 |80021 DM | NL80_2 +270086 |BH CrB |153511.3+384359 |BY | 12.09 |( 0.14 *)| |V | | | 2.1942 | | |80021 GSC | NL80_2 +270087 |BI CrB |153633.4+271029 |RS: | 10.00 |( 0.05 *)| |V | | | 1.3393 | |A0 |80021 HIP | NL80_2 +270088 |BK CrB |153650.3+373449 |BY | 11.30 |( 0.06 *)| |V | | | 4.3950 | |M2 |80021 HIP | NL80_2 +270089 |BL CrB |153704.1+374828 |BY | 13.30 |( 0.14 *)| |V | | | 1.2452 | |M2V |80021 GSC | NL80_2 +270090 |BM CrB |154104.7+360253 |XM | 17.3 | 20. : | |V | | | 0.0583 | | |80319 80027| NL80_2 +270091 |BN CrB |154311.0+365330 |RRAB | 12.80 | 13.50 | |* |51338.90 | | 0.51195401 |10 | |80371 GSC | NL80_2 +270092 |BO CrB |154605.4+374946 |UV | 18.05 |( 0.12 )| |R | | | | |M7.5V |80387 2MASS| NL80_2 +270093 |BP CrB |154900.2+351559 |RRAB | 13.48 | 14.48 | |* |51325.73 | | 0.47943 |12 | |80026 GSC | NL80_2 +270094 |BQ CrB |155222.7+340128 |LB | 13.2 | 13.9 | |* | | | | | |80417 80417| NL80_2 +270095 |BR CrB *|155304.3+361845 |EW | 9.88 | 10.11 | 10.11 |* |51325.731 | | 0.76695 | |F0 |80417 80417| NL80_2 +270096 |BS CrB |155431.4+295652 |EW: | 11.46 |( 0.14 *)| |V | | | 0.46548 | | |80001 GSC | NL80_2 +270097 |BT CrB |155657.0+352337 |EA | 18.9 | 20.4 | |V |53193.859 | | 0.0892 | |pec(e) |80405 USNO | NL80_2 +270098 |BU CrB |155842.1+323046 |BY | 11.86 |( 0.07 *)| |V | | | 6.2612 | |K5V |80021 GSC | NL80_2 +270099 |BV CrB |160127.2+300241 |RRAB | 14.2 | 14.7 | |* |51288.7211 | | 0.58691697 |28 | |80371 USNO | NL80_3 +270100 |BW CrB |160150.7+333035 |LB | 9.00 | 9.34 | |* | | | | | |80417 GSC | NL80_3 +270101 |BX CrB |160229.6+373330 |EW | 12.25 | 12.50 | 12.45 |* |51442.68 | | 0.35884 | | |80001 GSC | NL80_3 +270102 |BY CrB |160306.2+261423 |DSCT | 12.34 | 12.48 | |V | | | 0.192446 | | |80371 GSC | NL80_3 +270103 |BZ CrB |160441.7+291626 |RRAB | 14.4 | 16.1 | |B |42902.44 | | 0.605660 |20 | |80618 80618| NL80_3 +270104 |CC CrB |160518.1+372624 |RS | 12.2 | 12.4 | |* | | | 5.915 | | |80370 80370| NL80_3 +270105 |CD CrB |160533.4+291240 |SRB | 9.76 | 9.98 | |* | | | 40. : | | |80417 80417| NL80_3 +270106 |CE CrB |160547.9+393326 |RRAB | 13.67 | 14.40 | |* |51325.72 | | 0.54081 |14 | |80026 GSC | NL80_3 +270107 |CF CrB |160600.1+294954 |EW | 14.14 |( 0.40 )|( 0.30 )|V |51241.3318 | | 0.262445 | | |80394 USNO | NL80_3 +270108 |CG CrB |160714.0+340136 |BY | 10.91 |( 0.12 *)| |V | | | 0.7418 | | |80021 GSC | NL80_3 +270109 |CH CrB |160745.0+362321 |EA+NL | 17.9 | 19.5 | |V |54530.5413 | | 0.14549982 |20 : |pec(e) |80619 USNO | NL80_3 +270110 |CI CrB |160820.8+281230 |EW: | 12.83 |( 0.19 )| |V |51241.4668 | | 0.350076 | | |80394 GSC | NL80_3 +270111 |CK CrB |160958.3+365952 |RRAB | 13.90 | 14.95 | |* |51448.68 | | 0.60742 | | |80026 GSC | NL80_3 +270112 |CL CrB |161009.3+355731 |EW | 12.55 | 12.9 | 12.8 |* |51323.8789 | | 0.31881 | | |80001 GSC | NL80_3 +270113 |CM CrB |161043.4+343714 |DSCT: | 11.57 |( 0.14 )| |V | | | 0.18391199 | | |80371 GSC | NL80_3 +270114 |CN CrB |161213.0+341416 |BY | 13.92 |( 0.19 *)| |V | | | 0.6031 | | |80021 GSC | NL80_3 +270115 |CO CrB |161303.6+352620 |LB | 8.4 | 8.8 | |* | | | | | |80417 80417| NL80_3 +270116 |CP CrB |161324.1+342551 |RRAB | 16.1 | 17.1 | |B |42926.44 | | 0.536324 |30 : | |80618 80618| NL80_3 +270117 |CQ CrB |161426.2+344714 |RRAB | 16.3 | 17.0 | |B |42930.36 | | 0.475637 |25 | |80618 80618| NL80_3 +270118 |CR CrB |161428.0+303145 |DSCT: | 11.8 |( 0.12 )| |V | | | 0.17690501 | | |80371 GSC | NL80_3 +270119 |CS CrB |161826.9+273315 |EW | 14.8 |( 0.2 )|( 0.2 )|V |53214.387 | | 0.336486 | | |80444 80444| NL80_3 +270120 |CT CrB *|161834.3+272813 |RRAB | 13.4 | 14.7 | |V |53558.37 | | 0.508646 | | |80444 80444| NL80_3 +270121 |CU CrB |162157.2+381734 |RS | 10.2 | 10.4 | |* | | | 31.977 | | |80370 80370| NL80_3 +279001 |alf CrB *|153441.3+264253 |EA/DM | 2.21 | 2.32 |( 0.25 )|B |23163.770 | | 17.359907 |03 *|A0V+G5V |01106 05056| +279002 |bet CrB *|152749.7+290621 |ACV | 3.65 | 3.72 | |V |40335.0 | | 18.487 | |F0IIIp(Sr-Cr-Eu) |05343 05056| +279003 |gam CrB *|154244.6+261744 |DSCTC | 3.80 | 3.86 | |V | | | 0.030 | |A0IV |06255 05056| +279004 |del CrB |154935.6+260406 |RS: | 4.57 | 4.69 | |V | | | | | |69098 BD | +279008 |tet CrB |153255.8+312133 |BE | 4.06 | 4.33 | |V | | | | | |72066 BD | +280001 |R Crv |121937.9-191522 |M | 6.7 | 14.4 | |V |42781. | | 317.03 |41 |M4.5e-M9:e |00001 00002| +280002 |S Crv |123735.8-171551 |LB | 10.1 | 11.0 | |p | | | | |M5 | 01107| +280003 |T Crv |123706.9-173132 |M | 11.6 |< 16.6 | |p |34130. | | 401.34 | |M6e |00001 01107| +280004 |U Crv *|123502.0-182739 |M | 10.1 |< 15. | |p |38480. | | 283.42 | |M5e |00001 08953| +280005 |V Crv |124032.3-173851 |M | 11.7 |< 15.5 | |p |29381. | | 193.63 | |M2e |01001 01108| +280006 |W Crv *|120734.4-130859 |EB/KW: | 11.16 | 12.50 | 11.86 |V |39647.766 | | 0.38808083 | | |00001 00192| +280007 |X Crv |124843.4-193020 |SRB | 10.8 |< 12.0 | |p | | | 112.3 | |M6III |00018 BD | +280008 |Y Crv *|123810.4-150000 |EW/KE | 11.0 | 11.7 | 11.7 |p |25620.646 | | 0.4948130 | |A0 |03646 00464| +280009 |Z Crv *|122941.8-233804 |EA/SD | 14. : | 16.5 : | |V |43940.632 | | 0.504754 |24 | |01109 06286| +280010 |RR Crv |123026.9-175853 |E/SD | 11.1 | 13.9 | |p |29392.209 | | 5.158122 | | |01109 06286| +280011 |RS Crv |123200.3-235418 |RRAB | 12.8 | 13.9 | |p |29401.497 | | 0.5369 | | |01109 06286| +280012 |RT Crv |123358.5-233524 |RRAB | 14.1 | 15.2 | |p |29365.428 | | 0.544162 | | |01109 06286| +280013 |RU Crv |123456.4-205011 |SR | 10.4 | 11.0 | |p | | | | |M2 |01109 08953| +280014 |RV Crv *|123740.7-193440 |EB/KE | 8.60 | 9.16 | |V |41029.384 | | 0.7472521 | |F0+G0: |07026 08953| +280015 |RW Crv |124042.9-222742 |RR | 14.3 | 15.3 | |p |29703.552 | | 0.564313 | | |01109 06286| +280016 |RX Crv |124454.5-173740 |RR | 13.8 | 14.8 | |p |29335.491 | | 0.5484 | | |01109 06286| +280017 |RY Crv |124459.9-220301 |RR | 14.4 | 15.4 | |p |29394.209 | | 0.584060 | | |01109 06286| +280018 |RZ Crv *|125035.8-182535 |EW/KE | 13.3 | 14.1 | 13.9 |p |29723.445 | | 0.663756 | | |01109 06286| +280019 |SS Crv |125242.5-182720 |RRAB | 13.3 | 14.6 | |p |29340.538 | | 0.598479 | | |01109 06286| +280020 |ST Crv |115946.7-131453 |M | 11.7 |< 15. | |p |31285. | | 224.6 | | |01001 01110| +280021 |SU Crv |122125.8-215717 |M | 12.2 | 16.0 | |p |42170. | | 351.5 |37 |Me |04561 01111| +280022 |SV Crv |124947.0-150444 |SRB | 6.78 | 7.6 | |V | | | 70. : | |M5III |08225 07071| +280023 |SW Crv |121023.8-221436 |RRAB | 12.7 | 14.2 | |p |41772.417 | | 0.5309355 |19 | |04563 04563| +280024 |SX Crv *|124015.0-184801 |EW/KW | 8.99 | 9.25 | 9.23 |V |41017.4557 | | 0.3166386 | |F8 |07459 BD | +280025 |SY Crv |121216.6-225433 |RRAB | 12.9 | 14.5 | |p |41031.382 | | 0.490782 |09 | |07941 07941| +280026 |SZ Crv |121620.5-231022 |LB | 13.6 | 14.7 | |p | | | | | |07941 07941| +280027 |TT Crv |122318.9-114844 |SR | 6.47 | 6.57 | |V | | | 11.5 | |M3III |08225 BD | +280028 |TU Crv |123558.8-203139 |DSCTC | 6.53 |( 0.025 )| |B | | | 0.082 | |F0III |08403 BD | +280029 |TV Crv |122024.1-182701 |UG | 12. | 18. | |p | | | | | |71114 71114| +280030 |TW Crv |120005.7-190204 |R | 12.68 | 13.55 | |V | | | | | |73128 UCAC2| +280031 |TX Crv |120047.5-120927 |E: | 8.08 | 8.60 | |Hp| | | | | |HIP HIP | +280032 |TY Crv *|120051.2-193932 |ELL | 5.19 | 5.23 | |Hp| | | | | |HIP HIP | +280033 |TZ Crv |120057.3-211503 |SRD | 8.27 | 8.47 | |Hp| | | | | |HIP HIP | +280034 |UU Crv |120549.1-234652 |LB: | 8.95 | 9.05 | |Hp| | | | | |HIP HIP | +280035 |UV Crv |121724.0-210330 |BY: | 9.38 | 9.49 | |Hp| | | | | |HIP HIP | +280036 |UW Crv |121942.6-191156 |LB | 8.03 | 8.28 | |Hp| | | | | |HIP HIP | +280037 |UX Crv |122051.0-125112 |LB | 8.08 | 8.39 | |Hp| | | | | |HIP HIP | +280038 |UY Crv |122328.2-230941 |BY: | 10.82 | 11.00 | |Hp| | | | | |HIP HIP | +280039 |UZ Crv |122422.8-224808 |LB | 9.45 | 9.80 | |Hp| | | | | |HIP HIP | +280040 |VV Crv |124115.9-130050 |EA | 5.19 | 5.34 | |Hp| | | | | |HIP HIP | +280041 |VW Crv |125258.8-143714 |SRB: | 7.48 | 7.80 | |Hp| | | | | |HIP HIP | +280042 |VX Crv |122152.5-135310 |M | 11.4 |< 16. | |p | | | | | |75105 75105| +280043 |VY Crv |120106.5-172502 |M: | 13.5 |< 15.4 | |V | | | | | |77004 GSC | +280044 |VZ Crv |124832.3-154310 |BY | 7.93 |( 0.03 )| |V | | | 18.62 : | |K2V |78018 DM | +280045 |WW Crv |121702.5-241850 |LB | 9.9 | 10.8 | |V | | | | | |79100 DM | +280046 |WX Crv |123517.4-203345 |SRB | 11.4 | 12.5 | |V | | | 102. | |M7e: |79100 79010| +280047 |WY Crv |124342.7-135113 |RRAB | 12.8 | 13.7 | |V |52721.7254 | | 0.586069 |23 | |79064 79096| +280048 |WZ Crv |124415.2-212535 |EA | 12.76 | 14.7 | 13.05 |V |52086.498 | | 1.78878 |14 |F7+G |79006 GSC | +280049 |XX Crv *|122509.5-213952 |RR(B) | 11.93 | 12.74 | |V |52250.8451 | | 0.40644 | | |80132 GSC | NL80_2 +280050 |XY Crv *|122801.2-232827 |RR(B) | 12.8 | 13.6 | |V | | | 0.360634 | | |80366 GSC | NL80_2 +280051 |XZ Crv |123121.9-190004 |RRAB | 13.0 | 14.3 | |V |54311.4838 | | 0.552952 |15 | |80002 GSC | NL80_2 +280052 |YY Crv |124416.3-120307 |RRAB | 12.1 | 12.9 | |V |51286.79 | | 0.68115 |15 | |80026 GSC | NL80_2 +290001 |R Crt *|110033.9-181930 |SRB | 9.8 | 11.2 | |p | | | 160. : | |M7 |01113 08953| +290002 |S Crt *|115245.1-073548 |SRB | 10.7 | 12.3 | |p | | | 155. | |M6e-M7e | BD | +290003 |T Crt *|112353.0-195430 |SRB | 9.7 | 11.3 | |p | | | 70. : | |M4 |01113 08953| +290004 |U Crt |111245.3-071755 |M | 9.5 |< 13.5 | |V |28269. | | 169. |45 |M0e |01000 00464| +290005 |V Crt *|112413.4-164023 |EA/KE: | 9.9 | 10.53 | 10.1 |p |41397.3323 | | 0.7020361 |18 *|A6 |06104 00110| +290006 |W Crt *|112629.6-175452 |RRAB | 10.74 | 12.08 | |V |39644.289 | | 0.41201459 |13 |A5:-F6: |09009 00464| +290007 |X Crt *|114856.2-102629 |RRAB | 11.12 | 11.76 | |V |41798.339 | | 0.73283324 |18 |F2-F7 |00727 06286| +290008 |Y Crt |112026.1-245442 |M | 10.2 |< 15.0 | |p |28991. | | 158.36 |50 |M3e-M5e |01004 08953| +290009 |Z Crt *|112600.9-222859 |EA/SD: | 10.5 | 11.5 | |p |31206.325 | | 3.051864 |14 | |00001 00464| +290010 |RR Crt *|113141.2-122253 |SRB: | 9. | 10.5 | |p |31273. :| | | |M5 |01114 00110| +290011 |RS Crt |114903.1-103715 |EA | 11.21 | 11.9 | |B |31211.390 | | 0.8168 |30 |G0 |00192 00110| +290012 |RT Crt |110155.1-073942 |M | 10.8 | 14. | |p |27459. | | 342.7 | |M8 |00349 00132| +290013 |RU Crt |115106.5-111228 |LB: | 8.5 | 9.5 | |p | | | | |M3 |00349 08953| +290014 |RV Crt *|111914.7-194944 |EA | 9.2 : | 9.7 : | 9.4 : |p |42537.7087 | | 1.170494 | |F8 |04584 08953| +290015 |RW Crt |110558.4-090916 |SRB | 8.71 | 8.94 | |V |40683. | | 77. | |MB |05828 BD | +290016 |RX Crt |111747.1-220845 |SRB | 7.3 : | 7.7 : | |V | | | 300. : | |M3 |05828 BD | +290017 |RY Crt |112805.8-200237 |SRB | 9.24 | 9.80 | |V |40652. | | 80. | |MB |05828 08953| +290018 |RZ Crt |113349.4-132526 |RR | 15.5 | 16.7 | |p | | | | | |09014 09014| +290019 |SS Crt |113544.7-175538 |SRB | 8.54 | 8.82 | |V |40692. :| | 65. | | |05828 BD | +290020 |ST Crt |114156.5-134709 |RR | 14.7 | 15.8 | |p | | | | | |09014 09014| +290021 |SU Crt *|113251.6-120206 |DSCTC | 8.62 | 8.65 | |V | | | 0.055 | |F2V |06338 BD | +290022 |SV Crt *|111658.2-070805 |ACV | 6.32 | 6.35 |( 0.015 )|B |40373.62 | | 5.90513 | |A8IVp(Sr-Cr-Si) |07074 BD | +290023 |SW Crt |115225.4-243102 |UGZ: | 15.2 | 17.5 | |p | | | | | |07886 08852| +290024 |SX Crt |115542.4-240328 |EA/DM | 13.7 | 14.2 | |p |42507.393 | | 1.898945 |10 *| |07942 07942| +290025 |SY Crt |111539.8-123533 |LB: | 6.34 | 6.62 | |V | | | | |M4III |08225 BD | +290026 |SZ Crt |112126.7-202714 |BY | 8.1 |( 0.035 )| |V | | | | | |68087 BD | +290027 |TT Crt |113447.3-114531 |UG | 12.5 | 15.3 | |V | | | | | |69099 69099| +290028 |TU Crt |110336.6-213746 |UGSU | 12.1 | 17.5 | |B | | | | | |72067 72068| +290029 |TV Crt |112205.3-244640 |RS | 8.91 | 8.98 | |V | | | | | |73005 CoD | +290030 |TW Crt |110148.0-215031 |EA | 8.39 | 8.72 | |Hp| | | | | |HIP HIP | +290031 |TX Crt |110534.0-250109 |ACV | 9.58 | 9.71 | |Hp| | | | | |HIP HIP | +290032 |TY Crt |111306.6-171523 |SRB | 8.00 | 8.18 | |Hp| | | | | |HIP HIP | +290033 |TZ Crt |111320.2-220213 |LB | 7.97 | 8.14 | |Hp| | | | | |HIP HIP | +290034 |UU Crt |111523.6-113518 |SRB | 6.70 | 7.01 | |Hp| | | | | |HIP HIP | +290035 |UV Crt |111913.1-161445 |SRB | 8.49 | 8.67 | |Hp| | | | | |HIP HIP | +290036 |UW Crt |111926.4-212559 |LB: | 8.24 | 8.35 | |Hp| | | | | |HIP HIP | +290037 |UX Crt |112554.0-134505 |SRB | 6.53 | 6.69 | |Hp| | | | | |HIP HIP | +290038 |UY Crt |112736.2-130621 |LB: | 8.26 | 8.39 | |Hp| | | | | |HIP HIP | +290039 |UZ Crt |112957.7-174609 |LB | 7.74 | 7.90 | |Hp| | | | | |HIP HIP | +290040 |VV Crt |113026.1-151920 |E:/RS: | 9.48 | 9.69 | |Hp| | | | | |HIP HIP | +290041 |VW Crt |113905.6-163644 |LB | 7.75 | 7.88 | |Hp| | | | | |HIP HIP | +290042 |VX Crt |113950.3-163713 |SRB: | 6.14 | 6.25 | |Hp| | | | | |HIP HIP | +290043 |VY Crt |114158.0-242309 |DSCTC | 6.94 | 7.04 | |Hp| | | | | |HIP HIP | +290044 |VZ Crt |114330.7-150234 |LPB: | 6.89 | 6.93 | |Hp| | | | | |HIP HIP | +290045 |WW Crt |114609.9-245225 |LB | 7.47 | 7.61 | |Hp| | | | | |HIP HIP | +290046 |WX Crt |110123.8-113244 |SR: | 12.3 | 14.3 | |V | | | | | |76111 GSC | +290047 |WY Crt |111022.2-230234 |SR: | 11.0 | 11.9 | |V | | | | | |77004 DM | +290048 |WZ Crt |111801.9-213514 |SR: | 12.1 | 13.4 | |V | | | | | |77004 GSC | +290049 |XX Crt |112640.8-193614 |SR: | 11.8 | 12.5 | |V | | | | | |77004 GSC | +290050 |XY Crt |112716.6-085208 |ACVO | 8.5 |( 0.01 )| |B | | | | | |77095 DM | +290051 |XZ Crt |112930.7-185618 |SR: | 12.8 | 14.1 | |V | | | | | |77004 GSC | +290052 |YY Crt |113232.7-191158 |SR: | 11.6 | 13.2 | |V | | | | | |77004 GSC | +290053 |YZ Crt |114120.3-224824 |SR: | 10.9 | 11.9 | |V | | | | | |77004 DM | +290054 |ZZ Crt |114239.8-113349 |SR: | 11.9 | 13.0 | |V | | | | | |77004 GSC | +290055 |AA Crt |114804.8-163514 |SR: | 10.3 | 11.2 | |V | | | | | |77004 DM | +290056 |AB Crt |110250.1-091949 |BY | 9.03 |( 0.03 )| |V | | | 10.33 | |K3V |78018 DM | +290057 |AC Crt |105921.8-122840 |EW | 9.7 | 10.2 | 10.2 |V |53707.837 | | 0.61726 | |A8 |79064 DM | +290058 |AD Crt |111714.9-233606 |SRB | 9.9 | 11.1 | |V | | | 54. | | |79100 DM | +290059 |AE Crt |114647.0-152002 |SRB | 9.7 | 10.7 | |V | | | 138. | |M |79100 DM | +290060 |AF Crt |114948.0-081721 |SRB | 11.2 | 11.8 | |V | | | 31.5 | | |79100 79091| +290061 |AG Crt *|110330.1-105914 |RRC | 12.0 | 12.6 | |V |54247.491 | | 0.376842 |40 | |80001 GSC | NL80_2 +290062 |AH Crt |112501.4-101608 |RRAB | 13.3 | 14.4 : | |V |51599.42 | | 0.64036 |12 | |80026 GSC | NL80_2 +290063 |AI Crt *|112613.8-140408 |RRAB | 12.3 | 13.4 | |V |53499.5825 | | 0.50290 | | |80153 GSC | NL80_2 +290064 |AK Crt *|112733.2-245008 |EA+DSCTC | 11.00 | 11.52 | 11.15 |V |51965.9735 | | 2.778758 |11 |A7II/III: |80281 DM | NL80_2 +290065 |AL Crt |112937.2-154210 |RRAB | 12.9 | 13.9 | |V |53516.6812 | | 0.66431 |15 | |80002 GSC | NL80_2 +290066 |AM Crt |113324.6-103659 |M | 3.54 | 4.74 | |K | | | 443. | |C |80166 2MASS| NL80_2 +290067 |AN Crt |114106.8-103707 |RRAB | 12.1 | 13.1 | |V |53804.7456 | | 0.622335 |10 | |80002 GSC | NL80_2 +290068 |AO Crt |115302.0-231259 |CWA | 12.4 | 13.5 | |V |53060.3215 | | 15.5707 |50 | |80326 GSC | NL80_2 +290069 |AP Crt |115605.0-092039 |RRAB | 12.7 | 14.1 | |V |54597.5690 | | 0.54380 |12 | |80001 GSC | NL80_2 +300001 |R Cru *|122337.7-613745 |DCEP | 6.40 | 7.23 | |V |34514.629 | | 5.82575 |28 |F6-G2Ib-II |02309 01115| +300002 |S Cru |125422.0-582550 |DCEP | 6.22 | 6.92 | |V |34973.520 | | 4.68997 |34 |F6-G1Ib-II |05366 03511| +300003 |T Cru *|122121.1-621654 |DCEP | 6.32 | 6.83 | |V |34541.340 | | 6.73331 |34 |F6-G2Ib |05366 01115| +300004 |U Cru *|123223.7-573459 |M | 10.3 | 14. | |p |40020. | | 342.6 | |M4e-M6e |05344 03389| +300005 |V Cru |125635.6-575357 |M | 10.4 | 13.90 | |B |15539. | | 376.5 | |Ce(Ne) |00001 08953| +300006 |W Cru *|121159.2-584701 |EB/GS | 9.04 | 10.38 | 9.3 |B |40731.6 | | 198.53 | |G2eIab |01117 08953| +300007 |X Cru |124622.3-590729 |DCEP | 8.10 | 8.70 | |V |34939.562 | | 6.21997 |31 |F6-G2Ib |02309 03511| +300008 |Y Cru |120256.8-634340 |M | 10.8 | 16.0 | |p |14040. | | 214. | |M6e: |00017 05625| +300009 |Z Cru |121114.9-642612 |SRA | 10.8 | 13.5 | |p |18050. | | 341. | |C(N0) |00017 05625| +300010 |RR Cru |122327.5-603557 | | 12.5 | 14.0 | |p | | | | | |01118 GSC | +300011 |RS Cru |122556.1-613029 | | 13.4 | 16.4 | |p | | | | | |01118 USNO | +300012 |RT Cru |123453.9-643356 |IA | 10.7 | 13.1 | |p | | | | |B:e |04160 04160| +300013 |RU Cru |123837.2-642108 |L: | 14.2 | 17.0 | |p | | | | | |01118 USNO | +300014 |RV Cru |121742.0-614538 | | 13.1 | 14.2 | |p | | | | | |01118 GSC | +300015 |RW Cru |124001.9-612518 |M: | 13.5 | 16.0 | |p | | | | |M6e-M8e |01118 04641| +300016 |RX Cru |124932.5-614614 |LB: | 15.0 | 16.0 | |p | | | | |C(N:)ea |01118 GSC | +300017 |RY Cru |125427.3-635607 |S: | 12.7 | 13.8 | |p | | | | | |01118 GSC | +300018 |RZ Cru |125723.9-632858 |EA: | 14.0 | 15.3 | |p | | | | | |01118 USNO | +300019 |SS Cru |121002.9-563936 | | 12.8 |< 15. | |p | | | | | |00029 08588| +300020 |ST Cru |122545.7-600000 |M | 10.7 | 13.7 | |p |21010. | | 440. | |M6e |01119 CoD | +300021 |SU Cru *|121816.9-631649 |DCEP | 9.38 | 10.10 | |V |35075.766 | | 12.8476 |34 | |02309 00040| +300022 |SV Cru *|115753.7-623846 |DCEP | 11.76 | 12.50 | |V |34575.26 | | 7.00427 |30 | |02309 09001| +300023 |SW Cru *|115906.4-601819 |RRAB | 11.82 | 12.65 | |V |26030.453 | | 0.3277799 |18 |A9-F6 |03126 00040| +300024 |SX Cru |115939.5-620822 |EA/SD: | 12.5 | 13.6 | |p |23988.21 | | 0.901374 |21 | |00040 00040| +300025 |SY Cru *|120658.8-624121 |EA/SD | 12.4 |< 14.0 | |p |24290.20 | | 4.2013 |10 | |00040 00040| +300026 |SZ Cru |121525.1-583001 |EA/DM: | 10.9 | 11.6 | |p |24288.28 | | 1.9740 |17 *| |00040 00040| +300027 |TT Cru |122430.0-613316 |EA/SD: | 10.1 | 11.0 | |p |24264.52 | | 2.95201 |17 *| |00039 00040| +300028 |TU Cru *|122851.2-642506 |EB/AR | 11.0 | 11.9 | 11.5 |p |23971.27 | | 3.1000 | | |00040 00040| +300029 |TV Cru |120110.7-634417 |EA/SD | 13.5 | 14.4 | |p |24691.679 | | 1.615336 |14 *| |00045 00045| +300030 |TW Cru *|120316.3-625616 |EW/KW | 12.4 | 12.9 | 12.85 : |p |24776.1574 | | 0.3881358 | | |00045 00045| +300031 |TX Cru *|120344.8-605957 |EA/GS: | 13.6 | 14.1 | |p |25381.56 | | 61.50 |20 : | |00045 00045| +300032 |TY Cru |120640.4-623549 |DCEP | 13.77 | 14.29 | |B |34916.28 | | 4.98851 |34 | |02309 00045| +300033 |TZ Cru *|120953.6-604815 |EA | 11.8 | 12.4 | |p |24791.045 | | 1.045570 |15 *| |00045 00045| +300034 |UU Cru |121214.7-631223 |EA/SD: | 13.4 | 14.3 | |p |24834.187 | | 3.55272 |11 | |00045 00045| +300035 |UV Cru |121232.8-623912 |EA/DS | 13.0 | 14.0 | |p |24478.843 | | 16.120 |06 *| |00045 00045| +300036 |UW Cru *|121403.9-644055 |EA/DM: | 12.3 | 13.1 | 12.9 |p |25362.155 | | 6.354527 |07 *| |00049 00045| +300037 |UX Cru *|121804.1-624207 |EA/DM: | 11.7 | 12.5 | 12.4 |p |26043.119 | | 12.29745 |07 *| |01120 00045| +300038 |UY Cru |122124.2-641936 |EA/SD | 12.7 | 13.5 | |p |24917.373 | | 1.40443 |15 | |00045 00045| +300039 |UZ Cru |122124.7-574955 |EA/GS | 11.1 | 11.6 | |p |24943.58 | | 56.252 |05 | |00045 00045| +300040 |VV Cru |122331.9-642815 |DCEP | 13.0 | 13.6 | |p |26010.60 | | 6.12115 |28 | |00046 00045| +300041 |VW Cru |123318.7-633023 |DCEP | 9.32 | 9.94 | |V |40799.40 | | 5.26522 |28 |K0 |00046 00045| +300042 |VX Cru |123423.4-611415 |DCEP | 11.42 | 12.42 | |V |41101.27 | | 12.2126 |32 | |07934 00045| +300043 |VY Cru *|123530.6-631513 |EW/K | 13.1 | 13.6 | 13.5 |V |24776.017 | | 0.695599 | | |01121 01121| +300044 |VZ Cru *|123807.4-635348 |EA/SD | 12.9 | 14.0 | |p |24775.902 | | 0.562905 |23 | |00045 00045| +300045 |WW Cru *|115629.7-603953 |EA/KE | 12.7 | 13.3 | 13.0 |p |24955.312 | | 1.147618 |11 *| |00054 00054| +300046 |WX Cru *|120345.7-623854 |EA/DS | 13.3 | 14.6 | |p |25025.86 | | 60.288 |06 | |00054 00054| +300047 |WY Cru *|120834.4-612504 |EA | 13.0 | 13.6 : | |p |25092.37 | | 4.506645 |13 | |00054 00054| +300048 |WZ Cru |121031.0-610315 |RRAB | 13.4 | 14.0 | |p |24251.902 | | 0.451254 |17 | |00054 00054| +300049 |XX Cru *|121239.6-615545 |EA/DM: | 13.3 | 13.7 | |p |25216.658 | | 1.64283 |23 | |00054 00054| +300050 |XY Cru *|121931.0-634550 |EA/SD | 11.6 | 12.4 | 11.7 |p |24537.884 | | 1.024005 |14 *| |00054 00054| +300051 |XZ Cru *|122103.4-584017 |EA | 12.6 | 13.1 | |p |25241.395 | | 0.8247965 |21 | |00054 00054| +300052 |YY Cru *|123151.9-603837 |EW/K | 12.8 | 13.0 | 13.0 |p |25275.192 | | 0.5172918 | | |00054 00054| +300053 |YZ Cru *|123156.4-595158 |EB/K | 13.0 | 13.5 | 13.1 |p |25074.364 | | 0.836736 | | |00054 00054| +300054 |ZZ Cru *|120545.4-633015 |EB/DM | 9.65 | 10.1 | 9.8 |B |29262.748 | | 1.862194 | |B3V |00007 05625| +300055 |AA Cru |121711.6-622849 |EA/DM | 10.8 | 11.4 | |p |25331.485 | | 1.89382 |10 | |00055 CPD | +300056 |AB Cru *|121737.1-580953 |EA/DM | 8.56 | 9.2 | 8.9 |B |29235.019 | | 3.4132987 |19 *|O8Vne |00007 08588| +300057 |AC Cru *|122439.2-640052 |EB/K | 11.3 | 12.1 | 12.1 |p |24918.533 | | 0.9041954 | | |00055 00055| +300058 |AD Cru *|121259.7-620549 |DCEP | 10.64 | 11.45 | |V |43344.123 | | 6.39789 |30 | |09003 01122| +300059 |AE Cru *|115834.8-611001 |EA/D | 9.0 | 9.7 |( 0.03 )|p |30399.114 | | 3.4781475 |12 *|B7III |01123 08953| +300060 |AF Cru *|121907.2-630954 |EA | 9.76 | 10.53 | 9.87 |V |24988.959 | | 1.895669 |06 |F5-G9 |01122 08752| +300061 |AG Cru *|124126.0-594739 |DCEP | 7.73 | 8.58 | |V |34908.770 | | 3.83728 |27 |F8Ib-II |06611 01124| +300062 |AH Cru |115706.1-615349 |SR | 13.4 | 14.4 | |p |25363. | | 83. | | |01125 01125| +300063 |AI Cru *|120607.7-611525 |EA/KE | 9.55 | 10.30 | 9.94 |B |33466.3358 | | 1.4177073 |20 |B2IVe |01126 04641| +300064 |AK Cru |121420.3-613045 |M | 13.6 |< 15.5 | |p |27599. | | 275. | | |00061 USNO | +300065 |AL Cru |115638.4-622745 |M | 11.0 |< 13. | |p |30504. | | 328. | |M4e-M8 |00714 GSC | +300066 |AM Cru |123300.6-643224 |EA/DM | 10.7 | 11.2 | |p |28008.320 | | 2.086905 |09 |B5 |04160 04160| +300067 |AN Cru |124315.8-582900 |EA/SD | 10.6 | 12.3 | |V |34421.565 | | 3.25737 |12 *| |00080 03511| +300068 |AO Cru |121745.8-633658 |LC | 8.5 | 10.0 | |p | | | | |M0Ia/ab |00714 05625| +300069 |AP Cru |123120.5-642625 |NA | 10.7 |< 15. | |p |27885. :|1935 | | | |00714 GSC22| +300070 |AQ Cru *|115645.1-640234 |EB/KE | 13.2 | 13.9 | 13.8 |p |25836.194 | | 1.1550028 | | |04160 04160| +300071 |AR Cru |115652.9-580030 |EA/SD | 12.6 |< 14.3 | |p |25225.125 | | 5.84559 |12 | |04160 04160| +300072 |AS Cru |120016.6-602432 |EA/DM: | 13.7 | 14.3 | |p |24807.15 | | 18.361 |12 | |04160 04160| +300073 |AT Cru *|120349.4-641606 |EA/DS | 12.4 | 13.5 | 12.6 |p |24550.60 | | 33.925 |10 | |04160 04160| +300074 |AU Cru |120656.0-592127 |SRA | 12.4 | 13.7 | |p |26480. | | 35.2 | | |04160 04160| +300075 |AV Cru |120957.0-635913 |EA/SD: | 14.1 | 15.2 | |p |25029.671 | | 4.25642 |14 *| |04160 04160| +300076 |AW Cru *|121030.1-603013 |EA/DM: | 13.4 | 13.9 | 13.9 |p |24962.248 | | 2.452896 |15 *| |04160 04160| +300077 |AX Cru |121117.0-605618 |SRA | 11.9 | 13.4 | |p |26092. | | 56.6 | | |04160 04160| +300078 |AY Cru *|121116.0-590803 |EA/SD | 11.1 | 12.2 | 11.2 |p |24802.076 | | 1.598383 |18 | |04160 04160| +300079 |AZ Cru |121131.6-614613 |SRA | 11.8 | 13.1 | |p |26122. | | 37.2 | |C(R5) |04160 04160| +300080 |BB Cru *|121146.0-614609 |EA/DM: | 13.9 | 14.5 | 14.0 |p |24522.15 | | 6.01884 |04 *| |04160 04160| +300081 |BC Cru *|122436.2-641320 |EA/KE | 13.6 | 14.0 |( 0.03 )|p |25037.172 | | 1.56116 |09 *| |04160 04160| +300082 |BD Cru *|122437.9-611445 |EA/SD | 12.1 | 13.3 |( 0.05 )|p |25623.317 | | 1.984223 |18 *| |04160 04160| +300083 |BE Cru |122733.2-581619 |EA/AR: | 12.5 | 13.2 | |p |25165.531 | | 2.220947 |09 | |04160 04160| +300084 |BF Cru *|123518.4-623914 |EW/KW | 12.0 | 12.5 | 12.3 |p |25702.3681 | | 0.49880632 | | |04160 04160| +300085 |BG Cru |123140.3-592526 |DCEPS | 5.34 | 5.58 | |V |40393.66 | | 3.3428 |47 |F5Ib-G0p |05538 05317| +300086 |BH Cru *|121616.8-561710 |M | 7.2 | 10.0 | 8.0 |V |40858. | | 421. | |SC4.5/8-e-SC7/8-e|09006 06031| +300087 |BI Cru *|122326.0-623816 |ZAND | 11.0 | 14.0 | |p | | | | |pec |09007 06031| +300088 |BK Cru *|122153.4-634734 |UV | 15. | 16.7 | |U | | | | | |07818 07818| +300089 |BL Cru |122728.9-585930 |SR: | 5.43 |( 0.35 )| |V | | | | |M4/5III |06994 CoD | +300090 |BM Cru *|123001.1-621822 |UV | 14. | 17.3 | |U | | | | | |07818 07818| +300091 |BN Cru |123535.2-604247 |M | 13. |< 17. | |p | | | | |M5:e |08135 USNO | +300092 |BO Cru |123639.0-614048 |M: | 7.7 | 12.0 | |I | | | | |M0-M10(S)e: |04956 04956| +300093 |BP Cru *|122637.6-624613 |ELL+XPNG: | 10.83 |( 0.07 )| |V | | | 41.51 | |B2Iaeq |09017 08404| +300094 |BQ Cru *|124332.9-630611 |GCAS | 11.49 | 12.39 | |V | | | | |Be |08405 03112| +300095 |BR Cru |124624.1-563010 |ACV | 8.70 | 8.82 | |V |43014.000 | | 2.8730 |50 |Ap |03127 CPD | +300096 |BS Cru *|125320.7-602317 |BCEP: | 9.75 | 9.79 | |V | | | 0.275 | |B0.5V |08407 03167| +300097 |BT Cru *|125335.5-602347 |BCEP | 9.80 |( 0.032 )| |B | | | 0.133 | |B2:V |08407 03167| +300098 |BU Cru *|125337.6-602125 |E: | 6.80 | 6.90 | |V |43228.61 | | | |B1.5Ib |08407 03167| +300099 |BV Cru *|125339.2-602113 |BCEP | 8.77 |( 0.05 )| |B | | | 0.16 | |B0.5III(n) |08407 03167| +300100 |BW Cru *|125357.5-602458 |BCEP | 9.03 | 9.09 | |V | | | 0.203 | |B2III |08407 03167| +300101 |BX Cru |125038.7-630434 |DCEP | 12.20 | 12.66 | |V |41773.692 | | 19.537 | | |03939 08752| +300102 |BY Cru |120448.8-620008 |EB/GS/K | 7.62 | 8.01 | |V | | | | | |68088 CPD | +300103 |BZ Cru |124250.3-630331 |GCAS | 5.24 | 5.45 | |V | | | | | |68090 68317| +300104 |CC Cru |125347.3-601955 |ELL: | 7.97 |( 0.08 )| |V | | | | | |68092 68092| +300105 |CD Cru |124351.0-630515 |E:/WR | 10.71 |( 0.11 )| |V | | | | | |69064 69100| +300106 |CE Cru |124451.6-625815 |SXARI: | 9.4 |( 0.03 )| |V | | | | | |69064 CPD | +300107 |CF Cru |120455.5-624739 |LB | 11.81 | 12.12 | |I | | | | | |71107 | +300108 |CG Cru |120553.0-624544 |LB | 12.11 | 12.36 | |I | | | | | |71107 USNO | +300109 |CH Cru |124156.6-594109 |GCAS: | 4.88 | 5.7 | |B | | | | | |71105 CPD | +300110 |CI Cru |120046.5-622125 |CEP | 13.52 | 13.85 | |I | | | | | |72042 USNO | +300111 |CK Cru |120258.5-622949 |CEP | 12.26 | 12.67 | |I | | | | | |72042 USNO | +300112 |CL Cru |120659.9-643433 |M | 6.18 | 7.74 | |K | | | | | |72007 | +300113 |CM Cru |123355.5-624953 |M | 8.03 |( 1.75 )| |J | | | | | |72036 USNO | +300114 |CN Cru |125349.5-602303 |EB | 8.61 |( 0.24 )| |B | | | | | |72069 72070| +300115 |CO Cru |120854.3-554342 |DSCTC | 9.22 | 9.30 | |V | | | | | |73129 CPD | +300116 |CP Cru |121031.4-614510 |NA: | 9.2 |< 12. | |V | | | | | |73130 | +300117 |CQ Cru |125318.4-602208 |E: | 12.52 |( 0.07 B )| |V | | | | | |73131 73132| +300118 |CR Cru |125338.2-602145 |E: | 11.44 |( 0.06 B )| |V | | | | | |73131 73132| +300119 |CS Cru |125339.0-602343 |E: | 9.83 |( 0.09 B )| |V | | | | | |73131 73132| +300120 |CT Cru |125343.9-602229 |BCEP | 9.82 |( 0.02 B )| |V | | | | | |73131 73132| +300121 |CU Cru |125345.1-602207 |E: | 13.15 |( 0.05 B )| |V | | | | | |73131 73132| +300122 |CV Cru |125347.0-601836 |BCEP+E: | 9.99 |( 0.04 B )| |V | | | | | |73131 73132| +300123 |CW Cru |125351.6-602317 |BE | 10.09 |( 0.20 B )| |V | | | | | |73131 73132| +300124 |CX Cru |125351.7-602159 |BCEP+E | 10.08 |( 0.04 B )| |V | | | | | |73131 73132| +300125 |CY Cru |125352.2-602228 |BCEP+E: | 9.66 |( 0.05 B )| |V | | | | | |73131 73132| +300126 |CZ Cru |125353.0-602131 |BCEP | 10.26 |( 0.02 B )| |V | | | | | |73131 73132| +300127 |DD Cru |115958.8-583603 |LB: | 8.89 | 9.05 | |Hp| | | | | |HIP HIP | +300128 |DE Cru |120256.4-621031 |LPB | 6.77 | 6.82 | |Hp| | | | | |HIP HIP | +300129 |DF Cru |120323.9-624146 |LPB | 7.78 | 7.84 | |Hp| | | | | |HIP HIP | +300130 |DG Cru |120332.6-610554 |GCAS | 7.43 | 7.64 | |Hp| | | | | |HIP HIP | +300131 |DH Cru |120404.1-643220 |ACV | 7.34 | 7.40 | |Hp| | | | | |HIP HIP | +300132 |DI Cru |120518.7-620310 |WR | 10.62 | 10.94 | |Hp| | | | | |HIP HIP | +300133 |DK Cru |121401.8-592349 |BE | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +300134 |DL Cru |121416.9-642431 |ACYG | 6.24 | 6.28 | |Hp| | | | | |HIP HIP | +300135 |DM Cru |121953.7-625115 |ACYG: | 6.88 | 6.91 | |Hp| | | | | |HIP HIP | +300136 |DN Cru |122731.3-554922 |E: | 8.73 | 8.87 | |Hp| | | | | |HIP HIP | +300137 |DO Cru |123532.5-641317 |BE | 10.09 | 10.32 | |Hp| | | | | |HIP HIP | +300138 |DP Cru |124219.8-625938 |EB | 9.69 | 9.98 | |Hp| | | | | |HIP HIP | +300139 |DQ Cru |124554.0-603306 |BE | 9.03 | 9.19 | |Hp| | | | | |HIP HIP | +300140 |DR Cru |124626.0-575702 |BY: | 8.88 | 8.99 | |Hp| | | | | |HIP HIP | +300141 |DS Cru |125118.0-601947 |ACYG: | 5.79 | 5.84 | |Hp| | | | | |HIP HIP | +300142 |DT Cru |125341.4-611257 |LPB: | 10.02 | 10.21 | |Hp| | | | | |HIP HIP | +300143 |DU Cru *|125341.3-602058 |LC | 7.08 | 7.52 | |Hp| | | | | |HIP HIP | +300144 |DV Cru |125611.2-572814 |BY: | 9.38 | 9.50 | |Hp| | | | | |HIP HIP | +300145 |DW Cru |125633.7-642139 |ACYG: | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +300146 |DX Cru |120519.3-620346 |GDOR: | 14.45 | 14.61 | |y | | | | | |76117 76117| +300147 |DY Cru |124724.7-594141 |SR | 8.4 | 9.9 | |V | | | | | |76121 GSC | +300148 |DZ Cru |122316.2-602234 |N: | 9.7 |< 20. | |V |52875. |2003 | | |pec(e) |78156 78280| +300149 |EE Cru |125336.1-602032 |LPB: | 12.69 |( 0.05 )| |B | | | 4.17 | |B2V |78162 GSC | +300150 |EF Cru |125338.0-602240 |BCEP | 10.17 |( 0.01 )| |V | | | 0.125 | |B2 |78162 GSC | +300151 |EG Cru |125343.3-602402 |BCEP: | 11.45 |( 0.01 )| |V | | | 0.426 | | |78162 GSC | +300152 |EH Cru |125349.4-602058 |BCEP: | 11.81 |( 0.01 )| |B | | | 0.355 | | |78162 GSC | +300153 |EI Cru |125352.0-602216 |BCEP | 9.44 |( 0.01 )| |V | | | 0.182 | |B1V |78162 USNO | +300154 |EK Cru |120258.5-624019 |EB | 8.09 | 8.18 | 8.14 |V |52861.524 | | 4.7470 | |O9.5V |79009 DM | +300155 |EL Cru |121111.7-624534 |EA | 11.76 | 12.02 | 11.85 : |V |53043.798 | | 1.72912 |11 | |79003 GSC | +300156 |EM Cru |122439.8-624550 |M | 11.8 |< 15.8 | |R |53425. | | 338. | | |79093 79093| +300157 |EN Cru |122606.2-593722 |SRB | 9.75 | 11.50 | |V | | | 709. : | |M6 |79064 GSC | +300158 |EO Cru |122900.8-611558 |EA | 9.54 | 10.01 | 9.98 |V |52134.480 | | 5.0244 |04 |A0V |79011 DM | +300159 |EP Cru *|123716.8-564717 |EA | 8.66 | 9.36 | 9.23 |V |53470.691 | | 11.0776 |04 |B5V |79100 DM | +300160 |EQ Cru *|124024.3-594911 |EA | 10.06 | 10.5 : | 10.32 |V |52135.445 | | 15.493 |03 |B9IV |79018 DM | +300161 |ER Cru |124221.3-582807 |SRB | 9.0 | 10.0 | |V | | | 86. | |M4/5 |79064 DM | +300162 |ES Cru |124613.2-615009 |SRB | 10.6 | 11.8 | |V | | | 145. | |M5-M7 |79064 GSC | +300163 |ET Cru |125028.0-603949 |EA | 9.01 | 9.37 | 9.22 |V |52454.515 | | 2.04388 |14 |B2/3III |79011 DM | +300164 |EU Cru |115807.8-641444 |M | 5.27 | 6.00 | |K | | | 414. | |C |80166 2MASS| NL80_2 +300165 |EV Cru |120410.0-624226 |SR | 6.38 | 6.70 | |K | | | 401. | |C |80166 2MASS| NL80_2 +300166 |EW Cru *|121035.8-631502 |EA | 13.0 | 14.0 : | |V |53389.805 | | 0.90819 |18 | |80011 USNO | NL80_2 +300167 |EX Cru |121243.5-613901 |LB | 6.06 | 7.15 | |K | | | | |C |80166 2MASS| NL80_2 +300168 |EY Cru |122210.2-602415 |M | 4.20 | 5.87 | |K | | | 627. | |C |80166 2MASS| NL80_2 +300169 |EZ Cru |123147.7-560940 |SRB | 13.2 | 14.8 | |V | | | 256. | | |80001 2MASS| NL80_2 +300170 |FF Cru |123240.9-581129 |M | 3.67 | 5.09 | |K | | | 580. | |C |80166 2MASS| NL80_2 +300171 |FG Cru *|123747.7-621923 |BCEP | 10.1 |( 0.10 )| |V | | | 0.217457 | |B |80356 DM | NL80_2 +300172 |FH Cru |123822.0-635420 |EA: | 13.0 | 13.4 : | |V |54282.338 | | 0.850710 | | |80391 GSC | NL80_2 +300173 |FI Cru |124434.8-633146 |RS | 10.56 | 10.87 | |V | | | 1.282697 | |K3Ve |80002 DM | NL80_2 +300174 |FK Cru |124506.8-623338 |M | 7.35 | 9.23 | |K | | | 806. | | |80166 2MASS| NL80_2 +300175 |FL Cru *|125318.7-640124 |BCEP | 11.6 |( 0.14 )| |V | | | 0.212974 | |B |80356 GSC | NL80_2 +309002 |bet Cru *|124743.3-594120 |BCEP | 1.23 | 1.31 | |V | | | 0.2365072 | |B0.5III-IV |07423 03511| +309004 |del Cru |121508.7-584456 |BCEP | 2.78 | 2.84 | |V | | | 0.151038 |40 |B2IV |08410 CPD | +3090082|tet 2 Cru *|120419.2-630957 |BCEP: | 4.70 | 4.74 | |V | | | 0.0889 | |B3IV |08395 CPD | +309011 |lam Cru *|125439.2-590848 |BCEP: | 4.62 |( 0.02 )| |V |41779.081 | | 0.3951 | |B4Vne |09019 CPD | +3090122|mu. 2 Cru |125436.9-571007 |GCAS | 4.99 | 5.18 | |V | | | | |B5Vne |08419 CPD | +310001 |R Cyg *|193649.4+501200 |M | 6.1 | 14.4 | |V |44595. | | 426.45 |35 |S2.5,9e-S6,9e(Tc)|00001 00002| +310002 |S Cyg |200529.9+575909 |M | 9.3 | 16.0 | |V |44097. | | 322.93 |50 |S2.5,1e(M3.5-M7e)|00001 00002| +310003 |T Cyg *|204710.8+342227 |LB: | 4.91 | 4.96 | |V | | | | |K3III | 08953| +310004 |U Cyg *|201936.6+475339 |M | 5.9 | 12.1 | |V |44558. | | 463.24 |48 |C7,2e-C9,2(Npe) |00001 00002| +310005 |V Cyg |204118.3+480829 |M | 7.7 | 13.9 | |V |44038. | | 421.27 |46 |C5,3e-C7,4e(Npe) |00001 00002| +310006 |W Cyg *|213602.5+452229 |SRB | 6.80 | 8.9 | |B | | | 131.1 |50 |M4e-M6e(Tc:)III |08641 00002| +310007 |X Cyg *|204324.2+353516 |DCEP | 5.85 | 6.91 | |V |43830.387 | | 16.386332 |35 |F7Ib-G8Ib |09029 09027| +310008 |Y Cyg *|205203.6+343928 |EA/DM | 7.30 | 7.90 | 7.75 |V |09453.4192 | | 2.9963328 |10 *|B0IV+B0IV |08839 06225| +310009 |Z Cyg *|200127.5+500233 |M | 7.1 | 14.7 | |V |44618. | | 263.69 |45 |M5e-M9e |00001 00002| +310010 |RR Cyg *|204604.6+445210 |SRB | 11.9 | 12.8 | |p | | | 235. | |M3III |00104 00103| +310011 |RS Cyg *|201323.7+384345 |SRA | 6.5 | 9.5 | |V |38300. | | 417.39 | |C8,2e(N0pe) |05352 00002| +310012 |RT Cyg |194337.8+484641 |M | 6.0 | 13.1 | |V |44588. | | 190.28 |44 |M2e-M8.8eIb |00001 00002| +310013 |RU Cyg *|214039.1+541929 |SRA | 9.2 | 11.6 | |p |43798. | | 233.43 |50 |M6e-M8e |00001 00002| +310014 |RV Cyg *|214316.3+380103 |SRB | 10.8 | 12.4 | |p | | | 263. | |C6,4e(N5) |00653 00097| +310015 |RW Cyg |202850.6+395854 |SRC | 8.05 | 9.7 | |V | | | 550. : | |M2-4Ia-Iab |00001 00097| +310016 |RX Cyg |201049.6+474847 |CST | 8.19 | | |V | | | | |B0III-IVn |00458 BD | +310017 |RY Cyg *|201023.4+355649 |LB | 8.5 | 10.3 | |V | | | | |C4,8-C6,4(N) |06566 06566| +310018 |RZ Cyg *|205153.2+472120 |SRA | 9.8 | 14.1 | |V |40100. | | 275.69 | |M7.0-M8.2ea |00001 00002| +310019 |SS Cyg *|214242.8+433510 |UGSS | 7.7 | 12.4 | |V | | |( 49.5 ) | |K5V+pec(UG) |09030 01129| +310020 |ST Cyg |203233.5+545701 |M | 9.4 | 14.5 | |V |44476. | | 337.29 |48 |M5.5e-M8.0e |00001 00002| +310021 |SU Cyg *|194448.7+291553 |DCEP | 6.44 | 7.22 | |V |43301.778 | | 3.8455473 |37 |F2-G0I-II+B7V |09083 00884| +310022 |SV Cyg *|200930.1+475217 |LB | 11.67 | 13.2 | |B | | | | |C5,5-C7,4(N3) | 00002| +310023 |SW Cyg *|200657.9+461758 |EA/SD | 9.24 | 11.83 | 9.30 |V |41867.8173 | | 4.57313411 |12 |A2e+K0 |09084 01131| +310024 |SX Cyg |201533.5+310420 |M | 8.2 | 15.2 | |V |44080. | | 411.02 |41 |M7e |00001 00002| +310025 |SY Cyg *|194634.3+324218 |EA/SD | 10.7 | 14.2 |( 0.03 )|p |20001.537 | | 6.0055115 |11 |A3 |04248 04248| +310026 |SZ Cyg *|203254.3+463605 |DCEP | 8.92 | 9.84 | |V |43306.79 | | 15.10965 |42 |F9-G5Ib |00001 00097| +310027 |TT Cyg *|194057.0+323706 |SRB | 10.2 | 11.9 | |B | | | 118. | |C5,4e(N3e) |00366 00097| +310028 |TU Cyg |194610.7+490425 |M | 8.7 | 15.5 | |V |44765. | | 219.44 |49 |M3e-M6e |00001 00002| +310029 |TV Cyg *|203319.6+463409 |LB: | 10.9 | 11.4 | |p | | | | |M0 |00349 08953| +310030 |TW Cyg |210559.7+292421 |M | 8.9 | 15.0 | |V |39136. | | 340.86 |48 |M6.5-M10ep |00001 00002| +310031 |TX Cyg *|210006.4+423551 |DCEP | 8.59 | 10.02 | |V |43794.971 | | 14.7098 |37 |F5-G6Ib |09029 09029| +310032 |TY Cyg |193351.9+281944 |M | 9.0 | 15.0 | |V |41875. | | 349.0 |48 |M6e-M8e |00001 00002| +310033 |TZ Cyg |191604.1+500937 |LB | 9.6 | 11.7 | |V | | | | |M6 |09098 00002| +310034 |UU Cyg *|213928.1+431641 |CST | 8.9 | | |p | | | | |A2 | BD | +310035 |UV Cyg *|193113.3+433813 |SRB | 9.9 | 10.5 | |p | | | 135.5 : | |M6 |00366 00097| +310036 |UW Cyg *|202302.8+431433 |EA/SD | 10.7 | 13.0 |( 0.05 )|V |43690.0355 | | 3.4507805 |16 *|F0 |08593 01141| +310037 |UX Cyg *|205505.5+302452 |M | 9.0 | 16.5 : | |V |44421. | | 565.0 |40 |M4e-M6.5e |00001 00002| +310038 |UY Cyg *|205628.3+302540 |RRAB | 10.59 | 11.46 | |V |22433.7270 | | 0.56070478 |22 |A8-F5 |01132 00568| +310039 |UZ Cyg *|215914.3+442135 |EA/DS | 10.23 | 12.11 | 10.31 |V |41226.6585 | | 31.305809 |08 |A3+K1 |09099 00568| +310040 |VV Cyg *|210552.5+454642 |EA/SD | 13.0 | 14.3 | 13.2 |p |20270.452 | | 1.4770469 |18 *| |02700 01141| +310041 |VW Cyg *|201512.3+343048 |EA/DS | 10.25 | 12.58 | 10.31 |V |41116.8678 | | 8.4303102 |11 |A3e+G5 |09099 01135| +310042 |VX Cyg *|205720.8+401039 |DCEP | 9.54 | 10.55 | |V |43783.642 | | 20.133407 |31 |F5e-G2I-II |09029 00097| +310043 |VY Cyg |210416.6+395820 |DCEP | 9.19 | 10.02 | |V |43045.282 | | 7.856982 |29 |F6-G1Ib |08632 00097| +310044 |VZ Cyg *|215141.4+430803 |DCEP | 8.60 | 9.28 | |V |41705.702 | | 4.864453 |28 |F5-G0 |08300 00100| +310045 |WW Cyg *|200402.7+413517 |EA/SD | 10.02 | 13.26 | 10.16 |V |40377.886 | | 3.3177690 |14 |B8+G |00001 00101| +310046 |WX Cyg |201833.3+372659 |M | 8.8 | 13.2 | |V |40480. | | 410.45 |48 |C8,2JLi(N3e) |00001 00002| +310047 |WY Cyg |214842.2+441459 |M | 9.5 | 17.0 | |p |44832. | | 304.54 |44 |M5e-M6e |00001 08953| +310048 |WZ Cyg *|205306.8+384941 |EB/K: | 10.5 | 11.5 | 10.9 |p |40825.475 | | 0.5844659 | |F0V |00001 01138| +310049 |XX Cyg *|200315.6+585717 |SXPHE | 11.28 | 12.13 | |V |44455.3945 | | 0.134865113 |22 |A5 |09100 00101| +310050 |XY Cyg |194837.2+413752 |M | 11.5 |< 16. | |p |38848. | | 299.18 | |S:e |00001 06286| +310051 |XZ Cyg *|193229.3+562318 |RRAB | 8.9 | 10.16 | |V |44124.440 | | 0.46670 | |A5-F5 |00001 06225| +310052 |YY Cyg |212228.7+422347 |SRA | 12.1 | 13.2 | |p |29826. :| | 388. | |C6,0-C7,3eaV(n) |01000 BD | +310053 |YZ Cyg |210239.8+411709 |CST: | 8.2 | | |p | | | | |A0 | BD | +310054 |ZZ Cyg *|202352.9+465514 |EA/SD | 10.61 | 11.69 | 10.78 |V |45000.3570 | | 0.62861644 |25 *|F6-8V+K5 |00001 01141| +310055 |AA Cyg *|200427.6+364901 |SRB | 9.4 | 12.4 | |p | | | 212.7 | |S7,5-S7.5,6(MpTc)|00653 08953| +310056 |AB Cyg |213633.8+320610 |SRB | 9.5 | 10.1 | |p | | | 520. | |M4IIIe | 01142| +310057 |AC Cyg *|201249.8+492703 |SRB | 9.6 | 10.4 | |p | | | 142. : | |M7 |00111 08953| +310058 |AD Cyg *|203136.5+323352 |LB | 10.4 | 11.4 | |B | | | | |S5,8(Nb) | 08953| +310059 |AE Cyg *|211314.3+304427 |EA/SD | 11.8 | 12.8 |( 0.06 )|p |44586.229 | | 0.96918718 |17 |A5 |00001 01142| +310060 |AF Cyg *|193012.9+460852 |SRB | 7.4 | 9.4 | |p | | | 92.5 | |M5e-M7 |08641 00002| +310061 |AG Cyg |195333.6+370236 |M | 11.2 | 17.0 | |V |34240. | | 296.3 |47 |M6-M8.2 |00001 01145| +310062 |AH Cyg |200036.7+401048 |SRB | 10.8 | 12.3 | |p |29445. | | 112.0 |40 : |M6.5 |01146 01146| +310063 |AI Cyg |203145.2+323121 |SRB | 9.2 | 11.8 | |p | | | 197.3 | |M6-M7 |00653 08953| +310064 |AK Cyg *|214351.3+511307 |CST | 11.05 | | |V | | | | |F8Ib-II |08843 | +310065 |AL Cyg |204715.4+311247 |DCEP | 13.8 | 14.6 | |p |29519.3 | | 5.34106 |30 : | |00789 00789| +310066 |AM Cyg |204900.8+315056 |M | 11.3 | 14.5 | |p |30075. | | 370.6 | |M6e |01000 00565| +310067 |AN Cyg |205122.4+334819 |M | 12.0 |< 15.5 | |p |32770. | | 193.8 | | |00001 06286| +310068 |AO Cyg |205146.1+320828 |M | 12.9 | 16.0 | |p |26891. | | 320. : | | |01147 06286| +310069 |AP Cyg |205428.6+303704 |M: | 14.0 |< 15.0 | |p |26875. | | 274.8 | | |01000 00568| +310070 |AQ Cyg |205608.4+334148 | | 13.4 | 15.5 | |p | | | | | |01148 06286| +310071 |AR Cyg |205611.2+324626 | | 14.1 |< 16.5 | |p | | | | | |01148 USNO | +310072 |AS Cyg |205709.2+312016 |M: | 12.5 | 15.5 | |p |26860. :| | 210. : | | |01147 06286| +310073 |AT Cyg |205713.4+331253 |M | 11.2 |< 15.0 | |p |34943. | | 264.1 | |M5e |02931 01149| +310074 |AU Cyg |201832.8+342321 |M | 9.5 | 15.3 | |p |42325. | | 435.31 | |M6e-M7e |00001 01151| +310075 |AV Cyg *|192041.1+293020 |SRD | 11.0 | 13.7 | |p |38270.5 | | 89.22 |40 : |G0e-G6 |08844 00884| +310076 |AW Cyg |192847.6+460238 |SRB | 11.0 | 14.5 | |p | | | 340. : | |C4,5(N3) |09105 08953| +310077 |AX Cyg *|195712.5+441540 |LB | 7.85 | 8.8 | |V | | | | |C4,5(N6) |00340 00103| +310078 |AY Cyg *|200944.2+412937 |LB | 11.7 | 13.9 | |B | | | | |C4,8-C7,4(N) |01155 BD | +310079 |AZ Cyg |205759.4+462801 |SRC | 10.2 | 12.0 | |p | | | 459. : | |M2-4Iab |00111 01141| +310080 |BB Cyg *|211818.3+284004 |M | 11.0 |< 14.2 | |p |41245. | | 259.71 |47 | |00001 02460| +310081 |BC Cyg |202138.5+373159 |SRC | 11.3 | 13.8 | |p | | | 700. : | |M3.5Ia |07341 07341| +310082 |BD Cyg |204735.9+314403 | | 13.8 | 14.9 | |p | | | | | |01148 USNO | +310083 |BE Cyg |210324.3+330359 |LB | 13.4 | 17.1 | |p | | | | | |08845 08845| +310084 |BF Cyg *|192353.5+294029 |ZAND | 9.3 | 13.4 | |p | | | | |Bep+M5III |08044 00570| +310085 |BG Cyg *|193857.7+283047 |M | 9.0 | 12.8 | |V |43784. | | 288.0 |30 |M7e-M8e |00001 00002| +310086 |BH Cyg |211857.6+415338 |M | 11.9 |< 17. | |p |29876. | | 361.85 | |M5 |00001 06286| +310087 |BI Cyg *|202121.9+365556 |LC | 8.4 | 9.9 | |V | | | | |M4Iab |00104 00570| +310088 |BK Cyg |212932.7+472135 |M | 11.5 |< 17.0 | |p |38202. | | 511. | |M9 |05348 01159| +310089 |BL Cyg |213058.2+462929 |M | 12.9 | 17.0 | |p |37840. | | 352.46 | |M6.5 |00001 01159| +310090 |BM Cyg |213150.5+473534 |M | 13.9 |< 17.0 | |p |37234. | | 437.9 | | |00001 01160| +310091 |BN Cyg |214446.8+462843 |M | 11.8 | 17.5 | |p |37959. | | 174.3 | |M4e |00001 06286| +310092 |BO Cyg *|214914.5+410817 |EA/DM | 11.8 | 12.5 | 12.0 |p |36446.767 | | 1.756227 |18 | |00001 01142| +310093 |BP Cyg |215252.4+485727 |M | 12.0 |< 17. | |p |32810. | | 309.00 | |M5 |01159 01159| +310094 |BQ Cyg |215454.2+512844 |M | 11.5 |< 15. | |p |33260. | | 419.84 | |M7 |00001 06286| +310095 |BR Cyg *|194054.7+464706 |EA/SD | 9.4 | 10.60 | 9.58 |V |41539.4654 | | 1.33256415 |19 *|A5V+F0V |07496 00192| +310096 |BS Cyg *|195143.5+534132 |M | 11.0 |< 16. | |p |37583. | | 426.7 | |C6-7,-e(Nep) |00001 01161| +310097 |BT Cyg |200017.1+504040 |M | 12. |< 16. | |p |25163. | | 272.5 | | |01000 06286| +310098 |BU Cyg |200531.0+502201 |M | 10.2 | 14.5 | |V |33096. | | 157.87 |50 |M0 |00001 01162| +310099 |BV Cyg |203244.7+541716 |M | 11. |< 15.5 | |V |21530. | | 322.5 | | |00001 06286| +310100 |BW Cyg |203423.6+584554 |SRB | 13.0 | 15.7 | |p | | | 171.0 | | |00001 06286| +310101 |BX Cyg |203440.1+611931 |LB: | 12.8 | 14.1 | |p | | | | |M5 |09107 06286| +310102 |BY Cyg *|203618.7+543911 |M | 14.3 | 19. | |p |35679. | | 277.8 | | |02634 USNO | +310103 |BZ Cyg *|204559.8+451825 |DCEP | 10.00 | 10.53 | |V |43774.037 | | 10.141932 |50 |F8Ib-G5Ib |09029 00799| +310104 |CC Cyg |204748.7+540238 |M | 12. |< 16. | |p |25330. | | 320. | | |01167 06286| +310105 |CD Cyg *|200426.6+340644 |DCEP | 8.35 | 9.56 | |V |43831.167 | | 17.073967 |28 |F8-K0Ib |09029 00884| +310106 |CE Cyg |211856.3+470026 |CST | 7.75 | | |V | | | | |K3III |08847 09108| +310107 |CF Cyg |200126.6+520519 |CST | 8.9 | | |V | | | | |A2 |00179 BD | +310108 |CG Cyg *|205813.4+351030 |EA/SD/RS | 9.73 | 10.86 : |< 10.44 |V |39425.1221 | | 0.63114100 |13 *|G9.5V+K3V |07499 00192| +310109 |CH Cyg *|192433.1+501429 |ZAND+SR | 5.60 | 8.49 | |V | | | | |M7IIIab+Be |08849 00002| +310110 |CI Cyg *|195011.8+354103 |EA/GS+ZAND| 9.9 | 13.1 | |p |11902. | | 855.25 |16 |Bep+M5III |01567 03677| +310111 |CK Cyg |195334.5+565910 |NC: | 12.0 |< 17. | |p |22586. |1920 | | | |06004 01170| +310112 |CL Cyg |195732.7+545749 |M | 12.3 |< 17. | |p |24482. | | 308.4 | | |01171 01161| +310113 |CM Cyg *|195834.2+520547 |M | 9.3 | 14.5 | |V |44359. | | 254.83 |44 |SC2-S4e |00001 01172| +310114 |CN Cyg |201753.6+594734 |M | 7.3 | 15.0 | |V |44577. | | 198.53 |44 |M2-M7e(S) |00001 01172| +310115 |CO Cyg |210034.5+444530 |LB | 9.6 | 10.6 | |p | | | | |K5 |00104 01141| +310116 |CP Cyg |213727.9+444148 |CST | 6.20 | | |V | | | | |A7III | BD | +310117 |CQ Cyg |195740.0+531835 |CST: | 9.6 | | |p | | | | |F2 |00111 03557| +310118 |CR Cyg |204919.3+300228 | | 13.0 | 14.4 | |p | | | | | |01148 USNO | +310119 |CS Cyg |194645.0+492549 |M | 13.0 |< 14.7 | |p |28080. | | 250. | | |09109 06286| +310120 |CT Cyg |210806.0+321347 |M | 10.5 |< 13.3 | |V |41853. | | 282.28 | |M7 |00001 01173| +310121 |CU Cyg *|195226.2+551942 |M | 9.5 | 14.1 | |V |37958. | | 213.6 |43 |M6e |00001 00119| +310122 |CV Cyg *|195420.9+380250 |EW/DW | 10.80 | 11.40 | 11.33 |V |24454.4160 | | 0.9834308 | |F8III |03678 01174| +310123 |CW Cyg |195306.3+540559 |E: | 12.0 | 14.1 | |p | | | | | |01175 | +310124 |CX Cyg |201043.5+494958 |SRA | 10.9 | 12.9 | |V |24040. | | 270. |43 |M |00458 01173| +310125 |CY Cyg *|204650.2+460307 |LB | 11.0 | 11.7 | |p | | | | |CS(M2p) |00104 BD | +310126 |CZ Cyg *|211233.3+284652 |M | 10.0 |< 13.3 | |V |38580. | | 278.0 | | |00001 00592| +310127 |DD Cyg *|193131.4+344218 |M | 10.5 |< 13. | |p |44568. | | 147.6 |47 |M0e |00001 01149| +310128 |DE Cyg |193650.6+532836 |M | 12.9 |< 15. | |p |23662. | | 329.9 | | |00001 01176| +310129 |DF Cyg *|194853.9+430215 |RVB | 10.8 | 15.2 | |p |42255. | | 49.808 | |G5-K4I-II |09110 00119| +310130 |DG Cyg *|204325.4+431151 |M | 12.6 | 17.45 | |B |34163. | | 457.61 |40 |M7e-M9.3 |00799 00799| +310131 |DH Cyg *|205828.0+473850 |M | 12.3 | 15.8 | |p |34748. | | 527.8 |29 |M6 |02700 02700| +310132 |DI Cyg |210226.0+305524 |M | 11.8 |< 15.5 | |p |35176. | | 352.4 | |M2e |00001 06286| +310133 |DK Cyg *|213502.7+343545 |EW/D | 10.37 | 10.93 | 10.90 |V |37999.5838 | | 0.47069055 | |A7V |03682 00225| +310134 |DL Cyg *|213946.5+483224 |EA/DM | 9.6 | 10.3 | 9.9 |p |44087.499 | | 4.8303889 |15 *|B3 |00001 00225| +310135 |DM Cyg *|212111.6+321129 |RRAB | 10.93 | 11.99 | |V |42582.406 | | 0.4198600 |13 |A9-F6 |04957 00522| +310136 |DN Cyg |215815.5+520212 |M | 13.9 |< 15.9 | |p |33899. | | 151.3 | | |01159 01159| +310137 |DO Cyg |215822.6+523402 |EA/SD | 11.4 | 12.3 | |p |44487.377 | | 1.7100091 |08 |A0 |00001 01179| +310138 |DP Cyg |220027.7+531735 |EA | 13.2 | 14.1 | |p |24710.52 | | 4.61 | | |01180 00856| +310139 |DQ Cyg *|220217.5+544247 |M | 12.1 |< 14.4 | |p |24790. | | 360. | |M8 |01180 00856| +310140 |DR Cyg |204341.0+380956 |M | 9.3 |< 15.5 | |p |39419. | | 313.88 | |M5e |00001 01181| +310141 |DS Cyg |205021.2+452459 |LB | 12.7 | 16. | |p | | | | |C3,2-C5,4(Nea:) |00612 07115| +310142 |DT Cyg *|210630.3+311105 |DCEPS | 5.57 | 5.96 | |V |44046.969 | | 2.499215 |48 |F5.5-F7Ib-II |00001 01182| +310143 |DU Cyg |211242.9+364418 |M | 9.8 | 14.2 | |V |39384. | | 108.21 | |M4 |00001 01202| +310144 |DV Cyg *|192144.8+294530 |M | 12.4 | 16.0 | |p |34971. | | 149.5 | | |00001 04244| +310145 |DW Cyg *|192316.9+281151 |M | 12.5 | 16.6 | |p |36806. | | 275.8 | |M6 |00001 04427| +310146 |DX Cyg *|192604.5+292256 |EA/SD | 14.1 | 15.9 | 14.2 |p |35428.312 | | 1.3703361 |16 *| |00001 04248| +310147 |DY Cyg *|192639.2+283238 |SR: | 13.6 | 14.3 | |p | | | 355. : | | |03662 00530| +310148 |DZ Cyg |192711.5+315749 |M | 12.4 | 17. | |p |36833. | | 191.78 | | |04244 04244| +310149 |EE Cyg *|193032.4+283219 |EA | 14.4 | 15.7 | 14.5 |p |33924.423 | | 2.8330995 |15 *| |04427 04427| +310150 |EF Cyg *|193354.3+300826 |SRB | 12.8 | 14.8 | |p | | | 158. | |M6.5 |03662 03662| +310151 |EG Cyg |193501.0+300732 |M | 13.1 |< 17. | |p |35414. | | 256.25 | |M5-M6 |00001 03662| +310152 |EH Cyg *|193648.8+280743 |M | 11.8 | 16.5 | |p |44470. | | 280.70 |50 |M4ea:-M8 |00001 04427| +310153 |EI Cyg *|193658.5+321158 |RV | 14.0 | 17. | |p |25223.5 | | 287.6 | | |04248 04248| +310154 |EK Cyg *|193749.0+315023 |SRB | 14.9 |< 16.8 | |p |25516. | | 295.4 |40 : |C |03662 03662| +310155 |EL Cyg |193806.0+283623 |M | 13.9 |< 17. | |p |37950. | | 183.23 | |M5 |00001 03662| +310156 |EM Cyg *|193840.1+303028 |UGZ+E | 11.9 | 14.4 | |p | | | | |pec(UG) |04248 04248| +310157 |EN Cyg *|194009.5+291623 |EA/SD | 12.9 | 16.1 | |p |35066.123 | | 2.21481073 |18 | |04248 04248| +310158 |EO Cyg |194141.0+324904 |M | 13.2 |< 17. | |p |37160. | | 377.0 | |M5 |00001 03662| +310159 |EP Cyg |194503.7+311951 |DCEP | 12.31 | 13.12 | |V |37852.785 | | 4.2889305 |26 | |04248 01203| +310160 |EQ Cyg |194528.9+312654 |M | 13.8 |< 18. | |p |35325. | | 349.1 | |M3-M8 |00001 04248| +310161 |ER Cyg |194912.4+302443 |M | 13.4 | 16.3 | |p |35411. | | 330.8 |57 |M8ea |00001 03662| +310162 |ES Cyg *|195005.5+313202 |SRA | 12.9 | 14.6 | |p |36820. | | 153. |45 |M6.5 |00001 03662| +310163 |ET Cyg |195119.5+311813 |M | 12.4 |< 18. | |p |35394. | | 327.2 | | |03662 03662| +310164 |EU Cyg |195117.3+324032 |CEP | 13.68 | 14.38 | |V |38054.852 | | 14.991176 |38 | |04244 04244| +310165 |EV Cyg *|195301.8+293852 |M | 11.5 |< 16. | |p |37186. | | 262.5 |46 |M2e-M6.5 |04427 04427| +310166 |EW Cyg |195352.4+313204 |LB | 13.2 | 14.7 | |p | | | | |M6.5ea |04244 04244| +310167 |EX Cyg |195423.4+311337 |DCEP | 12.64 | 13.43 | |V |37851.810 | | 4.8507928 |34 | |04244 04244| +310168 |EY Cyg |195436.7+322155 |UGSS | 11.4 | 15.7 | |p | | |( 240. ) | |Be(subdwarf)+K0V |00001 04244| +310169 |EZ Cyg *|195749.0+301557 |DCEP | 11.7 | 13.4 | |p |37892.691 | | 11.659717 |44 : |G5 |04244 04244| +310170 |FF Cyg *|203851.7+375323 |M | 8.2 | 14.2 | |V |44456. | | 323.82 |43 |S6,8e(M4e) |00001 01149| +310171 |FG Cyg *|215933.4+483216 |M | 11.7 |< 16. | |p |41907. | | 442.5 | |M9: |00001 06286| +310172 |FH Cyg |192410.9+295445 |SRA | 13.0 | 15.0 | |p |32787. | | 148.72 |43 |M5 |03662 03662| +310173 |FI Cyg |192538.3+292650 |M | 14.4 |< 18. | |p |37915. | | 351.9 | |M7e |00001 03662| +310174 |FK Cyg |192656.7+292142 |M | 12.7 | 15.5 | |p |36885. | | 159.87 |44 |M5 |00001 03662| +310175 |FL Cyg |192654.1+340711 |M | 12.1 | 16.5 | |p |37866. | | 143.86 | | |00001 03662| +310176 |FM Cyg *|193007.4+295516 |M | 12.2 |< 17.2 | |p |35368. | | 269.7 |49 |M7-M9 |00001 04244| +310177 |FN Cyg *|193045.9+300617 |M | 12.6 |< 16.6 | |p |34938. | | 342.9 | |M6-M9 |03662 03662| +310178 |FO Cyg *|193111.0+305847 |SRA | 13.8 | 16.6 | |p |35452. | | 158.3 |30 : | |00001 03662| +310179 |FP Cyg |193236.7+331256 |M | 14.0 |< 17. | |p |37195. | | 211.5 | | |00001 03662| +310180 |FQ Cyg |193348.4+305455 |M | 12.5 | 16.7 | |p |35321. | | 294.6 | |M6.5-M9 |00001 04427| +310181 |FR Cyg *|193501.3+281341 |EA/SD | 13.9 | 16.1 | 14.0 |p |29140.264 | | 4.444374 |16 | |04427 04427| +310182 |FS Cyg |193615.1+342350 |M | 11.8 |< 16.2 | |p |34626. | | 356.5 | |M6e |03662 03662| +310183 |FT Cyg *|193623.6+324156 |SR | 13.0 | 15.9 | |p | | | | |M5 |03662 03662| +310184 |FU Cyg |194116.1+315630 |M | 11.8 | 16.7 | |p |36804. | | 213.5 |45 |M7-M9 |03662 03662| +310185 |FV Cyg |194303.2+284214 |SRA | 13.7 | 15.4 | |p |25300. | | 349. |64 |M3-M4 |00332 04427| +310186 |FW Cyg |194320.8+313014 |M | 12.6 |< 17.5 | |p |36858. | | 372.45 | |M7 |04427 04427| +310187 |FX Cyg |194409.6+394726 |M | 12.5 |< 15.5 | |p |26259. | | 385. | | |01205 01206| +310188 |FY Cyg *|194510.7+320310 |SR | 12.9 | 14.9 | |p | | | 160. : |48 |M6 |03662 03662| +310189 |FZ Cyg |195113.0+390446 |M | 12.0 | 15.2 | |p |35665. | | 196.3 | |M9: |00001 06286| +310190 |GG Cyg *|195418.6+324046 |EA/SD | 12.0 | 12.9 | 12.1 |p |32793.392 | | 2.00836486 |20 |A5 |04244 04244| +310191 |GH Cyg |195910.8+292703 |DCEP | 9.50 | 10.33 | |V |42743.743 | | 7.817930 |33 |F5-G1 |08632 04244| +310192 |GI Cyg |195933.7+334446 |DCEP | 11.43 | 12.03 | |V |37906.645 | | 5.782550 |31 | |04248 04248| +310193 |GK Cyg |200034.5+393636 |RV | 13.4 | 15.0 | |p |27900.1 | | 79.75 |25 | |00310 06286| +310194 |GL Cyg |200334.7+390935 |CEP | 13.28 | 14.04 | |V |25512.420 | | 3.370693 |49 |F5-F7 |05352 00921| +310195 |GM Cyg *|200415.9+380744 |EA/SD | 12.0 | 13.5 | |p |32408.522 | | 4.745802 |11 *|B9 |03115 01209| +310196 |GN Cyg *|200422.2+402630 |SRA | 9.8 | 12.4 | |p |29214. | | 140.7 |46 |M7 |00460 08953| +310197 |GO Cyg *|203720.1+352610 |EB/KE | 8.47 | 9.09 | 8.73 |V |33930.4056 | | 0.71776382 | |B9n+A0n:V |05222 08953| +310198 |GP Cyg |204648.3+314600 |M | 13.0 | 16.0 | |p |26880. | | 300. : | | |01147 06286| +310199 |GQ Cyg |210411.8+334257 |M | 11.1 |< 15. | |p |33853. | | 333.7 | |M5e |00001 06286| +310200 |GR Cyg |210440.1+371642 |M | 12. |< 16. | |p |25270. :| | | |S |01211 06286| +310201 |GS Cyg *|212940.8+303313 |M | 12. |< 16. | |p |25612. | | 390. | |M6e-M10e |01212 06286| +310202 |GT Cyg *|215043.6+425412 |EA/SD | 13.3 | 15.7 |( 0.05 : )|p |42280.402 | | 2.974353 |13 | |00001 | +310203 |GU Cyg |215205.3+501822 |M | 12.2 | 16. | |p |33478. | | 325.41 | |M9 |00001 06286| +310204 |GV Cyg |215825.3+465626 |EA/SD | 13.2 | 15.2 | |V |29495.356 | | 0.9906772 |15 *|A5: |01155 00133| +310205 |GW Cyg |215907.8+460837 |M | 13.2 |< 15.8 | |p |33026. | | 250.7 | | |00001 01159| +310206 |GX Cyg |220131.4+492930 |SRA | 14.5 | 15.4 | |p |25501. | | 121. | | |01155 02544| +310207 |GY Cyg *|220153.5+484337 |SRB | 10.6 | 12.5 | |p | | | 300. : | |M7p |08856 00119| +310208 |GZ Cyg *|192744.6+342122 |SR | 14.0 | 15.5 | |p | | | 120. : | | |00332 00133| +310209 |HH Cyg |192839.3+325318 |M | 15.2 |< 17.5 | |p |32896. | | 330.0 | |M8 |03662 03662| +310210 |HI Cyg |193020.7+305408 |M | 14.1 |< 16.8 | |p |25774. | | 263.0 | |M5 |03662 00133| +310211 |HK Cyg |193031.6+342052 |EA/SD | 13. | 15.0 | |p |38904.453 | | 3.2831415 |10 *| |08717 00133| +310212 |HL Cyg *|193316.0+281134 |EA/DS | 14.8 | 16.0 | |p |25122.283 | | 9.676994 |15 | |04427 04427| +310213 |HM Cyg |193255.9+365029 |M | 11.5 |< 15. | |p |33737. | | 387.3 | |M5 |00001 00133| +310214 |HN Cyg |193339.9+285614 |UG: | 13.3 | 16.0 | |p | | | | | |03662 00133| +310215 |HO Cyg |193328.1+383201 |M: | 14.5 |< 15.5 | |p | | | | | |00132 00133| +310216 |HP Cyg |193328.7+403037 |M | 13.0 | 17.4 | |p |33530. | | 250. |50 | |03722 03722| +310217 |HQ Cyg |193349.8+385000 |M | 12.5 |< 15.5 | |p |40743. | | 287. | | |07118 00133| +310218 |HR Cyg |193426.8+303942 |M | 12.7 | 17.0 | |p |32849. | | 561. | |M8-M10 |03662 03662| +310219 |HS Cyg |193613.7+392644 |M | 12.6 |< 15. | |p |28000. | | 192. | | |01000 00133| +310220 |HT Cyg |193839.0+314413 |M | 13.8 |< 17. | |p |35386. | | 309.7 | |M7 |03662 03662| +310221 |HU Cyg |193836.8+355444 |M: | 13.5 |< 15. | |p |25574. | | 330.6 | | |01215 00133| +310222 |HV Cyg *|194015.3+314617 |SRB | 13.2 |< 16.4 | |p | | | 195. : | |C4-5,4(N) |00332 03662| +310223 |HW Cyg |194017.4+324604 |M | 12.7 |< 16.6 | |p |39964. | | 121.69 |44 | |04244 2MASS| +310224 |HX Cyg |194029.7+340402 |M | 13.3 |< 17.5 | |p |37938. | | 291.1 | |M7 |03662 03662| +310225 |HY Cyg *|194053.8+290251 |SR | 13.0 | 15.7 | |p | | | | |M7ea |04427 04427| +310226 |HZ Cyg |194040.6+360701 |M | 13. |< 15.5 | |p | | | 180. : | | |00132 00133| +310227 |II Cyg *|194100.5+305436 |SR | 13.9 | 15.3 | |p | | | 88. : |50 |M6.5 |03662 03662| +310228 |IK Cyg *|194240.2+300757 |SRA | 13.1 | 15.2 | |p |34635. | | 71.9 |49 |M4-M5 |03662 03662| +310229 |IL Cyg |194240.5+353924 |M | 12.6 |< 18. | |p |40419. | | 352.0 |44 |M9: |07118 06855| +310230 |IM Cyg |194316.3+342435 |M | 14.5 |< 17.5 | |p |25489. | | 265.5 | |M8 |00332 00133| +310231 |IN Cyg |194404.9+343108 |M | 12.5 |< 19. | |p |41567. | | 287. |35 | |07118 05353| +310232 |IO Cyg |194434.6+322908 |M | 13.7 | 17.5 | |p |37881. | | 254.4 |35 : | |03662 03662| +310233 |IP Cyg |194440.1+344938 |M | 12. |< 18. | |p |32810. | | 406. | |M10 |04417 04417| +310234 |IQ Cyg |194649.6+322523 |M | 14.4 |< 17.5 | |p |25334. | | 304. | |C |00332 00133| +310235 |IR Cyg |194715.7+375042 |M | 14.5 |< 15.5 | |p | | | | | |00132 00133| +310236 |IS Cyg |194734.7+404411 |M | 13.5 |< 17.2 | |p |33240. | | 303.0 | | |04417 04417| +310237 |IT Cyg *|194813.2+334006 |SRA | 13.0 | 15.4 | |p |36846. | | 69.45 |46 | |03662 03662| +310238 |IU Cyg *|195008.2+340957 |CW: | 12.95 | 14.08 | |V |38103.645 | | 31.31451 |29 | |03662 01220| +310239 |IV Cyg *|195012.3+341927 |RRAB | 13.4 | 14.7 | |p |40200.467 | | 0.3343322 |15 | |08857 01221| +310240 |IW Cyg |195228.3+351727 |M | 14. |< 15.8 | |p |28484. | | 341. | | |00782 00133| +310241 |IX Cyg *|195314.1+321044 |SR | 13.7 | 16.1 | |p |28367. | | 104. : |46 |M6.5ea |04244 00133| +310242 |IY Cyg |195533.8+314550 |CEP | 12.49 | 13.89 | |V |28449.93 | | 21.75257 |17 | |04248 04248| +310243 |IZ Cyg |195520.4+370357 |M | 11.0 | 17.5 | |p |34985. | | 441.2 | |M2e-M10 |00001 00133| +310244 |KK Cyg |195555.1+360826 |M: | 14.5 |< 15.5 | |p | | | 268. | |M5 |01222 00133| +310245 |KL Cyg *|195753.5+330936 |M | 12.4 | 17. : | |p |41127. | | 526. |55 |Ce |04972 00133| +310246 |KM Cyg |200013.4+360843 |M | 11.4 | 19. | |p |33297. | | 334.7 | |M4 |01003 00133| +310247 |KN Cyg |200122.6+425548 |EA | 13.6 | 14.6 | |p |25445.433 | | | | |01155 00133| +310248 |KO Cyg |200545.9+375901 |M | 13.4 |< 15.5 | |p |25578. | | 353. | |M6 |01155 00133| +310249 |KP Cyg *|200540.7+411545 |RRAB | 12.5 | 14.2 | |p |26178.579 | | 0.855936 |22 |A8-F7 |08859 01223| +310250 |KQ Cyg |200632.5+432206 |M | 13.6 | 17.7 | |B |25639. | | 174. | |M10 |01155 00133| +310251 |KR Cyg *|200905.6+303301 |EB | 9.19 | 10.00 | 9.37 |V |29106.413 | | 0.8451517 | |A2V |00001 08953| +310252 |KS Cyg |201115.1+371424 |M | 13.4 |< 17.0 | |p |37572. | | 311.26 | |M8 |00001 00133| +310253 |KT Cyg |201143.5+363108 |GCAS: | 11.9 | 13.8 | |p | | | | |B5e |07079 00133| +310254 |KU Cyg *|201245.1+472341 |EA/D:/RS: | 10.73 | 12.38 | 11.15 |V |33884.84 | | 38.4393 |08 |F4p+K5eIII: |03730 01225| +310255 |KV Cyg *|201538.1+364737 |EB/SD | 11.5 | 12.6 | 11.9 |p |29468.389 | | 2.8389936 | |B0 |01226 01226| +310256 |KW Cyg |202252.7+441133 |M | 13.5 | 16.0 | |p |25448. | | 150. | |M2 |01155 00133| +310257 |KX Cyg |202419.4+403340 |DCEP | 13.2 | 15.0 | |p |29113.74 | | 20.0467 |30 | |01155 00133| +310258 |KY Cyg *|202558.1+382107 |LC | 13.5 | 15.5 | |p | | | | |M3.5Ia |01155 00133| +310259 |KZ Cyg |202722.9+410450 |M | 11.2 | 17.2 | |p |39993. | | 405.95 |45 |M8e |00001 00133| +310260 |LL Cyg |203949.1+355035 |M | 13.9 |< 15.5 | |p |25439. | | 211. | | |01155 00133| +310261 |LM Cyg |204205.2+371712 |M | 13.8 |< 15.5 | |p |25425. | | 283. | |M6 |01155 00133| +310262 |LN Cyg *|205730.9+331439 |EB/SD | 14.0 | 15.1 | 14.3 |p |33237.347 | | 0.523945 | |A2: |01227 01227| +310263 |LO Cyg *|214403.0+455239 |EB | 13.1 | 13.7 | 13.3 |p |26267.412 | | 0.6292321 | | |01213 GSC | +310264 |LP Cyg |214620.0+480651 |M | 12.6 |< 17.3 | |p |33357. | | 419.0 | |M8 |01228 06286| +310265 |LQ Cyg |214638.7+523403 |LB: | 13.4 | 14.5 | |B | | | | |C5-,4(N) |06566 06566| +310266 |LR Cyg |215147.3+461511 |E | 13.1 | 15.0 | |p | | | | | |01213 USNO | +310267 |LS Cyg |215321.8+484806 |M | 13.7 | 18.0 | |p |33511. | | 308.3 | | |00001 01159| +310268 |LT Cyg |215334.4+495511 |M | 13.8 |< 15.8 | |p |34618. | | 398.2 | |M7 |00001 01159| +310269 |LU Cyg |215406.6+462158 |EA | 14.2 |< 15.0 | |p |26599.337 | | 2.989318 |23 | |01155 00133| +310270 |LV Cyg |215508.0+481348 |M | 11.3 |< 17.0 | |p |33403. | | 370.4 | |M7 |01159 GSC | +310271 |LW Cyg |215513.8+502950 |LB | 12.30 |< 14.5 | |B | | | | |C5,4(R3) |06566 06566| +310272 |LX Cyg *|215557.1+482051 |M | 11.5 |< 17. | |p |38895. | | 465.3 | |SC3e-S5,5e: |00001 01159| +310273 |LY Cyg |215610.4+480413 |M | 14.2 | 17.0 | |p |32760. | | 286.0 | |M5 |01159 01159| +310274 |LZ Cyg |215645.6+485053 |M | 13.7 |< 15.8 | |p |34614. | | 350.5 | |M9: |00001 01159| +310275 |MM Cyg |215743.0+493519 |SRA | 14.9 | 15.4 | |p |25575. | | 245. | |M7 |01155 00133| +310276 |MN Cyg |215801.5+442639 |SRA | 14.5 | 15.2 | |p |26272. | | 125.0 | | |01213 00133| +310277 |MO Cyg |215757.5+453233 |LB | 13.9 | 15.0 | |p | | | | | |01155 00133| +310278 |MP Cyg |215824.7+455223 |M | 12.7 | 19. | |p |33180. | | 429.0 | |M5e |01159 01159| +310279 |MQ Cyg *|215826.2+532412 |M | 12.0 | 15.4 | |V |41180. | | 480. |38 |C(N) |00001 06566| +310280 |MR Cyg *|215856.6+475900 |EA/SD | 8.75 | 9.68 | 9.12 |V |33396.4069 | | 1.67703362 |22 |B3V+B9 |06501 08953| +310281 |MS Cyg |215907.8+455934 |SR | 14.4 | 15.2 | |p |27387. | | 67. | | |02427 00133| +310282 |MT Cyg |215850.4+520059 |L | 12. | 13. | |p | | | | | |00132 00133| +310283 |MU Cyg *|215913.5+444200 |EB | 14.1 | 14.8 | 14.4 |p |26194.461 | | 3.76060 | | |01213 00133| +310284 |MV Cyg |220110.5+501637 |LB | 14.2 | 15.0 | |p | | | | |M6 |01155 00133| +310285 |MW Cyg |201222.8+325218 |DCEP | 9.14 | 9.90 | |V |42923.839 | | 5.954586 |30 |F8-G2Ib |08632 01232| +310286 |MX Cyg | | | | | | | | | | | | |N +310287 |MY Cyg *|202003.4+335635 |EA/DM | 8.30 | 9.02 | 8.99 |V |33847.607 | | 4.0051873 |09 *|A7:m+A5:m |08861 00192| +310288 |MZ Cyg *|212154.7+372733 |CWA: | 10.76 | 12.68 | |V |43983.40 | | 21.314 |34 |G1-G3 |00001 01235| +310289 |NN Cyg |194927.2+384447 |E | 14.3 | 14.9 | |p | | | | | |00795 USNO | +310290 |NO Cyg |194941.1+381138 |LB | 13.1 | 14.1 | |p | | | | | |03646 03646| +310291 |NP Cyg |194951.3+374629 |E/KE | 14.0 | 14.6 | |p | | | 0.785 | |A2 |01236 USNO | +310292 |NQ Cyg *|194954.6+380824 |RRC: | 15.4 | 16.5 | |p |33361.7115 | | 0.3115917 |50 | |01237 01237| +310293 |NR Cyg |195041.4+374633 |LB | 13.5 | 14.0 | |p | | | | | |01236 UCAC2| +310294 |NS Cyg |195042.1+392848 |RRAB | 13.3 | 14.5 | |p |32081.556 | | 0.550300 | | |01238 06286| +310295 |NT Cyg |195106.6+390042 |M | 14.0 |< 16.0 | |p |25891. | | 390. | |M7e |01236 08953| +310296 |NU Cyg *|195137.7+390720 |EW/KW | 14.3 | 14.9 | 14.9 |p |24055.425 | | 0.281125 | | |01236 USNO | +310297 |NV Cyg |195154.2+384604 |E | 15.7 |< 16.3 | |p | | | | | |01236 USNO | +310298 |NW Cyg |195158.9+385408 |M | 14.1 |< 16.5 | |p |23680. | | 388. | |M6e |01236 08953| +310299 |NX Cyg |195204.1+375243 |E | 14.6 |< 15.7 | |p | | | | | |01236 USNO | +310300 |NY Cyg |195234.6+375544 |EA/DS | 13.8 | 16.1 | |p |23352.52 | | 12.0507 | |A1 |01236 USNO | +310301 |NZ Cyg *|195237.5+384258 |EW/KW | 13.7 | 14.2 | 14.2 |p |24047.285 | | 0.405969 | | |01236 USNO | +310302 |OO Cyg |195244.9+375848 |E | 14.1 | 14.6 | |p | | | | | |01236 USNO | +310303 |OP Cyg |195248.4+381317 |E/KE: | 14.8 | 15.2 | |p |23641.401 | | 1.456275 | | |01236 USNO | +310304 |OQ Cyg |195332.8+375149 |LB | 13.6 | 14.6 | |p | | | | |M7 |01236 USNO | +310305 |OR Cyg |195335.9+375900 |E/KE | 14.4 | 14.8 | |p |24059.318 | | 1.104446 | |A4 |01236 USNO | +310306 |OS Cyg *|195358.4+391209 |E | 14.7 | 15.5 | |p | | | 4.76269 | |A5 |01236 USNO | +310307 |OT Cyg |195407.4+381838 |E/SD | 15.6 | 16.7 | |p |24082.387 | | 1.021447 | |A1 |01236 USNO | +310308 |OU Cyg *|195410.2+384134 |E/DW | 15.5 | 15.9 | 15.6 |p |25121.404 | | 0.560327 | |F3 |01236 USNO | +310309 |OV Cyg |195414.4+382527 |E/SD | 15.5 | 17.2 | |p | | | 3.57 | |A8 |01239 USNO | +310310 |OW Cyg |195430.3+373022 |E | 14.6 | 16.3 | |p |23652.538 | | 2.65882 | | |01236 USNO | +310311 |OX Cyg |195439.4+391501 |E: | 15.6 | 16.2 | |p | | | | | |01236 01236| +310312 |OY Cyg *|195443.9+391758 |ZAND | 14.8 | 16.2 | |p | | | | |M2-M4 |01236 01321| +310313 |OZ Cyg |195515.7+381535 |RR | 16.6 | 17.9 | |p | | | 0.492 : | | |01236 USNO | +310314 |PP Cyg *|195516.5+392708 |M | 13.2 |< 16.0 | |p |24113. | | 296.5 | |M7e |01236 07749| +310315 |PQ Cyg |195536.3+375121 |E/KE | 13.8 | 14.4 | |p |24026.398 | | 1.211183 | |A8 |01236 USNO | +310316 |PR Cyg *|195541.2+381604 |LB | 14.7 |< 18. | |p | | | | |M2.5-M6 |01236 01321| +310317 |PS Cyg |195606.2+380009 |S: | 15.3 | 16.0 | |p | | | | | |01236 USNO | +310318 |PT Cyg *|195607.3+384441 |M | 16.0 |< 18. | |p |24015. | | 160.5 | |M3 |01236 01321| +310319 |PU Cyg *|195615.8+375206 |LB | 13.3 | 14.5 | |p | | | | |C(N) |01236 01321| +310320 |PV Cyg |195629.2+374309 |E/SD | 12.7 |< 15.5 | |p |23293.500 | | 1.314855 | |A1 |01236 UCAC2| +310321 |PW Cyg |195631.0+393031 |EA | 13.3 | 14.5 | |p |32256.665 | | 2.021779093 |12 *| |04761 04761| +310322 |PX Cyg *|195644.1+373739 |M | 14.0 |< 17.0 | |p |25103. | | 309. | |M5e-M6.5p |01236 01321| +310323 |PY Cyg *|195657.2+385506 |EW/KW | 14.8 | 15.2 | 15.2 |p |24029.338 | | 0.4650306 | | |01236 USNO | +310324 |PZ Cyg |195727.6+391412 |L: | 15.3 | 16.2 | |p | | | | | |01236 USNO | +310325 |QQ Cyg |195732.9+380531 |RR | 14.4 | 15.1 | |p | | | | | |01236 USNO | +310326 |QR Cyg |195731.1+382746 |E | 13.4 | 14.7 | |p | | | 28.0 /N| |A3 |01236 GSC | +310327 |QS Cyg *|195739.5+384821 |E/KE | 13.2 | 13.8 | 13.3 |p |23730.358 | | 1.044000 | |A0 |01240 USNO | +310328 |QT Cyg *|195807.4+384929 |EA/SD | 14.8 | 17.4 |( 0.04 )|p |33408.553 | | 3.33558992 |08 *|A5 |04761 04761| +310329 |QU Cyg *|195827.9+381328 |E | 14.5 | 15.3 | 15.1 |p |24026.509 | | 0.3469103 | | |01236 USNO | +310330 |QV Cyg |195825.9+384642 |S: | 14.5 | 15.1 | |p | | | | | |01236 GSC | +310331 |QW Cyg *|195830.5+372914 |EB | 13.9 | 14.4 | 14.1 |p |33576.6847 | | 0.587647322 | | |03734 03734| +310332 |QX Cyg *|195834.8+381435 |E/DW | 14.3 | 15.0 | 14.5 |p |23352.335 | | 0.89961 | |F1 |01236 GSC | +310333 |QY Cyg |195851.5+373849 |CWB: | 14.05 | 15.09 | |V |42250.685 | | 3.89188 |28 | |07748 07748| +310334 |QZ Cyg |195904.0+381543 |LB | 11.2 | 12.4 | |p | | | | |M3 |01236 08953| +310335 |V0335 Cyg |195954.5+380639 |LB | 13.8 | 14.4 | |p | | | | |M1 |01236 GSC | +310336 |V0336 Cyg |195954.4+384642 |CWA | 15.1 | 16.4 | |p |32421.619 | | 15.787 | |eaV |01238 USNO | +310337 |V0337 Cyg |195953.0+391400 |UG: | 14.4 |< 16.5 | |p | | | | | |01236 | +310338 |V0338 Cyg |200003.0+385829 |M | 13.1 |< 16.3 | |p |24058. | | 321. | |M5e-M8 |01236 USNO | +310339 |V0339 Cyg *|200028.9+384409 |M | 15.3 |< 17.5 | |p |33909. | | 329. | |M |04417 04417| +310340 |V0340 Cyg *|200054.4+390145 |EA | 14.4 | 15.2 | 14.5 |p |33002.173 | | 4.06705564 |06 *| |04761 04761| +310341 |V0341 Cyg |200058.0+385443 |M | 14.0 |< 16.5 | |p |25834. | | 351.3 | |M5e-M7 |01236 GSC | +310342 |V0342 Cyg |200347.7+385751 |M | 14.8 |< 17.5 | |p |38204. | | 449.0 | |M7 |00001 USNO | +310343 |V0343 Cyg *|200404.5+390615 |CWA | 13.15 | 14.06 | |V |38202.742 | | 11.9275 |48 |F6 |01238 07132| +310344 |V0344 Cyg |200415.0+385728 |E | 14.3 | 14.8 | |p |23343.453 | | 0.967127 | | |01236 USNO | +310345 |V0345 Cyg |201010.7+302855 |EA/DM | 11.3 | 11.8 | |p |28635.568 | | 2.075493 |18 |A1 |00001 00599| +310346 |V0346 Cyg *|201924.7+362024 |EA/SD | 11.8 | 13.5 | 11.9 |p |35686.750 | | 2.743282 |14 *|A5 |08867 01241| +310347 |V0347 Cyg |205126.6+460716 |DCEP | 13.7 | 14.7 | |p |27951.8 | | 8.7362 |43 | |00612 00799| +310348 |V0348 Cyg *|205425.9+435822 |INS: | 14.8 | 15.9 | |p | | | | | |07115 01242| +310349 |V0349 Cyg |205827.1+450228 |LB | 13.4 | 14.6 | |p | | | | |M4 |01243 01242| +310350 |V0350 Cyg |205835.0+460225 |CST: | 13.7 | | |p | | | | | |01243 01242| +310351 |V0351 Cyg |205841.2+450654 | | 14.7 | | |p | | | | | |01243 GSC | +310352 |V0352 Cyg |205952.0+453453 |CST: | 14.3 | | |p | | | | | |01242 01242| +310353 |V0353 Cyg |210044.6+431843 |E: | 14.1 | 14.9 | |p | | | | | |01242 01242| +310354 |V0354 Cyg |210209.2+442436 |SRB | 11.4 | 13.1 | |p |29534. | | 101.74 |61 |M5 |09114 09114| +310355 |V0355 Cyg *|210317.8+460853 |EA/DS | 14.2 | 15.7 | 14.3 |p |28451.19 | | 8.43111 |06 *| |02700 01242| +310356 |V0356 Cyg |210746.6+464414 |DCEP | 13.1 | 14.2 | |p |28408.45 | | 5.05761 |30 | |01242 01242| +310357 |V0357 Cyg |210858.2+315938 |RRAB | 13.1 | 14.4 | |p |29491.960 | | 0.5201189 |30 | |03736 00599| +310358 |V0358 Cyg |210822.1+454522 |CST: | 14.2 | | |p | | | | | |01242 01242| +310359 |V0359 Cyg |210947.3+441709 | | 13.8 | 14.4 | |p | | | | | |01242 01242| +310360 |V0360 Cyg *|211035.5+304021 |RVA | 10.36 | 12.23 | |V |39748. | | 70.390 | |F5-G0e |00001 01142| +310361 |V0361 Cyg |211048. +453018:| | 14.5 | 15.2 | |p | | | | | |01245 | +310362 |V0362 Cyg |211047.3+472904 |SRB | 13.4 | 14.7 | |p |28400. | | 785. | |M6.5 |00612 01242| +310363 |V0363 Cyg |212119.9+315728 |M | 11.6 |< 16. | |p |31970. | | 357.0 | | |00001 00599| +310364 |V0364 Cyg |201917.1+534129 |M | 13. | 17.5 | |p |27280. | | 302. | | |01000 USNO | +310365 |V0365 Cyg |202240.2+520058 |M | 13. |< 15.5 | |p | | | | |M9 |00492 GSC | +310366 |V0366 Cyg *|204429.8+540607 |EB/KE | 10.0 | 10.5 | 10.2 |p |34489.593 | | 1.0960183 | |A5 |02739 08953| +310367 |V0367 Cyg *|204759.6+391716 |EB/GS/SD: | 6.67 | 7.60 | 7.16 |V |37390.855 | | 18.59773 | |B8peIa+F4III |08608 08953| +310368 |V0368 Cyg *|193720.3+290558 |CST: | 14.1 | | |p | | | | | |03662 03662| +310369 |V0369 Cyg *|194154.7+544035 |M | 9.8 | 14.9 | |V |44799. | | 104.76 |47 |M4e |08079 01217| +310370 |V0370 Cyg *|194338.1+324735 |EB/SD | 11.8 | 13.1 | 11.9 |p |34629.462 | | 0.77454388 | |A0 |04248 04248| +310371 |V0371 Cyg *|201821.6+300921 |EA/GS/D | 12.2 | 13.2 | 12.5 |p |31993.95 | | 45.3796 |13 *|G5III |03115 01249| +310372 |V0372 Cyg |202637.7+554449 |SRA | 11. | 12. | |p |27380. | | 308. | |M6 |01250 01217| +310373 |V0373 Cyg |204418.5+330847 |SRA | 13.0 | 15.3 | |p |27303. | | 320. | | |00601 00601| +310374 |V0374 Cyg *|204709.6+350011 |EA | 13.1 | 14.2 | |p |25157.416 | | 4.24970 |07 | |01251 00601| +310375 |V0375 Cyg |204729.0+355329 |SRA | 12.6 | 13.6 | |p |26215. | | 180. | |M6.5 |01252 01251| +310376 |V0376 Cyg |210041.7+293537 |M | 13.6 |< 16. | |p |26685. | | 252.6 | | |01000 06286| +310377 |V0377 Cyg |210312.2+290712 |EA/SD | 14.4 | 17. | |p |26973.25 | | 3.3869 | | |01000 GSC | +310378 |V0378 Cyg |210325.8+295914 |M | 13.0 |< 15.5 | |p |27284. | | 295.6 | | |01000 00601| +310379 |V0379 Cyg |194425.2+503107 |E/SD: | 13.0 |< 14.5 | |p |28078.340 | | 6.100 | | |00534 00534| +310380 |V0380 Cyg *|195037.3+403559 |EA/DM | 5.61 | 5.78 | 5.76 |V |41256.053 | | 12.425612 |11 *|B1III+B3V: |07134 00846| +310381 |V0381 Cyg |195429.9+460351 |RRAB | 13.8 | 15.4 | |p |39005.667 | | 0.6100146 |13 | |08872 00534| +310382 |V0382 Cyg *|201847.2+362026 |EB | 8.29 | 9.18 | 9.12 |V |36814.7706 | | 1.8855146 | |O7+O8V |08873 08953| +310383 |V0383 Cyg |202858.2+340806 |CWB: | 10.60 | 11.14 | |V |37298.125 | | 4.612211 |35 | |00782 00601| +310384 |V0384 Cyg |204637.7+345935 |SRA | 12.8 | 14.4 | |p |26215. | | 120. | |M5ea: |01251 01251| +310385 |V0385 Cyg *|205347.6+353310 |EA/SD | 12.3 | 13.3 | 12.4 |p |42964.406 | | 1.2280478 |20 *| |00001 01251| +310386 |V0386 Cyg |211440.4+414259 |DCEP | 9.25 | 9.97 | |V |42777.188 | | 5.257606 |29 |F5-G1Ib |08632 01142| +310387 |V0387 Cyg *|211537.4+372952 |EA/K: | 11.5 | 12.3 | 11.6 |V |27985.461 | | 0.6405964 |27 *|A4+G5 |08907 00192| +310388 |V0388 Cyg *|202912.9+312312 |EB/KE: | 8.9 | 9.55 | 9.15 |V |41953.3373 | | 0.8590372 | |A3 |08908 01255| +310389 |V0389 Cyg *|210838.9+301220 |* | 5.55 | 5.71 | |V | | | | |B9Vp(Si) |01256 01182| +310390 |V0390 Cyg |193155.3+482730 |M | 11.1 | 18.6 | |p |36771. | | 249.4 | |M8 |02931 00534| +310391 |V0391 Cyg |194052.4+484742 |M | 11.2 |< 15.2 | |p |28330. | | 405. | |M8 |00345 00534| +310392 |V0392 Cyg |195246.0+562050 |SR | 12.5 | 14.5 | |p |27577. | | 102. | | |01250 01217| +310393 |V0393 Cyg *|195848.3+431744 |EA/DS | 9.0 | 10.0 | |p |44090.485 | | 13.63354 |09 |A0 |08910 08910| +310394 |V0394 Cyg |200544.2+483209 |M | 11.5 |< 14.7 | |p |36810. | | 422. | | |02931 00534| +310395 |V0395 Cyg |200839.6+440338 |SRD: | 7.9 | 8.62 | |V | | | 40.5 | |F8Ib |03246 08953| +310396 |V0396 Cyg |201612.7+420632 |DCEP | 12.6 | 14.6 | |p |29486.36 | | 33.247 |20 | |05352 06173| +310397 |V0397 Cyg |203211.2+352727 |LB | 12.3 | 13.7 | |p | | | | |M7ea |00782 00601| +310398 |V0398 Cyg |204650.8+341204 |EA | 12.5 |< 15. | |p |25157.27 | | 9.2122 : | | |01000 00601| +310399 |V0399 Cyg |204908.4+334145 |RV | 12.9 | 14.3 | |p |25172. | | 120. | |G2-G8 |01257 00601| +310400 |V0400 Cyg |213141.1+292616 |E | 13.2 | 14.3 | |p | | | | | |00193 UCAC2| +310401 |V0401 Cyg *|192920.3+302429 |EW/KE | 10.64 | 11.17 | 11.13 |V |43835.259 | | 0.5827220 | |F0 |00001 04427| +310402 |V0402 Cyg *|200907.8+370907 |DCEP | 9.53 | 10.22 | |V |41698.635 | | 4.364836 |30 |G0III |08300 01260| +310403 |V0403 Cyg |201033.4+512644 |CWB: | 11.8 | 12.3 | |p |28768.20 | | 0.80477 |31 | |09120 01261| +310404 |V0404 Cyg |202403.8+335203 |N | 11.5 : |< 18.5 | |p |29186. -|1938 | | | |00782 00782| +310405 |V0405 Cyg |202136.2+402650 |LB | 10.0 | 10.6 | |p | | | | |M6.5 |00324 08953| +310406 |V0406 Cyg | | | | | | | | | | | | |=V0354 Cyg +310407 |V0407 Cyg *|210209.8+454633 |M+NB: | 13.3 |< 17. | |p |29710. | | 745. | |Mep |03750 03750| +310408 |V0408 Cyg |210538.0+460009 |LB | 11.4 | 12.5 | |p | | | | |M6III |00612 00319| +310409 |V0409 Cyg |211102.3+494204 |EA/DS | 13.3 | 14.8 | |p |27953.35 | | 37.726 |08 *| |01262 00148| +310410 |V0410 Cyg |214048.5+494945 |M | 11.0 | 15.5 | |p |33410. | | 429.5 | |M8 |01159 01159| +310411 |V0411 Cyg *|214707.8+482900 |SRA | 14.0 | 16.0 | |p |32800. | | 325. | | |01228 02286| +310412 |V0412 Cyg |215424.4+452143 |M | 14.5 | 18.0 | |p |33486. | | 424.3 | | |01263 02287| +310413 |V0413 Cyg |215505.2+542902 |LB | 12.4 | 13.2 | |p | | | | |C5,4(N3) |01280 06566| +310414 |V0414 Cyg |195656.0+425155 |LB | 13.2 | 14.4 | |p | | | | | |01155 02333| +310415 |V0415 Cyg |195737.3+414536 |SRA | 14.6 | 16.0 | |p |25570. | | 197. | |M6 |01155 02333| +310416 |V0416 Cyg *|195809.8+430615 |L | 14.0 | 15.4 | |p | | | | |WC6 |01155 02333| +310417 |V0417 Cyg |200058.7+394218 |LB | 12.3 | 13.5 | |p | | | | |M6 |01155 02333| +310418 |V0418 Cyg |200110.2+430652 |EA/SD: | 14.6 | 15.9 | |p |25863.518 | | 1.9871076 |10 *| |01155 02333| +310419 |V0419 Cyg |200229.6+383520 |M | 13.0 |< 16.5 | |p |25454. | | 226.4 | |M5 |00001 02333| +310420 |V0420 Cyg |200242.8+420852 |LB | 10.9 | 11.6 | |p | | | | |M2-M3 |01155 02333| +310421 |V0421 Cyg |200254.1+403023 |M | 13.0 | 18.5 | |B |25780. | | 400. | |M8-M9 |01155 02333| +310422 |V0422 Cyg |200400.1+374936 |M | 14.1 |< 15.5 | |p |25535. | | 262. | |M4-M6 |01155 02333| +310423 |V0423 Cyg |200357.5+395917 |SRA | 13.1 | 15.5 | |p |37540. | | 620. | |M6 |01155 02333| +310424 |V0424 Cyg |200556.6+403635 |LB | 15.2 | 16.0 | |p | | | | |M6 |01155 02333| +310425 |V0425 Cyg *|200804.6+360726 |GCAS: | 10.05 | 10.24 | |V | | | | |Bpe |09122 02333| +310426 |V0426 Cyg |200748.8+413949 |LB | 14.4 | 16.4 | |p | | | | |M7 |05352 02333| +310427 |V0427 Cyg *|200803.5+373643 |SRB | 10.9 | 13.8 | |p |37170. | | 59.07 | |M3 |05352 02333| +310428 |V0428 Cyg |201056.9+363447 |LB | 13.4 | 14.19 | |B | | | | |M6ea: |01155 02334| +310429 |V0429 Cyg *|201106.2+360649 |SRA | 13. : | 16.8 | |p |34194. | | 163.9 | |C5,4(R) |00001 02334| +310430 |V0430 Cyg *|201126.2+354228 |SRB | 12.4 | 14.6 | |p | | | | |M4 |07341 07341| +310431 |V0431 Cyg |201312.2+412726 |LB | 13.8 | 15.3 | |p | | | | |M6.5 |01155 02334| +310432 |V0432 Cyg *|201529.4+370112 |LB | 13.0 | 15.8 | |p | | | | |C4,5(R) |06566 06566| +310433 |V0433 Cyg |201539.9+382545 |M | 15.1 |< 18.5 | |p |41045. | | 417. | |M6.5 |01155 02334| +310434 |V0434 Cyg |201619.1+375544 |M | 14.3 | 18.5 | |p |37505. | | 278. | |M0:-M9 |01155 02334| +310435 |V0435 Cyg |201627.0+384540 |EA/SD | 12.7 | 15.0 | |p |25862.513 | | 6.771923 |10 *| |05352 02334| +310436 |V0436 Cyg |201708.6+365313 |SRA | 11.0 | 12.2 | |V |37243. | | 316.26 | |C3,5(R) |00001 06566| +310437 |V0437 Cyg |201715.0+414701 |INS: | 15.4 | 17.1 | |p | | | | | |05352 02334| +310438 |V0438 Cyg |201854.3+400352 |DCEP | 12.0 | 13.5 | |p |25435.71 | | 11.211058 |40 | |01282 01282| +310439 |V0439 Cyg *|202133.6+372452 |GCAS: | 12.7 | 13.38 | |B | | | 260. | |B0pe |05352 02334| +310440 |V0440 Cyg |202523.3+405218 |LB | 12.3 | 13.9 | |p | | | | |M3 |01155 02334| +310441 |V0441 Cyg *|202708.1+363307 |SRA | 10.0 | 12.5 | |p |25708. | | 375. | |M4(S4,6) |01155 00523| +310442 |V0442 Cyg *|202752.3+304728 |EA | 10.0 | 10.4 | 10.4 : |p |28745.249 | | 2.3859476 |10 |F4+F5: |00525 00021| +310443 |V0443 Cyg *|202745.6+384124 |EA | 12.3 | 13.0 | |p |27298.509 | | 0.8311017 |13 | |02400 02400| +310444 |V0444 Cyg *|201932.4+384354 |EA/WR | 7.92 | 8.22 | 8.06 |V |41164.332 | | 4.212424 |20 *|O6+WN5.5 |07149 01283| +310445 |V0445 Cyg *|202819.0+381743 |EA/SD | 11.7 | 15.5 | |p |40147.414 | | 1.947738 |09 | |00001 02334| +310446 |V0446 Cyg |204234.7+384209 |SRA | 13.0 | 14.0 | |p |25471. | | 165. | |M6 |01155 02334| +310447 |V0447 Cyg *|200553.2+355211 |EA/SD: | 13.1 | 14.5 | |p |29250.222 | | 2.205587 |18 |A3+F5 |00782 02333| +310448 |V0448 Cyg *|200609.9+352310 |EB/SD | 7.90 | 8.72 | 8.40 |V |16361.107 | | 6.5197162 | |O9.5e+B1Ib-II |08916 08953| +310449 |V0449 Cyg |195321.0+335701 |LB | 7.4 | 9.07 | |B | | | | |M1-M4 |03662 03662| +310450 |V0450 Cyg *|205847.6+355630 |NB | 7.0 |< 17. | |p |30510. :|1942 | | |pec(NOVA) | 00338| +310451 |V0451 Cyg |194746.4+344207 |SRA | 11.3 | 12.0 | |p |28735. | | 50.6 |38 |M4 |00600 00319| +310452 |V0452 Cyg |200303.4+410826 |M | 12.8 | 17.6 | |p |37093. | | 363. |50 |M7e |03148 05542| +310453 |V0453 Cyg *|200635.0+354426 |EA/D | 8.29 | 8.72 | 8.68 |V |39340.0988 | | 3.8898128 |15 |B0.5IV:+B1V: |06174 07151| +310454 |V0454 Cyg *|201556.8+373031 |EB/SD | 11.8 | 13.2 | 12.3 |p |28725.469 | | 2.3168937 | |B5 |05352 00342| +310455 |V0455 Cyg *|202620.9+394010 |EB/DM | 10.4 | 11.0 | 10.9 |p |37112.51 | | 8.76573 | |B2(p:e:) |00001 09124| +310456 |V0456 Cyg *|202850.9+390914 |EA/SD: | 10.8 | 11.9 | 11.4 |p |44911.353 | | 0.89119220 |08 *|A2 |00385 00385| +310457 |V0457 Cyg *|203800.7+302513 |RV | 13.3 | 14.9 | 13.9 |p |33569. | | 79.08 |15 |G0 |01281 01281| +310458 |V0458 Cyg *|210807.3+453930 |EA/SD: | 14.1 | 15.3 | 14.2 |p |27951.488 | | 3.533735 |18 *| |02700 01287| +310459 |V0459 Cyg |211054.4+490831 |DCEP | 10.27 | 10.99 | |V |36808.656 | | 7.25125 |29 |F8 |03157 01141| +310460 |V0460 Cyg |214201.1+353037 |SRB | 5.57 | 7.0 | |V | | | 180. : | |C6,4(N1) |09125 08953| +310461 |V0461 Cyg *|193247.1+430703 |SR | 12.2 | 13.8 | |p |27960. | | 199. | | |00157 00346| +310462 |V0462 Cyg *|194003.3+435356 |M | 12.0 | 16.4 | |p |39650. | | 366.68 | |M7e |00001 00534| +310463 |V0463 Cyg *|194213.9+311803 |EA/DM | 10.55 | 11.15 | 10.65 |V |44081.508 | | 2.117562 |20 *|A0V |00001 01290| +310464 |V0464 Cyg |194658.0+463033 |M | 13.0 |< 15.3 | |p |28090. | | 351.4 | | |00346 00346| +310465 |V0465 Cyg *|195237.9+363352 |NB | 7.3 : |< 17.9 : | |p |32704. |1948 | | |pec(NOVA) |06503 06503| +310466 |V0466 Cyg *|195433.5+330005 |EA | 10.8 | 11.7 | 11.4 |p |28774.389 | | 1.39156629 |12 *|F4 |04244 01292| +310467 |V0467 Cyg |195537.5+323000 |SR | 14.2 |< 16. | |p | | | | |C(N) |04988 04988| +310468 |V0468 Cyg |195538.1+324534 |M | 12.6 |< 16.8 | |p |35343. | | 485.8 | |M7 |04427 04427| +310469 |V0469 Cyg *|201448.9+344422 |EA/SD | 12.8 | 13.9 | 12.9 |p |28814.396 | | 1.312516 |20 *| |00798 00980| +310470 |V0470 Cyg *|201921.7+405317 |ELL/DM | 8.53 | 8.55 | 8.545 |V |42283.860 | | 1.873142 | |B2+B2 |08917 BD | +310471 |V0471 Cyg *|210707.8+383405 |LB | 11.8 | 13.0 | |p | | | | |S7,5 |01294 06286| +310472 |V0472 Cyg |211318.3+320327 |M | 13.0 |< 14.5 | |p |26691. | | 297. | | |00797 06286| +310473 |V0473 Cyg *|212444.3+380558 |M | 12.6 | 17.4 | |p |43165. | | 260.0 |50 |M3-M7e |08918 08918| +310474 |V0474 Cyg *|191401.6+490542 |EA/DS | 11.3 | 12.7 | |p |26631.148 | | 23.65881 |08 |F8 |03115 00534| +310475 |V0475 Cyg |191901.8+435927 |LB | 11.9 | 12.6 | |p | | | | |M5III |00349 01089| +310476 |V0476 Cyg |195824.5+533707 |NA | 2.0 | 17.09 | |V |22561. |1920 | | |pec(NOVA) | 00566| +310477 |V0477 Cyg *|200527.7+315818 |EA/DM | 8.50 | 9.34 | 8.69 |V |44189.2639 | | 2.3469906 |07 |A3V+F5V |00001 01296| +310478 |V0478 Cyg *|201938.8+382009 |EA/DM | 8.63 | 9.04 | 9.02 |V |41602.724 | | 2.8808994 |16 *|O9.5Vp+B0V |08920 BD | +310479 |V0479 Cyg |211554.9+381130 |M | 11.0 | 15.4 | |p |39060. | | 388. | |M6 |00001 USNO | +310480 |V0480 Cyg |195226.9+343641 |SRB | 10.5 | 11.1 | |p | | | 29. : | |M0-M4 |00782 01298| +310481 |V0481 Cyg |195536.1+305349 |EA | 14.5 | 15.4 | |p |30260.70 | | 13.32437 | | |00001 00542| +310482 |V0482 Cyg *|195942.6+335928 |RCB | 11.8 |< 15.5 | |p | | | | | |03662 01299| +310483 |V0483 Cyg *|200045.9+315003 |EB/DM | 11.6 | 12.3 | 11.9 |p |28098.406 | | 2.6042757 | |B8 |04244 04244| +310484 |V0484 Cyg *|200041.8+351423 |EA/SD | 13.5 | 14.5 | 13.6 |p |28097.376 | | 1.293825 |24 | |00782 00148| +310485 |V0485 Cyg |200115.1+335542 |LB | 8.9 | 9.8 | |p | | | | |M5III |03662 03662| +310486 |V0486 Cyg *|200503.4+344249 |EA/SD | 14.2 | 16.0 | 14.3 |p |28098.422 | | 7.706555 |20 | |00798 02371| +310487 |V0487 Cyg |200628.4+332003 |SRB | 11.5 | 12.5 | |p | | | 122. | |M5 |00782 | +310488 |V0488 Cyg *|200939.3+302314 |EB/DW | 12.7 | 13.3 | 13.0 |p |29195.411 | | 0.560513 | |G0: |00782 UCAC2| +310489 |V0489 Cyg |200952.4+302104 |LB | 11.8 | 13.1 | |p | | | | |M6.5 |00798 02355| +310490 |V0490 Cyg *|200957.0+312212 |EB | 13.1 | 13.7 | 13.5 |p |28097.381 | | 1.140252 | |F8 |00782 UCAC2| +310491 |V0491 Cyg *|201038.3+353511 |EA | 14.5 | 15.3 | 14.7 |p |29170.471 | | 3.42590 |20 | |00782 02333| +310492 |V0492 Cyg |201113.6+352449 |DCEP | 13.6 | 14.4 | |p |28096.364 | | 7.58017 |31 | |00782 00148| +310493 |V0493 Cyg *|201325.8+325527 |EA/KE: | 12.8 | 13.3 | 12.9 |p |29223.319 | | 1.275083 |23 | |00798 02355| +310494 |V0494 Cyg *|201356.3+341650 |EB | 13.5 | 14.2 | 13.6 |p |28775.425 | | 1.794321 | | |00782 02355| +310495 |V0495 Cyg |201558.3+350053 |DCEP | 12.2 | 12.7 | |p |28419.278 | | 6.72379 |17 | |00782 00601| +310496 |V0496 Cyg *|201940.4+354711 |EA/KE: | 12.1 | 12.5 | 12.5 |p |28805.607 | | 1.474915 |20 | |01002 00601| +310497 |V0497 Cyg |201908.2+465334 |M | 12.8 |< 15.5 | |p |33802. | | 230.2 | |M8 |01004 00158| +310498 |V0498 Cyg *|202310.8+390944 |EA/DM | 9.98 | 10.75 | 10.27 |V |42633.406 | | 3.4848355 |20 *|B1:III: |00001 01300| +310499 |V0499 Cyg |202402.5+330834 |EA | 13.1 | 13.4 | |p |28774.409 | | 0.7507753 |16 | |00782 00601| +310500 |V0500 Cyg *|202440.4+345705 |EA/SD | 11.9 | 13.4 | 12.0 |p |28860.222 | | 0.9242137 |16 *| |03115 | +310501 |V0501 Cyg *|202606.1+340641 |EA | 12.7 | 13.5 | 13.1 |p |28109.286 | | 2.806273 |20 | |00782 00601| +310502 |V0502 Cyg *|202628.8+424145 |EW | 13.6 | 14.5 | 14.2 |p |38299.309 | | 0.566958 | | |07947 07947| +310503 |V0503 Cyg |202717.5+434125 |UGSS | 13.4 | 17.0 | |p | | |( 28. ) | | |05386 03845| +310504 |V0504 Cyg |202809.5+325429 |EB | 14.0 | 14.5 | |p |28097.384 | | | | |00782 00599| +310505 |V0505 Cyg *|202928.9+324750 |EB | 11.7 | 12.4 | 12.0 |p |28099.426 | | 0.6676720 | |F0 |00798 02355| +310506 |V0506 Cyg |203037.8+445535 |M | 13.6 |< 17.4 | |p |33862. | | 410.9 | |M7 |01004 00492| +310507 |V0507 Cyg |203104.5+472200 |IS: | 14.6 | 16.7 | |p | | | | | |00612 02372| +310508 |V0508 Cyg |203406.0+465217 |RRC | 13.3 | 13.8 | |p |28041.40 | | 0.389766 |50 | |00612 02285| +310509 |V0509 Cyg *|203738.5+471308 |EA | 13.1 | 13.7 | |p |26214.44 | | 1.609146 |15 | |00612 00492| +310510 |V0510 Cyg |204309.6+485846 |EA | 14.4 | 14.9 | |p |29103.46 | | 3.77877 | | |00612 02372| +310511 |V0511 Cyg |204318.0+454518 |EA/SD | 14.7 | 16.9 | |p |28460.30 | | 4.01557 |09 : | |00612 02372| +310512 |V0512 Cyg *|204443.7+493551 |EA/SD: | 11.4 | 12.4 | 11.5 |p |34730.397 | | 2.424630 |13 *|A0 |05689 02372| +310513 |V0513 Cyg *|204556.8+403823 |EA/KE: | 12.5 | 13.0 | 12.6 |p |28245.58 | | 1.056196 |19 *| |00612 02343| +310514 |V0514 Cyg |204612.6+452843 |DCEP | 12.4 | 13.2 | |p |36445.69 | | 5.09891 |24 |K3 |00001 02285| +310515 |V0515 Cyg |204649.2+463456 |SRB | 13.2 | 15.1 | |p |28098. | | 187.6 | |M6 |00612 02285| +310516 |V0516 Cyg |204709.8+415527 |UGSS | 13.8 | 16.8 | |p | | |( 30. ) | | |08507 02372| +310517 |V0517 Cyg |204723.6+434440 |INSA | 12.5 | 15.3 | |p | | | | |A5ea |07754 07115| +310518 |V0518 Cyg |205051.3+482738 |EA | 14.5 | 16.0 | |p |27959.50 | | 3.90742 |10 | |00612 USNO | +310519 |V0519 Cyg *|205151.5+463227 |EA/DM | 13.0 | 13.7 | 13.4 |p |29102.56 | | 2.345099 |06 |A5 |03883 02373| +310520 |V0520 Cyg *|205457.5+473202 |DCEP | 10.53 | 11.11 | |V |43670.714 | | 4.049068 |23 |G0 |00001 08637| +310521 |V0521 Cyg |205823.8+435311 |INSB | 14.3 | 16.6 | |p | | | | |K0:ea-K5e |00612 02373| +310522 |V0522 Cyg |205905.9+480537 |INS | 13.5 | 16.2 | |p | | | | | |00612 02343| +310523 |V0523 Cyg |210205.0+351848 |M | 11.4 | 17.0 | |p |33229. | | 373.4 |39 |M7e |01302 01302| +310524 |V0524 Cyg |210423.9+451353 |SR | 13.6 | 15.3 | |p |28550. | | 670. |31 : | |00612 02285| +310525 |V0525 Cyg *|210720.2+430717 |EA/SD | 13.3 | 15.6 | |p |44912.508 | | 2.403320 |12 | |00001 02285| +310526 |V0526 Cyg *|211017.5+455610 |EA/SD: | 13.0 | 13.8 | 13.1 |p |33762.414 | | 1.2334603 |18 *| |02700 02700| +310527 |V0527 Cyg |211047.4+451414 |LB | 13.3 | 14.9 | |p | | | | |M7 |00612 02344| +310528 |V0528 Cyg |211136.8+415140 |M | 14.5 |< 16.7 | |p |28200. | | 335. | |ea: |00612 02373| +310529 |V0529 Cyg |211259.5+400838 |SRA | 15.2 | 17.5 | |p |42578. | | 326.8 |40 | |08924 08924| +310530 |V0530 Cyg |211209.6+473802 |INSA: | 11.9 | 12.6 | |p | | | | |B5: |00612 02373| +310531 |V0531 Cyg |211830.9+410759 |M | 13.9 |< 16.5 | |p |28045. | | 257. | | |00612 02344| +310532 |V0532 Cyg *|212032.9+452803 |DCEPS | 8.85 | 9.30 | |V |41706.559 | | 3.283612 |44 |F5 |08300 02344| +310533 |V0533 Cyg |212103.3+403826 |RV: | 13.6 | 14.1 | |p |27961. | | 62.97 | | |00612 02285| +310534 |V0534 Cyg |212108.4+441505 |EA/SD | 13.7 | 16.7 | |p |27960.45 | | 1.1326135 |18 *| |05348 02344| +310535 |V0535 Cyg |212123.2+421414 |EA | 14.8 | 16.2 | |p |27964.46 | | 3.33480 |13 : | |00612 02344| +310536 |V0536 Cyg *|213258.2+495356 |EA/SD | 11.9 | 14.2 | |p |37576.374 | | 6.01020 |10 | |09126 03842| +310537 |V0537 Cyg |213401.2+495600 |EA/SD | 11.9 | 12.8 | |p |28408.494 | | 4.75842 |06 |A |03843 03842| +310538 |V0538 Cyg *|213728.1+514545 |DCEP | 10.20 | 10.73 | |V |42772.924 | | 6.118961 |33 | |08632 01304| +310539 |V0539 Cyg *|213932.7+451100 |SRB | 10.1 | 11.9 | |p | | | 160. | |M6 |01142 03158| +310540 |V0540 Cyg |191838.4+482731 |M | 12.4 |< 14.8 | |p |43250. | | 361. | |M5e |08729 00534| +310541 |V0541 Cyg *|194229.4+311940 |EA/DM | 10.2 | 10.9 | 10.9 |p |43348.443 | | 15.33779 |02 *|A0 |00001 01305| +310542 |V0542 Cyg |194910.5+583159 |UGSS | 13.0 | 18.3 : | |p | | |( 207. ) | | |00164 03845| +310543 |V0543 Cyg |195306.3+322030 |SR | 16.5 | 17.5 | |p |29200. | | 211. : | | |04988 04988| +310544 |V0544 Cyg *|195322.6+563730 |M | 12.4 |< 17.5 | |p |34485. | | 273.3 | | |00164 00492| +310545 |V0545 Cyg |195532.2+323351 |SR | 16.6 |< 17.2 | |p |29229. | | 410. : | | |04988 04988| +310546 |V0546 Cyg *|195613.9+342337 |EA | 15.1 | 16.3 | 15.2 : |p |25450.240 | | 59.547288 |09 |K-M |01306 01306| +310547 |V0547 Cyg *|195746.1+353810 |DCEP | 12.88 | 13.84 | |V |38046.133 | | 6.22541 |31 | |01306 01306| +310548 |V0548 Cyg *|195658.3+544758 |EA/SD: | 8.54 | 9.29 | 8.62 |V |44456.4958 | | 1.805233 |20 *|A1V+F7 |00001 02354| +310549 |V0549 Cyg |200250.2+565122 |M | 12.3 |< 17.5 | |p |31750. | | 325.5 | | |00164 02354| +310550 |V0550 Cyg |200504.9+322124 |UGSS | 14.2 |< 17.0 | |p | | | | | |00798 02355| +310551 |V0551 Cyg |200606.9+301856 |M | 13.2 | 16.6 | |p |29519. | | 367. | |M4-M7 |00798 02371| +310552 |V0552 Cyg |200600.9+330908 |EA | 14.9 | 15.9 | |p |30546.502 | | 4.74901 |18 *| |00798 02355| +310553 |V0553 Cyg |200623.0+342553 |M | 13.6 | 19. | |p |30136. | | 382. | | |00798 02371| +310554 |V0554 Cyg |200721.2+401041 |DCEP | 14.6 | 15.7 | |p |24838.350 | | 4.3278146 |27 | |01306 01306| +310555 |V0555 Cyg |200720.7+565853 |LB | 12.1 | 13.3 | |p | | | | |M5 |00164 01217| +310556 |V0556 Cyg |200912.8+580256 |M | 15.0 |< 17.5 | |p |30984. | | 258.6 | | |00164 01217| +310557 |V0557 Cyg |201258.0+321456 |M | 12.8 |< 18. | |p |29369. | | 382. | |M7-M9 |00798 02355| +310558 |V0558 Cyg |201156.2+542909 |M | 11.2 |< 17.5 | |p |44197. | | 344.65 | | |00001 02354| +310559 |V0559 Cyg |201554.0+515135 |M: | 16.2 |< 17.6 | |p |31205. | | | | |00164 02370| +310560 |V0560 Cyg |201904.8+594323 |M | 13.5 |< 17.5 | |p |30991. | | 166. | | |00164 02370| +310561 |V0561 Cyg |202558.2+520841 |ISB | 11.8 | 14.5 | |p | | | | |G-K |00164 02354| +310562 |V0562 Cyg |202737.1+353317 |M | 14.0 |< 16.4 | |p |30199. | | 363. | |M6-M9 |00798 02371| +310563 |V0563 Cyg *|202854.1+523259 |M | 12.9 |< 17.5 | |p |30253. | | 278.9 | | |00164 00492| +310564 |V0564 Cyg |203121.5+545253 |M | 15.0 |< 17.5 | |p |28056. | | 264.4 | | |00164 01217| +310565 |V0565 Cyg |203312.4+294836 |M | 15.3 | 18.5 | |p |29494. | | 371. | | |00798 02371| +310566 |V0566 Cyg |203513.9+555851 |M | 14.5 |< 17.5 | |p |31019. | | 226.3 | | |00164 02354| +310567 |V0567 Cyg *|203813.1+302842 |EA | 13.4 | 14.2 : | |p |32673.35 | | 15.981 |07 : | |01281 01281| +310568 |V0568 Cyg |204222.3+352722 |GCAS | 6.40 | 6.68 | |V | | | | |B2IV-VeV | 09128| +310569 |V0569 Cyg |204332.4+320723 |SR | 13.4 | 14.6 | |p |27307. | | | |C5,4(N3) |01308 00294| +310570 |V0570 Cyg |204431.5+322933 |M | 13.9 |< 17.0 | |p |30585. | | 500. : | |M5-7 |00798 02372| +310571 |V0571 Cyg |204443.8+300215 |M | 14.1 |< 16.1 | |p |30260. | | 350. : | | |00798 02372| +310572 |V0572 Cyg |210900.7+411202 |M | 14.8 |< 17.5 | |p |28123. | | 322. | | |01262 02373| +310573 |V0573 Cyg |210845.0+472409 |SRA | 12.9 | 14.7 | |V |42045. | | 538.0 | |C(R) |03814 03814| +310574 |V0574 Cyg |210854.3+465841 |L | 13.2 | 13.8 | |p | | | | | |01262 02337| +310575 |V0575 Cyg |210919.2+461027 |SRB | 13.8 | 15.8 | |p |28055. | | 144. | |S |01262 02337| +310576 |V0576 Cyg |210938.8+421740 |IS: | 12.7 | 14.2 | |p | | | | | |01262 02373| +310577 |V0577 Cyg |211000.0+464420 |SRA | 10.3 | 11.0 | |V |42027. | | 479.0 | |C7,4e(N) |00001 03814| +310578 |V0578 Cyg |211008.4+485134 |CST: | 13.0 | | |p | | | | | |07079 02285| +310579 |V0579 Cyg |211048.4+441046 |LB | 11.4 | 13.02 | |B | | | | |M6ea |01262 02373| +310580 |V0580 Cyg |211049.4+444959 |M | 14.0 |< 18. | |p |28418. | | 523. | | |01262 02337| +310581 |V0581 Cyg *|211112.1+443234 |SR | 12.7 | 13.97 | |B |27972. | | 95.8 | |ea |01262 02285| +310582 |V0582 Cyg |211151.4+463418 |LB | 11.8 | 12.4 | |p | | | | |M4 |01262 02344| +310583 |V0583 Cyg |211235.7+480357 |EA | 14.6 | 15.9 | |p |31030.418 | | | | |01262 02373| +310584 |V0584 Cyg |211340.6+440209 |M | 14.9 |< 16.5 | |p |28225. | | 331. | | |01262 02373| +310585 |V0585 Cyg |211337.9+470134 |L | 14.9 | 16.1 | |p | | | | | |01262 02337| +310586 |V0586 Cyg *|211404.7+453110 |EA/SD | 13.3 | 15.2 | |p |28487.375 | | 4.83716 |10 *| |01262 02285| +310587 |V0587 Cyg |211520.0+432943 |EA/SD | 14.3 | 16.2 | |p |28069.274 | | 1.95561 |09 *| |01262 02285| +310588 |V0588 Cyg *|211554.3+481726 |SRA | 14.3 | 16.0 | |p |28076. | | 366. | | |01262 02285| +310589 |V0589 Cyg *|211657.3+480740 |M | 13.2 |< 18. | |p |28090. | | 259. | | |01262 02337| +310590 |V0590 Cyg |211721.3+454229 |LB | 11.8 | 12.2 | |p | | | | |M6 |01262 02337| +310591 |V0591 Cyg |211724.7+461123 |LB | 11.0 | 12.10 | |B | | | | |M2 |01262 02373| +310592 |V0592 Cyg |211742.4+460349 |SRA | 13.2 | 14.5 | |p |28047. | | 342. | |M7 |01262 02337| +310593 |V0593 Cyg |211909.9+423818 |M | 13.9 | 17. : | |p |28468. | | 286. | | |01262 02373| +310594 |V0594 Cyg |212023.4+431811 |LB | 13.6 | 15.0 | |p | | | | |M6 |01262 02286| +310595 |V0595 Cyg |212120.4+445018 |LB | 13.2 | 14.0 | |p | | | | |M5 |01262 02286| +310596 |V0596 Cyg |212137.6+414054 |M | 12.8 |< 16.7 | |p |42702. | | 130.72 | | |08936 08936| +310597 |V0597 Cyg |212201.5+425051 |M | 13.3 |< 18. | |p |27954. | | 414. | |M6.5:ea |01262 02286| +310598 |V0598 Cyg |212246.6+305852 |M | 12.0 |< 15. | |p |18503. | | 298.3 | | |00797 06286| +310599 |V0599 Cyg |212208.6+433221 |M | 13.6 | 18. : | |p |37550. | | 218.0 | | |05348 02286| +310600 |V0600 Cyg |212256.4+452941 |M | 13.2 |< 17.0 | |p |28045. | | 215.8 | |M6 |05348 02337| +310601 |V0601 Cyg |212321.4+461401 |M | 14.0 |< 17.1 | |p |37946. | | 215.0 | | |01262 02337| +310602 |V0602 Cyg |212336.0+413312 |L: | 11.6 | 12.2 | |p | | | | |G7 |01262 02344| +310603 |V0603 Cyg |212344.7+422912 |M | 13.5 |< 18. | |p |28052. | | 359. | |M4 |01262 02286| +310604 |V0604 Cyg |212349.6+424805 |SRA | 12.6 | 14.9 | |p |28310. | | 262. | |ea |01262 02286| +310605 |V0605 Cyg |212544.8+474245 |EA | 13.7 | 15.2 | |p |37853.564 | | 1. /N| | |05348 02373| +310606 |V0606 Cyg *|212624.5+472013 |SR | 13.4 | 16.0 | |p | | | 85. : | |M5 |05348 02344| +310607 |V0607 Cyg |212652.2+413903 |M | 13.3 |< 16.3 | |p |33510. | | 130.5 | | |01159 01159| +310608 |V0608 Cyg |212648.6+481834 |EA/SD | 15.0 | 16.9 | |p |29216.267 | | 2.50233 |13 *| |05348 02286| +310609 |V0609 Cyg |212656.0+542929 |DCEP | 12.2 | 13.6 | |p |32778.0 | | 31.072 |30 | |00170 00170| +310610 |V0610 Cyg |212907.3+404011 |EA | 13.0 | 13.8 | |p |29078.487 | | 1.497998 | | |01262 02373| +310611 |V0611 Cyg |212922.2+415617 |SRB | 11.8 | 13.2 | |p | | | 55. | | |01309 01309| +310612 |V0612 Cyg *|212919.5+455656 |SRB | 13.5 | 14.8 | |p |37228. | | 132. | |M6.5 |05348 02337| +310613 |V0613 Cyg |212931.7+425657 |SRB | 13.0 | 14.1 | |p | | | 62. | | |05348 02337| +310614 |V0614 Cyg *|213040.3+405623 |EA/SD: | 14.3 | 15.8 | 14.5 |p |28428.344 | | 7.2513 |09 *| |01262 02337| +310615 |V0615 Cyg |213026.1+500920 |M | 13.8 |< 16.0 | |p |31098. | | 371.22 | |M6 |00001 02373| +310616 |V0616 Cyg |213033.9+500733 |EA/SD | 13.0 | 15.0 | |p |29135.346 | | 1.326655 |20 *| |01262 02373| +310617 |V0617 Cyg |213129.1+442633 |LB | 13.6 | 14.4 | |p | | | | |M5 |01262 02286| +310618 |V0618 Cyg *|213119.1+485923 |EA | 13.7 | 15.1 | |p |28038.435 | | 3.09235 |09 *| |01262 02337| +310619 |V0619 Cyg |213128.5+462502 |LB | 14.7 | 16.2 | |p | | | | |M6.5 |01262 02286| +310620 |V0620 Cyg |213308.2+354618 |EA/SD | 11.5 |< 13. | |p |15290.27 | | 6.267268 | |A1 |02689 02379| +310621 |V0621 Cyg |213240.4+491245 |DCEP | 12.3 | 14.0 | |p |28038.67 | | 5.86400 |32 | |03847 01310| +310622 |V0622 Cyg *|213240.1+484219 |LB | 14.3 | 15.5 | |p | | | | |M5 |01262 02286| +310623 |V0623 Cyg |213306.4+454336 |LB | 13.9 | 15.5 | |p | | | | |M6.5 |01262 02344| +310624 |V0624 Cyg |213314.5+435512 |SRB | 14.5 | 16.2 | |B |41575. | | 275. |50 |C5,5(N) |03814 02344| +310625 |V0625 Cyg |213452.2+464542 |M | 14.7 |< 18. | |p |38223. | | 337.8 | | |05348 02337| +310626 |V0626 Cyg |213403.9+452118 |LB | 13.6 | 15.6 | |p | | | | |M6 |01262 02344| +310627 |V0627 Cyg |213408.8+445934 |SRA | 13.9 | 16.8 | |p |37933. | | 184.0 | |M5 |00001 02286| +310628 |V0628 Cyg *|213404.0+471422 |EW | 12.2 | 12.7 | 12.5 |p |27955.138 | | 0.651652 | | |05348 02373| +310629 |V0629 Cyg |213415.2+440758 |LB | 13.0 | 14.0 | |p | | | | |M6 |01262 02344| +310630 |V0630 Cyg |213459.2+404019 |UGSU | 13.4 | 17.2 | |p |37927. | |( 35. :) | | |05386 02373| +310631 |V0631 Cyg |213508.5+435141 |L | 14.3 | 15.5 | |p | | | | | |01262 02373| +310632 |V0632 Cyg |213604.2+402619 |UGSS | 12.6 | 17.5 | |p | | | | | |01262 02544| +310633 |V0633 Cyg |213626.9+472302 |LB | 13.2 | 15.0 | |p | | | | |S |01262 02286| +310634 |V0634 Cyg |213750.4+452414 |LB | 13.7 | 14.9 | |p | | | | |M4 |05348 02286| +310635 |V0635 Cyg *|213751.4+482413 |EA/SD | 13.3 | 14.4 | 13.5 |p |39744.087 | | 0.76036022 |15 *| |08939 08939| +310636 |V0636 Cyg |213814.9+420302 |L | 13.1 | 14.5 | |p | | | | | |01262 02286| +310637 |V0637 Cyg |213757.9+480806 |M | 13.4 | 17.2 | |p |28015. | | 387. | |C |01262 02338| +310638 |V0638 Cyg |213857.7+422058 |L | 13.6 | 15.3 | |p | | | | | |01262 02286| +310639 |V0639 Cyg |213857.7+423537 |LB | 13.4 | 13.9 | |p | | | | | |01262 02338| +310640 |V0640 Cyg |213916.8+411332 |SR | 14.2 | 15.3 | |p |27973. | | 222. | | |01262 02338| +310641 |V0641 Cyg |213910.0+464332 |CEP | 14.4 | 15.9 | |p |41179.247 | | 3.53086 |36 | |08939 08939| +310642 |V0642 Cyg |213902.8+545802 |EA/SD | 12.9 |< 14.4 | |p |28786.328 | | 4.446467 |05 | |00170 00170| +310643 |V0643 Cyg *|213939.2+482629 |SRB | 14.0 | 16.0 | |p |27952. | | 244. | |M6 |01262 02286| +310644 |V0644 Cyg *|214012.8+452717 |SRB | 13.0 | 14.2 | |V |41805. | | 575. | |C(N) |03814 03814| +310645 |V0645 Cyg *|213957.9+501422 |INA | 13.6 | 17.0 | |p | | | | |eq |08943 08942| +310646 |V0646 Cyg |214020.9+441600 |M | 13.6 | 17.0 | |p |37120. | | 310.4 | | |05348 02286| +310647 |V0647 Cyg |214102.6+414900 |LB | 14.5 | 15.1 | |p | | | | | |01262 02286| +310648 |V0648 Cyg |214103.8+452408 |L | 14.3 | 15.3 | |p | | | | | |01262 02286| +310649 |V0649 Cyg |214058.7+460427 |LB | 13.1 | 13.7 | |p | | | | |M6 |01262 02286| +310650 |V0650 Cyg |214203.4+445744 |M | 13.3 | 16.9 | |p |37135. | | 340.2 | | |05348 02286| +310651 |V0651 Cyg *|214205.9+470656 |EA/SD | 14.4 | 15.7 | 14.7 |p |27960.471 | | 1.024869 |10 *| |05348 02286| +310652 |V0652 Cyg *|214250.1+415931 |EA/SD | 12.0 | 13.7 | 12.1 |p |28038.483 | | 3.764549 |10 *| |03843 01311| +310653 |V0653 Cyg |214328.4+461521 |SRA | 14.1 | 15.3 | |p |38263. | | 312. | |M6.5 |01262 02286| +310654 |V0654 Cyg |214355.9+444643 |L | 14.2 | 15.2 | |p | | | | | |05348 02373| +310655 |V0655 Cyg |214352.7+480037 |SRA | 13.6 | 15.3 | |p |28065. | | 359. | |M7 |01262 02344| +310656 |V0656 Cyg |214503.8+475409 |SRA | 14.1 | 16.2 | |p |37935. | | 318.5 | |M6.5 |00001 02286| +310657 |V0657 Cyg |214658.4+444129 |EA/SD | 15.1 | 16.7 | |p |28422.401 | | 4.19314 |10 *| |05348 02286| +310658 |V0658 Cyg |214740.5+424343 |M | 12.8 | 16.5 | |p |32829. | | 323. | | |00131 00131| +310659 |V0659 Cyg |214744.1+455354 |SRA | 10.4 | 11.5 | |V |39350. | | 514. |64 |C |04972 04972| +310660 |V0660 Cyg |214811.4+410241 |EA | 14.3 | 15.3 | |p |29167.479 | | 5.47827 |09 *| |01262 02373| +310661 |V0661 Cyg |214810.6+412350 |EA | 13.9 | 15.2 | |p |27978.264 | | 4.32922 |11 *| |01262 02286| +310662 |V0662 Cyg |214810.3+453936 |M | 13.0 |< 17.0 | |p |37957. | | 421. | |M6: |05348 02338| +310663 |V0663 Cyg |214831.5+420532 |M | 12.2 |< 16.0 | |p |28868. | | 364. | | |01262 02373| +310664 |V0664 Cyg *|214833.7+405836 |EA/KE: | 13.1 | 13.6 | |p |28344.442 | | 1.242052 |15 *| |01262 02344| +310665 |V0665 Cyg |214916.0+430337 |M: | 15.0 |< 16.2 | |p |27940. | | 255. | | |01262 02338| +310666 |V0666 Cyg *|214925.9+432225 |M | 15.2 |< 17.2 | |B |42340. | | 254.0 | | |08944 08944| +310667 |V0667 Cyg |214924.8+493314 |M | 13.3 | 16.4 | |p |28440. | | 153.5 | | |01262 01159| +310668 |V0668 Cyg |214956.8+405632 |M | 13.2 |< 17.6 | |p |42675. | | 430.17 | |M2 |08945 02373| +310669 |V0669 Cyg |214959.4+450345 |L | 14.8 | 15.9 | |p | | | | | |01262 02373| +310670 |V0670 Cyg *|215019.4+424628 |M | 13.0 | 17.5 | |p |27993. | | 302. | | |01262 02373| +310671 |V0671 Cyg |215015.1+474802 |LB | 12.4 | 13.3 | |p | | | | |C6-,4(N) |01262 06566| +310672 |V0672 Cyg |215121.4+443950 |M | 13.4 | 19. | |p |27975. | | 308. | | |01262 02373| +310673 |V0673 Cyg |215137.8+430959 |M | 12.3 | 16.3 | |p |32816. | | 325.5 | | |00001 01312| +310674 |V0674 Cyg |215127.6+494452 |LB | 13.7 | 15.7 | |B | | | | |C |01262 06566| +310675 |V0675 Cyg |215157.9+484349 |EA/DM | 12.3 | 13.0 | |p |28052.267 | | 8.89254 |10 *| |01262 02374| +310676 |V0676 Cyg |215259.1+441819 |EA/SD | 14.1 | 15.6 | |p |27953.521 | | 1.55684 |13 *| |01262 02286| +310677 |V0677 Cyg |215317.7+440323 |LB | 13.5 | 14.4 | |p | | | | | |01262 02338| +310678 |V0678 Cyg |215316.8+464912 |EA | 14.7 | 15.6 | |p |27983.466 | | 2.29184 |09 *| |01262 02286| +310679 |V0679 Cyg |215337.5+450200 |EA | 14.3 | 14.9 | |p |28834.230 | | 2.96074 |17 *| |01262 02287| +310680 |V0680 Cyg *|215344.4+534813 |EB/KE | 10.0 | 10.8 | 10.3 |p |43820.346 | | 1.1991385 | |B9 |00001 03091| +310681 |V0681 Cyg |215525.2+482925 |EA | 14.3 | 15.1 | |p |25911.530 | | 3.40429 |10 *| |01262 02287| +310682 |V0682 Cyg |215623.6+483755 |LB | 12.9 | 13.6 | |p | | | | |M6 |01262 02287| +310683 |V0683 Cyg | | | | | | | | | | | | |=V0453 Lac +310684 |V0684 Cyg |215946.0+471604 |RRAB | 14.5 | 15.6 | |p |25243.341 | | 0.540964 |22 | |01262 02338| +310685 |V0685 Cyg *|215957.6+475404 |LB | 12.9 | 13.8 | |p | | | | |M6 |01262 02287| +310686 |V0686 Cyg |194701.1+354948 |M | 11.9 |< 14.8 | |p |36100. | | 320. | | |03122 01313| +310687 |V0687 Cyg *|192611.6+295912 |EA/SD: | 10.2 | 11.4 | 10.4 |p |44913.278 | | 1.7072309 |10 *|A1 |00001 04244| +310688 |V0688 Cyg *|194842.0+373614 |EA/SD: | 13.8 | 15.5 | |p |32344.1702 | | 6.303363 |08 |A |01314 01314| +310689 |V0689 Cyg |195106.6+365133 |EA/SD: | 14.0 | 16.5 | |p |32326.7436 | | 1.4552925 |14 *|A5V |01314 01314| +310690 |V0690 Cyg *|195116.5+365500 |EA | 15.7 | 16.9 | |p |32019.1584 | | 4.6649810 |10 | |01314 01314| +310691 |V0691 Cyg *|195718.5+400256 |EA/SD | 15.5 | 18.0 : | |p |32840.0534 | | 2.5587832 |20 | |01314 01314| +310692 |V0692 Cyg *|200629.4+394828 |EA/SD: | 14.8 | 16.4 | 14.9? |p |31971.151 | | 2.767716 |18 *| |00001 01314| +310693 |V0693 Cyg *|200746.0+394358 |EA | 14.3 | 15.5 | 14.4? |p |32647.7865 | | 1.1347738 |22 *| |01314 01314| +310694 |V0694 Cyg *|200936.8+402809 |EA | 14.7 | 16.1 | |p |32907.8550 | | 2.3618211 |15 | |01314 01314| +310695 |V0695 Cyg *|201337.9+464429 |EA/GS/D | 3.73 | 3.89 | |V |41470.0 | | 3784.3 |02 |K4Iab+B4IV-V |09130 BD | +310696 |V0696 Cyg *|195356.7+345730 |SRB | 10.7 | 11.0 | |V | | | 180. : | |K2 |00681 BD | +310697 |V0697 Cyg |194915.7+524706 |LB | 8.9 | 10.8 | |p | | | | |M2 |00164 02370| +310698 |V0698 Cyg |195953.4+361640 |EA | 12.2 | 14.9 | |p |34309.284 | | 97.7732 |05 *|B2 |02263 01281| +310699 |V0699 Cyg |201700.3+390820 |EA | 12.0 | 13.0 | |p |32708.664 | | 1.55152 |21 |B2 |01281 01281| +310700 |V0700 Cyg *|203105.3+384701 |EW/KW | 11.9 | 12.4 | 12.3 |B |44498.366 | | 0.3400461 | |F2 |00001 01281| +310701 |V0701 Cyg |211516.3+432703 |LB | 12.4 | 13.1 | |p | | | | |C |01262 02285| +310702 |V0702 Cyg |211549.9+540136 |SRA | 11.9 | 13.3 | |p |33382. | | 388. : | |M5 |00170 01315| +310703 |V0703 Cyg |212236.5+522615 |EA | 13.5 |< 14.9 | |p |33214.191 | | 8.293 /N| | |01316 01316| +310704 |V0704 Cyg *|212813.1+453739 |EW | 13.6 | 14.6 | 14.2 |p |37939.409 | | 0.570704 | | |05348 01317| +310705 |V0705 Cyg |213456.6+430129 |EA | 13.6 | 16.4 | |p |33484.613 | | 6.27408 |15 | |01316 01316| +310706 |V0706 Cyg *|213556.0+405048 |EB | 13.2 | 14.6 | 13.9 |p |40116.429 | | 0.46625592 | | |08944 01316| +310707 |V0707 Cyg |213719.0+495009 |SRA | 13.8 | 15.6 | |p |32992. | | 108.6 | |M4 |01316 01316| +310708 |V0708 Cyg |214335.3+454237 |L | 15.0 | 16.2 | |p | | | | | |01316 01316| +310709 |V0709 Cyg |214459.4+542255 |I | 12.9 | 14.2 | |p | | | | | |04317 01318| +310710 |V0710 Cyg |214605.3+481647 |E | 15.0 | 16.2 | |p |33487.486 | | | | |01316 01316| +310711 |V0711 Cyg |215117.4+480243 |EA/SD | 13.8 | 15.3 | |p |32802.447 | | 0.826757 |17 *| |01316 01316| +310712 |V0712 Cyg |220002.4+492315 |EA | 15.1 | 16.1 | |p |33545.462 | | | | |01316 01316| +310713 |V0713 Cyg *|220015.7+473154 |EA | 14.9 | 16.3 | 15.1 |p |33501.426 | | 2.5888 |12 *| |01316 01316| +310714 |V0714 Cyg |194148.6+375934 |CWB | 13.35 | 14.90 | |V |38219.180 | | 1.8873679 |25 | |01319 01319| +310715 |V0715 Cyg |194208.0+385446 |RRAB | 15.6 | 16.9 | |p |32879.3964 | | 0.47067298 |09 | |01319 01319| +310716 |V0716 Cyg |194237.3+382719 |RRAB | 15.3 | 16.4 | |p |32446.9781 | | 0.53167960 |11 | |01319 01319| +310717 |V0717 Cyg |200105.0+304952 |LC | 11.7 | 14.0 | |p | | | | |M2Iab |00798 03662| +310718 |V0718 Cyg |200305.2+302013 |SRB | 13.8 |< 16.2 | |p |27495. | | 264. | |M0-M5 |00798 03662| +310719 |V0719 Cyg |200338.5+302809 |LB | 14.5 | 16.6 | |p | | | | |M4e |00798 03662| +310720 |V0720 Cyg *|200406.0+295738 |SR | 11.9 | 14.1 | |p | | | 345. : | |M6 |03662 03662| +310721 |V0721 Cyg |200518.3+385706 |RRAB | 15.9 | 16.9 | |p |33033.0982 | | 0.44034629 |13 | |01319 01319| +310722 |V0722 Cyg |200602.0+304050 |LB | 13.7 | 14.5 | |p | | | | |M6 |00798 02355| +310723 |V0723 Cyg |200612.1+320847 |LB | 12.7 | 13.6 | |p | | | | |M6 |00798 02355| +310724 |V0724 Cyg |200736.1+335411 |ISA: | 13.9 | 16.0 | |p | | | | | |06282 02355| +310725 |V0725 Cyg |200805.7+304502 |EA/KE: | 13.3 | 13.8 | |p |29516.400 | | 1.46324 |16 | |00798 02371| +310726 |V0726 Cyg *|201300.8+403842 |EA/D: | 12.7 | 13.8 | 12.8 |p |33337.4894 | | 0.497971 |20 |F8 |05352 01319| +310727 |V0727 Cyg |202549.6+312606 |M | 14.1 | 17.2 | |p |29493. | | 341. | |M7 |00798 02371| +310728 |V0728 Cyg *|202640.1+584648 |EA/SD: | 10.6 | 12.7 | |p |44806.415 | | 2.0601468 |17 *|A0 |00001 01320| +310729 |V0729 Cyg *|203222.4+411819 |EB/D/GS | 9.05 | 9.37 | 9.29 |V |40413.796 | | 6.5977915 | |O7fIa+O8 |07162 03853| +310730 |V0730 Cyg |203533.4+342343 |M | 15.1 | 19. | |p |29850. | | 195. | | |00798 02355| +310731 |V0731 Cyg *|212036.3+451441 |SR: | 14.2 | 15.3 | |p | | | 170. : | | |01262 02373| +310732 |V0732 Cyg |212759.2+433521 |SRB | 14.7 | 16.4 | |p | | | 105. : | | |01262 02373| +310733 |V0733 Cyg |213403.5+531837 |LB | 13.9 | 15.2 | |p | | | | | |03165 01316| +310734 |V0734 Cyg |192446.7+442856 |M | 12.8 | 19.1 | |p |26590. | | 310. | |Se(M7-M8) |05917 00534| +310735 |V0735 Cyg *|194917.8+374802 |EA/SD | 15.9 | 16.8 |( 0.04 )|p |33052.2697 | | 0.8446701 |11 *| |01237 01237| +310736 |V0736 Cyg *|194951.9+380817 |EA | 16.4 | 16.8 | 16.5 |p |33212.553 | | 0.6538264 |16 *| |01237 01237| +310737 |V0737 Cyg *|195435.9+384509 |M: | 11.2 | 13.1 | |I |32535. | | | |M6.5 |01222 01321| +310738 |V0738 Cyg |195638.4+400536 |M | 12.5 | 17.3 | |p |38350. | | 413. |25 |M8 |05701 05701| +310739 |V0739 Cyg *|195823.8+371552 |SR: | 13.0 | 14.2 | |I | | | | |S(M) |01222 01321| +310740 |V0740 Cyg |195833.1+370315 |M | 16.0 |< 18. | |p |32965. | | 300. | |M5 |05353 05353| +310741 |V0741 Cyg *|200149.2+375519 |EA | 16.3 | 17.3 | |p |33364.9578 | | 4.6498147 |10 | |01237 01237| +310742 |V0742 Cyg *|200232.8+374635 |CWB | 15.9 | 16.7 | |p |34698.826 | | 0.93946 |25 | |01237 01237| +310743 |V0743 Cyg |200941.4+292400 |EA/DM | 12.4 | 12.7 | |p |31020.343 | | 2.04107 : | |A |00798 02355| +310744 |V0744 Cyg |202355.5+561452 |LB | 11.7 | 13.1 | |p | | | | |C4-5,3(N) |01320 01320| +310745 |V0745 Cyg |203143.7+505213 |EA/DM | 11.6 | 12.2 | |p |28451.284 | | 2.283184 |10 :*|A0 |01320 01320| +310746 |V0746 Cyg |203323.6+514555 |LB | 11.7 | 12.9 | |p | | | | |M3 |01320 01320| +310747 |V0747 Cyg *|203717.7+501939 |NL: | 11.7 | 12.5 | |p | | | | | |05702 01320| +310748 |V0748 Cyg |204146.0+504137 |EA/DS | 11.7 | 12.6 | |p |30145.545 | | 10.49018 |05 |A |02697 01320| +310749 |V0749 Cyg |204210.7+531903 |EA/SD | 13.0 |< 14.0 | |p |28430.341 | | 0.8854380 |19 | |01320 01320| +310750 |V0750 Cyg |204921.2+503151 |M | 12.0 | 17.78 | |B |41512. | | 432.8 | |M5ea |00001 01320| +310751 |V0751 Cyg *|205212.8+441926 |* | 13.8 | 16.3 | |p | | | | |pec(cont+e) | 02698| +310752 |V0752 Cyg *|205833.6+440336 |INS | 15.3 | 18.1 | |p | | | | |ea |07115 07115| +310753 |V0753 Cyg *|192247.1+481211 |EA | 11.2 | 11.7 | |p |33804.47 | | 0.476187 |30 |F8 |01140 02379| +310754 |V0754 Cyg |194249.7+515251 |L | 14.2 | 15.1 | |p | | | | | |00164 02370| +310755 |V0755 Cyg |194836.8+524736 |L | 13.0 | 14.4 | |p | | | | | |00164 02354| +310756 |V0756 Cyg |194839.4+531640 |L | 14.0 | 16.0 | |p | | | | | |00164 02354| +310757 |V0757 Cyg *|195712.7+531027 |IS: | 13.3 | 15.7 : | |p | | | | | |00164 02354| +310758 |V0758 Cyg *|200023.0+442359 |M | 13.6 | 16.3 | |p | | | 200. : | | |01324 01325| +310759 |V0759 Cyg *|200026.8+485938 |RRAB | 12.1 | 13.8 | |p |37522.398 | | 0.3600548 |12 | |00001 00534| +310760 |V0760 Cyg |200137.4+532832 |L | 13.9 | 15.6 | |p | | | | | |00164 02354| +310761 |V0761 Cyg |200607.0+530418 |IS: | 13.5 | 16.4 | |p | | | | | |00164 02354| +310762 |V0762 Cyg |200839.5+592627 |I | 15.0 | 16.2 | |p | | | | | |00164 02354| +310763 |V0763 Cyg |200930.5+521255 |I | 14.3 | 16.3 | |p | | | | | |00164 02354| +310764 |V0764 Cyg |200914.3+593202 |I | 12.2 | 14.0 | |p | | | | | |00164 02354| +310765 |V0765 Cyg |201041.3+540316 |I | 13.2 | 14.9 | |p | | | | | |00164 02370| +310766 |V0766 Cyg |201309.0+574504 |L | 13.7 | 14.5 | |p | | | | | |00164 02370| +310767 |V0767 Cyg |201650.0+531224 |UGSS | 15.0 |< 17.5 | |p | | | | | |00164 02354| +310768 |V0768 Cyg |201643.8+555604 |EA | 15.5 |< 17.0 | |p |34662.392 | | | | |00164 02370| +310769 |V0769 Cyg |201845.4+533125 |L | 15.1 | 16.5 | |p | | | | | |00164 02370| +310770 |V0770 Cyg |202016.9+550857 |M | 15.5 |< 17.5 | |p |31223. | | 155.6 | | |00164 02354| +310771 |V0771 Cyg |202225.2+592021 |IS: | 13.0 | 14.9 | |p | | | | | |00164 02354| +310772 |V0772 Cyg |202331.4+541113 |L | 13.2 | 15.2 | |p | | | | | |00164 02354| +310773 |V0773 Cyg |202527.0+565730 |ISB: | 11.4 | 12.8 | |p | | | | |M4 |00164 02354| +310774 |V0774 Cyg |203101.7+571014 |L | 14.6 | 16.2 | |p | | | | | |00164 02370| +310775 |V0775 Cyg |203148.5+593201 |EA | 15.1 | 16.7 | |p |31254.454 | | | | |00164 02370| +310776 |V0776 Cyg |203322.1+551939 |L | 12.3 | 13.7 | |p | | | | | |00164 02354| +310777 |V0777 Cyg |203525.2+535547 |LB | 13.2 | 15.2 | |p | | | | | |00164 02354| +310778 |V0778 Cyg |203607.4+600526 |LB | 11.6 | 13.5 | |p | | | | |C4,5J(N) |00164 02354| +310779 |V0779 Cyg *|204901.6+452801 |EW: | 16.1 | 16.7 | |p | | | 1.986 :/N| | |02700 02700| +310780 |V0780 Cyg |210442.4+425423 |M | 13.4 |< 16. | |V |32143. | | 319. |33 : | |02700 02700| +310781 |V0781 Cyg *|194409.8+360656 |RRAB | 13.8 | 15.4 | |p |32363.1578 | | 0.43665186 |15 | |00846 00846| +310782 |V0782 Cyg |195117.0+402646 |RRAB | 15.3 | 16.2 | |p |32763.3860 | | 0.52363383 |18 | |00846 00846| +310783 |V0783 Cyg *|195252.7+404735 |RRAB | 14.2 | 15.5 | |p |41122.778 | | 0.6206994 |12 | |08980 00846| +310784 |V0784 Cyg |195622.9+412024 |RRAB | 15.6 | 16.6 | |p |33594.0854 | | 0.53410257 |19 | |00846 00846| +310785 |V0785 Cyg |195807.3+355205 |RRAB | 16.4 | 17.6 | |p |33858.1682 | | 0.51417846 |10 | |00846 00846| +310786 |V0786 Cyg *|201428.6+594421 |* | 13.5 | 16.0 | |p | | | | |M7-M8 |03863 02354| +310787 |V0787 Cyg |201616.8+475948 |EA | 10.8 | 11.5 | |p |16457.424 | | 1.5285151 |15 *|A0 |09134 00819| +310788 |V0788 Cyg |202734.1+315125 |EA | 10.0 | 10.9 | |p |26620.54 | | 47.84870 |04 *|F8 |08982 08982| +310789 |V0789 Cyg *|192238.9+300134 |RRC | 13.3 | 13.7 | |p |32748.1087 | | 0.288552336 |47 | |02773 02773| +310790 |V0790 Cyg |192554.5+283016 |RRAB | 13.8 | 15.2 | |p |34358.9607 | | 0.45604595 |15 | |02773 02773| +310791 |V0791 Cyg |192850.8+315442 |RRC | 13.2 | 13.7 | |p |33999.3804 | | 0.33804949 |45 | |02774 02774| +310792 |V0792 Cyg |193101.0+334704 |UGSS | 14.1 | 17.0 | |p | | |( 26. :) | | |05386 06503| +310793 |V0793 Cyg |193306.3+331538 |UGSS | 14.4 |< 18.5 : | |p | | | | | |06503 06503| +310794 |V0794 Cyg |193322.0+325122 |RRAB | 14.0 | 15.3 | |p |34585.6284 | | 0.51634652 |15 | |02774 02774| +310795 |V0795 Cyg *|193434.3+313211 |UGSS | 13.4 |< 17.9 : | |p | | |( 330. /N)| | |06503 06503| +310796 |V0796 Cyg *|193356.1+471834 |EA | 10.9 | 11.4 | 11.4 |p |37997.108 | | 1.480870 |20 |A0 |05304 02379| +310797 |V0797 Cyg *|193630.6+370635 |EB/AR | 14.2 | 15.5 | |p |31286.5908 | | 3.1441642 | *| |02775 02775| +310798 |V0798 Cyg |193806.9+305434 |DSCT: | 12.4 | 12.8 | |p |31813.7090 | | 0.19476629 |50 | |02773 02773| +310799 |V0799 Cyg *|193812.2+390849 |RRAB | 14.7 | 16.0 | |p |32372.5066 | | 0.6588748 |16 | |02775 02775| +310800 |V0800 Cyg |193911.2+380726 |RRAB | 15.9 | 17.1 | |p |33537.4840 | | 0.53115759 |12 | |02775 02775| +310801 |V0801 Cyg *|193939.0+333217 |RRAB | 13.8 | 15.3 | |p |42941.463 | | 0.5160424 |12 | |08983 02774| +310802 |V0802 Cyg *|193941.3+351029 |RRAB | 13.1 | 14.8 | |p |44433.817 | | 0.595482 | | |09233 02775| +310803 |V0803 Cyg *|194156.4+383033 |EA/SD | 14.3 | 15.5 | 14.5 |p |32697.5539 | | 1.0264756 |20 *| |02776 02776| +310804 |V0804 Cyg |194248.1+333430 |RRAB | 14.5 | 15.9 | |p |34241.7531 | | 0.48250004 |11 | |02774 02774| +310805 |V0805 Cyg |194315.5+333342 |M | 13.9 |< 16. | |p |32760.8 | | 253.4 | | |04248 04248| +310806 |V0806 Cyg *|194316.0+381736 |EA | 14.4 | 15.1 | 15.0 |p |33075.9459 | | 4.0238501 |07 *| |08984 08984| +310807 |V0807 Cyg *|194319.2+373957 |EA | 14.2 | 15.1 | 14.9 |p |31909.5513 | | 0.79876855 |20 *| |02776 02776| +310808 |V0808 Cyg *|194539.1+393055 |RRAB | 15.3 | 16.6 | |p |33279.8805 | | 0.5478641 |13 | |02775 02775| +310809 |V0809 Cyg *|194723.5+361625 |EA/DM | 13.3 | 14.1 | 13.6 |p |33252.2258 | | 1.9644536 |06 *| |08984 08984| +310810 |V0810 Cyg *|194720.9+402824 |EA/SD | 14.8 | 16.8 |( 0.05 )|p |33164.8076 | | 3.736128 |15 | |02776 02776| +310811 |V0811 Cyg |194823.3+362624 |UGSS | 12.7 |< 17.7 | |p | | |( 55. :) | | |06503 06503| +310812 |V0812 Cyg |194840.2+365035 |EA/SD | 14.9 | 16.8 | |p |31858.5181 | | 5.6505732 |10 *| |08984 08984| +310813 |V0813 Cyg |194936.0+364440 |UGSS | 16.0 |< 19. | |p | | |( 30. ) | | |05386 06503| +310814 |V0814 Cyg |194950.8+363427 |EA/SD | 15.0 |< 18.0 | |p |34081.2173 | | 4.4974849 |13 | |08984 08984| +310815 |V0815 Cyg |195011.4+355000 |EA | 17.0 |< 18.2 | |p |33864.6276 | | 2.2982708 |12 | |08984 08984| +310816 |V0816 Cyg |195256.6+361607 |EA/SD: | 16.3 | 17.7 | |p |34040.7379 | | 5.373856 |08 *| |08984 08984| +310817 |V0817 Cyg *|195302.4+361742 |RRAB | 16.1 | 16.7 | |p |33422.483 | | 0.5458015 |13 | |02778 02778| +310818 |V0818 Cyg *|195340.5+364046 |DSCT: | 16.0 | 16.9 | |p | | | 0.13 : | | |02778 02778| +310819 |V0819 Cyg |195301.3+474828 |BCEP: | 6.26 | 6.30 | |V | | | 0.3775 : | |B0.5IIIp |02602 BD | +310820 |V0820 Cyg |195335.2+410127 |EA | 15.9 | 17.0 | |p |32043.7887 | | 2.4439738 |16 *| |02776 02776| +310821 |V0821 Cyg *|195350.7+361152 |EB | 15.3 | 16.2 | 15.6 |p |32707.57005 | | 0.73480098 | *| |08984 08984| +310822 |V0822 Cyg *|195408.3+362058 |EA/SD | 12.9 | 14.2 | 13.0 |p |32529.7066 | | 1.26777466 |19 *| |08984 08984| +310823 |V0823 Cyg |200149.3+360724 |UGSS | 15.0 |< 18.5 | |p | | |( 55. :) | | |05386 06503| +310824 |V0824 Cyg *|200230.3+361401 |EB | 14.0 | 14.9 | 14.3 |p |32806.1065 | | 0.644194765 | *| |08984 08984| +310825 |V0825 Cyg *|200236.9+365541 |EA/AR | 15.8 | 17.0 | 16.9 |p |33536.565 | | 7.709064 |06 *| |02778 02778| +310826 |V0826 Cyg *|200829.6+380541 |EB | 14.5 | 15.3 | 14.7 |p |33213.8765 | | 1.2501818 | | |02776 02776| +310827 |V0827 Cyg |201118.1+372734 |EA/SD | 14.6 | 16.5 | |p |33202.6649 | | 1.62133949 |14 *| |08984 08984| +310828 |V0828 Cyg *|203754.4+542955 |EB/DM | 9.7 | 10.12 | 10.12 |p |38937.476 | | 2.10454 | |B8 |03868 00832| +310829 |V0829 Cyg |204537.5+322909 |LB: | 11.1 | 12.3 | |p | | | | |M4 |02406 00294| +310830 |V0830 Cyg |205727.5+392427 |RRAB | 12.6 | 14.1 | |p |36816.4775 | | 0.40147246 |15 |F0 |03491 03491| +310831 |V0831 Cyg |205946.2+335104 |M: | 13.5 |< 15.0 | |p |36068. | | 308. | | |02394 06286| +310832 |V0832 Cyg *|205949.6+473115 |GCAS | 4.49 | 4.88 | |V | | | | |B1.5Venn |02602 BD | +310833 |V0833 Cyg |210423.2+390001 |RRAB | 13.9 | 15.3 | |p |36408.460 | | 0.5381728 |15 | |03506 09136| +310834 |V0834 Cyg |210717.7+323603 |M | 12.5 |< 15.0 | |p |36494. | | 357. | | |02430 00294| +310835 |V0835 Cyg |210909.8+314039 |RRC | 13.3 | 14.4 | |p |36347.373 | | 0.39375764 |38 : | |03506 00601| +310836 |V0836 Cyg *|212123.6+354411 |EB/KE | 8.57 | 9.23 | 8.77 |V |44853.4903 | | 0.6534122 | |A0V |09137 08953| +310837 |V0837 Cyg |212806.8+395618 |M | 13.8 | 17.1 | |B |43192. | | 292.6 |50 | |08985 08985| +310838 |V0838 Cyg |191403.8+481159 |RRAB | 13.3 | 14.6 | |p |43365.791 | | 0.4802795 |16 | |08986 00534| +310839 |V0839 Cyg |192018.8+470749 |E: | 13.5 | 14.6 | |p | | | 5.3 : | | |08987 00534| +310840 |V0840 Cyg *|192207.0+284006 |SDOR: | 10.2 | 10.9 | |p | | | | |A1II |04427 04427| +310841 |V0841 Cyg *|192218.4+284108 |EB/KE | 11.1 | 11.3 | 11.2 |p |34629.425 | | 0.76113617 | |A5 |04244 04244| +310842 |V0842 Cyg *|192258.1+274556 |EA/SD | 14.0 | 14.9 | 14.1 |p |35391.312 | | 0.8591372 |36 *| |04427 04427| +310843 |V0843 Cyg |192257.1+294109 |M | 14.1 |< 16.8 | |p |39330. | | 250.15 | | |00001 04244| +310844 |V0844 Cyg *|192306.1+290539 |RRAB | 15.2 | 16.9 | |p |41548.204 | | 0.39542625 |10 | |08988 08988| +310845 |V0845 Cyg |192215.1+463753 |SR | 12.5 | 14.2 | |p | | | 160. : | | |04253 04236| +310846 |V0846 Cyg |192413.7+300830 |LB | 14.5 | 15.2 | |p | | | | | |04248 04248| +310847 |V0847 Cyg |192428.5+283051 |LB | 12.7 | 13.5 | |p | | | | |M8 |04244 04244| +310848 |V0848 Cyg |192444.0+290911 |EA | 16.3 | 17.4 | |p |34617.5566 | | 3.9505428 |14 | |04413 04413| +310849 |V0849 Cyg |192456.0+275153 |M | 14.3 |< 16.1 | |p |34990. | | 382. | | |04244 04244| +310850 |V0850 Cyg *|192458.8+471457 |EA/AR: | 11.3 | 12.3 | 11.8 |p |37146.546 | | 4.56427 |20 *| |09138 04236| +310851 |V0851 Cyg *|192615.8+331722 |EA/SD | 14.8 | 16.6 | |p |35123.3775 | | 2.4950069 |10 | |04414 04414| +310852 |V0852 Cyg *|192619.3+334213 |EB | 14.6 | 15.2 | 14.9 |p |34051.7944 | | 0.570526625 | | |04255 04255| +310853 |V0853 Cyg *|192637.7+321321 |EA/SD | 14.1 | 15.1 | 14.2 |p |34601.432 | | 1.71222393 |12 *| |04244 04244| +310854 |V0854 Cyg |192650.4+283341 |EA/SD | 15.7 | 17.6 : | |p |35044.036 | | 2.6576093 |20 :*| |04255 04255| +310855 |V0855 Cyg |192642.8+314653 |M | 14.5 |< 16.6 | |p |35316. | | 307.9 | | |04427 04427| +310856 |V0856 Cyg *|192653.7+291026 |EA | 13.5 | 14.3 |( 0.05 )|p |35162.646 | | 2.1735895 |15 *| |04244 04244| +310857 |V0857 Cyg *|192653.9+325104 |EA | 14.0 | 14.8 |( 0.03 )|p |34602.501 | | 5.5925421 |08 *| |04244 04244| +310858 |V0858 Cyg |192708.8+295019 |LB | 14.2 | 15.4 | |p | | | | | |04427 04427| +310859 |V0859 Cyg *|192712.7+285650 |EW/KW | 11.7 | 12.2 | 12.1 |p |34629.4141 | | 0.40500132 | | |04244 04244| +310860 |V0860 Cyg |192720.6+283325 |M: | 16.5 |< 17.5 | |p |34380. | | 215. | | |04417 04417| +310861 |V0861 Cyg |192704.0+345625 |RRAB | 16.0 | 17.4 | |p |34295.336 | | 0.50385081 |20 | |04254 04254| +310862 |V0862 Cyg |192706.5+341328 |RRAB | 15.0 | 16.5 | |p |35373.346 | | 0.41369852 |23 | |04247 04247| +310863 |V0863 Cyg |192728.9+291123 |M | 14.3 |< 17. | |p |35044. | | 379.9 | | |04244 04244| +310864 |V0864 Cyg |192724.7+304541 |M | 15.3 |< 17.7 | |p |34812. | | 308. | | |04413 04413| +310865 |V0865 Cyg *|192724.8+330309 |EW/KW | 14.0 | 14.7 | 14.6 |p |34238.2430 | | 0.36530095 | | |04248 04248| +310866 |V0866 Cyg *|192843.5+292013 |EB | 13.7 | 14.4 | 13.9 |p |33927.9026 | | 0.899174993 | | |04384 04384| +310867 |V0867 Cyg |192837.0+325918 |M | 14.4 |< 16.5 | |p |35028. | | 247. | | |04248 04248| +310868 |V0868 Cyg |192904.4+285426 |UGZ | 14.3 |< 17.8 | |p | | |( 20.38 ) | | |07519 04413| +310869 |V0869 Cyg *|192911.8+311117 |EB | 14.0 | 14.9 | 14.8 |p |39035.737 | | 0.8950943 | | |00001 04244| +310870 |V0870 Cyg *|192917.4+302622 |EB/KE | 15.4 | 16.2 | 15.8 |p |35094.7345 | | 1.30790810 | | |04384 04384| +310871 |V0871 Cyg *|192913.2+330602 |EB | 14.4 | 14.9 | 14.9 |p |34215.521 | | 1.1187840 | | |04244 04244| +310872 |V0872 Cyg |192920.7+302950 |SRB | 13.3 | 14.5 | |p |35428. | | 140.1 | | |04244 04244| +310873 |V0873 Cyg *|192920.8+314652 |EA | 14.6 | 15.1 | 14.7 |p |35044.315 | | 0.84819939 |25 *| |04244 04244| +310874 |V0874 Cyg *|192959.9+282155 |EW/KW | 13.5 | 13.9 | 13.8 |p |34707.241 | | 0.4226339 | | |04427 04427| +310875 |V0875 Cyg |193025.8+301429 |M | 15. | 17.5 | |p |34987. | | 356.5 | | |04427 04427| +310876 |V0876 Cyg |193046.3+305348 |LB | 12.6 | 13.3 | |p | | | | | |04427 04427| +310877 |V0877 Cyg *|193051.7+321209 |EB | 12.7 | 13.3 | 12.9 |p |35344.513 | | 0.8397642 | | |04427 04427| +310878 |V0878 Cyg |193054.7+351550 |RRAB | 14.3 | 15.5 | |p |34123.556 | | 0.6040007 |19 | |04254 04254| +310879 |V0879 Cyg |193106.5+320439 |LB | 14.1 | 14.8 | |p | | | | | |04427 04427| +310880 |V0880 Cyg *|193125.9+333917 |EA/KE: | 13.9 | 14.6 | 14.1 |p |33857.404 | | 1.0600316 |12 | |04248 04248| +310881 |V0881 Cyg *|193138.0+294315 |DSCT: | 13.6 | 13.8 | |p |35371.409 | | 0.21065560 |44 | |04247 04247| +310882 |V0882 Cyg *|193153.0+292545 |RRC | 13.8 | 14.6 | |p |37218.213 | | 0.2726626 |36 | |00001 04254| +310883 |V0883 Cyg |193205.7+284824 |M | 15.3 |< 17.3 | |p |34986.5 | | 227.4 | | |04244 04244| +310884 |V0884 Cyg *|193219.6+304503 |EB/KW | 13.8 | 14.7 | 14.2 |p |32280.7461 | | 0.480050633 | | |04255 04255| +310885 |V0885 Cyg *|193249.9+300117 |EB/DM | 9.9 | 10.3 | 10.2 |p |34980.514 | | 1.6947950 | | |04427 04427| +310886 |V0886 Cyg *|193245.2+324038 |EA | 14.0 | 15.4 | 14.1 |p |34628.603 | | 2.4095240 |18 | |04248 04248| +310887 |V0887 Cyg *|193309.6+292050 |EA | 14.3 | 15.1 |( 0.03 )|p |32887.3979 | | 2.03807136 |12 | |04384 04384| +310888 |V0888 Cyg *|193318.9+292138 |EB/SD | 15.8 | 17.5 | 15.9 |p |34709.3699 | | 2.12419068 | | |04384 04384| +310889 |V0889 Cyg *|193332.1+282900 |EB/DM: | 10.0 | 10.4 | 10.4 |p |34119.427 | | 1.7479360 | | |04427 04427| +310890 |V0890 Cyg |193327.2+321024 |LB | 11.6 | 12.4 | |p | | | | | |04427 04427| +310891 |V0891 Cyg *|193338.4+291622 |EA/DM | 9.3 | 9.9 | 9.4 |p |34663.449 | | 1.9057825 |20 |A0 |04244 04244| +310892 |V0892 Cyg *|193343.8+281830 |EA | 15.4 | 16.7 | 15.5 |p |32630.9667 | | 2.06131496 |16 | |04384 04384| +310893 |V0893 Cyg |193340.7+331203 |M | 13.6 |< 17.6 | |p |34512.7 | | 292.2 | | |04258 04258| +310894 |V0894 Cyg |193300.9+461423 |RRAB | 11.9 | 13.4 | |p |36997.198 | | 0.571403 |20 | |04259 04236| +310895 |V0895 Cyg |193346.9+324305 |LB | 11.6 | 12.3 | |p | | | | |M2 |04244 04244| +310896 |V0896 Cyg |193346.9+334329 |RR | 15.0 | 15.8 | |p |34881.085 | | 0.35669116 |36 | |04245 04245| +310897 |V0897 Cyg |193359.5+294743 |L | 12.5 | 12.9 | |p | | | | | |04244 04244| +310898 |V0898 Cyg |193400.1+305256 |SR: | 15.2 |< 16.4 | |p |35355. | | 379. : | | |04427 04427| +310899 |V0899 Cyg |193418.2+283006 |EA | 15.6 | 16.9 | |p |34658.6951 | | 2.9282715 |20 : | |04255 04255| +310900 |V0900 Cyg *|193410.0+324953 |EA/SD | 15.1 | 16.8 | 15.2 |p |33977.456 | | 1.97348267 |14 | |04255 04255| +310901 |V0901 Cyg |193419.6+311244 |M | 14.7 |< 16. : | |p |34659. | | 263.5 | | |04248 04248| +310902 |V0902 Cyg *|193435.5+290628 |EA/SD | 14.5 | 15.3 |( 0.05 )|p |34627.294 | | 1.6289172 |15 | |04427 04427| +310903 |V0903 Cyg |193444.1+311519 |M | 14.8 |< 18.0 | |p |39965. | | 328.5 | | |06854 04248| +310904 |V0904 Cyg |193504.7+290229 |LB | 14.8 | 16.6 | |p | | | | | |04417 04417| +310905 |V0905 Cyg |193505.6+303424 |UG: | 16.5 |< 18.1 | |p | | | | | |04413 04413| +310906 |V0906 Cyg *|193457.0+343844 |EW/KW | 14.9 | 15.7 | 15.7 |B |31962.5859 | | 0.365166713 | | |04414 04414| +310907 |V0907 Cyg *|193530.4+294546 |EW/KW | 14.2 | 14.9 | 14.9 |p |39029.450 | | 0.426056 | | |05876 04427| +310908 |V0908 Cyg *|193532.0+332704 |EA/SD | 15.4 | 17.7 : |( 0.04 )|p |33995.255 | | 1.93604410 |14 *| |04761 04761| +310909 |V0909 Cyg *|193553.2+281644 |EA/DM | 9.3 | 9.84 | 9.66 |p |45202.3731 | | 2.8054230 |07 *|A0 |09140 04244| +310910 |V0910 Cyg *|193553.3+281240 |EA/SD | 14.1 | 15.0 | 14.2 |p |34627.481 | | 1.61025672 |24 | |04244 04244| +310911 |V0911 Cyg *|193554.8+275903 |EA/SD | 14.4 | 16.5 | 14.6 |p |38260.408 | | 3.4226070 |10 *| |06854 04761| +310912 |V0912 Cyg *|193552.6+313151 |EA/D | 12.4 | 13.0 |( 0.05 )|p |35336.485 | | 2.5282034 |16 *|F8: |04248 04248| +310913 |V0913 Cyg *|193614.9+330422 |M | 15.1 |< 17.8 | |p |30454. | | 296.0 | | |04258 04258| +310914 |V0914 Cyg |193638.5+313910 |EA | 14.3 | 15.6 | |p |35360.454 | | 4.173059 |12 *| |04427 04427| +310915 |V0915 Cyg |193653.3+322716 |SRA | 15.5 | 17.1 | |p |34850. | | 172. | | |04417 04417| +310916 |V0916 Cyg |193703.0+311035 |M | 13.8 |< 16. | |p |35095. | | 377.1 | | |04248 04248| +310917 |V0917 Cyg |193734.7+295604 |LB | 13.8 | 14.90 | |B | | | | |ea |04248 04248| +310918 |V0918 Cyg |193742.0+301311 |LB | 11.2 | 11.8 | |p | | | | |MC |04244 04244| +310919 |V0919 Cyg |193755.4+283411 |SR | 13.3 | 14.2 | |p | | | 50. : | | |04244 04244| +310920 |V0920 Cyg *|193802.1+290413 |RRAB | 15.4 | 16.7 | |p |35303.5136 | | 0.50484904 |23 | |04254 04254| +310921 |V0921 Cyg |193758.7+333928 |EA/AR: | 13.1 | 13.8 | |p |33946.406 | | 4.0395647 |16 *| |04248 04248| +310922 |V0922 Cyg *|193810.5+302701 |EA/SD | 14.5 | 15.8 | |p |34204.236 | | 1.42237630 |14 | |04761 04761| +310923 |V0923 Cyg |193810.8+313457 |SRD | 12.2 | 14.0 | |p | | | 29. : | |G: |07520 04248| +310924 |V0924 Cyg *|193811.6+322922 |DCEPS | 10.56 | 10.85 | |V |43066.075 | | 5.571472 |40 |F6 |08632 04266| +310925 |V0925 Cyg *|193827.1+283251 |EA | 15.7 | 17.3 : | 16.0 |p |38552.474 | | 2.9791900 |12 | |06854 04384| +310926 |V0926 Cyg |193837.0+280055 |RRC | 15.2 | 15.9 | |p |33749.1992 | | 0.30697965 |50 | |04414 04414| +310927 |V0927 Cyg *|193731.3+484732 |SRA | 10.5 | 12.0 | |p |36837.4 | | 229. |50 |M6 |07164 07164| +310928 |V0928 Cyg *|193855.3+292959 |EA | 15.3 |< 16.5 | 15.4 |p |34238.495 | | 2.5268184 |15 : | |04248 04248| +310929 |V0929 Cyg |193849.5+322409 |M | 13.8 |< 16.0 | |p |34108. | | 332.7 | | |04248 04248| +310930 |V0930 Cyg |193906.8+302851 |LB | 12.9 | 13.9 | |p | | | | | |04427 04427| +310931 |V0931 Cyg *|193914.1+294609 |EW/KW | 13.9 | 14.6 | 14.5 |p |34134.4975 | | 0.34149157 | | |04248 04248| +310932 |V0932 Cyg *|193905.9+332902 |EA/SD | 14.0 | 16.6 |( 0.04 )|p |34101.757 | | 5.5990978 |10 | |04255 04255| +310933 |V0933 Cyg |193916.7+295011 |LB | 14.0 | 14.6 | |p | | | | | |04427 04427| +310934 |V0934 Cyg *|193929.3+301635 |EW | 13.2 | 13.7 | 13.7 |p |34626.382 | | 0.70069920 | | |04244 04244| +310935 |V0935 Cyg |193902.4+401521 |M | 13.6 |< 17.7 | |p |33158. | | 365. | | |04413 04413| +310936 |V0936 Cyg *|193935.9+303242 |EA | 14.5 | 16.5 |( 0.05 )|p |34019.907 | | 2.3192508 |16 | |04255 04255| +310937 |V0937 Cyg |193930.7+330137 |M | 14.0 |< 16. | |p |34989.6 | | 202.5 | | |04248 04248| +310938 |V0938 Cyg |193942.3+321214 |LB | 12.6 | 13.5 | |p | | | | |ea |04248 04248| +310939 |V0939 Cyg *|193824.3+563225 |EW | 12.1 | 12.5 | 12.5 |p |37917.62 | | 0.558 | | |03148 04065| +310940 |V0940 Cyg *|193848.9+574021 |EW/KW | 14.5 | 15.1 | 15.1 |p |37668.41 | | 0.33232 | | |03148 04065| +310941 |V0941 Cyg *|194104.4+305009 |EB/DM | 12.8 | 13.3 | 13.2 |p |34628.439 | | 3.5839350 | | |04248 04248| +310942 |V0942 Cyg *|194059.1+364333 |M | 13.3 |< 17.6 | |p |30949. | | 442. | |M9 |04417 04417| +310943 |V0943 Cyg |194123.4+283457 |LB | 14.0 | 14.9 | |p | | | | | |04244 04244| +310944 |V0944 Cyg *|194137.9+312323 |RRAB | 14.9 | 15.8 | |p |34743.718 | | 0.6317415 |30 | |04245 04245| +310945 |V0945 Cyg |194151.3+310852 |M | 14.7 |< 17. | |p |35195. | | 345. | | |04244 04244| +310946 |V0946 Cyg |194140.5+381908 |M | 12.9 | 17.6 | |p |33020. | | 289.9 |50 | |04258 04258| +310947 |V0947 Cyg *|194214.0+313538 |EW/KW | 14.1 | 15.1 | 15.0 |p |35044.474 | | 0.42924466 | | |04427 04427| +310948 |V0948 Cyg *|194220.7+303956 |EW | 14.6 | 15.4 | 15.2 |p |35066.740 | | 0.7770102 | | |04427 04427| +310949 |V0949 Cyg *|194123.0+514247 |SR | 14.9 | 15.5 | |p | | | 40. : | | |03148 04065| +310950 |V0950 Cyg |194237.9+300358 |M | 13.6 | 16.2 | |p |34676. | | 476.6 | |M9 |04427 04427| +310951 |V0951 Cyg |194247.4+312033 |RRAB | 15.3 | 16.6 | |p |34898.553 | | 0.4848410 |25 | |04245 04245| +310952 |V0952 Cyg |194250.3+332222 |EA | 13.7 | 15.4 | |p |32913.177 | | 9.981532 |12 *| |04248 04248| +310953 |V0953 Cyg |194248.4+382335 |M | 15.2 |< 19. | |p |33554. | | 250.2 | | |04258 04258| +310954 |V0954 Cyg |194309.1+341037 |M | 14.8 |< 16.5 | |p |34966. | | 144.2 | | |04244 04244| +310955 |V0955 Cyg *|194334.4+281846 |EB | 15.0 | 16.0 | 15.3 |p |34348.777 | | 15.0835966 | | |04384 04384| +310956 |V0956 Cyg *|194331.1+323724 |EA/SD | 15.0 | 16.8 | 15.1 |p |33829.6358 | | 1.83121217 |13 | |04384 04384| +310957 |V0957 Cyg *|194345.5+293141 |EB/DM | 12.2 | 12.8 | 12.6 |p |34627.339 | | 1.6735251 | | |04244 04244| +310958 |V0958 Cyg *|194212.7+520527 |SRA | 13.1 | 15.0 | |p |31560. | | 398. | | |03148 04065| +310959 |V0959 Cyg *|194353.9+301934 |EA/DM | 11.3 | 11.9 | 11.4 |p |33922.412 | | 1.8398202 |18 *|A5: |04244 04244| +310960 |V0960 Cyg |194352.4+335501 |M | 13.4 |< 15.5 | |p |34997. | | 259.2 | | |04248 04248| +310961 |V0961 Cyg *|194358.3+325215 |EA | 12.2 | 12.8 | 12.4 |p |34237.401 | | 2.0378068 |12 *| |04248 04248| +310962 |V0962 Cyg *|194400.0+331639 |EA/SD | 13.7 | 16.0 | |p |34626.508 | | 4.2686935 |13 | |04248 04248| +310963 |V0963 Cyg |194404.9+314150 |EA/DW: | 12.2 | 12.9 | |p |34629.397 | | 0.69733397 |24 |F5: |04248 04248| +310964 |V0964 Cyg *|194401.8+332624 |EA/AR | 13.9 | 14.8 | 14.4 |p |34706.2110 | | 3.5409514 |14 *| |04248 04248| +310965 |V0965 Cyg *|194409.3+314237 |EW: | 13.9 | 14.9 | 14.9 |p |35047.296 | | 0.64057256 | | |04427 04427| +310966 |V0966 Cyg |194242.7+555441 |EA | 15.4 | 16.5 | |p |37970.52 | | | | |03148 04065| +310967 |V0967 Cyg |194404.7+384007 |RV | 15.0 | 16.9 | |p | | | 50. : | | |04266 04266| +310968 |V0968 Cyg |194434.0+284936 |LB | 14.0 | 14.94 | |B | | | | |ea |04427 04427| +310969 |V0969 Cyg |194423.4+332448 |SRA | 13.9 | 15.05 | |B |34976. | | 130.1 | |ea |04427 04427| +310970 |V0970 Cyg *|194456.4+281522 |EB | 14.3 | 15.1 | 14.8 |p |35317.509 | | 0.5209495 | | |04427 04427| +310971 |V0971 Cyg |194428.8+390332 |M | 13.3 |< 17.9 | |p |33282. | | 300.6 | | |04258 04258| +310972 |V0972 Cyg |194323.8+552251 |SRA | 15.5 | 16.8 | |p |38010. | | 400. : | | |03148 04065| +310973 |V0973 Cyg |194449.0+404301 |SRB | 7.75 | 8.6 | |B | | | 40. : | |M3IIIa |03500 08953| +310974 |V0974 Cyg *|194518.6+323153 |EA | 11.9 | 12.5 | 12.5 |p |35019.419 | | 3.204437 |09 *| |04248 04248| +310975 |V0975 Cyg |194517.2+332603 |EA | 13.3 | 14.1 | |p |34106.504 | | 3.9487015 |04 *| |04255 04255| +310976 |V0976 Cyg |194528.2+312830 |SRA | 11.9 | 12.8 | |p |34224. | | 144.4 | |M6.5 |04248 04248| +310977 |V0977 Cyg |194547.1+311322 |LB | 10.7 | 11.4 | |p | | | | |MB |04248 04248| +310978 |V0978 Cyg |194427.9+554112 |EA/SD: | 15.5 |< 17.0 | |p |37642.23 | | 1.51305 |16 *| |03148 04065| +310979 |V0979 Cyg *|194626.5+320836 |EW/KW | 14.2 | 14.7 | 14.7 |B |31959.9390 | | 0.373707068 | | |04414 04414| +310980 |V0980 Cyg |194625.5+362846 |M | 15.7 |< 17.7 | |p |33015. | | 416.9 | | |04258 04258| +310981 |V0981 Cyg *|194503.5+562451 |EW | 14.5 | 15.0 | 15.0 |p |37668.38 | | 0.50766 | | |03148 04065| +310982 |V0982 Cyg *|194544.5+552348 |SR | 13.1 | 13.8 | |p | | | 49.5 | | |03148 04065| +310983 |V0983 Cyg |194724.1+334939 |M | 15.6 |< 18. | |p |34503. | | 342. | | |04417 04417| +310984 |V0984 Cyg |194729.7+345008 |M | 15.8 |< 18. | |p |34473. | | 333. | | |04417 04417| +310985 |V0985 Cyg |194619.3+563429 |RRAB | 14.6 | 15.4 | |p |37640.27 | | 0.570874 |13 | |03148 04065| +310986 |V0986 Cyg |194807.7+344207 |M | 16.0 |< 18. | |p |33378. | | 303. | | |04417 04417| +310987 |V0987 Cyg |194823.1+322003 |M | 14.8 |< 17.5 | |p |33912. | | 403.5 | | |04258 04258| +310988 |V0988 Cyg |194653.3+533815 |LB | 13.4 | 14.5 | |p | | | | | |03148 04065| +310989 |V0989 Cyg |194838.6+300241 |LB | 15.0 | 15.9 | |p | | | | | |04427 04427| +310990 |V0990 Cyg |194909.4+300951 |LB | 14.0 | 15.0 | |p | | | | | |04427 04427| +310991 |V0991 Cyg |194853.5+361318 |RRAB | 14.3 | 14.9 | |p |33125.506 | | 0.59916358 |22 | |04247 04247| +310992 |V0992 Cyg |194903.3+352741 |M | 14.5 |< 17.9 | |p |34199. | | 247.8 | | |04258 04258| +310993 |V0993 Cyg |194738.5+525754 |LB: | 13.2 | 13.9 | |p | | | | | |03148 04065| +310994 |V0994 Cyg |194910.0+354122 |RRAB | 16.0 | 17.0 | |p |33365.408 | | 0.60095380 |15 | |04247 04247| +310995 |V0995 Cyg |194834.4+461343 |EA/SD | 11.3 | 12.9 | |p |26352.250 | | 3.556275 | |B8 |04277 04187| +310996 |V0996 Cyg |194909.8+363935 |SRA | 15.5 |< 17.6 | |p |34492. | | 407.0 |50 | |04258 04258| +310997 |V0997 Cyg *|194805.0+525117 |RRC | 14.1 | 14.9 | |p |37906.56 | | 0.22892 |48 | |03148 04065| +310998 |V0998 Cyg |194944.4+304739 |SRB | 14.1 | 15.1 | |p | | | 50. : | | |04427 04427| +310999 |V0999 Cyg |194953.3+310703 |LB | 14.1 | 15.1 | |p | | | | | |04248 04248| +311000 |V1000 Cyg |194948.7+354915 |M | 13.6 |< 17.9 | |p |34062. | | 452.7 | | |04258 04258| +311001 |V1001 Cyg |195015.0+292940 |SR | 13.0 | 13.8 | |p | | | 375. : | |M6 |04248 04248| +311002 |V1002 Cyg |194841.0+561455 |E | 13.6 | 14.0 | |p |37960.425 | | | | |03148 04065| +311003 |V1003 Cyg |194911.0+524718 |RR: | 16.5 |< 17.5 | |p |37936.373 | | | | |03148 04065| +311004 |V1004 Cyg *|195029.4+330832 |EB | 12.6 | 13.4 | 13.0 |p |34626.437 | | 0.68569997 | | |04427 04427| +311005 |V1005 Cyg |194925.4+513953 |RRAB | 15.0 | 16.0 | |p |37642.21 | | 0.6119 |14 | |03148 04065| +311006 |V1006 Cyg |194847.1+570922 |UG | 15.4 | 17.0 | |p | | |( 13.5 :) | | |03148 04065| +311007 |V1007 Cyg *|195033.3+342301 |EA/SD | 14.9 | 16.9 |( 0.04 )|p |34399.880 | | 2.67313163 |16 *| |04761 04761| +311008 |V1008 Cyg *|195048.3+315625 |RVA | 14.8 | 16.0 | 16.0 |p |34596. | | 109.94 | | |04248 04248| +311009 |V1009 Cyg |195214.9+314629 |EA | 12.9 | 13.5 | |p |34175.789 | | 5.4362474 |05 :*| |04255 04255| +311010 |V1010 Cyg *|195346.0+293426 |EA | 14.5 | 15.6 |( 0.03 )|p |32764.524 | | 2.4069968 |10 *| |04244 04244| +311011 |V1011 Cyg *|195514.8+341229 |EA/D | 12.2 | 12.9 |( 0.04 )|p |33922.333 | | 3.2393706 |16 *|A0 |04248 04248| +311012 |V1012 Cyg *|195640.7+314917 |EA/SD | 15.3 | 16.7 | 15.4 |p |33971.3572 | | 1.76992159 |16 | |04384 04384| +311013 |V1013 Cyg |195658.1+334632 |EA | 13.3 | 13.8 | |p |33506.482 | | 4.6796959 |13 | |04248 04248| +311014 |V1014 Cyg |195603.5+504921 |SRA | 12.6 |< 13.6 | |p |27292. | | 112. | | |04014 00174| +311015 |V1015 Cyg |195602.7+553033 |EB: | 14.6 | 15.2 | |p |30972.39 | | 4.1132 : | | |03148 04065| +311016 |V1016 Cyg *|195705.0+394936 |NC+M | 10.05 | 17.5 | |B | |1964 | | |pec | 05701| +311017 |V1017 Cyg |195615.8+531912 |RR | 15.8 | 16.5 | |p | | | 0.96 /N| | |03148 04065| +311018 |V1018 Cyg *|195759.9+332028 |EB/DM | 11.2 | 11.7 | 11.6 |p |34121.513 | | 1.6236748 | |A2n |04248 04248| +311019 |V1019 Cyg |195837.7+302321 |EA/SD | 13.3 | 15.1 | |p |33542.334 | | 2.2793125 |15 | |04248 04248| +311020 |V1020 Cyg |195909.1+324144 |DCEP | 14.9 | 16.2 | |p |33501.543 | | 4.919964 |42 | |04266 04266| +311021 |V1021 Cyg *|195921.0+331101 |EB | 13.9 | 14.9 | 14.3 |p |34603.362 | | 3.3292714 | | |04248 04248| +311022 |V1022 Cyg |195947.0+300605 |SR | 13.3 | 13.9 | |p |33539.7 | | 59.86 | | |04244 04244| +311023 |V1023 Cyg *|195953.2+302421 |EA/DM | 12.8 | 13.4 | 12.9 |p |32797.390 | | 3.1588172 |30 |A3: |04248 04248| +311024 |V1024 Cyg *|200011.2+390442 |EA | 16.2 | 17.8 : |( 0.04 )|p |33443.247 | | 1.53279958 |14 *| |04761 04761| +311025 |V1025 Cyg |200046.4+305428 |DCEP | 14.00 | 15.14 | |B |33568.946 | | 6.96176 |27 | |04266 04266| +311026 |V1026 Cyg |195928.2+572725 |RRAB | 15.4 | 16.3 | |p |37659.224 | | 0.56332 |18 | |03148 04065| +311027 |V1027 Cyg |200227.4+300426 |L | 10.5 | 11.5 | |p | | | | |G7Ia |04248 04248| +311028 |V1028 Cyg |200056.5+565637 |UGSS | 13.0 | 18. | |p | | | | | |04285 04285| +311029 |V1029 Cyg |200136.9+533502 |E | 16.4 | 16.8 : | |p | | | | | |03148 04065| +311030 |V1030 Cyg *|200221.1+552223 |SRA | 13.6 | 14.8 | |p |27400. | | 158. | | |03148 04065| +311031 |V1031 Cyg |200228.1+565310 |RRAB | 16.5 |< 17.5 | |p |37910.560 | | 0.4932 : |14 : | |03148 04065| +311032 |V1032 Cyg |200240.1+571627 |UG | 15.5 |< 18.0 | |p | | | | | |03148 04065| +311033 |V1033 Cyg *|200520.7+323933 |CEP | 14.4 | 15.5 | |p |30942.094 | | 4.937512 |20 | |04761 04761| +311034 |V1034 Cyg *|200534.8+305833 |EB/SD: | 9.6 | 10.6 | 9.9 |p |42938.459 | | 0.976931 | |A0 |04287 04287| +311035 |V1035 Cyg *|200541.4+580249 |RRAB | 14.8 | 16.3 | |p |37642.295 | | 0.5321 : |15 | |03148 04065| +311036 |V1036 Cyg |200803.9+404340 |E | 11.6 | 13.3 | |p |37189.377 | | 0.74412 : | | |00001 04019| +311037 |V1037 Cyg *|200849.5+351456 |EA/SD | 14.7 | 17.3 | 14.8 |p |34773.583 | | 2.70785699 |14 *| |04761 04761| +311038 |V1038 Cyg *|200753.8+515832 |EB/SD: | 14.9 |< 16.0 | 15.5 |p |37669.24 | | 1.9605 | | |03148 04065| +311039 |V1039 Cyg *|200911.8+382607 |EA/SD | 15.5 | 17.1 | 15.6 |p |33021.166 | | 1.8979184 |18 | |05352 04255| +311040 |V1040 Cyg |200841.5+541430 |EW: | 15.6 | 16.2 : | |p | | | 0.330 : | | |03148 04065| +311041 |V1041 Cyg |200848.4+585055 |S: | 15.7 | 16.4 | |p | | | | | |03148 04065| +311042 |V1042 Cyg *|201153.5+361151 |WR | 8.06 | 8.16 | |V | | | | |WC8(+OB) |04301 BD | +311043 |V1043 Cyg |201306.7+374822 |CWA | 15.2 | 16.3 | |p |33518.873 | | 8.84728 |48 | |04266 04266| +311044 |V1044 Cyg *|201449.6+524146 |EW/KW | 16.0 | 16.5 | 16.5 |p |37642.210 | | 0.42181 | | |03148 04065| +311045 |V1045 Cyg *|201500.4+523721 |EB | 15.8 | 16.4 | 16.0 |p |37668.273 | | 0.44766 | | |03148 04065| +311046 |V1046 Cyg |201647.5+363300 |CEP | 14.2 | 15.1 | |p |25526.900 | | 4.9445 |34 | |03148 02334| +311047 |V1047 Cyg *|201738.0+525847 |EA/SD | 14.6 | 15.8 | |p |27368.392 | | 0.929658 |20 | |03148 04065| +311048 |V1048 Cyg |202257.0+523248 |EA/SD | 13.3 | 15.1 | |p |27692.516 | | 0.742224 |11 *| |03148 04065| +311049 |V1049 Cyg |202553.5+534643 |IS | 13.4 | 14.6 | |p | | | | | |03148 04296| +311050 |V1050 Cyg |202916.7+543015 |E | 14.8 | 17.0 | |p |31231.497 | | | | |03148 04065| +311051 |V1051 Cyg |203100.6+564632 |EA/SD | 14.4 | 17.2 : | |p |30999.332 | | 2.54746 |10 *| |03148 04065| +311052 |V1052 Cyg |203606.4+543142 |UGSS | 15.8 |< 17.5 | |p | | | | | |03148 04065| +311053 |V1053 Cyg *|203853.7+525723 |EA | 15.5 | 16.5 | |p |31000.36 | | 2.00144 |14 | |03148 04065| +311054 |V1054 Cyg |204037.1+541521 |EA/SD | 15.8 |< 17. | |p |37904.56 | | 3.35 |10 :*| |03148 04065| +311055 |V1055 Cyg |204416.0+532350 |EA/SD: | 14.6 | 15.5 | |p |37935.414 | | 1.15945 |18 *| |03148 04065| +311056 |V1056 Cyg |205030.6+370410 |LB | 10.0 | 10.8 | |p | | | | |MB |04316 08953| +311057 |V1057 Cyg *|205853.7+441528 |INT | 10.3 | 16.5 | |B | | | | |B3-Ke(T) | 06505| +311058 |V1058 Cyg |210214.5+344633 |LB | 9.8 | 10.6 | |p | | | | |MB |04316 08953| +311059 |V1059 Cyg |210435.3+422632 |SRA | 9.3 | 10.3 | |p |36730. | | 372. : | |MA |03775 08953| +311060 |V1060 Cyg |210742.2+371409 |UGSS | 13.5 | 18. | |p | | | | | |03776 03776| +311061 |V1061 Cyg *|210720.5+520258 |EA/D | 9.4 | 9.9 | 9.5 |p |26355.233 | | 2.346656 |07 |F8 |03835 08953| +311062 |V1062 Cyg |210812.1+364927 |UGSS | 15.5 | 18. | |p | | | | | |03776 03776| +311063 |V1063 Cyg *|211009.6+484259 |M | 14.8 |< 18. | |p |38260. | | 339. : | |M9 |07010 04341| +311064 |V1064 Cyg *|211004.7+483633 |EB | 15.1 | 15.8 | 15.3 |p |27978.445 | | 0.704937 | | |07010 04341| +311065 |V1065 Cyg |211059.1+385713 |UGSS | 18. |< 20. | |p | | | | | |03776 03776| +311066 |V1066 Cyg |211703.3+440029 |EA/KE | 13.8 | 14.2 | |p |27960.490 | | 1.548602 |10 | |07010 04341| +311067 |V1067 Cyg |211848.3+410001 |M | 15.8 |< 17.5 | |p |29080. | | 265. | | |07010 04341| +311068 |V1068 Cyg *|212033.1+421639 |EA/GS/RS: | 10.5 | 12.1 | 11.2 |p |37961.570 | | 42.6813 |08 |B9+G8II-III |08998 04391| +311069 |V1069 Cyg |212110.4+405458 |LB | 16.6 |< 17.5 | |p | | | | | |07010 04341| +311070 |V1070 Cyg |212248.6+405557 |SRB | 6.5 | 8.5 | |V | | | 73.5 | |M7III |09000 08953| +311071 |V1071 Cyg |212250.5+422122 |E | 15.7 | 18. : | |p |38257.49 | | 5. /N| | |07010 04341| +311072 |V1072 Cyg |212240.2+465356 |RRAB | 16.2 | 17.6 | |p |29102.430 | | 0.615012 : |20 | |07010 04341| +311073 |V1073 Cyg *|212500.4+334115 |EW/KE | 8.23 | 8.61 | 8.57 |V |38672.5816 | | 0.7858597 | |A3Vm |03794 BD | +311074 |V1074 Cyg *|212618.2+420801 |EB/KE | 14.7 | 15.1 | 14.8 |p |28069.335 | | 1.203954 | | |07010 04341| +311075 |V1075 Cyg |212918.8+421911 |UGSS | 16.4 |< 18. | |p |27953.5 | |( 24.78 ) | | |07010 04341| +311076 |V1076 Cyg |212912.7+475253 |EA/SD: | 15.5 |< 17.0 | |p |37869.467 | | 2.03612 |20 | |00001 04341| +311077 |V1077 Cyg |212923.1+490636 |CWB: | 13.9 | 14.4 | |p |29456.5 | | 4.3533 |40 : | |07010 04341| +311078 |V1078 Cyg |212921.6+474943 |L | 15.7 | 17.3 | |p | | | | | |07010 04341| +311079 |V1079 Cyg |213003.5+464757 |EA/SD | 15.3 |< 17.3 | |p |29216.300 | | 1.742986 |15 | |07010 04341| +311080 |V1080 Cyg |213427.3+425932 |EA | 16.2 |< 17.5 | |p |38286.451 | | | | |05348 04341| +311081 |V1081 Cyg |213415.8+491126 |UGSS | 14.5 |< 17.5 | |p | | | | | |07010 04341| +311082 |V1082 Cyg |213703.6+432117 |L | 13.8 | 15.0 | |p | | | | |ea |07010 04341| +311083 |V1083 Cyg *|213733.3+490456 |EB/DM | 11.0 | 11.5 | 11.2 |p |26622.435 | | 1.62585 | |A |03235 04109| +311084 |V1084 Cyg |213751.6+473647 |EA | 15.5 | 16.2 | |p |38257.5 | | | | |07010 04341| +311085 |V1085 Cyg *|213827.3+474016 |EA | 16.3 | 16.9 | |p |37856.592 | | | | |07193 04341| +311086 |V1086 Cyg |214015.8+475922 |L | 16.3 | 16.7 | |p | | | | | |07010 04341| +311087 |V1087 Cyg |214210.1+461039 |EA | 15.6 | 16.8 | |p |37852.619 | | 2.85102 |10 | |00001 04341| +311088 |V1088 Cyg |214214.7+530404 |M | 11.7 |< 15.5 | |p |36785. | | 370. | |M6 |04395 04395| +311089 |V1089 Cyg |214417.5+475452 |UGSS | 15.0 | 18.5 | |p | | | | | |07010 04341| +311090 |V1090 Cyg |214518.4+542947 |IS: | 12.6 | 13.9 | |p | | | | | |04317 04317| +311091 |V1091 Cyg |214559.5+442500 |M | 14.2 |< 18. | |p |29270. | | 343.5 | | |07010 04341| +311092 |V1092 Cyg |215051.1+474813 |M | 14.7 |< 17.5 | |p |28820. | | 339.5 | | |07010 04341| +311093 |V1093 Cyg |215329.3+440505 |LB | 14.1 | 15.8 | |p | | | | | |07010 04341| +311094 |V1094 Cyg |215429.8+444914 |RRAB | 14.8 | 16.2 | |p |27983.430 | | 0.685168 |15 | |07010 04341| +311095 |V1095 Cyg |215542.0+472002 |E | 15.5 | 16.5 | |p |38290.612 | | | | |07010 04341| +311096 |V1096 Cyg *|215552.2+413547 |EA | 15.2 | 16.0 | |B |43346.405 | | 3.253787 |10 | |09002 09002| +311097 |V1097 Cyg |215658.8+452154 |CST | 15.5 | | |p | | | | | |07010 04341| +311098 |V1098 Cyg |215742.9+464638 |M | 15.1 |< 16.5 | |p |38280. | | 366. : | | |07010 04341| +311099 |V1099 Cyg |215744.5+455423 |SRA | 14.8 | 17. | |p |28425. | | 108.7 : | | |07010 04341| +311100 |V1100 Cyg |215836.5+451843 |LB | 16.4 |< 17.5 | |p | | | | | |07010 04341| +311101 |V1101 Cyg |220200.5+480326 |EA/SD | 15.2 |< 17.0 | |p |29102.433 | | 1.829073 |17 | |07010 04341| +311102 |V1102 Cyg *|191037.1+521315 |GAL | 15.5 | 17. | |p | | | | | |08966 03905| +311103 |V1103 Cyg |191457.7+461002 |EA | 15. | 17.5 | |p |38669.31 | | | | |03910 03910| +311104 |V1104 Cyg |191800.4+504518 |RR | 14.5 | 15.5 | |p |38651.36 | | 0.43626 | | |00001 03910| +311105 |V1105 Cyg |192043.1+293230 |M | 14.9 |< 16.5 | |p |34243.36 | | 351.6 | | |03662 03662| +311106 |V1106 Cyg |191901.5+532516 |RR | 14. | 15. | |p |38650.38 | | 2.04 /N| | |03910 03910| +311107 |V1107 Cyg |191945.3+470604 |RR | 15.5 | 16.5 | |p |38670.30 | | | | |03910 03910| +311108 |V1108 Cyg |191923.9+543409 |EA | 15. | 16. | |p |38640.47 | | | | |03910 03910| +311109 |V1109 Cyg |191932.3+534120 |RR | 16.5 | 17.5 | |p |38651.35 | | 1.07 /N| | |03910 03910| +311110 |V1110 Cyg |192208.8+300734 |M | 14.6 |< 16.6 | |p |34616. | | 265.5 | | |04427 04427| +311111 |V1111 Cyg *|192309.2+301053 |RRAB | 14.7 | 16.1 | |p |42684.285 | | 0.5559319 |18 | |09149 05166| +311112 |V1112 Cyg |192417.9+275207 |M | 16.2 |< 18. | |p |33530. | | 270. | | |03677 03677| +311113 |V1113 Cyg |192242.0+524400 |UGSS | 14. |< 17. | |p | | | | | |03910 03910| +311114 |V1114 Cyg |192436.5+282611 |UG | 14.9 |< 17. | |p | | |( 380. ) | | |04427 04427| +311115 |V1115 Cyg |192452.5+293816 |M | 15.5 |< 17.5 | |p |34990. | | 303. | | |03677 03677| +311116 |V1116 Cyg |192403.2+513953 |RR | 14. | 15. | |p |38653.43 | | | | |03910 03910| +311117 |V1117 Cyg |192555.6+291149 |EA | 13.2 | 14.1 | |p |35066.220 | | 5.2320 : |08 | |00001 03662| +311118 |V1118 Cyg |192442.9+523251 |RR | 16. | 17. | |p |38651.35 | | | | |03910 03910| +311119 |V1119 Cyg |192544.6+510932 |M | 15. | 18.5 | |p | | | | | |03910 03910| +311120 |V1120 Cyg |192739.3+345340 |LB | 14.0 | 15.5 | |p | | | | | |09150 09150| +311121 |V1121 Cyg |192618.1+535328 |RR | 16. | 17. | |p |38614.52 | | | | |03910 03910| +311122 |V1122 Cyg *|192825.1+305412 |RR | 14.5 | 16.3 | |p |41843.491 | | 0.3632511 |35 | |09149 05166| +311123 |V1123 Cyg |192934.7+491736 |M: | 14.5 | 17.5 | |p | | | | | |03905 03905| +311124 |V1124 Cyg |193139.8+300934 |M | 14.8 |< 17. | |p |34978. | | 293.3 | | |03662 03662| +311125 |V1125 Cyg |193148.4+315203 |LB | 9.0 | 9.9 | |p | | | | |M5 |03662 03662| +311126 |V1126 Cyg |193238.4+293526 |M | 15.0 |< 17.1 | |p |34234. | | 241.4 | | |04427 04427| +311127 |V1127 Cyg |193205.7+511749 |RR | 15. | 16. | |p |38652.47 | | | | |03910 03910| +311128 |V1128 Cyg |193328.6+302956 |M: | 15.5 | 18.5 : | |p | | | | | |03662 03662| +311129 |V1129 Cyg |193352.1+280457 |M | 15.3 |< 17. | |p |35002. | | 270.5 | | |04427 04427| +311130 |V1130 Cyg *|193403.3+394241 |EA/SD | 12.8 | 13.8 | 12.9 |p |32821.8019 | | 0.562561247 |13 *| |03722 03722| +311131 |V1131 Cyg |193444.2+284157 |LB | 15.9 | 16.6 | |p | | | | | |09150 09150| +311132 |V1132 Cyg |193432.2+371646 |M | 13.9 | 17.8 | |p |33700. | | 350. |50 | |03722 03722| +311133 |V1133 Cyg |193418.3+425515 |M | 12.9 |< 17.1 | |p |33910. | | 350. | | |03722 03722| +311134 |V1134 Cyg |193532.3+360504 |M | 13.8 |< 17.9 | |p |33910. | | 340. | | |03722 03722| +311135 |V1135 Cyg |193629.8+295354 |SR | 13.7 | 14.6 | |p |34246. | | 78.16 | | |03662 03662| +311136 |V1136 Cyg *|193750.0+285036 |EA | 12.5 | 13.3 | 13.2 |p |35453.235 | | 3.462766 |10 *| |06178 03662| +311137 |V1137 Cyg |193654.8+510346 |RR | 16. | 17. | |p |38708.23 | | 2.00 /N| | |03910 03910| +311138 |V1138 Cyg |193855.8+342915 |M | 14.7 |< 20. | |p |35035. | | 367. | | |03677 03677| +311139 |V1139 Cyg |193921.7+305715 |RRAB | 15.6 | 16.8 | |p |44192.193 | | 0.59743956 |23 : | |09149 05166| +311140 |V1140 Cyg |193947.0+280512 |M | 15.3 |< 20. | |p |33535. | | 244. | |M6.5-M8 |03677 03677| +311141 |V1141 Cyg *|193952.9+363947 |EW/KE | 11.3 | 11.8 | 11.8 |p |38001.404 | | 0.84909682 | |A7: |03928 00319| +311142 |V1142 Cyg *|193957.9+335530 |EA/D | 13.1 | 13.8 | 13.4 |p |33512.368 | | 5.762246 |08 | |03662 03662| +311143 |V1143 Cyg *|193841.2+545826 |EA/DM | 5.85 | 6.37 | 6.06 |V |42212.7651 | | 7.6407613 |02 |F5V+F5V |00001 BD | +311144 |V1144 Cyg |193927.0+553127 |RRAB | 15.7 | 17.2 | |p |31029.383 | | 0.662008 |20 | |03183 02370| +311145 |V1145 Cyg |194227.4+281428 |LB | 11.2 | 11.93 | |B | | | | |M3 |03662 03662| +311146 |V1146 Cyg |194411.7+281922 |M | 15.2 |< 18. | |p |33545. | | 398. | |M7-M9 |03677 03677| +311147 |V1147 Cyg |194552.5+321540 |E | 11.9 | 12.7 | |p |34119.561 | | 2.24460 : | | |00001 03662| +311148 |V1148 Cyg |194442.7+525535 |EA | 15. | 16. | |p |38671.32 | | | | |03910 03910| +311149 |V1149 Cyg |194440.8+543914 |EA | 16. | 17. | |p |38667.35 | | | | |03910 03910| +311150 |V1150 Cyg |194608.4+431735 |M | 13.2 |< 17.8 | |p |33820. | | 285. | | |03722 03722| +311151 |V1151 Cyg |194751.1+295136 |E | 13.8 | 14.3 | |p |35344.523 | | 168.82 /N| | |03662 03662| +311152 |V1152 Cyg |194800.7+362553 |LB | 13.0 | 14.3 | |p | | | | | |09150 09150| +311153 |V1153 Cyg |194814.5+345202 |UGSS | 16.4 |< 19. | |p | | | | | |03722 03722| +311154 |V1154 Cyg |194815.5+430737 |CEP | 8.95 | 9.37 | |V |37706.721 | | 4.925537 |31 |G2 |08053 09151| +311155 |V1155 Cyg |194826.4+423329 |M | 14. |< 17. | |p |33590. | | 410. | | |03722 03722| +311156 |V1156 Cyg |195037.1+292117 |EA/GS: | 13.5 | 14.3 | |p |35368.895 | | 44.5647 |08 *| |03662 03662| +311157 |V1157 Cyg *|195109.7+312014 |EA/DM: | 13.5 | 14.2 | 13.6 |p |34601.480 | | 12.66502 |10 *| |03662 03662| +311158 |V1158 Cyg *|195130.7+310635 |EA/DS | 14.9 | 16.3 |( 0.04 )|p |35432.469 | | 11.64571 |15 | |03662 03662| +311159 |V1159 Cyg |195207.4+391428 |EA/SD | 15.3 | 16.4 | |p |33561.199 | | 1.92157869 |12 *| |05701 05701| +311160 |V1160 Cyg |195246.1+354412 |M | 16.2 |< 17.8 | |p |38190. | | 395. | | |05701 05701| +311161 |V1161 Cyg *|195417.2+425722 |EA/D | 13.5 | 14.2 | |p |32729.449 | | 3.1947143 |05 | |03722 03722| +311162 |V1162 Cyg *|195445.7+364711 |NL: | 15.8 |< 17.6 | |p |32618. |1948 | | | |05701 05701| +311163 |V1163 Cyg |195455.8+365220 |M | 14.0 |< 17.6 | |p |38220. | | 315. | |M |05701 05701| +311164 |V1164 Cyg |195457.3+423718 |LB | 14.7 | 15.6 | |p | | | | | |09150 09150| +311165 |V1165 Cyg |195601.4+395854 |LB | 13.6 | 15.6 | |p | | | | | |09150 09150| +311166 |V1166 Cyg |195624.4+395043 |LB | 15.3 | 16.7 | |p | | | | | |09150 09150| +311167 |V1167 Cyg |195507.3+564052 |SR | 15.3 | 17.0 | |p |37952. | | | | |03148 04065| +311168 |V1168 Cyg |195532.3+524713 |LB: | 15.2 | 15.6 | |p | | | | | |03148 04065| +311169 |V1169 Cyg |195627.1+395835 |M | 14.8 |< 19. | |p |35025. | | 378. | |M |05701 05701| +311170 |V1170 Cyg |195701.4+304348 |EA | 15.5 |< 17.5 | |p | | | | | |03903 03903| +311171 |V1171 Cyg *|195757.3+335301 |EA/KE: | 10.0 | 10.3 | 10.3 |p |40380.5492 | | 1.4621239 |15 |B9 |06179 03662| +311172 |V1172 Cyg |195812.4+331229 |LB | 11.6 | 12.7 | |p | | | | |M6 |03662 03662| +311173 |V1173 Cyg |200112.6+361255 |LB | 12.3 | 13.70 | |B | | | | |M6eaIII |09150 09150| +311174 |V1174 Cyg |200356.0+311540 |EA | 14.5 | 17. | |p | | | | | |03903 03903| +311175 |V1175 Cyg *|200615.9+575936 |EB/KE | 15.9 | 16.5 | 16.5 |p |37904.570 | | 1.33294 | | |03148 04065| +311176 |V1176 Cyg *|200701.2+523115 |SRA | 15.4 | 16.3 | |p |30970. | | 121. | | |03148 04065| +311177 |V1177 Cyg |200913.6+382350 |IS | 15.4 |< 17.2 | |p | | | | | |03722 03722| +311178 |V1178 Cyg |200853.0+533828 |RRAB | 15.0 | 16.4 | |p |37642.251 | | 0.457128 |20 | |03148 04065| +311179 |V1179 Cyg |200854.4+574747 |EA | 15.1 | 16.0 | |p |37907.573 | | 2.42210 |12 :*| |03148 04065| +311180 |V1180 Cyg |201015.2+520342 |LB | 14.0 | 14.6 | |p | | | | | |03148 04065| +311181 |V1181 Cyg |201025.8+543844 |RR | 16.5 | 17. | |p | | | | | |03148 04065| +311182 |V1182 Cyg |201100.5+545226 |LB: | 16.2 | 16.7 | |p | | | | | |03148 04065| +311183 |V1183 Cyg |201321.5+374444 |LB | 10.5 | 11.7 | |p | | | | |M6 |09150 09150| +311184 |V1184 Cyg |201233.1+541616 |RR | 16.2 | 17.0 | |p |37642.210 | | 0.58771 : | | |00001 04065| +311185 |V1185 Cyg |201420.0+334710 |M | 14.5 |< 17.5 | |p | | | 345. : | | |03903 03903| +311186 |V1186 Cyg |201343.4+562205 |SR | 15.5 | 17.0 | |p |30950. | | 283. | | |03148 04065| +311187 |V1187 Cyg *|201641.8+415746 |EA/DM | 10.88 | 11.23 | 11.19 |V |38634.5462 | | 7.535 |03 *|OB |03933 | +311188 |V1188 Cyg *|201607.1+520825 |EB/SD | 13.7 | 15.4 | 14.3 |p |29376.454 | | 0.851662 | | |03148 04065| +311189 |V1189 Cyg *|201606.9+515626 |EB/KE | 13.1 | 13.7 | 13.7 |p |37906.516 | | 1.042 | | |03148 04065| +311190 |V1190 Cyg |201620.4+540916 |SRA | 12.5 | 14.4 | |p |31230. | | 142. | | |03148 04065| +311191 |V1191 Cyg *|201650.8+415741 |EW/KW | 10.82 | 11.15 | 11.11 |V |38634.5471 | | 0.313377 | | |03941 | +311192 |V1192 Cyg |202019.7+561316 |E | 15.2 | 15.8 | |p |37935.375 | | | | |03148 04065| +311193 |V1193 Cyg *|202111.5+593604 |EW | 13.8 | 14.3 | 14.3 |p |37668.228 | | 0.674 | | |03148 04065| +311194 |V1194 Cyg |202431.7+294305 |EA | 15. | 16. | |p | | | | | |03903 03903| +311195 |V1195 Cyg |202401.9+551257 |LB | 14.6 | 15.2 | |p | | | | |M8 |03148 04065| +311196 |V1196 Cyg *|202441.3+543000 |EB/KE | 12.0 | 12.3 |( 0.05 )|p |26655.248 | | 1.26583 | | |03148 04065| +311197 |V1197 Cyg |203057.2+564632 |EA/SD: | 15.0 | 16.1 | |p |36286.582 | | 0.73783 |20 *| |03148 04065| +311198 |V1198 Cyg |203222.3+521942 |LB | 14.8 |< 18. | |p | | | | | |03148 04065| +311199 |V1199 Cyg |203408.0+530204 |SR | 15.8 | 16.5 | |p |37680. | | 95. : | | |03148 04065| +311200 |V1200 Cyg *|203352.1+574021 |EW/KW | 15.3 | 16.1 : | 16.1 : |p |37642.230 | | 0.36906 | | |03148 04065| +311201 |V1201 Cyg |203858.6+450533 |M: | 15. |< 17.5 | |p | | | | | |03903 03903| +311202 |V1202 Cyg |203901.0+533134 |LB | 11.8 | 12.7 | |p | | | | | |03148 04065| +311203 |V1203 Cyg |204212.6+325122 |RR | 16.5 | 17.5 | |p | | | | | |03776 03776| +311204 |V1204 Cyg |204410.8+464904 |EA | 14.5 | 17.5 | |p |39355.51 | | | | |03903 03903| +311205 |V1205 Cyg |204451.4+344915 |EA | 17. | 18. | |p |38614.42 | | | | |03776 03776| +311206 |V1206 Cyg |204515.5+343730 |EA | 18. | 19. | |p |38622.44 | | 30.03 /N| | |03776 03776| +311207 |V1207 Cyg |204554.6+343921 |EA | 17.5 | 19. | |p |38642.33 | | | | |03776 03776| +311208 |V1208 Cyg |204627.5+324934 |EA | 18. | 19.5 | |p |38614.42 | | 39.00 /N| | |03776 03776| +311209 |V1209 Cyg |204656.7+332114 |RR | 17. | 18. | |p |38652.47 | | | | |03776 03776| +311210 |V1210 Cyg *|204658.9+330045 |SR | 17. | 18.5 | |p | | | | | |03776 03776| +311211 |V1211 Cyg |204710.2+350456 |EA | 14. | 15. | |p |38651.53 | | | | |03776 03776| +311212 |V1212 Cyg *|204852.6+345716 |SR | 14.5 | 16. | |p | | | | | |03776 03776| +311213 |V1213 Cyg |204905.3+343152 |EA | 17. | 18.5 | |p |38636.34 | | | | |03776 03776| +311214 |V1214 Cyg |204923.9+345640 |RR | 16. | 17. | |p |38647.40 | | | | |03776 03776| +311215 |V1215 Cyg |204921.7+344411 |EA | 16. | 17. | |p |38651.53 | | | | |03776 03776| +311216 |V1216 Cyg |204951.4+352759 |EA | 17. | 19. | |p |38622.44 | | | | |03776 03776| +311217 |V1217 Cyg |205030.2+343713 |EA | 17. | 18. | |p |38652.47 | | | | |03776 03776| +311218 |V1218 Cyg *|205225.3+345516 |EA | 16.5 | 18.5 | |p |38636.34 | | | | |03776 03776| +311219 |V1219 Cyg |205407.4+413458 |IN | 15. |< 20. | |p | | | | |ea |03903 03903| +311220 |V1220 Cyg |210007.6+474841 |E: | 15.5 | 16.5 | |p |39390.48 | | | | |03903 03903| +311221 |V1221 Cyg |210102.8+393249 |M | 15. | 20. : | |p |39380. :| | | | |03903 03903| +311222 |V1222 Cyg |210302.0+402453 |M: | 15.5 |< 17.5 | |p | | | | | |03910 03910| +311223 |V1223 Cyg |210442.9+411245 |M | 14. |< 17.5 | |p |38660. :| | | | |03910 03910| +311224 |V1224 Cyg |210440.3+445718 |RR: | 15.5 | 17. | |p | | | | | |03903 03903| +311225 |V1225 Cyg *|210616.2+461802 |M | 11.9 |< 17.5 | |B |41676. | | 379.5 | |M:e |08845 08845| +311226 |V1226 Cyg |210723.9+382451 |EA | 16. | 17. | |p |38651.45 | | | | |03776 03776| +311227 |V1227 Cyg |210826.8+454900 |RR | 16. | 17. | |p |39389.52 | | | | |03903 03903| +311228 |V1228 Cyg |210857.3+391731 |EA/SD | 13.2 | 15.3 | |p |28809.445 | | 1.66679 |15 | |03160 01089| +311229 |V1229 Cyg |210923.1+381145 |EA | 13. | 15. | |p |38643.44 | | | | |03776 03776| +311230 |V1230 Cyg |211003.7+365443 |EA | 15.5 | 17. | |p |38651.45 | | | | |03776 03776| +311231 |V1231 Cyg |210947.6+461608 |M: | 16. |< 17.5 | |p |39395. :| | | | |03903 03903| +311232 |V1232 Cyg |211123.8+441320 |M: | 16.5 |< 18. | |p | | | | | |03903 03903| +311233 |V1233 Cyg |211147.0+381738 |CEP: | 15.6 | 16.9 | |B | | | | | |09072 09072| +311234 |V1234 Cyg |211249.5+412329 |M: | 16.5 |< 18.0 | |B |42723. | | | | |09072 09072| +311235 |V1235 Cyg |211419.8+380059 |SR | 15.5 | 17.5 | |p | | | | |S |03776 03776| +311236 |V1236 Cyg *|211621.2+390617 |SR | 18.5 |< 19.5 | |p | | | | | |03776 03776| +311237 |V1237 Cyg |211726.9+373447 |RR | 15. | 16.5 | |p |38616.40 | | | | |03776 03776| +311238 |V1238 Cyg |211902.3+365408 |RR: | 17. | 18.5 | |p |38620.38 | | | | |03776 03776| +311239 |V1239 Cyg |211945.3+382158 |E: | 14.1 | 15.4 | |p |38613.56 | | | | |03776 03776| +311240 |V1240 Cyg |212228.7+373943 |RRAB | 13.2 | 14.4 | |p |42954.464 | | 0.457813 |17 | |09008 09008| +311241 |V1241 Cyg |212321.8+465211 |S: | 16.3 | 17.5 | |p | | | | | |05348 05348| +311242 |V1242 Cyg |212448.7+450055 |M | 15.5 |< 17.5 | |p | | | | | |03903 03903| +311243 |V1243 Cyg |212544.1+453233 |M | 13.9 |< 17.0 | |p |37930. | | 377. | | |05348 03903| +311244 |V1244 Cyg |212626.7+452244 |EA | 15.5 | 17. | |p |39352.48 | | | | |03903 03903| +311245 |V1245 Cyg |212654.0+460043 |SR | 15.7 | 17.2 | |p |37104. | | 76. | | |05348 05348| +311246 |V1246 Cyg |212723.8+432948 |E | 13.7 | 14.1 | |p |28395.489 | | | | |03942 03942| +311247 |V1247 Cyg |212939.8+481500 |EA | 16.3 | 17.5 | |p |37553.430 | | 2.7511 |10 | |07193 05348| +311248 |V1248 Cyg |213624.3+432844 |I: | 16.3 |< 17.3 | |p | | | | | |05348 05348| +311249 |V1249 Cyg |213736.2+442744 |RRAB | 16.2 | 17.2 | |p |37112.605 | | 0.474799 |20 | |05348 05348| +311250 |V1250 Cyg |213940.6+431820 |SRA | 15.5 | 17.3 | |p |37525. | | 265. | | |05348 05348| +311251 |V1251 Cyg |214054.4+483943 |UG: | 12.5 |< 15. | |p |38313. | | | | |03944 03944| +311252 |V1252 Cyg |195148.9+390037 |LB | 13.6 | 15.3 | |p | | | | | |05701 05701| +311253 |V1253 Cyg |191857.0+445725 |SR: | 15. | 16. | |p | | | | | |03910 03910| +311254 |V1254 Cyg |192203.4+291950 |LB: | 15.1 | 16.0 | |p | | | | | |04427 04427| +311255 |V1255 Cyg *|192836.6+311049 |EA/SD/RS: | 15.2 | 17.6 : | |p |42668.344 | | 3.4253217 |10 : | |09149 05166| +311256 |V1256 Cyg *|192908.9+295708 |EW | 13.8 | 14.3 | 14.1 |p |35118.867 | | 0.5404102 | | |05540 05540| +311257 |V1257 Cyg |192945.6+281612 |M | 15.4 |< 20. | |p |44205. | | 269.77 | | |09149 05541| +311258 |V1258 Cyg |192935.8+322246 |EA | 16.3 |< 17.9 | |p |35061.315 | | | | |05540 05540| +311259 |V1259 Cyg |192943.9+400538 |EA | 13.6 | 15.4 | |p |32848.681 | | 8.2458956 |09 *| |05540 05540| +311260 |V1260 Cyg |193120.2+312207 |CST: | 15.6 : | 17.0 : | |p | | | | | |09149 05166| +311261 |V1261 Cyg |193254.0+322854 |EA/D | 15.3 | 16.0 | |p |33896.090 | | 3.7885576 |12 *| |05540 05540| +311262 |V1262 Cyg |193244.5+394305 |LB | 14.3 | 16.0 | |p | | | | | |05540 05540| +311263 |V1263 Cyg |193156.0+520159 |EA | 13.5 | 14.5 | |p |39023.395 | | 1.997 /N| |A2 |08656 03905| +311264 |V1264 Cyg |193443.9+435645 |ACV | 6.48 | 6.67 | |V |40848.258 | | 1.84534 |40 |B9p(Si-Cr-Sr) |00001 BD | +311265 |V1265 Cyg |193810.3+351150 |M | 15.7 |< 17.7 | |p |32775. | | 245. | | |05541 05541| +311266 |V1266 Cyg |193810.2+382341 |M | 12.8 |< 17.9 | |p |34510. | | 405. | | |05353 05353| +311267 |V1267 Cyg |193854.9+303046 |E: | 14.6 | 15.5 | |p |38676.272 | | | | |05166 05166| +311268 |V1268 Cyg |193931.7+301139 |M | 16.4 |< 19. | |p |34200. | | 300. : | | |05541 05541| +311269 |V1269 Cyg |193945.1+334916 |M | 14.4 |< 17.5 | |p |33875. | | 317. | | |05541 05541| +311270 |V1270 Cyg |194019.0+302754 |LB | 14.8 | 16.4 | |p | | | | | |09012 09012| +311271 |V1271 Cyg |194107.9+322408 |M | 15.4 |< 17.5 | |p |32785. | | 328. | | |05541 05541| +311272 |V1272 Cyg |194142.9+310436 |M | 15.4 |< 20. | |p |35000. | | 329. | | |05541 05541| +311273 |V1273 Cyg *|194149.2+311115 |EB/SD: | 16.2 | 17.2 | 16.5 |p |33928.986 | | 0.8101108 | | |09012 09012| +311274 |V1274 Cyg |194131.0+400052 |M | 14.0 |< 20. | |p |34510. | | 210. | | |05353 05353| +311275 |V1275 Cyg *|194139.8+400249 |M | 15.7 |< 17.4 | |p |33090. | | 225. | | |05353 05353| +311276 |V1276 Cyg |194249.1+291954 |DSCTC | 6.50 | 6.53 | |V | | | 0.088 | |F3III |06255 06183| +311277 |V1277 Cyg |194241.8+351431 |M | 15.1 | 17.6 | |p |32750. | | 335. | | |05353 05353| +311278 |V1278 Cyg |194257.3+344459 |M | 14.8 |< 21. | |p |33175. | | 290. | | |05353 05353| +311279 |V1279 Cyg |194314.2+293314 |M | 16.0 |< 21. | |p |34630. | | 322. | |M3-M8 |05541 05541| +311280 |V1280 Cyg |194343.7+344054 |M | 14.5 |< 17.2 | |p |33800. | | 405. | | |05353 05353| +311281 |V1281 Cyg *|194352.7+341446 |EA | 15.3 | 16.4 | 15.4 |p |34193.007 | | 2.9644389 |10 | |09012 09012| +311282 |V1282 Cyg |194357.4+402046 |M | 15.9 |< 21. | |p |33160. | | 270. | | |05353 05353| +311283 |V1283 Cyg |194435.8+313504 |M | 15.4 |< 17.6 | |p |33770. | | 286. | | |05541 05541| +311284 |V1284 Cyg |194423.0+401242 |M | 14.7 | 17.1 | |p |33325. | | 270. |44 | |05353 05353| +311285 |V1285 Cyg *|194449.5+355935 |UGZ: | 13.1 | 14.8 | |p | | | | | |09012 09012| +311286 |V1286 Cyg |194534.3+293847 |M | 15.5 |< 17.5 | |p |34140. | | 266. | |M7-M8 |05541 05541| +311287 |V1287 Cyg |194539.6+401925 |M | 16.2 |< 19. | |p |33370. | | 320. | | |07749 07749| +311288 |V1288 Cyg |194601.3+360544 |M | 15.0 |< 18. | |p |33510. | | 350. | | |05542 05542| +311289 |V1289 Cyg |194602.5+364637 |M | 14.5 |< 17.8 | |p |32710. | | 190. | | |05542 05542| +311290 |V1290 Cyg | | | | | | | | | | | | |=IQ Cyg +311291 |V1291 Cyg |194729.9+381025 |M | 16.1 |< 18. | |p |34320. | | 390. | | |05542 05542| +311292 |V1292 Cyg |194800.4+415239 |M | 16.1 |< 18.2 | |p |34150. | | 270. | | |07749 07749| +311293 |V1293 Cyg |195051.4+335552 |M | 14.0 |< 19. | |p |33365. | | 352. | | |05542 05542| +311294 |V1294 Cyg |195053.8+371357 |M | 14.0 |< 16. | |p |32800. | | 279. | |M9 |05407 01222| +311295 |V1295 Cyg |195133.5+403940 |M | 14.5 | 18. | |p |33225. | | 360. | | |07749 07749| +311296 |V1296 Cyg |195230.4+403757 |M | 14.7 |< 18.5 | |p |33590. | | 445. | | |05542 05542| +311297 |V1297 Cyg |195513.4+393304 |LB | 13.7 | 14.9 | |p | | | | | |07749 07749| +311298 |V1298 Cyg |195916.9+412047 |M | 15.7 |< 19. | |p |34995. | | 315. | | |05542 05542| +311299 |V1299 Cyg |200051.9+390331 |M | 16.7 |< 18.2 | |p |34685. | | 385. | |M |07749 07749| +311300 |V1300 Cyg |200144.3+372745 |M | 14.0 |< 18. | |p |33790. | | 320. | |M |07749 07749| +311301 |V1301 Cyg |200212.7+373806 |M | 16.5 |< 21. | |p |34100. | | 485. | |M |07749 07749| +311302 |V1302 Cyg *|200226.2+363353 |EA/D | 13.1 | 13.6 |( 0.05 )|p |33442.005 | | 2.6153526 |13 | |09012 09012| +311303 |V1303 Cyg |200243.9+373621 |M | 15. |< 18.5 | |p |41160. | | 380.2 |45 |C |00001 06566| +311304 |V1304 Cyg |200316.4+365457 |IS: | 15.4 |< 17.9 | |p | | | | | |09012 09012| +311305 |V1305 Cyg *|200453.1+374512 |EB/KE: | 11.4 | 11.8 | 11.6 |p |25426.510 | | 0.9009015 | |A8 |05408 05408| +311306 |V1306 Cyg |200443.6+394232 |L | 14.9 | 16.0 | |p | | | | | |05352 05352| +311307 |V1307 Cyg *|200801.7+413248 |RRAB | 15.3 | 15.8 | |p |37188.320 | | 0.52036 |10 : | |07193 05352| +311308 |V1308 Cyg |200803.0+413231 |RRAB | 15.8 | 17.2 | |p |37259.220 | | 0.6176334 |20 | |07193 05352| +311309 |V1309 Cyg |200907.4+405900 |M | 15.6 |< 18.0 | |p |36169. | | 276. | | |05352 05352| +311310 |V1310 Cyg |200932.8+410023 |UGSS | 15.9 |< 19. | |p | | |( 29. ) | | |05352 05352| +311311 |V1311 Cyg |200938.7+405516 |EA/KE: | 16.3 | 17.0 | |p |40124.465 | | 1.089028 |05 | |07193 05352| +311312 |V1312 Cyg |201049.1+410128 |EA | 16.0 | 17.2 | |p |37190.335 | | 2.661593 | | |07193 05352| +311313 |V1313 Cyg |201115.2+404501 |SRB | 15.8 | 17.1 | |p | | | 80. | | |05352 05352| +311314 |V1314 Cyg |201216.7+405232 |EA | 16.2 | 16.8 | |p |33752.594 | | 0.6297585 |10 | |07193 05352| +311315 |V1315 Cyg *|201205.1+413149 |EB | 15.1 | 16.2 | 15.3 |p |37468.500 | | 0.4472290 | | |07193 05352| +311316 |V1316 Cyg *|201213.7+424552 |UGSU: | 14.5 |< 17.5 | |p | | | | | |05352 05352| +311317 |V1317 Cyg |201339.5+410621 |M | 14.1 |< 19.0 | |p |36396. | | 547. | | |05352 05352| +311318 |V1318 Cyg *|202030.6+412128 |INS | 15.4 | 18.2 | |p | | | | |ea |03333 03333| +311319 |V1319 Cyg |202051.1+390046 |SRA | 12.2 | 14.6 | |p |36789. | | 41.87 | | |05352 05352| +311320 |V1320 Cyg |202122.2+391958 |EA/DS: | 15.9 |< 18.5 | |p |37140.5 | | 40.9 |05 | |05352 05352| +311321 |V1321 Cyg *|202328.7+413158 |EA | 12.8 | 13.5 | |p |36808.378 | | 0.3640901 |30 : | |05352 05352| +311322 |V1322 Cyg *|202346.0+383003 |GCAS | 8.77 | 9.70 | |V | | | | |B0pe |09013 08953| +311323 |V1323 Cyg |202348.1+380316 |IS: | 15.1 | 16.0 | |p | | | | | |07193 05352| +311324 |V1324 Cyg |202655.8+400227 |IS | 14.7 | 16.5 | |p | | | | | |05352 05352| +311325 |V1325 Cyg |202847.0+394515 |IS | 16.0 |< 17.0 | |p | | | | | |05352 05352| +311326 |V1326 Cyg *|203430.6+541237 |EA | 11.3 | 11.8 | 11.8 |p |28382.785 | | 16.6817 |06 *| |05415 01320| +311327 |V1327 Cyg *|203952.5+323028 |SR | 15.5 | 18.5 | |p | | | | | |03776 03776| +311328 |V1328 Cyg |205052.9+331205 |SR | 16. | 18. | |p | | | | | |03776 03776| +311329 |V1329 Cyg *|205101.3+353453 |E+NC | 12.1 | 18. | |B |24869.9 | | 950.07 | |pec |09015 05703| +311330 |V1330 Cyg |205244.8+355928 |NA | 7.5 | 18.1 | |B |40722. :|1970 | | |pec(NOVA) |07334 06184| +311331 |V1331 Cyg *|210109.2+502145 |INST | 10.59 | 13.08 | |V | | | | |A8-F0eq(T) |05548 05418| +311332 |V1332 Cyg |211713.4+445450 |LB | 14.9 | 15.8 | |p | | | | | |07010 04341| +311333 |V1333 Cyg |211857.5+390339 |EA | 16.5 | 17. | |p |38641.36 | | | | |03776 03776| +311334 |V1334 Cyg *|211922.2+381415 |DCEPS | 5.77 | 5.96 | |V |40124.533 | | 3.332816 |50 |F2Ib |09016 BD | +311335 |V1335 Cyg |212118.7+455124 |LB | 10.7 | 11.7 | |p | | | | |M0 |05420 05420| +311336 |V1336 Cyg *|212348.5+452923 |CEP: | 15.1 | 16.0 | |p |37848.54 | | 31.77 : |24 : | |05348 04341| +311337 |V1337 Cyg |212428.4+423734 |SR: | 16. | 17. | |p | | | | | |03903 03903| +311338 |V1338 Cyg |213504.6+405125 |M | 13.8 |< 17.1 | |B |42671. | | 284.1 | |S |09008 09008| +311339 |V1339 Cyg |214208.4+454557 |SRB | 5.9 | 7.1 | |V | | | 35. : | |M3-M6 |05422 08953| +311340 |V1340 Cyg |214349.1+454614 |SRB | 15.2 | 16.5 | |p | | | 330. : | | |05348 04341| +311341 |V1341 Cyg *|214441.1+381916 |E+XI | 14.41 | 15.78 | 15.4 |B |43162.1 | | 9.8435 | |A5-F2III-IVep |09139 05552| +311342 |V1342 Cyg |215721.7+495359 |LB | 15.3 | 17.5 | |B | | | | | |06566 03905| +311343 |V1343 Cyg |192403.4+283817 |SRB | 13.8 | 14.6 | |p | | | | | |05874 05874| +311344 |V1344 Cyg |192833.3+314817 |RRAB | 16.2 | 17.6 | |p |34097.171 | | 0.4059592 |17 | |05875 05875| +311345 |V1345 Cyg *|193128.6+294623 |EA/SD | 14.8 | 16.3 | 15.0 : |p |39031.390 | | 1.427184 |12 | |05876 05876| +311346 |V1346 Cyg |193237.9+282209 |SRB | 14.1 | 15.7 | |p | | | | | |05874 05874| +311347 |V1347 Cyg |193401.2+341305 |SRB | 13.4 | 14.6 | |p | | | | | |05875 05875| +311348 |V1348 Cyg |193803.9+292345 |EA/SD | 14.7 |< 16.5 | |p |39035.374 | | 5.580363 |09 | |05876 05876| +311349 |V1349 Cyg |193805.1+324449 |SRB | 14.7 | 16.8 | |p | | | | | |05875 05875| +311350 |V1350 Cyg |193927.5+310700 |SRA | 14.7 | 16.3 | |p |34990. | | 520. : | | |05875 05875| +311351 |V1351 Cyg |194204.2+552748 |LB | 6.33 | 6.55 | |V | | | | |M5IIIa |05840 BD | +311352 |V1352 Cyg |194429.8+301450 |SRB | 14.6 | 17.0 | |p | | | | | |05875 05875| +311353 |V1353 Cyg |194640.8+372543 |SRB | 11.6 | 12.8 | |p | | | | | |05874 05874| +311354 |V1354 Cyg *|194648.7+372013 |EA/SD | 15.3 | 17.0 |( 0.04 )|p |34165.328 | | 2.9965078 |12 *| |05874 05874| +311355 |V1355 Cyg |194955.7+375917 |EA/KE | 14.3 | 14.9 | |p |33015.981 | | 1.19496873 |18 *| |05874 05874| +311356 |V1356 Cyg *|195639.4+295929 |EB/DM | 10.1 | 10.5 | 10.4 |p |40371.4095 | | 1.95669202 | |B0V |05877 BD | +311357 |V1357 Cyg *|195821.7+351206 |ELL+XF | 8.72 | 8.93 | 8.88 |V |41561.22 | | 5.599824 | |O9.7IabpeV |09020 07267| +311358 |V1358 Cyg |195836.8+370815 |EA/D | 14.6 | 15.2 | |p |33420.223 | | 2.0325492 |16 *| |05874 05874| +311359 |V1359 Cyg |195846.4+365614 |EA | 16.6 | 17.9 | |p |33530.120 | | 3.1458645 |14 *| |05874 05874| +311360 |V1360 Cyg |200043.4+351438 |M | 15.6 | 19.0 | |p |33355. | | 397. | | |05875 05875| +311361 |V1361 Cyg |200123.2+400638 |M | 16.3 | 20.0 | |p |33525. | | 329. | | |05875 05875| +311362 |V1362 Cyg |200341.6+362532 |E: | 8.09 | 8.21 | |V | | | 7. : | |B5II:nea |06034 BD | +311363 |V1363 Cyg |200611.6+334238 |UGZ | 13.0 |< 17.6 | |p | | | | | |05875 05875| +311364 |V1364 Cyg |200729.5+352047 |DCEP | 14.8 | 17.0 | |p |32461.64 | | 12.9764 |47 | |05875 05875| +311365 |V1365 Cyg |200912.2+391337 |EA | 17.6 |< 18.2 | |p |39739.430 | | 1.72306 |15 : | |07193 05352| +311366 |V1366 Cyg |200906.8+412218 |LB | 16.0 | 17.1 | |p | | | | | |05352 05352| +311367 |V1367 Cyg |201034.7+403848 |M | 16.0 |< 18.8 | |p |37140. | | 364. | | |05352 05352| +311368 |V1368 Cyg |201109.5+384006 |LB: | 16.5 |< 17.5 | |p | | | | |M |05352 01222| +311369 |V1369 Cyg |201109.8+513657 |RRAB | 13.6 | 15.3 | |p |25505.360 | | 0.56547 |20 | |05957 05957| +311370 |V1370 Cyg |201350.0+402823 |RR | 16.6 | 17.9 | |p |39765.35 | | 0.3354 : | | |05352 05352| +311371 |V1371 Cyg |201409.0+402951 |IS: | 12.8 | 14.9 | |p | | | | | |05352 05352| +311372 |V1372 Cyg *|201336.3+533934 |ACV | 7.33 | 7.39 | |V | | | 18.2 | |A4p(Cr) |09023 BD | +311373 |V1373 Cyg |201507.2+384655 |EA/SD | 16.8 | 18.0 | |p |40117.430 | | 1.15720 |20 : | |07193 05352| +311374 |V1374 Cyg *|201611.4+421109 |EA | 16.5 | 17.8 | 17.7 |p |36867.269 | | 0.37236424 |15 *| |05352 05352| +311375 |V1375 Cyg |201637.6+401848 |SR: | 16.8 | 18.5 | |p | | | | | |05352 05352| +311376 |V1376 Cyg |201645.4+381015 |SR: | 17.3 |< 18.6 | |p |39763. | | | | |05352 05352| +311377 |V1377 Cyg |201649.5+382110 |UG: | 17.1 | 18.5 | |p | | |( 17. ) | | |05352 05352| +311378 |V1378 Cyg |202007.2+374505 |L: | 17.2 |< 18.5 | |p | | | | | |05352 05352| +311379 |V1379 Cyg |202032.5+412128 |IN | 15.4 |< 18.5 | |p | | | | | |05352 03333| +311380 |V1380 Cyg |202223.9+384725 |UV: | 15.3 | 16.0 | |p | | | | |ea |05352 05352| +311381 |V1381 Cyg |202233.3+412904 |UV: | 16.8 | 18.0 | |p |40056.448 | | | | |05352 05352| +311382 |V1382 Cyg |202254.4+381023 |LB: | 17.5 |< 18.2 | |p | | | | | |05352 05352| +311383 |V1383 Cyg |202411.2+421709 |IN: | 16.4 |< 18. | |p | | | | | |05352 05352| +311384 |V1384 Cyg *|202428.6+383043 |L | 16.8 | 18.1 | |p | | | | | |05352 05352| +311385 |V1385 Cyg |202439.6+422110 |INS | 17.2 | 18.1 | |p | | | | | |05352 05352| +311386 |V1386 Cyg |202502.5+393836 |L: | 16.3 | 17.2 | |p | | | | | |05352 05352| +311387 |V1387 Cyg |202644.6+381720 |LB | 13.0 | 16.3 | |V | | | | |C5,5 |05352 05352| +311388 |V1388 Cyg |202736.8+385046 |LB | 11.3 | 12.2 | |p | | | | |M1 |05352 BD | +311389 |V1389 Cyg |202819.4+390434 |IS: | 17.2 |< 18.1 | |p | | | | | |05352 05352| +311390 |V1390 Cyg |202823.4+390356 |UGSU | 16.0 |< 18.1 | |p | | |( 23. :) | | |09157 05352| +311391 |V1391 Cyg |203016.9+401656 |RRAB | 17.2 | 17.8 | |p |40119.296 | | 0.59605 |15 | |07193 05352| +311392 |V1392 Cyg |203236.4+400728 |RR: | 16.8 |< 18.0 | |p |40116.399 | | | | |05352 05352| +311393 |V1393 Cyg |203339.1+411926 |IS: | 11.5 | 13.2 | |p | | | | | |05352 02334| +311394 |V1394 Cyg |203503.2+401334 |L: | 15.3 | 18.0 | |p | | | | | |05352 05352| +311395 |V1395 Cyg |205218.1+464559 |SRB: | 9.05 | 9.48 | |V | | | | |MA |05128 BD | +311396 |V1396 Cyg *|210005.3+400413 |UV+BY: | 11.4 | 11.65 | |B | | | | |M3Ve |06035 06936| +311397 |V1397 Cyg |214935.6+522343 |IS: | 12.6 | 14.0 | |p | | | | | |05862 05862| +311398 |V1398 Cyg |215148.4+550512 |SRB | 15.1 | 16.4 | |B | | | 450. : | |C(R) |06566 06566| +311399 |V1399 Cyg |215256.9+532934 |SRB | 15.1 | 16.2 | |B | | | | |C(N:) |06566 06566| +311400 |V1400 Cyg |215343.4+522126 |M | 14.9 |< 17.2 | |p |34624. | | 369.9 | | |05862 05862| +311401 |V1401 Cyg *|215539.4+503433 |EB/KE | 13.1 | 13.6 | 13.6 |p |33873.568 | | 1.182991 | |A-F |05862 05862| +311402 |V1402 Cyg |215614.5+543138 |LB | 13.7 | 15.0 | |p | | | | | |05862 05862| +311403 |V1403 Cyg |215654.9+510815 |E | 10.8 | 11.2 | |p |33478.562 | | | |B8 |05862 05862| +311404 |V1404 Cyg |215716.4+521201 |UGZ | 15.7 |< 17.7 | |p | | |( 19.15 ) | | |05862 05862| +311405 |V1405 Cyg |215730.6+535346 |RCB: | 15.5 | 17.9 | |p | | | | | |08855 05862| +311406 |V1406 Cyg |215739.1+532340 |LB | 14.3 | 15.1 | |p | | | | | |05862 05862| +311407 |V1407 Cyg |215747.3+522210 |M | 15.6 |< 18. | |p |34115. | | 422.1 | | |05862 05862| +311408 |V1408 Cyg |215754.0+531544 |LB | 14.4 | 15.7 | |p | | | | | |05862 05862| +311409 |V1409 Cyg |215750.2+545359 |SRB | 12.8 | 13.6 | |V | | | 450. | |C(N) |06566 06566| +311410 |V1410 Cyg *|215826.3+493834 |SR: | 12.0 | 13.0 | |V | | | | |C |06566 06566| +311411 |V1411 Cyg *|215823.6+494417 |EA/KE | 12.1 | 12.7 | |p |33513.563 | | 0.776739 |24 *|A3 |05862 05862| +311412 |V1412 Cyg *|220007.8+551128 |EA/SD | 15.4 | 16.4 | 15.5 |p |33652.309 | | 1.7842018 |14 *| |05862 05862| +311413 |V1413 Cyg |215938.0+515816 |E | 12.5 | 13.0 | |p |34928.465 | | | | |05862 05862| +311414 |V1414 Cyg *|220120.9+473605 |EA/SD | 13.6 | 14.8 | |p |29112.380 | | 0.703126 |20 | |05957 09158| +311415 |V1415 Cyg |220117.4+543234 |SR | 14.3 | 15.1 | |V | | | 400. : | |C |06566 06566| +311416 |V1416 Cyg *|220153.9+515457 |EW | 14.1 | 14.8 | 14.7 |p |33861.477 | | 0.9003084 | | |05862 05862| +311417 |V1417 Cyg *|220206.4+504239 |EB/KE | 13.0 | 13.6 | 13.1 |p |33982.353 | | 0.7267737 | |A5: |05862 05862| +311418 |V1418 Cyg |220205.9+513053 |E | 11.8 | 12.1 | |p |32936.236 | | | |B5: |05862 05862| +311419 |V1419 Cyg |220211.5+514737 |RRAB | 15.0 | 16.3 | |p |33475.5534 | | 0.36975429 |30 | |05862 05862| +311420 |V1420 Cyg |220227.2+535116 |SR | 13.0 | 14.4 | |V | | | 400. : | |C(N) |06566 06566| +311421 |V1421 Cyg *|200148.1+332847 |LB | 13.9 | 14.8 | |p | | | | |M8 |03903 06282| +311422 |V1422 Cyg |200752.9+351858 |LB | 12.2 | 12.8 | |V | | | | |C(N) |06566 06566| +311423 |V1423 Cyg |200915.2+351239 |LB | 10.9 | 11.2 | |V | | | | |C(N:) |06566 06566| +311424 |V1424 Cyg |210236.7+422034 |UVN | 13.5 | 18.0 | |U | | | | | |06340 06340| +311425 |V1425 Cyg *|211101.8+551956 |EB/KE: | 7.7 |( 0.45 )|( 0.31 )|V |40400.944 | | 1.252387 | |B9+A0 |06508 08953| +311426 |V1426 Cyg |213407.5+390416 |M | 10.8 | 13.7 | |V |39010. | | 470. |50 |C7,2e(N) |05908 00346| +311427 |V1427 Cyg *|213551.7+475443 |GCAS | 9.10 | 9.19 | |V | | | | |B3eq |06509 06511| +311428 |V1428 Cyg |215209.8+474914 |LB | 12.8 | 13.5 | |V | | | | |C |06566 06566| +311429 |V1429 Cyg *|215506.2+532522 |EB | 15.2 | 16.4 | 15.3 |p |33798.529 | | 2.490139 | | |06329 06329| +311430 |V1430 Cyg *|215606.9+501735 |EA | 14.9 | 15.9 | 15.0 |p |34209.447 | | 2.0674884 |17 :*| |06329 06329| +311431 |V1431 Cyg |215630.6+514133 |EA | 16.2 | 17.4 | |p |33528.343 | | 2.2571177 |14 :*| |06329 06329| +311432 |V1432 Cyg |215638.3+540102 |E | 14.4 | 15.0 : | |p |34227.589 | | | | |06329 06329| +311433 |V1433 Cyg |215743.9+500251 |EA | 14.2 | 15.2 | |p |33295.180 | | 62.45 /N| | |06329 06329| +311434 |V1434 Cyg |215811.6+551013 |RRAB | 15.5 | 16.4 | |p |33861.5624 | | 0.4818760 |31 | |06329 06329| +311435 |V1435 Cyg |220201.0+495542 |SR | 15.2 | 16.7 | |p |33645.4 | | 158.1 | | |06329 06329| +311436 |V1436 Cyg *|192843.3+275901 |EA/SD | 15.8 | 17.6 | 15.9 |p |42658.352 | | 1.5870718 |09 *| |09149 06854| +311437 |V1437 Cyg *|192845.2+312325 |EW/KW | 15.3 | 16.1 | 16.0 |p |39379.273 | | 0.4545201 | | |06854 06854| +311438 |V1438 Cyg |193048.9+285439 |SR | 13.8 | 15.4 | |p |42953. | | 86.76 | | |09149 06854| +311439 |V1439 Cyg |193553.7+363657 |LB | 12.0 | 13.6 | |p | | | | | |06855 06855| +311440 |V1440 Cyg *|194135.9+400944 |LB: | 10.00 | 10.4 | |V | | | | |M3III |06856 07078| +311441 |V1441 Cyg |194358.8+372538 |M | 14.7 | 21. | |p |32765. | | 320. | | |06855 06855| +311442 |V1442 Cyg |194428.4+372229 |M | 14.9 |< 18. | |p |32890. | | 320. | | |06855 06855| +311443 |V1443 Cyg |194603.9+351752 |M | 14.3 |< 17.0 | |p | | | 370. : | | |06282 06282| +311444 |V1444 Cyg |194614.7+333744 |EA/SD | 15.9 |< 17.0 | |p |37522.464 | | 1.48365 |10 : | |06282 06282| +311445 |V1445 Cyg |194617.3+350221 |M: | 16.1 |< 17.0 | |p |37190. | | 320. | | |06282 06282| +311446 |V1446 Cyg |194636.5+345351 |L: | 15.6 |< 17.0 | |p | | | | | |06282 06282| +311447 |V1447 Cyg |194619.9+393621 |M | 14.4 | 21. | |p |32630. | | 330. | | |06855 06855| +311448 |V1448 Cyg |194736.3+341234 |SR | 14.6 | 15.9 | |p | | | | | |06282 06282| +311449 |V1449 Cyg |194916.6+341050 |UGSS | 15.5 |< 17.0 | |p | | | | | |06282 06282| +311450 |V1450 Cyg |194816.8+333009 |M: | 16.0 |< 17.0 | |p |37916. | | | | |06282 06282| +311451 |V1451 Cyg |194955.6+352634 |EA | 15.7 | 16.8 | |p |37928.313 | | 2.2601 : | | |00001 06282| +311452 |V1452 Cyg |195201.8+355536 |UGSS | 15.4 |< 17.0 | |p | | |( 68. ) | | |06282 06282| +311453 |V1453 Cyg |195320.0+405818 |M | 13.8 | 20. | |p |33190. | | 415. | | |06855 06855| +311454 |V1454 Cyg |195338.5+352145 |UGSS | 13.9 |< 17.0 | |p | | | | | |06282 06282| +311455 |V1455 Cyg |195410.9+311604 |M: | 16.2 |< 17.0 | |p |37520. | | | | |06282 06282| +311456 |V1456 Cyg |195427.7+343708 |EA | 16.2 |< 17.0 | |p |36785.461 | | 2.06460 |12 : | |06282 06282| +311457 |V1457 Cyg |195441.1+332903 |EA | 14.5 | 15.4 | |p |36848.335 | | 0.68370 | | |06282 06282| +311458 |V1458 Cyg |195530.1+310231 |SRA | 14.5 | 16.0 | |p |37180. | | 160. | | |06282 06282| +311459 |V1459 Cyg |195535.5+325835 |I: | 14.4 | 15.7 | |p | | | | | |06282 06282| +311460 |V1460 Cyg |195608.6+353042 |M | 15.0 |< 17.0 | |p |40120. | | 367. | | |00001 06282| +311461 |V1461 Cyg |195638.5+402327 |LB | 12.8 | 14.2 | |p | | | | | |06855 06855| +311462 |V1462 Cyg |195653.7+364807 |LB: | 15.0 | 16.4 | |p | | | | | |06282 06282| +311463 |V1463 Cyg |195743.2+360545 |M | 15.4 |< 17.0 | |p |40100. | | 350. | |M |06282 06282| +311464 |V1464 Cyg |195814.8+354322 |SRB | 15.3 |< 17.0 | |p |37960. | | 101. | | |00001 06282| +311465 |V1465 Cyg *|200152.8+331015 |IS: | 15.9 | 17.0 | |p | | | | | |06282 06282| +311466 |V1466 Cyg |200156.3+392345 |M | 15.8 | 20. | |p |33390. | | 340. | |M |06855 06855| +311467 |V1467 Cyg |200402.2+322703 |DCEP | 15.1 | 16.8 | |p |37908.4 | | 48.6 |23 | |06282 06282| +311468 |V1468 Cyg |200422.6+360844 |ISB: | 15.3 | 16.5 | |p | | | | | |06282 06282| +311469 |V1469 Cyg |200445.9+311206 |SRB | 15.2 | 17.0 | |p | | | 340. : | | |06282 06282| +311470 |V1470 Cyg |200445.5+332315 |EA | 15.8 |< 17.0 | |p |37188.402 | | 2.5784 |10 : | |06282 06282| +311471 |V1471 Cyg |200517.9+332834 |M | 15.3 |< 17.0 | |p | | | 430. : | | |06282 06282| +311472 |V1472 Cyg |200518.2+382224 |M | 16.1 |< 18. | |p |33150. | | 370. | |M |06855 06855| +311473 |V1473 Cyg |200726.3+381432 |M | 16.2 |< 18. | |p |33080. | | 430. | |M |06855 06855| +311474 |V1474 Cyg |200730.3+381228 |M | 16.6 |< 19. | |p |33080. | | 360. | |M |06855 06855| +311475 |V1475 Cyg |200748.6+360252 |IS: | 15.0 | 16.4 | |p | | | | | |06282 06282| +311476 |V1476 Cyg |200844.8+354032 |IS: | 14.5 | 17.0 | |p | | | | | |06282 06282| +311477 |V1477 Cyg |200901.7+354137 |IS: | 15.2 |< 17.0 | |p | | | | | |06282 06282| +311478 |V1478 Cyg *|203245.5+403937 |SDOR | 13.8 | 16.2 | |p | | | | |Bep |04609 09042| +311479 |V1479 Cyg *|205040.3+443049 |INSB | 15.8 | 17.7 | |p | | | | |K:ea |07115 06859| +311480 |V1480 Cyg |211324.9+440125 |M | 16.4 |< 17.5 | |p |29130. | | 136. | | |07010 04341| +311481 |V1481 Cyg *|214356.6+534321 |EB/DM | 12.1 | 12.6 | 12.5 |V |40040.610 | | 2.76340 | |B2V |09043 09043| +311482 |V1482 Cyg |215144.4+550811 |LB | 12.4 | 13.6 | |p | | | | | |06329 06329| +311483 |V1483 Cyg |215424.7+541553 |LB | 13.5 | 14.2 | |p | | | | | |06329 06329| +311484 |V1484 Cyg |220104.6+542917 |LB | 13.1 | 13.9 | |p | | | | |MC: |06329 06329| +311485 |V1485 Cyg *|193808.7+294054 |SRA | 15.5 |< 17. | |p |41874. | | 470. | | |00504 00504| +311486 |V1486 Cyg |195247.8+440605 |M | 14.3 |< 16. | |p |41565. | | 287. | | |07118 07118| +311487 |V1487 Cyg |201107.5+360751 |LB | 10.5 | 11.2 | |V | | | | |M7 |07341 07341| +311488 |V1488 Cyg *|201528.3+474251 |EA/GS/D | 3.90 | 4.14 | |V |41256.96 | | 1147.4 |02 |K5Iab+B4IV-V |06506 BD | +311489 |V1489 Cyg *|204625.5+400659 |* | 11.19 | 12.54 | |R | | | 1280. | |M4.5-M7.9Ia-III |07462 09044| +311490 |V1490 Cyg *|205053.6+442101 |INS | 16.4 |< 18.2 | |p | | | | | |07115 07115| +311491 |V1491 Cyg *|205104.6+442350 |INT | 16.0 | 17.4 | |p | | | | |G8-K0e(T) |07115 07115| +311492 |V1492 Cyg *|205105.8+441632 |INS | 16.0 |< 18. | |p | | | | | |07115 07115| +311493 |V1493 Cyg *|205204.7+443731 |INSA | 16.8 |< 17.9 | |p | | | | |A2e |07115 07115| +311494 |V1494 Cyg *|205226.1+433322 |UVN | 15.5 | 22.0 | |U | | | | | |07463 07463| +311495 |V1495 Cyg *|205511.0+444925 |UVN | 15.5 | 18.0 | |U | | | | | |07463 07463| +311496 |V1496 Cyg |205906.0+423832 |UV | 12.5 | 16.5 | |U | | | | | |07463 07463| +311497 |V1497 Cyg *|210008.5+433108 |UVN | 16.0 | 18.0 | |U | | | | | |07463 07463| +311498 |V1498 Cyg *|210218.1+450504 |UVN | 15.5 | 18.0 | |U | | | | | |07463 07463| +311499 |V1499 Cyg |210329.4+421457 |UVN | 16.4 | 17.0 | |U | | | | | |07463 07463| +311500 |V1500 Cyg *|211136.6+480902 |NA | 1.69 |< 21. | |V |42655. |1975 | | |pec(NOVA) |09173 07464| +311501 |V1501 Cyg |215147.5+550811 |SRB | 12.5 | 12.9 | |V | | | 450. : | |M |07341 07341| +311502 |V1502 Cyg |215522.6+525324 |LB | 11.7 | 12.2 | |V | | | | |C(N) |06566 06566| +311503 |V1503 Cyg |191953.3+434544 |M | 13.2 |< 18.6 | |p | | | | |M8:e |09047 09047| +311504 |V1504 Cyg |192856.5+430536 |UGZ: | 13.5 | 17.4 | |p | | |( 5.8 ) | | |09172 09048| +311505 |V1505 Cyg |192949.0+283254 |UGZ | 15.2 |< 17.5 | |p | | | | | |07519 07519| +311506 |V1506 Cyg |193803.8+314920 |L: | 13.0 | 14.1 | |p | | | | | |09174 07520| +311507 |V1507 Cyg *|194841.9+292408 |E | 6.92 | 7.04 | 7.01 |V |43760.37 | | 27.9705 | |B8II-IIIep |07747 BD | +311508 |V1508 Cyg *|194957.4+315116 |EB: | 12.6 | 13.3 | 13.3 |p |37143.489 | | 1.994529 | | |00001 03662| +311509 |V1509 Cyg *|195034.0+384321 |LB | 5.08 | 5.4 | |V | | | | |M2IIIa |01371 BD | +311510 |V1510 Cyg |195950.7+434216 |RRAB | 14.0 | 14.8 : | |p |41915.652 | | 0.581147 | | |07748 07748| +311511 |V1511 Cyg *|200029.5+364611 |LB | 2.65 | 3.31 | |K | | | | |M10III |06005 09054| +311512 |V1512 Cyg |200206.3+373407 |M: | 17. | 19. | |R | | | | |M |07749 07749| +311513 |V1513 Cyg *|200502.2+542603 |UV | 13.29 | 13.49 | |B | | | | |M3Ve |09055 09055| +311514 |V1514 Cyg |200701.3+581641 |INSB: | 12.6 | 14.9 | |p | | | | | |00164 02354| +311515 |V1515 Cyg *|202348.0+421226 |FU | 13.51 | 17.7 | |B | | | | |G0-G5eaqIb |04609 07750| +311516 |V1516 Cyg |202531.6+522034 |LB | 16.6 | 17.2 : | |p | | | | | |03148 04065| +311517 |V1517 Cyg |203054.0+323128 |SR: | 16. |< 17.5 | |p | | | | | |03903 03903| +311518 |V1518 Cyg |202949.9+530231 |LB | 13.3 | 14.0 | |p | | | | | |03148 04065| +311519 |V1519 Cyg |203148.0+534805 |SRB | 13.9 | 14.3 | |V | | | 125. | |C(N) |03814 03814| +311520 |V1520 Cyg |203113.8+552806 |L | 15.8 | 16.5 | |p | | | | | |03814 04065| +311521 |V1521 Cyg *|203225.8+405728 |X | 11.4 |( 1.53 )| |K | | | | | |09186 09058| +311522 |V1522 Cyg |204153.1+401403 |UV | 17.9 | 20.5 | |B | | | | | |07498 USNO | +311523 |V1523 Cyg | | | | | | | | | | | | |=V0732 Cep +311524 |V1524 Cyg |204315.2+344455 |SR | 15.5 | 16.5 | |p | | | | | |03776 03776| +311525 |V1525 Cyg |204444.9+531625 |SRA | 11.8 | 13.7 | |V |41740. | | 405. |50 |C(N) |03814 03814| +311526 |V1526 Cyg |204535.2+425214 |UV | 16.5 | 21.0 | |U | | | | | |07753 USNO | +311527 |V1527 Cyg |204807.0+513350 |LB | 11.0 | 11.5 | |V | | | | |C6,4(R) |03814 03814| +311528 |V1528 Cyg |204853.9+411252 |UV | 16.1 | 20.6 | |U | | | | | |07753 USNO | +311529 |V1529 Cyg |205046.3+415754 |UV | 14.1 | 20.5 | |p | | | | | |07753 2MASS| +311530 |V1530 Cyg |205038.0+405443 |UV | 16.0 | 19.5 | |p | | | | | |07753 USNO | +311531 |V1531 Cyg *|205053.7+442119 |INSB | 16.5 |< 18. | |p | | | | |M0e |07115 02698| +311532 |V1532 Cyg *|205054.0+442119 |INSB | 16.5 |< 18. | |p | | | | |M0e |07115 02698| +311533 |V1533 Cyg |205127.9+461813 |RR: | 14. | 15. | |p | | | | | |03910 03910| +311534 |V1534 Cyg |205223.1+413828 |UV | 16.1 | 20.0 | |p | | | | | |07753 USNO | +311535 |V1535 Cyg *|205331.1+442326 |IN: | 17.0 | 17.9 | |B | | | | |ea |04771 07115| +311536 |V1536 Cyg *|205539.2+442028 |UVN | 15.4 | 18.5 | |p | | | | | |07753 2MASS| +311537 |V1537 Cyg |205547.0+434218 |UVN | 16.6 | 20.6 | |U | | | | | |07753 USNO | +311538 |V1538 Cyg *|205757.5+435009 |UVN | 17.1 | 19.6 | |U | | | | | |07753 USNO | +311539 |V1539 Cyg *|205759.9+435326 |INT | 16.1 | 17.5 | |B | | | | |K6e(T) |07115 07115| +311540 |V1540 Cyg *|205914.2+433745 |INS | 13.3 | 15.2 | |p | | | | | |07754 07754| +311541 |V1541 Cyg |205905.7+473602 |SRA | 11.4 | 12.0 | |V |41550. | | 400. | |C5,4(N) |03814 03814| +311542 |V1542 Cyg |205923.3+474443 |IS: | 13.9 | 15.1 | |p | | | | | |07757 03903| +311543 |V1543 Cyg |210015.8+482658 |SR: | 14. | 15. | |p | | | | | |03910 03910| +311544 |V1544 Cyg |210039.5+422137 |UV | 14.9 | 18.4 | |U | | | | | |07498 UCAC2| +311545 |V1545 Cyg |210152.5+423717 |UV | 15.1 | 18.8 | |B | | | | | |07948 USNO | +311546 |V1546 Cyg *|210202.5+433047 |INB: | 16.5 | 17. | |p | | | | |K:ea |06859 02698| +311547 |V1547 Cyg |210144.7+510744 |LB | 16.5 | 17.7 | |B | | | | |C |03814 03814| +311548 |V1548 Cyg *|210454.8+513439 |LB | 14.5 | 15.2 | |V | | | | |C |03814 03814| +311549 |V1549 Cyg |210507.9+514820 |LB | 17.4 | 18.5 | |V | | | | |C6,4 |06963 09062| +311550 |V1550 Cyg |210616.7+443709 |UV | 16.8 | 18.3 | |U | | | | | |07498 USNO | +311551 |V1551 Cyg |210729.8+461920 |LB | 15.4 | 16.1 | |p | | | | | |07010 04341| +311552 |V1552 Cyg |210937.2+432245 |LB | 14.7 | 15.5 | |p | | | | | |07010 04341| +311553 |V1553 Cyg |211206.9+434230 |EA | 13.7 | 14.4 | |p |28428.444 | | | | |01262 02337| +311554 |V1554 Cyg *|211446.2+441745 |SRA | 12.8 | 14.8 | |V |41690. | | 330. |45 |C |03814 03814| +311555 |V1555 Cyg |211415.0+444110 |SRA | 13.3 | 15.6 | |V |41545. | | 530. |50 |C |03814 03814| +311556 |V1556 Cyg |211807.6+391732 |RR: | 17. | 18. | |p |38640.37 | | | | |03776 03776| +311557 |V1557 Cyg |212217.4+445151 |LB | 17.9 |< 19.2 | |B | | | | |C(N) |03814 03814| +311558 |V1558 Cyg |212246.7+454616 |M | 12.8 | 15.4 | |V |41570. | | 440. |65 |C(N) |03814 03814| +311559 |V1559 Cyg |212257.4+432522 |LB | 11.8 | 12.3 | |R | | | | |C(R) |03814 03814| +311560 |V1560 Cyg |212438.8+444901 |SRA | 11.1 | 11.8 | |V |41940. | | 220. |50 |C(N) |03814 03814| +311561 |V1561 Cyg |212443.6+434825 |LB | 12.8 | 13.5 | |V | | | | |C(N) |03814 03814| +311562 |V1562 Cyg |212434.0+425959 |LB | 16.3 | 17.0 | |p | | | | | |07010 04341| +311563 |V1563 Cyg |212441.8+443714 |SRA | 13.3 | 15.7 | |V |41785. | | 385. |55 |C |03814 03814| +311564 |V1564 Cyg |212623.4+483633 |SRA | 13.7 | 14.4 | |V |41750. | | 195. |50 |C |03814 03814| +311565 |V1565 Cyg |212732.3+424131 |SRA | 15.4 | 17.0 | |p |38260. | | 440. | | |07010 04341| +311566 |V1566 Cyg |213045.4+433158 |SRA | 12.7 | 14.5 | |V |41675. | | 515. |62 |C(N) |03814 03814| +311567 |V1567 Cyg |213441.7+420033 |IS: | 15.5 | 16.6 | |p | | | | | |07010 04341| +311568 |V1568 Cyg |213831.8+454247 |M | 11.2 | 14.4 | |V |41460. | | 495. |46 |C(N) |03814 03814| +311569 |V1569 Cyg |213950.2+421506 |LB | 15.7 | 16.5 | |p | | | | | |07010 04341| +311570 |V1570 Cyg |214016.9+475948 |UG: | 15.0 |< 16.8 | |p | | | | | |07764 07764| +311571 |V1571 Cyg |214236.5+445636 |SRA | 11.4 | 13.0 | |V |41880. | | 425. |65 |C(N) |03814 03814| +311572 |V1572 Cyg |214039.9+461944 |LB | 12.6 | 13.1 | |V | | | | |C(N) |03814 03814| +311573 |V1573 Cyg |214228.1+431558 |RR | 17.2 |< 17.6 | |p | | | | | |07010 04341| +311574 |V1574 Cyg |214322.0+485535 |LB | 13.8 | 15.4 | |p | | | | | |07010 04341| +311575 |V1575 Cyg |215016.4+475921 |LB | 16.4 |< 17. | |p | | | | | |07010 04341| +311576 |V1576 Cyg |215159.6+491734 |LB | 15.0 | 16.5 | |p | | | | | |07010 04341| +311577 |V1577 Cyg *|215230.8+471407 |IN | 16.4 | 16.68 | |V | | | | |ea |07766 07766| +311578 |V1578 Cyg *|215234.1+471344 |INA | 10.09 | 10.24 | |V | | | | |A0eq |09061 07766| +311579 |V1579 Cyg |194306.4+555243 |LB | 10.1 | 10.6 | |p | | | | |M6 |09063 09063| +311580 |V1580 Cyg *|194400.4+452653 |EA/SD | 14.0 | 15.3 | |p |42653.610 | | 1.811443 |14 *| |09064 09064| +311581 |V1581 Cyg *|195354.5+442452 |UV | 14.20 | 14.84 | |B | | | | |M6Ve |07944 04069| +311582 |V1582 Cyg |195750.3+431950 |E: | 9.0 |( 0.5 )| |V | | | 1.0017 /N| |K2 |07945 07945| +311583 |V1583 Cyg |200231.8+304640 |LB: | 14. | 16.5 | |p | | | | |C(N) |00148 03662| +311584 |V1584 Cyg *|201956.0+465014 |ACV | 6.48 |( 0.04 )| |V |41153.246 | | 1.132854 | |B9p(Si) |07946 BD | +311585 |V1585 Cyg |202423.2+421430 |CST | 14.37 | | |B | | | | |F8III-IV |09065 07947| +311586 |V1586 Cyg |203341.8+442326 |UV | 13.8 | 17.0 | |p | | | | | |07948 USNO | +311587 |V1587 Cyg |204131.5+414911 |UV | 15.2 | 18.8 | |p | | | | | |07948 USNO | +311588 |V1588 Cyg |204202.7+441901 |UV | 17.5 | 18.5 | |p | | | | | |07948 USNO | +311589 |V1589 Cyg |204249.0+412301 |UV | 14.7 | 16.2 | |U | | | | |ea |07948 GSC | +311590 |V1590 Cyg |204318.1+401821 |UV | 16.6 | 20.2 | |p | | | | | |07948 USNO | +311591 |V1591 Cyg |204305.1+441834 |UV | 17.2 | 19.0 | |U | | | | | |07948 USNO | +311592 |V1592 Cyg |204337.1+431814 |UV | 13.9 | 16.3 | |U | | | | | |07948 USNO | +311593 |V1593 Cyg |204409.4+422352 |UV | 16.5 | 18.0 | |U | | | | | |07948 USNO | +311594 |V1594 Cyg |204901.6+422050 |UV | 15.9 | 19.7 | |p | | | | | |07948 USNO | +311595 |V1595 Cyg |205029.9+414431 |IS: | 13.9 | 14.8 | |p | | | | | |08507 08507| +311596 |V1596 Cyg |205040.3+432650 |UV | 15.8 | 16.6 | |p | | | | | |07948 USNO | +311597 |V1597 Cyg *|205058.4+441444 |UVN | 15.7 | 18.7 | |U | | | | | |07753 USNO | +311598 |V1598 Cyg *|205104.0+441141 |UVN | 13.8 | 15.5 | |U | | | | | |07498 GSC | +311599 |V1599 Cyg |205226.6+425837 |UV | 15.0 | 19.5 | |U | | | | | |07948 USNO | +311600 |V1600 Cyg *|205226.1+443604 |UVN | 16.2 | 20.0 | |U | | | | | |07948 USNO | +311601 |V1601 Cyg |205310.9+431626 |UVN | 15.4 | 19.0 | |U | | | | | |07948 USNO | +311602 |V1602 Cyg |205259.8+415625 |UVN | 15.7 | 17.9 | |p | | | | | |07948 USNO | +311603 |V1603 Cyg |205307.0+423727 |UV | 15.4 | 20.5 | |p | | | | | |07948 2MASS| +311604 |V1604 Cyg |205530.8+433449 |UVN | 16.8 | 20.5 | |U | | | | | |07948 2MASS| +311605 |V1605 Cyg |205559.1+405644 |UV | 16.3 | 19.5 | |U | | | | | |07948 USNO | +311606 |V1606 Cyg |205604.7+430028 |UVN | 16.6 | 18.0 | |U | | | | | |07948 USNO | +311607 |V1607 Cyg |205710.8+410424 |UV | 16.2 | 19.7 | |U | | | | | |07948 USNO | +311608 |V1608 Cyg *|205716.7+444338 |UVN | 14.8 | 17.3 | |U | | | | | |07948 USNO | +311609 |V1609 Cyg |205832.6+425227 |UVN | 16.2 | 18.1 | |U | | | | | |07948 USNO | +311610 |V1610 Cyg *|210218.7+364141 |* | 5.8 | 6.3 | |L | | | | |F5Iaep |09177 09066| +311611 |V1611 Cyg *|210316.2+443353 |UVN | 14.6 | 16.2 | |U | | | | | |07948 2MASS| +311612 |V1612 Cyg |210333.3+411128 |UV | 16.2 | 20.5 | |p | | | | | |07948 2MASS| +311613 |V1613 Cyg |210406.5+433524 |UVN | 15.9 | 21.5 | |U | | | | | |07948 2MASS| +311614 |V1614 Cyg |213128.6+405831 |M | 13.8 |< 17.5 | |B |42680. | | 306. | | |07950 07950| +311615 |V1615 Cyg |213321.5+380246 |M | 13.2 |< 17.5 | |p |42995. | | 268.8 | | |07951 07951| +311616 |V1616 Cyg |214109.9+363909 |EA/SD | 14.4 | 16.7 | |p |42668.387 | | 2.24487 |06 | |07952 07952| +311617 |V1617 Cyg |214033.6+514439 |LB | 10.6 | 13. | |p | | | | |M7III |00797 BD | +311618 |V1618 Cyg |214554.1+384527 |EA/SD | 15.4 | 18.0 | |p |42630.561 | | 2.8584 |06 | |07952 07952| +311619 |V1619 Cyg |215105.0+393212 |ACV | 6.17 |( 0.01 )| |V | | | 20.70 | |B8IIIp(Hg-Mn) |07851 BD | +311620 |V1620 Cyg |215119.4+364939 |M | 13.1 |< 17.4 | |p |43075. | | 271.2 | | |07954 07954| +311621 |V1621 Cyg |193425.9+451832 |SRA | 12.7 |< 15.0 | |p |26920. | | 107.6 | | |08251 08251| +311622 |V1622 Cyg |200732.1+404346 |M | 10.4 | 14.3 | |I |40480. | | 350. | | |08252 2MASS| +311623 |V1623 Cyg |200736.9+395635 |M | 11.9 | 15.0 | |I |40150. | | 310. | | |08252 2MASS| +311624 |V1624 Cyg *|200925.6+365023 |SXARI | 4.91 | 4.97 | |V |43699.12 | | 0.70 | |B3VeV |09067 BD | +311625 |V1625 Cyg |200926.1+404346 |SR: | 12.2 | 14.5 | |I | | | | | |08252 USNO | +311626 |V1626 Cyg |200941.7+394612 |SR: | 12.9 | 15.1 | |I | | | 400. | | |08252 2MASS| +311627 |V1627 Cyg |201030.7+412245 |M | 12.6 | 14.4 | |I |40884. :| | 300. | | |08252 2MASS| +311628 |V1628 Cyg |201051.4+411556 |M | 12.1 | 14.5 | |I |40818. | | 261. | | |08252 2MASS| +311629 |V1629 Cyg |201116.2+410435 |SR | 13.8 | 14.9 | |I |40280. :| | 460. : | | |08252 2MASS| +311630 |V1630 Cyg |201119.0+405229 |M | 12.4 | 13.8 | |I |39804. :| | 415. | | |08252 2MASS| +311631 |V1631 Cyg |201151.2+413254 |M | 11.5 | 13.6 | |I |41160. | | 430. | | |08252 2MASS| +311632 |V1632 Cyg |201201.6+410021 |SR | 12.3 | 14.7 | |I |40520. | | 318. | | |08252 USNO | +311633 |V1633 Cyg |201208.1+393650 |M | 12.2 | 15.0 | |V |40365. | | 404. | | |08252 09068| +311634 |V1634 Cyg |201219.4+415150 |M | 11.9 | 13.7 | |I |39640. | | 251. | | |08252 USNO | +311635 |V1635 Cyg |201234.2+390234 |M | 12.4 | 15.1 | |I |39800. | | 400. | | |08252 USNO | +311636 |V1636 Cyg |201243.8+413603 |M | 10.7 | 14.2 | |I |40504. | | 322. | | |08252 USNO | +311637 |V1637 Cyg |201252.2+410307 |SR | 12.7 | 14.5 | |I |40834. | | 410. | | |08252 USNO | +311638 |V1638 Cyg |201304.7+405218 |SR | 12.8 | 14.6 | |I |40450. | | 416. | | |08252 2MASS| +311639 |V1639 Cyg |201323.5+383847 |M | 11.9 | 15.2 | |I |39980. | | 360. | | |08252 USNO | +311640 |V1640 Cyg |201324.1+392659 |M | 12.7 | 15.4 | |I |42300. | | 412. | | |08252 2MASS| +311641 |V1641 Cyg |201348.9+383808 |SR | 13.1 | 15.4 | |I |41198. :| | 584. : | | |08252 USNO | +311642 |V1642 Cyg |201347.0+402219 |M | 13.1 | 14.8 | |I |40072. | | 290. | | |08252 2MASS| +311643 |V1643 Cyg |201420.6+382745 |M | 11.1 | 14.6 | |I |40474. | | 297. | | |08252 2MASS| +311644 |V1644 Cyg |201432.0+364823 |DSCTC | 4.94 | 4.97 | |V | | | 0.031 | |A2V |08254 BD | +311645 |V1645 Cyg |201439.1+391312 |M | 12.3 | 15.0 | |I |40798. | | 380. | | |08252 2MASS| +311646 |V1646 Cyg |201520.3+395847 |M: | 12.4 | 15.5 | |I |40176. | | 388. | | |08252 2MASS| +311647 |V1647 Cyg |201634.2+413506 |SR | 13.6 | 14.8 | |I |40494. | | 334. : | | |08252 2MASS| +311648 |V1648 Cyg |201758.1+390708 |M | 13.6 | 15.2 | |I |40104. | | 300. | | |08252 2MASS| +311649 |V1649 Cyg |201829.0+403406 |M | 12.5 | 15.0 | |I |40140. | | 442. | | |08252 2MASS| +311650 |V1650 Cyg |201838.0+391756 |M | 9.3 | 11.3 | |I |40172. | | 395. | | |08252 USNO | +311651 |V1651 Cyg |201834.8+420812 |M | 13.4 | 15.6 | |I |41100. | | 383. | | |08252 2MASS| +311652 |V1652 Cyg |201915.0+383101 |M | 13.2 | 15.2 | |I |40570. | | 565. : | | |08252 2MASS| +311653 |V1653 Cyg |202043.1+392240 |M | 10.4 | 12.2 | |I |40560. | | 335. | | |08252 USNO | +311654 |V1654 Cyg |202217.1+404313 |M | 10.1 | 14.4 | |I |40815. :| | 268. : | | |08252 2MASS| +311655 |V1655 Cyg |202524.0+384236 |M | 12.0 | 14.8 | |I |39864. | | 462. | | |08252 2MASS| +311656 |V1656 Cyg |202519.5+423222 |M | 11.5 | 14.1 | |I |40380. | | 308. | | |08252 2MASS| +311657 |V1657 Cyg |202536.9+381909 |M | 13.0 | 15.1 | |I |40500. | | 310. | | |08252 2MASS| +311658 |V1658 Cyg |202525.6+422629 |M | 11.1 | 14.5 | |I |39904. | | 382. | | |08252 USNO | +311659 |V1659 Cyg |202905.5+394246 |M | 12.1 | 15.4 | |I |40578. | | 770. | | |08252 2MASS| +311660 |V1660 Cyg |203058.8+414513 |M | 13.0 | 15.7 | |I |40062. | | 420. | | |08252 2MASS| +311661 |V1661 Cyg *|204856.3+460651 |ACYG | 4.81 | 4.87 | |V | | | | |B3eaIa |08213 BD | +311662 |V1662 Cyg |205100.8+430824 |IS: | 14.6 | 16.8 | |p | | | | | |08507 07115| +311663 |V1663 Cyg |210843.0+463220 |LB | 15.3 | 16.4 | |p | | | | | |07010 04341| +311664 |V1664 Cyg |211109.4+393324 |RRAB | 13.7 | 15.4 | |B |42687.293 | | 0.52976 |10 | |08924 08924| +311665 |V1665 Cyg |211920.7+405755 |EA/SD | 14.3 | 16.1 | |p |42967.50 | | 3.22563 |09 | |00001 08269| +311666 |V1666 Cyg |212651.9+352026 |SRA | 10.9 | 12.9 | |V |41187. | | 376. |50 |C(N) |08422 08270| +311667 |V1667 Cyg |213233.3+342707 |EA/SD | 14.9 | 17.4 | |B |42689.393 | | 2.50325 |10 *| |08274 08274| +311668 |V1668 Cyg *|214235.3+440155 |NA | 6.00 | 20. : | |V |43764. |1978 | | |pec(NOVA) |09071 09070| +311669 |V1669 Cyg *|215630.1+384657 |EA | 14.7 | 15.9 | |B |42993.412 | | 3.0919 |09 | |09072 09072| +311670 |V1670 Cyg |193143.6+412538 |SRA | 13.9 |< 14.8 | |p |43380. | | 187.5 | | |08986 00534| +311671 |V1671 Cyg *|193532.0+311636 |SXARI | 7.45 | 7.46 | |V |44107.24 | | 9.35 | |B2Vp |08747 BD | +311672 |V1672 Cyg |194414.6+403213 |SR | 12.1 | 14.3 | |p | | | 80. | | |03187 00534| +311673 |V1673 Cyg |194826.6+424736 |RV: | 13.2 | 15.0 | |p | | | | | |03302 00534| +311674 |V1674 Cyg *|195821.6+351301 |* | 10.54 | 10.60 | |B | | | | |G0 |08429 BD | +311675 |V1675 Cyg |200121.9+431339 |INSB | 8.4 | 9.1 | |p | | | | |M2 |08432 08432| +311676 |V1676 Cyg *|200557.3+354718 |WR | 6.75 | 6.84 | |V | | | | |WN5+O9.5Ia |08213 BD | +311677 |V1677 Cyg |201218.9+412524 |I | 12.5 | 13.4 | |I | | | | | |08252 USNO | +311678 |V1678 Cyg |201327.0+383431 |E | 12.4 | 14.4 | |I | | | | | |08252 GSC | +311679 |V1679 Cyg |201431.8+363940 |WR | 5.99 | 6.5 | |K | | | | |WC6-7+Be |07306 BD | +311680 |V1680 Cyg |201535.5+422207 |SR | 15.0 | 15.8 | |I | | | | | |08252 2MASS| +311681 |V1681 Cyg |201751.3+423143 |SR | 14.7 | 15.9 | |I |40480. :| | 280. : | | |08252 2MASS| +311682 |V1682 Cyg |201908.7+414653 |SR | 14.8 | 15.7 | |I |41196. :| | 290. : | | |08252 2MASS| +311683 |V1683 Cyg |201922.8+405612 |I | 13.2 | 14.7 | |I | | | | | |08252 USNO | +311684 |V1684 Cyg |202003.1+430258 |SR | 13.0 | 14.2 | |I |41060. :| | 400. : | | |08252 2MASS| +311685 |V1685 Cyg |202028.3+412152 |INA | 10.58 | 10.72 | |V | | | | |B2e |03309 04002| +311686 |V1686 Cyg |202029.3+412128 |INA | 13.8 | 17.5 | |p | | | | |B8ea |03333 04002| +311687 |V1687 Cyg |202028.0+435116 |WR | 4.0 |( 2.5 )| |K | | | | |WC7p+O5 |03478 BD | +311688 |V1688 Cyg |202126.7+413236 |M | 13.5 | 15.6 | |I |40680. | | 312. : | | |08252 2MASS| +311689 |V1689 Cyg |202134.4+422603 |SRA | 14.2 | 15.9 | |I |40580. :| | 484. : | | |08252 2MASS| +311690 |V1690 Cyg |202230.9+424936 |RV | 11.3 | 14.2 | |I |40056. | | 285. | | |08252 USNO | +311691 |V1691 Cyg |202302.5+390423 |M: | 13.3 | 15.4 | |I |40138. | | 385. : | | |08252 2MASS| +311692 |V1692 Cyg |202256.9+411702 |SR | 14.7 | 15.7 | |I | | | 450. : | | |08252 2MASS| +311693 |V1693 Cyg |202257.8+415106 |SRA | 14.1 | 16.0 | |I |39844. :| | 400. : | | |08252 2MASS| +311694 |V1694 Cyg |202338.0+425042 |SRA | 14.4 | 15.6 | |I |40096. :| | 308. : | | |08252 2MASS| +311695 |V1695 Cyg |203420.4+434102 |UV | 16.5 | 18.3 | |U | | | | | |08504 08504| +311696 |V1696 Cyg *|204121.6+523515 |* | 10.30 |( 0.06 )| |V |38626.237 | | 4.3174 | |WN7.5 |03541 03499| +311697 |V1697 Cyg |204316.9+424239 |UG: | 16.5 |< 17.5 | |U | | | | | |08507 08507| +311698 |V1698 Cyg |204452. +434357:|UV | 14.3 | 20.5 : | |U | | | | | |08508 | +311699 |V1699 Cyg |204539.8+434845 |UV | 15.6 | 18.2 | |U | | | | | |08510 USNO | +311700 |V1700 Cyg |204749.1+430004 |UVN | 16.5 | 18.0 | |U | | | | | |08511 USNO | +311701 |V1701 Cyg *|205100.9+443150 |INS | 16.1 |< 18. | |V | | | | | |07115 07115| +311702 |V1702 Cyg *|205116.5+442258 |INB | 16.9 | 18.0 | |p | | | | |K2e |07115 02698| +311703 |V1703 Cyg *|205121.0+442620 |INSB | 17.0 | 18.3 | |p | | | | |K7-M0e |07115 02698| +311704 |V1704 Cyg *|205126.8+440425 |IN | 16.6 |< 18.2 | |p | | | | |ea |07115 02698| +311705 |V1705 Cyg |205200.1+421635 |INS | 16.1 | 16.8 | |p | | | | |ea |08507 03683| +311706 |V1706 Cyg *|205147.6+442511 |INS | 16.8 | 18.2 | |p | | | | | |07115 07115| +311707 |V1707 Cyg *|205203.8+443729 |INSB | 17.0 |< 18. | |p | | | | |K5ea |07115 02698| +311708 |V1708 Cyg |205311. +401324:|SR: | 15.8 |< 17.5 | |p | | | | | |08507 08507| +311709 |V1709 Cyg |205321. +450425:|UVN | 16.3 | 20.5 | |U | | | | | |08508 | +311710 |V1710 Cyg |205324.9+414544 |UVN | 14.6 | 21.6 | |U | | | | | |08510 USNO | +311711 |V1711 Cyg *|205500.6+445531 |UG: | 15.0 |< 17.5 | |p | | | | | |08507 08507| +311712 |V1712 Cyg |205624.1+431712 |UVN | 17.3 |< 21.0 | |U | | | | | |08511 73138| +311713 |V1713 Cyg |205619.3+431432 |UVN | 17.0 | 18.0 | |U | | | | | |08511 USNO | +311714 |V1714 Cyg |205734.6+430931 |UVN | 15.9 | 21.6 | |U | | | | | |08510 USNO | +311715 |V1715 Cyg |205710.5+542811 |M: | 11.7 | 14.7 | |R |43065. | | 485. | |C |08377 GSC | +311716 |V1716 Cyg *|205806.1+435301 |INS | 16.1 |< 17.5 | |U | | | | | |08507 08507| +311717 |V1717 Cyg |205920.3+415545 |UV | 16.5 | 18.1 | |U | | | | | |08511 GSC | +311718 |V1718 Cyg |210201.2+413157 |EA: | 14.7 |< 17.5 | |p | | | | | |08507 08507| +311719 |V1719 Cyg *|210432.9+504703 |RRC | 7.95 | 8.33 | |V |43776.715 | | 0.267299 |49 |F5III |09180 BD | +311720 |V1720 Cyg *|210740.1+485119 |ELL: | 7.77 | 7.79 | 7.79 |V |42692.557 | | 0.248331 | |G5III |08517 BD | +311721 |V1721 Cyg *|212143.4+372058 |EA | 12.2 | 13.0 | |B |43697.488 | | 2.722913 |07 | |09181 09181| +311722 |V1722 Cyg *|212209.2+420832 |EA/D | 14.3 | 15.1 | 14.6? |B |42926.466 | | 11.969690 |05 : | |09181 09181| +311723 |V1723 Cyg |212827.5+375430 |EA/SD | 13.2 | 14.4 | |p |42744.201 | | 0.88404 |10 | |08414 08414| +311724 |V1724 Cyg |212844.8+380014 |LB: | 15.5 |< 17.9 | |p | | | | | |08414 08414| +311725 |V1725 Cyg |212955.8+414544 |RRAB | 14.9 | 16.2 : | |B |41220.262 | | 0.5909467 |20 : | |08416 08416| +311726 |V1726 Cyg *|212938.9+485809 |DCEPS | 8.87 | 9.06 | |V |44105.39 | | 4.2359 |50 |F5 |09182 BD | +311727 |V1727 Cyg *|213126.2+471725 |E+XR | 15.6 | 18.5 | |V |44403.7429 | | 0.2182579 | |pec(e) |09183 08423| +311728 |V1728 Cyg |213552.4+511442 |M: | 10.0 | 13.0 | |R | | | | | |08376 08376| +311729 |V1729 Cyg |213809.1+355840 |EA/SD | 13.8 | 15.2 | |B |43046.375 | | 2.45574 |12 | |08427 08427| +311730 |V1730 Cyg |213753.2+502149 |SR: | 12.5 | 14.5 | |R | | | | | |08376 08376| +311731 |V1731 Cyg |213854.4+464558 |SRB | 15.4 | 15.9 | |B | | | 150. | |C(N) |03814 03814| +311732 |V1732 Cyg |214111.6+463104 |SRA | 11.6 | 13.6 | |R |43175. | | 388. | |C |08377 GSC | +311733 |V1733 Cyg |214150.7+515707 |M: | 11.0 | 14.0 | |R | | | | | |08376 08376| +311734 |V1734 Cyg |214319.5+503915 |M: | 12.0 |< 14.5 | |V | | | | | |08376 08376| +311735 |V1735 Cyg *|214720.7+473205 |FU | 15.0 |< 20. | |R | | | | |F-GI-II |08431 08431| +311736 |V1736 Cyg |215237.2+392925 |SRA | 15.7 | 17.5 | |B |43155. | | 289.3 | | |09184 09184| +311737 |V1737 Cyg *|215503.3+494541 |M: | 12.0 | 14.5 | |R | | | | | |08376 08376| +311738 |V1738 Cyg *|215628.6+512849 |SR: | 12.5 | 14.5 | |R | | | | | |08376 08376| +311739 |V1739 Cyg *|220044.3+523124 |SR: | 13.0 | 14.5 | |R | | | | | |08376 08376| +311740 |V1740 Cyg |192454.3+281513 |SR | 16.2 | 18.4 | |p | | | | | |08753 USNO | +311741 |V1741 Cyg |192609.1+361904 |ACV | 4.60 |( 0.02 )| |U |41451.03 | | 0.68674 | |B9p(Si) |08488 BD | +311742 |V1742 Cyg |192652.2+275241 |SR | 10.9 | 12.3 | |p | | | | | |08754 | +311743 |V1743 Cyg |193341.6+491544 |SRB: | 5.96 |( 0.18 )| |V | | | 40. : | |M4.5III |08755 BD | +311744 |V1744 Cyg *|193652.2+301930 |ACV: | 7.5 |( 0.04 U )| |V |44100.28 | | 12.46 |40 |B9 |08747 BD | +311745 |V1745 Cyg |193729.9+293654 |DSCTC | 7.3 | 7.34 | |V | | | 0.0534 | |A3V |08756 BD | +311746 |V1746 Cyg *|195955.2+370234 |GCAS+BCEP | 5.19 |( 0.07 )| |V | | | | |B3IV-Ve |08663 BD | +311747 |V1747 Cyg *|201005.1+434442 |SRC | 13.8 | 16.0 | |V | | | | | |09185 09185| +311748 |V1748 Cyg *|201753.4+415239 |INS | 15.0 | 17.0 | |U | | | | | |08758 08758| +311749 |V1749 Cyg |202114.1+353717 |LC | 9.44 | 9.94 | |V | | | | |M3Iab |02556 BD | +311750 |V1750 Cyg |202805.8+401641 |UV | 14.0 | 18.2 | |U | | | | | |08759 USNO | +311751 |V1751 Cyg *|202831.5+395320 |INS | 15.5 | 16.8 | |U | | | | |ea |08758 04007| +311752 |V1752 Cyg |202907.3+402612 |UV | 15.5 | 21.0 | |U | | | | | |08759 USNO | +311753 |V1753 Cyg |203152.5+431054 |UV | 16.3 | 21.0 | |U | | | | | |08759 USNO | +311754 |V1754 Cyg |203213.6+431609 |UV | 16.1 | 19.5 | |U | | | | | |08759 USNO | +311755 |V1755 Cyg |203447.9+423158 |UV | 15.4 | 17.6 | |U | | | | | |08759 USNO | +311756 |V1756 Cyg |203625.6+400114 |UV | 15.6 |< 21.0 | |U | | | | | |08759 2MASS| +311757 |V1757 Cyg |203616.4+404719 |UV | 16.2 |< 21.0 | |U | | | | | |08759 2MASS| +311758 |V1758 Cyg |211241.1+485555 |UV | 16.1 | 17.1 | |p | | | | | |08748 08748| +311759 |V1759 Cyg |211907.0+370415 |M | 14.5 |< 17.7 | |B |43726.4 | | 103.5 |50 | |09184 09184| +311760 |V1760 Cyg |214257.0+312731 |M | 11.76 |< 15. | |B |36830. | | 298. | |M4e |09188 03996| +311761 |V1761 Cyg *|220133.1+455052 |SRA | 14.2 | 15.5 | |p |25525. | | 404.1 | | |08762 08762| +311762 |V1762 Cyg |190825.8+522533 |RS | 5.81 | 6.03 | |V | | | | | |67258 BD | +311763 |V1763 Cyg |193135.8+390127 |EW/KW | 12.4 | 13.0 | |B | | | | | |67260 67259| +311764 |V1764 Cyg |193642.6+275303 |RS | 7.69 |( 0.15 )| |V | | | | | |67261 BD | +311765 |V1765 Cyg |194850.6+332614 |EB/GS+ACYG| 6.44 |( 0.16 )| |V | | | | | |67263 BD | +311766 |V1766 Cyg |195121.5+433458 |SRA | 10.3 | 11.5 | |V | | | | | |67269 67269| +311767 |V1767 Cyg |195136.7+441438 |SRA: | 11.0 | 12.5 | |V | | | | | |67269 67269| +311768 |V1768 Cyg |200436.2+321307 |ACYG | 5.56 | 5.70 | |V | | | | | |67271 BD | +311769 |V1769 Cyg |201014.2+361035 |EA/D/WR | 7.99 | 8.09 | |V | | | | | |67274 BD | +311770 |V1770 Cyg |201206.5+382118 |E:/WR | 7.48 | 7.52 | |V | | | | | |67275 BD | +311771 |V1771 Cyg |201650.0+425825 |EA/SD: | 14.1 | 15.8 | |V | | | | | |67277 67276| +311772 |V1772 Cyg |201710.7+423719 |UV | 17.0 | 19.6 | |U | | | | | |67278 USNO | +311773 |V1773 Cyg |201849.7+461920 |ELL | 6.44 |( 0.05 )| |V | | | | | |67283 BD | +311774 |V1774 Cyg |202055.9+502729 |E | 12.6 | 15.0 | |V | | | | | |67285 67285| +311775 |V1775 Cyg |202331.3+472022 |LB | 13.0 | 13.7 | |R | | | | | |67288 67288| +311776 |V1776 Cyg |202330.6+463130 |NL | 17.2 | 18.4 | |V | | | | | |67290 67290| +311777 |V1777 Cyg |202438.8+423408 |UV | 15.5 | 21. | |U | | | | | |67300 USNO | +311778 |V1778 Cyg |202521.9+420445 |UV | 17.0 | 18.0 | |U | | | | | |67278 USNO | +311779 |V1779 Cyg |202615.8+402816 |UV | 15.0 | 18.3 | |U | | | | | |67278 2MASS| +311780 |V1780 Cyg |202716.7+414202 |UV | 16.2 | 20.0 | |U | | | | | |67278 USNO | +311781 |V1781 Cyg |202723.4+411919 |UV | 15.2 | 17.5 | |U | | | | | |67278 USNO | +311782 |V1782 Cyg |203046.5+474455 |SR | 12.8 | 14.8 : | |R | | | | | |67288 67288| +311783 |V1783 Cyg |203150. +395213:|UV | 16.3 |< 21. | |U | | | | | |67300 | +311784 |V1784 Cyg |203409.3+490256 |LB | 13.7 | 14.4 | |R | | | | | |67288 67288| +311785 |V1785 Cyg |203546.3+411129 |UV | 16.8 | 17.8 | |U | | | | | |67278 USNO | +311786 |V1786 Cyg |203633.6+600645 |EA | 14.5 |< 15.3 | |p | | | | | |67210 67210| +311787 |V1787 Cyg |203745.3+551631 |EA | 12.4 | 13.6 | |p | | | | | |67309 67310| +311788 |V1788 Cyg |204237.2+382725 |CEP: | 13.0 | 14.5 | |p | | | | | |67309 67314| +311789 |V1789 Cyg |204506. +423658:|UV | 16.2 | 18.2 | |U | | | | | |67316 | +311790 |V1790 Cyg |205005. +432514:|UV | 16.8 | 21.0 | |p | | | | | |67316 | +311791 |V1791 Cyg |205039. +410116:|UV | 16.6 | 18.3 | |U | | | | | |67316 | +311792 |V1792 Cyg |205130.9+375922 |ELL | 7.29 |( 0.09 )| |V | | | | | |67001 BD | +311793 |V1793 Cyg |205202.2+433800 |UV | 14.3 | 19.0 | |U | | | | | |67319 USNO | +311794 |V1794 Cyg |205353.6+442311 |FKCOM | 7.23 |( 0.17 )| |V | | | | | |67327 67326| +311795 |V1795 Cyg |205453. +402830:|UV | 16.3 | 18.6 | |U | | | | | |67316 | +311796 |V1796 Cyg |210048. +440948:|UV | 16.6 | 19.0 | |U | | | | | |67316 | +311797 |V1797 Cyg |210112.9+415412 |UV | 15.2 | 16.5 | |U | | | | | |67319 GSC | +311798 |V1798 Cyg |210129. +404050:|UV | 15.7 | 16.7 | |U | | | | | |67316 | +311799 |V1799 Cyg |210145. +424251:|UV | 16.5 | 17.9 | |U | | | | | |67316 | +311800 |V1800 Cyg |210304.0+374830 |M | 10.8 | 13.2 | |V | | | | | |67330 67285| +311801 |V1801 Cyg |210445.4+404938 |SRA | 12.1 : | 13.3 : | |R | | | | | |67288 67288| +311802 |V1802 Cyg |210613.6+403230 |LB | 12.1 | 13.0 | |R | | | | | |67288 67288| +311803 |V1803 Cyg |210653.9+384458 |BY | 5.19 | 5.27 | |V | | | | | |67336 BD | +311804 |V1804 Cyg |210729.8+371045 |LB | 12.5 | 14.5 | |V | | | | | |67285 67181| +311805 |V1805 Cyg |210757.0+354126 |SR: | 12.3 | 14.0 | |p | | | | | |67341 67340| +311806 |V1806 Cyg |210848.8+402231 |SRA | 11.2 : | 13.2 : | |R | | | | | |67288 67288| +311807 |V1807 Cyg |211552.6+470220 |SR: | 14.2 | 15.2 | |B | | | | | |67344 67344| +311808 |V1808 Cyg |211632.9+415438 |SRA | 12.1 | 14.2 | |R | | | | | |67288 67288| +311809 |V1809 Cyg |211827.2+435645 |ELL | 4.98 | 5.09 | |V | | | | | |67352 67352| +311810 |V1810 Cyg | | | | | | | | | | | | |N +311811 |V1811 Cyg |212852.0+391044 |INS: | 10.1 | 12.3 | |p | | | | | |67341 67341| +311812 |V1812 Cyg |213040.7+385102 |M | 13.5 |< 16.0 | |p | | | | | |67341 67341| +311813 |V1813 Cyg |213331.3+481702 |EA/SD | 13.7 | 16.1 | |V | | | | | |67361 USNO | +311814 |V1814 Cyg |214359.2+534206 |IA | 11.8 | 12.28 | |B | | | | | |67363 67367| +311815 |V1815 Cyg |220145.3+480454 |RRC | 11.2 | 11.5 | |p | | | | | |67020 67369| +311816 |V1816 Cyg |193115.9+312206 |BY: | 15.5 | 16.1 | |p | | | | | |68352 68093| +311817 |V1817 Cyg |193113.6+554355 |RS: | 6.37 |( 0.05 )| |V | | | | | |68094 BD | +311818 |V1818 Cyg |194119.9+290840 |EA: | 8.68 | 8.96 | |B | | | | | |68095 BD | +311819 |V1819 Cyg |195437.5+354216 |N | 9.5 |< 14.6 | |B | | | | | |68356 68356| +311820 |V1820 Cyg |200538.7+354531 |BCEP | 10.80 |( 0.04 )| |V | | | | | |68097 68357| +311821 |V1821 Cyg |200633.5+355242 |DSCTC | 10.14 |( 0.06 )| |V | | | | | |68097 68357| +311822 |V1822 Cyg |201042.0+500243 |SRA | 10.4 |( 1.1 )| |R | | | | | |68098 68358| +311823 |V1823 Cyg |201206.4+343834 |RRAB | 12.5 | 13.5 | |p | | | | | |68359 68360| +311824 |V1824 Cyg |201316.1+481710 |SRA | 10.5 |( 0.7 )| |R | | | | | |68098 68358| +311825 |V1825 Cyg |201606.2+495508 |SRA | 8.6 |( 0.6 )| |R | | | | | |68098 GSC | +311826 |V1826 Cyg |202307.7+421844 |IS | 15.3 | 16.8 | |U | | | | | |68101 68101| +311827 |V1827 Cyg |203027.3+411325 |IS: | 16.1 | 17.0 | |U | | | | | |68101 68101| +311828 |V1828 Cyg |203657.0+375234 |M | 13.4 |< 15.0 | |V | | | | | |68102 68102| +311829 |V1829 Cyg |204017.2+355907 |M: | 14.3 |< 15.3 | |V | | | | | |68103 68103| +311830 |V1830 Cyg |204212.0+355217 |SRA | 14.6 | 16.4 | |V | | | | | |68103 68103| +311831 |V1831 Cyg |204215.6+353332 |M | 14.3 |< 16.0 | |V | | | | | |68103 68103| +311832 |V1832 Cyg |204158.5+462035 |SRA | 13.2 |( 1.6 )| |R | | | | | |68098 68104| +311833 |V1833 Cyg |204215.7+355828 |M: | 14.9 |< 16.0 | |V | | | | | |68103 68103| +311834 |V1834 Cyg |204312.8+354251 |M: | 15.0 |< 16.0 | |V | | | | | |68103 68103| +311835 |V1835 Cyg |204434.2+343621 |LB | 13.1 | 15.1 | |V | | | | | |68103 68103| +311836 |V1836 Cyg |204442.7+355819 |M | 16.0 |< 18.4 | |B | | | | | |68103 68103| +311837 |V1837 Cyg |204526.1+374532 |SRA | 13.7 | 16.0 | |V | | | | | |68103 68103| +311838 |V1838 Cyg |204541.6+364411 |M | 12.0 | 18.0 | |B | | | | | |68103 68103| +311839 |V1839 Cyg |204544.8+354353 |E: | 14.1 | 15.2 | |V | | | | | |68103 68103| +311840 |V1840 Cyg |204546.6+334847 |SR | 16.0 | 18.0 | |B | | | | | |68103 68103| +311841 |V1841 Cyg |204551.8+360639 |M | 15.4 | 18.5 | |B | | | | | |68103 68103| +311842 |V1842 Cyg |204607.1+365654 |SRA | 16.0 | 18.0 | |B | | | | | |68103 68103| +311843 |V1843 Cyg |204627.8+340350 |EA/SD | 15.7 | 18.5 | |B | | | | | |68103 68103| +311844 |V1844 Cyg |204636.1+364531 |M | 14.0 |< 16.0 | |V | | | | | |68103 68103| +311845 |V1845 Cyg |204643.1+342950 |SRA | 16.2 | 18.0 | |B | | | | | |68103 68103| +311846 |V1846 Cyg |204718.5+362329 |M | 13.0 |< 16.0 | |V | | | | | |68103 68103| +311847 |V1847 Cyg |204719.1+361400 |E: | 15.5 | 16.6 | |B | | | | | |68103 68103| +311848 |V1848 Cyg |204728.6+361657 |SR: | 16.8 |< 18.5 | |B | | | | | |68103 68103| +311849 |V1849 Cyg |204747.5+361448 |SRA | 13.8 | 15.4 | |V | | | | | |68103 68103| +311850 |V1850 Cyg |204756.3+354420 |M | 14.2 | 17.3 | |B | | | | | |68103 68103| +311851 |V1851 Cyg |204808.0+350110 |SRA | 15.6 | 18.0 | |B | | | | | |68103 68103| +311852 |V1852 Cyg |204813.9+361425 |E: | 15.6 | 16.7 | |B | | | | | |68103 68103| +311853 |V1853 Cyg |204816.6+342724 |ACYG | 10.97 | 11.10 | |V | | | | | |68105 | +311854 |V1854 Cyg |204814.2+365236 |SR | 14.2 | 15.2 | |B | | | | | |68103 68103| +311855 |V1855 Cyg |204821.6+335432 |M | 13.2 |< 16.0 | |V | | | | | |68103 68103| +311856 |V1856 Cyg |204819.4+352734 |E | 14.2 | 15.7 | |B | | | | | |68103 68103| +311857 |V1857 Cyg |204827.0+341314 |SRA | 15.9 | 18.0 | |B | | | | | |68103 68103| +311858 |V1858 Cyg |204830.2+361348 |E: | 16.0 | 18.0 | |B | | | | | |68103 68103| +311859 |V1859 Cyg |204855.3+360945 |M | 16.2 |< 18.0 | |B | | | | | |68103 68103| +311860 |V1860 Cyg *|204907.5+341702 |M | 16.3 |< 18.5 | |B | | | | | |68103 2MASS| +311861 |V1861 Cyg |204905.5+372730 |SR | 13.1 | 14.2 | |V | | | | | |68103 68103| +311862 |V1862 Cyg |204916.2+331347 |SR | 13.3 | 15.9 | |B | | | | | |68103 68103| +311863 |V1863 Cyg |204938.4+371248 |LB: | 13.8 | 14.8 | |B | | | | | |68103 68103| +311864 |V1864 Cyg |205005.0+373000 |M | 12.0 | 15.0 | |V | | | | | |68103 68103| +311865 |V1865 Cyg |205019.3+343755 |M | 15.7 |< 18.0 | |B | | | | | |68103 68103| +311866 |V1866 Cyg |205036.9+361843 |E | 16.1 | 17.6 | |B | | | | | |68103 68103| +311867 |V1867 Cyg |205040.4+352536 |SRA | 14.4 | 16.5 | |V | | | | | |68103 68103| +311868 |V1868 Cyg |205114.4+365332 |M | 14.3 |< 18.5 | |B | | | | | |68103 68103| +311869 |V1869 Cyg |205139.3+332725 |E | 15.9 | 18.0 | |B | | | | | |68103 68103| +311870 |V1870 Cyg |205141.0+354408 |E | 14.3 | 17.2 | |B | | | | | |68103 68103| +311871 |V1871 Cyg |205140.6+351732 |SR | 13.6 | 15.6 | |B | | | | | |68103 68103| +311872 |V1872 Cyg |205145.0+330757 |SR | 16.1 | 17.7 | |B | | | | | |68103 68103| +311873 |V1873 Cyg |205202.7+360758 |M | 14.8 |< 18.4 | |B | | | | | |68103 68103| +311874 |V1874 Cyg |205204.8+355909 |SR | 13.9 |< 16.3 | |B | | | | | |68103 68103| +311875 |V1875 Cyg |205207.5+355829 |M | 15.6 | 18.5 | |B | | | | | |68103 68103| +311876 |V1876 Cyg |205227.4+365436 |M | 14.6 |< 16.0 | |V | | | | | |68103 68103| +311877 |V1877 Cyg |205243.4+342410 |E: | 13.8 | 15.2 | |B | | | | | |68103 68103| +311878 |V1878 Cyg |205300.7+381116 |LB: | 16.2 | 17.8 | |B | | | | | |68103 68103| +311879 |V1879 Cyg |205350.1+371534 |M | 16.2 |< 18.5 | |B | | | | | |68103 68103| +311880 |V1880 Cyg |205404.4+355446 |SR | 13.0 | 14.2 | |V | | | | | |68103 68103| +311881 |V1881 Cyg |205444.3+343748 |SRA | 15.7 | 17.7 | |B | | | | | |68103 68103| +311882 |V1882 Cyg |205519.6+374650 |SR | 15.9 | 16.8 | |B | | | | | |68103 68103| +311883 |V1883 Cyg |205555.3+360113 |SRA | 16.5 | 17.9 | |B | | | | | |68103 68103| +311884 |V1884 Cyg |205607.1+333908 |EA/SD | 15.2 | 17.7 | |B | | | | | |68103 68103| +311885 |V1885 Cyg |205614.0+344049 |M | 14.3 |< 16. | |V | | | | | |68103 68103| +311886 |V1886 Cyg |205613.5+362152 |SR | 14.1 | 15.6 | |B | | | | | |68103 68103| +311887 |V1887 Cyg |205641.5+330936 |M | 14.0 | 18.5 | |B | | | | | |68103 68103| +311888 |V1888 Cyg |205653.5+372511 |SRA | 13.8 | 16.0 | |V | | | | | |68103 68103| +311889 |V1889 Cyg |205710.3+340809 |SR | 14.3 | 15.8 | |B | | | | | |68103 68103| +311890 |V1890 Cyg |205746.9+355803 |SR | 13.8 | 17.0 | |B | | | | | |68103 68103| +311891 |V1891 Cyg |205753.6+424555 |SRA | 12.6 | 15.0 | |V | | | | | |68098 68102| +311892 |V1892 Cyg |205921.1+344105 |M | 16.0 |< 18.0 | |B | | | | | |68103 68103| +311893 |V1893 Cyg |205947.9+342007 |SRA | 13.8 | 16.0 | |V | | | | | |68103 USNO | +311894 |V1894 Cyg |210045.1+340506 |SR | 12.1 | 13.3 | |V | | | | | |68103 68103| +311895 |V1895 Cyg |210048.3+363209 |CEP: | 16.0 | 17.5 | |B | | | | | |68103 68103| +311896 |V1896 Cyg |210119.7+362554 |M | 14.2 |< 18.5 | |B | | | | | |68103 68103| +311897 |V1897 Cyg |210227.1+351000 |M | 14.0 |< 16.0 | |V | | | | | |68103 USNO | +311898 |V1898 Cyg |210353.8+461950 |EA/DM | 7.71 | 8.15 | |V | | | | | |68366 BD | +311899 |V1899 Cyg |210414.5+532105 |SRA | 15.6 | 17.5 | |V | | | | | |68106 68106| +311900 |V1900 Cyg |210505.0+354002 |SR | 14.0 | 16.4 | |B | | | | | |68103 68103| +311901 |V1901 Cyg |211205.7+312308 |EW | 13.3 | 14.1 | |p | | | | | |68359 68109| +311902 |V1902 Cyg |211707.7+374601 |EW/KW | 14.3 | 14.9 | |B | | | | | |68367 68110| +311903 |V1903 Cyg |212100.3+381351 |M | 13.6 |< 16.5 | |B | | | | | |68367 68110| +311904 |V1904 Cyg |212443.7+335918 |M | 13.5 |< 17.0 | |B | | | | | |68111 68111| +311905 |V1905 Cyg |212549.6+390418 |IS: | 14.0 | 16.3 | |p | | | | | |68368 68110| +311906 |V1906 Cyg |212728.3+364156 |M | 2.4 | 3.3 | |K | | | | | |68015 2MASS| +311907 |V1907 Cyg |213114.7+392659 |M | 13.7 |< 17.5 | |B | | | | | |68369 68110| +311908 |V1908 Cyg |213141.7+334656 |EA/SD | 13.4 | 15.8 | |B | | | | | |68111 68111| +311909 |V1909 Cyg |213223.4+344402 |EA/SD | 13.9 | 15.9 | |p | | | | | |68111 68111| +311910 |V1910 Cyg |213232.0+385755 |ISA: | 11.4 | 15.9 | |p | | | | | |68369 68102| +311911 |V1911 Cyg |213315.4+354201 |M | 14.2 |< 18.0 | |B | | | | | |68111 68111| +311912 |V1912 Cyg |213325.3+352131 |IS: | 12.5 | 14.0 | |p | | | | | |68368 68110| +311913 |V1913 Cyg |214331.5+334850 |SRA | 13.3 | 15.7 | |B | | | | | |68111 68111| +311914 |V1914 Cyg |214958.8+435757 |ELL | 8.39 | 8.62 | |V | | | | | |68371 BD | +311915 |V1915 Cyg |215726.5+425819 |RRAB | 15.5 | 16.5 | |p | | | | | |68372 68114| +311916 |V1916 Cyg |215729.9+444149 |EA/SD | 15.4 | 16.8 | |p | | | | | |68372 68114| +311917 |V1917 Cyg |215730.9+432057 |E | 14.7 | 16.6 | |p | | | | | |68372 68114| +311918 |V1918 Cyg |192608.7+522648 |EW/KW | 10.59 | 11.12 | |V | | | | | |69102 BD | +311919 |V1919 Cyg |193456.1+334744 |LB | 6.66 | 6.73 | |V | | | | | |69103 BD | +311920 |V1920 Cyg |194517.3+335827 |PVTEL | 10.30 | 10.41 | |V | | | | | |69104 69105| +311921 |V1921 Cyg |195142.1+442146 |SRC: | 11.8 | 13.1 | |V | | | | | |69106 69106| +311922 |V1922 Cyg |201645.1+374043 |BCEP | 10.96 |( 0.03 )| |U | | | | | |69107 69108| +311923 |V1923 Cyg |203206.3+404830 |WR | 12.3 |( 0.04 )| |V | | | | | |69109 69110| +311924 |V1924 Cyg |205346. +442026:|UVN | 15.9 | 16.5 | |p | | | | | |69111 | +311925 |V1925 Cyg |205404.9+445141 |LB | 15.3 | 15.9 | |V | | | | | |69112 69112| +311926 |V1926 Cyg |205439.0+435530 |UVN | 16.2 |< 18. | |U | | | | | |69113 69113| +311927 |V1927 Cyg |205644.0+440414 |INT: | 16.5 | 17.7 | |U | | | | | |69116 69115| +311928 |V1928 Cyg |205709. +420137:|UVN | 16.0 | 19.5 | |p | | | | | |69111 | +311929 |V1929 Cyg |205722.2+435754 |UVN | 14.5 | 16.5 | |p | | | | | |69111 USNO | +311930 |V1930 Cyg |210025.9+443104 |UVN | 15.5 |< 18.5 | |U | | | | | |69113 69113| +311931 |V1931 Cyg |210110.9+460921 |E+BE | 5.33 | 5.48 | |V | | | | | |69117 BD | +311932 |V1932 Cyg |211652.5+362356 |EA/SD | 14.7 | 15.7 | |B | | | | | |69118 69118| +311933 |V1933 Cyg |212454.1+404239 |M | 15.0 |< 18. | |B | | | | | |69119 69119| +311934 |V1934 Cyg |212455.4+491923 |ACV | 6.51 |( 0.02 )| |U | | | | | |69120 BD | +311935 |V1935 Cyg |212701.2+382533 |INS | 13.2 | 14.1 | |p | | | | | |69121 69121| +311936 |V1936 Cyg |212829.9+385605 |EA: | 14.0 |< 16.0 | |p | | | | | |69121 69121| +311937 |V1937 Cyg |213153.8+392959 |INS: | 14.7 |< 16.0 | |p | | | | | |69121 69121| +311938 |V1938 Cyg |213237.5+394006 |INS | 13.8 | 15.2 | |p | | | | | |69121 69121| +311939 |V1939 Cyg |213313.7+372838 |L: | 13.2 | 14.6 | |p | | | | | |69121 69121| +311940 |V1940 Cyg |214541.4+401748 |M | 14.8 | 18.0 | |B | | | | | |69122 69122| +311941 |V1941 Cyg |215558.0+430251 |E: | 13.3 | 13.8 | |p | | | | | |69127 69127| +311942 |V1942 Cyg |220256.7+443900 |ACV | 5.47 |( 0.05 )| |U | | | | | |69128 BD | +311943 |V1943 Cyg |191301.1+495318 |LB | 12.1 | 13.2 | |p | | | | | |70039 70040| +311944 |V1944 Cyg |191355.4+512019 |LB | 12.3 | 13.6 | |p | | | | | |70039 70040| +311945 |V1945 Cyg |191501.6+541729 |SR | 15.2 | 16.3 | |p | | | | | |70039 70040| +311946 |V1946 Cyg |191944.9+492308 |LB | 14.5 | 15.3 | |p | | | | | |70039 70040| +311947 |V1947 Cyg |192106.4+553806 |LB | 15.1 | 16.4 | |p | | | | | |70039 70040| +311948 |V1948 Cyg |192912.8+500617 |L | 13.8 | 15.6 | |p | | | | | |70039 70040| +311949 |V1949 Cyg |193012.5+504821 |RRAB | 12.8 | 13.8 | |p | | | | | |70039 70040| +311950 |V1950 Cyg |193732.9+504301 |EA/SD | 15.3 | 16.2 | |p | | | | | |70039 70040| +311951 |V1951 Cyg |193854.9+333829 |LB | 14.5 | 15.9 | |B | | | | | |70041 70041| +311952 |V1952 Cyg |193853.5+481245 |LB: | 14.6 | 15.7 | |p | | | | | |70039 70040| +311953 |V1953 Cyg |194058.1+505202 |SRB | 14.8 | 15.6 | |p | | | | | |70039 70040| +311954 |V1954 Cyg |194920.0+553333 |LB: | 15.4 | 16.0 | |p | | | | | |70039 70040| +311955 |V1955 Cyg |201308.5+483445 |SR: | 13.6 | 14.3 | |B | | | | | |70042 70042| +311956 |V1956 Cyg |205050.2+435754 |UV | 16.2 | 17.5 | |p | | | | | |70043 USNO | +311957 |V1957 Cyg |205756.6+435237 |UV | 16.0 | 18.0 | |U | | | | | |70044 USNO | +311958 |V1958 Cyg |210032.9+431622 |UV | 14.5 | 16.6 | |U | | | | | |70046 70047| +311959 |V1959 Cyg |210435.4+492926 |M: | 10.1 | 12.8 | |R | | | | | |70048 70048| +311960 |V1960 Cyg |211242.0+373229 |EA/SD | 15.3 | 17.8 | |B | | | | | |70049 70049| +311961 |V1961 Cyg |212431.8+395720 |EW: | 14.9 | 15.6 | |B | | | | | |70050 70050| +311962 |V1962 Cyg |213902.0+404218 |RRAB | 12.8 | 14.7 | |B | | | | | |70051 70051| +311963 |V1963 Cyg |214421.0+352314 |EA/SD | 14.7 | 16.1 | |B | | | | | |70052 70052| +311964 |V1964 Cyg |193005.7+312421 |SRD: | 12.0 | 12.8 | |p | | | | | |71184 71184| +311965 |V1965 Cyg |193410.1+280408 |M | 3.7 | 6.0 | |H | | | | | |71002 71187| +311966 |V1966 Cyg |193445.2+303059 |E:/PN | 9.95 | 10.04 | |V | | | | | |71189 BD | +311967 |V1967 Cyg |194542.9+301526 |SRB | 7.43 | 7.83 | |V | | | | | |71094 BD | +311968 |V1968 Cyg |200109.1+405539 |M | 1.2 | 3.2 | |L | | | | | |71002 2MASS| +311969 |V1969 Cyg |200914.3+312545 |M | 0.7 | 2.0 | |L | | | | | |71002 2MASS| +311970 |V1970 Cyg |201550.4+465427 |SR | 11.4 | 12.3 | |p | | | | | |71191 71034| +311971 |V1971 Cyg |202133.1+321851 |RS | 7.9 |( 0.18 )| |V | | | | | |71001 BD | +311972 |V1972 Cyg |202303.6+392950 |IA | 11.54 | 12.12 | |B | | | | | |71193 71194| +311973 |V1973 Cyg |202307.9+405113 |ISA | 9.67 | 10.09 | |V | | | | | |71195 BD | +311974 |V1974 Cyg |203031.7+523751 |NA+E: | 4.2 | 17.5 : | |V | | | | | |71197 71197| +311975 |V1975 Cyg |204350.5+342849 |SR | 15.4 | 16.3 | |B | | | | | |71201 71202| +311976 |V1976 Cyg |204743.4+341904 |SR | 16.0 | 17.5 | |B | | | | | |71201 71202| +311977 |V1977 Cyg |204737.5+434725 |INA | 10.81 | 11.44 | |V | | | | | |71204 71205| +311978 |V1978 Cyg |204855.6+332319 |SR | 13.2 | 14.2 | |B | | | | | |71201 71202| +311979 |V1979 Cyg |205051.4+334143 |SR | 15.9 | 18.0 | |B | | | | | |71201 71202| +311980 |V1980 Cyg |210155.1+495137 |INT | 12.29 | 12.50 | |V | | | | | |71207 71207| +311981 |V1981 Cyg |210224.2+444728 |SRB | 7.5 | 8.1 | |B | | | | | |71209 BD | +311982 |V1982 Cyg |210354.3+501509 |INT | 12. | 13.8 | |B | | | | | |71210 71207| +311983 |V1983 Cyg |211311.2+401126 |SR: | 12.26 | 14.48 | |V | | | | | |71211 71211| +311984 |V1984 Cyg |214335.9+372235 |M | 14.0 |< 18.4 | |B | | | | | |71217 71217| +311985 |V1985 Cyg |192706.3+352344 |M | 11.6 |< 15.2 | |V | | | | | |72071 72071| +311986 |V1986 Cyg |193013.5+280952 |M | 12.4 |< 15.2 | |V | | | | | |72071 72071| +311987 |V1987 Cyg |193142.9+285040 |SR | 12.7 | 14.5 | |V | | | | | |72071 72071| +311988 |V1988 Cyg |193550.7+341610 |M | 12.3 | 15.2 | |V | | | | | |72071 72071| +311989 |V1989 Cyg |194209.9+301353 |M | 12.0 |< 15.2 | |V | | | | | |72071 72071| +311990 |V1990 Cyg |194333.5+342924 |M | 10.4 | 13.0 | |V | | | | | |72071 72071| +311991 |V1991 Cyg |194351.8+322929 |M | 10.2 | 14.7 | |V | | | | | |72071 72071| +311992 |V1992 Cyg |194625.0+314008 |M | 11.9 | 15.0 | |V | | | | | |72071 72071| +311993 |V1993 Cyg |194719.9+354619 |SRA: | 12.7 | 14.6 | |V | | | | | |72071 72071| +311994 |V1994 Cyg |194832.4+320604 |SRA | 13.0 | 15.1 | |V | | | | | |72071 72071| +311995 |V1995 Cyg |194913.0+293134 |M | 10.0 | 12.6 | |V | | | | | |72071 72071| +311996 |V1996 Cyg |195045.1+292911 |M: | 12.8 | 15.2 | |V | | | | | |72071 72071| +311997 |V1997 Cyg |195128.7+324745 |M | 13.0 |< 15.1 | |V | | | | | |72071 72071| +311998 |V1998 Cyg |195222.0+305015 |SR | 12.5 | 14.2 | |V | | | | | |72071 72071| +311999 |V1999 Cyg |195423.4+340451 |M | 12.5 |< 15.2 | |V | | | | | |72071 72071| +312000 |V2000 Cyg |195729.3+304313 |SR | 13.9 |< 15.2 | |V | | | | | |72071 72071| +312001 |V2001 Cyg |195801.5+315439 |SRA: | 14.1 |< 15.2 | |V | | | | | |72071 72071| +312002 |V2002 Cyg |195813.9+294130 |M | 12.6 |< 15.2 | |V | | | | | |72071 72071| +312003 |V2003 Cyg |195906.6+311332 |M | 11.9 | 15.1 | |V | | | | | |72071 72071| +312004 |V2004 Cyg |200229.7+295141 |M | 11.8 | 15.1 | |V | | | | | |72071 72071| +312005 |V2005 Cyg |200310.6+312418 |I | 12.8 | 13.7 | |V | | | | | |72071 72071| +312006 |V2006 Cyg |200324.0+295453 |SR | 11.8 | 13.6 | |V | | | | | |72071 72071| +312007 |V2007 Cyg |200615.4+351724 |M | 12.6 | 15.1 | |V | | | | | |72071 72071| +312008 |V2008 Cyg |200621.8+355821 |RS: | 5.36 |( 0.05 )| |V | | | | | |72073 BD | +312009 |V2009 Cyg |200638.3+335808 |M | 12.5 | 15.1 | |V | | | | | |72071 72071| +312010 |V2010 Cyg |200944.1+315850 |M | 13.0 |< 15.2 | |V | | | | | |72071 72071| +312011 |V2011 Cyg |201233.1+401605 |* | 7.93 |( 0.07 )| |B | | | | | |72074 BD | +312012 |V2012 Cyg |201711.1+313318 |SR: | 10.7 | 11.2 | |p | | | | | |72075 BD | +312013 |V2013 Cyg |202131.3+302448 |SR | 13.0 |< 15.2 | |V | | | | | |72071 72071| +312014 |V2014 Cyg |203003.5+485706 |BCEP: | 4.86 |( 0.03 b )| |B | | | | | |72045 BD | +312015 |V2015 Cyg |203354.8+464138 |ACV | 5.62 |( 0.02 b )| |B | | | | | |72045 BD | +312016 |V2016 Cyg |204636.8+434435 |INA | 13.46 | 13.90 | |V | | | | | |72028 72076| +312017 |V2017 Cyg |204641.6+434649 |INA | 15.13 | 15.41 | |V | | | | | |72028 72076| +312018 |V2018 Cyg |204645.6+434511 |INA | 11.83 | 11.97 | |V | | | | | |72028 72076| +312019 |V2019 Cyg |204804.8+434726 |INA | 11.15 | 11.42 | |V | | | | | |72028 72076| +312020 |V2020 Cyg |204820.3+433948 |INA | 10.96 | 11.33 | |V | | | | | |72028 72076| +312021 |V2021 Cyg |205310.5+340708 |EA | 8.9 | 9.5 | |V | | | | | |72078 BD | +312022 |V2022 Cyg |205258.8+441504 |INA | 11.88 | 12.15 | |V | | | | | |72028 72076| +312023 |V2023 Cyg |205510.3+450303 |INA | 11.77 | 12.18 | |V | | | | | |72028 72076| +312024 |V2024 Cyg |205917.2+441746 |INA | 14.24 | 14.40 | |V | | | | | |72028 72076| +312025 |V2025 Cyg |205931.6+443544 |INA | 13.78 | 13.91 | |V | | | | | |72028 72076| +312026 |V2026 Cyg |210140.6+441944 |INA | 13.37 | 14.02 | |V | | | | | |72028 72076| +312027 |V2027 Cyg |211708.3+341227 |ZZO | 13.16 |( 0.04 * )| |V | | | | | |72079 72080| +312028 |V2028 Cyg |195631.5+310620 |BE | 11.68 | 12.40 | |U | | | | | |73133 GSC | +312029 |V2029 Cyg |202257.2+473716 |SR | 16.0 | 17.1 | |B | | | | | |73134 73134| +312030 |V2030 Cyg |202255.4+504917 |SRB | 14.4 | 15.5 | |V | | | | | |73134 73134| +312031 |V2031 Cyg |202351.0+382934 |EA | 8.53 | 8.67 | |V | | | | | |73135 73135| +312032 |V2032 Cyg |203055.0+462143 |SRB | 13.0 | 14.3 | |V | | | | | |73134 73134| +312033 |V2033 Cyg |203134.7+464800 |LB | 15.9 | 16.7 | |B | | | | | |73134 73134| +312034 |V2034 Cyg |203339.5+491951 |SRA | 10.7 | 11.8 | |V | | | | | |73134 73134| +312035 |V2035 Cyg |203528.1+452919 |SRB | 11.7 | 12.6 | |V | | | | | |73134 73134| +312036 |V2036 Cyg |203730.9+495719 |SRB | 14.9 | 15.8 | |V | | | | | |73134 73134| +312037 |V2037 Cyg |203739.7+485630 |SRB | 10.9 | 12.1 | |V | | | | | |73134 73134| +312038 |V2038 Cyg |203849.4+503352 |SRB | 14.0 | 14.7 | |V | | | | | |73134 73134| +312039 |V2039 Cyg |204448.9+470311 |LB | 16.4 | 17.9 | |B | | | | | |73134 73134| +312040 |V2040 Cyg |204545.1+432918 |SRB | 15.2 | 16.4 | |B | | | | | |73134 73134| +312041 |V2041 Cyg |204837.1+454716 |UVN | 14.5 |< 18. | |U | | | | | |73136 73136| +312042 |V2042 Cyg |204920.4+464814 |LB | 16.5 | 17.5 | |B | | | | | |73134 73134| +312043 |V2043 Cyg |205117.6+405341 |UVN | 15.9 | 20.0 | |p | | | | | |73137 73138| +312044 |V2044 Cyg |205227.9+462452 |M: | 12.0 | 14.7 | |V | | | | | |73139 73139| +312045 |V2045 Cyg |205237.2+452020 |SRB | 15.2 | 15.9 | |V | | | | | |73134 73134| +312046 |V2046 Cyg |205251.5+534324 |SRB | 15.3 | 17.3 | |V | | | | | |73134 73134| +312047 |V2047 Cyg |205455.9+425730 |UVN | 14.5 | 18. | |U | | | | | |73136 73136| +312048 |V2048 Cyg |205500.3+430453 |UVN | 15.6 | 16.4 | |U | | | | | |73136 73136| +312049 |V2049 Cyg |205509.7+432243 |UVN | 14.8 | 17.6 | |U | | | | | |73136 73136| +312050 |V2050 Cyg |205525.6+392346 |EW | 14.42 | 14.76 | |V | | | | | |73140 73140| +312051 |V2051 Cyg |205748.8+435024 |UVN | 14.0 |< 18. | |U | | | | | |73136 73136| +312052 |V2052 Cyg |210059.6+425949 |UVN | 13.7 | 17.4 | |U | | | | | |73136 73136| +312053 |V2053 Cyg |210222.9+460756 |LB | 16.0 | 17.2 | |B | | | | | |73134 73134| +312054 |V2054 Cyg |210317.9+440930 |LB: | 15.3 | 16.3 | |V | | | | | |73134 73134| +312055 |V2055 Cyg |210310.8+541413 |LB | 15.3 | 16.2 | |V | | | | | |73134 73134| +312056 |V2056 Cyg |210336.1+450755 |LB | 14.9 | 15.5 | |V | | | | | |73134 73134| +312057 |V2057 Cyg |210712.4+422534 |UVN | 14.2 | 15.9 | |U | | | | | |73136 73136| +312058 |V2058 Cyg |210747.5+434154 |SR | 15.4 | 16.7 | |B | | | | | |73134 73134| +312059 |V2059 Cyg |210803.1+463115 |LB | 16.6 | 17.5 | |B | | | | | |73134 73134| +312060 |V2060 Cyg |210943.5+541032 |SR | 14.7 | 15.7 | |V | | | | | |73134 73134| +312061 |V2061 Cyg |211051.8+442017 |LB | 12.5 | 13.2 | |R | | | | | |73134 73134| +312062 |V2062 Cyg |211203.0+530743 |UV: | 16.0 | 17.5 | |R | | | | | |73141 73141| +312063 |V2063 Cyg |211254.3+444251 |LB | 17.8 | 18.8 | |B | | | | | |73134 73134| +312064 |V2064 Cyg |211306.9+541832 |LB | 17.1 | 18.7 | |B | | | | | |73134 73134| +312065 |V2065 Cyg |211330.3+415425 |SR | 15.9 | 17.4 | |B | | | | | |73134 73134| +312066 |V2066 Cyg |211622.1+421720 |LB | 15.1 | 16.8 | |B | | | | | |73134 73134| +312067 |V2067 Cyg |211650.9+502329 |LB | 13.2 | 14.3 | |V | | | | | |73134 73134| +312068 |V2068 Cyg |212113.0+550629 |LB | 12.0 | 13.3 | |R | | | | | |73134 73134| +312069 |V2069 Cyg |212344.9+421802 |NL: | 15.70 | 15.95 | |V | | | | | |73068 73068| +312070 |V2070 Cyg |212640.1+521908 |LB | 19.1 | 20.2 | |B | | | | | |73134 73134| +312071 |V2071 Cyg |213036.5+495118 |LB | 12.9 | 13.8 | |V | | | | | |73134 73134| +312072 |V2072 Cyg |213115.0+384632 |M | 11.8 | 17.8 | |p | | | | | |73142 73139| +312073 |V2073 Cyg |213146.6+530850 |LB | 17.8 | 18.4 | |B | | | | | |73134 73134| +312074 |V2074 Cyg |214333.6+490858 |LB | 13.3 | 14.7 | |V | | | | | |73134 73134| +312075 |V2075 Cyg |215514.5+442507 |RS | 7.46 |( 0.36 )| |V | | | | | |73005 BD | +312076 |V2076 Cyg |215732.0+382426 |SRD | 12.3 | 15.2 | |V | | | | | |73011 73011| +312077 |V2077 Cyg |191644.5+503848 |E: | 9.16 | 9.31 | |Hp| | | | | |HIP HIP | +312078 |V2078 Cyg |192151.4+283958 |BY: | 11.34 | 11.65 | |Hp| | | | | |HIP HIP | +312079 |V2079 Cyg |192601.2+450047 |ACV: | 7.00 | 7.06 | |Hp| | | | | |HIP HIP | +312080 |V2080 Cyg |192648.0+500844 |EA | 7.46 | 7.87 | |Hp| | | | | |HIP HIP | +312081 |V2081 Cyg |192749.0+504413 |CEP: | 8.69 | 8.75 | |Hp| | | | | |HIP HIP | +312082 |V2082 Cyg |192930.1+361715 |ELL | 6.72 | 6.77 | |Hp| | | | | |HIP HIP | +312083 |V2083 Cyg |193116.4+472852 |EA | 6.94 | 7.18 | |Hp| | | | | |HIP HIP | +312084 |V2084 Cyg |193329.8+360119 |DSCTC | 7.41 | 7.46 | |Hp| | | | | |HIP HIP | +312085 |V2085 Cyg |193732.2+545728 |LB | 7.29 | 7.40 | |Hp| | | | | |HIP HIP | +312086 |V2086 Cyg |193924.9+295529 |LB: | 8.20 | 8.31 | |Hp| | | | | |HIP HIP | +312087 |V2087 Cyg |194127.5+471941 |LB | 7.23 | 7.37 | |Hp| | | | | |HIP HIP | +312088 |V2088 Cyg |194236.2+282053 |DSCTC: | 8.33 | 8.39 | |Hp| | | | | |HIP HIP | +312089 |V2089 Cyg |194249.3+550137 |SRB | 8.20 | 8.35 | |Hp| | | | | |HIP HIP | +312090 |V2090 Cyg |194438.2+342451 |LB | 6.32 | 6.73 | |V | | | | | |HIP HIP | +312091 |V2091 Cyg |194903.0+295258 |LB: | 8.34 | 8.59 | |Hp| | | | | |HIP HIP | +312092 |V2092 Cyg |195004.1+323825 |LPB | 8.20 | 8.24 | |Hp| | | | | |HIP HIP | +312093 |V2093 Cyg |195046.9+374935 |LB | 6.00 | 6.40 | |Hp| | | | | |HIP HIP | +312094 |V2094 Cyg |195512.1+463956 |ACV | 7.70 | 7.79 | |Hp| | | | | |HIP HIP | +312095 |V2095 Cyg |195650.2+441616 |ACV: | 7.86 | 7.94 | |Hp| | | | | |HIP HIP | +312096 |V2096 Cyg |195631.5+534704 |SRD | 7.98 | 8.09 | |Hp| | | | | |HIP HIP | +312097 |V2097 Cyg |195813.7+342522 |LPB | 7.68 | 7.71 | |Hp| | | | | |HIP HIP | +312098 |V2098 Cyg |195810.6+423139 |LB | 8.22 | 8.42 | |Hp| | | | | |HIP HIP | +312099 |V2099 Cyg |195952.5+315049 |SRB: | 8.15 | 8.24 | |Hp| | | | | |HIP HIP | +312100 |V2100 Cyg |195915.4+520321 |LPB: | 6.05 | 6.11 | |Hp| | | | | |HIP HIP | +312101 |V2101 Cyg |195953.8+520859 |LB | 6.74 | 7.06 | |Hp| | | | | |HIP HIP | +312102 |V2102 Cyg |200140.2+400145 |LB | 9.94 | 10.49 | |Hp| | | | | |HIP HIP | +312103 |V2103 Cyg |200201.3+293509 |BE | 9.09 | 9.21 | |Hp| | | | | |HIP HIP | +312104 |V2104 Cyg |200145.5+573907 |IA | 7.63 | 7.76 | |Hp| | | | | |HIP HIP | +312105 |V2105 Cyg *|200311.6+315510 |ACYG: | 8.07 | 8.17 | |Hp| | | | | |HIP HIP | +312106 |V2106 Cyg |200502.3+521721 |LB | 8.42 | 8.61 | |Hp| | | | | |HIP HIP | +312107 |V2107 Cyg |200845.8+371413 |EB | 8.57 | 8.75 | |Hp| | | | | |HIP HIP | +312108 |V2108 Cyg |200911.8+335512 |EB | 7.86 | 8.01 | |Hp| | | | | |HIP HIP | +312109 |V2109 Cyg |200850.4+485439 |DSCT | 7.48 | 7.66 | |Hp| | | | | |HIP HIP | +312110 |V2110 Cyg |201009.4+450100 |LPB | 7.71 | 7.79 | |Hp| | | | | |HIP HIP | +312111 |V2111 Cyg |201038.2+335121 |LPB | 7.62 | 7.65 | |Hp| | | | | |HIP HIP | +312112 |V2112 Cyg |201032.9+522306 |LB | 7.34 | 7.61 | |Hp| | | | | |HIP HIP | +312113 |V2113 Cyg |201648.2+322247 |BE | 7.09 | 7.26 | |Hp| | | | | |HIP HIP | +312114 |V2114 Cyg |201754.5+340525 |LB | 6.92 | 7.19 | |Hp| | | | | |HIP HIP | +312115 |V2115 Cyg |201848.6+505350 |LB: | 8.52 | 8.63 | |Hp| | | | | |HIP HIP | +312116 |V2116 Cyg |201949.8+294337 |SXARI: | 6.71 | 6.75 | |Hp| | | | | |HIP HIP | +312117 |V2117 Cyg |202039.2+430737 |SXARI: | 8.95 | 9.15 | |Hp| | | | | |HIP HIP | +312118 |V2118 Cyg |202318.2+404533 |ACYG: | 7.12 | 7.20 | |Hp| | | | | |HIP HIP | +312119 |V2119 Cyg |202344.4+372835 |BE | 5.74 | 5.85 | |Hp| | | | | |HIP HIP | +312120 |V2120 Cyg |202532.8+544103 |GCAS | 7.13 | 7.34 | |Hp| | | | | |HIP HIP | +312121 |V2121 Cyg *|202702.3+492300 |RRAB: | 5.75 | 5.84 | |Hp| | | | | |HIP HIP | +312122 |V2122 Cyg |202920.8+502737 |ACV: | 7.58 | 7.62 | |Hp| | | | | |HIP HIP | +312123 |V2123 Cyg |203305.1+313925 |BE | 7.71 | 7.85 | |Hp| | | | | |HIP HIP | +312124 |V2124 Cyg |203306.6+542725 |LB | 6.80 | 6.90 | |Hp| | | | | |HIP HIP | +312125 |V2125 Cyg |203354.2+351503 |LC | 4.67 | 4.78 | |Hp| | | | | |HIP HIP | +312126 |V2126 Cyg |203327.7+504100 |EB: | 9.01 | 9.10 | |Hp| | | | | |HIP HIP | +312127 |V2127 Cyg |203506.2+333309 |ACV: | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +312128 |V2128 Cyg |203555.6+373727 |LB: | 8.65 | 8.77 | |Hp| | | | | |HIP HIP | +312129 |V2129 Cyg |203828.6+605507 |DSCTC | 8.37 | 8.44 | |Hp| | | | | |HIP HIP | +312130 |V2130 Cyg |203933.3+403447 |SXARI: | 6.02 | 6.04 | |Hp| | | | | |HIP HIP | +312131 |V2131 Cyg |204458.5+402442 |LB | 8.21 | 8.47 | |Hp| | | | | |HIP HIP | +312132 |V2132 Cyg |204542.0+461149 |LB | 8.51 | 8.74 | |Hp| | | | | |HIP HIP | +312133 |V2133 Cyg |204636.0+545235 |EA | 8.44 | 8.75 | |Hp| | | | | |HIP HIP | +312134 |V2134 Cyg |204743.3+431612 |EB | 8.32 | 8.49 | |Hp| | | | | |HIP HIP | +312135 |V2135 Cyg |204832.8+535422 |BE | 8.17 | 8.29 | |Hp| | | | | |HIP HIP | +312136 |V2136 Cyg |204954.6+463941 |E: | 6.30 | 6.38 | |Hp| | | | | |HIP HIP | +312137 |V2137 Cyg |205214.7+354405 |LB: | 7.82 | 7.93 | |Hp| | | | | |HIP HIP | +312138 |V2138 Cyg |205339.9+410258 |ACV: | 7.55 | 7.61 | |Hp| | | | | |HIP HIP | +312139 |V2139 Cyg |205523.1+401800 |BE | 7.12 | 7.28 | |Hp| | | | | |HIP HIP | +312140 |V2140 Cyg |205549.8+472504 |ACYG: | 5.65 | 5.84 | |V | | | | | |HIP HIP | +312141 |V2141 Cyg |205753.2+444717 |LB | 7.11 | 7.38 | |Hp| | | | | |HIP HIP | +312142 |V2142 Cyg |205958.8+322944 |SRB | 6.85 | 6.95 | |Hp| | | | | |HIP HIP | +312143 |V2143 Cyg |210016.2+333039 |LB: | 9.24 | 9.36 | |Hp| | | | | |HIP HIP | +312144 |V2144 Cyg |210049.9+463443 |GCAS: | 7.12 | 7.27 | |Hp| | | | | |HIP HIP | +312145 |V2145 Cyg |210250.0+383415 |LB | 8.48 | 8.65 | |Hp| | | | | |HIP HIP | +312146 |V2146 Cyg |210549.1+301302 |SRA | 8.45 | 8.94 | |Hp| | | | | |HIP HIP | +312147 |V2147 Cyg |210636.9+483740 |ACV: | 8.82 | 8.89 | |Hp| | | | | |HIP HIP | +312148 |V2148 Cyg |210958.6+453009 |EA | 6.52 | 6.69 | |Hp| | | | | |HIP HIP | +312149 |V2149 Cyg |211609.6+423227 |GCAS | 8.77 | 8.99 | |Hp| | | | | |HIP HIP | +312150 |V2150 Cyg *|211810.9+303522 |EW: | 8.09 | 8.19 | |Hp| | | | | |HIP HIP | +312151 |V2151 Cyg |211856.3+541241 |NL: | 12.08 | 12.89 | |Hp| | | | | |HIP HIP | +312152 |V2152 Cyg |212129.5+415358 |ACV: | 8.94 | 9.00 | |Hp| | | | | |HIP HIP | +312153 |V2153 Cyg |212251.1+404150 |BE | 7.52 | 7.62 | |Hp| | | | | |HIP HIP | +312154 |V2154 Cyg |212308.3+483108 |EA | 7.85 | 8.24 | |Hp| | | | | |HIP HIP | +312155 |V2155 Cyg |212430.3+552200 |GCAS | 7.55 | 7.80 | |Hp| | | | | |HIP HIP | +312156 |V2156 Cyg |212502.4+442706 |BE | 8.96 | 9.04 | |Hp| | | | | |HIP HIP | +312157 |V2157 Cyg |212547.0+364003 |ACYG: | 5.87 | 5.92 | |Hp| | | | | |HIP HIP | +312158 |V2158 Cyg |212617.6+355021 |LB | 7.57 | 7.78 | |Hp| | | | | |HIP HIP | +312159 |V2159 Cyg |212628.4+491649 |ACV: | 7.87 | 7.96 | |Hp| | | | | |HIP HIP | +312160 |V2160 Cyg |212733.0+340129 |BY: | 11.02 | 11.19 | |Hp| | | | | |HIP HIP | +312161 |V2161 Cyg |212814.9+475714 |LPB | 8.03 | 8.08 | |Hp| | | | | |HIP HIP | +312162 |V2162 Cyg |212914.9+442017 |BE | 7.56 | 7.67 | |Hp| | | | | |HIP HIP | +312163 |V2163 Cyg |213000.9+452939 |BE | 6.89 | 7.02 | |Hp| | | | | |HIP HIP | +312164 |V2164 Cyg |213047.0+474012 |LB: | 8.02 | 8.15 | |Hp| | | | | |HIP HIP | +312165 |V2165 Cyg |213355.4+504504 |EA | 8.73 | 8.92 | |Hp| | | | | |HIP HIP | +312166 |V2166 Cyg |213544.5+294444 |BE | 8.11 | 8.23 | |Hp| | | | | |HIP HIP | +312167 |V2167 Cyg |213614.2+444545 |LPB | 9.43 | 9.48 | |Hp| | | | | |HIP HIP | +312168 |V2168 Cyg |213638.6+392721 |BY: | 10.18 | 10.65 | |Hp| | | | | |HIP HIP | +312169 |V2169 Cyg |213759.4+482914 |EB | 7.61 | 7.76 | |Hp| | | | | |HIP HIP | +312170 |V2170 Cyg |214222.7+340409 |LB | 8.16 | 8.39 | |Hp| | | | | |HIP HIP | +312171 |V2171 Cyg |214646.4+373929 |LB | 7.21 | 7.33 | |Hp| | | | | |HIP HIP | +312172 |V2172 Cyg |215645.0+513434 |BE | 8.17 | 8.30 | |Hp| | | | | |HIP HIP | +312173 |V2173 Cyg |215702.2+484007 |LPB | 6.47 | 6.51 | |Hp| | | | | |HIP HIP | +312174 |V2174 Cyg *|215829.8+542906 |ACYG: | 8.92 | 9.07 | |Hp| | | | | |HIP HIP | +312175 |V2175 Cyg *|220138.2+501005 |BE | 9.26 | 9.38 | |Hp| | | | | |HIP HIP | +312176 |V2176 Cyg |192711.7+541752 |UGSU | 13.4 |< 20. | |V | | | | | |75106 75107| +312177 |V2177 Cyg |193518.9+543954 |SRA | 12.9 | 15.0 | |V | | | | | |75087 75087| +312178 |V2178 Cyg |194007.0+385820 |RRAB | 15.5 | 17. | |p | | | | | |75108 USNO | +312179 |V2179 Cyg |194753.1+514515 |SRA | 12.3 | 14.9 | |V | | | | | |75087 75087| +312180 |V2180 Cyg |195912.7+312710 |WR | 12.3 |( 0.09 )| |V | | | | | |75109 75020| +312181 |V2181 Cyg |200949.5+303429 |E | 13.0 |( 0.9 )| |V | | | | | |75110 75110| +312182 |V2182 Cyg |201432.1+525936 |SRA | 13.4 | 15.5 | |V | | | | | |75087 75087| +312183 |V2183 Cyg |202131.7+365513 |WR | 9.80 | 10.00 | |Hp| | | | | |75111 BD | +312184 |V2184 Cyg |202149.5+530125 |M | 12.7 |< 15.2 | |V | | | | | |75087 75087| +312185 |V2185 Cyg |203309.6+411300 |EA | 10.62 | 10.70 | |Ic| | | | | |75112 75112| +312186 |V2186 Cyg |203310.5+412222 |EA | 10.99 | 11.13 | |Ic| | | | | |75112 75112| +312187 |V2187 Cyg |203318.3+411740 |BCEP | 13.17 |( 0.08 )| |Ic| | | | | |75112 75112| +312188 |V2188 Cyg |203318.6+411536 |BE | 11.70 |( 0.06 )| |Ic| | | | | |75112 75112| +312189 |V2189 Cyg |203321.0+411801 |EA | 14.62 | 14.80 | |Ic| | | | | |75112 75112| +312190 |V2190 Cyg |203324.8+412204 |BCEP: | 12.28 |( 0.05 )| |Ic| | | | | |75112 75112| +312191 |V2191 Cyg |203330.5+412017 |EA | 13.14 | 13.42 | |Ic| | | | | |75112 75112| +312192 |V2192 Cyg |203515.0+610548 |LB | 13.4 |< 16.2 | |V | | | | | |75087 75087| +312193 |V2193 Cyg |203650.9+322334 |LB: | 11.6 | 12.2 | |p | | | | | |75113 GSC | +312194 |V2194 Cyg |203631.9+532617 |SRA | 12.1 | 14.4 | |V | | | | | |75087 75087| +312195 |V2195 Cyg |204300.0+352948 |RR: | 12.1 | 13.7 | |p | | | | | |75115 75116| +312196 |V2196 Cyg |204405.7+543352 |SRA | 12.8 | 14.0 | |V | | | | | |75087 75087| +312197 |V2197 Cyg |205016.3+375645 |E | 10.9 | 12.4 | |p | | | | | |75117 75116| +312198 |V2198 Cyg |205624.2+525701 |M: | 13.7 |< 19. | |V | | | | | |75087 75087| +312199 |V2199 Cyg |205927.9+363903 |RRC | 13.3 | 14.2 | |p | | | | | |75117 75116| +312200 |V2200 Cyg |210114.3+434318 |ACV | 7.12 |( 0.04 )| |U | | | | | |75118 BD | +312201 |V2201 Cyg |210416.9+494440 |DCEP | 13.4 | 14.5 | |B | | | | | |75069 75069| +312202 |V2202 Cyg |210901.7+320019 |RRC: | 15.30 | 15.43 | |V | | | | | |75119 75119| +312203 |V2203 Cyg |211147.6+441351 |RPHS | 13.38 |( 0.07 )| |V | | | | | |75120 75121| +312204 |V2204 Cyg |211714.6+542442 |M | 12.0 | 15.5 | |V | | | | | |75087 75087| +312205 |V2205 Cyg |213555.1+544909 |LB | 11.7 | 13.6 | |V | | | | | |75079 75079| +312206 |V2206 Cyg |213650.8+544058 |LB | 13.3 |< 16.2 | |V | | | | | |75079 75079| +312207 |V2207 Cyg |213856.9+414312 |EA | 16.2 | 18.2 | |p | | | | | |75122 75122| +312208 |V2208 Cyg | | | | | | | | | | | | |=V1250 Cyg +312209 |V2209 Cyg |214403.8+443903 |UG: | 15.2 |< 17.5 | |B | | | | | |75041 75041| +312210 |V2210 Cyg |214929.7+413731 |EA | 13.5 | 15.4 | |p | | | | | |75122 75122| +312211 |V2211 Cyg |215327.4+525958 |BE | 13.2 | 14.1 | |p | | | | | |75124 75125| +312212 |V2212 Cyg | | | | | | | | | | | | |=V1400 Cyg +312213 |V2213 Cyg |192857.9+430626 |EW: | 13.9 |( 0.47 )| |R | | | | | |76210 76210| +312214 |V2214 Cyg |193214.9+275835 |RPHS+ELL | 13.82 |( 0.06 )| |V | | | | | |76212 76036| +312215 |V2215 Cyg |193759.3+305310 |EA: | 15.59 | 16.65 | |V | | | | | |76214 76214| +312216 |V2216 Cyg |193807.2+305201 |DSCTC: | 12.29 | 12.35 | |V | | | | | |76214 76214| +312217 |V2217 Cyg |194655.5+342335 |SRA | 12.0 |( 0.15 )| |Rc| | | | | |76218 76218| +312218 |V2218 Cyg |195657.5+340953 |M: | 11.0 | 14.4 | |* | | | | | |76192 USNO | +312219 |V2219 Cyg |195702.6+344041 |SR: | 14.0 |< 15.0 | |* | | | | | |76057 76057| +312220 |V2220 Cyg |195731.5+354612 |M: | 13.6 |< 16.5 | |* | | | | | |76057 76057| +312221 |V2221 Cyg |195743.8+304621 |SR: | 12.4 | 13.7 | |* | | | | | |76192 USNO | +312222 |V2222 Cyg |195752.6+301155 |SR: | 12.3 | 13.4 | |* | | | | | |76057 76057| +312223 |V2223 Cyg |195755.1+314600 |SR: | 10.5 | 12.0 | |* | | | | | |76057 USNO | +312224 |V2224 Cyg |195806.3+365910 |M: | 12.6 |< 15.0 | |* | | | | | |76197 76057| +312225 |V2225 Cyg |195808.6+300629 |SR: | 11.1 | 12.2 | |* | | | | | |76195 76057| +312226 |V2226 Cyg |195832.2+364940 |SR: | 12.9 |< 14.8 | |* | | | | | |76197 76057| +312227 |V2227 Cyg |195943.2+365222 |SR: | 13.0 | 14.0 | |* | | | | | |76147 USNO | +312228 |V2228 Cyg |195955.8+293431 |SR: | 11.9 | 12.5 | |* | | | | | |76057 76057| +312229 |V2229 Cyg |200033.9+293613 |SR: | 13.5 |< 14.7 | |* | | | | | |76057 USNO | +312230 |V2230 Cyg |200037.6+320542 |SR: | 12.0 | 12.9 | |* | | | | | |76197 76057| +312231 |V2231 Cyg |200049.5+340758 |SR: | 13.7 | 15.8 | |* | | | | | |76057 76057| +312232 |V2232 Cyg |200101.4+301117 |CEP | 17.41 | 18.02 | |V | | | | | |76209 2MASS| +312233 |V2233 Cyg |200116.1+310950 |SR: | 13.3 | 14.5 | |* | | | | | |76147 USNO | +312234 |V2234 Cyg |200140.7+401130 |SR: | 12.3 | 13.0 | |* | | | | | |76057 USNO | +312235 |V2235 Cyg |200220.4+371801 |SR: | 13.1 | 14.6 | |* | | | | | |76197 USNO | +312236 |V2236 Cyg |200244.1+375059 |SR: | 11.7 | 12.4 | |* | | | | | |76057 USNO | +312237 |V2237 Cyg |200246.5+304136 |SR: | 12.8 | 15.0 | |* | | | | | |76057 76057| +312238 |V2238 Cyg |200621.5+355419 |DSCTC | 10.54 |( 0.08 )| |V | | | | | |76220 76220| +312239 |V2239 Cyg |201517.6+373144 |EA | 11.73 | 12.51 | |* | | | | | |76222 UCAC2| +312240 |V2240 Cyg |201555.9+372716 |EW | 12.03 | 12.29 | |* | | | | | |76223 UCAC2| +312241 |V2241 Cyg |201612.4+374157 |EW: | 15.0 |( 0.26 )| |Ic| | | | | |76224 76224| +312242 |V2242 Cyg |201631.8+374232 |EW | 15.2 | 15.7 | |Ic| | | | | |76224 76224| +312243 |V2243 Cyg |201641.6+373806 |EB | 15.4 | 16.0 | |Ic| | | | | |76224 76224| +312244 |V2244 Cyg |201659.2+373728 |RRC | 14.22 | 14.48 | |Ic| | | | | |76224 76224| +312245 |V2245 Cyg |202310.8+405230 |LPB: | 8.50 |( 0.04 )| |V | | | | | |76226 DM | +312246 |V2246 Cyg |203215.2+373815 |XP | 9.74 | 10.34 | |K | | | | | |76227 76228| +312247 |V2247 Cyg |204848.0+342608 |EA | 10.4 | 11.3 | |B | | | | | |76229 GSC | +312248 |V2248 Cyg |210014.2+394023 |SR: | 13.0 | 15.3 | |* | | | | | |76147 76057| +312249 |V2249 Cyg |210037.2+372855 |SR: | 12.6 | 14.4 | |* | | | | | |76195 USNO | +312250 |V2250 Cyg |211013.5+525102 |M | 8.9 | 11.5 | |I | | | | | |76006 76011| +312251 |V2251 Cyg |211433.6+502351 |EW: | 15.11 |( 0.16 )| |Rc| | | | | |76233 76233| +312252 |V2252 Cyg |213248.6+544015 |SR: | 13.7 | 14.5 | |V | | | | | |76054 GSC | +312253 |V2253 Cyg |213250.3+392209 |M | 14.1 |< 18.6 | |B | | | | | |76234 76234| +312254 |V2254 Cyg |213508.9+550640 |SR: | 12.6 | 13.3 | |V | | | | | |76054 GSC | +312255 |V2255 Cyg |213628.5+551534 |SR: | 12.9 | 13.5 | |V | | | | | |76054 GSC | +312256 |V2256 Cyg |213653.9+334307 |ELL | 8.07 | 8.17 | |Hp| | | | | |76235 DM | +312257 |V2257 Cyg |213703.0+545541 |SR: | 12.5 | 13.0 | |V | | | | | |76054 GSC | +312258 |V2258 Cyg |213958.3+543900 |SR: | 11.2 | 12.3 | |V | | | | | |76054 GSC | +312259 |V2259 Cyg |214208.8+545803 |SR: | 13.1 | 13.6 | |V | | | | | |76054 76273| +312260 |V2260 Cyg |214301.0+545604 |SR: | 13.1 | 13.8 | |V | | | | | |76054 USNO | +312261 |V2261 Cyg |214355.1+534343 |EA | 13.35 |( 0.39 * )| |V | | | | | |76236 76236| +312262 |V2262 Cyg |214356.1+534243 |IB: | 10.93 |( 0.13 * )| |V | | | | | |76236 76236| +312263 |V2263 Cyg |214403.5+534247 |EB/SD | 12.36 |( 0.68 * )| |V | | | | | |76236 76236| +312264 |V2264 Cyg |214411.4+534419 |ACV: | 15.24 |( 0.23 * )| |V | | | | | |76236 76236| +312265 |V2265 Cyg |214657.6+545409 |SR: | 11.4 | 12.3 | |V | | | | | |76054 GSC | +312266 |V2266 Cyg |214824.9+552213 |SR: | 13.9 | 14.5 | |V | | | | | |76054 GSC | +312267 |V2267 Cyg |215244.9+551737 |SR: | 12.3 | 12.8 | |V | | | | | |76054 GSC | +312268 |V2268 Cyg |215449.2+551539 |SR: | 11.5 | 12.0 | |V | | | | | |76054 GSC | +312269 |V2269 Cyg |215801.5+550307 |SR: | 13.4 | 14.1 | |V | | | | | |76054 GSC | +312270 |V2270 Cyg |215828.8+510532 |SR: | 12.1 | 13.0 | |* | | | | | |76057 USNO | +312271 |V2271 Cyg |215856.6+551337 |SR | 12.6 | 13.4 | |* | | | | | |76197 USNO | +312272 |V2272 Cyg |215910.9+550756 |SR: | 11.1 | 11.8 | |V | | | | | |76054 GSC | +312273 |V2273 Cyg |220002.5+504939 |SR: | 10.8 | 11.5 | |* | | | | | |76057 USNO | +312274 |V2274 Cyg |200717.9+360437 |NA | 11.7 |< 18. | |V | | | | | |77184 77185| +312275 |V2275 Cyg |210302.0+484553 |NA | 6.66 |< 15. | |V | | | | | |77196 77197| +312276 |V2276 Cyg |191518.9+522936 |EA | 11.4 | 11.8 | |V | | | | | |77100 GSC | +312277 |V2277 Cyg |191533.7+443701 |EA | 10.5 | 11.1 | |V | | | | | |77100 DM | +312278 |V2278 Cyg |191634.6+524856 |EW | 13.30 | 13.62 | |* | | | | | |77171 GSC | +312279 |V2279 Cyg |191854.5+434926 |RS: | 12.2 | 14.0 | |V | | | | | |77143 77144| +312280 |V2280 Cyg |192143.9+480358 |EW | 13.32 | 14.08 | |* | | | | | |77171 GSC | +312281 |V2281 Cyg |192506.9+455603 |EA | 12.1 | 12.6 | |V | | | | | |77100 GSC | +312282 |V2282 Cyg |192537.9+532520 |EW : | 12.02 | 12.30 | |* | | | | | |77171 GSC22| +312283 |V2283 Cyg |192839.0+450552 |M | 12.1 |< 16.0 | |V | | | | | |77143 77144| +312284 |V2284 Cyg |192955.0+485500 |EW | 12.71 | 13.45 | |* | | | | | |77161 USNO | +312285 |V2285 Cyg |193033.0+480325 |M | 11.6 | 15.2 | |V | | | | | |77143 77144| +312286 |V2286 Cyg |193035.8+315848 |LB | 7.51 |( 0.03 )| |V | | | | | |77023 DM | +312287 |V2287 Cyg |193207.7+523714 |EB | 11.6 | 12.1 | |V | | | | | |77100 GSC | +312288 |V2288 Cyg |193310.6+385834 |SRA | 11.9 | 14.2 | |V | | | | | |77143 77144| +312289 |V2289 Cyg |193436.2+510742 |UG | 15.7 |< 19.0 | |V | | | | | |77174 77019| +312290 |V2290 Cyg |193523.1+480301 |EA | 13.61 | 15.24 | |V | | | | | |77175 77144| +312291 |V2291 Cyg |193658.3+474831 |EA: | 11.5 | 11.8 | |V | | | | | |77100 GSC | +312292 |V2292 Cyg |193738.5+490751 |M | 11.8 | 16.0 | |V | | | | | |77143 77144| +312293 |V2293 Cyg |193908.5+432350 |SRA | 12.2 | 13.9 | |V | | | | | |77143 77144| +312294 |V2294 Cyg |194029.4+502552 |EW | 13.23 | 13.58 | |* | | | | | |77177 GSC | +312295 |V2295 Cyg |194206.6+380337 |SR | 12.2 | 14.2 | |V | | | | | |77143 77144| +312296 |V2296 Cyg |194208.4+472257 |M | 11.8 | 15.5 | |V | | | | | |77143 77144| +312297 |V2297 Cyg |194308.7+413414 |SRA | 12.6 | 14.7 | |V | | | | | |77143 77144| +312298 |V2298 Cyg |194415.7+391112 |M | 12.0 | 14.8 | |V | | | | | |77143 77144| +312299 |V2299 Cyg |194715.8+442707 |LB | 13.2 | 14.7 | |V | | | | | |77143 77144| +312300 |V2300 Cyg |194758.8+384555 |SRA | 11.8 | 13.7 | |V | | | | | |77143 77144| +312301 |V2301 Cyg |194926.4+373158 |LB | 12.5 | 14.0 | |V | | | | | |77143 77144| +312302 |V2302 Cyg |195039.6+504223 |M | 11.8 | 14.8 | |V | | | | | |77143 77179| +312303 |V2303 Cyg |195206.7+433108 |LB | 11.5 | 13.5 | |V | | | | | |77143 77144| +312304 |V2304 Cyg |195253.3+462146 |LB | 11.8 | 13.5 | |V | | | | | |77143 77179| +312305 |V2305 Cyg |195347.9+471144 |M | 11.4 | 14.6 | |V | | | | | |77143 77179| +312306 |V2306 Cyg |195814.5+323242 |XPM | 15.16 |( 0.9 )| |U | | | | | |77180 77180| +312307 |V2307 Cyg |195828.4+470610 |M | 11.0 | 15.0 | |V | | | | | |77143 77179| +312308 |V2308 Cyg |195912.0+484333 |M | 11.4 | 15.2 | |V | | | | | |77143 77179| +312309 |V2309 Cyg |195939.0+473133 |M | 12.0 |< 16.1 | |V | | | | | |77143 77144| +312310 |V2310 Cyg |200345.6+474217 |LB | 13.2 |< 16.0 | |V | | | | | |77143 77179| +312311 |V2311 Cyg |201152.9+413605 |EA | 13.40 | 14.63 | |* | | | | | |77189 USNO | +312312 |V2312 Cyg *|201203.8+474413 |LBV | 6.92 |( 0.08 b )| |V | | | | | |77190 DM | +312313 |V2313 Cyg |202117.5+303441 |SRB | 10.46 | 10.87 | |V | | | | | |77191 GSC | +312314 |V2314 Cyg |202210.2+311512 |EA | 8.64 | 8.76 | |Hp| | | | | |77192 DM | +312315 |V2315 Cyg |203445.9+324813 |SRA | 11.3 | 13.3 | |V | | | | | |77144 77144| +312316 |V2316 Cyg |203700.1+335409 |M | 13.0 | 16.0 | |V | | | | | |77144 77144| +312317 |V2317 Cyg |203701.2+303947 |M | 12.1 | 15.0 | |V | | | | | |77144 77144| +312318 |V2318 Cyg |203711.3+342215 |SRA | 12.4 | 14.5 | |V | | | | | |77144 77144| +312319 |V2319 Cyg |203819.8+341221 |LB: | 13.4 |< 16.0 | |V | | | | | |77144 77144| +312320 |V2320 Cyg |203950.1+343718 |LB | 11.8 | 13.2 | |V | | | | | |77144 77144| +312321 |V2321 Cyg |204300.6+332444 |LB: | 13.7 |< 16.0 | |V | | | | | |77144 77144| +312322 |V2322 Cyg |205309.5+323105 |M: | 13.2 |< 16.2 | |V | | | | | |77144 77144| +312323 |V2323 Cyg |205348.0+531359 |M | 13.2 | 17.0 | |I | | | | | |77012 77013| +312324 |V2324 Cyg *|205855.6+493113 |* | 11.58 | 11.80 | |V | | | | | |77178 GSC | +312325 |V2325 Cyg |210405.5+323013 |SR | 11.0 | 15.5 | |V | | | | | |77144 77144| +312326 |V2326 Cyg |210532.2+352506 |EB: | 12.8 | 14.2 | |V | | | | | |77144 77144| +312327 |V2327 Cyg |210755.7+353522 |SRA | 13.1 | 14.4 | |V | | | | | |77144 77144| +312328 |V2328 Cyg |211014.8+312941 |SRA | 11.2 | 14.3 | |V | | | | | |77144 77144| +312329 |V2329 Cyg |211019.3+332854 |M | 11.3 | 14.6 | |V | | | | | |77144 77144| +312330 |V2330 Cyg |211047.8+342007 |M | 10.4 | 14.9 | |V | | | | | |77144 77144| +312331 |V2331 Cyg |211113.6+341914 |L | 12.5 | 14.6 | |V | | | | | |77144 77144| +312332 |V2332 Cyg |211120.0+312319 |M | 11.2 |< 15.0 | |V | | | | | |77144 77144| +312333 |V2333 Cyg |211412.3+363900 |M | 10.6 |< 14.7 | |V | | | | | |77144 77144| +312334 |V2334 Cyg |211645.0+291340 |LB | 12.2 |< 14.4 | |V | | | | | |77144 77144| +312335 |V2335 Cyg |211709.6+310750 |M | 11.5 | 15.0 | |V | | | | | |77144 77144| +312336 |V2336 Cyg |211834.7+334431 |SRA | 13.5 | 15.9 | |V | | | | | |77144 77144| +312337 |V2337 Cyg |211939.9+350012 |LB: | 12.1 | 13.3 | |V | | | | | |77144 77144| +312338 |V2338 Cyg |211953.0+350857 |LB: | 11.8 | 13.3 | |V | | | | | |77144 77144| +312339 |V2339 Cyg |212031.9+330718 |SRA | 10.7 | 13.2 | |V | | | | | |77144 77144| +312340 |V2340 Cyg |212844.9+485842 |DCEP | 11.8 | 12.3 | |B | | | | | |77199 GSC | +312341 |V2341 Cyg |213154.7+330303 |M | 11.5 | 15.6 | |V | | | | | |77144 77144| +312342 |V2342 Cyg |213509.8+311136 |SRA | 12.7 | 14.8 | |V | | | | | |77144 77144| +312343 |V2343 Cyg |213604.2+361347 |SR | 11.3 | 12.9 | |V | | | | | |77144 77144| +312344 |V2344 Cyg |213932.3+300351 |SRB | 14.0 | 15.5 | |V | | | | | |77144 77144| +312345 |V2345 Cyg |213933.3+505630 |M | 14.1 | 16.8 | |I | | | | | |77012 77013| +312346 |V2346 Cyg |213955.1+311916 |M | 12.5 | 16.0 | |V | | | | | |77144 77144| +312347 |V2347 Cyg |214300.1+324139 |LB | 11.4 | 13.7 | |V | | | | | |77144 77144| +312348 |V2348 Cyg |214310.3+354514 |SR | 13.2 | 15.1 | |V | | | | | |77144 77144| +312349 |V2349 Cyg |214343.6+534601 |EA | 16.50 | 16.85 | |V | | | | | |77200 77200| +312350 |V2350 Cyg |214350.3+534246 |EA | 16.40 | 16.56 | |V | | | | | |77200 77200| +312351 |V2351 Cyg |214351.3+534306 |LBV: | 15.97 | 16.07 | |V | | | | | |77200 77200| +312352 |V2352 Cyg |214358.2+534245 |LBV: | 16.16 | 16.28 | |V | | | | | |77200 77200| +312353 |V2353 Cyg |214403.0+534212 |BE | 13.16 | 13.19 | |V | | | | | |77200 77200| +312354 |V2354 Cyg |214405.3+534236 |LBV: | 14.39 | 14.43 | |V | | | | | |77200 77200| +312355 |V2355 Cyg |214407.3+534156 |E: | 14.26 | 14.31 | |V | | | | | |77200 77200| +312356 |V2356 Cyg |214447.5+342716 |LB | 10.8 |< 16.0 | |V | | | | | |77144 77144| +312357 |V2357 Cyg |214609.7+355616 |M | 11.6 | 15.2 | |V | | | | | |77144 77144| +312358 |V2358 Cyg |214645.5+500359 |M | 15.9 | 17.6 | |I | | | | | |77012 77013| +312359 |V2359 Cyg |215627.8+534619 |SR: | 12.4 | 13.2 | |V | | | | | |77004 GSC | +312360 |V2360 Cyg |215733.1+534748 |SR: | 11.8 | 12.7 | |V | | | | | |77004 GSC | +312361 |V2361 Cyg |200919.1+394853 |NA | 10.13 |< 19. | |V |53413. |2005 | | |pec(Nova) |78287 | +312362 |V2362 Cyg |211132.3+444804 |N | 8.5 |< 20. | |V |53831. |2006 | | |pec(Nova) |78325 | +312363 |V2363 Cyg *|192108.4+510201 |EW | 12.10 |( 0.18 )|( 0.13 )|V |52571.108 | | 0.361900 | | |78161 GSC | +312364 |V2364 Cyg *|192211.8+492834 |EW | 11.20 | 11.84 | 11.73 |* |52186.90143 | | 0.5921376 | | |78268 GSC | +312365 |V2365 Cyg |192414.7+501520 |EA | 9.62 |( 0.2 )| |B |51717.8150 | | 3.747833 : |03 |A5 |78269 DM | +312366 |V2366 Cyg |193210.8+454409 |EW | 12.79 |( 0.42 V )| |* |52576.895 | | 0.356456 | | |78161 GSC | +312367 |V2367 Cyg |193445.6+455416 |DSCT | 11.81 |( 0.40 V )| |* |52570.024 | | 0.176617 | | |78161 GSC | +312368 |V2368 Cyg |193848.3+302859 |SR: | 13.7 | 14.8 | |Rc| | | | |M |78273 78273| +312369 |V2369 Cyg |193951.0+382108 |RRC | 10.9 |( 0.37 )| |V |52907.3267 | | 0.297224 |35 | |78274 GSC | +312370 |V2370 Cyg |194005.3+401417 |EA | 18.91 |( 0.16 )| |V |51357.506 | | 1.46 |12 | |78275 USNO | +312371 |V2371 Cyg |194012.5+400045 |EA | 18.02 |( 0.07 )| |V |51359.526 | | 3.486 |05 | |78275 USNO | +312372 |V2372 Cyg |194013.9+401122 |EA | 19.13 |( 0.06 )| |V |51382.534 | | 2.302 |08 | |78275 USNO | +312373 |V2373 Cyg |194021.7+400410 |EA: | 16.74 |( 0.03 )| |V |51389.656 | | | | |78275 USNO | +312374 |V2374 Cyg *|194021.8+401209 |RRAB: | 20.6 |( 0.40 )| |V | | | 0.725 | | |78276 78276| +312375 |V2375 Cyg *|194030.5+401624 |EB | 19.56 |( 0.45 )|( 0.20 )|V |51383.567 | | 0.2705 | | |78276 78276| +312376 |V2376 Cyg *|194031.6+401252 |EA | 20.5 |( 0.80 )|( 0.50 )|V |51354.569 | | 1.332 |15 | |78276 78276| +312377 |V2377 Cyg |194032.0+401041 |BY: | 18.40 |( 0.15 )| |V | | | 10.9 | | |78276 78276| +312378 |V2378 Cyg |194038.0+400105 |EA: | 21.72 |( 0.21 )| |V |51390.522 | | | | |78275 | +312379 |V2379 Cyg |194041.6+400747 |CEP: | 19.2 |( 0.70 )| |V |51355 :| | 13. : | | |78276 78276| +312380 |V2380 Cyg *|194042.7+401326 |EW | 20.37 |( 0.45 )|( 0.35 )|V |51355.555 | | 0.2899 | | |78276 78276| +312381 |V2381 Cyg *|194044.8+400922 |EA | 17.36 |( 1.50 )|( 0.20 )|V |51391.6151 | | 1.468 |15 | |78276 78276| +312382 |V2382 Cyg |194048.4+401619 |BY | 20.68 |( 0.6 )| |V | | | 4.2 | | |78276 78276| +312383 |V2383 Cyg *|194053.1+401118 |EA | 20.06 |( 0.60 )|( 0.15 )|V |51385.607 | | 0.3571 | | |78276 78276| +312384 |V2384 Cyg |194056.7+400505 |EA | 18.67 |( 0.10 )| |V |51356.578 | | 1.682 | | |78275 USNO | +312385 |V2385 Cyg *|194059.6+400825 |EW | 19.81 |( 0.30 )|( 0.30 )|V |51359.516 | | 0.2637 | | |78276 78276| +312386 |V2386 Cyg *|194105.8+401254 |EW | 20.72 |( 0.50 )|( 0.50 )|V |51382.4676 | | 0.2814 | | |78276 78276| +312387 |V2387 Cyg |194109.7+401038 |BY | 19.12 |( 0.10 )| |V | | | 6.5 | | |78276 78276| +312388 |V2388 Cyg *|194110.3+401519 |EW | 16.61 |( 0.45 )|( 0.40 )|V |51387.726 | | 0.3660 | | |78276 78276| +312389 |V2389 Cyg *|194111.7+400640 |EW | 18.17 |( 0.35 )|( 0.35 )|V |51359.6924 | | 0.3384 | | |78276 78276| +312390 |V2390 Cyg *|194115.3+401232 |EB: | 18.11 |( 0.15 )|( 0.05 )|V |51383.326 | | 0.6742 | | |78276 78276| +312391 |V2391 Cyg |194121.3+400214 |EA | 16.60 |( 0.03 )| |V |51387.609 | | 3.682 |07 | |78275 USNO | +312392 |V2392 Cyg |194122.2+401011 |BY | 19.1 |( 0.20 )| |V | | | 6.3 | | |78276 78276| +312393 |V2393 Cyg |194122.6+401107 |EW: | 17.49 |( 0.16 )| |V |51359.519 | | 0.3032 | | |78276 78276| +312394 |V2394 Cyg *|194122.9+401440 |EW: | 18.27 |( 0.16 )|( 0.16 )|V |51358.5536 | | 0.2562 | | |78276 78276| +312395 |V2395 Cyg |194126.8+401049 |BY | 18.2 |( 0.20 )| |V | | | 3.9 | | |78276 78276| +312396 |V2396 Cyg |194128.6+401625 |EW | 17.25 |( 0.20 )| |V |51356.4608 | | 0.293 | | |78276 78276| +312397 |V2397 Cyg |194133.9+402635 |EA | 20.07 |( 0.25 )| |V |51383.490 | | 3.621 |05 | |78275 | +312398 |V2398 Cyg |194135.9+401353 |BY | 19.76 |( 0.20 )| |V | | | 3.5 | | |78276 78276| +312399 |V2399 Cyg |194136.0+401620 |BY | 19.94 |( 0.20 )| |V | | | 5.4 | | |78276 78276| +312400 |V2400 Cyg |194141.5+400703 |BY | 18.83 |( 0.25 )| |V | | | 1.37 | | |78276 78276| +312401 |V2401 Cyg |194141.8+401142 |BY: | 18.47 |( 0.10 )| |V | | | 9.6 | | |78276 78276| +312402 |V2402 Cyg |194144.5+401424 |BY | 18.76 |( 0.12 )| |V | | | 1.9 | | |78276 78276| +312403 |V2403 Cyg |194151.4+401234 |BY | 19.40 |( 0.10 )| |V | | | 0.733 | | |78276 78276| +312404 |V2404 Cyg |194152.3+401224 |EW | 20.08 |( 0.50 )| |V |51358.6315 | | 0.2751 | | |78276 78276| +312405 |V2405 Cyg |194157.1+401825 |EA | 18.46 |( 0.10 )| |V |51356.4832 | | 1.3112 |07 | |78275 2MASS| +312406 |V2406 Cyg |194207.1+395939 |EA: | 20.18 |( 0.04 )| |V |51385.561 | | | | |78275 | +312407 |V2407 Cyg |194211.7+400648 |BY: | 17.61 |( 0.12 )| |V | | | 11.5 | | |78276 78276| +312408 |V2408 Cyg |194215.1+400442 |EA | 18.88 |( 0.19 )| |V |51352.535 | | 2.233 | | |78275 | +312409 |V2409 Cyg *|194506.4+532336 |EW | 13.7 | 14.3 | 14.1 |* |51359.800 | | 0.36587 | | |78161 USNO | +312410 |V2410 Cyg |195735.0+371451 |M: | 12.6 |< 14.8 | |* | | | | | |78006 2MASS| +312411 |V2411 Cyg |195743.2+303642 |SR: | 13.7 |< 15.5 | |* | | | | | |78006 2MASS| +312412 |V2412 Cyg |195807.7+465601 |SR | 12.7 | 14.3 | |* |51400 | | 250. : | | |78006 2MASS| +312413 |V2413 Cyg |195842.0+295607 |SR: | 12.8 |< 14.7 | |* | | | | | |78006 2MASS| +312414 |V2414 Cyg *|200219.4+395509 |E | 9.87 | 10.48 | |R | | | 4.85437 | |B8 |78282 78282| +312415 |V2415 Cyg |200303.1+311243 |SR | 10.2 | 12.0 | |* | | | 310. : | | |78006 2MASS| +312416 |V2416 Cyg |200304.3+590654 |DSCT | 13.4 |( 0.14 )| |B | | | 0.05589 | | |78284 78284| +312417 |V2417 Cyg *|200640.0+331428 |BE: | 6.28 | 6.90 | |K | | | | | |78285 GSC | +312418 |V2418 Cyg |200946.0+502730 |M: | 12.1 |< 14.6 | |* |51525 :| | | | |78006 2MASS| +312419 |V2419 Cyg |201155.1+311221 |M: | 13.2 | 16.0 | |* | | | | | |78006 2MASS| +312420 |V2420 Cyg |201427.8+472945 |SR | 12.0 | 14.4 | |* |51390 | | 130. : | | |78006 2MASS| +312421 |V2421 Cyg *|201438.6+415614 |EB | 13.79 | 15.03 | 14.20 |* |52873.9913 | | 0.6331 | | |78006 GSC | +312422 |V2422 Cyg *|201658.8+390524 |EB | 13.3 |( 0.64 * )|( 0.47 )|V |52122.459 | | 0.50619 | | |78291 78291| +312423 |V2423 Cyg |202102.2+441744 |SR | 12.8 |< 13.8 | |* |51359 | | | | |78006 2MASS| +312424 |V2424 Cyg |202723.5+474852 |SR: | 12.7 | 13.9 | |* | | | | | |78006 2MASS| +312425 |V2425 Cyg |203107.8+333235 |BY | 8.35 |( 0.03 )| |V | | | 6.94 : | |K0 |78018 DM | +312426 |V2426 Cyg |203824.1+480912 |SRA: | 12.4 | 14.5 | |* |51340 | | 305. : | | |78040 2MASS| +312427 |V2427 Cyg |203940.5+435147 |M: | 14.4 |< 17.2 | |* | | | | | |78006 2MASS| +312428 |V2428 Cyg *|204119.0+344452 |ZAND | 14.5 | 16.8 | |B | | | | |Me |78294 78295| +312429 |V2429 Cyg |204340.6+442838 |LC: | 10.4 | 13.7 | |V | | | | |M3 |78296 78296| +312430 |V2430 Cyg |204543.1+440045 |M: | 13.3 | 15.8 | |* | | | | | |78006 2MASS| +312431 |V2431 Cyg |204916.2+321705 |BY | 8.25 |( 0.03 )| |V | | | 22.64 | |K2V |78018 DM | +312432 |V2432 Cyg |205703.3+391652 |SR: | 11.9 | 13.9 | |* | | | | | |78006 2MASS| +312433 |V2433 Cyg |205941.0+480841 |LB: | 11.5 | 12.4 | |* | | | | | |78006 2MASS| +312434 |V2434 Cyg |210018.4+435045 |SR: | 12.1 | 13.7 | |* | | | | | |78006 2MASS| +312435 |V2435 Cyg |210041.8+385001 |SR: | 10.5 | 12.3 | |* | | | | | |78006 2MASS| +312436 |V2436 Cyg |210240.8+455305 |BY | 7.69 |( 0.03 )| |V | | | 10.526 | |K2V |78018 DM | +312437 |V2437 Cyg |211218.5+475846 |SR: | 11.3 | 12.8 | |* | | | | | |78006 2MASS| +312438 |V2438 Cyg |211536.9+474319 |SR: | 12.1 | 13.7 | |* | | | | | |78006 2MASS| +312439 |V2439 Cyg |212311.9+425927 |M: | 13.2 | 16.0 | |* | | | | | |78006 2MASS| +312440 |V2440 Cyg |212313.6+462051 |S: | 14.18 |( 0.02 )| |B | | | | | |78298 78298| +312441 |V2441 Cyg |212314.1+462440 |DSCTC | 19.17 |( 0.06 )| |B | | | 0.108 | | |78298 78298| +312442 |V2442 Cyg |212318.6+462124 |DSCTC | 15.49 |( 0.02 )| |B | | | 0.081 | | |78298 78298| +312443 |V2443 Cyg |212321.5+462259 |DSCTC | 13.87 |( 0.02 )| |B | | | 0.075 | | |78298 78298| +312444 |V2444 Cyg |212321.7+462512 |DSCTC | 15.01 |( 0.02 )| |B | | | 0.049 | | |78298 78298| +312445 |V2445 Cyg |212322.9+462225 |DSCTC | 18.16 |( 0.07 )| |B | | | 0.083 | | |78298 78298| +312446 |V2446 Cyg |212323.7+462259 |DSCTC: | 17.83 |( 0.01 )| |B | | | 0.100 | | |78298 78298| +312447 |V2447 Cyg |212329.6+462305 |DSCT | 19.55 |( 0.34 )| |B | | | 0.046 | | |78298 78298| +312448 |V2448 Cyg |212329.8+462239 |DSCTC | 14.67 |( 0.02 )| |B | | | 0.070 | | |78298 78298| +312449 |V2449 Cyg |212330.6+462139 |DSCTC: | 13.98 |( 0.04 )| |B | | | 0.217 | | |78298 78298| +312450 |V2450 Cyg |212333.5+462208 |DSCTC | 16.45 |( 0.03 )| |B | | | 0.086 | | |78298 78298| +312451 |V2451 Cyg |212335.9+462411 |DSCTC | 15.03 |( 0.03 )| |B | | | 0.052 | | |78298 78298| +312452 |V2452 Cyg |212339.1+462021 |DSCTC | 19.90 |( 0.02 )| |B | | | 0.141 | | |78298 78298| +312453 |V2453 Cyg |212340.1+462356 |DSCTC | 16.14 |( 0.01 )| |B | | | 0.055 | | |78298 78298| +312454 |V2454 Cyg |212346.4+462600 |DSCTC | 17.41 |( 0.06 )| |B | | | 0.033 | | |78298 78298| +312455 |V2455 Cyg |212824.6+464031 |DSCT | 8.53 | 8.97 | |V |52885.3992 | | 0.0942075 | |F2 |78299 DM | +312456 |V2456 Cyg *|213043.8+335724 |EB | 11.3 | 11.9 | 11.6 |* |51482.622 | | 0.695915 | |A0 |78013 78300| +312457 |V2457 Cyg |213229.7+494324 |SR: | 13.1 | 14.4 | |* | | | | | |78006 2MASS| +312458 |V2458 Cyg |213358.2+531658 |SR | 13.2 | 14.2 | |* |51450 | | 290. : | | |78006 2MASS| +312459 |V2459 Cyg |214355.6+425525 |SR: | 12.5 | 13.5 | |* | | | | | |78006 2MASS| +312460 |V2460 Cyg |214620.0+495423 |M: | 12.1 | 15.0 | |* | | | | | |78006 2MASS| +312461 |V2461 Cyg |215038.7+491645 |M: | 11.5 | 14.3 : | |R | | | | | |78040 2MASS| +312462 |V2462 Cyg |215615.4+550024 |SR: | 13.0 | 14.6 | |* | | | | | |78006 2MASS| +312463 |V2463 Cyg |215650.4+551422 |SR: | 12.5 | 14.6 | |* | | | | | |78006 2MASS| +312464 |V2464 Cyg |220050.9+525155 |M: | 12.7 |< 15.4 | |* | | | | | |78006 2MASS| +312465 |V2465 Cyg |220204.9+531725 |SR: | 12.7 | 13.8 | |* | | | | | |78006 2MASS| +312466 |V2466 Cyg |220241.8+463907 |UGSU: | 15.7 |< 21.0 | |B | | | | | |78297 78297| +312467 |V2467 Cyg |202812.5+414836 |NA | 7.3 |< 18. | |V |54176. |2007 | | |pec(Nova) |79032 79114| +312468 |V2468 Cyg |195833.4+295207 |NA | 7.6 |< 18. | |V |54535. |2008 | | |pec(Nova) |79148 | +312469 |V2469 Cyg |191216.1+494224 |EA | 12.64 | 13.2 | 12.73 |* |51483.590 | | 0.90333 |14 | |79004 79013| +312470 |V2470 Cyg |191958.0+465321 |RRAB | 12.89 | 13.57 | |* |52900.425 | | 0.54819 |20 | |79100 79017| +312471 |V2471 Cyg |200431.5+530344 |EW | 13.6 | 14.3 | 14.1 |* |51414.105 | | 0.28254 | | |79025 79047| +312472 |V2472 Cyg |200502.6+415944 |LB | 12.6 | 13.0 | |V | | | | |C |79223 GSC | +312473 |V2473 Cyg *|200945.8+485207 |EA | 13.05 | 13.9 : | 13.7 |* |51523.654 | | 2.4021 |10 : | |79001 GSC | +312474 |V2474 Cyg *|201046.2+334805 |EB: | 10.97 | 11.27 | 11.2 |* |51354.500 | | 32.34 | | |79006 79040| +312475 |V2475 Cyg |201356.2+351942 |DCEP | 11.1 | 11.9 | |* |51449.77 | | 11.561 |41 | |79100 79040| +312476 |V2476 Cyg |201439.7+353915 |EB | 11.70 | 12.15 | 12.1 |* |51415.730 | | 18.88 | | |79004 79134| +312477 |V2477 Cyg |201858.9+563619 |EW | 9.86 | 10.65 : | 10.52 |* |51492.835 | | 0.311250 | |F8 |79003 79047| +312478 |V2478 Cyg *|204224.6+421805 |EW | 13.6 | 14.3 : | 14.2 : |* |51495.658 | | 0.33999 | | |79004 79165| +312479 |V2479 Cyg |204510.9+364842 |LB | 12.9 | 13.9 | |V | | | | | |79100 79224| +312480 |V2480 Cyg |210405.9+393300 |EA | 12.32 | 13.1 | 12.7 : |* |51282.436 | | 0.66927 |20 | |79004 79040| +312481 |V2481 Cyg |210417.1+375107 |M: | 13.7 | 17.9 | |p |49163. :| | | |M5/7 |79100 79165| +312482 |V2482 Cyg |210739.5+404002 |M: | 10.3 | 12.3 | |* |51370. | | 218. : | | |79036 79165| +312483 |V2483 Cyg |210809.4+362819 |EB | 10.89 | 11.9 : | 11.35 : |* |51490.400 | | 112.4 : | | |79004 GSC | +312484 |V2484 Cyg |211522.9+380404 |LB | 9.7 | 10.6 | |* | | | | | |79100 79225| +312485 |V2485 Cyg |211537.2+380228 |EB | 13.4 | 14.1 | 13.6 |* |51282.392 | | 1.31477 | | |79006 79089| +312486 |V2486 Cyg *|211659.4+401957 |EA | 9.65 | 10.14 | 10.14 |* |51518.644 | | 1.27268 |18 |A2 |79004 DM | +312487 |V2487 Cyg |211850.7+395413 |LB: | 10.6 | 12.6 | |* | | | | | |79100 79165| +312488 |V2488 Cyg |213332.7+363119 |SRB | 9.9 | 10.3 | |* | | | 56. | | |79100 79226| +312489 |V2489 Cyg |213621.7+382324 |SR | 11.8 | 14.3 | |V |51360. | | 205. : | | |79100 79165| +312490 |V2490 Cyg |214226.0+284947 |EB | 11.75 | 12.25 | 12.00 |* |51486.805 | | 0.78099 | | |79003 GSC | +312491 |V2491 Cyg |194302.0+321914 |NA: | 7.4 |< 16. | |V |54568. |2008 | | |pec(Nova) |79246 79247| +312492 |V2492 Cyg |205126.2+440524 |INT | 13.9 | 19. : | |V | | | | |pec(e) |80436 80436| NL80_2 +312493 |V2493 Cyg |205817.0+435343 |FU | 13.65 | 18.47 | |V | | | | |K7-M0e |80437 80437| NL80_2 +312494 |V2494 Cyg |205821.1+522928 |FU | 17.3 |< 19. | |R | | | | | |80438 80438| NL80_2 +312495 |V2495 Cyg |210025.2+523016 |FU | 11. : |< 15. | |K | | | | | |80439 80439| NL80_2 +312496 |V2496 Cyg |192345.0+511612 |RS | 12.20 | 12.75 | |* | | | 13.3 | | |80246 80246| NL80_3 +312497 |V2497 Cyg |192357.4+293713 |EW | 13.27 | 13.84 | 13.74 |V |52888.3824 | | 0.36880 | | |80038 80038| NL80_3 +312498 |V2498 Cyg *|192403.7+294032 |DSCTC | 11.43 |( 0.07 )| |B | | | 0.06 | | |80089 80089| NL80_3 +312499 |V2499 Cyg |192646.7+542710 |LB | 10.5 | 10.9 | |* | | | | | |80100 GSC | NL80_3 +312500 |V2500 Cyg *|192753.1+332226 |DSCTC | 7.65 |( 0.03 )| |B | | | 0.0640168 | |F1III |80092 HIP | NL80_3 +312501 |V2501 Cyg |193658.2+462024 |DSCTC: | 12.03 | 12.09 | |V | | | 0.05 : | | |80176 80176| NL80_3 +312502 |V2502 Cyg |193703.2+461926 |DSCTC: | 10.84 | 10.90 | |V | | | 0.13 : | |A4 |80176 80176| NL80_3 +312503 |V2503 Cyg |193721.5+462434 |DSCTC: | 11.09 |( 0.02 )| |V | | | 0.05 : | | |80176 80176| NL80_3 +312504 |V2504 Cyg |193724.1+462352 |DSCTC: | 11.52 |( 0.07 )| |V | | | 0.12 : | | |80176 80176| NL80_3 +312505 |V2505 Cyg |193732.1+461915 |DSCTC: | 11.47 |( 0.02 )| |V | | | 0.08 : | | |80176 80176| NL80_3 +312506 |V2506 Cyg |193758.8+461420 |DSCT | 11.01 |( 0.13 )| |V | | | 0.11 : | | |80176 80176| NL80_3 +312507 |V2507 Cyg |193802.9+461723 |DSCT | 14.00 |( 0.14 )| |V | | | 0.07 : | | |80176 80176| NL80_3 +312508 |V2508 Cyg |193910.0+405215 |BY | 10.3 | 10.5 | |* | | | 31.2 | | |80043 80043| NL80_3 +312509 |V2509 Cyg |194122.3+305223 |EW | 12.5 |( 0.53 )|( 0.50 )|r |53569.476 | | 0.396808 | | |80087 80087| NL80_3 +312510 |V2510 Cyg |194340.5+464003 |RS | 11.1 | 11.4 | |* | | | 25.08 | | |80158 GSC | NL80_3 +312511 |V2511 Cyg |194543.5+321002 |EW | 13.7 | 14.0 | 13.9 |* |54365.5196 | | 0.6489015 | | |80001 80529| NL80_3 +312512 |V2512 Cyg |194553.3+321335 |SR | 13.4 | 14.4 | |* | | | 212. : | | |80001 80529| NL80_3 +312513 |V2513 Cyg |194929.6+312716 |SRD: | 9.33 | 9.50 | |V | | | 45. : | |F3Ia |80530 DM | NL80_3 +312514 |V2514 Cyg |195124.8+404407 |RS | 8.36 | 8.57 | |* | | | 4.1648 : | |G5 |80170 80170| NL80_3 +312515 |V2515 Cyg |195541.3+525258 |SR | 12.2 | 12.6 | |* |51499. | | 55.5 | | |80001 GSC | NL80_3 +312516 |V2516 Cyg |195735.0+553932 |SR | 12.3 | 12.8 | |* | | | 77. | | |80001 GSC | NL80_3 +312517 |V2517 Cyg *|195916.3+363208 |EA | 10.1 | 10.9 | 10.6 |V |53256.433 | | 1.388903 | |A2 |80535 DM | NL80_3 +312518 |V2518 Cyg |195937.1+483407 |SR | 10.5 | 10.9 | |* | | | 65.4 | | |80536 GSC | NL80_3 +312519 |V2519 Cyg |200050.8+554122 |EA: | 10.33 | 10.55 | 10.55 |* |51337.882 | | 1.60275 |11 : | |80011 DM | NL80_3 +312520 |V2520 Cyg |200653.8+324659 |EA | 10.56 | 10.87 | 10.85 : |* |51452.635 | | 1.34883 |12 |A0 |80011 GSC | NL80_3 +312521 |V2521 Cyg |200707.3+503401 |EW: | 12.5 | 12.9 | 12.9 |* |51427.93 | | 1.0786 | | |80102 80102| NL80_3 +312522 |V2522 Cyg |200807.9+585923 |LB | 12.3 | 12.9 | |* | | | | | |80062 USNO | NL80_3 +312523 |V2523 Cyg |200928.6+354401 |SXARI: | 7.84 | 7.91 | |Hp| | | 538. | |O8fpe |80543 HIP | NL80_3 +312524 |V2524 Cyg |201333.4+583625 |EW | 13.35 | 13.9 | 13.85 |* |51536.820 | | 0.450654 | | |80542 80542| NL80_3 +312525 |V2525 Cyg |201603.0+354207 |BY | 10.65 | 11.05 | |* | | | 11.8 | | |80545 GSC | NL80_3 +312526 |V2526 Cyg |201723.8+360736 |EA: | 10.16 | 10.48 | 10.45 : |V |51518.65 | | 10.5113 | |K0 |80011 GSC | NL80_3 +312527 |V2527 Cyg |201920.6+551219 |SR | 11.3 | 11.7 | |* | | | 59. | | |80546 GSC | NL80_3 +312528 |V2528 Cyg |202027.3+370957 |GCAS: | 11.2 | 11.6 | |* | | | | |Be |80077 80077| NL80_3 +312529 |V2529 Cyg |202100.7+491219 |EA | 9.86 | 10.24 | 10.10 |* |51310.888 | | 4.9045 |05 |F2 |80011 DM | NL80_3 +312530 |V2530 Cyg |202115.4+372431 |BE | 8.6 | 8.7 | |V | | | | |B2Iabe |80009 DM | NL80_3 +312531 |V2531 Cyg |202156.8+363950 |BE | 11.3 | 11.7 | |* | | | | |Be |80077 80077| NL80_3 +312532 |V2532 Cyg |202251.7+541756 |SR | 11.5 | 11.9 | |* | | | 69. | | |80546 2MASS| NL80_3 +312533 |V2533 Cyg *|202258.9+404539 |BCEP | 10.87 |( 0.06 )| |V | | | 0.156539 | |B1V |80549 80549| NL80_3 +312534 |V2534 Cyg *|202307.3+404655 |BCEP | 10.66 |( 0.06 )| |V | | | 0.192198 | |B3 |80549 80549| NL80_3 +312535 |V2535 Cyg |202307.6+404609 |BCEP | 10.46 |( 0.04 )| |V | | | 0.190396 | |B0.5V |80549 80549| NL80_3 +312536 |V2536 Cyg *|202309.8+404552 |BE | 12.33 | 12.62 | |V | | | | |Be |80549 80549| NL80_3 +312537 |V2537 Cyg |202314.6+404519 |EB | 10.36 |( 0.04 )|( 0.02 )|V |52844.50 | | 2.7299 | |O9.5:V |80549 80549| NL80_3 +312538 |V2538 Cyg |202333.5+372545 |EB | 11.20 | 11.80 | 11.75 |* |51325.79 | | 3.1616 | | |80550 80550| NL80_3 +312539 |V2539 Cyg |202333.7+404520 |BCEP | 11.71 |( 0.02 )| |V | | | 0.143010 | |B6.5: |80549 80549| NL80_3 +312540 |V2540 Cyg |202337.9+465552 |EW | 12.44 | 12.76 | 12.62 |V |52795.8746 | | 0.405000 | |G1V:+K2V: |80551 GSC | NL80_3 +312541 |V2541 Cyg *|202411.9+485526 |EA | 9.97 | 10.45 : | |* |51421.73 | | 2.3542 : |16 | |80013 GSC | NL80_3 +312542 |V2542 Cyg |202444.8+545417 |SR | 10.5 | 11.0 | |* | | | 215. | | |80546 GSC | NL80_3 +312543 |V2543 Cyg |202531.9+445416 |GCAS: | 11.4 | 11.8 | |* | | | | |Be |80077 80077| NL80_3 +312544 |V2544 Cyg *|202717.3+375627 |EA | 12.61 |( 0.56 : )|( 0.52 )|V |55004.4386 | | 2.093745 |11 | |80552 80552| NL80_3 +312545 |V2545 Cyg |202726.5+310538 |EW | 11.4 | 11.7 | |* |53238.6459 | | 0.369190 | | |80282 GSC | NL80_3 +312546 |V2546 Cyg |202804.9+311710 |EW | 11.37 | 11.93 | 11.92 |* |51358.748 | | 0.62279 | |F5 |80042 GSC | NL80_3 +312547 |V2547 Cyg *|202822.7+383719 |WR | 10.95 | 11.15 | |* | | | 139. | |WC5 |80553 GSC | NL80_3 +312548 |V2548 Cyg |203001.9+532647 |SR | 11.9 | 12.3 | |* | | | 57. | | |80001 USNO | NL80_3 +312549 |V2549 Cyg |203122.0+305838 |EA | 10.93 |( 0.4 : *)| |V |53288.505 | | 1.03832 | |F8 |80282 GSC | NL80_3 +312550 |V2550 Cyg |203458.8+413617 |EA | 10.19 | 10.62 | 10.5 |* |51358.767 | | 4.6760 |14 |B0Ib(n) |80013 GSC | NL80_3 +312551 |V2551 Cyg |203536.5+524545 |EW | 10.75 | 11.00 | 10.98 |* |51461.908 | | 0.242324 | | |80042 GSC | NL80_3 +312552 |V2552 Cyg |203557.2+490042 |EW | 10.87 | 11.27 | 11.21 |V |51448.682 | | 0.2785137 | |G5-8V |80042 GSC | NL80_3 +312553 |V2553 Cyg |203713.1+445454 |EA | 10.88 | 11.73 | 11.07 |* |51341.882 | | 1.71636 |15 | |80013 GSC | NL80_3 +312554 |V2554 Cyg |203842.0+484118 |EA | 11.66 | 12.15 : | 11.77 : |* |51330.704 | | 3.6028 |06 | |80011 GSC | NL80_3 +312555 |V2555 Cyg |203901.6+451228 |EB | 10.28 | 10.48 | 10.44 |* |51421.720 | | 22.425 | | |80042 DM | NL80_3 +312556 |V2556 Cyg |204314.4+540231 |SR | 11.90 | 12.45 | |* | | | 115. | | |80001 2MASS| NL80_3 +312557 |V2557 Cyg |204343.7+513631 |EA | 11.90 | 12.5 | 12.05 |* |51467.795 | | 0.98920 |16 | |80001 GSC | NL80_3 +312558 |V2558 Cyg |204913.5+350314 |EA | 12.21 | 12.81 | 12.76 |* |51325.791 | | 0.93536 |18 | |80042 GSC | NL80_3 +312559 |V2559 Cyg |205050.8+410947 |EB | 11.92 | 12.62 | 12.31 |* |51371.150 | | 39.6 | |e |80042 GSC | NL80_3 +312560 |V2560 Cyg |205213.8+463527 |EB | 12.0 | 12.3 | 12.2 |* |53601.5305 | | 0.733803 | | |80087 80087| NL80_3 +312561 |V2561 Cyg |205258.3+440720 |BY | 10.47 | 10.62 | |* | | | 7.1663 | |G5V |80170 80170| NL80_3 +312562 |V2562 Cyg |205519.4+424332 |EB | 9.02 | 9.5 : | 9.4 : |* |51511.60 | | 2.4931 | |A2 |80011 DM | NL80_3 +312563 |V2563 Cyg |205544.8+432828 |EW | 12.45 | 12.77 | 12.72 |* |51504.898 | | 0.530922 | | |80526 80526| NL80_3 +312564 |V2564 Cyg |205633.8+460427 |SR | 12.0 | 12.6 | |* | | | 51.8 | |Me |80001 GSC | NL80_3 +312565 |V2565 Cyg |205640.5+411828 |RRAB | 16.0 | 16.6 | |B |43671.605 | | 0.50659 |30 : | |80561 80561| NL80_3 +312566 |V2566 Cyg *|205847.5+414637 |BE+BCEP: | 14.4 | 14.5 | |V | | | 0.416 | |O9.5-B0IV-V |80563 USNO | NL80_3 +312567 |V2567 Cyg |205916.4+535042 |SR | 13.4 | 15.0 | |* | | | 123. | | |80100 USNO | NL80_3 +312568 |V2568 Cyg |210148.8+504710 |DCEPS: | 10.05 | 10.45 | |* |51500.84 | | 9.73 |50 | |80566 80566| NL80_3 +312569 |V2569 Cyg |210155.9+315913 |LB | 9.0 | 9.4 | |* | | | | |M3 |80536 GSC | NL80_3 +312570 |V2570 Cyg |210551.7+351432 |EA | 11.08 | 11.5 | 11.23 |* |51514.690 | | 2.00819 |09 | |80013 GSC | NL80_3 +312571 |V2571 Cyg |210800.1+373418 |SR | 11.0 | 11.5 | |* | | | 180. : | | |80536 2MASS| NL80_3 +312572 |V2572 Cyg |211021.2+482219 |EW | 19.04 |( 0.06 )| |Rc| | | 0.252 | | |80567 G2.3 | NL80_3 +312573 |V2573 Cyg |211027.8+481431 |EW | 20.81 |( 0.35 )|( 0.29 )|Rc| | | 0.362 | | |80567 | NL80_3 +312574 |V2574 Cyg |211031.9+480819 |EW | 20.83 |( 0.22 )|( 0.22 )|Rc| | | 0.358 | | |80567 | NL80_3 +312575 |V2575 Cyg |211033.1+481521 |EW | 20.86 |( 0.26 )| |Rc| | | 0.346 | | |80567 | NL80_3 +312576 |V2576 Cyg |211050.9+483219 |EW | 18.54 |( 0.14 )|( 0.12 )|Rc| | | 0.368 | | |80567 | NL80_3 +312577 |V2577 Cyg |211104.9+480804 |EW | 19.53 |( 0.29 )|( 0.29 )|Rc| | | 0.254 | | |80567 | NL80_3 +312578 |V2578 Cyg |211108.6+471006 |CWB: | 10.35 | 10.60 | |* |51362.70 | | 1.7659 | | |80135 GSC | NL80_3 +312579 |V2579 Cyg |211112.5+480931 |EW | 18.75 | 19.5 | 19.4 |V |53562.3878 | | 0.2994 | | |80568 80568| NL80_3 +312580 |V2580 Cyg |211123.9+481144 |EW | 19.34 |( 0.31 )|( 0.31 )|Rc| | | 0.270 | | |80567 | NL80_3 +312581 |V2581 Cyg *|211134.4+441200 |DSCT | 15.5 |( 0.12 )| |Rc| | | 0.09701 | | |80569 80569| NL80_3 +312582 |V2582 Cyg |211137.4+482146 |EW | 19.93 |( 0.08 )|( 0.07 )|Rc| | | 0.259 | | |80567 | NL80_3 +312583 |V2583 Cyg *|211142.5+480946 |EP: | 18.47 | 18.52 | |i'|52546.91 | | | | |80567 80567| NL80_3 +312584 |V2584 Cyg |211145.0+444530 |GDOR: | 11.53 | 11.63 | |V | | | 1.459 | | |80570 80570| NL80_3 +312585 |V2585 Cyg |211201.0+481729 |EW | 21.45 |( 0.29 )|( 0.21 )|Rc| | | 0.260 | | |80567 | NL80_3 +312586 |V2586 Cyg |211229.2+480732 |EW | 19.28 |( 0.10 )|( 0.09 )|Rc| | | 0.225 | | |80567 | NL80_3 +312587 |V2587 Cyg |211239.1+422551 |LB | 11.20 | 11.40 | |V | | | | | |80571 80571| NL80_3 +312588 |V2588 Cyg |211240.5+423039 |EW | 16.50 | 16.77 | 16.75 |V | | | 0.65472 | | |80571 80571| NL80_3 +312589 |V2589 Cyg |211245.3+422517 |LB | 15.63 | 15.88 | |V | | | | | |80571 80571| NL80_3 +312590 |V2590 Cyg |211247.1+413047 |SR | 12.3 | 12.9 | |* | | | 50. | | |80001 USNO | NL80_3 +312591 |V2591 Cyg |211248.9+422738 |LB | 16.15 | 16.34 | |V | | | | | |80571 80571| NL80_3 +312592 |V2592 Cyg |211251.0+422811 |EA | 17.17 | 17.69 | 17.4 |V |53616.4 | | 13.17 : | | |80571 80571| NL80_3 +312593 |V2593 Cyg |211256.3+422400 |EB | 18.4 | 18.9 | 18.5 |V | | | 0.87539 | | |80571 80571| NL80_3 +312594 |V2594 Cyg |211301.7+422453 |LB | 14.90 | 14.98 | |V | | | | | |80571 80571| NL80_3 +312595 |V2595 Cyg |211303.9+422947 |EA | 16.94 | 17.33 | 17.16 |V | | | 2.5269 | | |80571 80571| NL80_3 +312596 |V2596 Cyg |211304.5+422600 |EA | 17.9 | 18.16 | |V |53616.54 | | 16.67 : | | |80571 80571| NL80_3 +312597 |V2597 Cyg |211305.6+422907 |EA | 17.50 | 17.67 | 17.66 : |V | | | 2.9056 | | |80571 80571| NL80_3 +312598 |V2598 Cyg |211306.8+422514 |LB | 13.40 | 13.49 | |V | | | | | |80571 80571| NL80_3 +312599 |V2599 Cyg |211306.8+422918 |EW | 17.54 | 18.10 | 18.10 |V | | | 0.50363 | | |80571 80571| NL80_3 +312600 |V2600 Cyg |211308.5+422907 |EA | 15.79 | 15.91 | 15.88 |V | | | 1.83882 |14 | |80571 80571| NL80_3 +312601 |V2601 Cyg |211312.0+481801 |EA | 21.89 |( 0.82 )| |Rc|52546.8 | | 0.942 |05 | |80567 | NL80_3 +312602 |V2602 Cyg |211313.0+422536 |EW | 16.90 | 17.37 | 17.34 |V | | | 0.61501 | | |80571 80571| NL80_3 +312603 |V2603 Cyg |211315.3+423321 |LB | 14.65 | 14.75 | |V | | | | | |80571 80571| NL80_3 +312604 |V2604 Cyg |211317.0+422944 |EW | 17.50 | 17.92 | 17.92 |V | | | 0.46057 | | |80571 80571| NL80_3 +312605 |V2605 Cyg |211317.6+422549 |LB | 15.35 | 15.41 | |V | | | | | |80571 80571| NL80_3 +312606 |V2606 Cyg |211317.7+480644 |EA | 20.63 |( 0.20 )| |Rc|52545.9 | | 1.018 |05 | |80567 | NL80_3 +312607 |V2607 Cyg |211318.4+543158 |SR: | 13.6 | 15.1 | |* | | | | | |80100 USNO | NL80_3 +312608 |V2608 Cyg *|211319.7+422527 |DSCTC | 16.64 | 16.72 | |V | | | 0.088957 | | |80571 80571| NL80_3 +312609 |V2609 Cyg |211324.1+482950 |EW | 19.66 |( 0.04 )|( 0.04 )|Rc| | | 0.309 | | |80567 | NL80_3 +312610 |V2610 Cyg |211325.6+423257 |EW | 17.10 | 17.22 | 17.22 |V | | | 0.33388 | | |80571 80571| NL80_3 +312611 |V2611 Cyg |211329.2+422744 |LB | 16.46 | 17.16 | |V | | | | | |80571 80571| NL80_3 +312612 |V2612 Cyg |211333.4+422949 |EA | 13.94 | 14.03 | 14.02 |V | | | 4.1528 |07 | |80571 80571| NL80_3 +312613 |V2613 Cyg |211335.4+481519 |EP: | 18.84 |( 0.04 )| |Rc|52546.83 | | | | |80567 80567| NL80_3 +312614 |V2614 Cyg |211337.2+481038 |EP: | 19.06 |( 0.05 )| |Rc|52545.92 | | | | |80567 80567| NL80_3 +312615 |V2615 Cyg |211340.1+422452 |LB | 13.47 | 13.67 | |V | | | | | |80571 80571| NL80_3 +312616 |V2616 Cyg |211510.0+432730 |EA | 13.8 |( 0.75 )|( 0.50 )|* |52864.4059 | | 6.9283333 |04 | |80087 80087| NL80_3 +312617 |V2617 Cyg |211523.8+433210 |EB | 14.4 |( 0.4 )|( 0.2 )|* |53621.572 | | 0.505856 | | |80087 80087| NL80_3 +312618 |V2618 Cyg *|211904.0+434549 |EA | 10.56 | 11.1 | 11.0 : |* |51338.750 | | 47.615 |03 |OB |80042 GSC | NL80_3 +312619 |V2619 Cyg |211926.8+345250 |EW | 12.20 | 12.61 | 12.59 |* |51537.610 | | 0.506738 | | |80042 GSC | NL80_3 +312620 |V2620 Cyg |212103.3+362614 |EW | 14.4 | 14.8 | 14.8 |B |43722.432 | | 0.565827 | | |80561 80561| NL80_3 +312621 |V2621 Cyg |212109.4+364136 |CEP: | 15.7 | 16.1 | |B |43670.42 | | 1.0355 : |20 : | |80561 80561| NL80_3 +312622 |V2622 Cyg |212127.8+370811 |LB | 15.8 | 16.6 | |B | | | | | |80573 80573| NL80_3 +312623 |V2623 Cyg |212132.8+364931 |RRAB | 14.3 | 15.6 | |B |44053.488 | | 0.66031 |15 | |80561 80561| NL80_3 +312624 |V2624 Cyg |212303.3+370308 |EA | 15.4 | 16.0 | 15.7 |B |43668.898 | | 0.713744 |20 : | |80573 80573| NL80_3 +312625 |V2625 Cyg *|212311.1+355208 |RRAB | 14.9 | 15.5 | |B |43669.46 | | 0.59398 |15 | |80561 80561| NL80_3 +312626 |V2626 Cyg |212318.2+354110 |EW | 14.1 | 14.6 | 14.5 |B |44074.320 | | 0.45792 | | |80573 80573| NL80_3 +312627 |V2627 Cyg |212337.9+370528 |EA | 14.6 | 15.3 | |B |43668.195 | | 1.60384 |10 : | |80573 80573| NL80_3 +312628 |V2628 Cyg |212342.7+354423 |EW | 15.0 | 15.8 | 15.6 |B |43670.235 | | 0.35262 | | |80561 80561| NL80_3 +312629 |V2629 Cyg |212416.4+363548 |EA | 16.0 | 16.5 | 16.2 : |B |43670.51 | | 0.96244 |11 | |80561 80561| NL80_3 +312630 |V2630 Cyg |212417.6+320330 |RRAB | 12.60 | 13.27 | |* |51450.624 | | 0.708909 |18 | |80001 GSC | NL80_3 +312631 |V2631 Cyg |212420.5+370844 |EA | 14.1 | 14.8 | 14.8 |B |44852.471 | | 1.40916 |10 : | |80573 80573| NL80_3 +312632 |V2632 Cyg |212426.7+365101 |EW | 15.2 | 15.8 | 15.7 |B |45257.308 | | 0.354408 | | |80573 80573| NL80_3 +312633 |V2633 Cyg |212500.6+360328 |EW | 14.8 | 15.5 | 15.5 |B |44074.46 | | 0.35978 | | |80561 80561| NL80_3 +312634 |V2634 Cyg |212502.4+361956 |EW | 16.1 | 16.5 | 16.4 |B |48542.235 | | 0.42731 | | |80561 80561| NL80_3 +312635 |V2635 Cyg |212509.9+361204 |IN: | 14.8 | 15.5 | |B | | | | | |80561 80561| NL80_3 +312636 |V2636 Cyg |212610.2+365949 |EW | 15.3 | 15.9 | 15.8 |B |43670.453 | | 0.44373 | | |80561 80561| NL80_3 +312637 |V2637 Cyg |212641.1+354640 |LB | 15.4 | 16.0 | |B | | | | | |80561 80561| NL80_3 +312638 |V2638 Cyg |212642.1+355951 |SRB: | 15.2 | 16.0 | |B | | | 90. : | | |80561 80561| NL80_3 +312639 |V2639 Cyg |212743.7+354025 |EW | 14.9 | 15.6 | 15.4 |B |43668.085 | | 0.325363 | | |80573 80573| NL80_3 +312640 |V2640 Cyg |212806.1+365415 |RS | 13.8 | 14.4 | |B | | | 5.98645 | | |80561 80561| NL80_3 +312641 |V2641 Cyg |212845.6+370434 |EW | 14.3 | 15.0 | 14.9 |B |44461.434 | | 0.38223 | | |80561 80561| NL80_3 +312642 |V2642 Cyg *|213018.5+471007 |EA+UV: | 14.8 |( 3.0 u')| |U |52785.6819 | | 0.5210356 |04 |wd+M4Ve |80575 80576| NL80_3 +312643 |V2643 Cyg *|213029.9+311430 |EB | 10.70 | 11.00 | 10.92 |* |51341.764 | | 0.610855 | | |80042 DM | NL80_3 +312644 |V2644 Cyg |213745.2+343713 |RRAB | 13.17 | 13.85 | |* |51362.70 | | 0.60418 | | |80026 GSC | NL80_3 +312645 |V2645 Cyg |214329.1+530843 |EA | 13.82 | 14.80 | 14.08 |* |53313.0260 | | 4.9478 |15 | |80073 80073| NL80_3 +312646 |V2646 Cyg |214434.5+542201 |EW | 11.25 | 11.45 | 11.45 |* |51361.765 | | 0.35465 | | |80031 80031| NL80_3 +312647 |V2647 Cyg *|214703.3+500318 |EA | 11.05 | 11.65 : | 11.6 : |* |53671.255 | | 5.85527 |03 | |80023 GSC | NL80_3 +312648 |V2648 Cyg |214735.3+513725 |EA | 11.64 | 12.0 | |* |51364.72 | | 3.4150 : |10 | |80013 GSC | NL80_3 +312649 |V2649 Cyg |214742.2+304211 |BY | 10.25 |( 0.11 *)| |V | | | 34.7828 | |K2 |80021 DM | NL80_3 +312650 |V2650 Cyg |214755.8+542058 |DCEP | 12.45 | 12.9 | |* |51493.65 | | 7.26 | | |80566 80566| NL80_3 +312651 |V2651 Cyg |214806.7+511530 |DCEP | 11.5 | 12.1 | |* |51473.3 | | 11.9 | | |80081 GSC | NL80_3 +312652 |V2652 Cyg |214825.2+384720 |EA | 12.5 | 13.2 | 12.8 |* |51408.560 | | 1.57137 |10 | |80031 80031| NL80_3 +312653 |V2653 Cyg |214916.1+312503 |BY | 10.82 |( 0.11 *)| |V | | | 6.4128 | | |80021 GSC | NL80_3 +312654 |V2654 Cyg |215011.2+404650 |RS | 11.7 | 12.0 | |* | | | 5.91732 | | |80067 80067| NL80_3 +312655 |V2655 Cyg |215135.5+515409 |EA | 11.3 | 11.7 | 11.6 : |* |51360.868 | | 3.6745 |09 | |80584 80584| NL80_3 +312656 |V2656 Cyg |215227.0+420813 |EB | 12.15 | 12.45 | 12.35 |* |51480.373 | | 1.07849 | | |80584 80584| NL80_3 +312657 |V2657 Cyg |215338.1+482413 |EW | 12.5 | 12.9 | 12.8 |* |51415.915 | | 0.38821 | | |80031 80031| NL80_3 +312658 |V2658 Cyg |215618.3+410245 |R | 15.08 | 15.30 | |V |51708.2840 | | 0.26772 | |DA |80587 80628| NL80_3 +319001 |alf Cyg *|204125.9+451649 |ACYG | 1.21 | 1.29 | |V | | | | |A2Iae |04766 BD | +319011 |lam Cyg |204724.5+362927 |BE | 4.47 | 4.54 | |Hp| | | | | |HIP HIP | +319019 |tau Cyg *|211447.5+380243 |DSCT | 3.65 | 3.75 | |V | | | | |F0IV |06283 BD | +319020 |ups Cyg *|211755.1+345349 |GCAS | 4.28 | 4.50 | |V | | | | |B2Vne | BD | +319022 |khi Cyg *|195033.9+325451 |M | 3.3 | 14.2 | |V |42140. | | 408.05 |41 |S6,2e-S10,4e(MSe)|00001 00002| +319216 |P Cyg *|201747.2+380159 |SDOR | 3. | 6. | |V | | | | |B1Iapeq | 08953| +319217 |Q Cyg *|214143.9+425029 |NA | 3.0 | 15.6 | |V |06583. |1876 | | |pec(NOVA) |09075 00566| +320001 |R Del |201455.1+090521 |M | 7.6 | 13.8 | |V |44091. | | 285.07 |45 |M5e-M6e |00001 00002| +320002 |S Del *|204304.9+170517 |M | 8.3 | 12.4 | |V |44887. | | 277.75 |52 |M5e-M8 |00001 00002| +320003 |T Del |204521.0+162356 |M | 8.5 | 15.2 | |V |43296. | | 332.02 |45 |M3e-M6e |00001 00002| +320004 |U Del *|204528.2+180524 |SRB | 7.6 | 8.9 | |p | | | 110. : | |M5II-III |03767 00002| +320005 |V Del |204746.1+192006 |M | 8.1 | 16.1 | |V |41065. | | 533.51 |42 |M4e-M6e |00001 00002| +320006 |W Del *|203740.1+181704 |EA/SD | 9.69 | 12.33 | 9.79 |V |43328.5495 | | 4.806100 |12 |B9.5Ve+G5 |08593 09031| +320007 |X Del |205454.1+173828 |M | 8.2 | 14.8 | |V |41551. | | 281.04 |42 |M4e-M6e |00001 00002| +320008 |Y Del |204139.0+115239 |M | 8.8 | 16.5 : | |V |42707. | | 468.40 |43 |M8e |00001 00002| +320009 |Z Del |203239.1+172703 |M | 8.3 | 15.3 | |V |42317. | | 304.48 |48 |S5,2.5e-S7,2e: |00001 00002| +320010 |RR Del |204333.9+135641 |EA/SD | 10.2 | 11.8 | |V |18183.422 | | 4.599535 |16 |A |01327 00102| +320011 |RS Del |202909.7+161625 |SRB: | 9.18 | 10.0 | |B | | | 60. | |M5-M8 |00653 08953| +320012 |RT Del |202910. +161615:| | 11.8 |< 12.8 | |p | | | | | |01328 | +320013 |RU Del |201727.2+101008 |M | 9.9 |< 14. | |V |38900. | | 260.58 | |M3 |00001 00002| +320014 |RV Del |202041.5+151515 |RRAB | 12.8 | 13.9 | |p |26162.531 | | 0.4981281 |25 | |03770 05986| +320015 |RW Del |202628.3+124100 |M | 11. | 16. | |p |36502. | | 237.4 | |M3-M8 |00001 BD | +320016 |RX Del |203000.2+124605 |M | 9.7 | 16.0 | |p |42320. | | 185.63 | |M2e |00001 00002| +320017 |RY Del |203014.8+101631 |M | 11.8 |< 16.0 | |p |35348. | | 248.26 | | |00001 00002| +320018 |RZ Del *|203107.3+113151 |M | 11.0 |< 16.0 | |p |32455. | | 311.8 | | |02931 00002| +320019 |SS Del |204037.0+132701 |M | 11.6 |< 16.0 | |p |36521. | | 194.59 | | |00001 00002| +320020 |ST Del |204453.6+115749 |SRB | 11.2 | 12.3 | |p | | | 102. | |M4 |00609 06286| +320021 |SU Del |205117.6+063059 |M | 12.0 | 16.2 | |p |28430. | | 238.1 | |M2IIIe |00001 06286| +320022 |SV Del |205239.1+060830 | | 14. | 15.5 | |p | | | | | |01330 USNO | +320023 |SW Del |210015.9+133425 |M | 11.1 |< 14.0 | |p |28751. | | 289.4 | |M7e |03772 06286| +320024 |SX Del |210346.2+195755 |I: | 10.6 | 12.1 | |p | | | | | |00653 06286| +320025 |SY Del |203315.8+145854 |LB | 10.2 | 12.1 | |V | | | | |M3 |08044 01332| +320026 |SZ Del |204045.3+185622 |M | 11. |< 16. | |p |40732. | | 235.92 | |M3e |00001 00533| +320027 |TT Del *|203602.4+082703 |EA/SD | 10.6 | 12.5 | |p |45232.419 | | 2.871119 |12 *|A1 |00001 01332| +320028 |TU Del |204050.6+145051 |SRB | 11.2 | 13.0 | |V |32120.5 | | 107.5 |43 | |08044 02315| +320029 |TV Del |202640.3+122957 |M | 12.7 |< 16.0 | |p |25852. | | 217. | | |00609 00533| +320030 |TW Del *|203521.1+081147 |SRB | 9.7 | 13.1 | |V |38687.5 | | 115.6 | |M2 |05987 04389| +320031 |TX Del *|205012.7+033908 |CWB: | 8.84 | 9.54 | |V |42947.009 | | 6.165907 |33 |G0-G5 |08632 08953| +320032 |TY Del *|210422.0+131254 |EA/SD | 9.7 | 10.9 | 9.8 |V |42959.4450 | | 1.19112689 |20 *|B9 |08593 00279| +320033 |TZ Del *|201848.0+143008 |SR | 13.3 | 14.4 | |p |25800. | | 308. | | |00609 00533| +320034 |UU Del |201938.7+151254 |SR | 14.1 | 16.3 | |p |27650. | | 111. | | |00609 00533| +320035 |UV Del |202054.3+182122 |SRB: | 12.3 | 13.7 | |p | | | 235. : | |K5 |00609 00533| +320036 |UW Del |202142.6+171718 |M | 12.7 |< 16.5 | |p |27596. | | 409. | | |00609 00533| +320037 |UX Del |202214.0+120136 |SR | 13.5 | 14.7 | |p |27624. | | 125.3 | | |00609 00533| +320038 |UY Del |202220.0+134858 |L | 11.6 | 13.2 | |p | | | | | |00609 00533| +320039 |UZ Del |202232.9+131412 |SR | 11.7 | 14.1 | |p |25865. | | 85. | | |00609 00533| +320040 |VV Del *|202227.5+150524 |EA/SD | 14.4 |< 15.5 |( 0.05 )|p |25827.482 | | 2.60595 |14 | |00609 00533| +320041 |VW Del |202235.1+173731 |M | 10.8 | 15.7 | |p |41040. | | 219.50 | | |00001 00533| +320042 |VX Del |202339.1+175335 |SR | 13.5 | 15.7 | |p |25510. | | 248. | | |00609 00533| +320043 |VY Del |202351.9+181552 |L | 13.4 | 14.9 | |p | | | | | |00609 02318| +320044 |VZ Del |202412.7+180206 |L | 12.2 | 13.8 | |p | | | | | |00609 00533| +320045 |WW Del |202651.1+153658 |SR | 13.8 | 15.5 | |p |26212. | | 147.3 | | |00609 02314| +320046 |WX Del |202656.7+150602 |M | 11.8 |< 15.0 | |p |35330. | | 526.3 | | |00001 00533| +320047 |WY Del |202720.5+135434 |M | 14.3 |< 16.2 | |p |26620. | | 330. | | |00609 02318| +320048 |WZ Del |202729.4+165146 |M | 12.2 |< 15.3 | |p |25850. | | 259. | | |00609 00533| +320049 |XX Del |202817.3+183317 |EA/SD | 13.0 | 14.8 | |p |25882.366 | | 2.12363 |10 *| |00609 02314| +320050 |XY Del |202847.3+102344 |M | 13.2 | 15.7 | |p |26169. | | 204. | | |00609 00533| +320051 |XZ Del |202918.3+125429 |M | 13.6 | 16.1 | |p |26925. | | 165. | | |00609 00533| +320052 |YY Del *|203000.8+140310 |EA | 11.3 | 12.0 |( 0.05 : )|p |42959.512 | | 0.7930922 |19 *|A3 |00001 00533| +320053 |YZ Del |203030.0+141946 |SR | 12.1 | 14.5 | |p |25813. | | 139.6 | | |00609 00533| +320054 |ZZ Del |203113.9+150432 |RRAB | 12.4 | 13.2 | |p |37690.317 | | 0.52019172 |20 | |05988 00533| +320055 |AA Del |203123.1+180040 |SR: | 12.7 | 14.5 | |p | | | | | |00609 02314| +320056 |AB Del |203139.0+155421 |SR | 13.8 | 15.2 | |p |25850. | | 137.3 | | |00609 00533| +320057 |AC Del |203204.7+182425 |L | 12.1 | 14.2 | |p | | | | | |00609 00533| +320058 |AD Del |203304.3+132824 |SRA | 11.3 | 13.3 | |p |25840. | | 88.6 | |M0 |00609 02314| +320059 |AE Del |203303.8+173311 |SR | 12.7 | 14.8 | |p |25840. | | 260. | | |00609 02314| +320060 |AF Del |203422.6+154444 |M | 13.1 |< 16.0 | |p |26677. | | 392. | | |00609 00533| +320061 |AG Del |203417.7+183512 |M | 10.7 |< 15.5 | |p |36720. | | 239.73 | |M4 |00001 00533| +320062 |AH Del |203431.8+140237 |SR | 14.8 | 15.9 | |p |25870. | | 112. | | |00609 02318| +320063 |AI Del |203449.3+131327 |L | 13.2 | 15.0 | |p | | | | | |00609 00533| +320064 |AK Del |203517.1+121245 |LB | 12.7 | 14.3 | |p | | | | |M7 |00609 00533| +320065 |AL Del *|203615.8+130521 |EB/KE | 12.2 | 12.9 | 12.4 |p |25807.520 | | 1.485485 | | |00410 02314| +320066 |AM Del |203627.6+133035 |L | 13.9 | 15.6 | |p | | | | | |00609 02318| +320067 |AN Del |203858.2+133838 |M | 11.4 |< 16.2 | |p |36457. | | 194.38 | | |00001 00533| +320068 |AO Del |203948.7+172057 |LB | 11.4 | 12.4 | |p | | | | |M |00609 02318| +320069 |AP Del |204013.3+132433 |LB | 12.5 | 13.6 | |p | | | | |M5 |00609 02314| +320070 |AQ Del |204102.6+172003 |SRB | 10.4 | 11.9 | |p |30674. | | 71.9 |43 |M4 |01110 01110| +320071 |AR Del |204207.5+171434 |L | 13.7 | 14.2 | |p | | | | | |00609 00533| +320072 |AS Del |204217.2+153054 |L | 13.9 | 16.0 | |p | | | | | |00609 02318| +320073 |AT Del |204224.8+152016 |SRD: | 11.4 | 12.3 | |p | | | | |G0 |00609 00533| +320074 |AU Del |204604.3+131645 |L | 13.4 | 15.3 | |p | | | | | |00609 02315| +320075 |AV Del |204531.5+111026 |EA/SD | 10.7 | 12.7 | |p |43689.515 | | 3.85343 |10 *|F8 |00001 00533| +320076 |AW Del |204756.2+170420 |LB | 11.8 | 13.1 | |p | | | | |M7 |00609 02315| +320077 |AX Del |204813.3+152156 |RRAB | 12.4 | 13.4 | |p |25804.460 | | 0.563731 |09 | |00609 00533| +320078 |AY Del |205031.6+134522 |L | 12.3 | 14.3 | |p | | | | | |00609 00533| +320079 |AZ Del |205216.3+144635 |M | 10.8 |< 16.0 | |p |38625. | | 255.65 | | |00001 00114| +320080 |BB Del |205321.3+154538 |M | 11.3 | 15.3 | |p |36539. | | 245.20 | | |00001 00533| +320081 |BC Del |201526.2+160716 |M: | 14.5 |< 15.5 | |p |27365. | | 230. | | |01439 00542| +320082 |BD Del |202126.8+093422 |M | 13. |< 15.5 | |p |27325. | | 262. | |M2IIIe |01440 00492| +320083 |BE Del |202350.6+131459 |EA | 14.2 | 14.7 | |p |25866.46 | | 6.3091 |07 | |00911 02317| +320084 |BF Del |202507.8+121734 |EA/SD | 13.8 | 15.1 | |p |25808.49 | | 3.76016 |18 *| |00911 00533| +320085 |BG Del *|202622.5+173248 |EB/KE | 13.6 | 14.0 | 13.8 |p |25865.469 | | 0.563610 | | |00911 00533| +320086 |BH Del |202736.6+134101 |EA/SD | 13.2 | 15.6 | |p |25498.37 | | 1.614145 |16 *| |00001 00533| +320087 |BI Del |202738.6+142009 |EA/SD | 11.4 | 13.3 | |p |28366.29 | | 7.25238 |07 |G0 |08994 01333| +320088 |BK Del *|202924.2+115341 |RRAB | 13.0 | 14.6 | |p |25527.300 | | 0.3604045 |14 | |00911 00533| +320089 |BL Del |203403.0+150506 |EA/SD: | 15.2 | 16.2 | |p |25863.485 | | 3.83474 | | |04240 02314| +320090 |BM Del |203554.4+172304 |RRAB | 13.8 | 14.8 | |p |39739.39 | | 0.541149 | | |08995 00533| +320091 |BN Del |203806.2+133306 |EA/SD: | 12.7 | 13.6 | |V |28051.600 | | 2.47872 |10 | |03165 00533| +320092 |BO Del |203923.7+142341 |EA/SD | 14.3 | 15.8 | |p |25938.260 | | 1.2876085 : | | |03165 02314| +320093 |BP Del |204128.4+185451 |EA/SD: | 13.8 | 15.1 | |p |27281.51 | | 2. : |15 : | |00911 00533| +320094 |BQ Del |204424.6+142826 |EA/SD | 15.2 | 16.4 | |p |25830.36 | | 3.42658 |13 | |00911 02315| +320095 |BR Del *|204633.2+042337 |M | 10. |< 12.5 | |p |38962. | | 336.55 | |M8e |00001 00470| +320096 |BS Del |205258.3+160243 |EA/SD | 12.8 | 14.6 | |p |25527.40 | | 2.97751 |17 :*| |00911 02315| +320097 |BT Del |205344.1+154407 |EA/SD | 14.6 | 16.9 | |p |25881.41 | | 3.54262 |12 :*| |00001 02318| +320098 |BU Del |202203.9+093641 |M | 13.5 |< 15.5 | |p |27327. | | 225.5 | | |01440 01333| +320099 |BV Del |205309.9+160849 |RRAB | 12.3 | 13.4 | |p |25527.314 | | 0.423450505 |18 | |05986 00533| +320100 |BW Del |202106.5+182311 |EA | 11.4 | 11.8 | |p |25795.39 | | 2.423114 |14 *|F2 |08994 00470| +320101 |BX Del *|202119.0+182617 |CWB: | 11.79 | 12.57 | |V |38219.531 | | 1.0917795 |25 |F0-F8 |02304 00533| +320102 |BY Del *|202149.9+122427 |EA/DM | 11.4 | 11.9 | 11.8 |p |25830.34 | | 5.01713 |14 |F9 |08994 00542| +320103 |BZ Del |202218.8+123605 |CST: | 13.6 | 14.3 | |p | | | | | |03165 02317| +320104 |CC Del |202250.9+180539 |SR | 13.2 | 14.0 | |p |25539. | | 64.3 |50 | |00911 00533| +320105 |CD Del |202304.1+140919 |RRAB | 13.0 | 14.4 | |p |30614.531 | | 0.4995263 |11 | |03798 00533| +320106 |CE Del *|202302.9+101914 |RRC | 13.3 | 13.8 | |p |29789.39 | | 0.42669 |47 | |00911 02314| +320107 |CF Del *|202331.3+125930 |RR | 13.9 | 14.8 | |p | | | 0.49923 : | |A5 |00911 02317| +320108 |CG Del |202315.1+172926 |RRAB | 13.8 | 15.1 | |p |25795.495 | | 0.630923 |13 | |00911 02314| +320109 |CH Del *|202318.4+170614 |RRC | 13.0 | 13.4 | |p |29790.55 | | 0.45960 |39 | |00911 00533| +320110 |CI Del |202427.4+145758 |LB | 11.0 | 12.1 | |p | | | | |M7 |00911 00470| +320111 |CK Del |202502.0+111237 |RRAB | 11.7 | 13.35 | |B |34598.368 | | 0.4427899 |15 |A2: |04957 01333| +320112 |CL Del |202501.8+112854 |L | 12.6 | 13.6 | |p | | | | | |00911 00533| +320113 |CM Del |202456.9+171755 |IS | 13.4 | 15.3 | |p | | | | |pec(e+cont) |08656 08852| +320114 |CN Del *|202520.2+132611 |EW/KE | 14.2 | 14.6 | 14.6 |p |29790.54 | | 0.590825 | | |00911 02318| +320115 |CO Del |202555.0+171943 |L | 13.3 | 14.3 | |p | | | | | |00911 00533| +320116 |CP Del |202554.4+144710 |RRAB | 14.3 | 15.7 | |p |25830.393 | | 0.5274728 |17 | |03895 02318| +320117 |CQ Del |202836.0+112332 |M | 13.1 |< 16.5 | |p |25718. | | 290.5 | | |00911 GSC | +320118 |CR Del *|202850.1+153701 |EB/KE | 13.5 | 13.9 | 13.7 |p |29789.52 | | 0.71363 | | |00911 02318| +320119 |CS Del *|202854.9+151314 |RRC | 13.0 | 13.3 | |p |25535.40 | | 0.365737 |49 | |00911 01333| +320120 |CT Del |202926.4+095352 |LB | 6.8 | 8.5 | |V | | | | |M7 |00911 08953| +320121 |CU Del *|202955.9+135311 |RVB | 13.2 | 14.9 | |p |26893. | | 127. | |M3II |00911 00533| +320122 |CV Del |203054.2+163235 |RRAB | 13.5 | 14.8 | |p |25831.471 | | 0.7394559 |20 | |00911 02318| +320123 |CW Del *|203142.9+125735 |RRAB | 13.9 | 15.3 | |p |29790.460 | | 0.582121 |15 | |00911 01333| +320124 |CX Del |203241.0+122135 |SR | 14.4 | 15.5 | |p |25517. | | 65. | | |00911 00533| +320125 |CY Del |203315.3+102512 |RRAB | 14.8 | 16.1 | |p |25921.292 | | 0.4523633 |12 | |00911 00533| +320126 |CZ Del |203337.8+093100 |SRB | 9.0 | 10.2 | |p | | | 123. | |M5 |00677 08953| +320127 |DD Del |203511.9+163709 |RRAB | 14.6 | 16.0 | |p |25535.416 | | 0.490247 |11 | |00911 00533| +320128 |DE Del |203535.7+153357 |RRAB | 14.9 | 15.9 | |p |25830.400 | | 0.2972254 |27 | |00911 00533| +320129 |DF Del |203549.2+121638 |SR | 13.9 | 14.8 | |p |25782. | | 98. | | |00911 02314| +320130 |DG Del *|203544.1+112809 |RRAB | 14.4 | 16.1 | |p |29789.448 | | 0.326961 |35 | |00911 02314| +320131 |DH Del |203658.4+113512 |RRAB | 14.0 | 14.8 | |p |25807.510 | | 0.5929407 |15 | |00911 00533| +320132 |DI Del |203649.5+112023 |RRAB | 14.4 | 15.5 | |p |25527.330 | | 0.367221 |16 | |00911 00533| +320133 |DK Del *|203735.7+154838 |EB/KE | 14.0 | 14.3 | 14.2 |p |29845.51 | | 0.589 | | |00911 02314| +320134 |DL Del |203809.6+185002 |SRA | 13.5 | 15.2 | |p |25797. | | 368. | |M8 |00911 00533| +320135 |DM Del *|203937.0+142543 |EB/KE | 8.58 | 9.11 | 8.80 |V |44501.3913 | | 0.8446758 | |A2V |00001 BD | +320136 |DN Del |204004.1+134826 |SR: | 14.1 | 14.7 | |p | | | | |G5III: |03165 02318| +320137 |DO Del |204019.4+135245 |SR | 14.5 | 15.5 | |p | | | 98. : | | |00911 02318| +320138 |DP Del |204048.2+174041 |SR: | 14.9 | 15.7 | |p | | | | | |03165 00533| +320139 |DQ Del |204111.7+144414 |RRAB | 13.8 | 15.3 | |p |25862.418 | | 0.5349607 |20 | |03799 00533| +320140 |DR Del |204145.5+152304 |L | 14.4 | 15.7 | |p | | | | | |00911 00533| +320141 |DS Del |204328.8+143418 |RRAB | 13.0 | 14.4 | |p |25885.403 | | 0.4761266 |23 | |00911 02315| +320142 |DT Del *|204356.9+102402 |SR | 13.6 | 14.4 | |p |25538. | | 64.5 | | |00911 02315| +320143 |DU Del |204537.9+113646 |RRAB | 14.1 | 15.5 | |p |25478.465 | | 0.6514793 |15 | |00911 02315| +320144 |DV Del |204617.0+130542 |L | 14.5 | 15.6 | |p | | | | | |00911 02318| +320145 |DW Del |204620.8+154824 |RRAB | 14.6 | 16.1 | |p |25865.470 | | 0.6607629 |11 | |00911 02318| +320146 |DX Del *|204728.4+122751 |RRAB | 9.52 | 10.26 | |V |39367.340 | | 0.47261673 |20 |A9-F6 |03506 01442| +320147 |DY Del |205007.3+152445 |L | 14.2 | 15.2 | |p | | | | | |00911 00533| +320148 |DZ Del |205100.6+143115 |LB | 13.5 | 14.6 | |p | | | | | |03165 08953| +320149 |EE Del |205151.5+123730 |RRAB | 14.3 | 15.8 | |p |25889.430 | | 0.490686 |33 | |00911 02315| +320150 |EF Del |205204.5+125123 |RRAB | 13.6 | 15.4 | |p |25535.390 | | 0.4475776 |11 | |00911 02318| +320151 |EG Del *|205339.5+163005 |RRC | 12.5 | 13.0 | |p |32580.540 | | 0.32484326 |30 | |05986 00533| +320152 |EH Del |205502.0+134804 |RRAB | 13.5 | 15.0 | |p |25498.436 | | 0.5351207 |20 | |00911 02318| +320153 |EI Del *|202614.3+051212 |SRB | 10.5 | 11.9 | |p | | | 20. : | |M2 |01110 00294| +320154 |EK Del *|205404.8+083306 |CEP | 11.90 | 12.57 | |V |27649.41 | | 2.046705 | | |01443 01333| +320155 |EL Del |205523.1+025735 |RR | 14.1 | 15.0 | |p |27653.59 | | 0.595432 | | |01443 GSC | +320156 |EM Del |205728.6+100234 |RRAB | 13.7 | 14.8 | |p |29844.504 | | 0.578208 |10 | |02267 01333| +320157 |EN Del |201801.7+132229 |M | 14.5 |< 16.5 | |p | | | | | |02267 02372| +320158 |EO Del |203747.7+185531 |RRAB | 13.5 | 14.9 | |p |29851.404 | | 0.580861 |15 | |02267 02372| +320159 |EP Del |203927.7+194452 |M | 12.0 | 15.5 | |p |35222. | | 430.5 | | |02267 00158| +320160 |EQ Del |203940.4+122609 |EA/SD | 13.0 | 14.3 | |p |27596.516 | | 2.248025 |13 *| |02267 02372| +320161 |ER Del |204246.5+084114 |LB | 11.0 | 12.3 | |p | | | | |S5,5 |00797 00294| +320162 |ES Del *|204358.4+191417 |M | 10.6 | 16.5 | |p |33189. | | 373.9 | |M10 |02267 02372| +320163 |ET Del *|205456.4+082328 |EB/KE | 12.0 | 12.9 | 12.7 |p |31432.559 | | 1.010784 | |A0: |00001 01444| +320164 |EU Del |203754.7+181607 |SRB | 5.79 | 6.9 | |V |41156. | | 59.7 | |M6.4III |08814 08073| +320165 |EV Del |203423.7+203126 |M | 13. |< 15.5 | |p |33883. | | 226. | | |01446 00158| +320166 |EW Del *|201631.1+154157 |EW/KW | 15.1 | 15.5 | 15.5 |p |30613.494 | | 0.391148 | | |02267 02372| +320167 |EX Del *|201658.4+155253 |EW/KW | 12.8 | 13.3 | 13.3 |p |29846.372 | | 0.39684486 | | |03806 02372| +320168 |EY Del |201729.9+134245 |SR | 14.0 | 15. | |p |33899. | | 256. | | |02267 02372| +320169 |EZ Del |202522.9+154557 |UG | 14.5 | 16.5 | |p | | | | | |02267 08852| +320170 |FF Del |202700.5+191225 |RRAB | 12.6 | 14.3 | |p |26649.245 | | 0.6154325 |18 | |02267 00158| +320171 |FG Del |202825.4+122020 |RRAB | 13.7 | 14.7 | |p |29846.559 | | 0.413136 |20 | |02267 02372| +320172 |FH Del |202812.3+192622 |EA/SD: | 14.6 | 15.4 | |p |29791.410 | | 0.678036 |16 | |02267 02372| +320173 |FI Del *|202916.3+144600 |EB/KW: | 14.2 | 14.8 | 14.5 |p |29845.531 | | 0.415928 | | |02267 02372| +320174 |FK Del *|203019.8+122613 |EW/KE | 14.0 | 14.6 | 14.5 |p |29790.448 | | 0.6667316 | | |02267 02372| +320175 |FL Del |203128.0+145958 |RRAB | 14.6 | 16.4 | |p |29847.415 | | 0.477563 |20 | |02267 02372| +320176 |FM Del *|203344.3+161618 |CWB | 12.3 | 13.3 | |p |25478.66 | | 3.95452 |20 |F5-F8 |03810 02372| +320177 |FN Del |203427.0+150509 |M | 14.3 |< 16.5 | |p |35275. | | 289.6 | | |02267 02372| +320178 |FO Del |204047.6+101839 |EA/SD: | 13.8 | 14.6 | |p |25535.406 | | 1.195410 |15 *| |02267 02372| +320179 |FP Del *|204310.4+105305 |RRC | 13.9 | 14.4 | |p |30613.445 | | 0.300656 |40 | |02267 02372| +320180 |FQ Del |204450.8+185337 |RRAB | 14.1 | 15.3 | |p |29844.531 | | 0.576605 |10 | |02267 02372| +320181 |FR Del *|205512.9+113742 |EW/KW | 15.0 | 15.3 | 15.3 |p |29846.473 | | 0.3497476 | | |02267 02372| +320182 |FS Del |205614.7+164019 |RRAB | 14.2 | 15.5 | |p |29846.520 | | 0.546459 |09 | |02267 02372| +320183 |FT Del *|205629.6+162347 |RRAB | 14.5 | 15.4 | |p |29790.513 | | 0.367834 |23 | |02267 02372| +320184 |FU Del |201954.0+113800 |EA: | 14.3 | 14.9 | |p |30613.47 | | | |G5 |02267 02372| +320185 |FV Del |202146.2+140749 |CST: | 13.3 | 13.9 | |p | | | | |G0 |08656 02372| +320186 |FW Del |202615.3+202702 |M | 11.5 | 18. | |p |37093. | | 343. | |M5e |03896 03811| +320187 |FX Del |203724.4+201737 |M | 12.5 |< 15.5 | |p |34248. | | 331.5 | | |02430 00158| +320188 |FY Del |203958.3+122621 |RRC | 15.4 | 15.8 | |p |29846.417 | | 0.366238 |50 : | |02267 02372| +320189 |FZ Del |205332.5+043850 |EA/SD | 10.2 | 11.3 | |p |31324.329 | | 0.7832126 |15 *|F |08994 08953| +320190 |GG Del *|201431.8+151635 |EB | 12.4 | 12.8 | 12.6 |p |28761.71 | | 0.5632265 | |F7 |08994 00294| +320191 |GH Del |202348.3+135831 |RR | 14.9 | 16.0 | |p |38311.44 | | | | |06953 04341| +320192 |GI Del |203020.9+124040 |L | 15.8 |< 17.0 | |p | | | | | |06953 04341| +320193 |GK Del |203325.0+134130 |RRAB | 15.8 | 16.7 | |p |29846.31 | | 0.504555 |10 | |06953 04341| +320194 |GL Del |203434.8+113349 |RRAB | 16.0 |< 17.5 | |p |30606.424 | | 0.480533 : | | |06953 04341| +320195 |GM Del |203954.3+163015 |RRAB | 16.0 |< 17.0 | |p |29790.444 | | 0.640565 |10 | |06953 04341| +320196 |GN Del *|204014.4+155124 |RRAB | 15.5 |< 17.0 | |p |29844.55 | | 0.528180 |12 | |06953 04341| +320197 |GO Del |204044.0+140954 |RRAB | 16.1 |< 17.2 | |p |29790.476 | | 0.546027 |15 | |06953 04341| +320198 |GP Del |204055.9+143935 |RRAB | 16.2 |< 17.3 | |p |29844.472 | | 0.476234 |10 | |06953 04341| +320199 |GQ Del |204351.3+161236 |RRAB | 15.6 |< 17.0 | |p |29846.398 | | 0.568621 |10 | |06953 04341| +320200 |GR Del |204552.2+152653 |RRAB | 15.9 |< 17.0 | |p |29846.450 | | 0.566973 |20 | |06953 04341| +320201 |GS Del |204643.1+150119 |E | 15.5 | 16.5 | |p |39378.413 | | | | |06953 04341| +320202 |GT Del |204713.0+193143 |LB | 15.5 |< 17.0 | |p | | | | | |06953 04341| +320203 |GU Del |204726.2+154756 |LB | 12.5 | 13.3 | |p | | | | |M7 |04303 GSC | +320204 |GV Del |205031.5+123731 |RRAB | 15.5 | 16.5 | |p |29846.440 | | 0.330290 : | | |06953 04341| +320205 |GW Del |205625.9+104918 |LB | 11.5 | 12.5 | |p | | | | |M8 |04306 | +320206 |GX Del |205629.1+175251 |RR | 14.5 | 15.7 | |p | | | | | |06953 04341| +320207 |GY Del *|201951.0+155027 |M | 11.9 |< 16. | |p |25850. :| | | |M5e-M7e |03976 2MASS| +320208 |GZ Del |202224.5+103407 |RRAB | 15.8 |< 17.0 | |p |38286.327 | | 1.005645 /N| | |06953 03905| +320209 |HH Del |202525.4+175425 |LB | 13.0 | 14.5 | |p | | | | |N |06953 03905| +320210 |HI Del |202557.7+175643 |RR | 16.0 |< 17.0 | |p | | | 0.5 : | | |06953 03903| +320211 |HK Del |202922.2+131112 |LB | 15.5 |< 17.5 | |p | | | | | |06953 03903| +320212 |HL Del |202921.9+180926 |E | 16.0 |< 17.0 | |p | | | | | |06953 03903| +320213 |HM Del |203147.2+184816 |RRAB | 15.6 | 16.7 | |p |30608.354 | | 0.344501 | | |06953 03905| +320214 |HN Del |203345.1+110341 |EA/SD: | 14.5 | 17.0 | |p | | | | | |06953 03903| +320215 |HO Del |203655.5+140310 |UG | 13.6 |< 17.2 | |p | | |( 212.4 /N)| | |06953 03903| +320216 |HP Del |204102.1+073633 |M: | 13.2 |< 14.5 | |p |27790. :| | | |M1IIIe |00294 00294| +320217 |HQ Del |204126.4+185937 |LB | 16.5 |< 18.0 | |p | | | | | |06953 03903| +320218 |HR Del *|204220.4+190939 |NB | 3.70 | 12.4 | |V |39838. |1967 | | |pec(NOVA) | 06512| +320219 |HS Del |205324.3+171023 |RR | 16.0 | 17.0 | |p |29844.516 | | 0.326411 |25 | |06953 03903| +320220 |HT Del |205439.5+171202 |RR | 15.6 | 16.7 | |p |29845.487 | | 0.362494 | | |06953 03905| +320221 |HU Del *|202947.5+094118 |UV | 14.8 | 16.04 | |U | | | | |M7Ve |05509 05509| +320222 |HV Del |203319.5+113201 |RRAB | 15.2 | 16.2 | |p |29845.505 | | 0.721265 |10 : | |06953 03905| +320223 |HW Del |203931.1+161308 |LB | 15.5 | 16.5 | |p | | | | | |06953 04341| +320224 |HX Del |204230.0+172708 |LB | 16.0 |< 17.0 | |p | | | | | |06953 03905| +320225 |HY Del |204254.9+174432 |SRB | 13.0 | 13.7 | |p | | | 230. /N| | |06953 04341| +320226 |HZ Del |204731.8+140529 |E | 14.5 | 15.0 | |p |35315.446 | | | | |06953 03905| +320227 |II Del *|205001.1+191144 |RRC | 14.3 | 15.0 | |p |29844.459 | | 0.408021 | | |06953 03905| +320228 |IK Del |205208.9+154347 |RRAB | 15.8 | 16.8 | |p |29789.487 | | 0.339157 | | |06953 03905| +320229 |IL Del |201826.4+151400 |E | 15. | 16. | |p |40441.43 | | | | |05884 05884| +320230 |IM Del |202230.0+183354 |E | 13.5 | 14. | |p |40499.33 | | | | |05884 05884| +320231 |IN Del |202629.4+101002 |E | 15.5 | 16. | |p |40452.50 | | | | |05884 05884| +320232 |IO Del *|202647.0+183059 |UG: | 15.5 |< 20. | |p | | | | | |05884 05884| +320233 |IP Del |202821.7+163540 |EA | 15.5 | 16.5 | |p |40499.33 | | | | |05884 05884| +320234 |IQ Del |202857.4+103457 |EA | 14.5 | 15. | |p |40441.46 | | | | |05884 05884| +320235 |IR Del |202853.4+182405 |E | 13.5 | 14. | |p | | | | | |05884 05884| +320236 |IS Del |203109.6+162310 |UGZ: | 15. |< 17.5 | |p | | | | | |05884 08852| +320237 |IT Del |203146.7+054714 |M: | 13.1 |< 14. | |p |40182. | | 312.5 | | |00001 00294| +320238 |IU Del |203201.4+183743 |E/SD: | 15. |< 17. | |p |39378.45 | | | | |05884 05884| +320239 |IV Del *|203333.9+095531 |EA | 15. | 16. | |p |40499.375 | | | | |05884 05884| +320240 |IW Del |203452.4+112225 |EA/SD: | 15.5 |< 17. | |p |39378.43 | | | | |05884 05884| +320241 |IX Del |203513.4+153630 |E/SD: | 14.5 | 16. | |p |39378.45 | | | | |05884 05884| +320242 |IY Del |203633.8+163143 |E | 16. | 16.5 | |p |40441.49 | | | | |05884 05884| +320243 |IZ Del |203638.4+175717 |CWA: | 14.5 | 16. | |p | | | 11. : | | |05884 05884| +320244 |KK Del |203642.8+172849 |E: | 15. | 17.5 | |p |39378.45 | | | | |05884 05884| +320245 |KL Del |203855.7+102901 |RR: | 15. | 16. | |p | | | | | |05884 05884| +320246 |KM Del |204019.1+133032 |RR: | 16. | 16.5 | |p |39378.43 | | | | |05884 05884| +320247 |KN Del |204101.2+164558 |E | 15. | 15.5 | |p |40499.375 | | | | |05884 05884| +320248 |KO Del |204447.9+160728 |EA | 12.5 | 13. | |p |40499.375 | | | | |05884 05884| +320249 |KP Del |204510.2+181735 |LB | 7.70 | 8.39 | |V | | | | |M5 |05885 BD | +320250 |KQ Del |201524.2+130419 |LB | 9.9 | 10.5 | |p | | | | |M6.5 |04331 BD | +320251 |KR Del |202305.9+113630 |LB | 15.3 | 16.5 | |p | | | | | |06953 04341| +320252 |KS Del |202306.9+160628 |SR | 15.0 | 16.0 | |p | | | 100. : | | |06953 04341| +320253 |KT Del |202545.3+154712 |LB | 12.0 | 12.5 | |p | | | | |M5 |06953 04341| +320254 |KU Del |202620.7+113020 |LB | 14.5 | 16.0 | |p | | | | | |06953 04341| +320255 |KV Del |202722.9+121034 |LB | 15.0 | 15.8 | |p | | | | | |06953 04341| +320256 |KW Del |202743.0+191650 |LB | 14.0 | 15.5 | |p | | | | | |06953 03903| +320257 |KX Del |203642.6+122946 |SRB | 11.5 | 12.4 | |p | | | 130. : | | |06953 04341| +320258 |KY Del |204357.8+175646 |LB | 12.5 | 13.0 | |p | | | | |M5 |06953 03903| +320259 |KZ Del |204439.0+151848 |LB | 12.3 | 12.8 | |p | | | | |M2 |06953 03903| +320260 |LL Del |204518.4+151558 |LB | 13.5 | 14.0 | |p | | | | | |06953 03903| +320261 |LM Del |204857.9+145426 |LB | 14.7 | 15.3 | |p | | | | | |06953 04341| +320262 |LN Del |205712.6+165404 |LB | 14.2 | 14.8 | |p | | | | | |06953 03905| +320263 |LO Del |205728.6+112938 |SR | 11.9 | 13.3 | |p | | | | | |08065 00294| +320264 |LP Del |203303.3+042313 |M | 12.0 | 18.2 | |p |37854. | | 296.9 |20 |M2 |09035 09035| +320265 |LQ Del |204249.5+191107 |SRB | 8.75 | 9.25 | |V | | | 30. : | |M6 |08282 08282| +320266 |LR Del |205502.2+171534 |ACV | 7.7 |( 0.039 )| |V | | | 26. | |A0p |08323 BD | +320267 |LS Del *|205710.3+193859 |EW/KW | 8.61 | 8.76 | 8.76 |V |42687.418 | | 0.3638 | | |08438 BD | +320268 |LT Del |203557.3+201127 |ZAND | 13.05 | 14.10 | |V | | | | | |68362 68363| +320269 |LU Del |204158.2+173117 |SR: | 6.22 |( 0.25 )| |V | | | | | |70053 BD | +320270 |LV Del |204212.0+190924 |RV: | 14.2 | 15.4 | |V | | | | | |72081 72081| +320271 |LW Del |203827.4+091205 |RRAB | 12.8 |( 1.05 )| |V | | | | | |73144 73144| +320272 |LX Del |205219.0+070847 |RRAB | 13.7 |( 0.8 )| |V | | | | | |73145 73145| +320273 |LY Del |210626.1+192437 |EA | 10.40 | 13.5 | |V | | | | | |73146 73146| +320274 |LZ Del |201709.8+155222 |GCAS | 7.43 | 7.63 | |Hp| | | | | |HIP HIP | +320275 |MM Del |202129.5+120936 |LB: | 11.44 | 11.70 | |Hp| | | | | |HIP HIP | +320276 |MN Del |202226.7+165500 |SRB | 7.17 | 7.37 | |Hp| | | | | |HIP HIP | +320277 |MO Del |202620.4+105019 |BY: | 11.04 | 11.27 | |Hp| | | | | |HIP HIP | +320278 |MP Del |202826.6+114315 |EA | 7.62 | 7.89 | |Hp| | | | | |HIP HIP | +320279 |MQ Del |203044.5+120527 |SRD | 8.64 | 8.79 | |Hp| | | | | |HIP HIP | +320280 |MR Del |203113.5+051309 |EA | 8.85 | 9.16 | |Hp| | | | | |HIP HIP | +320281 |MS Del |203115.2+062121 |LB | 8.28 | 8.44 | |Hp| | | | | |HIP HIP | +320282 |MT Del |203208.0+183739 |LB | 7.05 | 7.30 | |Hp| | | | | |HIP HIP | +320283 |MU Del |203243.0+193135 |BY: | 11.56 | 11.89 | |Hp| | | | | |HIP HIP | +320284 |MV Del |203416.4+193150 |SRB: | 7.24 | 7.34 | |Hp| | | | | |HIP HIP | +320285 |MW Del |203538.7+035951 |SRB: | 8.48 | 8.76 | |Hp| | | | | |HIP HIP | +320286 |MX Del |203623.1+203558 |EB | 8.99 | 9.17 | |Hp| | | | | |HIP HIP | +320287 |MY Del |204359.3+173418 |LB: | 8.01 | 8.15 | |Hp| | | | | |HIP HIP | +320288 |MZ Del |204520.0+070220 |EB | 8.32 | 8.54 | |Hp| | | | | |HIP HIP | +320289 |NN Del |204649.2+073310 |EA | 8.49 | 8.92 | |Hp| | | | | |HIP HIP | +320290 |NO Del |205004.8+165905 |LB | 9.04 | 9.40 | |Hp| | | | | |HIP HIP | +320291 |NP Del |205311.3+152555 |ELL: | 8.89 | 8.97 | |Hp| | | | | |HIP HIP | +320292 |NQ Del |205420.3+081108 |LB: | 11.76 | 12.16 | |Hp| | | | | |HIP HIP | +320293 |NR Del |205711.2+161505 |LB | 7.18 | 7.48 | |Hp| | | | | |HIP HIP | +320294 |NS Del |201542.4+135057 |ACV | 9.22 |( 0.09 U )| |V | | | | | |75026 BD | +320295 |NT Del |202223.0+200616 |ZZ: | 15.7 |( 0.09 )| |V | | | | | |75128 75129| +320296 |NU Del |210207.0+181039 |M: | 9.8 | 14.6 | |p | | | | | |75130 75130| +320297 |NV Del |201813.7+103755 |SR | 11.64 | 11.94 | |* | | | | | |76169 GSC | +320298 |NW Del |204653.8+055129 |M | 13.9 |< 15.0 | |V | | | | | |76054 2MASS| +320299 |NX Del |205025.1+060538 |SRB | 10.0 | 11.0 | |V | | | | | |76054 GSC | +320300 |NY Del |202515.7+072534 |LB | 12.6 | 13.5 | |* | | | | | |77125 GSC | +320301 |NZ Del |205144.6+035515 |LB | 12.4 | 13.1 | |* | | | | | |77125 GSC | +320302 |OO Del *|203354.6+071950 |EW | 17.78 | 18.10 | 18.03 |V | | | 0.33649 | | |78293 78293| +320303 |OP Del *|203402.8+071935 |EW | 16.99 | 17.37 | 17.33 |V | | | 0.28207 | | |78293 78293| +320304 |OQ Del |203937.7+045819 |BY | 7.88 |( 0.04 )| |V | | | | |K5V |78018 DM | +320305 |OR Del *|204613.3+155426 |RS | 7.09 |( 0.03 )| |V | | | 6.557 | |K0IV |78018 DM | +320306 |OS Del |202956.5+093544 |RRAB | 13.5 | 14.5 | |* |54362.583 | | 0.591099 |17 : | |79100 79010| +320307 |OT Del |203131.9+064632 |EA | 12.25 | 12.93 : | 12.45 |V |52832.775 | | 0.646147 |17 | |79006 79136| +320308 |OU Del |203414.3+063406 |LB: | 11.0 | 13.4 | |V | | | | |M1 |79100 79010| +320309 |OV Del |204500.3+164805 |LB | 11.5 | 12.1 | |V | | | | | |79100 79135| +320310 |OW Del |204814.3+043654 |EA | 12.51 | 13.5 | 12.80 |V |52930.625 | | 0.558654 |20 | |79009 79010| +320311 |OX Del *|204900.6+161348 |EA | 10.96 | 11.47 | |V |52754.379 | | 7.125 |09 |G5 |79166 DM | +320312 |OY Del |201749.9+101630 |SR | 12.0 | 12.4 | |* | | | 49.6 | | |80001 USNO | NL80_3 +320313 |OZ Del |202311.1+185446 |EW | 10.48 | 10.77 | 10.71 |V |51322.917 | | 0.911325 | |F2 |80042 GSC | NL80_3 +320314 |PP Del |202823.9+113111 |E+RS | 9.6 | 10.0 | |V | | | 1.0209 | | |80021 GSC | NL80_3 +320315 |PQ Del |202932.8+122731 |BY | 9.95 |( 0.05 : *)| |V | | | 3.7553 | | |80021 DM | NL80_3 +320316 |PR Del |203106.4+090904 |SRB | 10.7 | 11.1 | |* | | | 45. | | |80100 GSC | NL80_3 +320317 |PS Del |203135.0+125420 |EA | 11.95 | 12.40 | 12.08 |V |52933.555 | | 0.753478 |16 | |80011 GSC | NL80_3 +320318 |PT Del |203238.6+200143 |EA | 11.89 | 12.75 | 12.35 |V |52879.688 | | 7.2432 |17 | |80042 GSC | NL80_3 +320319 |PU Del |203327.7+043909 |RRAB | 14.06 | 15.09 | |* |51463.70 | | 0.47645 | | |80026 GSC | NL80_3 +320320 |PV Del |203553.0+100612 |BY | 12.44 |( 0.09 *)| |V | | | 0.9644 | | |80021 GSC | NL80_3 +320321 |PW Del |203622.0+121540 |BY | 9.77 |( 0.19 )| |V | | | 12.3366 | | |80021 DM | NL80_3 +320322 |PX Del |203747.8+195115 |EB | 12.23 | 12.88 | 12.70 |V |51339.4 | | 49.44 | | |80013 GSC | NL80_3 +320323 |PY Del |203756.5+133753 |EA: | 12.08 | 13.26 | 13.0 |* |53557.8787 | | 0.60851 |21 | |80557 80557| NL80_3 +320324 |PZ Del |203939.0+035228 |RRAB | 13.69 | 14.61 | |* |51356.73 | | 0.50077 | | |80026 GSC | NL80_3 +320325 |QQ Del |204017.1+143036 |BY | 9.86 |( 0.04 *)| |V | | | 0.9378 | | |80021 DM | NL80_3 +320326 |QR Del |204404.8+131412 |BY | 10.71 |( 0.08 *)| |V | | | 2.1510 | | |80021 GSC | NL80_3 +320327 |QS Del |204751.7+135028 |RS | 11.5 | 11.7 | |* | | | 17.9449 | | |80067 80067| NL80_3 +320328 |QT Del |204853.4+122230 |BY | 10.77 |( 0.07 *)| |V | | | 6.2897 | |G5 |80021 DM | NL80_3 +320329 |QU Del |204922.9+064739 |RS | 10.05 | 10.14 | |V | | | 9.04572 | |F0 |80001 DM | NL80_3 +320330 |QV Del |205428.0+090607 |BY | 11.73 |( 0.07 *)| |V | | | 2.2374 | | |80021 GSC | NL80_3 +320331 |QW Del |205436.8+122211 |SR | 12.8 | 13.3 | |* | | | 75. | | |80001 GSC | NL80_3 +320332 |QX Del |205550.9+102341 |RS | 11.3 | 11.4 | |* | | | 10.15 | | |80043 80043| NL80_3 +320333 |QY Del |205902.5+184702 |RS | 11.0 | 11.2 | |* | | | 3.62021 | | |80067 80067| NL80_3 +320334 |QZ Del |210021.3+154835 |RRAB | 14.35 | 15.15 | |* |52511.531 | | 0.5597298 |15 | |80544 80544| NL80_3 +320335 |V0335 Del |210044.1+151955 |EB | 11.92 | 12.30 | 12.04 |* |52500.483 | | 0.787193 | | |80164 80164| NL80_3 +320336 |V0336 Del |210047.5+145246 |EW | 12.25 | 12.48 | 12.46 |* |52497.69 | | 0.631308 | | |80565 80565| NL80_3 +320337 |V0337 Del |210127.8+152811 |EW | 13.02 | 13.45 | 13.40 |* |52853.4731 | | 0.452421 | | |80164 80164| NL80_3 +320338 |V0338 Del |210134.6+152316 |EW | 14.30 | 14.73 | 14.71 |* |52853.428 | | 0.381807 | | |80164 80164| NL80_3 +329004 |del Del *|204327.5+150429 |DSCT | 4.38 | 4.49 | |V | | | | |F0IV |07528 BD | +330001 |R Dor *|043645.6-620438 |SRB | 4.8 | 6.6 | |V | | | 338. : | |M8IIIe |00353 00002| +330002 |S Dor *|051814.4-691501 |SDOR | 8.6 | 11.5 | |B | | | | |A0-5eq |V 125 V 016|=LMC V1970 +330003 |T Dor *|044549.6-594713 |M | 10.5 |< 14. | |p |40665. | | 168.0 | |M5IIe |05828 08953| +330004 |U Dor |051008.8-641904 |M | 8.1 | 14.6 | |p |29850. | | 394.4 | |M8IIIe |00001 09040| +330005 |V Dor *|045745.1-654230 |DCEP | 12.62 | 13.35 | |V |42725.466 | | 24.240 |27 | |V 038 V 016|=LMC V0379 +330006 |W Dor |053024. -663851:| | 13. |< 15. | |p | | | | | |V 173 |=LMC V2983 +330007 |X Dor |053345.7-694339 |DCEP | 15.3 | 16.1 | |p |16823.638 | | 3.941253 |21 | |V 008 V 016|=LMC V3319 +330008 |Y Dor |053441.7-684126 |DCEP | 15.0 | 16.3 | |p |27426.555 | | 6.54151 |28 | |V 008 V 016|=LMC V3381 +330009 |Z Dor |053818.5-691011 |LC: | 16.0 | 17.0 | |p | | | | |M0Ia: |V 008 V 016|=LMC V3754 +330010 |RR Dor *|053953.1-691535 |EB: | 14.45 | 15.31 | 14.5 |V |27456.309 | | 2.149396 | |B0III |V 008 V 016|=LMC V3918 +330011 |RS Dor |053946.1-691928 |LC | 15.2 | 16.2 | |p | | | | |M0 |V 008 V 016|=LMC V3900 +330012 |RT Dor |052944.7-641713 |RRAB | 11.8 | 13.0 | |p |30767.272 | | 0.482837 |16 | |09036 09040| +330013 |RU Dor |053728.3-663743 |DCEP | 14.8 | 16.0 | |B |16820.651 | | 8.32713 |32 | |V 008 V 016|=LMC V3631 +330014 |RV Dor |062046.0-664754 |RRAB | 13.4 | 14.6 | |p |23761.292 | | 0.375 |20 | |00355 GSC | +330015 |RW Dor *|051832.5-681333 |EW/KW | 10.8 | 11.4 | 11.2 |p |30938.6017 | | 0.285463812 | |G |09041 09040| +330016 |RX Dor *|050134.6-680554 |M | 12.7 | 18.1 | |p |13923. | | 335.4 | |M7 |01454 09040| +330017 |RY Dor |051458.0-665012 |N | 12.4 |< 18. | |p |24767. |1926 | | | |V 041 V 016|=LMC V1674 +330018 |RZ Dor |042019.7-542012 |M: | 11.0 |< 12.8 | |p |24153. | | 161. | | |00210 GSC | +330019 |SS Dor |040551.6-545003 |M | 11.5 | 15.8 | |p | | | | | |00085 02385| +330020 |ST Dor |042850.3-543008 |M: | 12. |< 13.5 | |p |28850. | | | |M0e |00085 02381| +330021 |SU Dor |044730.0-554106 |M | 8.5 |< 14.0 | |V |40741. | | 235.86 | | |00001 02381| +330022 |SV Dor |061051.7-690057 |M | 12.9 |< 17.5 | |B | | | 283.35 | |M1e |V 013 V 016|=LMC V4687 +330023 |SW Dor *|050205.7-671657 |RRAB | 13.5 | 14.7 | |B |39126.73 | | 0.52540 |17 | |09057 09040| +330024 |SX Dor *|050332.1-654258 |RRAB | 13.5 | 14.9 | |B |30669.451 | | 0.631486 |20 | |09036 09040| +330025 |SY Dor *|050349.5-690414 |RR | 13.0 | 13.8 | |p | | | | | |00826 09040| +330026 |SZ Dor *|050650.4-684937 |RRAB | 15.4 | 16.4 | |p |32030.615 | | 0.688199 |17 | |09036 09040| +330027 |TT Dor |050715.9-685301 |I | 12.7 | 13.3 | |p | | | | | |V 004 V 016|=LMC V1106 +330028 |TU Dor |051159.0-690326 |CEP | 15.8 | 16.4 | |p |32915.336 | | 5.076277 : |38 | |V 008 V 016|=LMC V1445 +330029 |TV Dor |051442.6-693056 |I | 15.3 | 16.5 | |p | | | | | |V 008 V 016|=LMC V1687 +330030 |TW Dor |051800.8-694411 |DCEP: | 15.8 | 16.1 | |p |16816.644 | | 3.215025 : |42 | |V 008 V 016|=LMC V1958 +330031 |TX Dor |052407.0-692337 |SRA | 15.5 | 17.9 | |p | | | 372. | |M2e-M7 |V 008 V 016|=LMC V2419 +330032 |TY Dor *|052406.3-692511 |RRAB | 14.2 | 15.0 | |p |27799.286 | | 0.553133 |12 | |09036 09040| +330033 |TZ Dor |052506.4-684409 |M | 15.2 |< 17.0 | |p | | | 359.71 | | |V 013 V 016|=LMC V2489 +330034 |UU Dor *|054507.4-695214 |RR | 14.2 | 14.8 | |p | | | | | |00826 09040| +330035 |UV Dor *|054757.4-641829 |RRAB | 14.6 | 16.2 | |p |32208.347 | | 0.633278 |16 | |09036 09040| +330036 |UW Dor |055043.9-641626 |I: | 14.2 | 14.8 | |p | | | | | |V 008 V 016|=LMC V4491 +330037 |UX Dor *|055305.6-692902 |RR | 15.0 | 15.7 | |p | | | | | |00826 09040| +330038 |UY Dor |060127.7-650523 |M | 13.9 | 17.3 | |p | | | 346. | | |V 008 V 016|=LMC V4655 +330039 |UZ Dor |060411.0-681258 |DCEP | 14.2 | 15.8 | |p |26715.537 | | 10.91235 |30 : | |V 008 V 016|=LMC V4667 +330040 |VV Dor |060647.8-664813 |M | 12.6 | 17.3 | |p | | | 351. | | |V 008 V 016|=LMC V4677 +330041 |VW Dor |060745.7-665839 |RRAB | 11.22 | 12.11 | |V |38379.453 | | 0.570610 |20 | |00001 09040| +330042 |VX Dor |060938.7-670642 |RRAB | 14.4 | 15.3 | |p |32210.281 | | 0.564878 |26 | |09036 09040| +330043 |VY Dor |044813.3-534805 |RR | 12. | 12.5 | |p | | | | | |06561 06561| +330044 |VZ Dor | | | | | | | | | | | | |=VW Dor +330045 |WW Dor |041336.8-503510 |SRB | 8.66 | 8.87 | |V |40625. | | 52. | |M2(Ib/II) |05828 CoD | +330046 |WX Dor |041505.4-530033 |SRB | 8.76 | 8.91 | |V | | | 80. : | |MB |05828 CPD | +330047 |WY Dor |044925.4-664949 |LB | 9.60 | 9.85 | |V | | | | |M4/5(III) |05828 CPD | +330048 |WZ Dor |050734.0-632359 |SRB | 5.2 |( 0.12 : )| |V | | | 40. | |M3III |06994 CPD | +330049 |XX Dor *|045913.6-693543 |RRC | 11.23 | 11.67 | |V |40701.307 | | 0.328936 |52 |F0 |09076 CPD | +330050 |XY Dor |040015.5-513354 |LB: | 6.50 |( 0.07 )| |V | | | | |M1III |05150 CoD | +330051 |XZ Dor |044904.8-564000 |LB: | 6.55 |( 0.16 )| |V | | | | |M4III |04456 CPD | +330052 |YY Dor |055642.4-685434 |NR | 10.8 |< 18. | |p |28861. |1937 | | | |V 182 V 016|=LMC V4622 +330053 |YZ Dor |061252.9-682137 |M: | 10.5 |< 12.5 | |p | | | | | |V 178 V 179|=LMC V4699 +330054 |ZZ Dor *|050512.9-664054 |RRAB | 15.3 | 16.7 | |B |15309.882 | | 0.5392406 |35 | |09080 08283| +330055 |AA Dor *|053140.4-695302 |EA/D | 11.13 | 11.60 | 11.21 |V |43196.34870 | | 0.2615398 |07 |O(subdwarf) |09081 CPD | +330056 |AB Dor |052844.8-652655 |FKCOM: | 6.77 | 6.98 | |V | | | | | |67395 CPD | +330057 |AC Dor |044450.7-664302 |RRAB | 15.75 | 16.75 | |V | | | | | |68287 68288| +330058 |AD Dor |045829.1-654143 |RRAB | 16.1 | 16.7 | |p | | | | | |68289 68117| +330059 |AE Dor |045851.9-650237 |RRAB | 15.5 | 16.85 | |V | | | | | |68287 68288| +330060 |AF Dor |060753.6-684101 |RRAB | 16.0 | 16.9 | |p | | | | | |68289 68288| +330061 |AG Dor |040729.2-523417 |RS | 8.66 | 8.83 | |V | | | | | |69011 CPD | +330062 |AH Dor |052934.5-665529 |SR | 14.7 | 16.8 | |p | | | 487. | | |V 008 V 016|=LMC V2905 +330063 |AI Dor |054229.8-663613 |RRAB | 14.7 | 15.8 | |p |28071.603 | | 0.625576 |18 | |V 008 V 016|=LMC V4145 +330064 |AK Dor |043839.9-590150 |RR | 16.98 | 17.70 | |B | | | | | |72082 72082| +330065 |AL Dor |044652.3-603613 |EA | 7.80 | 8.12 | |Hp| | | | | |HIP HIP | +330066 |AM Dor |045009.1-583122 |LB: | 8.35 | 8.45 | |Hp| | | | | |HIP HIP | +330067 |AN Dor |045228.2-554149 |EA | 7.61 | 7.79 | |Hp| | | | | |HIP HIP | +330068 |AO Dor |050132.8-680143 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +330069 |AP Dor |050645.1-590303 |EW: | 9.38 | 9.60 | |Hp| | | | | |HIP HIP | +330070 |AQ Dor |051013.6-602621 |LB | 8.57 | 9.00 | |Hp| | | | | |HIP HIP | +330071 |AR Dor |051203.1-651033 |E: | 7.12 | 7.20 | |Hp| | | | | |HIP HIP | +330072 |AS Dor |051916.9-675149 |LB: | 9.72 | 9.95 | |Hp| | | | | |HIP HIP | +330073 |AT Dor |052816.2-590847 |LB: | 8.63 | 8.73 | |Hp| | | | | |HIP HIP | +330074 |AU Dor |053622.3-661725 |LB: | 8.73 | 8.86 | |Hp| | | | | |HIP HIP | +330075 |AV Dor |054104.9-615128 |EA | 9.67 | 10.09 | |Hp| | | | | |HIP HIP | +330076 |AW Dor |061342.7-664759 |LB: | 9.17 | 9.35 | |Hp| | | | | |HIP HIP | +330077 |AX Dor |062758.9-664516 |LB: | 8.37 | 8.47 | |Hp| | | | | |HIP HIP | +330078 |AY Dor |063101.1-665215 |LB: | 6.77 | 7.24 | |Hp| | | | | |HIP HIP | +330079 |AZ Dor |053655.0-663337 |BE | 6.26 | 6.29 | |V | | | | | |76053 DM | +330080 |BB Dor |052928.6-585447 |NL | 14.3 |< 18. | |B | | | | | |77003 GSC | +330081 |BC Dor |054615.0-683524 |UG | 13.6 | 19.7 | |V | | | | | |78077 78078| +330082 |BD Dor |043819.1-571214 |EA | 11.45 | 12.12 | 11.7 : |V |53470.550 | | 0.785242 |18 | |79009 DM | +330083 |BE Dor *|050918.9-695015 |RRC | 14.35 | 14.68 | |I |49196.9241 | | 0.328038 |35 | |80183 USNO | NL80_1 +330084 |BF Dor *|060554.5-665037 |EW: | 13.0 | 13.2 | 13.2 |V |54505.7308 | | 0.352271 | | |80242 80242| NL80_2 +339001 |alf Dor *|043359.8-550242 |ACV | 3.26 | 3.30 | |V |43481.50 | | 2.95 |50 |A0IIIp(Si) |04013 CPD | +339002 |bet Dor *|053337.5-622923 |DCEP | 3.46 | 4.08 | |V |40905.30 | | 9.8426 |48 |F4-G4Ia-II |08654 08953| +339003 |gam Dor |041601.6-512912 |EW: | 4.23 | 4.27 | |V | | | | |F0V-F5V |06065 HIP | +340001 |R Dra |163240.2+664518 |M | 6.7 | 13.2 | |V |44779. | | 245.60 |45 |M5e-M9eIII |00001 00002| +340002 |S Dra |164255.9+545414 |SRB | 10.5 | 11.5 | |p | | | 136. : | |M7 |01169 08953| +340003 |T Dra *|175623.3+581306 |M | 7.2 | 13.5 | |V |43957. | | 421.62 |44 |C6,2e-C8,3e(N0e) |00001 00002| +340004 |U Dra *|191000.6+671637 |M | 9.1 | 14.6 | |V |44290. | | 316.13 |47 |M6e-M8 |00001 00002| +340005 |V Dra |175814.5+545218 |M | 9.5 | 14.7 | |V |44451. | | 278.33 |50 |M4e |00001 00002| +340006 |W Dra *|180534.7+655722 |M | 8.9 | 15.4 | |V |42176. | | 278.6 |43 |M3e-M4e |00001 00002| +340007 |X Dra |180652.2+660919 |M | 8.9 | 15.8 | |V |44167. | | 257.33 |44 |M5e: |00001 00002| +340008 |Y Dra *|094222.6+775107 |M | 6.24 | 15.0 | |V |44448. | | 325.79 |45 |M5e |00001 09050| +340009 |Z Dra *|114529.2+721458 |EA/SD | 10.8 | 14.1 | 11.0 |p |43499.736 | | 1.3574560 |15 *|F4V |00001 09082| +340010 |RR Dra *|184147.4+624035 |EA/SD | 10.0 | 13.3 | 10.1 |V |44483.391 | | 2.8313215 |15 |A2 |00001 00101| +340011 |RS Dra *|183733.5+741943 |SRA | 9.0 | 12.0 | |V |15120. | | 282.72 |44 |M5e |03817 00101| +340012 |RT Dra |181925.8+724050 |M | 9.6 | 13.8 | |V |35494. | | 279.41 | |M5 |00001 00101| +340013 |RU Dra |181920.7+593223 |M | 9.4 |< 13.6 | |V |34214. | | 297.1 |40 |M5e |00001 00101| +340014 |RV Dra |123746.0+653323 |M | 8.4 | 14.2 | |V |43526. | | 208.14 |35 |M1e-M3e |00001 00002| +340015 |RW Dra *|163531.6+575023 |RRAB | 11.05 | 12.08 | |V |39377.391 | | 0.442917 | |A7-F4 |08636 00102| +340016 |RX Dra *|190242.0+584358 |EA/DM | 10.0 | 10.5 | 10.3 |V |17502.411 | | 3.7863886 |09 *|F |00522 00100| +340017 |RY Dra |125625.9+655940 |SRB: | 6.03 | 8.0 | |V | | | 200. : | |C4,5J(N4p) |00001 08953| +340018 |RZ Dra *|182305.4+585413 |EB/SD: | 10.11 | 11.01 | 10.38 |V |44177.5555 | | 0.5508738 | |A5 |09052 00102| +340019 |SS Dra |122620.9+684117 |SRB | 8.4 | 10.4 | |V |27667. | | 51.5 |48 |M5 |00310 08953| +340020 |ST Dra |163538.0+573605 |CST: | 10.6 : | 11.2 | |p | | | | |K0 |00352 | +340021 |SU Dra *|113756.6+671947 |RRAB | 9.18 | 10.27 | |V |43902.0467 | | 0.66042001 |15 |F2-F7 |08299 08299| +340022 |SV Dra |183338.4+492220 |M | 9.1 | 15.0 | |V |43714. | | 256.24 |49 |M7e |00001 00002| +340023 |SW Dra *|121746.6+693038 |RRAB | 9.94 | 10.94 | |V |26224.5876 | | 0.56966993 |17 |A7-F8 |03506 06286| +340024 |SX Dra *|180433.9+582354 |EA/SD | 9.8 | 11.6 | 10.0 |V |44705.459 | | 5.16952 |14 |A7V |00001 00537| +340025 |SY Dra |173357.8+535738 |M | 10.5 |< 14.0 | |V |42850. | | 391.38 | |M7e |00001 00114| +340026 |SZ Dra |191002.3+660610 |LB | 10.0 | 11.0 | |p | | | | |M5 | 08953| +340027 |TT Dra *|171252.3+575146 |SRB | 10.5 |< 12.5 | |p | | | 107. : | |M6 |01169 08953| +340028 |TU Dra |185130.2+485443 |M | 10.0 |< 13.3 | |V |38892. | | 344.79 | |M4e |00001 00537| +340029 |TV Dra |170824.5+641909 |LB | 10.2 | 11.6 | |p | | | | |M8p(S) | 08953| +340030 |TW Dra *|153351.1+635426 |EA/SD | 8.0 | 10.5 | 8.1 |p |44136.295 | | 2.8068470 |17 |A8V+K0III |09053 08953| +340031 |TX Dra *|163500.7+602805 |SRB | 7.9 | 10.2 | |p | | | 78. : |50 |M4e-M5 |01169 00002| +340032 |TY Dra |173700.1+574425 |LB | 8.8 | 9.9 | |V | | | | |M5-M8 |01462 08953| +340033 |TZ Dra |182211.7+473408 |EA/SD | 9.6 | 10.5 | |p |42966.482 | | 0.8660347 |20 *|A7V: |07531 08953| +340034 |UU Dra *|202403.6+751514 |SRB | 10.8 | 12.3 | |p | | | 120. |50 |M8IIIe |01463 01464| +340035 |UV Dra |144401.9+560625 |SRA | 8.6 | 9.8 | |V |24436.4 | | 77.4 |43 |M5 |00898 08953| +340036 |UW Dra |175731.3+543956 |LB | 7.0 | 8.2 | |V | | | | |K5p | 08953| +340037 |UX Dra *|192135.5+763335 |SRA: | 5.94 | 7.1 | |V | | | 168. |50 |C7,3(N0) |00108 06225| +340038 |UY Dra |175622.1+581254 |CST: | 10.99 | | |V | | | | |K2III-IV |00458 00119| +340039 |UZ Dra *|192555.0+685607 |EA/DM | 9.9 | 10.7 | 10.6 |p |41570.283 | | 3.2613024 |07 |F8 |03671 00010| +340040 |VV Dra |121729.4+691524 |LB: | 10.3 | 10.8 | |p | | | | |K5 | 01465| +340041 |VW Dra *|171629.4+604014 |SRD: | 6.0 | 7.0 | |V | | | 170. : | |K1.5IIIb |03828 08953| +340042 |VX Dra | | | | | | | | | | | | |=FU Dra +340043 |VY Dra |153950.5+643943 |CST: | 9.2 | | |p | | | | |K2 |01466 09087| +340044 |VZ Dra |162105.7+582703 |RRC | 11.4 | 12.2 | |p |43361.3979 | | 0.3210308 | |A |04150 09088| +340045 |WW Dra *|163904.0+604159 |EA/AR/RS | 8.3 |( 0.65 )|( 0.08 )|V |28020.3686 | | 4.6296238 |12 *|G2IV+K0IV |08592 01467| +340046 |WX Dra |185210.4+474817 |EA/SD | 13.5 | 15.3 | |B |45171.427 | | 1.8018647 |08 | |09090 09090| +340047 |WY Dra |193320.8+805543 |RRAB | 12.08 | 13.64 | |B |38604.518 | | 0.588941 |15 | |00001 01470| +340048 |WZ Dra *|165949.7+521904 |SRA | 8.5 | 14.0 | |V |43135. | | 401.7 |50 |M6e |00001 04238| +340049 |XX Dra |190359.2+491641 |M: | 13.0 |< 14.2 | |p |30576. | | 342.12 | | |02394 01471| +340050 |XY Dra *|181817.1+550333 |EA/SD | 13.4 |< 14.5 | 13.7 |p |25739.407 | | 2.31422 |10 | |03160 01473| +340051 |XZ Dra *|190942.6+645132 |RRAB | 9.59 | 10.65 | |V |41928.374 | | 0.476497 |20 |A6-F6 |07032 01474| +340052 |YY Dra |114335. +714209:|EA/SD | 12.9 |< 14.5 | |p |19852.4 | | 4.21123 | | |01475 | +340053 |YZ Dra |192345.1+714114 |M | 8.3 |< 14.5 | |V |34722. | | 347.6 | |M8e |00001 00114| +340054 |ZZ Dra *|194058.1+674604 |M | 10. |< 15.5 | |p |41209. | | 267.9 | |M7e |00001 00114| +340055 |AA Dra |200547.5+661720 |M | 10. |< 15.5 | |p |37040. | | 338.62 | |M6 |00001 00114| +340056 |AB Dra |194906.4+774423 |UGZ | 11.0 | 15.3 | |V | | |( 13.4 ) | |pec(UG) |03791 00002| +340057 |AC Dra |202006.0+685249 |LB | 7.14 |( 0.25 )| |B | | | | |M5IIIab |01371 BD | +340058 |AD Dra |191244.3+621615 |M | 11.3 | 15.5 | |V |30291. | | 225.5 |44 : | |01476 USNO | +340059 |AE Dra *|182706.6+552933 |RRAB | 12.4 | 13.38 | |B |31996.480 | | 0.6026728 |15 |A7-F6 |08697 01477| +340060 |AF Dra *|203130.4+745717 |ACV | 5.15 | 5.22 | |V | | | 20.2747 | |A0p(Sr-Cr-Eu) |07946 BD | +340061 |AG Dra *|160141.0+664810 |ZAND | 8.9 | 11.8 | |p |38900. | | 554. | |K3IIIep |05724 09092| +340062 |AH Dra |164816.6+574849 |SRB | 8.5 | 9.3 | |p |30520. | | 158. | |M7 |03775 08953| +340063 |AI Dra *|165618.1+524154 |EA/SD | 7.05 | 8.09 | 7.16 |V |43291.627 | | 1.1988146 |18 *|A0V |00001 06515| +340064 |AK Dra |181643.2+531448 |EA | 11.8 | 12.6 | |p |26828.530 | | 2.218237 |16 |F3 |03835 00174| +340065 |AL Dra |182740.5+491833 |M | 11.0 | 13.8 | |p |39409. | | 330.3 | |M7ea |00001 04238| +340066 |AM Dra |185243.8+641005 |M | 11.3 |< 13.8 | |p |35235. | | 325.3 | | |00686 00174| +340067 |AN Dra |170405.2+714747 |M | 11.8 | 16. | |p |32978. | | 353.5 | |M5 |05724 00174| +340068 |AO Dra |173640.4+545139 |SRA | 11.0 | 12.5 | |p |34213. | | 103. | |M3e |00686 00174| +340069 |AP Dra *|182200.9+695010 |M: | 11.6 |< 13.0 | |p |37490. | | 582. | | |03835 00174| +340070 |AQ Dra *|200250.5+732748 |ISB | 12.7 | 14.7 | |p | | |( 5.5 ) | |F2 |03093 00850| +340071 |AR Dra *|121636.5+645127 |EA/SD: | 11.29 | 12.51 | 11.63 |V |42868.9114 | | 0.6758375 |20 |F5V |00001 09093| +340072 |AS Dra *|122211.7+731455 |* | 8.00 | 8.10 | |V |35926.055 | | 5.414905 | |G4+G9 |02790 BD | +340073 |AT Dra |161715.4+594518 |LB | 6.8 | 7.5 | |p | | | | |M4IIIa |02696 08953| +340074 |AU Dra |173521.3+683819 |EA/SD: | 12.3 | 13.1 | |p |35635.397 | | 0.51514 | | |01040 00174| +340075 |AV Dra |175944.2+515302 |RR | 12.3 |< 12.9 | |p |35335.522 | | 0.5555919 | | |05342 00174| +340076 |AW Dra *|190048.0+500531 |RRAB | 12.3 | 14.3 | |p |36075.224 | | 0.6871941 |20 : | |03506 02798| +340077 |AX Dra *|124014.7+661710 |EB | 10.9 | 11.6 | 11.0 |p |26767.675 | | 0.5681644 | |F5 |04171 00174| +340078 |AY Dra |153839.2+570133 |SRA | 10.6 | 12.6 | |p |26603. | | 262.5 | | |05371 04014| +340079 |AZ Dra |164042.5+724018 |LB | 8.0 | 8.9 | |p | | | | |M2 |04198 08953| +340080 |BB Dra |175345.0+570321 |LB | 10.9 | 11.7 | |p | | | | |M8 |04213 BD | +340081 |BC Dra |181419.1+764108 |RRAB | 11.27 | 11.80 | |V |42278.443 | | 0.719576 |22 |F5 |09094 09094| +340082 |BD Dra |181751.9+771749 |RRAB | 12.02 | 13.11 | |V |41774.441 | | 0.589052 |20 | |07114 02789| +340083 |BE Dra *|182556.9+685744 |EB/KE | 11.3 | 11.8 | 11.5 |p |36317.368 | | 0.5224911 | |B |04171 02789| +340084 |BF Dra |185059.4+695258 |EA | 10.1 | 10.8 | |p |36317.579 | | 5.60545 |06 *|F8 |04109 04235| +340085 |BG Dra |185436.0+513231 |SR: | 12.0 | 14.0 | |p | | | | | |04236 04236| +340086 |BH Dra *|190339.5+572726 |EA/SD: | 8.38 | 9.27 | 8.58 |V |40019.7982 | | 1.81723857 |11 *|A2V+Ap |06517 08953| +340087 |BI Dra |191551.6+734549 |SRA | 11.0 | 11.6 | |p |28410. | | 106. | |M |04014 02789| +340088 |BK Dra *|191820.7+662448 |RRAB | 10.59 | 11.87 | |V |25523.305 | | 0.5920815 |12 |A8 |03835 04250| +340089 |BL Dra |194024.6+605513 |E | 11.9 | 12.2 | |p | | | | | |03148 04065| +340090 |BM Dra |194541.7+583219 |EA/SD | 14.6 | 15.7 | |p |26626.39 | | 3.5293 |10 *| |03148 04065| +340091 |BN Dra |194708.0+612212 |EA/SD | 14.3 | 16.0 | |p |31231.50 | | 5.93015 : |07 | |03148 04065| +340092 |BO Dra |195135.6+670622 |M: | 12.7 |< 14.5 | |p |31732. | | 274.5 | | |04280 04280| +340093 |BP Dra *|195743.2+600053 |EB/KE | 14.4 | 14.9 | 14.7 |p |37668.661 | | 0.9868 | | |03148 04065| +340094 |BQ Dra |195827.9+600157 |LB | 14.5 | 15.3 | |p | | | | | |03148 04065| +340095 |BR Dra |195906.5+601836 |E/SD: | 15.6 | 17.0 | |p | | | 6.89 /N| | |03148 04065| +340096 |BS Dra *|195628.8+733658 |EA/DM | 9.12 | 9.86 | 9.84 |V |41461.4242 | | 3.3640120 |07 *|F5V+F5V |00001 08953| +340097 |BT Dra |145144.6+600409 |RRAB | 11.36 | 12.30 | |V |30734.635 | | 0.5886740 |16 |A8 |00001 09095| +340098 |BU Dra |145840.1+564507 |EA/SD: | 10.4 | 11.4 | |p |28656.530 | | 1.91417 |07 *|F5 |03160 BD | +340099 |BV Dra *|151150.4+615125 |EW/KW | 7.88 | 8.48 | 8.40 |V |44474.327 | | 0.3500671 | |F7V |00001 09096| +340100 |BW Dra *|151150.1+615141 |EW/KW | 8.61 | 9.08 | 9.02 |V |42572.538 | | 0.2921671 | | |09097 09096| +340101 |BX Dra |160617.4+624546 |RR | 11.5 | 12.2 | |p |27216.410 | | 0.561192 |20 |A3 |03929 03587| +340102 |BY Dra *|183355.8+514309 |BY+UV | 8.04 | 8.48 | |V | | | 3.813 | |K3V+MVe |06948 04028| +340103 |BZ Dra |184717.9+535647 |M | 12. |< 16.5 | |p |38590. :| | | | |03910 03910| +340104 |CC Dra |185303.3+515841 |SRD: | 14.5 | 17. | |p | | | 270. : | | |07079 03905| +340105 |CD Dra |185451.6+522844 |RR | 15. | 16. | |p | | | | | |03910 03910| +340106 |CE Dra |190611.4+555021 |M: | 15. | 17.5 | |p | | | | | |03910 03910| +340107 |CF Dra |190647.5+532257 |INSA | 14. | 15. | |p | | | | |A7 |08656 03910| +340108 |CG Dra |190732.6+525828 |UG: | 15. | 17.5 | |p | | | | | |03910 03910| +340109 |CH Dra |191052.7+563103 |M: | 15. |< 17.5 | |p |39050. :| | | | |03905 03905| +340110 |CI Dra |192532.4+564332 |RR | 15.5 | 17. | |p |38695.29 | | | | |03910 03910| +340111 |CK Dra |153743.8+570649 |EA/SD | 11.3 | 12.9 | |p |36233.767 | | 4.994511 |10 : | |05424 05424| +340112 |CL Dra |155747.4+544459 |DSCTC | 4.95 |( 0.02 )| |V | | | 0.063 | |F0IV |06255 BD | +340113 |CM Dra *|163420.2+570944 |EA+UV+BY | 12.87 | 13.63 | 13.63 |V |42893.9325 | | 1.26838965 |04 *|M4Ve |09115 09116| +340114 |CN Dra |194644.7+682617 |DSCTC | 6.29 |( 0.09 )| |V | | | 0.100 | |F0III |05500 BD | +340115 |CO Dra |194824.9+754304 |L: | 13.6 | 14.5 | |p | | | | | |05957 01464| +340116 |CP Dra |101539.8+732605 |UG | 15.1 | 20. | |p | | |( 354. ) | | |09117 09117| +340117 |CQ Dra |123006.7+691204 |LB: | 4.95 | 5.04 | |V | | | | |M3IIIa |05841 BD | +340118 |CR Dra *|161705.4+551609 |UV | 9.46 | 12.53 | |U | | | | |M1.5Ve |09119 04069| +340119 |CS Dra |111555.9+750835 |LB | 9.93 | 10.58 | |V | | | | |M5 |09118 | +340120 |CT Dra |114109.3+752822 |LB | 9.8 | 10.4 | |p | | | | |M |02618 BD | +340121 |CU Dra |135125.9+644324 |LB: | 4.52 | 4.67 | |V | | | | |M3III |09152 BD | +340122 |CV Dra |173157.2+571042 |IS | 9.5 | 10.1 | |p | | | | | |09153 BD | +340123 |CW Dra |175125.1+803903 |LB: | 10.8 | 11.7 | |p | | | | |M8 |00174 BD | +340124 |CX Dra *|184643.1+525917 |GCAS+ELL | 5.68 | 5.99 | |V | | | | |B2.5Ve |09164 BD | +340125 |CY Dra |194605.2+593426 |RR: | 12.3 | 13.6 | |p | | | | | |00164 02354| +340126 |CZ Dra |182601.0+505549 |M | 9.1 |< 13.0 | |V |38190. | | 371. | |M7e |07956 07956| +340127 |DD Dra |184404.6+604613 |EA: | 11.2 | 12.0 | |p |31587.248 | | 0.784 : | |B9 |04022 02789| +340128 |DE Dra *|201936.7+621527 |EA/DM | 5.72 |( 0.16 )| |V |42626.2861 | | 5.298036 |05 |B9V |09155 BD | +340129 |DF Dra |203846.4+693609 |E | 13.2 | 14.3 | |p | | | | | |04298 04297| +340130 |DG Dra *|190503.4+570732 |ELL | 9.40 |( 0.19 )|( 0.17 )|V |41851.848 | | 0.5713698 | |A5V |08284 BD | +340131 |DH Dra |101750.7+732514 |M: | 11.3 | 14.5 | |V |42515. | | 550. | |N |09162 04023| +340132 |DI Dra |102116.0+784552 |ACV | 8.2 |( 0.015 )| |B | | | 18. | |A0p(Sr-Cr-Eu) |08323 BD | +340133 |DK Dra *|121541.5+723304 |RS | 6.29 |( 0.19 )| |V |44048.0 | | 63.15 |50 |K0III+K0III |08600 BD | +340134 |DL Dra *|144203.3+611543 |DSCTC | 6.22 | 6.29 | |V | | | | |F2IV |04026 BD | +340135 |DM Dra |153412.2+594833 |UG | 15.5 | 20. | |V | | | | |OB |08738 08738| +340136 |DN Dra *|164825.6+590323 |ZZA | 12.7 |( 0.01 )| |V | | | | |DA |08763 04028| +340137 |DO Dra |114338.4+714120 |UG | 10.0 | 15.1 | |B | | | | | |67400 67400| +340138 |DP Dra |124902.8+660637 |UV | 10.9 |( 1.55 B )| |V | | | | | |67403 HIP | +340139 |DQ Dra |162425.3+551218 |ACV | 5.74 |( 0.017 )| |V | | | | | |67415 BD | +340140 |DR Dra |173241.2+741339 |RS | 6.55 |( 0.12 )| |V | | | | | |67419 BD | +340141 |DS Dra |182152.0+642153 |ZZO | 15.04 |( 0.02 )| |V | | | | | |67421 67186| +340142 |DT Dra |184957.3+503514 |RRAB | 13.3 | 14.7 | |p | | | | | |67426 67423| +340143 |DU Dra |135211.0+652457 |ZZA | 15.5 |( 0.03 )| |V | | | | | |68118 68320| +340144 |DV Dra |181723.1+504818 |UG: | 15.3 |< 21. | |p | | | | | |68119 68119| +340145 |DW Dra |192139.1+695603 |EA/SD | 14. | 15.5 | |p | | | | | |68352 68093| +340146 |DX Dra |202220.0+625303 |M | 12.4 | 15.2 | |V | | | | | |68015 USNO | +340147 |DY Dra |171755.9+574000 |RR | 17.4 | 18.5 | |B | | | | | |69134 69134| +340148 |DZ Dra |173629.8+682920 |SRB: | 7.6 |( 0.03 )| |V | | | | | |69136 BD | +340149 |EE Dra |185852.6+693153 |ACV | 5.84 |( 0.05 )| |U | | | | | |69128 BD | +340150 |EF Dra |180530.4+694516 |EW/KW | 10.48 |( 0.34 )| |V | | | | | |70055 70055| +340151 |EG Dra |185804.9+540857 |M: | 14.8 | 16.5 | |p | | | | | |70039 70040| +340152 |EH Dra |190453.5+523925 |SRB: | 13.6 | 14.1 | |p | | | | | |70039 70040| +340153 |EI Dra |143046.8+604634 |DSCT | 8.50 |( 0.11 )| |V | | | | | |71127 BD | +340154 |EK Dra |143900.2+641730 |BY | 8.15 |( 0.09 )| |B | | | | | |71130 BD | +340155 |EL Dra |152159.9+611241 |RRAB | 15.2 | 16.0 | |p | | | | | |71131 71131| +340156 |EM Dra |170658.7+552732 |RR(B) | 16.0 | 16.8 | |B | | | | | |71147 71147| +340157 |EN Dra |173826.9+570649 |RR(B) | 14.6 | 15.3 | |B | | | | | |71147 71147| +340158 |EO Dra |182054.9+503143 |M: | 10.8 | 13. | |p | | | | | |71164 71165| +340159 |EP Dra |190706.0+690842 |E+XM | 17.6 |< 20.5 | |V | | | | | |71180 71180| +340160 |EQ Dra |192516.0+571348 |SRB | 10.3 | 11.6 | |V | | | | | |71035 71183| +340161 |ER Dra |143142.8+601332 |DSCTC | 6.18 |( 0.03 )| |V | | | | | |72083 BD | +340162 |ES Dra |152531.8+620100 |NL | 13.9 | 16.3 | |p | | | | | |72084 72085| +340163 |ET Dra |175025.1+704537 |FKCOM | 11.52 | 11.83 | |U | | | | | |72086 BD | +340164 |EU Dra |151049.8+635226 |SRD: | 8.56 |( 0.20 )| |V | | | | | |73147 BD | +340165 |EV Dra |160147.5+512052 |RS | 8.63 |( 0.06 )| |V | | | | | |73005 BD | +340166 |EW Dra |161645.3+671523 |BY | 10.69 | 10.74 | |V | | | | | |73018 73148| +340167 |EX Dra |180414.1+675412 |UG+E | 13.5 | 17.2 | |B | | | | | |73149 GSC | +340168 |EY Dra |181616.8+541022 |BY | 11.83 |( 0.09 )| |V | | | | | |73152 73153| +340169 |EZ Dra |201001.2+665712 |M | 11.2 | 14.2 | |p | | | | | |73154 73154| +340170 |FF Dra |105133.4+751128 |LB | 8.67 | 8.90 | |Hp| | | | | |HIP HIP | +340171 |FG Dra |105727.6+742011 |LB | 7.41 | 7.68 | |Hp| | | | | |HIP HIP | +340172 |FH Dra |105935.0+752829 |SRB | 8.51 | 8.80 | |Hp| | | | | |HIP HIP | +340173 |FI Dra |114013.1+681323 |SRB | 8.30 | 8.52 | |Hp| | | | | |HIP HIP | +340174 |FK Dra |123011.7+635321 |EA | 9.30 | 9.79 | |Hp| | | | | |HIP HIP | +340175 |FL Dra |130204.2+681355 |LB | 9.84 | 10.13 | |Hp| | | | | |HIP HIP | +340176 |FM Dra |131951.0+651104 |SRB | 8.76 | 8.99 | |Hp| | | | | |HIP HIP | +340177 |FN Dra |134643.3+633151 |LB | 8.13 | 8.36 | |Hp| | | | | |HIP HIP | +340178 |FO Dra |143125.7+560929 |LB: | 9.75 | 9.91 | |Hp| | | | | |HIP HIP | +340179 |FP Dra |143432.3+645758 |LB: | 8.55 | 8.66 | |Hp| | | | | |HIP HIP | +340180 |FQ Dra |144601.6+643733 |ACV: | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +340181 |FR Dra |145804.7+635122 |LB: | 8.71 | 8.83 | |Hp| | | | | |HIP HIP | +340182 |FS Dra |151847.5+593117 |LB | 8.20 | 8.33 | |Hp| | | | | |HIP HIP | +340183 |FT Dra |153149.0+542817 |LB | 8.35 | 8.48 | |Hp| | | | | |HIP HIP | +340184 |FU Dra |153445.2+621644 |EW | 10.58 | 11.10 | |Hp| | | | | |HIP HIP | +340185 |FV Dra |153854.6+572742 |LB | 7.33 | 7.48 | |Hp| | | | | |HIP HIP | +340186 |FW Dra |154242.0+670400 |LB | 7.84 | 7.98 | |Hp| | | | | |HIP HIP | +340187 |FX Dra |154347.6+580127 |EB | 9.29 | 9.59 | |Hp| | | | | |HIP HIP | +340188 |FY Dra |154840.6+612631 |LB | 8.14 | 8.41 | |Hp| | | | | |HIP HIP | +340189 |FZ Dra |155537.7+575331 |LB: | 10.49 | 10.68 | |Hp| | | | | |HIP HIP | +340190 |GG Dra |163155.6+525927 |EB | 8.77 | 8.89 | |Hp| | | | | |HIP HIP | +340191 |GH Dra |163535.9+615049 |LB: | 10.04 | 10.19 | |Hp| | | | | |HIP HIP | +340192 |GI Dra |163607.2+585131 |SRD: | 8.10 | 8.15 | |Hp| | | | | |HIP HIP | +340193 |GK Dra |164541.2+681531 |EA | 8.78 | 9.20 | |Hp| | | | | |HIP HIP | +340194 |GL Dra |165854.1+544343 |SRB | 8.60 | 8.84 | |Hp| | | | | |HIP HIP | +340195 |GM Dra |172021.9+575827 |EW | 8.79 | 9.02 | |Hp| | | | | |HIP HIP | +340196 |GN Dra |172101.3+662722 |SRB | 9.06 | 10.07 | |Hp| | | | | |HIP HIP | +340197 |GO Dra |172349.0+634545 |LB | 9.14 | 9.45 | |Hp| | | | | |HIP HIP | +340198 |GP Dra |172315.5+715212 |LB | 6.83 | 7.05 | |Hp| | | | | |HIP HIP | +340199 |GQ Dra |172529.4+512935 |EB | 8.98 | 9.42 | |Hp| | | | | |HIP HIP | +340200 |GR Dra |172839.4+590207 |L | 8.30 | 8.43 | |Hp| | | | | |HIP HIP | +340201 |GS Dra |173057.1+650637 |LB: | 9.78 | 9.91 | |Hp| | | | | |HIP HIP | +340202 |GT Dra |173950.8+725753 |IA: | 8.13 | 8.26 | |Hp| | | | | |HIP HIP | +340203 |GU Dra |174920.8+530054 |LB: | 10.13 | 10.35 | |Hp| | | | | |HIP HIP | +340204 |GV Dra |175327.5+522308 |EA | 8.59 | 8.70 | |Hp| | | | | |HIP HIP | +340205 |GW Dra |175304.1+772302 |DSCTC | 9.31 | 9.38 | |Hp| | | | | |HIP HIP | +340206 |GX Dra |180306.3+504148 |SRD | 8.32 | 8.57 | |Hp| | | | | |HIP HIP | +340207 |GY Dra |181052.6+571530 |LB | 9.02 | 9.26 | |Hp| | | | | |HIP HIP | +340208 |GZ Dra |181241.0+544607 |E: | 9.52 | 9.65 | |Hp| | | | | |HIP HIP | +340209 |HH Dra |182734.1+582846 |LB | 8.80 | 9.13 | |Hp| | | | | |HIP HIP | +340210 |HI Dra |183324.4+584223 |RRC | 9.02 | 9.20 | |Hp| | | | | |HIP HIP | +340211 |HK Dra |183430.9+514656 |LB | 6.56 | 6.77 | |Hp| | | | | |HIP HIP | +340212 |HL Dra |183426.3+574807 |EB | 7.35 | 7.66 | |Hp| | | | | |HIP HIP | +340213 |HM Dra |183743.7+594531 |SRD | 8.17 | 8.30 | |Hp| | | | | |HIP HIP | +340214 |HN Dra |184453.1+570517 |RR: | 8.16 | 8.23 | |Hp| | | | | |HIP HIP | +340215 |HO Dra |185122.1+623916 |LB | 8.37 | 8.54 | |Hp| | | | | |HIP HIP | +340216 |HP Dra |185453.5+511830 |EA | 8.06 | 8.36 | |Hp| | | | | |HIP HIP | +340217 |HQ Dra |185534.1+672250 |LB: | 9.15 | 9.28 | |Hp| | | | | |HIP HIP | +340218 |HR Dra |185826.4+530536 |LB | 9.25 | 9.51 | |Hp| | | | | |HIP HIP | +340219 |HS Dra |191222.6+735333 |LB | 7.24 | 7.37 | |Hp| | | | | |HIP HIP | +340220 |HT Dra |191841.0+635518 |LB: | 8.92 | 9.05 | |Hp| | | | | |HIP HIP | +340221 |HU Dra |192334.2+690053 |SRB | 6.96 | 7.08 | |Hp| | | | | |HIP HIP | +340222 |HV Dra |191938.0+814746 |SRD+E: | 7.79 | 8.14 | |Hp| | | | | |HIP HIP | +340223 |HW Dra |193524.2+694820 |LB | 6.81 | 6.98 | |Hp| | | | | |HIP HIP | +340224 |HX Dra |193616.1+754448 |LB: | 9.56 | 9.76 | |Hp| | | | | |HIP HIP | +340225 |HY Dra |193742.2+803055 |SRB | 8.38 | 8.53 | |Hp| | | | | |HIP HIP | +340226 |HZ Dra |194602.5+695509 |EA | 8.16 | 8.32 | |Hp| | | | | |HIP HIP | +340227 |II Dra |195103.9+783727 |SRD: | 7.72 | 7.79 | |Hp| | | | | |HIP HIP | +340228 |IK Dra |195608.9+762701 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +340229 |IL Dra |195821.6+664726 |LB: | 8.48 | 8.60 | |Hp| | | | | |HIP HIP | +340230 |IM Dra |200517.4+732727 |SRB | 8.08 | 8.18 | |Hp| | | | | |HIP HIP | +340231 |IN Dra |200627.7+703935 |DSCTC | 8.05 | 8.09 | |Hp| | | | | |HIP HIP | +340232 |IO Dra |201318.5+710630 |DSCTC: | 7.86 | 7.92 | |Hp| | | | | |HIP HIP | +340233 |IP Dra |201541.6+655113 |EB | 7.84 | 7.90 | |Hp| | | | | |HIP HIP | +340234 |IQ Dra |203943.3+803000 |SRB: | 8.47 | 8.95 | |Hp| | | | | |HIP HIP | +340235 |IR Dra |125528.6+652619 |GDOR | 5.26 | 5.34 | |Hp| | | | | |75029 BD | +340236 |IS Dra |134026.6+675604 |RRAB | 13.1 |( 1.31 )| |V | | | | | |75131 75132| +340237 |IT Dra |142858.0+602311 |DSCTC | 7.53 |( 0.03 b )| |V | | | | | |75133 BD | +340238 |IU Dra |150549.9+640250 |BY | 8.42 |( 0.04 )| |V | | | | | |75134 BD | +340239 |IV Dra |153623.3+531911 |EW | 13.54 |( 0.50 R )| |V | | | | | |75135 75135| +340240 |IW Dra |164615.1+531154 |M | 11.1 |< 14.9 | |p | | | | | |75002 GSC | +340241 |IX Dra |181231.6+670447 |UG: | 14.7 | 18.8 | |B | | | | | |75136 75136| +340242 |IY Dra |182317.8+642038 |M: | 11.8 |< 15.0 | |p | | | | | |75002 GSC | +340243 |IZ Dra |184951.0+621725 |M | 11.1 | 14.9 | |V | | | | | |75087 75087| +340244 |KK Dra |190756.6+592352 |EA | 11.8 | 14.8 | |V | | | | | |75087 75087| +340245 |KL Dra |192438.2+594147 |UG | 16.8 |< 21. | |B | | | | | |75138 | +340246 |KM Dra |192636.5+585241 |M | 12.8 |< 16.0 | |V | | | | | |75087 75087| +340247 |KN Dra |193051.5+592003 |M | 10.4 | 14.5 | |V | | | | | |75087 75087| +340248 |KO Dra |193503.1+621947 |IA: | 13.5 | 14.7 | |V | | | | | |75087 75087| +340249 |KP Dra |200523.5+632457 |E | 12.0 | 14.4 | |V | | | | | |75087 75087| +340250 |KQ Dra |201342.8+655629 |M | 11.5 |< 15.5 | |V | | | | | |75087 75087| +340251 |KR Dra |201559.0+634632 |SRB | 13.0 | 15.8 | |V | | | | | |75087 75087| +340252 |KS Dra |201845.0+623245 |M | 11.8 |< 16.2 | |V | | | | | |75087 75087| +340253 |KT Dra |202319.6+652819 |M | 11.8 | 15.8 | |V | | | | | |75087 75087| +340254 |KU Dra |130153.5+655408 |RR: | 11.8 | 13.3 | |V | | | | | |76012 GSC | +340255 |KV Dra |145038.3+640329 |UGSU | 11.8 | 17.1 | |V | | | | | |76127 USNO | +340256 |KW Dra |153119.7+524433 |SR: | 10.9 | 11.9 | |V | | | | | |76012 GSC | +340257 |KX Dra |154144.8+645356 |ZZA | 15.7 |( 0.32 )| |B | | | | | |76131 76095| +340258 |KY Dra |185815.7+634858 |SR: | 12.1 | 12.8 | |V | | | | | |76012 GSC | +340259 |KZ Dra |201119.9+683331 |EA | 11.2 | 12.4 | |V | | | | | |76012 GSC | +340260 |LL Dra |122937.4+683808 |SR | 9.44 | 9.51 | |V | | | | | |77053 DM | +340261 |LM Dra |161926.9+560601 |RPHS | 13.52 |( 0.01 * )| |V | | | | | |77120 77121| +340262 |LN Dra |174555.4+523805 |EB | 12.0 | 12.6 | |V | | | | | |77100 GSC | +340263 |LO Dra |180228.1+504628 |IA | 13.5 | 14.4 | |V | | | | | |77143 77144| +340264 |LP Dra |180955.5+694050 |RS | 8.50 | 8.58 | |V | | | | | |77119 DM | +340265 |LQ Dra |181941.8+501038 |EA | 11.6 |< 13.0 | |V | | | | | |77100 GSC | +340266 |LR Dra |182148.4+512420 |LB | 10.8 | 12.6 | |V | | | | | |77143 77144| +340267 |LS Dra |182452.4+574724 |RPHS | 15.6 |( 0.01 )| |B | | | | | |77009 USNO | +340268 |LT Dra |183741.1+515646 |RCB | 7.48 |< 12.6 | |V | | | | | |77159 DM | +340269 |LU Dra |185901.9+522805 |EA/RS | 12.2 | 12.6 | |V | | | | | |77100 GSC | +340270 |LV Dra |190013.7+503201 |ACV | 5.31 | 5.34 | |Hp| | | | | |77162 DM | +340271 |LW Dra |190626.3+682902 |SXPHE: | 10.9 |( 0.30 )| |V | | | | | |77165 77226| +340272 |LX Dra |190652.7+682626 |SR | 11.02 | 11.36 | |V | | | | | |77166 GSC | +340273 |LY Dra |191351.5+660244 |SRS | 8.88 | 8.93 | |V | | | | | |77053 DM | +340274 |LZ Dra |193433.8+740306 |EW/KW | 12.4 |( 0.5 )| |V | | | | | |77173 77227| +340275 |MM Dra |195944.4+651006 |EW | 14.45 | 14.93 | |V | | | | | |77181 77181| +340276 |MN Dra |202338.2+643627 |UGSU | 15.7 | 19.4 | |R | | | | | |77193 77193| +340277 |MO Dra |202357.6+630233 |EA | 12.93 | 14.45 | |V | | | | | |77194 77194| +340278 |MP Dra |135617.8+665641 |BY | 8.45 |( 0.03 )| |V | | | 9.52 | |K0V |78018 DM | +340279 |MQ Dra |155331.3+551615 |AM | 17.7 | 18.8 | |V | | | 0.18297 | |pec(e)+M5V |78168 USNO | +340280 |MR Dra |170425.6+524907 |DSCTC | 8.21 |( 0.01 )| |V | | | 0.032 | |A5 |78200 DM | +340281 |MS Dra |173955.7+650006 |BY | 8.39 |( 0.03 )| |V | | | 18.31 | |K0V |78018 DM | +340282 |MT Dra |184658.8+553828 |XM | 16. | 20. | |R | | | | | |78251 78251| +340283 |MU Dra *|185835.3+500930 |EW | 11.51 | 12.09 | 12.08 |* |52146.5052 | | 0.349668 | | |78264 GSC | +340284 |MV Dra |191211.4+574019 |BY | 7.04 |( 0.02 )| |V | | | 5.49 | |G8V |78018 DM | +340285 |MW Dra |095017.1+745816 |EA | 9.14 | 9.7 : | 9.20 : |* |51284.615 | | 3.28935 |14 |G |79009 DM | +340286 |MX Dra |121215.1+685300 |RS | 10.36 | 10.77 | |* | | | 6.395 | |G7 |79100 DM | +340287 |MY Dra |122743.1+675805 |EA | 11.58 | 12.22 | 11.63 |* |51339.7026 | | 1.71325 |15 |A2 |79093 79094| +340288 |MZ Dra |122824.7+741407 |EA | 11.86 | 12.10 | 11.9 |* |51620.769 | | 0.84034 |18 |F2 |79004 GSC | +340289 |NN Dra |130403.0+651524 |EW | 12.34 | 12.98 | 12.92 |* |51285.669 | | 0.382872 | | |79190 79190| +340290 |NO Dra *|151144.4+633719 |EA | 8.02 | 8.14 | 8.13 : |V |48953.470 | | 5.47798 |04 |A2V |79004 DM | +340291 |NP Dra |173516.3+550012 |EA | 9.04 | 9.15 | 9.15 |* |48604.780 | | 3.10886 |08 |A0 |79006 DM | +340292 |NQ Dra |184413.2+574101 |RRAB | 13.3 | 14.1 | |* |51402.853 | | 0.52919 |15 | |79025 79017| +340293 |NR Dra |194953.9+681020 |RRAB | 13.9 | 14.9 | |* |51475.60 | | 0.40882 | | |79169 79079| +340294 |NS Dra *|094254.7+785655 |EA | 11.27 | 11.55 | 11.43 |V |51462.0 | | 50.517 |02 : | |80023 GSC | NL80_2 +340295 |NT Dra *|094342.9+772650 |EA | 12.98 | 13.55 | 13.09 |* |51616.79 | | 1.63993 |13 | |80013 GSC | NL80_2 +340296 |NU Dra *|101536.6+764154 |EA | 11.00 | 11.26 | 11.06 |* |51567.77 | | 6.1513 |04 | |80011 GSC | NL80_2 +340297 |NV Dra *|104101.5+744058 |EA | 12.85 | 13.4 : | 13.3 : |* |51348.757 | | 1.05715 |10 | |80013 GSC | NL80_2 +340298 |NW Dra *|113205.9+695742 |EA | 12.91 | 13.56 | 13.45 |* |51378.194 | | 0.728091 |13 | |80013 GSC | NL80_2 +340299 |NX Dra *|113407.9+751643 |EW | 12.62 | 12.83 | 12.80 |* |54533.584 | | 0.275820 | | |80357 80357| NL80_2 +340300 |NY Dra |113510.4+750547 |SR | 11.1 | 11.5 | |* | | | 45.3 | | |80359 80359| NL80_2 +340301 |NZ Dra |113850.4+753143 |RRAB | 13.17 | 14.28 | |* |54510.577 | | 0.529831 |14 | |80357 80357| NL80_2 +340302 |OO Dra *|114001.4+750922 |EA+DSCTC | 11.4 | 11.8 | 11.55 |* |51403.832 | | 1.2383832 |14 |A3V-IV |80361 80359| NL80_2 +340303 |OP Dra *|114042.7+753615 |EB | 14.71 | 15.09 | 15.00 |* |54504.524 | | 0.323163 | | |80357 80357| NL80_2 +340304 |OQ Dra *|114925.9+723401 |EW | 13.65 | 14.2 | 14.1 |* |51414.113 | | 0.33967 | | |80102 80102| NL80_2 +340305 |OR Dra *|120037.5+691108 |DSCT | 7.40 | 7.44 | |V | | | 0.1128290 | |F2 |80363 HIP | NL80_2 +340306 |OS Dra |121230.4+653023 |RRAB | 13.01 | 13.52 | |* |51557.73 | | 0.34905 |30 | |80026 GSC | NL80_2 +340307 |OT Dra |122504.5+663840 |RRAB | 13.5 | 14.6 | |* |51354.69 | | 0.54124 |15 |A7 |80001 GSC | NL80_2 +340308 |OU Dra |124719.5+690554 |RRAB | 13.65 | 14.35 | |* |51616.78 | | 0.57523 |20 | |80026 GSC | NL80_2 +340309 |OV Dra *|125023.9+665526 |EA | 19.0 | 20.7 | |* |53407.55966 | | 0.0587357 |06 |pec(e) |80030 USNO | NL80_2 +340310 |OW Dra |130331.1+710644 |RRC | 10.40 | 10.73 | |* |51280.64 | | 0.33297 |45 | |80026 DM | NL80_2 +340311 |OX Dra *|130727.5+691019 |EA | 12.28 | 13.25 : | 12.50 |* |51330.668 | | 2.34906 |10 | |80011 GSC | NL80_2 +340312 |OY Dra |130841.8+654000 |RRC | 12.39 | 12.80 | |* |51390.73 | | 0.31299 |40 | |80026 GSC | NL80_2 +340313 |OZ Dra *|132723.4+652854 |EA+NL | 18.0 | 20.0 | |B |52487.7164 | | 0.136647 |10 |pec(e) |80382 80382| NL80_2 +340314 |PP Dra |134017.5+650048 |RRAB | 14.38 | 15.71 | |* |51318.67 | | 0.46337 | | |80026 USNO | NL80_2 +340315 |PQ Dra *|143033.9+553314 |EB | 13.9 | 14.5 | 14.05 |* |51393.779 | | 0.320947 | | |80085 80085| NL80_2 +340316 |PR Dra *|143510.6+593035 |EW | 13.3 | 13.6 | 13.55 |* |51341.649 | | 0.37476 | | |80085 80085| NL80_2 +340317 |PS Dra *|144803.4+624442 |EW | 13.05 | 13.35 | 13.3 |* |51414.584 | | 0.43747 | | |80085 80085| NL80_2 +340318 |PT Dra *|145909.3+550848 |EW | 14.3 | 14.9 | 14.9 : |* |51400.953 | | 0.27077 | | |80102 80102| NL80_2 +340319 |PU Dra *|150038.6+574631 |EA | 12.05 | 14.4 | 12.25 |* |51420.625 | | 1.54565 |10 | |80104 80104| NL80_2 +340320 |PV Dra *|150627.7+601821 |EA | 13.3 | 13.7 | 13.7 |* |51469.26 | | 1.27745 |11 | |80104 80104| NL80_2 +340321 |PW Dra |150728.6+580647 |SRD | 10.67 | 10.90 | |* |51401. | | 23.1 | | |80070 80070| NL80_2 +340322 |PX Dra *|150750.2+630702 |EA | 9.82 | 6.95 : | 6.88 |V |48832.12 | | 2.44405 |12 |F4III |80015 HIP | NL80_2 +340323 |PY Dra |151149.3+583701 |RRC | 13.2 | 13.6 | |* |51409.773 | | 0.259875 |35 | |80168 80168| NL80_2 +340324 |PZ Dra *|151212.5+564510 |EB | 12.7 | 13.05 | 12.8 |* |51401.003 | | 0.76433 | | |80101 80101| NL80_2 +340325 |QQ Dra |151646.7+614456 |RRAB | 13.5 | 14.0 | |* |51410.06 | | 0.6637 |20 : | |80168 80168| NL80_2 +340326 |QR Dra |151904.0+623048 |SRA | 10.3 | 11.3 | |* |51344. | | 160. | |M |80411 80411| NL80_2 +340327 |QS Dra *|152134.7+612923 |DSCT | 13.0 | 13.45 | |* | | | 0.0944226 | | |80103 80103| NL80_2 +340328 |QT Dra |152415.1+530753 |RS | 12.95 | 13.2 | |* | | | 7.29 | | |80181 80181| NL80_2 +340329 |QU Dra *|152523.4+564549 |EW | 14.1 | 14.8 | 14.6 |* |51408.415 | | 0.276917 | | |80101 80101| NL80_2 +340330 |QV Dra |152611.7+542259 |RRC | 12.7 | 13.1 | |* |51401.662 | | 0.25400 |35 | |80168 80168| NL80_2 +340331 |QW Dra |152836.1+644245 |RRAB | 14.02 | 14.88 | |* |51327.73 | | 0.60489 | | |80026 GSC | NL80_2 +340332 |QX Dra |153604.5+582345 |RRAB | 13.4 | 14.0 | |* |51403.515 | | 0.54222 |15 : | |80168 80168| NL80_2 +340333 |QY Dra *|153622.6+575054 |BY: | 14.67 | 14.88 | |V | | | 1.51765 : | | |80416 80416| NL80_2 +340334 |QZ Dra |153943.4+565549 |SR | 11.3 | 11.65 | |* | | | 45. : | | |80070 80070| NL80_2 +340335 |V0335 Dra |154040.7+604824 |RRAB | 13.5 | 14.2 | |* |51409.653 | | 0.63114 |15 | |80205 80205| NL80_2 +340336 |V0336 Dra |154510.3+562158 |RRC | 13.5 | 14.0 | |* |51399.015 | | 0.32712 |32 | |80168 80168| NL80_2 +340337 |V0337 Dra |154718.5+631100 |BY | 11.33 | 11.62 | |* | | | 7.40 | |K5V |80417 80417| NL80_2 +340338 |V0338 Dra *|154911.1+603803 |EW | 13.3 | 13.9 | 13.8 |* |51328.988 | | 0.23515 | | |80101 80101| NL80_2 +340339 |V0339 Dra *|154957.1+552142 |EW | 13.4 | 14.0 | 13.9 |* |51385.88 | | 0.4574 | | |80101 80101| NL80_2 +340340 |V0340 Dra |155041.5+622650 |SR | 10.01 | 10.43 | |* | | | 110. | | |80411 80411| NL80_2 +340341 |V0341 Dra *|155257.7+684330 |EA | 10.10 | 10.43 | 10.24 |* |51414.682 | | 1.65042 |12 |F8 |80011 DM | NL80_2 +340342 |V0342 Dra *|155302.4+550432 |EW | 12.65 | 13.05 | 13.00 |* |51391.780 | | 0.39221 | | |80101 80101| NL80_2 +340343 |V0343 Dra *|155311.0+540907 |EA | 12.4 | 13.05 | 12.6 |* |51389.09 | | 3.772 |10 : | |80104 80104| NL80_2 +340344 |V0344 Dra *|155709.1+581001 |EW | 13.7 | 14.2 | 14.0 |* |51375.700 | | 0.3329 | | |80102 80102| NL80_2 +340345 |V0345 Dra |160048.0+511649 |EW | 13.2 | 13.45 | 13.4 |* |51389.933 | | 0.29190 | | |80101 80101| NL80_3 +340346 |V0346 Dra |160821.2+622955 |RRAB | 13.80 | 14.72 | |* |51318.73 | | 0.53451 | | |80026 GSC | NL80_3 +340347 |V0347 Dra |160832.6+631839 |EA/RS | 12.4 | 12.7 | |* |51465.614 | | 0.507280 |09 | |80417 80417| NL80_3 +340348 |V0348 Dra |161033.7+514401 |EW | 11.1 | 11.3 | 11.3 |* |51404.831 | | 0.43551 | | |80102 80102| NL80_3 +340349 |V0349 Dra |161322.0+515523 |EW | 11.3 | 11.7 | 11.7 |* |51400.740 | | 0.38987 | | |80101 80101| NL80_3 +340350 |V0350 Dra |161736.6+561420 |DSCTC | 10.08 |( 0.05 )| |B | | | 0.063656 | |A0 |80441 DM | NL80_3 +340351 |V0351 Dra |161801.1+511152 |RRAB | 13.4 | 14.0 | |* |51394.60 | | 0.60230 |15 | |80168 80168| NL80_3 +340352 |V0352 Dra |162559.2+651413 |RRAB | 14.05 | 15.06 | |* |51328.73 | | 0.62220 | | |80026 GSC | NL80_3 +340353 |V0353 Dra |162749.1+585023 |EB | 11.25 | 11.63 | 11.50 |* |51358.740 | | 0.80272 | | |80033 80033| NL80_3 +340354 |V0354 Dra *|164057.2+534109 |* | 15.06 |( 0.01 )| |V | | | 0.080300 | |DC7 |80452 GSC | NL80_3 +340355 |V0355 Dra |165459.7+544231 |RRAB | 13.93 | 14.88 | |* |51328.73 | | 0.63979 | | |80026 GSC | NL80_3 +340356 |V0356 Dra |165536.9+522244 |DSCT | 13.36 | 13.9 | |* | | | 0.16132 | | |80371 GSC | NL80_3 +340357 |V0357 Dra |165557.1+681200 |EW | 11.55 | 12.15 | 12.12 |* |54942.3613 | | 0.619276 | | |80001 GSC | NL80_3 +340358 |V0358 Dra |165701.9+663511 |RRAB | 14.01 | 14.92 | |* |51415.82 | | 0.56172 | | |80026 GSC | NL80_3 +340359 |V0359 Dra |170243.9+555543 |RRAB | 13.73 | 14.58 | |* |54057.57 | | 0.571971 |19 | |80001 GSC | NL80_3 +340360 |V0360 Dra |170334.0+572959 |ELL: | 8.18 | 8.23 | |Hp| | | 0.51081 | |B9 |80112 HIP | NL80_3 +340361 |V0361 Dra |170718.3+643933 |UV+BY | 16.8 | 19.5 | |r | | | 0.1508 | |M9V |80387 2MASS| NL80_3 +340362 |V0362 Dra |171112.1+683324 |EW | 12.11 | 12.89 | 12.75 |* |51318.723 | | 0.3472223 | | |80042 GSC | NL80_3 +340363 |V0363 Dra *|171320.0+690755 |RR(B) | 12.75 | 13.30 | |* |51332.73 | | 0.54080 | | |80026 GSC | NL80_3 +340364 |V0364 Dra |171520.2+525439 |RRAB | 13.9 | 15.0 | |V |54208.90 | | 0.4770412 |15 | |80001 GSC | NL80_3 +340365 |V0365 Dra |171648.3+544615 |EW | 11.82 | 12.03 | 12.01 |* |51358.744 | | 0.35396 | | |80033 80033| NL80_3 +340366 |V0366 Dra *|171722.0+580559 |RPHS | 16.91 |( 0.05 )| |r | | | 0.0016632 | |sdO |80463 80463| NL80_3 +340367 |V0367 Dra |171821.9+511732 |RRAB | 14.3 | 15.4 | |* |51388.675 | | 0.60624 |10 | |80205 80205| NL80_3 +340368 |V0368 Dra *|171906.2+574121 |E | 19.64 |( 0.27 )| |V | | | 0.2435 | | |80464 80464| NL80_3 +340369 |V0369 Dra |172113.6+510950 |EW | 13.4 | 13.8 | 13.75 |* |51398.743 | | 0.40095 | | |80102 80102| NL80_3 +340370 |V0370 Dra |172158.3+574922 |BY | 11.11 |( 0.27 *)| |V | | | 6.4272 | | |80021 GSC | NL80_3 +340371 |V0371 Dra |172524.3+504212 |BY | 14.65 |( 0.38 *)| |V | | | 0.5137 | | |80021 GSC | NL80_3 +340372 |V0372 Dra *|172540.8+591531 |EB/RS | 10.39 | 11.09 | 10.70 |* |51403.845 | | 0.533529 | |F3IV |80042 DM | NL80_3 +340373 |V0373 Dra |172623.0+535033 |EW | 12.9 | 13.45 | 13.34 |* |52854.5659 | | 0.316904 | | |80465 GSC | NL80_3 +340374 |V0374 Dra |172720.3+562230 |EW | 9.93 | 10.15 | 10.15 |* |51484.611 | | 0.40346 | |F8 |80033 80033| NL80_3 +340375 |V0375 Dra |173223.8+514047 |RRAB | 12.6 | 13.6 | |* |51408.805 | | 0.4376 |20 : | |80205 80205| NL80_3 +340376 |V0376 Dra |173500.1+685925 |EA | 12.70 | 14.4 | 13.0 : |* |51332.748 | | 1.21019 |10 | |80011 GSC | NL80_3 +340377 |V0377 Dra |173731.6+652025 |EW | 13.17 | 13.64 | 13.60 |V |53579.8599 | | 0.3526 | | |80472 80472| NL80_3 +340378 |V0378 Dra |174126.8+715958 |RRAB | 13.96 | 14.87 | |* |51482.57 | | 0.57614 | | |80026 USNO | NL80_3 +340379 |V0379 Dra |174212.4+633402 |RRC | 13.36 | 14.01 | |* |51276.79 | | 0.35762 |30 | |80026 GSC | NL80_3 +340380 |V0380 Dra |174524.5+691823 |EA | 12.28 | 13.33 | 12.8 |V |53579.743 | | 0.4937 |20 | |80481 80481| NL80_3 +340381 |V0381 Dra *|174630.5+531158 |EA+DSCTC | 10.6 | 11.1 | 10.7 |R |54620.151 | | 2.71066 |12 |A7IV-V |80482 80482| NL80_3 +340382 |V0382 Dra |174719.6+513319 |RS | 14.2 | 14.7 | |* | | | 4.215 | | |80115 80115| NL80_3 +340383 |V0383 Dra |174746.9+521341 |BY | 11.42 |( 0.09 *)| |V | | | 2.9532 | | |80021 GSC | NL80_3 +340384 |V0384 Dra |175201.4+535614 |RRAB | 12.84 | 13.47 | |* |51414.68 | | 0.54557 | | |80026 GSC | NL80_3 +340385 |V0385 Dra |175253.5+673720 |EA | 12.57 | 13.15 | 12.8 |* |51373.71 | | 10.0799 | | |80011 GSC | NL80_3 +340386 |V0386 Dra *|175304.3+512920 |EW | 13.40 | 13.70 | 13.66 |* |53326.3302 | | 0.2389133 | | |80172 GSC | NL80_3 +340387 |V0387 Dra |175412.9+510122 |RRAB | 12.17 | 12.54 | |* |51611.89 | | 0.54587 | | |80026 GSC | NL80_3 +340388 |V0388 Dra *|175609.6+712640 |EB | 11.77 | 12.12 | 12.07 |* |51338.851 | | 0.457033 | | |80042 GSC | NL80_3 +340389 |V0389 Dra |175734.1+584414 |BY | 11.96 |( 0.15 *)| |V | | | 3.2408 | | |80021 GSC | NL80_3 +340390 |V0390 Dra |175758.9+550608 |BY | 11.20 |( 0.11 *)| |V | | | 0.6374 | | |80021 GSC | NL80_3 +340391 |V0391 Dra |175910.4+584300 |EA/RS | 10.90 | 11.20 | |* |51310.6936 | | 1.2314 |09 | |80021 GSC | NL80_3 +340392 |V0392 Dra |175946.3+774146 |RRAB | 13.51 | 14.28 | |* |51318.66 | | 0.54619 |14 | |80026 GSC | NL80_3 +340393 |V0393 Dra |180029.4+510009 |BY | 10.04 |( 0.04 *)| |V | | | 1.1913 | |F8 |80021 DM | NL80_3 +340394 |V0394 Dra |180152.5+600643 |RRAB | 11.84 | 12.53 | |V |53554.7307 | | 0.5785 |16 | |80492 80492| NL80_3 +340395 |V0395 Dra |180239.5+624308 |DSCT | 12.68 | 13.17 | |V | | | 0.1969 | | |80492 80492| NL80_3 +340396 |V0396 Dra |180520.1+653024 |LB | 12.9 | 13.5 | |* | | | | | |80062 GSC | NL80_3 +340397 |V0397 Dra |180619.1+654137 |EW | 12.45 | 12.9 | 12.8 |V |51492.642 | | 0.7918 | | |80492 80492| NL80_3 +340398 |V0398 Dra |180711.0+531545 |RRAB | 12.68 | 13.65 | |* |55365.89 | | 0.6341858 |15 | |80001 GSC | NL80_3 +340399 |V0399 Dra |181212.7+684212 |EA | 12.97 | 13.6 | 13.1 |* |51421.790 | | 1.11377 |10 | |80011 GSC | NL80_3 +340400 |V0400 Dra |181657.8+692646 |EW | 12.40 | 12.88 | 12.88 |* |51627.82 | | 0.41938 | | |80001 80492| NL80_3 +340401 |V0401 Dra |181725.1+482202 |BY | 10.91 |( 0.04 *)| |V | | | 16.2578 | |M2V |80021 GSC | NL80_3 +340402 |V0402 Dra |182113.9+651510 |EW | 10.93 | 11.20 | 11.17 |* |51370.860 | | 1.38061 | | |80011 GSC | NL80_3 +340403 |V0403 Dra |182352.1+572949 |EA | 12.80 | 14.60 | 13.15 |* |51455.665 | | 3.21956 |14 | |80033 80033| NL80_3 +340404 |V0404 Dra |183053.1+485849 |EW | 11.57 | 11.77 | 11.77 |* |51306.866 | | 0.347625 | | |80371 DM | NL80_3 +340405 |V0405 Dra |183113.4+524708 |EW | 11.54 | 11.88 | 11.87 |* |53600.3847 | | 0.413036 | | |80172 GSC | NL80_3 +340406 |V0406 Dra |183405.9+585557 |LB | 10.3 | 10.6 | |* | | | | | |80100 GSC | NL80_3 +340407 |V0407 Dra |183546.0+732529 |EA | 12.75 | 14.6 | 13.0 |* |51310.678 | | 1.20419 |12 | |80011 GSC | NL80_3 +340408 |V0408 Dra |183756.3+564945 |RRAB | 13.62 | 14.54 | |* |51475.61 | | 0.59435 | | |80026 GSC | NL80_3 +340409 |V0409 Dra |183938.0+580600 |RRAB | 13.95 | 14.87 | |* |51389.73 | | 0.52746 | | |80026 GSC | NL80_3 +340410 |V0410 Dra *|183956.3+510534 |BY | 8.90 | 9.03 | |Hp| | | 6.8528 | |G5 |80021 HIP | NL80_3 +340411 |V0411 Dra |184412.0+571241 |DSCTC | 8.70 |( 0.01 )| |V | | | 0.063319 | |A2 |80508 DM | NL80_3 +340412 |V0412 Dra |184633.1+485445 |BY | 11.80 |( 0.30 *)| |V | | | 5.0703 | | |80021 GSC | NL80_3 +340413 |V0413 Dra *|184729.6+492555 |EA | 7.19 | 7.27 | 7.22 |V |48261.16 | | 4.243 | |F5 |80015 HIP | NL80_3 +340414 |V0414 Dra *|185330.2+635504 |RRC: | 11.52 | 11.70 | |* |51470.62 | | 0.348087 |45 : | |80135 GSC | NL80_3 +340415 |V0415 Dra |185550.5+510008 |EW | 12.53 | 12.82 | 12.81 |* |53325.2793 | | 0.437414 | | |80172 GSC | NL80_3 +340416 |V0416 Dra *|185720.4+713119 |UG+E | 12.7 | 17.3 | |V | | | | | |80167 80167| NL80_3 +340417 |V0417 Dra |190058.8+484442 |RRAB | 11.83 | 12.26 | |* |51415.82 | | 0.61324 |25 | |80026 GSC | NL80_3 +340418 |V0418 Dra |190523.1+734626 |EA | 11.97 | 12.5 | 12.35 |* |52862.675 | | 7.35025 |03 | |80015 GSC | NL80_3 +340419 |V0419 Dra |190717.2+552215 |RRAB | 13.93 | 14.93 | |* |51450.67 | | 0.59924 | | |80026 GSC | NL80_3 +340420 |V0420 Dra |191809.3+653518 |RRC | 12.44 | 13.0 | |* |51360.01 | | 0.32963 |30 | |80026 GSC | NL80_3 +340421 |V0421 Dra |191931.5+815535 |EW | 12.16 | 12.54 | 12.52 |* |51310.829 | | 0.653555 | | |80013 GSC | NL80_3 +340422 |V0422 Dra |192136.5+565035 |EB | 11.87 | 12.16 | 12.05 |* |51352.867 | | 0.51245 | | |80033 80033| NL80_3 +340423 |V0423 Dra |192304.0+560805 |EA | 10.93 | 11.25 | 11.10 |* |51478.640 | | 1.21742 |15 | |80033 80033| NL80_3 +340424 |V0424 Dra |192509.4+753258 |RRC | 12.62 | 13.27 | |* |51325.81 | | 0.30031 |45 | |80026 GSC | NL80_3 +340425 |V0425 Dra *|194418.4+814732 |EA | 10.72 | 11.27 | 11.19 |* |51397.673 | | 9.33543 |03 : |F8 |80023 DM | NL80_3 +340426 |V0426 Dra |195110.0+712659 |RRAB | 13.72 | 14.50 | |* |51452.67 | | 0.50715 | | |80026 GSC | NL80_3 +340427 |V0427 Dra |195443.0+831551 |EW | 12.75 | 13.05 | 13.0 |* |51354.607 | | 0.420825 | | |80526 80526| NL80_3 +340428 |V0428 Dra |195528.6+651733 |LB | 10.6 | 11.0 | |* | | | | | |80100 GSC | NL80_3 +340429 |V0429 Dra |195932.2+613121 |RRAB | 14.6 | 15.6 | |* |54473.541 | | 0.5862 |13 | |80202 80202| NL80_3 +340430 |V0430 Dra |195954.5+613559 |EW | 15.2 | 16.0 | 15.9 |* |54471.5842 | | 0.4102 | | |80202 80202| NL80_3 +340431 |V0431 Dra |200039.0+710337 |RRAB | 13.45 | 14.05 | |* |51442.67 | | 0.44772 | | |80026 GSC | NL80_3 +340432 |V0432 Dra *|200128.4+611018 |EA | 12.24 | 12.84 | 12.84 |V |53278.3185 | | 11.628188 |03 | |80538 GSC | NL80_3 +340433 |V0433 Dra |200154.5+701230 |RRC | 13.35 | 13.8 | |* |51560.934 | | 0.32671 |33 | |80539 80539| NL80_3 +340434 |V0434 Dra |200414.3+742536 |RS | 12.0 | 12.7 | |* | | | 21.28 | |K |80001 GSC | NL80_3 +340435 |V0435 Dra |200446.8+682957 |EW | 12.32 | 12.64 | 12.64 |* |51359.896 | | 0.522205 | | |80542 80542| NL80_3 +340436 |V0436 Dra |200529.4+711021 |EW | 14.15 | 14.8 | 14.8 |* |51376.134 | | 0.430210 | | |80526 80526| NL80_3 +340437 |V0437 Dra |200646.2+631838 |EW | 13.75 | 14.4 : | 14.3 |* |51361.814 | | 0.316058 | | |80542 80542| NL80_3 +340438 |V0438 Dra |200704.6+751426 |EW | 11.44 | 11.75 | 11.65 |* |51458.006 | | 0.555168 | | |80526 80526| NL80_3 +340439 |V0439 Dra |200928.1+654543 |EW | 13.35 | 13.8 | 13.8 |* |51484.939 | | 0.678499 | | |80542 80542| NL80_3 +340440 |V0440 Dra |200932.7+695522 |LB | 10.4 | 11.0 | |* | | | | | |80100 GSC | NL80_3 +340441 |V0441 Dra *|201239.6+823821 |EA | 12.45 | 12.75 | 12.75 |* |51338.683 | | 2.90540 |05 | |80013 GSC | NL80_3 +340442 |V0442 Dra |201327.8+675226 |SRD | 11.8 | 12.05 | |* |51574.5 | | 75.2 | | |80539 80539| NL80_3 +340443 |V0443 Dra |201742.0+723157 |EB | 12.7 | 13.05 | 12.85 |* |51843.890 | | 3.0166 | | |80526 80526| NL80_3 +340444 |V0444 Dra |201853.8+701732 |EW | 13.55 | 14.2 | 14.2 |* |51459.651 | | 0.354497 | | |80526 80526| NL80_3 +340445 |V0445 Dra |202226.0+740433 |EW | 13.4 | 14.1 | 13.95 |* |51389.509 | | 0.321451 | | |80526 80526| NL80_3 +340446 |V0446 Dra |202932.1+831218 |RRC | 12.26 | 14.49 | |* |51322.84 | | 0.214752 |47 : | |80083 GSC | NL80_3 +340447 |V0447 Dra |203233.5+821522 |RRC | 11.77 | 12.10 | |* |51421.74 | | 0.32827 |38 | |80026 GSC | NL80_3 +340448 |V0448 Dra |203302.6+680653 |SR | 12.6 | 13.2 | |* | | | 68. | | |80001 USNO | NL80_3 +340449 |V0449 Dra |203402.6+813100 |EW | 12.23 | 12.45 | 12.42 |* |51442.711 | | 0.351332 | | |80526 80526| NL80_3 +349010 |kap Dra *|123328.9+694718 |GCAS | 3.82 | 4.01 | |V | | | | |B6IIIe |09013 BD | +349015 |omi Dra |185112.1+592318 |RS | 4.63 |( 0.10 )| |V | | | | | |69137 BD | +349021 |phi Dra *|182045.4+712016 |ACV | 4.22 |( 0.04 )| |V |42229.40 | | 1.71646 |60 |A0p(Si) |08824 BD | +350001 |R Equ |211311.5+124806 |M | 8.7 | 15.0 | |V |42921. | | 260.76 |44 |M3e-M4e |00001 00002| +350002 |S Equ *|205712.8+050449 |EA/SD | 8.0 | 10.08 | 8.11 |V |42596.74348 | | 3.4360969 |13 *|B9V+F9III-IV |08593 05373| +350003 |T Equ |211545.4+091610 |SRA | 10.2 | 11.9 | |p |25188. | | 147.5 |46 |M3 |00373 08953| +350004 |U Equ |205716.3+025845 | | 14.5 |< 15.5 | |p | | | | | |01469 GSC | +350005 |V Equ |211530.4+071514 |RRAB | 14.5 | 15.7 | |p |37198.385 | | 0.5250877 | | |08065 USNO | +350006 |W Equ *|211552.6+122319 |EA/DM | 11.8 | 12.4 | 12.4 |p |25070.400 | | 4.236855 |17 *|A7 |03836 00279| +350007 |X Equ |210012.1+091422 |RR | 13.6 | 15.0 | |p |36894.180 | | 0.4764435 | | |08065 06286| +350008 |Y Equ |210606.9+074948 |LB: | 11.6 | 12.9 | |p | | | | |M6 |01110 00294| +350009 |Z Equ *|210903.0+092303 |M | 11.8 | 16.0 | |p |35690. | | 211.6 | |M2IIIe |00001 00922| +350010 |RR Equ |210935.9+060726 |M | 10.8 | 15.7 | |p |43716. | | 271.3 | | |00001 00294| +350011 |RS Equ |211041.4+070121 |SRA | 14.0 | 16.3 | |p |27660. | | 260. : | | |01443 06286| +350012 |RT Equ *|211443.3+042937 |RRAB | 12.5 | 14.1 | |p |37872.416 | | 0.4447564 |24 : | |03113 06286| +350013 |RU Equ |211817.4+074538 |SRB: | 9.5 | 10. | |p | | | 65. | |M6 | 08953| +350014 |RV Equ |211453.6+085937 |SRB | 9.09 | 9.39 | |V | | | 80. : | |K0 |09121 08594| +350015 |RW Equ *|210610.3+102306 |RR | 13.1 | 13.7 | |p |24436.271 | | 0.3575315 | | |08065 04389| +350016 |RX Equ |211459.9+111017 |RRAB | 14.4 | 16.1 | |p |37554.39 | | 0.636274 |15 | |04390 04390| +350017 |RY Equ |211722.2+112840 |SRB | 14.2 | 15.2 | |p | | | 110. | | |04354 04354| +350018 |RZ Equ *|211752.9+095010 |EA/SD | 12.0 | 14.2 | 12.2 : |p |37161.373 | | 1.96143 |10 | |04354 04354| +350019 |SS Equ |211835.1+111429 |RRAB | 15.7 | 16.7 | |p |37231.25 | | 0.605369 |10 : | |04390 04390| +350020 |ST Equ |212025.1+103401 |RRAB | 15.1 | 16.7 | |p |37165.372 | | 0.4990 |15 : | |04390 04390| +350021 |SU Equ *|212536.9+094135 |EW/KE | 16.1 | 16.6 | 16.4 |p |37233.364 | | 0.70184 | | |06115 04354| +350022 |SV Equ *|205718.9+054852 |EW/KE | 9.25 |( 0.20 )|( 0.16 )|V |39382.427 | | 0.881 | |A0 |05425 BD | +350023 |SW Equ *|212147.3+114557 |EW/KE | 15.2 | 15.7 | 15.6 |p |37199.465 | | 0.83632 | | |06115 04354| +350024 |SX Equ |205917.2+083816 |LB: | 8.29 | 8.41 | |Hp| | | | | |HIP HIP | +350025 |SY Equ |212328.8+095555 |BCEP | 8.47 | 8.54 | |Hp| | | | | |HIP HIP | +350026 |SZ Equ |210422.4+102829 |SR | 12.1 | 12.6 | |* | | | | | |76169 GSC | +350027 |TT Equ |211021.1+103600 |SR | 12.33 | 12.84 | |* | | | | | |76169 UCAC2| +350028 |TU Equ |212349.3+062611 |SR: | 11.7 | 12.3 | |V | | | | | |76054 GSC | +350029 |TV Equ |210508.0+075644 |BY: | 7.98 |( 0.02 )| |V | | | 7.52 | |G5 |78018 DM | +350030 |TW Equ |210502.4+082651 |SRB | 11.2 | 12.2 | |V | | | 70.6 | | |79064 79010| +350031 |TX Equ |212042.1+054143 |EA | 11.44 | 11.72 | 11.66 |V |51356.700 | | 5.4788 |06 | |79003 DM | +350032 |TY Equ |210124.6+054213 |BY | 11.71 |( 0.11 *)| |V | | | 0.9801 | | |80021 GSC | NL80_3 +350033 |TZ Equ |210144.8+100841 |BY | 9.85 |( 0.04 *)| |V | | | 13.0611 | |K2 |80021 GSC | NL80_3 +350034 |UU Equ |210236.1+063501 |RRC | 13.35 | 13.85 | |V |53113.91 | | 0.35610 |37 | |80083 GSC | NL80_3 +350035 |UV Equ |210707.1+063232 |BY | 10.04 |( 0.08 *)| |V | | | 7.1371 | | |80021 GSC | NL80_3 +350036 |UW Equ |210714.3+095324 |RRAB | 13.92 | 14.82 | |* |53642.632 | | 0.5469482 |13 | |80001 GSC | NL80_3 +350037 |UX Equ |210901.2+093021 |BY | 11.4 | 11.6 | |* | | | 17.8154 | | |80067 80067| NL80_3 +350038 |UY Equ |211054.2+085816 |RS | 11.4 | 12.0 | |V | | | 14.060 | | |80043 GSC | NL80_3 +350039 |UZ Equ |211440.5+125052 |EB | 9.15 | 9.35 | 9.28 |V |52816.827 | | 0.486707 | |F0 |80042 DM | NL80_3 +350040 |VV Equ *|211605.4+113408 |UG | 15.3 | 19.4 | |g | | | | |pec(e) |80030 80027| NL80_3 +350041 |VW Equ |211839.3+061216 |RRC | 11.0 | 11.5 | |V |54304.730 | | 0.291447 |36 | |80001 GSC | NL80_3 +350042 |VX Equ |212135.9+094835 |BY | 10.55 |( 0.14 *)| |V | | | 3.6237 | | |80021 DM | NL80_3 +359003 |gam Equ *|211020.5+100754 |ACVO | 4.58 | 4.77 | |V | | | 0.00868 | |F0p(Sr-Cr-Eu) |09123 BD | +360001 |R Eri |045518.6-162504 |CST: | 5.72 | | |V | | | | |G4III |00458 BD | +360002 |S Eri |045955.7-123215 |RRC: | 4.77 | 4.80 | |V | | | 0.273 | |F0IV |09189 BD | +360003 |T Eri |035513.9-240157 |M | 7.2 | 13.2 | |V |42079. | | 252.29 |45 |M3e-M5e |00001 00002| +360004 |U Eri |035029.1-245723 |M | 8.5 | 14.9 | |V |40110. | | 274.91 |49 |M4e |00001 00002| +360005 |V Eri *|040418.8-154331 |SRC | 8.8 | 10.4 | |p | | | 97.0 | |M6II |01485 08667| +360006 |W Eri *|041131.0-250802 |M | 7.5 | 14.5 | |V |40345. | | 376.63 |40 |M7e-M9 |00001 00002| +360007 |X Eri |023124.3-412708 |M: | 10. |< 11. | |V |15024. | | 260. : | | |00546 00546| +360008 |Y Eri |020534.2-570839 |M | 10.7 | 13.5 | |p |30060. | | 302.7 | |M7e |01486 CoD | +360009 |Z Eri *|024755.9-122738 |SRB | 7.0 | 8.63 | |B | | | 80. | |M4III |01487 00002| +360010 |RR Eri |025214.2-081601 |SRB | 7.4 | 9.20 | |B | | | 97. | |M5III |01487 00002| +360011 |RS Eri |041755.4-183025 |M | 9.2 |< 12.8 | |p |38048. | | 296.00 | |M7e |00001 06286| +360012 |RT Eri |033412.5-160951 |M | 8.5 | 12.9 | |p |29360. | | 370.8 |46 |M7e |00001 08953| +360013 |RU Eri *|035443.8-145607 |EB/KE | 9.35 | 10.07 | 9.62 |V |42359.3456 | | 0.63219951 | |F0 |09190 BD | +360014 |RV Eri |040650.0-074024 |LB | 10.0 | 11.5 | |V | | | | |M6 |00458 BD | +360015 |RW Eri |042234.8-053004 |SRA | 10.2 | 11.7 | |p |16780. | | 91.4 |44 |M6 |01489 08073| +360016 |RX Eri *|044944.3-154428 |RRAB | 9.17 | 10.10 | |V |21692.479 | | 0.58724622 |16 |A7-F6 |03506 01045| +360017 |RY Eri *|035858.1-171347 |EA/SD | 10.3 | 11.5 | |V |25621.58 | | 4.97927 |10 |F5 |02532 BD | +360018 |RZ Eri *|044345.8-104056 |EA/DS/RS | 7.70 | 8.72 |( 0.04 pg)|V |43574.083 | | 39.28238 |05 |A5+G8IV |09194 09197| +360019 |SS Eri |031153.1-115233 |M | 9.4 |< 13. | |V |34383. | | 314.4 | |M5: |00001 08953| +360020 |ST Eri |040624.7-233932 | | 12.0 | 12.6 | |p | | | | | |01492 CoD | +360021 |SU Eri |035127.0-012216 |SRB | 9.5 | 10.7 | |p | | | 112. | |M4III |00862 08953| +360022 |SV Eri *|031152.1-112114 |RRAB | 9.56 | 10.23 | |V |35552.109 | | 0.7137964 |30 |A8-F5 |09195 00182| +360023 |SW Eri |035255.2-091007 |M | 9.8 |< 14.1 | |V |38801. | | 400.69 | | |00001 00002| +360024 |SX Eri |045523.9-065550 |M | 9.3 |< 13.6 | |V |38325. | | 282.80 | | |00001 00132| +360025 |SY Eri |050948.3-053055 |SRB | 10.4 | 11.4 | |p | | | 96.0 : | |C6,3(N0) |00372 00002| +360026 |SZ Eri |025109.0-200453 |RRAB | 13.0 | 14.5 | |p |24760.840 | | 0.48818 | | |00180 00022| +360027 |TT Eri *|025239.2-234634 |EA/SD | 12.92 | 14.25 | |V |44912.361 | | 1.33537 | | |00180 00022| +360028 |TU Eri |030313.4-203652 |S: | 12.8 | 13.6 | |p | | | | |F5 |00180 00022| +360029 |TV Eri *|030846.7-192738 |EA/SD: | 13.43 | 14.4 | |B |24790.790 | | 1.29847 | | |00180 00022| +360030 |TW Eri |031117.6-234142 |M | 11.0 | 15.2 | |p |33274. | | 322.2 | |M7 |00001 00022| +360031 |TX Eri |031234.7-193158 |S: | 12.7 | 13.4 | |p | | | | |G2 |00180 00022| +360032 |TY Eri |031612.0-220531 |E: | 12.8 | 13.8 | |p | | | | |G2 |00180 00022| +360033 |TZ Eri *|042140.3-060109 |EA/SD | 9.8 | 12.6 | |V |42414.263 | | 2.6060653 |10 |F |09196 01493| +360034 |UU Eri |043633.9-273443 |SRB | 10.6 | 12.0 | |p | | | 340. | |M7 |01191 CoD | +360035 |UV Eri |045831.9-060407 |M | 10.5 | 17. : | |p |38022. | | 433.22 | |M7 |00001 00975| +360036 |UW Eri |030348.7-141330 |SRB | 9.8 | 10.6 | |p | | | 96. | |M5 |01487 08953| +360037 |UX Eri *|030952.7-065334 |EW/KW | 10.5 | 11.11 | 11.01 |V |41922.3195 | | 0.44527942 | |F8 |09198 00279| +360038 |UY Eri *|031339.1-102632 |CWB | 10.93 | 11.66 | |V |40862.908 | | 2.213235 |28 |A5-F2 |05375 00279| +360039 |UZ Eri |031345.8-141244 |RR | 12.34 | 13.27 | |V |27390.304 | | 0.648618 |12 | |00183 00975| +360040 |VV Eri |032122.6-101706 |EA/SD: | 11. | 12. | |p |27342.522 | | 1.557586 |14 *|A |00186 00975| +360041 |VW Eri *|032130.0-212727 |SRD | 9.2 | 11.16 | |B | | | 83.4 | |K5 |01496 08953| +360042 |VX Eri |032509.3-122119 |SR: | 10.0 | 10.6 | |p | | | | |M3 |00862 08953| +360043 |VY Eri |034116.0-104508 |SRB | 9.2 | 10.6 | |p | | | 102.5 : | |M6 |00862 08953| +360044 |VZ Eri |044148.1-075719 |SR | 10.5 | 12.5 | |p |26628. | | 282. | |M3-M7e |00147 00464| +360045 |WW Eri *|050504.7-073343 |EB/KE | 11.0 | 11.5 | 11.2 |p |26586.453 | | 0.9264970 | | |00279 00975| +360046 |WX Eri | | | | | | | | | | | | |=V1241 Tau +360047 |WY Eri |040221.5-133754 |RR | 14.0 | 14.7 | |p |24772.80 | | 0.50690 | | |00193 06286| +360048 |WZ Eri |040208.8-134455 |M | 12.8 |< 16.3 | |p |24820. | | 400. | | |00193 06286| +360049 |XX Eri |040219.8-120624 |RRAB | 14.2 | 15.3 | |p |24767.90 | | 0.71016 | | |00193 06286| +360050 |XY Eri |041116.8-135054 |RRAB | 12.5 | 13.4 | |p |24763.90 | | 0.55425 |20 | |00193 06286| +360051 |XZ Eri |041125.8-152323 |UG | 14.6 |< 17.5 | |p | | | | | |00193 08852| +360052 |YY Eri *|041208.8-102810 |EW/KW | 8.1 | 8.80 | 8.72 |V |41581.624 | | 0.32149415 | |G5+G5 |00001 08953| +360053 |YZ Eri |041200.8-175527 |RR | 15.4 | 16.1 | |p |24766.85 | | 0.35744 | | |00193 06286| +360054 |ZZ Eri *|041301.1-104454 |E | 13.9 | 15.0 | 14.4 |p |44244.320 | | 0.4520603 | | |00001 06286| +360055 |AA Eri |041341.9-113336 |E | 12.8 | 13.3 | |p |24801.80 | | 0.50085 | | |00193 06286| +360056 |AB Eri |041540.7-182322 |RR | 14.7 | 15.5 | |p |24801.80 | | 0.57400 | | |00193 06286| +360057 |AC Eri |041605.8-143400 |RRAB | 13.3 | 14.8 | |p |24766.90 | | 0.48207 | | |00193 06286| +360058 |AD Eri |041756.0-163152 |RRAB | 14.7 | 16.0 | |p |25234.32 | | 0.46988 | | |00193 06286| +360059 |AE Eri |041901.3-151443 |RR | 14.5 | 15.2 | |p |24798.80 | | 0.62140 | | |00193 06286| +360060 |AF Eri |042019.5-102426 |SRA: | 13.4 | 15.7 | |p |25520. | | 250. | | |00193 06286| +360061 |AG Eri |042216.3-152539 |RRAB | 14.0 | 15.4 | |p |24763.90 | | 0.51248 | | |00193 06286| +360062 |AH Eri |042238.0-132130 |UGSS | 13.5 | 17.5 | |p | | |( 24. :) | |pec(UG) |05386 08852| +360063 |AI Eri |042255.3-161641 |RRAB | 14.7 | 15.8 | |p |24766.85 | | 0.61950 | | |00193 06286| +360064 |AK Eri |042535.2-184802 |E/SD: | 12.5 | 13.5 | |p |44637.341 | | 2.6303 | | |00193 06286| +360065 |AL Eri |042804.4-171033 |RRAB | 13.3 | 14.4 | |p |25244.35 | | 0.65694 | | |00193 06286| +360066 |AM Eri |042951.0-121423 |EW/KW | 14.4 | 15.2 | |p |43890.302 | | 0.316576 | | |09200 06286| +360067 |AN Eri *|043156.5-172020 |E | 14.4 | 15.4 | 14.9 |p |24772.84 | | 0.42821 | | |00193 06286| +360068 |AO Eri *|043200.9-174448 |EA/DS | 11.8 | 13.8 | |p |29631.15 | | 9.2982 |08 | |00983 01111| +360069 |AP Eri |043237.6-163038 |RR | 14.9 | 15.7 | |p |24744.90 | | 0.42114 | | |00193 06286| +360070 |AQ Eri |050613.1-040808 |UGZ: | 12.5 | 16.5 | |p | | |( 76. ) | |pec(UG) |09201 08852| +360071 |AR Eri |051102.5-051348 |M | 13.5 |< 16.5 | |p |26640. | | 130. | | |01498 01217| +360072 |AS Eri *|033225.1-031848 |EA/SD | 8.29 | 9.00 | 8.42 |V |28538.066 | | 2.664152 |09 *|A3V |03851 08953| +360073 |AT Eri |040557.7-183854 |LB | 11.8 | 12.4 | |p | | | | |M7: |00193 06286| +360074 |AU Eri |041707.2-250102 |SR | 10.5 | 11.5 | |p | | | 62. : | | |01111 08953| +360075 |AV Eri |041957.7-184320 |LB | 12.4 | 13.2 | |p | | | | |M2 |00193 06286| +360076 |AW Eri |042143.9-140348 |I: | 13.2 | 14.2 | |p | | | | | |00193 06286| +360077 |AX Eri |042315.5-122151 |E | 14.2 | 15.0 | |p | | | | | |00193 06286| +360078 |AY Eri |042525.1-113656 |LB | 12.3 | 13.3 | |p | | | | |M6 |00193 06286| +360079 |AZ Eri | | | | | | | | | | | | |=AO Eri +360080 |BB Eri *|045337.5-192601 |RRAB | 10.96 | 11.91 | |V |39559.291 | | 0.569898 |12 |F4 |05233 01111| +360081 |BC Eri *|044659.0-143723 |EW/KE | 10.83 : | 11.32 : | 11.26 : |V | | | 0.52778916 | |A6 | 01111| +360082 |BD Eri |043344.9+000136 |M | 12.2 | 16.5 : | |p | | | 336. | |M9e |00614 06286| +360083 |BE Eri |043803.5-015945 |RRAB | 12.8 | 14.0 | |p | | | 0.57954 | | |00614 06286| +360084 |BF Eri |043929.9-043559 |SR | 13.5 | 15.5 | |p | | | 198. | | |00614 06286| +360085 |BG Eri |044039.8-091124 |RR | 13.5 | 14.5 | |p | | | 0.65987 | | |00614 06286| +360086 |BH Eri |032336.5-195301 |SR | 10.7 | 12.5 : | |V |28876. | | 89.9 |42 |M6 |00983 01111| +360087 |BI Eri |034950.8-235550 |SR | 11.1 | 12.2 | |p |27387. | | 135.6 |37 | |00016 CoD | +360088 |BK Eri *|024955.9-012513 |RRAB | 12.00 | 13.05 | |V |37911.475 | | 0.5481494 |12 : |A |03506 00205| +360089 |BL Eri *|041148.2-114727 |EW/KE | 11.5 | 12.2 | |p |29232.082 | | 0.4162 | |B5 |01500 06286| +360090 |BM Eri *|041329.6-102314 |E:/GS+SR | 8.5 | 9.3 | |p |31140. | | | |M6III |00007 08953| +360091 |BN Eri |043354.9-002532 |RR | 13.1 | 14.5 | |p | | | | | |00614 06286| +360092 |BO Eri |043622.4-023905 |RR | 14.8 | 15.8 | |p | | | | | |00614 GSC | +360093 |BP Eri |043800.4-084516 |RR | 13.3 | 14.8 | |p | | | | | |00614 06286| +360094 |BQ Eri *|050759.7-055038 |EB/DM | 10.5 | 11. | 10.9 |p |31156.790 | | 1.429712 | |A8 |00279 00977| +360095 |BR Eri |034847.5-070054 |SRB | 8.37 | 9.7 | |B | | | 175.5 | |M5 |00123 00002| +360096 |BS Eri |044139.2-015319 |LB | 11.6 | 12.1 | |p | | | | |M3 |00123 00977| +360097 |BT Eri |033431.1-392443 |EA/SD: | 9.56 | 10.45 | |V |41991.6039 | | 2.112269 |13 |A0 |07098 CoD | +360098 |BU Eri |034920.9-205227 |EA | 8.5 | 9. | |p |32244.33 | | | |A3 |00948 08953| +360099 |BV Eri *|035153.3-103150 |EW | 8.12 | 8.63 | 8.42 |V |43449.7103 | | 0.5076649 | *|F2 |09202 08953| +360100 |BW Eri *|040636.8-274008 |EB | 9.5 | 10.12 | 9.72 |B |43448.6840 | | 0.6384773 | |A3 |08615 08953| +360101 |BX Eri |044032.8-141203 |SR | 10.5 | 12.0 | |p |30380. | | 165. | |M2-M7 |00948 | +360102 |BY Eri *|025134.1-474805 |RRC | 12.13 | 12.57 | |V |34343.507 | | 0.311361 |35 |A7-F3: |00001 06286| +360103 |BZ Eri *|041212.7-060118 |EA | 9. | 9.48 | 9.21 |B |25558.445 | | 0.6641701 |12 *|F2 |09203 08953| +360104 |CC Eri *|023422.6-434747 |BY+UV | 8.70 | 9.05 | |V | | | 1.56145 | |K7Ve |02838 CoD | +360105 |CD Eri |034746.0-083641 |EA/SD: | 9.51 | 10.49 | |V |29910.567 | | 2.876728 |15 *|A0 |09204 08953| +360106 |CE Eri |012747.9-570036 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +360107 |CF Eri |013644.0-535448 |RR | 15. | 16. | |p | | | | | |04001 04001| +360108 |CG Eri |013658.5-551300 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +360109 |CH Eri |013701.1-553257 |RR | 15.5 | 16. | |p | | | | | |04001 04001| +360110 |CI Eri *|015838.5-533139 |EA/SD: | 9.5 | 10.5 | |p |28782.475 | | 3.382880 | |F8V |05235 04001| +360111 |CK Eri |020005.7-553437 |RR | 14. | 15. | |p | | | | | |04001 04001| +360112 |CL Eri |020347.8-570705 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +360113 |CM Eri |020938.1-573700 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +360114 |CN Eri |020951.4-561415 |RR | 14. | 15. | |p | | | | | |04001 04001| +360115 |CO Eri *|023538.6-450412 |EA/SD | 9.0 | 9.6 | 9.1 |p |28776.575 | | 5.7836 | |F7V |03795 08953| +360116 |CP Eri |031032.7-094506 |UG: | 16.7 | 19.2 | |p | | | | | |04037 04037| +360117 |CQ Eri |032110.4-171358 |M | 10. | 12.5 | |p | | | | |Me |00464 08953| +360118 |CR Eri |035417.8-430637 |EA/SD: | 12.5 | 14. | |p |36845.554 | | | | |06561 06561| +360119 |CS Eri *|023705.8-425748 |RRC | 8.75 | 9.31 | |V |38417.087 | | 0.311331 |47 |A2 |06523 CoD | +360120 |CT Eri *|042924.8-333434 |EW/KE | 10.0 | 10.52 | 10.27 |V |44555.6736 | | 0.634195498 | |F0 |09205 08953| +360121 |CU Eri |024658.2-132028 |CST | 8.7 | | |V | | | | |G5 |00001 08953| +360122 |CV Eri |030050.9-025243 |LB: | 6.10 |( 0.18 )| |V | | | | |M2III | BD | +360123 |CW Eri *|030400.0-174416 |EA/DM | 8.43 | 8.96 | 8.86 |V |41267.6752 | | 2.7283737 |10 *|F0 |07512 BD | +360124 |CX Eri |040326.4-392242 |SRB | 8.89 | 9.43 | |V |40666. | | 97. | |MA |05828 08953| +360125 |CY Eri |040554.1-101745 |SRB | 6.95 | 7.20 | |V | | | 25. | |M4III |05828 BD | +360126 |CZ Eri |040723.8-392955 |SRB | 8.75 | 8.97 | |V | | | 50. | |MA |05828 CoD | +360127 |DD Eri |040856.0-080603 |SRB | 8.60 | 8.9 | |V | | |> 100. | |MC |05828 BD | +360128 |DE Eri |041104.5-200305 |SRB | 8.91 | 9.06 | |V | | |> 150. | |M2 |05828 BD | +360129 |DF Eri |041307.2-363242 |SRB | 8.21 | 8.33 | |V |40643. | | 36. | |MA |05828 CoD | +360130 |DG Eri |042041.4-164948 |SRB | 6.94 | 7.14 | |V |40623. :| | 82. | |M4III |05828 BD | +360131 |DH Eri |042340.4-274950 |SRB | 8.13 | 8.33 | |V | | | 60. | |M3 |05828 CoD | +360132 |DI Eri |023746.8-453710 |LB | 8.76 | 8.98 | |V | | | | |M5/6III |05973 CoD | +360133 |DK Eri |024641.5-413131 |LB | 9.70 | 9.99 | |V | | | | |M3 |05973 CoD | +360134 |DL Eri *|035637.9-094503 |DSCTC | 6.15 |( 0.09 )| |V | | | 0.155879 | |F1V |09206 BD | +360135 |DM Eri *|044026.5-194017 |SRB | 4.28 | 4.36 | |V | | | 30. | |M4III |06994 BD | +360136 |DN Eri |033347.7-393747 |RRC | 14.8 | 15.3 | |p |38401.261 | | 0.3932027 |42 | |06429 06429| +360137 |DO Eri *|035516.1-120557 |ACVO | 5.97 | 6.00 | |V |44577.0 | | 12.4580 |50 |A5p(Sr-Cr-Eu) |09208 BD | +360138 |DP Eri |040328.9-242736 |SRB | 7.18 | 7.40 | |V | | | 55. : | |M5III |08225 CoD | +360139 |DQ Eri |042015.3-023743 |SRB | 6.84 | 7.05 | |V | | | 30. : | |M4III |06645 BD | +360140 |DR Eri |025858.5-132037 |LB: | 8.5 | 9. | |p | | | | |M1 |00975 BD | +360141 |DS Eri *|034910.6-423655 |EB | 10. | 11. | 10.3 |p |23147.24 | | 0.827701 | | |07806 07806| +360142 |DT Eri |042640.0-361836 |RR: | 12.5 | 13.5 | |p | | | | | |00085 02381| +360143 |DU Eri |042906.9-130254 |GCAS | 5.41 | 5.49 | |V | | | | |B1Vne |06311 BD | +360144 |DV Eri |043411.6-081353 |LB: | 5.10 | 5.13 | |V | | | | |M3III |06994 BD | +360145 |DW Eri *|044334.7-084740 |ACVO: | 6.82 |( 0.03 )| |V | | | | |F4IIIp(Sr) |07489 BD | +360146 |DX Eri |044405.3-083013 |GCAS | 5.76 | 5.98 | |V | | | | |B2Ve |09209 BD | +360147 |DY Eri *|041521.6-073914 |UV | 12.16 | 13.88 | |U | | | | |M4.5Ve |06586 BD | +360148 |DZ Eri *|043237.5-031234 |SXARI | 5.73 | 5.82 | |Y |42815.52 | | 1.374 | |B9III(He weak) |08054 BD | +360149 |EE Eri |031018.1-014141 |ACV | 7.33 | 7.38 | |V |44197.2 | | 2.1945 | |B9p(Cr-Eu) |08934 BD | +360150 |EF Eri *|031413.2-223543 |E+XM | 14.5 |< 17.3 | |B |43944.9519 | | 0.056265923 | |e |09210 08449| +360151 |EG Eri *|033617.4-172801 |ACV | 5.23 | 5.32 | |V |43485.50 | | 1.93 |38 |B9p(Si) |04013 BD | +360152 |EH Eri *|043354.7-064420 |ACV | 5.72 |( 0.035 )| |V |43461.00 | | 3.82 |60 |B9p(Si) |04013 BD | +360153 |EI Eri |040940.9-075334 |RS | 6.95 | 7.32 | |V | | | | | |67435 BD | +360154 |EK Eri |042038.6-061446 |BY | 6.24 |( 0.12 )| |V | | | | | |68122 BD | +360155 |EL Eri |031038.5-052338 |RS | 7.92 | 8.20 | |V | | | | | |69011 BD | +360156 |EM Eri |042042.8-073533 |* | 5.84 |( 0.06 )| |V | | | | | |69140 BD | +360157 |EN Eri |050645.6-043919 |ACV: | 4.89 |( 0.01 u )| |U | | | | | |70022 BD | +360158 |EO Eri |044508.4-235119 |M | 10.3 | 18.0 | |p | | | | | |71033 71033| +360159 |EP Eri |025232.1-124611 |RS | 6.03 | 6.08 | |V | | | | | |72087 BD | +360160 |EQ Eri |042957.6-285247 |DSCT | 7.7 |( 0.10 )| |V | | | | | |72088 CoD | +360161 |ER Eri |021007.9-543040 |UV: | 9.6 | 11.59 | |U | | | | | |73155 CPD | +360162 |ES Eri |031803.8-194414 |RS: | 10.70 | 10.78 | |V | | | | | |73156 GSC | +360163 |ET Eri |033103.9-152452 |SRB | 4.46 | 4.68 | |J | | | | | |73033 GSC | +360164 |EU Eri |034418.6-415352 |SRC | 7.23 | 7.86 | |V | | | 395. | | |00001 HIP | +360165 |EV Eri |040907.4-091412 |SRB | 5.12 | 6.38 | |J | | | | | |73033 GSC | +360166 |EW Eri |043502.2-141341 |INT | 9.30 | 9.71 | |J | | | | | |73158 73159| +360167 |EX Eri |044625.8-280515 |DSCTC | 6.19 |( 0.03 b )| |V | | | | | |73160 CoD | +360168 |EY Eri |045257.3-100159 |M | 6.35 | 9.03 | |J | | | | | |73014 2MASS| +360169 |EZ Eri |050728.5-052425 |RS | 10.17 | 10.29 | |V | | | | | |73156 BD | +360170 |FF Eri |015244.7-540041 |LB: | 7.89 | 8.00 | |Hp| | | | | |HIP HIP | +360171 |FG Eri |015548.3-550420 |DSCTC: | 6.75 | 6.80 | |Hp| | | | | |HIP HIP | +360172 |FH Eri |023459.7-420646 |SRB | 6.97 | 7.09 | |Hp| | | | | |HIP HIP | +360173 |FI Eri |023917.0-434806 |DSCTC | 8.49 | 8.59 | |Hp| | | | | |HIP HIP | +360174 |FK Eri |024458.4-174652 |EA | 9.21 | 9.58 | |Hp| | | | | |HIP HIP | +360175 |FL Eri |024853.8-190139 |SRB | 8.39 | 8.60 | |Hp| | | | | |HIP HIP | +360176 |FM Eri |024942.6-171647 |LB: | 8.23 | 8.33 | |Hp| | | | | |HIP HIP | +360177 |FN Eri |025106.2-405748 |SRA | 7.19 | 7.27 | |Hp| | | | | |HIP HIP | +360178 |FO Eri |025224.6-410903 |EA | 8.51 | 8.80 | |Hp| | | | | |HIP HIP | +360179 |FP Eri |025334.8-091229 |EW | 9.71 | 9.85 | |Hp| | | | | |HIP HIP | +360180 |FQ Eri |025344.7-230844 |LB: | 8.18 | 8.28 | |Hp| | | | | |HIP HIP | +360181 |FR Eri |030048.4-204137 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +360182 |FS Eri |030103.9-412106 |LB: | 8.73 | 8.83 | |Hp| | | | | |HIP HIP | +360183 |FT Eri |030927.9-422851 |BY: | 11.96 | 12.21 | |Hp| | | | | |HIP HIP | +360184 |FU Eri |030956.5-445930 |EA: | 9.25 | 9.59 | |Hp| | | | | |HIP HIP | +360185 |FV Eri |031228.8-113655 |LB: | 9.01 | 9.12 | |Hp| | | | | |HIP HIP | +360186 |FW Eri |033015.6-402203 |E | 11.87 | 12.21 | |Hp| | | | | |HIP HIP | +360187 |FX Eri |033701.4-413140 |EW | 9.73 | 9.97 | |Hp| | | | | |HIP HIP | +360188 |FY Eri |034038.3-051239 |ACV | 5.47 | 5.51 | |Hp| | | | | |HIP HIP | +360189 |FZ Eri |034019.6-431427 |SRB | 7.28 | 7.52 | |Hp| | | | | |HIP HIP | +360190 |GG Eri |034326.8-393723 |LB: | 9.57 | 9.74 | |Hp| | | | | |HIP HIP | +360191 |GH Eri |034413.0-411647 |EA | 9.03 | 9.61 | |Hp| | | | | |HIP HIP | +360192 |GI Eri |034413.3-431410 |SRB | 7.99 | 8.29 | |Hp| | | | | |HIP HIP | +360193 |GK Eri |034512.0-162438 |EA | 8.96 | 9.49 | |Hp| | | | | |HIP HIP | +360194 |GL Eri |035044.4-385855 |SRB | 6.88 | 7.11 | |Hp| | | | | |HIP HIP | +360195 |GM Eri |035126.5-400509 |SRB | 7.37 | 7.62 | |Hp| | | | | |HIP HIP | +360196 |GN Eri |035233.2-200730 |LB: | 8.71 | 8.82 | |Hp| | | | | |HIP HIP | +360197 |GO Eri |035458.6-145421 |LB: | 7.14 | 7.26 | |Hp| | | | | |HIP HIP | +360198 |GP Eri |035442.4-291426 |SRB: | 9.66 | 10.22 | |Hp| | | | | |HIP HIP | +360199 |GQ Eri |035559.5-294839 |LB: | 8.94 | 9.09 | |Hp| | | | | |HIP HIP | +360200 |GR Eri |040018.6-062303 |SRB: | 8.33 | 8.48 | |Hp| | | | | |HIP HIP | +360201 |GS Eri |040019.0-312644 |LB: | 8.58 | 8.72 | |Hp| | | | | |HIP HIP | +360202 |GT Eri |040506.4-311011 |EA | 8.57 | 9.14 | |Hp| | | | | |HIP HIP | +360203 |GU Eri |040917.8-162309 |LPB | 5.39 | 5.42 | |Hp| | | | | |HIP HIP | +360204 |GV Eri |041003.4-342952 |LB: | 7.21 | 7.37 | |Hp| | | | | |HIP HIP | +360205 |GW Eri |041136.2-202122 |EA | 5.84 | 6.01 | |Hp| | | | | |HIP HIP | +360206 |GX Eri |041312.5-035306 |SRB: | 7.51 | 7.62 | |Hp| | | | | |HIP HIP | +360207 |GY Eri |041338.1-010859 |LPB | 6.40 | 6.42 | |Hp| | | | | |HIP HIP | +360208 |GZ Eri |041816.1-204255 |LB | 5.94 | 6.10 | |Hp| | | | | |HIP HIP | +360209 |HH Eri |042731.9-170631 |EA | 8.50 | 8.85 | |Hp| | | | | |HIP HIP | +360210 |HI Eri |042850.6-145846 |LB: | 8.19 | 8.30 | |Hp| | | | | |HIP HIP | +360211 |HK Eri |043006.9-080310 |LB: | 9.74 | 9.91 | |Hp| | | | | |HIP HIP | +360212 |HL Eri |043045.1-071428 |EB | 8.56 | 8.60 | |Hp| | | | | |HIP HIP | +360213 |HM Eri |043105.2-361436 |SRB: | 8.24 | 8.42 | |Hp| | | | | |HIP HIP | +360214 |HN Eri |043324.9-235620 |EB | 8.66 | 8.97 | |Hp| | | | | |HIP HIP | +360215 |HO Eri |043744.5-312438 |LB: | 8.25 | 8.37 | |Hp| | | | | |HIP HIP | +360216 |HP Eri |043855.7-132048 |SRD: | 8.44 | 8.53 | |Hp| | | | | |HIP HIP | +360217 |HQ Eri |043922.8-302724 |LB: | 8.10 | 8.34 | |Hp| | | | | |HIP HIP | +360218 |HR Eri |044130.9-235835 |SRB | 7.33 | 7.50 | |Hp| | | | | |HIP HIP | +360219 |HS Eri |044222.6-005548 |DSCTC: | 6.79 | 6.86 | |Hp| | | | | |HIP HIP | +360220 |HT Eri |044310.3-153715 |LB: | 7.91 | 8.03 | |Hp| | | | | |HIP HIP | +360221 |HU Eri |044611.7-101320 |LB: | 9.05 | 9.19 | |Hp| | | | | |HIP HIP | +360222 |HV Eri *|044833.3-114508 |DSCTC: | 8.37 | 8.46 | |Hp| | | | | |HIP HIP | +360223 |HW Eri |045209.3-192347 |LB: | 9.31 | 9.45 | |Hp| | | | | |HIP HIP | +360224 |HX Eri |030517.6-183810 |EA | 12.60 |( 0.6 )| |V | | | | | |76012 GSC | +360225 |HY Eri |050145.6-035937 |XM+EA | 17.4 | 22.7 | |V | | | | | |76040 76005| +360226 |HZ Eri |033953.2-133750 |SR: | 11.6 | 12.4 | |V | | | | | |77004 DM | +360227 |II Eri |035156.7-303258 |SR: | 11.9 | 12.7 | |V | | | | | |77004 UCAC2| +360228 |IK Eri |040907.8-162358 |GDOR | 8.14 | 8.16 | |V | | | | | |77035 DM | +360229 |IL Eri |041704.3-121312 |SR: | 12.4 | 13.6 | |V | | | | | |77004 GSC | +360230 |IM Eri |042441.1-200712 |NL | 11.6 | 13.0 | |B | | | | | |77003 DM | +360231 |IN Eri |043944.7-294559 |SR: | 11.9 | 12.7 | |V | | | | | |77004 GSC | +360232 |IO Eri |045327.9-053449 |SR | 10.25 | 11.10 | |V | | | | | |77040 DM | +360233 |IP Eri |025438.8-051951 |BY: | 7.32 |( 0.04 )| |V | | | | |K0IV+DA |78018 DM | +360234 |IQ Eri |025538.0-224703 |NL | 17.6 |( 0.5 )| |V | | | | |pec(e) |78039 78039| +360235 |IR Eri |030232.7-151621 |RS | 8.45 |( 0.02 )| |V | | | 8.05 | |K0V |78018 DM | +360236 |IS Eri |030942.3-093447 |BY | 8.48 |( 0.06 )| |V | | | 5.41 | |G0V |78018 DM | +360237 |IT Eri |034233.6-145043 |SRB | 9.1 | 9.6 | |V | | | 75. : | |M4 |78130 DM | +360238 |IU Eri |041636.0-100509 |DSCTC | 7.49 | 7.55 | |Hp| | | 0.0689 | |A2 |78024 DM | +360239 |IV Eri |042115.4-351814 |RRAB | 12.0 | 13.5 | |V |51914.6021 | | 0.66278 | | |78130 DM | +360240 |IW Eri |042555.2-194530 |XM | 16.7 | 18.0 | |V | | | | |pec(e) |78039 78039| +360241 |IX Eri |044736.3-165604 |BY | 5.47 | 5.51 | |V | | | 11.3 | |G3V |78005 DM | +360242 |IY Eri |020728.2-575210 |EW: | 10.86 | 11.31 | 11.30 |V |52222.632 | | 0.750035 | | |79011 DM | +360243 |IZ Eri |024629.1-135703 |RRAB | 13.5 | 14.4 | |V |53664.684 | | 0.56154 |15 | |79064 GSC | +360244 |KK Eri |031157.8-034829 |RRAB | 13.1 | 14.3 | |V |53090.482 | | 0.455939 |17 |AB |79100 GSC | +360245 |KL Eri |034525.4-084734 |RRAB | 13.1 | 14.5 | |V |52911.749 | | 0.497581 |10 | |79100 79010| +360246 |KM Eri |042033.1-155450 |SRB | 11.2 | 11.6 | |V | | | 85. | | |79100 79010| +360247 |KN Eri |043417.9-045646 |EW | 13.23 | 14.2 : | 13.9 |V |53043.615 | | 0.396604 | | |79009 GSC | +360248 |KO Eri |043538.9-040554 |SRB | 10.3 | 11.3 | |V | | | 38. | | |79100 GSC | +360249 |KP Eri *|044307.2-072442 |EA | 8.78 | 8.93 | 8.93 : |V |47908.707 | | 7.447126 |03 |A2 |79003 DM | +360250 |KQ Eri |045616.1-085814 |LB | 11.7 | 12.5 | |V | | | | | |79100 GSC | +360251 |KR Eri |045651.9-063209 |SRB | 10.9 | 12.0 | |V | | | 88. | | |79100 79177| +360252 |KS Eri *|050902.9-074412 |EB | 9.32 | 9.41 | 9.36 |V |53085.561 | | 0.533437 | |F0 |79009 DM | +360253 |KT Eri |044754.2-101043 |NA | 7.34 | 15. : | |V |55155. |2009 | 2009 | |pec(Nova) |80215 2MASS| NL80_1 +360254 |KU Eri *|024634.0-064207 |GDOR | 7.83 | 7.89 | |Hp| | | 2.136 | |F2V |80160 HIP | NL80_1 +360255 |KV Eri *|025015.9-464908 |EW | 12.44 | 12.95 | 12.92 |V |51868.139 | | 0.271753 | | |80036 GSC | NL80_1 +360256 |KW Eri *|025413.5-470650 |EW | 13.4 | 14.1 | 13.85 |V |53639.744 | | 0.2352922 | | |80011 GSC | NL80_1 +360257 |KX Eri *|025810.4-061150 |EB | 12.75 | 14.0 : | 13.5 |V |51504.8 | | 64.38 | | |80015 GSC | NL80_1 +360258 |KY Eri |031051.7-075500 |UGSU | 15.6 | 20.7 | |V | | | | |pec(UG) |80027 80027| NL80_1 +360259 |KZ Eri *|033154.3-013821 |EA | 11.3 | 12.05 | 11.54 |V |52958.752 | | 0.942690 |11 | |80002 GSC | NL80_1 +360260 |LL Eri *|033243.5-085539 |ELL | 12.8 |( 0.14 )|( 0.09 )|R | | | 0.201626 | |DA+dMe |80142 GSC | NL80_1 +360261 |LM Eri |034307.0-192624 |RRAB | 12.9 | 14.2 | |V |53745.719 | | 0.61507 |15 | |80001 GSC | NL80_1 +360262 |LN Eri |034836.3-052030 |BY | 11.65 | 11.82 | |* | | | 1.4527 | | |80043 80043| NL80_1 +360263 |LO Eri |035030.8-135530 |RS | 10.57 | 10.79 | |V | | | 9.34 | |K0IV |80151 DM | NL80_1 +360264 |LP Eri |035039.6-035355 |BY | 12.15 | 12.35 | |* | | | 1.37330 | | |80060 80060| NL80_1 +360265 |LQ Eri |035637.4-132720 |BY | 11.75 | 11.80 | |V | | | 1.37 : | |K1V |80151 GSC | NL80_1 +360266 |LR Eri *|040010.8-194937 |RRAB | 12.0 | 13.0 | |V |53408.6223 | | 0.60220 |20 | |80001 GSC | NL80_1 +360267 |LS Eri |040644.1-002229 |RRAB | 14.0 | 15.0 | |V |51550.6071 | | 0.574882 |20 : | |80159 GSC | NL80_1 +360268 |LT Eri *|040714.8-064425 |E+UGSU: | 15.0 | 18.72 | |V |52949.1504 | | 0.17017 | |pec(e) |80136 80027| NL80_1 +360269 |LU Eri *|042706.6-000755 |EW: | 17.3 | 17.7 | 17.7 |V | | | 0.316846 | | |80001 USNO | NL80_1 +360270 |LV Eri |042940.4-003810 |RRAB | 15.5 | 16.1 | |V |51513.7264 | | 0.617287 |23 | |80159 USNO | NL80_1 +360271 |LW Eri *|043127.7-004352 |EB | 12.5 | 13.2 | 12.8 |V |53394.675 | | 0.46561 | | |80002 GSC | NL80_1 +360272 |LX Eri |043311.4-015011 |RRAB | 17.6 | 18.1 | |V |51488.8273 | | 0.626296 |17 | |80159 USNO | NL80_1 +360273 |LY Eri |043646.7-021214 |RRAB | 17.5 | 18.4 | |V |51588.4997 | | 0.553258 |19 | |80159 USNO | NL80_1 +360274 |LZ Eri |044000.7-001939 |RRAB | 15.9 | 17.0 | |V |51550.6605 | | 0.495298 |13 | |80159 USNO | NL80_1 +360275 |MM Eri *|044059.8-084003 |RS | 10.05 | 10.12 | |V | | | 2.75 : | |G3+G8 |80151 DM | NL80_1 +360276 |MN Eri |044204.6+000228 |RRAB | 15.2 | 16.2 | |V |51528.7437 | | 0.539122 |15 | |80159 USNO | NL80_1 +360277 |MO Eri |044339.2-005841 |RRAB | 17.7 | 18.9 | |V |51188.6973 | | 0.643377 |13 | |80159 USNO | NL80_1 +360278 |MP Eri |044445.0-003633 |RRC | 16.7 | 17.1 | |V |51187.6414 | | 0.209611 |45 | |80159 USNO | NL80_1 +360279 |MQ Eri *|045331.5-064145 |EA | 12.6 | 13.0 | 12.7 |V |52227.72 | | 11.822 |07 | |80011 GSC | NL80_1 +360280 |MR Eri |050040.9-045616 |RS: | 9.94 | 10.02 | |V | | | 2.27 : | |F9V |80151 DM | NL80_1 +360281 |MS Eri |050748.3-093143 |RS: | 12.50 |( 0.11 )| |V | | | 1.21 : | |K2 |80151 GSC | NL80_1 +369001 |alf Eri |013742.9-571412 |BE | 0.40 | 0.46 | |Hp| | | 1.263 | |B3Ve |78023 DM | +369003 |gam Eri *|035801.8-133031 |LB: | 2.88 | 2.96 | |V | | | | |M0III |04614 BD | +369004 |del Eri |034314.9-094548 |RS: | 3.51 | 3.56 | |V | | | | | |68123 BD | +369005 |eps Eri |033255.8-092730 |BY | 3.73 |( 0.05 )| |V | | | | | |72089 BD | +369011 |lam Eri *|050908.8-084515 |BCEP | 4.22 | 4.34 | |V | | | 0.701538 | |B2IVe |09212 BD | +369012 |mu. Eri *|044530.1-031517 |EA+LPB: | 4.00 |( 0.05 )| |V |52574.04 | | 7.380618 | |B5IV |80173 HIP | NL80_1 +369013 |nu. Eri *|043619.1-032109 |BCEP | 3.92 |( 0.14 )| |V |33629.277 | | 0.17790414 | |B2III |03857 BD | +3690151|omi 1 Eri *|041151.9-065015 |DSCTC | 4.00 | 4.05 | |V | | | 0.0815 | |F2II-III |07533 BD | +369016 |pi. Eri |034608.5-120606 |LB: | 4.38 | 4.44 | |V | | | | |M2III |03712 BD | +3690194|tau 4 Eri *|031931.0-214528 |LB | 3.57 | 3.72 | |V | | | | |M3III |06590 BD | +3690198|tau 8 Eri |035342.7-243644 |SXARI: | 4.63 |( 0.03 )| |V | | | | | |69140 CoD | +3690199|tau 9 Eri *|035955.5-240058 |ACV | 4.62 | 4.67 | |V | | | 1.2094 | |A0p(Si) |08934 CoD | +370001 |R For |022915.3-260556 |M | 7.5 | 13.0 | |V |41974. | | 388.73 |52 |C4,3e(Ne) |00001 00002| +370002 |S For *|034613.2-242328 |CST: | 5.6 | 8.5 | |V | | | | |F8 | 08953| +370003 |T For |032934.6-282411 |SRB | 10.8 | 11.9 | |p | | | 91.8 | |M2 |01485 00546| +370004 |U For |034430.7-251341 |M | 9.8 |< 15.0 | |V |40202. | | 318.50 | | |00001 02452| +370005 |V For *|024051.4-255214 |EA/SD | 14.05 | 17.0 | |B |25202.410 | | 3.3065 | | |00180 00022| +370006 |W For *|024143.9-260151 |E | 12.9 | 13.7 | |p |42363.440 | | 0.6179073 | | |00001 00022| +370007 |X For |024257.8-260708 |SRB | 9.5 | 10.8 | |p | | | 76. : | |M3 |01485 00022| +370008 |Y For |024738.1-270221 |E: | 13.8 | 14.2 | |p | | | | |G2 |00180 00022| +370009 |Z For |025009.9-261552 |RR | 12.2 | 13.0 | |p |24759.830 | | 0.37044 | | |00180 00022| +370010 |RR For |025343.7-265253 |RR | 13.1 | 13.9 | |p |24760.870 | | 0.3898 | | |00180 00022| +370011 |RS For |025433.8-272522 |RR: | 12.7 | 13.4 | |p | | | | | |00180 00022| +370012 |RT For |025620.0-250707 |E | 12.7 | 13.3 | |p |45238.571 | | | | |00180 00022| +370013 |RU For |030310.8-265957 |S: | 12.7 | 13.8 | |p | | | | |M3 |00180 00022| +370014 |RV For |030614.4-261250 |RR: | 13.6 | 14.2 | |p | | | | |A0-A2 |00180 00022| +370015 |RW For |030726.1-242941 |RRAB | 14.6 | 16.0 | |p |24758.860 | | 0.5485 | | |00180 00022| +370016 |RX For *|031113.2-262859 |RRAB | 11.12 | 12.46 | |V |39831.387 | | 0.597314 |14 |A9:-F6 |05233 00975| +370017 |RY For *|031553.5-244132 |EB/SD: | 12.23 | 13.4 | |B |27424.195 | | 0.4855 | | |00279 00022| +370018 |RZ For |033226.7-253931 |SRA | 9.2 | 10.0 | |p |28075. | | 64.6 | |M5 |00016 08953| +370019 |SS For *|020752.0-265158 |RRAB | 9.45 | 10.60 | |V |38668.951 | | 0.495432 |17 |A3-G0 |05233 06286| +370020 |ST For |024422.1-291224 |SRA | 8.71 | 10.34 | |V |41020. | | 277.0 | |M6 |08648 08953| +370021 |SU For |022136.5-371246 |EA/SD | 9.5 | 11.0 | |p |44891.6639 | | 2.434665 |12 *|A2 |09213 03644| +370022 |SV For |015825.2-242244 |SRD | 10.8 | 11.9 | |p |25637. | | 87.24 | |F5 |00201 CoD | +370023 |SW For *|030108.7-380743 |RRAB | 11.99 | 12.62 | |V |34343.590 | | 0.803740 |22 |F0: |03126 02380| +370024 |SX For |033022.4-360314 |RRAB | 10.68 | 11.38 | |V |39158.231 | | 0.6053397 |16 |F2-G2 |05233 06286| +370025 |SY For *|025314.4-374615 |SRB | 11. | 12.57 | |B | | | 55. : | |M |06176 08588| +370026 |SZ For |034119.9-263622 |UG: | 18.2 | 20.8 | |p | | | | | |04033 04033| +370027 |TT For |015757.3-262856 |SRB | 9.43 | 10.21 | |V | | | 100. : | |M2 |05973 08953| +370028 |TU For |032133.7-354533 |RRAB | 14.1 | 15.5 | |p |38401.566 | | 0.4712517 |23 | |06429 06429| +370029 |TV For |033653.4-311548 |RRAB | 13.3 | 15.0 | |p |38401.462 | | 0.4077471 |15 | |06429 06429| +370030 |TW For |034243.0-314350 |RRAB | 13.6 | 15.1 | |p |38401.279 | | 0.4791230 |20 | |06429 06429| +370031 |TX For |025430.3-282402 |RR: | 12. | 13. | |p | | | | |A3 |00085 02380| +370032 |TY For |023013.7-251111 |DSCTC | 6.49 | 6.51 | |V | | | 0.05 | |A9V |08462 CoD | +370033 |TZ For *|031440.1-353328 |EA/GS | 6.84 | 7.05 | |V |43216.558 | | | |G0III+G0III |08463 CoD | +370034 |UU For |023723.0-265843 |M | 9.8 | 14.8 | |V | | | | | |68015 GSC | +370035 |UV For |014641.6-240050 |RS | 7.97 | 8.07 | |V | | | | | |69011 CoD | +370036 |UW For |023433.9-343820 |CWB | 11.2 | 11.5 | |V | | | | | |69144 CoD | +370037 |UX For |024325.6-375543 |RS | 7.97 | 8.11 | |V | | | | | |69011 CoD | +370038 |UY For |024421.4-245105 |RS | 8.22 | 8.25 | |V | | | | | |69011 CoD | +370039 |UZ For |033528.6-254422 |E+XM | 18.2 | 20.9 | |V | | | | | |69146 69147| +370040 |VV For |025233.2-261815 |DSCTC | 8.9 |( 0.02 v )| |V | | | | | |70056 CoD | +370041 |VW For |025251.3-303743 |AM: | 19.5 | 20.5 | |p | | | | | |73015 73015| +370042 |VX For |032646.9-342637 |UG: | 12.2 |< 19. | |V | | | | | |73161 73064| +370043 |VY For |033204.6-255655 |XM | 17.45 | 19.2 | |V | | | | | |73162 73163| +370044 |VZ For |014919.7-351758 |SRB | 9.21 | 9.33 | |Hp| | | | | |HIP HIP | +370045 |WW For |015141.9-364818 |SRD | 9.25 | 9.49 | |Hp| | | | | |HIP HIP | +370046 |WX For |015154.1-312001 |LB | 8.79 | 9.04 | |Hp| | | | | |HIP HIP | +370047 |WY For |015235.2-263417 |E: | 9.91 | 10.09 | |Hp| | | | | |HIP HIP | +370048 |WZ For |015258.1-280444 |EA: | 9.35 | 9.73 | |Hp| | | | | |HIP HIP | +370049 |XX For |015518.4-354811 |SRB | 8.93 | 9.59 | |Hp| | | | | |HIP HIP | +370050 |XY For |015827.0-364854 |LB: | 9.47 | 9.86 | |Hp| | | | | |HIP HIP | +370051 |XZ For |020118.7-370452 |EW | 9.97 | 10.29 | |Hp| | | | | |HIP HIP | +370052 |YY For |020912.4-314833 |LB: | 7.81 | 7.92 | |Hp| | | | | |HIP HIP | +370053 |YZ For |021102.2-354015 |BY: | 10.01 | 10.20 | |Hp| | | | | |HIP HIP | +370054 |ZZ For |021933.4-251809 |LB: | 8.99 | 9.11 | |Hp| | | | | |HIP HIP | +370055 |AA For |021940.2-333711 |SRC | 7.89 | 8.06 | |Hp| | | | | |HIP HIP | +370056 |AB For |023037.3-311642 |LB: | 8.33 | 8.51 | |Hp| | | | | |HIP HIP | +370057 |AC For |023425.6-324306 |LB: | 8.49 | 8.59 | |Hp| | | | | |HIP HIP | +370058 |AD For |023646.2-354944 |SRB | 7.44 | 7.66 | |Hp| | | | | |HIP HIP | +370059 |AE For |030806.7-244535 |EA | 10.32 | 10.89 | |Hp| | | | | |HIP HIP | +370060 |AF For |030837.5-262647 |LB | 8.13 | 8.46 | |Hp| | | | | |HIP HIP | +370061 |AG For |031027.6-330259 |SRB | 7.84 | 7.97 | |Hp| | | | | |HIP HIP | +370062 |AH For |031740.4-385743 |LB: | 8.29 | 8.42 | |Hp| | | | | |HIP HIP | +370063 |AI For |031934.9-240722 |SRB: | 5.65 | 5.75 | |Hp| | | | | |HIP HIP | +370064 |AK For |032922.9-240603 |E: | 9.24 | 9.35 | |Hp| | | | | |HIP HIP | +370065 |AL For |033050.5-323020 |LB: | 8.97 | 9.09 | |Hp| | | | | |HIP HIP | +370066 |AM For |034310.0-310109 |SRB | 6.93 | 7.15 | |Hp| | | | | |HIP HIP | +370067 |AN For |034612.6-253155 |LB: | 8.79 | 8.95 | |Hp| | | | | |HIP HIP | +370068 |AO For |024303.6-310412 |BY: | 7.51 | 7.54 | |V | | | | | |75139 CoD | +370069 |AP For |023916.0-292720 |SR: | 12.2 | 13.0 | |V | | | | | |77004 GSC | +370070 |AQ For |033425.4-253741 |SR: | 11.1 | 12.3 | |V | | | | | |77004 UCAC2| +370071 |AR For |015930.2-312918 |SRA | 10.6 | 12.1 | |V |52260 | | 128. | | |78130 78014| +370072 |AS For |024621.1-361336 |M | 10.2 |< 11.2 | |V |52887 | | 304. | |Me |78040 USNO | +370073 |AT For |025109.4-380453 |EA | 9.28 | 9.90 | |V |52564.723 | | 2.59226 | |A2V |78011 DM | +370074 |AU For |021502.4-335105 |EA | 10.58 | 11.17 | 11.17 |V |52129.860 | | 6.11384 |09 | |79018 DM | +370075 |AV For *|021833.7-294016 |EA | 8.63 | 8.72 | 8.65 |V |48674.823 | | 1.87970 |06 |F5V |79003 DM | +370076 |AW For |031100.2-352044 |RRAB | 12.7 | 13.7 | |V |53902.9327 | | 0.60845 |14 | |79100 79029| +370077 |AX For |021928.0-304546 |UGSU | 12.5 | 18. | |V | | | | | |80113 80027| NL80_1 +370078 |AY For |024234.8-280244 |EA+NL | 18.4 | 20.7 | |V |52577.4376 | | 0.07460 |15 |pec(e) |80119 80125| NL80_1 +370079 |AZ For *|030527.6-305839 |RR(B) | 12.43 | 13.42 | |V | | | 0.43860 | | |80132 GSC | NL80_1 +379013 |nu. For |020429.4-291749 |ACV | 4.68 | 4.73 | |V |43475.00 | | 1.89 | |B9.5p(Si) |04013 CoD | +380001 |R Gem *|070721.3+224213 |M | 6.0 | 14.0 | |V |43325. | | 369.91 |36 |S2,9e-S8,9e(Tc) |00001 00002| +380002 |S Gem *|074302.6+232658 |M | 8.0 | 14.7 | |V |43578. | | 293.23 |42 |M4e-M8e |00001 00002| +380003 |T Gem *|074918.1+234404 |M | 8.0 | 15.0 | |V |44710. | | 287.79 |50 |S1.5,5e-S9,5e |00001 00002| +380004 |U Gem *|075505.2+220005 |UGSS+E | 8.2 | 14.9 | |V | | |( 105.2 ) | |pec(UG)+M4.5V |09214 01129| +380005 |V Gem *|072309.3+130605 |M | 7.8 | 14.9 | |V |42694. | | 274.8 |45 |M4(S)e-M8 |00001 00002| +380006 |W Gem *|063457.5+151950 |DCEP | 6.54 | 7.38 | |V |42755.191 | | 7.913779 |30 |F5-G1 |08632 08953| +380007 |X Gem |064707.0+301634 |M | 7.5 | 13.8 | |V |43553. | | 264.16 |49 |M5e-M8e(Tc:) |00001 00002| +380008 |Y Gem |074108.5+202544 |SRB | 10.4 | 12.3 | |p | | | 160. : | |M6e-M7 |01505 00100| +380009 |Z Gem |070736.4+223141 |CST | 12.4 | | |p | | | | | | 00967| +380010 |RR Gem *|072133.5+305300 |RRAB | 10.62 | 11.99 | |V |41357.205 | | 0.3973106 |13 |A9-F6 |08652 00101| +380011 |RS Gem |070137.1+303125 |SRB | 9.1 | 12.0 | |V | | | 140. : | |M3-M8 | 00100| +380012 |RT Gem |064634.5+183653 |M | 11. |< 16. | |p |35130. | | 350.4 | |C: |00001 01506| +380013 |RU Gem |072658.9+212607 |EA/DS | 12.1 | 13.2 | |p |34077.15 | | 8.67080 |13 *| |02808 02808| +380014 |RV Gem |071759.8+235520 |M | 11.2 |< 16. | |p |34342. | | 287.6 | | |02535 02535| +380015 |RW Gem *|060128.1+230828 |EA/SD: | 9.53 | 11.76 | 9.74 |V |18302.655 | | 2.8654972 |15 |B5V+F5 |07117 01509| +380016 |RX Gem *|065011.5+331421 |EA/DS | 9.20 | 10.81 | 9.28 |V |40555.782 | | 12.2086588 |09 |A3IIIea+K1: |07096 00102| +380017 |RY Gem *|072724.2+153935 |EA/DS | 8.69 | 11.04 | 8.75 |V |39732.6328 | | 9.300567 |10 |A2Ve+K2IV |09224 00102| +380018 |RZ Gem *|060236.6+221403 |DCEP | 9.49 | 10.46 | |V |42714.970 | | 5.529286 |22 |F5-F9 |08632 01509| +380019 |SS Gem *|060835.1+223702 |RVA | 9.3 | 10.7 |< 10.7 |p |34365. | | 89.31 |19 |F8Ib-G5Ib |01512 00884| +380020 |ST Gem |073911.7+342858 |M | 11.0 | 15.5 | |p |43854. | | 246.23 |47 |M5e-M9e |00001 02535| +380021 |SU Gem *|061400.0+274212 |RVB | 9.8 | 14.1 | |V |40683.3 | | 50.00 | |F5-M3 |08044 00565| +380022 |SV Gem |060041.0+242826 |EA/SD: | 10.55 | 12.0 | |V |18662.488 | | 4.0061216 |15 |B3 |00125 00279| +380023 |SW Gem *|065930.2+260240 |SRA | 8.6 | 10.5 | |V |32360. | | 680. | |M5III |01514 00570| +380024 |SX Gem *|062814.4+203350 |EA/SD: | 11.0 | 11.9 | 11.3 |p |19031.270 | | 1.366877 |13 |A0 |01515 01515| +380025 |SY Gem |064039.1+311055 |N: | 9.2 |< 13. | |V | |1866:| | | |01516 BD | +380026 |SZ Gem |075343.5+191624 |RRAB | 10.98 | 12.25 | |V |27194.027 | | 0.5011365 |12 |A0 |04957 01517| +380027 |TT Gem |062542.7+193119 |CST | 14.2 | | |p | | | | |M0 |00911 BD | +380028 |TU Gem |061053.1+260053 |SRB | 9.4 | 12.5 | |p | | | 230. | |C6,4(N3) |01505 08953| +380029 |TV Gem |061151.4+215206 |SRC | 8.54 | 9.8 | |B | | | | |K5.5-M1.3Iab | 03654| +380030 |TW Gem |070718.0+223031 |CST: | 8.49 | | |V | | | | |M0III |01505 BD | +380031 |TX Gem *|073600.9+165429 |EA/SD: | 10.0 | 11.3 |( 0.04 )|p |19848.412 | | 2.800014 |11 |A2V+A7V |01518 00279| +380032 |TY Gem |062957.4+163543 |M | 13.0 |< 16.3 | |p |34820. | | 408.2 | | |02535 02535| +380033 |TZ Gem |063736.8+193627 |EA/SD | 13.4 | 15.6 | |p |28495.75 | | 1.6777103 |14 *| |00001 USNO | +380034 |UU Gem |063729.9+144213 |M | 13.3 |< 17. | |p |34800. | | 433. | |M7-M9 |02535 02535| +380035 |UV Gem *|063844.2+181611 |UGSS | 14.7 | 18.5 | |p | | |( 54. ) | | |04063 08852| +380036 |UW Gem |064214.8+131904 |E | 15.5 | 17.5 | |p | | | 38. : | | |01520 09226| +380037 |UX Gem |064600.2+153949 |M | 12.7 |< 16. | |p |30215. | | 466. | |M8 |00911 GSC | +380038 |UY Gem |064555.6+125835 |M | 12.2 | 15.3 | |p |33300. | | 325.0 |40 | |00339 00339| +380039 |UZ Gem |071253.7+173917 |M | 11.8 |< 16.2 | |p |35370. | | 349.0 | |M9 |02535 02535| +380040 |VV Gem |062556.0+253224 |M | 12.0 |< 16.2 | |p |35520. | | 252.9 |35 | |02535 02535| +380041 |VW Gem |064208.6+312718 |LB | 8.14 | 8.52 | |V | | | | |C5,4(Na) |00179 BD | +380042 |VX Gem |071249.0+143604 |M | 10.8 |< 15.1 | |p |41280. | | 379.4 | |C7,2e-C9,1e(Nep) |00001 02535| +380043 |VY Gem | | | | | | | | | | | | |N +380044 |VZ Gem |080746. +305058:|N: | 8.7 | 16. : | |V |99040. :|1856 | | | | BD | +380045 |WW Gem *|061205.8+233003 |EB/KE | 9.9 | 10.5 | 10.3 |p |25984.257 | | 1.237811 | |B6 |00001 00884| +380046 |WX Gem |064522.9+321843 |CST | 10.8 | | |p | | | | |F2 | BD | +380047 |WY Gem *|061156.3+231225 |LC+E: | 8.89 | 9.8 | |B | | | | |M2epIab+B2V-B3V |01505 08953| +380048 |WZ Gem |071634.1+255944 |M | 9.0 | 15.0 | |V |38048. | | 330.8 |50 |M3e |00001 02535| +380049 |XX Gem |072613.5+332220 |M | 11.9 | 15.5 | |p |37779. | | 384.05 | |M9-M10e |00001 02535| +380050 |XY Gem |075709.3+211910 |M | 11.2 | 15.3 | |p |37731. | | 340.97 |29 |M8: |00001 01523| +380051 |XZ Gem |075703.9+322544 |CST: | 10.0 | 10.2 | |V | | | | |M6 |01524 | +380052 |YY Gem *|073437.4+315210 |EA/DM+UV | 8.91 | 9.60 | |V |24595.8172 | | 0.81428254 |07 *|M1Ve+M1Ve |03200 01525| +380053 |YZ Gem |073342.8+211521 |L: | 10.8 | 11.6 | |p | | | | |A6 |01529 01528| +380054 |ZZ Gem |062401.2+250153 |M | 12.4 | 16.0 | |p |33999. | | 317.0 |49 |C5,3e(Ne) |02535 02535| +380055 |AA Gem *|060634.9+261945 |DCEP | 9.36 | 10.11 | |V |37397.250 | | 11.30235 |47 |F6-G3Ib |01512 01509| +380056 |AB Gem |062614.1+190425 |LB | 13.8 | 16.0 | |p | | | | |C5,4(N3) |00911 GSC | +380057 |AC Gem *|063216.8+195023 |EB/DM: | 11.0 | 11.8 | 11.3 |p |38440.354 | | 1.66182414 | |A0 |09228 00228| +380058 |AD Gem |064307.5+205621 |DCEP | 9.45 | 10.23 | |V |41694.911 | | 3.787980 |28 |F5-G2: |08300 00321| +380059 |AE Gem |064736.9+285514 |EA/DS | 10.5 |< 12.3 | |p |35893.28 | | 11.4568 |05 |B8 |00001 00228| +380060 |AF Gem *|065039.6+212156 |EA/SD | 10.54 | 11.83 | 10.67 |V |27162.3095 | | 1.24350348 |20 *|A0 |09229 00228| +380061 |AG Gem |065313.8+352105 |LB | 10.4 | 11.0 | |p | | | | |M6 |00340 00228| +380062 |AH Gem *|065317.9+155923 |EW/KW | 14.4 | 14.9 | 14.8 : |p |25283.446 | | 0.3368 | | |00228 00228| +380063 |AI Gem *|065401.5+160447 |EB | 13.8 | 14.2 | 14.0 |p |25283.385 | | 0.7250 | | |00228 00228| +380064 |AK Gem |065459.7+134220 |RRAB | 13.60 | 14.70 | |B |25304.418 | | 0.52934 |22 | |00183 00228| +380065 |AL Gem *|065738.6+205333 |EA/D: | 9.80 | 10.39 | 9.85 |V |26324.4467 | | 1.3913385 |14 *|F5V |03660 00228| +380066 |AM Gem |070721.8+281756 |M | 12. |< 16.5 | |p |40915. | | 356.3 | |M10 |00001 02535| +380067 |AN Gem *|070857.5+194813 |EA/SD | 13.2 | 15.2 | 13.3 : |V |25274.886 | | 2.032457 |17 | |01535 01534| +380068 |AO Gem |075656.0+311002 |M | 13.0 |< 16.2 | |p |34318. | | 313.0 | | |02535 02535| +380069 |AP Gem |062621.5+155857 |LB | 14.0 | 15.6 | |p | | | | |M6.5 |00911 00531| +380070 |AQ Gem |062859.9+163554 |LB | 12.1 | 13.1 | |p | | | | |M6.5-M8 |00386 00531| +380071 |AR Gem |063108.1+162737 |SRA | 13.7 | 15.1 | |p |25632. | | 243. |50 |M6 |00911 00531| +380072 |AS Gem |063205.9+143114 |LB | 13.1 | 14.2 | |p | | | | |M6 |00386 00531| +380073 |AT Gem |064523.1+125150 |SRB | 11.3 | 13.6 | |p | | | 740. | |M6 |00407 01536| +380074 |AU Gem *|074527.5+304641 |M | 12.3 |< 16.5 | |p |35520. | | 424.1 | |M10 |02535 02535| +380075 |AV Gem *|064201.6+132451 |EA/SD | 12.4 | 13.9 | 12.8 : |p |27832.6099 | | 1.2216548 |17 *| |00908 00908| +380076 |AW Gem |072240.8+283017 |UGSS | 12.9 |< 17.5 | |p | | |( 330. :) | | |02808 08852| +380077 |AX Gem |063706.8+210704 |LB | 11.6 | 13.8 | |p | | | | |M5 |00134 00134| +380078 |AY Gem *|063156.2+194012 |EA/SD: | 10.8 | 11.9 | 10.9 |p |36631.326 | | 3.0536498 |09 *|A0 |00001 00409| +380079 |AZ Gem *|063433.4+142820 |EB/KE: | 11.8 | 12.4 | 12.4 |p |26000.564 | | 1.006183 | |A-F |01538 00196| +380080 |BB Gem *|063435.3+130445 |DCEP | 10.75 | 11.88 | |V |41839.695 | | 2.308207 |18 | |08300 01538| +380081 |BC Gem |070440.9+095613 |M | 11.7 | 15.5 | |p |34822. | | 229.7 | |M2 |02535 02535| +380082 |BD Gem |063443.1+153454 |EA/SD: | 11.9 | 13.8 | |p |27414.532 | | 1.616727 |14 *|A |05678 00542| +380083 |BE Gem |074436.1+140257 |M | 11.7 |< 16. | |p |34450. | | 410.0 | |M8 |02535 02535| +380084 |BF Gem |060155.0+261941 |SRA | 12.6 | 13.4 | |p |27395. | | 169. | |M5III |00609 02310| +380085 |BG Gem |060330.7+274151 |RV: | 13.6 | 14.8 | |p | | | 60. : | | |00609 00533| +380086 |BH Gem |060439.2+262518 |EA/SD | 13.6 | 16.0 | |p |26027.100 | | 6.24958 |13 *| |03661 02310| +380087 |BI Gem |060549.7+251442 |LB | 12.4 | 13.7 | |p | | | | |M6 |00612 00533| +380088 |BK Gem |062958.4+133655 |ISB: | 9.8 | 10.1 | |p | | | | |K5III |01251 BD | +380089 |BL Gem |063418.9+142515 |LB | 12.1 | 13.1 | |p | | | | |M6 |01251 01251| +380090 |BM Gem |072059.0+245958 |SRB | 11.5 | 12.1 | |p | | | 286. : | |C5,4J(Nb) |07213 BD | +380091 |BN Gem |073705.7+165415 |GCAS | 6.75 | 6.85 | |V | | | | |O8Vpe |00196 03654| +380092 |BO Gem |062501.3+175813 |EA/SD | 11.3 | 15.1 | |p |37027.269 | | 4.06860 |11 *|A2 |00001 00196| +380093 |BP Gem *|075914.4+203827 |M | 9.5 | 14.8 | |V |43955. | | 246.5 | |M8e |00001 02535| +380094 |BQ Gem |071322.3+160932 |SRB | 6.63 | 7.02 | |B | | | 50. : | |M4IIIab |05429 03654| +380095 |BR Gem |063619.9+265253 |M | 12.6 |< 16.2 | |p |39909. | | 155.80 | | |00001 02535| +380096 |BS Gem |061018.4+224512 |EA/SD | 14.7 | 16.0 | |p |28494.50 | | 1.050350 |13 *| |00911 02342| +380097 |BT Gem *|061141.1+231940 |EA/SD: | 13.9 | 15.3 | 14.0 : |p |28453.64 | | 1.2369358 |20 *| |00001 02342| +380098 |BU Gem |061219.1+225431 |LC | 5.74 | 8.1 | |V | | | | |M1-M2Ia-Iab | 01509| +380099 |BV Gem |061534.3+234453 |LB | 13.1 | 13.7 | |p | | | | |M4 |00911 02342| +380100 |BW Gem |061559.9+234451 |DCEP | 12.23 | 12.93 | |V |28183.38 | | 2.63501 |23 | |01542 01542| +380101 |BX Gem |062133.6+215607 |LB | 13.4 | 14.0 | |p | | | | |M5: |00911 02337| +380102 |BY Gem |062237.8+203334 |LB | 14.7 | 15.5 | |p | | | | |M5p |00911 02337| +380103 |BZ Gem |062309.4+215146 |LB | 13.0 | 14.0 | |p | | | | |M2 |00911 02337| +380104 |CC Gem |062427.0+183900 |SRB | 13.6 | 14.6 | |p | | | 134. | |M6-M8 |00911 00409| +380105 |CD Gem |062500.9+245522 |M | 12.8 |< 16.8 | |p |28978. | | 300. | | |00911 02535| +380106 |CE Gem |062612.6+164418 |M | 14.4 |< 17. | |p |28941. | | 299. | | |00911 02342| +380107 |CF Gem |062715.3+180424 |LB | 14.4 | 15.6 | |p | | | | |S |00911 02337| +380108 |CG Gem |062754.8+203310 |SRA | 12.5 | 14.2 | |p |28088. | | 192. |52 |M6.5-M8 |00911 02337| +380109 |CH Gem |062808.0+225428 |LB | 13.3 | 14.6 | |p | | | | | |00911 02342| +380110 |CI Gem *|063005.9+221851 |N: | 14.7 |< 18.0 | |p |29632. |1940 | | | |00911 02342| +380111 |CK Gem |063037.1+193828 |EA/SD | 13.2 | 15.4 | |p |28453.64 | | 1.412916 |14 *| |00911 02342| +380112 |CL Gem |063116.1+181421 |SRA | 11.9 | 13.3 | |p |28202. | | 258. |40 : |M6 |00911 00492| +380113 |CM Gem *|063135.3+175424 |EB/KE | 14.8 | 15.3 | 15.0 |p |28453.61 | | 1.403507 | | |00911 02337| +380114 |CN Gem |063233.7+175011 |SRA | 14.2 | 15.6 | |p |28172. | | 177. |36 |M7 |00911 02337| +380115 |CO Gem |063355.6+213204 |SR: | 13.3 | 14.2 | |p | | | 120. : | | |00911 02337| +380116 |CP Gem |063341.7+192936 |EA/SD | 13.7 | 15.8 | |p |28453.63 | | 2.4022685 |14 : | |00001 02337| +380117 |CQ Gem |063358.2+211438 |LB | 12.8 | 13.8 | |p | | | | | |00911 02342| +380118 |CR Gem |063423.9+160430 |LB | 10.9 | 12.10 | |B | | | | |C8,3e(N) |00911 BD | +380119 |CS Gem |063630.8+213753 |SR | 11.5 | 12.5 | |p | | | 96. | |M5 |00911 02342| +380120 |CT Gem |063641.7+182706 |LB | 13.9 | 15.6 | |p | | | | | |00911 02337| +380121 |CU Gem |063722.8+214430 |EA | 13.6 | 14.2 | |p |28108.44 | | 3.030008 |06 | |00911 02337| +380122 |CV Gem |063921.9+211038 |EA/SD | 14.9 |< 16.4 | |p |28251.38 | | 1.848381 |11 | |00911 02337| +380123 |CW Gem |063958.9+215234 |EA/SD | 12.3 | 13.6 | |p |28126.45 | | 1.678148 |12 | |00911 02342| +380124 |CX Gem |064003.8+214919 |EA/SD | 12.0 | 14.2 | |p |28183.42 | | 2.1636985 |16 *| |00001 02342| +380125 |CY Gem |064043.2+184620 |LB | 12.6 | 14.0 | |p | | | | |C3:,3(N) |00911 02337| +380126 |CZ Gem |064156.5+240824 |L | 13.4 | 14.0 | |p | | | | | |00911 02337| +380127 |DD Gem |064323.6+191453 |EA/SD | 13.2 | 15.2 | |p |28849.62 | | 3.80208 |13 *| |00001 02342| +380128 |DE Gem |064339.5+225607 |LB | 10.2 | 12.7 | |p | | | | |M6III: |00911 01543| +380129 |DF Gem |064703.2+161836 |LB | 13.7 | 14.7 | |p | | | | | |00911 02337| +380130 |DG Gem |064925.1+183744 |EA | 12.5 | 13.4 | |p |27098.37 | | 3.13152 |10 :*| |00911 00409| +380131 |DH Gem |063053.5+122846 |LB | 11.6 | 13.71 | |B | | | | |C4,5J(N2) |00386 00531| +380132 |DI Gem |064138.0+215128 |SRB | 10.8 | 12.0 | |p | | | 88. : | |M5 |01544 BD | +380133 |DK Gem |073110.9+290945 |SRB | 11.8 | 13.4 | |p | | | 124. : | |M1 |01545 01545| +380134 |DL Gem *|073037.0+153426 |SRA | 11.2 | 13.0 | |B |41416. | | 104.3 | | |08664 00346| +380135 |DM Gem |064412.1+295642 |NA | 4.8 | 16.5 | |V |16179. |1903 | | |pec(NOVA) |01887 00566| +380136 |DN Gem *|065454.4+320828 |NB | 3.6 | 15.76 | |B |19476. |1912 | | |pec(NOVA) |03666 00566| +380137 |DO Gem |060127.0+235119 |M | 14.8 |< 16.9 | |p |26346. | | 213. | |M5 |00612 02357| +380138 |DP Gem *|060224.4+272453 |EW | 13.4 | 14.0 | 14.0 |p |38413.174 | | 0.5584 | | |03165 02310| +380139 |DQ Gem |060308.6+263749 |L | 13.6 | 14.1 | |p | | | | | |00612 02357| +380140 |DR Gem |060323.1+240303 |EW: | 14.9 | 15.5 | |p |31446.52 | | 0.7133 : | | |00612 02357| +380141 |DS Gem |060519.5+223253 |INS: | 14.1 | 15.0 | |p | | | | | |00612 02357| +380142 |DT Gem |060658.1+252402 |RRC | 13.1 | 13.5 | |p |25984.422 | | 0.6112879 |45 |G0: |00612 00533| +380143 |DU Gem |062640.0+184214 |EA | 14.8 | 16.5 | |p | | | 3.32695 : | | |00407 02358| +380144 |DV Gem |062658.3+183959 |EA | 15.5 | 16.8 | |p |38410.24 | | 4.40042 |12 | |03668 02358| +380145 |DW Gem |063059.8+272708 |LB | 8.5 : | 11.9 | |p | | | | |M3-M7 |00680 02378| +380146 |DX Gem *|063354.6+142817 |DCEPS | 10.53 | 10.92 | |V |41866.668 | | 3.137486 |50 | |08637 00940| +380147 |DY Gem |063557.8+141246 |SRA | 11.2 | 12.6 | |p |27720. | | 1145. | |S8,5(M5) |00407 02359| +380148 |DZ Gem |063820.7+211851 |LB | 14.0 | 14.5 | |p | | | | | |00911 02337| +380149 |EE Gem |063918.3+131356 |M | 12.8 | 17.6 : | |p |28162. | | 288.9 |45 : |M6 |00407 02359| +380150 |EF Gem *|065101.8+172955 |EA/SD | 12.6 | 15.4 | |p |43925.514 | | 6.10264 |09 *| |00001 02346| +380151 |EG Gem |065751.9+130824 |EA/SD | 12.2 | 13.4 | |p |27344.635 | | 1.273392 |15 *| |00407 00156| +380152 |EH Gem |065927.6+121855 |M | 12.3 | 16.7 | |p |28544. | | 244.4 |51 | |00407 02352| +380153 |EI Gem |062503.3+191254 |LB | 14.0 | 15.4 | |p | | | | | |00407 02358| +380154 |EK Gem |062636.2+201441 |SRA | 13.3 | 15.3 | |p |28090. | | 193. | |M7: |00407 02358| +380155 |EL Gem *|062908.0+204843 |EA/KE: | 12.8 | 13.6 | 13.6 |p |28192.26 | | 1.4283286 |10 *| |00407 02358| +380156 |EM Gem |063023.0+220429 |SRA | 13.6 | 15.3 | |p |28190. | | 146. | | |00407 02358| +380157 |EN Gem *|063353.9+184118 |EB/KE | 13.6 | 14.2 | 13.8 |p |28494.47 | | 1.2076274 | | |00407 02358| +380158 |EO Gem |063418.4+232336 |LB | 13.2 | 15.2 | |p | | | | |C5,3(N) |00407 02358| +380159 |EP Gem |063647.5+145402 |SRB | 12.5 | 13.8 | |p | | | 835. | |M6.5 |00407 02346| +380160 |EQ Gem |063719.8+181249 |LB | 11.4 | 12.1 | |p | | | | |M0 |00407 02358| +380161 |ER Gem |063821.7+215704 |RR | 14.8 | 16.3 | |p |29168.618 | | 0.645866 | | |00407 02358| +380162 |ES Gem |063815.9+172340 |EA/SD: | 15.2 | 16.2 | |p |29167.555 | | 1.661124 |10 : | |00407 02359| +380163 |ET Gem |063926.3+210017 |LB | 13.1 | 14.1 | |p | | | | |M6.5 |00407 02358| +380164 |EU Gem |063942.0+171132 |EA/DS: | 13.7 | 14.9 | |p |29316.85 | | 52.2665 |08 *| |03165 02358| +380165 |EV Gem |064055.2+123454 |LB | 15.5 | 17.0 | |p | | | | |C5,5 |00407 02346| +380166 |EW Gem *|064449.9+241810 |RR | 13.7 | 14.7 | |p |30781.310 | | 0.523683 | | |00407 02358| +380167 |EX Gem |064526.2+202813 |SRA | 13.9 | 16.0 | |p |28144. | | 169.8 |40 : | |00407 02358| +380168 |EY Gem *|064532.5+171331 |EB/KE | 12.8 | 13.5 | 13.0 |p |28251.340 | | 0.941143 | | |00407 02358| +380169 |EZ Gem |064604.5+130502 |RV: | 14.4 | 16.3 | |p |38460. | | | | |03165 02359| +380170 |FF Gem |064750.2+170629 |SR | 12.2 | 15.4 | |p |28017. | | 393. | |C7,3e(N) |00407 02346| +380171 |FG Gem |064749.6+165148 |EA | 11.6 | 12.6 | |p |27102.40 | | 0.819129 |14 *| |00001 02346| +380172 |FH Gem |064849.5+175123 |LB | 12.5 | 13.1 | |p | | | | |M7 |00407 02358| +380173 |FI Gem |064909.1+160945 |LB | 12.8 | 14.2 | |p | | | | |M6.5 |00407 02352| +380174 |FK Gem |064920.2+121033 |LB | 10.4 | 10.9 | |p | | | | |M6.5 |00407 08953| +380175 |FL Gem |065009.7+134358 |CST: | 13.9 | 14.6 | |p | | | | | |03165 00491| +380176 |FM Gem |065043.8+175302 |L | 13.6 | 14.5 | |p | | | | | |00407 02359| +380177 |FN Gem |065054.2+142938 |LB | 11.0 | 12.5 | |p | | | | |M2 |03165 02359| +380178 |FO Gem |065328.5+125349 |E/SD | 14.7 | 15.8 | |p |45043.454 | | 0.6956 | | |00407 02346| +380179 |FP Gem |065533.4+153407 |CST: | 13.5 | | |p | | | | | |03165 01545| +380180 |FQ Gem |065624.1+175813 |EA | 13.0 | 14.2 | |p |28193.42 | | 2.88471 |11 *| |00407 02359| +380181 |FR Gem |065652.0+165614 |SRB | 11.9 | 13.5 | |p |28072. | | 133. |40 : |M6 |00407 02346| +380182 |FS Gem |065721.2+163014 |EA/SD | 13.7 | 16.6 | |p |30346.705 | | 4.32653 |11 | |00407 02352| +380183 |FT Gem *|065724.6+134206 |EW | 13.5 | 14.2 | 14.1 |p |30328.723 | | 0.587612 | | |03165 02346| +380184 |FU Gem |065746.9+174426 |LB | 13.9 | 15.3 | |p | | | | | |00407 02359| +380185 |FV Gem |065738.8+123150 |RRAB | 14.3 | 16.0 | |p |30377.35 | | 0.471805 |20 | |00407 02359| +380186 |FW Gem |065833.9+313826 |M | 10.4 |< 13. | |p |36836. | | 225.55 | |M0 |03670 02378| +380187 |FX Gem |065812.8+171449 |SRB | 12.2 | 13.4 | |p | | | 117. : | |M6 |00407 02359| +380188 |FY Gem |070132.9+145518 |LB | 12.6 | 13.8 | |p | | | | | |03165 00409| +380189 |FZ Gem |070135.3+150100 |M | 12.7 | 16.7 | |p |33261. | | 247. |45 : | |00407 00542| +380190 |GG Gem |070240.9+172937 |LB | 11.9 | 13.3 | |p | | | | |M4 |00407 02352| +380191 |GH Gem |070412.8+120334 |ZAND: | 12.4 | 14.6 | |p | | | | |F2: |08656 08656| +380192 |GI Gem |070440.9+132613 |RRAB | 12.39 | 13.46 | |V |30346.638 | | 0.4332653 |09 | |00407 02346| +380193 |GK Gem |070457.4+135647 |M | 12.6 |< 16.9 | |p |30507. | | 285. | | |00407 02346| +380194 |GL Gem |070459.5+105105 |LB | 12.4 | 13.1 | |p | | | | |M7 |00407 02346| +380195 |GM Gem |070529.8+103936 |EA | 13.1 | 14.0 | |p |30375.535 | | 1.35967 |12 :*| |00407 02352| +380196 |GN Gem |070614.9+113019 |LB | 13.4 | 14.5 | |p | | | | | |00407 02346| +380197 |GO Gem |070734.6+170147 |SRB | 11.8 | 12.7 | |p | | | 165. | |M4 |00407 02346| +380198 |GP Gem *|070929.2+125804 |EB/DM: | 13.1 | 13.5 | 13.5 |p |30327.695 | | 1.594736 | | |00407 02346| +380199 |GQ Gem |071002.9+144706 |RRAB | 13.6 | 14.6 | |p |30326.627 | | 0.570570 |19 | |00407 02352| +380200 |GR Gem *|062320.3+204958 |EB | 15.4 | 16.1 |< 15.9 |V |28835.620 | | 0.5274471 | | |02426 02358| +380201 |GS Gem |062629.6+184124 |SR | 11.3 | 12.4 | |p |33630. | | 148. : | |M7 |00202 01545| +380202 |GT Gem |063133.0+201725 |EA | 15.1 | 16.0 | |p |30735.49 | | 0.86 : | | |00407 02358| +380203 |GU Gem |065010.7+184625 |RRAB | 13.8 | 15.6 | |p |35509.347 | | 0.390333 |11 | |02426 02358| +380204 |GV Gem |065957.4+141635 |EA | 14.9 | 15.6 | |p |30381.60 | | | | |00407 02359| +380205 |GW Gem *|075229.0+270916 |EB/SD | 10.48 | 11.45 | 10.68 |V |25645.5798 | | 0.659444013 | |A5 |09230 02378| +380206 |GX Gem *|064609.1+342453 |EB/D: | 10.9 | 11.5 | 11.3 |p |25999.696 | | 1.35003708 | |G5 |01550 01550| +380207 |GY Gem |071723.6+294206 |LB | 11.0 | 11.9 | |p | | | | |M4 |00416 00832| +380208 |GZ Gem *|062406.8+184211 |EA | 13.6 | 14.1 | |V |35480.429 | | 0.612645 |30 *| |02426 02358| +380209 |HH Gem *|063706.9+130847 |EB/D | 13.6 | 14.2 | 13.8 |V |27474.25 | | 2.53048 | | |02426 02352| +380210 |HI Gem |071814.4+303809 |E | 12.0 | 13.1 | |p |39827.538 | | | |G-K |02808 02808| +380211 |HK Gem |071940.9+294212 |LB: | 11.9 | 14.2 | |p | | | | | |02808 02808| +380212 |HL Gem |060210.4+225812 |EA | 14. | 15.5 | |p | | | | | |04341 04341| +380213 |HM Gem |060308.8+251448 |UG: | 16.5 | 20.5 | |p | | | | | |04341 04341| +380214 |HN Gem |060556.5+242020 |EA | 15. | 16. | |p | | | | | |04341 04341| +380215 |HO Gem |060730.6+244214 |EA | 16. | 17. | |p | | | | | |04341 04341| +380216 |HP Gem |061146.9+245137 |EA | 16. | 18. | |p | | | | | |04341 04341| +380217 |HQ Gem |061204.5+252833 |UG: | 16.5 | 20. | |p | | | | | |04341 04341| +380218 |HR Gem *|061213.3+244243 |EA/SD | 11.4 | 12.5 | 11.7 |p |30319.688 | | 1.068963 |15 *| |07010 04065| +380219 |HS Gem |061523.6+234954 |RR | 15.5 | 16.5 | |p | | | | | |04341 04341| +380220 |HT Gem |061544.7+240051 |SR: | 17. | 18.5 | |p | | | | | |04341 04341| +380221 |HU Gem |062724.6+234931 |EA/SD: | 15.7 | 16.6 | |p |29168.610 | | 1.70026 : |20 :*| |07010 04065| +380222 |HV Gem |062851.6+240209 |M | 12.7 |< 18. | |p |38396. | | 386. | | |07010 04065| +380223 |HW Gem |062921.1+221102 |RRAB | 16.0 | 17.0 : | |p |29575.485 | | 0.561652 |14 | |07010 04065| +380224 |HX Gem |063139.7+160652 |LB: | 12.5 | 14. : | |p | | | | |C4,4(N) |04101 04101| +380225 |HY Gem *|063323.0+220720 |EW/KW | 16.7 | 17.5 | 17.5 |p |38406.320 | | 0.3342 | | |07010 04065| +380226 |HZ Gem |063526.9+251308 |E | 16. | 17. | |p |30319.684 | | | | |07010 04065| +380227 |II Gem *|063528.5+231222 |M | 15.3 |< 19. | |p |38775. | | 217.5 : | | |07010 04065| +380228 |IK Gem |063740.6+273624 |SRB | 11.2 | 13.0 | |p | | | 150. : | |M4 |04103 04103| +380229 |IL Gem |063940.9+203233 |RRAB | 14.5 | 15.8 | |p |29163.628 | | 0.499453 |20 | |07010 04065| +380230 |IM Gem |064023.5+214335 |EA/SD | 15.2 | 16.3 | |p |29231.593 | | 1.427281 |18 *| |07010 04065| +380231 |IN Gem |064050.9+173057 |EA/SD | 15.0 | 16.2 | |p |29250.580 | | 1.131194 |15 | |07010 04065| +380232 |IO Gem |064218.9+202305 |E | 16.2 |< 17. | |p |38407.588 | | 0.79 : | | |07010 04065| +380233 |IP Gem *|064454.0+221635 |EB | 13.8 | 15.2 | 14.5 |p |29168.640 | | 2.348980 | | |07010 04065| +380234 |IQ Gem |064523.6+182935 |LB | 12.5 | 13.5 | |p | | | | | |04111 04101| +380235 |IR Gem *|064734.5+280624 |UGSU | 10.7 |< 14.5 | |V | | |( 75. ) | |pec(UG) |09231 08852| +380236 |IS Gem |064941.3+323624 |SRC | 6.6 | 7.3 | |p | | | 47. : | |K3II |04113 04113| +380237 |IT Gem |065102.3+160522 |M | 11.5 | 14.5 | |p | | | | |C(R) |04101 04102| +380238 |IU Gem |065730.9+200206 |SR: | 12. | 14.5 | |p | | | | | |04101 04102| +380239 |IV Gem |071739.9+305437 |RR | 12.2 | 13.1 | |p | | | | | |02807 02807| +380240 |IW Gem |061153.4+241402 |LB | 14.8 | 15.7 | |p | | | | |C |07010 04065| +380241 |IX Gem |062001.9+241900 |M | 15. |< 17. | |p | | | | | |03910 03910| +380242 |IY Gem |062853.5+180954 |RRAB | 15.8 | 17. | |p |29231.525 | | 0.371098 |13 | |07010 04065| +380243 |IZ Gem *|062926.0+165841 |EA | 15.5 |< 17.5 | |p |38406.445 | | 19.02 :/N| | |03910 03910| +380244 |KK Gem |063047.4+183241 |EA | 13.5 | 14.5 | |p |38410.33 | | | | |03903 03903| +380245 |KL Gem |063057.9+160033 |M | 16. |< 17.5 | |p | | | | | |03910 03910| +380246 |KM Gem |063431.2+195829 |EA | 13.5 | 13.9 | |p |28809.650 | | 0.95422 |15 | |07010 04065| +380247 |KN Gem *| | | | | | | | | | | | |N +380248 |KO Gem |064200.7+242357 |EA | 15.5 | 17. | |p |38765.58 | | | | |03903 03903| +380249 |KP Gem |064211.5+161726 |SRB | 13.6 | 14.3 | |p |30000. | | 133.5 | | |07010 04065| +380250 |KQ Gem *|064347.4+155421 |EB/KW | 14.0 | 15.0 | 14.6 |p |29231.515 | | 0.4079925 | | |07010 04065| +380251 |KR Gem |064405.8+191745 |E | 16.3 | 16.8 | |p |38406.440 | | 0.54 : | | |07010 04065| +380252 |KS Gem |064524.5+243232 |RR | 15. | 16. | |p |38410.320 | | 2.86 /N| | |03910 03910| +380253 |KT Gem |064521.2+190447 |UGSS | 16. | 20. : | |p | | | | | |03903 03903| +380254 |KU Gem *|064550.5+170135 |EA | 15.2 | 16.3 | |p |30428.39 | | 6.15396 |10 | |07010 03910| +380255 |KV Gem *|064712.6+154334 |RRC: | 12.4 | 12.9 | |p |31028.619 | | 0.2185467 |40 | |03183 02352| +380256 |KW Gem |065007.7+243513 |EA | 14. | 16. | |p |38407.480 | | | | |03910 03910| +380257 |KX Gem |065148.9+153856 |EA | 16.0 | 16.8 | |p |30463.270 | | 2.93091 |15 *| |07010 03910| +380258 |KY Gem |065239.5+180215 |EA/DS | 12.7 | 14.6 | |p |27098.200 | | 12.3317 |12 *| |03183 00492| +380259 |KZ Gem *|065302.7+163951 |UG | 14.7 |< 18.5 | |p | | |( 258. ) | | |07010 03910| +380260 |LL Gem |070329.6+131803 |M | 14.8 |< 18. | |p |30530. | | 360.5 | | |07010 03910| +380261 |LM Gem *|070505.7+103646 |EA/SD | 15.2 | 17.1 : | |p |30996.570 | | 3.68853 |15 | |07010 03910| +380262 |LN Gem |060400.3+265223 |LB | 14.8 | 15.6 | |p | | | | |C |06953 03910| +380263 |LO Gem |060411.7+252000 |E | 11.5 | 12.0 | |p |38397.27 | | | | |06953 05515| +380264 |LP Gem |060505.1+264053 |EA/SD | 12.5 | 15.0 | |p |27046.66 | | 6.63126 |10 *| |06953 05515| +380265 |LQ Gem |060639.9+233244 |E: | 13.2 | 13.8 | |p |39878.287 | | | | |06953 03910| +380266 |LR Gem |061515.4+221804 |BCEP | 9.01 | 9.12 | |B | | | 0.23887 | |B0IV |05522 BD | +380267 |LS Gem |061528.5+272345 |SR: | 14.6 | 16.0 : | |p |38048. | | 346. : | | |06953 05527| +380268 |LT Gem |061825.6+233417 |E | 9.35 | 9.51 | |B | | | 0.6258 | |B1V |08665 BD | +380269 |LU Gem |061919.3+232810 |BCEP | 7.21 | 7.24 | |B | | | 0.21909 | |B0II |05522 BD | +380270 |LV Gem |063354.1+155507 |LB: | 11.8 | 16.5 : | |p | | | | |C(N:) |07010 05515| +380271 |LW Gem |063446.7+125838 |SRB | 15.2 | 16. | |p |30350. | | 159.7 : | | |07010 05515| +380272 |LX Gem *|064005.0+150640 |E | 15.4 | 16.0 | |p |38331.615 | | | | |07010 05515| +380273 |LY Gem |064300.2+175846 |E | 14.7 | 15.3 | |p |30377.62 | | 1.97 : | | |07010 05515| +380274 |LZ Gem |064406.0+143223 |E | 15.4 | 17.5 : | |p |38331.62 | | | | |07010 05515| +380275 |MM Gem |064527.5+174838 |EA/SD | 14.9 |< 16.7 | |p |30328.74 | | 5.90324 |10 *| |07010 05515| +380276 |MN Gem |064610.7+144753 |EA/SD | 15.3 | 17.0 : | |p |30377.60 | | 3.78067 |11 *| |07010 05515| +380277 |MO Gem *|064654.1+115600 |E: | 16.0 | 16.4 | |p |31143.42 | | | | |07010 05515| +380278 |MP Gem *|064833.4+193715 |EA | 15.4 |< 18. | |p |31145.427 | | | | |07010 04065| +380279 |MQ Gem |065339.4+151956 |EA/SD: | 15.3 |< 16.7 | |p |30346.59 | | 3.81989 |13 *| |07010 05515| +380280 |MR Gem |065524.2+161719 |E: | 14.4 | 14.7 | |p | | | | | |07010 03910| +380281 |MS Gem |065755.5+154602 |RRAB | 15.4 | 16.5 | |p |38373.589 | | 0.347611 |14 : | |07010 05515| +380282 |MT Gem |065821.4+182426 |EA | 14.3 | 16.5 | |p |30780.30 | | | | |07010 05515| +380283 |MU Gem *|065924.2+140451 |EB | 14.5 | 15.0 | 14.9 |p |30328.694 | | 0.726200 | | |07010 05515| +380284 |MV Gem |070053.5+125121 |UG | 15.3 | 17. | |p | | |( 64. :) | |pec(UG) |07010 05515| +380285 |MW Gem |070252.0+173116 |RRAB | 14.8 | 15.5 | |p |30428.346 | | 0.526386 |15 | |07010 05515| +380286 |MX Gem |070419.4+153524 |LB | 15.0 | 15.7 | |p | | | | | |07010 05515| +380287 |MY Gem |070421.7+153545 |RRAB | 15.4 | 16.1 | |p |31008.620 | | 0.51449 |06 | |05556 05556| +380288 |MZ Gem *|070435.3+104213 |EA/SD | 16.5 |< 17.5 | 16.7 |p |31441.55 | | 1.290032 |15 | |07010 05515| +380289 |NN Gem |070543.5+171235 |LB | 13.7 | 14.3 | |p | | | | | |07010 05515| +380290 |NO Gem |070530.2+103223 |IS: | 13.9 | 14.8 | |p | | | | | |07010 03910| +380291 |NP Gem |070225.5+174520 |LB: | 5.89 | 6.04 | |V | | | | |M1.5 |05841 BD | +380292 |NQ Gem *|073154.5+243013 |SR+ZAND | 7.4 | 7.99 | |V | | | 70. : | |C6,2(R9)eV |08460 BD | +380293 |NR Gem |064040.4+153305 |LB | 15.8 | 16.6 | |p | | | | | |07010 04065| +380294 |NS Gem |064837.0+200101 |LB | 15.2 | 15.8 | |p | | | | | |07010 04065| +380295 |NT Gem |065006.2+164210 |SRB: | 13.4 | 14.5 | |p | | | 340. : | | |07010 04065| +380296 |NU Gem |060208.7+273131 |LB: | 12.5 |< 14. | |p | | | | |C4,4(R) |00608 00608| +380297 |NV Gem |062539.5+180504 |LB | 15.8 | 16.4 | |p | | | | | |07010 04065| +380298 |NW Gem |063006.6+232843 |LB | 10.6 | 11.2 | |p | | | | | |07010 04065| +380299 |NX Gem |063054.6+232729 |LB | 11.6 | 12.3 | |p | | | | | |07010 04065| +380300 |NY Gem *|063917.8+223618 |SRB | 12.5 |< 15.5 | |p | | | 200. : | |C4-5,4(N) |08670 04101| +380301 |NZ Gem |074203.2+141231 |SR | 5.52 | 5.72 | |V | | | | |M3II-IIIS |06994 BD | +380302 |OO Gem |061147.9+221021 |LB | 11.0 | 11.8 | |R | | | | |M |08199 03903| +380303 |OP Gem |062750.4+170030 |EA | 14. | 14.5 | |p |38410.49 | | | | |03903 03903| +380304 |OQ Gem |063839.2+195340 |EA | 15. | 15.5 | |p |38406.65 | | | | |03903 03903| +380305 |OR Gem |064447.6+212639 |EA: | 13.5 | 14. | |p |39063.53 | | | | |03903 03903| +380306 |OS Gem *|075255.7+274448 |DSCTC | 9.53 |( 0.035 )| |B | | | 0.0553 | |A7 |09234 BD | +380307 |OT Gem |072427.6+153102 |GCAS | 6.0 | 6.44 | |V | | | | |B2III-Ve |04039 09235| +380308 |OU Gem |062610.3+184525 |BY | 6.76 |( 0.05 )| |V | | | | | |67436 BD | +380309 |OV Gem |064949.8+161210 |SXARI | 5.85 |( 0.10 )| |V | | | | | |68125 BD | +380310 |OW Gem |063141.8+170456 |EA/GS: | 9.0 | 10.9 | |B | | | | | |69150 69149| +380311 |OX Gem |060847.8+253844 |L | 8.1 | 9.1 | |p | | | | | |70057 70057| +380312 |OY Gem |065830.4+161926 |BE | 11.09 | 11.29 | |V | | | | | |70058 70058| +380313 |OZ Gem |073357.8+303038 |M | 0.5 | 1.9 | |L | | | | | |71002 2MASS| +380314 |PP Gem |065633.4+141855 |SR | 11.1 | 12.2 | |p | | | | | |72022 72090| +380315 |PQ Gem |075117.4+144424 |XPM | 13.7 | 14.50 | |B | | | | | |72091 72091| +380316 |PR Gem |065033.3+280406 |EW | 18.04 | 18.83 | |V | | | | | |73003 USNO | +380317 |PS Gem |070339.6+104613 |SRD | 7.24 | 7.58 | |V | | | | | |73164 BD | +380318 |PT Gem |075436.5+275959 |RRAB | 15.77 | 16.30 | |V | | | | | |73003 USNO | +380319 |PU Gem |060944.0+230649 |ACYG | 5.78 | 5.82 | |Hp| | | | | |HIP HIP | +380320 |PV Gem |061408.9+235911 |DSCTC | 7.58 | 7.64 | |Hp| | | | | |HIP HIP | +380321 |PW Gem |061600.1+234700 |EA: | 9.14 | 9.49 | |Hp| | | | | |HIP HIP | +380322 |PX Gem |061658.7+234427 |ACYG | 6.33 | 6.38 | |Hp| | | | | |HIP HIP | +380323 |PY Gem |062403.9+252501 |BE | 8.40 | 8.53 | |Hp| | | | | |HIP HIP | +380324 |PZ Gem |062715.8+145321 |BE: | 6.60 | 6.65 | |Hp| | | | | |HIP HIP | +380325 |QQ Gem |063305.6+165656 |E: | 7.62 | 7.74 | |Hp| | | | | |HIP HIP | +380326 |QR Gem |064100.0+251925 |LB | 7.58 | 7.73 | |Hp| | | | | |HIP HIP | +380327 |QS Gem |064628.7+205037 |DSCT | 8.86 | 8.97 | |Hp| | | | | |HIP HIP | +380328 |QT Gem |064816.5+143533 |EB | 7.66 | 8.06 | |Hp| | | | | |HIP HIP | +380329 |QU Gem |064943.3+252904 |LB: | 6.88 | 7.06 | |Hp| | | | | |HIP HIP | +380330 |QV Gem |065002.2+120329 |LB: | 6.83 | 6.92 | |Hp| | | | | |HIP HIP | +380331 |QW Gem |065046.1+292711 |EW | 10.34 | 10.73 | |Hp| | | | | |HIP HIP | +380332 |QX Gem |065413.6+330009 |LPB: | 8.16 | 8.22 | |Hp| | | | | |HIP HIP | +380333 |QY Gem |065742.9+175407 |E: | 7.08 | 7.20 | |Hp| | | | | |HIP HIP | +380334 |QZ Gem |065838.5+172805 |SRB | 8.49 | 8.63 | |Hp| | | | | |HIP HIP | +380335 |V0335 Gem |070205.5+214753 |EA | 7.90 | 8.05 | |Hp| | | | | |HIP HIP | +380336 |V0336 Gem |070239.1+312024 |SRB | 7.84 | 8.04 | |Hp| | | | | |HIP HIP | +380337 |V0337 Gem |070238.3+134659 |EA: | 8.52 | 8.89 | |Hp| | | | | |HIP HIP | +380338 |V0338 Gem |071115.4+243950 |LB: | 7.95 | 8.06 | |Hp| | | | | |HIP HIP | +380339 |V0339 Gem |071851.5+290603 |E: | 8.94 | 9.31 | |Hp| | | | | |HIP HIP | +380340 |V0340 Gem |072132.8+260933 |BY: | 7.62 | 7.86 | |Hp| | | | | |HIP HIP | +380341 |V0341 Gem |072618.3+255716 |LB | 8.24 | 8.42 | |Hp| | | | | |HIP HIP | +380342 |V0342 Gem |072930.9+350950 |LB: | 7.31 | 7.38 | |Hp| | | | | |HIP HIP | +380343 |V0343 Gem |072918.2+224719 |SRB | 7.61 | 7.86 | |Hp| | | | | |HIP HIP | +380344 |V0344 Gem |073419.6+144511 |DSCTC | 8.07 | 8.10 | |Hp| | | | | |HIP HIP | +380345 |V0345 Gem *|073830.2+334242 |DSCTC: | 7.82 | 7.88 | |Hp| | | | | |HIP HIP | +380346 |V0346 Gem |074105.8+165224 |SRD: | 8.37 | 8.51 | |Hp| | | | | |HIP HIP | +380347 |V0347 Gem |074409.7+141024 |LB: | 7.28 | 7.39 | |Hp| | | | | |HIP HIP | +380348 |V0348 Gem |074444.9+322046 |E: | 8.50 | 8.58 | |Hp| | | | | |HIP HIP | +380349 |V0349 Gem |062035.9+234632 |M: | 12.2 | 15.2 | |p | | | | | |75064 75064| +380350 |V0350 Gem |063412.2+141635 |M | 11.7 | 14.4 | |p | | | | | |75064 75064| +380351 |V0351 Gem |064304.3+150344 |M | 10.6 | 14.2 | |p | | | | | |75021 75021| +380352 |V0352 Gem |071836.1+153509 |M | 10.7 | 14.5 | |p | | | | | |75002 GSC | +380353 |V0353 Gem |075252.6+132256 |LB | 13.1 | 14.9 | |p | | | | | |75140 75141| +380354 |V0354 Gem |060500.9+274555 |SR: | 10.9 | 12.3 | |V | | | | | |76012 UCAC2| +380355 |V0355 Gem |070036.5+260818 |M | 10.5 |< 15.0 | |V | | | | | |76054 GSC | +380356 |V0356 Gem |071426.6+244240 |ACV | 6.89 |( 0.04 u )| |V | | | | | |76069 DM | +380357 |V0357 Gem |072428.4+143407 |SR: | 11.7 | 12.7 | |V | | | | | |76012 GSC | +380358 |V0358 Gem |072747.6+181437 |SR: | 11.5 | 12.8 | |V | | | | | |76012 USNO | +380359 |V0359 Gem |073031.5+223656 |SR: | 13.0 | 14.3 | |V | | | | | |76012 GSC | +380360 |V0360 Gem |074204.1+152033 |SR: | 11.0 | 12.1 | |V | | | | | |76012 76079| +380361 |V0361 Gem |074246.4+230946 |SR: | 12.0 | 12.6 | |V | | | | | |76012 GSC | +380362 |V0362 Gem |075323.8+142811 |SR: | 10.4 | 11.2 | |V | | | | | |76012 GSC | +380363 |V0363 Gem |075658.0+314853 |SR: | 11.2 | 12.3 | |V | | | | | |76012 GSC | +380364 |V0364 Gem |080137.5+290039 |SR: | 10.9 | 11.5 | |V | | | | | |76012 GSC | +380365 |V0365 Gem |080433.6+280555 |SR: | 12.4 | 13.6 | |V | | | | | |76012 GSC | +380366 |V0366 Gem |063856.4+252939 |SR: | 11.3 | 13.2 | |V | | | | | |77004 GSC | +380367 |V0367 Gem |064643.6+205322 |EA | 11.20 | 11.82 | |V | | | | | |77057 77057| +380368 |V0368 Gem |064747.2+163633 |M | 10.6 | 13.2 | |I | | | | | |77012 77013| +380369 |V0369 Gem |070223.3+255046 |RS | 7.95 | 8.12 | |V | | | | | |77060 DM | +380370 |V0370 Gem |072936.8+163802 |LB | 12.2 | 12.6 | |* | | | | | |77125 GSC | +380371 |V0371 Gem *|061019.4+240115 |DCEP | 10.5 | 11.6 | |V |52234.46 | | 2.1371 |40 |K0 |78082 78083| +380372 |V0372 Gem *|065055.8+222922 |EB | 12.5 |( 0.50 )|( 0.22 )|V |52327.425 | | 0.56914 | | |78092 GSC | +380373 |V0373 Gem *|071155.3+232456 |EB | 9.26 | 9.42 | 9.39 |V |53343.769 | | 1.60498 | |F8 |78011 DM | +380374 |V0374 Gem |071508.0+213523 |M | 12.3 |< 14. | |V | | | 300. : | |S |78098 78098| +380375 |V0375 Gem *|072246.0+170228 |EB | 12.7 | 13.6 | 13.4 |V |53044.612 | | 0.65264 | | |78319 GSC | +380376 |V0376 Gem |072901.8+315938 |BY | 7.73 |( 0.03 )| |V | | | 11.63 | |K2V |78018 DM | +380377 |V0377 Gem |074955.1+272148 |BY | 6.93 |( 0.05 )| |V | | | 6.46 | |G5IV |78005 DM | +380378 |V0378 Gem |060817.5+224229 |SR | 11.8 | 12.5 | |V | | | 150. | |C |79100 GSC | +380379 |V0379 Gem |060845.0+255118 |SRB | 11.3 | 12.4 | |V | | | 149. | | |79100 79008| +380380 |V0380 Gem |061612.8+253956 |EW | 13.15 | 14.0 : | 13.9 : |* |51613.752 | | 0.336611 | | |79009 79049| +380381 |V0381 Gem |063400.0+151703 |SR | 12.3 | 13.5 | |V | | | 107. | | |79064 79054| +380382 |V0382 Gem |064414.5+162404 |EA | 10.22 | 10.57 | 10.55 |* |53070.563 | | 1.446303 |11 |F8 |79004 DM | +380383 |V0383 Gem *|064742.1+235612 |EA | 12.78 | 13.6 : | 13.2 : |* |53345.698 | | 0.757285 |15 | |79003 79013| +380384 |V0384 Gem |065056.6+290156 |M | 13.0 | 18.1 | |B |35163. | | 327. | | |79100 79185| +380385 |V0385 Gem |065937.6+164039 |SRB | 12.0 | 13.4 | |V | | | 242. | | |79064 79059| +380386 |V0386 Gem |070249.6+172027 |EA | 12.24 | 14.5 : | 12.35 |* |53465.450 | | 3.30831 |06 : | |79003 79054| +380387 |V0387 Gem |071205.7+172248 |RRAB | 13.6 | 14.5 | |* |51536.396 | | 0.7244 |15 | |79025 79057| +380388 |V0388 Gem |071214.8+182350 |EB | 12.33 | 13.6 | 12.58 |* |51548.725 | | 0.605946 | | |79003 79057| +380389 |V0389 Gem |072103.3+254008 |EA | 8.74 | 8.92 | 8.78 |V |48536.929 | | 1.04776 |13 |A2 |79006 DM | +380390 |V0390 Gem |074703.1+145323 |EA | 11.32 | 11.95 | 11.83 : |* |52971.806 | | 2.14948 |08 |F0 |79006 79050| +380391 |V0391 Gem |060358.4+222834 |BY | 11.4 | 11.8 | |V | | | 0.3188 | |K0III |80021 GSC | NL80_2 +380392 |V0392 Gem |060813.2+241831 |DSCT | 16.47 | 16.80 | |V | | | 0.0691 | | |80243 80243| NL80_2 +380393 |V0393 Gem |060903.3+242315 |E | 16.90 | 17.14 | |V |53071.731 | | 0.3639 : | | |80243 80243| NL80_2 +380394 |V0394 Gem |061419.7+274423 |SR: | 12.8 | 13.7 | |* | | | 97. : | | |80001 USNO | NL80_2 +380395 |V0395 Gem |061634.0+251741 |SR: | 11.8 | 12.0 | |* | | | 104. | | |80001 GSC | NL80_2 +380396 |V0396 Gem *|062000.7+262059 |EA | 10.06 | 10.37 | 10.37 : |V |51465.85 | | 5.4966 |04 |A2 |80013 DM | NL80_2 +380397 |V0397 Gem |062244.3+183153 |RRC | 12.1 | 12.7 | |V |52649.710 | | 0.286692 |30 | |80001 GSC | NL80_2 +380398 |V0398 Gem |062403.1+225336 |BY | 10.24 | 10.36 | |V | | | 0.7696 | | |80021 DM | NL80_2 +380399 |V0399 Gem *|063018.0+254343 |EA | 10.39 | 11.09 | 10.44 |V |54372.884 | | 2.04642 |08 |A0 |80011 DM | NL80_2 +380400 |V0400 Gem *|063736.0+174733 |EA | 11.32 | 12.12 | 11.90 |V |51627.72 | | 11.3053 |03 : |A0 |80013 GSC | NL80_2 +380401 |V0401 Gem *|064016.1+202844 |EA | 12.45 | 13.4 | 12.55 |V |53715.792 | | 2.19763 |11 | |80011 USNO | NL80_2 +380402 |V0402 Gem *|064217.4+201648 |EW | 11.72 | 12.35 | 12.35 |V |51612.703 | | 0.399248 | | |80011 GSC | NL80_2 +380403 |V0403 Gem *|064401.1+224432 |DSCT | 12.3 | 12.7 | |V | | | 0.1177 | | |80259 GSC | NL80_2 +380404 |V0404 Gem *|064702.8+153723 |EW | 12.4 | 13.0 | 12.9 |V |53407.4513 | | 0.3487050 | | |80260 80260| NL80_2 +380405 |V0405 Gem *|064707.9+153837 |EW | 10.88 | 11.03 | 10.97 |V |54507.4007 | | 0.4621114 | | |80261 GSC | NL80_2 +380406 |V0406 Gem |064715.6+143439 |RS | 10.9 | 11.2 | |V | | | 11.217 | | |80002 80246| NL80_2 +380407 |V0407 Gem |064838.7+162447 |RS: | 11.9 | 12.1 | |* | | | 3.889 | | |80043 80043| NL80_2 +380408 |V0408 Gem |065007.3+163025 |EA | 11.53 | 11.90 | |V |53462.58 | | 38.044 |03 | |80011 GSC | NL80_2 +380409 |V0409 Gem *|065323.5+191024 |EB: | 13.6 | 14.3 | 13.9 |V |52678.7571 | | 0.5997 | | |80263 80263| NL80_2 +380410 |V0410 Gem *|065408.1+170203 |EA | 10.77 | 11.20 | 11.06 |V |51548.730 | | 3.47041 |05 |A5 |80042 DM | NL80_2 +380411 |V0411 Gem *|065432.6+133342 |EW | 15.47 |( 0.31 *)|( 0.26 *)|R |54155.742 | | 0.43257 | | |80264 80264| NL80_2 +380412 |V0412 Gem *|065446.0+133531 |EW | 16.36 |( 0.6 *)|( 0.5 *)|R |54155.699 | | 0.32667 | | |80264 80264| NL80_2 +380413 |V0413 Gem *|065447.7+133649 |EW | 14.54 |( 0.45 *)|( 0.40 *)|R |54155.683 | | 0.53284 | | |80264 80264| NL80_2 +380414 |V0414 Gem *|065454.3+181250 |EB | 10.61 | 10.83 | 10.71 |V |53483.487 | | 1.47597 | |A2 |80011 DM | NL80_2 +380415 |V0415 Gem *|065557.5+153533 |EW | 12.4 | 12.9 | 12.8 |V |53381.5558 | | 0.350606 | | |80252 GSC | NL80_2 +380416 |V0416 Gem *|065947.3+222949 |EW | 12.7 | 13.2 | 13.1 |V |53336.7611 | | 0.256250 | | |80002 GSC | NL80_2 +380417 |V0417 Gem |065948.4+274159 |EW: | 9.80 | 9.92 | |V |53007.73 | | 0.39331 | |G5 |80001 DM | NL80_2 +380418 |V0418 Gem *|070408.7+262510 |XM | 16.3 |( 0.5 *)| |R | | | 0.1706 | |pec(e) |80255 80255| NL80_2 +380419 |V0419 Gem |070548.0+153833 |SRB | 12.3 | 13.3 | |V | | | 220. | | |80001 GSC | NL80_2 +380420 |V0420 Gem |070818.6+310508 |BY | 11.14 |( 0.08 *)| |V | | | 1.1200 | | |80021 GSC | NL80_2 +380421 |V0421 Gem *|071207.3+255750 |EB: | 15.0 | 15.8 | 15.3 |R |52999.336 | | 0.42310 | | |80271 80271| NL80_2 +380422 |V0422 Gem *|071241.7+160505 |EA | 8.15 | 8.31 | 8.28 |V |53783.665 | | 7.5424 |06 |F2V |80011 DM | NL80_2 +380423 |V0423 Gem |071341.1+273104 |BY | 11.21 | 11.30 | |V | | | 4.2860 | | |80021 GSC | NL80_2 +380424 |V0424 Gem |071650.5+214500 |RS | 9.8 | 10.2 | |V | | | 40.35 | | |80034 GSC | NL80_2 +380425 |V0425 Gem *|071832.9+145944 |EA | 12.6 | 13.6 | 12.78 |V |55532.60 | | 4.24211 |10 | |80001 80033| NL80_2 +380426 |V0426 Gem |071925.5+225800 |RRAB | 12.4 | 13.2 | |V |51612.68 | | 0.52311 |12 | |80026 GSC | NL80_2 +380427 |V0427 Gem |072134.4+151843 |RRAB | 13.95 | 14.95 | |V |53470.563 | | 0.475541 |14 | |80135 USNO | NL80_2 +380428 |V0428 Gem *|072325.7+260732 |EB | 10.93 | 11.33 | 11.07 |V |51515.678 | | 0.491507 | |K |80042 GSC | NL80_2 +380429 |V0429 Gem |072343.6+202459 |BY | 9.86 | 10.08 | |V | | | 2.799277 | |K5Ve |80002 GSC | NL80_2 +380430 |V0430 Gem |073859.3+235038 |E: | 16.1 |( 0.4 : *)| |V | | | | | |80133 2MASS| NL80_2 +380431 |V0431 Gem |073924.7+235625 |EW: | 17.5 |( 0.2 *)| |V | | | 0.254 : | | |80133 USNO | NL80_2 +380432 |V0432 Gem *|074016.7+233753 |DSCT: | 18.4 |( 0.25 *)| |V | | | 0.127 : | | |80133 USNO | NL80_2 +380433 |V0433 Gem |074017.1+234009 |EP: | 18.1 |( 0.1 *)| |V | | | | | |80133 USNO | NL80_2 +380434 |V0434 Gem |074813.4+290513 |NL | 18.6 | 19.3 | |g | | | | |pec(e) |80030 USNO | NL80_2 +380435 |V0435 Gem *|075457.7+215409 |EW | 14.2 |( 0.45 *)|( 0.35 *)|R |54504.4944 | | 0.3365 | | |80288 GSC | NL80_2 +380436 |V0436 Gem |075624.6+314144 |GDOR | 7.89 |( 0.06 )| |B | | | 0.7248 | |F2IV-V |80289 HIP | NL80_2 +389006 |zet Gem *|070406.5+203413 |DCEP | 3.62 | 4.18 | |V |43805.927 | | 10.15073 |50 |F7Ib-G3Ib |00001 06225| +389007 |eta Gem *|061452.7+223025 |SRA+EA | 3.15 | 3.9 | |V |37725. | | 232.9 |50 |M3IIIab |04513 06225| +389012 |mu. Gem *|062257.6+223049 |LB | 2.75 | 3.02 | |V | | | | |M3.0IIIab |06590 BD | +389018 |sig Gem *|074318.7+285301 |RS | 4.13 | 4.29 | |V |44677.1 | | 19.423 | |K1III |09239 BD | +389024 |ome Gem |070224.8+241256 |CEP: | 5.14 |( 0.086 )| |V | | | 0.7282 | |G5II |07964 BD | +390001 |R Gru |214831.8-465450 |M | 7.4 | 14.9 | |V |40957. | | 331.96 |42 |M5e-M7II-IIIe |00001 00002| +390002 |S Gru |222605.5-482619 |M | 6.0 | 15.0 | |V |40608. | | 401.51 |43 |M5e-M8IIIe |00001 00002| +390003 |T Gru |222540.9-373409 |M | 7.8 | 12.3 | |p |42072. | | 136.49 |48 |M1Iae-M2Ibe |00001 00002| +390004 |U Gru *|213148.8-450242 |EA/SD | 11.0 | 14.0 |( 0.05 )|p |11202.754 | | 1.88048 |15 |A5 |01699 08588| +390005 |V Gru |215153.5-422224 |EW/KW | 9.5 | 9.8 | |p |44463.8040 | | 0.4834455 | |F2V |00001 CoD | +390006 |W Gru *|224118.7-435029 |EA/AR | 9.4 | 10.0 | 10.0 |p |30132.149 | | 2.9685036 |11 |F6IV+F6IV |09218 08953| +390007 |X Gru *|231942.4-553642 |EA/SD | 10.64 | 14.33 | 10.69 |V |41858.8235 | | 2.1236413 |16 |A0 |08682 CoD | +390008 |Y Gru |224720.1-475458 |EA/SD | 10.4 | 12.1 | |p |27987.535 | | 1.716897 |12 *| |09219 03674| +390009 |Z Gru *|213437.1-490729 |RR | 11.80 | 12.61 | |V |39773.362 | | 0.266387 |25 |F0-F7: |05233 02384| +390010 |RR Gru |213803.6-444112 |RRAB | 12.0 | 12.7 | |V |34385.582 | | 0.552532 |18 | |00080 02384| +390011 |RS Gru *|214304.2-481122 |DSCT | 7.92 | 8.51 | |V |34325.2931 | | 0.14701131 |24 |A6-A9IV-F0 |09220 08953| +390012 |RT Gru *|215158.4-455907 |RRAB | 12.15 | 13.20 | |V |41151.555 | | 0.5121749 |20 |F0:-F6 |05233 02384| +390013 |RU Gru |222700.6-371118 |EA | 11.00 | 11.4 | |V |34546.648 | | 1.89664 |12 |A0 |00080 CoD | +390014 |RV Gru *|223924.4-465232 |EW/KW | 11.00 | 11.4 | 11.4 |V |34356.434 | | 0.2595186 | | |00080 CoD | +390015 |RW Gru *|224207.0-440912 |RRAB | 11.76 | 12.85 | |V |34360.388 | | 0.550306 |15 |F3-F5 |05233 02384| +390016 |RX Gru *|225816.7-414934 |EB/KE | 10.5 | 10.8 | 10.7 |V |34357.410 | | 0.743128 | | |00080 CoD | +390017 |RY Gru *|231925.6-401726 |EA/SD: | 11.7 | 12.3 | |V |34275.281 | | 2.01063 |14 | |00080 CoD | +390018 |RZ Gru *|224712.0-424439 |NL | 11.5 | 13.0 | |p | | | | |e+cont |09222 09222| +390019 |SS Gru |212806.3-370936 |RRAB | 11.8 | 13.2 | |V |28336.628 | | 0.4896194 |14 | |04183 02386| +390020 |ST Gru |215058.3-461146 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +390021 |SU Gru |215842.2-425516 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +390022 |SV Gru |215849.4-441930 |EA/SD: | 12.5 | 14.5 | |p | | | | | |06561 06561| +390023 |SW Gru |215911.1-442104 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +390024 |SX Gru |220421.4-452505 |RR | 12.5 | 13.5 | |p | | | | | |04001 04001| +390025 |SY Gru |220445.8-434235 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +390026 |SZ Gru |220817.9-423633 |RR | 16. | 17. | |p | | | | | |04001 04001| +390027 |TT Gru |221025.6-434136 |RRAB | 13.3 | 14.6 | |p |28016.550 | | 0.4760338 |12 | |04183 04208| +390028 |TU Gru |221336.5-415817 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +390029 |TV Gru |221405.7-433747 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +390030 |TW Gru |221507.2-445013 |RR | 14. | 14.5 | |p | | | | | |04001 04001| +390031 |TX Gru |221617.6-414037 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +390032 |TY Gru |221639.4-395617 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +390033 |TZ Gru |221720.6-503435 |RRAB | 12.6 | 13.8 | |p |27992.554 | | 0.7024718 |10 | |04183 02384| +390034 |UU Gru |221746.2-493817 |RRAB | 13.4 | 14.1 | |p |36814.460 | | | | |08685 04001| +390035 |UV Gru |221953.9-474137 |EW: | 13.3 | 13.8 | |p | | | | | |08685 04001| +390036 |UW Gru *|222013.1-543329 |RRAB | 12.60 | 13.62 | |V |43689.640 | | 0.5482104 |12 | |09223 06561| +390037 |UX Gru |222526.3-461029 |RRAB | 14.1 | 14.7 | |p |36813.500 | | | | |08685 04001| +390038 |UY Gru |222620.2-405929 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +390039 |UZ Gru |222655.9-403143 |RR | 13.5 | 14.5 | |p | | | | | |04001 04001| +390040 |VV Gru |222727.3-493835 |RRAB | 13.6 | 14.8 | |p |36814.478 | | 0.45213 |15 | |08685 04001| +390041 |VW Gru *|222903.2-432901 |M | 12.4 |< 16.5 | |p |36720. :| | | | |08685 04001| +390042 |VX Gru |222939.5-490031 |RRAB | 14.1 | 15.3 | |p |36814.350 | | | | |08685 04001| +390043 |VY Gru *|223230.4-465313 |M | 13.3 |< 16.5 | |p | | | | | |08685 04001| +390044 |VZ Gru *|223350.2-501223 |IS: | 14.1 | 15.6 | |p | | | | | |08685 04001| +390045 |WW Gru |223704.2-471107 |RRAB | 14.4 | 15.4 | |p |36813.276 | | 0.682 |08 | |08685 04001| +390046 |WX Gru |224201.1-443233 |RRAB | 15.1 | 15.9 | |p |36813.276 | | 0.59285 |10 : | |08685 04001| +390047 |WY Gru |224251.3-460513 |RRAB | 14.7 | 16.0 | |p |36788.432 | | 0.54685 |08 | |08685 04001| +390048 |WZ Gru |224446.0-422142 |RR | 13. | 14. | |p | | | | | |06561 06561| +390049 |XX Gru |224459.4-500544 |RRAB | 15.3 | 16.3 | |p |36776.402 | | 0.54 |10 | |08685 04001| +390050 |XY Gru |224613.0-500027 |E: | 14.9 | 15.3 | |p | | | | | |08685 04001| +390051 |XZ Gru |224734.7-390333 |RRC | 10.4 | 10.7 | |p |38260.438 | | 0.34741 |50 | |04383 CoD | +390052 |YY Gru |224846.6-505928 |EB: | 12.4 | 13.2 | |p |36729.561 | | | | |08685 04001| +390053 |YZ Gru |224906.2-445405 |RRAB | 15.8 |< 16.7 | |p |36813.471 | | 0.6974 |10 : | |08685 04001| +390054 |ZZ Gru |224958.2-473208 |EA/SD: | 13.9 | 15.3 | |p |36813.370 | | 5.049 /N| | |08685 04001| +390055 |AA Gru |224955.7-462129 |RR: | 12.5 | 13.1 | |p |36814.249 | | | | |08685 04001| +390056 |AB Gru |225105.8-471841 |RRAB | 15.9 | 16.9 | |p |36814.336 | | | | |08685 04001| +390057 |AC Gru |225149.4-502931 |RRAB | 14.4 | 15.7 | |p |36814.385 | | 0.6405 |14 | |08685 04001| +390058 |AD Gru |225301.7-443239 |RRAB | 14.7 | 15.6 | |p |36793.506 | | 0.75924 |15 | |08685 04001| +390059 |AE Gru |225551.7-404017 |SR | 11.5 | 14. | |p | | | | |Ce |06561 06561| +390060 |AF Gru |225629.2-472147 |E: | 11.9 | 12.4 | |p | | | | | |08685 04001| +390061 |AG Gru |225835.3-451347 |RRAB | 15.6 | 16.6 | |p |36813.276 | | 0.47215 |15 : | |08685 04001| +390062 |AH Gru |225911.6-495614 |RRAB | 14.5 | 15.5 | |p |36813.488 | | 0.558788 |10 | |08685 04001| +390063 |AI Gru |225917.4-434917 |RR | 14. | 15. | |p | | | | | |04001 04001| +390064 |AK Gru *|230501.9-435609 |EA | 11.0 | 11.5 | |p |36732.607 | | 0.49389 |20 | |08685 04001| +390065 |AL Gru |230544.3-481345 |RRAB | 15.3 | 16.0 | |p |36813.330 | | 0.6909 |15 | |08685 04001| +390066 |AM Gru |230547.2-464338 |RR: | 16.2 |< 17.0 | |p | | | | | |08685 04001| +390067 |AN Gru |230755.2-472541 |IS: | 14.9 | 16.1 | |p | | | | | |08685 08852| +390068 |AO Gru |230810.8-482208 |RRAB | 12.5 | 13.8 | |p |36813.276 | | 0.5725 |15 | |08685 04001| +390069 |AP Gru *|231412.5-503911 |RRAB | 12.4 | 13.5 | |p |27992.643 | | 0.5079836 | | |04183 02385| +390070 |AQ Gru |232218.0-420524 |RR | 12. | 13. | |p | | | | | |06561 06561| +390071 |AR Gru *|223641.7-381809 |EB | 10. | 10.6 | 10.6 |p |27994.600 | | 2.296720 | | |05557 05557| +390072 |AS Gru |230038.9-413052 |SRB | 9.67 | 9.90 | |V | | | 24. : | |M3III |05973 CoD | +390073 |AT Gru |214238.3-413934 |SR: | 12.5 | 13.5 | |p | | | | | |06561 06561| +390074 |AU Gru |221003.8-423835 |RR: | 13. | 14. | |p | | | | | |04001 04001| +390075 |AV Gru *|221635.8-483503 |L: | 15.9 |< 16.8 | |p | | | | | |08685 04001| +390076 |AW Gru *|221908.8-480206 |E: | 10.5 | 11.0 | |p |36758. | | 120. :/N| |M4III |08685 04001| +390077 |AX Gru |225001.0-551403 |LB: | 7.0 |( 0.16 )| |V | | | | |M3III |04456 CoD | +390078 |AY Gru |230345.3-495738 |L: | 10.8 | 11.6 | |p | | | | | |00085 CoD | +390079 |AZ Gru |223508.3-451735 |RRAB | 15.4 | 16.2 | |p |36814.249 | | | | |08685 04001| +390080 |BB Gru |223927.6-453529 |RRAB | 13.8 | 14.7 | |p |36781.498 | | 0.597 |20 | |08685 04001| +390081 |BC Gru *|224449.1-481013 |EW:/KW: | 9.9 | 10.3 | 10.3 |p |36814.292 | | 0.26617 | | |08685 04001| +390082 |BD Gru *|224727.6-503551 |EW/KE: | 14.3 | 15.0 | 14.9 |p |36758.582 | | 0.718 | | |08685 04001| +390083 |BE Gru |225040.2-443946 |RRAB | 13.1 | 14.3 | |p |36813.300 | | 0.6054 |12 | |08685 04001| +390084 |BF Gru |225652.3-484823 |E: | 11.2 | 11.8 | |p |36731.569 | | 55.8 : | | |08685 04001| +390085 |BG Gru |230752.3-494548 |RRAB | 14.0 | 14.9 | |p |36816.287 | | 0.560295 |15 | |08685 04001| +390086 |BH Gru *|230757.6-492521 |EW/KW: | 14.5 | 15.3 | 15.2 : |p |36732.592 | | 0.340184 | | |08685 04001| +390087 |BI Gru |222110.4-440352 |E | 14.7 | 15.2 | |p |36733.606 | | | | |08685 04001| +390088 |BK Gru |222437.6-390737 |ACV | 6.82 | 6.89 | |V | | | 2.48 | |A3p(Sr) |08375 CoD | +390089 |BL Gru |225231.1-490832 |RR: | 13.2 | 14.1 | |p |36813.532 | | | | |08685 04001| +390090 |BM Gru |230357.1-485022 |L: | 15.2 | 16.2 | |p | | | | | |08685 04001| +390091 |BN Gru |230451.2-451122 |E | 14.0 | 15.5 | |p |36813.276 | | | | |08685 04001| +390092 |BO Gru |230658.6-435439 |E | 12.1 | 12.6 | |p |36814.340 | | | | |08685 04001| +390093 |BP Gru |230146.8-445027 |ACVO | 7.6 |( 0.004 )| |B | | | | | |67440 CoD | +390094 |BQ Gru |213330.5-450953 |RR | 19.6 | 20.4 | |B | | | | | |68127 68127| +390095 |BR Gru |213417.1-443821 |RR | 15.5 | 16.3 | |B | | | | | |68127 68127| +390096 |BS Gru |213423.3-464039 |RR | 16.1 | 17.2 | |B | | | | | |68127 68127| +390097 |BT Gru |213709.2-461144 |RR | 17.1 | 18.4 | |B | | | | | |68127 68127| +390098 |BU Gru |213711.8-440222 |RR | 17.4 | 18.8 | |B | | | | | |68127 68127| +390099 |BV Gru |213931.1-425137 |RR | 16.4 | 17.6 | |B | | | | | |68127 68127| +390100 |BW Gru |213958.3-461906 |RR | 15.2 | 16.2 | |B | | | | | |68127 68127| +390101 |BX Gru |214029.9-423419 |RR | 15.7 | 16.5 | |B | | | | | |68127 68127| +390102 |BY Gru |214041.3-465635 |RR | 14.4 | 15.4 | |B | | | | | |68127 68127| +390103 |BZ Gru |215702.1-374449 |DSCTC | 6.13 | 6.21 | |V | | | | | |68079 CoD | +390104 |CC Gru |223908.4-524131 |DSCTC | 6.62 | 6.68 | |V | | | | | |68079 CPD | +390105 |CD Gru |222610.7-451412 |M: | 2.48 | 2.86 | |K | | | | | |69152 USNO | +390106 |CE Gru |213756.4-434214 |AM | 17.4 | 19.5 | |V | | | | | |70060 70059| +390107 |CF Gru |214122.9-450431 |NL | 19.9 |( 0.85 )| |V | | | | | |71215 71216| +390108 |CG Gru |230754.5-472734 |EW/KW | 15.06 | 15.47 | |V | | | | | |72092 72092| +390109 |CH Gru |212835.1-423231 |NL | 18.3 | 19.8 | |B | | | | | |73165 73166| +390110 |CI Gru |213306.8-422852 |UG | 16.4 | 18.5 | |B | | | | | |73165 73166| +390111 |CK Gru |232406.8-450458 |M | 2.83 | 4.51 | |J | | | | | |73014 GSC | +390112 |CL Gru |212913.9-412457 |SRB | 8.61 | 8.82 | |Hp| | | | | |HIP HIP | +390113 |CM Gru |213609.9-475719 |SRB | 8.55 | 8.86 | |Hp| | | | | |HIP HIP | +390114 |CN Gru |214935.7-364149 |LB | 8.00 | 8.16 | |Hp| | | | | |HIP HIP | +390115 |CO Gru |215422.2-411558 |SRB | 7.70 | 8.17 | |Hp| | | | | |HIP HIP | +390116 |CP Gru |215837.8-454436 |EA | 7.73 | 8.09 | |Hp| | | | | |HIP HIP | +390117 |CQ Gru |221202.3-430805 |LB: | 8.45 | 8.55 | |Hp| | | | | |HIP HIP | +390118 |CR Gru |221256.2-555642 |LB | 7.20 | 7.32 | |Hp| | | | | |HIP HIP | +390119 |CS Gru |221535.2-390051 |BY: | 9.45 | 9.56 | |Hp| | | | | |HIP HIP | +390120 |CT Gru |222546.2-494933 |LB | 7.77 | 8.16 | |Hp| | | | | |HIP HIP | +390121 |CU Gru |223133.3-532257 |LB: | 8.17 | 8.30 | |Hp| | | | | |HIP HIP | +390122 |CV Gru |223158.4-433253 |LB: | 7.35 | 7.46 | |Hp| | | | | |HIP HIP | +390123 |CW Gru |223639.0-481822 |SRB | 6.65 | 6.76 | |Hp| | | | | |HIP HIP | +390124 |CX Gru |223747.7-395126 |ELL: | 6.66 | 6.71 | |Hp| | | | | |HIP HIP | +390125 |CY Gru |223827.9-365342 |LB | 8.99 | 9.41 | |Hp| | | | | |HIP HIP | +390126 |CZ Gru |223928.2-504053 |SRB | 7.74 | 7.93 | |Hp| | | | | |HIP HIP | +390127 |DD Gru |224103.0-512732 |LB | 7.99 | 8.16 | |Hp| | | | | |HIP HIP | +390128 |DE Gru |224330.2-400744 |LB | 7.38 | 7.58 | |Hp| | | | | |HIP HIP | +390129 |DF Gru |225832.0-421717 |EA | 10.35 | 10.78 | |Hp| | | | | |HIP HIP | +390130 |DG Gru |230130.7-543013 |BY: | 12.21 | 12.73 | |Hp| | | | | |HIP HIP | +390131 |DH Gru |230451.5-495926 |BY: | 11.71 | 12.07 | |Hp| | | | | |HIP HIP | +390132 |DI Gru |230648.0-384739 |E: | 8.78 | 8.85 | |Hp| | | | | |HIP HIP | +390133 |DK Gru |230750.3-560836 |SRB: | 7.87 | 7.98 | |Hp| | | | | |HIP HIP | +390134 |DL Gru |231009.7-403530 |LB | 5.86 | 5.98 | |Hp| | | | | |HIP HIP | +390135 |DM Gru |231431.6-535729 |BY: | 11.06 | 11.27 | |Hp| | | | | |HIP HIP | +390136 |DN Gru |231656.7-515144 |LB: | 8.32 | 8.42 | |Hp| | | | | |HIP HIP | +390137 |DO Gru |232231.3-473113 |LB: | 8.32 | 8.47 | |Hp| | | | | |HIP HIP | +390138 |DP Gru |232540.6-425359 |EA | 8.31 | 8.63 | |Hp| | | | | |HIP HIP | +390139 |DQ Gru |232354.5-534831 |DSCTC: | 6.18 | 6.25 | |Hp| | | | | |76247 DM | +390140 |DR Gru |223418.7-541753 |DSCTC | 7.44 | 7.51 | |Hp| | | 0.0666 | |A3IV |78037 DM | +390141 |DS Gru |224311.6-413159 |M | 9.6 | 15.0 | |V |52476 | | 259.7 | |Me |78090 GSC | +390142 |DT Gru |212818.1-440917 |EA | 10.91 | 11.34 | 11.00 |V |52831.720 | | 0.801683 |15 | |79018 DM | +390143 |DU Gru |220301.0-392124 |EB | 11.79 | 12.42 | 12.24 |V |52996.535 | | 0.601954 | | |79018 DM | +390144 |DV Gru *|221238.5-541727 |EA | 7.73 | 7.85 | 7.74 |V |48398.245 | | 4.818025 |05 |F8V |79001 DM | +390145 |DW Gru *|223238.0-474247 |EA | 11.25 | 11.65 : | 11.6 : |V |53298.633 | | 7.3334 |02 : | |79003 79063| +390146 |DX Gru |223259.2-444845 |SRB | 11.0 | 12.3 | |V | | | 128. | | |79064 DM | +390147 |DY Gru |232314.3-373056 |EW | 9.37 | 10.04 | 10.02 |V |52992.612 | | 0.336029 | |K1V |79018 DM | +390148 |DZ Gru |213332.5-491838 |RRAB | 13.35 | 14.45 | |V |52955.650 | | 0.567054 |09 | |80135 GSC | NL80_3 +390149 |EE Gru |213829.7-490053 |RRAB | 13.1 | 14.1 | |V |52757.897 | | 0.477480 |10 | |80135 GSC | NL80_3 +390150 |EF Gru |214317.6-395211 |RRAB | 13.8 | 14.4 | |V |52929.62 | | 0.630675 |15 | |80135 GSC | NL80_3 +390151 |EG Gru |214619.4-425049 |RRAB | 12.35 | 13.5 | |V |52982.579 | | 0.615420 |12 | |80135 GSC | NL80_3 +390152 |EH Gru |214730.6-371551 |EW | 11.85 | 12.55 | 12.55 : |V |52177.531 | | 0.421347 | | |80365 80365| NL80_3 +390153 |EI Gru |215616.9-400827 |RS | 11.6 | 12.0 | |V | | | 2.7388 | | |80034 DM | NL80_3 +390154 |EK Gru |222007.5-483738 |BY | 9.90 | 10.13 | |V | | | 2.901 | |G4V |80034 DM | NL80_3 +390155 |EL Gru |222326.1-471009 |EB | 12.35 | 12.9 | 12.7 |V |52566.652 | | 0.78391 | | |80365 80365| NL80_3 +390156 |EM Gru |225658.6-451320 |BY: | 9.9 | 10.2 | |V | | | 9.590 | |K0III |80034 DM | NL80_3 +390157 |EN Gru *|231523.7-501828 |EW | 11.48 | 11.91 | 11.90 |V |51868.152 | | 0.418344 | | |80036 DM | NL80_3 +390158 |EO Gru |231733.4-524810 |BY | 11.2 | 11.7 | |V | | | 11.223 | | |80034 DM | NL80_3 +390159 |EP Gru |232357.4-531811 |RRC | 12.52 | 13.00 | |V |52069.798 | | 0.36971 |48 | |80386 GSC | NL80_3 +399002 |bet Gru |224240.0-465305 |LC: | 2.0 | 2.3 | |V | | | | |M3-5II-III |03712 03674| +3990042|del 2 Gru |222945.4-434457 |LB: | 3.99 | 4.20 | |V | | | | |M4.5IIIa |05945 CoD | +3990161|pi. 1 Gru *|222244.2-455653 |SRB | 5.41 | 6.70 | |V | | | 150. : | |S5,7e |09225 08953| +400001 |R Her |160611.7+182213 |M | 8.2 | 15.0 | |V |45058. | | 318.14 |39 |M6e |00001 00002| +400002 |S Her |165153.9+145631 |M | 6.4 | 13.8 | |V |45054. | | 307.28 |47 |M4,Se-M7.5,Se |00001 00002| +400003 |T Her *|180906.2+310116 |M | 6.8 | 13.7 | |V |45306. | | 164.98 |47 |M2.5e-M8e |00001 00002| +400004 |U Her *|162547.5+185333 |M | 6.4 | 13.4 | |V |44994. | | 406.10 |40 |M6.5e-M9.5e |00001 00002| +400005 |V Her |165806.7+350304 |CST | 10.9 | | |V | | | | | | BD | +400006 |W Her *|163512.3+372043 |M | 7.6 | 14.4 | |V |45059. | | 280.03 |45 |M3e-M5e |00001 00002| +400007 |X Her *|160239.2+471425 |SRB | 7.5 | 8.6 | |p | | | 95.0 | |M6e |01466 00002| +400008 |Y Her |163651.6+070626 |CST: | 7.3 | | |p | | | | |B9 | 03384| +400009 |Z Her *|175807.0+150822 |EA/AR/RS | 7.30 | 8.18 | 8.18 |V |13086.3345 | | 3.9928077 |11 *|F4IV-V |08623 00097| +400010 |RR Her |160413.4+502957 |SRB | 8.8 | 13.5 | |B | | | 239.7 | |C5,7e-C8,1e(N0e) |01466 00097| +400011 |RS Her |172142.4+225516 |M | 7.0 | 13.0 | |V |45194. | | 219.70 |47 |M4e-M8: |00001 00002| +400012 |RT Her |171048.0+270359 |M | 8.5 | 15.5 | |V |45104. | | 298.08 |40 |M4e |00001 00002| +400013 |RU Her *|161014.5+250414 |M | 6.8 | 14.3 | |V |44899. | | 484.83 |43 |M6e-M9 |00001 00002| +400014 |RV Her |170033.3+311324 |M | 9.0 | 15.5 | |V |45143. | | 205.23 |44 |M2e |00001 00002| +400015 |RW Her |180553.5+220442 |CST: | 13.4 | | |p | | | | | | 03384| +400016 |RX Her *|183039.3+123640 |EA/DM | 7.28 | 7.87 | 7.74 |V |33170.398 | | 1.7785724 |13 |A0V+A0V |00001 00097| +400017 |RY Her |175944.8+192854 |M | 8.3 | 14.1 | |V |45211. | | 221.47 |44 |M4e-M6e |00001 00002| +400018 |RZ Her |183647.0+260257 |M | 9.0 | 15.5 | |V |45143. | | 329.05 |44 |M5e-M6e |00001 00002| +400019 |SS Her |163255.5+065130 |M | 8.5 | 13.5 | |V |45209. | | 107.36 |48 |M0e-M5e |00001 00002| +400020 |ST Her |155046.6+482859 |SRB | 8.8 | 10.3 | |p | | | 148.0 | |M6-7IIIaS |01466 00097| +400021 |SU Her |174901.7+223223 |M | 10.5 | 13. | |p |34961. | | 333.8 | |M6e |02538 00101| +400022 |SV Her |182623.1+250133 |M | 9.1 | 15.1 | |V |45143. | | 238.99 |46 |M5e |00001 00002| +400023 |SW Her *|165827.5+213251 |RRAB | 13.52 | 14.73 | |V |31699.093 | | 0.49287277 |10 | |00874 06286| +400024 |SX Her *|160727.3+245430 |SRD | 8.6 | 10.9 | |p |34218. | | 102.90 |46 |G3ep-K0(M3) |00001 00002| +400025 |SY Her *|170129.3+222839 |M | 8.4 | 14.0 | |p |45248. | | 116.91 |49 |M1e-M6e |00001 00002| +400026 |SZ Her *|173936.8+325647 |EA/SD | 9.86 | 11.87 | 10.10 |V |41864.30517 | | 0.81809828 |18 |F0V |08593 01738| +400027 |TT Her *|165423.0+165013 |EB/KE | 9.61 | 10.34 | 9.89 |V |39995.908 | | 0.91207546 | |A7V-F2V |00001 00110| +400028 |TU Her *|171335.4+304236 |EA/SD | 10.88 | 13.7 | |V |44061.462 | | 2.2670005 |14 |F5 |00001 09240| +400029 |TV Her |181440.5+314910 |M | 9.0 | 14.6 | |V |45254. | | 304.28 |37 |M4e |00001 00002| +400030 |TW Her *|175431.2+302438 |RRAB | 10.52 | 11.83 | |V |21545.2340 | | 0.399600104 |13 |A4-F6 |03572 04449| +400031 |TX Her *|171836.5+415317 |EA/DM | 8.54 | 9.31 | 8.97 |V |40008.3643 | | 2.05980944 |08 *|A5+F0 |09242 08206| +400032 |TY Her |163611.7+131845 |CST: | 10.0 | | |p | | | | |M0 | BD | +400033 |TZ Her |163434.9+375944 |CST: | 9.1 | | |p | | | | |F5 | BD | +400034 |UU Her *|163557.3+375802 |SRD | 8.5 | 10.6 | |p |43651. | | 80.1 | |F2Ib-G0 |09243 00368| +400035 |UV Her |164534.1+120812 |M | 9.5 | 15. | |p |42934. | | 341.95 | |M6e-M6.5e |00001 08953| +400036 |UW Her |171424.5+362205 |SRB | 8.6 | 9.5 | |p | | | 103.6 | |M5e |09244 08953| +400037 |UX Her *|175407.9+165638 |EA/SD | 9.05 | 10.21 | 9.11 |V |39672.37853 | | 1.5488479 |15 *|A3V |08953 01745| +400038 |UY Her |163311.5+380417 |CST | 8.8 | | |p | | | | |A2 | BD | +400039 |UZ Her |173022.9+175451 |M | 9.6 |< 12.5 | |p |42175. | | 263.74 | |M5e |00001 06286| +400040 |VV Her |161229.8+245357 |M | 11.2 | 16.4 | |p |39959. | | 385.64 |20 |M7 |00001 00002| +400041 |VW Her *|180547.1+390957 |M | 12. |< 16. | |p |32743. | | 284.8 |37 | |00001 00529| +400042 |VX Her *|163040.8+182201 |RRAB | 9.89 | 11.21 | |V |21750.4827 | | 0.45537282 |14 |A4-F4 |03506 02166| +400043 |VY Her |170717.6+171023 |M | 10.1 |< 15. | |p |41914. | | 300.38 | |M5e: |00001 00002| +400044 |VZ Her *|171304.0+355843 |RRAB | 10.72 | 12.04 | |V |36788.898 | | 0.44032789 |13 |A6-F4 |07114 01747| +400045 |WW Her *|172430.1+460805 |M | 11.9 | 17.5 | |p |41623. | | 312.37 |40 |M2 |08206 08206| +400046 |WX Her *|172617.6+343131 |M | 12.4 | 16.7 | |p |30533. | | 186. | | |01749 UCAC2| +400047 |WY Her |180003.9+233538 |M | 11. | 15.5 | |p |23235. | | 376. | |M5e-M7e |01750 06286| +400048 |WZ Her |180131.6+184320 |M | 11.5 | 14. | |p |27900. | | 247.8 | | |00001 00002| +400049 |XX Her |180222.2+231832 | | 13. | 15.5 | |p | | | | | |01751 USNO | +400050 |XY Her |180527.7+212752 | | 13.5 | 15. | |p | | | | |F8 |01751 GSC | +400051 |XZ Her |181003.6+180625 |M | 10.5 | 13.6 | |p |33887. | | 171.69 | |M0 |00001 00563| +400052 |YY Her |181434.2+205921 |ZAND | 11.1 |< 14.0 | |B | | | | |M2ep |01332 02460| +400053 |YZ Her |181808.8+212437 |SRB | 11.0 | 11.6 | |p | | | 102. | |M4 |01752 01752| +400054 |ZZ Her |181831.5+191607 |M | 13. | 15.5 | |p |22189. :| | | | |01753 USNO | +400055 |AA Her |181942.4+223455 |M | 11. |< 19. | |B |23245. | | 421.61 | |M2 |00001 06286| +400056 |AB Her |182945.8+132516 |M | 12.7 | 16. | |p |21392. | | 346.6 | | |00341 06286| +400057 |AC Her *|183016.2+215201 |RVA | 6.85 | 9.0 | |V |35097.8 | | 75.01 | |F2pIb-K4e(C0,0) |09249 00368| +400058 |AD Her *|185000.3+204317 |EA/SD | 9.70 | 11.17 | 9.79 |V |39001.1348 | | 9.76657 |11 |A4V+K2 |08636 BD | +400059 |AE Her |184311.6+225944 |M | 10.5 | 15. | |p |45149. | | 248.99 | |M4e |00001 00119| +400060 |AF Her *|163938.1+410645 |RRAB | 12.23 | 13.35 | |V |27663.3095 | | 0.63034554 |12 |A |03506 01757| +400061 |AG Her *|164032.9+403706 |RRAB | 11.99 | 13.24 | |V |27662.209 | | 0.6494465 |14 |A3 |03506 01757| +400062 |AH Her *|164410.0+251502 |UGZ | 10.9 | 14.7 | |p | | |( 19.8 ) | |pec(UG) |04063 08852| +400063 |AI Her |165344.7+485702 |M | 10.5 |< 14. | |p |35720. | | 407. | |M6e |02931 06286| +400064 |AK Her *|171357.8+162101 |EW/KW | 8.29 | 8.77 | 8.64 |V |42186.460 | | 0.42152201 | *|F2+F6 |00001 00110| +400065 |AL Her |174302.9+173137 |M | 11.6 |< 15.0 | |p |35706. | | 211.8 | | |02931 01761| +400066 |AM Her *|181613.3+495204 |AM/XRM+E | 12.3 | 15.7 |( 0.4 )|V |43014.71266 | | 0.128927 | |pec+M4.5V |09257 09256| +400067 |AN Her |173530.6+204242 |SRB | 10.1 | 10.9 | |p | | | 65. : | |M5 | 08953| +400068 |AO Her |173536.2+502440 |SR | 11.0 |< 15.0 | |p | | | 370. | | |00498 06286| +400069 |AP Her *|185027.7+155625 |CWA | 10.19 | 11.18 | |V |43745.347 | | 10.4156 |40 |F2Ib-II-G0 |09029 01762| +400070 |AQ Her |175600.4+425223 |M | 11.1 |< 15. | |p |38233. | | 280.91 | |M7e |00001 00832| +400071 |AR Her *|160032.2+465526 |RRAB | 10.59 | 11.63 | |V |41454.347 | | 0.470028 |20 |A7-F3 |00001 00323| +400072 |AS Her |163851.9+140358 |M | 9.9 | 15.3 | |p |40750. | | 269.14 |53 |M2e |00001 01763| +400073 |AT Her *|173608.8+445738 | | 11.2 | 12.25 | |B | | | | |K0V |09261 06929| +400074 |AU Her |175719.7+294629 |M | 12.6 |< 17.0 | |p |26307. | | 399. | |M8 |00612 UCAC2| +400075 |AV Her |182507.8+124350 |M | 12. |< 16. | |p |34610. | | 331.1 | | |00001 03557| +400076 |AW Her *|182538.7+181740 |EA/AR/RS | 9.65 | 11.0 | |V |25719.434 | | 8.800760 |07 |G0+K2 |08592 08953| +400077 |AX Her |185324.4+191611 |M | 12.5 |< 15.5 | |p |28090. :| | | | |00904 06286| +400078 |AY Her |162313.2+440828 |SRA | 10.5 | 12.8 | |V |35265. | | 129.75 | |Me |01324 06286| +400079 |AZ Her |182233.6+284435 |M | 10.4 | 16. | |p |36782. | | 268.92 | |M4 |00001 06286| +400080 |BB Her *|184554.1+122010 |DCEP | 9.76 | 10.46 | |V |42679.289 | | 7.507945 |32 |G5 |08632 00869| +400081 |BC Her *|185041.7+122954 |EA/SD | 11.8 | 13.0 | |p |36483.424 | | 3.08735 |13 *|A2 |08636 00279| +400082 |BD Her *|185032.2+163151 |RRAB | 12.09 | 12.69 | |V |32628.015 | | 0.4739064 |20 |F2-F6 |02503 00197| +400083 |BE Her |162505.0+291504 |SRB | 8.2 | 9.9 | |V | | | 71.6 | |M4 |08713 08953| +400084 |BF Her |170447.6+165432 |SRB | 12.5 | 15.0 | |p | | | 196. | | |06004 06004| +400085 |BG Her |170928.6+184050 |M | 9.6 |< 12.5 | |p |33360. | | 347.74 | |M3e |00001 06286| +400086 |BH Her |171245.1+174231 |RR: | 14.0 | 16. | |p | | | | |A5 |08676 GSC | +400087 |BI Her |172318.1+145748 |M | 12. |< 16. | |p |27946. | | 210. | | |01766 06286| +400088 |BK Her |174754.0+264121 |M | 11.7 | 16.9 | |p |28298. | | 215.0 | | |00001 00977| +400089 |BL Her *|180109.2+191457 |CWB | 9.70 | 10.62 | |V |41841.289 | | 1.3074502 |26 |F0-F6II-III |08300 02215| +400090 |BM Her |183356.3+255217 |M | 12.4 | 20. | |p |25320. | | 295. | | |00332 00531| +400091 |BN Her |183533.3+260357 |M | 13.8 |< 17. | |p |25361. | | 315. | | |00332 00531| +400092 |BO Her *|184030.1+245543 |EA/SD | 10.7 | 13.8 | 10.8 |V |34193.495 | | 4.272843 |15 |A7 |00001 00531| +400093 |BP Her |184359.4+241250 |SRD | 12.7 | 14.1 | |p |37171.6 | | 83.1 | |Gep-M3Ia |06536 00531| +400094 |BQ Her |184540.8+205829 |E/SD | 13.5 | 15.0 | |p |36104.23 | | 5.105836 | | |02419 06286| +400095 |BR Her |184552.4+250158 |ISB | 13.0 | 14.0 | |p | | | | |G/K |00332 00531| +400096 |BS Her |184632.1+214637 |M | 12.0 | 16.5 | |p |36451. | | 361.6 | |M6e |08715 06286| +400097 |BT Her |184957.0+245148 |M | 14.0 |< 16.5 | |p |29123. | | 297. | | |00332 00531| +400098 |BU Her |185026.5+244752 |I | 13.8 | 14.5 | |p | | | | | |00332 00531| +400099 |BV Her |185037.9+254546 |EA/SD | 13.7 | 15.4 | |p |25361.496 | | 3.515911 |09 *| |00332 00531| +400100 |BW Her |185207.0+163042 |M | 13.3 | 15.8 | |p |54920. | | 301.5 | | |00001 GSC | +400101 |BX Her |185249.2+175351 | | 14.2 |< 16. | |p | | | | | |01330 GSC | +400102 |BY Her |185240.3+213430 |M: | 14.5 |< 16. | |p | | | 365. : | | |02216 06286| +400103 |BZ Her |185659.6+240130 |M | 13.0 |< 17. | |p |25488. | | 260. | | |00332 00133| +400104 |CC Her *|161738.9+085603 |EA/SD | 10.2 | 13.1 | |p |39668.342 | | 1.7340058 |16 *|A0: |00001 00279| +400105 |CD Her *|172538.0+455439 |S: | 11.2 | 12.5 | |p | | | | |G5 |01423 BD | +400106 |CE Her *|174156.6+150430 |CWB | 11.53 | 12.92 | |V |27861.668 | | 1.2094357 |11 |F5 |05448 06286| +400107 |CF Her |174453.8+212947 |M | 9.0 |< 13. | |V |34902. | | 306.2 | |M0 |00001 00977| +400108 |CG Her |181141.1+262557 |M | 13.3 |< 16. | |p |27876. | | 180.3 | | |00001 02312| +400109 |CH Her |183446.3+244802 |UG | 13.5 | 17. : | |p | | | | | |00332 08852| +400110 |CI Her |183616.1+242922 |M | 13.1 | 18.5 | |p |25485. | | 281. | | |00332 00133| +400111 |CK Her *|183849.4+232924 |RRAB | 13.9 | 15.2 | |p |36076.298 | | 0.5191808 |19 | |04149 00133| +400112 |CL Her |183857.0+235821 |SR | 12.8 | 14.5 | |p |25472. | | 175. | | |00332 00133| +400113 |CM Her |183911.9+232940 |RRAB | 13.7 | 15.2 | |p |29050.452 | | 0.5627311 |21 | |04149 00133| +400114 |CN Her |184236.1+254018 |RRAB | 14.3 | 15.5 | |p |29050.455 | | 0.485417 |13 | |00332 00133| +400115 |CO Her *|184304.7+242810 |SR | 14.9 | 16.1 | |p | | | 100. | | |00332 00133| +400116 |CP Her *|184618.5+244912 |SR | 14.6 | 15.6 | |p | | | 400. | | |00332 00133| +400117 |CQ Her |184650.0+255436 |L | 13.5 | 15.0 | |p | | | | | |00332 00133| +400118 |CR Her |184928.3+255633 |RRAB | 14.4 | 15.9 | |p |29056.520 | | 0.494811 |17 | |00332 00133| +400119 |CS Her |185111.1+250500 |SR | 13.6 | 15.2 | |p | | | | | |03165 00133| +400120 |CT Her *|162026.6+182717 |EA/SD | 10.6 | 11.7 | |p |42522.932 | | 1.7863748 |13 *|A3V |00001 00110| +400121 |CU Her |163820.5+052308 |S: | 13.3 | 14.5 | |p | | | | | |01767 01767| +400122 |CV Her |163837.9+305125 |LB | 11.5 | 12.5 | |p | | | | |M3 |00340 00977| +400123 |CW Her |165038.2+352705 |RRAB | 11.9 | 13.2 | |V |36721.358 | | 0.6238405 |12 |A |04149 03568| +400124 |CX Her |171037.1+273530 |SRB | 10.7 | 12.1 | |p | | | 114. : | |M7 |01882 08953| +400125 |CY Her |180446.0+170040 |SRB | 11.5 | 12.4 | |p | | | 80. : | |M6 | 03158| +400126 |CZ Her |180526.6+223005 |M | 12.0 | 18.5 | |p |28840. | | 322.5 | | |00001 01332| +400127 |DD Her |180545.4+282843 |EA/SD: | 11.4 | 12.2 | |p |26562.354 | | 5.643329 |11 *|A2 |00001 00279| +400128 |DE Her *|180630.4+205255 |SRD | 10.8 | 12.5 | |p |36148. | | 165.2 |42 |K0-M3e |03571 01332| +400129 |DF Her *|180633.5+201621 |M | 11.3 |< 14.2 | |p |36379. | | 337.7 | |M6e |00001 01332| +400130 |DG Her |182416.0+182447 |M | 11.1 |< 13.5 | |p |38625. | | 293.0 | |M5e |00001 01332| +400131 |DH Her *|184734.6+225046 |EA/SD | 9.4 | 12.0 | 9.5 |V |26575.456 | | 4.779161 |15 |A5 |08636 00464| +400132 |DI Her *|185326.2+241641 |EA/DM | 8.39 | 9.11 | 8.95 |V |42233.3476 | | 10.5501680 |04 *|B5V+B4V |09272 08953| +400133 |DK Her *|171244.0+131104 |EA | 10.5 | 11. | |p |31289.320 | | 1.942304 |14 *|A1 |00279 00279| +400134 |DL Her *|172022.4+143039 |RRAB | 11.0 | 12.4 | |V |38208.4282 | | 0.59162786 |08 |A6-A7 |03582 00977| +400135 |DM Her |173654.4+341119 |SRB | 11.5 | 12.3 | |p |29396. | | 81.6 |45 |M3 |00310 06286| +400136 |DN Her |161209.4+103626 |M | 10.5 |< 12.5 | |p |31575. | | 226. | | |02931 00470| +400137 |DO Her *|163040.8+232728 |M | 10.8 | 16.4 | |p |40391. | | 216.28 |50 | |00001 00470| +400138 |DP Her |173430.3+150431 |EA/SD | 13.5 | 15. | |p |27605.462 | | 1.7770199 |11 | |00001 00158| +400139 |DQ Her *|180730.2+455132 |NB+EA | 1.3 | 18.08 | |V |27794. |1934 | | |pec(NOVA) | 00002| +400140 |DR Her |182841.0+194809 |M | 13.5 |< 15.5 | |p |27337. | | 285. | | |00395 00491| +400141 |DS Her |183334.0+160606 |M | 11. |< 15.5 | |p |40446. | | 263.43 | | |00001 00196| +400142 |DT Her |183451.6+220711 |M: | 14.5 |< 15.5 | |p |27312. | | 300. | | |01498 01217| +400143 |DU Her |183637.4+180016 |M: | 15. |< 15.5 | |p |26421. | | 270. | | |01498 01217| +400144 |DV Her |183706.4+183202 |M: | 14. |< 15.5 | |p |26895. | | 170. | | |00395 00491| +400145 |DW Her |184413.9+231228 |M | 13.5 |< 15.5 | |p |26770. | | 248. | | |00395 00491| +400146 |DX Her |184638.9+192845 |M: | 14. |< 15.5 | |p |27160. | | 350. | | |01498 01217| +400147 |DY Her *|163117.9+115953 |DSCT | 10.15 | 10.66 | |V |33439.4865 | | 0.148631353 |28 |A7III-F4III |09100 00561| +400148 |DZ Her |180727.1+173341 |SRA | 10.9 | 12.3 | |p |34871. | | 119.78 |30 |M0 |02931 00554| +400149 |EE Her |161242.6+175915 |RRAB | 13.3 | 14.08 | |B |28403.257 | | 0.4955363 |08 |A2 |05673 00470| +400150 |EF Her |165526.1+171748 |EA/SD: | 11. | 12. | |p |26440.37 | | 4.7291 |09 |F0 |01773 00977| +400151 |EG Her |173926.5+291734 |RRAB | 14.4 | 15.7 | |p |26092.420 | | 0.483015 |15 | |06004 06004| +400152 |EH Her |174556.5+325131 |SR | 13.4 | 15.2 | |p |26533. | | 220. | | |00907 02311| +400153 |EI Her *|174820.3+244227 |SR | 14.2 | 16.0 | |p |27540. | | 152. | | |00907 02311| +400154 |EK Her |174917.7+245908 |LB | 13.3 | 14.8 | |p | | | | |M5 |00907 02311| +400155 |EL Her |175148.5+263847 |M | 13.0 | 16.0 | |p |26473. | | 120. | | |00907 02311| +400156 |EM Her |175201.9+294011 |LB | 15.3 | 16.3 | |p | | | | | |00907 02324| +400157 |EN Her *|175338.5+263925 |SR | 14.1 | 14.9 | |p | | | 185. | | |00907 02312| +400158 |EO Her |175355.8+281326 |SRA | 12.3 | 14.6 | |p |27133. | | 171.1 | | |01766 02312| +400159 |EP Her |175509.4+263619 |RRAB | 12.44 | 13.54 | |V |28048.349 | | 0.4257209 |13 | |00611 02312| +400160 |EQ Her |175635.6+244847 |L | 14.3 | 15.3 | |p | | | | | |00907 02324| +400161 |ER Her |175648.2+255420 |M | 13.0 |< 16. | |p |26111. | | 165. | | |00907 02312| +400162 |ES Her *|175642.5+325231 |EB/KE: | 13.1 | 14.4 | 13.7 |p |44770.512 | | 0.7820304 | | |00001 02312| +400163 |ET Her *|175809.8+290258 |SR | 13.7 | 14.8 | |p |26497. | | 113. | | |00907 02324| +400164 |EU Her |175813.4+315510 |SR | 12.6 | 14.1 | |p |26152. | | 165. | | |00907 02312| +400165 |EV Her |175903.4+314159 |LB | 14.2 | 15.1 | |p | | | | | |00907 02312| +400166 |EW Her |180350.4+332302 |M | 12.7 | 17.5 | |p |26095. | | 228. | | |00907 02312| +400167 |EX Her *|180417.5+285453 |SR | 14.2 | 16.2 | |p |26112. | | 109. | | |00907 02325| +400168 |EY Her |180438.7+324141 |SRA | 12.5 | 14.9 | |p |26541. | | 177. |59 | |00907 02312| +400169 |EZ Her *|180456.6+283247 |SRD: | 12.1 | 12.9 | |p |26120. | | 118. | |G8: |00907 02312| +400170 |FF Her |180507.4+300541 |SRA | 13.0 | 15.7 | |p |26137. | | 285. | |M3 |00907 02312| +400171 |FG Her |180538.5+310018 |SR | 13.8 | 14.8 | |p |26415. | | 178. | | |00907 02325| +400172 |FH Her |180609.1+322213 |SRA | 13.1 | 14.2 | |p |26105. | | 169. | | |00907 02312| +400173 |FI Her |180954.8+312146 |M | 12.4 |< 16. | |p |26107. | | 239. | | |00907 02312| +400174 |FK Her |181117.9+295749 |LB | 13.2 | 13.9 | |p | | | | | |00907 02325| +400175 |FL Her |181157.8+322754 |LB | 12.1 | 13.9 | |p | | | | |M4 |00907 02325| +400176 |FM Her |181607.0+290658 |SR | 14.5 | 15.4 | |p |27685. | | 442. | | |00907 02325| +400177 |FN Her *|162513.2+111753 |EA/SD: | 10.5 | 11.5 | |p |28309.294 | | 2.69126 |14 *|A9 |00279 00279| +400178 |FO Her |172059.9+222652 |SR | 12.3 | 14.0 | |p |28775. | | 88. | | |01766 02324| +400179 |FP Her |172908.1+184239 |M: | 12.7 |< 13.7 | |p |28812. | | 318.4 | |M4 |01766 00470| +400180 |FQ Her |173219.8+374414 |SR | 12.5 | 14. | |p | | | 100. | | |00395 00491| +400181 |FR Her |173706.0+181305 |M: | 12.0 |< 13.5 | |p |36057. | | 134.23 | |M2 |02931 00470| +400182 |FS Her |174413.8+251455 |RRAB | 13.3 | 14.6 | |p |26216.455 | | 0.4617335 |17 | |00612 01774| +400183 |FT Her |175404.6+285749 |EA/SD: | 13.8 | 14.8 | |p |26112.47 | | 5.6486 |16 : | |00612 02312| +400184 |FU Her |175824.2+232640 |M | 11.2 |< 14.6 | |V |33529. | | 212.4 | | |02931 00470| +400185 |FV Her |175809.1+412540 |I | 14. | 15. | |p | | | | | |01498 01217| +400186 |FW Her *|175925.8+254313 |EB/KE | 14.4 | 14.9 | 14.6 |p |26744.614 | | 0.835412 | | |00612 02312| +400187 |FX Her |180442.5+232237 |M | 12.5 |< 14.8 | |p |28419. | | 354. | | |01766 00470| +400188 |FY Her *|180628.5+290550 |RRC | 14.2 | 14.6 | |p |26092.420 | | 0.250686 |50 | |00612 02312| +400189 |FZ Her |180901.6+400415 |I | 13.3 | 14. | |p | | | | | |00395 00491| +400190 |GG Her |182255.2+154458 |LB | 14. | 15.5 | |p | | | | | |01498 01217| +400191 |GH Her |183249.1+202044 |L | 13.5 | 15. | |p | | | | | |00491 00491| +400192 |GI Her |183702.0+210054 |M | 13.5 |< 15.5 | |p |27536. | | 325. : | | |00395 00491| +400193 |GK Her |184422.3+255316 |SRB | 13.2 | 14.1 | |p | | | 116. | | |00332 00533| +400194 |GL Her *|185028.4+233909 |EA/SD | 11.5 | 13.5 | |p |38266.326 | | 2.344972 |18 |A |08636 00533| +400195 |GM Her |185620.8+205713 |L | 13.5 | 14. | |p | | | | | |00395 00491| +400196 |GN Her |163156.4+385130 |LB | 9. | 11.49 | |B | | | | |M4III |00922 08953| +400197 |GO Her |173331.6+163228 |SRB | 10.8 | 12.0 | |p | | | 50. | |M5 |01766 BD | +400198 |GP Her |173321.8+233515 |M | 11.8 | 17.2 | |p |35565. | | 257.36 |49 | |00001 02324| +400199 |GQ Her |174541.0+185037 |SRA | 11.2 | 12.9 | |p |28690. | | 115.00 |48 |M4 |01766 00470| +400200 |GR Her |162603.0+314740 |RRAB | 14.1 | 15.2 | |p |27929.400 | | 0.558786 |18 | |00152 02323| +400201 |GS Her |162826.6+320807 |RRAB | 13.8 | 14.8 | |p |27545.387 | | 0.5849856 |09 | |00152 02323| +400202 |GT Her |163018.5+342734 |RRAB | 13.1 | 14.4 | |p |36383.491 | | 0.61372446 |09 | |03568 02323| +400203 |GU Her *|163205.5+302310 |EA/DM | 11.5 | 12.3 | 11.8 |p |31305.198 | | 4.342921 |17 |F8 |00279 02323| +400204 |GV Her *|163454.8+351551 |RRC | 13.8 | 14.4 | |p |36380.281 | | 0.29144627 |46 | |03568 02323| +400205 |GW Her |163658.1+314409 |RRAB | 14.1 | 15.4 | |p |27636.429 | | 0.518169 |35 | |00152 02323| +400206 |GX Her |163707.3+345655 |RRAB | 14.0 | 15.3 | |p |27605.495 | | 0.549584 |16 | |00152 02282| +400207 |GY Her *|163818.0+374805 |RRAB | 11.9 | 12.8 | |p |36387.811 | | 0.5243814 |20 |A1 |03568 02282| +400208 |GZ Her |163831.4+330231 |RRAB | 13.2 | 14.6 | |p |27545.410 | | 0.4830495 |11 | |00152 02323| +400209 |HH Her |163840.5+313844 |RRC | 15.5 | 15.8 | |p |29721.650 | | 0.29986 |47 | |00152 02323| +400210 |HI Her |164350.1+372742 |RRAB | 14.4 | 15.5 | |p |27929.410 | | 0.517399 |16 | |00152 02323| +400211 |HK Her |164509.3+361849 |RRAB | 14.6 | 15.6 | |p |28963.585 | | 0.639194 |13 | |00152 02323| +400212 |HL Her |164939.8+345819 |RRAB | 15.2 | 16.2 | |p |27545.400 | | 0.543169 | | |00152 02323| +400213 |HM Her |165115.9+302659 |RRAB | 14.0 | 15.6 | |p |27602.460 | | 0.577107 |16 | |00152 02323| +400214 |HN Her |165603.4+321604 |RRAB | 14.0 | 15.7 | |p |40426.457 | | 0.5158852 |12 | |03700 03700| +400215 |HO Her |165720.8+302127 |RRAB | 13.2 | 14.3 | |p |27545.380 | | 0.472694 |19 | |00152 02323| +400216 |HP Her |165650.2+322009 |RRAB | 15.3 | 16.5 | |p |27545.410 | | 0.4764086 |19 | |00152 02323| +400217 |HQ Her |165831.9+295424 |RRAB | 15.4 | 16.8 | |p |27602.470 | | 0.4917613 |19 | |00152 02323| +400218 |HR Her |165843.9+333507 |RRAB | 15.2 | 16.1 | |p |27602.495 | | 0.5604706 |24 | |00152 02323| +400219 |HS Her *|185049.8+244312 |EA/DM | 8.50 | 8.97 | 8.63 |V |45160.434 | | 1.637435 |12 |B6III |00001 08953| +400220 |HT Her |162907.8+341346 |M | 12.6 | 17.0 | |p |27612. | | 163.15 |48 | |00152 02323| +400221 |HU Her |162919.8+310955 |M | 14.1 | 17.0 | |p |27643. | | 166. |45 | |00152 02323| +400222 |HV Her *|163307.6+333126 |EA/SD | 12.7 | 14.0 | 12.9 : |p |27589.31 | | 4.90590 |11 | |00152 02282| +400223 |HW Her |165302.2+324641 |EA/SD | 15.0 | 16.3 | |p |27629.52 | | 3.40302 |12 : | |00152 02323| +400224 |HX Her |165322.0+331630 |L | 14.1 | 14.8 | |p | | | | | |00152 02323| +400225 |HY Her |165434.7+334931 |SRB | 12.1 | 13.3 | |p | | | 96. | |M3 |00152 00351| +400226 |HZ Her *|165749.8+352033 |XPR+E | 12.8 | 15.2 | |B |41397.584 | | 1.700175 | |B0Ve-F5e |09282 09283| +400227 |II Her |165910.8+380352 |L | 12.4 | 12.9 | |p | | | | | |00152 02324| +400228 |IK Her *|170006.8+315814 |EA | 13.5 | 14.0 | |p |27589.433 | | 1.099417 |22 | |00152 02324| +400229 |IL Her |170048.6+301415 |RRAB | 13.7 | 14.7 | |p |27666.395 | | 0.578466 |20 | |00152 02324| +400230 |IM Her |170210.7+321153 |EA/SD: | 14.1 | 14.9 | |p |27543.38 | | 3.71274 |08 | |00152 02324| +400231 |IN Her |170207.6+341250 |SRB | 11.9 | 12.7 | |p | | | 70. : | |M |00152 02324| +400232 |IO Her |170228.9+364423 |LB | 12.0 | 12.4 | |p | | | | |M0 |00152 02324| +400233 |IP Her |175814.6+301310 |RRAB | 12.5 | 13.6 | |p |28038.517 | | 0.4338594 |26 |G: |01776 06286| +400234 |IQ Her *|181754.8+175853 |SRB | 6.99 | 7.47 | |V |30496. | | 75. |44 |M4 |03246 03729| +400235 |IR Her |183719.5+240843 |SR | 12.9 | 13.5 | |p | | | 350. : | | |00332 00533| +400236 |IS Her |184521.7+245147 |LB | 13.4 | 14.6 | |p | | | | | |00332 00533| +400237 |IT Her *|184546.4+251959 |RRC | 12.9 | 13.3 | |p |29733.515 | | 0.226038 |51 | |00332 00533| +400238 |IU Her |184955.5+255547 |L | 14.1 | 15.0 | |p | | | | | |00332 00133| +400239 |IV Her |185043.5+260004 |L | 14.6 | 14.9 | |p | | | | | |00332 00533| +400240 |IW Her |185132.4+233954 |LB | 13.2 | 13.9 | |p | | | | | |00332 00533| +400241 |IX Her |185140.7+240933 |EA/SD | 14.0 | 16.0 | |p |25331.642 | | 1.896778 | | |04240 00531| +400242 |IY Her |185144.6+252344 |LB | 12.1 | 12.7 | |p | | | | |M3 |00332 00533| +400243 |IZ Her | | | | | | | | | | | | |=HS Her +400244 |KK Her |185213.0+245315 |SR | 13.8 | 15.8 | |p |29082. | | 165. |52 | |00332 00531| +400245 |KL Her *|185409.6+244732 |EB/KE | 14.3 | 14.8 | 14.7 |p |29056.508 | | 0.684021 | | |00332 00133| +400246 |KM Her |185701.6+253350 |RRAB | 14.4 | 15.6 | |p |29051.474 | | 0.505837 |20 | |00332 00533| +400247 |KN Her |164435.4+350909 |SR | 12.8 | 14.2 | |p |28244. | | 116. | | |00152 02282| +400248 |KO Her |165319.3+330958 |L | 13.3 | 14.2 | |p | | | | | |00152 02282| +400249 |KP Her |165529.3+330059 |LB | 11.9 | 12.4 | |p | | | | |M |00152 02282| +400250 |KQ Her |171839.8+281229 |M | 13. |< 15.5 | |p |29416. | | 345. | | |01749 00922| +400251 |KR Her |171858.2+282447 |M | 12.4 |< 15.5 | |p |30107. | | 135.9 | | |01766 00922| +400252 |KS Her |172928.5+323333 |SRA | 13.5 | 15. | |p |29048. | | 172. | | |01749 00922| +400253 |KT Her |173128.8+322952 |M | 13.5 |< 15.5 | |p |30169. | | 381. | | |01749 00922| +400254 |KU Her |182552.8+121249 |LB | 12.7 | 13.5 | |p | | | | |M3 |00447 00554| +400255 |KV Her *|182843.4+121743 |SR | 12.3 | 16.0 | |p |25733. | | 203.5 | | |00447 00158| +400256 |KW Her |184125.7+120924 |INS | 13.8 | 16.5 | |p | | | | | |00082 02327| +400257 |KX Her |184313.9+122351 |M | 13.2 |< 17. | |p |30105. | | 495. | |M8e |00447 02327| +400258 |KY Her |184428.1+124650 |M | 15.3 |< 17. | |p |30180. | | 190.8 | | |00447 02328| +400259 |KZ Her |184712.2+122724 |M | 12.2 |< 17. | |p |30159. | | 295.7 | |M5IIIe |00447 02328| +400260 |LL Her |184837.2+121208 |LB | 13.0 | 14.0 | |p | | | | |M5 |00447 02328| +400261 |LM Her |185016.1+121223 |M | 12.7 |< 17. | |p |29376. | | 297. | | |00447 02328| +400262 |LN Her |185109.8+122514 |RRAB | 14.0 | 15.5 | |p | | | 0.45 | | |00447 02328| +400263 |LO Her |185145.2+121310 |M | 11.6 |< 17. | |p |29848. | | 471. | |M8III |00447 02328| +400264 |LP Her |185541.2+121528 |EA/SD | 13.0 | 16.2 | |p |44844.543 | | 3.839721 |11 *| |00001 00869| +400265 |LQ Her |161138.0+232941 |LB: | 5.58 | 5.83 | |V | | | | |M4IIIa |05841 BD | +400266 |LR Her *|184536.6+121631 |EB/DM | 15.0 | 15.7 | 15.4 : |p |30202.692 | | 2.2965255 | | |05249 02328| +400267 |LS Her *|160203.8+172850 |RRC | 10.79 | 11.12 | |V |28004.947 | | 0.23080771 |40 |A5 |08811 01739| +400268 |LT Her *|165020.4+095652 |EA/D | 10.69 | 11.11 | 10.79 |B |40755.7594 | | 1.0840458 |18 |A2V |07543 00279| +400269 |LU Her |173235.5+261225 |M | 11.7 | 17.5 | |p |35624. | | 217.51 |44 | |00001 02324| +400270 |LV Her *|173532.4+231031 |EA/D | 10.9 | 11.3 | |p |31326.333 | | 5.2674 |09 *|A-F |00279 00470| +400271 |LW Her |174148.8+250926 |RRC | 12.9 | 13.5 | |p |30938.32 | | 0.31836 |42 | |00612 04988| +400272 |LX Her |174318.7+281515 |RRAB | 13.9 | 15.1 | |p |26096.482 | | 0.628872 |13 | |00612 02324| +400273 |LY Her |174509.6+252013 |SR | 13.2 | 14.8 | |p |26225. | | 400. |48 | |00612 04988| +400274 |LZ Her |174929.1+291916 |SXPHE | 14.1 | 14.6 | |p |26096.515 | | 0.1989590 |50 | |00612 02311| +400275 |MM Her *|175838.5+220847 |EA/AR/RS | 9.45 | 10.43 | 9.7 |V |31302.445 | | 7.960322 |05 *|G2-5 |08623 00279| +400276 |MN Her |180217.6+275327 |RRAB | 14.4 | 15.2 | |p |26112.400 | | 0.5981358 |17 | |00612 02312| +400277 |MO Her |180836.1+293444 |RRAB | 14.5 | 16.2 | |p |44102.315 | | 0.461323 |12 | |09289 02325| +400278 |MP Her *|181015.2+312509 |RRC | 14.1 | 14.4 | |p |30939.36 | | 0.31929 |50 | |00612 02325| +400279 |MQ Her |181122.7+291110 |RRAB | 15.4 | 15.7 | |p |30940.40 | | 0.35902 |19 | |00612 02325| +400280 |MR Her |181530.8+281527 |CST: | 13.9 | 14.8 | |p | | | | | |03165 02325| +400281 |MS Her *|181653.4+273946 |EW/KE | 12.9 | 13.3 | 13.3 |B |26419.498 | | 0.6052626 | | |00612 02325| +400282 |MT Her *|182150.6+143033 |EB/SD: | 11.86 | 12.86 | 12.30 |V |41117.417 | | 0.48771779 | *|F5: |06547 01779| +400283 |MU Her |163658.8+424450 |SR | 11.9 | 13.2 | |p |31190. | | 192. | |M2e |00346 00346| +400284 |MV Her *|165812.1+224750 |M | 13. |< 16. | |p |27545. | | 222. : | | |00156 00156| +400285 |MW Her *|173540.0+153512 |M | 12.4 |< 16. | |p |29156. | | 449.0 | |M8-M9 |00001 03586| +400286 |MX Her *|175050.7+500250 |EA/SD | 11.4 | 12.9 | |p |31657.411 | | 2.3476536 |14 *|F5 |02716 00279| +400287 |MY Her |180930.7+272054 |L | 13.8 | 15.3 | |p | | | | | |00907 02325| +400288 |MZ Her |184816.8+190650 |SRB | 10.3 | 11.3 | |p | | | 100. : | |M6 |01110 01110| +400289 |NN Her |185209.6+140651 |LB | 11.4 | 12.4 | |p | | | | |M5 |01110 01110| +400290 |NO Her |185418.4+260704 |SR | 13.7 | 14.8 | |p |29108. | | 55.1 | | |04988 04988| +400291 |NP Her |161708.7+255101 |M | 12.2 |< 15.5 | |p |39643. | | 448. |50 |C6,3e(N) |05681 00542| +400292 |NQ Her *|181133.7+181927 |CST | 8.41 | | 8.4 |V | | | | |A0 |09291 00021| +400293 |NR Her *|174030.6+275057 |IS: | 13.8 | 14.2 | |p | | | | | |00612 02311| +400294 |NS Her |173141.4+214955 |SRB: | 11.9 | 13.9 | |p | | | 75. : | |M |04201 02324| +400295 |NT Her |173228.8+275323 |LB | 10.0 | 10.6 | |p | | | | |M7 |01766 00832| +400296 |NU Her |173605.2+221530 |M | 13.0 | 17.8 | |p |35585. | | 324.6 |45 : | |04201 02343| +400297 |NV Her |174118.6+293606 |RRAB | 15.5 | 16.6 | |p |30938.493 | | 0.5155 |19 | |03148 02363| +400298 |NW Her |174147.5+190304 |SRA | 15.1 | 17.0 | |p |27573. | | 127.12 |43 : | |04201 02362| +400299 |NX Her |174526.0+192334 |M | 13.2 | 17.1 | |p |35258. | | 293.6 |47 | |04201 00158| +400300 |NY Her |175252.6+292219 |CWB | 15.2 |< 16.5 | |p |26220.9 | | 6.3146 | | |03148 02363| +400301 |NZ Her |175407.5+392434 |L | 12.0 | 12.6 | |p | | | | | |00569 02365| +400302 |OO Her |175621.3+310737 |LB | 10.2 | 10.8 | |p | | | | |M6 |00569 02365| +400303 |OP Her |175648.5+452103 |SRB | 5.85 | 6.73 | |V |41196. | | 120.5 | |M5IIb-IIIa(S) |08814 02379| +400304 |OQ Her *|175754.7+312529 |SRA | 12.0 | 12.7 | |p |29710. | | 373. | |M |00569 02365| +400305 |OR Her |175810.6+383949 |RV | 13.6 | 16.1 | |p |29878. | | 210. | | |00569 02365| +400306 |OS Her *|180014.1+343925 |RRAB | 13.26 | 14.36 | |V |29965.246 | | 0.396141 |15 | |00569 02365| +400307 |OT Her |180208.7+401303 |RRAB | 14.3 | 15.5 | |p |29375.600 | | 0.611101 |25 | |00569 02365| +400308 |OU Her *|180302.0+282939 |LB | 11.1 | 11.6 | |p | | | | |M6 |01766 00832| +400309 |OV Her |180250.3+400744 |RRAB | 15.6 | 16.8 | |p |29705.616 | | 0.481788 |15 | |00569 02365| +400310 |OW Her |180300.8+362845 |RRAB | 13.6 | 14.3 | |V |29373.543 | | 0.5832163 |13 | |00569 02347| +400311 |OX Her *|180326.3+384140 |RRAB | 12.88 | 13.35 | |V |29374.488 | | 0.757367 |26 |A8-F5 |00569 02365| +400312 |OY Her |180442.1+380106 |RRC | 14.9 | 16.0 | |p |29373.520 | | 0.333195 |20 | |07293 02365| +400313 |OZ Her |180455.7+352513 |M | 14.5 | 17.3 | |p |29727. | | 149.6 |43 | |00569 02365| +400314 |PP Her |180734.6+362154 |RRAB | 15.4 | 16.2 | |p |29373.559 | | 0.595653 |20 | |00569 02365| +400315 |PQ Her |180732.5+401527 |IS | 12.5 | 13.2 | |p | | | | |G8 |00569 02365| +400316 |PR Her |180804.5+384617 |UG | 14.0 | 18.5 | |p | | | | | |00569 02365| +400317 |PS Her |180841.7+320207 |LB | 13.7 | 14.9 | |p | | | | |M7 |00569 02353| +400318 |PT Her |180939.0+350939 |SR | 12.6 | 14.6 | |p |30100. | | 165.5 | | |00569 02353| +400319 |PU Her |180952.3+320033 |UG | 15.5 | 19.5 | |p | | | | | |00569 02365| +400320 |PV Her |180950.2+354956 |SRA | 12.7 | 14.2 | |p |29400. | | 431. | | |00569 02353| +400321 |PW Her *|181024.1+332411 |EA/AR:/RS | 9.84 | 10.44 | 10.1 |V |44785.433 | | 2.8809877 |18 |K0IV-V |00001 02379| +400322 |PX Her |181120.3+311908 |RRAB | 13.8 | 15.6 | |p |26099.510 | | 0.5839212 |14 | |00569 02365| +400323 |PY Her |181211.0+325125 |RRAB | 14.5 | 16.3 | |p |44104.284 | | 0.50272483 |10 | |09266 02365| +400324 |PZ Her |181216.8+311456 |SR | 13.9 | 15.0 | |p |29740. | | 301. |50 | |00569 02365| +400325 |QQ Her |181244.7+384802 |RRAB | 13.7 | 14.6 | |p |29705.582 | | 0.623681 |18 | |00569 02365| +400326 |QR Her |181254.4+333534 |RRAB | 14.4 | 15.4 | |p |29672.588 | | 0.550564 |23 | |00569 02365| +400327 |QS Her |181318.7+345518 |SRB | 12.0 | 12.7 | |p | | | 600. : | |M2 |00569 02347| +400328 |QT Her |181336.3+390818 |LB | 12.4 | 13.6 | |p | | | | |M4 |03595 02347| +400329 |QU Her |181438.4+332354 |RRAB | 15.0 | 16.1 | |p |29752.354 | | 0.533652 |24 | |00569 02365| +400330 |QV Her | | | | | | | | | | | | |=V0635 Lyr +400331 |QW Her |184209.6+132000 |M | 15.0 | 20. | |p |30124. | | | | |00164 02367| +400332 |QX Her |184441.1+121345 |M | 13.7 |< 17.5 | |p |37955. | | 275.43 | | |00001 02368| +400333 |QY Her |184609.7+123750 |M | 13.7 | 20.5 | |p |30207. | | 244. | | |00164 02368| +400334 |QZ Her |185137.6+120919 |M | 14.4 | 21. | |p |33479. | | 303. | | |00164 02368| +400335 |V0335 Her |185307.3+131839 |M | 15.7 |< 17.7 | |p |29111. | | 217. : | | |00164 02368| +400336 |V0336 Her |160807.0+184856 |SRD | 10.3 | 11.3 | |p | | | 48.7 | |F7 |03599 00470| +400337 |V0337 Her |174847.2+454159 |SRB | 9.5 | 10.2 | |p | | | 280. : | |M8 |01778 02379| +400338 |V0338 Her *|175312.7+434623 |EA/SD | 10.07 | 11.15 | 10.13 |V |43691.123 | | 1.3057393 |17 *|F1V |00001 02379| +400339 |V0339 Her |180358.4+192554 |SR | 13.5 | 15.5 | |p |33830. | | 231.7 | | |00001 00158| +400340 |V0340 Her |180940.2+190848 |M | 13. |< 15.5 | |p |33836. | | 293. | | |01780 00158| +400341 |V0341 Her |182142.2+141608 |LB: | 12.0 | 13.5 | |V | | | | |M |03165 00554| +400342 |V0342 Her *|182413.0+250451 |EB/SD: | 10.5 | 11.3 | 10.7 |p |35693.440 | | 0.851730 | |F2 |00971 01781| +400343 |V0343 Her |182609.7+223437 |SR | 13.5 | 15. | |p | | | 50. : | | |03600 00158| +400344 |V0344 Her |183543.0+174321 |M: | 14. |< 15.5 | |p |33823. | | 127.15 | | |00001 00158| +400345 |V0345 Her |183554.6+205124 |M | 13. |< 15.5 | |p |33825. | | 316.4 | | |00001 00492| +400346 |V0346 Her |183657.7+212852 |M: | 14. |< 15.5 | |p |33530. | | | | |01780 00158| +400347 |V0347 Her *|184457.9+230315 |RRAB | 13.5 | 15.5 | |p |36104.27 | | 0.5373136 |20 : | |03506 00492| +400348 |V0348 Her |182250.9+195819 |M | 13. |< 15. | |p |34554. | | 217. | | |00001 00196| +400349 |V0349 Her |162809.3+442143 |RRAB | 14.1 | 14.6 | |p |34530.458 | | 0.62017 |18 | |01324 01324| +400350 |V0350 Her |172141.6+244604 |LB | 11.8 | 12.7 | |p | | | | |M5 |00503 02362| +400351 |V0351 Her |173252.6+252519 |SRB | 11.6 | 12.6 | |p | | | 80. : | |M6 |04201 02362| +400352 |V0352 Her |174245.0+303255 |SRB | 10.6 | 11.3 | |p | | | 350. : | |M4 |00499 02379| +400353 |V0353 Her |181005.3+285423 |LB | 11.4 | 12.0 | |p | | | | |M6 |00499 02379| +400354 |V0354 Her |181821.6+242111 |LB | 11.3 | 12.3 | |p | | | | |M7 |00306 03557| +400355 |V0355 Her |182721.0+131009 |EA/SD: | 13.2 | 14.1 | |p |29424.51 | | 17.0 /N| | |00164 02367| +400356 |V0356 Her |184159.3+130754 |M | 13.8 | 20.5 | |p |30080. | | 300. | | |00164 02367| +400357 |V0357 Her |184431.8+125532 |DSCT | 13.2 | 13.8 | |p |29407.519 | | 0.139725 |50 | |00164 02368| +400358 |V0358 Her |184707.3+130646 |EA/SD: | 14.0 | 15.6 | |p |29401.519 | | | | |00164 02368| +400359 |V0359 Her *|165628.7+373919 |EA/SD | 10.2 | 11.2 | |p |43673.432 | | 1.755735 |16 |F0 |00001 02718| +400360 |V0360 Her | | | | | | | | | | | | |N +400361 |V0361 Her |162237.6+191037 |SR | 12. | 15. | |p |36402. | | 85. | |M0 |02394 00542| +400362 |V0362 Her *|163039.5+232642 |RRAB | 13.3 | 14.4 | |p |39098.447 | | 0.718297 |20 | |05374 06286| +400363 |V0363 Her |165128.3+220435 |SRA | 11.4 | 12.8 | |p |35689. | | 197.1 | |M |04024 02609| +400364 |V0364 Her |170403.7+205001 |RRAB | 14.9 | 16.2 | |p |29399.486 | | 0.6188075 |08 | |04201 02763| +400365 |V0365 Her *|170539.9+213058 |RRAB | 12.7 | 14.0 | |p |29037.438 | | 0.613138 |20 | |03506 02324| +400366 |V0366 Her |170704.9+273747 |EA/SD | 12.2 | 14.1 | |p |27571.465 | | 2.758325 |14 *| |04201 02763| +400367 |V0367 Her |170820.7+252048 |RRAB | 16.6 | 17.5 | |p |29322.615 | | 0.4471302 |17 | |04201 02763| +400368 |V0368 Her |171031.1+222308 |RRAB | 15.7 | 16.3 | |p |35953.440 | | 0.543689 |20 | |04201 02763| +400369 |V0369 Her |171140.8+245732 |RRAB | 14.9 | 16.4 | |p |27543.489 | | 0.5257508 |12 | |04201 02763| +400370 |V0370 Her |171233.0+203224 |RRAB | 14.8 | 15.9 | |p |27550.587 | | 0.6337180 |12 | |04201 02763| +400371 |V0371 Her |171251.2+235401 |RRAB | 16.6 | 17.5 | |p |29747.483 | | 0.3420190 |29 : | |04201 02763| +400372 |V0372 Her |171316.9+205731 |RRAB | 15.6 | 17.1 | |p |29022.496 | | 0.6343068 |13 | |04201 02763| +400373 |V0373 Her *|171308.3+243659 |RR: | 16.5 | 17.3 | |p | | | | | |07079 02763| +400374 |V0374 Her |171334.1+240428 |LB | 15.5 | 16.2 | |p | | | | | |04201 02763| +400375 |V0375 Her |171340.6+275920 |SRA | 15.8 | 17.2 | |p |29368. | | 84.1 | | |04201 02763| +400376 |V0376 Her |171415.7+205203 |RRAB | 15.4 | 16.2 | |p |27564.487 | | 0.3552051 |20 | |04201 02763| +400377 |V0377 Her |171407.5+254556 |RRAB | 15.7 | 17.0 | |p |29322.550 | | 0.3707308 |20 : | |04201 02763| +400378 |V0378 Her |171442.2+252328 |RRAB | 15.6 | 16.5 | |p |29366.524 | | 0.3520452 |20 | |04201 02763| +400379 |V0379 Her |171435.3+222342 |RRAB | 14.3 | 15.2 | |p |27564.491 | | 0.6794819 |20 | |04201 02763| +400380 |V0380 Her |171543.1+251544 |RRAB | 15.1 | 16.0 | |p |27719.294 | | 0.5001940 |14 | |04201 02763| +400381 |V0381 Her |171611.1+205119 |EA/SD | 12.6 | 13.7 | |p |30431.535 | | 1.346256 |13 :*| |04201 02763| +400382 |V0382 Her |171617.2+220105 |RRAB | 15.7 | 16.4 | |V |29022.532 | | 0.4556118 |15 | |04201 02763| +400383 |V0383 Her |171628.2+205844 |RRC | 15.8 | 16.4 | |p |36363.462 | | 0.39722 |48 : | |04201 02763| +400384 |V0384 Her *|171630.9+233421 |RR: | 15.4 | 16.3 | |p | | | | | |07079 02763| +400385 |V0385 Her |171626.7+280557 |RRAB | 14.9 | 15.9 | |p |28314.320 | | 0.5281428 |11 | |04201 02763| +400386 |V0386 Her |171724.3+264842 |RRAB | 15.6 | 16.5 | |p |29691.631 | | 0.5367793 |15 | |04201 02763| +400387 |V0387 Her *|171847.0+201431 |EB/KE | 12.8 | 13.4 | 13.2 |p |28314.415 | | 0.5894719 | | |04201 02343| +400388 |V0388 Her |171845.1+233748 |RRAB | 15.6 | 16.7 | |p |29022.507 | | 0.6453251 |13 | |04201 02763| +400389 |V0389 Her |171916.1+191034 |RRAB | 15.4 | 16.3 | |V |29366.569 | | 0.3262982 |10 | |04201 02763| +400390 |V0390 Her |172028.4+254815 |RRAB | 15.6 | 16.8 | |p |29429.425 | | 0.5891989 |13 | |04201 02763| +400391 |V0391 Her |172107.4+190249 |RRAB | 16.1 | 17.0 | |p |29322.547 | | 0.3761690 |25 | |04201 02763| +400392 |V0392 Her |172051.4+263220 |RRAB | 12.8 | 13.9 | |V |28662.433 | | 0.5297446 |09 | |04201 02763| +400393 |V0393 Her |172104.0+265551 |M | 11.5 | 18.0 | |p |36438. | | 425.90 |33 : | |00001 02324| +400394 |V0394 Her *|172238.7+175305 |RRAB | 12.2 | 13.3 | |p |29747.504 | | 0.4360573 |09 | |04201 02763| +400395 |V0395 Her *|172234.0+244501 |GAL | 16.1 | 17.7 | |p | | | | | |06548 02763| +400396 |V0396 Her *|172241.3+243619 |QSO | 15.7 | 16.7 | |p | | | | | |08815 08815| +400397 |V0397 Her |172308.2+223930 |RRAB | 13.8 | 14.6 | |p |29399.396 | | 0.5562247 |22 | |04201 02343| +400398 |V0398 Her |172300.3+274402 |RRAB | 15.4 | 16.5 | |V |29366.578 | | 0.5138661 |15 | |04201 02763| +400399 |V0399 Her |172333.0+260858 |RRAB | 15.2 | 16.3 | |p |27571.410 | | 0.5554475 |13 | |04201 02763| +400400 |V0400 Her |172542.3+193327 |L | 14.4 | 15.4 | |p | | | | | |04201 02763| +400401 |V0401 Her |172644.8+254324 |RRAB | 15.9 | 17.2 | |p |29322.630 | | 0.483306 |13 | |04201 02763| +400402 |V0402 Her |172714.1+240244 |RRAB | 15.3 | 16.4 | |p |27543.443 | | 0.3308102 |15 | |04201 02763| +400403 |V0403 Her *|172728.9+221430 |EB/KE | 15.7 | 16.2 | 16.0 : |p |30131.441 | | 0.822300 | | |04201 02763| +400404 |V0404 Her |172741.5+265750 |RR | 16.0 | 16.8 | |p |29399.414 | | 0.555089 | | |04201 02763| +400405 |V0405 Her |172747.0+265552 |RRAB | 15.8 | 17.0 | |p |29369.487 | | 0.5879394 |18 | |04201 02763| +400406 |V0406 Her |172818.0+211630 |RRAB | 14.6 | 15.4 | |p |29322.650 | | 0.7368995 |13 | |04201 02763| +400407 |V0407 Her |172927.9+232528 |IS | 14.5 | 16.1 | |p | | | | | |04201 02763| +400408 |V0408 Her |172929.6+253535 |RRAB | 16.2 | 17.3 | |p |29399.500 | | 0.5444548 |26 | |04201 02763| +400409 |V0409 Her |173027.9+180637 |RRAB | 16.0 | 17.3 | |p |29399.471 | | 0.4678909 |14 | |04201 02763| +400410 |V0410 Her |173037.7+193707 |RRC | 14.6 | 15.5 | |p |27550.582 | | 0.5427273 |42 | |04201 02763| +400411 |V0411 Her |173049.3+191431 |RR | 15.0 | 16.1 | |p |29399.456 | | 0.329492 |42 : | |04201 02763| +400412 |V0412 Her *|173030.5+255415 |EB/KW | 14.7 | 15.5 | 15.2 |V |29495.386 | | 0.33621098 | | |04201 02763| +400413 |V0413 Her |173135.6+264204 |RRC | 15.6 | 16.3 | |p |35955.458 | | 0.351742 |45 | |04201 02763| +400414 |V0414 Her |173142.9+223842 |RRAB | 15.2 | 15.9 | |p |29691.561 | | 0.6260420 |14 | |04201 02763| +400415 |V0415 Her |173157.3+214656 |RRAB | 15.5 | 16.7 | |p |27924.392 | | 0.5494789 |14 | |04201 02763| +400416 |V0416 Her |173157.4+230813 |RRAB | 15.7 | 16.6 | |p |29022.490 | | 0.5488425 |23 | |04201 02763| +400417 |V0417 Her |173155.5+235058 |RRAB | 16.3 | 17.2 | |p |30499.523 | | 0.369240 |18 | |04201 02763| +400418 |V0418 Her |173213.0+181401 |RRAB | 12.6 | 13.2 | |V |29322.585 | | 0.3762347 |20 | |04201 02763| +400419 |V0419 Her |173245.7+185629 |RRAB | 15.6 | 16.3 | |V |29366.613 | | 0.5554943 |15 | |04201 02763| +400420 |V0420 Her |173232.1+272608 |RRAB | 14.5 | 15.6 | |p |29022.487 | | 0.6003396 |12 | |04201 02763| +400421 |V0421 Her |173205.5+394532 |RR | 14. | 15. | |p | | | | | |02394 00491| +400422 |V0422 Her *|173316.9+225939 |RRAB | 16.0 | 17.1 | |p |34131.501 | | 0.515828 |31 | |04201 02763| +400423 |V0423 Her *|173356.0+264846 |EA/SD | 14.9 | 15.6 | 15.0 |p |29322.619 | | 2.651009 |07 | |04201 02763| +400424 |V0424 Her |173443.9+175717 |RRAB | 13.7 | 14.8 | |p |29322.598 | | 0.6307071 |10 | |04201 02763| +400425 |V0425 Her |173521.6+265221 |RRAB | 14.2 | 15.5 | |p |27543.453 | | 0.5571380 |17 | |04201 02763| +400426 |V0426 Her *|173529.1+230128 |EW/KW | 15.5 | 15.8 | 15.8 |V |27571.460 | | 0.4921282 | | |04201 02763| +400427 |V0427 Her |173714.9+211230 |LB | 11.6 | 12.8 | |p | | | | |K5 |04201 00832| +400428 |V0428 Her |173714.6+244909 |RRAB | 16.3 | 17.4 | |p |29399.486 | | 0.6417657 |20 | |04201 02763| +400429 |V0429 Her |173733.3+244346 |RRAB | 15.3 | 16.7 | |p |42277.30 | | 0.51837 | | |07333 02763| +400430 |V0430 Her |173806.2+243905 |RRAB: | 15.8 | 16.7 | |p |34533.400 | | 0.296780 |17 : | |04201 02763| +400431 |V0431 Her *|173832.8+243724 |RRAB | 14.9 | 15.8 | |p |29747.477 | | 0.5004362 |11 | |04201 02763| +400432 |V0432 Her |173939.3+251315 |EW: | 16.2 | 17.4 | |p | | | | |B8 |09270 02763| +400433 |V0433 Her |174024.9+252549 |CST: | 16.4 | | |p | | | | |G2: |08656 02763| +400434 |V0434 Her |174033.0+224902 |RRAB | 13.8 | 15.2 | |p |29037.358 | | 0.5144034 |11 | |04201 02763| +400435 |V0435 Her |174111.4+251858 |RRAB | 14.7 | 15.8 | |p |28302.387 | | 0.5740059 |15 | |04201 02763| +400436 |V0436 Her *|174126.2+190949 |RR | 15.8 | 17.0 | |p |36482.340 | | 0.51485 | | |04201 02763| +400437 |V0437 Her |174126.6+244435 |RRAB | 16.2 | 17.2 | |p |29022.517 | | 0.5163648 |29 | |04201 02763| +400438 |V0438 Her |174204.8+201144 |RRAB | 16.2 | 17.0 | |p |29366.556 | | 0.746803 | | |04201 02763| +400439 |V0439 Her |174204.8+234836 |RRAB | 14.7 | 15.6 | |V |42280.31 | | 0.46044 |12 | |07333 02763| +400440 |V0440 Her |174318.1+233024 |RRAB | 16.1 | 17.0 | |p |29322.581 | | 0.6260952 |20 | |04201 02763| +400441 |V0441 Her *|175525.2+260300 |SRD | 5.34 | 5.54 | |V | | | 68. : | |F2Ibe |09294 BD | +400442 |V0442 Her *|181258.3+420346 |RRAB | 12.5 | 13.8 | |p |35730.550 | | 0.4420840 |20 | |03603 00491| +400443 |V0443 Her |182207.8+232720 |ZAND | 11.42 | 11.72 | |V | | | | |M3ep+O |02813 09296| +400444 |V0444 Her |184536.6+155913 |M: | 13.0 | 16.0 | |p |36066. | | | |e |02814 04225| +400445 |V0445 Her |184757.0+135449 |M: | 13.2 | 15.8 | |p |36042. | | | |e |02814 2MASS| +400446 |V0446 Her *|185721.6+131429 |NA | 2.8 | 18.8 | |p |36997. |1960 | | |pec(NOVA) | 03607| +400447 |V0447 Her |162451.7+441027 |RR | 13.5 | 14.5 | |p |36344.505 | | 0.5325319 | | |04149 00922| +400448 |V0448 Her |164238.7+395245 |RRAB | 13. | 15. | |p |36372.357 | | 0.653529 |23 : | |04149 00542| +400449 |V0449 Her |164239.1+482424 |LB | 8.9 | 9.9 | |p | | | | |M6 |04197 02379| +400450 |V0450 Her |164409.4+341231 |EA/D | 10.1 | 10.7 | |p |25687.565 | | 0.912729 |12 *|A0 |04109 BD | +400451 |V0451 Her *|170133.0+145659 |ACV | 6.26 | 6.34 | |V |37145.3 | | 6.0094 | |B9p(Cr-Eu) |09298 BD | +400452 |V0452 Her |170236.1+255130 |SRA | 13.2 | 13.9 | |p |29393. | | 146.5 |49 |M |04201 02362| +400453 |V0453 Her |170410.3+225155 |RRAB | 16.1 | 17.0 | |p |29369.538 | | 0.5805956 |16 | |04201 02362| +400454 |V0454 Her |170412.8+262020 |L | 12.8 | 13.8 | |p | | | | | |04201 02362| +400455 |V0455 Her |170634.0+200806 |L | 13.3 | 14.1 | |p | | | | | |04201 02362| +400456 |V0456 Her |170647.6+210618 |LB | 12.1 | 13.8 | |p | | | | | |04201 02324| +400457 |V0457 Her |170823.9+204256 |LB | 11.9 | 12.5 | |p | | | | |M6 |04201 02343| +400458 |V0458 Her *|170830.9+183114 |RRC | 13.2 | 13.8 | |V |27719.244 | | 0.3599801 |31 | |04201 02324| +400459 |V0459 Her |170908.3+274431 |RRAB | 14.7 | 16.0 | |p |41072.503 | | 0.596405 |12 |A0 |07294 02362| +400460 |V0460 Her |171020.6+175823 |SRA | 13.8 | 14.8 | |p |29380. | | 82.76 | | |04201 02362| +400461 |V0461 Her |171049.2+125251 |RR | 13. | 14.5 | |p |36758.478 | | 0.513010 | | |04149 06286| +400462 |V0462 Her |171110.1+230010 |L | 13.8 | 14.4 | |p | | | | | |04201 02324| +400463 |V0463 Her *|171133.7+162439 |SRD | 8.46 |( 0.05 )| |V |36029. | | 54.0 | |K0III: |04203 BD | +400464 |V0464 Her |171134.4+233631 |ISB | 13.2 | 14.5 | |p | | | | | |04201 02362| +400465 |V0465 Her |171228.3+205220 |EA/SD: | 15.7 | 16.9 | |p |30464.572 | | | |F5: |04201 02763| +400466 |V0466 Her |171238.6+202813 |SRB | 11.0 | 12.1 | |p |27565. | | 76.70 | |M5 |04201 02362| +400467 |V0467 Her |171250.8+250149 |RRAB | 13.9 | 15.0 | |V |29402.472 | | 0.6835066 |11 | |04201 02324| +400468 |V0468 Her |171340.0+205849 |RRAB | 14.3 | 16.1 | |V |27543.475 | | 0.5106303 |12 | |04201 02343| +400469 |V0469 Her |171410.6+194529 |RRAB | 13.8 | 15.0 | |p |27719.292 | | 0.5964724 |16 | |04201 02324| +400470 |V0470 Her |171414.9+240221 |IS | 15.1 | 16.0 | |p | | | | | |04201 02362| +400471 |V0471 Her |171502.6+222556 |RRAB | 14.4 | 15.7 | |p |29045.362 | | 0.5907796 |14 | |04201 02343| +400472 |V0472 Her |171548.5+212757 |LB | 12.4 | 13.0 | |p | | | | |M0 |04201 02343| +400473 |V0473 Her |171743.6+202421 |L: | 14.3 | 14.7 | |p | | | | |G8III: |09270 02763| +400474 |V0474 Her |171817.8+272801 |RRAB | 15.0 | 16.0 | |V |29322.591 | | 0.4684699 |09 | |04201 02362| +400475 |V0475 Her |171959.4+241206 |UV: | 12.5 | 15.8 | |p | | | | | |04201 02343| +400476 |V0476 Her |172048.7+220552 |RRAB | 15.3 | 16.2 | |V |29691.617 | | 0.5559165 |07 | |04201 02324| +400477 |V0477 Her *|172057.8+261820 |EW/KW | 14.9 | 15.5 | 15.4 |p |29322.566 | | 0.32517464 | | |04201 02763| +400478 |V0478 Her |172105.6+233937 |IS | 15.5 | 17.1 | |p | | | | | |04201 02362| +400479 |V0479 Her |172126.2+183320 |LB | 12.5 | 13.8 | |p | | | | |M |04201 02343| +400480 |V0480 Her |172220.4+205641 |RRAB | 15.4 | 16.2 | |V |28341.519 | | 0.6528598 |40 | |04201 02362| +400481 |V0481 Her |172415.6+184142 |RRAB | 14.8 | 16.0 | |p |27571.470 | | 0.4810238 |09 | |04201 02362| +400482 |V0482 Her *|172509.4+184342 |RRC: | 15.8 | 16.3 | |p |34121.488 | | 0.374595 |40 | |04201 02763| +400483 |V0483 Her |172514.2+182020 |RRAB | 14.3 | 15.6 | |p |27924.327 | | 0.4942733 |16 | |04201 02362| +400484 |V0484 Her |172531.9+204706 |RRAB | 13.4 | 14.6 | |p |27599.495 | | 0.5936897 |17 | |04201 02324| +400485 |V0485 Her |172530.4+214442 |SRA | 15.0 | 16.2 | |p |27620. | | 168.36 | | |04201 02362| +400486 |V0486 Her |172638.4+265618 |RRAB | 12.8 | 13.6 | |p |27543.571 | | 0.8059317 |26 | |04201 02324| +400487 |V0487 Her |172642.7+255501 |RRAB | 15.9 | 16.6 | |p |29022.497 | | 0.4117177 |13 | |04201 02362| +400488 |V0488 Her |172702.7+225306 |ISB | 13.8 | 15.2 | |p | | | | |K |04201 02324| +400489 |V0489 Her |172902.8+203817 |RRAB | 14.0 | 14.8 | |p |29022.527 | | 0.5753114 |08 | |04201 02362| +400490 |V0490 Her |172938.8+224911 |EA/SD | 13.9 | 15.0 | |p |27543.421 | | 1.4966132 |10 :*| |04201 02324| +400491 |V0491 Her |173009.1+205552 |RRAB | 14.6 | 15.9 | |V |27550.553 | | 0.4596560 |08 | |04201 02324| +400492 |V0492 Her |173004.4+252315 |LB | 15.0 | 15.9 | |p | | | | | |04201 02324| +400493 |V0493 Her |173016.4+233718 |ISB | 13.8 | 15.2 | |p | | | | |K |04201 02324| +400494 |V0494 Her |173213.0+212314 |RRAB | 14.4 | 15.5 | |p |28630.598 | | 0.7179178 |13 | |04201 02324| +400495 |V0495 Her |173200.5+450139 |RR | 15.0 |< 15.5 | |p |37101.437 | | 0.477289 |50 : | |04149 01217| +400496 |V0496 Her |173335.6+184532 |L | 13.7 | 14.3 | |p | | | | | |04201 02763| +400497 |V0497 Her |173353.8+223706 |RRAB | 14.8 | 15.8 | |V |27719.281 | | 0.3905308 |06 | |04201 02324| +400498 |V0498 Her |173457.3+224951 |RRAB | 16.0 | 16.9 | |p |29402.449 | | 0.3815794 |10 | |04201 02362| +400499 |V0499 Her *|173503.2+263507 |RRAB | 15.1 | 16.0 | |V |28248.528 | | 0.3203689 |21 | |04201 02362| +400500 |V0500 Her |173558.6+182836 |L | 12.8 | 13.9 | |p | | | | | |04201 02343| +400501 |V0501 Her |173543.5+303835 |E | 10.5 | 11.0 | |p | | | | | |03148 02363| +400502 |V0502 Her *|173549.3+322055 |EW/KW | 12.8 | 13.7 | 13.5? |p |30938.493 | | 0.3692768 | | |09319 02363| +400503 |V0503 Her |173640.5+231812 |ZAND: | 13.1 | 14.4 | |p | | | 90. : | |M2p |08656 02324| +400504 |V0504 Her |173745.1+194806 |RRAB: | 15.8 | 16.4 | |V |30024.639 | | 0.5134647 |25 : | |04201 02362| +400505 |V0505 Her |173740.6+252224 |ISB | 13.8 | 15.0 | |p | | | | |M1 |04201 02362| +400506 |V0506 Her |173811.3+185317 |RRAB | 14.4 | 15.5 | |V |29022.460 | | 0.3780735 |15 | |04201 02343| +400507 |V0507 Her |173828.4+181525 |RRAB | 14.6 | 15.5 | |V |27543.498 | | 0.5490263 |15 | |04201 02362| +400508 |V0508 Her |173820.0+314038 |LB | 11.1 | 11.7 | |p | | | | |M7 |04022 BD | +400509 |V0509 Her |173920.3+224449 |M | 13.1 | 16.8 | |p |27730. | | 308.65 |44 | |04201 02324| +400510 |V0510 Her *|173936.7+211504 |RRAB | 15.1 | 15.9 | |V |27543.503 | | 0.6041644 |18 | |04201 02324| +400511 |V0511 Her *|173937.8+195502 |RRAB | 15.2 | 15.7 | |V |27599.494 | | 0.6309283 |32 | |04201 02362| +400512 |V0512 Her |174020.1+214341 |RRC | 16.1 | 16.7 | |p |35953.610 | | 0.34784 | | |04201 02362| +400513 |V0513 Her *|174021.9+241547 |EW/KW | 15.3 | 15.7 | 15.7 |V |30024.654 | | 0.3037689 | | |04201 02763| +400514 |V0514 Her |174056.9+240256 |RRAB | 13.6 | 15.1 | |p |27550.530 | | 0.6339664 |11 | |04201 02343| +400515 |V0515 Her |174100.7+235147 |RRAB | 15.2 | 16.8 | |p |29747.507 | | 0.4776845 |19 | |04201 02362| +400516 |V0516 Her *|174122.8+245150 |EW/KW | 16.4 | 17.1 | 17.1 |p |29402.420 | | 0.4632348 | | |04201 02763| +400517 |V0517 Her |174134.9+192456 |RR | 16.1 | 17.1 | |p |29022.583 | | 0.597303 : | | |04201 02362| +400518 |V0518 Her |174215.9+194145 |LB | 13.6 | 14.5 | |p | | | | | |04201 02324| +400519 |V0519 Her |174239.9+260510 |RR | 15.7 | 16.4 | |p |29022.563 | | 0.316 : | | |03148 02363| +400520 |V0520 Her |174257.3+200809 |SRA | 14.1 | 15.8 | |p |30049. | | 205.9 | | |04201 02363| +400521 |V0521 Her |174344.0+230013 |RRAB | 13.8 | 15.4 | |p |29022.532 | | 0.4792011 |16 | |04201 02363| +400522 |V0522 Her |174721.1+400109 |LB | 10.7 | 11.5 | |p | | | | |M4 |04211 BD | +400523 |V0523 Her *|175326.2+314248 |RRAB | 14.1 | 14.7 | |p |30940.447 | | 0.3842 |21 | |03148 02363| +400524 |V0524 Her *|175704.8+323335 |RRAB | 14.6 | 16.2 | |p |30938.500 | | 0.933 |11 | |03148 02363| +400525 |V0525 Her |175747.0+315315 |RR | 15.5 | 16.5 | |p |36317.391 | | | | |03148 02363| +400526 |V0526 Her |175809.0+411944 |SR | 11.7 | 13.5 | |p |36660. | | 180. : | | |04406 04406| +400527 |V0527 Her *|180234.5+283244 |RRAB | 14.5 | 16.1 | |p |36308.530 | | 0.5188 |10 | |03148 02363| +400528 |V0528 Her |180649.1+324408 |SRA | 13.0 | 13.5 | |p |30443. | | 76. | | |03148 02363| +400529 |V0529 Her *|180759.0+421326 |SR | 10.5 | 11.4 | |p |36800. | | 400. | |M7-M10 |04216 04217| +400530 |V0530 Her |181047.5+250059 |SR | 12.8 | 13.6 | |p | | | 100. | | |03148 02363| +400531 |V0531 Her |181039.5+281824 |RRAB | 14.8 | 16.2 | |p |30939.508 | | 0.6127 : |16 | |03148 02363| +400532 |V0532 Her |181156.2+280358 |RR | 14.8 | 16.0 | |p | | | | | |03148 02363| +400533 |V0533 Her *|181420.5+415123 |NA | 3. | 16.2 | |p |38060. |1963 | | |pec(NOVA) | 04876| +400534 |V0534 Her |182438.3+195224 |SR: | 12.5 | 15. | |p | | | | | |04225 04225| +400535 |V0535 Her |184535.6+215905 |ACV | 6.41 | 6.58 | |V |38543.8 | | 9.9750 |40 |B9p(Si-Sr-Cr) |08824 BD | +400536 |V0536 Her |185353.1+195238 |SR: | 12.5 | 15. | |p | | | | | |04225 04225| +400537 |V0537 Her |161338.4+224144 |RRAB | 14.5 | 15.6 | |p |38522.414 | | 0.487621 |18 | |04165 03910| +400538 |V0538 Her |161406.8+235314 |SRA | 14.6 | 16.3 | |p |38562. | | 140. | | |04165 03910| +400539 |V0539 Her |161744.4+184716 |RRAB | 14.8 | 15.9 | |p |38849.534 | | 0.581556 |15 | |04165 03910| +400540 |V0540 Her |161943.1+231658 |RRAB | 14.7 | 16.1 | |p |39886.541 | | 0.466547 |14 | |04165 03910| +400541 |V0541 Her |162405.0+184824 |RRAB | 14.0 | 15.9 | |p |38503.541 | | 0.568227 |18 | |04165 03910| +400542 |V0542 Her |163012.4+190048 |RRAB | 14.5 | 16.0 | |p |39246.823 | | 0.619405 |12 | |04165 03910| +400543 |V0543 Her |163556.2+200023 |RRAB | 15.1 | 16.4 | |p |39615.634 | | 0.631222 |12 | |04165 03910| +400544 |V0544 Her |163805.4+083759 |UG | 14.5 | 20. : | |p | | | | | |03903 08852| +400545 |V0545 Her |163849.4+245147 |RRAB | 14.0 | 15.3 | |p |38495.506 | | 0.598108 |12 | |04165 03910| +400546 |V0546 Her |164122.3+122511 |RR | 14. | 15. | |p |38585.44 | | | | |03905 03905| +400547 |V0547 Her |164330.1+075048 |RR | 14.5 | 15.5 | |p |39262.49 | | | | |03903 03903| +400548 |V0548 Her |164406.5+080730 |M: | 12.5 | 17.2 | |p |38900. | | | | |03903 03903| +400549 |V0549 Her |164403.5+121138 |RR | 15.5 | 17. | |p |38910.45 | | | | |03903 03903| +400550 |V0550 Her |172446.2+164227 |RR | 15.5 | 16.5 | |p |39259.48 | | | | |03903 03903| +400551 |V0551 Her *|172746.7+142510 |RR | 15. | 16. | |p |39257.51 | | | | |03903 03903| +400552 |V0552 Her *|173011.8+142235 |RR | 13. | 14. | |p |38641.38 | | | | |03903 03903| +400553 |V0553 Her |173202.6+164750 |RR: | 14.5 | 16. | |p |38853.65 | | | | |03903 03903| +400554 |V0554 Her *|173552.4+160310 |RR | 16. | 17. | |p |38591.47 | | | | |03903 03903| +400555 |V0555 Her |173929.1+154325 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +400556 |V0556 Her |174453.5+144057 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +400557 |V0557 Her *|174549.0+150718 |RR | 13.5 | 14.5 | |p |38910.53 | | | | |03903 03903| +400558 |V0558 Her |174836.6+143657 |RR | 14.5 | 16. | |p |38641.38 | | | | |03903 03903| +400559 |V0559 Her |174916.5+281821 |EA | 15. | 16. | |p | | | | | |03776 03776| +400560 |V0560 Her |175017.7+255810 |RR | 15. | 16. | |p | | | | | |03776 03776| +400561 |V0561 Her |175130.1+282213 |RR | 16. | 17.5 | |p | | | | | |03776 03776| +400562 |V0562 Her |175316.0+161702 |RR: | 14.5 | 15.5 | |p |39261.50 | | | | |03903 03903| +400563 |V0563 Her |175807.2+283559 |EA/SD: | 15.5 | 17. | |p |38587.436 | | | | |03776 03776| +400564 |V0564 Her |175817.4+382118 |RRAB | 14.4 | 15.9 | |p |29374.544 | | 0.4028257 |15 | |04184 03910| +400565 |V0565 Her |180333.2+344322 |RRAB | 15.4 |< 16.9 | |p |30088.490 | | 0.5270693 |24 | |04184 03910| +400566 |V0566 Her |180751.0+414309 |SRB | 8.6 | 9.26 | |p | | | 137. | |M4III |09244 03944| +400567 |V0567 Her |180905.0+220741 |M: | 12. : | 16. : | |p | | | | | |05124 05124| +400568 |V0568 Her |180915.3+322524 |RR | 15.9 |< 17.1 | |p |29670.651 | | 0.6576447 : | | |04184 03910| +400569 |V0569 Her |180948.8+290318 |RR | 16. | 17. | |p | | | | | |03776 03776| +400570 |V0570 Her *|181002.0+352412 |RR: | 15.9 | 18. : | |p |39287.509 | | | | |04184 03910| +400571 |V0571 Her |181032.9+363816 |RRAB | 15.5 | 16.3 | |p |29672.629 | | 0.5195925 |15 | |04184 03910| +400572 |V0572 Her |181138.4+255439 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +400573 |V0573 Her |181126.2+295632 |RR | 16. | 17. | |p | | | | | |03910 03910| +400574 |V0574 Her |181335.8+282952 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +400575 |V0575 Her |181435.5+294441 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +400576 |V0576 Her |181838.1+282513 |RR | 14. | 15. | |p | | | | | |03776 03776| +400577 |V0577 Her |181901.5+220649 |M | 15.0 |< 19. | |B |39557. | | 222. : | | |00001 05131| +400578 |V0578 Her *|182839.0+125443 |SR | 14.5 | 17. | |p | | | | | |03903 03903| +400579 |V0579 Her |183736.9+130956 |M | 15. |< 17. | |p |29520. :| | | | |03903 03903| +400580 |V0580 Her |185303.7+153323 |SR | 17. | 18.5 | |p | | | | | |03776 03776| +400581 |V0581 Her |185313.8+122700 |M: | 16. |< 17.5 | |p |30150. :| | 250. : | | |03903 03903| +400582 |V0582 Her *|185554.6+135427 |SR | 17.5 | 20. | |p | | | | | |03776 03776| +400583 |V0583 Her *|185622.8+145318 |SR | 17.5 | 19. | |p | | | | | |03776 03776| +400584 |V0584 Her |185713.0+163408 |SR | 18. | 19.5 | |p | | | | | |03776 03776| +400585 |V0585 Her |185723.7+143000 |M: | 16. |< 21. : | |p | | | | | |03776 03776| +400586 |V0586 Her |160902.3+172317 |RRAB | 15.3 | 16.4 | |p |39596.564 | | 0.560790 |30 : | |04165 05515| +400587 |V0587 Her |160759.2+242704 |SRD | 14.9 | 15.6 | |p | | | 50. : | | |04165 05443| +400588 |V0588 Her *|162148.8+213448 |RRC: | 16.0 | 16.8 : | |p | | | | | |04165 05443| +400589 |V0589 Her |162207.2+192237 |UG | 14.1 |< 17.5 | |p | | |( 144. ) | | |04165 08852| +400590 |V0590 Her |162512.7+333308 |EA | 13.5 | 14. | |p |38583.46 | | | | |05515 05515| +400591 |V0591 Her |163017.4+182357 |RRAB | 15.0 | 16.0 | |p |38856.481 | | 0.702272 |12 | |04165 05443| +400592 |V0592 Her |163056.4+211658 |NA | 12.3 |< 20. | |p |40038. |1968 | | | |05559 05559| +400593 |V0593 Her |163142.4+181238 |RRAB | 15.0 | 16.6 | |p |39177.269 | | 0.516496 |14 | |04165 05515| +400594 |V0594 Her |163221.4+194821 |RRAB | 16.3 | 17.0 | |p |39565.675 | | 0.503289 |14 | |04165 05515| +400595 |V0595 Her |163227.7+190338 |RRAB | 13.6 | 16.1 | |p |38495.483 | | 0.499637 |17 | |04165 05515| +400596 |V0596 Her |163234.1+302039 |RR | 14.5 | 15. | |p |39528.60 | | | | |05515 05515| +400597 |V0597 Her |163318.9+364741 |RR | 15. | 16. | |p |39528.60 | | | | |05515 05515| +400598 |V0598 Her |163503.6+185240 |RRAB | 15.2 | 16.2 | |p |39647.775 | | 0.473482 |14 | |04165 05515| +400599 |V0599 Her |163630.3+263214 |RRAB | 14.1 | 15.2 | |p |38558.444 | | 0.750618 |18 | |04165 05443| +400600 |V0600 Her *|163658.2+142831 |ELL+BCEP: | 7.03 |( 0.03 : )| |V | | | 5.20065 | |B0.5III |04189 BD | +400601 |V0601 Her *|163648.8+241003 |RRAB | 14.3 | 16.1 | |p |39917.561 | | 0.461928 |19 | |04165 05515| +400602 |V0602 Her |163840.4+320218 |RRAB | 16.0 | 16.9 | |p |41100.448 | | 0.6758404 |23 | |00001 05515| +400603 |V0603 Her |163950.5+194641 |RRAB | 14.5 | 15.8 | |p |39012.178 | | 0.565098 |10 | |04165 05515| +400604 |V0604 Her *|164005.8+184110 |SR | 11.8 | 13.1 | |p | | | 148. | | |04165 05515| +400605 |V0605 Her |164041.7+115158 |RR | 13.5 | 14.5 | |p |39558.60 | | | | |05515 05515| +400606 |V0606 Her |164051.8+204807 |RRAB | 15.2 | 16.5 | |p |39609.662 | | 0.612480 |27 | |04165 05443| +400607 |V0607 Her |164054.5+262210 |EA/SD | 13.3 | 14.2 | |p |39538.619 | | 3.425200 | | |04165 05515| +400608 |V0608 Her *|164249.1+233148 |RRAB | 16.3 | 17.1 | |p |38551.424 | | 0.496009 |15 | |04165 05515| +400609 |V0609 Her |164327.0+191346 |RRAB | 16.2 | 17.0 | |p |38521.483 | | 0.534046 |18 | |04165 05443| +400610 |V0610 Her |164338.5+223130 |UG | 16.2 |< 16.8 | |p | | |( 110. :) | | |04165 05515| +400611 |V0611 Her |164449.5+195940 |UG | 15.4 |< 16.4 | |p | | |( 360. :) | | |04165 05515| +400612 |V0612 Her |164507.0+090234 |RR | 15. | 16. | |p |39270.46 | | | | |05515 05515| +400613 |V0613 Her |164820.9+100251 |RR | 15. | 16. | |p |39270.46 | | | | |05515 05515| +400614 |V0614 Her |164807.7+233547 |RR: | 16.0 | 16.7 | |p | | | | | |04165 05443| +400615 |V0615 Her *|164935.9+054600 |SR: | 13.5 | 14.5 | |p | | | | | |05515 05515| +400616 |V0616 Her |165014.0+190342 |RRAB | 14.0 | 15.9 | |p |38854.543 | | 0.613428 |18 | |04165 05443| +400617 |V0617 Her |164932.5+354634 |RRAB | 15.2 | 16.8 | |B |41069.494 | | 0.534599 |07 | |07294 05515| +400618 |V0618 Her *|165853.8+342858 |RRAB | 14.5 | 15.8 | |B |41099.500 | | 0.588489 |14 | |07294 05515| +400619 |V0619 Her |170621.1+315319 |RRAB | 13.3 | 14.6 | |p |41421.470 | | 0.54663 |16 | |07545 05515| +400620 |V0620 Her |171103.2+241416 |DSCTC | 6.19 | 6.23 | |V | | | 0.0797 |48 |A8V |07015 BD | +400621 |V0621 Her |171734.1+163526 |M | 14.5 |< 17. | |p |39620. :| | | | |05515 05515| +400622 |V0622 Her |173836.4+155615 |SR: | 13.5 | 14.5 | |p | | | | | |03903 03903| +400623 |V0623 Her |174315.9+164552 |RRAB | 14. | 15.5 | |p |38532.525 | | 0.48629 |12 |F8 |08656 03903| +400624 |V0624 Her *|174417.3+142436 |EA/DM | 6.18 | 6.36 | 6.35 |V |40321.0049 | | 3.894977 |10 *|A3m |06256 BD | +400625 |V0625 Her |174423.6+154629 |RR | 15.5 | 16.5 | |p |39619.51 | | | | |05515 05515| +400626 |V0626 Her |175437.6+144840 |RR | 14.5 | 15.5 | |p |39619.51 | | | | |05515 05515| +400627 |V0627 Her |175501.6+354543 |CST | 17.3 : | | |p | | | | |G0: |08656 05443| +400628 |V0628 Her |180019.4+340041 |RRAB | 15.5 | 16.6 | |p |30443.599 | | 0.37476 : |22 | |04184 05443| +400629 |V0629 Her |180350.8+320557 |RRAB | 14.8 |< 16.2 | |p |30163.464 | | 0.71433 | | |04184 05443| +400630 |V0630 Her |180510.2+315617 |RRAB | 16.2 |< 17.8 | |p |30103.513 | | 0.476151 | | |04184 05443| +400631 |V0631 Her |180844.0+342734 |UG | 16.2 |< 21. | |p | | |( 32. ) | | |04184 05443| +400632 |V0632 Her |181941.3+243316 |UG | 15.4 |< 20. | |p | | | | | |05432 05432| +400633 |V0633 Her |183322.8+132223 |RRAB | 13.0 | 14.4 | |p |29114.476 | | 0.489994 |15 | |05249 05249| +400634 |V0634 Her |162254.0+443941 |RRAB | 14.5 |< 15.5 | |p |27545.320 | | 0.512513 |15 | |05957 05957| +400635 |V0635 Her |164229.6+494258 |RRAB | 13.5 |< 15. | |p |27927.400 | | 0.499492 |15 | |05957 05957| +400636 |V0636 Her |164719.8+421420 |LB | 5.83 |( 0.20 )| |V | | | | |M4III-IIIa |05840 BD | +400637 |V0637 Her *|164914.2+455900 |ACV | 4.78 | 4.85 | |V | | | 3.8567 | |A3Vp(Sr-Cr-Eu) |09301 BD | +400638 |V0638 Her |171630.8+444124 |IA | 15.4 | 19.6 | |B | | | | |F |08474 05888| +400639 |V0639 Her *|171953.3+262956 |UV | 12.92 | 13.02 | |V | | | | |M4.5Ve |06062 07547| +400640 |V0640 Her *|172554.4+165503 |LB | 5.98 | 6.21 | |V | | | | |M4IIIab |05841 BD | +400641 |V0641 Her *|173817.5+341712 |EW: | 11.2 | 11.8 | |p | | | | |G5 |05957 01980| +400642 |V0642 Her |173342.8+145030 |SRB | 6.41 | 6.56 | |V | | | 12. : | |M4IIIa |06645 BD | +400643 |V0643 Her |183309.8+232251 |EA/SD | 13.5 | 15. | |p |36069.386 | | 1.223110 |20 *| |06556 00491| +400644 |V0644 Her *|165516.0+133712 |DSCTC | 6.32 | 6.36 | |V | | | 0.11505449 |50 |F2IV |07015 BD | +400645 |V0645 Her *|165501.3+290220 |DSCT: | 7.30 |( 0.14 )| |V | | | | |A5 |06456 BD | +400646 |V0646 Her |170548.7+333519 |RRAB | 13.6 | 15.6 | |p |40396.446 | | 0.544985 |10 | |07546 05884| +400647 |V0647 Her *|171954.2+263003 |UV | 12.2 | 12.99 | |B | | | | |M4eV |06864 07547| +400648 |V0648 Her |173225.2+262622 |DSCTC | 6.86 |( 0.04 )| |V | | | 0.29 : | |A7V |06456 BD | +400649 |V0649 Her |160644.5+484224 |LB: | 11.5 | 12.7 | |V | | | | |M7 |06977 04238| +400650 |V0650 Her |162907.8+190623 |RRAB | 13.0 | 15.0 | |p |39444.432 | | 0.518868 |15 | |04165 03910| +400651 |V0651 Her |164502.2+084833 |DCEP: | 13. | 14. | |p | | | | | |03905 03905| +400652 |V0652 Her *|164804.7+131543 |* | 10.50 | 10.61 | |V |42216.8050 | | 0.10800182 |30 |B1 |09302 BD | +400653 |V0653 Her |165652.9+233235 |SR: | 13. | 15.5 | | | | | | |M2 |00542 00542| +400654 |V0654 Her *|165741.0+351611 |UV | | 10.00 | |V | | | | |K4V |07801 07801| +400655 |V0655 Her *|171353.7+155703 |ACV: | 8.2 |( 0.02 )| |V |36005.007 | | 5.891 |49 |A7V |04203 BD | +400656 |V0656 Her |172018.9+180326 |LB: | 4.9 | 5.1 | |V | | | | |M2IIIab |06412 BD | +400657 |V0657 Her *|172824.3+155151 |LB: | 9.9 | 10.7 | |p | | | | |M7 |02609 BD | +400658 |V0658 Her |172836.7+153117 |L | 14. | 15. | |p | | | | | |03776 03776| +400659 |V0659 Her |173053.1+142149 |RR: | 14. | 15. | |p | | | | | |03776 03776| +400660 |V0660 Her |174209.2+234831 |UG | 16. | 19. : | |p | | | | | |07802 07802| +400661 |V0661 Her |174213.3+283729 |L | 15. | 16. | |p | | | | | |03776 03776| +400662 |V0662 Her *|174259.6+262555 |RRAB | 15. | 16.5 | |p | | | 0.56800 |10 | |07803 07803| +400663 |V0663 Her |174308.8+293142 |RR: | 15. | 16. | |p | | | | | |03776 03776| +400664 |V0664 Her |175354.0+315332 |RR: | 16. | 17. | |p | | | | | |03776 03776| +400665 |V0665 Her |175455.4+170130 |L | 14. | 15. | |p | | | | | |05515 05515| +400666 |V0666 Her |180141.5+312549 |RR: | 15. | 16. | |p | | | | | |03776 03776| +400667 |V0667 Her |180230.8+352221 |RRAB | 15.0 | 16.7 | |p |29965.253 | | 0.501216 |20 | |04184 03910| +400668 |V0668 Her |181127.3+325758 |RR | 16.2 |< 16.6 | |p |29373.532 | | 0.4936179 : | | |04184 03903| +400669 |V0669 Her |181154.2+312419 | | 6.62 |( 0.14 )| |B | | | | |M3III |01371 BD | +400670 |V0670 Her |181307.7+293511 |L | 14. | 15. | |p | | | | | |03776 03776| +400671 |V0671 Her |182002.4+291732 |RR: | 16. | 17. | |p | | | | | |03776 03776| +400672 |V0672 Her |184453.9+134116 |RR: | 13.3 | 15.3 | |p | | | | | |00085 02368| +400673 |V0673 Her |181043.3+331806 |RR: | 15.6 |< 17.5 | |p | | | 0.35 : | | |04184 03903| +400674 |V0674 Her |181027.2+395215 |RRAB | 16.5 | 17.7 | |p |29705.609 | | 0.5042507 |19 | |04184 03905| +400675 |V0675 Her |181103.3+362916 |IS: | 14.8 | 16.1 | |p | | | | | |04184 03903| +400676 |V0676 Her |181339.7+372839 |E: | 13.0 | 14.1 | |p |43016.524 | | | | |04184 03905| +400677 |V0677 Her |160804.2+245920 |RRAB | 13.2 | 14.9 | |p |40129.603 | | 0.475716 |22 : | |04165 05515| +400678 |V0678 Her |160816.7+244214 |EA | 15.2 | 15.6 | |p |39889.406 | | 1.389665 |05 *| |04165 05515| +400679 |V0679 Her |161005.6+202956 |RRAB | 14.9 | 16.0 | |p |39944.492 | | 0.688319 |17 : | |04165 05443| +400680 |V0680 Her |161022.8+214827 |RRAB | 15.4 | 16.3 | |p |39940.491 | | 0.660136 |19 | |04165 03910| +400681 |V0681 Her |161139.1+250100 |E | 13.6 | 14.1 | |p | | | | | |04165 05443| +400682 |V0682 Her |161219.9+231935 |RR | 15.7 | 16.5 | |p | | | | | |04165 05443| +400683 |V0683 Her |161222.5+221319 |RRAB | 14.1 | 15.2 | |p |39639.209 | | 0.536068 |12 | |04165 03910| +400684 |V0684 Her |161311.7+190647 |RR: | 15.0 | 16.0 | |p | | | 0.46 : | | |04165 03910| +400685 |V0685 Her *|161352.1+232922 |EW/KE | 15.4 | 16.0 | 15.8 |p |39593.495 | | 0.589146 | | |04165 05443| +400686 |V0686 Her |161423.3+175635 |RRAB | 13.4 | 14.5 | |p |39432.822 | | 0.510987 |12 | |04165 05515| +400687 |V0687 Her *|161421.6+234238 |EW/KW | 14.4 | 15.0 | 14.9 |p |38495.502 | | 0.321460 | |G0 |04165 05515| +400688 |V0688 Her |161505.6+235646 |RRAB | 15.0 | 15.9 | |p |38558.507 | | 0.572061 |15 | |04165 03910| +400689 |V0689 Her |161713.3+163854 |E | 15.6 | 16.0 | |p | | | 3.07 :/N| | |04165 05443| +400690 |V0690 Her |161832.6+231328 |RRAB | 14.7 | 15.7 | |p |39683.507 | | 0.567436 |13 | |04165 05443| +400691 |V0691 Her *|162017.1+174546 |E | 13.3 | 13.7 | |p |38830.603 | | | | |04165 05515| +400692 |V0692 Her |162218.2+262233 |RRAB | 14.1 | 14.8 | |p |40073.605 | | 0.736679 |23 | |04165 05515| +400693 |V0693 Her |162324.4+181327 |SRB | 13.9 | 15.5 | |p | | | 40. : | | |04165 05515| +400694 |V0694 Her |162532.2+220505 |RRAB | 13.6 | 14.7 | |p |39361.770 | | 0.710006 |13 | |04165 05515| +400695 |V0695 Her |162558.6+174252 |RRAB | 13.8 | 14.8 | |p |39380.480 | | 0.678788 |19 | |04165 03910| +400696 |V0696 Her |162808.7+182935 |IS: | 15.6 | 16.6 | |p | | | | | |04165 05443| +400697 |V0697 Her *|162751.4+344811 |M | 2.45 | 3.76 | |K | | | 475. : | |M9 |09305 04238| +400698 |V0698 Her |162931.2+182944 |RRAB | 13.7 | 15.3 | |p |38533.416 | | 0.536147 |13 | |04165 03910| +400699 |V0699 Her *|163033.1+170047 |EW/KE | 15.4 | 16.2 | 16.0 : |p |39529.600 | | 0.614205 | | |04165 05443| +400700 |V0700 Her |163123.8+204138 |RR | 16.7 | 17.2 | |p | | | | | |04165 05443| +400701 |V0701 Her |163140.8+201059 |RRAB | 14.5 | 16.4 | |p |38525.516 | | 0.503624 |19 | |04165 03910| +400702 |V0702 Her |163254.7+243239 |RRAB | 16.4 | 17.0 | |p |39354.624 | | 0.627426 |15 | |04165 05443| +400703 |V0703 Her |163326.5+212916 |RR | 15.3 | 16.1 | |p | | | | | |04165 05443| +400704 |V0704 Her |163432.0+224540 |RRAB | 15.6 | 16.3 | |p |38849.482 | | 0.550219 |15 | |04165 05515| +400705 |V0705 Her |163449.5+215824 |IS | 15.4 | 16.7 | |p | | | | | |04165 05443| +400706 |V0706 Her |163621.1+230233 |EA | 15.0 | 15.6 | |p | | | | |G2 |08656 05515| +400707 |V0707 Her |163722.0+205821 |EW | 15.2 | 16.1 | |p | | | 2. /N| | |04165 05443| +400708 |V0708 Her |163748.7+221953 |RRC: | 15.8 | 16.3 | |p | | | 1. /N| | |04165 05443| +400709 |V0709 Her |163829.2+194856 |RRAB | 15.3 | 16.9 | |p |38551.424 | | 0.536090 |22 | |04165 05443| +400710 |V0710 Her |164524.9+182736 |RR: | 16.6 | 17.4 | |p | | | | | |04165 05443| +400711 |V0711 Her |164833.5+233503 |RRAB | 14.7 | 15.3 | |p |38501.509 | | 0.637285 |29 | |04165 03910| +400712 |V0712 Her |164956.9+461421 |EA/SD | 13.9 | 16.2 | |p |41618.284 | | 5.030460 : |10 | |08206 08206| +400713 |V0713 Her |165149.3+410744 |RRAB | 14.1 | 15.2 | |p |41597.220 | | 0.610202 |15 | |08206 08206| +400714 |V0714 Her |170204.9+424557 |RRAB | 15.4 | 16.3 | |p |41595.226 | | 0.578103 |25 | |08206 08206| +400715 |V0715 Her |170511.9+475913 |RRAB | 13.8 | 15.2 | |p |41567.214 | | 0.641164 |15 | |08206 08206| +400716 |V0716 Her |170711.4+454926 |RRAB | 13.9 | 15.0 | |p |41596.214 | | 0.714390 |15 | |08206 08206| +400717 |V0717 Her *|170728.8+432401 |RRAB | 15.2 | 16.5 | |p |41561.339 | | 0.584234 |20 : | |08206 08206| +400718 |V0718 Her *|170740.6+462900 |EW/KW | 13.9 | 14.3 | 14.3 |p |41604.252 | | 0.4588788 | | |08206 08206| +400719 |V0719 Her *|170952.6+425608 |RRC: | 12.5 | 13.6 | |p |41598.278 | | 0.335870 |40 | |08206 08206| +400720 |V0720 Her *|171015.9+384707 |RRAB | 15.2 | 16.4 | |p |41957.241 | | 0.453972 |12 | |08206 08206| +400721 |V0721 Her *|171048.6+413708 |RRAB | 14.6 | 16.0 | |p |41604.252 | | 0.5278188 |15 | |08206 08206| +400722 |V0722 Her *|171051.9+430229 |EW:/KE | 15.0 | 15.7 | 15.7 |p |41618.214 | | 0.504634 | | |08206 08206| +400723 |V0723 Her *|171111.8+404353 |EA/SD: | 15.0 | 16.0 | 15.5 |p |40832.374 | | 3.967052 : |08 : | |08206 08206| +400724 |V0724 Her |171109.7+423359 |RRAB | 14.1 | 15.6 | |p |41618.234 | | 0.640171 |15 | |08206 08206| +400725 |V0725 Her |171233.9+402827 |RRAB | 13.3 | 14.3 | |p |41568.280 | | 0.577112 |25 | |08206 08206| +400726 |V0726 Her |171559.4+382614 |RRAB | 14.4 | 15.8 | |p |41598.208 | | 0.528096 : |10 : | |08206 08206| +400727 |V0727 Her |171741.5+411942 |RRAB | 14.2 | 15.7 | |p |40829.377 | | 0.569986 : |05 : | |08206 08206| +400728 |V0728 Her *|171804.3+415039 |EW/KW | 10.9 | 11.5 | 11.4 |p |41571.273 | | 0.4462587 | | |00001 08206| +400729 |V0729 Her |171836.0+441356 |RRC: | 15.0 | 16.0 | |p |41943.277 | | 0.3506338 | | |08206 08206| +400730 |V0730 Her |171910.0+450825 |RRAB | 14.8 | 16.3 | |p |41594.200 | | 0.4682036 |20 | |08206 08206| +400731 |V0731 Her *|171947.1+435916 |EW/KE: | 13.3 | 13.9 | 13.8 |p |41945.292 | | 0.542000 | | |08206 08206| +400732 |V0732 Her *|172018.9+441927 |EW/KE | 13.2 | 14.2 | 13.8 |p |41561.335 | | 0.5255112 | | |08206 08206| +400733 |V0733 Her *|172051.5+475354 |EW/KE | 13.8 | 14.4 | 14.3 : |p |41598.213 | | 0.528024 | | |08206 08206| +400734 |V0734 Her |172254.9+461224 |RRAB | 13.0 | 14.2 | |p |41566.253 | | 0.5809954 |10 | |08206 08206| +400735 |V0735 Her |173014.8+394100 |RRAB | 15.6 | 16.7 | |p |40809.460 | | 0.648869 |15 | |08206 08206| +400736 |V0736 Her |172422.5+411933 |RRAB | 14.6 | 16.2 | |p |41594.210 | | 0.4568148 |12 | |08206 08206| +400737 |V0737 Her *|172826.2+394954 |RRAB | 14.3 | 16.3 | |p |41598.240 | | 0.6212385 |12 | |08206 08206| +400738 |V0738 Her |172930.2+390434 |RRAB | 14.4 | 16.0 | |p |41594.229 | | 0.507662 |12 | |08206 08206| +400739 |V0739 Her |173103.7+402800 |RRAB | 14.7 | 15.9 | |p |41594.180 | | 0.470490 |15 | |08206 08206| +400740 |V0740 Her *|173258.3+441047 |EW:/KE | 14.1 | 14.7 | 14.4 |p |37115.379 | | 0.990434 | | |08206 08206| +400741 |V0741 Her *|173551.9+404041 |RRAB | 15.3 | 17.0 | |p |41604.252 | | 0.515725 |10 | |08206 08206| +400742 |V0742 Her *|173743.9+440850 |EW/KE | 13.8 | 14.5 | 14.4 |p |40829.377 | | 0.577650 | | |08206 08206| +400743 |V0743 Her |174111.9+421239 |RRAB | 13.3 | 14.8 | |p |41957.226 | | 0.492415 |10 | |08206 08206| +400744 |V0744 Her *|175003.3+482339 |GCAS | 6.65 | 6.94 | |V | | | | |B7Vne |09306 BD | +400745 |V0745 Her |185226.0+205423 |M | 13.5 |< 15.5 | |p | | | | | |00491 06286| +400746 |V0746 Her |162643.3+105926 |SR | 6.59 | 6.76 | |V | | | | |M4III |08225 BD | +400747 |V0747 Her |165451.3+432036 |E | 14.4 | 15.0 | |p | | | | | |08206 08206| +400748 |V0748 Her |165506.0+425235 |L: | 13.6 | 14.9 | |p | | | | | |08206 08206| +400749 |V0749 Her *|165709.8+212649 |ZZA | 14.04 | 14.08 | |V | | | | |DA |07996 07547| +400750 |V0750 Her |165835.8+444104 |RR | 14.8 | 15.5 | |p | | | | | |08206 08206| +400751 |V0751 Her |170852.6+422852 |RR | 17.0 | 18.8 | |B | | | 0.505 : | | |08474 08474| +400752 |V0752 Her |170906.1+420157 |IA | 18.3 | 19.8 | |B | | | | | |08474 08474| +400753 |V0753 Her |170929.5+434523 |RRAB | 14.3 | 16.4 | |B |39352.410 | | 0.629158 |17 | |08474 08474| +400754 |V0754 Her |171002.1+435754 |IA | 18.2 | 20.8 | |B | | | | | |08474 08474| +400755 |V0755 Her |171202.8+441337 |IA | 19.4 | 20.3 | |B | | | | | |08474 08474| +400756 |V0756 Her |171207.3+424945 |IA | 19.4 | 20.6 | |B | | | | | |08474 08474| +400757 |V0757 Her |171322.8+453800 |E: | 13.4 | 14.2 | |p | | | | | |08206 08206| +400758 |V0758 Her |171413.9+440725 |IA | 18.9 | 20.1 | |B | | | | | |08474 08474| +400759 |V0759 Her |171450.7+415123 |RRAB | 13.5 | 15.0 | |B |39381.320 | | 0.512397 |20 | |08474 08206| +400760 |V0760 Her |171721.3+422428 |IA | 19.2 | 20.1 | |B | | | | | |08474 08474| +400761 |V0761 Her |171747.1+421408 |RRAB | 17.1 | 19.0 | |B |38225.470 | | 0.681057 |15 | |08474 08474| +400762 |V0762 Her |171835.3+414159 |IA | 19.5 | 20.5 | |B | | | | | |08474 08474| +400763 |V0763 Her |171835.0+421126 |IA | 19.0 | 20.6 | |B | | | | | |08474 08474| +400764 |V0764 Her |172004.8+414744 |IA | 18.7 | 20.1 | |B | | | | | |08474 08474| +400765 |V0765 Her |172037.2+442123 |IA | 19.5 | 20.3 | |B | | | | | |08474 08474| +400766 |V0766 Her |172142.1+424433 |IA | 19.3 | 20.4 | |B | | | | | |08474 08474| +400767 |V0767 Her |172201.9+431524 |IA | 17.3 | 19.4 | |B | | | | | |08474 08474| +400768 |V0768 Her |172205.7+424009 |IA | 18.9 | 19.6 | |B | | | | | |08474 08474| +400769 |V0769 Her |172557.4+470251 |E: | 13.8 | 16.1 | |p |41575. | | | | |08206 08206| +400770 |V0770 Her |172732.8+414359 |E: | 15.6 | 16.8 | |p |41566.280 | | 1.471257 : | | |08206 08206| +400771 |V0771 Her *|175852.3+452834 |ACV | 6.44 | 6.52 | |V |41450.86 | | 0.517468 | |B9p(Si-Cr-Sr) |09308 BD | +400772 |V0772 Her *|180549.7+212645 |E | 6.9 |( 0.10 )| |V |43392.823 | | 0.879511 | |G2V |08482 BD | +400773 |V0773 Her |163642.9+152951 |ACV | 6.01 |( 0.03 )| |U |41459.05 | | 1.45876 |40 : |B9p(Si-Sr-Cr:) |09308 BD | +400774 |V0774 Her *|183317.8+221851 |UV | 9.45 : | 10.90 : | |B | | | | |K2 |08764 BD | +400775 |V0775 Her |185553.2+233324 |RS | 8.05 |( 0.12 )| |V |43677.520 | | 2.879395 | |K0V |08765 BD | +400776 |V0776 Her |164746.4+051448 |ACV | 5.21 | 5.27 | |V | | | | | |67134 BD | +400777 |V0777 Her |164718.4+322833 |ZZB | 13.54 |( 0.30 )| |B | | | | | |67445 67446| +400778 |V0778 Her |164950.4+424314 |RRAB | 15.75 | 16.55 | |V |54409.576 | | 0.645872 | | |67447 67447| +400779 |V0779 Her |165122.8+445431 |RRAB | 15.4 | 16.6 | |p | | | | | |67447 67447| +400780 |V0780 Her |165324.1+491257 |RRAB | 14.9 | 15.9 | |p | | | | | |67447 67447| +400781 |V0781 Her |165443.1+465424 |UV | 13.6 | 16.7 | |p | | | | | |67447 67447| +400782 |V0782 Her |165903.3+433054 |M | 14.1 | 17.0 | |p | | | | | |67447 67447| +400783 |V0783 Her |165905.0+425649 |RRAB | 14.2 | 15.7 | |p | | | | | |67447 67447| +400784 |V0784 Her |170210.0+432935 |RRAB | 15.3 | 16.6 | |p | | | | | |67447 67447| +400785 |V0785 Her |170202.7+482653 |RRAB | 15.3 | 16.7 | |p | | | | | |67447 67447| +400786 |V0786 Her |170222.1+455648 |RRAB | 14.7 | 16.2 | |p | | | | | |67447 67447| +400787 |V0787 Her |170225.7+485943 |RRAB | 16.4 | 17.2 | |p | | | | | |67447 67447| +400788 |V0788 Her |170541.1+424957 |RRAB | 16.3 | 17.0 | |p | | | | | |67447 67447| +400789 |V0789 Her |170541.4+423044 |EW/KW | 14.9 | 15.6 | |p | | | | | |67447 67447| +400790 |V0790 Her |170941.3+462112 |RRAB | 15.7 | 16.8 | |p | | | | | |67447 67447| +400791 |V0791 Her |171016.6+465011 |RRAB | 15.6 | 16.5 | |p | | | | | |67447 67447| +400792 |V0792 Her |171025.6+485756 |EA/GS/RS | 8.5 |( 0.33 )| |V | | | | | |67449 BD | +400793 |V0793 Her |171032.4+473758 |RRAB | 15.7 | 16.6 | |p | | | | | |67447 67447| +400794 |V0794 Her |171121.1+445401 |RRAB | 15.1 | 16.1 | |p | | | | | |67447 67447| +400795 |V0795 Her |171256.2+333119 |NL | 12.5 | 13.2 | |B | | | | | |67457 GSC | +400796 |V0796 Her |171232.9+485018 |RRAB | 15.8 | 16.9 | |p | | | | | |67447 67447| +400797 |V0797 Her |171608.4+481752 |RR | 14.5 | 15.4 | |p | | | | | |67447 67447| +400798 |V0798 Her |171638.3+431214 |EW/KW | 14.5 | 14.9 | |p | | | | | |67464 GSC | +400799 |V0799 Her |171903.6+144438 |SRA | 13. | 14. | |p | | | | | |67465 67181| +400800 |V0800 Her |171852.8+422846 |RRAB | 15.2 | 15.7 | |p | | | | | |67447 67447| +400801 |V0801 Her |172023.9+133240 |SR | 15. | 15.5 | |p | | | | | |67465 67181| +400802 |V0802 Her |172101.9+442756 |RRAB | 15.8 | 16.9 | |p | | | | | |67447 67447| +400803 |V0803 Her |172128.0+443912 |EA/SD | 16.0 | 17.1 | |p | | | | | |67447 67447| +400804 |V0804 Her |172150.4+452042 |RRAB | 15.9 | 16.8 | |p | | | | | |67447 67447| +400805 |V0805 Her |172206.9+450137 |RRAB | 15.8 | 16.7 | |p | | | | | |67447 67447| +400806 |V0806 Her |172313.6+412814 |RRC | 15.6 | 16.4 | |p | | | | | |67447 67447| +400807 |V0807 Her |172316.8+415108 |EA/SD | 14.2 | 16.1 | |p | | | | | |67447 67447| +400808 |V0808 Her |172414.9+452433 |RRAB | 15.2 | 16.6 | |p | | | | | |67447 67447| +400809 |V0809 Her |172727.7+453040 |UG | 15.3 | 17.2 | |p | | | | | |67447 67447| +400810 |V0810 Her |173001.4+463522 |RRAB | 16.0 | 16.9 | |p | | | | | |67447 67447| +400811 |V0811 Her |173059.4+432450 |EA/SD: | 14.0 | 15.4 | |p | | | | | |67447 67447| +400812 |V0812 Her |173424.6+454850 |RR | 15.3 | 16.4 | |p | | | | | |67447 67447| +400813 |V0813 Her |173453.8+464039 |RRAB | 14.9 | 16.4 | |p | | | | | |67447 67447| +400814 |V0814 Her |174455.5+500240 |SRD | 6.97 | 7.12 | |V | | | | | |67468 BD | +400815 |V0815 Her |180816.1+294128 |RS | 7.6 |( 0.1 )| |V | | | | | |67469 BD | +400816 |V0816 Her |184245.0+135411 |UV | 13.6 | 14.6 | |p | | | | | |67471 67470| +400817 |V0817 Her |170847.7+424100 |ZZO | 16.18 | 16.32 | |B | | | | | |68129 USNO | +400818 |V0818 Her |171841.4+433633 |SRB | 9.80 | 11.2 | |B | | | | | |68334 BD | +400819 |V0819 Her |172143.6+395829 |EA/D+BY | 5.51 |( 0.12 )| |V | | | | | |68131 BD | +400820 |V0820 Her |180223.1+205001 |* | 5.17 | 5.19 | |B | | | | | |68132 BD | +400821 |V0821 Her |184154.6+174108 |M | 9.2 | 12.0 | |R | | | | | |68106 68106| +400822 |V0822 Her |185201.9+135756 |EB/KE | 6.12 | 6.30 | |V | | | | | |68134 BD | +400823 |V0823 Her |165204.8+145827 |ACV | 6.40 |( 0.03 )| |U | | | | | |69128 BD | +400824 |V0824 Her |165657.5+155628 |ZZB | 16.2 |( 0.18 )| |B | | | | | |69153 69046| +400825 |V0825 Her |171837.0+411551 |NL | 13.97 | 14.20 | |V | | | | | |69042 69043| +400826 |V0826 Her |174558.5+391921 |ELL | 6.68 |( 0.028 )| |V | | | | | |69154 BD | +400827 |V0827 Her |184342.5+151919 |NA | 7.5 | 18. | |V | | | | | |69156 69157| +400828 |V0828 Her |185603.8+175943 |ACV | 6.15 |( 0.04 )| |U | | | | | |69128 BD | +400829 |V0829 Her |165547.9+351058 |EW/KW | 10.1 |( 0.29 R )| |V | | | | | |70061 70061| +400830 |V0830 Her |175239.7+294316 |DSCT: | 9.20 | 9.33 | |V | | | | | |70062 BD | +400831 |V0831 Her |180440.2+235631 |DSCTC: | 6.28 | 6.34 | |V | | | | | |70063 BD | +400832 |V0832 Her |171356.5+261051 |RS | 8.8 |( 0.04 )| |V | | | | | |71001 BD | +400833 |V0833 Her |173155.3+174522 |M | 2.6 | 5.4 | |K | | | | | |71002 USNO | +400834 |V0834 Her |174137.4+293556 |RS | 8.0 |( 0.10 )| |V | | | | | |71001 BD | +400835 |V0835 Her |175524.7+361120 |RS | 7.94 | 8.09 | |V | | | | | |71001 BD | +400836 |V0836 Her |181132.9+235513 |EA | 10.7 | 11.4 | |V | | | | | |71161 71161| +400837 |V0837 Her |184336.5+135723 |M | 0.2 | 1.3 | |L | | | | | |71002 71165| +400838 |V0838 Her |184631.5+121402 |NA+EA | 5.0 | 20. | |V | | | | | |71172 71171| +400839 |V0839 Her |155530.6+423358 |BE | 5.74 | 5.84 | |V | | | | | |72093 BD | +400840 |V0840 Her |163250.3+065443 |E | 11.2 | 12.2 | |V | | | | | |72094 72095| +400841 |V0841 Her |165710.7+351712 |UV | 11.08 | 11.25 | |U | | | | | |72096 72096| +400842 |V0842 Her |160602.2+501113 |EW | 9.85 | 10.45 | |V | | | | | |73167 BD | +400843 |V0843 Her |162405.0+411506 |RRC | 15.1 | 15.7 | |B | | | | | |73168 73168| +400844 |V0844 Her |162501.8+390927 |UG | 12.5 | 17.5 | |B | | | | | |73168 73168| +400845 |V0845 Her |162516.3+405349 |CWA | 14.3 | 15.5 | |B | | | | | |73126 73126| +400846 |V0846 Her |162656.3+241407 |RS | 8.96 |( 0.06 )| |V | | | | | |73005 BD | +400847 |V0847 Her |162745.4+414023 |RRAB | 15.2 | 16.9 | |B | | | | | |73126 73126| +400848 |V0848 Her |163137.1+343223 |EB | 14.9 | 16.3 | |B | | | | | |73127 73127| +400849 |V0849 Her |163545.7+112459 |UG: | 15.0 |( 0.5 )| |V | | | | | |73169 73111| +400850 |V0850 Her |163511.2+424626 |RRAB | 14.5 | 16.6 | |B | | | | | |73126 73126| +400851 |V0851 Her |163533.9+410650 |RRAB | 15.1 | 16.4 | |B | | | | | |73126 73126| +400852 |V0852 Her |163742.4+270002 |RRAB | 14.4 | 15.8 | |B | | | | | |73124 73124| +400853 |V0853 Her |163738.2+363158 |RRAB | 15.2 | 16.8 | |B | | | | | |73168 73168| +400854 |V0854 Her |163804.3+342032 |EB: | 14.7 | 15.8 | |B | | | | | |73127 73127| +400855 |V0855 Her |163827.9+411142 |RRAB | 15.2 | 17.3 | |B | | | | | |73127 73127| +400856 |V0856 Her |164403.8+392333 |EA | 12.8 | 13.8 | |B | | | | | |73127 73127| +400857 |V0857 Her |164653.6+383858 |EW | 10.0 |( 0.29 )| |V | | | | | |73170 73042| +400858 |V0858 Her |164819.8+402845 |RRAB | 15.1 | 16.5 | |B | | | | | |73127 73127| +400859 |V0859 Her |164944.3+393858 |RRAB | 15.1 | 16.8 | |B | | | | | |73126 73126| +400860 |V0860 Her |165038.7+275841 |RRAB | 14.73 | 15.74 | |V | | | | | |73003 USNO | +400861 |V0861 Her |165112.8+411758 |EW | 13.8 | 14.2 | |B | | | | | |73168 73168| +400862 |V0862 Her |165603.5+400902 |RRC | 13.2 | 13.6 | |B | | | | | |73168 73168| +400863 |V0863 Her |165734.5+413145 |RRAB | 13.6 | 14.5 | |B | | | | | |73168 73168| +400864 |V0864 Her |165900.6+280454 |RRC: | 14.59 | 15.13 | |V | | | | | |73003 GSC | +400865 |V0865 Her |165936.6+415725 |EA | 13.0 | 14.1 | |B | | | | | |73126 73126| +400866 |V0866 Her |165950.6+411114 |LB: | 12.1 | 14.2 | |B | | | | | |73126 73126| +400867 |V0867 Her |170023.6+381639 |RRAB | 15.2 | 16.6 | |B | | | | | |73168 73168| +400868 |V0868 Her |170050.4+360851 |RRAB | 15.9 | 17.3 | |B | | | | | |73127 73127| +400869 |V0869 Her |170217.2+383624 |EA | 15.0 | 16.4 | |B | | | | | |73168 73168| +400870 |V0870 Her |170238.4+393227 |RRAB | 14.8 | 16.4 | |B | | | | | |73126 73126| +400871 |V0871 Her |170654.5+392210 |RRAB | 15.5 | 17.3 | |B | | | | | |73127 73127| +400872 |V0872 Her |170823.6+395749 |EA | 15.1 | 16.2 | |B | | | | | |73168 73168| +400873 |V0873 Her |170904.9+162744 |DSCT: | 8.4 |( 0.21 )| |V | | | | | |73171 BD | +400874 |V0874 Her |171131.9+485029 |EB: | 9.9 | 10.9 | |p | | | | | |73172 73172| +400875 |V0875 Her |171553.5+275955 |RRAB | 17.25 | 18.57 | |V | | | | | |73003 USNO | +400876 |V0876 Her |171936.2+280544 |RRAB: | 17.22 | 17.99 | |V | | | | | |73003 USNO | +400877 |V0877 Her |172128.3+280034 |RRC | 14.56 | 14.91 | |V | | | | | |73003 USNO | +400878 |V0878 Her |172425.3+493837 |EB | 9.37 | 9.87 | |V | | | | | |73173 BD | +400879 |V0879 Her |173112.7+280317 |SXPHE | 15.23 | 15.88 | |V | | | | | |73003 USNO | +400880 |V0880 Her |174221.0+280334 |RRAB | 15.14 | 16.21 | |V | | | | | |73003 USNO | +400881 |V0881 Her |174309.8+280426 |RRAB | 16.04 | 16.96 | |V | | | | | |73003 USNO | +400882 |V0882 Her |174449.3+280105 |RRC: | 15.43 | 15.84 | |V | | | | | |73003 USNO | +400883 |V0883 Her |175046.5+280050 |EW | 13.13 | 13.35 | |V | | | | | |73003 UCAC2| +400884 |V0884 Her |180206.5+180442 |XM | 14.5 |( 0.8 )| |V | | | | | |73175 73175| +400885 |V0885 Her |180550.3+212622 |BY | 10.62 |( 0.06 )| |V | | | | | |73176 BD | +400886 |V0886 Her |180820.1+241043 |BE: | 10. | 11.5 | |p | | | | | |73177 73177| +400887 |V0887 Her |181130.7+270516 |SRD: | 12.09 | 12.33 | |U | | | | | |73022 73022| +400888 |V0888 Her |181130.8+275939 |RRAB | 16.33 | 17.48 | |V | | | | | |73003 USNO | +400889 |V0889 Her |183420.1+184124 |BY | 7.39 |( 0.14 )| |V | | | | | |73005 BD | +400890 |V0890 Her |161127.3+234912 |LB: | 9.26 | 9.37 | |Hp| | | | | |HIP HIP | +400891 |V0891 Her |161137.7+415035 |LB: | 8.51 | 8.63 | |Hp| | | | | |HIP HIP | +400892 |V0892 Her |161352.3+162604 |SRB | 7.70 | 7.96 | |Hp| | | | | |HIP HIP | +400893 |V0893 Her |162004.1+451300 |RR: | 9.20 | 9.38 | |Hp| | | | | |HIP HIP | +400894 |V0894 Her |162335.7+210327 |SRD | 8.17 | 8.32 | |Hp| | | | | |HIP HIP | +400895 |V0895 Her |162617.9+230353 |SRB | 7.84 | 7.99 | |Hp| | | | | |HIP HIP | +400896 |V0896 Her |162638.2+374554 |LB: | 8.67 | 8.85 | |Hp| | | | | |HIP HIP | +400897 |V0897 Her |162946.7+074456 |SRD: | 6.88 | 7.12 | |Hp| | | | | |HIP HIP | +400898 |V0898 Her |163049.5+271848 |BY: | 11.87 | 12.19 | |Hp| | | | | |HIP HIP | +400899 |V0899 Her |163502.0+331248 |EW | 7.93 | 8.07 | |Hp| | | | | |HIP HIP | +400900 |V0900 Her |163536.7+211819 |LB: | 8.74 | 8.86 | |Hp| | | | | |HIP HIP | +400901 |V0901 Her |163533.7+262828 |SR: | 8.69 | 8.78 | |Hp| | | | | |HIP HIP | +400902 |V0902 Her |163631.7+360224 |LB: | 7.08 | 7.17 | |Hp| | | | | |HIP HIP | +400903 |V0903 Her |163737.7+222642 |SRB | 6.99 | 7.16 | |Hp| | | | | |HIP HIP | +400904 |V0904 Her |163749.0+270238 |LB: | 6.98 | 7.08 | |Hp| | | | | |HIP HIP | +400905 |V0905 Her |163746.0+423138 |LB: | 8.86 | 9.00 | |Hp| | | | | |HIP HIP | +400906 |V0906 Her |163832.5+485144 |LB | 6.52 | 6.65 | |Hp| | | | | |HIP HIP | +400907 |V0907 Her |164013.5+073734 |LB: | 8.38 | 8.48 | |Hp| | | | | |HIP HIP | +400908 |V0908 Her |164117.7+300636 |BY: | 10.14 | 11.95 | |Hp| | | | | |HIP HIP | +400909 |V0909 Her |164306.5+260325 |LB | 7.84 | 8.02 | |Hp| | | | | |HIP HIP | +400910 |V0910 Her |164416.9+314926 |LB: | 8.47 | 8.62 | |Hp| | | | | |HIP HIP | +400911 |V0911 Her |164444.7+323531 |LB: | 8.41 | 8.57 | |Hp| | | | | |HIP HIP | +400912 |V0912 Her |164440.1+383724 |SRD: | 8.69 | 8.79 | |Hp| | | | | |HIP HIP | +400913 |V0913 Her |164523.3+453723 |LB: | 8.45 | 8.56 | |Hp| | | | | |HIP HIP | +400914 |V0914 Her |164537.6+390902 |SRD | 8.48 | 8.69 | |Hp| | | | | |HIP HIP | +400915 |V0915 Her |164615.2+175019 |LB: | 8.32 | 8.44 | |Hp| | | | | |HIP HIP | +400916 |V0916 Her |164635.5+414732 |E: | 8.03 | 8.38 | |Hp| | | | | |HIP HIP | +400917 |V0917 Her |164739.3+141858 |LB: | 10.18 | 10.31 | |Hp| | | | | |HIP HIP | +400918 |V0918 Her |164824.2+170800 |EB | 7.40 | 7.51 | |Hp| | | | | |HIP HIP | +400919 |V0919 Her |164932.0+260206 |DSCTC | 8.42 | 8.46 | |Hp| | | | | |HIP HIP | +400920 |V0920 Her |165006.4+162944 |E: | 7.88 | 7.98 | |Hp| | | | | |HIP HIP | +400921 |V0921 Her |164931.2+470629 |EB | 9.45 | 9.80 | |Hp| | | | | |HIP HIP | +400922 |V0922 Her |165004.9+320012 |LB: | 10.58 | 10.73 | |Hp| | | | | |HIP HIP | +400923 |V0923 Her |165044.2+302409 |EB | 9.09 | 9.27 | |Hp| | | | | |HIP HIP | +400924 |V0924 Her |165500.5+461635 |SRB: | 7.78 | 7.95 | |Hp| | | | | |HIP HIP | +400925 |V0925 Her |165533.9+483639 |LB: | 9.57 | 9.72 | |Hp| | | | | |HIP HIP | +400926 |V0926 Her |165642.1+260405 |LB: | 9.27 | 9.39 | |Hp| | | | | |HIP HIP | +400927 |V0927 Her |165618.0+500736 |DSCT | 10.11 | 10.24 | |Hp| | | | | |HIP HIP | +400928 |V0928 Her |170018.4+261439 |LB: | 8.00 | 8.12 | |Hp| | | | | |HIP HIP | +400929 |V0929 Her |170221.2+400423 |DSCTC | 8.06 | 8.11 | |Hp| | | | | |HIP HIP | +400930 |V0930 Her |170305.5+174350 |BY: | 10.48 | 10.67 | |Hp| | | | | |HIP HIP | +400931 |V0931 Her |170330.2+352451 |LB: | 6.07 | 6.26 | |Hp| | | | | |HIP HIP | +400932 |V0932 Her |170459.9+390952 |LB | 9.61 | 10.03 | |Hp| | | | | |HIP HIP | +400933 |V0933 Her |170631.0+132625 |LB: | 9.26 | 9.37 | |Hp| | | | | |HIP HIP | +400934 |V0934 Her |170634.5+235819 |SRB: | 7.62 | 7.78 | |Hp| | | | | |HIP HIP | +400935 |V0935 Her |170745.6+243501 |EB | 8.44 | 8.64 | |Hp| | | | | |HIP HIP | +400936 |V0936 Her |170825.3+202119 |LB: | 8.94 | 9.08 | |Hp| | | | | |HIP HIP | +400937 |V0937 Her |170853.9+395347 |LB: | 9.53 | 9.65 | |Hp| | | | | |HIP HIP | +400938 |V0938 Her |171026.5+291003 |SRB: | 7.89 | 7.98 | |Hp| | | | | |HIP HIP | +400939 |V0939 Her |171018.5+404124 |LB | 7.24 | 8.02 | |Hp| | | | | |HIP HIP | +400940 |V0940 Her |171046.0+492049 |SRD | 7.44 | 7.93 | |Hp| | | | | |HIP HIP | +400941 |V0941 Her |171235.8+473120 |LB: | 10.10 | 10.24 | |Hp| | | | | |HIP HIP | +400942 |V0942 Her |171507.9+174806 |LB | 7.18 | 7.30 | |Hp| | | | | |HIP HIP | +400943 |V0943 Her |171632.8+274100 |LB: | 8.69 | 8.85 | |Hp| | | | | |HIP HIP | +400944 |V0944 Her |171734.6+285448 |LB | 6.88 | 7.02 | |Hp| | | | | |HIP HIP | +400945 |V0945 Her |171908.4+303757 |LB | 10.41 | 10.75 | |Hp| | | | | |HIP HIP | +400946 |V0946 Her *|171927.1+330510 |BY: | 10.86 | 11.52 | |Hp| | | | | |HIP HIP | +400947 |V0947 Her |171942.9+391724 |LB: | 7.79 | 7.93 | |Hp| | | | | |HIP HIP | +400948 |V0948 Her |172257.7+292043 |EA | 9.02 | 9.31 | |Hp| | | | | |HIP HIP | +400949 |V0949 Her |172305.3+252535 |SRB | 8.78 | 9.28 | |Hp| | | | | |HIP HIP | +400950 |V0950 Her |172514.9+195515 |LB: | 8.60 | 8.70 | |Hp| | | | | |HIP HIP | +400951 |V0951 Her |172623.3+220635 |LB: | 8.84 | 8.95 | |Hp| | | | | |HIP HIP | +400952 |V0952 Her |172829.9+500950 |LB: | 8.65 | 8.77 | |Hp| | | | | |HIP HIP | +400953 |V0953 Her |173007.5+471605 |LB: | 9.16 | 9.27 | |Hp| | | | | |HIP HIP | +400954 |V0954 Her |173028.5+400803 |LB: | 9.09 | 9.23 | |Hp| | | | | |HIP HIP | +400955 |V0955 Her |173317.0+414706 |LB: | 9.86 | 10.07 | |Hp| | | | | |HIP HIP | +400956 |V0956 Her |173437.7+275922 |LB: | 8.57 | 8.72 | |Hp| | | | | |HIP HIP | +400957 |V0957 Her |173430.4+433003 |LB | 8.14 | 8.37 | |Hp| | | | | |HIP HIP | +400958 |V0958 Her |173528.1+310355 |LB: | 9.64 | 9.84 | |Hp| | | | | |HIP HIP | +400959 |V0959 Her |173621.4+273400 |SRC | 6.33 | 6.51 | |Hp| | | | | |HIP HIP | +400960 |V0960 Her |173909.5+315310 |SRD | 7.51 | 7.60 | |Hp| | | | | |HIP HIP | +400961 |V0961 Her |173942.1+163336 |SRB | 8.99 | 9.33 | |Hp| | | | | |HIP HIP | +400962 |V0962 Her |173913.4+460918 |SRB: | 7.93 | 8.24 | |Hp| | | | | |HIP HIP | +400963 |V0963 Her |174144.5+395911 |LB | 9.15 | 9.47 | |Hp| | | | | |HIP HIP | +400964 |V0964 Her |174302.0+174045 |LB | 8.09 | 8.25 | |Hp| | | | | |HIP HIP | +400965 |V0965 Her |174301.3+293911 |SRC: | 7.02 | 7.15 | |Hp| | | | | |HIP HIP | +400966 |V0966 Her |174303.5+373411 |DSCTC | 8.01 | 8.11 | |Hp| | | | | |HIP HIP | +400967 |V0967 Her |174442.0+350623 |LB: | 9.25 | 9.36 | |Hp| | | | | |HIP HIP | +400968 |V0968 Her |174756.7+363319 |LB | 6.47 | 6.66 | |Hp| | | | | |HIP HIP | +400969 |V0969 Her |174934.3+203814 |LB: | 7.51 | 7.55 | |Hp| | | | | |HIP HIP | +400970 |V0970 Her |175205.0+335439 |LB: | 8.37 | 8.48 | |Hp| | | | | |HIP HIP | +400971 |V0971 Her |175724.2+334734 |SRB | 8.20 | 8.52 | |Hp| | | | | |HIP HIP | +400972 |V0972 Her |175805.0+323853 |EW | 6.73 | 6.80 | |Hp| | | | | |HIP HIP | +400973 |V0973 Her *|175911.5+185236 |SRB: | 9.04 | 9.47 | |Hp| | | | | |HIP HIP | +400974 |V0974 Her |180027.7+193021 |BE | 6.38 | 6.45 | |Hp| | | | | |HIP HIP | +400975 |V0975 Her |180031.4+170612 |LB | 7.31 | 7.52 | |Hp| | | | | |HIP HIP | +400976 |V0976 Her |180202.2+293336 |LB: | 9.44 | 9.58 | |Hp| | | | | |HIP HIP | +400977 |V0977 Her |180300.4+150009 |LB | 7.62 | 7.79 | |Hp| | | | | |HIP HIP | +400978 |V0978 Her |180320.6+193321 |LB | 6.82 | 6.97 | |Hp| | | | | |HIP HIP | +400979 |V0979 Her |180445.2+235312 |DSCTC | 8.52 | 8.58 | |Hp| | | | | |HIP HIP | +400980 |V0980 Her |180500.4+165536 |LB | 6.96 | 7.06 | |Hp| | | | | |HIP HIP | +400981 |V0981 Her |180720.7+151405 |LB: | 7.24 | 7.34 | |Hp| | | | | |HIP HIP | +400982 |V0982 Her |180647.5+432707 |LB | 6.99 | 7.38 | |Hp| | | | | |HIP HIP | +400983 |V0983 Her |180711.5+344931 |LB | 7.29 | 7.40 | |Hp| | | | | |HIP HIP | +400984 |V0984 Her |180752.8+450253 |LB: | 9.56 | 9.67 | |Hp| | | | | |HIP HIP | +400985 |V0985 Her |181125.2+205709 |LB: | 9.17 | 9.36 | |Hp| | | | | |HIP HIP | +400986 |V0986 Her |181134.2+473935 |LB: | 8.00 | 8.10 | |Hp| | | | | |HIP HIP | +400987 |V0987 Her |181301.1+365802 |LB | 9.82 | 10.07 | |Hp| | | | | |HIP HIP | +400988 |V0988 Her |182018.2+210425 |EA | 7.71 | 7.90 | |Hp| | | | | |HIP HIP | +400989 |V0989 Her |182148.5+213028 |LPB | 6.79 | 6.82 | |Hp| | | | | |HIP HIP | +400990 |V0990 Her |182556.7+213621 |EA: | 7.72 | 7.96 | |Hp| | | | | |HIP HIP | +400991 |V0991 Her |182655.6+150906 |SRD: | 9.33 | 9.98 | |Hp| | | | | |HIP HIP | +400992 |V0992 Her |182657.0+174403 |SRD | 8.93 | 9.10 | |Hp| | | | | |HIP HIP | +400993 |V0993 Her |182650.5+233017 |LB: | 9.80 | 9.94 | |Hp| | | | | |HIP HIP | +400994 |V0994 Her *|182745.9+244151 |EA | 6.93 | 7.24 | |Hp| | | | | |HIP HIP | +400995 |V0995 Her |183109.7+250948 |LB: | 7.76 | 7.87 | |Hp| | | | | |HIP HIP | +400996 |V0996 Her |183125.1+141721 |LB: | 9.80 | 9.97 | |Hp| | | | | |HIP HIP | +400997 |V0997 Her |183434.9+151346 |SRB | 8.05 | 8.22 | |Hp| | | | | |HIP HIP | +400998 |V0998 Her |183531.2+210427 |E: | 9.02 | 9.15 | |Hp| | | | | |HIP HIP | +400999 |V0999 Her |183841.3+175254 |LB: | 8.89 | 9.14 | |Hp| | | | | |HIP HIP | +401000 |V1000 Her |184445.9+142537 |SRD | 9.20 | 9.42 | |Hp| | | | | |HIP HIP | +401001 |V1001 Her |184753.8+244744 |LB | 9.53 | 9.94 | |Hp| | | | | |HIP HIP | +401002 |V1002 Her |184930.1+181114 |EA | 8.99 | 9.14 | |Hp| | | | | |HIP HIP | +401003 |V1003 Her |185317.5+211333 |DSCTC: | 9.81 | 9.90 | |Hp| | | | | |HIP HIP | +401004 |V1004 Her |162332.1+153329 |SR: | 11.2 | 13.0 | |p | | | | | |75002 GSC | +401005 |V1005 Her |163154.4+502111 |EW | 14.11 | 14.68 | |Rc| | | | | |75142 75142| +401006 |V1006 Her |170318.6+390452 |SRD: | 10.11 |( 0.79 )| |V | | | | | |75143 BD | +401007 |V1007 Her |172406.3+411409 |XM | 17.1 |( 1.50 )| |R | | | | | |75144 75144| +401008 |V1008 Her |180546.4+314019 |UG | 13.5 |< 18.0 | |B | | | | | |75001 75001| +401009 |V1009 Her |181244.7+212419 |SR | 11.2 | 12.5 | |p | | | | | |75002 GSC | +401010 |V1010 Her |181414.3+304337 |UG: | 17.8 |< 21. | |B | | | | | |75145 75299| +401011 |V1011 Her |182931.5+223424 |EA | 10.4 | 11.6 | |p | | | | | |75002 GSC | +401012 |V1012 Her |160528.9+421030 |M | 12.4 |< 15.2 | |V | | | | | |76012 GSC | +401013 |V1013 Her |162449.7+080414 |RRAB | 12.6 | 13.6 | |* | | | | | |76140 UCAC2| +401014 |V1014 Her |165925.1+230620 |SR: | 10.8 | 12.7 | |V | | | | | |76012 GSC | +401015 |V1015 Her |175224.1+341112 |M | 13.8 | 17.5 | |B | | | | | |76164 76164| +401016 |V1016 Her |181658.2+155919 |M | 11.0 | 15.0 | |V | | | | | |76012 GSC | +401017 |V1017 Her |182126.1+181026 |EA | 10.29 | 10.47 | |V | | | | | |76176 DM | +401018 |V1018 Her |182946.4+140746 |SR | 10.5 | 11.6 | |V | | | | | |76179 GSC | +401019 |V1019 Her |184543.7+160157 |LB: | 11.2 | 12.8 | |V | | | | | |76012 GSC | +401020 |V1020 Her |185743.7+133717 |SR: | 13.6 | 15.5 | |* | | | | | |76057 76057| +401021 |V1021 Her |155745.4+492755 |EA: | 13.69 |( 0.35 R )| |V | | | | | |77118 77118| +401022 |V1022 Her |155810.2+492708 |UV+BY | 11.90 |( 0.09 R )| |V | | | | | |77118 77118| +401023 |V1023 Her |155825.3+492651 |EW | 11.97 |( 0.21 R )| |V | | | | | |77118 77118| +401024 |V1024 Her |161005.1+253655 |EA | 12.5 | 13.2 | |V | | | | | |77100 UCAC2| +401025 |V1025 Her |162109.2+253923 |EA | 12.1 |< 12.5 | |V | | | | | |77100 UCAC2| +401026 |V1026 Her |163153.6+252719 |EB | 12.2 | 12.6 | |V | | | | | |77100 GSC | +401027 |V1027 Her |163213.5+133844 |EA | 12.0 | 12.4 | |V | | | | | |77100 GSC | +401028 |V1028 Her |163516.7+124619 |EA | 12.0 |< 12.2 | |V | | | | | |77100 GSC | +401029 |V1029 Her |163532.6+035940 |SR: | 12.2 | 12.7 | |* | | | | | |77122 GSC | +401030 |V1030 Her |164503.7+041022 |SR: | 12.2 | 12.9 | |* | | | | | |77122 GSC | +401031 |V1031 Her |164508.5+203700 |EA | 12.1 | 12.5 | |V | | | | | |77100 UCAC2| +401032 |V1032 Her |164755.2+351756 |EB | 13.4 | 13.7 | |V | | | | | |77100 UCAC2| +401033 |V1033 Her |165039.9+274423 |EW | 11.8 | 12.4 | |V | | | | | |77100 UCAC2| +401034 |V1034 Her |165241.8+124905 |EA/RS | 12.88 | 13.98 | |V | | | | | |77123 GSC | +401035 |V1035 Her |165252.8+383929 |EA | 10.9 |< 11.4 | |V | | | | | |77100 GSC | +401036 |V1036 Her |165551.9+245336 |EW | 11.6 | 12.1 | |V | | | | | |77100 GSC | +401037 |V1037 Her |165657.0+291906 |EA | 12.0 | 12.3 | |V | | | | | |77100 GSC | +401038 |V1038 Her |165819.8+334022 |EW | 11.8 | 12.4 | |V | | | | | |77100 GSC | +401039 |V1039 Her |165923.9+151228 |EA/RS: | 12.4 | 13.0 | |V | | | | | |77100 GSC | +401040 |V1040 Her |165931.0+191256 |EA | 12.5 | 13.0 : | |V | | | | | |77100 GSC | +401041 |V1041 Her |170101.2+492317 |EA | 11.6 |< 12.1 | |V | | | | | |77100 GSC | +401042 |V1042 Her |170250.5+214000 |EB | 11.94 | 13.09 | |V | | | | | |77126 UCAC2| +401043 |V1043 Her |170610.6+495524 |EA: | 13.3 |< 14.0 | |V | | | | | |77100 GSC | +401044 |V1044 Her |171018.0+382642 |EW | 12.5 | 13.3 | |* | | | | | |77127 GSC | +401045 |V1045 Her |171059.9+461720 |EB | 10.9 | 11.4 | |V | | | | | |77100 DM | +401046 |V1046 Her |171130.3+231412 |EA | 12.5 | 12.95 | |V | | | | | |77100 GSC | +401047 |V1047 Her |171239.5+330800 |EW | 12.26 | 12.78 | |* | | | | | |77127 USNO | +401048 |V1048 Her |171457.5+421024 |SRB | 17.9 | 19.3 | |B | | | | | |77128 USNO | +401049 |V1049 Her |171642.0+212306 |EB | 10.8 | 11.2 | |V | | | | | |77100 DM | +401050 |V1050 Her |171650.0+382159 |EA: | 12.4 | 12.9 | |V | | | | | |77100 GSC | +401051 |V1051 Her |171727.8+271300 |EB | 12.5 | 12.8 | |V | | | | | |77100 GSC | +401052 |V1052 Her |171824.8+222851 |EW | 12.2 | 12.65 | |V | | | | | |77100 GSC | +401053 |V1053 Her |171840.0+355425 |EW | 13.0 | 13.85 | |* | | | | | |77127 GSC | +401054 |V1054 Her |172007.8+133958 |EB | 11.9 | 12.3 | |V | | | | | |77100 GSC | +401055 |V1055 Her |172023.9+411513 |EW | 11.11 | 11.55 | |* | | | | | |77127 GSC | +401056 |V1056 Her |172142.6+405424 |EB | 10.2 | 10.3 | |V | | | | | |77100 DM | +401057 |V1057 Her |172303.6+175701 |EA | 11.8 | 12.2 | |V | | | | | |77100 GSC | +401058 |V1058 Her |172602.1+304713 |EA | 12.6 | 13.8 | |V | | | | | |77100 UCAC2| +401059 |V1059 Her |172659.3+244148 |EA | 11.9 | 12.4 | |V | | | | | |77100 GSC | +401060 |V1060 Her |172741.3+274504 |EA | 12.1 | 12.8 | |V | | | | | |77100 GSC | +401061 |V1061 Her |172817.0+211556 |EA | 11.4 | 12.0 : | |V | | | | | |77100 DM | +401062 |V1062 Her |173454.3+441153 |EW | 13.15 | 13.74 | |* | | | | | |77129 GSC | +401063 |V1063 Her |173621.2+303214 |EA | 10.8 | 11.0 | |V | | | | | |77100 DM | +401064 |V1064 Her |173920.6+354211 |EW | 11.3 | 11.6 | |V | | | | | |77100 GSC | +401065 |V1065 Her |174103.4+273434 |EW | 11.5 | 12.1 : | |V | | | | | |77100 GSC | +401066 |V1066 Her |174151.0+475104 |EB | 11.8 | 12.3 | |V | | | | | |77100 GSC | +401067 |V1067 Her |174310.9+432709 |EW | 12.58 | 13.21 | |* | | | | | |77132 GSC | +401068 |V1068 Her |174323.1+475141 |EW: | 12.4 | 13.0 | |V | | | | | |77100 GSC | +401069 |V1069 Her |174743.9+463232 |EB | 12.3 | 13.0 | |V | | | | | |77100 GSC | +401070 |V1070 Her |174953.0+370840 |EA | 12.0 | 13.5 | |V | | | | | |77100 GSC | +401071 |V1071 Her |175852.9+481024 |EB | 11.3 | 11.75 | |V | | | | | |77100 GSC | +401072 |V1072 Her |175909.6+493606 |EA | 12.7 | 13.2 | |V | | | | | |77100 GSC | +401073 |V1073 Her |180835.8+334205 |EW | 11.00 | 11.69 | |* | | | | | |77148 GSC | +401074 |V1074 Her |181210.9+305513 |EA | 12.65 | 13.3 | |V | | | | | |77104 77221| +401075 |V1075 Her |181624.8+501416 |BY | 8.94 | 8.98 | |V | | | | | |77119 DM | +401076 |V1076 Her |182605.8+232847 |M | 4.99 | 6.72 | |K | | | | | |77081 2MASS| +401077 |V1077 Her |183347.6+190215 |SRA | 10.8 | 12.3 | |V | | | | | |77158 GSC | +401078 |V1078 Her |161446.9+422736 |RPHS | 14.14 |( 0.09 )| |B | | | 0.00167 | |sd:O |78187 78009| +401079 |V1079 Her |162013.7+243611 |BY: | 8.9 |( 0.14 )| |Rc| | | 19.07 | |K0 |78188 78188| +401080 |V1080 Her |163627.8+141136 |DSCTC | 9.83 | 9.84 | |V | | | 0.0262 | |A2 |78022 DM | +401081 |V1081 Her |163738.4+083721 |SRA | 14.3 | 16.0 | |B |46609 | | 157.09 | | |78191 78002| +401082 |V1082 Her |164035.1+490959 |BY | 9.00 |( 0.02 )| |V | | | 23. : | |K2V |78018 DM | +401083 |V1083 Her |164235.5+060943 |RRAB | 13.2 | 14.0 | |B |44749.376 | | 0.6043045 |13 | |78192 78125| +401084 |V1084 Her |164345.7+340240 |NL | 12.48 | 12.75 | |V | | | 0.1081 | | |78193 78193| +401085 |V1085 Her |164532.3+334948 |BY | 9.45 |( 0.01 )| |V | | | 13.65 : | |K5V |78018 DM | +401086 |V1086 Her |164839.3+302746 |DSCT | 13.1 | 13. | |* |52451.077 | | 0.130597 |40 | |78161 GSC | +401087 |V1087 Her |164843.2+060749 |RRAB | 12.7 | 14.5 | |B |44343.462 | | 0.4625066 |11 | |78192 78125| +401088 |V1088 Her *|165631.1+322055 |EW | 13.7 | 14.2 | 14.1 |* |51337.749 | | 0.35923 | | |78264 GSC | +401089 |V1089 Her |165742.2+472144 |BY | 7.93 |( 0.03 )| |V | | | 15.39 | |K0V |78018 DM | +401090 |V1090 Her |165753.2+472200 |BY | 7.76 |( 0.02 )| |V | | | 7.22 : | |K0V |78018 DM | +401091 |V1091 Her *|170724.5+361526 |EW | 12.04 | 12.28 | 12.27 |* |52454.130 | | 0.393530 | | |78161 GSC | +401092 |V1092 Her *|171639.9+293405 |EW | 11.93 |( 0.50 V )|( 0.46 )|* |52419.125 | | 0.384512 | | |78161 GSC | +401093 |V1093 Her *|171803.9+423413 |* | 13.97 |( 0.02 )| |V | | | 0.0408 | |sdB |78116 78009| +401094 |V1094 Her *|172631.3+350115 |EW | 12.56 | 13.15 | 13.08 |* |52426.5561 | | 0.392124 | | |78264 GSC | +401095 |V1095 Her *|172803.3+434124 |EW | 11.90 | 12.44 | 12.40 |* |52442.5724 | | 0.415381 | | |78264 GSC | +401096 |V1096 Her |172845.0+434813 |EW | 13.01 | 13.39 | |* |52463.4300 | | 0.241415 | | |78264 GSC | +401097 |V1097 Her |173328.0+265548 |EW | 10.76 | 11.30 | |* |52463.4068 | | 0.360847 | | |78264 GSC | +401098 |V1098 Her |173937.2+501203 |EW | 12.44 |( 0.38 V )| |* |51627.337 | | 0.352264 | | |78161 GSC | +401099 |V1099 Her *|174022.0+485358 |* | 13.2 |( 0.02 )| |V | | | | | |78116 78009| +401100 |V1100 Her |174410.6+401651 |EW | 10.92 |( 0.34 )| |* |52024.9883 | | 0.346925 | | |78264 GSC | +401101 |V1101 Her *|180733.3+465435 |EW | 11.92 | 12.52 | 12.47 |* |52526.4776 | | 0.382655 | | |78264 GSC | +401102 |V1102 Her *|180801.2+502453 |EW | 13.60 | 14.41 | 14.27 |* |52526.4937 | | 0.309005 | | |78264 GSC | +401103 |V1103 Her *|180818.6+343436 |EW | 11.91 | 12.43 | 12.37 |* |52526.3704 | | 0.291353 | | |78264 GSC | +401104 |V1104 Her |180947.8+490255 |EW | 13.23 | 14.19 | |* |52526.4286 | | 0.2278765 | | |78264 GSC | +401105 |V1105 Her |181123.5+303639 |EW | 12.6 | 13.0 | |* |52542.022 | | 0.321704 | | |78161 GSC | +401106 |V1106 Her *|181324.4+255012 |EW | 12.6 | 12.9 | 12.9 |* |52556.038 | | 0.254573 | | |78161 GSC | +401107 |V1107 Her |181423.1+205428 |SR | 14.0 |( 0.58 )| |Rc|52116 | | 95.8 : | | |78234 2MASS| +401108 |V1108 Her *|183926.1+260410 |UGSU | 12.0 | 17.1 | |V | | | | |pec(UG) |78247 | +401109 |V1109 Her |184929.4+120841 |EB | 9.30 | 9.57 | |V |52760.834 | | 2.59849 | |B9 |78011 DM | +401110 |V1110 Her |185024.5+240624 |BY | 7.0 |( 0.02 )| |V | | | 11.7 | |K5 |78018 DM | +401111 |V1111 Her |185512.9+231313 |BY | 7.90 |( 0.03 )| |V | | | 1.1475 | |K5 |78018 DM | +401112 |V1112 Her |185645.5+134941 |M: | 13.0 | 15.7 | |* |51414 | | | | |78006 2MASS| +401113 |V1113 Her |185652.7+144540 |M: | 11.8 | 14.8 | |* | | | | | |78006 2MASS| +401114 |V1114 Her |185701.9+124126 |M: | 13.0 |< 15.0 | |* | | | | | |78006 2MASS| +401115 |V1115 Her |185706.2+125834 |M | 10.3 | 12.8 | |* |53480 | | | | |78006 2MASS| +401116 |V1116 Her |163016.4+165506 |DSCT | 11.16 | 11.45 | |V | | | 0.094681 |40 | |79064 79105| +401117 |V1117 Her *|163906.4+094755 |IS | 12.3 | 15.4 | |p | | | | | |79109 GSC | +401118 |V1118 Her |163945.4+091637 |SRA | 11.4 | 13.2 | |V |53898. | | 127.8 | | |79064 79040| +401119 |V1119 Her |164022.4+060730 |EB | 10.05 | 10.54 | 10.27 |* |51419.83 | | 0.72341 | |G0 |79025 DM | +401120 |V1120 Her |164119.4+082802 |SRB | 10.0 | 11.1 | |V | | | 276. | |M3 |79100 79022| +401121 |V1121 Her |164246.1+095329 |SRB | 10.9 | 12.4 | |V | | | 156. | | |79064 79017| +401122 |V1122 Her |164637.8+390325 |LB | 9.1 | 9.7 | |* | | | | |M1 |79100 79022| +401123 |V1123 Her |165013.1+085911 |SR | 12.2 | 14.0 | |V | | | 157. | | |79100 79022| +401124 |V1124 Her *|170432.9+142633 |RRAB | 12.1 | 13.2 | |* |51357.772 | | 0.5510 |15 | |79025 79050| +401125 |V1125 Her |170526.6+141359 |LB | 10.2 | 10.9 | |V | | | | |M3 |79100 79022| +401126 |V1126 Her |170641.0+154032 |RRAB | 13.1 | 14.1 | |V |53891.679 | | 0.53953 |16 | |79064 79050| +401127 |V1127 Her |170711.9+361810 |SR | 10.1 | 11.4 | |* |51438. | | 180. | |M7: |79100 79026| +401128 |V1128 Her |173459.1+172108 |LB | 9.6 | 10.0 | |* | | | | | |79100 79040| +401129 |V1129 Her |174443.4+150156 |RRAB | 13.2 | 14.6 | |V |51331.646 | | 0.46262 |15 | |79025 79040| +401130 |V1130 Her |174644.1+154202 |LB | 12.2 | 13.3 | |V | | | | | |79100 79022| +401131 |V1131 Her *|174705.2+383330 |RRAB | 13.0 | 13.7 | |* |51400.295 | | 0.58584 |25 : | |79100 79192| +401132 |V1132 Her |174731.6+164949 |RRAB | 13.5 | 14.8 | |V |53903.598 | | 0.554335 |08 | |79100 79040| +401133 |V1133 Her |175443.9+155317 |EA | 12.65 | 14.1 : | 13.2 : |V |53229.608 | | 2.467545 |10 | |79003 79040| +401134 |V1134 Her |182814.5+121951 |EB | 12.50 | 13.0 | 12.9 |V |51484.658 | | 0.602937 | | |79003 79128| +401135 |V1135 Her *|183213.0+121704 |EB | 12.65 | 13.05 | 12.77 |V |51448.350 | | 40.0 | | |79009 79129| +401136 |V1136 Her |183247.9+244045 |GDOR | 8.07 |( 0.06 )| |B | | | 1.0044 | |F2IV |79219 DM | +401137 |V1137 Her *|154934.8+495012 |EW | 14.3 | 14.7 | 14.7 |* |51397.70 | | 0.37083 | | |80101 80101| NL80_2 +401138 |V1138 Her *|155009.3+493639 |EW | 13.8 | 14.1 | 14.0 |* |51394.822 | | 0.4609 | | |80101 80101| NL80_2 +401139 |V1139 Her |155028.5+455752 |SXPHE | 12.65 | 12.95 | |* |51486.310 | | 0.068587 |30 : | |80178 80178| NL80_2 +401140 |V1140 Her *|155309.8+465206 |EW | 13.7 | 14.1 | 14.1 |* |51390.675 | | 0.3730 | | |80102 80102| NL80_2 +401141 |V1141 Her *|155458.5+424611 |RRC | 11.32 | 11.64 | |* |54189.697 | | 0.317152 | |A2 |80269 80269| NL80_2 +401142 |V1142 Her |155600.6+494756 |RRC | 12.76 | 13.22 | |V |51328.74 | | 0.37826 |32 | |80001 GSC | NL80_2 +401143 |V1143 Her *|155657.0+505406 |EA | 11.6 | 13.2 | 11.7 |* |51393.989 | | 1.6862 |11 | |80104 80104| NL80_2 +401144 |V1144 Her *|155657.5+421337 |EW | 14.6 | 15.4 | 15.4 : |* |51373.105 | | 0.25497 | | |80101 80101| NL80_2 +401145 |V1145 Her |155749.6+412320 |RS | 12.82 | 13.13 | |* | | | 15.9 | | |80115 80115| NL80_2 +401146 |V1146 Her *|155818.7+481448 |EA | 11.10 | 11.45 : | 11.45 : |V |51277.840 | | 7.654 |03 | |80042 GSC | NL80_2 +401147 |V1147 Her |160044.2+430842 |EW | 13.8 | 14.3 | 14.1 |* |51375.875 | | 0.254468 | | |80101 80101| NL80_3 +401148 |V1148 Her |160122.0+482938 |EW | 12.5 | 13.1 | 13.0 |* |51399.849 | | 0.282255 | | |80101 80101| NL80_3 +401149 |V1149 Her |160343.4+501333 |CWB | 13.7 | 14.8 | |* |51400.10 | | 1.4095 |15 | |80617 80617| NL80_3 +401150 |V1150 Her |160351.7+423654 |BY | 12.89 |( 0.19 *)| |V | | | 0.7880 | | |80021 GSC | NL80_3 +401151 |V1151 Her |160355.3+485713 |EW | 12.8 | 13.05 | 13.05 |* |51397.757 | | 0.27818 | | |80101 80101| NL80_3 +401152 |V1152 Her |160418.9+180834 |RRAB | 14.15 | 15.17 | |* |51361.77 | | 0.47607 | | |80026 GSC | NL80_3 +401153 |V1153 Her |160434.8+504514 |EW | 12.4 | 12.65 | 12.6 |* |51396.909 | | 0.37422 | | |80101 80101| NL80_3 +401154 |V1154 Her |160650.6+411735 |RS | 12.9 | 13.1 | |* | | | 0.58940 | | |80115 80115| NL80_3 +401155 |V1155 Her |160859.6+420141 |EW | 14.4 | 14.8 | 14.8 : |* |51380.52 | | 0.36945 | | |80101 80101| NL80_3 +401156 |V1156 Her |160913.6+413642 |RRAB | 13.7 | 14.2 | |* |51387.637 | | 0.6090 |20 : | |80168 80168| NL80_3 +401157 |V1157 Her |161059.6+395254 |EW | 14.1 | 14.7 | 14.7 |* |51384.654 | | 0.31589 | | |80101 80101| NL80_3 +401158 |V1158 Her *|161123.2+440621 |EW: | 9.78 | 9.95 | 9.94 |* |51408.74 | | 0.6600 | |A3 |80101 80101| NL80_3 +401159 |V1159 Her |161134.4+471612 |EW | 13.3 | 14.0 | 13.9 |* |51396.632 | | 0.28735 | | |80101 80101| NL80_3 +401160 |V1160 Her |161216.2+431631 |EW | 12.2 | 12.65 | 12.6 |* |51381.548 | | 0.376075 | | |80101 80101| NL80_3 +401161 |V1161 Her |161528.7+261103 |RRAB | 15.9 | 17.1 | |B |42890.44 | | 0.454522 |18 | |80618 80618| NL80_3 +401162 |V1162 Her |161700.5+101728 |RRAB | 12.9 | 13.7 | |V |53130.7497 | | 0.547925 |15 | |80002 GSC | NL80_3 +401163 |V1163 Her |161744.8+085459 |RS | 11.55 | 11.80 | |V | | | 17.23 | | |80442 GSC | NL80_3 +401164 |V1164 Her |161858.3+495433 |RRAB | 14.02 | 15.26 | |* |51481.59 | | 0.45949 | | |80026 GSC | NL80_3 +401165 |V1165 Her |162000.0+043646 |RS | 10.20 | 10.55 | |V | | | 1.437 | |K2 |80034 DM | NL80_3 +401166 |V1166 Her |162001.8+042841 |DSCT | 12.5 | 13.3 | |V | | | 0.108157 | | |80002 GSC | NL80_3 +401167 |V1167 Her |162003.2+070729 |EW | 9.72 | 10.04 | 9.98 |V |54988.6933 | | 0.275282 | |G5 |80001 DM | NL80_3 +401168 |V1168 Her |162044.5+094427 |RRAB | 14.37 | 15.47 | |* |51356.77 | | 0.47708 | | |80026 GSC | NL80_3 +401169 |V1169 Her |162201.2+225022 |BY | 11.83 |( 0.08 : *)| |V | | | 1.3728 | |M |80021 GSC | NL80_3 +401170 |V1170 Her |162240.8+430108 |EW | 12.2 | 12.5 | 12.45 |* |51373.610 | | 0.41409 | | |80102 80102| NL80_3 +401171 |V1171 Her |162255.3+224604 |BY | 10.86 |( 0.05 : *)| |V | | | 1.7387 | |K |80021 GSC | NL80_3 +401172 |V1172 Her |162337.2+155720 |EW | 12.65 | 13.35 | 13.20 |V |53832.79 | | 0.236166 | | |80001 GSC | NL80_3 +401173 |V1173 Her |162410.4+455527 |EW | 9.95 | 10.4 | 10.35 |* |51383.737 | | 2.265629 | | |80447 80447| NL80_3 +401174 |V1174 Her |162423.4+044522 |RS | 10.20 | 10.46 | |V | | | 4.963 | | |80034 DM | NL80_3 +401175 |V1175 Her |162446.2+213903 |EW | 11.13 | 11.33 | 11.32 |V |55049.452 | | 0.321197 | | |80001 GSC | NL80_3 +401176 |V1176 Her |162506.6+300226 |BY | 9.73 | 10.06 | |* | | | 14.2 | | |80001 DM | NL80_3 +401177 |V1177 Her |162510.0+051454 |RS: | 11.7 | 12.2 | |V | | | 3.4487 | | |80001 GSC | NL80_3 +401178 |V1178 Her |162641.3+335042 |BY | 9.66 | 9.86 | |Hp| | | 23.1808 | |G0 |80021 HIP | NL80_3 +401179 |V1179 Her |162744.9+110338 |EW | 11.45 | 11.85 | 11.80 |V |53906.4880 | | 0.385498 | | |80001 GSC | NL80_3 +401180 |V1180 Her |162815.4+330108 |EW: | 12.82 |( 0.16 )| |V |51243.2766 | | 0.352066 | | |80394 GSC | NL80_3 +401181 |V1181 Her |162817.3+371124 |EW | 11.19 | 11.60 | 11.56 |* |53898.3997 | | 0.337043 | | |80182 GSC | NL80_3 +401182 |V1182 Her |162823.0+365602 |EA | 11.7 | 12.05 | |* |51393.535 | | 1.9129 |11 | |80063 80063| NL80_3 +401183 |V1183 Her |162829.6+343149 |EW | 12.65 | 13.10 | 13.1 |* |51310.817 | | 0.3095 | | |80414 80414| NL80_3 +401184 |V1184 Her |162835.2+360235 |RS | 12.3 | 12.5 | |* | | | 16.6574 | | |80067 80067| NL80_3 +401185 |V1185 Her |162836.1+471758 |EW | 10.9 | 11.25 | 11.22 |* |51390.561 | | 0.35979 | | |80101 80101| NL80_3 +401186 |V1186 Her |162914.8+245939 |RRAB | 13.76 | 14.76 | |* |51318.74 | | 0.44032 | | |80026 GSC | NL80_3 +401187 |V1187 Her |162919.9+354003 |EW | 11.1 |( 0.17 )|( 0.17 )|R |53877.4694 | | 0.310766 | | |80001 GSC | NL80_3 +401188 |V1188 Her |162929.9+042917 |RRAB | 12.9 | 14.0 | |V |53106.8342 | | 0.639350 |15 | |80002 GSC | NL80_3 +401189 |V1189 Her |162936.5+263520 |NL: | 18.95 | 19.58 | |V | | | 0.0846 | |pec(e)+M0 |80319 USNO | NL80_3 +401190 |V1190 Her |162943.0+482224 |RS | 12.8 | 13.0 | |* | | | 2.6615 | | |80069 80069| NL80_3 +401191 |V1191 Her |162946.6+281038 |BY | 10.46 | 10.64 | |V | | | 1.4639 | | |80021 GSC | NL80_3 +401192 |V1192 Her |163019.3+481344 |EW | 13.0 | 13.3 | 13.3 |* |51391.579 | | 0.31008 | | |80052 80052| NL80_3 +401193 |V1193 Her |163049.9+045211 |RRAB | 14.00 | 15.13 | |* |51359.76 | | 0.43916 | | |80026 GSC | NL80_3 +401194 |V1194 Her |163052.9+241224 |BY | 10.55 | 10.80 | |V | | | 53.07 | | |80027 GSC | NL80_3 +401195 |V1195 Her |163135.7+484336 |RRAB | 11.9 | 12.5 | |* |51391.510 | | 0.60971 |19 | |80168 80168| NL80_3 +401196 |V1196 Her |163207.3+284716 |RRAB | 14.6 | 16.2 | |B |42519.43 | | 0.570045 |20 | |80618 80618| NL80_3 +401197 |V1197 Her |163322.9+281820 |EW | 12.75 | 13.46 | 13.36 |* |54556.9209 | | 0.2626814 | | |80001 GSC | NL80_3 +401198 |V1198 Her |163420.9+424433 |EW | 10.77 | 11.05 | 11.05 |* |51386.817 | | 0.36362 | | |80102 80102| NL80_3 +401199 |V1199 Her |163515.4+265541 |EW | 14.7 | 15.5 | 15.4 |B |42301.30 | | 0.335543 | | |80618 80618| NL80_3 +401200 |V1200 Her |163527.4+350057 |BY | 12.23 |( 0.12 *)| |V | | | 0.9166 | |M4 |80021 GSC | NL80_3 +401201 |V1201 Her |163541.3+282448 |RRAB | 14.4 | 15.9 | |B |42718.20 | | 0.635820 |20 | |80618 80618| NL80_3 +401202 |V1202 Her |163547.4+452458 |EW | 13.7 | 14.3 | 14.3 |* |51339.853 | | 0.3388 | | |80102 80102| NL80_3 +401203 |V1203 Her |163617.0+500937 |RRC | 12.65 | 12.9 | |* |51392.92 | | 0.31790 |40 : | |80168 80168| NL80_3 +401204 |V1204 Her |163737.3+064813 |RRAB | 13.5 | 14.5 | |V |52385.20 | | 0.63782 |18 | |80002 GSC | NL80_3 +401205 |V1205 Her |163739.5+221113 |BY | 10.77 | 10.88 | |V | | | 2.0912 | | |80021 GSC | NL80_3 +401206 |V1206 Her |163741.4+291951 |BY | 11.43 |( 0.11 *)| |V | | | 0.8246 | | |80021 GSC | NL80_3 +401207 |V1207 Her |163845.5+250643 |EW | 12.55 | 13.40 | 13.25 |V |53183.6192 | | 0.266757 | | |80002 GSC | NL80_3 +401208 |V1208 Her |163850.6+405758 |EW | 12.25 | 12.45 | 12.45 |* |51390.958 | | 0.36332 | | |80102 80102| NL80_3 +401209 |V1209 Her |164106.8+404226 |SXPHE | 13.8 | 14.5 | |* | | | 0.0512975 |22 | |80453 80453| NL80_3 +401210 |V1210 Her |164153.1+114021 |RS | 9.8 | 10.1 | |* | | | 21.69 | |K0 |80158 DM | NL80_3 +401211 |V1211 Her *|164214.2+425234 |RPHS | 15.94 |( 0.02 *)| |V | | | 0.00160 | |sdB |80398 USNO | NL80_3 +401212 |V1212 Her |164328.9+452334 |RRAB | 13.1 | 14.1 | |* |51405.608 | | 0.62118 |15 | |80168 80168| NL80_3 +401213 |V1213 Her |164351.0+095326 |RRAB | 14.31 | 15.53 | |* |51306.90 | | 0.44191 | | |80026 GSC | NL80_3 +401214 |V1214 Her |164703.5+094558 |RS | 11.3 | 11.5 | |* | | | 4.586 | | |80370 80370| NL80_3 +401215 |V1215 Her |164718.1+493719 |EW | 14.3 | 15.0 | 14.9 |* |51389.56 | | 0.31275 | | |80101 80101| NL80_3 +401216 |V1216 Her |164815.5+444429 |EW | 12.15 | 12.60 | 12.5 |* |51373.713 | | 0.30203 | | |80101 80101| NL80_3 +401217 |V1217 Her |164842.8+095622 |RRAB | 12.35 | 12.93 | |V |52385.5 | | 0.787630 |30 | |80002 GSC | NL80_3 +401218 |V1218 Her |164929.4+045246 |RRAB | 13.0 | 14.0 | |V |52385.7 | | 0.726420 |20 | |80002 GSC | NL80_3 +401219 |V1219 Her |164942.9+222004 |EB | 10.10 | 10.50 | 10.45 |V |53124.85 | | 23.1706 | |K7V |80001 GSC | NL80_3 +401220 |V1220 Her |164956.8+325236 |BY | 11.98 |( 0.14 *)| |V | | | 1.0396 | | |80021 GSC | NL80_3 +401221 |V1221 Her |165000.0+412226 |BY | 11.24 |( 0.11 *)| |V | | | 1.8137 | |K0 |80021 GSC | NL80_3 +401222 |V1222 Her |165025.8+272817 |BY | 11.32 |( 0.10 *)| |V | | | 2.2815 | | |80021 GSC | NL80_3 +401223 |V1223 Her |165034.1+454637 |EW | 10.42 | 10.67 | 10.62 : |* |51412.848 | | 0.67945 | | |80102 80102| NL80_3 +401224 |V1224 Her |165123.1+235542 |BY | 12.0 | 12.2 | |* | | | 3.026 | | |80370 80370| NL80_3 +401225 |V1225 Her |165211.9+202146 |BY | 12.43 |( 0.11 : *)| |V | | | 3.6987 | | |80021 GSC | NL80_3 +401226 |V1226 Her |165308.7+255835 |CWA | 9.88 | 10.27 | |V |54682.6 | | 9.6965 |50 |G5 |80001 DM | NL80_3 +401227 |V1227 Her *|165359.1+201011 |UGSU | 14.6 | 18.1 | |V | | | | |pec(UG) |80405 80027| NL80_3 +401228 |V1228 Her |165445.0+423228 |BY | 13.02 |( 0.15 *)| |V | | | 0.6912 | |M3 |80021 GSC | NL80_3 +401229 |V1229 Her |165658.1+212140 |NL | 18.3 | 18.9 | |* | | | | |pec(e) |80064 80027| NL80_3 +401230 |V1230 Her |165726.6+144046 |EW | 14.07 |( 0.62 )| |V |51252.40 | | 0.370002 | | |80394 GSC | NL80_3 +401231 |V1231 Her *|165820.7+333353 |BY | 9.81 |( 0.04 *)| |V | | | 4.5302 | | |80021 GSC | NL80_3 +401232 |V1232 Her |165840.6+374619 |EW | 14.45 | 15.13 | 15.08 |* |53796.99 | | 0.267905 | | |80001 GSC | NL80_3 +401233 |V1233 Her |165852.5+391423 |EW | 11.80 |( 0.36 )| |V |51243.3980 | | 0.310599 | | |80394 GSC | NL80_3 +401234 |V1234 Her |165909.6+205816 |BY | 11.90 |( 0.08 *)| |V | | | 4.1037 : | |M3V |80021 GSC | NL80_3 +401235 |V1235 Her |165921.9+342823 |BY | 10.66 |( 0.03 : *)| |V | | | 1.5636 | | |80021 GSC | NL80_3 +401236 |V1236 Her *|170033.8+200134 |BY | 9.72 | 9.86 | |V | | | 4.2298 | |G5 |80021 DM | NL80_3 +401237 |V1237 Her |170053.3+400358 |XM | 17.9 | 19.5 | |V | | | 0.0808017 | |pec(e) |80278 80027| NL80_3 +401238 |V1238 Her |170121.9+420950 |EW | 9.8 | 10.4 | 10.4 |B |44423.337 | | 0.3701518 | |G0 |80455 80455| NL80_3 +401239 |V1239 Her *|170213.3+322954 |UGSU+EA | 13.7 | 19. | |* | | | | |M0Ve |80456 USNO | NL80_3 +401240 |V1240 Her |170244.1+223548 |NL: | 17.30 | 17.50 | |V | | | | |ea |80405 80027| NL80_3 +401241 |V1241 Her |170303.1+320326 |BY | 11.48 |( 0.09 *)| |V | | | 2.7718 | |F8 |80021 GSC | NL80_3 +401242 |V1242 Her |170313.5+245321 |BY | 9.85 | 10.05 | |V | | | 5.8417 | | |80021 GSC | NL80_3 +401243 |V1243 Her |170420.2+392859 |BY | 11.36 | 11.52 | |* | | | 0.79645 | | |80001 GSC | NL80_3 +401244 |V1244 Her |170538.1+335100 |RS | 11.5 | 11.7 | |* | | | 5.778 | | |80370 80370| NL80_3 +401245 |V1245 Her |170706.3+202922 |RS | 10.0 | 10.3 | |* | | | 39.1844 | | |80067 80067| NL80_3 +401246 |V1246 Her |170758.0+291915 |BY | 11.42 | 11.70 | |* | | | 3.0816 | | |80021 GSC | NL80_3 +401247 |V1247 Her |171145.1+301320 |NL | 21.44 | 21.67 | |* | | | 0.05579861 | | |80030 80027| NL80_3 +401248 |V1248 Her |171245.6+322540 |RRAB | 13.70 | 14.65 | |* |51364.80 | | 0.50620 | | |80026 GSC | NL80_3 +401249 |V1249 Her |171331.0+232027 |BY | 10.35 | 10.60 | |V | | | 2.7852 | | |80021 GSC | NL80_3 +401250 |V1250 Her *|171452.3+301941 |UV | 17.6 | | |R | | | | |M6.5e |80387 2MASS| NL80_3 +401251 |V1251 Her |171733.6+495516 |BY | 13.87 |( 0.28 *)| |V | | | 2.0939 | | |80021 GSC | NL80_3 +401252 |V1252 Her |171752.1+405310 |EW | 14.5 | 15.0 | 15.0 |* |51380.712 | | 0.39148 | | |80085 80085| NL80_3 +401253 |V1253 Her |171800.3+212809 |BY | 10.08 |( 0.03 *)| |V | | | 0.7904 | | |80021 GSC | NL80_3 +401254 |V1254 Her |171808.6+250612 |BY | 10.71 |( 0.06 *)| |V | | | 2.4103 | |K5 |80021 GSC | NL80_3 +401255 |V1255 Her |171921.1+480343 |BY | 9.75 |( 0.03 *)| |V | | | 5.9483 | |G5 |80021 DM | NL80_3 +401256 |V1256 Her |172021.5+163053 |EW | 12.6 | 13.5 | 13.4 |V |53496.778 | | 0.318275 | | |80002 GSC | NL80_3 +401257 |V1257 Her |172228.6+365842 |BY | 10.63 |( 0.11 *)| |V | | | 1.2283 | |K5 |80021 GSC | NL80_3 +401258 |V1258 Her |172314.2+283650 |BY | 10.85 |( 0.06 *)| |V | | | 3.8881 | | |80021 GSC | NL80_3 +401259 |V1259 Her |172339.8+352757 |EA/RS | 11.4 | 11.8 | |* |51453.66 | | 23.161 |07 | |80001 GSC | NL80_3 +401260 |V1260 Her |172341.5+371931 |RRAB | 13.10 | 13.96 | |* |51478.65 | | 0.45402 |17 | |80026 GSC | NL80_3 +401261 |V1261 Her |172347.4+205443 |EW | 12.70 | 13.30 | 13.25 |V |52875.3912 | | 0.3976946 | | |80465 GSC | NL80_3 +401262 |V1262 Her |172405.0+182937 |RS | 11.1 | 11.4 | |V | | | 11.563 | | |80370 80370| NL80_3 +401263 |V1263 Her |172413.7+402617 |BY | 11.38 |( 0.05 *)| |V | | | 0.2890 | | |80021 GSC | NL80_3 +401264 |V1264 Her |172715.6+333006 |EB | 12.35 | 12.7 | 12.45 |* |51400.797 | | 0.81474 | | |80085 80085| NL80_3 +401265 |V1265 Her *|172831.9+382242 |RRAB | 13.98 | 15.24 | |* |55034.69 | | 0.458213 |18 | |80001 GSC | NL80_3 +401266 |V1266 Her |172852.7+191312 |BY | 10.3 | 10.5 | |* | | | 19.1288 | | |80067 80067| NL80_3 +401267 |V1267 Her |172907.0+274921 |RRAB | 12.4 | 13.3 | |V |53126.8609 | | 0.468850 |15 | |80002 GSC | NL80_3 +401268 |V1268 Her |172927.2+352405 |BY | 11.81 |( 0.21 *)| |V | | | 14.2202 | |K5V |80021 GSC | NL80_3 +401269 |V1269 Her |173005.0+184339 |BY | 10.69 |( 0.07 *)| |V | | | 12.6078 | |K0 |80021 GSC | NL80_3 +401270 |V1270 Her |173103.3+281507 |BY | 10.27 |( 0.10 *)| |V | | | 1.2653 | | |80021 GSC | NL80_3 +401271 |V1271 Her |173109.4+404118 |EW | 13.95 | 14.55 | 14.42 |* |55713.89 | | 0.3196177 | | |80001 80085| NL80_3 +401272 |V1272 Her |173148.4+363214 |BY | 13.3 | 13.6 | |* | | | 13.378 | | |80370 80370| NL80_3 +401273 |V1273 Her |173216.1+484750 |BY | 12.39 |( 0.19 *)| |V | | | 12.7178 | |K |80021 GSC | NL80_3 +401274 |V1274 Her |173353.1+165513 |BY | 13.04 |( 0.20 *)| |V | | | 0.2659 | | |80021 GSC | NL80_3 +401275 |V1275 Her |173601.7+470218 |EW | 13.85 | 14.50 | 14.34 |* |55103.68 | | 0.2911296 | | |80001 80102| NL80_3 +401276 |V1276 Her |173636.8+151508 |BY | 10.34 |( 0.10 *)| |V | | | 2.6726 | | |80021 GSC | NL80_3 +401277 |V1277 Her |173637.5+460514 |EB | 10.5 | 10.85 | 10.7 |* |51386.534 | | 1.0593 | | |80471 80471| NL80_3 +401278 |V1278 Her |173658.2+300948 |BY | 11.00 |( 0.05 *)| |V | | | 5.1781 | |K4 |80021 GSC | NL80_3 +401279 |V1279 Her |173659.3+485946 |BY | 12.72 |( 0.08 *)| |V | | | 2.6143 | |M2.5V |80021 GSC | NL80_3 +401280 |V1280 Her |173733.5+414620 |BY | 11.16 |( 0.07 *)| |V | | | 1.5480 | | |80021 GSC | NL80_3 +401281 |V1281 Her |173829.9+194805 |RRAB | 13.49 | 14.60 | |* |53550.80 | | 0.4648777 |13 | |80001 GSC | NL80_3 +401282 |V1282 Her |173834.2+452719 |EW | 12.8 | 13.65 | 13.59 |* |52871.3786 | | 0.2783504 | | |80473 GSC | NL80_3 +401283 |V1283 Her |173837.4+375357 |RRC | 10.72 | 11.02 | |* |51421.80 | | 0.27269 |40 | |80026 GSC | NL80_3 +401284 |V1284 Her |173925.4+364659 |EW | 12.52 | 13.61 | 13.55 |* |52898.3476 | | 0.337146 | | |80473 GSC | NL80_3 +401285 |V1285 Her *|174107.3+484314 |RR(B) | 12.83 | 13.5 | |* |51408.71 | | 0.4133 | | |80476 80476| NL80_3 +401286 |V1286 Her |174143.8+341209 |EW | 12.27 | 12.91 | 12.88 |* |52898.3144 | | 0.334711 | | |80473 GSC | NL80_3 +401287 |V1287 Her |174252.8+141805 |RRAB | 13.7 | 15.1 | |B |49475.471 | | 0.5404488 |18 | |80478 GSC | NL80_3 +401288 |V1288 Her |174311.1+334949 |BY | 11.74 |( 0.24 *)| |V | | | 6.3627 | | |80021 GSC | NL80_3 +401289 |V1289 Her |174357.2+341803 |EW | 10.88 | 11.59 | 11.56 |* |52907.3998 | | 0.340092 | | |80473 GSC | NL80_3 +401290 |V1290 Her *|174407.6+440452 |RS | 8.16 | 8.21 | |V | | | 64.1 | |G5-8III |80480 DM | NL80_3 +401291 |V1291 Her |174605.2+312105 |BY | 12.43 |( 0.10 *)| |V | | | 0.3789 | | |80021 GSC | NL80_3 +401292 |V1292 Her |174625.3+222900 |BY | 11.08 |( 0.09 *)| |V | | | 3.5384 | | |80021 GSC | NL80_3 +401293 |V1293 Her |174647.2+483437 |LB | 11.5 | 11.8 | |* | | | | | |80070 80070| NL80_3 +401294 |V1294 Her |174705.0+332129 |BY | 11.60 |( 0.06 *)| |V | | | 3.2041 | | |80021 GSC | NL80_3 +401295 |V1295 Her |174737.0+450215 |EW | 11.84 | 12.18 | 12.16 |* |53154.4451 | | 0.3492231 | | |80483 GSC | NL80_3 +401296 |V1296 Her |174903.1+230746 |BY | 11.42 | 11.72 | |V | | | 16.835 | | |80001 GSC | NL80_3 +401297 |V1297 Her |174947.0+335059 |BY | 10.90 |( 0.08 *)| |V | | | 1.3479 | | |80021 GSC | NL80_3 +401298 |V1298 Her |174951.7+232807 |EA | 9.75 | 10.08 | 9.94 |V |54547.9068 | | 2.14469 |07 |F8 |80001 DM | NL80_3 +401299 |V1299 Her *|175041.6+482717 |LB | 11.35 | 11.73 | |* | | | | | |80070 80070| NL80_3 +401300 |V1300 Her |175123.4+374306 |EW | 12.62 | 12.93 | 12.90 |* |54246.89 | | 0.2963337 | | |80001 GSC | NL80_3 +401301 |V1301 Her |175134.0+414127 |BY | 9.97 |( 0.07 *)| |V | | | 9.3576 | |KO |80021 GSC | NL80_3 +401302 |V1302 Her *|175239.1+434929 |EW | 12.0 | 13.0 | 13.0 |* |54610.347 | | 0.3162897 | | |80001 GSC | NL80_3 +401303 |V1303 Her |175239.9+483702 |RRAB | 13.0 | 14.1 | |B |54922.99 | | 0.5902854 |17 | |80001 80487| NL80_3 +401304 |V1304 Her *|175242.7+232729 |BY: | 10.00 | 10.15 | |V | | | 1.5451 | | |80001 GSC | NL80_3 +401305 |V1305 Her |175249.1+244516 |RRC | 12.05 | 12.75 | |V |52710.603 | | 0.291369 |35 | |80002 GSC | NL80_3 +401306 |V1306 Her |175308.1+423439 |EW | 11.30 | 11.97 | 11.94 |* |53121.5547 | | 0.370365 | | |80483 GSC | NL80_3 +401307 |V1307 Her |175319.1+213030 |BY | 10.7 | 11.0 | |V | | | 10.7768 | | |80021 GSC | NL80_3 +401308 |V1308 Her |175447.0+321335 |BY | 9.55 | 9.75 | |* | | | 1.10962 | | |80067 80067| NL80_3 +401309 |V1309 Her |175535.8+434820 |EW | 12.30 | 12.75 | 12.73 |* |53229.5522 | | 0.369881 | | |80483 GSC | NL80_3 +401310 |V1310 Her |175540.6+372516 |EA/RS | 12.45 | 13.45 | 12.93 |* |54007.66 | | 3.120829 |13 | |80001 GSC | NL80_3 +401311 |V1311 Her |175659.6+294715 |SRB | 11.13 | 11.43 | |* | | | 44. | | |80001 GSC | NL80_3 +401312 |V1312 Her |175711.4+224706 |BY | 11.74 |( 0.09 *)| |V | | | 1.8139 | |K7 |80021 GSC | NL80_3 +401313 |V1313 Her |175718.9+313316 |BY: | 10.79 |( 0.19 *)| |V | | | 0.6981 | | |80021 GSC | NL80_3 +401314 |V1314 Her *|175900.4+394933 |RRAB | 14.1 | 15.3 | |* |54276.84 | | 0.5542029 |09 | |80001 80168| NL80_3 +401315 |V1315 Her |180025.6+401104 |EW | 12.85 | 13.20 | 13.15 |* |53299.5392 | | 0.358362 | | |80448 GSC | NL80_3 +401316 |V1316 Her |180057.1+473822 |RRC | 12.74 | 13.19 | |* |51611.89 | | 0.28025 |35 | |80026 GSC | NL80_3 +401317 |V1317 Her |180100.5+233945 |BY | 10.41 | 10.60 | |V | | | 14.4080 | |K0 |80002 GSC | NL80_3 +401318 |V1318 Her |180121.2+225038 |RRAB | 12.2 | 13.1 | |V |53079.9058 | | 0.583400 |20 | |80002 GSC | NL80_3 +401319 |V1319 Her |180147.3+273910 |BY | 10.22 | 10.42 | |* | | | 6.15 | |G0 |80001 GSC | NL80_3 +401320 |V1320 Her |180207.5+183044 |EA/RS | 11.38 | 11.55 | |V |54574.867 | | 0.547693 |09 | |80001 GSC | NL80_3 +401321 |V1321 Her |180213.9+470112 |EW | 10.68 | 10.94 | 10.87 |* |51291.8086 | | 0.29437 | | |80001 GSC | NL80_3 +401322 |V1322 Her |180238.8+335635 |BY | 9.62 |( 0.05 *)| |V | | | 7.4245 | |G5 |80021 GSC | NL80_3 +401323 |V1323 Her *|180339.7+401220 |XM | 17.1 |( 0.9 *)| |R | | | 0.0175985 | | |80255 80255| NL80_3 +401324 |V1324 Her |180426.6+393047 |BY | 11.84 |( 0.11 *)| |V | | | 1.5451 | | |80021 GSC | NL80_3 +401325 |V1325 Her |180500.8+415647 |GDOR | 6.64 |( 0.02 )| |B | | | 0.4210 | |F0V |80289 HIP | NL80_3 +401326 |V1326 Her |180525.0+175730 |BY | 11.45 |( 0.13 *)| |V | | | 27.1661 | | |80021 GSC | NL80_3 +401327 |V1327 Her |180615.7+280108 |EW | 12.74 | 13.15 | 13.04 |V |52906.674 | | 0.6600655 | | |80493 GSC | NL80_3 +401328 |V1328 Her |180853.5+370707 |BY | 11.87 |( 0.18 *)| |V | | | 8.3429 | | |80021 GSC | NL80_3 +401329 |V1329 Her |180859.3+454910 |BY | 14.37 |( 0.35 *)| |V | | | 6.0582 | | |80021 GSC | NL80_3 +401330 |V1330 Her |180921.7+364516 |RRC | 12.00 | 12.41 | |* |51330.70 | | 0.27026 |33 | |80026 GSC | NL80_3 +401331 |V1331 Her |180921.8+381706 |EA | 10.3 | 10.7 | 10.6 |* |51389.62 | | 3.5627 |08 |A0 |80104 80104| NL80_3 +401332 |V1332 Her |181048.8+171230 |RRAB | 12.3 | 13.4 | |V |53632.5602 | | 0.52235 |25 | |80001 GSC | NL80_3 +401333 |V1333 Her |181058.2+491053 |EW | 13.27 | 13.82 | 13.69 |* |53600.4877 | | 0.317594 | | |80172 GSC | NL80_3 +401334 |V1334 Her |181306.6+260152 |BY | 12.77 |( 0.09 *)| |V | | | 2.2838 | |M4 |80021 GSC | NL80_3 +401335 |V1335 Her |181443.1+300942 |EW | 14.1 | 14.6 | 14.5 |* |51380.557 | | 0.59428 | | |80085 80085| NL80_3 +401336 |V1336 Her |182131.6+233431 |BY | 11.51 |( 0.07 *)| |V | | | 1.0945 | |K0 |80021 GSC | NL80_3 +401337 |V1337 Her |182319.1+241616 |BY | 12.6 | 12.9 | |* | | | 33.861 | | |80370 80370| NL80_3 +401338 |V1338 Her |182439.1+121143 |EW | 14.90 | 15.35 | 15.30 |* |54608.9220 | | 0.38467 | | |80506 80506| NL80_3 +401339 |V1339 Her |182444.5+120537 |RRAB | 15.80 | 16.90 | |* |54608.9035 | | 0.55129 |13 | |80506 80506| NL80_3 +401340 |V1340 Her |182447.9+121116 |EW | 13.20 | 13.50 | 13.45 |* |54619.7449 | | 0.4189 | | |80506 80506| NL80_3 +401341 |V1341 Her |182518.0+122834 |EW | 15.65 | 16.10 | 16.0 |* |54607.9178 | | 0.58353 | | |80506 80506| NL80_3 +401342 |V1342 Her |182537.0+122552 |LB | 12.80 | 13.30 | |* | | | | | |80506 80506| NL80_3 +401343 |V1343 Her |182555.2+145758 |LPB: | 6.48 | 6.52 | |U*| | | 0.47057 | |B9V |80112 HIP | NL80_3 +401344 |V1344 Her *|182718.4+190833 |EA | 11.47 | 12.06 | 12.06 : |V |53500.775 | | 7.14594 |09 |G0 |80002 GSC | NL80_3 +401345 |V1345 Her |182736.7+123207 |EA | 14.60 | 16.20 | 14.90 |* |54649.6647 | | 0.78056 |19 | |80506 80506| NL80_3 +401346 |V1346 Her |182827.1+123014 |EB | 13.30 | 13.65 | 13.55 |* |54653.6432 | | 0.7907 | | |80506 80506| NL80_3 +401347 |V1347 Her |182842.4+123429 |EB | 13.25 | 13.65 | 13.60 |* |54615.8360 | | 0.86027 | | |80506 80506| NL80_3 +401348 |V1348 Her |182913.8+210418 |RRAB | 11.1 | 12.1 | |V |54702.5244 | | 0.59108 |15 | |80001 GSC | NL80_3 +401349 |V1349 Her |182945.3+215826 |LB | 12.5 | 13.1 | |* | | | | | |80062 GSC | NL80_3 +401350 |V1350 Her |183344.7+225522 |BY | 12.1 | 12.3 | |* | | | 7.282 | | |80043 80043| NL80_3 +401351 |V1351 Her |183512.8+185502 |EA | 10.60 | 10.98 | 10.92 |V |51403.882 | | 4.59618 |08 |F2 |80042 DM | NL80_3 +401352 |V1352 Her |183647.0+171848 |RV: | 12.45 | 13.0 | |* |51328.757 | | 86.0 | | |80001 GSC | NL80_3 +401353 |V1353 Her |183812.2+222430 |EA | 11.46 | 12.16 | 11.84 |V |52747.884 | | 5.5598 |20 | |80042 GSC | NL80_3 +401354 |V1354 Her |183825.3+185838 |LB | 11.7 | 12.4 | |V | | | | | |80062 GSC | NL80_3 +401355 |V1355 Her |183849.8+244416 |EW | 11.65 | 11.9 | 11.9 |V |52729.1 | | 0.289274 | | |80002 GSC | NL80_3 +401356 |V1356 Her |184302.3+135636 |LB | 12.7 | 13.6 | |* | | | | | |80062 USNO | NL80_3 +401357 |V1357 Her |184330.1+224448 |SRD | 10.32 | 10.46 | |V |53894.7 | | 52.9 | |K2 |80001 GSC | NL80_3 +401358 |V1358 Her |184337.3+224344 |SRB | 12.0 | 12.4 | |* | | | 44.7 | | |80001 GSC | NL80_3 +401359 |V1359 Her |185217.4+170032 |EA: | 12.38 | 13.08 | 12.68 |V |53130.770 | | 7.6706 |17 | |80042 GSC | NL80_3 +401360 |V1360 Her |185509.2+180858 |EA | 12.80 | 13.84 | 13.53 |V |51362.705 | | 1.41924 |10 | |80042 GSC | NL80_3 +409001 |alf Her *|171438.9+142325 |SRC | 2.74 | 4.0 | |V | | | | |M5Ib-II | 08953| +409003 |gam Her |162155.2+190911 |SRD: | 4.02 |( 0.09 )| |B | | | | | |71140 BD | +409009 |iot Her |173927.9+460023 |BCEP | 2.93 |( 0.02 )| |U | | | | | |69161 BD | +409013 |nu. Her *|175830.1+301121 |SRD: | 4.38 | 4.48 | |V | | | 29. : | |F2II |04044 BD | +409014 |ksi Her |175745.9+291452 |SRD | 3.85 | 3.88 | |Hp| | | | | |HIP HIP | +409015 |omi Her *|180732.5+284545 |GCAS | 3.80 |( 0.07 )| |B | | | | |B9Ve | BD | +409016 |phi Her *|160846.2+445606 |ACV: | 4.22 | 4.23 | |Hp| | | | | |HIP HIP | +409019 |tau Her |161944.4+461848 |LPB | 3.83 | 3.86 | |Hp| | | | | |HIP HIP | +409024 |ome Her *|162524.9+140200 |ACV | 4.57 |( 0.08 )| |V |41254.70 | | 2.951 | |B9p(Cr-Mn-Sr) |07805 BD | +409107 |g Her *|162838.5+415254 |SRB | 4.3 | 6.3 | |V | | | 89.2 | |M6III | 00002| +409121 |u. Her *|171719.6+330600 |EA/SD | 4.69 | 5.37 | 4.93 |V |05830.0326 | | 2.0510270 |28 *|B1.5Vp+B5III |05684 08953| +410001 |R Hor *|025352.8-495323 |M | 4.7 | 14.3 | |V |41494. | | 407.6 |40 |M5e-M8eII-III |00001 00002| +410002 |S Hor |022516.0-593413 |M | 10. |< 13. | |p |16854. | | 335.8 | |M7II:e |00001 05464| +410003 |T Hor |030052.1-503832 |M | 7.2 | 13.7 | |V |41957. | | 217.60 |48 |M5IIe |00001 00002| +410004 |U Hor |035247.0-454948 |M | 7.8 |< 15.1 | |p |34638. | | 348.4 | |M6IIIe |00001 05625| +410005 |V Hor *|030328.4-585559 |SRB | 8.7 | 9.8 | |p | | | | |M5III |01486 03389| +410006 |W Hor |024414.8-541804 |SRB | 10.7 | 11.6 | |p | | | 137. |40 : |MC |01486 CoD | +410007 |X Hor *|024745.0-590304 |SRA | 10.3 | 12.4 | |p |30063. | | 279.6 | |M6-8e |00001 03389| +410008 |Y Hor |023647.5-512905 |CST: | 12. | | |p | | | | | |00016 06286| +410009 |Z Hor |025108.7-523545 |CST | 13. | | |p | | | | | |00016 GSC | +410010 |RR Hor |034013.1-524346 |CST | 10.0 | | |p | | | | |G |00016 CoD | +410011 |RS Hor |023552.2-623501 |M | 9.8 |< 15.0 | |p |30100. | | 202.85 | |M3e |01486 06286| +410012 |RT Hor |032843.8-555845 |M | 10.0 |< 14.0 | |p |28104. | | 335. | |M5e |00016 02338| +410013 |RU Hor |024607.5-633546 |UGSS | 13.9 | 17.5 : | |p | | |( 25. :) | | |05386 08852| +410014 |RV Hor |025020.5-641541 |RR | 12.9 | 14.5 | |p |27425.40 | | 0.57247 | | |00357 02380| +410015 |RW Hor |025558.9-642733 |RR | 14.9 | 15.9 | |p |27422.36 | | 0.300939 | | |00357 06286| +410016 |RX Hor |025733.5-594618 |RR | 13.5 | 14.8 | |p |27425.30 | | 0.68800 | | |00357 06286| +410017 |RY Hor |025943.9-640517 |RR | 14.4 | 16.0 | |p |27477.30 | | 0.59396 | | |00357 06286| +410018 |RZ Hor |030524.3-664103 |E | 11.2 | 13.5 | |p |26715.0 | | 3.3402 | | |00357 06286| +410019 |SS Hor |030850.5-571134 |RR | 13.0 | 15.0 | |p |27443.276 | | 0.73844 | | |00357 06286| +410020 |ST Hor |030942.9-644232 |LB | 13.0 | 14.3 | |p | | | | | |00357 06286| +410021 |SU Hor |031140.8-580356 |RR | 13.0 | 15.0 | |p |27425.28 | | 0.46972 | | |00357 06286| +410022 |SV Hor |031242.9-652402 |RR | 14.4 | 15.2 | |p |27425.30 | | 0.548932 | | |00357 06286| +410023 |SW Hor |023835.0-540803 |M | 11. |< 13. | |p | | | | | |00085 02380| +410024 |SX Hor |023010.5-650613 |SR | 12. | 13. | |p | | | | |M5e |00085 04256| +410025 |SY Hor *|041418.4-462657 |EW/KW | 11.4 | 12.1 | 12.0 |V |34243.382 | | 0.3116392 | | |00080 02380| +410026 |SZ Hor *|030701.2-560805 |EW/KW | 10.4 : | 10.8 : | 10.7 : |p |28048.610 | | 0.4804562 | | |05433 CPD | +410027 |TT Hor |032704.4-455257 |EA | 9.8 | 10.5 | |p |28761.512 | | 2.6081127 |15 *| |07806 06286| +410028 |TU Hor *|033037.0-472231 |ELL | 5.90 | 6.04 | 6.03 |V |43055.620 | | 0.935971 | |A2V+K |04429 CoD | +410029 |TV Hor |023015.6-574834 |SRB | 6.74 | 6.89 | |V | | | 30. : | |M4-5III |06351 CoD | +410030 |TW Hor |031233.2-571918 |SRB | 5.52 | 5.95 | |V | | | 158. : | |C7,2(N0) |07296 CoD | +410031 |TX Hor |040411.8-455015 |M | 13.0 | 15.8 | |p |26244. | | 287.37 |45 | |07806 02380| +410032 |TY Hor *|022148.1-630502 |M: | 10.5 | 13. | |p | | | | | |00085 06031| +410033 |TZ Hor |022526.4-662939 |LB: | 6.41 |( 0.11 )| |V | | | | |M5III |04614 CPD | +410034 |UU Hor *|031825.4-493602 |RRAB | 12.1 | 12.9 | |p |24722.571 | | 0.6436812 |17 | |07806 07806| +410035 |UV Hor |032347.5-480120 |RRAB | 12.9 | 14.3 | |p |24800.467 | | 0.56466857 |17 | |07806 07806| +410036 |UW Hor |032429.3-485659 |RRAB | 12.7 | 13.4 | |p |30200.634 | | 0.6621484 |20 | |07806 07806| +410037 |UX Hor *|032753.9-515244 |EW | 14.0 | 14.4 | 14.4 |p |30585.587 | | 0.712760 | | |07806 07806| +410038 |UY Hor |033103.1-452403 |RRAB | 14.2 | 15.1 | |p |26566.625 | | 0.6496638 |14 | |07806 07806| +410039 |UZ Hor *|033141.1-522040 |RRC | 13.9 | 14.6 | |p |31062.505 | | 0.3381547 |40 | |07806 07806| +410040 |VV Hor |033404.3-471841 |SRA | 13.6 | 15.0 | |p |30610. | | 182.6 | | |07806 07806| +410041 |VW Hor |034520.0-472321 |SRB | 12.7 | 13.6 | |p |30217. | | 102.76 | | |07806 07806| +410042 |VX Hor |041137.4-443801 |DSCT: | 9.4 | 9.61 | |V | | | | |F5-6V |05945 CoD | +410043 |VY Hor *|034329.0-454904 |ZZA | 15.03 |( 0.18 )| |V | | | | |DA |07965 GSC | +410044 |VZ Hor |025153.0-613705 |BY | 8.75 | 8.88 | |V | | | | | |68135 CPD | +410045 |WW Hor |023611.4-521914 |E+XM | 18.4 |< 23. | |B | | | | | |69163 69164| +410046 |WX Hor |034935.8-520448 |SRA | 7.14 | 7.88 | |V | | | | | |71030 71230| +410047 |WY Hor |023401.1-653634 |EW | 9.55 | 9.70 | |Hp| | | | | |HIP HIP | +410048 |WZ Hor |024801.1-625751 |EA: | 8.14 | 8.46 | |Hp| | | | | |HIP HIP | +410049 |XX Hor |024826.4-602453 |LB: | 8.99 | 9.09 | |Hp| | | | | |HIP HIP | +410050 |XY Hor |024940.9-524531 |SRB | 7.72 | 7.98 | |Hp| | | | | |HIP HIP | +410051 |XZ Hor |025452.7-515713 |LB: | 8.73 | 8.91 | |Hp| | | | | |HIP HIP | +410052 |YY Hor |030336.5-653143 |SRB | 8.00 | 8.18 | |Hp| | | | | |HIP HIP | +410053 |YZ Hor |030922.1-485746 |ACV: | 8.16 | 8.30 | |Hp| | | | | |HIP HIP | +410054 |ZZ Hor |031544.4-453227 |LB: | 9.01 | 9.11 | |Hp| | | | | |HIP HIP | +410055 |AA Hor |031737.2-461206 |LB: | 8.69 | 8.79 | |Hp| | | | | |HIP HIP | +410056 |AB Hor |032302.9-513317 |LB: | 8.11 | 8.22 | |Hp| | | | | |HIP HIP | +410057 |AC Hor |032659.3-533351 |LB: | 9.02 | 9.19 | |Hp| | | | | |HIP HIP | +410058 |AD Hor |033549.8-434259 |DSCTC | 7.03 | 7.11 | |Hp| | | | | |HIP HIP | +410059 |AE Hor |040906.7-482834 |EA | 8.56 | 8.87 | |Hp| | | | | |HIP HIP | +410060 |AF Hor |024147.1-525930 |UV | 11.8 |( 4.0 U )| |V | | | | | |75099 GSC | +410061 |AG Hor |030521.3-521805 |SRB | 9.9 | 11.0 | |V | | | 142. | |Me |79100 DM | +410062 |AH Hor |035214.4-490418 |SRB | 8.9 | 9.7 | |V | | | 73. | | |79100 DM | +410063 |AI Hor |030747.8-623407 |RRAB | 14.0 | 14.7 | |V |51215.67 | | 0.60217 |16 | |80135 GSC | NL80_1 +410064 |AK Hor |031508.7-514410 |E/RS | 9.54 | 9.76 | |V |53699.635 | | 21.4105 | |K1 |80138 DM | NL80_1 +420001 |R Hya *|132942.8-231653 |M | 3.5 | 10.9 | |V |43596. | | 388.87 |49 |M6e-M9eS(Tc) |00001 00002| +420002 |S Hya |085334.0+030407 |M | 7.2 | 13.3 | |V |43509. | | 256.63 |49 |M4e-M8.0e |00001 00002| +420003 |T Hya *|085539.8-090829 |M | 6.7 | 13.48 | |V |41975. | | 298.7 |49 |M3e-M9:e |00001 00002| +420004 |U Hya |103733.3-132304 |SRB | 7.0 | 9.4 | |B | | | 450. : | |C6.5,3(N2)(Tc) |03610 03610| +420005 |V Hya *|105137.3-211500 |SRA | 10.9 | 16. | |p |30920. | | 530.7 |50 |C6,3e-C7,5e(N6e) |09247 00002| +420006 |W Hya *|134902.0-282204 |SRA | 7.7 | 11.6 | |p |43271. | | 361. |50 |M7.5e-M9ep |00001 08953| +420007 |X Hya *|093530.3-144129 |M | 7.2 | 13.6 | |V |41060. | | 301.10 |42 |M7e-M8.5e |00001 00002| +420008 |Y Hya *|095103.7-230102 |SRB | 8.3 | 12.0 | |p | | | 302.8 | |C5,4(N3p) |00693 05151| +420009 |Z Hya |114739.3-331636 |SRB | 8.8 | 9.8 | |V | | | 75. : | | |00066 00546| +420010 |RR Hya *|094459.0-240116 |M | 8.6 | 14.5 | |V |39212. | | 343.49 |50 |M3.0e-M8e |00001 00002| +420011 |RS Hya *|105119.1-283741 |M | 9.2 | 14.4 | |V |39169. | | 338.6 |45 |M6e |00001 00002| +420012 |RT Hya *|082941.1-061908 |SRB | 7.0 | 10.2 | |V | | | 290. |46 |M6e-M8e |03616 00002| +420013 |RU Hya *|141134.4-285307 |M | 7.2 | 14.3 | |V |43162. | | 331.5 |35 |M6e-M8.8e |00001 00002| +420014 |RV Hya |083943.8-093513 |SRC | 8.7 | 10.0 | |p | | | 116. | |M5II |00374 08953| +420015 |RW Hya *|133418.1-252249 |ZAND | 10.0 | 11.2 | |p |19128. | | 370. | |M2epIII |09253 08953| +420016 |RX Hya *|090541.2-081540 |EA/SD | 8.9 | 11.6 |( 0.05 )|V |43447.700 | | 2.2816450 |13 |A8 |09254 00462| +420017 |RY Hya |082006.3+024556 |SRB | 12.2 | 15. | |p | | | 529. | |C6,4e(Nb) |00374 BD | +420018 |RZ Hya |092450.3-064735 |M | 9.2 |< 12.5 | |V |39860. | | 332.54 | |M4e-M5 |00001 00583| +420019 |SS Hya *|133029.5-233858 |EA: | 7.88 | 8.1 | |B | | | | |B9 |00018 BD | +420020 |ST Hya |093751.8-203914 |M | 8.8 | 14.4 | |V |40282. | | 304.75 | |Me |00001 02452| +420021 |SU Hya *|095343.3-215042 |SRB | 10.6 | 11.9 | |p | | | 95. : | |M4III: |00693 BD | +420022 |SV Hya *|123030.5-260251 |RRAB | 9.78 | 11.00 | |V |39318.319 | | 0.47854395 |15 |F0-F8 |00001 01786| +420023 |SW Hya |130320.4-290611 |M | 9.8 |< 13.0 | |p |29302. | | 218.8 | |M2e |00001 06286| +420024 |SX Hya *|134437.4-264648 |EA/SD | 8.6 | 12.6 | |p |44344.451 | | 2.895737 |11 |A3+K5: |00001 08953| +420025 |SY Hya *|082951.7-092358 |EA/SD | 10.7 |< 13.6 | |p |32216.356 | | 3.40292 | |A |00001 08543| +420026 |SZ Hya *|091348.8-091909 |RRAB | 10.44 | 11.84 | |V |40679.412 | | 0.53724022 |15 |A7 |06557 00182| +420027 |TT Hya *|111312.5-262754 |EA/SD | 7.25 | 9.02 | 7.32 |V |43918.1060 | | 6.95342913 |11 |A5IIIe+G5IV |09127 03628| +420028 |TU Hya *|085816.4-004953 |M | 10.5 | 15.8 | |p |42476. | | 277.3 | |M5e |00001 01787| +420029 |TV Hya |133710.6-233658 |E: | 8.0 | 8.2 | |p | | | | |A3 |00018 BD | +420030 |TW Hya |110151.9-344217 |S: | 10.5 | 12.2 | |p | | | | | |00016 HIP | +420031 |TX Hya |092348.1-020529 |CST: | 9.8 | | |p | | | | |A1 |01437 BD | +420032 |TY Hya *|092902.4+053428 |EA/SD | 10.5 | 13.5 | |p |34478.464 | | 4.661078 |10 |A0 |08712 06286| +420033 |TZ Hya |093139.9+035421 |SR: | 11.8 | 13.5 | |p | | | | |M |00351 00351| +420034 |UU Hya *|093629.7+040640 |RRAB | 11.79 | 12.73 | |V |39478.934 | | 0.5238684 |14 |A0-A9 |07032 02455| +420035 |UV Hya |093815.3+044537 |RR: | 13.3 | 14.0 | |p | | | | |A2hb |07364 06286| +420036 |UW Hya *|084203.7+023753 |EA | 13.3 | 14.0 | 13.8 : |p |30077.344 | | 3.166316 |07 *| |04027 00531| +420037 |UX Hya |084233.0+062120 |M | 13.5 |< 16. | |p |26686. | | 262. | | |01790 00531| +420038 |UY Hya *|090028.5+023451 |EW: | 13.3 | 13.8 | 13.8 |p |25984.597 | | 0.727500 | | |04027 00531| +420039 |UZ Hya |091646.2-043513 |M | 8.8 | 14.5 | |V |42527. | | 260.95 |50 |M4e |00001 00132| +420040 |VV Hya *|091114.5-092206 |M | 10.4 |< 16. | |p |40309. | | 149.1 | |Me |00001 00975| +420041 |VW Hya |083351.0-143954 |EA/SD | 10.5 | 14.1 | |V |26421.430 | | 2.696423 |12 |A0 |00001 00132| +420042 |VX Hya *|094546.9-120014 |DSCT: | 10.21 | 10.96 | |V | | | 0.2233889 | |F2Ib-F8 |03630 00975| +420043 |VY Hya *|102016.0-230905 |EA/SD | 9.0 | 11.3 | 9.1 |p |23535.601 | | 2.00119519 |09 |A3 |00007 08953| +420044 |VZ Hya *|083141.4-061908 |EA/DM | 8.96 | 9.68 | 9.46 |V |40254.8607 | | 2.9042998 |07 *|F5V+F5V |05691 08953| +420045 |WW Hya |085746.4-031655 |M | 10.5 |< 15. | |p |42446. | | 310.77 | | |00001 00464| +420046 |WX Hya |091326.8-142310 |M | 9.5 |< 12.5 | |V |39914. | | 235.78 | |M3e |00001 00464| +420047 |WY Hya *|081410.9+002944 |EW/KE | 10.4 | 11.2 | 11.2 |p |40570.9755 | | 0.7160065 | |A6+A6 |00001 00491| +420048 |WZ Hya *|101324.1-130817 |RRAB | 10.27 | 11.28 | |V |39627.363 | | 0.537715 |16 |A2 |05233 06286| +420049 |XX Hya *|090949.5-153559 |RRAB | 11.24 | 12.49 | |V |39832.011 | | 0.50776718 |12 | |00001 00975| +420050 |XY Hya |092243.0-241622 |SR | 12.0 | 13.2 | |p | | | | | |01353 06286| +420051 |XZ Hya *|092523.7-221016 |EB | 14.7 | 15.6 | 15.0 |p |25617.50 | | 0.6262829 | | |00001 06286| +420052 |YY Hya |092620.6-222339 |RR | 13.5 | 14.7 | |p |26382.50 | | 0.33479 | | |01353 06286| +420053 |YZ Hya |092730.2-214557 |RR | 14.3 | 16.0 | |p |26411.40 | | 0.598154 | | |01353 06286| +420054 |ZZ Hya |092905.8-205504 |EW/KW | 14.3 | 14.9 | |p |26382.55 | | 0.359536 | | |01353 06286| +420055 |AA Hya |092945.5-215132 |RR | 13.8 | 15.6 | |p |26382.35 | | 0.52231 | | |01353 06286| +420056 |AB Hya |093330.5-221628 |M | 13.2 |< 16.0 | |p |26685. | | 420. | | |01353 06286| +420057 |AC Hya |093806.0-223041 |RR | 14.0 | 15.5 | |p |26411.45 | | 0.59774 | | |01353 06286| +420058 |AD Hya |094406.4-224723 |SR | 13.8 | 14.9 | |p | | | 200. : | | |01353 06286| +420059 |AE Hya *|094504.9-230238 |EW/KW | 13.9 | 14.8 | 14.6 |p |26382.35 | | 0.3928865 | | |00001 06286| +420060 |AF Hya *|094803.3-231209 |EW | 12.8 | 13.8 | 13.8 |p |26382.45 | | 0.5761128 | | |00001 06286| +420061 |AG Hya |095029.8-234517 |UGSU: | 14.3 |< 16.5 | |p | | |( 16. :) | | |05386 08852| +420062 |AH Hya |095220.5-245013 |SR | 13.7 | 16.0 | |p | | | 110. : | | |01353 06286| +420063 |AI Hya *|081847.5+001701 |EA+DSCTC | 9.35 | 9.94 | 9.84 |V |41726.3872 | | 8.289676 |10 |F0+F5 |08051 07164| +420064 |AK Hya |083953.5-171811 |SRB | 6.33 | 6.91 | |V | | |( 75. :) | |M4III |08837 08953| +420065 |AL Hya |091446.2+024817 |E/SD | 11. |< 13. | |V |28544.90 | | 4.02630 | |A7 |01240 06286| +420066 |AM Hya |091858.7-215243 |I | 12.7 | 13.5 | |p | | | | | |01353 06286| +420067 |AN Hya |091930.7-205302 |I | 13.4 | 14.2 | |p | | | | | |01353 06286| +420068 |AO Hya |092042.5-241552 |I | 11.5 | 12.5 | |p | | | | | |01353 06286| +420069 |AP Hya |092415.0-215212 |I | 12.5 | 13.6 | |p | | | | | |01353 06286| +420070 |AQ Hya |092512.6-230824 |I | 12.8 | 14.0 | |p | | | | | |01353 06286| +420071 |AR Hya |092553.6-234549 |LB | 10.9 | 11.9 | |p | | | | |M4 |01353 06286| +420072 |AS Hya |093046.8-185614 |EA | 10.5 |< 12. | |p |25651.0 | | 15.99 : | | |00190 00190| +420073 |AT Hya |093101.7-230900 |I: | 12.8 | 13.4 | |p | | | | | |01353 06286| +420074 |AU Hya |093123.0-222533 |I | 11.6 | 13.0 | |p | | | | | |01353 06286| +420075 |AV Hya *|093502.5+051924 |EB/KE | 10.2 | 10.77 | 10.35 |V |36673.376 | | 0.6834062 | |A1 |09260 00196| +420076 |AW Hya |093702.6-233908 |LB: | 13.6 | 14.1 | |p | | | | | |01353 06286| +420077 |AX Hya |093940.6-233542 |IS: | 12.6 | 13.2 | |p | | | | | |01353 06286| +420078 |AY Hya |094329.1-225741 |LB | 12.2 | 12.8 | |p | | | | | |01353 06286| +420079 |AZ Hya |094536.3-235350 |LB | 12.0 | 13.3 | |p | | | | |M6 |01353 06286| +420080 |BB Hya |094956.2-221412 |I | 12.8 | 13.8 | |p | | | | | |01353 06286| +420081 |BC Hya |094956.0-224939 |E | 11.2 | 12.0 | |p | | | | | |01353 06286| +420082 |BD Hya |111611.8-301051 |SRA | 10.4 | 12.2 | |p |27900. | | 117.4 |45 |M0e |00076 06286| +420083 |BE Hya |105927.5-311855 |SR | 13.4 | 14.3 | |p | | | | | |00076 06286| +420084 |BF Hya |110141.1-325009 |M | 12.0 | 15.5 | |p |27900. | | 294. | |Me |00076 06286| +420085 |BG Hya |110241.4-323536 |M | 12.4 |< 16.5 | |p |28300. | | 262. | |Me |00076 UCAC2| +420086 |BH Hya |110916.8-333711 |M | 11.5 | 15.5 | |p |27850. | | 211. | |Me |00076 USNO | +420087 |BI Hya |111148.2-322254 |RR | 11.3 | 12.2 | |p |27901.260 | | 0.526464 | | |00076 06286| +420088 |BK Hya |112003.1-351524 |LB | 10.4 | 11.4 | |p | | | | |K5 |00076 06286| +420089 |BL Hya |122532.4-311904 |M | 12.5 | 16.5 | |p | | | 146. | | |00078 06286| +420090 |BM Hya |122624.9-280346 |RR | 14.3 | 15.0 | |p | | | 0.610 | | |00078 06286| +420091 |BN Hya |122716.7-290504 |RRC | 14.0 | 15.0 | |p |39254.296 | | 0.36977635 |43 | |08014 08014| +420092 |BO Hya |122821.7-331948 |RR | 14.8 | 16.0 | |p | | | 0.602 | | |00078 06286| +420093 |BP Hya |122942.3-322219 |RR | 15.0 | 15.8 | |p | | | 0.366 | | |00078 06286| +420094 |BQ Hya |123050.4-304732 |RRAB | 14.5 | 15.8 | |V |43190.543 | | 0.652370 |07 | |06577 06286| +420095 |BR Hya |123104.0-304352 |RRAB | 14.6 | 15.8 | |V |42815.560 | | 0.405186 |25 | |06577 06286| +420096 |BS Hya |123109.3-314342 |RRAB | 15.1 | 16.2 | |V |42815.527 | | 0.44775 |14 | |06577 06286| +420097 |BT Hya |123335.1-324736 |RR | 14.5 | 15.5 | |p | | | 0.62 | | |00078 06286| +420098 |BU Hya |123412.6-302934 |RRAB | 15.1 | 16.2 | |V |43933.448 | | 0.476789 |10 | |06577 06286| +420099 |BV Hya |123435.3-300546 |RRAB | 14.8 | 15.6 | |V |42817.505 | | 0.42663 |10 | |06577 06286| +420100 |BW Hya |123728.8-295612 |RRAB | 13.1 | 14.7 | |V |42928.303 | | 0.476964 |20 | |06577 06286| +420101 |BX Hya |123755.0-284932 |RRAB | 14.7 | 15.6 | |V |42894.363 | | 0.48838 |17 | |06577 06286| +420102 |BY Hya |123842.7-291327 |RRAB | 13.6 | 14.8 | |V |43189.513 | | 0.437104 |14 | |06577 06286| +420103 |BZ Hya |123921.0-322122 |RR | 14.5 | 16.0 | |p | | | 0.562 | | |00078 06286| +420104 |CC Hya |123950.6-330358 |RR | 14.7 | 15.7 | |p | | | 0.45 | | |00078 06286| +420105 |CD Hya |124010.0-311731 |RR | 15.3 | 16.3 | |V |42817.530 | | 0.32302 |24 | |06577 06286| +420106 |CE Hya |124052.0-291955 |SRA | 12.4 | 13.4 | |V |42910. | | 167.2 |50 : | |06577 06286| +420107 |CF Hya |124258.2-285606 |RRC | 13.5 | 14.4 | |V |42817.530 | | 0.371183 |28 | |06577 06286| +420108 |CG Hya |124323.9-290242 |RRC | 15.2 | 16.0 | |V |42832.507 | | 0.254443 |37 | |06577 06286| +420109 |CH Hya *|124406.3-291544 |EW/KW | 14.5 | 15.5 | 15.5 |V |43190.564 | | 0.346546 | | |06577 06286| +420110 |CI Hya |124431.9-273907 |RR | 13.8 | 15.3 | |p |27868.52 | | 0.577810 | | |00078 06286| +420111 |CK Hya |125023.6-292621 |RR | 14.5 | 15.4 | |p | | | 0.69 | | |00078 05464| +420112 |CL Hya |125025.1-282655 |RR | 14.5 | 15.5 | |p | | | 0.53 | | |00078 05464| +420113 |CM Hya |125053.2-295043 |M | 13.0 | 16.0 | |p | | | 295. | |M7 |00078 05464| +420114 |CN Hya |125113.8-294506 |RR | 14.8 | 16.3 | |p | | | 0.576 | | |00078 05464| +420115 |CO Hya *| | | | | | | | | | | | |=V1046 Cen +420116 |CP Hya |125721.4-292916 |RR | 13.3 | 13.8 | |p | | | 0.574 | | |00078 06286| +420117 |CQ Hya |083745.2+022124 |EA/KE | 13.5 | 14. | |p |25298.577 | | 1.1029227 |10 *| |01800 02322| +420118 |CR Hya |084117.6+023037 |RRAB | 13.4 | 15.0 | |p |30372.500 | | 0.469415 |36 : | |04027 02322| +420119 |CS Hya |084442.8+042547 |SR | 12.0 | 13.9 : | |p |26025. | | 174.5 | |M |04027 00531| +420120 |CT Hya |085107.4+030834 |UGSS | 14.1 | 20. : | |p | | |( 151.7 ) | | |04027 08852| +420121 |CU Hya |085420.5+034223 |EA | 13.5 | 14.5 | |p |27155.407 | | 0.7190774 |10 | |00001 02323| +420122 |CV Hya |085439.0+061713 |LB | 11.5 | 13.3 | |p | | | | | |04027 00196| +420123 |CW Hya *|085507.8+033924 |RRAB | 14.1 | 15.3 | |p |30374.570 | | 0.4820734 |17 | |01800 02323| +420124 |CX Hya |090612.8+014101 |SR | 13.1 | 14.3 | |p |25950. | | 188. | | |04027 02323| +420125 |CY Hya |091020.9+052051 |RR | 13. | 14.5 | |p |30052.326 | | 0.57693446 | | |04149 02323| +420126 |CZ Hya |102718.1-253256 |M | 9.7 |< 15.5 | |p |27546. | | 442. | |Ce(Ne) |00001 08953| +420127 |DD Hya *|081231.8+025005 |RRAB | 11.5 | 12.5 | |p |41695.504 | | 0.501776 |12 |A-F |04957 01432| +420128 |DE Hya *|082747.5+053859 |EA/SD | 11. | 14.0 | |V |31149.151 | | 4.227678 |10 |A2 |03115 00279| +420129 |DF Hya *|085502.2+060538 |EW/KW | 11. | 11.5 | 11.5 |p |31138.231 | | 0.3305978 | |G0 |00001 00279| +420130 |DG Hya |085806.3-052626 |RRAB | 11.61 | 12.62 | |V |37016.328 | | 0.429973 |15 |A0 |03635 00190| +420131 |DH Hya *|090014.8-094644 |RRAB | 11.36 | 12.65 | |V |31176.244 | | 0.4889982 |13 |A4-F4 |03634 00464| +420132 |DI Hya |090651.3-123137 |EA | 11. | 12. | |p |31194.131 | | 0.6147132 |28 *|A6: |00279 00279| +420133 |DK Hya *|094453.0-205413 |EB | 10.5 | 11.5 | 10.7 |p |31178.216 | | 0.521951 | | |00001 00279| +420134 |DL Hya |095226.8-233921 |M | 12.3 |< 16.0 | |p |26300. | | 398. | |Me |01353 00190| +420135 |DM Hya *|095413.6-232553 |EA/SD: | 11.9 | 12.6 | |p |31178.367 | | 0.78685 : |23 | |00279 00279| +420136 |DN Hya |114116.7-334233 |M | 11.4 | 14.4 | |p |28190. | | 182.4 | |Me |00066 02385| +420137 |DO Hya |114905.1-335014 |RR | 12.6 | 13.3 | |p |27870.350 | | 0.71331 | | |00066 06286| +420138 |DP Hya |114934.5-340539 |RR | 12.8 | 13.6 | |p |27870.515 | | 0.76224 | | |00066 06286| +420139 |DQ Hya |114956.3-353852 |RR | 12.8 | 13.8 | |p |27869.367 | | 0.41644 | | |00066 06286| +420140 |DR Hya |115212.2-351936 |RR | 13.2 | 14.0 | |p |27958.214 | | 0.66422 | | |00066 06286| +420141 |DS Hya |115351.3-352647 |RR | 14.1 | 15.3 | |p |27891.237 | | 0.58368 | | |00066 06286| +420142 |DT Hya |115400.2-311540 |RR | 11.7 | 12.6 | |p |27900.524 | | 0.56798 | | |00066 06286| +420143 |DU Hya |115458.1-315525 |EA/SD | 11.9 | 14.0 | |p |27891.254 | | 1.66022 | | |00066 06286| +420144 |DV Hya |115624.4-341627 |SRB | 11.2 | 11.8 | |p | | | 107. | |MA |00066 06286| +420145 |DW Hya |115629.7-334125 |RR | 14.1 | 15.1 | |p |27869.350 | | 0.63209 | | |00066 06286| +420146 |DX Hya |115929.1-320711 |EW | 14.2 | 15.1 | |p |27890.570 | | 0.60448 | | |00066 GSC | +420147 |DY Hya |120046.0-335114 |RR | 13.9 | 15.0 | |p |27890.440 | | 0.51561 | | |00066 06286| +420148 |DZ Hya |120127.7-321335 |EA/KE | 11.4 | 11.9 | |p |29015.446 | | 1.08777 | | |00066 06286| +420149 |EE Hya |120227.2-335514 |EA/SD | 14.2 | 15.2 | |p |28714.238 | | 1.60236 | | |00066 06286| +420150 |EF Hya |120227.6-352646 |RR | 14.7 | 15.8 | |p |27870.515 | | 0.67457 | | |00066 06286| +420151 |EG Hya |120359.8-320034 |EW | 12.6 | 13.0 | |p |27889.257 | | 0.61133 | | |00066 06286| +420152 |EH Hya |120451.0-330923 |EW/KW | 14.2 | 15.0 | |p |27870.515 | | 0.29691 | | |00066 06286| +420153 |EI Hya |120536.1-323813 |RR | 13.7 | 14.4 | |p |27890.240 | | 0.59121 | | |00066 06286| +420154 |EK Hya |120848.9-300420 |RR | 12.0 | 12.9 | |p |27890.570 | | 0.72340 | | |00066 06286| +420155 |EL Hya |120942.1-345726 |RRC | 13.3 | 13.8 | |p |27869.384 | | 0.34331 | | |00066 06286| +420156 |EM Hya |123540.0-263942 |RR | 13.0 | 13.7 | |p |29374.269 | | 0.577362 | | |01109 06286| +420157 |EN Hya |123903.3-265517 |RR | 14.8 | 16.0 | |p |29672.570 | | 0.588189 | | |01109 06286| +420158 |EO Hya |124220.7-255309 |M | 12.2 |< 16.0 | |p |29335. | | 291.97 | | |01109 06286| +420159 |EP Hya |125144.0-264645 |M | 10.8 |< 15.5 | |p |29722. | | 166.00 | |Me |00001 06286| +420160 |EQ Hya |125252.7-251838 |RR | 12.8 | 14.2 | |p |29339.337 | | 0.520006 | | |01109 06286| +420161 |ER Hya |125325.3-253638 |E/SD | 13.6 | 14.7 | |p |29723.414 | | 0.651622 | | |01109 06286| +420162 |ES Hya |125647.9-253626 |RR | 13.2 | 14.5 | |p |29339.337 | | 0.677539 | | |01109 06286| +420163 |ET Hya |083504.2-085010 |RRAB | 10.9 | 12.0 | |p |35921.386 | | 0.685519 |12 | |05963 00975| +420164 |EU Hya *|084203.6-064349 |EA/DW | 10.1 | 10.8 | 10.2 |p |34126.335 | | 0.7782085 |14 *|F2 |00001 06558| +420165 |EV Hya |112155.9-321704 |RR | 13.1 | 14.4 | |p | | | | | |00076 GSC | +420166 |EW Hya |124005.7-302818 |M: | 14.0 |< 16.0 | |p | | | 250. : | | |00078 06286| +420167 |EX Hya *|125224.2-291456 |UGSU+E | 9.6 | 13.99 | |V | | | | |pec(UG) |05695 08852| +420168 |EY Hya *|084621.2+013756 |SRA | 9.6 | 12.0 | |p |32707. | | 182.7 | |M7 |04027 08953| +420169 |EZ Hya *|092641.1-134506 |EW/KW | 10.4 | 10.7 | 10.7 |V |42454.6891 | | 0.44975201 | |F9 |09192 BD | +420170 |FF Hya |103751.8-120115 |SRB | 8.2 | 10.3 | |p | | | 85. | |M6 |05828 08953| +420171 |FG Hya *|082703.9+033052 |EW/KW | 9.90 | 10.28 | 10.25 |V |44968.2764 | | 0.327832 | |G0 |00001 00182| +420172 |FH Hya |093401.8-065919 |LB | 10.0 | 10.5 | |p | | | | |K-M |00351 08953| +420173 |FI Hya *|123955.9-264017 |M | 10.2 | 17.4 | |p |33661. | | 324.1 | |M4e(S4,4e) |00001 09268| +420174 |FK Hya |082427.9-083113 |LB | 8.9 | 10.2 | |p | | | | |MB |01792 08953| +420175 |FL Hya |092235.9-160133 |M | 11. |< 13. | |p | | | | | |00132 00132| +420176 |FM Hya |094331.4-183430 |M | 11. | 16.0 | |p |26790. | | 300. : | |Me |00190 00190| +420177 |FN Hya |094627.1-172912 |M | 11.5 |< 12.5 | |p |26750. | | 300. : | | |00190 00190| +420178 |FO Hya |095943.3-190756 |EA/KE | 9.5 | 10. | |p |31216.15 | | 1.159 | | |00279 00279| +420179 |FP Hya |111307.8-283735 |M | 10. | 14.2 | |p | | | | | |01111 01111| +420180 |FQ Hya |135906.8-255144 |M | 11. | 14.3 | |p |36720. | | 355. : | |Me |03122 CoD | +420181 |FR Hya |083836.8-161730 |M | 12. |< 13. | |p |34100. | | 196. : | | |00836 00190| +420182 |FS Hya *|100737.8-164111 |SRB | 9.5 | 11.5 | |p | | | 166.7 | |M |01113 08953| +420183 |FT Hya |135645.1-253243 |M | 10.5 |< 12. | |p |36366. | | 150.7 | |Me |03637 01111| +420184 |FU Hya |143832.0-294327 |M | 10.8 | 13.3 | |p |33395. | | | |Me |01112 04001| +420185 |FV Hya |084309.5+054724 |ISB: | 10.7 | 11.4 | |p | | | | |G8 |03095 03095| +420186 |FW Hya *|110419.8-332647 |EB | 12.2 | 12.5 | 12.4 |V |34478.279 | | 0.509603 | | |00080 CoD | +420187 |FX Hya |132758.9-270552 |RRAB | 11.9 | 12.9 | |V |34242.292 | | 0.417356 |10 | |00080 02382| +420188 |FY Hya *|135335.5-293449 |RRAB | 11.89 | 13.03 | |V |41089.311 | | 0.6366510 |14 |F2: |07984 02382| +420189 |FZ Hya |082133.3+045730 |LB | 9.5 | 10.5 | |p | | | | |M6 |09269 09269| +420190 |GG Hya |082153.0-103550 |M | 10.4 |< 13.5 | |V |33769. | | 370. | | |02815 00491| +420191 |GH Hya |135653.6-270919 |LB | 10.1 | 10.7 | |p | | | | |M3 |02412 08953| +420192 |GI Hya |141620.4-263907 |IS: | 11.3 | 12.0 | |V | | | | | |02412 CoD | +420193 |GK Hya *|083049.3+021627 |EA/DM/RS | 9.35 | 9.91 | 9.57 |V |14968.863 | | 3.587052 |10 |G4V |08623 08953| +420194 |GL Hya |084059.2+023722 |RRAB | 12.0 | 13.7 | |p |26032.409 | | 0.505930 |24 | |04027 02322| +420195 |GM Hya *|084348.2+055101 |EA/DM | 11.0 | 11.7 | |p |25248.785 | | 12.18528 |06 |G2 |04027 00196| +420196 |GN Hya *|084818.5+020716 |EA | 13.2 | 13.8 | 13.6 |p |25646.517 | | 2.2495444 |08 *| |04027 02323| +420197 |GO Hya |085453.5+062613 |RRAB | 11.6 | 12.2 | |p |25649.507 | | 0.636437 |24 | |04027 02323| +420198 |GP Hya |141019.1-294655 |RR | 15. | 16. | |p | | | | | |04001 04001| +420199 |GQ Hya |141451.4-282046 |RR | 15. | 16. | |p | | | | | |04001 04001| +420200 |GR Hya |141513.8-293038 |RR | 15. | 16.5 | |p | | | | | |04001 04001| +420201 |GS Hya |141539.6-253958 |RRAB | 12.24 | 13.16 | |V |41782.587 | | 0.523145 |13 | |07233 04001| +420202 |GT Hya *|142650.7-261644 |RR: | 13. | 14. | |p | | | | | |04001 04001| +420203 |GU Hya |142723.4-281755 |RR | 14.5 | 16. | |p | | | | | |04001 04001| +420204 |GV Hya |142729.7-264041 |M | 14. | 16. | |p | | | | |Me |04001 04001| +420205 |GW Hya |142858.1-295528 |RR | 14. | 15. | |p | | | | | |04001 04001| +420206 |GX Hya |143015.8-252408 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +420207 |GY Hya |143030.5-255238 |UG | 14. | 16. | |p | | | | |G2p: |09270 08852| +420208 |GZ Hya |143228.6-281327 |RR | 14.5 | 16. | |p | | | | | |04001 04001| +420209 |HH Hya |143913.8-283217 |RR | 14. | 15. | |p | | | | | |04001 04001| +420210 |HI Hya |144240.0-280756 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +420211 |HK Hya |144313.2-251931 |RR | 13.5 | 14.5 | |p | | | | | |04001 04001| +420212 |HL Hya |144344.7-274817 |RR: | 15.5 | 16. | |p | | | | | |04001 04001| +420213 |HM Hya |144407.4-283125 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +420214 |HN Hya |144411.2-285124 |RR | 14. | 14.5 | |p | | | | | |04001 04001| +420215 |HO Hya |144600.6-285134 |RR | 12. | 13. | |p | | | | | |04001 04001| +420216 |HP Hya |144736.2-264714 |RR | 13. | 14. | |p | | | | | |04001 04001| +420217 |HQ Hya |081915.1-100957 |DSCTC | 6.29 | 6.33 | |V | | | 0.0755 | |F3IIIp |07015 BD | +420218 |HR Hya |083501.8+025931 |M: | 12.5 | 14.5 | |p | | | | | |03905 03905| +420219 |HS Hya *|102436.8-190533 |EA/D | 8.07 | 8.61 | 8.55 |V |41374.5954 | | 1.5680420 |10 *|F3+F4 |00001 08953| +420220 |HT Hya |085917.9+014740 |LB | 11.5 | 12.5 | |p | | | | |M6 |03905 03905| +420221 |HU Hya |081100.9-103634 |EA/DM | 9.4 | 9.9 | |p |27120.550 | | 2.516440 | |A2 |05639 08953| +420222 |HV Hya |083528.2-075856 |ACV | 5.66 | 5.76 | |V |40619.8 | | 5.57 | |A2p(Sr-Cr-Eu) |06066 BD | +420223 |HW Hya |100519.9-212120 |LB | 8.39 | 8.59 | |V | | | | |M3 |05828 BD | +420224 |HX Hya |103707.7-235336 |SRB | 8.63 | 8.82 | |V |40689. | | 50. | |M3 |05828 CoD | +420225 |HY Hya |111437.8-260431 |LB | 7.47 | 7.60 | |V | | | | |M3 |05828 CoD | +420226 |HZ Hya |112620.7-254519 |SRB | 7.63 | 8.18 | |V |40689. :| | 95. | |M3 |05828 08953| +420227 |II Hya |114845.1-264459 |SRB | 4.85 | 5.12 | |V |40684. | | 61. | |M4III |05828 CoD | +420228 |IK Hya *|120447.3-274043 |RR | 9.96 | 10.42 | |V |38461.510 | | 0.65 | |A2: |09271 08953| +420229 |IL Hya |092449.0-234935 |RS | 7.45 | 7.95 | |V |44662.355 | | 12.86833 | |K1III |09237 08953| +420230 |IM Hya |120951.5-322757 |EA/SD | 11.9 | 12.9 | |p |38796.562 | | 1.7821 | | |06316 06316| +420231 |IN Hya |092036.7+001054 |SRB | 6.27 | 6.87 | |V | | | 65. : | |M4III |08225 BD | +420232 |IO Hya |100732.2-222923 |SRB | 6.87 | 7.02 | |V | | | 80. : | |M4III |06645 BD | +420233 |IP Hya | | | | | | | | | | | | |=V1064 Cen +420234 |IQ Hya |091331.9-232331 |M | 5.0 | 6.2 | |I | | | | |C3,2(Ne) |07465 07465| +420235 |IR Hya |115816.9-253753 |M | 12.4 | 16.9 | |p |42097. | | 187.7 |35 | |08034 08034| +420236 |IS Hya |121808.5-282808 |RRAB | 14.1 | 15.7 | |p |41767.433 | | 0.500324 |15 | |08035 08035| +420237 |IT Hya |081959.1+001258 |SRB | 8.5 |( 0.4 R )| |V | | | 170. | |K2 |07810 07810| +420238 |IU Hya |090617.8+054545 |RR: | 15. | 16. | |p | | | | | |03905 03905| +420239 |IV Hya |092220.6-133849 |RRAB | 11. |< 12. | |p |42871.349 | | 0.54074 |10 | |08036 00190| +420240 |IW Hya *|094515.1-220145 |M: | 1.0 | 3.0 | |K |40671. | | 650. | |M9 |07343 USNO | +420241 |IX Hya |095504.0-252200 |LB: | 9. | 10. | |p | | | | |M1 |04779 CoD | +420242 |IY Hya |101700.6-143930 |LB: | 11.9 | 13.4 | |V | | | | |C |06977 06977| +420243 |IZ Hya |102802.3-212347 |LB | 10. | 11. | |p | | | | |M5 |01111 BD | +420244 |KK Hya |115037.5-254210 |RRAB | 14.3 | 16.0 | |p |42519.300 | | 0.4114175 |32 | |08037 08037| +420245 |KL Hya |115751.1-290043 |RRAB | 15.6 | 17.2 | |p |42160.352 | | 0.489217 |13 | |08038 08038| +420246 |KM Hya *|121535.6-252358 |RRC | 15.3 | 15.8 | |p |38825.449 | | 0.2244765 |42 | |08039 08039| +420247 |KN Hya |130533.3-260115 |M | 8.5 | 11. | |p | | | | |M5e |00190 CoD | +420248 |KO Hya |141058.5-300440 |RR: | 15. | 16.5 | |p | | | | | |04001 04001| +420249 |KP Hya |141250.7-272838 |RR: | 13. | 14. | |p | | | | | |04001 04001| +420250 |KQ Hya |141635.8-294151 |LB | 12. | 13. | |p | | | | | |04001 04001| +420251 |KR Hya |141747.8-280230 |RR: | 13. | 14.5 | |p | | | | | |04001 04001| +420252 |KS Hya |143243.9-264541 |RR: | 12. | 13.3 | |p | | | | | |04001 04001| +420253 |KT Hya |083037.8+031813 |EA | 12.7 |< 13.8 | |p |30674.637 | | 3.387024 |13 | |07966 07966| +420254 |KU Hya *|092250.9-095020 |ACV | 6.51 | 6.53 | |V |41799.78 | | 33.97 |50 |A3Vp(Sr-Cr-Eu) |08934 BD | +420255 |KV Hya |122432.8-261408 |LB | 13.6 | 15.2 | |p | | | | | |07941 07941| +420256 |KW Hya *|091226.0-070635 |EA/DM | 6.11 | 6.58 | 6.35 |V | | | 7.750 | |A3mIII:+A0V: |09246 BD | +420257 |KX Hya |084921.7-032635 |ACV | 5.31 |( 0.02 )| |V | | | 6. | |B9p(Hg-Mn) |07968 BD | +420258 |KY Hya |092243.6-181040 |EA | 9.5 | 11. | |p |33357.269 | | | | |00190 BD | +420259 |KZ Hya |105054.1-252115 |SXPHE | 9.46 | 10.26 | |V |42516.15836 | | 0.0595104212 |25 |A0 |08483 CoD | +420260 |LL Hya |103709.1-273513 |EA | 11.4 | 11.9 | |p | | | | | |08368 08368| +420261 |LM Hya |082627.2-035915 |DSCTC | 5.80 |( 0.006 )| |B | | | | | |67473 BD | +420262 |LN Hya |125630.1-262737 |SRD | 6.57 | 6.90 | |V | | | | | |67098 CoD | +420263 |LO Hya |082829.1-023102 |EA/DM | 6.37 | 6.61 | |V | | | | | |68137 BD | +420264 |LP Hya |092551.2-240038 |M | 7.9 | 9.8 : | |I | | | | | |68015 USNO | +420265 |LQ Hya |093225.6-111105 |BY | 7.79 | 7.86 | |V | | | | | |68135 BD | +420266 |LR Hya |103602.2-115448 |BY | 8.03 | 8.05 | |V | | | | | |68138 BD | +420267 |LS Hya |111925.9-301923 |ACV | 7.87 | 8.00 | |V | | | | | |68148 CoD | +420268 |LT Hya |141332.7-295418 |M | 12.1 | 15.8 | |V | | | | | |68015 USNO | +420269 |LU Hya |082514.1-071013 |RS | 7.34 | 7.39 | |V | | | | | |69011 BD | +420270 |LV Hya |115703.8-331856 |ACV: | 6.20 |( 0.03 )| |V | | | | | |69140 CoD | +420271 |LW Hya |125332.8-225223 |R: | 9.56 | 9.63 | |V | | | | | |69169 69166| +420272 |LX Hya |091825.0-202216 |ACVO | 7.79 | 7.82 | |V | | | | | |71090 BD | +420273 |LY Hya |133153.9-294059 |NL | 17.41 | 18.40 | |V | | | | | |71119 71120| +420274 |LZ Hya |134119.8-284700 |ACVO | 9.0 |( 0.01 )| |B | | | | | |71121 CoD | +420275 |MM Hya |091414.0-064745 |UG | 14.1 | 18.7 | |B | | | | | |73169 73111| +420276 |MN Hya |092907.0-240505 |XM+EA | 16.4 | 18.5 | |Ic| | | | | |73178 73178| +420277 |MO Hya |125157.9-264418 |DSCTC | 6.15 |( 0.06 v )| |V | | | | | |73179 CoD | +420278 |MP Hya |143100.7-251854 |DSCTC | 7.9 |( 0.02 )| |B | | | | | |73180 CoD | +420279 |MQ Hya |081823.0+055818 |SRD | 8.52 | 8.69 | |Hp| | | | | |HIP HIP | +420280 |MR Hya |081907.4-020448 |SRB | 9.00 | 9.18 | |Hp| | | | | |HIP HIP | +420281 |MS Hya |081914.4-073329 |SRD | 6.99 | 7.09 | |Hp| | | | | |HIP HIP | +420282 |MT Hya |082041.4+051122 |SRB | 9.83 | 10.15 | |Hp| | | | | |HIP HIP | +420283 |MU Hya |083346.8-095953 |SRB | 7.45 | 7.62 | |Hp| | | | | |HIP HIP | +420284 |MV Hya |084150.3-053639 |SRB | 7.74 | 7.86 | |Hp| | | | | |HIP HIP | +420285 |MW Hya |084209.4-030300 |LB | 7.26 | 7.49 | |Hp| | | | | |HIP HIP | +420286 |MX Hya |084520.8-023604 |EA | 6.52 | 7.01 | |Hp| | | | | |HIP HIP | +420287 |MY Hya |084609.6-104948 |LB | 6.57 | 6.90 | |Hp| | | | | |HIP HIP | +420288 |MZ Hya |084922.1-075631 |SRB | 8.84 | 9.03 | |Hp| | | | | |HIP HIP | +420289 |NN Hya |085438.2-112239 |LB: | 6.65 | 6.76 | |Hp| | | | | |HIP HIP | +420290 |NO Hya |085909.9+000612 |SRB: | 9.57 | 9.79 | |Hp| | | | | |HIP HIP | +420291 |NP Hya |090158.8+024016 |ACV: | 7.08 | 7.14 | |Hp| | | | | |HIP HIP | +420292 |NQ Hya |090519.6-172022 |LB: | 7.97 | 8.08 | |Hp| | | | | |HIP HIP | +420293 |NR Hya |090616.8-005951 |LB: | 9.58 | 9.76 | |Hp| | | | | |HIP HIP | +420294 |NS Hya |090659.9+012746 |SRB | 6.18 | 6.29 | |Hp| | | | | |HIP HIP | +420295 |NT Hya |090758.1-074818 |DSCTC | 7.42 | 7.49 | |Hp| | | | | |HIP HIP | +420296 |NU Hya |091019.8-113700 |LB | 8.33 | 8.50 | |Hp| | | | | |HIP HIP | +420297 |NV Hya |091659.9-093718 |LB: | 7.65 | 7.75 | |Hp| | | | | |HIP HIP | +420298 |NW Hya |091948.3-055930 |LB: | 7.79 | 7.89 | |Hp| | | | | |HIP HIP | +420299 |NX Hya |092049.4+005247 |EB | 8.33 | 8.50 | |Hp| | | | | |HIP HIP | +420300 |NY Hya |092122.8-064020 |EA | 8.65 | 9.02 | |Hp| | | | | |HIP HIP | +420301 |NZ Hya |092256.7-152945 |EA | 8.28 | 8.78 | |Hp| | | | | |HIP HIP | +420302 |OO Hya |092642.1+035009 |I: | 10.37 | 10.83 | |Hp| | | | | |HIP HIP | +420303 |OP Hya |092813.3-074315 |LB | 6.97 | 7.10 | |Hp| | | | | |HIP HIP | +420304 |OQ Hya |093126.7-182501 |LB: | 8.00 | 8.11 | |Hp| | | | | |HIP HIP | +420305 |OR Hya |093407.3-210406 |LB: | 9.24 | 9.40 | |Hp| | | | | |HIP HIP | +420306 |OS Hya |093436.5-002914 |LB | 8.45 | 8.70 | |Hp| | | | | |HIP HIP | +420307 |OT Hya |093437.5-162233 |SRB: | 7.82 | 7.95 | |Hp| | | | | |HIP HIP | +420308 |OU Hya |093612.9+054305 |LB: | 9.59 | 9.76 | |Hp| | | | | |HIP HIP | +420309 |OV Hya |093559.0-203310 |LB: | 8.67 | 8.77 | |Hp| | | | | |HIP HIP | +420310 |OW Hya |093947.4-103413 |EA | 6.29 | 6.66 | |Hp| | | | | |HIP HIP | +420311 |OX Hya |095323.3-175534 |SRB | 7.67 | 7.84 | |Hp| | | | | |HIP HIP | +420312 |OY Hya |095906.3-235703 |BE | 6.09 | 6.15 | |Hp| | | | | |HIP HIP | +420313 |OZ Hya |100211.6-194601 |EA | 9.50 | 9.75 | |Hp| | | | | |HIP HIP | +420314 |PP Hya |100237.0-202527 |ELL: | 6.84 | 6.91 | |Hp| | | | | |HIP HIP | +420315 |PQ Hya |100404.3-153855 |LB: | 9.03 | 9.17 | |Hp| | | | | |HIP HIP | +420316 |PR Hya |100552.9-144838 |SRB | 8.96 | 9.17 | |Hp| | | | | |HIP HIP | +420317 |PS Hya |100922.9-132144 |SRB: | 7.12 | 7.21 | |Hp| | | | | |HIP HIP | +420318 |PT Hya |100943.3-144545 |LB: | 8.02 | 8.13 | |Hp| | | | | |HIP HIP | +420319 |PU Hya |101501.3-134749 |LB: | 8.83 | 8.92 | |Hp| | | | | |HIP HIP | +420320 |PV Hya |102836.4-263559 |LB | 9.32 | 9.87 | |Hp| | | | | |HIP HIP | +420321 |PW Hya |103103.6-213840 |BY: | 10.17 | 12.31 | |Hp| | | | | |HIP HIP | +420322 |PX Hya |103330.7-201052 |E | 8.47 | 8.57 | |Hp| | | | | |HIP HIP | +420323 |PY Hya |104412.0-124726 |LB: | 8.88 | 8.99 | |Hp| | | | | |HIP HIP | +420324 |PZ Hya |104448.9-240456 |LB: | 9.93 | 10.38 | |Hp| | | | | |HIP HIP | +420325 |QQ Hya |104733.4-313612 |LB: | 7.02 | 7.06 | |Hp| | | | | |HIP HIP | +420326 |QR Hya |105631.1-343350 |E | 8.51 | 8.69 | |Hp| | | | | |HIP HIP | +420327 |QS Hya |105950.7-305434 |SRD | 9.16 | 9.33 | |Hp| | | | | |HIP HIP | +420328 |QT Hya |112758.7-351944 |SRD | 6.52 | 6.58 | |Hp| | | | | |HIP HIP | +420329 |QU Hya |113231.6-290831 |SRB | 7.39 | 7.50 | |Hp| | | | | |HIP HIP | +420330 |QV Hya |114945.1-331649 |LB: | 9.05 | 9.16 | |Hp| | | | | |HIP HIP | +420331 |QW Hya |120338.8-322439 |LB | 8.84 | 9.36 | |Hp| | | | | |HIP HIP | +420332 |QX Hya |120511.9-341232 |SRB | 7.47 | 7.59 | |Hp| | | | | |HIP HIP | +420333 |QY Hya |120920.8-275856 |EB: | 9.07 | 9.36 | |Hp| | | | | |HIP HIP | +420334 |QZ Hya |121133.4-270415 |LB | 7.57 | 7.70 | |Hp| | | | | |HIP HIP | +420335 |V0335 Hya |121312.9-340731 |LB | 5.84 | 6.34 | |Hp| | | | | |HIP HIP | +420336 |V0336 Hya |121534.3-314125 |LB | 7.47 | 7.59 | |Hp| | | | | |HIP HIP | +420337 |V0337 Hya |121729.6-343018 |SRA | 8.38 | 9.20 | |Hp| | | | | |HIP HIP | +420338 |V0338 Hya |122129.9-302906 |SRB | 8.27 | 8.55 | |Hp| | | | | |HIP HIP | +420339 |V0339 Hya |123023.6-270509 |SRB | 8.16 | 8.42 | |Hp| | | | | |HIP HIP | +420340 |V0340 Hya |124019.2-293654 |EA | 8.24 | 8.53 | |Hp| | | | | |HIP HIP | +420341 |V0341 Hya |124113.7-275430 |SRB | 6.61 | 6.71 | |Hp| | | | | |HIP HIP | +420342 |V0342 Hya |124313.1-245926 |LB | 6.72 | 6.91 | |Hp| | | | | |HIP HIP | +420343 |V0343 Hya |124742.0-294742 |SRB | 8.01 | 8.23 | |Hp| | | | | |HIP HIP | +420344 |V0344 Hya |125857.2-295955 |LB: | 7.28 | 7.38 | |Hp| | | | | |HIP HIP | +420345 |V0345 Hya |130243.3-270038 |LB: | 8.93 | 9.03 | |Hp| | | | | |HIP HIP | +420346 |V0346 Hya |132320.0-243920 |SRB: | 7.50 | 7.74 | |Hp| | | | | |HIP HIP | +420347 |V0347 Hya |133457.4-295524 |BY: | 8.58 | 8.83 | |Hp| | | | | |HIP HIP | +420348 |V0348 Hya |135009.3-292910 |LB: | 8.52 | 8.63 | |Hp| | | | | |HIP HIP | +420349 |V0349 Hya |135519.3-262557 |SRB | 7.36 | 7.76 | |Hp| | | | | |HIP HIP | +420350 |V0350 Hya |140423.8-295359 |LB | 7.89 | 8.16 | |Hp| | | | | |HIP HIP | +420351 |V0351 Hya |140743.6-290134 |LB | 8.65 | 9.06 | |Hp| | | | | |HIP HIP | +420352 |V0352 Hya |140850.4-240522 |LB: | 9.08 | 9.22 | |Hp| | | | | |HIP HIP | +420353 |V0353 Hya |141012.3-252402 |EA | 7.51 | 7.65 | |Hp| | | | | |HIP HIP | +420354 |V0354 Hya |141812.2-273116 |E: | 8.40 | 8.52 | |Hp| | | | | |HIP HIP | +420355 |V0355 Hya |142351.3-280903 |LB: | 8.33 | 8.43 | |Hp| | | | | |HIP HIP | +420356 |V0356 Hya |143205.1-274233 |EB | 7.56 | 7.69 | |Hp| | | | | |HIP HIP | +420357 |V0357 Hya |085326.7-133117 |M | 13.2 |< 15.3 | |p | | | | | |75002 GSC | +420358 |V0358 Hya |093501.8+044522 |EA | 9.53 |( 0.51 )| |V | | | | | |75146 BD | +420359 |V0359 Hya |095914.3-124514 |ACV | 7.85 | 7.88 | |V | | | | | |75147 BD | +420360 |V0360 Hya |121929.8-280101 |M | 11.0 |< 15.4 | |p | | | | | |75148 75149| +420361 |V0361 Hya |140533.0-270134 |RPHS | 15.28 |( 0.10 )| |V | | | | | |75150 GSC | +420362 |V0362 Hya |081404.8-083825 |SR: | 12.8 | 13.8 | |V | | | | | |76012 GSC | +420363 |V0363 Hya |081511.2-042751 |SR: | 12.8 | 14.4 | |V | | | | | |76012 USNO | +420364 |V0364 Hya |082127.6-003349 |SR: | 11.09 |( 0.5 )| |V | | | | | |76012 GSC | +420365 |V0365 Hya |082153.2-094012 |SR: | 11.9 | 13.1 | |V | | | | | |76012 UCAC2| +420366 |V0366 Hya |083426.3-163942 |SR: | 12.9 | 14.3 | |V | | | | | |76012 GSC | +420367 |V0367 Hya |083500.0-172208 |SR: | 12.5 | 13.4 | |V | | | | | |76012 GSC | +420368 |V0368 Hya |083540.6-163540 |SR: | 13.1 | 14.2 | |V | | | | | |76012 GSC | +420369 |V0369 Hya |083629.5-160156 |SR: | 11.8 | 12.9 | |V | | | | | |76012 GSC | +420370 |V0370 Hya |083713.6-162141 |SR: | 10.8 | 11.8 | |V | | | | | |76012 DM | +420371 |V0371 Hya |084024.2-144920 |M | 11.0 |< 13.8 | |V | | | | | |76088 USNO | +420372 |V0372 Hya |085148.1-190924 |SR: | 10.4 | 11.6 | |V | | | | | |76012 DM | +420373 |V0373 Hya |085236.2-191330 |SR: | 13.1 | 14.7 | |V | | | | | |76012 GSC | +420374 |V0374 Hya |090014.8-173825 |SR: | 14.3 | 15.0 | |V | | | | | |76012 GSC | +420375 |V0375 Hya |090016.2-173923 |M: | 13.3 |< 15.3 | |V | | | | | |76012 GSC | +420376 |V0376 Hya |090016.6-164831 |SR: | 11.35 |( 1.1 )| |V | | | | | |76012 DM | +420377 |V0377 Hya |090055.5-153052 |SR: | 12.4 | 13.2 | |V | | | | | |76012 GSC | +420378 |V0378 Hya |090137.0-170839 |SR: | 11.6 | 12.1 | |V | | | | | |76012 GSC | +420379 |V0379 Hya |090639.0-191845 |SR: | 12.7 | 14.8 | |V | | | | | |76012 GSC | +420380 |V0380 Hya |090942.4-174043 |SR: | 11.48 |( 0.6 )| |V | | | | | |76012 GSC | +420381 |V0381 Hya |091248.4-232147 |SR: | 10.47 |( 0.5 )| |V | | | | | |76012 DM | +420382 |V0382 Hya |091324.1-150734 |SR: | 11.26 |( 0.6 )| |V | | | | | |76012 GSC | +420383 |V0383 Hya |091355.7-174640 |SR: | 12.0 | 13.6 | |V | | | | | |76012 GSC | +420384 |V0384 Hya |091726.2-224811 |SR: | 13.1 | 14.2 | |V | | | | | |76012 GSC | +420385 |V0385 Hya |092936.9-220523 |SR: | 10.85 |( 0.7 )| |V | | | | | |76012 DM | +420386 |V0386 Hya |093102.5-234207 |SR: | 12.4 | 13.2 | |V | | | | | |76012 DM | +420387 |V0387 Hya |093322.4-200628 |SR: | 13.4 | 14.7 | |V | | | | | |76012 USNO | +420388 |V0388 Hya |093357.9-195536 |SR: | 12.7 | 13.8 | |V | | | | | |76012 GSC | +420389 |V0389 Hya |093447.4-215235 |SR: | 11.77 |( 0.5 )| |V | | | | | |76012 GSC | +420390 |V0390 Hya |081340.6-011222 |EA | 11.86 | 13.77 | |V | | | | | |77070 GSC | +420391 |V0391 Hya |105827.5-291902 |NL | 14.0 | 14.32 | |B | | | | | |77003 GSC | +420392 |V0392 Hya |105856.4-291441 |UG: | 14.9 | 16.38 | |B | | | | | |77003 GSC | +420393 |V0393 Hya |110017.5-295159 |NL: | 15.5 | 15.89 | |B | | | | | |77003 USNO | +420394 |V0394 Hya |113731.8-321952 |SR: | 13.1 | 14.0 | |V | | | | | |77004 GSC | +420395 |V0395 Hya |120124.4-315927 |NL | 13.0 | 13.4 | |B | | | | | |77003 UCAC2| +420396 |V0396 Hya |131246.4-232132 |NL | 17.3 | 17.7 | |V | | | | | |77106 77107| +420397 |V0397 Hya |081919.1+012020 |BY | 8.35 |( 0.03 )| |V | | | 8.75 : | |G5V |78018 DM | +420398 |V0398 Hya |082626.8-031744 |M | 10.9 | 14.1 | |V |52776 | | 313. | |Me |78090 GSC | +420399 |V0399 Hya |082654.8-061211 |BY | 7.59 |( 0.02 )| |V | | | 40.87 : | |K2 |78018 DM | +420400 |V0400 Hya |083102.3-105804 |M | 10.5 |< 15.0 | |V |52402 | | 315. | |M8: |78040 USNO | +420401 |V0401 Hya |083750.3-064825 |BY | 6.73 |( 0.05 : )| |V | | | 6.14 | |G0 |78005 DM | +420402 |V0402 Hya |085312.1-074321 |BY | 9.04 |( 0.12 )| |V | | | 0.4085 | |K0/1V |78046 DM | +420403 |V0403 Hya |085410.7-130051 |M | 8.8 | 13.6 | |V |52638 | | 348. | | |78130 GSC | +420404 |V0404 Hya *|090417.9+043229 |EW | 14.84 | 15.24 | 15.10 |* |52687.548 | | 0.30953 | | |78122 GSC | +420405 |V0405 Hya |090420.7-155451 |BY | 8.77 |( 0.03 )| |V | | | 8.64 : | |K2Ve |78018 DM | +420406 |V0406 Hya |090554.8-053608 |NL | 16.5 | 20.3 | |V | | | | | |78123 USNO | +420407 |V0407 Hya |090917.9-170224 |SRB | 10.8 | 12.8 | |V | | | 102. | |M4 |78130 78124| +420408 |V0408 Hya |091007.5-170038 |SRB | 10.0 | 11.0 | |V | | | 325. | | |78130 DM | +420409 |V0409 Hya |091009.6+034435 |EW | 11.0 | 11.6 | |V |53154.4821 | | 0.472271 | | |78130 78125| +420410 |V0410 Hya |091244.4-144117 |EA | 10.48 | 11.11 | |V |52732.719 | | 3.1508 | |A3 |78011 DM | +420411 |V0411 Hya |091343.5-202155 |SRB | 10.2 | 11.1 | |V | | | 63. | |M7 |78130 DM | +420412 |V0412 Hya *|091428.9-134139 |EA | 12.7 | 14.1 : | 12.9 : |V |52031.470 | | 1.89439 | | |78112 78128| +420413 |V0413 Hya |091550.7-154124 |SRB | 10.7 | 11.5 | |V | | | 200. | |M7 |78130 GSC | +420414 |V0414 Hya |092253.7-134921 |RS: | 8.8 | 9.2 | |V | | | 18.8 : | | |78131 DM | +420415 |V0415 Hya |092527.0-062416 |GDOR: | 7.07 | 7.10 | |Hp| | | 0.490 | |A3 |78091 DM | +420416 |V0416 Hya |095739.7-163120 |GDOR | 6.64 | 6.73 | |Hp| | | | |F0V |78024 DM | +420417 |V0417 Hya |100437.7-114347 |BY | 8.15 |( 0.03 )| |V | | | 10.74 | |K0V |78018 DM | +420418 |V0418 Hya |103630.8-135036 |BY: | 8.71 |( 0.02 )| |V | | | | |K2V |78018 DM | +420419 |V0419 Hya |104328.3-290351 |BY | 7.72 |( 0.02 )| |V | | | 13.47 : | |K1V |78018 DM | +420420 |V0420 Hya *|122432.5-281856 |E: | 10.1 | 10.9 | |V | | | 755. : | |S4,6e |78100 DM | +420421 |V0421 Hya *|130540.2-254106 |* | 16.94 |( 0.02 )| |Ic| | | | |L2 |78163 78163| +420422 |V0422 Hya |145601.6-264239 |M | 12.4 | 15.5 | |V |52393 | | 266. | |Me |78090 78128| +420423 |V0423 Hya |115649.7-354035 | | | | | | | | | | | |=V0577 Cen +420424 |V0424 Hya |081552.5-015049 |M | 12.0 |< 14.6 | |V |53570. | | 330. | |Me |79064 USNO | +420425 |V0425 Hya |082051.8+062824 |RRAB | 13.7 | 14.8 | |* |51546.970 | | 0.5508 |25 | |79025 GSC | +420426 |V0426 Hya |082835.2-135114 |EA | 11.55 | 12.23 | 11.86 |V |51578.880 | | 7.3089 |03 |A |79003 79067| +420427 |V0427 Hya *|083938.9-055852 |SRA | 12.3 | 13.5 | |V |53892. | | 138. | | |79100 USNO | +420428 |V0428 Hya |084146.1+021120 |M | 9.1 | 12.0 | |* |52638. | | 490. : | |M9 |79100 USNO | +420429 |V0429 Hya |085543.8-191328 |SRB | 9.5 | 10.7 | |V | | | 117. | | |79100 79096| +420430 |V0430 Hya *|090448.5+053008 |RRAB | 12.35 | 13.25 | |* |51553.70 | | 0.49691 |15 | |79025 79022| +420431 |V0431 Hya |091139.4-120935 |LB | 9.6 | 10.7 | |V | | | | |M4 |79100 79096| +420432 |V0432 Hya |091218.6-110444 |EA | 7.90 | 7.98 | 7.98 |V |48594.965 | | 1.115657 |07 |A1/2III/IV |79004 DM | +420433 |V0433 Hya |095016.5-224032 |LB: | 12.0 | 13.6 | |V | | | | | |79100 79010| +420434 |V0434 Hya *|095116.1-263634 |EA | 12.6 | 13.1 : | 13.0 : |V |53404.795 | | 5.9199 |05 : | |79193 79010| +420435 |V0435 Hya |095536.1-194127 |EA | 10.04 | 10.76 | 10.10 |V |51932.715 | | 2.2110 |10 | |79018 DM | +420436 |V0436 Hya |100535.1-123515 |SRB | 9.7 | 11.7 | |V | | | 240. | |M5 |79100 DM | +420437 |V0437 Hya |101553.3-262906 |LB | 9.4 | 10.4 | |V | | | | |M0 |79100 DM | +420438 |V0438 Hya |103758.3-201109 |LB | 9.1 | 9.7 | |V | | | | | |79230 DM | +420439 |V0439 Hya |104407.5-272642 |M | 11.2 |< 14.2 | |V |53900. | | 243. | | |79064 GSC | +420440 |V0440 Hya |105828.6-324648 |SRB | 9.4 | 10.1 | |V | | | 53.5 | | |79064 DM | +420441 |V0441 Hya |111038.0-285403 |EB | 11.05 | 11.75 | 11.47 |V |51979.683 | | 0.58413 | | |79011 DM | +420442 |V0442 Hya |111130.7-335754 |EW | 11.7 | 12.7 | 12.4 |V |53421.758 | | 0.309400 | | |79064 GSC | +420443 |V0443 Hya *|111626.1-331713 |EA | 11.05 | 11.56 | 11.53 : |V |52406.540 | | 4.67017 |07 | |79009 GSC | +420444 |V0444 Hya |111850.1-302825 |SRB | 9.5 | 10.3 | |V | | | 135. | |M8 |79100 DM | +420445 |V0445 Hya |112358.3-330824 |EA | 13.1 | 14.3 | 13.3 |V |53499.6027 | | 1.50944 |15 | |79072 GSC | +420446 |V0446 Hya |112958.7-293619 |EW | 11.55 | 12.3 | 12.3 |V |53100.726 | | 0.370327 | | |79064 79081| +420447 |V0447 Hya |114014.8-301549 |SRB | 12.0 | 12.7 | |V | | | 148. | |M7 |79072 GSC | +420448 |V0448 Hya |114420.8-282904 |SRA | 12.0 | 14.5 | |V |53521. | | 186. | | |79064 GSC | +420449 |V0449 Hya |115231.9-254655 |LB | 9.9 | 10.6 | |V | | | | | |79100 DM | +420450 |V0450 Hya |115919.1-270903 |M | 11.5 |< 14.6 | |V |53769. | | 301. | | |79072 GSC | +420451 |V0451 Hya |120012.1-335327 |SRB | 12.7 | 14.0 | |V | | | 127. | | |79100 GSC | +420452 |V0452 Hya |120102.5-304834 |EW | 13.1 | 14.2 | 13.9 |V |52441.4941 | | 0.296580 | | |79064 GSC | +420453 |V0453 Hya *|121106.7-343027 |EA | 12.85 | 13.5 | 13.5 : |V |53068.750 | | 3.10366 |05 : | |79009 GSC | +420454 |V0454 Hya |121327.8-323925 |EA | 12.22 | 13.15 : | 12.3 : |V |53108.757 | | 2.34751 |05 | |79009 GSC | +420455 |V0455 Hya |123504.3-284640 |SRB | 8.8 | 9.6 | |V | | | 68. | |M6III |79064 DM | +420456 |V0456 Hya |123533.6-314000 |SRB | 12.2 | 13.1 | |V | | | 61. | | |79064 GSC | +420457 |V0457 Hya |123722.6-280240 |SRB | 9.7 | 10.6 | |V | | | 115. | |M5 |79064 DM | +420458 |V0458 Hya |123927.5-331726 |LB | 12.3 | 13.5 | |V | | | | | |79100 GSC | +420459 |V0459 Hya |124735.5-273514 |LB | 12.7 | 13.7 | |V | | | | | |79100 GSC | +420460 |V0460 Hya |125244.3-260013 |SRB | 9.2 | 11.0 | |V | | | 109. | |M5 |79064 DM | +420461 |V0461 Hya |125328.7-284202 |EB: | 13.8 | 14.7 | 14.3 : |V |53827.676 | | 0.337402 | | |79100 GSC | +420462 |V0462 Hya |130245.5-235813 |SXPHE | 10.84 | 11.46 | |V |52432.684 | | 0.158491 |25 | |79097 DM | +420463 |V0463 Hya |132717.4-250215 |M | 11.2 |< 14.5 | |V |53011. | | 325. | | |79100 GSC | +420464 |V0464 Hya |141421.0-265318 |EW | 13.25 | 13.8 | 13.8 |V |53251.520 | | 0.342528 | | |79003 79063| +420465 |V0465 Hya |144824.0-271554 |M | 11.3 |< 14.6 | |V |53863. | | 224. | |Me |79064 DM | +420466 |V0466 Hya *|081201.8-003300 |EB | 11.3 | 11.7 | 11.6 |V |51871.13 | | 1.14113 | | |80002 GSC | NL80_2 +420467 |V0467 Hya |081252.1-014928 |RRAB | 15.5 | 16.0 | |V |51992.5110 | | 0.626674 |18 | |80159 USNO | NL80_2 +420468 |V0468 Hya *|081301.3+011941 |RRC | 11.2 | 11.6 | |V |51914.55 | | 0.467711 |45 | |80002 GSC | NL80_2 +420469 |V0469 Hya |081302.5-021421 |RRC: | 16.0 | 16.3 | |V |51571.6866 | | 0.205782 |40 : | |80159 USNO | NL80_2 +420470 |V0470 Hya *|081401.1+002256 |EW | 13.30 | 13.65 | 13.50 |* |52701.66 | | 0.39539 | | |80273 GSC | NL80_2 +420471 |V0471 Hya |081451.5-000450 |RRAB | 16.1 | 17.2 | |V |51574.7004 | | 0.523665 |12 | |80159 USNO | NL80_2 +420472 |V0472 Hya *|081540.0-005641 |EB | 12.3 | 12.6 | 12.5 |V |52975.7922 | | 0.88313 | | |80002 GSC | NL80_2 +420473 |V0473 Hya |081710.2-003845 |RRC | 16.3 | 16.8 | |V |51572.6798 | | 0.345091 |43 | |80159 USNO | NL80_2 +420474 |V0474 Hya *|081843.5+002851 |EB | 11.8 | 12.6 | 12.2 |V |53865.5136 | | 0.528304 | | |80002 GSC | NL80_2 +420475 |V0475 Hya *|081920.2+011759 |EW | 12.8 | 13.3 | 13.2 |V |53489.5763 | | 0.317107 | | |80002 GSC | NL80_2 +420476 |V0476 Hya *|082059.9+003102 |EW | 12.65 | 13.2 | 13.1 |V |53675.84 | | 0.414588 | | |80001 GSC | NL80_2 +420477 |V0477 Hya *|082202.5-013519 |EW: | 15.9 | 16.2 | 16.2 |V | | | 0.40719 | | |80001 USNO | NL80_2 +420478 |V0478 Hya |082250.0+015134 |BY | 8.66 | 8.77 | |V | | | 3.296 | |G1.2V |80303 DM | NL80_2 +420479 |V0479 Hya |082359.3-000526 |RRAB | 15.9 | 16.9 | |V |51550.7509 | | 0.494192 | | |80159 USNO | NL80_2 +420480 |V0480 Hya |082513.8-012843 |RRC | 17.4 | 17.6 | |V |51612.5661 | | 0.351782 |40 | |80159 USNO | NL80_2 +420481 |V0481 Hya |082545.6-015434 |RRAB | 13.7 | 15.1 | |V |52198.86 | | 0.544151 |16 | |80001 GSC | NL80_2 +420482 |V0482 Hya |082739.0-020034 |RRC: | 15.4 | 15.8 | |V |51982.5564 | | 0.190393 |47 | |80159 USNO | NL80_2 +420483 |V0483 Hya *|082819.1-104228 |EW | 12.25 | 12.55 | 12.55 |V |52735.649 | | 0.407496 | | |80011 GSC | NL80_2 +420484 |V0484 Hya *|082834.2-130920 |* | 15.95 | 16.06 | |Ic| | | 0.1201 | |L2 |80175 2MASS| NL80_2 +420485 |V0485 Hya |082941.9-015939 |RRC | 15.7 | 16.0 | |V |51588.6265 | | 0.240283 |44 | |80159 USNO | NL80_2 +420486 |V0486 Hya |083029.8-024237 |RRAB | 12.3 | 13.8 | |V |53008.7526 | | 0.508655 |15 | |80002 GSC | NL80_2 +420487 |V0487 Hya |083257.0+025903 |RRAB | 12.8 | 13.9 | |V |52679.6680 | | 0.561485 |25 | |80002 GSC | NL80_2 +420488 |V0488 Hya *|083542.6-081924 |* | 17.52 | 17.59 | |Ic| | | 0.128 | |L5 |80175 2MASS| NL80_2 +420489 |V0489 Hya |083611.0-004554 |RRAB | 15.2 | 16.3 | |V |51612.5509 | | 0.655139 | | |80159 USNO | NL80_2 +420490 |V0490 Hya *|083923.5-093440 |EA | 8.65 |< 8.80 | 8.71 : |V |48794.107 | | 92.1711 | |A0V |80011 HIP | NL80_2 +420491 |V0491 Hya |083955.4-000350 |RRC: | 13.7 | 13.9 | |V |51997.6273 | | 0.263482 |50 : | |80159 GSC | NL80_2 +420492 |V0492 Hya |084053.9-050936 |SR | 13.4 |< 14.7 | |V | | | 215. | | |80001 USNO | NL80_2 +420493 |V0493 Hya |084334.3-172712 |RRAB | 13.8 | 14.3 | |V |52894.9065 | | 0.574080 |27 | |80002 GSC | NL80_2 +420494 |V0494 Hya |084342.3-012017 |RRC: | 15.3 | 15.7 | |V |51607.6406 | | 0.429765 |50 : | |80159 USNO | NL80_2 +420495 |V0495 Hya |084400.1+023920 |UG | 14. : |< 18.5 | |V | | | | | |80311 80027| NL80_2 +420496 |V0496 Hya |084433.8-001303 |RRAB | 12.5 | 13.4 | |V |53437.6261 | | 0.537051 |13 | |80002 GSC | NL80_2 +420497 |V0497 Hya |084513.9-001533 |RRC | 17.1 | 17.7 | |V |51611.5928 | | 0.391934 |38 | |80159 USNO | NL80_2 +420498 |V0498 Hya *|084555.1+033929 |UGSU | 13.3 | 20. | |* | | | | |pec(UG) |80312 G2.3 | NL80_2 +420499 |V0499 Hya |084723.8-002533 |RRC | 15.3 | 15.8 | |V |51606.6204 | | 0.392680 |30 | |80159 USNO | NL80_2 +420500 |V0500 Hya *|084746.9-033900 |RR(B) | 10.5 | 11.1 | |V |52940.85 | | 0.42079 | | |80300 GSC | NL80_2 +420501 |V0501 Hya |084806.6-012703 |RRAB | 16.4 | 17.2 | |V |51607.6032 | | 0.578348 |17 | |80159 USNO | NL80_2 +420502 |V0502 Hya *|084903.6-112102 |EA | 10.05 | 10.41 | 10.09 |V |53133.587 | | 2.49447 |12 |F0 |80048 GSC | NL80_2 +420503 |V0503 Hya |084919.8+055230 |RS | 9.4 | 9.7 | |V | | | 7.2965 | |K0 |80034 DM | NL80_2 +420504 |V0504 Hya *|084946.2-000015 |RRC: | 14.0 | 14.2 | |V |51612.5835 | | 0.234363 |50 | |80159 GSC | NL80_2 +420505 |V0505 Hya |085004.7-013009 |RRC: | 16.5 | 16.9 | |V |51614.5974 | | 0.361262 |50 | |80159 USNO | NL80_2 +420506 |V0506 Hya |085023.3-013143 |RRAB | 16.5 | 17.1 | |V |51999.6289 | | 0.494495 |24 | |80159 USNO | NL80_2 +420507 |V0507 Hya |085042.1-013315 |RRAB | 18.4 | 19.2 | |V |51588.6366 | | 0.459794 |25 | |80159 USNO | NL80_2 +420508 |V0508 Hya |085440.1-004319 |RRC: | 15.2 | 15.5 | |V |51993.5666 | | 0.258733 |50 : | |80159 GSC | NL80_2 +420509 |V0509 Hya |085842.4-003659 |RRAB | 16.6 | 17.5 | |V |51588.6441 | | 0.539376 |18 | |80159 USNO | NL80_2 +420510 |V0510 Hya |085952.6-000601 |RRAB | 15.3 | 15.8 | |V |51615.5608 | | 0.612618 |20 | |80159 USNO | NL80_2 +420511 |V0511 Hya *|090047.0-182047 |EA | 8.99 | 9.06 | 9.05 |V |48568.32 | | 2.03915 |08 |A1V |80015 DM | NL80_2 +420512 |V0512 Hya |090115.4-013133 |RRAB | 18.5 | 19.0 | |V |51572.6839 | | 0.755410 |27 | |80159 USNO | NL80_2 +420513 |V0513 Hya |090115.9-005801 |RRAB | 17.7 | 18.3 | |V |51606.5824 | | 0.606172 |12 | |80159 USNO | NL80_2 +420514 |V0514 Hya *|090138.2-021158 |EW | 13.8 | 14.5 | 14.5 : |V |53433.645 | | 0.374404 | | |80002 GSC | NL80_2 +420515 |V0515 Hya *|090838.9-003849 |RRC | 16.8 | 17.3 | |V |51588.6537 | | 0.368713 |48 | |80159 USNO | NL80_2 +420516 |V0516 Hya |091137.6+040230 |RRAB: | 12.5 | 13.2 | |V |53816.6596 | | 0.346612 |30 | |80002 GSC | NL80_2 +420517 |V0517 Hya |091139.2-003905 |RRAB | 15.8 | 17.1 | |V |51992.5968 | | 0.474115 |10 | |80159 USNO | NL80_2 +420518 |V0518 Hya *|091147.5-011858 |RRAB | 18.7 | 19.7 | |V |51571.7127 | | 0.488692 |20 | |80159 USNO | NL80_2 +420519 |V0519 Hya *|091322.9+043236 |EW | 12.0 | 12.55 | 12.50 |V |53783.7280 | | 0.401682 | | |80001 GSC | NL80_2 +420520 |V0520 Hya *|091353.7-012002 |RRC | 14.8 | 15.3 | |V |51997.6515 | | 0.248654 |38 | |80159 GSC | NL80_2 +420521 |V0521 Hya |091605.5-233920 |M | 12.7 |< 15.0 | |V |53446. | | 228. | | |80297 80297| NL80_2 +420522 |V0522 Hya *|091815.3-011239 |RRC | 16.1 | 16.5 | |V |51998.6261 | | 0.342824 |40 | |80159 USNO | NL80_2 +420523 |V0523 Hya |091944.9-000157 |RRAB | 15.6 | 16.5 | |V |51997.6465 | | 0.612466 |20 : | |80159 USNO | NL80_2 +420524 |V0524 Hya *|092009.6+004246 |EA | 17.12 | 19.40 | 17.6 |V |52680.834 | | 0.150 |18 |pec(e) |80236 USNO | NL80_2 +420525 |V0525 Hya |092300.3-004031 |RRAB | 16.3 | 17.4 | |V |51610.5954 | | 0.547789 |11 | |80159 USNO | NL80_2 +420526 |V0526 Hya |092421.8-021155 |RRAB | 15.6 | 16.7 | |V |51550.7843 | | 0.512869 |22 | |80159 USNO | NL80_2 +420527 |V0527 Hya |092455.9-131159 |RRAB | 13.1 | 14.3 | |V |54254.5340 | | 0.61129 |15 | |80002 GSC | NL80_2 +420528 |V0528 Hya |092644.4-005349 |RRAB | 17.1 | 17.7 | |V |51612.5659 | | 0.546622 |27 | |80159 USNO | NL80_2 +420529 |V0529 Hya |092701.7-000934 |RRAB | 14.8 | 15.4 | |V |51613.6342 | | 0.583578 |20 | |80159 GSC | NL80_2 +420530 |V0530 Hya |092907.3+012725 |RRAB | 11.55 | 12.06 | |V |54142.775 | | 0.634348 |22 | |80002 GSC | NL80_2 +420531 |V0531 Hya |093310.4-000613 |RRAB | 16.5 | 17.6 | |V |51992.6182 | | 0.618338 |15 | |80159 USNO | NL80_2 +420532 |V0532 Hya |093414.4-013448 |RRAB | 16.7 | 17.5 | |V |51983.6118 | | 0.491439 |20 | |80159 USNO | NL80_2 +420533 |V0533 Hya |093519.3-013042 |RRC | 14.7 | 15.1 | |V |51550.7995 | | 0.358396 |40 | |80159 GSC | NL80_2 +420534 |V0534 Hya |093600.4-012827 |RRAB | 16.5 | 17.7 | |V |51171.7838 | | 0.492947 |11 | |80159 USNO | NL80_2 +420535 |V0535 Hya |093657.7-133712 |RRAB | 13.76 | 15.15 | |* |51604.84 | | 0.63779 | | |80026 GSC | NL80_2 +420536 |V0536 Hya |093706.8-000426 |RRAB | 18.0 | 18.8 | |V |51588.6615 | | 0.601314 |19 | |80159 USNO | NL80_2 +420537 |V0537 Hya |093901.7-010035 |RRAB | 15.5 | 16.3 | |V |51997.6368 | | 0.592145 |15 : | |80159 USNO | NL80_2 +420538 |V0538 Hya |093926.0-000406 |RRAB | 17.7 | 18.8 | |V |51993.6145 | | 0.536916 |08 | |80159 USNO | NL80_2 +420539 |V0539 Hya |093949.8-012237 |RRAB | 15.4 | 16.2 | |V |51997.6185 | | 0.541787 |12 | |80159 USNO | NL80_2 +420540 |V0540 Hya |095610.8-170008 |RRAB | 13.1 | 14.1 | |V |53179.5001 | | 0.550100 |30 | |80002 GSC | NL80_2 +420541 |V0541 Hya *|100041.8-115135 |RPHS | 15.26 |( 0.02 *)| |V | | | 0.001574 | |sdB |80327 GSC | NL80_2 +420542 |V0542 Hya *|102013.6-135137 |EW | 10.28 | 10.40 | 10.40 |V |51868.285 | | 0.381025 | | |80036 DM | NL80_2 +420543 |V0543 Hya *|102608.4-231514 |RRAB | 12.8 | 13.9 | |V |53509.6128 | | 0.59826 |20 | |80153 GSC | NL80_2 +420544 |V0544 Hya |103321.0-202716 |RRAB | 12.7 | 14.0 | |V |52804.5823 | | 0.61794 |18 | |80002 GSC | NL80_2 +420545 |V0545 Hya *|103512.8-120631 |EW+EW | 11.30 | 12.03 | 11.98 |V |53085.7689 | | 0.384647 | | |80138 GSC | NL80_2 +420546 |V0546 Hya |104406.8-185239 |RRAB | 12.7 | 14.0 | |V |52717.6209 | | 0.597770 |12 | |80002 GSC | NL80_2 +420547 |V0547 Hya *|112117.2-344646 |IT | 12.0 |( 0.21 )| |V | | | 5.56 | |M1Ve |80330 GSC | NL80_2 +420548 |V0548 Hya *|112117.4-344650 |IT | 12.0 |( 0.27 )| |V | | | 5.35 | | |80330 GSC | NL80_2 +420549 |V0549 Hya *|113241.2-265209 |IT | 15.2 |( 0.08 )| |V | | | 0.78 | |M5e |80330 USNO | NL80_2 +420550 |V0550 Hya *|113241.3-265156 |IT | 12.23 |( 0.05 )| |V | | | 4.65 | |M3Ve |80330 DM | NL80_2 +420551 |V0551 Hya *|120054.6-272445 |RPHS | 14.41 |( 0.04 *)| |V | | | 0.001723 | |sdB |80327 GSC | NL80_2 +420552 |V0552 Hya *|121206.1-261248 |RRAB | 12.5 | 13.8 | |V |54931.6746 | | 0.39878 |25 | |80153 GSC | NL80_2 +420553 |V0553 Hya *|122617.8-254620 |EW | 12.36 | 13.05 | 12.90 |V |52386.640 | | 0.371497 | | |80365 80365| NL80_2 +420554 |V0554 Hya *|132801.7-272948 |EW | 12.5 | 13.3 | 13.2 |V |52488.507 | | 0.302559 | | |80365 80365| NL80_2 +420555 |V0555 Hya *|132906.0-300747 |EB | 11.82 | 12.50 | 12.20 |V |51924.831 | | 0.539643 | | |80365 80365| NL80_2 +420556 |V0556 Hya |133951.7-265217 |RRAB | 11.45 | 11.99 | |V |52722.661 | | 0.59606 |22 | |80386 DM | NL80_2 +420557 |V0557 Hya |135332.8-290542 |M | 11.2 |< 15.0 | |V |54953. | | 191. | |M5-M7 |80001 GSC | NL80_2 +420558 |V0558 Hya |141007.0-260940 |LB | 10.2 | 11.1 | |V | | | | | |80001 DM | NL80_2 +420559 |V0559 Hya *|141345.5-225442 |RRAB | 11.9 | 13.1 | |V |52427.044 | | 0.4479434 |42 | |80377 GSC | NL80_2 +420560 |V0560 Hya |141939.4-254412 |RRAB | 13.8 | 15.2 | |V |53791.8258 | | 0.504229 |15 |A4-A8 |80395 80395| NL80_2 +420561 |V0561 Hya |143739.3-295854 |RRC | 14.1 | 14.9 | |V |53450.774 | | 0.394290 |30 : | |80135 GSC | NL80_2 +420562 |V0562 Hya |144644.7-264513 |M | 11.9 |< 15.0 | |V |54692. | | 291.1 | | |80002 2MASS| NL80_2 +420563 |V0563 Hya |150112.8-253925 |M | 13.2 |< 15.6 | |V |54544. | | 203. | | |80399 80399| NL80_2 +429002 |bet Hya *|115254.5-335429 |ACV | 4.27 |( 0.04 )| |V |42451.78 | | 2.344 | |B9IIIp(Si) |09248 CoD | +429005 |eps Hya |084646.5+062508 |BY: | 3.35 | 3.39 | |V | | | | | |69171 BD | +429007 |eta Hya |084313.5+032355 |BCEP | 4.27 | 4.33 | |V | | | 0.17 | |B3V |08395 BD | +4290222|khi 2 Hya *|110557.6-271716 |EA/DM | 5.65 | 5.94 | 5.92 |V |42848.6107 | | 2.267701 |14 *|B8III-IVe+B8.5V |09250 CoD | +430001 |R Hyi |001024.1-751037 |DCEP | 14.43 | 15.31 | |V |25565.20 | | 10.093 | | |V 203 V 212|=SMC V0004 +430002 |S Hyi |001856.0-795455 |E/SD: | 12.0 | 13.0 | |p |25452.56 | | 0.90312 | | |00193 06286| +430003 |T Hyi |002415.9-761655 |RR | 13.0 | 14.3 | |p |25531.40 | | 0.56875 | | |00193 06286| +430004 |U Hyi |002806.5-792200 |EB/SD | 13.9 | 15.2 | |p |25851.55 | | 0.70108 | | |00193 06286| +430005 |V Hyi |002829.7-805444 |RR | 13.8 | 15.2 | |p |25477.50 | | 0.59396 | | |00193 04001| +430006 |W Hyi |003240.3-794021 |M | 13.0 |< 16.1 | |p |26200. | | 281. | |Me |00193 06286| +430007 |X Hyi |003938.8-800205 |M | 12.8 | 16.0 | |p |26000. | | 308.5 | | |00193 06286| +430008 |Y Hyi *|004550.7-784917 |EA/SD | 10.4 | 14.0 | |p |25481.50 | | 3.53597 | |A6V |00193 06286| +430009 |Z Hyi |004819.1-770000 |RR | 15.0 | 16.3 | |p |24789.60 | | 0.45038 | | |00193 06286| +430010 |RR Hyi | | | | | | | | | | | | |=DV Oct +430011 |RS Hyi *|011027.8-765055 |M | 10.0 | 16.0 | |p |25850. | | 215.5 | |M3e |00193 06286| +430012 |RT Hyi *|011112.6-791039 |EW/KW | 13.2 | 14.1 | 14.1 |p |25480.50 | | 0.284038 | | |00193 06286| +430013 |RU Hyi |011959.3-813322 |RV | 14.8 | 16.2 | |p |24780. | | 157. | | |00193 06286| +430014 |RV Hyi *|012052.3-801901 |EA | 11.8 | 12.8 | 12.4 |p |25477.40 | | 7.19505 | | |00193 06286| +430015 |RW Hyi |013112.3-782908 |RR | 12.5 | 13.3 | |p |25481.50 | | 0.55577 | | |00193 06286| +430016 |RX Hyi |013156.8-791942 |RRAB | 14.1 | 15.5 | |p |25483.45 | | 0.61966 |20 | |00193 04001| +430017 |RY Hyi *|013334.0-751227 |M | 11.0 | 15.5 | |p |26650. | | 319. | |M5e |00193 06286| +430018 |RZ Hyi |013552.7-735321 |DCEP | 13.45 | 14.23 : | |V |31734.237 | | 15.17007 |46 | |V 059 V 212|=SMC V2360 +430019 |SS Hyi |013817.1-753348 |RR | 14.8 | 16.2 | |p |25439.60 | | 0.54888 | | |00193 06286| +430020 |ST Hyi *|014032.2-743026 |DCEP | 12.58 | 13.70 | |V |30561.604 | | 33.326668 |17 | |V 209 V 212|=SMC V2362 +430021 |SU Hyi |014230.5-800033 |RR | 12.5 | 13.8 | |p |25441.60 | | 0.34835 | | |00193 06286| +430022 |SV Hyi |014435.2-774514 |RR | 14.5 | 15.8 | |p |25444.65 | | 0.53890 | | |00193 06286| +430023 |SW Hyi |014721.8-732101 |RR | 13.8 | 15.5 | |p |25530.40 | | 0.48760 | | |00193 06286| +430024 |SX Hyi |020739.5-774847 |RR | 12.5 | 13.5 | |p |25469.50 | | 0.31067 | | |00193 06286| +430025 |SY Hyi |021711.7-792521 |RCB: | 13.4 | 15.5 | |p | | | | | |00193 06286| +430026 |SZ Hyi *|011001.1-752912 |RR | 14.8 | 16.0 | |p |25441.63 | | 0.44108 | | |00193 06286| +430027 |TT Hyi |005456.0-800221 |I | 12.4 | 13.3 | |p | | | | | |00193 06286| +430028 |TU Hyi |015417.1-762244 |I | 11.0 | 11.8 | |p | | | | | |00193 06286| +430029 |TV Hyi |020104.3-780530 |I | 11.8 | 13.1 | |p | | | | | |00193 06286| +430030 |TW Hyi *|021930.6-733357 |RRAB | 12.56 | 13.39 | |V |39465.506 | | 0.675380 |14 |F0:-G0: |05233 06286| +430031 |TX Hyi |022705.1-711614 |RR | 14.9 | 15.8 | |p |27722.35 | | 0.482601 | | |00357 06286| +430032 |TY Hyi |023303.0-710158 |RR | 13.8 | 15.2 | |p |27718.550 | | 0.63054 | | |00357 06286| +430033 |TZ Hyi |025135.3-673417 |E | 13.2 | 13.9 | |p |27413.30 | | 0.68586 | | |00357 06286| +430034 |UU Hyi *|031939.6-691813 |SR | 13.1 | 14.3 | |p |27400. | | 224.5 : | | |00357 06286| +430035 |UV Hyi |033856.3-722433 |EA | 12.4 | 13.4 | |p |27426.30 | | 0.81705 | | |00357 02380| +430036 |UW Hyi |034008.6-691705 |RR | 13.8 | 15.2 | |p |27473.25 | | 0.5405 | | |00357 06286| +430037 |UX Hyi |034900.3-695243 |SRB | 9.6 | 11.7 | |p | | | 600. : | |M4III |00357 06286| +430038 |UY Hyi |035256.9-740234 |SR: | 12.8 | 13.8 | |p | | | 310. /N| | |00357 06286| +430039 |UZ Hyi | | | | | | | | | | | | |=WY Hyi +430040 |VV Hyi |035809.4-731121 |RR | 14.0 | 15.4 | |p |26715.44 | | 0.480324 | | |00357 04001| +430041 |VW Hyi *|040911.3-711741 |UGSU | 8.4 | 14.4 | |V | | |( 27.3 ) | |pec(UG) |09275 08852| +430042 |VX Hyi |041453.5-732137 |EA/SD | 11.9 | 13.8 | |p |26711.40 | | 3.2322 | |F4 |00357 02381| +430043 |VY Hyi *|004816.7-743551 |RR | 13.3 | 14.3 | |p | | | | | |00193 06286| +430044 |VZ Hyi *|014458.4-801108 | | 11.0 | 12.0 | |p | | | | |MB |00193 06286| +430045 |WW Hyi |020609.3-695219 |EA | 12. |< 13. | |p | | | | | |00085 02380| +430046 |WX Hyi *|020950.8-631840 |UGSU | 9.6 | 14.85 | |V | | |( 13.7 ) | |pec(UG) |09276 08852| +430047 |WY Hyi |035154.9-735807 |M | 12.0 |< 15.6 | |p |27450. | | 231. | |Me |00357 02380| +430048 |WZ Hyi *|013323.2-721855 |RRAB | 14.3 | 15.4 | |p |26945.391 | | 0.5402149 |20 | |03641 00828| +430049 |XX Hyi |021300. -755420:|RR | 15.2 | 16.0 | |p | | | 0.4912154 | | |00820 | +430050 |XY Hyi |000718.6-742834 |CWA | 16.1 | 16.9 | |p |36792. | | 22. | | |V 202 V 022|=SMC V0003 +430051 |XZ Hyi |001350.3-795044 |RRAB | 16.2 | 16.8 | |p |36760.634 | | 0.5946 |40 | |09264 04001| +430052 |YY Hyi |001853.9-771601 |RRAB | 15.8 | 16.5 | |p |36765.590 | | 0.4007 |20 : | |09264 04001| +430053 |YZ Hyi |002422.2-772208 |RRAB | 14.4 | 15.2 | |p |36780.540 | | 0.4900 |20 | |09264 04001| +430054 |ZZ Hyi *|002748.1-783745 |GAL | 16.6 |< 17. | |p | | | | | |09264 04001| +430055 |AA Hyi |003902.4-765808 |EA/KE: | 12.0 | 12.6 | |p |28694.700 | | 1.150272 |18 *| |05235 04001| +430056 |AB Hyi |004152.4-794148 |RRAB | 16.2 | 16.7 | |p |36737.630 | | 0.3693 |20 | |09264 04001| +430057 |AC Hyi *|004753.6-751611 |RRAB | 14.9 | 16.0 | |p |36737.640 | | 0.6143 |20 | |09264 04001| +430058 |AD Hyi |004658.5-800817 |RRAB | 15.0 | 16.4 | |p |36735.640 | | 0.4766 |30 | |09264 04001| +430059 |AE Hyi |004939.6-760435 |RR | 15.7 | 16.4 | |p |36758.670 | | 0.726 |40 | |09264 04001| +430060 |AF Hyi |005840.1-775420 |RRC | 15.8 | 16.3 | |p |36759.610 | | 0.3782 |50 | |09264 04001| +430061 |AG Hyi |011414.9-771607 |RRAB | 15.8 | 16.2 | |p |36778.520 | | 0.3776 |20 | |09264 04001| +430062 |AH Hyi |012300.6-742217 |DCEP | 14.76 | 15.29 | |V |45291.4 | | 8.379 |40 | |V 273 V 022|=SMC V2337 +430063 |AI Hyi |012613.0-740804 |DCEP | 14.42 | 15.19 | |V |29808.570 | | 12.466963 |33 | |V 209 V 212|=SMC V2345 +430064 |AK Hyi |015211.5-782028 |RRAB | 16.1 | 16.9 | |p |36764.670 | | 0.5393 |50 | |09264 04001| +430065 |AL Hyi |020650.2-593413 |M | 14.5 |< 16.5 | |p | | | | | |04001 04001| +430066 |AM Hyi |021106.4-581419 |RR | 13. | 14. | |p | | | | | |04001 04001| +430067 |AN Hyi |030135.9-730532 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +430068 |AO Hyi |030234.1-723623 |RR | 15. | 16. | |p | | | | | |04001 04001| +430069 |AP Hyi |032735.8-732437 |CEP: | 15. | 16. | |p | | | 9. : | | |04001 04001| +430070 |AQ Hyi |033134.4-705938 |RR | 15.5 | 16.5 | |p | | | | | |04001 04001| +430071 |AR Hyi |033513.6-723520 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +430072 |AS Hyi |034751.1-723430 |RR | 15. | 16. | |p | | | | | |04001 04001| +430073 |AT Hyi |035217.4-710222 |RR | 14. | 14.5 | |p | | | | | |04001 04001| +430074 |AU Hyi |035155.3-742835 |RR | 15. | 16. | |p | | | | | |04001 04001| +430075 |AV Hyi |040702.3-730410 |RR | 16. | 16.5 | |p | | | | | |04001 04001| +430076 |AW Hyi |040752.5-710603 |RR | 15.5 | 16.5 | |p | | | | | |04001 04001| +430077 |AX Hyi |041345.6-730843 |RR | 15. | 16. | |p | | | | | |04001 04001| +430078 |AY Hyi |041531.5-700627 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +430079 |AZ Hyi |041616.8-734212 |RR | 16. | 17. | |p | | | | | |04001 04001| +430080 |BB Hyi *|023318.8-733643 |RRC | 11.76 | 12.32 | |V |41993.430 | | 0.287131 |35 |F0III |06099 05845| +430081 |BC Hyi |032327.7-720742 |RR | 13.8 | 14.4 | |p | | | | | |00357 06318| +430082 |BD Hyi |001527.9-763805 |EA | 12.8 | 14.1 | |p | | | | | |04001 04001| +430083 |BE Hyi |025136.5-721017 |RR | 13.2 | 13.8 | |p | | | | | |00357 07815| +430084 |BF Hyi |040403.2-742713 |EA | 10.5 | 11.5 | |p | | | | | |00085 02380| +430085 |BG Hyi |012412.2-704031 |DSCTC | 8.2 |( 0.03 )| |V | | | | | |67476 CPD | +430086 |BH Hyi |012925.3-765252 |E | 16.4 | 16.8 | |p | | | | | |67348 67347| +430087 |BI Hyi |013601.1-771048 |E | 16.0 | 16.4 | |p | | | | | |67348 67347| +430088 |BK Hyi |013646.6-785703 |RRAB | 16.0 | 16.7 | |p | | | | | |67348 67347| +430089 |BL Hyi |014100.3-675328 |E+XPRM | 14.9 |< 18. | |V | | | | | |67480 67479| +430090 |BM Hyi |014433.0-610107 |ACV | 7.0 |( 0.04 )| |V | | | | | |67066 CPD | +430091 |BN Hyi |030732.1-785921 |DSCTC | 5.7 |( 0.02 )| |V | | | | | |67481 CPD | +430092 |BO Hyi |002234.7-773936 |SR | 15.5 | 16.9 | |p | | | | | |68278 68128| +430093 |BP Hyi |020745.6-732946 |EA | 15.3 | 16.2 | |p | | | | | |68141 68281| +430094 |BQ Hyi |021800.8-712803 |E:/RS | 8.06 | 8.22 | |V | | | 18.66 | |G1 |V 301 CPD |=SMC V2391 +430095 |BR Hyi |041500.9-693212 |DSCT | 10.54 | 10.67 | |V | | | | | |69173 CPD | +430096 |BS Hyi |042254.0-703933 |RRAB | 15.6 | 16.4 | |p | | | | | |69133 69131| +430097 |BT Hyi |030037.1-815407 |ACVO | 9.1 |( 0.01 B )| |V | | | | | |71020 CPD | +430098 |BU Hyi |034051.2-715516 |RR | 16.96 | 17.57 | |B | | | | | |72082 72082| +430099 |BV Hyi |034207.7-715133 |RR | 19.63 | 20.29 | |B | | | | | |72082 72082| +430100 |BW Hyi |034515.3-715617 |RRAB | 18.78 | 21.12 | |B | | | | | |72082 72082| +430101 |BX Hyi |034516.4-715537 |RRC | 19.10 | 20.06 | |B | | | | | |72082 72082| +430102 |BY Hyi |034749.5-713623 |RRAB | 19.07 | 19.98 | |B | | | | | |72082 72082| +430103 |BZ Hyi |000725.9-772939 |EA | 8.53 | 8.69 | |Hp| | | | | |HIP HIP | +430104 |CC Hyi |013420.3-643108 |LB | 8.97 | 9.17 | |Hp| | | | | |HIP HIP | +430105 |CD Hyi |013633.8-762219 |SRB: | 8.28 | 8.35 | |Hp| | | | | |HIP HIP | +430106 |CE Hyi |013856.1-583449 |DSCTC | 8.48 | 8.53 | |Hp| | | | | |HIP HIP | +430107 |CF Hyi |014311.1-580037 |BY: | 9.23 | 9.41 | |Hp| | | | | |HIP HIP | +430108 |CG Hyi |014922.7-722443 |LPB | 7.77 | 7.82 | |Hp| | | | | |HIP HIP | +430109 |CH Hyi |020152.3-742645 |SRB | 6.77 | 6.90 | |Hp| | | | | |HIP HIP | +430110 |CI Hyi |021148.9-712903 |SRB | 8.52 | 9.09 | |Hp| | | | | |HIP HIP | +430111 |CK Hyi |022207.5-813303 |LB: | 8.38 | 8.48 | |Hp| | | | | |HIP HIP | +430112 |CL Hyi |022746.8-693126 |SRB: | 6.48 | 7.15 | |Hp| | | | | |HIP HIP | +430113 |CM Hyi |024250.5-711216 |SRB | 7.66 | 7.87 | |Hp| | | | | |HIP HIP | +430114 |CN Hyi |024537.0-711409 |EW | 6.68 | 6.93 | |Hp| | | | | |HIP HIP | +430115 |CO Hyi |024942.7-694843 |SRB | 8.55 | 8.88 | |Hp| | | | | |HIP HIP | +430116 |CP Hyi |030013.7-810519 |EW: | 7.90 | 8.04 | |Hp| | | | | |HIP HIP | +430117 |CQ Hyi |032512.1-783958 |LB | 8.48 | 8.67 | |Hp| | | | | |HIP HIP | +430118 |CR Hyi |033335.9-690100 |ELL: | 9.28 | 9.34 | |Hp| | | | | |HIP HIP | +430119 |CS Hyi |033553.0-691135 |SRA | 8.24 | 9.28 | |Hp| | | | | |HIP HIP | +430120 |CT Hyi |034523.7-713929 |ACV: | 6.21 | 6.24 | |Hp| | | | | |HIP HIP | +430121 |CU Hyi |041735.5-715839 |BY: | 9.20 | 9.44 | |Hp| | | | | |HIP HIP | +430122 |CV Hyi |013242.0-655432 |XM | 20. |( 2.2 * )| |V | | | | | |76016 76016| +430123 |CW Hyi |023051.0-684206 |XM | 16. | 18. | |V | | | 0.126245 | |pec(e)+dM4 |78039 78039| +430124 |CX Hyi |030438.7-811358 |SRS | 9.9 | 10.1 | |V | | | 17.90 | |M |78130 DM | +430125 |CY Hyi *|030617.2-681230 |EW | 9.3 | 9.8 | 9.8 |V |52128.767 | | 0.41612 | |F7 |78130 DM | +430126 |CZ Hyi |002656.6-793256 |SR | 11.4 | 13.5 | |V | | | 103. | | |79064 79063| +430127 |DD Hyi |005523.6-794133 |SRB | 12.9 | 14.3 | |V | | | 59.5 | | |79100 79063| +430128 |DE Hyi |012341.2-782310 |SRB | 12.2 | 13.6 | |V | | | 72.5 | | |79100 79063| +430129 |DF Hyi |014049.2-672942 |CWB | 13.3 | 14.7 | |V |52917.663 | | 1.1228 |18 | |79064 79121| +430130 |DG Hyi |014438.1-772213 |SRB | 11.1 | 11.8 | |V | | | 47.2 | | |79100 79010| +430131 |DH Hyi |014913.3-633100 |EA | 8.45 | 8.63 | 8.58 |V |48375.910 | | 7.43367 |03 |A2mA5-A7 |79009 DM | +430132 |DI Hyi |022734.9-674712 |M | 11.6 |< 14.4 | |V |53616. | | 294. | |M |79100 79214| +430133 |DK Hyi |030841.8-754724 |SRB | 10.4 | 12.0 | |V | | | 43. | | |79100 79063| +430134 |DL Hyi |032009.5-713610 |SRB | 10.1 | 11.2 | |V | | | 52. | | |79100 79118| +430135 |DM Hyi *|042341.1-703447 |CWB: | 13.9 | 14.4 | |V |54529.5 | | 2.2378 : |63 | |80135 GSC | NL80_1 +4390071|eta 1 Hyi |015234.8-675640 |CST: | 6.7 | | |p | | | | |B9V |00016 CoD | +440001 |R Ind |223600.4-671716 |M | 8.2 | 14.6 | |V |41801. | | 216.26 |47 |M2e-M4(II)e |00001 00002| +440002 |S Ind |205623.3-541927 |M | 7.9 | 17.0 | |p |39779. | | 399.95 |41 |M6e-M8eII-Ib: |00001 00002| +440003 |T Ind |212009.5-450119 |SRB | 7.7 | 9.4 | |p | | | 320. : | |C7,2(Na) |01016 08953| +440004 |U Ind |204221.6-510606 |SRB | 10.4 | 12.4 | |p | | | 97.5 | |M5/6e |01016 08953| +440005 |V Ind *|211129.9-450428 |RRAB | 9.12 | 10.48 | |V |40118.393 | | 0.4795910 |10 |A5-G3: |07984 06286| +440006 |W Ind |211422.8-530135 |SRC | 9.4 | 11.5 | |p |30090. | | 198.8 | |M4IIe-M5IIe |01016 05474| +440007 |X Ind |213028.4-535719 |M | 9.0 |< 13.0 | |p |30043. | | 225.85 |49 |M4e-M5IIe |00001 08953| +440008 |Y Ind |214355.4-524342 |M | 9.8 |< 13.0 | |p |30094. | | 304.18 |52 |M6(II))e-M7e |00001 08953| +440009 |Z Ind |215424.4-495641 |CST: | 10.3 | 10.6 | |p | | | | | |00016 CoD | +440010 |RR Ind |214617.6-651828 |SRB | 10.9 | 13.1 | |p |30120. | | 140. : |60 |C6II(Na) |01016 CoD | +440011 |RS Ind *|213649.7-702001 |EA/DW | 9.9 | 10.2 | 10.0 |p |27000.179 | | 0.62406531 |21 |F4 |02196 05474| +440012 |RT Ind |204641.8-555028 |CST: | 10.7 | | |p | | | | | |00016 CoD | +440013 |RU Ind *|214822.8-544544 |EA/GS: | 11.3 | 12.1 | 12.1 |p |24083. | | 35.54 |14 : | |00210 CoD | +440014 |RV Ind |230059.6-705619 |M: | 11.6 |< 12.7 | |p |24716. | | 295. | |Me |00210 CoD | +440015 |RW Ind |215829.2-691236 |M | 9.6 |< 13.4 | |V |26510. | | 150. : | |M0Ibe-M4(II:)e |01805 01805| +440016 |RX Ind *|204103.5-522905 |M | 10.7 | 15.5 | |p |28781. | | | | |00016 | +440017 |RY Ind *|205802.1-460400 |EB/KE | 10.83 | 11.45 | 11.04 |V |43019.8922 | | 0.71211400 | |A5 |09274 CoD | +440018 |RZ Ind |210351.6-492946 |M | 8.4 |< 14.0 | |V |36454. | | 255. | |Me |06454 02386| +440019 |SS Ind |220807.0-670822 |M | 9.10 | 14.3 | |V |36544. | | 190. |47 | |06455 05474| +440020 |ST Ind *|203523.8-481920 |EW/KW | 11.3 | 11.79 | 11.79 |V |44839.6967 | | 0.40188233 | | |09279 CoD | +440021 |SU Ind *|205441.2-454351 |EB/DW | 9.3 | 9.7 | 9.5 : |V |34267.489 | | 0.986323 | |F5/6V |00080 CoD | +440022 |SV Ind |203015.9-550451 |EW/KW | 14.0 | 14.6 | |p |36787.342 | | 0.4433 | | |06920 04001| +440023 |SW Ind |203026.2-481459 |RR | 12.5 | 14. | |p | | | | | |06561 06561| +440024 |SX Ind |203043.0-460219 |RRAB | 13.2 | 13.8 | |p |36789.344 | | 0.3252 |20 | |04294 04001| +440025 |SY Ind |203254.3-590709 |EW/KW | 15.0 | 15.5 | |p |36785.367 | | 0.4714 | | |06920 04001| +440026 |SZ Ind |203229.7-552536 |RRAB | 13.9 | 15.4 | |p |36785.227 | | 0.7312 |10 | |06920 04001| +440027 |TT Ind |203337.1-563345 |UGZ | 14.0 |< 16.5 | |p | | |( 15. ) | | |06920 08852| +440028 |TU Ind |203310.6-452601 |UG | 12.9 | 15.54 | |B | | | | | |04294 08852| +440029 |TV Ind *|203354.6-552831 |EB | 11.7 | 12.2 | 11.9 |V |36786.293 | | 0.57686 | | |04183 04208| +440030 |TW Ind |203342.8-461237 |RRAB | 12.5 | 14.1 | |p |36807.304 | | 0.58451 |16 | |04294 04001| +440031 |TX Ind |203447.1-584324 |RRC | 14.9 | 15.5 | |p |36786.354 | | 0.27 | | |06920 04001| +440032 |TY Ind |203618.2-590144 |RRAB | 14.8 | 15.9 | |p |36785.471 | | 0.40644 |15 | |06920 04001| +440033 |TZ Ind |203612.1-532803 |RRAB | 15.0 |< 16.0 | |p |36787.428 | | 0.5723 |20 | |06920 04001| +440034 |UU Ind |203854.1-580358 |RRAB | 13.5 | 15.0 | |p |36785.464 | | 0.4735 |13 | |06920 04001| +440035 |UV Ind |203908.9-542516 |RRAB | 13.0 | 14.0 | |p |36789.313 | | 0.5274 |15 | |06920 04001| +440036 |UW Ind |203906.7-531755 |RRAB | 13.5 | 15.0 | |p |36785.381 | | 0.50615 |10 | |06920 04001| +440037 |UX Ind |203941.0-542733 |RRAB | 14.2 | 15.5 | |p |36784.474 | | 0.6267 |10 | |06920 04001| +440038 |UY Ind |204016.6-540731 |RRAB | 14.0 | 15.5 | |p |36785.374 | | 0.588 |15 | |06920 04001| +440039 |UZ Ind |204044.0-582155 |RRAB | 15.5 |< 17.0 | |p |36805.409 | | 0.5865 |08 | |06920 04001| +440040 |VV Ind |204029.8-531654 |RRAB | 13.2 | 14.1 | |p |36785.332 | | 0.605787 |10 | |06920 04001| +440041 |VW Ind |204100.8-463236 |RRAB | 14.1 | 15.7 | |p |36724.429 | | 0.473024 |13 | |04294 04001| +440042 |VX Ind |204151.4-470643 |RRAB | 11.8 | 13.2 | |p |36678.595 | | 0.615986 |30 | |04294 04001| +440043 |VY Ind |204206.3-470439 |EA | 13.5 | 14.7 | |p |36732.466 | | | | |04294 04001| +440044 |VZ Ind |204227.7-460723 |RRC | 14.2 | 14.8 | |p |36729.501 | | 0.295504 |37 | |04294 04001| +440045 |WW Ind |204449.1-554126 |RRAB | 16.0 |< 17.0 | |p |36784.459 | | 0.58793 |10 | |06920 04001| +440046 |WX Ind |204432.1-461630 |RR | 13.1 | 14.1 | |p |36808.385 | | 0.64 : | | |04294 04001| +440047 |WY Ind |204430.9-454137 |RR | 14.9 | 16.4 | |p |36839.210 | | | | |04294 04001| +440048 |WZ Ind |204619.3-534809 |RRAB | 13.7 | 15.0 | |p |36785.267 | | 0.4373 |07 | |06920 04001| +440049 |XX Ind |204835.3-583816 |E | 15.5 |< 16.0 | |p |36834.337 | | | | |06920 04001| +440050 |XY Ind |204927.0-590430 |RR | 15.0 |< 16.0 | |p |36813.374 | | | | |06920 04001| +440051 |XZ Ind |204835.9-462453 |RRAB | 14.2 | 14.9 | |p |36731.535 | | 0.362853 |31 | |04294 04001| +440052 |YY Ind |204929.7-453534 |RRC | 14.1 | 14.9 | |p |36678.611 | | 0.354792 |45 | |04294 04001| +440053 |YZ Ind |205101.1-582643 |RR | 15.0 |< 16.0 | |p |36834.252 | | | | |06920 04001| +440054 |ZZ Ind |205027.2-453307 |RRAB | 15.9 | 17.1 | |p |36778.328 | | 0.443336 |20 | |04294 04001| +440055 |AA Ind |205033.3-464647 |IS: | 14.4 | 16.1 | |p | | | | | |04294 04001| +440056 |AB Ind |205117.2-460747 |RRAB | 15.2 | 15.9 | |p |36728.452 | | 0.576572 |38 | |04294 04001| +440057 |AC Ind |205320.7-585158 |RRAB | 14.9 |< 16.0 | |p |36815.329 | | 0.45445 |12 | |06920 04001| +440058 |AD Ind |205311.8-544854 |RRAB | 15.2 |< 16.3 | |p |36707.610 | | 0.48775 |10 | |06920 04001| +440059 |AE Ind |205324.4-560128 |EA | 13.4 | 14.7 | |p |36784.449 | | 2.5154 : | | |06920 04001| +440060 |AF Ind |205636.1-591004 |RR | 14.2 | 15.3 | |p | | | | | |06920 04001| +440061 |AG Ind |205938.4-592236 |RRAB | 13.3 | 14.0 | |p |36707.600 | | 0.5568 |10 | |06920 04001| +440062 |AH Ind |205949.7-591607 |RRAB | 13.1 | 14.0 | |p |36815.490 | | 0.6398 | | |06920 04001| +440063 |AI Ind |210510.6-463253 |RR | 15.1 | 16.2 | |p |36839.300 | | | | |04294 04001| +440064 |AK Ind |210912.2-464605 |LB | 9.1 | 9.4 | |p | | | | |M4/5III |04294 04001| +440065 |AL Ind |210957.1-472853 |RRAB | 13.8 | 15.3 | |p |36729.515 | | 0.59183 |20 : | |04294 04001| +440066 |AM Ind |211421.7-452753 |RRC | 14.2 | 14.8 | |p |36807.335 | | 0.4332 | | |04294 04001| +440067 |AN Ind |212119.6-464407 |RRAB | 14.2 | 14.9 | |p |36724.471 | | 0.57205 |14 : | |04294 04001| +440068 |AO Ind |220029.1-502940 |RR | 12.3 | 14.5 | |p | | | | | |06561 06561| +440069 |AP Ind |220544.7-560000 |M: | 12. |< 15. | |p |28891. | | | | |02554 04208| +440070 |AQ Ind |220755.0-595230 |EA | 11. | 13. | |p | | | | | |06561 06561| +440071 |AR Ind *|203119.3-552300 |EW: | 13.9 | 14.4 | 14.4 |p |36786.545 | | 0.6346 | | |06920 04001| +440072 |AS Ind |203228.5-552759 |RR | 13.9 | 14.6 | |p |36786.326 | | 0.3987 : | | |06920 04001| +440073 |AT Ind |203930.3-543636 |RRAB | 16.0 : |< 17.0 | |p |36788.372 | | 0.614 |10 | |06920 04001| +440074 |AU Ind |204616.1-583639 |RR | 15.8 |< 16.9 | |p |36814.282 | | | | |06920 04001| +440075 |AV Ind |211013.6-590017 |M | 12. | 16. | |p | | | | |Me |02935 USNO | +440076 |AW Ind |205355.3-572917 |E: | 13.5 | 14.1 | |p |36816.375 | | | | |06920 04001| +440077 |AX Ind |205605.2-570002 |L | 11.5 | 12.0 | |p | | | | | |06920 04001| +440078 |AY Ind *|214905.8-720609 |UV | 9.9 | 11.26 | |B | | | | |M2Ve |07816 CPD | +440079 |AZ Ind |223330.8-693343 |RR: | 13. | 14. | |p | | | | | |06561 06561| +440080 |BB Ind |203911.3-463543 |LB: | 10.3 | 11.1 | |p | | | | |M2/3 |07969 05937| +440081 |BC Ind |214637.9-673547 |ACV | 7.18 | 7.24 | |V |42619.508 | | 1.788 |40 |B9p(Si) |08312 CPD | +440082 |BD Ind |215656.7-615046 |ACV | 7.5 |( 0.01 )| |V | | | | | |67066 CPD | +440083 |BE Ind |215947.7-593412 |DSCTC | 8.4 |( 0.02 )| |V | | | | | |67448 CPD | +440084 |BF Ind |212158.7-462158 |RR | 18.6 | 19.5 | |B | | | | | |68127 68127| +440085 |BG Ind |215830.1-590044 |EA | 6.11 | 6.36 | |V | | | | | |68303 CPD | +440086 |BH Ind |212819.9-524915 |RS | 9.44 | 9.89 | |V | | | | | |69011 CPD | +440087 |BI Ind |231352.8-681729 |RS | 7.65 | 7.70 | |V | | | | | |73181 CPD | +440088 |BK Ind |203034.6-495119 |EA | 10.30 | 10.84 | |Hp| | | | | |HIP HIP | +440089 |BL Ind |203242.0-572907 |LB | 8.76 | 9.02 | |Hp| | | | | |HIP HIP | +440090 |BM Ind |204101.4-515251 |LB | 8.85 | 9.05 | |Hp| | | | | |HIP HIP | +440091 |BN Ind |204201.5-501546 |SRB | 7.51 | 7.64 | |Hp| | | | | |HIP HIP | +440092 |BO Ind |204416.5-535040 |EW | 8.41 | 8.61 | |Hp| | | | | |HIP HIP | +440093 |BP Ind |205042.9-561430 |BY: | 9.05 | 9.17 | |Hp| | | | | |HIP HIP | +440094 |BQ Ind |205533.7-564431 |SXPHE | 9.78 | 10.05 | |Hp| | | | | |HIP HIP | +440095 |BR Ind |211122.8-522021 |EA | 7.08 | 7.22 | |Hp| | | | | |HIP HIP | +440096 |BS Ind |212059.8-522840 |EA | 9.01 | 9.32 | |Hp| | | | | |HIP HIP | +440097 |BT Ind |213200.7-584855 |SRB | 7.87 | 8.52 | |Hp| | | | | |HIP HIP | +440098 |BU Ind |214431.2-650334 |LB: | 10.09 | 10.32 | |Hp| | | | | |HIP HIP | +440099 |BV Ind |214635.7-575948 |LB: | 8.98 | 9.08 | |Hp| | | | | |HIP HIP | +440100 |BW Ind |215908.3-714455 |SRD: | 9.14 | 9.20 | |Hp| | | | | |HIP HIP | +440101 |BX Ind |220139.8-540926 |DSCTC | 7.94 | 8.03 | |Hp| | | | | |HIP HIP | +440102 |BY Ind |220855.6-703119 |LB | 8.86 | 9.04 | |Hp| | | | | |HIP HIP | +440103 |BZ Ind |221153.2-675625 |LB: | 8.72 | 8.89 | |Hp| | | | | |HIP HIP | +440104 |CC Ind |231637.8-701504 |SRB: | 6.66 | 7.36 | |Hp| | | | | |HIP HIP | +440105 |CD Ind |211540.9-584053 |XM | 16.0 | 17.9 | |V | | | | | |75151 75151| +440106 |CE Ind |215143.5-731010 |ACV | 8.86 |( 0.02 )| |V | | | | | |75026 CPD | +440107 |CF Ind |213940.9-513422 |DSCTC | 7.76 | 7.81 | |Hp| | | | | |76009 DM | +440108 |CG Ind |211031.3-484959 |SRA | 10.7 | 12.4 | |V |52761 | | 202. | |Me |78090 GSC | +440109 |CH Ind *|212942.6-502032 |EA | 7.50 | 8.18 | 8.14 : |V |52854.862 | | 5.9532 |07 |A9V |78011 DM | +440110 |CI Ind *|220410.5-564658 |* | 15.60 | 15.67 | |Ic| | | | |T1+T6 |78153 2MASS| +440111 |CK Ind *|220438.4-644342 |GDOR | 7.36 | 7.44 | |Hp| | | 0.8853 | |A9/F0V |78301 DM | +440112 |CL Ind |222055.8-741512 |SRA | 11.3 | 11.9 | |p |23980. | | 382. | | |00210 | +440113 |CM Ind |213230.3-735335 |SRB | 7.77 | 7.93 | |Hp| | | | | |HIP HIP | +440114 |CN Ind |204539.2-510243 |EW | 9.43 | 9.87 | 9.82 |V |52783.760 | | 0.45364 | |F6:V: |79011 DM | +440115 |CO Ind |205629.6-475043 |EB | 10.64 | 11.25 | 10.93 |V |52175.543 | | 0.597959 | |A2/3V: |79018 79020| +440116 |CP Ind |210705.5-540453 |EA | 12.15 | 14.12 | 12.35 |V |52930.544 | | 2.85739 |10 | |79018 79071| +440117 |CQ Ind *|213103.3-505049 |EA | 8.38 | 8.8 : | 8.75 : |V |52625.750 | | 26.921 |02 : |F7V |79011 DM | +440118 |CR Ind |213345.1-673349 |EW | 12.05 | 12.7 | 12.7 |V |52900.626 | | 0.390816 | | |79018 79121| +440119 |CS Ind |215954.5-685037 |UG | 11.9 |< 17. | |V | | | (89.) | | |79229 79071| +440120 |CT Ind |222946.2-713109 |EA | 12.6 | 13.4 | 12.93 |V |52563.625 | | 0.832102 |14 | |79018 79124| +440121 |CU Ind |223717.6-692909 |EW | 12.50 | 13.21 | 13.08 |V |52134.686 | | 0.337259 | | |79004 79121| +440122 |CV Ind |224039.7-681417 |M | 11.3 | 14.0 | |V |53888. | | 128. | | |79100 79106| +440123 |CW Ind |230056.6-691642 |RV: | 11.5 | 11.95 | |V |51869.540 | | 121.21 | | |79018 79121| +440124 |CX Ind |210121.2-493307 |BY | 10.70 | 11.35 | |V | | | 6.238 | |K7V |80034 DM | NL80_3 +440125 |CY Ind |212044.1-543759 |RS | 10.3 | 10.9 | |V | | | 2.3988 | |K0III |80034 GSC | NL80_3 +440126 |CZ Ind *|212433.2-571204 |RRAB | 12.8 | 13.9 | |V |54672.758 | | 0.60514 |15 | |80153 GSC | NL80_3 +440127 |DD Ind |212447.1-471051 |EW | 12.10 | 12.88 | 12.82 |V |52872.914 | | 0.362746 | | |80365 80365| NL80_3 +440128 |DE Ind |214057.0-573443 |RRAB | 12.0 | 13.1 | |V |52902.693 | | 0.480757 |14 | |80135 GSC | NL80_3 +440129 |DF Ind |215751.5-681250 |RS | 8.76 | 8.94 | |V | | | 3.37668 | |G8V |80001 HIP | NL80_3 +440130 |DG Ind |221842.4-695301 |RRAB | 13.55 | 14.8 | |V |52085.89 | | 0.460222 |15 : | |80135 GSC | NL80_3 +440131 |DH Ind |223211.6-681856 |RRAB | 13.55 | 14.3 | |V |52548.608 | | 0.576158 |13 | |80135 GSC | NL80_3 +450001 |R Lac *|224315.6+422211 |M | 8.5 | 14.8 | |V |41526. | | 299.86 |41 |M5e-M8.5e |00001 00002| +450002 |S Lac *|222900.9+401856 |M | 7.6 | 13.9 | |V |43804. | | 241.50 |46 |M4e-M8.2e |00001 00002| +450003 |T Lac | | | | | | | | | | | | |=V0410 Peg +450004 |U Lac *|224743.4+550930 |SRC | 9.4 | 12.1 | |p | | | | |M4epIab+B |00882 00098| +450005 |V Lac *|224838.0+561918 |DCEP | 8.38 | 9.42 | |V |28901.285 | | 4.983458 |25 |F5-G0 |09288 00884| +450006 |W Lac *|220729.8+374407 |M | 10.3 |< 15.0 | |p |39439. | | 328.5 | |M7e-M8e |00001 00100| +450007 |X Lac *|224903.2+562542 |DCEPS | 8.20 | 8.64 | |V |42738.132 | | 5.444990 |38 |F6-G0 |08632 00884| +450008 |Y Lac |220902.9+510245 |DCEP | 8.76 | 9.50 | |V |41746.745 | | 4.323776 |34 |F5-G0 |08300 00102| +450009 |Z Lac *|224052.1+564946 |DCEP | 7.88 | 8.93 | |V |42827.123 | | 10.885613 |43 |F6Ib-G6Ib |09029 00884| +450010 |RR Lac *|224126.5+562558 |DCEP | 8.38 | 9.30 | |V |42776.686 | | 6.416243 |30 |F6-G2 |08632 00884| +450011 |RS Lac |221252.5+434501 |SRD | 9.6 | 12.5 | |V |40884. | | 237.26 |53 |K0 |00001 00002| +450012 |RT Lac *|220130.7+435326 |EB/AR/RS | 8.84 | 9.89 | 9.62 |V |44873.3648 | | 5.0739496 | |G9IV+K1IV |09292 00010| +450013 |RU Lac |225619.5+482843 |M | 10.8 |< 13.0 | |p |35310. | | 203.24 | |M1-M7 |00001 06286| +450014 |RV Lac *|224440.9+494357 |SRB | 11.0 | 12.7 | |p | | | 67. | |M4 |00197 00098| +450015 |RW Lac *|224457.1+493928 |EA/DM | 10.4 | 11.0 : | 10.8 |p |18657.440 | | 10.36922 |04 *|F2 |00522 00522| +450016 |RX Lac *|224956.9+410304 |SRB | 9.1 | 11.3 | |p | | | 650. : |32 |M7.5Se |08021 08953| +450017 |RY Lac *|221215.6+435004 |SRB | 12.5 | 13.2 | |p | | | | |M6 |00104 00002| +450018 |RZ Lac |223540.5+524437 |GCAS: | 8.2 | 9.3 | |p | | | | |B7e |00572 BD | +450019 |SS Lac *|220441.5+462538 |EA/D | 10.1 | 10.5 | 10.5 |p |15900.76 | | 14.41629 |05 |B7 |00063 00010| +450020 |ST Lac *|224317.5+434029 |M | 12.7 |< 16. | |p |33195. | | 312.5 | | |00001 06286| +450021 |SU Lac *|222257.0+553041 |M | 11.3 | 16. | |p |44216. | | 302.0 |40 : |M5e: |00001 06286| +450022 |SV Lac |223613.1+525904 |M | 12.6 |< 16.5 | |p |24590. | | 305. | |M7e |01809 00856| +450023 |SW Lac *|225341.7+375619 |EW/KW | 8.51 | 9.39 | 9.31 |V |45275.3477 | | 0.3207209 | |G8Vp+G8Vp |00001 00010| +450024 |SX Lac |225600.0+351145 |SRD | 9.0 | 10.0 | |p | | | 190.0 |47 |K2 |01026 08953| +450025 |SY Lac |222732.4+500156 |S: | 13.3 | 14.3 | |p | | | | | |01812 01812| +450026 |SZ Lac |224045.8+515117 |M | 12.8 |< 16.5 | |p |25678. | | 332.5 | |S |00001 01812| +450027 |TT Lac |224622.3+525839 | | 13.6 | 14.3 | |p | | | | | |01812 01812| +450028 |TU Lac |225456.6+365142 |M | 11.7 |< 15.0 | |p |27307. | | 277. | |M |00230 06286| +450029 |TV Lac |225607.4+541346 |LB | 11.5 | 12.3 | |p | | | | |C4,5(N3) |00098 00098| +450030 |TW Lac *|223026.3+543706 |EA/SD | 11.5 | 13.3 | |V |41500.534 | | 3.037417 |15 |A2 |09084 02217| +450031 |TX Lac |224551.2+550435 |LB | 11.2 | 12.9 | |p | | | | |C3:,4J(R5) |09299 00098| +450032 |TY Lac |220646.7+512949 |M | 13.3 |< 15.7 | |p |33916. | | 304. | |M8: |00131 00131| +450033 |TZ Lac *|221412.3+495618 |EA/SD | 13.9 | 15.8 | |p |24775.591 | | 2.875086 |12 *| |05862 05862| +450034 |UU Lac |221433.0+514258 |M | 14.2 |< 16.5 | |p |34334. | | 322. | |M5: |00001 00131| +450035 |UV Lac |221726.4+525721 |M | 14.0 |< 16.5 | |p |32824. | | 305. | | |00131 00131| +450036 |UW Lac *|222039.8+422429 |EA/SD | 11.4 | 12.5 |( 0.05 )|p |37188.335 | | 5.29023 |12 |A |06087 01813| +450037 |UX Lac |222131.0+502624 |M | 13.2 |< 16.0 | |p |33918. | | 218.2 | | |00001 00131| +450038 |UY Lac *|222551.8+461128 |EA/DS | 12.3 | 13.7 | |V |35782.44 | | 11.4489 |09 | |02931 01799| +450039 |UZ Lac *|222558.8+510602 |M | 13.8 |< 16.0 | |p |24725. | | 363. | |M9: |01180 00856| +450040 |VV Lac |222954.8+522856 |EA/SD | 13.9 |< 15.5 | |p |24492.37 | | 3.4547 | | |01180 00856| +450041 |VW Lac |223440.4+540215 |M | 12.3 |< 16.5 | |p |36835. | | 300.2 | |M9 |02931 00856| +450042 |VX Lac *|224100.6+381920 |EA/SD | 10.9 | 13.0 | |p |45258.466 | | 1.0744942 |15 *|F0 |00001 01142| +450043 |VY Lac *|224959.1+450016 |EB/KE | 10.2 | 11.0 | 10.6 |p |43749.467 | | 1.03625 | |A2 |00001 00279| +450044 |VZ Lac |220659.9+512210 |M: | 14.2 |< 16.5 | |p | | | | | |01180 00856| +450045 |WW Lac |221016.9+505834 |SRB | 14.4 | 15.5 | |p |24794. | | 550. | |M5: |01180 00856| +450046 |WX Lac |221242.5+541528 |CEP | 13.9 | 15.1 | |p |24776. | | 7.516 |40 | |01180 00856| +450047 |WY Lac *|221301.9+522415 |SRB | 12.6 | 14.4 | |p | | | 850. | |M6.5 |01814 01814| +450048 |WZ Lac |221517.6+541153 |SRA | 13.6 | 14.8 | |p |24840. | | 287. |44 |M6 |01180 00856| +450049 |XX Lac *|221710.2+500111 |EA | 14.6 | 15.6 | |p | | | | | |01180 00856| +450050 |XY Lac |221835.1+524813 |SRB | 12.7 | 13.6 | |p | | | 180. : | |M4 |01814 01814| +450051 |XZ Lac *|221858.2+494423 |RRAB | 12.8 | 13.9 | |p |37888.54 | | 0.6302 |21 | |03148 00856| +450052 |YY Lac |221927.6+510944 |SRB | 12.9 | 14.3 | |p | | | 140. : | |M6S |01815 00856| +450053 |YZ Lac |222111.4+511954 |SRA | 14.3 | 15.5 | |p |24838. | | 190. |37 |M7 |01180 00856| +450054 |ZZ Lac |222223.2+513304 |E | 13.6 | 15.8 | |p |25121.35 | | 2.889 |10 : | |01180 00856| +450055 |AA Lac |222310.2+524135 |LB | 13.2 | 14.8 | |p | | | | |M5-M6.5 |05862 05862| +450056 |AB Lac |222432.8+504639 |LB | 13.8 | 15.1 | |p | | | | |M6 |01814 01814| +450057 |AC Lac |222513.6+511830 |EA/SD | 14.7 | 15.9 | |p |24829.32 | | 1.6192 | | |01180 00856| +450058 |AD Lac |222515.8+520841 |SRB | 14.5 | 15.7 | |p | | | 145. | |M6 |01180 01814| +450059 |AE Lac |222608.1+511936 |EA/SD: | 14.2 | 15.1 | |p |24492.45 | | 1.4207 | | |01180 00856| +450060 |AF Lac |222633.9+504203 |LB: | 13.8 | 15.0 | |p | | | | |M5 |01180 00856| +450061 |AG Lac *|222718.7+522305 |EB/SD | 13.6 | 15.0 | 14.0 |p |24786.34 | | 0.75218 | | |01180 00856| +450062 |AH Lac |222837.5+522959 |M | 13.9 |< 16. | |p |24820. | | 273. | | |01180 00856| +450063 |AI Lac |223352.9+503932 |EA | 13.7 | 15.1 | |p |24775.51 | | 2.80832 | | |01180 00856| +450064 |AK Lac |223628.9+523829 |EA | 12.8 | 13.4 | |p |24492.4 | | 18.435 |11 | |01180 00856| +450065 |AL Lac |223816.3+521337 |LB | 13.6 | 15.7 | |p | | | | |M6.5 |01180 00856| +450066 |AM Lac |223902.8+514139 |M | 13.5 |< 16.5 | |p |24935. :| |> 250. | |M5 |01180 00856| +450067 |AN Lac |224139.4+535709 |M: | 14.7 |< 16.5 | |p |25080. | |> 400. | |M9 |01180 00856| +450068 |AO Lac |224241.9+513119 |M | 12.7 | 15.9 | |p |25030. | | 300. |45 |Ce |01180 00856| +450069 |AP Lac |220651.7+482756 |M | 11.3 |< 19. | |p |33483. | | 524. | |M9: |01814 01814| +450070 |AQ Lac |220738.8+470031 |M | 11.7 | 16. | |p |36790. | | 362.9 | | |02931 00530| +450071 |AR Lac *|220840.8+454432 |EA/AR/RS | 6.08 | 6.77 | 6.43 |V |41593.7123 | | 1.98319204 |15 |G2IV-V+K0IV |09313 00010| +450072 |AS Lac |220932.4+474245 |M | 12.3 | 18. | |p |33920. | | 218.2 | |M2 |01817 00530| +450073 |AT Lac |221057.5+462727 |M | 12.4 | 15.8 | |p |32770. | | 171.3 | | |00001 00530| +450074 |AU Lac *|221517.1+484317 |EA/SD | 12.0 | 13.2 | 12.2 |p |34195.441 | | 1.392441 |18 *|A |08089 00098| +450075 |AV Lac |221621.9+474424 |M | 12.5 |< 15.4 | |p |33516. | | 347.0 | | |00001 00131| +450076 |AW Lac *|221757.9+542802 |EB/KE | 10.6 | 11.3 | 11.2 |p |26624.222 | | 1.1428498 | |A0 |01818 00279| +450077 |AX Lac |222126.9+492338 |EA | 15.0 | 15.9 | |p |25622.313 | | 3.4778 |14 | |01155 00530| +450078 |AY Lac |222222.1+502340 |M: | 14.5 |< 20. | |p |37885. | | 1159. /N| | |03148 00530| +450079 |AZ Lac |222326.1+471912 |M | 14.9 |< 18. | |p |25556. | | 297. | | |01155 00530| +450080 |BB Lac |222838.4+475813 |EA/SD | 13.0 | 14.6 | |p |25328.612 | | 3.86596 |10 |A0 |01155 00530| +450081 |BC Lac |223659.9+450156 |M | 12.2 | 15.7 | |p |25451. | | 247. | |M5 |01155 00530| +450082 |BD Lac |223658.7+485012 |LB | 13.1 | 15.5 | |p | | | | | |01155 00530| +450083 |BE Lac |223913.2+482057 |LB | 12.6 | 13.7 | |p | | | | |C4,4(N) |00098 00098| +450084 |BF Lac |224203.8+491910 |LB | 14.5 | 15.5 | |p | | | | | |01155 00530| +450085 |BG Lac |220025.1+432643 |DCEP | 8.51 | 9.18 | |V |35315.273 | | 5.331908 |33 |F7-G4 |01821 01142| +450086 |BH Lac *|223452.0+513027 |IA: | 11.0 | 12.8 | |p | | | | |A0 |00098 00098| +450087 |BI Lac |220049.0+424539 |SRB | 12.9 | 14.3 | |p | | | 150. | |M3 |01155 00133| +450088 |BK Lac |220219.7+433444 |SRA | 13.8 | 14.9 | |p |33483. | | 295.8 | |C6-,3(R) |01815 00133| +450089 |BL Lac *|220243.3+421640 |BLLAC | 12.4 | 17.2 | |B | | | | | |09325 06090| +450090 |BM Lac *|220817.8+450025 |SRB | 13.9 | 15.2 | |p |25830. | | 146.4 | |M0 |01155 01814| +450091 |BN Lac |220939.0+471510 |M | 13.1 |< 15.2 | |p |33473. | | 331.3 | | |01815 00133| +450092 |BO Lac |221456.6+422045 |LB | 13.0 | 14.9 | |p | | | | | |01155 01814| +450093 |BP Lac |221528.6+444520 |EA | 15.0 | 16.2 | |p |37959.37 | | 2.04568 |08 | |03148 00133| +450094 |BQ Lac |221549.9+460032 |SR | 13.3 | 14.9 | |p |25310. | | 209. | | |01155 01814| +450095 |BR Lac |221707.9+462621 |SRA | 13.6 | 15.4 | |p |25705. | | 350. | | |01155 00133| +450096 |BS Lac |221937.3+441703 |EA/SD | 13.5 | 16.2 | |p |37906.54 | | 2.81420 |12 *| |05709 01819| +450097 |BT Lac *|222413.8+561134 |RVB | 12.8 | 15.7 | |p |32791.5 | | 40.50 | |G8 |01822 01822| +450098 |BU Lac *|222846.6+503412 |SRB | 10.8 | 14.0 | |p |15800. | | 2000. | |M0 |00098 00098| +450099 |BV Lac |223013.5+465313 |SRA | 13.7 | 15.5 | |p |25290. | | 202. | | |01155 00133| +450100 |BW Lac |223235.0+482543 |EA/DS | 13.8 | 15.6 | |p |25622.26 | | 12.1080 |12 *| |03148 00133| +450101 |BX Lac |223332.5+563856 |M | 13.0 |< 15. | |p |37897. | | | |M10 |03532 00133| +450102 |BY Lac |223612.1+481626 |SRB | 12.4 | 14.0 | |p | | | 160. : | |M6 |00098 00098| +450103 |BZ Lac |223906.5+461525 |SRA | 14.4 | 15.2 | |p |25513. | | 80.5 | | |01155 00133| +450104 |CC Lac |224242.8+515002 |M | 12.0 | 16.7 | |p |31082. | | 302.4 |23 : | |02267 00133| +450105 |CD Lac |224328.9+493541 |SRB | 13.7 | 15.4 | |p | | | 70. : | | |01155 00133| +450106 |CE Lac |224344.9+432600 |SRB | 13.6 | 14.6 | |p | | | 107. | |S |01155 00133| +450107 |CF Lac |224406.8+473035 |EA/SD | 13.5 | 14.9 | |p |29642.268 | | 4.707666 |12 *| |01155 00133| +450108 |CG Lac *|224457.1+490638 |EA/SD | 13.9 | 15.0 | 14.0 |p |29627.255 | | 0.8193938 |16 | |01155 00133| +450109 |CH Lac |224505.8+495412 |RRAB | 13.8 | 15.0 | |p |29515.496 | | 0.5245599 |30 | |07430 00133| +450110 |CI Lac |224526.3+452139 |SRA | 14.4 | 15.5 | |p |25513. | | 206. | | |01155 00133| +450111 |CK Lac |224634.9+482748 |RV | 14.9 | 16.0 | |p |25590. | | 279. | | |01155 00133| +450112 |CL Lac |225135.2+522022 |M | 12.2 | 15.0 | |p |28773. | | 413.8 |40 |M6.5 |00098 00098| +450113 |CM Lac *|220004.5+443308 |EA/DM | 8.18 | 9.15 | 8.53 |V |27026.316 | | 1.6046916 |11 *|A2V+A8V |01823 00010| +450114 |CN Lac *|220608.5+461835 |EB/DW | 12.4 | 12.9 | 12.6 |p |26267.373 | | 0.6373744 | |G3 |01824 | +450115 |CO Lac *|224630.0+564932 |EA/DM | 10.28 | 10.89 | 10.79 |V |27534.0728 | | 1.5422075 |13 *|B8.5IV+B9.5V |05710 01965| +450116 |CP Lac |221541.1+553702 |NA | 2.1 | 16.6 : | |p |28340.0 |1936 | | |pec(NOVA) |00488 00002| +450117 |CQ Lac |222110.4+394313 |RRAB | 11.5 | 13.0 | |p |35036.386 | | 0.620040 |10 |A1 |09330 01089| +450118 |CR Lac |224155.7+510829 |EA | 13.9 | 14.7 | |p | | | | | |01180 00856| +450119 |CS Lac *|215942.7+423416 |EB/DM | 9.3 | 9.7 | 9.4 |p |27695.478 | | 3.797807 | |B5V |03376 01142| +450120 |CT Lac |220639.9+482707 |SRA | 10.6 | 17.2 | |p |41110. | | 555. |62 |C6-,4(R) |04972 06566| +450121 |CU Lac |221618.0+512503 |LB: | 14.4 | 15.4 | |p | | | | |M6 |01814 01814| +450122 |CV Lac |222620.1+511710 |LB | 13.1 | 13.9 | |p | | | | |M5 |01180 00856| +450123 |CW Lac |223631.6+564606 |LB | 12.1 | 13.2 | |p | | | | |M0: |01251 01826| +450124 |CX Lac |220746.0+400627 |SRD | 9.5 | 10.6 | |p | | | 133. |55 |K5 |01142 01142| +450125 |CY Lac |221308.7+543334 |EA/DM | 11.5 | 11.8 | |p |28746.219 | | 2.78694 |13 *|B5 |00150 00150| +450126 |CZ Lac *|221930.8+512815 |RRAB | 10.77 | 11.26 | |V |45178.328 | | 0.432205 |14 |A8-F5 |09334 01442| +450127 |DD Lac *|224128.6+401332 |BCEP | 5.16 | 5.28 | |V |43063.774 | | 0.1930924 |50 |B1.5III |00001 BD | +450128 |DE Lac *|221007.8+405511 |DSCT | 10.08 | 10.43 | |V |42659.819 | | 0.2536934 |33 |F5-F8 |08114 01142| +450129 |DF Lac *|222116.9+543156 |DCEP | 11.53 | 12.20 | |V |37393.211 | | 4.47925 |31 |F6pIb-F9pIb |01828 01828| +450130 |DG Lac *|222849.9+534616 |EA/SD | 10.8 | 12.0 | |p |44509.387 | | 2.206534 |16 *|A5 |00001 05862| +450131 |DH Lac *|221221.6+392556 |M | 11.6 | 14.6 | |p |41221. | | 288.8 | |M5e |00001 01089| +450132 |DI Lac |223548.6+524300 |NA | 4.3 | 14.91 | |B |19000.5 |1910 | | |pec(NOVA) |01829 00566| +450133 |DK Lac |224947.0+531720 |NA | 5.0 : | 15.5 | |p |33304. |1950 | | |pec(NOVA) |01831 01831| +450134 |DL Lac |215837.1+414625 |M | 12.5 |< 17. | |p |31327. | | 375. | | |01262 02374| +450135 |DM Lac *|220435.6+525359 |M | 14.0 | 18.1 | |p |34029. | | 347.3 | |M7 |05862 05862| +450136 |DN Lac |220628.9+511054 |M | 14.5 |< 18.0 | |p |34227. | | 335.0 | | |05862 05862| +450137 |DO Lac *|220737.1+474440 |LB: | 14. | 15.5 | |p | | | | |M8 | 02374| +450138 |DP Lac |221453.4+552117 |M | 16. |< 17.5 | |p | | | | | |00085 02374| +450139 |DQ Lac |222656.7+564939 |M | 15.5 |< 17. | |p | | | | | |00085 02374| +450140 |DR Lac |223922.7+513235 |M | 16. |< 17.5 | |p | | | | | |00085 02374| +450141 |DS Lac |224254.3+551842 |M | 13.2 |< 17.3 | |p |34690. | | 320.0 | |M6 |00001 05862| +450142 |DT Lac |224345.4+521519 |M | 15.5 |< 17.5 | |p | | | | | |00085 02374| +450143 |DU Lac |224502.6+525828 |M | 15.1 |< 17. | |p |28433. | | 269.9 | | |02267 02287| +450144 |DV Lac |224504.3+563719 |LB | 12.1 | 14.6 | |p | | | | |C4,3(N) |02267 02375| +450145 |DW Lac |224634.0+525141 |M | 14.9 |< 17.5 | |p |29125. | | 274. | | |02267 02375| +450146 |DX Lac |224704.5+522130 |M | 15.1 |< 17.5 | |p |29203. | | 278.6 | | |02267 02375| +450147 |DY Lac |224719.3+535907 |EA/SD | 14.6 | 17.6 | |p |29111.555 | | 2.791113 |15 | |03379 02375| +450148 |DZ Lac |224822.6+491200 |M | 14.5 |< 17. | |p |28327. | | 427. /N| |M8 |02267 02375| +450149 |EE Lac |224842.2+521712 |EA | 15. |< 17. | |p | | | | | |00085 02374| +450150 |EF Lac |224949.6+483755 |M | 12.3 | 16. | |p |28399. | | 167.7 | | |02267 02344| +450151 |EG Lac *|225038.9+551452 |UGSS | 15.5 | 19. : | |p | | | | | |02267 02375| +450152 |EH Lac |225155.6+512514 |EA | 13.6 | 16.8 | |p |31352.428 | | | | |02267 02287| +450153 |EI Lac |225544.4+494529 |LB: | 14.5 | 15.1 | |p | | | | | |02267 02344| +450154 |EK Lac |220449.8+494011 |EA/KE: | 11.2 | 11.7 | |p |32824.253 | | 1.537316 |15 *|A1 |01833 01833| +450155 |EL Lac |220853.7+421621 |EA/SD | 12.4 | 16.0 | |p |25502.578 | | 2.806792 |10 *| |06087 | +450156 |EM Lac *|222354.8+540110 |EW/KW | 12.50 | 13.09 | 13.09 |V |38259.5444 | | 0.38913342 | |F |07431 05862| +450157 |EN Lac *|225623.6+413614 |BCEP+EA/D | 5.41 |( 0.11 )| |B | | | |50 |B2IV |09343 BD | +450158 |EO Lac *|222512.2+551231 |EA/SD | 12.7 | 14.6 | 12.9 |p |33186.580 | | 4.575297 |18 *|A0 |05862 05862| +450159 |EP Lac *|222734.4+542536 |EA/SD | 12.4 | 13.4 |( 0.04 )|p |33187.584 | | 2.0558257 |21 *|B9 |05862 05862| +450160 |EQ Lac |221208.8+484344 |EA/SD | 13.0 | 15.0 : | |p |32800.522 | | 2.603647 |16 | |01317 01317| +450161 |ER Lac *|221903.2+514109 |EA/SD | 14.0 | 16.5 |( 0.05 : )|p |32822.361 | | 2.945451 |14 *| |05862 05862| +450162 |ES Lac *|223206.3+535733 |EA/DM | 11.0 | 11.6 | 11.6 |p |34240.416 | | 4.459349 | |A2 |07432 05862| +450163 |ET Lac |215906.3+410356 |SR | 13.4 | 14.8 | |p | | | | | |01262 02374| +450164 |EU Lac *|222531.9+514339 |EA/DM | 12.1 | 12.6 | |p |33209.361 | | 2.332488 |10 *|A0 |05862 05862| +450165 |EV Lac *|224649.7+442002 |UV+BY | 8.28 | 11.83 | |B | | | | |M4.5Ve |03380 09349| +450166 |EW Lac *|225704.5+484103 |GCAS | 5.22 | 5.48 | |V | | | | |B3III-IVpeV |01838 BD | +450167 |EX Lac *|224103.7+522742 |EA/SD: | 13.6 | 14.6 | |p |24795.53 | | 1.739293 |16 | |02267 00856| +450168 |EY Lac |224148.3+542424 |EA | 13.8 | 14.8 | |p |29117.576 | | 2.277862 |16 | |02267 02375| +450169 |EZ Lac |224242.3+505838 |EA | 14.3 | 15.5 | |p |29231.368 | | 2.790814 |10 *| |02267 02287| +450170 |FF Lac |224322.4+480053 |LB: | 14.0 | 15.5 | |p | | | | | |02267 02374| +450171 |FG Lac |224353.5+525819 |L | 12.7 | 13.9 | |p | | | | | |02267 02287| +450172 |FH Lac |224512.2+502510 |L | 13.7 | 14.9 | |p | | | | | |02267 02344| +450173 |FI Lac |224503.8+553222 |EA | 13.0 | 13.5 | |p |28453.419 | | 4.257945 |10 : | |02267 02375| +450174 |FK Lac |224633.6+520928 |EA/DS | 13.0 | 13.8 | |p |29872.279 | | 10.98114 |17 | |02267 02344| +450175 |FL Lac |224950.3+511549 |EA | 12.9 | 13.8 | |p |28339.492 | | 1.107323 |18 *| |02267 02374| +450176 |FM Lac |225110.9+530646 |SR | 14.0 | 15.2 | |p |27958. | | 227. | | |02267 02344| +450177 |FN Lac |225133.5+504631 |SRA | 11.9 | 12.7 | |p |28442. | | 128.5 |50 : |M5: |02267 02375| +450178 |FO Lac |225201.1+505809 |LB | 12.4 | 14.3 | |p | | | | |M6-M8 |03381 02375| +450179 |FP Lac |225343.9+505240 |EA | 13.1 | 14.4 | |p |29640.259 | | 4.480083 |05 *| |02267 02287| +450180 |FQ Lac *|225437.7+541556 |CEP: | 13.5 | 15.4 | |p |29187.5 | | 11.2664 |31 | |02267 02287| +450181 |FR Lac |224857.9+541236 |EA | 15.2 | 16.1 | |p |31353.413 | | | | |02267 02375| +450182 |FS Lac |225314.4+475807 |E | 14.7 | 15.6 | |p |30582.457 | | | | |02267 02375| +450183 |FT Lac |225427.6+482558 |E | 13.9 | 14.8 | |p |31344.388 | | | | |02267 02375| +450184 |FU Lac *|220026.7+435120 |EA | 15.8 | 17.2 | |p |29102.410 | | 2.289082 |10 | |07010 04341| +450185 |FV Lac |221848.1+404040 |M | 13.0 |< 15.5 | |p |36860. | | 198.5 | | |06087 04321| +450186 |FW Lac |222125.5+453900 |LB | 9.8 | 10.7 | |p | | | | |MB |04396 04396| +450187 |FX Lac |222425.4+460851 |EA/SD | 14.4 | 16.0 | |p |25361.53 | | 1.42789 |14 *| |03148 02377| +450188 |FY Lac |223235.5+453146 |I | 11.0 | 11.9 | |p | | | | | |04397 04397| +450189 |FZ Lac |223452.7+450509 |SRA | 10.6 | 11.4 | |p |36786. | | 60. | |M |04015 BD | +450190 |GG Lac |223744.6+494250 |SRA | 14.3 | 15.2 | |p |25470. | | 150. | | |03148 00856| +450191 |GH Lac |223936.2+471749 |EA | 14.3 | 15.0 | |p |25423.506 | | 0.532645 |26 *| |03148 02377| +450192 |GI Lac |224040.6+500037 |SRB | 11.9 | 13.0 | |p | | | | |M8 |05862 05862| +450193 |GK Lac |224156.2+502800 |SR | 11.6 | 12.0 | |p | | | | |MIII |04015 02374| +450194 |GL Lac |224407.5+553521 |ACV | 8.73 | 8.90 | |V |36864.88 | | 9.4871 |57 |B8p(Si) |07553 04323| +450195 |GM Lac |225600.8+432340 |M | 12.9 |< 15.2 | |p |36184. | | 327. | | |08021 04321| +450196 |GN Lac |220651.5+432257 |RR | 15. | 16. | |p | | | | | |03776 03776| +450197 |GO Lac |221106.1+473716 |EA | 15. | 16. | |p |38373.26 | | | | |03905 03905| +450198 |GP Lac |221217.5+453053 |RR | 15.5 | 16.5 | |p |37939.477 | | | | |03776 03776| +450199 |GQ Lac |221756.6+544545 |M | 13.6 | 16.8 | |p |33245. | | 334.5 | | |05862 05862| +450200 |GR Lac |221956.5+461921 |M | 15. |< 17.5 | |p |37935. | | | | |03776 03776| +450201 |GS Lac *|222620.2+531615 |EA/SD | 15.1 | 17.0 | 15.2 |p |33271.329 | | 1.6771710 |20 *| |05862 05862| +450202 |GT Lac |223030.0+454941 |EA | 15.5 | 17. | |p |38800.32 | | | | |03776 03776| +450203 |GU Lac |223435.2+450415 |M | 15. |< 17.5 | |p |37940. | | | | |03776 03776| +450204 |GV Lac |224127.3+563910 |M | 14.4 |< 17.9 | |p |34900. | | 467. | | |05862 05862| +450205 |GW Lac |224541.7+531434 |EA | 15. | 16. | |p |38287.60 | | | | |03905 03905| +450206 |GX Lac *|224616.8+565108 |EA/DM | 10.1 | 10.40 | 10.23 |V |39749.3973 | | 6.3552563 |04 |B8 |00001 09314| +450207 |GY Lac |224746.2+551813 |M | 14.5 |< 17.5 | |p | | | | | |03905 03905| +450208 |GZ Lac |225639.2+534826 |EA | 15. | 16. | |p |39058.41 | | | | |03903 03903| +450209 |HH Lac |225632.0+550243 |EA | 14. | 15.5 | |p |31316.46 | | | | |03903 03903| +450210 |HI Lac |225648.6+534748 |EA | 15. | 18. | |p |30377.26 | | | | |03903 03903| +450211 |HK Lac *|220456.6+471405 |RS | 6.77 | 7.04 | |V | | | 25.83 | |K0III-IVpeaV |08933 BD | +450212 |HL Lac |224515.1+505154 |M | 12.8 |< 15.2 | |V | | | 370. | | |73011 73011| +450213 |HM Lac *|220255.4+524710 |EA | 16.7 | 18.0 |( 0.05 )|p |32768.533 | | 2.370977 |13 *| |05862 05862| +450214 |HN Lac *|220315.6+522029 |EA/KE | 14.3 | 14.9 | 14.7 |p |34413.224 | | 1.4098913 |18 | |05862 05862| +450215 |HO Lac |220409.1+530558 |RRAB | 14.6 | 15.4 | |p |34004.2823 | | 0.5856804 |37 | |05862 05862| +450216 |HP Lac |220423.8+514408 |M | 14.8 |< 17.8 | |p |33478. | | 302.4 | | |05862 05862| +450217 |HQ Lac *|220425.0+525426 |SRB | 15.8 | 17.3 | |p | | | 275. : | | |05862 05862| +450218 |HR Lac *|220453.8+504039 |EW/KW | 13.9 | 14.4 | 14.3 |p |33617.3433 | | 0.4290721 | | |05862 05862| +450219 |HS Lac |220452.3+530350 |LB | 16.2 | 17.2 | |p | | | | | |05862 05862| +450220 |HT Lac *|220516.5+464441 |SRB | 6.08 | 6.36 | |V | | | 82. : | |M4IIIab |08814 BD | +450221 |HU Lac |220526.4+511023 |LB | 15.7 | 16.7 | |p | | | | | |05862 05862| +450222 |HV Lac |220528.5+513440 |LB: | 15.4 | 16.4 | |p | | | | | |05862 05862| +450223 |HW Lac *|220542.3+515340 |EA | 14.7 | 15.6 | 14.8 |p |34011.340 | | 2.0307782 |10 *| |05862 05862| +450224 |HX Lac *|220608.3+493149 |EW | 14.2 | 14.9 | 14.8 |p |25243.115 | | 0.5274659 | | |05957 06329| +450225 |HY Lac |220607.0+501412 |RRAB | 15.0 | 16.3 | |p |34243.5111 | | 0.4651892 |21 | |05862 05862| +450226 |HZ Lac *|220605.2+511147 |EB/KE | 14.4 | 15.1 | 15.0 |p |33468.4013 | | 1.2951389 | | |05862 05862| +450227 |II Lac |220617.2+525917 |SR | 15.4 | 16.5 | |p | | | 130. : | | |05862 05862| +450228 |IK Lac |220620.9+522130 |LB | 14.0 | 14.7 | |p | | | | | |05862 05862| +450229 |IL Lac |220647.1+520908 |E | 12.5 | 13.1 | |p |33295.302 | | | |A2: |05862 05862| +450230 |IM Lac *|220714.4+521416 |EB/KE | 12.9 | 13.4 | 13.2 |p |34036.261 | | 1.2683480 | |A1 |05862 05862| +450231 |IN Lac *|220742.4+523725 |LB: | 15.5 | 16.3 | |p | | | | | |05862 05862| +450232 |IO Lac |220759.9+524947 |M | 15.3 |< 18.1 | |p |33085. | | 269.4 | | |05862 05862| +450233 |IP Lac *|220808.7+513611 |EA | 13.2 | 14.0 | 14.0 |p |33861.525 | | 0.8520105 |16 | |05862 05862| +450234 |IQ Lac |220853.6+495736 |LB | 14.8 | 16.0 | |p | | | | | |05862 05862| +450235 |IR Lac *|220849.2+525040 |EA | 15.2 | 16.0 | 15.4 |p |33617.351 | | 0.6515045 |20 | |05862 05862| +450236 |IS Lac | | | | | | | | | | | | |=PU Lac +450237 |IT Lac *|220918.6+512420 |DCEP | 15.1 | 16.1 | |p |33478.639 | | 2.631567 |23 | |05862 05862| +450238 |IU Lac *|220927.3+523540 |EB/KE | 13.4 | 13.8 | 13.5 |p |33511.474 | | 0.9690576 | |A: |05862 05862| +450239 |IV Lac |220936.7+512803 |RRAB | 13.8 | 15.4 | |p |33798.4787 | | 0.4008109 |20 | |05862 05862| +450240 |IW Lac |221008.7+514000 |LB | 17.0 | 18.0 | |p | | | | |C |05862 05862| +450241 |IX Lac |221117.3+514252 |LB: | 12.6 | 13.4 | |p | | | | | |05862 05862| +450242 |IY Lac *|221135.3+524430 |RRAB | 16.7 | 17.3 | |p |33508.5863 | | 0.5636812 |30 | |05862 05862| +450243 |IZ Lac *|221305.6+514927 |EB/KE | 12.5 | 12.8 | 12.7 |p |32768.515 | | 0.798878 | |A3 |05862 05862| +450244 |KK Lac |221336.3+520024 |LB | 13.7 | 14.4 | |p | | | | | |05862 05862| +450245 |KL Lac |221341.2+551025 |EA | 15.5 | 16.1 | |p |33646.312 | | 2.829015 |14 | |05862 05862| +450246 |KM Lac |221349.4+552826 |UGSS | 14.8 |< 17.4 | |p | | |( 170. :) | | |05862 05862| +450247 |KN Lac |221407.0+495544 |LB | 14.1 | 14.9 | |p | | | | | |05862 05862| +450248 |KO Lac *|221431.0+532859 |EA/SD | 14.6 | 15.5 | 14.7 |p |33206.445 | | 1.0260728 |23 *| |05862 05862| +450249 |KP Lac *|221507.0+542655 |E | 13.8 | 14.4 | |p | | | | | |05862 05862| +450250 |KQ Lac |221551.8+402513 |M | 13.4 |< 15.0 | |p |37645. | | 340. | | |06087 05892| +450251 |KR Lac *|221542.1+510358 |EB | 15.4 | 16.3 | 15.8 |p |34001.334 | | 0.9376954 | | |05862 05862| +450252 |KS Lac *|221556.2+552645 |EA/D | 14.0 | 14.5 |( 0.03 )|p |33511.404 | | 4.006307 |12 *| |05862 05862| +450253 |KT Lac |221625.4+540119 |SRB | 14.3 | 16.2 | |p | | | 150. : | | |05862 05862| +450254 |KU Lac *|221701.7+551038 |EA | 14.0 | 15.3 |( 0.03 )|p |33206.246 | | 4.67258 |11 *| |05862 05862| +450255 |KV Lac |221755.4+511535 |SRB | 14.6 | 15.8 | |p | | | 100. : | | |05862 05862| +450256 |KW Lac |221755.3+523936 |SRB: | 14.7 | 16.3 | |p | | | | | |05862 05862| +450257 |KX Lac |221802.4+502709 |SRA | 14.5 | 16.0 | |p |33626. | | 177.6 | | |05862 05862| +450258 |KY Lac |221844.3+502514 |EA | 12.8 | 13.6 | |p |33204.381 | | 15.42780 |03 |A-F: |05862 05862| +450259 |KZ Lac |221846.5+503148 |DSCT | 14.6 | 15.2 | |p |33981.3333 | | 0.11659064 |39 | |05862 05862| +450260 |LL Lac |221854.8+513933 |M | 14.1 | 17.3 | |p |32877. | | 340.8 | | |05862 05862| +450261 |LM Lac |221941.4+503321 |SRB | 11.3 | 12.1 | |p | | | 50. | |MC |05862 05862| +450262 |LN Lac |221945.8+544217 |LB | 13.7 | 14.9 | |p | | | | | |05862 05862| +450263 |LO Lac |222026.6+514735 |M | 14.6 | 17.8 | |p |33616. | | 313.9 | | |05862 05862| +450264 |LP Lac |222022.1+541510 |LB | 13.8 | 15.5 | |p | | | | | |05862 05862| +450265 |LQ Lac |222049.0+525050 |SRB | 14.0 | 15.2 | |p | | | 100. : | | |05862 05862| +450266 |LR Lac |222104.8+524909 |LB | 14.1 | 15.1 | |p | | | | | |05862 05862| +450267 |LS Lac |222106.8+524353 |SRB | 15.8 | 17.3 | |p | | | 80. : | | |05862 05862| +450268 |LT Lac |222110.4+542009 |LB | 13.0 | 13.5 | |p | | | | | |05862 05862| +450269 |LU Lac *|222142.5+512203 |EW/KW | 14.6 | 15.45 | 15.32 |B |33513.5649 | | 0.29880135 | | |05862 05862| +450270 |LV Lac |222143.5+530131 |EA/DS | 14.9 | 16.0 | |p |33149.759 | | 13.17027 |09 *| |05862 05862| +450271 |LW Lac *|222205.2+511314 |EA/DS | 14.0 | 16.2 |( 0.03 : )|p |32768.160 | | 14.3963 |10 | |05862 05862| +450272 |LX Lac |222159.0+551803 |SRB | 12.5 | 13.6 | |p | | | 150. | |M6 |05862 05862| +450273 |LY Lac *|222204.9+550736 |EA/KE | 12.5 | 12.9 | 12.6 |p |34152.555 | | 1.5451538 |16 *|A0 |05862 05862| +450274 |LZ Lac *|222221.4+552339 |EB/KE | 12.1 | 12.5 | 12.5 |p |33481.560 | | 1.2507007 | |A0 |05862 05862| +450275 |MM Lac |222246.1+521610 |M | 15.8 |< 17.5 | |p |33523. | | 295. | | |05862 05862| +450276 |MN Lac |222304.6+524058 |UGZ | 15.1 |< 18.0 | |p | | | | | |05862 05862| +450277 |MO Lac *|222341.3+524414 |EA | 16.3 | 17.6 |( 0.05 )|p |33481.622 | | 5.014489 |11 | |05862 05862| +450278 |MP Lac *|222349.0+495832 |EA/DS | 12.3 | 13.7 | 12.5 |p |34239.86 | | 31.3957 |20 :*|F8: |05862 05862| +450279 |MQ Lac |222342.5+562237 |E | 14.5 | 15.5 | |p |33181.619 | | | | |05862 05862| +450280 |MR Lac |222443.0+503142 |UG: | 15.0 |< 17.3 | |p |32803. | | | | |05862 05862| +450281 |MS Lac |222448.2+520621 |M | 15.4 |< 18.0 | |p |33510. | | 256.8 | | |05862 05862| +450282 |MT Lac |222445.7+545134 |SRB | 11.6 | 12.0 | |p | | | 36. : | |MC |05862 05862| +450283 |MU Lac |222457.3+513652 |E | 14.1 | 15.1 | |p |33187.627 | | | | |05862 05862| +450284 |MV Lac *|222527.5+534729 |EA | 14.9 | 15.7 | 15.0 |p |33480.505 | | 2.105947 |20 *| |05862 05862| +450285 |MW Lac |222645.5+555004 |EA/DM | 13.1 | 13.6 | |p |33211.368 | | 2.7981644 |12 *|A2 |05862 05862| +450286 |MX Lac |222658.6+523102 |M | 15.5 |< 18.0 | |p |33491. | | 277.3 | | |05862 05862| +450287 |MY Lac |222729.8+554110 |LB | 15.0 | 16.2 | |p | | | | | |05862 05862| +450288 |MZ Lac *|222801.7+534100 |EA | 11.2 | 12.1 | 12.1 |p |33873.594 | | 3.158795 |06 :*|A0 |05862 05862| +450289 |NN Lac *|222813.0+531302 |EA | 13.4 | 14.1 | |p |33232.143 | | 15.71889 |10 | |05862 05862| +450290 |NO Lac *|222812.0+535612 |EA/SD | 15.5 | 17.4 |( 0.03 )|p |34605.415 | | 2.500017 |18 *| |05862 05862| +450291 |NP Lac |222853.6+495112 |LB | 11.5 | 12.2 | |p | | | | |MC |05862 05862| +450292 |NQ Lac |222843.9+561459 |UG | 16.2 |< 17.7 | |p | | | | | |05862 05862| +450293 |NR Lac *|222920.9+494209 |EB | 13.2 | 14.0 | 13.4 |p |33873.638 | | 0.6048038 | | |05862 05862| +450294 |NS Lac |222929.8+495952 |EA | 14.1 | 14.9 | |p |34366.332 | | 1.0155663 |20 | |05862 05862| +450295 |NT Lac |222954.0+562726 |LB | 13.5 | 14.6 | |p | | | | | |05862 05862| +450296 |NU Lac *|223103.3+551538 |RR: | 16.2 | 16.9 | |p | | | | | |05862 05862| +450297 |NV Lac |223108.2+551157 |M | 12.7 |< 17.5 | |p |33189. | | 394.3 | | |05862 05862| +450298 |NW Lac *|223139.2+552423 |EA/KE | 13.7 | 14.3 | 13.9 |p |33442.545 | | 1.5109772 |16 *| |05862 05862| +450299 |NX Lac |223217.4+540320 |M | 16.1 |< 17.7 | |p |33205. | | 272.4 | | |05862 05862| +450300 |NY Lac |223236.7+552605 |SRB | 12.1 | 13.4 | |p | | | 150. : | |M7.5-M8 |05862 05862| +450301 |NZ Lac |223311.8+552327 |M | 14.7 |< 17.5 | |p |33099. | | 306.1 | | |05862 05862| +450302 |OO Lac *|223320.5+560855 |EB/SD | 12.5 | 14.2 | 12.8 |p |33560.479 | | 1.755936 | |B7 |05862 05862| +450303 |OP Lac |223428.7+553054 |EA | 14.2 | 15.2 | |p |34714.331 | | 3.393030 |16 *| |05862 05862| +450304 |OQ Lac |223534.1+495842 |LB | 14.7 | 15.6 | |p | | | | | |05862 05862| +450305 |OR Lac |223540.5+552926 |LB | 13.6 | 14.7 | |p | | | | | |05862 05862| +450306 |OS Lac |223627.5+522240 |EA | 13.4 | 14.2 | |p |34304.414 | | 1.4443624 |20 *|A: |05862 05862| +450307 |OT Lac |223644.7+564407 |E: | 11.2 | 11.9 | |p | | | | |B5 |05862 05862| +450308 |OU Lac |223654.8+534000 |LB | 12.3 | 13.1 | |p | | | | | |05862 05862| +450309 |OV Lac *|223851.9+542108 |SRB | 12.5 | 14.0 | |p | | | | |M: |05862 05862| +450310 |OW Lac |224014.7+512725 |LB | 13.3 | 14.1 | |p | | | | | |05862 05862| +450311 |OX Lac *|224059.1+504528 |EB/DM | 10.7 | 11.1 |( 0.04 )|p |33562.520 | | 5.5337615 | |B9 |07056 05862| +450312 |OY Lac |224130.9+561200 |EA | 14.5 | 15.9 | |p |33861.462 | | 6.608010 |10 *| |05862 05862| +450313 |OZ Lac |224149.6+561634 |E: | 13.3 | 13.9 | |p | | | | | |05862 05862| +450314 |PP Lac *|224238.7+532503 |EW/KW | 11.1 | 12.0 | 12.0 |p |45595.438 | | 0.401163 | | |00001 05862| +450315 |PQ Lac |220344.1+494648 |LB | 14.7 | 15.9 | |B | | | | |C |06566 06566| +450316 |PR Lac |220420.0+495359 |EA | 14.8 | 15.6 | |p |33504.440 | | 2.5830597 |14 *| |06329 06329| +450317 |PS Lac |220539.9+513901 |UGSS | 15.0 | 17.6 | |p | | |( 107. :) | | |06329 06329| +450318 |PT Lac *|220648.1+514011 |EA/SD | 15.3 | 16.8 | 15.4 |p |34298.423 | | 1.4918398 |20 :*| |06329 06329| +450319 |PU Lac |220905.5+502758 |LB | 12.5 | 13.2 | |V | | | | |C |06566 06566| +450320 |PV Lac |220943.8+390531 |SR | 12.4 | 14.3 | |p | | | 300. : | | |06087 04321| +450321 |PW Lac |221033.1+371321 |RRAB | 12.0 | 13.4 | |p |37518.472 | | 0.512367 |10 | |06087 04321| +450322 |PX Lac |221428.4+522742 |M | 15.9 |< 17.5 | |p |33859. | | 439.8 | | |06329 06329| +450323 |PY Lac |221434.0+551352 |LB | 13.8 | 14.7 | |p | | | | | |06329 06329| +450324 |PZ Lac *|221557.4+493434 |SRB | 14.8 | 15.6 | |p | | | 400. : | | |06329 06329| +450325 |QQ Lac *|221655.5+500523 |LB | 11.2 | 12.5 | |p | | | | |M5 |06329 06329| +450326 |QR Lac |221719.8+505237 |SRB | 14.1 | 14.9 | |p | | | 100. : | | |06329 06329| +450327 |QS Lac |222007.8+553338 |SR | 15.3 | 16.7 | |p |34560. | | | | |06329 06329| +450328 |QT Lac |222044.4+532826 |SRA | 15.9 | 17.2 | |p |35030. | | 326. | | |06329 06329| +450329 |QU Lac *|222426.1+561014 |EA | 16.1 |< 18.3 |( 0.04 )|p |34329.330 | | 10.31385 |12 : | |06329 06329| +450330 |QV Lac |222641.0+494459 |LB | 15.9 | 17.1 | |p | | | | | |06329 06329| +450331 |QW Lac |222906.8+531810 |M | 15.6 |< 17.6 | |p |33855. | | 370. | | |06329 06329| +450332 |QX Lac |222927.4+540955 |L | 15.7 | 16.6 | |p | | | | | |06329 06329| +450333 |QY Lac |223016.6+514109 |LB | 15.2 | 15.8 | |p | | | | | |06329 06329| +450334 |QZ Lac |223155.7+554430 |M | 16.2 |< 18.0 | |p |32934. | | 327.6 | |C |06329 06329| +450335 |V0335 Lac *|223221.2+520733 |EA/SD | 15.7 | 16.9 | 15.8 |p |34547.582 | | 1.9570550 |14 *| |06329 06329| +450336 |V0336 Lac |223755.2+551433 |EA | 14.2 | 14.9 | |p |34928.43 | | 44.6068 /N| | |06329 06329| +450337 |V0337 Lac |220512.7+522822 |L | 12.8 | 13.6 | |p | | | | | |06329 06329| +450338 |V0338 Lac *|221055.2+525006 |EA: | 12.4 | 13.1 | |p | | | 76.973 :/N| |A0: |06329 06329| +450339 |V0339 Lac *|221159.3+530046 |EA | 12.9 | 13.8 | |p |34004.356 | | 1.7042482 |22 *| |06329 06329| +450340 |V0340 Lac *|221244.5+541109 |EA/D | 11.8 | 12.4 | 12.4 |p |32803.425 | | 19.943265 |02 :*| |06329 06329| +450341 |V0341 Lac |221309.5+533726 |LB | 10.2 | 10.96 | |B | | | | |M0-M3III |06329 06329| +450342 |V0342 Lac *|221400.2+515631 |EW | 12.4 | 12.9 | 12.9 |p |33861.4954 | | 0.7005779 | | |06329 06329| +450343 |V0343 Lac *|221558.4+531843 |EA/SD | 11.3 | 11.6 | |p |32803.456 | | 6.471914 |11 *|A0 |06329 06329| +450344 |V0344 Lac *|221846.9+515915 |EW/KW | 12.2 | 13.0 | 13.0 |p |45222.5635 | | 0.39222768 | |A3: |06329 06329| +450345 |V0345 Lac *|221843.3+544033 |EA/DM | 11.1 | 11.7 | 11.6 |p |31344.407 | | 7.491862 |10 *|B8 |04524 06329| +450346 |V0346 Lac |221915.7+553221 |L | 11.7 | 12.1 | |p | | | | |G5:: |06329 06329| +450347 |V0347 Lac *|222109.6+412319 |ISB: | 11.3 | 13.1 | |p | | | | |G2 |06087 06087| +450348 |V0348 Lac |222733.0+531443 |LB | 11.1 | 11.9 | |p | | | | |M2 |06329 06329| +450349 |V0349 Lac |224211.8+544538 |EA | 13.8 | 14.7 | |p |33562.463 | | | |A8: |06329 06329| +450350 |V0350 Lac *|223006.5+492123 |ELL+RS | 6.27 | 6.47 | 6.45 |V |44207.743 | | 17.748 | |K2III-IVp |00001 BD | +450351 |V0351 Lac |220048.1+423043 |SRA | 15.5 | 17. | |p |29240. | | 150.5 | | |07010 04341| +450352 |V0352 Lac |220111.6+430732 |LB | 16.2 | 16.8 | |p | | | | | |07010 04341| +450353 |V0353 Lac |222531.5+464129 |I: | 13.0 | 14.6 | |p | | | | | |01317 01317| +450354 |V0354 Lac |222910.4+545106 |LB | 10.4 | 12. | |p | | | | |M0III: |04316 BD | +450355 |V0355 Lac *|225513.6+551114 |LB | 12. | 13. | |p | | | | |M7 |04333 | +450356 |V0356 Lac |225651.4+533312 |SR: | 14. | 15. | |p | | | | | |03903 03903| +450357 |V0357 Lac |222022.7+515140 |GCAS | 7.02 |( 0.2 )| |B | | | | |B1IV:pnne |07970 BD | +450358 |V0358 Lac |224746.4+434359 |M | 12.2 | 15.6 | |p |41965. | | 332. | | |08021 04321| +450359 |V0359 Lac |215837.0+371715 |EA | 14.4 | 15.4 | |B |43425.279 | | 2.20994 |10 *| |08936 08936| +450360 |V0360 Lac *|225021.8+415712 |EB/DM: | 5.91 | 5.98 | 5.93 |V |41895.8077 | | 10.075 | |B3IV:eaV |00001 BD | +450361 |V0361 Lac |222041.2+455605 |LB | 13.1 | 14.0 | |p | | | | | |08762 08762| +450362 |V0362 Lac *|223407.3+392008 |ACV | 8.69 |( 0.07 )| |V |44509.32 | | 1.43 |50 |A0p(4200-Si) |08766 BD | +450363 |V0363 Lac *|224458.5+492853 |LB | 11.2 | 12.0 | |p | | | | |C(N) |08762 08762| +450364 |V0364 Lac *|225214.8+384445 |EA/DM | 8.51 | 9.25 | 9.15 |B |44257.2865 | | 7.351522 |06 |A3 |09358 BD | +450365 |V0365 Lac |220551.2+481353 |ELL | 6.27 |( 0.08 )| |V | | | | | |67283 BD | +450366 |V0366 Lac |221838.4+434645 |M | 13.0 | 16.9 | |V | | | | | |68106 68106| +450367 |V0367 Lac |221840.4+434435 |M | 10.5 |< 15. | |R | | | | | |68146 68146| +450368 |V0368 Lac |221338.0+445648 |EA/SD | 15.1 |< 16.2 | |p | | | | | |69127 69127| +450369 |V0369 Lac |221518.3+440550 |EA/SD | 14.3 | 15.8 | |p | | | | | |69177 69176| +450370 |V0370 Lac |222042.0+492325 |LB: | 13.8 | 14.9 | |p | | | | | |69127 69127| +450371 |V0371 Lac |223044.3+471758 |EA/SD | 15.1 | 16.4 | |p | | | | | |69127 69127| +450372 |V0372 Lac |223607.8+423117 |SRB: | 12.5 | 13.5 | |p | | | | | |69127 69127| +450373 |V0373 Lac |224205.0+490604 |LB: | 14.0 | 14.4 | |p | | | | | |69127 69127| +450374 |V0374 Lac |224405.2+434533 |L | 15.4 | 16.6 | |p | | | | | |69127 69127| +450375 |V0375 Lac |223441.0+404004 |INA | 12.94 | 14.24 | |V | | | | | |70064 70034| +450376 |V0376 Lac |223240.7+551239 |SRB | 13.5 | 14.6 | |B | | | | | |72097 72097| +450377 |V0377 Lac |225311.4+401003 |LPB | 6.25 |( 0.02 b )| |B | | | | | |72045 BD | +450378 |V0378 Lac |220327.8+453407 |LB | 8.7 | 9.1 | |R | | | | | |73134 73134| +450379 |V0379 Lac |220754.2+410512 |M | 12.1 | 15.2 | |V | | | | | |73011 73011| +450380 |V0380 Lac |221015.6+381546 |M | 11.7 | 15.1 | |V | | | | | |73011 73011| +450381 |V0381 Lac |221558.9+422247 |NL: | 12.5 |< 16.2 | |V | | | | | |73011 73011| +450382 |V0382 Lac |221938.2+481320 |SR | 12.3 | 14.1 | |V | | | | | |73011 73011| +450383 |V0383 Lac |222007.0+493012 |BY+UV | 8.9 |( 0.19 )| |V | | | | | |73182 BD | +450384 |V0384 Lac |222328.9+474432 |SR | 13.8 | 15.2 | |V | | | | | |73011 73011| +450385 |V0385 Lac |222541.2+501816 |M | 12.2 | 15.6 | |V | | | | | |73011 73011| +450386 |V0386 Lac |222956.5+454654 |M | 12.5 | 15.0 | |V | | | | | |73011 73011| +450387 |V0387 Lac |223134.5+481601 |M | 11.0 | 14.6 | |V | | | | | |73011 73011| +450388 |V0388 Lac |224110.5+403411 |M | 10.6 | 15.2 | |V | | | | | |73011 73011| +450389 |V0389 Lac |224321.0+411720 |M | 9.7 | 14.0 | |V | | | | | |73011 73011| +450390 |V0390 Lac | | | | | | | | | | | | |=HL Lac +450391 |V0391 Lac |224935.5+521811 |M | 11.8 | 15.2 | |V | | | | | |73011 73011| +450392 |V0392 Lac |225015.9+532417 |SRA | 12.2 | 14.3 | |V | | | | | |73011 73011| +450393 |V0393 Lac |220205.8+422247 |I: | 10.51 | 10.98 | |Hp| | | | | |HIP HIP | +450394 |V0394 Lac |220325.1+484103 |EB | 8.04 | 8.15 | |Hp| | | | | |HIP HIP | +450395 |V0395 Lac |220341.3+531245 |ACYG: | 8.45 | 8.52 | |Hp| | | | | |HIP HIP | +450396 |V0396 Lac |220510.6+440353 |IA: | 9.83 | 10.13 | |Hp| | | | | |HIP HIP | +450397 |V0397 Lac |220608.3+495409 |BE | 9.67 | 9.79 | |Hp| | | | | |HIP HIP | +450398 |V0398 Lac |220712.4+523808 |EA | 8.73 | 9.02 | |Hp| | | | | |HIP HIP | +450399 |V0399 Lac |220725.6+531827 |ACYG: | 6.24 | 6.29 | |Hp| | | | | |HIP HIP | +450400 |V0400 Lac |220749.0+425712 |LPB: | 7.87 | 7.95 | |Hp| | | | | |HIP HIP | +450401 |V0401 Lac |220821.3+491316 |EA | 7.93 | 8.16 | |Hp| | | | | |HIP HIP | +450402 |V0402 Lac |220915.2+445047 |EA | 6.70 | 6.99 | |Hp| | | | | |HIP HIP | +450403 |V0403 Lac |221424.1+523049 |LB: | 7.73 | 7.81 | |Hp| | | | | |HIP HIP | +450404 |V0404 Lac |221900.2+454809 |BE | 8.28 | 8.47 | |Hp| | | | | |HIP HIP | +450405 |V0405 Lac |222150.9+420441 |LPB | 6.35 | 6.37 | |Hp| | | | | |HIP HIP | +450406 |V0406 Lac |222301.6+551359 |ACYG: | 7.95 | 8.02 | |Hp| | | | | |HIP HIP | +450407 |V0407 Lac |222436.9+411824 |ELL: | 8.31 | 8.38 | |Hp| | | | | |HIP HIP | +450408 |V0408 Lac |222541.8+522618 |GCAS | 7.86 | 8.10 | |Hp| | | | | |HIP HIP | +450409 |V0409 Lac |222822.5+472659 |GCAS | 8.41 | 8.62 | |Hp| | | | | |HIP HIP | +450410 |V0410 Lac |222845.6+500817 |LB | 8.47 | 8.83 | |Hp| | | | | |HIP HIP | +450411 |V0411 Lac |222858.3+505747 |DCEPS | 7.83 | 8.07 | |Hp| | | | | |HIP HIP | +450412 |V0412 Lac *|222931.8+474225 |LC | 4.39 | 4.56 | |Hp| | | | | |HIP HIP | +450413 |V0413 Lac *|223005.7+544725 |ELL | 9.72 | 9.85 | |Hp| | | | | |HIP HIP | +450414 |V0414 Lac |223337.6+463355 |ACV | 7.33 | 7.39 | |Hp| | | | | |HIP HIP | +450415 |V0415 Lac |223831.8+555005 |BE | 9.22 | 9.35 | |Hp| | | | | |HIP HIP | +450416 |V0416 Lac |223837.9+564744 |LB | 5.05 | 5.18 | |Hp| | | | | |HIP HIP | +450417 |V0417 Lac |223940.9+470333 |LB | 8.03 | 8.21 | |Hp| | | | | |HIP HIP | +450418 |V0418 Lac |224005.8+404013 |LB | 6.72 | 7.09 | |Hp| | | | | |HIP HIP | +450419 |V0419 Lac |224141.7+440006 |LB: | 9.15 | 9.33 | |Hp| | | | | |HIP HIP | +450420 |V0420 Lac |224417.3+492444 |SRD: | 7.11 | 7.18 | |Hp| | | | | |HIP HIP | +450421 |V0421 Lac |224515.9+471214 |LB | 7.73 | 7.89 | |Hp| | | | | |HIP HIP | +450422 |V0422 Lac |224917.7+475548 |IA: | 7.78 | 7.85 | |Hp| | | | | |HIP HIP | +450423 |V0423 Lac |225547.1+433334 |BE | 7.97 | 8.06 | |Hp| | | | | |HIP HIP | +450424 |V0424 Lac |225626.0+494401 |LC | 5.03 | 5.11 | |Hp| | | | | |HIP HIP | +450425 |V0425 Lac |215923.9+435322 |SRA | 15.2 | 15.5 | |p | | | | | |75152 75153| +450426 |V0426 Lac |220844.1+485525 |SR | 16.1 | 17.6 | |p | | | | | |75152 75154| +450427 |V0427 Lac |221912.4+492006 |EA | 14.8 | 16.5 | |p | | | | | |75152 75154| +450428 |V0428 Lac |222100.7+482601 |M | 15.3 |< 17.3 | |p | | | | | |75126 75127| +450429 |V0429 Lac |222140.7+473141 |SRA | 14.5 | 14.8 | |p | | | | | |75152 75154| +450430 |V0430 Lac |222650.4+444113 |EA | 14.2 | 16.6 | |p | | | | | |75126 75127| +450431 |V0431 Lac |223103.7+471341 |EA | 14.3 | 15.6 | |p | | | | | |75152 75154| +450432 |V0432 Lac |223214.9+551052 |SRB | 13.8 | 15.5 | |V | | | | | |75079 75079| +450433 |V0433 Lac |223430.7+441635 |EA | 14.8 | 15.4 | |p | | | | | |75126 75127| +450434 |V0434 Lac |221309.4+543714 |SR: | 12.8 | 13.5 | |V | | | | | |76054 USNO | +450435 |V0435 Lac |221502.1+541857 |EB | 15.55 |( 0.43 * )| |V | | | | | |76243 76243| +450436 |V0436 Lac |221505.3+541854 |DSCTC | 14.70 |( 0.05 * )| |V | | | | | |76243 76243| +450437 |V0437 Lac |221511.0+541918 |DSCTC | 14.89 |( 0.01 * )| |V | | | | | |76243 76243| +450438 |V0438 Lac |221521.3+541838 |DSCT: | 17.34 |( 0.25 * )| |V | | | | | |76243 76243| +450439 |V0439 Lac |222130.6+541016 |SR: | 13.5 | 14.3 | |V | | | | | |76054 2MASS| +450440 |V0440 Lac |225525.4+521709 |RRAB | 15.4 | 16.0 | |p | | | | | |76245 76246| +450441 |V0441 Lac |220937.4+523416 |EW | 12.2 |( 0.22 * )| |R | | | | | |77203 USNO | +450442 |V0442 Lac *|225138.9+515042 |* | 12.26 |( 0.30 )| |V | | | | | |77205 GSC | +450443 |V0443 Lac |220205.4+442035 |BY: | 7.96 |( 0.02 )| |V | | | | |G5V |78018 DM | +450444 |V0444 Lac |220619.7+490821 |SR: | 11.7 | 12.9 | |* | | | | | |78006 2MASS| +450445 |V0445 Lac |220738.5+490259 |M: | 12.6 | 14.5 | |* |52188 | | | | |78040 2MASS| +450446 |V0446 Lac |221111.9+361523 |BY | 7.23 |( 0.02 )| |V | | | 9.083 | |K0V |78018 DM | +450447 |V0447 Lac |221554.1+544022 |BY | 7.50 |( 0.03 )| |V | | | 4.4266 | |K1V |78018 DM | +450448 |V0448 Lac |222431.4+434311 |SRD: | 11.22 | 11.72 | |U | | | 90.1 | |F8-G0Ia |78302 DM | +450449 |V0449 Lac |223618.8+483916 |M: | 14.1 | 17.2 | |* | | | | | |78006 2MASS| +450450 |V0450 Lac *|223958.9+472016 |EA | 13.50 | 14.8 | 13.65 |* |52913.1151 | | 4.4479 |11 | |78006 GSC | +450451 |V0451 Lac |224220.8+520335 |M: | 11.1 | 13.1 | |* | | | | | |78006 2MASS| +450452 |V0452 Lac |224527.4+460905 |SR | 12.0 | 13.5 | |* |51496 | | 94. | | |78006 GSC | +450453 |V0453 Lac |215732.6+441020 |EA/SD | 14.5 |< 16.2 | |p |25504.523 | | 4.65132 |15 *| |01262 02287| +450454 |V0454 Lac |220905.0+453029 |LB | 12.9 | 14.6 | |V | | | | | |79100 79168| +450455 |V0455 Lac |221050.5+501937 |EA | 12.44 | 13.05 | 13.05 : |* |51423.743 | | 1.9881 |11 | |79004 79139| +450456 |V0456 Lac |221350.0+435439 |EA | 12.49 | 13.0 : | 13.0 : |* |51383.798 | | 3.1875 |12 | |79004 79168| +450457 |V0457 Lac *|223623.0+380618 |EA | 9.84 | 10.04 | 10.02 : |V |48305.198 | | 6.15727 |02 : |B9V |79006 DM | +450458 |V0458 Lac |224855.9+454508 |EA | 12.52 | 13.4 | 12.75 |* |51505.640 | | 1.34795 |19 | |79004 GSC | +450459 |V0459 Lac |225054.5+483924 |EA | 13.06 | 13.6 : | 13.5 : |* |51305.062 | | 1.7679 |08 : | |79004 79141| +450460 |V0460 Lac |220227.8+421803 |EW | 15.8 | 16.0 | 16.0 |V |53999.0660 | | 0.354632 | | |80588 USNO | NL80_3 +450461 |V0461 Lac |220315.0+422330 |EW | 15.3 | 15.8 | |R |54332.478 | | 0.3616 | | |80590 80590| NL80_3 +450462 |V0462 Lac |220410.9+462431 |DSCTC: | 10.76 |( 0.05 )| |V | | | | |A5: |80176 80176| NL80_3 +450463 |V0463 Lac |220450.8+462300 |DSCTC: | 11.81 |( 0.03 )| |V | | | | |A2V |80176 80176| NL80_3 +450464 |V0464 Lac |220452.5+462701 |DSCTC | 12.75 |( 0.04 )| |V | | | 0.12987 | | |80176 80176| NL80_3 +450465 |V0465 Lac |220559.2+462717 |LB: | 9.03 |( 0.05 )| |V | | | | |M0 |80176 80176| NL80_3 +450466 |V0466 Lac |221154.8+473918 |EA | 16.0 | 16.8 | |* |54705.5818 | | 0.359625 | | |80080 USNO | NL80_3 +450467 |V0467 Lac |222248.0+525849 |EA | 14.22 | 14.71 | 14.36 |* |53331.0528 | | 2.8610 |06 | |80073 80073| NL80_3 +450468 |V0468 Lac *|223105.8+502153 |LPB | 7.69 | 7.75 | |Hp| | | 0.824008 | |B9 |80019 DM | NL80_3 +450469 |V0469 Lac |223153.3+363506 |BY | 10.5 | 10.7 | |* | | | 24.04 | | |80043 80043| NL80_3 +450470 |V0470 Lac |223644.8+372443 |RRAB | 12.64 | 13.39 | |* |53694.653 | | 0.4609709 |19 | |80001 GSC | NL80_3 +450471 |V0471 Lac |223655.2+401028 |BY | 11.42 |( 0.10 *)| |V | | | 15.2555 | | |80021 GSC | NL80_3 +450472 |V0472 Lac |223709.3+421502 |EB | 12.3 | 12.9 | 12.55 |* |51353.586 | | 0.71835 | | |80584 80584| NL80_3 +450473 |V0473 Lac |224145.2+370716 |RRAB | 12.8 | 13.25 | |* |51397.85 | | 0.74751 |25 : | |80539 80539| NL80_3 +450474 |V0474 Lac |224558.7+562832 |EB | 12.25 | 12.78 | 12.52 |* |53294.9863 | | 0.7655 | | |80008 80008| NL80_3 +450475 |V0475 Lac |224824.6+393126 |LB | 12.2 | 12.6 | |* | | | | | |80062 GSC | NL80_3 +450476 |V0476 Lac |224918.1+522636 |EA | 10.30 | 10.83 : | 10.69 : |* |51441.210 | | 17.915 |09 | |80042 GSC | NL80_3 +450477 |V0477 Lac |224935.7+525505 |SR | 11.6 | 12.0 | |* | | | 68. | | |80001 USNO | NL80_3 +450478 |V0478 Lac |225047.7+354056 |EW | 13.18 | 13.58 | 13.42 |CV|53674.673 | | 0.445665 | | |80001 80085| NL80_3 +450479 |V0479 Lac |225250.7+355857 |EW | 12.2 | 12.9 | 12.85 |* |51433.941 | | 0.34575 | | |80085 80085| NL80_3 +450480 |V0480 Lac |225551.4+394546 |EW | 13.15 | 13.75 | 13.67 |* |51431.599 | | 0.39828 | | |80085 80085| NL80_3 +460001 |R Leo *|094733.5+112544 |M | 4.4 | 11.3 | |V |44164. | | 309.95 |43 |M6e-M8IIIe-M9.5e |00001 00002| +460002 |S Leo *|111050.8+052735 |M | 9.0 | 14.5 | |V |43591. | | 190.16 |47 |M3e-M6e: |00001 00002| +460003 |T Leo | | | | | | | | | | | | |=QZ Vir +460004 |U Leo |102403.8+140026 |N: | 9.5 |< 14. | |V | |1855 | | | | BD | +460005 |V Leo *|100001.9+211544 |M | 8.4 | 14.6 | |V |42706. | | 273.35 |44 |M5e |00001 00002| +460006 |W Leo *|105337.4+134254 |M | 8.9 | 14.8 | |V |43627. | | 391.75 |35 |M5.5e-M7e |00001 00002| +460007 |X Leo |095101.4+115230 |UGSS | 11.1 | 15.7 | |V | | |( 16.90 ) | |pec(UG) |09324 08852| +460008 |Y Leo *|093651.8+261358 |EA/SD | 10.09 | 13.20 |( 0.1 IR)|V |45436.451 | | 1.6861020 |14 *|A5V |00001 00279| +460009 |Z Leo |095208.4+265423 |SRB | 9.9 | 11.5 | |p |36717. | | 56.83 |47 |M3III-IV |00761 00884| +460010 |RR Leo *|100743.5+235930 |RRAB | 9.94 | 11.27 | |V |43295.402 | | 0.4523933 |13 |A7-F5 |00001 09331| +460011 |RS Leo |094325.7+195140 |M | 10.7 | 16.0 | |p |45020. | | 208.2 |31 |M5e |00001 00567| +460012 |RT Leo *|094522.4+195420 |EA/SD | 10.3 | 11.6 | 10.5 |p |23844.037 | | 7.447906 |13 *| |00001 08953| +460013 |RU Leo |105309.4+242131 |LB | 10.3 | 12.0 | |V | | | | |M3 | 08953| +460014 |RV Leo |102352.2+094526 |RRAB | 13.26 | 14.41 | |V |39154.957 | | 0.5150975 |14 | |00330 01840| +460015 |RW Leo *|103938.5+085940 |EA/SD | 11.9 | 13.6 | |V |43324.73087 | | 1.6825565 |14 *| |08593 01840| +460016 |RX Leo *|112358.4+263654 |RRAB | 11.56 | 12.27 | |V |36306.383 | | 0.6534122 |23 |F2 |03691 00228| +460017 |RY Leo |100415.9+135858 |SRB | 9.0 | 11.8 | |V | | | 155. |47 |M2e | 00002| +460018 |RZ Leo |113722.2+014858 |NR | 11.5 | 17.5 | |p |21665. |1918 | | | | 08852| +460019 |SS Leo *|113354.5-000200 |RRAB | 10.38 | 11.56 | |V |41781.409 | | 0.6263441 |12 |A7-F6 |00001 01841| +460020 |ST Leo *|113832.7+103342 |RRAB | 10.74 | 12.02 | |V |27923.118 | | 0.4779843 |15 |A6-F8 |00001 01842| +460021 |SU Leo |095337.5+075845 |RRAB | 12.80 | 13.99 | |V |24170.572 | | 0.472266 |17 | |00001 01843| +460022 |SV Leo |100241.0+264136 |M | 12.3 | 16.5 | |p |30076. | | 307.0 |37 | |02931 06286| +460023 |SW Leo |105555.5-025857 |RRAB | 12.5 | 13.5 | |p |27150.245 | | 0.554152 | | |03717 06286| +460024 |SX Leo |110338.2-031216 |SRB | 9.15 | 10.5 | |V |40644. | | 100. : | |M6 |05828 08953| +460025 |SY Leo |105246.9-011047 |SRB | 12.2 | 13.1 | |p | | | 82. | |K8III-M |00104 06286| +460026 |SZ Leo *|110136.8+080956 |RRAB | 11.91 | 12.79 | |V |45467.291 | | 0.53406125 |14 |A |09266 06286| +460027 |TT Leo |111510.7-012316 |LB | 10.5 | 11.7 | |V | | | | |M7 |00340 06286| +460028 |TU Leo *| | | | | | | | | | | | |N +460029 |TV Leo *|111121.9-055332 |RRAB | 11.46 | 12.56 | |V |37041.390 | | 0.6728526 |12 |F4-F6 |08636 00744| +460030 |TW Leo |092517.1+295847 |M: | 12.9 |< 14. | |p |26668. | | 309. | |Me |00147 GSC | +460031 |TX Leo *|103502.2+083902 |EA/DM | 5.66 | 5.75 | 5.69 |V |38844.3055 | | 2.4450566 |11 *|A2V |05720 00462| +460032 |TY Leo *|105227.2-050517 |EA | 10.5 | 11. | |p |25743.47 | | 1.18466 | |G |01848 00190| +460033 |TZ Leo |112340.0+165107 |M | 12. | 15. | |p |35475. | | 331.5 | |M8 |02931 04238| +460034 |UU Leo *|094749.7+125903 |EA/SD | 11.4 | 12.7 | 11.5 |p |45397.456 | | 1.6797409 |10 *|A2 |00001 00196| +460035 |UV Leo *|103820.8+141604 |EA/DW | 8.90 | 9.56 | 9.49 |V |38440.72633 | | 0.60008478 |18 |G0V+G2V |01234 03385| +460036 |UW Leo |111511.1-053531 |LB: | 10.2 | 10.8 | |p | | | | |M5III |00727 08953| +460037 |UX Leo *|111713.6-063514 |EA/SD: | 10.3 | 11.1 | 10.4 |p |37376.430 | | 1.007172 |12 |F4 |00001 00190| +460038 |UY Leo |102921.6+230344 |LB | 9.5 | 11. | |p | | | | |M7III |00483 08953| +460039 |UZ Leo *|104033.2+133401 |EW/KE | 9.58 | 10.15 | 10.12 |V |39800.373 | | 0.6180428 | |A7 |00001 08953| +460040 |VV Leo |104846.6+083958 |SR | 9.3 | 10.21 | |V |28215. | | 181.5 | |M7 |01852 08953| +460041 |VW Leo |105642.2+212319 |SR | 13.0 | 15.0 | |p | | | | | |00614 06286| +460042 |VX Leo |111735.8+265945 |LB | 12.4 | 13.2 | |p | | | | |M6.5 |00614 | +460043 |VY Leo |105601.5+061107 |LB: | 5.69 | 6.03 | |V | | | | |M5.5III |01371 BD | +460044 |VZ Leo |092650.7+163603 |EA/SD | 11.8 | 12.9 | |B |31164.316 | | 1.089906 |22 *|A5 |06533 00279| +460045 |WW Leo |093026.1+071221 |RRAB | 12.08 | 12.87 | |V |34882.394 | | 0.60284527 |17 | |05721 01432| +460046 |WX Leo |115612.3+154344 |LB | 9.42 | 9.99 | |B | | | | |M5 |00904 08953| +460047 |WY Leo |093101.1+163925 |EA/D | 11.1 | 11.7 | |p |28552.47 | | 4.985778 |10 *|A2 |03391 00279| +460048 |WZ Leo |093412.7+185406 |EA/D | 11.3 |< 12.0 | |p |31162.50 | | 1.405570 |12 *|A1 |00156 00156| +460049 |XX Leo *|095929.3+134706 |EB | 11.1 | 11.7 | 11.4 |B |31169.418 | | 0.97094 : | |A8 |00279 00156| +460050 |XY Leo *|100140.4+172433 |EW/KW | 9.45 | 9.93 | 9.80 |V |45074.4906 | | 0.2840969 | |K0V+K0 |09317 00156| +460051 |XZ Leo *|100234.2+170247 |EW/KE | 10.6 | 11.2 | 11.1 |p |45025.358 | | 0.4877351 | |A6 |00001 01432| +460052 |YY Leo |100820.0+200013 |SRB | 10.5 | 11.4 | |p | | | 40.9 | |M3 |00156 00156| +460053 |YZ Leo |110936.6+235252 |M: | 15.2 |< 16.5 | |p | | | | | |00614 | +460054 |ZZ Leo |113654.8+093145 |SRB | 10.3 | 11.6 | |p |25359. | | 148. |40 |M0 |00156 00156| +460055 |AA Leo |113914.2+101938 |RRAB | 11.61 | 12.83 | |V |39596.655 | | 0.5986557 |14 |F: |00001 00470| +460056 |AB Leo *|093322.0+195217 |SRD | 10.7 | 13.2 | |p |34855. | | 130.2 | |F6e-G6ep |09361 00002| +460057 |AC Leo |100014.7+172735 |CST: | 9.44 | 9.49 | |V | | | | |K0III |03596 BD | +460058 |AD Leo *|101936.3+195212 |UV | 8.07 | 11.00 | |B | | | | |M4.5Ve |09362 07060| +460059 |AE Leo |112612.2+173940 |RRAB | 11.6 | 12.8 | |p |19839.590 | | 0.626723 |20 |A0 |03396 00156| +460060 |AF Leo *|112753.1+150848 |SRB | 9.5 | 11. | |p | | | 107. |43 |M5 |00310 08953| +460061 |AG Leo |095332.2+160206 |EA/D | 10.7 | 11.2 | |p |26651.635 | | 3.392498 |10 |F5 |03397 00156| +460062 |AH Leo |110505.3+232108 |RR | 13.7 | 14.7 | |p | | | | | |00614 06286| +460063 |AI Leo |114028.6+111143 |LB | 8.44 | 10.5 | |V | | | | |M5 |00104 08953| +460064 |AK Leo |114048.4+130441 |SRB | 8.36 | 9.4 | |V | | | 60. : | |M5 |05429 08953| +460065 |AL Leo |095812.9+181728 |EA/D | 10.2 | 10.6 | |p |26115.9 | | 4.1444 : | |F5 |00156 00156| +460066 |AM Leo *|110210.9+095343 |EW/KW | 9.25 | 9.83 | 9.83 |V |42493.389 | | 0.36579740 | |F8V |00001 08953| +460067 |AN Leo |112322.5+063805 |RRAB | 11.8 | 12.9 | |p |19858.407 | | 0.5720244 |18 | |03558 02346| +460068 |AO Leo |113449.4+231403 |M: | 12.5 | 15. | |p |26720. | | 150. : | | |03399 00158| +460069 |AP Leo *|110505.0+050906 |EW/KW | 9.32 | 9.91 | 9.88 |V |39536.542 | | 0.4303576 | |G0V |00001 08953| +460070 |AQ Leo *|112355.3+101858 |RR(B) | 12.37 | 13.15 | |B |41766.480 | | 0.5497508 | |A1 |09320 02346| +460071 |AR Leo |112616. +234830:|CST: | 12.8 | 13.3 | |p | | | | |G5 |09270 04341| +460072 |AS Leo |112911.2+093211 |RRAB | 12.8 | 14.1 | |p |25304.490 | | 0.545023 |20 | |04163 02346| +460073 |AT Leo |113007.4+210209 |RRAB | 16.4 | 17.9 | |B |38463.454 | | 0.463764 |10 : | |05264 04065| +460074 |AU Leo *|113014.3+234809 |GAL | 17. | | |p | | | | |pec(gal) |07555 04341| +460075 |AV Leo |113110.6+253715 |RRAB | 14.8 | 16.7 | |B |26331.540 | | 0.500280 |20 | |05264 04341| +460076 |AW Leo |113148.3+165652 |RRAB | 14.9 | 16.4 | |B |38112.508 | | 0.627701 |14 | |05264 04341| +460077 |AX Leo |113303.8+120914 |RRAB | 11.8 | 12.3 | |p |25244.703 | | 0.726828 |18 |A2 |04166 02347| +460078 |AY Leo |113506.8+205745 |RRAB | 15.1 | 16.7 | |B |37651.657 | | 0.470433 |12 | |05264 04065| +460079 |AZ Leo |113651.7+212252 |RRAB | 16.5 | 17.4 | |B |38088.534 | | 0.628125 |15 | |05264 04341| +460080 |BB Leo *|113816.1+233359 |RRC | 14.6 | 15.7 | |B |37731.561 | | 0.316028 |35 | |05264 04341| +460081 |BC Leo |113836.0+204334 |RRAB | 15.9 | 17.1 | |B |38113.581 | | 0.635627 |15 | |05264 04341| +460082 |BD Leo |113945.9+154741 |RRAB | 13.8 | 15.3 | |B |37732.460 | | 0.502474 |15 | |05264 04341| +460083 |BE Leo |114016.7+184126 |RRAB | 16.8 | 17.5 | |B |38415.600 | | 0.594935 |12 | |05264 04341| +460084 |BF Leo |114112.4+211751 |RRAB | 15.8 | 16.7 | |B |38111.478 | | 0.558974 |14 | |05264 04341| +460085 |BG Leo |114146.2+231202 |EA/SD | 13.6 | 15.1 | |p |37788.538 | | 3.779167 |10 | |05264 04341| +460086 |BH Leo |114244.1+240622 |RRAB | 15.7 | 17.1 | |B |38116.464 | | 0.695030 |10 | |05264 04341| +460087 |BI Leo |114313.4+210810 |RRAB | 14.7 | 16.0 | |B |37650.595 | | 0.600469 |11 | |05264 04065| +460088 |BK Leo |114428.8+213632 |RRAB | 16.4 | 17.6 | |B |38439.488 | | 0.500173 |10 | |05264 04341| +460089 |BL Leo *|114538.4+244651 |EW/KW | 13.8 | 14.5 | 14.4 |p |44648.756 | | 0.2819306 | | |00001 04341| +460090 |BM Leo |114705.2+244108 |RRAB | 16.0 | 18.0 | |B |37731.470 | | 0.493724 |15 | |05264 04341| +460091 |BN Leo |114803.1+185802 |EA/SD | 15.0 | 16.2 | |p |38093.656 | | 1.703688 |07 *| |05264 04341| +460092 |BO Leo |115137.1+215241 |RRAB | 13.5 | 14.3 | |B |38458.285 | | 0.547231 |10 | |05264 04065| +460093 |BP Leo |115310.2+231653 |RRAB | 13.5 | 15.0 | |B |38112.368 | | 0.462145 |11 | |05264 04065| +460094 |BQ Leo |115344.1+213058 |SR | 15.9 |< 17.0 | |p |37735. | | 125. | | |05264 04341| +460095 |BR Leo |115417.7+155920 |RRC | 16.3 | 17.3 | |B |37647.320 | | 0.348384 |20 | |05264 04341| +460096 |BS Leo |115549.5+192037 |RRAB | 14.2 | 15.6 | |B |38112.365 | | 0.543766 |14 | |05264 04065| +460097 |BT Leo |111204.6+183005 |RRAB | 12.0 | 13.1 | |p |25619.667 | | 0.499727 |18 | |03160 00141| +460098 |BU Leo |112310.1+154155 |RRAB | 13. | 14. | |p |25329.475 | | 0.599475 |20 |F5 |03925 03925| +460099 |BV Leo *|112751.6+244405 |EB/KE | 15.8 | 16.7 | 16.1 |p |38089.510 | | 0.941583 | | |05264 04065| +460100 |BW Leo *|113216.4+171925 |EW/KW | 14.7 | 15.5 | 15.4 |p |38111.429 | | 0.337221 | | |05264 04341| +460101 |BX Leo *|113802.1+163236 |RRC | 11. | 11.7 | |p |38406.72 | | 0.36286 |40 |A6 |03925 00470| +460102 |BY Leo |114049.9+195543 |RRAB | 16.5 | 17.8 | |B |37737.570 | | 0.562412 |13 | |05264 04341| +460103 |BZ Leo *|114200.3+225207 |EW/KW | 15.3 | 16.1 | 15.8 |p |38106.454 | | 0.269722 | | |05264 04341| +460104 |CC Leo |114226.8+173036 |RRAB | 16.5 | 17.5 | |B |37647.330 | | 0.512565 |10 | |05264 03910| +460105 |CD Leo *|114301.1+190305 |RRAB | 14.1 | 15.8 | |B |38091.59 | | 0.56643 | | |05264 04065| +460106 |CE Leo *|114424.3+232123 |EW/KW | 11.8 | 12.6 | 12.5 |p |45047.4325 | | 0.303429 | | |05264 04065| +460107 |CF Leo |114632.6+161353 |RRAB | 13.4 | 14.1 | |B |37788.465 | | 0.738889 |22 | |05264 04341| +460108 |CG Leo |114910.4+213652 |RRAB | 15.7 | 16.3 | |B |38112.480 | | 0.629652 |10 | |05264 04065| +460109 |CH Leo |114914.9+241000 |RRAB | 14.0 | 15.6 | |B |38112.368 | | 0.550580 |12 | |05264 04065| +460110 |CI Leo |114933.8+230606 |SR | 15.1 | 16.0 | |p |37795.2 | | 69.67 |40 | |05264 04341| +460111 |CK Leo |115515.2+240453 |LB | 14.0 | 14.6 | |p | | | | | |05264 04341| +460112 |CL Leo |115517.1+220004 |RRAB | 16.6 | 17.5 | |B |37732.600 | | 0.619982 |12 | |05264 04341| +460113 |CM Leo |115614.2+211530 |RRAB | 13.8 | 14.9 | |B |38116.530 | | 0.361732 |17 | |05264 04341| +460114 |CN Leo *|105628.9+070053 |UV | 11.52 | 17.08 | |U | | | | |M6.5Ve |09227 04139| +460115 |CO Leo |111459.9+255332 |E: | 18.9 |< 19.8 | |V |37786.759 | | | | |05564 05564| +460116 |CP Leo |113017.3+234926 |LB | 14.1 | 14.9 | |p | | | | | |05264 04341| +460117 |CQ Leo |113455.9+174606 |LB | 14.6 | 15.0 | |p | | | | |K3 |05264 04341| +460118 |CR Leo |114533.1+165003 |L | 14.9 | 15.4 | |p | | | | | |05264 04341| +460119 |CS Leo |114849.4+224445 |LB | 15.5 | 15.8 | |p | | | | | |05264 04341| +460120 |CT Leo |115021.1+213618 |LB | 15.0 | 15.3 | |p | | | | | |05264 04341| +460121 |CU Leo |115117.9+182922 |LB | 14.4 | 14.9 | |p | | | | | |05264 04341| +460122 |CV Leo |115358.8+202924 |LB | 10.67 | 11.2 | |B | | | | |K5 |05264 BD | +460123 |CW Leo *|094757.4+131643 |M | 10.96 | 14.8 | |R |41710. | | 630. |40 |C9,5 |09321 06140| +460124 |CX Leo *|102739.0+094545 |ACV | 5.97 | 6.15 | |V | | | 7.897 | |A0p(Si-Cr-Sr) |09322 BD | +460125 |CY Leo *|104153.8+141548 |ZZ+UV: | 16.2 : | 16.84 | |B | | | | |DC | 04139| +460126 |CZ Leo |113120.0-041759 |SRB | 8.51 | 9.01 | |V |40680. :| | 115. | |M5 |05828 08953| +460127 |DD Leo |100814.9+172131 |SRB: | 10.2 | 10.9 | |p | | | | |M8 |00156 00156| +460128 |DE Leo *|102515.2+084706 |SRB: | 5.60 |( 0.07 )| |V | | | | |M2IIIabS |05896 08953| +460129 |DF Leo |092329.5+074250 |SRB | 6.74 | 6.95 | |V | | | 70. : | |M4III |06645 BD | +460130 |DG Leo *|094950.1+211046 |DSCTC | 6.08 | 6.12 | |V | | | 0.08184505 |50 |A8IV |07015 BD | +460131 |DH Leo *|100001.7+243310 |RS | 7.75 | 7.94 | |V |43194.475 | | 1.06950 | |K0Ve+B: |04066 BD | +460132 |DI Leo |100725.8+135659 |RRAB | 13.02 | 14.11 | |V |43519.835 | | 0.57681 |12 |A3 |08484 08484| +460133 |DK Leo *|101419.2+210430 |BY | 9.87 | 10.20 | |V | | | 8.05 |50 |M0Ve |08768 HIP | +460134 |DL Leo |094303.6+101901 |RRAB | 12.44 | 13.54 | |V | | | | | |67451 67450| +460135 |DM Leo |101319.9+110609 |RRAB | 12.5 |( 1.1 V )| |p | | | | | |67453 67063| +460136 |DN Leo |103855.2+100349 |PVTEL: | 9.91 | 10.00 | |V | | | | | |67455 BD | +460137 |DO Leo |104051.2+151134 |NL | 16.0 | 17.0 | |B | | | | | |67308 67308| +460138 |DP Leo |111716.0+175742 |XM | 17.5 | 19. | |V | | | | | |67456 USNO | +460139 |DQ Leo |114759.1+201308 |RS | 4.53 |( 0.03 )| |V | | | | | |67458 BD | +460140 |DR Leo |094135.1+311640 |LB | 5.84 | 5.98 | |V | | | | | |68006 BD | +460141 |DS Leo |110238.3+215802 |BY | 9.52 | 9.57 | |V | | | | | |68147 BD | +460142 |DT Leo |111823.0+153335 |ZZB | 16.1 |( 0.1 )| |B | | | | | |69179 69046| +460143 |DU Leo |094411.4+252111 |EA/SD | 8.68 | 9.43 | |R | | | | | |71092 BD | +460144 |DV Leo |095358.3+101532 |SR | 7.78 | 8.13 | |V | | | | | |71094 BD | +460145 |DW Leo |102611.5+145401 |RS | 8.5 |( 0.08 )| |V | | | | | |71001 BD | +460146 |DX Leo |093243.8+265919 |BY | 7.00 |( 0.10 )| |V | | | | | |73360 BD | +460147 |DY Leo |094948.5+110623 |RS | 7.59 |( 0.05 )| |V | | | | | |73005 BD | +460148 |DZ Leo |095742.0+275827 |RRC | 16.27 | 16.84 | |V | | | | | |73003 USNO | +460149 |EE Leo |105052.1+064829 |BY | 11.64 | 11.70 | |V | | | | | |73018 73066| +460150 |EF Leo |114910.9+280026 |RRAB | 14.52 | 15.78 | |V | | | | | |73003 USNO | +460151 |EG Leo |092950.1+190558 |LB | 8.78 | 8.97 | |Hp| | | | | |HIP HIP | +460152 |EH Leo |093106.2+250250 |SRB | 7.70 | 7.89 | |Hp| | | | | |HIP HIP | +460153 |EI Leo |093441.5+081115 |SRB | 7.38 | 7.49 | |Hp| | | | | |HIP HIP | +460154 |EK Leo |094348.9+072955 |SRB | 8.73 | 8.91 | |Hp| | | | | |HIP HIP | +460155 |EL Leo |094720.4+324656 |SRB | 7.52 | 7.83 | |Hp| | | | | |HIP HIP | +460156 |EM Leo |095045.0+312334 |LB | 7.06 | 7.27 | |Hp| | | | | |HIP HIP | +460157 |EN Leo |095304.4+220724 |LB | 8.11 | 8.25 | |Hp| | | | | |HIP HIP | +460158 |EO Leo |100249.0+215657 |LPB: | 5.59 | 5.62 | |Hp| | | | | |HIP HIP | +460159 |EP Leo |100346.5+120720 |SRD: | 8.01 | 8.08 | |Hp| | | | | |HIP HIP | +460160 |EQ Leo |101323.9+120846 |LB: | 9.49 | 9.65 | |Hp| | | | | |HIP HIP | +460161 |ER Leo |102147.1+153204 |DSCTC: | 9.88 | 9.94 | |Hp| | | | | |HIP HIP | +460162 |ES Leo |103211.8+140814 |SRB: | 5.46 | 5.56 | |Hp| | | | | |HIP HIP | +460163 |ET Leo |103325.8+173427 |EW: | 9.60 | 9.72 | |Hp| | | | | |HIP HIP | +460164 |EU Leo |104123.5+083346 |LB | 7.59 | 7.71 | |Hp| | | | | |HIP HIP | +460165 |EV Leo |104137.2+135843 |SRB | 7.63 | 7.77 | |Hp| | | | | |HIP HIP | +460166 |EW Leo |104440.4+192523 |SRB: | 9.15 | 9.57 | |Hp| | | | | |HIP HIP | +460167 |EX Leo |104506.8+162016 |EW | 8.27 | 8.49 | |Hp| | | | | |HIP HIP | +460168 |EY Leo |105030.8+101949 |LB | 8.55 | 8.85 | |Hp| | | | | |HIP HIP | +460169 |EZ Leo |105836.9+211417 |LB | 8.18 | 8.31 | |Hp| | | | | |HIP HIP | +460170 |FF Leo |110215.8+041157 |SRB | 9.35 | 9.71 | |Hp| | | | | |HIP HIP | +460171 |FG Leo |110419.1+051330 |SRB | 7.84 | 8.01 | |Hp| | | | | |HIP HIP | +460172 |FH Leo |110607.4+070201 |NL: | 8.33 | 8.62 | |Hp| | | | | |HIP HIP | +460173 |FI Leo |111036.8+111806 |LB | 6.92 | 7.34 | |Hp| | | | | |HIP HIP | +460174 |FK Leo |111205.5+141822 |EA | 8.57 | 8.85 | |Hp| | | | | |HIP HIP | +460175 |FL Leo *|111213.3+220320 |SRD: | 8.39 | 8.76 | |V | | | | | |HIP HIP | +460176 |FM Leo |111245.1+002053 |EA | 8.54 | 8.86 | |Hp| | | | | |HIP HIP | +460177 |FN Leo |111512.2+230544 |LC | 4.56 | 4.64 | |Hp| | | | | |HIP HIP | +460178 |FO Leo |111725.1+224940 |EB | 8.50 | 8.73 | |Hp| | | | | |HIP HIP | +460179 |FP Leo |112107.7+151347 |LB: | 9.93 | 10.10 | |Hp| | | | | |HIP HIP | +460180 |FQ Leo |112129.3+035615 |LB: | 8.19 | 8.32 | |Hp| | | | | |HIP HIP | +460181 |FR Leo |112239.0+095327 |LB: | 9.70 | 9.89 | |Hp| | | | | |HIP HIP | +460182 |FS Leo |112758.5+144956 |EB | 9.06 | 9.25 | |Hp| | | | | |HIP HIP | +460183 |FT Leo |112935.6+280524 |LB: | 8.81 | 8.92 | |Hp| | | | | |HIP HIP | +460184 |FU Leo |113127.7+084500 |LB | 8.77 | 9.25 | |Hp| | | | | |HIP HIP | +460185 |FV Leo |113203.6+180918 |SRB | 7.87 | 8.05 | |Hp| | | | | |HIP HIP | +460186 |FW Leo |114244.0+181431 |ACV: | 7.31 | 7.38 | |Hp| | | | | |HIP HIP | +460187 |FX Leo *|114657.2+270123 |SR: | 8.91 | 9.34 | |Hp| | | | | |HIP HIP | +460188 |FY Leo |114927.1+181408 |SRB | 8.45 | 8.59 | |Hp| | | | | |HIP HIP | +460189 |FZ Leo |115801.0+140217 |BY: | 8.44 | 8.58 | |Hp| | | | | |HIP HIP | +460190 |GG Leo |101534.8+090442 |XM | 15.8 | 17.2 | |V | | | | | |75155 75155| +460191 |GH Leo |103349.2+230916 |* | 14.25 | 14.70 | |U | | | | | |75156 75157| +460192 |GI Leo |103937.6+122323 |SR | 10.5 | 12.2 | |p | | | | | |75064 75064| +460193 |GK Leo |110750.5+270908 |LB | 11.6 | 13.2 | |V | | | | | |76054 GSC | +460194 |GL Leo |114557.1+231730 |BY | 18.6 |( 0.04 )| |I | | | | | |76115 76262| +460195 |GM Leo |100408.4+113743 |DSCTC | 7.10 |( 0.04 )| |V | | | | | |77084 DM | +460196 |GN Leo |102223.5+252959 |SR | 8.97 |( 0.70 )| |V | | | | | |77087 DM | +460197 |GO Leo |114215.7+273305 |EW: | 14.9 |( 0.18 )| |R | | | | | |77028 USNO | +460198 |GP Leo |114545.5+115209 |RRAB | 13.4 |( 1.2 )| |* | | | | | |77096 GSC | +460199 |GQ Leo |114745.7+125403 |BY: | 9.7 |( 0.14 )| |R | | | | | |77097 77097| +460200 |GR Leo |115728.9+195902 |BY | 8.87 | 8.92 | |B | | | | | |77053 DM | +460201 |GS Leo |093035.8+103606 |BY | 8.66 |( 0.06 )| |V | | | 3.041 | |G9V |78018 DM | +460202 |GT Leo |094209.9+073525 |BY | 8.92 |( 0.04 )| |V | | | 10.92 | |K0Ve |78018 DM | +460203 |GU Leo *|094733.8+182143 |EW | 11.62 | 12.31 | 12.19 |* |52385.2621 | | 0.354076 | | |78135 GSC | +460204 |GV Leo *|101159.2+165230 |EW | 11.45 | 11.96 | 11.87 |V |52754.4602 | | 0.266727 | | |78306 GSC | +460205 |GW Leo |101853.5+134109 |EW | 12.06 | 12.23 | |* |52721.528 | | 0.33614 | | |78060 GSC | +460206 |GX Leo |105616.9+222106 |SRS | 7.71 | 7.79 | |B | | | 13.96 | |K4III |78141 DM | +460207 |GY Leo |105630.8+072319 |BY | 7.37 |( 0.03 )| |V | | | 11.43 | |K0V |78018 DM | +460208 |GZ Leo |110202.3+223546 |RS | 8.83 | 8.95 | |V | | | 1.5264 | |K0V+K2V |78141 DM | +460209 |HH Leo |110441.5-041316 |BY | 7.57 | 7.61 | |V | | | 6.9 | |G5V |78046 DM | +460210 |HI Leo *|111216.8+011906 |EB | 11.2 |( 0.8 )|( 0.5 )|V |50552.3886 | | 0.311589 | | |78017 GSC | +460211 |HK Leo *|111703.5+182559 |R | 14.70 | 14.85 | |V |49312.586 | | 1.75992 | |pec(e) |78146 78009| +460212 |HL Leo |114347.0+240037 |BY | 7.40 |( 0.06 )| |V | | | 37.17 | |G2V |78018 DM | +460213 |HM Leo *|093837.0+071455 |UG | 12.9 | 17. | |V | | | | |pec(UG) |79153 79154| +460214 |HN Leo |095826.0+274532 |GDOR | 6.44 | 6.51 | |V | | | 0.7753 | |F0V+F5:V |79219 DM | +460215 |HO Leo |100813.9+262233 |RRAB | 13.1 | 14.4 | |* |51464.555 | | 0.4614 |15 : | |79025 79079| +460216 |HP Leo |105620.7+142931 |RRAB | 14.3 | 15.1 | |* |51444.98 | | 0.5250 |20 : | |79045 79084| +460217 |HQ Leo *|105940.4+063731 |RRAB | 13.0 | 13.5 | |* |51516.47 | | 0.6245 |15 : |BA |79025 79010| +460218 |HR Leo |110442.3-025820 |EB | 8.94 | 9.03 | 8.98 |V |48220.840 | | 1.081354 | |F2V |79004 DM | +460219 |HS Leo |111842.8+273150 |EW | 13.8 | 14.4 | 14.3 : |* |51286.7082 | | 0.33770 | | |79072 GSC | +460220 |HT Leo |092205.1+070002 |RS | 11.9 | 12.1 | |* | | | 1.72442 | | |80060 80060| NL80_2 +460221 |HU Leo |092444.5+080151 |EA+AM: | 18.2 | 21.5 | |V |54856.71933 | | 0.0911411 |08 |pec(e) |80237 USNO | NL80_2 +460222 |HV Leo |092517.0+183755 |RRAB | 12.6 | 13.8 | |V |52812.4493 | | 0.59371 |15 | |80002 GSC | NL80_2 +460223 |HW Leo |094328.8+292714 |RRAB | 12.11 | 12.68 | |* |51518.87 | | 0.59072 |16 | |80026 GSC | NL80_2 +460224 |HX Leo |094354.5+274659 |EA | 13.4 |( 0.01 )| |R | | | | |sdB |80235 GSC | NL80_2 +460225 |HY Leo *|094634.5+135058 |XM | 16.5 | 19.2 | |V | | | | | |80324 80324| NL80_2 +460226 |HZ Leo |094901.2+114401 |RRAB | 14.03 | 15.08 | |V |51577.69 | | 0.48675 | | |80026 GSC | NL80_2 +460227 |II Leo |101434.1+063326 |RRAB | 14.22 | 15.21 | |* |51627.86 | | 0.57933 | | |80026 GSC | NL80_2 +460228 |IK Leo *|102146.5+234928 |UGSU | 13.9 | 21. | |V | | | | |pec(UG) |80331 80331| NL80_2 +460229 |IL Leo |103100.6+202834 |XM | 18.2 |( 1.0 *)| |R | | | 0.0578 | |pec(e) |80334 USNO | NL80_2 +460230 |IM Leo |103353.0+191535 |RRAB | 11.9 | 12.6 | |V |53902.5142 | | 0.50405 |10 | |80001 GSC | NL80_2 +460231 |IN Leo |103959.0+132722 |RS | 10.1 | 10.5 | |V | | | 6.217 | | |80034 GSC | NL80_2 +460232 |IO Leo |104302.6+063446 |RRAB | 14.12 | 14.99 | |* |51628.66 | | 0.51591 | | |80026 GSC | NL80_2 +460233 |IP Leo |105544.7-013022 |RRAB | 15.6 | 16.9 | |V |51971.7593 | | 0.464177 |15 | |80159 USNO | NL80_2 +460234 |IQ Leo *|105603.0+204040 |EW | 14.7 | 15.3 | 15.2 |* |52721.526 | | 0.31738 | | |80005 80005| NL80_2 +460235 |IR Leo |105609.6-054022 |BY | 12.4 | 12.6 | |* | | | 1.483315 | |K7e |80060 80060| NL80_2 +460236 |IS Leo |105613.2-015657 |RRAB | 17.7 | 18.1 | |V |51607.7062 | | 0.774327 |30 | |80159 USNO | NL80_2 +460237 |IT Leo |105645.2-004727 |RRAB | 17.3 | 18.4 | |V |51971.7794 | | 0.536029 |14 | |80159 USNO | NL80_2 +460238 |IU Leo *|105756.3+092315 |UG | 12.9 | 15.0 | |* | | | | |pec(UG) |80347 GSC | NL80_2 +460239 |IV Leo |105812.6-000540 |RRAB | 15.4 | 15.8 | |V |51586.7314 | | 0.635792 |25 | |80159 USNO | NL80_2 +460240 |IW Leo |105920.1+045317 |RS | 12.3 | 12.8 | |V | | | 17.50 | | |80034 GSC | NL80_2 +460241 |IX Leo |105926.1-005928 |RRAB | 16.7 | 18.2 | |V |51984.7070 | | 0.449888 |15 | |80159 USNO | NL80_2 +460242 |IY Leo |110053.3-015757 |RRAB | 17.5 | 18.4 | |V |51258.6628 | | 0.568063 |20 : | |80159 USNO | NL80_2 +460243 |IZ Leo |110535.6+153811 |RRAB | 12.8 | 13.6 | |V |53795.7712 | | 0.592210 |15 | |80002 GSC | NL80_2 +460244 |KK Leo |110838.3-000514 |RRAB | 14.8 | 15.4 | |V |52733.3179 | | 0.615099 |25 | |80422 GSC | NL80_2 +460245 |KL Leo |110924.2-004513 |RRAB | 15.8 | 16.7 | |V |51971.7619 | | 0.671831 |13 | |80159 USNO | NL80_2 +460246 |KM Leo |111013.0+182812 |BY | 11.7 | 11.9 | |* | | | 5.811 | | |80043 80043| NL80_2 +460247 |KN Leo |111342.3-021923 |RRC | 17.2 | 17.6 | |V |51983.7012 | | 0.451376 |44 | |80159 USNO | NL80_2 +460248 |KO Leo *|111830.0-004552 |RRC | 14.7 | 15.2 | |V |51611.7002 | | 0.416280 |35 | |80159 GSC | NL80_2 +460249 |KP Leo |111900.2-001329 |RRAB | 17.8 | 18.5 | |V |51586.7537 | | 0.560087 |20 : | |80159 USNO | NL80_2 +460250 |KQ Leo |111959.7-003832 |RRAB | 15.8 | 17.0 | |V |51258.6921 | | 0.450966 |20 | |80159 USNO | NL80_2 +460251 |KR Leo |112019.5-021836 |RRAB | 13.5 | 14.5 | |V |54875.779 | | 0.496173 |39 : | |80001 GSC | NL80_2 +460252 |KS Leo |112057.5-020327 |RRC | 16.3 | 16.8 | |V |51255.6481 | | 0.351418 |40 | |80159 USNO | NL80_2 +460253 |KT Leo *|112312.5-004843 |RRC: | 16.8 | 17.3 | |V |51604.7563 | | 0.345295 |50 | |80159 USNO | NL80_2 +460254 |KU Leo |112425.4-000920 |RRAB | 17.4 | 18.3 | |V |51992.6799 | | 0.691363 |17 | |80159 USNO | NL80_2 +460255 |KV Leo *|112550.0+035136 |GDOR: | 6.34 | 6.37 | |V | | | 0.45286 | |F3IV |80130 HIP | NL80_2 +460256 |KW Leo |112557.0-000942 |RRAB | 14.0 | 14.8 | |V |51571.8154 | | 0.708407 |15 | |80159 GSC | NL80_2 +460257 |KX Leo |112759.4+132151 |RRC | 11.7 | 12.3 | |V |53737.8336 | | 0.345643 |35 | |80002 GSC | NL80_2 +460258 |KY Leo |112837.7-000112 |RRAB | 18.3 | 19.3 | |V |51588.7021 | | 0.566135 |20 | |80159 USNO | NL80_2 +460259 |KZ Leo |113049.3-005918 |RRAB | 18.4 | 19.7 | |V |52000.7056 | | 0.465108 |11 | |80159 USNO | NL80_2 +460260 |LL Leo |113053.6+131928 |RRAB | 12.4 | 13.7 | |V |51573.86 | | 0.33240 |15 | |80026 GSC | NL80_2 +460261 |LM Leo |113149.7-021426 |RRAB | 14.9 | 15.9 | |V |51582.7058 | | 0.676180 |14 | |80159 GSC | NL80_2 +460262 |LN Leo |113218.9+031713 |RRAB | 13.4 | 14.5 | |V |53102.6609 | | 0.515000 |30 : | |80001 GSC | NL80_2 +460263 |LO Leo |113522.8-005343 |RRAB | 14.8 | 15.9 | |V |51255.6763 | | 0.606972 |11 | |80159 GSC | NL80_2 +460264 |LP Leo |113639.8-012517 |RRAB | 16.5 | 17.0 | |V |51612.6905 | | 0.649233 |20 | |80159 USNO | NL80_2 +460265 |LQ Leo |114839.2+231139 |BY | 10.44 |( 0.12 *)| |V | | | 4.7245 | | |80021 DM | NL80_2 +469002 |bet Leo |114903.6+143419 |DSCTC | 2.14 |( 0.025 )| |V | | | | | |67459 BD | +469017 |rho Leo |103248.7+091824 |ACYG | 3.83 | 3.90 | |V | | | | |B1Iab |07884 BD | +470001 |R LMi *|094534.3+343043 |M | 6.3 | 13.2 | |V |45094. | | 372.19 |41 |M6.5e-M9.0e(Tc:) |00001 00002| +470002 |S LMi |095343.2+345535 |M | 7.5 | 14.3 | |V |45292. | | 233.83 |42 |M2.0e-M8.2e |00001 00002| +470003 |T LMi *|094828.5+331720 |EA/SD | 10.87 | 12.92 | 10.97 |V |45397.368 | | 3.019885 |12 *|A3V |00001 01924| +470004 |U LMi *|095438.6+360524 |SRA | 10.0 | 13.3 | |V |34354. | | 272.2 |40 |M6e |00001 00002| +470005 |V LMi *|102525.6+284708 |RRAB | 11.10 | 12.23 | |V |19530.341 | | 0.5439187 |15 |A8-F1 |00001 00884| +470006 |W LMi |104438.8+260211 |SRD | 10.5 | 13.5 | |V |28303. | | 117.2 |46 |G2e-K2e(M3) |00310 00119| +470007 |X LMi |100606.7+392128 |RRAB | 11.76 | 12.81 | |V |39200.007 | | 0.6843193 |17 |A5: |00001 03401| +470008 |Y LMi *|101551.5+325133 |RRAB | 11.4 | 13.3 | |V |35556.0394 | | 0.5244710 |32 |A3 |03258 01856| +470009 |Z LMi |094015.2+360619 |LB | 11.1 | 12.5 | |p | | | | |M |00499 02379| +470010 |RR LMi |110015.3+291915 |E | 13.5 | 14.5 | |p |36306.864 | | | | |02394 06286| +470011 |RS LMi |092833.8+360939 |LB | 9.5 | 10.6 | |p | | | | |M7 |04154 02379| +470012 |RT LMi *|094948.3+342715 |EW/KW | 11.4 | 11.7 | 11.7 |p |45002.4147 | | 0.3749180 | |G0 |09319 04157| +470013 |RU LMi *|100207.5+335100 |UG | 13.8 | 19.5 | |p | | |( 25. :) | |DAe |03791 04158| +470014 |RV LMi |102329.0+295057 |SRB | 10.0 | 10.6 | |p | | | 55. : | |M5 |04077 02379| +470015 |RW LMi *|101602.4+303420 |SRA | 12.8 | 16.5 | |V |41880. | | 640. |65 |C4,3eV |09359 03586| +470016 |RX LMi |104211.3+314149 |SRB | 5.98 | 6.16 | |V | | | 150. : | |M4IIIa |06590 BD | +470017 |RY LMi *|092415.2+351651 |ZZA | 15.52 |( 0.13 )| |V |42397.91751 | | | |DA |09328 06874| +470018 |RZ LMi |095148.9+340724 |NL | 14.4 | 16.8 | |B | | | | | |67308 67308| +470019 |SS LMi |103405.8+310800 |NA: | 15.7 |< 20. | |B | | | | | |67460 67460| +470020 |ST LMi |110539.8+250630 |AM | 15.10 | 17.00 | |V | | | | | |67462 67463| +470021 |SU LMi |093413.4+362351 |RS: | 4.54 |( 0.02 )| |V | | | | | |69181 BD | +470022 |SV LMi |093539.5+354837 |RS: | 5.39 |( 0.04 )| |V | | | | | |69181 BD | +470023 |SW LMi |095749.4+335924 |ZZB | 16.8 |( 0.3 )| |B | | | | | |69182 69183| +470024 |SX LMi |105430.4+300610 |NL | 17. |( 0.35 )| |V | | | | | |69184 69204| +470025 |SY LMi |102646.6+275902 |RRAB | 17.71 | 18.68 | |V | | | | | |73003 USNO | +470026 |SZ LMi |103658.8+275514 |RRAB | 17.46 | 18.42 | |V | | | | | |73003 USNO | +470027 |TT LMi |105822.4+275845 |RRC | 16.42 | 17.00 | |V | | | | | |73003 USNO | +470028 |TU LMi |094415.6+344315 |LB | 9.0 | 9.9 | |p | | | | | |HIP HIP | +470029 |TV LMi |095545.7+371142 |EA: | 9.10 | 9.36 | |Hp| | | | | |HIP HIP | +470030 |TW LMi |100327.6+411817 |SRB | 7.36 | 7.48 | |Hp| | | | | |HIP HIP | +470031 |TX LMi |101149.5+330729 |LB: | 8.76 | 8.86 | |Hp| | | | | |HIP HIP | +470032 |TY LMi |101657.4+294106 |LB | 8.53 | 8.71 | |Hp| | | | | |HIP HIP | +470033 |TZ LMi |101846.5+391841 |SRB | 8.46 | 8.63 | |Hp| | | | | |HIP HIP | +470034 |UU LMi |102422.2+341035 |SRB | 6.89 | 7.03 | |Hp| | | | | |HIP HIP | +470035 |UV LMi |104110.3+344118 |LB: | 8.07 | 8.18 | |Hp| | | | | |HIP HIP | +470036 |UW LMi |104330.2+284109 |EA | 8.44 | 8.67 | |Hp| | | | | |HIP HIP | +470037 |UX LMi |104542.2+275754 |DSCTC | 9.16 | 9.24 | |Hp| | | | | |HIP HIP | +470038 |UY LMi |104644.3+344353 |LB | 8.13 | 8.35 | |Hp| | | | | |HIP HIP | +470039 |UZ LMi |104901.1+264813 |SRD: | 8.64 | 8.82 | |Hp| | | | | |HIP HIP | +470040 |VV LMi |110208.5+275223 |SRD | 8.21 | 8.44 | |Hp| | | | | |HIP HIP | +470041 |VW LMi |110251.9+302455 |EW: | 8.03 | 8.45 | |Hp| | | | | |HIP HIP | +470042 |VX LMi |110545.3+303545 |SRB | 8.55 | 8.84 | |Hp| | | | | |HIP HIP | +470043 |VY LMi |092741.3+365822 |RRAB | 12.85 | 13.95 | |V | | | | | |75158 75158| +470044 |VZ LMi |093925.6+341453 |M | 10.3 |< 15.0 | |p | | | | | |75002 USNO | +470045 |WW LMi |105442.2+252927 |DSCTC | 6.16 | 6.23 | |V | | | | | |75159 BD | +470046 |WX LMi |102627.4+384505 |AM | 16.4 |( 1.27 )| |R | | | | | |76102 USNO | +470047 |WY LMi |093023.3+335310 |RRAB | 14.53 | 15.29 | |* |52678.292 | | 0.420003 |25 | |78063 GSC | +470048 |WZ LMi *|103126.5+313833 |EW | 12.45 | 12.71 | 12.68 |* |52355.9645 | | 0.389131 | | |78135 GSC | +470049 |XX LMi *|103304.8+322215 |EW | 12.42 | 12.58 | 12.56 |* |52358.913 | | 0.3709787 | | |78122 GSC | +470050 |XY LMi *|103412.3+320852 |EW | 10.71 | 11.15 | 11.13 |* |52366.884 | | 0.4368897 | | |78122 GSC | +470051 |XZ LMi *|105948.3+251724 |RS: | 8.49 |( 0.03 )| |V | | | 7.019 | |G8V |78018 DM | +470052 |YY LMi *|110314.5+303531 |RS: | 8.96 |( 0.06 )| |V | | | 11.53 | |G5V |78018 DM | +470053 |YZ LMi *|092638.7+362402 |EA | 19.2 | 20.2 | 19.3 |g'|53473.72539 | | 0.01966 |02 |pec(e) |80320 USNO | NL80_2 +470054 |ZZ LMi |093112.7+380231 |RS | 10.8 | 12.1 | |* | | | 5.501 | | |80043 80043| NL80_2 +470055 |AA LMi |094753.0+331702 |DSCTC | 11.4 |( 0.04 )| |* | | | 0.0542 | | |80325 80325| NL80_2 +470056 |AB LMi |100436.4+315250 |RRAB | 13.03 | 13.90 | |* |51277.85 | | 0.55718 |14 | |80001 GSC | NL80_2 +470057 |AC LMi *|101947.3+335754 |UG | 15.4 | 18.0 | |* | | | | |pec(e) |80167 80167| NL80_2 +470058 |AD LMi *|102622.8+374513 |RS | 9.6 | 9.8 | |* | | | 17.8 | |K1IV |80069 80069| NL80_2 +470059 |AE LMi *|102702.2+331659 |EA | 12.75 | 13.2 | 13.1 |* |51484.538 | | 0.52834 |18 | |80102 80102| NL80_2 +470060 |AF LMi *|103745.9+322042 |EW | 14.0 | 14.6 | 14.5 |* |51475.948 | | 0.40660 | | |80102 80102| NL80_2 +470061 |AG LMi *|104448.8+332112 |EA | 10.72 | 11.31 | 10.75 : |* |51526.875 | | 0.679507 |23 | |80013 GSC | NL80_2 +470062 |AH LMi |104556.7+262959 |RS | 11.9 | 12.1 | |* | | | 2.51292 | | |80060 80060| NL80_2 +470063 |AI LMi |104646.9+371730 |BY: | 11.6 | 11.8 | |* | | | 14.902 | | |80060 80060| NL80_2 +470064 |AK LMi |105305.0+381333 |RS | 10.35 | 10.48 | |* | | | 9.7733 | | |80170 80170| NL80_2 +480001 |R Lep *|045936.4-144823 |M | 5.5 | 11.7 | |V |42506. | | 427.07 |55 |C7,6e(N6e) |00001 00002| +480002 |S Lep *|060545.5-241144 |SRB | 6.0 | 7.58 | |V | | | 89.0 | |M6III |01266 00097| +480003 |T Lep *|050450.8-215417 |M | 7.4 | 14.3 | |V |41844. | | 368.13 |47 |M6e-M9e |00001 00002| +480004 |U Lep *|045618.0-211302 |RRAB | 9.84 | 11.11 | |V |41352.346 | | 0.5814762 |13 |A7-F7 |07114 01045| +480005 |V Lep *|061058.6-201242 |EB/KE | 9.6 | 10.1 | 9.9 |V |18873.723 | | 1.0701048 | |A5 |00279 00279| +480006 |W Lep |060951.0-223151 |SR | 10.2 | 11.6 | |p | | | 485.0 | | |01266 BD | +480007 |X Lep |051820.1-162107 |M | 10.6 | 16. | |p |38744. | | 278.81 | |M7e |00001 00132| +480008 |Y Lep |050850.9-242529 |SRB | 10.3 | 11.7 | |p | | | 109. | |M4III |01191 08953| +480009 |Z Lep *|051010.0-145217 |E | 11. | 12.5 | 12.0 : |p |27424.311 | | 0.993715 | |F0 |00279 00279| +480010 |RR Lep *|051210.5-131159 |EB | 10.2 | 11.1 | 10.4 |p |30377.162 | | 0.915428 | |A2 |03263 01857| +480011 |RS Lep *|055918.4-201325 |EA/SD | 9.91 | 10.38 | 9.96 |V |36191.148 | | 1.2885439 |18 *|A2V |02487 00279| +480012 |RT Lep |054233.2-234141 |M | 10.5 |< 12.5 | |p |32966. | | 399.0 | |M9e |00001 08953| +480013 |RU Lep *|060352.3-245407 |EA | 11.23 | 12.12 | |V |43516.670 | | 4.459601 |07 *| |09329 08953| +480014 |RV Lep |060946.8-222849 |SR: | 11.7 | 12.6 | |p | | | 200. : | | |01859 | +480015 |RW Lep |053852.7-140227 |SRA | 11.6 | 13.0 | |p |25992. | | 149.9 |35 |M8 |01860 00975| +480016 |RX Lep |051122.9-115057 |SRB | 5.0 | 7.4 | |V | | | 60. : | |M6.2III |08837 08953| +480017 |RY Lep |054810.3-200125 |EA | 8.2 | 9.1 | |V |38315.595 | | | |F0 |04400 08953| +480018 |RZ Lep *|051846.1-221244 |SRB | 8.33 | 8.44 | |V | | | 10. : | |S4,5(M0) |06059 BD | +480019 |SS Lep *|060459.1-162904 |ZAND | 4.82 | 5.06 | |V | | | | |A0Veq+M1III |07141 BD | +480020 |ST Lep |051925.6-135053 |M | 12. |< 16. | |p |40590. | | 700. /N| | |07446 07446| +480021 |SU Lep |052242.2-134751 |EA | 12.2 | 12.8 | |R |42038.960 | | 2.993 /N| |F: |07446 07446| +480022 |SV Lep |052543.6-142332 |M | 11.6 | 14.5 | |R | | | | |Me |07446 07446| +480023 |SW Lep |051649.6-243529 |LB | 9.5 | 10. | |p | | | | |M3 |00190 CoD | +480024 |SX Lep |055937.6-255553 |SR | 12. |< 13. | |p | | | | | |00085 02381| +480025 |SY Lep *|060946.1-130653 |M | 12. |< 16. | |p |42503. | | 307.5 | |M5e |00001 09364| +480026 |SZ Lep |053547.7-254419 |LB: | 7.40 | 7.93 | |V | | | | |C7,3(R8) |06869 CoD | +480027 |TT Lep |060648.9-213738 |E | 12.1 | 12.9 | |p |30369.300 | | 4.28885 | | |08040 05254| +480028 |TU Lep |050622.1-144148 |ACV | 7.07 |( 0.105 )| |V | | | | | |67065 BD | +480029 |TV Lep |051931.3-254405 |RRAB | 15.9 | 17.4 | |B | | | | | |67172 USNO | +480030 |TW Lep |054039.7-201756 |RS: | 7.0 |( 0.32 )| |V | | | | | |67401 BD | +480031 |TX Lep |051918.3-183034 |ACV | 6.54 |( 0.04 )| |V | | | | | |68148 BD | +480032 |TY Lep |053656.6-130441 |M | 13. |< 17.5 | |p | | | | | |68149 | +480033 |TZ Lep |054442.7-200352 |UV | 16.1 | 17.6 | |U | | | | | |68150 68150| +480034 |UU Lep |051430.6-261231 |RS | 6.91 | 7.02 | |V | | | | | |69011 CoD | +480035 |UV Lep |061121.8-154735 |ACVO | 6.77 |( 0.01 B )| |V | | | | | |72098 BD | +480036 |UW Lep |045823.0-255705 |LB: | 9.84 | 10.04 | |Hp| | | | | |HIP HIP | +480037 |UX Lep |045946.4-212340 |LB: | 9.47 | 9.67 | |Hp| | | | | |HIP HIP | +480038 |UY Lep |050734.8-240757 |LB: | 9.68 | 9.85 | |Hp| | | | | |HIP HIP | +480039 |UZ Lep |050831.9-210414 |LB: | 9.56 | 9.72 | |Hp| | | | | |HIP HIP | +480040 |VV Lep |051305.2-235752 |LB: | 8.44 | 8.52 | |Hp| | | | | |HIP HIP | +480041 |VW Lep |051800.8-183645 |LB: | 7.91 | 8.02 | |Hp| | | | | |HIP HIP | +480042 |VX Lep |051931.2-250727 |LB | 6.76 | 6.99 | |Hp| | | | | |HIP HIP | +480043 |VY Lep |052347.7-264838 |LB: | 9.08 | 9.19 | |Hp| | | | | |HIP HIP | +480044 |VZ Lep |053241.8-161909 |SRD | 6.76 | 6.86 | |Hp| | | | | |HIP HIP | +480045 |WW Lep |053526.6-154417 |LPB | 6.76 | 6.80 | |Hp| | | | | |HIP HIP | +480046 |WX Lep |053925.1-111237 |EB | 7.93 | 8.02 | |Hp| | | | | |HIP HIP | +480047 |WY Lep |054614.0-233840 |LB | 6.39 | 6.55 | |Hp| | | | | |HIP HIP | +480048 |WZ Lep |054714.0-124817 |LB | 7.26 | 7.55 | |Hp| | | | | |HIP HIP | +480049 |XX Lep |055223.8-261728 |ACV | 7.82 | 7.86 | |Hp| | | | | |HIP HIP | +480050 |XY Lep |055618.3-240520 |LB: | 7.75 | 7.85 | |Hp| | | | | |HIP HIP | +480051 |XZ Lep |060651.9-111025 |LPB | 6.60 | 6.62 | |Hp| | | | | |HIP HIP | +480052 |YY Lep |060657.5-214844 |SRB: | 5.60 | 5.82 | |Hp| | | | | |HIP HIP | +480053 |YZ Lep |051917.4-183112 |LPB | 6.30 | 6.36 | |Hp| | | | | |75160 BD | +480054 |ZZ Lep |052728.2-124150 |NL: | 9.77 | 10.02 | |V | | | | | |75161 BD | +480055 |AA Lep |055412.4-224147 |M: | 10.4 | 13.1 | |p | | | | | |75002 GSC | +480056 |AB Lep |055506.6-225402 |RS: | 12.5 |( 0.1 )| |V | | | | | |75162 75162| +480057 |AC Lep |060017.7-125400 |GDOR | 6.28 | 6.30 | |Hp| | | | | |75029 BD | +480058 |AD Lep |052144.6-155534 |M | 12.3 | 15.3 | |V | | | | | |76012 GSC | +480059 |AE Lep |060337.0-145303 |IA | 10.17 | 10.44 | |V | | | | | |76027 DM | +480060 |AF Lep |052704.8-115404 |RS | 6.26 | 6.35 | |V | | | 1. : | |F7V+G5V |78071 DM | +480061 |AG Lep |053019.1-191632 |BY | 9.62 | 9.67 | |V | | | 1.90 | |G5V |78046 DM | +480062 |AH Lep |053409.2-151703 |BY | 8.46 | 8.50 | |V | | | 1.31 | |G3V |78046 DM | +480063 |AI Lep |054020.7-194011 |RS | 8.97 |( 0.05 )| |V | | | 1.713 | |G6IV+G0V |78018 DM | +480064 |AK Lep |054426.5-222519 |BY | 6.15 |( 0.06 )| |V | | | 21.4 | |K2V |78074 DM | +480065 |AL Lep |050617.7-200753 |EW | 9.40 | 9.75 | 9.70 |V |51868.910 | | 0.44864 | |G0 |79064 DM | +480066 |AM Lep *|051217.6-115158 |BY | 9.92 |( 0.07 )| |V | | | 2.8 | |G8Ve |79147 2MASS| +480067 |AN Lep |051344.3-200315 |SRB | 12.6 | 13.9 | |V | | | 103. | | |79100 GSC | +480068 |AO Lep |052414.6-140603 |RRAB | 11.8 | 12.7 | |V |53767.688 | | 0.560086 |21 | |79100 79178| +480069 |AP Lep |052619.5-152730 |EA | 9.65 | 10.21 | 9.71 |V |51579.808 | | 2.29609 |11 |A9V |79003 DM | +480070 |AQ Lep |053750.1-154812 |M | 12.6 |< 15.1 | |V |52737. | | 347. | | |79179 USNO | +480071 |AR Lep |054050.1-233507 |EA | 10.71 | 11.5 : | 10.86 |V |52736.660 | | 13.5166 |07 | |79011 DM | +480072 |AS Lep |054111.8-165232 |SRB | 8.5 | 8.9 | |V | | | 52.5 | |M2 |79100 DM | +480073 |AT Lep |054817.1-250231 |EA | 11.45 | 12.2 : | 12.0 : |V |52634.783 | | 10.6495 |03 : | |79003 DM | +480074 |AU Lep |060104.4-121221 |M | 12.2 |< 14.4 | |V |53681. | | 278. | | |79190 79190| +480075 |AV Lep |060150.8-210618 |SRB | 9.6 | 10.6 | |V | | | 200. : | | |79100 79080| +480076 |AW Lep |060435.1-140157 |GDOR: | 7.65 | 7.69 | |Hp| | | 0.4199 | |A9V |79145 DM | +480077 |AX Lep |050349.6-113101 |IB | 12.26 |( 0.04 )| |V | | | 1.75 : | |K1 |80151 GSC | NL80_1 +480078 |AY Lep |052259.4-203253 |SRB | 9.3 | 9.7 | |V | | | 58.8 | |M0e+F |80184 DM | NL80_1 +480079 |AZ Lep |053212.4-130529 |RRAB | 13.0 | 14.4 | |V |52738.542 | | 0.53644 |20 | |80002 GSC | NL80_1 +480080 |BB Lep |054230.2-162255 |RRAB | 11.8 | 12.7 | |V |51869.75 | | 0.53890 |20 | |80002 GSC | NL80_1 +480081 |BC Lep *|054530.6-174634 |EA | 10.58 | 11.15 | 10.70 |V |53619.883 | | 3.9895 |14 : | |80023 GSC | NL80_1 +480082 |BD Lep |054556.7-144130 |RRAB | 12.6 | 13.8 | |V |52987.6702 | | 0.59937 |18 | |80001 GSC | NL80_1 +480083 |BE Lep |054838.0-192930 |RRAB | 12.9 | 14.1 | |V |52929.8039 | | 0.55879 |13 | |80002 GSC | NL80_1 +480084 |BF Lep |055137.0-143213 |RRAB | 12.4 | 13.4 | |V |53812.6261 | | 0.5190007 |12 | |80001 GSC | NL80_1 +480085 |BG Lep |055208.7-220810 |SRB | 11.9 | 12.3 | |* | | | 50. | | |80001 GSC | NL80_1 +480086 |BH Lep *|060502.0-234227 |* | 17.19 | 17.26 | |Ic| | | 0.10 | |L0 |80241 2MASS| NL80_2 +489012 |mu. Lep |051255.9-161220 |ACV | 2.97 | 3.41 | |V | | | 2. : | |B9IIIp(Hg-Mn) |07968 BD | +490001 |R Lib |155336.0-161411 |M | 9.8 | 15.9 | |V |39221. | | 241.85 |44 |M5e |00001 00002| +490002 |S Lib *|152124.0-202318 |M | 7.5 | 13.0 | |V |41883. | | 192.9 |49 |M1.0e-M6.0e |00001 00002| +490003 |T Lib |151044.3-200108 |M | 10.2 | 15.6 | |V |38474. | | 237.50 |41 |M4e-M5.5e |00001 00002| +490004 |U Lib |154203.1-211051 |M | 9.0 | 15.0 | |V |39124. | | 226.59 |44 |M3e-M8.0e |00001 00002| +490005 |V Lib |144022.2-173927 |M | 9.0 | 15.9 | |V |39214. | | 255.30 |42 |M5e-M8.0e |00001 00002| +490006 |W Lib *|153747.9-160957 |M | 10.5 | 15.5 | |V |38945. | | 205.50 |45 | |00001 00002| +490007 |X Lib *|153612.7-210904 |M | 10.0 | 14.5 | |V |38470. | | 164.38 |40 |M4e |00001 00002| +490008 |Y Lib *|151141.3-060041 |M | 7.6 | 14.7 | |V |44017. | | 275.7 |41 |M5e-M8.2e |00001 00002| +490009 |Z Lib *|154631.2-210739 |M | 10.4 |< 14.0 | |V |27689. | | 298.6 | |M3e |00001 00579| +490010 |RR Lib *|155623.7-181815 |M | 7.8 | 15.0 | |V |38784. | | 277.01 |47 |M4e-M8e |00001 00002| +490011 |RS Lib *|152419.8-225440 |M | 7.0 | 13.0 | |V |42154. | | 217.65 |48 |M7e-M8.5e |00001 00002| +490012 |RT Lib *|150626.2-184356 |M | 8.2 | 14.7 | |V |39193. | | 251.16 |45 |M2.5pe-M8.2e |00001 00002| +490013 |RU Lib *|153316.5-151935 |M | 7.2 | 14.4 | |V |41840. | | 316.56 |46 |M5e-M6e |00001 00002| +490014 |RV Lib *|143548.4-180212 |EA/D/RS | 9.02 | 9.50 | 9.44 |V |30887.236 | | 10.722164 |14 *|G5 |00279 00024| +490015 |RW Lib |152306.2-240411 |M | 8.84 | 14.26 | |V |41530. | | 203.31 |48 |K5e:-M5.6e: |00001 06286| +490016 |RX Lib *|154200.1-204646 |CWA | 11.65 | 12.78 | |V |44131.88 | | 24.933 |37 |F9eV |00001 00521| +490017 |RY Lib |142730.0-213127 |RRAB | 12. | 14. | |p |26126.578 | | 0.48300422 | | |03717 06286| +490018 |RZ Lib |145944.9-151615 |RRAB | 12.5 | 14.1 | |V |27602.340 | | 0.5963275 |08 | |01756 06286| +490019 |SS Lib *|154905.1-153209 |EA/KE: | 10.4 | 11.3 | 10.8 |V |41155.660 | | 1.4379983 |20 |A5 |00001 01862| +490020 |ST Lib *|154639.5-184334 |S: | 13.5 | 15.7 | |p | | | | | |01863 06286| +490021 |SU Lib |152136.5-155354 |S: | 14.5 | 16.3 | |p | | | | |F2: |02001 USNO | +490022 |SV Lib |153321.6-271103 |M | 10.2 |< 11.5 | |p |33852. | | 402.66 | |M8e |00001 06286| +490023 |SW Lib |155533.4-125106 |M | 12.3 | 17.6 | |p |35690. | | 291.8 | |M7 |00215 06286| +490024 |SX Lib |144246.2-201236 |M | 10.2 |< 15.8 | |p |41900. | | 332.9 | |M6e: |07973 06286| +490025 |SY Lib |150332.0-113215 | | 12.8 : |< 13.3 | |p | | | | |G2: |01864 01864| +490026 |SZ Lib |151717.5-054328 |EB: | 12.5 | 13.5 | |V |42504.7 | | 6.65 | | |07471 06286| +490027 |TT Lib |150854.5-152951 |M | 10.9 | 16. | |p |33354. | | 278.3 | |M3e |00001 06286| +490028 |TU Lib |153521.3-235649 |M | 11.4 | 14.5 | |p |11188. | | 287. | |M3e |00031 06286| +490029 |TV Lib *|151821.9-082743 |RRAB | 11.23 | 12.51 | |V |20017.3015 | | 0.269624031 |13 |A5-F5 |03096 01867| +490030 |TW Lib |144436.9-193228 |M | 11.6 | 17. | |p |26120. | | 135.5 | |Me |00001 06286| +490031 |TX Lib |151910.6-065829 |RR | 12.4 | 13.2 | |p | | | | |F0hb: |09270 06286| +490032 |TY Lib *|152145.7-081440 |EA/SD | 11.2 | 13.6 | |p |45105.422 | | 3.2016741 |09 | |00001 06286| +490033 |TZ Lib |153651.3-100449 |M | 11.3 | 16.0 | |p |28332. | | 183.6 | | |02931 06286| +490034 |UU Lib |160205.9-181809 |M | 12. |< 15. | |p |31242. | | 287. | |Me |00001 00351| +490035 |UV Lib |155910.7-141055 |M | 12.7 | 18.3 | |p |36703. | | 189.96 |40 : | |00001 00550| +490036 |UW Lib *|143054.2-164838 |SRD | 9.05 | 10.64 | |V |41920. | | 84.726 | |G2e-K0(M3) |00005 08953| +490037 |UX Lib |145515.1-061733 |RRAB | 12.5 | 13.5 | |p |26174.421 | | 0.48317104 | | |03717 06286| +490038 |UY Lib |153118.7-173056 |RRAB | 13.0 | 14.0 | |p |25867.503 | | 0.49324075 | | |03717 06286| +490039 |UZ Lib |153223.2-083201 |FKCOM | 9.16 | 9.62 | |V |43222.15 | | 4.75 | |K0IIIe |09367 BD | +490040 |VV Lib *|153946.9-210049 |RRAB | 12.3 | 13.6 | |p |26093.533 | | 0.4781301 |30 : | |03506 03551| +490041 |VW Lib *|155139.4-160557 |M | 13.0 |< 16.5 | |p |28687. | | 155. : | | |01870 00293| +490042 |VX Lib |155241.4-170207 |SR: | 14.5 | 15.2 | |p | | | | | |01870 00293| +490043 |VY Lib *|155117.0-154503 |RRAB | 11.12 | 12.14 | |V |41144.370 | | 0.5339412 |14 |A7:-F7 |00001 00190| +490044 |VZ Lib *|153151.8-154110 |EW/KW | 10.13 | 10.63 | 10.55 |V |44788.59010 | | 0.35826334 | |F5 |09333 00279| +490045 |WW Lib |150508.3-223623 |SRA | 11.5 | 13.0 | |p |28020. | | 81.5 | |C |01869 06286| +490046 |WX Lib |150604.2-274721 |EA | 12.1 | 12.7 | |p |27956.550 | | 0.4600045 | | |00001 06286| +490047 |WY Lib |150631.6-233115 |RRAB | 13.8 | 15.1 | |p |27956.482 | | 0.74586 | | |01869 06286| +490048 |WZ Lib |150642.1-232539 |SR | 13.4 | 14.5 | |p | | | 166. | | |01869 06286| +490049 |XX Lib |150710.0-255952 |RRAB | 11.6 | 12.6 | |p |27955.354 | | 0.69843 | | |01869 06286| +490050 |XY Lib |150724.4-253621 |SR | 14.8 | 16.3 | |p | | | 209.4 | | |01869 06286| +490051 |XZ Lib |150817.9-250733 |RRAB | 13.8 | 15.4 | |p |27956.382 | | 0.64978 | | |01869 06286| +490052 |YY Lib |150810.7-211001 |M | 9. |< 12. | |p | | | 229.53 | |Me |01872 00464| +490053 |YZ Lib *|150935.7-295212 |E | 12.7 | 13.3 | 12.9 |p |28010.374 | | 0.77735 | | |01869 06286| +490054 |ZZ Lib |151015.3-293459 |M | 12.2 |< 16.4 | |p |28010. | | 246.3 | | |01869 06286| +490055 |AA Lib *|151016.0-250957 |EA | 13.0 | 14.5 | |p |27955.196 | | 2.20473 | | |01869 06286| +490056 |AB Lib |151031.9-295709 |SR | 13.6 | 15.1 | |p | | | 101.1 | | |01869 06286| +490057 |AC Lib |151044.2-220815 |EW | 13.9 | 14.6 | |p |27959.302 | | 0.66495 | | |01869 06286| +490058 |AD Lib |151107.5-214803 |SRB | 14.9 | 16.3 | |p | | | 292.1 | | |01869 06286| +490059 |AE Lib |151122.1-243602 |EA/KE | 12.7 | 13.4 | |p |27867.514 | | 1.20434 | | |01869 06286| +490060 |AF Lib *|151233.9-252547 |RRAB | 14.8 | 16.0 | |p |27982.271 | | 0.49836 | | |01869 06286| +490061 |AG Lib |151344.0-234946 |RRAB | 14.0 | 15.0 | |p |27982.206 | | 0.68052 | | |01869 06286| +490062 |AH Lib |151542.7-254556 |RRAB | 13.2 | 14.8 | |p |27863.437 | | 0.47978 | | |01869 06286| +490063 |AI Lib |151619.6-271523 |SRB | 15.4 | 16.5 | |p | | | | | |01869 06286| +490064 |AK Lib |151623.6-285314 |SR | 12.7 | 16.4 | |p |27955. | | 155. | | |01869 06286| +490065 |AL Lib |151653.6-201922 |RR | 14.7 | 15.5 | |p |27863.537 | | 0.32122 | | |01869 06286| +490066 |AM Lib |151706.6-245223 |RRAB | 14.9 | 16.1 | |p |27844.588 | | 0.60380 | | |01869 06286| +490067 |AN Lib |151718.0-271832 |EW | 14.5 | 15.2 | |p |27982.445 | | 0.53055 | | |01869 06286| +490068 |AO Lib |151726.8-211947 |RRAB | 14.2 | 15.8 | |p |28021.278 | | 0.49685 | | |01869 06286| +490069 |AP Lib *|151741.8-242220 |BLLAC | 14.0 | 16.7 | |B | | | | | |06541 06746| +490070 |AQ Lib *|151744.6-241435 |RRC | 12.9 | 13.4 | |p |27959.307 | | 0.27639 | | |01869 06286| +490071 |AR Lib |151820.4-275602 |LB | 13.7 | 14.7 | |p | | | | |M8 |01869 06286| +490072 |AS Lib |151809.9-215216 |EW | 13.2 | 13.9 | |p |27977.408 | | 0.5538091 | | |00001 06286| +490073 |AT Lib |151821.1-251825 |RR | 15.3 | 16.5 | |p |27955.503 | | 0.44415 | | |01869 06286| +490074 |AU Lib |151835.8-242716 |SRB | 13.5 | 14.5 | |p | | | 222. | | |01869 06286| +490075 |AV Lib |151913.3-244558 |RRAB | 13.3 | 14.3 | |p |27955.340 | | 0.64293 | | |01869 06286| +490076 |AW Lib |151936.4-261630 |RRAB | 15.4 | 16.6 | |p |27955.503 | | 0.61200 | | |01869 06286| +490077 |AX Lib |151956.1-263829 |SR | 14.0 | 15.3 | |p | | | 115.2 | | |01869 06286| +490078 |AY Lib |152026.6-202710 |RR | 15.1 | 16.3 | |p | | | 0.44755 | | |01869 | +490079 |AZ Lib |152038.4-221729 |RRAB | 11.8 | 12.8 | |p |27984.418 | | 0.6513749 | | |04149 06286| +490080 |BB Lib |152112.6-282056 |RRAB | 13.4 | 15.0 | |p |27982.271 | | 0.49777 | | |01869 06286| +490081 |BC Lib |152058.9-214004 |RRAB | 14.1 | 15.7 | |p | | | 0.48253 | | |01869 | +490082 |BD Lib |152349.0-284811 |RRAB | 14.2 | 15.8 | |p |27956.550 | | 0.57267 | | |01869 06286| +490083 |BE Lib *|152402.6-200657 |RRAB | 14.6 | 16.0 | |p |27955.340 | | 0.43650 | | |01869 GSC | +490084 |BF Lib |152452.8-284320 |RRAB | 13.5 | 14.5 | |p | | | 0.63293 | | |01869 06286| +490085 |BG Lib |152452.8-254329 |RRAB | 13.7 | 14.9 | |p |28034.214 | | 0.53799 | | |01869 06286| +490086 |BH Lib *|152506.9-233132 |RRAB | 14.1 | 15.7 | |p |27863.537 | | 0.50435 | | |01869 GSC | +490087 |BI Lib |152535.1-204007 |RRAB | 14.6 | 15.5 | |p |27956.382 | | 0.81960 | | |01869 06286| +490088 |BK Lib |152559.0-204022 |RRAB | 14.8 | 16.2 | |p |27961.292 | | 0.59078 | | |01869 06286| +490089 |BL Lib |152655.9-232849 |RRC | 14.8 | 15.6 | |p |27956.311 | | 0.33561 | | |01869 GSC | +490090 |BM Lib |152638.4-113230 |RR | 12.5 | 13.9 | |p | | | | | |01870 06286| +490091 |BN Lib |152720.5-221319 |RRAB | 15.2 | 15.9 | |p | | | 0.57930 | | |01869 | +490092 |BO Lib |152741.5-222449 |RRAB | 14.5 | 15.6 | |p | | | 0.60629 | | |01869 06286| +490093 |BP Lib |152752.9-255841 |M | 11.1 | 16.2 | |p | | | 209.2 | |Me |01869 06286| +490094 |BQ Lib |152943.4-253310 |RRAB | 14.6 | 16.2 | |p |27959.302 | | 0.59745 | | |01869 06286| +490095 |BR Lib |153007.7-204301 |RRAB | 12.8 | 14.2 | |p |28021.278 | | 0.4931024 | | |04149 06286| +490096 |BS Lib |153018.9-132243 |RR | 12.7 | 14.3 | |p | | | | | |01870 06286| +490097 |BT Lib *|153115.9-232136 |RV | 11.5 | 13.1 | 12.3 |p | | | 75.34 | | |01869 03405| +490098 |BU Lib |153122.7-260809 |RRAB | 14.9 | 16.3 | |p |27982.378 | | 0.48679 | | |01869 USNO | +490099 |BV Lib |153102.8-122349 |RR | 14.9 | 16.0 | |p | | | | | |01870 06286| +490100 |BW Lib *|153140.1-202718 |E/SD: | 13.4 | 14.7 | |p | | | 0.93235 | | |01869 GSC | +490101 |BX Lib |153213.4-285421 |SR | 14.2 | 15.4 | |p | | | | | |01869 06286| +490102 |BY Lib |153254.6-220455 |RRAB | 14.1 | 15.4 | |p |28010.358 | | 0.53225 | | |01869 06286| +490103 |BZ Lib |153304.0-262830 |RRAB | 13.9 | 15.2 | |p |27955.438 | | 0.71728 | | |01869 06286| +490104 |CC Lib |153351.2-202225 |RRAB | 14.3 | 15.6 | |p | | | 0.46392 | | |01869 06286| +490105 |CD Lib |153423.5-264118 |M | 12.8 |< 16.5 | |p |28285. | | 234.2 | | |01869 06286| +490106 |CE Lib |153420.4-180648 |RR | 14.8 | 15.8 | |p | | | | | |01870 06286| +490107 |CF Lib |153454.5-234316 |SRB | 13.6 | 15.0 | |p | | | 176. | | |01869 06286| +490108 |CG Lib *|153516.8-242013 |RRC | 11.20 | 11.80 | |V |41153.324 | | 0.306850 |32 |A4-G0 |00001 06286| +490109 |CH Lib |153527.1-172633 |I | 13.6 | 14.6 | |p | | | | | |01870 06286| +490110 |CI Lib |153625.6-240947 |RRAB | 15.1 | 16.0 | |p |27982.271 | | 0.56386 | | |01869 06286| +490111 |CK Lib |153622.3-112648 |SR | 14.3 | 16.0 | |p | | | | | |01870 06286| +490112 |CL Lib |153728.4-120024 |M | 13. |< 16. | |p |27520. :| | 150. : | |Me |01870 06286| +490113 |CM Lib |153825.5-162140 |RR | 13.4 | 14.8 | |p | | | | | |01870 06286| +490114 |CN Lib |153853.8-145735 |RR | 15.5 | 16.5 | |p | | | | | |01870 06286| +490115 |CO Lib |154030.0-152735 |RR | 14.9 | 15.9 | |p | | | | | |01870 06286| +490116 |CP Lib |154108.0-294544 |RRAB | 13.7 | 14.6 | |p | | | 0.60843 | | |01869 06286| +490117 |CQ Lib *|154324.4-164207 |SR: | 15.0 | 16.2 | |p | | | | | |01870 GSC | +490118 |CR Lib |154206.1-263440 |RRAB | 13.6 | 15.2 | |p | | | 0.47708 | | |01869 USNO | +490119 |CS Lib |154152.3-132956 |RR | 15.4 | 16.5 | |p | | | | | |01870 06286| +490120 |CT Lib |154250.9-285005 |RRAB | 15.2 | 16.4 | |p | | | 0.47147 | | |01869 USNO | +490121 |CU Lib |154330.8-292201 |RR | 12.7 | 13.8 | |p | | | | | |01869 06286| +490122 |CV Lib |154425.3-160456 |SR: | 13.0 | 14.0 | |p | | | | | |01870 06286| +490123 |CW Lib |154429.4-150321 |E | 14.0 |< 15.5 | |p | | | | | |01870 06286| +490124 |CX Lib |154436.7-104330 |RR | 13.7 | 15.2 | |p | | | | | |01870 06286| +490125 |CY Lib |154511.0-150302 |RR | 15.1 | 16.4 | |p | | | | | |01870 06286| +490126 |CZ Lib *|154535.8-194813 |RR | 14.2 | 15.2 | |p | | | | | |01870 GSC | +490127 |DD Lib |154625.2-193241 |RR | 14.2 | 15.4 | |p | | | | | |01870 06286| +490128 |DE Lib |154652.2-203726 |RRAB | 13.2 | 14.5 | |p |29050.302 | | 0.5700573 |11 | |03551 03551| +490129 |DF Lib |154644.8-163606 |RR | 13.7 | 15.3 | |p | | | | | |01870 06286| +490130 |DG Lib |154643.1-104117 |SR | 13.3 | 14.5 | |p | | | | | |01870 06286| +490131 |DH Lib |154708.1-122448 |RR | 13.5 | 14.7 | |p | | | | | |01870 06286| +490132 |DI Lib |154722.0-160627 |RR | 13.9 | 15.0 | |p | | | | | |01870 06286| +490133 |DK Lib |154733.0-181850 |RR | 13.6 | 15.2 | |p | | | | | |01870 06286| +490134 |DL Lib |154807.7-145744 |RR | 15.5 | 16.8 | |p | | | | | |01870 06286| +490135 |DM Lib |154838.5-161141 |M | 15.0 |< 16.5 | |p | | | 425. /N| | |01870 06286| +490136 |DN Lib |154904.5-200655 |SR | 13.5 | 15.0 | |p | | | 160. : | | |01870 06286| +490137 |DO Lib |154911.6-164333 |RR | 14.0 | 15.4 | |p | | | | | |01870 06286| +490138 |DP Lib |155037.0-112844 |RR | 14.2 | 15.2 | |p | | | | | |01870 06286| +490139 |DQ Lib |155134.1-143132 |RR | 14.4 | 15.5 | |p | | | | | |01870 06286| +490140 |DR Lib |155302.8-183357 |RR | 14.0 | 15.5 | |p | | | | | |01870 06286| +490141 |DS Lib |155358.9-183017 |M | 13.3 |< 16.5 | |p | | | 330. : | | |01870 06286| +490142 |DT Lib |155436.7-111127 |SR | 13.4 | 15.0 | |p | | | 148. : | | |03519 06286| +490143 |DU Lib |155514.0-131907 |RRAB | 13.9 | 15.6 | |p |35663.820 | | 0.45295 |10 | |03519 06286| +490144 |DV Lib |155529.7-102131 |RR | 14.8 | 15.8 | |p | | | | | |01870 GSC | +490145 |DW Lib |155730.8-140450 |I | 13.7 | 14.7 | |p | | | | | |01870 06286| +490146 |DX Lib |155838.2-134025 |SR: | 13.7 | 14.9 | |p | | | | | |01870 06286| +490147 |DY Lib |160002.5-105059 |RRAB | 14.7 | 15.8 | |p |35634.748 | | 0.58347 |12 | |03519 06286| +490148 |DZ Lib |160054.8-162833 |SR | 13.9 | 14.9 | |p | | | | | |01870 06286| +490149 |EE Lib |154338.1-092308 |M | 10.2 |< 13.5 | |p |33100. | | 208.9 | |M6e |00001 00190| +490150 |EF Lib |152137.8-284052 |LB | 10.9 | 11.5 | |p | | | | |M6 |01869 CoD | +490151 |EG Lib |145521.5-220020 |M | 11. |< 12.5 | |p | | | 365. : | |M5 |00190 00190| +490152 |EH Lib *|145855.9-005653 |DSCT | 9.35 | 10.08 | |V |33438.6082 | | 0.0884132445 |32 |A5-F3 |09335 01874| +490153 |EI Lib |153421.8-230003 |EA/SD: | 9.5 | 10.5 | |p |30869.310 | | 1.98691 |13 |A2 |01875 03405| +490154 |EK Lib |153805.2-170154 |SR | 12.7 | 14.5 | |p | | | | | |01870 06286| +490155 |EL Lib |154255.9-163142 |RR | 14.1 | 15.0 | |p | | | | | |01870 06286| +490156 |EM Lib |154256.9-160910 |RR | 14.8 | 15.6 | |p | | | | | |01870 06286| +490157 |EN Lib |154441.0-283955 |M | 11.5 |< 13.5 | |p | | | | |Me |00085 02382| +490158 |EO Lib |155556.1-173457 |RR | 13.5 | 15.7 | |p | | | | | |01870 06286| +490159 |EP Lib |143959.9-223427 |M | 10.8 |< 14.0 | |p |28746. | | 185.78 |46 |Me |00001 06286| +490160 |EQ Lib |152110.9-294027 |RR | 15.5 | 16. | |p | | | | | |04001 04001| +490161 |ER Lib |152537.6-271308 |RR | 14.5 | 16. | |p | | | | | |04001 04001| +490162 |ES Lib *|151648.6-130221 |EB/KE | 7.10 | 7.57 | 7.33 |V |40329.4669 | | 0.8830356 | |A2-3V |07559 08953| +490163 |ET Lib |155309.4-150058 |RRAB | 18.4 | 19.4 | |p |35634.849 | | 0.51294 |15 | |03519 USNO | +490164 |EU Lib *|155408.7-105036 |SR: | 14.8 | 15.7 | |p | | | 80. : | | |03519 GSC | +490165 |EV Lib |155502.1-140207 |RRAB | 16.0 | 16.9 | |p |35656.724 | | 0.72530 |18 | |03519 | +490166 |EW Lib |155526.3-103609 |RRC | 16.4 | 17.1 | |p |35635.893 | | 0.69687 |25 : | |03519 | +490167 |EX Lib |155541.0-124734 |RRAB | 15.1 | 16.7 | |p |35635.808 | | 0.48189 |12 | |03519 USNO | +490168 |EY Lib |155553.3-140725 |E | 16.8 | 18.5 | |p |36809.700 | | 24.916 /N| | |03519 USNO | +490169 |EZ Lib |155635.3-134940 |RRAB | 15.8 | 16.5 | |p |35634.895 | | 0.78876 |25 | |03519 USNO | +490170 |FF Lib |155649.6-143722 |RRAB | 15.3 | 16.7 | |p |35667.780 | | 0.62649 |16 | |03519 USNO | +490171 |FG Lib |155658.7-142828 |RRAB | 15.1 | 16.4 | |p |35634.863 | | 0.52708 |15 | |03519 GSC | +490172 |FH Lib |155717.9-105729 |RRAB | 17.2 | 18.7 | |p |35637.871 | | 0.55239 |08 | |03519 USNO | +490173 |FI Lib *|155742.8-144411 |SR | 14.7 | 15.7 | |p | | | 100. : | | |03519 GSC | +490174 |FK Lib |155819.7-100625 |RRAB | 16.7 | 17.9 | |p |35637.828 | | 0.57350 |12 | |03519 | +490175 |FL Lib |155840.4-111952 |LB | 13.6 | 14.2 | |p | | | | | |03519 | +490176 |FM Lib |155845.3-103027 |RRAB | 15.7 | 17.2 | |p |35632.998 | | 0.60253 |10 | |03519 | +490177 |FN Lib |155937.7-135255 |RR: | 16.2 | 17.3 | |p | | | | | |03519 USNO | +490178 |FO Lib |155942.9-131253 |RRAB | 15.7 | 16.6 | |p |35654.712 | | 0.59297 |20 : | |03519 | +490179 |FP Lib |160009.4-142102 |RRAB | 15.8 | 17.1 | |p |35636.796 | | 0.71706 |10 | |03519 USNO | +490180 |FQ Lib |160005.7-092728 |RRAB | 14.3 | 15.7 | |p |35657.847 | | 0.62210 |12 | |03519 | +490181 |FR Lib |160015.9-142141 |SR | 13.6 | 14.3 | |p | | | | | |03519 GSC | +490182 |FS Lib *|160023.7-122058 |M | 15.1 |< 20.2 | |p |36685. | | 415. | |M8.1-M9.0 |03519 GSC | +490183 |FT Lib |160052.1-130711 |RRC | 14.8 | 15.3 | |p |35633.850 | | 0.89160 |50 | |03519 | +490184 |FU Lib |160100.9-092636 |E | 12.9 | 13.9 | |p |35657.647 | | 3.5600 | | |03519 | +490185 |FV Lib |144850.9-023346 |RR: | 14.7 | 16.0 | |p | | | | | |06575 06575| +490186 |FW Lib |151025.3-211031 |EB:/KE | 9.8 | 10.2 | |p |27156.575 | | 1.495095 | | |05236 05236| +490187 |FX Lib *|155811.4-141646 |GCAS | 4.74 | 4.96 | |V | | | | |B5IIIpe |08419 BD | +490188 |FY Lib |145746.5-122615 |SRB | 7.06 | 7.78 | |V | | | 120. : | |M5III |08225 BD | +490189 |FZ Lib |151921.8-090848 |LB | 6.73 | 7.24 | |V | | | | |M4III |08225 BD | +490190 |GG Lib |153215.2-235249 |SR: | 6.83 | 6.93 | |V | | | | |M5:III |06866 CoD | +490191 |GH Lib |143607.9-242151 |EA | 12.5 | 13.4 | |p | | | | | |07594 07594| +490192 |GI Lib |150441.9-172508 |EA | 12.5 | 13.6 | |p | | | | | |07594 07594| +490193 |GK Lib |151437.2-151936 |EA | 12.8 | 13.8 | |p |38906.350 | | 1.13047 | | |07594 07594| +490194 |GL Lib |152206.4-240319 |SR: | 11.9 | 12.5 | |p | | | | |M7 |01869 06286| +490195 |GM Lib |152441.9-294511 |RR: | 15.5 | 17. | |p | | | | | |04001 04001| +490196 |GN Lib |153534.2-154421 |E | 13.7 | 14.4 | |p | | | | | |01870 06286| +490197 |GO Lib |154027.9-291226 |RR: | 15.5 | 16.5 | |p | | | | | |04001 04001| +490198 |GP Lib |155429.2-105230 |LB: | 13.8 | 14.4 | |p | | | | |M7 |01870 06286| +490199 |GQ Lib |155657.8-164158 |RR | 15.5 |< 16.3 | |p | | | | | |01870 06286| +490200 |GR Lib |155809.8-152647 |SR: | 12.5 | 13.3 | |p | | | | |M7 |01870 06286| +490201 |GS Lib |144327.1-201254 |M | 11.4 |< 13.4 | |p |42186. | | 218.9 | | |07973 07973| +490202 |GT Lib | | | | | | | | | | | | |=EN Lib +490203 |GU Lib |154459.5-280428 | | 11.8 | 13.8 | |p | | | | | |04579 USNO | +490204 |GV Lib |155440.4-191526 |E | 13.9 | 15.3 | |p | | | | | |01870 07897| +490205 |GW Lib |151955.4-250025 |NA | 9.0 | 18.5 | |p | | | | | |67402 USNO | +490206 |GX Lib |152326.1-063638 |RS | 7.31 |( 0.08 )| |V | | | | | |67404 BD | +490207 |GY Lib |152445.8-240416 |EB: | 12.3 | 13.0 | |p | | | | | |67406 67063| +490208 |GZ Lib |152934.7-172627 |ACVO | 6.66 | 6.71 | |V | | | | | |67408 BD | +490209 |HH Lib |153302.7-142006 |RR | 14.5 | 15.5 | |p | | | | | |67409 | +490210 |HI Lib |150902.4-135959 |ACVO | 7.48 |( 0.007 )| |V | | | | | |68151 BD | +490211 |HK Lib |151813.9-224433 |RRAB | 15.0 | 16.1 | |B | | | | | |69185 69185| +490212 |HL Lib |143040.5-222739 |ELL: | 6.93 | 7.02 | |V | | | | | |70065 BD | +490213 |HM Lib |152748.3-251010 |SR: | 7.42 | 7.63 | |V | | | | | |70066 CoD | +490214 |HN Lib |143416.8-123110 |BY | 10.30 | 10.33 | |V | | | | | |73018 BD | +490215 |HO Lib |151926.8-074320 |BY | 10.56 | 10.58 | |V | | | | | |73018 BD | +490216 |HP Lib |153553.1-141313 |ZZB: | 13.65 | 13.80 | |V | | | | | |73183 GSC | +490217 |HQ Lib |153854.9-174435 |ELL: | 10.6 | 11. | |V | | | | | |73184 BD | +490218 |HR Lib |155633.4-144946 |DSCTC | 6.13 |( 0.02 b )| |V | | | | | |73185 BD | +490219 |HS Lib |143024.5-212952 |LB | 8.32 | 8.69 | |Hp| | | | | |HIP HIP | +490220 |HT Lib |144606.3-134555 |LB: | 9.32 | 9.44 | |Hp| | | | | |HIP HIP | +490221 |HU Lib |145015.7-075153 |SRD | 8.71 | 8.96 | |Hp| | | | | |HIP HIP | +490222 |HV Lib |150031.7-115228 |LB | 7.89 | 8.10 | |Hp| | | | | |HIP HIP | +490223 |HW Lib |150053.1-042720 |RR: | 9.09 | 9.22 | |Hp| | | | | |HIP HIP | +490224 |HX Lib |150242.7-250519 |LB: | 8.45 | 8.56 | |Hp| | | | | |HIP HIP | +490225 |HY Lib |150402.0-280341 |DSCT | 7.78 | 7.88 | |Hp| | | | | |HIP HIP | +490226 |HZ Lib |150709.7-085543 |LB: | 8.02 | 8.12 | |Hp| | | | | |HIP HIP | +490227 |II Lib |150725.4-144044 |SRB | 8.05 | 8.19 | |Hp| | | | | |HIP HIP | +490228 |IK Lib |150853.0-230358 |LB: | 7.91 | 8.02 | |Hp| | | | | |HIP HIP | +490229 |IL Lib |150856.8-114726 |E | 7.64 | 7.76 | |Hp| | | | | |HIP HIP | +490230 |IM Lib |151020.8-282759 |E: | 9.66 | 10.01 | |Hp| | | | | |HIP HIP | +490231 |IN Lib |151732.1-103002 |RR: | 7.33 | 7.42 | |Hp| | | | | |HIP HIP | +490232 |IO Lib |151739.6-171150 |RS: | 9.34 | 9.46 | |Hp| | | | | |HIP HIP | +490233 |IP Lib |152613.1-281838 |BY: | 9.97 | 10.15 | |Hp| | | | | |HIP HIP | +490234 |IQ Lib |152806.2-133106 |CEP: | 9.33 | 9.42 | |Hp| | | | | |HIP HIP | +490235 |IR Lib |152926.9-285052 |EW: | 8.72 | 8.83 | |Hp| | | | | |HIP HIP | +490236 |IS Lib |153108.8-051227 |LB: | 9.11 | 9.28 | |Hp| | | | | |HIP HIP | +490237 |IT Lib |153318.9-250137 |EA: | 9.01 | 9.51 | |Hp| | | | | |HIP HIP | +490238 |IU Lib |153426.5-091100 |LPB | 5.11 | 5.16 | |Hp| | | | | |HIP HIP | +490239 |IV Lib |153713.4-182006 |E: | 8.46 | 9.00 | |Hp| | | | | |HIP HIP | +490240 |IW Lib |153938.1-273128 |RR: | 9.45 | 9.56 | |Hp| | | | | |HIP HIP | +490241 |IX Lib |154110.1-115208 |LB: | 8.54 | 8.65 | |Hp| | | | | |HIP HIP | +490242 |IY Lib |154215.1-075451 |LB: | 7.90 | 8.01 | |Hp| | | | | |HIP HIP | +490243 |IZ Lib |155356.2-185703 |SRB | 7.52 | 7.63 | |Hp| | | | | |HIP HIP | +490244 |KK Lib |150332.0-094432 |SR | 12.8 | 14.6 | |p | | | | | |75021 75021| +490245 |KL Lib |144834.9-010703 |DSCTC | 8.79 |( 0.02 v )| |V | | | | | |76263 DM | +490246 |KM Lib |150818.8-030948 |SR: | 12.8 | 13.8 | |V | | | | | |76012 GSC | +490247 |KN Lib |152956.4-125302 |RRC | 12.9 |( 0.60 )| |V | | | | | |76129 76129| +490248 |KO Lib |153036.0-214543 |I: | 13.5 | 14.0 | |V | | | | | |76012 GSC | +490249 |KP Lib |153922.3-120653 |RRC | 13.6 |( 0.6 )| |V | | | | | |76130 UCAC2| +490250 |KQ Lib |145117.1-110943 |EW | 11.6 | 11.9 | |* | | | | | |77115 GSC | +490251 |KR Lib |154639.4-295252 |SR: | 12.8 | 14.4 | |V | | | | | |77004 GSC | +490252 |KS Lib |143259.9-105603 |M | 11.8 |< 13.9 | |V |52851 | | 380. : | |Me |78090 USNO | +490253 |KT Lib |143920.0-205032 |SXPHE | 12.8 |( 0.1 : )| |V | | | | | |78175 GSC | +490254 |KU Lib |144031.1-161234 |BY | 7.36 | 7.39 | |Hp| | | 9.35 | |G6V |78005 DM | +490255 |KV Lib |144600.8-101316 |SXPHE | 14.13 | 14.70 | |* |52766.4469 | | 0.0731905 |25 | |78063 GSC | +490256 |KW Lib |144751.5-063446 |RRAB | 13.64 | 14.17 | |* |52788.569 | | 0.3143 |28 | |78063 GSC | +490257 |KX Lib |145728.0-212456 |BY | 5.72 |( 0.04 )| |V | | | | |K4V |78018 DM | +490258 |KY Lib |155156.6-092809 |RS | 8.93 |( 0.04 )| |V | | | 13.62 | |K2V |78018 DM | +490259 |KZ Lib *|155559.8-171139 |EA | 11.14 | 13.1 | 11.22 |V |52845.597 | | 1.238751 | | |78011 GSC | +490260 |LL Lib |144143.2-205026 |RRAB | 13.2 | 14.5 | |V |53754.858 | | 0.646035 |15 | |79064 GSC | +490261 |LM Lib |150752.9-272908 |EA: | 11.07 | 11.70 | 11.33 |V |51996.772 | | 0.782983 |21 | |79018 DM | +490262 |LN Lib |150806.3-291209 |EA | 8.54 | 8.69 | 8.61 |V |53419.846 | | 1.66703 |10 |F0V |79009 DM | +490263 |LO Lib |151038.0-093014 |RRAB | 13.0 | 14.3 | |V |53177.662 | | 0.562657 |14 | |79100 79221| +490264 |LP Lib |151338.5-202632 |EA | 11.58 | 12.1 | 11.63 |V |52095.567 | | 2.44206 |08 |F6-F7 |79009 79010| +490265 |LQ Lib |152601.1-153246 |RRAB | 11.9 | 13.0 | |V |53853.804 | | 0.579309 |20 | |79100 79010| +490266 |LR Lib |153743.7-263550 |EA | 13.1 | 13.7 | 13.45 |V |53449.847 | | 0.590394 |10 : | |79009 79010| +490267 |LS Lib |154414.3-225532 |SR | 12.0 | 14.5 | |V |53481. | | 231. | |M6: |79064 GSC | +490268 |LT Lib |154434.6-115302 |EA | 12.46 | 13.35 | 12.55 |V |53140.750 | | 18.002 |09 | |79003 79010| +490269 |LU Lib |155009.7-172351 |EW | 13.5 | 14.3 | 14.3 |V |52755.914 | | 0.351671 | | |79003 79010| +490270 |LV Lib |142404.7-112454 |RRAB | 13.78 | 14.7 | |* |52788.419 | | 0.552574 |15 | |80005 80005| NL80_2 +490271 |LW Lib |143220.8-122248 |ZZO | 16.15 |( 0.14 *)| |V | | | 0.0106 | |DO |80401 USNO | NL80_2 +490272 |LX Lib |143549.0-233630 |M | 11.5 |< 15.0 | |V |54888. | | 269.7 | | |80002 GSC | NL80_2 +490273 |LY Lib |143729.1-201942 |M | 11.3 |< 14.5 | |V |54867. | | 283. | | |80001 GSC | NL80_2 +490274 |LZ Lib *|144001.1-195933 |EW | 10.0 | 10.4 | |V | | | 0.354445 | |G0 |80138 DM | NL80_2 +490275 |MM Lib |144800.1-014943 |RRAB | 18.5 | 19.7 | |V |51611.8462 | | 0.645412 |14 | |80159 USNO | NL80_2 +490276 |MN Lib |144922.0-015246 |RRAB | 18.2 | 19.3 | |V |51585.8581 | | 0.488469 | | |80159 USNO | NL80_2 +490277 |MO Lib |145021.3-090550 |RRAB | 12.75 | 13.50 | |V |51391.28 | | 0.64395 |17 | |80026 GSC | NL80_2 +490278 |MP Lib |145107.9-245353 |LB | 9.0 | 10.3 | |V | | | | |M8 |80001 GSC | NL80_2 +490279 |MQ Lib |145254.8-012048 |RRAB | 19.0 | 19.6 | |V |51621.8808 | | 0.615454 |22 | |80159 USNO | NL80_2 +490280 |MR Lib *|145315.4-143557 |RRAB | 12.4 | 13.4 | |V |53133.7052 | | 0.54007 | | |80153 GSC | NL80_2 +490281 |MS Lib |145333.0-020652 |RRAB | 13.3 | 14.5 | |V |54573.7408 | | 0.441448 |25 | |80001 GSC | NL80_2 +490282 |MT Lib |145416.5-153720 |RRAB | 12.4 | 13.7 | |V |53596.5330 | | 0.532637 |12 | |80001 GSC | NL80_2 +490283 |MU Lib |145637.9-005623 |RRAB | 18.7 | 20.1 | |V |51618.7483 | | 0.568229 |13 | |80159 USNO | NL80_2 +490284 |MV Lib |145719.7-005328 |RRAB | 15.2 | 16.1 | |V |51618.7601 | | 0.553910 |20 | |80159 USNO | NL80_2 +490285 |MW Lib |145720.0-015355 |RRAB | 17.2 | 18.4 | |V |51614.8508 | | 0.514194 |15 | |80159 USNO | NL80_2 +490286 |MX Lib |145727.0-015812 |RRAB | 17.2 | 18.3 | |V |51610.8415 | | 0.547532 |13 | |80159 USNO | NL80_2 +490287 |MY Lib |145822.0-010203 |RRAB | 18.7 | 19.8 | |V |51611.8445 | | 0.539298 |12 | |80159 USNO | NL80_2 +490288 |MZ Lib |145835.3-194334 |SRB | 8.1 | 8.8 | |V | | | 79. | |M2III |80002 DM | NL80_2 +490289 |NN Lib |145908.3-024226 |RRAB | 13.1 | 14.5 | |V |54602.6571 | | 0.455561 |15 | |80001 GSC | NL80_2 +490290 |NO Lib |145922.8-021442 |RRAB | 17.9 | 18.8 | |V |51588.8732 | | 0.637147 |22 | |80159 USNO | NL80_2 +490291 |NP Lib |150000.2-141705 |DSCT | 12.47 | 13.30 | |V | | | 0.1675616 |23 | |80001 GSC | NL80_2 +490292 |NQ Lib |150129.3-005433 |RRAB | 18.6 | 19.1 | |V |51999.8484 | | 0.763683 |13 | |80159 USNO | NL80_2 +490293 |NR Lib |150207.3-120152 |RS | 10.9 | 11.5 | |V | | | 2.6831 | | |80034 GSC | NL80_2 +490294 |NS Lib |150220.6-010050 |RRAB | 19.1 | 19.8 | |V |51973.8520 | | 0.583938 |20 | |80159 USNO | NL80_2 +490295 |NT Lib |150233.5-021408 |RRAB | 18.6 | 19.7 | |V |51973.8395 | | 0.519936 |10 | |80159 USNO | NL80_2 +490296 |NU Lib |150237.7-275032 |M | 9.9 |< 14.8 | |V |54544. | | 281. | | |80399 80399| NL80_2 +490297 |NV Lib |150339.6-095131 |RRAB | 13.3 | 14.8 | |V |54590.6688 | | 0.459349 |10 | |80001 GSC | NL80_2 +490298 |NW Lib |150400.5-025105 |LB | 10.23 | 10.54 | |V | | | | |C4,4 |80001 HIP | NL80_2 +490299 |NX Lib |150541.7-013933 |RRAB | 16.7 | 17.6 | |V |51582.8546 | | 0.535251 |20 | |80159 USNO | NL80_2 +490300 |NY Lib *|150701.8-011258 |RRC | 15.8 | 16.1 | |V |51257.8897 | | 0.265380 |44 | |80159 USNO | NL80_2 +490301 |NZ Lib |150733.2-263848 |SRA | 11.5 | 14.0 | |V |54603. | | 147.2 |40 | |80002 GSC | NL80_2 +490302 |OO Lib *|150746.0-013614 |RRC | 16.3 | 16.9 | |V |51993.8256 | | 0.316259 |30 | |80159 USNO | NL80_2 +490303 |OP Lib |150808.7-021416 |RRAB | 18.7 | 20.0 | |V |51621.7468 | | 0.555038 |12 | |80159 USNO | NL80_2 +490304 |OQ Lib |150836.6-282539 |SRB | 10.9 | 12.1 | |V | | | 61.5 | | |80002 GSC | NL80_2 +490305 |OR Lib *|150908.8-243330 |SR | 10.4 | 11.9 | |V | | | 395. | | |80001 DM | NL80_2 +490306 |OS Lib |150927.8-013227 |RRAB | 18.7 | 19.9 | |V |51258.8421 | | 0.534231 |10 | |80159 USNO | NL80_2 +490307 |OT Lib |150955.1-013258 |RRAB | 16.3 | 17.3 | |V |51586.9087 | | 0.533646 |13 | |80159 USNO | NL80_2 +490308 |OU Lib |151008.9-005829 |RRAB | 18.7 | 20.1 | |V |51612.8382 | | 0.480064 |11 | |80159 USNO | NL80_2 +490309 |OV Lib |151050.0-012621 |RRC | 14.9 | 15.4 | |V |51610.8395 | | 0.373095 |37 | |80159 GSC | NL80_2 +490310 |OW Lib |151101.1-013755 |RRAB | 16.6 | 17.9 | |V |51338.7109 | | 0.462670 |13 | |80159 USNO | NL80_2 +490311 |OX Lib |151108.7-010015 |RRAB | 18.7 | 19.9 | |V |51999.8676 | | 0.561367 |20 | |80159 G2.3 | NL80_2 +490312 |OY Lib |151127.6-015900 |RRAB | 17.0 | 17.7 | |V |51610.8201 | | 0.795289 |19 | |80159 USNO | NL80_2 +490313 |OZ Lib *|151340.7-224635 |SR | 10.0 | 11.3 | |V |54294. | | 445. | | |80001 DM | NL80_2 +490314 |PP Lib |151453.1-210958 |SRB | 11.5 | 12.1 | |V | | | 53.0 | | |80001 GSC | NL80_2 +490315 |PQ Lib |151506.0-102830 |RRAB | 13.2 | 14.5 | |V |53052.86 | | 0.514112 |16 | |80001 GSC | NL80_2 +490316 |PR Lib |151610.4-043115 |LB | 9.9 | 10.4 | |V | | | | |K5 |80001 DM | NL80_2 +490317 |PS Lib |151721.2-190059 |BY | 9.3 | 9.6 | |V | | | 11.38 | |G4V |80034 DM | NL80_2 +490318 |PT Lib *|151916.6-220944 |EW | 13.9 | 14.6 | 14.6 |V |52056.6288 | | 0.434556 | | |80395 80395| NL80_2 +490319 |PU Lib |152015.8-253744 |LB | 11.6 | 12.6 | |V | | | | | |80001 DM | NL80_2 +490320 |PV Lib |152119.1-131244 |RRAB | 12.9 | 14.1 | |V |54367.48 | | 0.634778 |15 | |80002 GSC | NL80_2 +490321 |PW Lib *|152153.1-120646 |RRAB | 12.3 | 13.6 | |V |53077.87 | | 0.441196 |15 | |80002 GSC | NL80_2 +490322 |PX Lib |152216.3-265226 |BY: | 11.7 | 12.6 | |V | | | 6.834 | |K6 |80368 GSC | NL80_2 +490323 |PY Lib |152540.4-140656 |SRB | 10.2 | 12.2 | |V | | | 95. | |M |80001 GSC | NL80_2 +490324 |PZ Lib |152627.5-052518 |RRAB | 13.2 | 14.3 | |V |53050.84 | | 0.570849 |16 | |80001 GSC | NL80_2 +490325 |QQ Lib |152826.6-044736 |RS | 11.9 | 12.1 | |* | | | 0.57687 | | |80067 80067| NL80_2 +490326 |QR Lib |152901.9-232039 |RRC | 13.8 | 14.5 | |V |54652.6688 | | 0.375482 |40 | |80395 80395| NL80_2 +490327 |QS Lib |152950.4-173405 |LB | 11.7 | 13.0 | |V | | | | | |80001 GSC | NL80_2 +490328 |QT Lib |153244.1-141455 |SRB | 12.0 | 13.0 | |V | | | 51.2 | |M6: |80002 GSC | NL80_2 +490329 |QU Lib |153312.0-175822 |RRAB | 14.2 | 15.1 : | |V |51320.80 | | 0.59191 |20 : | |80135 GSC | NL80_2 +490330 |QV Lib |153341.4-291441 |SRB | 10.6 | 11.5 | |V | | | 96.6 | | |80001 DM | NL80_2 +490331 |QW Lib |153352.4-295415 |SRB | 10.6 | 11.3 | |V | | | 70.5 | | |80001 DM | NL80_2 +490332 |QX Lib |153503.9-280905 |RRAB | 11.3 | 12.0 | |V |54356.4962 | | 0.583569 |28 | |80395 80395| NL80_2 +490333 |QY Lib |153507.6-084950 |RS | 11.32 | 11.55 | |V | | | 19.725 | | |80034 GSC | NL80_2 +490334 |QZ Lib *|153615.9-083907 |UGSU | 11.2 | 18. | |V | | | | |pec(UG) |80233 80027| NL80_2 +490335 |V0335 Lib |153645.0-240750 |SRB | 11.0 | 12.0 | |V | | | 87. | |M6 |80001 GSC | NL80_2 +490336 |V0336 Lib |153740.6-152533 |RRC | 13.1 | 13.7 | |V |52444.5837 | | 0.354967 |34 | |80395 80395| NL80_2 +490337 |V0337 Lib |153757.9-101954 |RRC | 13.3 | 13.8 | |V |54574.7434 | | 0.377511 |45 | |80395 80395| NL80_2 +490338 |V0338 Lib |153912.1-194846 |RVA | 10.5 | 11.0 | |V |54158.8 | | 310. | | |80001 DM | NL80_2 +490339 |V0339 Lib *|153930.8-194251 |EW | 13.6 | 14.4 | 14.2 |V |54652.7006 | | 0.339013 | | |80395 80395| NL80_2 +490340 |V0340 Lib |154053.4-221905 |LB | 11.4 | 12.4 | |V | | | | | |80001 GSC | NL80_2 +490341 |V0341 Lib |154129.8-133255 |RRC | 13.95 | 14.55 | |V |53824.775 | | 0.313667 |41 | |80135 GSC | NL80_2 +490342 |V0342 Lib |154337.2-214931 |SRB | 11.4 | 12.7 | |V | | | 197. | |M8III |80001 GSC | NL80_2 +490343 |V0343 Lib |154434.3-141606 |LB: | 13.0 | 13.9 | |V | | | | | |80001 GSC | NL80_2 +490344 |V0344 Lib |154447.4-190127 |SRB | 12.1 | 13.3 | |V | | | 63.7 | | |80001 GSC | NL80_2 +490345 |V0345 Lib |154524.3-194206 |RRAB | 14.1 | 14.9 | |V |51630.83 | | 0.59821 |21 : | |80135 GSC | NL80_2 +490346 |V0346 Lib |154716.5-281736 |RRAB | 13.0 | 14.0 | |V |54576.7693 | | 0.72144 |15 | |80001 GSC | NL80_2 +490347 |V0347 Lib |154730.8-172230 |LB | 11.4 | 12.6 | |V | | | | | |80001 GSC | NL80_2 +490348 |V0348 Lib |154901.6-181942 |RRAB: | 14.2 | 15.0 : | |V |54383.486 | | 0.47282 |30 : | |80001 GSC | NL80_2 +490349 |V0349 Lib |154928.7-173354 |RRC | 13.8 | 14.3 | |V |54572.7716 | | 0.380383 |33 | |80239 80239| NL80_2 +490350 |V0350 Lib |155006.1-171125 |SR: | 12.3 | 12.9 | |V | | | 185.6 : | | |80002 GSC | NL80_2 +490351 |V0351 Lib *|155059.4-113908 |EW | 13.4 | 14.1 | 14.0 |V |54204.83 | | 0.349737 | | |80002 GSC | NL80_2 +490352 |V0352 Lib |155233.3-180309 |LB | 12.6 | 13.7 | |V | | | | |K |80001 GSC | NL80_2 +490353 |V0353 Lib |155414.1-133140 |RRAB | 13.9 | 14.7 : | |V |53892.66 | | 0.610265 |28 : | |80001 GSC | NL80_2 +490354 |V0354 Lib |155444.9-075205 |RS | 11.3 | 11.9 | |V | | | 5.624 | | |80034 GSC | NL80_2 +490355 |V0355 Lib |155446.5-151602 |SRB | 12.7 | 14.3 | |V | | | 122. | | |80001 GSC | NL80_2 +490356 |V0356 Lib |155506.7-194631 |BY | 12.1 | 12.6 | |V | | | 4.880 | |K5V |80034 GSC | NL80_2 +490357 |V0357 Lib |155534.7-152357 |RRAB | 13.8 | 14.7 | |V |53544.72 | | 0.537129 |14 | |80135 GSC | NL80_2 +490358 |V0358 Lib |155542.5-160943 |LB: | 12.6 | 13.4 | |V | | | | | |80001 GSC | NL80_2 +490359 |V0359 Lib |155814.8-131212 |SRB | 12.4 | 13.5 | |V | | | 76.2 | |M6 |80001 GSC | NL80_2 +490360 |V0360 Lib |155830.6-103949 |RRC | 12.25 | 12.75 | |V |54257.73 | | 0.344860 |38 | |80135 GSC | NL80_2 +490361 |V0361 Lib |160057.8-184806 |SRB | 11.9 | 13.1 | |V | | | 73. | | |80001 GSC | NL80_3 +499004 |del Lib *|150058.4-083108 |EA/SD | 4.91 | 5.90 | 4.98 |V |42960.6994 | | 2.3273543 |23 *|A0IV-V |00001 08953| +499011 |lam Lib |155320.1-201001 |ELL | 5.03 |( 0.02 )| |V | | | | | |73186 BD | +499018 |sig Lib |150404.2-251655 |SRB | 3.20 | 3.46 | |V | | | 20. | |M3.5IIIa |06994 CoD | +500001 |R Lup |155328.9-361752 |M | 9.4 | 14.0 | |V |40840. | | 235.62 |48 |M5e |00001 00002| +500002 |S Lup *|145326.4-463657 |M | 7.8 | 13.5 | |V |41762. | | 339.73 |52 |Se |00001 00002| +500003 |T Lup |142220.0-495058 |LB | 11.71 |( 0.4 )| |B | | | | |C(Nb) | 08588| +500004 |U Lup |160042.4-295517 |SRD | 10.8 | 13.2 | |p | | | 87. | |G2-K0e(M2e) |01876 00546| +500005 |V Lup |145944.0-532428 |LB: | 9.16 | 9.26 | |V | | | | |C5,5(Nb) | CoD | +500006 |W Lup |151538.3-504731 |M | 10.6 |< 13.4 | |p |15872. | | 236.7 | |M4 |00001 | +500007 |X Lup *|145326.4-463709 |L: | 10.4 | 12.8 | |p | | | | | | 00002| +500008 |Y Lup *|145936.8-545757 |M | 8.2 | 15.2 | |V |41520. | | 396.82 |37 |M7e |00001 00002| +500009 |Z Lup |143551.7-432203 |LB | 10.5 | 12.6 | |p | | | | |C4,3-C6,3(Na) | 06286| +500010 |RR Lup |160505.7-342330 |M | 11.0 |< 14.1 | |p |30892. | | 183.62 | |M3e-M8(II:)e |00001 | +500011 |RS Lup |142327.7-473121 |LB | 10.7 | 12.30 | |B | | | | |C(Nb) |00623 08588| +500012 |RT Lup |143044.2-484130 |M | 10.5 | 16.5 | |p |24228. | | 364. | |Me |01877 08588| +500013 |RU Lup *|155642.3-374916 |INT | 9.6 | 13.4 | |p | | | | |pec(T) | 04068| +500014 |RV Lup |142519. -525414:|CST: | 12.5 | | |p | | | | | |00016 | +500015 |RW Lup |142621.3-440911 |M | 9.9 | 13.0 | |p |28766. | | 197. |36 |MB |00016 06286| +500016 |RX Lup |154631.0-480323 |M | 10. |< 14. | |p |15208. | | 237.2 | |M3e-M6II-IIIe-M8:|00031 06286| +500017 |RY Lup *|155928.4-402151 |INSB | 9.9 | 13.0 | |p | | | | |G0Vea |02412 03508| +500018 |RZ Lup |154345.3-381214 |M: | 14.5 |< 18.0 | |p | | | | | |01879 | +500019 |SS Lup |154613.2-381719 |M | 14.0 | 17.0 | |p | | | 155. : | | |01879 USNO | +500020 |ST Lup |154623.4-370814 |M | 15.5 | 18.5 | |p | | | 240. : | | |01879 USNO | +500021 |SU Lup |154651.6-380041 |S: | 13.5 | 15.0 | |p | | | | | |01879 GSC22| +500022 |SV Lup |154750.6-384841 |RRAB | 13.5 | 15.0 | |p | | | 0.521 | | |01879 USNO | +500023 |SW Lup |153655.1-374604 |M | 10.3 |< 13.5 | |p |28924. | | 377. | | |00016 08953| +500024 |SX Lup *|154229.4-433915 |EA/SD | 11.5 | 12.6 | 11.8 |V |34270.290 | | 0.6858441 |22 *| |00080 08087| +500025 |SY Lup |144151.7-514012 |M | 11.8 | 15.2 | |p |28706. | | 410. | |Me |00016 06286| +500026 |SZ Lup |144142.1-480833 |M: | 14.0 |< 16.5 | |p | | | | | |00211 06286| +500027 |TT Lup |144201.3-470843 |M | 12.2 | 16.2 | |p |54583. | | 300. | |Me |00016 06286| +500028 |TU Lup |144340.7-495025 |E/SD: | 12.4 | 16.2 | |p | | | | | |00211 06286| +500029 |TV Lup |144431.4-510749 |SR: | 14.2 | 16.5 | |p | | | | | |00211 06286| +500030 |TW Lup |144630.6-490309 |E: | 14.3 |< 16.5 | |p | | | | | |00211 06286| +500031 |TX Lup |144657.9-475310 |RR | 13.1 | 14.7 | |p | | | | | |00211 06286| +500032 |TY Lup *|144717.3-451018 |M | 12.6 |< 16.5 | |p |26940. | | 335. | | |00073 GSC | +500033 |TZ Lup |145015.7-522821 |RR | 14.5 | 16.5 | |p | | | 0.41 : | | |00211 06286| +500034 |UU Lup |145012.4-472651 |M | 11.7 |< 16.5 | |p |28695. | | 481. : | | |00016 06286| +500035 |UV Lup |145056.2-461248 |S: | 13.6 | 14.2 | |p | | | | | |00211 06286| +500036 |UW Lup |145114.8-503628 |S: | 13.8 | 15.5 | |p | | | | | |00211 06286| +500037 |UX Lup *|145210.6-455414 |CWA | 12.58 | 13.50 | |V |44027.94 | | 16.22 |47 | |01880 06286| +500038 |UY Lup |145251.5-503246 | | 15.1 |< 16.5 | |p | | | | | |00211 06286| +500039 |UZ Lup |145424.9-521030 |RR: | 13.9 | 15.8 | |p | | | | | |00211 06286| +500040 |VV Lup *|145458.7-481122 |SR | 13.4 | 16.5 | |p | | | | | |00211 06286| +500041 |VW Lup |145544.7-505737 |RR | 12.5 | 13.1 | |p | | | | | |00211 06286| +500042 |VX Lup |145553.9-481732 |M | 12.5 | 16.4 | |p | | | | |Me |00211 06286| +500043 |VY Lup |145717.7-505300 |RR | 14.7 | 16.4 | |p | | | | | |00211 06286| +500044 |VZ Lup *|145811.1-455613 |RR | 14.0 | 15.2 | |p |29041.470 | | 0.57100 | | |00073 06286| +500045 |WW Lup |145841.5-500017 |RR: | 13.5 | 14.5 | |p | | | | | |00211 06286| +500046 |WX Lup |145844.8-495640 |M: | 14.3 |< 16.5 | |p | | | | | |00211 06286| +500047 |WY Lup |150020.4-504054 |S: | 14.2 | 16.3 | |p | | | | | |00211 06286| +500048 |WZ Lup |150012.2-452252 |M | 12.6 | 15.7 | |p |28350. | | 129.0 | | |00073 06286| +500049 |XX Lup |150039.4-482139 | | 12.5 | 14.4 | |p | | | | | |00211 06286| +500050 |XY Lup |150148.3-525031 |RR | 12.8 | 14.2 | |p | | | 0.4972 : | | |00211 06286| +500051 |XZ Lup |150248.3-475143 |SR: | 11.6 | 13.5 | |p | | | | | |00211 06286| +500052 |YY Lup |150257.8-452804 |E/SD: | 14.2 | 16.0 | |p | | |< 1. | | |00211 06286| +500053 |YZ Lup |150528.6-442221 |M | 12.0 |< 16.5 | |p |28680. | | 220. : | | |00016 06286| +500054 |ZZ Lup |150538.7-451824 |E: | 12.6 | 14.4 | |p | | | | | |00211 06286| +500055 |AA Lup |150858.2-485332 |M | 11.8 |< 16.5 | |p |28370. | | 213. | |M5e |00016 06286| +500056 |AB Lup |151006.1-504835 |E/SD: | 12.5 | 14.5 | |p | | | | | |00211 03408| +500057 |AC Lup |151013.3-500751 |S: | 14.0 | 15.2 | |p | | | | | |00211 06286| +500058 |AD Lup |151026.4-472522 | | 13.4 | 14.6 | |p | | | | | |00211 06286| +500059 |AE Lup |151225.3-452603 |RR: | 14.6 | 16.3 | |p | | | | | |00211 06286| +500060 |AF Lup |151301.5-490702 |M: | 14.8 |< 16.5 | |p | | | | | |00211 06286| +500061 |AG Lup |151314.8-491527 |M: | 13.0 |< 16.5 | |p | | | | | |00211 06286| +500062 |AH Lup |151318.2-474823 |M | 11.2 | 16.0 | |p |28651. | | 217. | |Me |00016 06286| +500063 |AI Lup |151326.3-455259 |M | 14.0 |< 16.5 | |p | | | | | |00211 06286| +500064 |AK Lup |151510.4-441755 |M | 12.6 |< 16.5 | |p | | | 235. : | | |00211 06286| +500065 |AL Lup |151633.9-494712 |S: | 14.0 | 16.4 | |p | | | | | |00211 06286| +500066 |AM Lup |151854.7-503045 | | 12.0 | 14.5 | |p | | | | |B8ea |00211 06286| +500067 |AN Lup |152058.3-482441 |RR | 13.7 | 15.3 | |p | | | | | |00211 06286| +500068 |AO Lup |152047.4-440621 |E: | 12.5 | 14.3 | |p | | | | | |00211 06286| +500069 |AP Lup |152145.2-484537 |RR: | 11.9 | 13.1 | |p | | | | | |00211 06286| +500070 |AQ Lup |152218.7-490539 |M | 12.8 |< 16.5 | |p | | | | | |00211 06286| +500071 |AR Lup |152234.1-471709 |RR: | 12.6 | 14.3 | |p | | | | | |00211 06286| +500072 |AS Lup |152411.6-523132 | | 15.5 | 16.2 | |p | | | | | |00211 06286| +500073 |AT Lup |152406.5-510837 |RR: | 14.7 | 15.8 | |p | | | | | |00211 06286| +500074 |AU Lup |152405.4-442411 |M | 11.4 |< 16.5 | |p |28623. | | 231. | |M5:e |00016 06286| +500075 |AV Lup |152502.5-474733 |M | 14.3 |< 16.5 | |p | | | | | |00211 06286| +500076 |AW Lup |152748.4-493052 |RR: | 12.0 | 13.2 | |p | | | | | |00211 06286| +500077 |AX Lup |151559.4-481629 |M | 13.8 |< 16.0 | |p |24710. | | 260. | |Me |00434 06286| +500078 |AY Lup |151943.4-463506 |M: | 14.2 |< 16.0 | |p |25390. | | 158. | | |00434 06286| +500079 |AZ Lup |152238.9-430618 |M: | 15.5 |< 16.5 | |p |25400. | | 244. | | |00434 06286| +500080 |BB Lup |152311.2-454454 |M: | 14.8 |< 16.0 | |p |24720. | | 216.5 | | |00434 06286| +500081 |BC Lup |152700.2-420815 |M | 13.0 |< 16.0 | |p |25380. | | 268. | | |00434 06286| +500082 |BD Lup |152918.1-421525 |M | 13.1 |< 16.0 | |p |25715. | | 257.5 | | |00434 06286| +500083 |BE Lup |152928.4-424240 |M | 13.8 |< 16.0 | |p |24730. | | 279. | | |00434 06286| +500084 |BF Lup |152951.9-395124 |M | 13.0 |< 16.0 | |p |25420. | | 188.4 | | |00434 06286| +500085 |BG Lup |153025.9-464332 |M: | 14.6 |< 16.0 | |p |23910. | | 274. | | |00434 06286| +500086 |BH Lup |153051.6-444852 |M | 13.8 |< 16.0 | |p |24680. | | 150.3 | | |00434 06286| +500087 |BI Lup |153055.0-432233 |M | 13.3 |< 16.0 | |p |24710. | | 195. | | |00434 06286| +500088 |BK Lup |153047.9-404118 |M | 13.0 |< 16.0 | |p |25305. | | 280.5 | |Me |00434 06286| +500089 |BL Lup |153201.3-414317 |M | 14.2 |< 16.2 | |p |23960. | | 225. | | |00434 06286| +500090 |BM Lup |153243.6-470518 |M: | 15.0 |< 16.0 | |p |23950. | | 279.6 | | |00434 06286| +500091 |BN Lup |153428.5-475722 |M | 14.0 |< 16.0 | |p |24710. | | 223. | |M2e |00434 06286| +500092 |BO Lup |153405.3-413253 |M | 12.5 |< 16.0 | |p |25370. | | 444. | | |00434 06286| +500093 |BP Lup |153516.4-415934 |M | 14.0 |< 16.0 | |p |23920. | | 262. | | |00434 06286| +500094 |BQ Lup |153529.8-434654 |M | 14.0 |< 16.0 | |p |24720. | | 276.5 | | |00434 06286| +500095 |BR Lup |153553.1-403405 |UG | 13.1 | 17.5 | |p | | |( 24. ) | | |05386 08852| +500096 |BS Lup |153607.7-424904 |M | 13.4 |< 16.0 | |p |25420. | | 320. | | |00434 06286| +500097 |BT Lup |153626.1-450559 |M | 13.9 |< 16.0 | |p |23950. | | 141. | | |00434 06286| +500098 |BU Lup |153726.4-425222 |M | 13.2 |< 16.0 | |p |24730. | | 139.9 | |Me |00434 06286| +500099 |BV Lup |153811.9-442335 |M | 12.7 |< 16.0 | |p |25410. | | 222.3 | | |00434 06286| +500100 |BW Lup |153816.1-451545 |M | 13.6 |< 16.0 | |p |25360. | | 270.5 | | |00434 06286| +500101 |BX Lup |153853.3-472029 |M: | 15.0 |< 16.3 | |p |25745. | | 270. : | | |00434 06286| +500102 |BY Lup |153851.6-402422 |M | 13.0 |< 16.0 | |p |23970. | | 263. | | |00434 GSC22| +500103 |BZ Lup |154003.3-474911 |M: | 14.4 |< 16.0 | |p |24740. | | 270.3 | | |00434 06286| +500104 |CC Lup *|154037.7-472052 |M: | 15.0 |< 16.0 | |p |25325. | | 206. | | |00434 GSC22| +500105 |CD Lup |154042.8-442050 |M: | 13.5 |< 15.0 | |p |25340. | | 192.5 | | |00434 06286| +500106 |CE Lup |154425.8-435129 |M | 13.2 |< 16.0 | |p |24760. | | 351. | | |00434 06286| +500107 |CF Lup |154601.5-480430 |M | 14.0 |< 16.0 | |p |24710. | | 284.5 | | |00434 06286| +500108 |CG Lup |154607.1-475011 |M | 13.5 |< 16.0 | |p |24710. | | 279.5 | | |00434 06286| +500109 |CH Lup |154606.3-451431 |M | 13.0 | 16.0 | |p |25740. | | 192. | | |00434 06286| +500110 |CI Lup |154600.9-403925 |M | 13.5 |< 16.0 | |p |24710. | | 222.3 | | |00434 06286| +500111 |CK Lup |154618.1-441807 |M | 13.9 |< 16.0 | |p |25370. | | 146. | | |00434 06286| +500112 |CL Lup |154739.9-425057 |M | 14.0 |< 16.0 | |p |23910. | | 284.3 | | |00434 06286| +500113 |CM Lup |154848.3-413805 |M | 13.4 |< 16.0 | |p |23970. | | 406.4 | | |00434 06286| +500114 |CN Lup |154931.8-413324 |M | 13.8 |< 16.5 | |p |23960. | | 328.5 | | |00434 06286| +500115 |CO Lup |155159.8-403654 |M | 14.2 |< 16.3 | |p |24730. | | 174.4 | | |00434 06286| +500116 |CP Lup |155228.9-405845 |M: | 15.5 |< 16.3 | |p |23950. | | 232. | | |00434 06286| +500117 |CQ Lup |155445.0-405518 |M | 13.0 |< 16.0 | |p |23970. | | 182.7 | | |00434 06286| +500118 |CR Lup |155451.7-413143 |M | 11.7 |< 16.0 | |p |28640. | | 299.1 | | |00001 06286| +500119 |CS Lup |155710.2-405903 |M | 13.5 |< 16.0 | |p |24370. | | 246.6 | |Me |00434 06286| +500120 |CT Lup |141940.6-442932 |M | 13.5 | 18. | |p |26150. | | 315. | |Me |00073 06286| +500121 |CU Lup |141949.3-460838 |M | 14.5 |< 16.5 | |p |25720. | | 283. | | |00073 06286| +500122 |CV Lup |142010.0-443402 |RRAB | 14.2 | 15.2 | |p |25736.400 | | 0.62503 | | |00073 06286| +500123 |CW Lup *|142023.0-443159 |RR | 11.5 | 12.2 | |p |26890.350 | | 0.37737 | | |00073 | +500124 |CX Lup *|142116.4-460659 |E/SD | 12.7 | 13.5 | 12.8 |p |26124.280 | | 1.45385 | | |00073 06286| +500125 |CY Lup *|142202.3-441746 |SRB | 13.6 | 15.2 | |p | | | 60. :*N| | |00073 06286| +500126 |CZ Lup |142315.3-443722 |M: | 15.0 |< 16.5 | |p |26080. | | 290. | | |00073 06286| +500127 |DD Lup |142320.7-423940 |M | 12.7 | 16.5 | |p |26150. | | 190. | |Me |00073 06286| +500128 |DE Lup |142353.5-445011 |M | 13.4 | 16.0 | |p |26090. | | 149. | | |00073 06286| +500129 |DF Lup |142426.3-441440 |M | 13.8 |< 16.5 | |p |26900. | | 310. | | |00073 06286| +500130 |DG Lup *|142544.1-441833 |EW/KW | 14.3 | 15.2 | 15.1 |p |26102.470 | | 0.473772 | | |00073 06286| +500131 |DH Lup |142607.7-435048 |RRAB | 15.0 | 16.1 | |p |26507.340 | | 0.59019 | | |00073 06286| +500132 |DI Lup |142933.3-454438 |RRAB | 14.8 | 15.8 | |p |26507.400 | | 0.56640 | | |00073 USNO | +500133 |DK Lup |143224.8-444649 |RRAB | 14.7 | 15.8 | |p |25689.570 | | 0.49149 | | |00073 06286| +500134 |DL Lup |143315.6-461242 |LB | 12.0 | 13.5 | |p | | | | | |00073 06286| +500135 |DM Lup |143323.6-445950 |M | 11.3 | 16.1 | |p |26100. | | 228. | |Me |00073 06286| +500136 |DN Lup |143323.8-432045 |RR | 14.8 | 15.9 | |p |29020.500 | | 0.41860 | | |00073 06286| +500137 |DO Lup |143351.6-431931 |LB | 13.6 | 14.4 | |p | | | | | |00073 06286| +500138 |DP Lup |143425.4-453059 |SR | 12.5 | 14.2 | |p |26810. | | 299. | | |00073 06286| +500139 |DQ Lup *|143521.5-430952 |RR | 13.3 | 14.2 | |p |25707.400 | | 0.31582 | | |00073 GSC | +500140 |DR Lup |143520.3-425541 |SR | 14.0 | 16.0 | |p |26120. | | 143. | | |00073 06286| +500141 |DS Lup |143534.8-440649 |RRAB | 14.4 | 16.0 | |p |25689.560 | | 0.46113 | | |00073 06286| +500142 |DT Lup |143635.8-512449 |EA/SD | 9.8 | 11.7 | |p |27897.629 | | 1.453122 |14 *|A0V |00016 03409| +500143 |DU Lup |143637.9-431540 |RRAB | 15.2 | 16.2 | |p |25707.450 | | 0.48953 | | |00073 06286| +500144 |DV Lup |143648.0-423844 |RRAB | 14.1 | 15.2 | |p |25707.420 | | 0.52377 | | |00073 06286| +500145 |DW Lup |143730.1-442211 |M | 12.7 |< 16.0 | |p |25740. | | 295. | | |00073 USNO | +500146 |DX Lup |143911.8-451543 |M: | 14.7 |< 16.2 | |p |26123. | | 203. | | |00073 06286| +500147 |DY Lup *|143957.2-431409 |M | 12.8 |< 16.3 | |p |26080. | | 434. | | |00073 06286| +500148 |DZ Lup *|143946.1-431547 |LB: | 12.8 | 13.3 | |p | | | | | |00073 | +500149 |EE Lup |144008.3-453246 |M | 14.2 |< 16.4 | |p |26460. | | 285. | | |00073 06286| +500150 |EF Lup |144049.2-444156 |LB | 14.5 | 15.8 | |p | | | | | |00073 06286| +500151 |EG Lup |144229.0-451451 |RRAB | 14.1 | 14.9 | |p |25689.570 | | 0.60619 | | |00073 06286| +500152 |EH Lup |144450.2-435816 |RRAB | 14.2 | 15.2 | |p |25707.600 | | 0.59527 | | |00073 06286| +500153 |EI Lup |144723.3-443849 |RRAB | 14.1 | 15.2 | |p |25707.420 | | 0.51743 | | |00073 06286| +500154 |EK Lup |144717.9-452833 |LB | 13.5 | 14.1 | |p | | | | | |00073 06286| +500155 |EL Lup *|144834.1-435826 |SR | 14.1 | 15.1 | |p | | | 133. | | |00073 GSC | +500156 |EM Lup |144931.4-432435 |M | 13.3 |< 16.0 | |p |26060. | | 237. | | |00073 06286| +500157 |EN Lup |145151.1-445906 |SR | 13.5 | 15.9 | |p |26098. | | 189.5 | |Me |00073 06286| +500158 |EO Lup |145156.9-424137 |M | 13.3 |< 16.0 | |p |25770. | | 330. | | |00073 06286| +500159 |EP Lup |145233.5-432430 |M | 13.0 |< 16.2 | |p |26010. | | 366. | | |00073 06286| +500160 |EQ Lup |145440.8-434423 |M | 13.7 |< 17.5 | |p |26500. | | 315. | |Me |00073 06286| +500161 |ER Lup *|145454.1-431401 |SR | 14.4 | 15.2 | |p | | | 90. | | |00073 06286| +500162 |ES Lup |145556.0-423456 |M | 13.2 |< 16.0 | |p |25680. | | 284. | | |00073 06286| +500163 |ET Lup |145635.0-424003 |LB | 11.3 | 12.1 | |p | | | | | |00073 06286| +500164 |EU Lup *|145729.1-432451 |RRAB | 13.7 | 15.1 | |p |25707.550 | | 0.42997 | | |00073 GSC22| +500165 |EV Lup |151608.0-441920 |EA/DS | 9.8 | 12.5 | |p |28394.32 | | 15.3120 |05 | |00016 06286| +500166 |EW Lup |154251.3-301159 |RRAB | 15.1 | 16.5 | |p | | | 0.54413 | | |01869 USNO | +500167 |EX Lup |160305.5-401825 |IN(YY) | 8.5 | 14.3 | |V | | | | |M0:Ve(T) | 01868| +500168 |EY Lup |142305.5-424452 |RR | 14.9 | 15.6 | |p | | | | | |00087 06286| +500169 |EZ Lup |142810.9-444527 |RR | 14.3 | 15.3 | |p | | | | | |00087 06286| +500170 |FF Lup |151137.8-435442 |M | 11. |< 13. | |p | | | | |Me |00085 02382| +500171 |FG Lup |151508.1-364057 |M | 11. |< 14. | |p | | | | | |00085 02382| +500172 |FH Lup |151525.2-354654 |M | 10.5 | 15.2 | |p | | | | |Me |00085 02385| +500173 |FI Lup |151556.2-393534 |LB | 11. | 14. | |p | | | | |Me |00085 02385| +500174 |FK Lup *|152008.4-515336 |EA/SD | 10.6 | 12.0 | 10.7 : |V |28367.23 | | 3.351765 |16 *| |00080 03408| +500175 |FL Lup |151936.0-340701 |M: | 12. |< 13.5 | |p | | | | |Me |00085 02382| +500176 |FM Lup *|152021.7-373516 |M | 11.4 | 15.2 | |p | | | | |Me |00085 02385| +500177 |FN Lup |153701.7-394328 |M | 11.7 | 15. | |p | | | | |Me |00085 02385| +500178 |FO Lup |155106.9-313516 |M | 11. | 16.5 | |p | | | | | |00085 02385| +500179 |FP Lup |155124.2-325116 |M | 11.0 |< 13.5 | |p | | | | | |00085 02385| +500180 |FQ Lup |154333.6-371010 |L: | 9.5 | 10.5 | |p | | | | | |00503 08953| +500181 |FR Lup *|144102.6-535024 |EB/KE | 10.1 | 10.8 | |p |28744.350 | | 1.264033 | | |05739 06561| +500182 |FS Lup |145216.3-512523 |EA | 11.5 | 12.5 | |p | | | | | |06561 06561| +500183 |FT Lup *|145952.7-425859 |EB/D: | 9.7 | 10.64 | 9.98 |p |45061.8323 | | 0.470084 | |F0V |00001 CoD | +500184 |FU Lup |150923.8-431937 |RR | 14. | 15. | |p | | | | | |06561 06561| +500185 |FV Lup *|152300.4-533114 |EA | 10.8 | 11.9 | 11.2 |p |38499.500 | | 4.10288 | | |08040 04181| +500186 |FW Lup |152225.4-405536 |RR | 8.82 | 9.22 | |V |42171.377 | | 0.4841712 |23 |F5IV |07984 CoD | +500187 |FX Lup |152244.8-301316 |RR | 16. | 17. | |p | | | | | |04001 04001| +500188 |FY Lup |153211.4-445850 |EA | 11.5 | 12. | |p | | | | | |06561 06561| +500189 |FZ Lup |143233.2-534136 |EA/D | 9.4 | 9.8 | |p |28328.260 | | 2.267310 | |A0/1Vn |08040 CoD | +500190 |GG Lup *|151856.4-404718 |EB/DM | 5.49 | 6.0 | 5.8 |B |34532.325 | | 2.164175 | |B7V |05137 08953| +500191 |GH Lup |152438.3-525114 |CEP | 7.55 | 7.83 | |V |41125.4 | | 9.285 | |G2Iab |03931 05742| +500192 |GI Lup |150616.3-412814 |M | 10.4 | 16. | |B |40075. | | 326.2 | |S7,8e |00001 05254| +500193 |GK Lup |145314.0-480020 |M: | 11.6 |< 16. | |p | | | | | |02935 05829| +500194 |GL Lup |154350.8-472414 |M: | 11.6 |< 15.5 | |p | | | | | |02935 05829| +500195 |GM Lup |150442.9-405141 |LB: | 6.38 : | 6.7 | |V | | | | |M6III |05150 CoD | +500196 |GN Lup *|152408.4-330242 |M | 12.6 |< 16. | |p | | | | |S3,8 |04488 CoD | +500197 |GO Lup *|152813.3-372131 |SRB | 6.98 | 7.19 | |V | | | | |M4III |06645 CoD | +500198 |GP Lup |152835.6-373402 |M | 13.5 |< 15.5 | |p | | | | |Me |04453 GSC22| +500199 |GQ Lup |154912.1-353905 |IN(YY) | 11.40 | 12.70 | |V | | | | |K7Ve(T) |09369 04068| +500200 |GR Lup |155647.1-304153 |SR | 13.5 | 15. | |p | | | | |Me |04001 04001| +500201 |GS Lup |145515.4-540317 |SR: | 11.5 | 12.5 | |p | | | | | |00085 05937| +500202 |GT Lup |152155.4-530600 |EA | 11.7 | 12.3 | |p | | | | | |07594 07594| +500203 |GU Lup |152823.7-305444 |EA: | 15.5 | 17. | |p | | | | | |04001 04001| +500204 |GV Lup |153821.4-330926 |RR: | 15. | 16. | |p | | | | | |04001 04001| +500205 |GW Lup *|154644.7-343036 |IN(YY) | 13.54 | 14.39 | |V | | | | |M0-1ea |07822 04068| +500206 |GX Lup |154931.9-302728 |RR: | 16. | 17. | |p | | | | | |04001 04001| +500207 |GY Lup |160200.9-371847 |M: | 13.0 |< 15.5 | |p | | | | | |04453 07762| +500208 |GZ Lup |151848.6-304427 |RR | 12.7 | 13.6 | |p | | | | | |01869 UCAC2| +500209 |HH Lup |153709.2-422104 |SR: | 12.0 | 14.7 | |p | | | | |Me |02935 05829| +500210 |HI Lup |155316.3-392620 |EA/SD: | 11.5 | 12.7 | |p | | | | | |07762 07762| +500211 |HK Lup | | | | | | | | | | | | |=V1279 Sco +500212 |HL Lup *|154724.1-474301 |LB: | 14.94 | 15.13 | |V | | | | |M2III |08486 08486| +500213 |HM Lup *|154750.7-352835 |INT | 14.79 | 14.90 | |V | | | | |e(T) |08546 04068| +500214 |HN Lup *|154805.2-351553 |IN | 14.18 | 14.33 | |V | | | | |ea |08546 04068| +500215 |HO Lup *|160700.6-390220 |INT | 12.93 | 13.31 | |V | | | | |e(T) |08546 04068| +500216 |HP Lup |151126.8-361457 |EA | 9.27 | 9.52 | |V | | | | | |67411 CoD | +500217 |HQ Lup |152606.9-395320 |ACV | 7.37 | 7.38 | |V | | | | | |67248 CoD | +500218 |HR Lup |150812.1-403502 |ACV | 5.76 | 5.81 | |V | | | | | |68154 CoD | +500219 |HS Lup |150757.8-453446 |E:/RS: | 7.74 |( 0.04 )| |V | | | | | |70067 CoD | +500220 |HT Lup |154512.9-341731 |INT | 10.26 | 10.40 | |V | | | | | |70069 70068| +500221 |HU Lup |151025.7-520952 |DSCTC | 9.07 | 9.13 | |V | | | | | |71017 CoD | +500222 |HV Lup |152817.4-450806 |BE: | 7.30 | 8.09 | |V | | | | | |71132 CoD | +500223 |HW Lup |154517.4-341828 |INT | 9.95 | 10.45 | |H | | | | | |71134 71135| +500224 |HX Lup |142238.7-481912 |ELL: | 6.09 |( 0.06 )| |V | | | | | |72099 CoD | +500225 |HY Lup |143150.1-511032 |N | 7.97 |< 17. | |V | | | | | |72197 GSC22| +500226 |HZ Lup |150633.2-305507 |ACV | 5.96 |( 0.07 U )| |V | | | | | |72101 CoD | +500227 |II Lup |152305.1-512559 |M | 4.37 | 5.97 | |H | | | | | |72007 72102| +500228 |IK Lup |153927.9-344617 |INT | 12.59 | 12.89 | |V | | | | | |72103 72104| +500229 |IL Lup |154708.2-474010 |XNG | 14.6 | 16.7 | |V | | | | | |72105 72106| +500230 |IM Lup |155609.2-375606 |INT | 11.73 | 12.09 | |y | | | | | |72107 72108| +500231 |IN Lup |155910.9-384455 |DSCTC | 7.15 | 7.20 | |V | | | | | |73185 CoD | +500232 |IO Lup |160046.9-390519 |DSCTC | 6.65 |( 0.03 b )| |V | | | | | |73187 CoD | +500233 |IP Lup |142543.9-532715 |ACV | 7.95 | 8.04 | |Hp| | | | | |HIP HIP | +500234 |IQ Lup |142910.2-501121 |E: | 10.40 | 10.72 | |Hp| | | | | |HIP HIP | +500235 |IR Lup |143246.5-450622 |LB: | 8.49 | 8.60 | |Hp| | | | | |HIP HIP | +500236 |IS Lup |143928.8-510929 |LPB | 9.29 | 9.33 | |Hp| | | | | |HIP HIP | +500237 |IT Lup |144019.3-454738 |ACV | 6.56 | 6.60 | |Hp| | | | | |HIP HIP | +500238 |IU Lup |150101.4-425958 |EA | 8.78 | 9.10 | |Hp| | | | | |HIP HIP | +500239 |IV Lup |150143.3-454932 |LB | 8.03 | 8.37 | |Hp| | | | | |HIP HIP | +500240 |IW Lup |150442.6-333643 |SRB | 8.83 | 9.00 | |Hp| | | | | |HIP HIP | +500241 |IX Lup |150905.7-545536 |LB: | 8.30 | 8.40 | |Hp| | | | | |HIP HIP | +500242 |IY Lup |150914.8-325008 |LB: | 8.23 | 8.35 | |Hp| | | | | |HIP HIP | +500243 |IZ Lup |151030.6-473643 |SRB | 8.30 | 8.45 | |Hp| | | | | |HIP HIP | +500244 |KK Lup |151150.4-464506 |LB | 7.59 | 7.87 | |Hp| | | | | |HIP HIP | +500245 |KL Lup |151608.6-373005 |LB: | 8.23 | 8.34 | |Hp| | | | | |HIP HIP | +500246 |KM Lup |151717.5-415537 |LB: | 7.57 | 7.69 | |Hp| | | | | |HIP HIP | +500247 |KN Lup |151956.5-300625 |BY: | 9.21 | 9.33 | |Hp| | | | | |HIP HIP | +500248 |KO Lup |152208.8-321123 |LB: | 6.89 | 6.99 | |Hp| | | | | |HIP HIP | +500249 |KP Lup |152704.2-482720 |LB: | 7.93 | 8.18 | |Hp| | | | | |HIP HIP | +500250 |KQ Lup |152919.3-383806 |E: | 6.50 | 6.54 | |Hp| | | | | |HIP HIP | +500251 |KR Lup |153026.2-321813 |BY: | 8.87 | 8.98 | |Hp| | | | | |HIP HIP | +500252 |KS Lup |153148.5-373847 |LB | 8.89 | 8.98 | |Hp| | | | | |HIP HIP | +500253 |KT Lup |153553.3-445730 |BE | 4.48 | 4.50 | |Hp| | | | | |HIP HIP | +500254 |KU Lup |154024.7-441719 |ACV | 6.93 | 6.99 | |Hp| | | | | |HIP HIP | +500255 |KV Lup |154310.9-375506 |EB | 8.75 | 8.97 | |Hp| | | | | |HIP HIP | +500256 |KW Lup |154547.6-302056 |BY: | 9.40 | 9.58 | |Hp| | | | | |HIP HIP | +500257 |KX Lup |154856.3-383645 |LB: | 8.34 | 8.44 | |Hp| | | | | |HIP HIP | +500258 |KY Lup |155114.5-313027 |ACV | 8.88 | 8.99 | |Hp| | | | | |HIP HIP | +500259 |KZ Lup |155141.2-380929 |SRB | 8.30 | 8.84 | |Hp| | | | | |HIP HIP | +500260 |LL Lup |160158.9-373204 |ACV: | 7.41 | 7.47 | |Hp| | | | | |HIP HIP | +500261 |LM Lup |160444.5-392605 |ACV | 6.90 | 6.94 | |Hp| | | | | |HIP HIP | +500262 |LN Lup |160501.1-391300 |SRB | 7.37 | 7.72 | |Hp| | | | | |HIP HIP | +500263 |LO Lup |150737.8-460316 |IT | 11.3 |( 0.16 )| |V | | | | | |75163 75164| +500264 |LP Lup |150754.5-451521 |IT | 10.3 |( 0.12 )| |V | | | | | |75163 75164| +500265 |LQ Lup |150837.8-442317 |IT | 10.8 |( 0.09 )| |V | | | | | |75163 75164| +500266 |LR Lup |151357.2-462906 |IT | 14.6 |( 0.17 )| |V | | | | | |75163 75164| +500267 |LS Lup |151552.7-441817 |IT | 11.8 |( 0.25 )| |V | | | | | |75163 75164| +500268 |LT Lup |151545.4-333200 |IT | 10.8 |( 0.10 )| |V | | | | | |75163 75164| +500269 |LU Lup |151748.5-370656 |IT | 15.6 |( 0.09 V )| |B | | | | | |75163 75164| +500270 |LV Lup |151748.9-370655 |IT | 16.2 |( 0.08 V )| |B | | | | | |75163 75164| +500271 |LW Lup |151826.9-373802 |IT | 10.7 |( 0.18 )| |V | | | | | |75163 75164| +500272 |LX Lup |151852.8-405053 |IT | 10.3 |( 0.06 )| |V | | | | | |75163 75164| +500273 |LY Lup |151916.0-405608 |IT | 11.2 |( 0.13 )| |V | | | | | |75163 75164| +500274 |LZ Lup |152211.6-395951 |IT | 11.7 |( 0.33 )| |V | | | | | |75163 75164| +500275 |MM Lup |152325.6-405547 |IT | 11.7 |( 0.08 )| |V | | | | | |75163 75164| +500276 |MN Lup |152330.4-382128 |IT | 13.8 |( 0.08 )| |V | | | | | |75163 75164| +500277 |MO Lup |152403.0-320951 |IT | 12.3 |( 0.20 )| |V | | | | | |75163 75164| +500278 |MP Lup |152432.4-365203 |IT | 11.3 |( 0.11 )| |V | | | | | |75163 75164| +500279 |MQ Lup |152533.2-361347 |IT | 13.2 |( 0.10 )| |V | | | | | |75163 75164| +500280 |MR Lup |152536.6-353732 |IT | 12.8 |( 0.12 )| |V | | | | | |75163 75164| +500281 |MS Lup |152559.6-450116 |IT | 10.8 |( 0.15 )| |V | | | | | |75163 75164| +500282 |MT Lup |153802.6-380723 |IT | 12.2 |( 0.16 )| |V | | | | | |75163 75164| +500283 |MU Lup |154041.2-375619 |IT | 12.2 |( 0.10 )| |V | | | | | |75163 75164| +500284 |MV Lup |154959.2-362957 |IT | 13.0 |( 0.12 )| |V | | | | | |75163 75164| +500285 |MW Lup |155219.5-381932 |IT | 13.2 |( 0.21 )| |V | | | | | |75163 75164| +500286 |MX Lup |155533.8-370941 |IT | 12.9 |( 0.25 )| |V | | | | | |75163 75164| +500287 |MY Lup |160044.5-415531 |IT | 11.30 | 12.24 | |V | | | | | |75086 CoD | +500288 |MZ Lup |160109.0-332014 |IT | 10.9 |( 0.05 )| |V | | | | | |75163 75164| +500289 |NN Lup |160159.2-361256 |IT | 12.0 |( 0.11 )| |V | | | | | |75163 75164| +500290 |NO Lup |160311.8-323920 |IT | 12.6 |( 0.21 )| |V | | | | | |75163 75164| +500291 |NP Lup |160533.3-383745 |IT | 13.7 |( 0.07 )| |V | | | | | |75163 75164| +500292 |NQ Lup |160818.2-384405 |IT | 13.0 |( 0.08 )| |V | | | | | |75163 75164| +500293 |NR Lup |155633.6-331824 |SR: | 12.0 | 12.9 | |V | | | | | |76012 DM | +500294 |NS Lup |155641.3-331643 |SR: | 13.7 |< 15.2 | |V | | | | | |76012 GSC | +500295 |NT Lup |143200.8-442629 |DSCTC | 11.11 | 11.12 | |V | | | | | |77113 DM | +500296 |NU Lup |155733.9-300828 |M | 12.4 |< 14.6 | |V | | | | | |77004 GSC22| +500297 |NV Lup |160253.6-351725 |M | 12.3 |< 14.2 | |V | | | | | |77004 USNO | +500298 |NW Lup |151126.6-513806 |E/SD: | 13.8 |< 16.5 | |p | | | | | |00211 USNO | +500299 |NX Lup |153716.9-320326 |GDOR | 7.95 | 8.03 | |Hp| | | | |F0V |78024 DM | +500300 |NY Lup |154814.6-452840 |XM | 14.50 | 14.78 | |V | | | | |K+DA: |78178 78178| +500301 |NZ Lup |155327.3-421601 |BY | 7.87 |( 0.04 )| |V | | | 2.20 : | |G2 |78046 DM | +500302 |OO Lup *|144546.2-464812 |EA | 8.66 | 8.75 | 8.75 |V |48347.805 | | 7.06114 |04 : |F3/F5V |79006 DM | +500303 |OP Lup |144734.8-491913 |SRB | 9.1 | 10.0 | |V | | | 123. | |M5/6 |79064 DM | +500304 |OQ Lup |145345.0-543814 |EA | 12.62 | 14.4 : | 12.72 |V |52635.842 | | 1.83777 |13 | |79004 USNO | +500305 |OR Lup *|150450.4-532136 |EA | 9.28 | 9.55 | 9.53 |V |48681.670 | | 7.55596 |04 |G0IV/V |79003 DM | +500306 |OS Lup |150452.2-375739 |EW | 10.33 | 11.05 : | 10.95 : |V |52132.527 | | 0.374131 | | |79011 DM | +500307 |OT Lup *|150608.2-425527 |EA | 9.82 | 10.4 : | 10.4 : |V |51930.798 | | 6.20679 |04 |F5/F6V |79018 DM | +500308 |OU Lup *|150648.3-350458 |EA | 9.92 | 10.55 | 10.40 |V |52414.589 | | 4.61052 |04 : |B9IV |79018 DM | +500309 |OV Lup |150847.6-415949 |SRA | 10.2 | 14.2 | |V |53865. | | 97.5 | | |79100 GSC | +500310 |OW Lup |150933.6-334831 |EW | 10.03 | 10.39 | 10.37 |V |52840.696 | | 0.360317 | | |79011 DM | +500311 |OX Lup |151054.5-423546 |EA | 12.15 | 14.2 | 12.32 |V |52441.566 | | 5.4193 |10 | |79006 79080| +500312 |OY Lup |151140.0-421126 |EA | 8.94 | 9.05 | 9.03 |V |52878.610 | | 6.14395 |04 : |A1mA3-A6 |79009 DM | +500313 |OZ Lup |152614.3-412835 |SRB | 9.3 | 11.0 | |V | | | 153. | | |79100 DM | +500314 |PP Lup *|155524.2-415530 |EA | 8.67 | 9.06 | 8.82 |V |53170.910 | | 29.6924 |04 |A7+F |79006 DM | +500315 |PQ Lup *|155553.3-404144 |RRAB | 11.6 | 12.4 | |V |52744.833 | | 0.58198 |17 | |79033 79081| +500316 |PR Lup |145423.1-550511 |NA | 8.6 |< 17. | |V |55788 |2011 | | |pec(Nova) |80425 | NL80_2 +500317 |PS Lup *|142008.4-523039 |RRAB | 11.7 | 13.0 | |V |54333.51 | | 0.471850 |15 | |80001 GSC | NL80_2 +500318 |PT Lup |142514.8-480248 |M | 13.1 |< 16.2 | |V |54275. | | 285. : | | |80001 2MASS| NL80_2 +500319 |PU Lup |142558.4-484647 |M | 13.0 |< 15. | |V |54350. | | 301. | | |80399 80399| NL80_2 +500320 |PV Lup |142735.0-473709 |M | 11.0 |< 13.8 | |V |54671. | | 282. | | |80001 GSC | NL80_2 +500321 |PW Lup |143943.2-493951 |RRAB | 13.4 | 14.6 | |V |53880.8239 | | 0.513924 |10 | |80395 80395| NL80_2 +500322 |PX Lup |144017.7-483237 |M | 11.6 |< 15.4 | |V |54534. | | 263. | | |80399 80399| NL80_2 +500323 |PY Lup |144036.9-465335 |M | 11.8 |< 15.0 | |V |53982. | | 395. | | |80001 2MASS| NL80_2 +500324 |PZ Lup *|144210.1-432006 |EW | 10.42 | 10.70 | 10.67 |V |52038.659 | | 0.489307 | | |80365 80365| NL80_2 +500325 |QQ Lup *|144226.4-455807 |EW | 12.40 | 13.35 | 13.2 |V |52502.542 | | 0.251562 | | |80365 80365| NL80_2 +500326 |QR Lup |144252.6-502819 |M | 12.6 |< 15.0 | |V |54273. | | 244. | | |80399 80399| NL80_2 +500327 |QS Lup |144303.6-474653 |M | 12.9 |< 15.2 | |V |54683. | | 316. | | |80399 80399| NL80_2 +500328 |QT Lup *|144542.4-443644 |EW | 12.32 | 12.82 | 12.80 |V |52738.722 | | 0.385957 | | |80365 80365| NL80_2 +500329 |QU Lup *|144910.0-442417 |EW | 10.37 | 10.56 | 10.53 |V |51868.191 | | 0.446493 | | |80036 GSC | NL80_2 +500330 |QV Lup *|144956.6-432812 |EW | 11.35 | 11.78 | 11.68 |V |52813.674 | | 0.365618 | | |80365 80365| NL80_2 +500331 |QW Lup |145107.5-544619 |M | 10.0 |< 14.0 | |V |54536. | | 383. | | |80399 80399| NL80_2 +500332 |QX Lup |145145.3-500455 |M | 11.6 |< 14.6 | |V |54653. | | 273. | | |80399 80399| NL80_2 +500333 |QY Lup |145534.9-484541 |M | 11.0 |< 14.4 | |V |54938. | | 184.8 | | |80002 GSC | NL80_2 +500334 |QZ Lup *|145621.8-445408 |EB | 8.30 | 8.46 : | 8.43 : |V |54232.7007 | | 1.136545 | |B9V |80395 80395| NL80_2 +500335 |V0335 Lup |145638.2-450719 |LB | 8.62 | 8.82 | |V | | | | |M1III: |80001 GSC | NL80_2 +500336 |V0336 Lup |145752.8-472840 |M | 11.6 |< 14.5 | |V |54866. | | 403. | | |80001 GSC | NL80_2 +500337 |V0337 Lup |150109.8-424451 |M | 12.4 |< 16.4 | |V |54704. | | 320. | | |80399 80399| NL80_2 +500338 |V0338 Lup |150307.7-412024 |M | 12.5 |< 15.5 | |V |54847. | | 263. | | |80001 GSC | NL80_2 +500339 |V0339 Lup *|150327.4-475604 |RRAB | 11.5 | 12.3 | |V |52861.63 | | 0.60058 |15 | |80153 DM | NL80_2 +500340 |V0340 Lup |150358.3-462018 |SRA | 11.8 | 14.0 | |V |55064. | | 168. | | |80001 GSC | NL80_2 +500341 |V0341 Lup |150404.4-410807 |M | 9.5 | 13.0 | |V |54992. | | 142. | |Me |80001 GSC | NL80_2 +500342 |V0342 Lup |150417.8-414427 |M | 11.3 |< 14.6 | |V |54590. | | 348. | |Me |80406 80406| NL80_2 +500343 |V0343 Lup |150427.6-305246 |M | 10.8 |< 15.0 | |V |54628. | | 234. | | |80001 GSC | NL80_2 +500344 |V0344 Lup |150435.7-370831 |M | 11.0 |< 14.5 | |V |54946. | | 209. | | |80001 GSC | NL80_2 +500345 |V0345 Lup |150501.5-450322 |SRB | 10.6 | 11.2 | |V | | | 52.5 | | |80001 GSC | NL80_2 +500346 |V0346 Lup |150522.3-361533 |LB | 12.0 | 14.1 | |V | | | | | |80001 2MASS| NL80_2 +500347 |V0347 Lup |150606.7-412043 |M | 11.3 |< 14.7 | |V |54929. | | 281. | | |80001 GSC | NL80_2 +500348 |V0348 Lup |150622.9-525733 |M | 11.1 |< 14.1 | |V |54884. | | 352. | | |80001 GSC | NL80_2 +500349 |V0349 Lup |150844.7-524108 |M | 12.6 |< 16.9 | |V |54345. | | 348. | | |80406 80406| NL80_2 +500350 |V0350 Lup |150850.4-521427 |M | 12.0 |< 14.8 | |V |54520. | | 362. | | |80406 80406| NL80_2 +500351 |V0351 Lup |150854.2-412754 |M | 10.9 |< 15.0 | |V |54921. | | 186.7 | |Me |80002 GSC | NL80_2 +500352 |V0352 Lup |150854.8-481005 |M | 11.4 |< 15.0 | |V |54884. | | 247. | |Me |80001 GSC | NL80_2 +500353 |V0353 Lup *|150922.8-425511 |EW | 12.2 | 12.8 | 12.7 |V |52134.159 | | 0.67957 | | |80365 80365| NL80_2 +500354 |V0354 Lup |150925.2-365855 |SRB | 11.5 | 14.0 | |V | | | 159. | | |80001 GSC | NL80_2 +500355 |V0355 Lup |151026.1-484759 |LB | 12.9 | 14.1 | |V | | | | | |80001 GSC | NL80_2 +500356 |V0356 Lup |151027.7-433924 |LB | 10.6 | 11.5 | |V | | | | | |80001 DM | NL80_2 +500357 |V0357 Lup |151101.5-405228 |M | 10.9 | 15.0 | |V |55076. | | 218. | | |80001 2MASS| NL80_2 +500358 |V0358 Lup |151141.5-481959 |M | 3.61 | 5.28 | |K | | | 632. | |C |80166 2MASS| NL80_2 +500359 |V0359 Lup |151215.1-311047 |M | 9.3 |< 14.7 | |V |54888. | | 243. | |Me |80001 GSC | NL80_2 +500360 |V0360 Lup |151450.9-501751 |M | 13.1 |< 15.0 | |V |54726. | | 323. | | |80406 80406| NL80_2 +500361 |V0361 Lup |151456.2-424725 |M | 11.7 |< 14.5 | |V |52696. | | 344.1 | |Me |80002 2MASS| NL80_2 +500362 |V0362 Lup |151515.5-403225 |M | 11.2 |< 15.0 | |V |54858. | | 314. | | |80001 2MASS| NL80_2 +500363 |V0363 Lup *|151643.4-422813 |EW | 11.6 | 11.9 | 11.85 |V |51985.788 | | 0.347743 | | |80365 80365| NL80_2 +500364 |V0364 Lup |151706.5-435638 |RRAB | 12.53 | 13.52 | |V |52642.415 | | 0.60336 |16 | |80386 GSC | NL80_2 +500365 |V0365 Lup |151844.5-363358 |M | 11.8 |< 14.9 | |V |54277. | | 324. | |Me |80406 80406| NL80_2 +500366 |V0366 Lup |151845.3-391353 |M | 12.3 |< 14.5 | |V |53847. | | 367. | |M5: |80360 2MASS| NL80_2 +500367 |V0367 Lup |152015.7-490401 |M | 12.0 |< 14.4 | |V |54304. | | 287. | | |80406 80406| NL80_2 +500368 |V0368 Lup |152312.9-322642 |RRAB | 12.2 | 12.9 | |V |52086.565 | | 0.504915 |20 | |80001 DM | NL80_2 +500369 |V0369 Lup |152413.4-425630 |SRA | 11.7 | 14.4 | |V |54915. | | 236. | | |80001 GSC | NL80_2 +500370 |V0370 Lup |152420.8-423931 |M: | 13.0 | 17.0 | |R |51980. | | 850. : | | |80001 2MASS| NL80_2 +500371 |V0371 Lup |152454.6-505511 |M | 12.9 |< 14.8 | |V |54205. | | 194. | | |80406 80406| NL80_2 +500372 |V0372 Lup *|152547.6-361354 |M | 12.6 |< 14.8 | |V |54562. | | 418. | |M8 |80406 80406| NL80_2 +500373 |V0373 Lup |152723.3-352035 |M | 12.0 |< 14.8 | |V |54590. | | 294. | | |80406 80406| NL80_2 +500374 |V0374 Lup |152756.8-481516 |M | 12.8 |< 14.8 | |V |54543. | | 253. | | |80406 80406| NL80_2 +500375 |V0375 Lup |152832.9-305150 |CWB: | 12.9 | 13.7 | |V |53277.5 | | 6.477 | | |80001 GSC | NL80_2 +500376 |V0376 Lup |152855.7-530517 |BCEP: | 8.17 | 8.20 | |Hp| | | 0.564882 | |B9III |80019 HIP | NL80_2 +500377 |V0377 Lup |152900.0-391847 |LB | 13.0 | 14.6 | |V | | | | | |80001 GSC | NL80_2 +500378 |V0378 Lup *|153225.3-403047 |EA | 10.8 | 11.5 | 11.0 |V |54228.7215 | | 6.44770 |12 | |80001 GSC | NL80_2 +500379 |V0379 Lup *|153427.5-455004 |EA | 9.86 | 10.08 | 9.89 |V |52922.493 | | 5.8472 |04 |A0IV |80048 DM | NL80_2 +500380 |V0380 Lup |153456.1-370900 |M | 12.0 |< 14.8 | |V |54877. | | 311. | | |80001 2MASS| NL80_2 +500381 |V0381 Lup |153527.9-303654 |RRAB | 13.1 | 14.4 | |V |54895.8942 | | 0.578295 |20 | |80001 GSC | NL80_2 +500382 |V0382 Lup |153851.5-392120 |M | 11.0 |< 14.9 | |V |54664. | | 341. | | |80415 80415| NL80_2 +500383 |V0383 Lup |154224.7-302011 |LB | 12.2 | 13.0 | |V | | | | | |80001 GSC | NL80_2 +500384 |V0384 Lup |154344.7-304730 |RRAB | 13.3 | 13.9 | |V |54295.6422 | | 0.616758 |30 | |80395 80395| NL80_2 +500385 |V0385 Lup |154447.8-335534 |RRAB | 13.1 | 14.0 | |V |54539.824 | | 0.585579 |15 | |80002 GSC | NL80_2 +500386 |V0386 Lup *|154518.2-322206 |EW | 10.9 | 11.4 | 11.3 |V |54592.667 | | 0.619112 | | |80001 DM | NL80_2 +500387 |V0387 Lup |155014.6-312639 |RRAB | 13.15 | 14.55 | |V |52027.687 | | 0.457739 |09 | |80135 GSC | NL80_2 +500388 |V0388 Lup |155038.7-381743 |SRA | 12.0 | 14.8 : | |V |54611. | | 168. | | |80001 GSC | NL80_2 +500389 |V0389 Lup |155100.4-351114 |M | 11.8 |< 14.5 | |V |54559. | | 300. | | |80415 80415| NL80_2 +500390 |V0390 Lup |155223.3-395956 |SRB | 12.4 | 14.4 | |V | | | 112. | | |80001 GSC | NL80_2 +500391 |V0391 Lup |155253.6-312315 |SRB | 12.7 | 14.3 | |V | | | 69.0 | | |80001 2MASS| NL80_2 +500392 |V0392 Lup |155716.3-361015 |M | 12.6 |< 15.5 | |V |54721. | | 213. | |Me |80415 80415| NL80_2 +500393 |V0393 Lup |155737.8-350706 |M | 12.4 |< 14.9 | |V |54586. | | 283. | | |80415 80415| NL80_2 +500394 |V0394 Lup |160104.6-404003 |M | 12.2 |< 14.9 | |V |54655. | | 187.5 | | |80415 80415| NL80_3 +500395 |V0395 Lup |160157.3-384648 |M | 11.0 | 15.2 : | |V |54716. | | 359. | | |80415 80415| NL80_3 +500396 |V0396 Lup |160302.1-374921 |EW | 10.92 | 11.35 | 11.27 |V |53163.679 | | 0.363235 | | |80001 DM | NL80_3 +500397 |V0397 Lup |160326.2-304700 |LB | 12.3 | 12.9 | |V | | | | | |80001 GSC | NL80_3 +500398 |V0398 Lup |160409.9-350825 |M | 13.1 |< 14.8 | |V |54658. | | 261. | | |80415 80415| NL80_3 +500399 |V0399 Lup |160439.7-402432 |M | 12.1 |< 14.9 | |V |54539. | | 292. | | |80415 80415| NL80_3 +500400 |V0400 Lup |160722.8-295712 |CWA | 12.6 | 13.6 | |V |54343.6 | | 37.145 |40 | |80001 GSC | NL80_3 +509001 |alf Lup *|144155.8-472318 |BCEP | 2.29 | 2.34 | |V |37418.395 | | 0.2598466 | |B1.5III |09370 CoD | +509003 |gam Lup *|153508.4-411000 |ELL: | 2.69 | 2.71 | |Hp| | | | | |HIP HIP | +509004 |del Lup *|152122.3-403851 |BCEP | 3.20 | 3.24 | |V |41045.172 | | 0.16547 |50 |B1.5IV |06356 CoD | +509018 |sig Lup |143237.1-502726 |ELL: | 4.42 |( 0.02 )| |V | | | | | |72099 CoD | +5090191|tau 1 Lup |142608.2-451317 |BCEP | 4.54 | 4.58 | |V |43602.1269 | | 0.17738884 | |B2IV |08417 CoD | +510001 |R Lyn *|070118.0+551950 |M | 7.2 | 14.3 | |V |45175. | | 378.75 |44 |S2.5,5e-S6,8e: |00001 00002| +510002 |S Lyn *|064434.1+575440 |M | 8.5 | 14.8 | |V |44966. | | 296.34 |45 |M6e-M8.2e |00001 00002| +510003 |T Lyn *|082242.9+333109 |M | 8.8 | 13.5 | |V |43200. | | 406.0 |47 |C5,2e-C7,1e(NOe) |00001 00002| +510004 |U Lyn *|064046.5+595202 |M | 8.8 | 15.0 | |V |45111. | | 433.6 |42 |M7e-M9.5:e |00001 00002| +510005 |V Lyn *|062940.9+613233 |SRB | 9.5 | 12.0 | |p | | | | |M5III-IV |00310 08953| +510006 |W Lyn |081646.9+400753 |M | 7.5 | 14.0 | |V |42050. | | 295.2 | |M6 |00001 06286| +510007 |X Lyn |082531.3+352414 |M | 9.5 | 16. | |V |45045. | | 320.8 | |M5e |00001 00567| +510008 |Y Lyn *|072811.6+455926 |SRC | 7.8 | 10.3 | |p | | | 110. | |M6SIb-II |00361 08953| +510009 |Z Lyn |080844.1+574945 |CST: | 8.8 | | |p | | | | |A2 |00179 00119| +510010 |RR Lyn *|062625.8+561706 |EA/DM | 5.52 | 6.03 | 5.90 |V |33153.8623 | | 9.945079 |04 *|A7Vm+F3V |08626 02465| +510011 |RS Lyn |071813.9+483109 |SR | 10.2 | 11.6 | |p |26790. | | 285. | |M7 |00127 08953| +510012 |RT Lyn |081450.6+374012 |M | 10.5 |< 13. | |p |37691. | | 394.6 | |M6e |00001 06286| +510013 |RU Lyn |073957.0+364000 |M | 11.0 |< 16.0 | |p |38377. | | 243.47 | |M3 |00001 00228| +510014 |RV Lyn |065611.4+505145 |EA/SD | 13.0 | 15.6 | |p |29556.8163 | | 2.30751 |10 | |00316 00316| +510015 |RW Lyn *|075039.1+382714 |RRAB | 12.18 | 13.60 | |B |25981.503 | | 0.498567 |15 |F4.6-F5.4 |03411 09384| +510016 |RX Lyn |082808.0+382023 |SRA | 11.1 | 13.3 | |p |34442. | | 145.3 | |M |00001 02378| +510017 |RY Lyn |085513.6+462743 |EA/SD | 11.4 | 13.3 | |p |42887.443 | | 1.434988 |10 | |00001 00319| +510018 |RZ Lyn *|093606.8+411831 |EB/KE | 10.6 | 11.3 | 10.8 |p |25643.310 | | 1.146918 | |A2 |00362 00362| +510019 |SS Lyn |080555.5+514114 |LB | 10.3 | 11.3 | |p | | | | |M5 |09386 09386| +510020 |ST Lyn |082848.8+383927 |LB: | 11.7 | 12.7 | |p | | | | |K0IIIea |02741 02741| +510021 |SU Lyn |064255.1+552827 |SRB | 9.6 | 10.5 | |p | | | 126. | |M4 |00499 04099| +510022 |SV Lyn |080339.9+362042 |SRB | 8.2 | 9.1 | |p | | | 70. : | |M5III |05429 02378| +510023 |SW Lyn *|080741.6+414802 |EA/DW | 9.51 | 10.20 | 9.65 |V |43975.390 | | 0.6440634 |12 |F2V |00001 02378| +510024 |SX Lyn *|081357.9+571558 |EA/SD | 10.0 | 11.4 | 10.1 |p |45439.424 | | 2.0224715 |10 :*|A2 |00001 00519| +510025 |SY Lyn |074929.4+530753 |SR | 10.7 | 12.9 | |p |25938. | | 79.02 | |M |00834 00174| +510026 |SZ Lyn *|080935.8+442818 |DSCT | 9.08 | 9.72 | |V |38124.39824 | | 0.120534920 |30 |A7-F2 |09389 02378| +510027 |TT Lyn *|090307.8+443508 |RRAB | 9.42 | 10.21 | |V |36651.3560 | | 0.597434355 |17 |F0-F8 |07366 03252| +510028 |TU Lyn |063102.7+611429 |EA/GS: | 11.4 | 11.8 | |p |25912.523 | | 38.9461 |04 |F0: |02522 00174| +510029 |TV Lyn *|073331.7+474810 |RRC | 11.24 | 11.66 | |V |40950.922 | | 0.24065119 |42 |A6 |04957 07350| +510030 |TW Lyn *|074506.3+430642 |RRAB | 11.0 | 12.3 | |p |45022.458 | | 0.481860 |17 |F6-F8: |09334 02819| +510031 |TX Lyn |071808.2+481639 |LB | 11.0 | 11.7 | |p | | | | |K5 |04098 04098| +510032 |TY Lyn |081823.2+461608 |EA/SD: | 10.0 | 10.8 | |p |26024.325 | | 4.331655 |10 |A0 |04014 08953| +510033 |TZ Lyn *|083110.6+401330 |ACV | 6.65 | 6.79 | |V |37311.12 | | 6.80054 |56 |A0p(Eu-Cr-Sr) |09390 BD | +510034 |UU Lyn *|091529.9+424209 |EB/DM | 11.54 | 12.33 | 11.82 |V |44674.0481 | | 0.46846016 | |F3V |09382 00819| +510035 |UV Lyn *|090324.1+380555 |EW/KW | 9.41 | 9.81 | 9.78 |V |40271.5032 | | 0.41498088 | |F8 |09391 06991| +510036 |UW Lyn |061754.8+613055 |LB: | 4.95 |( 0.11 )| |V | | | | |M3IIIab |05840 BD | +510037 |UX Lyn |090347.1+384432 |SRB: | 6.60 | 6.78 | |V | | | | |M6III |06357 BD | +510038 |UY Lyn |071323.4+512544 |LB: | 5.47 | 5.55 | |V | | | | |M3IIIab |01371 BD | +510039 |UZ Lyn *|061937.4+590040 |E:+DSCTC: | 4.43 | 4.73 | |V | | | | |A2V |08547 BD | +510040 |VV Lyn *|073157.7+361310 |UV+BY: | 10.53 | 10.60 | |V | | | | |M3.5Ve |08313 07060| +510041 |VW Lyn *|090148.7+360708 |ZZA | 14.55 |( 0.15 )| |V | | | | |DA |08400 02387| +510042 |VX Lyn |073151.9+390748 |RRAB | 16.7 | 17.7 | |p | | | | | |67007 67007| +510043 |VY Lyn |073226.0+385005 |RRC | 15.7 | 16.2 | |p | | | | | |67007 67007| +510044 |VZ Lyn |073240.8+413739 |RRC | 16.2 | 16.8 | |p | | | | | |67007 67007| +510045 |WW Lyn |073407.8+381040 |EA/KE | 11.6 | 12.1 | |p | | | | | |67007 67007| +510046 |WX Lyn |073538.5+391527 |RRAB | 16.7 | 17.6 | |p | | | | | |67007 67007| +510047 |WY Lyn |073839.0+400954 |EW:/KW | 16.0 | 16.4 | |p | | | | | |67007 67007| +510048 |WZ Lyn |074045.7+391851 |RRAB | 13.9 | 15.1 | |p | | | | | |67007 67007| +510049 |XX Lyn |074230.0+414058 |EW/KW | 15.8 | 16.3 | |p | | | | | |67007 67007| +510050 |XY Lyn |074336.4+403923 |EA | 16.8 | 17.7 | |p | | | | | |67007 67007| +510051 |XZ Lyn |074448.4+401244 |RRC | 16.2 | 16.9 | |p | | | | | |67007 67007| +510052 |YY Lyn |074530.1+372258 |RRC | 14.9 | 15.6 | |p | | | | | |67007 67007| +510053 |YZ Lyn |074540.9+402232 |RRAB | 17.2 | 18.3 | |p | | | | | |67007 67007| +510054 |ZZ Lyn |075021.8+374200 |RRAB | 15.2 | 16.6 | |p | | | | | |67007 67007| +510055 |AA Lyn |075046.4+413407 |EA | 14.7 | 15.3 | |p | | | | | |67007 67007| +510056 |AB Lyn |075240.0+413020 |EA | 16.1 | 16.6 | |p | | | | | |67007 67007| +510057 |AC Lyn |075442.2+385421 |RRAB | 16.0 | 17.1 | |p | | | | | |67007 67007| +510058 |AD Lyn |075623.0+392259 |RRC | 15.8 | 16.4 | |p | | | | | |67007 67007| +510059 |AE Lyn |080235.8+571625 |RS | 6.49 |( 0.06 )| |V | | | | | |67412 BD | +510060 |AF Lyn |083557.5+410111 |RRAB | 15.9 | 16.9 | |p | | | | | |67007 67007| +510061 |AG Lyn |083853.9+380505 |EW/KW | 17.2 | 18.1 | |p | | | | | |67007 67007| +510062 |AH Lyn |084218.2+371105 |EA | 13.5 | 14.3 | |p | | | | | |67007 67007| +510063 |AI Lyn |084402.5+385448 |RRAB | 16.8 | 18.0 | |p | | | | | |67007 67007| +510064 |AK Lyn |084555.1+391455 |RRAB | 15.4 | 16.8 | |p | | | | | |67007 67007| +510065 |AL Lyn |084913.1+384931 |RRAB | 15.9 | 17.3 | |p | | | | | |67007 67007| +510066 |AM Lyn |084950.2+365600 |RRAB | 16.6 | 18.4 | |p | | | | | |67007 67007| +510067 |AN Lyn |091428.7+424638 |DSCT | 10.58 | 10.79 | |V | | | | | |67413 BD | +510068 |AO Lyn |061738.0+593125 |RR: | 15. | 16. | |p | | | | | |68155 68155| +510069 |AP Lyn |063433.4+605628 |M | 10.9 | 14.7 | |V | | | | | |68015 GSC | +510070 |AQ Lyn |073132.3+400451 |EW/KW | 15.65 | 16.4 | |B | | | | | |68001 68001| +510071 |AR Lyn |073430.8+403655 |EW/KW | 18.1 | 18.85 | |B | | | | | |68001 68001| +510072 |AS Lyn |074032.9+411137 |RRAB | 17.77 | 19.23 | |B | | | | | |68001 68001| +510073 |AT Lyn |074518.3+403048 |EW/KW | 17.9 | 18.6 | |B | | | | | |68001 68001| +510074 |AU Lyn |074935.4+414257 |RRAB | 17.51 | 18.68 | |B | | | | | |68001 68001| +510075 |AV Lyn |075409.6+424905 |RRAB | 15.99 | 17.10 | |B | | | | | |68001 68001| +510076 |AW Lyn |075724.7+431228 |RRAB | 15.77 | 17.10 | |B | | | | | |68001 68001| +510077 |AX Lyn |075946.4+391630 |RRAB | 18.06 | 19.40 | |B | | | | | |68001 68001| +510078 |AY Lyn |080029.9+403924 |RRC | 16.77 | 17.67 | |B | | | | | |68001 68001| +510079 |AZ Lyn |080339.8+423045 |RRAB | 15.79 | 17.63 | |B | | | | | |68001 68001| +510080 |BB Lyn |080436.2+422901 |RRAB | 16.31 | 17.63 | |B | | | | | |68001 68001| +510081 |BC Lyn |080937.4+423331 |RRAB | 16.49 | 17.91 | |B | | | | | |68001 68001| +510082 |BD Lyn |073521.5+513222 |LB: | 9.86 | 10.40 | |V | | | | | |69186 BD | +510083 |BE Lyn |091817.2+460911 |DSCT | 8.60 | 9.00 | |V | | | | | |69188 BD | +510084 |BF Lyn |092225.9+401204 |BY | 7.72 |( 0.1 )| |V | | | | | |69190 BD | +510085 |BG Lyn |075627.4+404256 |EB | 10.68 | 11.57 | |V | | | | | |70070 70071| +510086 |BH Lyn |082236.1+510525 |EA+NL: | 13.7 | 16.3 | |B | | | | | |70072 70073| +510087 |BI Lyn |090319.4+395101 |NL | 12.93 | 13.13 | |B | | | | | |71088 71088| +510088 |BK Lyn |092011.2+335642 |NL | 14.49 |( 0.32 )| |V | | | | | |72109 72085| +510089 |BL Lyn |073157.3+361347 |BY | 11.76 | 11.80 | |V | | | | | |73018 73102| +510090 |BM Lyn |074720.8+472018 |RS+E | 7.70 |( 0.25 )| |V | | | | | |73005 BD | +510091 |BN Lyn |082250.1+431117 |SRD: | 4.21 | 4.27 | |V | | | | | |73039 BD | +510092 |BO Lyn |084301.2+405952 |DSCT | 12.2 |( 0.32 )| |B | | | | | |73188 GSC | +510093 |BP Lyn |090308.9+411748 |E+NL | 14.19 | 14.33 | |B | | | | | |73189 73111| +510094 |BQ Lyn |063432.8+552111 |SRD | 6.48 | 6.69 | |Hp| | | | | |HIP HIP | +510095 |BR Lyn |065338.1+610056 |SRB: | 7.39 | 7.95 | |Hp| | | | | |HIP HIP | +510096 |BS Lyn |070011.5+560709 |LB: | 8.36 | 8.46 | |Hp| | | | | |HIP HIP | +510097 |BT Lyn |070710.1+543455 |SRB | 9.18 | 9.45 | |Hp| | | | | |HIP HIP | +510098 |BU Lyn |070722.9+514755 |SRB: | 8.61 | 8.80 | |Hp| | | | | |HIP HIP | +510099 |BV Lyn |070821.0+611432 |LB: | 8.13 | 8.25 | |Hp| | | | | |HIP HIP | +510100 |BW Lyn |071955.9+594148 |SRB | 8.22 | 8.41 | |Hp| | | | | |HIP HIP | +510101 |BX Lyn |072451.4+522400 |LB: | 8.37 | 8.48 | |Hp| | | | | |HIP HIP | +510102 |BY Lyn |072843.5+475515 |SRB: | 6.60 | 6.70 | |Hp| | | | | |HIP HIP | +510103 |BZ Lyn |073103.5+500255 |SRB: | 7.56 | 7.72 | |Hp| | | | | |HIP HIP | +510104 |CC Lyn |073556.0+430152 |EW | 6.42 | 6.52 | |Hp| | | | | |HIP HIP | +510105 |CD Lyn |074306.4+484110 |E: | 9.83 | 10.37 | |Hp| | | | | |HIP HIP | +510106 |CE Lyn |074409.5+385016 |SRB | 7.20 | 7.66 | |Hp| | | | | |HIP HIP | +510107 |CF Lyn |074432.3+364144 |E | 9.61 | 9.93 | |Hp| | | | | |HIP HIP | +510108 |CG Lyn |074531.7+420603 |LB: | 8.65 | 8.77 | |Hp| | | | | |HIP HIP | +510109 |CH Lyn |074700.4+553229 |SRB | 7.93 | 8.07 | |Hp| | | | | |HIP HIP | +510110 |CI Lyn |074715.6+420313 |SRD | 8.70 | 8.86 | |Hp| | | | | |HIP HIP | +510111 |CK Lyn |075013.5+394615 |LB | 6.81 | 6.94 | |Hp| | | | | |HIP HIP | +510112 |CL Lyn |075512.5+540946 |EA | 9.78 | 10.37 | |Hp| | | | | |HIP HIP | +510113 |CM Lyn |075550.6+380312 |LB | 8.48 | 8.83 | |Hp| | | | | |HIP HIP | +510114 |CN Lyn |080137.2+384458 |EA | 9.07 | 9.58 | |Hp| | | | | |HIP HIP | +510115 |CO Lyn |080928.9+551521 |DSCTC | 6.88 | 6.94 | |Hp| | | | | |HIP HIP | +510116 |CP Lyn |081149.5+514609 |LB: | 8.11 | 8.21 | |Hp| | | | | |HIP HIP | +510117 |CQ Lyn |081259.0+553731 |DSCT | 8.04 | 8.14 | |Hp| | | | | |HIP HIP | +510118 |CR Lyn |081753.7+432435 |DSCTC | 7.70 | 7.77 | |Hp| | | | | |HIP HIP | +510119 |CS Lyn |081747.5+375204 |EB | 8.49 | 8.67 | |Hp| | | | | |HIP HIP | +510120 |CT Lyn |082111.4+351948 |SRB | 7.97 | 8.11 | |Hp| | | | | |HIP HIP | +510121 |CU Lyn |082345.9+361851 |LB | 8.76 | 8.97 | |Hp| | | | | |HIP HIP | +510122 |CV Lyn |082537.4+521656 |SRB: | 8.61 | 8.73 | |Hp| | | | | |HIP HIP | +510123 |CW Lyn *|084026.3+445418 |EB: | 9.61 | 9.85 | |Hp| | | | | |HIP HIP | +510124 |CX Lyn |084241.7+390341 |LB | 7.48 | 7.65 | |Hp| | | | | |HIP HIP | +510125 |CY Lyn |085355.7+353218 |ELL: | 6.15 | 6.18 | |Hp| | | | | |HIP HIP | +510126 |CZ Lyn |085712.1+412027 |SRB | 7.92 | 8.07 | |Hp| | | | | |HIP HIP | +510127 |DD Lyn |075540.8+352446 |DSCTC | 6.23 |( 0.03 b )| |V | | | | | |75040 BD | +510128 |DE Lyn |082529.6+574329 |E | 12.9 | 13.9 | |p | | | | | |75002 GSC | +510129 |DF Lyn |084008.3+401504 |ZZA | 15.77 |( 0.20 )| |B | | | | | |75165 75166| +510130 |DG Lyn |090515.2+402931 |EB: | 13.6 | 14.5 | |p | | | | | |75002 GSC | +510131 |DH Lyn |090847.8+420921 |SR: | 12.0 | 14.5 | |p | | | | | |75002 GSC | +510132 |DI Lyn |093522.5+395748 |EA | 6.79 | 6.87 | |V | | | | | |75167 BD | +510133 |DK Lyn |061948.3+571513 |M | 12.3 |< 15.3 | |V | | | | | |76012 GSC | +510134 |DL Lyn |062530.9+574253 |M | 12.4 | 15.3 | |V | | | | | |76012 GSC | +510135 |DM Lyn |064944.1+591117 |SR: | 11.9 | 12.7 | |V | | | | | |76012 GSC | +510136 |DN Lyn |073142.5+473323 |M: | 11.7 | 14.3 | |V | | | | | |76012 GSC | +510137 |DO Lyn |074542.3+393249 |GDOR | 7.17 |( 0.05 )| |V | | | | | |76080 DM | +510138 |DP Lyn |074750.1+585926 |SR: | 11.9 | 13.1 | |V | | | | | |76012 USNO | +510139 |DQ Lyn |082341.0+372811 |RRC | 11.46 | 11.92 | |B | | | | | |76085 GSC | +510140 |DR Lyn |082424.5+500051 |EA | 11.6 | 14.3 | |V | | | | | |76012 GSC | +510141 |DS Lyn |090648.0+355140 |LB: | 12.7 | 13.5 | |V | | | | | |76012 GSC | +510142 |DT Lyn |091455.4+452341 |RPHS | 14.9 |( 0.07 * )| |B | | | | | |76094 76095| +510143 |DU Lyn |074639.3+373103 |SRB | 5.18 |( 0.13 )| |V | | | | | |77065 DM | +510144 |DV Lyn |081917.7+423339 |RPHS | 16.1 |( 0.02 )| |B | | | | | |77071 USNO | +510145 |DW Lyn |070709.7+603850 |RPHS | 14.7 |( 0.03 )| |B | | | 0.0042 | | |78096 GSC | +510146 |DX Lyn |073300.6+370147 |BY | 7.68 |( 0.02 )| |V | | | 8.03 | |G5V |78018 DM | +510147 |DY Lyn *|080046.0+421033 |EA | 9.67 | 10.21 | 10.16 |V |52704.4884 | | 1.31324 |13 |F5V |78104 DM | +510148 |DZ Lyn |081153.5+425436 |EB: | 9.88 | 10.25 | |V |52722.4734 | | 0.378018 | |F3V |78104 DM | +510149 |EE Lyn |081450.3+484916 |DSCTC | 9.12 | 9.14 | |V | | | 0.05 : | |F0 |78022 DM | +510150 |EF Lyn |081931.8+350244 |GDOR | 7.23 | 7.27 | |Hp| | | 0.4229 | |A5 |78091 DM | +510151 |EG Lyn |082051.1+493433 |XM | 18.0 | 19.4 | |R | | | | |pec(e) |78039 78039| +510152 |EH Lyn |090240.2+341947 |EW | 14.00 | 14.32 | |* |52728.300 | | 0.32678 | | |78060 GSC | +510153 |EI Lyn |091348.2+431304 |SXARI | 5.32 |( 0.03 )| |V | | | 3.834 | |B8IIIp |78127 DM | +510154 |EK Lyn |080417.1+384638 |EA | 9.73 | 10.1 : | 9.80 |* |51497.820 | | 2.2353 |14 |A2 |79003 DM | +510155 |EL Lyn |082522.7+403455 |EA | 12.65 | 13.20 | 12.83 |* |51611.870 | | 0.64453 |21 | |79004 79150| +510156 |EM Lyn |083041.7+402425 |RRAB | 14.3 | 15.1 | |* |51513.52 | | 0.62945 |15 | |79025 USNO | +510157 |EN Lyn |084607.0+380253 |RRAB | 13.4 | 14.0 | |* |51565.12 | | 0.6249 |20 : | |79025 GSC | +510158 |EO Lyn *|070901.2+503754 |EB | 13.8 | 14.6 | 14.1 |* |51533.683 | | 0.6524 | | |80102 80102| NL80_2 +510159 |EP Lyn |071218.8+471932 |RRAB | 13.10 | 14.05 | |* |51633.67 | | 0.46841 |15 | |80001 GSC | NL80_2 +510160 |EQ Lyn *|074532.0+453832 |ZZ+NL | 18.3 |( 0.15 *)| |R | | | 0.01424 | |pec(e) |80283 USNO | NL80_2 +510161 |ER Lyn |075118.8+362957 |RS | 12.3 | 12.5 | |* | | | 3.3769 | | |80043 80043| NL80_2 +510162 |ES Lyn |075204.0+535654 |LB | 10.1 | 10.4 | |* | | | | |C(N) |80100 GSC | NL80_2 +510163 |ET Lyn |075240.0+393218 |DSCTC | 7.38 | 7.42 | |V | | | 0.184373 | |gF1 |80092 HIP | NL80_2 +510164 |EU Lyn |075240.5+362823 |E+AM | 17.6 | 19.5 | |V | | | 0.1142 | | |80278 USNO | NL80_2 +510165 |EV Lyn |075443.0+500729 |EA+NL | 17.75 | 18.40 | |* |54124.3531 | | 0.143031 | | |80064 USNO | NL80_2 +510166 |EW Lyn |075911.8+451937 |RRAB | 13.22 | 13.84 | |* |51542.63 | | 0.50010 | | |80026 GSC | NL80_2 +510167 |EX Lyn |080324.7+381836 |UV | 15.9 |< 19.7 | |R | | | | |M5e |80291 SDSS | NL80_2 +510168 |EY Lyn |080421.6+482049 |RRAB | 12.9 | 13.8 | |* |51567.83 | | 0.57534 |17 | |80026 GSC | NL80_2 +510169 |EZ Lyn *|080434.3+510350 |UGSU | 12.8 | 17.5 | |V | | | | |pec(UG) |80292 80292| NL80_2 +510170 |FF Lyn |080802.3+533931 |RRAB | 12.34 | 12.97 | |* |51602.79 | | 0.57540 |17 | |80001 GSC | NL80_2 +510171 |FG Lyn *|081117.4+525235 |EB | 10.77 | 11.04 | 11.00 |* |51463.77 | | 1.43543 | | |80013 GSC | NL80_2 +510172 |FH Lyn *|081321.9+452809 |UGSS | 15.3 | 18.1 | |* | | | | |pec(UG)+K5.5 |80298 80027| NL80_2 +510173 |FI Lyn *|081727.3+515147 |EW | 9.73 | 10.22 | 10.18 |* |51578.812 | | 0.373260 | |F8 |80013 GSC | NL80_2 +510174 |FK Lyn |081744.5+362606 |BY | 11.8 | 12.0 | |* | | | 8.235 | | |80043 80043| NL80_2 +510175 |FL Lyn *|082409.8+493125 |UGSU | 15.44 | 19.38 | |* | | | | |pec(e) |80304 80027| NL80_2 +510176 |FM Lyn |082713.6+412833 |RS | 10.53 | 10.75 | |* | | | 17.61 | | |80049 80049| NL80_2 +510177 |FN Lyn *|083716.6+412226 |EA | 10.23 | 10.95 | 10.36 |* |51584.7626 | | 1.810750 |22 |F0 |80001 DM | NL80_2 +510178 |FO Lyn |083726.4+424024 |EW | 11.11 | 11.58 | |* |51498.85 | | 0.634457 | | |80001 GSC | NL80_2 +510179 |FP Lyn |084146.8+390532 |EW | 11.36 | 11.69 | |V |53045.932 | | 0.359097 | | |80306 GSC | NL80_2 +510180 |FQ Lyn |084626.4+343637 |EW | 11.72 | 12.06 | |V |53047.032 | | 0.569226 | | |80001 GSC | NL80_2 +510181 |FR Lyn |085414.0+390539 |XM | 18.8 | 20.0 | |g | | | 0.07865 | |pec(e) |80030 USNO | NL80_2 +510182 |FS Lyn |085444.3+415513 |EB | 11.02 | 11.37 | |V |53055.945 | | 0.540063 | | |80306 GSC | NL80_2 +510183 |FT Lyn *|090051.4+342236 |EW | 12.88 | 13.13 | 13.08 |* |52721.298 | | 0.2937757 | | |80005 80005| NL80_2 +510184 |FU Lyn |090144.2+421932 |EW | 12.46 | 12.90 | |V |53055.395 | | 0.397867 | | |80306 GSC | NL80_2 +510185 |FV Lyn |090452.1+440257 |NL | 19.1 | 19.6 | |g | | | | |pec(UG) |80030 80027| NL80_2 +510186 |FW Lyn |091951.5+335224 |RRAB | 13.50 | 14.24 | |* |51577.67 | | 0.52174 | | |80026 GSC | NL80_2 +510187 |FX Lyn |092916.9+394011 |RRAB | 14.59 | 15.77 | |* |51619.81 | | 0.46430 | | |80026 GSC | NL80_2 +520001 |R Lyr |185520.1+435646 |SRB | 3.88 | 5.0 | |V | | | 46. : | |M5III |09225 00002| +520002 |S Lyr *|191311.8+260028 |M | 9.8 | 15.6 | |V |42924. | | 438.40 |40 |SCe |00001 00002| +520003 |T Lyr |183220.1+365956 |LB | 7.84 | 9.6 | |V | | | | |C6,5(R6) | 00103| +520004 |U Lyr *|192009.2+375236 |M | 8.3 | 13.5 | |V |42492. | | 451.72 |52 |C4,5e(N0e) |00001 00002| +520005 |V Lyr *|190904.5+293930 |M | 8.2 | 15.7 | |V |45209. | | 373.53 |33 |M7e |00001 00002| +520006 |W Lyr *|181455.9+364013 |M | 7.3 | 13.0 | |V |45084. | | 197.88 |48 |M2e-M8e |00001 00002| +520007 |X Lyr |191303.1+264640 |LB | 8.6 | 9.8 | |V | | | | |M3.5III | 00103| +520008 |Y Lyr *|183713.2+435714 |RRAB | 12.58 | 13.90 | |V |15020.2535 | | 0.50269589 |14 |F5 |03506 03736| +520009 |Z Lyr *|185936.8+345716 |M | 9.2 | 15.3 | |V |45266. | | 291.70 |49 |M4e-M5.5:e |00001 00002| +520010 |RR Lyr *|192527.9+424704 |RRAB | 7.06 | 8.12 | |V |42923.4193 | | 0.56686776 |19 |A5.0-F7.0 |09338 06874| +520011 |RS Lyr *|191301.3+332449 |M | 9.2 | 15.8 | |V |42919. | | 301.41 |48 |M5e |00001 00002| +520012 |RT Lyr *|190114.9+373120 |M | 9.1 | 15.2 | |V |45119. | | 253.70 |45 |M5e |00001 00002| +520013 |RU Lyr *|191221.3+411814 |M | 9.5 | 15.9 | |V |45121. | | 371.84 |45 |M6e:-M8e |00001 00002| +520014 |RV Lyr *|191618.0+322515 |EA/SD | 11.5 | 14.6 | |p |45526.431 | | 3.599050 |12 |A |00001 00010| +520015 |RW Lyr *|184510.1+433808 |M | 9.8 | 16.0 | |V |44486. | | 503.75 |38 |M7e |00001 00002| +520016 |RX Lyr *|185410.0+324951 |M | 10.9 | 16.0 | |V |44585. | | 247.82 |45 |Me |00001 00002| +520017 |RY Lyr |184452.1+344033 |M | 9.0 |< 15.6 | |V |45306. | | 325.79 |40 |M5e-M6e |00001 00002| +520018 |RZ Lyr *|184337.9+324754 |RRAB | 10.6 | 12.03 | |V |41183.426 | | 0.5112423 |14 |A9-F4 |00001 00323| +520019 |SS Lyr *|191315.5+465856 |M | 8.4 | 14.0 | |V |45090. | | 346.33 | |M5IIIe |00001 00563| +520020 |ST Lyr |190945.6+433653 |M | 10.6 |< 18. | |p |44433. | | 300.5 | |M4IIIe |09340 00100| +520021 |SU Lyr |185337.8+363037 |M | 12.9 | 17.0 | |V |40795. | | 417.79 | | |00001 00002| +520022 |SV Lyr |184532.0+361802 |M | 12.1 | 15. | |p |38937. | | 301.3 |44 | |00458 00524| +520023 |SW Lyr |185501.1+295112 |M: | 13. |< 15. | |p |13868. | | 225. | | |00325 00524| +520024 |SX Lyr |185457.4+312726 |M | 12.1 |< 15. | |p |27982. | | 279.3 | | |00498 00524| +520025 |SY Lyr |184127.5+284852 |SRB | 9.1 | 10.5 | |V | | | 100. | |M6 |09341 09341| +520026 |SZ Lyr *|183439.2+460957 |SRA | 10.3 | 12.5 | |V |32121. | | 133.1 |43 |M6 |01000 00002| +520027 |TT Lyr *|192736.3+414206 |EA/SD | 9.34 | 11.43 | 9.44 |V |38605.2644 | | 5.243727 |14 |B2V |01002 00526| +520028 |TU Lyr |182030.3+314521 |LB | 11.1 | 12.3 | |p | | | | |M6 |00326 00002| +520029 |TV Lyr |182138.8+302753 |M | 10.0 | 13.9 | |V |38439. | | 262.31 | |M4e |00001 00567| +520030 |TW Lyr *|182356.4+393506 |M | 9.5 | 14.9 | |V |43039. | | 376.71 | |M6 |00001 09385| +520031 |TX Lyr |181625.2+404136 |M | 10.4 |< 13. | |V |38231. | | 223.35 | |M2e |00001 00529| +520032 |TY Lyr *|190947.7+280420 |M | 9.0 | 14.6 | |V |42677. | | 333.71 |35 |M8e |00001 09342| +520033 |TZ Lyr *|181549.7+410638 |EB/D | 10.87 | 11.85 | 11.05 |V |44784.4093 | | 0.5288269 | |F5V |00001 00529| +520034 |UU Lyr |190542.3+280501 |M | 11.5 |< 16.1 | |p |37945. :| | 248. | | |00328 00528| +520035 |UV Lyr |191023.8+275040 |M | 11.0 | 17.3 | |p |42341. | | 235.2 |46 | |01001 00528| +520036 |UW Lyr |191134.9+281324 |M | 12.3 | 18.5 | |p |42505. | | 233.34 |30 | |00001 00528| +520037 |UX Lyr *|182403.7+390429 |RRAB | 14.47 | 15.39 | |V |40381.88 | | 0.5273741 |10 | |00001 03420| +520038 |UY Lyr |185340.8+464110 |LB | 11.9 | 13.4 | |p | | | | |M |00331 06286| +520039 |UZ Lyr *|192108.9+375612 |EA/SD | 9.9 | 11.0 | |V |43689.9415 | | 1.8912727 |15 |B9V |00001 00568| +520040 |VV Lyr |183328.5+301250 | | 15. | 16.5 | |p | | | | | |02127 USNO | +520041 |VW Lyr |183626.6+301644 | | 15. | 17. | |p | | | | | |02127 USNO | +520042 |VX Lyr |184223.7+303417 |M | 11.4 | 17.0 | |p |25344. | | 294. |53 | |00332 06286| +520043 |VY Lyr |184347.4+391617 |CST: | 11.0 | | |p | | | | | |09341 09341| +520044 |VZ Lyr |190918.1+293259 |M | 12. | 16. | |p |28052. | | 246.4 | |M |01000 00568| +520045 |WW Lyr |191345.4+332934 |RRAB | 13.0 | 14.1 | |p |35019.353 | | 0.51576489 |17 | |04247 04247| +520046 |WX Lyr |184810.1+453839 |M | 14.5 | 17.8 | |p |44803. | | 246.2 | | |09377 USNO | +520047 |WY Lyr |185343.8+401815 |M | 11. |< 15. | |p |25258. | | 281.7 | |M3e |01000 06286| +520048 |WZ Lyr |190214.9+471300 |M | 10.6 | 15. | |p |44568. | | 376.64 | |M9e |00001 06286| +520049 |XX Lyr |190446.5+354822 |LB | 13.1 | 14.1 | |p | | | | | |01214 06286| +520050 |XY Lyr |183806.5+394006 |LC | 5.80 | 6.35 | |V | | | | |M4-5Ib-II |09344 02396| +520051 |XZ Lyr |190831.1+304323 |M | 12.5 |< 17. | |p |29844. | | 281.8 | | |01000 00524| +520052 |YY Lyr |190211.8+293550 |SRA | 12.6 | 15.4 | |p |25122. | | 136.6 |50 | |00332 00530| +520053 |YZ Lyr |190325.4+290851 |LB | 11.2 | 12.0 | |V | | | | |M1 |09341 09341| +520054 |ZZ Lyr |190553.2+263331 |RRAB | 13.2 | 14.3 | |p |29051.444 | | 0.446833 |41 : | |00332 00530| +520055 |AA Lyr *|190548.9+290444 |EB/SD | 13.4 | 14.0 | 13.5 |p |29733.583 | | 1.073329 | |F |00332 00530| +520056 |AB Lyr |190700.4+334331 |M | 11. | 15. | |p |39212. | | 216.5 | |M4e |00001 00524| +520057 |AC Lyr |190800.7+254935 |M | 13.2 | 17.6 | |B |42684. | | 181.0 |48 | |00332 09345| +520058 |AD Lyr |190733.5+345004 |M | 12. | 16. | |p |29300. | | 190.7 | | |01001 00524| +520059 |AE Lyr |190809.9+261415 |SR | 9.3 | 11.2 | |V |29234. | | 57.8 |48 | |08044 09341| +520060 |AF Lyr |190950.5+260014 |M | 13.9 |< 17. | |p |25428. | | 222.8 | | |00332 00530| +520061 |AG Lyr |191045.9+264615 |L | 12.9 | 13.8 | |p | | | | | |00332 00530| +520062 |AH Lyr *|191301.1+271638 |EB/SD | 12.0 | 13.0 | 12.1 |V |27845.436 | | 1.0307101 | | |09341 09341| +520063 |AI Lyr |191435.6+274946 |M | 11.2 | 17.2 | |p |42583. | | 236.98 |40 | |00001 09342| +520064 |AK Lyr *|191519.6+270058 |EA/SD | 12.8 | 14.1 | 12.9 |V |27902.604 | | 2.0854648 |18 *| |04427 09341| +520065 |AL Lyr *|191929.6+273344 |CWA | 11.76 | 12.8 | |V |36862.05 | | 12.9916 |50 | |09341 09341| +520066 |AM Lyr |191926.4+322548 |M | 13.7 | 19. | |p |35326. | | 348.3 | | |03662 00530| +520067 |AN Lyr |192150.1+320031 |M | 11.0 | 17. : | |p |37872. | | 224.2 |48 |M7e |03662 00530| +520068 |AO Lyr |181820.1+314200 |M | 11.5 | 17.2 | |p |32097. | | 293. |45 | |01005 06286| +520069 |AP Lyr |182847.8+285642 |SR | 12. | 14. | |p |26725. | | 180. | | |01000 06286| +520070 |AQ Lyr *|183451.0+263542 |RRAB | 12.3 | 13.51 | |V |35695.098 | | 0.3571424 |16 | |03423 00336| +520071 |AR Lyr |183444.7+312220 |SR | 13.5 | 15.3 | |p |29193. | | 260. | | |00332 00531| +520072 |AS Lyr |183701.0+273434 |M | 13.1 | 16.0 | |p |25407. | | 327. |51 | |00332 00531| +520073 |AT Lyr |183815.7+264235 |SR | 14.5 | 16.2 | |p | | | 105. : | | |00332 00531| +520074 |AU Lyr |183904.5+262825 |M | 13.6 |< 17. | |p |25390. | | 350. | | |00332 00531| +520075 |AV Lyr |184120.8+260924 |SR | 13.1 | 14.8 | |p | | | 189. : | | |00332 00531| +520076 |AW Lyr |184213.9+282244 |RRAB | 13.0 | 14.1 | |p |25331.636 | | 0.497447 |16 | |03183 00531| +520077 |AX Lyr |184241.5+353509 |M | 12.6 | 17.5 | |p |31597. | | 250.7 |48 | |00001 00531| +520078 |AY Lyr *|184426.8+375952 |UGSU | 12.5 | 18.4 | |B | | |( 24. ) | |pec(UG) | 00002| +520079 |AZ Lyr |185012.8+264135 |SR | 14.2 | 16.4 | |p |25493. | | 243.7 |40 | |00332 00531| +520080 |BB Lyr |185109.5+271517 |M | 14.0 |< 17. | |p |25307. | | 322.7 | | |00332 00531| +520081 |BC Lyr |185218.7+283458 |M | 13.5 | 16.5 | |p |25305. | | 251. | | |00332 00531| +520082 |BD Lyr |185226.4+315414 |M | 13.5 |< 16.5 | |p |29365. | | 298. | | |01000 00524| +520083 |BE Lyr |185444.2+271901 |M | 12.3 |< 17. | |p |25281. | | 276.5 | |M2:e |00332 00531| +520084 |BF Lyr *|185440.0+304144 |SR | 14.4 | 16.2 | |p |29126. | | 106. | | |00332 00531| +520085 |BG Lyr |185523.9+290544 |M | 13.7 | 19. | |p |25361. | | 306. | | |00332 00531| +520086 |BH Lyr *|185544.1+333402 |RRAB | 13.6 | 14.6 | |p |37164.365 | | 0.6128864 |12 | |08109 00524| +520087 |BI Lyr |185751.9+283621 |M | 12.0 |< 16.5 | |p |25303. | | 249.8 | | |00332 00531| +520088 |BK Lyr |185913.6+305847 |M | 11.7 | 16.9 | |p |25412. | | 251. |37 | |00332 00531| +520089 |BL Lyr |190234.2+255028 |M | 11.5 | 16.9 | |p |42586. | | 279.07 |17 | |00001 08490| +520090 |BM Lyr |190402.3+271628 |M | 12.7 | 16.4 | |p |25402. | | 155. |43 | |00332 00531| +520091 |BN Lyr |190421.9+291510 |EA/SD | 14.7 | 16.4 | |p |25331.658 | | 2.282287 | | |04240 00531| +520092 |BO Lyr |190553.2+311358 |M | 14.0 | 19. | |p |25519. | | 245. | | |00332 00524| +520093 |BP Lyr |190624.8+313632 |M | 12.5 |< 16.5 | |p |25441. | | 319.3 | | |01000 00524| +520094 |BQ Lyr *|190836.1+265727 |RRAB | 13.2 | 14.1 | |p |29436.470 | | 0.435040 |23 |F0-F3 |00332 00531| +520095 |BR Lyr |190853.1+304629 |M | 13.0 | 17.0 | |p |25496. | | 216.2 |41 | |00332 00531| +520096 |BS Lyr |191216.6+291433 |M | 13.7 | 17. : | |p |25321. | | 326. | | |00332 00531| +520097 |BT Lyr |191307.9+301338 |M | 12.5 | 16.9 | |p |33843. | | 167.3 | | |01005 00352| +520098 |BU Lyr |191457.9+402255 |SRB | 11.2 | 12.6 | |V | | | 259. | |M7 |09341 09341| +520099 |BV Lyr *|191742.9+325731 |EA | 12.1 | 12.8 | |V |32881.235 | | 1.8296477 |13 | |04427 09341| +520100 |BW Lyr |192035.0+262552 |SRA | 13.8 | 15.5 | |p |35021.4 | | 81.13 | |M2 |03662 00531| +520101 |BX Lyr |192035.4+324338 |M | 13.5 |< 20. | |p |35277. | | 320.7 | | |03662 00531| +520102 |BY Lyr |192358.7+302201 |SRB | 14.7 | 15.7 | |p |35078. | | 107.4 |58 | |03662 00531| +520103 |BZ Lyr |192357.0+310109 |M | 13.3 |< 17. | |p |37863. | | 292.2 | |M9 |03662 00532| +520104 |CC Lyr *|183357.4+313824 |CWA | 11.65 | 12.45 | |V |44045.09 | | 24.16 : |21 |F0p |00001 09341| +520105 |CD Lyr |183519.9+285254 |EA/SD | 14.7 | 16.9 : | |p |25323.649 | | 4.832198 |09 : | |00332 00133| +520106 |CE Lyr |183652.4+280421 |M | 11.7 | 14.5 | |p |25772. | | 318. | | |01000 00133| +520107 |CF Lyr |183658.1+313631 |SRB | 13.7 | 14.3 | |p | | | 280. : | | |08656 00133| +520108 |CG Lyr |183709.3+332340 |RRAB | 12.9 | 14.1 | |p |25389.423 | | 0.5089557 |20 | |00569 00133| +520109 |CH Lyr |183924.4+271918 |M | 14.1 |< 20. | |p |25518. | | 254. | | |00332 00133| +520110 |CI Lyr |183956.2+262112 |RRAB | 13.6 | 14.7 | |p |36353.198 | | 0.469206 |20 | |00001 00133| +520111 |CK Lyr |183928.9+320958 |M | 13.0 | 16.7 | |p |25496. | | 343. |46 | |00332 00133| +520112 |CL Lyr |183951.0+312332 |RRAB | 13.8 | 15.5 | |p |29322.643 | | 0.490753 |15 | |00332 00133| +520113 |CM Lyr |184025.7+325410 |SRB | 11.4 | 12.8 | |V | | | 183. : | | |00001 09341| +520114 |CN Lyr |184115.9+284321 |RRAB | 11.07 | 11.76 | |V |44486.3338 | | 0.41138232 |22 |F0-F5 |03426 00133| +520115 |CO Lyr |184156.6+313835 |RRAB | 13.7 | 14.6 | |p |36312.391 | | 0.399730 |20 | |00001 00133| +520116 |CP Lyr |184231.9+303738 |SR | 15.2 | 16.7 | |p |29138. | | 161. : | | |00332 00133| +520117 |CQ Lyr |184300.1+321953 |SR | 13.5 | 15.7 | |p |29078. | | 114. |53 | |00332 00133| +520118 |CR Lyr |184322.2+275044 |RRAB | 13.7 | 14.7 | |p |29759.505 | | 0.493423 |17 | |00332 00133| +520119 |CS Lyr |184545.4+301550 |RRAB | 14.0 | 15.1 | |p |29072.500 | | 0.620730 |16 | |00332 00133| +520120 |CT Lyr |184824.5+303420 |RRAB | 13.5 | 14.9 | |p |29759.545 | | 0.517560 |15 | |00332 00133| +520121 |CU Lyr |184932.3+262155 |LB | 14.8 | 15.3 | |p | | | | | |00332 00133| +520122 |CV Lyr *|185035.8+280654 |SRB | 10.8 | 13.1 | |V | | | 140. | | |09341 00133| +520123 |CW Lyr |185038.2+311426 |M | 13.1 |< 16.7 | |p |25714. | | 236.5 | | |00332 00133| +520124 |CX Lyr *|185117.3+284748 |RRAB | 12.14 | 13.17 | |V |33069.365 | | 0.61664495 |18 |F4 |03506 09341| +520125 |CY Lyr |185241.3+264532 |UGSS | 13.2 | 17.0 | |p | | |( 17. ) | |pec(UG) | 08852| +520126 |CZ Lyr |185238.7+285814 |M | 13.9 |< 16.5 | |p |25418. | | 236. | | |00332 00133| +520127 |DD Lyr *|185310.7+270443 |RRAB | 12.7 | 13.8 | |V |27696.451 | | 0.37261732 |25 | |03426 00133| +520128 |DE Lyr |185308.8+304715 |L | 14.5 | 15.2 | |p | | | | | |00332 00133| +520129 |DF Lyr *|185334.3+280420 |EW/D: | 13.1 | 13.5 | 13.4 |V |27801.840 | | 0.577128 : | | |00335 09341| +520130 |DG Lyr |185508.1+270227 |L | 13.8 | 14.8 | |p | | | | | |00332 00133| +520131 |DH Lyr |185623.5+262701 |RRAB | 13.5 | 14.4 | |p |29322.664 | | 0.612472 |14 | |00332 00133| +520132 |DI Lyr *|185631.9+342116 |RRAB | 13. | 14.5 | |p |40768.442 | | 0.4174492 |19 | |08109 00133| +520133 |DK Lyr |185845.2+260722 |L | 14.0 | 15.0 | |p | | | | | |00332 00133| +520134 |DL Lyr |185836.3+311507 |M | 13.1 | 20. | |p |25351. | | 411. | | |00332 00133| +520135 |DM Lyr |185844.5+301533 |UG | 13.6 | 18. | |p | | | | | |09353 00133| +520136 |DN Lyr *|185907.3+293944 |SRB | 14.0 | 14.9 | |p | | | 40. : | | |00332 00133| +520137 |DO Lyr |190029.9+262508 |L | 13.1 | 14.5 | |p | | | | | |00332 00133| +520138 |DP Lyr |190019.7+354222 |SRB | 11.1 | 12.3 | |V | | | 86. |46 | |09341 00133| +520139 |DQ Lyr |190133.6+311159 |RRAB | 14.1 | 15.2 | |p |29050.408 | | 0.669132 |20 | |00332 00133| +520140 |DR Lyr *|190212.3+260840 |RRAB | 14.0 | 14.8 | |p |37168.403 | | 0.8313502 |25 | |08109 00133| +520141 |DS Lyr |190252.5+304824 |RRAB | 14.1 | 16.0 | |p |29050.469 | | 0.535498 |13 | |00332 00133| +520142 |DT Lyr |190322.5+295314 |EA/SD: | 14.0 | 14.9 | |p |25493.355 | | 0.787904 | | |04240 00133| +520143 |DU Lyr *|190351.1+300805 |EB/D | 13.1 | 14.4 | 13.3 |p |29784.470 | | 0.83700 | |A |00332 00133| +520144 |DV Lyr |190412.9+311949 |RRAB | 13.7 | 14.5 | |p |29421.416 | | 0.555838 |25 | |00332 00133| +520145 |DW Lyr |190654.3+294501 |SRB | 11.6 | 12.5 | |V | | | 94.4 |46 | |00310 09341| +520146 |DX Lyr |190742.4+260904 |L | 13.8 | 14.9 | |p | | | | | |00332 00133| +520147 |DY Lyr |191032.1+302851 |L | 14.2 | 15.0 | |p | | | | | |00332 00133| +520148 |DZ Lyr |191053.5+270717 |EA/SD | 14.7 | 15.8 | |p |25439.420 | | 1.8364125 | | |04240 00133| +520149 |EE Lyr |191119.7+291559 |SRB | 11.3 | 13.0 | |V | | | 73. | | |09341 00133| +520150 |EF Lyr |191048.0+385827 |SRA | 11.2 | 12.8 | |V |36794. | | 294. |37 | |09341 00133| +520151 |EG Lyr |191048.8+383426 |SRB | 10.48 | 12.86 | |V | | | 236. | |M5III |09341 00133| +520152 |EH Lyr |191205.8+264318 |L | 13.9 | 14.9 | |p | | | | | |00332 00133| +520153 |EI Lyr |191308.3+274735 |SR | 14.1 | 15.1 | |p |29162. | | 192. | | |00332 00133| +520154 |EK Lyr |191308.9+351245 |SRB | 11.9 | 12.8 | |V | | | 180. | | |09341 00133| +520155 |EL Lyr |191320.8+320318 |M | 12.2 |< 16.5 | |p |35040. | | 234.1 |42 : | |00001 00133| +520156 |EM Lyr |191406.3+290455 |M | 13.5 | 18.5 | |p |32852. | | 410.3 | | |03662 00133| +520157 |EN Lyr *|191454.3+344602 |RRAB | 13.05 | 13.57 | |V |37488.336 | | 0.70296986 |20 | |03428 00133| +520158 |EO Lyr |191505.8+323212 |SRA | 13.5 | 14.1 | |p |34971.6 | | 106.0 | | |04427 00133| +520159 |EP Lyr *|191819.6+275103 |RVB | 9.96 | 10.90 : | |V |27009. | | 83.34 |18 |A4Ib-G5p |08079 04427| +520160 |EQ Lyr |191902.6+410635 |M | 12. |< 15. | |p | | | | | |00132 00133| +520161 |ER Lyr |191953.6+401522 |M | 12. | 15.5 | |p |33044. | | 196.6 |43 |M5e |00001 00133| +520162 |ES Lyr |192216.6+332439 |SRA | 13.6 | 16.0 | |p |32790. | | 181.8 |42 | |03662 00133| +520163 |ET Lyr |192216.2+345122 |EA/SD | 13. | 15. | |p |36074.385 | | 2.3022064 |14 | |08717 00133| +520164 |EU Lyr |192243.9+353236 |L: | 13. | 13.5 | |p | | | | | |00132 00133| +520165 |EV Lyr |192636.3+390217 |EA/SD: | 13. | 15. | |p | | | | | |00132 00133| +520166 |EW Lyr *|183315.6+374513 |EA/SD | 11.2 | 13.5 | |V |26499.697 | | 1.948723 |11 |F0 |00001 00464| +520167 |EX Lyr *|183711.6+260920 |RRC | 12.0 | 12.4 | |V |36461.300 | | 0.3586324 |48 | |00001 09341| +520168 |EY Lyr |184051.0+314024 |LB | 8.3 | 9.2 | |V | | | | |M5 |09341 09341| +520169 |EZ Lyr *|184741.2+355927 |RRAB | 10.8 | 11.8 | |V |33914.3357 | | 0.52526769 |10 |A7-F4 |09341 00464| +520170 |FF Lyr |185523.3+325430 |M | 12.9 |< 16.5 | |p |13447. | | 220.8 | | |00337 00524| +520171 |FG Lyr *|185619.0+321128 |EA/SD | 12.4 | 13.3 | |V |27866.560 | | 2.871825 |15 | |09341 00533| +520172 |FH Lyr *|191129.9+363936 |EA/SD | 12.5 | 13.9 | |V |45554.400 | | 1.589240 |18 | |00335 09341| +520173 |FI Lyr |184204.8+285730 |SRB | 9.6 | 10.4 | |V | | | 146. | |M |00335 09341| +520174 |FK Lyr *|191025.4+273924 |SR | 11.3 | 12.1 | |V | | | 43. | | |09341 00531| +520175 |FL Lyr *|191204.9+461927 |EA/DM | 9.27 | 9.89 | 9.52 |V |38221.55250 | | 2.1781544 |08 *|G0V |03435 03433| +520176 |FM Lyr |184249.6+352711 |LB | 11. | 12. | |p | | | | |M |00341 BD | +520177 |FN Lyr *|191022.3+422732 |RRAB | 11.91 | 13.23 | |V |33829.402 | | 0.52739716 |13 | |02717 00534| +520178 |FO Lyr *|191802.6+270114 |EA/SD | 13.6 | 14.7 | 13.7 |p |32761.481 | | 2.6828053 |18 *| |03662 09341| +520179 |FP Lyr |192325.5+415829 |M | 13.0 |< 15.2 | |p |43370. | | 278. | | |08729 00534| +520180 |FQ Lyr |183334.5+282126 |L | 14.0 | 16.1 | |p | | | | | |00332 00533| +520181 |FR Lyr |183345.1+281719 |M | 13.8 |< 17. | |p |25410. | | 241. | | |00332 00533| +520182 |FS Lyr |183521.5+264531 |L | 14.0 | 14.7 | |p | | | | | |00332 00533| +520183 |FT Lyr |183601.9+274445 |L | 13.6 | 14.9 | |p | | | | | |00332 00533| +520184 |FU Lyr |183653.5+271429 |L | 13.6 | 14.0 | |p | | | | | |00332 00533| +520185 |FV Lyr |183709.4+271107 |L | 13.5 | 14.1 | |p | | | | | |00332 00533| +520186 |FW Lyr |183652.5+315828 |L | 12.6 | 13.6 | |p | | | | | |00332 00533| +520187 |FX Lyr |183725.8+285438 |LB | 13.0 | 14.3 | |p | | | | | |00332 00533| +520188 |FY Lyr |183934.7+300647 |EA/DS | 14.1 | 16.0 | |p |25419.340 | | 12.23645 | | |04240 00133| +520189 |FZ Lyr |184409.2+321642 |L | 14.0 | 14.6 | |p | | | | | |00332 00533| +520190 |GG Lyr |184704.0+285250 |LB | 12.0 | 12.8 | |p | | | | |M4 |00332 00533| +520191 |GH Lyr |184933.0+264320 |L | 13.8 | 15.0 | |p | | | | | |00332 00533| +520192 |GI Lyr |185300.7+261512 |L | 13.4 | 14.0 | |p | | | | | |00332 00533| +520193 |GK Lyr |185303.0+290854 |L | 14.8 | 16.0 | |p | | | | | |00332 00133| +520194 |GL Lyr |185416.7+262334 |L | 13.3 | 13.7 | |p | | | | | |00332 00533| +520195 |GM Lyr |185709.9+282915 |L | 13.5 | 15.0 | |p | | | | | |00332 00533| +520196 |GN Lyr |185720.4+310243 |LB: | 14.1 | 16.0 | |p | | | | | |03165 00533| +520197 |GO Lyr |185736.7+275117 |L | 13.6 | 13.9 | |p | | | | | |00332 00533| +520198 |GP Lyr |185807.5+270015 |LB | 13.5 | 14.1 | |p | | | | | |00332 00533| +520199 |GQ Lyr |190019.7+304305 |L | 12.8 | 13.4 | |p | | | | | |00322 00533| +520200 |GR Lyr |190319.4+261314 |L | 13.5 | 14.5 | |p | | | | | |00322 00531| +520201 |GS Lyr |190420.1+280154 |L | 14.4 | 14.8 | |p | | | | | |00332 00533| +520202 |GT Lyr |190455.0+304806 |L | 13.3 | 14.3 | |p | | | | | |00332 00533| +520203 |GU Lyr |190530.0+271647 |L | 14.0 | 14.6 | |p | | | | | |00332 00533| +520204 |GV Lyr |190527.2+302849 |SR | 13.9 | 15.0 | |p | | | 125. : | | |00332 00533| +520205 |GW Lyr |190628.0+291835 |LB | 13.1 | 13.6 | |p | | | | | |00332 00533| +520206 |GX Lyr |190856.3+261529 |L | 13.4 | 15.0 | |p | | | | | |00332 00533| +520207 |GY Lyr *|190934.2+291629 |SR: | 13.0 | 16.3 | |p |25405. | | 380. | | |00332 00533| +520208 |GZ Lyr |191031.3+275501 |EA/SD | 13.3 | 14.4 | |p |38562.423 | | 1.3294322 |11 | |08717 00133| +520209 |HH Lyr |191341.7+263746 |L | 14.1 | 15.2 | |p | | | | | |00332 00533| +520210 |HI Lyr |181625.0+462752 |M | 12.5 |< 14.5 | |p |29398. | | 182. |54 |M0e |00001 00346| +520211 |HK Lyr |184250.0+365731 |LB | 7.8 | 9.6 | |V | | | | |C6,4(N4) | 00346| +520212 |HL Lyr |184716.3+385121 |RRC | 15.0 | 15.5 | |p |29074.49 | | 0.324385 |41 | |00347 04988| +520213 |HM Lyr |185221.2+333113 |LB | 10.1 | 10.9 | |p | | | | |M6 |06087 08953| +520214 |HN Lyr |191725.8+424850 |M | 10.8 |< 14.0 | |p |31240. | | 406. | |M7IIIe |00346 00346| +520215 |HO Lyr |192008.8+414059 |M | 11.4 | 14.0 | |p |30584. | | 100.4 |40 |M2e |00346 00346| +520216 |HP Lyr *|192139.1+395608 |EB/GS | 10.5 | 11.0 | 11.0 |p |26910. | | 140.75 | |A6 |03437 01089| +520217 |HQ Lyr *|192633.3+423239 |M | 12.8 | 17.9 | |B |24770. | | 289.5 | |M5e-M10 |07038 00346| +520218 |HR Lyr |185324.9+291338 |NA | 6.5 | 15.8 | |B |22299. |1919 | | |pec(NOVA) | 00536| +520219 |HS Lyr |181431.8+411056 |L | 15.0 | 15.5 | |p | | | | | |00569 02365| +520220 |HT Lyr *|181512.1+381808 |EB | 13.2 | 13.7 | 13.3 |V |44438.371 | | 0.8619849 | | |00001 02347| +520221 |HU Lyr |181535.0+365140 |L | 12.9 | 13.7 | |p | | | | | |00569 02347| +520222 |HV Lyr |181630.6+310617 |RRAB | 13.9 | 15.2 | |p |26145.440 | | 0.4391978 |18 | |00569 02365| +520223 |HW Lyr |181609.1+404244 |RRAB | 13.7 | 14.9 | |p | | | | | |00569 02365| +520224 |HX Lyr |181700.1+344856 |SRB | 12.5 | 13.9 | |p | | | 363. | | |00569 02353| +520225 |HY Lyr *|181744.0+313744 |EB/KE | 13.8 | 14.4 | 14.1 |p | | | 0.56 : | | |00569 02365| +520226 |HZ Lyr |181805.1+361513 |RRAB | 14.5 | 15.7 | |p |30103.470 | | 0.5067754 |12 |A5 |08656 02365| +520227 |II Lyr |181755.0+383304 |LB | 12.1 | 12.6 | |p | | | | |K-M |00569 02365| +520228 |IK Lyr *|181851.0+323614 |RRAB | 14.6 | 15.5 | |p |29374.537 | | 0.412315 |19 : | |00569 02365| +520229 |IL Lyr *|181901.3+352605 |RRAB | 14.8 | 16.0 | |p |29375.533 | | 0.606735 | | |00001 02365| +520230 |IM Lyr |181904.1+384026 |L | 13.1 | 13.9 | |p | | | | | |00569 02347| +520231 |IN Lyr |181859.3+411234 |RRAB | 13.3 | 14.4 | |p |29672.663 | | 0.545585 |39 | |00569 02365| +520232 |IO Lyr *|182238.0+325733 |RRAB | 11.27 | 12.24 | |V |39618.9315 | | 0.57712278 |18 |F1-F6 |00001 00350| +520233 |IP Lyr *|182324.4+331107 |EB | 13.2 | 13.8 | 13.3 |V |44461.411 | | 0.4728057 | | |00001 02365| +520234 |IQ Lyr |182348.5+324322 |EA | 14.6 | 16.8 | |p |29672.67 | | 1.412782 |05 | |03438 02365| +520235 |IR Lyr |182353.5+391858 |UG: | 14.6 | 16.0 | |p | | | | | |03165 02366| +520236 |IS Lyr |182529.6+313305 |M | 13.6 |< 17.0 | |p |29658. | | 281.9 | | |00569 02347| +520237 |IT Lyr |182559.7+312951 |M | 12.5 | 17.0 | |p |29705. | | 198.7 |48 | |00569 02347| +520238 |IU Lyr |182553.9+353340 |L | 11.8 | 12.9 | |p | | | | | |00569 02347| +520239 |IV Lyr |182711.5+334952 |SR | 13.0 | 15.0 | |p |29716. | | 297.6 |35 : | |00569 02347| +520240 |IW Lyr *|182801.3+385953 |EA/SD | 13.1 | 14.2 | 13.3 |p |43942.607 | | 0.798509 |22 *| |00001 02353| +520241 |IX Lyr |182856.3+321449 |M | 11.5 |< 16.8 | |p |29827. | | 282. | | |00569 02353| +520242 |IY Lyr *|182940.8+310001 |EW/KE: | 13.8 | 14.1 | 14.1 |V |29670.68 | | 0.6531646 | | |00569 02366| +520243 |IZ Lyr |182942.1+394512 |RRAB | 13.7 | 14.6 | |V |29752.378 | | 0.634963 |16 | |00569 02366| +520244 |KK Lyr |183007.5+341801 |EA/SD | 14.4 | 16.0 | |p |30147.48 | | 2.26235 |10 | |00569 02366| +520245 |KL Lyr |183013.2+372939 |M | 11.7 | 16.5 | |p |29724. | | 215.1 |48 : | |00569 00141| +520246 |KM Lyr *|183029.8+401816 |RRAB | 12.8 | 13.9 | |V |36321.409 | | 0.500193 |17 | |00001 02366| +520247 |KN Lyr |183044.5+382356 |RRAB | 13.5 | 14.1 | |V |29672.585 | | 0.601483 |25 | |00569 02353| +520248 |KO Lyr |183046.3+382017 |CWB: | 15.1 | 16.3 | |p |30026.31 | | 7.63038 |25 | |00569 02366| +520249 |KP Lyr *|183051.8+383825 |SR | 10.3 | 11.3 | |p |29375. | | 146. | |M9III |00569 02353| +520250 |KQ Lyr |183110.6+315319 |SR | 13.5 | 14.5 | |p |29033. | | 84.67 | | |00569 02366| +520251 |KR Lyr *|183057.0+374430 |RRAB | 13.1 | 14.4 | |p |30209.492 | | 0.3957714 |18 | |00569 02353| +520252 |KS Lyr |183211.7+331741 |RRAB | 14.6 | 15.2 | |p | | | 0.67 : | |A0: |08656 02366| +520253 |KT Lyr *|183242.2+325855 |EB | 14.7 | 15.4 | 14.9 |p |29752.38 | | 0.581550 | | |00569 02347| +520254 |KU Lyr |183303.2+355756 |RRAB | 14.2 | 15.0 | |p |29670.699 | | 0.5702016 |19 | |00569 02366| +520255 |KV Lyr |183314.7+353009 |RRAB | 14.4 | 15.8 | |p |30088.530 | | 0.488872 |26 | |00569 02366| +520256 |KW Lyr |183339.5+332343 |RV: | 14.9 | 16.1 | |p |29800. | | 260. | | |00569 02366| +520257 |KX Lyr *|183315.2+401023 |RRAB | 10.38 | 11.47 | |V |39630.8696 | | 0.44090446 |21 |A7-F5 |00001 02366| +520258 |KY Lyr |183417.0+340302 |L | 13.3 | 14.3 | |p | | | | | |00569 02347| +520259 |KZ Lyr |183413.1+323543 |M | 13.6 | 17.0 | |p |29417. | | 149.6 |47 | |00569 02347| +520260 |LL Lyr |183512.7+382005 |UG | 12.8 | 17.1 | |p | | |( 100. :) | | |05386 02353| +520261 |LM Lyr |183536.3+392943 |M | 13.2 |< 16.8 | |p |29810. | | 326.4 | | |00569 02347| +520262 |LN Lyr |183628.2+361145 |RRAB | 14.7 | 16.0 | |p |29373.574 | | 0.55033 |21 | |00569 02366| +520263 |LO Lyr |183707.1+400248 |RRC | 14.1 | 14.7 | |p |29752.420 | | 0.363908 |13 | |00569 02366| +520264 |LP Lyr |183820.2+323245 |SR | 12.6 | 15.7 | |p |29694. | | 162. | | |00569 02353| +520265 |LQ Lyr *|183829.6+393005 |RRC | 13.9 | 14.3 | |V |29373.559 | | 0.3451239 |49 | |00569 02366| +520266 |LR Lyr *|183854.2+402450 |RRC | 13.5 | 14.0 | |p |36272.565 | | 0.338471 |46 | |00569 02366| +520267 |LS Lyr |183932.7+350315 |RR | 15.6 | 16.5 | |p | | | 0.378 : | | |00569 02366| +520268 |LT Lyr *|183934.5+314543 |M: | 12.9 | 15.5 | |p |29065. | | 129.3 | |M2 |00569 02366| +520269 |LU Lyr |183946.6+343341 |SR | 14.4 | 16.2 | |p |29866. | | 223. |31 : | |00569 02366| +520270 |LV Lyr |184017.3+344012 |LB | 13.2 | 13.8 | |p | | | | | |00569 02366| +520271 |LW Lyr |184042.9+350919 |EA/SD: | 13.8 | 15.6 | |p | | | | | |00569 02366| +520272 |LX Lyr *|184023.3+410223 |RRAB | 12.6 | 13.2 | |V |36287.287 | | 0.545485 |14 |A9-F6 |00569 02366| +520273 |LY Lyr |184046.6+353510 |LB | 13.1 | 14.3 | |p | | | | | |00569 02366| +520274 |LZ Lyr *|184126.2+325847 |EA/SD | 12.0 | 13.3 | |p |42870.618 | | 1.6111788 |11 *| |00001 02366| +520275 |MM Lyr |184237.2+323551 |RRAB | 15.5 | 16.6 | |p |29375.551 | | 0.483624 |33 | |00569 02366| +520276 |MN Lyr *|184238.0+350455 |EB/KE | 13.8 | 14.5 | 14.1 |p |29373.57 | | 0.544076 | | |00569 02366| +520277 |MO Lyr |184253.4+372407 |IS | 14.8 | 15.6 | |p | | | | | |00569 02366| +520278 |MP Lyr |184326.0+405033 |M | 11.8 | 16.6 | |p |29764. | | 153.0 |49 | |00569 02366| +520279 |MQ Lyr |185502.9+291328 |SRB | 12.2 | 12.8 | |p |31035. | | 72.6 | |M2 |00351 00533| +520280 |MR Lyr *|184341.4+374332 |RR | 15.2 | 16.1 | |p | | | 0.40 : | | |00569 02366| +520281 |MS Lyr *|184650.8+400635 |RR | 15.5 | 16.2 | |p | | | | | |00569 02366| +520282 |MT Lyr *|191359.5+295737 |RV | 15.5 | 16.3 | 16.2 |p |33854. | | 103.38 | | |00352 00352| +520283 |MU Lyr |191631.1+303921 |SR | 15.2 | 16.8 | |p |29097. | | 125.8 | | |03662 00352| +520284 |MV Lyr *|190716.3+440109 |NL | 12.2 | 18.0 | |B | | | | |Op+M5V |09372 00365| +520285 |MW Lyr *|181953.8+315855 |RRAB | 12.5 | 14.0 | |p |36041.462 | | 0.3978497 |20 |A-F |05646 02363| +520286 |MX Lyr |182109.6+460858 |M | 12.5 |< 15.5 | |p |36160. | | 340. | |M3e |02394 00158| +520287 |MY Lyr |185126.1+405436 |M | 13.0 |< 15.1 | |p |35016. | | 379.2 | | |02394 00538| +520288 |MZ Lyr *|185432.9+265234 |EW | 13.3 | 14.0 | 14.0 |p |36805.3431 | | 0.9673972 | | |09374 04988| +520289 |NN Lyr |185437.8+264713 |L | 14.0 | 14.7 | |p | | | | | |02394 04988| +520290 |NO Lyr |185507.9+350121 |SR | 14.5 | 16. | |p |34984. | | 197.3 | | |02394 00524| +520291 |NP Lyr |190515.5+341646 |M | 14.5 |< 17. | |p |34471. | | 258.5 | | |02394 00524| +520292 |NQ Lyr |190748.4+421755 |RRAB | 12.2 | 13.3 | |p |17852.251 | | 0.5877888 |20 : | |02717 00538| +520293 |NR Lyr |190827.3+384846 |RRAB | 11.8 | 13.1 | |p |36079.374 | | 0.6820293 |27 | |03506 00319| +520294 |NS Lyr |191114.0+361035 |EA/SD | 14.0 |< 16.8 | |p |39408.400 | | 2.7970 |09 | |05675 00524| +520295 |NT Lyr |191207.8+343218 |M: | 13.8 |< 15.0 | |p |34525. | | 222.5 | | |02394 00524| +520296 |NU Lyr |191434.1+291237 |SRA | 12.7 | 14.4 | |p |32857. | | 165. | | |04427 04427| +520297 |NV Lyr *|191502.7+335047 |EA/SD | 12.8 | 13.8 | |p |33926.338 | | 1.5414264 |18 | |04427 00319| +520298 |NW Lyr *|191556.3+342708 |CWB | 11.97 | 13.15 | |V |36398.452 | | 1.6011823 |32 | |09375 00141| +520299 |NX Lyr |191617.9+304327 |RRAB | 13.6 | 14.8 | |p |34431.5290 | | 0.49812125 |13 | |02774 02774| +520300 |NY Lyr *|191636.9+342341 |EW/KW | 12.7 | 13.2 | 13.1 |p |45169.5100 | | 0.44079534 | | |03734 03734| +520301 |NZ Lyr *|192346.5+334006 |RRAB | 13.7 | 14.8 | |p |34292.3588 | | 0.61626908 |15 | |02773 02773| +520302 |OO Lyr |183009.0+303817 |LB | 11.2 | 11.9 | |p | | | | |M |03118 03118| +520303 |OP Lyr |183253.7+430104 |M | 11.9 |< 18. | |p |38230. | | 297.6 | | |09340 04406| +520304 |OQ Lyr *|185651.3+311204 |I | 9.9 | 10.6 | |p | | | | |G6 |04216 09406| +520305 |OR Lyr |185731.3+274053 |LB | 10.7 | 11.7 | |p | | | | |M5 |04391 04391| +520306 |OS Lyr *|185830.1+262651 |SRB | 13.4 | 14.0 | |p | | | 50. | | |04237 00533| +520307 |OT Lyr |190811.6+291358 |EA | 13.9 | 14.9 | |p |25303.646 | | 0.471095 | | |04240 00533| +520308 |OU Lyr |191137.5+323652 |SRA | 10.0 | 10.7 | |p |33200. | | 90. | |MB |04216 08953| +520309 |OV Lyr |191613.2+292034 |SRA | 11.3 | 12.3 | |p |34643. | | 170.1 | |M7 |04244 04244| +520310 |OW Lyr |191601.6+343805 |M | 13.9 | 17.9 | |p |38207. | | 283. | | |04814 04413| +520311 |OX Lyr |191642.6+290710 |L | 13.8 | 15.0 | |p | | | | | |04244 04244| +520312 |OY Lyr |191701.9+290026 |M | 14.3 |< 16.8 | |p |39237. | | 237.4 | | |00001 04244| +520313 |OZ Lyr |191703.2+285103 |M: | 14.2 |< 15.3 | |p |34985. | | 233.7 | | |04244 04244| +520314 |PP Lyr |191743.9+280730 |M | 13.3 |< 15.6 | |p |34154. | | 270.5 | | |04244 04244| +520315 |PQ Lyr *|191739.7+342736 |EA/DS | 14.8 | 17.0 | 14.9 |p |35393.792 | | 9.072459 |14 | |04413 04413| +520316 |PR Lyr |191813.6+264303 |M | 14.2 |< 16.1 | |p |35031. | | 277.6 | | |04427 04427| +520317 |PS Lyr *|191822.6+271701 |EA/SD | 11.3 | 12.0 | 11.4 |p |34601.529 | | 1.4469824 |17 | |04427 04427| +520318 |PT Lyr |191829.4+275542 |RRAB | 15.5 | 16.8 | |p |35621.482 | | 0.5159333 |14 | |04245 04245| +520319 |PU Lyr *|191834.7+340614 |RRAB | 14.3 | 15.6 | |p |35066.2235 | | 0.44366726 |17 | |04247 04247| +520320 |PV Lyr *|191902.6+313636 |EA/SD: | 12.0 | 12.3 | |p |34628.396 | | 1.1986321 |36 | |04427 04427| +520321 |PW Lyr |191938.3+290644 |M | 14.5 |< 16.7 | |p |34985. | | 359. | | |04248 04248| +520322 |PX Lyr |191953.2+295229 |L | 13.0 | 14.4 | |p | | | | | |04248 04248| +520323 |PY Lyr *|192026.0+285644 |EW/KW | 12.5 | 13.5 | 13.4 |p |45119.418 | | 0.3857582 | |F0: |00001 04248| +520324 |PZ Lyr |192049.8+322119 |RRAB | 14.7 | 15.6 | |p |34988.388 | | 0.40954907 |23 | |04247 04247| +520325 |QQ Lyr *|192102.0+314400 |EB/SD: | 14.5 | 15.1 | 14.6 |p |34134.473 | | 1.7467022 | | |04244 04244| +520326 |QR Lyr |192125.9+325927 |L | 11.9 | 13.2 | |p | | | | | |04244 04244| +520327 |QS Lyr |192207.4+310020 |M | 13.2 | 17.5 | |p |38619. | | 357.9 | |M2e |04418 04244| +520328 |QT Lyr *|192220.5+303903 |EB/KE | 14.0 | 14.6 | 14.6 |p |35373.2833 | | 1.24607972 | | |04427 04427| +520329 |QU Lyr *|192323.8+344407 |EW/KE | 12.7 | 13.1 | 13.1 |p |34040.888 | | 1.22303638 | | |04414 04414| +520330 |QV Lyr |192346.5+343755 |RRAB | 13.5 | 14.9 | |p |34238.324 | | 0.4362938 |21 | |04254 04254| +520331 |QW Lyr |192420.5+341624 |RRAB | 14.9 | 16.2 | |p |34733.015 | | 0.5633704 |19 | |04245 04245| +520332 |QX Lyr |192419.5+345926 |RRAB | 15.5 | 16.7 | |p |33452.493 | | 0.548786 |18 | |04254 04254| +520333 |QY Lyr |192442.7+324926 |RRAB | 14.9 | 16.4 | |p |35373.288 | | 0.60282384 |20 | |04247 04247| +520334 |QZ Lyr |192505.6+362856 |RRAB | 15.8 | 17.2 | |p |34651.778 | | 0.57630263 |13 | |04245 04245| +520335 |V0335 Lyr *|181549.0+352750 |RRAB | 13.3 | 14.8 | |p |30473.569 | | 0.3311678 : |10 | |04184 03903| +520336 |V0336 Lyr *|182747.3+330224 |EA/SD | 14.9 | 16.0 | |p |38932.458 | | 1.90513 |06 *| |04184 03903| +520337 |V0337 Lyr *|183346.6+405405 |RRAB | 14.1 | 15.3 | |p |29373.528 | | 0.5065734 |30 | |04184 03910| +520338 |V0338 Lyr |183718.6+355515 |RRAB | 14.8 |< 15.8 | |p |29705.634 | | 0.5202705 |30 : | |04184 03910| +520339 |V0339 Lyr |183855.7+413353 |RR | 15. | 16. | |p |38856.60 | | 0.89 /N| | |03910 03910| +520340 |V0340 Lyr |183957.0+325008 |RRAB | 13.5 | 14.7 | |p |29906.325 | | 0.584456 |18 | |04184 03910| +520341 |V0341 Lyr |184254.8+384515 |EA/SD | 14.2 | 15.5 | |p |30843.466 | | 1.414497 |07 *| |04184 03903| +520342 |V0342 Lyr |184332.8+394642 |RR | 16. | 17.5 | |p |38650.38 | | | | |03910 03910| +520343 |V0343 Lyr |184430.8+414153 |RR | 15.5 | 16.5 | |p |38977.48 | | | | |03905 03905| +520344 |V0344 Lyr |184439.2+432228 |UG: | 14.5 |< 20. | |p | | | | | |03910 03910| +520345 |V0345 Lyr |184513.9+420242 |RRAB | 15. | 16. | |p |38695.25 | | 0.644 | | |00001 03910| +520346 |V0346 Lyr |184608.7+442314 |RRAB | 16.2 | 17.6 | |p |44409.484 | | 0.576836 |15 | |09377 03910| +520347 |V0347 Lyr |184708.9+412221 |RR | 15. | 16. | |p |38856.60 | | 1.07 /N| | |03910 03910| +520348 |V0348 Lyr *|184823.8+450216 |EW/KE: | 16.4 | 16.8 | 16.8 |p |44852.346 | | 0.824800 | | |09377 03905| +520349 |V0349 Lyr |184924.3+424445 |RR: | 16. | 17. | |p | | | | | |03910 03910| +520350 |V0350 Lyr *|184908.3+461155 |RRAB | 14.9 | 16.7 | |p |43784.260 | | 0.594252 |20 | |09377 03910| +520351 |V0351 Lyr |184926.0+425850 |RR | 15. | 16. | |p |38638.39 | | | | |03910 03910| +520352 |V0352 Lyr |185216.9+420948 |M | 14. | 17.5 | |p | | | | | |03910 03910| +520353 |V0353 Lyr |185201.8+451831 |RR | 16. | 17. | |p |38673.28 | | | | |03910 03910| +520354 |V0354 Lyr |185250.3+413349 |RR: | 15. | 16. | |p |38977.48 | | | | |03905 03905| +520355 |V0355 Lyr *|185325.8+430916 |RRAB | 13.8 | 15.3 | |p |36077.355 | | 0.473697 |20 | |09377 03905| +520356 |V0356 Lyr *|185600.5+392917 |M | 15. |< 17. | |p |38990. :| | | | |03905 03905| +520357 |V0357 Lyr |185757.9+430805 |M | 13. | 17.5 | |p |39034. | | 316. | | |09340 03910| +520358 |V0358 Lyr |185933.0+422412 |N: | 16. |< 20. | |p |38977. | | | | |09377 03905| +520359 |V0359 Lyr |190218.4+310046 |EA/SD | 14.5 | 15.5 | |p |16265.500 | | 7.24077 |05 *| |03160 03160| +520360 |V0360 Lyr |190158.5+462646 |RR | 15.5 | 16.5 | |p |38636.35 | | 2.04 /N| | |03910 03910| +520361 |V0361 Lyr *|190228.1+465858 |E | 14.3 | 15.7 | 15.3 |B |44523.307 | | 0.309616 | | |09377 03910| +520362 |V0362 Lyr |190510.5+440542 |RRAB | 14.8 | 16.2 | |p |44461.355 | | 0.5211227 |07 | |09377 03910| +520363 |V0363 Lyr |190851.6+430032 |UG | 15.7 | 18.6 | |p | | |( 13. ) | | |09377 03905| +520364 |V0364 Lyr |190940.0+300551 |EA/SD | 14.9 | 17.1 | |p |42626.455 | | 3.705837 |04 *| |09149 05166| +520365 |V0365 Lyr |190903.3+451727 |RR | 15.5 | 16.5 | |p |38673.28 | | | | |03905 03905| +520366 |V0366 Lyr |190940.6+461718 |RR | 15.5 | 16.5 | |p |38636.35 | | | | |03910 03910| +520367 |V0367 Lyr |191109.3+422607 |RR | 15. | 16. | |p |38650.44 | | 0.93 /N| | |03905 03905| +520368 |V0368 Lyr |191053.4+432455 |RR | 16. | 17. | |p |38636.35 | | | | |03910 03910| +520369 |V0369 Lyr |191155.4+321208 |NA | 15.2 |< 20. | |p |37160. | | | | |09149 05166| +520370 |V0370 Lyr |191327.3+421453 |E | 14. | 15. | |p |38638.39 | | 6.988 /N| | |03910 03910| +520371 |V0371 Lyr |191659.0+265803 |E | 13.4 | 14.2 | |p |35044.275 | | 3.0 /N| | |03662 03662| +520372 |V0372 Lyr |191612.4+415420 |RR | 16. | 17. | |p |38640.42 | | | | |03910 03910| +520373 |V0373 Lyr |191712.2+314441 |EA/SD | 15.5 | 17.1 | |p |43036.290 | | 1.3575237 |09 *| |09149 05166| +520374 |V0374 Lyr *|191915.0+331446 |M | 15.5 |< 21. | |p |33490. | | 425. : | | |03677 03677| +520375 |V0375 Lyr |191953.2+341048 |LB | 14.6 | 15.8 | |p | | | | | |03677 03677| +520376 |V0376 Lyr |192025.4+313930 |EA | 14.3 | 14.8 | |p |39029.42 | | 0.766771 |10 *| |05166 05166| +520377 |V0377 Lyr |192051.1+333240 |LB | 13.0 | 14.0 | |p | | | | | |03662 03662| +520378 |V0378 Lyr |192152.5+312131 |LB | 13.4 | 14.6 | |p | | | | |C5,4: |03662 03662| +520379 |V0379 Lyr |192228.5+311823 |I | 12.5 | 13.4 | |p | | | | | |03662 03662| +520380 |V0380 Lyr *|192401.9+305645 |M | 15.4 |< 19. | |p |34235. | | 308. : | | |03677 03677| +520381 |V0381 Lyr |192438.7+313526 |LB | 15.3 | 16.9 | |p | | | | | |03677 03677| +520382 |V0382 Lyr |192453.2+310211 |EA/SD | 16.3 |< 17.3 | |p |34752.945 | | 2.8608674 |10 | |03677 03677| +520383 |V0383 Lyr |192503.0+302534 |RRAB | 16.2 | 17.3 : | |p |42684.300 | | 0.6052233 |30 : | |09149 05166| +520384 |V0384 Lyr |192532.3+311415 |M | 16.1 |< 20. | |p |34890. | | 316. | | |03677 03677| +520385 |V0385 Lyr *|192537.1+331737 |M | 16.1 |< 20. | |p |33545. | | 252. | | |03677 03677| +520386 |V0386 Lyr |181604.4+402005 |RR: | 16.5 |< 17.5 | |p | | | | | |04184 05443| +520387 |V0387 Lyr |181704.3+374819 |RRAB | 15.5 | 17.4 | |p |30262.349 | | 0.4651147 |33 | |04184 05443| +520388 |V0388 Lyr *|181910.2+370803 |RRAB | 15.7 | 16.8 | |p |39918.55 | | 0.587076 |16 | |04184 05443| +520389 |V0389 Lyr *|181934.6+334758 |RRAB | 15.7 |< 17.1 | |p |39942.486 | | 0.5608 |15 | |04184 05443| +520390 |V0390 Lyr *|182011.7+341842 |RRAB: | 16.1 |< 16.9 | |p |39945.65 | | 0.6038 : | | |04184 05443| +520391 |V0391 Lyr |182112.0+384744 |UGZ | 14.0 | 17.0 | |p | | |( 100. :) | | |04184 05443| +520392 |V0392 Lyr |182535.7+330529 |RRAB | 16.6 |< 17.6 | |p |31346.351 | | 0.560148 : | | |04184 03910| +520393 |V0393 Lyr |182625.6+343043 |RR: | 16.5 |< 17.5 | |p |39975.552 | | | | |04184 05443| +520394 |V0394 Lyr |182847.2+354930 |UG: | 16.0 |< 17.0 | |p | | | | | |04184 05443| +520395 |V0395 Lyr |183818.8+394437 |RR: | 15.5 |< 16.5 | |p |39968.479 | | | | |04184 05443| +520396 |V0396 Lyr |185950.6+452140 |M: | 14.2 | 18.0 | |p | | | | | |03910 06358| +520397 |V0397 Lyr |190711.0+305704 |RRAB | 15.4 | 16.6 | |p |43345.446 | | 0.4587644 |24 | |09149 05166| +520398 |V0398 Lyr |190813.2+390918 |LB | 7.30 : | 7.57 | |V | | | | |M6 |05445 BD | +520399 |V0399 Lyr |192229.5+345612 |M | 13.8 |< 17.6 | |p |34295. | | 230. | | |05542 05542| +520400 |V0400 Lyr |191352.7+380656 |RRAB: | 13.5 | 14.0 | |p |37823.501 | | 0.3201645 |07 | |05540 05540| +520401 |V0401 Lyr *|191415.7+382658 |E | 13.6 | 15.6 | 14.4 : |p |38204.475 | | 0.839361 : | | |05540 05540| +520402 |V0402 Lyr |191710.2+320324 |M | 14.6 |< 18.2 | |p |33800. | | 510. | | |05542 05542| +520403 |V0403 Lyr *|191747.9+294803 |EA/SD: | 14.7 | 15.4 | |p |34640.209 | | 1.8771881 |14 *| |05540 05540| +520404 |V0404 Lyr *|191906.0+382201 |EB/SD: | 12.2 | 13.0 | 12.4 |p |35836.462 | | 0.73094585 | | |05540 05540| +520405 |V0405 Lyr |192124.4+340120 |M | 14.2 | 20. | |p |39972. | | 278. | | |05898 05540| +520406 |V0406 Lyr *|183216.3+415046 |EW/KE | 12.5 | 13.0 | 13.0 |p |38525.500 | | 1.51130 | | |05957 00538| +520407 |V0407 Lyr |185328.1+355725 |CEP: | 13.7 | 15.2 | |p |38642.344 | | | | |06087 05892| +520408 |V0408 Lyr |185902.3+272820 |RRC | 15.1 | 15.7 | |p |39379.268 | | 0.331818 |25 | |05898 05898| +520409 |V0409 Lyr *|190055.9+262019 |RRAB | 14.7 | 16.8 | |p |39034.320 | | 0.4594566 |18 | |05876 05876| +520410 |V0410 Lyr |190135.3+290007 |RRAB | 14.4 | 16.0 | |p |39379.237 | | 0.444993 |15 | |05876 05876| +520411 |V0411 Lyr *|190627.6+344021 |EW:/KE: | 13.5 | 14.5 | 14.4 |p |39972.501 | | 0.5826311 | | |05898 05898| +520412 |V0412 Lyr *|190648.5+291640 |EA/KE | 13.7 | 14.7 | 14.1 |p |38260.393 | | 0.931469 |16 | |05876 05876| +520413 |V0413 Lyr *|190716.4+301926 |EA/SD | 14.5 | 17.1 | 14.8? |p |39376.365 | | 3.146774 |15 : | |05898 05898| +520414 |V0414 Lyr |190755.8+262017 |SR: | 15.2 |< 17. | |p | | | 330. : | | |05898 05898| +520415 |V0415 Lyr *|190803.9+312355 |UG | 14.8 |< 17.0 | |p | | | | | |05898 05898| +520416 |V0416 Lyr |190826.4+292155 |L | 14.7 | 16.2 | |p | | | | | |05898 05898| +520417 |V0417 Lyr *|190839.1+304309 |EW/KW | 14.9 | 16.2 | 16.2 |p |39376.33 | | 0.300660 | | |05898 05898| +520418 |V0418 Lyr *|190833.5+331835 |RRAB | 14.5 | 15.9 | |p |40004.354 | | 0.623845 |12 | |05898 05898| +520419 |V0419 Lyr |191014.0+290615 |UGZ | 14.4 |< 17.5 | |p | | |( 11. ) | | |05876 05876| +520420 |V0420 Lyr |191017.1+283008 |RRAB | 15.7 | 17.5 : | |p |38998.440 | | 0.592697 |15 | |05876 05876| +520421 |V0421 Lyr |191039.1+263029 |RRAB | 14.5 | 16.6 | |p |39404.250 | | 0.427578 |22 | |05876 05876| +520422 |V0422 Lyr |191125.4+271519 |L | 13.8 | 14.9 | |p | | | | | |05898 05898| +520423 |V0423 Lyr *|191155.4+331307 |EW/KW | 15.0 | 15.5 | 15.5 |p |39404.240 | | 0.416546 | | |05876 05876| +520424 |V0424 Lyr *|191252.0+261555 |RRAB | 14.5 | 16.2 | |p |38914.400 | | 0.5796816 |20 | |05876 05876| +520425 |V0425 Lyr |191254.2+331302 |RRAB | 15.2 | 16.8 | |p |39406.212 | | 0.5316436 |15 | |05898 05898| +520426 |V0426 Lyr |191317.4+265950 |EA | 14.3 | 15.1 | |p |37885.416 | | | | |05876 05876| +520427 |V0427 Lyr |191341.7+280211 |RRAB | 15.3 | 17.3 | |p |38887.529 | | 0.424602 |12 | |05876 05876| +520428 |V0428 Lyr *|191332.8+333651 |EA/DM | 13.4 | 14.3 | 14.3 |p |39343.292 | | 3.766035 |07 | |05898 05898| +520429 |V0429 Lyr *|191337.6+342910 |EA/SD | 14.5 | 16.3 | 14.8? |p |39330.455 | | 1.067594 |18 | |05898 05898| +520430 |V0430 Lyr |191414.8+261901 |M | 14.6 |< 17.5 | |p |39260. | | 149.5 | | |05898 05898| +520431 |V0431 Lyr *|191400.4+333538 |EW/KW | 14.3 | 15.1 | 15.1 |p |39998.468 | | 0.446367 | | |05898 05898| +520432 |V0432 Lyr |191650.3+291053 |E | 12.9 | 13.5 | |p |38260.393 | | | | |05898 05898| +520433 |V0433 Lyr |191653.5+304956 |M | 14.8 |< 17.0 | |p |39035. | | 355.5 | | |05898 05898| +520434 |V0434 Lyr |191653.7+323613 |M | 14.8 |< 17.0 | |p |39328. | | 262.7 | | |05898 05898| +520435 |V0435 Lyr *|191744.4+282948 |DSCT: | 14.6 | 15.2 | |p |33783.600 | | 0.146004 : | | |05874 05874| +520436 |V0436 Lyr |191812.5+321126 |L | 15.0 |< 16.0 | |p | | | | | |05898 05898| +520437 |V0437 Lyr |191952.2+322958 |EA/SD | 15.0 |< 16.5 | |p |38281.244 | | 2.730505 |12 | |05898 05898| +520438 |V0438 Lyr |192114.5+315752 |L | 15.0 | 16.2 | |p | | | | | |05898 05898| +520439 |V0439 Lyr |192159.8+324615 |L | 14.8 | 16.2 | |p | | | | | |05898 05898| +520440 |V0440 Lyr |192159.5+343130 |L | 15.6 | 16.8 | |p | | | | | |05898 05898| +520441 |V0441 Lyr |192342.4+320756 |RRAB | 15.0 | 15.8 | |p |39031.354 | | 0.715070 |20 | |05898 05898| +520442 |V0442 Lyr |192609.3+312514 |SRB | 14.8 | 16.6 | |p | | | | | |05875 05875| +520443 |V0443 Lyr |182931.4+335841 |RV: | 14.0 | 15.3 | |p | | | | |F0 |08656 03910| +520444 |V0444 Lyr |185515.1+424344 |CEP | 16.0 | 17.1 | |p | | | | | |06358 06358| +520445 |V0445 Lyr |185825.6+413549 |RR | 15.3 | 17.3 | |p | | | | | |06358 06358| +520446 |V0446 Lyr |185912.9+424434 |CEP | 16.2 | 18.0 | |p | | | | | |06358 06358| +520447 |V0447 Lyr |190020.0+442745 |UG: | 17.2 |< 18.5 | |p | | | | | |06358 06358| +520448 |V0448 Lyr |190504.3+412654 |SR | 16.0 | 17.4 | |p | | | | | |06358 06358| +520449 |V0449 Lyr |190737.1+440020 |E | 12.5 | 16.0 | |p | | | | | |06358 06358| +520450 |V0450 Lyr |190936.7+432150 |RRAB | 14.3 | 16.7 | |p |38370.285 | | 0.5046104 |15 | |07261 06358| +520451 |V0451 Lyr |191015.6+452536 |RR | 16.6 | 18.4 | |p | | | | | |06358 06358| +520452 |V0452 Lyr |191026.3+432855 |UG: | 17.6 |< 18.5 | |p | | | | | |06358 06358| +520453 |V0453 Lyr |191547.5+413058 |SR | 15.8 |< 18.5 | |p | | | | | |06358 06358| +520454 |V0454 Lyr |191610.5+415520 |CEP | 17.1 | 18.1 | |p | | | | | |06358 06358| +520455 |V0455 Lyr |191644.4+432645 |M: | 17.6 |< 18.5 | |p | | | | | |06358 06358| +520456 |V0456 Lyr |192602.4+315308 |SRA | 14.8 | 17.2 | |p |42958. | | 267.8 |47 | |09149 06854| +520457 |V0457 Lyr |185649.6+313228 |M | 15. |< 17. | |p |38954. | | 307.5 | | |00504 00524| +520458 |V0458 Lyr |191928.4+271510 |M: | 15.5 |< 16.5 | |p |38943. | | 315.2 | | |00504 00532| +520459 |V0459 Lyr |184713.7+361421 |LB | 11.4 | 12.6 | |p | | | | |M |08069 00319| +520460 |V0460 Lyr |190540.9+293803 |L: | 14.5 | 16. | |p |41450. | | | | |00504 00524| +520461 |V0461 Lyr |192755.3+413335 |EA/SD: | 14.0 | 15. | |p |42309.622 | | 3.72315 | | |07748 07748| +520462 |V0462 Lyr *|182836.9+380322 |RRC | 12.6 | 13.2 | |p |39940.554 | | 0.372512 |24 | |04184 03905| +520463 |V0463 Lyr |183117.4+361424 |RRAB | 14.8 | 16.4 | |p |29752.356 | | 0.595761 |23 | |04184 03910| +520464 |V0464 Lyr |183507.9+313231 |LB | 14.5 | 15.7 | |p | | | | | |04184 03910| +520465 |V0465 Lyr |184014.0+354926 |RR | 13.5 | 13.9 | |p |39051.277 | | 0.99585 : | | |04184 03903| +520466 |V0466 Lyr |181846.9+320406 |E:/SD: | 13.2 | 14.6 | |p |39945.526 | | | | |04184 03903| +520467 |V0467 Lyr *|183446.5+324128 |EW:/KE: | 12.4 | 12.9 | 12.9 |p |43192.556 | | 0.5457931 | | |08214 08214| +520468 |V0468 Lyr |183538.0+360516 |LB | 15.4 |< 16.8 | |p | | | | | |04184 03910| +520469 |V0469 Lyr |184053.3+363848 |RR | 13.9 | 15.1 | |p |39994.386 | | | | |04184 03905| +520470 |V0470 Lyr *|185730.0+335709 |ZZA | 14.64 |( 0.06 )| |V | | | | |DAN |08487 04069| +520471 |V0471 Lyr |191146.0+311700 |ACV | 5.91 | 5.98 | |V |41449.99 | | 1.160898 | |B9p(Si) |09308 BD | +520472 |V0472 Lyr |191553.8+264529 |M | 13.9 | 16.6 | |p |37840. | | 256.4 |20 | |08490 08490| +520473 |V0473 Lyr *|191559.5+275535 |DCEPS: | 5.99 | 6.35 | |V |39320.6859 | | 1.49078 |50 |F6Ib-II |04071 BD | +520474 |V0474 Lyr *|191604.2+264439 |SRB | 15.1 | 15.8 | |p | | | 53.60 | | |08491 08491| +520475 |V0475 Lyr |191752.0+262612 |L | 14.4 | 17.1 | |p | | | | | |08491 08491| +520476 |V0476 Lyr |191949.8+404708 |LB | 10.5 | 11.7 | |p | | | | | |08493 08493| +520477 |V0477 Lyr *|183118.5+265612 |EA/PN | 14.3 | 16.0 |( 0.1 : B)|p |44350.8214 | | 0.4717294 |07 *| |04074 04074| +520478 |V0478 Lyr |190732.4+301516 |RS | 7.63 |( 0.033 )| |V |44506.76 | | 2.185 | |G6V |08770 BD | +520479 |V0479 Lyr |183714.7+424929 |LB | 15.4 | 16.5 | |p | | | | | |67417 67416| +520480 |V0480 Lyr |184023.4+435621 |EB: | 13.0 | 15.3 | |p | | | | | |67417 67416| +520481 |V0481 Lyr |184746.4+434343 |E | 12.8 | 14.3 | |p | | | | | |67420 67420| +520482 |V0482 Lyr |190733.9+431638 |E: | 13.8 | 14.7 | |p | | | | | |67417 67416| +520483 |V0483 Lyr |191602.7+301226 |RRAB | 16.8 | 18.3 : | |B | | | | | |68350 68156| +520484 |V0484 Lyr |191603.7+301541 |SXPHE: | 15.6 | 16.7 | |B | | | | | |68350 68156| +520485 |V0485 Lyr |191628.7+300525 |LB | 16.0 | 16.9 | |B | | | | | |68350 68157| +520486 |V0486 Lyr |191650.1+301959 |LB | 15.7 | 16.5 | |B | | | | | |68350 68157| +520487 |V0487 Lyr |191658.8+300731 |LB | 15.7 | 16.7 | |B | | | | | |68350 68157| +520488 |V0488 Lyr |190541.9+302332 |SRA: | 15.4 | 18.0 | |p | | | | | |69191 69191| +520489 |V0489 Lyr | | | | | | | | | | | | |=BI Lyr +520490 |V0490 Lyr |191759.3+284243 |SRB: | 14.2 | 17.7 | |p | | | | | |71182 71182| +520491 |V0491 Lyr |183959.5+401953 |SRB | 9.2 | 10.5 | |B | | | | | |72075 BD | +520492 |V0492 Lyr |184322.1+404022 |UG | 18.23 |( 0.22 )| |V | | | | | |72110 USNO | +520493 |V0493 Lyr |190131.5+425453 |UG | 13.2 |< 17.2 | |p | | | | | |72111 72111| +520494 |V0494 Lyr |190312.8+335812 |M | 11.2 |< 15.0 | |V | | | | | |72071 72071| +520495 |V0495 Lyr |190717.2+314255 |SR | 12.6 | 14.4 | |V | | | | | |72071 72071| +520496 |V0496 Lyr |190727.1+354636 |IB | 12.0 | 13.0 | |V | | | | | |72071 72071| +520497 |V0497 Lyr |190749.1+362309 |IB | 11.9 | 13.5 | |V | | | | | |72071 72071| +520498 |V0498 Lyr |190902.9+325322 |SR | 11.3 | 12.3 | |V | | | | | |72071 72071| +520499 |V0499 Lyr |191248.8+301939 |SRD: | 16.4 | 17.1 | |B | | | | | |72112 72112| +520500 |V0500 Lyr |191319.6+265904 |M | 13.8 |< 15.3 | |V | | | | | |72071 72071| +520501 |V0501 Lyr |191437.5+370117 |M | 11.5 | 14.8 | |V | | | | | |72071 72071| +520502 |V0502 Lyr |191746.4+342601 |M | 12.0 | 14.8 | |V | | | | | |72071 72071| +520503 |V0503 Lyr |192422.6+321908 |SRB | 11.7 |< 15.2 | |V | | | | | |72071 72071| +520504 |V0504 Lyr |192602.0+350309 |M | 11.6 |< 15.2 | |V | | | | | |72071 72071| +520505 |V0505 Lyr |183635.9+280401 |RRAB | 15.80 | 17.05 | |V | | | | | |73003 USNO | +520506 |V0506 Lyr |183948.0+280500 |RRAB | 16.29 | 17.07 | |V | | | | | |73003 USNO | +520507 |V0507 Lyr |184048.5+280138 |EW | 14.21 | 14.75 | |V | | | | | |73003 GSC | +520508 |V0508 Lyr |184344.9+280203 |EW: | 16.20 | 16.61 | |V | | | | | |73003 USNO | +520509 |V0509 Lyr |184450.3+280026 |EW: | 16.89 | 17.37 | |V | | | | | |73003 USNO | +520510 |V0510 Lyr |184816.7+280539 |RRAB | 16.84 | 17.53 | |V | | | | | |73003 USNO | +520511 |V0511 Lyr |190621.3+274248 |RS | 8.92 |( 0.08 )| |V | | | | | |73005 BD | +520512 |V0512 Lyr |190622.8+454155 |EA | 13.2 | 13.9 | |p | | | | | |73190 73190| +520513 |V0513 Lyr |192025.0+374919 |EW | 17.68 | 18.00 | |V | | | | | |73191 73191| +520514 |V0514 Lyr |192031.0+375157 |EW | 17.64 | 17.79 | |V | | | | | |73191 73191| +520515 |V0515 Lyr |192033.4+374816 |EA | 19.45 | 20.02 | |V | | | | | |73191 73191| +520516 |V0516 Lyr |192035.7+374452 |UG | 18.9 | 22.2 | |V | | | | | |73192 73193| +520517 |V0517 Lyr |192043.0+375056 |EA | 17.50 | 17.80 | |V | | | | | |73191 73191| +520518 |V0518 Lyr |192046.6+374848 |EW: | 17.18 | 17.29 | |V | | | | | |73192 73191| +520519 |V0519 Lyr |192047.6+374431 |EW | 16.20 | 16.62 | |V | | | | | |73192 73191| +520520 |V0520 Lyr |192047.9+374638 |EA/RS: | 17.24 | 17.50 | |V | | | | | |73192 73191| +520521 |V0521 Lyr |192054.3+374823 |EW | 17.77 | 17.94 | |V | | | | | |73192 73191| +520522 |V0522 Lyr |192102.7+374849 |EW | 15.44 | 15.60 | |V | | | | | |73191 73191| +520523 |V0523 Lyr |192107.4+374757 |NL | 17.64 | 18.33 | |V | | | | | |73191 73191| +520524 |V0524 Lyr |192111.3+374804 |EA | 19.55 | 19.98 | |V | | | | | |73191 73191| +520525 |V0525 Lyr |192115.8+374610 |EW | 18.61 | 18.71 | |V | | | | | |73191 73191| +520526 |V0526 Lyr |192117.6+374600 |EW | 19.66 | 19.93 | |V | | | | | |73191 73191| +520527 |V0527 Lyr |181739.4+345506 |LB: | 9.26 | 9.60 | |Hp| | | | | |HIP HIP | +520528 |V0528 Lyr |182400.0+435428 |SRB | 6.61 | 6.77 | |Hp| | | | | |HIP HIP | +520529 |V0529 Lyr |182523.1+382627 |ACV | 7.32 | 7.35 | |Hp| | | | | |HIP HIP | +520530 |V0530 Lyr |183034.6+361457 |LB: | 7.40 | 7.51 | |Hp| | | | | |HIP HIP | +520531 |V0531 Lyr *|183217.1+362534 |E: | 8.27 | 8.63 | |Hp| | | | | |HIP HIP | +520532 |V0532 Lyr |183323.0+305332 |BE | 6.44 | 6.54 | |Hp| | | | | |HIP HIP | +520533 |V0533 Lyr |183645.5+431319 |EB | 6.26 | 6.38 | |Hp| | | | | |HIP HIP | +520534 |V0534 Lyr |183758.8+372606 |ACYG: | 8.08 | 8.42 | |Hp| | | | | |HIP HIP | +520535 |V0535 Lyr |184140.2+340556 |LPB | 7.36 | 7.40 | |Hp| | | | | |HIP HIP | +520536 |V0536 Lyr |184301.1+294828 |LB | 7.97 | 8.27 | |Hp| | | | | |HIP HIP | +520537 |V0537 Lyr |184541.5+412420 |LB: | 7.89 | 8.02 | |Hp| | | | | |HIP HIP | +520538 |V0538 Lyr |184907.9+473057 |LB | 7.11 | 7.45 | |Hp| | | | | |HIP HIP | +520539 |V0539 Lyr |185126.8+391914 |EA | 7.26 | 7.31 | |Hp| | | | | |HIP HIP | +520540 |V0540 Lyr |185112.0+464418 |LB | 7.77 | 7.94 | |Hp| | | | | |HIP HIP | +520541 |V0541 Lyr |185318.5+405943 |LB | 6.44 | 6.66 | |Hp| | | | | |HIP HIP | +520542 |V0542 Lyr |185801.9+381558 |EA | 5.83 | 5.95 | |Hp| | | | | |HIP HIP | +520543 |V0543 Lyr |185846.6+404045 |BCEP: | 6.10 | 6.20 | |Hp| | | | | |HIP HIP | +520544 |V0544 Lyr |185914.8+314054 |DSCTC | 7.51 | 7.54 | |Hp| | | | | |HIP HIP | +520545 |V0545 Lyr |185912.3+391302 |LPB: | 6.36 | 6.38 | |Hp| | | | | |HIP HIP | +520546 |V0546 Lyr |185921.4+413813 |LB: | 7.78 | 7.88 | |Hp| | | | | |HIP HIP | +520547 |V0547 Lyr |190019.1+404102 |LB | 6.48 | 6.58 | |Hp| | | | | |HIP HIP | +520548 |V0548 Lyr |190057.8+462924 |SRB | 8.49 | 8.75 | |Hp| | | | | |HIP HIP | +520549 |V0549 Lyr |190402.1+330216 |DSCTC: | 8.11 | 8.14 | |Hp| | | | | |HIP HIP | +520550 |V0550 Lyr *|190617.0+412450 |LPB | 6.43 | 6.47 | |Hp| | | | | |HIP HIP | +520551 |V0551 Lyr |190719.2+410315 |ELL: | 7.11 | 7.17 | |Hp| | | | | |HIP HIP | +520552 |V0552 Lyr |191217.4+411416 |LB | 7.05 | 7.18 | |Hp| | | | | |HIP HIP | +520553 |V0553 Lyr |191339.7+271822 |LB | 9.51 | 10.19 | |Hp| | | | | |HIP HIP | +520554 |V0554 Lyr |191517.3+400649 |ACV: | 8.06 | 8.14 | |Hp| | | | | |HIP HIP | +520555 |V0555 Lyr |191812.1+340810 |LB | 8.45 | 8.59 | |Hp| | | | | |HIP HIP | +520556 |V0556 Lyr |192508.3+355958 |EB | 8.09 | 8.30 | |Hp| | | | | |HIP HIP | +520557 |V0557 Lyr |192558.3+361111 |SRD | 7.22 | 7.46 | |Hp| | | | | |HIP HIP | +520558 |V0558 Lyr |192736.4+375628 |BE | 6.22 | 6.30 | |Hp| | | | | |HIP HIP | +520559 |V0559 Lyr |182823.0+312134 |E | 11.3 | 13.1 | |p | | | | | |75002 GSC | +520560 |V0560 Lyr |182933.6+265613 |M | 12.0 |< 15.2 | |p | | | | | |75168 USNO | +520561 |V0561 Lyr |191358.9+332859 |RR: | 14.89 | 14.99 | |V | | | | | |75119 75119| +520562 |V0562 Lyr |183113.9+465835 |ZAND: | 11.8 | 16.8 | |p | | | | | |76181 GSC | +520563 |V0563 Lyr |184506.6+401112 |EW | 10.96 | 11.47 | |V | | | | | |76188 DM | +520564 |V0564 Lyr |192039.9+374355 |FKCOM: | 16.27 | 16.38 | |V | | | | | |76206 76206| +520565 |V0565 Lyr |192049.4+374609 |EA | 17.73 | 18.20 | |V | | | | | |76207 76207| +520566 |V0566 Lyr |192052.3+374551 |BY: | 15.43 | 15.52 | |V | | | | | |76207 76207| +520567 |V0567 Lyr |192054.2+374535 |EA | 17.38 | 17.67 | |V | | | | | |76207 76207| +520568 |V0568 Lyr |192057.4+374537 |EA | 17.54 | 17.65 | |V | | | | | |76207 76207| +520569 |V0569 Lyr |181521.9+390546 |EA | 11.9 | 12.3 | |V | | | | | |77100 GSC | +520570 |V0570 Lyr |181724.6+423616 |M | 11.1 | 15.8 | |V | | | | | |77143 77144| +520571 |V0571 Lyr |182102.0+443843 |EA | 11.7 | 12.3 | |V | | | | | |77100 GSC | +520572 |V0572 Lyr |182138.3+421008 |EA | 10.6 | 11.0 | |V | | | | | |77100 DM | +520573 |V0573 Lyr |182301.3+400835 |EW | 10.8 | 11.3 | |V | | | | | |77100 DM | +520574 |V0574 Lyr |182712.2+361437 |EW | 12.01 | 12.68 | |* | | | | | |77155 GSC | +520575 |V0575 Lyr |182943.2+280955 |DSCT | 12.7 |( 0.30 )| |V | | | | | |77157 UCAC2| +520576 |V0576 Lyr |183907.8+415654 |EB | 12.3 | 12.7 | |V | | | | | |77100 GSC | +520577 |V0577 Lyr |184241.4+452903 |EW | 14.5 | 15. | |P | | | | | |77104 77223| +520578 |V0578 Lyr |184943.4+405749 |LB | 12.2 | 14.2 | |V | | | | | |77143 77144| +520579 |V0579 Lyr |185052.3+434012 |EW | 12.77 | 13.25 | |* | | | | | |77160 GSC | +520580 |V0580 Lyr |185110.4+353557 |EW | 12.79 | 13.36 | |* | | | | | |77160 UCAC2| +520581 |V0581 Lyr |185343.5+372335 |EW | 12.7 | 13.0 : | |V | | | | | |77100 UCAC2| +520582 |V0582 Lyr |185538.2+405857 |EW | 13.44 | 14.61 | |V | | | | | |77161 GSC | +520583 |V0583 Lyr |190533.8+392004 |EA | 12.8 | 13.8 | |B | | | | | |77225 77144| +520584 |V0584 Lyr |191059.4+285639 |UG: | 15.68 |< 18.5 | |V | | | | | |77169 77169| +520585 |V0585 Lyr |191358.4+404409 |UGSU: | 14.9 | 17. : | |B | | | | | |77170 77170| +520586 |V0586 Lyr |191520.6+395850 |M | 11.0 |< 16.0 | |V | | | | | |77143 77144| +520587 |V0587 Lyr |191726.5+371041 |UG | 14.3 |< 17.1 | |B | | | | | |77170 77170| +520588 |V0588 Lyr |191955.0+405240 |SRA | 12.5 | 14.0 | |V | | | | | |77143 77144| +520589 |V0589 Lyr |192531.8+425113 |EW | 11.6 | 12.0 | |V | | | | | |77100 GSC | +520590 |V0590 Lyr |181908.8+331353 |BY | 8.28 |( 0.02 )| |V | | | 4.825 | |K0V |78018 DM | +520591 |V0591 Lyr *|182436.8+381734 |EW | 13.28 | 13.97 | 13.85 |* |52121.3763 | | 0.300395 | | |78264 GSC | +520592 |V0592 Lyr *|183053.7+340810 |EW | 12.41 | 12.92 | 12.82 |* |52135.5275 | | 0.355682 | | |78264 GSC | +520593 |V0593 Lyr |183206.4+403557 |DSCT | 11.75 |( 0.62 )| |V |52422.310 | | 0.102141 |31 | |78264 GSC | +520594 |V0594 Lyr |184521.8+455329 |EW: | 14. |( 0.33 )| |V |52583.979 | | 0.256002 | | |78161 GSC | +520595 |V0595 Lyr |184634.6+382103 |BY | 8.10 |( 0.02 )| |V | | | 10.973 | |G5V |78018 DM | +520596 |V0596 Lyr |184655.1+450052 |EW | 12.09 | 12.75 | |* |52146.5105 | | 0.299632 | | |78264 GSC | +520597 |V0597 Lyr |191159.7+421846 |DSCT | 11.0 |( 0.11 )| |V | | | 0.1479 | | |78263 GSC | +520598 |V0598 Lyr |192038.9+374905 |BY | 17.28 | 17.35 | |R | | | 6.1752 | | |78265 78266| +520599 |V0599 Lyr |192039.1+374726 |EP: | 17.51 |( 0.02 )| |V |52101.54 | | | | |78267 USNO | +520600 |V0600 Lyr |192039.3+374540 |EP: | 18.00 |( 0.02 )| |V |52106.60 | | | | |78267 USNO | +520601 |V0601 Lyr |192039.7+374736 |BY: | 19.06 |( 0.08 )| |V | | | 7.58886 | | |78267 | +520602 |V0602 Lyr |192042.5+374437 |BY: | 17.54 |( 0.02 )| |V | | | 15.57 : | | |78267 2MASS| +520603 |V0603 Lyr |192043.0+374733 |BY: | 19.16 |( 0.08 )| |V | | | 9.477 | | |78267 | +520604 |V0604 Lyr *|192045.3+374549 |BY: | 17.02 |( 0.05 )| |V | | | 9.307 | | |78267 USNO | +520605 |V0605 Lyr |192046.4+374414 |BY: | 19.45 |( 0.08 )| |V | | | 7.014 | | |78267 | +520606 |V0606 Lyr |192047.7+374458 |ELL: | 19.74 |( 0.09 )| |V | | | 1.6333 | | |78267 | +520607 |V0607 Lyr |192049.2+374914 |SRS: | 16.49 |( 0.08 )| |V | | | 9.563 | | |78267 USNO | +520608 |V0608 Lyr *|192049.7+374808 |ELL: | 16.87 |( 0.02 )| |V | | | 7.58 | | |78267 USNO | +520609 |V0609 Lyr *|192049.9+374551 |EB: | 18.27 |( 0.03 )| |V | | | 8.200 | | |78267 2MASS| +520610 |V0610 Lyr |192050.1+374832 |BY: | 19.44 |( 0.02 )| |V | | | 7.39 | | |78267 | +520611 |V0611 Lyr |192051.0+374825 |BY | 18.38 | 18.48 | |R | | | 0.4816 | | |78265 2MASS| +520612 |V0612 Lyr |192051.7+374525 |ELL | 18.08 | 18.15 | |R | | | 11.2962 | | |78265 78266| +520613 |V0613 Lyr |192052.5+374730 |ELL: | 15.66 | 15.68 | |R | | | 8.613 | | |78267 USNO | +520614 |V0614 Lyr |192052.8+374459 |BY: | 18.12 |( 0.06 )| |V | | | 6.971 | | |78267 2MASS| +520615 |V0615 Lyr |192052.9+374637 |ELL: | 16.67 |( 0.02 )| |V | | | 6.91 | | |78267 2MASS| +520616 |V0616 Lyr |192053.0+374652 |SRS: | 14.84 |( 0.04 )| |V | | | 20.9 : | | |78267 2MASS| +520617 |V0617 Lyr |192055.2+374640 |EA | 18.60 |( 0.15 )| |V | | | 9.0038 : |20 : | |78267 2MASS| +520618 |V0618 Lyr |192055.4+374723 |E: | 16.18 |( 0.02 )| |Ic|52106.63 | | | | |78267 2MASS| +520619 |V0619 Lyr |192056.5+374539 |ELL: | 17.87 |( 0.03 )| |V | | | 8.99 : | | |78267 2MASS| +520620 |V0620 Lyr |192056.6+374636 |E: | 18.89 |( 0.10 )| |V | | | 5.7617 | | |78267 | +520621 |V0621 Lyr |192057.1+374812 |SRS: | 17.54 |( 0.01 )| |V | | | 10. : | | |78267 2MASS| +520622 |V0622 Lyr |192058.9+374447 |BY: | 18.11 |( 0.02 )| |V | | | 5.71 | | |78267 2MASS| +520623 |V0623 Lyr |192100.5+374841 |BY: | 18.07 |( 0.02 )| |V | | | 5.13 | | |78267 | +520624 |V0624 Lyr |192100.7+374545 |EA | 18.10 | 18.44 | |R | | | 7.510 |17 | |78265 | +520625 |V0625 Lyr |192100.8+374435 |BY | 18.25 | 18.32 | |R | | | 7.4704 | | |78265 USNO | +520626 |V0626 Lyr |192101.8+374542 |ELL: | 17.13 |( 0.04 )| |V | | | 12.5215 | | |78267 2MASS| +520627 |V0627 Lyr *|192102.5+374709 |ELL | 16.60 | 16.62 | |R | | | 1.5362 | | |78265 2MASS| +520628 |V0628 Lyr |192102.7+374601 |BY: | 18.30 |( 0.02 )| |V | | | 7.24 | | |78267 | +520629 |V0629 Lyr |192103.1+374352 |BY: | 18.69 | 18.78 | |R | | | 17. : | | |78267 USNO | +520630 |V0630 Lyr |192103.6+374804 |SRS: | 16.17 |< 16.26 | |R | | | 10. : | | |78267 USNO | +520631 |V0631 Lyr |192103.7+374606 |E: | 18.28 |< 18.38 | |R | | | 3.8856 | | |78265 | +520632 |V0632 Lyr |192105.2+374709 |ELL: | 18.12 |( 0.01 )| |V | | | 0.94928 | | |78267 | +520633 |V0633 Lyr |192106.5+374728 |E: | 17.89 |( 0.04 )| |V | | | 4.447 | | |78267 2MASS| +520634 |V0634 Lyr *|192107.6+374810 |ELL | 17.26 | 17.34 | |R | | | 4.5010 | | |78265 78266| +520635 |V0635 Lyr |181511.1+322927 |EA/SD | 14.4 | 16.6 | |p |26217.45 | | 3.221214 |13 *| |00569 02365| +520636 |V0636 Lyr |184752.8+384218 |LB | 11.7 | 12.4 | |* | | | | | |79100 GSC | +520637 |V0637 Lyr |181414.3+461411 |RS | 12.0 | 12.2 | |* | | | 1.59309 | | |80060 80060| NL80_3 +520638 |V0638 Lyr |181437.5+423037 |RRAB | 14.31 | 15.40 | |* |51442.62 | | 0.51477 | | |80026 GSC | NL80_3 +520639 |V0639 Lyr |181549.5+321838 |EB | 12.35 | 12.8 | 12.45 |* |51389.765 | | 0.62945 | | |80102 80102| NL80_3 +520640 |V0640 Lyr |181705.2+434959 |BY | 11.6 | 11.7 | |* | | | 13.018 | | |80370 80370| NL80_3 +520641 |V0641 Lyr *|181735.0+334520 |EW | 13.8 | 14.2 | 14.15 |* |51390.801 | | 0.3739 | | |80085 80085| NL80_3 +520642 |V0642 Lyr |181840.1+315739 |EW | 16.7 | 17.3 | 17.3 |* |53549.85 | | 0.244485 | | |80001 80501| NL80_3 +520643 |V0643 Lyr |181848.0+342235 |BY | 12.40 |( 0.17 *)| |V | | | 8.5030 | | |80021 GSC | NL80_3 +520644 |V0644 Lyr |181928.2+365247 |E:/RS | 13.25 | 13.6 | |* |51390.8 | | 4.925 | | |80181 80181| NL80_3 +520645 |V0645 Lyr |181938.1+364059 |BY | 11.40 |( 0.06 *)| |V | | | 1.0536 | | |80021 GSC | NL80_3 +520646 |V0646 Lyr |182122.4+314117 |SRB | 9.75 | 10.0 | |* | | | 44. | | |80070 80070| NL80_3 +520647 |V0647 Lyr |182247.1+443443 |BY | 11.52 |( 0.34 *)| |V | | | 5.7509 | |K5V |80021 GSC | NL80_3 +520648 |V0648 Lyr |182345.5+410548 |EW | 13.70 | 14.65 | 14.65 |* |52886.3866 | | 0.3687526 | | |80505 GSC | NL80_3 +520649 |V0649 Lyr |182426.9+453901 |EW | 14.06 | 14.9 | 14.85 |* |52886.5072 | | 0.292258 | | |80505 GSC | NL80_3 +520650 |V0650 Lyr |182714.3+302210 |BY | 10.8 | 11.0 | |* | | | 33.6579 | | |80067 80067| NL80_3 +520651 |V0651 Lyr |182850.3+350634 |BY | 9.18 |( 0.03 *)| |V | | | 2.6940 | |G5 |80021 DM | NL80_3 +520652 |V0652 Lyr |182934.9+295805 |BY: | 9.18 | 9.31 | |Hp| | | 0.8610 | |F8 |80021 GSC | NL80_3 +520653 |V0653 Lyr |183016.5+410508 |EW | 11.21 | 11.75 | 11.68 |* |52886.3468 | | 0.468816 | | |80505 GSC | NL80_3 +520654 |V0654 Lyr |183016.8+270819 |SR: | 12.7 | 13.1 | |* | | | 145. : | | |80001 GSC | NL80_3 +520655 |V0655 Lyr |183018.9+344656 |BY: | 10.62 | 10.75 | |* | | | 3.0479 | | |80021 GSC | NL80_3 +520656 |V0656 Lyr |183031.5+335529 |EW | 13.2 | 13.6 | 13.5 |* |51413.553 | | 0.40981 | | |80102 GSC | NL80_3 +520657 |V0657 Lyr |183037.3+433553 |BY | 11.39 |( 0.16 *)| |V | | | 23.1356 | | |80021 GSC | NL80_3 +520658 |V0658 Lyr |183336.1+463542 |EW | 11.25 | 11.62 | 11.61 |* |52926.3248 | | 0.330259 | | |80505 GSC | NL80_3 +520659 |V0659 Lyr |183340.2+361320 |BY | 11.6 | 11.8 | |* | | | 11.733 | | |80370 80370| NL80_3 +520660 |V0660 Lyr |183542.4+325846 |BY | 12.7 | 13.1 | |* | | | 3.6265 | | |80060 80060| NL80_3 +520661 |V0661 Lyr |183544.6+300815 |BY | 11.06 |( 0.12 *)| |V | | | 0.6175 | | |80021 GSC | NL80_3 +520662 |V0662 Lyr |183608.4+264515 |SRB | 12.75 | 13.4 | |* | | | 49. | | |80001 USNO | NL80_3 +520663 |V0663 Lyr |183707.3+450741 |BY | 10.6 | 10.7 | |* | | | 55.121 | | |80370 80370| NL80_3 +520664 |V0664 Lyr *|183824.5+423632 |EW | 12.77 | 13.23 | 13.06 |* |51328.743 | | 0.34089 | | |80001 GSC | NL80_3 +520665 |V0665 Lyr |183825.3+340644 |RS | 10.15 | 10.42 | |* | | | 19.7 | | |80246 80246| NL80_3 +520666 |V0666 Lyr |183923.9+310002 |EW | 12.25 | 12.7 | 12.7 |* |51393.764 | | 0.5035 | | |80085 80085| NL80_3 +520667 |V0667 Lyr |184232.2+375534 |EA | 12.0 | 12.35 | 12.15 |* |51416.898 | | 1.4328 |12 | |80104 80104| NL80_3 +520668 |V0668 Lyr *|184421.5+280605 |DSCTC | 7.16 |( 0.03 )| |V | | | 0.0732979 | |F0 |80363 HIP | NL80_3 +520669 |V0669 Lyr |184706.3+434035 |RS | 10.8 | 11.0 | |* | | | 39.637 | | |80370 80370| NL80_3 +520670 |V0670 Lyr |185543.9+281307 |BY | 10.3 | 10.5 | |* | | | 74.0 | | |80043 80043| NL80_3 +520671 |V0671 Lyr |190323.6+364535 |EW | 15.4 |( 0.25 *)|( 0.25 *)|R |54249.7721 | | 0.337262 | | |80512 80512| NL80_3 +520672 |V0672 Lyr |190409.8+363758 |EP | 11.34 | 11.36 | |R |53186.8060 | | 3.030065 |04 |K0V |80514 GSC | NL80_3 +520673 |V0673 Lyr |190420.5+363057 |EW | 13.30 |( 0.40 *)|( 0.35 *)|R |54250.555 | | 0.579289 | | |80512 80512| NL80_3 +520674 |V0674 Lyr |190429.2+363949 |EW | 14.9 | 15.2 | 15.2 |* |54249.7964 | | 0.300374 | | |80512 80512| NL80_3 +520675 |V0675 Lyr |190646.6+440146 |E/RS | 13.05 | 13.25 | |V | | | 7.0 : | |G2V |80009 GSC | NL80_3 +520676 |V0676 Lyr |191302.6+443616 |RS | 10.22 | 10.40 | |* | | | 3.5657 | | |80170 80170| NL80_3 +520677 |V0677 Lyr |191512.1+394251 |SRD: | 10.3 |< 11.2 | |V |53221.1 | | 125.4 | | |80517 80517| NL80_3 +520678 |V0678 Lyr |191937.1+374142 |BY | 18.41 |( 0.07 R)| |V | | | 2.2505 | | |80519 USNO | NL80_3 +520679 |V0679 Lyr |191939.1+373701 |BY | 19.81 |( 0.18 R)| |V | | | 0.3979 | | |80519 USNO | NL80_3 +520680 |V0680 Lyr |191939.1+373210 |BY | 19.85 |( 0.14 R)| |V | | | 5.5803 | | |80519 GSC23| NL80_3 +520681 |V0681 Lyr |191940.0+372945 |L: | 17.08 |( 0.03 R)| |V | | | | | |80519 USNO | NL80_3 +520682 |V0682 Lyr |191942.3+374248 |EW | 18.63 |( 0.49 R)|( 0.42 R)|V | | | 0.2773 | | |80519 USNO | NL80_3 +520683 |V0683 Lyr |191942.9+372907 |EA | 16.86 |( 0.40 R)| |V | | | | | |80519 USNO | NL80_3 +520684 |V0684 Lyr |191943.0+373007 |EB | 16.03 |( 0.02 R)|( 0.02 R)|V | | | 1.1692 | | |80519 USNO | NL80_3 +520685 |V0685 Lyr |191943.8+373530 |EW | 17.42 |( 0.44 R)|( 0.41 R)|V | | | 0.3720 | | |80519 USNO | NL80_3 +520686 |V0686 Lyr |191956.4+373413 |ELL | 14.1 |( 0.04 )|( 0.04 )|R | | | 2.6772 | | |80519 2MASS| NL80_3 +520687 |V0687 Lyr |191958.5+373544 |EW | 19.03 |( 0.18 R)|( 0.17 R)|V | | | 0.2759 | | |80519 USNO | NL80_3 +520688 |V0688 Lyr |192009.2+374410 |ELL: | 19.21 |( 0.05 R)|( 0.04 R)|V | | | 2.4112 | | |80519 USNO | NL80_3 +520689 |V0689 Lyr |192010.6+373856 |EW | 18.57 |( 0.67 R)|( 0.54 R)|V | | | 0.3318 | | |80519 USNO | NL80_3 +520690 |V0690 Lyr |192018.7+373030 |EW | 19.74 |( 0.71 R)|( 0.68 R)|V | | | 0.2454 | | |80519 GSC23| NL80_3 +520691 |V0691 Lyr *|192019.1+374716 |EW | 16.86 |( 0.07 R)|( 0.05 R)|V | | | 0.2718 | | |80519 USNO | NL80_3 +520692 |V0692 Lyr |192021.5+374822 |BY: | 17.98 |( 0.28 R)| |V | | | 14.4738 | | |80519 USNO | NL80_3 +520693 |V0693 Lyr |192027.6+374715 |EA | 19.29 | 19.65 | |V | | | 2.09576 |13 | |80519 USNO | NL80_3 +520694 |V0694 Lyr |192030.8+375055 |RV: | 13.79 | 13.87 | |I | | | 30.52 | | |80520 USNO | NL80_3 +520695 |V0695 Lyr |192030.9+373651 |RS: | 15.77 |( 0.02 R)| |V | | | 5.6483 | | |80519 USNO | NL80_3 +520696 |V0696 Lyr |192032.2+374421 |LB | 14.78 | 15.18 | |V | | | | | |80520 USNO | NL80_3 +520697 |V0697 Lyr |192035.2+373104 |RS: | 16.49 |( 0.04 R)| |V | | | 5.7341 | | |80519 USNO | NL80_3 +520698 |V0698 Lyr |192039.6+373830 |BY | 19.67 |( 0.14 R)| |V | | | 0.7521 | | |80519 USNO | NL80_3 +520699 |V0699 Lyr |192044.1+373043 |EA | 17.09 |( 0.22 R)| |V | | | 2.5741 |11 | |80519 USNO | NL80_3 +520700 |V0700 Lyr |192044.9+373342 |EW | 17.33 |( 0.19 R)|( 0.17 R)|V | | | 0.2836 | | |80519 USNO | NL80_3 +520701 |V0701 Lyr |192046.0+374206 |BY: | 16.98 |( 0.04 R)| |V | | | 4.5776 | | |80519 USNO | NL80_3 +520702 |V0702 Lyr |192047.9+374558 |BY: | 17.36 | 17.43 | |V | | | 11.34 | | |80521 80521| NL80_3 +520703 |V0703 Lyr |192057.9+373107 |BY: | 18.35 |( 0.05 R)| |V | | | 13.0809 | | |80519 USNO | NL80_3 +520704 |V0704 Lyr |192100.2+374253 |BY | 19.64 |( 0.15 R)| |V | | | 0.5068 | | |80519 GSC23| NL80_3 +520705 |V0705 Lyr |192100.5+373823 |EA: | 16.62 |( 0.07 R)| |V | | | 7.5928 | | |80519 USNO | NL80_3 +520706 |V0706 Lyr |192106.1+374140 |L | 15.11 | 15.16 | |V | | | | | |80520 USNO | NL80_3 +520707 |V0707 Lyr |192107.2+374435 |L | 14.65 | 14.69 | |V | | | | | |80520 USNO | NL80_3 +520708 |V0708 Lyr |192107.5+374306 |BY: | 17.48 |( 0.05 R)| |V | | | 5.8278 | | |80520 USNO | NL80_3 +520709 |V0709 Lyr |192108.4+374455 |SR | 15.89 | 16.19 | |V | | | 49.2057 : | | |80520 USNO | NL80_3 +520710 |V0710 Lyr |192110.5+374325 |L | 17.25 | 17.56 | |V | | | | | |80520 USNO | NL80_3 +520711 |V0711 Lyr |192111.4+372955 |L | 16.43 |( 0.02 R)| |V | | | | | |80519 USNO | NL80_3 +520712 |V0712 Lyr |192112.2+374455 |BY | 19.90 |( 0.13 R)| |V | | | 6.6443 | | |80519 | NL80_3 +520713 |V0713 Lyr |192112.9+374552 |ELL | 17.80 |( 0.04 R)|( 0.03 R)|V | | | 0.796993 | |sdB |80520 USNO | NL80_3 +520714 |V0714 Lyr |192114.6+374804 |BY: | 17.50 |( 0.06 R)| |V | | | 13.6219 | | |80519 USNO | NL80_3 +520715 |V0715 Lyr |192116.1+374646 |SR | 13.77 | 13.93 | |V | | | 43.26 : | | |80520 USNO | NL80_3 +520716 |V0716 Lyr |192117.3+374505 |EA/RS | 19.76 | 20.78 | |V | | | 0.436533 | | |80520 GSC23| NL80_3 +520717 |V0717 Lyr |192118.2+375107 |ELL:+UV | 19.45 |( 0.16 R)| |V | | | 3.2199 : | | |80519 2MASS| NL80_3 +520718 |V0718 Lyr |192118.7+374336 |BY: | 16.46 |( 0.03 R)| |V | | | 8.4208 | | |80519 USNO | NL80_3 +520719 |V0719 Lyr |192119.0+374756 |BY | 18.64 |( 0.10 R)| |V | | | 5.1482 | | |80519 USNO | NL80_3 +520720 |V0720 Lyr |192120.9+374619 |BY: | 17.47 |( 0.03 R)| |V | | | 7.0550 | | |80519 | NL80_3 +520721 |V0721 Lyr |192122.4+375030 |BY: | 16.12 |( 0.02 R)| |V | | | 11.0277 | | |80519 USNO | NL80_3 +520722 |V0722 Lyr *|192155.3+350255 |* | 11.09 | 11.68 | |V | | | | |BIe |80522 GSC | NL80_3 +520723 |V0723 Lyr *|192357.5+380652 |DSCTC | 8.17 | 8.21 | |B | | | 0.0664549 | |F2III |80363 HIP | NL80_3 +520724 |V0724 Lyr |192730.7+422440 |SR | 11.7 | 12.3 | |* | | | 70.0 | | |80001 USNO | NL80_3 +529001 |alf Lyr *|183656.3+384701 |DSCTC | -0.02 | 0.07 | |V | | | 0.19 | |A0V |04126 BD | +529002 |bet Lyr *|185004.8+332146 |EB | 3.25 | 4.36 | 3.85 |V |08247.950 | | 12.913834 | |B8II-IIIep |07042 08953| +5290042|del 2 Lyr *|185430.3+365355 |SRC: | 4.22 | 4.33 | |V | | | | |M4II | BD | +529009 |iot Lyr |190718.1+360601 |BE | 5.20 | 5.27 | |Hp| | | | | |HIP HIP | +530001 |R Men *|054241.1-751502 |SRB | 9.5 | 12.0 | |p | | | 120. *2| |M5/6e |00353 08953| +530002 |S Men |065720.3-755916 |LB | 10.2 | 12.5 | |p | | | | |M4 |00016 08953| +530003 |T Men *|050956.3-713841 |RRAB | 13.0 | 14.1 | |p |30590.575 | | 0.409841 |21 | |09036 09040| +530004 |U Men *|040935.9-815118 |SRA | 8.0 | 10.9 | |p |36065. | | 407.28 | |Me |00001 08953| +530005 |V Men *|053437.0-753948 |RR | 13.4 | 14.6 | |p |23762.440 | | 0.569 | | |00355 GSC | +530006 |W Men *|052624.5-711112 |RCB | 13.4 |< 18.3 | |p | | | | |F8:Ip |V 018 V 016|=LMC V2643 +530007 |X Men |033229.6-762655 |M | 11.4 |< 15.0 | |p |28720. | | 380. | |M3e |00357 02338| +530008 |Y Men |034708.2-763910 |RR | 14.3 | 15.7 | |p |27426.40 | | 0.46675 | | |00357 06286| +530009 |Z Men |041551.6-744337 |RR | 13.9 | 15.2 | |p |27698.60 | | 0.68781 | | |00357 GSC22| +530010 |RR Men *|034350.4-840003 |EA/D | 11.8 | 12.6 | 12.1 |p |38408.350 | | 2.6011 |19 *| |04371 02380| +530011 |RS Men *|051541.2-734714 |M: | 12.5 | 15. | |p | | | | |Me |04663 04256| +530012 |RT Men *|043646.9-701841 |M | 12.2 | 17.2 | |p |31029. | | 250.44 |44 |MIIIe |00826 04762| +530013 |RU Men *|060150.1-703536 |M | 12.3 | 15.1 | |p |31778. | | 171.82 |37 |MIIIe |00826 00828| +530014 |RV Men *|061711.7-732856 |RRAB | 12.2 | 13.8 | |p |31172.239 | | 0.542291 |45 | |09036 09040| +530015 |RW Men *|062241.8-714043 |RR | 14.8 | 16.0 | |p | | | | | |00826 09040| +530016 |RX Men |032227.6-812208 |RRAB | 13.8 | 14.7 | |p |36381.97 | | 0.456287 | | |04043 04043| +530017 |RY Men |033008.8-810829 |EA | 14.3 | 14.9 | |p |36381.853 | | 0.3695140 | | |04043 04043| +530018 |RZ Men |034916.5-784027 |RR | 15. | 16. | |p | | | | | |04001 04001| +530019 |SS Men |035338.4-762434 |RR | 14. | 15. | |p | | | | | |04001 04001| +530020 |ST Men |040141.5-783939 |RR | 13. | 14. | |p | | | | | |04001 04001| +530021 |SU Men |040639.2-770758 |EA | 13. | 14.5 | |p | | | | | |04001 04001| +530022 |SV Men |041312.9-762638 |RR | 15.5 | 16. | |p | | | | | |04001 04001| +530023 |SW Men |041950.7-774821 |EA | 13. | 14. | |p | | | | | |04001 04001| +530024 |SX Men |043357.7-732552 |RR | 16. | 16.5 | |p | | | | | |04001 04001| +530025 |SY Men |043916.2-742142 |M | 13.5 |< 16.5 | |p |36845. :| | | | |V 022 V 022|=LMC V0008 +530026 |SZ Men |044030.1-732618 |RR | 13.5 | 14.5 | |p | | | | | |04001 04001| +530027 |TT Men |044142.7-745728 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +530028 |TU Men *|044140.6-763647 |UGSU | 11.4 | 17. | |p | | |( 68. ) | |pec(UG) |08589 08852| +530029 |TV Men |044837.0-761033 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +530030 |TW Men |045223.2-754317 |IS: | 14.5 | 15. | |p | | | | | |04001 04001| +530031 |TX Men |050802.8-790351 |RRAB | 13.3 | 14.4 | |p |36382.065 | | 0.583322 | | |04043 04043| +530032 |TY Men *|052649.7-813507 |EW/K | 8.08 | 8.56 | 8.47 |V |42054.7973 | | 0.46166701 | |A3-4V |08590 CPD | +530033 |TZ Men *|053013.9-844706 |EA/D | 6.19 | 6.87 | 6.36 |V |39190.34 | | 8.56898 |04 *|A1III+B9V: |05334 08953| +530034 |UU Men |054928.3-823421 |RRAB | 14.1 | 14.9 | |p |36381.864 | | 0.562911 | | |04043 04043| +530035 |UV Men |065410.6-825309 |RRAB | 14.0 | 15.1 | |p |36382.044 | | 0.631305 | | |04043 04043| +530036 |UW Men |071409.4-844547 |M | 11.9 |< 15.5 | |p |36060. | | 380. : | | |04043 05234| +530037 |UX Men *|053003.2-761455 |EA/DM | 8.8 | 9.57 | 9.47 |p |41984.64388 | | 4.181100 |05 *|G1V+G1V |07981 CoD | +530038 |UY Men |040058.8-775351 |EA | 13.0 | 14.1 | |p | | | | | |06318 06318| +530039 |UZ Men |041015.7-792653 |L | 13.5 | 14.1 | |p | | | | | |06318 06318| +530040 |VV Men |043344.3-742916 |EA | 13.7 | 14.2 | |p | | | | | |06318 06318| +530041 |VW Men |053524.0-794203 |L | 13.9 | 14.5 | |p | | | | | |06318 06318| +530042 |VX Men |061432.8-794102 |EA | 13.6 | 14.1 | |p | | | | | |06318 06318| +530043 |VY Men |071137.2-794522 |EA | 13.2 | 13.9 | |p | | | | | |06318 06318| +530044 |VZ Men |073520.9-765134 |L | 13.1 | 13.7 | |p | | | | | |06318 06318| +530045 |WW Men |040257.3-795043 |SR: | 9.7 | 10.1 | |p | | | | |M5e |04256 CoD | +530046 |WX Men |053444.8-734429 |LB: | 5.72 |( 0.15 )| |V | | | | |M2-3III |05840 CPD | +530047 |WY Men *|043233.7-835355 |RRC | 19.6 | 20.1 | |B |42402.871 | | 0.36218 |45 | |07982 07982| +530048 |WZ Men *|044911.2-834503 |RRAB | 19.3 | 20.2 | |B |42402.885 | | 0.51386 |26 | |07982 07982| +530049 |XX Men *|045035.3-841152 |RRAB | 19.3 | 20.3 | |B |42403.121 | | 0.52855 |23 | |07982 07982| +530050 |XY Men *|052213.5-715619 |EB/KE | 10.63 | 11.27 | 10.88 |V |42423.0889 | | 0.7766348 | |A3 |04091 09077| +530051 |XZ Men *|044734.6-794826 |DSCTC(B) | 7.85 |( 0.03 )| |V | | | | |A3p |09378 CPD | +530052 |YY Men |045817.9-751638 |FKCOM: | 8.60 | 8.89 | |V | | | | | |67422 CPD | +530053 |YZ Men |051026.8-771302 |RS | 7.69 | 7.75 | |V | | | | | |68026 CPD | +530054 |ZZ Men |051638.6-704542 |SRA | 13.9 | 15.4 | |p | | | | | |68291 68288| +530055 |AA Men |055702.0-700513 |RRAB | 15.4 | 16.45 | |V | | | | | |68287 68288| +530056 |AB Men |044228.8-695846 |EA/SD | 13.3 | 14.2 | |p |30640.401 | | 1.404264 |15 |AV |V 008 V 016|=LMC V0012 +530057 |AC Men |051550.0-703645 |RRAB | 13.8 | 15.1 | |p |26452.220 | | 0.553379 |21 | |V 008 V 016|=LMC V1809 +530058 |AD Men |060430.8-712522 |UGSS | 15.0 | 16.6 | |p | | |( 30. :) | | |V 023 V 016|=LMC V4671 +530059 |AE Men |062540.3-720235 |RS | 8.24 | 8.33 | |V | | | | | |69011 CPD | +530060 |AF Men |051317.0-743919 |SR | 13.1 |( 0.8 )| |I |45961. | | 435. | |K |V 443 V 443|=LMC V1650 +530061 |AG Men |054052.8-732055 |SR: | 9.3 |( 1.5 )| |I |46902. | | 408. : | | |V 479 V 443|=LMC V4104 +530062 |AH Men |061144.5-814923 |NL | 13.15 | 13.90 | |V | | | | | |73195 73111| +530063 |AI Men |035019.1-755344 |SRB | 7.42 | 7.48 | |Hp| | | | | |HIP HIP | +530064 |AK Men |035320.0-794835 |DSCT | 9.13 | 9.27 | |Hp| | | | | |HIP HIP | +530065 |AL Men |053118.6-790032 |EB | 8.90 | 9.21 | |Hp| | | | | |HIP HIP | +530066 |AM Men |060204.8-704031 |LB: | 8.48 | 8.58 | |Hp| | | | | |HIP HIP | +530067 |AN Men *|060019.5-803553 |EW | 9.36 | 9.54 | |Hp| | | | | |HIP HIP | +530068 |AO Men |061828.2-720242 |BY: | 9.96 | 10.18 | |Hp| | | | | |HIP HIP | +530069 |AP Men |063741.7-773219 |SRB | 7.64 | 7.98 | |Hp| | | | | |HIP HIP | +530070 |AQ Men |050753.6-795124 |NL+E | 15.06 |( 1.4 )| |B | | | | | |77003 GSC | +530071 |AR Men |033124.5-752721 |SRA | 12.5 | 14.1 | |V |52708. | | 146. | | |79100 79063| +530072 |AS Men |043256.9-780741 |SRB | 8.8 | 9.8 | |V | | | 127. | | |79100 DM | +530073 |AT Men *|045206.9-704353 |EA | 11.22 | 11.93 | |V |53131.4682 | | 2.3446345 |10 |G0 |79035 79090| +530074 |AU Men *|055500.7-724136 |EW | 10.23 | 11.15 | 11.0 |V |51869.180 | | 0.343841 | |G0 |79064 DM | +530075 |AV Men |061907.9-783509 |RRAB | 12.5 | 13.3 : | |V |53133.538 | | 0.55496 |18 | |79064 79056| +530076 |AW Men |070616.3-765021 |EA | 12.45 | 14.6 | 12.65 |V |51935.585 | | 4.5521 |08 | |79006 79056| +530077 |AX Men |071201.6-820024 |SRB | 11.2 | 12.1 | |V | | | 100. : | | |79100 79086| +530078 |AY Men |073458.5-765747 |SRB | 10.8 | 11.8 | |V | | | 38. | | |79100 GSC | +530079 |AZ Men |035701.2-760931 |RRC | 13.6 | 14.1 | |V |52956.75 | | 0.318265 |37 | |80135 GSC | NL80_1 +530080 |BB Men *|062254.3-750202 |EW | 11.40 | 11.83 | 11.80 |V |51868.148 | | 0.257707 | | |80036 GSC | NL80_2 +530081 |BC Men *|071127.3-842813 |BY | 11.86 |( 0.09 )| |V | | | 1.9 | |G8V |80199 2MASS| NL80_2 +530082 |BD Men |073338.3-774317 |SR | 13.0 | 14.0 : | |V | | | 145. : | | |80256 GSC | NL80_2 +539009 |iot Men *|053536.2-784915 |ELL: | 6.00 | 6.05 | 6.05 |V |41979.85 | | 5.288 | |B8II |07983 CPD | +540001 |R Mic *|204003.0-284731 |M | 8.3 | 13.8 | |V |43311. | | 138.62 |46 |M4e |00001 00002| +540002 |S Mic *|212644.1-295105 |M | 7.8 | 14.8 | |V |40485. | | 209.68 |43 |M3e-M5.5 |00001 00002| +540003 |T Mic |202755.2-281540 |SRB | 7.7 | 9.6 | |p | | | 347. | |M6e |00358 06478| +540004 |U Mic *|202915.8-402501 |M | 7.0 | 14.4 | |V |39540. | | 334.29 |39 |M5e-M7e |00001 00002| +540005 |V Mic *|212348.8-404205 |M | 9.4 | 14.0 | |p |30044. | | 381.15 | |M3e-M6e |00001 08953| +540006 |W Mic |212301.9-415800 |M | 10.3 | 15.5 | |p |15577. | | 198.8 | |M2e-M4e |00359 04001| +540007 |X Mic |210436.9-331648 |M | 9.8 |< 14.3 | |p |29883. | | 239.64 | |M4e-M5e |00001 05474| +540008 |Y Mic *|210706.5-341647 |SR | 10.3 | 11.9 | |p | | | 364. : | | |00358 05474| +540009 |Z Mic *|211622.7-301703 |RRAB | 11.23 | 11.86 | |V |41597.376 | | 0.5869340 |15 |F0-F8II |07984 06286| +540010 |RR Mic *|211549.3-431140 |CWA | 11.01 | 11.86 | |V |44139.57 | | 31.52 |19 | |05127 CoD | +540011 |RS Mic |202904.3-283106 |M | 10. | 15.5 | |p |37567. | | 228.5 | |Me |06298 02386| +540012 |RT Mic |203722.9-301026 |M | 12. |< 14. | |p | | | | | |00085 02384| +540013 |RU Mic |203840.1-364036 |SR | 10.5 | 11. | |p | | | 165. : | |Me |00085 08953| +540014 |RV Mic |204029.8-393743 |M | 10.5 |< 13. | |p | | | | | |00085 02384| +540015 |RW Mic |204624.8-422427 |M | 11. | 15.5 | |p | | | | | |00085 02386| +540016 |RX Mic |205426.4-274416 |M | 9.5 |< 14.0 | |V |35343. | | 239.75 | | |06299 02384| +540017 |RY Mic *|205823.2-401355 |M | 9.6 |< 14.5 | |V |37098. | | 198.2 | | |06430 06478| +540018 |RZ Mic *|205016.4-421305 |EA/DM | 11.0 | 11.8 | 11.2 |V |34362.42 | | 3.983051 |15 :*|A5 |00080 06431| +540019 |SS Mic |202920.0-424443 | | 14.02 | 15.57 | |V | | | | | |08591 04001| +540020 |ST Mic |202935.8-422421 |RRAB | 14.0 | 15.4 | |p |36807.242 | | 0.58369 |18 | |04294 04001| +540021 |SU Mic |202943.5-394918 |RRAB: | 14.49 | 15.61 | |V |36789.358 | | | | |08591 04001| +540022 |SV Mic |203020.0-435814 |RRAB | 14.03 | 14.79 | |V |42638.400 | | 0.605205 |20 | |00001 04001| +540023 |SW Mic |203100.9-394935 |SR: | 11.4 | 14. | |p |36840. :| | | | |04294 04001| +540024 |SX Mic |203306.2-384640 |RR | 13.65 | 14.14 | |V |36778.353 | | | | |08591 04001| +540025 |SY Mic |203508.0-400153 |RRAB | 13.8 | 15.2 | |p |36807.417 | | 0.4805 : | | |04294 04001| +540026 |SZ Mic |203652.3-391206 |E | 13.4 | 14.0 | |p |36731.529 | | 0.4 : | | |04294 04001| +540027 |TT Mic |203716.1-444611 |RRAB | 12.4 | 13.6 | |p |36808.468 | | 0.672435 : |16 | |04294 04001| +540028 |TU Mic |203715.8-432348 |RRC | 15.2 | 15.8 | |p |36789.394 | | 0.255436 |31 : | |04294 04001| +540029 |TV Mic *|203722.4-383016 |EB/AR: | 11.7 | 12.6 | 12.4 |p |36807.302 | | 2.0762 | | |04294 02384| +540030 |TW Mic |203852.6-420314 |RR | 14.5 | 15.1 | |p |36728.485 | | 0.64308 | | |04294 04001| +540031 |TX Mic |204028.9-404633 |RRC | 15.0 | 15.4 | |p |36729.523 | | 0.41247 |46 | |04294 04001| +540032 |TY Mic |204058.8-434038 |RRAB | 14.08 | 14.93 | |V |42631.348 | | 0.540112 |20 | |00001 04001| +540033 |TZ Mic |204110.2-430210 |RRAB | 13.73 | 14.88 | |V |42638.443 | | 0.458611 |23 | |00001 04001| +540034 |UU Mic |204110.0-390817 |RRC | 12.90 | 13.76 | |V |42629.458 | | 0.342702 |35 | |00001 04001| +540035 |UV Mic |204142.3-441819 |RRAB | 12.6 | 13.8 | |p |36728.469 | | 0.473644 |20 | |04294 04001| +540036 |UW Mic |204244.4-401355 |SR | 14.3 | 15.4 | |p |36731. | | 88. |44 | |04294 04001| +540037 |UX Mic |204318.2-415733 |RRAB | 15.44 | 16.58 | |V |36818.291 | | 0.536930 |33 | |04294 04001| +540038 |UY Mic |204453.6-383925 |IS: | 13.5 | 14.6 | |p | | | | | |04294 04001| +540039 |UZ Mic *|204506.6-385838 |EW/KW | 11.9 | 12.4 | 12.4 |p |36724.251 | | 0.440964 | | |04294 04001| +540040 |VV Mic |204543.9-421736 |RRAB | 14.2 | 14.9 | |p |36732.468 | | 0.550036 |27 | |04294 04001| +540041 |VW Mic *|204621.3-430619 |RRAB | 13.54 | 14.49 | |V |42633.445 | | 0.35620 |20 | |04294 04001| +540042 |VX Mic |204651.0-445806 |RRAB | 13.3 | 14.3 | |p |36731.516 | | 0.573368 |13 | |04294 04001| +540043 |VY Mic |204907.1-334354 |EA/DM | 9.4 | 9.7 | |p |38295.265 | | 4.4358 |10 |A3 |04383 CoD | +540044 |VZ Mic |205014.4-425010 |RRAB | 14.46 | 15.76 | |V |42664.392 | | 0.474343 |10 | |00001 04001| +540045 |WW Mic |205043.0-433914 |RRC: | 14.16 | 14.83 | |V |36728.490 | | | | |08591 04001| +540046 |WX Mic |205040.7-405920 |RRAB | 14.71 | 15.62 | |V |42638.451 | | 0.579065 |20 | |00001 04001| +540047 |WY Mic *|205430.9-425231 |RRAB | 13.40 | 14.58 | |V |36732.390 | | 0.338120 : |15 |A2 |04294 04001| +540048 |WZ Mic |205511.1-432106 |EA | 12.9 | 14.4 | |p |36808.460 | | | | |04294 04001| +540049 |XX Mic |205615.4-385828 |RRAB | 15.24 | 16.79 : | |V |36808.324 | | 0.66252 |10 : | |04294 04001| +540050 |XY Mic |205815.9-443705 |M | 13.0 | 16.0 | |p |36755. :| | 150. : | | |04294 04001| +540051 |XZ Mic *|205854.8-385629 |RRAB | 12.40 | 13.50 | |V |42638.355 | | 0.449208 |20 | |04294 04001| +540052 |YY Mic |210000.6-415043 |RRAB | 13.7 | 14.6 | |p |36789.356 | | 0.54576 |15 | |04294 04001| +540053 |YZ Mic |210006.7-403411 |RRAB | 12.96 | 14.03 | |V |42664.385 | | 0.323834 |25 |F0 |00001 04001| +540054 |ZZ Mic *|210035.2-423920 |DSCT(B:) | 9.27 | 9.69 | |V |40442.8443 | | 0.0671835 |40 |A3-A8IV |06432 06431| +540055 |AA Mic |210041.6-391052 |RRAB | 13.17 | 14.40 | |V |42633.351 | | 0.485877 |18 | |00001 04001| +540056 |AB Mic |210120.9-445826 |RRC | 13.9 | 14.5 | |p |36678.641 | | 0.353207 |38 | |04294 04001| +540057 |AC Mic |210142.6-424001 |RRC | 14.2 | 14.8 | |p |36730.547 | | 0.461391 |39 | |04294 04001| +540058 |AD Mic |210140.5-385856 |RRAB | 14.14 | 15.26 | |V |42665.359 | | 0.670988 |13 | |00001 04001| +540059 |AE Mic *|210152.5-404745 |RRAB | 13.72 | 15.02 | |V |42638.393 | | 0.324142 |22 |A3: |04294 04001| +540060 |AF Mic |210239.6-443859 |EA | 15.2 | 17.2 | |p |36839.300 | | | | |04294 04001| +540061 |AG Mic |210402.6-424754 |RR | 15.7 | 16.8 | |p |36833.329 | | | | |04294 04001| +540062 |AH Mic *|210457.8-403306 |EW/KW | 13.2 | 13.6 | 13.6 |p |36724.479 | | 0.38968 | | |04294 04001| +540063 |AI Mic |210801.4-392808 |RR | 13.8 | 14.6 | |p |36724.461 | | 0.232034 |26 | |04294 04001| +540064 |AK Mic |210952.2-395016 |UV | 11.7 | 16.2 | |p | | | | | |04294 04001| +540065 |AL Mic |211015.8-444532 |RRAB | 14.2 | 15.7 | |p |36728.440 | | 0.309612 |26 | |04294 04001| +540066 |AM Mic |211118.6-414808 |RRAB: | 15.56 | 16.71 | |V |36839.300 | | | | |04294 04001| +540067 |AN Mic |211134.0-420238 |RRAB | 12.70 | 13.86 | |V |42633.359 | | 0.326376 |15 |A2-F8 |00001 04001| +540068 |AO Mic |211213.9-440132 |RRAB | 14.4 | 15.6 | |p |36789.344 | | 0.639462 |15 | |04294 04001| +540069 |AP Mic |211318.1-422922 |RRC | 14.88 | 15.46 | |V |36728.475 | | | | |08591 04001| +540070 |AQ Mic |211337.2-422957 |RR | 15.6 | 16.7 | |p | | | | | |04294 04001| +540071 |AR Mic |211349.5-410345 |RRAB: | 15.10 | 16.92 : | |V |36729.523 | | | | |08591 04001| +540072 |AS Mic |211814.8-421316 |RRAB | 13.8 | 14.8 | |p |36724.437 | | 0.38153 |16 : | |04294 04001| +540073 |AT Mic *|204151.2-322607 |UV | 11.4 | 12.90 | |U | | | | |M4.5Ve+M4.5Ve |05865 05288| +540074 |AU Mic *|204509.5-312027 |BY+UV | 8.59 | 8.96 | |V |42720.75 | | 4.865 | |M1.6Ve |06168 CoD | +540075 |AV Mic |204124.7-420802 |LC: | 6.25 | 6.35 | |V | | | | |M3II |06351 CoD | +540076 |AW Mic *|211905.9-335508 |RRC: | 9.04 | 9.13 | |V | | | 0.479 : | |B9 |07896 CoD | +540077 |AX Mic *|211715.3-385203 |UV | 9.21 | 9.31 | |U | | | | |M0Ve |08771 CoD | +540078 |AY Mic |212125.9-433207 |RR | 14.6 | 15.3 | |B | | | | | |68127 68127| +540079 |AZ Mic |212148.9-422936 |RR | 16.4 | 17.6 | |B | | | | | |68127 68127| +540080 |BB Mic |212252.8-431531 |RR | 15.9 | 16.9 | |B | | | | | |68127 68127| +540081 |BC Mic |212315.6-433459 |RR | 17.5 | 18.5 | |B | | | | | |68127 68127| +540082 |BD Mic |212359.2-431057 |RR | 17.8 | 18.9 | |B | | | | | |68127 68127| +540083 |BE Mic |212450.0-440049 |RR | 13.7 | 14.9 | |B | | | | | |68127 68127| +540084 |BF Mic |212509.6-431441 |RR | 16.7 | 17.5 | |B | | | | | |68127 68127| +540085 |BG Mic |212513.6-443954 |RR | 17.2 | 18.5 | |B | | | | | |68127 68127| +540086 |BH Mic |212516.4-444618 |RR | 15.8 | 16.7 | |B | | | | | |68127 68127| +540087 |BI Mic |212603.9-295548 |ACVO | 8.9 |( 0.002 )| |B | | | | | |68057 CoD | +540088 |BK Mic |212710.0-444356 |RR | 19.6 | 20.4 | |B | | | | | |68127 68127| +540089 |BL Mic |212724.6-433753 |RR | 16.9 | 18.4 | |B | | | | | |68127 68127| +540090 |BM Mic |211431.1-304527 |RS | 8.23 | 8.45 | |V | | | | | |69011 CoD | +540091 |BN Mic |211452.7-311101 |RS | 7.68 | 7.94 | |V | | | | | |69011 CoD | +540092 |BO Mic |204745.0-363541 |BY | 9.2 |( 0.21 )| |V | | | | | |73196 CoD | +540093 |BP Mic |210020.9-365510 |M | 3.79 | 4.48 | |H | | | | | |73014 USNO | +540094 |BQ Mic |211007.5-383104 |M | 3.45 | 4.74 | |J | | | | | |73014 USNO | +540095 |BR Mic |212701.1-315621 |BCEP | 8.78 | 8.82 | |V | | | | | |73197 CoD | +540096 |BS Mic |203635.8-380132 |LB | 8.64 | 9.02 | |Hp| | | | | |HIP HIP | +540097 |BT Mic |203957.3-433623 |EB | 10.14 | 10.41 | |Hp| | | | | |HIP HIP | +540098 |BU Mic |203952.5-360201 |DSCTC | 7.28 | 7.32 | |Hp| | | | | |HIP HIP | +540099 |BV Mic |204312.5-321735 |EA: | 9.86 | 10.20 | |Hp| | | | | |HIP HIP | +540100 |BW Mic |204421.1-343108 |SRD: | 9.19 | 9.31 | |Hp| | | | | |HIP HIP | +540101 |BX Mic |204511.7-350959 |EB: | 6.91 | 6.96 | |Hp| | | | | |HIP HIP | +540102 |BY Mic |205406.6-275531 |LB: | 6.49 | 6.52 | |Hp| | | | | |HIP HIP | +540103 |BZ Mic |205944.1-433026 |LB | 8.72 | 8.90 | |Hp| | | | | |HIP HIP | +540104 |CC Mic |211655.7-283617 |E: | 9.76 | 10.17 | |Hp| | | | | |HIP HIP | +540105 |CD Mic |212143.9-300855 |E: | 8.59 | 9.04 | |Hp| | | | | |HIP HIP | +540106 |CE Mic |212356.1-442330 |BY: | 11.17 | 11.39 | |Hp| | | | | |HIP HIP | +540107 |CF Mic |212528.4-414207 |LB | 7.28 | 7.90 | |Hp| | | | | |HIP HIP | +540108 |CG Mic |202902.4-431458 |ACV | 8.88 |( 0.04 U )| |V | | | | | |75026 CoD | +540109 |CH Mic |203045.7-383441 |ACV | 8.85 |( 0.06 U )| |V | | | | | |75026 CoD | +540110 |CI Mic |210534.9-354208 |ACV | 9.07 |( 0.03 )| |V | | | | | |75026 CoD | +540111 |CK Mic |203254.8-354330 |SR: | 10.1 | 11.7 | |V | | | | | |77004 DM | +540112 |CL Mic |203301.7-335528 |SR: | 9.8 | 10.8 | |V | | | | | |77004 DM | +540113 |CM Mic |203654.6-432231 |NL | 14.9 | 15.9 | |B | | | | | |77003 USNO | +540114 |CN Mic |203718.5-330301 |SR: | 10.8 | 12.2 | |V | | | | | |77004 DM | +540115 |CO Mic |203841.9-280448 |SR: | 12.2 | 13.2 | |V | | | | | |77004 GSC | +540116 |CP Mic |204017.6-302531 |SR: | 11.4 | 12.3 | |V | | | | | |77004 GSC | +540117 |CQ Mic |204113.1-281622 |SR: | 11.8 | 12.9 | |V | | | | | |77004 DM | +540118 |CR Mic |204246.4-292915 |SR: | 11.3 | 12.1 | |V | | | | | |77004 DM | +540119 |CS Mic |204440.7-320013 |SR: | 11.9 | 12.6 | |V | | | | | |77004 DM | +540120 |CT Mic |205715.9-304552 |SR: | 13.5 | 14.3 | |V | | | | | |77004 GSC | +540121 |CU Mic |210308.5-393006 |SR: | 12.8 | 13.5 | |V | | | | | |77004 GSC | +540122 |CV Mic |211445.4-275842 |M: | 12.9 |< 14.7 | |V | | | | | |77004 GSC | +540123 |CW Mic |212351.2-385258 |SR: | 9.5 | 10.5 | |V | | | | | |77004 DM | +540124 |CX Mic |205109.1-345353 |M | 11.0 | 15.2 | |V |52816 | | 233. | |Me |78130 GSC | +540125 |CY Mic |205155.0-404705 |EA | 11.75 | 12.46 | |V |51882.504 | | 1.628741 |10 | |78011 78121| +540126 |CZ Mic *|205444.0-394811 |EA | 12.70 | 13.53 | 12.9 : |V |51881.245 | | 1.009440 |13 | |78011 78121| +540127 |DD Mic |210006.4-423844 |ZAND | 11.0 | 11.7 | |V | | | | |M0.3e |78066 GSC | +540128 |DE Mic *|210559.0-361534 |EW | 7.65 | 8.05 | 8.00 |V |52623.549 | | 0.410687 | |F6/F7V |78011 DM | +540129 |DF Mic |203911.6-375548 |SRB | 9.6 | 10.7 | |V | | | 197. | | |79100 DM | +540130 |DG Mic |211419.3-424755 |EA | 8.38 | 8.84 | 8.77 : |V |52104.716 | | 2.69592 |06 |A2mA7/8-A8/9 |79018 DM | +540131 |DH Mic |203608.3-360711 |BY | 11.55 | 11.85 | |V | | | 2.1256 | |M3Ve |80002 DM | NL80_3 +540132 |DI Mic |210239.1-354333 |EW | 12.63 | 13.35 : | 13.12 |V |52893.712 | | 0.286687 | | |80365 GSC | NL80_3 +540133 |DK Mic |212336.5-394934 |RRAB | 14.0 | 14.8 | |V |52145.622 | | 0.576557 |15 : |A3 |80135 GSC | NL80_3 +5490081|tet 1 Mic |212045.6-404834 |ACV | 4.77 | 4.87 | |V |40345.32 | | 2.1215 | |A2p(Cr-Eu-Sr-Mg) |09383 CoD | +550001 |R Mon *|063910.0+084410 |INA | 11.0 | 13.8 | |B | | | | |A3:e-Fpe |09395 00002| +550002 |S Mon *|064058.7+095345 |IA: | 4.62 | 4.68 | |V | | | | |O7.5III-Vf | 02750| +550003 |T Mon *|062513.0+070509 |DCEP | 5.58 | 6.62 | |V |43784.615 | | 27.024649 |27 |F7Iab-K1Iab+A0V |09029 00559| +550004 |U Mon *|073047.5-094637 |RVB | 6.1 | 8.8 | |p |38496. | | 91.32 |22 |F8eVIb-K0pIb(M2) |08125 00368| +550005 |V Mon *|062243.6-021144 |M | 6.0 | 13.9 | |V |44972. | | 340.5 |46 |M5e-M8e |00001 00002| +550006 |W Mon |065221.1-070850 |LB | 8.8 | 12.1 | |V | | | | |C4,5(N) |00369 08953| +550007 |X Mon *|065711.8-090352 |SRA | 6.8 | 10.2 | |V |42446. | | 155.8 |51 |M1eIII-M6ep |00001 00002| +550008 |Y Mon *|065652.1+111432 |M | 8.6 | 14.9 | |V |40637. | | 227.9 |49 |M4e-M8.2e |00001 00002| +550009 |Z Mon |063248.6-085220 |LB: | 9.2 | 9.7 | |p | | | | |K5 |00372 00097| +550010 |RR Mon *|071731.5+010542 |M | 8.4 | 15.8 | |V |40290. | | 394.70 |39 |S7,2e-S8,2e/M6-10|00001 00002| +550011 |RS Mon |070728.9+045910 |M | 9.82 |< 12.7 | |V |38703. | | 263.79 | |M3e-M6e: |00001 00567| +550012 |RT Mon |080843.5-104723 |SRB | 8.13 | 10.3 | |V | | | 107. |49 |M3-4III |00374 08953| +550013 |RU Mon *|065412.3-073545 |EA/DM | 10.33 | 11.18 | 11.06 |V |41743.1947 | | 3.584749 |06 *|B9p |09546 00102| +550014 |RV Mon *|065821.5+061002 |SRB | 9.71 | 11.9 | |B | | | 131.5 | |C4,4-C6,2(Nb/R9) |00372 00119| +550015 |RW Mon *|063445.9+084932 |EA/SD | 9.26 | 11.51 | 9.45 |V |33680.4481 | | 1.90609412 |15 |B9V+F8V-G0IV |09399 03455| +550016 |RX Mon *|072921.3-041644 |M | 9.6 |< 13.0 | |p |35800. | | 345.7 | |M6e-M9 |00001 00528| +550017 |RY Mon *|070656.5-073327 |SRA | 7.5 | 9.2 | |V |27440. | | 455.7 |43 |C5,5-C7,4:(N5/R) |00001 08953| +550018 |RZ Mon |063835.4+085941 |M | 13.0 |< 18.0 | |p |37622. | | 278.2 | |M6 |03451 06286| +550019 |SS Mon *|064107.1+102641 |INB | 13.3 | 15.8 | |p | | | | |K3e |06361 04108| +550020 |ST Mon |064705.8+080054 |M | 11.3 | 16.7 | |B |35127. | | 397.5 |35 |M6.5 |02931 06286| +550021 |SU Mon *|074217.5-105247 |SRB | 9.6 | 12.4 | |p | | | | |S3,6 |00374 08953| +550022 |SV Mon *|062126.3+062813 |DCEP | 7.61 | 8.88 | |V |43794.338 | | 15.232780 |38 |F6-G4 |09029 00560| +550023 |SW Mon |062701.0+052244 |SRB | 9.05 | 10.9 | |V | | | 112. | |M4III-M6 |00507 00002| +550024 |SX Mon *|065157.3+044553 |SR | 9.1 | 11.1 | |p | | | 100. | |M6.5 |00376 08953| +550025 |SY Mon |063731.3-012343 |M | 9.6 | 17.0 | |p |38438. | | 422.17 | |M6e-M9 |00001 05285| +550026 |SZ Mon *|065127.8-012216 |RVA | 9.66 | 10.75 | 10.55 |V |40550.0 | | 32.685 | |F9-K5 |00001 03453| +550027 |TT Mon |072540.6-055101 |M | 8.0 |< 13.5 | |p |38323. | | 323.17 | |M5e-M8 |00001 00400| +550028 |TU Mon *|075319.8-030231 |EA/SD | 9.0 | 11.7 | 9.1 |p |34068.1230 | | 5.0490291 |15 *|B5V+A5III: |08608 02532| +550029 |TV Mon *|062822.7+051257 |EA/SD | 12.0 | 13.9 | |p |44225.475 | | 4.179742 |10 | |00001 00570| +550030 |TW Mon *|065032.3+000024 |CEP | 13.6 | 14.4 | |p |25301.979 | | 7.0969 |32 | |03148 03453| +550031 |TX Mon *|065052.3-012545 |DCEP | 10.67 | 11.36 | |V |35838.977 | | 8.701731 |36 |F6-G2 |03453 00380| +550032 |TY Mon |065639.8+001123 |DCEP | 12.5 | 13.4 | |p |31901.142 | | 4.0226946 |30 |K5 |03453 03453| +550033 |TZ Mon |065800.9-002234 |DCEP | 10.43 | 11.18 | |V |37633.801 | | 7.42818 |30 |F6-G1 |03453 03453| +550034 |UU Mon |065945.1+021229 |EA/SD | 12.8 | 14.1 | |p |32939.433 | | 1.04981616 |26 | |05285 05285| +550035 |UV Mon *|070300.0+003719 |RR: | 12.9 | 14.0 | 13.8 |p |32965.359 | | 0.4156799 |30 | |03453 00380| +550036 |UW Mon |070339.7-001132 |RRAB | 13.1 | 14.3 | |p |30344.404 | | 0.58236414 |20 | |03453 00380| +550037 |UX Mon *|075916.4-073018 |EA+DSCT: | 8.22 | 9.16 | 8.52 |V |33328.8533 | | 5.9045505 |17 |A6Vep+G0-G2III-IV|08608 06286| +550038 |UY Mon |065850.3+093722 |DCEPS | 9.22 | 9.62 | |V |44681.34 | | 2.39813 |43 |F8II |09402 03455| +550039 |UZ Mon |070131.3+073108 |M | 11.7 | 16.0 | |p |36251. | | 272.9 |44 |M2 |00001 06286| +550040 |VV Mon *|070318.3-054416 |EA/D/RS | 9.4 | 9.95 | 9.55 |V |26037.543 | | 6.050829 |11 |K0IV+G2 |08592 07991| +550041 |VW Mon *|062722.9+085824 |RRAB | 13.2 | 14.2 | |p |36657.274 | | 0.6040395 |23 | |00001 00531| +550042 |VX Mon *|063100.0+091819 |EA/SD | 12.8 | 14.3 |( 0.07 )|p |25300.34 | | 1.62967 |20 *| |00386 00531| +550043 |VY Mon *|063107.0+102605 |INA | 13.7 | 17.4 | |p | | | | |O9e |09403 00531| +550044 |VZ Mon |063114.5+115101 |DCEP | 14.3 | 15.2 | |p |25272.58 | | 5.0834 |30 | |00386 00530| +550045 |WW Mon |063337.2+091213 |DCEP | 11.97 | 12.92 | |V |37634.145 | | 4.66231 |28 |F6-F9 |00384 00531| +550046 |WX Mon |064357.5-044718 |LB | 13.2 | 15.0 | |p | | | | | |00387 00531| +550047 |WY Mon |064542.3-045634 |SRB | 13.2 | 14.5 | |p | | | 140. | |M6 |00380 00380| +550048 |WZ Mon |065007.0-074205 |SR: | 12.8 | 15.4 | |p | | | | | |03165 00531| +550049 |XX Mon *|065212.2-024825 |DCEP | 11.44 | 12.25 | |V |40689.60 | | 5.456473 |29 |F6-G0 |03453 00380| +550050 |XY Mon |065220.4-032841 |ISB: | 12.7 | 14.0 | |p | | | | | |00387 03453| +550051 |XZ Mon *|065336.4-041321 |EA/SD | 13.4 | 15.1 | 13.6 |p |30788.343 | | 0.87608335 |26 : | |05285 00380| +550052 |YY Mon |065411.4-073952 |DCEP | 13.19 | 14.13 | |V |25619.32 | | 3.45470 |28 | |01003 00380| +550053 |YZ Mon |065717.9-062335 |EA/SD | 14.1 | 16.2 | |p |25655.407 | | 2.055264 |10 *| |00387 00531| +550054 |ZZ Mon |065715.5-082358 |INS: | 13.2 | 15.6 | |p | | | | | |00387 00531| +550055 |AA Mon *|065723.7-035036 |DCEP | 13.7 | 15.0 | |p |43874.69 | | 3.938164 |27 | |00001 03453| +550056 |AB Mon |070045.3-075034 |EA/DS | 13.8 | 15.7 | |p |25324.39 | | 9.51849 |09 *| |00387 00380| +550057 |AC Mon *|070059.8-084232 |DCEP | 9.75 | 10.47 | |V |37683.203 | | 8.01425 |30 |F5-G1 |03263 08588| +550058 |AD Mon |070112.4-073429 |INS: | 13.0 | 14.7 | |p | | | | | |00387 00531| +550059 |AE Mon |070125.0-022020 |EA | 13.2 | 14.6 | |p |25322.349 | | 3.2287045 |16 *| |05285 05285| +550060 |AF Mon |070353.1-065325 |M | 11.5 | 15.7 | |p |30373. | | 289.6 | |M7 |01007 00380| +550061 |AG Mon |070913.7-022132 |M | 11.6 | 17. : | |p |35113. | | 155.17 | | |00001 00408| +550062 |AH Mon |071226.7-015200 |M | 11. | 15.2 | |p |30930. | | 374. | |M7 |00387 05285| +550063 |AI Mon |071250.8-042839 |RRAB | 13.7 | 15.1 | |p |30013.3875 | | 0.42580407 |22 | |05285 05285| +550064 |AK Mon *|071249.9-030329 |M | 11.5 | 15.8 | |p |34717. | | 328.6 | |M5(S5,1) |00001 00380| +550065 |AL Mon |071252.2-052047 |M | 12.5 | 18.0 | |p |25610. | | 243.5 | |M3 |00387 00531| +550066 |AM Mon |071248.6-075541 |M | 12.1 | 16.5 | |p |27370. | | 432. | |M10 |00387 00531| +550067 |AN Mon *|065936.4-103722 |EA | 11.6 | 12.7 | 11.7 : |V |44685.390 | | 2.4458028 |15 *| |00001 08588| +550068 |AO Mon *|070636.3-043725 |EA/DM | 9.6 | 10.23 | 10.16 |V |40588.3272 | | 1.884660 |17 *|B3+B5 |00001 08953| +550069 |AP Mon |070933.9-064358 |LB | 8.74 | 9.5 | |V | | | | |M3 |00391 00391| +550070 |AQ Mon *|071417.7-071345 |EA/DM | 10.5 | 11.3 | 10.9 |p |25620.392 | | 2.545560 |06 |A0 |00389 00391| +550071 |AR Mon *|072048.5-051536 |EA/GS/RS | 8.62 | 9.47 | 9.03 |V |26606.408 | | 21.20911 |08 |G8III+K0III |08623 00391| +550072 |AS Mon |072223.6-085159 |EA | 10.7 | 11.4 | |V |26721.569 | | 1.836486 |20 *|A |00391 00391| +550073 |AT Mon |072429.9-073330 |EA/D: | 10.5 | 11.4 | |p |26607.500 | | 2.02902 |12 |F2 |09405 00391| +550074 |AU Mon *|065454.7-012233 |EA/DS: | 8.11 | 9.06 | 8.2 : |V |42801.3752 | | 11.1130371 |10 *|B5ea+F0 |09407 00391| +550075 |AV Mon *|072816.1-043651 |EA/SD: | 10.8 | 11.7 |( 0.04 )|V |26709.172 | | 6.947353 |10 *|A0 |00390 00391| +550076 |AW Mon *|074843.8-102642 |EA/DS | 10.5 | 12.2 | |p |35932.9 | | 20.820 |08 *|A2ea |09409 00391| +550077 |AX Mon *|063032.9+055201 |* | 6.59 | 6.94 | |V |39550. | | 232.5 | |B1eqIV+K1II-III |09410 BD | +550078 |AY Mon |065318.0+090816 |EA/SD | 13.3 | 15.5 | |V |28247.464 | | 2.144235 |17 *| |00001 00489| +550079 |AZ Mon |065745.2+031809 |M | 11.7 |< 15.7 | |p |32964. | | 388.9 | |M9 |00001 05285| +550080 |BB Mon *|070116.5-084143 |EA/KE | 10.6 | 11.3 |( 0.04 )|p |26681.5628 | | 0.7326988 |18 |A0 |09414 08588| +550081 |BC Mon *|075859.2-043005 |M | 10.0 |< 13.2 | |p |40284. | | 272.3 | |M3e |00001 00391| +550082 |BD Mon |080101.4-053736 |M | 10.3 |< 12.4 | |V |42039. | | 373.26 | |S5,2e |00001 00391| +550083 |BE Mon *|064005.6+073621 |DCEP | 10.19 | 10.88 | |V |41880.240 | | 2.705510 |26 |F4-G0 |08300 03455| +550084 |BF Mon |064736.3+093820 |M | 13.5 |< 15.5 | |p |27470. | | 283. | |M6 |00394 00489| +550085 |BG Mon |065622.8+070440 |SRB | 9.2 | 10.4 | |V |31881. | | 30. : | |C5,2(N) |02563 00491| +550086 |BH Mon *|065638.7+091924 |EA | 14. | 15. | |p |26297.576 | | 2.324668 |13 | |03460 00409| +550087 |BI Mon |070102.4+104419 |M | 10.5 |< 15.5 | |p |41386. | | 430.31 | | |00001 00489| +550088 |BK Mon |070250.7+030924 |SRA | 14.2 | 15.9 | |p |27420. | | 245. | |M4 |05285 05285| +550089 |BL Mon |070332.2+053036 |M | 13.0 | 16.0 | |p |25682. | | 144. | | |00394 00492| +550090 |BM Mon *|070845.3+004146 |EA/SD | 12.2 | 13.8 | 12.3 |p |27455.398 | | 1.2449426 |15 *|B1V: |00001 05285| +550091 |BN Mon |062158.0+072058 |SRB | 12.7 | 16. | |p | | | 600. : | |C4,3e(N2) |07129 00398| +550092 |BO Mon *|075950.1-032837 |EA/SD | 10.0 | 12.1 | 10.1 |V |43507.5970 | | 2.2252193 |15 *|A2 |08593 08953| +550093 |BP Mon *|065655.4+050144 |EA/SD | 13.1 | 15.7 | |p |26772.352 | | 2.0568384 |13 *| |00382 02310| +550094 |BQ Mon |070425.8-095758 |LB | 13.3 | 14.9 | |p | | | | |M6-M7 |00387 02311| +550095 |BR Mon |070722.4-011924 |LB | 12.2 | 13.5 | |p | | | | |M5 |05285 05285| +550096 |BS Mon |072405.2-033236 |LB: | 9.5 | 10.4 | |V | | | | |M0p |00391 00391| +550097 |BT Mon *|064347.2-020113 |NA+EA | 4.0 : | 18.7 | |p |29503. :|1939 | | |pec(NOVA) |09416 05285| +550098 |BU Mon |065033.6+034416 |SRB | 12.0 | 14.2 | |p |30724. | | 134.4 | |M3 |05285 05285| +550099 |BV Mon |065651.1+043058 |DCEP | 12.07 | 13.33 | |B |27834.29 | | 3.0143 |29 | |00400 00400| +550100 |BW Mon |071122.2-012939 |SRA | 11.3 | 12.8 | |p |28225. | | 157.0 | |M1 |01002 05285| +550101 |BX Mon *|072522.8-033551 |* | 9.5 | 13.4 | |p |30345. | | 1374. |39 |M4ep+F0II-III |09420 06286| +550102 |BY Mon |062649.7+033959 |SRB | 13.4 | 14.3 | |p |27363. | | 85. | |M6 |00382 02321| +550103 |BZ Mon *|063738.2+045746 |EA/SD | 12.1 | 15.4 | |p |43192.663 | | 3.451804 |06 | |09422 02321| +550104 |CC Mon *|063956.3+064229 |EA/KE: | 13.7 | 14.4 | |p |25299.32 | | 1.401385 |18 | |00382 02336| +550105 |CD Mon *|064030.4-010445 |M | 14.1 |< 18. | |p |30441. | | 268.1 | |M6.5 |00001 05285| +550106 |CE Mon *|064657.4+030326 |EA/SD | 14.1 | 16.3 | 14.2 |p |25620.596 | | 4.109430 |14 *| |05285 05285| +550107 |CF Mon *|064922.0-002347 |EA | 13.6 | 14.9 | 13.7 |p |30049.206 | | 2.6104738 |13 | |05285 05285| +550108 |CG Mon |065127.2+051322 |M | 11.2 | 15.0 | |p |37335. | | 419.11 | |C6,2e(N:) |00001 02310| +550109 |CH Mon *|065138.1+055613 |EA/SD | 13.1 | 15.9 | |p |26040.42 | | 6.922312 |08 | |00382 02321| +550110 |CI Mon |065219.9+014449 |M | 13.1 |< 16.5 | |p |26045. | | 403.5 | | |05285 05285| +550111 |CK Mon |065346.8+053642 |EA/SD | 12.7 | 14.4 | |p |25301.375 | | 2.057022 |16 | |00382 02321| +550112 |CL Mon |065536.7+062243 |M | 11.0 | 17.5 | |p |37440. | | 497.15 | |C6,3e(N6e) |00001 02310| +550113 |CM Mon |065632.9+043942 |M | 13.0 |< 16.0 | |p |28240. | | 150. | | |00382 02321| +550114 |CN Mon |065635.4-003113 |M | 13.0 |< 18. | |p |25286. | | 373.6 | |M7 |05285 05285| +550115 |CO Mon |065704.0+061901 |SRB | 12.9 | 14.0 | |p |27375. | | 127. |61 |C5,5(N3) |00382 02336| +550116 |CP Mon |070011.9+040825 |EA/SD | 13.0 | 13.9 | |p |25981.575 | | 1.8836801 |14 *| |05285 05285| +550117 |CQ Mon |062714.0+044631 |LB | 12.3 | 13.7 | |p | | | | |M6 |00382 02310| +550118 |CR Mon |063124.3-003059 |LB | 13.8 | 15.4 | |p | | | | |C |00382 02321| +550119 |CS Mon *|063210.9+063911 |CEP | 10.71 | 11.30 | |V |40862.66 | | 6.7317 |30 | |07934 08632| +550120 |CT Mon *|063254.4+050755 |LB | 13.1 | 14.4 | |p | | | | |M6 |00382 02321| +550121 |CU Mon *|063246.7+000235 |DCEP | 13.20 | 13.95 | |V |38428.223 | | 4.707873 |28 | |03453 03453| +550122 |CV Mon *|063704.8+030350 |DCEP | 9.90 | 10.70 | |V |42773.136 | | 5.378898 |26 | |08632 08633| +550123 |CW Mon |063654.5+000218 |UGSS | 11.9 | 16.3 | |p | | |( 121.7 ) | | |09201 08852| +550124 |CX Mon |063718.5+005516 |LB | 11.8 | 12.7 | |p | | | | |S6:/5+ |00382 08087| +550125 |CY Mon |063831.8-013639 |SRB | 14.0 | 15.6 | |p | | | 150. : | | |05285 05285| +550126 |CZ Mon |064440.7+031859 |LB | 12.5 | 14.5 | |p | | | | |C4,5(N5) |00382 00492| +550127 |DD Mon *|064557.8-001732 |EB/KE | 11.1 | 11.8 | 11.3 |p |30321.453 | | 0.56801193 | |B5 |05285 05285| +550128 |DE Mon |064716.3+001338 |LB | 13.6 | 15.2 | |p | | | | |C5,4(N) |00382 02321| +550129 |DF Mon *|064736.0+004056 |LB | 12.5 | 14.8 | |B | | | | |C4-5,4-5(N) |00382 02321| +550130 |DG Mon |064805.1+003217 |LB | 12.5 | 15.0 | |p | | | | |M2 |00382 02321| +550131 |DH Mon |064923.7+040429 |LB | 15.1 |< 16. | |p | | | | |C |00382 02321| +550132 |DI Mon |064936.3+031019 |SRB | 11.0 | 12.0 | |p | | | 60. | |M3-M6 |05285 05285| +550133 |DK Mon |065039.2+014349 |SR: | 13.1 | 14.0 | |p | | | | | |03165 02336| +550134 |DL Mon |065155.5+051109 |LB | 15.2 | 17.5 | |p | | | | |C |00382 02310| +550135 |DM Mon |065351.9+015344 |LB | 14.1 | 15.5 | |p | | | | |M6.5 |05285 02321| +550136 |DN Mon *|065715.8+045615 |EB/KE | 13.2 | 14.0 | 13.9 |p |27397.528 | | 1.201372 | | |00382 02322| +550137 |DO Mon |070000.5+025607 |LB | 13.4 | 14.5 | |p | | | | |M4III |05285 02322| +550138 |DP Mon |062543.9+063919 |S: | 13.8 | 15.0 | |p | | | | | |00382 02336| +550139 |DQ Mon |063144.6+065741 |EA | 12.5 | 14.7 | |p |35164.405 | | | | |00382 02321| +550140 |DR Mon *|063301.9+060804 |EA | 14.1 | 15.0 | |p |27397.484 | | 3.382750 |10 :*| |03462 02321| +550141 |DS Mon |064447.5-051749 |SRA | 13.7 |< 15.5 | |p |25234. | | 279. | |M6 |00387 00408| +550142 |DT Mon *|064520.3-014247 |SRB | 13.7 | 15.4 | |p | | | | | |05285 02322| +550143 |DU Mon |064518.2-090305 |RRAB | 14.2 | 15.3 | |p |25622.51 | | 0.5836044 |19 | |00387 02322| +550144 |DV Mon |064519.4-085020 |RRAB | 12.8 | 13.2 | |p |25246.50 | | 0.413394 |17 | |00387 02322| +550145 |DW Mon *|064751.4-024119 |EA/D | 12.9 | 13.4 | |p |25969.429 | | 3.5693492 |13 *| |05285 02322| +550146 |DX Mon |064757.5-020725 |LB | 12.9 | 13.8 | |p | | | | |M2 |05285 02310| +550147 |DY Mon |064856.3-060355 |EA/DS: | 15.2 | 16.2 | |p |25299.22 | | 8.6700 |07 : | |00387 02322| +550148 |DZ Mon |064956.4-044938 |IS: | 13.9 | 15.9 | |p | | | | | |00387 02310| +550149 |EE Mon *|065048.6-075850 |DCEP | 13.1 | 14.4 | |p |30080.16 | | 4.80896 |18 | |00402 00380| +550150 |EF Mon |065047.6-084953 |LB | 13.4 | 14.8 | |p | | | | |M7 |00387 02322| +550151 |EG Mon |065206.2-040153 |SRB | 12.0 | 14.0 | |p | | | 175. : | |M6-M7 |05285 05285| +550152 |EH Mon *|065208.7-070353 |EA/SD: | 13.8 | 16.3 | |p |30142.989 | | 3.63468913 |10 | |00408 00408| +550153 |EI Mon |065227.3-054552 |EA/K: | 13.9 | 14.4 | |p |25328.31 | | 0.910743 |25 *| |00387 02310| +550154 |EK Mon *|065246.2-022730 |DCEP | 10.77 | 11.42 | |V |40896.54 | | 3.957941 |31 | |03453 03453| +550155 |EL Mon |065445.8-064006 |LB | 12.2 | 13.4 | |p | | | | |M5-M6 |00387 02322| +550156 |EM Mon |065454.7-080118 |SRA | 12.1 | 14.8 | |p |25610. | | 220.5 | |C(R:) |00387 02311| +550157 |EN Mon |065540.1-053102 |LB | 13.5 | 14.7 | |p | | | | |M2S |00387 02322| +550158 |EO Mon |065549.1-065334 |LB | 13.0 | 13.8 | |p | | | | |M5-M6 |00387 02322| +550159 |EP Mon *|065633.4-052110 |EA/KE: | 10.5 | 11.1 | |V |32888.576 | | 1.1480993 |18 |A2 |08638 00391| +550160 |EQ Mon |065737.2-094803 |UGSU | 13.4 | 16.0 | |p | | |( 13.9 ) | | |00387 08588| +550161 |ER Mon |065801.3-080246 |M | 14.0 |< 16.5 | |p |25338. | | 326. | |M9: |00387 02322| +550162 |ES Mon *|065948.6-072511 |EA/DS: | 13.0 | 14.6 | |p |29994.301 | | 11.9977 |06 | |01003 00380| +550163 |ET Mon |070052.9-072418 |EA | 15.2 | 16.5 | |p |25619.311 | | 4.343621 |12 | |00387 02322| +550164 |EU Mon |070120.2-053145 |LB | 14.5 | 16.5 | |p | | | | |C(N) |00387 02322| +550165 |EV Mon |070208.6+104543 |M | 11.5 | 16.5 | |p |32248. | | 399.73 | | |00001 00489| +550166 |EW Mon *|070130.5-080111 |EB/KE | 13.8 | 14.2 | 14.2 |p |25299.32 | | 1.239674 | | |00387 02322| +550167 |EX Mon |070159.1-080613 |LB | 13.0 | 14.6 | |p | | | | |M5 |00387 08588| +550168 |EY Mon |070226.3-073544 |M | 14.4 |< 16.5 | |p |25974. | | 285. | | |00387 02322| +550169 |EZ Mon |070525.4-051037 |RR | 12.9 | 13.4 | |p |26308.49 | | 0.376165 |35 | |00387 02311| +550170 |FF Mon |070635.5-032120 |LB | 13.0 | 14.2 | |p | | | | |M3 |00387 02311| +550171 |FG Mon |070708.5-074742 |DCEP | 13.5 | 14.8 | |p |25645.45 | | 4.49659 |22 | |00387 02322| +550172 |FH Mon *|070849.4-023201 |EA/SD | 14.1 | 15.7 |( 0.04 )|p |25246.423 | | 1.4250750 |16 *| |05285 05285| +550173 |FI Mon |071038.0-070722 |DCEP | 13.1 | 14.4 | |p |25324.34 | | 3.287822 |33 | |00387 02311| +550174 |FK Mon |071121.2-052709 |LB | 14.8 | 15.8 | |p | | | | |C(R:) |00387 02311| +550175 |FL Mon |071151.4-083947 |LB | 13.9 | 14.7 | |p | | | | |M4 |00387 02322| +550176 |FM Mon |071219.7-092533 |LB | 13.7 | 15.0 | |p | | | | |M5 |00387 02322| +550177 |FN Mon |071346.6-090947 |EA/SD | 13.5 | 15.2 | |p |25653.44 | | 1.454686 |18 *| |00001 02322| +550178 |FO Mon |071517.3-061255 |LB | 12.1 | 12.7 | |p | | | | |M4 |00387 02322| +550179 |FP Mon *|071508.8-095748 |EA/SD | 13.3 | 16.3 | |p |25534.64 | | 2.09850 |14 *| |00387 02311| +550180 |FQ Mon |071641.2-065649 |M: | 15.5 |< 16.5 | |p |25640. :| | | | |00387 02322| +550181 |FR Mon |071748.3-093810 |LB | 13.4 | 14.8 | |p | | | | |M6 |00387 02311| +550182 |FS Mon *|072442.3-050915 |EA/D: | 10.5 | 11.5 | 11.2 |p |34453.264 | | 1.905868 |10 |F2 |06584 00391| +550183 |FT Mon |062136.1+040425 |DCEP | 12.08 | 13.22 | |V |54179.58 | | 3.421861 |18 | |00001 00156| +550184 |FU Mon *|062223.9+032528 |SR | 11.6 | 12.7 | |p |29350. | | 309.8 | |C8,0J(CSe) |00403 00403| +550185 |FV Mon |065217.7+084839 |EA/SD | 11.5 | 13.9 | |p |28543.38 | | 7.51880 |08 *|A2 |00156 00156| +550186 |FW Mon *|075738.4-071122 |EA/SD: | 9.4 | 10.6 |( 0.04 )|p |27562.220 | | 3.8735903 |13 |B5+F2 |00001 00404| +550187 |FX Mon *|064505.6+090218 |M | 11. | 18.0 | |p |40275. | | 428.5 |35 |M1-M8 |00001 00409| +550188 |FY Mon |064708.6+031533 |EA | 13.4 | 14.2 | |p | | | 30.933 /N| | |05285 05285| +550189 |FZ Mon *|065922.5-075801 |EA | 13.8 | 14.9 | |p |30784.51 | | 3.7025 : | | |00966 02322| +550190 |GG Mon |070255.4-011613 |EA | 13.0 | 14.1 | |p |30190.174 | | 2.484740 |16 *| |05285 00405| +550191 |GH Mon *|070441.4-022819 |EA | 12.8 | 13.7 | 13.1 |p |30187.569 | | 0.70718676 |20 *| |05285 00406| +550192 |GI Mon |072647.1-064030 |NA | 5.2 : | 15.1 | |p |21595. |1918 | | |pec(NOVA) |09426 00571| +550193 |GK Mon |073936.6-005358 |M | 11.5 | 15.5 | |p |28937. | | 133. | | |02427 00541| +550194 |GL Mon |063546.5-052238 |SRB | 10.0 | 10.9 | |p |25500. | | 103.5 | |M4-M6.5 |00394 00391| +550195 |GM Mon |062321.8+073954 |RRAB | 13.5 | 14.5 | |p | | | | | |00085 02358| +550196 |GN Mon |062601.1+080353 |M | 14. |< 16.5 | |p | | | | |M9: |00085 02358| +550197 |GO Mon |063430.5+092414 |EA/DS | 12.5 |< 14.7 | |p |27100.25 | | 12.4670 |10 | |08647 00491| +550198 |GP Mon *|064041.8+095145 |INSB | 14.9 | 18.0 | |p | | | | |ea |00407 02359| +550199 |GQ Mon *|064056.2+093632 |INB | 15.0 |< 17.9 | |B | | | | |ea |00407 00557| +550200 |GR Mon *|064105.0+095047 |INSB | 14.3 | 17.3 | |B | | | | |ea |00407 02359| +550201 |GS Mon |064215.3-093944 |SR: | 15.5 |< 16.3 | |p | | | | | |02748 02359| +550202 |GT Mon |064244.5-014332 |SRB | 12.6 | 14.2 | |p | | | 135. : | |M5 |05285 02359| +550203 |GU Mon *|064446.9+001318 |EW | 11.8 | 12.5 | 12.5 |B |30345.347 | | 0.89668149 | | |05285 00380| +550204 |GV Mon *|064941.6+002812 |EA/SD: | 14.2 |< 15.6 |( 0.04 )|p |30049.498 | | 5.015243 |15 | |05285 00380| +550205 |GW Mon |064944.3-093541 |M | 14.0 |< 16.5 | |p |30788. | | | |M7 |02748 02360| +550206 |GX Mon *|065247.0+082519 |M | 13.2 |< 17.0 | |p |27578. | | 527. | |M9 |00407 02359| +550207 |GY Mon |065311.3-043434 |LB | 9.4 | 11.6 | |p | | | | |C6,3(N3/R8) |00085 08953| +550208 |GZ Mon |065448.4+082021 |M | 13.4 |< 17.1 | |p |30751. | | 236. | | |00407 02359| +550209 |HH Mon |065513.1-072538 |ISB: | 9.2 | 9.8 | |V | | | | |F5 |00104 08953| +550210 |HI Mon *|065549.1-040236 |EB/KE | 9.3 | 10.1 | 9.9 |V |30315.350 | | 1.5744326 | |B1V |05285 00380| +550211 |HK Mon |065708.2+114055 |EA/SD | 13.8 | 16.2 | |p |30376.590 | | 1.835575 |10 *| |03165 02359| +550212 |HL Mon |070252.0-014426 |RRAB | 14.3 | 15.8 | |p |30404.381 | | 0.49923605 |12 | |03453 00380| +550213 |HM Mon *|070302.9+001349 |EB | 13.4 | 14.2 | 13.6 |p |44631.323 | | 0.40765587 | | |00001 05285| +550214 |HN Mon |070429.9-085709 |M | 13.7 |< 17.0 | |p |30731. | | 410. | |M8 |02748 02360| +550215 |HO Mon *|071017.0+002529 |EA/SD: | 11.4 | 14.2 | |p |29999.390 | | 7.89448 |09 |A5 |05285 00380| +550216 |HP Mon *|071030.7-053300 |EA/SD | 13.2 | 15.4 | |p |29729.225 | | 1.454610 |15 | |00380 00380| +550217 |HQ Mon |071133.7+005207 |RV: | 12.4 | 14.2 | |p | | | 65. | | |05285 00380| +550218 |HR Mon *|071232.3-011031 |EA/SD | 14.0 | 15.5 |( 0.03 )|p |32965.481 | | 2.8442481 |14 *| |05285 00380| +550219 |HS Mon |071443.2-001403 |EA | 13.1 | 14.1 | |p |30323.480 | | 2.77246 |14 | |00380 00380| +550220 |HT Mon |071736.2-061654 |EA/SD: | 13.8 | 14.7 | |p |30110.238 | | 1.285946 |14 | |00380 00380| +550221 |HU Mon |071938.7-020021 |EA/SD: | 12.8 | 14.4 | |p |29640.484 | | 5.88148 |08 *| |00380 00380| +550222 |HV Mon |072035.7-062902 |EA/SD: | 13.1 |< 14.7 | |p |30130.387 | | 4.54851 |10 | |00408 00408| +550223 |HW Mon |072327.0-100331 |M: | 12.5 |< 17. | |p | | | | |M10: |00085 02360| +550224 |HX Mon |073647.2-104941 |EA/SD | 13.4 | 15.7 | |p |29339.321 | | 2.710563 |16 *| |03148 02360| +550225 |HY Mon *|074451.0-073249 |EB | 11.5 | 12.4 | 12.4 |p |27397.797 | | 1.56574 | |F8 |09428 00205| +550226 |HZ Mon |074604.6-002318 |M | 13. |< 15.5 | |p | | | | |Me |00409 00409| +550227 |II Mon |074624.9-094031 |M: | 15.0 |< 16. | |p | | | | | |00412 02361| +550228 |IK Mon |074647.4-104833 |M | 11.7 |< 16. | |p |36235. | | 387.0 | | |00001 02343| +550229 |IL Mon *|075536.0-033456 |EA/SD: | 10.6 | 11.6 | |p |32232.825 | | 4.02631 |07 |A0 |08013 08013| +550230 |IM Mon *|062301.5-031637 |EB/KE | 6.40 | 6.49 | 6.47 |B |33340.168 | | 1.190243 | |B5Vp+B7 |03465 05288| +550231 |IN Mon |063929.9+112431 |LB | 13.4 | 14.4 | |p | | | | |M4-M7 |00407 02346| +550232 |IO Mon *|064058.8+093058 |INSB | 14.0 | 15.9 | |p | | | | |G5-K6Vea |00407 02359| +550233 |IP Mon *|064100.9+093245 |INSB | 13.9 | 15.4 | |p | | | | |G8V-K6IIeV |00407 02359| +550234 |IQ Mon *|064117.2+095433 |INSB | 14.7 | 17.7 | |B | | | | |ea |00407 02359| +550235 |IR Mon *|064300.0+111353 |RRAB | 14.7 | 16.4 | |p |34342.562 | | 0.4576044 |10 | |03466 02359| +550236 |IS Mon *|064514.2+100547 |EA/SD | 11.5 | 13.5 |( 0.05 )|p |27099.26 | | 4.04761 |18 *| |00407 02346| +550237 |IT Mon |065400.1+090007 |LB | 13.5 | 14.8 | |p | | | | |C |00407 02346| +550238 |IU Mon |065506.2+101242 |EA/SD | 12.5 | 14.8 | |p |27502.182 | | 5.638605 |09 *| |00407 02359| +550239 |IV Mon |065621.8+105729 |LB | 12.2 | 13.6 | |p | | | | |C6-,4(N) |00407 02346| +550240 |IW Mon |065634.3+082008 |LB | 14.5 | 15.8 | |p | | | | | |00407 00542| +550241 |IX Mon *|065747.5+114821 |EB/KE | 12.6 | 13.1 | 12.8 |p |27100.408 | | 1.1032704 | | |00407 02352| +550242 |IY Mon |070039.3+103452 |M | 11.7 |< 16.8 | |p |28221. | | 338. | |M0 |00407 02352| +550243 |IZ Mon *|070044.8+084903 |EB | 11.9 | 12.6 | 12.0 |p |27344.621 | | 0.7798089 | | |00001 02346| +550244 |KK Mon |070128.0+102638 |SR | 13.4 | 15.0 | |p | | | | | |03165 02352| +550245 |KL Mon |070346.1+085426 |LB | 12.6 | 13.9 | |p | | | | |C(N) |00407 02346| +550246 |KM Mon |070442.1+090129 |M | 14.5 |< 17.2 | |p |30432. | | 256. | | |00407 02346| +550247 |KN Mon |072550.8-104108 |LB | 12.4 | 14.5 | |p | | | | |S |00412 02342| +550248 |KO Mon |073007.7-092317 |LB | 12.4 | 13.4 | |p | | | | |M6 |00412 02360| +550249 |KP Mon |073006.8-105321 |LB | 13.5 | 14.3 | |p | | | | |M2S |00412 02311| +550250 |KQ Mon |073121.1-102149 |L | 12.1 | 13.0 | |p | | | | | |00412 02342| +550251 |KR Mon |075623.0-004344 |S: | 11.7 | 13.0 | |p | | | | |G3V |00572 UCAC2| +550252 |KS Mon |061944.2-051708 |SRB | 9.5 | 10.7 | |p | | | | |MA |00202 08953| +550253 |KT Mon |062518.5+052632 |NA | 9.8 | 15.5 | |p |30718. |1942 | | |pec(NOVA) |00413 06067| +550254 |KU Mon *|063939.4+094522 |INS | 15.4 | 17.7 | |p | | | | |ea |02751 02749| +550255 |KV Mon *|063941.5+094620 |INSB | 14.5 | 17.0 | |p | | | | |K3e |02751 00557| +550256 |KW Mon *|064016.9+092911 |IN | 12.8 | 13.8 | |B | | | | |ea |02751 02750| +550257 |KX Mon *|064023.1+092743 |INS | 15.7 | 18.3 | |p | | | | |ea |02751 02749| +550258 |KY Mon *|064024.1+093413 |INS | 14.8 |< 17.9 | |B | | | | |e |02751 02749| +550259 |KZ Mon *|064025.5+094826 |IN | 15.3 | 17.1 | |B | | | | |ea |02750 02749| +550260 |LL Mon *|064025.9+095058 |INSB | 14.9 | 18.0 | |p | | | | |K2e |02751 00557| +550261 |LM Mon *|064039.1+095059 |INB | 14.8 | 17.2 | |B | | | | |K3e |02751 04108| +550262 |LN Mon *|064041.5+095518 |IN | 15.2 | 16.6 | |B | | | | |ea |02750 02750| +550263 |LO Mon *|064041.1+095257 |INB | 14.6 | 17.2 | |B | | | | |ea |02751 02749| +550264 |LP Mon *|064041.3+095103 |INB | 14.8 | 16.8 | |p | | | | |M0e |02751 00557| +550265 |LQ Mon *|064043.2+094708 |INT | 15.0 | 18.0 | |B | | | | |K6Ve(T) |02751 00557| +550266 |LR Mon *|064047.5+094929 |INB | 14.0 | 15.9 | |B | | | | |K3-K6Ve |02751 04108| +550267 |LS Mon *|064048.4+094840 |IN | 16.0 | 18.5 | |p | | | | |ea |02751 00557| +550268 |LT Mon *|064049.9+093650 |INST | 14.3 | 16.8 | |B | | | | |K1e(T) |02751 04108| +550269 |LU Mon *|064056.8+093750 |INT | 14.6 | 16.82 | |B | | | | |K5IIe(T) |02751 04108| +550270 |LV Mon *|064059.7+092844 |INSB | 15.1 | 17.5 | |p | | | | |ea |02751 04108| +550271 |LW Mon *|064103.4+094046 |INB | 15.2 | 17.8 | |p | | | | |K7e |02751 04108| +550272 |LX Mon *|064105.8+094818 |INT(YY) | 14.5 | 17.5 | |B | | | | |K7e(T) |02751 04108| +550273 |LY Mon *|064104.3+092453 |INT | 15.3 | 17.5 | |p | | | | |K5e(T) |02751 00557| +550274 |LZ Mon *|064108.8+092344 |IN | 15.2 | 16.5 | |B | | | | |ea |02751 02750| +550275 |MM Mon *|064112.5+095232 |INT(YY) | 13.8 | 15.6 | |B | | | | |K3IIIe(T) |02751 02750| +550276 |MN Mon *|064116.8+092731 |IN | 14.6 | 16.5 | |B | | | | |ea |02751 04108| +550277 |MO Mon *|064131.1+092658 |INT(YY) | 13.9 | 16.2 | |B | | | | |K2IV-K5II-IIIe(T)|02751 04108| +550278 |MP Mon *|064142.9+092509 |IN | 15.5 | 18.3 | |B | | | | |ea |02751 00557| +550279 |MQ Mon *|064208.7+094122 |INB | 14.8 | 16.3 | |B | | | | |K3e |02751 04108| +550280 |MR Mon |064711.5+013146 |LB | 9.6 | 11.2 | |p | | | | |M3-M5 |05285 05285| +550281 |MS Mon |065258.6-000612 |EA/DS | 14.2 | 15.5 : | |p |29229.36 | | 78.0003 |03 *| |05285 00408| +550282 |MT Mon |065558.3-032059 |EA | 14.0 | 14.8 | |p |30134.2189 | | 3.536315 |06 *| |00408 05285| +550283 |MU Mon |070250.2+113108 |EB | 14.1 | 14.6 | |p |33682.27 | | 1.20 : | | |00407 02359| +550284 |MV Mon |070338.2-031111 |SRA | 11.9 | 13.2 | |p |30745. | | 184.4 | |M7 |02748 00408| +550285 |MW Mon |071223.4-012453 |SR: | 14.1 | 15.1 | |p | | | | | |05285 00408| +550286 |MX Mon *|071233.0-042714 |EB/KE | 11.4 | 12.1 | 11.7 |p |30130.2166 | | 0.68644524 | |A5 |05285 00408| +550287 |MY Mon |071550.1-042945 |EA | 14.3 |< 14.8 | |p |29641.212 | | 8.6692 |12 : | |00408 00408| +550288 |MZ Mon |071619.1-021847 |SR | 12.0 | 13.0 | |p | | | 200. : | | |00408 00408| +550289 |NN Mon *|071926.1-012634 |EA/SD | 12.7 | 13.9 | 12.9 |p |30131.2530 | | 0.912339 |20 | |00408 00408| +550290 |NO Mon |072010.7-041246 |SRA | 13.4 |< 15.3 | |p |30108. | | 133. | |M4 |00408 00408| +550291 |NP Mon |072101.0-014617 |SR | 12.6 | 13.8 | |p |30440. | | | | |00408 00408| +550292 |NQ Mon |072511.8-091711 |RR | 13.8 | 15.2 | |p | | | | | |00412 02360| +550293 |NR Mon |072626.8-085536 |LB: | 10.2 | 11.4 | |p | | | | |M6 |00416 08953| +550294 |NS Mon *|063608.0+075144 |EW/DW | 10.6 | 11.1 | 11.1 |p |41599.600 | | 0.9399163 | |G0 |09432 09432| +550295 |NT Mon *|064030.9+093441 |INSB | 14.7 |< 17.9 | |p | | | | |ea |02751 04108| +550296 |NU Mon *|064036.5+095046 |INS | 15.0 | 18.3 | |B | | | | |ea |02751 04108| +550297 |NV Mon *|064037.9+093455 |IN | 16.0 | 18.2 | |B | | | | |ea |04104 04108| +550298 |NW Mon *|064040.1+093503 |INB | 14.6 | 16.4 | |B | | | | |K4e |02751 04108| +550299 |NX Mon *|064041.1+093359 |INT | 14.5 | 16.8 | |B | | | | |cont(T) |02751 04108| +550300 |NY Mon *|064047.1+093241 |IN | 14.8 | 17.3 | |B | | | | |ea |02751 04108| +550301 |NZ Mon *|064051.6+092845 |IN | 15.4 | 17.5 | |B | | | | |ea |02751 04108| +550302 |OO Mon *|064056.8+093016 |INS | 15.8 | 18.0 | |B | | | | |ea |02751 00557| +550303 |OP Mon *|064104.8+094434 |UVN: | 15.4 |< 19. | |B | | | | | |02751 00557| +550304 |OQ Mon *|064106.9+092925 |UVN: | 15.6 | 18.8 | |B | | | | |ea: |02751 00557| +550305 |OR Mon *|064109.1+093010 |INS | 15.1 | 18. | |B | | | | |ea |02751 00557| +550306 |OS Mon *|064113.3+092808 |UVN: | 15.8 | 18.5 | |B | | | | | |02751 00557| +550307 |OT Mon *|064116.7+092953 |IN | 14.5 | 16.8 | |B | | | | |ea |02751 09435| +550308 |OU Mon *|064117.7+092927 |IN: | 15.3 | 17.6 | |B | | | | | |02827 USNO | +550309 |OV Mon *|064121.0+093337 |INB | 14.7 | 17.0 | |B | | | | |M0e |02751 04108| +550310 |OW Mon *|064136.3+100910 |INB | 14.6 | 16.1 | |B | | | | |K2Ve |02750 04108| +550311 |OX Mon *|064138.8+100935 |INB | 14.0 | 15.8 | |B | | | | |K2e |02750 04108| +550312 |OY Mon *|064139.7+094029 |INT | 14.0 | 16.0 | |B | | | | |K3-K5Ve(T) |02824 04108| +550313 |OZ Mon *|064143.8+094051 |INSB | 14.2 | 15.6 | |B | | | | |K5e |02751 04108| +550314 |PP Mon *|064148.8+100704 |IN | 15.2 | 18.0 | |B | | | | |ea |02824 04108| +550315 |PQ Mon *|064153.0+095803 |IN | 14.3 | 16.8 | |B | | | | |ea |02751 04108| +550316 |PR Mon *|073821.5-100446 |E | 11.0 | 11.7 | |p |29726.200 | | 1.12371 : | |A |03469 02360| +550317 |PS Mon |080852.0-102347 |SR: | 10. | 10.8 | |p |34040. | | | |M |00500 00391| +550318 |PT Mon *|064032.0+094936 |INT | 15.2 | 18.1 | |B | | | | |K5:e(T) |02751 00557| +550319 |PU Mon *|064047.4+094850 |INS | 15.4 | 18.0 | |B | | | | | |02751 00557| +550320 |PV Mon *|064049.3+092351 |IN | 15.8 |< 17.9 | |p | | | | |ea |00830 04108| +550321 |PW Mon *|064104.6+093832 |INT | 15.8 | 18.5 | |p | | | | |M2e(T) |00830 04108| +550322 |PX Mon *|064119.1+092630 |INS | 15.8 | 18.5 | |B | | | | |ea |00830 04108| +550323 |PY Mon *|064230.5+090927 |INB | 13.9 | 15.8 | |B | | | | |K1Ve |00830 04108| +550324 |PZ Mon |064821.1+011308 |ISB: | 9.6 | 11.1 | |p | | | | |K2Ve |05285 05285| +550325 |QQ Mon |065255.8+073602 |M | 13. |< 15.5 | |p |27100. | | 222. : | |M6.5 |00001 00409| +550326 |QR Mon *|065406.3+004737 |SRB | 10.6 | 12.3 | |p | | | | |M5III-M7 |05285 05285| +550327 |QS Mon |072513.1-075243 |M | 12.5 |< 15.5 | |p |37308. | | 378. | | |04122 00541| +550328 |QT Mon *|063934.4+095452 |INS | 16.0 |< 18.5 | |B | | | | |ea |02751 00557| +550329 |QU Mon *|063933.4+095202 |INS | 16.2 | 18.0 | |B | | | | |ea |04104 04108| +550330 |QV Mon *|063955.7+094732 |UVN | 16.1 | 18.7 | |B | | | | | |02751 02751| +550331 |QW Mon *|063959.3+092725 |INS | 17.0 | 19.4 | |B | | | | | |02751 02751| +550332 |QX Mon *|064011.1+093806 |INB | 16.9 | 19.0 | |B | | | | |M1e |02751 02751| +550333 |QY Mon *|064013.7+095631 |INS | 15.3 | 17.6 | |B | | | | |ea |02751 04108| +550334 |QZ Mon *|064027.6+095052 |UVN | 15.6 |< 19. | |p | | | | | |02751 02751| +550335 |V0335 Mon *|064029.8+094222 |INS | 16.5 | 19.2 | |B | | | | | |02751 02751| +550336 |V0336 Mon *|064037.5+095522 |UVN | 16.0 | 18.6 | |B | | | | | |02751 02751| +550337 |V0337 Mon *|064036.6+095204 |IN | 14.9 | 17.2 | |B | | | | |ea |02751 04108| +550338 |V0338 Mon *|064038.2+092953 |UVN | 16.8 |< 18.4 | |B | | | | | |02751 02751| +550339 |V0339 Mon *|064040.4+095051 |IN | 15.3 | 17.6 | |B | | | | |ea |02751 00557| +550340 |V0340 Mon *|064042.2+094011 |IN | 15.4 | 17.5 | |B | | | | |ea |02751 02751| +550341 |V0341 Mon *|064045.2+092845 |IN | 13.7 | 16.6 | |B | | | | |ea |02751 02751| +550342 |V0342 Mon *|064048.8+094326 |IN | 17.2 | 19.2 | |B | | | | | |02751 02751| +550343 |V0343 Mon *|064049.8+095259 |UVN | 16.5 |< 18. | |p | | | | | |02751 02751| +550344 |V0344 Mon *|064050.5+095457 |INS | 15.0 | 17.7 | |B | | | | |ea |02751 04108| +550345 |V0345 Mon *|064051.5+094325 |INSB | 14.5 | 16.7 | |B | | | | |ea |04104 04108| +550346 |V0346 Mon *|064051.9+093756 |INS | 16.0 | 17.7 | |B | | | | | |02751 02751| +550347 |V0347 Mon *|064054.2+094921 |INT | 15.4 |< 17.9 | |B | | | | |M1e(T) |02751 00557| +550348 |V0348 Mon *|064054.1+094844 |IN | 15.8 | 18.5 | |p | | | | |ea |02751 04108| +550349 |V0349 Mon *|064056.3+093933 |IN | 15.6 : | 18.5 | |p | | | | |ea |02751 04108| +550350 |V0350 Mon *|064056.4+093554 |INS | 15.4 : | 18.3 | |B | | | | |ea |02751 04108| +550351 |V0351 Mon *|064059.3+094617 |INS | 16.1 | 17.8 | |B | | | | |ea |02751 02751| +550352 |V0352 Mon *|064100.0+092850 |IN | 16.1 | 18. | |B | | | | | |02751 02751| +550353 |V0353 Mon *|064101. +095056:|UVN | 13.7 | 16.8 | |B | | | | |K0 |02751 02751| +550354 |V0354 Mon *|064100.5+092916 |INS | 14.2 | 16.6 | |B | | | | | |02751 02751| +550355 |V0355 Mon *|064101.9+093842 |IN | 14.8 | 16.4 | |B | | | | | |02751 02751| +550356 |V0356 Mon *|064101.2+093453 |IN | 16.6 |< 19. | |B | | | | | |02751 02751| +550357 |V0357 Mon *|064104.3+094823 |IN | 15.2 | 16.5 | |p | | | | | |02751 02750| +550358 |V0358 Mon *|064103.9+095810 |UVN | 15.9 | 18.5 | |B | | | | | |02751 02751| +550359 |V0359 Mon *| | | | | | | | | | | | |=GR Mon +550360 |V0360 Mon *|064106.2+093623 |INB | 13.6 | 14.8 | |B | | | | |F8-K3ea |04104 04108| +550361 |V0361 Mon *|064106.4+092839 |IN | 17.2 | 19. | |B | | | | |ea: |02751 04108| +550362 |V0362 Mon *|064108.3+093024 |IN | 17.0 | 19.2 | |B | | | | | |02751 02751| +550363 |V0363 Mon *|064111.9+092632 |IN | 15.4 | 17.3 | |B | | | | |ea |02751 00557| +550364 |V0364 Mon *|064114.1+092641 |INS | 16.3 | 19.0 | |B | | | | | |02751 02751| +550365 |V0365 Mon *|064113.2+092611 |INB | 14.8 | 16.2 | |B | | | | |K4e |02751 02751| +550366 |V0366 Mon *|064114.9+092556 |INS | 16.5 | 19.5 | |p | | | | |ea |02751 04108| +550367 |V0367 Mon *|064115.1+092645 |IN | 16.1 | 18.0 | |B | | | | |ea |04104 04108| +550368 |V0368 Mon *|064118.4+093942 |INS | 15.8 | 18.3 | |B | | | | |ea |02751 04108| +550369 |V0369 Mon *|064139.6+093320 |UVN | 14.5 | 18.0 | |B | | | | | |02751 02751| +550370 |V0370 Mon *|064138.8+093212 |INB | 15.1 | 17.5 | |B | | | | |K4e |02751 02751| +550371 |V0371 Mon *|064144.4+092238 |IN | 15.2 | 16.9 | |B | | | | | |02751 02751| +550372 |V0372 Mon *|064126.1-043546 |SR | 12.5 | 13.8 | |p | | | | |SC(N) |02748 02359| +550373 |V0373 Mon *|064218.0+094017 |IN | 14.5 | 15.8 | |B | | | | | |02751 02750| +550374 |V0374 Mon |064709.8-035847 |LB | 15.0 | 16.2 | |p | | | | | |02748 02359| +550375 |V0375 Mon |064712.4-082658 |L | 14.7 | 15.5 | |p | | | | | |02748 02360| +550376 |V0376 Mon |064848.0-033617 |RRAB | 14.3 | 15.2 | |p |33703.378 | | 0.62292412 |31 | |03453 02360| +550377 |V0377 Mon |064902.1-013937 |SRB | 11.5 | 13.6 | |p | | | 335. : | |M6 |05123 00539| +550378 |V0378 Mon |065036.2-012901 |SR | 14.8 | 15.8 | |p |33010. | | | | |05285 02360| +550379 |V0379 Mon *|065127.1-024548 |EA | 15.0 | 16.2 | |p |31142.331 | | 3.3745345 |16 | |05285 02360| +550380 |V0380 Mon *|065209.2-013723 |EW/DW | 12.4 | 12.9 | 12.9 |p |25622.495 | | 0.99583300 | |F5 |05285 02360| +550381 |V0381 Mon |065632.8-074626 |L | 12.5 | 13.5 | |p | | | | | |02748 02360| +550382 |V0382 Mon |065657.7-080912 |INS | 14.5 | 15.7 | |p | | | | | |02748 02360| +550383 |V0383 Mon *|070437.9-015546 |EW | 14.7 | 15.4 | 15.2 |p |34776.373 | | 0.63468810 | | |05285 02360| +550384 |V0384 Mon *|070651.5-004102 |EB/KE | 12.6 | 13.1 | 13.0 |p |34769.533 | | 1.1184826 | | |05285 02360| +550385 |V0385 Mon |070911.3-055049 |SRA | 15.1 | 16.3 | |p |25641. | | 324. | | |02748 02360| +550386 |V0386 Mon |071231.7-034344 |RRAB | 14.5 | 15.8 | |p | | | | | |05285 02360| +550387 |V0387 Mon |071440.0-025930 |LB | 12.7 | 14.5 | |p | | | | | |02748 00541| +550388 |V0388 Mon |071433.1-092031 |IS: | 13.8 | 14.3 | |p | | | | | |02748 02360| +550389 |V0389 Mon *|071535.9-015554 |EB/KE: | 14.6 | 15.0 | 14.9 |p |30784.40 | | 1.0307 : | | |02748 02360| +550390 |V0390 Mon |071728.8-054105 |RRAB | 15.6 |< 16.2 | |p |30787.33 | | 0.502165 | | |02748 02360| +550391 |V0391 Mon |072220.4-050756 |RRAB | 12.5 | 12.9 | |p |30735.415 | | 0.464331 |15 | |02748 00539| +550392 |V0392 Mon |060757.2-042424 |E | 12.0 | 13.5 | |p |37365.274 | | | | |04096 04096| +550393 |V0393 Mon *|063510.1-004911 |EB | 14.1 | 15.3 | 14.3 |p |33006.354 | | 4.121715 | | |04428 04428| +550394 |V0394 Mon *|063649.1-035218 |EA | 12.0 | 13.2 |( 0.04 )|p |33706.328 | | 4.2650821 |14 | |04428 04428| +550395 |V0395 Mon *|063705.6+022113 |EA | 12.7 | 13.8 | |p |32915.435 | | 3.3685757 |14 *| |04428 04428| +550396 |V0396 Mon *|063836.5+033617 |EW/KW | 12.6 | 13.6 | 13.5 |p |34769.4175 | | 0.39634498 | | |04428 04428| +550397 |V0397 Mon *|063830.7-042149 |EB | 11.7 | 12.7 | 11.9 |p |34776.446 | | 4.7038566 | | |04428 04428| +550398 |V0398 Mon *|063920.5+092137 |INS | 17.8 | 18.5 | |B | | | | | |04104 02749| +550399 |V0399 Mon *|063925.5+093140 |IN | 18. | 18.5 | |B | | | | | |04104 02749| +550400 |V0400 Mon *|063932.4+091337 |IN | 16.5 | 17.5 | |B | | | | | |04104 02749| +550401 |V0401 Mon *|063950.4+101255 |INS | 14.1 | 16. | |B | | | | | |04104 USNO | +550402 |V0402 Mon *|063952.1+093152 |INS | 17.5 | 18.5 | |B | | | | | |04104 02749| +550403 |V0403 Mon *|063952.7+093250 |INS | 17.5 | 18.3 | |B | | | | | |04104 02749| +550404 |V0404 Mon *|063929.0-004431 |EA/D | 13.1 | 13.7 | |p |33304.471 | | 2.4452053 |16 | |04428 04428| +550405 |V0405 Mon *|064007.6+094801 |IN | 17.5 |< 19. | |B | | | | | |04104 02749| +550406 |V0406 Mon *|064009.4+092810 |INS | 17. : | 18.5 | |B | | | | | |04104 02749| +550407 |V0407 Mon *|064014.7+094549 |INS | 16.8 | 18.5 : | |B | | | | | |04104 02749| +550408 |V0408 Mon *|064020.3+095607 |IN | 15.9 | 18.1 | |B | | | | |ea |04104 04108| +550409 |V0409 Mon *|064021.1+094629 |IN | 17. | 18. | |B | | | | | |04104 02749| +550410 |V0410 Mon *|064024.4+094710 |INS | 17.5 | 18.5 | |B | | | | | |04104 02749| +550411 |V0411 Mon *|064025.5+095433 |IN | 17.5 | 18.5 | |B | | | | | |04104 02749| +550412 |V0412 Mon *|064029.8+095833 |IN | 17.0 | 18. | |B | | | | | |04104 02749| +550413 |V0413 Mon *|064031.6+094824 |IN | 15.5 | 17.6 | |B | | | | |ea |04104 04108| +550414 |V0414 Mon *|064031.8+093601 |INS | 17.0 | 18.2 | |B | | | | | |04104 02749| +550415 |V0415 Mon *|064032.8+095130 |IN | 15.7 | 17.4 | |B | | | | |ea |02751 02751| +550416 |V0416 Mon *|064034.3+092518 |INS | 16.5 | 18. | |B | | | | | |04104 02749| +550417 |V0417 Mon *|064042.8+093335 |INS | 16.8 | 17.7 | |B | | | | | |04104 02749| +550418 |V0418 Mon *|064044.3+092318 |IN | 16.6 | 18. | |B | | | | | |04104 02749| +550419 |V0419 Mon *|064053.6+093325 |INB | 14.5 | 15.8 | |B | | | | |K3Ve |04104 04108| +550420 |V0420 Mon *|064058.7+093614 |IN | 17.5 | 18.4 | |B | | | | |ea |04104 02749| +550421 |V0421 Mon *|064059.6+093511 |IN | 16.0 | 17.6 | |B | | | | |ea |02751 02751| +550422 |V0422 Mon *|064100.5+094504 |IN | 15.6 | 17.0 | |B | | | | | |02751 02751| +550423 |V0423 Mon *|064104.4+095319 |INS: | 16.8 | 17.8 | |B | | | | | |04104 02749| +550424 |V0424 Mon *|064104.2+095202 |INS | 15.6 | 17.5 | |B | | | | | |04104 02751| +550425 |V0425 Mon *|064104.4+095126 |IN | 15.4 | 16.9 | |B | | | | | |02751 02751| +550426 |V0426 Mon *|064106.8+092733 |INT | 13.72 | 15.0 | |B | | | | |G-Ke(T) |04104 04108| +550427 |V0427 Mon *|064107.2+092749 |INS: | 15.8 | 17.5 | |B | | | | | |04104 02749| +550428 |V0428 Mon *|064107.3+092556 |INS | 15.8 | 17.1 | |B | | | | | |04104 02749| +550429 |V0429 Mon *|064109.5+095151 |IN | 17.0 | 18.5 | |p | | | | |ea |04104 02750| +550430 |V0430 Mon *|064106.8+090217 |IN | 15.4 | 17.1 | |B | | | | |ea |04104 04108| +550431 |V0431 Mon *|064109.9+093020 |IN | 17.5 |< 18.8 | |B | | | | | |04104 02749| +550432 |V0432 Mon *|064118.3+093354 |INB | 14.9 | 16.7 | |B | | | | |K5-K6e |04104 04108| +550433 |V0433 Mon *|064122.8+092939 |IN | 15.01 | 17.3 | |B | | | | |ea |04104 04108| +550434 |V0434 Mon *|064124.2+094610 |INS | 17.5 | 18.5 | |B | | | | | |04104 02749| +550435 |V0435 Mon *|064147.4+093753 |UVN: | 17.4 | 19.2 | |B | | | | | |02751 02751| +550436 |V0436 Mon *|064149.2+101936 |IN | 16.2 | 18. | |B | | | | |ea |04104 04108| +550437 |V0437 Mon *|064154.6+094128 |INB | 15.0 | 15.9 | |B | | | | | |04104 02750| +550438 |V0438 Mon *|064157.1+095742 |IN | 15.6 | 17.0 | |B | | | | | |04104 02750| +550439 |V0439 Mon *|064204.3+093433 |INS | 17.5 | 18.5 | |B | | | | | |04104 02749| +550440 |V0440 Mon *|064211.7+094507 |IN | 17.5 | 18. | |B | | | | | |04104 02749| +550441 |V0441 Mon *|064214.4+094242 |INS: | 17.5 | 18.2 : | |B | | | | | |04104 02749| +550442 |V0442 Mon *|064219.5+034822 |EA/DM | 11.2 | 11.7 | 11.6 |p |32906.578 | | 1.6670128 |15 *| |04428 04428| +550443 |V0443 Mon *|064245.4+101130 |IN | 15.0 | 15.7 | |B | | | | | |04104 02750| +550444 |V0444 Mon *|064257.1+094249 |IN | 14.7 | 15.9 | |B | | | | | |04104 02750| +550445 |V0445 Mon *|064308.4-014643 |EB/D | 10.9 | 11.7 | 11.3 |p |33220.576 | | 3.1310574 | | |04428 04428| +550446 |V0446 Mon *|064317.4+010939 |CEP | 14.7 | 16.2 | |p |34770.276 | | 1.919459 |20 | |03453 03453| +550447 |V0447 Mon *|064416.0+042954 |CEP | 14.7 | 15.9 | |p |27340.494 | | 2.4838 |13 | |03148 02358| +550448 |V0448 Mon *|064745.0+012218 |EB/KE | 9.4 | 9.9 | 9.8 |p |32888.517 | | 1.1184666 | |A2 |04428 04428| +550449 |V0449 Mon *|064756.4+024756 |EA/SD: | 14.2 | 15.7 | |p |32939.478 | | 2.33922832 |20 | |05285 02358| +550450 |V0450 Mon *|064919.3+001951 |EB/DM | 12.1 | 12.7 | 12.6 |p |32233.339 | | 2.5970025 | |B5: |04428 04428| +550451 |V0451 Mon *|064938.6+011603 |EB/DM | 14.4 | 15.2 | 14.7 |p |33706.339 | | 1.8320840 | | |04428 04428| +550452 |V0452 Mon *|064955.9-041021 |EA/KE: | 12.6 | 13.2 | 12.7 |p |34086.347 | | 1.5383032 |18 | |04428 04428| +550453 |V0453 Mon *|065039.0-022207 |EW | 11.1 | 11.8 | 11.8 |p |33220.504 | | 0.68702530 | | |04428 04428| +550454 |V0454 Mon *|065356.1+013509 |EA/D | 12.0 | 12.4 | 12.2 |p |34446.310 | | 2.2475862 |14 *| |04428 04428| +550455 |V0455 Mon *|065500.9+000719 |EW | 14.5 | 15.3 | 15.3 |p |34444.310 | | 0.68162112 | | |04428 04428| +550456 |V0456 Mon *|065604.7+012221 |EA/SD | 13.6 | 15.9 | 13.7 |p |33022.338 | | 1.5732993 |18 *| |04428 04428| +550457 |V0457 Mon *|065655.4-015450 |EA | 13.6 | 14.4 | 14.3 |p |33327.415 | | 0.95095414 |18 | |04428 04428| +550458 |V0458 Mon *|065749.3+021153 |EW/KW | 13.3 | 13.9 | 13.8 |p |34769.500 | | 0.49521352 | | |04428 04428| +550459 |V0459 Mon *|065820.0+011900 |EB | 14.5 | 15.7 | 14.7 |p |31521.309 | | 2.8206121 | | |04428 04428| +550460 |V0460 Mon *|070016.6+020212 |EB/KE | 10.5 | 11.2 | 10.7 |p |32233.364 | | 1.3975793 | | |04428 04428| +550461 |V0461 Mon |070310.6+023317 |EA/SD: | 15.3 |< 16.5 | |p |32939.202 | | 5.047058 |15 | |04428 04428| +550462 |V0462 Mon |070430.2+032339 |EA | 15.3 | 16.5 | |p |32915.419 | | 3.4869059 |14 *| |04428 04428| +550463 |V0463 Mon *|070532.7+025608 |EA | 14.3 | 15.1 | |p |32233.459 | | 1.1238384 |30 : | |04428 04428| +550464 |V0464 Mon *|070543.7-030934 |EB | 12.1 | 12.9 | 12.3 |p |31852.354 | | 1.1264091 | | |04428 04428| +550465 |V0465 Mon *|070809.3-000357 |DCEP | 10.17 | 10.77 | |V |41698.687 | | 2.713176 |38 |G0 |08300 03453| +550466 |V0466 Mon *|072535.7-071405 |EA | 14. |< 15.5 | |p |36199.540 | | | | |04122 00541| +550467 |V0467 Mon |072629.0-032116 |M | 12. | 14.5 | |p |29590. | | 96. : | | |04122 00541| +550468 |V0468 Mon |073152.4-052614 |LB: | 13. | 15. | |p | | | | | |04125 04125| +550469 |V0469 Mon |073319.3-102920 |RRAB | 13.4 | 14.6 | |p |29334.327 | | 0.468583 |15 | |03148 02360| +550470 |V0470 Mon |074002.0-004731 |LB: | 13. | 14.5 | |p | | | | | |04125 04125| +550471 |V0471 Mon |074325.3-021802 |M | 14. |< 15.5 | |p |26750. | | 279. | | |04129 00541| +550472 |V0472 Mon |074553.6-090254 |LB: | 12. | 13.5 | |p | | | | | |04125 04125| +550473 |V0473 Mon |075452.6-094616 |LB: | 12.5 | 13.5 | |p | | | | | |04125 04125| +550474 |V0474 Mon *|055901.1-092256 |DSCT | 5.93 | 6.36 | |V |41661.1668 | | 0.13612600 | |F2IV |08668 BD | +550475 |V0475 Mon |062858.4+092808 |SR: | 11.6 | 13.2 | |I | | | 340. : | |M0: |03451 03451| +550476 |V0476 Mon |062934.5+094700 |SR: | 16.0 | 17.1 | |p | | | | |M4 |09403 09403| +550477 |V0477 Mon |062935.5+084717 |M | 17.0 |< 18. | |p |37360. :| | 820. : | |M0: |03451 03451| +550478 |V0478 Mon *|063009.6+094122 |INS | 14.9 | 16.7 | |p | | | | | |09403 09403| +550479 |V0479 Mon *|063044.8+094525 |IN: | 13.7 | 14.5 | |p | | | | | |09403 09403| +550480 |V0480 Mon |063053.0+094023 |E | 14.2 | 15.6 | |p | | | | | |09403 09403| +550481 |V0481 Mon *|063109.1+102611 |IN | 16.8 | 18.5 | |p | | | | | |09403 09403| +550482 |V0482 Mon *|063110.3+095918 |INS | 15.5 | 17.1 | |p | | | | | |09403 09403| +550483 |V0483 Mon *|063133.9+100228 |IN: | 16.7 | 18.0 | |p | | | | | |09403 09403| +550484 |V0484 Mon |063105.3-020848 |CEP | 14.2 | 15.3 | |p |34068.413 | | 3.135233 |39 | |03453 03453| +550485 |V0485 Mon |063145.3+012018 |LB | 13.6 | 14.7 | |p | | | | |M6-M8 |05123 05123| +550486 |V0486 Mon *|063234.4+101539 |INT | 16.2 | 18.4 | |p | | | | |cont(T) |09403 09403| +550487 |V0487 Mon *|063232.7+093809 |INS | 15.0 | 16.5 | |p | | | | | |09403 09403| +550488 |V0488 Mon *|063237.0+101523 |INS | 16.4 | 17.9 | |p | | | | | |09403 09403| +550489 |V0489 Mon *|063247.0+101638 |IN | 16.2 | 17.2 | |I | | | | | |09403 09403| +550490 |V0490 Mon *|063252.4+101843 |IN | 17.6 |< 18.5 | |p | | | | |ea |09403 09403| +550491 |V0491 Mon |063430.3+110441 |SRA | 12.0 | 13.6 | |I |36957. | | 234. |50 | |03451 03451| +550492 |V0492 Mon |063430.0+001214 |LB | 10.6 | 11.13 | |B | | | | |M4-M5 |05123 05123| +550493 |V0493 Mon *|063632.7+092538 |SRB: | 13.5 | 14.9 : | |V | | | | |C |07125 03451| +550494 |V0494 Mon *|063644.3-025145 |EA | 11.6 | 12.2 |( 0.05 )|p |34769.462 | | 0.8388121 |28 | |05123 05123| +550495 |V0495 Mon |063703.3-024927 |DCEP | 13.0 | 14.0 | |p |30731.134 | | 4.096583 |30 | |05123 05123| +550496 |V0496 Mon *|063744.7+031801 |EB | 12.5 | 13.3 | 12.8 |p |32915.4155 | | 0.6607649 | | |05123 05123| +550497 |V0497 Mon *|063938.2+071953 |M | 15.1 |< 16.2 | |p |37380. | | 328. |45 | |03451 03451| +550498 |V0498 Mon *|063944.3+015745 |EA | 10.3 | 10.6 | |p |33220.515 | | 1.2363909 |25 | |05123 05123| +550499 |V0499 Mon |064005.1+034107 |EA | 11.2 | 11.8 | |p |34776.37 | | | | |05123 05123| +550500 |V0500 Mon *|064026.3+093802 |INS: | 16.5 | 17.2 | |p | | | | | |05125 02749| +550501 |V0501 Mon *|064041.7-010640 |EA/D | 12.7 | 13.2 | 13.1 |p |34444.396 | | 7.021171 |04 *| |06178 05123| +550502 |V0502 Mon |064326.2-022950 |EB:/DS: | 12.2 | 13.2 | |p |33328. | | 27.43 : | | |05123 05123| +550503 |V0503 Mon *|064457.1+095048 |M | 16.6 |< 17.5 | |p |37560. | | 355. |50 : |C |03451 03451| +550504 |V0504 Mon |064443.9-035708 |CEP | 12.5 | 13.1 | |p |33705.564 | | 2.774050 |45 | |05123 05123| +550505 |V0505 Mon *|064550.0+022957 |EB/GS/D | 7.15 | 7.65 | 7.55 |V |44635.318 | | 53.7805 | |B5eaIb+B5 |09443 08953| +550506 |V0506 Mon |064636.5-035012 |EA | 13.3 | 14.0 | |p |36597.337 | | 32.000 /N| | |05123 05123| +550507 |V0507 Mon *|064658.8+011934 |EA/KE: | 13.7 | 14.3 | |p |34769.460 | | 1.0790233 |16 | |05123 05123| +550508 |V0508 Mon |064709.4+035802 |DCEP | 10.22 | 10.74 | |V |41732.070 | | 4.133608 |26 | |08300 03453| +550509 |V0509 Mon |064710.7-010215 |EA/SD: | 15.1 | 16.6 | |p |32979.369 | | 4.917424 |15 *| |05123 05123| +550510 |V0510 Mon *|064726.9+023101 |DCEP | 12.35 | 12.94 | |V |33000.403 | | 7.307175 |38 | |05123 05123| +550511 |V0511 Mon |064734.5+015513 |L | 12.1 | 12.8 | |p | | | | | |05123 05123| +550512 |V0512 Mon |064731.9-044259 |LB | 13.4 | 13.9 | |p | | | | | |03165 02310| +550513 |V0513 Mon *|064745.9+010640 |EA/SD | 14.7 |< 16.5 |( 0.04 )|p |34780.540 | | 3.4341399 |15 | |05123 05123| +550514 |V0514 Mon *|064918.6-000332 |EW | 12.8 | 13.3 | 13.3 |p |33330.4064 | | 0.55737224 | | |05123 05123| +550515 |V0515 Mon *|064921.1-020649 |EA | 12.3 | 12.9 | 12.7 |p |33304.4495 | | 0.87397300 |17 | |05123 05123| +550516 |V0516 Mon |065041.5+015154 |LB | 10.8 | 12.1 | |p | | | | | |05123 05123| +550517 |V0517 Mon |065052.5-000424 |LB | 11.4 | 12.3 | |p | | | | |M2 |05123 05123| +550518 |V0518 Mon |065109.0+003728 |RRC | 14.2 | 14.9 | |p |34769.522 | | 0.34874473 |41 | |03453 03453| +550519 |V0519 Mon |065128.9-000157 |LB | 9.4 | 10.3 | |p | | | | |M5III |05123 05123| +550520 |V0520 Mon |065512.4-012854 |LB | 12.1 | 12.8 | |p | | | | | |05123 05123| +550521 |V0521 Mon *|065553.6-001424 |EA/DM | 10.0 | 10.5 | 10.4 |p |33008.411 | | 2.9706633 |18 *|A0 |05123 05123| +550522 |V0522 Mon |065640.9-024355 |L | 11.1 | 12.1 | |p | | | | | |05123 05123| +550523 |V0523 Mon |065807.1-090138 |SRB | 6.95 | 7.45 | |V | | | 45. : | |MB |05128 08588| +550524 |V0524 Mon *|065901.2+021251 |EW/KW | 14.4 | 15.2 | 15.2 |p |34446.4420 | | 0.28361714 | | |05123 05123| +550525 |V0525 Mon |065920.5+012041 |L | 13.7 | 14.3 | |p | | | | | |05123 05123| +550526 |V0526 Mon *|070153.6-010752 |DCEPS | 8.45 | 8.78 | |V |40286.290 | | 2.674985 |48 |F6II |08053 05123| +550527 |V0527 Mon *|070205.6-015423 |EA | 12.2 | 12.9 |( 0.05 )|p |33327.448 | | 0.8245743 |22 *| |05123 05123| +550528 |V0528 Mon |070236.3+015959 |EA/SD: | 12.8 | 13.8 | |p |33294.382 | | 1.4237651 |23 : | |05123 05123| +550529 |V0529 Mon |070259.4+010954 |SR | 14.2 | 15.5 | |p | | | 290. : | | |05123 05123| +550530 |V0530 Mon *|070315.8+031454 |EW | 12.4 | 12.8 | 12.8 |p |33294.420 | | 0.52552935 | | |05123 05123| +550531 |V0531 Mon |070313.8+015815 |L | 12.5 | 13.7 | |p | | | | | |05123 05123| +550532 |V0532 Mon *|070430.6-002105 |EW:/KW: | 12.2 | 12.8 | 12.8 |p |34769.3467 | | 0.46698470 | | |05123 05123| +550533 |V0533 Mon |070638.8+020028 |LB | 11.8 | 12.7 | |p | | | | |K5 |05123 05123| +550534 |V0534 Mon |070712.7+015238 |M | 14.6 | 20. | |p |33331. | | 373.0 | | |05123 05123| +550535 |V0535 Mon *|071048.8+011656 |RRC | 11.8 | 12.5 | |p |34795.334 | | 0.3328635 |32 | |03453 03453| +550536 |V0536 Mon |071355.6-025430 |E | 9.1 | 10.1 | |p | | | 31.035 /N| |B4V |05123 05123| +550537 |V0537 Mon |071856.6-070631 |EA | 15. | 16. | |p | | | | | |03905 03905| +550538 |V0538 Mon |062416.2+053640 |EA: | 14. | 15.5 | |p |39446.46 | | | | |05515 05515| +550539 |V0539 Mon *|063042.7+045532 |IN: | 14.6 | 15.4 | |p | | | | | |05568 05568| +550540 |V0540 Mon *|063107.7+102620 |IN | 16.7 | 17.5 | |p | | | | | |05197 05197| +550541 |V0541 Mon *|063108.0+102837 |IN | 16.8 | 17.3 | |p | | | | | |05197 05197| +550542 |V0542 Mon *|063115.8+102814 |IN | 17.0 | 18.5 | |p | | | | | |05197 05197| +550543 |V0543 Mon *|063112.9+045709 |IN: | 16.4 | 16.9 | |p | | | | | |05568 05568| +550544 |V0544 Mon *|063127.8+045003 |IN: | 17.0 |< 17.5 | |p | | | | | |05568 05568| +550545 |V0545 Mon *|063129.8+045111 |IN: | 17.0 |< 17.6 | |p | | | | | |05568 05568| +550546 |V0546 Mon *|063136.9+045104 |IN: | 16.5 | 17.7 | |p | | | | | |05568 05568| +550547 |V0547 Mon *|063151.7+045505 |IN: | 17.4 | 18.0 | |p | | | | | |05568 05568| +550548 |V0548 Mon *|063157.9+051612 |IN | 15.4 | 16.1 | |p | | | | | |05568 05568| +550549 |V0549 Mon *|063200.9+045156 |IN: | 16.5 | 17.2 | |p | | | | | |05568 05568| +550550 |V0550 Mon *|063205.4+045546 |IN: | 17.2 |< 17.6 | |p | | | | | |05568 05568| +550551 |V0551 Mon *|063206.5+044756 |IN: | 14.2 | 15.5 | |p | | | | | |05568 05568| +550552 |V0552 Mon *|063207.7+050524 |IN: | 16.5 | 17.1 | |p | | | | | |05568 05568| +550553 |V0553 Mon *|063214.6+051359 |IN: | 16.1 | 17.3 | |p | | | | | |05568 05568| +550554 |V0554 Mon *|063213.9+045238 |IN: | 16.6 | 17.5 | |p | | | | | |05568 05568| +550555 |V0555 Mon *|063216.1+045529 |IN: | 16.6 | 17.8 | |p | | | | | |05568 05568| +550556 |V0556 Mon *|063308.3+044643 |IN: | 16.7 | 17.6 | |p | | | | | |05568 05568| +550557 |V0557 Mon *|063331.4+045237 |IN: | 17.3 |< 17.8 | |p | | | | | |05568 05568| +550558 |V0558 Mon |063639.9+053602 |I: | 16. | 17. | |p | | | | | |05515 05515| +550559 |V0559 Mon |063736.5+101317 |CEP | 16.5 | 17.5 : | |p |30326.5 | | 7.998 : | | |07010 05515| +550560 |V0560 Mon *|064628.8-001535 |EA | 13.9 | 14.7 |( 0.05 )|p |33294.370 | | 2.0728192 |20 *| |05285 05285| +550561 |V0561 Mon |065053.7+053726 |RR: | 16.5 | 17.5 | |p |29910.63 | | | | |05515 05515| +550562 |V0562 Mon |065125.5+083349 |M | 15.2 |< 17. | |p |30615. | | 374. | | |07010 05515| +550563 |V0563 Mon |065353.9+094921 |LB | 13.0 | 13.4 | |p | | | | | |07010 05515| +550564 |V0564 Mon |065453.5+105041 |M: | 16.5 |< 18. | |p |39533. | | | |C |07010 05515| +550565 |V0565 Mon *|065802.9-075642 |IN | 14.2 | 15.7 | |p | | | | | |05447 05515| +550566 |V0566 Mon |070141.1+040424 |SR | 12.6 | 13.9 | |p | | | 120. : | |M6.5 |05285 05285| +550567 |V0567 Mon |070156.5-014630 |EA | 16. | 17. | |p |30787.40 | | | | |05515 05515| +550568 |V0568 Mon |070546.0-004557 |RR: | 16. | 17. | |p | | | | | |05515 05515| +550569 |V0569 Mon *|070549.6-103936 |BCEP | 6.42 | 6.53 | |V | | | 0.267 : | |B0V |06585 08087| +550570 |V0570 Mon |071017.4-015600 |EA | 15. | 15.5 | |p |30787.31 | | | | |05515 05515| +550571 |V0571 Mon *|071123.6-001807 |DSCTC | 5.43 | 5.50 | |V | | | | |F2V |09450 BD | +550572 |V0572 Mon |072225.3-033901 |M: | 15.5 |< 17. | |p | | | | | |05515 05515| +550573 |V0573 Mon |072658.6-105948 |EA | 15. | 16. | |p |30781.34 | | | | |05515 05515| +550574 |V0574 Mon |073414.5-093934 |EA: | 15. | 16. | |p |30346.56 | | | | |05515 05515| +550575 |V0575 Mon |074859.2-110228 |M: | 14. |< 17.5 | |p | | | | | |05515 05515| +550576 |V0576 Mon |075247.9-102645 |M: | 14. | 20. | |p | | | | | |05515 05515| +550577 |V0577 Mon *|062923.4-024850 |UV | 12.5 | 13.3 | |B | | | | |M4.5Ve |06586 06874| +550578 |V0578 Mon *|063200.6+045241 |E | 8.54 | 8.57 | |V | | | 2.420 | |B0V+B0V |06113 07128| +550579 |V0579 Mon *|064039.4+093446 |INS: | 17.3 | 18.6 | |p | | | | | |06587 06587| +550580 |V0580 Mon *|064052.1+092914 |IN: | 18.0 | 21. | |p | | | | | |06587 06587| +550581 |V0581 Mon *|064104.5+093644 |INS: | 17.8 |< 18.7 | |p | | | | | |06587 06587| +550582 |V0582 Mon *|064110.3+092834 |INS | 16.0 | 17.5 | |p | | | | | |06587 06587| +550583 |V0583 Mon *|064113.3+093151 |UVN: | 16.8 | 18.6 | |p | | | | | |06587 06587| +550584 |V0584 Mon *|064115.7+092617 |UVN | 14.8 | 15.8 | |p | | | | | |06587 06587| +550585 |V0585 Mon *|064116.0+092610 |INS: | 16.3 | 17.9 | |p | | | | | |06587 06587| +550586 |V0586 Mon *|064154.9+094253 |INS: | 17.9 |< 18.7 | |p | | | | |ea |06587 06587| +550587 |V0587 Mon |063236.1+085903 |SRB | 11.9 | 13.4 : | |V | | | 400. : | |C(N) |07129 07129| +550588 |V0588 Mon *|063905.9+094103 |DSCTC | 9.66 | 9.72 | |V | | | 0.11 | |A7III-IV |06359 02749| +550589 |V0589 Mon *|063928.5+094204 |DSCTC | 10.27 |( 0.05 )| |V | | | 0.124 | |F2III |06359 02749| +550590 |V0590 Mon *|064044.6+094802 |INA | 12.7 | 14.0 | |B | | | | |B8pe |09453 04108| +550591 |V0591 Mon *|064112.9+092615 |INT | 13.8 | 15.0 | |B | | | | |K4e(T) |06361 04108| +550592 |V0592 Mon |065042.3-080228 |ACV | 6.16 | 6.32 | |V |33942.98 | | 2.9760 | |A2p(Sr-Cr) |09454 BD | +550593 |V0593 Mon *|063938.0+094953 |INS: | 15.3 | 16.1 | |p | | | | | |06587 06587| +550594 |V0594 Mon *|064023.8+095524 |INS: | 17.7 | 18.6 | |p | | | | | |06587 06587| +550595 |V0595 Mon *|064029.9+095011 |INS: | 15.3 | 15.9 | |p | | | | | |06587 06587| +550596 |V0596 Mon *|064042.6+095348 |IN: | 15.8 | 16.3 | |V | | | | | |06587 06587| +550597 |V0597 Mon *|064043.3+095100 |E: | 14.6 | 15.0 | |V | | | | | |06868 06587| +550598 |V0598 Mon *|064043.4+092842 |INS: | 17.8 | 18.4 | |p | | | | | |06587 06587| +550599 |V0599 Mon *|064054.9+095013 |INS: | 17.1 | 17.9 | |p | | | | | |06587 06587| +550600 |V0600 Mon *|064054.2+095055 |INS: | 16.9 | 18.3 | |p | | | | | |06587 06587| +550601 |V0601 Mon *|064055.7+095114 |IN | 16.9 | 18.0 | |p | | | | | |06587 06587| +550602 |V0602 Mon *|064059.4+095946 |IN: | 16.3 | 17.1 | |p | | | | | |06587 06587| +550603 |V0603 Mon *|064057.8+094121 |IN: | 17.0 | 18.4 | |p | | | | | |06587 06587| +550604 |V0604 Mon *|064101.6+094823 |INS: | 15.0 | 15.7 | |p | | | | | |06587 06587| +550605 |V0605 Mon *|064101.4+093409 |INS: | 15.7 | 16.2 | |p | | | | | |06587 06587| +550606 |V0606 Mon *|064104.0+094909 |INS: | 16.2 | 17.2 | |p | | | | | |06587 06587| +550607 |V0607 Mon *|064104.0+093522 |INS | 17.9 | 18.4 | |p | | | | | |06587 06587| +550608 |V0608 Mon *|064106.7+093445 |INS | 16.8 | 18.5 | |p | | | | |ea |06587 06587| +550609 |V0609 Mon *|064107.2+095831 |IN: | 16.3 | 17.5 | |p | | | | | |06587 06587| +550610 |V0610 Mon *|064111.0+095417 |IN: | 16.1 | 17.1 | |p | | | | | |06587 06587| +550611 |V0611 Mon *|064109.5+093526 |IN: | 17.3 | 18.0 | |p | | | | | |06587 06587| +550612 |V0612 Mon *|064112.4+093927 |INS: | 16.6 | 17.4 | |p | | | | | |06587 06587| +550613 |V0613 Mon *|064822.3+053230 |SRB: | 7.64 | 8.5 | |V | | | | |M2(S5,1) |06059 BD | +550614 |V0614 Mon |070102.0-031509 |SRB | 7.01 | 7.36 | |V | | | 60. : | |C4,5J(R5) |06059 BD | +550615 |V0615 Mon |062153.8+062627 |LB | 13.4 | 14.1 | |V | | | | |C(N) |07129 07469| +550616 |V0616 Mon *|062244.5-002044 |XND+ELL: | 11.26 | 20.2 | |B | | | | |pec(cont-e)+K5-7V|08693 09457| +550617 |V0617 Mon |062347.9+082951 |M | 12.5 | 15.4 | |V |41210. | | 375. : | |C(N) |07129 07129| +550618 |V0618 Mon |062348.6+070129 |SRA | 12.9 | 14.2 | |V |41250. | | 500. : | |C(N) |07129 07469| +550619 |V0619 Mon |062408.5+082630 |SRB | 14.7 | 15.8 | |B | | | 350. : | |C(N) |07129 07129| +550620 |V0620 Mon |062519.0+060802 |LB | 15.9 | 16.4 | |B | | | | |C(N) |07129 07469| +550621 |V0621 Mon |062904.6+081127 |LB | 13.4 | 13.8 | |V | | | | |C(N) |07129 07469| +550622 |V0622 Mon |062927.7+070939 |LB | 14.8 | 15.5 | |B | | | | |C(N) |07129 07129| +550623 |V0623 Mon |063555.7+081526 |LB | 13.3 | 14.6 | |V | | | | |C(N) |07129 07469| +550624 |V0624 Mon *|063601.0+060505 |LB | 12.6 | 13.3 | |V | | | | |C |07129 07129| +550625 |V0625 Mon |063612.5+083527 |LB | 13.0 | 13.5 | |V | | | | |C(N) |07129 07469| +550626 |V0626 Mon |063928.0+054316 |SRB | 12.8 | 13.2 | |V | | | 300. : | |C |07129 07129| +550627 |V0627 Mon |062648.0-075434 |M: | 6.62 | 7.26 | |I | | | | |M6e |06005 GSC22| +550628 |V0628 Mon *|064028.8+094825 |IN: | 15.6 | 16.1 | |V | | | | | |06868 06868| +550629 |V0629 Mon *|064041.3+095415 |INB | 14.1 | 15.2 | |B | | | | |G8-K0ea |06868 06868| +550630 |V0630 Mon *|064137.3+094507 |INB | 15.0 | 15.6 | |V | | | | |K6e |06868 06868| +550631 |V0631 Mon |070123.3+063512 |SR | 13. | 16. | |p | | | | | |00085 02358| +550632 |V0632 Mon *|072058.6-102244 |SR: | 10.4 | 10.8 | |V | | | | |M7III-M9 |06977 08127| +550633 |V0633 Mon |075113.6-023711 |M: | 11.0 | 15.6 | |V | | | | |C |06977 06977| +550634 |V0634 Mon |071710.1-014419 |E | 12.0 | 12.4 | |p |25981.40 | | 2.1141 | | |00001 02322| +550635 |V0635 Mon |080144.5-083535 |EA/DM | 7.6 | 8.1 | |p |29658.375 | | 1.807805 | |F5+A2 |08040 07762| +550636 |V0636 Mon |062501.4-090716 |M: | 6.2 | 9.8 | |I | | | | |C |09464 USNO | +550637 |V0637 Mon *|070254.8-041421 |BCEP | 4.96 | 5.01 | |V |43496.1169 | | 0.19120 | |B1IV-Vea |08696 BD | +550638 |V0638 Mon *|061143.7-043956 |ACV | 6.16 | 6.18 | |V |43852.00 | | 0.724 |50 |B9p(Hg-Mn) |04013 BD | +550639 |V0639 Mon |063720.1+113632 |EA/SD | 16.0 | 18.5 : | |p |34452.34 | | 2.66 |10 | |08497 04105| +550640 |V0640 Mon *|063724.0+060807 |* | 6.04 | 6.08 | |V | | | | |O8V+O8f |04106 BD | +550641 |V0641 Mon *|064028.6+094904 |ELL | 8.46 |( 0.07 )| |V |43214.577 | | 1.304054 | |B1.5IV+B2V |08500 BD | +550642 |V0642 Mon *|064046.1+094917 |FKCOM | 11.69 | 11.82 | |V |43128.963 | | 0.74479 | |K0IVpea |09465 08499| +550643 |V0643 Mon |064558.7+081542 |E | 15.8 | 18.0 | |p |34665.63 | | | | |08497 04105| +550644 |V0644 Mon |065709.4-104928 |GCAS | 6.88 | 6.98 | |V | | | | |B0-1V-IVeq+K |08587 08588| +550645 |V0645 Mon *|080113.3-012333 |FKCOM | 4.68 |( 0.020 )| |V |43100.000 | | 0.207878 |50 |K4III |08506 BD | +550646 |V0646 Mon |070347.5-010559 |ACV | 8.85 | 8.92 | |V |44230.732 | | 11.978 | |A0p(Sr-Eu) |09466 BD | +550647 |V0647 Mon |070858.8-010057 |GCAS | 9.28 | 9.35 | |V | | | | |B1Vne |08772 BD | +550648 |V0648 Mon |062814.0+051620 |ACV | 7.35 | 7.39 | |V | | | | | |67066 BD | +550649 |V0649 Mon |063710.4+060333 |ELL: | 7.56 | 7.62 | |V | | | | | |67201 BD | +550650 |V0650 Mon |063951.9+101240 |IN | 15.2 | 15.83 | |B | | | | | |67424 67425| +550651 |V0651 Mon |070922.5-004824 |* | 11.29 | 15.28 | |V | | | | | |67428 67427| +550652 |V0652 Mon |060604.0-105816 |SRB | 15.3 | 16.5 | |p | | | | | |68149 GSC | +550653 |V0653 Mon |061101.2-064515 |ACV | 6.19 |( 0.04 )| |U | | | | | |68020 BD | +550654 |V0654 Mon |062151.5-035041 |M | 6.10 | 8.49 | |1.| | | | | |68015 USNO | +550655 |V0655 Mon |063334.6+100253 |UV | 14.9 | 16.6 | |p | | | | | |68294 68294| +550656 |V0656 Mon |063525.8+092827 |UV | 16.3 | 17.0 | |p | | | | | |68294 68294| +550657 |V0657 Mon |063732.8+111522 |UV | 15.0 | 18.5 | |p | | | | | |68294 68294| +550658 |V0658 Mon |063755.9+081344 |UV | 15.3 | 16.3 | |p | | | | | |68294 68294| +550659 |V0659 Mon |063755.2+093432 |UV | 15.8 | 16.4 | |p | | | | | |68294 68294| +550660 |V0660 Mon |063829.0+091126 |UV | 15.3 | 16.6 | |p | | | | | |68294 68294| +550661 |V0661 Mon |063858.2+082139 |UV | 15.8 | 16.8 | |p | | | | | |68294 68294| +550662 |V0662 Mon |063911.1+092012 |UV | 14.7 | 15.6 | |p | | | | | |68294 68294| +550663 |V0663 Mon |063916.9+091741 |UV | 16.0 | 16.7 | |p | | | | | |68294 68294| +550664 |V0664 Mon |063927.8+082207 |UV | 16.0 | 17.0 | |p | | | | | |68294 68294| +550665 |V0665 Mon |063936.8+102010 |UV | 14.8 | 19.0 | |p | | | | | |68294 68294| +550666 |V0666 Mon |063943.0+091027 |UV | 15.8 | 20.3 | |p | | | | | |68294 68294| +550667 |V0667 Mon |064020.5+092839 |UV | 15.8 | 17.8 | |p | | | | | |68294 68294| +550668 |V0668 Mon |064032.8+085102 |UV | 16.6 | 17.2 | |p | | | | | |68294 68294| +550669 |V0669 Mon |064110.3+092150 |UV | 15.5 | 18.2 | |p | | | | | |68294 68294| +550670 |V0670 Mon |064118.9+093555 |UV | 16.5 | 19.2 | |p | | | | | |68294 68294| +550671 |V0671 Mon |064127.2+095210 |UV | 16.6 | 18.9 | |p | | | | | |68294 68294| +550672 |V0672 Mon |064135.4+094919 |UV | 16.3 | 18.1 | |p | | | | | |68294 68294| +550673 |V0673 Mon |064145.9+093303 |UV | 16.4 | 17.8 | |p | | | | | |68294 68294| +550674 |V0674 Mon |064254.7+091221 |UV | 16.0 | 16.7 | |p | | | | | |68294 68294| +550675 |V0675 Mon |064252.4+101848 |UV | 16.4 | 17.0 | |p | | | | | |68294 68294| +550676 |V0676 Mon |064318.3+093510 |UV | 16.3 | 17.3 | |p | | | | | |68294 68294| +550677 |V0677 Mon |064342.6+091303 |UV | 16.2 | 17.2 | |p | | | | | |68294 68294| +550678 |V0678 Mon |064739.7+090431 |UV | 15.4 | 16.1 | |p | | | | | |68294 68294| +550679 |V0679 Mon |065049.6+102406 |UV | 15.0 | 16.1 | |p | | | | | |68294 68294| +550680 |V0680 Mon |065930.7+091900 |RR | 9.6 | 10.1 | |p | | | | | |68297 68297| +550681 |V0681 Mon |075222.0-011725 |EA/SD | 13. | 15.5 | |p | | | | | |68302 68163| +550682 |V0682 Mon |062810.8-045357 |ACV | 7.65 | 7.73 | |U | | | | | |69056 BD | +550683 |V0683 Mon |063211.3-071823 |E | 8.21 |( 0.40 )| |V | | | | | |69194 BD | +550684 |V0684 Mon |064038.4+094716 |EA/DM | 8.44 |( 0.10 )| |V | | | | | |69195 69196| +550685 |V0685 Mon |072047.6-074810 |SRB: | 10.2 | 11.5 | |V | | | | | |69010 | +550686 |V0686 Mon |072542.7-030622 |M | 11.5 |< 21. | |p | | | | | |69197 69198| +550687 |V0687 Mon |063110.1+102604 |INT | 12.27 | 13.29 | |V | | | | | |70074 70009| +550688 |V0688 Mon |063654.2+032529 |M: | 9.19 | 11.2 | |H | | | | | |70075 70076| +550689 |V0689 Mon |063838.2+013649 |ACYG | 6.19 | 6.26 | |V | | | | | |70077 BD | +550690 |V0690 Mon |063446.2+102734 |UV | 16.0 | 16.6 | |p | | | | | |71067 71068| +550691 |V0691 Mon |063822.3+100049 |UVN | 15.7 | 16.7 | |p | | | | | |71067 71068| +550692 |V0692 Mon |063945.6+102254 |UVN | 16.2 | 16.7 | |p | | | | | |71067 71068| +550693 |V0693 Mon |064409.5+081332 |UV | 16.5 | 17.0 | |p | | | | | |71067 71068| +550694 |V0694 Mon |072551.3-074408 |* | 9.1 | 10.1 | |V | | | | | |71070 71071| +550695 |V0695 Mon |080044.1-025255 |BE | 6.48 | 6.55 | |V | | | | | |71074 BD | +550696 |V0696 Mon |060413.5-064232 |* | 5.12 | 5.18 | |B | | | | | |72113 BD | +550697 |V0697 Mon |061250.3-061312 |INT | 15.40 | 16.67 | |B | | | | | |72114 72051| +550698 |V0698 Mon |063050.1+103310 |IA | 12.86 | 13.36 | |V | | | | | |72028 72051| +550699 |V0699 Mon |063241.8+100934 |INA | 10.36 | 10.84 | |V | | | | | |72115 72029| +550700 |V0700 Mon |063305.2+101920 |INA | 8.62 | 8.91 | |V | | | | | |72115 72029| +550701 |V0701 Mon |074626.9-044434 |EW | 15.27 | 15.63 | |Ic| | | | | |72116 72116| +550702 |V0702 Mon |074632.7-044517 |EW/KW | 18.20 | 18.68 | |Ic| | | | | |72116 72116| +550703 |V0703 Mon |074634.0-044227 |EW/KW | 17.70 | 18.52 | |Ic| | | | | |72116 72116| +550704 |V0704 Mon |074646.2-044201 |EW/KW | 17.20 | 17.65 | |Ic| | | | | |72116 72116| +550705 |V0705 Mon |074646.9-043821 |EW/KW | 15.96 | 16.04 | |Ic| | | | | |72116 72116| +550706 |V0706 Mon |074647.1-044405 |EW/KW | 15.28 | 15.54 | |Ic| | | | | |72116 72116| +550707 |V0707 Mon |074647.3-044228 |EW | 18.31 | 19.37 | |Ic| | | | | |72116 72116| +550708 |V0708 Mon |074647.9-044242 |E: | 14.55 | 14.69 | |Ic| | | | | |72116 72116| +550709 |V0709 Mon |074651.3-043606 |EW/KW | 16.16 | 16.72 | |Ic| | | | | |72116 72116| +550710 |V0710 Mon |074651.8-044137 |EW/KW | 14.57 | 15.01 | |Ic| | | | | |72116 72116| +550711 |V0711 Mon |074652.9-044018 |EW/KW | 16.85 | 17.01 | |Ic| | | | | |72116 72116| +550712 |V0712 Mon |074700.6-043844 |EW/KW | 16.85 | 17.21 | |Ic| | | | | |72116 72116| +550713 |V0713 Mon |062527.3-093206 |M | 7.75 | 10.01 | |J | | | | | |73198 73199| +550714 |V0714 Mon |062912.4+044440 |EW | 11.5 |( 0.64 )| |V | | | | | |73200 73200| +550715 |V0715 Mon |064903.6+010007 |LPB: | 5.34 |( 0.18 u )| |U | | | | | |73201 BD | +550716 |V0716 Mon |075243.6-104246 |RRAB | 13.8 |( 0.44 )| |B | | | | | |73110 73202| +550717 |V0717 Mon |055741.4-060541 |LB | 7.27 | 7.50 | |Hp| | | | | |HIP HIP | +550718 |V0718 Mon |061705.4-060709 |LPB | 8.08 | 8.13 | |Hp| | | | | |HIP HIP | +550719 |V0719 Mon |062102.9+023408 |LB: | 7.14 | 7.23 | |Hp| | | | | |HIP HIP | +550720 |V0720 Mon |062318.4-072705 |LC: | 9.60 | 9.83 | |Hp| | | | | |HIP HIP | +550721 |V0721 Mon |062335.9-095229 |LB | 6.18 | 6.26 | |Hp| | | | | |HIP HIP | +550722 |V0722 Mon |062820.4-004346 |E: | 7.84 | 7.99 | |Hp| | | | | |HIP HIP | +550723 |V0723 Mon |062904.7-053420 |SRD: | 8.37 | 8.51 | |Hp| | | | | |HIP HIP | +550724 |V0724 Mon |062915.4-080602 |SRB | 7.88 | 8.14 | |Hp| | | | | |HIP HIP | +550725 |V0725 Mon |063017.6+025052 |BE | 8.87 | 9.01 | |Hp| | | | | |HIP HIP | +550726 |V0726 Mon |063018.0-062549 |LPB | 7.93 | 7.97 | |Hp| | | | | |HIP HIP | +550727 |V0727 Mon |063109.3+095623 |EB | 7.88 | 7.99 | |Hp| | | | | |HIP HIP | +550728 |V0728 Mon |063243.2-073032 |BE | 8.03 | 8.12 | |Hp| | | | | |HIP HIP | +550729 |V0729 Mon |063435.6+045805 |SRB | 6.72 | 6.90 | |Hp| | | | | |HIP HIP | +550730 |V0730 Mon |063440.6-083629 |EA: | 8.85 | 8.95 | |Hp| | | | | |HIP HIP | +550731 |V0731 Mon |063752.7+045724 |ACYG: | 6.16 | 6.22 | |Hp| | | | | |HIP HIP | +550732 |V0732 Mon |063823.1+043727 |LPB: | 8.16 | 8.26 | |Hp| | | | | |HIP HIP | +550733 |V0733 Mon |064001.6-044155 |BE | 8.61 | 8.83 | |Hp| | | | | |HIP HIP | +550734 |V0734 Mon |064006.3-101839 |ACV | 8.49 | 8.55 | |Hp| | | | | |HIP HIP | +550735 |V0735 Mon |064025.2+023329 |ACV: | 7.50 | 7.54 | |Hp| | | | | |HIP HIP | +550736 |V0736 Mon |064018.9-062047 |LB | 6.90 | 7.04 | |Hp| | | | | |HIP HIP | +550737 |V0737 Mon |064212.9-102953 |BE | 8.81 | 8.92 | |Hp| | | | | |HIP HIP | +550738 |V0738 Mon |064312.5-084530 |SRB | 9.72 | 9.98 | |Hp| | | | | |HIP HIP | +550739 |V0739 Mon |064757.3+004634 |BE | 8.94 | 9.04 | |Hp| | | | | |HIP HIP | +550740 |V0740 Mon |064944.3-012024 |ACV | 7.28 | 7.34 | |Hp| | | | | |HIP HIP | +550741 |V0741 Mon *|065043.3-041558 |LPB: | 6.84 | 6.88 | |Hp| | | | | |HIP HIP | +550742 |V0742 Mon |065145.8+050504 |BE | 6.89 | 6.94 | |Hp| | | | | |HIP HIP | +550743 |V0743 Mon |065133.4-065800 |GCAS | 6.57 | 6.87 | |V | | | | | |HIP HIP | +550744 |V0744 Mon |065513.7+052602 |BE: | 7.61 | 7.85 | |Hp| | | | | |HIP HIP | +550745 |V0745 Mon |065511.9-091916 |EA | 7.69 | 7.99 | |Hp| | | | | |HIP HIP | +550746 |V0746 Mon |065619.1-034826 |BE | 8.04 | 8.14 | |Hp| | | | | |HIP HIP | +550747 |V0747 Mon |065709.5-083231 |BE: | 8.02 | 8.21 | |Hp| | | | | |HIP HIP | +550748 |V0748 Mon |070116.4-020919 |LB: | 8.59 | 8.73 | |Hp| | | | | |HIP HIP | +550749 |V0749 Mon |070337.2-022827 |GCAS: | 7.08 | 7.25 | |Hp| | | | | |HIP HIP | +550750 |V0750 Mon *|070425.5-102716 |GCAS | 6.92 | 7.22 | |V | | | | | |HIP HIP | +550751 |V0751 Mon |070747.0-032216 |SRB | 7.85 | 7.99 | |Hp| | | | | |HIP HIP | +550752 |V0752 Mon |070756.9-044040 |DSCTC: | 6.99 | 7.01 | |Hp| | | | | |HIP HIP | +550753 |V0753 Mon *|071057.9-035243 |EB: | 8.30 | 8.82 | |Hp| | | | | |HIP HIP | +550754 |V0754 Mon |071219.1-014640 |ACV: | 8.70 | 8.79 | |Hp| | | | | |HIP HIP | +550755 |V0755 Mon |071731.6-054922 |LPB | 7.18 | 7.23 | |Hp| | | | | |HIP HIP | +550756 |V0756 Mon |071922.1-084659 |LB: | 7.12 | 7.29 | |Hp| | | | | |HIP HIP | +550757 |V0757 Mon |072134.6-055350 |BE: | 6.49 | 6.58 | |Hp| | | | | |HIP HIP | +550758 |V0758 Mon |072307.0-041249 |LB | 8.96 | 9.25 | |Hp| | | | | |HIP HIP | +550759 |V0759 Mon |072321.3-042557 |ACV: | 8.68 | 8.80 | |Hp| | | | | |HIP HIP | +550760 |V0760 Mon |072513.1-030803 |LB | 8.56 | 8.82 | |Hp| | | | | |HIP HIP | +550761 |V0761 Mon |072609.5-103257 |E: | 8.36 | 8.44 | |Hp| | | | | |HIP HIP | +550762 |V0762 Mon |073030.8-003749 |LB: | 8.81 | 8.91 | |Hp| | | | | |HIP HIP | +550763 |V0763 Mon |073557.8-032206 |BE | 7.70 | 7.85 | |Hp| | | | | |HIP HIP | +550764 |V0764 Mon |073743.2-074338 |RRC | 7.13 | 7.20 | |Hp| | | | | |HIP HIP | +550765 |V0765 Mon |073927.0-020901 |LB: | 11.12 | 11.49 | |Hp| | | | | |HIP HIP | +550766 |V0766 Mon |074123.9-091254 |LB | 8.25 | 8.39 | |Hp| | | | | |HIP HIP | +550767 |V0767 Mon |075004.0-005255 |LB | 9.53 | 9.97 | |Hp| | | | | |HIP HIP | +550768 |V0768 Mon |075544.1-031154 |LB: | 10.24 | 10.42 | |Hp| | | | | |HIP HIP | +550769 |V0769 Mon |075903.9-041957 |EB: | 7.03 | 7.09 | |Hp| | | | | |HIP HIP | +550770 |V0770 Mon |080449.1-052442 |SRB: | 7.37 | 7.46 | |Hp| | | | | |HIP HIP | +550771 |V0771 Mon |080826.2-010153 |LB: | 8.15 | 8.26 | |Hp| | | | | |HIP HIP | +550772 |V0772 Mon |080833.9-020445 |CEP: | 10.22 | 10.38 | |Hp| | | | | |HIP HIP | +550773 |V0773 Mon |080915.7-043310 |E: | 7.59 | 7.67 | |Hp| | | | | |HIP HIP | +550774 |V0774 Mon |081006.5-064443 |LB | 7.78 | 7.90 | |Hp| | | | | |HIP HIP | +550775 |V0775 Mon |081030.6-093617 |LB | 7.57 | 7.73 | |Hp| | | | | |HIP HIP | +550776 |V0776 Mon |055907.3-105238 |SRA | 12.3 |( 0.4 )| |V | | | | | |75169 BD | +550777 |V0777 Mon |061958.2-103815 |R: | 8.78 | 8.94 | |V | | | | | |75170 BD | +550778 |V0778 Mon |062547.6+063905 |SRB | 10.65 | 11.45 | |V | | | | | |75119 75119| +550779 |V0779 Mon |063927.2-081411 |SR: | 14.4 |< 15.0 | |p | | | | | |75002 USNO | +550780 |V0780 Mon |064036.7+094723 |E: | 12.50 |( 0.24 Ic)| |V | | | | | |75171 75171| +550781 |V0781 Mon |064102.5+093457 |INT | 14.31 |( 0.15 Ic)| |V | | | | | |75171 75171| +550782 |V0782 Mon |064728.6-010129 |M: | 13.9 |< 15.0 | |p | | | | | |75002 USNO | +550783 |V0783 Mon |065210.2+024251 |DSCT | 11.08 | 11.19 | |V | | | | | |75119 75119| +550784 |V0784 Mon |065224.0+024225 |DCEPS | 12.75 | 13.02 | |V | | | | | |75119 75119| +550785 |V0785 Mon |070856.5-001724 |SRA: | 12.5 | 14.4 | |V | | | | | |75172 GSC22| +550786 |V0786 Mon |071925.9-004329 |M | 11.0 | 13.7 | |V | | | | | |75172 GSC | +550787 |V0787 Mon |072000.8-020906 |SRA | 12.5 | 14.7 | |V | | | | | |75172 GSC22| +550788 |V0788 Mon |072459.3-002444 |EW: | 13.1 |( 0.15 Rc)| |V | | | | | |75173 75173| +550789 |V0789 Mon |072513.9-002537 |RS: | 9.34 |( 0.17 Rc)| |V | | | | | |75173 75173| +550790 |V0790 Mon |080130.5-100542 |M: | 12.3 | 15.0 | |p | | | | | |75002 GSC22| +550791 |V0791 Mon |060214.9-100100 |IA | 10.32 | 10.59 | |V | | | | | |76027 DM | +550792 |V0792 Mon |060316.0-100337 |M | 12.8 |< 15.5 | |V | | | | | |76012 USNO | +550793 |V0793 Mon |060621.1-054215 |M: | 14.3 |< 15.4 | |V | | | | | |76012 USNO | +550794 |V0794 Mon |061135.7-100155 |SR: | 12.6 |< 15.3 | |V | | | | | |76012 GSC | +550795 |V0795 Mon |061347.3-101952 |M | 12.4 |< 15.2 | |V | | | | | |76012 GSC | +550796 |V0796 Mon |061700.3-083608 |SR: | 12.3 | 14.0 | |V | | | | | |76012 USNO | +550797 |V0797 Mon |062049.4-021038 |M: | 14.2 |< 15.5 | |V | | | | | |76012 USNO | +550798 |V0798 Mon |062521.6-024638 |M: | 14.3 |< 15.0 | |V | | | | | |76012 USNO | +550799 |V0799 Mon |062552.0-005240 |LB | 11.3 | 12.0 | |V | | | | | |76012 GSC | +550800 |V0800 Mon |062641.1-020548 |SR: | 12.6 | 13.9 | |V | | | | | |76012 GSC | +550801 |V0801 Mon |062701.2-043544 |SR: | 14.3 |< 15.3 | |V | | | | | |76012 GSC22| +550802 |V0802 Mon |062800.6-105713 |SR: | 12.8 | 14.5 | |V | | | | | |76012 USNO | +550803 |V0803 Mon |064036.6+094823 |IN | 15.5 |( 0.20 Ic)| |V | | | | | |76062 76063| +550804 |V0804 Mon |064044.3+094733 |IN | 15.5 : |( 0.17 )| |Ic| | | | | |76063 76063| +550805 |V0805 Mon |064045.0+094542 |IN | 15.7 |( 0.25 Ic)| |V | | | | | |76063 76063| +550806 |V0806 Mon |064059.8+095149 |IN | 16.1 |( 0.15 Ic)| |V | | | | | |76062 76063| +550807 |V0807 Mon |064102.6+093513 |IN | 15.3 |( 0.12 Ic)| |V | | | | | |76062 76063| +550808 |V0808 Mon |064103.7+092740 |IN | 16.3 |( 0.12 Ic)| |V | | | | | |76062 76063| +550809 |V0809 Mon |064104.2+093457 |IN | 21.6 |( 0.54 Ic)| |V | | | | | |76062 76063| +550810 |V0810 Mon |064104.4+095150 |IN | 12.3 |( 0.11 Ic)| |V | | | | | |76062 76063| +550811 |V0811 Mon |064105.1+095145 |IN | 15.1 |( 0.16 Ic)| |V | | | | | |76062 76063| +550812 |V0812 Mon |064105.3+093314 |IN | 14.8 |( 0.12 Ic)| |V | | | | | |76063 76063| +550813 |V0813 Mon |064105.6+095420 |IN | 15.9 : |( 0.09 Ic)| |V | | | | | |76062 76063| +550814 |V0814 Mon |064105.9+092718 |IN | 16.3 | 16.6 | |V | | | | | |76063 76063| +550815 |V0815 Mon |064106.3+092931 |IN: | 17.0 : |( 0.14 Ic)| |V | | | | | |76063 76063| +550816 |V0816 Mon |064107.8+092813 |IN | 16.2 | 16.5 | |V | | | | | |76063 76063| +550817 |V0817 Mon |064109.1+095302 |IN | 16.0 : |( 0.35 Ic)| |V | | | | | |76062 76063| +550818 |V0818 Mon |064109.8+092712 |IN | 14.0 |( 0.23 Ic)| |V | | | | | |76062 76063| +550819 |V0819 Mon |064111.4+092639 |IN | 15.5 : |( 0.17 )| |Ic| | | | | |76062 76063| +550820 |V0820 Mon |064112.8+095244 |IN | 14.8 |( 0.20 Ic)| |V | | | | | |76062 76063| +550821 |V0821 Mon |064117.9+092902 |IN | 18.1 |( 0.26 Ic)| |V | | | | | |76062 76063| +550822 |V0822 Mon |071849.3-080339 |SR: | 12.8 | 14.3 | |V | | | | | |76012 GSC | +550823 |V0823 Mon |072218.1-095602 |SR: | 12.3 | 13.5 | |V | | | | | |76012 USNO | +550824 |V0824 Mon |072247.1-084855 |M | 13.7 |< 15.3 | |V | | | | | |76012 USNO | +550825 |V0825 Mon |072433.3-005640 |SR: | 12.4 | 13.1 | |V | | | | | |76012 GSC | +550826 |V0826 Mon |072828.2-004504 |M | 12.3 |< 15.3 | |V | | | | | |76012 USNO | +550827 |V0827 Mon |072935.5-091533 |ACV | 7.96 | 8.00 | |V | | | | | |76075 DM | +550828 |V0828 Mon |073138.2-110138 |LB | 10.9 | 12.2 | |V | | | | | |76012 GSC | +550829 |V0829 Mon |073939.5-104305 |M | 14.3 |< 15.3 | |V | | | | | |76012 USNO | +550830 |V0830 Mon |075244.9-050711 |SR: | 12.6 | 13.8 | |V | | | | | |76012 GSC | +550831 |V0831 Mon |075743.3-004106 |M | 11.2 | 14.0 | |V | | | | | |76012 GSC | +550832 |V0832 Mon |075843.5-070212 |SR: | 13.2 | 14.2 | |V | | | | | |76012 GSC | +550833 |V0833 Mon |080430.7-030748 |M: | 11.8 | 14.8 | |V | | | | | |76012 USNO | +550834 |V0834 Mon |080527.2-094101 |SR: | 12.8 | 13.6 | |V | | | | | |76012 UCAC2| +550835 |V0835 Mon |080630.1-042623 |SR: | 12.6 | 13.8 | |V | | | | | |76012 GSC | +550836 |V0836 Mon |080758.3-102931 |SR: | 10.68 |( 0.7 )| |V | | | | | |76012 GSC | +550837 |V0837 Mon |080822.4-010518 |SR: | 10.72 |( 0.7 )| |V | | | | | |76012 GSC | +550838 |V0838 Mon |070404.8-035051 |NC | 6.7 | 16.05 | |V | | | | | |77061 GSC | +550839 |V0839 Mon |064640.7+082147 |GDOR: | 7.5 |( 0.01 b )| |V | | | | | |77056 DM | +550840 |V0840 Mon |064725.0+081359 |M | 13.5 | 16.9 | |I | | | | | |77012 77013| +550841 |V0841 Mon |064815.7+080241 |M: | 11.6 |< 13.1 | |V | | | | | |77004 GSC | +550842 |V0842 Mon |064843.5+050201 |EB | 9.74 | 10.08 | |V | | | | | |77058 GSC | +550843 |V0843 Mon |065810.9+101358 |EW | 12.4 |( 0.52 )| |V | | | | | |77059 UCAC2| +550844 |V0844 Mon |075419.3-004009 |SRB | 11.53 |( 0.20 )| |V | | | | | |77067 GSC | +550845 |V0845 Mon |075953.6-104547 |DSCT | 14.38 | 14.69 | |V | | | | | |77068 77068| +550846 |V0846 Mon |075957.9-104720 |DSCT | 14.65 | 14.83 | |V | | | | | |77068 77068| +550847 |V0847 Mon |075958.0-104556 |DSCTC | 13.64 | 13.73 | |V | | | | | |77068 77068| +550848 |V0848 Mon |063111.1+055237 |BY | 8.94 |( 0.02 )| |V | | | 19.98 : | |K2IV-V |78018 DM | +550849 |V0849 Mon |063902.3-084529 |SRB | 12.9 |< 14.8 | |V | | | 305. | | |78130 USNO | +550850 |V0850 Mon |063931.4+031911 |BY | 9.37 |( 0.03 )| |V | | | 9.99 : | |K3V |78018 DM | +550851 |V0851 Mon *|065140.1+002707 |ACV: | 10.85 | 10.90 | |V | | | 0.332 | |A0V(m) |78093 78093| +550852 |V0852 Mon *|065141.7+002343 |EW: | 16.58 | 16.74 |( 0.07 )|V |51216.17 | | 0.873 | | |78093 78093| +550853 |V0853 Mon *|065143.3+003119 |EW | 15.98 | 16.12 | 16.05 |V |51216.09 | | 0.250 | | |78093 78093| +550854 |V0854 Mon |065148.9+002656 |GDOR | 12.56 | 12.59 | |V | | | 0.299 | | |78093 78093| +550855 |V0855 Mon |065150.0+002820 |GDOR | 12.66 | 12.71 | |V | | | 0.339 | | |78093 78093| +550856 |V0856 Mon |065151.1+002539 |ACV: | 11.62 | 11.66 | |V | | | 0.741 : | | |78093 78093| +550857 |V0857 Mon *|065156.8+002547 |EW | 15.82 | 16.02 | 15.98 |V |51216.18 | | 0.642 | | |78093 78093| +550858 |V0858 Mon *|065157.3+002547 |EW: | 15.73 | 15.90 | 15.87 |V |51216.95 | | 1.102 | | |78093 78093| +550859 |V0859 Mon *|065207.2+003253 |EB | 14.47 | 14.53 | 14.50 |V |51216.01 | | 0.778 | | |78093 78093| +550860 |V0860 Mon *|065818.7-043821 |EA | 9.22 | 9.44 | 9.38 |V |53497.480 | | 2.516367 |12 |B8 |78130 DM | +550861 |V0861 Mon *|070249.9-085447 |EA | 12.6 | 13.4 | 12.7 |V |53075.6104 | | 2.9250 |13 | |78095 GSC | +550862 |V0862 Mon |070410.4+051247 |BY | 9.08 |( 0.02 )| |V | | | 10.88 | |G5V |78018 DM | +550863 |V0863 Mon *|070525.1-090034 |EB | 9.02 | 9.16 | 9.13 |V |52785.566 | | 3.5230 | |B0.5III |78130 DM | +550864 |V0864 Mon |071508.4-044421 |EW | 9.9 | 10.6 | |V |53511.487 | | 0.358427 | |G0 |78130 GSC | +550865 |V0865 Mon |072243.2-084054 |SRB | 11.7 | 12.6 | |V | | | 54. | | |78095 GSC | +550866 |V0866 Mon |073417.8-084521 |EA | 12.0 | 13.7 | |V |51873.813 | | 1.862168 |15 | |78095 GSC | +550867 |V0867 Mon |073426.2-065348 |BY | 8.16 |( 0.02 )| |V | | | 4.76 : | |K2V |78018 DM | +550868 |V0868 Mon |073904.8-023906 |EB | 8.9 | 9.5 | |V |52681.731 | | 0.63772 | | |78094 DM | +550869 |V0869 Mon |073959.3-033551 |BY | 7.18 |( 0.02 )| |V | | | | |K2Ve |78018 DM | +550870 |V0870 Mon |074800.8-023541 |M | 8.4 |< 12. | |V |51491 | | 293. | | |78103 GSC | +550871 |V0871 Mon |080617.3-042647 |EA | 8.84 | 9.18 | |V |51927.725 | | 4.33593 | |A3/5m |78322 DM | +550872 |V0872 Mon |062309.1-100531 |M | 12.5 |< 15.0 | |V |53837. | | 266. | |M7: |79100 79178| +550873 |V0873 Mon |062610.1+020558 |EA | 10.58 | 10.93 | 10.93 |V |52653.650 | | 3.19669 |05 |G0 |79009 79050| +550874 |V0874 Mon |063207.9+030840 |EA | 12.70 | 13.2 : | 13.15 : |V |51565.855 | | 2.44879 |06 | |79003 79052| +550875 |V0875 Mon *|063300.1+093230 |LB | 10.8 | 11.1 | |* | | | | |M7 |79100 GSC | +550876 |V0876 Mon |063824.6-013903 |SRB | 9.9 | 10.8 | |V | | | 131. : | |M4ep |79100 79022| +550877 |V0877 Mon |064301.5-094348 |EA | 8.22 | 8.98 | 8.85 |V |52559.790 | | 2.94626 |06 |A1mA7-F2 |79011 DM | +550878 |V0878 Mon *|065448.9-011657 |EB | 8.11 | 8.18 | 8.14 |V |48574.663 | | 0.697461 | |K0 |79004 DM | +550879 |V0879 Mon *|065534.0-101312 |EA | 8.28 | 8.72 | 8.7 : |V |52896.884 | | 2.18691 |11 |A0V |79011 DM | +550880 |V0880 Mon *|065537.7-092923 |EW | 8.21 | 8.41 | 8.41 |V |52232.752 | | 0.372457 | |G0 |79006 DM | +550881 |V0881 Mon |065733.6+050642 |EA | 11.48 | 12.25 | 12.1 |* |53045.632 | | 1.69841 |10 |A |79003 79053| +550882 |V0882 Mon |065739.5-052715 |EA | 9.08 | 9.7 : | 9.65 : |V |52739.532 | | 2.85371 |08 |B9V |79011 DM | +550883 |V0883 Mon |065811.9-050429 |EA | 8.71 | 8.86 | 8.77 |V |48701.550 | | 50.363 |02 : |F0 |79018 DM | +550884 |V0884 Mon |070511.8-110602 |EA | 9.13 | 9.65 : | 9.14 |V |52776.580 | | 123.21 |03 |B5Vn |79009 DM | +550885 |V0885 Mon |071402.9+000325 |SRB | 9.6 | 10.1 | |V | | | 54. | |M2 |79100 DM | +550886 |V0886 Mon |071917.2-105431 |LB | 8.5 | 9.1 | |V | | | | |M0 |79100 DM | +550887 |V0887 Mon |072129.4-102020 |EB | 9.36 | 9.48 | 9.44 |V |52964.797 | | 3.6433 | | |79064 DM | +550888 |V0888 Mon |073348.4-094053 |EA | 8.49 | 8.87 | 8.83 |V |51873.806 | | 2.54961 |16 |A5 |79011 DM | +550889 |V0889 Mon |073423.1-012723 |LB | 10.7 | 11.2 | |V | | | | |M4 |79100 79112| +550890 |V0890 Mon |073540.5-084450 |EA | 12.95 | 14.35 : | |V |52958.760 | | 2.65361 |11 | |79003 79054| +550891 |V0891 Mon |074118.6-013230 |EA | 8.12 | 8.33 | 8.30 : |V |48196.000 | | 31.4204 |02 : |B9.5/A0IV |79006 DM | +550892 |V0892 Mon |074155.7-011635 |SRB | 11.6 | 12.3 | |V | | | 59. | | |79100 79059| +550893 |V0893 Mon |074527.2-051312 |SRB | 11.8 | 13.4 | |V | | | 226. | | |79064 79133| +550894 |V0894 Mon |074651.5-075226 |LB | 10.0 | 10.9 | |V | | | | |M5 |79100 79112| +550895 |V0895 Mon |075021.4-011432 |RRAB | 11.9 | 13.1 | |V |52940.822 | | 0.5131596 |15 |F4 |79100 79112| +550896 |V0896 Mon |075941.5-075013 |EA | 12.9 | 14.4 | |* |52623.834 | | 3.10835 |11 | |79004 79059| +550897 |V0897 Mon |080007.8-085726 |SRB | 9.3 | 10.6 | |V | | | 115.5 | |M |79100 79192| +550898 |V0898 Mon *|080159.7-064646 |RRAB | 13.3 | 14.2 | |V |52775.525 | | 0.54146 |30 | |79100 79112| +550899 |V0899 Mon |060919.3-064156 |INT | 12.6 | 14.9 | |g | | | | |pec(e) |80432 80432| NL80_2 +550900 |V0900 Mon *|065722.2-082318 |FU | 9.8 |< 11.5 | 12.65 |J | | | | | |80424 2MASS| NL80_2 +550901 |V0901 Mon *|062725.3+011132 |CEP(B) | 10.1 | 10.4 | |V |53753.6841 | | 2.26571 | |G0 |80249 DM | NL80_2 +550902 |V0902 Mon *|062746.4+014811 |E+NL | 13.5 | 15.5 | |* |53342.545 | | 0.2551 : | |pec(UG) |80250 80250| NL80_2 +550903 |V0903 Mon *|062953.8+060319 |EA | 12.28 | 12.83 | 12.80 |V |51498.710 | | 10.0209 |09 | |80042 GSC | NL80_2 +550904 |V0904 Mon *|063215.3+085421 |EA | 12.40 | 12.82 | 12.68 |V |52364.390 | | 4.2925 |04 |B8 |80252 GSC | NL80_2 +550905 |V0905 Mon |063326.7-000430 |L: | 10.48 | 10.76 | |V | | | | |G0e |80077 80077| NL80_2 +550906 |V0906 Mon *|063719.7+072624 |EA | 10.62 | 11.15 : | 10.82 |V |51604.760 | | 3.06895 |05 |A2 |80042 DM | NL80_2 +550907 |V0907 Mon *|063926.9+071345 |EA | 10.31 | 10.59 | 10.57 |V |51549.733 | | 1.41626 |09 |F8 |80042 GSC | NL80_2 +550908 |V0908 Mon *|064005.7+071933 |EA | 11.27 | 11.74 | 11.54 |V |52521.868 | | 2.88420 |11 |A |80002 GSC | NL80_2 +550909 |V0909 Mon *|064006.8+044551 |EA | 10.35 | 10.67 | 10.63 |V |51566.624 | | 1.85270 |10 |A0V |80042 DM | NL80_2 +550910 |V0910 Mon *|064013.7+040940 |EA | 10.89 | 11.41 | 11.39 |V |52714.509 | | 2.95379 |06 |F8 |80042 GSC | NL80_2 +550911 |V0911 Mon |064037.6+114339 |DCEP | 12.1 | 12.8 | |V |52712.5029 | | 4.978400 |25 | |80002 GSC | NL80_2 +550912 |V0912 Mon *|064059.3+093552 |IN | 9.17 | 9.66 | |H | | | | | |80257 80257| NL80_2 +550913 |V0913 Mon |064533.7+074859 |DCEP | 12.8 | 13.9 | |V |52665.666 | | 2.4270 |20 | |80002 USNO | NL80_2 +550914 |V0914 Mon |064553.3+100341 |DCEPS | 10.6 | 11.0 | |V |52394.66 | | 2.680900 |42 | |80002 GSC | NL80_2 +550915 |V0915 Mon *|065002.6+062825 |EA | 10.85 | 11.17 | 11.15 |V |51465.840 | | 2.13583 |12 |B |80042 GSC | NL80_2 +550916 |V0916 Mon |065124.3+054734 |M: | 4.04 | 5.16 | |K | | | 536. : | | |80166 2MASS| NL80_2 +550917 |V0917 Mon *|065533.7+074444 |EA | 9.63 | 9.97 | 9.93 |V |52761.545 | | 4.00951 |04 |A0 |80042 DM | NL80_2 +550918 |V0918 Mon |065540.3-022016 |M: | 2.90 | 3.90 | |K | | | 595. : | |C |80166 2MASS| NL80_2 +550919 |V0919 Mon *|065554.5+080123 |EA | 11.56 | 12.63 | 11.7 |V |52995.698 | | 1.62398 |10 | |80042 GSC | NL80_2 +550920 |V0920 Mon *|065757.8+021732 |EA | 7.47 | 7.54 | 7.48 |V |48356.79 | | 6.7664 |05 |A2:V:m+G8IIIe |80011 DM | NL80_2 +550921 |V0921 Mon |065808.1-071746 |DSCT | 11.13 | 11.15 | |V | | | 0.0337062 | | |80265 80265| NL80_2 +550922 |V0922 Mon *|065829.9+084117 |EA | 10.87 | 11.50 | 11.38 |V |52714.524 | | 2.087092 | |A5+A2 |80042 GSC | NL80_2 +550923 |V0923 Mon |065905.7+033756 |M | 4.92 | 5.99 | |K | | | 584. | | |80166 2MASS| NL80_2 +550924 |V0924 Mon |070100.4+100346 |RRAB: | 11.9 | 12.3 | |V |52306.468 | | 0.71240 |43 | |80266 GSC | NL80_2 +550925 |V0925 Mon *|070105.1-035816 |EA | 8.30 | 8.55 | 8.52 |V |52625.800 | | 5.95575 |10 |B9 |80042 DM | NL80_2 +550926 |V0926 Mon |070206.7-034517 |SRC | 6.50 | 6.70 | |V | | | 39. : | |M1Ib+A0 |80268 DM | NL80_2 +550927 |V0927 Mon *|070223.7+041422 |EW | 10.90 | 11.17 | 11.16 |V |51522.719 | | 0.361883 | | |80042 GSC | NL80_2 +550928 |V0928 Mon |070411.0+000352 |RS: | 12.5 | 13.0 | |V | | | 9.574 | | |80002 GSC | NL80_2 +550929 |V0929 Mon *|070533.4+003031 |EW | 13.1 | 13.8 | 13.7 |V |53077.6537 | | 0.677709 | | |80002 GSC | NL80_2 +550930 |V0930 Mon *|070720.7-093500 |EB | 8.32 | 8.41 | 8.40 |V |51889.743 | | 2.35510 | |B3II/III |80015 GSC | NL80_2 +550931 |V0931 Mon *|070807.7-103617 |EA | 10.06 | 10.18 | |V |53780.725 | | 1.90150 |07 |B9 |80015 GSC | NL80_2 +550932 |V0932 Mon |071035.0-011126 |M | 5.31 | 6.96 | |K | | | 594. | |C |80166 2MASS| NL80_2 +550933 |V0933 Mon |071207.7-101639 |SR | 5.77 | 6.07 | |K | | | 437. | | |80166 2MASS| NL80_2 +550934 |V0934 Mon *|071455.6-004614 |EW | 12.7 | 13.5 | 13.4 |V |53825.564 | | 0.509444 | | |80002 GSC | NL80_2 +550935 |V0935 Mon *|071710.2-013214 |EA | 9.7 | 10.2 | 9.9 |V |54430.79 | | 5.99381 | |A0 |80001 GSC | NL80_2 +550936 |V0936 Mon *|071910.4-012305 |EW | 13.7 | 14.2 | 14.2 |V |53523.4483 | | 0.368962 | | |80001 GSC | NL80_2 +550937 |V0937 Mon *|074422.0-064149 |EA+DSCT | 8.76 | 8.92 | 8.84 |V |51950.6576 | | 3.208647 |09 |F0V |80281 DM | NL80_2 +550938 |V0938 Mon *|074619.4-043241 |EW | 14.65 | 15.09 | 15.0 : |V |48939.77 | | 0.682 | | |80284 80284| NL80_2 +550939 |V0939 Mon |074621.4-043429 |EA: | 17.45 | 17.90 | |V |48657.65 | | | | |80284 80284| NL80_2 +550940 |V0940 Mon |074638.3-044351 |EA: | 15.2 |< 15.5 | |V | | | | | |80284 80284| NL80_2 +550941 |V0941 Mon |074649.2-044029 |DSCTC: | 15.33 | 15.40 | |V | | | | | |80284 80284| NL80_2 +550942 |V0942 Mon |074652.6-044001 |EA: | 16.65 |< 16.8 | |V | | | | | |80284 80284| NL80_2 +550943 |V0943 Mon |080008.2-104550 |EA: | 14.67 | 14.83 | |V |50512.95 :| | | | |80290 80290| NL80_2 +550944 |V0944 Mon |080032.8-021246 |RRC: | 16.0 | 16.3 | |V |51976.6569 | | 0.209273 |50 : | |80159 USNO | NL80_2 +550945 |V0945 Mon |080044.9-021043 |RRAB | 18.2 | 18.9 | |V |51614.5386 | | 0.529842 | | |80159 USNO | NL80_2 +550946 |V0946 Mon |080118.1-002411 |RRAB | 14.2 | 14.8 | |V |51588.6488 | | 0.587692 |17 | |80159 GSC | NL80_2 +550947 |V0947 Mon |080129.7-002308 |RRAB | 16.0 | 16.8 | |V |51588.6040 | | 0.540476 |20 | |80159 USNO | NL80_2 +550948 |V0948 Mon *|080151.2-003326 |EW | 13.0 | 13.7 | 13.7 |V |51870.94 | | 0.377103 | | |80002 GSC | NL80_2 +550949 |V0949 Mon |080317.1-020604 |RRAB | 17.1 | 18.1 | |V |51588.5755 | | 0.540676 | | |80159 USNO | NL80_2 +550950 |V0950 Mon |080329.1-005354 |RRAB | 16.0 | 17.2 | |V |51976.6407 | | 0.459548 |09 | |80159 USNO | NL80_2 +550951 |V0951 Mon |080601.4-011643 |RRC: | 16.5 | 16.9 | |V |51612.5525 | | 0.282084 |45 : | |80159 USNO | NL80_2 +550952 |V0952 Mon |080723.5-013518 |RRAB | 16.2 | 17.4 | |V |51588.5870 | | 0.529874 |25 | |80159 USNO | NL80_2 +550953 |V0953 Mon *|080737.2-002614 |EW: | 13.8 | 14.4 | 14.4 |V |54797.8165 | | 0.426940 | | |80002 GSC | NL80_2 +550954 |V0954 Mon |080753.8-012700 |RRAB | 18.2 | 18.8 | |V |51588.5847 | | 0.529774 |10 | |80159 USNO | NL80_2 +550955 |V0955 Mon |080801.0-013932 |RRAB | 18.4 | 18.8 | |V |51588.6166 | | 0.529043 |20 | |80159 USNO | NL80_2 +550956 |V0956 Mon |080827.8-004826 |RRAB | 16.7 | 17.2 | |V |51611.5699 | | 0.635401 |22 | |80159 USNO | NL80_2 +550957 |V0957 Mon |081000.1-021156 |RRAB | 17.7 | 18.5 | |V |51572.6184 | | 0.536775 |20 | |80159 USNO | NL80_2 +550958 |V0958 Mon |062206.4+042817 |EW | 11.92 | 12.8 | |V |51525.891 | | 0.298305 | | |80042 GSC | NL80_2 +550959 |V0959 Mon |063938.6+055353 |NB | 9.86 |< 18. | |V |56154. |2012 | | |pec(Nova) |80640 80641| NL80_3 +559002 |bet Mon |062849.1-070159 |BE | 3.77 | 3.84 | |Hp| | | | | |75174 BD | +560001 |R Mus |124205.0-692427 |DCEP | 5.93 | 6.73 | |V |26496.288 | | 7.510211 |30 |F7Ib-G2 |00003 09423| +560002 |S Mus *|121247.0-700906 |DCEP | 5.89 | 6.49 | |V |40299.42 | | 9.66007 |49 |F6Ib-G0 |05366 03470| +560003 |T Mus *|132113.9-742631 |SRB | 9.4 | 12.0 | |p | | | 93. | |C(Np) |00003 08953| +560004 |U Mus |132459.3-643951 |M | 10.5 |< 14.0 | |p |13323. | | 356. | |M6e |00418 03471| +560005 |V Mus *|124111.6-644304 | | 14.2 | 18.3 | |B | | | | | |00015 08710| +560006 |W Mus |125134.8-652820 |M | 12.4 |< 15.0 | |V |54127. | | 120. | | |00001 GSC22| +560007 |X Mus |130259.3-651450 | | 13.2 | 15.7 | |p | | | | | |00015 09423| +560008 |Y Mus |130548.2-653047 |RCB | 10.5 | 12.1 | |p | | | | |Fp |00017 08129| +560009 |Z Mus |130548.3-651758 |S: | 14.7 |< 17.0 | |p | | | | | |00015 09423| +560010 |RR Mus |113925.1-723337 |SRB | 11.3 | 12.4 | |p | | | 75. : | |C(Na) |00003 CoD | +560011 |RS Mus |122319.2-753013 |SR | 12.4 |< 13.2 | |p | | | | |C(Nb) |00003 04001| +560012 |RT Mus |114432.9-671819 |DCEP | 8.57 | 9.32 | |V |43290.39 | | 3.086131 |27 |F8 |00001 00021| +560013 |RU Mus |130343.4-644720 | | 13.4 | 14.6 | |p | | | | | |00015 GSC22| +560014 |RV Mus *|124907.9-700246 |M | 14.7 | 18.0 | |p | | | 255. : | | |00419 09423| +560015 |RW Mus *|125214.7-714758 |M | 14.0 | 18.0 | |p | | | 260. : | | |00419 USNO | +560016 |RX Mus |125413.8-721225 |M | 14.5 | 18.0 | |p | | | 129. : | | |00419 USNO | +560017 |RY Mus *|125836.4-704447 |RRAB | 15.2 | 16.3 | |B |42478.773 | | 0.750101 |12 | |00420 08130| +560018 |RZ Mus *|130053.3-705743 |M | 13.0 | 16.2 : | |p |26166. | | 333.7 | |Me |00420 08130| +560019 |SS Mus |130809.9-711258 |M | 15.0 |< 18.5 | |p | | | 235. : | | |00419 USNO | +560020 |ST Mus |130840.7-711540 |RRAB | 14.3 | 15.4 | |p |38536.278 | | 0.4633682 |13 | |06525 06525| +560021 |SU Mus |130845.6-700446 |M | 13.5 | 17.5 | |p | | | 151. : | | |00419 GSC22| +560022 |SV Mus |131056.4-702427 |M | 14.0 | 18.5 | |p | | | 170. : | | |00419 GSC22| +560023 |SW Mus |131251.7-710646 |M | 13.5 | 18.5 | |p | | | 200. : | | |00419 USNO | +560024 |SX Mus |131500.6-705459 |E:/SD: | 16.0 | 18.0 | |p | | | | | |00419 USNO | +560025 |SY Mus *|113210.0-652512 |ZAND | 10.2 | 12.7 | 11.2 |V |36460. | | 621.8 | |M2+e |08131 08131| +560026 |SZ Mus |121958.8-654650 | | 16. |< 17.5 | |p | | | | | |00249 USNO | +560027 |TT Mus |112128.0-652826 |EA/SD: | 11.9 | 12.7 | |p |23995.242 | | 3.53479 |17 | |00040 00040| +560028 |TU Mus *|113110.9-654432 |EB/KE | 8.17 | 8.75 | 8.65 |V |41699.8270 | | 1.3872833 | |O8.5Vn+O8 |08132 05625| +560029 |TV Mus *|113957.8-644859 |EW/KW | 11.0 | 11.3 | 11.3 |p |24161.9711 | | 0.4457010 | |F2 |00399 00399| +560030 |TW Mus *|114241.4-662814 |EW/KW | 12.0 | 12.4 | 12.4 |p |24260.344 | | 0.4179484 | | |00039 00040| +560031 |TX Mus |114707.5-652424 |RRAB | 12.4 | 12.8 | |p |24260.264 | | 0.473226 |20 | |00040 00040| +560032 |TY Mus |114956.4-654713 |M | 11.9 |< 14.5 | |p |23950. | | 173. | | |00040 00040| +560033 |TZ Mus *|115056.5-650826 |DCEP | 11.16 | 12.12 | |V |24259.37 | | 4.944885 |27 | |00001 00040| +560034 |UU Mus |115217.7-652415 |DCEP | 9.13 | 10.28 | |V |36208.270 | | 11.63641 |37 |F7/G0p |00001 00544| +560035 |UV Mus |115407.4-661219 |EA/SD | 10.2 | 11.4 | |p |23943.338 | | 2.003273 |15 |A2 |00039 08953| +560036 |UW Mus *|120633.7-650415 |EA/SD | 11.7 | 12.8 | 11.9 |p |23977.27 | | 6.2886 |14 | |00040 00040| +560037 |UX Mus |121733.7-654514 |DCEP | 13.8 |< 14.5 | |p |26479.44 | | 7.14220 |15 | |00046 00040| +560038 |UY Mus *|123046.8-660153 |EB/SD | 11.7 | 13.0 | 12.0 |p |24293.41 | | 0.56244 | | |00040 00040| +560039 |UZ Mus |123206.8-660751 |EA/SD | 12.0 | 13.7 | |p |23945.32 | | 2.4620 |14 | |00040 00040| +560040 |VV Mus |121331.4-651733 |RV: | 13. |< 14. | |p | | | 29. | | |00417 00417| +560041 |VW Mus *|120023.8-660057 |EA/DM | 13.5 | 14.1 | 13.9 |p |24776.888 | | 3.705654 |11 | |00045 00045| +560042 |VX Mus |120121.1-655244 |EA/SD: | 11.0 | 11.7 | |p |24775.073 | | 3.11175 |18 | |00045 00045| +560043 |VY Mus |131406.5-714525 |M | 14.0 |< 16.5 | |p |25430. | | 194.6 | | |00047 00022| +560044 |VZ Mus |132011.8-701830 |RR | 15.2 | 16.4 | |p | | | | | |00047 00022| +560045 |WW Mus |132005.9-690411 |M | 13.8 |< 16.5 | |p |26150. | | 246.0 | | |00047 00022| +560046 |WX Mus |132534.0-695338 |RRAB | 14.4 | 16.0 | |p |25434.26 | | 0.5742 | | |00047 00022| +560047 |WY Mus *|132540.9-695316 |RRAB | 13.7 | 15.4 | |p |24173.06 | | 0.60562 |33 | |00047 00022| +560048 |WZ Mus |132702.0-702442 |M | 14.5 |< 16.5 | |p |26150. | | 241.8 | | |00047 00022| +560049 |XX Mus |132743.8-704423 |RR | 14.0 | 15.0 | |p | | | | | |00047 00022| +560050 |XY Mus |132733.0-650404 |SRB | 12.0 | 13.3 | |p |26030. | | 193. | |M5e |00047 00022| +560051 |XZ Mus *|133029.8-704628 |SR | 11.2 | 14.0 | |p |23960. | | 111. | | |00047 00022| +560052 |YY Mus |133031.9-685204 |S: | 13.5 | 15.3 | |p | | | | |C |00047 00022| +560053 |YZ Mus |133113.1-674136 |M: | 14.6 |< 16.5 | |p |26000. | | 238. | | |00047 00022| +560054 |ZZ Mus |133209.6-712346 |M | 13.3 |< 16.5 | |p |26060. | | 213. | | |00047 00022| +560055 |AA Mus |133340.0-703306 |M | 14.0 |< 16.5 | |p |25440. | | 278.7 | | |00001 00022| +560056 |AB Mus *|133400.1-674120 |EA/SD | 12.8 | 14.5 | 13.0 |p |25412.365 | | 0.96494 |20 : | |00047 00022| +560057 |AC Mus |133429.7-703818 |RRAB | 13.4 | 15.0 | |p |25379.36 | | 0.51578 |33 | |00047 00022| +560058 |AD Mus |133420.1-694055 |M: | 15.1 |< 16.5 | |p |26110. | | 230. | | |00047 00022| +560059 |AE Mus |133437.9-702531 |SR | 12.0 | 14.4 | |p |26030. | | 169. | | |00047 00022| +560060 |AF Mus |133442.0-664552 |M: | 14.7 |< 16.5 | |p |25670. | | 174.2 | | |00047 00022| +560061 |AG Mus |133444.0-671852 |EA/SD | 13.1 | 15.2 | |p |38527.719 | | 3.168478 |11 | |06525 06525| +560062 |AH Mus |133506.7-691640 |M | 13.6 |< 16.5 | |p |26145. | | 369. | | |00047 00022| +560063 |AI Mus |133903.7-723710 |M | 12.0 |< 16.5 | |p |25340. | | 444. | | |00047 00022| +560064 |AK Mus |133907.7-720334 |S: | 14.9 | 15.3 | |p | | | | | |00047 00022| +560065 |AL Mus |134028.8-714558 |M | 14.5 |< 16.5 | |p |26090. | | 167. | | |00047 00022| +560066 |AM Mus |134040.6-694427 |EA/SD | 13.2 | 15.4 | |p |38528.298 | | 4.54675 |11 *| |06525 06525| +560067 |AN Mus |134100.8-673055 |SR | 14.9 | 16.0 | |p |26010. | | 187.6 | | |00047 00022| +560068 |AO Mus |134134.4-674838 |E: | 13.7 | 14.7 | |p | | | | |C(R) |00047 00022| +560069 |AP Mus |134245.3-711600 |M | 13.4 | 16.7 : | |p |26120. | | 176. | | |00047 00022| +560070 |AQ Mus |134406.6-691641 |SR: | 15.2 |< 16.5 | |p |25395. | | 275. | | |00047 00022| +560071 |AR Mus |134447.6-691001 |E/SD | 14.0 | 15.5 | |p |25409.33 | | 2.2655 | | |00047 00022| +560072 |AS Mus *|134440.2-682835 |CEP | 14.0 | 16.2 | |p |44006. | | 26.425 | | |00047 00022| +560073 |AT Mus |134613.2-675222 |EA/SD | 12.8 | 14.2 | |p |38534.309 | | 4.67432 |14 *| |06525 06525| +560074 |AU Mus |134610.5-672214 |RRAB | 14.0 | 15.4 | |p |25355.51 | | 0.6103 | | |00047 00022| +560075 |AV Mus |134712.6-703812 |RRAB | 14.1 | 15.3 | |p |38529.229 | | 0.6846412 |14 | |06525 06525| +560076 |AW Mus |134913.3-681212 |M | 14.5 |< 16.5 | |p |25440. | | 247. | | |00047 00022| +560077 |AX Mus *|134920.3-683414 |M | 12.5 | 16.0 | |p |25330. | | 99. | | |00047 00022| +560078 |AY Mus *|113140.3-651616 |EA/DM | 10.51 | 10.8 | 10.8 |B |26473.483 | | 3.205558 |08 *|B9 |00049 00021| +560079 |AZ Mus |113653.8-662718 |EA/D | 13.6 | 14.0 | |p |28007.208 | | 3.96977 |12 | |04160 00054| +560080 |BB Mus *|113709.3-662529 |EA/D | 13.4 | 13.7 | |p |25842.789 | | 2.52223 |15 | |00054 00054| +560081 |BC Mus |114735.0-644328 |EA/SD | 12.2 | 14.5 : | |p |24951.363 | | 3.511171 |12 *| |00054 00054| +560082 |BD Mus *|121808.4-652652 |EA/SD: | 13.1 | 13.7 |( 0.05 )|p |24768.244 | | 1.481335 |20 *| |00054 00054| +560083 |BE Mus *|122105.9-663034 |EW/KW | 13.9 | 14.1 | 14.1 |B |25088.0628 | | 0.3369219 | | |00054 00054| +560084 |BF Mus *|122115.8-663045 |EW/KE | 14.0 | 14.4 | 14.4 |B |24752.185 | | 0.844776 | | |00054 00054| +560085 |BG Mus |131854.6-653710 |RRAB | 13.8 | 15.5 | |p |24696.56 | | 0.50202 | | |00014 GSC22| +560086 |BH Mus |132448.4-652410 |M | 14.5 |< 17.5 | |p |26100. | | 347.5 | | |00014 USNO | +560087 |BI Mus |113238.8-664720 |EA/SD | 13.8 | 15.2 | |p |26117.244 | | 3.7636 |13 | |00069 00069| +560088 |BK Mus *|113033.9-651919 |E:/GS: | 12.8 | 13.2 | |p | | | | | |09424 09424| +560089 |BL Mus |130915.9-651718 |EA/SD: | 11.1 | 11.8 | |p |28336.26 | | 5.0126 | | |00016 09423| +560090 |BM Mus |133116.4-651619 |I: | 14.2 | 15.2 | |p | | | | | |00014 06286| +560091 |BN Mus |133212.0-654853 |I: | 13.4 | 14.1 | |p | | | | | |00014 06286| +560092 |BO Mus |123454.5-674525 |LB | 5.85 | 6.56 | |V | | | | |M6II-III |00422 03470| +560093 |BP Mus |125037.7-714619 |EA/SD | 9.6 |< 13. | |p |43928.138 | | 3.32058 |13 : | |08604 03472| +560094 |BQ Mus |112932.9-694942 |M | 11. |< 15.5 | |p |27890. | | 320. | | |00090 02385| +560095 |BR Mus *|120451.8-725212 |EW/KE | 10.64 | 11.28 | 11.25 |V |44360.60296 | | 0.798196848 | | |09425 CPD | +560096 |BS Mus *|112143.8-660525 |EB/KE | 10.9 | 11.6 | 11.5 |p |25354.284 | | 0.7682424 | | |04160 04160| +560097 |BT Mus |112637.9-750327 |CST | 14. | | |p | | | | | |08727 04001| +560098 |BU Mus |112650.0-743848 |EA/SD: | 15.7 | 16.6 : | |p |36693.25 | | 5.42 : | *| |08727 04001| +560099 |BV Mus |112658.6-745901 |RRAB | 15.2 | 16.0 | |p |36718.220 | | 0.552 |20 : | |08727 04001| +560100 |BW Mus |113048.3-750509 |EA | 15.5 | 16. | |p | | | | | |04001 04001| +560101 |BX Mus *|113615.7-663832 |EA/D | 12.6 | 13.1 |( 0.04 )|p |25035.190 | | 2.23984 |16 | |04160 04160| +560102 |BY Mus |114758.9-740754 |EA/SD: | 14.3 |< 16.5 | |p |36723.298 | | | | |08727 04001| +560103 |BZ Mus |120436.9-743018 |EA/SD: | 15.0 | 16.3 | |p |36743.256 | | 3. /N| | |08727 04001| +560104 |CC Mus |120538.6-653612 |SRA | 13.4 | 15.0 | |p |28695. | | 68.2 | | |04160 04160| +560105 |CD Mus *|120548.3-661814 |EA/SD | 14.6 | 15.7 | 14.7 |p |25391.482 | | 6.12672 |12 | |04160 04160| +560106 |CE Mus |121452.2-753415 |IS | 13.3 | 14.7 | |p | | | | | |04159 04001| +560107 |CF Mus |121658.3-753732 |I | 13.5 | 17.5 | |p | | | | | |04001 04001| +560108 |CG Mus |122013.1-741315 |UGZ | 15.9 | 17.0 | |p | | | | | |04159 04001| +560109 |CH Mus |122045.8-753253 |M | 12.5 | 18. | |p | | | | |Me |04001 04001| +560110 |CI Mus |122208.6-740627 |RR | 12.4 | 13.8 | |p | | | 0.600732 | | |04159 04001| +560111 |CK Mus |122733.2-750154 |EA/D | 14.0 | 16.0 | |p |36728.300 | | 8.985 |18 :*| |08727 04001| +560112 |CL Mus |123346.5-735601 |RRAB | 13.4 | 14.6 | |p |38529.131 | | 0.4868672 |15 | |06525 04001| +560113 |CM Mus |123549.0-732146 |EA | 14. | 15. | |p | | | | | |04001 04001| +560114 |CN Mus |123846.1-655222 |EA/SD: | 13.1 | 13.9 | |p |25386.454 | | 1.297189 |12 | |04160 04160| +560115 |CO Mus |124023.7-740820 |EA/D | 13.1 | 13.6 | |p |38532.108 | | 7.01634 |12 | |06525 04001| +560116 |CP Mus |124719.0-740315 |M | 14.4 |< 16.5 | |p | | | | |Me |04001 04001| +560117 |CQ Mus |125628.6-735931 |EA | 14.1 | 14.5 | |p |36685.269 | | | | |08727 04001| +560118 |CR Mus |125838.1-741711 |M | 9.5 |< 15. | |V |41858. | | 206. | |Me |00001 08134| +560119 |CS Mus *|130259.7-741201 |M | 12.5 |< 16. | |p |36720. | | | | |08727 04001| +560120 |CT Mus |131013.5-753117 |M | 14. | 17.5 | |p | | | | | |04001 04001| +560121 |CU Mus |112705.5-742828 |EA | 14.5 | 15.5 | |p |38546.24 | | | | |03776 03776| +560122 |CV Mus |114500.9-704245 |EA | 13.0 | 14.0 | |p |38529.32 | | | | |03776 GSC | +560123 |CW Mus |114716.6-695620 |SR | 14. | 16. | |p | | | | | |03776 03776| +560124 |CX Mus |114741.9-685910 |EA/D | 8.7 | 9.3 | |p |28687.275 | | 5.90322 | |B5III |05130 08953| +560125 |CY Mus |115039.9-670548 |RR | 15. | 16. | |p | | | | | |03776 03776| +560126 |CZ Mus |115949.5-703109 |EA | 12.5 | 13.5 | |p |38556.22 | | | | |03776 03776| +560127 |DD Mus |121439.8-683236 |RR | 13.5 | 14.5 | |p |38553.245 | | | | |03776 03776| +560128 |DE Mus |121459.1-684521 |RR | 15. | 16. | |p |38522.41 | | | | |03776 03776| +560129 |DF Mus |121732.0-672933 |SR | 14. | 16. | |p | | | | | |03776 03776| +560130 |DG Mus |121828.0-705800 |SR | 15. | 17. | |p | | | | | |03776 03776| +560131 |DH Mus |124441.8-715406 |RR | 14.5 | 15.5 | |p |38522.455 | | | | |03776 03776| +560132 |DI Mus |125016.4-694915 |RR | 15.5 | 16.5 | |p |38529.32 | | | | |03776 03776| +560133 |DK Mus |125205.0-684838 |EA/SD: | 15. | 17. | |p |38522.28 | | | | |03776 03776| +560134 |DL Mus |125217.1-690508 |RR | 15. | 16. | |p |38522.36 | | | | |03776 03776| +560135 |DM Mus |130833.8-682543 |EA | 15. | 16. | |p |38522.36 | | | | |03776 03776| +560136 |DN Mus |132334.9-743342 |EA/SD: | 13.4 | 14.4 | |p |38528.985 | | 3.636551 |14 | |06525 06525| +560137 |DO Mus |114539.8-681616 |EA/SD: | 11.8 | 12.5 | |p |28656.500 | | 3.45449 | | |05449 05449| +560138 |DP Mus |115452.1-733144 |SR | 15.5 | 17. | |p | | | | | |03776 03776| +560139 |DQ Mus |120021.9-682935 |RR: | 16. |< 17. | |p |38556.22 | | | | |03776 03776| +560140 |DR Mus |120037.6-705551 |SR: | 16. |< 17. | |p | | | | | |03776 03776| +560141 |DS Mus |122208.7-704439 |SR | 15.5 | 17. | |p | | | | |Me |03776 03776| +560142 |DT Mus |123907.6-694618 |SR | 15.5 | 17. | |p | | | | | |03776 03776| +560143 |DU Mus |124059.8-670638 |RR | 16. |< 16.5 | |p | | | | | |03776 03776| +560144 |DV Mus |125038.3-685630 |SR | 15. | 16.5 | |p | | | | | |03776 03776| +560145 |DW Mus *|130749.4-685330 |CEP: | 12.2 | 14.2 : | |p |38156.603 | | 1.002282 |35 | |03934 03934| +560146 |DX Mus |131322.8-702216 |SR | 15. | 16.5 | |p | | | | | |03776 03776| +560147 |DY Mus |131658.0-675231 |SR: | 13.5 |< 15. | |p | | | | | |03776 03776| +560148 |DZ Mus *|115953.5-695305 |EA/D | 8.3 | 8.9 | |p |18093.728 | | 3.247619 | |B8/9IV-V |07002 CPD | +560149 |EE Mus *|123056.5-655025 |UVN | | 14.72 | |V | | | | |Me-M |05856 05856| +560150 |EF Mus |125417.9-700212 |LB: | 8.0 | 8.8 | |p | | | | |K1II/III |05835 09423| +560151 |EG Mus |124212.6-685048 |SR | 11.5 | 14.18 | |B |40815. | | 140. : | | |06589 06589| +560152 |EH Mus |113355.0-703231 |L | 14.2 | 14.8 | |p | | | | | |06318 06318| +560153 |EI Mus |120157.9-721403 |EA | 13.8 | 14.5 | |p | | | | | |06318 03776| +560154 |EK Mus |122405.6-674808 |M | 13. | 17.5 | |p | | | | |Me |04453 USNO | +560155 |EL Mus |122702.2-702830 |EA/SD | 12.7 | 14.1 | |p |38527.896 | | 2.1593303 |08 *| |06525 06525| +560156 |EM Mus |123555.5-725300 |RRAB | 11.9 | 12.8 | |p |38536.202 | | 0.4672966 |10 | |06525 06525| +560157 |EN Mus *|123902.1-670533 |EA/DS | 12.9 | 14.2 | |p |38536.620 | | 14.91516 |08 | |06525 06525| +560158 |EO Mus |124257.4-664229 |EA/D | 14.7 | 15.2 | |p |38533.671 | | 2.90289 | | |06525 06525| +560159 |EP Mus *|124314.4-690323 |CWA: | 11.70 | 12.7 | 11.7 : |V |44024.45 | | 21.3395 |34 | |06525 03776| +560160 |EQ Mus |125207.7-674719 |EA/SD | 14.6 | 15.7 | |p |38535.440 | | 4.59701 |08 | |06525 06525| +560161 |ER Mus |125301.5-711325 |RRAB | 13.5 | 14.8 | |p |38536.155 | | 0.3682337 |10 | |06525 03776| +560162 |ES Mus |125513.8-682608 |RRAB | 13.9 | 15.2 | |p |38536.241 | | 0.4250001 |15 | |06525 06525| +560163 |ET Mus *|125729.5-745353 |RRC | 12.1 | 12.9 | |p |38536.277 | | 0.2296741 |50 | |06525 04001| +560164 |EU Mus |130753.7-711217 |RRAB | 13.3 | 14.4 | |p |38529.306 | | 0.3121445 |24 | |06525 06525| +560165 |EV Mus *|131409.9-655230 |EA/SD: | 12.8 | 13.4 | |p |38529.231 | | 0.7560984 |12 | |06525 06525| +560166 |EW Mus |133757.3-705504 |EA/SD | 13.6 | 14.8 | |p |38527.489 | | 2.184923 |12 *| |06525 06525| +560167 |EX Mus |134724.9-681459 |CEP | 13.2 | 15.1 | |p |38533.218 | | 4.52478 |20 | |06525 06525| +560168 |EY Mus *|123254.7-653904 |UVN | 15.5 | 16.7 | |U | | | | | |07818 07818| +560169 |EZ Mus *|132846.8-693738 |ACV | 6.19 |( 0.09 )| |V |43172.57 | | 4.3127 |50 |B8Vp(Si) |08806 CPD | +560170 |FF Mus |122846.4-683506 |M | 13.1 |< 16.1 | |V |38915. | | 248.6 | | |08509 08509| +560171 |FG Mus |124035.8-700847 |M | 12.5 | 15.9 | |V |38472. | | 155.3 |50 | |08509 03770| +560172 |FH Mus *|123955.9-663040 |ELL: | 6.26 |( 0.03 )|( 0.03 )|V | | | 0.58 : | |B8V |08215 CPD | +560173 |FI Mus | | | | | | | | | | | | |=RV Mus +560174 |FK Mus |125017.4-702829 |SRA | 14.1 | 15.8 | |V |38812. | | 408.7 |50 | |08509 08509| +560175 |FL Mus |125032.1-704247 |M | 14.6 |< 16.1 | |V |38911. | | 279.4 | | |08509 08509| +560176 |FM Mus |125159.1-695750 |M | 12.8 |< 16.1 | |V |37368. | | 349.0 | | |08509 08509| +560177 |FN Mus | | | | | | | | | | | | |=RX Mus +560178 |FO Mus *|125702.0-680208 |M: | 14.5 |< 16.1 | |V |37757. | | 347.8 | | |08509 08509| +560179 |FP Mus | | | | | | | | | | | | |=CR Mus +560180 |FQ Mus |125831.6-710547 |M | 13.8 |< 16.1 | |V |38530. | | 297.6 |50 | |08509 08509| +560181 |FR Mus |125934.0-680911 |M | 14.1 |< 16.1 | |V |38910. | | 253.3 | | |08509 08509| +560182 |FS Mus |130024.8-720453 |M | 12.9 |< 16.1 | |V |38490. | | 329.3 |40 | |08509 08509| +560183 |FT Mus |130032.2-712014 |M | 13.6 |< 16.1 | |V |40044. | | 341.7 | | |08509 08509| +560184 |FU Mus |130316.6-675325 |M | 12.0 |< 16.1 | |V |38202. | | 199.5 | | |08509 08509| +560185 |FV Mus |131119.7-733723 |M | 13.4 |< 16.1 | |V |38468. | | 209.9 | | |08509 08509| +560186 |FW Mus |131129.3-683239 |M | 11.4 | 16.0 | |V |40008. | | 317.7 |35 | |08509 08509| +560187 |FX Mus | | | | | | | | | | | | |=DY Mus +560188 |FY Mus |131830.0-674612 |M | 13.4 |< 16.1 | |V |38213. | | 352.7 | | |08509 08509| +560189 |FZ Mus |131842.1-661423 |M | 12.8 |< 16.1 | |V |38502. | | 189.2 | | |08509 08509| +560190 |GG Mus |133044.8-725104 |M | 13.8 |< 16.1 | |V |37403. | | 275.15 | | |08509 08509| +560191 |GH Mus | | | | | | | | | | | | |=YZ Mus +560192 |GI Mus |133236.3-731825 |M | 12.6 |< 16.1 | |V |38407. | | 316.05 | | |08509 08509| +560193 |GK Mus *|112601.8-743634 |EW | 14.2 | 15.0 | 15.0 |p |36693.310 | | 0.9310 | | |08727 04001| +560194 |GL Mus |113858.9-742808 |RRAB | 15.1 | 16.0 | |p |36691.250 | | 0.4024 |15 | |08727 04001| +560195 |GM Mus |121451.3-743332 |E | 13.9 | 15.0 | |p |36720.278 | | | | |08727 04001| +560196 |GN Mus *|123727.4-740545 |EW/KW | 13.7 | 14.4 | 14.2 |p |36684.240 | | 0.3869 | | |08727 04001| +560197 |GO Mus *|124001.5-751912 |EW/KE | 14.6 | 15.2 | 15.2 |p |36693.295 | | 0.524 | | |08727 04001| +560198 |GP Mus *|125344.0-655359 |CWA | 12.0 | 12.7 | |V |41785.643 | | 26.694 |50 | |08752 08752| +560199 |GQ Mus |115202.4-671221 |NB | 7.2 |< 15. | |V | | | | | |67430 67431| +560200 |GR Mus |125737.2-691719 |XB | 18. | 19.1 | |V | | | | | |67433 67434| +560201 |GS Mus |120549.9-693423 |ACYG | 7.34 | 7.55 | |V | | | | | |68313 CPD | +560202 |GT Mus |113929.6-652352 |E:/RS | 5.08 | 5.21 | |V | | | | | |69011 69201| +560203 |GU Mus |112626.9-684033 |XND+ELL | 13.65 | 20.9 | |B | | | | | |71102 71104| +560204 |GV Mus |123708.6-681840 |EW | 16.82 | 17.05 | |Ic| | | | | |73203 73203| +560205 |GW Mus |123711.8-681721 |EW | 17.74 | 18.02 | |Ic| | | | | |73203 73203| +560206 |GX Mus |123711.9-682738 |EW | 15.76 | 16.07 | |Ic| | | | | |73203 73203| +560207 |GY Mus |123713.4-682820 |EW | 15.61 | 15.69 | |Ic| | | | | |73203 73203| +560208 |GZ Mus |123731.3-682128 |EW | 16.01 | 16.39 | |Ic| | | | | |73203 73203| +560209 |HH Mus |123733.2-682255 |EA | 17.13 | 17.40 | |Ic| | | | | |73203 73203| +560210 |HI Mus |123737.2-682648 |EB | 15.55 | 15.77 | |Ic| | | | | |73203 73203| +560211 |HK Mus |123744.6-682543 |EW | 17.7 | 18.15 : | |Ic| | | | | |73203 73203| +560212 |HL Mus |123745.0-682217 |EW | 14.74 | 15.07 | |Ic| | | | | |73203 73203| +560213 |HM Mus |123747.2-682304 |EW | 16.32 | 16.95 | |Ic| | | | | |73203 73203| +560214 |HN Mus |123751.4-682234 |EA | 15.03 | 16.03 | |Ic| | | | | |73203 73203| +560215 |HO Mus |123753.7-682323 |EW | 14.99 | 15.11 | |Ic| | | | | |73203 73203| +560216 |HP Mus |123754.2-682225 |EB | 17.8 | 18.1 | |Ic| | | | | |73203 73203| +560217 |HQ Mus |123755.1-682342 |EB | 14.22 | 14.54 | |Ic| | | | | |73203 73203| +560218 |HR Mus |123755.5-682134 |EA | 14.40 | 14.78 | |Ic| | | | | |73203 73203| +560219 |HS Mus |123756.3-682649 |EB | 17.65 | 17.87 | |Ic| | | | | |73203 73203| +560220 |HT Mus |123757.3-682502 |EA | 17.42 | 18.37 | |Ic| | | | | |73203 73203| +560221 |HU Mus |123757.4-682003 |EW | 14.73 | 14.87 | |Ic| | | | | |73203 73203| +560222 |HV Mus |123757.8-682115 |EW | 15.58 | 15.70 | |Ic| | | | | |73203 73203| +560223 |HW Mus |123800.1-682235 |EA: | 16.43 | 16.58 : | |Ic| | | | | |73203 73203| +560224 |HX Mus |123804.2-681844 |EW | 18.25 | 18.97 | |Ic| | | | | |73203 73203| +560225 |HY Mus |123805.2-682545 |EW | 17.52 | 17.77 | |Ic| | | | | |73203 73203| +560226 |HZ Mus |123806.1-681740 |EW | 15.12 | 15.27 | |Ic| | | | | |73203 73203| +560227 |II Mus |123810.0-682130 |EW | 16.12 | 16.34 | |Ic| | | | | |73203 73203| +560228 |IK Mus |123811.8-682410 |EW | 16.16 | 16.81 | |Ic| | | | | |73203 73203| +560229 |IL Mus |123811.9-681934 |EW | 16.99 | 17.78 | |Ic| | | | | |73203 73203| +560230 |IM Mus |123812.3-681712 |EA/D | 16.93 | 17.57 | |Ic| | | | | |73203 73203| +560231 |IN Mus |123814.7-682643 |EA | 18.66 | 19.40 | |Ic| | | | | |73203 73203| +560232 |IO Mus |123813.4-682214 |EW | 15.45 | 15.76 | |Ic| | | | | |73203 73203| +560233 |IP Mus |123816.6-682519 |EA: | 13.66 | 14.00 | |Ic| | | | | |73203 73203| +560234 |IQ Mus |123816.8-682436 |EA | 15.0 | 17.3 | |Ic| | | | | |73203 73203| +560235 |IR Mus |123818.4-682342 |EW | 16.77 | 17.32 | |Ic| | | | | |73203 73203| +560236 |IS Mus |123820.7-682306 |EW | 17.46 | 18.8 | |Ic| | | | | |73203 73203| +560237 |IT Mus |123829.0-681921 |EW | 17.78 | 18.08 | |Ic| | | | | |73203 73203| +560238 |IU Mus |123830.8-682344 |EW | 17.5 | 18.1 | |Ic| | | | | |73203 73203| +560239 |IV Mus |123840.1-682638 |EB | 17.58 | 18.0 | |Ic| | | | | |73203 73203| +560240 |IW Mus |123842.4-682204 |EW | 15.73 | 15.86 | |Ic| | | | | |73203 73203| +560241 |IX Mus |123844.4-682814 |EW | 16.88 | 17.13 | |Ic| | | | | |73203 73203| +560242 |IY Mus |123844.2-682413 |EB | 15.03 | 15.16 | |Ic| | | | | |73203 73203| +560243 |IZ Mus |123850.3-682715 |EW | 16.93 | 17.60 | |Ic| | | | | |73203 73203| +560244 |KK Mus |123850.6-681640 |EA | 15.27 | 15.78 | |Ic| | | | | |73203 73203| +560245 |KL Mus |123903.3-681625 |EW | 15.56 | 15.61 | |Ic| | | | | |73203 73203| +560246 |KM Mus |123907.5-682726 |EB | 16.20 | 16.50 | |Ic| | | | | |73203 73203| +560247 |KN Mus |133332.9-655827 |ZZO | 14.92 |( 0.04 )| |B | | | | | |73047 73204| +560248 |KO Mus |113028.6-743631 |SRB: | 8.52 | 8.85 | |Hp| | | | | |HIP HIP | +560249 |KP Mus |113150.7-680329 |BE | 8.55 | 8.68 | |Hp| | | | | |HIP HIP | +560250 |KQ Mus |113147.9-735410 |LPB | 6.92 | 6.98 | |Hp| | | | | |HIP HIP | +560251 |KR Mus |113325.4-701141 |E | 6.68 | 6.87 | |Hp| | | | | |HIP HIP | +560252 |KS Mus |115252.4-695303 |LB: | 8.07 | 8.17 | |Hp| | | | | |HIP HIP | +560253 |KT Mus |120237.4-705133 |LC: | 7.76 | 8.10 | |Hp| | | | | |HIP HIP | +560254 |KU Mus *|121408.1-683756 |EB: | 9.06 | 9.26 | |Hp| | | | | |HIP HIP | +560255 |KV Mus |121751.6-691310 |BE: | 8.46 | 8.61 | |Hp| | | | | |HIP HIP | +560256 |KW Mus |122828.0-674837 |LB: | 9.18 | 9.30 | |Hp| | | | | |HIP HIP | +560257 |KX Mus |123526.1-740423 |IB: | 12.51 | 13.07 | |Hp| | | | | |HIP HIP | +560258 |KY Mus |123852.4-671135 |ACYG: | 6.24 | 6.30 | |Hp| | | | | |HIP HIP | +560259 |KZ Mus |123919.2-713718 |BCEP | 9.02 | 9.10 | |Hp| | | | | |HIP HIP | +560260 |LL Mus |124050.9-674424 |EA | 8.93 | 9.34 | |Hp| | | | | |HIP HIP | +560261 |LM Mus |124525.9-714241 |SRB | 6.99 | 7.19 | |Hp| | | | | |HIP HIP | +560262 |LN Mus |124628.7-645504 |EB | 9.19 | 9.46 | |Hp| | | | | |HIP HIP | +560263 |LO Mus |124719.0-661415 |BY: | 8.61 | 8.72 | |Hp| | | | | |HIP HIP | +560264 |LP Mus |124931.3-663516 |LB: | 8.45 | 8.56 | |Hp| | | | | |HIP HIP | +560265 |LQ Mus |125208.2-685401 |EA | 9.08 | 9.78 | |Hp| | | | | |HIP HIP | +560266 |LR Mus |125626.5-742933 |LB: | 8.13 | 8.25 | |Hp| | | | | |HIP HIP | +560267 |LS Mus |130305.3-712833 |BE | 5.90 | 6.01 | |Hp| | | | | |HIP HIP | +560268 |LT Mus |132413.6-671855 |EB: | 7.80 | 7.92 | |Hp| | | | | |HIP HIP | +560269 |LU Mus |132807.3-661647 |BE | 9.17 | 9.28 | |Hp| | | | | |HIP HIP | +560270 |LV Mus |132954.6-653007 |BE | 7.65 | 7.78 | |Hp| | | | | |HIP HIP | +560271 |LW Mus |133845.0-701112 |DSCT | 9.22 | 9.36 | |Hp| | | | | |HIP HIP | +560272 |LX Mus |134011.5-740445 |EA | 8.85 | 9.03 | |Hp| | | | | |HIP HIP | +560273 |LY Mus |134113.6-715206 |LB | 6.55 | 6.97 | |Hp| | | | | |HIP HIP | +560274 |LZ Mus |115609.0-653421 |NA | 9.45 |< 18. | |V | | | | | |75175 75176| +560275 |MM Mus |121939.4-740631 |EW: | 14.03 | 14.48 | |V | | | | | |75177 75178| +560276 |MN Mus |121956.4-741052 |EW | 14.59 | 15.12 | |V | | | | | |75177 USNO | +560277 |MO Mus |122931.1-665138 |ACYG | 7.37 | 7.42 | |Hp| | | | | |75030 CPD | +560278 |MP Mus |132207.5-693812 |IT | 10.30 | 10.42 | |V | | | | | |75086 CPD | +560279 |MQ Mus |114119.5-723039 |M | 11.0 |< 14.4 | |V |52650 | | 400. | |Me |78090 USNO | +560280 |MR Mus *|114137.8-675452 |EA | 8.41 | 8.53 | 8.53 |V |48009.675 | | 3.115733 | |A2V+F6V |78011 DM | +560281 |MS Mus |114919.9-660039 |DCEP | 9.89 | 10.33 | |V |52056.529 | | 1.39143 | |G0 |78130 DM | +560282 |MT Mus |130801.9-645756 |SRA | 11.2 | 13.1 | |V |53068 | | 189. | |M7:e |78130 GSC | +560283 |MU Mus |112123.3-723351 |M | 10.2 | 14.6 | |V |53743. | | 180. | |Me |79064 79076| +560284 |MV Mus |112300.1-724811 |M | 11.5 | 14.5 | |V |53832. | | 280. | |Ce |79064 USNO | +560285 |MW Mus |112332.0-713612 |M | 11.2 : |< 13.9 | |V |52976. | | 323. | |Me |79072 GSC | +560286 |MX Mus |112821.4-702406 |M | 11.7 |< 14.7 | |V |53564. | | 268. | | |79072 USNO | +560287 |MY Mus |113047.2-725839 |EA | 13.20 | 14.55 : | 13.45 |V |52055.505 | | 0.969605 |14 | |79004 79076| +560288 |MZ Mus |113057.0-693444 |SRA | 11.8 | 13.3 | |V |53476. | | 196. | | |79072 GSC | +560289 |NN Mus |113236.8-700752 |SRB | 11.3 | 12.4 | |V | | | 100. | | |79100 79076| +560290 |NO Mus |113738.9-721110 |M | 11.2 |< 14.0 | |V |53743. | | 334. | | |79072 79089| +560291 |NP Mus |114047.6-700328 |M | 12.3 |< 15.0 | |V |53414. | | 246. | | |79100 USNO | +560292 |NQ Mus |114229.2-745847 |LB | 12.8 | 13.9 | |V | | | | | |79100 79089| +560293 |NR Mus |114233.4-675209 |M | 12.0 |< 14.2 | |V |53115. | | 290. | |M8 |79072 USNO | +560294 |NS Mus |114705.9-751235 |SRB | 12.4 | 14.1 | |V | | | 227. | | |79100 79063| +560295 |NT Mus *|114708.6-701352 |M | 11.6 |< 16.6 | |V |53836. | | 353. | | |79100 2MASS| +560296 |NU Mus |114819.1-683851 |SRB | 11.3 | 12.5 | |V | | | 68. | |M6 |79100 79089| +560297 |NV Mus |114824.1-675347 |M | 11.0 |< 14.2 | |V |53541. | | 367. | |M7: |79072 GSC | +560298 |NW Mus |115247.0-751226 |SRB | 12.0 | 13.4 | |V | | | 93. | | |79100 79063| +560299 |NX Mus |115324.0-722443 |M | 12.5 |< 14.5 | |V |53875. | | 406. | | |79100 GSC | +560300 |NY Mus |115957.9-741239 |SRB | 12.2 | 13.3 | |V | | | 70.7 | | |79100 GSC | +560301 |NZ Mus |120004.5-751350 |SRB | 11.4 | 12.3 | |V | | | 68. | | |79100 79063| +560302 |OO Mus |120337.9-742835 |SRB | 11.5 | 13.9 | |V | | | 236. : | | |79100 79063| +560303 |OP Mus |120348.5-735309 |SRB | 9.4 | 10.5 | |V | | | 78. | |M4/M5III |79064 79063| +560304 |OQ Mus |120352.0-693055 |SRA | 9.7 | 11.4 | |V |52776. | | 350. | |C: |79100 79089| +560305 |OR Mus |120754.0-675301 |EA: | 8.84 | 9.18 | 8.97 |V |52432.456 | | 1.73106 |16 : |B5III/V |79011 DM | +560306 |OS Mus |120846.3-654529 |LB | 9.7 | 10.7 | |V | | | | |M4 |79064 79071| +560307 |OT Mus *|121538.0-680810 |M | 12.8 |< 16.8 | |V |53895. | | 472. | | |79100 USNO | +560308 |OU Mus |121822.4-705705 |SR: | 13.4 |< 14.8 | |V | | | 440. : | | |79100 79089| +560309 |OV Mus |122244.0-702827 |SRB | 11.0 | 12.2 | |V | | | 61. | | |79100 79089| +560310 |OW Mus *|122936.7-750432 |EA | 13.45 | 14.4 : | |V |52638.790 | | 3.0341 |10 : | |79009 79089| +560311 |OX Mus |123019.7-665708 |M: | 13.0 |< 14.5 | |V |52679. | | 307. | |M |79100 USNO | +560312 |OY Mus |123603.6-733228 |EA | 12.8 | 13.5 | 12.9 : |V |53164.5451 | | 1.09728 |10 | |79100 79076| +560313 |OZ Mus |123702.4-723838 |M | 11.8 |< 14.6 | |V |53607. | | 306. | |Me |79093 79093| +560314 |PP Mus |123713.3-671622 |SRB | 12.2 | 13.3 | |V | | | 115. | |M5 |79100 79089| +560315 |PQ Mus |124338.2-644858 |M: | 13.3 |< 15.0 | |V |52468. | | 450. : | |M9 |79100 USNO | +560316 |PR Mus |124457.7-670422 |SRB | 10.2 | 12.1 | |V | | | 99. | | |79100 79078| +560317 |PS Mus |125510.2-685424 |LC | 6.6 | 7.0 | |V | | | | |M2Iab |79100 DM | +560318 |PT Mus |125743.4-673509 |SRB | 12.8 | 14.3 | |V | | | 120. | | |79100 79089| +560319 |PU Mus |130101.2-691934 |M | 13.6 | 17. : | |V |53872. | | 306. : | |M8: |79100 79089| +560320 |PV Mus |130415.3-751036 |EA | 10.49 | 11.05 | 11.03 : |V |52093.488 | | 2.68354 |07 | |79011 79063| +560321 |PW Mus |130846.7-671219 |M: | 14.4 : | 18.5 : | |B |43546. :| | | | |79100 USNO | +560322 |PX Mus *|131157.5-680335 |RVB: | 11.6 |< 14.2 | |V |53170. | | 59. | |M |79100 79106| +560323 |PY Mus |131310.9-661735 |M: | 13.2 : | 16.0 : | |R | | | | | |79100 GSC | +560324 |PZ Mus |132057.9-661341 |M | 10.7 |< 14.5 | |V |53512. | | 445. | |M7 |79100 GSC | +560325 |QQ Mus |132532.3-730414 |M | 12.4 |< 14.7 | |V |53356. | | 284. | | |79190 79190| +560326 |QR Mus *|132543.7-751704 |M | 12.4 |< 14.0 | |V |53864. | | 277. | | |79190 79190| +560327 |QS Mus |132617.4-670913 |M | 12.4 |< 16.0 | |V |53465. | | 286. | | |79190 79190| +560328 |QT Mus |132703.1-701215 |M | 13.3 |< 15.8 | |V |53901. | | 297. | | |79190 79190| +560329 |QU Mus *|132719.4-743108 |M | 12.4 |< 14.5 | |V |53870. | | 233. | | |79064 USNO | +560330 |QV Mus |132851.5-753719 |SR | 12.0 | 14.0 | |V | | | 122. | | |79064 79089| +560331 |QW Mus |133245.4-745947 |M | 10.6 |< 14.2 | |V |53764. | | 282. | | |79100 79076| +560332 |QX Mus |134719.4-753441 |M | 12.1 |< 15.0 | |V |53792. | | 238. | | |79064 GSC | +560333 |QY Mus |131636.5-673648 |N: | 8.7 : |< 17. | |V |54749. :|2008 | | | |79248 | +560334 |QZ Mus |113357.9-731319 |M | 9.6 | 14.3 | |V |54857. | | 535. | |Ce |80002 GSC | NL80_2 +560335 |V0335 Mus |114710.6-701258 |LB | 10.5 | 11.4 | |V | | | | | |80001 GSC | NL80_2 +560336 |V0336 Mus |120315.3-661450 |SRA | 12.0 | 13.7 | |V |54876. | | 398. | | |80001 GSC | NL80_2 +560337 |V0337 Mus |122544.6-672317 |M | 12.4 |< 14.2 | |V |54935. | | 338. | | |80239 80239| NL80_2 +560338 |V0338 Mus *|125523.2-732212 |RVA: | 9.70 | 10.20 | 10.1 |V |53073. | | 206.7 | | |80001 GSC | NL80_2 +560339 |V0339 Mus |125715.8-690151 |M | 2.76 | 4.31 | |K | | | 586. | |C |80166 2MASS| NL80_2 +560340 |V0340 Mus *|130632.4-650450 |EA | 8.02 | 8.10 | 8.06 |V |53521.605 | | 3.4273 |16 |O9IV |80015 DM | NL80_2 +560341 |V0341 Mus |131312.7-644714 |EP: | 15.33 | 15.34 | |I |52697.28151 | | 1.79323 |06 |G9 |80344 80344| NL80_2 +560342 |V0342 Mus |131351.9-644130 |EA | 17.07 | 17.11 | |I |52696.49729 | | 2.09180 |05 | |80344 80344| NL80_2 +560343 |V0343 Mus |131456.0-650201 |EP: | 14.89 | 14.91 | |I |52698.87378 | | 2.60590 |03 |G7 |80344 80344| NL80_2 +560344 |V0344 Mus |131514.3-644929 |EA | 16.62 | 16.65 | |I |52699.13261 | | 4.13680 |04 | |80344 80344| NL80_2 +560345 |V0345 Mus |131723.3-645455 |EA | 16.78 | 16.80 | |I |52698.04287 | | 2.76877 |05 | |80344 80344| NL80_2 +560346 |V0346 Mus |132448.3-645138 |EA | 16.79 | 16.83 | |I |52699.53686 | | 5.64386 |02 | |80344 80344| NL80_2 +560347 |V0347 Mus |132533.6-645535 |EA | 15.15 | 15.17 | |I |52700.66215 | | 3.40478 |04 |F8 |80344 80344| NL80_2 +560348 |V0348 Mus |132558.6-651451 |EP: | 16.50 | 16.52 | |I |52697.52261 | | 3.11012 |04 |G1 |80344 80344| NL80_2 +560349 |V0349 Mus |132747.2-651435 |EA | 16.87 | 16.89 | |I |52697.01551 | | 1.48830 |08 | |80344 80344| NL80_2 +560350 |V0350 Mus |133225.3-743636 |RRC | 8.17 | 8.35 | |V |52704.788 | | 0.369054 |50 |F2IV |80383 80383| NL80_2 +560351 |V0351 Mus |134750.1-665643 |M | 13.4 |< 15.2 | |V |54560. | | 388. : | |M9 |80297 80297| NL80_2 +560352 |V0352 Mus |134847.7-670005 |M | 12.5 |< 16.0 | |V |53831. | | 290. | |M8 |80297 80297| NL80_2 +560353 |V0353 Mus |134927.4-721141 |M | 12.5 |< 15.0 | |V |53562. | | 353. | | |80297 80297| NL80_2 +569001 |alf Mus *|123711.0-690808 |BCEP | 2.68 | 2.73 | |V | | | 0.0903 | |B2IV-V |08395 CPD | +569003 |gam Mus |123228.0-720759 |LPB | 3.78 | 3.80 | |Hp| | | | | |75030 CPD | +569005 |eps Mus |121734.3-675739 |SRB: | 3.99 | 4.31 | |V | | | 40. | |M5III |06590 CPD | +569007 |eta Mus *|131514.9-675341 |E | 4.76 | 4.81 | |V | | | | |B8V |08513 CPD | +569008 |tet Mus *|130807.2-651822 |E+WR | 5.50 | 5.52 | |V |40661.4 | | 18.341 | |WC6+O9.5I |08513 CPD | +569012 |mu. Mus |114814.5-664854 |LB | 4.6 | 4.8 | |V | | | | |K4III |03712 CPD | +570001 |R Nor *|153557.4-493029 |M | 6.5 | 13.9 | |p |41874. | | 507.50 | |M3e-M6II |00001 00002| +570002 |S Nor *|161851.8-575359 |DCEP | 6.12 | 6.77 | |V |44018.69 | | 9.75411 |47 |F8-G0Ib |00001 03473| +570003 |T Nor *|154403.8-545913 |M | 6.2 | 13.6 | |V |40976. | | 240.7 |41 |M3e-M6e |00001 00002| +570004 |U Nor *|154220.9-551843 |DCEP | 8.63 | 9.83 | |V |44788.5 | | 12.64371 |46 |F6-F8Ib/II-G5 |00001 00546| +570005 |V Nor |161001.7-491412 |SRB | 10.0 | 11.0 | |p |29840. | | 155.9 |50 |M5III |00023 08588| +570006 |W Nor *|161642.5-523614 |SRB | 10.3 | 11.6 | |p | | | 134.7 | |M4/5(III) |00023 08087| +570007 |X Nor |162525.8-515537 |LB | 12.52 | 13.5 | |B | | | | |C(Nb) |00016 08087| +570008 |Y Nor *|163257.3-465619 |CST: | 9.5 | | |p | | | | |B9V | 00021| +570009 |Z Nor *|160457.1-461737 |EA/SD | 9.3 | 10.1 | 9.6 |p |43343.9897 | | 2.556914 |26 *|B3IV |08604 00021| +570010 |RR Nor *|151233.5-551849 |EA/D | 9.4 | 10.5 | 9.9 |p |44433.5976 | | 3.0275420 |08 |B9V |00023 08953| +570011 |RS Nor *|160510.0-535510 |DCEP | 9.62 | 10.39 | |V |35308.21 | | 6.19814 |29 | |00004 08953| +570012 |RT Nor *|162418.7-592039 |RCB | 10.6 | 16.3 | |p | | | | |C(R) |00424 06286| +570013 |RU Nor |161522.8-444718 |M | 11.3 |< 13.5 | |p |29810. | | 393.3 | |M7e |00023 00021| +570014 |RV Nor *|160410.2-560448 |CEP | 12.2 | 13.8 | |V |44119.43 | | 32.333 |28 |G8-K3(R0-3) |00001 00427| +570015 |RW Nor |160548.6-552545 |S: | 14. | 16.5 | |p | | | | | |00029 GSC | +570016 |RX Nor |161226.0-561255 |CST: | 12. | 16. | |p | | | | | |00424 GSC22| +570017 |RY Nor |163204.3-582113 |M | 12.7 |< 16.5 | |p |24370. | | 448. | |M7e |00424 06286| +570018 |RZ Nor |163241.7-531533 |RCB | 10.63 |< 13. | |V | | | | | |08143 08087| +570019 |SS Nor |161321.9-594657 |M | 9.9 |< 14.5 | |V |54345. | | 461. | |Me |00001 GSC | +570020 |ST Nor |153151.7-502454 | | 14.6 | 16.3 | |p | | | | | |00211 06286| +570021 |SU Nor |154435.3-585324 |EA/SD | 11.9 | 13.1 | |p |25789.393 | | 1.68639 |15 | |00427 00427| +570022 |SV Nor *|154521.9-594928 |EW/KW | 12.0 | 12.6 | 12.6 |p |25598.599 | | 0.376116 | | |00427 00427| +570023 |SW Nor *|154911.3-585940 |EA/DS | 10.5 | 12.0 | |p |30965.87 | | 29.6349 |01 | |00426 08953| +570024 |SX Nor *|155224.4-515541 |EA | 12.1 | 12.2 | |p |25582.349 | | 3.74008 |13 | |00427 00427| +570025 |SY Nor *|155442.8-543359 |DCEP | 8.98 | 9.94 | |V |40737.43 | | 12.6452 |35 | |00001 00427| +570026 |SZ Nor *|155533.0-564333 |EA/KE | 12.3 | 12.6 | 12.6 |p |25600.121 | | 1.47456 |18 | |00427 00427| +570027 |TT Nor *|155802.5-542445 |EA/D | 12.6 | 12.9 | |p |25596.648 | | 37.246 |25 | |00427 00427| +570028 |TU Nor *|160034.2-552818 |EB/DM | 12.4 | 12.7 | 12.5 |p |25603.543 | | 1.6712 | | |00427 00427| +570029 |TV Nor *|160409.2-513240 |EA/DM | 8.9 | 9.7 | 9.3 |p |25832.231 | | 8.524406 |02 |Ap(Eu-Cr-Sr) |00253 08953| +570030 |TW Nor *|160455.2-515713 |DCEP | 11.17 | 12.22 | |V |41092.21 | | 10.78618 |50 | |00001 09439| +570031 |TX Nor *|160538.5-551604 |EA/SD | 12.2 | 13.5 | 12.5 |p |25601.900 | | 3.03049 |16 | |00427 00427| +570032 |TY Nor |161412.1-565002 |EA/SD: | 11.6 | 12.2 | |p |25586.795 | | 3.5204 |15 | |00427 00427| +570033 |TZ Nor *|161607.0-574331 |EA/SD: | 12.0 | 12.7 | 12.1 |p |25608.848 | | 4.2273 |13 | |00427 00427| +570034 |UU Nor |162021.5-534453 |EA/SD | 11.6 | 14.3 | |p |25574.154 | | 3.14825 |13 | |00427 00427| +570035 |UV Nor *|162149.9-554101 |EA | 13.4 | 13.7 | |p |25597.818 | | 0.87414 |16 | |00427 00427| +570036 |UW Nor |162712.2-521733 |EA/DS: | 12.0 | 12.7 | |p |26506.222 | | 8.48601 | | |00429 00428| +570037 |UX Nor *|162744.8-564708 |CWB | 13.25 | 14.42 | |V |34920.38 | | 2.38577 |24 | |02309 00427| +570038 |UY Nor *|162734.2-530333 |EA/SD | 11.2 | 12.3 | |p |25601.305 | | 3.13580 |11 | |00427 00427| +570039 |UZ Nor *|162811.6-531922 |EA/SD | 11.2 | 13.4 | |p |25576.380 | | 3.19609 |13 | |00016 00427| +570040 |VV Nor *|163025.4-521926 |EA | 12.1 | 12.3 | |p |25594.888 | | 1.10175 |23 | |00427 00427| +570041 |VW Nor |163134.0-583414 |RRAB | 12.3 | 13.4 | |p |25587.945 | | 0.618025 |15 | |00427 00427| +570042 |VX Nor *|163124.2-543256 |EA | 11.2 | 11.5 |( 0.03 )|p |25589.858 | | 2.08256 |16 | |00427 00427| +570043 |VY Nor |163133.1-535824 |RRAB | 12.1 | 12.8 | |p |25535.249 | | 0.375305 |43 | |00427 00427| +570044 |VZ Nor *|163126.1-520240 |EW | 13.8 | 14.3 | 14.3 |B |25599.895 | | 0.543853 | | |00427 00427| +570045 |WW Nor |163149.0-543521 |EA | 13.3 | 13.7 | |p |25608.402 | | 1.08904 |12 | |00427 00427| +570046 |WX Nor *|154041.8-583217 |EA/SD | 12.5 | 13.4 | 12.8 |p |27746.520 | | 1.271304 |11 : | |00430 00430| +570047 |WY Nor |154149.1-582045 |RR | 15.6 | 16.5 | |p |25713.468 | | 0.536337 | | |00431 06286| +570048 |WZ Nor *|154156.9-590812 |EA/SD: | 12.8 | 14.0 | 13.4 |p |25756.513 | | 1.049018 |17 | |00430 00430| +570049 |XX Nor |154309.4-582311 |M: | 14.7 |< 16.5 | |p |24670. | | 270. | | |00424 06286| +570050 |XY Nor *|154317.4-581928 |EA/DM | 13.0 | 13.4 | 13.2 |p |25719.36 | | 1.68003 |10 | |00060 00060| +570051 |XZ Nor |154633.7-594129 |M: | 15.0 |< 16.5 | |p |24710. | | 275. | | |00424 06286| +570052 |YY Nor |154758.5-572443 |EA/SD | 13.2 | 16.1 | |p |25649.084 | | 1.694903 |25 | |00433 00433| +570053 |YZ Nor |154837.8-600054 |RR | 15.5 | 16.2 | |p |24710.501 | | 0.5456 | | |00424 06286| +570054 |ZZ Nor |154848.8-584827 |L: | 13.5 | 15.0 | |p | | | | | |00424 06286| +570055 |AA Nor *|154926.1-573944 |CEP | 13.20 | 14.44 | |V |44020.88 | | 12.24982 |36 | |00001 00430| +570056 |AB Nor |154915.5-430449 |UG: | 13.9 |< 16.0 | |p | | | | | |00434 08852| +570057 |AC Nor |155129.7-592549 |EA/SD: | 12.4 | 13.4 | |p |25716.580 | | 1.29338 |24 | |00430 00430| +570058 |AD Nor |155158.7-595229 |S: | 15.2 | 15.9 | |p | | | | | |00424 06286| +570059 |AE Nor |155048.2-450803 |M | 11.9 | 16.0 | |p |24680. | | 192. | | |00434 06286| +570060 |AF Nor *|155238.0-563831 |S: | 13.9 | 15.0 | |p | | | | |C(N) |00424 06286| +570061 |AG Nor |155237.7-565400 |RRAB | 13.7 | 14.8 | |p |24292.749 | | 0.50505 | | |00424 06286| +570062 |AH Nor |155200.8-472632 |M | 13.9 |< 16.0 | |p |23965. | | 276.6 | | |00434 06286| +570063 |AI Nor |155216.8-473442 |M | 13.0 | 16.0 | |p |25410. | | 191. | | |00434 06286| +570064 |AK Nor |155408.0-591410 |M: | 15.0 |< 16.5 | |p |24273. | | 231.5 | | |00424 USNO | +570065 |AL Nor |155422.8-595743 |M | 14.0 |< 16.5 | |p |24650. | | 210. | | |00424 06286| +570066 |AM Nor |155509.3-595402 |S: | 14.9 | 15.8 | |p | | | | | |00424 06286| +570067 |AN Nor |155509.1-595201 |M | 14.0 |< 16.5 | |p |24300. | | 269. | | |00424 06286| +570068 |AO Nor |155606.2-593634 |S: | 14.4 | 15.1 | |p | | | | | |00424 06286| +570069 |AP Nor |155607.2-590520 |S: | 11.7 | 12.5 | |p | | | | | |00424 06286| +570070 |AQ Nor *|155655.3-593117 |S: | 15.5 | 16.0 | |p | | | | | |00424 USNO | +570071 |AR Nor *|155708.8-600452 |S: | 12.4 | 13.0 | |p | | | | | |00424 | +570072 |AS Nor |155559.6-443826 |M | 11.8 |< 16.0 | |p |25440. | | 396.3 | |M6e |00434 06286| +570073 |AT Nor *|155804.9-573206 |EA/SD: | 14.5 | 15.2 | |p |25835.343 | | 1.44864 | | |00430 00430| +570074 |AU Nor |155709.3-450255 |M | 13.6 |< 16.0 | |p |24710. | | 288.8 | | |00434 06286| +570075 |AV Nor |155823.0-575015 | | 15.8 |< 16.5 | |p | | | | | |00424 06286| +570076 |AW Nor |155910.9-600522 |M | 14.0 |< 16.5 | |p |23940. | | 260.5 | | |00424 06286| +570077 |AX Nor |155915.7-590636 |RR: | 15.5 | 16.0 | |p | | | | | |00424 06286| +570078 |AY Nor |155832.3-434928 |M | 13.3 | 15.8 | |p |23910. | | 416. | | |00434 06286| +570079 |AZ Nor |160023.5-585228 |M | 13.7 |< 16.5 | |p |24320. | | 294.5 | | |00424 06286| +570080 |BB Nor |160048.1-590258 |M: | 15.2 |< 16.5 | |p |24670. | | 300. | | |00424 06286| +570081 |BC Nor |160023.3-432920 |M: | 14.2 |< 16.0 | |p |23910. | | 219. | | |00434 06286| +570082 |BD Nor |160057.6-455111 |M | 13.0 |< 16.0 | |p |25330. | | 403. | |Me |00434 06286| +570083 |BE Nor *|160215.2-580017 |EA/SD: | 14.1 | 14.8 | 14.2 |p |25758.170 | | 1.338325 |23 : | |00430 00430| +570084 |BF Nor *|160242.2-595050 |S: | 15.5 | 16.0 | |p | | | | | |00424 USNO | +570085 |BG Nor |160259.8-593253 |E | 15.5 | 16.3 | |p |24650.657 | | 0.49369 | | |00424 06286| +570086 |BH Nor *|160302.7-582304 |EW/DM: | 12.7 | 13.2 | 13.2 |p |25079.984 | | 2.289268 | | |00430 00430| +570087 |BI Nor |160347.1-434438 |M: | 14.5 |< 16.0 | |p |25420. | | 244.5 | | |00434 06286| +570088 |BK Nor |160507.2-584531 |S: | 12.51 | 14.0 | |B | | | | |C |00424 06286| +570089 |BL Nor |160608.0-593750 |SR | 15.0 | 16.5 | |p |24650. | | 258. | | |00424 06286| +570090 |BM Nor |160617.3-594454 |M | 13.0 | 16.3 | |p |24650. | | 305. | |M6e |00424 06286| +570091 |BN Nor |160629.5-584916 | | 13.1 | 13.6 | |p | | | | | |00424 06286| +570092 |BO Nor |160648.2-593404 |S: | 13.4 | 13.9 | |p | | | | | |00424 06286| +570093 |BP Nor *|160700.3-594828 |L: | 15.0 | 16.4 | |p | | | | | |00424 USNO | +570094 |BQ Nor |160707.1-584117 | | 16.0 |< 16.5 | |p | | | | | |00424 06286| +570095 |BR Nor |160712.9-590254 |S: | 13.0 | 14.0 | |p | | | | | |00424 06286| +570096 |BS Nor |160745.9-591402 |SR: | 15.5 |< 16.5 | |p |24320. | | 256. | | |00424 USNO | +570097 |BT Nor |160755.5-584656 |S: | 15.0 | 15.8 | |p | | | | | |00424 06286| +570098 |BU Nor |160803.1-572412 |S: | 15.1 | 15.7 | |p | | | | | |00424 GSC | +570099 |BV Nor |160804.4-562714 | | 13.2 | 14.3 | |p | | | | | |00424 GSC | +570100 |BW Nor |160835.6-601010 |E/SD: | 13.8 | 14.8 | |p |24290.745 | | 0.726354 | | |00424 06286| +570101 |BX Nor |160844.0-574416 |M: | 15.1 |< 16.5 | |p |24320. | | 270.5 | | |00424 06286| +570102 |BY Nor |161022.9-594240 |RRAB | 14.2 | 15.2 | |p |25720.680 | | 0.660700 |11 | |00433 00433| +570103 |BZ Nor |161025.9-585729 |RR | 14.4 | 15.1 | |p | | | | | |00424 GSC | +570104 |CC Nor |161043.6-573824 |S: | 15.2 | 15.9 | |p | | | | | |00424 06286| +570105 |CD Nor |161053.7-573251 |M | 12.0 | 16.5 | |p |24650. | | 217. | |M4e |00424 06286| +570106 |CE Nor *|161113.2-600221 |EA/DS | 11.5 | 14.5 | 11.8? |p |25501.050 | | 21.248566 |10 | |00433 00433| +570107 |CF Nor |161130.8-600754 |RR | 15.5 | 16.3 | |p |24669.654 | | 0.37633 | | |00424 GSC22| +570108 |CG Nor *|161115.7-581540 |S: | 16.0 | 16.4 | |p | | | | | |00424 USNO | +570109 |CH Nor |161124.9-563910 |E/SD | 13.7 | 15.1 | |p |23664.830 | | 3.241743 | | |00712 06286| +570110 |CI Nor *|161213.4-600424 |RR | 14.7 | 15.7 | |p |23992.546 | | 0.4578 | | |00424 USNO | +570111 |CK Nor |161219.9-580917 |M: | 15.3 |< 16.5 | |p |24300. | | 283. : | | |00424 06286| +570112 |CL Nor |161239.1-575813 |EA/SD: | 12.8 | 13.5 | |p |25714.991 | | 1.645749 |16 : | |00430 00430| +570113 |CM Nor |161250.4-582440 |EA/SD: | 11.9 | 12.8 | |p |25762.264 | | 5.56362 |07 : | |00430 00430| +570114 |CN Nor |161345.0-583042 |SR | 14.2 | 15.5 | |p |25415. | | 84. | | |03474 06286| +570115 |CO Nor |161404.3-585540 |SR | 15.0 | 16.5 : | |p |24650. | | 227.5 | | |00424 06286| +570116 |CP Nor |161404.0-581822 |EA/SD | 13.8 | 15.7 | |p |25753.490 | | 2.46628 |29 | |00433 00433| +570117 |CQ Nor |161410.2-573035 |M: | 15.5 |< 16.5 | |p |23961. | | 287. | | |00424 GSC | +570118 |CR Nor |161417.5-583445 |M | 14.6 |< 16.5 | |p | | | | | |00424 USNO | +570119 |CS Nor |161503.4-601042 |M | 13.0 |< 16.5 | |p |24300. | | 276. | | |00424 06286| +570120 |CT Nor *|161523.9-580652 |S: | 14.9 | 15.5 | |p | | | | | |00424 GSC | +570121 |CU Nor |161514.6-564332 |M: | 15.0 |< 16.5 | |p |24679. | | 248. | | |00424 06286| +570122 |CV Nor |161522.2-573154 |E | 13.6 | 14.3 | |p | | | | | |00424 | +570123 |CW Nor |161523.5-561941 |SR | 14.4 | 16.5 | |p |24710. | | 243.3 | | |00424 06286| +570124 |CX Nor *|161542.0-572222 |EB/DS | 14.7 | 15.8 | 15.0 |p |25613.589 | | 19.62 | | |00430 00430| +570125 |CY Nor |161603.3-595346 |SR | 14.8 | 16.4 | |p |23961. | | 250. : | | |00424 06286| +570126 |CZ Nor |161600.6-565839 |M | 14.5 |< 16.5 | |p |25774. | | 290.5 | | |00424 USNO | +570127 |DD Nor |161628.0-601531 |M: | 14.8 |< 16.5 | |p |23905. | | 236. | | |00424 06286| +570128 |DE Nor *|161625.8-590705 |S: | 13.7 | 15.0 | |p | | | | | |00424 GSC | +570129 |DF Nor *|161633.3-590854 |RR | 15.1 | 16.2 | |p | | | | | |00424 USNO | +570130 |DG Nor |161627.8-581607 |S: | 14.3 | 15.5 | |p | | | | | |00424 06286| +570131 |DH Nor |161621.9-563748 |I | 14.3 | 15.5 | |p | | | | | |00424 06286| +570132 |DI Nor |161643.3-590733 |RR: | 14.8 | 16.3 | |p | | | | | |00424 USNO | +570133 |DK Nor |161633.3-563304 |M: | 15.0 |< 16.5 | |p |24710. | | 294. | | |00424 06286| +570134 |DL Nor |161721.0-592551 | | 12.9 | 13.8 | |p | | | | | |00424 06286| +570135 |DM Nor |161740.8-584733 |M | 12.8 | 16.5 | |p |24650. | | 196.5 | | |00424 06286| +570136 |DN Nor |161736.1-561901 |L: | 15.0 |< 16.5 | |p | | | | | |00424 06286| +570137 |DO Nor *|161811.1-573452 |EA/SD | 14.0 | 15.3 | 14.2 |p |36780.416 | | 0.622248 | | |00001 00430| +570138 |DP Nor *|161856.7-601825 |S: | 14.5 | 15.0 | |p | | | | | |00424 GSC | +570139 |DQ Nor |161855.1-594557 |S: | 13.5 | 14.2 | |p | | | | | |00424 06286| +570140 |DR Nor *|161852.7-574304 |M: | 15.2 |< 16.5 | |p |23900. | | 213.5 | | |00424 06286| +570141 |DS Nor |161910.9-584820 |SR | 12.4 | 13.5 | |p |25396. | | 70. | | |03474 03474| +570142 |DT Nor |161906.8-564222 |S: | 15.2 | 15.9 | |p | | | | | |00424 06286| +570143 |DU Nor |162003.5-601403 |M | 14.5 |< 16.5 | |p |23905. | | 259. | | |00424 06286| +570144 |DV Nor |162001.8-592449 | | 14.0 | 15.5 : | |p | | | | | |00424 06286| +570145 |DW Nor |162007.5-594217 |M | 12.8 |< 16.5 | |p |24320. | | 280. | | |00424 06286| +570146 |DX Nor |162035.6-590117 |M | 13.5 |< 16.5 | |p |24320. | | 275. | | |00424 06286| +570147 |DY Nor |162101.9-591833 |EA/SD | 13.2 | 14.3 | |p |26079.117 | | 4.01499 | | |00430 00430| +570148 |DZ Nor |162117.0-592718 |M | 14.0 |< 16.3 | |p |24682. | | 271. | | |00424 06286| +570149 |EE Nor *|162115.6-590133 |RR | 15.1 | 16.3 | |p | | | | | |00424 USNO | +570150 |EF Nor |162139.2-584157 |M: | 14.7 |< 16.5 | |p |23961. | | 198. | | |00424 GSC | +570151 |EG Nor | | | | | | | | | | | | |=NQ TrA +570152 |EH Nor |162211.3-600220 |SR | 14.3 | 16.5 | |p |24960. | | 198.3 | | |00424 USNO | +570153 |EI Nor |162209.7-593628 |RRAB | 13.1 | 14.4 | |p |25929.265 | | 0.3590709 |25 | |00430 00430| +570154 |EK Nor |162219.9-590912 |RRAB | 13.9 | 14.9 | |p |25740.010 | | 0.548862 |16 | |00430 00430| +570155 |EL Nor |162222.0-580241 |S: | 14.7 | 15.3 | |p | | | | | |00424 USNO | +570156 |EM Nor *|162227.1-562043 |EW:/KE: | 13.2 | 13.8 | 13.8 |p |25736.465 | | 0.7384 | | |00430 00430| +570157 |EN Nor |162351.8-583603 |S: | 15.0 | 16.2 | |p | | | | | |00424 06286| +570158 |EO Nor |162352.6-564754 |EA/SD: | 13.4 | 14.1 | |p |25939.035 | | 0.8523065 |22 :*| |00430 00430| +570159 |EP Nor |162437.0-570859 | | 14.4 | 15.1 | |p | | | | | |00424 USNO | +570160 |EQ Nor |162522.2-582750 |M | 14.0 | 16.8 | |p |25390. | | 312. | | |00424 06286| +570161 |ER Nor |162543.4-594735 |M | 13.5 | 16.2 | |p |24273. | | 201. | | |00424 06286| +570162 |ES Nor |162544.8-584359 |E: | 16.1 | 16.5 | |p | | | | | |00424 06286| +570163 |ET Nor *|162634.9-600633 |EA/SD | 14.4 | 15.5 | |p |26120.546 | | 0.7826158 |20 | |00435 00435| +570164 |EU Nor |162622.2-582417 |S: | 12.1 | 12.6 | |p | | | | | |00424 06286| +570165 |EV Nor |162624.4-585430 |SR: | 14.0 | 16. | |p | | | | | |00424 06286| +570166 |EW Nor |162654.4-583022 |RR | 15.3 | 16.2 | |p |24679.648 | | 0.4726 | | |00424 06286| +570167 |EX Nor |162658.2-570917 |EA/SD: | 13.1 | 13.8 | |p |25415.266 | | 0.716284 |29 | |00430 00430| +570168 |EY Nor |162723.6-600912 |RR | 15.7 | 16.5 | |p |24653.716 | | 0.46346 | | |00424 06286| +570169 |EZ Nor |162801.3-600532 |SR: | 14.8 | 16.3 | |p |36780. | | | | |06287 04001| +570170 |FF Nor |162751.5-572137 | | 13.8 | 14.6 | |p | | | | | |00424 06286| +570171 |FG Nor *|162818.4-572304 | | 14.0 | 14.7 | |p | | | | | |00424 GSC | +570172 |FH Nor |162839.0-591117 |RR | 15.0 | 16.0 | |p | | | | | |00424 06286| +570173 |FI Nor *|162846.1-601649 |RR: | 15.9 | 16.4 | |p | | | | | |00424 USNO | +570174 |FK Nor *|162907.7-594915 |EA/DS | 14.9 | 15.7 | 15.0 |p |25764.378 | | 8.400 |16 : | |00430 00430| +570175 |FL Nor |162835.6-555005 |S: | 13.4 | 14.0 | |p | | | | | |00424 08667| +570176 |FM Nor |162910.1-565403 |M | 13.5 |< 16.5 | |p | | | | | |00424 06286| +570177 |FN Nor |162943.3-594343 |M | 14.5 |< 16.5 | |p |24682. | | 275. | | |00424 06286| +570178 |FO Nor |162951.8-574320 |S: | 14.2 | 14.8 | |p | | | | | |00424 USNO | +570179 |FP Nor |162955.4-575235 |L: | 15.7 |< 16.4 | |p | | | | | |00424 USNO | +570180 |FQ Nor *|163010.2-571953 |RR: | 14.6 | 15.6 | |p |24654.708 | | 0.682 : | | |00424 00060| +570181 |FR Nor |163044.8-575327 | | 14.8 | 15.4 | |p | | | | | |00424 06286| +570182 |FS Nor |163117.6-595933 |M | 13.0 |< 16.5 | |p |23900. | | 334. | |Me |00424 06286| +570183 |FT Nor |163139.9-584336 | | 13.2 | 15.0 | |p | | | | | |00424 06286| +570184 |FU Nor |163151.8-571322 |M | 13.0 |< 16.5 | |p |26097. | | 384. | |Me |00424 GSC | +570185 |FV Nor |163150.9-561458 |L: | 15.0 |< 16.2 | |p | | | | | |00424 GSC22| +570186 |FW Nor *|163236.2-565905 |EA/SD | 14.3 | 15.9 | 14.5 |p |25926.305 | | 6.46073 |12 : | |00430 00430| +570187 |FX Nor |163307.0-593906 |RRAB | 14.9 | 16.3 | |p |24655.755 | | 0.51465 | | |00424 06286| +570188 |FY Nor |163233.8-563319 |M: | 14.7 |< 16.5 | |p |24650. | | 239. | | |00424 06286| +570189 |FZ Nor |163331.4-575729 |M: | 14.7 |< 16.5 | |p |36778. | | 272. | | |04001 06286| +570190 |GG Nor | | | | | | | | | | | | |=QT Nor +570191 |GH Nor |163344.8-560016 | | 14.7 | 15.7 | |p | | | | | |00424 GSC22| +570192 |GI Nor |163507.0-571135 |SR: | 15.0 |< 16.2 | |p |24670. | | 345. | | |00424 06286| +570193 |GK Nor |153450.9-582359 |EA/SD | 11.2 | 12.3 | |p |27933.60 | | 6.53796 |10 *| |00016 06286| +570194 |GL Nor |154412.6-513032 |EA/SD | 10.6 | 12.8 | |p |25824.333 | | 2.20889 |15 | |00433 00433| +570195 |GM Nor *|155158.0-552148 |EA/DM | 10.58 | 11.03 | 11.01 |V |41696.91 | | 1.884580 |13 | |00001 00433| +570196 |GN Nor *|155500.9-543135 |EA/DM | 12.6 | 13.3 | 13.3 |p |25720.55 | | 5.703427 |10 *| |00437 00433| +570197 |GO Nor *|155631.5-540553 |EA/SD | 13.4 | 15.6 | 13.7 |p |25738.060 | | 5.9569 |31 *| |00433 00433| +570198 |GP Nor |160103.5-572157 |EA/SD: | 13.8 | 14.6 | |p |25611.824 | | 2.42711 |15 | |00433 00433| +570199 |GQ Nor *|160248.6-512229 |EA/SD | 13.6 | 14.8 | 13.8 |p |25637.340 | | 0.830755 |20 *| |00433 00433| +570200 |GR Nor *|160813.3-585708 |CEP | 12.6 | 13.0 | |V |44145.82 | | 1.960002 |40 | |00001 00433| +570201 |GS Nor |160900.4-581332 |EA/SD | 13.8 | 15.9 | |p |25706.180 | | 1.454044 |22 | |00433 00433| +570202 |GT Nor *|160903.8-532233 |EA/SD: | 13.9 | 14.8 | |p |25577.901 | | 2.07116 |17 | |00433 00433| +570203 |GU Nor *|161454.8-532018 |DCEP | 10.08 | 10.73 | |V |44025.74 | | 3.452877 |34 | |00001 00433| +570204 |GV Nor *|161841.1-535942 |EA/SD: | 10.9 | 11.8 | |p |25560.039 | | 2.97183 |11 | |00433 00433| +570205 |GW Nor |162339.0-530649 |RRAB | 14.4 | 15.3 | |p |25708.127 | | 0.624999 |14 | |00433 00433| +570206 |GX Nor *|162349.6-533025 |EW/KW | 14.0 | 15.0 | 15.0 |p |25694.210 | | 0.268782 | | |00433 00433| +570207 |GY Nor |162633.8-531320 |EA/SD: | 14.2 | 15.2 | |p |25919.119 | | 3.093067 |16 | |00433 00433| +570208 |GZ Nor |163154.2-553307 |SR | 13.1 | 14.36 | |B |26478.3 | | 35.942 |35 | |00046 00433| +570209 |HH Nor *|154330.2-515047 |EA/DS | 10.3 | 11.5 | |p |27114.235 | | 8.58313 |10 | |00438 00430| +570210 |HI Nor *|155729.2-563451 |EA/DS | 10.1 | 11.2 | |p |25353.6 | | 73.562 | | |00430 00430| +570211 |HK Nor *|155854.7-514155 |EA/SD | 12.6 | 15.2 | 12.9 |p |25771.048 | | 0.706717 |18 : | |00430 00430| +570212 |HL Nor |160902.0-585708 |EA/SD | 13.6 | 14.9 | |p |25764.455 | | 1.873417 |16 | |00430 00430| +570213 |HM Nor |160843.0-540123 |EA/SD | 11.8 | 13.7 | |p |25738.756 | | 4.426460 |11 | |00430 00430| +570214 |HN Nor |161551.4-533929 |EA/SD | 13.2 | 14.4 | |p |25729.254 | | 5.302621 |09 : | |00430 00430| +570215 |HO Nor *|162039.3-532932 |EA/SD | 13.1 | 15.2 | 13.2 : |p |25705.578 | | 2.12317 |14 : | |00430 00430| +570216 |HP Nor |162049.6-545323 |UGZ | 12.8 | 16.41 | |V | | |( 17.3 ) | |pec(UG) |04063 08852| +570217 |HQ Nor |162334.1-515142 |EA/DS | 12.6 | 13.5 | |p |26118.2 | | 90.9 | | |00430 00430| +570218 |HR Nor |163027.1-543241 |L | 13.3 | 14.3 | |p | | | | | |00060 00060| +570219 |HS Nor |160145.0-572733 |EA/SD | 12.6 | 15.2 | |p |26067.577 | | 5.12612 |12 | |00435 00435| +570220 |HT Nor |160135.0-525303 |EA/SD: | 13.3 | 13.8 | |p |25764.122 | | 5.4160 |14 | |00435 00435| +570221 |HU Nor |160536.3-523925 |EA/SD | 13.6 |< 14.7 | |p |26125.46 | | 4.94303 |16 | |00435 00435| +570222 |HV Nor |161947.4-525632 |EA/SD | 14.5 |< 15.6 : | |p |26476.547 | | 2.282969 |12 | |00435 00435| +570223 |HW Nor *|161650.4-505935 |EA/SD: | 14.4 | 14.8 | |p |26091.460 | | 2.574705 |17 | |00435 00435| +570224 |HX Nor |162728.2-514010 |EA/DS: | 12.3 | 12.9 | |p |25853.33 | | 33.754 |04 | |00435 00435| +570225 |HY Nor |162226.6-522041 |M | 11.5 | 15.5 | |p |42722. | | 236. | | |01000 08087| +570226 |HZ Nor *|160304.8-561637 |EA/SD: | 15.1 | 15.8 | |p |28064.273 | | 5.843168 |03 | |00429 00429| +570227 |II Nor |162335.5-535514 |CEP | 15. | 16. | |p |28367.08 | | 23.559 |40 : | |00046 00429| +570228 |IK Nor |162528.9-552003 |UG | 12.9 | 16.3 | |p | | |( 30. :) | | |05386 08852| +570229 |IL Nor |152923.0-503500 |NB | 7.0 |< 16.3 | |p |12638. |1893 | | |pec(NOVA) | 00545| +570230 |IM Nor |153926.5-521918 |NB | 9. |< 20. : | |B |22512. |1920 | | | |06288 06288| +570231 |IN Nor |154603.1-515356 |EA/SD: | 10. | 11.5 | |p | | | | | |00085 08953| +570232 |IO Nor |162228.8-483556 |M | 12. |< 15.5 | |p |26935. | | | | |00439 | +570233 |IP Nor |162406.5-491937 |M | 12.5 |< 15.5 | |p | | | | |M1e |02935 00021| +570234 |IQ Nor *|151249.5-544519 |DCEP | 9.47 | 10.11 | |V |37875.77 | | 8.23862 |32 | |00001 08953| +570235 |IR Nor |154852.7-440540 |EA | 9. | 9.5 | |p | | | | | |06561 06561| +570236 |IS Nor *|161020.0-542329 |ISA | 10.7 | 11.0 | |V | | | | |B4 |04183 02834| +570237 |IT Nor *|161709.2-445918 |EB/KE | 9.4 | 10.0 | 9.8 |p |38236.315 | | 0.63579 | |A0III |05399 08953| +570238 |IU Nor |162006.5-584327 |M: | 15.5 |< 17. | |p |36689. | | | | |08121 04001| +570239 |IV Nor |162202.4-580516 |RR: | 16.0 |< 17.0 | |p |36733.478 :| | | | |08121 04001| +570240 |IW Nor |162231.0-582735 |EW/KW | 14.0 | 14.5 | |p |36695.387 | | 0.33319 : | | |08121 04001| +570241 |IX Nor |162214.6-552841 |M | 14.5 |< 16.7 | |p |36817. | | | | |08121 04001| +570242 |IY Nor |162316.3-582222 |RRAB | 15.7 |< 16.7 | |p |36731.287 | | 0.5563 |15 | |08121 04001| +570243 |IZ Nor |162334.2-553517 |M: | 15.6 |< 16.8 | |p |36785. :| | | | |08121 04001| +570244 |KK Nor |162356.3-562340 |RR | 15.6 |< 16.6 | |p |36788.345 | | | | |08121 04001| +570245 |KL Nor *|162446.1-584359 |M: | 15.3 |< 17.0 | |p |36750. | | | | |08121 04001| +570246 |KM Nor *|162508.7-583717 |M | 14.0 |< 16.5 | |p |36780. | | 170. : | | |08121 04001| +570247 |KN Nor |162552.2-595054 |RR | 15.5 |< 16.5 | |p |36730.440 :| | | | |08121 04001| +570248 |KO Nor |162559.5-565504 |E | 12.0 | 12.5 | |p |36788.345 | | | | |08121 04001| +570249 |KP Nor |162709.0-601617 |RR | 16.0 |< 17.0 | |p |36759.271 | | | | |08121 04001| +570250 |KQ Nor *|162733.1-591957 |UG: | 15.8 |< 16.8 | |p | | | | | |08121 04001| +570251 |KR Nor |162806.4-601456 |EA/SD: | 12.8 | 13.3 | |p |36724.386 | | 0.83655 |07 :*| |08121 04001| +570252 |KS Nor |162755.7-582109 |RR | 16.0 |< 17.0 | |p |36803.233 | | | | |08121 04001| +570253 |KT Nor *|162813.1-562105 |M: | 15.5 |< 17.0 | |p |36770. | | | | |08121 04001| +570254 |KU Nor |162812.2-551458 |EA | 14.8 | 15.3 | |p |36695.359 | | | | |08121 04001| +570255 |KV Nor |162929.0-582123 |RRAB | 14.7 | 15.4 | |p |36781.439 | | 0.4609 |15 | |08121 04001| +570256 |KW Nor |162925.9-545801 |M | 14.5 |< 16.5 | |p |36838. | | | | |08121 04001| +570257 |KX Nor *|162933.4-550601 |EW/KE | 14.3 | 14.8 | 14.8 |p |36695.339 | | 0.58614 | | |08121 04001| +570258 |KY Nor |163130.6-592123 |E/SD: | 15.0 |< 16.0 | |p |36818.250 :| | | | |08121 04001| +570259 |KZ Nor |163159.7-553932 |M | 15.0 |< 17.0 | |p |36750. | | | | |08121 06289| +570260 |LL Nor |163210.7-565421 |M | 14.0 |< 17. | |p |36790. | | | | |04637 USNO | +570261 |LM Nor |163308.3-552800 |E | 14.8 | 15.3 | |p |36759.271 | | | | |08121 04001| +570262 |LN Nor |163325.0-565513 |RRAB | 15.0 |< 16.0 | |p |36725.351 | | 0.6209 |20 | |08121 04001| +570263 |LO Nor *|163321.1-560402 |M | 15.0 |< 17.0 | |p |36838. :| | | | |08121 04001| +570264 |LP Nor |163349.6-583745 |EA/SD | 14.8 | 15.8 | |p |36725.351 | | 5.951 /N| | |08121 04001| +570265 |LQ Nor |163339.3-561230 |RR: | 12.9 | 13.4 | |p |36803.300 :| | | | |08121 04001| +570266 |LR Nor |163353.6-562759 |UG | 15.5 |< 17.0 | |p | | |( 41. ) | | |08121 04001| +570267 |LS Nor |163355.6-553233 |M | 14.5 |< 17.0 | |p |36730. | |> 160. | | |08121 04001| +570268 |LT Nor |163420.9-580337 |RRAB | 14.7 | 15.7 | |p |36780.406 :| | | | |08121 04001| +570269 |LU Nor |163428.5-553707 |E | 11.9 | 12.4 | |p |36832.250 | | 0.47618 : | | |08121 04001| +570270 |LV Nor *|154636.6-505946 |E/DM | 9.7 | 10.0 | 10.50 |p |28004.250 | | 15.7585 | | |05904 CoD | +570271 |LW Nor |162229.8-573117 |DSCT | 14.8 | 15.3 | |p |36695.344 | | 0.19309 |40 | |08121 04001| +570272 |LX Nor *|161304.2-595351 |E | 14.0 | 14.5 | |p |36818.280 | | | | |08121 04001| +570273 |LY Nor |161332.3-575608 |E | 13.5 | 14.0 | |p |36803.317 | | | | |08121 04001| +570274 |LZ Nor |161516.1-595416 |RR | 16.0 |< 17.0 | |p |36803.276 :| | 2.036 /N| | |08121 04001| +570275 |MM Nor |161652.9-585754 |SR | 15.5 |< 16.5 | |p |36830. | | 100. : | | |08121 04001| +570276 |MN Nor |161748.9-593819 |EA | 15.0 | 15.5 | |p |36720.380 | | 1.6394 |12 | |08121 04001| +570277 |MO Nor |161755.7-591422 |SR | 15.5 |< 16.5 | |p |36730. | | 150. : | | |08121 04001| +570278 |MP Nor |161804.8-595742 |SR | 12.0 | 12.5 | |p |36770. | | 90. : | | |08121 04001| +570279 |MQ Nor |161936.9-595429 |L: | 15.0 | 15.5 | |p |36770. | | | | |08121 04001| +570280 |MR Nor |161947.3-573804 |E: | 14.1 | 14.6 | |p | | | | | |08121 04001| +570281 |MS Nor |162013.8-595427 |SR | 11.5 | 12.0 | |p |36788. | | 50. : | | |08121 04001| +570282 |MT Nor |162016.9-581817 |L | 16.0 |< 17.0 | |p | | | | | |08121 04001| +570283 |MU Nor |162051.4-560714 |L | 15.5 |< 16.0 | |p | | | | | |08121 04001| +570284 |MV Nor |162121.7-572515 |L | 15.5 |< 16.5 | |p |36710. | | | | |08121 04001| +570285 |MW Nor |162152.3-574504 |L | 16.0 |< 17.0 | |p |36710. | | | | |08121 04001| +570286 |MX Nor |162139.6-543314 |E: | 14.0 | 15.0 | |p |36725.351 :| | | | |08121 04001| +570287 |MY Nor |162157.1-571920 |EA/SD | 16.0 |< 17.0 | |p |36732.377 | | 2.03 |12 : | |08121 04001| +570288 |MZ Nor |162312.2-573421 |L: | 15.8 |< 16.8 | |p |36689. :| | | | |08121 04001| +570289 |NN Nor |162516.9-580904 |L | 15.8 |< 16.8 | |p | | | | | |08121 04001| +570290 |NO Nor |162617.4-573023 |SR | 15.0 |< 16.0 | |p |36817. | | 130. : | | |08121 04001| +570291 |NP Nor |162641.0-584441 |SR | 15.4 |< 16.5 | |p |36825. | | 180. : | | |08121 04001| +570292 |NQ Nor |162638.3-563522 |SR | 15.5 |< 16.5 | |p |34800. | | 150. : | | |08121 04001| +570293 |NR Nor *|162754.5-582258 |EW/KW | 15.5 |< 16.0 | 15.9 |p |36803.302 | | 0.42886 | | |08121 04001| +570294 |NS Nor *|162754.2-574133 |EA | 10.10 | 10.62 | 8.31 |V |52770.72 | | 3.2235841 | |A0IV |00001 04001| +570295 |NT Nor |162818.4-592001 |SR | 15.5 |< 16.0 | |p |36785. | | 100. : | | |08121 04001| +570296 |NU Nor |162749.4-553345 |L | 15.6 |< 16.2 | |p |36765. :| | | | |08121 04001| +570297 |NV Nor |162824.6-550702 |L | 15.8 |< 16.4 | |p |36760. | | | | |08121 04001| +570298 |NW Nor *|162947.3-574052 |M | 15.0 |< 17.0 | |p |36725. | | | | |08121 04001| +570299 |NX Nor *|163028.0-591307 |EA | 14.0 | 14.5 | 14.4 |p |36725.361 | | 0.4586 |15 | |08121 04001| +570300 |NY Nor |163006.8-553513 |SR | 14.0 | 15.0 | |p |36840. | | 100. : | | |08121 04001| +570301 |NZ Nor |163030.7-581450 |E | 15.0 | 15.5 | |p |36781.277 | | | | |08121 04001| +570302 |OO Nor |163107.3-594805 |RRAB | 15.0 |< 16.0 | |p |36729.319 | | 0.594 |15 | |08121 04001| +570303 |OP Nor |163039.8-555355 |L | 14.0 | 15.0 | |p | | | | | |08121 04001| +570304 |OQ Nor |163133.5-600544 |L | 15.0 |< 16.5 | |p |36680. | | | | |08121 04001| +570305 |OR Nor |163128.2-550211 |L | 15.5 |< 17.0 | |p |36700. | | | | |08121 04001| +570306 |OS Nor *|163155.0-580319 |RRC: | 14.5 | 15.0 | |p |36695.384 | | 0.2242 |40 | |08121 04001| +570307 |OT Nor *|163157.1-554757 |EW/KE | 12.8 | 13.8 | 13.7 |p |36725.320 | | 0.91712 | | |08121 04001| +570308 |OU Nor *|163251.3-581907 |E/KW: | 14.8 | 15.4 | 15.1 |p |36803.317 | | 0.481 | | |08121 04001| +570309 |OV Nor *|163300.0-560533 |SR | 14.5 | 15.5 | |p |36710. | | | | |08121 04001| +570310 |OW Nor *|163310.4-570455 |SR | 15.6 |< 16.3 | |p |36760. | | | | |08121 04001| +570311 |OX Nor *|163517.3-560815 |SR | 15.0 | 15.5 | |p |36775. | | | | |08121 04001| +570312 |OY Nor |163556.5-594926 |SR | 14.0 | 14.8 | |p |36725. | | 85. : | | |08121 04001| +570313 |OZ Nor |162849.9-444845 |GCAS: | 7.5 | 7.67 | |B | | | | |B2Ve |04456 06871| +570314 |PP Nor |162929.1-464913 |M | 12.5 |< 16. | |p | | | | |Me |02935 06031| +570315 |PQ Nor *|162816.4-571242 | | 7.69 | 7.74 | |V |42180.2 | | 5.58 | |B8/9V |08149 06871| +570316 |PR Nor |154736.0-550041 |M: | 11.5 |< 17. | |p | | | | | |06031 06031| +570317 |PS Nor |160520.5-532434 |LB: | 16.3 |< 17.5 | |p | | | | |M8 |04725 07819| +570318 |PT Nor *|161301.8-542749 |M | 8.0 |( 2.6 )| |I | | | | |M9 |07819 07819| +570319 |PU Nor |162051.5-584715 |E | 13.5 | 14.0 | |p |36780.440 :| | | | |08121 04001| +570320 |PV Nor |162102.1-551815 |M | 14.7 |< 17.5 | |p |36760. | | | | |04637 USNO | +570321 |PW Nor |162122.6-554140 |M: | 14.5 |< 18. | |p | | | | | |04725 USNO | +570322 |PX Nor |162120.9-442345 |E | 12.4 | 12.9 | |p | | | | | |00085 05254| +570323 |PY Nor |162420.4-601051 |L | 15.0 |< 16.0 | |p |36760. | | | | |08121 04001| +570324 |PZ Nor |162445.9-571404 |L | 14.9 | 15.5 | |p | | | | | |08121 04001| +570325 |QQ Nor |163238.1-595130 |M | 14.6 | 17.8 | |p |36760. | | | | |04637 GSC22| +570326 |QR Nor |161320.8-594730 |M | 12.2 | 14.5 | |V |54969.8 | | 210.2 | | |00001 USNO | +570327 |QS Nor |162107.8-422354 |ZAND: | 13.5 | 15.5 | |p | | | | |Be |04725 08077| +570328 |QT Nor *|163404.0-590513 |M | 15.3 |< 19. | |p |23900. | | 328. | | |00424 GSC22| +570329 |QU Nor |162942.3-461436 |GCAS | 5.29 | 5.41 | |V | | | | |B1.5Iape |06311 CoD | +570330 |QV Nor *|154223.4-522310 |XP | 16.19 | 16.31 |( 0.08 V)|B |43016.300 | | 3.72863 | |B0Ie |09455 04124| +570331 |QW Nor |160014.6-551809 |M: | 13.8 | 18. | |p | | | | | |04618 08515| +570332 |QX Nor *|161243.0-522524 |XND | 18.2 |< 23. | |I | | | | | |04119 08521| +570333 |QY Nor |160421.3-534237 |ACV | 6.45 |( 0.014 )| |V | | | 5.2 | |A0p(Si) |08415 CPD | +570334 |QZ Nor *|161120.5-542115 |DCEPS | 8.71 | 9.03 | |V |44361.688 | | 3.786008 |50 |F6I |09463 05742| +570335 |V0335 Nor |153417.2-503837 |RRAB | 17.4 | 18.4 | |B | | | | | |67432 67432| +570336 |V0336 Nor |153425.0-505029 |RR: | 18.0 | 18.9 | |B | | | | | |67432 67432| +570337 |V0337 Nor |153500.3-505253 |E: | 18.0 | 18.5 | |B | | | | | |67432 67432| +570338 |V0338 Nor |153507.8-503217 |RRAB | 17.4 | 18.7 : | |B | | | | | |67432 67432| +570339 |V0339 Nor |153514.5-505227 |E: | 17.8 | 18.5 | |B | | | | | |67432 67432| +570340 |V0340 Nor |161317.4-541406 |DCEP | 8.26 | 8.60 | |V | | | | | |67437 CPD | +570341 |V0341 Nor |161344.4-531908 |NA | 9.4 |< 12.4 | |V | | | | | |67439 | +570342 |V0342 Nor |153603.0-505218 |E: | 14.8 | 15.2 | |B | | | | | |68166 68166| +570343 |V0343 Nor |153857.5-574227 |BY: | 8.14 |( 0.12 )| |V | | | | | |68325 CPD | +570344 |V0344 Nor |154030.6-511256 |M | 10.5 | 16. | |V | | | | | |68326 USNO | +570345 |V0345 Nor |160651.7-520435 |M | 10.2 |< 14.5 | |V |54755 | | 579. | |M4 |00001 2MASS| +570346 |V0346 Nor |163232.1-445531 |FU: | 16.3 | 17.23 | |V | | | | | |68331 68331| +570347 |V0347 Nor |161401.1-565928 |M: | 7.06 |( 1.0 )| |J | | | | | |69079 69081| +570348 |V0348 Nor |162656.7-434757 |BCEP: | 7.87 | 7.96 | |V | | | | | |69037 CoD | +570349 |V0349 Nor |161526.4-525515 |BCEP | 8.70 | 8.77 | |V | | | | | |70031 CoD | +570350 |V0350 Nor |160301.5-602011 |* | 9.20 | 9.31 | |V | | | | | |71123 CPD | +570351 |V0351 Nor |154439.8-542305 |LB | 6.97 | 7.19 | |J | | | | | |72036 GSC22| +570352 |V0352 Nor | | | | | | | | | | | | |=V0345 Nor +570353 |V0353 Nor |161431.8-514720 |M | 7.38 |( 2.16 )| |K | | | | | |72036 2MASS| +570354 |V0354 Nor |153859.3-483558 |PVTEL | 11.36 | 11.49 | |V | | | | | |73205 CoD | +570355 |V0355 Nor |162739.8-490941 |DSCTC | 13.86 |( 0.02 )| |B | | | | | |73206 73206| +570356 |V0356 Nor |162748.7-491043 |DSCTC | 13.06 |( 0.03 )| |B | | | | | |73206 73206| +570357 |V0357 Nor |162751.5-490920 |DSCTC | 12.71 |( 0.01 )| |B | | | | | |73206 73206| +570358 |V0358 Nor |152955.8-492024 |LB: | 8.40 | 8.54 | |Hp| | | | | |HIP HIP | +570359 |V0359 Nor |154258.3-580653 |LB | 7.59 | 7.76 | |Hp| | | | | |HIP HIP | +570360 |V0360 Nor |155106.8-550320 |ACYG: | 5.77 | 5.79 | |Hp| | | | | |HIP HIP | +570361 |V0361 Nor |155923.7-584334 |ACYG: | 7.10 | 7.16 | |Hp| | | | | |HIP HIP | +570362 |V0362 Nor |160515.5-562024 |LC: | 7.12 | 7.28 | |Hp| | | | | |HIP HIP | +570363 |V0363 Nor |160519.7-541047 |LB: | 7.89 | 8.02 | |Hp| | | | | |HIP HIP | +570364 |V0364 Nor |160759.8-550750 |BE | 9.24 | 9.32 | |Hp| | | | | |HIP HIP | +570365 |V0365 Nor |160810.8-530444 |LB | 6.89 | 6.99 | |Hp| | | | | |HIP HIP | +570366 |V0366 Nor |160959.1-483428 |ACYG: | 8.52 | 8.62 | |Hp| | | | | |HIP HIP | +570367 |V0367 Nor *|161317.0-534016 |LC: | 5.94 | 6.11 | |Hp| | | | | |HIP HIP | +570368 |V0368 Nor |161643.3-534840 |SRB | 5.43 | 5.54 | |Hp| | | | | |HIP HIP | +570369 |V0369 Nor |161817.5-462659 |LB | 7.12 | 7.44 | |Hp| | | | | |HIP HIP | +570370 |V0370 Nor |161909.7-541703 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +570371 |V0371 Nor |161915.9-553017 |BY: | 9.35 | 9.48 | |Hp| | | | | |HIP HIP | +570372 |V0372 Nor |162623.9-565304 |ACV: | 7.80 | 7.86 | |Hp| | | | | |HIP HIP | +570373 |V0373 Nor |162641.0-594609 |E: | 8.47 | 8.65 | |Hp| | | | | |HIP HIP | +570374 |V0374 Nor *|162649.8-480240 |ELL: | 7.16 | 7.23 | |Hp| | | | | |HIP HIP | +570375 |V0375 Nor |162710.4-474556 |LB: | 9.79 | 9.93 | |Hp| | | | | |HIP HIP | +570376 |V0376 Nor |162754.2-595055 |BE: | 8.57 | 8.74 | |Hp| | | | | |HIP HIP | +570377 |V0377 Nor |162805.3-433940 |LC | 9.07 | 9.33 | |Hp| | | | | |HIP HIP | +570378 |V0378 Nor |162945.2-574523 |CEP: | 6.21 | 6.23 | |Hp| | | | | |HIP HIP | +570379 |V0379 Nor |163024.9-440656 |LB | 7.77 | 7.89 | |Hp| | | | | |HIP HIP | +570380 |V0380 Nor |163159.5-445312 |SRB | 7.58 | 7.68 | |Hp| | | | | |HIP HIP | +570381 |V0381 Nor |155058.7-562836 |XND | 15.6 |< 21.4 | |V | | | | | |76132 76133| +570382 |V0382 Nor |161944.7-513453 |NA | 8.7 |< 17. | |V |53445. |2005 | | |pec(Nova) |78303 78043| +570383 |V0383 Nor |153551.7-501721 |SRB | 8.18 | 8.50 | |V | | | 30. | |M3III |78012 DM | +570384 |V0384 Nor *|160518.9-493008 |EA | 10.07 | 10.36 | 10.30 |V |48657.588 | | 3.97413 | |F5 |78011 DM | +570385 |V0385 Nor |162737.8-491042 |ELL: | 11.64 |( 0.04 )| |V | | | 0.974 | | |78190 GSC | +570386 |V0386 Nor |162740.0-491025 |DSCTC | 13.52 |( 0.01 )| |V | | | 0.0577 | | |78190 78190| +570387 |V0387 Nor |162743.1-490724 |DSCTC | 13.57 |( 0.01 )| |V | | | 0.0689 | | |78190 78190| +570388 |V0388 Nor |162749.1-490643 |DSCTC | 12.43 |( 0.02 )| |V | | | 0.0867 | | |78190 GSC | +570389 |V0389 Nor *|161335.1-601316 |E/KW: | 15.1 | 15.9 | 15.7 |p |24654.708 | | 0.344108 | | |00424 UCAC2| +570390 |V0390 Nor |163211.5-450913 |NA | 9.8 |< 20. | |V |54271. |2007 | | |pec(Nova) |79149 | +570391 |V0391 Nor |153152.6-591459 |DCEPS | 8.86 | 9.26 | |V |53119.676 | | 4.373092 |40 : |G5 |79209 DM | +570392 |V0392 Nor *|153229.0-525211 |EA | 8.13 | 8.52 | 8.40 |V |52452.533 | | 1.298207 |12 |B9+A0 |79011 DM | +570393 |V0393 Nor |155026.8-464229 |EB | 9.85 : | 10.25 | 10.10 |V |52145.497 | | 1.29838 | |A2/3III/IV |79003 DM | +570394 |V0394 Nor |155814.7-542031 |EB | 8.64 | 8.89 | 8.81 |V |52790.720 | | 3.18423 | |B0/0.5Ia/Iab |79011 DM | +570395 |V0395 Nor |160016.8-450737 |EW | 9.11 | 9.54 | 9.49 |V |52730.790 | | 0.647878 | |F2V |79011 DM | +570396 |V0396 Nor *|160405.6-601259 |EA | 8.33 | 8.88 | 8.85 |V |52104.552 | | 5.5354 |07 |A0IV/V |79006 DM | +570397 |V0397 Nor |161555.5-510715 |DCEP | 10.7 | 11.3 | |V |53129.0492 | | 6.812579 |33 | |79209 79118| +570398 |V0398 Nor |162157.0-490925 |EA | 8.61 | 8.93 | 8.85 |V |52442.602 | | 1.58895 |12 |B8V |79011 DM | +570399 |V0399 Nor |162235.9-503238 |EB | 8.19 | 8.30 | 8.24 |V |53170.830 | | 3.19288 | |F6/7V |79004 DM | +570400 |V0400 Nor |163048.3-460620 |EA: | 9.99 | 10.45 | 10.10 |V |52452.575 | | 1.78686 |15 : |B5 |79018 79238| +570401 |V0401 Nor |152538.5-550348 |M | 11.6 |< 14.6 | |V |54850. | | 337. | | |80001 2MASS| NL80_2 +570402 |V0402 Nor |153001.9-571246 |M | 4.85 | 7.15 | |K | | | 716. | |C |80166 2MASS| NL80_2 +570403 |V0403 Nor |153210.7-501627 |M | 12.5 |< 14.8 | |V |53809. | | 200. | | |80415 80415| NL80_2 +570404 |V0404 Nor |153315.9-485620 |RVA | 11.8 | 13.8 | |V |54616.8 | | 53.65 | | |80022 GSC | NL80_2 +570405 |V0405 Nor *|153351.0-583117 |EA | 8.81 | 9.15 | 9.08 : |V |53175.80 | | 15.0615 |03 |A0III/IV |80015 DM | NL80_2 +570406 |V0406 Nor |153426.1-571439 |M | 13.0 |< 15.2 | |V |54499. | | 442. | | |80415 80415| NL80_2 +570407 |V0407 Nor |153508.8-593447 |M | 13.1 |< 15.9 | |V |54668. | | 104.8 | | |80415 80415| NL80_2 +570408 |V0408 Nor |154140.1-505638 |LB | 12.3 |< 13.3 | |V | | | | | |80001 2MASS| NL80_2 +570409 |V0409 Nor |154425.1-504501 |RCB | 11.8 | 19. : | |V | | | | |C(R) |80293 80293| NL80_2 +570410 |V0410 Nor *|155123.0-562954 |EW | 16.20 | 16.65 | 16.60 |I |50563.7553 | | 0.7284 | | |80419 80419| NL80_2 +570411 |V0411 Nor |155125.4-563250 |SR: | 11.60 | 12.25 | |I | | | | | |80419 80419| NL80_2 +570412 |V0412 Nor *|155126.0-563012 |EW | 16.50 | 16.95 | 16.90 : |I |50549.8735 | | 0.5335 | | |80419 80419| NL80_2 +570413 |V0413 Nor *|155129.1-563309 |EB | 15.65 | 16.00 | 15.80 |I |50577.6671 | | 0.5580 | | |80419 80419| NL80_2 +570414 |V0414 Nor *|155129.6-563130 |EW: | 14.85 | 14.97 | 14.95 : |I |50543.9011 | | 0.7534 | | |80419 80419| NL80_2 +570415 |V0415 Nor *|155139.7-563401 |EW | 17.54 | 18.00 | 17.90 |I |50566.7368 | | 0.4805 | | |80419 80419| NL80_2 +570416 |V0416 Nor |155140.2-563529 |SR: | 10.49 |< 11.4 | |I | | | | | |80419 80419| NL80_2 +570417 |V0417 Nor *|155142.8-563055 |EW | 16.03 | 16.65 | 16.65 |I |50577.6887 | | 0.4067 | | |80419 80419| NL80_2 +570418 |V0418 Nor *|155144.0-562413 |EW | 16.18 | 16.50 | 16.45 |I |50622.6085 | | 0.3849 | | |80419 80419| NL80_2 +570419 |V0419 Nor *|155145.1-563407 |EB | 16.09 | 16.53 | 16.35 |I |50566.7444 | | 0.6388 | | |80419 80419| NL80_2 +570420 |V0420 Nor *|155147.1-563355 |E: | 17.58 | 17.95 | 17.95 |I |50536.8251 | | 0.6108 | | |80419 80419| NL80_2 +570421 |V0421 Nor |155147.8-562937 |RRC | 16.04 | 16.34 | |I |50566.8503 | | 0.4009 |35 | |80419 80419| NL80_2 +570422 |V0422 Nor *|155150.6-562810 |EW | 16.92 | 17.60 | 17.50 |I |50658.4977 | | 0.5788 | | |80419 80419| NL80_2 +570423 |V0423 Nor |155154.6-563456 |EA | 16.75 | 17.05 | |I |50547.8996 | | 1.2601 |14 | |80419 80419| NL80_2 +570424 |V0424 Nor *|155155.0-562317 |EB | 14.47 | 14.95 | 14.73 |I |50654.6710 | | 0.5818 | | |80419 80419| NL80_2 +570425 |V0425 Nor |155155.3-563214 |M: |>13.8 | 15.3 | |I | | | | | |80419 80419| NL80_2 +570426 |V0426 Nor *|155157.3-563450 |E: | 17.76 | 18.05 | 18.0 |I |50563.7189 | | 0.4735 | | |80419 80419| NL80_2 +570427 |V0427 Nor *|155200.7-562234 |EW | 16.36 | 16.80 | 16.78 |I |50565.7593 | | 0.5002 | | |80419 80419| NL80_2 +570428 |V0428 Nor *|155201.0-563617 |EB | 13.01 | 13.35 | 13.22 |I |50565.7907 | | 0.8141 | | |80419 80419| NL80_2 +570429 |V0429 Nor *|155203.3-563210 |LB | 12.75 | 13.05 | |I | | | | | |80419 80419| NL80_2 +570430 |V0430 Nor *|155204.9-563338 |EW | 16.70 | 17.22 | 17.18 |I |50621.6179 | | 0.3660 | | |80419 80419| NL80_2 +570431 |V0431 Nor |155209.3-563433 |LB | 12.35 | 12.70 | |I | | | | | |80419 80419| NL80_2 +570432 |V0432 Nor *|155214.2-563419 |EB | 16.85 | 17.65 | 17.30 |I |50546.7813 | | 0.4662 | | |80419 80419| NL80_2 +570433 |V0433 Nor |155214.4-563424 |SR: | 13.02 | 13.5 | |I | | | | | |80419 80419| NL80_2 +570434 |V0434 Nor *|155214.8-562326 |EW | 16.16 | 16.50 | 16.45 |I |50547.8526 | | 0.5983 | | |80419 80419| NL80_2 +570435 |V0435 Nor |155216.9-563502 |M: | 14.0 | 16.6 | |I | | | | | |80419 80419| NL80_2 +570436 |V0436 Nor *|155219.0-562327 |EW | 17.24 | 17.8 | 17.65 |I |50621.5921 | | 0.6562 | | |80419 80419| NL80_2 +570437 |V0437 Nor *|155219.5-563436 |E: | 13.91 | 14.12 | 14.10 |I |50565.7907 | | 1.1324 : | | |80419 80419| NL80_2 +570438 |V0438 Nor *|155221.3-563147 |EW | 16.57 | 17.0 | 17.0 |I |50577.8623 | | 0.4214 | | |80419 80419| NL80_2 +570439 |V0439 Nor |155227.2-562853 |M: | 9.03 |< 10.5 | |I |50585. | | | | |80419 80419| NL80_2 +570440 |V0440 Nor *|155239.2-563452 |EB | 15.82 | 16.4 | 16.13 |I |50951.4818 | | 0.7503 | | |80419 80419| NL80_2 +570441 |V0441 Nor *|155240.0-562329 |EW | 16.15 | 16.7 | 16.6 |I |50566.7368 | | 0.3620 | | |80419 80419| NL80_2 +570442 |V0442 Nor *|155243.0-563459 |EA | 14.61 | 15.00 | 14.95 |I |50648.6008 | | 1.8258 : |09 | |80419 80419| NL80_2 +570443 |V0443 Nor *|155245.5-562455 |EW: | 16.5 | 16.9 | 16.8 |I |50546.8011 | | 0.4091 | | |80419 80419| NL80_2 +570444 |V0444 Nor |155247.2-562606 |EA | 15.32 | 16.0 | |I |50536.9112 | | 1.4706 |13 | |80419 80419| NL80_2 +570445 |V0445 Nor *|155248.9-563507 |EW: | 16.88 | 17.2 | 17.2 |I |50536.8218 | | 0.4871 | | |80419 80419| NL80_2 +570446 |V0446 Nor |155249.5-562502 |SR: | 16.7 | 17.1 | |I |50546.7 | | 17.6055 | | |80419 80419| NL80_2 +570447 |V0447 Nor *|155250.4-562728 |EA | 16.45 | 16.75 | 16.62 |I |50592.7708 | | 0.8617 |18 | |80419 80419| NL80_2 +570448 |V0448 Nor *|155258.1-562356 |EW | 16.26 | 16.55 | 16.50 |I |50555.6749 | | 0.5425 | | |80419 80419| NL80_2 +570449 |V0449 Nor *|155258.4-563146 |EW | 15.51 | 15.75 | 15.75 |I |50566.7901 | | 0.4046 | | |80419 80419| NL80_2 +570450 |V0450 Nor |155300.3-562754 |DSCT | 16.03 | 16.18 | |I |50627.6214 | | 0.1502 | | |80419 80419| NL80_2 +570451 |V0451 Nor *|155727.4-592015 |EA | 9.38 | 9.58 | 9.58 |V |53063.815 | | 3.4590 |09 |B8IV/V |80015 DM | NL80_2 +570452 |V0452 Nor |155759.7-435750 |LB | 8.2 | 9.6 | |V | | | | |M6III |80001 DM | NL80_2 +570453 |V0453 Nor |160047.4-484608 |UG | 12.4 | 17.0 | |R | | | | | |80616 | NL80_3 +570454 |V0454 Nor |160528.3-423455 |M | 12.0 | 15.5 | |R |54738. | | 223.5 | | |80001 USNO | NL80_3 +570455 |V0455 Nor |160633.8-544442 |LB | 12.7 |< 14.2 | |V | | | | |Se |80001 GSC | NL80_3 +570456 |V0456 Nor |160636.8-575601 |M | 12.2 |< 14.4 | |V |53857. | | 364. | | |80415 80415| NL80_3 +570457 |V0457 Nor |160652.5-523652 |M | 11.5 |< 14.5 | |V |54746. | | 340.3 | | |80002 GSC | NL80_3 +570458 |V0458 Nor |161133.9-481951 |M | 5.84 | 8.09 | |K | | | 710. | |C |80166 2MASS| NL80_3 +570459 |V0459 Nor |161206.2-594249 |RRC | 11.55 | 12.05 | |V |52639.883 | | 0.375365 |45 | |80621 GSC | NL80_3 +570460 |V0460 Nor |161222.1-542802 |M | 10.6 : | 13.3 | |I |51086. :| | 410. | | |80389 2MASS| NL80_3 +570461 |V0461 Nor |161230.9-541124 |EB | 13.5 | 14.0 | 13.9 |I |51646.65 | | 1.1288 | | |80390 USNO | NL80_3 +570462 |V0462 Nor |161233.5-542316 |M | 11.1 | 14.3 | |I |51686. | | 346. | | |80389 USNO | NL80_3 +570463 |V0463 Nor |161323.3-592244 |M | 11.4 |< 14.5 | |V |54332. | | 472. | | |80001 USNO | NL80_3 +570464 |V0464 Nor |161338.9-540818 |M | 11.7 |< 14.3 | |I |51230. | | 350. | | |80389 USNO | NL80_3 +570465 |V0465 Nor |161352.4-540155 |M | 12.5 : | 14.0 | |I |51500. :| | 392. | | |80389 2MASS| NL80_3 +570466 |V0466 Nor |161400.9-540603 |M | 12.0 | 14.7 | |I |51730. | | 323. | | |80389 USNO | NL80_3 +570467 |V0467 Nor |161403.6-535404 |M | 15.7 | 18.3 : | |I |51340. | | 474. | | |80389 USNO | NL80_3 +570468 |V0468 Nor |161431.2-533659 |M | 11.6 | 13.7 : | |I |51635. | | 319. | | |80389 2MASS| NL80_3 +570469 |V0469 Nor |161543.0-533449 |M | 12.1 | 14.9 | |I |51291. | | 303. | | |80389 USNO | NL80_3 +570470 |V0470 Nor |161548.8-533305 |M | 11.5 | 14.5 | |I |50921. | | 600. : | | |80389 2MASS| NL80_3 +570471 |V0471 Nor |161606.4-535443 |M | 12.3 : | 13.9 | |I |51500. :| | 382. | | |80389 USNO | NL80_3 +570472 |V0472 Nor |161641.9-541530 |M | 12.1 | 14.9 | |I |50974. | | 560. : | | |80389 2MASS| NL80_3 +570473 |V0473 Nor |161649.1-532613 |M | 11.1 : | 12.8 | |I |51259. | | 385. | | |80389 USNO | NL80_3 +570474 |V0474 Nor |161651.0-535652 |M | 12.2 | 15.1 : | |I |51328. | | 425. | | |80389 USNO | NL80_3 +570475 |V0475 Nor |161713.5-533355 |M | 11.8 | 14.6 | |I |51710. | | 530. : | | |80001 USNO | NL80_3 +570476 |V0476 Nor |161729.1-534132 |M | 12.7 | 15.9 | |I |51360. | | 520. : | | |80001 USNO | NL80_3 +570477 |V0477 Nor |161747.1-533535 |RRAB | 14.9 | 15.7 | |I |51729.54 | | 0.6294 |17 | |80443 USNO | NL80_3 +570478 |V0478 Nor |161748.1-541225 |M | 11.5 | 13.7 | |I |50947. | | 251. | | |80389 2MASS| NL80_3 +570479 |V0479 Nor *|161857.9-510330 |BCEP | 10.39 | 10.49 | |V | | | 0.205471 | |B5 |80445 DM | NL80_3 +570480 |V0480 Nor |162050.4-480653 |M | 4.25 | 5.79 | |K | | | 560. | |C |80166 2MASS| NL80_3 +570481 |V0481 Nor |162354.5-523021 |EA | 14.86 | 16.40 | 15.1 |I |51578.80 | | 1.3745 |17 | |80390 2MASS| NL80_3 +570482 |V0482 Nor |162418.1-522013 |M | 12.0 |< 13.2 | |I |51740. :| | 365. | | |80389 2MASS| NL80_3 +570483 |V0483 Nor |162501.3-522727 |M | 13.0 : | 14.9 | |I |51790. :| | 377. | | |80389 2MASS| NL80_3 +570484 |V0484 Nor |162541.6-515306 |M | 12.5 | 15.3 | |I |50958. | | 402. | | |80389 2MASS| NL80_3 +570485 |V0485 Nor |162555.2-521519 |M | 11.9 : | 14.5 | |I |51025. :| | 410. | | |80389 USNO | NL80_3 +570486 |V0486 Nor |162608.7-515142 |M | 12.5 : | 15.9 | |I |51040. :| | 500. : | | |80389 USNO | NL80_3 +570487 |V0487 Nor |162710.1-520239 |M | 12.8 |< 15.0 | |I |51270. | | 385. | | |80389 2MASS| NL80_3 +570488 |V0488 Nor |162714.8-515906 |RRAB | 15.3 | 16.1 | |I |51007.57 | | 0.5501 |12 | |80443 USNO | NL80_3 +570489 |V0489 Nor |162754.7-520636 |M | 12.2 | 13.9 | |I |50950. | | 255. | | |80389 USNO | NL80_3 +570490 |V0490 Nor |162814.5-520414 |M | 11.8 : | 13.5 | |I |50840. :| | 335. | | |80389 2MASS| NL80_3 +579012 |mu. Nor *|163405.0-440243 |ACYG: | 4.87 | 4.98 | |V | | | | |O9.7Iab | CoD | +580001 |R Oct |052606.2-862318 |M | 6.4 | 13.2 | |V |41985. | | 405.39 |44 |M5.5e |00001 00002| +580002 |S Oct |180844.5-864756 |M | 7.2 | 14.0 | |V |42032. | | 259.00 |42 |M4(II)e-M5e |00001 00002| +580003 |T Oct |211401.5-820634 |M | 8.8 | 14.8 | |V |39504. | | 218.50 |51 |M2e-M4(II:)e |00001 00002| +580004 |U Oct *|132432.6-841331 |M | 7.0 | 14.1 | |V |41915. | | 308.44 |47 |M4e-M6(II-III)e |00001 00002| +580005 |V Oct |220800.2-744631 |M: | 11.6 |< 13.0 | |p |28840. | | 289.47 | |M6e-M7 |00207 | +580006 |W Oct |092857.7-882937 |CST: | 11.5 : | 13.0 : | |p | | | | | |00016 UCAC2| +580007 |X Oct *|102614.3-842054 |SRA | 8.7 | 12.7 | |p |28885. | | 206.80 | |M3e-M6IIIe |00207 08953| +580008 |Y Oct |142904.4-883844 |RRAB | 11.3 | 12.8 | |p |28378.650 | | 0.646626 |15 | |00016 06286| +580009 |Z Oct |174436.6-862911 |M | 11.0 | 13.5 | |p |13825. | | 335. | | |00359 09467| +580010 |RR Oct |205542.6-745822 |M | 10.1 |< 13.5 | |p |28881. | | 272.83 | | |00001 08953| +580011 |RS Oct |214716.9-873906 |RRAB | 12.2 | 13.4 | |p |36329.523 | | 0.4580092 |32 | |00001 04117| +580012 |RT Oct |230106.2-870311 |M | 10.4 | 14.6 | |p |36063. | | 180.16 | |Me |00001 08613| +580013 |RU Oct |000846.2-861119 |M | 10.2 | 15. | |p |13443. | | 373. | | |00440 08613| +580014 |RV Oct *|134631.8-842406 |RRAB | 11.6 | 12.1 | |p |15116.665 | | 0.5711625 |11 | |05735 HIP | +580015 |RW Oct |182904.1-883232 | | 12.8 | 13.6 | |p | | | | | |02141 GSC | +580016 |RX Oct |194809.9-784336 |L | 10.3 | 11.1 | |p | | | | | |00016 CoD | +580017 |RY Oct |213609.4-771814 |RRAB | 10.4 | 12.1 | |p |27987.453 | | 0.563469 |36 : | |00016 06286| +580018 |RZ Oct |220020.0-865406 |L: | 11.7 | 13.0 | |p | | | | | |04117 08613| +580019 |SS Oct |215335.4-824644 |RRAB | 10.8 | 12.1 | |p |28020.607 | | 0.621825 |13 | |00016 06286| +580020 |ST Oct |000053.0-875427 |S: | 13.5 | 14.3 | |p | | | | | |03476 08613| +580021 |SU Oct |030033.5-880259 |M | 13.5 |< 17. | |p |24811. | | 255. | | |00249 GSC22| +580022 |SV Oct | | | | | | | | | | | | |=RR Oct +580023 |SW Oct | | | | | | | | | | | | |=CL Ind +580024 |SX Oct |231537.9-784849 |RRAB | 15.0 | 16.2 | |p |25441.60 | | 0.62774 | | |00193 06286| +580025 |SY Oct |233743.5-795003 |RRAB | 13.9 | 15.7 | |p |25447.60 | | 0.41247 | | |00193 06286| +580026 |SZ Oct |234628.2-813003 |RRAB | 14.7 | 16.1 | |p |25451.45 | | 0.58341 | | |00193 06286| +580027 |TT Oct |235032.5-784057 |RRAB | 12.9 | 13.7 | |p |25447.60 | | 0.56772 | | |00193 06286| +580028 |TU Oct |235258.0-775256 |IS: | 12.8 | 13.6 | |p | | | | | |00193 06286| +580029 |TV Oct |232512.6-770257 |I | 13.0 | 16.0 | |p | | | | | |00193 06286| +580030 |TW Oct |194438.7-771517 |SRA | 9.9 | 12.2 | |p |28695. | | 132. |45 |Me |00016 08953| +580031 |TX Oct *|030543.3-854459 |EA/SD | 12.6 | 13.9 | 12.7 |p |36835.386 | | 0.907137 |20 | |04117 04117| +580032 |TY Oct |185233.2-805637 |SR | 11.5 |< 13. | |p | | | | | |00085 02386| +580033 |TZ Oct |190710.4-752027 |EA | 11. | 12.5 | |p | | | | | |00085 02383| +580034 |UU Oct |200201.0-771003 |M | 12.5 | 16. | |p | | | | | |00085 02386| +580035 |UV Oct *|163225.5-835411 |RRAB | 8.70 | 9.97 | |V |34328.396 | | 0.542625 | |A6-F6 |00080 06286| +580036 |UW Oct |214438.2-803344 |RRAB | 12.3 | 13.0 | |V |34337.409 | | 0.444490 |15 | |00080 02384| +580037 |UX Oct |225220.1-791822 |M | 13.5 |< 15. | |p |34540. :| | | | |02554 USNO | +580038 |UY Oct |003416.2-852840 |RRAB | 14.5 | 15.4 | |p |36548.383 | | 0.6005444 |14 : | |04010 04010| +580039 |UZ Oct *|044336.0-844840 |EB/KE | 9.03 | 9.56 | 9.48 |V |42064.44803 | | 1.1493549 | | |07167 CoD | +580040 |VV Oct |183125.4-755723 |M | 12. |< 14.5 | |p | | | | | |02554 04208| +580041 |VW Oct |190343.9-853411 |RRAB | 14.5 | 15.0 | |p |36329.114 | | 0.540803 |17 | |04010 04010| +580042 |VX Oct |185525.8-745411 |RRAB | 16.3 | 17.0 | |p |36729.440 | | 0.6243 |12 | |06920 04001| +580043 |VY Oct |190609.1-754253 |RRAB | 13.8 | 15.3 | |p |36731.480 | | 0.461 |18 | |06920 04001| +580044 |VZ Oct |191137.5-745726 |M | 15.2 |< 16.5 | |p |36847. | | | | |06920 04001| +580045 |WW Oct |191435.7-745615 |RRAB | 13.7 | 15.3 | |p |36732.540 | | 0.46845 |15 | |06920 04001| +580046 |WX Oct |192233.9-745113 |RRAB | 14.6 | 15.6 | |p |36731.460 | | 0.6991 |15 | |06920 04001| +580047 |WY Oct |192600.1-763933 |RRAB | 15.5 | 16.4 | |p |36736.560 | | 0.45885 |25 | |06920 04001| +580048 |WZ Oct |192620.9-764023 |E: | 15.7 | 16.3 | |p |36733.562 | | | | |06920 04001| +580049 |XX Oct |192656.1-750735 |RR | 16.0 | 16.5 | |p | | | 1. /N| | |06920 04001| +580050 |XY Oct |193317.1-760935 |RRC | 14.6 | 15.2 | |p |36728.51 | | 0.3855 |30 | |06920 04001| +580051 |XZ Oct |193547.7-753028 |RRAB | 12.9 | 13.7 | |p |36730.500 | | 0.4738 |20 | |06920 04001| +580052 |YY Oct |193709.9-753638 |RRAB | 13.5 | 14.1 | |p |36729.470 | | 0.5725 |20 | |06920 04001| +580053 |YZ Oct |194125.8-755430 |RRAB | 15.4 | 16.2 | |p |36728.480 | | 0.6034 |15 | |06920 04001| +580054 |ZZ Oct |194146.9-750421 |RRAB | 14.7 | 16.0 | |p |36728.510 | | 0.4426 |20 | |06920 04001| +580055 |AA Oct |194748.3-762310 |CWA | 15.1 | 15.8 | |p |36732. | | 29. |10 | |06920 04001| +580056 |AB Oct |195013.7-752422 |RRAB | 15.0 | 15.7 | |p |36731.490 | | 0.4553 |25 | |06920 04001| +580057 |AC Oct |195849.5-752903 |RRAB | 13.5 | 14.6 | |p |36773.295 | | 0.4995 |15 : | |06920 04001| +580058 |AD Oct |201533.7-751644 |SR: | 13.0 | 13.8 | |p |36755. | | 60. : | | |06920 04001| +580059 |AE Oct |202255.4-760404 |RRAB | 13.1 | 14.7 | |p |36728.480 | | 0.5667 |17 | |06920 04001| +580060 |AF Oct |203243.5-805852 |RRC | 12.6 | 13.2 | |p |36329.363 | | 0.36849 |30 | |04010 04010| +580061 |AG Oct |202942.6-754207 |RRAB | 15.1 | 16.0 | |p |36728.550 | | 0.5524 |10 | |06920 04001| +580062 |AH Oct |203122.8-761901 |RRAB | 15.1 | 16.1 | |p |36730.470 | | 0.5435 |15 | |06920 04001| +580063 |AI Oct |203131.4-743622 |RRAB | 13.3 | 14.6 | |p |36730.490 | | 0.5526 |17 | |06920 04001| +580064 |AK Oct |203620.8-750507 |RRAB | 15.2 | 16.0 | |p |36731.470 | | 0.5593 |15 | |06920 04001| +580065 |AL Oct |204239.1-762924 |RRC | 14.6 | 15.3 | |p |36735.517 | | 0.3485 |40 | |06920 04001| +580066 |AM Oct *|204936.1-752203 |EW | 14.4 | 15.1 | 14.9 |p |36728.540 | | 0.5017 | | |06920 04001| +580067 |AN Oct |205130.9-751516 |RRAB | 15.6 | 16.5 | |p |36728.480 | | 0.4586 |20 | |06920 04001| +580068 |AO Oct |210508.3-752103 |UG: | 13.5 | 21. | |p | | | | | |06920 08852| +580069 |AP Oct |214945.7-815822 |RRAB | 12.4 | 13.6 | |p |36329.839 | | 0.605365 |12 | |04010 04010| +580070 |AQ Oct |230851.7-771116 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +580071 |AR Oct |231214.6-743447 |RRAB | 12.2 | 13.5 | |V |36840.420 | | 0.39362 |14 | |04183 02385| +580072 |AS Oct |231334.7-772258 |RRAB | 13.8 | 14.9 | |p |36760.634 | | 0.4143 |20 | |09264 04001| +580073 |AT Oct |231546.4-744706 |RRAB | 15.0 | 15.9 | |p |36735.620 | | 0.5937 |30 | |09264 04001| +580074 |AU Oct |231654.4-791727 |E | 14.5 | 15.0 | |p |36834.372 | | | | |09264 04001| +580075 |AV Oct |231551.2-812929 |RRAB | 14.4 | 15.6 | |p |36329.376 | | 0.470618 |25 | |04010 04010| +580076 |AW Oct |232040.7-802912 |RR | 16. | 17. | |p | | | | | |04001 04001| +580077 |AX Oct |232521.5-762929 |RRAB | 15.4 | 16.3 | |p |36759.610 | | 0.6877 |20 | |09264 04001| +580078 |AY Oct |232750.9-754040 |UGZ: | 15.0 | 16.1 | |p | | | | | |09264 04001| +580079 |AZ Oct |232943.9-752245 |S: | 15.7 | 16.7 | |p | | | | | |09264 04001| +580080 |BB Oct |233627.3-760937 |RRAB | 16.0 | 16.9 | |p |36758.628 | | 0.4755 |20 | |09264 04001| +580081 |BC Oct *|233808.1-812118 |EA | 10.30 | 10.80 | |V |54509.525 | | 17.63953 : | | |04340 08953| +580082 |BD Oct |234226.8-751523 |RRAB | 16.3 | 17.1 | |p |36780.45 | | 0.6991 |20 : | |09264 04001| +580083 |BE Oct *|000049.0-771858 |UGSU | 15.4 |< 17.5 | |p | | | | | |05386 04001| +580084 |BF Oct |000122.7-750012 |RRAB | 16.2 | 17.0 | |p |36765.600 | | 0.5602 |20 | |09264 04001| +580085 |BG Oct *|000231.8-795122 |RRAB | 16.0 | 16.8 | |p |36735.610 | | 0.5992 : | | |09264 04001| +580086 |BH Oct |185225.2-762535 |EA | 15.5 | 16.2 | |p |36731.480 | | 0.5652 |25 *| |06920 04001| +580087 |BI Oct |194110.2-754301 |RRAB | 14.8 | 15.9 | |p |36736.570 | | 0.5265 |15 | |06920 04001| +580088 |BK Oct *|194303.9-745129 |EW/KW | 14.3 | 14.8 | 14.6 |p |36732.537 | | 0.3686 | | |06920 04001| +580089 |BL Oct |200515.8-765242 |EA | 13.2 | 14.1 | |p |36747.430 | | 3.903 |06 *| |06920 04001| +580090 |BM Oct |213045.3-790357 |E | 11.4 | 12.2 | |p |28702.550 | | 3.70898 | | |05255 05255| +580091 |BN Oct |205154.4-744510 |RRAB | 12.8 | 14.8 | |p |36735.480 | | 0.5081 |20 | |06920 04001| +580092 |BO Oct | | | | | | | | | | | | |=eps Oct +580093 |BP Oct *|152819.1-880759 |DSCTC | 6.46 |( 0.04 )| |V | | | 0.08 | |A2m |06364 CPD | +580094 |BQ Oct |143529.5-894618 |LB: | 6.8 |( 0.1 )| |V | | | | |M4III(S5,1) |07763 CPD | +580095 |BR Oct |182016.4-774019 |LB: | 9.4 | 10.0 | |p | | | | |M4-6 |01944 06618| +580096 |BS Oct |194802.3-753055 |RR: | 15.8 | 16.2 | |p | | | 0.2 : | | |06920 04001| +580097 |BT Oct |200945.9-761550 |M: | 15. |< 17. | |p | | | | | |04663 USNO | +580098 |BU Oct |205633.2-755943 |RR: | 16.2 | 16.8 | |p |36814.326 | | | | |06920 04001| +580099 |BV Oct |210133.8-745027 |S: | 15.1 | 15.6 | |p | | | | | |06920 04001| +580100 |BW Oct |222202.5-843958 |LB: | 8.8 | 9.7 | |p | | | | |M7III |07821 CPD | +580101 |BX Oct |235344.7-750112 |EA: | 16. | 17. | |p | | | | | |04001 04001| +580102 |BY Oct |000037.8-802348 |E | 15.6 | 16.6 | |p |36811.445 | | | | |09264 04001| +580103 |BZ Oct |155629.1-854731 |M: | 12.8 |< 16.0 | |p | | | | | |04454 05234| +580104 |CC Oct *|200331.8-784951 |DSCTC | 8.01 |( 0.10 )| |V | | | 0.12490 | |Fm |08522 CPD | +580105 |CD Oct *|220420.9-751326 |ZZA | 15.1 |( 0.1 )| |V | | | | |DAWK |08524 04121| +580106 |CE Oct *|200604.8-792524 |DSCTC | 8.02 |( 0.02 )| |V | | | | |A7IV/V |08773 CPD | +580107 |CF Oct |204937.3-800801 |RS | 8.27 |( 0.3 )| |V | | | | | |67442 CPD | +580108 |CG Oct |224530.2-884906 |DSCTC | 6.85 |( 0.04 )| |B | | | | | |67443 CPD | +580109 |CH Oct |230525.2-782646 |RR: | 15.8 | 16.6 | |p | | | | | |67348 67347| +580110 |CI Oct |233449.5-810535 |E | 15.0 | 15.5 | |p | | | | | |67348 67347| +580111 |CK Oct |201356.4-785242 |ACVO | 9.90 |( 0.01 )| |V | | | | | |71157 CPD | +580112 |CL Oct |031716.2-853225 |ZZ | 14.72 | 14.90 | |V | | | | | |73208 73208| +580113 |CM Oct |202357.9-783938 |M | 6.36 | 7.70 | |J | | | | | |73014 GSC22| +580114 |CN Oct |005433.6-824010 |LB: | 8.45 | 8.55 | |Hp| | | | | |HIP HIP | +580115 |CO Oct |030313.2-853822 |LB | 8.74 | 8.92 | |Hp| | | | | |HIP HIP | +580116 |CP Oct *|030953.8-833154 |DSCTC: | 7.68 | 7.73 | |Hp| | | | | |HIP HIP | +580117 |CQ Oct |042916.7-844818 |SRB | 8.12 | 8.59 | |Hp| | | | | |HIP HIP | +580118 |CR Oct |044902.6-881616 |SRB | 7.16 | 7.27 | |Hp| | | | | |HIP HIP | +580119 |CS Oct |081006.7-842642 |LB: | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +580120 |CT Oct |114142.8-880353 |BY: | 10.91 | 11.34 | |Hp| | | | | |HIP HIP | +580121 |CU Oct |121109.4-834642 |ACV | 7.39 | 7.43 | |Hp| | | | | |HIP HIP | +580122 |CV Oct |165105.6-870812 |LB | 8.92 | 9.19 | |Hp| | | | | |HIP HIP | +580123 |CW Oct |170058.5-862152 |ACV: | 6.05 | 6.07 | |Hp| | | | | |HIP HIP | +580124 |CX Oct |170218.4-841813 |SRB | 7.83 | 8.05 | |Hp| | | | | |HIP HIP | +580125 |CY Oct |185741.5-853355 |LB | 7.97 | 8.10 | |Hp| | | | | |HIP HIP | +580126 |CZ Oct |194454.5-800519 |LB | 7.55 | 7.72 | |Hp| | | | | |HIP HIP | +580127 |DD Oct |200413.3-752622 |E: | 9.72 | 9.94 | |Hp| | | | | |HIP HIP | +580128 |DE Oct |201919.2-760736 |RRC: | 9.19 | 9.26 | |Hp| | | | | |HIP HIP | +580129 |DF Oct |203506.6-751000 |LB: | 8.85 | 8.99 | |Hp| | | | | |HIP HIP | +580130 |DG Oct |204520.7-790525 |LB: | 8.81 | 8.97 | |Hp| | | | | |HIP HIP | +580131 |DH Oct |205154.6-785224 |LB: | 9.10 | 9.21 | |Hp| | | | | |HIP HIP | +580132 |DI Oct |212306.7-853820 |SRD | 7.24 | 7.41 | |Hp| | | | | |HIP HIP | +580133 |DK Oct |215038.6-835740 |LPB | 7.62 | 7.66 | |Hp| | | | | |HIP HIP | +580134 |DL Oct |215510.8-765626 |LB | 7.64 | 8.18 | |Hp| | | | | |HIP HIP | +580135 |DM Oct |220202.0-801855 |BY: | 11.69 | 12.03 | |Hp| | | | | |HIP HIP | +580136 |DN Oct |222112.2-745803 |SRB: | 7.28 | 7.36 | |Hp| | | | | |HIP HIP | +580137 |DO Oct |231617.2-875738 |SRB: | 8.20 | 8.34 | |Hp| | | | | |HIP HIP | +580138 |DP Oct |231045.8-762748 |LB | 7.81 | 7.95 | |Hp| | | | | |HIP HIP | +580139 |DQ Oct |232511.0-760617 |SRB | 8.35 | 8.59 | |Hp| | | | | |HIP HIP | +580140 |DR Oct |100729.5-850433 |RS: | 8.70 | 8.73 | |V | | | | | |75179 CPD | +580141 |DS Oct |085635.7-830511 |M | 12.0 |< 14.8 | |V |53119 | | 266. | | |78040 78120| +580142 |DT Oct |184052.4-834310 |UGSU | 11.4 |< 15.2 | |V | | | | | |78078 78248| +580143 |DU Oct *|205004.2-755437 |EA/RS: | 9.21 | 9.48 | 9.34 |V |52845.852 | | 2.47867 | |G3V |78011 DM | +580144 |DV Oct *|010519.4-815235 |SR | 13.3 | 14.3 | |p |25800. | | 194. | | |00193 06286| +580145 |DW Oct |003752.9-823714 |SRB | 8.8 | 10.1 | |V | | | 88. | | |79100 DM | +580146 |DX Oct |025025.3-873022 |NL | 13.1 | 14.1 | |V | | | | |sdO |79019 79019| +580147 |DY Oct |073112.5-843218 |RRAB | 12.2 | 13.4 | |V |53770.6703 | | 0.558093 |15 | |79100 79083| +580148 |DZ Oct *|085448.3-831657 |RRAB | 12.2 | 13.5 | |V |53055.630 | | 0.47786 |30 | |79033 79071| +580149 |EE Oct |104726.9-840823 |RRAB | 12.6 | 13.9 | |V |53503.546 | | 0.444314 |20 | |79064 79083| +580150 |EF Oct |110054.5-840527 |M | 11.6 |< 14.5 | |V |53562. | | 305. | | |79072 79086| +580151 |EG Oct |113537.7-842136 |SRB | 11.9 | 13.1 | |V | | | 86. | | |79064 79086| +580152 |EH Oct |113925.2-870926 |M | 11.3 |< 14.9 | |V |53597. | | 193.4 | | |79072 79086| +580153 |EI Oct |123242.9-872623 |EW | 11.35 | 12.2 | 12.1 |V |53000.644 | | 0.338525 | | |79100 DM | +580154 |EK Oct |125352.2-872721 |LB | 9.8 | 10.5 | |V | | | | | |79100 DM | +580155 |EL Oct |125956.0-831207 |M | 11.6 |< 14.3 | |V |53726. | | 242. | | |79100 GSC | +580156 |EM Oct |132030.8-855223 |SRB | 8.4 | 9.6 | |V | | | 100. | |M5/6III |79100 DM | +580157 |EN Oct |145018.0-894658 |EW | 11.88 | 12.6 | 12.5 |V |52404.915 | | 0.288906 | | |79018 79086| +580158 |EO Oct |145421.3-872105 |SRB | 11.9 | 13.2 | |V | | | 86. | | |79100 79086| +580159 |EP Oct |153053.7-844829 |EW | 12.37 | 13.17 | 13.10 |V |52809.693 | | 0.448784 | | |79018 79086| +580160 |EQ Oct |171029.0-862300 |SRA | 9.9 | 12.3 | |V |53849. | | 267. | | |79190 79190| +580161 |ER Oct |195417.2-744310 |SRB | 11.5 | 12.3 | |V | | | 64. | | |79100 79063| +580162 |ES Oct |211751.8-792422 |EB | 12.66 | 13.7 | 13.0 |V |52085.710 | | 0.510696 | | |79018 79086| +580163 |ET Oct |220240.5-841554 |EA | 11.6 | 12.2 | 12.2 |V |53620.649 | | 5.733983 |05 | |79064 79083| +580164 |EU Oct |224841.0-784831 |EA | 13.3 | 14.4 : | 13.4 |V |52521.638 | | 3.5088 |09 | |79003 79056| +580165 |EV Oct *|000231.1-785312 |EA | 13.8 | 14.7 | 14.5 |V |53414.52 | | 0.91727 |13 | |80011 GSC | NL80_1 +580166 |EW Oct |090849.8-842913 |RRAB | 13.0 | 13.75 | |V |52032.49 | | 0.577418 |26 | |80083 GSC | NL80_2 +580167 |EX Oct *|151708.7-831837 |EB | 11.05 | 11.25 | 11.20 |V |51889.7 | | 4.692825 | | |80002 GSC | NL80_2 +580168 |EY Oct |153332.5-862459 |M | 10.3 |< 12.6 | |V |54723. | | 287. | | |80406 80406| NL80_2 +580169 |EZ Oct *|154313.6-864807 |EW | 11.37 | 12.09 | 12.04 |V |52642.759 | | 0.285878 | | |80048 GSC | NL80_2 +580170 |FF Oct |155705.5-873005 |RS | 12.6 | 13.3 | |V | | | 3.114 | | |80034 GSC | NL80_2 +580171 |FG Oct |185639.0-771031 |RRAB | 13.55 | 14.6 | |V |52804.720 | | 0.553665 |10 | |80135 GSC | NL80_3 +580172 |FH Oct |190525.1-782644 |RS | 11.1 | 11.4 | |V | | | 2.80321 | | |80001 DM | NL80_3 +580173 |FI Oct |191404.5-860125 |RRAB | 13.15 | 13.95 | |V |52918.91 | | 0.65231 |20 | |80083 GSC | NL80_3 +580174 |FK Oct |203837.7-800027 |SRB | 9.0 | 9.9 | |V | | | 95. | | |80558 DM | NL80_3 +580175 |FL Oct |212658.2-854206 |RS | 10.13 | 10.38 | |V | | | 9.1246 | |G9IV |80286 GSC | NL80_3 +580176 |FM Oct |221846.7-843830 |BY | 11.25 | 11.85 | |V | | | 15.28 | | |80034 GSC | NL80_3 +589001 |alf Oct *|210443.1-770126 |EB | 5.22 | 5.26 | |Hp| | | | | |HIP HIP | +589005 |eps Oct |222001.7-802623 |SRB | 4.58 | 5.30 | |V | | | 55. : | |M6III |06590 CPD | +589014 |ksi Oct |225022.8-800726 |LPB | 5.26 | 5.29 | |Hp| | | | | |HIP HIP | +589018 |sig Oct |210846.9-885723 |DSCTC | 5.45 |( 0.05 )| |V | | | 0.097 | |F0IV |09479 CPD | +590001 |R Oph *|170745.8-160534 |M | 7.0 | 13.8 | |V |45234. | | 306.5 |45 |M4e-M6e |00001 00002| +590002 |S Oph |163415.2-170939 |M | 8.9 | 14.7 | |V |42247. | | 233.51 |45 |M5e |00001 00002| +590003 |T Oph |163343.5-160754 |M | 8.8 |< 14.2 | |V |41874. | | 366.82 |36 |M6.5e |00001 00002| +590004 |U Oph *|171631.7+011238 |EA/DM | 5.84 | 6.56 | 6.46 |V |44416.3864 | | 1.67734617 |16 *|B5V+B5V | 00562| +590005 |V Oph *|162643.7-122536 |M | 7.3 | 11.6 | |V |45071. | | 297.21 |48 |C5,2-C7,4e(N3e) |00001 00002| +590006 |W Oph *|162124.5-074200 |M | 9.3 | 14.9 | |V |38414. | | 332.68 |41 |M8e |00001 00002| +590007 |X Oph *|183821.1+085003 |M | 5.9 | 9.2 | |V |44729. | | 328.85 |53 |M5e-M9e |00001 00002| +590008 |Y Oph *|175238.7-060837 |DCEPS | 5.87 | 6.46 | |V |39853.30 | | 17.12413 |44 |F8Ib-G3Ib |06591 02544| +590009 |Z Oph *|171932.1+013054 |M | 7.6 | 14.0 | |V |42238. | | 348.7 |40 |K3ep-M7.5e |00001 00002| +590010 |RR Oph *|164902.5-192752 |M | 8.0 | 14.9 | |V |43184. | | 292.03 |46 |M3e-M7 |00001 00002| +590011 |RS Oph *|175013.2-064229 |NR | 4.3 | 12.5 | |V |39791. |1967 | | |OB+M2ep | 09472| +590012 |RT Oph *|175632.0+111010 |M | 8.6 | 15.5 | |V |42630. | | 426.34 |36 |M7e(C) |00001 00002| +590013 |RU Oph *|173252.6+092525 |M | 8.6 | 14.2 | |V |40445. | | 202.29 |49 |M3e-M5e |00001 00002| +590014 |RV Oph *|173435.0+071449 |EA/SD | 9.42 | 11.44 | 9.56 |V |23997.3833 | | 3.6871222 |10 |A2V |03115 00279| +590015 |RW Oph *|175520.5+074949 |M | 9.7 | 14.5 | |V |42006. | | 246.71 | |M3IIIe |00001 06286| +590016 |RX Oph *|165248.1+052427 |M | 9.8 |< 13. | |V |38539. | | 322.93 | |M5 |00001 00547| +590017 |RY Oph *|181636.9+034135 |M | 7.4 | 13.8 | |V |45205. | | 150.41 |46 |M3e-M6e |00001 00002| +590018 |RZ Oph *|184546.4+071312 |EA/GS | 9.65 : | 10.42 | |V |42204.39 | | 261.9277 |04 |F3eIb+K5II |04954 00100| +590019 |SS Oph *|165751.0-024542 |M | 7.8 | 14.5 | |V |44729. | | 180.64 |47 |M5e |00001 00002| +590020 |ST Oph *|173359.4-010451 |RRAB | 11.33 | 12.74 | |V |28426.441 | | 0.45035618 |13 |A4-F4 |04957 00188| +590021 |SU Oph |173926.9+013619 |SRB | 10.3 | 12.2 | |p | | | 106.11 | |M6 |09484 06286| +590022 |SV Oph *|175624.8+032238 |M | 9.4 | 13. | |V |38674. | | 215.93 | |M2e |00001 06286| +590023 |SW Oph *|161628.1-065844 |EA/SD | 10.6 | 11.7 | |p |41085.420 | | 2.446021 |12 |A0 |00001 09485| +590024 |SX Oph *|161755.5-063952 |EA/SD: | 11.8 | 12.3 | |p |33399.557 | | 2.0633038 |16 | |04959 00279| +590025 |SY Oph |165506.8-215810 |SRB | 9.7 | 11.4 | |p |26470. | | 132. | |M5 |00001 08953| +590026 |SZ Oph *|171502.8-080327 |EA/SD | 10.7 | 12.2 | |p |45485.462 | | 3.708451 |13 *|A |00001 00462| +590027 |TT Oph *|164935.9+033754 |RVA | 9.45 | 10.84 | |V |44449. | | 61.08 | |G2e-K0 |00368 03145| +590028 |TU Oph |162639.2-221859 |UV: | 13.6 |< 16.0 | |p | | | | |M |00121 02452| +590029 |TV Oph |164242.3-244550 |S: | 11.3 | 12.2 | |p | | | | |M2 |00266 00261| +590030 |TW Oph *|172943.7-192823 |SRB | 11.6 | 13.8 | |p | | | 185. : | |C5,5(Nb) |00236 03479| +590031 |TX Oph |170400.1+045901 |RVA | 9.7 | 11.4 | |V |37880. | | 135. | |F5e-G6e |00001 00002| +590032 |TY Oph |183123.3+042254 |LB | 12.7 | 15.1 | |p | | | | |C5,5(N) |02755 02755| +590033 |TZ Oph |162907.7-201404 | | 12.4 | 13.5 | |p | | | | |F6 |00268 GSC | +590034 |UU Oph *|165722.6-254759 |EA/SD | 10.0 | 12.5 | |p |20750.489 | | 4.3968025 |12 |A0 |09486 00261| +590035 |UV Oph |164248.9-124413 |SR | 11. | 13. | |V |21429. | | 249. | | |00448 06286| +590036 |UW Oph |174447.3-113833 |M | 10.8 |< 15. | |V |42699. | | 232.06 | |M7 |00001 06286| +590037 |UX Oph *|170457.0-121205 |M | 9.4 | 13.6 | |V |38879. | | 116.71 | |M4e |00001 00002| +590038 |UY Oph |171624.8+044317 |M | 11.3 |< 16.6 | |p |34196. | | 332. : | |M7III |00001 06286| +590039 |UZ Oph |172159.3+065442 |RVA | 9.93 | 11.50 | |V |22183. | | 87.44 | |G2e-G8(M2) |00451 03145| +590040 |VV Oph |172647.2+032804 |M | 11.5 | 15.5 | |p |34538. | | 245.58 | | |00001 00567| +590041 |VW Oph *|172725.9+041339 |M | 10.5 | 14. | |p |38851. | | 285.00 | |M5e |00001 09487| +590042 |VX Oph |172813.1+003729 | | 13.5 | 14.5 | |p | | | | | |02142 GSC22| +590043 |VY Oph |173253.1+002512 |RRAB | 12.5 | 14. | |p |27874.634 | | | |F0 |09270 06286| +590044 |VZ Oph |173444.1+034554 |M | 13.0 |< 16.5 | |p |16264. :| | 330. | | |00452 06286| +590045 |WW Oph *|175540.3+075042 |SRA | 12.0 | 14.3 | |V |33073. | | 72.63 | | |08044 GSC | +590046 |WX Oph |182955.7+095021 |M | 12.1 |< 17. | |p |26132. | | 257. | |M3 |00447 GSC22| +590047 |WY Oph |184141.8+062609 |LB | 11.3 | 12.4 | |p | | | | |M6 |00447 06286| +590048 |WZ Oph *|170639.0+074658 |EA/DM | 9.14 | 9.82 | 9.82 |V |35648.775 | | 4.183506 |06 *|F8V+F8V |00001 00564| +590049 |XX Oph *|174356.5-061609 |* | 8.59 | 10.2 | |V | | | | |Bpeq+M5 |08079 05464| +590050 |XY Oph |181058.5+075309 |M | 13.8 |< 16. | |p |26410. | | 362.7 | | |00001 GSC22| +590051 |XZ Oph |165439.8-290951 |RR | 12.3 | 13.6 | |p |25717.600 | | 0.550184 | | |00454 00261| +590052 |YY Oph |165505.3-104150 | | 14. | 16. | |p | | | | | |01483 USNO | +590053 |YZ Oph |170404.8-112835 | | 13. | 16. | |p | | | | | |01483 06286| +590054 |ZZ Oph |171056.5-160806 |M | 12.0 |< 15.5 | |p |25740. | | 205. | | |00455 06286| +590055 |AA Oph |171225.2-142027 | | 13.7 |< 15.5 | |p | | | | | |02073 06286| +590056 |AB Oph |171255.3-151806 | | 12.6 | 15.5 | |p | | | | | |02073 06286| +590057 |AC Oph |171413.6-132040 | | 12.3 | 13.9 | |p | | | | | |02073 06286| +590058 |AD Oph |171500.9-150308 | | 12.2 | 14.0 | |p | | | | | |02073 06286| +590059 |AE Oph |171752.6-200119 |M | 11.5 | 16.1 | |p |36740. | | 176.0 |40 |M4-M8.5 |00001 06286| +590060 |AF Oph |171739.0+041453 |E/SD: | 13.1 | 14.3 | |p | | | | | |00452 GSC | +590061 |AG Oph |172156.9+141113 |M | 11. |< 15.5 | |p |26214. | | 337. | | |00456 06286| +590062 |AH Oph *|172535.9-030400 |M | 11.7 |< 15. | |p |40446. | | 353.2 | |M7 |06997 06286| +590063 |AI Oph |172542.3+123556 |M | 12.0 |< 16.6 | |p |35690. | | 420. | | |03122 06286| +590064 |AK Oph |172720.9-061316 |M | 12.5 |< 15. | |p |24800. | | 330.9 | |M6 |00215 06286| +590065 |AL Oph |172645.3+125757 |EW | 14.1 | 15.0 | |p | | | | |G5 |09270 06286| +590066 |AM Oph |172854.0-055904 |M | 12.5 |< 15. | |p |25313. | | 300. | | |00458 06286| +590067 |AN Oph |173205.2-100512 | | 14.8 |< 16. | |p | | | | | |01483 USNO | +590068 |AO Oph |173410.7+030302 |M | 12.5 |< 14.5 | |V |28152. | | 217. | | |00459 06286| +590069 |AP Oph |173756.2+034605 |M | 13.3 |< 16.5 | |p |27270. | | 311.5 | | |00215 06286| +590070 |AQ Oph *|173911.7+040152 |SR | 12.0 | 14.2 | |p |27277. | | 125.2 | | |00460 GSC | +590071 |AR Oph |174410.1-032220 |M | 12.5 | 16.0 | |p |25871. | | 277.6 | | |00461 06286| +590072 |AS Oph |174737.7-082445 | | 14.3 |< 16. | |p | | | | | |01483 USNO | +590073 |AT Oph |175643.2+022548 |M | 13.9 |< 17.0 | |p |25118. | | 250.0 | | |00453 GSC22| +590074 |AU Oph |180259.5+013730 |M | 14.2 |< 17.0 | |p |16620. | | 331.5 | | |00453 06286| +590075 |AV Oph |180836.8+051715 |LB | 11.3 | 13.4 | |p | | | | |M8 |00266 06286| +590076 |AW Oph |180838.8+043343 |M | 12.8 |< 17.0 | |p |25095. | | 239.0 | |M1IIIe |00453 USNO | +590077 |AX Oph |181252.7+092509 |RRAB | 13.0 | 14.0 | |p |25363.580 | | 0.468236 |20 |F5 |08656 06286| +590078 |AY Oph |181904.5+061553 |M | 11.5 | 19. | |p |42151. | | 195.27 | | |00001 06286| +590079 |AZ Oph |182008.9+040530 |M | 13.7 |< 17.2 | |p |44065. | | 244. | | |00001 USNO | +590080 |BB Oph |172430.2-244806 |N | 11.3 |< 18. | |p |14067. :|1897 | | | |09490 USNO | +590081 |BC Oph |181807.2+065618 |M | 10.7 | 15.3 | |p |42895. | | 307.11 | |M6e |00001 00548| +590082 |BD Oph |160546.3-064228 |M | 11.0 | 15.6 | |p |38894. | | 340.44 | |M6e: |00001 06286| +590083 |BE Oph *|161514. -063558:| | 12.6 |< 14.0 | |p | | | | | |01733 | +590084 |BF Oph *|170605.5-263450 |DCEP | 6.93 | 7.71 | |V |44435.21 | | 4.06775 |26 |F6-G2 |00001 00261| +590085 |BG Oph |174146.2-164646 |M | 13.0 |< 16.7 | |p |42985. | | 342.5 | |M9 |08412 06286| +590086 |BH Oph |181550.5+120544 |CWA | 11.60 | 12.48 | |V |37870.723 | | 11.05314 |28 |F6-F9e |03157 | +590087 |BI Oph |183107.6+070031 |M | 11.6 | 15.9 | |p |35680. | | 202.59 |42 |M4e |00001 06286| +590088 |BK Oph |183600.6+074110 |M | 12.3 | 16.8 | |p |28098. | | 376.2 | |M6e-M9 |01000 00549| +590089 |BL Oph |165505.2-294758 |SR | 13.5 | 15.8 | |p |14841. | | 278. | | |00249 00261| +590090 |BM Oph |165846.8-300450 |RRAB | 14.8 | 16.0 | |p |14878.526 | | 0.554 | | |00249 00261| +590091 |BN Oph *|165844.7-293446 |L: | 14.2 |< 16. | |p | | | | | |00249 00261| +590092 |BO Oph |165928.1-293116 |RR | 14.8 | 15.9 | |p | | | | | |00249 00261| +590093 |BP Oph |170320.9-291341 |SR: | 14.3 |< 16. | |p |13754. | | 132. | | |00249 00261| +590094 |BQ Oph |170602.6-292832 |M | 12.8 |< 16. | |p |13748. | | 365. /N| | |00249 00261| +590095 |BR Oph |165129.9-243601 |M: | 13.1 |< 16.5 | |p | | | | | |00283 00261| +590096 |BS Oph |165223.8-241527 | | 15.1 |< 16.5 | |p | | | | | |00283 00261| +590097 |BT Oph |165253.8-260400 | | 15.3 | 16.1 | |p | | | | | |00283 00261| +590098 |BU Oph |165303.1-264934 |M | 13.8 | 17.5 | |p |24590. | | 181.1 | | |00271 00261| +590099 |BV Oph |165257.5-254546 | | 14.9 |< 16.5 | |p | | | | | |00283 00261| +590100 |BW Oph |165316.8-294421 |SR: | 15.4 |< 16.5 | |p |24640. | | 306.5 | | |00271 GSC22| +590101 |BX Oph |165323.2-300828 |SR | 15.0 | 16.6 | |p |24645. | | 108.3 | | |00271 | +590102 |BY Oph |165324.3-274525 |SR | 15.1 | 16.5 | |p | | | | | |00283 00261| +590103 |BZ Oph |165324.3-255513 | | 14.6 | 16.4 | |p | | | | | |00283 00261| +590104 |CC Oph |165319.2-245816 | | 15.2 | 16.4 | |p | | | | | |00283 00261| +590105 |CD Oph |165335.4-264627 |M: | 15.2 |< 16.5 | |p |24700. | | 261. | | |00271 00261| +590106 |CE Oph |165338.4-261702 |CEP | 13.2 | 13.9 | |p |37794.802 | | 1.067159 |50 | |03934 00261| +590107 |CF Oph |165342.3-245627 | | 11.8 | 13.3 | |p | | | | | |00283 00261| +590108 |CG Oph |165355.1-260443 |M: | 14.5 |< 16.5 | |p | | | | | |00283 00261| +590109 |CH Oph |165403.5-271446 | | 15.5 |< 16.5 | |p | | | | | |00283 00261| +590110 |CI Oph |165407.5-262408 | | 13.6 | 14.4 | |p | | | | | |00283 00261| +590111 |CK Oph |165421.9-265420 | | 15.3 | 16.2 | |p | | | | | |00283 00261| +590112 |CL Oph |165433.1-284040 |SR | 15.4 | 16.5 | |p |24730. | | 181.7 | | |00271 GSC22| +590113 |CM Oph |165436.2-290515 |M | 13.6 | 17.0 | |p |24730. | | 131.1 | | |00271 USNO | +590114 |CN Oph |165509.7-290925 |RRAB | 13.6 | 15.0 | |p |24648.690 | | 0.70708 | | |00274 USNO | +590115 |CO Oph |165504.2-255244 |SR: | 13.6 | 15.5 | |p | | | | |Me |00283 00261| +590116 |CP Oph |165517.8-282804 |S: | 14.9 | 16.0 | |p | | | | | |00283 USNO | +590117 |CQ Oph |165520.2-282933 |M | 13.8 | 17.0 | |p |24700. | | 257.8 | | |00271 GSC22| +590118 |CR Oph |165519.8-285408 |M | 13.5 |< 16.5 | |p |23560. | | 345.7 | |Me |00271 USNO | +590119 |CS Oph |165514.4-261915 | | 15.3 |< 16.5 | |p | | | | | |00283 00261| +590120 |CT Oph |165520.4-264353 |M | 14.0 |< 16.5 | |p |24655. | | 188.3 | | |00271 00261| +590121 |CU Oph |165535.8-251557 | | 14.7 | 15.7 | |p | | | | | |00283 00261| +590122 |CV Oph |165545.8-265250 |M | 13.5 | 16.5 | |p |24620. | | 163.3 | | |00271 00261| +590123 |CW Oph |165539.1-235226 | | 12.8 | 16.4 | |p | | | | | |00283 00261| +590124 |CX Oph |165548.5-233608 | | 13.6 | 16.0 | |p | | | | | |00283 00261| +590125 |CY Oph |165605.9-282149 |EA/DS: | 10.8 | 11.7 | |p |21039. | | 24.5 | | |06592 | +590126 |CZ Oph |165602.9-253550 |L: | 14.3 |< 16.5 | |p | | | | | |00283 00261| +590127 |DD Oph |165634.1-300536 |S: | 14.8 | 15.7 | |p | | | | | |00283 USNO | +590128 |DE Oph |165636.5-301055 |RR | 14.8 | 16.2 | |p |24648.610 | | 0.37573 | | |00274 USNO | +590129 |DF Oph |165629.4-271325 |RRAB | 13.7 | 15.3 | |p |24623.700 | | 0.6041 | | |00274 00261| +590130 |DG Oph |165633.6-262842 | | 13.6 | 14.4 | |p | | | | | |00283 00261| +590131 |DH Oph |165642.8-282823 |RRAB | 13.5 | 15.1 | |p |24650.690 | | 0.475 | | |00274 USNO | +590132 |DI Oph |165702.6-270713 |RRAB | 13.9 | 15.0 | |p |24649.650 | | 0.56445 | | |00274 00261| +590133 |DK Oph |165654.8-234659 | | 13.9 | 15.4 | |p | | | | | |00283 00261| +590134 |DL Oph |165716.3-280016 |S: | 14.1 | 15.0 | |p | | | | | |00283 00261| +590135 |DM Oph *|165721.7-293402 |M: | 15.1 |< 16.5 | |p |23920. | | 217. | | |00271 USNO | +590136 |DN Oph |165712.4-252233 | | 14.8 |< 16.5 | |p | | | | | |00283 00261| +590137 |DO Oph |165731.2-275111 |M | 14.5 |< 16.5 | |p |24685. | | 234. | | |00271 00261| +590138 |DP Oph |165731.2-264837 |M | 13.6 |< 16.5 | |p |24730. | | 213.4 | | |00271 00261| +590139 |DQ Oph *|165746.7-300439 |L: | 13.9 | 16.0 | |p | | | | | |00283 USNO | +590140 |DR Oph |165747.1-292918 |SR | 13.5 | 15.7 | |p |24680. | | 220. | | |00271 USNO | +590141 |DS Oph |165735.2-241722 |L: | 14.3 |< 16.5 | |p | | | | | |00283 00261| +590142 |DT Oph |165757.4-282349 |M | 13.8 | 17.5 | |p |23995. | | 193.5 | | |00271 USNO | +590143 |DU Oph |165803.9-280058 |M | 13.9 |< 16.5 | |p |24720. | | 182.0 | |Me |00271 00261| +590144 |DV Oph |165756.3-241119 | | 13.7 | 15.9 | |p | | | | | |00283 00261| +590145 |DW Oph |165817.1-263140 | | 15.4 |< 16.5 | |p | | | | | |00283 00261| +590146 |DX Oph |165818.3-253410 |M: | 13.5 |< 16.5 | |p | | | | | |00283 00261| +590147 |DY Oph |165839.9-291330 |M: | 13.6 | 14.6 | |p | | | | |M4e |00283 00261| +590148 |DZ Oph |165829.7-253021 | | 15.0 |< 16.5 | |p | | | | | |00283 00261| +590149 |EE Oph |165842.4-254127 | | 13.9 | 15.4 | |p | | | | | |00283 00261| +590150 |EF Oph |165902.0-262003 | | 15.4 |< 16.5 | |p | | | | | |00283 00261| +590151 |EG Oph |165900.5-260151 | | 15.0 | 16.4 | |p | | | | | |00283 00261| +590152 |EH Oph |165911.2-274347 |M | 14.4 |< 16.5 | |p |24350. | | 243.8 | | |00271 USNO | +590153 |EI Oph |165911.2-260437 | | 14.2 | 15.6 | |p | | | | | |00283 00261| +590154 |EK Oph |165936.1-260443 | | 13.5 | 14.5 | |p | | | | | |00283 00261| +590155 |EL Oph |165953.4-285010 |M: | 15.0 |< 16.5 | |p |24650. | | 237.3 | | |00271 00261| +590156 |EM Oph |165951.5-255226 | | 13.9 | 16.3 | |p | | | | | |00283 00261| +590157 |EN Oph |170000.4-254558 | | 15.2 |< 16.5 | |p | | | | | |00283 00261| +590158 |EO Oph |170030.3-264511 |M | 14.2 | 17.2 | |p |24680. | | 149.2 | | |00271 00261| +590159 |EP Oph |170029.1-261124 | | 14.9 |< 16.5 | |p | | | | | |00283 00261| +590160 |EQ Oph |170045.4-275502 |M: | 14.8 |< 16.5 | |p |24630. | | 320. | | |00271 00261| +590161 |ER Oph |170042.1-261013 | | 13.6 | 16.2 | |p | | | | | |00283 00261| +590162 |ES Oph |170116.6-295452 |M | 13.7 | 17.0 : | |p |24660. | | 284.8 | | |00271 00261| +590163 |ET Oph |170108.7-263542 |E:/SD: | 12.2 | 13.4 | |p | | | | | |00283 00261| +590164 |EU Oph |170110.3-252704 |M: | 14.0 |< 16.5 | |p | | | | | |00283 00261| +590165 |EV Oph |170123.1-263139 | | 15.0 | 16.0 | |p | | | | | |00283 00261| +590166 |EW Oph |170143.8-292553 |L: | 14.0 | 15.9 | |p | | | | | |00283 00261| +590167 |EX Oph |170139.0-261405 | | 12.7 | 14.3 | |p | | | | | |00283 00261| +590168 |EY Oph |170205.0-292451 |RR: | 13.9 | 15.2 | |p | | | | | |00283 00261| +590169 |EZ Oph |170228.8-292824 |M | 13.6 | 16.3 | |p |24725. | | 114.5 | | |00271 00261| +590170 |FF Oph |170216.5-241313 | | 14.5 | 15.9 | |p | | | | | |00283 00261| +590171 |FG Oph |170220.1-252229 |E:/SD: | 12.3 | 13.5 | |p | | | | | |00283 00261| +590172 |FH Oph |170232.2-280759 |L: | 14.5 | 16.4 | |p | | | | | |00283 00261| +590173 |FI Oph |170231.5-254925 | | 15.0 | 15.7 | |p | | | | | |00283 00261| +590174 |FK Oph *|170238.9-261358 |CWA | 13.6 | 15.4 | |B |45133.7 | | 14.138 |35 | |09494 08774| +590175 |FL Oph |170250.2-281750 | | 13.8 | 16.2 | |p | | | | | |00283 00261| +590176 |FM Oph |170237.7-234047 | | 13.5 | 14.8 | |p | | | | | |00283 00261| +590177 |FN Oph |170247.0-264025 | | 14.3 | 15.2 | |p | | | | | |00283 00261| +590178 |FO Oph |170250.4-275712 |M: | 14.7 |< 16.5 | |p |24730. | | 211.7 | | |00271 00261| +590179 |FP Oph |170249.9-274500 |M | 13.5 |< 16.5 | |p |20340. | | 251. | | |00271 00261| +590180 |FQ Oph |170257.6-282158 |L: | 15.8 |< 16.5 | |p | | | | | |00283 00261| +590181 |FR Oph |170319.7-285049 |SR: | 13.6 | 16.0 | |p | | | | |Me |00283 00261| +590182 |FS Oph |170324.6-290639 |L: | 15.1 |< 16.5 | |p | | | | | |00283 00261| +590183 |FT Oph |170321.6-255554 | | 12.6 | 13.4 | |p | | | | | |00283 00261| +590184 |FU Oph |170320.3-243625 | | 14.3 | 15.2 | |p | | | | | |00283 00261| +590185 |FV Oph |170319.6-242857 | | 12.3 | 14.2 | |p | | | | | |00283 00261| +590186 |FW Oph |170329.5-264902 |E:/SD: | 12.3 | 13.6 | |p | | | | | |00283 00261| +590187 |FX Oph |170338.4-283731 |M: | 14.9 |< 16.5 | |p |24740. | | 195.7 | | |00271 00261| +590188 |FY Oph |170329.3-261101 | | 15.3 | 16.1 | |p | | | | | |00283 00261| +590189 |FZ Oph |170336.0-274143 |S: | 14.0 | 15.5 | |p | | | | | |00283 00261| +590190 |GG Oph |170407.3-290034 |L: | 14.5 |< 16.0 | |p | | | | | |00283 00261| +590191 |GH Oph |170402.0-243851 | | 15.3 | 16.4 | |p | | | | | |00283 00261| +590192 |GI Oph |170422.8-243605 |S: | 12.5 | 13.6 | |p | | | | |M4 |00283 00261| +590193 |GK Oph |170439.9-272647 |M | 13.0 | 16.4 | |p |24780. | | 184.6 | | |00271 00261| +590194 |GL Oph |170451.8-300506 |M | 14.0 |< 16.5 | |p |24770. | | 227. | | |00271 00261| +590195 |GM Oph *|170438.1-244526 |M | 15.0 | 18.4 : | |B |43224. | | 203.4 | |Me: |08775 08775| +590196 |GN Oph |170454.4-285420 |M | 14.0 |< 16.5 | |p |24720. | | 186.8 | | |00271 00261| +590197 |GO Oph |170501.8-282558 |M: | 14.3 |< 16.5 | |p | | | 460. : | | |00283 00261| +590198 |GP Oph |170500.7-271257 |SR: | 13.2 | 15.4 | |p | | | | |M6e |00283 00261| +590199 |GQ Oph |170511.5-290643 |SR | 14.4 | 16.6 | |p | | | 95. : | | |00283 00261| +590200 |GR Oph *|170517.3-293124 |SR | 14.7 | 16.8 : | |p |24650. | | 127.3 | | |00271 00261| +590201 |GS Oph |170502.8-252708 | | 14.4 | 15.4 | |p | | | | | |00283 00261| +590202 |GT Oph |170500.8-234921 | | 14.1 | 15.1 | |p | | | | | |00283 00261| +590203 |GU Oph |170536.2-285611 |M | 14.2 |< 16.5 | |p |24720. | | 234. | | |00271 00261| +590204 |GV Oph |170541.2-265004 |S: | 12.8 | 14.3 | |p | | | | | |00283 00261| +590205 |GW Oph |170533.5-240027 |E: | 13.6 | 14.5 | |p | | | | | |00283 00261| +590206 |GX Oph |170545.3-264009 | | 14.1 | 14.9 | |p | | | | | |00283 00261| +590207 |GY Oph |170555.4-281627 |M: | 14.5 |< 16.5 | |p | | | | | |00283 00261| +590208 |GZ Oph |170604.7-291450 |SR: | 15.2 |< 16.5 | |p | | | 154. : | | |00283 00261| +590209 |HH Oph |170601.3-265838 | | 15.6 |< 16.5 | |p | | | | | |00283 00261| +590210 |HI Oph |170611.4-282222 |L: | 15.1 |< 16.5 | |p | | | | | |00283 00261| +590211 |HK Oph |170634.1-264340 | | 14.7 | 15.7 | |p | | | | | |00283 00261| +590212 |HL Oph |170630.4-254601 | | 13.9 | 14.9 | |p | | | | | |00283 00261| +590213 |HM Oph |170659.5-282505 |M: | 15.4 |< 17.0 | |p |24610. | | 435. : | | |00262 00261| +590214 |HN Oph |170650.6-243508 | | 14.2 | 15.7 | |p | | | | | |00283 00261| +590215 |HO Oph |170701.1-281511 |SR | 14.2 | 15.5 | |p | | | 60. : | | |00262 00261| +590216 |HP Oph |170713.6-285839 |SR | 13.4 | 15.2 | |p |28780. | | 159.0 | | |00262 00261| +590217 |HQ Oph |170710.8-251402 | | 14.3 | 16.3 | |p | | | | | |00283 00261| +590218 |HR Oph |170718.3-281149 |M | 14.0 |< 17.0 | |p |26520. | | 214.8 | |Me |00262 00261| +590219 |HS Oph |170725.6-282845 |S: | 14.8 | 15.6 | |p | | | | | |00283 00261| +590220 |HT Oph |170734.8-284343 |M | 14.0 |< 16.5 | |p |24740. | | 290. | | |00271 00261| +590221 |HU Oph |170746.5-292254 |SR: | 15.5 |< 16.5 | |p | | | 77. | | |00283 00261| +590222 |HV Oph | | | | | | | | | | | | |N +590223 |HW Oph |170800.1-290803 |M: | 15.4 |< 17.0 | |p |26560. | | 121.2 | | |00262 00261| +590224 |HX Oph |170806.2-284324 |M | 14.5 |< 17.0 | |p |26920. | | 237.7 | | |00262 00261| +590225 |HY Oph |170819.7-291310 |M | 14.7 |< 17.0 | |p |26820. | | 209.2 | | |00262 00261| +590226 |HZ Oph |170822.3-290826 |M | 14.7 |< 17.0 | |p |26110. | | 348. | | |00262 00261| +590227 |II Oph |170809.2-250345 | | 14.5 | 16.4 | |p | | | | | |00283 00261| +590228 |IK Oph |170815.4-261055 |M: | 14.0 |< 16.5 | |p | | | | | |00283 00261| +590229 |IL Oph *|170826.3-280935 |SR: | 14.0 | 15.2 | |p | | | 60. : | | |00262 00261| +590230 |IM Oph |170830.1-281504 |RRC | 13.3 | 13.9 | |p |27680.230 | | 0.412531 |50 | |00262 00261| +590231 |IN Oph |170830.3-283905 |M | 14.8 |< 17.0 | |p |28660. | | 280.3 | | |00262 00261| +590232 |IO Oph |170842.9-250949 | | 14.4 | 15.4 | |p | | | | | |00283 00261| +590233 |IP Oph |170900.0-282448 |M | 14.3 |< 16.5 | |p |26850. | | 215. | | |00262 00261| +590234 |IQ Oph |170903.2-251541 | | 14.3 |< 16.5 | |p | | | | | |00283 00261| +590235 |IR Oph |170912.5-284212 |M | 14.2 |< 17.0 | |p |24750. | | 201.4 | | |00262 00261| +590236 |IS Oph |170921.6-285659 |M | 13.8 |< 17.0 | |p |28380. | | 191.8 | | |00262 00261| +590237 |IT Oph |170926.4-280652 |RR | 13.8 | 15.0 | |p |24648.690 | | | | |00262 00261| +590238 |IU Oph |170927.1-284824 |M | 14.6 |< 17.0 | |p |25390. | | 323.6 | | |00262 00261| +590239 |IV Oph |170924.9-282606 |M | 14.5 |< 17.0 | |p |26560. | | 273.2 | | |00262 00261| +590240 |IW Oph *|170935.1-263632 |M | 14.6 |< 18.0 | |B |43231. | | 138.61 | | |09429 09429| +590241 |IX Oph |170948.2-271659 |INB | 11.8 | 12.7 | |p | | | | |Fpe |00121 00261| +590242 |IY Oph |170953.1-262018 | | 14.1 | 15.1 | |p | | | | | |00283 00261| +590243 |IZ Oph |171003.9-264939 | | 14.9 |< 16.5 | |p | | | | | |00283 00261| +590244 |KK Oph |171008.1-271519 |INA | 10.99 | 12.7 | |B | | | | |B-Ae |00283 00261| +590245 |KL Oph |171017.9-275050 | | 15.7 |< 16.5 | |p | | | | | |00283 00261| +590246 |KM Oph *|171403.5-291336 |M | 14.1 | 20.0 | |B |40692. :| | 216. | | |00262 00261| +590247 |KN Oph |171406.9-295632 |RR | 15.0 |< 16.0 | |p |24710.690 | | | | |00262 00261| +590248 |KO Oph *|171432.1-254716 | | 14.7 | 16.0 | |p | | | | | |00283 00261| +590249 |KP Oph |171600.4-260126 | | 14.9 | 15.7 | |p | | | | | |00283 00261| +590250 |KQ Oph *|171612.8-282749 |SR | 13.3 | 15.2 | |p | | | 30. | | |00262 00261| +590251 |KR Oph *|171618.7-280353 |SR | 13.5 | 15.5 | |p | | | 90. : | | |00262 00261| +590252 |KS Oph |173129.8-185519 |S: | 13.0 | 14.0 | |p | | | | | |00573 06286| +590253 |KT Oph |174803.3-004106 |M | 11.5 |< 15.3 | |p |34917. | | 216.6 | | |00001 00531| +590254 |KU Oph |180504.6+024612 |M | 11.7 |< 16.3 | |p |35670. | | 382.5 | |M4IIIe |00001 00531| +590255 |KV Oph |165416.9-275641 |RR | 15.0 | 15.8 | |p | | | | | |00288 00261| +590256 |KW Oph |165428.3-293120 |RR | 14.4 | 15.3 | |p | | | | | |00288 GSC22| +590257 |KX Oph |165435.8-260509 |RR: | 14.2 | 15.3 | |p | | | | | |00288 00261| +590258 |KY Oph |165502.8-284412 |RRAB | 15.0 | 16.4 | |p |24642.760 | | 0.528077 | | |00274 GSC22| +590259 |KZ Oph |165530.6-284510 |L: | 15.5 | 16.6 | |p | | | | | |00288 USNO | +590260 |LL Oph |165534.9-275447 |E/SD: | 13.6 | 15.6 | |p | | | | | |00288 00261| +590261 |LM Oph |165600.1-290313 |M | 14.1 |< 16.5 | |p |24750. | | 289. | | |00271 GSC | +590262 |LN Oph |165558.0-265244 |M | 13.0 |< 16.5 | |p |24660. | | 279.5 | | |00271 00261| +590263 |LO Oph |165619.8-291347 |RR | 15.1 | 16.1 | |p | | | | | |00288 GSC22| +590264 |LP Oph |165648.1-292337 |RR | 15.1 | 15.8 | |p | | | | | |00288 GSC22| +590265 |LQ Oph |165651.6-293829 | | 15.9 | 16.6 | |p | | | | | |00288 GSC22| +590266 |LR Oph |165656.6-293101 |RR | 15.5 | 16.2 | |p | | | | | |00288 GSC22| +590267 |LS Oph |165700.3-300857 |RR | 15.4 | 16.2 | |p | | | | | |00288 GSC22| +590268 |LT Oph |165650.7-262151 |S: | 15.3 | 16.2 | |p | | | | | |00288 00261| +590269 |LU Oph |165700.8-283049 |RRAB | 14.6 | 16.2 | |p |24627.760 | | 0.59943 | | |00274 USNO | +590270 |LV Oph |165828.8-294102 |RRAB | 14.7 | 15.8 | |p |24646.600 | | 0.7313 | | |00289 00261| +590271 |LW Oph |165714.1-292936 |RRAB | 15.2 | 16.5 | |p |24627.670 | | 0.546897 | | |00274 GSC22| +590272 |LX Oph |165713.8-295744 |RR | 15.3 | 16.0 | |p | | | | | |00288 GSC22| +590273 |LY Oph |165716.1-265700 | | 14.2 | 15.4 | |p | | | | | |00288 00261| +590274 |LZ Oph |165725.4-292247 |RR | 15.0 | 15.5 | |p | | | | | |00288 GSC22| +590275 |MM Oph |165724.5-274015 |S: | 15.3 | 16.3 | |p | | | | | |00288 00261| +590276 |MN Oph |165723.3-255925 | | 15.9 | 16.4 | |p | | | | | |00288 00261| +590277 |MO Oph |165736.6-295228 |L: | 15.5 |< 16.5 | |p | | | | | |00288 USNO | +590278 |MP Oph |165738.4-285210 | | 15.9 |< 16.5 | |p | | | | | |00288 USNO | +590279 |MQ Oph |165754.9-292752 |RR | 15.3 | 16.0 | |p | | | | | |00288 USNO | +590280 |MR Oph |165751.7-275257 |RRAB | 15.8 | 16.6 | |p |24642.730 | | 0.4504 | | |00274 00261| +590281 |MS Oph |165801.5-295147 |RR: | 15.4 | 16.2 | |p | | | | | |00288 GSC22| +590282 |MT Oph |165814.6-293114 |L: | 15.0 |< 16.5 | |p | | | | | |00288 00261| +590283 |MU Oph |165810.4-265337 |M | 13.0 | 16.8 | |p |24720. | | 297. | | |00271 00261| +590284 |MV Oph |165808.0-253809 | | 15.5 | 16.5 | |p | | | | | |00288 00261| +590285 |MW Oph |165814.5-271559 |RRAB | 15.5 | 16.5 | |p |24646.690 | | 0.66693 : | | |00274 00261| +590286 |MX Oph |165826.3-292112 |E | 13.7 | 14.7 | |p | | | | | |00288 00261| +590287 |MY Oph |165831.5-292923 |RRAB | 15.5 | 16.6 | |p |24648.680 | | 0.4916 | | |00274 00261| +590288 |MZ Oph |165836.0-300914 | | 14.2 | 15.0 | |p | | | | | |00288 00261| +590289 |NN Oph |165838.0-293620 |RRAB | 15.3 | 16.4 | |p |24647.686 | | 0.49726 | | |00274 00261| +590290 |NO Oph |165841.6-295053 |RR | 15.6 | 16.2 | |p | | | | | |00288 00261| +590291 |NP Oph |165907.1-294450 | | 15.3 | 16.2 | |p | | | | | |00288 00261| +590292 |NQ Oph |165909.6-285828 |SR: | 15.3 | 16.7 | |p | | | | | |00288 00261| +590293 |NR Oph |165909.7-290448 |RR | 15.5 | 16.1 | |p | | | | | |00288 00261| +590294 |NS Oph |165916.4-300320 |RR | 15.1 | 15.7 | |p | | | | | |00288 00261| +590295 |NT Oph |165907.0-254422 |M: | 13.9 |< 16.5 | |p | | | | | |00288 00261| +590296 |NU Oph |165933.2-300538 | | 15.6 | 16.5 | |p | | | | | |00288 00261| +590297 |NV Oph |165930.7-275744 |M | 13.4 | 17.0 | |p |20315. | | 345. | | |00271 00261| +590298 |NW Oph |165942.0-293508 |RR | 15.5 | 16.5 | |p | | | | | |00288 00261| +590299 |NX Oph |165936.4-275930 |M: | 13.5 | 16.0 | |p | | | | |Me |00288 00261| +590300 |NY Oph |165942.1-285342 |L: | 15.1 |< 16.5 | |p | | | | | |00288 00261| +590301 |NZ Oph |165943.0-291522 |RR | 14.6 | 16.1 | |p |24656.795 | | 0.4634 | | |00274 00261| +590302 |OO Oph |165945.9-294343 | | 15.9 |< 16.5 | |p | | | | | |00288 00261| +590303 |OP Oph |165951.0-294009 |RR | 15.0 | 15.7 | |p | | | | | |00288 00261| +590304 |OQ Oph |165948.4-271122 |RR | 15.5 | 16.6 | |p | | | | | |00288 00261| +590305 |OR Oph |170000.0-300807 |E | 13.4 | 14.2 | |p | | | | | |00288 00261| +590306 |OS Oph |170005.6-291919 |RR | 15.6 | 16.5 | |p | | | | | |00288 00261| +590307 |OT Oph |170004.4-285435 |RR | 15.1 | 16.2 | |p |24646.690 | | 0.44573 | | |00274 00261| +590308 |OU Oph *|170017.1-300823 |RRAB | 15.7 | 16.5 | |p |33423.55 | | 0.54546 |18 | |09502 00261| +590309 |OV Oph |170019.8-300029 |RR | 15.2 | 15.7 | |p | | | | | |00288 00261| +590310 |OW Oph |170035.8-300924 |L: | 15.4 |< 16.5 | |p | | | | | |00288 00261| +590311 |OX Oph |170032.2-283255 |RRAB | 15.4 | 16.6 | |p |24646.695 | | 0.57106 | | |00274 00261| +590312 |OY Oph |170035.8-284504 |RRAB | 15.2 | 16.2 | |p |24642.760 | | 0.6851 | | |00274 00261| +590313 |OZ Oph |170041.9-294052 |S: | 15.0 | 15.8 | |p | | | | | |00288 00261| +590314 |PP Oph |170058.6-293407 |L: | 15.0 |< 16.5 | |p | | | | | |00288 00261| +590315 |PQ Oph |170113.4-300032 |RR | 14.4 | 15.0 | |p | | | | | |00288 00261| +590316 |PR Oph |170029.5-121549 |M | 11.2 | 14.5 | |p |25368. | | 233. | |Me |00266 00550| +590317 |PS Oph |170113.0-283931 |RRAB | 14.4 | 15.8 | |p |24655.785 | | 0.49967 | | |00274 00261| +590318 |PT Oph |170106.7-253505 | | 15.5 | 16.5 | |p | | | | | |00288 00261| +590319 |PU Oph *|170124.7-300632 |RRAB | 16.0 | 17.4 | |p |33423.44 | | 0.56546 |10 | |09502 00261| +590320 |PV Oph |170122.5-292049 | | 15.5 |< 16.5 | |p | | | | | |00288 00261| +590321 |PW Oph |170114.4-254238 | | 15.7 |< 16.5 | |p | | | | | |00288 00261| +590322 |PX Oph |170135.2-300107 |RRAB | 15.5 | 16.6 | |p |24649.680 | | 0.56596 | | |00274 00261| +590323 |PY Oph |170129.0-283531 |RR | 15.5 | 16.1 | |p | | | | | |00288 00261| +590324 |PZ Oph |170152.3-290518 |RRC | 15.4 | 16.2 | |p |24653.770 | | 0.4212 | | |00274 00261| +590325 |QQ Oph |170151.1-294411 |RRAB | 15.2 | 16.2 | |p |24654.750 | | 0.6092 | | |00274 00261| +590326 |QR Oph |170155.6-284438 |E/SD: | 13.6 | 15.0 | |p | | | | | |00288 00261| +590327 |QS Oph |170201.2-273046 |RRAB | 15.4 | 16.6 | |p |24678.685 | | 0.47897 | | |00274 00261| +590328 |QT Oph |170208.6-285913 |L: | 15.5 |< 16.5 | |p | | | | | |00288 00261| +590329 |QU Oph |170211.4-284747 | | 15.9 |< 16.5 | |p | | | | | |00288 00261| +590330 |QV Oph |170224.4-284948 |L: | 15.2 |< 16.5 | |p | | | | | |00288 00261| +590331 |QW Oph |170226.9-261221 | | 14.9 | 16.0 | |p | | | | | |00288 00261| +590332 |QX Oph |170240.8-292311 |L: | 15.5 |< 16.5 | |p | | | | | |00288 00261| +590333 |QY Oph |170246.8-290358 | | 15.5 |< 16.5 | |p | | | | | |00288 00261| +590334 |QZ Oph |170257.9-284236 | | 15.2 | 16.1 | |p | | | | | |00288 00261| +590335 |V0335 Oph |170301.7-291605 |RR | 15.5 | 16.2 | |p | | | | | |00288 00261| +590336 |V0336 Oph |170304.0-295221 |RR | 15.4 | 16.0 | |p | | | | | |00288 00261| +590337 |V0337 Oph |170309.5-292339 |L: | 15.5 |< 16.5 | |p | | | | | |00288 00261| +590338 |V0338 Oph |170311.4-290027 |L: | 16.0 |< 16.5 | |p | | | | | |00288 00261| +590339 |V0339 Oph |170310.6-274026 |M: | 14.5 |< 16.5 | |p | | | | | |00288 00261| +590340 |V0340 Oph |170323.5-292854 |RRAB | 15.2 | 16.3 | |p |24670.680 | | 0.54482 | | |00274 00261| +590341 |V0341 Oph |170334.4-283559 | | 15.6 |< 16.5 | |p | | | | | |00288 00261| +590342 |V0342 Oph |170341.8-261224 | | 15.0 | 15.7 | |p | | | | | |00288 00261| +590343 |V0343 Oph |170435.9-293806 | | 15.6 | 16.5 | |p | | | | | |00288 00261| +590344 |V0344 Oph |170445.1-290605 |RRAB | 15.5 | 16.6 | |p |24642.810 | | 0.51606 | | |00274 00261| +590345 |V0345 Oph |170507.5-273828 |L: | 15.5 |< 16.5 | |p | | | | | |00288 00261| +590346 |V0346 Oph |170514.9-285218 |RR | 14.7 | 15.4 | |p | | | | | |00288 00261| +590347 |V0347 Oph |170529.2-300258 |L: | 15.8 |< 16.5 | |p | | | | | |00288 00261| +590348 |V0348 Oph |170537.1-291529 |L: | 14.7 |< 16.0 | |p | | | | | |00288 00261| +590349 |V0349 Oph |170542.0-294010 |RR | 14.5 | 15.1 | |p | | | | | |00288 00261| +590350 |V0350 Oph |170612.8-282620 | | 15.2 |< 16.5 | |p | | | | | |00288 00261| +590351 |V0351 Oph |170621.7-294413 |SR: | 16.0 |< 16.5 | |p | | | 110. : | | |00262 00261| +590352 |V0352 Oph |170638.7-252631 | | 14.9 | 16.5 | |p | | | | | |00288 00261| +590353 |V0353 Oph |170645.3-270057 | | 15.3 | 16.3 | |p | | | | | |00288 00261| +590354 |V0354 Oph |170704.0-274839 | | 14.3 | 15.0 | |p | | | | | |00288 00261| +590355 |V0355 Oph |170659.6-243351 | | 15.4 |< 16.5 | |p | | | | | |00288 00261| +590356 |V0356 Oph |170810.1-285604 |RRAB | 14.9 | 16.3 | |p |26508.480 | | 0.445355 |12 | |00262 00261| +590357 |V0357 Oph |170845.4-290207 |M | 14.9 |< 17.0 | |p |26140. | | 277.7 | | |00262 00261| +590358 |V0358 Oph |170851.1-282810 |SR: | 14.3 |< 15.0 | |p | | | 107. : | | |00262 00261| +590359 |V0359 Oph |170854.3-271233 |S: | 14.0 | 15.1 | |p | | | | | |00288 00261| +590360 |V0360 Oph |170857.3-263736 |S: | 14.5 | 15.5 | |p | | | | | |00288 00261| +590361 |V0361 Oph |170859.5-275400 | | 15.5 |< 16.5 | |p | | | | | |00288 00261| +590362 |V0362 Oph |170939.6-284559 |M | 15.0 |< 18.0 | |p |26510. | | 248. | | |00262 00261| +590363 |V0363 Oph |170958.2-280325 |M: | 16.0 |< 17.0 | |p | | | 270. : | | |00262 00261| +590364 |V0364 Oph |171111.3-293102 |SR: | 15.5 |< 16.5 | |p |26580. | | 120. | | |00262 00261| +590365 |V0365 Oph |171232.7-284434 |RRAB | 14.8 | 16.1 | |p |26091.500 | | 0.601685 |14 | |00262 00261| +590366 |V0366 Oph |163816.7-070611 |M | 14.4 |< 16.5 | |p |27950. | | 298. : | | |00278 06286| +590367 |V0367 Oph |163943.0-054626 |M | 12.4 | 16.2 | |p |28050. | | 268. | |Me |00278 06286| +590368 |V0368 Oph |165906.9+012149 | | 13.3 | 14.5 | |p | | | | | |01330 GSC | +590369 |V0369 Oph |170108.7+013313 | | 12.0 | 13.0 | |p | | | | |M |01330 06286| +590370 |V0370 Oph |170250.6+014515 |RRAB | 14.0 | 15.3 | |p |37135.347 | | 0.5694273 |13 | |07806 06286| +590371 |V0371 Oph |170359.6+011424 |SR: | 13. | 15.5 | |p |26890. | | 68. | | |00423 06286| +590372 |V0372 Oph |170413.0+015335 |M | 12.5 | 15.5 | |p |27160. | | 148. | | |00147 06286| +590373 |V0373 Oph |171316.1+002928 |M | 13.5 |< 16. | |p | | | 281. : | | |00423 06286| +590374 |V0374 Oph |174019.6+122409 |M | 12. |< 16. | |p |35662. | | 214.25 | | |00001 06286| +590375 |V0375 Oph |174302.8+013537 |M: | 13.8 |< 15.7 | |p |25801. | | 242. | | |00401 00531| +590376 |V0376 Oph |174427.5+004911 |M | 13.1 |< 16.5 | |p |25490. | | 314. | | |00432 00531| +590377 |V0377 Oph |174651.2+005608 |M | 13.1 |< 16.0 | |p |25879. | | 202. | | |00401 00531| +590378 |V0378 Oph *|174904.8+050032 |EB/DS | 13.8 | 15.8 | 14.2 |p |27664. | | 70.8 | | |00452 00531| +590379 |V0379 Oph |174949.2+031715 |M | 12.6 |< 16.1 | |p |26473. | | 221.5 | | |00401 00531| +590380 |V0380 Oph *|175013.6+060529 |NL: | 14.5 |< 16.1 | |p | | | | | |09430 00531| +590381 |V0381 Oph |175100.7+064611 |M | 12.7 | 18.5 | |p |34236. | | 229.85 | | |00001 00531| +590382 |V0382 Oph |175105.5+053653 |M | 14.7 | 19. | |p |25763. | | 240. | | |00401 00531| +590383 |V0383 Oph |175317.6+070248 |M | 14.5 | 19. | |p |25881. | | 220. | | |00401 00531| +590384 |V0384 Oph |175354.9+000005 |M | 13.6 | 18.5 | |p |26418. | | 206. | | |00401 00531| +590385 |V0385 Oph |175426.5-010025 |M | 13.7 |< 15.6 | |p |25365. | | 232. | | |00401 00531| +590386 |V0386 Oph |175420.5+015913 |L | 13.0 | 14.0 | |p | | | | | |00453 00531| +590387 |V0387 Oph |175442.4+015206 |M | 14.2 |< 16.2 | |p |25880. | | 176. | | |00401 00531| +590388 |V0388 Oph |175606.4+024343 |L | 13.8 | 14.5 | |p | | | | | |00432 00531| +590389 |V0389 Oph |175653.0+055213 |M | 11.3 |< 16.0 | |p |36381. | | 315.1 | | |00001 00531| +590390 |V0390 Oph |175756.3+031642 |M | 14.4 | 19. | |p |25848. | | 280. | | |00401 00531| +590391 |V0391 Oph *|175809.1+043928 |EA/SD | 11.5 | 15. | |p |45518.546 | | 2.895550 | |A1+G5 |00001 00531| +590392 |V0392 Oph *|175834.3+014208 |IS | 14.7 | 15.7 | |p | | | | | |00082 00531| +590393 |V0393 Oph |175930.3+031712 |L | 13.6 | 15.1 | |p | | | | | |00432 00531| +590394 |V0394 Oph |175945.3+013817 |SR | 13.2 | 14.7 | |p |25497. | | 204. | | |00401 00531| +590395 |V0395 Oph |175947.2+040401 |M | 12.1 | 15.0 | |p |26505. | | 110. | | |00401 00531| +590396 |V0396 Oph |175956.4+031611 |SR | 14.0 | 15.0 | |p |25170. | | 67. | | |00432 00531| +590397 |V0397 Oph |175949.5+122347 | | 14. | 16.0 | |p | | | | | |01330 06286| +590398 |V0398 Oph |180015.9+065407 |M | 12.8 |< 16.0 | |p |33878. | | 210.3 | | |00001 00531| +590399 |V0399 Oph |180007.1+130255 | | 13.8 | 16.0 | |p | | | | | |01330 GSC | +590400 |V0400 Oph |180457.3+062945 |M | 13.7 |< 16.2 | |p |25390. | | 341. | | |00401 00531| +590401 |V0401 Oph |180629.3+015413 |M | 14.0 |< 16.1 | |p |25123. | | 280. | | |00401 00531| +590402 |V0402 Oph *|181106.1+010331 |SR | 12.8 | 15.6 | |p |26484. | | 136. | | |00401 00531| +590403 |V0403 Oph |181240.4+050138 |SR | 14.8 |< 15.9 | |p |26473. | | 163. | | |00401 00531| +590404 |V0404 Oph |181414.2+023253 |M | 15.4 | 18.5 | |p |26160. | | 100. | | |00401 GSC | +590405 |V0405 Oph |181459.0+044825 |M | 12.5 | 17.5 | |p |25806. | | 340. | | |00401 00531| +590406 |V0406 Oph |181455.1+103508 | | 13.2 |< 16. | |p | | | | | |01330 06286| +590407 |V0407 Oph |181503.7+021836 |M: | 14.1 |< 15.6 | |p |25861. | | 280. | | |00401 00531| +590408 |V0408 Oph |181933.9+105409 |RR: | 12.7 | 14.3 | |p |35226.531 | | | |F5 |08656 08656| +590409 |V0409 Oph |182001.9+101317 |M | 12.8 | 16. | |p | | | | | |00464 USNO | +590410 |V0410 Oph |182249.9+104229 | | 14.0 |< 16. | |p | | | | | |01330 USNO | +590411 |V0411 Oph |183102.6+094011 |M | 12.3 | 17.2 | |p |26103. | | 227. |37 |M4 |00447 GSC22| +590412 |V0412 Oph |183436.9+113901 |M | 12.3 | 20. | |p |26918. | | 318.5 | | |00447 USNO | +590413 |V0413 Oph *|162511.0-103126 |RRAB | 11.9 | 12.8 | |p |29609.8869 | | 0.44900586 |16 |F6 |05692 00132| +590414 |V0414 Oph *|180043.5+005522 |RRAB | 13.71 | 15.08 | |V |38228.845 | | 0.431284 : |11 | |05375 00133| +590415 |V0415 Oph |180104.0+011123 |EA: | 14.6 | 15.4 | |p |34890.415 | | | | |03165 00133| +590416 |V0416 Oph |180107.5+033302 |M | 14.0 |< 16.1 | |p |26870. | | 152. | | |00401 00133| +590417 |V0417 Oph |180131.3+010001 |M: | 14.4 |< 15.9 | |p |25438. | | 264. | | |00401 00133| +590418 |V0418 Oph |180248.1+025229 |SR | 13.8 | 15.5 | |p |25398. | | 106. | | |00432 00133| +590419 |V0419 Oph |180303.6+032455 |LB | 14.4 | 15.4 | |p | | | | | |00453 00133| +590420 |V0420 Oph |180429.6+072321 |M | 14.3 | 20. | |p |25505. | | 435. | | |00432 00133| +590421 |V0421 Oph |180503.6+070115 |M | 13.3 |< 15.5 | |p |25881. | | 337. | |M7III |00401 00133| +590422 |V0422 Oph |180525.9+051312 |M | 11.5 |< 16.5 | |p |26087. | | 213. | | |00401 00133| +590423 |V0423 Oph *|180616.5+003331 |EA/SD: | 11. | 12. | |p |27236.459 | | 1.203786 | | |00465 00133| +590424 |V0424 Oph |180707.1+013638 |M | 14.5 | 20. | |p |25498. | | 273. | | |00401 00133| +590425 |V0425 Oph |180726.9+065906 |M: | 14.1 |< 15.6 | |p |25511. | | 273. | | |00401 00133| +590426 |V0426 Oph *|180751.7+055148 |NL | 11.6 | 13.4 | |B | | | | |pec(e+cont) |09434 09472| +590427 |V0427 Oph |180822.5+015458 |M: | 14.0 |< 15.8 | |p |26421. | | 225. | | |00147 00133| +590428 |V0428 Oph |181004.3+025953 |SRA | 13.8 | 15.3 | |p |25020. | | 278. | | |00432 00133| +590429 |V0429 Oph |181022.2+053507 |SR | 15.1 | 16.2 | |p |25308. | | 130. |42 | |00432 00133| +590430 |V0430 Oph |181029.9+035039 |RRAB | 13.4 | 14.6 | |p |29428.47 | | 0.700958 |15 | |00453 00133| +590431 |V0431 Oph |181123.4+065539 |M | 14.7 | 20. | |p |25433. | | 310. | | |00432 00133| +590432 |V0432 Oph |181339.9+062630 |CST | 14.7 | | |p | | | | | |00453 00133| +590433 |V0433 Oph |181416.8+051320 |SR | 14.1 | 16.2 | |p |25500. | | 189. | | |00401 00133| +590434 |V0434 Oph |181719.9+024216 |M | 13.6 | 18. | |p |25500. | | 290. | | |00401 00133| +590435 |V0435 Oph |181725.1+032129 |LB | 13.3 | 13.8 | |p | | | | | |00453 00133| +590436 |V0436 Oph |181748.3+033958 |M | 13.6 | 19. | |p |26485. | | 250. | | |00401 00133| +590437 |V0437 Oph |181750.0+035834 |M: | 14.5 |< 16.2 | |p |25406. | | 223. | | |00401 00133| +590438 |V0438 Oph *|171439.8+110410 |SRB | 9.3 | 11.6 | |p |37130. | | 169.9 |42 |M0-M7e |09484 09436| +590439 |V0439 Oph *|174333.3+033536 |CWB | 11.73 | 12.70 | |V |38943.002 | | 1.892980 |39 | |00001 03485| +590440 |V0440 Oph |165928.2+121946 |M | 11. |< 16. | |p |27861. | | 276.9 | | |01000 06286| +590441 |V0441 Oph |172052.7-172005 |EA/SD | 11.6 | 15.5 | |p |35663.821 | | 3.058545 |15 |A0 |00001 00279| +590442 |V0442 Oph *|173215.2-161522 |NL: | 13.45 | 13.75 | |V | | | | |pec(e) | 09472| +590443 |V0443 Oph |173526.8-181503 | | 13.3 |< 14.1 | |p | | | | | |00467 00467| +590444 |V0444 Oph |181935.7+102503 |M | 14. |< 16. | |p | | | | | |00464 UCAC2| +590445 |V0445 Oph *|162441.2-063230 |RRAB | 10.53 | 11.39 | |V |27543.547 | | 0.3970227 |18 |A9-F6 |07114 00190| +590446 |V0446 Oph |164639.1-113853 |SR: | 13.3 |< 14.2 | |p |27225. | | 341. | |M8 |00294 00294| +590447 |V0447 Oph |171158.0+082011 |SRB: | 9.5 | 13.5 | |p |30257. | | 21. : | |M4IIIe |02563 00158| +590448 |V0448 Oph |171520.8-180657 |EA/SD | 12.2 | 13.8 | |p | | | 6.086 | | |90055 10055| +590449 |V0449 Oph *|173042.5+103503 |EA/SD | 11.5 | 13.3 | |V |42959.604 | | 1.243075 |17 | |00001 00158| +590450 |V0450 Oph |182023.7+123944 |M | 10.9 | 14.1 | |V |40464. | | 158.3 | | |00001 00470| +590451 |V0451 Oph *|182914.0+105331 |EA/DM | 7.94 |( 0.60 )| 11.9 |B |44834.365 | | 2.19659616 |12 *|B9V+A2 |00001 08953| +590452 |V0452 Oph *|171759.6+110427 |RRAB | 11.68 | 12.63 | |V |36657.675 | | 0.5571623 |13 |F5 |00001 00470| +590453 |V0453 Oph |172649.1-022336 |RVA | 10.40 | 11.53 | |V |37505. | | 81.300 | |Fp |09437 06286| +590454 |V0454 Oph |181333.2+122804 |SR | 11.1 | 12.3 | |p |25655. | | 655. |44 |M4 |00474 00554| +590455 |V0455 Oph *|181518.5+122109 |RRAB | 11.6 | 12.5 | |p |41833.389 | | 0.45391060 |20 |A7 |00001 00470| +590456 |V0456 Oph *|184305.8+085023 |EA/DM | 10.2 | 10.7 | 10.5 |p |41897.532 | | 1.0159996 |20 *|A5: |09438 08953| +590457 |V0457 Oph |174714.1+030439 |M | 12.9 | 16.1 | |p |25410. | | 190. | | |00401 02312| +590458 |V0458 Oph |174737.2+013238 |SR | 13.6 | 15.4 | |p |26485. | | 130. | | |00401 02312| +590459 |V0459 Oph |174847.2+015948 |M | 13.7 |< 16.0 | |p |25885. | | 363. | | |00401 02312| +590460 |V0460 Oph |174924.8-000307 |SR | 14.3 | 16.2 | |p |25282. | | 132. |45 | |00432 02312| +590461 |V0461 Oph |175115.7+004324 |SR | 14.6 | 16.3 | |p |25412. | | 128. | | |00401 02312| +590462 |V0462 Oph |175108.7+025108 |M | 14.0 |< 16.0 | |p |26176. | | 324. | | |00401 02312| +590463 |V0463 Oph |175137.9-013222 |M: | 14.2 |< 15.9 | |p |25765. | | 230. | | |00432 02312| +590464 |V0464 Oph |175142.2+050526 |L | 14.1 | 14.8 | |p | | | | | |00432 02312| +590465 |V0465 Oph *|175207.5-010508 |CWB | 12.92 | 14.01 | |V |42272.57 | | 2.84459 |28 | |00432 02312| +590466 |V0466 Oph |175207.2+045244 |L | 13.8 | 14.6 | |p | | | | | |00432 02313| +590467 |V0467 Oph |175317.0-002808 |SR: | 14.9 |< 16.0 | |p |25785. | | 195. | | |00432 02313| +590468 |V0468 Oph |175402.0+061845 |L | 14.5 | 15.7 | |p | | | | | |00432 02313| +590469 |V0469 Oph |175443.0+004716 |L | 14.5 | 15.3 | |p | | | | | |00432 02313| +590470 |V0470 Oph |175440.1+005609 |L | 13.6 | 14.1 | |p | | | | | |00432 02313| +590471 |V0471 Oph *|175528.8+021832 |LB: | 14.2 |< 16.3 | |p | | | | | |00453 02313| +590472 |V0472 Oph |175547.2+005639 |SR | 12.7 | 14.0 | |p |25370. | | 100. | | |00432 02313| +590473 |V0473 Oph |175653.1+032212 |SR | 14.3 | 15.1 | |p |25430. | | 200. | | |00432 02313| +590474 |V0474 Oph |175755.7+005823 |L | 13.6 | 14.1 | |p | | | | | |00432 02313| +590475 |V0475 Oph |175824.7+040905 |M: | 14.5 |< 16.3 | |p |25165. | | 235. | | |00432 02313| +590476 |V0476 Oph |175822.6+033718 |L | 14.5 | 15.1 | |p | | | | | |00432 02313| +590477 |V0477 Oph |175908.2+053826 |CWB | 13.3 | 14.1 | |V |41981.114 | | 2.01566917 |13 | |08195 02313| +590478 |V0478 Oph *|175939.0+004709 |CWA | 12.53 | 13.50 | |V |44162.71 | | 16.3500 |50 | |00001 02313| +590479 |V0479 Oph |180004.1+060717 |LB | 12.7 | 13.9 | |p | | | | |M5 |00432 02313| +590480 |V0480 Oph |180032.4+010853 |L | 13.9 | 14.6 | |p | | | | | |00432 02313| +590481 |V0481 Oph |180054.5+021938 |L | 14.7 | 15.3 | |p | | | | | |00432 02313| +590482 |V0482 Oph |180107.0+004145 |LB | 13.3 | 14.0 | |p | | | | |M6 |00432 02313| +590483 |V0483 Oph |180119.6+025802 |M | 15.1 | 20. | |p |25298. | | 294. | | |00401 02313| +590484 |V0484 Oph |180206.8+070334 |SR | 13.6 | 15.4 | |p |25328. | | 185. | | |00401 02313| +590485 |V0485 Oph |180212.5+050251 |L | 14.4 | 14.7 | |p | | | | | |00453 02313| +590486 |V0486 Oph |180227.5+042802 |L | 14.5 | 15.4 | |p | | | | | |00432 02313| +590487 |V0487 Oph *|180233.7+014748 |EA/SD | 12.8 | 14.1 | |p |44486.334 | | 3.135973 | | |00001 02313| +590488 |V0488 Oph |180246.9+041810 |SR | 13.0 | 14.7 | |p |25366. | | 72. | | |00401 02313| +590489 |V0489 Oph |180301.9+045846 |M: | 15.6 |< 16.3 | |p |26215. | | 446. | | |00401 02313| +590490 |V0490 Oph |180333.0+042832 |L | 14.2 | 14.7 | |p | | | | | |00432 02313| +590491 |V0491 Oph |180431.4+032352 |L | 14.5 | 14.9 | |p | | | | | |00432 02313| +590492 |V0492 Oph |180523.8+025636 |M | 14.7 | 20. | |p |26450. | | 190. | | |00401 02313| +590493 |V0493 Oph |180658.8+053146 |L | 14.5 | 15.3 | |p | | | | | |00432 02313| +590494 |V0494 Oph |180822.2+031205 |L | 13.7 | 14.4 | |p | | | | | |00432 02314| +590495 |V0495 Oph |180904.5+032930 |SR | 14.8 | 16.1 | |p |25700. | | 287. | | |00401 02314| +590496 |V0496 Oph *|181014.6+030842 |E/SD | 14.3 | 15.7 | |p |25442.405 | | 2.576225 |14 : | |00432 02314| +590497 |V0497 Oph |181056.3+031302 |L | 15.0 | 15.7 | |p | | | | | |00432 02314| +590498 |V0498 Oph |181544.1+000521 |LB | 12.5 | 14.0 | |p | | | | |M4 |00432 02314| +590499 |V0499 Oph |181648.6+022641 |M | 14.5 |< 16.6 | |p |25727. | | 142. | | |00401 02314| +590500 |V0500 Oph |181759.5+021553 |M | 14.2 |< 16.3 | |p |26868. | | 320. | | |00401 02314| +590501 |V0501 Oph *|181835.6+141343 |EA/SD: | 10.9 | 11.8 | 11.1 |V |30911.395 | | 0.9679504 |22 *|A5 |03658 00470| +590502 |V0502 Oph *|164120.9+003027 |EW/KW | 8.34 | 8.84 | 8.81 |V |41174.2288 | | 0.45339345 | |G2V+F9V |07576 08953| +590503 |V0503 Oph |165236.1-052728 |SR | 12.0 | 14.5 | |p |20635.5 | | 84.2 | |M3e |00455 06286| +590504 |V0504 Oph |165306.8-045544 |M | 11.5 |< 15. | |p |19560. | | 206. | |M4IIIe |00455 06286| +590505 |V0505 Oph |171505.2-095709 |M | 13.0 |< 14.3 | |p |24740. | | 322. | |M7e |00477 00552| +590506 |V0506 Oph *|174104.2+074704 |EB/DM | 11.2 | 12.0 | 12.0 |p |42957.979 | | 1.0604262 | |A-F |00001 00553| +590507 |V0507 Oph |174352.6-022521 |SRB | 12.6 |< 15.1 | |p | | | 116. : | | |06997 00552| +590508 |V0508 Oph *|175848.6+132946 |EW/KW | 10.06 | 10.69 | 10.59 |V |45082.5430 | | 0.344792129 | |G5 |00001 00279| +590509 |V0509 Oph *|180003.2+032720 |EA/SD | 12.6 | 13.8 | |V |25123.345 | | 1.2234565 |15 *| |00453 00531| +590510 |V0510 Oph |180608.5+024823 |SRB | 12.3 | 13.2 | |p |25318. | | 103. | | |00453 00133| +590511 |V0511 Oph *|180819.3+022531 |EA/SD | 13.4 | 15.2 | 13.7 |p |45550.406 | | 1.0657018 |15 *| |00001 02314| +590512 |V0512 Oph |181104.0+113015 |L: | 13.5 | 15.5 | |p | | | | | |00464 00533| +590513 |V0513 Oph |181400.9+051811 |SRB | 9.6 | 11.3 | |V | | | 61.5 | |M5 |08044 BD | +590514 |V0514 Oph |183304.3+082738 |M | 12.4 | 19. : | |p |25763. | | 260. | | |00447 02326| +590515 |V0515 Oph *|183933.1+115039 |SRB | 11.7 | 13.5 | |p |27924. | | 304. | |M5 |00447 02327| +590516 |V0516 Oph *|171346.4-290348 |M | 14.3 |< 17.0 | |p |26500. | | 201.5 | | |00262 00261| +590517 |V0517 Oph *|171519.7-290537 |LB | 12.6 | 20.3 | |B | | | | |C(R0) |00262 00262| +590518 |V0518 Oph |171933.8-292019 |SR: | 15.3 |< 17.0 | |p |26150. | | 307. : | | |00262 09510| +590519 |V0519 Oph |171940.3-285325 |SR: | 15.8 |< 17.0 | |p |26830. | | 260.5 | | |00262 00262| +590520 |V0520 Oph |172252.9-291243 |SRA | 11.0 | 12.6 | |p |28345. | | 117. | |M5e |00262 00262| +590521 |V0521 Oph *|172348.9-282848 |SRB | 10.6 | 12.0 | |p | | | 320. | |S5,4(M4) |00262 00262| +590522 |V0522 Oph |172421.2-292411 |I | 14.6 | 15.5 | |p | | | | | |00262 00262| +590523 |V0523 Oph |172620.5-291944 |I | 14.8 |< 16.0 | |p | | | | | |00262 00262| +590524 |V0524 Oph |172948.7-285731 |RRC | 13.0 | 13.8 | |p |28778.270 | | 0.308926 |30 | |00262 00262| +590525 |V0525 Oph |173206.4-300055 |LB | 13.2 | 14.0 | |p | | | | | |00262 00262| +590526 |V0526 Oph *|173252.7-283821 |EA/DM | 13.2 | 13.8 | 13.6 |p |28096.20 | | 3.48975 |09 *| |00296 00296| +590527 |V0527 Oph *|173359.5-294947 |EA/KE | 14.4 | 15.4 | 14.8 |p |28346.504 | | 0.774704 |18 *| |00296 00296| +590528 |V0528 Oph |173711.5-295022 |EA/SD | 12.6 | 13.7 | |p |28401.291 | | 2.705555 |09 *| |00296 00296| +590529 |V0529 Oph |174156.6-281810 |EA/DS | 13.2 |< 16.5 | |p |24732.800 | | 27.8485 |05 | |00262 00262| +590530 |V0530 Oph |175202.7+043725 |RRAB | 13.4 | 14.6 | |p |29431.450 | | 0.399541 |23 | |00453 02312| +590531 |V0531 Oph |175440.9+061034 |RRAB | 13.4 | 14.4 | |p |29438.494 | | 0.553653 |14 | |00453 02313| +590532 |V0532 Oph *|173242.6-215141 |EA:/GS | 12.6 |< 15.5 | |p |25370. | | | | |00478 00478| +590533 |V0533 Oph *|175303.3-023446 |SR: | 8.3 | 9.3 | |p |41169. | | | |M6 |08837 08953| +590534 |V0534 Oph *|172949.7-282415 |EA/SD | 13.1 | 14.8 | |p |28420.341 | | 3.068414 |10 | |00296 00296| +590535 |V0535 Oph *|173210.2-292600 |EA/SD | 11.3 | 13.6 | |p |27959.505 | | 6.055259 |08 |A3 |00478 00478| +590536 |V0536 Oph *|173241.1-231721 |EA/SD | 14.8 |< 16.0 | |p |28392.32 | | 3.69039 |07 | |00478 00478| +590537 |V0537 Oph *|173336.9-282010 |EA | 12.5 | 12.8 | 12.8 |p |29396.475 | | 1.14718 |15 | |00478 00478| +590538 |V0538 Oph |173436.0-222635 |M | 14.5 |< 17.0 | |p |29050. | | 257.7 | | |00478 00478| +590539 |V0539 Oph |184522.6+072245 |M | 16.4 | 18.5 | |p |25754. | | 201. | | |00480 02328| +590540 |V0540 Oph *|173736.2-262948 |EA/SD | 13.3 | 14.7 | 13.4 |p |28361.395 | | 1.446590 |15 | |00296 00296| +590541 |V0541 Oph *|173735.4-234905 |CWA | 14.0 | 15.6 | |p |44151.07 | | 29.533 |25 | |00478 00478| +590542 |V0542 Oph |173750.7-281510 |EA/SD: | 12.8 | 13.3 | |p |26923.390 | | 0.561309 |26 | |00478 00478| +590543 |V0543 Oph *|173924.1-271946 |EA/SD: | 13.4 | 14.0 | 13.6 |p |29161.25 | | 2.84885 |07 | |00478 00478| +590544 |V0544 Oph |173945.2-244242 |M | 14.0 |< 17.0 | |p |29360. | | 253.8 | | |00478 00478| +590545 |V0545 Oph |173946.0-232123 |M | 14.0 |< 17.0 | |p |26505. | | 223. | | |00478 00478| +590546 |V0546 Oph |174003.1-281445 |EA/SD | 13.7 | 15.2 | |p |28344.334 | | 4.83046 |11 *| |00296 00296| +590547 |V0547 Oph |174014.2-231617 |M | 14.6 |< 17.0 | |p |29370. | | 166.4 | | |00478 00478| +590548 |V0548 Oph |174019.2-244149 |LB: | 14.5 | 16.0 | |p | | | | |M7 |00478 00478| +590549 |V0549 Oph *|174048.8-280447 |EA | 13.5 | 14.0 | 14.0 |p |27903.53 | | 1.343804 |10 | |00478 00478| +590550 |V0550 Oph *|174052.6-273535 |EB/SD: | 12.9 | 13.5 | 13.0 |p |29458.27 | | 0.569383 | | |00478 00478| +590551 |V0551 Oph |174052.4-272345 |LB | 10.1 |( 0.4 )| |B | | | | |M2 |00478 00478| +590552 |V0552 Oph |174245.0-282552 |LB | 10.6 | 11.3 | |p | | | | |M0 |00478 00478| +590553 |V0553 Oph |174253.5-245126 |NA | 11.0 : |< 16.5 | |p |29830. :|1940 | | | |00481 | +590554 |V0554 Oph *|174251.4-213012 |CWA | 12.63 | 13.83 | |V |44020.97 | | 14.8635 |32 | |00001 00478| +590555 |V0555 Oph *|174214.3+052358 |RRAB | 13.9 | 15.4 | |p |25436.450 | | 0.4382696 |14 | |00453 02312| +590556 |V0556 Oph |174336.0-262436 |LB | 13.8 | 15.5 | |p | | | | | |00478 00478| +590557 |V0557 Oph *|174504.7+064138 |EB/KE | 15.1 | 16.1 | 15.7 |p |45028.682 | | 1.1978210 | | |00001 02312| +590558 |V0558 Oph *|174543.0+022746 |RRC | 12.73 | 13.23 | |V |37471.825 | | 0.4258340 |46 | |00001 02365| +590559 |V0559 Oph |174712.7+032021 |L | 14.0 | 14.5 | |p | | | | | |00453 02312| +590560 |V0560 Oph |174852.7-011353 |SR: | 15.2 |< 16.4 | |p |25715. | | 155.8 | | |00453 02312| +590561 |V0561 Oph |174846.8+033519 |LB | 10.5 | 11.5 | |p | | | | |M6 |00453 08953| +590562 |V0562 Oph |174900.4+023827 |L | 14.6 | 15.3 | |p | | | | | |00453 02312| +590563 |V0563 Oph |174929.3+031923 |RRAB | 14.4 | 16.1 | |p |25413.438 | | 0.5113130 |15 | |00453 02312| +590564 |V0564 Oph *|175201.3+075629 |SRD | 9.42 | 10.91 | |V |37520. | | 70.325 | |G8-K2(M2) |07515 00351| +590565 |V0565 Oph *|175542.3+055211 |RRAB | 13.9 | 15.2 | |p |25302.675 | | 0.395392 |13 : | |00453 02313| +590566 |V0566 Oph *|175652.4+045915 |EW/KW | 7.46 | 7.96 | 7.89 |V |41835.8617 | | 0.40964569 | |F4V |08286 05288| +590567 |V0567 Oph *|175827.2+010605 |DSCT | 11.07 | 11.43 | |V |38592.4048 | | 0.149521 |40 |A7-F3 |06594 06593| +590568 |V0568 Oph *|175944.1+045956 |SR | 14.1 | 15.6 | |p |29110. | | 260. : | | |00001 02365| +590569 |V0569 Oph |180031.1+053659 |SRB | 11.8 | 13.2 | |p |25400. | | 161. | |M |00453 02365| +590570 |V0570 Oph *|180122.6+040229 |RRAB | 14.9 | 15.7 | |B |42873.598 | | 0.574851 |30 | |09441 09441| +590571 |V0571 Oph |180254.5+013842 |M: | 15.5 |< 17.0 | |p |25157. | | 343. | | |00453 02365| +590572 |V0572 Oph *|180418.3+020619 |EA/SD | 15.4 | 16.6 | |p |25502.34 | | 2.43056 |12 | |00453 02365| +590573 |V0573 Oph *|180605.4+020544 |EA/SD | 13.1 | 16.1 | |p |25007.70 | | 4.35228 |11 | |00453 02365| +590574 |V0574 Oph *|180615.5+032409 |SRA | 9.9 | 11.0 | |p |25513. | | 71.5 | |M4 |00453 08953| +590575 |V0575 Oph |180851.2+033153 |ISB | 14.0 | 14.6 | |p | | | | |F5 |08656 02314| +590576 |V0576 Oph |181004.1+050845 |LB | 14.5 | 15.4 | |p | | | | | |00453 00133| +590577 |V0577 Oph *|181645.9+065418 |EA/DM | 11.36 | 12.00 | 10.5 |B |42652.332 | | 6.079096 |03 *|A |00001 09442| +590578 |V0578 Oph |182517.8+113751 |M | 12.4 | 17.5 | |p |25717. | | 180. |46 | |00447 00554| +590579 |V0579 Oph |182532.3+074521 |L | 13.0 | 13.7 | |p | | | | | |00447 02325| +590580 |V0580 Oph *|182538.1+073637 |SR | 15.1 | 16.3 | |p |29430. | | 260. | | |00447 02325| +590581 |V0581 Oph |182539.5+084505 |RV | 13.8 | 16.4 | |p |29120. | | 352. | | |00447 02325| +590582 |V0582 Oph |182640.6+074543 |RRAB | 14.9 | 16.4 | |p |25718.579 | | 0.4462812 |12 | |00447 02325| +590583 |V0583 Oph |182642.5+070328 |L | 14.3 | 15.9 | |p | | | | | |00447 02325| +590584 |V0584 Oph |182658.7+101231 |M | 13.1 |< 17. | |p |27292. | | 276. | | |00447 02325| +590585 |V0585 Oph *|182709.1+073128 |SRB | 11.6 | 13.2 | |p | | | 135. | |M5 |00351 02325| +590586 |V0586 Oph *|182713.9+041715 |EA/SD | 13.3 | 15.8 | |p |45241.317 | | 2.6941307 |10 *| |00001 02325| +590587 |V0587 Oph |182717.5+093545 |L | 14.0 | 15.7 | |p | | | | | |00447 02325| +590588 |V0588 Oph |182717.6+090157 |M | 13.1 |< 16.5 | |p |25788. | | 191.5 | | |00447 02325| +590589 |V0589 Oph |182730.2+090636 |L | 14.0 | 14.8 | |p | | | | | |00447 02325| +590590 |V0590 Oph *|182731.4+091226 |EB/KE | 13.4 | 13.7 | 13.6 |p |29401.536 | | 0.826866 | | |00447 02325| +590591 |V0591 Oph |182745.3+100730 |M | 12.3 |< 16.5 | |p |26767. | | 279.4 | |M6III |00447 02325| +590592 |V0592 Oph *|182755.2+094804 |SR | 13.0 | 14.6 | |p |29409. | | 79. | | |00447 02325| +590593 |V0593 Oph |182757.4+082307 |LB | 13.0 | 14.5 | |p | | | | |M4 |00447 02325| +590594 |V0594 Oph |182834.2+073612 |M | 14.5 |< 16.5 | |p |25692. | | 300. | | |00447 02325| +590595 |V0595 Oph |182832.7+094416 |L | 13.5 | 14.3 | |p | | | | | |00447 02325| +590596 |V0596 Oph |182850.5+065905 |M | 14.5 |< 17. | |p |25706. | | 277. | | |00447 02325| +590597 |V0597 Oph |182849.8+093153 |L | 12.3 | 13.3 | |p | | | | | |00447 02325| +590598 |V0598 Oph |182854.7+084243 |SR | 15.4 | 16.7 | |p | | | 500. : | | |00447 02325| +590599 |V0599 Oph |182848.7+114708 |L | 13.3 | 14.7 | |p | | | | | |00447 02325| +590600 |V0600 Oph |182859.0+081932 |SR | 14.0 | 16.0 | |p |26899. | | 149.3 |40 | |00447 02325| +590601 |V0601 Oph |182910.3+085536 |LB | 12.2 | 13.6 | |p | | | | | |00447 02326| +590602 |V0602 Oph |182927.1+112904 |M | 11.8 |< 16.5 | |p |25874. | | 300.5 | |M4III |00447 02326| +590603 |V0603 Oph |183003.6+084126 |M | 15.3 |< 17. | |p |26875. | | 345. | | |00447 02326| +590604 |V0604 Oph |183012.2+062117 |M | 15.0 |< 17. | |p |25800. | | 348. | |M3-M5 |00447 02326| +590605 |V0605 Oph *|183015.2+094611 |SR | 12.8 | 14.8 | |p |26789. | | 133. | | |00447 02326| +590606 |V0606 Oph |183038.4+102119 |L | 13.5 | 14.7 | |p | | | | | |00447 02326| +590607 |V0607 Oph |183106.4+090131 |M | 15.0 | 20. | |p |27941. | | 285. | | |00447 02326| +590608 |V0608 Oph |183115.1+070827 |L | 13.2 | 13.9 | |p | | | | | |00447 02326| +590609 |V0609 Oph |183115.1+093555 |RV | 13.5 | 15.0 | |p |26780.5 | | 195. | |M6II |00447 02326| +590610 |V0610 Oph |183123.8+091011 |RRAB | 13.5 | 14.7 | |p |25688.629 | | 0.465932 |14 | |00447 02326| +590611 |V0611 Oph |183146.1+071743 |L | 13.0 | 14.0 | |p | | | | | |00447 02326| +590612 |V0612 Oph |183154.9+110054 |L | 14.1 | 15.5 | |p | | | | | |00447 02326| +590613 |V0613 Oph |183220.2+085905 |L | 13.6 | 15.0 | |p | | | | | |00447 02326| +590614 |V0614 Oph |183234.5+095722 |LB | 12.2 | 12.8 | |p | | | | |M5 |00447 02326| +590615 |V0615 Oph |183258.9+105132 |L | 14.4 | 15.8 | |p | | | | | |00447 02326| +590616 |V0616 Oph |183308.8+075514 |LB | 13.9 | 15.0 | |p | | | | | |00447 02326| +590617 |V0617 Oph |183316.9+113757 |M | 13.8 |< 20. | |p |25680. | | 271.5 | | |00447 02326| +590618 |V0618 Oph *|183341.8+065516 |EA/DS | 14.6 | 15.6 | 14.7 : |p |26089.489 | | 9.962859 |06 *| |00447 02326| +590619 |V0619 Oph |183342.7+104908 |M | 13.4 |< 17. | |p |27320. | | 339. | | |00447 02326| +590620 |V0620 Oph |183347.4+090700 |M | 14.5 | 17.5 : | |p |25890. | | 103.1 | | |00447 02326| +590621 |V0621 Oph |183356.4+085426 |LB | 13.8 | 15.0 | |p | | | | | |00447 02326| +590622 |V0622 Oph |183404.5+085229 |M | 13.7 |< 17. | |p |27224. | | 328.3 | | |00447 02326| +590623 |V0623 Oph |183417.7+074822 |LB | 13.9 | 14.4 | |p | | | | |M6.5 |00447 02326| +590624 |V0624 Oph |183415.4+090410 |SR | 13.6 | 14.6 | |p |25781. | | 182. |43 | |00447 02326| +590625 |V0625 Oph |183417.4+104828 |L | 15.0 | 16.2 | |p | | | | | |00447 02326| +590626 |V0626 Oph |183422.6+102719 |L | 14.8 | 16.2 | |p | | | | | |00447 02326| +590627 |V0627 Oph |183433.6+091241 |M | 14.1 | 19. | |p |26123. | | 452. | |C |00447 02326| +590628 |V0628 Oph |183517.6+100320 |L | 15.5 | 16.5 | |p | | | | | |00447 02326| +590629 |V0629 Oph |183512.6+092826 |M | 13.7 |< 17. | |p |26922. | | 203.6 | | |00447 02326| +590630 |V0630 Oph |183540.9+091808 |M | 13.7 | 20. | |p |25712. | | 292.5 | | |00447 02326| +590631 |V0631 Oph |183535.3+090400 |M | 14.0 |< 17. | |p |26822. | | 367. | | |00447 02326| +590632 |V0632 Oph |183541.4+081047 |M | 14.6 |< 20. | |p |25693. | | 207.7 | | |00447 02326| +590633 |V0633 Oph |183548.3+103658 |M | 12.8 | 17. : | |p |25795. | | 247.5 | | |00447 02326| +590634 |V0634 Oph |183600.0+064250 |M | 12.8 | 17.2 | |p |26825. | | 157.25 |46 | |00447 02326| +590635 |V0635 Oph |183624.1+073643 |M | 14.3 | 19. | |p |25858. | | 310. | |M5: |00447 02326| +590636 |V0636 Oph *|183641.5+102822 |EA/SD | 13.5 | 15.7 | |p |45152.514 | | 2.233215 |17 | |00447 02327| +590637 |V0637 Oph |183641.7+095618 |LB: | 13.6 | 16.0 | |p | | | | |M |03165 02326| +590638 |V0638 Oph |183644.5+090005 |L | 15.1 | 15.8 | |p | | | | | |00447 02326| +590639 |V0639 Oph |183713.2+073302 |M | 13.1 | 19. | |p |26774. | | 116. | |M7 |00447 02327| +590640 |V0640 Oph |183708.6+111616 |M | 13.8 | 20. | |p |30149. | | 226.4 | | |00001 02327| +590641 |V0641 Oph |183718.2+091122 |LB: | 14.2 | 15.4 | |p | | | | |M |03165 02327| +590642 |V0642 Oph |183722.7+080628 |EA/SD: | 14.9 | 15.8 | |p |26126.474 | | 2.150417 |15 *| |00447 02327| +590643 |V0643 Oph |183726.7+062142 |LB: | 13.6 | 15.6 | |p | | | | |K-M |03165 02327| +590644 |V0644 Oph |183724.4+095819 |M | 14.1 |< 17. | |p |26878. | | 288.5 | |M4 |00447 02327| +590645 |V0645 Oph |183741.7+115220 |LB: | 14.6 | 15.6 | |p | | | | | |03165 02327| +590646 |V0646 Oph |183744.3+101744 |M: | 15.1 |< 17. | |p |26119. | | 254. | | |00447 02327| +590647 |V0647 Oph |183749.5+081055 |M | 14.6 |< 17. | |p |27315. | | 337. | | |00447 02327| +590648 |V0648 Oph |183817.6+081323 |M | 12.5 |< 17. | |p |25665. | | 168.7 | | |00447 USNO | +590649 |V0649 Oph |183803.0+092334 |LB | 13.2 | 14.9 | |p | | | | |M6.5 |00447 02327| +590650 |V0650 Oph |183807.5+120151 |M | 14.3 | 19. | |p |25708. | | 216.5 | | |00447 02327| +590651 |V0651 Oph |183840.1+092223 |M: | 15.8 |< 17. | |p |25716. | | 236. | | |00447 02327| +590652 |V0652 Oph |183847.3+075147 |M | 14.0 |< 17. | |p |29837. | | 185.5 | | |00001 GSC22| +590653 |V0653 Oph |183843.5+110257 |M | 13.3 |< 17. | |p |26498. | | 276. | | |00447 02327| +590654 |V0654 Oph |183930.4+075710 |L | 14.2 | 14.5 | |p | | | | | |00447 02327| +590655 |V0655 Oph |183930.2+075203 |M | 13.1 |< 17. | |p |25741. | | 427. | |M8 |00447 02327| +590656 |V0656 Oph |183933.7+070920 |M: | 15.2 |< 17. | |p |26142. | | 198.25 | | |00447 02327| +590657 |V0657 Oph |184004.1+100752 |M: | 15.2 |< 17. | |p |25800. | | 203.33 | | |00447 02327| +590658 |V0658 Oph |184030.1+081428 |M | 13.6 | 17. : | |p |25733. | | 329. | |M5: |00447 02327| +590659 |V0659 Oph |184026.9+100149 |M | 14.3 | 19. | |p |25717. | | 378.7 | | |00447 02327| +590660 |V0660 Oph |184041.3+084547 |M | 14.6 | 20. | |p |28045. | | 263.3 | | |00447 02327| +590661 |V0661 Oph |184058.0+091340 |M | 15.1 | 20. | |p |25811. | | 216.6 | | |00447 02327| +590662 |V0662 Oph |184116.6+091917 |L | 15.2 | 16.0 | |p | | | | | |00447 02327| +590663 |V0663 Oph |184158.7+070344 |LB | 13.5 | 14.5 | |p | | | | |M3 |00447 02327| +590664 |V0664 Oph |184151.8+112016 |L | 14.0 | 14.8 | |p | | | | | |00447 02327| +590665 |V0665 Oph |184210.0+103855 |M | 14.8 |< 17. | |p |26094. | | 503. | | |00447 02327| +590666 |V0666 Oph |184224.7+095133 |M | 14.2 | 20. | |p |25693. | | 218. | | |00447 02327| +590667 |V0667 Oph |184230.7+083805 |LB | 13.8 | 14.7 | |p | | | | |M6 |00447 02327| +590668 |V0668 Oph |184232.6+102044 |M | 13.5 |< 17. | |p |26197. | | 366. | |M5p |00447 02327| +590669 |V0669 Oph |184249.8+104419 |SRB | 14.2 | 16.2 | |p | | | 455. : | |M6.5 |00447 02327| +590670 |V0670 Oph |184314.8+100706 |LB | 13.7 | 14.3 | |p | | | | |M6 |00447 02327| +590671 |V0671 Oph |184342.6+093902 |M: | 15.3 |< 17. | |p |25828. | | 205.5 | | |00447 02327| +590672 |V0672 Oph |184358.9+110544 |LB | 15.0 | 16.5 | |p | | | | | |00447 02328| +590673 |V0673 Oph |184404.5+092441 |M | 13.8 | 20. | |p |26932. | | 295. | |M7 |00447 02328| +590674 |V0674 Oph |184407.0+105953 |M | 14.3 | 19. | |p |26926. | | 249.4 | | |00447 02328| +590675 |V0675 Oph |184420.6+103323 |M | 13.6 |< 16.5 | |p |29200. | | 285. | |M6 |00447 02328| +590676 |V0676 Oph |184423.1+120037 |M | 13.7 | 20. | |p |30126. | | 261.2 | | |00001 02328| +590677 |V0677 Oph |184451.6+105314 |M | 14.8 | 20. | |p |26450. | | 296. | | |00447 02328| +590678 |V0678 Oph |183841.7+073233 |SRA | 13.0 | 13.8 | |p |25735. | | 209.8 | |M1 |00001 00470| +590679 |V0679 Oph |184157.2+064907 |LB | 8.96 | 9.3 | |V | | | | |S4.5,8 |00447 BD | +590680 |V0680 Oph |160644.9-052502 |L | 13.5 | 14.1 | |p | | | | |G5p |05692 05692| +590681 |V0681 Oph |160715.3-063418 |RRAB | 13.0 | 13.7 | |p |29525.926 | | 0.5819469 |18 | |05692 05692| +590682 |V0682 Oph |160852.3-072008 |RRAB | 13.6 | 15.1 | |p |29517.578 | | 0.6539320 |19 | |05692 05692| +590683 |V0683 Oph *|161457.5-064407 |RRAB | 13.9 | 15.0 | |p |29587.254 | | 0.5598371 |15 | |05692 05692| +590684 |V0684 Oph |161521.7-064249 |RRAB | 14.0 | 15.9 | |p |29352.823 | | 0.4720478 |15 | |05692 05692| +590685 |V0685 Oph |161610.0-064715 |RRAB | 14.7 | 16.2 | |p |29347.808 | | 0.4938268 |16 | |05692 05692| +590686 |V0686 Oph |161648.3-062511 |RRAB | 15.0 | 16.5 | |p |29590.401 | | 0.5109442 |12 | |05692 05692| +590687 |V0687 Oph *|161710.0-073820 |SR | 14.7 | 15.7 | |p |27980. | | 150. | | |00278 | +590688 |V0688 Oph |161744.6-050249 |RRAB | 14.5 | 15.4 | |p |42954.7199 | | 0.5907986 |22 | |09492 03625| +590689 |V0689 Oph |161747.9-044041 |RRAB | 14.6 | 15.3 | |p |42954.5141 | | 0.7208293 |20 | |09492 03625| +590690 |V0690 Oph |161802.4-040054 |RRAB | 15.2 | 16.1 | |p |42954.5462 | | 0.5504133 |24 | |09492 03625| +590691 |V0691 Oph |162048.7-061607 |SRB | 15.2 | 15.7 | |p |29881. | | 173. | | |05692 05692| +590692 |V0692 Oph |162121.9-051816 |RRAB | 15.6 | 17.1 | |p |42954.5363 | | 0.4720559 |18 | |09492 03625| +590693 |V0693 Oph *|162143.0-052322 |RRAB | 15.2 | 16.6 | |p |42954.4564 | | 0.4849108 |21 | |09492 03625| +590694 |V0694 Oph |162247.5-004938 |RRAB | 13.6 | 14.7 | |p |27924.60 | | 0.620 | | |00278 06286| +590695 |V0695 Oph *|162326.0-052353 |RRAB | 15.7 | 16.9 | |p |42954.7556 | | 0.4587482 |30 | |00001 03625| +590696 |V0696 Oph |162430.4-083208 |RRAB | 13.9 | 16.1 | |p |30247.252 | | 0.39322032 |23 | |05692 06286| +590697 |V0697 Oph |162454.9-012146 |RRAB | 14.6 | 15.9 | |p |42954.4775 | | 0.4951730 |17 | |09492 03625| +590698 |V0698 Oph *|162501.8-045221 |RRAB | 15.3 | 16.4 | |p |42954.6719 | | 0.4550797 |30 | |09492 03625| +590699 |V0699 Oph |162514.8-044025 |UG | 13.8 | 18.5 | |p | | |( 32.1 :) | | |00001 02452| +590700 |V0700 Oph *|162526.3-061604 |RRAB | 14.73 | 15.74 | |V |37433.513 | | 0.6426 |40 | |03625 03625| +590701 |V0701 Oph |162606.4-040717 |SRA | 14.3 | 16.0 | |p |38170. | | 148.8 | | |03560 03625| +590702 |V0702 Oph |162602.9-004225 |RR | 14.0 | 15.0 | |p |27956.60 | | 0.587 | | |00278 06286| +590703 |V0703 Oph |162609.6-031153 |RRAB | 15.1 | 16.5 | |p |42954.707 | | 0.4318992 |10 | |00001 03625| +590704 |V0704 Oph |162654.2-094606 |M | 13.0 | 16.0 | |p |37370. | | 203.7 | | |03560 04401| +590705 |V0705 Oph |162652.4-094953 |M | 12.0 |< 16.0 | |p |28350. | | 308.7 | | |00001 06286| +590706 |V0706 Oph |162645.2-063110 |RRAB | 14.5 | 15.7 | |p |27900.60 | | 0.5133 | | |00278 USNO | +590707 |V0707 Oph |162647.7-023701 |LB: | 12.2 | 13.2 | |p | | | | |M7 |00278 06286| +590708 |V0708 Oph |162728.2-031713 |SR | 12.9 | 14.6 | |p |27960. | | 123. | | |00278 03625| +590709 |V0709 Oph |162802.8-041357 |E/SD | 11.9 | 13.4 | |p |27987.40 | | 3.04545658 | | |00278 00122| +590710 |V0710 Oph |162803.1-042051 |RRAB | 15.2 | 16.2 | |p |42954.6658 | | 0.6567757 |15 | |09492 03625| +590711 |V0711 Oph |162851.1-050357 |RRAB | 14.6 | 16.0 | |p |42954.6520 | | 0.5989859 |12 | |09492 03625| +590712 |V0712 Oph |162943.6-032408 |RRAB | 15.5 | 17.1 | |p |42954.3737 | | 0.4907535 |15 | |09492 03625| +590713 |V0713 Oph |163010.8-064803 |RR | 14.0 | 15.1 | |p | | | | | |00278 06286| +590714 |V0714 Oph |163003.0-005956 |RRAB | 13.6 | 14.8 | |p |27900.60 | | 0.556 | | |00278 06286| +590715 |V0715 Oph |163041.3-064034 |SR | 13.0 | 15.5 | |p |27980. | | 265. | |Me |00278 06286| +590716 |V0716 Oph *|163049.5-053020 |CWB | 11.28 | 12.60 | |V |42954.1388 | | 1.1159157 |13 |A9-F5 |09492 03625| +590717 |V0717 Oph |163119.7-012443 |M | 13.6 |< 16.0 | |p |27960. | | 255. | | |00278 06286| +590718 |V0718 Oph |163136.5-074105 |SR | 14.9 | 16.3 | |p | | | 119. | | |00278 | +590719 |V0719 Oph |163137.0-062926 |RRAB | 14.9 | 15.9 | |p |27932.40 | | 0.677 | | |00278 GSC | +590720 |V0720 Oph *|163224.6-131201 |M | 12.1 | 17.0 | |p |40800. | | 332.0 |30 |Me |06438 00551| +590721 |V0721 Oph |163157.6+030611 |SR: | 11.5 |< 12. | |p |27544. | | 267. | |M2 |00483 00470| +590722 |V0722 Oph *|163221.9-013510 |RRAB | 14.3 | 15.7 | |p |42954.5616 | | 0.6190741 |14 | |09492 03625| +590723 |V0723 Oph |163259.0-081823 |RRAB | 13.9 | 15.3 | |p |37378.576 | | 0.7146405 | | |07806 06286| +590724 |V0724 Oph |163327.6-053024 |RRAB | 15.3 | 16.9 | |p |42954.3876 | | 0.4424056 |15 | |09492 03625| +590725 |V0725 Oph |163323.4-034449 |SR | 13.0 | 15.4 | |p |27900. | | 144.6 | | |00278 06286| +590726 |V0726 Oph |163329.9-001542 |SR | 14.0 | 15.5 | |p | | | 75. : | | |00278 06286| +590727 |V0727 Oph |163340.1-022130 |RRAB | 14.6 | 15.8 | |p |42954.7952 | | 0.4999441 |21 | |00001 03625| +590728 |V0728 Oph |163446.8-013004 |M | 13.0 | 16.0 | |p |27930. | | 276. | |Me |00278 | +590729 |V0729 Oph *|163458.1-022254 |RRAB | 15.3 | 16.7 | |p |42954.6830 | | 0.4687127 |12 | |09492 03625| +590730 |V0730 Oph |163512.8-013319 |RRC | 14.6 | 15.3 | |p |42954.6475 | | 0.3148051 |45 | |09492 03625| +590731 |V0731 Oph |163624.0-081612 |RRAB | 14.2 | 15.8 | |p |37079.468 | | 0.5286466 |12 | |07806 07806| +590732 |V0732 Oph *|163740.1-050835 |M | 12.1 | 15.6 | |p |27950. | | 471. | |M3IIIe |00278 06286| +590733 |V0733 Oph |163748.5-045815 |SR | 13.5 | 14.5 | |p | | | 45. : | | |00278 06286| +590734 |V0734 Oph *|163807.2-032603 |RRAB | 14.5 | 16.7 | |p |37133.255 | | 0.5624738 |17 | |03506 06286| +590735 |V0735 Oph *|170749.0+093309 |EA/SD | 10.5 | 11.6 | 10.6 |p |26894.517 | | 3.2052032 |17 *|A0 |00001 00279| +590736 |V0736 Oph |171453.1+085856 |SR: | 13.7 | 14.7 | |p | | | | | |00452 06286| +590737 |V0737 Oph *|171538.1+090553 |M | 13.1 | 16.0 | |p | | | 187. | | |00452 06286| +590738 |V0738 Oph |171550.4+093655 |SR | 12.2 | 13.1 | |p | | | 100. | |M4 |00452 00196| +590739 |V0739 Oph |171635.2+042811 |RR | 14.3 | 15.5 | |p | | | | | |00452 USNO | +590740 |V0740 Oph |171708.5+083928 |SR | 13.1 | 14.0 | |p | | | 82. : | | |00452 06286| +590741 |V0741 Oph |171802.9+105423 |SRD | 12.1 | 12.9 | |p | | | 194. | |K5 |00452 06286| +590742 |V0742 Oph |171956.5-185412 |M | 12.9 | 19.6 | |p |36752. | | 250.0 |44 |M5-M8.5 |05455 00551| +590743 |V0743 Oph |171857.8+060008 |RR | 13.8 | 15.4 | |p | | | | | |00452 06286| +590744 |V0744 Oph |171904.4+082949 |M | 12.4 |< 16.6 | |p |34255. :| | 267.3 | | |00001 00158| +590745 |V0745 Oph |172002.9+034856 |CWB | 12.7 | 13.9 | |p |27636.100 | | 1.595137 |30 : | |05448 06286| +590746 |V0746 Oph |172011.5+071501 |SR | 13.1 | 13.8 | |p | | | 80. : | | |00452 08953| +590747 |V0747 Oph |172044.3+033836 |SR | 14.5 | 15.5 | |p | | | 105. | | |00452 GSC | +590748 |V0748 Oph |172050.5+102340 |SR | 13.1 | 14.4 | |p | | | 174. | | |00452 06286| +590749 |V0749 Oph |172109.3+024037 |RR | 14.2 | 15.6 | |p | | | | | |00452 06286| +590750 |V0750 Oph |172119.4+095439 |SR | 13.2 | 14.6 | |p | | | 126. | | |00452 UCAC2| +590751 |V0751 Oph |172135.2+030853 |RR | 14.0 | 15.0 | |p | | | | | |00452 06286| +590752 |V0752 Oph |172123.6+103747 |E/SD | 13.0 | 14.6 | |p |42899.567 | | 1.836659 | | |00001 06286| +590753 |V0753 Oph |172148.0+072525 |RR | 14.3 | 15.3 | |p | | | | | |00452 06286| +590754 |V0754 Oph |172150.3+102129 |SR | 14.2 | 15.0 | |p | | | 95. : | | |00452 06286| +590755 |V0755 Oph |172211.4+051438 |RR | 15.1 | 16.3 | |p | | | | | |00452 USNO | +590756 |V0756 Oph |172230.4+014648 |RRAB | 12.3 | 13.7 | |p |29404.4340 | | 0.4610295 |23 | |03491 00555| +590757 |V0757 Oph |172258.7+035326 |E/SD: | 14.6 |< 16.6 | |p | | | | | |00452 USNO | +590758 |V0758 Oph |172349.7+033810 |RR | 14.2 | 15.4 | |p | | | | | |00452 06286| +590759 |V0759 Oph |172356.4+042225 |SR | 11.9 | 13.5 | |p |32719. | | 277.2 | |M2IIIe |02931 00002| +590760 |V0760 Oph |172514.2+093910 |E/SD | 13.9 | 15.2 | |p |36757.58 | | 4.3431 | | |03492 | +590761 |V0761 Oph |172617.6+024330 |SR | 14.5 | 15.4 | |p | | | 100. | | |00452 GSC | +590762 |V0762 Oph |172625.3+094654 |RR | 14.3 | 15.3 | |p | | | | | |00452 USNO | +590763 |V0763 Oph |172810.9+114840 |RR | 14.3 | 15.8 | |p | | | | | |00452 GSC | +590764 |V0764 Oph |172845.5+074011 |M | 13.0 |< 16.6 | |p | | | 290. | | |00452 06286| +590765 |V0765 Oph |172912.8+061716 |RR | 14.0 | 15.3 | |p |36778.431 | | 0.379873 | | |07806 06286| +590766 |V0766 Oph |172930.7+124008 |SR | 13.1 | 14.3 | |p | | | 61. : | | |00452 GSC | +590767 |V0767 Oph *|173044.9+023544 |SR | 12.5 | 14.0 | |p | | | 65. | | |00452 02316| +590768 |V0768 Oph |173115.8+054106 |RRAB | 13.3 | 14.6 | |p |37079.431 | | 0.701895 | | |07806 06286| +590769 |V0769 Oph |173137.6+122527 |SR | 13.8 | 14.5 | |p | | | 400. : | | |00452 GSC | +590770 |V0770 Oph |173147.7+111334 |SR | 13.8 | 15.0 | |p | | | 120. : | | |00452 GSC | +590771 |V0771 Oph |173158.7+100833 |RR | 13.5 | 14.7 | |p | | | | | |00452 06286| +590772 |V0772 Oph |173224.9+060321 |M | 12.8 | 15.3 | |p | | | 212. | | |00452 GSC | +590773 |V0773 Oph |173229.7+092338 |RRAB | 13.1 | 14.4 | |p |37144.452 | | 0.5856928 |16 | |05759 06286| +590774 |V0774 Oph |173250.8+015340 |SR | 14.0 | 15.3 | |p | | | 121. : | | |00452 06286| +590775 |V0775 Oph |173240.4+074220 |CWA | 13.8 | 14.5 | |p |27649. | | 12.16 | | |00452 06286| +590776 |V0776 Oph |173254.1+111834 |SRA | 13.3 | 15.5 | |p | | | 200. | |M0e |00452 00491| +590777 |V0777 Oph |173324.9+025936 |RR | 13.4 | 14.4 | |p |36780.365 | | 0.521392 | | |07806 06286| +590778 |V0778 Oph |173351.0+111551 |RR | 14.3 | 15.3 | |p |36372.42 | | 0.5476 | | |02394 06286| +590779 |V0779 Oph |173417.5+033947 |SR | 13.2 | 14.8 | |p | | | 132. | | |00452 06286| +590780 |V0780 Oph |173412.2+061347 |RR | 14.3 | 15.4 | |p | | | | | |00452 06286| +590781 |V0781 Oph |173406.2+103653 |RR | 14.2 | 15.3 | |p | | | | | |00452 06286| +590782 |V0782 Oph *|173424.1+060353 |SR | 14.0 | 14.7 | |p | | | 110. : | | |00452 06286| +590783 |V0783 Oph |173436.7+082639 |SR | 14.8 | 15.7 | |p | | | 124. | | |00452 GSC | +590784 |V0784 Oph *|173525.2+074521 |RRAB | 11.85 | 12.96 | |V |40358.954 | | 0.3762746 |20 |A1: |06997 00470| +590785 |V0785 Oph |173532.7+093357 |RRAB | 12.7 | 14.8 | |p |36364.3626 | | 0.4495754 |19 | |03491 06286| +590786 |V0786 Oph *|173548.3+065829 |SR | 13.3 | 14.2 | |p | | | 133. : | | |00452 UCAC2| +590787 |V0787 Oph |173544.4+105337 |RR: | 14.4 | 15.5 | |p | | | | | |00452 USNO | +590788 |V0788 Oph *|173609.1+080954 |RRAB | 13.3 | 14.9 | |p |37023.516 | | 0.5471305 |15 | |05759 06286| +590789 |V0789 Oph |173620.1+065909 |SR | 13.0 | 14.2 | |p | | | 83. | | |00452 GSC | +590790 |V0790 Oph |173644.5+105107 |M | 12.8 |< 16.6 | |p |37130. :| | 370. | |M5IIIe |00452 06286| +590791 |V0791 Oph |173725.9+022601 |SR | 13.9 | 14.8 | |p | | | 70. | | |00452 GSC | +590792 |V0792 Oph |173731.3+032714 |M | 13.3 |< 16.6 | |p | | | 273. | | |00452 06286| +590793 |V0793 Oph |173729.7+090837 |RR | 14.1 | 15.3 | |p | | | | | |00452 06286| +590794 |V0794 Oph |173849.2-225049 |NB | 11.5 : |< 16.0 | |p |29510. :|1939 | | | |00484 USNO | +590795 |V0795 Oph |173741.6+101308 |SR | 12.6 | 13.4 | |p | | | 97. : | | |00452 06286| +590796 |V0796 Oph |173728.2+083110 |E/SD: | 14.4 | 15.8 | |p | | | | | |00452 USNO | +590797 |V0797 Oph |173822.6+021321 |M | 14.0 |< 16.6 | |p | | | 251. | | |00452 06286| +590798 |V0798 Oph |173827.7+034601 |SR | 13.7 | 14.4 | |p | | | 67. | | |00452 GSC | +590799 |V0799 Oph *|173827.6+043942 |M | 14.3 |< 16.6 | |p |33500. :| | 430. : | | |00452 GSC22| +590800 |V0800 Oph |173819.2+082019 |M | 12.6 |< 16.6 | |p | | | 265. : | | |00452 06286| +590801 |V0801 Oph |173829.4+113854 |RR | 13.8 | 15.5 | |p | | | | | |00452 06286| +590802 |V0802 Oph *|173843.3+055610 |SR | 14.4 | 16.0 | |p | | | 118. | | |00452 GSC | +590803 |V0803 Oph |173908.9+035853 |SR | 13.3 | 14.3 | |p | | | 230. | | |00452 06286| +590804 |V0804 Oph |173901.4+075518 |SR | 14.9 | 16.0 | |p | | | 96. | | |00452 GSC22| +590805 |V0805 Oph |173932.0+020344 |SR | 13.8 | 14.4 | |p | | | 87.5 : | | |00452 GSC | +590806 |V0806 Oph |174053.2-165738 |EA/DS | 11.6 : |< 13.0 | |V |34216.67 | | 15.4065 |08 |F8 |00485 00279| +590807 |V0807 Oph |174125.1-242623 |E/SD: | 13.7 | 14.8 | |p | | | | | |00478 00478| +590808 |V0808 Oph |174006.2+080210 |RR | 14.3 | 15.3 | |p | | | | | |00452 USNO | +590809 |V0809 Oph |174018.9+044007 |RR | 14.4 | 15.6 | |p | | | | | |00452 USNO | +590810 |V0810 Oph |174049.4+070235 |LB | 14.8 | 15.8 | |p | | | | | |07079 02452| +590811 |V0811 Oph |174131.9+054719 |RRAB | 14.4 | 15.0 | |p |29785.567 | | 0.388610 |15 | |02757 02363| +590812 |V0812 Oph |174131.9+064341 |SRB | 11.3 | 12.9 | |p | | | 96. : | |S6,3 |00452 02452| +590813 |V0813 Oph |174134.8+114319 |RR | 14.3 | 15.3 | |p | | | | | |00452 USNO | +590814 |V0814 Oph |174153.8+092641 |SR | 14.7 | 15.6 | |p | | | 89. : | | |00452 GSC | +590815 |V0815 Oph |174200.1+071147 |SR | 11.6 | 13.1 | |p | | | | |M0 |00452 06286| +590816 |V0816 Oph *|174237.6+045730 |RRAB | 11.71 | 13.04 | |V |36351.450 | | 0.3806945 |16 | |02672 02363| +590817 |V0817 Oph |174244.6+080847 |RRAB | 15.3 | 17.0 | |B |42891.549 | | 0.504879 |15 | |09444 USNO | +590818 |V0818 Oph |174246.6+092139 |SR | 14.0 | 16.2 | |p | | | 213. | | |00452 06286| +590819 |V0819 Oph |174332.9+084204 |M | 13.6 |< 16.6 | |p | | | 275. | | |00452 06286| +590820 |V0820 Oph |174435.0+063517 |RR | 14.0 | 15.2 | |p | | | | | |00452 GSC | +590821 |V0821 Oph |174518.7+095507 |RR | 14.1 | 15.2 | |p | | | | | |00452 USNO | +590822 |V0822 Oph *|174559.0+103015 |RRAB | 12.8 | 14.0 | |p |36730.475 | | 0.5376777 |20 | |05759 06286| +590823 |V0823 Oph *|174700.5+061154 |RR | 14.5 | 15.6 | |p | | | | | |00452 USNO | +590824 |V0824 Oph |174717.6+075206 |RR | 14.2 | 15.3 | |p | | | | | |00452 USNO | +590825 |V0825 Oph *|174830.2+060328 |RR | 13.4 | 14.6 | |p | | | | | |00452 06286| +590826 |V0826 Oph |174843.7+095555 |RR | 14.5 | 15.8 | |p | | | | | |00452 USNO | +590827 |V0827 Oph |174922.4+075958 |SR | 13.8 | 15.0 | |p | | | | | |00452 GSC | +590828 |V0828 Oph |174922.0+110412 |SR | 13.9 | 14.8 | |p | | | 100. | | |00452 GSC | +590829 |V0829 Oph *|174929.2+121355 |RRAB | 13.5 | 15.0 | |p |36726.442 | | 0.5692300 |15 | |05759 06286| +590830 |V0830 Oph |174950.0+044504 |RRAB | 15.0 | 16.2 | |B |42957.375 | | 0.570075 |20 | |09445 09445| +590831 |V0831 Oph |174946.4+081051 |E/SD: | 13.8 | 14.9 | |p | | | | | |00452 GSC | +590832 |V0832 Oph *|174949.6+083405 |SRB | 14.9 | 15.5 | |B | | | 105. | | |09446 00533| +590833 |V0833 Oph |175017.6+113826 |CWA | 14.0 | 15.6 | |p |27636.20 | | 14.69 | | |00452 06286| +590834 |V0834 Oph |180859.5+120923 |M | 12.5 |< 15.5 | |p | | | | | |00464 00533| +590835 |V0835 Oph |173611.8-163438 |SRB | 11.3 | 14.3 | |p | | | 116. : | |M6 |00351 00551| +590836 |V0836 Oph |174311.4-100014 |M | 13.2 |< 16. | |p |27300. | | 480. | | |01001 00552| +590837 |V0837 Oph |175757.0-070547 |M: | 13.6 | 16. | |p |30942. | | 335. : | | |00001 00486| +590838 |V0838 Oph *|180144.7+102343 |SRB | 11.8 | 13.2 | |p | | | 80. | |M |00351 00533| +590839 |V0839 Oph *|180921.3+090904 |EW/KW | 8.8 | 9.39 | 9.38 |V |40448.4129 | | 0.40899532 | |F8V |00001 00487| +590840 |V0840 Oph *|165444.0-293728 |NA | 6.5 : |< 17. | |p |21344. :|1917 | | | | 00261| +590841 |V0841 Oph *|165930.4-125327 |NB | 4.3 | 13.50 | |V | |1848 | | |pec(cont+e) |00488 09472| +590842 |V0842 Oph |172742.2-290643 |EA/SD | 13.7 | 15.0 | |p |28346.378 | | 4.76953 |09 *| |00296 00296| +590843 |V0843 Oph *|173037.2-212851 |SNI | -3. |< 19. | |V | |1604 | | | | 09514| +590844 |V0844 Oph *|173258.8-294429 |EA/SD | 14.8 |< 15.2 | 14.9 |p |28658.779 | | 7.20590 |09 | |00296 00296| +590845 |V0845 Oph *|173835.7-282414 |EA/SD: | 14.34 |( 0.7 )| |B |28433.24 | | 3.82973 |10 *| |00296 00296| +590846 |V0846 Oph |173940.9-285112 |EA/SD: | 10.0 | 10.7 | |p |28361.305 | | 3.126763 |10 *|A2 |00296 CoD | +590847 |V0847 Oph *|174256.1-291754 |EB/SD: | 13.0 | 13.4 | 13.1 |p |28391.364 | | 2.88796 | | |00296 00296| +590848 |V0848 Oph *|174306.2-292525 |EA/SD | 13.3 | 14.3 | 13.4 |p |28396.05 | | 6.56956 |13 *| |00296 00296| +590849 |V0849 Oph |181407.3+113643 |NB | 7.2 |< 17.5 | |p |22268. |1919 | | |pec(NOVA) | 03496| +590850 |V0850 Oph |170610.8-102859 |M | 11.0 |< 16. | |p |25382. | | 345.6 | |M8 |00001 06286| +590851 |V0851 Oph *|183452.0+070403 |SRB | 10.2 | 11.8 | |p |29726. | | 188. | |M5 |00164 00476| +590852 |V0852 Oph |162524.4-242944 |INB | 13.6 |< 16.0 | |p | | | | |M0e |09447 00516| +590853 |V0853 Oph |162845.3-242819 |INT | 12.6 | 14.68 | |B | | | | |KVe(T)-M2e |09447 00516| +590854 |V0854 Oph *|165912.0-133037 |M: | 11. | 16. | |p |25443. :| | 352. : | | |01003 00551| +590855 |V0855 Oph |165953.2+042859 |M: | 10.4 | 15.5 | |p |26860. | | | |M0IIIe |00158 00002| +590856 |V0856 Oph |170616.7-183421 |M | 13.3 | 16.1 | |p |35667. | | 337.0 | |M7-M9.5 |05455 00551| +590857 |V0857 Oph |170940.0-190804 |M | 12.2 | 16.0 | |p |36718. | | 275.5 | |M4-M9 |05455 00551| +590858 |V0858 Oph |171008.3-023555 |M | 11.5 |< 15. | |p |23636. | | 158.94 | |M4 |06997 02315| +590859 |V0859 Oph |171051.8-183213 |M | 12.5 |< 18.5 | |p |36688. | | 300.5 | |M5-M9.5 |00001 00551| +590860 |V0860 Oph |171138.9-150517 |M | 12.8 |< 15.5 | |p |26120. | | | | |00551 00551| +590861 |V0861 Oph |171351.3-210122 |M | 12.8 | 17.5 | |p |36810. | | 207.5 | |M2-M8.5 |05455 GSC22| +590862 |V0862 Oph |171426.2-210020 |M | 13.4 | 18.2 | |p |36688. | | 184.55 | |M2-M7.5 |00001 00551| +590863 |V0863 Oph |171522.7-161245 |M: | 12.8 |< 14.4 | |p |27640. | | 371. | | |01003 00551| +590864 |V0864 Oph |171837.7+081343 |RR | 13.1 | 13.8 | |p | | | | | |00452 00491| +590865 |V0865 Oph |171900.1+093027 |RR | 12.5 | 13.1 | |p | | | | | |00452 00542| +590866 |V0866 Oph |174109.8-000933 |RRAB | 13.7 | 14.7 | |p |41862.461 | | 0.5835579 |10 | |06997 02363| +590867 |V0867 Oph |174108.8+002946 |M | 13.1 |< 16.5 | |p |40421. | | 348. | | |06997 02363| +590868 |V0868 Oph *|174231.1+030341 |EB:/KW: | 12.9 |< 13.8 | 13.6 |p |43283.436 | | 0.443226 : | | |00001 02363| +590869 |V0869 Oph |174543.8+111957 |RR | 13.3 | 14.0 | |p | | | | | |00452 00533| +590870 |V0870 Oph *|174603.9+055500 |RRAB | 14.8 | 15.8 | |p |29785.528 | | 0.317147 |09 | |02757 02363| +590871 |V0871 Oph |174854.6+044520 |RRAB | 15.3 | 15.9 | |p |29785.542 | | 0.450721 |20 | |02757 02363| +590872 |V0872 Oph *|175517.8+081343 |RRAB | 15.2 | 15.6 | |p |29816.455 | | 0.4523 |20 | |03183 02364| +590873 |V0873 Oph |180711.4+082502 |M | 12.5 |< 15.5 | |p |26935. | | 151. : | |M2e |00001 00492| +590874 |V0874 Oph |180706.9+123355 |M | 12.5 |< 15. | |p | | | | | |00464 00533| +590875 |V0875 Oph |181107.0+040958 |M | 14.5 |< 17.0 | |p |29820. | | 267. | | |02757 02364| +590876 |V0876 Oph |181521.5+052333 |M | 14.6 |< 20. | |p |26421. | | 137.5 : | | |02757 02364| +590877 |V0877 Oph |181543.5+090436 |M | 12.5 |< 15. | |p | | | | | |00464 00533| +590878 |V0878 Oph *|181639.8+002228 |EW/KW | 15.8 | 16.5 | 16.5 |p |29785.380 | | 0.439984 | | |02757 02364| +590879 |V0879 Oph |181740.4+133606 |M | 13. |< 15. | |p | | | | | |00464 00533| +590880 |V0880 Oph |181820.7+052054 |M | 12.5 |< 17.5 | |p |29830. | | | | |02757 02364| +590881 |V0881 Oph |181846.1+050100 |RRAB | 14.2 | 16.5 | |p |29786.59 | | 0.5257 |10 | |03165 03497| +590882 |V0882 Oph |181914.8+045614 |M | 11.9 | 19. | |p |31696. :| | | | |02757 02364| +590883 |V0883 Oph |182237.8+063745 |M | 14.2 | 19. | |p |30125. :| | | |M6III |00164 02366| +590884 |V0884 Oph |182247.4+095205 |M | 12.5 |< 17.0 | |p |29450. | | 210. | | |00164 02366| +590885 |V0885 Oph |182301.0+083332 |M | 13.1 |< 16.2 | |p |29114. | | 350.3 | |Me |00164 02366| +590886 |V0886 Oph |182414.9+095943 |RR: | 13.4 | 16.7 | |p | | | | |A2 |03165 02366| +590887 |V0887 Oph |182424.3+095958 |M | 13.6 |< 17.0 | |p |29541. | | 287. | |M6III |00164 02366| +590888 |V0888 Oph |182432.1+105118 |IS | 13.8 | 17.5 | |p | | | | | |00164 02366| +590889 |V0889 Oph |182625.8+102059 |M | 14.7 | 18.5 | |p |29525. | | 117.6 | | |00164 02366| +590890 |V0890 Oph |182629.5+090700 |M | 12.3 | 19. | |p |27345. | | 316.3 | | |00164 02366| +590891 |V0891 Oph |182751.9+071741 |M | 14.0 | 19. | |p |29437. | | 392. : | | |00164 02367| +590892 |V0892 Oph |182950.3+085625 |EA/SD: | 14.4 | 16.0 | |p |30200.507 | | | | |00164 02367| +590893 |V0893 Oph |183130.3+073137 |M | 14.6 |< 17.0 | |p |26476. | | 195. | | |00164 02367| +590894 |V0894 Oph |183245.5+114326 |M | 12.9 |< 16.5 | |p |25820. | | 160.8 | | |00164 02367| +590895 |V0895 Oph |183546.9+115647 |M | 14.2 |< 17.5 | |p |29451. | | 262.5 | | |05249 02367| +590896 |V0896 Oph |183633.9+064327 |M: | 15.3 |< 17.0 | |p |29076. | | 164. : | | |00164 02367| +590897 |V0897 Oph |183708.2+090159 |M | 14.1 |< 17.5 | |p | | | | | |00164 02367| +590898 |V0898 Oph |183827.8+070522 |M | 14.8 | 20. | |p |29541. | | 292. : | | |00164 02367| +590899 |V0899 Oph |183932.8+074752 |M: | 15.5 |< 17.0 | |p |29555. | | 272. : | | |00164 02367| +590900 |V0900 Oph |184111.5+075601 |M | 14.1 |< 16.5 | |p |25720. | | 205. | | |00164 02367| +590901 |V0901 Oph |184249.4+114347 |RRAB | 13.7 | 15.0 | |p |29046.425 | | 0.474298 |30 | |00164 02367| +590902 |V0902 Oph |184252.5+100900 |M | 15.0 | 20. | |p |25791. | | 277.5 | | |05249 02367| +590903 |V0903 Oph |184510.1+103715 |M | 14.9 |< 20. | |p |29435. | | 215. | | |00164 02368| +590904 |V0904 Oph |171432.7+100531 |M | 12.5 |< 15. | |p |37817. | | 156.07 | | |06997 00158| +590905 |V0905 Oph |171446.8+100454 |M | 12.5 |< 15. | |p |34128. | | 255.03 | | |06997 00491| +590906 |V0906 Oph |172609.7-215428 |NA | 8.4 |< 13. | |p |34240. |1952 | | |pec(NOVA) | 03498| +590907 |V0907 Oph |175214.5+101345 |M | 13.5 |< 15.5 | |p |34129. | | 273. : | | |00001 00158| +590908 |V0908 Oph |172841. -274523:|N | 11.5 |< 14. | |p |34925. |1954 | | |pec(NOVA) | | +590909 |V0909 Oph |182550.1+031300 |M | 13.4 | 17.2 | |p |43080. | | 245.63 | | |08097 00494| +590910 |V0910 Oph |182832.5+042331 |M | 13.9 | 17. | |p |42997. | | 237.25 | | |08097 00494| +590911 |V0911 Oph *|162454.9+025958 |SRB | 10.2 | 11.2 | |p | | | 57. | |M0 |02186 02186| +590912 |V0912 Oph |175411.3+014654 |SRB: | 11.6 |( 0.6 )| |p | | | 73. : | |M |00306 BD | +590913 |V0913 Oph |175503.6+141039 |EA/SD | 11.5 | 14.5 | |p |45414.620 | | 1.9173304 | |A-F |00001 00558| +590914 |V0914 Oph |175921.3+114703 |LB | 10.0 | 10.8 | |p | | | | |M0 |00306 08953| +590915 |V0915 Oph |182144.2+040912 |M | 11.0 | 16.2 | |p |32740.4 | | 111.09 |40 |Me |08097 06887| +590916 |V0916 Oph |182249.5+040755 |EA/SD | 11.4 | 13.3 | |p |44731.602 | | 3.114752 |13 *| |00001 02366| +590917 |V0917 Oph |182323.0+113831 |SR | 11.6 | 14.3 | |p |29114. | | 60.7 | | |00164 02366| +590918 |V0918 Oph |182504.5+103324 |SR | 13.0 | 15.0 | |p |29408. | | 99.1 | | |00164 02366| +590919 |V0919 Oph *|182703.5+072731 |L | 14.6 | 16.5 | |p | | | | | |00164 02366| +590920 |V0920 Oph *|182820.2+083006 |EA/KE | 15.1 | 15.9 | 15.9 |p |29114.415 | | 1.5505 |11 *| |00164 02367| +590921 |V0921 Oph |183146.1+083349 |EA | 14.9 | 15.5 | |p | | | | | |00164 02367| +590922 |V0922 Oph |183208.6+083241 |RRAB | 14.4 | 16.0 | |p |29401.520 | | 0.541388 |20 | |03225 02367| +590923 |V0923 Oph |183213.9+082211 |L: | 14.1 | 15.2 | |p | | | | | |00164 02367| +590924 |V0924 Oph *|183328.3+075751 |EA/KW: | 15.7 |< 16.4 | 16.4 |p |29135.354 | | 0.359554 |10 *| |00164 02367| +590925 |V0925 Oph |183523.7+062736 |LB | 11.3 | 13.4 | |p | | | | |M3-M5 |00164 02367| +590926 |V0926 Oph |183610.4+065258 |M | 12.4 |< 17.0 | |p |26823. | | 251.3 | | |00164 02367| +590927 |V0927 Oph |183817.5+065216 |L | 14.8 | 15.6 | |p | | | | | |00164 02367| +590928 |V0928 Oph |184028.9+120401 |M: | 13.9 |< 15.5 | |p |29440. | | 140. | | |00164 02367| +590929 |V0929 Oph *|184056.4+081751 |EA/SD: | 15.0 | 15.6 | |p |29877.420 | | 2.3401 |14 | |00164 02367| +590930 |V0930 Oph |184145.7+120211 |EA/SD: | 14.2 | 14.8 | |p |26782.556 | | 1.397553 |10 *| |00164 02367| +590931 |V0931 Oph |184423.9+103725 |EA/SD: | 13.2 | 14.4 | |p |26929.417 | | | | |00164 02368| +590932 |V0932 Oph |174115.6+011419 |SR | 13.0 | 15.0 | |p |29105. | | 144. | | |02757 02363| +590933 |V0933 Oph |174127.3+041227 |RRAB | 15.6 | 16.8 | |B |43696.323 | | 0.502822 |25 | |09448 02363| +590934 |V0934 Oph *|174354.5-004252 |SXPHE: | 16.0 | 16.4 | |p |29785.520 | | 0.205911 : | | |02757 02363| +590935 |V0935 Oph |174445.2-013148 |LB | 14.1 | 15.4 | |p | | | | |M7 |02757 04238| +590936 |V0936 Oph *|174630.4+060111 |LB | 13.8 | 14.8 | |p | | | | | |02757 02363| +590937 |V0937 Oph |175137.4-001758 |SR | 14.8 | 16.6 | |p |25740. | | 237. | | |02757 02363| +590938 |V0938 Oph *|175246.5+024851 |EW/KW | 14.5 | 15.5 | 15.3 |p |29785.566 | | 0.439064 | | |02757 02363| +590939 |V0939 Oph |175255.0+011350 |L | 15.6 | 16.6 | |p | | | | | |02757 02363| +590940 |V0940 Oph *|175306.2+074120 |EB/KW | 14.8 | 15.8 | 15.6 |p |29785.408 | | 0.433226 | | |02757 02363| +590941 |V0941 Oph *|175330.9+074127 |EA/KE | 16.0 |< 16.6 | 16.5 |p |29788.468 | | 1.196955 |09 *| |02757 02363| +590942 |V0942 Oph |175438.5+024534 |RRAB | 15.6 | 16.4 | |p |29785.392 | | 0.4581672 |11 | |02757 02364| +590943 |V0943 Oph *|175602.6-014259 |EW/KW | 15.9 | 16.6 | 16.4 |B |29786.517 | | 0.486074 | | |02757 02364| +590944 |V0944 Oph |175853.6+071920 |RRAB | 14.8 | 15.7 | |p |29785.517 | | 0.273326 |22 | |02757 02364| +590945 |V0945 Oph *|180024.1+041250 |EW:/KW | 14.6 | 15.1 | 15.1 |p |29785.450 | | 0.320018 | | |02757 02364| +590946 |V0946 Oph |180104.3+013845 |RRAB | 15.1 | 16.3 | |p |29788.505 | | 0.389759 |21 | |02757 02364| +590947 |V0947 Oph *|180205.3+055246 |EW:/KW | 14.1 | 14.5 | 14.5 |B |29785.517 | | 0.37186 | | |02757 02364| +590948 |V0948 Oph |180227.7+023035 |M | 14.2 |< 17.0 | |p |25440. | | 362. | | |02757 02364| +590949 |V0949 Oph |180250.9+084753 |SR | 12.0 | 14.0 | |p | | | | | |00814 00533| +590950 |V0950 Oph |180308.5+012359 |RRAB | 15.0 | 15.7 | |p |29785.333 | | 0.274730 |18 | |02757 02364| +590951 |V0951 Oph |180501.1+040532 |L | 14.6 | 16.0 | |p | | | | | |02757 02364| +590952 |V0952 Oph *|180816.1+054031 |RR | 13.5 | 14.9 | |p |29812.425 | | 0.488 |20 | |03183 02364| +590953 |V0953 Oph |180817.3+062815 |IS: | 14.2 | 15.2 | |p | | | | | |02757 02364| +590954 |V0954 Oph *|180923.0+012304 |EW:/KW | 14.3 | 14.9 | 14.9 |p |29785.411 | | 0.225270 | | |02757 02364| +590955 |V0955 Oph |180953.7+062616 |M | 14.4 | 19. | |p |25510. | | 303. | | |02757 02364| +590956 |V0956 Oph |181036.4+063715 |LB: | 14.8 | 16.0 | |p | | | | |M |03165 02364| +590957 |V0957 Oph |181046.4+025705 |M | 15.1 | 19. | |p |25448. | | 327. | | |02757 02364| +590958 |V0958 Oph |181047.0+043443 |M: | 15.1 |< 17.0 | |p |25520. | | 303. | | |02757 02364| +590959 |V0959 Oph *|181102.3+031046 |DSCT | 12.4 | 13.1 | |p |43726.469 | | 0.08446 | | |09526 02364| +590960 |V0960 Oph *|181132.0+061048 |RRAB | 14.8 | 16.4 | |B |42924.506 | | 0.593580 |15 | |09448 02364| +590961 |V0961 Oph |181244.5+041935 |RRAB | 14.3 | 15.2 | |p |29785.489 | | 0.346924 |16 | |02757 02364| +590962 |V0962 Oph |181333.8+014911 |RRAB | 15.2 | 16.3 | |B |43349.371 | | 0.516006 |20 | |09449 02364| +590963 |V0963 Oph *|181518.4+064713 |EW/KW | 14.6 | 15.1 | 15.1 |p |29785.523 | | 0.264743 | | |02757 02364| +590964 |V0964 Oph |181556.5+035100 |RRAB | 15.8 | 16.7 | |p |29788.401 | | 0.509004 : |10 | |02757 02364| +590965 |V0965 Oph |181621.4+041350 |LB: | 14.4 | 15.2 | |p | | | | | |02757 02364| +590966 |V0966 Oph |181641.2+044514 |ISB: | 13.6 | 14.4 | |p | | | | |M |02757 02364| +590967 |V0967 Oph |181651.1+041317 |M: | 15.1 |< 17.0 | |p |25391. | | 258.5 | | |02757 02364| +590968 |V0968 Oph *|181921.6+032211 |RRC | 14.5 | 15.0 | |B |29785.430 | | 0.267954 |11 | |02757 02364| +590969 |V0969 Oph *|182017.9+033032 |EW/KE | 13.5 | 13.9 | 13.8 : |B |29786.437 | | 0.589412 | | |02757 02364| +590970 |V0970 Oph |165446.4+074027 |M | 10.0 | 15. | |V |40383. | | 274.96 | | |00001 00470| +590971 |V0971 Oph |172428.3-290243 |L | 13.9 | 14.6 | |p | | | | | |02448 02448| +590972 |V0972 Oph |173444.4-281037 |NB | 8.0 |< 16.5 | |p |36161. |1957 | | |pec(NOVA) |02978 02978| +590973 |V0973 Oph |173723.8-271241 |ISB: | 12.6 | 13.5 | |p | | | | | |02448 02448| +590974 |V0974 Oph |173733.7-294525 |DSCT | 11.6 | 12.0 | |p |28671.437 | | 0.1910568 |30 | |02448 02448| +590975 |V0975 Oph |174045.5-291635 |M: | 14.5 |< 15.8 | |p |28345. | | 110. | | |02448 02448| +590976 |V0976 Oph |174156.5-011317 |LB | 13.7 | 14.2 | |p | | | | |K0 |02757 02363| +590977 |V0977 Oph *|174411.7+030131 |RRC | 16.2 | 16.6 | |p |35638.449 | | 0.36264 |50 | |02833 02833| +590978 |V0978 Oph *|174449.5+031734 |SR: | 15.2 | 15.9 | |p | | | | | |02833 02833| +590979 |V0979 Oph *|174514.2+031010 |RRAB | 15.4 | 16.3 | |p |35638.506 | | 0.46164 |10 | |02833 02833| +590980 |V0980 Oph *|174555.4+030712 |RRC | 15.6 | 16.1 | |p |35640.440 | | 0.34697 |44 | |02833 02833| +590981 |V0981 Oph |174850.4+112428 |EA/SD | 13. | 14.5 | |p |36069.259 | | 1.4285133 | | |02419 00533| +590982 |V0982 Oph |175238.5+073304 |SR: | 15.9 |< 17.0 | |p | | | | | |02757 02363| +590983 |V0983 Oph *|175538.0+022841 |EA | 10.5 | 11.3 | |p |36045.244 | | | |A0 |02595 BD | +590984 |V0984 Oph |175838.8+012621 |L | 15.1 | 15.7 | |p | | | | | |02757 02364| +590985 |V0985 Oph |180416.7+072957 |L: | 14.2 | 15.6 | |p | | | | | |02757 02364| +590986 |V0986 Oph *|180437.4+015508 |* | 6.10 | 6.15 | |V | | | 0.323 | |B0.5III |09523 BD | +590987 |V0987 Oph *|181436.9+022301 |EA/SD | 14.4 | 15.5 | 14.6 |B |42872.600 | | 2.202732 |17 | |09449 02364| +590988 |V0988 Oph |182652.8+035449 |SRB | 9.0 | 10.2 | |p |31291. | | 63.2 | |M7e |03135 03763| +590989 |V0989 Oph |162440.9-090900 |RRAB | 15.2 | 16.5 | |p |37116.360 | | 0.691773 |15 | |04401 04401| +590990 |V0990 Oph |162456.1-134045 |RRAB | 15.2 | 16.4 | |p |36721.47 | | 0.595690 |10 | |04402 04402| +590991 |V0991 Oph |162525.0-115648 |RRAB | 15.2 | 16.2 | |p |36749.428 | | 0.616886 |15 | |04402 04402| +590992 |V0992 Oph |162527.2-115234 |RRAB | 14.2 | 15.6 | |p |37078.50 | | 0.479748 |20 | |04402 04402| +590993 |V0993 Oph |162539.9-132051 |RRAB | 14.8 | 15.9 | |p |36721.43 | | 0.470410 |15 | |04401 04401| +590994 |V0994 Oph |162551.0-131538 |I | 13.5 | 14.7 | |p | | | | | |04402 04402| +590995 |V0995 Oph |162651.1-113716 |RRAB | 15.3 | 16.4 | |p |37051.45 | | 0.730144 |14 | |04401 04402| +590996 |V0996 Oph |162703.1-153731 |M | 15.1 |< 17.2 | |p |36703. | | 217. | | |04466 04401| +590997 |V0997 Oph |162824.5-113804 |RRAB | 15.0 | 16.3 | |p |37080.35 | | 0.548723 |15 | |04402 04402| +590998 |V0998 Oph *|162917.4-131041 |RRAB | 14.9 | 16.1 | |p |37052.465 | | 0.456795 |22 | |04403 04403| +590999 |V0999 Oph *|162931.0-132719 |RRAB | 16.1 |< 16.9 | |p |37051.50 | | 0.452396 | | |04402 04402| +591000 |V1000 Oph *|163158.9-140723 |RRAB | 14.8 | 16.0 | |p |37050.55 | | 0.566400 |13 | |04402 04402| +591001 |V1001 Oph |163233.8-152514 |EA/SD | 14.5 | 16.1 | |p |41512.403 | | 1.789398 |13 | |07305 04401| +591002 |V1002 Oph *|163319.3-121537 |EW:/KE | 14.7 | 15.2 | 15.2 |p |36733.656 | | 0.682818 | | |04402 04402| +591003 |V1003 Oph |163409.2-154817 |IN: | 14.4 | 16.4 | |p | | | | |ea |04401 04401| +591004 |V1004 Oph *|163524.4-123547 |RRAB | 15.5 | 16.4 | |p |37079.345 | | 0.56526 |33 | |06596 04402| +591005 |V1005 Oph |163532.0-125020 |RRAB | 16.0 | 16.5 | |p |37050.527 | | 0.38655 |32 | |06596 04402| +591006 |V1006 Oph |164312.9-113417 |RRAB | 14.7 | 16.1 | |p |36722.464 | | 0.456596 |20 | |04401 04401| +591007 |V1007 Oph |164337.3-135135 |RRAB | 15.2 | 16.3 | |p |37051.514 | | 0.668693 |12 | |04401 04401| +591008 |V1008 Oph |164441.9-144118 |SR | 14.2 | 16.3 | |p |36734. | | 148. | | |04401 04401| +591009 |V1009 Oph |164709.8-151053 |RR | 15.4 | 16.3 | |p | | | | | |04401 04401| +591010 |V1010 Oph *|164927.7-154005 |EB/KE | 6.1 | 7.00 | 6.46 |V |38937.7690 | | 0.66142613 | |A5V |09527 06439| +591011 |V1011 Oph *|171654.4+051919 |RRAB | 13.1 | 14.0 | |p |36757.411 | | 0.538160 |20 | |07806 06286| +591012 |V1012 Oph |174134.5-232333 |N | 14. |< 21. | |B |37410. :|1961 | | |pec(NOVA) |04210 04210| +591013 |V1013 Oph |175758.6+053437 |RRAB | 14.2 | 15.6 | |p |29785.461 | | 0.6194444 |08 | |09451 02313| +591014 |V1014 Oph |182047.9+055613 |LB | 10.8 | 12.2 | |B | | | | |M5e |04109 BD | +591015 |V1015 Oph *|160901.7-065208 |EA/SD | 14.3 | 15.8 | 14.5 |p |29133.394 | | 3.877930 | | |05692 05692| +591016 |V1016 Oph |161638.4-052118 |EW:/KE: | 13.1 | 14.1 | |p | | | 0.51 : | | |03625 03625| +591017 |V1017 Oph *|161741.9-044807 |RRC | 14.4 | 14.8 | |p |42954.6529 | | 0.2342500 |37 | |09492 03625| +591018 |V1018 Oph *|161759.3-055655 |RRC: | 15.6 | 15.9 | |p |42954.7966 | | 0.3696396 : |50 : | |09492 03625| +591019 |V1019 Oph |161859.4-060005 |E: | 15.8 | 16.7 | |p | | | | | |03625 03625| +591020 |V1020 Oph |161900.3-040851 |RRC | 15.2 | 15.8 | |p |42954.6881 | | 0.3042873 |40 : | |00001 03625| +591021 |V1021 Oph *|162100.6-041557 |RRAB | 13.30 | 14.10 | |B |42954.5017 | | 0.5719306 |25 | |09492 03625| +591022 |V1022 Oph *|162121.3-040310 |EW/KW | 15.1 | 16.12 | 15.95 |B |44441.5624 | | 0.2394 | | |03625 03625| +591023 |V1023 Oph |162147.3-040554 |RRAB | 12.81 | 13.6 | |B |42954.7505 | | 0.6239306 |22 | |09492 03625| +591024 |V1024 Oph *|162239.4-015814 |RRAB: | 15.9 | 17.1 | |p |42954.2821 | | 0.5917558 |28 | |09492 03625| +591025 |V1025 Oph |162250.8-041703 |RRAB | 15.8 | 17.0 | |p |42954.4775 | | 0.6572019 |12 | |09492 03625| +591026 |V1026 Oph *|162255.1-035335 |RRAB | 16.8 | 18.0 | |p |42954.3587 | | 0.6557418 |22 | |09492 03625| +591027 |V1027 Oph |162319.1-011041 |EW: | 16.3 | 16.9 | |p | | | | | |03625 03625| +591028 |V1028 Oph *|162408.4-060522 |RRC | 16.3 | 17.1 | |p |42954.5958 | | 0.38419750 |45 | |09492 03625| +591029 |V1029 Oph |162457.3-011953 |RRAB | 16.0 | 17.6 | |p |42954.8050 | | 0.5358953 |18 | |09492 03625| +591030 |V1030 Oph |162512.1-033607 |RRC | 16.3 | 16.8 | |p |42954.7635 | | 0.4041256 |42 | |09492 03625| +591031 |V1031 Oph |162540.1-013352 |RRAB | 15.8 | 17.4 | |p |42954.4807 | | 0.5582284 |16 | |09492 03625| +591032 |V1032 Oph *|162609.7-035324 |RRAB: | 15.9 | 18.3 | |p | | | | | |03625 03625| +591033 |V1033 Oph *|162637.2-032738 |RRAB | 17.7 | 18.8 | |p |42954.3933 | | 0.4845074 |30 | |09492 03625| +591034 |V1034 Oph |162803.4-030313 |RRAB | 14.7 | 16.01 | |B |42954.7558 | | 0.5150198 |15 | |09492 03625| +591035 |V1035 Oph *|162805.0-033814 |RRAB | 15.3 | 16.7 | |p |42954.7144 | | 0.6102580 |20 | |09492 03625| +591036 |V1036 Oph |162814.8-023546 |RRAB | 17.2 | 18.7 | |p |42954.4779 | | 0.5434042 |18 | |09492 03625| +591037 |V1037 Oph |163105.7-060216 |RRC | 15.5 | 16.2 | |p |42954.4635 | | 0.4338638 |35 | |09492 03625| +591038 |V1038 Oph |163226.1-045349 |RRC | 15.1 | 15.7 | |p |42954.5828 | | 0.2497337 |32 | |09492 03625| +591039 |V1039 Oph *|163315.2-033043 |RRC: | 15.9 | 16.5 | |p |37433.774 | | 0.4648 | | |03625 03625| +591040 |V1040 Oph *|163330.5-025014 |RRAB | 15.5 | 16.6 | |p |42954.3339 | | 0.5473678 |15 | |09492 03625| +591041 |V1041 Oph *|163341.3-020128 |RRC | 14.0 | 14.6 | |p |42954.4821 | | 0.3525036 |43 | |09492 03625| +591042 |V1042 Oph *|163349.0-013257 |RRAB | 14.3 | 15.74 | |B |42954.4764 | | 0.5525099 |25 : | |09492 03625| +591043 |V1043 Oph |163400.7-043753 |RRC | 15.8 | 16.4 | |p |42954.6317 | | 0.2912270 |40 | |09492 03625| +591044 |V1044 Oph |163354.2-012028 |RRAB | 14.8 | 16.5 | |p |42954.7595 | | 0.4816840 |15 : | |09492 03625| +591045 |V1045 Oph |163359.2-024624 |RRAB | 16.1 | 17.8 | |p |42954.5873 | | 0.4636240 |15 | |09492 03625| +591046 |V1046 Oph |163431.2-033520 |RRC | 15.7 | 16.5 | |p |42954.6633 | | 0.3275670 |30 | |09492 03625| +591047 |V1047 Oph |163502.3-043939 |RRAB | 15.9 | 17.1 | |p |42954.4473 | | 0.5932521 |18 | |09492 03625| +591048 |V1048 Oph |163504.7-032156 |RRAB | 16.2 | 17.2 | |p |42954.6874 | | 0.7616475 |22 | |09492 03625| +591049 |V1049 Oph |163546.6-044520 |RRAB | 16.3 | 17.7 | |p |42954.4369 | | 0.6639973 |30 | |09492 03625| +591050 |V1050 Oph |163621.4-014713 |RRAB | 14.8 | 16.4 | |p |42954.4751 | | 0.5035591 |20 | |09492 03625| +591051 |V1051 Oph |163642.2-032320 |RRAB | 14.8 | 15.6 | |p |42954.3352 | | 0.7498597 |26 | |09492 03625| +591052 |V1052 Oph *|163713.5-051939 |RRAB | 14.9 | 16.4 | |p |42954.2032 | | 0.7553512 |22 | |09492 03625| +591053 |V1053 Oph |165447.0+054217 |RR: | 14. | 15. | |p |38579.42 | | 4.03 /N| | |03905 03905| +591054 |V1054 Oph *|165528.8-082011 |UV | 10.14 | 11.72 | |U | | | | |M4.5Ve+M4.5Ve |09530 05288| +591055 |V1055 Oph |165752.0-093231 |M | 12.0 |< 15.5 | |p |37140. :| | | |M5IIIe-M8 |05159 GSC | +591056 |V1056 Oph |165923.9+062016 |RR: | 15.5 | 17. | |p |38579.42 | | | | |03905 03905| +591057 |V1057 Oph |170106.7+110317 |RR | 15. | 16. | |p |38584.42 | | | | |03903 03903| +591058 |V1058 Oph |170125.0+072250 |EA/SD: | 15.5 | 17. | |p |38583.45 | | | | |03905 03905| +591059 |V1059 Oph |170754.5+080416 |RR: | 15. | 16. | |p |38579.42 | | | | |03905 03905| +591060 |V1060 Oph |171216.1+074125 |RR: | 15. | 16. | |p |38579.42 | | | | |03905 03905| +591061 |V1061 Oph |171429.9+104307 |RR | 14.5 | 15.5 | |p |38579.42 | | | | |03905 03905| +591062 |V1062 Oph |172958.4+125224 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +591063 |V1063 Oph |173053.6+101703 |UG | 15.5 |< 17.5 | |p | | | | | |03903 03903| +591064 |V1064 Oph |173432.7+094451 |RR | 15. | 16. | |p | | | | | |03776 03776| +591065 |V1065 Oph |173853.1+102332 |EA | 12.5 | 13.5 | |p |38558.46 | | | | |03776 03776| +591066 |V1066 Oph |174110.4+004052 |RR | 16.5 | 17.5 | |p |38557.45 | | | | |03903 03903| +591067 |V1067 Oph |174128.4+000143 |SR | 14. | 15. | |p | | | | | |03910 03910| +591068 |V1068 Oph |174111.1+122540 |M | 13.5 |< 17. | |p |39260. :| | | | |03903 03903| +591069 |V1069 Oph |174156.3-010128 |SR | 15. | 16.5 | |p | | | | | |03910 03910| +591070 |V1070 Oph |174321.9+010200 |SR | 14.5 | 15.5 | |p | | | | | |03910 03910| +591071 |V1071 Oph |174355.5+070553 |RRAB | 15.0 | 16.5 | |B |43987.583 | | 0.7284816 |15 | |09444 03910| +591072 |V1072 Oph *|174607.6+084927 |RRAB | 14.1 | 15.3 | |B |43731.328 | | 0.444715 |20 | |09531 03903| +591073 |V1073 Oph |174624.3+135325 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +591074 |V1074 Oph |175002.5+123535 |RR | 15. | 16.5 | |p |38591.47 | | | | |03903 03903| +591075 |V1075 Oph *|175021.7+132703 |SR | 14.5 | 16.5 | |p | | | | | |03776 03776| +591076 |V1076 Oph |175102.1+062740 |EA/SD | 15.7 | 18.0 | |B |43195.598 | | 1.874345 |07 | |09532 03903| +591077 |V1077 Oph *|175209.7+065813 |RRAB | 15.2 | 16.5 | |B |44027.456 | | 0.373980 |20 | |09532 03903| +591078 |V1078 Oph |175337.1+042553 |SR | 15. | 16.5 | |p | | | | | |03910 03910| +591079 |V1079 Oph |175403.5+031959 |RR | 16. | 17.5 | |p | | | | | |03903 03903| +591080 |V1080 Oph |175648.4+062613 |EA/SD: | 16. | 18. | |p |38910.52 | | | | |03910 03910| +591081 |V1081 Oph |175827.7+021153 |RR | 16. | 17. | |p |38910.52 | | | | |03910 03910| +591082 |V1082 Oph |180000.2+003220 |M | 15. | 18. | |p | | | | | |03910 03910| +591083 |V1083 Oph |180019.9+030618 |RR | 16. | 17.5 | |p |38549.49 | | | | |03910 03910| +591084 |V1084 Oph |180045.3+041333 |RR | 16. | 17.5 | |p |38901.50 | | 4.01 /N| | |03903 03903| +591085 |V1085 Oph |180102.2+034725 |RR | 15.5 | 17. | |p |38901.50 | | | | |03910 03910| +591086 |V1086 Oph |180232.0+030511 |M: | 16.5 |< 18. | |p | | | | | |03910 03910| +591087 |V1087 Oph |180336.3+030419 |RR | 16. | 17. | |p | | | | | |03903 03903| +591088 |V1088 Oph |180451.9+013211 |RR | 16. | 17.5 | |p |38901.50 | | | | |03910 03910| +591089 |V1089 Oph *|180650.3+040152 |RR: | 14.3 | 16.0 | |B |38901.50 | | | | |03903 03903| +591090 |V1090 Oph |180648.7+075335 |RR | 15. | 16. | |p |38528.53 | | | | |03903 03903| +591091 |V1091 Oph |180708.7+013434 |EA | 15. | 16. | |p |38614.40 | | | | |03910 03910| +591092 |V1092 Oph |180806.7+015606 |SR | 16. |< 17.5 | |p | | | | | |03910 03910| +591093 |V1093 Oph |180833.5+001003 |RR | 15.5 | 17. | |p |38553.52 | | 4.03 /N| | |03910 03910| +591094 |V1094 Oph |180838.5+000855 |RR | 15.5 | 16.5 | |p | | | | | |03903 03903| +591095 |V1095 Oph |181129.3+054810 |RRAB | 14.1 | 15.5 | |B |42926.503 | | 0.458774 |05 | |09445 03903| +591096 |V1096 Oph |181328.2+035857 |M: | 15.7 |< 17.5 | |B |43254.5 | | 281.5 |15 : | |09441 03903| +591097 |V1097 Oph |181628.8+023602 |RR | 15.5 | 17. | |p |39259.55 | | | | |03903 03903| +591098 |V1098 Oph |181640.1+050411 |RR | 16. | 17. | |p |39270.52 | | | | |03903 03903| +591099 |V1099 Oph *|181655.6+011054 |SR | 16. |< 17.5 | |p | | | | | |03910 03910| +591100 |V1100 Oph *|181723.4+022335 |SR | 15.5 | 17. | |p | | | | | |03910 03910| +591101 |V1101 Oph |181737.4+043811 |RR | 15.5 | 17. | |p |38901.50 | | | | |03903 03903| +591102 |V1102 Oph |181741.7+053111 |EA | 16. | 17. | |p |38553.52 | | | | |03903 03903| +591103 |V1103 Oph |182227.1+111246 |M | 14.5 | 19. | |p |29430. :| | | | |03903 03903| +591104 |V1104 Oph |182401.0+072309 |M: | 16. |< 17. | |p | | | | | |03903 03903| +591105 |V1105 Oph |182913.7+111429 |SR | 16. |< 17.5 | |p | | | | | |03903 03903| +591106 |V1106 Oph |183023.4+074816 |RR | 16. | 17. | |p |37824.51 | | | | |03903 03903| +591107 |V1107 Oph |183144.3+075315 |M: | 16. |< 17.5 | |p |37830. :| | | | |03903 03903| +591108 |V1108 Oph |183215.8+064321 |SR | 15. | 16. | |p | | | | | |03903 03903| +591109 |V1109 Oph |183512.8+102308 |M | 15. |< 18. | |p |29535. :| | | | |03903 03903| +591110 |V1110 Oph |183602.6+072709 |M: | 16.5 |< 20. | |p | | | | | |03903 03903| +591111 |V1111 Oph *|183719.3+102542 |M | 16. | 20. | |p | | | | |M4III-M9 |03903 04238| +591112 |V1112 Oph |183724.0+083954 |M: | 16. |< 18. | |p | | | | | |03903 03903| +591113 |V1113 Oph |183916.6+083941 |SR | 16. |< 17.5 | |p |37940. :| | | | |03903 03903| +591114 |V1114 Oph |184047.7+084920 |EA | 15. | 16. | |p |37824.51 | | | | |03903 03903| +591115 |V1115 Oph |184056.4+094656 |M | 16. |< 18. | |p |37940. :| | | | |03903 03903| +591116 |V1116 Oph |184217.1+073407 |M: | 16. |< 17.5 | |p | | | | | |03903 03903| +591117 |V1117 Oph |184315.4+070657 |EA | 15. | 16. | |p |30114.55 | | | | |03903 03903| +591118 |V1118 Oph |184417.6+111818 |M | 16.5 | 20. | |p | | | | | |03903 03903| +591119 |V1119 Oph |160846.3-055239 |RRAB | 14.5 | 15.4 | |p |29422.155 | | 0.6382173 |16 | |05692 05692| +591120 |V1120 Oph *|160959.6-063413 |EW/KW | 13.9 | 14.4 | 14.3 |p |29298.407 | | 0.33675319 | | |05692 05692| +591121 |V1121 Oph *|164915.3-142209 |INT | 11.2 | 12.2 | |V | | | | |K5Ve(T) |05548 HIP | +591122 |V1122 Oph |165344.9+122446 |RR: | 15. | 16. | |p |39270.46 :| | | | |05515 05515| +591123 |V1123 Oph |165401.2+085715 |RR | 16. | 17. | |p |38852.59 | | | | |05515 05515| +591124 |V1124 Oph |165621.3-215752 |RRAB | 14.0 | 16.8 | |p |35663.88 | | 0.50649 |17 | |05570 USNO | +591125 |V1125 Oph |165506.0+113302 |E | 11. | 11.5 | |p |39262.49 | | | | |05515 05515| +591126 |V1126 Oph |165643.4-201505 |RRAB | 16.6 | 18.2 | |p |35664.763 | | 0.55020 |15 | |05570 USNO | +591127 |V1127 Oph |165645.3-183613 |RR: | 16.0 | 16.7 | |p | | | | | |05570 USNO | +591128 |V1128 Oph |165651.6-200642 |SRB | 12.9 | 14.4 | |V | | | | | |05455 GSC22| +591129 |V1129 Oph |165647.0-182555 |RRAB | 15.9 | 17.0 | |p |35655.751 | | 0.59299 |26 : | |05570 USNO | +591130 |V1130 Oph |165551.0+104941 |RR | 15.5 | 16.5 | |p |39293.84 | | | | |05515 05515| +591131 |V1131 Oph |165703.5-204641 |SRB | 15.4 | 16.4 | |p | | | | | |05455 USNO | +591132 |V1132 Oph |165700.7-183841 |RRAB | 14.7 | 15.2 | |p |35632.95 | | 0.54214 |24 | |05570 USNO | +591133 |V1133 Oph |165659.3-175315 |RRAB | 14.9 | 16.4 | |p |35655.788 | | 0.57942 |15 | |05570 GSC | +591134 |V1134 Oph |165706.2-201749 |M | 16.5 |< 20.3 | |p |36740. | | 252.0 | | |05455 USNO | +591135 |V1135 Oph *|165703.6-182922 |RRAB | 14.3 | 15.89 | |B |35637.922 | | 0.70767 |17 | |05570 GSC | +591136 |V1136 Oph |165715.5-214653 |RRAB | 16.8 | 18.2 | |p |35656.867 | | 0.47522 |25 | |05570 USNO | +591137 |V1137 Oph |165713.1-191753 |RRAB | 15.3 | 16.8 | |p |35666.863 | | 0.46610 |15 | |05570 USNO | +591138 |V1138 Oph |165724.4-221837 |RRAB | 15.2 | 16.4 | |p |35656.869 | | 0.66688 |15 | |05570 USNO | +591139 |V1139 Oph |165714.0-175612 |RRAB | 15.8 | 16.5 | |p |35689.734 | | 0.72900 |20 | |05570 USNO | +591140 |V1140 Oph |165722.4-182402 |M | 14.0 |< 17.7 | |p |36700. | | 175.8 | | |06438 06286| +591141 |V1141 Oph *|165718.9-163458 |RRC | 15.9 | 16.6 | |p |35634.67 | | 0.31340 : |50 : | |05570 USNO | +591142 |V1142 Oph *|165721.6-175511 |RRAB | 16.9 | 18.2 | |p |35635.911 | | 0.57005 |16 | |05570 USNO | +591143 |V1143 Oph |165731.9-214105 |RRAB | 17.2 | 18.8 | |p |35633.801 | | 0.61531 |13 | |05570 USNO | +591144 |V1144 Oph |165732.6-205559 |RRAB | 15.6 | 17.0 | |p |35653.824 | | 0.58828 |25 | |05570 USNO | +591145 |V1145 Oph |165740.0-211940 |SRB | 14.9 | 15.5 | |p | | | | | |05455 GSC | +591146 |V1146 Oph *|165729.8-163726 |M | 14.8 |< 18.9 | |p |35650. :| | 302.0 | | |05455 GSC22| +591147 |V1147 Oph |165806.0-223905 |RRAB | 16.6 | 18.1 | |p |35666.813 | | 0.43064 |21 : | |05570 USNO | +591148 |V1148 Oph |165754.8-170843 |RRAB | 15.9 | 16.8 | |p |35667.89 | | 0.58614 |27 | |05570 USNO | +591149 |V1149 Oph |165809.0-193736 |SRA | 15.9 | 18.1 | |p | | | | | |05455 00551| +591150 |V1150 Oph |165818.6-220027 |RRC | 16.1 | 16.9 | |p |35661.96 :| | 0.22496 |50 : | |05570 USNO | +591151 |V1151 Oph |165821.9-214929 |RRAB | 16.1 | 17.1 | |p |35630.788 | | 0.65806 |18 | |05570 USNO | +591152 |V1152 Oph |165822.2-213652 |RRAB | 16.1 | 17.4 | |p |35689.831 | | 0.60582 |18 | |05570 USNO | +591153 |V1153 Oph *|165823.4-205411 |M | 15.5 |< 18.2 | |p |36690. | | 178.2 | | |05455 USNO | +591154 |V1154 Oph |165823.0-200147 |SRB | 15.1 | 15.7 | |p | | | | | |05455 GSC | +591155 |V1155 Oph |165817.1-170738 |RRAB | 14.7 | 16.0 | |p |35653.77 | | 0.49321 |13 | |05570 USNO | +591156 |V1156 Oph |165829.3-212405 |RRAB | 15.5 | 16.5 | |p |35688.776 | | 0.52334 |17 | |05570 USNO | +591157 |V1157 Oph *|165828.9-172947 |RRC | 14.70 | 15.30 | |V |41120.61 | | 0.34569 |40 | |05570 GSC22| +591158 |V1158 Oph |165833.3-183802 |SRB | 13.8 | 14.4 | |p | | | | | |05455 GSC | +591159 |V1159 Oph |165840.9-203133 |E/SD: | 18.1 | 19.9 | |p | | | | | |05455 USNO | +591160 |V1160 Oph |165844.0-214945 |RRAB | 15.6 | 17.0 | |p |35688.686 | | 0.47817 |22 | |05570 USNO | +591161 |V1161 Oph *|165845.5-221049 |RR | 16.2 | 17.1 | |p |35653.745 | | 0.32878 : | | |05570 USNO | +591162 |V1162 Oph |165842.3-183759 |E/SD: | 15.6 | 16.3 | |p |35640.908 | | 0.51103 | | |05455 USNO | +591163 |V1163 Oph |165843.2-165208 |M | 13.1 | 17.4 | |p |35670. | | 324.0 | | |05455 USNO | +591164 |V1164 Oph |165903.0-201144 |RRAB | 15.4 | 16.5 | |p |35665.814 | | 0.55471 |19 | |05570 USNO | +591165 |V1165 Oph |165910.4-221759 |L: | 14.4 | 16.2 | |p | | | | | |05455 USNO | +591166 |V1166 Oph |165907.2-185957 |RRAB | 15.8 | 17.1 | |p |35636.919 | | 0.56822 |20 | |05570 USNO | +591167 |V1167 Oph |165908.8-200228 |RRAB | 15.9 | 17.4 | |p |35654.700 | | 0.54401 |20 | |05570 USNO | +591168 |V1168 Oph *|165906.4-181452 |RR | 16.3 | 17.1 | |p |35656.688 | | 0.37898 | | |05570 USNO | +591169 |V1169 Oph |165908.9-184054 |SRA | 14.5 | 15.5 | |p | | | | | |05455 GSC22| +591170 |V1170 Oph *|165920.2-205918 |M | 13.9 | 17.3 | |p |36700. | | 215. : | | |00001 06286| +591171 |V1171 Oph |165915.6-181244 |RR: | 14.2 | 14.7 | |p | | | | | |05570 GSC | +591172 |V1172 Oph |165918.5-191311 |SRB | 16.6 | 17.7 | |p | | | | | |05455 USNO | +591173 |V1173 Oph |165920.6-201710 |SRB | 16.0 | 16.4 | |p | | | | | |05455 USNO | +591174 |V1174 Oph *|165929.1-213055 |RRAB | 16.4 | 17.6 | |p |35632.74 | | 0.55315 |20 | |05570 USNO | +591175 |V1175 Oph |165929.9-214728 |E/SD: | 18.8 | 20.3 | |p |35635.916 | | 0.986 :/N| | |05455 USNO | +591176 |V1176 Oph *|165920.7-173018 |M | 15.4 |< 19.9 | |p | | | 358.0 | | |05455 USNO | +591177 |V1177 Oph |165932.1-201935 |RRAB | 15.7 | 17.1 | |p |35653.83 | | 0.61870 |20 | |05570 USNO | +591178 |V1178 Oph |165933.6-210343 |RRAB | 15.6 | 16.8 | |p |35654.739 | | 0.55339 |15 | |05570 USNO | +591179 |V1179 Oph *|165923.7-164200 |RRAB | 15.8 | 17.2 | |p |35657.683 | | 0.44929 |18 | |05570 USNO | +591180 |V1180 Oph |165931.3-193053 |LB | 17.5 | 18.3 | |p | | | | | |05455 USNO | +591181 |V1181 Oph |165929.2-184105 |M | 15.1 |< 20.2 | |p |36700. | | | | |05455 USNO | +591182 |V1182 Oph |165925.6-163039 |SRB | 15.0 | 16.1 | |p | | | | | |05455 2MASS| +591183 |V1183 Oph |165933.8-180441 |RRAB | 15.8 | 17.4 | |p |35637.93 | | 0.52096 |18 | |05570 USNO | +591184 |V1184 Oph |165937.3-181908 |M | 15.5 |< 18.7 | |p |35605. :| | | | |05455 USNO | +591185 |V1185 Oph *|165943.7-204139 |M | 14.4 | 18.5 | |p |36700. | | 264. : | | |06438 06286| +591186 |V1186 Oph |170003.9-220521 |RRAB | 15.5 | 16.9 | |p |35688.635 | | 0.68395 |11 | |05570 USNO | +591187 |V1187 Oph |170001.6-205649 |L | 13.8 | 14.5 | |p | | | | | |05455 GSC | +591188 |V1188 Oph |170004.5-215006 |RRAB | 16.1 | 17.5 | |p |35630.73 | | 0.43465 |20 | |05570 USNO | +591189 |V1189 Oph |170006.8-213824 |RRAB | 15.7 | 17.2 | |p |35657.74 | | 0.45387 |14 | |05570 USNO | +591190 |V1190 Oph |170006.4-210028 |SRB | 15.0 | 15.7 | |p | | | | | |05455 GSC | +591191 |V1191 Oph |170010.0-210109 |SRA | 14.4 | 15.7 | |p | | | | | |05455 GSC | +591192 |V1192 Oph |170009.9-202455 |RRAB | 16.1 | 17.4 | |p |35656.657 | | 0.60940 |17 | |05570 USNO | +591193 |V1193 Oph |170014.0-204021 |M | 14.6 | 18.4 | |p |36780. | | 201.5 | | |05455 USNO | +591194 |V1194 Oph |170021.1-215122 |E/SD: | 17.6 | 20.3 | |p |36760.792 | | 8. /N| | |05455 USNO | +591195 |V1195 Oph *|170021.7-205334 |NR: | 16.3 |< 20.1 | |p |36888. |1959 |( 1051. ) | | |05455 10203| +591196 |V1196 Oph |170024.5-200602 |RRAB | 16.0 | 17.0 | |p |35635.86 | | 0.53283 |17 | |05570 USNO | +591197 |V1197 Oph |170026.8-205157 |RRAB | 16.4 | 17.8 | |p |35665.730 | | 0.51371 |18 | |05570 USNO | +591198 |V1198 Oph |170030.0-215030 |RRAB | 15.8 | 17.5 | |p |35664.87 | | 0.46937 |14 | |05570 USNO | +591199 |V1199 Oph |170029.7-203050 |M | 14.3 | 19.2 | |p |35620. | | 246.0 | | |05455 GSC22| +591200 |V1200 Oph |170036.8-220242 |RR: | 15.4 | 16.6 | |p | | | | | |05570 USNO | +591201 |V1201 Oph |170039.0-213658 |M | 15.5 |< 19.9 | |p |35660. | | 239.0 | | |05455 GSC22| +591202 |V1202 Oph |170033.9-185709 |RRAB | 17.2 | 18.0 | |p |35634.83 | | 0.59012 |15 | |05570 USNO | +591203 |V1203 Oph *|170040.3-212118 |M | 15.1 | 18.9 | |p |36760. | | | | |05455 GSC22| +591204 |V1204 Oph *|170042.2-203104 |SR | 16.0 | 16.5 | |p | | | 230. : | | |05455 USNO | +591205 |V1205 Oph |170035.4-172720 |RRAB | 17.8 | 19.2 | |p |35659.710 | | 0.48253 |17 | |05570 USNO | +591206 |V1206 Oph |170034.5-171018 |SRA | 15.2 | 16.0 | |p |35665. | | 310.0 | | |05455 GSC | +591207 |V1207 Oph |170034.7-164341 |M | 15.0 |< 19.6 | |p |36750. | | 173.0 | | |05455 USNO | +591208 |V1208 Oph |170049.5-215658 |E: | 15.6 | 16.4 | |p |35607.959 | | | | |05455 GSC22| +591209 |V1209 Oph |170050.8-220358 |SRA | 15.5 | 17.4 | |p | | | | | |05455 GSC22| +591210 |V1210 Oph |170046.7-200710 |RRAB | 15.4 | 16.6 | |p |35656.814 | | 0.58186 |22 | |05570 USNO | +591211 |V1211 Oph |170047.4-194209 |RRAB | 15.5 | 16.7 | |p |35636.88 | | 0.47757 |20 | |05570 USNO | +591212 |V1212 Oph |170047.2-191426 |RRAB | 15.8 | 16.8 | |p |35632.89 | | 0.66828 |17 | |05570 GSC22| +591213 |V1213 Oph |170102.7-203917 |M | 14.6 | 19.9 | |p |35645. | | | | |05455 USNO | +591214 |V1214 Oph |170104.8-213127 |SRA | 15.4 | 16.5 | |p | | | | | |05455 GSC22| +591215 |V1215 Oph |170107.0-214632 |RRAB | 15.0 | 16.4 | |p |35653.750 | | 0.54958 |20 | |05570 GSC22| +591216 |V1216 Oph |170102.3-184516 |RRAB | 16.2 | 17.2 | |p |35653.743 | | 0.70695 |20 | |05570 USNO | +591217 |V1217 Oph |170104.5-181936 |SRA | 15.7 | 16.7 | |p | | | | | |05455 GSC22| +591218 |V1218 Oph |170113.3-190810 |RRAB | 15.6 | 16.8 | |p |35637.857 | | 0.48260 |17 | |05570 USNO | +591219 |V1219 Oph |170117.4-203831 |RRAB | 15.6 | 16.7 | |p |35655.75 | | 0.72771 |23 | |05570 USNO | +591220 |V1220 Oph |170118.9-205043 |RRAB | 15.9 | 16.9 | |p |35662.902 | | 0.59577 |20 | |05570 USNO | +591221 |V1221 Oph |170124.2-215739 |SRA | 16.6 |< 18.4 | |p | | | | | |05455 GSC22| +591222 |V1222 Oph |170116.1-191436 |LB | 16.5 | 16.9 | |p | | | | | |05455 GSC22| +591223 |V1223 Oph |170125.4-213824 |SRA | 17.4 | 18.3 | |p | | | | | |05455 GSC22| +591224 |V1224 Oph |170114.9-162305 |RRAB | 16.0 | 17.1 | |p |35665.81 | | 0.52445 |17 | |05570 GSC22| +591225 |V1225 Oph |170118.0-174212 |SRA | 16.8 | 18.3 | |p | | | 174.6 | | |05455 GSC22| +591226 |V1226 Oph |170133.5-211236 |E | 14.8 | 15.4 | |p |35960.916 | | | | |05455 USNO | +591227 |V1227 Oph |170122.8-170936 |SRA | 15.2 | 15.8 | |p | | | | | |05455 GSC | +591228 |V1228 Oph |170126.6-182802 |RRAB | 16.1 | 18.1 | |p |35665.759 | | 0.44519 |24 | |05570 USNO | +591229 |V1229 Oph |170129.0-172841 |RR: | 16.3 | 17.1 | |p |35688.692 | | | | |05570 GSC22| +591230 |V1230 Oph |170140.7-221648 |RRAB | 15.9 | 17.3 | |p |35634.86 | | 0.60768 |20 | |05570 USNO | +591231 |V1231 Oph |170132.9-174025 |RRAB | 16.5 | 17.6 | |p |35653.745 | | 0.57450 |17 : | |05570 USNO | +591232 |V1232 Oph |170138.3-175222 |E: | 16.4 | 17.0 | |p |35688.797 | | | | |05455 USNO | +591233 |V1233 Oph |170145.8-204727 |E/SD: | 16.8 | 19.0 | |p |36760.802 | | 1.21 /N| | |05455 GSC22| +591234 |V1234 Oph |170142.8-185401 |RRAB | 15.5 | 16.8 | |p |35656.76 | | 0.52412 |18 | |05570 USNO | +591235 |V1235 Oph *|170150.0-202101 |N: | 17.0 |< 20.8 | |p |36810. |1959 | | | |05455 GSC22| +591236 |V1236 Oph |170158.8-223454 |RRAB | 17.6 | 19.2 | |p |35665.74 | | 0.65001 |15 | |05570 USNO | +591237 |V1237 Oph |170153.2-200114 |E/SD: | 16.5 | 17.4 | |p |35667.790 | | 3.43112 | | |05455 GSC22| +591238 |V1238 Oph |170203.0-204703 |RRAB | 15.5 | 16.9 | |p |35638.93 | | 0.48714 |16 | |05570 GSC22| +591239 |V1239 Oph |170157.1-184507 |LB | 16.8 | 17.6 | |p | | | | | |05455 USNO | +591240 |V1240 Oph *|170200.8-184845 |RRC | 16.5 | 17.4 | |p |35653.781 | | 0.29588 |43 : | |05570 USNO | +591241 |V1241 Oph |170202.3-190045 |RRAB | 15.2 | 16.4 | |p |35657.688 | | 0.64061 | | |05570 USNO | +591242 |V1242 Oph |170210.3-212847 |RRAB | 16.5 | 18.1 | |p |35635.86 | | 0.63216 |17 | |05570 GSC22| +591243 |V1243 Oph |170202.2-180012 |RR | 17.1 | 17.7 | |p |35668.928 | | 0.64599 |26 : | |05570 USNO | +591244 |V1244 Oph *|170204.5-180121 |RRAB | 17.5 | 18.5 | |p |35632.83 | | 0.64303 |15 | |05570 USNO | +591245 |V1245 Oph |170206.4-185251 |SRB | 14.2 | 14.9 | |p | | | | | |05455 GSC | +591246 |V1246 Oph |170214.5-215908 |SRA | 15.4 | 17.0 | |p | | | 110. : | | |05455 USNO | +591247 |V1247 Oph |170217.7-215822 |RRAB | 16.0 | 17.2 | |p |35665.86 | | 0.52023 |26 | |05570 USNO | +591248 |V1248 Oph |170220.6-222928 |RRAB | 16.4 | 18.2 | |p |35653.78 | | 0.58742 |14 | |05570 GSC22| +591249 |V1249 Oph |170209.4-175340 |RRAB | 16.4 | 17.8 | |p |35656.702 | | 0.61625 |15 | |05570 USNO | +591250 |V1250 Oph |170210.8-180454 |RR | 16.3 | 17.2 | |p |35638.872 | | 0.52590 |25 : | |05570 USNO | +591251 |V1251 Oph |170212.3-181931 |RRAB | 16.0 | 17.3 | |p |35655.665 | | 0.55514 |18 : | |05570 USNO | +591252 |V1252 Oph |170226.8-223755 |RRAB | 18.1 | 19.3 | |p |35665.88 | | 0.50940 |20 : | |05570 USNO | +591253 |V1253 Oph |170226.4-205608 |RRAB | 15.5 | 17.1 | |p |35635.827 | | 0.42889 |18 | |05570 USNO | +591254 |V1254 Oph |170228.9-215458 |SRB | 17.3 | 17.7 | |p | | | | | |05455 USNO | +591255 |V1255 Oph |170237.9-223205 |RRAB | 17.0 | 18.4 | |p |35636.785 | | 0.47400 |30 : | |05570 USNO | +591256 |V1256 Oph |170228.4-182111 |RRAB | 16.0 | 17.3 | |p |35688.74 | | 0.50035 | | |05570 USNO | +591257 |V1257 Oph |170230.0-181402 |RRAB | 14.7 | 15.7 | |p |35637.871 | | 0.51745 |14 | |05570 USNO | +591258 |V1258 Oph *|170238.7-215455 |RRAB | 15.9 | 17.4 | |p |35636.97 | | 0.68269 |15 | |05570 USNO | +591259 |V1259 Oph |170238.9-212026 |SRA | 15.4 | 16.8 | |p | | | | |M2 |05455 GSC22| +591260 |V1260 Oph |170232.1-184326 |SRB: | 17.5 | 18.6 | |p | | | | | |05455 USNO | +591261 |V1261 Oph *|170228.5-163631 |RR | 16.0 | 16.5 | |p |35637.99 :| | 0.51598 |40 : | |05570 USNO | +591262 |V1262 Oph *|170230.9-170735 |RR | 17.2 | 17.9 | |p |35657.78 | | 0.47315 |37 | |05570 USNO | +591263 |V1263 Oph |170241.3-210328 |RRAB | 17.6 | 19.1 | |p |35668.820 | | 0.51051 | | |05570 USNO | +591264 |V1264 Oph |170236.0-182901 |SRB | 15.6 | 16.0 | |p | | | | |M2 |05455 USNO | +591265 |V1265 Oph |170240.3-195357 |RRAB | 15.8 | 17.0 | |p |35657.85 | | 0.56541 |14 | |05570 USNO | +591266 |V1266 Oph |170236.3-172824 |SRA | 18.1 | 19.3 | |p | | | | | |05455 USNO | +591267 |V1267 Oph |170252.7-215303 |RRAB | 16.9 | 18.0 | |p |35659.77 | | 0.56020 |14 | |05570 USNO | +591268 |V1268 Oph |170253.0-211421 |RRAB | 17.0 | 18.1 | |p |35634.83 | | 0.51913 |16 | |05570 USNO | +591269 |V1269 Oph |170246.3-183348 |SRA | 16.1 | 17.3 | |p | | | | | |05455 GSC22| +591270 |V1270 Oph |170257.3-205535 |RRC | 16.8 | 17.6 | |p |35637.95 | | 0.37157 |43 : | |05570 USNO | +591271 |V1271 Oph |170259.1-212255 |SRB | 15.3 | 16.3 | |p | | | | |M4 |05455 USNO | +591272 |V1272 Oph |170302.1-222916 |M | 15.7 |< 20.8 | |p |35600. :| | 270. : | | |05455 USNO | +591273 |V1273 Oph |170255.4-182322 |RRAB | 17.4 | 18.2 | |p |35630.83 | | 0.55240 |19 | |05570 USNO | +591274 |V1274 Oph |170303.9-212723 |SXPHE | 15.1 | 16.4 | |p |35630.762 | | 0.16287 |14 | |05570 USNO | +591275 |V1275 Oph |170301.3-191038 |SRA | 14.3 | 16.1 | |p | | | 143.5 | |M2-M5 |05455 GSC22| +591276 |V1276 Oph *|170305.7-205754 |RRAB | 14.3 | 15.57 | |B |35658.90 | | 0.40487 |14 | |05570 USNO | +591277 |V1277 Oph |170316.7-211853 |SRA | 12.2 | 15.2 | |p | | | | | |05455 06286| +591278 |V1278 Oph |170322.9-221111 |RRAB | 17.9 | 19.2 | |p |35661.865 | | 0.46313 |12 | |05570 USNO | +591279 |V1279 Oph |170311.3-171827 |RRC | 16.5 | 17.1 | |p |35640.98 | | 0.30812 |27 : | |05570 USNO | +591280 |V1280 Oph |170319.3-195046 |RRAB | 16.1 | 17.3 | |p |35664.90 | | 0.52957 |22 | |05570 USNO | +591281 |V1281 Oph |170326.1-214819 |SRB | 14.0 | 14.9 | |p | | | | |M7 |05455 GSC | +591282 |V1282 Oph |170323.2-195423 |M | 14.2 | 17.8 | |p |35625. | | 212.5 | |M4-M8 |05455 00551| +591283 |V1283 Oph |170323.4-190918 |RRAB | 16.4 | 18.1 | |p |35662.843 | | 0.40482 |12 | |05570 USNO | +591284 |V1284 Oph |170327.6-203624 |RR: | 15.4 | 16.2 | |p | | | | |F0 |05570 USNO | +591285 |V1285 Oph |170323.1-183305 |RRAB | 15.3 | 16.8 | |p |35689.885 | | 0.43782 |15 | |05570 USNO | +591286 |V1286 Oph |170330.9-214901 |RRAB | 15.7 | 17.1 | |p |35638.882 | | 0.51460 |13 | |05570 USNO | +591287 |V1287 Oph |170329.8-202055 |RRAB | 15.5 | 17.1 | |p |35654.735 | | 0.55649 |19 | |05570 USNO | +591288 |V1288 Oph |170337.0-192248 |M | 14.2 | 17.8 | |p |36755. | | 179.0 | |M2-M7 |05455 06286| +591289 |V1289 Oph |170342.7-175719 |L | 17.5 | 18.2 | |p | | | | | |05455 USNO | +591290 |V1290 Oph |170352.7-214421 |M | 14.2 | 19.6 | |p |36725. :| | 313. : | | |05455 USNO | +591291 |V1291 Oph |170352.8-201753 |RRAB | 16.3 | 17.6 | |p |35635.726 | | 0.65349 |18 | |05570 USNO | +591292 |V1292 Oph |170352.7-200347 |RRAB | 16.1 | 17.6 | |p |35664.775 | | 0.51873 |20 | |05570 USNO | +591293 |V1293 Oph |170349.3-181637 |RRAB | 16.2 | 17.5 | |p |35655.767 | | 0.45965 |21 | |05570 USNO | +591294 |V1294 Oph |170353.4-192845 |RRAB | 15.8 | 17.2 | |p |35654.733 | | 0.44095 |20 | |05570 USNO | +591295 |V1295 Oph |170350.5-175841 |RRAB | 16.4 | 17.9 | |p |35640.929 | | 0.50310 |14 | |05570 USNO | +591296 |V1296 Oph *|170354.5-175516 |RRAB | 15.8 | 17.4 | |p |35688.811 | | 0.51927 |10 | |05570 USNO | +591297 |V1297 Oph |170406.1-203324 |SRB | 16.5 | 17.5 | |p | | | | |M6 |05455 USNO | +591298 |V1298 Oph |170408.4-204942 |RRC | 15.7 | 16.6 | |p |35655.77 | | 0.26570 |33 | |05570 USNO | +591299 |V1299 Oph *|170404.2-163856 |RR | 16.8 | 17.7 | |p |35637.727 | | 0.61060 |33 | |05570 GSC22| +591300 |V1300 Oph *|170416.6-205614 |SRB | 14.0 | 16.5 | |p | | | 166. : | |M4-M6.5 |05455 GSC22| +591301 |V1301 Oph |170416.4-184627 |L | 15.9 | 16.3 | |p | | | | | |05455 GSC | +591302 |V1302 Oph |170430.1-221011 |SRA | 19.1 |< 20.2 | |p | | | | | |05455 GSC22| +591303 |V1303 Oph |170426.9-210048 |RRAB | 15.1 | 17.0 | |p |35640.894 | | 0.51143 |15 | |05570 GSC22| +591304 |V1304 Oph |170422.3-183737 |RRAB | 15.8 | 17.2 | |p |35657.731 | | 0.69402 |23 | |05570 GSC22| +591305 |V1305 Oph *|170430.1-211645 |EW/KW | 17.2 | 17.9 | 17.9 : |p |35637.815 | | 0.37026 | | |05455 USNO | +591306 |V1306 Oph |170427.0-193249 |RRAB | 16.2 | 17.5 | |p |35665.889 | | 0.55584 |13 | |05570 USNO | +591307 |V1307 Oph *|170435.3-211016 |RR | 16.2 | 16.8 | |p |35636.801 | | 0.49008 | | |05570 USNO | +591308 |V1308 Oph |170425.6-171002 |SRA | 17.1 | 17.8 | |p | | | | | |05455 USNO | +591309 |V1309 Oph |170433.6-194401 |SRA | 14.5 | 15.9 | |p | | | | | |05455 USNO | +591310 |V1310 Oph |170437.3-205329 |SRB | 15.5 | 16.5 | |p | | | | |M5-M6.5 |05455 USNO | +591311 |V1311 Oph |170441.4-213643 |RRAB | 16.3 | 17.1 | |p |35630.80 | | 0.64735 |18 | |05570 USNO | +591312 |V1312 Oph |170437.6-191236 |RRAB | 15.6 | 17.1 | |p |35638.836 | | 0.49018 |15 | |05570 USNO | +591313 |V1313 Oph |170445.7-202418 |RRAB | 16.4 | 17.7 | |p |35636.830 | | 0.65150 |29 | |05570 GSC22| +591314 |V1314 Oph |170445.0-182759 |RRAB | 17.0 | 18.4 | |p |35656.75 | | 0.62803 |24 | |05570 USNO | +591315 |V1315 Oph |170451.5-205409 |RRC | 16.0 | 16.7 | |p |35633.92 | | 0.41560 |31 | |05570 USNO | +591316 |V1316 Oph |170442.7-165958 |SRB | 13.2 | 14.6 | |p | | | | | |05455 06286| +591317 |V1317 Oph |170445.8-180745 |LB | 16.7 | 17.3 | |p | | | | |M7 |05455 USNO | +591318 |V1318 Oph |170450.6-202040 |RRAB | 16.7 | 17.8 | |p |35657.835 | | 0.45936 |18 | |05570 USNO | +591319 |V1319 Oph |170453.5-193538 |RR | 15.5 | 16.5 | |p |35637.86 | | 0.51167 | | |05570 USNO | +591320 |V1320 Oph |170451.1-183817 |RRAB | 16.5 | 18.0 | |p |35657.86 | | 0.50624 |15 | |05570 USNO | +591321 |V1321 Oph |170452.8-185530 |RR: | 15.9 | 16.5 | |p | | | | | |05570 USNO | +591322 |V1322 Oph |170343.3+115156 |RR | 15. | 16. | |p |39287.45 | | | | |05515 05515| +591323 |V1323 Oph *|170458.9-181900 |RRAB | 16.0 | 17.4 | |p |35632.70 | | 0.49364 |17 | |05570 USNO | +591324 |V1324 Oph |170457.8-171848 |RRAB | 16.8 | 18.0 | |p |35654.683 | | 0.43130 |13 | |05570 GSC22| +591325 |V1325 Oph |170459.9-181022 |RRAB | 15.6 | 17.0 | |p |35636.98 | | 0.52762 |16 | |05570 USNO | +591326 |V1326 Oph |170502.3-185930 |UG | 17.9 |< 20.2 | |p | | |( 20. :) | | |05455 GSC22| +591327 |V1327 Oph |170511.6-223144 |RRAB | 15.8 | 16.7 | |p |35653.679 | | 0.54696 |27 | |05570 USNO | +591328 |V1328 Oph |170509.0-205733 |RRAB | 15.9 | 17.6 | |p |35630.80 | | 0.48375 |21 | |05570 USNO | +591329 |V1329 Oph |170501.6-175518 |LB | 15.8 | 16.3 | |p | | | | | |05455 USNO | +591330 |V1330 Oph |170504.6-183022 |LB | 15.5 | 16.0 | |p | | | | | |05455 USNO | +591331 |V1331 Oph |170516.0-223808 |RRAB | 17.5 | 19.1 | |p |35634.81 | | 0.61538 |11 | |05570 USNO | +591332 |V1332 Oph *|170510.6-193444 |RRAB | 14.3 | 15.3 | |p |35638.895 | | 0.63748 |23 | |05570 USNO | +591333 |V1333 Oph |170520.5-223753 |M | 16.2 |< 19.9 | |p |36740. | | | | |05455 USNO | +591334 |V1334 Oph |170510.7-173251 |RRAB | 14.6 | 16.3 | |p |35656.732 | | 0.46586 |15 | |05570 USNO | +591335 |V1335 Oph |170515.6-183459 |SRA | 15.7 | 16.4 | |p | | | 100. : | |M2 |05455 USNO | +591336 |V1336 Oph |170529.1-223242 |M | 16.0 |< 19.0 | |p |35640. | | | | |05455 USNO | +591337 |V1337 Oph |170527.4-214147 |RRAB | 17.0 | 18.1 | |p |35638.812 | | 0.59481 |14 | |05570 USNO | +591338 |V1338 Oph |170524.4-201804 |RRAB | 16.0 | 17.2 | |p |35656.650 | | 0.43216 |17 | |05570 USNO | +591339 |V1339 Oph |170527.9-211822 |SR | 16.2 | 17.1 | |p | | | | | |05455 USNO | +591340 |V1340 Oph |170528.6-215313 |RRAB | 16.9 | 18.2 | |p |35655.844 | | 0.71265 |18 | |05570 USNO | +591341 |V1341 Oph |170527.6-204557 |RRAB | 16.1 | 17.3 | |p |35689.776 | | 0.57324 |16 | |05570 USNO | +591342 |V1342 Oph |170538.3-210221 |SRB | 14.9 | 16.1 | |p | | | | |M2 |05455 USNO | +591343 |V1343 Oph |170542.6-221151 |L | 16.5 | 16.9 | |p | | | | | |05455 USNO | +591344 |V1344 Oph |170535.4-182746 |RRAB | 16.2 | 17.6 | |p |35664.829 | | 0.47968 |14 | |05570 USNO | +591345 |V1345 Oph |170537.5-180612 |RRAB | 15.9 | 18.0 | |p |35638.857 | | 0.43458 |18 | |05570 USNO | +591346 |V1346 Oph |170544.8-210152 |M | 14.2 | 17.3 | |p |35660. | | 168.2 | |M2-M6.5 |05455 USNO | +591347 |V1347 Oph |170550.1-214707 |L | 17.0 | 17.8 | |p | | | | | |05455 USNO | +591348 |V1348 Oph *|170549.8-201150 |RRC | 16.0 | 16.8 | |p |35653.824 | | 0.38340 |45 : | |05570 USNO | +591349 |V1349 Oph |170554.0-211658 |RRAB | 16.3 | 18.2 | |p |35635.833 | | 0.47566 |10 | |05570 USNO | +591350 |V1350 Oph |170556.7-223124 |RRAB | 17.1 | 18.5 | |p |35636.833 | | 0.49395 |12 | |05570 USNO | +591351 |V1351 Oph |170546.4-174800 |RRAB | 16.2 | 17.2 | |p |35656.729 | | 0.53798 |15 | |05570 USNO | +591352 |V1352 Oph |170551.9-193651 |SRB | 14.9 | 16.0 | |p | | | | |M1 |05455 USNO | +591353 |V1353 Oph |170600.6-215741 |M | 17.4 |< 20.4 | |p |35600. :| | | |Me |05455 GSC | +591354 |V1354 Oph |170558.6-210221 |L | 15.3 | 16.1 | |p | | | | | |05455 USNO | +591355 |V1355 Oph *|170601.3-211311 |RRAB | 16.8 | 18.2 | |p |35654.698 | | 0.56545 |22 | |05570 USNO | +591356 |V1356 Oph |170602.5-201649 |RRAB | 15.6 | 17.0 | |p |35658.822 | | 0.43938 |19 | |05570 USNO | +591357 |V1357 Oph |170601.8-181636 |RRAB | 15.6 | 17.2 | |p |35630.791 | | 0.58888 |23 | |05570 USNO | +591358 |V1358 Oph |170603.1-183802 |L | 15.7 | 16.4 | |p | | | | | |05455 USNO | +591359 |V1359 Oph |170612.5-205156 |SRA | 16.1 | 17.4 | |p | | | 142. : | |M6.5 |05455 USNO | +591360 |V1360 Oph |170610.1-192950 |RRAB | 14.8 | 16.1 | |p |35653.796 | | 0.34608 |22 | |05570 USNO | +591361 |V1361 Oph |170607.5-180244 |SRB | 16.1 | 18.7 | |p | | | | |M6 |05455 USNO | +591362 |V1362 Oph |170616.1-200256 |RRAB | 15.6 | 17.3 | |p |35653.730 | | 0.49341 |17 | |05570 USNO | +591363 |V1363 Oph |170617.9-204117 |M | 15.8 | 19.8 | |p |35608. :| | 210.5 | | |05455 USNO | +591364 |V1364 Oph |170616.3-184951 |RRAB | 15.7 | 17.3 | |p |35632.979 | | 0.55538 |10 | |05570 USNO | +591365 |V1365 Oph |170618.0-195412 |SR | 16.4 | 17.6 | |p | | | | | |05455 USNO | +591366 |V1366 Oph |170621.0-191640 |RRAB | 15.3 | 16.2 | |p |35632.896 | | 0.57911 |21 | |05570 USNO | +591367 |V1367 Oph |170626.6-211257 |RRAB | 16.3 | 17.7 | |p |35661.853 | | 0.48391 |15 | |05570 USNO | +591368 |V1368 Oph |170622.8-190800 |RRAB | 16.2 | 17.7 | |p |35640.956 | | 0.52651 |16 | |05570 USNO | +591369 |V1369 Oph |170630.3-200540 |RRC | 16.6 | 17.2 | |p |35638.918 | | 0.32300 |42 | |05570 USNO | +591370 |V1370 Oph |170632.2-204437 |L | 15.9 | 16.5 | |p | | | | | |05455 USNO | +591371 |V1371 Oph |170634.3-194542 |L | 13.7 |< 15.5 | |p | | | | | |05455 06286| +591372 |V1372 Oph |170638.4-214628 |RRAB | 15.9 | 17.0 | |p |35659.808 | | 0.51497 |20 | |05570 GSC22| +591373 |V1373 Oph |170631.6-180519 |M | 14.0 | 17.0 | |p |35630. | | 148.2 | | |05455 GSC | +591374 |V1374 Oph |170638.9-202941 |RRAB | 14.9 | 16.6 | |p |35657.762 | | 0.48483 |23 | |05570 USNO | +591375 |V1375 Oph |170637.8-190026 |RRAB | 16.1 | 17.5 | |p |35688.688 | | 0.51172 |19 | |05570 USNO | +591376 |V1376 Oph |170639.9-194549 |M | 13.7 | 17.6 | |p |35672. | | 186.0 | |M2-M7 |05455 USNO | +591377 |V1377 Oph |170634.3-164735 |RRAB | 16.6 | 17.8 | |p |35658.843 | | 0.52751 |19 | |05570 USNO | +591378 |V1378 Oph |170642.5-193606 |E | 17.3 | 19.0 | |p |36688.844 | | | | |05455 USNO | +591379 |V1379 Oph |170646.8-210129 |M | 15.3 | 18.4 | |p |36690. | | 273.0 | |M7-M8.5 |05455 USNO | +591380 |V1380 Oph |170647.7-212241 |RRAB | 17.0 | 18.0 | |p |35634.814 | | 0.54096 |15 | |05570 USNO | +591381 |V1381 Oph |170642.6-165211 |E | 14.0 | 15.5 | |p |35655.741 | | 2.77901 | | |05455 GSC | +591382 |V1382 Oph |170644.5-172312 |M | 15.1 | 18.9 | |p |36760. | | 207.0 | |M4-M8 |05455 USNO | +591383 |V1383 Oph |170649.9-195017 |RRAB | 15.6 | 17.0 | |p |35661.869 | | 0.45772 |13 | |05570 USNO | +591384 |V1384 Oph |170658.0-220831 |RRAB | 16.8 | 18.0 | |p |35659.652 | | 0.51200 |18 | |05570 USNO | +591385 |V1385 Oph |170659.1-214122 |SR | 17.0 | 18.2 | |p | | | | | |05455 USNO | +591386 |V1386 Oph |170658.1-200320 |RRAB | 16.0 | 17.2 | |p |35635.840 | | 0.55070 |20 | |05570 USNO | +591387 |V1387 Oph |170655.9-181859 |M | 14.7 | 18.7 | |p |36800. | | 157.4 | |M1-M5: |05455 USNO | +591388 |V1388 Oph |170704.7-213052 |M | 13.5 |< 19.1 | |p |35660. | | 197.2 | |M2-M7 |05455 USNO | +591389 |V1389 Oph |170653.8-170422 |RRAB | 16.4 | 17.9 | |p |35665.755 | | 0.50120 |10 | |05570 USNO | +591390 |V1390 Oph |170702.6-201116 |M | 15.2 |< 19.1 | |p |36810. | | 200.0 | |M4-M8 |05455 USNO | +591391 |V1391 Oph |170704.9-204441 |M | 15.0 | 19.5 | |p |36810. :| | 111. : | |M2-M6.5 |05455 USNO | +591392 |V1392 Oph |170705.5-203514 |LB | 14.4 | 15.0 | |p | | | | |M3 |05455 GSC | +591393 |V1393 Oph |170703.0-172449 |LB: | 15.6 | 16.5 | |p | | | | |M2 |05455 USNO | +591394 |V1394 Oph |170705.2-180957 |RRAB | 15.9 | 16.9 | |p |35633.961 | | 0.69650 |20 | |05570 USNO | +591395 |V1395 Oph |170713.8-213722 |RRAB | 16.4 | 17.4 | |p |35634.863 | | 0.56446 |20 | |05570 USNO | +591396 |V1396 Oph |170713.9-210355 |RRAB | 15.6 | 17.0 | |p |35636.913 | | 0.53724 |21 | |05570 USNO | +591397 |V1397 Oph |170716.4-204819 |RRAB | 15.4 | 16.6 | |p |35655.733 | | 0.55737 |15 | |05570 USNO | +591398 |V1398 Oph |170716.9-201023 |RRAB | 16.3 | 17.0 | |p |35636.898 | | 0.60151 |25 | |05570 USNO | +591399 |V1399 Oph |170722.7-221554 |E | 17.1 | 18.2 | |p |35637.845 | | | | |05455 USNO | +591400 |V1400 Oph |170722.1-213535 |M | 15.3 | 17.9 | |p |36810. :| | 175. : | |M2-M7 |05455 USNO | +591401 |V1401 Oph |170714.9-180219 |RRAB | 15.7 | 17.2 | |p |35637.947 | | 0.59209 |25 | |05570 USNO | +591402 |V1402 Oph |170719.4-194404 |RRAB | 15.0 | 16.1 | |p |35665.802 | | 0.48865 |14 | |05570 USNO | +591403 |V1403 Oph *|170726.3-220443 |M | 15.3 | 19.5 | |p |36720. | | 179. : | | |05455 USNO | +591404 |V1404 Oph |170719.7-192621 |RRAB | 15.3 | 16.5 | |p |35664.850 | | 0.45829 |11 | |05570 USNO | +591405 |V1405 Oph |170723.4-205556 |SRA | 18.4 | 20.0 | |p | | | 198.8 | | |05455 USNO | +591406 |V1406 Oph |170720.9-172849 |RRAB | 15.8 | 16.4 | |p |35661.886 | | 0.51400 |23 | |05570 USNO | +591407 |V1407 Oph |170731.7-214652 |SRB | 16.4 | 17.4 | |p | | | | | |05455 USNO | +591408 |V1408 Oph |170733.1-212922 |M | 15.0 | 19.0 | |p |36722. | | 198.0 | | |05455 USNO | +591409 |V1409 Oph |170731.4-195917 |RRAB | 16.2 | 17.1 | |p |35630.782 | | 0.53394 |15 | |05570 USNO | +591410 |V1410 Oph |170730.1-192233 |RRAB | 16.4 | 17.2 | |p |35664.883 | | 0.61373 |17 | |05570 USNO | +591411 |V1411 Oph |170730.9-165530 |RRAB | 16.8 | 17.7 | |p |35662.881 | | 0.48520 |30 | |05570 USNO | +591412 |V1412 Oph |170733.2-174800 |SRB | 15.8 | 17.1 | |p | | | | |M7 |05455 USNO | +591413 |V1413 Oph |170737.6-175507 |SRA | 14.8 | 17.0 | |p | | | 144. : | |M4-M7 |05455 USNO | +591414 |V1414 Oph |170737.0-174059 |RRAB | 15.1 | 16.6 | |p |35654.795 | | 0.57514 |15 | |05570 USNO | +591415 |V1415 Oph |170746.6-211553 |RRAB | 17.2 | 18.6 | |p |35638.877 | | 0.40999 |15 | |05570 USNO | +591416 |V1416 Oph |170745.6-184120 |RRAB | 15.7 | 16.9 | |p |35662.898 | | 0.64544 |13 | |05570 USNO | +591417 |V1417 Oph |170752.8-204516 |E/SD | 15.7 | 18.0 | |p |35632.969 | | 1.67737 | | |05455 USNO | +591418 |V1418 Oph |170752.2-201159 |RRC | 15.9 | 16.5 | |p |35637.922 | | 0.37053 |37 | |05570 USNO | +591419 |V1419 Oph |170745.3-163612 |RRAB | 15.8 | 17.4 | |p |35662.836 | | 0.46723 |16 | |05570 USNO | +591420 |V1420 Oph |170801.3-212433 |RRAB | 16.6 | 18.4 | |p |35655.702 | | 0.46256 |10 | |05570 USNO | +591421 |V1421 Oph |170756.6-184840 |SRB | 13.1 | 14.7 | |p | | | 240. : | |M5-M6.5 |05455 UCAC2| +591422 |V1422 Oph |170758.6-193707 |SRB | 15.8 | 17.1 | |p | | | | |M5-M7 |05455 USNO | +591423 |V1423 Oph *|170755.1-172339 |RRAB | 16.0 | 16.7 | |p |35654.747 | | 0.57383 |12 | |05570 USNO | +591424 |V1424 Oph |170801.8-200622 |RRAB | 15.0 | 16.2 | |p |35653.798 | | 0.54122 |20 | |05570 USNO | +591425 |V1425 Oph |170759.2-181637 |M | 15.4 |< 19.6 | |p |36700. | | 245.5 | |M6-M8 |05455 USNO | +591426 |V1426 Oph *|170805.6-202339 |RRAB | 16.6 | 17.8 | |p |35657.715 | | 0.46421 |22 | |05570 USNO | +591427 |V1427 Oph |170807.8-205706 |M | 13.8 | 17.2 | |p |36700. | | 142.8 | |M1-M6.5 |05455 GSC22| +591428 |V1428 Oph |170812.9-221656 |SR | 16.0 | 16.6 | |p | | | | | |05455 | +591429 |V1429 Oph |170715.2+051508 |RR | 14. | 15. | |p |39293.50 | | | | |05515 05515| +591430 |V1430 Oph |170808.3-180544 |RRAB | 16.0 | 17.6 | |p |35657.714 | | 0.45001 |12 | |05570 USNO | +591431 |V1431 Oph |170816.3-211947 |RRAB | 15.8 | 16.9 | |p |35633.821 | | 0.54426 |16 | |05570 USNO | +591432 |V1432 Oph |170820.8-223020 |RRAB | 16.6 | 18.0 | |p |35636.873 | | 0.57625 |18 | |05570 USNO | +591433 |V1433 Oph |170819.1-203004 |M | 13.4 | 18.1 | |p |36724. | | 170.0 | | |05455 00551| +591434 |V1434 Oph |170823.2-213532 |L | 17.1 | 17.5 | |p | | | | | |05455 USNO | +591435 |V1435 Oph |170825.9-220516 |RRAB | 15.9 | 17.5 | |p |35664.777 | | 0.61219 |15 | |05570 USNO | +591436 |V1436 Oph |170827.5-223406 |RRAB | 16.9 | 18.6 | |p |35688.727 | | 0.48003 |16 | |05570 USNO | +591437 |V1437 Oph |170825.6-195741 |RRAB | 15.8 | 17.0 | |p |35655.758 | | 0.43453 |19 | |05570 USNO | +591438 |V1438 Oph |170828.3-203407 |RRAB | 15.9 | 17.1 | |p |35636.838 | | 0.49500 |15 | |05570 USNO | +591439 |V1439 Oph |170828.7-185001 |RR | 15.7 | 16.4 | |p |35640.845 | | 0.60902 |20 | |05570 USNO | +591440 |V1440 Oph |170837.1-213212 |E/SD | 15.8 | 18.2 | |p |35662.896 | | 1.46120 | | |05455 USNO | +591441 |V1441 Oph |170837.0-203226 |SRA | 14.8 | 16.5 | |p | | | 153. : | |M3-M5 |05455 USNO | +591442 |V1442 Oph |170834.1-191928 |RRAB | 16.4 | 17.1 | |p |35656.634 | | 0.70971 |15 | |05570 USNO | +591443 |V1443 Oph |170833.8-182046 |L | 14.6 | 15.0 | |p | | | | | |05455 USNO | +591444 |V1444 Oph |170839.1-205245 |RRAB | 16.5 | 17.9 | |p |35663.837 | | 0.62928 |20 | |05570 USNO | +591445 |V1445 Oph |170839.1-193538 |RRAB | 15.4 | 16.2 | |p |35636.908 | | 0.59045 |14 | |05570 USNO | +591446 |V1446 Oph |170846.8-214158 |RRAB | 15.4 | 16.8 | |p |35632.787 | | 0.48059 |14 | |05570 USNO | +591447 |V1447 Oph |170837.1-170435 |RRAB | 17.0 | 18.0 | |p |35688.852 | | 0.57735 |15 | |05570 USNO | +591448 |V1448 Oph |170846.5-195456 |E | 17.8 | 19.2 | |p |36687.840 | | | | |05455 USNO | +591449 |V1449 Oph |170842.2-164600 |L | 14.7 | 15.2 | |p | | | | | |05455 USNO | +591450 |V1450 Oph |170848.3-190829 |M | 13.9 | 18.5 | |p |36750. | | 198.2 | |M4-M7 |05455 USNO | +591451 |V1451 Oph *|170857.1-213714 |SRA | 15.5 | 17.4 | |p | | | 153.8 | |M3 |05455 GSC | +591452 |V1452 Oph |170848.3-173236 |LB | 16.5 | 17.0 | |p | | | | |M6 |05455 USNO | +591453 |V1453 Oph |170852.8-190109 |E/SD | 17.4 | 20.4 | |p |35632.903 | | 4.17502 | | |05455 USNO | +591454 |V1454 Oph |170859.3-214129 |M | 17.4 |< 20.3 | |p |35690. :| | | | |05455 USNO | +591455 |V1455 Oph |170852.1-182417 |L | 15.8 | 16.7 | |p | | | | | |05455 USNO | +591456 |V1456 Oph |170855.2-190711 |L: | 17.6 | 18.1 | |p | | | | | |05455 USNO | +591457 |V1457 Oph |170900.1-195856 |RRC | 15.2 | 16.3 | |p |35665.838 | | 0.31459 |28 | |05570 USNO | +591458 |V1458 Oph |170857.4-183952 |RRC | 15.7 | 16.4 | |p |35640.892 | | 0.28519 |40 | |05570 USNO | +591459 |V1459 Oph |170859.7-181702 |RRAB | 15.7 | 16.8 | |p |35663.844 | | 0.33143 |20 | |05570 USNO | +591460 |V1460 Oph |170908.6-213601 |RRAB | 16.3 | 17.7 | |p |35659.718 | | 0.45610 |18 | |05570 USNO | +591461 |V1461 Oph |170910.9-220423 |SRA | 14.9 | 17.0 | |p | | | 122.8 | | |05455 GSC22| +591462 |V1462 Oph |170903.5-184801 |RRAB | 16.6 | 17.3 | |p |35664.838 | | 0.55598 |20 | |05570 USNO | +591463 |V1463 Oph |170917.1-222431 |SRB | 17.1 | 18.3 | |p | | | | | |05455 USNO | +591464 |V1464 Oph |170917.4-203217 |SRA | 17.2 | 18.9 | |p | | | 230.0 | | |05455 USNO | +591465 |V1465 Oph |170919.8-210732 |E | 16.7 | 18.5 | |p |36687.834 | | | | |05455 USNO | +591466 |V1466 Oph |170908.7-163727 |L | 16.0 | 16.8 | |p | | | | | |05455 USNO | +591467 |V1467 Oph |170916.5-185940 |RRAB | 14.7 | 16.6 | |p |35656.830 | | 0.45883 |20 | |05570 USNO | +591468 |V1468 Oph |170914.8-173746 |M | 14.1 | 18.9 | |p |35672. | | 213.0 | |M3-M9 |05455 GSC | +591469 |V1469 Oph |170917.6-185958 |RRAB | 14.8 | 16.3 | |p |35661.885 | | 0.44662 |14 | |05570 USNO | +591470 |V1470 Oph |170918.1-185211 |M | 15.0 | 18.8 | |p |36680. :| | 188.0 | |M4-M7 |05455 USNO | +591471 |V1471 Oph |170921.1-193135 |RRAB | 15.9 | 17.1 | |p |35640.967 | | 0.56275 |18 | |05570 USNO | +591472 |V1472 Oph |170915.7-172717 |SR | 17.2 | 18.3 | |p | | | | | |05455 GSC22| +591473 |V1473 Oph |170926.4-213420 |RRAB | 16.9 | 18.3 | |p |35662.822 | | 0.53009 |37 | |05570 USNO | +591474 |V1474 Oph *|170929.1-221924 |SRA | 16.9 | 18.4 | |p | | | 145. : | | |05455 GSC22| +591475 |V1475 Oph |170929.9-210706 |M | 13.8 |< 17.4 | |p |35662. | | 240.0 | |M4-M9 |05455 USNO | +591476 |V1476 Oph |170928.2-193131 |SRA | 14.8 | 17.0 | |p | | | 134. : | |M2-M6.5 |05455 USNO | +591477 |V1477 Oph |170930.7-200346 |RRAB | 17.4 | 18.7 | |p |35634.819 | | 0.47994 |12 | |05570 USNO | +591478 |V1478 Oph |170930.1-185606 |L | 13.0 | 15.3 | |p | | | | | |05455 USNO | +591479 |V1479 Oph |170934.1-185452 |RRAB | 15.1 | 16.9 | |p |35661.864 | | 0.47915 |12 : | |05570 USNO | +591480 |V1480 Oph |170935.8-190823 |L | 17.7 | 18.2 | |p | | | | | |05455 USNO | +591481 |V1481 Oph |170937.5-200101 |SRA | 14.7 | 16.6 | |p | | | 126.8 | |M2 |05455 GSC | +591482 |V1482 Oph |170935.2-190215 |M | 12.3 | 16.3 | |p |36736. | | 178.0 | |M5e-M8e |05455 06286| +591483 |V1483 Oph |170940.5-204602 |M | 15.0 | 17.5 | |p |35608. :| | | | |05455 USNO | +591484 |V1484 Oph |170947.5-213058 |RRAB | 17.0 | 18.3 | |p |35665.782 | | 0.45764 | | |05570 GSC22| +591485 |V1485 Oph |170948.5-214856 |RRAB | 17.3 | 18.4 | |p |35656.754 | | 0.55824 |12 | |05570 USNO | +591486 |V1486 Oph |170937.9-165301 |RRAB | 15.7 | 16.7 | |p |35638.848 | | 0.43487 |14 | |05570 USNO | +591487 |V1487 Oph |170940.6-180533 |RRAB | 16.0 | 17.3 | |p |35662.877 | | 0.45954 |26 | |05570 USNO | +591488 |V1488 Oph |170942.3-183312 |RRAB | 16.7 | 17.6 | |p |35653.781 | | 0.68397 |24 | |05570 USNO | +591489 |V1489 Oph |170940.5-165933 |SRA | 15.1 | 16.3 | |p | | | | | |05455 USNO | +591490 |V1490 Oph |170947.4-181419 |M | 15.7 |< 19.0 | |p |36810. | | 200.5 | |M7-M8.5 |05455 USNO | +591491 |V1491 Oph *|170955.5-211211 |M | 15.9 |< 19.4 | |p |36710. | | 165.6 | |M3-M6 |05455 USNO | +591492 |V1492 Oph *|170948.3-181721 |RRAB | 16.0 | 17.2 | |p |35657.765 | | 0.53669 |21 | |05570 USNO | +591493 |V1493 Oph |170957.6-212032 |M | 15.5 |< 19.4 | |p |36688. :| | 162.8 | | |05455 GSC22| +591494 |V1494 Oph |170955.4-184429 |RRAB | 15.6 | 17.1 | |p |35630.813 | | 0.51099 |17 | |05570 USNO | +591495 |V1495 Oph |171002.3-194038 |SRA | 16.6 | 17.4 | |p | | | | | |05455 USNO | +591496 |V1496 Oph |171001.9-172518 |RRAB | 15.0 | 16.8 | |p |35633.852 | | 0.52614 |18 | |05570 USNO | +591497 |V1497 Oph |171009.7-194944 |RRAB | 16.6 | 18.1 | |p |35636.783 | | 0.48966 |20 | |05570 USNO | +591498 |V1498 Oph |171003.9-172609 |M | 15.7 |< 20.0 | |p |36680. :| | 142. : | |M4-M8 |05455 USNO | +591499 |V1499 Oph |171004.0-172150 |RRAB | 15.8 | 16.9 | |p |35633.000 | | 0.48057 |20 | |05570 USNO | +591500 |V1500 Oph |171015.1-213652 |RRAB | 17.1 | 18.3 | |p |35657.890 | | 0.62898 |15 | |05570 USNO | +591501 |V1501 Oph |171014.7-203611 |RRAB | 16.0 | 17.2 | |p |35632.956 | | 0.47980 |15 | |05570 USNO | +591502 |V1502 Oph |171011.2-191022 |RRAB | 17.8 | 19.3 | |p |35633.962 | | 0.52104 |15 | |05570 USNO | +591503 |V1503 Oph |171015.0-190607 |M | 13.0 | 18.1 | |p |36722. | | 168.6 | |M1-M7 |00001 06286| +591504 |V1504 Oph |171016.5-192914 |RRAB | 16.1 | 17.8 | |p |35638.876 | | 0.49230 |20 | |05570 USNO | +591505 |V1505 Oph *|171020.8-211359 |SRA | 17.8 | 19.5 | |p | | | 80. : | | |05455 USNO | +591506 |V1506 Oph |171011.0-164001 |M | 15.2 |< 18.7 | |p |36810. :| | 310. : | | |05455 GSC | +591507 |V1507 Oph |171016.4-182252 |RRAB | 15.4 | 16.4 | |p |35654.812 | | 0.63721 |24 | |05570 USNO | +591508 |V1508 Oph |171022.3-203955 |RRAB | 16.2 | 16.9 | |p |35636.776 | | 0.60290 |12 | |05570 USNO | +591509 |V1509 Oph |171024.5-213455 |M | 15.8 |< 19.5 | |p |36050. :| | 302.0 | |M4-M8 |05455 USNO | +591510 |V1510 Oph |171026.8-215702 |E/DS | 17.0 | 18.7 | |p |35666.796 | | 25.9020 | | |05455 USNO | +591511 |V1511 Oph |171013.9-163126 |SR | 17.9 | 19.2 | |p | | | | | |05455 USNO | +591512 |V1512 Oph *|171023.5-200340 |RRC | 17.1 | 17.7 | |p |35634.833 | | 0.38847 |43 | |05570 USNO | +591513 |V1513 Oph |171016.2-163630 |RRAB | 16.8 | 17.7 | |p |35636.990 | | 0.56749 |25 | |05570 USNO | +591514 |V1514 Oph |171016.8-163907 |RRAB | 15.3 | 16.7 | |p |35635.844 | | 0.48256 |12 | |05570 USNO | +591515 |V1515 Oph |171028.5-191659 |M | 14.4 |< 18.2 | |p |35665. | | 257.5 | |M4-M7.5 |05455 USNO | +591516 |V1516 Oph |171032.5-202418 |SRB | 16.3 | 17.2 | |p | | | | | |05455 USNO | +591517 |V1517 Oph |171029.0-184723 |M | 16.1 |< 19.5 | |p | | | 303. | | |05455 USNO | +591518 |V1518 Oph |171033.0-191011 |RRAB | 15.4 | 16.7 | |p |35654.752 | | 0.70876 |15 | |05570 USNO | +591519 |V1519 Oph |171028.6-163746 |RRAB | 15.4 | 16.6 | |p |35653.767 | | 0.64757 |23 | |05570 USNO | +591520 |V1520 Oph |171037.9-201508 |RRAB | 17.1 | 17.8 | |p |35654.778 | | 0.60471 |20 | |05570 USNO | +591521 |V1521 Oph |171043.9-213238 |M | 12.9 | 18.1 | |p |36755. | | 173.6 | |M3-M7.5 |00001 00551| +591522 |V1522 Oph |171040.9-191726 |RRAB | 14.3 | 16.2 | |p |35653.790 | | 0.66166 : |20 | |05570 USNO | +591523 |V1523 Oph |171045.0-201755 |SRB | 16.1 | 16.8 | |p | | | | | |05455 USNO | +591524 |V1524 Oph |171038.2-171727 |M | 15.1 | 18.9 | |p |36760. | | 197.4 | |M2-M7 |05455 GSC | +591525 |V1525 Oph |171836.8-190951 |SR | 16.7 | 19.0 | |p | | | | | |05455 USNO | +591526 |V1526 Oph *|171049.5-214955 |RRC | 17.4 | 18.1 | |p |35655.798 | | 0.42345 : |40 : | |05570 USNO | +591527 |V1527 Oph |171043.9-183045 |RRAB | 16.0 | 17.3 | |p |35664.884 | | 0.68708 |18 | |05570 USNO | +591528 |V1528 Oph |171045.9-162625 |M | 16.0 | 18.6 | |p |35665. | | | | |05455 USNO | +591529 |V1529 Oph |171101.2-221328 |RRAB | 16.9 | 17.8 | |p |35658.953 | | 0.47439 |23 | |05570 USNO | +591530 |V1530 Oph |171104.0-210720 |RRAB | 16.9 | 18.2 | |p |35634.706 | | 0.46904 |16 | |05570 USNO | +591531 |V1531 Oph |171100.9-195249 |RRAB | 15.8 | 17.1 | |p |35653.784 | | 0.47019 |20 | |05570 USNO | +591532 |V1532 Oph *|171107.3-220518 |M | 16.7 |< 19.7 | |p |36760. | | 232.0 : | | |05455 GSC22| +591533 |V1533 Oph |171108.8-210334 |RRAB | 17.0 | 18.9 | |p |35656.699 | | 0.45409 |15 | |05570 GSC22| +591534 |V1534 Oph *|171117.5-205036 |SRA | 16.0 | 17.6 | |p | | | 253.0 | | |05455 USNO | +591535 |V1535 Oph |171120.8-213527 |RR: | 16.9 | 18.1 | |p |35659.718 | | | | |05570 USNO | +591536 |V1536 Oph |171110.9-171037 |E | 17.8 | 18.4 | |p |35665.832 | | 0.57822 | | |05455 USNO | +591537 |V1537 Oph |171117.7-193323 |RRAB | 14.8 | 16.1 | |p |35635.796 | | 0.51733 |14 | |05570 USNO | +591538 |V1538 Oph |171118.4-192720 |RRAB | 15.8 | 17.4 | |p |35665.830 | | 0.48880 |15 | |05570 | +591539 |V1539 Oph |171122.5-202905 |E/SD | 15.6 | 18.8 | |p |35663.839 | | 2.53280 | | |05455 USNO | +591540 |V1540 Oph |171114.4-170110 |RRAB | 16.6 | 17.9 | |p |35630.779 | | 0.46510 |21 | |05570 USNO | +591541 |V1541 Oph |171121.9-191333 |M | 13.2 | 18.8 | |p |36690. | | 362.9 | |M6-M9.5 |00001 06286| +591542 |V1542 Oph |171123.4-201103 |RRAB | 15.9 | 16.8 | |p |35634.805 | | 0.57694 |13 | |05570 USNO | +591543 |V1543 Oph |171118.0-165652 |RR: | 13.4 | 14.4 | |p |35665.840 | | | | |05570 GSC | +591544 |V1544 Oph |171119.0-170017 |RR: | 16.2 | 17.9 | |p |35688.751 | | | | |05570 USNO | +591545 |V1545 Oph |171128.3-200711 |RRAB | 16.4 | 17.1 | |p |35654.782 | | 0.60536 |15 | |05570 USNO | +591546 |V1546 Oph |171133.3-205715 |RRAB | 15.6 | 16.7 | |p |35638.937 | | 0.58621 : |17 | |05570 USNO | +591547 |V1547 Oph |171134.3-212711 |RR | 16.3 | 17.2 | |p |35668.834 | | 0.50966 | | |05570 USNO | +591548 |V1548 Oph *| | | | | | | | | | | | |N +591549 |V1549 Oph |171132.2-191223 |RRAB | 17.0 | 18.2 | |p |35632.773 | | 0.48849 |18 | |05570 USNO | +591550 |V1550 Oph |171137.0-181152 |RRAB | 15.5 | 16.8 | |p |35636.800 | | 0.49818 |14 | |05570 USNO | +591551 |V1551 Oph |171144.0-205526 |RRAB | 16.1 | 17.9 | |p |35608.946 | | 0.66976 |17 | |05570 USNO | +591552 |V1552 Oph |171144.0-203857 |SR | 14.7 | 16.1 | |p | | | | |M2 |05455 USNO | +591553 |V1553 Oph |171149.0-212034 |RRAB | 16.8 | 18.0 | |p |35634.637 | | 0.49605 |09 | |05570 USNO | +591554 |V1554 Oph *|171149.0-205049 |SRA | 14.5 | 16.4 | |p | | | 120.8 : | |M2 |05455 USNO | +591555 |V1555 Oph |171154.6-220237 |SRA | 17.0 | 18.9 | |p | | | | | |05455 USNO | +591556 |V1556 Oph |171150.7-204657 |RRAB | 16.2 | 17.1 | |p |35686.760 | | 0.40670 |16 | |05570 USNO | +591557 |V1557 Oph |171154.2-221121 |RRAB | 16.9 | 18.2 | |p |35661.915 | | 0.52934 |17 | |05570 USNO | +591558 |V1558 Oph |171146.5-182059 |M | 14.9 | 19.0 | |p |36758. | | 235.0 | |M6-M9 |05482 USNO | +591559 |V1559 Oph |171152.6-191612 |SRB | 12.9 | 14.1 | |p | | | | | |05455 00551| +591560 |V1560 Oph |171200.5-222923 |M | 15.4 | 19.1 | |p |36750. | | 166.8 | | |05455 USNO | +591561 |V1561 Oph |171156.8-200848 |RRAB | 16.1 | 17.4 | |p |35635.970 | | 0.56024 |15 | |05570 USNO | +591562 |V1562 Oph |171159.3-210910 |M: | 18.3 |< 19.4 | |p | | | | | |05455 USNO | +591563 |V1563 Oph |171153.5-183155 |RRAB | 15.1 | 16.6 | |p |35653.763 | | 0.54149 |17 | |05570 USNO | +591564 |V1564 Oph |171158.8-194623 |M | 17.0 |< 19.3 | |p |36050. :| | | | |05455 USNO | +591565 |V1565 Oph |171200.0-203247 |RR: | 16.3 | 16.8 | |p |35688.701 | | | | |05570 USNO | +591566 |V1566 Oph |171152.3-163810 |RRAB | 15.9 | 17.4 | |p |35638.826 | | 0.59420 |19 | |05570 USNO | +591567 |V1567 Oph |171154.0-163442 |E | 18.3 | 20.0 | |p |36762.818 | | | | |05455 USNO | +591568 |V1568 Oph *|171202.8-200011 |M | 15.6 | 18.5 | |p |36767. | | 157.2 : | | |05455 USNO | +591569 |V1569 Oph |171207.9-214156 |RRAB | 17.1 | 18.5 | |p |35659.744 | | 0.46059 |11 | |05570 USNO | +591570 |V1570 Oph |171159.6-181128 |RRAB | 15.1 | 16.0 | |p |35664.733 | | 0.51382 |21 | |05570 USNO | +591571 |V1571 Oph *|171203.7-182822 |RRAB | 16.9 | 17.9 | |p |35654.822 | | 0.61791 |16 | |05570 USNO | +591572 |V1572 Oph |171209.6-203347 |RRAB | 15.8 | 17.2 | |p |35633.887 | | 0.50111 |16 | |05570 USNO | +591573 |V1573 Oph *|171213.3-221644 |RRC: | 16.8 | 17.2 | |p |35634.657 | | 0.32114 |45 : | |05570 GSC22| +591574 |V1574 Oph |171204.5-182151 |RRAB | 16.0 | 17.0 | |p |35687.814 | | 0.57080 |18 | |05570 USNO | +591575 |V1575 Oph |171203.7-165145 |M | 16.4 |< 19.0 | |p |36780. | | 247.0 | | |05455 GSC | +591576 |V1576 Oph |171210.1-184729 |RRAB | 15.2 | 16.1 | |p |35654.760 | | 0.58681 |17 | |05570 USNO | +591577 |V1577 Oph |171212.9-200128 |SRB | 14.6 | 15.5 | |p | | | | | |05455 GSC | +591578 |V1578 Oph |171214.2-201455 |E/SD | 16.4 | 19.8 | |p |35633.862 | | 2.15285 | | |05455 USNO | +591579 |V1579 Oph |171221.8-220843 |RRAB | 16.8 | 18.0 | |p |35657.723 | | 0.47662 |16 | |05570 USNO | +591580 |V1580 Oph |171211.2-172555 |SR | 16.5 | 17.9 | |p | | | | |M7 |05455 USNO | +591581 |V1581 Oph |171213.3-172104 |E | 17.6 | 18.3 | |p |36810.714 | | | | |05455 USNO | +591582 |V1582 Oph |171221.3-203541 |SR | 15.5 | 16.4 | |p | | | | | |05455 USNO | +591583 |V1583 Oph *|171221.2-192400 |RR | 17.0 | 17.6 | |p |35638.53 | | 0.59334 |39 | |05570 USNO | +591584 |V1584 Oph |171218.1-170056 |RRAB | 16.4 | 17.6 | |p |35668.847 | | 0.55151 |20 | |05570 USNO | +591585 |V1585 Oph |171229.3-212347 |RRAB | 17.0 | 18.0 | |p |35633.882 | | 0.56640 |14 | |05570 USNO | +591586 |V1586 Oph |171224.0-190435 |RRAB | 17.0 | 17.7 | |p |35688.657 | | 0.61189 |17 | |05570 USNO | +591587 |V1587 Oph |171227.6-202343 |M | 16.1 |< 19.7 | |p |35950. :| | 220.0 | |M3-M7 |05455 USNO | +591588 |V1588 Oph |171228.8-200901 |RRAB | 16.2 | 17.6 | |p |35656.867 | | 0.63820 |20 | |05570 USNO | +591589 |V1589 Oph |171223.0-171952 |E | 16.6 | 17.4 | |p |35634.653 | | 0.59970 | | |05455 USNO | +591590 |V1590 Oph |171222.3-162434 |E | 16.0 | 18.9 | |p |36809.681 | | | | |05455 USNO | +591591 |V1591 Oph |171231.6-184425 |RRAB | 15.0 | 16.6 | |p |35636.944 | | 0.57104 |15 | |05570 USNO | +591592 |V1592 Oph |171243.8-221926 |RRAB | 17.8 | 19.1 | |p |35634.806 | | 0.47126 |13 | |05570 USNO | +591593 |V1593 Oph |171234.4-180301 |RRAB | 15.8 | 16.9 | |p |35634.777 | | 0.48880 |24 | |05570 USNO | +591594 |V1594 Oph |171237.0-191947 |RRAB | 16.2 | 17.6 | |p |35688.795 | | 0.55422 |16 | |05570 USNO | +591595 |V1595 Oph |171242.6-211904 |RRAB | 15.7 | 17.8 | |p |35655.781 | | 0.48394 |15 | |05570 USNO | +591596 |V1596 Oph |171244.8-214814 |E | 17.9 | 19.1 | |p |35656.822 | | 2.99401 | | |05455 USNO | +591597 |V1597 Oph |171234.7-174223 |RRAB | 16.4 | 18.0 | |p |35634.834 | | 0.58815 |22 | |05570 USNO | +591598 |V1598 Oph |171240.7-191319 |RRAB | 14.9 | 16.6 | |p |35632.722 | | 0.44278 |24 | |05570 USNO | +591599 |V1599 Oph |171234.8-164422 |E/SD: | 18.0 | 19.0 | |p |35656.828 | | 1.62909 | | |05455 USNO | +591600 |V1600 Oph |171141.4+073211 |RR | 15. | 16. | |p |39270.46 | | | | |05515 05515| +591601 |V1601 Oph |171249.7-211440 |RRAB | 16.1 | 17.8 | |p |35688.769 | | 0.45804 |15 | |05570 USNO | +591602 |V1602 Oph |171241.7-173815 |SRA | 14.8 | 15.9 | |p | | | 140. : | |M3 |05455 GSC | +591603 |V1603 Oph |171247.7-195706 |RRAB | 17.2 | 18.6 | |p |35688.751 | | 0.61588 |18 | |05570 USNO | +591604 |V1604 Oph |171250.9-211140 |RRAB | 15.5 | 16.9 | |p |35637.801 | | 0.50499 |20 | |05570 USNO | +591605 |V1605 Oph |171253.8-215103 |RR | 17.7 | 18.3 | |p |35657.793 | | 0.54330 |20 : | |05570 USNO | +591606 |V1606 Oph |171247.7-190338 |SR | 14.7 | 15.5 | |p | | | | |M6 |05455 USNO | +591607 |V1607 Oph |171247.1-174040 |RRAB | 15.7 | 17.3 | |p |35636.818 | | 0.49225 |16 | |05570 USNO | +591608 |V1608 Oph |171248.1-174357 |RRAB | 15.5 | 16.8 | |p |35665.834 | | 0.60051 |20 | |05570 USNO | +591609 |V1609 Oph |171300.2-203407 |RRAB | 15.6 | 17.4 | |p |35656.756 | | 0.47797 |14 | |05570 USNO | +591610 |V1610 Oph |171255.6-182155 |RRAB | 16.1 | 17.2 | |p |35662.857 | | 0.58776 |20 | |05570 USNO | +591611 |V1611 Oph |171259.3-190059 |RRC | 15.8 | 16.4 | |p |35654.717 | | 0.27925 : |36 : | |05570 USNO | +591612 |V1612 Oph |171258.4-182221 |SRB | 15.8 | 16.4 | |p | | | | |M3 |05455 USNO | +591613 |V1613 Oph |171306.2-211333 |M | 13.2 | 17.7 | |p |36686. | | 202.0 | |M2-M8 |00001 00551| +591614 |V1614 Oph |171257.1-173024 |M | 15.0 | 18.9 | |p |36740. | | 228.0 | |M3-M8.5 |05455 USNO | +591615 |V1615 Oph |171305.0-203417 |RRAB | 15.3 | 17.0 | |p |35640.915 | | 0.51152 |20 | |05570 USNO | +591616 |V1616 Oph *|171306.6-203918 |RRC: | 15.9 | 16.3 | |p |35636.907 | | 0.25845 : |32 | |05570 USNO | +591617 |V1617 Oph |171259.0-172143 |SR | 17.2 |< 18.4 | |p | | | | | |05455 USNO | +591618 |V1618 Oph |171304.5-190714 |RRAB | 16.8 | 18.3 | |p |35664.846 | | 0.56074 |16 | |05570 USNO | +591619 |V1619 Oph |171305.6-193621 |M | 15.6 |< 19.3 | |p |36780. | | 225.0 | | |05455 USNO | +591620 |V1620 Oph |171305.7-192633 |RRAB | 16.9 | 18.1 | |p |35658.785 | | 0.48967 |20 : | |05570 USNO | +591621 |V1621 Oph |171307.4-201458 |L | 16.0 | 17.0 | |p | | | | | |05455 USNO | +591622 |V1622 Oph |171302.9-163126 |RRAB | 15.6 | 17.0 | |p |35636.955 | | 0.50469 |16 | |05570 USNO | +591623 |V1623 Oph |171309.0-182108 |SRB | 14.6 | 15.6 | |p | | | | |M2 |05455 GSC22| +591624 |V1624 Oph |171314.1-163119 |M | 14.6 |< 18.6 | |p |35650. | | 241.5 | | |05455 | +591625 |V1625 Oph |171320.2-191427 |M | 14.2 | 16.8 | |p |35600. :| | 354.0 | |M6-M9 |05455 GSC | +591626 |V1626 Oph |171320.0-181305 |SRA | 16.4 | 18.3 | |p | | | 195.0 | |M4-M6.5 |05455 USNO | +591627 |V1627 Oph |171323.1-191635 |RRAB | 15.6 | 17.0 | |p |35654.711 | | 0.54969 |10 | |05570 USNO | +591628 |V1628 Oph *|171325.4-194742 |RRAB | 15.6 | 17.0 | |p |35638.909 | | 0.39595 |13 | |05570 USNO | +591629 |V1629 Oph |171329.8-212202 |M | 15.8 |< 19.1 | |p |35680. | | 241.0 | | |05455 USNO | +591630 |V1630 Oph |171340.0-223418 |SR | 15.5 | 16.5 | |p | | | | | |05455 USNO | +591631 |V1631 Oph |171328.7-165643 |M | 14.5 | 18.2 | |p |35650. | | 214. : | | |05455 USNO | +591632 |V1632 Oph |171335.0-191057 |SRA | 15.9 | 18.3 | |p | | | 254.0 | |M6 |05455 USNO | +591633 |V1633 Oph |171337.6-195642 |SRB | 15.5 | 16.4 | |p | | | 97. : | |M3 |05482 USNO | +591634 |V1634 Oph |171335.8-184545 |RRAB | 15.4 | 17.0 | |p |35633.782 | | 0.44489 |20 | |05570 USNO | +591635 |V1635 Oph |171344.3-220441 |RRAB | 17.2 | 18.6 | |p |35638.806 | | 0.55133 |20 | |05570 USNO | +591636 |V1636 Oph |171331.4-162958 |RRC | 16.8 | 17.2 | |p |35661.856 | | 0.43673 |27 | |05570 USNO | +591637 |V1637 Oph *|171335.1-180550 |RR | 14.3 | 15.4 | |p |35637.847 | | 0.56931 |40 | |05570 GSC | +591638 |V1638 Oph |171339.4-195207 |SXPHE | 17.4 | 17.8 | |p |35634.851 | | 0.18687 |43 | |05570 USNO | +591639 |V1639 Oph |171341.4-205017 |SR | 15.5 | 16.9 | |p | | | | |M3 |05455 USNO | +591640 |V1640 Oph |171333.0-163709 |RRAB | 15.9 | 17.3 | |p |35655.793 | | 0.43578 |16 | |05570 USNO | +591641 |V1641 Oph |171349.0-210454 |SR | 17.9 |< 19.3 | |p | | | | | |05455 USNO | +591642 |V1642 Oph |171344.6-190033 |SRB | 16.4 | 17.3 | |p | | | | | |05455 USNO | +591643 |V1643 Oph |171345.9-193633 |RRAB | 16.2 | 17.5 | |p |35633.776 | | 0.43688 |16 | |05570 USNO | +591644 |V1644 Oph |171354.8-220620 |RRAB | 17.2 | 18.4 | |p |35640.939 | | 0.56191 |20 : | |05570 USNO | +591645 |V1645 Oph |171341.3-163550 |SRA | 15.8 | 17.5 | |p | | | 149.0 | | |05455 GSC22| +591646 |V1646 Oph |171350.9-190649 |RRAB | 15.6 | 16.6 | |p |35656.823 | | 0.43665 |18 | |05570 USNO | +591647 |V1647 Oph |171354.6-195151 |RRC | 16.5 | 17.4 | |p |35662.875 | | 0.28034 : |40 | |05570 USNO | +591648 |V1648 Oph |171356.7-205506 |E | 18.6 | 20.4 | |p |35960.916 | | | | |05455 USNO | +591649 |V1649 Oph |171354.3-191311 |RRAB | 15.4 | 16.5 | |p |35663.828 | | 0.54089 |14 | |05570 USNO | +591650 |V1650 Oph |171356.2-193412 |SRB | 15.5 | 16.9 | |p | | | | | |05455 USNO | +591651 |V1651 Oph |171352.4-175509 |SRB | 16.0 | 16.6 | |p | | | | |M6.5 |05455 USNO | +591652 |V1652 Oph |171358.2-195902 |L | 17.0 | 17.7 | |p | | | | | |05455 USNO | +591653 |V1653 Oph |171402.0-210522 |SR | 16.9 |< 19.0 | |p | | | | | |05455 USNO | +591654 |V1654 Oph |171356.1-182210 |LB | 15.2 | 15.6 | |p | | | | |M3 |05455 USNO | +591655 |V1655 Oph |171407.2-221057 |M: | 16.5 |< 19.4 | |p | | | | | |05455 USNO | +591656 |V1656 Oph |171400.0-173833 |RRAB | 16.0 | 17.3 | |p |35640.866 | | 0.49542 |16 | |05570 USNO | +591657 |V1657 Oph |171359.7-172210 |M | 17.0 |< 19.7 | |p | | | | |M6.5-M7.5 |05455 GSC22| +591658 |V1658 Oph |171411.8-205502 |M | 13.9 | 18.8 | |p |36700. | | 164.8 | |M2-M7 |00001 00551| +591659 |V1659 Oph |171410.1-184612 |M | 17.5 |< 19.4 | |p | | | | | |05455 USNO | +591660 |V1660 Oph |171413.1-193955 |RRAB | 16.5 | 17.1 | |p |35653.792 | | 0.54729 |18 | |05570 USNO | +591661 |V1661 Oph *|171419.8-221242 |RRC | 17.2 | 17.7 | |p |35633.815 | | 0.28260 |42 | |05570 USNO | +591662 |V1662 Oph |171410.7-170155 |RRAB | 15.5 | 16.6 | |p |35686.741 | | 0.56069 |17 | |05570 USNO | +591663 |V1663 Oph |171417.2-183511 |L | 15.9 | 17.1 | |p | | | | | |05455 USNO | +591664 |V1664 Oph |171429.1-212044 |RRAB | 16.2 | 17.5 | |p |35654.821 | | 0.59468 |16 | |05570 USNO | +591665 |V1665 Oph |171433.3-220243 |RRC | 16.9 | 17.7 | |p |35661.925 | | 0.28880 |40 | |05570 USNO | +591666 |V1666 Oph *|171430.8-205447 |M | 15.0 |< 18.8 | |p |36700. | | 180.0 : | | |05455 USNO | +591667 |V1667 Oph |171429.9-194546 |M | 14.0 |< 18.2 | |p |35630. | | 248.0 | |M4-M8.5 |05455 USNO | +591668 |V1668 Oph |171433.8-211809 |SRB | 16.2 | 17.0 | |p | | | | | |05455 USNO | +591669 |V1669 Oph |171435.2-220956 |RRAB | 17.3 | 18.5 | |p |35662.904 | | 0.47135 |17 | |05570 USNO | +591670 |V1670 Oph |171424.5-174206 |SR | 15.6 | 16.5 | |p | | | | |M6 |05455 USNO | +591671 |V1671 Oph |171428.5-183239 |LB | 16.3 | 17.0 | |p | | | | |M6 |05455 USNO | +591672 |V1672 Oph |171438.4-212950 |RRAB | 17.5 | 18.5 | |p |35688.810 | | 0.58894 |20 | |05570 USNO | +591673 |V1673 Oph |171441.7-220948 |L | 14.5 | 15.0 | |p | | | | | |05455 USNO | +591674 |V1674 Oph |171435.3-185218 |RRAB | 16.2 | 17.5 | |p |35656.716 | | 0.44650 |21 | |05570 USNO | +591675 |V1675 Oph |171438.2-183904 |LB | 14.7 | 15.4 | |p | | | | |M3 |05455 USNO | +591676 |V1676 Oph *|171440.9-195817 |RRAB | 16.6 | 17.0 | |p |35630.827 | | 0.57934 |18 | |05570 USNO | +591677 |V1677 Oph |171437.8-182641 |EW/KW | 15.3 | 16.2 | |p |35658.858 | | 0.35508 | | |05455 USNO | +591678 |V1678 Oph |171448.8-204445 |SRB | 16.2 | 17.4 | |p | | | | | |05455 GSC22| +591679 |V1679 Oph |171446.8-185758 |RRAB | 15.2 | 16.2 | |p |35636.954 | | 0.51082 |15 | |05570 USNO | +591680 |V1680 Oph |171455.2-210629 |RRAB | 16.8 | 18.1 | |p |35658.894 | | 0.53325 |15 | |05570 USNO | +591681 |V1681 Oph |171455.1-201819 |M | 15.6 | 19.1 | |p |36740. | | 200. : | |M3-M7 |05455 USNO | +591682 |V1682 Oph *|171500.0-222221 |SRA | 17.7 |< 19.4 | |p | | | 176.4 : | | |05455 USNO | +591683 |V1683 Oph |171452.6-185426 |RR: | 16.6 | 17.4 | |p |35688.630 | | | | |05570 USNO | +591684 |V1684 Oph |171450.8-175907 |RRAB | 15.6 | 16.7 | |p |35662.888 | | 0.53022 |20 | |05570 USNO | +591685 |V1685 Oph |171456.0-184218 |RRAB | 15.8 | 16.9 | |p |35658.879 | | 0.47316 |20 | |05570 USNO | +591686 |V1686 Oph |171504.7-221318 |SR | 16.1 | 17.9 | |p | | | | | |05455 USNO | +591687 |V1687 Oph *|171501.9-203203 |SRB: | 17.1 |< 19.7 | |p | | | 19.0 : | | |05455 USNO | +591688 |V1688 Oph |171504.0-203943 |RRAB | 16.7 | 17.6 | |p |35662.831 | | 0.60194 |26 | |05570 USNO | +591689 |V1689 Oph |171451.1-161923 |RRAB | 14.2 | 16.2 | |p |35661.898 | | 0.44794 |20 | |05570 USNO | +591690 |V1690 Oph |171505.8-192332 |RRAB | 16.8 | 18.2 | |p |35654.771 | | 0.46181 |16 | |05570 USNO | +591691 |V1691 Oph |171514.2-215213 |SRB | 18.6 | 20.4 | |p | | | | | |05455 USNO | +591692 |V1692 Oph |171514.9-210321 |SRB | 16.1 | 17.2 | |p | | | | |M6 |05455 USNO | +591693 |V1693 Oph |171510.9-191508 |RRAB | 16.7 | 18.2 | |p |35659.774 | | 0.52199 |20 | |05570 USNO | +591694 |V1694 Oph |171513.2-195032 |RRAB | 16.2 | 17.7 | |p |35635.829 | | 0.47118 |15 | |05570 USNO | +591695 |V1695 Oph |171514.8-202255 |SR | 17.2 | 18.6 | |p | | | | | |05455 USNO | +591696 |V1696 Oph |171520.6-221310 |RRAB | 17.2 | 19.0 | |p |35637.838 | | 0.47329 |12 | |05570 USNO | +591697 |V1697 Oph |171511.7-173947 |SRB | 14.2 | 15.2 | |p | | | 170. : | | |05455 USNO | +591698 |V1698 Oph |171511.5-163030 |RRC | 15.9 | 16.6 | |p |35655.752 | | 0.30278 : |36 | |05570 USNO | +591699 |V1699 Oph |171523.0-212618 |LB | 14.1 | 14.7 | |p | | | | |M8 |05455 GSC | +591700 |V1700 Oph |171528.5-220859 |E/SD | 17.0 | 18.2 | |p |35656.81 | | 1.13380 | | |05455 GSC22| +591701 |V1701 Oph |171525.2-204104 |M | 15.3 |< 20.2 | |p |36670. :| | 298.0 | |M5-M9.5 |05455 USNO | +591702 |V1702 Oph *|171524.6-192835 |M | 17.1 |< 19.9 | |p |36700. | | 180. : | | |05455 USNO | +591703 |V1703 Oph |171518.1-164911 |RR | 16.5 | 17.6 | |p |35688.655 | | | | |05570 USNO | +591704 |V1704 Oph |171534.9-220955 |SRB | 16.0 | 16.9 | |p | | | | | |05455 USNO | +591705 |V1705 Oph *|171523.5-172737 |RRAB | 14.9 | 16.5 | |p |35656.764 | | 0.46167 |28 | |05570 USNO | +591706 |V1706 Oph |171530.1-184030 |M | 15.8 | 18.9 | |p |36700. | | 185.6 | |M6.5-M9 |05455 GSC22| +591707 |V1707 Oph |171537.8-215255 |RRAB | 16.7 | 17.7 | |p |35608.945 | | 0.49550 |20 | |05570 GSC22| +591708 |V1708 Oph |171533.4-193815 |SR | 16.0 |< 17.2 | |p | | | | | |05455 USNO | +591709 |V1709 Oph |171541.9-220552 |RRAB | 16.7 | 18.1 | |p |35662.903 | | 0.45505 |20 | |05570 USNO | +591710 |V1710 Oph *|171538.6-195912 |RR | 17.1 | 18.3 | |p |35687.787 | | 0.59821 : |20 | |05570 USNO | +591711 |V1711 Oph |171534.1-165507 |RRAB | 16.2 | 16.9 | |p |35638.929 | | 0.53026 |25 | |05570 USNO | +591712 |V1712 Oph |171547.4-195903 |L: | 15.1 | 15.9 | |p | | | | | |05455 GSC22| +591713 |V1713 Oph |171546.2-183211 |LB | 16.1 | 16.5 | |p | | | | |M6 |05455 USNO | +591714 |V1714 Oph |171546.5-165901 |RRAB | 16.2 | 17.5 | |p |35657.814 | | 0.46451 |18 | |05570 GSC22| +591715 |V1715 Oph |171549.1-171410 |M | 13.3 | 18.0 | |p |36715. | | 211.7 | |M2-M8 |00001 00551| +591716 |V1716 Oph |171556.8-195553 |RRAB | 16.9 | 18.1 | |p |35633.941 | | 0.50828 |14 | |05570 USNO | +591717 |V1717 Oph |171553.0-173403 |RRC | 15.1 | 16.0 | |p |35640.875 | | 0.28327 : |40 | |05570 USNO | +591718 |V1718 Oph |171554.8-181915 |SRB | 16.8 | 17.3 | |p | | | | |M6.5 |05455 USNO | +591719 |V1719 Oph |171559.3-184559 |RRAB | 15.6 | 16.6 | |p |35633.870 | | 0.52516 |20 | |05570 USNO | +591720 |V1720 Oph |171605.1-204401 |RRAB | 17.3 | 18.3 | |p |35640.911 | | 0.51747 | | |05570 USNO | +591721 |V1721 Oph |171608.3-220913 |SRA | 16.6 | 18.3 | |p | | | 314. : | | |05455 2MASS| +591722 |V1722 Oph |171555.9-164634 |RRAB | 15.9 | 17.3 | |p |35654.771 | | 0.42390 |24 | |05570 USNO | +591723 |V1723 Oph |171609.6-203159 |RR: | 16.8 | 17.5 | |p |35686.794 | | | | |05570 USNO | +591724 |V1724 Oph |171611.6-203158 |SRB | 18.1 |< 19.2 | |p | | | | | |05455 USNO | +591725 |V1725 Oph |171613.8-205744 |RR: | 15.4 |< 16.4 | |p |35688.692 | | | | |05570 USNO | +591726 |V1726 Oph |171618.3-221758 |RR | 17.6 | 18.5 | |p |35658.892 | | 0.46605 : |19 | |05570 USNO | +591727 |V1727 Oph |171618.3-220522 |RRAB | 14.55 | 15.81 | |B |35653.786 | | 0.41990 |15 | |05570 USNO | +591728 |V1728 Oph |171616.3-193238 |SRB | 17.2 | 17.9 | |p | | | | |M6.5 |05455 USNO | +591729 |V1729 Oph |171618.1-203153 |E/SD | 17.1 | 18.2 | |p |35654.629 | | 0.90384 | | |05455 USNO | +591730 |V1730 Oph |171618.1-202353 |RRAB | 16.2 | 17.1 | |p |35654.806 | | 0.53686 |20 | |05570 USNO | +591731 |V1731 Oph *|171621.1-211209 |RRAB | 17.5 | 18.3 | |p |35635.865 | | 0.55616 |16 | |05570 USNO | +591732 |V1732 Oph |171621.4-205928 |M | 16.3 |< 19.8 | |p |36778. | | | | |05455 USNO | +591733 |V1733 Oph |171613.0-171940 |M | 15.1 |< 19.3 | |p |36695. | | 235.5 | |M4-M7 |05455 GSC22| +591734 |V1734 Oph |171618.9-172337 |M | 13.6 | 20.3 | |p |35620. | | 260.1 | |M3-M8 |00001 00551| +591735 |V1735 Oph |171631.8-201214 |RRAB | 17.3 | 18.8 | |p |35637.862 | | 0.53864 : |16 | |05570 USNO | +591736 |V1736 Oph *|171633.7-204652 |M | 16.2 | 18.9 | |p |36790. | | 194.4 : | | |05455 USNO | +591737 |V1737 Oph |171633.0-201446 |RRAB | 16.9 | 17.8 | |p |35654.73 | | 0.56506 |19 | |05570 USNO | +591738 |V1738 Oph |171637.4-220757 |RRAB | 16.4 | 17.8 | |p |35637.799 | | 0.51541 |20 : | |05570 USNO | +591739 |V1739 Oph |171632.9-200340 |M | 15.0 | 19.2 | |p |36710. | | 172.2 | |M3-M7 |05455 USNO | +591740 |V1740 Oph |171630.5-183751 |RRAB | 15.4 | 17.0 | |p |35661.890 | | 0.49534 |20 | |05570 USNO | +591741 |V1741 Oph |171635.9-201515 |M | 15.0 | 19.0 | |p |36680. | | 190.8 | |M3-M8 |05455 USNO | +591742 |V1742 Oph |171637.3-204512 |M | 15.7 | 19.9 | |p |36765. | | 254.5 | |M3-M8 |05455 USNO | +591743 |V1743 Oph |171630.5-172333 |SR | 18.4 | 20.4 | |p |35960. :| | | |M2 |05455 GSC22| +591744 |V1744 Oph *|171638.9-204953 |M | 17.3 |< 20.1 | |p |35960. :| | 244.5 : | | |05455 USNO | +591745 |V1745 Oph |171633.9-171018 |RRAB | 15.8 | 17.2 | |p |35637.920 | | 0.54395 |16 | |05570 USNO | +591746 |V1746 Oph |171646.0-213802 |RR: | 16.5 | 17.2 | |p |35689.759 | | | | |05570 GSC22| +591747 |V1747 Oph |171641.6-192608 |L | 15.2 | 15.6 | |p | | | | | |05455 USNO | +591748 |V1748 Oph *|171648.0-220103 |SRB: | 13.8 | 15.9 | |p | | | 16.0 : | | |05455 USNO | +591749 |V1749 Oph |171646.5-215828 |SRB | 15.1 | 16.4 | |p | | | | | |05455 GSC22| +591750 |V1750 Oph |171639.9-182323 |SRB | 16.6 | 17.3 | |p | | | | |M6.5-M8 |05455 USNO | +591751 |V1751 Oph |171636.7-162812 |RRAB | 15.9 | 17.7 | |p |35654.670 | | 0.53994 |18 | |05570 USNO | +591752 |V1752 Oph |171646.3-200217 |SR | 17.8 |< 19.4 | |p | | | | | |05455 USNO | +591753 |V1753 Oph |171649.9-210537 |L | 15.1 | 16.0 | |p | | | | | |05455 USNO | +591754 |V1754 Oph *|171645.5-183045 |SRA | 15.3 | 17.7 | |p | | | 165.8 : | |M2 |05455 GSC22| +591755 |V1755 Oph |171646.0-174556 |M | 14.2 | 18.3 | |p |36756. | | 189.2 | |M3-M7 |05455 USNO | +591756 |V1756 Oph |171653.9-203148 |E/D | 16.6 | 17.3 | |p |35655.69 | | 3.29240 | | |05455 USNO | +591757 |V1757 Oph |171649.1-172857 |RRC | 16.2 | 16.6 | |p |35638.848 | | 0.28185 |35 | |05570 USNO | +591758 |V1758 Oph |171650.4-180239 |RRAB | 15.1 | 16.3 | |p |35656.803 | | 0.58674 |18 | |05570 USNO | +591759 |V1759 Oph |171700.2-220115 |RRAB | 16.5 | 17.7 | |p |35659.732 | | 0.32656 |25 | |05570 USNO | +591760 |V1760 Oph |171654.4-184718 |RRAB | 15.8 | 16.5 | |p |35663.858 | | 0.58835 |15 | |05570 USNO | +591761 |V1761 Oph |171703.4-220623 |E | 18.5 | 19.9 | |p |35665.770 | | | | |05455 USNO | +591762 |V1762 Oph |171658.7-183505 |M | 16.2 |< 19.6 | |p |36705. | | | | |05455 USNO | +591763 |V1763 Oph |171702.8-202641 |RRAB | 15.9 | 18.1 | |p |35636.921 | | 0.42515 |15 | |05570 USNO | +591764 |V1764 Oph |171657.8-171814 |M | 13.6 | 19.0 | |p |36702. | | 214.0 | |M3-M7 |00001 00551| +591765 |V1765 Oph |171657.1-162747 |SRB | 16.6 | 17.5 | |p | | | | | |05455 USNO | +591766 |V1766 Oph |171709.3-210752 |RRAB | 16.7 | 17.9 | |p |35688.644 | | 0.52604 |21 | |05570 USNO | +591767 |V1767 Oph |171700.8-170746 |SRA | 15.4 | 16.9 | |p | | | 255. : | |M3-M6.5 |05482 USNO | +591768 |V1768 Oph *|171706.6-192317 |RRAB | 16.6 | 17.8 | |p |35659.695 | | 0.50584 |16 | |05570 USNO | +591769 |V1769 Oph |171702.2-174050 |M | 14.9 | 19.1 | |p |36680. :| | | |M8-M10 |05455 USNO | +591770 |V1770 Oph |171714.2-220102 |M | 14.6 | 17.5 | |p |36735. | | 284. : | | |05455 USNO | +591771 |V1771 Oph |171710.7-200736 |RRAB | 15.2 | 16.6 | |p |35638.911 | | 0.53352 |20 | |05570 USNO | +591772 |V1772 Oph |171724.8-214517 |L | 15.4 | 16.1 | |p | | | | | |05455 USNO | +591773 |V1773 Oph |171722.3-202239 |RCB: | 16.8 | 19.1 | |p | | | | | |05455 USNO | +591774 |V1774 Oph |171716.3-173044 |E | 13.8 | 14.6 | |p |36762.818 | | | | |05455 00551| +591775 |V1775 Oph *|171722.8-195412 |RRC: | 16.5 | 17.1 | |p |35658.826 | | 0.21780 : |50 | |05570 GSC22| +591776 |V1776 Oph |171717.1-171753 |M | 14.6 | 18.2 | |p |36820. :| | 162.8 | |M2-M6.5 |05455 GSC22| +591777 |V1777 Oph |171730.7-221011 |RRAB | 17.0 | 18.4 | |p |35633.736 | | 0.48874 |20 | |05570 USNO | +591778 |V1778 Oph |171719.6-173814 |RRAB | 15.7 | 16.8 | |p |35653.758 | | 0.54254 |19 | |05570 USNO | +591779 |V1779 Oph |171721.8-181546 |RRAB | 15.8 | 16.7 | |p |35636.918 | | 0.63507 |17 | |05570 USNO | +591780 |V1780 Oph |171723.1-185301 |M | 15.3 |< 18.3 | |p |35665. | | 314.0 | |M5-M9 |05455 USNO | +591781 |V1781 Oph |171724.6-192843 |RRAB | 16.6 | 17.6 | |p |35654.763 | | 0.45801 |10 | |05570 USNO | +591782 |V1782 Oph |171732.9-215354 |M | 15.4 |< 19.9 | |p |36695. | | 290. : | | |05455 USNO | +591783 |V1783 Oph |171728.3-194334 |RR | 15.8 | 16.3 | |p |35662.792 | | 0.40603 : |31 : | |05570 USNO | +591784 |V1784 Oph |171729.9-200417 |SRB | 15.7 | 16.3 | |p | | | | |M2-M5 |05455 USNO | +591785 |V1785 Oph |171734.9-220026 |RRAB | 16.8 | 18.1 | |p |35688.829 | | 0.56101 |14 | |05570 USNO | +591786 |V1786 Oph |171732.8-192744 |SR | 13.6 | 16.7 | |p | | | | | |05455 00551| +591787 |V1787 Oph |171737.9-201939 |RRAB | 15.6 | 17.5 | |p |35633.824 | | 0.58382 |16 | |05570 USNO | +591788 |V1788 Oph |171734.3-164414 |M | 15.8 |< 20.5 | |p |36700. | | 306.0 | | |05455 GSC22| +591789 |V1789 Oph |171748.8-220353 |RRAB | 16.5 | 18.4 | |p |35633.937 | | 0.56854 |18 | |05570 GSC22| +591790 |V1790 Oph |171743.3-192538 |SXPHE | 16.2 | 16.9 | |p |35689.756 | | 0.11280 |31 | |05570 USNO | +591791 |V1791 Oph |171747.0-202529 |RRAB | 16.6 | 18.2 | |p |35636.898 | | 0.63779 |15 | |05570 USNO | +591792 |V1792 Oph |171738.9-161740 |RRAB | 16.6 | 17.7 | |p |35654.677 | | 0.57109 |15 | |05570 USNO | +591793 |V1793 Oph *|171753.0-215039 |SRA | 16.9 | 18.6 | |p | | | 210.0 : | | |05455 GSC22| +591794 |V1794 Oph |171753.9-202033 |E/SD | 17.4 | 19.5 | |p |35663.93 | | 3.99936 | | |05455 USNO | +591795 |V1795 Oph |171757.7-215106 |RRAB | 16.3 | 17.3 | |p |35653.771 | | 0.55946 |20 | |05570 USNO | +591796 |V1796 Oph |171745.0-163922 |RRAB | 16.5 | 17.9 | |p |35653.660 | | 0.43630 |15 | |05570 USNO | +591797 |V1797 Oph |171800.3-214604 |RRAB | 16.4 | 18.0 | |p |35638.821 | | 0.43908 |22 | |05570 USNO | +591798 |V1798 Oph |171749.8-171116 |RRAB | 14.6 | 16.2 | |p |35609.019 | | 0.63275 |20 | |05570 USNO | +591799 |V1799 Oph |171754.4-190941 |RRAB | 16.3 | 17.7 | |p |35662.941 | | 0.64834 |21 | |05570 USNO | +591800 |V1800 Oph |171801.8-213234 |SRB | 17.8 | 19.1 | |p | | | | | |05455 USNO | +591801 |V1801 Oph |171758.3-175422 |RRAB | 15.3 | 16.4 | |p |35654.755 | | 0.44385 |12 | |05570 USNO | +591802 |V1802 Oph |171800.5-191252 |UV: | 16.0 | 16.7 | |p | | | | | |05455 USNO | +591803 |V1803 Oph *|171758.7-180117 |RR | 16.4 | 17.1 | |p |35632.934 | | 0.52118 |36 : | |05570 USNO | +591804 |V1804 Oph |171801.4-190905 |RRAB | 17.3 | 18.4 | |p |35655.794 | | 0.57857 |16 | |05570 USNO | +591805 |V1805 Oph *|171802.1-185721 |RRAB | 17.0 | 18.3 | |p |35636.900 | | 0.56069 |21 | |05570 USNO | +591806 |V1806 Oph |171810.2-220713 |RRAB | 16.4 | 17.6 | |p |35632.746 | | 0.75162 |15 | |05570 USNO | +591807 |V1807 Oph |171808.1-203612 |RRAB | 16.4 | 18.0 | |p |35633.812 | | 0.46700 |20 | |05570 USNO | +591808 |V1808 Oph |171813.3-220506 |RRAB | 16.3 | 17.6 | |p |35655.749 | | 0.54299 |20 | |05570 USNO | +591809 |V1809 Oph |171802.6-172144 |E | 17.7 | 19.3 | |p |36687.834 | | | | |05455 USNO | +591810 |V1810 Oph |171806.3-185407 |LB | 16.0 | 16.7 | |p | | | | |M3 |05455 GSC | +591811 |V1811 Oph *|171804.8-170410 |EW/KW | 17.2 | 17.9 | 17.9 : |p |35657.692 | | 0.41443 | | |05455 USNO | +591812 |V1812 Oph |171813.3-202640 |RRAB | 16.0 | 17.2 | |p |35636.770 | | 0.49889 | | |05570 USNO | +591813 |V1813 Oph |171808.6-181828 |SR | 15.1 | 16.4 | |p | | | | | |05455 USNO | +591814 |V1814 Oph *|171806.1-165840 |SRA | 12.5 |< 14.4 | |p |36752. | | 112.0 : | | |05455 00551| +591815 |V1815 Oph |171813.0-193933 |RRAB | 16.5 | 17.6 | |p |35633.058 | | 0.51382 |21 | |05570 | +591816 |V1816 Oph |171818.2-201336 |RRAB | 15.5 | 16.6 | |p |35658.903 | | 0.59005 |23 | |05570 USNO | +591817 |V1817 Oph |171817.1-185347 |RR: | 17.9 | 19.0 | |p | | | | | |05570 USNO | +591818 |V1818 Oph |171825.1-211032 |RRAB | 17.7 | 19.0 | |p |35664.913 | | 0.63058 |18 | |05570 USNO | +591819 |V1819 Oph |171830.7-194847 |SR | 16.9 | 18.0 | |p | | | | | |05455 USNO | +591820 |V1820 Oph |171836.2-215616 |RRAB | 17.4 | 18.5 | |p |35633.002 | | 0.50649 |15 | |05570 USNO | +591821 |V1821 Oph |171823.6-164142 |RRAB | 17.3 | 17.9 | |p |35656.721 | | 0.66095 |20 : | |05570 USNO | +591822 |V1822 Oph *|171839.3-205937 |RRAB | 17.0 | 18.2 | |p |35657.797 | | 0.56107 |20 | |05570 USNO | +591823 |V1823 Oph |171838.4-202149 |RRAB | 16.5 | 17.8 | |p |35653.760 | | 0.52888 |20 | |05570 USNO | +591824 |V1824 Oph |171833.5-180119 |SR | 16.5 | 17.7 | |p | | | | |M6.5 |05455 USNO | +591825 |V1825 Oph |171845.1-213845 |RRAB | 17.4 | 19.6 | |p |35661.863 | | 0.44016 |15 | |05570 USNO | +591826 |V1826 Oph |171834.2-173432 |E | 17.4 | 18.8 | |p |35688.754 | | 2.26526 | | |05455 USNO | +591827 |V1827 Oph |171834.2-171214 |RR: | 15.5 | 16.5 | |p | | | | | |05570 USNO | +591828 |V1828 Oph |171833.0-164505 |M | 13.6 | 18.0 | |p |35665. | | 239.0 |44 | |05455 GSC | +591829 |V1829 Oph *|171848.8-220249 |M | 16.8 |< 19.5 | |p |36650. :| | 229.0 | | |05455 USNO | +591830 |V1830 Oph |171842.5-171207 |SR | 15.2 | 16.5 | |p | | | | |M4 |05455 USNO | +591831 |V1831 Oph |171845.4-180530 |RR | 16.1 | 17.3 | |p |35664.786 | | 0.33764 |30 : | |05570 USNO | +591832 |V1832 Oph |171847.1-183844 |RRAB | 17.1 | 18.5 | |p |35659.771 | | 0.57657 |14 | |05570 USNO | +591833 |V1833 Oph |171849.0-192400 |RRAB | 16.8 | 18.1 | |p |35653.754 | | 0.68014 |17 | |05570 USNO | +591834 |V1834 Oph |171849.2-192608 |RRAB | 15.9 | 17.2 | |p |35637.924 | | 0.55832 |20 | |05570 USNO | +591835 |V1835 Oph |171846.7-182039 |L | 16.1 | 16.8 | |p | | | | | |05455 USNO | +591836 |V1836 Oph |171853.7-195934 |RR | 17.4 | 18.4 | |p |35655.751 | | 0.43421 |35 | |05570 USNO | +591837 |V1837 Oph |171852.8-194337 |SRB | 15.6 | 16.6 | |p | | | | |M2 |05455 USNO | +591838 |V1838 Oph |171853.0-191557 |RRAB | 16.1 | 17.2 | |p |35636.928 | | 0.32685 |12 | |05570 USNO | +591839 |V1839 Oph |171854.0-210123 |SRB | 16.2 | 17.7 | |p | | | | |M6 |05455 USNO | +591840 |V1840 Oph *|171852.6-183322 |CWB | 16.0 | 17.2 | |B |45464.705 | | 1.340204 |21 | |68333 09547| +591841 |V1841 Oph *|171901.7-221636 |RRC | 18.8 | 19.6 | |p |35633.959 | | 0.33642 |38 | |05570 USNO | +591842 |V1842 Oph |171902.3-213757 |RRAB | 16.8 | 19.0 | |p |35636.890 | | 0.43705 |16 | |05570 USNO | +591843 |V1843 Oph |171857.9-181718 |RRAB | 15.8 | 17.2 | |p |35637.957 | | 0.59915 |20 | |05570 USNO | +591844 |V1844 Oph |171903.1-183531 |E/SD | 16.4 | 17.5 | |p |35659.690 | | 0.70106 | | |05455 USNO | +591845 |V1845 Oph *|171904.2-183225 |RRAB | 16.3 | 17.4 | |p |35654.704 | | 0.628456 |14 | |09547 09547| +591846 |V1846 Oph |171908.4-204033 |RRAB | 16.5 | 18.2 | |p |35632.978 | | 0.51912 |09 : | |05570 USNO | +591847 |V1847 Oph |171907.9-193604 |M | 15.8 |< 18.6 | |p |36050. :| | | | |05455 USNO | +591848 |V1848 Oph |171911.7-193747 |M | 17.5 |< 20.1 | |p |35960. :| | | |M7 |05455 09473| +591849 |V1849 Oph |171913.7-201828 |RRAB | 16.0 | 17.4 | |p |35662.924 | | 0.48503 |22 | |05570 USNO | +591850 |V1850 Oph |171905.4-162553 |RRAB | 15.8 | 17.3 | |p |35688.744 | | 0.46574 |21 | |05570 USNO | +591851 |V1851 Oph |171913.7-190241 |RRAB | 17.3 | 18.4 | |p |35657.814 | | 0.72677 |24 | |05570 USNO | +591852 |V1852 Oph |171913.0-175351 |RRAB | 16.0 | 17.4 | |p |35659.697 | | 0.46308 |16 | |05570 USNO | +591853 |V1853 Oph *|171918.7-201117 |RRAB | 16.3 | 17.6 | |p |35608.937 | | 0.49173 |16 : | |05570 USNO | +591854 |V1854 Oph |171846.2-020342 |M | 12.5 |< 16. | |p |41517. | | 211. | | |06997 02316| +591855 |V1855 Oph |171912.6-172334 |RR | 15.6 | 16.6 | |p |35655.740 | | 0.54017 |28 | |05570 USNO | +591856 |V1856 Oph |171919.6-192056 |RRAB | 16.3 | 17.2 | |p |35638.909 | | 0.51486 |16 | |05570 USNO | +591857 |V1857 Oph |171926.2-210259 |M | 17.4 |< 19.2 | |p |36768. | | 172. : | | |05455 USNO | +591858 |V1858 Oph |171914.9-162012 |SRB | 15.7 | 16.6 | |p | | | | | |05455 USNO | +591859 |V1859 Oph |171924.3-193706 |RRAB | 17.0 | 18.0 | |p |35637.867 | | 0.39540 : |17 : | |05570 USNO | +591860 |V1860 Oph *|171926.0-203924 |RRAB | 14.3 | 15.5 | |p |35640.954 | | 0.62650 |21 | |05570 USNO | +591861 |V1861 Oph *|171927.3-191445 |M | 16.7 |< 19.2 | |p |36728. | | 230.0 : | | |05455 GSC22| +591862 |V1862 Oph |171930.6-203215 |RRAB | 15.7 | 17.4 | |p |35661.852 | | 0.54768 |16 | |05570 USNO | +591863 |V1863 Oph |171934.5-214449 |RRAB | 17.9 | 19.2 | |p |35638.876 | | 0.46139 |17 | |05570 USNO | +591864 |V1864 Oph *|171926.4-183435 |RRAB | 15.9 | 17.1 | |p |35656.724 | | 0.605397 |13 | |09547 09547| +591865 |V1865 Oph |171930.4-192627 |UV: | 16.6 | 17.6 | |p | | | | | |05455 USNO | +591866 |V1866 Oph |171935.5-210306 |RRAB | 15.9 | 17.3 | |p |35633.807 | | 0.43360 |17 | |05570 USNO | +591867 |V1867 Oph |171926.2-165011 |M | 15.8 |< 19.7 | |p |36810. :| | 275. : | | |05455 USNO | +591868 |V1868 Oph |171931.0-163107 |RRAB | 16.1 | 17.3 | |p |35638.879 | | 0.54198 |14 | |05570 USNO | +591869 |V1869 Oph |171940.6-192850 |RRAB | 16.6 | 17.7 | |p |35688.725 | | 0.58414 |20 | |05570 USNO | +591870 |V1870 Oph |171944.4-171503 |M | 14.5 | 17.9 | |p |36810. | | 122. : | |M2-M7 |05455 GSC22| +591871 |V1871 Oph |171953.3-201437 |M | 14.4 | 18.7 | |p |36800. | | 275.0 | |M5-M8.5 |05455 USNO | +591872 |V1872 Oph |171951.4-184933 |SR | 14.7 | 16.5 | |p | | | | |M3 |05455 GSC | +591873 |V1873 Oph |171955.6-203536 |RRAB | 15.4 | 17.0 | |p |35636.846 | | 0.44400 |17 | |05570 USNO | +591874 |V1874 Oph |171950.1-182113 |RRAB | 16.0 | 17.3 | |p |35659.722 | | 0.63247 |19 | |05570 USNO | +591875 |V1875 Oph |171958.0-211142 |M | 14.8 |< 18.0 | |p |36800. | | 261.5 | |M4-M8 |05455 USNO | +591876 |V1876 Oph |172002.1-220544 |RRAB | 17.7 | 19.2 | |p |35637.864 | | 0.46516 |17 | |05570 USNO | +591877 |V1877 Oph |171953.2-181040 |E/SD | 16.8 | 18.5 | |p |35658.847 | | 1.47612 | | |05455 USNO | +591878 |V1878 Oph |172002.7-213525 |L | 15.4 | 16.1 | |p | | | | | |05455 GSC | +591879 |V1879 Oph |172002.9-205813 |L | 14.1 | 14.4 | |p | | | | | |05455 USNO | +591880 |V1880 Oph |171956.1-180602 |E | 15.4 | 17.1 | |p |35666.851 | | | | |05455 USNO | +591881 |V1881 Oph |171958.9-190708 |M | 17.3 |< 20.0 | |p |35600. :| | 324.0 | |M5-M10 |05455 USNO | +591882 |V1882 Oph |171956.8-180455 |LB | 14.8 | 15.5 | |p | | | | |M4 |05455 USNO | +591883 |V1883 Oph |172002.9-183214 |L | 16.4 | 16.8 | |p | | | | | |05455 USNO | +591884 |V1884 Oph |172011.7-213405 |M | 18.4 |< 19.9 | |p |36810. :| | 190. : | | |05455 USNO | +591885 |V1885 Oph |172003.1-175245 |RRC | 15.7 | 16.0 | |p |35632.742 | | 0.34407 |42 | |05570 USNO | +591886 |V1886 Oph *|172014.4-220828 |RR | 17.9 | 19.0 | |p |35655.761 | | 0.40111 |30 | |05570 USNO | +591887 |V1887 Oph |172009.1-193909 |RRAB | 15.8 | 17.3 | |p |35653.734 | | 0.46736 |11 | |05570 USNO | +591888 |V1888 Oph |172011.1-201117 |RRAB | 16.3 | 17.6 | |p |35635.793 | | 0.45543 |23 | |05570 | +591889 |V1889 Oph *|172013.6-213037 |M | 17.8 |< 20.4 | |p |35674. | | 196.0 : | | |05455 USNO | +591890 |V1890 Oph |172014.5-180033 |E | 16.8 | 18.4 | |p |35657.747 | | 7.94976 | | |05455 USNO | +591891 |V1891 Oph |172014.8-175500 |M | 13.7 |< 18.7 | |p |36706. | | 178.6 | |M6-M8.5 |05455 GSC22| +591892 |V1892 Oph |172017.7-164642 |EW: | 17.1 | 18.4 | |p |35640.874 | | 0.22001 : | | |05455 USNO | +591893 |V1893 Oph |172026.4-193937 |M: | 16.5 |< 18.6 | |p |36050. :| | | | |05455 USNO | +591894 |V1894 Oph |172029.9-211526 |RRAB | 16.5 | 17.9 | |p |35686.815 | | 0.49359 |15 | |05570 USNO | +591895 |V1895 Oph *|172029.1-194154 |RRAB | 16.6 | 18.1 | |p |35653.763 | | 0.52294 |14 | |05570 USNO | +591896 |V1896 Oph |172031.6-201250 |RRAB | 16.7 | 17.9 | |p |35661.851 | | 0.77642 |19 | |05570 USNO | +591897 |V1897 Oph |172027.5-181639 |RRAB | 16.2 | 17.5 | |p |35636.940 | | 0.36457 |15 | |05570 USNO | +591898 |V1898 Oph |172030.2-184212 |M | 14. |< 18.8 | |p |35608. :| | 210.0 | |M4-M9 |05455 06286| +591899 |V1899 Oph |172031.8-192248 |RRAB | 18.2 | 18.8 | |p |35664.879 | | 0.79403 |17 | |05570 USNO | +591900 |V1900 Oph |172036.2-210236 |SR | 16.5 | 17.9 | |p | | | | |M6.5 |05455 USNO | +591901 |V1901 Oph |172041.4-223502 |RRAB | 18.0 | 19.3 | |p |35657.875 | | 0.57079 |15 | |05570 USNO | +591902 |V1902 Oph |172032.8-185944 |RRAB | 16.2 | 17.0 | |p |35633.788 | | 0.60472 |18 | |05570 USNO | +591903 |V1903 Oph |172029.0-162810 |SR | 15.6 | 16.8 | |p | | | | | |05455 USNO | +591904 |V1904 Oph |172033.8-181714 |RRAB | 15.9 | 17.0 | |p |35657.860 | | 0.46051 |29 | |05570 USNO | +591905 |V1905 Oph *|172039.3-192838 |M | 15.0 |< 19.0 | |p |35630. | | 130.8 : | | |05455 USNO | +591906 |V1906 Oph |172043.0-205127 |M | 14.7 |< 18.4 | |p |35635. | | 257.0 | |M5-M8 |05455 USNO | +591907 |V1907 Oph |172035.8-173651 |RRAB | 15.9 | 17.2 | |p |35688.871 | | 0.67645 |17 | |05570 USNO | +591908 |V1908 Oph |172036.0-165826 |E | 15.5 | 16.3 | |p |35654.754 | | 0.45537 | | |05455 USNO | +591909 |V1909 Oph |172040.4-183924 |SR | 15.0 | 16.5 | |p | | | | |M4 |05455 GSC22| +591910 |V1910 Oph |172040.5-183902 |RRC | 16.3 | 17.0 | |p |35665.875 | | 0.29734 |37 | |05570 GSC22| +591911 |V1911 Oph |172041.8-191118 |RRAB | 15.7 | 16.4 | |p |35633.771 | | 0.59582 |18 | |05570 USNO | +591912 |V1912 Oph |172050.9-202532 |SRB | 15.8 | 16.5 | |p | | | | | |05455 USNO | +591913 |V1913 Oph |172056.4-212719 |M | 15.3 | 19.8 | |p |36710. | | 316.0 | | |05455 USNO | +591914 |V1914 Oph |172046.1-162100 |E | 16.3 | 17.3 | |p |35668.850 | | | | |05455 USNO | +591915 |V1915 Oph |172049.0-170323 |RRAB | 16.3 | 17.7 | |p |35636.818 | | 0.50543 |14 | |05570 USNO | +591916 |V1916 Oph |172058.9-203847 |M | 13.9 | 18.9 | |p |35630. | | 239.0 | | |05455 USNO | +591917 |V1917 Oph |172056.6-191007 |M | 17.1 |< 20.0 | |p | | | 317. : | |M6.5-M8 |05455 USNO | +591918 |V1918 Oph |172104.0-203644 |SRA | 16.4 |< 18.5 | |p |36750. | | 310. : | | |05455 USNO | +591919 |V1919 Oph *|172106.3-213308 |M | 15.5 |< 19.0 | |V |35630. | | 140.8 : | | |05455 GSC22| +591920 |V1920 Oph |172102.0-183915 |RRC | 16.9 | 17.4 | |p |35632.991 | | 0.25330 |36 | |05570 USNO | +591921 |V1921 Oph |172102.0-181148 |RRAB | 16.6 | 17.7 | |p |35630.813 | | 0.45556 |30 | |05570 USNO | +591922 |V1922 Oph |172103.1-182737 |RRC | 15.7 | 16.3 | |p |35634.702 | | 0.48821 |50 | |05570 USNO | +591923 |V1923 Oph |172103.9-185905 |RRAB | 17.4 | 18.3 | |p |35637.973 | | 0.53212 |25 | |05570 USNO | +591924 |V1924 Oph |172108.0-185238 |RRAB | 16.7 | 17.7 | |p |35632.974 | | 0.52046 |18 | |05570 USNO | +591925 |V1925 Oph |172111.5-200913 |RRAB | 16.0 | 17.3 | |p |35640.894 | | 0.67967 |23 | |05570 USNO | +591926 |V1926 Oph |172119.8-213946 |RRAB | 18.2 | 19.6 | |p |35659.749 | | 0.60930 |15 | |05570 USNO | +591927 |V1927 Oph |172113.6-182513 |E | 13.8 | 15.0 | |p |35960.916 | | | | |05455 USNO | +591928 |V1928 Oph |172114.8-182419 |M | 16.1 | 18.8 | |p |36740. | | | | |05455 USNO | +591929 |V1929 Oph |172111.5-164128 |E/SD | 17.0 | 18.8 | |p |35635.898 | | 2.6951 | | |05455 USNO | +591930 |V1930 Oph |172114.1-162750 |E | 14.3 | 15.3 | |p |35960.916 | | | | |05455 GSC | +591931 |V1931 Oph |172126.5-212124 |M | 17.8 |< 19.4 | |p |35680. | | | | |05455 GSC22| +591932 |V1932 Oph |172121.7-190522 |UV: | 17.4 | 19.3 | |p | | | | | |05455 USNO | +591933 |V1933 Oph |172128.2-211803 |RRAB | 17.0 | 18.7 | |p |35663.834 | | 0.58881 |20 | |05570 GSC22| +591934 |V1934 Oph |172124.2-185803 |RRAB | 16.8 | 18.2 | |p |35635.968 | | 0.53056 |16 | |05570 USNO | +591935 |V1935 Oph |172130.1-203608 |RR: | 16.6 | 17.1 | |p |35687.788 | | | | |05570 USNO | +591936 |V1936 Oph |172125.6-181356 |RRAB | 15.5 | 16.7 | |p |35632.784 | | 0.57505 |17 | |05570 USNO | +591937 |V1937 Oph |172131.4-204332 |RRAB | 15.9 | 17.0 | |p |35665.812 | | 0.52513 |20 | |05570 USNO | +591938 |V1938 Oph |172128.7-190020 |RRAB | 16.9 | 18.9 | |p |35661.900 | | 0.67053 |14 | |05570 USNO | +591939 |V1939 Oph *|172135.5-212907 |M | 14.8 | 18.7 | |p |35675. | | 198.8 : | | |05455 2MASS| +591940 |V1940 Oph |172125.7-163202 |RRAB | 15.9 | 17.2 | |p |35634.868 | | 0.45566 |31 | |05570 USNO | +591941 |V1941 Oph |172130.7-183927 |RRAB | 16.4 | 17.5 | |p |35636.836 | | 0.56060 |18 | |05570 USNO | +591942 |V1942 Oph |172135.1-202355 |SR | 15.5 | 16.8 | |p | | | | | |05455 USNO | +591943 |V1943 Oph |172132.9-184257 |M | 16.9 |< 19.2 | |p | | | | | |05455 USNO | +591944 |V1944 Oph |172133.8-182951 |RRAB | 16.1 | 17.1 | |p |35636.843 | | 0.54054 |17 | |05570 USNO | +591945 |V1945 Oph |172138.2-200910 |RRAB | 16.2 | 17.7 | |p |35637.876 | | 0.37418 |20 | |05570 USNO | +591946 |V1946 Oph *|172133.4-182653 |RRAB | 15.7 | 17.0 | |p |35636.806 | | 0.45176 |24 | |05570 USNO | +591947 |V1947 Oph |172133.8-182348 |RRC | 14.7 | 15.4 | |p |35655.820 | | 0.28916 |40 | |05570 USNO | +591948 |V1948 Oph |172138.6-194031 |SRB | 16.3 | 17.0 | |p | | | | | |05455 USNO | +591949 |V1949 Oph |172133.8-170923 |E/SD | 15.1 | 16.8 | |p |36688.89 | | 4.83068 | | |05455 USNO | +591950 |V1950 Oph |172139.8-185658 |CWA: | 13.5 | 15.1 | |p | | | 21.0 | | |05455 00551| +591951 |V1951 Oph |172139.8-180038 |SRB | 16.4 | 17.2 | |p | | | | | |05455 USNO | +591952 |V1952 Oph *|172146.0-203353 |M | 16.5 |< 19.2 | |p |35610. | | 202.5 : | | |05455 USNO | +591953 |V1953 Oph *|172141.1-174548 |M | 16.0 | 18.7 | |p |35640. | | 293. : | | |05455 USNO | +591954 |V1954 Oph *|172149.4-195900 |SRA | 14.2 | 16.3 | |p |36710. | | 112.4 : | | |05455 USNO | +591955 |V1955 Oph |172146.4-180432 |RRAB | 15.2 | 16.6 | |p |35633.922 | | 0.63347 |17 | |05570 USNO | +591956 |V1956 Oph |172159.9-222257 |RRAB | 17.2 | 19.6 | |p |35654.779 | | 0.42233 |17 | |05570 USNO | +591957 |V1957 Oph |172147.1-171752 |RRAB | 16.8 | 18.2 | |p |35653.752 | | 0.46649 |16 | |05570 USNO | +591958 |V1958 Oph |172200.3-210724 |M | 17.3 |< 20.2 | |p | | | | | |05455 USNO | +591959 |V1959 Oph |172200.8-203705 |RRAB | 17.5 | 18.7 | |p |35656.863 | | 0.64988 |16 | |05570 USNO | +591960 |V1960 Oph |172153.4-162955 |M | 15.4 |< 19.6 | |p |36710. | | 310. : | | |05455 GSC22| +591961 |V1961 Oph |172159.9-185005 |SRB | 16.6 | 17.6 | |p | | | | | |05455 USNO | +591962 |V1962 Oph |172203.3-184446 |M | 15.1 | 18.0 | |p |35640. | | 166.8 | | |05455 USNO | +591963 |V1963 Oph |172207.6-200848 |SRA | 15.7 | 17.7 | |p |35655. | | 116.8 | | |05455 USNO | +591964 |V1964 Oph |172209.1-200650 |SRB | 16.7 | 17.9 | |p | | | | | |05455 USNO | +591965 |V1965 Oph |172210.7-202652 |M | 15.8 |< 19.0 | |p |36680. :| | | | |05455 USNO | +591966 |V1966 Oph |172211.9-202425 |RRAB | 16.1 | 17.6 | |p |35633.878 | | 0.46248 |16 | |05570 USNO | +591967 |V1967 Oph |172212.2-201716 |M | 16.4 |< 18.9 | |p |35700. :| | 312.0 | | |05455 USNO | +591968 |V1968 Oph |172216.2-202556 |RRAB | 16.9 | 17.9 | |p |35636.912 | | 0.64311 |17 | |05570 USNO | +591969 |V1969 Oph |172212.7-181625 |SR | 16.2 | 18.6 | |p | | | | | |05455 USNO | +591970 |V1970 Oph |172223.7-223056 |SRB | 13.6 | 14.6 | |p | | | | | |05455 GSC | +591971 |V1971 Oph |172210.6-170555 |RRAB | 16.6 | 18.2 | |p |35662.900 | | 0.52818 |13 | |05570 USNO | +591972 |V1972 Oph |172215.0-182106 |M | 15.3 |< 19.7 | |p |36690. :| | 188.2 | | |05455 GSC | +591973 |V1973 Oph *|172222.3-203408 |RR: | 16.9 | 18.2 | |p |35655.76 | | 0.19453 : |50 | |05570 USNO | +591974 |V1974 Oph |172227.1-203127 |L | 16.2 | 17.7 | |p | | | | | |05455 USNO | +591975 |V1975 Oph |172222.2-171207 |E | 17.6 | 19.4 | |p |36752.771 | | | | |05455 USNO | +591976 |V1976 Oph |172236.9-223610 |M | 15.3 | 18.7 | |p |36740. | | 217.0 | | |05455 USNO | +591977 |V1977 Oph |172230.4-174553 |RRAB | 15.3 | 16.7 | |p |35668.850 | | 0.49167 |17 | |05570 USNO | +591978 |V1978 Oph |172230.1-173431 |E | 14.7 | 15.5 | |p |35654.714 | | 0.58446 | | |05455 GSC | +591979 |V1979 Oph |172236.7-205153 |RRC | 17.1 | 18.0 | |p |35636.909 | | 0.37766 |45 | |05570 USNO | +591980 |V1980 Oph |172239.7-205752 |M | 16.2 |< 19.2 | |p | | | 297.5 | | |05455 GSC22| +591981 |V1981 Oph |172229.8-164133 |SR | 14.8 | 16.0 | |p | | | | | |05455 USNO | +591982 |V1982 Oph |172237.8-195249 |RRAB | 17.3 | 18.5 | |p |35653.760 | | 0.54363 |19 | |05570 USNO | +591983 |V1983 Oph |172241.2-183156 |M | 15.8 | 18.6 | |p |36700. | | 310.0 | | |05455 USNO | +591984 |V1984 Oph |172244.8-202129 |RRAB | 16.0 | 17.5 | |p |35653.748 | | 0.62375 |23 | |05570 USNO | +591985 |V1985 Oph |172237.9-171257 |RRAB | 16.9 | 17.7 | |p |35657.802 | | 0.46011 |14 | |05570 USNO | +591986 |V1986 Oph |172240.0-180304 |RRAB | 16.2 | 17.9 | |p |35640.898 | | 0.43418 |12 | |05570 USNO | +591987 |V1987 Oph |172244.8-193725 |RRAB | 16.6 | 17.8 | |p |35655.742 | | 0.58246 |19 | |05570 USNO | +591988 |V1988 Oph |172243.4-182219 |RRAB | 16.5 | 17.5 | |p |35656.654 | | 0.58695 |20 | |05570 USNO | +591989 |V1989 Oph *|172245.6-190656 |CWA: | 15.5 | 17.7 | |p | | | 15.9 : | | |05455 USNO | +591990 |V1990 Oph *|172245.3-181443 |M | 16.8 |< 19.0 | |p |36720. | | 180. : | | |05455 USNO | +591991 |V1991 Oph *|172252.7-202653 |RRAB | 16.4 | 18.3 | |p |35655.803 | | 0.47908 |14 : | |05570 USNO | +591992 |V1992 Oph |172248.1-182731 |RRAB | 16.3 | 17.8 | |p |35658.818 | | 0.52863 |18 : | |05570 USNO | +591993 |V1993 Oph |172300.8-204755 |SR | 16.0 | 17.0 | |p | | | | | |05455 USNO | +591994 |V1994 Oph *|172255.9-183855 |M | 14.6 | 18.4 | |p |36690. :| | 199.0 : | | |05455 USNO | +591995 |V1995 Oph |172254.7-174700 |M | 15.3 |< 18.6 | |p |36790. | | 202. : | | |05455 USNO | +591996 |V1996 Oph |172259.0-194903 |E | 14.7 | 15.4 | |p |35689.759 | | | | |05455 USNO | +591997 |V1997 Oph |172259.9-194232 |M | 15.9 |< 19.9 | |p |36020. :| | 291.5 | | |05455 USNO | +591998 |V1998 Oph *|172257.8-180842 |M | 13.2 | 18.0 | |p |35600. :| | 180.4 : | | |05455 00551| +591999 |V1999 Oph |172256.1-171405 |L: | 14.4 | 15.0 | |p | | | | | |05455 GSC | +592000 |V2000 Oph |172257.5-174634 |RRAB | 16.0 | 17.8 | |p |35638.863 | | 0.58084 |13 | |05570 USNO | +592001 |V2001 Oph |172304.9-203010 |M | 16.9 |< 20.2 | |p |36740. | | | | |05455 USNO | +592002 |V2002 Oph *|172303.5-181006 |RRAB | 16.0 | 17.8 | |p |35665.801 | | 0.51091 |25 | |05570 USNO | +592003 |V2003 Oph *|172306.7-170529 |RRAB | 15.1 | 16.3 | |p |35662.850 | | 0.55381 |14 | |05570 USNO | +592004 |V2004 Oph |172311.3-191108 |RRAB | 18.2 | 19.8 | |p |35658.863 | | 0.49289 |30 | |05570 USNO | +592005 |V2005 Oph |172310.7-183630 |E/SD | 17.6 | 19.6 | |p |35661.80 | | 2.54065 | | |05455 USNO | +592006 |V2006 Oph |172316.7-194617 |RRAB | 17.5 | 18.6 | |p |35632.813 | | 0.49471 |20 | |05570 USNO | +592007 |V2007 Oph |172323.8-221331 |M | 16.0 |< 20.3 | |p |35642. | | 310.0 | | |05455 USNO | +592008 |V2008 Oph |172311.4-163319 |RR | 16.0 | 16.8 | |p |35657.794 | | 0.55548 : |30 : | |05570 USNO | +592009 |V2009 Oph *|172316.9-174623 |M | 15.7 |< 19.1 | |p |41410. | | 219.8 |27 : | |09548 09548| +592010 |V2010 Oph *|172316.4-170907 |RRAB | 17.1 | 18.0 | |p |35688.720 | | 0.48130 |18 | |05570 USNO | +592011 |V2011 Oph |172325.9-203101 |L: | 16.8 | 17.4 | |p | | | | | |05455 USNO | +592012 |V2012 Oph |172334.4-210352 |L | 17.1 | 17.9 | |p | | | | | |05455 USNO | +592013 |V2013 Oph |172323.5-163924 |RRAB | 16.5 | 17.2 | |p |35655.717 | | 0.55510 |21 | |05570 USNO | +592014 |V2014 Oph |172332.2-191610 |M | 17.3 |< 19.2 | |p |35640. | | | | |05455 USNO | +592015 |V2015 Oph |172335.6-185617 |M | 15.6 |< 19.4 | |p |36704. | | | | |05455 USNO | +592016 |V2016 Oph *|172333.7-170902 |RRAB | 15.3 | 16.8 | |p |35657.861 | | 0.57220 |18 | |05570 USNO | +592017 |V2017 Oph |172342.4-195258 |M | 16.9 |< 19.0 | |p |35620. | | | | |05455 USNO | +592018 |V2018 Oph |172335.8-164401 |M | 12.7 |< 17.5 | |p |36750. | | | | |05455 00551| +592019 |V2019 Oph |172337.0-170541 |RRAB | 16.0 | 17.4 | |p |35640.958 | | 0.53971 |14 | |05570 USNO | +592020 |V2020 Oph |172349.4-215330 |UV | 15.6 | 16.8 | |p | | | | | |05455 USNO | +592021 |V2021 Oph |172352.9-204545 |RRAB | 17.0 | 19.1 | |p |35656.830 | | 0.41268 |20 | |05570 USNO | +592022 |V2022 Oph |172356.8-203533 |RRAB | 17.0 | 19.2 | |p |35632.925 | | 0.50069 |15 | |05570 USNO | +592023 |V2023 Oph |174034.3+114441 |RR | 16. | 17. | |p |39593.57 | | | | |05515 05515| +592024 |V2024 Oph |174223. -245924:|N | 9.5 : |< 18. | |V | |1967 | | |pec(NOVA) |05572 08953| +592025 |V2025 Oph |174437.4+110903 |RR | 16. | 17. | |p |39619.51 | | | | |05515 05515| +592026 |V2026 Oph |174447.5+130625 |RR | 15. | 16. | |p |39619.51 | | | | |05515 05515| +592027 |V2027 Oph |174743.1+131708 |L: | 16. | 17.5 | |p | | | | | |05515 05515| +592028 |V2028 Oph |174824.3+110807 |RR | 16. | 17.5 | |p |39619.51 | | | | |05515 05515| +592029 |V2029 Oph |175437.5+061351 |RR | 15.5 | 16.5 | |p |39259.55 | | | | |03903 03903| +592030 |V2030 Oph |175452.2+022828 |RR | 16. | 17. | |p |39611.52 | | | | |05515 05515| +592031 |V2031 Oph |175614.3+062842 |RR: | 15.5 | 17. | |p |39611.52 | | | | |05515 05515| +592032 |V2032 Oph |175731.2+012435 |LB | 16. | 17.5 | |p | | | | | |03910 03910| +592033 |V2033 Oph |175737.8+045117 |RRAB | 14.8 | 16.5 | |p |42812.617 | | 0.5658331 |10 | |09451 09451| +592034 |V2034 Oph |180112.4+054214 |RR: | 15.5 | 17. | |p | | | | | |03910 03910| +592035 |V2035 Oph |180454.9+025951 |E | 15.5 | 16.5 | |p |39270.52 | | | | |05515 05515| +592036 |V2036 Oph |180839.4+061538 |EA/SD | 14.1 | 16.2 | |p |43426.224 | | 6.78780 |12 *| |08776 05515| +592037 |V2037 Oph |181153.3+022021 |EA | 15. | 15.5 | |p |39270.52 | | | | |05515 05515| +592038 |V2038 Oph |181314.5+041509 |LB | 13.5 | 14.5 | |p | | | | | |05515 05515| +592039 |V2039 Oph |182703.0+072022 |SR: | 15.5 | 20. | |p | | | | | |03903 03903| +592040 |V2040 Oph |182730.9+100906 |RRAB | 13.7 | 15.2 | |p |37854.515 | | 0.387056 |12 | |05249 02367| +592041 |V2041 Oph |183041.4+093740 |RRAB | 13.8 | 15.2 | |p |36719.415 | | 0.470130 |12 | |05249 02367| +592042 |V2042 Oph *|183247.0+075806 |RRAB | 14.0 | 16.0 | |p |36701.459 | | 0.538500 |15 | |05249 02367| +592043 |V2043 Oph |184216.0+103359 |SR: | 16. |< 17.5 | |p | | | | | |03903 03903| +592044 |V2044 Oph |184507.4+090243 |SR | 17. |< 18. | |p | | | | | |03903 03903| +592045 |V2045 Oph *|165117.8-061440 |M: | 12.1 | | |p | | | | |M5IIIe |05159 USNO | +592046 |V2046 Oph |170829.4+104628 |SRB | 13. | 15.5 | |p |39260. | | 110. : | | |05957 00158| +592047 |V2047 Oph |170916.2+004242 |SR: | 13. | 14. | |p |27918. | | 78. : | | |05957 02315| +592048 |V2048 Oph *|180015.8+042207 |GCAS+UV: | 4.55 | 4.85 | |V | | | | |B2-B6IV-VneV |05150 05288| +592049 |V2049 Oph |160745.5-063739 |SR: | 14.7 | 15.0 | |p |29770. | | 93. : | | |05692 05692| +592050 |V2050 Oph |161014.6-055629 |LB | 13.6 | 14.3 | |p | | | | | |05692 05692| +592051 |V2051 Oph *|170819.1-254830 |UG+EA | 13.0 | 17.5 | |V | | | | |pec(UG) |09549 09472| +592052 |V2052 Oph |175618.4+004013 |BCEP | 5.81 | 5.84 | |V |41442.048 | | 0.1398903 |50 |B2IV-V |07579 BD | +592053 |V2053 Oph |181449.4+051256 |LB | 10.3 | 11.3 | |V | | | | | |06368 | +592054 |V2054 Oph |172446.7-031720 |EA | 14.5 | 15.5 | |p |40475.278 | | 2.825959 | | |06997 02316| +592055 |V2055 Oph |173312.3-021436 |M | 14.5 |< 15.5 | |p |41871. | | 218.3 | | |00001 02316| +592056 |V2056 Oph |174134.8-003541 |EA/D | 13.5 | 14.2 | |p |37790.52 | | 2.127424 | | |06997 02363| +592057 |V2057 Oph |174315.8-035331 |SRB | 11.5 | 13.6 | |p | | | | |M6 |06997 00552| +592058 |V2058 Oph *|162556.2-242048 |INST | 13.6 | 14.52 | |B | | | | |K5-K7e(T) |09447 00516| +592059 |V2059 Oph *|162755.6-242618 |INST | 13.9 | 14.7 | |p | | | | |K:e(T) |09447 00516| +592060 |V2060 Oph |162851.2-055126 |EW:/KW: | 15.0 | 15.7 | |p | | | 0.22 | | |03625 03625| +592061 |V2061 Oph *|163058. -123543:|RR: | 15.4 | 16.0 | |p | | | | | |04403 04403| +592062 |V2062 Oph *|163133.5-242737 |INST | 13.4 | 14.5 | |p | | | | |K2e-K3e(T) |09447 06415| +592063 |V2063 Oph *| | | | | | | | | | | | |N +592064 |V2064 Oph *|164115.0-205043 |IN: | 13.5 |< 16. | |p | | | | | |00121 GSC | +592065 |V2065 Oph |164255.9-033859 |LB: | 12. | 13. | |p | | | | |M4III-M8 |00122 04238| +592066 |V2066 Oph |165105.9+102052 |ISB: | 12.4 | 13.3 | |V | | | | |M7-M9 |03905 03905| +592067 |V2067 Oph |165928.1-021741 |LB: | 11. | 12.5 | |p | | | | | |00205 02315| +592068 |V2068 Oph |170646.6-164650 |SR: | 13.0 |< 14.2 | |p | | | | |M7 |00551 00551| +592069 |V2069 Oph |171438.2-004720 |SR: | 12.5 | 14.8 | |V | | | | |M8-M9 |06977 06977| +592070 |V2070 Oph |171517.6-001603 |L | 13.5 | 15. | |p | | | | | |00205 02315| +592071 |V2071 Oph |171731.9-175254 |SRB | 15.8 | 16.1 | |p | | | | |M6 |05455 GSC | +592072 |V2072 Oph |171659.8-010117 |LB | 13. | 14. | |p | | | | | |00205 02316| +592073 |V2073 Oph |172501.5+105129 |RR: | 16. | 17. | |p | | | | | |03776 03776| +592074 |V2074 Oph |172812.5+102626 |SR: | 13.5 | 14.5 | |p | | | | | |03903 03903| +592075 |V2075 Oph |173811.9-205137 |M: | 14.5 |< 17.5 | |p | | | | |M6-M8 |04579 06977| +592076 |V2076 Oph |174151.6-175349 |PVTEL | 9.78 | 10.08 : | |V | | | 0.71 : | |O9.5Ia-B1Ia(p) |04509 BD | +592077 |V2077 Oph |175007.9+051226 |SR: | 16. | 17.5 | |p | | | | | |03903 03903| +592078 |V2078 Oph |175314.4+104523 |SR | 12.5 | 14.5 | |p | | | | | |00464 00533| +592079 |V2079 Oph |175623.0+014556 |RR: | 15. | 16. | |p |38883.55 | | | | |03910 03910| +592080 |V2080 Oph |175616.9+085454 |L | 12.5 | 13.5 | |p | | | | | |00464 00533| +592081 |V2081 Oph |175754.4+104222 |LB | 11.5 | 12.5 | |p | | | | |M3 |00464 00533| +592082 |V2082 Oph |175759.6+055218 |RR: | 16. | 16.5 | |p | | | | | |03903 03903| +592083 |V2083 Oph |175901.4+020601 |RR: | 17. | 18. | |p |38549.49 | | | | |03910 03910| +592084 |V2084 Oph |180354.0+023725 |RR: | 16. | 17. | |p | | | | | |03903 03903| +592085 |V2085 Oph |180806.4+004609 |SR: | 15. | 17. | |p | | | | | |03910 03910| +592086 |V2086 Oph |180959.0+050307 |RR: | 15. | 16. | |p |38883.55 | | | | |03910 03910| +592087 |V2087 Oph |181116.4+051533 |RR: | 16. | 17. | |p |38549.49 | | | | |03910 03910| +592088 |V2088 Oph |181821.6+091806 |SR | 13. | 15. | |p | | | | | |00464 00533| +592089 |V2089 Oph |182326.6+030828 |S: | 14.9 | 16.0 : | |p | | | | | |08097 06887| +592090 |V2090 Oph |182352.3+033723 |LB: | 15. | 16. | |p | | | | |M6:-M9 |01662 06286| +592091 |V2091 Oph |183327.0+063346 |L: | 14.3 | 15.6 | |p | | | | | |00164 02367| +592092 |V2092 Oph |183549.2+101124 |RR: | 16. | 17. | |p |29541.34 | | | | |03903 03903| +592093 |V2093 Oph |183702.1+072004 |SR: | 16. | 17.5 | |p | | | | | |03903 03903| +592094 |V2094 Oph |183802.8+073837 |RR: | 15.1 | 16.0 | |p | | | | | |00164 02367| +592095 |V2095 Oph |164745.5-195601 |LB | 12.8 | 13.5 | |p | | | | | |07897 07897| +592096 |V2096 Oph |165605.5-240637 |M: | 14.0 | 17.0 | |p | | | | | |05571 00261| +592097 |V2097 Oph |170001.8-232516 |M: | 14.0 |< 15.5 | |p | | | | | |05571 USNO | +592098 |V2098 Oph |170149.9-231133 |M: | 13.5 |< 16.5 | |p | | | | | |05571 GSC22| +592099 |V2099 Oph |170323.4-231617 |M: | 13.6 |< 16. | |p | | | | | |07897 07897| +592100 |V2100 Oph |170424.5-242711 |M | 13.8 | 17.5 | |p | | | | |Me |05571 07897| +592101 |V2101 Oph *|170938.0-271856 |UG | 13.2 | 16.5 | |p | | | | | |05386 08852| +592102 |V2102 Oph *|171032.5-262212 |M | 13.7 |< 18.0 | |B |43210. | | 238.6 | | |09429 09429| +592103 |V2103 Oph |173029.4-163015 |M | 12.4 |< 14.3 | |p | | | | |Me |00551 00551| +592104 |V2104 Oph |180325.0+114757 |NA | 8.8 |< 20. | |V |43045. |1976 | | |pec(NOVA) |07902 | +592105 |V2105 Oph *|162743.5-073553 |SRB: | 5.0 | 5.38 | |V | | | | |M2.5III |06994 BD | +592106 |V2106 Oph *|164935.0-215108 |SR | 7.38 | 7.46 | |V | | | 22. : | |M2III |08225 BD | +592107 |V2107 Oph |170814.4-250533 |XND | 16.5 : | 21. | |B | | | | |pec(cont-e) |09551 09551| +592108 |V2108 Oph *|171419.4+085603 |SR: | 6.6 | 8.8 | |I | | | | |M7-M9.8 |06005 07783| +592109 |V2109 Oph |172416.1-243651 |NA: | 10.8 |< 13. : | |R |40394. :|1969 | | |pec(NOVA) |08232 USNO | +592110 |V2110 Oph |174333.4-224536 |NC | 12.0 | 22. | |V | |1940:| | |pec(NOVA)+M8 |09554 09554| +592111 |V2111 Oph |164511.4-030506 |SR | 6.69 | 7.08 | |V | | | 45. : | |M5III |08225 BD | +592112 |V2112 Oph *|171852.8+060508 |DSCTC | 6.50 | 6.52 | |V |44114.5474 | | 0.1874472 | |F0III-IV |09552 BD | +592113 |V2113 Oph |171946.5+020822 |SR: | 6.59 | 6.81 | |V | | | | |M5III |08225 BD | +592114 |V2114 Oph |172744.1+082631 |SR | 6.40 | 6.51 | |V | | | 18. : | |M4III |08225 BD | +592115 |V2115 Oph |172956.4-174040 |M | 13.9 |< 17. | |p |43017. | | 176.1 |40 : | |08409 08409| +592116 |V2116 Oph *|173202.1-244444 |XP | 18.66 | 19.36 | |V | | | | |M6III+(cont+e) |04128 09555| +592117 |V2117 Oph |175924.3-095442 |EA | 12.4 | 13.3 | |p |42625.366 | | 2.3437433 |17 | |08412 08412| +592118 |V2118 Oph *|180133.2+111709 |* | 7.02 | 7.09 | |V |43330.644 | | 0.8171 |43 |F2IV |09556 BD | +592119 |V2119 Oph *|170418.6-245521 |RRAB | 15.9 | 17.2 | |B |43284.387 | | 0.6614306 |21 | |08775 08775| +592120 |V2120 Oph *|170438.1-244217 |RRAB | 15.6 | 16.7 | |B |43284.800 | | 0.652996 |18 | |08775 08775| +592121 |V2121 Oph *|170448.3-244303 |M | 14.0 : | 18.2 : | |B |43287. | | 158.3 |50 | |08775 08775| +592122 |V2122 Oph *|170453.5-243344 |RRAB | 16.1 | 17.1 | |B |43284.346 | | 0.713953 |26 | |08775 08774| +592123 |V2123 Oph *|170451.6-244623 |RRAB | 16.2 | 17.7 | |B |43284.737 | | 0.539332 |13 | |08775 08775| +592124 |V2124 Oph *|170508.8-244312 |RRAB | 15.8 | 17.0 | |B |43284.817 | | 0.530243 |09 | |08775 08775| +592125 |V2125 Oph |173518.5-220238 |ACV | 6.57 |( 0.041 )| |V | | | 9.75 | |B8p(Si) |08415 BD | +592126 |V2126 Oph |180015.7+003746 |ACV | 6.36 |( 0.008 )| |V | | | 2.41 : | |A3p(Sr-Cr-Eu) |08415 BD | +592127 |V2127 Oph |180327.6+091719 |M | 13.5 | 19.5 : | |B |43406. | | 331.0 | | |09446 09446| +592128 |V2128 Oph |162613.7-091419 |DSCTC | 9.66 | 9.70 | |V | | | | | |67085 BD | +592129 |V2129 Oph |162740.3-242204 |INT | 11.23 | 11.53 | |V | | | | | |67086 67087| +592130 |V2130 Oph |162832.7-242245 |INSB | 15.4 | 16.22 | |B | | | | | |67089 67087| +592131 |V2131 Oph |163115.8-243402 |INS | 13.0 | 14.2 | |p | | | | | |67089 67090| +592132 |V2132 Oph | | | | | | | | | | | | |=V1003 Oph +592133 |V2133 Oph |163621.4-021929 |BY | 6.57 |( 0.04 )| |B | | | | | |67092 BD | +592134 |V2134 Oph |170206.5-295644 |XBND | 18.3 |< 23. | |V | | | | | |67093 67115| +592135 |V2135 Oph |170211.4-261352 |RRC | 14.3 | 14.8 | |B | | | | | |67114 67113| +592136 |V2136 Oph |170940.3-262719 |RRC | 16.0 | 16.9 | |B | | | | | |67117 67117| +592137 |V2137 Oph |171000.0-263357 |CEP | 16.2 | 17.7 | |B | | | | | |67117 67117| +592138 |V2138 Oph |171239.2-291608 |M: | 16.0 | 20.8 | |B | | | | | |67120 67120| +592139 |V2139 Oph |171243.4-292937 |SR: | 17.3 | 19.6 | |B | | | | | |67120 67120| +592140 |V2140 Oph |171242.2-290953 |SR: | 16.5 | 18.0 | |B | | | | | |67120 67120| +592141 |V2141 Oph |171244.2-293730 |RRAB | 17.1 | 19.3 | |B | | | | | |67120 67120| +592142 |V2142 Oph |171250.1-290120 |RRAB | 18.1 | 19.8 | |B | | | | | |67120 67120| +592143 |V2143 Oph |171250.9-292312 |SR: | 16.2 | 18.0 | |B | | | | | |67120 67120| +592144 |V2144 Oph |171255.0-291257 |M: | 17.3 | 20.2 | |B | | | | | |67120 67120| +592145 |V2145 Oph |171008.2-263539 |M | 16.0 : |< 18.0 | |B | | | | | |67117 67117| +592146 |V2146 Oph |171312.1-290936 |SR: | 17.6 | 19.4 | |B | | | | | |67120 67120| +592147 |V2147 Oph |171314.6-294408 |M: | 17.6 | 20.9 | |B | | | | | |67120 67120| +592148 |V2148 Oph |171320.0-290235 |SR: | 17.4 | 18.5 | |B | | | | | |67120 67120| +592149 |V2149 Oph |171321.0-290922 |RRAB | 17.1 | 18.8 | |B | | | | | |67120 67120| +592150 |V2150 Oph |171326.2-294105 |RRAB | 17.1 | 19.2 | |B | | | | | |67120 67120| +592151 |V2151 Oph |171326.3-294444 |RRAB | 17.1 | 19.7 | |B | | | | | |67120 67120| +592152 |V2152 Oph |171328.1-291241 |SR: | 16.0 | 18.3 | |B | | | | | |67120 67120| +592153 |V2153 Oph |171345.1-290909 |M: | 17.3 | 20.4 | |B | | | | | |67120 67120| +592154 |V2154 Oph |171345.8-294234 |RRAB | 17.0 | 18.7 | |B | | | | | |67120 67120| +592155 |V2155 Oph |171347.2-293219 |RRAB | 16.6 | 18.4 | |B | | | | | |67120 67120| +592156 |V2156 Oph |171352.4-290844 |RRAB | 17.2 | 18.5 | |B | | | | | |67120 67120| +592157 |V2157 Oph |171352.5-291125 |RRAB | 16.5 | 18.3 | |B | | | | | |67120 67120| +592158 |V2158 Oph |171358.1-294726 |RRAB | 18.4 | 20.3 | |B | | | | | |67120 67120| +592159 |V2159 Oph |171414.9-293654 |SR: | 17.2 | 18.2 | |B | | | | | |67120 67120| +592160 |V2160 Oph |171419.2-291942 |M: | 17.2 | 20.3 | |B | | | | | |67120 67120| +592161 |V2161 Oph |171418.7-292458 |RRAB | 16.3 | 17.6 | |B | | | | | |67120 67120| +592162 |V2162 Oph |171421.3-294947 |RRAB | 17.6 | 19.8 | |B | | | | | |67120 67120| +592163 |V2163 Oph |171423.1-293642 |SR: | 15.8 | 17.0 | |B | | | | | |67120 67120| +592164 |V2164 Oph |171425.9-294858 |RRAB | 17.1 | 18.7 | |B | | | | | |67120 67120| +592165 |V2165 Oph |171426.5-291059 |RRAB | 17.4 | 19.2 | |B | | | | | |67120 67120| +592166 |V2166 Oph |171433.4-293228 |RRAB | 17.5 | 18.7 | |B | | | | | |67120 67120| +592167 |V2167 Oph |171440.4-292934 |RRAB | 16.8 | 18.7 | |B | | | | | |67120 67120| +592168 |V2168 Oph |171438.5-295139 |RRAB | 17.9 | 19.7 | |B | | | | | |67120 67120| +592169 |V2169 Oph |171441.8-292537 |M: | 16.3 | 19.9 | |B | | | | | |67120 67120| +592170 |V2170 Oph |171442.2-294230 |RRC | 17.8 | 18.8 | |B | | | | | |67120 67120| +592171 |V2171 Oph |171447.6-292633 |RR | 17.0 | 18.1 | |B | | | | | |67120 67120| +592172 |V2172 Oph |171444.2-290244 |M: | 18.8 | 21.5 | |B | | | | | |67120 67120| +592173 |V2173 Oph |171449.5-292741 |RRC | 17.1 | 17.8 | |B | | | | | |67120 67120| +592174 |V2174 Oph |171449.3-293118 |RRAB | 16.5 | 17.9 | |B | | | | | |67120 67120| +592175 |V2175 Oph |171452.3-290323 |SR: | 17.2 | 18.5 | |B | | | | | |67120 67120| +592176 |V2176 Oph |171456.8-291233 |SR: | 17.2 | 18.5 | |B | | | | | |67120 67120| +592177 |V2177 Oph |171509.7-292630 |RRAB | 16.9 | 18.4 | |B | | | | | |67120 67120| +592178 |V2178 Oph |171502.8-285915 |RRAB | 17.5 | 19.8 | |B | | | | | |67120 67120| +592179 |V2179 Oph |171506.6-290326 |RR | 18.3 | 19.9 | |B | | | | | |67120 67120| +592180 |V2180 Oph |171509.6-292735 |M: | 16.4 | 21.1 | |B | | | | | |67120 67120| +592181 |V2181 Oph |171516.9-292323 |RRC | 17.2 | 18.6 | |B | | | | | |67120 67120| +592182 |V2182 Oph |171516.7-291242 |RRAB | 17.9 | 19.9 | |B | | | | | |67120 67120| +592183 |V2183 Oph |171520.6-292920 |M: | 16.0 | 21.4 | |B | | | | | |67120 67120| +592184 |V2184 Oph |171525.2-294535 |RRAB | 17.0 | 19.0 | |B | | | | | |67120 67120| +592185 |V2185 Oph |171530.6-293046 |M: | 17.2 | 20.6 | |B | | | | | |67120 67120| +592186 |V2186 Oph |171540.5-291458 |M: | 18.0 | 20.8 | |B | | | | | |67120 67120| +592187 |V2187 Oph |171538.9-293034 |RRAB | 17.7 | 19.3 | |B | | | | | |67120 67120| +592188 |V2188 Oph |171543.5-293612 |SR: | 17.7 | 19.1 | |B | | | | | |67120 67120| +592189 |V2189 Oph |171548.3-285735 |RRAB | 18.4 | 20.1 | |B | | | | | |67120 67120| +592190 |V2190 Oph |171549.4-291732 |RRAB | 17.4 | 19.4 | |B | | | | | |67120 67120| +592191 |V2191 Oph |171551.1-294122 |RRAB | 17.8 | 18.9 | |B | | | | | |67120 67120| +592192 |V2192 Oph |171551.4-292747 |RRAB | 18.0 | 19.9 | |B | | | | | |67120 67120| +592193 |V2193 Oph |171605.1-294432 |RRAB | 17.2 | 18.9 | |B | | | | | |67120 67120| +592194 |V2194 Oph |171604.7-294025 |RRAB | 19.2 | 20.8 | |B | | | | | |67120 67120| +592195 |V2195 Oph |171609.0-291408 |RRAB | 17.9 | 20.4 | |B | | | | | |67120 67120| +592196 |V2196 Oph |171613.8-293857 |RRAB | 18.3 | 19.9 | |B | | | | | |67120 67120| +592197 |V2197 Oph |171614.4-292546 |RR | 17.5 | 19.3 | |B | | | | | |67120 67120| +592198 |V2198 Oph |171615.9-291332 |RRAB | 17.9 | 20.0 | |B | | | | | |67120 67120| +592199 |V2199 Oph |171622.7-291148 |RR | 18.0 | 19.8 | |B | | | | | |67120 67120| +592200 |V2200 Oph |171630.4-294555 |RRAB | 18.2 | 20.1 | |B | | | | | |67120 67120| +592201 |V2201 Oph |174404.4+034417 |EW/KW | 14.5 | 14.8 | |B | | | | | |67130 67063| +592202 |V2202 Oph |174503.6+054821 |RR | 15.0 | 16.0 | |p | | | | | |67129 USNO | +592203 |V2203 Oph |174943.3+042824 |EW/KW | 11.6 | 12.0 | |B | | | | | |67133 67133| +592204 |V2204 Oph |182601.9+115510 |ZAND: | 13.7 |< 16.8 | |B | | | | | |67136 67136| +592205 |V2205 Oph |162835.4-091932 |PVTEL | 10.40 | 10.59 | |V | | | | | |68330 BD | +592206 |V2206 Oph |165212.9-125701 |SR: | 10.2 | 11.5 | |V | | | | | |68015 GSC | +592207 |V2207 Oph |170013.2-103700 |M | 8.4 | 10.3 : | |I | | | | | |68015 USNO | +592208 |V2208 Oph |171930.3-183055 |RRAB | 16.7 | 17.8 | |p | | | | | |68333 68174| +592209 |V2209 Oph |173957.4-240326 |M | 13.9 |< 16.9 | |R | | | | | |68175 68175| +592210 |V2210 Oph |174842.3+070543 |RRAB | 13.5 | 14.1 | |B | | | | | |68336 68337| +592211 |V2211 Oph |175110.0-080122 |M | 8.9 | 10.6 : | |I | | | | | |68015 USNO | +592212 |V2212 Oph |165431.1-073338 |LB: | 13.6 | 15.0 | |V | | | | | |69203 GSC | +592213 |V2213 Oph |170516.8+004209 |BY | 6.01 |( 0.04 )| |V | | | | | |69205 BD | +592214 |V2214 Oph |171201.7-293734 |NB | 9.4 | 21. | |V | | | | | |69207 | +592215 |V2215 Oph |171613.4-263246 |RS | 6.26 | 6.34 | |V | | | | | |69011 CoD | +592216 |V2216 Oph |173144.1-165742 |XI | 16.4 |( 0.5 )| |B | | | | | |69208 69209| +592217 |V2217 Oph |173610.4-234921 |SR | 14.8 | 17.1 | |R | | | | | |69211 69210| +592218 |V2218 Oph |173613.9-241630 |M | 14.7 | 17.5 : | |R | | | | | |69211 69210| +592219 |V2219 Oph |173641.3-233734 |M | 14.0 |< 17.1 | |R | | | | | |69211 69210| +592220 |V2220 Oph |173642.2-234916 |M |>14.3 | 17.2 : | |R | | | | | |69211 69210| +592221 |V2221 Oph |173704.5-241527 |E: | 15.1 | 16.7 | |R | | | | | |69211 69210| +592222 |V2222 Oph |173734.4-241258 |E: | 15.6 | 17.0 | |R | | | | | |69211 69212| +592223 |V2223 Oph |173800.8-241550 |M: | 15.0 |< 17.1 | |R | | | | | |69211 69210| +592224 |V2224 Oph |173803.4-235604 |M: | 14.6 | 17.0 | |R | | | | | |69211 69212| +592225 |V2225 Oph |173820.9-241806 |M |>14.5 |< 17.1 | |R | | | | | |69211 69210| +592226 |V2226 Oph |173821.2-235043 |M | 13.3 |< 16.3 | |R | | | | | |69211 69212| +592227 |V2227 Oph |173821.8-235523 |M | 13.6 | 16.9 | |R | | | | | |69211 69210| +592228 |V2228 Oph |173838.2-235214 |M |>14.1 |< 18. | |R | | | | | |69211 69210| +592229 |V2229 Oph |173842.5-235833 |M | 15.2 | 17.0 | |R | | | | | |69211 69210| +592230 |V2230 Oph |173847.9-234710 |M: | 15.6 |< 17.5 | |R | | | | | |69211 69212| +592231 |V2231 Oph |173909.9-233212 |M | 14.6 : | 17.5 : | |R | | | | | |69211 69210| +592232 |V2232 Oph |173919.0-240517 |M | 14.2 |< 17.1 | |R | | | | | |69211 69210| +592233 |V2233 Oph |173919.9-241012 |M | 13.5 | 17.1 : | |R | | | | | |69211 69210| +592234 |V2234 Oph |173953.2-233708 |M | 13.0 |< 17.1 | |R | | | | | |69211 69212| +592235 |V2235 Oph |173953.2-232839 |SRA | 14.5 : | 16.8 | |R | | | | | |69211 69210| +592236 |V2236 Oph |174006.5-241915 |SR | 15.5 | 17.0 | |R | | | | | |69211 69210| +592237 |V2237 Oph |174013.3-241607 |SRA | 14.8 | 17.0 | |R | | | | | |69211 69210| +592238 |V2238 Oph |174021.6-240541 |SR | 15.2 | 16.5 | |R | | | | | |69211 69210| +592239 |V2239 Oph |174042.9-235915 |M | 13.8 | 17.1 | |R | | | | | |69211 69212| +592240 |V2240 Oph |174046.7-233401 |M | 13.3 | 17.5 : | |R | | | | | |69211 69210| +592241 |V2241 Oph |174050.5-241714 |M | 14.1 | 17.1 : | |R | | | | | |69211 69210| +592242 |V2242 Oph |174056.3-233450 |SRA | 14.3 | 16.4 | |R | | | | | |69211 69210| +592243 |V2243 Oph |174311.2-181808 |BE | 9.61 | 9.76 | |V | | | | | |69213 BD | +592244 |V2244 Oph |175126.8-014321 |PVTEL | 11.5 |( 0.09 y )| |p | | | | | |69214 69215| +592245 |V2245 Oph |162549.7-245131 |INT | 13.12 | 13.28 | |V | | | | | |70153 70078| +592246 |V2246 Oph |162603.1-242336 |INT | 13.82 | 14.15 | |V | | | | | |70153 70079| +592247 |V2247 Oph |162719.5-244140 |INT | 13.19 | 13.45 | |V | | | | | |70080 70081| +592248 |V2248 Oph |163211.8-244022 |INT | 13.36 | 13.89 | |V | | | | | |70153 70079| +592249 |V2249 Oph |165302.5-220519 |EW: | 16.3 |( 0.6 )| |B | | | | | |70082 70083| +592250 |V2250 Oph |165336.1-221419 |EA | 15.7 |( 0.8 )| |B | | | | | |70082 70083| +592251 |V2251 Oph |162647.4-231452 |INT | 13.84 | 14.24 | |V | | | | | |71142 71143| +592252 |V2252 Oph |163105.2-240439 |INT | 13.75 | 14.50 | |V | | | | | |71142 71143| +592253 |V2253 Oph |165256.0-264502 |RS | 8.1 |( 0.18 )| |V | | | | | |71001 CoD | +592254 |V2254 Oph |170346.1-295032 |M | 8.94 | 11.15 | |J | | | | | |71144 2MASS| +592255 |V2255 Oph |170610.7-280522 |M | 8.23 | 11.38 | |K | | | | | |71144 2MASS| +592256 |V2256 Oph |170724.9-283748 |M | 9.36 | 12.31 | |H | | | | | |71144 2MASS| +592257 |V2257 Oph |170745.8-270518 |M | 8.88 | 9.86 | |J | | | | | |71144 USNO | +592258 |V2258 Oph |170748.2-280210 |M | 9.35 | 11.72 | |J | | | | | |71144 USNO | +592259 |V2259 Oph |170752.0-271122 |M | 8.63 | 10.07 | |J | | | | | |71144 GSC22| +592260 |V2260 Oph |170924.3-280221 |M | 7.44 | 8.78 | |J | | | | | |71144 2MASS| +592261 |V2261 Oph |171627.6-252002 |M | 7.67 | 9.07 | |J | | | | | |71144 GSC22| +592262 |V2262 Oph |171635.6-255441 |M | 8.50 | 9.61 | |J | | | | | |71144 2MASS| +592263 |V2263 Oph |171846.9-235856 |M | 8.93 | 10.16 | |J | | | | | |71144 GSC22| +592264 |V2264 Oph |172020.9-264626 |NA | 9.8 |< 21. : | |V | | | | | |71148 71149| +592265 |V2265 Oph |172019.6-243843 |M | 7.26 | 8.86 | |J | | | | | |71144 GSC22| +592266 |V2266 Oph |172314.1-224741 |M | 6.52 | 7.88 | |J | | | | | |71144 USNO | +592267 |V2267 Oph |172558.2-210150 |M | 9.66 | 12.39 | |J | | | | | |71144 2MASS| +592268 |V2268 Oph |172603.5-213736 |M | 7.94 | 9.18 | |J | | | | | |71144 2MASS| +592269 |V2269 Oph |172643.1-214110 |M | 7.45 | 8.04 | |H | | | | | |71144 2MASS| +592270 |V2270 Oph |172708.8-220523 |M | 9.15 | 10.62 | |J | | | | | |71144 2MASS| +592271 |V2271 Oph |172726.3-213337 |M | 8.24 | 9.80 | |J | | | | | |71144 GSC22| +592272 |V2272 Oph |172754.1-214237 |M | 8.18 | 10.05 | |J | | | | | |71144 2MASS| +592273 |V2273 Oph |172906.1-210416 |M | 8.32 | 9.73 | |J | | | | | |71144 2MASS| +592274 |V2274 Oph |172925.1-203934 |M | 11.74 | 13.7 | |J | | | | | |71144 2MASS| +592275 |V2275 Oph |172946.2-212507 |M | 9.80 | 12.61 | |K | | | | | |71144 2MASS| +592276 |V2276 Oph |173033.0-193525 |M | 9.53 | 10.99 | |J | | | | | |71144 2MASS| +592277 |V2277 Oph |173039.5-203145 |M | 9.77 | 11.29 | |J | | | | | |71144 2MASS| +592278 |V2278 Oph |173141.0-195808 |M | 8.14 | 10.16 | |K | | | | | |71144 2MASS| +592279 |V2279 Oph |173145.3-165730 |EA | 17.32 | 17.62 | |B | | | | | |71151 71152| +592280 |V2280 Oph |173215.2-193309 |M | 9.48 | 11.60 | |J | | | | | |71144 2MASS| +592281 |V2281 Oph |173322.1-193552 |M | 8.44 | 10.79 | |K | | | | | |71144 2MASS| +592282 |V2282 Oph |173324.0-194953 |M | 10.62 | 13.10 | |J | | | | | |71144 2MASS| +592283 |V2283 Oph |173516.6-183535 |M | 8.09 | 9.68 | |J | | | | | |71144 2MASS| +592284 |V2284 Oph |173839.6-170614 |M | 9.76 | 11.9 | |J | | | | | |71144 2MASS| +592285 |V2285 Oph |173925.3-164238 |M | 8.68 | 10.26 | |J | | | | | |71144 GSC22| +592286 |V2286 Oph |173938.5-165815 |M | 8.90 | 11.03 | |J | | | | | |71144 2MASS| +592287 |V2287 Oph |174108.5-170600 |M | 7.76 | 9.65 | |J | | | | | |71144 2MASS| +592288 |V2288 Oph |174153.6+051631 |EA | 12.6 | 13.1 | |p | | | | | |71154 71155| +592289 |V2289 Oph |174300.0-160656 |M | 8.14 | 9.73 | |J | | | | | |71144 GSC22| +592290 |V2290 Oph |174305.6-200655 |NA | 9.3 |< 22. | |V | | | | | |71156 | +592291 |V2291 Oph |182538.8+080155 |EA/GS | 7.02 |( 1.1 )| |U | | | | | |71169 BD | +592292 |V2292 Oph |165258.8-000135 |BY: | 6.78 |( 0.04 )| |V | | | | | |72119 BD | +592293 |V2293 Oph |171936.9-250103 |XND | 17.1 | 21.5 | |B | | | | | |72120 | +592294 |V2294 Oph |171953.5-084700 |M | 3.99 | 5.7 | |K | | | | | |72121 2MASS| +592295 |V2295 Oph |172506.4-231111 |NA | 9.0 |< 21. | |V | | | | | |72122 | +592296 |V2296 Oph |172808.3+050218 |M | 3.0 | 4.1 | |K | | | | | |72121 GSC | +592297 |V2297 Oph |173313.9+082039 |M | 6.7 | 7.5 | |K | | | | | |72121 2MASS| +592298 |V2298 Oph |174344.6+053154 |RRC: | 14.0 | 14.9 | |B | | | | | |72123 72124| +592299 |V2299 Oph |174625.7+053109 |BY: | 12.42 |( 0.08 )| |V | | | | | |72125 72126| +592300 |V2300 Oph |180007.3+063314 |ELL: | 6.7 |( 0.02 )| |V | | | | | |72045 BD | +592301 |V2301 Oph |180035.6+081012 |E+AM | 16.0 | 22.0 | |V | | | | | |72127 72085| +592302 |V2302 Oph |180918.6+091216 |M | 4.07 | 5.5 | |K | | | | | |72121 2MASS| +592303 |V2303 Oph |183829.6+111137 |SR | 11.1 |< 12.5 | |V | | | | | |72128 72128| +592304 |V2304 Oph |162552.8-231935 |UVN | 15.1 |< 18. | |U | | | | | |73209 73209| +592305 |V2305 Oph |162615.5-234427 |UVN | 15.7 |< 18. | |U | | | | | |73209 73209| +592306 |V2306 Oph |163018.1-123945 |BY | 10.05 | 10.10 | |V | | | | | |73018 73210| +592307 |V2307 Oph |164017.9-235345 |INA | 9.50 | 11.13 | |U | | | | | |73211 CoD | +592308 |V2308 Oph |170326.7-283431 |M | 8.11 | 9.40 | |J | | | | | |73116 GSC22| +592309 |V2309 Oph |172400.8-291930 |M | 9.2 : | 18. : | |R | | | | | |73212 73212| +592310 |V2310 Oph |172920.4-234534 |ZZ: | 15.94 |( 0.03 )| |v | | | | | |73047 73048| +592311 |V2311 Oph |173003.9-262803 |M | 9. : | 17.0 | |R | | | | | |73213 73213| +592312 |V2312 Oph |173234.9+095922 |RRAB | 13.7 |( 1.08 )| |V | | | | | |73214 73214| +592313 |V2313 Oph |173544.7-191934 |NA | 7.5 |< 12.5 | |V | | | | | |73215 73216| +592314 |V2314 Oph |174403.6+060343 |DSCTC | 7.43 |( 0.08 )| |V | | | | | |73217 BD | +592315 |V2315 Oph |174415.7+054252 |ELL: | 8.28 | 8.34 | |V | | | | | |73218 BD | +592316 |V2316 Oph |174519.4+054742 |BY | 13.65 |( 0.05 )| |V | | | | | |73219 73220| +592317 |V2317 Oph |174519.6+053655 |BY | 12.71 |( 0.04 )| |V | | | | | |73219 UCAC2| +592318 |V2318 Oph |174525.1+055139 |BY | 13.68 |( 0.08 )| |V | | | | | |73219 73220| +592319 |V2319 Oph |174556.8+052233 |BY | 12.65 |( 0.07 )| |V | | | | | |73219 73221| +592320 |V2320 Oph |174610.9+053930 |ELL: | 7.36 | 7.39 | |V | | | | | |73218 BD | +592321 |V2321 Oph |174612.0+054126 |BY | 14.34 |( 0.16 )| |V | | | | | |73219 73222| +592322 |V2322 Oph |174626.1+054942 |BY | 12.92 |( 0.04 )| |V | | | | | |73219 73221| +592323 |V2323 Oph |174636.4+060714 |ELL: | 8.09 | 8.12 | |V | | | | | |73218 BD | +592324 |V2324 Oph |174646.7+053354 |ELL: | 8.19 | 8.25 | |V | | | | | |73218 BD | +592325 |V2325 Oph |174733.3+053146 |BY | 13.08 |( 0.11 )| |V | | | | | |73219 73221| +592326 |V2326 Oph |174744.0+052159 |BY | 13.41 |( 0.08 )| |V | | | | | |73219 73220| +592327 |V2327 Oph |174843.4+054205 |ELL: | 7.51 | 7.54 | |V | | | | | |73218 BD | +592328 |V2328 Oph |175056.0+071829 |RRAB | 15.2 | 17.1 | |B | | | | | |73223 73223| +592329 |V2329 Oph |175219.4+033748 |EA | 16.1 | 17.5 | |B | | | | | |73224 73224| +592330 |V2330 Oph |175944.7+083151 |RRAB | 14.4 | 16.3 | |B | | | | | |73224 73224| +592331 |V2331 Oph |180102.5+084337 |RRAB | 15.1 | 16.5 | |B | | | | | |73224 73224| +592332 |V2332 Oph |180148.9+083545 |EB | 13.8 | 14.9 | |B | | | | | |73224 73224| +592333 |V2333 Oph |180216.7+085656 |M | 13.3 | 16.1 : | |B | | | | | |73223 73223| +592334 |V2334 Oph |180415.1+060413 |RRAB | 14.9 | 16.5 | |B | | | | | |73223 73223| +592335 |V2335 Oph |180417.3+044344 |UG | 15.0 |< 21.0 | |B | | | | | |73223 73223| +592336 |V2336 Oph |180434.4+081949 |RRAB | 14.0 | 15.0 | |B | | | | | |73223 73223| +592337 |V2337 Oph |180525.1+081509 |SRB | 13.9 | 16.5 | |B | | | | | |73223 73223| +592338 |V2338 Oph |180528.9+075421 |CWA: | 12.4 | 13.2 | |p | | | | | |73225 73225| +592339 |V2339 Oph |180548.5+072740 |ISB | 13.5 | 14.3 | |B | | | | | |73224 73224| +592340 |V2340 Oph |180707.9+082246 |SRA | 14.3 | 16.5 | |B | | | | | |73223 73223| +592341 |V2341 Oph |180709.4+072010 |LB | 12.8 | 13.8 | |B | | | | | |73224 73224| +592342 |V2342 Oph |181230.1+083636 |M | 13.8 |< 17.3 | |B | | | | | |73223 73223| +592343 |V2343 Oph |181248.3+075233 |M: | 14.6 |< 17.5 | |B | | | | | |73224 73224| +592344 |V2344 Oph |181326.6+085228 |SRA | 13.4 | 15.6 | |B | | | | | |73223 73223| +592345 |V2345 Oph |181352.5+090441 |RRAB | 14.0 | 16.0 | |B | | | | | |73224 73224| +592346 |V2346 Oph |181834.5+080541 |RRAB | 13.2 | 14.5 | |B | | | | | |73224 73224| +592347 |V2347 Oph |182751.0+075221 |M | 5.8 | 6.9 | |K | | | | | |73029 GSC22| +592348 |V2348 Oph |160139.8-054142 |LB | 8.93 | 9.19 | |Hp| | | | | |HIP HIP | +592349 |V2349 Oph |160701.1-035240 |LB | 7.31 | 7.45 | |Hp| | | | | |HIP HIP | +592350 |V2350 Oph |162259.5-071232 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +592351 |V2351 Oph |162515.0-095153 |RR: | 8.43 | 8.51 | |Hp| | | | | |HIP HIP | +592352 |V2352 Oph |163440.8+031756 |BY: | 11.33 | 11.67 | |Hp| | | | | |HIP HIP | +592353 |V2353 Oph |164339.7-224411 |ACV | 7.58 | 7.64 | |Hp| | | | | |HIP HIP | +592354 |V2354 Oph |164605.3-165402 |LB: | 8.58 | 8.68 | |Hp| | | | | |HIP HIP | +592355 |V2355 Oph |165055.5-163249 |EB | 7.11 | 7.25 | |Hp| | | | | |HIP HIP | +592356 |V2356 Oph |165219.7+111431 |LB: | 7.07 | 7.26 | |Hp| | | | | |HIP HIP | +592357 |V2357 Oph |165716.8+105951 |EW: | 10.66 | 10.79 | |Hp| | | | | |HIP HIP | +592358 |V2358 Oph |165753.4-194730 |LB | 8.35 | 8.52 | |Hp| | | | | |HIP HIP | +592359 |V2359 Oph |165905.6+113047 |LB | 7.84 | 7.96 | |V | | | | | |HIP HIP | +592360 |V2360 Oph |170018.8-191006 |LB: | 8.34 | 8.45 | |Hp| | | | | |HIP HIP | +592361 |V2361 Oph |170146.9+063636 |LB: | 8.62 | 8.79 | |Hp| | | | | |HIP HIP | +592362 |V2362 Oph |170300.6+044452 |LB: | 8.72 | 8.85 | |Hp| | | | | |HIP HIP | +592363 |V2363 Oph |170531.6+021645 |SRB | 9.51 | 10.18 | |Hp| | | | | |HIP HIP | +592364 |V2364 Oph |170534.7+034603 |SRB | 7.36 | 7.48 | |Hp| | | | | |HIP HIP | +592365 |V2365 Oph |170845.8+091110 |E: | 8.91 | 9.11 | |Hp| | | | | |HIP HIP | +592366 |V2366 Oph |170943.1+001939 |LB: | 8.97 | 9.06 | |Hp| | | | | |HIP HIP | +592367 |V2367 Oph |171340.5-082515 |BY: | 11.88 | 12.15 | |Hp| | | | | |HIP HIP | +592368 |V2368 Oph |171614.3+021110 |EA | 6.22 | 6.42 | |Hp| | | | | |HIP HIP | +592369 |V2369 Oph |171734.7+102459 |BY: | 8.54 | 8.65 | |Hp| | | | | |HIP HIP | +592370 |V2370 Oph |172325.1+105250 |LB: | 9.79 | 9.90 | |Hp| | | | | |HIP HIP | +592371 |V2371 Oph |172434.8-265529 |BCEP | 9.12 | 9.18 | |Hp| | | | | |HIP HIP | +592372 |V2372 Oph |172827.6-290331 |LB | 7.31 | 7.40 | |Hp| | | | | |HIP HIP | +592373 |V2373 Oph |173202.9+024925 |EB | 7.39 | 7.46 | |Hp| | | | | |HIP HIP | +592374 |V2374 Oph |173334.6-221018 |SRD | 7.81 | 7.92 | |Hp| | | | | |HIP HIP | +592375 |V2375 Oph |173317.0+000612 |LB | 7.74 | 7.86 | |Hp| | | | | |HIP HIP | +592376 |V2376 Oph |173414.6-245233 |LB: | 8.01 | 8.11 | |Hp| | | | | |HIP HIP | +592377 |V2377 Oph |173356.0+080958 |EB | 8.60 | 8.73 | |Hp| | | | | |HIP HIP | +592378 |V2378 Oph |173433.4-181315 |E: | 7.17 | 7.28 | |Hp| | | | | |HIP HIP | +592379 |V2379 Oph |173532.6+050101 |E: | 7.95 | 8.12 | |Hp| | | | | |HIP HIP | +592380 |V2380 Oph |173532.6+112202 |LB | 7.60 | 7.70 | |Hp| | | | | |HIP HIP | +592381 |V2381 Oph |173857.9+023930 |RR: | 7.77 | 7.84 | |Hp| | | | | |HIP HIP | +592382 |V2382 Oph |174023.9-285524 |BE | 7.26 | 7.29 | |Hp| | | | | |HIP HIP | +592383 |V2383 Oph |174043.8-074613 |BY: | 10.38 | 10.68 | |Hp| | | | | |HIP HIP | +592384 |V2384 Oph |174230.4-284456 |E | 9.10 | 9.24 | |Hp| | | | | |HIP HIP | +592385 |V2385 Oph |174615.2-010900 |BE | 8.85 | 8.98 | |Hp| | | | | |HIP HIP | +592386 |V2386 Oph |174752.8+062409 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +592387 |V2387 Oph |175221.1+064603 |LB | 7.64 | 7.82 | |Hp| | | | | |HIP HIP | +592388 |V2388 Oph |175414.2+110750 |EB | 6.27 | 6.55 | |Hp| | | | | |HIP HIP | +592389 |V2389 Oph |175607.4-012436 |SRB | 7.65 | 7.82 | |Hp| | | | | |HIP HIP | +592390 |V2390 Oph |175830.9+131154 |LB: | 10.73 | 10.90 | |Hp| | | | | |HIP HIP | +592391 |V2391 Oph *|180527.3+023000 |BY: | 4.14 | 4.16 | |Hp| | | | | |HIP HIP | +592392 |V2392 Oph |181605.6+022239 |SRB: | 6.03 | 6.20 | |Hp| | | | | |HIP HIP | +592393 |V2393 Oph |183323.3+081606 |ACV | 6.40 | 6.44 | |Hp| | | | | |HIP HIP | +592394 |V2394 Oph |163140.7-242516 |EW | 11.25 | 11.95 | |U | | | | | |75180 CoD | +592395 |V2395 Oph |164208.1-203048 |M: | 13.0 |< 15.6 | |p | | | | | |75181 USNO | +592396 |V2396 Oph |164450.0-201217 |M: | 11.7 |< 15. | |p | | | | | |75021 75021| +592397 |V2397 Oph |165657.5-090647 |M: | 12.0 |< 15.3 | |p | | | | | |75002 GSC22| +592398 |V2398 Oph |170035.0-273804 |IT | 11.32 | 12.82 | |U | | | | | |75086 CoD | +592399 |V2399 Oph |171013.9-101850 |M | 13.3 |< 15.6 | |p | | | | | |75002 GSC | +592400 |V2400 Oph |171236.5-241445 |XM | 14.15 | 14.70 | |V | | | | | |75182 75182| +592401 |V2401 Oph |171545.6-043022 |M | 13.0 |< 15.5 | |p | | | | | |75064 75064| +592402 |V2402 Oph |171709.9-285354 |M | 12.2 | 17.2 | |R | | | | | |75183 75184| +592403 |V2403 Oph |171711.7-295058 |M | 15.1 | 17.2 | |R | | | | | |75183 75184| +592404 |V2404 Oph |171718.6-280539 |M | 14.7 | 17.2 | |R | | | | | |75183 75184| +592405 |V2405 Oph |171736.6-282625 |M | 15.6 | 17.3 | |R | | | | | |75183 75184| +592406 |V2406 Oph |171743.5-293316 |M | 13.1 | 17.2 | |R | | | | | |75183 75184| +592407 |V2407 Oph |171804.2-292529 |M | 14.0 | 17.2 | |R | | | | | |75183 75184| +592408 |V2408 Oph |171812.8-295412 |M | 14.5 | 17.3 | |R | | | | | |75183 75184| +592409 |V2409 Oph |171812.3-290629 |M | 12.5 | 17.3 | |R | | | | | |75183 75184| +592410 |V2410 Oph |171814.5-295532 |M | 15.6 | 17.2 | |R | | | | | |75183 75184| +592411 |V2411 Oph |171825.6-300733 |M | 14.2 | 17.2 | |R | | | | | |75183 75184| +592412 |V2412 Oph |171834.0-300453 |M | 15.0 | 17.3 | |R | | | | | |75183 75184| +592413 |V2413 Oph |171834.5-293817 |M | 14.6 | 17.3 | |R | | | | | |75183 75184| +592414 |V2414 Oph |171838.6-280112 |M | 14.2 | 17.1 | |R | | | | | |75183 75184| +592415 |V2415 Oph |171843.0-294313 |M | 13.9 | 17.3 | |R | | | | | |75183 10203| +592416 |V2416 Oph |171847.2-284619 |M | 13.2 | 17.1 | |R | | | | | |75183 75184| +592417 |V2417 Oph |171823.4-014728 |M: | 13.9 |< 15.5 | |p | | | | | |75002 USNO | +592418 |V2418 Oph |171908.3-294720 |M | 15.3 | 17.3 | |R | | | | | |75183 75184| +592419 |V2419 Oph |171909.5-295736 |M | 14.8 | 17.2 | |R | | | | | |75183 75184| +592420 |V2420 Oph |171924.6-295347 |M | 15.8 | 17.3 | |R | | | | | |75183 75184| +592421 |V2421 Oph |171927.7-294245 |M | 14.2 | 17.3 | |R | | | | | |75183 75184| +592422 |V2422 Oph |171946.3-290901 |M | 15.0 | 17.3 | |R | | | | | |75183 75184| +592423 |V2423 Oph |171946.0-283204 |M | 15.2 | 17.3 | |R | | | | | |75183 75184| +592424 |V2424 Oph |171921.6-054913 |M | 12.3 |< 15.6 | |p | | | | | |75021 75021| +592425 |V2425 Oph |171918.5-001018 |EA | 10.6 |( 0.83 )| |V | | | | | |75188 BD | +592426 |V2426 Oph |172001.2-285958 |M | 11.9 | 17.1 | |R | | | | | |75183 75184| +592427 |V2427 Oph |172001.3-281622 |M | 14.8 | 17.2 | |R | | | | | |75183 75184| +592428 |V2428 Oph |172004.5-282528 |M | 15.2 | 17.2 | |R | | | | | |75183 75184| +592429 |V2429 Oph |172020.4-284211 |M | 14.7 | 17.3 | |R | | | | | |75183 75184| +592430 |V2430 Oph |172024.5-280423 |M | 14.6 | 17.2 | |R | | | | | |75183 75184| +592431 |V2431 Oph |172029.9-281341 |M | 14.6 | 17.2 | |R | | | | | |75183 75184| +592432 |V2432 Oph |172049.5-281719 |M | 15.8 | 17.2 | |R | | | | | |75183 75184| +592433 |V2433 Oph |172129.4-284054 |M | 15.6 | 17.2 | |R | | | | | |75183 75184| +592434 |V2434 Oph |172146.8-291734 |M | 11.2 | 17.2 | |R | | | | | |75183 75184| +592435 |V2435 Oph |172203.6-294353 |M | 15.6 | 17.3 | |R | | | | | |75183 75184| +592436 |V2436 Oph |172224.3-295437 |M | 15.3 | 17.2 | |R | | | | | |75183 75184| +592437 |V2437 Oph |172229.4-293933 |M | 15.5 | 17.3 | |R | | | | | |75183 75184| +592438 |V2438 Oph |172233.1-282937 |SRA | 16.5 | 17.3 | |R | | | | | |75183 75184| +592439 |V2439 Oph |172240.7-281228 |M | 15.7 | 17.3 | |R | | | | | |75183 75184| +592440 |V2440 Oph |172254.1-295310 |M | 15.4 | 17.3 | |R | | | | | |75183 75184| +592441 |V2441 Oph |172258.8-283153 |M | 15.2 | 17.2 | |R | | | | | |75183 75184| +592442 |V2442 Oph |172313.6-292034 |M | 15.0 | 17.2 | |R | | | | | |75183 75184| +592443 |V2443 Oph |172245.9-083359 |M | 12.4 | 15.2 | |p | | | | | |75002 GSC22| +592444 |V2444 Oph |172315.2-285606 |M | 14.4 | 17.2 | |R | | | | | |75183 75184| +592445 |V2445 Oph |172316.3-281139 |M | 14.7 | 17.3 | |R | | | | | |75183 75184| +592446 |V2446 Oph |172321.4-290154 |M | 13.9 | 17.3 | |R | | | | | |75183 75184| +592447 |V2447 Oph |172324.8-283540 |M | 15.8 | 17.3 | |R | | | | | |75183 75184| +592448 |V2448 Oph |172330.1-280440 |M | 15.0 | 17.2 | |R | | | | | |75183 75184| +592449 |V2449 Oph |172337.6-285800 |M | 15.2 | 17.2 | |R | | | | | |75183 75184| +592450 |V2450 Oph |172342.2-300318 |SRA | 16.2 | 17.3 | |R | | | | | |75183 75184| +592451 |V2451 Oph |172345.0-280731 |M | 15.6 | 17.3 | |R | | | | | |75183 75184| +592452 |V2452 Oph |172436.7-290933 |M | 15.0 | 17.3 | |R | | | | | |75183 75184| +592453 |V2453 Oph |172438.0-291457 |M | 12.9 | 17.3 | |R | | | | | |75183 75184| +592454 |V2454 Oph |172442.8-275846 |M | 15.1 | 17.2 | |R | | | | | |75183 75184| +592455 |V2455 Oph |172502.7-282455 |M | 14.6 | 16.9 | |R | | | | | |75183 75184| +592456 |V2456 Oph |172507.5-285912 |M | 14.6 | 17.3 | |R | | | | | |75183 75184| +592457 |V2457 Oph |172519.6-290608 |M | 14.0 | 17.2 | |R | | | | | |75183 75184| +592458 |V2458 Oph |172522.8-290805 |M | 14.6 | 17.3 | |R | | | | | |75183 75184| +592459 |V2459 Oph |172533.2-290501 |M | 14.1 | 17.3 | |R | | | | | |75183 75184| +592460 |V2460 Oph |172559.7-292110 |M | 15.1 | 17.3 | |R | | | | | |75183 75184| +592461 |V2461 Oph |172553.6-005127 |M: | 13.5 |< 15.5 | |p | | | | | |75002 GSC | +592462 |V2462 Oph |172653.8-285117 |M | 15.2 | 17.2 | |R | | | | | |75183 75184| +592463 |V2463 Oph |172658.9-294804 |M | 14.6 | 17.2 | |R | | | | | |75183 75184| +592464 |V2464 Oph |172659.8-294653 |M | 14.2 | 17.3 | |R | | | | | |75183 75184| +592465 |V2465 Oph |172705.9-285238 |M | 12.8 | 17.1 | |R | | | | | |75183 75184| +592466 |V2466 Oph |172717.8-292340 |SRA | 16.1 | 17.2 | |R | | | | | |75183 75184| +592467 |V2467 Oph |172730.3-295545 |M | 15.2 | 17.3 | |R | | | | | |75183 75184| +592468 |V2468 Oph |172729.3-291534 |M | 14.9 | 17.3 | |R | | | | | |75183 75184| +592469 |V2469 Oph |172749.9-290825 |M | 15.5 | 17.2 | |R | | | | | |75183 75184| +592470 |V2470 Oph |172753.3-282132 |M | 14.3 | 17.2 | |R | | | | | |75183 75184| +592471 |V2471 Oph |172803.0-294336 |M | 14.6 | 17.2 | |R | | | | | |75183 75184| +592472 |V2472 Oph |172835.0-293848 |M | 15.6 | 17.3 | |R | | | | | |75183 75184| +592473 |V2473 Oph |172841.6-284337 |M | 15.4 | 17.3 | |R | | | | | |75183 75184| +592474 |V2474 Oph |172849.3-300406 |M | 15.7 | 17.3 | |R | | | | | |75183 75184| +592475 |V2475 Oph |172851.4-284143 |M | 16.0 | 17.3 | |R | | | | | |75183 75184| +592476 |V2476 Oph |172857.1-290113 |M | 15.3 | 17.2 | |R | | | | | |75183 75184| +592477 |V2477 Oph |172915.3-290018 |M | 13.9 | 17.3 | |R | | | | | |75183 75184| +592478 |V2478 Oph |172933.3-281559 |SRA | 16.6 | 17.3 | |R | | | | | |75183 75184| +592479 |V2479 Oph |172938.3-290628 |M | 15.0 | 17.2 | |R | | | | | |75183 75184| +592480 |V2480 Oph |172949.9-290408 |M | 14.7 | 17.2 | |R | | | | | |75183 75184| +592481 |V2481 Oph |173019.3-295427 |M | 15.4 | 17.2 | |R | | | | | |75183 75184| +592482 |V2482 Oph |173100.1-282433 |M | 15.6 | 17.3 | |R | | | | | |75183 75184| +592483 |V2483 Oph |173110.9-292956 |SRA | 16.4 | 17.3 | |R | | | | | |75183 75184| +592484 |V2484 Oph |173124.6-295405 |M | 15.3 | 17.2 | |R | | | | | |75183 75184| +592485 |V2485 Oph |173135.1-280257 |M | 15.8 | 17.2 | |R | | | | | |75183 75184| +592486 |V2486 Oph |173201.5-285033 |M | 15.2 | 17.2 | |R | | | | | |75183 75184| +592487 |V2487 Oph |173159.8-191356 |NA | 9.5 | 17.7 | |p | | | | | |75189 USNO | +592488 |V2488 Oph |173332.0-295748 |M | 10.5 | 17.1 | |R | | | | | |75183 75184| +592489 |V2489 Oph |173416.8-292449 |M | 15.3 | 17.3 | |R | | | | | |75183 75184| +592490 |V2490 Oph |173458.6-284652 |SRA | 16.1 | 17.3 | |R | | | | | |75183 75184| +592491 |V2491 Oph |173510.9-280253 |SRA | 16.2 | 17.2 | |R | | | | | |75183 75184| +592492 |V2492 Oph |173652.5-284641 |M | 14.4 | 17.3 | |R | | | | | |75183 75184| +592493 |V2493 Oph |173725.8+112225 |RR(B) | 13.2 |( 0.84 )| |V | | | | | |75190 75017| +592494 |V2494 Oph |173928.1-075900 |M | 12.8 | 15.5 | |p | | | | | |75002 GSC | +592495 |V2495 Oph |173925.3-021208 |M | 12.8 |< 15.4 | |p | | | | | |75002 USNO | +592496 |V2496 Oph |174344.8-291544 |M | 8.8 | 10.5 | |K | | | | | |75191 | +592497 |V2497 Oph |174346.7-291537 |M | 8.5 | 9.8 | |K | | | | | |75191 | +592498 |V2498 Oph |174314.7-042056 |M | 14.5 |< 15.5 | |p | | | | | |75002 USNO | +592499 |V2499 Oph |175639.1+100627 |M | 11.5 | 14.7 | |V | | | | | |75095 75095| +592500 |V2500 Oph |175748.5+044136 |BY | 9.55 |( 0.02 )| |V | | | | | |75192 75300| +592501 |V2501 Oph |180457.4+085738 |SR: | 12.3 |( 0.31 )| |V | | | | | |75193 GSC | +592502 |V2502 Oph |181704.8+010021 |GDOR: | 6.61 | 6.77 | |Hp| | | | | |75029 BD | +592503 |V2503 Oph |162510.5-231914 |INT | 13.39 | 13.66 | |V | | | | | |76136 76265| +592504 |V2504 Oph |162551.8-085947 |EW: | 13.0 | 13.6 | |V | | | | | |76012 USNO | +592505 |V2505 Oph |162948.7-215212 |BY | 11.23 |( 0.13 )| |V | | | | | |76134 76135| +592506 |V2506 Oph |164547.8-021303 |LB: | 12.3 | 13.1 | |V | | | | | |76012 USNO | +592507 |V2507 Oph |164818.0-141115 |INT | 13.49 | 13.66 | |V | | | | | |76136 76143| +592508 |V2508 Oph |164845.6-141635 |INT | 13.19 | 13.40 | |V | | | | | |76136 76143| +592509 |V2509 Oph |165129.9+062227 |RRAB | 12.7 | 13.4 | |* | | | | | |76140 GSC | +592510 |V2510 Oph |165328.3-202748 |M: | 13.5 |< 15.2 | |V | | | | | |76144 USNO | +592511 |V2511 Oph |165625.1-203044 |M: | 13.1 |< 15.5 | |V | | | | | |76145 USNO | +592512 |V2512 Oph |165712.8-125123 |SR: | 11.1 | 12.0 | |* | | | | | |76146 USNO | +592513 |V2513 Oph |165824.1-202336 |SR: | 11.1 | 12.1 | |* | | | | | |76057 USNO | +592514 |V2514 Oph |165846.7-124347 |M | 11.2 |< 14.2 | |* | | | | | |76146 GSC | +592515 |V2515 Oph |165913.1-112022 |SR: | 11.8 | 13.9 | |* | | | | | |76147 USNO | +592516 |V2516 Oph |170022.5-300133 |M: | 12.5 | 15.2 | |* | | | | | |76057 USNO | +592517 |V2517 Oph |170052.2-290134 |SR: | 12.4 |< 14.0 | |* | | | | | |76057 USNO | +592518 |V2518 Oph |170100.9-224947 |M: | 11.5 | 13.9 | |* | | | | | |76057 USNO | +592519 |V2519 Oph |170257.4-285719 |SR: | 11.3 | 12.3 | |* | | | | | |76057 GSC22| +592520 |V2520 Oph |170258.9-285716 |SR: | 11.2 | 12.1 | |* | | | | | |76057 USNO | +592521 |V2521 Oph |170307.0-203326 |SR: | 8.8 | 10.0 | |* | | | | | |76057 USNO | +592522 |V2522 Oph |170811.4-275300 |M: | 12.0 | 17.7 | |R | | | | | |76148 76148| +592523 |V2523 Oph |170836.6-172630 |ZAND | 10.9 | 12.94 | |V | | | | | |76149 UCAC2| +592524 |V2524 Oph |171149.8-263912 |M: | 12.9 | 16.8 | |R | | | | | |76148 76148| +592525 |V2525 Oph |171505.3-092350 |M | 11.9 |< 15.1 | |V | | | | | |76150 USNO | +592526 |V2526 Oph |171952.2-245517 |M: | 14.5 | 18. : | |R | | | | | |76148 76148| +592527 |V2527 Oph |172204.2-194908 |UGSU | 14.4 | 19. | |* | | | | | |76153 76005| +592528 |V2528 Oph |172758.3-223003 |SR: | 12.7 |< 14.7 | |V | | | | | |76054 USNO | +592529 |V2529 Oph | | | | | | | | | | | | |=V2115 Oph +592530 |V2530 Oph |173134.6+080913 |RRC: | 13.5 |( 0.40 )| |V | | | | | |76157 76158| +592531 |V2531 Oph |173604.1-194311 |M: | 12.7 |< 13.6 | |V | | | | | |76159 GSC | +592532 |V2532 Oph |173734.1-174714 |M: | 12.4 |< 13.3 | |V | | | | | |76161 USNO | +592533 |V2533 Oph |175813.7-043647 |SR: | 13.4 | 14.6 | |V | | | | | |76167 GSC | +592534 |V2534 Oph |175929.5-094416 |SR: | 13.2 | 14.3 | |* | | | | | |76147 USNO | +592535 |V2535 Oph |180729.2+062237 |SR | 12.8 | 13.1 | |* | | | | | |76169 USNO | +592536 |V2536 Oph |180957.3+085026 |EA | 11.55 | 12.08 | |* | | | | | |76170 GSC | +592537 |V2537 Oph |182113.5+002723 |M: | 12.5 |< 15.1 | |V | | | | | |76175 USNO | +592538 |V2538 Oph |183206.9+080712 |SR: | 12.1 | 12.5 | |* | | | | | |76066 GSC | +592539 |V2539 Oph |183506.1+081428 |SR: | 12.2 | 12.4 | |* | | | | | |76169 USNO | +592540 |V2540 Oph |173734.6-162323 |NB | 8.5 |< 20. | |V | | | | | |77130 77131| +592541 |V2541 Oph |165206.5-153808 |M | 13.2 |< 15.5 | |* | | | | | |77004 USNO | +592542 |V2542 Oph |165410.6-013644 |DSCTC | 6.25 |( 0.02 )| |V | | | | | |77124 DM | +592543 |V2543 Oph |165522.4+072200 |LB | 12.9 | 13.3 | |* | | | | | |77125 GSC | +592544 |V2544 Oph |165612.2+035308 |LB | 10.3 | 11.4 | |* | | | | | |77125 GSC | +592545 |V2545 Oph |170222.7+041027 |LB | 11.0 | 11.4 | |* | | | | | |77125 GSC22| +592546 |V2546 Oph |170307.4-152715 |M: | 10.3 | 12.7 | |* | | | | | |77004 GSC | +592547 |V2547 Oph |170725.7-105056 |M | 11.8 | 16.0 | |* | | | | | |77004 USNO | +592548 |V2548 Oph |170758.1-244431 |M | 4.57 | 6.45 | |K | | | | | |77081 2MASS| +592549 |V2549 Oph |170922.1+123958 |EA | 11.8 | 12.3 | |V | | | | | |77100 GSC | +592550 |V2550 Oph |171918.6+040324 |LB | 11.7 | 12.1 | |* | | | | | |77125 GSC | +592551 |V2551 Oph |172017.0-200645 |SR: | 12.1 | 12.9 | |V | | | | | |77004 UCAC2| +592552 |V2552 Oph |172314.6-225206 |RCB | 10.5 | 13.6 | |V | | | | | |77004 GSC | +592553 |V2553 Oph |172441.6+135358 |EW | 11.3 | 11.8 | |V | | | | | |77100 GSC | +592554 |V2554 Oph |172511.8-173426 |M | 12.1 |< 14.5 | |V | | | | | |77004 GSC | +592555 |V2555 Oph |172515.6+040108 |LB | 11.3 | 11.7 | |* | | | | | |77125 GSC | +592556 |V2556 Oph |173530.4+040539 |LB | 11.0 | 11.4 | |* | | | | | |77125 GSC | +592557 |V2557 Oph |173628.4-182849 |SR: | 11.0 | 13.1 | |V | | | | | |77004 UCAC2| +592558 |V2558 Oph |174619.4+040908 |LB | 12.0 | 12.4 | |* | | | | | |77125 GSC | +592559 |V2559 Oph |174946.5-061936 |M: | 13.8 |< 15.0 | |V | | | | | |77004 USNO | +592560 |V2560 Oph |175433.4+041146 |LB | 12.2 | 12.7 | |* | | | | | |77125 GSC | +592561 |V2561 Oph *|180148.8+070050 |UG | 16.1 |< 18.5 | |* | | | | | |77139 | +592562 |V2562 Oph |180306.3+072417 |LB | 12.3 | 12.6 | |* | | | | | |77125 GSC | +592563 |V2563 Oph |180421.5+003624 |E | 11.6 | 13.0 | |* | | | | | |77147 GSC | +592564 |V2564 Oph |180440.1+034645 |LB: | 7.34 |( 0.05 )| |V | | | | | |77023 DM | +592565 |V2565 Oph |180522.0+040547 |LB | 11.4 | 11.8 | |* | | | | | |77125 GSC | +592566 |V2566 Oph |180956.9+003336 |SR: | 12.6 | 14.4 | |* | | | | | |77004 USNO | +592567 |V2567 Oph |181719.8+040034 |LB | 12.2 | 12.7 | |* | | | | | |77125 GSC | +592568 |V2568 Oph |181854.6+041157 |LB | 11.3 | 11.7 | |* | | | | | |77125 GSC | +592569 |V2569 Oph |182523.0+035222 |LB | 12.1 | 12.4 | |* | | | | | |77125 GSC | +592570 |V2570 Oph |182810.8+075715 |SRS: | 7.66 | 7.72 | |V | | | | | |77053 DM | +592571 |V2571 Oph |182934.6+032812 |SR: | 12.0 | 14.1 | |* | | | | | |77156 GSC22| +592572 |V2572 Oph |183019.2+034752 |SR: | 12.7 | 14.0 | |* | | | | | |77156 GSC22| +592573 |V2573 Oph |171914.1-272235 |NA | 10.5 |< 20. | |V |52817. |2003 | | |pec(Nova) |78207 78208| +592574 |V2574 Oph |173845.5-232819 |NA | 10.2 |< 20. | |V |53116. |2004 | | |pec(Nova) |78215 78216| +592575 |V2575 Oph |173313.1-242107 |N | 11.07 |< 17. | |V |53779. |2006 | | |pec(Nova) |78117 | +592576 |V2576 Oph |171533.0-290940 |N | 9.2 |< 17. | |V |53834. |2006 | | |pec(Nova) |78324 | +592577 |V2577 Oph *|161353.4-063216 |M | 11.6 |< 14.8 | |V |51350 | | 232. | | |78103 78128| +592578 |V2578 Oph |162419.8-133830 |BY | 8.40 |( 0.02 )| |V | | | 13.83 : | |K2V |78018 DM | +592579 |V2579 Oph |162935.3+013819 |RPHS | 11.32 |( 0.04 R )| |B | | | | |sd:B |78116 78009| +592580 |V2580 Oph |163941.4-205239 |SRB | 10.3 | 11.5 | |V | | | 200. : | |M7e |78090 GSC | +592581 |V2581 Oph |164129.1+011847 |BY | 9.42 |( 0.04 )| |V | | | 10.58 | |K2V |78018 DM | +592582 |V2582 Oph |165125.1+081851 |M | 12.9 | 15.6 | |B |42935 | | 260.98 | |M7 |78194 GSC | +592583 |V2583 Oph |165405.9-271647 |M | 12.3 |< 16.5 | |B |47740 | | 349.4 | | |78196 78196| +592584 |V2584 Oph |165657.8-300109 |M: | 10.7 |< 16. | |* | | | | | |78006 2MASS| +592585 |V2585 Oph |165811.3-233108 |M | 9.8 | 12.6 | |* |53190 | | 300. | | |78006 USNO | +592586 |V2586 Oph |165928.1-132314 |M | 13.1 |< 14.9 | |V |52861 | | 210. | | |78006 USNO | +592587 |V2587 Oph |165942.0-225013 |M | 10.5 | 13.1 | |I |51415 :| | 390. : | | |78006 USNO | +592588 |V2588 Oph |165944.1+073834 |SRA | 11.4 | 13.0 | |V |52814 | | 142. |60 | |78194 GSC | +592589 |V2589 Oph |165945.1-241249 |M: | 13.0 |< 14.9 | |* | | | | | |78006 2MASS| +592590 |V2590 Oph |165952.6+045901 |M | 13.0 |< 15.9 | |B |53159 | | 279. | | |78194 78107| +592591 |V2591 Oph |170007.8+064123 |RRAB | 13.6 | 15.2 | |B |44345.475 | | 0.6207320 |13 | |78192 78125| +592592 |V2592 Oph |170148.5-230116 |M | 13.8 |< 15.6 | |V |53492 | | 337. | | |78006 USNO | +592593 |V2593 Oph |170202.3-283826 |M: | 10.9 | 13.7 | |* |52852 :| | | | |78006 USNO | +592594 |V2594 Oph |170214.9+080020 |RRAB | 13.2 | 14.4 | |B |44704.498 | | 0.50480515 |17 | |78194 78198| +592595 |V2595 Oph |170256.6-295034 |SR | 11.3 | 13.5 | |* |51284 :| | | | |78006 2MASS| +592596 |V2596 Oph |170300.7-244516 |M: | 11.2 | 13.8 | |* | | | | | |78006 USNO | +592597 |V2597 Oph *|170331.0+060951 |RRAB | 14.0 | 15.8 | |B |46641.390 | | 0.536743 |11 | |78192 78125| +592598 |V2598 Oph |170543.6+062542 |RRC | 14.1 | 14.5 | |B |44374.383 | | 0.38749054 |35 | |78194 78201| +592599 |V2599 Oph |170936.2-264018 |M | 5.94 | 7.06 | |K | | | 545. : | | |78202 2MASS| +592600 |V2600 Oph *|171139.2-232800 |RV | 11.5 | 12.8 | 12.6 |V |53576.6 | | 53.10 | |F8: |78040 GSC | +592601 |V2601 Oph |171204.6+085428 |SRA | 13.2 | 15.3 | |B |38501 | | 144.46 | | |78191 78107| +592602 |V2602 Oph |171810.9-243005 |M | 13.4 |< 18.0 | |V |52157 | | 260. | | |78040 78128| +592603 |V2603 Oph |171929.4-250256 |RRAB | 16.0 | 17.5 | |B |44409.424 | | 0.4908409 |25 | |78209 78209| +592604 |V2604 Oph *|172819.9-163002 |EA | 12.7 | 14.0 : | 14.0 : |V |52756.768 | | 1.70477 |13 | |78225 GSC | +592605 |V2605 Oph |172951.5+012946 |SRA | 10.1 | 11.9 | |V |52473 | | 113. | |M2e |78090 GSC | +592606 |V2606 Oph |174240.1-274453 |XN: | 16.3 |< 19.2 | |J | | | | | |78217 78145| +592607 |V2607 Oph |174319.2-033021 |SRB | 13.5 | 14.7 | |V | | | 120. | | |78140 USNO | +592608 |V2608 Oph |174643.6-040807 |SRA | 12.2 | 14.6 | |V |51310 | | 349. | | |78103 2MASS| +592609 |V2609 Oph *|175334.1+052457 |RRAB | 14.6 | 15.5 | |B |48801.529 | | 0.5326038 |12 | |78221 78002| +592610 |V2610 Oph |175332.3-035455 |EW | 9.20 | 9.45 | |V |52369.95 | | 0.42651 | |K0 |78094 DM | +592611 |V2611 Oph |180348.7+011259 |RRAB | 15.0 | 16.1 | |B |49124.475 | | 0.5440106 |13 | |78221 78083| +592612 |V2612 Oph *|182913.0+064714 |EW | 9.36 | 9.74 | 9.70 |V |52454.7107 | | 0.375296 | |G0 |78244 DM | +592613 |V2613 Oph | | | | | | | | | | | | |=Y Sco +592614 |V2614 Oph |172315.4-300723 |M | 14.3 | 17.3 | |R | | | | | |75183 75184| +592615 |V2615 Oph |174244.0-234035 |NA | 8.6 |< 20. | |V |54182. |2007 | | |pec(Nova) |79151 79114| +592616 |V2616 Oph |162635.1-055803 |SRB | 12.7 | 13.8 | |V | | | 334. | | |79064 79198| +592617 |V2617 Oph *|162707.2-085100 |EB | 12.8 | 13.4 | 13.0 |* |52749.804 | | 0.424074 | | |79009 GSC | +592618 |V2618 Oph |162832.9-010429 |SR | 12.3 | 13.5 | |V | | | 129. | | |79064 79010| +592619 |V2619 Oph |164327.4-121047 |EW | 13.75 | 14.35 | 14.35 |V |51352.790 | | 0.479238 | | |79009 79107| +592620 |V2620 Oph |165106.0+065748 |RRAB: | 14.2 | 15.5 | |B |48804.454 | | 0.456 : |20 : | |79109 79017| +592621 |V2621 Oph |165125.0-202105 |RRAB | 13.0 | 13.7 | |V |52835.61 | | 0.667324 |24 : | |79064 GSC | +592622 |V2622 Oph |165142.8+071308 |RRAB | 14.3 | 15.5 | |B |48067.418 | | 0.7481946 |17 | |79110 79040| +592623 |V2623 Oph |170158.8+065528 |SRB | 11.4 | 12.0 | |V | | | 57.45 | | |79064 79022| +592624 |V2624 Oph |170353.7-245043 |SRB | 8.7 | 9.2 | |V | | | 66. | |M2 |79064 DM | +592625 |V2625 Oph |170355.2+123321 |LB | 11.4 | 12.8 | |V | | | | |M7 |79109 79017| +592626 |V2626 Oph *|170532.0+103247 |EA | 8.26 | 8.43 | 8.36 |V |52787.824 | | 10.8743 |04 |A5 |79006 DM | +592627 |V2627 Oph |170603.8+014321 |SRB | 11.3 | 13.1 | |V | | | 105. | |M7 |79067 79113| +592628 |V2628 Oph *|170655.5-233305 |CEP: | 11.9 | 12.5 | |V |53795.57 | | 13.3144 |35 | |79209 GSC | +592629 |V2629 Oph *|170723.7+105241 |EA: | 15.5 | 16.0 | |B |49154.486 | | 1.4528476 |11 : | |79109 79022| +592630 |V2630 Oph |170905.5+112743 |LB | 11.2 | 12.1 | |V | | | | | |79100 GSC | +592631 |V2631 Oph |171022.1-040336 |CWA | 12.1 | 13.4 | |V |53125.053 | | 15.1902 |40 | |79209 79113| +592632 |V2632 Oph |171152.0-235435 |EA | 12.08 | 13.6 : | 13.6 : |V |53491.810 | | 2.69691 |07 : | |79001 USNO | +592633 |V2633 Oph |171156.5+094703 |SR | 13.4 | 14.1 | |B | | | 67. | | |79109 79040| +592634 |V2634 Oph |171307.2+094531 |SRB | 11.4 | 12.1 | |V | | | 74. : | | |79100 79112| +592635 |V2635 Oph |171629.8-002916 |EW | 12.15 | 12.6 : | 12.6 : |V |52720.838 | | 0.43096 | | |79009 79113| +592636 |V2636 Oph *|171810.0-171547 |EA | 12.75 | 13.5 | 13.5 |V |53544.686 | | 3.3337 |08 | |79009 GSC | +592637 |V2637 Oph |171829.6+051631 |EW | 11.80 | 12.27 | 12.21 |V |51325.797 | | 0.386182 | | |79004 GSC | +592638 |V2638 Oph *|171844.6-185615 |EA | 13.2 | 14.0 : | 13.9 |V |52841.670 | | 1.87423 |09 | |79009 GSC | +592639 |V2639 Oph |172207.1+030935 |RRAB | 13.0 | 14.0 | |V |51398.165 | | 0.73581 |20 | |79064 79010| +592640 |V2640 Oph *|172801.5+050715 |EW | 12.50 | 13.2 | 13.2 |V |52860.694 | | 0.419892 | | |79003 GSC | +592641 |V2641 Oph |173357.2-203024 |CEP | 12.9 | 13.8 | |V |52934.50 | | 38.518 |35 | |79064 79010| +592642 |V2642 Oph *|173557.1+115041 |EA | 11.40 | 12.0 | |V |53122.835 | | 3.46464 |08 | |79003 79040| +592643 |V2643 Oph |173600.3-203125 |M | 12.5 |< 14.4 | |V |52837. | | 300. : | | |79100 USNO | +592644 |V2644 Oph |173644.9-291427 |EA | 12.8 | 13.25 : | 13.0 |V |53194.705 | | 1.27748 |12 : | |79001 79116| +592645 |V2645 Oph |174038.6+013626 |RRAB | 12.0 | 12.9 | |V |51951.457 | | 0.59821094 |17 | |79069 79013| +592646 |V2646 Oph |174054.9+044128 |RRAB | 14.7 | 15.7 | |p |48839.332 | | 0.7238664 |21 | |79200 USNO | +592647 |V2647 Oph |174220.3+102004 |EA | 12.30 | 12.85 : | 12.40 |V |53077.904 | | 3.3515 |09 | |79009 79022| +592648 |V2648 Oph |174302.9+000550 |SRA: | 12.9 | 13.9 | |V |53823. | | 113. | | |79064 79117| +592649 |V2649 Oph |174338.5+135518 |LB | 9.6 | 11.4 | |V | | | | |M0 |79100 79089| +592650 |V2650 Oph |174520.7+081039 |EB | 12.57 | 13.2 | 13.0 |V |51453.688 | | 0.384055 | | |79009 GSC | +592651 |V2651 Oph |174910.6+084459 |SRB: | 10.9 | 11.9 | |V | | | 147. : | | |79100 79040| +592652 |V2652 Oph |174958.8+071024 |RRC | 13.1 | 13.8 | |V |45902.420 | | 0.3093401 |35 | |79092 GSC | +592653 |V2653 Oph |175247.3+034739 |EA | 9.51 | 9.77 | 9.75 |V |48744.790 | | 4.39435 |07 |G5 |79004 DM | +592654 |V2654 Oph |175501.6+032120 |LB | 11.9 | 12.3 | |* | | | | | |79100 79201| +592655 |V2655 Oph |175556.4+015143 |LB | 11.0 | 11.2 | |* | | | | | |79100 79013| +592656 |V2656 Oph |175556.7+120202 |RRAB | 13.8 | 15.0 | |* |51348.725 | | 0.56353 |12 | |79025 79010| +592657 |V2657 Oph |175742.7+023120 |EA | 13.7 | 15.2 | |B |49215.433 | | 1.7105330 |10 | |79120 79040| +592658 |V2658 Oph |175745.8+015709 |RRAB | 15.3 | 16.3 | |B |48362.576 | | 0.5628888 |20 | |79119 79013| +592659 |V2659 Oph |175813.7+030014 |EA | 12.83 | 13.85 : | 12.97 |V |53448.891 | | 0.7767554 |13 | |79239 79013| +592660 |V2660 Oph |180124.1+000008 |EA | 14.15 | 14.45 | |B |47380.420 | | 1.2061988 |15 | |79120 79013| +592661 |V2661 Oph |180150.9+041100 |RRAB | 14.1 | 15.1 | |B |48747.484 | | 0.5147988 |18 | |79119 79013| +592662 |V2662 Oph |180229.7+062219 |RRAB | 15.6 | 16.5 | |p |49154.517 | | 0.5644590 |23 | |79200 79040| +592663 |V2663 Oph |180247.7+075401 |EA | 15.0 | 15.9 | |B |48839.388 | | 1.4057497 |13 | |79120 79022| +592664 |V2664 Oph *|180412.7+015158 |RRAB | 15.8 | 17.1 | |B |49127.454 | | 0.4900573 |17 | |79122 79013| +592665 |V2665 Oph |180605.4+064723 |SRB | 12.7 | 13.9 | |V | | | 367. | | |79100 79040| +592666 |V2666 Oph *|180933.9+035936 |GDOR | 6.11 |( 0.02 )| |B | | | 0.61439 | |F0V+G1V |79202 DM | +592667 |V2667 Oph |181514.0+043050 |SR | 13.1 | 14.5 | |V |53597. | | 465. | | |79100 79013| +592668 |V2668 Oph |181624.4+013247 |RRAB | 14.7 | 15.7 | |B |49124.451 | | 0.4520359 |25 | |79122 79013| +592669 |V2669 Oph |181848.8+064154 |SR | 13.0 | 14.6 | |V | | | 153. | | |79100 79040| +592670 |V2670 Oph |173950.9-235001 |NA | 10.0 |< 19. | |V |54614. |2008 | | |pec(Nova) |79249 79250| +592671 |V2671 Oph |173329.6-270115 |NA | 11.1 |< 19. | |* |54618. :|2008 | | |pec(Nova) |79251 79250| +592672 |V2672 Oph |173819.7-264414 |NA | 10.0 |< 20. | |* |55060. |2009 | 2009 | |pec(Nova) |80216 | NL80_1 +592673 |V2673 Oph |173941.0-213948 |NA | 8.3 |< 20. | |* |55213. |2010 | 2010 | |pec(Nova) |80217 80218| NL80_1 +592674 |V2674 Oph |172632.1-284939 |NA | 9.26 |< 20. | |V |55248. |2010 | 2010 | | |80219 80220| NL80_1 +592675 |V2675 Oph |162636.8-241900 |INT | 12.0 | 15.3 | |K | | | | | |80435 2MASS| NL80_2 +592676 |V2676 Oph |172607.0-255143 |NA | 11.8 |< 21. | |V |56094. |2012 | | |pec(Nova) |80642 80643| NL80_3 +592677 |V2677 Oph |173957.0-244707 |NA | 11.18 : |< 21. | |V |56069. :|2012 | | |pec(Nova) |80644 80645| NL80_3 +592678 |V2678 Oph |162226.3+000723 |RS | 11.00 | 11.26 | |V | | | 23.1111 | | |80002 GSC | NL80_3 +592679 |V2679 Oph |162226.9-001008 |RRAB | 17.1 | 18.1 | |V |52001.8335 | | 0.646861 |23 | |80159 USNO | NL80_3 +592680 |V2680 Oph |162333.2-000549 |RRAB | 15.4 | 16.5 | |V |51614.8916 | | 0.569467 |15 | |80159 USNO | NL80_3 +592681 |V2681 Oph |162334.9+002430 |SR | 11.8 | 12.3 | |V | | | 73.6 | | |80001 GSC | NL80_3 +592682 |V2682 Oph |162614.3-005028 |RRAB | 15.8 | 16.5 | |V |51265.8520 | | 0.627403 |14 | |80159 USNO | NL80_3 +592683 |V2683 Oph *|162810.8+030413 |RRAB | 13.0 | 14.2 | |V |54342.5756 | | 0.597013 |10 | |80002 GSC | NL80_3 +592684 |V2684 Oph |162859.2-001553 |RRAB | 17.5 | 18.4 | |V |51258.8981 | | 0.544296 | | |80159 USNO | NL80_3 +592685 |V2685 Oph |163111.9-012514 |RRAB | 17.4 | 18.1 | |V |51260.8734 | | 0.619967 |20 | |80159 USNO | NL80_3 +592686 |V2686 Oph |163121.7-000612 |RRAB | 16.3 | 16.9 | |V |51265.9000 | | 0.498918 | | |80159 USNO | NL80_3 +592687 |V2687 Oph |163208.7-003834 |RRAB | 16.2 | 17.0 | |V |51994.8905 | | 0.646194 |20 | |80159 USNO | NL80_3 +592688 |V2688 Oph |163512.1-005903 |RRC | 15.3 | 15.7 | |V |51995.8993 | | 0.338368 |37 | |80159 USNO | NL80_3 +592689 |V2689 Oph |163619.1-001022 |RRAB | 16.6 | 17.6 | |V |52002.7924 | | 0.555341 |22 | |80159 USNO | NL80_3 +592690 |V2690 Oph *|163722.2-001957 |UGSU | 15.0 | 19.15 | |V | | | | |pec(UG) |80285 80027| NL80_3 +592691 |V2691 Oph |163919.9-020808 |RRAB | 16.0 | 16.8 | |V |51258.8740 | | 0.621789 | | |80159 USNO | NL80_3 +592692 |V2692 Oph |163928.5-012718 |RRAB | 17.0 | 18.1 | |V |51994.8657 | | 0.562185 |13 | |80159 USNO | NL80_3 +592693 |V2693 Oph |163940.4-012755 |RRAB | 16.9 | 18.1 | |V |51255.8393 | | 0.463755 |10 | |80159 USNO | NL80_3 +592694 |V2694 Oph |164028.3-004239 |RRC | 16.3 | 16.7 | |V |51236.9173 | | 0.391583 |45 | |80159 USNO | NL80_3 +592695 |V2695 Oph |164124.4-015951 |RRAB | 17.1 | 17.5 | |V |51620.8854 | | 0.640813 |25 | |80159 USNO | NL80_3 +592696 |V2696 Oph |164327.3-141200 |LB | 7.76 | 9.61 | |K | | | | | |80166 2MASS| NL80_3 +592697 |V2697 Oph |164444.2+030934 |RRAB | 12.05 | 13.2 | |V |54299.63 | | 0.635183 |15 | |80002 GSC | NL80_3 +592698 |V2698 Oph |164717.3+023848 |EA | 12.9 | 13.65 : | 13.0 |* |52750.833 | | 1.47028 |10 | |80013 GSC | NL80_3 +592699 |V2699 Oph |164843.4-015421 |RRAB | 17.0 | 17.5 | |V |52001.8463 | | 0.681500 |18 | |80159 USNO | NL80_3 +592700 |V2700 Oph |165122.1-005001 |BY | 11.4 | 11.6 | |* | | | 3.3593 | | |80043 80043| NL80_3 +592701 |V2701 Oph |165308.3+112343 |EW | 11.80 | 12.25 | 12.20 |V |52383.63 | | 0.339611 | | |80002 GSC | NL80_3 +592702 |V2702 Oph |165357.7+073450 |RS | 10.4 | 11.0 | |V | | | 11.510 | | |80034 GSC | NL80_3 +592703 |V2703 Oph *|165536.8+122551 |RRAB | 13.0 | 14.0 | |V |53068.90 | | 0.528533 |15 | |80001 GSC | NL80_3 +592704 |V2704 Oph |165736.1-295506 |SRA | 12.1 | 12.7 | |V |54927. | | 265. | | |80001 GSC | NL80_3 +592705 |V2705 Oph |165920.5-080704 |M | 13.4 |< 15.3 | |V |55010. | | 367. | | |80001 GSC | NL80_3 +592706 |V2706 Oph |165922.2-212249 |SRA: | 12.8 |< 13.8 | |V |54508. | | 269. | |C |80001 2MASS| NL80_3 +592707 |V2707 Oph |165925.4-282317 |SRA | 11.6 |< 12.5 | |V |54747. | | 265. | | |80001 GSC | NL80_3 +592708 |V2708 Oph |165950.2-242120 |SRA | 12.2 | 14.4 | |V |54628. | | 333.1 | | |80002 GSC | NL80_3 +592709 |V2709 Oph *|170223.2-242159 |RRAB | 11.4 | 12.0 | |V |54336.5419 | | 0.4613693 |25 | |80377 GSC | NL80_3 +592710 |V2710 Oph |170509.8+041339 |RRAB | 13.3 | 14.6 | |V |53832.8238 | | 0.410915 |25 | |80002 GSC | NL80_3 +592711 |V2711 Oph *|170523.4+032619 |DSCTC | 7.31 |( 0.05 )| |V | | | 0.0931015 | |F0IV |80363 HIP | NL80_3 +592712 |V2712 Oph |170525.3-160546 |EB | 12.15 | 12.45 | 12.27 |V |51936.99 | | 0.562227 | | |80459 GSC | NL80_3 +592713 |V2713 Oph |170653.1+063501 |EB | 10.89 | 11.49 | 11.12 |V |52775.769 | | 0.490381 | | |80042 GSC | NL80_3 +592714 |V2714 Oph |170755.7-285206 |M | 4.61 | 6.28 | |K | | | 531. | |C |80166 2MASS| NL80_3 +592715 |V2715 Oph *|170930.3-263920 |XB | 20.5 | 22.24 | |R | | | | | |80460 80460| NL80_3 +592716 |V2716 Oph |171536.8-100642 |EW | 13.1 | 13.6 | 13.6 |V |54952.7657 | | 0.545762 | | |80001 GSC | NL80_3 +592717 |V2717 Oph |171538.7-080530 |EW | 13.95 | 14.5 | 14.2 |V |52026.7709 | | 0.384335 | | |80001 GSC | NL80_3 +592718 |V2718 Oph *|171625.5-281403 |RRAB | 16.8 | 17.78 | |V | | | 0.5822 | | |80462 USNO | NL80_3 +592719 |V2719 Oph *|171628.1-280318 |EW: | 14.92 | 15.22 | 15.19 |V | | | 0.3969 | | |80462 USNO | NL80_3 +592720 |V2720 Oph *|171643.9-280824 |CEP: | 17.7 | 18.01 | |V | | | 2.076 | | |80462 G2.3 | NL80_3 +592721 |V2721 Oph *|171655.7-281452 |RRAB | 16.7 | 17.39 | |V | | | 0.5602 | | |80462 USNO | NL80_3 +592722 |V2722 Oph |171700.8-250815 |EA | 11.46 | 12.49 | 11.58 |V |53479.870 | | 3.2864 |13 | |80048 GSC | NL80_3 +592723 |V2723 Oph |171711.5+081525 |BY | 11.75 | 11.95 | |* | | | 3.098 | | |80370 80370| NL80_3 +592724 |V2724 Oph *|172156.9+095654 |EB | 11.75 | 12.05 | 11.90 |V |54542.8713 | | 0.444632 | | |80002 GSC | NL80_3 +592725 |V2725 Oph |172313.4+015151 |RRAB | 12.0 | 12.5 | |V |51951.0 | | 0.737670 |15 | |80002 GSC | NL80_3 +592726 |V2726 Oph |172336.1-011127 |RRAB | 11.9 | 12.8 | |V |53160.736 | | 0.667788 |20 | |80001 GSC | NL80_3 +592727 |V2727 Oph |172518.2-233046 |M | 3.74 | 5.42 | |K | | | 603. | |C |80166 2MASS| NL80_3 +592728 |V2728 Oph |172726.1+084314 |EW | 13.1 | 14.0 | 13.8 |V |53831.993 | | 0.3571871 | | |80001 GSC | NL80_3 +592729 |V2729 Oph |172849.8+122230 |EA | 13.30 | 14.17 | 13.44 |* |53643.62 | | 1.4340668 |17 | |80001 GSC | NL80_3 +592730 |V2730 Oph |173002.6+100322 |EB | 14.9 | 15.7 | 15.2 |B |54942.908 | | 2.504179 | | |80001 GSC | NL80_3 +592731 |V2731 Oph *|173021.9-055932 |XM | 15.4 |( 0.10 )| |R | | | 0.642549 | |G6-G0Ve |80255 80255| NL80_3 +592732 |V2732 Oph |173023.4+085007 |RRAB | 14.1 | 15.7 | |B |49482.488 | | 0.4752510 |20 | |80469 GSC | NL80_3 +592733 |V2733 Oph |173121.9-174340 |CWB | 13.35 | 14.6 | |V |52463.615 | | 1.17156 |18 | |80177 USNO | NL80_3 +592734 |V2734 Oph |173456.5-002307 |RRAB | 13.2 | 14.5 | |V |54606.7555 | | 0.513913 |17 | |80002 GSC | NL80_3 +592735 |V2735 Oph |173502.1-271451 |CWB | 15.63 |( 0.38 )| |Ic| | | 1.91817 | | |80466 2MASS| NL80_3 +592736 |V2736 Oph |173508.1-273126 |CWB | 16.23 |( 0.59 )| |Ic| | | 1.09776 | | |80466 2MASS| NL80_3 +592737 |V2737 Oph |173508.4-292328 |EA | 11.21 | 11.40 | 11.24 |V |51961.875 | | 2.8723 |09 |A5 |80048 GSC | NL80_3 +592738 |V2738 Oph |173513.8-270317 |CWB | 15.98 |( 0.65 )| |Ic| | | 1.61993 | | |80466 | NL80_3 +592739 |V2739 Oph |173529.1-265553 |CWB | 15.78 |( 0.54 )| |Ic| | | 1.66050 | | |80466 2MASS| NL80_3 +592740 |V2740 Oph |173700.8+125830 |SRB | 13.2 | 14.3 | |V | | | 119. | | |80001 GSC | NL80_3 +592741 |V2741 Oph |173721.7-094036 |SRB | 12.8 | 13.4 | |* | | | 66. | | |80001 USNO | NL80_3 +592742 |V2742 Oph *|173904.5+020315 |GDOR | 7.74 |( 0.04 )| |V | | | 0.82775 | |F2V-IV |80363 HIP | NL80_3 +592743 |V2743 Oph |174050.3+074219 |RRAB | 14.4 | 15.5 | |B |48362.569 | | 0.6477471 |32 | |80475 USNO | NL80_3 +592744 |V2744 Oph *|174108.3-232828 |DCEPS | 9.39 | 9.59 | |V |53451.68 | | 3.779703 | |F5/6Ib/II |80326 DM | NL80_3 +592745 |V2745 Oph |174239.0+025851 |EA | 13.4 | 14.1 | 13.7 |* |51390.76 | | 1.11677 |13 | |80011 GSC | NL80_3 +592746 |V2746 Oph |174244.4-172853 |SRA | 12.2 | 13.4 | |V |54297. | | 346. | |M7 |80477 GSC | NL80_3 +592747 |V2747 Oph |174325.3+110604 |RRAB | 15.4 | 16.2 | |B |49482.446 | | 0.5848983 |18 | |80478 USNO | NL80_3 +592748 |V2748 Oph |174431.6+131257 |BY | 11.44 |( 0.08 *)| |V | | | 2.7015 | | |80021 GSC | NL80_3 +592749 |V2749 Oph |174526.3+082202 |RRAB | 14.5 | 15.9 | |B |48839.403 | | 0.4677834 |18 | |80478 USNO | NL80_3 +592750 |V2750 Oph |174632.6+012520 |LB | 13.0 | 14.1 | |V | | | | | |80001 GSC | NL80_3 +592751 |V2751 Oph |174844.7-050715 |BY | 12.0 | 12.2 | |* | | | 6.576 | | |80043 80043| NL80_3 +592752 |V2752 Oph |174943.5+041324 |EA | 14.9 | 15.7 | 15.0 : |B |47392.363 | | 2.0421460 |15 | |80468 USNO | NL80_3 +592753 |V2753 Oph |175130.6-005151 |SRB | 13.3 | 14.2 | |V | | | 108.1 | | |80002 GSC | NL80_3 +592754 |V2754 Oph |175137.9+084402 |DSCT | 15.3 | 15.9 | |B | | | 0.0999541 |29 | |80485 80485| NL80_3 +592755 |V2755 Oph |175153.0+093752 |BY | 10.86 |( 0.05 *)| |V | | | 9.1586 | | |80021 GSC | NL80_3 +592756 |V2756 Oph |175215.6-003846 |SRA | 11.6 | 12.5 | |V |55032. | | 325. | | |80001 GSC | NL80_3 +592757 |V2757 Oph |175216.4+093758 |BY | 10.02 |( 0.04 *)| |V | | | 7.2957 | | |80021 GSC | NL80_3 +592758 |V2758 Oph |175302.6+040541 |EW | 13.4 | 13.9 | 13.8 |V |52138.643 | | 0.3113014 | | |80488 GSC | NL80_3 +592759 |V2759 Oph |175303.7+034245 |LB | 12.9 | 14.3 | |V | | | | | |80001 GSC | NL80_3 +592760 |V2760 Oph |175314.9-012854 |SRB | 13.2 | 14.2 | |V | | | 47.2 | | |80002 GSC | NL80_3 +592761 |V2761 Oph |175344.7+113048 |EA | 14.7 | 16.2 | |B |49124.518 | | 5.254049 |16 | |80468 GSC | NL80_3 +592762 |V2762 Oph |175809.4+092241 |BY | 10.90 |( 0.07 )| |V | | | 0.4885 | | |80021 GSC | NL80_3 +592763 |V2763 Oph |175954.4+104419 |BY | 10.91 |( 0.10 *)| |V | | | 5.8737 | | |80021 GSC | NL80_3 +592764 |V2764 Oph |180255.6+040010 |RRAB | 14.1 | 15.4 | |B |49475.523 | | 0.2917116 |30 | |80475 USNO | NL80_3 +592765 |V2765 Oph |180328.5+011631 |SRB | 11.5 | 12.0 | |V | | | 30.6 | | |80001 GSC | NL80_3 +592766 |V2766 Oph |180331.3+080836 |EA/RS | 12.73 | 12.30 | 12.20 |V |54216.8716 | | 2.052675 |10 | |80002 GSC | NL80_3 +592767 |V2767 Oph |180500.4+111014 |BY | 11.02 |( 0.05 *)| |V | | | 0.6070 | | |80021 GSC | NL80_3 +592768 |V2768 Oph |180511.5+012956 |EW | 12.9 | 13.4 | 13.3 |V |54647.6402 | | 0.601267 | | |80001 GSC | NL80_3 +592769 |V2769 Oph |180514.4+113149 |BY | 13.08 |( 0.16 *)| |V | | | 2.7255 | | |80021 GSC | NL80_3 +592770 |V2770 Oph *|180637.2+100711 |SXPHE | 15.76 | 16.31 | |* | | | 0.11230 | | |80494 80494| NL80_3 +592771 |V2771 Oph |180645.5+102818 |EW | 15.95 | 16.27 | 16.16 |* |54609.3814 | | 0.46423 | | |80494 80494| NL80_3 +592772 |V2772 Oph |180650.9+100536 |EB | 13.84 | 14.35 | 14.02 |* |54608.8902 | | 0.63523 | | |80494 80494| NL80_3 +592773 |V2773 Oph |180709.4+101716 |RRAB | 14.23 : | 14.77 | |* |54608.5664 :| | 0.56750 | | |80494 80494| NL80_3 +592774 |V2774 Oph |180715.7+100745 |EW | 16.46 | 17.40 | 17.16 |* |54610.4603 | | 0.30401 | | |80494 80494| NL80_3 +592775 |V2775 Oph *|180746.6+101516 |EW | 15.13 | 15.61 | 15.5 |* |54609.1348 | | 0.37651 | | |80494 80494| NL80_3 +592776 |V2776 Oph |180759.5+095854 |EB | 16.34 | 16.90 | 16.58 |* |54609.1939 | | 0.77792 | | |80494 80494| NL80_3 +592777 |V2777 Oph |180803.3+101110 |RRAB | 16.64 | 18.0 | |* |54610.3279 | | 0.58691 |14 | |80494 80494| NL80_3 +592778 |V2778 Oph |180814.2+100453 |EW | 16.75 | 17.28 | 17.2 |* |54609.3880 | | 0.36548 | | |80494 80494| NL80_3 +592779 |V2779 Oph |180835.8+101030 |E+NL | 16.1 | 18.5 | |V | | | 0.070037 | |pec(e) |80496 USNO | NL80_3 +592780 |V2780 Oph *|180838.7+095608 |EA | 13.74 | 14.34 | 13.92 |* |54635.4642 | | 0.89045 |17 | |80494 80494| NL80_3 +592781 |V2781 Oph |180845.6+100845 |RRC | 13.11 | 13.66 | |* |54610.4710 | | 0.26384 |33 | |80494 80494| NL80_3 +592782 |V2782 Oph |180905.4+095711 |EW | 16.24 | 16.51 | 16.49 |* |54609.3275 | | 0.36950 | | |80494 80494| NL80_3 +592783 |V2783 Oph |180907.0+101523 |EW | 15.55 | 16.08 | 15.97 |* |54609.4690 | | 0.36984 | | |80494 80494| NL80_3 +592784 |V2784 Oph |180910.0+101824 |RRAB | 15.59 | 16.46 | |* |54635.4458 | | 0.53679 |17 | |80494 80494| NL80_3 +592785 |V2785 Oph |180915.9+101857 |RRC | 15.83 | 16.29 | |* |54608.6721 | | 0.32911 |40 | |80494 80494| NL80_3 +592786 |V2786 Oph |180916.4+131324 |SRB | 12.9 | 13.6 | |V | | | 52.7 | | |80001 GSC | NL80_3 +592787 |V2787 Oph *|180933.7+102104 |EA | 15.44 | 15.83 | 15.6 |* |54608.5423 | | 0.35184 |15 | |80494 80494| NL80_3 +592788 |V2788 Oph |180941.6+110903 |LB | 12.0 | 12.4 | |* | | | | | |80062 USNO | NL80_3 +592789 |V2789 Oph |180943.4+102548 |RRAB | 17.1 |< 18.0 | |* |54611.0133 | | 0.61722 | | |80494 80494| NL80_3 +592790 |V2790 Oph |180945.0+102457 |EW | 15.84 | 16.17 | 16.14 |* |54610.3426 | | 0.34854 | | |80494 80494| NL80_3 +592791 |V2791 Oph |181004.2+090621 |BY | 14.11 |( 0.27 *)| |V | | | 0.8470 | | |80021 USNO | NL80_3 +592792 |V2792 Oph |181350.5+134937 |BY | 13.68 |( 0.15 *)| |V | | | 2.6248 | | |80021 USNO | NL80_3 +592793 |V2793 Oph |182053.5+112755 |RRAB | 14.6 | 15.7 | |B |46294.38 | | 0.641683 |30 : | |80503 USNO | NL80_3 +592794 |V2794 Oph |182208.3+064241 |EW | 13.3 | 13.6 | |V |54389.51 | | 0.78357 | | |80504 USNO | NL80_3 +592795 |V2795 Oph |182210.2+062320 |DSCTC: | 12.9 |( 0.01 )| |V | | | 0.09225 | | |80504 USNO | NL80_3 +592796 |V2796 Oph |182306.9+064213 |DSCTC: | 12.3 |( 0.01 )| |V | | | 0.14254 | | |80504 GSC | NL80_3 +592797 |V2797 Oph |182309.1+065134 |DSCTC: | 10.6 |( 0.01 )| |V | | | 0.19818 | | |80504 GSC | NL80_3 +592798 |V2798 Oph |182342.5+062409 |DSCTC: | 11.1 |( 0.01 )| |V | | | 0.09855 | | |80504 GSC | NL80_3 +592799 |V2799 Oph |182347.9+072806 |EA | 12.4 | 13.0 | 12.9 |V |53896.90 | | 1.024466 |08 | |80001 GSC | NL80_3 +592800 |V2800 Oph |182426.8+064541 |DSCTC: | 12.1 |( 0.01 )| |V | | | 0.19167 | | |80504 GSC | NL80_3 +592801 |V2801 Oph |182432.6+073046 |DSCTC: | 12.0 |( 0.01 )| |V | | | 0.06285 | | |80504 GSC | NL80_3 +592802 |V2802 Oph |182440.7+070406 |DSCTC: | 9.2 |( 0.04 )| |V | | | 0.15436 | |F0 |80504 DM | NL80_3 +592803 |V2803 Oph |182504.2+062555 |DSCTC: | 10.0 |( 0.01 )| |V | | | 0.03658 | |A1 |80504 GSC | NL80_3 +592804 |V2804 Oph |182514.8+063353 |DSCTC: | 11.5 |( 0.01 )| |V | | | 0.07567 | | |80504 GSC | NL80_3 +592805 |V2805 Oph |182619.7+072758 |DSCTC: | 12.2 |( 0.01 )| |V | | | 0.14068 | | |80504 GSC | NL80_3 +592806 |V2806 Oph |182654.1+065805 |DSCTC: | 11.8 |( 0.04 )| |V | | | 0.14862 | | |80504 GSC | NL80_3 +592807 |V2807 Oph |182733.4+065600 |DSCTC: | 10.7 |( 0.01 )| |V | | | 0.06734 | |A8 |80504 GSC | NL80_3 +592808 |V2808 Oph |182740.9+070833 |DSCTC: | 11.4 |( 0.02 )| |V | | | 0.05363 | | |80504 GSC | NL80_3 +592809 |V2809 Oph |182749.5+115149 |EA | 15.35 | 16.20 | 15.45 |* |54610.956 | | 0.9596 |19 | |80506 80506| NL80_3 +592810 |V2810 Oph |182833.9+065315 |DSCTC: | 10.0 |( 0.01 )| |V | | | 0.04723 | |A3 |80504 GSC | NL80_3 +592811 |V2811 Oph |182842.9+065125 |DSCTC: | 10.4 |( 0.01 )| |V | | | 0.03634 | |A5 |80504 GSC | NL80_3 +592812 |V2812 Oph |182858.0+072832 |DSCT | 12.0 | 12.23 | |V | | | 0.09568 | | |80504 GSC | NL80_3 +592813 |V2813 Oph |182904.4+062654 |EA | 11.0 |( 0.03 )| |V |52496.93 | | 2.38079 | |A2V |80504 GSC | NL80_3 +592814 |V2814 Oph |182910.2+064351 |DSCTC: | 12.9 |( 0.02 )| |V | | | 0.11138 | | |80504 GSC | NL80_3 +592815 |V2815 Oph |183015.3+070219 |LB | 13.3 | 14.2 | |V | | | | | |80062 USNO | NL80_3 +592816 |V2816 Oph |183041.9+064750 |BCEP: | 10.9 |( 0.01 )| |V | | | 0.31777 | | |80504 GSC | NL80_3 +592817 |V2817 Oph *|183052.3+070927 |EA | 13.9 |( 0.14 )|( 0.14: )|V |53171.0371 | | 2.11674 | |K7Ve+K7Ve |80507 2MASS| NL80_3 +592818 |V2818 Oph |183059.8+071150 |DSCTC: | 10.7 |( 0.01 )| |V | | | 0.11008 | | |80504 GSC | NL80_3 +592819 |V2819 Oph |183100.8+070826 |EA | 13.0 |( 0.07 )| |V |52499.07 | | 1.81749 |06 |F7V |80504 GSC | NL80_3 +592820 |V2820 Oph |183118.7+070524 |DSCTC: | 12.7 |( 0.01 )| |V | | | 0.07343 | | |80504 GSC | NL80_3 +592821 |V2821 Oph |183205.6+071456 |DSCTC: | 11.9 |( 0.01 )| |V | | | 0.05936 | | |80504 GSC | NL80_3 +592822 |V2822 Oph |183222.4+063713 |EA | 12.9 |( 0.05 )| |V |52465.13 | | 4.39995 | |F5V |80504 GSC | NL80_3 +592823 |V2823 Oph |183252.0+064901 |EW | 13.3 |( 0.16 )| |V | | | 0.50552 | | |80504 USNO | NL80_3 +592824 |V2824 Oph |183316.5+062909 |DSCTC: | 9.1 |( 0.01 )| |V | | | 0.15686 | |A5 |80504 DM | NL80_3 +599006 |zet Oph |163709.5-103402 |GCAS | 2.56 | 2.58 | |V | | | | |O9.5V(e) |09557 BD | +599008 |tet Oph *|172200.6-245958 |BCEP | 3.25 | 3.31 | |V |40324.230 | | 0.140531 | |B2IV |04207 CoD | +599010 |kap Oph |165740.1+092230 |LB: | 4.1 | 5.0 | |p | | | | |K2III |04808 BD | +599022 |khi Oph *|162701.4-182723 |GCAS | 4.18 | 5.0 | |V | | | | |B1.5IV-Vpe |00495 03389| +599024 |ome Oph *|163208.2-212759 |ACV | 4.44 | 4.51 | |V | | | 2.99 : | |A7p(Sr-Cr) |08415 BD | +600001 |R Ori *|045900.6+080750 |M | 9.05 | 13.4 | |V |41391. | | 377.1 |40 |C8,2e(Ne) |00001 00002| +600002 |S Ori *|052900.9-044133 |M | 7.2 | 14.0 | |V |43945. | | 414.30 |48 |M6.5e-M9.5e |00001 00002| +600003 |T Ori *|053550.4-052835 |INSA | 8.7 | 12.6 | |V | | | | |B8-A3eap |00861 04002| +600004 |U Ori *|055549.2+201031 |M | 4.8 | 13.0 | |V |45254. | | 368.3 |38 |M6e-M9.5e |00001 00002| +600005 |V Ori *|050603.4+040609 |M | 8.9 | 14.7 | |V |39082. | | 263.7 |49 |M3e-M8.0e |00001 00002| +600006 |W Ori *|050523.7+011039 |SRB | 8.2 | 12.4 | |p | | | 212. | |C5,4(N5) |00372 05288| +600007 |X Ori |053738.5-014617 |M | 11.4 |< 15.5 | |p |43451. | | 422.2 | |M9 |00001 00961| +600008 |Y Ori |054133.6-040755 |M | 11.5 |< 16. | |p |34768. | | 271.3 | |M3e-M5 |00001 00962| +600009 |Z Ori *|055550.9+134142 |EA/DS | 9.8 | 10.7 | 9.9 |p |25190.720 | | 5.203265 |12 |B3 |01004 03778| +600010 |RR Ori |060302.6+162240 |M | 9.1 |< 14.7 | |V |44240. | | 251.78 | |M6.5e-M8 |00001 08953| +600011 |RS Ori *|062213.2+144041 |DCEP | 8.01 | 8.88 | |V |42820.794 | | 7.566881 |32 |F5Ib-G1Ib |08632 00963| +600012 |RT Ori *|053313.8+070912 |SRB | 9.7 | 11.8 | |p | | | 321. | |C6,4(Nb) |00372 08953| +600013 |RU Ori *|053851.9-024644 |IN | 15.2 | 16.5 | |p | | | | |ea |04076 04086| +600014 |RV Ori *|053940.0-022048 |INS | 14.7 | 16.9 | |p | | | | |ea |04076 04086| +600015 |RW Ori *|053939.9-024310 |IN | 13.9 | 16.0 | |p | | | | |ea |04076 04086| +600016 |RX Ori *|052854.1-060607 |INB | 13.7 | 19.0 | |B | | | | |M |00861 00861| +600017 |RY Ori |053209.9-024947 |INSB | 10.8 | 13.9 | |p | | | | |F6e |08044 00964| +600018 |RZ Ori *|053333.0-051156 |INS | 15.3 | 17.6 | |B | | | | |ea |00861 00861| +600019 |SS Ori *|053333.1-061838 |IN | 14.1 |< 17.8 | |p | | | | |ea |00861 00861| +600020 |ST Ori *|053345.4-064035 |IN | 15.2 | 17.5 | |p | | | | |ea |00861 00861| +600021 |SU Ori *|053355.9-044750 |INST(YY) | 14.2 | 17.4 | |p | | | | |M1e(T) |00861 00861| +600022 |SV Ori *|053358.4-063617 |UVN | 11.3 | 19.7 | |U | | | | |K7-M0-1e |00861 00861| +600023 |SW Ori *|053415.8-063605 |INSB | 13.1 | 16.1 | |p | | | | |G-K4e |00861 00861| +600024 |SX Ori *|053452.2-044012 |INS | 14.4 | 16.5 | |p | | | | | |00861 00861| +600025 |SY Ori *|053510.0-042739 |INST(YY) | 13.57 | 16.5 | |B | | | | |K2-K3eII-III(T) |00861 00861| +600026 |SZ Ori *|053507.6-053620 |INSB | 14.9 | 16.7 | |p | | | | |M2 |00861 00861| +600027 |TT Ori *|053516.8-044545 |INB | 13.3 | 16.3 | |p | | | | |K1ea |00861 00861| +600028 |TU Ori *|053520.2-052057 |INSB | 12.6 | 15.6 | |p | | | | |G5-K3: |00861 00861| +600029 |TV Ori *|053536.3-050116 |INSB | 13.5 | 15.9 | |p | | | | |K0-K6IVe |00861 00861| +600030 |TW Ori *|053531.1-064518 |INSB | 14.7 | 16.8 | |p | | | | |M0.5e |03937 00861| +600031 |TX Ori *|053833.5-024414 |INSB | 13.6 | 15.8 | |p | | | | |K4e |04076 04086| +600032 |TY Ori *|053835.7-024351 |INSB | 14.8 | 15.8 | |p | | | | |K3ea |04086 04086| +600033 |TZ Ori *|053945.0-032517 |UVN | 14.0 | 15.6 | |p | | | | | |08778 08778| +600034 |UU Ori |054046.2-080524 | | 13.7 | 17.0 | |p | | | | | |09491 GSC | +600035 |UV Ori |055357.6-062518 |LB | 10.9 | 13.0 | |p | | | | |M5 |04079 08953| +600036 |UW Ori *|055552.9+201016 |EB/KE | 11.1 | 11.6 | 11.6 |p |19822.869 | | 1.0080525 | |B |03779 00884| +600037 |UX Ori |050430.0-034714 |ISA(YY) | 8.7 | 12.8 | |p | | | | |A2ea |05762 08953| +600038 |UY Ori *|053200.3-045554 |RR: | 12.0 | 13.2 | |p | | | | |B9 |00861 00861| +600039 |UZ Ori *|053247.3-053943 |UVN | 15.0 | 17.4 | |B | | | | |ea |00861 00861| +600040 |VV Ori *|053331.4-010922 |EA/KE: | 5.31 | 5.66 | 5.50 |V |40890.5158 | | 1.4853784 |20 |B1V+B7V |09469 08953| +600041 |VW Ori *|053321.4-052135 |INS | 15.7 | 16.8 | |p | | | | |ea |00861 00861| +600042 |VX Ori *|053334.3-044346 |INST | 15.0 | 16.6 | |p | | | | |M0e(T) |04073 00861| +600043 |VY Ori *|053335.9-050133 |INST | 14.9 | 17.1 | |B | | | | |M2.5e(T) |00861 00861| +600044 |VZ Ori *|053345.3-053050 |INST | 13.5 | 15.7 | |B | | | | |K4e(T) |00861 00861| +600045 |WW Ori *|053402.9-053657 |INS | 13.3 | 17.5 | |p | | | | |ea |00861 00861| +600046 |WX Ori *|053407.3-051345 |INSB | 14.0 | 17.1 | |B | | | | |K3ea |00861 00861| +600047 |WY Ori *|053415.7-053224 |INS | 14.9 |< 17.5 | |p | | | | | |00861 00861| +600048 |WZ Ori *|053419.6-053020 |INS | 14.8 | 16.8 | |B | | | | |ea |00861 00861| +600049 |XX Ori *|053436.1-060535 |INSB(YY) | 14.2 | 17.1 | |B | | | | |M2.5e |00861 00861| +600050 |XY Ori *|053441.2-054611 |INS | 14.8 | 18.0 | |p | | | | |ea |00861 00861| +600051 |XZ Ori *|053445.2-051048 |INS: | 14.8 | 17.0 | |p | | | | |ea |04073 00861| +600052 |YY Ori *|053447.5-055757 |INST(YY) | 13.2 | 15.7 | |p | | | | |K2IVe-K5e(T) |00861 00861| +600053 |YZ Ori *|053453.0-050328 |INST | 13.9 | 16.6 | |p | | | | |K5e(T) |04073 00861| +600054 |ZZ Ori *|053454.9-054644 |INS | 14.5 |< 16.4 | |p | | | | |ea |04073 00861| +600055 |AA Ori *|053510.3-054633 |INSB | 13.8 | 15.9 | |p | | | | |K4e |00861 00861| +600056 |AB Ori *|053514.2-054318 |INST | 13.8 | 16.5 | |p | | | | |K7e(T) |00861 00861| +600057 |AC Ori *|053516.0-052353 |IN | 12.5 | 15. | |V | | | | | |00861 00861| +600058 |AD Ori |053517.3-052236 |INS | 12.9 | 15. | |V | | | | |e+cont |00861 00861| +600059 |AE Ori *|053517.2-052132 |INS | 12.3 |< 14.1 | |V | | | | | |00861 00861| +600060 |AF Ori *|053518.6-052314 |IN | 12.2 |< 14.4 | |V | | | | | |00861 00861| +600061 |AG Ori *|053521.7-053447 |INST | 13.4 | 16.8 | |B | | | | |K6e(T) |00861 00861| +600062 |AH Ori *|053525.8-050949 |INSB | 13.0 | 15.3 | |p | | | | |K0IV-V |00861 00861| +600063 |AI Ori *|053526.9-051108 |INSB | 13.5 | 16.3 | |p | | | | |G3:IV-V-K0:ea |01698 00861| +600064 |AK Ori *|053526.4-052540 |INSB | 12.9 | 15.1 | |p | | | | |G5 |00861 00861| +600065 |AL Ori *|053530.9-045518 |INSB | 14.1 | 16.7 | |p | | | | |K7-M0Ve(T:) |00861 00861| +600066 |AM Ori *|053535.3-052127 |INST(YY) | 13.8 | 15.6 | |p | | | | |K4e(T) |00861 00861| +600067 |AN Ori *|053542.0-052813 |INSB | 11.0 | 13.6 | |p | | | | |K0-K1IVe |00861 00861| +600068 |AO Ori *|053543.6-050542 |INS | 14.8 | 17.2 | |p | | | | |ea |04073 00861| +600069 |AP Ori *|053545.4-052811 |INS | 14.3 | 16.5 | |p | | | | | |00861 00861| +600070 |AQ Ori *|053552.0-052847 |INB | 14.4 | 15.5 | |p | | | | |K0: |00861 00861| +600071 |AR Ori *|053554.0-050415 |INB | 14.2 | 15.9 | |p | | | | |K7-M0e |00861 00861| +600072 |AS Ori *|053554.1-044719 |IN | 15.0 | 17.4 | |B | | | | |ea |00861 00861| +600073 |AT Ori *|053550.2-065040 |INS | 14.7 | 17.2 | |p | | | | |ea |03937 00861| +600074 |AU Ori *|053557.7-055718 |INT(YY) | 14.8 | 17.6 | |B | | | | |K7-M0e(T) |00861 00861| +600075 |AV Ori *|053600.1-064233 |INST | 14.0 | 17.0 | |p | | | | |K4e(T) |03937 00861| +600076 |AW Ori *|053605.0-062932 |INS | 14.1 | 17.5 | |p | | | | | |03937 00861| +600077 |AX Ori *|053606.6-061425 |INS | 14.0 | 16.1 | |p | | | | |ea |00861 00861| +600078 |AY Ori *|053608.3-064836 |IN | 15.7 |< 18.0 | |p | | | | | |00861 00861| +600079 |AZ Ori *|053616.9-051143 |INSB | 13.1 | 16.3 | |p | | | | |K3-K6IV-Ve |04073 00861| +600080 |BB Ori *|053615.0-061736 |IN | 14.3 | 16.0 | |p | | | | |ea |00861 00861| +600081 |BC Ori *|053637.2-052625 |INST(YY) | 15.0 |< 16.4 | |p | | | | |M0e(T) |00861 00861| +600082 |BD Ori *|053632.3-061919 |INSB | 13.3 | 15.7 | |p | | | | |K3ea |03937 00861| +600083 |BE Ori *|053700.0-063328 |INSB | 13.0 | 17.5 | |p | | | | |K0e |03937 00861| +600084 |BF Ori *|053713.3-063501 |INA | 9.69 | 13.47 | |V | | | | |A0:-FpII-Vea |09468 00861| +600085 |BG Ori *|053925.1-023822 |IN | 14.6 | 16.7 | |p | | | | |ea |04076 04085| +600086 |BH Ori *|054006.7-061619 |INB | 13.8 | 15.5 | |B | | | | |K3 |00861 00861| +600087 |BI Ori |052351.8+010030 |UGZ | 13.2 | 16.7 | |p | | |( 20.5 ) | | |04063 08852| +600088 |BK Ori *|053155.8+073649 |M | 9.2 | 14. | |p |40925. | | 354.2 |50 |M7e |00001 08953| +600089 |BL Ori |062528.2+144319 |LB | 7.9 | 9.7 | |p | | | | |C6,3(Nb,Tc) |04079 08953| +600090 |BM Ori *|053516.1-052307 |EA | 7.90 | 8.65 | 7.98 |V |40265.343 | | 6.470525 |10 |B2V+A7IV |05465 00861| +600091 |BN Ori |053629.4+065002 |INSB | 8.8 | 13.9 | |p | | | | |F2pea |03786 03786| +600092 |BO Ori *|053543.0-042456 |INSB(YY) | 13.6 | 16.4 : | |B | | | | |K4e |00861 00861| +600093 |BP Ori *|053729.2-052344 |INS | 14.7 | 17.7 | |B | | | | | |00861 00861| +600094 |BQ Ori |055707.4+225020 |SR | 9.4 | 11.5 | |p | | | 110. | |M5IIIe-M8III |00589 00119| +600095 |BR Ori |045122.1+143253 |M | 11.0 | 15.5 | |V |35123. | | 159.2 | | |00001 00968| +600096 |BS Ori *|053334.3-044419 |INSB | 15.3 | 16.8 | |B | | | | |M2:ea |00861 00861| +600097 |BT Ori *|053412.2-045007 |INS | 14.0 |< 17.8 | |B | | | | |ea |00861 00861| +600098 |BU Ori *|053416.9-050421 |UVN: | 15.8 | 17.5 | |p | | | | |ea: |00861 00861| +600099 |BV Ori *|053429.6-044503 |UVN | 15.1 | 17.2 | |p | | | | |ea |05603 00861| +600100 |BW Ori *|053454.0-062351 |INSB | 14.0 | 16.2 | |p | | | | |ea |00861 00861| +600101 |BX Ori *|053458.3-055429 |IN | 15.1 | 17.0 | |B | | | | |ea |00861 00861| +600102 |BY Ori *|053503.7-045053 |IN | 14.9 | 17.3 | |p | | | | |ea |00861 00861| +600103 |BZ Ori *|053514.0-055209 |IN | 14.8 | 16.4 | |p | | | | |ea |00861 00861| +600104 |CC Ori *|053519.6-045322 |IN | 15.6 | 17.2 | |p | | | | | |00861 00861| +600105 |CD Ori *|053522.3-044208 |IN | 14.7 | 16.0 | |p | | | | |ea |00861 00861| +600106 |CE Ori *|053548.4-050129 |INST(YY) | 15.2 | 17.5 | |p | | | | |K5e(T) |04073 00861| +600107 |CF Ori *|053546.7-054926 |IN | 14.5 | 16.2 | |B | | | | |ea |00861 00861| +600108 |CG Ori *|053551.0-062244 |IN | 15.4 | 17.8 | |p | | | | | |00861 00861| +600109 |CH Ori *|053608.1-044120 |IN | 14.6 | 16.7 | |B | | | | |ea |00861 00861| +600110 |CI Ori *|052944.0-010532 |CST: | 4.67 : | 4.71 | |V | | | | |K5III |03712 BD | +600111 |CK Ori |053019.9+041217 |SR: | 5.9 | 7.1 | |V | | | 120. : | |K2IIIe: |09427 08953| +600112 |CL Ori |054419.7+101908 |M | 11.5 | 15.8 | |p |34020. | | 215.0 | |M2e |00001 00970| +600113 |CM Ori *|060354.9+081432 |RRAB | 12.13 | 13.17 | |V |25298.451 | | 0.65592205 |15 | |03506 00530| +600114 |CN Ori *|055207.8-052501 |UGZ | 11.0 | 16.2 | |V | | |( 15.85 ) | |pec(UG) |09470 08852| +600115 |CO Ori *|052738.3+112539 |INSB | 10.3 | 13.8 | |p | | | | |G5Vpe |09468 05469| +600116 |CP Ori *|060701.9+174158 |EA | 11.1 | 12.2 | 11.2 |p |36130.441 | | 5.32053 |12 |G0 |07363 00228| +600117 |CQ Ori |062334.8+135641 |EA | 12.2 | 13.4 | |V |38455.21 | | 2.74016 |14 |F-G: |00001 00530| +600118 |CR Ori |060544.7+131424 |DCEP | 11.99 | 12.58 | |V |25234.2 | | 4.91075 |35 |F7-F8 |00384 00530| +600119 |CS Ori |060725.5+110907 |DCEP | 10.85 | 11.80 | |V |37258.156 | | 3.88939 |23 |F5-G0 |00921 00530| +600120 |CT Ori *|060958.0+095232 |RV: | 9.14 | 12.39 | |V |25649. | | 135.52 | |F9 |01000 00530| +600121 |CU Ori |061125.1+114800 |DCEP | 13.5 | 14.4 | |p |25243.56 | | 2.15993 |50 | |00001 00530| +600122 |CV Ori |061222.0+133811 |DCEP | 14.0 | 15.1 | |p |25217.51 | | 3.55976 |26 | |00973 00530| +600123 |CW Ori *|061226.2+114452 |EB/D | 13.1 | 13.5 | 13.2 |p |25202.63 | | 4.78505 | | |00386 00530| +600124 |CX Ori |061350.5+130031 |SR: | 13.5 | 14.5 | |p |25600. | | 100. : | | |00386 00530| +600125 |CY Ori |061448.7+093428 |ISB | 12.3 | 13.0 | |p | | | | |G0V |00386 00530| +600126 |CZ Ori |061643.2+152412 |UGSS | 11.2 | 15.6 | |V | | |( 25.73 ) | |pec(UG) |09497 09472| +600127 |DD Ori |062144.0+131358 |LB | 11.8 |< 12.9 | |p | | | | |M6.5 |09498 00530| +600128 |DE Ori |062141.6+105613 |EA | 14.5 | 16.4 | |p |25235.37 | | 9.241 /N| | |00386 00530| +600129 |DF Ori |062404.2+114232 |DCEP | 13.8 | 14.8 | |p |25243.69 | | 3.1807 |24 | |03597 00530| +600130 |DG Ori |050308.3+071205 |M | 13. |< 16. | |p |26642. | | 450. | | |01005 06286| +600131 |DH Ori |052612.8-001654 |SRA | 9.4 | 11.7 | |V |27881. | | 165.3 |39 |M0e |01000 08953| +600132 |DI Ori |053458.2-082512 | | 13.5 |< 15. | |p | | | | | |09499 | +600133 |DK Ori *|054011.2-070952 |INS: | 14.5 | 16.5 | |p | | | | | |04073 04073| +600134 |DL Ori *|054125.4-080555 |INT | 12. | 15. | |p | | | | |K1e(T) |09499 05981| +600135 |DM Ori *|054339.0-050403 |INS | 12.3 | 15.5 | |p | | | | | |04073 04073| +600136 |DN Ori *|060028.4+101305 |EA/DS | 9.8 | 11.1 | 9.9 |p |35577.20 | | 12.96641 |08 |A2e+F5III |08050 08050| +600137 |DO Ori |060150.2+152405 |CEP: | 14.5 | 16.2 | |p | | | 6.3435 : | | |00386 00531| +600138 |DP Ori |060139.8+105440 |SRB | 10.5 | 12.5 | |p |33260. | | 90. : | |M6.5 |02563 00002| +600139 |DQ Ori |060155.5+132825 |SRA | 12.3 | 13.6 | |p |25212. | | 133. | |M6.5 |00386 00531| +600140 |DR Ori |060211.0+082704 |LB | 11.7 | 12.8 | |p | | | | |M6.5 |00386 00531| +600141 |DS Ori |060243.4+084204 |LB | 12.6 | 13.9 | |p | | | | |M6.5 |00386 00531| +600142 |DT Ori |060325.8+134356 |M | 12.4 | 19. | |p |25490. | | 429. | |M10 |01000 00531| +600143 |DU Ori |060342.2+075032 |LB | 11.6 | 12.8 | |p | | | | |M2 |00386 00531| +600144 |DV Ori |060455.5+115210 |LB | 13.2 | 14.2 | |p | | | | |M1-M2p |00386 00531| +600145 |DW Ori |060538.4+135930 |E: | 12.7 | 13.5 | |p | | | | | |00386 00531| +600146 |DX Ori |060544.8+082055 |EA/SD | 13.5 | 16.0 : | |p |25301.29 | | 4.2529 | | |00386 00531| +600147 |DY Ori *|060614.9+135419 |RV: | 11.29 | 12.50 : | |V | | | 60.26 | | |00386 00531| +600148 |DZ Ori |060930.9+153918 |EA/SD: | 12.1 | 13.0 | |p |25243.53 | | 1.83614 |14 : | |00386 00530| +600149 |EE Ori |060952.1+112016 |LB | 12.8 | 13.8 | |p | | | | |M4 |00386 00531| +600150 |EF Ori |061029.5+125122 |EA | 13.6 | 14.8 | |p |25247.54 | | 3.7012 | | |00386 00530| +600151 |EG Ori *|061107.1+161934 |EA/SD | 12.6 | 14.1 | |p |25245.41 | | 1.163166 |18 | |00384 08588| +600152 |EH Ori |061126.7+094717 |EA/SD: | 13.3 | 14.3 | |p |25217.43 | | 1.51357 |12 | |00386 00531| +600153 |EI Ori |061226.9+121236 |LB: | 14.0 | 16.6 | |p | | | | |C |00386 00531| +600154 |EK Ori |061245.9+082707 |M | 13.3 |< 16.9 | |p |25235. | | 148. | | |00386 00531| +600155 |EL Ori |061336.4+083922 |SRB | 12.3 | 13.2 | |p |32173.5 | | 54.8 |45 |M3: |00460 00531| +600156 |EM Ori |061352.3+081510 |SR | 13.6 | 14.8 | |p |25254. | | 137. |40 |M6: |00386 00531| +600157 |EN Ori |061740.7+085648 |LB | 11.8 | 12.7 | |p | | | | |M5 |00386 00531| +600158 |EO Ori |062018.9+112108 |LB | 11.9 | 13.9 | |p | | | | |M6 |00386 00531| +600159 |EP Ori |045057.3+030832 |M | 10.5 | 13. | |p |33182. | | 358.5 | |M10e |03597 06286| +600160 |EQ Ori *|045714.5-033605 |EA/SD | 10.2 | 13.3 | 10.3 |p |31438.743 | | 1.746057 |12 |A0: |00410 08953| +600161 |ER Ori *|051114.5-083325 |EW/KW | 9.28 | 10.01 | 9.97 |V |41626.415 | | 0.4233987 | |F8V |00001 01467| +600162 |ES Ori |045334.8+053646 |EA/DM | 10.48 | 10.6 | |V |26592.484 | | 1.602 |17 *|A2 |00279 00279| +600163 |ET Ori *|045534.3+012250 |EA/SD | 11.2 | 12.3 | 11.3 |p |26684.283 | | 0.9509356 |30 *|G3 |00392 00975| +600164 |EU Ori |051508.3+032849 |M | 10.5 |< 13.6 | |p |38755. | | 327.54 | |M4 |00001 00977| +600165 |EV Ori |051532.4+092436 |SRD | 9.3 | 11.1 | |V | | | 243. | |K0 |04079 BD | +600166 |EW Ori *|052009.2+020240 |EA/D | 9.90 | 10.6 | 10.5 |V |27543.350 | | 6.9368515 |03 *|G0 |08051 08051| +600167 |EX Ori |052428.9-060850 |LB | 10.0 | 12.3 | |p | | | | |M7IIIe |04079 BD | +600168 |EY Ori *|053118.4-054214 |EA/D | 9.43 | 10.13 | 9.54 |V |43527.466 | | 16.787832 |06 |A7Vm |09476 08052| +600169 |EZ Ori *|053418.5-050448 |INSB | 12.0 | 14.1 | |p | | | | |F8Vnea |00861 00861| +600170 |FF Ori *|053511.3+025655 |EA/SD: | 10.2 | 11.0 | 10.3 |p |32216.367 | | 1.810524 |18 |A1 |00758 00132| +600171 |FG Ori |045423.4+075024 |M | 10.3 |< 15.5 | |p |31460. | | 294.69 | | |00862 08953| +600172 |FH Ori *|052318.6+041538 |EA/SD: | 10.5 | 11.5 | |p |25900.387 | | 2.15116 |15 |A1 |00978 00132| +600173 |FI Ori *|062327.4+143247 |EA | 10.8 | 11.7 | |p |38738.725 | | 4.44815 |10 |F5 |00376 00531| +600174 |FK Ori *|050533.1+092010 |EA/SD | 11.8 | 13.8 | |p |45680.512 | | 1.947529 |13 |A2 |00001 00491| +600175 |FL Ori *|050746.6-024438 |EA/SD | 11.4 | 14.6 | |p |45347.464 | | 1.550971 |14 *|A3V |00001 08953| +600176 |FM Ori |050854.4+103334 |EA/DS | 11.3 | 12.9 | |p |25859.588 | | 22.145125 |07 |A5 |00979 00491| +600177 |FN Ori |051635.8+002502 |M | 11. |< 13. | |p |35113. | | 118.5 | |M0 |00001 00975| +600178 |FO Ori *|052809.7+033723 |EA/DS: | 9.5 | 10.3 | 9.7 |p |31820.627 | | 18.80058 |02 |A3 |03115 08953| +600179 |FP Ori |053220.7-103722 |M | 11. |< 12.5 | |p |32956. | | 146.0 | |Me |00001 00975| +600180 |FQ Ori |054428.8+065202 |M | 12. |< 16. | |p |33310. | | 276.0 | |M1 |00001 UCAC2| +600181 |FR Ori *|055105.7+092638 |EB/SD: | 11.0 | 11.9 | 11.1 |p |27862.159 | | 0.88316217 | |A7 |00753 00196| +600182 |FS Ori |045424.9+085607 |LB | 12. | 13.5 | |p | | | | |M3 |00395 BD | +600183 |FT Ori *|061358.1+212539 |EA/DM | 9.1 | 9.90 | 9.60 |V |41348.68416 | | 3.1504148 |07 *|A0 |07358 08953| +600184 |FU Ori *|054522.4+090411 |FU | 9.6 | 16.5 | |p | | | | |F2I-IIpeaq |09478 00981| +600185 |FV Ori |045043.5+034735 |RR | 15.5 | 16.3 | |p | | | 0.55218 | | |00614 USNO | +600186 |FW Ori |045305.8-011044 |SR | 14.0 | 15.0 | |p | | | | | |00614 | +600187 |FX Ori |054155.1+145002 |SRB | 7.7 | 10.4 | |V | | | 720. | |M3 |04079 04079| +600188 |FY Ori |061948.2+151907 |EA | 15.2 | 17.1 | |p |31146.288 | | | | |00984 USNO | +600189 |FZ Ori *|054121.0+023623 |EW/KW | 10.7 | 11.3 | 11.2 |V |44024.4583 | | 0.3999866 | |G0 |09506 00196| +600190 |GG Ori *|054310.2-004115 |EA/DM | 10.7 | 11.1 | 11.1 |p |33596.496 | | 6.63147 |05 *|A2 |07363 00985| +600191 |GH Ori |060957.0+173236 |LB | 14.0 | 15.0 | |p | | | | |M7 |00911 02337| +600192 |GI Ori |061320.7+183245 |SRA | 10.8 | 12.9 | |p |36602. | | 311. |40 : |M7 |00911 00196| +600193 |GK Ori |061742.1+083111 |SR | 9.5 | 11. | |V |26002. | | 236. | |C4-5,4-5(N) |00483 08953| +600194 |GL Ori |061852.4+200832 |SRB | 13.9 | 15.1 | |p |28190. | | 370. | |C |00911 02342| +600195 |GM Ori |062351.4+170047 |RRC | 13.1 | 13.7 | |p |28213.330 | | 0.3905135 |46 | |02426 02342| +600196 |GN Ori |062514.1+170152 |M | 12.6 | 17.4 | |p |28197. | | 118.3 |41 |M7 |00911 02337| +600197 |GO Ori |045631.5+053533 |RR | 14.2 | 15.4 | |p | | | | | |00614 GSC | +600198 |GP Ori *|050248.1+151912 |SRB | 12.2 | 13.3 | |p | | | 370. : | |C8,0J:(SC)ea |02563 00156| +600199 |GQ Ori *|061113.6+093645 |DCEP | 8.66 | 9.36 | |V |42798.358 | | 8.616068 |31 |G0 |08632 00986| +600200 |GR Ori |052135.3+011012 |N | 11.5 |< 20. | |p |20893. |1916 | | | |00987 02460| +600201 |GS Ori |052917.4+032901 |LB | 12.7 | 13.7 | |p | | | | |C5,4(N) |00988 BD | +600202 |GT Ori |054329.3+000459 |SRD | 11.1 | 12.9 | |p | | | 86. : | |F0 |02427 00156| +600203 |GU Ori |061004.6+124947 |EA | 12.9 | 14.3 | |p |29306.34 | | | | |00156 00156| +600204 |GV Ori |052359.0+143449 |M | 12.4 |< 16.5 | |p |30500. | | 313. : | | |02279 02356| +600205 |GW Ori *|052908.4+115213 |INST | 10.1 | 11.5 | |p | | | | |G5-8Ve(T) |08289 00598| +600206 |GX Ori *|053002.0+121336 |INB | 14.0 | 15.3 | |p | | | | |K1-3Ve |08289 00598| +600207 |GY Ori *|053013.1+120846 |INS | 13.4 | 16.17 | |B | | | | |ea |02279 00598| +600208 |GZ Ori *|053007.8-054429 |INS | 14.7 | 16.5 | |p | | | | | |04073 00861| +600209 |HH Ori *|053011.5-063409 |INS | 11.0 | 13.4 | |p | | | | | |09509 00861| +600210 |HI Ori *|053123.6+120944 |INST | 13.2 | 15.5 | |p | | | | |K0-K4Ve(T) |02279 00598| +600211 |HK Ori *|053128.0+120910 |INSA | 11.1 | 13.3 | |p | | | | |B7-A4ep/f |02279 00598| +600212 |HL Ori *|053052.6-060231 |IN: | 14.0 | 16.0 | |B | | | | | |00861 00861| +600213 |HM Ori *|053147.8+121808 |INS | 13.6 | 15.6 | |p | | | | | |02279 02356| +600214 |HN Ori *|053136.7-054710 |IN | 15.2 | 16.1 | |B | | | | | |00861 00861| +600215 |HO Ori *|053157.8-042651 |IN | 15.3 | 16.5 | |p | | | | | |04073 00861| +600216 |HP Ori *|053208.9-050232 |UVN | 13.5 | 16.8 | |p | | | | | |00861 00861| +600217 |HQ Ori *|053230.9-064952 |IN | 14.2 |< 17.8 | |p | | | | | |00861 00861| +600218 |HR Ori *|053236.2-052302 |IN | 13.0 | 13.9 | |p | | | | | |00861 00861| +600219 |HS Ori *|053301.8-044919 |INST | 14.8 |< 16.5 | |p | | | | |cont+e(T) |04073 00861| +600220 |HT Ori *|053259.7-060703 |INB: | 13.6 | 14.48 | |B | | | | |M8III |00861 00861| +600221 |HU Ori *|053337.3-052653 |INS | 12.38 | 13.9 | |B | | | | | |09509 00861| +600222 |HV Ori *|053341.4-044926 |IN | 15.5 | 17.0 | |p | | | | | |00861 00861| +600223 |HW Ori *|053351.9-050653 |UVN: | 14.8 |< 17.8 | |p | | | | | |00861 00861| +600224 |HX Ori *|053350.3-043834 |IN | 14.7 | 15.9 | |B | | | | |ea |00861 00861| +600225 |HY Ori *|053352.4-054150 |IN | 14.7 | 16.4 | |p | | | | |ea |00861 00861| +600226 |HZ Ori *|053356.7-045900 |UVN: | 14.9 | 17.8 | |p | | | | | |00861 00861| +600227 |II Ori *|053402.2-053620 |INS | 14.9 | 17.5 | |p | | | | | |01698 00861| +600228 |IK Ori *|053405.7-065456 |IN | 15.2 | 16.4 | |p | | | | | |03937 00861| +600229 |IL Ori *|053410.6-060847 |IN | 14.8 | 16.8 | |p | | | | | |00861 00861| +600230 |IM Ori *|053413.2-053354 |INS | 15.1 | 16.7 | |B | | | | |ea |00861 00861| +600231 |IN Ori *|053422.2-045741 |IN | 13.3 | 14.8 | |p | | | | | |00861 00861| +600232 |IO Ori *|053424.3-042440 |INS | 14.6 | 16.5 | |p | | | | | |01698 00861| +600233 |IP Ori *|053425.9-045627 |IN | 14.8 | 16.8 | |p | | | | | |01698 00861| +600234 |IQ Ori *|053425.5-045655 |IN | 15.4 |< 17. | |B | | | | |ea |00861 00861| +600235 |IR Ori *|053427.7-045705 |IN | 15.6 | 17.7 | |B | | | | |ea |00861 00861| +600236 |IS Ori *|053430.3-051148 |IN | 15.7 | 16.6 | |p | | | | |ea |00861 00861| +600237 |IT Ori *|053434.2-044828 |UVN: | 15.9 | 17.5 | |p | | | | | |01698 00861| +600238 |IU Ori *|053434.7-054138 |INSB | 9.6 | 11.1 | |p | | | | |K3III |09509 00861| +600239 |IV Ori *|053437.5-053452 |IN | 15.1 | 16.6 | |B | | | | |ea |00861 00861| +600240 |IW Ori *|053440.0-053004 |IN | 14.7 |< 17.2 | |p | | | | | |01698 00861| +600241 |IX Ori *|053440.9-052242 |INT | 13.4 | 15.5 | |p | | | | |G-Ke(T) |00861 00861| +600242 |IY Ori *|053440.2-055015 |INB | 12.7 | 14.3 | |p | | | | |K2IV(e) |00861 00861| +600243 |IZ Ori *|053443.2-054440 |INS | 15.2 | 17.6 | |B | | | | |ea |01698 00861| +600244 |KK Ori *|053448.2-054229 |IN | 15.0 | 16.7 | |B | | | | |ea |00861 00861| +600245 |KL Ori *|053452.6-052404 |IN | 15.0 | 16.1 | |p | | | | | |00861 00861| +600246 |KM Ori *|053456.0-052313 |INB | 12.3 | 13.8 | |p | | | | |K1-K5Ve |00861 00861| +600247 |KN Ori *|053456.7-051133 |INB | 13.8 | 14.8 | |p | | | | |K6ea |00861 00861| +600248 |KO Ori *|053456.4-053136 |INB | 13.6 | 15.2 | |p | | | | | |05576 00861| +600249 |KP Ori *|053455.8-054126 |INB | 14.5 | 16.2 | |B | | | | |M0e |00861 00861| +600250 |KQ Ori *|053457.7-052352 |IN | 13.8 | 15.6 | |p | | | | | |05576 00861| +600251 |KR Ori *|053500.0-052302 |INT | 13.5 | 15.5 | |B | | | | |K6e(T) |00861 00861| +600252 |KS Ori *|053500.1-052516 |INA | 9.7 | 12.0 | |p | | | | |B9-A0Vn |00861 00861| +600253 |KT Ori *|053459.1-054430 |IN | 15.2 | 16.7 | |B | | | | |ea |00861 00861| +600254 |KU Ori *|053458.1-061225 |IN | 14.3 | 16.4 | |B | | | | | |00861 00861| +600255 |KV Ori *|053501.4-050933 |IN | 16.0 | 17.0 | |p | | | | | |00861 00861| +600256 |KW Ori *|053500.8-053808 |INS | 15.5 |< 17.5 | |p | | | | | |00861 00861| +600257 |KX Ori *|053504.8-044355 |INA: | 6.9 | 8.1 | |p | | | | |B3V |00861 00861| +600258 |KY Ori *|053505.5-045137 |UVN: | 15.7 |< 17.8 | |p | | | | | |01698 00861| +600259 |KZ Ori *|053502.9-053001 |IN | 13.9 | 15.3 | |p | | | | | |00861 00861| +600260 |LL Ori *|053505.6-052520 |INT | 12.0 | 13.7 | |p | | | | |K4IVe(T) |00861 00861| +600261 |LM Ori *|053508.8-053149 |INS | 14.5 | 16.3 | |p | | | | |ea |01698 00861| +600262 |LN Ori *|053508.0-053244 |INS | 15.2 | 17.2 | |p | | | | |e |01698 00861| +600263 |LO Ori *|053508.2-053705 |IN | 15.1 | 17.5 | |B | | | | |ea |01698 00861| +600264 |LP Ori *|053509.8-052753 |INSA: | 7.6 | 9.3 | |p | | | | |B1.5Vp |00861 00861| +600265 |LQ Ori *|053510.7-052345 |IN | 13.5 | 14.5 | |p | | | | | |00861 00861| +600266 |LR Ori *|053510.5-052618 |IN | 11.9 | 13.2 | |V | | | | | |00861 00861| +600267 |LS Ori *|053510.4-053824 |IN | 13.54 | 14.7 | |B | | | | | |05576 00861| +600268 |LT Ori *|053511.5-051657 |INB | 13.7 | 15.4 | |p | | | | |K0:IV-V: |00861 00861| +600269 |LU Ori *|053511.5-052603 |IN | 13.1 | 15.0 | |p | | | | | |00861 00861| +600270 |LV Ori *|053512.6-052344 |IN | 12.1 | 13.3 | |V | | | | | |00861 00861| +600271 |LW Ori *|053512.2-053033 |INS | 14.3 : |< 17.5 | |p | | | | |ea |00861 00861| +600272 |LX Ori *|053512.9-053934 |INB | 13.1 | 14.1 | |p | | | | |K3e |00861 00861| +600273 |LY Ori *|053513.8-053910 |INS | 14.2 | 15.8 | |p | | | | |ea |04073 00861| +600274 |LZ Ori *|053517.9-044107 |INA | 10.3 | 11.1 | |p | | | | |A0: |00861 00861| +600275 |MM Ori *|053515.9-051459 |INS | 14.8 | 16.4 | |p | | | | | |01698 00861| +600276 |MN Ori *|053515.8-053312 |IN | 15.0 | 16.7 | |p | | | | | |05576 00861| +600277 |MO Ori *|053514.7-053911 |INS | 13.6 | 16.3 | |p | | | | | |01698 00861| +600278 |MP Ori *|053514.8-055142 |IN | 13.28 | 14.5 | |B | | | | | |00861 00861| +600279 |MQ Ori *|053514.4-060512 |INS | 13.7 | 15.0 | |p | | | | | |00861 00861| +600280 |MR Ori *|053517.0-052145 |INSA | 10.3 | 12.0 | |V | | | | |A2V |09509 00861| +600281 |MS Ori *|053518.6-051636 |IN | 13.8 |< 16.6 | |p | | | | | |00861 00861| +600282 |MT Ori *|053517.9-052246 |IN | 11.2 | 13.0 | |V | | | | | |00861 00861| +600283 |MU Ori *|053518.9-051614 |IN | 13.8 | 15.8 | |p | | | | | |00861 00861| +600284 |MV Ori *|053518.7-052034 |IN | 13.2 | 14.7 | |p | | | | | |00861 00861| +600285 |MW Ori *|053521.5-045046 |IN | 12.85 | 14.8 | |B | | | | | |00861 00861| +600286 |MX Ori *|053521.3-050916 |INB | 10.3 | 11.7 | |p | | | | |F8-G5III-IV/Vea |00861 00861| +600287 |MY Ori *|053520.3-053040 |INS | 15.1 |< 17.5 | |p | | | | | |01698 00861| +600288 |MZ Ori *|053521.0-053122 |IN | 14.4 | 16.3 | |p | | | | | |05576 00861| +600289 |NN Ori *|053525.7-040532 |INS | 14.2 | 16.7 | |p | | | | | |00861 00861| +600290 |NO Ori *|053524.6-051158 |IN | 14.6 | 17.3 | |B | | | | |ea |00861 00861| +600291 |NP Ori *|053526.2-050840 |INSB | 12.6 | 13.8 | |p | | | | |K1III-V |00861 00861| +600292 |NQ Ori *|053526.3-051512 |INB: | 12.1 | 14.1 | |p | | | | |G9IV-V |05576 00861| +600293 |NR Ori *|053525.5-054545 |IN | 15.5 |< 17.0 | |p | | | | | |00861 00861| +600294 |NS Ori *|053524.5-060146 |UVN(YY) | 15.0 | 17.7 | |p | | | | |M1e |05603 00861| +600295 |NT Ori *|053525.1-064756 |IN | 14.1 | 15.5 | |B | | | | |ea |04073 00861| +600296 |NU Ori *|053531.4-051603 |INSA | 6.80 | 6.93 | |V | | | | |B0.5V |07359 00861| +600297 |NV Ori *|053531.4-053309 |INSB | 8.7 | 11.3 | |V | | | | |F0IV-F6Ve |09509 00861| +600298 |NW Ori *|053530.2-060303 |IN | 14.8 | 17.5 | |p | | | | | |00861 00861| +600299 |NX Ori *|053532.9-053021 |INS | 15.0 | 17.5 | |p | | | | | |01698 00861| +600300 |NY Ori *|053536.0-051225 |INST | 14.5 | 17.5 | |p | | | | |cont+e(T) |01698 00861| +600301 |NZ Ori *|053537.3-052640 |IN | 11.9 | 14.2 | |V | | | | | |00861 00861| +600302 |OO Ori *|053540.0-044555 |IN | 14.9 | 16.2 | |p | | | | | |00861 00861| +600303 |OP Ori *|053544.1-044805 |IN | 14.0 | 17.1 | |B | | | | |ea |00861 00861| +600304 |OQ Ori *|053542.5-052733 |IN | 14.5 | 16.0 | |p | | | | | |00861 00861| +600305 |OR Ori *|053543.1-053627 |INS | 13.9 | 15.0 | |p | | | | | |05576 00861| +600306 |OS Ori |053620.8+084944 |EA/SD | 11.5 | 13.7 | |V |45386.349 | | 2.383525 |10 *|A0 |00001 00196| +600307 |OT Ori *|053550.8-051629 |INSB | 13.0 | 17.5 | |p | | | | |K5e |05576 00861| +600308 |OU Ori *|053550.5-055142 |IN | 14.7 | 15.9 | |p | | | | | |00861 00861| +600309 |OV Ori *|053552.7-051259 |IN | 15.1 | 17.2 | |p | | | | | |01698 00861| +600310 |OW Ori *|053554.3-052645 |INS | 14.6 | 16.8 | |p | | | | |ea |05576 00861| +600311 |OX Ori *|053554.6-052708 |UVN | 15.7 | 16.9 | |p | | | | | |00861 00861| +600312 |OY Ori *|053558.3-063643 |INS | 15.1 | 17.6 | |B | | | | |ea |03937 00861| +600313 |OZ Ori *|053615.9-044844 |IN | 15.9 | 17.4 | |p | | | | | |00861 00861| +600314 |PP Ori *|053622.1-060228 |INS | 13.8 | 15.2 | |p | | | | | |04073 00861| +600315 |PQ Ori *|053620.9-021058 |INSB | 12.5 | 13.7 | |p | | | | |F0-F5: |00989 00990| +600316 |PR Ori *|053624.9-061732 |IN | 12.2 | 13.6 | |p | | | | | |00861 00861| +600317 |PS Ori *|053627.8-054228 |INS | 15.7 | 17.2 | |p | | | | | |01698 00861| +600318 |PT Ori *|053636.0-042424 |INB | 12.1 | 13.1 | |B | | | | |G |00861 00861| +600319 |PU Ori *|053624.2-004213 |INSB | 12.5 | 14.6 | |p | | | | |F8:e-K3:e |04076 00990| +600320 |PV Ori *|053647.1-053034 |IN | 15.7 |< 16.9 | |p | | | | | |00861 00861| +600321 |PW Ori *|053659.7-052340 |INS | 14.5 |< 17.0 | |p | | | | |ea |00861 00861| +600322 |PX Ori *|053703.4-043705 |EW: | 12.8 | 14.1 | |p | | | | |G8V |00861 00861| +600323 |PY Ori *|053712.4-060703 |IN | 15.1 | 17.1 | |p | | | | | |00861 00861| +600324 |PZ Ori *|053757.4-042641 |IN | 13.9 |< 15.7 | |p | | | | | |00861 00861| +600325 |QQ Ori *|053927.5-045404 |IN | 14.2 | 15.8 | |p | | | | | |00861 00861| +600326 |QR Ori *|054409.0+090915 |INS | 13.3 | 16.3 | |p | | | | |ea |02279 02357| +600327 |QS Ori |054536.7+121615 |M | 12.0 |< 16.5 | |p |30710. | | 476. | |C7,4e(N) |02279 02351| +600328 |QT Ori *|054703.0+055504 |EA/SD | 13.0 | 14.8 | |p |31027.529 | | 2.3143175 |10 *| |02279 02351| +600329 |QU Ori |055004.0+215139 |LB | 12.7 | 14.9 | |p | | | | |M6 |00619 02351| +600330 |QV Ori |055004.3+195923 |EA | 13.7 | 14.5 | |p |30258.610 | | 1.748815 | | |00619 02352| +600331 |QW Ori |055340.2+214537 |LB | 13.9 | 14.8 | |p | | | | |M |00619 02352| +600332 |QX Ori |055333.3+135655 |M | 14.9 |< 17. | |p |29700. | | 165.5 | |M6.5 |00619 02357| +600333 |QY Ori |055612.4+162827 |RRAB | 15.3 | 16.3 | |p |29303.385 | | 0.665685 |20 | |03148 02357| +600334 |QZ Ori |055603.4+123902 |SRA | 14.4 | 15.9 | |p |29195. | | 360. |50 |M6.5 |00619 02357| +600335 |V0335 Ori |055741.4+214718 |EA/SD | 14.9 | 17. | |p |30367.319 | | 3.08983 | | |00619 02352| +600336 |V0336 Ori |055734.3+194912 |DCEP | 15.2 | 16.3 | |p |30259.774 | | 2.84363 |25 | |03148 02357| +600337 |V0337 Ori |055920.6+200208 |DSCT | 10.90 | 11.45 | |V |53068.587 | | 0.2012592 |35 | |00001 02352| +600338 |V0338 Ori |055941.7+165115 |EA | 15.1 | 16.2 | |p | | | | | |00619 02357| +600339 |V0339 Ori |060104.7+165441 |IS: | 12.5 | 16.0 | |p | | | | | |00619 02352| +600340 |V0340 Ori *|060125.6+153010 |SRB | 12.5 | 13.7 | |p |29601. | | 362. | |M4 |00619 02357| +600341 |V0341 Ori |060337.3+144248 |EA/SD | 14.8 |< 17.0 | |p |29631.601 | | 2.391220 |13 | |03803 02352| +600342 |V0342 Ori |060401.1+211334 |SRB | 13.7 | 16.0 | |p |29291. | | 344. |45 |M7 |00619 02352| +600343 |V0343 Ori *|060500.3+123305 |EW/DW | 10.5 | 11.0 | 11.0 |V |33599.379 | | 0.8091260 | |F1 |08703 00991| +600344 |V0344 Ori |061519.0+153100 |UGZ | 14.2 | 17.5 : | |p | | |( 20. :) | | |05386 08852| +600345 |V0345 Ori |061601.6-010321 |M | 9.5 |< 14. | |p |42126. | | 331.5 | |M3 |00001 05151| +600346 |V0346 Ori |052442.8+014348 |ISA | 10.0 | 11.9 | |p | | | | |A5III: |04079 00491| +600347 |V0347 Ori *|053203.5-042046 |IN | 14.9 | 16.0 | |p | | | | | |00861 00861| +600348 |V0348 Ori *|053515.6-052257 |IN | 12.6 | 13.3 | |V | | | | | |00861 00861| +600349 |V0349 Ori *|053752.4-041245 |INS | 14.2 |< 16.2 | |p | | | | | |04073 00861| +600350 |V0350 Ori |054011.8-094211 |ISA | 10.4 | 12.6 | |p | | | | |A0 |00995 00538| +600351 |V0351 Ori |054418.8+000840 |INSA | 8.3 | 11.6 | |p | | | | |A7III |00201 08953| +600352 |V0352 Ori |060146.9-022114 |LB | 8.5 | 10.0 | |p | | | | |M7ep |04079 08953| +600353 |V0353 Ori *|053348.2-043928 |INS | 15.9 | 17.3 | |p | | | | | |00861 00861| +600354 |V0354 Ori *|053349.5-053621 |INS | 15.7 | 17.5 | |p | | | | | |01698 00861| +600355 |V0355 Ori *|053509.1-050647 |INS | 13.9 | 16.4 | |B | | | | | |05576 00861| +600356 |V0356 Ori *|053509.0-052959 |INB | 13.8 | 14.6 | |p | | | | |K1-K3IV-Ve |01698 00861| +600357 |V0357 Ori *|053521.6-050950 |IN | 15.9 | 17.8 | |p | | | | | |01698 00861| +600358 |V0358 Ori *|053523.8-053047 |INB | 12.6 |< 13.8 | |B | | | | |G8V |00861 00861| +600359 |V0359 Ori *|053533.4-045015 |SXARI | 7.25 | 7.36 | |V |42813.44 | | 15.26 | |B2Vp(He-Sr) |08054 08043| +600360 |V0360 Ori *|053531.9-050928 |INB | 13.6 | 14.7 | |B | | | | |K4-M0IVe |05576 00861| +600361 |V0361 Ori *|053531.4-052516 |INSA | 8.16 | 8.29 | |V | | | | |B5V |00861 00861| +600362 |V0362 Ori *|053537.7-050632 |INS | 15.4 |< 17.5 | |p | | | | | |04073 00861| +600363 |V0363 Ori *|053540.8-050902 |INB | 15.3 | 16.60 | |B | | | | |M0-M4 |00861 00861| +600364 |V0364 Ori *|053550.2-052117 |INS | 15.8 |< 17.5 | |p | | | | |ea |01698 00861| +600365 |V0365 Ori *|053600.6-052330 |INS | 15.7 |< 17.2 | |p | | | | | |01698 00861| +600366 |V0366 Ori *|053630.2-052610 |IN | 15.8 |< 16.9 | |p | | | | | |00861 00861| +600367 |V0367 Ori *|053632.1-051713 |IN | 15.7 | 17.4 | |B | | | | |ea |00861 00861| +600368 |V0368 Ori *|053733.4-051237 |IN | 14.4 | 15.9 | |p | | | | |ea |04073 00861| +600369 |V0369 Ori *|053759.9-041340 |IN | 15.5 | 17.0 | |p | | | | | |00861 00861| +600370 |V0370 Ori *|053001.9+121310 |INSB | 13.7 | 16.5 | |p | | | | |K7ea |02279 02351| +600371 |V0371 Ori *|053344.8+015643 |UV | 11.0 | 13.01 | |B | | | | |M2.5Ve |00997 07060| +600372 |V0372 Ori *|053447.0-053415 |INA | 7.94 | 8.13 : | |V | | | | |B9.5V+A0.5 |00861 00861| +600373 |V0373 Ori *|053448.5-054158 |INS | 14.6 |< 16.1 | |p | | | | | |00861 00861| +600374 |V0374 Ori *|053448.3-063028 |IN | 14.7 | 16.9 | |p | | | | |ea |03937 00861| +600375 |V0375 Ori *|053503.8-052454 |IN | 15.9 |< 17.0 | |p | | | | | |00861 00861| +600376 |V0376 Ori *|053508.9-050552 |IN | 16.1 | 17.3 | |B | | | | | |00861 00861| +600377 |V0377 Ori *|053521.2-052457 |IN | 12.8 | 14. | |V | | | | | |00861 00861| +600378 |V0378 Ori *|053546.4-054101 |UVN | 15.1 | 17.5 | |p | | | | | |00998 00861| +600379 |V0379 Ori *|053551.0-051509 |INSB | 15.2 | 17.1 | |B | | | | |K7 |01698 00861| +600380 |V0380 Ori *|053625.4-064258 |INAT | 8.2 | 11.10 | |B | | | | |B8-A2eq(T) |00861 04002| +600381 |V0381 Ori *|053702.3-053629 |INB | 13.1 | 13.8 | |p | | | | |G8Vea |00861 00861| +600382 |V0382 Ori *|062009.7+173702 |M | 13.2 | 17.2 | |p |28193. | | 225.6 |47 : |M9: |00407 02358| +600383 |V0383 Ori *|053237.5-051241 |UVN | 15.4 | 17.11 | |B | | | | | |00999 00999| +600384 |V0384 Ori *|053310.5-054224 |INSB | 16.5 | 17.2 | |p | | | | |K6-M1.5Ve |00999 00999| +600385 |V0385 Ori *|053333.9-053326 |UVN | 15.4 | 18.4 | |U | | | | | |00999 00999| +600386 |V0386 Ori *|053344.9-053109 |UVN | 15.9 | 17.3 | |p | | | | |K7e |00999 00999| +600387 |V0387 Ori *|053505.3-053429 |IN | 16.0 | 16.8 | |p | | | | | |00861 00861| +600388 |V0388 Ori *|053544.1-050837 |IN | 16.6 |< 17.5 | |p | | | | | |01698 00861| +600389 |V0389 Ori *|053549.6-042439 |UVN | 14.2 | 16.5 | |B | | | | |K6Ve |00999 00999| +600390 |V0390 Ori *|053559.2-045846 |UVN | 15.3 | 17.5 | |B | | | | |K3Ve-M1e |01698 00999| +600391 |V0391 Ori *|053610.0-052204 |UVN | 15.4 | 18.4 | |U | | | | |K6V:ea |00999 00999| +600392 |V0392 Ori |061125.2+183300 |EA/KE: | 10.9 | 11.5 | |p |25506.620 | | 0.659284 |15 : |A5 |03142 02358| +600393 |V0393 Ori *|053601.1-061531 |UVN | 15.6 | 16.9 | |p | | | | |K6:Vea |01011 01011| +600394 |V0394 Ori *|053322.9-050648 |UVN | 14.5 | 17.5 | |p | | | | |ea |01698 01698| +600395 |V0395 Ori *|053407.1-052600 |IN | 13.6 | 16.0 | |B | | | | | |01698 00861| +600396 |V0396 Ori *|053408.0-053617 |IN | 16.0 | 18. | |p | | | | |ea |01698 01698| +600397 |V0397 Ori *|053427.9-052635 |IN | 15.7 | 17.5 | |p | | | | | |05576 01698| +600398 |V0398 Ori *|053440.0-054009 |INSB | 13.50 | 15.8 | |B | | | | |K0:ea |01698 00861| +600399 |V0399 Ori *|053441.7-052653 |UVN: | 16.5 | 17.5 | |p | | | | | |01698 01698| +600400 |V0400 Ori *|053449.1-054605 |UVN | 15.5 | 17.0 | |p | | | | |ea |05603 00861| +600401 |V0401 Ori *|053451.6-052513 |IN | 16.0 |< 17. | |p | | | | | |01698 00861| +600402 |V0402 Ori *|053457.8-052251 |IN | 16.8 | 17.8 | |p | | | | | |01698 01698| +600403 |V0403 Ori *|053502.4-051548 |IN | 15.0 | 16.1 | |p | | | | | |01698 00861| +600404 |V0404 Ori *|053503.1-052238 |IN | 16. | 17. | |p | | | | | |01698 01698| +600405 |V0405 Ori *|053503.6-052926 |IN | 16.5 | 17.2 | |p | | | | | |01698 01698| +600406 |V0406 Ori *|053504.5-052938 |IN | 15.0 | 16.6 | |p | | | | | |05576 00861| +600407 |V0407 Ori *|053505.6-052923 |INS | 16.8 | 18. | |p | | | | | |01698 01698| +600408 |V0408 Ori *|053505.8-053356 |INS | 16.5 | 17.8 | |p | | | | | |05576 01698| +600409 |V0409 Ori *|053514.9-053806 |IN | 16.8 |< 18. | |p | | | | | |01698 00861| +600410 |V0410 Ori *|053517.5-052146 |IN | 15.5 | 17.5 : | |p | | | | | |01698 00861| +600411 |V0411 Ori *|053517.3-054215 |IN | 15.4 | 17.6 | |B | | | | |ea |01698 00861| +600412 |V0412 Ori *|053519.0-053737 |IN | 15.2 | 17.0 | |B | | | | |ea |01698 00861| +600413 |V0413 Ori *|053522.8-044326 |IN | 16.5 |< 17.5 | |p | | | | | |01698 00861| +600414 |V0414 Ori *|053521.9-045407 |IN | 16.0 | 17.2 | |p | | | | |ea |01698 00861| +600415 |V0415 Ori *|053521.9-050702 |IN | 14.8 | 16.6 | |B | | | | |ea |01698 00861| +600416 |V0416 Ori *|053521.3-054212 |INS | 15.8 | 17.5 | |p | | | | |ea |01698 00861| +600417 |V0417 Ori *|053525.7-053021 |IN | 14.8 | 16.5 | |p | | | | | |01698 00861| +600418 |V0418 Ori *|053528.7-044816 |IN | 16.3 |< 17.3 | |p | | | | | |01698 00861| +600419 |V0419 Ori *|053528.1-051014 |UVN: | 15.5 | 17.4 | |B | | | | |ea |01698 00861| +600420 |V0420 Ori *|053528.2-052458 |IN | 16.0 | 17.2 | |p | | | | | |01698 00861| +600421 |V0421 Ori *|053528.0-052931 |IN | 16.5 |< 17. | |p | | | | | |01698 01698| +600422 |V0422 Ori *|053531.5-050502 |INS | 15.6 | 17.2 | |B | | | | |ea |01698 00861| +600423 |V0423 Ori *|053534.5-044655 |IN | 16.5 |< 17.5 | |p | | | | |ea |01698 00861| +600424 |V0424 Ori *|053536.7-050415 |INS | 15.6 | 17.1 | |B | | | | |ea |01698 00861| +600425 |V0425 Ori *|053535.6-051543 |IN | 16.5 | 17.5 | |p | | | | | |01698 01698| +600426 |V0426 Ori *|053538.9-051242 |IN | 16.0 | 17.2 | |p | | | | | |01698 00861| +600427 |V0427 Ori *|053547.5-052250 |UVN | 14.56 | 17.5 | |B | | | | | |01698 01698| +600428 |V0428 Ori *|053557.7-052309 |UVN: | 15.2 | 17.4 | |B | | | | |ea |01698 00861| +600429 |V0429 Ori |045612.0-033124 |RRAB: | 10. | 11. | |V |28876.413 | | 0.5017 |27 | |02455 06286| +600430 |V0430 Ori |050636.1+003255 |SRB | 9.4 | 10.8 | |p | | | 104.5 | |M6 |03807 08953| +600431 |V0431 Ori |051557.7+115840 |SRB | 9.3 | 11.1 | |V |30033. | | 122. : | |C5,5(N) |02563 00158| +600432 |V0432 Ori *|051848.0+135912 |DCEP | 12.1 | 13.3 | |p |30321.479 | | 5.065635 |15 |F5-G0 |03809 02356| +600433 |V0433 Ori |052107.0+124541 |SR | 14.9 |< 16.5 | |p |30330. | | 340. /N| | |02279 02356| +600434 |V0434 Ori |052337.0+124440 |L | 14.2 | 15.8 | |p | | | | | |02279 02351| +600435 |V0435 Ori *|052403.9+061824 |SRA | 12.5 | 14.5 | |p |35565. | | 188. | |S4,3(M4) |00001 02351| +600436 |V0436 Ori *|052609.5+112336 |INS | 14.3 | 15.7 | |p | | | | |ea |08289 00596| +600437 |V0437 Ori *|052621.6+113134 |INS | 14.1 | 16.1 | |p | | | | |ea |08289 00596| +600438 |V0438 Ori *|052739.7+112421 |INS | 15.0 | 16.1 | |p | | | | |ea |08289 00596| +600439 |V0439 Ori *|052818.0+115651 |INS | 14.6 |< 16.0 | |p | | | | |ea |08289 00596| +600440 |V0440 Ori |052823.2+084128 |LB | 12.3 | 13.5 | |p | | | | |M5 |02279 02351| +600441 |V0441 Ori *|052848.3+112056 |INS | 15.1 | 16.2 | |p | | | | |ea |08289 00596| +600442 |V0442 Ori *|052934.2+125622 |INSB | 16.1 | 16.8 | |p | | | | |K7-M0e |08289 00598| +600443 |V0443 Ori *|053000.6+121345 |INS | 15.5 |< 17.1 | |p | | | | |ea |08289 00596| +600444 |V0444 Ori *|053004.8+121309 |INS | 16.0 |< 17.0 | |p | | | | |ea |08289 00596| +600445 |V0445 Ori *|053036.1+120641 |INS | 15.4 | 17.6 | |p | | | | |ea |08289 00596| +600446 |V0446 Ori *|053029.1+123357 |INS | 15.8 | 17.5 | |p | | | | |ea |08289 00596| +600447 |V0447 Ori *|053036.2+123653 |INSB | 13.5 | 16.1 | |p | | | | |K7e |08289 00596| +600448 |V0448 Ori *|053051.7+120837 |INSB | 14.3 | 15.7 | |p | | | | |K4-K6Ve |08289 00598| +600449 |V0449 Ori *|053116.1+112531 |INSB | 15.24 | 16.97 | |B | | | | |K-Me |03500 02356| +600450 |V0450 Ori *|053124.6+121210 |INS | 16.1 |< 16.8 | |p | | | | |ea |08289 00596| +600451 |V0451 Ori |053126.8+110123 |GCAS | 8.5 | 9.5 | |p | | | | |B9e |08289 00598| +600452 |V0452 Ori *|053143.4+123022 |INSB | 14.0 | 15.4 | |p | | | | |K7e |08289 00596| +600453 |V0453 Ori *|053149.1+123201 |INSB | 14.8 | 16.1 | |p | | | | |K2e |08289 00596| +600454 |V0454 Ori *|053206.5+122405 |INS | 14.0 | 16.1 | |p | | | | |ea |08289 00596| +600455 |V0455 Ori *|053215.4+120934 |INS | 14.8 |< 16.7 | |p | | | | |ea |02279 02357| +600456 |V0456 Ori *|053218.1+124356 |INS | 15.6 | 16.4 | |p | | | | |ea |08289 00596| +600457 |V0457 Ori *|053225.6+123635 |INS | 14.6 |< 17.0 | |p | | | | |ea |08289 00596| +600458 |V0458 Ori *|053219.1+122423 |INS | 14.3 | 15.5 | |p | | | | |ea |08289 00596| +600459 |V0459 Ori |053232.0+104418 |IS | 15.6 |< 16.6 | |p | | | | |ea |08289 00596| +600460 |V0460 Ori *|053243.1+122108 |IN | 14.5 |< 16.5 | |p | | | | |ea |02279 02357| +600461 |V0461 Ori *|053236.4+122620 |INS | 14.0 | 15.3 | |p | | | | |ea |08289 00596| +600462 |V0462 Ori |053232.6-011347 |INS | 13.4 | 15.0 | |p | | | | |ea |04076 04927| +600463 |V0463 Ori *|053306.7+114648 |INS | 14.8 | 15.8 | |p | | | | |ea |08289 00596| +600464 |V0464 Ori *|053302.1+113712 |INS | 14.6 |< 16.2 | |p | | | | |ea |08289 00596| +600465 |V0465 Ori *|053351.3+121056 |IS | 13.7 | 15.4 | |p | | | | | |02279 02351| +600466 |V0466 Ori *|053302.3-052626 |INB | 13.0 | 14.1 | |B | | | | |K1e |02446 00861| +600467 |V0467 Ori *|053404.1+122423 |IS | 15.7 | 16.8 | |p | | | | |ea |08289 00596| +600468 |V0468 Ori *|053353.0-051943 |INS | 15.1 | 16.5 | |p | | | | |ea |09480 00861| +600469 |V0469 Ori |053425.7-012107 |INS | 12.9 | 13.9 | |p | | | | |ea |04076 04927| +600470 |V0470 Ori *|053417.5-053159 |IN | 15.8 | 16.8 | |p | | | | | |01698 00861| +600471 |V0471 Ori |053524.5+132927 |LB | 11.9 | 13.3 | |p | | | | |M5 |02279 02351| +600472 |V0472 Ori |053448.8-003717 |INS | 14.2 | 16.2 | |p | | | | |ea |04076 04927| +600473 |V0473 Ori *|053442.4-051219 |INB | 14.8 | 16.2 | |B | | | | |M1ea |02446 00861| +600474 |V0474 Ori *|053446.3-053908 |IN | 15.2 | 16.4 | |B | | | | |ea |02446 00861| +600475 |V0475 Ori *|053450.5-052335 |IN | 17.5 |< 18. | |p | | | | | |01698 01698| +600476 |V0476 Ori *|053457.4+105736 |INS | 15.8 | 16.6 | |p | | | | |ea |08289 00596| +600477 |V0477 Ori *|053525.4+100838 |INS | 14.46 | 16.4 | |B | | | | |ea |08289 00596| +600478 |V0478 Ori *|053456.0-052926 |IN | 17.5 |< 18. | |p | | | | | |01698 01698| +600479 |V0479 Ori *|053505.1-052025 |IN | |< 17.5 | |p | | | | | |01698 01698| +600480 |V0480 Ori *|053505.7-052419 |IN | |< 17.5 | |p | | | | | |01698 01698| +600481 |V0481 Ori *|053509.0-042751 |IN | 13.7 | 14.5 | |p | | | | |ea |02446 00861| +600482 |V0482 Ori *|053506.2-054531 |IN | 15.3 | 16.9 | |B | | | | |ea |02446 02849| +600483 |V0483 Ori |053520.1-004214 |INS | 14.4 | 15.5 | |p | | | | |ea |04076 04927| +600484 |V0484 Ori *|053509.6-052823 |INS | |< 17.5 | |p | | | | | |01698 01698| +600485 |V0485 Ori *|053512.8-051524 |IN | 13.9 |( 0.27 )| |Ic| | | | | |72132 72133| +600486 |V0486 Ori *|053512.4-054319 |INB | 14.7 | 15.7 | |B | | | | |K7e |02446 00861| +600487 |V0487 Ori *|053515.3-043326 |IN | 15.0 | 15.9 | |B | | | | |ea |02446 00861| +600488 |V0488 Ori |053513.5-053057 |IN | 13.6 | 14.4 | |p | | | | |e |02446 00861| +600489 |V0489 Ori *|053516.3-051538 |INS | |< 17.5 | |p | | | | | |01698 01698| +600490 |V0490 Ori *|053518.8-051447 |INS | |< 17. | |p | | | | | |01698 01698| +600491 |V0491 Ori *|053520.1-052107 |IN | 14.0 | | |V | | | | | |01698 00861| +600492 |V0492 Ori *|053522.6-050801 |IN | |< 17. | |p | | | | | |01698 02849| +600493 |V0493 Ori *|053521.0-051638 |IN | |< 17. | |p | | | | | |01698 01698| +600494 |V0494 Ori *|053521.8-052354 |IN | 15. | 16. : | |p | | | | | |01698 00861| +600495 |V0495 Ori *|053521.7-052527 |IN | 12.5 |< 13.5 | |I | | | | | |01698 01698| +600496 |V0496 Ori *|053525.4-052152 |INS | |< 17. | |p | | | | | |01698 01698| +600497 |V0497 Ori *|053528.9-051618 |INS | |< 17. | |p | | | | | |01698 01698| +600498 |V0498 Ori *|053529.7-054845 |INSB | 12.8 | 16.2 : | |B | | | | |K2 |02857 00861| +600499 |V0499 Ori |053545.9-005753 |INS: | 14.8 | 16.9 | |p | | | | |ea |04076 04927| +600500 |V0500 Ori *|053544.8-050717 |INB | 13.6 | 14.6 | |B | | | | |K2:Vea |02446 00861| +600501 |V0501 Ori *|053607.3-054222 |INS | 12.7 | 15.1 | |p | | | | |ea |09509 00861| +600502 |V0502 Ori *|053610.5-051945 |UVN | 14.7 | 16.5 : | |B | | | | |K1:ea |03924 00861| +600503 |V0503 Ori |053650.2+103338 |SR: | 16.2 |< 17.5 | |p |30340. | | | | |02279 02357| +600504 |V0504 Ori *|053809.5+123214 |EB/AR: | 15.0 | 15.9 | 15.4 |p |30261.601 | | 2.572514 : | | |02279 02357| +600505 |V0505 Ori *|053827.1-024510 |INS | 14.7 | 17.2 | |p | | | | |ea |04076 04076| +600506 |V0506 Ori |053909.2+092530 |IS: | 14.1 | 16.3 | |p | | | | | |02279 02351| +600507 |V0507 Ori *|053907.5-023239 |INS | 15.5 | 16.6 | |p | | | | |ea |04076 04927| +600508 |V0508 Ori *|053912.9-012722 |INS | 13.7 | 15.5 | |p | | | | |ea |04076 04927| +600509 |V0509 Ori *|053911.4-023106 |INS | 14.0 |< 17.5 | |p | | | | |ea |04076 04927| +600510 |V0510 Ori *|053939.7-023122 |INT(YY) | 13.69 | 15.7 | |B | | | | |cont+e(T) |04076 05981| +600511 |V0511 Ori *|053942.6-025854 |INS | 14.4 | 15.7 | |p | | | | |ea |04076 04927| +600512 |V0512 Ori |054043.2+124907 |LB | 14.1 | 15.0 | |p | | | | |M4 |02279 02351| +600513 |V0513 Ori |054038.9-004702 |IS | 15.6 | 17.1 | |p | | | | |ea |04076 04927| +600514 |V0514 Ori *|054058.3-011705 |INS | 16.3 | 17.2 | |p | | | | |ea |04076 04927| +600515 |V0515 Ori |054129.5+090720 |IS: | 14.4 | 15.8 | |p | | | | |ea |08289 02351| +600516 |V0516 Ori *|054213.8+084357 |SRB | 13.8 |< 16.0 | |p | | | | |ea |08289 02357| +600517 |V0517 Ori |054247.3+110711 |EA | 12.9 | 13.4 | |p | | | | | |02279 02357| +600518 |V0518 Ori |054308.3+000021 |IS: | 14.0 | 16.5 | |p | | | | |ea |04076 04927| +600519 |V0519 Ori *|054351.1+091728 |EA/D | 12.6 | 13.0 | 12.9 |p |31003.573 | | 3.107540 |10 *| |02279 02357| +600520 |V0520 Ori |054405.0+065716 |LB | 11.7 | 13.3 | |p | | | | |M4 |02279 02351| +600521 |V0521 Ori |054419.3+114847 |I | 13.0 | 14.5 | |p | | | | | |02279 02351| +600522 |V0522 Ori *|054403.6-021637 |IN | 15.5 | 17.8 : | |p | | | | |ea |04076 04927| +600523 |V0523 Ori *|054429.2-012217 |INS: | 13.8 | 15.5 | |p | | | | |ea |04076 04927| +600524 |V0524 Ori |054716.0+100453 |LB | 12.4 | 13.8 | |p | | | | |M |02279 02357| +600525 |V0525 Ori *|055034.0+102343 |EB/D | 14.4 | 15.1 | 14.7 |p |30259.622 | | 2.081649 | | |02279 02357| +600526 |V0526 Ori *|055041.6+091820 |INS | 14.1 | 15.2 | |p | | | | | |02279 02351| +600527 |V0527 Ori |055304.9+130700 |LB | 13.5 | 14.0 | |p | | | | | |02279 02351| +600528 |V0528 Ori |055548.4+074936 |EA/D | 13.3 | 14.0 | |p |30431.335 | | 5.383059 : |13 :*| |02279 02357| +600529 |V0529 Ori *|055820.1+201545 |NR: | 6. : |< 11. | |V | |1678:| | | |09513 GSC22| +600530 |V0530 Ori |060433.8-031152 |EA/D | 10.6 | 11.3 | |p |25558.430 | | 6.110792 |06 |G0 |02594 BD | +600531 |V0531 Ori |051220.5-025553 |IS: | 13.5 | 16. | |p | | | | | |04358 01217| +600532 |V0532 Ori |051700.8+033118 |SR | 14. | 16. | |p | | | | | |04065 04065| +600533 |V0533 Ori |052003.8-044912 |SR: | 12.4 | 13.0 | |p | | | | |M |02404 BD | +600534 |V0534 Ori |052025.7-054706 |INT | 12.5 | 14.04 | |B | | | | |e(T) |04360 02346| +600535 |V0535 Ori |052320.7-043414 |LB | 10.9 | 11.6 | |B | | | | |M6 |02576 BD | +600536 |V0536 Ori |052454.6+015808 |EA/DM | 10.4 | 11.0 | |B |26793.275 | | 3.163264 |08 |A2 |03835 08613| +600537 |V0537 Ori *|053046.5+084707 |IS | 13.8 | 15.1 | |p | | | | |ea |08289 02842| +600538 |V0538 Ori *|053038.4-052544 |INS | 14.0 | 17.3 | |p | | | | | |04073 04073| +600539 |V0539 Ori *|053111.8-043628 |UVN | 15.5 | 17. | |p | | | | | |04073 04073| +600540 |V0540 Ori *|053207.8-065537 |IN | 15.2 | 16.5 | |p | | | | | |04073 04073| +600541 |V0541 Ori *|053324.4-052117 |INS | 12.1 | 12.7 | |B | | | | | |04075 00861| +600542 |V0542 Ori *|053321.0-062234 |UVN | 15.2 | 17.64 | |B | | | | |ea |04073 04073| +600543 |V0543 Ori |053339.7-003854 |INS | 14.7 | 16.7 | |p | | | | | |04076 04076| +600544 |V0544 Ori *|053338.2-041232 |UVN | 14.4 | 17.17 | |B | | | | | |04422 04422| +600545 |V0545 Ori *|053345.0-061401 |UVN | 14.5 | 16.37 | |B | | | | | |04073 04073| +600546 |V0546 Ori *|053411.4-045123 |IN: | 15.7 | 16.8 | |B | | | | |ea |04073 04073| +600547 |V0547 Ori *|053422.9-044139 |IN: | 15.5 | 16.5 | |p | | | | |ea |04073 04073| +600548 |V0548 Ori *|053538.9+103228 |INS | 14.5 | 15.8 | |p | | | | |ea |08289 02842| +600549 |V0549 Ori *|053545.6+103654 |INS | 14.2 | 15.4 | |p | | | | |ea: |08289 02842| +600550 |V0550 Ori *|053448.0-050455 |INS | 15.6 | 16.8 | |p | | | | |ea |04073 04073| +600551 |V0551 Ori *|053452.8-052755 |UVN | 15.2 |< 17. | |p | | | | | |04073 04073| +600552 |V0552 Ori *|053454.9-054709 |UVN | 15.3 | 17.4 | |p | | | | | |04078 04078| +600553 |V0553 Ori *|053456.1-050602 |UVN | 15.3 | 17.57 | |B | | | | | |04073 04073| +600554 |V0554 Ori *|053504.6-045829 |IN: | 16.2 | 17.8 | |p | | | | |ea |04073 02849| +600555 |V0555 Ori *|053508.7-044653 |IN: | 16.0 | 17.0 | |p | | | | |ea |04073 04073| +600556 |V0556 Ori *|053509.5-045712 |IN: | 16.5 | 17.7 | |p | | | | |ea |04073 02849| +600557 |V0557 Ori *|053513.3-050920 |IN: | 16.6 | 17.6 | |B | | | | |ea |04073 02849| +600558 |V0558 Ori |053520.1-024724 |INS | 14.9 | 15.9 | |p | | | | |ea |04076 04076| +600559 |V0559 Ori *|053517.9-044453 |IN: | 15.7 | 16.7 | |p | | | | |ea |04073 02849| +600560 |V0560 Ori *|053516.5-054018 |UVN | 15.0 | 17.5 | |B | | | | | |04073 00861| +600561 |V0561 Ori *|053523.6-041714 |IN | 14.0 |< 17.0 | |p | | | | |ea |04073 04073| +600562 |V0562 Ori *|053522.2-052425 |IN: | 14.0 | 15.0 | |I | | | | | |04073 04073| +600563 |V0563 Ori *|053526.6-045607 |INS | 12.8 | 17.2 | |B | | | | |ea |04073 02849| +600564 |V0564 Ori *|053527.9-060939 |UVN | 15.3 | 17.8 | |p | | | | | |04073 04073| +600565 |V0565 Ori *|053532.2-044657 |IN: | 16.0 | 17.1 | |p | | | | |ea |04073 02849| +600566 |V0566 Ori *|053535.8-051221 |INSA | 9.8 | 10.6 | |B | | | | |A0Vn |04079 00861| +600567 |V0567 Ori *|053537.8-041427 |UVN | 13.5 | 17.0 | |B | | | | | |04073 04073| +600568 |V0568 Ori *|053536.4-053411 |IN | 15.2 | 17.5 | |p | | | | |ea |04073 00861| +600569 |V0569 Ori *|053543.3-050917 |INSB | 14.0 | 15.45 | |B | | | | |K5V |04080 00861| +600570 |V0570 Ori *|053543.4-053244 |UVN | 15.4 | 17.5 | |p | | | | | |04073 00861| +600571 |V0571 Ori *|053541.0-062245 |IN | 15.0 | 16.3 | |B | | | | |ea |03937 04073| +600572 |V0572 Ori *|053645.6+090420 |IN | 15.3 | 16.8 | |p | | | | |ea |08289 02842| +600573 |V0573 Ori *|053542.8-063452 |INSB | 14.9 | 17.0 | |p | | | | |M0e |03937 04073| +600574 |V0574 Ori *|053547.4-051029 |IN | 12.6 | 15.7 | |p | | | | |ea |04073 00861| +600575 |V0575 Ori *|053551.1-050709 |INS | 14.3 | 16.5 | |B | | | | | |05576 04073| +600576 |V0576 Ori *|053557.3-064028 |UVN: | 16.2 | 17.7 | |B | | | | |ea |03937 04073| +600577 |V0577 Ori *|053557.4-064241 |INB | 14.5 | 16.6 | |p | | | | |K7e |04073 04073| +600578 |V0578 Ori *|053601.8-051736 |UVN | 14.1 | 15.2 | |B | | | | | |04081 00861| +600579 |V0579 Ori *|053607.1-053418 |IN: | 15.5 |< 16.5 | |I | | | | |ea |04073 04073| +600580 |V0580 Ori *|053611.8-050033 |UVN | 16.0 | 17.5 | |B | | | | |ea |04073 04073| +600581 |V0581 Ori *|053617.7-042435 |UVN | 14.3 | 16.3 | |B | | | | | |04073 04073| +600582 |V0582 Ori *|053621.9-062602 |IN | 16.7 |< 17.8 | |p | | | | |ea |04073 04073| +600583 |V0583 Ori |053635.1-010217 |INS: | 16.2 | 17.4 | |p | | | | |ea |04076 04076| +600584 |V0584 Ori *|053630.1-062310 |INS | 16.3 | 17.7 | |B | | | | |ea |03937 04073| +600585 |V0585 Ori *|053636.9-063324 |IN | 15.3 |< 17.7 | |p | | | | |ea |03937 04073| +600586 |V0586 Ori *|053659.3-060916 |INA | 9.65 | 11.2 | |B | | | | |A2Vea |04082 04082| +600587 |V0587 Ori *|053715.5-065904 |IN | 16.3 |< 18. | |p | | | | |ea |03937 04073| +600588 |V0588 Ori *|053737.4-055222 |UVN | 16. | 17.38 | |B | | | | |ea |01011 01011| +600589 |V0589 Ori *|053744.5-065037 |IN | 15.9 | 17.3 | |B | | | | |ea |03937 04073| +600590 |V0590 Ori *|053745.7-055308 |UVN | 14.4 | 17.0 | |B | | | | |ea |04084 04084| +600591 |V0591 Ori *|053751.7-065652 |IN | 15.8 | 17.9 | |B | | | | |ea |03937 04073| +600592 |V0592 Ori *|053754.4-065731 |IN | 14.6 | 16.4 | |p | | | | | |04073 04073| +600593 |V0593 Ori *|053800.8-071554 |INS | 14.8 | 17.2 | |p | | | | |ea |04073 04073| +600594 |V0594 Ori *|053827.6-065453 |IN | 13.8 | 15.5 | |B | | | | |ea |04073 04073| +600595 |V0595 Ori *|053845.4-024159 |INS: | 16.0 | 17.3 | |p | | | | |ea |04076 04076| +600596 |V0596 Ori *|053917.3+094208 |IN | 15.0 | 16.7 | |p | | | | |ea |08289 02842| +600597 |V0597 Ori *|053901.3-021827 |INS | 16.1 | 17.1 | |p | | | | |ea |04076 04076| +600598 |V0598 Ori *|053947.0+105915 |IS | 14.5 | 15.3 | |p | | | | |ea |08289 02842| +600599 |V0599 Ori *|053858.6-071645 |IN | 15.1 | 16.3 | |p | | | | | |04073 04073| +600600 |V0600 Ori *|053926.3-021503 |INS: | 15.4 | 16.6 | |p | | | | |ea |04076 04076| +600601 |V0601 Ori *|053935.1-023959 |INS: | 17.0 | 18.2 | |p | | | | | |04085 04085| +600602 |V0602 Ori *|053939.4-021705 |INS: | 16.0 | 18.1 | |p | | | | |ea |04076 04085| +600603 |V0603 Ori *|053939.8-023316 |IN | 17.0 | 18.5 | |p | | | | |ea |04086 04086| +600604 |V0604 Ori *|053953.6-023343 |INS: | 16.8 |< 18.5 | |p | | | | |ea |04085 04085| +600605 |V0605 Ori *|053954.2-022439 |INS: | 16.1 | 16.8 | |p | | | | |ea |04085 04085| +600606 |V0606 Ori *|053954.5-024634 |INS: | 15.1 | 15.9 | |p | | | | |ea |04076 04076| +600607 |V0607 Ori *|054001.9-022133 |INS: | 16.7 | 17.5 | |p | | | | |ea |04076 04076| +600608 |V0608 Ori *|054008.9-023334 |INS: | 16.2 |< 18.5 | |p | | | | |ea |04085 04085| +600609 |V0609 Ori |054024.1-003121 |INS: | 16.2 | 17.1 | |p | | | | |ea |04076 04076| +600610 |V0610 Ori *|054022.3-021540 |INS: | 16.2 | 17.9 | |p | | | | | |04085 04085| +600611 |V0611 Ori *|054045.1-021039 |INS: | 16.0 | 18.1 | |p | | | | |ea |04085 04085| +600612 |V0612 Ori *|054051.5-023602 |INS: | 15.4 | 17.5 | |p | | | | |ea |04086 04086| +600613 |V0613 Ori |054135.0+113924 |IS | 12.4 | 14.2 | |p | | | | |ea |08289 02842| +600614 |V0614 Ori *|054135.6+090751 |INB | 14.6 | 15.9 | |p | | | | |K6e |08289 02842| +600615 |V0615 Ori *|054124.4-022237 |INS: | 13.8 | 15.9 | |p | | | | | |04085 04085| +600616 |V0616 Ori *|054126.0-023221 |INS: | 16.2 | 17.0 | |p | | | | | |04085 04085| +600617 |V0617 Ori *|054126.1-020016 |IN: | 16.1 | 17.2 | |p | | | | |ea |04086 04086| +600618 |V0618 Ori *|054130.3-013803 |IN: | 15.3 | 16.4 | |p | | | | |ea |04086 04086| +600619 |V0619 Ori *|054146.6-023007 |INS: | 16.8 | 18.4 | |p | | | | | |04085 04085| +600620 |V0620 Ori *|054152.2-020122 |IN | 16.2 |< 17.5 | |p | | | | | |04086 04086| +600621 |V0621 Ori *|054152.5-020351 |IN | 16.5 | 17.3 | |p | | | | | |04086 04086| +600622 |V0622 Ori *|054215.8-020647 |IN | 14.5 | 15.4 | |p | | | | |ea |04086 04086| +600623 |V0623 Ori *|054219.5-021541 |IN | 15.8 | 17.8 | |p | | | | |ea |04086 04086| +600624 |V0624 Ori |054215.8-041942 |UVN | 15.6 | 16.8 | |p | | | | | |04073 04073| +600625 |V0625 Ori *|054320.9+090607 |INSB | 13.6 | 16.0 | |p | | | | |K6e |08289 02842| +600626 |V0626 Ori *|054332.5+090911 |IN | 15.5 | 16.5 | |p | | | | |ea |08289 02842| +600627 |V0627 Ori *|054353.3+090719 |INS | 14.2 | 15.4 | |p | | | | |ea |08289 02842| +600628 |V0628 Ori *|054357.0+091631 |IN | 15.1 | 15.8 | |p | | | | |ea |08289 02842| +600629 |V0629 Ori *|054407.3+090638 |INS | 14.8 | 17.3 | |p | | | | |ea |08289 02842| +600630 |V0630 Ori *|054417.4+091059 |INSB | 14.3 | 15.8 | |p | | | | |Gea-K5e |08289 02842| +600631 |V0631 Ori *|054441.4+085658 |INSB | 14.3 | 15.6 | |p | | | | |K1-K5:e |08289 02842| +600632 |V0632 Ori *|054444.6+092319 |INS | 14.6 | 17.3 | |p | | | | |ea |08289 02842| +600633 |V0633 Ori |054503.4-011004 |INS: | 15.2 | 15.9 | |p | | | | |ea |04076 04076| +600634 |V0634 Ori *|054551.0+100228 |INS | 14.6 | 16.6 | |p | | | | |ea |08289 02842| +600635 |V0635 Ori *|054642.9+084352 |IN | 13.6 | 14.6 | |p | | | | |ea |08289 02842| +600636 |V0636 Ori *|054745.5+083321 |IN | 15.6 | 16.2 | |p | | | | |ea |08289 02842| +600637 |V0637 Ori *|054748.8+083326 |IN | 15.0 | 15.9 | |p | | | | |ea |08289 02842| +600638 |V0638 Ori *|054808.5+095401 |INS | 14.0 | 15.6 | |p | | | | |ea |08289 02842| +600639 |V0639 Ori *|054824.2+082253 |INS | 12.7 | 14.0 | |p | | | | |ea |08289 02842| +600640 |V0640 Ori *|055500.5-092214 |EA/SD | 11.2 | 13.5 | |p |28897.341 | | 2.02074 |11 | |04089 04089| +600641 |V0641 Ori *|055717.7+140616 |EB/KW | 14.2 | 14.8 | 14.5 |p |36541.614 | | 0.4508 | | |03148 02352| +600642 |V0642 Ori *|055925.7+091529 |EA/DM | 8.75 | 9.1 | |B |27126.360 | | 2.757240 |17 |A0 |04014 BD | +600643 |V0643 Ori *|060700.9-025458 |EA/DS | 10.7 | 11.5 | |p |33354.197 | | 52.415 |10 |G-K0 |04959 04094| +600644 |V0644 Ori |061406.4+181221 |EA/SD | 14.6 |< 16.5 | |p |28251.280 | | 2.48153 |10 | |07010 04065| +600645 |V0645 Ori |061530.0+153427 |EA/SD | 13.3 | 14.7 | |p |28251.328 | | 1.040442 |20 | |07010 04065| +600646 |V0646 Ori |061759.7+202436 |IS: | 15.3 | 16.1 | |p | | | | | |07010 04065| +600647 |V0647 Ori *|062052.4+030752 |EW/DW | 11.5 | 12.0 | 11.9 |p |33705.764 | | 0.977566 | |G0 |00001 02592| +600648 |V0648 Ori *|045232.4+061936 |EA/DM | 11.5 | 12.3 | 12.2 |p |25997.310 | | 1.626468 |10 *|A0 |03183 03183| +600649 |V0649 Ori *|052923.9+115158 |INSB | 12.8 | 13.32 | |B | | | | |G8III/Ve-K4Ve |05469 02845| +600650 |V0650 Ori *|053108.8+094528 |UG: | 15.5 |< 17.5 | |p | | | | | |03905 03905| +600651 |V0651 Ori |053246.5+052458 |RR: | 15.5 | 16.5 | |p | | | | | |03903 03903| +600652 |V0652 Ori *|053432.9-050040 |UVN | 14.3 | 16.0 | |V | | | | | |03924 00861| +600653 |V0653 Ori |053458.7-092827 |M | 13.5 |< 16. | |p |38000. | | | | |03925 00964| +600654 |V0654 Ori *|053558.9-060239 |UVN | 15.5 | 17.82 | |B | | | | |ea |03924 05573| +600655 |V0655 Ori *|053604.4-050929 |INSB | 12.5 | 16.2 | |B | | | | |ea |03924 02849| +600656 |V0656 Ori *|053609.4-054627 |UVN | 13. | 16.8 | |B | | | | | |03924 00861| +600657 |V0657 Ori *|053637.0-050441 |UVN | 14.0 | 16.7 | |B | | | | |ea |03924 02849| +600658 |V0658 Ori *|053640.7-063009 |INS | 14.3 | 17.2 | |p | | | | | |03937 04073| +600659 |V0659 Ori *|053700.7-052501 |UVN | 14.5 | 17.9 | |B | | | | | |03924 05573| +600660 |V0660 Ori |053829.3+151644 |IS: | 14. | 16. | |p | | | | | |03903 03903| +600661 |V0661 Ori |054514.9+072122 |IS: | 15. | 16.5 | |p | | | | | |03905 03905| +600662 |V0662 Ori |054546.4+114054 |M | 15. |< 17.5 | |p | | | | | |03903 03903| +600663 |V0663 Ori |054719.6+101155 |SR | 14.5 | 16.5 | |p |30365. :| | | | |03905 03905| +600664 |V0664 Ori |054748.4+073321 |EA | 15. | 17. | |p |30433.34 | | | | |03905 03905| +600665 |V0665 Ori |055107.9+121350 |EA | 15.5 | 17. | |p |39200.33 | | | | |03903 03903| +600666 |V0666 Ori |055406.5+175619 |EA | 14. |< 17. | |p |29365.360 | | | | |03903 03903| +600667 |V0667 Ori *|060908.8+163508 |EB/SD | 14.7 | 15.8 | 15.0 |p |29168.562 | | 1.025042 | | |07010 04065| +600668 |V0668 Ori |061150.6+195714 |EA/D | 14.5 | 15.2 | |p |29575.500 | | 2.045597 |05 *| |03165 02358| +600669 |V0669 Ori |061737.6+192246 |E | 15. | 16. | |p |38406.423 | | | | |03910 03910| +600670 |V0670 Ori |061748.4+194314 |RR | 16. | 17. | |p |38318.657 | | | | |03910 03910| +600671 |V0671 Ori |061839.7+210236 |EA | 15. | 16.5 | |p |39180.42 | | | | |03903 03903| +600672 |V0672 Ori |061952.6+192454 |EA | 15.5 | 17.5 | |p |38406.254 | | | | |03903 03903| +600673 |V0673 Ori |062006.5+194234 |EA/SD: | 14.4 | 15.0 | |p |29617.636 | | 3.77068 |05 *| |07010 04065| +600674 |V0674 Ori |051713.4+123219 |M | 15. | 20. : | |p |39530. :| | | | |05515 05515| +600675 |V0675 Ori |051918.3+052903 |M: | 17.5 |< 20. | |p | | | | | |04065 04065| +600676 |V0676 Ori *|052747.6-065008 |UVN | 16.0 | 18.9 | |U | | | | | |05520 05573| +600677 |V0677 Ori *|052819.9-032631 |UVN | 14.6 | 15.4 | |U | | | | | |05573 05573| +600678 |V0678 Ori *|052832.1-040708 |UVN | 16.0 | 18.0 | |U | | | | | |05573 05573| +600679 |V0679 Ori *|052853.2-035220 |UVN | 15.6 | 16.4 | |B | | | | | |03924 05573| +600680 |V0680 Ori *|052855.4-042015 |UVN | 16.5 | 18.2 | |U | | | | | |05573 05573| +600681 |V0681 Ori *|052913.4-034019 |UVN | 16.1 | 18.7 | |U | | | | | |05573 05573| +600682 |V0682 Ori *|052907.7-061008 |UVN | 14.3 | 18.0 | |B | | | | | |05603 05573| +600683 |V0683 Ori *|052911.6-065935 |UVN | 15.1 | 17.9 | |p | | | | | |05573 09482| +600684 |V0684 Ori *|052930.9-053154 |UVN | 15.4 | 17.80 | |B | | | | | |03924 05573| +600685 |V0685 Ori *|052945.9-034818 |UVN | | 17.9 | |V | | | | | |03924 05573| +600686 |V0686 Ori *|053005.9-042300 |UVN | 13.8 | 17.8 | |B | | | | |ea |05520 05573| +600687 |V0687 Ori *|053042.7-040743 |UVN | 13.6 | 16.58 | |B | | | | | |05520 05573| +600688 |V0688 Ori *|053039.9-070310 |UVN | 13.8 | 14.96 | |B | | | | | |03924 05573| +600689 |V0689 Ori *|053045.8-065216 |UVN | 14.5 : | 17.6 | |B | | | | | |05520 05573| +600690 |V0690 Ori *|053051.3-053624 |UVN | 15.2 | 17.60 | |B | | | | | |04073 05573| +600691 |V0691 Ori *|053057.0-041257 |UVN | 16.0 | 16.73 | |B | | | | | |05520 05573| +600692 |V0692 Ori *|053108.1-070417 |UVN | 15.0 | 18.0 | |B | | | | | |05520 05573| +600693 |V0693 Ori *|053202.7-032735 |UVN | 16.7 | 17.3 | |U | | | | | |05573 05573| +600694 |V0694 Ori *|053156.5-042652 |UVN | 12.5 | 18.22 | |U | | | | | |09501 05573| +600695 |V0695 Ori *|053206.2-045610 |UVN | 16.0 | 16.8 | |B | | | | | |05574 USNO | +600696 |V0696 Ori *|053210.8-045536 |UVN | 15.1 | 19.3 | |p | | | | | |08425 USNO | +600697 |V0697 Ori *|053210.1-062914 |UVN | 13.5 | 19.0 | |U | | | | | |05573 05573| +600698 |V0698 Ori *|053208.9-070316 |UVN | 14.1 | 16.3 | |B | | | | | |05573 05573| +600699 |V0699 Ori *|053217.6-064556 |UVN | 16.2 | 18.4 | |U | | | | | |05573 05573| +600700 |V0700 Ori *|053224.6-050317 |UVN | 15. | 18.4 | |B | | | | | |03924 05573| +600701 |V0701 Ori *|053230.2-035928 |UVN | 16.1 | 17.9 | |B | | | | | |03924 05573| +600702 |V0702 Ori *|053236.2-040645 |UVN | 15.5 | 18.7 | |U | | | | | |05573 05573| +600703 |V0703 Ori *|053246.7-031412 |UVN | 13.5 : | 15.5 : | |p | | | | | |03924 05573| +600704 |V0704 Ori *|053236.6-044137 |UVN | 15.4 | 18.9 | |U | | | | | |05573 05573| +600705 |V0705 Ori *|053242.0-053925 |UVN | 12.0 | 16.0 | |B | | | | | |05520 05573| +600706 |V0706 Ori *|053257.4-030549 |UVN | 12.7 : | 15.3 : | |p | | | | | |03924 05573| +600707 |V0707 Ori *|053251.1-063848 |UVN | 15.0 | 17.0 | |U | | | | | |05573 05573| +600708 |V0708 Ori *|053301.3-035829 |UVN | 15.2 | 16.2 | |B | | | | | |05574 GSC | +600709 |V0709 Ori *|053259.2-052426 |UVN | 16.3 | 17.80 | |B | | | | | |05520 05573| +600710 |V0710 Ori *|053304.6-045946 |UVN | 14.4 | 17.4 | |B | | | | | |05520 05573| +600711 |V0711 Ori *|053255.2-071803 |UVN | 15.5 : | 17.7 | |B | | | | | |05520 05573| +600712 |V0712 Ori *|053311.0-050846 |UVN | 14.7 | 16.4 | |U | | | | | |05573 00861| +600713 |V0713 Ori *|053310.7-045907 |UVN | 16.5 | 16.91 | |V | | | | | |03924 05573| +600714 |V0714 Ori *|053311.7-045933 |UVN | 15.9 | 17.32 | |B | | | | | |03924 05573| +600715 |V0715 Ori *|053322.4-053234 |UVN | 13.3 | 15.6 | |B | | | | | |08425 05573| +600716 |V0716 Ori *|053325.1-040330 |UVN | 14.2 | 17.3 | |B | | | | | |03924 05573| +600717 |V0717 Ori *|053319.8-060424 |UVN | 14.1 | 18.6 | |U | | | | | |05573 05573| +600718 |V0718 Ori *|053324.2-062733 |UVN | 15.0 | 16.8 | |p | | | | | |05603 05573| +600719 |V0719 Ori *|053328.5-051726 |UVN | 15.2 | 17.0 | |U | | | | |ea |05573 05573| +600720 |V0720 Ori *|053329.0-051931 |UVN | 15.7 | 16.19 | |B | | | | | |05520 05573| +600721 |V0721 Ori *|053330.7-050215 |INS | 15.90 |< 18. | |B | | | | |ea |04073 04073| +600722 |V0722 Ori *|053329.1-054541 |INS | 14.8 : | 17.87 | |B | | | | | |05520 05573| +600723 |V0723 Ori *|053328.5-060206 |UVN | 16.1 | 17.6 | |B | | | | | |03924 05573| +600724 |V0724 Ori *|053336.6-041224 |UVN | 15.1 | 17.5 | |p | | | | | |08430 05573| +600725 |V0725 Ori *|053337.1-052307 |UVN | 16.0 | 19.0 | |U | | | | | |05573 05573| +600726 |V0726 Ori *|053345.5-053632 |INS | 17.1 | 20.0 | |p | | | | |ea |09493 05573| +600727 |V0727 Ori *|053343.3-060523 |UVN | 15. | 18.14 | |B | | | | | |05520 05573| +600728 |V0728 Ori *|053345.5-065706 |UVN | 13.5 | 17.5 | |B | | | | | |05520 05573| +600729 |V0729 Ori *|053344.8-051410 |INS | 13.9 | 15.1 | |B | | | | |ea |05573 05573| +600730 |V0730 Ori *|053344.7-052104 |INS | 14.0 | 15.3 | |B | | | | | |05573 05573| +600731 |V0731 Ori *|053347.7-045209 |UVN | 16.0 | 17.3 | |B | | | | |M1ea |09482 05573| +600732 |V0732 Ori *|053347.3-060040 |UVN | 13.1 | 16.6 | |B | | | | | |05520 00861| +600733 |V0733 Ori *|053354.1-060639 |UVN | 15.9 | 18.4 | |U | | | | | |05573 05573| +600734 |V0734 Ori *|053350.8-070117 |UVN | 15.3 | 16.50 | |U | | | | | |03924 05573| +600735 |V0735 Ori *|053356.5-050648 |UVN | 16.2 | 18.5 | |U | | | | | |05573 05573| +600736 |V0736 Ori *|053401.9-044549 |UVN | 15. | 18.2 | |B | | | | | |05520 05573| +600737 |V0737 Ori *|053410.4-042826 |UVN | | 17.6 | |B | | | | | |05574 USNO | +600738 |V0738 Ori *|053406.3-063046 |UVN | 16.2 | 18.5 | |U | | | | | |05575 05573| +600739 |V0739 Ori *|053407.7-063511 |UVN | 15.2 | 18.1 | |U | | | | | |05575 05573| +600740 |V0740 Ori *|053420.4-032735 |UVN | | 19.6 | |V | | | | | |03924 05573| +600741 |V0741 Ori *|053411.0-064724 |UVN | 16.1 | 18.06 | |U | | | | | |05628 05573| +600742 |V0742 Ori *|053413.5-055542 |UVN | 15.1 | 17.7 | |p | | | | | |09493 05573| +600743 |V0743 Ori |053458.4+142527 |RR | 15. | 16. | |p |31443.35 | | | | |05515 05515| +600744 |V0744 Ori *|053418.8-050702 |UVN | 16.2 | 17.45 | |U | | | | |M0IV-Ve |05573 05573| +600745 |V0745 Ori *|053420.4-045856 |UVN | 15.9 | 17.89 | |B | | | | | |03924 05573| +600746 |V0746 Ori *|053420.7-053046 |UVN | 15.7 | 16.7 | |U | | | | |M2 |05573 00861| +600747 |V0747 Ori *|053425.4-043307 |UVN | 15.4 | 17.50 | |B | | | | | |03924 05573| +600748 |V0748 Ori *|053423.6-061839 |UVN | 15.4 | 17.6 | |B | | | | | |03924 05573| +600749 |V0749 Ori *|053427.3-045529 |UVN | 13.2 | 18.0 | |U | | | | | |09495 05573| +600750 |V0750 Ori *|053428.9-054713 |INS | 14.4 | 16.1 | |p | | | | | |05576 02857| +600751 |V0751 Ori *|053428.0-055953 |UVN | 14.3 | 16.4 | |U | | | | | |05573 00861| +600752 |V0752 Ori *|053425.9-060352 |UVN | 15.5 : | 18.2 | |B | | | | | |03924 05573| +600753 |V0753 Ori *|053428.8-062209 |UVN | 15.9 | 17.4 | |B | | | | | |05520 05573| +600754 |V0754 Ori *|053434.5-044111 |UVN | 16.1 | 17.1 | |U | | | | | |05573 05573| +600755 |V0755 Ori *|053429.1-063853 |UVN | 15.7 | 17.3 | |U | | | | | |05575 05573| +600756 |V0756 Ori *|053433.9-055638 |UVN | 14.9 | 18.4 | |U | | | | | |05573 05573| +600757 |V0757 Ori *|053431.6-064325 |UVN | 16.2 | 18.40 | |B | | | | | |04073 03937| +600758 |V0758 Ori *|053439.7-050306 |UVN | | 17.5 | |V | | | | | |05520 05573| +600759 |V0759 Ori *|053436.5-053617 |INS | 14.8 | 17.3 | |B | | | | |ea |05576 00861| +600760 |V0760 Ori *|053434.2-060210 |UVN | 15.7 | 17.72 | |B | | | | | |03924 05573| +600761 |V0761 Ori *|053431.9-062252 |UVN | 16.2 | 18.2 | |B | | | | | |09480 05573| +600762 |V0762 Ori *|053441.9-044822 |UVN | 14.2 | 15.9 | |U | | | | | |05573 05573| +600763 |V0763 Ori *|053446.8-045744 |UVN | 14.0 | 18.0 | |B | | | | | |05520 05573| +600764 |V0764 Ori *|053441.5-054756 |UVN | 15.2 | 17.2 | |B | | | | | |05520 00861| +600765 |V0765 Ori *|053443.4-061704 |UVN | 15.3 | 18.5 | |U | | | | |ea |05573 05573| +600766 |V0766 Ori *|053438.9-062524 |UVN | 14.7 | 17.2 | |B | | | | |ea |05520 05573| +600767 |V0767 Ori *|053439.1-062722 |UVN | | 17.42 | |B | | | | | |03924 05573| +600768 |V0768 Ori *|053445.5-050209 |UVN | 14.9 | 17.5 | |B | | | | | |03924 05573| +600769 |V0769 Ori |053535.1+133636 |SR: | 14. | 15. | |p | | | | | |05515 05515| +600770 |V0770 Ori *|053445.8-054344 |INS | 15.5 : | 17.8 | |B | | | | | |03924 05573| +600771 |V0771 Ori *|053445.7-062141 |UVN | 15.5 | 16.8 | |U | | | | | |05573 05573| +600772 |V0772 Ori *|053448.8-052318 |UVN: | 14.4 |< 16.0 | |p | | | | | |05576 05576| +600773 |V0773 Ori *|053450.6-043533 |UVN | 13.5 | 16.3 | |U | | | | |ea |05573 02849| +600774 |V0774 Ori *|053447.5-054630 |UVN | 13.9 | 17.2 | |B | | | | |ea |09482 05573| +600775 |V0775 Ori *|053445.1-062109 |UVN | 16.1 | 17.6 | |B | | | | | |05520 05573| +600776 |V0776 Ori *|053450.9-054221 |UVN | 12.8 | 14.1 | |p | | | | | |04084 05573| +600777 |V0777 Ori *|053454.9-042725 |UVN | 15.8 | 20.2 | |U | | | | | |05573 05573| +600778 |V0778 Ori *|053458.3-025901 |UVN | | 14.1 | |V | | | | | |03924 05573| +600779 |V0779 Ori *|053459.8-043505 |UVN | 18.0 | 19.5 | |V | | | | | |03924 05573| +600780 |V0780 Ori *|053458.2-050928 |UVN | | 16.12 | |V | | | | | |03924 05573| +600781 |V0781 Ori *|053452.5-061157 |UVN | 15.7 | 17.7 | |B | | | | | |03924 05573| +600782 |V0782 Ori *|053450.3-062649 |UVN | 17.0 | 17.9 | |p | | | | | |03924 09482| +600783 |V0783 Ori *|053502.0-043835 |UVN | | 18.4 | |V | | | | | |03924 05573| +600784 |V0784 Ori *|053458.0-055322 |UVN | 15.0 | 18.4 | |U | | | | | |05573 05573| +600785 |V0785 Ori *|053456.9-064556 |UVN | 16.4 | 17.9 | |U | | | | | |05573 05573| +600786 |V0786 Ori *|053502.5-053310 |INS | 15.2 | 16.6 | |p | | | | | |05576 05576| +600787 |V0787 Ori *|053501.4-055555 |UVN | 15.86 | 18.5 | |U | | | | | |05520 05573| +600788 |V0788 Ori *|053502.9-060525 |UVN | 12.0 : | 17.4 | |B | | | | | |05520 05573| +600789 |V0789 Ori *|053501.9-063013 |UVN | 13.4 | 16.6 | |B | | | | | |09480 05573| +600790 |V0790 Ori *|053508.7-060503 |UVN | 15.0 | 16.4 | |U | | | | | |05573 05573| +600791 |V0791 Ori *|053516.5-050330 |UVN | 16.1 | 17.6 | |B | | | | | |05520 05573| +600792 |V0792 Ori *|053514.8-071807 |UVN | 15.1 | 16.1 | |B | | | | | |05520 05573| +600793 |V0793 Ori *|053518.0-054938 |UVN | 16.3 | 18.0 | |U | | | | |ea |05573 05573| +600794 |V0794 Ori *|053517.8-062438 |INS | 15.4 | 16.3 | |p | | | | | |03937 04073| +600795 |V0795 Ori *|053517.3-063246 |UVN | 15.5 : | 17.2 | |B | | | | | |03924 05573| +600796 |V0796 Ori *|053521.3-065624 |IN | 15.5 | 16.4 | |I | | | | | |03937 03937| +600797 |V0797 Ori *|053532.5-042003 |UVN | 15.5 | 16.3 | |U | | | | | |05573 05573| +600798 |V0798 Ori *|053527.9-061415 |INS | 15.2 |< 17.2 | |p | | | | | |03937 03937| +600799 |V0799 Ori *|053527.2-061942 |INS | 15.6 | 16.9 | |p | | | | | |03937 04073| +600800 |V0800 Ori *|053530.2-061206 |UVN | 16.0 | 18.6 | |U | | | | | |03924 05573| +600801 |V0801 Ori *|053526.8-062648 |UVN | 16.1 | 16.6 | |B | | | | | |05520 05573| +600802 |V0802 Ori *|053533.6-061825 |UVN | 15.6 | 18.0 | |B | | | | | |03937 05573| +600803 |V0803 Ori *|053534.9-052915 |UVN | 14.0 |< 16.8 | |p | | | | | |05576 05603| +600804 |V0804 Ori *|053533.8-053821 |UVN | 16.42 | 17.3 | |V | | | | | |03924 05573| +600805 |V0805 Ori *|053536.8-061631 |UVN | 13.7 | 17.6 | |U | | | | | |09516 05573| +600806 |V0806 Ori *|053534.3-071656 |UVN | 12.7 | 15.3 | |B | | | | | |08778 05573| +600807 |V0807 Ori *|053538.1-061153 |UVN | | 19.5 | |V | | | | | |05520 05573| +600808 |V0808 Ori *|053546.1-051052 |INS | 15.5 | 18.2 | |V | | | | | |04073 05573| +600809 |V0809 Ori |053621.2+092929 |M | 14.5 |< 17.5 | |p |39520. :| | | | |05515 05515| +600810 |V0810 Ori *|053543.4-062220 |IN | 15.5 | 16.5 | |I | | | | | |03937 03937| +600811 |V0811 Ori *|053545.9-062559 |IN | 15.8 | 16.8 | |I | | | | | |03937 03937| +600812 |V0812 Ori *|053548.1-055357 |INS | 16.5 | 17.5 | |B | | | | | |03924 05573| +600813 |V0813 Ori *|053550.6-063317 |UVN | 17.1 | 17.8 | |B | | | | | |03924 05573| +600814 |V0814 Ori *|053547.7-062136 |IN | 15.5 | 17.3 | |B | | | | | |03937 03937| +600815 |V0815 Ori *|053552.6-050506 |INSB | 12.30 | 13.4 | |B | | | | |G2IVe:-K2-5V |05576 00861| +600816 |V0816 Ori *|053556.2-055229 |UVN | 15.0 : | 17.34 | |B | | | | | |03924 05573| +600817 |V0817 Ori *|053553.1-055948 |UVN | 14.5 : | 17.64 | |B | | | | | |05520 05573| +600818 |V0818 Ori *|053557.3-061538 |UVN | 16.5 | 17.0 | |B | | | | | |05574 USNO | +600819 |V0819 Ori *|053559.8-064231 |IN | 15.6 |< 17.4 | |p | | | | | |03937 03937| +600820 |V0820 Ori *|053608.4-042852 |INS | 17.0 | 17.99 | |B | | | | | |04073 04073| +600821 |V0821 Ori *|053609.0-054448 |UVN | 15.4 | 17.9 | |B | | | | | |03924 05573| +600822 |V0822 Ori *|053605.2-062525 |UVN | 15.0 | 16.8 | |p | | | | | |05603 05603| +600823 |V0823 Ori *|053606.7-063217 |INS: | 16.5 |< 17.8 | |p | | | | | |03937 04073| +600824 |V0824 Ori *|053611.9-051555 |UVN | 14.5 : | 17.72 | |B | | | | |ea |05520 05573| +600825 |V0825 Ori *|053609.5-061836 |UVN | 14.2 | 16.4 | |B | | | | | |05574 USNO | +600826 |V0826 Ori *|053609.3-053639 |UVN | 16.2 | 17.7 | |B | | | | | |03924 05573| +600827 |V0827 Ori *|053614.7-053735 |UVN | 14.9 | 16.4 | |B | | | | | |03924 05573| +600828 |V0828 Ori *|053614.9-051534 |UVN | 13.5 | 17.5 | |B | | | | | |05520 05573| +600829 |V0829 Ori *|053620.0-042115 |UVN | 15.5 | 18.8 | |U | | | | | |05573 05573| +600830 |V0830 Ori *|053617.7-062836 |UVN | 16.6 | 18.4 | |U | | | | | |05573 05573| +600831 |V0831 Ori *|053607.1-065712 |UVN | 15.3 | 17.85 | |B | | | | | |03924 05573| +600832 |V0832 Ori *|053618.5-062039 |INS | 14.5 | 16.6 | |p | | | | | |03937 03937| +600833 |V0833 Ori *|053624.5-050709 |UVN | 14.0 : | 18.3 | |U | | | | |ea |05520 05573| +600834 |V0834 Ori *|053628.9-051444 |UVN | 14.5 : | 17.7 | |B | | | | | |05520 05573| +600835 |V0835 Ori *|053632.3-042713 |UVN | 14.9 | 17.6 | |U | | | | | |05573 05573| +600836 |V0836 Ori *|053629.3-045351 |UVN | | 17.1 | |V | | | | | |03924 05573| +600837 |V0837 Ori *|053626.5-060616 |UVN | | 18.9 | |V | | | | | |03924 05573| +600838 |V0838 Ori *|053628.1-064432 |IN | 16.6 | 17.3 | |p | | | | | |03937 03937| +600839 |V0839 Ori *|053620.6-070532 |UVN | 15.3 | 17.3 | |B | | | | |ea |05520 05573| +600840 |V0840 Ori *|053625.7-074723 |UVN | | 15.5 | |V | | | | | |03924 05573| +600841 |V0841 Ori *|053640.8-042120 |UVN | 16.0 | 18.5 | |U | | | | | |05573 05573| +600842 |V0842 Ori *|053636.3-053634 |UVN | 13.5 | 18.7 | |U | | | | |Ke: |05573 05573| +600843 |V0843 Ori *|053637.3-054848 |UVN | 16.0 : | 18.0 | |B | | | | | |03924 05573| +600844 |V0844 Ori *|053632.4-064043 |UVN | 15.7 | 17.9 | |V | | | | | |05520 05573| +600845 |V0845 Ori *|053640.7-065205 |UVN | 12.5 | 17.5 | |B | | | | | |05520 05573| +600846 |V0846 Ori *|053641.4-063400 |INS | 15.3 | 17.4 | |p | | | | |ea |03937 05603| +600847 |V0847 Ori *|053643.8-061528 |UVN | 15.6 | 18.6 | |U | | | | | |05573 05573| +600848 |V0848 Ori *|053648.3-052256 |UVN | 16.3 | 17.7 | |B | | | | | |05574 USNO | +600849 |V0849 Ori *|053649.5-044950 |UVN | 15.9 | 17.4 | |B | | | | | |05520 05573| +600850 |V0850 Ori *|053649.7-050409 |UVN | 16.2 | 17.9 | |p | | | | | |03924 05573| +600851 |V0851 Ori *|053644.8-064428 |UVN | 14.0 : | 18.05 | |B | | | | | |05520 05573| +600852 |V0852 Ori *|053651.9-050836 |UVN | 14.8 | 17.2 | |B | | | | |ea |03924 05573| +600853 |V0853 Ori *|053651.6-051330 |UVN | 14.0 | 14.69 | |B | | | | |K1: |05520 05573| +600854 |V0854 Ori *|053653.1-045948 |UVN | 15.4 | 16.37 | |B | | | | |M2 |03924 05573| +600855 |V0855 Ori *|053653.3-063500 |UVN | | 17.87 | |V | | | | | |03924 05573| +600856 |V0856 Ori *|053656.7-062026 |UVN | 16.7 | 18.2 | |U | | | | | |05573 05573| +600857 |V0857 Ori *|053700.9-063311 |UVN | | 19.7 | |V | | | | | |03924 05573| +600858 |V0858 Ori *|053705.8-044721 |UVN | 14.0 | 19.1 | |B | | | | | |05574 05603| +600859 |V0859 Ori *|053708.7-043824 |UVN | 17.6 : | 18.08 | |B | | | | | |05520 05573| +600860 |V0860 Ori *|053704.9-053713 |UVN | 16.1 | 17.7 | |B | | | | | |03924 05573| +600861 |V0861 Ori *|053715.9-043749 |UVN | 16.2 | 17.06 | |B | | | | | |03924 05573| +600862 |V0862 Ori *|053710.0-044418 |UVN | 15.0 | 19.5 | |U | | | | | |09516 05573| +600863 |V0863 Ori *|053709.9-064546 |UVN | 15.8 | 17.9 | |B | | | | | |05603 05573| +600864 |V0864 Ori *|053710.9-063015 |UVN | 16.3 | 18. | |p | | | | | |04073 04073| +600865 |V0865 Ori *|053710.6-063528 |UVN | 16.3 | 17.3 | |U | | | | | |05573 05573| +600866 |V0866 Ori *|053713.9-061814 |UVN | 14.8 | 19.0 | |U | | | | |M |05573 05573| +600867 |V0867 Ori *|053730.6-033226 |UVN | | 18.0 | |V | | | | | |03924 05573| +600868 |V0868 Ori *|053714.8-071207 |INS: | 16.9 |< 17.5 | |p | | | | | |05577 05577| +600869 |V0869 Ori *|053714.0-070341 |INS | 15.4 | 17.5 | |p | | | | | |03937 04073| +600870 |V0870 Ori *|053724.7-050435 |UVN | 14.5 | 15.8 | |U | | | | | |05573 05573| +600871 |V0871 Ori *|053717.5-061248 |UVN | 15.3 | 18.8 | |U | | | | | |05573 05573| +600872 |V0872 Ori *|053727.0-053104 |UVN | 16.3 | 19.0 | |U | | | | | |05573 05573| +600873 |V0873 Ori *|053741.3-041437 |UVN | 14.0 : | 18.20 | |B | | | | | |03924 05573| +600874 |V0874 Ori *|053736.7-070304 |UVN | 14.5 | 17.5 | |U | | | | |ea |05573 05573| +600875 |V0875 Ori *|053737.0-072417 |INS: | 14.9 | 16.2 | |I | | | | | |05577 05577| +600876 |V0876 Ori *|053740.5-061753 |INS: | 14.0 | 15.4 | |p | | | | | |03937 04073| +600877 |V0877 Ori *|053803.0-061930 |UVN | 16.0 | 17.4 | |B | | | | | |03924 05573| +600878 |V0878 Ori *|053805.0-071611 |INS | 16.5 | 17.2 | |p | | | | |ea |05577 05577| +600879 |V0879 Ori *|053806.1-062951 |INS | 16.4 |< 18. | |p | | | | | |03937 04073| +600880 |V0880 Ori *|053814.7-050550 |UVN | 14.8 | 17.8 | |U | | | | | |03924 05573| +600881 |V0881 Ori *|053810.6-062208 |INS | 15.6 | 17.5 | |p | | | | | |03937 04073| +600882 |V0882 Ori *|053818.0-050502 |UVN | 13.9 | 16.3 | |U | | | | |M0: |05573 05573| +600883 |V0883 Ori *|053818.1-070226 |IN | 14.8 | 15.6 | |I | | | | |cont |05577 02849| +600884 |V0884 Ori *|053823.9-070739 |IN | 15.4 | 16.9 | |p | | | | | |05577 05577| +600885 |V0885 Ori *| | | | | | | | | | | | |=V0884 Ori +600886 |V0886 Ori *|053839.5-053819 |UVN | | 17.9 | |V | | | | | |03924 05573| +600887 |V0887 Ori | | | | | | | | | | | | |=V0596 Ori +600888 |V0888 Ori *|053906.1-044250 |UVN | 15.5 |< 18.0 | |B | | | | | |05574 USNO | +600889 |V0889 Ori *|053912.9-064922 |UVN | 14.3 | 17.3 | |B | | | | | |05520 05573| +600890 |V0890 Ori *|053927.1-035703 |UVN | 14.8 | 16.8 | |B | | | | | |05520 05573| +600891 |V0891 Ori *|053930.4-042606 |UVN | 12.8 | 16.7 | |B | | | | | |05520 05573| +600892 |V0892 Ori *|053932.3-072222 |IN | 16.7 | 17.2 | |p | | | | | |05577 05577| +600893 |V0893 Ori *|053939.7-052737 |UVN | | 17.3 | |V | | | | | |03924 05573| +600894 |V0894 Ori *|053951.8-034650 |UVN | 15.8 | 17.6 | |B | | | | | |05574 USNO | +600895 |V0895 Ori *|053949.8-045513 |UVN | 16.4 | 18.4 | |U | | | | | |05573 05573| +600896 |V0896 Ori *|053946.7-062454 |UVN | 14.6 | 16.6 | |B | | | | | |05520 05573| +600897 |V0897 Ori *|054006.2-062820 |UVN | 15.0 | 21.0 | |U | | | | | |05573 05573| +600898 |V0898 Ori *|054025.7-070537 |IN | 16.2 | 17.2 | |p | | | | | |05577 05577| +600899 |V0899 Ori *|054025.3-061545 |UVN | 15.5 | 17.8 | |U | | | | | |05573 05573| +600900 |V0900 Ori *|054037.4-032603 |UVN | | 18.1 | |V | | | | | |03924 05573| +600901 |V0901 Ori *|054056.4-013026 |SXARI | 6.97 | 7.02 | |V |42808.59 | | 1.5385 | |B2Vp |08054 08043| +600902 |V0902 Ori *|054045.1-072225 |IN | 15.7 | 16.6 | |p | | | | | |05577 05577| +600903 |V0903 Ori |054227.9+102436 |LB | 15.5 | 16.5 | |p | | | | | |05515 05515| +600904 |V0904 Ori *|054157.1-055638 |UVN | 11.7 | 14.7 | |B | | | | | |05520 05573| +600905 |V0905 Ori *|054205.8-052546 |UVN | 13.5 : | 17.7 | |B | | | | | |05520 05573| +600906 |V0906 Ori *|054217.7-053725 |UVN | 16.0 |< 20.0 | |U | | | | | |05573 05573| +600907 |V0907 Ori *|054214.4-071005 |UVN | 16.5 | 20.0 | |U | | | | | |05573 05573| +600908 |V0908 Ori *|054245.9-054949 |UVN | 15.0 | 16.3 | |B | | | | | |05603 05603| +600909 |V0909 Ori *|054255.8-071837 |UVN | 13.8 | 16.4 | |U | | | | |M3e |09516 05573| +600910 |V0910 Ori |054747.1+075314 |UV | 15.5 | 19. | |p | | | | | |05515 05515| +600911 |V0911 Ori |054830.9+082707 |M: | 16. |< 17.5 | |p |39535. :| | | | |05515 05515| +600912 |V0912 Ori |054845.4+101711 |EA | 15.5 | 17.5 | |p |38372.485 | | | | |05515 05515| +600913 |V0913 Ori |055515.6+150933 |RR: | 15.5 | 16.5 | |p |31446.50 | | | | |05515 05515| +600914 |V0914 Ori |060019.1+154531 |EA | 14. | 16. | |p |31518.38 | | | | |05515 05515| +600915 |V0915 Ori |060113.9+163324 |LB | 12. | 13. | |p | | | | | |05515 05515| +600916 |V0916 Ori *|060818.1+135818 |BCEP | 8.11 | 8.13 | |B | | | 0.39912 : | |B2.5V |05522 07525| +600917 |V0917 Ori *|060827.4+135551 |BCEP | 8.77 | 8.90 | |V | | | 0.4033 | |B3Vn |05522 BD | +600918 |V0918 Ori *|052641.6-050219 |UVN | 15.1 | 18. : | |p | | | | | |05603 05603| +600919 |V0919 Ori *|052653.1-055905 |UVN | 15.2 | 18.0 | |p | | | | | |05603 05603| +600920 |V0920 Ori *|052750.3-042040 |UVN | 15.2 | 18. | |p | | | | | |05603 05603| +600921 |V0921 Ori *|052855.7-044145 |UVN | 13.6 | 17.2 | |B | | | | | |05603 05603| +600922 |V0922 Ori *|052925.4-063302 |UVN | 13.5 | 18. : | |p | | | | | |05603 05603| +600923 |V0923 Ori *|052947.3-070410 |UVN | 16.6 | 17.8 | |p | | | | | |05603 05603| +600924 |V0924 Ori *|053123.6-043708 |UVN | 14.8 | 16.9 | |B | | | | | |05603 05603| +600925 |V0925 Ori |053226.0+075602 |EA | 15.5 | 16.5 | |p |40187.53 | | | | |05884 05884| +600926 |V0926 Ori *|053242.7-045932 |UVN | 15.4 | 16.3 | |B | | | | | |05603 05603| +600927 |V0927 Ori *|053305.5-045713 |UVN | 15.4 | 17.4 | |B | | | | | |05603 05603| +600928 |V0928 Ori *|053308.3-051921 |UVN | 15.0 | 17.5 | |p | | | | | |05603 05603| +600929 |V0929 Ori *|053323.0-044101 |UVN | 15.0 | 18.5 | |p | | | | | |05603 05603| +600930 |V0930 Ori *|053418.7-034631 |UVN | 15.3 | 17.5 | |B | | | | | |05603 05603| +600931 |V0931 Ori *|053408.0-040717 |INS | 15.1 |< 18.5 | |p | | | | | |05603 05603| +600932 |V0932 Ori *|053423.1-043557 |UVN | 15.3 | 17.5 | |B | | | | | |05603 05603| +600933 |V0933 Ori *|053419.9-061848 |UVN | 15.1 |< 18.5 | |p | | | | | |05603 05603| +600934 |V0934 Ori *|053428.1-055909 |UVN | 15.9 | 17.2 | |p | | | | | |05603 05603| +600935 |V0935 Ori *|053429.6-054725 |UVN | 15.3 | 17.5 | |B | | | | | |05603 05603| +600936 |V0936 Ori |053446.9-002613 |UVN | 14.3 | 17.5 | |p | | | | | |05603 05603| +600937 |V0937 Ori *|053434.7-060828 |UVN | 14.8 |< 18.5 | |p | | | | | |05603 05603| +600938 |V0938 Ori *|053438.7-060620 |UVN | 14.0 | 15.8 | |B | | | | | |05603 05603| +600939 |V0939 Ori *|053445.6-043608 |UVN | 14.5 | 15.9 | |B | | | | | |05603 05603| +600940 |V0940 Ori |053501.3-014519 |UVN | 15.0 | 17.8 | |p | | | | | |05603 05603| +600941 |V0941 Ori *|053525.3-033330 |UVN | 14.6 | 17.4 | |B | | | | | |05603 05603| +600942 |V0942 Ori *|053520.5-064726 |UVN | 15.1 | 17.4 | |B | | | | | |05603 05603| +600943 |V0943 Ori *|053531.0-070208 |UVN | 15.5 | 17.6 | |B | | | | | |05603 05603| +600944 |V0944 Ori |053611.4+102924 |RRAB | 15.5 | 17. | |p |40187.53 | | | | |05884 05884| +600945 |V0945 Ori *|053534.2-063943 |UVN | 15.6 | 17.8 | |B | | | | | |05603 05603| +600946 |V0946 Ori *|053549.4-052940 |UVN | 15.2 |< 16.5 | |p | | | | | |05603 05603| +600947 |V0947 Ori *|053549.5-053527 |INS | 15.3 | 16.8 | |B | | | | | |05603 05603| +600948 |V0948 Ori *|053548.3-061759 |UVN | 15.3 | 17.8 : | |p | | | | | |05603 05603| +600949 |V0949 Ori *|053556.8-044139 |UVN | 15.1 |< 17.8 | |p | | | | | |05603 05603| +600950 |V0950 Ori *|053602.2-041840 |UVN | 15.6 | 17.5 | |B | | | | | |05603 05603| +600951 |V0951 Ori *|053627.5-053055 |INST | 15.0 | 17.5 | |p | | | | |M2e(T) |05603 05603| +600952 |V0952 Ori *|053632.8-063955 |UVN | 15.8 | 16.8 | |B | | | | | |05603 05603| +600953 |V0953 Ori *|053711.0-025117 |UVN | 14.5 |< 18. | |p | | | | | |05603 05603| +600954 |V0954 Ori |053759.1-004614 |UVN | 15.0 | 16.7 | |p | | | | | |05603 05603| +600955 |V0955 Ori |053838.2-034624 |UVN | 15.5 | 16.4 | |B | | | | | |05603 05603| +600956 |V0956 Ori *|053914.5-021937 |UVN | 14.8 | 16.7 | |p | | | | | |05603 05603| +600957 |V0957 Ori *|053931.6-024909 |UVN | 15.6 | 18. : | |p | | | | | |05603 05603| +600958 |V0958 Ori *|054041.4-063030 |UVN | 14.3 | 15.49 | |B | | | | | |05603 05603| +600959 |V0959 Ori |054200.7+114758 |E | 16. | 16.5 | |p |40187.53 | | | | |05884 05884| +600960 |V0960 Ori *|054137.0-013952 |UVN | 15. | 17.5 | |p | | | | | |05603 05603| +600961 |V0961 Ori *|054251.8-051909 |UVN | 16.0 | 16.9 | |p | | | | | |05603 05603| +600962 |V0962 Ori |054345.6+080857 |EA/SD: | 14. | 15. | |p |40269.22 | | 1.89367 | | |09500 05884| +600963 |V0963 Ori |061916.9+203448 |BCEP: | 8.47 : | 8.50 | |V | | | 0.2 : | |B2Ibpea |05838 BD | +600964 |V0964 Ori *|050754.5-020849 |RRAB | 11.5 | 13. | |p |31500.138 | | 0.5046561 |20 |A0 |05734 00132| +600965 |V0965 Ori |052717.4-041200 |UVN | 16.9 | 18.1 | |p | | | | | |09482 09482| +600966 |V0966 Ori *|052902.4-053933 |UVN | 16.0 | 17.0 | |B | | | | | |09482 09482| +600967 |V0967 Ori *|053006.8-065812 |UVN | 16.5 | 17.8 | |B | | | | | |09482 09482| +600968 |V0968 Ori *|053100.6-054207 |UVN | 16.2 | 17.8 | |B | | | | | |09482 09482| +600969 |V0969 Ori *|053106.0-040424 |UVN | 16.1 | 16.8 | |B | | | | | |09482 09482| +600970 |V0970 Ori *|053125.9-050516 |UVN | 16.5 | 17.7 | |B | | | | | |09482 09482| +600971 |V0971 Ori *|053130.6-042450 |UVN | 16.8 | 17.5 | |p | | | | | |09482 09482| +600972 |V0972 Ori *|053155.1-042253 |UVN | 14.6 | 17.9 | |B | | | | | |09482 09482| +600973 |V0973 Ori *|053205.1-042917 |UVN | 15.3 | 16.7 | |B | | | | | |09482 09482| +600974 |V0974 Ori *|053243.0-035758 |UVN | 16.0 | 17.0 | |B | | | | | |09482 09482| +600975 |V0975 Ori *|053353.4-061710 |UVN | 15.5 | 18.9 | |p | | | | | |09482 09482| +600976 |V0976 Ori *|053428.5-052458 |UVN | 13.7 | 15.3 | |p | | | | | |09482 09482| +600977 |V0977 Ori *|053403.6-045721 |UVN | 15.7 | 21.0 | |p | | | | | |09482 09482| +600978 |V0978 Ori *|053425.2-044511 |UVN | 15.8 | 18.1 | |p | | | | | |09482 09482| +600979 |V0979 Ori *|053437.8-041928 |UVN | 15.8 | 20.5 | |p | | | | | |09482 09482| +600980 |V0980 Ori *|053438.0-054109 |IN | 14.9 | 15.3 | |p | | | | |ea |04936 00861| +600981 |V0981 Ori *|053439.7-060713 |UVN | 15.9 | 17.6 | |B | | | | | |09482 09482| +600982 |V0982 Ori *|053506.5-053335 |IN | 15.0 | 17.4 | |B | | | | |ea |05576 01698| +600983 |V0983 Ori *|053524.3-042205 |UVN | 16.6 | 17.9 | |p | | | | | |09482 09482| +600984 |V0984 Ori *|053531.3-055834 |UVN | 14.5 | 17.0 | |p | | | | | |09482 09482| +600985 |V0985 Ori *|053529.3-071016 |UVN | 16.9 | 22.0 : | |p | | | | | |09482 09482| +600986 |V0986 Ori *|053536.1-070905 |UVN | 15.4 | 16.7 | |p | | | | | |09482 09482| +600987 |V0987 Ori *|053546.8-041833 |UVN | 15.4 | 17.1 | |B | | | | | |09482 09482| +600988 |V0988 Ori *|053547.2-062910 |UVN | 14.6 | 17.5 | |B | | | | | |09482 09482| +600989 |V0989 Ori *|053549.1-064103 |UVN | 14.5 | 17.8 | |B | | | | | |09482 09482| +600990 |V0990 Ori *|053626.7-062629 |UVN | 15.5 | 16.9 | |p | | | | | |09482 09482| +600991 |V0991 Ori *|053647.6-060820 |UVN | 16.3 | 18.1 | |p | | | | | |09482 09482| +600992 |V0992 Ori *|053725.5-054307 |UVN | 14.6 | 17.7 | |V | | | | | |09501 09482| +600993 |V0993 Ori |053758.9-010553 |IN: | 13.8 | 15.0 | |p | | | | | |04663 GSC | +600994 |V0994 Ori *|053825.9-065951 |UVN | 16.2 | 18.0 | |p | | | | | |09482 09482| +600995 |V0995 Ori *|054009.8-070954 |UVN | 15.9 | 18.7 | |p | | | | | |09482 09482| +600996 |V0996 Ori *|054234.2-064027 |UVN | 16.2 | 17.1 | |p | | | | | |09482 09482| +600997 |V0997 Ori *|054401.0-053646 |UVN | 15.9 | 16.6 | |p | | | | | |09482 09482| +600998 |V0998 Ori *|053214.7+094915 |UV | 12.6 | 13.12 | |B | | | | |M4Ve |06872 05288| +600999 |V0999 Ori *|053336.0-055255 |INS | 14.7 | 17.1 | |B | | | | | |06369 00861| +601000 |V1000 Ori *|053437.7-054305 |UVN | 14.3 | 17.6 | |p | | | | |ea |08778 08778| +601001 |V1001 Ori *|053548.8-061207 |IN: | 13.6 | 13.8 | |V | | | | |ea |07145 02849| +601002 |V1002 Ori *|053825.5-064758 |INS | 15.8 | 17.5 | |B | | | | |ea |04422 04422| +601003 |V1003 Ori *|054956.9+064653 |UV | 14.5 | 17.63 | |B | | | | | |06874 06874| +601004 |V1004 Ori *|055824.4+015014 |DSCTC | 5.88 | 5.92 | |V | | | 0.0611 | |A5m |08679 BD | +601005 |V1005 Ori *|045934.8+014701 |BY+UV | 9.96 | 10.17 | |V |44521.37 | | 4.565 |50 |M0.5Ve |09503 05288| +601006 |V1006 Ori *|053345.4-060427 |INT | 12.77 | 15.0 | |V | | | | |M0e(T) |06371 00861| +601007 |V1007 Ori *|053522.8-042851 |INT | 15.0 | 16.5 | |p | | | | |M0.5e(T) |04073 00861| +601008 |V1008 Ori |045706.2-014715 |L | 13. | 15.5 | |p | | | | | |01217 01217| +601009 |V1009 Ori |050534.5-023807 |SRB: | 14.5 | 16.5 | |p | | | | | |01375 01217| +601010 |V1010 Ori |050635.2-030112 |EA | 15. | 16. | |p | | | | | |01375 02345| +601011 |V1011 Ori |051010.9-025405 |L | 13. | 14. | |p | | | | | |01375 02346| +601012 |V1012 Ori |051136.5-022249 |IS: | 12.5 | 16.5 : | |p | | | | | |01217 01217| +601013 |V1013 Ori |051737.1+055948 |EA: | 16.0 |< 17.3 | |p |31362.595 | | | | |02279 02356| +601014 |V1014 Ori |052302.8-063046 |LB | 13. | 14. | |p | | | | | |01375 02346| +601015 |V1015 Ori |052854.2+053928 |RR: | 14. | 15. | |p | | | | | |03905 03905| +601016 |V1016 Ori *|053515.8-052314 |EA | 6.72 | 7.65 | |V |43144.600 | | 65.43233 |01 |B0.5Vp |09522 00861| +601017 |V1017 Ori *|053524.6-051910 |IN | 15.8 |< 16.8 | |p | | | | | |05576 04073| +601018 |V1018 Ori *|053549.0-050139 |IN | 16.5 | 17.8 | |B | | | | |ea |02849 02849| +601019 |V1019 Ori *|053631.5-064113 |UVN | 15.5 | 17.6 | |B | | | | | |05603 05603| +601020 |V1020 Ori *|053707.6-055254 |IN | 13.5 | 14.7 | |V | | | | |ea |02849 02849| +601021 |V1021 Ori |053841.7+091434 |RR: | 15.5 | 17. | |p | | | | | |03905 03905| +601022 |V1022 Ori *|054323.2+090532 |IS | 13.9 | 15.2 | |p | | | | | |09500 02351| +601023 |V1023 Ori |054859.1+083520 |EA | 15.5 | 16. | |p |38356.47 | | | | |03905 03905| +601024 |V1024 Ori |060603.5+061914 |LB: | 11.7 | 12.5 | |p | | | | |M6 |03467 00196| +601025 |V1025 Ori |060739.1+151649 |E | 13.6 | 14.3 | |p |30369.348 | | | | |07010 04065| +601026 |V1026 Ori |061621.7+095355 |LB: | 13.5 | 16.5 | |p | | | | |C |00386 00531| +601027 |V1027 Ori |061203.8+145602 |EA | 10.5 | 11. | |p |26735.386 | | | |G5 |00196 03467| +601028 |V1028 Ori *|062204.2+105341 |EB | 9.69 | 9.94 | |V | | | 3. | |B2IV |07903 BD | +601029 |V1029 Ori *|053830.2-040246 |INS: | 14.6 | 17.1 | |p | | | | |ea |04076 04927| +601030 |V1030 Ori *|053847.2-023541 |SXARI | 6.61 | 6.77 | 6.71 |V |42778.819 | | 1.19080 | |B3Vp(He+)ea |09524 08043| +601031 |V1031 Ori *|054726.9-103159 |EA/DM | 6.02 | 6.43 | 6.32 |V |42688.8732 | | 3.4057 |01 |A4V |08476 BD | +601032 |V1032 Ori |050434.1+152415 |ACV | 4.65 | 4.69 | |V |43864.78 | | 4.6398 |50 |B9p(Si) |04013 BD | +601033 |V1033 Ori |051108.9+145005 |LB | 13.9 | 14.2 | |B | | | | |C(N) |08422 08422| +601034 |V1034 Ori *|051203.0+145237 |SRA | 14.2 | 14.9 | |B |41235. | | 320. |40 |N |08422 08422| +601035 |V1035 Ori *|052706.3-062337 |UVN | 15.8 | 19.2 | |p | | | | | |08425 USNO | +601036 |V1036 Ori *|052757.3-045952 |UVN | 16.1 | 19.8 : | |p | | | | | |09482 09482| +601037 |V1037 Ori *|052758.9-054028 |UVN | 17.2 | 18.0 | |p | | | | | |08425 USNO | +601038 |V1038 Ori *|053135.4-071055 |UVN | 13.5 | 18.7 | |U | | | | | |08430 USNO | +601039 |V1039 Ori *|053242.9-063638 |UVN | 16.5 | 18.7 | |p | | | | | |08425 USNO | +601040 |V1040 Ori *|053313.5-045133 |UVN | 15.2 | 17.2 | |p | | | | | |09482 09482| +601041 |V1041 Ori *|053328.2-050447 |UVN | 15.8 | 19.6 : | |p | | | | | |09482 09482| +601042 |V1042 Ori *|053342.9-045543 |UVN | 14.5 | 18.3 | |p | | | | | |09482 09482| +601043 |V1043 Ori *|053408.9-050142 |UVN | 15.4 | 17.5 | |p | | | | | |09482 09482| +601044 |V1044 Ori *|053416.5-053646 |INB | 11.46 | 11.53 | |V | | | | |G5-G7IVea |08436 00861| +601045 |V1045 Ori *|053454.0-040638 |ACV | 6.73 |( 0.045 )| |V |43470.63 | | 1.564 |40 |B9IVp(Si-Mn) |04013 00861| +601046 |V1046 Ori *|053521.9-042939 |E:+SXARI | 6.54 | 6.58 | 6.58 |V |43495.091 | | 0.94629 | |B2Vp(He+) |04134 00861| +601047 |V1047 Ori *|053537.4-035107 |UVN | 15.2 | 16.2 | |p | | | | | |09482 09482| +601048 |V1048 Ori *|053624.8-042909 |UVN | 15.5 | 16.2 | |p | | | | | |08425 USNO | +601049 |V1049 Ori *|053637.8-034345 |UVN | 15.5 | 19.0 | |U | | | | | |08425 USNO | +601050 |V1050 Ori *|053744.2-052931 |UVN | 15.5 | 18.7 | |p | | | | | |08425 USNO | +601051 |V1051 Ori |054046.2-102431 |ACV | 6.52 |( 0.02 )| |V |41728.18 | | 1.099 |55 |B9.5IIIp(Si) |04136 BD | +601052 |V1052 Ori *|054205.1-051108 |UV | 14.0 |< 21.0 | |U | | | | | |08425 USNO | +601053 |V1053 Ori *|054342.8-045420 |UVN | 13.5 |< 20.0 | |U | | | | | |08430 USNO | +601054 |V1054 Ori *|054825.5-004535 |ACV | 7.32 | 7.35 | |V |44202.159 | | 8.635 | |F0p(Sr-Eu) |08934 BD | +601055 |V1055 Ori *|061707.4+090813 |XBI | 18.8 | 19.8 | |B | | | | |e |08329 04140| +601056 |V1056 Ori *|062048.3+054426 |LC | 7.93 | 8.19 | |V | | | | |M3Ib-II |02556 BD | +601057 |V1057 Ori |051804.1+132504 |SRB | 7.70 | 8.11 | |V | | | 67. | |M5III |04142 04142| +601058 |V1058 Ori *|052757.5-040043 |UVN | 16.1 | 17.5 | |p | | | | | |08778 08778| +601059 |V1059 Ori *|052832.8-070340 |UVN | 16.9 | 18.7 | |p | | | | | |08778 08778| +601060 |V1060 Ori *|052947.7-065823 |UVN | 16.8 | 18.5 | |p | | | | | |08778 08778| +601061 |V1061 Ori *|053024.2-045910 |UVN | 16.8 | 17.7 | |p | | | | | |08778 08778| +601062 |V1062 Ori *|053118.6-060206 |UVN | 16.2 | 17.2 | |p | | | | | |08778 08778| +601063 |V1063 Ori *|053131.7-041224 |UVN | 13.7 | 18.5 | |U | | | | | |08779 USNO | +601064 |V1064 Ori *|053150.9-054207 |UVN | 15.6 | 17.1 | |p | | | | | |08778 08778| +601065 |V1065 Ori *|053206.5-043446 |UVN | 15.6 | 21.0 | |p | | | | | |08778 08778| +601066 |V1066 Ori *|053236.8-064518 |UVN | 15.8 | 16.9 | |p | | | | | |08778 08778| +601067 |V1067 Ori *|053328.3-031226 |UVN | 15.4 | 19.0 | |p | | | | | |08778 08778| +601068 |V1068 Ori *|053323.3-055428 |UVN | 15.6 | 19.1 | |p | | | | | |08778 08778| +601069 |V1069 Ori *|053354.7-041627 |UVN | 13.0 | 16.1 | |U | | | | |ea |08779 00861| +601070 |V1070 Ori *|053429.9-034048 |UVN | 15.4 | 19.2 | |p | | | | | |08778 08778| +601071 |V1071 Ori *|053450.6-060222 |UVN | 12.4 | 13.5 | |V | | | | | |08780 00861| +601072 |V1072 Ori *|053523.5-060125 |UVN | 14.0 | 16.4 | |p | | | | | |09482 09482| +601073 |V1073 Ori *|053528.4-052620 |INA | 9.48 | 9.59 | |V | | | | |B9.5V |08043 08043| +601074 |V1074 Ori *|053547.3-063323 |UVN | 15.2 | 18.2 | |p | | | | | |08778 08778| +601075 |V1075 Ori *|053618.5-050508 |UVN | 14.1 | 15.8 | |U | | | | | |08779 00861| +601076 |V1076 Ori *|053615.8-061451 |UVN | 14.5 | 18.8 | |p | | | | |ea |08778 08778| +601077 |V1077 Ori *|053620.5-054139 |UVN | 13.9 | 15.5 | |B | | | | | |08778 08778| +601078 |V1078 Ori *|053624.7-060513 |UVN | 16.2 | 19.4 | |p | | | | | |08778 08778| +601079 |V1079 Ori *|053738.3-041311 |UVN | 15.1 | 18.1 | |U | | | | | |08779 USNO | +601080 |V1080 Ori *|053759.0-065846 |UVN | 14.7 | 19.0 | |p | | | | | |08778 08778| +601081 |V1081 Ori *|053830.1-061254 |UVN | 16.0 | 20.4 | |p | | | | | |08778 08778| +601082 |V1082 Ori *|053849.5-045108 |UVN | 16.4 | 17.0 | |p | | | | |ea |08778 08778| +601083 |V1083 Ori *|053954.0-063248 |UVN | 16.2 | 16.9 | |p | | | | | |08778 08778| +601084 |V1084 Ori *|054302.5-043000 |UVN | 15.2 | 16.2 | |U | | | | | |08779 GSC | +601085 |V1085 Ori |051141.4+003053 |ACV | 6.65 | 6.70 | |V | | | | | |67072 67141| +601086 |V1086 Ori |052444.8+015047 |GCAS | 4.92 | 4.96 | |V | | | | | |67143 67141| +601087 |V1087 Ori |052745.6-043029 |UVN | 13.5 | 17.6 | |U | | | | | |67144 USNO | +601088 |V1088 Ori |052636.7-054426 |UVN | 15.2 | 17.0 | |p | | | | | |67145 67145| +601089 |V1089 Ori |052712.9-052253 |UVN | 14.9 | 16.5 | |p | | | | | |67145 67145| +601090 |V1090 Ori |052948.5-070020 |UVN | 13.4 | 18.4 | |U | | | | | |67144 USNO | +601091 |V1091 Ori |052837.0-060316 |UVN | 15.5 | 16.7 | |p | | | | | |67146 67146| +601092 |V1092 Ori |053036.6-043739 |UVN | 15.4 | 20.4 | |p | | | | | |67146 67146| +601093 |V1093 Ori |053045.2-002224 |ACV | 8.20 |( 0.03 )| |V | | | | | |67072 67141| +601094 |V1094 Ori |053041.6-045354 |UVN | 16.2 | 19.8 | |p | | | | | |67146 67146| +601095 |V1095 Ori |053143.2-071742 |UVN | 15.9 | 17.7 | |p | | | | | |67145 67145| +601096 |V1096 Ori |053143.8-073619 |UVN | 15.0 | 19.4 | |p | | | | | |67145 67145| +601097 |V1097 Ori |053425.6-053702 |UVN | 16.4 | 18. | |p | | | | | |67144 2MASS| +601098 |V1098 Ori |053204.6-034028 |UVN | 15.6 | 17.4 | |p | | | | | |67146 67146| +601099 |V1099 Ori |053213.1-013602 |SXARI | 8.29 |( 0.03 )| |V | | | | | |67072 BD | +601100 |V1100 Ori |053212.0-044316 |UVN | 16.2 |< 21.0 | |p | | | | | |67146 67146| +601101 |V1101 Ori |053214.8-043106 |SXARI | 8.14 |( 0.06 )| |V | | | | | |67072 67148| +601102 |V1102 Ori | | | | | | | | | | | | |=V1121 Ori +601103 |V1103 Ori |053256.9-051248 |UVN | 16.0 | 18.5 | |U | | | | | |67150 USNO | +601104 |V1104 Ori |053259.6-040915 |UVN | 14.6 | 15.8 | |U | | | | | |67151 GSC | +601105 |V1105 Ori |053311.8-055459 |UVN | 16.3 | 19.2 | |p | | | | | |67146 67146| +601106 |V1106 Ori |053546.1-041730 |UVN | 13.8 | 15.5 | |U | | | | | |67144 GSC | +601107 |V1107 Ori |053326.1+003717 |SXARI | 8.06 |( 0.02 )| |V | | | | | |67072 BD | +601108 |V1108 Ori |053318.3-070156 |UVN | 14.8 | 16.5 | |p | | | | | |67146 67146| +601109 |V1109 Ori |053327.5-074220 |UVN | 15.6 | 17.6 | |p | | | | | |67145 67145| +601110 |V1110 Ori |053330.3-060410 |UVN | 15.1 | 16.7 | |p | | | | | |67146 67146| +601111 |V1111 Ori |053331.9-062418 |UVN | 16.4 | 18.6 | |p | | | | | |67146 67146| +601112 |V1112 Ori |053333.8-062554 |UVN | 16.4 |< 21.0 | |p | | | | | |67145 67145| +601113 |V1113 Ori |053338.5-064840 |UVN | 13.9 | 15.4 | |p | | | | | |67146 67146| +601114 |V1114 Ori |053407.2-051144 |UVN | 14.5 | 15.5 | |p | | | | | |67145 67145| +601115 |V1115 Ori |053407.5-060447 |UVN | 16.7 | 17.8 | |p | | | | | |67145 67145| +601116 |V1116 Ori |053427.1-053229 |UVN | 13.5 | 17.8 | |U | | | | | |67149 67148| +601117 |V1117 Ori |053439.1-040210 |UVN | 15.6 | 16.6 | |p | | | | | |67146 67146| +601118 |V1118 Ori |053444.8-053342 |IN: | 12.6 |< 17.5 | |p | | | | | |67153 67152| +601119 |V1119 Ori |053442.0-073615 |UVN | 15.2 | 16.4 | |p | | | | | |67146 67146| +601120 |V1120 Ori |053459.2-064218 |UVN | 16.6 | 17.7 | |p | | | | | |67146 67146| +601121 |V1121 Ori |053505.4-042507 |UVN | 15.2 | 17.7 | |U | | | | | |67151 USNO | +601122 |V1122 Ori |053517.3-060516 |UVN | 15.1 | 16.9 | |p | | | | | |67146 67146| +601123 |V1123 Ori |053523.4-051052 |UVN | 13.1 | 15.3 | |p | | | | | |67145 67145| +601124 |V1124 Ori |053547.4-051319 |UVN | 15.5 | 17.0 | |B | | | | | |67146 67146| +601125 |V1125 Ori |053548.4-061736 |UVN | 11.9 | 20.2 | |U | | | | | |67150 USNO | +601126 |V1126 Ori |053545.5-064520 |UVN | 15.6 | 19.6 | |p | | | | | |67146 67146| +601127 |V1127 Ori |053602.5-050736 |UVN | 14.5 | 15.5 | |p | | | | | |67145 67145| +601128 |V1128 Ori |053605.2-045104 |UVN | 15.4 | 17.7 | |B | | | | | |67146 67146| +601129 |V1129 Ori |053608.7-052102 |UVN | 14.3 | 17.4 | |p | | | | | |67145 67145| +601130 |V1130 Ori |053618.8-001813 |ACV | 8.54 |( 0.03 )| |V | | | | | |67072 BD | +601131 |V1131 Ori |053619.2-050038 |UVN | 14.1 | 21. | |U | | | | | |67150 USNO | +601132 |V1132 Ori |053622.2-071607 |UVN | 15.9 | 19.3 | |p | | | | | |67146 67146| +601133 |V1133 Ori |053631.0-062714 |ACV | 8.11 |( 0.03 )| |V | | | | | |67072 67141| +601134 |V1134 Ori |053637.4-054407 |UVN | 15.6 | 17.3 | |p | | | | | |67146 67146| +601135 |V1135 Ori |053636.5-061425 |UVN | 15.2 | 19.0 | |p | | | | | |67146 67146| +601136 |V1136 Ori |053649.0-055649 |UVN | 15.0 | 16.2 | |p | | | | | |67146 67146| +601137 |V1137 Ori |053654.3-061945 |UVN | 14.1 | 18.6 | |p | | | | | |67146 67146| +601138 |V1138 Ori |053717.6-033133 |UVN | 14.0 | 15.6 | |p | | | | | |67146 67146| +601139 |V1139 Ori |053723.1-060323 |UVN | 14.3 | 15.8 | |p | | | | | |67146 67146| +601140 |V1140 Ori |053730.7-065606 |UVN | 15.9 | 18.9 | |p | | | | | |67146 67146| +601141 |V1141 Ori |053738.9-065253 |UVN | 16.5 |< 21.0 | |p | | | | | |67145 67145| +601142 |V1142 Ori |053755.7-062443 |UVN | 14.0 | 15.0 | |U | | | | | |67151 67148| +601143 |V1143 Ori |053803.8-041643 |INT | 13. | 19. | |B | | | | | |67160 67161| +601144 |V1144 Ori |053805.4-065314 |UVN | 14.3 | 15.3 | |p | | | | | |67146 67146| +601145 |V1145 Ori |053823.5-073308 |UVN | 14.4 | 17.9 | |p | | | | | |67145 67145| +601146 |V1146 Ori |053837.4-033019 |UVN | 16.1 | 19.5 | |p | | | | | |67145 67145| +601147 |V1147 Ori |053946.2-024032 |ACV | 9.01 |( 0.06 )| |V | | | | | |67072 67141| +601148 |V1148 Ori |053955.4-031950 |ACV | 8.04 |( 0.04 )| |V | | | | | |67072 67141| +601149 |V1149 Ori |054126.8+034641 |RS: | 7.2 |( 0.11 )| |V | | | | | |67163 BD | +601150 |V1150 Ori |054227.5-064601 |UVN | 15.8 | 19.2 | |U | | | | | |67150 USNO | +601151 |V1151 Ori |054243.0-044908 |UVN | 16.1 | 19.8 | |p | | | | | |67145 67145| +601152 |V1152 Ori |054335.2-061436 |UVN | 14.4 | 15.9 | |p | | | | | |67146 67146| +601153 |V1153 Ori |054358.5-055808 |UVN | 15.0 | 16.3 | |p | | | | | |67145 67145| +601154 |V1154 Ori |060830.4+135712 |RRC | 10.90 | 11.10 | |V | | | | | |67166 67170| +601155 |V1155 Ori |061901.8+171931 |ACV | 6.32 |( 0.02 )| |V | | | | | |67131 BD | +601156 |V1156 Ori |052350.4+020456 |SXARI | 7.89 |( 0.03 )| |V | | | | | |68187 BD | +601157 |V1157 Ori |052714.7-051630 |INS: | 15.5 | 17.8 | |p | | | | | |68178 68178| +601158 |V1158 Ori |052743.8-040523 |UVN | 16.3 | 18.7 | |p | | | | | |68178 68178| +601159 |V1159 Ori |052859.5-033353 |INS: | 12.5 | 16.0 | |p | | | | | |68178 68178| +601160 |V1160 Ori |052935.8-062923 |INS: | 16.6 | 18.0 | |p | | | | | |68178 68178| +601161 |V1161 Ori |053131.0-060841 |INS: | 16.0 | 17.2 | |U | | | | | |68178 68178| +601162 |V1162 Ori |053202.0-071525 |DSCT | 9.78 | 9.97 | |V | | | | | |68180 BD | +601163 |V1163 Ori |053215.1-053500 |INS: | 16.5 | 17.4 | |p | | | | | |68178 68178| +601164 |V1164 Ori |053214.8-062054 |INS: | 15.9 | 17.1 | |p | | | | | |68178 68178| +601165 |V1165 Ori |053225.6-034314 |INS: | 15.3 | 16.4 | |p | | | | | |68178 68178| +601166 |V1166 Ori |053234.4-073425 |INS: | 16.3 | 17.5 | |B | | | | | |68178 68178| +601167 |V1167 Ori |053248.0-034244 |UVN | 15.5 | 17.3 | |p | | | | | |68178 68178| +601168 |V1168 Ori |053246.7-055802 |INS: | 17.5 | 18.3 | |B | | | | | |68178 68178| +601169 |V1169 Ori |053412.6-045025 |INT | 11.01 |( 0.10 )| |Ic| | | 5.62 | |K4e |78072 GSC | +601170 |V1170 Ori |053411.6-055522 |INS: | 16.3 | 17.6 | |p | | | | | |68178 68178| +601171 |V1171 Ori |053418.3-065426 |INS: | 16.6 | 18.0 | |U | | | | | |68178 68178| +601172 |V1172 Ori |053424.9-042358 |INS: | 16.8 | 17.5 | |p | | | | | |68178 68178| +601173 |V1173 Ori |053426.8-050118 |UVN | 13.5 | 18.0 | |U | | | | | |68183 68183| +601174 |V1174 Ori |053427.9-054138 |INS: | 15.6 | 16.7 | |p | | | | | |68178 68178| +601175 |V1175 Ori |053444.4-053219 |UVN | 14.3 | 18.0 | |U | | | | | |68183 68185| +601176 |V1176 Ori |053443.5-055810 |INS: | 17.3 | 18.3 | |p | | | | | |68178 68178| +601177 |V1177 Ori |053527.7-041203 |UVN | 15.9 | 17.4 | |p | | | | | |68178 68178| +601178 |V1178 Ori |053559.7-061607 |INS: | 14.5 | 15.4 | |p | | | | | |68178 68178| +601179 |V1179 Ori |053606.2-072347 |ACV | 7.37 |( 0.10 )| |V | | | | | |68187 BD | +601180 |V1180 Ori |053610.3-054227 |INS: | 16.7 | 17.9 | |B | | | | | |68178 68178| +601181 |V1181 Ori |053609.6-061029 |UVN | 15.2 | 16.3 | |p | | | | | |68178 68178| +601182 |V1182 Ori |053619.8-051439 |INSB: | 16.5 | 18.5 | |B | | | | | |68178 68189| +601183 |V1183 Ori |053631.5-060826 |INS: | 15.4 | 16.3 | |p | | | | | |68178 68178| +601184 |V1184 Ori |053726.0-053401 |INS: | 16.4 | 17.4 | |p | | | | | |68178 68178| +601185 |V1185 Ori |053739.1-050840 |INS: | 12.0 | 17.4 | |U | | | | | |68178 68178| +601186 |V1186 Ori |053809.3-064145 |UVN | 15.9 | 20.1 | |p | | | | | |68178 68178| +601187 |V1187 Ori |053942.6-080908 |LB: | 12.0 | 13.0 | |V | | | | | |68015 GSC | +601188 |V1188 Ori |054005.0-062924 |INS: | 15.7 | 16.5 | |p | | | | | |68178 68178| +601189 |V1189 Ori |054040.1-063150 |INS: | 15.1 | 16.6 | |p | | | | | |68178 68178| +601190 |V1190 Ori |054051.4-053030 |INSB: | 14.4 | 16.4 | |B | | | | | |68178 68178| +601191 |V1191 Ori |054106.7-054217 |UVN | 16.5 | 17.5 | |p | | | | | |68178 68178| +601192 |V1192 Ori |050008.2+031712 |RS | 7.50 | 7.57 | |V | | | | | |69011 BD | +601193 |V1193 Ori |051626.7-001214 |NL | 13.95 | 14.28 | |V | | | | | |69216 69216| +601194 |V1194 Ori |052801.4-065336 |UV | 13.9 | 19.3 | |B | | | | | |69217 USNO | +601195 |V1195 Ori |053102. -043336:|UV | 15.0 |< 19.0 | |U | | | | | |69217 | +601196 |V1196 Ori |053145.5-041621 |UV | 12.6 | 13.76 | |U | | | | | |69217 69218| +601197 |V1197 Ori |054309.3-013648 |ELL | 6.30 |( 0.03 )| |V | | | | | |69154 BD | +601198 |V1198 Ori |045817.0+002714 |RS | 7.12 | 7.19 | |V | | | | | |70084 BD | +601199 |V1199 Ori |051127.3-083430 |DSCT: | 8.8 |( 0.16 )| |V | | | | | |70085 70085| +601200 |V1200 Ori |053657.5-070212 |UV | 14.8 | 21.5 : | |B | | | | | |70086 70086| +601201 |V1201 Ori |055625.9+052203 |* | 13.0 | 14.12 | |V | | | | | |70088 70087| +601202 |V1202 Ori |045605.3+100309 |EA | 11.88 | 12.76 | |V | | | | | |71036 71037| +601203 |V1203 Ori |052619.3-043326 |UVN | 16.2 | 16.9 | |p | | | | | |71043 71043| +601204 |V1204 Ori |052821.3-054338 |UVN | 14.4 | 17.2 | |U | | | | | |71044 71045| +601205 |V1205 Ori |053046.0-073029 |UVN | 14.2 |< 18.9 | |U | | | | | |71043 71043| +601206 |V1206 Ori |053126.4-053636 |UVN | 15.2 | 17.4 | |U | | | | | |71044 71045| +601207 |V1207 Ori |053149.3-060019 |UVN | 14.2 | 15.4 | |U | | | | | |71043 71046| +601208 |V1208 Ori |053151.0-070006 |UVN | 14.1 | 17.7 | |U | | | | | |71043 71043| +601209 |V1209 Ori |053239.6-033615 |UVN | 15.5 | 16.2 | |U | | | | | |71043 71043| +601210 |V1210 Ori |053257.1-054020 |UVN | 15.6 | 18.1 | |U | | | | | |71043 71046| +601211 |V1211 Ori |053302.1-040846 |UVN | 16.4 | 17.4 | |U | | | | | |71043 71043| +601212 |V1212 Ori |053304.3-051941 |UVN | 15.7 | 16.8 | |U | | | | | |71043 71046| +601213 |V1213 Ori |053342.8-064214 |UVN | 16.2 | 17.2 | |U | | | | | |71043 71043| +601214 |V1214 Ori |053359.5-044305 |UVN | 15.6 | 16.8 | |p | | | | | |71047 71045| +601215 |V1215 Ori |053404.4-050256 |UVN | 17.0 | 17.6 | |U | | | | | |71043 71046| +601216 |V1216 Ori |053412.2-030926 |UVN | 16.5 | 17.0 | |p | | | | | |71048 71045| +601217 |V1217 Ori |053417.9-033336 |UVN | 14.8 |< 18.5 | |U | | | | | |71043 71043| +601218 |V1218 Ori |053425.5-042236 |UVN | 15.5 |< 18.5 | |U | | | | | |71043 71043| +601219 |V1219 Ori |053426.5-050101 |UVN | 16.1 | 16.9 | |p | | | | | |71047 71045| +601220 |V1220 Ori |053428.7-043439 |UVN | 14.8 | 17.6 | |p | | | | | |71050 71045| +601221 |V1221 Ori |053428.2-061025 |UVN | 14.0 | 14.92 | |U | | | | | |71043 71046| +601222 |V1222 Ori |053440.8-042133 |UVN | 15.4 | 17.4 | |U | | | | | |71043 71046| +601223 |V1223 Ori |053445.5-040436 |UVN | 14.3 | 17.5 | |U | | | | | |71043 71046| +601224 |V1224 Ori |053448.5-042310 |UVN | 16.0 | 18.2 | |p | | | | | |71051 71045| +601225 |V1225 Ori |053453.6-042118 |UVN | 13.9 |< 18.8 | |U | | | | | |71045 71045| +601226 |V1226 Ori |053452.9-064834 |UVN | 17.0 |< 18.8 | |U | | | | | |71043 71043| +601227 |V1227 Ori |053510.6-052156 |IN: | 12.74 | 13.01 | |Ic| | | | | |71052 71053| +601228 |V1228 Ori |053512.3-052348 |IN: | 12.21 | 12.51 | |Ic| | | | | |71052 71053| +601229 |V1229 Ori |053518.3-052238 |IN: | 11.36 | 11.64 | |Ic| | | | | |71052 71053| +601230 |V1230 Ori |053520.7-052145 |IN: | 9.12 | 9.30 | |Ic| | | | | |71052 71053| +601231 |V1231 Ori |053522.3-052414 |IN: | 12.7 | 14.4 | |Ic| | | | | |71052 71053| +601232 |V1232 Ori |053526.2-052737 |IN | 11.5 | 12.9 | |V | | | | | |71055 71046| +601233 |V1233 Ori |053533.9-061432 |UVN | 16.5 |< 18.8 | |U | | | | | |71043 71043| +601234 |V1234 Ori |053546.6-042613 |UVN | 16.1 | 16.9 | |p | | | | | |71051 71046| +601235 |V1235 Ori |053546.0-065238 |UVN | 15.7 | 16.7 | |U | | | | | |71044 71046| +601236 |V1236 Ori |053552.4-043006 |UVN | 14.0 | 15.6 | |U | | | | | |71044 71046| +601237 |V1237 Ori |053558.6-042924 |UVN | 16.3 | 17.9 | |p | | | | | |71057 71045| +601238 |V1238 Ori |053606.9-042037 |UVN | 15.9 | 16.8 | |U | | | | | |71044 71045| +601239 |V1239 Ori |053610.5-034849 |UVN | 16.0 | 18.5 | |U | | | | | |71043 71043| +601240 |V1240 Ori |053609.2-055103 |UVN | 16.3 | 17.5 | |p | | | | | |71045 71045| +601241 |V1241 Ori |053627.2-054642 |UVN | 15.1 | 17.6 | |U | | | | | |71043 71046| +601242 |V1242 Ori |053633.0-034256 |UVN | 15.1 | 17.1 | |U | | | | | |71043 71043| +601243 |V1243 Ori |053640.1-051223 |UVN | 15.5 | 17.5 | |U | | | | | |71043 71043| +601244 |V1244 Ori |053702.2-040043 |UVN | 16.0 |< 18. | |U | | | | | |71043 71043| +601245 |V1245 Ori |053704.9-041348 |UVN | 14.8 | 17.9 | |U | | | | | |71044 71045| +601246 |V1246 Ori |053714.9-061940 |UVN | 16.5 | 21.0 : | |p | | | | | |71047 71045| +601247 |V1247 Ori |053805.3-011522 |DSCTC | 9.82 | 9.87 | |V | | | | | |71017 BD | +601248 |V1248 Ori |053742.7-064016 |UVN | 14.8 | 15.7 | |U | | | | | |71044 71046| +601249 |V1249 Ori |053831.9-063625 |UVN | 15.3 | 18.5 | |U | | | | | |71043 71043| +601250 |V1250 Ori |053836.1-054048 |UVN | 16.1 | 17.1 | |p | | | | | |71047 71045| +601251 |V1251 Ori |053853.2-040251 |UVN | 16.7 | 18.3 | |p | | | | | |71043 71043| +601252 |V1252 Ori |053859.4-043038 |UVN | 16.3 | 19.0 : | |p | | | | | |71047 71045| +601253 |V1253 Ori |053917.9-035513 |UVN | 15.2 | 17.3 | |U | | | | | |71231 71043| +601254 |V1254 Ori |053919.0-065516 |UVN | 12.6 | 14.7 | |U | | | | | |71043 71046| +601255 |V1255 Ori |054019.1-035813 |UVN | 15.9 | 16.8 | |U | | | | | |71044 71045| +601256 |V1256 Ori |054036.8-035634 |UVN | 14.5 | 15.7 | |U | | | | | |71044 71045| +601257 |V1257 Ori |054125.8-062048 |UVN | 15.2 | 16.0 | |U | | | | | |71043 71043| +601258 |V1258 Ori |054526.3-041434 |SR: | 12.0 | 12.6 | |p | | | | | |71059 71059| +601259 |V1259 Ori |060359.6+072551 |M | 6.04 | 8.27 | |K | | | | | |71061 USNO | +601260 |V1260 Ori |061928.9+132654 |RS | 7.7 |( 0.11 )| |V | | | | | |71001 BD | +601261 |V1261 Ori |052218.6-083958 |EA/GS/WD | 6.91 |( 0.27 )| |V | | | | | |72129 BD | +601262 |V1262 Ori |052718.9-054024 |UVN | 15.4 | 16.7 | |U | | | | | |72130 72130| +601263 |V1263 Ori |052922.5-072342 |UVN | 14.0 | 16.8 | |U | | | | | |72130 72130| +601264 |V1264 Ori |053018.4-062846 |UVN | 15.0 |< 18.4 | |U | | | | | |72130 72130| +601265 |V1265 Ori |053043.7-060634 |UVN | 15.4 |< 18.4 | |U | | | | | |72130 72130| +601266 |V1266 Ori |053218.0-063348 |UVN | 16.0 |< 18.6 | |U | | | | | |72130 72130| +601267 |V1267 Ori |053253.5-060601 |UVN | 14.5 |< 18.4 | |U | | | | | |72130 72130| +601268 |V1268 Ori |053259.8-044718 |UVN | 14.2 | 16.8 | |U | | | | | |72130 72130| +601269 |V1269 Ori |053345.0-071627 |UVN | 15.7 |< 18.5 | |U | | | | | |72130 72130| +601270 |V1270 Ori |053400.3-042117 |UVN | 17.1 | 17.6 | |U | | | | | |72130 72130| +601271 |V1271 Ori |053509.6+100152 |INA | 9.83 | 9.95 | |y | | | | | |72131 BD | +601272 |V1272 Ori |053453.1-042903 |UV | 14.6 | 16.2 | |U | | | | | |72130 72130| +601273 |V1273 Ori |053454.1-052227 |IN | 15.7 |( 0.39 )| |Ic| | | | | |72132 72133| +601274 |V1274 Ori |053504.3-052314 |IN | 12.9 |( 0.39 )| |Ic| | | | | |72132 72133| +601275 |V1275 Ori |053507.8-052918 |IN | 15.0 |( 0.20 )| |Ic| | | | | |72132 72133| +601276 |V1276 Ori |053512.2-053020 |IN | 15.1 |( 0.21 )| |Ic| | | | | |72132 72133| +601277 |V1277 Ori | | | | | | | | | | | | |=V0485 Ori +601278 |V1278 Ori |053515.2-052224 |IN | 12.7 |( 0.32 )| |Ic| | | | | |72132 72133| +601279 |V1279 Ori |053516.7-052404 |IN | 11.5 |( 0.34 )| |Ic| | | | | |72132 72133| +601280 |V1280 Ori |053522.2-041600 |UVN | 16.4 |< 18.6 | |p | | | | | |72130 72130| +601281 |V1281 Ori |053521.9-051501 |IN | 15.5 |( 0.16 )| |Ic| | | | | |72132 72133| +601282 |V1282 Ori |053521.7-052645 |IN | 14.1 |( 0.16 )| |Ic| | | | | |72132 72133| +601283 |V1283 Ori |053524.5-052632 |IN | 13.7 |( 0.25 )| |Ic| | | | | |72132 72133| +601284 |V1284 Ori |053525.7-052642 |IN | 13.6 |( 0.26 )| |Ic| | | | | |72132 72133| +601285 |V1285 Ori |053526.0-052548 |IN | 13.5 |( 0.35 )| |Ic| | | | | |72132 72133| +601286 |V1286 Ori |053527.4-052628 |IN | 12.6 |( 0.24 )| |Ic| | | | | |72132 72133| +601287 |V1287 Ori |053527.5-052726 |IN | 13.6 |( 0.33 )| |Ic| | | | | |72132 72133| +601288 |V1288 Ori |053528.4-052503 |IN | 13.1 |( 0.18 )| |Ic| | | | | |72132 72133| +601289 |V1289 Ori |053529.5-051633 |IN | 13.3 |( 0.06 )| |Ic| | | | | |72132 72133| +601290 |V1290 Ori |053529.5-052457 |IN | 13.2 |( 0.24 )| |Ic| | | | | |72132 72133| +601291 |V1291 Ori |053530.1-050909 |IN | 15.6 |( 0.34 )| |Ic| | | | | |72132 72133| +601292 |V1292 Ori |053530.5-052831 |IN | 14.1 |( 0.47 )| |Ic| | | | | |72132 72133| +601293 |V1293 Ori |053530.7-052717 |IN | 13.8 |( 0.20 )| |Ic| | | | | |72132 72133| +601294 |V1294 Ori |053531.3-051533 |IN | 12.1 |( 0.16 )| |Ic| | | | | |72132 72133| +601295 |V1295 Ori |053551.8-035751 |UVN | 15.5 | 16.1 | |U | | | | | |72130 72130| +601296 |V1296 Ori |053552.0-061001 |UVN | 15. | 17.16 | |U | | | | | |72134 72135| +601297 |V1297 Ori |053556.4-041128 |UVN | 16.0 |< 18.4 | |U | | | | | |72130 72130| +601298 |V1298 Ori |053716.8-040115 |UVN | 15.4 | 18.2 | |U | | | | | |72130 72130| +601299 |V1299 Ori |053756.6-014050 |IB: | 12.1 | 13.0 | |p | | | | | |72022 GSC | +601300 |V1300 Ori |053751.3-063951 |UVN | 12.3 | 15.47 | |U | | | | | |72130 72130| +601301 |V1301 Ori |053807.3-050118 |UVN | 15.6 | 16.5 | |U | | | | | |72130 72130| +601302 |V1302 Ori |053832.1-050404 |UVN | 13.7 | 15.0 | |U | | | | | |72130 72130| +601303 |V1303 Ori |054005.4-053226 |UVN | 16.1 | 17.0 | |p | | | | | |72130 72130| +601304 |V1304 Ori |054024.9-080733 |INT | 13.58 | 13.98 | |V | | | | | |72136 72136| +601305 |V1305 Ori |054149.8-080032 |INT | 13.12 | 13.35 | |U | | | | | |72136 72136| +601306 |V1306 Ori |054218.6-052808 |UVN | 15.7 | 16.6 | |U | | | | | |72130 72130| +601307 |V1307 Ori |060200.0+163057 |INA | 9.48 |( 0.35 )| |V | | | | | |72131 72029| +601308 |V1308 Ori |061845.5+151652 |INA | 11.47 | 11.62 | |V | | | | | |72028 72051| +601309 |V1309 Ori |051541.4+010441 |XM+E | 15.2 | 17.3 | |V | | | | | |73226 73227| +601310 |V1310 Ori |052756.2-065259 |UVN | 14.5 | 17.8 | |U | | | | | |73228 73228| +601311 |V1311 Ori |053204.5-030529 |BY+UV | 14.97 | 15.29 | |u | | | | | |73229 73230| +601312 |V1312 Ori |053247.3-042957 |UVN | 14.8 | 17.0 | |U | | | | | |73231 73232| +601313 |V1313 Ori |053443.4-053007 |BY | 13.9 |( 0.15 )| |Ic| | | | | |73233 73234| +601314 |V1314 Ori |053448.9-053146 |FU: | 13.9 |( 0.56 )| |Ic| | | | | |73233 73234| +601315 |V1315 Ori |053456.8-052136 |BY | 14.6 |( 0.14 )| |Ic| | | | | |73233 73234| +601316 |V1316 Ori |053457.5-053042 |BY | 14.1 |( 0.10 )| |Ic| | | | | |73233 73234| +601317 |V1317 Ori |053457.9-052842 |INS | 16.1 |( 2.04 )| |Ic| | | | | |73233 73234| +601318 |V1318 Ori |053459.6-052400 |BY | 14.2 |( 0.14 )| |Ic| | | | | |73233 73234| +601319 |V1319 Ori |053502.1-052636 |BY | 12.9 |( 0.11 )| |Ic| | | | | |73233 73234| +601320 |V1320 Ori |053502.2-052910 |BY | 13.9 |( 0.21 )| |Ic| | | | | |73233 73234| +601321 |V1321 Ori |053504.3-050813 |INT | 10.55 | 10.75 | |V | | | | | |73103 73232| +601322 |V1322 Ori |053504.2-052628 |BY | 13.9 |( 0.11 )| |Ic| | | | | |73233 73234| +601323 |V1323 Ori |053504.6-052623 |BY | 14.2 |( 0.19 )| |Ic| | | | | |73233 73234| +601324 |V1324 Ori |053505.7-052506 |BY | 13.0 |( 0.11 )| |Ic| | | | | |73233 73234| +601325 |V1325 Ori |053508.7-052902 |BY | 15.0 |( 0.15 )| |Ic| | | | | |73233 73234| +601326 |V1326 Ori |053509.7-052327 |BY | 11.9 |( 0.3 )| |Ic| | | | | |73233 73234| +601327 |V1327 Ori |053513.5-051710 |BY | 13.9 |( 0.10 )| |Ic| | | | | |73233 73234| +601328 |V1328 Ori |053514.2-052425 |BY | 11.8 |( 0.13 )| |Ic| | | | | |73233 73234| +601329 |V1329 Ori |053514.5-051725 |BY | 14.7 |( 0.15 )| |Ic| | | | | |73233 73234| +601330 |V1330 Ori |053514.9-052239 |BY | 11.86 |( 0.31 )| |Ic| | | | | |73233 73234| +601331 |V1331 Ori |053515.3-052216 |BY: | 12.5 |( 2.11 )| |Ic| | | | | |73233 73234| +601332 |V1332 Ori |053515.7-052140 |BY | 13.8 |( 0.47 )| |Ic| | | | | |73233 73234| +601333 |V1333 Ori |053517.0-052233 |BY | 12.2 |( 0.21 )| |Ic| | | | | |73233 73234| +601334 |V1334 Ori |053517.9-051533 |IN | 14.3 |( 0.77 )| |Ic| | | | | |73233 73234| +601335 |V1335 Ori |053517.9-051539 |BY | 14.6 |( 0.38 )| |Ic| | | | | |73233 73234| +601336 |V1336 Ori |053518.3-052405 |UVN | 17.95 | 19.46 | |V | | | | | |73235 73234| +601337 |V1337 Ori |053519.0-052350 |FU: | 13.1 |( 2.32 )| |Ic| | | | | |73233 73234| +601338 |V1338 Ori |053520.2-052639 |BY | 11.7 |( 0.08 )| |Ic| | | | | |73233 73234| +601339 |V1339 Ori |053521.2-052557 |FU: | 13.3 |( 1.56 )| |Ic| | | | | |73233 73234| +601340 |V1340 Ori |053522.3-052728 |BY | 14.4 |( 0.42 )| |Ic| | | | | |73233 73234| +601341 |V1341 Ori |053522.7-051509 |BY | 15.9 |( 0.62 )| |Ic| | | | | |73233 73234| +601342 |V1342 Ori |053523.6-052527 |INS | 13.9 |( 4.47 )| |Ic| | | | | |73233 73234| +601343 |V1343 Ori |053525.1-051023 |IN | |( 1.30 )| |Ic| | | | | |73233 2MASS| +601344 |V1344 Ori |053525.3-050928 |BY | 13.5 |( 0.10 )| |Ic| | | | | |73233 73234| +601345 |V1345 Ori |053527.5-051710 |BY | 13.6 |( 0.15 )| |Ic| | | | | |73233 73234| +601346 |V1346 Ori |053527.8-050755 |FU: | |( 1.99 )| |Ic| | | | | |73233 2MASS| +601347 |V1347 Ori |053527.9-051657 |BY | 13.3 |( 0.07 )| |Ic| | | | | |73233 73234| +601348 |V1348 Ori |053530.4-052539 |BY | 13.1 |( 0.76 )| |Ic| | | | | |73233 73234| +601349 |V1349 Ori |053532.0-050806 |INS | |( 1.07 )| |Ic| | | | | |73233 2MASS| +601350 |V1350 Ori |053537.6-052717 |BY | 13.9 |( 0.10 )| |Ic| | | | | |73233 73234| +601351 |V1351 Ori |053545.6-052823 |BY | 13.8 |( 0.14 )| |Ic| | | | | |73233 73234| +601352 |V1352 Ori |054209.3+122922 |BY | 11.48 | 11.55 | |V | | | | | |73018 73237| +601353 |V1353 Ori |054257.8-004246 |EW | 12.9 |( 0.31 Rc)| |V | | | | | |73238 73238| +601354 |V1354 Ori |054349.5-043453 |INT | 14.87 | 15.79 | |u | | | | | |73229 73239| +601355 |V1355 Ori |060240.4-005137 |RS | 8.97 | 9.35 | |V | | | | | |73055 BD | +601356 |V1356 Ori |060824.1+135648 |ACV | 10.80 |( 0.15 u )| |V | | | | | |73240 73241| +601357 |V1357 Ori |061312.5+103738 |RS: | 6.44 | 6.49 | |V | | | | | |73242 BD | +601358 |V1358 Ori |061908.1-032620 |BY | 7.91 | 7.99 | |V | | | | | |73055 BD | +601359 |V1359 Ori |044954.9-022839 |DSCTC | 8.52 | 8.56 | |Hp| | | | | |HIP HIP | +601360 |V1360 Ori |050106.0+034302 |LPB: | 7.18 | 7.22 | |Hp| | | | | |HIP HIP | +601361 |V1361 Ori |050303.1+144557 |EB | 9.21 | 9.42 | |Hp| | | | | |HIP HIP | +601362 |V1362 Ori |050540.4+062755 |LB: | 9.94 | 10.08 | |Hp| | | | | |HIP HIP | +601363 |V1363 Ori |050702.1-004733 |EW | 10.35 | 10.59 | |Hp| | | | | |HIP HIP | +601364 |V1364 Ori |050929.8+142121 |LB: | 7.95 | 8.08 | |Hp| | | | | |HIP HIP | +601365 |V1365 Ori |051437.0-003346 |BY: | 6.46 | 6.87 | |Hp| | | | | |HIP HIP | +601366 |V1366 Ori |051600.5-094835 |E: | 9.87 | 10.64 | |Hp| | | | | |HIP HIP | +601367 |V1367 Ori |051654.3+043950 |LB | 8.58 | 8.78 | |Hp| | | | | |HIP HIP | +601368 |V1368 Ori |052113.4+072119 |SRA | 9.66 | 10.01 | |Hp| | | | | |HIP HIP | +601369 |V1369 Ori |052119.3+040043 |BE | 6.47 | 6.67 | |Hp| | | | | |HIP HIP | +601370 |V1370 Ori |052555.9-022008 |LPB | 8.23 | 8.29 | |Hp| | | | | |HIP HIP | +601371 |V1371 Ori |052759.1+125442 |EB | 8.16 | 8.24 | |Hp| | | | | |HIP HIP | +601372 |V1372 Ori |052848.5+020953 |BE | 7.06 | 7.19 | |Hp| | | | | |HIP HIP | +601373 |V1373 Ori |052905.8-063806 |SRD | 8.83 | 8.91 | |Hp| | | | | |HIP HIP | +601374 |V1374 Ori |053141.0+091334 |BE | 7.45 | 7.72 | |Hp| | | | | |HIP HIP | +601375 |V1375 Ori |053143.7-031259 |E: | 6.82 | 7.00 | |Hp| | | | | |HIP HIP | +601376 |V1376 Ori |053516.7+084203 |LB | 6.89 | 7.19 | |Hp| | | | | |HIP HIP | +601377 |V1377 Ori *|053535.9-031510 |LPB | 6.35 | 6.37 | |Hp| | | | | |HIP HIP | +601378 |V1378 Ori |053736.8-045603 |LPB | 7.06 | 7.12 | |Hp| | | | | |HIP HIP | +601379 |V1379 Ori |053745.9-004642 |LPB | 7.56 | 7.60 | |Hp| | | | | |HIP HIP | +601380 |V1380 Ori *|054707.9+001756 |EA | 9.76 | 10.61 | |Hp| | | | | |HIP HIP | +601381 |V1381 Ori |055422.5-010435 |LB: | 7.25 | 7.51 | |Hp| | | | | |HIP HIP | +601382 |V1382 Ori |055444.7+135117 |BE: | 7.82 | 7.96 | |Hp| | | | | |HIP HIP | +601383 |V1383 Ori |055547.3-073810 |EB | 8.47 | 8.66 | |Hp| | | | | |HIP HIP | +601384 |V1384 Ori |055650.6+162118 |EA | 7.14 | 7.41 | |Hp| | | | | |HIP HIP | +601385 |V1385 Ori |060110.5+192514 |EB | 7.47 | 7.64 | |Hp| | | | | |HIP HIP | +601386 |V1386 Ori |060640.5+153232 |BY: | 6.88 | 6.94 | |Hp| | | | | |HIP HIP | +601387 |V1387 Ori |060925.2+171100 |EB | 8.77 | 8.87 | |Hp| | | | | |HIP HIP | +601388 |V1388 Ori |061059.2+115942 |EA | 7.41 | 7.76 | |Hp| | | | | |HIP HIP | +601389 |V1389 Ori |061259.6+060059 |SRB: | 6.49 | 6.59 | |Hp| | | | | |HIP HIP | +601390 |V1390 Ori |061342.2+084245 |BE | 8.04 | 8.16 | |Hp| | | | | |HIP HIP | +601391 |V1391 Ori |061527.9+174501 |LB | 8.14 | 8.43 | |Hp| | | | | |HIP HIP | +601392 |V1392 Ori |061617.9+090140 |EB | 7.73 | 7.92 | |Hp| | | | | |HIP HIP | +601393 |V1393 Ori |061743.6-001507 |CST: | 11.3 | | |V | | | | |A5 | HIP | +601394 |V1394 Ori |061825.9-010746 |LB | 9.60 | 9.93 | |Hp| | | | | |HIP HIP | +601395 |V1395 Ori |061858.9+101934 |LB: | 8.92 | 9.02 | |Hp| | | | | |HIP HIP | +601396 |V1396 Ori |051013.9+043840 |ZZA | 15.36 |( 0.14 )| |V | | | | | |75194 75194| +601397 |V1397 Ori |053508.3-052829 |INS | 14.3 |( 1.43 )| |I | | | | | |75195 75196| +601398 |V1398 Ori |053513.4-052340 |INSB | 12.88 |( 2.34 )| |Ic| | | | | |75197 75196| +601399 |V1399 Ori |053521.0-052349 |INB | 10.68 |( 0.16 )| |Ic| | | | | |75302 75196| +601400 |V1400 Ori |053524.7-052436 |INB | 14.13 |( 1.18 )| |Ic| | | | | |75197 75196| +601401 |V1401 Ori |053541.3-052751 |INS | 14.0 |( 0.69 )| |I | | | | | |75195 75196| +601402 |V1402 Ori |054016.1+123901 |UV | 6.73 | 14.02 | |U | | | | | |75198 75199| +601403 |V1403 Ori |054003.9-011943 |EA | 10.60 | 11.62 | |V | | | | | |75200 75201| +601404 |V1404 Ori |054037.0+134822 |M | 6.52 | 8.25 | |J | | | | | |75202 75203| +601405 |V1405 Ori |044456.9+142151 |RPHS | 15.11 |( 0.10 )| |V | | | | | |76037 76038| +601406 |V1406 Ori |045700.7+151753 |IT | 10.24 | 10.34 | |V | | | | | |76033 GSC | +601407 |V1407 Ori |045717.7+152509 |IT | 10.22 | 10.38 | |V | | | | | |76033 GSC | +601408 |V1408 Ori |051452.1+101107 |SR | 11.74 | 12.14 | |* | | | | | |76041 GSC | +601409 |V1409 Ori |053019.0+112020 |INA | 10.12 | 10.24 | |V | | | | | |76027 DM | +601410 |V1410 Ori |053157.3+111741 |INA | 9.48 | 9.73 | |V | | | | | |76027 DM | +601411 |V1411 Ori |053351.9-055426 |IN | 14.0 |( 0.10 )| |I | | | | | |76044 USNO | +601412 |V1412 Ori |053353.3-045605 |IN | 14.2 |( 0.15 )| |I | | | | | |76044 USNO | +601413 |V1413 Ori |053354.6-060209 |IN | 13.3 |( 0.15 )| |I | | | | | |76044 USNO | +601414 |V1414 Ori |053357.7-054006 |IN | 13.7 |( 0.17 )| |I | | | | | |76044 UCAC2| +601415 |V1415 Ori |053357.9-053627 |IN | 14.6 |( 0.14 )| |I | | | | | |76044 USNO | +601416 |V1416 Ori |053401.1-060227 |IN | 13.3 |( 0.14 )| |I | | | | | |76044 USNO | +601417 |V1417 Ori |053401.7-054651 |IN | 13.7 |( 0.17 )| |I | | | | | |76044 USNO | +601418 |V1418 Ori |053402.5-060431 |IN | 15.9 |( 0.65 )| |I | | | | | |76044 USNO | +601419 |V1419 Ori |053402.9-054944 |IN | 13.9 |( 0.17 )| |I | | | | | |76044 USNO | +601420 |V1420 Ori |053403.6-052219 |IN | 14.0 |( 0.10 )| |I | | | | | |76044 | +601421 |V1421 Ori |053408.9-052405 |IN | 14.0 |( 0.19 )| |I | | | | | |76044 | +601422 |V1422 Ori |053412.3-054135 |IN | 15.7 |( 0.14 )| |I | | | | | |76044 2MASS| +601423 |V1423 Ori |053413.0-054213 |IN | 13.8 |( 0.12 )| |I | | | | | |76044 USNO | +601424 |V1424 Ori |053414.1-054721 |IN | 14.6 |( 0.17 )| |I | | | | | |76044 USNO | +601425 |V1425 Ori |053414.2-054221 |IN | 13.8 |( 0.21 )| |I | | | | | |76044 76045| +601426 |V1426 Ori |053417.6-060338 |IN | 13.8 |( 0.13 )| |I | | | | | |76044 USNO | +601427 |V1427 Ori |053417.9-053333 |INB | 12.9 |( 0.12 )| |I | | | | | |76044 76046| +601428 |V1428 Ori |053421.4-045548 |IN | 14.6 |( 0.32 )| |I | | | | | |76044 USNO | +601429 |V1429 Ori |053426.1-050733 |IN | 14.5 |( 0.20 )| |I | | | | | |76044 USNO | +601430 |V1430 Ori |053427.8-054210 |IN | 14.2 |( 0.13 )| |I | | | | | |76044 USNO | +601431 |V1431 Ori |053428.9-051415 |INB | 13.0 |( 0.22 )| |I | | | | | |76044 76047| +601432 |V1432 Ori |053429.3-051440 |INB | 12.7 |( 0.29 )| |I | | | | | |76044 76047| +601433 |V1433 Ori |053429.9-050405 |IN | 14.2 |( 0.14 )| |I | | | | | |76044 USNO | +601434 |V1434 Ori |053430.2-045830 |IN | 13.9 |( 0.11 )| |I | | | | | |76044 76046| +601435 |V1435 Ori |053431.1-052156 |INB | 14.0 |( 0.18 )| |I | | | | | |76044 76047| +601436 |V1436 Ori |053433.0-055747 |IN | 14.0 |( 0.16 )| |I | | | | | |76044 USNO | +601437 |V1437 Ori |053436.1-054215 |IN | 13.2 |( 0.18 )| |I | | | | | |76044 USNO | +601438 |V1438 Ori |053438.0-052741 |INB | 14.2 |( 0.18 )| |I | | | | | |76044 76047| +601439 |V1439 Ori |053440.1-045840 |IN | 12.7 |( 0.13 )| |I | | | | | |76044 76046| +601440 |V1440 Ori |053442.7-044215 |IN | 13.1 |( 0.30 )| |I | | | | | |76044 76046| +601441 |V1441 Ori |053442.9-052008 |INB | 12.7 |( 0.13 )| |I | | | | | |76044 76047| +601442 |V1442 Ori |053444.4-055615 |IN | 14.5 |( 0.25 )| |I | | | | | |76044 USNO | +601443 |V1443 Ori |053444.5-044214 |IN | 12.3 |( 0.15 )| |I | | | | | |76044 76046| +601444 |V1444 Ori |053445.1-052504 |INB | 11.4 |( 0.3 )| |I | | | | | |76048 76047| +601445 |V1445 Ori |053445.5-052921 |INB | 13.8 |( 0.07 )| |I | | | | | |76048 76047| +601446 |V1446 Ori |053445.9-052456 |INB | 13.7 |( 0.25 )| |I | | | | | |76044 76047| +601447 |V1447 Ori |053445.9-054110 |IN | 14.2 |( 0.13 )| |I | | | | | |76044 USNO | +601448 |V1448 Ori |053446.0-044922 |IN | 15.4 |( 0.65 )| |I | | | | | |76044 76046| +601449 |V1449 Ori |053446.5-052326 |INB | 14.6 |( 0.2 )| |I | | | | | |76048 76047| +601450 |V1450 Ori |053448.3-053723 |INB | 12.8 |( 0.20 )| |I | | | | | |76044 76047| +601451 |V1451 Ori |053448.4-050501 |IN | 13.7 |( 0.15 )| |I | | | | | |76044 76046| +601452 |V1452 Ori |053448.9-045714 |IN | 15.2 |( 0.12 )| |I | | | | | |76044 USNO | +601453 |V1453 Ori |053449.7+101611 |SR | 12.06 | 12.25 | |* | | | | | |76049 GSC | +601454 |V1454 Ori |053450.7-052401 |INB | 12.5 |( 0.15 )| |I | | | | | |76048 76047| +601455 |V1455 Ori |053450.8-052925 |INB | 14.3 |( 0.09 )| |I | | | | | |76044 76047| +601456 |V1456 Ori |053451.4-050011 |IN | 14.7 |( 0.13 )| |I | | | | | |76044 USNO | +601457 |V1457 Ori |053451.7-053924 |IN | 13.7 |( 0.15 )| |I | | | | | |76044 GSC22| +601458 |V1458 Ori |053452.1-052232 |INB | 12.6 |( 0.15 )| |I | | | | | |76044 76047| +601459 |V1459 Ori | | | | | | | | | | | | |=KL Ori +601460 |V1460 Ori |053452.6-052945 |INB | 13.9 |( 0.1 )| |I | | | | | |76048 76047| +601461 |V1461 Ori |053452.9-052859 |INB | 14.7 |( 0.21 )| |I | | | | | |76044 76047| +601462 |V1462 Ori |053453.9-052749 |INB | 15.8 |( 0.20 )| |I | | | | | |76044 76047| +601463 |V1463 Ori |053454.2-052854 |INB | 15.2 |( 0.25 )| |I | | | | | |76044 76047| +601464 |V1464 Ori |053454.6-052818 |INB | 15.3 |( 0.45 )| |I | | | | | |76044 76047| +601465 |V1465 Ori |053455.4-050139 |IN | 13.7 |( 0.15 )| |I | | | | | |76044 76046| +601466 |V1466 Ori |053456.0-053113 |INB | 13.87 | 17.95 | |Ic| | | | | |76050 76047| +601467 |V1467 Ori |053456.3-060417 |IN | 13.8 |( 0.14 )| |I | | | | | |76044 USNO | +601468 |V1468 Ori |053456.6-055207 |IN | 14.3 |( 0.30 )| |I | | | | | |76044 USNO | +601469 |V1469 Ori |053456.9-052206 |IN | 16.2 |( 1.5 )| |I | | | | | |76044 76047| +601470 |V1470 Ori |053457.0-052300 |INB | 14.9 |( 0.16 )| |I | | | | | |76044 76047| +601471 |V1471 Ori |053457.2-054203 |IN | 14.1 |( 0.18 )| |I | | | | | |76044 USNO | +601472 |V1472 Ori |053457.9-044913 |IN | 14.3 |( 0.12 )| |I | | | | | |76044 | +601473 |V1473 Ori |053457.9-052946 |INB | 15.1 |( 0.12 )| |I | | | | | |76044 76047| +601474 |V1474 Ori |053458.5-053250 |INB | 16.0 |( 0.17 )| |I | | | | | |76044 76047| +601475 |V1475 Ori |053458.9-052803 |INB | 14.2 |( 0.09 )| |I | | | | | |76044 76047| +601476 |V1476 Ori |053459.3-050530 |IN | 14.1 |( 0.22 )| |I | | | | | |76044 USNO | +601477 |V1477 Ori |053459.6-052540 |INB | 13.6 |( 0.27 )| |I | | | | | |76044 76047| +601478 |V1478 Ori |053500.2-051851 |INB | 14.3 |( 0.20 )| |I | | | | | |76044 76047| +601479 |V1479 Ori |053501.5-052821 |INB | 14.0 |( 0.14 )| |I | | | | | |76044 76047| +601480 |V1480 Ori |053502.0-051537 |INB | 14.0 |( 0.32 )| |I | | | | | |76044 | +601481 |V1481 Ori |053503.9-052903 |INB | 12.8 |( 0.28 )| |I | | | | | |76044 76047| +601482 |V1482 Ori |053504.0-052637 |INB | 13.6 |( 0.14 )| |I | | | | | |76044 76047| +601483 |V1483 Ori |053504.5-052604 |INB | 13.9 |( 0.1 )| |I | | | | | |76048 76047| +601484 |V1484 Ori |053505.7-052626 |INB | 13.4 |( 0.11 )| |I | | | | | |76044 76047| +601485 |V1485 Ori |053508.0-053647 |INB | 14.9 |( 0.13 )| |I | | | | | |76048 76047| +601486 |V1486 Ori |053509.1-053058 |IN | 16.3 |( 0.20 )| |I | | | | | |76044 | +601487 |V1487 Ori |053510.5-052246 |INB | 12.38 |( 0.19 )| |Ic| | | | | |76051 76047| +601488 |V1488 Ori |053511.1-053500 |INB | 13.9 |( 0.08 )| |I | | | | | |76048 76047| +601489 |V1489 Ori |053511.2-054136 |IN | 16.2 |( 0.23 )| |I | | | | | |76044 2MASS| +601490 |V1490 Ori |053511.9-054538 |IN | 13.3 |( 0.35 )| |I | | | | | |76044 76046| +601491 |V1491 Ori |053512.6-045156 |IN | 12.9 |( 0.15 )| |I | | | | | |76044 76046| +601492 |V1492 Ori |053512.7-051614 |INB | 14.5 |( 0.14 )| |I | | | | | |76044 76047| +601493 |V1493 Ori |053513.4-053048 |INB | 14.1 |( 0.13 )| |I | | | | | |76044 76047| +601494 |V1494 Ori |053513.6-052426 |INB | 13.0 |( 0.4 )| |I | | | | | |76048 76047| +601495 |V1495 Ori |053513.6-052846 |IN | 14.4 |( 0.40 )| |I | | | | | |76044 76047| +601496 |V1496 Ori |053513.8-052207 |FU: | 12.30 |( 0.59 )| |Ic| | | | | |76051 76047| +601497 |V1497 Ori |053514.3-045522 |IN | 14.4 |( 0.28 )| |I | | | | | |76044 76052| +601498 |V1498 Ori |053514.4-053247 |IN | 14.8 |( 0.16 )| |I | | | | | |76044 76047| +601499 |V1499 Ori |053514.9-055637 |IN | 14.6 |( 0.21 )| |I | | | | | |76044 76045| +601500 |V1500 Ori |053514.9-053640 |INB | 14.5 |( 0.32 )| |I | | | | | |76044 76047| +601501 |V1501 Ori |053515.5-052514 |INB | 11.7 |( 0.25 )| |I | | | | | |76048 76047| +601502 |V1502 Ori |053515.7-052628 |INB | 14.4 |( 0.7 )| |I | | | | | |76044 76047| +601503 |V1503 Ori |053515.8-050326 |IN | 16.2 |( 0.24 )| |I | | | | | |76044 2MASS| +601504 |V1504 Ori |053515.7-053259 |IN | 13.9 |( 0.45 )| |I | | | | | |76048 76047| +601505 |V1505 Ori |053516.2-053101 |INB | 15.0 |( 0.12 )| |I | | | | | |76044 76047| +601506 |V1506 Ori |053516.5-054240 |IN | 12.4 |( 0.16 )| |I | | | | | |76044 76046| +601507 |V1507 Ori |053517.2-054154 |IN | 14.8 |( 0.10 )| |I | | | | | |76044 2MASS| +601508 |V1508 Ori |053517.4-050949 |INB | 15.2 |( 0.18 )| |I | | | | | |76044 76047| +601509 |V1509 Ori |053517.5-051740 |INB | 14.5 |( 0.12 )| |I | | | | | |76044 76047| +601510 |V1510 Ori |053517.5-052257 |INB | 12.35 |( 1.5 )| |Ic| | | | | |76048 76047| +601511 |V1511 Ori |053517.9-053516 |INB | 14.7 |( 1.0 )| |I | | | | | |76044 76047| +601512 |V1512 Ori |053518.0-052935 |INB | 13.3 |( 0.15 )| |I | | | | | |76048 76047| +601513 |V1513 Ori |053518.2-053142 |IN | 16.0 |( 0.47 )| |I | | | | | |76044 | +601514 |V1514 Ori |053519.8-053038 |IN | 14.3 |( 0.15 )| |I | | | | | |76044 76047| +601515 |V1515 Ori |053519.9-053354 |IN | 13.6 |( 0.16 )| |I | | | | | |76044 76047| +601516 |V1516 Ori |053520.0-052538 |INB | 13.2 |( 0.6 )| |I | | | | | |76048 76047| +601517 |V1517 Ori |053520.1-052134 |INB | 12.9 |( 0.99 )| |Ic| | | | | |76051 76047| +601518 |V1518 Ori |053520.3-053217 |INB | 15.7 |( 0.17 )| |I | | | | | |76044 76047| +601519 |V1519 Ori |053520.4-050227 |IN | 14.0 |( 0.16 )| |I | | | | | |76044 USNO | +601520 |V1520 Ori |053520.4-052330 |INB | 13.04 |( 0.40 )| |Ic| | | | | |76051 76047| +601521 |V1521 Ori |053520.5-052044 |IN | 15.2 |( 1.0 )| |I | | | | | |76044 76047| +601522 |V1522 Ori |053521.0-052809 |INB | 13.9 |( 0.11 )| |I | | | | | |76044 76047| +601523 |V1523 Ori |053521.3-052643 |INB | 12.1 |( 0.4 )| |I | | | | | |76048 76047| +601524 |V1524 Ori |053521.3-052346 |IN | 14.16 |( 1.3 )| |Ic| | | | | |76048 76047| +601525 |V1525 Ori |053522.0-052815 |IN | 14.4 |( 0.13 )| |I | | | | | |76048 76047| +601526 |V1526 Ori |053522.3-053527 |INB | 14.4 |( 0.14 )| |I | | | | | |76044 76047| +601527 |V1527 Ori |053522.5-052344 |INB | 13.12 |( 0.39 )| |Ic| | | | | |76051 76047| +601528 |V1528 Ori |053522.8-053137 |INB | 14.1 |( 0.25 )| |I | | | | | |76048 76047| +601529 |V1529 Ori |053522.8-054443 |IN | 13.5 |( 0.12 )| |I | | | | | |76044 USNO | +601530 |V1530 Ori |053523.3-052810 |INB | 14.8 |( 0.35 )| |I | | | | | |76044 76047| +601531 |V1531 Ori |053523.3-051851 |INB | 13.1 |( 0.15 )| |I | | | | | |76044 76047| +601532 |V1532 Ori |053523.7-055229 |IN | 13.9 |( 0.17 )| |I | | | | | |76044 2MASS| +601533 |V1533 Ori |053525.2-053321 |INB | 15.0 |( 0.20 )| |I | | | | | |76044 76047| +601534 |V1534 Ori |053525.4-055322 |IN | 13.7 |( 0.23 )| |I | | | | | |76044 2MASS| +601535 |V1535 Ori |053525.4-051048 |INB | 12.5 |( 0.2 )| |I | | | | | |76044 76047| +601536 |V1536 Ori |053525.7-044931 |IN | 14.8 |( 0.17 )| |I | | | | | |76044 2MASS| +601537 |V1537 Ori |053525.6-053038 |EW: | 14.4 |( 0.65 )| |I | | | | | |76048 76047| +601538 |V1538 Ori |053525.7-052935 |INB | 16.0 |( 0.22 )| |I | | | | | |76044 76047| +601539 |V1539 Ori |053527.5-053520 |INB | 12.0 |( 0.20 )| |I | | | | | |76044 76047| +601540 |V1540 Ori |053527.5-052831 |INB | 13.8 |( 0.12 )| |I | | | | | |76048 76047| +601541 |V1541 Ori |053527.7-051805 |INB | 15.3 |( 0.25 )| |I | | | | | |76044 76047| +601542 |V1542 Ori |053527.8-052802 |INB | 13.8 |( 0.14 )| |I | | | | | |76048 76047| +601543 |V1543 Ori |053528.1-051138 |INB | 15.4 |( 0.50 )| |I | | | | | |76044 76047| +601544 |V1544 Ori |053528.2-050050 |IN | 14.0 |( 0.20 : )| |I | | | | | |76044 USNO | +601545 |V1545 Ori |053528.3-051823 |INB | 13.9 |( 0.12 )| |I | | | | | |76044 76047| +601546 |V1546 Ori |053528.3-055913 |IN | 13.9 |( 0.14 )| |I | | | | | |76044 76045| +601547 |V1547 Ori |053528.6-044727 |IN | 14.3 |( 0.17 )| |I | | | | | |76044 76046| +601548 |V1548 Ori |053528.9-053507 |INB | 14.0 |( 0.2 )| |I | | | | | |76048 76047| +601549 |V1549 Ori |053529.0-054950 |IN | 12.2 |( 0.16 )| |I | | | | | |76044 76046| +601550 |V1550 Ori |053529.1-052911 |INB | 13.5 |( 0.6 )| |I | | | | | |76048 76047| +601551 |V1551 Ori |053529.3-054538 |IN | 14.4 |( 0.12 )| |I | | | | | |76044 USNO | +601552 |V1552 Ori |053529.6-053112 |INB | 13.7 |( 0.13 )| |I | | | | | |76048 76047| +601553 |V1553 Ori |053530.2-055117 |IN | 13.2 |( 0.21 )| |I | | | | | |76044 76046| +601554 |V1554 Ori |053530.2-052552 |INB | 13.7 |( 0.17 )| |I | | | | | |76044 76047| +601555 |V1555 Ori |053530.8-053036 |INB | 13.9 |( 0.45 )| |I | | | | | |76048 76047| +601556 |V1556 Ori |053530.9-054305 |IN | 13.3 |( 0.07 )| |I | | | | | |76044 76046| +601557 |V1557 Ori |053531.1-051228 |INB | 14.3 |( 0.15 )| |I | | | | | |76044 76047| +601558 |V1558 Ori |053531.2-054011 |IN | 13.4 |( 0.12 )| |I | | | | | |76044 76046| +601559 |V1559 Ori |053531.4-052817 |INB | 15.0 |( 0.5 )| |I | | | | | |76048 76047| +601560 |V1560 Ori |053531.6-054028 |IN | 15.4 |( 0.16 )| |I | | | | | |76044 2MASS| +601561 |V1561 Ori |053531.6-053004 |INB | 14.5 |( 0.45 )| |I | | | | | |76048 76047| +601562 |V1562 Ori |053531.8-052934 |INB | 14.1 |( 0.07 )| |I | | | | | |76048 76047| +601563 |V1563 Ori |053532.3-051808 |IN | 13.2 |( 0.09 )| |I | | | | | |76044 76047| +601564 |V1564 Ori |053532.3-054405 |IN | 14.6 |( 0.18 )| |I | | | | | |76044 USNO | +601565 |V1565 Ori |053532.5-052611 |INB | 13.1 |( 0.13 )| |I | | | | | |76048 76047| +601566 |V1566 Ori |053533.1-044359 |IN | 12.7 |( 0.14 )| |I | | | | | |76044 76045| +601567 |V1567 Ori |053536.7-055856 |IN | 14.1 |( 0.14 )| |I | | | | | |76044 USNO | +601568 |V1568 Ori |053536.7-053743 |INB | 12.7 |( 0.10 )| |I | | | | | |76044 76047| +601569 |V1569 Ori |053537.2-051030 |IN | 13.8 |( 0.08 )| |I | | | | | |76044 76047| +601570 |V1570 Ori |053537.5-055128 |IN | 15.6 |( 0.32 )| |I | | | | | |76044 2MASS| +601571 |V1571 Ori |053538.0-052822 |INB | 13.7 |( 0.08 )| |I | | | | | |76048 76047| +601572 |V1572 Ori |053538.5-045941 |IN | 14.2 |( 0.42 )| |I | | | | | |76044 76045| +601573 |V1573 Ori |053538.6-050957 |IN | 15.3 |( 0.15 )| |I | | | | | |76044 76047| +601574 |V1574 Ori |053538.9-053634 |INB | 15.5 |( 0.25 )| |I | | | | | |76044 76047| +601575 |V1575 Ori |053539.1-054100 |IN | 13.5 |( 0.19 )| |I | | | | | |76044 76046| +601576 |V1576 Ori |053539.1-050856 |INB | 12.0 |( 0.12 )| |I | | | | | |76044 76047| +601577 |V1577 Ori |053539.8-044405 |IN | 13.0 |( 0.07 )| |I | | | | | |76044 76046| +601578 |V1578 Ori |053540.0-050637 |IN | 15.6 |( 0.33 )| |I | | | | | |76044 2MASS| +601579 |V1579 Ori |053541.0-050625 |IN | 14.1 |( 0.11 )| |I | | | | | |76044 76046| +601580 |V1580 Ori |053544.6-045010 |IN | 13.6 |( 0.21 )| |I | | | | | |76044 76046| +601581 |V1581 Ori |053547.5-051218 |IN | 13.7 |( 0.06 )| |I | | | | | |76044 76047| +601582 |V1582 Ori |053547.6-051915 |INB | 15.3 |( 0.27 )| |I | | | | | |76044 76047| +601583 |V1583 Ori |053548.1-053156 |INB | 13.7 |( 0.20 )| |I | | | | | |76044 76047| +601584 |V1584 Ori |053548.9-050029 |IN | 14.7 |( 0.30 )| |I | | | | | |76044 USNO | +601585 |V1585 Ori |053552.2-053925 |IN | 14.7 |( 0.17 )| |I | | | | | |76044 2MASS| +601586 |V1586 Ori |053554.6-050628 |IN | 15.5 |( 0.18 )| |I | | | | | |76044 GSC22| +601587 |V1587 Ori |053555.0-051316 |IN | 13.9 |( 0.08 )| |I | | | | | |76044 76047| +601588 |V1588 Ori |053556.1-045655 |IN | 12.8 |( 0.17 )| |I | | | | | |76044 76046| +601589 |V1589 Ori |053556.9-054519 |IN | 14.6 |( 0.38 )| |I | | | | | |76044 USNO | +601590 |V1590 Ori |053557.5-053952 |IN | 14.5 |( 0.12 )| |I | | | | | |76044 GSC22| +601591 |V1591 Ori |053559.0-055909 |IN | 14.2 |( 0.16 )| |I | | | | | |76044 USNO | +601592 |V1592 Ori |053559.5-053711 |INB | 14.6 |( 0.15 )| |I | | | | | |76044 76047| +601593 |V1593 Ori |053559.9-050431 |IN | 16.2 |( 0.19 )| |I | | | | | |76044 2MASS| +601594 |V1594 Ori |053600.2-044346 |IN | 14.5 |( 0.21 )| |I | | | | | |76044 USNO | +601595 |V1595 Ori |053600.8-054107 |IN | 13.0 |( 0.22 )| |I | | | | | |76044 76046| +601596 |V1596 Ori |053601.3-051911 |INB | 15.0 |( 0.13 )| |I | | | | | |76044 76047| +601597 |V1597 Ori |053606.4-044154 |IN | 13.2 |( 0.13 )| |I | | | | | |76044 76046| +601598 |V1598 Ori |053607.3-054022 |IN | 13.0 |( 0.20 )| |I | | | | | |76044 76045| +601599 |V1599 Ori |053610.0-050536 |IN | 16.2 |( 0.16 )| |I | | | | | |76044 2MASS| +601600 |V1600 Ori |053609.9-052731 |INB | 15.5 |( 0.32 )| |I | | | | | |76044 | +601601 |V1601 Ori |053611.4-053852 |IN | 14.9 |( 0.14 )| |I | | | | | |76044 USNO | +601602 |V1602 Ori |053612.1-053329 |INB | 15.9 |( 0.20 )| |I | | | | | |76044 | +601603 |V1603 Ori |053613.1-045514 |IN | 14.7 |( 0.16 )| |I | | | | | |76044 USNO | +601604 |V1604 Ori |053615.8-045520 |IN | 15.4 |( 0.19 )| |I | | | | | |76044 GSC22| +601605 |V1605 Ori |053616.4-054003 |IN | 15.4 |( 0.24 )| |I | | | | | |76044 USNO | +601606 |V1606 Ori |053619.2-050029 |IN | 15.7 |( 0.19 )| |I | | | | | |76044 USNO | +601607 |V1607 Ori |053624.1-054448 |IN | 12.5 |( 0.22 )| |I | | | | | |76044 76046| +601608 |V1608 Ori |053625.6-051843 |IN | 15.3 |( 0.22 : )| |I | | | | | |76044 USNO | +601609 |V1609 Ori |053625.8-045020 |IN | 13.4 |( 0.16 )| |I | | | | | |76044 USNO | +601610 |V1610 Ori |053626.9-055630 |IN | 16.2 |( 0.21 : )| |I | | | | | |76044 2MASS| +601611 |V1611 Ori |053626.9-045506 |IN | 16.0 |( 0.30 )| |I | | | | | |76044 GSC22| +601612 |V1612 Ori |053629.6-052007 |INB | 13.7 |( 0.24 )| |I | | | | | |76044 76045| +601613 |V1613 Ori |053630.1-052006 |IN | 13.5 |( 0.22 )| |I | | | | | |76044 | +601614 |V1614 Ori |053631.5-052600 |IN | 16.3 |( 0.29 )| |I | | | | | |76044 2MASS| +601615 |V1615 Ori |053631.7-052636 |IN | 14.2 |( 0.12 )| |I | | | | | |76044 USNO | +601616 |V1616 Ori |053632.9-060050 |IN | 15.7 |( 0.22 )| |I | | | | | |76044 GSC22| +601617 |V1617 Ori |053634.4-054055 |IN | 15.4 |( 0.12 )| |I | | | | | |76044 GSC22| +601618 |V1618 Ori |053634.6-053214 |IN | 12.7 |( 0.07 )| |I | | | | | |76044 76046| +601619 |V1619 Ori |053638.1-053710 |IN | 15.2 |( 0.12 )| |I | | | | | |76044 USNO | +601620 |V1620 Ori |054404.5+111955 |SR: | 11.8 | 13.4 | |V | | | | | |76054 GSC | +601621 |V1621 Ori |054407.8+100543 |SR | 11.92 | 12.12 | |* | | | | | |76055 GSC | +601622 |V1622 Ori |054543.6+093536 |SR: | 12.6 | 13.8 | |V | | | | | |76054 USNO | +601623 |V1623 Ori |055227.9+062053 |SRA | 11.7 | 12.5 | |V | | | | | |76056 GSC | +601624 |V1624 Ori |055727.5+194526 |SR: | 12.6 | 13.7 | |* | | | | | |76057 USNO | +601625 |V1625 Ori |060420.6-022852 |SR: | 13.5 | 14.2 | |V | | | | | |76012 GSC | +601626 |V1626 Ori |060520.1+100426 |E | 11.57 | 12.07 | |* | | | | | |76058 GSC | +601627 |V1627 Ori |060607.9-014402 |SR: | 13.4 | 14.8 | |V | | | | | |76012 GSC | +601628 |V1628 Ori |060621.5-014748 |SR: | 13.4 | 15.2 | |V | | | | | |76012 GSC | +601629 |V1629 Ori |060833.6-004252 |SR: | 11.9 | 12.6 | |V | | | | | |76012 GSC | +601630 |V1630 Ori |061545.6+005447 |LB | 13.5 | 14.5 | |V | | | | | |76012 USNO | +601631 |V1631 Ori |061659.5-020646 |SR: | 13.3 |< 15.1 | |V | | | | | |76012 GSC | +601632 |V1632 Ori |061848.5+005054 |SR: | 13.2 | 14.0 | |V | | | | | |76012 GSC | +601633 |V1633 Ori |061856.2+040920 |EA | 12.1 |( 0.7 )| |V | | | | | |76140 UCAC2| +601634 |V1634 Ori |062040.0+061608 |SRA: | 11.62 | 12.16 | |* | | | | | |76060 GSC | +601635 |V1635 Ori |062454.0+101405 |E | 11.72 | 12.11 | |* | | | | | |76061 GSC | +601636 |V1636 Ori |044718.6+050335 |RPHS | 15.2 |( 0.03 )| |B | | | | | |77009 USNO | +601637 |V1637 Ori |045308.6-032953 |EA | 12.3 |( 1.12 )| |V | | | | | |77038 77215| +601638 |V1638 Ori |045321.9-032255 |EB | 11.5 |( 0.39 )| |V | | | | | |77039 GSC | +601639 |V1639 Ori |050253.7+103650 |EW: | 15.2 |( 0.31 )| |R | | | | | |77028 GSC | +601640 |V1640 Ori |051722.0+101828 |RRC | 12.38 | 12.93 | |V | | | | | |77042 GSC | +601641 |V1641 Ori |052427.8-103924 |M | 11.5 | 16.2 | |P | | | | | |77044 77216| +601642 |V1642 Ori |052920.6+004128 |E | 12.30 | 13.07 | |V | | | | | |77045 GSC | +601643 |V1643 Ori |053234.5-071240 |DSCTC | 10.26 |( 0.03 * )| |V | | | | | |77046 DM | +601644 |V1644 Ori |055807.5+172059 |M | 11.7 | 15.8 | |I | | | | | |77012 77013| +601645 |V1645 Ori |060107.3-021509 |SR | 8.77 | 8.98 | |V | | | | | |77053 DM | +601646 |V1646 Ori |061542.4+162813 |LB | 11.6 | 12.3 | |* | | | | | |77125 GSC | +601647 |V1647 Ori *|054613.1-000605 |FU | 18.1 |< 20. | |V | | | | | |78075 78076| +601648 |V1648 Ori |045530.3+030428 |M | 12.9 |< 14.6 | |V |51565 | | 396. | | |78040 GSC | +601649 |V1649 Ori |052331.1+051923 |DSCTC | 6.34 |( 0.01 b )| |V | | | 0.0259 | |A2V |78037 DM | +601650 |V1650 Ori *|052911.4-060805 |INB: | 10.43 | 11.5 : | |V | | | | |F7 |78038 DM | +601651 |V1651 Ori |053127.2-051029 |INB | 12.00 |( 0.07 )| |Ic| | | 4.08 : | | |78072 GSC | +601652 |V1652 Ori |053131.1-050629 |INB | 12.95 |( 0.07 )| |Ic| | | 14.77 : | | |78072 USNO | +601653 |V1653 Ori |053202.3-052337 |INB | 14.21 |( 0.04 )| |Ic| | | 5.47 | |M3 |78072 USNO | +601654 |V1654 Ori |053211.0-052435 |INB | 13.55 |( 0.05 )| |Ic| | | 3.80 | |M3 |78072 USNO | +601655 |V1655 Ori |053211.7-050708 |INB | 11.96 |( 0.05 )| |Ic| | | 4.12 | |K8 |78072 GSC | +601656 |V1656 Ori |053218.9-050527 |INB | 13.48 |( 0.15 )| |Ic| | | 1.24 | |M1 |78072 USNO | +601657 |V1657 Ori |053308.9-052310 |INB | 12.36 |( 0.10 )| |Ic| | | 10.96 | |K4 |78072 GSC | +601658 |V1658 Ori |053314.4-051340 |INB | 13.56 |( 0.32 )| |Ic| | | 5.99 | | |78072 USNO | +601659 |V1659 Ori |053315.0-050039 |INB | 14.20 |( 0.13 )| |Ic| | | 5.65 | |M4.5 |78072 USNO | +601660 |V1660 Ori |053320.4-051124 |INB | 14.02 |( 0.08 )| |Ic| | | 7.36 | |M3.5 |78072 USNO | +601661 |V1661 Ori |053321.8-050417 |INB | 13.87 |( 0.08 )| |Ic| | | 2.06 | |M3.5 |78072 USNO | +601662 |V1662 Ori |053322.5-052303 |INB | 14.04 |( 0.10 )| |Ic| | | 2.67 | |M3.5 |78072 USNO | +601663 |V1663 Ori |053331.1-052523 |INB | 13.07 |( 0.07 )| |Ic| | | 39.96 : | |M4 |78072 USNO | +601664 |V1664 Ori |053339.8-051954 |INB | 14.39 |( 0.17 )| |Ic| | | 9.66 | |M3.5 |78072 USNO | +601665 |V1665 Ori |053341.6-045600 |INB | 14.45 |( 0.08 )| |Ic| | | 7.55 | |M5.5 |78072 USNO | +601666 |V1666 Ori |053344.5-060520 |INB | 14.50 |( 0.11 )| |Ic| | | 15.42 | | |78072 USNO | +601667 |V1667 Ori |053346.1-053427 |INB | 12.34 |( 0.11 )| |Ic| | | 4.65 | |K8 |78072 USNO | +601668 |V1668 Ori |053346.3-061305 |INB | 14.79 |( 0.08 )| |Ic| | | 0.36 | |M6 |78072 USNO | +601669 |V1669 Ori |053354.8-050831 |INB | 14.69 |( 0.08 )| |Ic| | | 0.46 | |M4.5 |78072 USNO | +601670 |V1670 Ori |053414.4-045834 |INB | 14.62 |( 0.06 )| |Ic| | | 1.43 | | |78072 USNO | +601671 |V1671 Ori |053418.5-053400 |INB | 12.60 |( 0.10 )| |Ic| | | 6.29 | |M0: |78072 2MASS| +601672 |V1672 Ori |053420.3-043403 |INB | 13.52 |( 0.06 )| |Ic| | | 11.14 | | |78072 USNO | +601673 |V1673 Ori |053420.7-043502 |INB | 14.12 |( 0.08 )| |Ic| | | 2.99 | |M3.5 |78072 USNO | +601674 |V1674 Ori |053420.8-052329 |INB | 14.18 |( 0.10 )| |Ic| | | 2.52 | |M3.5 |78072 2MASS| +601675 |V1675 Ori |053423.8-050816 |INB | 13.70 |( 0.08 )| |Ic| | | 2.22 | |M3 |78072 USNO | +601676 |V1676 Ori |053423.9-051540 |INB | 11.19 |( 0.16 Ic)| |J | | | 21.45 | |M0.5 |78072 USNO | +601677 |V1677 Ori |053424.3-060656 |INB | 12.96 |( 0.10 )| |Ic| | | 2.09 | |M0 |78072 USNO | +601678 |V1678 Ori |053425.3-045440 |INB | 13.24 |( 0.09 )| |Ic| | | 2.26 | | |78072 USNO | +601679 |V1679 Ori |053426.1-061533 |INB | 15.64 |( 0.14 )| |Ic| | | 0.12 | | |78072 USNO | +601680 |V1680 Ori |053428.1-061613 |INB | 12.67 |( 0.30 )| |Ic| | | 7.00 | |K8 |78072 USNO | +601681 |V1681 Ori |053429.6-050429 |INB | 15.50 |( 0.10 )| |Ic| | | 2.11 | | |78072 2MASS| +601682 |V1682 Ori |053430.4-045705 |INB | 14.40 |( 0.07 )| |Ic| | | 3.09 | | |78072 USNO | +601683 |V1683 Ori |053431.0-055804 |INB | 15.53 |( 0.10 )| |Ic| | | 1.68 | |M5 |78072 2MASS| +601684 |V1684 Ori |053432.2-054149 |INB | 14.67 |( 0.10 )| |Ic| | | 2.67 | |M5 |78072 2MASS| +601685 |V1685 Ori |053433.7-044415 |INB | 14.95 |( 0.14 )| |Ic| | | 0.38 | | |78072 USNO | +601686 |V1686 Ori |053435.5-042721 |INB | 11.17 |( 0.04 )| |Ic| | | 4.47 | |K1 |78072 GSC | +601687 |V1687 Ori |053437.2-043824 |INB | 15.41 |( 0.11 )| |Ic| | | 0.78 | |M6 |78072 2MASS| +601688 |V1688 Ori |053438.0-045109 |INB | 14.06 |( 0.10 )| |Ic| | | 8.42 | |K7 |78072 USNO | +601689 |V1689 Ori |053438.7-055743 |INB | 12.09 |( 0.09 )| |Ic| | | 4.42 | |K6 |78072 USNO | +601690 |V1690 Ori |053439.9-060834 |INB | 13.79 |( 0.04 )| |Ic| | | 2.66 | |M3 |78072 USNO | +601691 |V1691 Ori |053440.6-044332 |INB | 14.58 |( 0.09 )| |Ic| | | 18.88 | | |78072 2MASS| +601692 |V1692 Ori |053440.9-044020 |INB | 12.46 |( 0.08 )| |Ic| | | 1.87 | |K7 |78072 USNO | +601693 |V1693 Ori |053441.0-054518 |INB | 11.60 |( 0.20 )| |Ic| | | 4.61 | |K8 |78072 USNO | +601694 |V1694 Ori |053441.8-045346 |INB | 13.13 |( 0.44 )| |Ic| | | 7.08 | | |78072 USNO | +601695 |V1695 Ori |053442.0-050225 |INB | 14.98 |( 0.16 )| |Ic| | | 1.64 | |M4: |78072 2MASS| +601696 |V1696 Ori |053443.1-061239 |INB | 13.49 |( 0.22 )| |Ic| | | 14.14 | |M2 |78072 USNO | +601697 |V1697 Ori |053444.0-043939 |INB | 15.28 |( 0.08 )| |Ic| | | 1.99 | | |78072 2MASS| +601698 |V1698 Ori |053445.0-045539 |INB | 15.06 |( 0.10 )| |Ic| | | 2.03 | |M4.5 |78072 2MASS| +601699 |V1699 Ori |053446.4-045402 |INB | 16.22 |( 0.31 )| |Ic| | | 0.72 | | |78072 2MASS| +601700 |V1700 Ori |053447.0-045913 |INB | 13.19 |( 0.07 )| |Ic| | | 13.07 | | |78072 USNO | +601701 |V1701 Ori |053447.6-054351 |INB | 11.34 |( 0.11 )| |Ic| | | 4.18 | | |78072 GSC | +601702 |V1702 Ori |053448.1-061812 |INB | 14.21 |( 0.05 )| |Ic| | | 2.75 | | |78072 USNO | +601703 |V1703 Ori |053448.2-044740 |INB | 11.55 |( 0.09 )| |Ic| | | 6.82 | |M1 |78072 USNO | +601704 |V1704 Ori |053448.6-044750 |INB | 14.05 |( 0.22 )| |Ic| | | 5.65 | |M3.5 |78072 2MASS| +601705 |V1705 Ori |053450.9-060014 |INB | 13.51 |( 0.11 )| |Ic| | | 5.82 | |M1 |78072 USNO | +601706 |V1706 Ori |053451.1-044341 |INB | 11.64 |( 0.06 )| |Ic| | | 1.29 | | |78072 USNO | +601707 |V1707 Ori |053451.3-044757 |INB | 11.38 |( 0.10 )| |Ic| | | 1.69 : | | |78072 2MASS| +601708 |V1708 Ori |053452.1-060321 |INB | 13.22 |( 0.07 )| |Ic| | | 1.82 | | |78072 USNO | +601709 |V1709 Ori |053452.2-042816 |INB | 13.13 |( 0.18 )| |Ic| | | 5.11 | | |78072 USNO | +601710 |V1710 Ori |053455.6-060104 |INB | 13.39 |( 0.05 )| |Ic| | | 1.02 : | | |78072 2MASS| +601711 |V1711 Ori |053455.7-043749 |INB | 13.91 |( 0.05 )| |Ic| | | 10.14 | |M2.5 |78072 USNO | +601712 |V1712 Ori |053459.2-054456 |INB | 14.79 |( 0.6 )| |Ic| | | 59.87 : | | |78072 2MASS| +601713 |V1713 Ori |053502.0-044115 |INB | 15.05 |( 0.09 )| |Ic| | | 5.44 | |M3 |78072 2MASS| +601714 |V1714 Ori |053502.4-044916 |INB | 13.78 |( 0.16 )| |Ic| | | 5.42 | |M2.5 |78072 2MASS| +601715 |V1715 Ori |053502.7-044929 |INB | 12.10 |( 0.05 )| |Ic| | | 6.96 | | |78072 2MASS| +601716 |V1716 Ori |053502.8-055103 |INB | 13.60 |( 0.15 )| |Ic| | | 10.71 | | |78072 USNO | +601717 |V1717 Ori |053503.0-054534 |INB | 14.96 |( 0.30 )| |Ic| | | 12.41 | | |78072 2MASS| +601718 |V1718 Ori |053503.3-044921 |INT | 10.82 |( 0.34 )| |Ic| | | 10.46 | |ea |78072 2MASS| +601719 |V1719 Ori |053504.0-054052 |INB | 13.35 |( 0.08 )| |Ic| | | 18.51 | |M3.5 |78072 2MASS| +601720 |V1720 Ori |053505.0-044913 |INB | 12.83 |( 0.12 )| |Ic| | | 24.87 | |M1.5 |78072 2MASS| +601721 |V1721 Ori |053506.8-051039 |INB | 14.02 |( 0.06 )| |Ic| | | 43.38 : | |M5 |78072 2MASS| +601722 |V1722 Ori |053507.0-045457 |INB | 13.44 |( 0.11 )| |Ic| | | 8.16 | |M1 |78072 USNO | +601723 |V1723 Ori |053507.9-043549 |INB | 14.45 |( 0.18 )| |Ic| | | 13.24 | | |78072 USNO | +601724 |V1724 Ori |053508.8-050441 |INB | 13.87 |( 0.05 )| |Ic| | | 1.97 | |M4 |78072 USNO | +601725 |V1725 Ori |053510.1-045108 |INB | 13.86 |( 0.10 )| |Ic| | | 12.14 | | |78072 2MASS| +601726 |V1726 Ori |053511.0-044713 |INB | 14.12 |( 0.08 )| |Ic| | | 2.50 | |M3.5 |78072 2MASS| +601727 |V1727 Ori |053512.5-044426 |INB | 11.97 |( 0.11 )| |Ic| | | 1.14 | |K6 |78072 2MASS| +601728 |V1728 Ori |053514.7-050225 |INB | 14.13 |( 0.11 )| |Ic| | | 8.06 | | |78072 USNO | +601729 |V1729 Ori |053516.3-061843 |INB | 14.48 |( 0.29 )| |Ic| | | 3.68 | |M6 |78072 USNO | +601730 |V1730 Ori |053516.8-044033 |INB | 11.59 |( 0.21 )| |Ic| | | 2.64 | |K7 |78072 2MASS| +601731 |V1731 Ori |053519.5-053652 |INB | 13.45 |( 0.08 )| |Ic| | | 5.82 | | |78072 2MASS| +601732 |V1732 Ori |053519.8-054541 |INB | 13.77 |( 0.10 )| |Ic| | | 0.60 | |M3.5 |78072 USNO | +601733 |V1733 Ori |053520.8-045834 |INB | 14.27 |( 0.16 )| |Ic| | | 5.02 | |K8 |78072 USNO | +601734 |V1734 Ori |053521.3-055636 |INB | 14.13 |( 0.09 )| |Ic| | | 3.38 | | |78072 2MASS| +601735 |V1735 Ori |053522.4-050911 |INB | 11.67 |( 0.10 )| |Ic| | | 4.78 | |K4 |78072 USNO | +601736 |V1736 Ori |053523.2-044303 |INB | 12.52 |( 0.10 )| |Ic| | | 1.07 | |M1 |78072 2MASS| +601737 |V1737 Ori |053526.0-043457 |INB | 15.02 |( 0.11 )| |Ic| | | 5.50 | |M4.5 |78072 USNO | +601738 |V1738 Ori |053527.9-044503 |INB | 11.83 |( 0.04 )| |Ic| | | 29.99 : | | |78072 USNO | +601739 |V1739 Ori |053528.6-045504 |INB | 11.17 |( 0.06 )| |Ic| | | 0.53 | |K1 |78072 USNO | +601740 |V1740 Ori |053529.0-050604 |INB | 12.13 |( 0.07 )| |Ic| | | 3.30 | |K1,2IV-V |78072 USNO | +601741 |V1741 Ori |053530.5-045129 |INB | 12.76 |( 0.13 )| |Ic| | | 3.20 | |K7 |78072 2MASS| +601742 |V1742 Ori |053531.5-061419 |INB | 14.03 |( 0.10 )| |Ic| | | 7.40 | |M3.5 |78072 USNO | +601743 |V1743 Ori |053531.7-044108 |INB | 14.71 |( 0.21 )| |Ic| | | 10.67 | |M3.5 |78072 2MASS| +601744 |V1744 Ori |053533.1-054708 |INB | 14.01 |( 0.06 )| |Ic| | | 2.81 | |M3.5 |78072 2MASS| +601745 |V1745 Ori |053533.5-045602 |INB | 14.32 |( 0.11 )| |Ic| | | 0.94 | | |78072 2MASS| +601746 |V1746 Ori |053534.0-045411 |INB | 13.65 |( 0.10 )| |Ic| | | 3.40 | |M3.5 |78072 2MASS| +601747 |V1747 Ori |053534.2-043342 |INB | 13.74 |( 0.07 )| |Ic| | | 3.91 | | |78072 USNO | +601748 |V1748 Ori |053536.6-050439 |INB | 13.23 |( 0.16 )| |Ic| | | 6.94 | | |78072 USNO | +601749 |V1749 Ori |053537.4-060000 |INB | 14.13 |( 0.07 )| |Ic| | | 2.76 | |M3.5 |78072 USNO | +601750 |V1750 Ori |053538.0-044833 |INB | 13.67 |( 0.13 )| |Ic| | | 15.45 | |M2.5 |78072 2MASS| +601751 |V1751 Ori |053540.8-044831 |INB | 11.12 |( 0.10 )| |Ic| | | 5.50 | |K0 |78072 2MASS| +601752 |V1752 Ori |053541.7-054926 |INB | 14.58 |( 0.04 )| |Ic| | | 3.17 | | |78072 USNO | +601753 |V1753 Ori |053543.4-054055 |INB | 13.70 |( 0.06 )| |Ic| | | 6.63 | | |78072 2MASS| +601754 |V1754 Ori |053544.0-055653 |INB | 14.16 |( 0.11 )| |Ic| | | 8.38 | |M3 |78072 USNO | +601755 |V1755 Ori |053544.4-045717 |INB | 14.68 |( 0.12 )| |Ic| | | 3.93 | |M6 |78072 2MASS| +601756 |V1756 Ori |053544.5-044416 |INB | 13.16 |( 0.18 )| |Ic| | | 6.58 | |M1 |78072 USNO | +601757 |V1757 Ori |053547.1-061145 |INB | 15.67 |( 0.24 )| |Ic| | | 4.15 | |M6 |78072 2MASS| +601758 |V1758 Ori |053547.4-055511 |INB | 14.19 |( 0.05 )| |Ic| | | 4.36 | |M3.5 |78072 USNO | +601759 |V1759 Ori |053550.4-044208 |INB | 14.41 |( 0.08 )| |Ic| | | 1.55 | | |78072 2MASS| +601760 |V1760 Ori |053551.6-050809 |INB | 10.74 |( 0.41 )| |Ic| | | 2.82 | |K1Ve |78072 GSC | +601761 |V1761 Ori |053553.5-050235 |INB | 14.84 |( 0.11 )| |Ic| | | 6.62 | | |78072 2MASS| +601762 |V1762 Ori |053554.5-044805 |INB | 10.74 |( 0.15 )| |Ic| | | 1.32 | |G6 |78072 USNO | +601763 |V1763 Ori |053557.7-061125 |INB | 13.52 |( 0.23 )| |Ic| | | 6.09 | | |78072 USNO | +601764 |V1764 Ori |053600.2-060329 |INB | 13.05 |( 0.15 )| |Ic| | | 9.47 | |K6 |78072 USNO | +601765 |V1765 Ori |053601.8-043417 |INB | 12.31 |( 0.05 )| |Ic| | | 27.55 | |K7 |78072 GSC | +601766 |V1766 Ori |053605.2-054139 |INB | 14.13 |( 0.05 : )| |Ic| | | 3.17 | |M3.5 |78072 USNO | +601767 |V1767 Ori |053605.8-051856 |INB | 15.45 |( 0.15 )| |Ic| | | 20.78 | |M4.5 |78072 2MASS| +601768 |V1768 Ori |053606.8-042808 |INB | 13.34 |( 0.22 )| |Ic| | | 1.37 | |M0.5 |78072 USNO | +601769 |V1769 Ori |053619.2-042731 |INB | 13.49 |( 0.05 )| |Ic| | | 3.84 | |M3 |78072 USNO | +601770 |V1770 Ori |053625.4-051702 |INB | 15.87 |( 0.15 )| |Ic| | | 43.34 : | |M1.5 |78072 2MASS| +601771 |V1771 Ori |053625.9-043342 |INB | 15.36 |( 0.23 )| |Ic| | | 6.23 | | |78072 USNO | +601772 |V1772 Ori |053626.9-043137 |INB | 12.89 |( 0.09 )| |Ic| | | 4.28 | |K4 |78072 GSC | +601773 |V1773 Ori |053639.8-043752 |INB | 13.38 |( 0.05 )| |Ic| | | 7.61 | | |78072 USNO | +601774 |V1774 Ori |053647.9-054543 |INB | 12.54 |( 0.13 )| |Ic| | | 3.89 | |K7 |78072 USNO | +601775 |V1775 Ori |053655.4-052600 |INB | 13.68 |( 0.07 )| |Ic| | | 4.79 | |M2 |78072 USNO | +601776 |V1776 Ori |053655.6-043211 |INB | 14.46 |( 0.25 )| |Ic| | | 0.14 | | |78072 USNO | +601777 |V1777 Ori |053700.9-054137 |INB | 11.46 |( 0.06 )| |Ic| | | 3.19 | |K4 |78072 GSC | +601778 |V1778 Ori |053708.6-051846 |INB | 15.27 |( 0.21 )| |Ic| | | 0.20 | | |78072 USNO | +601779 |V1779 Ori |053710.9-051520 |INB | 14.07 |( 0.09 )| |Ic| | | 3.15 | |K8 |78072 USNO | +601780 |V1780 Ori |053718.4-054353 |INB | 12.74 |( 0.12 )| |Ic| | | 11.25 | |K7 |78072 USNO | +601781 |V1781 Ori |053720.1-051150 |INB | 12.45 |( 0.08 )| |Ic| | | 1.91 | |M2.5 |78072 USNO | +601782 |V1782 Ori |053723.5-054323 |INB | 14.07 |( 0.15 )| |Ic| | | 6.17 | |M2 |78072 USNO | +601783 |V1783 Ori |053729.6-051555 |INB | 14.48 |( 0.09 )| |Ic| | | 7.57 | |K6 |78072 USNO | +601784 |V1784 Ori |053738.0-051634 |INB | 13.51 |( 0.16 )| |Ic| | | 0.98 | |M2 |78072 USNO | +601785 |V1785 Ori |053803.1-055106 |INB | 14.49 |( 0.10 )| |Ic| | | 1.41 | |M4.5 |78072 USNO | +601786 |V1786 Ori |053804.2-051528 |INB | 13.54 |( 0.04 )| |Ic| | | 0.61 | |M4 |78072 USNO | +601787 |V1787 Ori |053809.3-064917 |INA | 13.75 | 13.84 | |V | | | | |A5e |78038 GSC | +601788 |V1788 Ori |053814.5-052513 |INA | 9.76 | 9.85 | |V | | | | |B9Ve |78038 DM | +601789 |V1789 Ori |053839.7-050843 |INB | 11.61 |( 0.11 )| |Ic| | | 1.08 | |K5 |78072 GSC | +601790 |V1790 Ori |054024.3-004617 |DSCTC | 10.63 |( 0.01 b )| |V | | | 0.0425 | |A2V |78037 DM | +601791 |V1791 Ori |054037.4-080403 |INB: | 11.55 | 14.57 | |V | | | | |Fe |78038 USNO | +601792 |V1792 Ori |054104.1-092320 |INB | 14.80 | 14.92 | |V | | | | |F0/5e: |78038 GSC | +601793 |V1793 Ori |055403.0+014022 |INT | 9.45 | 9.95 | |V | | | | |K2:n(Li) |78038 DM | +601794 |V1794 Ori |061824.8+020534 |M | 12.7 |< 18.2 | |B |46496 | | 624.4 | | |78086 78086| +601795 |V1795 Ori |061856.1+091820 |M | 14.8 |< 19.8 | |B |46328 | | 133.4 | | |78086 78086| +601796 |V1796 Ori |061922.9+154304 |M | 15.2 |< 20.0 | |B |45054 | | 324.6 | |M7 |78086 78086| +601797 |V1797 Ori |062057.3+075127 |M | 14.4 |< 19.8 | |B |49001 | | 402.8 | | |78086 78086| +601798 |V1798 Ori |054925.2+194915 |M | 14.5 | 17.0 | |p |29390. | | 327. | |M6.5 |00619 02351| +601799 |V1799 Ori |044718.2+064056 |EW | 12.9 | 13.9 | 13.8 |V |51524.829 | | 0.29031 | | |79025 GSC | +601800 |V1800 Ori |045418.7+111044 |M | 12.0 |< 14.4 | |V |53777. | | 317. | | |79190 79190| +601801 |V1801 Ori |050138.0+025425 |EA/RS | 8.91 | 9.15 | 9.05 |V |52997.720 | | 4.14357 | |G3/G5V |79004 DM | +601802 |V1802 Ori |050221.2+052920 |M | 11.8 : |< 14.2 | |V |52503. | | 346. | | |79100 GSC | +601803 |V1803 Ori |050913.7+012131 |SR | 12.2 | 13.7 | |V |53850. | | 245. | | |79100 79054| +601804 |V1804 Ori *|052305.5+010325 |EA | 7.08 | 7.14 | 7.12 |V |48188.925 | | 2.22878 |08 |B9.5V |79006 DM | +601805 |V1805 Ori |052348.7+125423 |SRB | 12.8 | 14.0 | |V | | | 150. | | |79100 79135| +601806 |V1806 Ori |052545.9-040547 |EA | 11.57 | 12.4 : | 12.1 : |V |53058.657 | | 4.48716 |06 |G4 |79003 GSC | +601807 |V1807 Ori |052639.2+013724 |SR | 12.2 | 13.7 | |V | | | 236. | | |79100 79054| +601808 |V1808 Ori |052649.7-091339 |SR | 11.6 | 14.4 | |V | | | 154. | | |79064 79178| +601809 |V1809 Ori |052753.9+113701 |SRB | 8.9 | 9.2 | |V | | | 29.9 | |M0 |79100 DM | +601810 |V1810 Ori |053115.8+094120 |SRB | 11.0 | 11.8 | |V | | | 66.1 | | |79064 79017| +601811 |V1811 Ori *|053412.4+002450 |EA | 9.52 | 9.66 | 9.64 : |V |51962.558 | | 3.21472 |06 |A2 |79004 DM | +601812 |V1812 Ori |053517.7-055827 |INT(YY) | 13.62 | 13.95 | |V | | | | |K7e |79038 79039| +601813 |V1813 Ori |053627.7+140359 |EA | 12.95 | 13.6 | 13.45 : |* |52884.867 | | 6.3650 |04 : | |79003 79040| +601814 |V1814 Ori *|053709.5-060616 |INT | 10.65 | 10.85 | |V | | | 5.77 | |K0IV/Ve |79042 79231| +601815 |V1815 Ori |053751.7+085132 |EA | 11.95 | 13.32 | 12.3 |* |52896.886 | | 5.5416 |09 | |79006 79017| +601816 |V1816 Ori |054326.3+100424 |SRB | 11.1 | 11.7 | |V | | | 152. | | |79064 79017| +601817 |V1817 Ori |054417.0+100142 |SRB | 13.1 | 14.2 | |V | | | 257. | | |79064 79040| +601818 |V1818 Ori *|055342.6-102401 |IN | 11.0 | 14.1 | |V | | | | |ea |79100 GSC | +601819 |V1819 Ori |055428.8+123156 |DCEP | 12.4 | 13.1 | |V |53268.89 | | 3.14948 |20 | |79100 79040| +601820 |V1820 Ori *|055437.1+045411 |RRAB | 12.5 | 13.4 | |V |53042.598 | | 0.479067 |25 : | |79100 79181| +601821 |V1821 Ori |060031.6+205150 |SRB | 13.4 | 14.2 | |V | | | | |C |79100 GSC | +601822 |V1822 Ori |061707.9+150638 |LB | 10.6 | 10.9 | |* | | | | |M6 |79100 GSC | +601823 |V1823 Ori |061717.4+154228 |EA | 11.55 | 12.06 | 12.05 |* |51504.715 | | 2.55156 |10 | |79003 GSC | +601824 |V1824 Ori |062259.9+163903 |EA | 13.47 | 14.7 : | 14.3 : |* |53399.565 | | 1.59290 |10 | |79003 79040| +601825 |V1825 Ori |044445.4+081347 |BY | 12.05 | 12.30 | |V | | | 2.93 | |K4 |80127 GSC | NL80_1 +601826 |V1826 Ori |044533.6+120918 |BY | 13.1 |( 0.06 )| |V | | | 3.35 | | |80127 GSC | NL80_1 +601827 |V1827 Ori |044536.5+120751 |IB | 12.7 |( 0.09 )| |V | | | 6.34 | |K7 |80127 GSC | NL80_1 +601828 |V1828 Ori |044859.4-014908 |SXPHE: | 17.5 | 17.9 | |V |51550.6916 | | 0.173506 |40 | |80159 USNO | NL80_1 +601829 |V1829 Ori |044928.1-012714 |RRAB | 15.4 | 15.9 | |V |51527.7490 | | 0.556768 |17 : | |80159 USNO | NL80_1 +601830 |V1830 Ori |044935.0-014220 |RRC | 15.7 | 16.0 | |V |51187.5566 | | 0.276438 | | |80159 USNO | NL80_1 +601831 |V1831 Ori |045004.7+015043 |IB | 12.03 |( 0.07 )| |V | | | 2.23 | |K3 |80127 GSC | NL80_1 +601832 |V1832 Ori |045036.9-005656 |RRAB | 18.6 | 19.4 | |V |51488.7808 | | 0.791048 |11 : | |80159 USNO | NL80_1 +601833 |V1833 Ori *|045110.2+074257 |EW | 10.32 | 10.55 | 10.53 |V |51594.630 | | 0.377198 | |KO |80042 DM | NL80_1 +601834 |V1834 Ori *|045456.4+083600 |EA | 6.85 | 6.94 | 6.87 |V |47998.857 | | 1.51058 |08 |A2III |80011 HIP | NL80_1 +601835 |V1835 Ori |045515.2+130530 |RPHS | 17.2 |( 0.10 * )| |V | | | 0.00433 | |sdB |80174 80174| NL80_1 +601836 |V1836 Ori |045516.4+125411 |SXPHE | 16.0 |( 0.08 * )| |V | | | 0.046 | |F |80174 80174| NL80_1 +601837 |V1837 Ori |045607.0+125415 |UV | 21.1 |( 0.3 * )| |V | | | | | |80133 2MASS| NL80_1 +601838 |V1838 Ori |045637.5-001819 |RRAB | 15.6 | 16.0 | |V |51200.6771 | | 0.618174 |23 | |80159 USNO | NL80_1 +601839 |V1839 Ori |045919.4-015533 |RRAB | 16.3 | 17.5 | |V |51550.6890 | | 0.490303 |20 : | |80159 USNO | NL80_1 +601840 |V1840 Ori *|045946.2+143055 |IB | 11.56 | 11.89 | |V | | | 1.2308 | |K4 |80154 GSC | NL80_1 +601841 |V1841 Ori |050049.3+152701 |RS | 10.74 | 11.06 | |V | | | 2.763 | |K2IV |80034 GSC | NL80_1 +601842 |V1842 Ori |050104.3+064220 |BY: | 12.59 | 12.67 | |V | | | 2.33 : | |K3 |80151 GSC | NL80_1 +601843 |V1843 Ori |050305.9+054840 |RS: | 10.62 | 10.68 | |V | | | 3.94 | |G2V |80151 DM | NL80_1 +601844 |V1844 Ori |050336.8-005957 |RRAB | 14.5 | 15.1 | |V |51161.6670 | | 0.778216 |19 | |80159 USNO | NL80_1 +601845 |V1845 Ori |050527.0-015440 |RRC: | 15.7 | 16.1 | |V |51488.7311 | | 0.254789 |51 : | |80159 USNO | NL80_1 +601846 |V1846 Ori |050726.4-001207 |RRAB | 16.8 | 17.3 | |V |51265.4806 | | 0.391564 |20 | |80159 USNO | NL80_1 +601847 |V1847 Ori *|050830.1+113145 |EW | 12.7 |( 0.27 )|( 0.24 )|R |54090.4610 | | 0.342771 | | |80182 80182| NL80_1 +601848 |V1848 Ori *|050836.4+051222 |EW | 11.05 | 11.75 | 11.65 |V |54066.4302 | | 0.2663496 | | |80182 80182| NL80_1 +601849 |V1849 Ori |050900.7-031507 |IB | 11.27 |( 0.05 )| |V | | | 0.734 | |K1 |80151 GSC | NL80_1 +601850 |V1850 Ori |051138.9-034847 |IB | 11.68 |( 0.08 )| |V | | | 1.31 | |K1 |80151 GSC | NL80_1 +601851 |V1851 Ori *|051244.9+101510 |EW | 12.3 | 13.1 | 13.05 : |V |53821.518 | | 0.276945 | | |80002 GSC | NL80_1 +601852 |V1852 Ori |051305.8+085131 |IB | 12.4 | 12.9 | |V | | | 4.0182 | |K3 |80034 GSC | NL80_1 +601853 |V1853 Ori *|051306.1+155812 |EW | 11.80 | 12.22 | 12.20 : |V |54066.5778 | | 0.383004 | | |80182 80182| NL80_1 +601854 |V1854 Ori |051319.0+013447 |RS | 10.20 | 10.48 | |V | | | 3.656 | |G0 |80034 DM | NL80_1 +601855 |V1855 Ori |051754.4-070819 |IB | 10.62 | 10.74 | |V | | | 0.761 | |K0 |80151 DM | NL80_1 +601856 |V1856 Ori |051802.2+071240 |RS: | 12.36 |( 0.06 )| |V | | | 0.872 | |K2 |80151 GSC | NL80_1 +601857 |V1857 Ori |051838.3+095916 |IB | 12.46 | 12.61 | |V | | | 1.59 | |K2 |80151 GSC | NL80_1 +601858 |V1858 Ori |052234.2-002224 |RRAB | 18.8 | 19.4 | |V |51513.7843 | | 0.691433 |20 | |80159 USNO | NL80_1 +601859 |V1859 Ori *|052254.8+085805 |RS | 10.26 | 10.52 | |V | | | 5.988 | |G9 |80151 DM | NL80_1 +601860 |V1860 Ori |052336.3-001144 |RRC | 18.1 | 18.8 | |V |51488.7578 | | 0.477472 |40 | |80159 USNO | NL80_1 +601861 |V1861 Ori |052344.4-075338 |IB | 12.24 | 12.34 | |V | | | 1.402 | |K5V |80151 GSC | NL80_1 +601862 |V1862 Ori |052422.1-063916 |IB | 12.24 | 12.32 | |V | | | 0.530 | |G5III-IV |80151 GSC | NL80_1 +601863 |V1863 Ori |052505.1-003758 |RRAB | 18.4 | 18.9 | |V |51488.7527 | | 0.547977 |10 | |80159 USNO | NL80_1 +601864 |V1864 Ori |052616.0+030502 |RS: | 11.9 | 12.0 | |* | | | 3.6492 | | |80060 80060| NL80_1 +601865 |V1865 Ori *|052620.2+153700 |EW | 12.4 | 12.9 | 12.8 |V |53768.318 | | 0.717380 | | |80002 GSC | NL80_1 +601866 |V1866 Ori |052704.1-005733 |RRAB | 17.2 | 17.7 | |V |51159.6790 | | 0.609374 |20 | |80159 USNO | NL80_1 +601867 |V1867 Ori |052718.8-002057 |RRC: | 17.2 | 17.7 | |V |51188.6381 | | 0.217985 |70 : | |80159 USNO | NL80_1 +601868 |V1868 Ori |052727.0-012723 |RRC | 18.0 | 18.3 | |V |51188.6381 | | 0.555351 |43 | |80159 USNO | NL80_1 +601869 |V1869 Ori |052759.0-005315 |RS: | 12.72 |( 0.13 )| |V | | | 2.305 | |K0 |80151 GSC | NL80_1 +601870 |V1870 Ori |052846.8+004841 |RS: | 12.87 | 13.17 | |V | | | 1.636 | |K0 |80151 GSC | NL80_1 +601871 |V1871 Ori *|052852.6+063404 |EA: | 12.45 | 12.9 | 12.9 |V |51601.71 | | 11.660 |15 : | |80011 GSC | NL80_1 +601872 |V1872 Ori *|052858.5+104538 |INB | 13.0 |( 0.07 )| |V | | | 7.04 | |K3 |80127 GSC | NL80_1 +601873 |V1873 Ori |052917.6-012041 |RRAB | 15.5 | 16.3 | |V |51187.5880 | | 0.686609 | | |80159 USNO | NL80_1 +601874 |V1874 Ori |052919.0+120929 |INB | 12.86 |( 0.20 )| |V | | | 2.14 | |K8 |80127 GSC | NL80_1 +601875 |V1875 Ori |052922.2+060654 |LB | 12.35 | 12.85 | |* | | | | | |80062 GSC | NL80_1 +601876 |V1876 Ori |053005.2+004120 |RS: | 9.51 | 9.61 | |V | | | 1.304 | |G3 |80151 DM | NL80_1 +601877 |V1877 Ori |053029.7-005018 |RRAB | 18.0 | 18.5 | |V |51488.7806 | | 0.591338 | | |80159 USNO | NL80_1 +601878 |V1878 Ori *|053042.6-043502 |INB | 11.35 | 11.65 | |V | | | 13.23 | |K2/3+K2/3 |80001 GSC | NL80_1 +601879 |V1879 Ori |053056.2+101500 |IB | 12.48 | 12.57 | |V | | | 0.743 | |K2 |80151 GSC | NL80_1 +601880 |V1880 Ori |053104.7+001724 |BY | 11.80 | 11.97 | |* | | | 13.32 | | |80043 80043| NL80_1 +601881 |V1881 Ori |053118.1-001949 |RR | 17.6 | 17.9 | |V |51185.5702 | | 0.494007 | | |80159 USNO | NL80_1 +601882 |V1882 Ori *|053202.3-073156 |IB: | 12.47 | 12.68 | |V | | | 4.06 : | |K2/3+K3 |80151 GSC | NL80_1 +601883 |V1883 Ori *|053221.9+013141 |IB | 13.78 |( 0.11 )| |V | | | 5.6 | |K5 |80151 GSC | NL80_1 +601884 |V1884 Ori *|053222.6+013143 |IB | 11.98 |( 0.07 : )| |V | | | 2.0 : | |K2 |80151 GSC | NL80_1 +601885 |V1885 Ori *|053230.8-042137 |INB | 11.80 | 12.01 | |V | | | 1.165 | |K3 |80151 GSC | NL80_1 +601886 |V1886 Ori |053304.9-075849 |IB | 11.80 | 11.91 | |V | | | 11.03 : | |K1 |80151 GSC | NL80_1 +601887 |V1887 Ori |053308.9+022444 |IB | 13.49 |( 0.12 : )| |V | | | 1.49 : | |K4 |80151 GSC | NL80_1 +601888 |V1888 Ori |053338.5-060000 |INB | 13.66 | 13.79 | |J | | | | | |80189 2MASS| NL80_1 +601889 |V1889 Ori |053338.9-073008 |IB: | 11.33 | 11.50 | |J | | | | | |80189 GSC | NL80_1 +601890 |V1890 Ori |053340.4-030324 |INB | 14.02 | 14.20 | |J | | | | | |80189 2MASS| NL80_1 +601891 |V1891 Ori |053341.1-031328 |IS | 14.72 | 15.14 | |J | | | | | |80189 2MASS| NL80_1 +601892 |V1892 Ori |053341.6-060607 |INSB | 14.18 | 14.92 | |J | | | | | |80189 2MASS| NL80_1 +601893 |V1893 Ori |053341.9-061549 |INSB | 13.87 | 14.26 | |J | | | | | |80189 2MASS| NL80_1 +601894 |V1894 Ori |053343.7-062429 |IN | 11.12 | 11.26 | |J | | | 6.52 | | |80189 GSC | NL80_1 +601895 |V1895 Ori |053345.4-043528 |INSB | 15.93 | 17.09 | |J | | | | | |80189 2MASS| NL80_1 +601896 |V1896 Ori |053345.9-053258 |INB | 16.01 | 17.30 | |J | | | | | |80189 2MASS| NL80_1 +601897 |V1897 Ori |053346.7-052326 |INSB | 13.27 | 14.08 | |J | | | | | |80189 2MASS| NL80_1 +601898 |V1898 Ori |053347.6-052549 |INB | 12.44 | 12.62 | |J | | | | | |80189 2MASS| NL80_1 +601899 |V1899 Ori |053348.2-005528 |INB | 15.58 |( 0.03 )| |Ic| | | 2.34 | | |80190 USNO | NL80_1 +601900 |V1900 Ori |053348.2-051326 |INT | 12.90 | 13.15 | |J | | | | |ea |80189 80091| NL80_1 +601901 |V1901 Ori |053350.3-062149 |INB | 13.60 | 16.10 | |J | | | | | |80189 2MASS| NL80_1 +601902 |V1902 Ori |053350.7-050040 |INB | 13.06 | 13.18 | |J | | | | | |80189 2MASS| NL80_1 +601903 |V1903 Ori |053351.3-052316 |INSB | 12.83 | 13.82 | |J | | | | | |80189 2MASS| NL80_1 +601904 |V1904 Ori |053351.4-044822 |INT | 12.32 | 12.78 | |J | | | | |ea |80189 80091| NL80_1 +601905 |V1905 Ori |053351.8-053304 |INSB | 14.80 | 16.00 | |J | | | | | |80189 2MASS| NL80_1 +601906 |V1906 Ori |053352.2-065904 |INB | 13.10 | 13.26 | |J | | | | | |80189 2MASS| NL80_1 +601907 |V1907 Ori |053352.2-075528 |INSA | 14.29 | 14.55 | |J | | | | | |80189 GSC | NL80_1 +601908 |V1908 Ori |053352.2-082810 |INSA | 14.18 | 14.41 | |J | | | | | |80189 2MASS| NL80_1 +601909 |V1909 Ori |053354.4-054513 |INSB | 13.46 | 14.00 | |J | | | | | |80189 2MASS| NL80_1 +601910 |V1910 Ori |053355.0-005644 |INB | 17.42 |( 0.06 )| |Ic| | | 0.394 | | |80190 2MASS| NL80_1 +601911 |V1911 Ori |053355.5-052558 |INSB | 12.87 | 13.83 | |J | | | | | |80189 2MASS| NL80_1 +601912 |V1912 Ori |053357.3-045916 |INSB | 13.14 | 13.34 | |J | | | | |M4 |80189 2MASS| NL80_1 +601913 |V1913 Ori |053359.2-054623 |INSB | 14.12 | 15.23 | |J | | | | | |80189 2MASS| NL80_1 +601914 |V1914 Ori |053359.6-075410 |INSA | 13.56 | 13.67 | |J | | | | | |80189 GSC | NL80_1 +601915 |V1915 Ori |053400.8-005757 |INB | 16.69 |( 0.05 )| |Ic| | | 1.47 | | |80190 2MASS| NL80_1 +601916 |V1916 Ori |053402.1-051726 |INSB | 15.15 | 15.60 | |J | | | | | |80189 2MASS| NL80_1 +601917 |V1917 Ori |053403.8-061605 |IN | 11.97 | 12.08 | |J | | | | | |80189 2MASS| NL80_1 +601918 |V1918 Ori |053404.1-084324 |INSA | 11.46 | 11.62 | |J | | | | | |80189 GSC | NL80_1 +601919 |V1919 Ori |053404.5-063138 |INB | 13.60 | 14.00 | |J | | | | | |80189 2MASS| NL80_1 +601920 |V1920 Ori |053405.0-062347 |INS | 13.01 | 13.29 | |J | | | | | |80189 2MASS| NL80_1 +601921 |V1921 Ori |053405.7-005704 |INB | 15.21 |( 0.04 )| |Ic| | | 4.17 | | |80190 USNO | NL80_1 +601922 |V1922 Ori |053406.0-052244 |INB | 12.10 | 12.60 | |J | | | | | |80189 2MASS| NL80_1 +601923 |V1923 Ori |053406.0-060612 |INSB | 13.90 | 14.14 | |J | | | | | |80189 2MASS| NL80_1 +601924 |V1924 Ori |053406.7-062412 |INB | 11.59 | 11.82 | |J | | | 6.11 | | |80189 2MASS| NL80_1 +601925 |V1925 Ori |053407.0-063208 |INSB | 13.14 | 13.35 | |J | | | | | |80189 2MASS| NL80_1 +601926 |V1926 Ori |053407.1-051559 |INSB | 13.40 | 13.58 | |J | | | | | |80189 2MASS| NL80_1 +601927 |V1927 Ori |053407.4-003311 |INB | 14.88 |( 0.04 )| |Ic| | | 0.75 | | |80190 USNO | NL80_1 +601928 |V1928 Ori *|053409.2-080214 |INB | 12.27 | 12.44 | |J | | | | | |80189 2MASS| NL80_1 +601929 |V1929 Ori |053409.8-004207 |INB | 15.15 |( 0.06 )| |Ic| | | 4.03 | | |80190 USNO | NL80_1 +601930 |V1930 Ori |053410.1-004610 |INB | 14.80 |( 0.05 )| |Ic| | | 4.18 | | |80190 USNO | NL80_1 +601931 |V1931 Ori *|053410.5-045035 |INSB | 10.90 | 11.01 | |J | | | | | |80189 2MASS| NL80_1 +601932 |V1932 Ori |053411.8-080942 |INB | 14.83 | 15.50 | |J | | | 9.96 | | |80189 2MASS| NL80_1 +601933 |V1933 Ori |053412.7-062900 |INSB | 14.69 | 15.04 | |J | | | | | |80189 2MASS| NL80_1 +601934 |V1934 Ori *|053413.1-053349 |INSB | 14.36 | 14.99 | |J | | | | |M3 |80189 2MASS| NL80_1 +601935 |V1935 Ori *|053413.5-053539 |INSB | 12.80 | 14.30 | |J | | | | | |80189 2MASS| NL80_1 +601936 |V1936 Ori |053414.9-025254 |INA: | 6.89 | 7.03 | |J | | | | |B3Vn |80189 HIP | NL80_1 +601937 |V1937 Ori |053416.6-035723 |INSB | 11.03 | 11.20 | |J | | | | | |80189 GSC | NL80_1 +601938 |V1938 Ori |053416.9-063250 |INS | 14.33 | 14.85 | |J | | | | | |80189 2MASS| NL80_1 +601939 |V1939 Ori |053417.1-044804 |INB | 13.19 | 14.60 | |J | | | 8.81 | |M0: |80189 2MASS| NL80_1 +601940 |V1940 Ori |053417.8-041810 |INB | 14.25 | 15.27 | |J | | | 2.25 | | |80189 2MASS| NL80_1 +601941 |V1941 Ori |053418.1-052834 |INSB | 12.94 | 13.22 | |J | | | | |M1.5 |80189 2MASS| NL80_1 +601942 |V1942 Ori |053418.3-053116 |INB | 12.70 | 12.85 | |J | | | 5.52 | | |80189 2MASS| NL80_1 +601943 |V1943 Ori |053418.7-034132 |INB | 14.43 | 14.62 | |J | | | | | |80189 2MASS| NL80_1 +601944 |V1944 Ori |053418.7-053708 |INSB | 13.20 | 13.37 | |J | | | | | |80189 2MASS| NL80_1 +601945 |V1945 Ori |053420.4-025747 |INB | 12.17 | 13.10 | |J | | | | | |80189 2MASS| NL80_1 +601946 |V1946 Ori |053420.5-010000 |INB | 17.18 |( 0.06 )| |Ic| | | 0.800 | | |80190 2MASS| NL80_1 +601947 |V1947 Ori |053420.5-051845 |INSB | 14.04 | 14.23 | |J | | | | | |80189 2MASS| NL80_1 +601948 |V1948 Ori |053420.8-064848 |INSB | 13.70 | 13.88 | |J | | | | | |80189 2MASS| NL80_1 +601949 |V1949 Ori |053420.9-050650 |INSB | 13.34 | 13.54 | |J | | | | | |80189 2MASS| NL80_1 +601950 |V1950 Ori |053420.9-031827 |INSB | 14.02 | 14.25 | |J | | | | | |80189 2MASS| NL80_1 +601951 |V1951 Ori |053421.9-051531 |INSB | 14.20 | 14.46 | |J | | | | |M4.5 |80189 2MASS| NL80_1 +601952 |V1952 Ori *|053423.6-004309 |INB | 16.58 |( 0.04 )| |Ic| | | 1.29 | | |80190 2MASS| NL80_1 +601953 |V1953 Ori *|053423.9-005653 |UVN+BY | 16.65 |( 0.3 )| |Ic| | | 0.61 | | |80190 2MASS| NL80_1 +601954 |V1954 Ori |053424.4-045252 |INB | 13.53 | 13.73 | |J | | | 8.18 | | |80189 2MASS| NL80_1 +601955 |V1955 Ori |053425.5-065347 |INA: | 12.47 | 12.90 | |J | | | | | |80189 GSC | NL80_1 +601956 |V1956 Ori |053426.2-052630 |INT | 10.92 | 11.14 | |J | | | | |K2.5e |80189 2MASS| NL80_1 +601957 |V1957 Ori |053426.4-053741 |INB | 15.50 | 16.56 | |J | | | | | |80189 2MASS| NL80_1 +601958 |V1958 Ori |053427.0-051803 |INSB | 13.54 | 13.81 | |J | | | | |M7: |80189 2MASS| NL80_1 +601959 |V1959 Ori |053427.0-005423 |E: | 15.75 |( 0.17 )| |Ic| | | 3.2 : | | |80001 USNO | NL80_1 +601960 |V1960 Ori |053427.1-081110 |IS | 14.83 | 15.06 | |J | | | | | |80189 2MASS| NL80_1 +601961 |V1961 Ori |053427.4-052422 |INB | 9.49 | 9.71 | |J | | | 5.09 | |G9IV-V |80189 GSC | NL80_1 +601962 |V1962 Ori |053427.7-053719 |INB | 12.85 | 13.20 | |J | | | 9.54 | | |80189 2MASS| NL80_1 +601963 |V1963 Ori |053427.7-053155 |INSB | 9.63 | 9.76 | |J | | | | |K2 |80189 GSC | NL80_1 +601964 |V1964 Ori |053428.8-071516 |INB | 13.25 | 13.95 | |J | | | 4.36 | | |80189 2MASS| NL80_1 +601965 |V1965 Ori |053429.1-025256 |INSA | 11.59 | 11.70 | |J | | | | | |80189 GSC | NL80_1 +601966 |V1966 Ori |053429.3-060858 |INB | 12.18 | 12.25 | |J | | | | | |80189 GSC | NL80_1 +601967 |V1967 Ori |053429.5-051355 |INSB | 12.39 | 12.78 | |J | | | | |K5.5: |80189 80084| NL80_1 +601968 |V1968 Ori |053429.5-033930 |INSB | 13.72 | 13.86 | |J | | | | | |80189 2MASS| NL80_1 +601969 |V1969 Ori |053429.6-050307 |INT | 13.79 | 14.20 | |J | | | | |Ke |80189 2MASS| NL80_1 +601970 |V1970 Ori |053429.8-045148 |INSB | 12.99 | 14.40 | |J | | | | |K7 |80189 2MASS| NL80_1 +601971 |V1971 Ori |053430.1-044951 |INT | 11.90 | 12.13 | |J | | | | |e |80189 2MASS| NL80_1 +601972 |V1972 Ori |053430.6-043553 |INT | 12.50 | 13.19 | |J | | | | |M0.5e |80189 2MASS| NL80_1 +601973 |V1973 Ori |053430.9-042507 |INB:+E: | 12.95 | 13.19 | |J | | | | | |80189 2MASS| NL80_1 +601974 |V1974 Ori |053431.1-025802 |INB | 13.34 | 13.81 | |J | | | | | |80189 2MASS| NL80_1 +601975 |V1975 Ori |053431.7-052827 |INSB | 12.68 | 12.93 | |J | | | | |M2 |80189 80084| NL80_1 +601976 |V1976 Ori |053431.8-053520 |INT | 12.57 | 12.72 | |J | | | | |e |80189 80084| NL80_1 +601977 |V1977 Ori |053431.9-003524 |INB | 15.89 |( 0.04 )| |Ic| | | 1.40 | | |80190 USNO | NL80_1 +601978 |V1978 Ori |053432.0-052743 |INB | 12.70 | 14.30 | |J | | | | |M3 |80189 2MASS| NL80_1 +601979 |V1979 Ori |053432.7-052107 |INSB | 12.46 | 12.62 | |J | | | | |M1.5 |80189 80084| NL80_1 +601980 |V1980 Ori |053433.0-054440 |INSB | 14.02 | 14.33 | |J | | | | | |80189 2MASS| NL80_1 +601981 |V1981 Ori |053434.0-053451 |INT | 11.65 | 12.01 | |J | | | | |e |80189 80084| NL80_1 +601982 |V1982 Ori |053434.0-054825 |INSB | 13.15 | 13.37 | |J | | | | | |80189 2MASS| NL80_1 +601983 |V1983 Ori |053434.0-063210 |INSB | 14.57 | 15.98 | |J | | | | | |80189 2MASS| NL80_1 +601984 |V1984 Ori |053434.2-025817 |INB | 12.17 | 14.06 | |J | | | | |ea |80189 2MASS| NL80_1 +601985 |V1985 Ori |053434.9-044243 |INB | 12.70 | 12.88 | |J | | | | | |80189 2MASS| NL80_1 +601986 |V1986 Ori |053435.1-081034 |INSB | 12.46 | 12.66 | |J | | | | | |80189 2MASS| NL80_1 +601987 |V1987 Ori |053435.2-045218 |INB | 13.87 | 14.63 | |J | | | | | |80189 2MASS| NL80_1 +601988 |V1988 Ori |053435.2-053432 |INSB | 12.68 | 12.80 | |J | | | | |M4 |80189 80084| NL80_1 +601989 |V1989 Ori |053435.7-005157 |INB | 16.15 |( 0.04 )| |Ic| | | 4.25 | | |80190 USNO | NL80_1 +601990 |V1990 Ori |053435.8-054010 |INSB | 12.61 | 12.92 | |J | | | | | |80189 2MASS| NL80_1 +601991 |V1991 Ori |053436.0-045218 |INSB | 13.75 | 14.01 | |J | | | | | |80189 2MASS| NL80_1 +601992 |V1992 Ori |053437.1-053109 |INT | 12.19 | 12.58 | |J | | | | |M3e |80189 80084| NL80_1 +601993 |V1993 Ori |053437.2-075740 |ISB | 12.60 | 12.75 | |J | | | | | |80189 2MASS| NL80_1 +601994 |V1994 Ori *|053437.6-054311 |INSB | 12.29 | 12.68 | |J | | | | | |80189 2MASS| NL80_1 +601995 |V1995 Ori *|053437.8-005240 |INB | 15.57 |( 0.08 )| |Ic| | | 1.67 | | |80190 USNO | NL80_1 +601996 |V1996 Ori |053438.2-050517 |INB | 14.24 | 14.62 | |J | | | 3.23 | | |80189 2MASS| NL80_1 +601997 |V1997 Ori |053438.2-052424 |INSB | 12.65 | 12.94 | |J | | | | |M3.5 |80189 80084| NL80_1 +601998 |V1998 Ori |053438.8-043937 |INB | 13.90 | 14.64 | |J | | | | | |80189 2MASS| NL80_1 +601999 |V1999 Ori *|053439.5-005432 |EA: | 17.79 |( 0.60 )|( 0.3 )|Ic| | | 1.3 : | | |80001 2MASS| NL80_1 +602000 |V2000 Ori |053439.8-050034 |INB | 16.4 | 16.8 | |J | | | | | |80189 2MASS| NL80_1 +602001 |V2001 Ori |053439.9-062514 |INSB | 14.60 | 15.09 | |J | | | | | |80189 2MASS| NL80_1 +602002 |V2002 Ori |053440.3-054509 |INSB | 15.44 | 16.24 | |J | | | | | |80189 2MASS| NL80_1 +602003 |V2003 Ori |053440.5-045740 |INT | 12.73 | 12.90 | |J | | | | |e |80189 2MASS| NL80_1 +602004 |V2004 Ori |053440.6-050659 |INSB | 14.18 | 15.99 | |J | | | | | |80189 2MASS| NL80_1 +602005 |V2005 Ori |053440.8-052639 |INSB | 12.51 | 13.01 | |J | | | | |M1.5 |80189 80084| NL80_1 +602006 |V2006 Ori |053440.9-052600 |INB | 13.69 | 14.63 | |J | | | | |M0 |80189 80084| NL80_1 +602007 |V2007 Ori |053441.4-043914 |INSB | 13.15 | 13.55 | |J | | | | |M3 |80189 2MASS| NL80_1 +602008 |V2008 Ori *|053441.9-045338 |INB | 12.09 | 12.48 | |J | | | | | |80189 2MASS| NL80_1 +602009 |V2009 Ori |053442.0-054523 |INSB | 13.88 | 14.60 | |J | | | | | |80189 2MASS| NL80_1 +602010 |V2010 Ori |053442.0-050432 |INB | 13.65 | 14.23 | |J | | | 3.30 | | |80189 2MASS| NL80_1 +602011 |V2011 Ori |053442.2-053304 |INB: | 13.76 | 15.32 | |J | | | | | |80189 2MASS| NL80_1 +602012 |V2012 Ori |053442.7-052838 |INSB | 11.63 | 11.92 | |J | | | | | |80189 80084| NL80_1 +602013 |V2013 Ori |053443.0-070350 |INB | 12.63 | 12.73 | |J | | | | | |80189 2MASS| NL80_1 +602014 |V2014 Ori *|053443.2-042332 |INA | 7.33 | 7.44 | |J | | | | |B5V |80189 DM | NL80_1 +602015 |V2015 Ori |053444.4-035941 |INSB | 12.56 | 12.68 | |J | | | | | |80189 2MASS| NL80_1 +602016 |V2016 Ori |053444.7-044657 |INB | 16.06 | 16.73 | |J | | | | | |80189 2MASS| NL80_1 +602017 |V2017 Ori |053444.8-045641 |INB | 13.47 | 13.91 | |J | | | 4.22 | | |80189 2MASS| NL80_1 +602018 |V2018 Ori |053444.9-010425 |INB: | 19.42 |( 0.12 )| |Ic| | | 0.20 | | |80190 2MASS| NL80_1 +602019 |V2019 Ori |053445.0-050650 |INT | 11.81 | 11.93 | |J | | | | |e |80189 2MASS| NL80_1 +602020 |V2020 Ori |053445.1-050620 |INSB | 13.38 | 14.20 | |J | | | | |M3.5 |80189 2MASS| NL80_1 +602021 |V2021 Ori |053445.2-053957 |INSB | 15.04 | 16.15 | |J | | | | | |80189 2MASS| NL80_1 +602022 |V2022 Ori |053445.7-005224 |INB | 16.48 |( 0.05 )| |Ic| | | 0.16 | | |80190 2MASS| NL80_1 +602023 |V2023 Ori |053446.4-052432 |INB | 11.56 | 11.67 | |J | | | | |M0 |80189 80084| NL80_1 +602024 |V2024 Ori *|053446.5-042616 |INB | 13.28 | 13.44 | |J | | | | | |80189 2MASS| NL80_1 +602025 |V2025 Ori |053446.7-081129 |IB: | 12.06 | 12.21 | |J | | | | | |80189 GSC | NL80_1 +602026 |V2026 Ori |053446.8-052605 |INSB | 13.41 | 14.20 | |J | | | | | |80189 80084| NL80_1 +602027 |V2027 Ori *|053446.8-052129 |INSB | 13.12 | 13.71 | |J | | | | |M2.5 |80189 80084| NL80_1 +602028 |V2028 Ori |053447.6-045001 |INB | 12.64 | 12.79 | |J | | | 12.32 | | |80189 2MASS| NL80_1 +602029 |V2029 Ori |053447.7-061940 |INB | 12.13 | 12.64 | |J | | | 3.66 | | |80189 2MASS| NL80_1 +602030 |V2030 Ori *|053447.7-052632 |INSB | 14.99 | 15.52 | |J | | | | | |80189 2MASS| NL80_1 +602031 |V2031 Ori |053447.8-071610 |IN | 11.63 | 11.80 | |J | | | 7.55 | | |80189 GSC | NL80_1 +602032 |V2032 Ori |053447.8-004401 |INB: | 18.77 |( 0.06 )| |Ic| | | 0.241 | | |80190 2MASS| NL80_1 +602033 |V2033 Ori |053447.9-053047 |INB | 12.03 | 12.17 | |J | | | | |M4 |80189 80084| NL80_1 +602034 |V2034 Ori |053447.9-053544 |INT | 12.87 | 13.09 | |J | | | | |M4.5e |80189 80084| NL80_1 +602035 |V2035 Ori |053447.9-062142 |INB | 13.03 | 14.25 | |J | | | 7.09 | | |80189 2MASS| NL80_1 +602036 |V2036 Ori |053448.0-045320 |INSB | 14.64 | 15.08 | |J | | | | | |80189 2MASS| NL80_1 +602037 |V2037 Ori |053448.2-053010 |INSB | 14.30 | 14.59 | |J | | | | |M4.5 |80189 2MASS| NL80_1 +602038 |V2038 Ori *|053448.5-054228 |INSB | 12.18 | 14.05 | |J | | | | | |80189 2MASS| NL80_1 +602039 |V2039 Ori *|053448.5-033548 |INB | 12.40 | 12.53 | |J | | | | | |80189 GSC | NL80_1 +602040 |V2040 Ori |053448.5-044957 |INB | 13.83 | 14.16 | |J | | | | | |80189 2MASS| NL80_1 +602041 |V2041 Ori |053448.9-030705 |INSB | 15.25 | 16.80 | |J | | | | | |80189 2MASS| NL80_1 +602042 |V2042 Ori |053449.0-052817 |INSB | 12.78 | 13.22 | |J | | | | |M3.5 |80189 80084| NL80_1 +602043 |V2043 Ori |053449.0-072607 |INSB | 12.61 | 12.77 | |J | | | | | |80189 2MASS| NL80_1 +602044 |V2044 Ori |053449.1-052627 |INT | 13.10 | 13.30 | |J | | | | |M3e |80189 80084| NL80_1 +602045 |V2045 Ori |053449.6-052903 |INT | 12.20 | 12.38 | |J | | | | |M1.5e |80189 80084| NL80_1 +602046 |V2046 Ori |053449.6-050500 |INSB | 13.30 | 13.70 | |J | | | | | |80189 2MASS| NL80_1 +602047 |V2047 Ori |053449.6-045157 |INSB | 15.22 | 15.60 | |J | | | | | |80189 2MASS| NL80_1 +602048 |V2048 Ori |053449.6-032521 |INSB | 13.90 | 14.12 | |J | | | | | |80189 2MASS| NL80_1 +602049 |V2049 Ori |053449.6-043642 |INSB | 13.89 | 14.15 | |J | | | | | |80189 2MASS| NL80_1 +602050 |V2050 Ori |053449.7-080236 |INSB | 12.76 | 12.94 | |J | | | | | |80189 GSC | NL80_1 +602051 |V2051 Ori |053449.7-045134 |INSB | 14.07 | 14.28 | |J | | | | | |80189 2MASS| NL80_1 +602052 |V2052 Ori |053449.7-083807 |ISB | 12.97 | 13.17 | |J | | | | | |80189 GSC | NL80_1 +602053 |V2053 Ori |053449.7-055427 |INSB | 14.76 | 15.59 | |J | | | | | |80189 2MASS| NL80_1 +602054 |V2054 Ori |053449.8-061529 |INSB | 13.44 | 13.67 | |J | | | | | |80189 2MASS| NL80_1 +602055 |V2055 Ori |053450.0-062812 |INB | 12.01 | 12.22 | |J | | | 10.17 | | |80189 2MASS| NL80_1 +602056 |V2056 Ori |053450.0-051845 |INA | 8.57 | 8.86 | |J | | | | |A2Vp |80189 DM | NL80_1 +602057 |V2057 Ori |053450.4-052020 |INT | 11.87 | 12.17 | |J | | | | |K6e |80189 80084| NL80_1 +602058 |V2058 Ori |053450.5-044837 |INSB | 14.83 | 15.84 | |J | | | | | |80189 2MASS| NL80_1 +602059 |V2059 Ori |053450.7-045837 |INB | 11.99 | 12.49 | |J | | | | | |80189 2MASS| NL80_1 +602060 |V2060 Ori |053450.8-044820 |INSB | 15.24 | 15.68 | |J | | | | | |80189 2MASS| NL80_1 +602061 |V2061 Ori |053451.2-051655 |INSB | 12.43 | 12.80 | |J | | | | |M3 |80189 80084| NL80_1 +602062 |V2062 Ori |053451.8-052139 |INB | 12.78 | 13.00 | |J | | | | |M3.5 |80189 80084| NL80_1 +602063 |V2063 Ori |053452.0-053724 |INSB | 15.08 | 16.30 | |J | | | | | |80189 2MASS| NL80_1 +602064 |V2064 Ori |053452.0-052419 |INB | 12.67 | 12.91 | |J | | | | |M3.5 |80189 80084| NL80_1 +602065 |V2065 Ori |053452.0-045501 |INB | 13.94 | 14.11 | |J | | | | | |80189 2MASS| NL80_1 +602066 |V2066 Ori |053452.0-052443 |INT | 11.96 | 12.30 | |J | | | | |M3.5e |80189 80084| NL80_1 +602067 |V2067 Ori |053452.1-054057 |INSB | 13.13 | 13.37 | |J | | | | | |80189 2MASS| NL80_1 +602068 |V2068 Ori |053453.1-043704 |INB | 13.75 | 14.04 | |J | | | 2.75 | | |80189 2MASS| NL80_1 +602069 |V2069 Ori |053453.5-054004 |INB | 14.13 | 14.62 | |J | | | 2.02 | | |80189 2MASS| NL80_1 +602070 |V2070 Ori |053453.5-025420 |INB | 12.12 | 12.23 | |J | | | 2.59 | | |80189 GSC | NL80_1 +602071 |V2071 Ori |053453.9-045622 |INB | 12.32 | 12.43 | |J | | | | | |80189 2MASS| NL80_1 +602072 |V2072 Ori |053454.0-061052 |INSB | 13.30 | 13.78 | |J | | | | | |80189 2MASS| NL80_1 +602073 |V2073 Ori |053454.9-051702 |INT | 11.40 | 11.94 | |J | | | | |K5:e |80189 80084| NL80_1 +602074 |V2074 Ori |053455.0-052659 |INT | 13.63 | 14.03 | |J | | | | |M5.5e |80189 2MASS| NL80_1 +602075 |V2075 Ori |053455.1-044942 |INB | 12.91 | 13.60 | |J | | | | | |80189 2MASS| NL80_1 +602076 |V2076 Ori |053455.1-044828 |INB | 11.06 | 11.22 | |J | | | | |K6 |80189 2MASS| NL80_1 +602077 |V2077 Ori |053455.4-035942 |INB | 11.83 | 11.97 | |J | | | | | |80189 2MASS| NL80_1 +602078 |V2078 Ori |053455.5-053606 |INB | 12.71 | 13.00 | |J | | | | |M0.5 |80189 80084| NL80_1 +602079 |V2079 Ori |053455.7-045612 |INSB | 12.26 | 12.49 | |J | | | | | |80189 2MASS| NL80_1 +602080 |V2080 Ori |053456.5-052751 |INT | 12.33 | 12.50 | |J | | | 6.50 | |M2e |80189 80084| NL80_1 +602081 |V2081 Ori |053456.5-050107 |INB | 14.22 | 14.34 | |J | | | | | |80189 2MASS| NL80_1 +602082 |V2082 Ori |053456.6-051113 |INB | 13.52 | 13.63 | |J | | | | |M2.5 |80189 80084| NL80_1 +602083 |V2083 Ori |053456.7-042021 |INSB | 12.18 | 12.34 | |J | | | | | |80189 2MASS| NL80_1 +602084 |V2084 Ori *|053456.8-044605 |INB | 12.12 | 12.72 | |J | | | 6.24 | | |80189 2MASS| NL80_1 +602085 |V2085 Ori *|053457.3-054406 |INSB | 12.37 | 12.72 | |Ks| | | | | |80189 2MASS| NL80_1 +602086 |V2086 Ori *|053457.4-053243 |INSB | 14.80 | 15.32 | |J | | | | | |80189 2MASS| NL80_1 +602087 |V2087 Ori |053457.6-061831 |INSB | 9.77 | 9.95 | |J | | | | |G0V |80189 GSC | NL80_1 +602088 |V2088 Ori *|053457.7-053030 |INSB | 14.49 | 14.94 | |J | | | | | |80189 2MASS| NL80_1 +602089 |V2089 Ori |053458.0-051738 |INSB | 12.53 | 12.92 | |J | | | | |M0 |80189 80084| NL80_1 +602090 |V2090 Ori *|053458.2-052848 |INB | 15.09 | 15.68 | |J | | | 2.56 | | |80189 2MASS| NL80_1 +602091 |V2091 Ori |053458.3-054150 |INB | 12.28 | 13.67 | |J | | | | | |80189 2MASS| NL80_1 +602092 |V2092 Ori |053458.3-053826 |INB | 13.73 | 13.89 | |J | | | 4.42 | | |80189 2MASS| NL80_1 +602093 |V2093 Ori |053458.3-054506 |INB | 13.93 | 14.34 | |J | | | | | |80189 2MASS| NL80_1 +602094 |V2094 Ori *|053458.8-052118 |INSB | 11.88 | 12.17 | |J | | | | |K5 |80189 80084| NL80_1 +602095 |V2095 Ori |053458.9-071331 |INB | 13.83 | 13.93 | |J | | | | | |80189 2MASS| NL80_1 +602096 |V2096 Ori |053459.1-053621 |INSB | 13.78 | 13.93 | |J | | | | | |80189 2MASS| NL80_1 +602097 |V2097 Ori |053459.2-054559 |INSB | 11.62 | 11.81 | |J | | | | | |80189 2MASS| NL80_1 +602098 |V2098 Ori |053459.5-062140 |INB | 11.06 | 11.27 | |J | | | | | |80189 GSC | NL80_1 +602099 |V2099 Ori *|053500.2-052409 |INB | 15.15 | 16.30 | |J | | | | |M2 |80189 2MASS| NL80_1 +602100 |V2100 Ori |053500.3-045609 |INSB | 14.17 | 14.40 | |J | | | | | |80189 2MASS| NL80_1 +602101 |V2101 Ori |053500.3-005917 |INB | 15.57 |( 0.04 )| |Ic| | | 1.88 | | |80190 2MASS| NL80_1 +602102 |V2102 Ori *|053500.5-052514 |INT | 11.80 | 12.81 | |J | | | | |K6e |80189 80084| NL80_1 +602103 |V2103 Ori |053500.5-060124 |INT | 12.89 | 13.02 | |J | | | | |e |80189 2MASS| NL80_1 +602104 |V2104 Ori |053500.5-044836 |INSB | 14.42 | 15.12 | |J | | | | | |80189 2MASS| NL80_1 +602105 |V2105 Ori |053500.8-055526 |INB | 12.51 | 12.97 | |Ks| | | | | |80189 2MASS| NL80_1 +602106 |V2106 Ori |053500.8-053106 |INSB | 13.28 | 13.59 | |J | | | | |M2.5 |80189 80084| NL80_1 +602107 |V2107 Ori *|053501.1-052304 |INSB | 13.64 | 14.00 | |J | | | | |M4.5 |80189 80084| NL80_1 +602108 |V2108 Ori |053501.3-054114 |INB | 12.70 | 13.51 | |J | | | | | |80189 2MASS| NL80_1 +602109 |V2109 Ori *|053501.3-052022 |INB | 12.00 | 12.53 | |J | | | 10.17 | |K7 |80189 80084| NL80_1 +602110 |V2110 Ori *|053501.3-052812 |INSB | 16.3 | 17.0 | |J | | | | | |80189 2MASS| NL80_1 +602111 |V2111 Ori |053501.4-060356 |INSB | 13.74 | 14.03 | |J | | | | | |80189 2MASS| NL80_1 +602112 |V2112 Ori |053501.5-033538 |INSB | 12.60 | 12.74 | |J | | | | | |80189 2MASS| NL80_1 +602113 |V2113 Ori *|053501.6-052149 |INSB | 15.02 | 15.54 | |J | | | | | |80189 2MASS| NL80_1 +602114 |V2114 Ori *|053501.7-052636 |INSB | 13.61 | 14.14 | |J | | | | | |80189 80084| NL80_1 +602115 |V2115 Ori |053501.7-043253 |INT | 12.61 | 12.84 | |J | | | | |e |80189 2MASS| NL80_1 +602116 |V2116 Ori |053501.7-004646 |INB | 15.74 |( 0.04 )| |Ic| | | 1.25 | | |80190 USNO | NL80_1 +602117 |V2117 Ori |053502.0-003735 |INB | 15.43 |( 0.04 )| |Ic| | | 1.60 | | |80190 USNO | NL80_1 +602118 |V2118 Ori *|053502.0-052055 |INSB | 13.32 | 13.60 | |J | | | | | |80189 2MASS| NL80_1 +602119 |V2119 Ori |053502.0-041201 |INB | 11.97 | 12.10 | |V | | | 2.348 | |G9 |80151 GSC | NL80_1 +602120 |V2120 Ori *|053502.1-051823 |INSB | 12.86 | 13.12 | |J | | | | |M5 |80189 80084| NL80_1 +602121 |V2121 Ori *|053502.1-052357 |INB | 11.17 | 12.05 | |Ks| | | | | |80189 2MASS| NL80_1 +602122 |V2122 Ori |053502.6-010116 |INB | 15.96 |( 0.03 )| |Ic| | | 0.475 | | |80190 USNO | NL80_1 +602123 |V2123 Ori |053502.8-051945 |INT | 12.65 | 13.45 | |J | | | | |M1e |80189 80084| NL80_1 +602124 |V2124 Ori |053502.8-053203 |INT | 13.84 | 14.75 | |J | | | 3.26 | |M5e |80189 80084| NL80_1 +602125 |V2125 Ori |053502.8-052208 |INSB | 11.88 | 12.07 | |J | | | | |G: |80189 80084| NL80_1 +602126 |V2126 Ori |053503.0-045306 |INSB | 13.02 | 13.84 | |Ks| | | | | |80189 2MASS| NL80_1 +602127 |V2127 Ori |053503.0-044833 |INT | 13.02 | 13.23 | |J | | | | |e |80189 2MASS| NL80_1 +602128 |V2128 Ori |053503.2-051830 |INSB | 12.39 | 12.84 | |J | | | | |M1.5 |80189 80084| NL80_1 +602129 |V2129 Ori |053503.2-051753 |INB | 12.72 | 13.70 | |J | | | 5.53 | |M6 |80189 80084| NL80_1 +602130 |V2130 Ori |053503.2-051726 |INSB | 15.47 | 16.30 | |J | | | | | |80189 2MASS| NL80_1 +602131 |V2131 Ori |053503.3-051623 |INSB | 13.89 | 14.18 | |J | | | | | |80189 2MASS| NL80_1 +602132 |V2132 Ori |053503.6-051600 |INSB | 14.40 | 14.61 | |J | | | | | |80189 2MASS| NL80_1 +602133 |V2133 Ori *|053503.8-061648 |INSB | 12.83 | 12.97 | |J | | | | | |80189 2MASS| NL80_1 +602134 |V2134 Ori |053504.0-055119 |INSB | 14.23 | 14.79 | |J | | | | | |80189 2MASS| NL80_1 +602135 |V2135 Ori |053504.0-055402 |INSB | 13.31 | 13.89 | |J | | | | | |80189 2MASS| NL80_1 +602136 |V2136 Ori *|053504.0-051900 |INB: | 12.98 | 14.21 | |J | | | | |M4 |80189 80084| NL80_1 +602137 |V2137 Ori |053504.2-052232 |INB | 12.66 | 13.07 | |Ks| | | | | |80189 2MASS| NL80_1 +602138 |V2138 Ori |053504.2-051521 |INB | 13.50 | 13.71 | |J | | | | |M1 |80189 80084| NL80_1 +602139 |V2139 Ori *|053504.3-053831 |INSB | 13.49 | 13.68 | |J | | | | | |80189 2MASS| NL80_1 +602140 |V2140 Ori |053504.5-052357 |INSB | 11.12 | 11.70 | |J | | | | |K2 |80189 80084| NL80_1 +602141 |V2141 Ori *|053504.5-052014 |INB | 11.50 | 11.70 | |Ks| | | | | |80189 2MASS| NL80_1 +602142 |V2142 Ori *|053504.7-052436 |INSB | 14.95 | 15.97 | |J | | | | |M |80189 2MASS| NL80_1 +602143 |V2143 Ori *|053504.8-052638 |INB | 11.82 | 12.22 | |J | | | 10.93 | |M0.5 |80189 80084| NL80_1 +602144 |V2144 Ori |053504.8-051742 |INB: | 11.16 | 11.76 | |J | | | | |K5 |80189 80084| NL80_1 +602145 |V2145 Ori |053504.8-052239 |INSB | 12.73 | 12.98 | |J | | | | |M4.5 |80189 80084| NL80_1 +602146 |V2146 Ori |053504.9-054427 |INSB | 14.54 | 15.19 | |J | | | | | |80189 2MASS| NL80_1 +602147 |V2147 Ori |053504.9-052057 |INB | 13.23 | 13.90 | |J | | | 8.87 | |M3.5 |80189 80084| NL80_1 +602148 |V2148 Ori |053505.1-053644 |INB: | 12.53 | 13.16 | |J | | | | |M4.5 |80189 80084| NL80_1 +602149 |V2149 Ori |053505.2-051450 |INB | 8.16 | 8.24 | |J | | | | |G5 |80189 80084| NL80_1 +602150 |V2150 Ori *|053505.4-052411 |INSB | 11.82 | 12.94 | |J | | | | |M0 |80189 80084| NL80_1 +602151 |V2151 Ori |053505.4-052717 |INT | 11.79 | 12.06 | |J | | | | |K5.5e |80189 80084| NL80_1 +602152 |V2152 Ori *|053505.4-052415 |INSB | 13.02 | 13.79 | |J | | | | | |80189 80084| NL80_1 +602153 |V2153 Ori |053505.4-061547 |INSB | 12.56 | 12.71 | |J | | | | | |80189 2MASS| NL80_1 +602154 |V2154 Ori |053505.5-052231 |INB | 13.85 | 14.82 | |J | | | | |M6.5 |80189 2MASS| NL80_1 +602155 |V2155 Ori |053505.5-052752 |INT | 12.26 | 12.44 | |J | | | | |M1.5e |80189 80084| NL80_1 +602156 |V2156 Ori |053505.7-052345 |INT | 14.23 | 15.32 | |J | | | | |M0e |80189 80084| NL80_1 +602157 |V2157 Ori |053505.7-051135 |INSB | 12.90 | 13.05 | |J | | | | | |80189 80084| NL80_1 +602158 |V2158 Ori |053505.8-054400 |INSB | 12.73 | 12.88 | |J | | | | | |80189 2MASS| NL80_1 +602159 |V2159 Ori |053505.8-053828 |INSB | 15.36 | 16.10 | |J | | | | | |80189 2MASS| NL80_1 +602160 |V2160 Ori |053505.8-053840 |INSB | 14.75 | 15.07 | |J | | | | | |80189 2MASS| NL80_1 +602161 |V2161 Ori |053505.8-044843 |INT | 11.84 | 12.29 | |J | | | | |e |80189 2MASS| NL80_1 +602162 |V2162 Ori |053505.9-052709 |INSB | 12.27 | 12.45 | |J | | | | |K8 |80189 80084| NL80_1 +602163 |V2163 Ori |053506.1-051425 |INB | 13.20 | 13.49 | |J | | | 3.43 | |M4.5 |80189 80084| NL80_1 +602164 |V2164 Ori *|053506.2-052212 |INB | 13.11 | 13.30 | |J | | | 8.39 | |M4 |80189 2MASS| NL80_1 +602165 |V2165 Ori |053506.3-054902 |INB | 14.36 | 15.71 | |J | | | | | |80189 2MASS| NL80_1 +602166 |V2166 Ori |053506.5-053109 |INSB | 13.43 | 13.62 | |J | | | | |M4.5 |80189 80084| NL80_1 +602167 |V2167 Ori *|053506.5-052502 |INB | 13.19 | 13.97 | |J | | | 5.11 | |M4 |80189 80084| NL80_1 +602168 |V2168 Ori |053506.6-053252 |INB | 13.90 | 14.34 | |J | | | | | |80189 2MASS| NL80_1 +602169 |V2169 Ori |053506.7-051145 |INB | 13.83 | 14.03 | |J | | | 2.21 | | |80189 2MASS| NL80_1 +602170 |V2170 Ori |053506.9-052601 |INB | 13.35 | 13.78 | |J | | | | | |80189 80084| NL80_1 +602171 |V2171 Ori |053507.2-061816 |INSB | 13.17 | 13.32 | |J | | | | | |80189 2MASS| NL80_1 +602172 |V2172 Ori |053507.3-053841 |INSB | 13.87 | 14.02 | |J | | | | | |80189 2MASS| NL80_1 +602173 |V2173 Ori |053507.5-051950 |INB | 14.46 | 16.3 | |J | | | 8.87 | | |80189 2MASS| NL80_1 +602174 |V2174 Ori |053507.5-051115 |INSB | 12.19 | 13.04 | |J | | | | | |80189 80084| NL80_1 +602175 |V2175 Ori *|053507.6-052401 |INSB | 12.79 | 12.99 | |J | | | | |M3 |80189 80084| NL80_1 +602176 |V2176 Ori |053507.7-052102 |INB | 14.10 | 14.58 | |J | | | 7.83 | | |80189 2MASS| NL80_1 +602177 |V2177 Ori *|053507.8-054856 |INSB | 14.41 | 15.62 | |J | | | | | |80189 2MASS| NL80_1 +602178 |V2178 Ori *|053508.0-052117 |INB | 13.18 | 13.54 | |J | | | 2.26 | |M3.5 |80189 80084| NL80_1 +602179 |V2179 Ori *|053508.1-054854 |INSB | 12.98 | 14.07 | |J | | | | | |80189 2MASS| NL80_1 +602180 |V2180 Ori |053508.3-055000 |INSB | 12.77 | 12.94 | |J | | | | | |80189 2MASS| NL80_1 +602181 |V2181 Ori *|053508.3-052435 |INSB | 12.70 | 12.90 | |J | | | | | |80189 80084| NL80_1 +602182 |V2182 Ori |053508.3-052757 |INSB | 11.73 | 11.88 | |J | | | | | |80189 80084| NL80_1 +602183 |V2183 Ori *|053508.4-052120 |INSB | 15.1 | 15.7 | |J | | | | |M |80189 2MASS| NL80_1 +602184 |V2184 Ori |053508.5-052518 |INB: | 12.15 | 12.79 | |J | | | | |M2 |80189 80084| NL80_1 +602185 |V2185 Ori *|053508.5-052441 |INSB | 12.68 | 12.88 | |J | | | | |M4.5 |80189 80084| NL80_1 +602186 |V2186 Ori |053508.6-052619 |INSB | 13.11 | 13.39 | |J | | | | |M4.5 |80189 80084| NL80_1 +602187 |V2187 Ori |053508.7-053127 |INB | 15.26 | 16.8 | |J | | | | | |80189 2MASS| NL80_1 +602188 |V2188 Ori |053508.9-051933 |INSB | 13.95 | 14.20 | |J | | | | | |80189 2MASS| NL80_1 +602189 |V2189 Ori *|053509.3-040617 |INSB | 14.70 | 15.12 | |J | | | | | |80189 2MASS| NL80_1 +602190 |V2190 Ori |053509.3+095244 |INB | 15.67 |( 0.09 )| |J | | | | |M7 |80191 80191| NL80_1 +602191 |V2191 Ori *|053509.7-052623 |INT | 12.90 | 13.24 | |J | | | | |M1e |80189 80084| NL80_1 +602192 |V2192 Ori *|053509.8-051858 |INSB | 13.89 | 14.9 | |Ks| | | | | |80189 2MASS| NL80_1 +602193 |V2193 Ori |053509.9-071132 |INSB | 14.42 | 14.81 | |J | | | | | |80189 2MASS| NL80_1 +602194 |V2194 Ori *|053509.9-051450 |INSB | 14.29 | 14.92 | |J | | | | | |80189 2MASS| NL80_1 +602195 |V2195 Ori |053510.1-060537 |INSB | 13.52 | 14.29 | |J | | | | | |80189 2MASS| NL80_1 +602196 |V2196 Ori |053510.1-051707 |INSB | 14.12 | 15.42 | |J | | | | | |80189 2MASS| NL80_1 +602197 |V2197 Ori |053510.1-051903 |INSB | 14.40 | 15.10 | |J | | | | | |80189 2MASS| NL80_1 +602198 |V2198 Ori *|053510.2-051932 |INSB | 15.15 | 15.53 | |J | | | | | |80189 2MASS| NL80_1 +602199 |V2199 Ori |053510.2-052021 |INSB | 13.23 | 14.28 | |J | | | | |M3.5 |80189 80084| NL80_1 +602200 |V2200 Ori |053510.2-051834 |INSB | 15.21 | 16.19 | |J | | | | | |80189 2MASS| NL80_1 +602201 |V2201 Ori |053510.3-052113 |INB | 11.69 | 11.86 | |J | | | | |K7 |80189 80084| NL80_1 +602202 |V2202 Ori |053510.5-052417 |INSB | 13.42 | 14.21 | |J | | | | |K: |80189 80084| NL80_1 +602203 |V2203 Ori |053510.7-044208 |INB | 15.09 | 15.66 | |J | | | 3.01 | | |80189 2MASS| NL80_1 +602204 |V2204 Ori |053510.7-063416 |INSB | 13.57 | 14.13 | |J | | | | | |80189 2MASS| NL80_1 +602205 |V2205 Ori *|053510.8-060646 |INB | 14.84 | 15.15 | |J | | | | | |80189 2MASS| NL80_1 +602206 |V2206 Ori |053510.9-043958 |INSB | 13.36 | 14.37 | |J | | | | | |80189 2MASS| NL80_1 +602207 |V2207 Ori |053510.9-052449 |INT | 11.33 | 11.51 | |J | | | | |M3e |80189 80084| NL80_1 +602208 |V2208 Ori |053511.0-045640 |INSB | 13.28 | 13.97 | |Ks| | | | | |80189 2MASS| NL80_1 +602209 |V2209 Ori |053511.0-051522 |INSB | 15.9 | 17.3 | |J | | | | | |80189 2MASS| NL80_1 +602210 |V2210 Ori |053511.1-073530 |INB: | 13.14 | 13.37 | |J | | | 2.11 | | |80189 GSC | NL80_1 +602211 |V2211 Ori |053511.1-071906 |INB: | 12.91 | 13.07 | |J | | | | | |80189 2MASS| NL80_1 +602212 |V2212 Ori *|053511.1-053651 |EA | 11.04 |( 0.2 I )|( 0.1 )|J |53910.40 | | 4.673845 |07 |M2 |80079 80084| NL80_1 +602213 |V2213 Ori *|053511.2-052238 |INSB | 9.89 | 10.45 | |Ks| | | | | |80189 2MASS| NL80_1 +602214 |V2214 Ori *|053511.2-051721 |INSB | 12.27 | 12.44 | |J | | | | |M1 |80189 80084| NL80_1 +602215 |V2215 Ori *|053511.3-052103 |INB | 14.64 | 15.5 | |J | | | 4.05 | | |80189 2MASS| NL80_1 +602216 |V2216 Ori *|053511.5-051757 |INSB | 15.09 | 15.59 | |J | | | | | |80189 2MASS| NL80_1 +602217 |V2217 Ori *|053511.5-052553 |INSB | 12.80 | 13.28 | |Ks| | | | | |80189 2MASS| NL80_1 +602218 |V2218 Ori *|053511.7-052609 |INB | 13.39 | 13.82 | |J | | | | |M |80189 2MASS| NL80_1 +602219 |V2219 Ori |053511.8-044930 |INSB | 13.43 | 13.56 | |J | | | | | |80189 2MASS| NL80_1 +602220 |V2220 Ori *|053511.9-052103 |INSB | 12.18 | 12.72 | |J | | | | |K7 |80189 2MASS| NL80_1 +602221 |V2221 Ori |053512.0-052033 |INB | 10.87 | 11.12 | |J | | | | |K3 |80189 80084| NL80_1 +602222 |V2222 Ori *|053512.0-051841 |INB | 13.64 | 14.17 | |Ks| | | | | |80189 2MASS| NL80_1 +602223 |V2223 Ori |053512.1-052808 |INSB | 14.30 | 14.78 | |J | | | | | |80189 2MASS| NL80_1 +602224 |V2224 Ori |053512.1-052434 |INSB | 13.9 | 15.4 | |J | | | | | |80189 80084| NL80_1 +602225 |V2225 Ori *|053512.7-051935 |INB | 13.25 | 13.48 | |J | | | 7.34 | |M2 |80189 80084| NL80_1 +602226 |V2226 Ori |053512.7-045403 |INSB | 16.1 | 16.9 | |J | | | | | |80189 2MASS| NL80_1 +602227 |V2227 Ori |053512.8-003649 |INSB | 16.35 |( 0.20 )| |Ic| | | | | |80190 2MASS| NL80_1 +602228 |V2228 Ori *|053512.8-052044 |INT | 11.04 | 11.53 | |J | | | | |M1e |80189 80084| NL80_1 +602229 |V2229 Ori |053512.9-054538 |INSB | 13.28 | 13.48 | |J | | | | | |80189 2MASS| NL80_1 +602230 |V2230 Ori |053513.0-051904 |INSB | 12.26 | 12.39 | |J | | | | | |80189 80084| NL80_1 +602231 |V2231 Ori |053513.0-053404 |INSB | 12.96 | 13.41 | |J | | | | |M5.5 |80189 80084| NL80_1 +602232 |V2232 Ori *|053513.1-052113 |INT | 13.20 | 13.62 | |J | | | | |M2.5e |80189 2MASS| NL80_1 +602233 |V2233 Ori *|053513.2-051731 |INSB | 12.03 | 12.34 | |Ks| | | | |K6 |80189 80084| NL80_1 +602234 |V2234 Ori |053513.2-053618 |INSB | 13.63 | 14.19 | |J | | | | | |80189 80084| NL80_1 +602235 |V2235 Ori |053513.2-052455 |INT | 10.26 | 10.45 | |J | | | | |K1:e |80189 80084| NL80_1 +602236 |V2236 Ori *|053513.2-052053 |INSB | 12.64 | 13.53 | |J | | | | |K9 |80189 80084| NL80_1 +602237 |V2237 Ori *|053513.3-052754 |INSB | 11.39 | 11.96 | |J | | | | |M2 |80189 80084| NL80_1 +602238 |V2238 Ori |053513.3-052019 |INSB | 11.67 | 11.98 | |J | | | | |M2.5 |80189 80084| NL80_1 +602239 |V2239 Ori *|053513.4-045145 |INA | 8.05 | 8.15 | |J | | | 2.49 | |B3Vn |80189 DM | NL80_1 +602240 |V2240 Ori |053513.4-052818 |INSB | 12.18 | 12.60 | |Ks| | | | | |80189 2MASS| NL80_1 +602241 |V2241 Ori *|053513.4-052107 |INB | 13.53 | 13.79 | |J | | | | | |80189 2MASS| NL80_1 +602242 |V2242 Ori *|053513.5-053503 |INSB | 14.89 | 15.23 | |J | | | | | |80189 2MASS| NL80_1 +602243 |V2243 Ori *|053513.5-051731 |INSB | 12.94 | 13.32 | |J | | | | | |80189 2MASS| NL80_1 +602244 |V2244 Ori |053513.6-051746 |INB | 11.94 | 12.32 | |Ks| | | | | |80189 2MASS| NL80_1 +602245 |V2245 Ori *|053513.6-053508 |INB | 12.70 | 13.66 | |J | | | | |M1 |80189 80084| NL80_1 +602246 |V2246 Ori *|053513.7-044259 |INT | 11.89 | 12.48 | |J | | | | |e |80189 2MASS| NL80_1 +602247 |V2247 Ori *|053513.8-053455 |INB | 12.76 | 12.91 | |J | | | 2.49 | | |80189 80084| NL80_1 +602248 |V2248 Ori *|053513.8-052200 |INB | 6.67 | 6.85 | |Ks| | | | | |80189 80084| NL80_1 +602249 |V2249 Ori |053513.9-043503 |INB | 14.17 | 14.32 | |J | | | | | |80189 2MASS| NL80_1 +602250 |V2250 Ori |053513.9-052701 |INSB | 11.76 | 12.02 | |Ks| | | | | |80189 2MASS| NL80_1 +602251 |V2251 Ori *|053514.0-051849 |INB | 15.4 | 16.0 | |J | | | 5.05 | | |80189 2MASS| NL80_1 +602252 |V2252 Ori *|053514.1-051952 |INSB | 11.30 | 11.48 | |J | | | | |G |80189 80084| NL80_1 +602253 |V2253 Ori |053514.1-045311 |INB | 15.37 | 15.80 | |J | | | 2.88 | | |80189 2MASS| NL80_1 +602254 |V2254 Ori *|053514.1-052223 |INA | 13.26 | 14.49 | |J | | | | |B |80189 2MASS| NL80_1 +602255 |V2255 Ori *|053514.2-052024 |INSB | 14.58 | 15.34 | |J | | | | | |80189 2MASS| NL80_1 +602256 |V2256 Ori *|053514.2-052844 |INSB | 13.11 | 13.37 | |J | | | | | |80189 80084| NL80_1 +602257 |V2257 Ori *|053514.2-052004 |INB | 12.90 | 13.48 | |J | | | 10.22 | |M4: |80189 80084| NL80_1 +602258 |V2258 Ori |053514.3-051936 |INB | 14.3 | 15.1 | |J | | | | | |80189 2MASS| NL80_1 +602259 |V2259 Ori |053514.4-051825 |INSB | 15.50 | 16.3 | |J | | | | | |80189 2MASS| NL80_1 +602260 |V2260 Ori |053514.4-053319 |INSB | 12.65 | 13.60 | |J | | | | |K5 |80189 80084| NL80_1 +602261 |V2261 Ori *|053514.6-061513 |INSB | 12.40 | 12.55 | |J | | | | | |80189 2MASS| NL80_1 +602262 |V2262 Ori |053514.7-075552 |IA: | 12.6 | 13.0 | |V | | | | | |80189 GSC | NL80_1 +602263 |V2263 Ori *|053514.7-061507 |INSB | 13.60 | 13.80 | |J | | | | | |80189 2MASS| NL80_1 +602264 |V2264 Ori |053514.7-055104 |INB | 12.58 | 12.79 | |J | | | | | |80189 2MASS| NL80_1 +602265 |V2265 Ori |053514.8-053417 |INT | 13.24 | 13.43 | |J | | | | |M3e |80189 80084| NL80_1 +602266 |V2266 Ori *|053514.8-052029 |INSB | 12.55 | 13.18 | |J | | | | | |80189 80084| NL80_1 +602267 |V2267 Ori |053514.9-050748 |INB | 13.80 | 14.07 | |J | | | 3.11 | | |80189 2MASS| NL80_1 +602268 |V2268 Ori |053515.3-074016 |ISB: | 12.97 | 13.09 | |J | | | | | |80189 GSC | NL80_1 +602269 |V2269 Ori |053515.4-052747 |INSB | 14.54 | 14.95 | |J | | | | | |80189 2MASS| NL80_1 +602270 |V2270 Ori *|053515.4-052114 |INT | 12.31 | 12.60 | |J | | | | |M2.5e |80189 80084| NL80_1 +602271 |V2271 Ori *|053515.5-051738 |INSB | 12.29 | 13.08 | |J | | | | | |80189 2MASS| NL80_1 +602272 |V2272 Ori *|053515.5-055316 |INSB | 12.52 | 13.15 | |J | | | | | |80189 2MASS| NL80_1 +602273 |V2273 Ori |053515.6-045928 |INSB | 14.61 | 14.86 | |J | | | | | |80189 2MASS| NL80_1 +602274 |V2274 Ori |053515.7-052533 |INSB | 11.42 | 11.72 | |J | | | | |K8e-M0 |80189 80084| NL80_1 +602275 |V2275 Ori |053515.8-053006 |INB | 11.98 | 13.35 | |Ks| | | | | |80189 2MASS| NL80_1 +602276 |V2276 Ori *|053515.9-060947 |INB | 14.59 | 15.04 | |J | | | 2.18 | | |80189 2MASS| NL80_1 +602277 |V2277 Ori |053515.9-052853 |INSB | 11.46 | 11.67 | |J | | | | |M2.5 |80189 80084| NL80_1 +602278 |V2278 Ori |053515.9-054112 |INSB | 12.89 | 13.46 | |J | | | | | |80189 2MASS| NL80_1 +602279 |V2279 Ori *|053515.9-052350 |INT | 8.58 | 8.72 | |J | | | | |G7e |80189 80084| NL80_1 +602280 |V2280 Ori *|053516.1-052036 |INSB | 10.84 | 11.08 | |J | | | | |K3: |80189 80084| NL80_1 +602281 |V2281 Ori |053516.1-042930 |INSB | 12.97 | 13.57 | |J | | | | | |80189 2MASS| NL80_1 +602282 |V2282 Ori |053516.2-050003 |INB | 11.59 | 11.96 | |Ks| | | | | |80189 2MASS| NL80_1 +602283 |V2283 Ori *|053516.2-051903 |INB | 12.48 | 13.06 | |Ks| | | 3.16 | | |80189 2MASS| NL80_1 +602284 |V2284 Ori *|053516.2-052132 |INT | 12.53 | 12.96 | |J | | | | |M3e |80189 80084| NL80_1 +602285 |V2285 Ori |053516.2-052456 |INB | 12.05 | 12.70 | |J | | | | | |80189 80084| NL80_1 +602286 |V2286 Ori |053516.3-053202 |INB | 12.93 | 13.02 | |J | | | | |M5.5 |80189 80084| NL80_1 +602287 |V2287 Ori |053516.3-052933 |INB | 11.71 | 12.31 | |Ks| | | | | |80189 2MASS| NL80_1 +602288 |V2288 Ori *|053516.4-052510 |INB | 11.93 | 12.24 | |J | | | | |M1.5 |80189 80084| NL80_1 +602289 |V2289 Ori |053516.6-052518 |INSB | 12.3 | 12.9 | |J | | | | |M2 |80189 | NL80_1 +602290 |V2290 Ori |053516.6-051936 |INT | 12.20 | 12.81 | |J | | | | |M0e |80189 80084| NL80_1 +602291 |V2291 Ori *|053516.6-051724 |INSB | 13.18 | 13.33 | |J | | | | | |80189 80084| NL80_1 +602292 |V2292 Ori *|053516.7-052020 |INSB | 12.94 | 13.50 | |J | | | | | |80189 | NL80_1 +602293 |V2293 Ori |053516.8-051901 |INSB | 14.38 | 15.06 | |J | | | | | |80189 2MASS| NL80_1 +602294 |V2294 Ori *|053516.8-053056 |INSB | 13.70 | 14.66 | |Ks| | | | | |80189 2MASS| NL80_1 +602295 |V2295 Ori |053516.9-071902 |INB | 12.76 | 12.91 | |J | | | 5.85 | | |80189 2MASS| NL80_1 +602296 |V2296 Ori |053516.9-052709 |INB | 12.52 | 12.69 | |J | | | | | |80189 2MASS| NL80_1 +602297 |V2297 Ori *|053516.9-052547 |INSB | 12.25 | 12.48 | |J | | | | |M2.5 |80189 80084| NL80_1 +602298 |V2298 Ori |053517.0-052858 |INSB | 13.83 | 14.12 | |J | | | | | |80189 80084| NL80_1 +602299 |V2299 Ori *|053517.1-052334 |INB | 9.27 | 9.47 | |J | | | | |K1 |80189 80084| NL80_1 +602300 |V2300 Ori *|053517.1-055831 |INB | 12.36 | 12.52 | |J | | | | | |80189 2MASS| NL80_1 +602301 |V2301 Ori *|053517.2-044114 |INB | 10.85 | 10.99 | |J | | | | | |80189 2MASS| NL80_1 +602302 |V2302 Ori |053517.2-052028 |INB | 11.42 | 12.20 | |J | | | 5.85 | |M3 |80189 80084| NL80_1 +602303 |V2303 Ori |053517.3-043948 |INSB | 12.03 | 12.28 | |J | | | | | |80189 2MASS| NL80_1 +602304 |V2304 Ori *|053517.4-052015 |INB | 12.41 | 12.64 | |J | | | 13.82 | |M0.5 |80189 80084| NL80_1 +602305 |V2305 Ori |053517.4-045957 |INB | 12.62 | 12.87 | |Ks| | | | | |80189 2MASS| NL80_1 +602306 |V2306 Ori |053517.5-051823 |INSB | 11.45 | 11.80 | |Ks| | | | | |80189 2MASS| NL80_1 +602307 |V2307 Ori |053517.5-051929 |INB | 13.60 | 13.82 | |J | | | | | |80189 2MASS| NL80_1 +602308 |V2308 Ori |053517.5-010227 |BY: | 18.08 |( 0.21 )| |Ic| | | 3.65 : | | |80190 2MASS| NL80_1 +602309 |V2309 Ori *|053517.6-051833 |INSB | 15.1 | 15.5 | |J | | | | | |80189 2MASS| NL80_1 +602310 |V2310 Ori |053517.7-045143 |INSB | 14.66 | 15.02 | |J | | | | | |80189 2MASS| NL80_1 +602311 |V2311 Ori |053517.7-053202 |INB | 12.71 | 12.82 | |J | | | 9.79 | |M4 |80189 80084| NL80_1 +602312 |V2312 Ori |053517.7-042923 |INSB | 11.71 | 11.89 | |J | | | | | |80189 2MASS| NL80_1 +602313 |V2313 Ori |053517.7-072015 |INT | 12.49 | 12.63 | |J | | | | |e |80189 2MASS| NL80_1 +602314 |V2314 Ori *|053517.9-052054 |INB | 9.33 | 9.57 | |Ks| | | | |M0 |80189 80084| NL80_1 +602315 |V2315 Ori |053517.9-045336 |INB | 14.18 | 14.67 | |J | | | 7.23 | | |80189 2MASS| NL80_1 +602316 |V2316 Ori |053517.9-053041 |INT | 12.94 | 14.17 | |J | | | 4.16 | |M1.5:e |80189 80084| NL80_1 +602317 |V2317 Ori *|053517.9-051835 |INSB | 13.59 | 13.89 | |J | | | | | |80189 2MASS| NL80_1 +602318 |V2318 Ori *|053517.9-054234 |INT | 9.93 | 10.51 | |J | | | 5.53 | |K2Ve |80189 GSC | NL80_1 +602319 |V2319 Ori |053518.0-042041 |INB: | 13.60 | 14.60 | |J | | | | | |80189 2MASS| NL80_1 +602320 |V2320 Ori |053518.0-052651 |INSB | 13.26 | 13.52 | |J | | | | |M4.5 |80189 80084| NL80_1 +602321 |V2321 Ori *|053518.0-052403 |INB | 8.40 | 8.60 | |Ks| | | | |M1 |80189 80084| NL80_1 +602322 |V2322 Ori |053518.1-043119 |INSB | 12.63 | 12.95 | |J | | | | | |80189 2MASS| NL80_1 +602323 |V2323 Ori |053518.1-052825 |INT | 13.99 | 14.70 | |J | | | | |M1:e |80189 80084| NL80_1 +602324 |V2324 Ori |053518.1-032138 |INSB | 13.32 | 13.51 | |J | | | | | |80189 2MASS| NL80_1 +602325 |V2325 Ori *|053518.2-052336 |INB | 9.72 | 10.06 | |J | | | | |M0 |80189 2MASS| NL80_1 +602326 |V2326 Ori *|053518.2-051745 |INB | 13.52 | 14.37 | |J | | | | | |80189 2MASS| NL80_1 +602327 |V2327 Ori |053518.2-051307 |INSB | 11.42 | 11.69 | |J | | | | | |80189 80084| NL80_1 +602328 |V2328 Ori |053518.4-045031 |INSB | 13.07 | 13.24 | |J | | | | | |80189 2MASS| NL80_1 +602329 |V2329 Ori |053518.4-045324 |INB | 12.40 | 13.00 | |J | | | | | |80189 2MASS| NL80_1 +602330 |V2330 Ori *|053518.5-054231 |INSB | 13.90 | 14.20 | |J | | | | | |80189 2MASS| NL80_1 +602331 |V2331 Ori |053518.5-051338 |INT | 11.43 | 12.64 | |J | | | | |M2e |80189 80084| NL80_1 +602332 |V2332 Ori |053518.6-052625 |INB | 11.05 | 11.50 | |Ks| | | | | |80189 2MASS| NL80_1 +602333 |V2333 Ori *|053518.6-051328 |INB | 13.21 | 14.24 | |Ks| | | | | |80189 2MASS| NL80_1 +602334 |V2334 Ori |053518.6-045346 |INSB | 13.43 | 13.70 | |J | | | | | |80189 2MASS| NL80_1 +602335 |V2335 Ori |053518.7-054110 |INSB | 14.11 | 14.29 | |J | | | | | |80189 2MASS| NL80_1 +602336 |V2336 Ori *|053518.7-052257 |INB | 8.69 | 9.11 | |Ks| | | | |K3: |80189 80084| NL80_1 +602337 |V2337 Ori |053518.7-040326 |INB | 13.90 | 14.41 | |J | | | 2.60 | | |80189 2MASS| NL80_1 +602338 |V2338 Ori *|053518.8-051729 |INA | 11.03 | 11.40 | |J | | | | |A9: |80189 80084| NL80_1 +602339 |V2339 Ori |053518.9-051903 |INSB | 12.84 | 13.23 | |Ks| | | | | |80189 2MASS| NL80_1 +602340 |V2340 Ori |053518.9-044428 |INB | 13.00 | 13.13 | |J | | | | | |80189 2MASS| NL80_1 +602341 |V2341 Ori |053518.9-062726 |INT | 12.99 | 13.18 | |J | | | | |e |80189 2MASS| NL80_1 +602342 |V2342 Ori |053518.9-052052 |INB | 12.72 | 13.48 | |J | | | | |K7 |80189 80084| NL80_1 +602343 |V2343 Ori *|053519.0-052108 |INB | 11.64 | 11.83 | |J | | | | |M3 |80189 80084| NL80_1 +602344 |V2344 Ori |053519.0-052822 |INSB | 12.23 | 12.70 | |Ks| | | | | |80189 2MASS| NL80_1 +602345 |V2345 Ori |053519.1+095442 |INB | 13.61 | 13.72 | |J | | | | |M4.5 |80191 80191| NL80_1 +602346 |V2346 Ori *|053519.2-053103 |INSB | 13.83 | 14.06 | |J | | | | | |80189 2MASS| NL80_1 +602347 |V2347 Ori |053519.3-051645 |INT | 12.78 | 13.01 | |J | | | | |M3.5e |80189 80084| NL80_1 +602348 |V2348 Ori |053519.3-045545 |INSB | 15.09 | 16.12 | |J | | | | | |80189 2MASS| NL80_1 +602349 |V2349 Ori |053519.3-062415 |INB | 12.80 | 12.92 | |J | | | 4.02 | | |80189 2MASS| NL80_1 +602350 |V2350 Ori *|053519.4-052542 |INSB | 9.83 | 10.17 | |Ks| | | | | |80189 | NL80_1 +602351 |V2351 Ori |053519.6-052705 |INB | 14.69 | 15.14 | |J | | | | |M |80189 2MASS| NL80_1 +602352 |V2352 Ori *|053519.6-052736 |INSB | 13.74 | 14.00 | |J | | | | | |80189 80084| NL80_1 +602353 |V2353 Ori *|053519.6-052002 |INB | 10.83 | 11.09 | |Ks| | | | | |80189 2MASS| NL80_1 +602354 |V2354 Ori *|053519.6-052357 |INB | 12.2 | 13.1 | |J | | | 7.84 | |K8 |80189 80084| NL80_1 +602355 |V2355 Ori *|053519.6-051327 |INB | 13.90 | 14.24 | |J | | | 7.83 | | |80189 2MASS| NL80_1 +602356 |V2356 Ori |053519.7-052427 |INT | 10.94 | 11.08 | |J | | | | |M1e |80189 80084| NL80_1 +602357 |V2357 Ori |053519.8-044818 |INB | 13.79 | 14.49 | |J | | | 2.27 | | |80189 2MASS| NL80_1 +602358 |V2358 Ori |053519.8-051535 |INB | 12.16 | 12.66 | |Ks| | | | | |80189 2MASS| NL80_1 +602359 |V2359 Ori *|053519.8-051509 |INSB | 12.86 | 13.30 | |J | | | | | |80189 2MASS| NL80_1 +602360 |V2360 Ori *|053519.9-053104 |INB: | 13.39 | 14.05 | |J | | | | | |80189 80084| NL80_1 +602361 |V2361 Ori |053520.0-051250 |INSB | 14.20 | 14.62 | |J | | | | | |80189 2MASS| NL80_1 +602362 |V2362 Ori *|053520.0-052912 |INSB | 13.40 | 13.66 | |J | | | | | |80189 80084| NL80_1 +602363 |V2363 Ori *|053520.1-052044 |INSB | 12.84 | 13.05 | |J | | | | |M4.5 |80189 80084| NL80_1 +602364 |V2364 Ori *|053520.1-051316 |INT | 9.66 | 10.01 | |J | | | | |Ke |80189 80084| NL80_1 +602365 |V2365 Ori |053520.2-044134 |INSB | 12.89 | 13.06 | |J | | | | | |80189 2MASS| NL80_1 +602366 |V2366 Ori *|053520.3-054640 |INB | 12.42 | 12.57 | |J | | | | | |80189 2MASS| NL80_1 +602367 |V2367 Ori |053520.4-051714 |INB | 11.99 | 12.61 | |J | | | | |M1 |80189 80084| NL80_1 +602368 |V2368 Ori |053520.6-061750 |INB | 13.57 | 13.76 | |J | | | | | |80189 2MASS| NL80_1 +602369 |V2369 Ori |053520.6-050301 |INB | 11.84 | 12.28 | |Ks| | | | | |80189 2MASS| NL80_1 +602370 |V2370 Ori |053520.6-052256 |INB | 11.80 | 12.53 | |Ks| | | 4.78 | |M: |80189 80084| NL80_1 +602371 |V2371 Ori |053520.8-065506 |INB | 10.43 | 10.57 | |J | | | 2.11 | |G7V |80189 GSC | NL80_1 +602372 |V2372 Ori *|053520.8-052122 |INB | 10.44 | 10.82 | |Ks| | | | |K7 |80189 80084| NL80_1 +602373 |V2373 Ori *|053521.0-052043 |INB | 11.79 | 12.60 | |Ks| | | 2.29 | | |80189 2MASS| NL80_1 +602374 |V2374 Ori *|053521.2-052200 |INB | 10.17 | 10.54 | |Ks| | | | | |80189 2MASS| NL80_1 +602375 |V2375 Ori |053521.2-052300 |INSB | 12.65 | 12.87 | |J | | | | |M3 |80189 2MASS| NL80_1 +602376 |V2376 Ori |053521.6-052106 |INT | 13.21 | 13.81 | |J | | | | |M:e |80189 80084| NL80_1 +602377 |V2377 Ori *|053521.6-050939 |INSB | 13.78 | 14.30 | |J | | | | |K5 |80189 80084| NL80_1 +602378 |V2378 Ori *|053521.6-053458 |INT | 12.08 | 12.60 | |J | | | | |e |80189 80084| NL80_1 +602379 |V2379 Ori |053521.6-052715 |INB | 14.08 | 15.02 | |J | | | 2.67 | |M5.5 |80189 80084| NL80_1 +602380 |V2380 Ori |053521.7-052147 |INSB | 11.72 | 12.33 | |J | | | | |M1: |80189 80084| NL80_1 +602381 |V2381 Ori |053521.7-051946 |INB | 11.76 | 12.00 | |Ks| | | | | |80189 2MASS| NL80_1 +602382 |V2382 Ori |053521.8-061851 |INSB | 13.44 | 13.67 | |J | | | | | |80189 2MASS| NL80_1 +602383 |V2383 Ori *|053521.8-052339 |INB | 10.69 | 10.97 | |Ks| | | 7.23 | |K6 |80189 80084| NL80_1 +602384 |V2384 Ori *|053521.8-054609 |EA | 14.53 | 14.81 | 14.81 |Ks|53702.694 | | 9.7795909 |04 |M6.5+M6.5 |80193 2MASS| NL80_1 +602385 |V2385 Ori |053522.1-055237 |INSB | 13.24 | 14.57 | |J | | | | | |80189 2MASS| NL80_1 +602386 |V2386 Ori |053522.3-053117 |INSB | 13.11 | 13.22 | |J | | | | |M5.5 |80189 80084| NL80_1 +602387 |V2387 Ori *|053522.3-044133 |INSB | 13.73 | 14.56 | |J | | | | | |80189 2MASS| NL80_1 +602388 |V2388 Ori |053522.4-052201 |INSB | 11.65 | 12.08 | |J | | | | |K3: |80189 80084| NL80_1 +602389 |V2389 Ori *|053522.5-052545 |INSB | 12.85 | 13.66 | |J | | | | | |80189 80084| NL80_1 +602390 |V2390 Ori |053522.5-045237 |INB | 12.26 | 12.37 | |J | | | | | |80189 2MASS| NL80_1 +602391 |V2391 Ori |053522.6-054429 |INB | 13.98 | 14.8 | |Ks| | | | | |80189 2MASS| NL80_1 +602392 |V2392 Ori |053522.7-051614 |INSB | 13.12 | 13.31 | |J | | | | | |80189 2MASS| NL80_1 +602393 |V2393 Ori |053522.7-051838 |INSB | 12.39 | 12.61 | |Ks| | | | | |80189 2MASS| NL80_1 +602394 |V2394 Ori |053522.8-044830 |INB | 11.74 | 12.01 | |J | | | 6.03 | | |80189 2MASS| NL80_1 +602395 |V2395 Ori |053522.8-052313 |INSB | 11.86 | 12.19 | |J | | | | |M0: |80189 80084| NL80_1 +602396 |V2396 Ori |053522.8-061205 |INSB | 12.92 | 13.69 | |J | | | | | |80189 2MASS| NL80_1 +602397 |V2397 Ori |053522.8-044641 |INB | 12.90 | 13.25 | |J | | | | | |80189 2MASS| NL80_1 +602398 |V2398 Ori |053522.9+095507 |IB | 15.61 |( 0.06 )| |J | | | | |M5 |80191 80191| NL80_1 +602399 |V2399 Ori |053522.9-043741 |INSB | 12.96 | 13.14 | |J | | | | | |80189 2MASS| NL80_1 +602400 |V2400 Ori |053522.9-053229 |INB | 10.99 | 12.12 | |J | | | | |M1 |80189 80084| NL80_1 +602401 |V2401 Ori *|053522.9-051340 |INB | 14.34 | 14.71 | |J | | | | | |80189 2MASS| NL80_1 +602402 |V2402 Ori |053523.0-052536 |INB | 14.5 | 15.3 | |J | | | 2.06 | | |80189 | NL80_1 +602403 |V2403 Ori |053523.0-052942 |INSB | 12.73 | 13.11 | |J | | | | |M4 |80189 80084| NL80_1 +602404 |V2404 Ori *|053523.1-041717 |INB | 12.20 | 12.32 | |J | | | 2.47 | | |80189 2MASS| NL80_1 +602405 |V2405 Ori *|053523.2-052228 |INB | 13.86 | 14.5 | |J | | | | | |80189 2MASS| NL80_1 +602406 |V2406 Ori |053523.3-044905 |INB | 11.73 | 11.86 | |J | | | 6.10 | | |80189 2MASS| NL80_1 +602407 |V2407 Ori |053523.3-052125 |INT | 12.42 | 12.64 | |J | | | | |K7.5:e |80189 80084| NL80_1 +602408 |V2408 Ori |053523.4-044010 |INB | 13.07 | 13.52 | |J | | | | | |80189 2MASS| NL80_1 +602409 |V2409 Ori |053523.5-051523 |INSB | 14.08 | 14.26 | |J | | | | | |80189 2MASS| NL80_1 +602410 |V2410 Ori *|053523.5-051857 |INB | 11.93 | 12.31 | |J | | | | |M0 |80189 80084| NL80_1 +602411 |V2411 Ori |053523.7-052627 |INSB | 12.39 | 12.83 | |J | | | | |M3 |80189 80084| NL80_1 +602412 |V2412 Ori |053523.7-044817 |INB | 13.03 | 13.16 | |J | | | | | |80189 2MASS| NL80_1 +602413 |V2413 Ori *|053523.8-051840 |INT | 12.46 | 12.80 | |J | | | | |M2e |80189 80084| NL80_1 +602414 |V2414 Ori *|053524.0-051908 |INSB | 12.99 | 13.18 | |J | | | | |M3.5 |80189 80084| NL80_1 +602415 |V2415 Ori *|053524.0-052314 |INSB | 13.9 | 15.5 | |J | | | | | |80189 2MASS| NL80_1 +602416 |V2416 Ori |053524.1-050907 |INSB | 14.36 | 14.76 | |J | | | | | |80189 2MASS| NL80_1 +602417 |V2417 Ori *|053524.1-052133 |INSB | 12.32 | 12.53 | |J | | | | |M3 |80189 80084| NL80_1 +602418 |V2418 Ori |053524.1-044930 |INB | 13.72 | 14.58 | |J | | | | | |80189 2MASS| NL80_1 +602419 |V2419 Ori |053524.2-043103 |INB | 11.61 | 11.76 | |J | | | | |F6 |80189 2MASS| NL80_1 +602420 |V2420 Ori |053524.2-052957 |INB | 11.86 | 12.62 | |J | | | 8.25 | |M2 |80189 80084| NL80_1 +602421 |V2421 Ori |053524.3-052519 |INT | 11.28 | 11.46 | |J | | | | |K2.5e |80189 80084| NL80_1 +602422 |V2422 Ori |053524.3-052232 |INSB | 13.50 | 13.86 | |J | | | | | |80189 2MASS| NL80_1 +602423 |V2423 Ori *|053524.4-052440 |INT | 10.72 | 10.90 | |J | | | | |M0e |80189 80084| NL80_1 +602424 |V2424 Ori |053524.5-051700 |INT | 11.67 | 11.86 | |J | | | | |M1e |80189 80084| NL80_1 +602425 |V2425 Ori *|053524.5-052502 |INT | 12.83 | 13.6 | |J | | | | |M1e |80189 80084| NL80_1 +602426 |V2426 Ori |053524.6-055534 |INSB | 11.07 | 11.46 | |Ks| | | | | |80189 2MASS| NL80_1 +602427 |V2427 Ori |053524.6-051130 |INT | 12.16 | 12.46 | |J | | | | |K6e |80189 80084| NL80_1 +602428 |V2428 Ori |053524.6-052104 |INSB | 10.79 | 11.14 | |Ks| | | | | |80189 2MASS| NL80_1 +602429 |V2429 Ori |053524.7-051641 |INSB | 14.05 | 14.26 | |J | | | | | |80189 2MASS| NL80_1 +602430 |V2430 Ori |053524.9-052510 |INB | 12.74 | 12.88 | |J | | | 4.95 | | |80189 80084| NL80_1 +602431 |V2431 Ori |053525.1-055739 |INB | 11.69 | 11.83 | |J | | | | | |80189 2MASS| NL80_1 +602432 |V2432 Ori |053525.2-055555 |INB | 12.21 | 12.36 | |J | | | 14.69 | | |80189 | NL80_1 +602433 |V2433 Ori |053525.2-004324 |IB: | 15.06 |( 0.65 : )| |Ic| | | | |e |80190 USNO | NL80_1 +602434 |V2434 Ori |053525.2-051536 |INT | 11.63 | 11.99 | |J | | | | |M2.5e |80189 80084| NL80_1 +602435 |V2435 Ori *|053525.3-083103 |IB: | 14.32 | 14.53 | |J | | | | | |80189 2MASS| NL80_1 +602436 |V2436 Ori |053525.4-052530 |INSB | 12.94 | 13.27 | |J | | | | | |80189 2MASS| NL80_1 +602437 |V2437 Ori |053525.4-052411 |INSB | 12.37 | 13.25 | |J | | | | |M1: |80189 80084| NL80_1 +602438 |V2438 Ori |053525.5-045121 |INT | 12.33 | 12.52 | |J | | | | |e |80189 2MASS| NL80_1 +602439 |V2439 Ori |053525.6-045527 |INB | 14.86 | 15.13 | |J | | | 5.00 | | |80189 2MASS| NL80_1 +602440 |V2440 Ori |053525.6-061305 |INB | 13.76 | 13.99 | |J | | | 4.27 | | |80189 2MASS| NL80_1 +602441 |V2441 Ori |053525.7-052309 |INT | 11.71 | 12.02 | |J | | | 10.22 | |K8e |80189 80084| NL80_1 +602442 |V2442 Ori *|053525.7-050746 |INSB | 14.54 | 15.39 | |J | | | | | |80189 2MASS| NL80_1 +602443 |V2443 Ori |053526.0-030834 |INSB | 11.59 | 11.72 | |J | | | | | |80189 2MASS| NL80_1 +602444 |V2444 Ori *|053526.2-052257 |INB | 13.09 | 13.37 | |J | | | 10.68 | |M5.5 |80189 2MASS| NL80_1 +602445 |V2445 Ori |053526.2-052006 |INB | 11.92 | 12.15 | |J | | | | | |80189 80084| NL80_1 +602446 |V2446 Ori |053526.2-054509 |INB | 12.37 | 12.62 | |J | | | 5.88 | | |80189 2MASS| NL80_1 +602447 |V2447 Ori |053526.4-054434 |INB | 13.75 | 13.87 | |J | | | | | |80189 2MASS| NL80_1 +602448 |V2448 Ori *|053526.4-052302 |INB | 13.48 | 14.1 | |J | | | | |K4.5 |80189 80084| NL80_1 +602449 |V2449 Ori *|053526.4-052532 |INS | 13.49 | 13.83 | |J | | | | | |80189 2MASS| NL80_1 +602450 |V2450 Ori |053526.4-045952 |INSB | 12.77 | 13.17 | |Ks| | | | | |80189 2MASS| NL80_1 +602451 |V2451 Ori *|053526.4-055445 |INA: | 7.47 | 7.57 | |J | | | 8.87 | |B1III-IV |80189 GSC | NL80_1 +602452 |V2452 Ori |053526.5-051919 |INB | 12.77 | 13.04 | |Ks| | | | | |80189 2MASS| NL80_1 +602453 |V2453 Ori |053526.6-061909 |INB | 11.54 | 11.69 | |J | | | | | |80189 2MASS| NL80_1 +602454 |V2454 Ori *|053526.7-051645 |INB | 12.89 | 13.39 | |J | | | 3.04 | | |80189 2MASS| NL80_1 +602455 |V2455 Ori |053526.8-050925 |INB | 11.00 | 11.43 | |Ks| | | | | |80189 2MASS| NL80_1 +602456 |V2456 Ori |053527.0-052401 |INB | 12.94 | 13.50 | |J | | | 5.34 | |M6 |80189 80084| NL80_1 +602457 |V2457 Ori |053527.0-050955 |INB | 15.06 | 15.40 | |J | | | | | |80189 2MASS| NL80_1 +602458 |V2458 Ori *|053527.0-054846 |INB | 12.87 | 13.04 | |J | | | | | |80189 2MASS| NL80_1 +602459 |V2459 Ori |053527.1-051545 |INB | 12.63 | 12.92 | |J | | | 5.53 | | |80189 80084| NL80_1 +602460 |V2460 Ori *|053527.1-054852 |INB | 10.44 | 10.58 | |J | | | | | |80189 GSC | NL80_1 +602461 |V2461 Ori |053527.1-064549 |INB | 13.23 | 13.43 | |J | | | | | |80189 2MASS| NL80_1 +602462 |V2462 Ori |053527.2-045519 |INB | 13.86 | 14.22 | |J | | | 2.64 | | |80189 2MASS| NL80_1 +602463 |V2463 Ori |053527.3-052337 |INB | 11.03 | 11.43 | |J | | | | |K4 |80189 80084| NL80_1 +602464 |V2464 Ori *|053527.4-061931 |INSB | 15.22 | 16.2 | |J | | | | | |80189 2MASS| NL80_1 +602465 |V2465 Ori |053527.4-050242 |INB | 10.55 | 11.05 | |Ks| | | | | |80189 2MASS| NL80_1 +602466 |V2466 Ori |053527.6-044908 |INB | 13.30 | 13.43 | |J | | | | | |80189 2MASS| NL80_1 +602467 |V2467 Ori *|053527.6-050937 |INB | 13.06 | 14.19 | |J | | | | | |80189 2MASS| NL80_1 +602468 |V2468 Ori |053527.7-054255 |INT | 12.00 | 12.18 | |J | | | | |e |80189 2MASS| NL80_1 +602469 |V2469 Ori |053527.8-052119 |INB | 11.39 | 11.59 | |Ks| | | | | |80189 2MASS| NL80_1 +602470 |V2470 Ori |053528.1-050135 |INB | 12.07 | 12.73 | |Ks| | | | | |80189 2MASS| NL80_1 +602471 |V2471 Ori |053528.1-052306 |INT | 12.46 | 13.18 | |J | | | | |M3e |80189 80084| NL80_1 +602472 |V2472 Ori |053528.1-052135 |INB | 10.62 | 10.92 | |Ks| | | | | |80189 2MASS| NL80_1 +602473 |V2473 Ori |053528.2-051551 |INB | 14.07 | 14.39 | |J | | | | | |80189 2MASS| NL80_1 +602474 |V2474 Ori |053528.2-044352 |INB | 14.59 | 14.84 | |J | | | | | |80189 2MASS| NL80_1 +602475 |V2475 Ori |053528.2-045838 |INSB | 11.49 | 11.77 | |Ks| | | | | |80189 2MASS| NL80_1 +602476 |V2476 Ori *|053528.4-055628 |INSB | 13.00 | 13.57 | |J | | | | | |80189 2MASS| NL80_1 +602477 |V2477 Ori |053528.6-053304 |INB | 15.2 | 15.7 | |J | | | 2.18 | | |80189 2MASS| NL80_1 +602478 |V2478 Ori |053528.8-044530 |INB | 12.57 | 14.72 | |Ks| | | | | |80189 2MASS| NL80_1 +602479 |V2479 Ori *|053529.4-054951 |INB | 13.17 | 13.34 | |J | | | | | |80189 2MASS| NL80_1 +602480 |V2480 Ori |053529.4-051756 |INB | 14.07 | 14.95 | |J | | | 4.23 | | |80189 2MASS| NL80_1 +602481 |V2481 Ori *|053529.4-051846 |INB | 13.07 | 14.30 | |J | | | | | |80189 2MASS| NL80_1 +602482 |V2482 Ori |053529.7-053025 |INB | 14.36 | 14.85 | |J | | | | | |80189 2MASS| NL80_1 +602483 |V2483 Ori *|053529.8-053254 |INB | 9.90 | 10.06 | |J | | | 3.95 | |G8V |80189 80084| NL80_1 +602484 |V2484 Ori *|053529.9-052356 |INSB | 11.80 | 12.03 | |J | | | | |M1.5 |80189 80084| NL80_1 +602485 |V2485 Ori |053530.0-051228 |INT | 12.00 | 12.23 | |J | | | | |M4e |80189 80084| NL80_1 +602486 |V2486 Ori |053530.1-051419 |INB | 12.96 | 13.20 | |J | | | | |M4.5 |80189 80084| NL80_1 +602487 |V2487 Ori |053530.3-051353 |INB | 13.10 | 13.47 | |J | | | | | |80189 2MASS| NL80_1 +602488 |V2488 Ori |053530.4-052811 |INSB | 13.60 | 13.89 | |J | | | | |M3.5 |80189 80084| NL80_1 +602489 |V2489 Ori |053530.5-051934 |INB | 13.99 | 14.58 | |J | | | | | |80189 2MASS| NL80_1 +602490 |V2490 Ori |053530.5-054904 |INB | 12.67 | 12.90 | |J | | | | |M2 |80189 2MASS| NL80_1 +602491 |V2491 Ori *|053530.6-055155 |INB | 12.42 | 12.59 | |J | | | | |M4 |80189 2MASS| NL80_1 +602492 |V2492 Ori *|053530.6-052139 |INSB | 11.86 | 12.22 | |Ks| | | | | |80189 2MASS| NL80_1 +602493 |V2493 Ori |053530.6-045936 |INSB | 14.05 | 14.48 | |J | | | | | |80189 2MASS| NL80_1 +602494 |V2494 Ori *|053530.8-052147 |INB | 13.88 | 14.11 | |J | | | 13.49 | | |80189 2MASS| NL80_1 +602495 |V2495 Ori *|053531.0-051845 |INT | 13.02 | 13.32 | |J | | | 3.5 | |M6e |80189 80084| NL80_1 +602496 |V2496 Ori |053531.1-051344 |INB | 13.40 | 14.1 | |Ks| | | 3.03 | | |80189 2MASS| NL80_1 +602497 |V2497 Ori *|053531.2-045727 |INB | 10.90 | 12.27 | |Ks| | | | | |80189 2MASS| NL80_1 +602498 |V2498 Ori |053531.2-052340 |INSB | 11.58 | 11.78 | |J | | | | |K4: |80189 80084| NL80_1 +602499 |V2499 Ori *|053531.3-051856 |INT | 10.72 | 10.94 | |J | | | | |K8Ve |80189 80084| NL80_1 +602500 |V2500 Ori *|053531.4-052017 |INSB | 13.66 | 14.31 | |J | | | | |M1.5 |80189 80084| NL80_1 +602501 |V2501 Ori |053531.5-052137 |INB | 11.44 | 11.63 | |Ks| | | 2.78 | | |80189 2MASS| NL80_1 +602502 |V2502 Ori |053531.5-050547 |INB | 11.60 | 12.05 | |J | | | | | |80189 2MASS| NL80_1 +602503 |V2503 Ori |053531.6-051658 |INB: | 12.81 | 13.40 | |J | | | | | |80189 80084| NL80_1 +602504 |V2504 Ori |053531.6-050014 |INB | 9.82 | 10.36 | |Ks| | | 5.69 | | |80189 2MASS| NL80_1 +602505 |V2505 Ori |053531.8-052121 |INB | 11.85 | 12.18 | |Ks| | | | | |80189 2MASS| NL80_1 +602506 |V2506 Ori |053531.9-063626 |INSB | 13.61 | 14.16 | |J | | | | | |80189 2MASS| NL80_1 +602507 |V2507 Ori |053531.9-053511 |INSB | 15.06 | 15.62 | |J | | | | | |80189 2MASS| NL80_1 +602508 |V2508 Ori |053531.9-053148 |INSB | 14.37 | 15.20 | |J | | | | | |80189 2MASS| NL80_1 +602509 |V2509 Ori *|053532.0-051620 |INB | 11.00 | 11.70 | |Ks| | | | |M1 |80189 80084| NL80_1 +602510 |V2510 Ori |053532.0-043834 |INB | 14.21 | 14.89 | |J | | | | | |80189 2MASS| NL80_1 +602511 |V2511 Ori |053532.2-054427 |INSB | 11.44 | 11.61 | |J | | | | |M3 |80189 2MASS| NL80_1 +602512 |V2512 Ori |053532.2-005637 |BY: | 16.44 |( 0.03 )| |Ic| | | 1.5 | | |80190 2MASS| NL80_1 +602513 |V2513 Ori |053532.3-052941 |INSB | 15.42 | 16.30 | |J | | | | | |80189 2MASS| NL80_1 +602514 |V2514 Ori *|053532.3-044648 |INB | 13.10 | 13.98 | |Ks| | | 5.55 | | |80189 2MASS| NL80_1 +602515 |V2515 Ori |053532.3-051144 |INB | 14.63 | 15.10 | |J | | | | | |80189 2MASS| NL80_1 +602516 |V2516 Ori *|053532.4-051507 |INB | 13.32 | 15.25 | |J | | | 9.26 | | |80189 80084| NL80_1 +602517 |V2517 Ori |053532.5-044808 |INSB | 14.58 | 14.90 | |J | | | | | |80189 2MASS| NL80_1 +602518 |V2518 Ori |053532.6-050538 |INSB | 15.30 | 15.83 | |J | | | | | |80189 2MASS| NL80_1 +602519 |V2519 Ori |053532.7-054529 |INSB | 14.06 | 14.42 | |J | | | | | |80189 2MASS| NL80_1 +602520 |V2520 Ori |053532.7-052118 |INSB | 11.41 | 11.70 | |Ks| | | | | |80189 2MASS| NL80_1 +602521 |V2521 Ori *|053532.7-045012 |INSB | 10.97 | 11.86 | |J | | | | | |80189 2MASS| NL80_1 +602522 |V2522 Ori |053533.0-051205 |INB | 13.02 | 13.89 | |J | | | | | |80189 2MASS| NL80_1 +602523 |V2523 Ori |053533.2-051411 |INB | 12.09 | 12.39 | |J | | | | | |80189 80084| NL80_1 +602524 |V2524 Ori |053533.2-051958 |INSB | 13.93 | 14.23 | |J | | | | |K8 |80189 2MASS| NL80_1 +602525 |V2525 Ori |053533.3-045111 |INB | 12.61 | 12.81 | |J | | | | | |80189 2MASS| NL80_1 +602526 |V2526 Ori |053533.4-015236 |RS: | 11.88 | 11.96 | |V | | | 1.74 | |G9 |80151 GSC | NL80_1 +602527 |V2527 Ori |053533.6-051523 |INB | 13.01 | 13.21 | |J | | | 6.29 | | |80189 80084| NL80_1 +602528 |V2528 Ori |053533.7-044624 |INT | 12.03 | 12.47 | |J | | | | |e |80189 2MASS| NL80_1 +602529 |V2529 Ori |053533.8-050428 |INSB | 13.39 | 14.37 | |J | | | | | |80189 2MASS| NL80_1 +602530 |V2530 Ori |053534.1-010356 |BY: | 17.17 |( 0.18 )| |Ic| | | 0.704 | | |80190 2MASS| NL80_1 +602531 |V2531 Ori |053534.1-071458 |INB | 13.03 | 13.29 | |J | | | 10.49 | | |80189 2MASS| NL80_1 +602532 |V2532 Ori |053534.3-053322 |INB | 13.96 | 14.16 | |J | | | | |M1 |80189 80084| NL80_1 +602533 |V2533 Ori |053534.4-051839 |INB | 12.13 | 12.92 | |Ks| | | 4.72 | | |80189 2MASS| NL80_1 +602534 |V2534 Ori |053534.5-044021 |INT | 12.00 | 12.22 | |J | | | | |e |80189 2MASS| NL80_1 +602535 |V2535 Ori |053534.5-050052 |INSB | 10.97 | 11.27 | |J | | | | | |80189 2MASS| NL80_1 +602536 |V2536 Ori |053534.6-060247 |INB | 13.55 | 14.25 | |J | | | 6.21 | | |80189 2MASS| NL80_1 +602537 |V2537 Ori *|053534.7-044858 |INB | 12.00 | 12.58 | |Ks| | | | | |80189 2MASS| NL80_1 +602538 |V2538 Ori |053534.7-083450 |BY: | 11.38 | 11.54 | |J | | | 2.06 | | |80189 GSC | NL80_1 +602539 |V2539 Ori |053534.7-053438 |INB | 12.56 | 12.83 | |J | | | | |M3 |80189 80084| NL80_1 +602540 |V2540 Ori |053534.9-042325 |IN | 12.29 | 12.45 | |J | | | 4.21 | | |80189 2MASS| NL80_1 +602541 |V2541 Ori |053534.9-060837 |INB | 15.60 | 16.7 | |J | | | 7.38 | | |80189 2MASS| NL80_1 +602542 |V2542 Ori |053535.1-053349 |INT | 15.09 | 15.90 | |J | | | 10.04 | |K3:e |80189 80084| NL80_1 +602543 |V2543 Ori *|053535.1-052124 |INB | 12.49 | 13.34 | |J | | | | | |80189 80084| NL80_1 +602544 |V2544 Ori |053535.2-044740 |INSB | 12.27 | 12.46 | |J | | | | | |80189 2MASS| NL80_1 +602545 |V2545 Ori |053535.4-050847 |INSB | 13.82 | 14.40 | |J | | | | | |80189 2MASS| NL80_1 +602546 |V2546 Ori |053535.5-055819 |INSB | 13.50 | 13.93 | |J | | | | | |80189 2MASS| NL80_1 +602547 |V2547 Ori |053535.6-053908 |INSB | 13.32 | 14.73 | |J | | | | |M1: |80189 80084| NL80_1 +602548 |V2548 Ori |053536.0-053843 |INB | 12.82 | 12.93 | |J | | | | |M3 |80189 80084| NL80_1 +602549 |V2549 Ori |053536.2-050456 |INSB | 13.01 | 13.29 | |J | | | | | |80189 2MASS| NL80_1 +602550 |V2550 Ori |053536.2-052020 |INSB | 13.84 | 14.11 | |J | | | | | |80189 2MASS| NL80_1 +602551 |V2551 Ori |053536.4-053138 |INB | 12.42 | 12.60 | |J | | | | | |80189 80084| NL80_1 +602552 |V2552 Ori |053536.4-041620 |INT | 12.89 | 13.02 | |J | | | | | e |80189 2MASS| NL80_1 +602553 |V2553 Ori |053536.7-052328 |INB | 11.56 | 11.80 | |Ks| | | | | |80189 2MASS| NL80_1 +602554 |V2554 Ori |053536.7-051000 |INSB | 13.13 | 13.42 | |J | | | | |M3 |80189 80084| NL80_1 +602555 |V2555 Ori |053537.3-050236 |INB | 15.19 | 15.48 | |J | | | | | |80189 2MASS| NL80_1 +602556 |V2556 Ori |053537.6-010251 |BY | 15.27 |( 0.11 )| |Ic| | | 4.08 | | |80190 USNO | NL80_1 +602557 |V2557 Ori |053537.9-042609 |INB | 13.57 | 14.30 | |J | | | | | |80189 2MASS| NL80_1 +602558 |V2558 Ori |053538.5-043832 |INSB | 13.40 | 13.79 | |J | | | | | |80189 2MASS| NL80_1 +602559 |V2559 Ori |053538.5-005112 |E | 15.02 |( 1.10 )| |Rc| | | | | |80190 2MASS| NL80_1 +602560 |V2560 Ori |053538.7-051659 |INSB | 12.87 | 13.51 | |J | | | | |M6 |80189 80084| NL80_1 +602561 |V2561 Ori |053539.1-041744 |INB | 14.20 | 14.40 | |J | | | | | |80189 2MASS| NL80_1 +602562 |V2562 Ori |053539.4-072038 |INT | 13.66 | 13.92 | |J | | | | |e |80189 2MASS| NL80_1 +602563 |V2563 Ori |053540.0-052227 |INB | 12.82 | 13.50 | |Ks| | | 2.48 | | |80189 2MASS| NL80_1 +602564 |V2564 Ori |053540.2-031432 |INB | 13.95 | 14.16 | |J | | | | | |80189 2MASS| NL80_1 +602565 |V2565 Ori |053540.3-070534 |INB | 14.28 | 14.56 | |J | | | | | |80189 2MASS| NL80_1 +602566 |V2566 Ori |053540.4-045544 |INB | 13.17 | 13.39 | |J | | | | | |80189 2MASS| NL80_1 +602567 |V2567 Ori |053540.5-043519 |INT | 12.18 | 12.30 | |J | | | | |e |80189 2MASS| NL80_1 +602568 |V2568 Ori *|053540.7-043327 |INB | 12.43 | 12.55 | |J | | | 7.04 | | |80189 2MASS| NL80_1 +602569 |V2569 Ori |053540.8-051248 |INB | 13.37 | 13.47 | |J | | | | | |80189 2MASS| NL80_1 +602570 |V2570 Ori |053540.8-052142 |INB | 14.09 | 14.40 | |J | | | | | |80189 2MASS| NL80_1 +602571 |V2571 Ori |053540.9-052202 |INT | 12.92 | 14.61 | |J | | | | |M4e |80189 80084| NL80_1 +602572 |V2572 Ori |053540.9-043439 |INB | 12.35 | 13.31 | |J | | | 15.23 | |K8 |80189 2MASS| NL80_1 +602573 |V2573 Ori |053542.0-051012 |INSB | 11.48 | 11.72 | |J | | | | |K7 |80189 80084| NL80_1 +602574 |V2574 Ori |053542.3-051508 |INT | 12.87 | 13.34 | |J | | | | |M0.5e |80189 80084| NL80_1 +602575 |V2575 Ori *|053542.4-044257 |INSB | 13.87 | 14.7 | |Ks| | | | | |80189 2MASS| NL80_1 +602576 |V2576 Ori |053542.6-004201 |BY | 17.51 |( 0.05 )| |Ic| | | 1.43 | | |80190 2MASS| NL80_1 +602577 |V2577 Ori |053542.6-052634 |INSB | 14.33 | 14.68 | |J | | | | | |80189 2MASS| NL80_1 +602578 |V2578 Ori |053542.8-051945 |INSB | 14.65 | 16.03 | |J | | | | | |80189 2MASS| NL80_1 +602579 |V2579 Ori |053542.8-051155 |INB | 11.13 | 11.25 | |J | | | 3.35 | |K6.5 |80189 80084| NL80_1 +602580 |V2580 Ori |053542.8-062145 |INB+E: | 12.79 | 13.30 | |J | | | | | |80189 2MASS| NL80_1 +602581 |V2581 Ori |053543.0-052302 |INT | 12.74 | 13.15 | |J | | | | |M2e |80189 80084| NL80_1 +602582 |V2582 Ori |053543.1-050308 |INSB | 13.26 | 13.44 | |J | | | | | |80189 2MASS| NL80_1 +602583 |V2583 Ori |053543.5-050850 |INSB | 14.00 | 14.48 | |Ks| | | | | |80189 2MASS| NL80_1 +602584 |V2584 Ori |053543.6-004647 |BY | 17.87 |( 0.04 )| |Ic| | | 0.169 | | |80190 2MASS| NL80_1 +602585 |V2585 Ori |053543.7-085557 |E: | 12.49 | 13.06 | |J | | | | | |80189 GSC | NL80_1 +602586 |V2586 Ori |053544.8-052435 |INSB | 11.88 | 12.17 | |J | | | | |M4 |80189 80084| NL80_1 +602587 |V2587 Ori |053545.3-005332 |BY | 16.26 |( 0.03 )| |Ic| | | 1.35 | | |80190 2MASS| NL80_1 +602588 |V2588 Ori |053545.3-070422 |INB | 12.85 | 13.01 | |J | | | | | |80189 2MASS| NL80_1 +602589 |V2589 Ori |053545.9-042036 |INB | 13.94 | 14.64 | |J | | | 6.94 | | |80189 2MASS| NL80_1 +602590 |V2590 Ori |053546.2-051809 |INB+E: | 11.98 | 12.53 | |J | | | | |M2 |80189 80084| NL80_1 +602591 |V2591 Ori |053546.2-051540 |INT | 12.51 | 13.08 | |J | | | | |M2e |80189 80084| NL80_1 +602592 |V2592 Ori *|053546.5-022227 |EA | 7.80 | 8.26 | 8.20 |V |52912.913 | | 13.5496 |03 |F3V |80015 DM | NL80_1 +602593 |V2593 Ori |053546.9-084831 |IB: | 12.38 | 12.57 | |J | | | | | |80189 GSC | NL80_1 +602594 |V2594 Ori |053546.9-052627 |INB | 15.52 | 15.78 | |J | | | | | |80189 2MASS| NL80_1 +602595 |V2595 Ori |053547.0-084114 |ISB | 13.43 | 13.61 | |J | | | | | |80189 2MASS| NL80_1 +602596 |V2596 Ori |053547.1-033203 |INB | 14.10 | 14.33 | |J | | | | | |80189 2MASS| NL80_1 +602597 |V2597 Ori |053547.1-071943 |INB | 12.30 | 12.53 | |J | | | | | |80189 2MASS| NL80_1 +602598 |V2598 Ori |053547.6-053739 |INT | 12.56 | 13.15 | |J | | | | |M6e |80189 80084| NL80_1 +602599 |V2599 Ori |053547.7-055806 |INB | 13.66 | 13.89 | |J | | | | |M5.5 |80189 2MASS| NL80_1 +602600 |V2600 Ori |053548.0-060135 |INB | 12.93 | 13.07 | |J | | | | |M3 |80189 2MASS| NL80_1 +602601 |V2601 Ori |053548.0-035745 |INB | 12.20 | 12.34 | |J | | | | | |80189 GSC | NL80_1 +602602 |V2602 Ori *|053548.5-055623 |INSB | 13.23 | 13.69 | |J | | | | | |80189 2MASS| NL80_1 +602603 |V2603 Ori *|053549.0-045350 |INSB | 14.36 | 14.58 | |J | | | | | |80189 2MASS| NL80_1 +602604 |V2604 Ori |053549.5-033252 |INB | 12.63 | 12.73 | |J | | | | | |80189 2MASS| NL80_1 +602605 |V2605 Ori |053549.9-051831 |INB | 12.68 | 12.90 | |J | | | | | |80189 80084| NL80_1 +602606 |V2606 Ori |053550.0-051718 |INB | 14.86 | 15.25 | |J | | | | |M2 |80189 2MASS| NL80_1 +602607 |V2607 Ori |053550.7-044037 |INB | 13.65 | 13.94 | |J | | | | |M5: |80189 2MASS| NL80_1 +602608 |V2608 Ori *|053550.7-052754 |INSB | 13.03 | 13.41 | |Ks| | | | | |80189 2MASS| NL80_1 +602609 |V2609 Ori |053550.9-044323 |INB | 13.50 | 14.20 | |J | | | 8.58 | |M4.5 |80189 2MASS| NL80_1 +602610 |V2610 Ori |053551.2-045628 |INB | 13.70 | 14.12 | |J | | | | | |80189 2MASS| NL80_1 +602611 |V2611 Ori |053551.3-061353 |INSB | 13.21 | 13.37 | |J | | | | | |80189 2MASS| NL80_1 +602612 |V2612 Ori |053551.7-040831 |INB | 11.30 | 11.50 | |J | | | 7.61 | | |80189 GSC | NL80_1 +602613 |V2613 Ori |053552.1-044915 |INSB | 13.52 | 13.72 | |J | | | | | |80189 2MASS| NL80_1 +602614 |V2614 Ori |053552.3-044305 |INT | 11.74 | 12.00 | |J | | | | |e |80189 2MASS| NL80_1 +602615 |V2615 Ori *|053552.3-051257 |INB | 12.85 | 13.00 | |J | | | | |M4 |80189 2MASS| NL80_1 +602616 |V2616 Ori |053552.8-052231 |INSB | 13.05 | 13.23 | |J | | | | |K: |80189 2MASS| NL80_1 +602617 |V2617 Ori |053552.9-052544 |INB | 14.11 | 15.60 | |J | | | 3.15 | | |80189 2MASS| NL80_1 +602618 |V2618 Ori |053553.5-052027 |INSB | 13.72 | 14.48 | |Ks| | | | | |80189 2MASS| NL80_1 +602619 |V2619 Ori |053554.1-051710 |INSB | 13.48 | 13.69 | |J | | | | |M5.5 |80189 80084| NL80_1 +602620 |V2620 Ori *|053554.8-045820 |INSB | 14.10 | 14.90 | |J | | | | | |80189 2MASS| NL80_1 +602621 |V2621 Ori |053555.0-044028 |INB | 13.31 | 13.50 | |J | | | 9.83 | | |80189 2MASS| NL80_1 +602622 |V2622 Ori |053555.7-054929 |INT | 12.82 | 13.69 | |J | | | | |e |80189 2MASS| NL80_1 +602623 |V2623 Ori |053556.1-083230 |IA: | 9.93 | 10.07 | |J | | | | | |80189 GSC | NL80_1 +602624 |V2624 Ori |053556.6-053511 |INB | 14.78 | 15.13 | |J | | | | | |80189 2MASS| NL80_1 +602625 |V2625 Ori |053557.0-062938 |INT | 12.55 | 12.73 | |J | | | | |e |80189 2MASS| NL80_1 +602626 |V2626 Ori |053557.0-045109 |INSB | 14.49 | 14.78 | |J | | | | | |80189 2MASS| NL80_1 +602627 |V2627 Ori |053557.1-064705 |INB | 11.20 | 11.33 | |J | | | 2.65 | | |80189 GSC | NL80_1 +602628 |V2628 Ori |053558.3-061405 |INB | 13.33 | 15.80 | |J | | | | | |80189 2MASS| NL80_1 +602629 |V2629 Ori |053558.3-062212 |INB | 13.62 | 13.87 | |J | | | 2.29 | | |80189 2MASS| NL80_1 +602630 |V2630 Ori *|053558.9-053254 |INSB | 13.28 | 14.09 | |J | | | | |M5.5 |80189 80084| NL80_1 +602631 |V2631 Ori |053559.0-032509 |INB | 12.65 | 12.82 | |J | | | | | |80189 2MASS| NL80_1 +602632 |V2632 Ori |053559.2-064952 |INB | 12.88 | 13.18 | |J | | | 5.69 | | |80189 2MASS| NL80_1 +602633 |V2633 Ori |053559.7-055503 |INSB | 13.92 | 14.65 | |J | | | | | |80189 2MASS| NL80_1 +602634 |V2634 Ori |053601.1-062508 |INB | 12.94 | 13.20 | |J | | | | | |80189 2MASS| NL80_1 +602635 |V2635 Ori |053601.7-064236 |INSB | 13.26 | 13.42 | |J | | | | | |80189 2MASS| NL80_1 +602636 |V2636 Ori |053603.9-053019 |INSB | 13.39 | 13.60 | |J | | | | |M5 |80189 80084| NL80_1 +602637 |V2637 Ori |053605.0-064641 |INT | 10.96 | 11.09 | |J | | | | |e |80189 GSC | NL80_1 +602638 |V2638 Ori |053605.0-064244 |INSB | 12.20 | 12.35 | |J | | | | | |80189 2MASS| NL80_1 +602639 |V2639 Ori |053605.1-051114 |INSB | 13.71 | 13.98 | |J | | | | | |80189 2MASS| NL80_1 +602640 |V2640 Ori |053605.3-073913 |INB | 14.19 | 14.58 | |J | | | 2.40 | | |80189 2MASS| NL80_1 +602641 |V2641 Ori |053605.3-030717 |INB | 12.09 | 12.22 | |J | | | | | |80189 2MASS| NL80_1 +602642 |V2642 Ori |053607.0-051334 |INSB | 15.54 | 16.32 | |J | | | | | |80189 2MASS| NL80_1 +602643 |V2643 Ori |053607.0-060150 |INSB | 14.37 | 15.26 | |J | | | | | |80189 2MASS| NL80_1 +602644 |V2644 Ori |053607.4-032756 |INB | 14.64 | 14.84 | |J | | | | | |80189 2MASS| NL80_1 +602645 |V2645 Ori |053608.3-062438 |INB | 12.60 | 12.71 | |J | | | | | |80189 2MASS| NL80_1 +602646 |V2646 Ori |053609.3-053110 |INT | 13.93 | 14.11 | |J | | | | |M3e |80189 2MASS| NL80_1 +602647 |V2647 Ori |053611.0-053949 |INT | 11.96 | 12.82 | |J | | | | |K7e |80189 2MASS| NL80_1 +602648 |V2648 Ori |053612.0-060945 |INB | 13.36 | 13.54 | |Ks| | | | | |80189 2MASS| NL80_1 +602649 |V2649 Ori |053612.2-081142 |ISB | 14.06 | 14.21 | |J | | | | | |80189 2MASS| NL80_1 +602650 |V2650 Ori |053612.5-054045 |INSB | 13.29 | 13.66 | |J | | | | | |80189 2MASS| NL80_1 +602651 |V2651 Ori *|053612.6-062340 |INB | 12.79 | 13.79 | |J | | | | | |80189 2MASS| NL80_1 +602652 |V2652 Ori |053613.2-064942 |INSB | 12.69 | 13.53 | |Ks| | | | | |80189 2MASS| NL80_1 +602653 |V2653 Ori |053614.8-061317 |INT | 12.40 | 12.63 | |J | | | | |e |80189 2MASS| NL80_1 +602654 |V2654 Ori |053615.3-030844 |INSB | 14.33 | 14.60 | |J | | | | | |80189 2MASS| NL80_1 +602655 |V2655 Ori *|053615.4-073659 |INB | 12.86 | 13.05 | |J | | | | | |80189 2MASS| NL80_1 +602656 |V2656 Ori |053615.8-052127 |INB | 13.56 | 13.75 | |J | | | | |K: |80189 2MASS| NL80_1 +602657 |V2657 Ori |053617.2-061725 |INSB | 12.20 | 12.46 | |J | | | | | |80189 2MASS| NL80_1 +602658 |V2658 Ori |053618.2-054953 |INSB | 13.90 | 14.13 | |J | | | | |M5: |80189 2MASS| NL80_1 +602659 |V2659 Ori |053618.3-061400 |INSB | 11.32 | 11.44 | |J | | | | | |80189 GSC | NL80_1 +602660 |V2660 Ori |053619.4-062551 |INB | 12.87 | 13.39 | |J | | | 3.66 | | |80189 2MASS| NL80_1 +602661 |V2661 Ori |053619.5-062438 |INB | 13.34 | 13.54 | |Ks| | | | | |80189 2MASS| NL80_1 +602662 |V2662 Ori |053619.6-075945 |INB | 13.15 | 13.28 | |J | | | | | |80189 2MASS| NL80_1 +602663 |V2663 Ori |053619.7-054824 |INT | 12.87 | 13.18 | |J | | | | |e |80189 2MASS| NL80_1 +602664 |V2664 Ori |053619.8-044455 |INB | 11.57 | 11.73 | |J | | | | | |80189 2MASS| NL80_1 +602665 |V2665 Ori |053619.8-064601 |INB | 15.56 | 16.22 | |J | | | | | |80189 2MASS| NL80_1 +602666 |V2666 Ori |053620.0-030339 |INSB | 12.68 | 12.81 | |J | | | | | |80189 GSC | NL80_1 +602667 |V2667 Ori |053620.5-062322 |INSB | 11.78 | 12.15 | |Ks| | | | | |80189 2MASS| NL80_1 +602668 |V2668 Ori |053621.2-062657 |INSB | 14.34 | 14.61 | |J | | | | | |80189 2MASS| NL80_1 +602669 |V2669 Ori |053621.4-064537 |INT | 10.81 | 11.14 | |J | | | | |G8:e |80189 80047| NL80_1 +602670 |V2670 Ori |053621.6-062253 |INB | 14.00 | 14.80 | |J | | | | | |80189 2MASS| NL80_1 +602671 |V2671 Ori |053622.1-062645 |INB | 13.11 | 13.27 | |J | | | | | |80189 2MASS| NL80_1 +602672 |V2672 Ori |053622.5-062345 |INSB | 13.82 | 13.99 | |J | | | | | |80189 2MASS| NL80_1 +602673 |V2673 Ori |053623.6-052246 |INB | 14.71 | 16.00 | |J | | | | |M3 |80189 2MASS| NL80_1 +602674 |V2674 Ori |053623.8-062311 |INT | 14.01 | 15.05 | |J | | | | |e |80189 2MASS| NL80_1 +602675 |V2675 Ori |053624.0-062527 |INB | 13.78 | 13.92 | |J | | | | | |80189 2MASS| NL80_1 +602676 |V2676 Ori |053624.5-062223 |INB | 12.61 | 12.79 | |J | | | | | |80189 2MASS| NL80_1 +602677 |V2677 Ori *|053624.5-065234 |INSB | 13.43 | 13.61 | |J | | | | | |80189 2MASS| NL80_1 +602678 |V2678 Ori *|053626.1-031354 |INSB | 11.63 | 11.74 | |J | | | | | |80189 GSC | NL80_1 +602679 |V2679 Ori *|053626.1-060804 |INT | 11.15 | 11.36 | |J | | | 4.36 | |e |80189 2MASS| NL80_1 +602680 |V2680 Ori |053626.3-051830 |INB | 13.38 | 13.78 | |J | | | | |M4.5 |80189 2MASS| NL80_1 +602681 |V2681 Ori |053627.7-062312 |INT | 11.84 | 12.03 | |J | | | | |e |80189 2MASS| NL80_1 +602682 |V2682 Ori |053628.9-053916 |INSB | 14.20 | 14.48 | |J | | | | |M5 |80189 2MASS| NL80_1 +602683 |V2683 Ori |053629.1-063841 |INSB | 14.05 | 14.54 | |J | | | | | |80189 2MASS| NL80_1 +602684 |V2684 Ori |053629.3-025803 |INB | 13.29 | 13.54 | |J | | | | | |80189 2MASS| NL80_1 +602685 |V2685 Ori |053629.3-030303 |EW: | 12.7 | 13.4 | |V |53752.558 | | 0.409994 : | | |80001 GSC | NL80_1 +602686 |V2686 Ori |053629.9-063822 |INB | 12.43 | 12.60 | |J | | | | | |80189 2MASS| NL80_1 +602687 |V2687 Ori |053630.2-064246 |INSB | 13.09 | 13.39 | |J | | | | | |80189 2MASS| NL80_1 +602688 |V2688 Ori |053630.3-043217 |INB | 15.25 | 15.87 | |J | | | | | |80189 2MASS| NL80_1 +602689 |V2689 Ori *|053631.0+111940 |RS | 8.80 | 9.05 | |V | | | 12.285 | |K7 |80002 HIP | NL80_1 +602690 |V2690 Ori |053631.4-055216 |INSB | 14.22 | 15.23 | |Ks| | | | | |80189 2MASS| NL80_1 +602691 |V2691 Ori |053631.5-041546 |INSB | 11.94 | 12.14 | |J | | | | | |80189 2MASS| NL80_1 +602692 |V2692 Ori |053632.5-060116 |INB | 12.42 | 12.67 | |Ks| | | | | |80189 2MASS| NL80_1 +602693 |V2693 Ori |053633.2-060855 |INSB | 13.34 | 13.52 | |J | | | | | |80189 2MASS| NL80_1 +602694 |V2694 Ori |053633.4-045519 |INSB | 13.97 | 14.28 | |J | | | | | |80189 2MASS| NL80_1 +602695 |V2695 Ori |053633.7-055754 |INT | 11.86 | 12.18 | |J | | | | |e |80189 2MASS| NL80_1 +602696 |V2696 Ori |053635.8-064250 |INB | 13.52 | 13.62 | |J | | | | | |80189 2MASS| NL80_1 +602697 |V2697 Ori |053636.2-055529 |INSB | 11.43 | 11.88 | |J | | | | | |80189 2MASS| NL80_1 +602698 |V2698 Ori |053637.5-062717 |INSB | 13.66 | 13.80 | |J | | | | | |80189 2MASS| NL80_1 +602699 |V2699 Ori |053638.5-042821 |INSB | 13.56 | 13.87 | |J | | | | | |80189 2MASS| NL80_1 +602700 |V2700 Ori |053638.9-045529 |INSB | 13.71 | 13.89 | |J | | | | | |80189 2MASS| NL80_1 +602701 |V2701 Ori |053639.8+090716 |IB | 12.27 | 12.63 | |V | | | 0.762 | |K2 |80151 GSC | NL80_1 +602702 |V2702 Ori |053640.6-061033 |INSB | 12.33 | 13.00 | |J | | | | | |80189 2MASS| NL80_1 +602703 |V2703 Ori |053640.8-061108 |INSB | 13.12 | 13.82 | |J | | | | | |80189 2MASS| NL80_1 +602704 |V2704 Ori |053642.1-060706 |INSB | 12.23 | 12.37 | |J | | | | | |80189 2MASS| NL80_1 +602705 |V2705 Ori |053645.5-031412 |INB: | 11.85 | 11.95 | |J | | | | | |80189 GSC | NL80_1 +602706 |V2706 Ori |053647.2-052250 |INSB | 11.75 | 11.87 | |J | | | | | |80189 2MASS| NL80_1 +602707 |V2707 Ori |053647.6-030429 |INB: | 13.07 | 13.29 | |J | | | | | |80189 2MASS| NL80_1 +602708 |V2708 Ori |053648.6-054748 |INB | 13.37 | 13.52 | |J | | | | | |80189 2MASS| NL80_1 +602709 |V2709 Ori |053649.3-053321 |INSB | 14.43 | 14.72 | |J | | | | | |80189 2MASS| NL80_1 +602710 |V2710 Ori |053650.1-064129 |INT | 11.89 | 12.08 | |J | | | | |e |80189 2MASS| NL80_1 +602711 |V2711 Ori |053650.3-064155 |INB | 13.72 | 13.92 | |J | | | | | |80189 2MASS| NL80_1 +602712 |V2712 Ori *|053652.3-082452 |EW | 12.4 | 12.8 | 12.7 |V |52996.70 | | 0.346481 | | |80001 GSC | NL80_1 +602713 |V2713 Ori |053652.7-064308 |INB | 12.33 | 12.76 | |J | | | | | |80189 2MASS| NL80_1 +602714 |V2714 Ori |053652.9-063713 |INB | 12.38 | 12.88 | |J | | | 3.93 | | |80189 2MASS| NL80_1 +602715 |V2715 Ori |053654.1-025316 |INB: | 11.00 | 11.15 | |J | | | | | |80189 2MASS| NL80_1 +602716 |V2716 Ori |053655.0-045820 |INB | 14.20 | 14.82 | |J | | | | | |80189 2MASS| NL80_1 +602717 |V2717 Ori |053656.2-062753 |INB | 13.77 | 14.03 | |J | | | | | |80189 2MASS| NL80_1 +602718 |V2718 Ori |053657.2-050605 |INSB | 12.13 | 13.06 | |J | | | | | |80189 2MASS| NL80_1 +602719 |V2719 Ori |053658.8-040407 |INA: | 10.89 | 10.99 | |J | | | | | |80189 GSC | NL80_1 +602720 |V2720 Ori |053659.0-062905 |INB | 12.52 | 12.70 | |J | | | | | |80189 2MASS| NL80_1 +602721 |V2721 Ori |053812.8-021227 |INB | 16.62 |( 1.15 )| |I | | | | |M5.5 |80194 USNO | NL80_1 +602722 |V2722 Ori |053817.0-021446 |INB | 15.66 |( 0.09 )| |I | | | 3.30 | |M4.5 |80194 USNO | NL80_1 +602723 |V2723 Ori |053817.2-022226 |INB | 15.25 |( 0.03 )| |I | | | 10.2 | | |80194 USNO | NL80_1 +602724 |V2724 Ori |053823.2-021249 |INB | 12.20 |( 0.05 )| |I | | | 0.24 | | |80194 GSC | NL80_1 +602725 |V2725 Ori |053823.3-022535 |INB | 15.19 |( 0.07 )| |I | | | 0.315 | | |80194 USNO | NL80_1 +602726 |V2726 Ori |053823.6-022048 |INB | 14.94 |( 0.05 )| |I | | | 2.20 | |M4.5 |80194 USNO | NL80_1 +602727 |V2727 Ori |053823.8-022240 |INB | 18.76 |( 0.77 )| |I | | | 2.41 | | |80194 2MASS| NL80_1 +602728 |V2728 Ori |053825.4-024241 |INB | 16.79 | 17.19 | |I | | | | |M6 |80195 2MASS| NL80_1 +602729 |V2729 Ori *|053825.6-024837 |INT | 19.40 | 19.54 | |I | | | | |M8.5e |80195 2MASS| NL80_1 +602730 |V2730 Ori |053826.6-021218 |INB | 13.40 |( 0.70 )| |I | | | 1.64 | |K6 |80194 USNO | NL80_1 +602731 |V2731 Ori |053829.2-021616 |INT | 12.41 |( 0.20 )| |I | | | | |e |80194 GSC | NL80_1 +602732 |V2732 Ori |053829.6-022514 |INB | 16.57 |( 0.15 )| |I | | | 0.348 | |M6.5 |80194 2MASS| NL80_1 +602733 |V2733 Ori |053829.9-021541 |INB | 14.62 |( 0.06 )| |I | | | 0.152 | | |80194 USNO | NL80_1 +602734 |V2734 Ori |053837.9-022040 |INB | 17.37 |( 0.16 )| |I | | | 0.879 | | |80194 2MASS| NL80_1 +602735 |V2735 Ori *|053838.1+090111 |EA | 9.10 | 9.50 | 9.43 |V |53097.4998 | | 1.226680 |15 |AO |80002 DM | NL80_1 +602736 |V2736 Ori |053846.6-021940 |INB | 16.64 |( 0.16 )| |I | | | 0.379 | | |80194 2MASS| NL80_1 +602737 |V2737 Ori |053849.3-022358 |INB | 15.83 |( 1.2 )| |I | | | | |M4 |80194 2MASS| NL80_1 +602738 |V2738 Ori |053906.0-020731 |INB | 14.92 |( 0.22 )| |I | | | 0.629 | | |80194 USNO | NL80_1 +602739 |V2739 Ori |053907.6-021215 |INB | 17.06 |( 0.55 )| |I | | | | |M5 |80194 2MASS| NL80_1 +602740 |V2740 Ori |053908.9-023958 |INT | 16.90 | 17.10 | |I | | | | |M7e |80195 2MASS| NL80_1 +602741 |V2741 Ori |053909.1-020027 |INB | 18.14 |( 1.00 )| |I | | | 1.58 | | |80194 2MASS| NL80_1 +602742 |V2742 Ori |053913.2-002045 |DSCT: | 17.8 | 18.1 | |V | | | 0.162376 | | |80159 USNO | NL80_1 +602743 |V2743 Ori *|053914.9+003113 |E/RS | 13.2 | 14.1 | 13.9 |V |54385.826 | | 8.105 | | |80002 GSC | NL80_1 +602744 |V2744 Ori |053915.1-021845 |INB | 15.34 |( 0.04 )| |I | | | 1.18 | | |80194 USNO | NL80_1 +602745 |V2745 Ori |053921.1+091810 |RS | 11.44 | 11.56 | |V | | | 1.298 | |K1 |80151 GSC | NL80_1 +602746 |V2746 Ori |053926.6-020421 |INB | 18.37 |( 0.50 )| |I | | | 0.335 | | |80194 2MASS| NL80_1 +602747 |V2747 Ori |053927.1-034704 |INB: | 11.08 | 11.35 | |V | | | 1.92952 : | |G8 |80002 GSC | NL80_1 +602748 |V2748 Ori |053932.9-021131 |INT | 14.27 |( 0.12 )| |I | | | 2.60 | |e |80194 2MASS| NL80_1 +602749 |V2749 Ori *|053945.1-020454 |INB | 12.95 | 13.50 | |V | | | 4.485 | |K6 |80151 GSC | NL80_1 +602750 |V2750 Ori |053946.6-022631 |INB | 14.39 |( 0.20 )| |I | | | 1.42 | | |80194 USNO | NL80_1 +602751 |V2751 Ori *|053956.5+095632 |RS | 10.70 | 10.85 | |V | | | 0.764 | |K2 |80151 GSC | NL80_1 +602752 |V2752 Ori *|053958.8+070831 |RS | 9.35 | 9.62 | |V | | | 2.1133 | |G5 |80002 DM | NL80_1 +602753 |V2753 Ori |054007.2-020404 |INB | 17.40 |( 0.17 )| |I | | | 0.241 | | |80194 2MASS| NL80_1 +602754 |V2754 Ori |054014.0-023127 |INB | 16.92 | 17.15 | |I | | | | | |80195 2MASS| NL80_1 +602755 |V2755 Ori |054014.0-070835 |RS: | 12.10 | 12.40 | |V | | | 2.01 : | |K0 |80151 GSC | NL80_1 +602756 |V2756 Ori |054034.2-012154 |INB | 11.98 | 12.12 | |V | | | 1.454 | |K1 |80151 GSC | NL80_1 +602757 |V2757 Ori *|054034.7+114632 |EA | 10.04 | 10.7 | 10.12 |V |51554.897 | | 4.96652 |04 |A5 |80013 DM | NL80_1 +602758 |V2758 Ori *|054123.9-032446 |INB | 11.65 | 11.75 | |V | | | 1.245 : | |G8/K3 |80151 GSC | NL80_1 +602759 |V2759 Ori *|054259.9+092105 |EB | 10.40 | 10.84 | 10.62 |V |52751.489 | | 0.498858 | |F0 |80042 DM | NL80_1 +602760 |V2760 Ori |054327.0-095938 |INB | 12.8 | 14.0 | |* | | | | |K5 |80062 GSC | NL80_1 +602761 |V2761 Ori |054352.8-025044 |RS | 10.75 | 10.95 | |V | | | 6.64 : | | |80034 GSC | NL80_1 +602762 |V2762 Ori *|054539.1+111936 |EA | 9.97 | 10.42 | 10.31 |V |51567.838 | | 1.78018 |07 |F2 |80042 DM | NL80_1 +602763 |V2763 Ori |054611.9+090355 |LB | 12.6 | 13.2 | |* | | | | | |80062 USNO | NL80_1 +602764 |V2764 Ori |054618.9-000538 |INT | 14.4 | 15.1 | |R | | | | |e |80198 80198| NL80_1 +602765 |V2765 Ori |055238.6-055134 |RRC | 11.9 | 12.4 | |V |52686.6595 | | 0.37441 |35 | |80002 GSC | NL80_1 +602766 |V2766 Ori *|055427.6+050159 |EW | 15.7 |( 0.7 * )|( 0.7 )|R |54071.7676 | | 0.6032 | | |80207 80207| NL80_1 +602767 |V2767 Ori *|055450.5+070443 |EA | 13.1 | 13.7 | 13.2 : |V |53396.63 | | 1.52638 |13 : | |80011 GSC | NL80_1 +602768 |V2768 Ori *|055456.6+045354 |EW | 17.2 |( 0.4 * )|( 0.4 )|R |54080.7679 | | 0.33262 | | |80207 80207| NL80_1 +602769 |V2769 Ori *|055459.1+050420 |EW | 15.5 |( 0.4 * )|( 0.4 : )|R |54071.8727 | | 0.27872 | | |80207 80207| NL80_1 +602770 |V2770 Ori |055645.8+045126 |LB | 12.1 | 12.7 | |* | | | | | |80062 GSC | NL80_1 +602771 |V2771 Ori |055647.8-033654 |SRB | 11.8 | 12.3 | |* | | | 73. | | |80001 USNO | NL80_1 +602772 |V2772 Ori *|055652.5+122744 |EA | 12.10 | 12.77 | 12.35 |V |51504.970 | | 9.7857 |16 | |80042 GSC | NL80_1 +602773 |V2773 Ori |055730.9-015505 |RRAB | 14.4 | 15.6 | |V |51588.5735 | | 0.460028 |18 | |80159 GSC | NL80_1 +602774 |V2774 Ori |055810.7-025519 |SRB | 12.4 | 13.1 | |* | | | 53. | | |80001 USNO | NL80_1 +602775 |V2775 Ori |054248.5-081635 |FU: | 11.77 | 16.4 | |J | | | | |Me |80431 80431| NL80_2 +602776 |V2776 Ori *|060034.9-013319 |RRAB | 16.3 | 16.7 | |V |51488.7708 | | 0.468572 | | |80159 2MASS| NL80_2 +602777 |V2777 Ori *|060159.6-012513 |RRAB | 15.5 | 16.4 | |V |51185.6052 | | 0.451775 |15 : | |80159 2MASS| NL80_2 +602778 |V2778 Ori *|060339.5+033827 |EA | 10.15 | 10.71 | 10.50 : |V |51629.644 | | 14.3877 |03 : |B9 |80023 DM | NL80_2 +602779 |V2779 Ori |060352.4-014620 |RRAB | 17.7 | 18.1 | |V |51187.6918 | | 0.519461 |12 | |80159 2MASS| NL80_2 +602780 |V2780 Ori *|060423.7+180042 |EA | 12.00 | 13.0 | 12.12 |V |51573.74 | | 5.47535 |10 | |80013 GSC | NL80_2 +602781 |V2781 Ori |060916.9+202507 |EA | 13.9 | 15.3 | |P |49311.467 | | 2.210345 |07 | |80244 80244| NL80_2 +602782 |V2782 Ori |061015.8+211956 |BY | 11.34 |( 0.09 *)| |V | | | 4.0814 | |K2 |80021 GSC | NL80_2 +602783 |V2783 Ori *|061056.8+062104 |EA | 10.13 | 10.73 | 10.63 |V |52946.750 | | 4.21618 |07 |A0 |80042 DM | NL80_2 +602784 |V2784 Ori *|061107.0+061712 |EA | 13.1 | 13.7 | 13.7 |V |54420.8172 | | 1.831256 |05 | |80001 GSC | NL80_2 +602785 |V2785 Ori |061128.8+202150 |BY | 9.80 | 10.02 | |V | | | 8.6016 | |K2 |80021 DM | NL80_2 +602786 |V2786 Ori |061147.8+190820 |M | 3.82 | 4.78 | |K | | | 493. : | |Ce |80166 2MASS| NL80_2 +602787 |V2787 Ori *|061217.1+145641 |EB | 10.12 | 10.46 | 10.28 |V |51496.8519 | | 0.810979 | |A3m |80245 80245| NL80_2 +602788 |V2788 Ori *|061348.5+055711 |EW | 10.61 | 10.83 | 10.82 : |V |52625.6934 | | 0.500030 | | |80002 GSC | NL80_2 +602789 |V2789 Ori *|061434.5+182828 |EB | 11.12 | 11.48 | 11.4 |V |52970.180 | | 13.6435 | |Be |80042 GSC | NL80_2 +602790 |V2790 Ori *|061531.4+193522 |EW | 11.03 | 11.65 | 11.64 |V |51521.695 | | 0.287842 | | |80042 GSC | NL80_2 +602791 |V2791 Ori |061642.5+011518 |RS | 11.6 | 11.7 | |* | | | 3.362 | | |80043 80043| NL80_2 +602792 |V2792 Ori |061747.0-001439 |SRB | 9.6 | 10.4 | |V | | | 186.6 | |C6,4 |80002 DM | NL80_2 +602793 |V2793 Ori *|061810.7+035519 |EA | 12.89 | 13.6 | 13.6 |V |51508.815 | | 1.45065 |09 | |80042 GSC | NL80_2 +609001 |alf Ori *|055510.3+072425 |SRC | 0.0 | 1.3 | |V | | | 2335. | |M1-M2Ia-Ibe |06116 08953| +609002 |bet Ori |051432.3-081206 |ACYG | 0.17 | 0.22 | |Hp| | | | | |HIP HIP | +609004 |del Ori *|053200.4-001757 |EA/DM | 2.14 | 2.26 | 2.20 |V |43872.589 | | 5.732476 |13 *|O9.5II-III+B0III |09534 08043| +609005 |eps Ori *|053612.8-011207 |ACYG | 1.64 | 1.74 | |V | | | | |B0.5Iabea |03712 08043| +609007 |eta Ori *|052428.6-022350 |EA+BCEP: | 3.31 | 3.60 | 3.57 |V |15761.826 | | 7.989268 | |B0.5Vea+B3V |09504 08043| +6090151|omi 1 Ori |045232.0+141502 |SRB | 4.65 | 4.88 | |V | | | 30. : | |M3.2IIIaS |06994 BD | +6090165|pi. 5 Ori *|045415.1+022626 |ELL | 3.66 | 3.73 | 3.73 |V |17922.565 | | 3.700363 | |B2III-IV+B0V |01015 05288| +6090221|khi 1 Ori |055423.0+201634 |RS | 4.38 | 4.41 | |V | | | | | |73242 BD | +6090222|khi 2 Ori |060355.2+200818 |ACYG | 4.68 | 4.72 | |Hp| | | | | |HIP HIP | +609023 |psi Ori *|052650.2+030544 |E/D | 4.55 | 4.61 | 4.58 |V |38802.914 | | 2.52596 | |B2IVea+B0 |09537 08043| +609024 |ome Ori |053911.2+040717 |GCAS | 4.40 | 4.59 | |V | | | | |B2IIIe |03712 08043| +610001 |R Pav *|181253.0-633657 |M | 7.5 | 13.8 | |V |42009. | | 229.46 |48 |M3e-M5(II)e |00001 00002| +610002 |S Pav *|195514.0-591144 |SRA | 6.6 | 10.4 | |V |38859. | | 380.86 |49 |M7IIe-M8III |00001 00002| +610003 |T Pav *|195043.5-714617 |M | 7.0 | 14.0 | |V |39429. | | 243.62 |43 |M4e |00001 00002| +610004 |U Pav |205531.1-624215 |M | 8.6 |< 12. | |V |17139. | | 289.7 | |M4e |00001 08588| +610005 |V Pav *|174318.9-574326 |SRB | 9.3 | 11.2 | |p | | | 225.4 | |C6,4(Nb) |00624 08588| +610006 |W Pav *|175026.9-622433 |M | 8.1 | 14.6 | |V |40420. | | 283.35 |40 |M4e-M7e |00001 00002| +610007 |X Pav |201145.9-595613 |SRB | 9.2 | 11.1 | |p | | | 199.19 |48 |MC |06036 05474| +610008 |Y Pav |212416.7-694402 |SRB | 8.6 | 10.3 | |p |30060. | | 233.3 | |C7,3(N0) |01016 05474| +610009 |Z Pav |193527.9-624533 |SRB | 9.1 | 10.6 | |p |29850. | | 135.5 | |M7IIIe |00624 08953| +610010 |RR Pav |200652.5-632428 |M | 11.0 |< 14. | |p |30105. | | 239.8 | |M4e |01016 GSC | +610011 |RS Pav |180722.0-585742 |CWA | 10.10 | 11.25 | |V |27247.600 | | 19.954 |38 |Ke |00251 06286| +610012 |RT Pav *|183630.5-695306 |SRB | 9.6 | 11.2 | |p | | | 85.2 | |M4/5III |00624 08953| +610013 |RU Pav |180727.3-591454 |M | 13.2 |< 16.5 | |p |26500. | | 254.5 | |Me |00251 06286| +610014 |RV Pav |180934.0-592722 |RRAB | 13.6 | 14.7 | |p |26240.280 | | 0.66194 | | |00251 06286| +610015 |RW Pav |185451. -575412:| | 11. |< 15.5 | |p | | | | | |00029 | +610016 |RX Pav |185824.5-594625 |M | 11. | 15. | |p |23414. | | 212.1 | | |01000 CoD | +610017 |RY Pav |200123.6-565001 |M | 11. |< 15. | |p |11894. | | 236.3 | | |00031 05474| +610018 |RZ Pav |174853.5-584444 |M | 9.6 | 16.3 | |p |26460. | | 288.5 | |Me |00251 08588| +610019 |SS Pav |191325.5-662130 |RRAB | 12.0 | 12.9 | |V |52054.75 | | 0.65831 |20 | |00001 GSC | +610020 |ST Pav |210403.2-651523 | | 12. | 13.5 | |p | | | | | |01017 USNO | +610021 |SU Pav *|201739.0-600419 |M | 8.6 |< 14.2 | |V |38685. | | 245.3 | |M4(II)e-M6II-IIIe|06037 05474| +610022 |SV Pav |203045.5-701107 |M | 12.3 |< 15. | |p |13823. | | 210. | |Me |01018 UCAC2| +610023 |SW Pav |195725.7-664648 |RR | 11.8 | 12.6 | |p |24670.63 | | 0.802 | | |00210 06286| +610024 |SX Pav *|212844.8-693019 |SRB | 5.34 | 5.97 | |V | | | 50. : | |M5-M7III |06645 05474| +610025 |SY Pav |175204.8-575145 |M | 11.3 |< 14.3 | |p |25440. | | 193.7 | |M1e |00255 08588| +610026 |SZ Pav |174134.4-595547 |RRAB | 13.9 | 15.4 : | |p |26865.310 | | 0.53439 | | |00251 06286| +610027 |TT Pav |174142.1-574518 |M | 14.3 |< 16.5 | |p |27610. | | 265.8 | | |00251 06286| +610028 |TU Pav |174449.9-612325 |E/SD | 13.6 | 15.8 | |p |26598.420 | | 6.32023 | | |00251 UCAC2| +610029 |TV Pav |174546.2-582341 |DSCT | 13.0 | 13.5 | |p |26868.320 | | 0.174587 | | |00251 08588| +610030 |TW Pav *|174552.5-582131 |SR | 12.0 | 13.2 | |p |27140. | | 397. | | |00251 08588| +610031 |TX Pav |174745.3-600503 |RRAB | 12.3 | 13.4 | |p |27162.550 | | 0.45987 | | |00251 06286| +610032 |TY Pav |174842.9-623600 |RRAB | 12.10 | 13.02 | |V |41532.333 | | 0.7104005 |16 |A7-F6 |00001 06286| +610033 |TZ Pav |174824.8-591040 |I: | 12.0 | 13.4 | |p | | | | | |00251 GSC | +610034 |UU Pav |175017.0-600101 |RR | 13.2 | 14.1 | |p |27252.510 | | 0.63022 | | |00251 06286| +610035 |UV Pav |175127.8-620649 |SRB | 12.4 | 14.0 : | |B | | | 110. | | |06061 06286| +610036 |UW Pav |175130.2-610635 |RRAB | 12.9 | 14.7 | |p |27268.340 | | 0.56971 | | |00251 06286| +610037 |UX Pav |175145.3-615259 |RR | 13.5 | 14.4 | |p |27631.480 | | 0.31337 | | |00251 06286| +610038 |UY Pav |175141.5-610741 |RRAB | 15.0 | 16.2 | |p |27250.490 | | 0.47836 | | |00251 06286| +610039 |UZ Pav |175206.7-630846 |SR | 14.0 | 15.0 | |p |26110. | | 149.3 | | |00251 GSC | +610040 |VV Pav |175151.5-611521 |I | 14.2 | 15.5 | |p | | | | | |00251 06286| +610041 |VW Pav |175225.4-585238 |RRAB | 12.8 | 14.2 | |p |26810.570 | | 0.47876 | | |00251 08588| +610042 |VX Pav |175326.3-615346 |RRAB | 12.9 | 14.3 | |p |26869.560 | | 0.45981 | | |00251 06286| +610043 |VY Pav |175349.9-592000 |I | 13.0 | 14.3 | |p | | | | | |00251 06286| +610044 |VZ Pav |175503.3-613605 |RRAB | 13.6 | 14.8 | |p |27243.500 | | 0.65276 | | |00251 06286| +610045 |WW Pav |175534.2-593428 |RRAB | 12.9 | 14.0 | |p |27277.450 | | 0.44426 | | |00251 06286| +610046 |WX Pav |175555.2-591708 |RR | 15.0 | 15.6 | |p |26864.400 | | 0.55554 | | |00251 06286| +610047 |WY Pav |175612.4-570943 |RRAB | 11.4 | 12.5 | |p |26868.320 | | 0.58858 | | |00251 06286| +610048 |WZ Pav |175648.5-595353 |RR | 13.1 | 13.9 | |p |27219.590 | | 0.62399 | | |00251 06286| +610049 |XX Pav |175730.6-583616 |M | 13.5 |< 16.5 | |p |27220. | | 244.5 | | |00251 06286| +610050 |XY Pav |175805.0-573643 |E/SD | 11.7 | 14.0 | |p |26864.460 | | 1.66124 | | |00251 06286| +610051 |XZ Pav |175830.7-591058 |M | 10.5 | 16.0 | |p |27230. | | 332. | | |00251 06286| +610052 |YY Pav *|180046.5-582624 |SR | 13.8 | 15.2 | 14.4 |p |27650. | | 197. : | | |00251 06286| +610053 |YZ Pav |180149.8-580713 |M | 12.7 | 17.5 | |p |27210. | | 344.5 | | |00251 06286| +610054 |ZZ Pav |180208.2-582423 |M | 13.3 |< 18. | |p |25400. | | 330. | | |00251 06286| +610055 |AA Pav |180305.0-590312 |SR | 10.8 : | 13.0 | |p |26240. | | 555. | | |00251 06286| +610056 |AB Pav |180401.2-585340 |M | 13.5 | 17.5 | |p |27230. | | 200.5 | | |00251 06286| +610057 |AC Pav |180612.3-571850 |M | 13.0 | 18. | |p |27220. | | 226. : | | |00251 06286| +610058 |AD Pav |180740.4-611356 |SR | 11.5 | 13.6 : | |p |26240. | | 201.3 | |Me |00251 06286| +610059 |AE Pav |180841.3-572237 |RRAB | 13.8 | 15.0 | |p |27277.450 | | 0.62211 | | |00251 06286| +610060 |AF Pav |181105.1-621827 |M | 12.4 |< 16.5 | |p |27250. | | 278. | | |00251 06286| +610061 |AG Pav |181225.6-623322 |E | 10.2 | 13.0 | |p |44889.5673 | | 1.9647327 | | |00001 06286| +610062 |AH Pav |181352.1-590136 |M | 12.4 | 17.5 | |p |26880. | | 275. | | |00251 06286| +610063 |AI Pav |174232.0-573836 |E | 13.1 | 13.9 | |p |26091.540 | | | | |00251 08588| +610064 |AK Pav |174604.0-582117 |E | 13.0 | 13.5 | |p |26124.500 | | | | |00251 08588| +610065 |AL Pav |174836.0-593418 |E | 13.8 | 14.5 | |p |27252.480 | | | | |00251 GSC | +610066 |AM Pav |175740.7-582121 |E | 15.0 | 15.7 | |p |27606.520 | | | | |00251 USNO | +610067 |AN Pav |175811.3-570127 |M | 13.2 | 17. | |p |27630. | | 306.4 | | |00251 06286| +610068 |AO Pav |180239.0-571600 |E | 11.6 | 12.4 | |p |26240.290 | | | | |00251 06286| +610069 |AP Pav |180400.7-625641 |E | 11.7 | 12.1 | |p |26154.460 | | | | |00251 06286| +610070 |AQ Pav |180453.3-600204 |E | 11.2 | 11.6 | |p |26091.540 | | | | |00251 06286| +610071 |AR Pav *|182027.9-660443 |EA+ZAND | 7.4 | 13.62 | |B |20330. | | 604.6 |15 |cont+M3III+shell |06915 09560| +610072 |AS Pav |181244.0-592315 |IS | 14.0 |< 16.0 | |p | | | | | |00629 06286| +610073 |AT Pav |181743.2-601619 |I | 13.0 | 14.1 | |p | | | | | |00629 06286| +610074 |AU Pav |182210.1-570011 |SR | 13.2 | 13.8 | |p | | | | | |00629 06286| +610075 |AV Pav |182501.6-584332 |SR | 13.5 | 15.2 | |p | | | 175. : | | |00629 06286| +610076 |AW Pav |182731.4-591420 |SR | 12.8 | 13.8 | |p | | | | | |00629 06286| +610077 |AX Pav |182900.4-592512 |M: | 14.3 |< 16.2 | |p | | | 250. : | | |00629 06286| +610078 |AY Pav |183012.5-575914 |M | 13.3 |< 16.2 | |p | | | 280. : | |Me |00629 06286| +610079 |AZ Pav |183305.6-601425 |SR | 13.7 | 15.5 | |p | | | 200. : | | |00629 06286| +610080 |BB Pav |183449.8-591430 |E | 12.5 | 13.2 | |p | | | 1.7 : | | |00629 06286| +610081 |BC Pav |184102.9-595258 |SR | 13.5 | 14.5 | |p | | | | | |00629 GSC | +610082 |BD Pav *|184311.8-573044 |UG:+EW/WD | 12.4 | 16.21 | |B |27688. |1934 | | |pec(UG) |09561 04787| +610083 |BE Pav |184442.4-600552 |SR: | 11.0 | 12.0 | |p | | | 130. | | |00629 06286| +610084 |BF Pav *|184539.5-593826 |EW/KW | 11.0 | 11.90 | 11.9 |V |44438.7611 | | 0.3056 | | |09193 06286| +610085 |BG Pav |184112.3-572839 |SR | 13.7 | 15.4 | |p | | | 150. : | | |00629 GSC22| +610086 |BH Pav |183440.6-652703 |RRAB | 11.5 | 13.1 | |p |28045.258 | | 0.476958 |18 | |00016 02338| +610087 |BI Pav *|184937.3-600214 |EA/SD: | 10.7 | 11.3 |( 0.05 : )|V |34268.442 | | 2.52694 |17 *|F6 |00080 03254| +610088 |BK Pav |185117.4-591134 |EA/SD | 10.7 | 12.9 | |p |28361.46 | | 2.91655 |14 *| |00016 03254| +610089 |BL Pav |191957.4-670659 |M | 10.4 | 13.3 | |p |31345. | | 134.7 |49 |Me |01003 08953| +610090 |BM Pav |192817.4-624849 |SR | 10.2 | 11.8 | |p |28366. | | 62. |39 | |00016 02339| +610091 |BN Pav |193803.4-603640 |RRAB | 11.2 | 12.5 | |p |28336.513 | | 0.567173 |16 | |00016 02339| +610092 |BO Pav |195017.0-654659 |EA/D: | 9.3 | 10.1 | |p |28698.43 | | 19.23 |03 : | |00016 08953| +610093 |BP Pav |195800.2-654410 |RRAB | 11.3 | 12.7 | |p |28334.480 | | 0.53740 | | |00016 02339| +610094 |BQ Pav |200011.1-695255 |M | 10.9 |< 14.0 | |p |27985. | | 112. |54 | |00016 02339| +610095 |BR Pav |200916.8-571954 |M | 9.8 | 15.3 | |p |40809. | | 246.13 |50 | |00001 05474| +610096 |BS Pav |204630.8-644530 |IS | 9.8 | 11.9 | |p | | | | | |00082 CoD | +610097 |BT Pav |205100.5-634132 |EA/SD | 11.0 | 12.8 | |p |28045.315 | | 2.54400 |08 : | |00016 02339| +610098 |BU Pav |212201.6-631958 |SR | 10.5 | 11.2 | |p |27996. | | 71. |48 | |00016 08953| +610099 |BV Pav |174126.8-574819 |RR: | 15.5 | 16.8 | |p | | | | | |01021 06286| +610100 |BW Pav |174313.9-590218 |RR | 16.2 | 17.2 | |p | | | | | |01021 06286| +610101 |BX Pav |174400.4-593108 |RR | 16.0 | 17.1 | |p | | | | | |01021 06286| +610102 |BY Pav |174922.1-584217 |RR | 16.9 | 18.0 | |p | | | | | |01021 06286| +610103 |BZ Pav |175005.6-600523 |RR | 15.2 | 16.2 | |p | | | | | |01021 06286| +610104 |CC Pav |175332.8-571000 |RR | 15.8 | 17.0 | |p | | | | | |01021 06286| +610105 |CD Pav |175502.7-585222 |RR | 16.0 | 17.2 | |p | | | | | |01021 06286| +610106 |CE Pav |175531.7-610436 |RR | 16.1 | 17.4 | |p | | | | | |01021 06286| +610107 |CF Pav |180042.5-575408 |RR | 15.5 | 16.6 | |p | | | | | |01021 06286| +610108 |CG Pav |180053.9-574724 |RR | 15.3 | 16.6 | |p | | | | | |01021 06286| +610109 |CH Pav |180237.3-600457 |RR | 15.4 | 16.6 | |p | | | | | |01021 06286| +610110 |CI Pav |180239.0-602018 |RR | 14.8 | 16.2 | |p | | | | | |01021 06286| +610111 |CK Pav |180902.7-601313 |RR | 15.3 | 16.8 | |p | | | | | |01021 06286| +610112 |CL Pav |174530.8-594151 |RR | 15.6 | 17.0 | |p | | | | | |01021 06286| +610113 |CM Pav |180613.2-571359 |EW | 13.4 | 14.6 | |p | | | | | |00629 GSC | +610114 |CN Pav |180857.7-573728 |RR | 14.7 | 15.8 | |p | | | | | |00629 USNO | +610115 |CO Pav |181058.0-602437 |RR | 13.9 | 15.3 | |p | | | | | |00629 USNO | +610116 |CP Pav |180951.4-570053 |RR | 13.5 | 14.9 | |p | | | | | |00629 06286| +610117 |CQ Pav |181211.5-571856 |RR | 14.0 | 15.9 | |p | | | | | |00629 06286| +610118 |CR Pav |181314.2-570528 |RR | 14.6 | 16.1 | |p | | | | | |00629 06286| +610119 |CS Pav |181359.8-591127 |RR | 13.6 | 14.7 | |p | | | | | |00629 06286| +610120 |CT Pav |181532.8-593817 |RR | 14.3 | 15.3 | |p | | | | | |00629 06286| +610121 |CU Pav |181934.1-585948 |RR | 14.1 | 15.2 | |p | | | | | |00629 GSC | +610122 |CV Pav |182408.6-582353 |RR | 14.4 | 15.5 | |p | | | | | |00629 06286| +610123 |CW Pav |182937.6-592051 |RR | 13.0 | 14.2 | |p | | | | | |00629 06286| +610124 |CX Pav |183534.0-572914 |RR | 13.9 | 15.1 | |p | | | | | |00629 06286| +610125 |CY Pav |184437.5-575449 |RR | 14.7 | 16.0 | |p | | | | | |00629 06286| +610126 |CZ Pav |185119.4-585045 |RR | 13.7 | 15.2 | |p | | | | | |00629 06286| +610127 |DD Pav |185351.3-600727 |RR | 14.8 |< 16.3 | |p | | | | | |00629 USNO | +610128 |DE Pav |174714.7-585055 |RR | 14.0 | 15.0 | |p | | | | | |01021 USNO | +610129 |DF Pav *|181903.8-653534 |SRA | 11.9 | 14.8 | |p |40768. :| | 374. | |Me |08627 02386| +610130 |DG Pav |183626.8-675601 |M | 11.9 | 15.5 | |p |38940. | | | |Me |08627 02386| +610131 |DH Pav |190248.6-644608 |M | 11.7 | 16. | |p |38604. | | 244. | | |08627 02386| +610132 |DI Pav |193720.1-565751 |M | 12.0 | 16.5 | |p | | | | |Me |00085 02386| +610133 |DK Pav |194135.1-583555 |M: | 12. |< 13.5 | |p | | | | | |00085 02383| +610134 |DL Pav |194215.3-600416 |M | 11.0 | 17.5 | |p |40082. | | 174. : | | |08627 02386| +610135 |DM Pav |212053.9-613428 |M | 12. |< 17.5 | |p | | | | | |00085 02386| +610136 |DN Pav *|195210.9-634025 |RRAB | 11.69 | 13.05 | |V |41183.397 | | 0.4684426 |12 |A3-F3 |00001 02383| +610137 |DO Pav |182709.0-744700 |M | 13.0 | 17. | |p | | | | |Me |02554 USNO | +610138 |DP Pav |182620.2-645739 |UG: | 15. |< 16.5 | |p | | | | | |04001 08852| +610139 |DQ Pav |184041.6-574305 |RR | 14.5 | 15.5 | |p | | | | | |00629 04001| +610140 |DR Pav |190252.6-630858 |M | 13.5 | 16. | |p | | | | | |06561 06561| +610141 |DS Pav |190627.2-741042 |EA/SD: | 14.2 | 15.0 | |p |36747.428 | | 0.9989 |12 *| |06920 04001| +610142 |DT Pav |190804.2-712751 |L | 16.0 | 16.6 | |p | | | | | |06920 04001| +610143 |DU Pav |191013.3-730902 |RRAB | 15.6 | 16.5 | |p |36732.570 | | 0.4862 |20 : | |06920 04001| +610144 |DV Pav |191121.9-722603 |RRAB | 15.8 | 16.4 | |p |36729.474 | | 0.6807 |20 | |06920 04001| +610145 |DW Pav *|191121.1-682851 |EW/KE | 15.7 | 16.4 | 16.3 |p |36735.517 | | 0.698 | | |06920 04001| +610146 |DX Pav |191627.6-723055 |RRAB | 15.6 | 16.5 | |p |36729.410 | | 0.5523 |20 | |06920 04001| +610147 |DY Pav |191527.9-695050 |RRAB | 16.0 | 17.0 | |p |36729.444 | | 0.6254 |20 | |06920 04001| +610148 |DZ Pav |191616.7-713741 |RR | 16.1 | 16.7 | |p | | | 1. /N| | |06920 04001| +610149 |EE Pav |191611.4-704918 |RRAB | 16.3 | 17.0 | |p |36731.480 | | 0.7234 |22 | |06920 04001| +610150 |EF Pav |191704.0-694530 |RRAB | 16.2 | 17.0 | |p |36729.484 | | 0.7004 |15 | |06920 04001| +610151 |EG Pav *|192012.6-722701 |RRAB | 16.2 | 16.9 | |p |36731.460 | | 1.0394 |08 | |06920 04001| +610152 |EH Pav |192052.1-705948 |RRAB | 14.8 | 15.8 | |p |36735.490 | | 0.5172 |20 | |06920 04001| +610153 |EI Pav |192224.6-711902 |RRAB | 15.7 | 16.5 | |p |36730.450 | | 0.4482 |25 | |06920 04001| +610154 |EK Pav |192433.0-725842 |E | 16.5 | 17.2 | |p |36729.474 | | 0.5805 | | |06920 04001| +610155 |EL Pav *|192412.2-715159 |EA/SD: | 15.4 | 16.2 | 15.5 |p |36733.590 | | 1.1443 |10 *| |06920 04001| +610156 |EM Pav |192512.1-705222 |RRAB | 15.5 | 16.4 | |p |36729.500 | | 0.4574 |15 | |06920 04001| +610157 |EN Pav *|192759.1-681844 |RRAB | 15.2 | 16.4 | |p |36733.562 | | 0.9775 |20 | |06920 04001| +610158 |EO Pav |193010.3-705625 |RRAB | 16.3 | 17.0 | |p |36729.520 | | 0.5376 |15 | |06920 04001| +610159 |EP Pav |193001.5-692755 |RRAB | 16.0 | 16.7 | |p |36760.430 | | 0.5965 |15 | |06920 04001| +610160 |EQ Pav *|193204.5-730918 |SR | 12. | 13. | |p | | | | |ea |02554 04208| +610161 |ER Pav |193213.3-695215 |RRAB | 16.2 | 17.0 | |p |36733.562 | | 0.5314 |20 | |06920 04001| +610162 |ES Pav |193149.0-572037 |RRAB | 13.7 | 14.3 | |V |28281.644 | | 0.6369068 |23 | |04183 02383| +610163 |ET Pav |193607.0-710136 |RRAB | 14.7 | 16.1 | |p |36730.500 | | 0.4359 |15 | |06920 04001| +610164 |EU Pav |193657.0-715108 |RRAB | 15.6 | 16.6 | |p |36730.478 | | 0.4725 |15 | |06920 04001| +610165 |EV Pav |193852.1-714503 |RRAB | 14.0 | 15.0 | |p |36748.420 | | 0.6683 |22 | |06920 04001| +610166 |EW Pav |194107.3-695925 |RRAB | 14.9 | 15.9 | |p |36729.460 | | 0.663 |12 | |06920 04001| +610167 |EX Pav |194124.3-693851 |RRAB | 15.4 | 16.4 | |p |36736.540 | | 0.6243 |13 | |06920 04001| +610168 |EY Pav |194311.2-723751 |EA:/SD: | 12.5 | 13.6 | |p |36764.512 | | | | |06920 04001| +610169 |EZ Pav |194313.8-711831 |IS | 15.6 | 16.7 | |p | | | | | |06920 04001| +610170 |FF Pav |194507.1-694428 |RRAB | 15.0 | 16.2 | |p |36729.460 | | 0.5446 |15 | |06920 04001| +610171 |FG Pav |194746.7-734604 |RRAB | 15.6 | 16.1 | |p |36728.55 | | 0.7097 |25 | |06920 04001| +610172 |FH Pav |194705.5-712412 |RRAB | 14.7 | 15.8 | |p |36748.350 | | 0.5992 |20 | |06920 04001| +610173 |FI Pav |194817.1-710637 |RRAB | 15.4 | 16.4 | |p |36731.430 | | 0.5564 |17 | |06920 04001| +610174 |FK Pav |194911.1-702214 |RRAB | 14.4 | 15.7 | |p |36728.514 | | 0.512 |15 | |06920 04001| +610175 |FL Pav |195052.7-715709 |RRAB | 15.3 | 16.3 | |p |36736.575 | | 0.693 |23 | |06920 04001| +610176 |FM Pav |195005.7-682229 |RRAB | 13.1 | 14.3 | |p |36758.510 | | 0.534 |20 | |06920 04001| +610177 |FN Pav |195238.5-695548 |RRAB | 14.2 | 15.4 | |p |36730.500 | | 0.4785 |22 | |06920 04001| +610178 |FO Pav |195142.2-624408 |RR | 11.3 | 12.2 | |p | | | | | |06561 05234| +610179 |FP Pav |195321.6-693308 |RRAB | 15.3 | 16.2 | |p |36729.474 | | 0.51335 |13 | |06920 04001| +610180 |FQ Pav |195504.9-711405 |M: | 15.2 |< 16.5 | |p |36820. | | | | |06920 04001| +610181 |FR Pav |195536.6-691225 |RRAB | 15.7 | 16.5 | |p |36729.474 | | 0.562 |15 | |06920 04001| +610182 |FS Pav |195631.6-712823 |RRAB | 14.0 | 15.0 | |p |36728.490 | | 0.4211 |25 | |06920 04001| +610183 |FT Pav |195649.7-715738 |RRAB | 15.7 | 16.6 | |p |36731.490 | | 0.5812 |12 | |06920 04001| +610184 |FU Pav |195418.3-581424 |RRAB | 13.0 | 14.2 | |p |36787.366 | | 0.4552 |30 | |06920 04001| +610185 |FV Pav |195434.3-594010 |RRAB: | 14.7 | 15.7 | |p |36815.396 :| | 0.3312 : | | |06920 04001| +610186 |FW Pav |195455.8-602844 |RR | 14.5 |< 16.0 | |p | | | | | |06920 04001| +610187 |FX Pav |195456.8-602553 |RR | 13.2 | 14.0 | |p |36812.320 | | 0.3576 : | | |06920 04001| +610188 |FY Pav *|195715.6-694423 |EA:/SD: | 14.0 | 15.8 | |p |36808.433 | | | | |06920 04001| +610189 |FZ Pav |195709.7-690210 |RRAB | 13.6 | 15.4 | |p |36729.505 | | 0.45055 |13 | |06920 04001| +610190 |GG Pav |195913.1-740804 |RRAB | 14.4 | 15.3 | |p |36773.315 | | 0.6346 |18 | |06920 04001| +610191 |GH Pav |195753.3-690952 |RRAB | 14.7 | 15.2 | |p |36731.47 | | 0.77 |20 | |06920 04001| +610192 |GI Pav |195939.9-720852 |RR: | 15.0 | 15.5 | |p | | | | | |06920 04001| +610193 |GK Pav |195655.5-592923 |RRAB | 13.0 | 14.5 | |p |36788.497 | | 0.565 |14 | |06920 04001| +610194 |GL Pav |195659.3-572843 |RRAB | 14.4 | 16.1 | |p |36812.340 | | 0.4829 |10 : | |06920 04001| +610195 |GM Pav |195736.6-605922 |RRAB | 13.7 | 15.0 | |p |36785.417 | | 0.575 |10 : | |06920 04001| +610196 |GN Pav |200029.8-710553 |RRAB | 15.9 | 16.9 | |p |36730.478 | | 0.53485 |17 | |06920 04001| +610197 |GO Pav |195801.1-571651 |RRAB | 13.5 | 15.0 | |p |36785.290 | | 0.5222 |15 : | |06920 04001| +610198 |GP Pav |200055.4-701226 |RRAB | 15.9 | 16.5 | |p |36730.478 | | 0.789 |20 | |06920 04001| +610199 |GQ Pav |200602.6-714625 |RRAB | 13.1 | 14.3 | |p |36782.555 | | 0.4770 |20 | |06920 04001| +610200 |GR Pav |200825.4-722257 |RR | 15.6 | 16.4 | |p | | | | | |06920 04001| +610201 |GS Pav |200807.6-694859 |UG: | 15.0 | 16.8 | |p | | |( 13.8 ) | | |06920 04001| +610202 |GT Pav |200910.2-725234 |RRAB | 14.4 | 15.3 | |p |36758.496 | | 0.4972 |20 | |06920 04001| +610203 |GU Pav |200759.1-585159 |E: | 15.5 |< 16.0 | |p | | | | | |06920 04001| +610204 |GV Pav |200832.3-602917 |RRAB | 12.3 | 13.8 | |p |36787.386 | | 0.5765 |15 : | |06920 04001| +610205 |GW Pav |200836.1-565843 |RRAB | 15.2 |< 16.3 | |p |36784.437 | | 0.51935 |12 | |06920 04001| +610206 |GX Pav |201226.6-732921 |RRAB | 14.5 | 15.5 | |p |36758.520 | | 0.4756 |13 | |06920 04001| +610207 |GY Pav |201238.3-725513 |RRAB | 15.0 | 15.6 | |p |36730.500 | | 0.5755 |15 | |06920 04001| +610208 |GZ Pav |201022.3-600839 |RRAB | 13.2 | 13.8 | |p |36785.340 | | 0.442 |10 : | |06920 04001| +610209 |HH Pav |201358.8-722656 |RRAB | 15.4 | 16.1 | |p |36731.460 | | 0.5682 |15 | |06920 04001| +610210 |HI Pav |201322.9-590554 |RRAB | 14.0 | 15.0 | |p | | | | | |06920 04001| +610211 |HK Pav |201558.5-712313 |M: | 14. |< 15. | |p | | | | | |02554 04208| +610212 |HL Pav *|201701.1-732527 |RRAB | 15.0 | 15.9 | |p |36731.480 | | 0.6663 : | | |06920 04001| +610213 |HM Pav |201539.7-685811 |RRAB | 15.6 | 16.5 | |p |36732.548 | | 0.652 |15 | |06920 04001| +610214 |HN Pav |201748.8-743110 |SR: | 13.3 | 13.7 | |p | | | 60. : | | |06920 04001| +610215 |HO Pav |201414.0-590343 |RR | 15.5 |< 16.0 | |p |36815.490 | | | | |06920 04001| +610216 |HP Pav *|201702.9-711322 |EW/KW | 14.9 | 15.7 | 15.5 |p |36735.500 | | 0.2978 | | |06920 04001| +610217 |HQ Pav *|201625.8-684425 |EB/KE | 12.5 | 12.8 | 12.7 |p |36732.55 | | 0.9262 | | |06920 04001| +610218 |HR Pav |201857.0-731601 |RRAB | 14.8 | 15.7 | |p |36733.552 | | 0.42505 |20 | |06920 04001| +610219 |HS Pav |202031.1-735642 | | 15.1 | 15.3 | |p | | | | | |06920 04001| +610220 |HT Pav |201757.5-603656 |RRAB | 13.2 | 14.5 | |p |36815.426 | | 0.533 |20 | |06920 04001| +610221 |HU Pav |202123.0-702312 |RRC | 14.9 | 15.7 | |p |36747.445 | | 0.238 |25 | |06920 04001| +610222 |HV Pav |201905.1-564933 |RRAB | 12.6 | 13.5 | |p |36787.265 | | 0.560712 |15 | |06920 04001| +610223 |HW Pav |202200.2-681715 |RRAB | 15.1 | 16.3 | |p |36747.450 | | 0.5539 |15 | |06920 04001| +610224 |HX Pav |202228.8-700400 |RRAB | 14.5 | 15.7 | |p |36728.530 | | 0.520 |23 | |06920 04001| +610225 |HY Pav *|202349.1-734222 |EW/KW | 11.4 | 12.3 | 12.1 |p |36730.464 | | 0.3516 | | |06920 04001| +610226 |HZ Pav |202129.6-605949 |RR | 15.0 |< 16.0 | |p |36813.374 | | | | |06920 04001| +610227 |II Pav |202140.0-564103 |RRAB | 15.0 |< 16.0 | |p |36786.492 | | 0.407 |20 : | |06920 04001| +610228 |IK Pav |202427.0-711336 |RRAB | 14.7 | 15.9 | |p |36731.460 | | 0.4526 |10 | |06920 04001| +610229 |IL Pav *|202509.5-720115 |EW: | 16.0 | 16.3 | |p | | | | | |06920 04001| +610230 |IM Pav |202341.9-573335 |RRAB | 15.0 |< 16.0 | |p |36708.615 | | 0.560 |15 | |06920 04001| +610231 |IN Pav |202637.5-710904 |RRAB | 15.5 | 15.9 | |p |36736.500 | | 0.410 |20 | |06920 04001| +610232 |IO Pav |202702.6-691430 |RRAB | 14.4 | 15.7 | |p |36731.465 | | 0.5497 |15 | |06920 04001| +610233 |IP Pav |202911.2-730242 |RRAB | 15.0 | 16.1 | |p |36733.562 | | 0.5716 |15 | |06920 04001| +610234 |IQ Pav |202633.6-581137 |E | 11.8 | 12.3 | |p |36831.244 | | | | |06920 04001| +610235 |IR Pav |203316.1-733247 |RR | 16.0 |< 16.5 | |p | | | | | |06920 04001| +610236 |IS Pav |203353.8-743009 |RRC | 14.6 | 15.0 | |p |36728.610 | | 0.605 |40 | |06920 04001| +610237 |IT Pav |203047.3-600017 |RRAB | 12.8 | 14.3 | |p |36707.622 | | 0.6534 |10 | |06920 04001| +610238 |IU Pav |203336.7-714647 |RRAB | 13.5 | 14.7 | |p |36728.550 | | 0.4436 |18 | |06920 04001| +610239 |IV Pav |203444.9-723655 |RR: | 10.4 | 10.8 | |p | | | | | |06920 04001| +610240 |IW Pav |203459.6-724335 |EA/SD: | 15.0 | 15.8 | |p |36747.438 | | 1.7428 |18 *| |06920 04001| +610241 |IX Pav |203305.8-611320 |RRAB | 14.0 | 15.0 | |p |36788.414 | | 0.578 |15 | |06920 04001| +610242 |IY Pav |203529.5-704615 |EA/SD | 12.0 | 13.1 | |p |36748.415 | | 0.8881 | | |06920 04001| +610243 |IZ Pav |203525.1-691327 |RRAB | 14.2 | 15.3 | |p |36760.459 | | 0.57875 |15 | |06920 04001| +610244 |KK Pav |204215.7-704811 |RRAB | 15.4 | 16.7 | |p |36731.510 | | 0.5687 |10 | |06920 04001| +610245 |KL Pav |204322.8-722420 |L | 15.6 | 16.4 | |p | | | | | |06920 04001| +610246 |KM Pav |204416.6-710927 |RRAB | 15.6 | 16.5 | |p |36728.570 | | 0.7047 |14 | |06920 04001| +610247 |KN Pav |204529.8-715357 |L | 16.1 | 16.6 | |p | | | | | |06920 04001| +610248 |KO Pav |204540.0-711442 |RRAB | 15.2 | 16.4 | |p |36729.520 | | 0.6389 |10 | |06920 04001| +610249 |KP Pav |204630.3-730814 |RRAB | 13.7 | 14.6 | |p |36730.470 | | 0.6126 |12 | |06920 04001| +610250 |KQ Pav |204727.4-730528 |RRAB | 14.6 | 16.0 | |p |36764.500 | | 0.49835 |10 | |06920 04001| +610251 |KR Pav *|204649.9-695632 |EA | 13.7 | 14.8 | 14.1 |p |36736.580 | | 0.4838 |16 | |06920 04001| +610252 |KS Pav |204616.0-601318 |RR | 16.2 |< 17.2 | |p | | | | | |06920 04001| +610253 |KT Pav |204816.8-705439 |RRAB | 16.0 | 16.8 | |p |36731.480 | | 0.5185 |15 | |06920 04001| +610254 |KU Pav |204924.9-604447 |RR | 15.5 |< 16.5 | |p | | | | | |06920 04001| +610255 |KV Pav |210043.0-741604 |RRAB | 13.4 | 14.5 | |p |36731.460 | | 0.5282 |15 | |06920 04001| +610256 |KW Pav |210112.2-725418 |RRAB | 15.1 | 16.0 | |p |36728.520 | | 0.6167 |17 | |06920 04001| +610257 |KX Pav |205849.7-593145 |RRAB | 14.5 | 15.5 | |p |36708.615 | | 0.5162 |25 : | |06920 04001| +610258 |KY Pav |210228.7-732433 |RRAB | 15.2 | 16.3 | |p |36730.480 | | 0.5398 |15 | |06920 04001| +610259 |KZ Pav *|205840.1-702520 |EA/SD | 7.71 | 9.30 | |V |44431.7546 | | 0.9498768 | |F6V |09213 08953| +610260 |LL Pav *|185851.2-731921 |EW/KE | 14.7 | 15.1 | 15.1 |p |36731.510 | | 0.8770 | | |06920 04001| +610261 |LM Pav |192236.9-700245 |RRAB | 15.4 | 16.1 | |p |36730.460 | | 0.4216 |25 | |06920 04001| +610262 |LN Pav |192610.3-695459 |CWB: | 14.8 | 15.5 | |p |36783.3 | | 3.6 | | |06920 04001| +610263 |LO Pav *|192718.1-703057 |EW/KE | 15.9 | 16.5 | 16.5 |p |36732.560 | | 0.6598 | | |06920 04001| +610264 |LP Pav |192711.4-691225 |RRAB: | 15.8 | 16.6 | |p | | | 0.96 :/N| | |06920 04001| +610265 |LQ Pav |192956.2-711256 |RRAB | 15.4 | 15.8 | |p |36773.260 | | 0.596 : |25 | |06920 04001| +610266 |LR Pav *|193453.8-703951 |EW/KW | 15.0 | 15.3 | 15.3 |p |36732.570 | | 0.39450 | | |06920 04001| +610267 |LS Pav |193715.1-693521 |RRAB | 15.2 | 16.2 | |p |36732.470 | | 0.5475 |10 | |06920 04001| +610268 |LT Pav *|194836.1-710134 |EW/KW | 11.4 | 12.2 | 12.2 |p |36730.478 | | 0.32885 | | |06920 04001| +610269 |LU Pav |194915.1-583720 |EA: | 15.0 | 15.5 | |p |36786.453 | | 1.2064 | | |06920 04001| +610270 |LV Pav *|195046.5-583219 |EW/KE | 14.0 | 14.5 | 14.3 |p |36815.225 | | 0.533 | | |06920 04001| +610271 |LW Pav |195311.8-575420 |RR | 15.8 |< 16.8 | |p | | | | | |06920 04001| +610272 |LX Pav |195509.6-570304 |RRAB | 13.4 | 14.7 | |p |36785.521 | | 0.5033 |12 | |06920 04001| +610273 |LY Pav *|195841.2-695451 |EW/KW | 14.5 | 15.0 | 14.9 |p |36764.510 | | 0.37955 | | |06920 04001| +610274 |LZ Pav |200119.8-714337 |E | 16.1 | 16.6 | |p |36731.490 | | 0.8908 : | | |06920 04001| +610275 |MM Pav |195847.2-584847 |SR | 15.5 |< 16.0 | |p |36837. | | 50. : | | |06920 04001| +610276 |MN Pav |200257.1-733124 |RRC | 15.1 | 15.6 | |p |36728.530 | | 0.3391 |40 | |06920 04001| +610277 |MO Pav |200625.3-735159 |RRAB | 15.3 | 16.3 | |p |36732.548 | | 0.46145 |16 | |06920 04001| +610278 |MP Pav |200859.4-741023 |RRAB | 15.0 | 15.7 | |p |36729.474 | | 0.610 |15 | |06920 04001| +610279 |MQ Pav *|200620.0-572449 |SXPHE: | 14.5 | 15.0 | |p |36784.437 | | 0.1683 | | |06920 04001| +610280 |MR Pav *|202555.8-715433 |RRC | 14.6 | 14.9 | |p |36731.400 | | 0.5967 | | |06920 04001| +610281 |MS Pav *|203354.1-735332 |EW/KW | 13.7 | 14.6 | 14.1 |p |36729.474 | | 0.33474 | | |06920 04001| +610282 |MT Pav |203407.5-690055 |EA | 13.0 | 13.4 | |p |36782.528 | | 1.3595 |12 *| |06920 04001| +610283 |MU Pav |203522.9-610327 |EA/SD | 11.8 | 13.9 | |p |36785.417 | | 0.73605 |20 : | |06920 04001| +610284 |MV Pav |204310.4-694246 |UV | 10. : | 16.5 | |B | | | | |M5: |05722 02384| +610285 |MW Pav *|204627.7-715659 |EW | 8.51 | 8.95 | 8.92 |V |40862.6076 | | 0.79498855 | |F3IV/V |06921 06871| +610286 |MX Pav |182411.2-635655 |EA/SD: | 10.0 | 10.6 | |p |28332.225 | | 5.730685 | | |05904 05835| +610287 |MY Pav |183204.2-585323 |SR: | 11.8 | 12.7 | |p | | | | | |00085 02383| +610288 |MZ Pav |191211.2-611626 |L | 12.2 | 13.2 | |p | | | | | |00085 02383| +610289 |NN Pav |191634.2-662828 |EA/SD | 12.0 | 13.5 | |p |28675.675 | | 2.759385 | | |06871 06871| +610290 |NO Pav |195905.3-621651 |M | 11.1 |< 13.5 | |p | | | | |Me |05834 02384| +610291 |NP Pav *|204801.5-690557 |EA/KE | 10.7 | 11.7 | |p |38234.400 | | 1.266821 | | |05834 02384| +610292 |NQ Pav |204833.1-691753 |E | 16.6 | 17.0 : | |p | | | | | |06920 04001| +610293 |NR Pav |205036.8-725953 |SR | 11.4 | 12.0 | |p | | | | | |06920 04001| +610294 |NS Pav |210252.2-741943 |RRAB | 13.3 | 14.3 | |p |36733.550 | | 0.6572 |20 | |06920 04001| +610295 |NT Pav |175928.9-573550 |E | 15.6 | 16.6 | |p | | | | | |01021 06286| +610296 |NU Pav |200144.7-592233 |SRB | 4.91 | 5.26 | |V | | | 60. : | |M6III |05992 05474| +610297 |NV Pav |174455.6-673149 |RRAB | 13.3 | 15.1 | |p |37419.991 | | 0.4871444 |13 | |06834 06834| +610298 |NW Pav *|181334.6-651413 |CWA | 11.4 | 13.0 | |p |44168.80 | | 30. | | |06561 05829| +610299 |NX Pav |184115.2-630208 |M | 10.9 | 15. | |p | | | | |Me | 04001| +610300 |NY Pav |184852.4-724334 |M | 14.5 | 17. | |p | | | | |Me |04454 GSC22| +610301 |NZ Pav |195101.1-653618 |DSCTC | 6.04 |( 0.017 )| |V | | | 0.08 : | |F2III-IV |06338 CPD | +610302 |OO Pav |185758.1-715057 |L | 14.7 |< 16.2 | |p | | | | | |06920 04001| +610303 |OP Pav |174234.5-581646 |E | 16.2 | 17.0 | |p | | | | | |01021 06286| +610304 |OQ Pav |174737.0-603310 |RR | 16.8 | 17.4 | |p | | | | | |01021 06286| +610305 |OR Pav |174855.1-610545 |RR | 16.1 | 17.0 | |p | | | | | |01021 06286| +610306 |OS Pav |175044.2-594845 |RR | 16.6 | 17.5 | |p | | | | | |01021 06286| +610307 |OT Pav |175205.5-595038 |RR | 15.8 | 16.6 | |p | | | | | |01021 06286| +610308 |OU Pav |175214.3-604254 |RR | 16.6 | 17.4 | |p | | | | | |01021 06286| +610309 |OV Pav |175205.6-591644 |RR | 16.2 | 17.1 | |p | | | | | |01021 USNO | +610310 |OW Pav |175759.8-633800 |LB: | 7.8 | 8.9 | |V | | | | |M5III |09287 03508| +610311 |OX Pav |175710.2-574836 |L: | 13.6 | 14.4 | |p | | | | | |01021 06286| +610312 |OY Pav *|175918.1-593721 |RR | 15.8 | 16.6 | |p | | | | | |01021 06286| +610313 |OZ Pav |180529.0-594715 |RR | 16.3 | 16.9 | |p | | | | | |01021 06286| +610314 |PP Pav |182135.6-592550 |RR | 15.5 | 16.2 | |p | | | | | |00629 06286| +610315 |PQ Pav |182521.8-590846 |SR: | 13.3 | 15.0 | |p | | | | | |00629 GSC22| +610316 |PR Pav |182926.3-624624 |M: | 13.2 |< 18. | |p | | | | | |04453 05834| +610317 |PS Pav |183603.3-582607 |SR: | 14.8 |< 16.5 | |p | | | | | |00629 06286| +610318 |PT Pav |184120.2-623557 |L | 12. | 13. | |p | | | | | |00085 02383| +610319 |PU Pav |184450.0-643024 |M: | 12.5 |< 17.5 | |p | | | | | |04453 GSC22| +610320 |PV Pav |184859.2-703747 |L | 13. | 13.5 | |p | | | | | |02554 05502| +610321 |PW Pav |185420.3-631159 |M: | 14.5 |< 18. | |p | | | | | |04454 | +610322 |PX Pav |192610.0-700829 |RR: | 16.0 | 16.5 | |p | | | | | |06920 04001| +610323 |PY Pav |192359.0-583218 |SR: | 11. | 13. | |p | | | | | |00085 CoD | +610324 |PZ Pav |192814.9-743925 |L | 14.0 | 14.7 | |p | | | | | |06920 04001| +610325 |QQ Pav |192645.0-694540 |L | 16.1 | 16.5 | |p | | | | | |06920 04001| +610326 |QR Pav |193540.0-611919 |RR: | 12.5 | 13.5 | |p | | | | | |06561 06561| +610327 |QS Pav |194127.2-722001 |SRB | 13.8 | 15.4 | |p | | | 28. : | | |06920 04001| +610328 |QT Pav |194219.3-725221 |L | 12.2 | 12.6 | |p | | | | | |06920 04001| +610329 |QU Pav |194334.8-720709 |EA | 12.0 | 12.5 | |p | | | | | |06920 04001| +610330 |QV Pav |194735.6-682845 |E: | 14.2 | 14.5 | |p | | | | | |06920 04001| +610331 |QW Pav |195004.4-685057 |RR: | 16.0 | 16.5 | |p | | | 1.05 :/N| | |06920 04001| +610332 |QX Pav |195254.0-704151 |L | 15.7 | 16.2 | |p | | | | | |06920 04001| +610333 |QY Pav |195342.4-592010 |E | 15.0 | 15.5 | |p |36785.247 | | | | |06920 04001| +610334 |QZ Pav |200010.4-712316 |L | 13.4 | 14.4 | |p | | | | | |06920 04001| +610335 |V0335 Pav |204221.0-691404 |SR: | 13.8 | 14.3 | |p | | | 55. : | | |06920 04001| +610336 |V0336 Pav |204550.0-680100 |L | 14.0 | 15.7 | |p | | | | | |06920 04001| +610337 |V0337 Pav |204806.5-620448 |RR: | 13. | 14. | |p | | | | | |06561 07772| +610338 |V0338 Pav |210834.1-632806 |RR: | 13.5 | 14. | |p | | | | | |06561 07772| +610339 |V0339 Pav |191645.8-581713 |M: | 13.5 |< 17. | |p | | | | | |02935 GSC22| +610340 |V0340 Pav |192408.7-605336 |M: | 12.3 | 16.5 | |p | | | | | |05834 04001| +610341 |V0341 Pav |202536.2-670334 |M: | 12.2 | 16. | |p | | | | | |04454 05834| +610342 |V0342 Pav |204106.8-613532 |DSCTC | 8.4 |( 0.03 )| |V | | | 0.034 | |A6V |08445 CPD | +610343 |V0343 Pav |204848.2-721244 |ACV | 7.99 | 8.02 | |V | | | | | |67484 CPD | +610344 |V0344 Pav |191609.7-623552 |UG | 14.5 |< 20. | |p | | | | | |71181 GSC22| +610345 |V0345 Pav |193542.9-590822 |EA+NL | 13.5 | 14.7 | |B | | | | | |72137 72137| +610346 |V0346 Pav |182531.6-630118 |DSCTC | 6.14 |( 0.04 b )| |V | | | | | |73243 CPD | +610347 |V0347 Pav |184448.1-741834 |AM | 14.85 | 16.67 | |V | | | | | |73244 73245| +610348 |V0348 Pav |195648.3-603427 |NL | 18.0 | 19.0 | |p | | | | | |73015 73015| +610349 |V0349 Pav |200855.8-652743 |AM | 18.0 | 19.5 | |p | | | | | |73246 73246| +610350 |V0350 Pav |201900.0-714328 |M | 3.81 | 5.90 | |J | | | | | |73014 73106| +610351 |V0351 Pav |205333.6-715127 |M | 4.02 | 5.97 | |J | | | | | |73014 GSC22| +610352 |V0352 Pav |174707.4-595940 |DSCTC | 6.55 | 6.61 | |Hp| | | | | |HIP HIP | +610353 |V0353 Pav |175949.6-574608 |I: | 11.89 | 12.42 | |Hp| | | | | |HIP HIP | +610354 |V0354 Pav |180536.8-650955 |LB | 8.34 | 8.51 | |Hp| | | | | |HIP HIP | +610355 |V0355 Pav |181328.5-674831 |LB: | 8.34 | 8.48 | |Hp| | | | | |HIP HIP | +610356 |V0356 Pav |181450.2-664854 |E: | 7.45 | 7.62 | |Hp| | | | | |HIP HIP | +610357 |V0357 Pav |183132.4-675718 |ACV: | 7.94 | 7.99 | |Hp| | | | | |HIP HIP | +610358 |V0358 Pav |183612.0-653157 |LB: | 8.43 | 8.53 | |Hp| | | | | |HIP HIP | +610359 |V0359 Pav |183948.7-591806 |LB | 7.38 | 7.68 | |Hp| | | | | |HIP HIP | +610360 |V0360 Pav |184310.7-711718 |LB | 7.63 | 7.81 | |Hp| | | | | |HIP HIP | +610361 |V0361 Pav |184652.3-651459 |LB | 7.07 | 7.17 | |Hp| | | | | |HIP HIP | +610362 |V0362 Pav |184903.5-631610 |E | 7.44 | 7.64 | |Hp| | | | | |HIP HIP | +610363 |V0363 Pav |185227.0-571146 |EA | 8.17 | 8.50 | |Hp| | | | | |HIP HIP | +610364 |V0364 Pav |185958.5-715558 |LPB: | 6.77 | 6.80 | |Hp| | | | | |HIP HIP | +610365 |V0365 Pav |190558.2-600633 |LB: | 8.88 | 9.00 | |Hp| | | | | |HIP HIP | +610366 |V0366 Pav |191316.9-731854 |LB: | 8.32 | 8.48 | |Hp| | | | | |HIP HIP | +610367 |V0367 Pav |191605.4-644920 |EB | 9.07 | 9.26 | |Hp| | | | | |HIP HIP | +610368 |V0368 Pav |192137.2-664326 |EB: | 8.96 | 9.27 | |Hp| | | | | |HIP HIP | +610369 |V0369 Pav |192426.6-714858 |LB: | 8.39 | 8.53 | |Hp| | | | | |HIP HIP | +610370 |V0370 Pav |192425.6-632142 |LC | 8.15 | 8.45 | |Hp| | | | | |HIP HIP | +610371 |V0371 Pav |192517.5-572234 |LB | 8.77 | 8.90 | |Hp| | | | | |HIP HIP | +610372 |V0372 Pav |192634.6-565519 |SRB | 7.80 | 7.95 | |Hp| | | | | |HIP HIP | +610373 |V0373 Pav |195227.6-591003 |LB: | 8.62 | 8.72 | |Hp| | | | | |HIP HIP | +610374 |V0374 Pav |195801.0-603523 |LB: | 8.18 | 8.28 | |Hp| | | | | |HIP HIP | +610375 |V0375 Pav |200404.7-653601 |BY: | 11.17 | 12.23 | |Hp| | | | | |HIP HIP | +610376 |V0376 Pav |201001.3-633932 |LB | 7.82 | 7.95 | |Hp| | | | | |HIP HIP | +610377 |V0377 Pav |201257.6-584645 |ACV | 8.89 | 8.93 | |Hp| | | | | |HIP HIP | +610378 |V0378 Pav |201425.8-621645 |SRB | 6.67 | 6.82 | |Hp| | | | | |HIP HIP | +610379 |V0379 Pav |202131.8-732907 |LB: | 8.92 | 9.02 | |Hp| | | | | |HIP HIP | +610380 |V0380 Pav |202345.1-592029 |LB: | 8.67 | 8.77 | |Hp| | | | | |HIP HIP | +610381 |V0381 Pav |202918.0-642339 |LB | 8.86 | 9.06 | |Hp| | | | | |HIP HIP | +610382 |V0382 Pav *|203147.4-730418 |DSCT: | 8.91 | 9.10 | |Hp| | | | | |HIP HIP | +610383 |V0383 Pav |203200.5-600238 |LB: | 8.73 | 8.90 | |Hp| | | | | |HIP HIP | +610384 |V0384 Pav |203654.5-672510 |LB: | 7.99 | 8.11 | |Hp| | | | | |HIP HIP | +610385 |V0385 Pav |205026.9-725852 |LB | 8.93 | 9.37 | |Hp| | | | | |HIP HIP | +610386 |V0386 Pav |205557.9-652559 |EW | 8.39 | 8.49 | |Hp| | | | | |HIP HIP | +610387 |V0387 Pav |205847.5-614841 |LB | 8.57 | 8.87 | |Hp| | | | | |HIP HIP | +610388 |V0388 Pav |210201.3-715000 |DSCTC | 8.81 | 8.88 | |Hp| | | | | |HIP HIP | +610389 |V0389 Pav |210629.4-683845 |LB: | 7.61 | 7.71 | |Hp| | | | | |HIP HIP | +610390 |V0390 Pav |212124.4-665457 |BY: | 9.03 | 9.20 | |Hp| | | | | |HIP HIP | +610391 |V0391 Pav |212146.0-642435 |LB: | 7.72 | 7.83 | |Hp| | | | | |HIP HIP | +610392 |V0392 Pav | | | | | | | | | | | | |=CM Ind +610393 |V0393 Pav |195711.5-573822 |XM | 17.6 |( 1.8 )| |V | | | | | |75205 75205| +610394 |V0394 Pav |190923.2-600701 |EW | 18.43 | 19.03 | |V | | | | | |76201 76201| +610395 |V0395 Pav |190935.7-594921 |EW | 16.88 | 17.39 | |V | | | | | |76201 76201| +610396 |V0396 Pav |190952.7-595811 |EW | 19.10 | 19.70 | |V | | | | | |76201 | +610397 |V0397 Pav |191110.7-595854 |EW | 17.03 | 17.51 | |V | | | | | |76201 76201| +610398 |V0398 Pav |191216.3-595309 |EW | 15.90 | 16.23 | |V | | | | | |76201 76201| +610399 |V0399 Pav *|194225.4-680735 |SRB | 11.2 | 11.9 | |V | | | 500. | |M4IIIe |78130 GSC | +610400 |V0400 Pav *|212704.4-623914 |EB | 9.18 | 9.33 | 9.23 |V |51905.532 | | 1.155466 | |F5V |78011 DM | +610401 |V0401 Pav |180156.3-660149 |EW | 11.32 | 11.90 | 11.89 |V |52467.440 | | 0.327111 | | |79240 79121| +610402 |V0402 Pav |181728.5-681629 |EA | 12.37 | 13.9 : | 12.6 |V |52055.753 | | 5.0543 |11 | |79018 79080| +610403 |V0403 Pav |182936.4-645440 |M | 11.9 |< 15.0 | |V |53183. | | 380. | | |79093 79093| +610404 |V0404 Pav |183047.4-670819 |EA | 13.15 | 15.0 | 13.25 : |V |52206.573 | | 1.85188 | | |79004 79121| +610405 |V0405 Pav |183110.9-640731 |EA | 9.11 | 9.20 | 9.12 |V |48528.814 | | 5.64797 |04 |F2IV |79009 DM | +610406 |V0406 Pav |190436.5-572542 |SRB | 9.1 | 10.8 | |V | | | 122. | | |79064 DM | +610407 |V0407 Pav |191438.3-611541 |RV | 11.5 | 12.6 | |V |52553.5 | | 112.8 | | |79100 79106| +610408 |V0408 Pav |194207.9-640438 |EA | 13.2 | 15.1 : | 13.4 |V |52124.570 | | 3.29298 |12 | |79001 79121| +610409 |V0409 Pav |195308.8-740809 |SRB | 10.8 | 12.5 | |V | | | 63. | | |79100 79071| +610410 |V0410 Pav |174636.6-583851 |EW | 12.62 | 13.2 | 13.15 |V |52945.527 | | 0.494663 | | |80011 GSC | NL80_3 +610411 |V0411 Pav |175017.3-584537 |RRAB | 13.6 | 14.4 | |V |52711.840 | | 0.603399 |17 | |80135 GSC | NL80_3 +610412 |V0412 Pav |183740.7-572739 |RRC | 13.8 | 14.35 | |V |52813.717 | | 0.322843 |36 | |80135 GSC | NL80_3 +610413 |V0413 Pav *|184110.0-722942 |EB | 11.60 | 12.33 | 11.86 |V |51868.391 | | 0.710832 | | |80036 DM | NL80_3 +610414 |V0414 Pav |184652.6-621037 |BY | 11.8 | 12.2 | |V | | | 5.3732 | |M1Ve |80001 GSC | NL80_3 +610415 |V0415 Pav |185839.5-685835 |RRAB | 13.5 | 14.45 | |V |52949.566 | | 0.688625 |13 | |80135 GSC | NL80_3 +610416 |V0416 Pav *|193933.5-652851 |RR(B) | 12.9 | 13.7 | |V | | | 0.49152 | | |80527 GSC | NL80_3 +610417 |V0417 Pav |202844.2-644306 |RRAB | 13.7 | 14.7 | |V |53571.750 | | 0.630296 |08 | |80135 GSC | NL80_3 +610418 |V0418 Pav |205342.9-660922 |RRAB | 13.8 | 14.9 | |V |53564.741 | | 0.439893 |12 | |80135 GSC | NL80_3 +610419 |V0419 Pav |210526.4-604604 |RRAB | 13.55 | 14.8 | |V |53560.805 | | 0.574641 |14 | |80135 GSC | NL80_3 +610420 |V0420 Pav |210917.4-740856 |RRAB | 13.25 | 14.3 | |V |52055.835 | | 0.579162 |14 | |80083 GSC | NL80_3 +619010 |kap Pav *|185657.0-671401 |CEP | 3.91 | 4.78 | |V |40140.167 | | 9.09423 |44 |F5-G5I-II |00001 04234| +619011 |lam Pav *|185213.0-621115 |GCAS | 4.0 | 4.26 | |V | | | | |B2II-IIIe | 04234| +619013 |nu. Pav |183122.4-621642 |LPB | 4.56 | 4.60 | |Hp| | | | | |HIP HIP | +619017 |rho Pav *|203735.3-613148 |DSCTC | 4.85 |( 0.055 )| |V | | | 0.1141 | |F0mIII |04143 CPD | +620001 |R Peg *|230639.2+103236 |M | 6.9 | 13.8 | |V |42444. | | 378.1 |44 |M6e-M9e |00001 00002| +620002 |S Peg |232032.6+085508 |M | 6.9 | 13.8 | |V |45311. | | 319.22 |47 |M5e-M8.5e |00001 00002| +620003 |T Peg *|220854.3+123225 |M | 8.4 | 15.4 | |V |45159. | | 379.4 |49 |M6e-M8e |00001 00002| +620004 |U Peg *|235758.5+155710 |EW/KW | 9.23 | 10.07 | 9.73 |V |36511.66823 | | 0.374781439 | |F3+F3 |09562 08953| +620005 |V Peg |220102.6+060711 |M | 7.0 | 15.0 | |V |44506. | | 302.35 |44 |M3e-M7e |00001 00002| +620006 |W Peg *|231950.5+261644 |M | 7.6 | 13.0 | |V |44873. | | 345.5 |46 |M6e-M8e |00001 00002| +620007 |X Peg *|212059.9+142700 |M | 8.8 | 14.4 | |V |45244. | | 201.2 |50 |M2e-M5e |00001 00002| +620008 |Y Peg |221137.5+142156 |M | 8.9 | 16.0 | |V |43038. | | 206.93 |46 |M3e-M5e |00001 00002| +620009 |Z Peg *|000006.6+255311 |M | 7.3 | 13.6 | |V |45090. | | 334.8 |50 |M6e-M8.5e(Tc) |00001 00002| +620010 |RR Peg *|214430.6+250026 |M | 8.5 | 14.9 | |V |45290. | | 264.05 |43 |M4e-M8e |00001 00002| +620011 |RS Peg *|221216.2+143312 |M | 8.2 | 14.7 | |V |45161. | | 415.4 |45 |M6e-M9e |00001 00002| +620012 |RT Peg *|220410.1+350718 |M | 9.4 | 15.4 | |V |45599. | | 215.0 |44 |M3e-M6e |00001 00002| +620013 |RU Peg *|221402.6+124211 |UGSS+ZZ: | 9.0 | 13.2 | |V | | |( 74.3 ) | |pec(UG)+G8IVn |09569 09515| +620014 |RV Peg *|222536.8+302821 |M | 9.0 | 15.5 | |V |42049. | | 396.8 |38 |M6e |00001 00002| +620015 |RW Peg *|230411.5+151812 |M | 8.8 | 14.6 | |V |45457. | | 208.43 |48 |K3e-M6.5e |00001 00002| +620016 |RX Peg *|215622.3+225143 |SRB | 9.7 | 11.6 | |p | | | 629. : | |C4,4J(N3) |00653 08953| +620017 |RY Peg *|220551.6+333018 |CST | 12.31 | | |V | | | | |F9V |01026 00570| +620018 |RZ Peg *|220553.0+333025 |M | 7.6 | 13.6 | |V |45248. | | 438.7 |44 |C9,1e(Ne)(Tc)/CSe|00001 00002| +620019 |SS Peg *|223358.3+243354 |M | 8.0 | 13.6 | |V |45177. | | 424.8 | |M6e-M7e |00001 00002| +620020 |ST Peg |224904.5+272129 |SRB | 9.9 | 11.6 | |p | | | 136.2 | |M6e |01026 08953| +620021 |SU Peg |233659.6+324201 |M | 8.1 | 11.5 | |V |26610. | | 198.4 | |M3e |03567 06286| +620022 |SV Peg *|220542.1+352055 |SRB | 9.2 | 11.0 | |p | | | 144.6 | |M7 |01026 08953| +620023 |SW Peg |212229.0+215954 |M | 8.0 | 14.0 | |V |38750. | | 396.33 |42 : |M4e |03908 08953| +620024 |SX Peg *|225024.8+175337 |M | 9.7 | 15. | |p |45186. | | 303.6 |43 |S3,9e-S4.5,9e |00001 08953| +620025 |SY Peg |220548.0+345418 |LB | 9.6 | 10.0 | |V | | | | |M0 |00179 08953| +620026 |SZ Peg |220628.4+352553 |CST: | 10.4 | 10.7 | |p | | | | |K7 |01026 BD | +620027 |TT Peg |000629.3+270524 |SRA | 9.3 | 11.2 | |V |37178. | | 154. | |M6e |03908 08953| +620028 |TU Peg *|214504.6+124155 |M | 8.2 | 14.6 | |V |45137. | | 321.6 |45 |M7e-M8e |00001 08953| +620029 |TV Peg |212646.5+163454 |M | 9. |< 14. | |V |38550. | | 247.10 | |M0e |00001 08953| +620030 |TW Peg *|220359.5+282054 |SRB | 7.5 | 8.4 | |p | | | 929.3 | |M6-M8 |00653 08953| +620031 |TX Peg |221818.2+133629 |SRB | 9.3 | 10.80 | |B | | | 120. |50 |M5e |00001 05151| +620032 |TY Peg *|232957.0+133232 |EA/SD | 10.1 | 12.0 | 10.2 |V |40451.784 | | 3.092220 |14 *|A2 |00001 00010| +620033 |TZ Peg *|210857.4+160119 |M | 10.1 |< 14.0 | |p |38647. | | 211.9 |47 |M3e |00001 08953| +620034 |UU Peg *|213104.2+110914 |M | 11.1 |< 14. | |p |34612. | | 456.5 | |M7e |00001 00567| +620035 |UV Peg |220408.2+354534 |CST | 9.1 | | |V | | | | |A0 | BD | +620036 |UW Peg *|221810.7+024350 |SRB | 8.7 | 9.9 | |V | | | 106. | |M5-M7 |00898 08953| +620037 |UX Peg *|222835.8+180134 |EA/SD | 10.7 | 12.0 | |p |40425.479 | | 1.544617 |14 *|G5V |00001 08953| +620038 |UY Peg |224444.7+301733 |LB | 10.6 | 11.5 | |p | | | | |M1 |00904 BD | +620039 |UZ Peg | | | | | | | | | | | | |=CR Cyg +620040 |VV Peg *|221303.9+182704 |RRAB | 11.13 | 12.31 | |V |39389.474 | | 0.4883871 |13 |A9-F4 |00001 08953| +620041 |VW Peg *|225623.6+331344 |EA | 9.9 | 10.6 | |V |17815.560 | | 1.170648 |12 *| |09519 08953| +620042 |VX Peg *|214244.7+222835 |SRB | 10.0 | 11.6 | |p | | | 934. | |M7 |00653 08953| +620043 |VY Peg |220240.4+022414 |M | 11. |< 16. | |p |34240. | | 377.0 | | |00001 00567| +620044 |VZ Peg *|234216.3+245458 |RRC | 11.66 | 12.13 | |V |38317.2930 | | 0.3064863 |36 |A0 |03315 02474| +620045 |WW Peg *|215638.0+362034 |M | 11.6 |< 13.9 | |p |40510. | | 354. | |M1 |06087 USNO | +620046 |WX Peg |215950.3+331400 | | 14.5 |< 16. | |p | | | | | |02151 | +620047 |WY Peg |220044.0+332303 |M | 11. |< 16. | |p |33555. | | 295.0 | | |03567 06286| +620048 |WZ Peg |220132.7+351751 |EA/SD | 14.3 | 16.5 | |B |42960.473 | | 3.4240 |12 |A2 |09072 09072| +620049 |XX Peg |220559.6+353006 |M | 13.5 | 18.2 | |p |42852. | | 405.7 | | |09521 09521| +620050 |XY Peg |220745.1+332939 |RRAB | 14.2 | 15.9 | |p |42747.185 | | 0.499907 |20 | |09521 09521| +620051 |XZ Peg |220842.9+295316 | | 13.5 | 15. | |p | | | | |F0 |02151 | +620052 |YY Peg |221827.0+314530 | | 14. | 15.5 | |p | | | | | |02151 USNO | +620053 |YZ Peg |222020.1+324027 | | 14.5 | 16. | |p | | | | | |02151 GSC | +620054 |ZZ Peg *|225854.5+145145 |EB | 12.2 | 12.8 | 12.5 |p |25088.522 | | 0.667360 | | |01030 | +620055 |AA Peg |221709.9+275151 | | 13.8 |< 16. | |p | | | | | |01483 USNO | +620056 |AB Peg |222158.1+134639 |SRA | 13.5 | 15.7 | |p |39386. | | 265.8 | | |09578 06286| +620057 |AC Peg |222206.8+220848 | | 13.8 |< 15.2 | |p | | | | | |02152 | +620058 |AD Peg |222408.8+264431 |LB | 11.1 | 13.0 | |V | | | | |M5-M7 |00898 BD | +620059 |AE Peg *|222721.5+164817 |RRAB | 12.37 | 13.08 | |V |39410.295 | | 0.496707 |10 |A6-F4 |03819 06286| +620060 |AF Peg |225123.2+180708 |SRB | 8.4 | 9.8 | |V | | | 65. | |M5II-III |00310 00119| +620061 |AG Peg *|215102.0+123732 |NC | 6.0 | 9.4 | |V | |1870 | | |WN6+M3III |09580 02510| +620062 |AH Peg |000016.9+263629 |SRB | 12.6 | 14.2 | |p | | | 190. : | | |03623 03623| +620063 |AI Peg |221459.1+264549 | | 13.0 |< 15.5 | |p | | | | | |01483 06286| +620064 |AK Peg |230311.1+112133 |SRA | 8.6 | 10.24 | |V |39040. | | 193.6 |40 |M4-M8e |00001 08953| +620065 |AL Peg |231339.9+275939 |RRAB | 13. | 15.0 | |p |35731.490 | | 0.568955 |05 |F2 |08656 08656| +620066 |AM Peg |211008.4+122730 |SRA | 9.0 | 11.0 | |V |41620. | | 137.1 |44 |M1e-M3e |00373 08953| +620067 |AN Peg *|211121.1+132112 |M | 9.6 |< 13. | |V |42667. | | 280.07 | |M5 |00001 01033| +620068 |AO Peg *|212703.4+183558 |RRAB | 11.83 | 13.34 | |V |25514.347 | | 0.54724252 |10 |A7-F5 |03506 03506| +620069 |AP Peg |212922.9+180959 |M | 10.5 |< 14. | |p |38529. | | 300.18 | |M5e |00001 01033| +620070 |AQ Peg *|213720.9+132829 |EA/SD | 10.39 | 12.85 | 10.47 |V |41222.7048 | | 5.5485028 |12 |A2e+G5 |09099 00110| +620071 |AR Peg |215240.4+090258 |S: | 12.5 : | 13.58 | |B | | | | |K5 |01033 01033| +620072 |AS Peg *|211301.0+185603 |M | 10.2 | 15. | |p |36435. | | 329.76 | |M2e-M6: |00001 06286| +620073 |AT Peg *|221323.5+082531 |EA/SD | 8.97 | 9.75 | 9.04 |V |45219.8562 | | 1.1460764 |18 *|A7V |00001 08953| +620074 |AU Peg *|212400.2+181644 |CEP | 8.98 | 9.47 | |V |42303.61 | | 2.4015 |33 : |F8 |09582 03203| +620075 |AV Peg *|215202.8+223429 |RRAB | 9.88 | 10.92 | |V |43790.316 | | 0.3903747 |17 |A7-F6 |09583 08953| +620076 |AW Peg *|215220.7+240044 |EA/DS | 7.40 | 8.61 | 7.60 |V |43741.400 | | 10.62259 |10 |A5Ve+F2:pe |00001 08953| +620077 |AX Peg |215829.0+230551 |SR: | 10.6 | 11.3 | |V | | | | |M0: | BD | +620078 |AY Peg |220047.4+345748 |EA/SD: | 13.1 | 14.1 | |V |44462.565 | | 2.439012 |20 *|A5 |09607 09585| +620079 |AZ Peg |220636.7+291258 |SRB | 9.8 | 10.9 | |p | | | 102.2 | |M0e |01026 BD | +620080 |BB Peg *|222256.9+161928 |EW/KW | 10.8 |( 0.68 )|( 0.60 )|B |43764.3334 | | 0.3615021 | |F8 |09586 00975| +620081 |BC Peg |224148.4+211013 |SRB | 9.3 | 10.3 | |V | | | 125. |40 : |M6 |00310 08953| +620082 |BD Peg |224259.0+280926 |SRB | 9.4 | 10.3 | |p | | | 78. |50 |M6-M8 |01026 08953| +620083 |BE Peg |224342.2+231113 |SRB | 10.8 | 12.0 | |p | | | 74. | |M5 |01026 08953| +620084 |BF Peg *|224553.1+240837 |RRAB | 12.33 | 13.07 | |V |42961.435 | | 0.4958174 |13 | |09856 06286| +620085 |BG Peg *|225247.3+153935 |EA/SD | 10.5 | 11.6 | |V |45532.518 | | 1.95272 |18 |A2 |00001 06286| +620086 |BH Peg *|225301.0+154717 |RRAB | 9.99 | 10.79 | |V |39365.280 | | 0.640993 |20 |A8-F6 |06603 06603| +620087 |BI Peg *|225751.8+180101 |SRA | 9.9 | 11.2 | |V |27020. | | 500. |52 |M6e |00460 08953| +620088 |BK Peg *|234708.5+263400 |EA/D | 9.97 | 10.47 | 10.47 |V |41587.7259 | | 5.4899085 |06 *|F5IV-V+F8IV |08920 00279| +620089 |BL Peg |212259.5+235332 |RRAB | 13.3 | 14.7 | |p |24758.70 | | 0.55543 | | |00193 06286| +620090 |BM Peg |212319.4+232848 |M | 12.9 |< 16.0 | |p |24800. | | 426.0 | |M6.5 |00193 06286| +620091 |BN Peg |212804.3+045902 |EA | 10.3 | 11.2 | |V |33896.366 | | 0.713298 |25 *|F5 |06187 00279| +620092 |BO Peg *|213117.9+115647 |EA/KE: | 11.5 | 12.2 | 11.6 |V |45612.323 | | 0.5804301 |17 *|A4 |00001 00470| +620093 |BP Peg *|213313.5+224424 |DSCT(B) | 11.69 | 12.28 | |V |43014.5786 | | 0.109543375 |30 |A0 |09589 06527| +620094 |BQ Peg |213420.7+205718 |EA | 13.7 | 16.3 | |p |24789.60 | | 1.57485 | | |00193 06286| +620095 |BR Peg |213518.8+273149 |M | 14.5 |< 16.5 | |p |25130. | | 260. | | |00193 | +620096 |BS Peg *|213536.5+281835 |SR | 12.9 | 15.1 | |p |24770. | | 194. | | |00193 | +620097 |BT Peg |213623.9+261807 |RRAB | 11.9 | 13.2 | |p |36457.154 | | 0.5567705 | |A |03273 06286| +620098 |BU Peg *|213707.2+240626 |SRB | 11.0 | 12.1 | |V |32063.2 | | 64.9 |50 |M6.5 |08044 | +620099 |BV Peg |213756.6+264746 |SRA | 14.2 | 16.3 | |p |24770. | | 306. | | |00193 USNO | +620100 |BW Peg |213808.3+212828 |E | 14.1 | 15.2 | |p |24772.65 | | 1.58392 | | |00193 GSC | +620101 |BX Peg *|213849.4+264134 |EW/KW | 11.0 |( 0.69 )|( 0.62 )|V |44195.3771 | | 0.2804208 | |G4-G5 |00001 00279| +620102 |BY Peg *|213852.1+280545 |EW/KW | 12.9 | 13.6 | |p |45565.518 | | 0.3419372 | | |00001 06286| +620103 |BZ Peg |213942.5+262117 |E/SD | 14.0 | 15.3 | |p |24763.70 | | 1.25797 | | |00193 GSC | +620104 |CC Peg *|213939.8+282349 |E | 12.6 | 13.3 | 12.9 |p |24791.68 | | 0.60563 | | |00193 06286| +620105 |CD Peg |214041.1+210449 |RRAB | 13.6 | 14.7 | |p |24769.65 | | 0.57104 | | |00193 06286| +620106 |CE Peg |214047.0+250915 |E | 13.2 | 14.2 | |p |24789.60 | | 0.64202 | | |00193 06286| +620107 |CF Peg |214111.7+261207 |EW/KW | 14.8 | 15.5 | |p |24766.70 | | 0.413728 | | |00193 GSC | +620108 |CG Peg *|214116.8+244624 |RRAB | 10.64 | 11.58 | |V |39102.396 | | 0.4671382 |17 |A7-F6 |07114 03736| +620109 |CH Peg |214123.1+231039 |RR | 13.2 | 13.8 | |p |24762.70 | | 0.50173 | | |00193 06286| +620110 |CI Peg |214222.5+221150 |RRAB | 13.5 | 15.0 | |p |24745.70 | | 0.71857 | | |00193 06286| +620111 |CK Peg |214237.0+214205 |SR | 12.3 | 13.2 | |p |24810. | | 260. | |M8 |00193 | +620112 |CL Peg |214247.1+253734 |SRA | 14.3 | 16.0 | |p |25450. | | 181.5 | | |00193 | +620113 |CM Peg |214306.7+234427 |RR | 14.8 | 15.8 | |p |24744.70 | | 0.37783 | | |00193 USNO | +620114 |CN Peg |214322.8+265150 |RRAB | 13.8 | 15.2 | |p |24745.70 | | 0.63214 | | |00193 06286| +620115 |CO Peg |214520.4+223148 |M | 13.9 | 16.5 | |p |24800. | | 260. | | |00193 GSC | +620116 |CP Peg |214532.8+261048 |RRAB | 14.6 | 15.8 | |p |24769.65 | | 0.57872 | | |00193 USNO | +620117 |CQ Peg |214611.6+265619 |RRAB | 13.4 | 14.8 | |p |24761.70 | | 0.57202 | | |00193 06286| +620118 |CR Peg |214641.5+263003 |SRA | 14.3 | 15.5 | |p |24825. | | 203.5 | | |00193 | +620119 |CS Peg |214652.6+244315 |RRAB | 12.8 | 14.6 | |p |24763.70 | | 0.56454 | | |00193 2MASS| +620120 |CT Peg |214718.1+253256 |SRA | 12.3 | 14.2 | |p |25150. | | 351.5 | |M7 |00193 06286| +620121 |CU Peg *|214744.6+271525 |EA/SD | 11.9 | 14.0 | |V |45171.396 | | 3.8802376 |11 | |00001 07929| +620122 |CV Peg |214812.8+221436 |RRAB | 12.9 | 14.4 | |p |24744.70 | | 0.56288 | | |00193 06286| +620123 |CW Peg |214827.6+280630 |EA/SD | 11.8 | 16.1 | |p |45934.451 | | 2.372516 |12 | |00001 USNO | +620124 |CX Peg |214931.5+224145 |M | 12.0 |< 15.0 | |V |52784. | | 234. | | |00001 2MASS| +620125 |CY Peg |214947.2+210838 |RRAB | 12.3 | 13.4 | |p |24769.65 | | 0.64795 | | |00193 06286| +620126 |CZ Peg *|215028. +250234:|E | 13.4 | 14.4 | 13.9 |p |24758.70 | | 0.56223 | | |00193 | +620127 |DD Peg |214913.5+255249 |SR: | 11.6 | 12.7 | |p | | | | |M6 |00193 | +620128 |DE Peg |215354.8+270335 |M | 13.3 | 16.1 | |p |25420. | | 360. | | |00193 USNO | +620129 |DF Peg *|215443.4+143328 |EA/DS | 9.1 | 10.9 | 9.2 |p |33505.62 | | 14.6987 |04 *|A2: |00485 08953| +620130 |DG Peg *|220333.9+140031 |M | 10.4 | 14.5 | |V |40449. | | 146.60 | |M4e |00001 00470| +620131 |DH Peg *|221525.6+064921 |RRC | 9.15 | 9.80 | |V |44463.571 | | 0.25551040 |39 |A5.0-F0.5 |09591 06286| +620132 |DI Peg *|233214.7+145809 |EA/SD | 9.38 | 10.48 | 9.59 |V |45196.488 | | 0.7118168 |21 *|F4IV |00001 08953| +620133 |DK Peg *|234133.5+101257 |EA/DM | 10.0 | 10.7 | |p |45530.466 | | 1.6318117 |15 |A0V+A2V |00001 08953| +620134 |DL Peg |234827.0+153830 |M | 9.7 |< 15. | |V |42759. | | 180.4 | |M0 |00001 00002| +620135 |DM Peg *|000007.3+184417 |EA/D: | 10.8 | 11.6 | 11.0 |V |25853.470 | | 2.588991 |12 |A6 |01044 00753| +620136 |DN Peg *|215938.2+060844 |SRD | 10.1 | 11.8 | |V | | | 66.68 | |K |08044 00470| +620137 |DO Peg *|220730.6+061016 |EA/SD | 10.6 | 13.5 | |V |45211.510 | | 2.613897 |15 *|B8 |00001 01045| +620138 |DP Peg |212256.1+220347 |E | 13.3 | 14.2 | |p | | | | | |00193 06286| +620139 |DQ Peg |213717.9+260737 |LB | 13.7 | 14.8 | |p | | | | |M5 |00193 06286| +620140 |DR Peg |213819.0+245518 |LB | 11.0 | 12.5 | |p | | | | |M6 |00193 00470| +620141 |DS Peg | | | | | | | | | | | | |=V0460 Cyg +620142 |DT Peg |214841.2+224231 |LB | 12.7 | 13.9 | |p | | | | |M4-M8 |00193 UCAC2| +620143 |DU Peg |235144.1+294544 |M | 11. |< 15. | |p |29253. | | 161.3 | |M5e |00001 | +620144 |DV Peg *|212707.0+212230 |EW/KE | 11.7 | 12.1 | 12.1 |V |28748.762 | | 0.94624 | |F |00916 | +620145 |DW Peg |213214.2+242827 |LB | 9.56 | 11.5 | |V | | | | |M6e |08079 06928| +620146 |DX Peg |214712.0+235116 |SRA | 8.7 | 9.6 | |V |37555.9 | | 80.66 | |M6 |09593 09593| +620147 |DY Peg *|230851.2+171256 |SXPHE(B) | 9.95 | 10.62 | |V |44502.07044 | | 0.072926297 |32 |A3-F1 |08677 02434| +620148 |DZ Peg *|232007.0+160407 |RRAB | 11.31 | 12.43 | |V |33891.308 | | 0.6073441 |16 |A8 |03506 09608| +620149 |EE Peg *|214001.9+091105 |EA/DM | 6.93 | 7.51 | 7.06 |V |45563.8916 | | 2.62821423 |09 *|A3mV+F5 |09595 02433| +620150 |EF Peg *|211504.1+140349 |UG | 10.7 |< 17. | |p | | | | | |09596 09596| +620151 |EG Peg |212727.0+084127 |M | 11.2 |< 16. | |p |35116. | | 337.9 | |M3 |00001 00470| +620152 |EH Peg *|223402.6+134156 |EA/D: | 11.2 | 11.6 | |p |28408.454 | | 2.374431 |15 |G0 |03338 00470| +620153 |EI Peg |232146.0+123545 |SRA | 9.20 | 10.06 | |V |30928.5 | | 61.15 | |M5III |01049 06928| +620154 |EK Peg |230748.1+291756 |M | 12.7 |< 14.7 | |p | | | | |M5e |06382 06286| +620155 |EL Peg |214919.0+203747 |M | 13. |< 16. | |p |28700. :| | | |M5 |00916 00346| +620156 |EM Peg |213912.4+081803 |SRA | 10.3 | 12.9 | |p |29468. | | 356. | |M5 |04024 00470| +620157 |EN Peg |223305.1+204537 |LB | 12.6 | 13.7 | |p | | | | | |00988 00988| +620158 |EO Peg |231647.9+103557 |LB | 9.6 | 10.5 | |p | | | | |M7 |00797 08953| +620159 |EP Peg |000006.9+201415 |SR | 10.7 | 11.4 | |p |21172. | | 340. : | |M7 |00156 00156| +620160A|EQ PegA*|233152.2+195614 |UV | | 10.38 | |V | | | | |M4Ve |06114 07060| +620160B|EQ PegB*|233152.6+195614 |UV | | 12.58 | |V | | | | |M6Ve |06114 07060| +620161 |ER Peg |230546.8+332907 |EA/SD | 11. | 12. | |p |45526.554 | | 2.274670 | |A2 |00001 02380| +620162 |ES Peg |223318.5+301015 |RRAB | 12.0 | 13.5 | |p |37901.2784 | | 0.53867186 |15 | |03113 00829| +620163 |ET Peg *|224042.3+262302 |RRAB | 12.30 | 13.50 | |V |39005.973 | | 0.489834 |12 |A8-F6 |03506 00829| +620164 |EU Peg *|230125.2+272021 |EA | 12.2 | 12.8 | 12.3 |p |33981.925 | | 0.721114 |23 | |00829 00829| +620165 |EV Peg |214845.9+071219 |LB | 11.5 | 13.0 | |p | | | | |M7 |00797 00470| +620166 |EW Peg |224646.5+252016 |LB | 10.0 | 11.8 | |p | | | | |M6.5 |02609 BD | +620167 |EX Peg |224907.9+245256 |M | 10. | 19. | |p |36770. | | 337.24 |25 : |M10 |00001 02609| +620168 |EY Peg |231519.8+164719 |EA/SD | 12. | 14. | |p |36057.518 | | 0.65678 | | |02394 06286| +620169 |EZ Peg *|231653.4+254310 |NL: | 9.57 |( 0.34 )| |V | | | | |G5Ve |09442 08953| +620170 |FF Peg |233610.3+094858 |M | 9.7 | 14.7 | |V |38659. | | 252.4 | |M5 |00001 00196| +620171 |FG Peg |211946.8+133340 |LB | 11.5 | 12.3 | |p | | | | |M6.5 |04303 BD | +620172 |FH Peg |212135.4+160810 |RRAB | 14.9 | 16.8 | |p |37198.45 | | 0.460264 |10 : | |04390 04390| +620173 |FI Peg |212235.5+135301 |RRAB | 16.2 | 17.3 | |p |37497.434 | | 0.642672 |10 | |04390 04390| +620174 |FK Peg |212632.9+104855 |RR | 16.2 | 16.9 | |p |37250.236 | | | | |04390 04390| +620175 |FL Peg *|212631.8+091703 |EA | 13.5 | 14.3 | 14.0 |p |37137.506 | | 0.474324 |20 :*| |04354 04354| +620176 |FM Peg |212657.0+131655 |M | 12.6 | 17.1 | |p |37160. | | 302. |26 : |Me |04354 04354| +620177 |FN Peg |212749.9+133040 |RRAB | 13.9 | 15.4 | |p |37494.450 | | 0.596290 |10 | |04390 04390| +620178 |FO Peg |212859.7+121949 |RRAB | 15.5 | 17.1 | |p |37233.322 | | 0.50380 |08 : | |04390 04390| +620179 |FP Peg |212910.2+105914 |RRAB | 14.5 | 16.0 | |p |37198.454 | | 0.457549 |10 | |04390 04390| +620180 |FQ Peg |212925.3+115051 |RR | 16.3 | 17.2 | |p |37144.480 | | | | |04390 04390| +620181 |FR Peg |213001.4+131654 |RRAB | 15.2 | 16.8 | |p |37220.253 | | 0.517464 |15 | |04390 04390| +620182 |FS Peg |213020.7+093508 |RRAB | 15.2 | 16.9 | |p |37233.371 | | 0.509724 |15 : | |04390 04390| +620183 |FT Peg |213048.9+125815 |LB | 11.5 | 12.5 | |p | | | | |M7 |04313 00922| +620184 |FU Peg *|213215.8+131312 |RRAB | 15.2 | 16.6 | |p |37165.500 | | 0.525144 | | |00001 04390| +620185 |FV Peg |213305.0+101403 |RRC | 15.3 | 15.9 | |p |37495.47 | | 0.330725 |25 | |04390 04390| +620186 |FW Peg |213251.4+125331 |RRAB | 13.4 | 14.6 | |p |37218.245 | | 0.600440 |10 | |04390 04390| +620187 |FX Peg |213304.3+143259 |RR | 16.4 | 17.1 | |p |37177.407 | | | | |04390 04390| +620188 |FY Peg |213305.3+160858 |LB | 11.5 | 12.5 | |p | | | | |M7 |04306 BD | +620189 |FZ Peg |213449.3+281719 |SRB: | 9.6 | 10.2 | |p | | | | |M5 |04316 08953| +620190 |GG Peg |214350.4+115205 |RRAB | 14.3 | 15.9 | |p |37497.40 | | 0.506463 |10 | |04390 04390| +620191 |GH Peg *|215051.6+151626 |EA/DM | 8.8 |( 0.48 )|( 0.13 )|V |41639.084 | | 2.556136 |10 *|A3 |06935 04319| +620192 |GI Peg |220638.3+245814 |LB | 10.5 | 11.3 | |p | | | | |M6 |04303 08953| +620193 |GK Peg |221337.7+252554 |SR: | 10.5 | 11.5 | |p | | | 70. : | |M6.5 |04320 08953| +620194 |GL Peg |222014.9+261803 |SR | 11.5 | 12.7 | |p | | | 145. : | |M7 |04320 | +620195 |GM Peg |223028.3+130618 |LB | 12.0 | 12.6 | |p | | | | |M8 |04306 | +620196 |GN Peg |224529.9+135902 |LB | 11.5 | 12.1 | |p | | | | |M7 |04306 | +620197 |GO Peg |225501.0+193335 |LB | 8.6 | 9.3 | |p | | | | |M4 |04109 08953| +620198 |GP Peg |230645.3+305522 |EA | 10.2 | 11.0 | |p |41238.328 | | 0.9756179 |14 : |A0 |09598 BD | +620199 |GQ Peg |234911.3+263809 |LB | 12.0 | 12.8 | |p | | | | |M6.5 |04306 | +620200 |GR Peg *|235109.5+270938 |SRA | 10.4 | 11.0 | |V |40746. | | 71.10 | |M8 |09593 09593| +620201 |GS Peg |235451.9+192102 |LB | 11.5 | 12.5 | |p | | | | |M7 |04306 | +620202 |GT Peg *|225153.5+314515 |BY+UV | 11.66 |( 0.07 )| |V |41388.783 | | 1.6410 | |M3.5Ve |06948 06936| +620203 |GU Peg |225218.1+341337 |SRA | 11.6 | 12.4 | |p |29164. | | 221.8 | | |03623 03623| +620204 |GV Peg *|000035.6+263950 |RRAB | 12.96 | 13.55 | |V |44917.530 | | 0.5669237 |17 |F1-F3 |00001 03623| +620205 |GW Peg *|212731.4+113346 |EW/KW | 14.9 | 15.2 | 15.1 |p |37165.498 | | 0.40589 | | |06115 04354| +620206 |GX Peg *|223134.4+293234 |DSCTC | 6.35 |( 0.02 )| |V | | | 0.056 | |A8Vm |05500 BD | +620207 |GY Peg |222523.2+345310 |RRAB | 12.2 | 13.4 | |p |41217.390 | | 0.5034537 |20 | |06087 04321| +620208 |GZ Peg *|230931.5+084038 |SRA | 4.95 | 5.23 | |V |43085.7 | | 92.66 | |M4SIII |09599 BD | +620209 |HH Peg |235121.3+091848 |LB: | 5.74 | 5.90 | |V | | | | |M3III |06994 BD | +620210 |HI Peg | | | | | | | | | | | | |=ER Psc +620211 |HK Peg |210946.8+134418 |SRA | 12.3 | 13.8 | |p |39052. | | 127.3 | | |08065 00294| +620212 |HL Peg |212324.7+231500 |LB | 12.0 | 12.5 | |p | | | | |M6.5 |04295 | +620213 |HM Peg |213741.8+133820 |SRA | 12. | 14. : | |p |39056. | | 159.5 | | |08065 00470| +620214 |HN Peg *|214431.3+144619 |BY | 5.92 | 5.95 | |V |40821.48 | | 24.90 | |G0V |04443 BD | +620215 |HO Peg |215218.2+211623 |LB | 8.3 | 8.7 | |p | | | | |M8III |04109 BD | +620216 |HP Peg *|220425.1+210309 |LB | 8.80 | 8.91 | |V | | | | |C1,2CH(R6p) |02406 BD | +620217 |HQ Peg |221534.1+292730 |LB | 9.5 | 10.4 | |p | | | | |M2e |00975 BD | +620218 |HR Peg *|225435.6+165631 |SRB | 6.12 | 6.49 | |V | | | 50. : | |S5,1(M4) |06059 BD | +620219 |HS Peg |233925.2+321950 |SR | 10.2 | 10.7 | |V | | | | |M8 |04015 04015| +620220 |HT Peg |235237.1+105650 |DSCTC | 5.30 | 5.39 | |V | | | 0.06 | |A4Vn |06985 BD | +620221 |HU Peg |235922.1+134712 |RR | 12.0 | 13.5 | |p | | | | | |02587 02587| +620222 |HV Peg |232740.4+251002 |ACV | 5.96 | 5.98 | |V | | | 6.97 |47 |A0p(Hg-Mn) |07851 BD | +620223 |HW Peg |233328.1+222956 |LB: | 5.32 |( 0.30 )| |V | | | | |M5IIIa |01371 BD | +620224 |HX Peg |234023.7+123742 |NL | 12.90 | 16.62 | |V | | | | |DA+pec(e) |09326 09601| +620225 |HY Peg |215654.6+350519 |EA/SD | 14.5 | 16.2 | |B |42567.496 | | 4.24551 |07 | |00001 UCAC2| +620226 |HZ Peg *|220558.8+353004 |EB/AR: | 16.8 | 17.7 | 17.6 |p |42609.446 | | 3.4104 | | |09521 09521| +620227 |II Peg *|235504.0+283801 |RS | 7.18 | 7.78 | |V |44240. | | 6.7026 | |K2IV-Ve |09602 09603| +620228 |IK Peg *|212626.7+192232 |DSCTC | 6.07 |( 0.03 )| |V | | | 0.044 | |A8m |04147 BD | +620229 |IL Peg |214936.3+362338 |SRA | 14.4 | 15.8 | |B |43050. | | 270. | | |08450 08450| +620230 |IM Peg *|225302.3+165028 |RS | 5.60 | 5.85 | |V |43760.6 | | 24.44 | |K1III-IVp |09610 BD | +620231 |IN Peg |222131.1+121219 |GCAS | 4.85 | 5.05 | |V | | | | | |67171 BD | +620232 |IO Peg |231800.4+131920 |RRAB | 15.0 | 16.5 | |p | | | | | |67172 USNO | +620233 |IP Peg |232308.6+182500 |UG+E | 12.0 | 18.6 | |B | | | | | |67172 67173| +620234 |IQ Peg |000605.7+291913 |RRAB | 15.42 | 17.15 | |B | | | | | |68001 68001| +620235 |IR Peg |213408.2+065058 |ZZO | 16.15 | 16.30 | |B | | | | | |68129 USNO | +620236 |IS Peg |215942.0+262557 |ZZO | 9.8 |( 0.08 )| |V | | | | | |68190 BD | +620237 |IT Peg |220342.5+354347 |M | 14.3 | 17.2 | |B | | | | | |68111 68111| +620238 |IU Peg |220716.2+115316 |M | 9.9 | 15.0 | |V | | | | | |68015 GSC | +620239 |IV Peg |224453.3+180656 |M | 12.0 | 17.8 | |B | | | | | |68191 68191| +620240 |IW Peg |230207.7+103527 |M | 2.4 | 3.4 | |K | | | | | |68015 | +620241 |IX Peg |231112.9+135056 |RRAB | 13.2 | 14.3 | |B | | | | | |68192 68192| +620242 |IY Peg |232207.9+173143 |RRAB | 12.5 | 14.3 | |p | | | | | |68192 68192| +620243 |IZ Peg |232817.1+105437 |M | 1.7 | 6.4 | |L | | | | | |68194 68193| +620244 |KK Peg |234437.1+301008 |RRAB | 17.34 | 18.64 | |B | | | | | |68001 68001| +620245 |KL Peg |234657.1+295102 |RRAB | 16.21 | 17.80 | |B | | | | | |68001 68001| +620246 |KM Peg |235545.1+290952 |RRAB | 17.25 | 18.47 | |B | | | | | |68001 68001| +620247 |KN Peg |235646.6+314023 |RRAB | 17.21 | 18.16 | |B | | | | | |68001 68001| +620248 |KO Peg |000215.3+300437 |RRAB | 15.84 | 16.81 | |B | | | | | |68001 68001| +620249 |KP Peg |212641.1+134118 |EB/KE | 7.05 | 7.26 | |V | | | | | |69220 BD | +620250 |KQ Peg |224226.9+193221 |NL | 15.70 | 16.28 | |V | | | | | |69042 69043| +620251 |KR Peg |230617.5+243210 |ZZA | 15.5 |( 0.06 )| |V | | | | | |69221 69046| +620252 |KS Peg |233756.8+182402 |EB/KE | 5.37 |( 0.12 )| |B | | | | | |69222 BD | +620253 |KT Peg |233930.9+281447 |RS | 7.04 |( 0.03 )| |V | | | | | |69154 BD | +620254 |KU Peg |230529.3+260034 |RS | 7.7 |( 0.08 )| |V | | | | | |70089 BD | +620255 |KV Peg |212203.6+170752 |EW/KW | 11.73 |( 0.20 )| |V | | | | | |71212 71212| +620256 |KW Peg |213910.6+264234 |EA | 12.1 |( 0.31 )| |V | | | | | |71213 71214| +620257 |KX Peg |222232.5+302127 |RS | 7.46 | 7.58 | |V | | | | | |71220 BD | +620258 |KY Peg |214948.3+124224 |SR | 10.7 | 11.2 | |p | | | | | |72022 BD | +620259 |KZ Peg |225411.4+085408 |M | 3.61 |( 1.41 )| |J | | | | | |72036 GSC | +620260 |LL Peg |231912.0+171130 |M | 9.64 | 11.60 | |K | | | | | |72007 | +620261 |LM Peg |233607.7+274112 |SR | 10.6 | 11.3 | |p | | | | | |72022 BD | +620262 |LN Peg |001230.3+143349 |RS | 8.40 | 8.59 | |V | | | | | |73005 BD | +620263 |LO Peg |213101.7+232007 |BY | 9.04 | 9.27 | |V | | | | | |73248 73237| +620264 |LP Peg |213503.0+280519 |EW | 16.70 | 17.28 | |V | | | | | |73003 USNO | +620265 |LQ Peg |213619.1+114055 |NL | 14.0 | 17.5 | |B | | | | | |73249 73111| +620266 |LR Peg |214645.2+280427 |RRAB | 14.76 | 15.46 | |V | | | | | |73003 USNO | +620267 |LS Peg |215157.9+140653 |UG: | 11.6 | 13.0 | |V | | | | | |73250 73111| +620268 |LT Peg |215809.3+280613 |RRAB | 16.29 | 17.76 | |V | | | | | |73003 USNO | +620269 |LU Peg |215850.4+280321 |RRAB | 14.58 | 15.61 | |V | | | | | |73003 USNO | +620270 |LV Peg |220125.5+083625 |M | 6.18 | 6.95 | |J | | | | | |73014 GSC | +620271 |LW Peg |220128.9+280358 |RRAB | 14.96 | 16.01 | |V | | | | | |73003 USNO | +620272 |LX Peg |220318.9+280243 |EW | 13.83 | 14.09 | |V | | | | | |73003 GSC | +620273 |LY Peg |220552.4+120202 |EB | 11.34 | 11.52 | |V | | | | | |73251 73251| +620274 |LZ Peg |221057.1+280759 |RRAB | 15.88 | 16.83 | |V | | | | | |73003 USNO | +620275 |MM Peg |222111.0+280327 |EW | 15.03 | 15.33 | |V | | | | | |73003 USNO | +620276 |MN Peg |223114.7+062249 |M | 11.5 |< 15.5 | |p | | | | | |73252 GSC | +620277 |MO Peg |223654.2+280233 |RRAB | 16.84 | 17.54 | |V | | | | | |73003 USNO | +620278 |MP Peg |224247.2+110053 |M | 6.15 | 7.19 | |J | | | | | |73014 GSC | +620279 |MQ Peg |224810.4+280519 |EW | 13.39 | 13.67 | |V | | | | | |73003 GSC | +620280 |MR Peg |225412.1+223935 |M | 5.71 | 7.28 | |J | | | | | |73014 GSC | +620281 |MS Peg |225848.1+251544 |NL | 13.68 |( 0.10 )| |V | | | | | |73253 73254| +620282 |MT Peg |230305.0+205507 |BY | 7.30 |( 0.02 )| |U | | | | | |73255 BD | +620283 |MU Peg |230556.0+280948 |RRAB | 16.23 | 17.48 | |V | | | | | |73003 USNO | +620284 |MV Peg |230736.3+234657 |M | 6.08 | 7.31 | |J | | | | | |73014 GSC22| +620285 |MW Peg |231025.1+344618 |SR | 11.7 | 12.4 | |p | | | | | |73256 73256| +620286 |MX Peg |232214.9+280533 |EW | 16.23 | 16.71 | |V | | | | | |73003 USNO | +620287 |MY Peg |233244.0+280620 |RRAB | 16.65 | 17.66 | |V | | | | | |73003 USNO | +620288 |MZ Peg |235304.1+280530 |RRAB | 17.08 | 17.89 | |V | | | | | |73003 USNO | +620289 |NN Peg |000400.3+120845 |DSCTC | 7.26 | 7.33 | |Hp| | | | | |HIP HIP | +620290 |NO Peg |001026.8+283910 |SRB | 7.02 | 7.19 | |Hp| | | | | |HIP HIP | +620291 |NP Peg |001038.1+165039 |SRA | 9.61 | 9.81 | |Hp| | | | | |HIP HIP | +620292 |NQ Peg |001215.9+223324 |SRB | 7.58 | 7.84 | |Hp| | | | | |HIP HIP | +620293 |NR Peg |210952.1+160927 |EB: | 8.13 | 8.31 | |Hp| | | | | |HIP HIP | +620294 |NS Peg |211511.9+183709 |LB: | 7.92 | 8.03 | |Hp| | | | | |HIP HIP | +620295 |NT Peg |212335.4+140301 |BE | 6.64 | 6.79 | |Hp| | | | | |HIP HIP | +620296 |NU Peg |212730.6+103404 |LB: | 8.83 | 8.94 | |Hp| | | | | |HIP HIP | +620297 |NV Peg |212859.8+221046 |SRB | 5.66 | 5.84 | |Hp| | | | | |HIP HIP | +620298 |NW Peg |213102.0+112226 |SRB | 8.00 | 8.11 | |Hp| | | | | |HIP HIP | +620299 |NX Peg |213109.2+053445 |LB: | 8.10 | 8.20 | |Hp| | | | | |HIP HIP | +620300 |NY Peg |213509.8+181822 |SRB | 9.50 | 9.73 | |Hp| | | | | |HIP HIP | +620301 |NZ Peg |213901.2+201556 |RR: | 5.83 | 5.86 | |Hp| | | | | |HIP HIP | +620302 |OO Peg |214137.7+143931 |EA | 8.25 | 8.68 | |Hp| | | | | |HIP HIP | +620303 |OP Peg |214248.4+240309 |LB: | 9.50 | 9.65 | |Hp| | | | | |HIP HIP | +620304 |OQ Peg |215303.8+255531 |BE | 5.02 | 5.06 | |Hp| | | | | |HIP HIP | +620305 |OR Peg |215337.7+191030 |LB | 7.40 | 7.68 | |Hp| | | | | |HIP HIP | +620306 |OS Peg |215618.6+073314 |LB: | 9.06 | 9.16 | |Hp| | | | | |HIP HIP | +620307 |OT Peg |215940.1+160218 |BY: | 9.89 | 10.05 | |Hp| | | | | |HIP HIP | +620308 |OU Peg |215949.6+235627 |LB | 6.36 | 6.75 | |Hp| | | | | |HIP HIP | +620309 |OV Peg |220232.1+274329 |LB: | 9.19 | 9.35 | |Hp| | | | | |HIP HIP | +620310 |OW Peg |220418.1+214742 |LB: | 9.08 | 9.23 | |Hp| | | | | |HIP HIP | +620311 |OX Peg |220544.5+295423 |LB: | 7.72 | 7.84 | |Hp| | | | | |HIP HIP | +620312 |OY Peg |220730.0+180003 |LB | 6.26 | 6.47 | |Hp| | | | | |HIP HIP | +620313 |OZ Peg |220929.0+264606 |SRB | 8.83 | 9.07 | |Hp| | | | | |HIP HIP | +620314 |PP Peg |221017.0+321718 |LB | 7.15 | 7.26 | |Hp| | | | | |HIP HIP | +620315 |PQ Peg |221729.8+050839 |LB | 7.24 | 7.42 | |Hp| | | | | |HIP HIP | +620316 |PR Peg |221851.3+040835 |CEP: | 9.15 | 9.25 | |Hp| | | | | |HIP HIP | +620317 |PS Peg |221956.0+165222 |SRB | 8.86 | 9.11 | |Hp| | | | | |HIP HIP | +620318 |PT Peg |222100.1+265607 |SRB | 6.41 | 6.56 | |Hp| | | | | |HIP HIP | +620319 |PU Peg |222233.9+095625 |EB | 8.02 | 8.12 | |Hp| | | | | |HIP HIP | +620320 |PV Peg |222356.4+311542 |LB | 6.55 | 7.42 | |Hp| | | | | |HIP HIP | +620321 |PW Peg |222421.0+050338 |LB: | 8.61 | 8.76 | |Hp| | | | | |HIP HIP | +620322 |PX Peg |222434.4+160901 |LB: | 8.78 | 8.88 | |Hp| | | | | |HIP HIP | +620323 |PY Peg |223036.9+120209 |LB | 8.72 | 8.94 | |Hp| | | | | |HIP HIP | +620324 |PZ Peg |223540.8+142541 |LB: | 9.65 | 9.80 | |Hp| | | | | |HIP HIP | +620325 |QQ Peg *|224021.2+075405 |BY: | 11.31 | 11.88 | |Hp| | | | | |HIP HIP | +620326 |QR Peg |224040.4+264416 |LB: | 7.79 | 7.91 | |Hp| | | | | |HIP HIP | +620327 |QS Peg |224144.9+123428 |LB: | 7.96 | 8.06 | |Hp| | | | | |HIP HIP | +620328 |QT Peg |224149.6+222322 |EA | 7.44 | 7.66 | |Hp| | | | | |HIP HIP | +620329 |QU Peg |224335.3+324919 |LB | 7.32 | 7.42 | |Hp| | | | | |HIP HIP | +620330 |QV Peg |224409.0+273551 |LB: | 7.90 | 8.00 | |Hp| | | | | |HIP HIP | +620331 |QW Peg |224443.5+264151 |LB | 8.49 | 8.68 | |Hp| | | | | |HIP HIP | +620332 |QX Peg |224559.5+284004 |LB: | 9.81 | 9.98 | |Hp| | | | | |HIP HIP | +620333 |QY Peg |224804.0+103421 |LB | 8.63 | 8.77 | |Hp| | | | | |HIP HIP | +620334 |QZ Peg |225203.0+122011 |LB: | 10.05 | 10.21 | |Hp| | | | | |HIP HIP | +620335 |V0335 Peg |225236.2+101313 |E: | 7.36 | 7.39 | |Hp| | | | | |HIP HIP | +620336 |V0336 Peg |225440.4+242314 |LB | 7.32 | 7.47 | |Hp| | | | | |HIP HIP | +620337 |V0337 Peg |225700.2+142508 |LB | 7.72 | 7.86 | |Hp| | | | | |HIP HIP | +620338 |V0338 Peg |225806.4+213047 |LB: | 7.23 | 7.32 | |Hp| | | | | |HIP HIP | +620339 |V0339 Peg |230002.5+290016 |LB: | 9.31 | 9.41 | |Hp| | | | | |HIP HIP | +620340 |V0340 Peg |230132.7+323647 |LB | 7.12 | 7.43 | |Hp| | | | | |HIP HIP | +620341 |V0341 Peg *|230529.0+243911 |ELL | 7.12 | 7.15 | |Hp| | | | | |HIP HIP | +620342 |V0342 Peg *|230728.7+210803 |ELL: | 6.00 | 6.06 | |Hp| | | | | |HIP HIP | +620343 |V0343 Peg |230727.7+324931 |EA: | 6.17 | 6.39 | |Hp| | | | | |HIP HIP | +620344 |V0344 Peg |230946.9+154959 |LB: | 9.63 | 9.78 | |Hp| | | | | |HIP HIP | +620345 |V0345 Peg |231008.9+334604 |LB | 6.22 | 6.59 | |Hp| | | | | |HIP HIP | +620346 |V0346 Peg |231305.0+085748 |LB | 6.65 | 6.78 | |Hp| | | | | |HIP HIP | +620347 |V0347 Peg |231405.7+100939 |SRD | 9.46 | 9.67 | |Hp| | | | | |HIP HIP | +620348 |V0348 Peg |231712.9+314326 |LB: | 7.96 | 8.09 | |Hp| | | | | |HIP HIP | +620349 |V0349 Peg |231719.2+295224 |SRB: | 7.22 | 7.32 | |Hp| | | | | |HIP HIP | +620350 |V0350 Peg |232430.9+304244 |DSCTC | 7.27 | 7.32 | |Hp| | | | | |HIP HIP | +620351 |V0351 Peg |232525.2+154119 |RRC | 8.00 | 8.31 | |Hp| | | | | |HIP HIP | +620352 |V0352 Peg |233001.9+213258 |ACV: | 7.08 | 7.12 | |Hp| | | | | |HIP HIP | +620353 |V0353 Peg |233132.3+334154 |EB | 7.49 | 7.56 | |Hp| | | | | |HIP HIP | +620354 |V0354 Peg |233143.0+282413 |ACV | 6.40 | 6.44 | |Hp| | | | | |HIP HIP | +620355 |V0355 Peg |233539.4+225942 |SRD | 8.98 | 9.36 | |Hp| | | | | |HIP HIP | +620356 |V0356 Peg |234511.1+314122 |LB: | 9.25 | 9.39 | |Hp| | | | | |HIP HIP | +620357 |V0357 Peg |234535.1+252819 |EW | 9.01 | 9.49 | |Hp| | | | | |HIP HIP | +620358 |V0358 Peg |234618.9+245121 |SRB | 10.33 | 10.69 | |Hp| | | | | |HIP HIP | +620359 |V0359 Peg |234623.5+232700 |SRB | 7.94 | 8.09 | |Hp| | | | | |HIP HIP | +620360 |V0360 Peg |234830.4+303139 |RV: | 8.05 | 8.43 | |Hp| | | | | |HIP HIP | +620361 |V0361 Peg |235114.4+160827 |LB | 8.93 | 9.12 | |Hp| | | | | |HIP HIP | +620362 |V0362 Peg |235122.3+231748 |LB: | 8.93 | 9.03 | |Hp| | | | | |HIP HIP | +620363 |V0363 Peg |235554.7+151349 |SRB | 6.37 | 6.51 | |Hp| | | | | |HIP HIP | +620364 |V0364 Peg |211229.6+123205 |UG | 15.0 |< 19.0 | |R | | | | | |75206 GSC22| +620365 |V0365 Peg |213926.4+230138 |EB | 10.12 | 10.59 | |V | | | | | |75207 GSC | +620366 |V0366 Peg |224053.9+262243 |DSCT: | 15.18 | 15.36 | |V | | | | | |75119 75119| +620367 |V0367 Peg |224500.6+165515 |UG | 15.8 |< 17.6 | |B | | | | | |75041 75041| +620368 |V0368 Peg |225843.5+110912 |UGSU | 13.3 |< 17.7 | |B | | | | | |75204 75041| +620369 |V0369 Peg |230341.3+171747 |UGSU | 15.8 |< 18.0 | |B | | | | | |75001 75001| +620370 |V0370 Peg |235439.1+282254 |UG: | 16.3 |< 21. | |R | | | | | |75208 75303| +620371 |V0371 Peg |213654.3+134032 |SR: | 12.1 | 13.6 | |V | | | | | |76012 GSC | +620372 |V0372 Peg |214704.8+171139 |GDOR | 6.53 |( 0.07 )| |B | | | | | |76237 DM | +620373 |V0373 Peg |215008.7+171709 |UV: | 5.17 | 5.53 | |V | | | | | |76238 DM | +620374 |V0374 Peg |220113.1+281825 |UV | 3.5 | 16.0 | |U | | | | | |76239 76274| +620375 |V0375 Peg |220140.7+103718 |EA: | 12.5 | 13.5 | |* | | | | | |76272 UCAC2| +620376 |V0376 Peg |220310.8+185304 |EP | 7.65 |( 0.02 )| |V | | | | | |76241 DM | +620377 |V0377 Peg |220532.5+173038 |DSCTC | 7.95 |( 0.03 )| |B | | | | | |76242 DM | +620378 |V0378 Peg |234004.3+301748 |NL | 14.4 |( 0.34 )| |B | | | | | |76251 76095| +620379 |V0379 Peg |235351.0+230920 |ZAND: | 13.9 |< 16.2 | |* | | | | | |76254 76005| +620380 |V0380 Peg |212527.6+222542 |SRA | 11.9 | 13.4 | |V | | | | | |77144 77144| +620381 |V0381 Peg |212830.2+104522 |EW | 12.65 | 13.26 | |V | | | | | |77198 UCAC2| +620382 |V0382 Peg |212955.8+231306 |LB | 12.0 | 13.0 | |V | | | | | |77144 77144| +620383 |V0383 Peg |213117.6+264406 |M | 11.1 |< 15.0 | |V | | | | | |77144 77144| +620384 |V0384 Peg |215154.3+090121 |RPHS | 16.5 |( 0.02 )| |B | | | | | |77071 GSC22| +620385 |V0385 Peg |215155.4+291714 |LB | 11.9 | 13.5 | |V | | | | | |77144 77144| +620386 |V0386 Peg |215258.6+334830 |SR | 11.6 | 13.1 | |V | | | | | |77144 77144| +620387 |V0387 Peg |215418.7+091144 |RPHS | 16.5 |( 0.02 )| |B | | | | | |77009 77121| +620388 |V0388 Peg |215732.4+085516 |XM | 16.7 |( 2.10 )| |R | | | | | |77202 77202| +620389 |V0389 Peg |215940.7+293959 |SR | 12.0 | 13.5 | |V | | | | | |77144 77144| +620390 |V0390 Peg |220215.1+284550 |SR | 9.64 | 9.71 | |V | | | | | |77053 DM | +620391 |V0391 Peg |220412.2+262508 |RPHS | 14.3 |( 0.02 )| |B | | | | | |77071 GSC | +620392 |V0392 Peg |220709.9+282837 |M | 12.0 | 16.1 | |V | | | | | |77144 77144| +620393 |V0393 Peg |224845.2+122005 |ZZB | 16.73 |( 0.18 * )| |y | | | | | |77204 77121| +620394 |V0394 Peg |225646.1+125250 |ZZA | 15.6 |( 0.07 * )| |V | | | | | |77025 USNO | +620395 |V0395 Peg |232023.2+164723 |RS | 10.97 | 11.11 | |V | | | | | |77119 DM | +620396 |V0396 Peg |233232.6+103320 |EW | 12.12 | 12.43 | |* | | | | | |77212 UCAC2| +620397 |V0397 Peg |210853.7+153711 |EW | 15.03 | 15.97 | |* |52506.488 | | 0.29516 | | |78060 USNO | +620398 |V0398 Peg |210858.0+155655 |RRAB | 13.26 | 14.20 | |* |52500.480 | | 0.55259 |15 | |78063 GSC | +620399 |V0399 Peg |212544.1+160211 |M | 11.1 |< 13.0 | |* |52952 | | 223. | | |78319 2MASS| +620400 |V0400 Peg |213447.0+195611 |LB: | 6.90 |( 0.02 )| |V | | | | |K0 |78018 DM | +620401 |V0401 Peg |215005.4+315053 |BY: | 7.34 |( 0.01 )| |V | | | 6.985 : | |K0 |78018 DM | +620402 |V0402 Peg |215445.0+321943 |BY | 7.73 |( 0.01 )| |V | | | 4.51 : | |K0V |78018 DM | +620403 |V0403 Peg |223950.8+040658 |BY | 8.48 |( 0.03 )| |V | | | 18.05 | |K2V |78018 DM | +620404 |V0404 Peg |225630.9+335512 |EW | 10.47 | 10.77 | |V |52555.49881 | | 0.419195 | | |78305 GSC | +620405 |V0405 Peg *|230949.1+213517 |NL: | 15.6 |( 0.3 )| |V | | | | |M3 |78039 78039| +620406 |V0406 Peg |233525.6+310941 |BY | 7.90 |( 0.01 )| |V | | | 12.525 | |G5V |78018 DM | +620407 |V0407 Peg *|233655.4+154806 |EW | 9.28 | 9.75 | 9.69 |V |52558.1703 | | 0.636889 | | |78307 DM | +620408 |V0408 Peg |234004.2+123801 |RRAB | 14.8 | 16.0 | |V |52904.868 | | 0.50545 |12 | |78312 78312| +620409 |V0409 Peg |234953.5+130613 |ZZA | 15.9 |( 0.03 * )| |B | | | 0.012 | |dA |78314 78315| +620410 |V0410 Peg |222223.4+342451 |E: | 11.0 | | |p | | | | |K0 |00458 BD | +620411 |V0411 Peg |213040.7+250800 |EW/KW | 14.0 | 14.8 | |p |24769.66 | | 0.377052 | | |00193 06286| +620412 |V0412 Peg |212928.2+071545 |SRB | 12.2 |< 13.2 | |V | | | 127. | | |79100 GSC | +620413 |V0413 Peg |214510.5+264319 |EB: | 13.5 | 14.2 | 13.8 |* |51432.907 | | 0.8729 | | |79207 GSC | +620414 |V0414 Peg |222118.4+054342 |EA | 8.49 | 8.60 | 8.60 |V |48367.865 | | 3.69948 |07 |F8 |79009 DM | +620415 |V0415 Peg *|224158.8+151316 |EA | 8.15 | 8.25 | 8.24 : |V |48223.160 | | 11.4456 |05 : |F8 |79001 DM | +620416 |V0416 Peg *|230105.9+264653 |EA: | 8.13 | 8.19 | 8.19 |V |48560.500 | | 1.424797 |05 : |A8V |79018 DM | +620417 |V0417 Peg |232114.1+092607 |SRB | 8.6 | 9.2 | |V | | | 50. | |M4 |79064 DM | +620418 |V0418 Peg *|233537.5+143537 |GDOR | 7.52 | 7.56 | |Hp| | | 1.1417 | |A8:Vm+F3:V |79037 DM | +620419 |V0419 Peg |235005.0+175344 |RRAB | 13.9 | 15.1 | |* |51458.130 | | 0.60373 |13 | |79025 GSC | +620420 |V0420 Peg |000018.2+193256 |RRAB | 14.68 | 16.03 | |R |52550.361 | | 0.54540 |10 : | |80005 80005| NL80_1 +620421 |V0421 Peg *|000702.0+225040 |EA | 8.27 | 8.73 | 8.63 |V |54759.62 | | 3.0875658 |06 |F2III/IV |80001 HIP | NL80_1 +620422 |V0422 Peg |001429.6+133109 |RV: | 11.7 | 12.9 | |V |53728.55 | | 19.80 | | |80022 GSC | NL80_1 +620423 |V0423 Peg |211024.9+144846 |EW | 15.1 | 15.7 | 15.6 |* |52501.589 | | 0.2876145 | | |80164 80164| NL80_3 +620424 |V0424 Peg |211036.8+122353 |SR | 13.0 | 13.7 | |* | | | 105. : | | |80001 2MASS| NL80_3 +620425 |V0425 Peg |211044.8+162324 |BY | 12.0 | 12.5 | |V | | | 10.5750 | | |80021 GSC | NL80_3 +620426 |V0426 Peg |211044.9+153542 |EW | 14.07 | 14.35 | 14.32 : |CV|55358.902 | | 0.3616414 | | |80001 80164| NL80_3 +620427 |V0427 Peg |211436.7+195256 |BY | 11.87 |( 0.06 *)| |V | | | 1.1520 | | |80021 GSC | NL80_3 +620428 |V0428 Peg |211632.7+194213 |RS | 10.3 | 10.6 | |V | | | 15.2484 | | |80001 DM | NL80_3 +620429 |V0429 Peg *|212034.2+183717 |RRAB | 11.3 | 12.4 | |V |54704.704 | | 0.56245 |25 | |80001 GSC | NL80_3 +620430 |V0430 Peg |212341.7+152148 |BY | 10.37 |( 0.06 *)| |V | | | 6.6225 | | |80021 GSC | NL80_3 +620431 |V0431 Peg |212812.9+075227 |BY | 12.6 | 13.3 | |V | | | 29.7822 : | | |80021 GSC | NL80_3 +620432 |V0432 Peg |212813.7+115745 |EA | 11.9 | 12.5 | 12.5 |V |55124.572 | | 1.4796702 |15 | |80001 80574| NL80_3 +620433 |V0433 Peg |212846.9+232013 |BY | 11.10 | 11.21 | |V | | | 4.5407 | |K4 |80021 GSC | NL80_3 +620434 |V0434 Peg |212934.8+093530 |BY | 11.71 |( 0.06 *)| |V | | | 2.7362 | | |80021 GSC | NL80_3 +620435 |V0435 Peg |212948.0+152833 |EW | 13.05 | 13.40 | 13.35 |CV|53885.868 | | 0.312999 | | |80001 GSC | NL80_3 +620436 |V0436 Peg |213001.5+152646 |EW | 13.35 | 13.57 | 13.55 |CV|54588.98 | | 0.4067302 | | |80001 80367| NL80_3 +620437 |V0437 Peg |213004.1+120429 |BY | 15.23 |( 0.6 *)| |V | | | 0.5837 : | | |80021 GSC | NL80_3 +620438 |V0438 Peg |213017.5+184357 |RRAB | 12.8 | 13.6 | |V |54700.665 | | 0.852720 |17 | |80001 GSC | NL80_3 +620439 |V0439 Peg |213040.6+220143 |BY | 10.2 | 10.4 | |* | | | 24.1350 | | |80067 80067| NL80_3 +620440 |V0440 Peg |213048.1+173848 |RRAB | 13.57 | 14.70 | |* |53481.947 | | 0.612934 |12 | |80001 80544| NL80_3 +620441 |V0441 Peg |213116.7+225357 |BY | 10.05 |( 0.07 *)| |V | | | 1.1268 | | |80021 DM | NL80_3 +620442 |V0442 Peg |213222.0+243342 |BY | 11.99 |( 0.07 : *)| |V | | | 4.7358 | |M3.5 |80021 GSC | NL80_3 +620443 |V0443 Peg *|213536.0+033436 |RRAB | 14.19 | 15.23 | |* |51364.81 | | 0.57609 | | |80026 GSC | NL80_3 +620444 |V0444 Peg *|213701.8+071446 |UGSU | 13.67 | 19.4 | |B | | | | | |80579 USNO | NL80_3 +620445 |V0445 Peg |213750.2+264646 |EB: | 14.8 |( 0.5 *)|( 0.4 *)|R |53208.3245 | | 0.40462 | | |80548 80548| NL80_3 +620446 |V0446 Peg |213822.3+263739 |EW | 15.6 |( 0.8 *)|( 0.8 *)|R |53208.1840 | | 0.30604 | | |80548 80548| NL80_3 +620447 |V0447 Peg |213830.9+272209 |SRB | 10.4 | 10.9 | |* | | | 33. | | |80100 GSC | NL80_3 +620448 |V0448 Peg |213927.6+271557 |LB | 9.74 | 10.10 | |V | | | | |M2III |80057 DM | NL80_3 +620449 |V0449 Peg |213943.1+282239 |EW | 14.6 |( 0.45 *)|( 0.40 *)|R |53233.548 | | 0.352655 | | |80087 80087| NL80_3 +620450 |V0450 Peg |213943.4+263446 |EA | 14.0 |( 0.5 *)|( 0.25 *)|R |53208.3465 | | 0.55623 |11 | |80548 80548| NL80_3 +620451 |V0451 Peg |214112.7+112120 |RRAB | 13.79 | 14.90 | |CV|54348.780 | | 0.5663514 |13 | |80001 GSC | NL80_3 +620452 |V0452 Peg |214306.4+080332 |RRAB | 13.53 | 14.40 | |CV|55059.733 | | 0.6556376 |15 | |80001 USNO | NL80_3 +620453 |V0453 Peg |214453.2+042143 |RRAB | 12.45 | 13.64 | |CV|53904.88 | | 0.5869586 |14 | |80001 GSC | NL80_3 +620454 |V0454 Peg |214537.4+271111 |BY | 11.30 |( 0.07 *)| |V | | | 1.3729 | | |80021 GSC | NL80_3 +620455 |V0455 Peg |214744.3+192908 |DSCTC | 10.36 | 10.40 | |* | | | 0.13683 : | | |80626 DM | NL80_3 +620456 |V0456 Peg |214809.4+191013 |BY | 10.64 |( 0.06 *)| |V | | | 1.1598 | | |80021 GSC | NL80_3 +620457 |V0457 Peg |214827.4+223702 |DSCT | 12.5 | 12.7 | |V | | | 0.090258 |35 | |80002 GSC | NL80_3 +620458 |V0458 Peg |214900.2+121600 |EA | 12.55 | 13.7 | 12.65 |V |55144.653 | | 1.478077 |10 | |80001 GSC | NL80_3 +620459 |V0459 Peg |214956.1+205843 |EW | 13.65 | 14.32 | 14.18 |CV|54391.533 | | 0.295664 | | |80626 GSC | NL80_3 +620460 |V0460 Peg *|215008.2+192526 |ELL+DSCTC | 7.40 | 7.49 | |B | | | 1.4708 | |A8III+F7V: |80583 HIP | NL80_3 +620461 |V0461 Peg |215023.7+174622 |EA: | 13.1 | 13.6 | 13.5 |V |54700.699 | | 1.14228 : | | |80626 GSC | NL80_3 +620462 |V0462 Peg |215025.4+145106 |EB | 12.05 | 12.50 | 12.35 |V |54303.748 | | 0.878990 | | |80626 GSC | NL80_3 +620463 |V0463 Peg |215025.6+174343 |EW | 11.60 | 12.15 | 12.05 |V |53336.523 | | 0.3305685 | | |80626 GSC | NL80_3 +620464 |V0464 Peg |215103.1+351046 |EW | 12.35 | 12.9 | 12.8 |* |51426.657 | | 0.890893 | | |80580 80580| NL80_3 +620465 |V0465 Peg |215152.3+174443 |DSCT | 13.4 | 13.9 | |V |54796.527 | | 0.1077213 | | |80626 USNO | NL80_3 +620466 |V0466 Peg |215243.7+214453 |EA: | 8.54 | 8.62 | 8.57 |V |53162.88 | | 3.05174 : | |F2 |80626 DM | NL80_3 +620467 |V0467 Peg |215247.7+181734 |EW | 9.43 | 9.52 | 9.51 |V |55012.8689 | | 0.312817 | |F2 |80626 DM | NL80_3 +620468 |V0468 Peg |215312.0+222338 |EA | 12.50 | 13.0 | 12.60 |* |51353.799 | | 1.62394 |11 | |80626 GSC | NL80_3 +620469 |V0469 Peg |215321.2+223711 |SR | 11.5 | 11.8 | |V | | | 43.5 | | |80626 GSC | NL80_3 +620470 |V0470 Peg |215323.7+173020 |BY | 13.00 |( 0.10 *)| |V | | | 5.2761 | |K3 |80021 GSC | NL80_3 +620471 |V0471 Peg |215345.3+183159 |EA | 11.18 | 11.33 | 11.31 |* |51520.702 | | 0.9382 |10 | |80626 GSC | NL80_3 +620472 |V0472 Peg |215406.8+342837 |BY | 10.5 | 10.8 | |* | | | 37.0918 | | |80067 80067| NL80_3 +620473 |V0473 Peg *|215429.9+190352 |EW | 12.7 | 13.3 | 13.2 |V |53621.588 | | 0.59057 | | |80626 GSC | NL80_3 +620474 |V0474 Peg |215430.1+355146 |EW | 14.6 |( 0.18 )|( 0.17 )|R |52543.250 | | 0.442868 | | |80525 80525| NL80_3 +620475 |V0475 Peg |215433.5+143205 |DSCTC | 9.21 |( 0.03 )| |V | | | 0.048622 | |A4/5V |80585 HIP | NL80_3 +620476 |V0476 Peg |215433.6+355018 |UGSU: | 14.0 | 18.1 | |B | | | | | |80126 80126| NL80_3 +620477 |V0477 Peg |215501.3+202026 |EW | 11.65 | 11.75 | 11.75 |V |54368.5373 | | 0.274751 | | |80002 GSC | NL80_3 +620478 |V0478 Peg |215525.4+193717 |EA | 9.8 | 10.5 | 9.9 |V |53906.803 | | 1.285180 |12 |A2 |80627 DM | NL80_3 +620479 |V0479 Peg *|215626.5+153441 |RRAB | 12.1 | 13.2 | |V |54799.523 | | 0.560112 |15 | |80001 GSC | NL80_3 +620480 |V0480 Peg |215642.1+220312 |EW | 12.9 | 13.3 | 13.3 |V |54315.6874 | | 0.3735416 | | |80626 GSC | NL80_3 +620481 |V0481 Peg |215711.2+224011 |EW | 9.55 | 9.95 | 9.90 |V |53330.5239 | | 0.422023 | | |80001 DM | NL80_3 +620482 |V0482 Peg |215832.7+214925 |DSCT | 12.33 | 12.54 | |V |53338.5609 | | 0.080784 | | |80002 GSC | NL80_3 +620483 |V0483 Peg |215905.4+174432 |EW | 13.00 | 13.26 | 13.22 |CV|53989.875 | | 0.395357 | | |80626 GSC | NL80_3 +620484 |V0484 Peg |215929.0+145817 |EW | 11.37 | 11.52 | 11.51 |V |54707.648 | | 0.412371 | | |80626 GSC | NL80_3 +620485 |V0485 Peg |220014.2+230501 |EW | 12.85 | 13.45 | 13.30 |CV|53642.662 | | 0.298323 | | |80626 GSC | NL80_3 +620486 |V0486 Peg |220036.1+161501 |EW | 13.1 | 13.5 | 13.4 |V |54431.520 | | 0.459624 | | |80626 GSC | NL80_3 +620487 |V0487 Peg |220041.6+271514 |BY | 11.37 |( 0.06 *)| |V | | | 0.5235 | |K |80021 GSC | NL80_3 +620488 |V0488 Peg |220142.5+172845 |EB | 12.92 | 13.38 | 12.90 |CV|55155.585 | | 1.794670 | | |80626 GSC | NL80_3 +620489 |V0489 Peg |220149.3+175942 |EW | 11.77 | 12.08 | 12.0 |V |53521.877 | | 0.415211 | | |80048 GSC | NL80_3 +620490 |V0490 Peg |220214.0+152014 |BY | 9.74 |( 0.04 *)| |V | | | 1.4751 | |K5 |80021 DM | NL80_3 +620491 |V0491 Peg |220237.1+034216 |RRAB | 12.5 | 13.5 | |V |54672.793 | | 0.549584 |15 | |80001 GSC | NL80_3 +620492 |V0492 Peg *|220237.7+185403 |GDOR+DSCTC| 10.6 |( 0.02 )| |V | | | 0.56088 | |F5 |80589 GSC | NL80_3 +620493 |V0493 Peg |220304.0+164419 |RRAB | 12.80 | 13.79 | |CV|56163.679 | | 0.621103 |18 | |80001 GSC | NL80_3 +620494 |V0494 Peg |220310.9+223207 |EA | 11.95 | 12.50 | 12.10 |V |52757.80 | | 0.714821 |20 | |80002 GSC | NL80_3 +620495 |V0495 Peg |220328.0+181923 |EB | 11.24 | 11.41 | 11.33 |V |54647.817 | | 0.475533 | | |80626 GSC | NL80_3 +620496 |V0496 Peg |220330.2+193913 |EA | 13.11 | 13.83 | 13.60 : |CV|55069.716 | | 1.136793 |09 | |80626 GSC | NL80_3 +620497 |V0497 Peg |220339.8+035707 |RRAB | 13.66 | 14.68 | |CV|56183.71 | | 0.616159 |13 | |80001 GSC | NL80_3 +620498 |V0498 Peg |220451.5+144619 |EB | 12.6 | 13.3 | 13.1 |V |54796.544 | | 0.65948 | | |80001 GSC | NL80_3 +620499 |V0499 Peg *|220542.0+195508 |EW | 11.8 | 12.0 | 12.0 |V |55482.621 | | 0.303621 | | |80001 GSC | NL80_3 +620500 |V0500 Peg |220600.1+193550 |EB | 11.45 | 12.6 | 11.65 |V |53621.5882 | | 0.579880 | | |80002 GSC | NL80_3 +620501 |V0501 Peg |220601.0+171038 |BY | 10.8 | 11.0 | |* | | | 23.8171 | | |80067 80067| NL80_3 +620502 |V0502 Peg |220753.8+224359 |EW | 12.50 | 13.00 | 12.95 |V |54783.541 | | 0.469433 | | |80002 GSC | NL80_3 +620503 |V0503 Peg |220825.9+183457 |EW | 13.16 | 13.50 | 13.48 |CV|54393.606 | | 0.385135 | | |80626 GSC | NL80_3 +620504 |V0504 Peg |220827.1+183525 |EW: | 11.12 | 11.17 | 11.16 : |* |51505.633 | | 0.38510 | | |80001 GSC | NL80_3 +620505 |V0505 Peg |220919.1+194358 |RRAB | 12.60 | 13.79 | |CV|55091.70 | | 0.4348034 |11 | |80001 GSC | NL80_3 +620506 |V0506 Peg |221217.2+151146 |EW | 11.85 | 12.15 | 12.05 |V |53602.806 | | 0.436738 | | |80001 GSC | NL80_3 +620507 |V0507 Peg |221247.5+182410 |EW | 13.08 | 13.36 | 13.34 |CV|54229.9623 | | 0.265106 | | |80626 GSC | NL80_3 +620508 |V0508 Peg |221251.8+172016 |EW | 12.27 | 12.68 | 12.64 |V |53338.560 | | 0.960564 | | |80011 GSC | NL80_3 +620509 |V0509 Peg |221336.6+264646 |RRAB | 12.0 | 13.3 | |V |53270.568 | | 0.364875 |17 | |80001 GSC | NL80_3 +620510 |V0510 Peg *|221338.6+185410 |DSCTC | 8.27 |( 0.02 b)| |B | | | 0.0441427 | |A9IV |80092 HIP | NL80_3 +620511 |V0511 Peg |221347.0+182103 |EW | 13.16 | 13.86 | 13.71 |CV|55501.670 | | 0.303093 | | |80626 GSC | NL80_3 +620512 |V0512 Peg |221538.7+221934 |EW | 13.39 | 13.88 | 13.86 |CV|54583.9564 | | 0.343122 | | |80626 GSC | NL80_3 +620513 |V0513 Peg *|221631.2+290020 |UG | 12.3 | 16.5 | |V | | | ( 71. ) | |pec(UG)+M3 |80167 80167| NL80_3 +620514 |V0514 Peg |221652.2+222934 |EB | 13.0 | 14.2 | 13.7 |V |53912.803 | | 0.346453 | | |80596 GSC | NL80_3 +620515 |V0515 Peg |221734.8+153133 |DSCTC | 11.24 | 11.33 | |V | | | 0.096321 | | |80626 GSC | NL80_3 +620516 |V0516 Peg |221740.0+171017 |EB | 12.77 | 13.15 | 13.04 |* |51415.893 | | 0.677572 | | |80626 GSC | NL80_3 +620517 |V0517 Peg *|221822.5+220810 |RRAB | 12.9 | 13.9 | |V |54062.599 | | 0.569480 |17 | |80001 GSC | NL80_3 +620518 |V0518 Peg |221844.1+142130 |BY | 13.13 |( 0.21 *)| |V | | | 4.7004 | | |80021 GSC | NL80_3 +620519 |V0519 Peg |221923.7+033404 |BY | 11.8 | 12.0 | |* | | | 8.05823 | | |80067 80067| NL80_3 +620520 |V0520 Peg |222054.4+161835 |EW | 12.9 | 13.4 | 13.3 |V |52757.1 | | 0.585666 | | |80002 GSC | NL80_3 +620521 |V0521 Peg *|222144.8+184008 |UGSU | 12.0 | 17.6 | |* | | | | |pec(UG)+M5 |80592 80592| NL80_3 +620522 |V0522 Peg |222202.9+084924 |RRAB | 13.77 | 14.66 | |CV|53989.778 | | 0.6088716 |16 | |80001 GSC | NL80_3 +620523 |V0523 Peg |222228.8+292212 |EW | 10.26 | 10.38 | 10.37 |* |51352.7603 | | 0.27793 | | |80001 GSC | NL80_3 +620524 |V0524 Peg |222341.4+040614 |RRAB | 12.86 | 13.91 | |CV|53648.696 | | 0.5176569 |15 | |80001 GSC | NL80_3 +620525 |V0525 Peg |222528.1+200911 |RRAB | 12.94 | 13.98 | |CV|55693.964 | | 0.6426329 |15 | |80001 GSC | NL80_3 +620526 |V0526 Peg |222536.8+350745 |RRAB | 16.55 | 17.23 | |CV|54040.663 | | 0.6278978 |16 | |80001 80593| NL80_3 +620527 |V0527 Peg |222558.2+210842 |BY | 13.23 |( 0.19 *)| |V | | | 5.0987 | | |80021 GSC | NL80_3 +620528 |V0528 Peg |222604.5+345906 |EW | 16.15 | 16.35 | 16.25 |* |54333.747 | | 0.31875 | | |80593 80593| NL80_3 +620529 |V0529 Peg |222614.4+213210 |BY | 9.94 |( 0.03 *)| |V | | | 2.8894 | |K0 |80021 GSC | NL80_3 +620530 |V0530 Peg |222619.3+260338 |SR | 11.8 | 14.3 | |V | | | 324. | |N |80001 GSC | NL80_3 +620531 |V0531 Peg |222626.6+350025 |EW | 16.19 | 16.34 | 16.3 |* |54340.720 | | 0.27810 | | |80593 80593| NL80_3 +620532 |V0532 Peg |222804.0+183607 |BY: | 9.97 |( 0.03 *)| |V | | | 0.3232 | |F8 |80021 DM | NL80_3 +620533 |V0533 Peg *|222820.7+173959 |BY | 12.02 |( 0.08 *)| |V | | | 2.3142 | | |80021 GSC | NL80_3 +620534 |V0534 Peg |223328.4+163901 |EA | 9.41 | 9.56 | |V |52933.640 | | 1.01814 |13 |F8 |80011 GSC | NL80_3 +620535 |V0535 Peg |223616.8+331857 |EW | 10.55 | 11.05 | 10.94 |* |51460.5699 | | 0.3230 | | |80021 GSC | NL80_3 +620536 |V0536 Peg |223954.2+132614 |DSCT | 12.6 | 13.2 | |V |54784.5332 | | 0.0645804 | | |80001 GSC | NL80_3 +620537 |V0537 Peg *|224340.7+305520 |UG | 13.0 | 16.5 | |V | | | ( 18. ) | | |80595 GSC | NL80_3 +620538 |V0538 Peg |224355.2+293648 |EA: | 12.54 |( 0.11 *)| |V | | | 0.4443 | | |80001 GSC | NL80_3 +620539 |V0539 Peg |224410.0+144639 |EA | 12.00 | 13.3 | 12.1 |V |52910.6924 | | 1.242973 |15 | |80001 GSC | NL80_3 +620540 |V0540 Peg |224446.1+302934 |BY | 10.40 |( 0.03 : *)| |V | | | 3.5533 | | |80021 DM | NL80_3 +620541 |V0541 Peg |224631.9+351136 |BY | 11.5 | 11.6 | |* | | | 4.139 | | |80043 80043| NL80_3 +620542 |V0542 Peg |224705.5+265255 |RS | 11.13 | 11.45 | |V | | | 2.22033 | | |80060 80060| NL80_3 +620543 |V0543 Peg |224722.7+231317 |BY | 11.24 | 11.64 | |V | | | 5.541 | | |80034 GSC | NL80_3 +620544 |V0544 Peg |224739.5+151743 |RRAB | 13.27 | 14.30 | |CV|53711.629 | | 0.5256621 |12 | |80001 GSC | NL80_3 +620545 |V0545 Peg |224927.5+305443 |EB | 12.9 | 13.7 | 13.2 |* |51444.668 | | 0.67815 | | |80085 80085| NL80_3 +620546 |V0546 Peg |224952.0+305057 |EB | 12.70 | 13.38 | 13.31 |CV|54060.610 | | 0.650207 | | |80001 GSC | NL80_3 +620547 |V0547 Peg |225015.5+042842 |RRC | 13.2 | 13.8 | |V |54354.75 | | 0.357751 |36 | |80001 GSC | NL80_3 +620548 |V0548 Peg |225134.2+345753 |EW | 12.1 | 12.35 | 12.35 |* |51433.548 | | 0.38162 | | |80085 80085| NL80_3 +620549 |V0549 Peg |225155.5+353915 |BY | 11.03 |( 0.05 *)| |V | | | 5.2276 | | |80021 GSC | NL80_3 +620550 |V0550 Peg *|225323.1+084607 |RRAB | 12.4 | 13.9 | |V |54783.6193 | | 0.4930493 |20 | |80377 GSC | NL80_3 +620551 |V0551 Peg |225338.1+291305 |BY | 12.33 |( 0.13 *)| |V | | | 0.8252 | | |80021 GSC | NL80_3 +620552 |V0552 Peg |225455.0+241445 |BY | 12.70 |( 0.04 : *)| |V | | | 0.1994 | |M2V |80021 GSC | NL80_3 +620553 |V0553 Peg *|225519.2+174500 |RRAB | 13.39 | 14.60 | |CV|54295.85 | | 0.547156 |14 | |80001 GSC | NL80_3 +620554 |V0554 Peg |225538.9+281035 |BY | 11.77 |( 0.05 : *)| |V | | | 0.8442 | | |80021 GSC | NL80_3 +620555 |V0555 Peg |225617.6+205236 |BY | 11.60 |( 0.07 *)| |V | | | 1.0999 | | |80021 GSC | NL80_3 +620556 |V0556 Peg |225720.1+342431 |EA | 15.60 | 15.94 | 15.77 |CV|54382.700 | | 0.6097309 |16 | |80001 USNO | NL80_3 +620557 |V0557 Peg |225923.5+325133 |EA/RS | 11.53 | 11.97 | 11.90 |* |51353.792 | | 2.3845 |05 | |80001 GSC | NL80_3 +620558 |V0558 Peg |225956.8+350948 |M | 10.9 | 13.6 | |* |55502. | | 285. : | |MIIIe |80001 2MASS| NL80_3 +620559 |V0559 Peg |225957.0+291529 |EW | 13.8 | 14.6 | 14.5 |* |51423.897 | | 0.41117 | | |80085 80085| NL80_3 +620560 |V0560 Peg |230131.6+304427 |EA: | 10.66 | 11.10 | 10.79 |V |52884.4259 | | 0.47137 |26 : |F5V |80001 GSC | NL80_3 +620561 |V0561 Peg |230146.8+130515 |M | 10.6 | 13.5 | |V |53635. | | 300. | |Np |80001 GSC | NL80_3 +620562 |V0562 Peg |230158.5+350419 |EW | 13.15 | 13.4 | 13.4 |* |51450.725 | | 0.7623 | | |80085 80085| NL80_3 +620563 |V0563 Peg |230200.2+310218 |EW | 13.33 | 13.64 | 13.62 |CV|54422.606 | | 0.4010244 | | |80001 80085| NL80_3 +620564 |V0564 Peg |230310.3+342507 |RRC | 12.40 | 12.98 | |V |52909.3356 | | 0.318833 |30 | |80057 GSC | NL80_3 +620565 |V0565 Peg |230507.9+341723 |DSCT: | 20.9 |( 0.2 *)| |V | | | 0.05 : | | |80133 G2.3 | NL80_3 +620566 |V0566 Peg |230623.7+340933 |SR: | 11.50 | 11.98 | |V | | | | | |80057 GSC | NL80_3 +620567 |V0567 Peg |230724.9+315014 |BY | 10.67 |( 0.04 *)| |V | | | 7.7129 | |K |80021 DM | NL80_3 +620568 |V0568 Peg |230813.0+330304 |EW | 12.9 | 13.35 | 13.3 |* |51455.514 | | 0.247074 | | |80085 80085| NL80_3 +620569 |V0569 Peg |230843.0+213718 |BY | 9.40 |( 0.04 *)| |V | | | 7.5465 | |G5 |80021 DM | NL80_3 +620570 |V0570 Peg |230904.2+315320 |EW | 13.58 | 14.10 | 14.07 |CV|53760.616 | | 0.3581355 | | |80001 80085| NL80_3 +620571 |V0571 Peg |230915.9+341924 |LB | 10.93 | 11.40 | |V | | | | |M5III |80057 GSC | NL80_3 +620572 |V0572 Peg |231025.7+340843 |EW | 16.15 | 16.58 | 16.53 |CV|54981.93 | | 0.2413931 | | |80001 USNO | NL80_3 +620573 |V0573 Peg |231034.2+314254 |EW | 12.34 | 12.85 | 12.75 |V |52885.2469 | | 0.417461 | |Ge |80057 GSC | NL80_3 +620574 |V0574 Peg |231034.3+092951 |BY | 10.61 | 10.86 | |V | | | 3.772 | | |80034 GSC | NL80_3 +620575 |V0575 Peg |231036.9+205526 |BY | 9.95 | 10.11 | |V | | | 0.9198 | |K2 |80021 GSC | NL80_3 +620576 |V0576 Peg |231059.5+214243 |EW | 11.2 | 11.8 | 11.6 |V |54372.596 | | 0.258175 | | |80596 GSC | NL80_3 +620577 |V0577 Peg |231124.7+343117 |EA | 17.75 | 18.4 | 18.15 |CV|55382.834 | | 0.4465954 |15 | |80001 USNO | NL80_3 +620578 |V0578 Peg |231138.6+321027 |EA | 13.0 | 13.6 | 13.15 |* |51449.813 | | 1.27868 |13 | |80013 GSC | NL80_3 +620579 |V0579 Peg |231159.6+194430 |RRAB | 12.4 | 13.1 | |V |54255.909 | | 0.690277 |22 | |80001 GSC | NL80_3 +620580 |V0580 Peg |231229.0+170922 |BY | 10.96 | 11.18 | |V | | | 3.0960 | |K3V |80001 GSC | NL80_3 +620581 |V0581 Peg |231321.7+342025 |EB | 13.62 | 14.26 | 13.87 |CV|55500.70 | | 0.4546377 | | |80001 80085| NL80_3 +620582 |V0582 Peg |231359.3+321707 |EW | 13.0 | 13.65 | 13.6 |* |51455.728 | | 0.38690 | | |80085 80085| NL80_3 +620583 |V0583 Peg |231455.8+273959 |BY | 11.36 | 11.56 | |V | | | 11.7668 | | |80021 GSC | NL80_3 +620584 |V0584 Peg |231506.8+321424 |EW | 13.52 | 13.97 | 13.87 |CV|55044.768 | | 0.363035 | | |80001 80085| NL80_3 +620585 |V0585 Peg *|231521.5+290502 |RPHS | 11.8 |( 0.13 )| |B | | | 0.0041226 | |sdB |80603 GSC | NL80_3 +620586 |V0586 Peg |231708.2+113700 |BY | 12.1 | 12.3 | |* | | | 0.942903 | | |80060 80060| NL80_3 +620587 |V0587 Peg |231713.2+322917 |EW | 13.96 | 14.42 | 14.31 |CV|55145.560 | | 0.3923943 | | |80001 80085| NL80_3 +620588 |V0588 Peg |231806.6+155259 |RRAB | 12.5 | 13.3 | |V |53900.9106 | | 0.601987 |20 | |80002 GSC | NL80_3 +620589 |V0589 Peg |232048.1+292156 |BY | 11.52 |( 0.07 *)| |V | | | 1.3710 | | |80021 GSC | NL80_3 +620590 |V0590 Peg |232138.8+344252 |EA/RS | 11.7 | 12.2 | |* |51445.84 | | 4.243 | | |80605 GSC | NL80_3 +620591 |V0591 Peg |232151.0+124724 |RRAB | 13.74 | 14.61 | |CV|55060.83 | | 0.5551202 |16 |A3 |80001 GSC | NL80_3 +620592 |V0592 Peg |232153.1+231656 |BY | 10.90 |( 0.11 *)| |V | | | 18.8148 | | |80021 DM | NL80_3 +620593 |V0593 Peg |232258.5+324349 |EW | 13.53 | 14.20 | 14.17 |CV|55044.77 | | 0.3771205 | | |80001 80085| NL80_3 +620594 |V0594 Peg |232358.5+313934 |SR | 11.49 | 12.12 | |V | | | 50.11 | | |80057 GSC | NL80_3 +620595 |V0595 Peg |232617.1+275203 |BY | 11.72 |( 0.09 *)| |V | | | 1.2530 | |M3V |80021 GSC | NL80_3 +620596 |V0596 Peg |232629.3+312041 |EW | 12.04 | 12.68 | 12.60 |V |54770.669 | | 0.2834963 | | |80001 GSC | NL80_3 +620597 |V0597 Peg |233204.6+322756 |RS | 12.0 | 12.1 | |* | | | 7.839 | | |80043 80043| NL80_3 +620598 |V0598 Peg *|233326.0+152222 |AM | 18.30 | 18.80 | |V | | | 0.0577 | |pec(e) |80609 USNO | NL80_3 +620599 |V0599 Peg |233409.0+341855 |EA | 12.1 | 13.2 | 12.3 |V |53263.4830 | | 3.917881 |20 | |80600 GSC | NL80_3 +620600 |V0600 Peg |233458.9+134406 |RRAB | 12.7 | 13.7 | |V |55158.612 | | 0.694137 |15 |F0 |80001 GSC | NL80_3 +620601 |V0601 Peg |233709.7+303714 |EW | 12.04 | 12.60 | 12.45 |V |53255.5877 | | 0.801886 | | |80600 GSC | NL80_3 +620602 |V0602 Peg |233710.7+313611 |EW | 13.36 | 14.38 | 14.0 |V |54040.6454 | | 0.3754447 | | |80001 GSC | NL80_3 +620603 |V0603 Peg |233906.8+220412 |BY | 10.55 |( 0.06 *)| |V | | | 4.0623 | |K2 |80021 DM | NL80_3 +620604 |V0604 Peg |234029.0+295912 |BY | 11.16 |( 0.13 *)| |V | | | 1.1648 | | |80021 GSC | NL80_3 +620605 |V0605 Peg |234106.2+270643 |BY | 11.95 |( 0.08 *)| |V | | | 9.8987 | | |80021 GSC | NL80_3 +620606 |V0606 Peg |234158.8+181301 |RRAB | 12.2 | 13.0 | |V |54309.7867 | | 0.529660 |20 | |80001 GSC | NL80_3 +620607 |V0607 Peg |234413.9+320524 |EW | 11.95 | 12.05 | |V |53255.3958 | | 0.347764 | | |80600 GSC | NL80_3 +620608 |V0608 Peg |234416.2+321042 |DSCT | 12.21 | 12.41 | |V |53255.4841 | | 0.057163 | | |80600 GSC | NL80_3 +620609 |V0609 Peg |234520.9+323958 |EW | 12.15 | 12.28 | 12.28 |V |53255.7725 | | 0.813644 | | |80600 GSC | NL80_3 +620610 |V0610 Peg |234550.8+155918 |RRAB | 13.37 | 14.31 | |CV|53677.678 | | 0.6221242 |14 | |80001 GSC | NL80_3 +620611 |V0611 Peg |234641.2+173803 |RRAB | 12.6 | 13.8 | |V |54730.6705 | | 0.588680 |17 | |80001 GSC | NL80_3 +620612 |V0612 Peg |234643.5+103335 |BY | 10.82 | 11.37 | |* | | | 18.9 | | |80246 80246| NL80_3 +620613 |V0613 Peg |234710.9+172034 |EA | 12.70 | 13.1 : | 12.85 |V |52844.853 | | 0.77973 |12 | |80048 GSC | NL80_3 +620614 |V0614 Peg |234720.8+300511 |BY: | 10.81 |( 0.10 *)| |V | | | 2.3252 | | |80021 GSC | NL80_3 +620615 |V0615 Peg *|234807.5+320448 |EA | 14.2 |( 0.02 )|( 0.01 )|R | | | | |sdB+wd |80235 GSC | NL80_3 +620616 |V0616 Peg |234937.3+202542 |RRAB | 13.84 | 14.99 | |CV|54006.73 | | 0.5813712 |13 | |80001 GSC | NL80_3 +620617 |V0617 Peg |234945.4+312627 |BY | 12.77 |( 0.13 *)| |V | | | 1.3808 | | |80021 GSC | NL80_3 +620618 |V0618 Peg |235600.8+105319 |RRAB | 11.5 | 12.5 | |V |54730.6705 | | 0.562393 |10 | |80001 GSC | NL80_3 +620619 |V0619 Peg |235657.8+104816 |EW | 10.85 | 11.30 | 11.20 |V |54299.824 | | 0.388710 | | |80596 GSC | NL80_3 +620620 |V0620 Peg |235952.8+294947 |BY | 13.22 |( 0.13 *)| |V | | | 0.5657 | | |80021 GSC | NL80_3 +629002 |bet Peg *|230346.5+280458 |LB | 2.31 | 2.74 | |V | | | | |M2.5II-IIIe |01050 08953| +629003 |gam Peg |001314.2+151101 |BCEP | 2.78 | 2.89 | |V |41224.640 | | 0.151750125 |50 |B2IV |09605 08953| +629005 |eps Peg *|214411.2+095230 |LC | 0.7 | 3.5 | |V | | | | |K2Ib |06875 08953| +629016 |phi Peg |235229.3+190713 |SRB: | 5.11 | 5.17 | |Hp| | | | | |HIP HIP | +629019 |tau Peg *|232038.2+234425 |DSCTC | 4.60 |( 0.02 )| |V | | | 0.05433 | |A5IV |07580 BD | +630001 |R Per |033003.1+354017 |M | 8.1 | 14.8 | |V |45339. | | 209.89 |49 |M2e-M5e |00001 00002| +630002 |S Per *|022251.7+583511 |SRC | 7.9 | 12.0 | |V | | | 822. | |M3Iae-M7 |08630 00002| +630003 |T Per *|021921.9+585740 |SRC | 8.34 | 9.7 | |V | | | 2430. | |M2Iab |08044 03544| +630004 |U Per *|015935.1+544920 |M | 7.4 | 12.8 | |V |45066. | | 320.26 |46 |M5e-M7e |00001 00002| +630005 |V Per *|020154.0+564404 |N | 4. |< 17.5 | |p |10500. :|1887 | | |pec(NOVA) |01690 09699| +630006 |W Per *|025037.9+565900 |SRC | 8.7 | 11.8 | |V | | | 485. | |M3Ia-Iab-M7 |09653 00002| +630007 |X Per *|035523.1+310245 |GCAS+XP | 6.03 | 7.0 | |V | | | | |O9.5(III-V)ep | 08953| +630008 |Y Per *|032742.4+441037 |M | 8.1 | 11.3 | |V |45245. | | 248.60 |48 |C4,3e(R4e) |00001 00002| +630009 |Z Per *|024003.2+421158 |EA/SD | 9.7 | 12.4 | 9.8 |p |45659.245 | | 3.0563066 |14 |A0V+G0IV-V |00001 09668| +630010 |RR Per *|022829.4+511617 |M | 8.1 | 15.1 | |V |44944. | | 389.62 |45 |M6e-M7e |00001 00002| +630011 |RS Per *|022224.3+570634 |SRC | 7.82 | 10.0 | |V | | | 244.5 | |M4Iab |08044 08953| +630012 |RT Per *|032340.4+463436 |EA/SD | 10.46 | 11.74 | 10.67 |V |33376.0583 | | 0.84940032 |16 *|F2V |09734 09736| +630013 |RU Per |033030.3+393929 |SRB | 10.0 | 12.0 | |V | | | 170. : | |M4e | 00002| +630014 |RV Per *|041038.0+341555 |EA/SD | 10.3 | 12.7 | 10.4 |V |42046.921 | | 1.9734926 |15 *|A2 |00001 00462| +630015 |RW Per *|042016.8+421852 |EA/D | 9.68 | 11.36 | 9.78 |V |36701.0854 | | 13.198904 |08 |A5IIIe+G0III |09655 08953| +630016 |RX Per |035116.2+330207 |M | 9.0 |< 13.5 | |V |42642. | | 422.08 | |M3e |00001 00100| +630017 |RY Per *|024542.1+480838 |EA/SD | 8.50 | 10.25 | 8.65 |V |27070.708 | | 6.8635663 |13 |B5Vea+F6IV |00957 00102| +630018 |RZ Per *|012942.2+505124 |M | 8.7 | 14.0 | |V |45498. | | 355.25 |47 |S4,9e |00001 00002| +630019 |SS Per |015557.4+502902 |CST | 12.1 | | |p | | | | |K | BD | +630020 |ST Per *|030005.7+391125 |EA/SD | 9.52 | 11.40 | 9.62 |V |42436.588 | | 2.648315 |13 |A3V+G-K |00001 09742| +630021 |SU Per *|022206.9+563615 |SRC | 9.4 | 10.8 | |p | | | 533. | |M3.5Iab |06116 00884| +630022 |SV Per *|044947.9+421723 |DCEP | 8.49 | 9.37 | |V |43839.296 | | 11.129318 |39 |F6-G1 |09029 00884| +630023 |SW Per |041051.9+421235 |SRB | 9.6 | 11.1 | |p | | | 102. | |M5III |00589 01059| +630024 |SX Per *|041706.1+414355 |DCEP | 10.70 | 11.54 | |V |41847.979 | | 4.289967 |25 |F5-G5 |08300 01059| +630025 |SY Per *|041633.2+503735 |SRA | 8.7 |( 3.0 )| |V |37635. | | 474. |54 |C6,4e(N3e) |04972 04972| +630026 |SZ Per |034707. +341921:|N: | 10.5 |< 16.5 | |p | | | | | |01060 08953| +630027 |TT Per |015029.3+534434 |SRB | 9.2 | 10.6 | |p | | | 82. | |M5II-III |01053 00884| +630028 |TU Per *|030904.8+531136 |RRAB | 11.94 | 13.05 | |V |38772.590 | | 0.6070749 |16 |A5 |00001 06286| +630029 |TV Per *|024348.5+361502 |SRD | 10.3 | 13.5 | |p | | | 358. : | |K0 |00634 08953| +630030 |TW Per |031956.8+330837 |M | 10.6 |< 13.5 | |p |39426. | | 335.14 | |M2e |00001 06286| +630031 |TX Per *|024800.4+365802 |RVA | 9.81 | 12.5 | |V | | | 78. : | |Gp(M2)-K0e(M2) | 00002| +630032 |TY Per |020242.3+580453 |M | 10.6 | 15.0 | |V |42312. | | 364.65 | |M6 |00001 01062| +630033 |TZ Per *|021350.9+582253 |UGZ | 12.0 | 15.6 | |V | | |( 17. ) | |pec(UG) |09782 00002| +630034 |UU Per |034707.6+524042 |LB | 8.9 | 10.9 | |V | | | | |M4 | | +630035 |UV Per |021008.0+571120 |UGSS | 11.0 | 17.5 | |V | | |( 320. ) | | |09672 00002| +630036 |UW Per |021229.5+570519 |UG: | 13.5 | 18.8 : | |p | | | | | | 01065| +630037 |UX Per *|021307.5+580448 |DCEP | 11.02 | 12.07 | |V |37402.945 | | 4.565815 |26 |F5-G3 |03537 09759| +630038 |UY Per *|023431.3+584954 |DCEP | 10.80 | 11.74 | |V |44945.845 | | 5.365106 |26 |F7-G0 |09667 00884| +630039 |UZ Per *|032006.0+320118 |SRB | 8.6 |< 11.7 | |p | | | 927. | |M5II-III |00634 08953| +630040 |VV Per *|032658.7+494259 |SRB | 11.0 |< 12.5 | |V | | | 228. | | |09768 01067| +630041 |VW Per |032923.3+442427 |M | 12.0 | 16. | |V |35770. | | 279.8 |47 |M |00001 01068| +630042 |VX Per *|020748.5+582637 |DCEP | 8.99 | 9.69 | |V |43758.994 | | 10.88904 |49 |F6-G1 |09029 03203| +630043 |VY Per *|022735.4+585502 |DCEP | 10.80 | 11.66 | |V |44912.75 | | 5.531830 |26 |F5-F9 |00001 09759| +630044 |VZ Per *|023843.1+554559 |LB: | 10.6 | 10.8 | |V | | | | |C4,5J(R4) |08734 HIP | +630045 |WW Per |031827.9+424918 |M | 12.5 |< 16.5 | |p |41216. | | 274.4 |40 : | |00001 01071| +630046 |WX Per |033725.0+433908 |M: | 13. | 16. | |p |21850. :| | 240. : | | |00328 01071| +630047 |WY Per *|033824.2+424039 |EA/SD | 11.5 | 14.2 | |V |46002.360 | | 3.3271615 |10 *|A0 |00001 01071| +630048 |WZ Per |034132.1+423851 |M: | 12.6 | 16. | |p |21700. :| | | | |00328 01071| +630049 |XX Per *|020309.4+551357 |SRC | 8.2 | 10.2 | |p | | | 415. | |M4Ib+B |06116 08953| +630050 |XY Per *|034936.3+385856 |INA | 9.8 | 11.0 | |p | | | | |A2II+B6e |09770 09481| +630051 |XZ Per *|040927.6+463401 |EA/SD | 11.4 | 13.4 | 11.6 |p |43507.47742 | | 1.15163412 |23 *|G1 |08593 00462| +630052 |YY Per |043629.2+445840 |LB: | 10.2 | 11.1 | |p | | | | |M5 |01059 01059| +630053 |YZ Per *|023825.4+570246 |SRB | 10.01 | 11.9 | |B | | | 378. | |M1Iab-M3Iab |01053 08953| +630054 |ZZ Per *|025152.0+565454 | | 10.9 |( 0.4 : )| |V | | | | | |09773 | +630055 |AA Per |031514.4+463452 |SRA | 10.4 | 11.7 | |p |24890. | | 130.4 |55 |M7 |01073 08953| +630056 |AB Per *|033745.2+404549 |EA/SD | 10.4 | 11.4 | 10.5 |p |22987.207 | | 7.1602886 |12 |A5 |03671 08953| +630057 |AC Per |034503.4+444652 |LB: | 11.8 | 12.4 | |p | | | | |C6,3(N3) |01075 BD | +630058 |AD Per *|022029.0+565935 |SRC | 9.7 | 11.2 | |p |41603. | | 362.5 |67 |M2.5Iab |08044 08953| +630059 |AE Per *|030010.8+440816 |SRB | 10.4 |< 12.3 | |p | | | 115. | |M5 |00634 00819| +630060 |AF Per |034222.4+363037 |SRB | 9.5 | 10.7 | |V | | | 89. | |K0 |00373 08953| +630061 |AG Per *|040655.8+332647 |EA/DM | 6.69 | 7.00 | 7.00 |V |44584.583 | | 2.02870904 |12 *|B3Vn+B3 |00001 00021| +630062 |AH Per |024811.2+392744 |M | 12.3 |< 16. | |p |29940. | | 311.5 | |M0e |01001 GSC22| +630063 |AI Per |024858.1+374429 |M | 11.9 | 16.3 | |p |38642. | | 231.0 | |Me |00001 06976| +630064 |AK Per |025243.6+430615 |M | 12.2 |< 16. | |p |34360. | | 287.5 | |M3 |00001 06286| +630065 |AL Per |030203.3+482949 |M | 11.5 | 15.5 | |p |25238. | | 145. | | |01076 00531| +630066 |AM Per |030302.8+481624 |M | 13.3 | 16.0 | |p |25314. | | 250. | |M3 |01076 00531| +630067 |AN Per |030831.4+483241 |RRAB | 14.7 | 15.4 | |p |25235.565 | | 0.602818 | | |03535 00531| +630068 |AO Per |031651.3+490814 |LB | 14.7 | 15.1 | |p | | | | |M6 |01076 00531| +630069 |AP Per |034934.8+510357 |M | 13.6 | 18.5 | |p |25300. | | 410.5 | |M8 |01000 00531| +630070 |AQ Per |035800.1+441012 |M | 13.7 |< 16.5 | |p |29729. | | 154.3 | |M7 |01000 GSC | +630071 |AR Per *|041717.2+472401 |RRAB | 9.92 | 10.83 | |V |27236.9179 | | 0.42554892 |16 |A8-F6 |08299 08299| +630072 |AS Per *|041946.9+485712 |DCEP | 9.17 | 10.14 | |V |41723.934 | | 4.972516 |25 |F8-G1 |08300 01078| +630073 |AT Per |043110.3+451426 |LB | 13.0 | 14.0 | |p | | | | |C4,4(N) |01079 06286| +630074 |AU Per |043236.8+454014 |M | 13.4 | 16.5 | |p |35884. | | 309.7 | |M6.5 |00001 GSC | +630075 |AV Per *|043935.3+413711 |SRB: | 13.2 | 14.2 | |p | | | | |C5,4 |06566 06566| +630076 |AW Per *|044746.3+364322 |DCEP | 7.04 | 7.89 | |V |42709.059 | | 6.463589 |25 |F6-G0 |08632 00021| +630077 |AX Per *|013622.7+541502 |ZAND | 9.4 | 13.6 | |p |36679.4 | | 681.6 | |M3IIIep+A0 |09676 08850| +630078 |AY Per *|031025.1+505554 |EA/DS: | 9.8 | 10.6 | |p |27152.25 | | 11.77664 |06 |A0 |03534 03534| +630079 |AZ Per |035226.5+334220 |SR | 12.6 | 14.2 | |p | | | 305. : | | |00602 00603| +630080 |BB Per |035525.6+313048 |L: | 12.8 | 14.0 | |p |39507. | | | | |05326 00603| +630081 |BC Per |030331.5+500743 |LB | 14.9 | 15.7 | |p | | | | | |01076 02320| +630082 |BD Per |030507.3+480748 |LB | 14.2 | 15.2 | |p | | | | | |01076 02320| +630083 |BE Per *|031348.9+461016 |E | 14.5 | 15.3 | |p |25624.36 | | | | |03535 02320| +630084 |BF Per |032156.9+461407 |SR | 15.1 | 16.7 | |p |25355. | | 240. | | |01076 02320| +630085 |BG Per |032617.9+503548 |M: | 16.1 |< 16.9 | |p |25970. | | 219. : | | |00432 02320| +630086 |BH Per |032828.1+502718 |M: | 15.1 |< 16.4 | |p |25332. | | 271. | | |01076 02320| +630087 |BI Per *|033255.8+524415 |LB | 14.4 | 15.4 | |p | | | | |C(R) |01076 02320| +630088 |BK Per |033942.5+520816 |LB | 14.9 | 15.7 | |p | | | | |C(R) |01076 02320| +630089 |BL Per *|034247.1+482600 |SRB | 14.1 | 15.2 | |p | | | | |M6.5 |00432 02320| +630090 |BM Per *|042939.4+482519 |DCEP | 9.65 | 11.02 | |V |35784.26 | | 22.9519 |13 |K5 |03537 09678| +630091 |BN Per |030055.1+473302 |SRB | 14.0 | 15.2 | |p |26390. | | 277. | | |00432 02320| +630092 |BO Per |030803.5+533827 |EA/D: | 12.0 | 12.3 | |p |30764.405 | | 4.580152 |07 *|B9 |03800 03800| +630093 |BP Per *|033106.7+492447 |EB | 11.7 | 12.0 | |p |28422.540 | | 1.978914 | | |03800 03800| +630094 |BQ Per |033545.0+341327 |CST: | 12.5 | 13.3 | |p | | | | |F5 |08656 00603| +630095 |BR Per |035707.4+320259 |CEP: | 13.1 | 14.2 | |p | | | 4.001 | | |00603 00603| +630096 |BS Per |022652.7+520703 |SRB | 12.0 | 13.6 | |p | | | 400. | |C5,5(N4) |00911 02282| +630097 |BT Per |020142.5+575017 |LB | 14.8 | 16.1 | |p | | | | |C |00911 02281| +630098 |BU Per *|021853.3+572517 |SRC | 10.4 | 12.3 | |p | | | 367. | |M3.5Ib |09647 08953| +630099 |BV Per |021914.1+511525 |SRA | 12.4 | 14.3 | |p |29300. | | 320. | |M6 |01086 | +630100 |BW Per |024708.2+460330 |SRA | 10. | 11. | |p |30674. | | 117.4 |46 |M4 |00001 08953| +630101 |BX Per |015219.6+571906 |LB | 14.4 | 15.0 | |p | | | | |M6 |00911 02281| +630102 |BY Per |015435.6+544800 |EA/SD | 13.2 | 14.8 | |p |45942.557 | | 1.152635 |15 *| |00001 02340| +630103 |BZ Per |015512.3+541111 |M | 13.7 | 17.8 | |p |30773. | | 298.6 |50 | |00911 02281| +630104 |CC Per *|015937.1+555922 |EB/SD | 14.0 | 15.4 | 14.1 |p |29231.46 | | 2.47015 | | |00911 02340| +630105 |CD Per |020044.3+540107 |LB | 14.1 | 14.9 | |p | | | | | |00911 02281| +630106 |CE Per |020303.6+521149 |L | 13.3 | 14.6 | |p | | | | | |00911 02340| +630107 |CF Per |020323.6+574321 |ISB | 10.5 | 12.5 | |V | | | | |M6 |08079 02340| +630108 |CG Per |020406.5+532941 |M: | 14.6 | 20. : | |p |27992. :| | | | |00911 02281| +630109 |CH Per |020434.3+535313 |EA/SD | 14.9 | 17.1 | |p |43755.511 | | 1.314649 |10 | |00001 02281| +630110 |CI Per *|020502.2+570835 |CEP: | 13.0 | 13.8 | |p |29230.5 | | 3.3779 | | |00911 02347| +630111 |CK Per *|020506.7+561025 |EA/SD | 15.2 | 17.3 | |p |28545.27 | | 2.37275 |13 | |00911 02281| +630112 |CL Per |020454.9+531550 |M | 12.0 | 18.5 : | |p |30734. | | 266.0 |47 | |00911 02281| +630113 |CM Per *|020511.2+571225 |EA/D | 12.5 | 13.4 | |p |36128.66 | | 38.6365 |10 |A3V |02431 02281| +630114 |CN Per |020639.6+565106 |M | 13.8 |< 17.8 | |p |30688. | | 384. | |Cea |00911 02281| +630115 |CO Per *|020754.6+572921 |EA/SD | 14.8 | 16.0 | |p |28019.47 | | 1.819184 |10 *| |00911 02281| +630116 |CP Per |020808.7+520018 |RRAB | 15.6 | 16.9 | |p | | | | | |04025 02347| +630117 |CQ Per |020818.1+535442 |SRA | 13.5 | 14.7 | |p |28058. | | 120.5 | |M5 |00911 02281| +630118 |CR Per *|020952.2+575433 |EA/DS: | 12.4 | 12.9 | |p |28069.57 | | 22.681 |02 : | |00911 02281| +630119 |CS Per *|021112.5+584248 |EA/DS | 13.4 | 15.1 | |p |28022.40 | | 24.2560 |04 |G0IV |00911 02281| +630120 |CT Per | | | | | | | | | | | | |=V1003 Cas +630121 |CU Per |021252.6+534917 |LB: | 15.0 | 16.2 | |p | | | | | |03602 02281| +630122 |CV Per |021413.8+543847 |LB | 15.8 | 17.0 | |p | | | | | |00911 02281| +630123 |CW Per |021423.4+543604 |LB | 15.0 | 15.8 | |p | | | | | |00911 02281| +630124 |CX Per |021447.9+514819 |M | 12.5 | 17.8 | |p |29171. | | 293. |40 |M3 |00911 02347| +630125 |CY Per |021501.6+541308 |EA/SD | 15.6 | 17.6 | |p |28072.61 | | 3.09835 |10 *| |00911 02347| +630126 |CZ Per *|021526.8+574512 |LB | 14.7 | 15.6 | |B | | | | |M4 |00911 02281| +630127 |DD Per |021519.4+531015 |EA/SD | 15.5 | 17.8 | |p |29486.51 | | 2.94661 | | |04025 02347| +630128 |DE Per *|021717.1+541206 |EA/DS | 14.4 | 15.7 | |p |28865.43 | | 8.8478 |05 | |00911 02281| +630129 |DF Per *|021830.6+560412 |SRA | 14.4 | 17.0 | |p |28023. | | 307. |42 | |00911 02281| +630130 |DG Per *|021919.8+533549 |EA/DS | 13.1 | 14.6 | |p |28035.25 | | 56.770 |06 | |00911 02281| +630131 |DH Per |022201.5+530834 |EA/SD | 14.5 | 15.9 | |p |28021.42 | | 2.84060 |08 *| |00911 02340| +630132 |DI Per |022236.3+540922 |M | 12.7 | 17.2 | |p |30860. | | 438. |34 : |MS |00911 02281| +630133 |DK Per *|022345.6+575924 |EB/SD | 12.3 | 13.3 |( 0.05 )|p |42492.373 | | 0.898876 | | |00001 02281| +630134 |DL Per |022511.2+515520 |M | 13.9 | 18.0 | |p |29269. | | 226.8 |50 |M2 |00911 02347| +630135 |DM Per *|022558.0+560610 |EA/SD | 7.86 | 8.59 | 8.02 |V |41920.4543 | | 2.7277427 |17 *|B5V |09679 02340| +630136 |DN Per |022620.6+524429 |ISA | 14.8 | 16.2 | |p | | | | | |00911 02282| +630137 |DO Per *|022722.2+553111 |EA/SD: | 14.7 | 15.5 | |p |29578.59 | | 0.79396 |08 : | |00911 02340| +630138 |DP Per *|022748.9+570552 |LB | 14.2 | 15.1 | |p | | | | |M6.5 |00911 02347| +630139 |DQ Per |022806.1+533648 |LB | 14.6 | 15.3 | |p | | | | |M6.5 |00911 02282| +630140 |DR Per *|022825.9+571007 |M | 14.9 | 20. | |p |28646. | | 287. | | |00911 02347| +630141 |DS Per *|023120.0+572738 |EA/SD | 15.1 |< 16.5 | |p |28635.64 | | 2.64135 |10 : | |00911 02282| +630142 |DT Per *|023123.1+565257 |M | 13.8 | 20. : | |p |28079. | | 228.9 |48 : | |00911 02340| +630143 |DU Per *|023245.1+581437 |LB | 15.4 | 16.1 | |p | | | | |C3,5 |00911 02340| +630144 |DV Per *|023236.7+530931 |EB/SD | 14.4 | 14.9 | 14.5 |p |28041.287 | | 0.807137 | | |00911 02347| +630145 |DW Per |023352.6+570139 |DCEP | 11.20 | 11.86 | |V |36906.703 | | 3.649785 |24 |F6Ib |00001 02282| +630146 |DX Per |023448.4+561752 |EA/SD: | 15.2 | 16.2 | |p |28427.61 | | 2.91199 |09 :*| |00911 02282| +630147 |DY Per *|023517.1+560845 |SRB | 10.6 | 13.2 | |V | | | 900. : | |C4,5(R8) |00911 02282| +630148 |DZ Per *|023557.2+560846 |EB/KE | 14.4 | 15.0 | 14.7 |p |28022.40 | | 0.7641654 | | |00911 02282| +630149 |EE Per |023607.7+532858 |LB | 12.8 | 13.7 | |p | | | | |M6.5 |00911 02282| +630150 |EF Per |023618.6+521459 |SRA | 14.6 | 17.8 | |p |28016. | | 184. | | |00911 02282| +630151 |EG Per |023700.5+535827 |LB: | 14.6 | 16.1 | |p | | | | | |03602 02340| +630152 |EH Per |023738.3+525841 |LB | 14.0 | 14.8 | |p | | | | |C7,4 |00911 02347| +630153 |EI Per |023951.2+555352 |M | 13.8 |< 20. | |p |28005. | | 357. | | |00911 02282| +630154 |EK Per |024013.1+561142 |L | 16.7 |< 17.7 | |p | | | | | |00911 02347| +630155 |EL Per *|024016.6+520827 |SRA | 11.5 | 12.8 | |p |29219. | | 167. | |M |00911 02340| +630156 |EM Per |024127.9+553127 |L | 14.5 | 16.3 | |p | | | | | |03165 02282| +630157 |EN Per |024250.5+515312 |EA/DS: | 13.4 | 14.3 | |p |27995.550 | | 10.24665 |05 *| |03165 02282| +630158 |EO Per *|025038.6+572010 |ISA | 11.2 | 12.4 | |V | | | | |B0ea |08079 02282| +630159 |EP Per |025511.6+542547 |M | 15.5 | 21. | |p |29174. | | 262. | | |00911 02347| +630160 |EQ Per |025558.6+521025 |EA/SD | 14.0 | 15.7 | |p |29187.37 | | 1.48579 |14 *| |00911 02348| +630161 |ER Per *|025655.8+543836 |SRB | 11.1 | 12.0 | |p | | | 150. | |M6.5 |00911 02348| +630162 |ES Per |013250.2+542036 |M | 14.3 |< 17.8 | |p |28632. | | 251. | | |00911 02340| +630163 |ET Per |013922.2+535219 |RRAB | 12.2 | 13.7 | |p |28183.251 | | 0.3940137 |16 | |00911 02340| +630164 |EU Per *|013927.3+543057 |SRB | 12.3 | 13.4 | |p | | | 115. : | | |00911 02340| +630165 |EV Per |014929.9+535837 |L | 13.3 | 14.5 | |p | | | | | |00911 02340| +630166 |EW Per *|015215.5+565802 |SRB | 14.3 | 15.5 | |p | | | 800. : | |C(N) |00911 02340| +630167 |EX Per *|022412.4+520909 |EA/DM | 12.0 | 12.8 | 12.5 |V |29170.49 | | 8.47614 |04 |A1 |00911 02282| +630168 |EY Per |035200.5+444928 |LB | 13.5 | 14.5 | |p | | | | |M4 |01079 02340| +630169 |EZ Per |035207.1+434607 |LB | 13.6 | 14.7 | |p | | | | |C5,4(R) |01079 00486| +630170 |FF Per |035236.6+472853 |EA/SD | 15.3 | 16.9 | |p |29167.544 | | 3.465161 |15 | |01079 02340| +630171 |FG Per |035330.2+473903 |M | 14.0 | 20. | |p |35861. | | 340.3 | | |00001 02340| +630172 |FH Per |035439.4+470639 |EA/SD | 14.6 |< 16.4 | |p |28545.323 | | 4.36406 |08 | |01079 02340| +630173 |FI Per |035456.8+483602 |M | 14.0 | 17.8 | |p |29120. | | 427. | |M7 |01079 02340| +630174 |FK Per |035700.5+443206 |M | 14.4 |< 17.5 | |p |30645. | | 264. | | |01079 02340| +630175 |FL Per |035937.3+462745 |LB | 14.5 | 15.6 | |p | | | | |C(N) |01079 02340| +630176 |FM Per *|040327.1+475952 |RRAB | 12.8 | 14.7 | |p |33765.799 | | 0.4892014 |16 | |01079 02340| +630177 |FN Per |040417.2+452540 |LB | 12.7 | 13.4 | |p | | | | |M6.5 |01079 01059| +630178 |FO Per |040835.0+511448 |UG | 11.8 | 16. | |V | | |( 11.02 ) | | |09681 09680| +630179 |FP Per |041029.6+455443 |LB | 14.2 | 14.9 | |p | | | | |M3 |01079 02341| +630180 |FQ Per |041045.0+452943 |EA/SD | 13.5 | 14.8 | |p |28018.600 | | 3.976942 |10 *| |01079 00486| +630181 |FR Per *|041132.5+512003 |LB | 12.2 | 13.4 | |p | | | | |C4,5(R3) |01079 01078| +630182 |FS Per |041205.2+481358 |SRA | 14.8 | 16.0 | |p |28022. | | 179. | |M6 |01079 02341| +630183 |FT Per |041219.7+444542 |LB | 12.4 | 14.5 | |p | | | | |M6 |01079 01059| +630184 |FU Per |041456.8+484917 |M | 15.0 | 20. | |p |28080. | | 426. | |M9: |01079 02341| +630185 |FV Per *|041505.3+465005 |SRB | 13.2 | 14.4 | |p | | | | |M6 |09627 01059| +630186 |FW Per |042744.6+522852 |EA/SD: | 14.3 | 15.3 | |p |28429.375 | | 0.7912215 |17 *| |01079 02341| +630187 |FX Per *|043441.5+441353 |EA/SD | 14.1 | 15.6 | |p |28108.415 | | 5.20579 |13 | |01079 00122| +630188 |FY Per *|044156.6+504236 |NL: | 12.3 | 14.5 | |B | | | | | |09682 03540| +630189 |FZ Per *|022059.6+570930 |SRC | 9.8 | 10.77 | |B | | | 184. | |M0.5Iab-M2.0Iab |06116 08953| +630190 |GG Per |031140.8+413847 |M | 12.2 | 15.8 | |B |40532. | | 277.84 |54 | |08634 09628| +630191 |GH Per *|031313.6+554212 |SR | 12.2 | 13.1 | |p | | | 440. : | |M6 |01090 | +630192 |GI Per |042943.3+395202 |SRB | 13.8 | 15.8 | |p | | | 400. : | |C7,4(N) |01091 00156| +630193 |GK Per *|033112.0+435415 |NA+XP | 0.2 | 14.0 | |V |15439. |1901 | | |pec(NOVA) | 09515| +630194 |GL Per |041909.0+404544 |M | 13.0 | 16.1 | |p |28037. | | 283. | |M6 |01091 02341| +630195 |GM Per |041950.9+410742 |SRB | 13.7 | 15.2 | |p |31360. | | 167. | |C4,4(N) |00001 02356| +630196 |GN Per |042052.4+410330 |LB | 14.9 | 15.4 | |p | | | | |M6.5 |01091 02356| +630197 |GO Per |042231.2+393513 |LB | 11.4 | 12.6 | |p | | | | |M4 |01091 01059| +630198 |GP Per *|042319.2+441412 |CEP | 13.2 | 14.30 | |V |29165.446 | | 2.04160 |08 | |01091 02356| +630199 |GQ Per *|042323.2+361254 |LB | 10.1 | 11.0 | |p | | | | |M6 |01091 02341| +630200 |GR Per |042336.6+383804 |M | 12.7 | 20. | |p |28065. | | 376. | |M9: |01091 01059| +630201 |GS Per |042359.6+415628 |M | 14.1 |< 20. | |p |28405. | | 230.5 | |Sp |01091 02356| +630202 |GT Per |042715.0+405434 |LB | 13.6 | 14.5 | |p | | | | | |01091 02341| +630203 |GU Per |042732.4+414703 |LB | 14.8 | 15.8 | |p | | | | |M4 |01091 02341| +630204 |GV Per |042749.7+414133 |LB | 12.1 | 13.4 | |p | | | | |M6 |01091 01059| +630205 |GW Per |042918.0+423337 |M | 13.4 |< 16.6 | |p |28070. | | 285. | | |01091 02341| +630206 |GX Per |042916.9+404455 |L | 14.8 | 15.4 | |p | | | | | |01091 02341| +630207 |GY Per |042915.1+393345 |M | 11.5 | 18.5 : | |p |31155. | | 377.8 | |C |00001 01090| +630208 |GZ Per |042951.3+385936 |M | 14.0 | 20. | |p |28102. | | 313. | |M9 |01091 02341| +630209 |HH Per |043259.4+415855 |L | 15.1 | 19. | |p | | | | | |01091 02356| +630210 |HI Per |043511.8+391948 |SR | 13.2 | 15.7 | |p |30376. | | 87.5 | | |01091 02341| +630211 |HK Per |043624.9+413614 |EA/SD | 13.1 | 14.4 | |p |42740.464 | | 2.174614 |15 *| |00001 02356| +630212 |HL Per |043754.1+395617 |LB: | 15.0 | 15.9 | |p | | | | |M6: |01091 02356| +630213 |HM Per |043942.8+390143 |LB | 16.6 | 17.0 | |p | | | | |C |01091 02341| +630214 |HN Per |044108.7+392517 |SR | 14.8 | 15.6 | |p | | | 150. : | |C |01091 02341| +630215 |HO Per |044128.7+401131 |LB | 11.8 | 13.1 | |p | | | | |M6.5 |01091 02341| +630216 |HP Per |044331.2+394246 |EA/DS | 14.9 | 15.8 | |p |30025.439 | | 62.6197 |02 *| |01091 02356| +630217 |HQ Per *|044357.9+405005 |CEP | 12.4 | 13.3 | |p |44084.47 | | 8.63793 |30 |F |00001 01059| +630218 |HR Per |044934.6+404331 |LB | 12.5 | 13.4 | |p | | | | |M6 |01091 02341| +630219 |HS Per *|015211.7+570643 |EA | 13.0 | 15.9 | |p |29108.517 | | | |A0II-III |00164 02356| +630220 |HT Per |031919.1+512439 |SR: | 14.0 | 15.2 | |p | | | 128. : | |M7 |01076 02320| +630221 |HU Per |034233.2+390604 |EA/DS | 10.9 | 13.9 | |p |16739.43 | | 17.2544 |06 |A |02437 00940| +630222 |HV Per *|034504.9+374716 |EA/SD | 12.8 | 14.0 | |p |17833.900 | | 2.95343 |10 | |03183 00486| +630223 |HW Per *|035846.1+444406 |EB/KE | 13.0 | 13.7 | 13.3 |p |28023.527 | | 0.634828 | | |03148 02340| +630224 |HX Per |041301.1+452613 |LB | 15.0 | 15.5 | |p | | | | |S |01079 02341| +630225 |HY Per *|042056.3+505207 |EA | 14.8 | 15.3 | |p |29617.701 | | 2.483426 |16 | |08635 02341| +630226 |HZ Per *|042537.3+453713 |DCEP | 13.30 | 14.26 | |V |29111.0 | | 11.279 |31 | |03148 02341| +630227 |II Per *|042937.6+442541 |EB/KW | 13.5 | 14.2 | 13.6 |p |30257.550 | | 0.479854 | | |08163 02341| +630228 |IK Per *|042927.5+420311 |EB/KE | 11.3 | 11.6 | 11.6 |p |27397.514 | | 0.6760369 | |A2 |03605 02356| +630229 |IL Per |041330.3+321418 |M | 13.9 |< 18.0 | |p |31180. | | 283.6 | | |01092 01092| +630230 |IM Per *|031142.3+521242 |E/DM | 12.0 | 12.7 | 12.7 |p |33541.35 | | 2.25422 |13 : | |00966 00822| +630231 |IN Per |025043.9+383350 |SR: | 12.2 | 14.2 | |p |41596. | | 101.9 : | |M2 |06976 06976| +630232 |IO Per *|030647.3+554359 |LC | 13.74 | 15.6 | |B | | | | |M3Iab |09631 00947| +630233 |IP Per *|034047.0+323154 |ISA | 10.4 | 11.5 | |p | | | | |A3 |09632 09481| +630234 |IQ Per *|035944.7+480905 |EA/DM | 7.72 | 8.27 | 7.88 |V |44290.3461 | | 1.7435701 |12 |B8Vp: |00001 02378| +630235 |IR Per |042003.2+410350 |SRA | 10.4 | 12.0 | |p |28070. | | 175. | |M6.5 |00496 02378| +630236 |IS Per |013210.2+541635 |IS: | 11.7 | 12.8 | |p | | | | | |00164 02356| +630237 |IT Per *|024319.9+434325 |EA/SD | 9.9 | 10.5 | 10.0 |p |29382.942 | | 1.533726 |22 |A1 |09687 07164| +630238 |IU Per |025936.4+435519 |EA/SD | 10.5 | 11.6 | |p |45611.436 | | 0.8570251 |19 *|A4 |00001 00819| +630239 |IV Per |025956.3+423715 |M | 11.0 |< 16.5 | |p |41672. | | 289.02 | |M: |00001 00821| +630240 |IW Per *|033335.0+395358 |ELL/DM | 5.79 | 5.84 | 5.83 |V |33617.317 | | 0.9171877 | |A5m |00823 BD | +630241 |IX Per *|033501.2+320100 |ELL | 6.66 |( 0.02 )|( 0.02 )|V |29146.901 | | 1.326363 | |F2IV |00824 BD | +630242 |IY Per |040757.4+430048 |SRA: | 12.0 |< 13.0 | |p |35024. | | 157.9 | |M |00001 00819| +630243 |IZ Per *|013205.5+540108 |EA/SD | 7.8 | 9.0 | 8.3 |p |44577.5874 | | 3.687673 |12 *|B8 |00001 03543| +630244 |KK Per *|021015.8+563333 |LC | 6.6 | 7.89 | |V | | | | |M1.0Iab-M3.5Iab |02576 08953| +630245 |KL Per |024116.5+485619 |EA/SD: | 11.0 | 11.6 | |p |35840.337 | | 2.223080 |12 :*|A2 |03545 02378| +630246 |KM Per |031439.6+331807 |M: | 13.0 |< 14.0 | |p |36082. | | 193.34 | | |02394 00294| +630247 |KN Per |032235.6+411955 |RRC | 11.2 | 11.8 | |p |36599.246 | | 0.433224 |50 |A4-A6 |09637 02378| +630248 |KO Per |032845.6+483557 |CST: | 10.2 | 10.6 | |p | | | | |A3 |09633 09633| +630249 |KP Per *|033239.0+445121 |BCEP | 6.37 |( 0.14 )| |V |43862.739 | | 0.2017786 |50 |B2IV |09790 BD | +630250 |KQ Per |035303.2+522051 |EA/SD: | 12.8 |< 13.6 | |p |35748.50 | | 5.37737 |15 | |02885 00822| +630251 |KR Per *|043708.9+441240 |EB/KE | 10.4 | 11.1 | 11.1 |p |35718.4882 | | 0.99607883 | *|(OB-) |09084 02356| +630252 |KS Per *|044853.4+431632 |* | 7.60 |( 0.25 )| |V | | | 30. : | |A5Iape+B2: |05767 BD | +630253 |KT Per *|013708.5+505721 |UGZ+ZZ | 11.5 | 15.39 | |V | | |( 26. ) | |pec(UG) |09782 09472| +630254 |KU Per |015043.6+545123 |SRA | 16.0 |< 17.5 | |p |29165. | | 256.5 | | |06953 04341| +630255 |KV Per *|015833.9+572643 |RRC | 13.8 | 14.3 | |p |29516.505 | | 0.249121 |50 | |04025 02281| +630256 |KW Per *|020000.0+531325 |EB/SD | 10.5 | 11.5 | 10.8 |p |42404.332 | | 0.93125884 | |A2 |00001 00462| +630257 |KX Per |021023.7+581310 |EA | 16. | 17. | |p |37667.510 | | | | |04065 04065| +630258 |KY Per *|021430.2+562402 |E | 16.5 | 17.5 | |p |37889.567 | | | | |04065 04065| +630259 |KZ Per *|021507.6+580337 |EA | 14.6 | 15.4 | |p | | | | | |04065 04065| +630260 |LL Per *|021451.5+572934 |EA/SD: | 17. | 19.5 | |p | | | | | |04065 04065| +630261 |LM Per *|022356.7+561719 |EA/SD: | 16. | 18.5 | |p |37701.358 | | | | |04065 04065| +630262 |LN Per *|022557.5+554744 |EA | 17. | 18. | |p | | | | | |04065 04065| +630263 |LO Per *|023110.4+562048 |EA | 16. | 17. | |p |37888.569 | | | | |04065 04065| +630264 |LP Per *|023119.9+565110 |EA | 16. | 17. | |p | | | | | |04065 04065| +630265 |LQ Per *|023127.8+563139 |M | 16. | 19. | |p | | | | | |04065 04065| +630266 |LR Per *|023246.4+562927 |SR: | 17. | 19. | |p | | | | | |04065 04065| +630267 |LS Per |025708.8+375341 |EA/SD | 11.5 | 14.6 | |p |39395.52 | | 2.915693 |12 *|A7IV |05493 04351| +630268 |LT Per |025717.3+315603 |ACV | 5.03 | 5.14 | |V |39837.7 | | 2.88422 | |B9p(Si-Eu-Sr-Cr) |05768 BD | +630269 |LU Per |030055.2+504839 |EA/SD: | 14.9 | 17.1 | |p |41274.407 | | | | |09149 04035| +630270 |LV Per |030352.1+451143 |M | 13.5 |< 17. | |p |37636. | | 420. | | |04035 04065| +630271 |LW Per |030725.6+505748 |M | 14. |< 17. | |p |37730. | | 373.7 | | |04035 04065| +630272 |LX Per *|031322.4+480631 |EA/AR/RS | 8.10 | 8.93 | 8.38 |V |27033.120 | | 8.038207 |07 *|G5IV+G5IV |07407 08953| +630273 |LY Per |032241.2+341237 |SRA | 11.3 | 12.1 | |p |37193. | | 72.5 | |M5 |04038 02378| +630274 |LZ Per |033341.6+485942 |LB | 15.5 | 16.7 | |p | | | | |S |04035 04065| +630275 |MM Per |034523.4+480501 |DCEP | 12.0 | 13.0 | |p | | | 4.118415 |20 |G0 |05342 04015| +630276 |MN Per |034557.1+501653 |EA | 16. |< 17. | |p | | | | | |03776 03776| +630277 |MO Per |034556.9+464827 |EA/SD: | 15. | 17. | |p |38327.66 | | | | |03776 03776| +630278 |MP Per |034840.7+432534 |EA | 15. | 16. | |p | | | | | |03776 03776| +630279 |MQ Per |034948.5+460828 |RR | 17. | 18. | |p | | | | | |03776 03776| +630280 |MR Per |035046.9+481237 |UG | 14.5 | 16.5 | |p | | | | | |03776 03776| +630281 |MS Per *|040112.2+493312 |EB | 11.9 | 12.7 | 12.1 |B |34099.396 | | 2.779526 | | |08635 03776| +630282 |MT Per |040159.4+512207 |E | 14.5 | 15. | |p | | | | | |03776 03776| +630283 |MU Per |040245.1+521217 |IS: | 15.5 | 17. | |p | | | | | |03776 03776| +630284 |MV Per |040355.9+442818 |E | 12. | 12.5 | |p | | | | | |03776 03776| +630285 |MW Per |040557.7+500529 |E | 15.5 | 16. | |p | | | | | |03776 03776| +630286 |MX Per *|040839.7+474245 |GCAS | 4.00 |( 0.09 )| |V | | | 72. : | |B3Vpe |04044 BD | +630287 |MY Per |040912.2+482207 |UG | 16. |< 18. | |p | | | | | |03776 03776| +630288 |MZ Per |041123.9+462105 |EA | 16. | 16.5 | |p |38348.54 | | | | |03776 03776| +630289 |NN Per |041427.6+322809 |RRAB | 14.4 | 15.6 | |p |31146.306 | | 0.4269870 |07 | |04045 04045| +630290 |NO Per |041541.8+484043 |EA: | 11.5 | 12. | |p | | | | | |03776 03776| +630291 |NP Per *|041457.8+312644 |EA/DM | 12.2 | 13.0 | 13.0 |p |38350.527 | | 4.457161 |02 *| |07493 07493| +630292 |NQ Per |041622.2+500611 |E: | 15. | 15.5 | |p | | | | | |03776 03776| +630293 |NR Per *|041516.1+313532 |M | 12.9 | 17.3 | |p |40650. | | 326.7 |48 | |07493 07493| +630294 |NS Per |041844.4+510732 |UG | 15. |< 18. | |p | | | | | |03776 03776| +630295 |NT Per |041930.7+521912 |E | 17. | 18. | |p | | | | | |03776 03776| +630296 |NU Per *|041942.7+500726 |EA | 16. | 17. | |p | | | | | |03776 03776| +630297 |NV Per |041939.6+350432 |M | 14. |< 16.5 | |p | | | 320. : | | |04341 04341| +630298 |NW Per |042221.4+414739 |SR: | 15. | 16. | |p | | | | | |04341 04341| +630299 |NX Per |042339.4+495727 |M | 15.5 |< 18. | |p | | | | |S |03776 03776| +630300 |NY Per |042640.2+321124 |RRAB | 14.2 | 15.6 | |p |38350.430 | | 0.479913 |15 | |04419 04419| +630301 |NZ Per |042759.5+375031 |EA/D | 11.7 | 12.1 | |p |28247.358 | | 0.9379188 |20 *|F2 |04047 02341| +630302 |OO Per |042857.7+455302 |EA/SD: | 16. | 17.5 | |p |38348.48 | | | | |03776 03776| +630303 |OP Per |043002.4+425638 |M: | 15.5 |< 17.5 | |p | | | | | |04341 04341| +630304 |OQ Per |043152.1+475044 |L | 16. | 18. | |p | | | | | |03776 03776| +630305 |OR Per |043213.3+482849 |SR: | 16.5 | 17. | |p | | | | | |03776 03776| +630306 |OS Per |043629.3+491621 |IS: | 16. | 17.5 | |p | | | | | |03776 03776| +630307 |OT Per |043837.9+474425 |DCEP | 12.97 | 13.98 | |V |42094.192 | | 26.091 |12 | |09638 09638| +630308 |OU Per |044055.9+443006 |IS: | 15. | 16. | |p | | | | | |03776 03776| +630309 |OV Per *|044340.0+501420 |E | 15.5 | 16.5 | |p |38327.61 | | | | |03776 03776| +630310 |OW Per |044403.1+493603 |SR | 12.8 | 13.6 | |p |26953. | | 181.6 | | |04014 02546| +630311 |OX Per |044618.0+365724 |EA/SD | 14.7 | 16.3 | |p |29334.307 | | 3.05621 |08 *| |03148 02356| +630312 |OY Per |013453.8+533931 |EA/SD: | 15.0 |< 17.5 | |p |39802.243 | | | | |06953 03910| +630313 |OZ Per |015251.2+521110 |SR | 15.5 | 17. | |p | | | 120. : | | |03905 03905| +630314 |PP Per *|021708.2+583147 |LC | 9.10 | 10.30 | |V | | | | |M0.0-M1.5(Iab-Ib)| 08953| +630315 |PQ Per |021858.0+551712 |EA/SD: | 15. | 17. | |p |29965.40 | | | | |03905 03905| +630316 |PR Per *|022142.4+575146 |LC | 9.8 | 10.8 | |p | | | | |M1Iab-Ib |09635 09635| +630317 |PS Per |023933.3+453806 |EA/SD: | 13.0 |< 13.7 | |p |24527.250 | | 0.7021775 |15 |F5p |03183 03183| +630318 |PT Per |024251.2+564132 |UG | 15. | 18. | |p | | | | | |03905 03905| +630319 |PU Per |024216.1+354047 |UG | 14.7 | 20. : | |p | | | | | |08639 03903| +630320 |PV Per |024253.4+380404 |UG | 14.9 | 20. : | |p | | |( 110. ) | | |08639 03903| +630321 |PW Per |024505.5+361400 |RRAB | 15.1 | 16.3 | |p |38651.545 | | 0.544667 |20 | |08639 06976| +630322 |PX Per |024715.5+355538 |RRAB | 15.1 | 16.3 | |p |38709.529 | | 0.456939 |17 | |08639 03910| +630323 |PY Per |025000.1+373923 |UGZ | 13.8 | 16.5 | |p | | | | |pec(UG) |08656 03910| +630324 |PZ Per |025225.8+364130 |M | 13.6 | 19. : | |p |40939. | | 395.7 |21 |M8 |08639 03903| +630325 |QQ Per |025440.4+514929 |CEP | 14.1 | 15.1 | |p |30590.549 | | 11.19400 | | |03535 02320| +630326 |QR Per *|030048.4+561410 |SR | 15. | 16.5 | |p | | | | | |03905 03905| +630327 |QS Per |030501.4+362445 |EA/SD | 15.5 | 17.3 | |p |38739.510 | | 2.338103 |12 *| |08639 03910| +630328 |QT Per |030609.8+471701 |EW/KE | 14.2 | 15.1 | |p |25234.951 | | 0.852 | | |03535 02320| +630329 |QU Per *|030554.7+404113 |EA/SD | 12.2 | 14.8 | |p |36082.582 | | 2.400936 |18 |A2Ve |09639 03910| +630330 |QV Per |030931.7+382115 |EA/SD | 14.8 | 16.4 | |p |38674.558 | | 1.2590555 |10 *| |08639 03910| +630331 |QW Per *|031243.0+385758 |EA/SD | 14.6 | 15.7 | 14.7 : |p |38642.591 | | 0.8256865 |12 *| |08639 03910| +630332 |QX Per *|031511.5+393448 |EA/SD | 15.6 | 16.8 | 16.1 |p |38709.526 | | 4.849327 |05 :*| |08639 03910| +630333 |QY Per |031536.8+422814 |UG | 14.2 |< 20. | |p | | |( 370. ) | | |08639 03910| +630334 |QZ Per |031758.0+373418 |UV | 14.5 | 17.5 | |p | | | | | |03965 03965| +630335 |V0335 Per |032044.6+461919 |LB: | 13.7 | 14.6 | |p | | | | | |03535 02320| +630336 |V0336 Per |032253.9+413701 |UG | 14.3 |< 20. | |p | | | | | |08639 03910| +630337 |V0337 Per |033110.5+342921 |EA/SD | 12.8 | 14.0 | |p |35887.340 | | 1.88608 |18 *|A |03800 03967| +630338 |V0338 Per |034328.2+320200 |INS: | 16. | 17. | |p | | | | | |03905 03905| +630339 |V0339 Per |035008.0+334837 |EA/SD | 15.7 |< 17.5 | |p |37550.436 | | 1.099031 |12 : | |09640 09640| +630340 |V0340 Per |035412.9+350220 |EA/SD: | 12.8 | 13.7 | |p |28427.540 | | 4.37102 |10 :*| |03800 04376| +630341 |V0341 Per |040222.0+325430 |RR | 16. | 17. | |p |39058.49 | | | | |03905 03905| +630342 |V0342 Per |040942.3+471332 |EA/SD: | 16. |< 18. | |p |38325.47 | | | | |03905 03905| +630343 |V0343 Per |042305.7+501449 |E | 16. | 17. | |p |38328.43 | | | | |03905 03905| +630344 |V0344 Per |042332.6+444118 |EA | 15.5 | 16.5 | |p |38652.61 | | | | |03905 03905| +630345 |V0345 Per *|042959.8+351335 |INS: | 13.6 | 14.9 | |I | | | | | |03947 03947| +630346 |V0346 Per *|043010.6+351656 |INS: | 14.9 | 15.6 | |I | | | | | |03947 03947| +630347 |V0347 Per *|043049.7+345728 |INS: | 16.3 | 17.2 | |p | | | | | |03947 03947| +630348 |V0348 Per |044530.1+494750 |M | 14.5 |< 20. | |p |38330. :| | | | |03905 03905| +630349 |V0349 Per |013629.3+534926 |LB | 14.0 | 15.0 | |p | | | | | |06953 04341| +630350 |V0350 Per |015235.1+575019 |SRA | 16.2 | 17.3 | |p |29455. | | 132. | | |06953 03910| +630351 |V0351 Per *|020925.7+565930 |BCEP: | 8.69 | 8.72 | |V | | | 0.3746 | |B1IVe |05522 BD | +630352 |V0352 Per *|021337.0+563414 |BCEP | 9.47 | 9.49 | |B | | | 0.21995 | |B1III |05522 BD | +630353 |V0353 Per |021351.8+535453 |BCEP | 8.85 | 8.91 | |B | | | 0.3908 | |B0.5IV |05522 BD | +630354 |V0354 Per *|021545.9+555947 |BCEP | 8.01 | 8.03 | |B | | | 0.45039 | |O9.7Ib-IIIn: |05522 BD | +630355 |V0355 Per *|021604.4+574442 |E: | 9.05 | 9.09 | |V | | | 0.7074 | |B1IV |05522 BD | +630356 |V0356 Per *|021657.7+570749 |BCEP: | 9.29 | 9.34 | |B | | | 0.30595 | |B0.5IIInea |05522 BD | +630357 |V0357 Per *|021657.6+564308 |BCEP: | 7.44 | 7.52 | |V | | | 0.28619 : | |B2Ib-II:p |05522 BD | +630358 |V0358 Per *|021708.2+564611 |GCAS: | 8.43 | 8.54 | |V | | | | |B1IIIpe |09641 BD | +630359 |V0359 Per *|022015.7+570555 |BCEP: | 9.27 | 9.30 | |B | | | 0.27500 | |B1III-IV |05522 BD | +630360 |V0360 Per *|022249.8+573042 |BCEP: | 9.85 | 9.88 | |B | | | 0.20072 : | |B1III |05522 BD | +630361 |V0361 Per *|022335.4+563428 |GCAS | 9.06 | 9.64 | |V | | | | |B1.5IIIpe |06962 05525| +630362 |V0362 Per |023411.4+582420 |BCEP: | 8.22 | 8.24 | |B | | | 0.25942 : | |B0IIIn |05522 BD | +630363 |V0363 Per *|024107.8+551300 |SR: | 15.5 | 17. | |p | | | | | |03905 03905| +630364 |V0364 Per *|024400.8+361729 |EW/KW: | 14.6 | 15.6 | 15.6 |p |39026.486 | | 0.3394669 | | |08639 05506| +630365 |V0365 Per *|024358.3+405058 |EA | 14.2 | 14.8 | 14.3 : |p |38667.444 | | 3.024338 |11 *| |08639 05506| +630366 |V0366 Per |024410.6+363512 |EA/SD | 13.7 |< 16.3 | |p |38642.608 | | 1.4219831 |10 *| |08639 05506| +630367 |V0367 Per |024537.1+424720 |LB | 13.1 | 14.5 | |p | | | | | |08639 05506| +630368 |V0368 Per |024732.6+345828 |UGZ: | 15.2 |< 17.5 | |p | | | | | |08639 06976| +630369 |V0369 Per |025117.2+381441 |IS | 10.5 | 13.7 | |p | | | | | |09105 06976| +630370 |V0370 Per |025424.8+364000 |RRAB | 15.7 | 16.4 | |p |38709.585 | | 0.548119 |13 | |08639 05506| +630371 |V0371 Per |025531.2+423520 |I: | 10.6 | 11.6 | |p | | | | |G0 |03587 05582| +630372 |V0372 Per |025639.6+370824 |UG | 15.4 |< 19.0 | |B | | | | | |08639 05515| +630373 |V0373 Per |031444.0+422253 |SR | 14.2 | 15.3 | |p | | | 320. : | | |08639 05515| +630374 |V0374 Per |031722.5+421927 |LB: | 10.6 | 11.5 | |p | | | | |M6 |03587 05582| +630375 |V0375 Per |032651.3+401300 |RRAB | 12.8 | 14.0 | |p |28539.330 | | 0.546074 |15 | |03800 00940| +630376 |V0376 Per *|034908.1+435747 |DSCT | 5.77 | 5.91 | |V | | | 0.09937 | |A7IIIn |09642 BD | +630377 |V0377 Per |035124.3+361529 |LB | 16. | 17. | |p | | | | | |05515 05515| +630378 |V0378 Per |035501.2+323538 |RRAB | 13.1 | 14.0 | |p |27398.410 | | 0.3987185 |14 | |03800 03800| +630379 |V0379 Per |035757.4+312237 |EA | 13.5 | 14.5 | |p |39144.33 | | | | |05515 05515| +630380 |V0380 Per *|040310.9+380317 |ACV | 7.76 |( 0.03 )| |V |37315.14 | | 3.90072 | |A0p(Sr-Cr-Eu) |09390 BD | +630381 |V0381 Per |041030.7+325618 |RR | 15.5 | 16.5 | |p |39443.39 | | | | |05515 05515| +630382 |V0382 Per *|023222.7+585723 |E/SD: | 14.0 | 15.8 | |V |39080.326 | | | |G5V |05849 05849| +630383 |V0383 Per |030632.2+333731 |ACV: | 7.84 | 7.87 | |V |39860.7 | | 7.7 | |B9V |05390 BD | +630384 |V0384 Per |032629.5+473149 |M | 11.3 | 14.2 | |V |40736. | | 535. | |C(N) |09796 09062| +630385 |V0385 Per |035617.6+434849 |SRA | 13.5 | 15.5 | |p | | | | | |05884 05884| +630386 |V0386 Per |035803.1+344850 |DSCTC | 6.50 | 6.58 | |V | | | 0.052 | |A8V |06255 BD | +630387 |V0387 Per |041911.4+443620 |M | 15. |< 20. | |p | | | | | |05884 05884| +630388 |V0388 Per |042021.7+455509 |EA | 16. | 17. | |p |40149.58 | | | | |05884 05884| +630389 |V0389 Per |042523.3+505516 |E:/SD: | 15.5 | 17. | |p |40476.52 | | | | |05884 05884| +630390 |V0390 Per |044126.3+494203 |E | 15.5 | 16. | |p |40476.55 | | | | |05884 05884| +630391 |V0391 Per |044126.4+512940 |E: | 16.5 | 17. | |p |38328.50 | | | | |05884 05884| +630392 |V0392 Per *|044321.4+472127 |UGZ: | 15. | 17.5 | |p | | | | | |05884 05884| +630393 |V0393 Per |030941.7+473907 |UV | 15.2 | 16.0 | |p | | | | | |06337 06337| +630394 |V0394 Per *|040937.0+332937 |LB | 11.6 | 13.3 | |V | | | | |M8 |03905 06977| +630395 |V0395 Per *|044038.5+412952 |SR: | 13.2 | 13.9 | |V | | | 450. : | |C(N) |06566 06566| +630396 |V0396 Per *|033208.6+480125 |SXARI | 5.45 | 5.53 | |V |45699.972 | | 2.4761 | |B5Vp(Mn-He weak) |06879 BD | +630397 |V0397 Per *|035523.5+310308 |LB: | 11.67 | 12.40 | |V | | | | |M |06880 2MASS| +630398 |V0398 Per *|043225.1+310704 |L: | 12.2 | 13.3 | |p | | | | | |06881 06881| +630399 |V0399 Per |024755.9+362240 |LB | 14.2 | 15.1 | |p | | | | | |08639 06976| +630400 |V0400 Per |030738.3+470740 |NAB | 8.0 | 18.26 | |V |42313. |1974 | | |pec(NOVA) | 07475| +630401 |V0401 Per |020215.8+523341 |LB | 10.8 | 12.2 | |p | | | | |S6e |09646 09646| +630402 |V0402 Per |020840.4+514801 |SR: | 11.3 | 12.1 | |p | | | | |M7 |04022 BD | +630403 |V0403 Per *|022324.1+571243 |LC: | 8.31 | 8.50 | |V | | | | |M0Iab | BD | +630404 |V0404 Per |025225.2+332706 |L: | 15.5 | 16.4 | |p | | | | | |06976 06976| +630405 |V0405 Per |025448.6+325207 |E | 12.2 | 13.3 | |p | | | | | |06976 06976| +630406 |V0406 Per |030453.1+410528 |LB | 12.6 | 14.1 | |p | | | | | |08634 08634| +630407 |V0407 Per |030608.7+391354 |RRAB | 15.5 | 16.2 | |p |40514.590 | | 0.617813 |37 | |08634 08634| +630408 |V0408 Per |030802.9+473318 |SR: | 14.2 | 15.2 | |p | | | 700. : | | |01076 02320| +630409 |V0409 Per *|030945.8+455756 |M | 9.6 | 11.1 | |V |41295. | | 355. | |N |08422 08422| +630410 |V0410 Per |031338.6+474934 |SRB: | 8.8 | 9.4 | |V | | | 110. : | |C7,4(Np) |08460 08422| +630411 |V0411 Per |031508.4+545303 |SRC | 9.24 | 10.07 | |V | | | 467. | |M3.4Ia |09647 BD | +630412 |V0412 Per |032901.1+492454 |SR: | 14.4 | 15.3 | |p | | | | |M6.5 |01076 02320| +630413 |V0413 Per |033903.0+325230 |M: | 14.7 |< 17.5 | |p |33533. | | | | |00001 07840| +630414 |V0414 Per |035214.3+395252 |LB: | 13.0 | 13.8 | |V | | | | |C |06977 06977| +630415 |V0415 Per |040321.6+454534 |SR: | 15. | 16. | |p | | | | | |03776 03776| +630416 |V0416 Per |040808.9+452411 |RR: | 15.5 | 16. | |p | | | | | |03776 03776| +630417 |V0417 Per |041829.2+481236 |SR: | 15. | 16. | |p | | | | | |03776 03776| +630418 |V0418 Per |041900.8+471043 |LB | 15. | 16. | |p | | | | | |03776 03776| +630419 |V0419 Per |042203.4+312422 |IS: | 13.8 | 15.0 | |p | | | | | |06996 01090| +630420 |V0420 Per |044412.1+484442 |LB: | 12.5 | 13.6 | |p | | | | |M6 |00319 00319| +630421 |V0421 Per |044534.9+433422 |RR | 14.2 | 15.5 | |p |36640.299 | | | | |08163 02341| +630422 |V0422 Per |044634.9+444235 |LB: | 10.03 | 10.13 | |V | | | | |M2 |07315 BD | +630423 |V0423 Per *|031601.9+344119 |ELL: | 6.65 |( 0.03 )| |U | | | 5.543491 | |A1m |09648 BD | +630424 |V0424 Per *|022150.8+572312 |GCAS: | 8.72 | 9.28 | |V | | | | |B1V:pe | BD | +630425 |V0425 Per *|023153.4+574152 |ACYG | 6.98 | 7.10 | |V | | | 16.1 | |B6Iaea |09651 BD | +630426 |V0426 Per |025925.3+412003 |LB | 12.8 | 13.4 | |p | | | | | |08639 03910| +630427 |V0427 Per |025931.2+392644 |EA/SD: | 11.6 | 12.1 | |p |37345.343 | | 2.810055 |07 *| |09652 00940| +630428 |V0428 Per *|030235.9+411204 |RR | 14.3 | 15.2 | |p |41628.456 | | 0.664191 |30 : | |08634 03910| +630429 |V0429 Per |030536.8+424325 |SRB | 13.8 | 14.8 | |p | | | 100. : | | |08639 03910| +630430 |V0430 Per |030736.5+425407 |SRA | 13.6 |< 16.0 | |p |41622. | | 59.08 | | |00001 06286| +630431 |V0431 Per |030934.2+421946 |LB | 13.6 | 14.3 | |p | | | | | |08639 03910| +630432 |V0432 Per *|031010.8+425209 |EW/KW | 11.0 | 11.7 | 11.6 |p |35874.376 | | 0.321517 | | |08639 05515| +630433 |V0433 Per |031435.2+431447 |RRAB | 14.2 | 15.5 | |p |39380.552 | | 0.541097 |17 | |08639 03910| +630434 |V0434 Per *|032136.0+401923 |EW/KE: | 14.4 | 15.1 | 14.9 |p |38709.473 | | 0.536098 | | |08639 03910| +630435 |V0435 Per |044250.3+464204 |CEP: | 13.3 | 14.4 | |p | | | | | |08163 08163| +630436 |V0436 Per *|015159.3+550851 |EA/D | 5.49 | 5.85 | 5.74 |V |43562.853 | | 25.9359 |02 |B1.5V |09801 BD | +630437 |V0437 Per *|015829.5+551259 |M | 11.4 | 14.4 | |V |42800. | | 470. | |N |08734 09802| +630438 |V0438 Per *|021746.3+563829 |ELL | 8.28 | 8.34 | 8.34 |V |43000.00 | | 3.50924 | |B1IV-V |08454 BD | +630439 |V0439 Per *|022311.1+571158 |LC | 8.03 | 8.49 | |V | | | | |M0.5Iab |02556 BD | +630440 |V0440 Per *|022351.7+552154 |DCEPS | 6.18 | 6.32 | |V |44869.94 | | 7.570 |50 |F7Ib |09803 BD | +630441 |V0441 Per |022521.9+572614 |LC | 8.19 | 8.53 | |V | | | | |M2.5Iab |02556 BD | +630442 |V0442 Per |024457.5+381531 |ISB | 13.4 | 14.3 | |p | | | | | |08639 03910| +630443 |V0443 Per |024642.3+371749 |ISB | 13.2 | 14.5 | |p | | | | | |08639 03910| +630444 |V0444 Per |024738.9+405336 |SRD | 15.7 | 16.4 | |p | | | 185. | | |08639 03910| +630445 |V0445 Per |024738.7+393936 |LB | 12.1 | 13.2 | |p | | | | |M5 |08639 03910| +630446 |V0446 Per |024918.7+350031 |S: | 15.4 | 16.5 | |p | | | | | |08639 03910| +630447 |V0447 Per |025034.1+352420 |RRAB | 13.7 | 15.2 | |p |38641.543 | | 0.535127 |17 | |08639 03910| +630448 |V0448 Per |025203.1+382846 |LB | 13.9 | 15.7 | |p | | | | | |08639 03903| +630449 |V0449 Per *|025733.5+351401 |EA/KE | 12.7 | 13.3 | 13.3 |p |38739.276 | | 0.946204 |10 *| |08639 03905| +630450 |V0450 Per |025915.3+414523 |EA | 13.0 | 13.7 | |p |38407.446 | | 0.948666 |16 *| |08639 03910| +630451 |V0451 Per *|030134.0+404410 |EW/KW | 15.6 | 16.1 | 15.8 |p |38709.463 | | 0.441878 | | |08639 03910| +630452 |V0452 Per |030350.2+421259 |LB | 12.4 | 12.8 | |p | | | | |M5 |08639 03905| +630453 |V0453 Per |030607.3+364006 |RR: | 16.2 | 16.5 | |p | | | | | |08639 05506| +630454 |V0454 Per |030644.4+380216 |RRAB | 15.7 | 16.4 | |p |38651.549 | | 0.552902 |17 | |08639 03910| +630455 |V0455 Per |030730.0+371851 |EW: | 16.5 | 16.9 | |p | | | | | |08639 05506| +630456 |V0456 Per |031011.9+400216 |SRB | 13.4 | 15.5 | |p | | | 130. | | |08639 03910| +630457 |V0457 Per |031114.1+365926 |EA/SD | 14.4 | 15.3 | |p |38667.414 | | 1.1702843 |12 *| |08639 03910| +630458 |V0458 Per |031247.0+384750 |LB | 14.4 | 16.4 | |p | | | | | |08639 03910| +630459 |V0459 Per *|032158.6+491254 |DSCTC | 9.14 |( 0.01 )| |V | | | 0.037 | |F0IV |08456 BD | +630460 |V0460 Per |032231.4+420557 |RRAB | 14.1 | 15.4 | |p |38653.567 | | 0.5398063 |14 | |08639 03903| +630461 |V0461 Per *|032419.2+491317 |DSCTC | 8.98 |( 0.01 )| |V | | | 0.035 | |F0V |08456 BD | +630462 |V0462 Per *|032631.3+354500 |EB/KE | 13.7 | 14.2 | 14.0 |p |40152.367 | | 1.155933 | | |08639 05506| +630463 |V0463 Per |032814.9+402219 |SRA | 13.4 | 14.6 | |p |38680. | | 190.3 | | |08639 03905| +630464 |V0464 Per |032848.8+381337 |E | 15.3 | 16.3 | |p |42743.433 | | | | |08639 05506| +630465 |V0465 Per *|033034.0+473742 |DSCTC | 8.78 |( 0.02 )| |V | | | 0.070 | |A6Vn |08457 BD | +630466 |V0466 Per *|034129.6+513011 |SR | 10.9 | 12.7 | |p | | | | |C5,5(N5) |08461 BD | +630467 |V0467 Per |034932.7+330529 |E/D | 5.05 | 5.18 | |V |43101.24 | | 22.58 | |A2V |08464 BD | +630468 |V0468 Per *|042017.3+361628 |ZZA | 15.59 |( 0.20 )| |V | | | | |DAS |09813 04139| +630469 |V0469 Per *|042133.2+462956 |BCEP | 4.81 | 4.86 | |V | | | 0.304 | |B4.5V |08468 BD | +630470 |V0470 Per *|044950.1+405831 |SRA | 13.2 | 14.5 | |V |41955. | | 475. |28 |C |08469 08469| +630471 |V0471 Per *|015849.6+525349 |EA:/PN | 13.03 | 13.27 | |V | | | 0.16668 |20 |G2Ib |08781 08077| +630472 |V0472 Per |020840.6+582525 |ACYG | 5.64 | 5.74 | |V | | | | | |67175 BD | +630473 |V0473 Per |021639.2+564416 |BCEP: | 8.25 | 8.27 | |V | | | | | |67180 BD | +630474 |V0474 Per |022221.4+555044 |ACYG | 5.15 | 5.25 | |V | | | | | |67175 BD | +630475 |V0475 Per |022645.7+574045 |ACYG | 7.15 | 7.26 | |V | | | | | |67175 BD | +630476 |V0476 Per |023921.1+433700 |EW | 14.6 | 15.2 | |p | | | | | |67007 67007| +630477 |V0477 Per |024344.6+403247 |EA | 14.4 | 15.1 : | |p | | | | | |67007 67007| +630478 |V0478 Per |024520.1+394541 |EW/KW | 16.6 | 17.4 | |p | | | | | |67007 67007| +630479 |V0479 Per |024605.7+431708 |EA: | 14.4 | 17.9 | |p | | | | | |67007 67007| +630480 |V0480 Per |024930.7+570504 |ACYG | 6.23 | 6.30 | |V | | | | | |67175 BD | +630481 |V0481 Per |041308.8+494235 |EB: | 12.0 | 13.2 | |p | | | | | |67182 67181| +630482 |V0482 Per |041541.3+472520 |EA/DM: | 10.6 | 10.9 | |p | | | | | |67182 67181| +630483 |V0483 Per |025134.2+375013 |UV | 15.1 | 17.0 | |p | | | | | |68195 68195| +630484 |V0484 Per |032221.9+490828 |BY | 11.66 | 11.75 | |V | | | | | |68196 | +630485 |V0485 Per |032425.1+484822 |BY | 14.07 | 14.18 | |V | | | | | |68196 GSC | +630486 |V0486 Per |032627.6+490213 |BY | 12.77 | 12.88 | |V | | | | | |68196 GSC | +630487 |V0487 Per |032723.3+482226 |BY | 12.91 | 13.07 | |V | | | | | |68196 GSC | +630488 |V0488 Per |032818.6+483949 |BY | 12.80 | 12.86 | |V | | | | | |68196 GSC | +630489 |V0489 Per |033022.5+482442 |BY | 14.27 | 14.37 | |V | | | | | |68196 GSC | +630490 |V0490 Per |040639.0+322306 |E: | 6.98 | 7.27 | |V | | | | | |68284 BD | +630491 |V0491 Per |040734.4+380428 |BY | 7.10 |( 0.03 )| |V | | | | | |68053 BD | +630492 |V0492 Per |043157.0+364434 |RS: | 6.7 |( 0.07 )| |V | | | | | |68053 BD | +630493 |V0493 Per |024111.7+564350 |WR | 10.6 |( 0.04 )| |V | | | | | |69223 69224| +630494 |V0494 Per |025655.8+482637 |ISB | 13. | 14. | |p | | | | | |69225 69225| +630495 |V0495 Per | | | | | | | | | | | | |=V0409 Per +630496 |V0496 Per |033511.9+380055 |ACV | 7.70 | 7.79 | |U | | | | | |69056 BD | +630497 |V0497 Per |034229.4+353821 |ACV | 9.52 | 9.56 | |V | | | | | |69056 BD | +630498 |V0498 Per |034948.9+353601 |ACV | 8.96 | 9.04 | |B | | | | | |69056 BD | +630499 |V0499 Per |035224.7+342749 |ACV | 9.96 | 10.01 | |U | | | | | |69056 BD | +630500 |V0500 Per |034839.0+505042 |SR | 9.8 | 10.7 | |p | | | | | |70001 70001| +630501 |V0501 Per |041552.6+511306 |DSCT | 13.13 |( 0.13 )| |V | | | | | |70090 70090| +630502 |V0502 Per |021744.7+565400 |BE | 9.36 | 9.56 | |V | | | | | |71011 71012| +630503 |V0503 Per |022039.0+571843 |BE | 9.43 | 9.72 | |V | | | | | |71011 71012| +630504 |V0504 Per |022118.1+571822 |BE | 9.77 | 9.98 | |V | | | | | |71011 71012| +630505 |V0505 Per |022113.0+543036 |EA/DM | 6.87 | 7.46 | |V | | | | | |71013 BD | +630506 |V0506 Per |022143.4+570733 |BE | 9.45 |( 0.24 )| |V | | | | | |71011 71012| +630507 |V0507 Per |022152.9+570959 |BE | 9.77 | 10.09 | |V | | | | | |71011 71227| +630508 |V0508 Per |023301.1+582537 |I | 16.1 | 18.0 | |B | | | | | |71015 GSC22| +630509 |V0509 Per |030356.7+475055 |DSCT | 6.47 | 6.64 | |V | | | | | |71018 BD | +630510 |V0510 Per |031351.2+435147 |RS | 7.30 |( 0.22 )| |V | | | | | |71228 BD | +630511 |V0511 Per |032625.5+402731 |EA/DM | 8.1 | 8.6 | |V | | | | | |71014 BD | +630512 |V0512 Per |032903.8+311604 |INT | 20.22 | 23.8 : | |V | | | | | |71022 71022| +630513 |V0513 Per |033232.3+412632 |M | 10.4 | 13. : | |V | | | | | |71024 71024| +630514 |V0514 Per |031938.9+500653 |E | 11.4 |( 0.32 )| |V | | | | | |72138 72138| +630515 |V0515 Per |032718.2+475729 |UV | 12.7 |( 9.0 : )| |U | | | | | |72139 72139| +630516 |V0516 Per |032854.2+501619 |UV | 14.1 |( 4.6 : )| |U | | | | | |72139 72139| +630517 |V0517 Per |034041.8+390002 |LB | 10.5 | 11.4 | |p | | | | | |72022 BD | +630518 |V0518 Per |042142.8+325427 |XND+ELL: | 13.15 |< 22.4 | |V | | | | | |72140 72140| +630519 |V0519 Per |021832.8+571240 |BE | 9.05 | 9.40 | |V | | | | | |73257 BD | +630520 |V0520 Per |021904.5+570808 |IA | 6.55 | 6.66 | |V | | | | | |73257 BD | +630521 |V0521 Per |030747.3+471831 |DSCTC | 6.41 | 6.42 | |V | | | | | |73258 BD | +630522 |V0522 Per |031827.4+472115 |BY | 11.50 |( 0.15 )| |V | | | | | |73259 73262| +630523 |V0523 Per |031850.4+481604 |BY | 12.59 |( 0.04 )| |V | | | | | |73260 GSC | +630524 |V0524 Per |031858.6+485044 |BY | 13.44 |( 0.14 )| |V | | | | | |73373 GSC | +630525 |V0525 Per |031902.8+481100 |BY | 11.99 |( 0.10 )| |V | | | | | |73260 73262| +630526 |V0526 Per |031957.7+495208 |BY | 12.37 | 12.64 | |V | | | | | |73261 73261| +630527 |V0527 Per |032001.3+465302 |BY | 12.57 |( 0.04 )| |V | | | | | |73259 GSC | +630528 |V0528 Per |032116.0+483508 |BY | 12.80 |( 0.18 )| |V | | | | | |73262 73262| +630529 |V0529 Per |032206.8+473407 |BY | 12.00 |( 0.15 )| |V | | | | | |73260 73262| +630530 |V0530 Per |032448.4+485321 |BY | 11.71 |( 0.09 )| |V | | | | | |73259 73262| +630531 |V0531 Per |032449.7+485218 |BY | 11.63 |( 0.06 )| |V | | | | | |73259 73262| +630532 |V0532 Per |032622.2+492538 |BY | 11.27 |( 0.11 )| |V | | | | | |73262 73262| +630533 |V0533 Per |032738.5+482501 |BY | 15.74 |( 0.11 )| |V | | | | | |73260 73262| +630534 |V0534 Per |032751.0+491211 |BY | 12.29 |( 0.03 )| |V | | | | | |73259 GSC | +630535 |V0535 Per |032810.5+472527 |BY | 13.52 |( 0.10 )| |V | | | | | |73263 GSC | +630536 |V0536 Per |032848.4+491155 |BY | 13.05 |( 0.20 )| |V | | | | | |73259 73262| +630537 |V0537 Per |033230.7+491035 |BY | 11.98 |( 0.19 )| |V | | | | | |73262 73262| +630538 |V0538 Per |033251.1+495044 |BY | 13.08 |( 0.08 )| |V | | | | | |73263 GSC | +630539 |V0539 Per |033429.3+492144 |BY | 13.24 |( 0.07 )| |V | | | | | |73263 GSC | +630540 |V0540 Per |033622.0+490921 |BY | 11.83 |( 0.11 )| |V | | | | | |73262 73262| +630541 |V0541 Per |033653.7+482359 |BY | 12.45 |( 0.11 )| |V | | | | | |73259 73262| +630542 |V0542 Per |034033.9+480436 |BY | 12.89 |( 0.04 )| |V | | | | | |73259 GSC | +630543 |V0543 Per |034543.4+461805 |BY | 12.21 |( 0.12 )| |V | | | | | |73260 73222| +630544 |V0544 Per |041222.8+510948 |LB | 13.5 | 14.1 | |V | | | | | |73264 73264| +630545 |V0545 Per |041808.1+420828 |LPB | 6.22 |( 0.04 )| |V | | | | | |73265 BD | +630546 |V0546 Per |043025.3+395100 |BY | 13.90 | 13.96 | |V | | | | | |73018 73102| +630547 |V0547 Per *|014510.0+535709 |LB: | 9.91 | 10.06 | |Hp| | | | | |HIP HIP | +630548 |V0548 Per |015607.1+563316 |BE | 9.65 | 9.98 | |Hp| | | | | |HIP HIP | +630549 |V0549 Per |021453.1+543154 |BE | 7.81 | 7.88 | |Hp| | | | | |HIP HIP | +630550 |V0550 Per |021513.3+580832 |SRC: | 8.71 | 8.88 | |Hp| | | | | |HIP HIP | +630551 |V0551 Per |021651.7+570319 |ACYG | 6.54 | 6.57 | |Hp| | | | | |HIP HIP | +630552 |V0552 Per |022129.4+511724 |EB | 8.30 | 8.43 | |Hp| | | | | |HIP HIP | +630553 |V0553 Per |022253.5+571443 |ACYG: | 7.54 | 7.66 | |Hp| | | | | |HIP HIP | +630554 |V0554 Per |022516.0+563635 |ACYG: | 6.28 | 6.36 | |Hp| | | | | |HIP HIP | +630555 |V0555 Per |023119.5+565352 |BE | 8.96 | 9.15 | |Hp| | | | | |HIP HIP | +630556 |V0556 Per |023318.4+561905 |ACYG: | 8.86 | 9.08 | |Hp| | | | | |HIP HIP | +630557 |V0557 Per |024036.9+440528 |ACV: | 7.32 | 7.37 | |Hp| | | | | |HIP HIP | +630558 |V0558 Per |024124.2+441541 |LB: | 9.34 | 9.49 | |Hp| | | | | |HIP HIP | +630559 |V0559 Per |024134.9+472123 |ACV: | 8.96 | 9.06 | |Hp| | | | | |HIP HIP | +630560 |V0560 Per |024139.2+393217 |LB: | 8.43 | 8.53 | |Hp| | | | | |HIP HIP | +630561 |V0561 Per |024152.6+450007 |SRD | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +630562 |V0562 Per |024241.4+502750 |ACV: | 8.86 | 8.99 | |Hp| | | | | |HIP HIP | +630563 |V0563 Per |024749.0+521917 |LB | 8.22 | 8.40 | |Hp| | | | | |HIP HIP | +630564 |V0564 Per |025033.5+361749 |LB: | 8.47 | 8.59 | |Hp| | | | | |HIP HIP | +630565 |V0565 Per |025728.5+522838 |BY: | 9.34 | 9.54 | |Hp| | | | | |HIP HIP | +630566 |V0566 Per |025759.2+495241 |ACV: | 9.38 | 9.50 | |Hp| | | | | |HIP HIP | +630567 |V0567 Per |030315.7+330853 |SRD | 7.91 | 8.05 | |Hp| | | | | |HIP HIP | +630568 |V0568 Per |030651.4+402134 |BY: | 9.76 | 9.92 | |Hp| | | | | |HIP HIP | +630569 |V0569 Per |030847.5+370245 |LB: | 7.87 | 7.98 | |Hp| | | | | |HIP HIP | +630570 |V0570 Per |030934.9+483729 |EB: | 8.15 | 8.25 | |Hp| | | | | |HIP HIP | +630571 |V0571 Per |031123.7+380410 |LB | 7.17 | 7.34 | |Hp| | | | | |HIP HIP | +630572 |V0572 Per |031548.7+505721 |EA | 6.50 | 6.79 | |Hp| | | | | |HIP HIP | +630573 |V0573 Per |031635.2+321103 |E: | 6.11 | 6.19 | |Hp| | | | | |HIP HIP | +630574 |V0574 Per |032231.1+321424 |SRB | 7.26 | 7.39 | |Hp| | | | | |HIP HIP | +630575 |V0575 Per |032313.2+491248 |LPB: | 5.27 | 5.32 | |Hp| | | | | |HIP HIP | +630576 |V0576 Per |032557.4+490715 |LPB: | 6.04 | 6.08 | |Hp| | | | | |HIP HIP | +630577 |V0577 Per |033313.5+461527 |BY: | 8.24 | 8.35 | |Hp| | | | | |HIP HIP | +630578 |V0578 Per |033409.8+465057 |EB | 8.94 | 9.10 | |Hp| | | | | |HIP HIP | +630579 |V0579 Per |033912.2+411658 |RRC: | 7.87 | 7.94 | |Hp| | | | | |HIP HIP | +630580 |V0580 Per *|034702.0+412538 |E: | 7.75 | 8.07 | |Hp| | | | | |HIP HIP | +630581 |V0581 Per |035620.4+445615 |BE | 7.77 | 7.87 | |Hp| | | | | |HIP HIP | +630582 |V0582 Per *|040836.6+380223 |RS: | 5.63 | 5.74 | |Hp| | | | | |HIP HIP | +630583 |V0583 Per |041025.1+421026 |LB | 7.51 | 7.83 | |Hp| | | | | |HIP HIP | +630584 |V0584 Per |041236.5+420706 |BE | 8.00 | 8.19 | |Hp| | | | | |HIP HIP | +630585 |V0585 Per |041716.9+464148 |SRD: | 7.48 | 7.51 | |Hp| | | | | |HIP HIP | +630586 |V0586 Per |041716.4+461350 |BE | 8.00 | 8.11 | |Hp| | | | | |HIP HIP | +630587 |V0587 Per |041830.5+495153 |LB: | 8.40 | 8.52 | |Hp| | | | | |HIP HIP | +630588 |V0588 Per |042012.0+371203 |SRB | 7.77 | 7.93 | |Hp| | | | | |HIP HIP | +630589 |V0589 Per |042239.9+473936 |LB | 7.81 | 7.90 | |Hp| | | | | |HIP HIP | +630590 |V0590 Per |042424.9+341853 |EB: | 7.20 | 7.44 | |Hp| | | | | |HIP HIP | +630591 |V0591 Per |043007.9+455702 |LB: | 7.80 | 8.13 | |Hp| | | | | |HIP HIP | +630592 |V0592 Per *|044433.0+395232 |EB | 8.30 | 8.65 | |Hp| | | | | |HIP HIP | +630593 |V0593 Per |044743.1+401357 |EB | 8.67 | 8.87 | |Hp| | | | | |HIP HIP | +630594 |V0594 Per |045039.2+502433 |LB: | 7.64 | 7.74 | |Hp| | | | | |HIP HIP | +630595 |V0595 Per |022208.6+570729 |BCEP | 9.08 |( 0.03 )| |V | | | | | |75209 75209| +630596 |V0596 Per |023300.3+580206 |M | 9.03 |( 2.5 )| |K | | | | | |75074 2MASS| +630597 |V0597 Per |025342.4+400419 |DSCTC | 9.30 |( 0.02 )| |V | | | | | |75210 BD | +630598 |V0598 Per |031107.3+553030 |DCEP | 13.2 | 15.0 | |B | | | | | |75069 75069| +630599 |V0599 Per |031544.3+502855 |UV: | 13.9 | 14.9 | |U | | | | | |75211 75211| +630600 |V0600 Per |031901.4+324116 |EB | 7.62 | 8.06 | |V | | | | | |75212 BD | +630601 |V0601 Per |032303.4+485306 |BY | 16.96 | 17.16 | |Ic| | | | | |75213 75213| +630602 |V0602 Per |032926.7+492036 |UV | 13.1 | 14.5 | |U | | | | | |75211 75211| +630603 |V0603 Per |034745.4+511050 |M: | 12.8 |< 14.5 | |p | | | | | |75002 USNO | +630604 |V0604 Per |041219.4+484005 |SR: | 12.9 | 14.0 | |p | | | | | |75002 GSC | +630605 |V0605 Per |041745.7+521305 |SR: | 12.8 | 13.7 | |p | | | | | |75002 GSC | +630606 |V0606 Per |042031.7+514530 |SR: | 13.1 | 14.3 | |p | | | | | |75002 USNO | +630607 |V0607 Per |042607.1+521919 |SR: | 12.7 | 13.7 | |p | | | | | |75002 GSC | +630608 |V0608 Per |042650.2+514603 |SR: | 12.7 | 13.8 | |p | | | | | |75002 GSC | +630609 |V0609 Per |044833.7+514117 |SR | 13.6 |< 14.6 | |p | | | | | |75002 USNO | +630610 |V0610 Per |044938.8+401722 |SR: | 12.8 | 14.0 | |p | | | | | |75002 GSC | +630611 |V0611 Per |021829.8+570903 |BCEP | 9.35 |( 0.04 )| |V | | | | | |76021 76021| +630612 |V0612 Per |021851.1+570836 |LPB | 11.94 |( 0.14 )| |V | | | | | |76021 76021| +630613 |V0613 Per |021853.9+570822 |BE | 9.50 |( 0.01 )| |V | | | | | |76021 76021| +630614 |V0614 Per |021900.1+570844 |BCEP | 9.90 |( 0.02 )| |V | | | | | |76021 76021| +630615 |V0615 Per |021901.7+570719 |EA | 12.98 | 13.40 | |V | | | | | |76021 76021| +630616 |V0616 Per |021904.2+570943 |EW | 16.4 |( 0.9 )| |V | | | | | |76021 76021| +630617 |V0617 Per |021906.7+570853 |ELL: | 11.13 |( 0.02 )| |V | | | | | |76021 76021| +630618 |V0618 Per |021911.7+570640 |EA | 14.60 | 15.13 | |V | | | | | |76021 76021| +630619 |V0619 Per |022202.8+570826 |BCEP | 10.0 |( 0.04 )| |B | | | | | |76022 76022| +630620 |V0620 Per |022209.0+570726 |EA | 12.0 |( 0.28 )| |B | | | | | |76022 76022| +630621 |V0621 Per |022209.7+570702 |EA | 9.5 |( 0.12 )| |B | | | | | |76022 76022| +630622 |V0622 Per |022217.7+570725 |ELL: | 9.3 |( 0.05 )| |B | | | | | |76022 76022| +630623 |V0623 Per |024150.8+425138 |GDOR: | 11.48 |( 0.03 )| |V | | | | | |76024 76025| +630624 |V0624 Per |024234.6+424451 |GDOR: | 11.50 |( 0.03 )| |V | | | | | |76024 76025| +630625 |V0625 Per |032106.5+482614 |BY | 12.80 |( 0.09 )| |V | | | | | |76026 GSC | +630626 |V0626 Per |032122.2+495704 |BY | 13.89 |( 0.24 )| |V | | | | | |76026 GSC | +630627 |V0627 Per |032622.6+471609 |RS: | 11.89 |( 0.08 )| |V | | | | | |76026 UCAC2| +630628 |V0628 Per |032625.3+482007 |BY | 12.03 |( 0.07 )| |V | | | | | |76026 UCAC2| +630629 |V0629 Per |032720.3+475926 |BY | 13.40 |( 0.22 )| |V | | | | | |76026 GSC | +630630 |V0630 Per |032822.5+491430 |BY | 12.78 |( 0.13 )| |V | | | | | |76026 GSC | +630631 |V0631 Per |032823.7+473651 |BY | 13.28 |( 0.08 )| |V | | | | | |76026 GSC | +630632 |V0632 Per |034023.2+404536 |SR: | 11.1 | 12.6 | |V | | | | | |76012 GSC | +630633 |V0633 Per |034210.9+320817 |SR: | 13.0 | 13.5 | |V | | | | | |76012 GSC | +630634 |V0634 Per |034524.5+405348 |SR: | 10.3 | 11.5 | |V | | | | | |76012 GSC | +630635 |V0635 Per |034605.1+382212 |SR: | 12.7 | 14.9 | |V | | | | | |76012 GSC | +630636 |V0636 Per |034845.5+425541 |SR: | 11.7 | 12.6 | |V | | | | | |76012 GSC | +630637 |V0637 Per |035402.3+363218 |SR: | 12.1 | 12.6 | |V | | | | | |76012 GSC | +630638 |V0638 Per |035721.3+400244 |M: | 13.6 |< 14.6 | |V | | | | | |76012 GSC22| +630639 |V0639 Per |040333.5+494549 |SR: | 13.4 | 14.1 | |V | | | | | |76012 GSC | +630640 |V0640 Per |040353.7+510106 |SR: | 13.1 | 13.7 | |V | | | | | |76012 GSC | +630641 |V0641 Per |040434.0+463640 |SR: | 13.0 | 13.9 | |V | | | | | |76012 GSC | +630642 |V0642 Per |040616.7+474538 |SR: | 13.1 | 13.8 | |V | | | | | |76012 GSC | +630643 |V0643 Per |040911.9+362539 |SRS | 7.68 | 7.80 | |Hp| | | | | |76018 DM | +630644 |V0644 Per |041413.8+435452 |SR: | 12.1 | 13.2 | |V | | | | | |76012 GSC | +630645 |V0645 Per |041445.8+434627 |SR: | 11.6 | 12.1 | |V | | | | | |76012 GSC | +630646 |V0646 Per |041537.6+351226 |SR: | 10.8 | 12.2 | |V | | | | | |76012 UCAC2| +630647 |V0647 Per |041607.8+413935 |SR: | 11.4 | 12.7 | |V | | | | | |76012 GSC | +630648 |V0648 Per |041729.7+351816 |SR: | 13.0 | 14.0 | |V | | | | | |76012 GSC | +630649 |V0649 Per |041808.3+451652 |SR: | 12.2 | 13.0 | |V | | | | | |76012 76034| +630650 |V0650 Per |041816.7+445358 |SR: | 12.4 | 13.0 | |V | | | | | |76012 GSC | +630651 |V0651 Per |042011.4+331726 |SR: | 12.0 | 12.8 | |V | | | | | |76012 GSC | +630652 |V0652 Per |042024.1+312324 |IT | 12.33 |( 0.07 )| |V | | | | | |76033 UCAC2| +630653 |V0653 Per |042125.6+415218 |M: | 12.7 |< 15.0 | |V | | | | | |76012 GSC22| +630654 |V0654 Per |042314.8+491234 |SR: | 13.0 | 13.7 | |V | | | | | |76012 GSC | +630655 |V0655 Per |042431.9+480312 |SR: | 12.9 | 14.1 | |V | | | | | |76012 GSC | +630656 |V0656 Per |042734.4+512106 |SR: | 11.3 | 11.9 | |V | | | | | |76012 GSC | +630657 |V0657 Per |043739.1+323727 |SR: | 11.7 | 12.7 | |V | | | | | |76012 GSC | +630658 |V0658 Per |015619.9+520331 |SR: | 12.6 | 13.3 | |V | | | | | |77004 GSC | +630659 |V0659 Per |020144.1+552237 |SR: | 12.8 | 13.7 | |V | | | | | |77004 GSC | +630660 |V0660 Per |020321.8+502410 |SR: | 11.0 | 12.9 | |V | | | | | |77004 GSC | +630661 |V0661 Per |020505.8+581623 |SR: | 13.5 | 14.2 | |V | | | | | |77004 USNO | +630662 |V0662 Per |020715.7+541331 |SR: | 11.9 | 13.2 | |V | | | | | |77004 GSC | +630663 |V0663 Per |021514.1+561304 |M | 13.1 | 18.0 | |I | | | | | |77012 77013| +630664 |V0664 Per |021615.5+544837 |SR: | 11.9 | 12.7 | |V | | | | | |77004 GSC | +630665 |V0665 Per |021848.0+571708 |BCEP | 9.51 |( 0.10 )| |V | | | | | |77020 DM | +630666 |V0666 Per |022147.7+531800 |SR: | 11.4 | 12.0 | |V | | | | | |77004 GSC | +630667 |V0667 Per |022525.8+541103 |SR: | 11.8 | 12.8 | |V | | | | | |77004 GSC | +630668 |V0668 Per |022544.9+580446 |SR: | 13.0 | 13.8 | |V | | | | | |77004 GSC | +630669 |V0669 Per |022750.5+534639 |SR: | 12.4 | 13.1 | |V | | | | | |77004 GSC | +630670 |V0670 Per |023124.4+531705 |SR: | 13.0 | 13.7 | |V | | | | | |77004 GSC | +630671 |V0671 Per |025045.3+554901 |M | 9.9 | 12.5 | |I | | | | | |77012 77013| +630672 |V0672 Per |025618.0+455313 |M | 9.6 | 12.8 | |* | | | | | |77004 GSC | +630673 |V0673 Per |030552.9+542054 |M | 10.8 | 14.4 | |I | | | | | |77012 77013| +630674 |V0674 Per |033627.6+362227 |EW: | 16.9 |( 0.09 * )| |B | | | | | |77028 USNO | +630675 |V0675 Per |034049.9+494154 |M | 16.3 | 19.4 | |I | | | | | |77012 77013| +630676 |V0676 Per |035911.8+441310 |M | 16.5 | 19.2 | |I | | | | | |77012 77013| +630677 |V0677 Per |042440.4+480725 |M | 10.4 | 14.1 | |I | | | | | |77012 77013| +630678 |V0678 Per |020930.3+575738 |DSCTC: | 8.71 |( 0.02 )| |B | | | 0.0199 | |A5V |78035 DM | +630679 |V0679 Per |023847.6+564310 |SR: | 12.9 | 14.2 | |* | | | | | |78006 2MASS| +630680 |V0680 Per *|024141.0+354255 |EW | 13.55 | 14.13 | 14.07 |* |51550.3118 | | 0.3739783 | | |78042 GSC | +630681 |V0681 Per |030033.3+562153 |SR: | 14.9 | 16.6 | |* | | | | | |78006 2MASS| +630682 |V0682 Per |030509.4+561059 |M: | 12.4 | 15.5 | |* | | | | | |78006 2MASS| +630683 |V0683 Per |031302.8+325347 |BY | 8.15 |( 0.02 )| |V | | | | |G5V |78018 DM | +630684 |V0684 Per |031656.1+555233 |SR: | 13.0 | 15.1 | |* | | | | | |78006 2MASS| +630685 |V0685 Per |032010.9+455818 |SR: | 13.0 |< 15.0 | |* |51925 :| | 280. : | | |78006 GSC | +630686 |V0686 Per |032059.5+331306 |BY | 7.94 |( 0.04 )| |V | | | 5.95 | |K0V |78018 DM | +630687 |V0687 Per |032312.1+330442 |BY | 7.96 |( 0.02 )| |V | | | 2.54 | |G0 |78018 DM | +630688 |V0688 Per |032604.2+484807 |BY | 10.65 | 10.71 | |V | | | 0.700 | | |78044 GSC | +630689 |V0689 Per |033210.2+490830 |BY | 11.99 | 12.11 | |V | | | 0.645 : | |G5V |78044 GSC | +630690 |V0690 Per |033654.4+405540 |DSCTC: | 12.2 |( 0.05 )| |V | | | 0.083 | | |78049 78049| +630691 |V0691 Per |033715.0+405400 |DSCTC: | 11.2 |( 0.03 )| |V | | | 0.115 | | |78049 78049| +630692 |V0692 Per |034411.3+320612 |INT | 14.22 |( 0.15 )| |Ic| | | | |K8 |78051 78052| +630693 |V0693 Per |034416.4+320955 |INT | 12.63 |( 0.07 )| |Ic| | | | |K3 |78051 78052| +630694 |V0694 Per |034418.2+320959 |INT | 15.53 | 16.06 | |Ic| | | | |M3 |78051 78052| +630695 |V0695 Per |034419.2+320735 |INT | 14.87 |( 0.65 )| |Ic| | | | |M2 |78051 78052| +630696 |V0696 Per |034421.6+321018 |INT | 14.55 |( 0.26 )| |Ic| | | | |M1 |78051 78052| +630697 |V0697 Per |034421.6+321038 |INT | 14.80 | 15.98 | |Ic| | | | |K7 |78051 78052| +630698 |V0698 Per |034422.3+320543 |INT | 14.75 | 15.25 | |Ic| | | | | |78051 78052| +630699 |V0699 Per |034423.7+320647 |INT | 14.15 |( 0.14 )| |Ic| | | | |M1 |78051 78052| +630700 |V0700 Per |034425.6+321230 |BY | 13.57 |( 0.18 )| |Ic| | | 8.41 | | |78051 78054| +630701 |V0701 Per |034426.6+320358 |BY | 14.04 |( 0.18 )| |Ic| | | 3.08 | | |78051 78054| +630702 |V0702 Per |034427.3+321037 |INT | 15.96 | 17.12 | |Ic| | | | |M1 |78051 78052| +630703 |V0703 Per |034427.9+320732 |INT | 14.08 |( 0.06 )| |Ic| | | | |M3 |78051 78052| +630704 |V0704 Per |034428.5+320723 |INT | 13.33 |( 0.24 )| |Ic| | | | |K7 |78051 78052| +630705 |V0705 Per |034431.2+320622 |DSCTC: | 10.56 |( 0.04 )| |V | | | 0.135 | |F0 |78053 78052| +630706 |V0706 Per |034431.5+320845 |INT | 12.12 |( 0.08 )| |Ic| | | | |K2 |78051 78052| +630707 |V0707 Per |034432.8+320916 |INT | 14.69 |( 0.24 )| |Ic| | | | |M2 |78051 78052| +630708 |V0708 Per |034434.0+320854 |INT | 13.55 |( 0.18 )| |Ic| | | | |K7 |78051 78052| +630709 |V0709 Per |034437.4+320612 |INT | 13.78 |( 0.08 )| |Ic| | | | |M0 |78051 78052| +630710 |V0710 Per |034437.4+320901 |INT | 14.63 | 14.97 | |Ic| | | | |K8 |78051 78052| +630711 |V0711 Per |034437.8+321218 |INT | 15.40 |( 0.35 )| |Ic| | | | |K8 |78051 2MASS| +630712 |V0712 Per |034438.0+320330 |INT | 12.97 | 14.95 | |Ic| | | | |K6 |78051 78054| +630713 |V0713 Per |034438.0+321137 |INT | 15.40 | 15.84 | |Ic| | | | |M3 |78051 78052| +630714 |V0714 Per |034438.4+321300 |INT | 14.55 |( 0.20 )| |Ic| | | | |M0 |78318 2MASS| +630715 |V0715 Per |034438.5+320736 |INT | 13.21 |( 0.17 )| |Ic| | | | |K6 |78051 78052| +630716 |V0716 Per |034438.5+320801 |INT | 14.11 |( 0.29 )| |Ic| | | | |K7 |78051 78052| +630717 |V0717 Per |034438.7+320842 |INT | 13.86 |( 0.12 )| |Ic| | | | |K3 |78051 78052| +630718 |V0718 Per |034439.2+320736 |E: | 12.95 | 13.65 | |Ic| | | 1400. : | |G8 |78055 78052| +630719 |V0719 Per |034443.8+321031 |INT | 14.12 | 14.80 | |Ic| | | | |K8 |78051 78052| +630720 |V0720 Per |034612.8+513324 |SR: | 11.3 | 13.0 | |* | | | | | |78006 GSC | +630721 |V0721 Per |040039.7+512102 |SRA | 11.7 | 13.9 | |* |51418 | | 350. | | |78040 2MASS| +630722 |V0722 Per |041701.5+353111 |BY | 10.7 |( 0.15 )| |R | | | 1.75 | |K4V |78064 78064| +630723 |V0723 Per |015359.7+532805 |EB | 12.24 | 12.7 : | 12.5 : |* |51589.596 | | 0.7961 | | |79009 79014| +630724 |V0724 Per |020325.7+514739 |SRB | 10.9 | 11.1 | |* | | | 80. | | |79100 79017| +630725 |V0725 Per |021027.0+484641 |EA | 9.97 | 10.22 | 10.07 : |* |51478.588 | | 8.8695 |06 |A0 |79009 DM | +630726 |V0726 Per |023810.8+525113 |LB | 9.3 | 10.0 | |* | | | | |M |79100 79021| +630727 |V0727 Per |023925.9+524353 |SRB | 9.7 | 10.3 | |* | | | 150. | | |79100 79017| +630728 |V0728 Per |024352.2+460344 |EA | 12.07 | 12.35 | 12.20 |* |51452.702 | | 1.8771 |11 |A8 |79003 GSC | +630729 |V0729 Per |025030.0+455456 |LB | 10.2 | 10.6 | |* | | | | | |79100 GSC | +630730 |V0730 Per |025835.5+463205 |SRB | 10.9 | 11.6 | |* | | | 83. : | | |79100 79172| +630731 |V0731 Per |031548.2+440357 |EA | 12.2 | 13.4 | 12.4 |* |51342.857 | | 7.2778 |07 | |79004 GSC | +630732 |V0732 Per *|032319.2+512330 |EA | 11.32 | 11.80 | 11.8 : |* |51455.805 | | 4.50655 |04 |B9 |79009 79021| +630733 |V0733 Per |033148.5+361245 |EA | 11.89 | 12.17 | 12.03 |* |51479.080 | | 77.53 |03 : | |79004 79022| +630734 |V0734 Per |033819.1+320313 |SR: | 10.8 |< 11.6 | |* |51508. | | | | |79100 79017| +630735 |V0735 Per |033829.6+344015 |SR: | 11.1 | 11.5 | |* | | | 200. : | | |79100 79173| +630736 |V0736 Per |033941.4+374732 |EA | 9.73 | 10.03 | 10.0 : |V |48678.948 | | 3.76674 |08 |A4IV |79006 DM | +630737 |V0737 Per |034020.2+330407 |EW | 12.65 | 13.22 | 13.20 |* |51536.724 | | 0.366556 | | |79003 79015| +630738 |V0738 Per |035056.3+471435 |SR | 11.6 | 12.0 | |* | | | 101. | | |79100 79135| +630739 |V0739 Per |035946.4+344057 |LB | 10.8 | 11.7 | |p | | | | | |79215 79215| +630740 |V0740 Per |040449.3+335725 |EW | 11.22 | 11.87 | 11.87 |* |51397.995 | | 0.373042 | | |79004 79027| +630741 |V0741 Per |040522.8+491157 |SRB | 11.1 | 11.5 | |* | | | 95. : | | |79100 79135| +630742 |V0742 Per |040757.6+421319 |SR: | 9.0 | 10.2 | |* | | | | |M7 |79100 GSC | +630743 |V0743 Per |040848.0+313054 |LB | 11.4 | 11.6 | |* | | | | | |79100 79022| +630744 |V0744 Per |041040.7+442650 |LB | 9.7 | 10.2 : | |* | | | | |C5+,4 |79100 79135| +630745 |V0745 Per |041534.9+334946 |M: | 10.4 | 13.0 | |R | | | | |M6 |79100 GSC | +630746 |V0746 Per |042618.9+501233 |LB | 9.9 | 10.2 | |* | | | | |C |79100 79017| +630747 |V0747 Per |043412.8+471536 |M | 14.9 | 17.8 | |B |51350. | | 352. : | |M9 |79100 79175| +630748 |V0748 Per |044030.2+431152 |LB | 10.2 | 10.6 | |* | | | | |N |79100 GSC | +630749 |V0749 Per |044447.0+433502 |SR | 11.5 | 13.1 | |* | | | 140. : | | |79100 79176| +630750 |V0750 Per |044715.3+425001 |LB | 11.2 | 11.5 | |* | | | | |C |79100 GSC | +630751 |V0751 Per *|013053.1+532538 |EA | 11.46 | 11.93 | 11.90 : |* |51508.610 | | 5.9613 |07 | |80023 GSC | NL80_1 +630752 |V0752 Per *|013615.7+541407 |DSCTC | 13.3 |( 0.04 )| |B | | | 0.0198 | |A2V |80089 80089| NL80_1 +630753 |V0753 Per *|015115.7+575011 |EA | 12.98 | 13.73 | 13.71 |* |53339.1061 | | 2.2002 |09 | |80008 80008| NL80_1 +630754 |V0754 Per *|020328.3+585413 |EA | 11.97 | 12.50 | 12.30 |* |53392.0991 | | 5.3364 |06 | |80073 80073| NL80_1 +630755 |V0755 Per |021013.4+571125 |DSCTC: | 10.14 | 10.19 | |V | | | 0.153 | | |80109 80109| NL80_1 +630756 |V0756 Per *|021707.0+560917 |EA | 12.25 | 12.97 | 12.90 |* |53359.196 | | 4.6050 |04 | |80073 80073| NL80_1 +630757 |V0757 Per *|021823.1+570037 |BCEP | 7.74 | 7.79 | |B*| | | 0.164309 | |B1II |80112 DM | NL80_1 +630758 |V0758 Per *|022206.9+560754 |EA | 10.60 | 10.90 | 10.70 |* |51450.61 | | 5.67513 |16 | |80001 GSC | NL80_1 +630759 |V0759 Per |022256.4+513413 |LB | 12.25 | 12.7 | |* | | | | | |80062 GSC | NL80_1 +630760 |V0760 Per |022452.1+580024 |LB | 12.1 | 12.7 | |* | | | | | |80062 USNO | NL80_1 +630761 |V0761 Per |022453.9+580915 |EA/RS: | 11.65 | 12.1 | |* |51470.625 | | 3.9926 |08 : | |80013 GSC | NL80_1 +630762 |V0762 Per |024006.0+423858 |BY | 15.22 |( 0.02 )| |V | | | 3.297 | | |80123 USNO | NL80_1 +630763 |V0763 Per |024009.6+424837 |BY | 20.37 |( 0.18 )| |V | | | 1.735 | | |80123 2MASS| NL80_1 +630764 |V0764 Per |024015.1+424714 |BY | 17.88 |( 0.03 )| |V | | | 1.323 | | |80123 USNO | NL80_1 +630765 |V0765 Per |024019.3+423613 |BY | 16.51 |( 0.02 )| |V | | | 8.790 | | |80123 USNO | NL80_1 +630766 |V0766 Per |024024.3+424657 |BY | 17.82 |( 0.03 )| |V | | | 11.840 | | |80123 USNO | NL80_1 +630767 |V0767 Per |024026.6+424540 |BY | 14.16 |( 0.04 )| |V | | | 7.242 | | |80123 GSC | NL80_1 +630768 |V0768 Per |024026.7+424016 |BY | 16.62 |( 0.07 )| |V | | | 1.467 | | |80123 USNO | NL80_1 +630769 |V0769 Per |024030.4+424152 |BY | 14.72 |( 0.04 )| |V | | | 7.177 | | |80123 USNO | NL80_1 +630770 |V0770 Per |024030.6+425102 |BY | 14.16 |( 0.01 )| |V | | | 10.759 | | |80123 GSC | NL80_1 +630771 |V0771 Per |024030.8+423625 |BY | 15.38 |( 0.02 )| |V | | | 3.107 | | |80123 USNO | NL80_1 +630772 |V0772 Per |024033.3+423254 |BY | 15.64 |( 0.03 )| |V | | | 8.445 | | |80123 USNO | NL80_1 +630773 |V0773 Per |024038.2+424307 |BY | 19.71 |( 0.09 )| |V | | | 1.314 | | |80123 2MASS| NL80_1 +630774 |V0774 Per |024042.8+423859 |BY | 16.74 |( 0.12 )| |V | | | 7.033 | | |80123 USNO | NL80_1 +630775 |V0775 Per |024048.5+423926 |BY | 15.82 |( 0.06 )| |V | | | 0.788 | | |80123 USNO | NL80_1 +630776 |V0776 Per |024048.9+423034 |BY | 14.40 |( 0.06 )| |V | | | 7.785 | | |80123 GSC | NL80_1 +630777 |V0777 Per |024049.1+424821 |BY | 16.69 |( 0.04 )| |V | | | 10.000 | | |80123 USNO | NL80_1 +630778 |V0778 Per |024049.7+424655 |BY | 15.79 |( 0.09 )| |V | | | 6.582 | | |80123 USNO | NL80_1 +630779 |V0779 Per |024053.9+423317 |BY | 19.18 |( 0.07 )| |V | | | 0.452 | | |80123 USNO | NL80_1 +630780 |V0780 Per |024057.9+423439 |BY | 17.30 |( 0.03 )| |V | | | 9.136 | | |80123 USNO | NL80_1 +630781 |V0781 Per |024105.0+550019 |SRB | 10.85 | 11.23 | |* | | | 47. | | |80001 GSC | NL80_1 +630782 |V0782 Per |024105.1+425643 |BY | 14.65 |( 0.05 )| |V | | | 4.996 | | |80123 USNO | NL80_1 +630783 |V0783 Per |024111.6+424622 |BY | 20.66 |( 0.14 )| |V | | | 1.517 | | |80123 2MASS| NL80_1 +630784 |V0784 Per |024116.5+424935 |BY | 19.04 |( 0.04 )| |V | | | 4.485 | | |80123 USNO | NL80_1 +630785 |V0785 Per |024118.4+425821 |BY | 17.45 |( 0.05 )| |V | | | 8.162 | | |80123 USNO | NL80_1 +630786 |V0786 Per |024120.0+423924 |BY | 18.74 |( 0.07 )| |V | | | 6.614 | | |80123 USNO | NL80_1 +630787 |V0787 Per |024120.4+425852 |BY | 18.02 |( 0.07 )| |V | | | 11.045 | | |80123 G2.3 | NL80_1 +630788 |V0788 Per |024121.4+423544 |BY | 15.29 |( 0.02 )| |V | | | 7.689 | | |80123 USNO | NL80_1 +630789 |V0789 Per *|024125.2+394728 |EA | 13.2 | 13.85 | 13.4 |* |51478.755 | | 0.7153 |16 | |80052 80052| NL80_1 +630790 |V0790 Per |024126.3+423015 |BY | 18.28 |( 0.07 )| |V | | | 2.603 | | |80123 USNO | NL80_1 +630791 |V0791 Per |024126.7+425134 |BY | 19.24 |( 0.08 )| |V | | | 2.328 | | |80123 USNO | NL80_1 +630792 |V0792 Per |024127.7+423542 |BY | 14.79 |( 0.01 )| |V | | | 6.820 | | |80123 USNO | NL80_1 +630793 |V0793 Per |024132.7+430216 |BY | 18.17 |( 0.04 )| |V | | | 5.916 | | |80123 USNO | NL80_1 +630794 |V0794 Per |024133.4+424212 |BY | 14.04 |( 0.02 )| |V | | | 0.822 | | |80123 GSC | NL80_1 +630795 |V0795 Per |024134.9+424853 |BY | 18.98 |( 0.05 )| |V | | | 4.190 | | |80123 USNO | NL80_1 +630796 |V0796 Per |024135.1+423331 |BY | 14.23 |( 0.02 )| |V | | | 2.509 | | |80123 USNO | NL80_1 +630797 |V0797 Per |024135.3+424103 |BY | 14.63 |( 0.10 )| |V | | | 0.893 | | |80123 USNO | NL80_1 +630798 |V0798 Per |024136.2+425456 |BY | 18.91 |( 0.04 )| |V | | | 3.305 | | |80123 USNO | NL80_1 +630799 |V0799 Per |024136.6+424004 |BY | 18.24 |( 0.04 )| |V | | | 5.780 | | |80123 USNO | NL80_1 +630800 |V0800 Per |024138.1+424404 |BY | 14.15 |( 0.01 )| |V | | | 1.181 | | |80123 GSC | NL80_1 +630801 |V0801 Per |024139.7+423807 |BY | 20.70 |( 0.15 )| |V | | | 0.928 | | |80123 2MASS| NL80_1 +630802 |V0802 Per |024143.9+424508 |BY | 17.10 |( 0.02 )| |V | | | 1.429 | | |80123 USNO | NL80_1 +630803 |V0803 Per |024144.0+424032 |BY | 15.68 |( 0.01 )| |V | | | 2.300 | | |80123 USNO | NL80_1 +630804 |V0804 Per |024144.2+424608 |BY | 14.56 |( 0.02 )| |V | | | 6.674 | | |80123 USNO | NL80_1 +630805 |V0805 Per |024144.2+423536 |BY | 17.56 |( 0.08 )| |V | | | 7.349 | | |80123 USNO | NL80_1 +630806 |V0806 Per |024146.4+423232 |BY | 16.43 |( 0.02 )| |V | | | 7.508 | | |80123 USNO | NL80_1 +630807 |V0807 Per |024148.5+424934 |BY | 16.27 |( 0.05 )| |V | | | 2.458 | | |80123 USNO | NL80_1 +630808 |V0808 Per |024149.0+424000 |BY | 16.18 |( 0.04 )| |V | | | 4.621 | | |80123 USNO | NL80_1 +630809 |V0809 Per |024150.3+424438 |BY | 16.09 |( 0.02 )| |V | | | 11.819 | | |80123 USNO | NL80_1 +630810 |V0810 Per |024151.3+423425 |BY | 15.06 |( 0.02 )| |V | | | 1.882 | | |80123 USNO | NL80_1 +630811 |V0811 Per |024151.7+423823 |BY | 16.75 |( 0.11 )| |V | | | 5.082 | | |80123 USNO | NL80_1 +630812 |V0812 Per |024152.6+423602 |BY | 18.63 |( 0.05 )| |V | | | 7.278 | | |80123 USNO | NL80_1 +630813 |V0813 Per |024153.2+423526 |BY | 16.48 |( 0.04 )| |V | | | 0.868 | | |80123 USNO | NL80_1 +630814 |V0814 Per |024153.3+423210 |BY | 19.70 |( 0.09 )| |V | | | 0.349 | | |80123 2MASS| NL80_1 +630815 |V0815 Per |024154.3+425936 |BY | 16.29 |( 0.03 )| |V | | | 10.754 | | |80123 USNO | NL80_1 +630816 |V0816 Per |024154.7+423530 |BY | 20.73 |( 0.08 )| |V | | | 0.617 | | |80123 2MASS| NL80_1 +630817 |V0817 Per |024155.3+425032 |BY | 17.24 |( 0.03 )| |V | | | 6.575 | | |80123 USNO | NL80_1 +630818 |V0818 Per |024155.9+423333 |BY | 20.26 |( 0.08 )| |V | | | 0.621 | | |80123 2MASS| NL80_1 +630819 |V0819 Per |024156.0+425831 |BY | 16.17 |( 0.03 )| |V | | | 9.240 | | |80123 USNO | NL80_1 +630820 |V0820 Per |024157.9+425322 |BY | 15.97 |( 0.02 )| |V | | | 9.350 | | |80123 USNO | NL80_1 +630821 |V0821 Per |024201.8+424159 |BY | 18.27 |( 0.08 )| |V | | | 1.978 | | |80123 USNO | NL80_1 +630822 |V0822 Per |024202.3+430113 |BY | 15.01 |( 0.03 )| |V | | | 10.225 | | |80123 USNO | NL80_1 +630823 |V0823 Per |024202.5+425152 |BY | 15.30 |( 0.02 )| |V | | | 6.655 | | |80123 USNO | NL80_1 +630824 |V0824 Per |024204.9+423747 |BY | 17.80 |( 0.03 )| |V | | | 7.778 | | |80123 USNO | NL80_1 +630825 |V0825 Per |024207.5+424727 |BY | 15.85 |( 0.01 )| |V | | | 9.944 | | |80123 USNO | NL80_1 +630826 |V0826 Per |024207.8+423745 |BY | 18.97 |( 0.07 )| |V | | | 1.704 | | |80123 USNO | NL80_1 +630827 |V0827 Per |024210.3+423450 |BY | 16.18 |( 0.02 )| |V | | | 11.389 | | |80123 USNO | NL80_1 +630828 |V0828 Per |024210.3+425936 |BY | 18.08 |( 0.07 )| |V | | | 6.645 | | |80123 USNO | NL80_1 +630829 |V0829 Per |024210.6+423409 |BY | 18.25 |( 0.07 )| |V | | | 2.408 | | |80123 USNO | NL80_1 +630830 |V0830 Per |024211.0+424316 |BY | 16.84 |( 0.03 )| |V | | | 8.563 | | |80123 USNO | NL80_1 +630831 |V0831 Per |024211.7+423118 |BY | 17.01 |( 0.08 )| |V | | | 16.812 | | |80123 USNO | NL80_1 +630832 |V0832 Per |024211.7+424348 |BY | 15.77 |( 0.02 )| |V | | | 7.304 | | |80123 USNO | NL80_1 +630833 |V0833 Per |024212.5+424929 |BY | 21.00 |( 0.17 )| |V | | | 3.030 | | |80123 2MASS| NL80_1 +630834 |V0834 Per |024216.1+423401 |BY | 19.32 |( 0.10 )| |V | | | 0.874 | | |80123 2MASS| NL80_1 +630835 |V0835 Per |024216.2+424311 |BY | 18.17 |( 0.05 )| |V | | | 8.265 | | |80123 USNO | NL80_1 +630836 |V0836 Per |024217.0+423812 |BY | 18.79 |( 0.05 )| |V | | | 0.929 | | |80123 USNO | NL80_1 +630837 |V0837 Per |024217.2+424819 |BY | 15.80 |( 0.02 )| |V | | | 1.179 | | |80123 USNO | NL80_1 +630838 |V0838 Per |024217.3+425130 |BY | 18.47 |( 0.04 )| |V | | | 2.279 | | |80123 2MASS| NL80_1 +630839 |V0839 Per |024220.3+424906 |BY | 16.57 |( 0.04 )| |V | | | 13.685 | | |80123 USNO | NL80_1 +630840 |V0840 Per |024221.9+423213 |BY | 14.27 |( 0.03 )| |V | | | 6.837 | | |80123 GSC | NL80_1 +630841 |V0841 Per |024223.3+423821 |BY | 17.56 |( 0.04 )| |V | | | 13.500 | | |80123 USNO | NL80_1 +630842 |V0842 Per |024224.9+425326 |BY | 17.43 |( 0.06 )| |V | | | 9.239 | | |80123 USNO | NL80_1 +630843 |V0843 Per |024224.9+410850 |LB | 12.45 | 13.03 | |* | | | | | |80062 GSC | NL80_1 +630844 |V0844 Per |024226.3+424316 |BY | 20.18 |( 0.05 )| |V | | | 2.145 | | |80123 2MASS| NL80_1 +630845 |V0845 Per |024228.9+424211 |BY | 18.74 |( 0.04 )| |V | | | 3.482 | | |80123 USNO | NL80_1 +630846 |V0846 Per |024231.5+423711 |BY | 16.08 |( 0.08 )| |V | | | 1.079 | | |80123 USNO | NL80_1 +630847 |V0847 Per |024232.3+424906 |BY | 15.05 |( 0.03 )| |V | | | 0.678 | | |80123 USNO | NL80_1 +630848 |V0848 Per |024233.1+423002 |BY | 18.43 |( 0.09 )| |V | | | 12.311 : | | |80123 USNO | NL80_1 +630849 |V0849 Per |024233.6+424912 |BY | 16.66 |( 0.02 )| |V | | | 0.794 | | |80123 USNO | NL80_1 +630850 |V0850 Per |024234.0+424326 |BY | 17.17 |( 0.02 )| |V | | | 8.162 | | |80123 USNO | NL80_1 +630851 |V0851 Per |024234.3+423100 |BY | 18.47 |( 0.05 )| |V | | | 1.105 | | |80123 USNO | NL80_1 +630852 |V0852 Per |024235.0+423929 |BY | 18.81 |( 0.10 )| |V | | | 3.633 | | |80123 USNO | NL80_1 +630853 |V0853 Per |024236.3+425431 |BY | 15.07 |( 0.16 )| |V | | | 3.134 | | |80123 USNO | NL80_1 +630854 |V0854 Per |024239.4+425528 |BY | 19.30 |( 0.09 )| |V | | | 0.765 | | |80123 2MASS| NL80_1 +630855 |V0855 Per |024240.6+424856 |BY | 18.69 |( 0.05 )| |V | | | 3.479 | | |80123 USNO | NL80_1 +630856 |V0856 Per |024241.1+424422 |BY | 18.69 |( 0.04 )| |V | | | 2.388 | | |80123 USNO | NL80_1 +630857 |V0857 Per |024241.8+424602 |BY | 18.44 |( 0.08 )| |V | | | 7.322 | | |80123 2MASS| NL80_1 +630858 |V0858 Per |024243.7+424542 |BY | 20.37 |( 0.11 )| |V | | | 0.727 | | |80123 USNO | NL80_1 +630859 |V0859 Per |024244.9+350402 |LB | 12.05 | 12.50 | |* | | | | | |80062 GSC | NL80_1 +630860 |V0860 Per |024246.4+423911 |BY | 15.12 |( 0.03 )| |V | | | 9.356 | | |80123 USNO | NL80_1 +630861 |V0861 Per |024247.5+424547 |BY | 16.47 |( 0.07 )| |V | | | 1.191 | | |80123 USNO | NL80_1 +630862 |V0862 Per |024247.7+424743 |BY | 15.00 |( 0.02 )| |V | | | 7.859 | | |80123 USNO | NL80_1 +630863 |V0863 Per |024249.8+430035 |BY | 19.20 |( 0.05 )| |V | | | 4.458 | | |80123 2MASS| NL80_1 +630864 |V0864 Per |024250.8+425808 |BY | 14.75 |( 0.09 )| |V | | | 0.946 | | |80123 USNO | NL80_1 +630865 |V0865 Per |024251.7+423349 |BY | 17.84 |( 0.05 )| |V | | | 1.444 | | |80123 USNO | NL80_1 +630866 |V0866 Per |024255.2+425041 |BY | 20.01 |( 0.06 )| |V | | | 0.364 | | |80123 2MASS| NL80_1 +630867 |V0867 Per |024256.9+423522 |BY | 14.52 |( 0.06 )| |V | | | 6.076 | | |80123 GSC | NL80_1 +630868 |V0868 Per |024257.8+425804 |BY | 14.92 |( 0.14 )| |V | | | 1.576 | | |80123 USNO | NL80_1 +630869 |V0869 Per |024257.9+424147 |BY | 16.35 |( 0.04 )| |V | | | 5.970 | | |80123 USNO | NL80_1 +630870 |V0870 Per |024300.0+425801 |BY | 15.81 |( 0.12 )| |V | | | 0.789 | | |80123 USNO | NL80_1 +630871 |V0871 Per *|024415.9+564056 |EA | 10.92 | 11.5 : | 11.38 |* |51421.719 | | 3.0240 |08 | B |80042 DM | NL80_1 +630872 |V0872 Per |024602.3+345508 |UG | 14.1 |< 17.6 | |B | | | | | |80126 80126| NL80_1 +630873 |V0873 Per *|024708.2+412232 |EW | 10.8 | 11.5 | 11.5 |V |51370.875 | | 0.2949039 | |K0V |80179 80179| NL80_1 +630874 |V0874 Per *|025020.7+372903 |RS: | 11.54 | 11.70 | |* | | | 1.7330 | |K4V |80021 GSC | NL80_1 +630875 |V0875 Per |025217.6+361648 |RS: | 10.47 | 10.92 | |* | | | 7.9809 | |K2IV |80021 GSC | NL80_1 +630876 |V0876 Per *|025548.2+393210 |EW | 13.6 | 14.2 | 14.1 |* |51476.564 | | 0.31996 | | |80052 80052| NL80_1 +630877 |V0877 Per *|025710.0+531802 |EA | 13.91 | 15.27 | 14.0 |* |53341.1411 | | 1.1110 |17 | |80008 GSC | NL80_1 +630878 |V0878 Per |025752.7+415135 |RS: | 11.58 | 11.73 | |* | | | 0.4854 | | |80021 GSC | NL80_1 +630879 |V0879 Per |025846.0+533712 |LB | 11.45 | 11.72 | |* | | | | | |80062 USNO | NL80_1 +630880 |V0880 Per *|025908.8+403620 |EW: | 13.35 | 13.7 | 13.7 |* |51486.772 | | 0.7738 | | |80052 80052| NL80_1 +630881 |V0881 Per *|025953.1+380148 |EW | 10.71 | 11.04 | 11.01 |* |51494.882 | | 0.387374 | |K0IV |80042 GSC | NL80_1 +630882 |V0882 Per *|030353.4+570334 |EA | 11.90 | 12.70 | 12.10 |* |53430.9584 | | 1.28482 |16 | |80073 80073| NL80_1 +630883 |V0883 Per |030408.8+571754 |DCEPS | 12.75 | 13.05 | |* |51505.10 | | 3.058 |45 | |80131 80131| NL80_1 +630884 |V0884 Per *|030620.5+483312 |EA | 10.73 | 11.25 | 11.21 |* |51466.660 | | 12.807 |03 : | |80042 DM | NL80_1 +630885 |V0885 Per *|030621.7+544702 |EW | 13.1 | 13.45 | 13.45 |* |51504.954 | | 0.30386 | | |80102 80102| NL80_1 +630886 |V0886 Per *|030751.8+550438 |EB | 13.7 | 14.5 | 14.1 |* |51524.03 | | 2.083 | | |80101 80101| NL80_1 +630887 |V0887 Per *|030918.8+434454 |EA | 9.91 | 10.42 | 10.30 |* |51540.630 | | 1.53444 |15 | |80011 DM | NL80_1 +630888 |V0888 Per *|030937.6+505331 |EA | 11.38 | 12.07 | |* |51612.66 | | 5.4957 |08 |A3 |80013 GSC | NL80_1 +630889 |V0889 Per *|031158.9+460743 |GDOR | 7.26 |( 0.02 b )| |B | | | 0.34306 | |F1 |80130 HIP | NL80_1 +630890 |V0890 Per *|031254.7+502935 |EA | 12.00 | 12.55 | 12.05 |* |51612.520 | | 24.146 |11 | |80042 GSC | NL80_1 +630891 |V0891 Per |031454.5+555249 |DCEP | 11.9 | 12.3 | |* |51401.9 | | 3.22 |30 | |80081 GSC | NL80_1 +630892 |V0892 Per |031505.8+561245 |DCEP | 12.8 | 13.3 | |* |51449.5 | | 4.256 |27 | |80137 80137| NL80_1 +630893 |V0893 Per |031610.4+411932 |LB | 10.6 | 11.1 | |* | | | | | |80100 GSC | NL80_1 +630894 |V0894 Per *|031848.0+554012 |RV: | 10.8 | 11.2 | 10.95 |* |51501.2 | | 69.7 | | |80139 80139| NL80_1 +630895 |V0895 Per |032014.3+550657 |DCEP | 13.2 | 13.6 | |* |51463.03 | | 4.41 |33 | |80131 80131| NL80_1 +630896 |V0896 Per |032355.2+434314 |SR | 12.35 | 12.75 | |* | | | 70. | | |80001 GSC | NL80_1 +630897 |V0897 Per |033040.8+313658 |RS | 11.50 | 11.68 | |* | | | 1.6559 | |K3V |80021 GSC | NL80_1 +630898 |V0898 Per |033529.9+311338 |IT: | 8.6 |( 0.05 * )| |R | | | 1.8366 | |G0 |80021 DM | NL80_1 +630899 |V0899 Per *|033845.0+401413 |EA | 12.88 | 13.56 | 13.17 |* |51555.78 | | 8.5267 |07 | |80013 GSC | NL80_1 +630900 |V0900 Per |034057.8+311806 |RS | 11.05 | 11.20 | |* | | | 4.2419 | |G1V |80021 GSC | NL80_1 +630901 |V0901 Per *|034157.1+390730 |EA | 10.55 | 10.82 | 10.70 |* |51613.738 | | 3.2554 |14 |G5 |80042 DM | NL80_1 +630902 |V0902 Per |034418.6+321253 |INB | 16.56 |( 2.00 )| |I | | | | |M3 |80148 2MASS| NL80_1 +630903 |V0903 Per |034420.0+320646 |INB | 15.72 |( 0.57 )| |I | | | 8.687 | |M3.5e |80148 2MASS| NL80_1 +630904 |V0904 Per |034421.7+320625 |INB | 14.42 | 14.58 | |I | | | 8.363 | |M3 |80148 USNO | NL80_1 +630905 |V0905 Per |034422.3+321201 |INB | 14.52 |( 0.50 )| |I | | | | |M1e |80148 2MASS| NL80_1 +630906 |V0906 Per |034424.6+320357 |INB | 15.16 |( 0.38 )| |I | | | 4.942 | |M1 |80148 2MASS| NL80_1 +630907 |V0907 Per |034425.3+321013 |INB | 11.86 |( 0.15 )| |H | | | | |M5e |80140 2MASS| NL80_1 +630908 |V0908 Per |034425.6+321131 |INB | 14.78 |( 0.48 )| |I | | | | |M0e |80148 2MASS| NL80_1 +630909 |V0909 Per |034426.0+320430 |INT | 12.42 |( 0.75 )| |I | | | | |G8e |80148 GSC | NL80_1 +630910 |V0910 Per |034429.7+321040 |INT | 14.18 |( 0.34 )| |I | | | | |K8e |80148 2MASS| NL80_1 +630911 |V0911 Per |034430.5+320630 |INB | 11.81 |( 0.15 )| |H | | | | |M0.5 |80140 2MASS| NL80_1 +630912 |V0912 Per *|034432.2+395935 |EA/RS | 12.23 | 12.58 | 12.5 |* |51473.631 | | 0.577545 |12 |K4V |80001 GSC | NL80_1 +630913 |V0913 Per |034432.6+320843 |INB | 10.09 |( 0.15 )| |H | | | | |M2.5e |80140 2MASS| NL80_1 +630914 |V0914 Per |034432.7+320838 |INB | 11.62 |( 0.10 )| |I | | | 2.656 | |G6 |80148 2MASS| NL80_1 +630915 |V0915 Per |034433.3+320940 |INB | 11.39 |( 0.15 )| |H | | | | |M2 |80140 2MASS| NL80_1 +630916 |V0916 Per |034434.9+320954 |INB | 11.39 |( 0.15 )| |H | | | | |M3.5 |80140 2MASS| NL80_1 +630917 |V0917 Per |034434.9+320634 |INB | 13.17 | 13.34 | |I | | | 5.483 | |K5.5 |80148 GSC | NL80_1 +630918 |V0918 Per |034436.9+320646 |INB | 10.80 |( 0.09 )| |I | | | 1.687 | |G3 |80148 GSC | NL80_1 +630919 |V0919 Per *|034437.4+321224 |INB | 11.83 |( 0.15 }| |H | | | | |M2e |80140 2MASS| NL80_1 +630920 |V0920 Per *|034437.9+320804 |INB | 14.04 |( 0.38 )| |I | | | | |K7 |80148 2MASS| NL80_1 +630921 |V0921 Per |034439.2+320918 |INB | 12.12 |( 0.11 )| |I | | | 2.539 | |G8 |80148 2MASS| NL80_1 +630922 |V0922 Per |034439.2+320945 |INB | 14.69 |( 0.44 )| |I | | | 3.993 | |M2e |80148 2MASS| NL80_1 +630923 |V0923 Per |034440.1+321134 |INB | 13.49 |( 0.17 )| |I | | | | |K2 |80148 GSC | NL80_1 +630924 |V0924 Per |034442.6+320619 |INB | 13.89 |( 0.10 )| |I | | | 11.51 | |M1 |80148 USNO | NL80_1 +630925 |V0925 Per |034444.6+320813 |INB | 15.35 |( 0.91 )| |I | | | | |M2e |80148 2MASS| NL80_1 +630926 |V0926 Per |034444.7+320402 |INB | 13.17 |( 0.29 )| |I | | | | |M0.5e |80148 2MASS| NL80_1 +630927 |V0927 Per |034450.6+321907 |IN | 11.0 |( 0.10 * )| |V | | | 6.0371 | | |80021 GSC | NL80_1 +630928 |V0928 Per |034630.4+330235 |RS | 9.8 |( 0.05 * )| |R | | | 1.1202 | |F |80021 GSC | NL80_1 +630929 |V0929 Per *|035652.6+514851 |LB | 15.68 | 16.26 | |V | | | | | |80152 USNO | NL80_1 +630930 |V0930 Per *|035652.6+515156 |EA | 12.60 | 12.79 | |V |54557.376 | | 2.4689 : | | |80001 GSC | NL80_1 +630931 |V0931 Per *|035700.8+514409 |DCEPS: | 13.92 | 14.09 | |V |54503.1155 | | 1.8667 : |50 : | |80152 GSC | NL80_1 +630932 |V0932 Per *|035751.8+520550 |LB: | 16.20 | 17.38 | |V | | | | | |80152 USNO | NL80_1 +630933 |V0933 Per |035848.1+514259 |DCEPS | 16.54 | 16.89 | |V |54505.4001 | | 4.3253 |35 | |80152 USNO | NL80_1 +630934 |V0934 Per *|035857.5+513541 |EB | 15.76 | 15.90 | 15.85 |V |54499.8975 | | 0.28785 | | |80152 USNO | NL80_1 +630935 |V0935 Per *|035911.7+520433 |LB: | 11.49 | 11.57 | |V | | | | | |80152 GSC | NL80_1 +630936 |V0936 Per *|035920.7+511425 |EB | 14.91 | 15.95 | 15.2 |V |54500.1683 | | 0.57001 | | |80152 USNO | NL80_1 +630937 |V0937 Per |035931.6+515447 |EA | 17.39 | 17.97 | |V | | | | | |80152 USNO | NL80_1 +630938 |V0938 Per |035938.2+524727 |DCEP | 13.1 | 13.8 | |* |51540.2 | | 3.71 |23 | |80081 USNO | NL80_1 +630939 |V0939 Per *|035939.1+513338 |LB: | 15.10 | 15.34 | |V | | | | | |80152 USNO | NL80_1 +630940 |V0940 Per |035957.1+515701 |LB: | 17.4 | 17.9 | |V | | | | | |80152 USNO | NL80_1 +630941 |V0941 Per |040005.8+394137 |RS | 12.1 |( 0.14 * )| |V | | | 5.6162 | | |80021 GSC | NL80_1 +630942 |V0942 Per |040006.2+513902 |RR: | 17.52 | 17.99 | |V |54501.1083 | | 0.57644 |40 : | |80152 USNO | NL80_1 +630943 |V0943 Per *|040041.4+515659 |LB: | 17.93 | 19.26 | |V | | | | | |80152 2MASS| NL80_1 +630944 |V0944 Per *|040048.9+511145 |EW | 16.53 | 16.82 | 16.78 |V |54500.1716 | | 0.28910 | | |80152 USNO | NL80_1 +630945 |V0945 Per *|040105.1+512141 |EW | 16.03 | 16.20 | 16.20 |V |54499.6698 | | 0.36105 | | |80152 USNO | NL80_1 +630946 |V0946 Per |040105.2+343903 |RS | 10.7 |( 0.19 * )| |V | | | 18.1451 | |K0 |80021 DM | NL80_1 +630947 |V0947 Per *|040341.0+322706 |EW | 13.45 | 14.05 | 13.95 |V |53756.34206 | | 0.29768 | | |80157 80157| NL80_1 +630948 |V0948 Per |040415.4+494357 |RS | 10.64 | 10.90 | |* | | | 10.03 | | |80158 GSC | NL80_1 +630949 |V0949 Per |040753.3+335605 |RS | 11.4 |( 0.07 * )| |V | | | 3.8678 | |K3 |80021 GSC | NL80_1 +630950 |V0950 Per |040754.3+352749 |RS | 10.4 |( 0.12 * )| |V | | | 9.4797 | |G0 |80021 DM | NL80_1 +630951 |V0951 Per *|041036.3+340258 |EW | 12.70 | 13.20 | 13.14 |* |51439.815 | | 0.27048 | | |80033 80033| NL80_1 +630952 |V0952 Per |041551.4+310036 |IB | 12.34 | 12.47 | |V | | | 0.414 : | |G6 |80154 GSC | NL80_1 +630953 |V0953 Per |041634.7+490729 |SR | 13.2 | 13.8 | |* | | | 82. | | |80120 80120| NL80_1 +630954 |V0954 Per |041911.6+471640 |RS | 11.60 | 11.77 | |* | | | 4.7334 | | |80060 80060| NL80_1 +630955 |V0955 Per |042437.3+480001 |LB | 12.6 | 13.1 | |* | | | | | |80062 USNO | NL80_1 +630956 |V0956 Per |042637.4+384502 |IB | 10.70 | 10.85 | |* | | | 2.0978 | |G5V |80170 80170| NL80_1 +630957 |V0957 Per |043033.5+480443 |DCEP | 13.4 | 14.0 | |* |51424.2 | | 4.56 |19 | |80081 USNO | NL80_1 +630958 |V0958 Per *|043128.4+325213 |EA | 11.77 | 12.35 | |* |51535.66 | | 4.9002 |08 |A7 |80013 GSC | NL80_1 +630959 |V0959 Per *|043504.8+372821 |EA | 10.11 | 10.75 | 10.7 : |* |51603.766 | | 0.990715 |16 |F0 |80042 DM | NL80_1 +630960 |V0960 Per *|043715.3+334849 |EA | 11.66 | 12.78 | 11.83 |* |51512.680 | | 4.5265 |12 | |80013 GSC | NL80_1 +630961 |V0961 Per |043716.9+310820 |IB | 13.12 | 13.31 | |V | | | 1.429 : | |K4 |80154 GSC | NL80_1 +630962 |V0962 Per |044356.9+372303 |BY | 13.0 |( 0.20 * )| |V | | | 4.2878 | | |80021 GSC | NL80_1 +630963 |V0963 Per *|044535.6+522235 |EB | 13.2 | 14.2 | 13.7 |* |51537.6191 | | 0.4621 | | |80016 80016| NL80_1 +630964 |V0964 Per *|044931.1+513111 |EW | 12.50 | 12.95 | 12.90 |* |51291.6775 | | 0.4173 | | |80016 80016| NL80_1 +630965 |V0965 Per |031116.2+370503 |N | 17.5 |< 21. | |* |55873. |2011 | | |pec(Nova) |80608 | NL80_3 +639002 |bet Per *|030810.1+405720 |EA/SD | 2.12 | 3.39 | |V |45641.5135 | | 2.8673043 |14 *|B8V |00001 08953| +639003 |gam Per |030447.8+533023 |EA/GS | 3.63 |( 0.55 )| |B | | | | | |71019 BD | +639004 |del Per *|034255.5+474715 |GCAS: | 2.99 | 3.04 | |V | | | | |B5III | BD | +639005 |eps Per |035751.2+400037 |BCEP | 2.88 | 3.00 | |V | | | | | |68283 BD | +639014 |ksi Per *|035857.9+354728 |* | 4.00 | 4.06 | |V | | | | |O7.5III(f) |04194 BD | +639015 |omi Per *|034419.1+321718 |ELL | 3.79 | 3.88 | |V |36459.0 | | 4.4191666 | |B1III+B2V |09806 BD | +639017 |rho Per *|030510.6+385025 |SRB | 3.30 | 4.0 | |V | | | 50. : | |M4IIb-IIIa | 08953| +639019 |tau Per |025415.5+524545 |EA/GS | 3.94 | 4.07 | |V | | | | | |68204 BD | +639021 |phi Per *|014339.6+504119 |GCAS | 3.96 | 4.11 | |V | | | 19.5 | |B2Vne+B3Vne |03124 BD | +639023 |psi Per |033629.4+481134 |GCAS | 4.17 | 4.28 | |V | | | | |B5III-Vne |08663 BD | +639102 |b Per *|041814.6+501744 |ELL | 4.52 | 4.68 | |V |43141.728 | | 1.5273643 | |A2V |09809 BD | +640001 |R Phe *|235627.6-494713 |M | 7.5 | 14.4 | |V |39486. | | 269.26 |50 |M2(II)e-M4(III)e |00001 00002| +640002 |S Phe |235904.6-563432 |SRB | 8.6 | 10.6 | |p | | | 141. | |M3e-M6IIIe |00643 05474| +640003 |T Phe *|003026.2-462433 |M | 8.7 | 14.6 | |V |41070. | | 281.79 |37 |M5e |00001 00002| +640004 |U Phe |003503.2-501216 |M | 10.1 |< 14.5 | |p |29875. | | 226.3 | | |00643 08953| +640005 |V Phe |233227.3-455919 |M | 8.5 | 14.4 | |V |40817. | | 257.00 |47 |M4e |00001 00002| +640006 |W Phe *|011952.6-555504 |M | 8.1 | 14.4 | |V |41455. | | 333.95 |42 |M5e-M6e |00001 05464| +640007 |X Phe |012330. -523022:|EA: | |< 15. | |p | | | | | |00029 | +640008 |Y Phe |233937.6-534335 | | 13.0 |< 15. | |p | | | | | |00029 UCAC2| +640009 |Z Phe |235904.9-532403 |M | 10.0 |< 15. | |p |28844. | | 255. | |Me |00001 09467| +640010 |RR Phe |235844.1-392700 |M | 9.4 |< 14.0 | |p |30423. | | 426.55 | | |01188 08953| +640011 |RS Phe *|011401.5-564644 |M | 10.6 |< 14.5 | |p |24802. | | 239. | |M2e |00210 05464| +640012 |RT Phe *|015329.0-490026 |M | 11.4 |< 13.5 | |p |24804. | | 416. : | | |00210 09611| +640013 |RU Phe |232808.7-472729 |M | 10.8 |< 12.9 | |p |28366. | | 289. | |M1e |00016 08667| +640014 |RV Phe *|232831.4-472713 |RRAB | 11.12 | 12.26 | |V |41915.525 | | 0.5964182 |15 |F6: |07984 06286| +640015 |RW Phe |003016.3-462759 |E | 12.4 | 14.0 | |V |25859.344 | | 5.4129 | | |01189 03389| +640016 |RX Phe |002422.8-542528 |RR | 14.2 | 15.1 | |p |24761.75 | | 0.52654 | | |00193 06286| +640017 |RY Phe |005001.1-553413 |RR | 15.4 | 16.0 | |p |24759.75 | | 0.60650 | | |00193 06286| +640018 |RZ Phe |010937.8-563506 |RR | 14.9 | 15.8 | |p |24765.80 | | 0.55620 | | |00193 04001| +640019 |SS Phe |003029.6-561207 |I | 13.1 | 13.8 | |p | | | | | |00193 UCAC2| +640020 |ST Phe |003606.2-554928 |LB | 13.1 | 13.7 | |p | | | | |C(N) |00193 06286| +640021 |SU Phe |010329.4-564539 |I | 13.6 | 14.1 | |p | | | | | |00193 UCAC2| +640022 |SV Phe |234917.1-430641 |M | 10.2 | 15.0 | |p |28740. | | 265. | | |00016 08953| +640023 |SW Phe |000030.0-393729 |EA/SD | 10.0 | 11.8 | |p |28423.45 | | 2.5531 |08 |A5 |00016 08588| +640024 |SX Phe *|234632.9-413455 |SXPHE(B) | 6.76 | 7.53 | |V |38636.6170 | | 0.054964438 |34 |A5-F4 |09525 08953| +640025 |SY Phe |013030.8-424225 |ISB: | 9.75 | 9.96 | |V | | | | |F8 |02412 03389| +640026 |SZ Phe |013403.4-431430 |ISB | 9.81 | 10.12 | |V | | | | |K4 |02412 03389| +640027 |TT Phe |014531.6-415545 |ISB: | 10.28 | 10.74 | |V | | | | | |02412 CoD | +640028 |TU Phe |233523.7-550306 |ISB: | 11.5 | 13. | |p | | | | | |02763 02763| +640029 |TV Phe |010440.7-450828 |RRAB | 13.3 | 15.0 | |p |36736.589 | | 0.54591 |15 | |08121 04001| +640030 |TW Phe |010454.3-430712 |RR | 14.9 |< 16.0 | |p |36813.466 | | | | |08121 04001| +640031 |TX Phe |010639.0-463341 |RR: | 15.5 |< 16.0 | |p |36848.442 | | | | |08121 04001| +640032 |TY Phe |010701.1-415725 |RRAB | 14.4 | 15.3 | |p |36837.432 | | 0.4898 |15 | |08121 04001| +640033 |TZ Phe |010958.4-420744 |RRAB | 12.2 | 12.8 | |p |36820.437 | | | | |08121 04001| +640034 |UU Phe |011011.0-452431 |RRAB | 15.6 |< 16.7 | |p |36758.585 | | 0.59006 : | | |08121 04001| +640035 |UV Phe |011210.7-411328 |RR | 13.7 | 14.7 | |p |36793.500 | | 2.019 /N| | |08121 04001| +640036 |UW Phe |011420.9-530950 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +640037 |UX Phe |011654.8-393146 |RRC | 15.0 | 15.5 | |p |36760.601 | | 0.373143 |38 | |08121 04001| +640038 |UY Phe |012311.0-421834 |UGSS | 14.6 | 15.9 | |p | | |( 21. ) | | |08121 08852| +640039 |UZ Phe |012431.6-445643 |RRAB | 15.2 | 15.8 | |p |36820.521 | | 0.48487 : |25 | |08121 04001| +640040 |VV Phe |012455.4-453329 |RRAB | 14.5 | 15.4 | |p |36820.521 | | 0.5265 |15 | |08121 04001| +640041 |VW Phe |012533.6-414835 |EA/DM: | 10.57 | 11.14 | |V |28719.650 | | 1.742160 | | |05235 04001| +640042 |VX Phe |012620.7-393108 |RRAB | 14.5 | 15.8 | |p |36817.473 | | 0.5515 |20 | |08121 04001| +640043 |VY Phe |012738.1-430017 |RRAB | 15.1 |< 16.4 | |p |36806.450 | | 0.593636 : |25 | |08121 04001| +640044 |VZ Phe |012810.3-452434 |SR | 12.5 | 13.5 | |p |36830. | | 150. : | | |08121 04001| +640045 |WW Phe *|013106.8-435935 |EA | 12.4 | 13.2 | 12.7 |p |36789.445 | | 0.720 | | |08121 04001| +640046 |WX Phe |013342.3-434923 |EA | 11.9 | 12.9 | |p |36822.535 | | 1.387 : |10 | |08121 04001| +640047 |WY Phe |013726.1-411629 |RRAB | 14.7 | 15.6 | |p |36814.376 | | 0.5387 |10 | |08121 04001| +640048 |WZ Phe |013845.9-455454 |RRAB | 14.4 | 15.4 | |p |36734.583 | | 0.51145 |23 | |08121 04001| +640049 |XX Phe |013913.4-392837 |RRAB | 13.5 | 15.0 | |p |36821.562 | | 0.572 |15 | |08121 04001| +640050 |XY Phe |014025.0-413802 |RR: | 13.4 | 14.0 | |p |36820.479 | | | | |08121 04001| +640051 |XZ Phe |014048.8-461657 |RRAB | 14.2 | 15.3 | |p |36781.443 | | 0.527 |15 | |08121 04001| +640052 |YY Phe |014054.2-473219 |RRAB | 13.9 | 15.1 | |p |36736.601 | | 0.6203 |15 | |08121 04001| +640053 |YZ Phe *|014225.9-455704 |EW/KW | 12.7 | 13.2 | 13.0 |p |36765.622 | | 0.3052 | | |08121 04001| +640054 |ZZ Phe |014523.7-461420 |RR | 13.5 | 14.4 | |p |36820.437 | | | | |08121 04001| +640055 |AA Phe |014543.6-452559 |RRAB | 13.2 | 13.9 | |p |36782.477 | | 0.55965 |15 | |08121 04001| +640056 |AB Phe |014612.8-472111 |RR | 15.0 | 15.5 | |p |36787.454 | | | | |08121 04001| +640057 |AC Phe |015649.0-442106 |RR | 14.0 | 15.0 | |p |36821.605 | | | | |08121 04001| +640058 |AD Phe *|011638.1-394231 |EW/KW | 10.27 | 10.80 | 10.80 |V |44250.598 | | 0.3799252 | | |00001 04001| +640059 |AE Phe *|013232.9-493141 |EW/KW | 7.56 | 8.25 | 8.19 |V |43732.8819 | | 0.362377 | |G0V+G0V |09615 CoD | +640060 |AF Phe |001607.7-483321 |LB | 7.57 | 7.82 | |V | | | | |M4III |05973 CoD | +640061 |AG Phe *|002654.9-395255 |EA/KE: | 8.87 | 9.36 | 8.95 |V |44170.79481 | | 0.75533809 |22 *|A9V |09538 06317| +640062 |AH Phe |004657.5-475852 |SR | 9.27 | 9.48 | |V | | | 45. : | |M6III |05973 CoD | +640063 |AI Phe *|010934.2-461556 |EA/DM | 8.58 | 9.35 | 8.89 |V |43410.6885 | | 24.592325 |02 |F7V+G5:V |09617 06336| +640064 |AK Phe |011933.9-471732 |LB | 7.40 | 7.64 | |V | | | | |M4III |05973 CoD | +640065 |AL Phe |012514.0-455535 |LB: | 8.33 |( 0.27 )| |V | | | | |M3/4 |05973 CoD | +640066 |AM Phe |014951.0-425810 |LB | 9.55 | 9.91 | |V | | | | |M5/6 |05973 CoD | +640067 |AN Phe |233352.2-450300 |SR | 8.83 | 9.54 | |V | | | 70. : | |M6III |05973 08667| +640068 |AO Phe |010702.5-463546 |E | 15.4 |< 16.0 | |p |36787.454 | | | | |08121 04001| +640069 |AP Phe |011925.4-463443 |E: | 14.5 | 15.0 | |p |36765.585 | | | | |08121 04001| +640070 |AQ Phe |011932.3-471511 |E: | 14.8 | 15.3 | |p | | | 12. : | | |08121 04001| +640071 |AR Phe |012355.6-413002 |E: | 11.5 | 12.0 | |p |36764.634 | | | | |08121 04001| +640072 |AS Phe |013003.5-413020 |E | 14.0 | 14.4 | |p |36820.437 :| | | | |08121 04001| +640073 |AT Phe |013604.6-420129 |SR | 14.3 | 15.0 | |p |36787. | | 65. : | | |08121 04001| +640074 |AU Phe *|015023.5-465828 |EW/KW | 12.5 | 13.0 | 13.0 |p |36735.584 | | 0.265814 : | | |08121 04001| +640075 |AV Phe |011257.4-435229 |RR: | 16.0 |< 17.0 | |p | | | | | |08121 04001| +640076 |AW Phe |012930.5-464523 |LB: | 6.22 |( 0.15 )| |V | | | | |M2III |05840 CoD | +640077 |AX Phe *|010654.1-460854 |ZZA | 15.26 | 15.42 | |V | | | | |DA |09540 08334| +640078 |AY Phe |233750.0-453408 |LB | 7.76 | 8.04 | |V | | | | |M4III |05973 CoD | +640079 |AZ Phe |005003.8-432342 |DSCTC | 6.47 |( 0.015 )| |V | | | 0.0492 | |A9/F0III |09618 CoD | +640080 |BB Phe |003027.8-405623 |DSCTC | 6.18 |( 0.04 )| |V | | | | | |67183 CoD | +640081 |BC Phe |012219.0-564353 |RS | 8.4 : |( 0.06 )| |V | | | | | |67024 CoD | +640082 |BD Phe |015054.4-501222 |DSCTC | 5.90 | 5.94 | |V | | | | | |68079 CoD | +640083 |BE Phe |002147.4-401715 |M: | 6.41 | 7.04 | |J | | | | | |69152 69152| +640084 |BF Phe |234954.6-421803 |DSCTC | 7.7 |( 0.03 b )| |V | | | | | |70091 CoD | +640085 |BG Phe |004901.3-560549 |BE | 10.31 | 10.36 | |V | | | | | |73266 73267| +640086 |BH Phe |000528.0-425315 |SRB: | 7.31 | 7.63 | |Hp| | | | | |HIP HIP | +640087 |BI Phe |000600.0-484044 |SRB: | 9.56 | 9.84 | |Hp| | | | | |HIP HIP | +640088 |BK Phe |000741.0-561458 |LB: | 9.17 | 9.30 | |Hp| | | | | |HIP HIP | +640089 |BL Phe |001047.4-572911 |EB | 8.34 | 8.68 | |Hp| | | | | |HIP HIP | +640090 |BM Phe |001845.9-394038 |EW | 9.27 | 9.53 | |Hp| | | | | |HIP HIP | +640091 |BN Phe |001922.5-535039 |SRB | 7.81 | 7.93 | |Hp| | | | | |HIP HIP | +640092 |BO Phe |002020.2-570948 |SRB | 8.58 | 9.56 | |Hp| | | | | |HIP HIP | +640093 |BP Phe |002343.7-492128 |LB: | 7.72 | 7.84 | |Hp| | | | | |HIP HIP | +640094 |BQ Phe |002524.1-465527 |SXPHE: | 10.47 | 10.60 | |Hp| | | | | |HIP HIP | +640095 |BR Phe |003116.5-513858 |LB: | 9.01 | 9.13 | |Hp| | | | | |HIP HIP | +640096 |BS Phe |003737.0-553937 |SRB | 8.38 | 8.55 | |Hp| | | | | |HIP HIP | +640097 |BT Phe |004929.4-554552 |SRB | 9.38 | 9.64 | |Hp| | | | | |HIP HIP | +640098 |BU Phe |004956.3-572311 |SRB | 7.15 | 7.26 | |Hp| | | | | |HIP HIP | +640099 |BV Phe |005525.3-514958 |BY: | 12.09 | 12.59 | |Hp| | | | | |HIP HIP | +640100 |BW Phe |005655.4-515232 |BY: | 9.05 | 9.19 | |Hp| | | | | |HIP HIP | +640101 |BX Phe |005951.6-494502 |SRB | 7.33 | 7.50 | |Hp| | | | | |HIP HIP | +640102 |BY Phe |012433.9-454317 |SR | 7.87 | 7.91 | |Hp| | | | | |HIP HIP | +640103 |BZ Phe |012450.1-424552 |LB: | 8.88 | 9.03 | |Hp| | | | | |HIP HIP | +640104 |CC Phe |012808.6-523819 |BY: | 9.41 | 9.55 | |Hp| | | | | |HIP HIP | +640105 |CD Phe |014202.9-410705 |ACV: | 8.69 | 8.74 | |Hp| | | | | |HIP HIP | +640106 |CE Phe |014737.8-461526 |SRB | 7.04 | 7.22 | |Hp| | | | | |HIP HIP | +640107 |CF Phe |020614.4-393220 |SRB | 7.05 | 7.21 | |Hp| | | | | |HIP HIP | +640108 |CG Phe *|233130.2-405844 |SXPHE: | 10.23 | 10.57 | |Hp| | | | | |HIP HIP | +640109 |CH Phe |233812.5-562704 |LB: | 7.42 | 7.53 | |Hp| | | | | |HIP HIP | +640110 |CI Phe |234419.2-542610 |SRB: | 7.22 | 7.81 | |Hp| | | | | |HIP HIP | +640111 |CK Phe |234651.2-554834 |LB | 7.24 | 7.41 | |Hp| | | | | |HIP HIP | +640112 |CL Phe |235149.5-461909 |BY: | 9.70 | 9.83 | |Hp| | | | | |HIP HIP | +640113 |CM Phe |002133.2-514235 |E:+NL | 15.28 |( 0.5 )| |V | | | | | |76004 76005| +640114 |CN Phe |004637.6-420937 |DSCTC | 9.45 |( 0.01 )| |V | | | | | |76009 DM | +640115 |CO Phe |005200.6-470709 |ZZA | 16.53 |( 0.15 )| |V | | | | | |76013 76010| +640116 |CP Phe |003418.6-430003 |SRA | 10.6 | 13.0 | |V |52157 | | 144. | | |78130 78004| +640117 |CQ Phe |003751.6-395200 |RRAB | 13.0 | 14.6 | |V |52087.856 | | 0.58401 |15 |F7-F8 |78130 78014| +640118 |CR Phe |005002.5-484347 |SRB | 9.2 | 10.6 | |V | | | 119. | | |78130 DM | +640119 |CS Phe |010949.5-441854 |RRAB | 11.9 | 13.8 | |V |51884.534 | | 0.48436 |22 | |78130 78021| +640120 |CT Phe |012546.4-395611 |EA | 11.2 | 11.8 | |V |52104.857 | | 1.2608 | | |78130 78004| +640121 |CU Phe |013830.8-425541 |GDOR: | 6.68 |( 0.06 )| |V | | | | |F0V |78024 DM | +640122 |CV Phe |021247.1-442920 |DSCTC | 7.84 |( 0.02 b )| |V | | | 0.080 | |F0V |78037 DM | +640123 |CW Phe |005151.5-555024 |LB | 11.8 | 12.7 | |V | | | | | |79100 79010| +640124 |CX Phe |011931.1-481741 |EA | 8.77 | 9.14 : | 9.0 |V |48736.140 | | 19.9757 : | |F0V |79011 DM | +640125 |CY Phe |014224.0-464052 |SRB | 9.4 | 10.2 | |V | | | 319. | | |79064 DM | +640126 |CZ Phe *|235621.8-532922 |RR(B) | 12.4 | 13.4 | |V |52978.625 | | 0.42249 | | |79208 79071| +640127 |DD Phe |235704.6-521319 |LB | 9.9 | 10.7 | |V | | | | | |79100 DM | +640128 |DE Phe |235755.3-415543 |EA | 11.25 | 11.81 | 11.37 |V |52502.749 | | 1.40296 |13 | |79011 DM | +640129 |DF Phe |000156.9-525007 |LB | 10.4 | 11.0 | |V | | | | | |80010 DM | NL80_1 +640130 |DG Phe |010901.5-510050 |UV+BY | 16.70 | 18.30 | |R | | | 0.32590 | |M8.5V |80074 2MASS| NL80_1 +640131 |DH Phe |234106.6-420849 |RRC | 12.68 | 13.15 | |V |52227.528 | | 0.380481 |49 | |80135 GSC | NL80_3 +640132 |DI Phe |235420.4-470021 |EA+NL | 18.6 | 20.6 | |V |50360.6614 | | 0.065538 | |pec(e) |80524 80524| NL80_3 +649003 |gam Phe *|012821.9-431906 |LB: | 3.39 | 3.49 | |V | | | | |M0IIIa |04613 CoD | +649006 |zet Phe *|010823.1-551445 |EA/DM | 3.91 | 4.42 | |V |41643.6890 | | 1.6697671 |12 *|B6V+B9V |09544 08953| +649009 |iot Phe *|233504.6-423654 |ACV | 4.70 | 4.75 | |V | | | 12.5 : | |A2Vp(Sr-Cr-Eu) |05880 CoD | +649014 |ksi Phe *|004146.4-563005 |ACV | 5.68 | 5.78 | |V |42314.48 | | 3.9516 | |A9p(Sr-Cr-Eu) |04196 CPD | +649017 |rho Phe *|005041.2-505913 |DSCT | 5.17 | 5.27 | |V | | | 0.110 : | |F3III |06255 CoD | +649023 |psi Phe *|015338.7-461810 |SR | 4.3 | 4.5 | |V | | | 30. | |M4III |06994 CoD | +650001 |R Pic *|044609.6-491445 |SR | 6.35 | 10.1 | |V |44922. | | 170.9 | |M1IIe-M4IIe |00001 00002| +650002 |S Pic *|051057.3-483026 |M | 6.5 | 14.0 | |V |39595. | | 428.0 |36 |M6.5e-M8III-IIe |00001 00002| +650003 |T Pic |051505.9-465505 |M | 7.9 | 14.4 | |V |41283. | | 200.58 |49 |M6IIIe |00001 00002| +650004 |U Pic *|045006.6-503925 |RRAB | 10.68 | 11.87 | |V |41666.449 | | 0.4403710 |12 |A5-F6 |07984 06286| +650005 |V Pic |061314.8-595454 |SR | 8.65 | 10.22 | |V |28730. | | 180. | | |00016 08953| +650006 |W Pic |054313.8-462714 |LB | 11.8 |< 15.0 | |p | | | | |C(N) |00016 CoD | +650007 |X Pic *|050456.5-530826 |EA/SD | 10.7 | 11.8 | 10.8 |p |29112.169 | | 0.8619043 |19 |A2 |00007 CPD | +650008 |Y Pic |051111.5-453439 |SRB | 9.7 | 11.2 | |p | | | 115.7 | |M4/6(III) |00353 08953| +650009 |Z Pic |053409.4-551929 |M | 13.0 |< 15. | |p | | | | |Me |00029 GSC | +650010 |RR Pic *|063536.1-623824 |NB | 1.2 | 12.52 | |V |24310. |1925 | | |pec(NOVA) |09624 04787| +650011 |RS Pic |044203.3-513335 |S: | 11.5 | 12.3 | |p | | | | | |00210 06286| +650012 |RT Pic *|060041.3-445350 |E: | 9.9 |< 12.5 | |p |24120.704 | | | |G8V |01191 08953| +650013 |RU Pic |063018.3-601340 |M | 10.8 |< 15.0 | |p |30055. | | 207.9 | | |00353 USNO | +650014 |RV Pic *|045729.7-520846 |EA/DM | 9.64 | 12.09 | 9.79 |V |41286.757 | | 3.971780 |09 |A1V |07355 CPD | +650015 |RW Pic |060932.3-600719 |M | 10.2 |< 13.8 | |p |28794. | | 287. | |Me |01000 08953| +650016 |RX Pic |063128.3-633207 |EA | 9. | 10.5 | |p | | | | |A2/3V |00085 05625| +650017 |RY Pic |053717.1-553824 |M | 10.6 |< 14.1 | |p |38378. | | 219. : | |M3e |08627 04256| +650018 |RZ Pic |061723.7-615408 |M | 10.0 | 14.0 | |p |38731. | | 311. | |M3e |08627 02381| +650019 |SS Pic |054728.9-451446 |SR: | 9.9 | 10.7 | |p |38375.2 | | 57.5 | | |04371 08953| +650020 |ST Pic |061401.2-612824 |RR | 9.29 | 9.77 | |V |42034.450 | | 0.48574 |22 |F5V |03306 CPD | +650021 |SU Pic *|051814.5-453447 |EA/DM | 10.15 | 10.64 | 10.4 |V |28815.475 | | 1.838115 | |A0 |05393 CoD | +650022 |SV Pic |044003.1-522326 |SRB | 8.99 | 9.17 | |V | | | 60. | |M4III |05828 CPD | +650023 |SW Pic |060209.3-600549 |LB: | 6.45 |( 0.12 )| |V | | | | |M4III |05840 CPD | +650024 |SX Pic |054304.3-505734 |M | 12. |< 13.5 | |p | | | | |Me |00085 02381| +650025 |SY Pic |044838.5-491012 |ACV | 8.84 | 8.87 | |V | | | 15.864 | |A5p(Sr-Eu) |09625 CoD | +650026 |SZ Pic |055327.4-433331 |RS | 7.81 | 7.97 | |V |43931.54 | | 2.441 | |G8V |09626 CoD | +650027 |TT Pic |051637.8-455450 |ACV | 7.1 |( 0.07 )| |V | | | | | |67064 CoD | +650028 |TU Pic |050725.9-444918 |ACV | 6.93 |( 0.03 )| |V | | | | | |68290 CoD | +650029 |TV Pic |044857.5-470804 |ELL | 7.5 |( 0.12 )| |V | | | | | |69228 CoD | +650030 |TW Pic |053450.7-580141 |NL | 14.1 | 15.6 | |B | | | | | |69096 69096| +650031 |TX Pic |053602.9-471850 |RS | 6.08 | 6.12 | |V | | | | | |69011 CoD | +650032 |TY Pic |060756.9-542621 |RS | 7.61 | 7.68 | |V | | | | | |69011 CPD | +650033 |TZ Pic |063105.7-590017 |RS | 7.59 | 7.66 | |V | | | | | |69011 CPD | +650034 |UU Pic |051425.6-525352 |NL | 19.5 | 20.5 | |p | | | | | |73015 73015| +650035 |UV Pic |052049.3-454130 |BY | 11.80 | 11.93 | |V | | | | | |73103 CoD | +650036 |UW Pic |053135.6-462405 |XM | 16.4 | 17.6 | |V | | | | | |73268 73268| +650037 |UX Pic |053559.5-440439 |M | 3.90 | 5.47 | |J | | | | | |73014 GSC | +650038 |UY Pic |053656.9-475753 |RS: | 7.86 | 7.97 | |V | | | | | |73269 73153| +650039 |UZ Pic |045509.6-495644 |E: | 8.28 | 8.57 | |Hp| | | | | |HIP HIP | +650040 |VV Pic |045634.9-432557 |LB: | 7.91 | 8.01 | |Hp| | | | | |HIP HIP | +650041 |VW Pic *|045929.6-492729 |EW | 7.06 | 7.15 | |Hp| | | | | |HIP HIP | +650042 |VX Pic |050300.3-540553 |SRB | 8.71 | 8.93 | |Hp| | | | | |HIP HIP | +650043 |VY Pic |050624.5-561353 |LB: | 8.30 | 8.54 | |Hp| | | | | |HIP HIP | +650044 |VZ Pic *|051140.6-450106 |BY: | 8.90 | 9.22 | |Hp| | | | | |HIP HIP | +650045 |WW Pic |052036.9-433202 |SRA | 6.49 | 6.98 | |Hp| | | | | |HIP HIP | +650046 |WX Pic |052800.4-442738 |LB: | 8.74 | 8.86 | |Hp| | | | | |HIP HIP | +650047 |WY Pic |054011.6-433505 |SRB: | 8.05 | 8.20 | |Hp| | | | | |HIP HIP | +650048 |WZ Pic |054113.1-572628 |E: | 9.26 | 9.35 | |Hp| | | | | |HIP HIP | +650049 |XX Pic |054331.0-473246 |SRB | 7.54 | 7.74 | |Hp| | | | | |HIP HIP | +650050 |XY Pic |054530.6-553441 |EW | 7.61 | 7.66 | |Hp| | | | | |HIP HIP | +650051 |XZ Pic |054513.4-595526 |BY: | 9.30 | 9.60 | |Hp| | | | | |HIP HIP | +650052 |YY Pic |054855.6-461856 |DSCTC | 7.57 | 7.64 | |Hp| | | | | |HIP HIP | +650053 |YZ Pic |055354.3-550537 |SRB | 8.55 | 8.77 | |Hp| | | | | |HIP HIP | +650054 |ZZ Pic |055648.0-592521 |LB | 8.45 | 9.14 | |Hp| | | | | |HIP HIP | +650055 |AA Pic |055742.7-481524 |LB: | 8.15 | 8.26 | |Hp| | | | | |HIP HIP | +650056 |AB Pic |061912.9-580316 |BY: | 9.21 | 9.35 | |Hp| | | | | |HIP HIP | +650057 |AC Pic |062140.7-562144 |SRB | 6.78 | 6.89 | |Hp| | | | | |HIP HIP | +650058 |AD Pic |062237.1-623819 |LB | 8.61 | 8.96 | |Hp| | | | | |HIP HIP | +650059 |AE Pic |063110.6-615246 |EB: | 6.09 | 6.14 | |Hp| | | | | |HIP HIP | +650060 |AF Pic |053306.8-560354 |ZZA | 16.00 |( 0.2 )| |V | | | | | |76043 USNO | +650061 |AG Pic |053512.1-580108 |DSCT | 12.1 |( 0.19 )| |R | | | | | |77047 GSC | +650062 |AH Pic |055712.6-593526 |NL | 14.0 | 14.4 | |B | | | | | |77003 GSC | +650063 |AI Pic |063249.6-633550 |M | 12.2 |< 15.0 | |V |53068 | | 309. | |Me |78130 USNO | +650064 |AK Pic |063800.4-613200 |BY | 6.14 | 6.19 | |V | | | 2.60 | |G0V+K2/3V |78046 DM | +650065 |AL Pic *|044130.8-521637 |RRAB | 12.8 | 14.0 | |V |53049.567 | | 0.54861 |30 : | |79033 GSC | +650066 |AM Pic *|051344.6-493248 |SRA | 8.6 | 9.6 | |V |53712. | | 253. | |M1 |79064 DM | +650067 |AN Pic |060303.2-430138 |SRB | 9.2 | 10.0 | |V | | | 80. : | |M4/6 |79100 DM | +650068 |AO Pic *|061108.5-581716 |EA | 9.43 | 9.83 | 9.70 |V |53517.483 | | 2.23415 |06 |F5/F6IV/V |79009 DM | +650069 |AP Pic |063356.8-624944 |SRB | 8.92 | 9.16 | |V | | | 28.4 | |M3III |79100 DM | +650070 |AQ Pic |063816.5-581734 |M | 10.2 |< 14.6 | |V |53754. | | 232. | | |79064 GSC | +650071 |AR Pic |054945.4-492156 |UGSU | 13.28 |< 14.4 | |V | | | | |pec(UG) |80012 80027| NL80_1 +650072 |AS Pic *|060556.8-534252 |EW | 10.82 | 11.14 | 11.10 |V |51868.137 | | 0.463634 | | |80036 GSC | NL80_2 +650073 |AT Pic |062339.5-612948 |RRAB | 13.45 | 14.4 | |V |52967.75 | | 0.474285 |30 | |80083 GSC | NL80_2 +650074 |AU Pic *|063447.2-623538 |EW | 14.0 | 14.4 | 14.3 |* |53392.0053 | | 0.3119 | | |80253 80253| NL80_2 +659004 |del Pic *|061017.9-545807 |EB/D: | 4.65 | 4.90 | 4.83 |V |41695.336 | | 1.672541 | |B3III+O9V |07587 CPD | +660001 |R Psc *|013038.4+025254 |M | 7.0 | 14.8 | |V |44920. | | 344.50 |44 |M3e-M6e |00001 00002| +660002 |S Psc *|011734.5+085553 |M | 8.2 | 15.3 | |V |42325. | | 404.62 |42 |M5e-M7e |00001 00002| +660003 |T Psc |003201.1+143605 |SRB | 9.2 | 12.5 | |V | | | 252. | |M5 |08642 08953| +660004 |U Psc *|012258.5+125203 |M | 10.3 | 14.9 | |V |43432. | | 173.1 |48 |M4e |00001 00002| +660005 |V Psc *|002225.2+064003 |UV: | 11. | 12. | |p | | | | |M1V |01897 00664| +660006 |W Psc *|005946.5+275645 |M | 11.4 | 14.8 | |p |45337. | | 188.1 |48 |M2e-M4 |00001 06073| +660007 |X Psc *|011207.7+221325 |M | 9.8 |< 15. | |p |42314. | | 349.6 | |M5e-M6e |00001 04008| +660008 |Y Psc *|233425.4+075529 |EA/SD | 10.1 | 13.1 | |p |45635.241 | | 3.765767 |10 |A3+K0IV |00001 08953| +660009 |Z Psc |011605.0+254610 |SRB | 8.8 | 10.1 | |p | | | 144. | |C7,2(N0) |01194 08953| +660010 |RR Psc |000101.4+062728 |M | 12.1 |< 16. | |p |32076. | | 270.6 | | |00001 01195| +660011 |RS Psc *|004752.8+193548 | | 14.5 |< 16. | |p | | | | | |09712 | +660012 |RT Psc *|011347.9+270759 |SRB | 8.2 | 10.4 | |p | | | 70. | |M0 |01194 08953| +660013 |RU Psc *|011426.0+242456 |RRC | 9.93 | 10.40 | |V |40143.4027 | | 0.390385 |48 |A7-F3 |09713 04004| +660014 |RV Psc *|011941.1+311205 |EA/DW | 11.3 | 12.0 | 12.0 |V |24381.480 | | 0.55399145 |18 *|F8 |09715 00279| +660015 |RW Psc |012413.7+215129 |SRB | 11.2 | 12.4 | |p |27139. | | 154. |48 |M0e-M3 |00460 01198| +660016 |RX Psc |012539.2+212346 |M | 8.8 | 14.6 : | |V |43035. | | 280.54 |43 |M1e |00001 01198| +660017 |RY Psc *|001141.1-014455 |RRAB | 11.82 | 12.72 | |V |42681.147 | | 0.5297106 |15 |F0-F6 |09009 06286| +660018 |RZ Psc *|010942.1+275702 |ISB: | 11.29 | 13.82 | |V | | | | |K0IV |09658 09481| +660019 |SS Psc *|012052.4+214343 |RRC | 10.73 | 11.21 | |V |19130.305 | | 0.28779276 |44 |A7-F2 |04957 03252| +660020 |ST Psc |012749.6+164209 |SRB | 10.9 | 12.7 | |p | | | 540. | |M5 |09662 00002| +660021 |SU Psc *|012924.4+193741 |EB/D: | 10.95 | 11.9 | 11.3 |V |26004.344 | | 2.681409 | |B3III |00134 06286| +660022 |SV Psc |014635.3+190505 |SRB | 9.9 | 11.3 | |p | | | 102. | |M5 |01194 08953| +660023 |SW Psc *|004119.4+052047 |RRAB | 13.3 | 14.9 | |p |38652.441 | | 0.521265 |18 | |06186 06186| +660024 |SX Psc *|005737.9+121826 |EA/SD: | 11.2 | 12.1 | |V |45992.289 | | 0.8258808 |25 |A7V |00001 01217| +660025 |SY Psc |010232.9+052343 |RRAB | 12.4 | 13.8 | |p |20398.400 | | 0.67354111 |40 : | |04416 03133| +660026 |SZ Psc *|231323.8+024032 |EA/DS/RS | 7.18 | 7.72 | 7.38 |V |35741.8461 | | 3.9657900 |11 *|K1IV-V+F8V |09732 08953| +660027 |TT Psc |020042.6+053154 |SRB | 10.9 | 13.0 | |p |28939. | | 144.8 |44 |M4 |01219 08953| +660028 |TU Psc |001139.6+120553 |SR | 11.8 |< 13.0 | |p |36193. | | 179. | |M |00790 06286| +660029 |TV Psc |002802.9+175335 |SR | 4.65 | 5.42 | |V |31387. | | 49.1 | |M3III-M4IIIb |00870 08953| +660030 |TW Psc |003946.0+141201 |LB | 10.6 | 12.2 | |p | | | | |M8 |00865 BD | +660031 |TX Psc |234623.5+032913 |LB | 4.79 | 5.20 | |V | | | | |C7,2(N0)(Tc) | 05288| +660032 |TY Psc *|012539.4+322309 |UGSU | 12.2 | 16.3 | |p | | |( 41.5 ) | |pec(UG) |09733 02544| +660033 |TZ Psc |012253.0+252307 |M | 11.2 |< 16. | |p |37298. | | 376.0 | | |00001 00002| +660034 |UU Psc *|001458.8+084916 |ELL/DW: | 6.01 | 6.05 | 6.04 |V |39765.175 | | 0.841678 | |F1IV-V+F1IV-V |06203 BD | +660035 |UV Psc *|011655.1+064842 |EA/D:/RS | 8.91 | 10.05 | 9.54 |V |43406.5225 | | 0.8610482 |12 *|G2 |09677 08953| +660036 |UW Psc *|012325.3+224818 |EA/DM | 10.8 | 11.3 | 11.0 : |p |26027.261 | | 2.490830 |15 |A0 |02594 02609| +660037 |UX Psc |011145.7+220408 |GAL | 16. | | |B | | | | | |09683 04008| +660038 |UY Psc |011411.0+071846 |SRD | 8.75 | 9.15 | |V | | | 80. : | |K |06450 BD | +660039 |UZ Psc *|014542.5+083333 |ACV | 6.43 | 6.65 | |V |39757.91 | | 4.1327 |50 |A2p(Cr-Eu-Sr-Si) |05751 04348| +660040 |VV Psc |010144.9+304814 |RRAB | 14.2 | 15.2 | |* |53642.80 | | 0.50389 |20 | |00001 03905| +660041 |VW Psc |011427.7+324140 |M | 14.8 | 17.6 | |p |44602. | | 296.5 | | |09685 09685| +660042 |VX Psc |012952.9+182120 |DSCT | 5.90 | 6.02 | |V | | | 0.131 | |A3V |06204 BD | +660043 |VY Psc |014635.3+172446 |DSCTC | 6.54 | 6.59 | |V | | | 0.2 | |A7III |07157 BD | +660044 |VZ Psc *|232748.4+045124 |EW/KW | 10.20 | 10.45 | 10.43 |V |43832.206 | | 0.2611865 | | |09690 09690| +660045 |WW Psc *|005949.7+062900 |LB | 5.97 | 6.11 | |V | | | | |M2III |06994 BD | +660046 |WX Psc *|010626.0+123553 |M | 0.9 | 4.3 | |K |40460. | | 660. |40 |M8 |07343 03586| +660047 |WY Psc |013411.6+055341 |RRAB | 16.6 | 17.5 | |* |53642.80 | | 0.50389 |20 | |00001 USNO | +660048 |WZ Psc |020612.3+081453 |SR | 6.20 | 6.38 | |V | | | 20. : | |M4 |06645 BD | +660049 |XX Psc |004713.6+193443 |DSCTC: | 6.13 |( 0.04 )| |V | | | 0.1040 | |F0V |06883 BD | +660050 |XY Psc |011011.2+033235 |UG: | 13.0 |< 18.5 | |p |41597. | | | | |06884 08667| +660051 |XZ Psc |235446.6+000634 |LB | 5.61 | 5.97 | |V | | | | |M5IIb |06645 BD | +660052 |YY Psc |000157.6-060051 |LB: | 4.31 | 4.41 | |V | | | | |M3III |03712 BD | +660053 |YZ Psc |231544.4+072303 |ISB: | 15.0 | 15.7 | |p | | | | |G2: |07474 07474| +660054 |ZZ Psc *|232847.5+051454 |ZZA | 12.98 |( 0.23 )| |V | | | |45 |DA |07476 07477| +660055 |AA Psc |015435.3+044243 |LB | 10.9 | 11.2 | |V | | | | |M6ep-M7 |06977 | +660056 |AB Psc |230010.8-002252 |LB | 9.7 | 10.4 | |V | | | | |M6-M7 |02592 02592| +660057 |AC Psc |232135.8+063558 |L | 14.6 | 16.0 | |p | | | | | |07474 07474| +660058 |AD Psc |234404.7+002255 |LB: | 11.8 | 12.8 | |p | | | | |M6-M7 |06845 06286| +660059 |AE Psc |013144.5+224429 |E | 7.09 |( 0.16 )| |V | | | 1.4175 | |G5 |07964 BD | +660060 |AF Psc |233144.9-024439 |UV | 8.5 | 16.2 | |p | | | | |M4Ve |08248 08248| +660061 |AG Psc *|003647.3+151354 |BCEP | 5.81 | 5.94 | |V | | | 0.08 | |B2.5IV |04200 BD | +660062 |AH Psc *|012132.6+094059 |N: | 9.5 |< 14. | |V | | | | | |09737 09737| +660063 |AI Psc |012917.5+324319 |RR: | 15.6 | 17.6 | |p | | | | | |08475 08475| +660064 |AK Psc |012927.0+291225 |RR: | 16.3 | 17.3 | |p | | | | | |08475 08475| +660065 |AL Psc |013025.7+295843 |RR | 15.3 | 16.8 | |p | | | | | |08475 08475| +660066 |AM Psc |013051.8+313851 |L | 14.2 | 16.3 | |p | | | | | |09685 08475| +660067 |AN Psc |013047.0+150118 |LB | 8.08 | 8.28 | |V | | | | |MB |08225 BD | +660068 |AO Psc *|225517.9-031040 |XPR | 13.20 | 13.59 | |V |44815.0674 | | 0.1496263 |29 |pec(e+cont) |09739 08782| +660069 |AP Psc |000812.1-022652 |EB/GS | 6.1 | 6.3 | |V | | | | | |67187 BD | +660070 |AQ Psc |012103.6+073622 |EW/KW | 8.60 | 8.96 | |V | | | | | |67188 BD | +660071 |AR Psc |012256.8+072509 |XI+RS | 8.2 | 9.1 | |p | | | | | |67194 67193| +660072 |AS Psc |012808.4+311457 |UG: | 16.5 |< 21.5 | |B | | | | | |67191 67190| +660073 |AT Psc |005828.5+314045 |EA | 15.6 | 16.7 | |p | | | | | |68002 68002| +660074 |AU Psc |005954.3+324451 |RRAB | 15.6 | 17.1 | |p | | | | | |68002 68002| +660075 |AV Psc |010722.0+321407 |RRAB | 16.1 | 17.2 | |p | | | | | |68002 68002| +660076 |AW Psc |011115.9+303807 |M | 14.7 |< 17. | |V | | | | | |68015 68206| +660077 |AX Psc |011213.5+324711 |LB: | 15.1 | 16.0 | |p | | | | | |68002 68002| +660078 |AY Psc |013655.5+071629 |NL | 15.2 | 16.6 | |p | | | | | |68280 68280| +660079 |AZ Psc |225852.9-001857 |RS: | 7.32 | 7.50 | |V | | | | | |68209 BD | +660080 |BB Psc |012522.5+201758 |ZZO | 16.1 |( 0.1 : )| |B | | | | | |69231 69046| +660081 |BC Psc |000520.1-054227 |RS | 4.61 |( 0.08 )| |V | | | | | |70157 BD | +660082 |BD Psc |230203.0-021140 |UV |>18. | 21. | |p | | | | | |70092 70092| +660083 |BE Psc |010407.2+263513 |RS | 8.8 |( 0.21 )| |V | | | | | |71001 BD | +660084 |BF Psc |013154.9+160249 |RS | 7.81 |( 0.02 )| |V | | | | | |71001 BD | +660085 |BG Psc |013708.8+204201 |RS | 8.69 |( 0.06 )| |V | | | | | |71007 BD | +660086 |BH Psc |235931.3-025038 |DSCTC | 7.13 |( 0.09 )| |V | | | | | |71223 BD | +660087 |BI Psc |001242.1+130813 |UV | 13.3 | 18.5 | |B | | | | | |73270 73270| +660088 |BK Psc |003942.2+103914 |RS | 10.41 | 10.60 | |V | | | | | |73269 73153| +660089 |BL Psc |004401.3+093258 |NL | 11.30 | 11.39 | |U | | | | | |73271 73153| +660090 |BM Psc |011439.4+280644 |EW | 16.22 | 16.72 | |V | | | | | |73003 USNO | +660091 |BN Psc |012740.9+280747 |EW | 16.45 | 16.75 | |V | | | | | |73003 USNO | +660092 |BO Psc |014906.4+062404 |BY | 12.78 | 12.83 | |V | | | | | |73103 GSC | +660093 |BP Psc |232224.7-021341 |IT | 9.04 | 9.84 | |J | | | | | |73033 GSC | +660094 |BQ Psc |234818.0+005426 |SXPHE | 17.99 | 18.57 | |V | | | | | |73272 73272| +660095 |BR Psc |234912.5+022404 |BY | 8.93 | 9.03 | |V | | | | | |73018 73066| +660096 |BS Psc |235224.4-005600 |BY | 10.66 |( 0.16 )| |V | | | | | |73005 BD | +660097 |BT Psc |235935.0-015100 |IB: | 7.8 |( 0.09 )| |B | | | | | |73273 BD | +660098 |BU Psc |000202.6-024558 |IB: | 6.9 |( 0.06 )| |B | | | | | |73273 BD | +660099 |BV Psc |001639.4+015102 |SRB: | 6.89 | 7.07 | |Hp| | | | | |HIP HIP | +660100 |BW Psc |001751.2+201337 |SRB | 6.88 | 6.99 | |Hp| | | | | |HIP HIP | +660101 |BX Psc |001752.9+075158 |EB: | 7.61 | 7.67 | |Hp| | | | | |HIP HIP | +660102 |BY Psc |001841.0+124142 |SRB | 8.42 | 8.63 | |Hp| | | | | |HIP HIP | +660103 |BZ Psc |002009.5+030201 |SRB: | 7.55 | 7.66 | |Hp| | | | | |HIP HIP | +660104 |CC Psc |002318.6-013334 |SRB: | 9.92 | 10.17 | |Hp| | | | | |HIP HIP | +660105 |CD Psc |002428.0+054243 |SRD: | 9.81 | 9.99 | |Hp| | | | | |HIP HIP | +660106 |CE Psc |002432.9-043852 |SRB | 7.43 | 7.61 | |Hp| | | | | |HIP HIP | +660107 |CF Psc |002616.5+034933 |LPB | 6.84 | 6.87 | |Hp| | | | | |HIP HIP | +660108 |CG Psc |002653.3+100856 |SRD | 8.35 | 8.49 | |Hp| | | | | |HIP HIP | +660109 |CH Psc |002954.2+084823 |SRD | 7.80 | 7.94 | |Hp| | | | | |HIP HIP | +660110 |CI Psc |004455.3+031204 |SRB | 7.63 | 7.78 | |Hp| | | | | |HIP HIP | +660111 |CK Psc |004856.9+125247 |LB: | 8.20 | 8.30 | |Hp| | | | | |HIP HIP | +660112 |CL Psc |005508.7+321734 |LB: | 9.33 | 9.51 | |Hp| | | | | |HIP HIP | +660113 |CM Psc |005514.6+201806 |SR: | 8.72 | 8.83 | |Hp| | | | | |HIP HIP | +660114 |CN Psc |005644.5+262024 |SRB | 7.60 | 7.76 | |Hp| | | | | |HIP HIP | +660115 |CO Psc |005659.2+315347 |LB: | 7.70 | 7.81 | |Hp| | | | | |HIP HIP | +660116 |CP Psc |005845.9+320620 |EB: | 10.69 | 11.05 | |Hp| | | | | |HIP HIP | +660117 |CQ Psc |010326.0+031520 |SRD+EA | 7.97 | 8.11 | |Hp| | | | | |HIP HIP | +660118 |CR Psc |010512.2+191152 |LB: | 7.42 | 7.52 | |Hp| | | | | |HIP HIP | +660119 |CS Psc |010912.2+024625 |SRB | 9.65 | 9.97 | |Hp| | | | | |HIP HIP | +660120 |CT Psc |011043.1+232758 |SRB | 8.03 | 8.31 | |Hp| | | | | |HIP HIP | +660121 |CU Psc |011245.8+103456 |BY: | 11.87 | 12.25 | |Hp| | | | | |HIP HIP | +660122 |CV Psc |011944.7+060943 |SRB | 7.76 | 7.90 | |Hp| | | | | |HIP HIP | +660123 |CW Psc |012256.4+315028 |SRB | 7.38 | 7.60 | |Hp| | | | | |HIP HIP | +660124 |CX Psc |013005.7+300902 |LB: | 8.96 | 9.06 | |Hp| | | | | |HIP HIP | +660125 |CY Psc |013643.5+074954 |SRB | 6.34 | 6.55 | |Hp| | | | | |HIP HIP | +660126 |CZ Psc |013959.8+234442 |LB: | 9.28 | 9.44 | |Hp| | | | | |HIP HIP | +660127 |DD Psc |015132.5+091807 |LB: | 8.16 | 8.26 | |Hp| | | | | |HIP HIP | +660128 |DE Psc |020012.7+065505 |SRD | 7.43 | 7.56 | |Hp| | | | | |HIP HIP | +660129 |DF Psc |020328.3+095313 |BY: | 11.84 | 12.07 | |Hp| | | | | |HIP HIP | +660130 |DG Psc |225130.1+063642 |LB: | 8.74 | 8.91 | |Hp| | | | | |HIP HIP | +660131 |DH Psc |225414.3+002455 |LB: | 8.69 | 8.80 | |Hp| | | | | |HIP HIP | +660132 |DI Psc |225959.4+050935 |LB: | 7.28 | 7.38 | |Hp| | | | | |HIP HIP | +660133 |DK Psc |230116.4+010504 |LB: | 8.38 | 8.51 | |Hp| | | | | |HIP HIP | +660134 |DL Psc |231114.1+050016 |LB | 6.12 | 6.66 | |Hp| | | | | |HIP HIP | +660135 |DM Psc |233254.5+032254 |SRB | 7.96 | 8.10 | |Hp| | | | | |HIP HIP | +660136 |DN Psc |234713.8+070513 |LB: | 10.57 | 10.77 | |Hp| | | | | |HIP HIP | +660137 |DO Psc |234858.6+062653 |BY: | 12.25 | 12.58 | |Hp| | | | | |HIP HIP | +660138 |DP Psc |235849.1+093300 |SRD | 8.25 | 8.45 | |Hp| | | | | |HIP HIP | +660139 |DQ Psc |235946.5-001648 |SRB | 6.82 | 6.94 | |Hp| | | | | |HIP HIP | +660140 |DR Psc |000123.2+064729 |DSCTC | 7.29 | 7.33 | |Hp| | | | | |HIP HIP | +660141 |DS Psc |005851.9+030358 |EW | 11.73 | 12.19 | |V | | | | | |75214 75017| +660142 |DT Psc |011404.9+283147 |SR: | 6.37 | 6.45 | |Hp| | | | | |75215 BD | +660143 |DU Psc |000138.6-034524 |SR | 9.5 | 10.57 | |I | | | | | |76001 GSC | +660144 |DV Psc |001309.2+053543 |E/RS | 10.59 |( 0.51 Rc)| |V | | | | | |76003 76003| +660145 |DW Psc |013026.9+084134 |SXPHE | 13.66 | 14.41 | |V | | | | | |76015 GSC | +660146 |DX Psc |002216.3+033524 |SR: | 11.9 | 12.8 | |V | | | | | |77004 GSC | +660147 |DY Psc |002424.6-015820 |BY | 15.1 |( 0.08 )| |I | | | | | |77005 77006| +660148 |DZ Psc |003627.9+213214 |EW | 10.86 | 11.32 | |V | | | | | |77007 DM | +660149 |EE Psc |005950.1+122504 |EW | 13.9 |( 0.27 )| |R | | | | | |77011 GSC | +660150 |EF Psc |010730.1+292613 |SR: | 10.8 | 11.6 | |V | | | | | |77004 GSC | +660151 |EG Psc |011102.2+235111 |SR: | 11.0 | 12.0 | |V | | | | | |77004 UCAC2| +660152 |EH Psc |012805.1+283135 |LB: | 11.6 | 13.0 | |V | | | | | |77004 UCAC2| +660153 |EI Psc |232954.2+062811 |UGSU | 12.5 | 16.5 | |V | | | | | |77211 GSC22| +660154 |EK Psc |001654.3+070430 |RPHS | 15.3 |( 0.02 )| |B | | | | | |78008 78009| +660155 |EL Psc |004633.0+152832 |SRS | 5.28 |( 0.22 )| |V | | | 12. : | |M4IIIa |78016 DM | +660156 |EM Psc *|011848.5+132108 |EW | 14.3 |( 0.45 )|( 0.35 )|V |52668.3010 | | 0.34396 | | |78010 GSC | +660157 |EN Psc |012128.2+312029 |BY | 8.49 |( 0.02 )| |V | | | 13.87 | |K2V |78018 DM | +660158 |EO Psc |012904.9+214323 |RS | 7.74 |( 0.02 )| |V | | | 10.49 | |K2V |78018 DM | +660159 |EP Psc |230622.4+020906 |RPHS | 16.23 |( 0.04 )| |V | | | 0.00166 | |sdB |78169 78009| +660160 |EQ Psc *|233434.6-011937 |* | 13.06 |( 0.02 R )| |V | | | | |sdB |78116 GSC | +660161 |ER Psc |230920.4+071453 |EA/SD | 12.1 | 13.8 | |V |40088.455 | | 1.620195 |12 *| |07474 07474| +660162 |ES Psc |003802.4+034104 |EB | 11.97 | 12.52 | 12.41 |V |51384.436 | | 4.09242 | | |79006 GSC | +660163 |ET Psc *|005635.9+104025 |EW | 9.04 | 9.37 | 9.33 |V |52627.610 | | 0.439298 | |A2 |79009 DM | +660164 |EU Psc *|014453.5+195125 |EA | 8.44 | 8.54 | 8.51 : |V |48648.639 | | 1.69261 |05 |F0 |79006 DM | +660165 |EV Psc |235408.1+005749 |RRC | 10.40 | 10.85 | |V |53654.641 | | 0.306258 |42 |A0 |79064 79212| +660166 |EW Psc *|000111.5+090441 |EW | 10.26 | 10.39 | 10.37 |V |53958.9374 | | 0.241202 | | |80007 GSC | NL80_1 +660167 |EX Psc *|001322.7+054009 |EW | 13.79 | 14.36 | 14.27 |V |53648.2642 | | 0.289485 | | |80020 80020| NL80_1 +660168 |EY Psc *|001538.8+185405 |EA | 9.21 | 9.5 : | 9.35 : |V |52964.611 | | 3.12945 |07 |G0 |80011 DM | NL80_1 +660169 |EZ Psc *|001614.6+195138 |BY | 10.5 | 10.7 | |* | | | 4.7901 | |M4 |80021 HIP | NL80_1 +660170 |FF Psc |001748.5+095322 |RRAB | 11.94 | 12.56 | |* |51462.67 | | 0.70119 |15 | |80026 GSC | NL80_1 +660171 |FG Psc |002108.9-022125 |LB | 9.4 | 10.0 | |V | | | | |M5 |80001 DM | NL80_1 +660172 |FH Psc |002203.5+130335 |RS | 10.05 | 10.26 | |V | | | 34.62 | |K0 |80034 DM | NL80_1 +660173 |FI Psc |002322.8+134541 |RRAB | 12.7 | 13.9 | |V |53628.713 | | 0.531290 |20 | |80002 GSC | NL80_1 +660174 |FK Psc |002334.7+201429 |RS | 10.70 | 10.87 | |V | | | 7.9165 | |K5 |80021 GSC | NL80_1 +660175 |FL Psc |002511.1+121712 |UGSU | 10.5 | 17.0 : | |V | | | | | |80037 80037| NL80_1 +660176 |FM Psc *|003149.8+045046 |GDOR | 8.01 | 8.11 | |Hp| | | 0.65070 | |F1V |80160 HIP | NL80_1 +660177 |FN Psc |004058.8+095803 |RS | 12.4 | 12.6 | |* | | | 20.06 | | |80043 80043| NL80_1 +660178 |FO Psc |004134.5+211803 |RS | 9.42 | 9.68 | |V | | | 2.941 | |G0 |80034 DM | NL80_1 +660179 |FP Psc |004348.9+184653 |RS | 10.9 | 11.1 | |* | | | 13.74 | | |80043 80043| NL80_1 +660180 |FQ Psc |004540.9+185703 |RRAB | 12.7 | 13.8 | |V |53335.669 | | 0.549890 |15 | |80002 GSC | NL80_1 +660181 |FR Psc *|004757.1+114224 |RRAB | 11.5 | 12.8 | |V |53711.572 | | 0.45568 |20 | |80001 GSC | NL80_1 +660182 |FS Psc |004957.8+325608 |BY | 12.2 | 12.5 | |* | | | 6.8388 | | |80060 80060| NL80_1 +660183 |FT Psc *|005033.2+244900 |BY | 10.9 | 11.1 | |* | | | 1.6968 | |M3.5 |80021 HIP | NL80_1 +660184 |FU Psc *|005101.8+200823 |EA/RS | 11.75 | 12.05 | 11.98 : |V |51556.7035 | | 0.7966 |07 | |80021 GSC | NL80_1 +660185 |FV Psc |005414.2+301551 |RRAB | 14.1 | 14.9 | |* |51480.867 | | 0.7894 |10 : | |80068 80068| NL80_1 +660186 |FW Psc |005508.3+295717 |RS | 11.7 | 11.85 | |* | | | 3.313 | | |80069 80069| NL80_1 +660187 |FX Psc |005515.0+301516 |RS | 12.7 | 13.1 | |* | | | 4.0674 | | |80021 GSC | NL80_1 +660188 |FY Psc *|005533.0+313258 |EW | 12.75 | 13.3 | 13.3 |* |51486.775 | | 0.35621 | | |80052 80052| NL80_1 +660189 |FZ Psc |005601.3+303826 |RS | 12.65 | 12.90 | |* | | | 3.7947 | | |80021 GSC | NL80_1 +660190 |GG Psc *|005643.7+325336 |EB | 13.75 | 14.0 | 13.85 |* |51479.532 | | 0.4563 | | |80052 80052| NL80_1 +660191 |GH Psc |005707.7+102557 |RS | 10.0 | 10.2 | |V | | | 35.11 | |F8 |80001 DM | NL80_1 +660192 |GI Psc |005734.2+074653 |RRAB | 12.1 | 12.8 | |V |52635.5587 | | 0.734160 |20 | |80002 GSC | NL80_1 +660193 |GK Psc *|005741.2+310916 |EW | 13.6 | 13.95 | 13.9 |* |51478.637 | | 0.36755 | | |80052 80052| NL80_1 +660194 |GL Psc |005811.6+273437 |RS: | 10.9 | 11.1 | |V | | | 10.8420 | | |80067 80067| NL80_1 +660195 |GM Psc |010154.5+155422 |RRAB | 14.01 | 14.97 | |* |51482.60 | | 0.56204 | | |80026 GSC | NL80_1 +660196 |GN Psc |010506.4+093508 |RS | 12.2 | 12.5 | |* | | | 10.0108 | | |80060 80060| NL80_1 +660197 |GO Psc *|010705.0+321209 |EW | 13.05 | 13.4 | 13.35 |* |51504.913 | | 0.42074 | | |80032 80032| NL80_1 +660198 |GP Psc |010705.5+190908 |RS | 9.91 | 10.15 | |V | | | 1.3754 | | |80021 GSC | NL80_1 +660199 |GQ Psc |010843.0+245610 |RRAB | 12.4 | 13.1 | |V |52964.63 | | 0.302072 |26 | |80002 GSC | NL80_1 +660200 |GR Psc *|010931.9+223919 |EW | 11.05 | 11.85 | 11.75 |V |52856.8533 | | 0.494320 | | |80002 GSC | NL80_1 +660201 |GS Psc *|011021.3+283300 |RRAB | 13.60 | 14.33 | |* |51491.90 | | 0.38213 | | |80026 2MASS| NL80_1 +660202 |GT Psc *|011045.8+331055 |EB | 12.25 | 12.64 | 12.47 |* |51375.670 | | 0.87347 | | |80024 80024| NL80_1 +660203 |GU Psc |011235.0+170356 |RS | 12.96 | 13.24 | |* | | | 1.0362 | | |80021 GSC | NL80_1 +660204 |GV Psc |011306.7+215250 |UGSU | 15.5 | 19. | |V | | | | | |80075 USNO | NL80_1 +660205 |GW Psc *|011732.4+075330 |EW | 11.35 | 12.05 | 12.0 |V |52961.7038 | | 0.336335 | | |80002 GSC | NL80_1 +660206 |GX Psc *|011915.0+313527 |EW | 13.4 | 13.7 | 13.65 |* |51483.870 | | 0.43438 | | |80052 80052| NL80_1 +660207 |GY Psc *|011915.8+301339 |EW | 12.4 | 12.6 | 12.6 |* |51493.572 | | 0.29028 | | |80052 80052| NL80_1 +660208 |GZ Psc |012139.3+251748 |RS | 9.67 | 9.90 | |V | | | 12.994 | | |80034 DM | NL80_1 +660209 |HH Psc |012139.8+253643 |RS | 9.81 | 9.90 | |* | | | 0.5649 | | F8 |80021 DM | NL80_1 +660210 |HI Psc |012215.4+202130 |RS | 9.45 | 9.65 | |V | | | 10.2318 | | |80021 GSC | NL80_1 +660211 |HK Psc |012458.0+255702 |RS | 10.74 | 10.87 | |* | | | 3.0420 | | |80021 DM | NL80_1 +660212 |HL Psc *|012728.9+290619 |EB/RS | 10.79 | 11.12 | 10.97 |V |52929.8486 | | 0.491495 | | G5 |80057 GSC | NL80_1 +660213 |HM Psc |012757.4+185925 |RS | 9.26 | 9.38 | |V | | | 0.7859 | | F8 |80021 DM | NL80_1 +660214 |HN Psc *|012947.9+330336 |EW | 10.75 | 10.95 | 10.93 |* |51478.777 | | 0.32954 | | |80052 80052| NL80_1 +660215 |HO Psc *|013016.5+133325 |EW | 10.95 | 11.7 | 11.6 |V |52872.8396 | | 0.324747 | | |80002 GSC | NL80_1 +660216 |HP Psc |013255.6+204649 |RRAB | 14.11 | 15.10 | |* |51415.89 | | 0.48833 | | |80026 GSC | NL80_1 +660217 |HQ Psc |013514.3+211623 |RS | 10.88 | 11.02 | |* | | | 1.8710 | | F9V |80021 DM | NL80_1 +660218 |HR Psc |013627.8+250836 |RS | 10.8 | 11.3 | |V | | | 3.9346 | | K2e |80021 DM | NL80_1 +660219 |HS Psc |013723.2+265712 |RS | 10.80 | 10.95 | |V | | | 1.0852 | | K5 |80021 GSC | NL80_1 +660220 |HT Psc |013741.6+070320 |RRAB | 12.8 | 14.0 | |V |53744.5825 | | 0.547818 |17 | |80002 GSC | NL80_1 +660221 |HU Psc |014235.8+101440 |DSCTC | 7.57 |( 0.02 )| |B | | | 0.0435787 | | F1V |80092 HIP | NL80_1 +660222 |HV Psc |014453.6+282458 |RS | 10.68 | 10.81 | |* | | | 1.1990 | | |80021 GSC | NL80_1 +660223 |HW Psc |225416.4+030448 |RRAB | 13.27 | 14.37 | |CV|54090.59 | | 0.6005239 |14 | |80001 GSC | NL80_3 +660224 |HX Psc |225648.1+052209 |RRAB | 12.7 | 14.0 | |V |53905.94 | | 0.5362618 |15 | |80001 GSC | NL80_3 +660225 |HY Psc |230351.7+010651 |UG | 14.2 | 18.5 | |CV| | | | |pec(e) |80449 80027| NL80_3 +660226 |HZ Psc |231526.1+023606 |BY | 13.1 | 13.6 | |* | | | 5.00123 | | |80067 80067| NL80_3 +660227 |II Psc |231556.7+030259 |RRAB | 13.99 | 15.04 | |CV|55481.73 | | 0.5934246 |12 | |80001 GSC | NL80_3 +660228 |IK Psc |232009.4+063222 |EW | 14.65 | 14.81 | 14.77 |* |54430.1837 | | 0.36611 | | |80604 80604| NL80_3 +660229 |IL Psc |232201.4+062442 |RRAB | 15.82 | 16.96 | |CV|53553.95 | | 0.4818025 |14 | |80001 80606| NL80_3 +660230 |IM Psc |232206.5+063515 |UV | 13.1 | 14.2 | |R | | | | | |80607 80607| NL80_3 +660231 |IN Psc *|233637.4-021245 |RRAB | 12.5 | 13.2 | |V |51872.5587 | | 0.645017 |15 | |80002 GSC | NL80_3 +660232 |IO Psc |235051.1-010923 |BY | 11.5 | 11.9 | |V | | | 5.66241 | | |80067 GSC | NL80_3 +660233 |IP Psc |235757.3-010948 |BY | 10.3 | 10.5 | |* | | | 6.1742 | |K0 |80060 80060| NL80_3 +669001 |alf Psc |020202.8+024550 |ACV | 3.82 | 3.83 | |Hp| | | | | |HIP HIP | +669010 |kap Psc |232656.0+011520 |ACV | 4.87 | 4.95 | |V | | | 0.58525 : | |A0p(Cr-Sr-Si-Eu) |09692 BD | +670001 |R PsA *|221800.2-293614 |M | 8.3 | 14.7 | |V |40820. | | 297.6 |38 |M3(II)e-M5IIe |00001 00002| +670002 |S PsA *|220345.8-280304 |M | 8.0 | 14.5 | |V |40696. | | 271.7 |42 |M3e-M5IIe |00001 00002| +670003 |T PsA |222609.7-290456 |CST: | 8.1 | | |p | | | | |F0 |01188 CoD | +670004 |U PsA |220229.5-275307 | | 12.5 |< 14. | |p | | | | |G0: |00016 00002| +670005 |V PsA |225519.7-293645 |SRB | 9.3 | 10.5 | |p | | | 148. | |MB |01188 08953| +670006 |W PsA |220757.7-325000 |EA/DS | 11.4 | 13.2 | |p |29133.940 | | 8.179318 |11 | |00007 CoD | +670007 |X PsA *|220603.0-245351 |EW/KW | 13.0 | 14.3 | 14.2 |p |45252.288 | | 0.3977746 | | |00001 00022| +670008 |Y PsA |220738.7-251539 |CST: | 11.5 | | |p | | | | | |00016 00022| +670009 |Z PsA |221422.9-255330 |S: | 14.9 | 16.0 | |p | | | | | |00888 00022| +670010 |RR PsA |221501.9-263934 |S: | 14.8 | 15.7 | |p | | | | | |00888 00022| +670011 |RS PsA |221539.7-254443 |EW | 14.3 | 15.2 | |p |25417.60 | | 0.59336 | | |00888 00022| +670012 |RT PsA |222003.1-250937 |E | 13.6 | 14.5 | |p | | | | | |00888 00022| +670013 |RU PsA |222024.4-260810 |RR | 13.2 | 14.8 | |p |25412.60 | | 0.5083 | | |00888 00022| +670014 |RV PsA |213841.9-271234 |M | 10.5 |< 13.0 | |p |25540. | | 361. | | |00016 08953| +670015 |RW PsA *|220946.9-270402 |EW/KW | 11.05 | 11.76 | 11.63 |V |34328.4534 | | 0.36045101 | | |05752 CoD | +670016 |RX PsA |221309.9-271610 |M | 10.5 |< 11.5 | |p |27683. | | 366. | |Me |00016 02339| +670017 |RY PsA |214728.9-361148 |M | 8.8 |< 14.0 | |V |37120. | | 224.39 | |Me |05753 02384| +670018 |RZ PsA |224124.3-332030 |EA | 11. | 12.5 | |p | | | | | |00085 03649| +670019 |SS PsA |225330.6-325539 |M | 11. |< 14. | |p | | | | |Me |00085 CoD | +670020 |ST PsA |225418.7-342326 |M | 9.5 |< 13. | |p |36006. | | 179. | |Me |00001 03508| +670021 |SU PsA |225638.1-353606 |M | 11. |< 13. | |p | | | | |Me |00085 02385| +670022 |SV PsA |213841.6-332114 |EA | 10.1 | 10.6 | |p |35396.171 | | | |G5 |02406 08953| +670023 |SW PsA |220609.8-293254 |EA | 10. | 11. | |p |35728.289 | | | | |02406 08953| +670024 |SX PsA |213943.3-305339 |RR | 12.5 | 13.5 | |p | | | | | |06561 06561| +670025 |SY PsA |214234.9-321210 |M | 12.5 | 16. | |p | | | | | |06561 06561| +670026 |SZ PsA |225140.5-275114 |RR | 12.5 | 13.5 | |p | | | | | |06561 06561| +670027 |TT PsA |220316.8-312643 |LB | 7.00 | 7.49 | |V | | | | |M7III |06351 08953| +670028 |TU PsA |225208.9-251807 |LB: | 11. | 11.8 | |p | | | | |M8 |06375 CoD | +670029 |TV PsA |225748.5-261000 |SRB | 8.56 | 8.95 | |V | | | 45. : | |M5:III |05973 CoD | +670030 |TW PsA |225624.1-313356 |BY | 6.44 | 6.51 | |V | | | 10.3 | |K5Ve |08601 CoD | +670031 |TX PsA *|224500.1-331526 |UV | 15.2 | 15.6 | |U | | | | |M4Ve |06873 06873| +670032 |TY PsA |224939.9-270654 |UGSU | 12.0 | 17. | |B | | | | | |67196 67196| +670033 |TZ PsA |230028.2-334442 |RS | 8.40 | 8.49 | |V | | | | | |69011 CoD | +670034 |UU PsA |220436.8-264921 |BE | 5.86 | 5.91 | |b | | | | | |71150 CoD | +670035 |UV PsA |223012.8-302620 |DSCTC | 8.6 |( 0.07 )| |B | | | | | |73067 CoD | +670036 |UW PsA |223333.5-293954 |DSCTC | 8.2 |( 0.08 )| |B | | | | | |73067 CoD | +670037 |UX PsA |213920.0-301816 |LB: | 7.42 | 7.56 | |Hp| | | | | |HIP HIP | +670038 |UY PsA |214055.6-343113 |LB: | 7.72 | 8.08 | |Hp| | | | | |HIP HIP | +670039 |UZ PsA |214204.3-255136 |LB | 7.27 | 7.40 | |Hp| | | | | |HIP HIP | +670040 |VV PsA |215955.5-313133 |BE | 6.99 | 7.11 | |Hp| | | | | |HIP HIP | +670041 |VW PsA |220442.4-354147 |LB: | 7.50 | 7.75 | |Hp| | | | | |HIP HIP | +670042 |VX PsA |220819.4-343322 |LB: | 6.97 | 7.07 | |Hp| | | | | |HIP HIP | +670043 |VY PsA |221519.0-245927 |EB | 8.81 | 9.01 | |Hp| | | | | |HIP HIP | +670044 |VZ PsA |223851.5-330453 |EA | 5.68 | 5.72 | |Hp| | | | | |HIP HIP | +670045 |WW PsA |224457.9-331502 |BY+UV | 11.81 | 12.16 | |Hp| | | | | |HIP HIP | +670046 |WX PsA |225935.8-292744 |DSCTC | 5.57 | 5.59 | |Hp| | | | | |HIP HIP | +670047 |WY PsA |225951.3-350226 |LB: | 8.71 | 8.87 | |Hp| | | | | |HIP HIP | +670048 |WZ PsA |230528.2-304840 |LB | 8.10 | 8.36 | |Hp| | | | | |HIP HIP | +670049 |XX PsA |213427.9-254233 |SR: | 10.7 | 12.3 | |V | | | | | |77004 DM | +670050 |XY PsA |225754.0-265954 |SR: | 10.5 | 12.2 | |V | | | | | |77004 DM | +670051 |XZ PsA *|212740.0-314744 |EW | 7.73 | 8.12 | 8.04 |V |52437.798 | | 0.753572 | |F3IV/V |78011 DM | +670052 |YY PsA |212737.5-334518 |EA | 11.31 | 12.68 | 11.44 |V |52500.634 | | 1.86244 |14 | |79018 DM | +670053 |YZ PsA |214206.2-252829 |RRC | 11.4 | 11.9 | |V |53146.854 | | 0.31685 |38 | |79064 DM | +670054 |ZZ PsA |215035.2-274836 |EW | 9.28 | 9.56 | 9.54 : |V |52844.790 | | 0.373882 | |F6V |79018 DM | +670055 |AA PsA |223007.5-281012 |RRAB | 12.1 | 13.3 | |V |53630.690 | | 0.512793 |13 | |79064 79204| +670056 |AB PsA |224441.5-315808 |RRAB | 12.6 | 13.8 | |V |53864.893 | | 0.472257 |08 | |79064 79204| +670057 |AC PsA |214003.9-353305 |EW | 12.6 | 13.4 | 13.3 |V |52068.751 | | 0.371960 | | |80365 80365| NL80_3 +670058 |AD PsA |220323.6-292852 |RRAB | 12.58 | 13.27 | |V |51874.60 | | 0.756832 |20 | |80001 GSC | NL80_3 +670059 |AE PsA *|221555.8-252238 |RRAB | 11.45 | 12.7 | |V |53630.690 | | 0.5467383 |12 | |80377 GSC | NL80_3 +670060 |AF PsA |224226.5-340429 |BY: | 10.0 | 10.3 | |V | | | 11.56 | |G9IIIe |80034 GSC | NL80_3 +670061 |AG PsA *|230449.1-334514 |RR(B) | 12.79 | 14.04 | |V | | | 0.37102 | | |80132 GSC | NL80_3 +679016 |pi. PsA *|230329.8-344458 |CST: | 5.10 | 5.12 | |V | | | | |F0V+F3V |06205 CoD | +680001 |R Pup *|074052.6-313940 |SRD | 6.50 | 6.71 | |V | | | | |G2Ia-0 |09629 CoD | +680002 |S Pup |074643.9-480644 |CST | 7.2 | | |V | | | | |A2 |00237 CoD | +680003 |T Pup |074808.6-403909 |CST | 6.14 | | |V | | | | |M2III |06994 03576| +680004 |U Pup *|080050.5-125029 |M | 8.5 | 15.0 | |V |38882. | | 318.44 |41 |M5e-M8e |00001 00002| +680005 |V Pup *|075814.4-491442 |EB/SD | 4.35 | 4.92 | 4.82 |V |45367.60633 | | 1.4544859 | |B1Vp+B3: |09630 08953| +680006 |W Pup *|074557.4-421144 |M | 7.15 | 13.6 | |V |44956. | | 119.7 |47 |M1e-M6e |00001 00002| +680007 |X Pup *|073247.0-205435 |DCEP | 7.82 | 9.24 | |V |41108.8 | | 25.9610 |15 |F6-G2 |07934 00521| +680008 |Y Pup |081237.4-350847 |SRB | 9.2 | 9.9 | |p | | | 110. : | |M7 |00693 05625| +680009 |Z Pup *|073238.1-203929 |M | 7.2 | 15.3 | |V |43075. | | 508.6 |38 |M4e-M9e |00001 00002| +680010 |RR Pup |074653.9-412227 |EA/SD: | 10.34 | 11.37 | |V |29115.580 | | 6.42963328 |13 |A: |00007 08953| +680011 |RS Pup *|081304.2-343443 |DCEP | 6.52 | 7.67 | |V |35734.426 | | 41.3876 |24 |F9-G7 |00001 02440| +680012 |RT Pup |080520.0-384636 |SRB | 10.2 | 11.0 | |B | | | 100. : | |C6,2(Nb) |00693 03389| +680013 |RU Pup |080729.8-225445 |SRB | 10.3 | 12.2 | |p | | | 425. | |C5,4(N3) |00693 08953| +680014 |RV Pup |064228.4-422217 |M | 9.3 | 13.0 | |p |30093. | | 187.96 |50 |M1e-M9 |01004 03389| +680015 |RW Pup *|060910.0-501228 |M | 8.8 | 14.5 | |V |42360. | | 340.88 |47 |M3e-M6e |08646 05464| +680016 |RX Pup *|081412.3-414229 |ZAND+M | 9.00 | 14.1 | |B | | | | |pec(cont+M5-6e) |09518 08953| +680017 |RY Pup |073102.0-345903 |CST | 9.17 | | |B | | | | |K5 |01266 09520| +680018 |RZ Pup |074508.4-395056 |CST | 8.8 | | |p | | | | |K2 |01266 CoD | +680019 |SS Pup |074638.3-262036 |M | 12.6 | 15.7 | |p |26031. | | 391. | |M6e |01000 02160| +680020 |ST Pup *|064856.4-371633 |CWA | 9.28 | 10.68 | |V |44023.96 | | 19. : | |F2:e-G2I |04678 05625| +680021 |SU Pup |075612.1-440833 |M | 9.3 |< 14.0 | |p |31385. | | 339.8 | |M(S4,2)e |01004 08613| +680022 |SV Pup *|081716.6-134831 |M | 9.0 |< 13.1 | |p |36284. | | 166.52 | |M5e |00001 08073| +680023 |SW Pup *|081850.9-424511 |EA/SD: | 9.0 | 10.1 | 9.1 |p |19282.068 | | 2.7473405 |13 |A0V |00707 03389| +680024 |SX Pup |075803.1-344728 |RRAB | 13.0 | 14.1 | |p |29631.438 | | 0.4918204 |15 | |03551 03551| +680025 |SY Pup |080549.2-330943 |M | 13.0 |< 17.5 | |p |24180. :| | 270. : | | |01000 USNO | +680026 |SZ Pup |080929.9-364213 |S: | 13.6 | 14.3 | |p | | | | | |01269 GSC22| +680027 |TT Pup *|081614.7-342856 |EA | 13.5 | 14.8 | 13.6 |p |29640.28 | | 2.595785 |15 *| |03551 03551| +680028 |TU Pup |081705.1-343525 |M | 9.3 | 14.2 | |V |40763. | | 238.95 |49 |M8 |00001 06214| +680029 |TV Pup |082319.3-352457 | | 13.2 | 15.0 | |p | | | | | |01269 GSC22| +680030 |TW Pup |062201.3-475357 |E | 11.8 | 12.8 | |p | | | | | |00210 CoD | +680031 |TX Pup |070216.8-413640 |CST | 9.2 | | |p | | | | |F7V |01266 CoD | +680032 |TY Pup *|073246.2-204731 |EW/KE | 8.40 | 8.89 | 8.87 |V |34412.106 | | 0.819235 | |A9n |06215 08953| +680033 |TZ Pup |072959.1-131407 |M | 12.0 | 15.8 | |p |25351. | | 317. |53 |M7 |00412 00531| +680034 |UU Pup |073525.0-131828 |M | 11.8 | 15.5 | |p |25287. | | 282. |53 |M3 |00412 00531| +680035 |UV Pup |073725.9-123845 |SRA | 11.4 | 13.9 | |p |26656. | | 193. |47 |M5 |00412 00531| +680036 |UW Pup |074149.9-163635 |M | 13.0 |< 16.0 | |p |25567. | | 422. | | |00412 00531| +680037 |UX Pup |074353.4-135411 |SR | 12.6 | 13.7 | |p |26630. | | 69.7 | | |03148 00531| +680038 |UY Pup |074631.3-125709 |UG | 13.0 | 16.8 | |p |37350. | | | | |03165 08807| +680039 |UZ Pup *|074146.1-132338 |EB/KE | 9.35 | 10.34 | 10.0 |V |44613.69829 | | 0.79485120 | |A6+A6 |09543 08667| +680040 |VV Pup *|081506.8-190318 |XPM+ELL | 13.9 | 18.0 | |V |27889.6474 | | 0.0697468256 | |pec(cont+e)+M4-5V|03688 09643| +680041 |VW Pup *|073149.1-200859 |DCEP | 11.00 | 11.75 | |V |43521.291 | | 4.28537 |22 |F5-G0 |09003 00391| +680042 |VX Pup *|073236.6-215550 |CEP(B) | 7.73 | 8.59 | |V |36237.953 | | 3.01087 |50 |F5-F8 |09649 08953| +680043 |VY Pup *|073350.1-113951 |EB/DW | 10.8 | 11.4 |( 0.04 )|V |26990.434 | | 0.816759 | |F2 |00391 00391| +680044 |VZ Pup *|073835.2-282959 |DCEP | 8.92 | 10.35 | |V |41121.19 | | 23.1710 |17 |F5-G2 |09545 09650| +680045 |WW Pup *|074154.9-210759 |DCEP | 10.03 | 11.03 | |V |41047.29 | | 5.516724 |31 |F5-F9 |01268 00391| +680046 |WX Pup *|074159.0-255234 |DCEP | 8.76 | 9.44 | |V |35042.184 | | 8.937050 |31 |F6-G1 |09667 00391| +680047 |WY Pup |075805.1-240230 |DCEP | 10.18 | 10.96 | |V |40925.40 | | 5.25080 |25 |F5-F9 |02309 00391| +680048 |WZ Pup *|080022.9-234211 |DCEP | 9.85 | 10.76 | |V |34889.465 | | 5.027286 |27 |F5-G2 |09667 00391| +680049 |XX Pup *|080828.2-163200 |RRAB | 10.49 | 11.77 | |V |41773.255 | | 0.517181 |13 |A0-A7 |09334 00391| +680050 |XY Pup *|080934.7-115909 |EA/DS | 9.3 | 11.4 | 9.4 |V |26417.805 | | 13.77830 |10 |A3ea |00185 00391| +680051 |XZ Pup *|081331.1-235711 |EA/SD | 7.75 | 10.26 | 7.90 |V |42412.19458 | | 2.1923631 |21 *|A0 |08593 03579| +680052 |YY Pup *|073552.3-192331 |EA/DS | 9.7 | 11.1 |( 0.05 )|p |24832.540 | | 27.95491 |07 |A0 |00007 00391| +680053 |YZ Pup |074417.1-215157 |SR | 10.5 | 12.5 | |p | | | | |M5-7e |00190 00190| +680054 |ZZ Pup |074826.0-191734 |EA/SD | 9.43 | 11.05 | |V |26783.107 | | 6.33811 |10 *|A2 |00391 00391| +680055 |AA Pup |080136.1-244304 |EA/D: | 10.4 | 11.6 | |p |25652.59 | | 7.0671 |10 *|F8 |00280 00391| +680056 |AB Pup |082113.0-122919 |M | 11. |< 13. | |p |33356. | | 272.6 | |Me |01004 00464| +680057 |AC Pup |082244.2-155459 |LB | 8.9 | 10.1 | |V | | | | |C5,4(N) |00391 00391| +680058 |AD Pup |074803.9-253440 |DCEP | 9.27 | 10.36 | |V |41126.18 | | 13.5940 |25 |F5-G2 |02309 00391| +680059 |AE Pup *|080551.4-423038 |EA | 13.2 | 14.3 | |p |26359.76 | | 5.96544 |10 | |00061 00703| +680060 |AF Pup *|081338.8-430746 |EW/KW | 13.3 | 13.5 | 13.5 |p |26161.875 | | 0.3836778 | | |00703 00703| +680061 |AG Pup *|074313.0-214314 |EB | 10.7 | 11.8 | 10.9 |p |26097.315 | | 4.779264 | | |00060 CPD | +680062 |AH Pup *|075656.2-251939 |EA | 10.3 | 11.3 |( 0.05 )|p |25913.930 | | 2.0247 |17 *| |00060 00060| +680063 |AI Pup |080054.9-223058 |EA | 13.5 | 14.0 | |p |25950.406 | | 0.773126 |21 :*| |00194 00194| +680064 |AK Pup |080511.5-212021 |RRAB | 12.4 | 14.0 | |p |25998.376 | | 0.512053 |14 | |00194 00194| +680065 |AL Pup |080630.9-190249 |RRAB | 13.3 | 14.7 | |p |25997.418 | | 0.57630 |10 | |00060 00060| +680066 |AM Pup |080957.8-422010 |RRAB | 13.4 | 14.6 | |p |27802.478 | | 0.558866 |15 | |00061 00061| +680067 |AN Pup *|073005.8-212624 |EA | 10.49 | 11.27 | 10.7 |V |41753.375 | | 2.668238 |16 *| |00001 00391| +680068 |AO Pup |075536.3-393623 |M | 10.2 | 15.2 | |p |25907. | | 390.5 | | |00421 08953| +680069 |AP Pup |075745.7-400724 |DCEP | 7.02 | 7.78 | |V |40689.21 | | 5.0843102 |51 |F5-F7 |07934 08953| +680070 |AQ Pup *|075822.1-290748 |DCEP | 8.08 | 9.39 | |V |44676.57 | | 30.104 |17 |F5Ib-G2Ib |00001 00391| +680071 |AR Pup *|080301.6-363548 |RVB | 8.7 | 10.9 | |p | | | 74.58 | |F0I-II-F8I-II |09673 00368| +680072 |AS Pup *|080939.8-381029 |M | 9.0 | 12.8 | |p |35470. | | 324.65 |50 |M7e-M9 |00001 03389| +680073 |AT Pup *|081222.4-365638 |DCEP | 7.53 | 8.41 | |V |40741.22 | | 6.6650 |29 |F8-G0 |07934 03203| +680074 |AU Pup *|081739.8-414228 |EB/KE | 8.50 | 9.46 | 9.28 |V |39112.9551 | | 1.12640327 | |A0V |05756 03389| +680075 |AV Pup *|082432.3-162411 |EW/DW | 10.5 | 11.1 | 11.0 |V |31178.131 | | 0.5563389 | |F8 |00279 00391| +680076 |AW Pup *|082444.3-284943 |EA/SD | 10.2 | 10.9 | |p |27601.919 | | 0.68108 |35 *| |01272 08953| +680077 |AX Pup | | | | | | | | | | | | |=VZ CMa +680078 |AY Pup *|073837.3-242918 |EW/KW | 11.6 | 12.5 | 12.5 |p |40650.345 | | 0.46896148 | | |00001 00391| +680079 |AZ Pup *|081819.7-345550 |EB | 9.7 | 10.2 | 10.1 |p |28110.870 | | 0.86737053 | | |00007 05625| +680080 |BB Pup *|082422.6-193231 |RRAB | 11.57 | 12.68 | |V |38810.776 | | 0.4805440 |15 |F0-F6 |03908 00391| +680081 |BC Pup |073002.6-234027 |DCEP | 14.2 | 15.2 | |p |27843.789 | | 3.54434 |19 | |00435 00435| +680082 |BD Pup |073038.7-244115 |DCEP | 13.8 | 14.8 | |p |27895.725 | | 3.91817 |23 | |00435 00435| +680083 |BE Pup |073335.5-255038 |CWB: | 14.5 | 15.1 | |p |27810.457 | | 2.8714 |28 | |00435 00435| +680084 |BF Pup |073525.2-150633 |LB | 13.8 | 16.2 | |p | | | | |C |00412 02311| +680085 |BG Pup |080743.1-204101 |LB | 9.5 | 10.2 | |V | | | | |M2 |00391 00391| +680086 |BH Pup *|080815.2-420148 |EA | 8.4 | 9.1 | |p |21692.523 | | 1.915854 |15 |B3/5III |00707 03389| +680087 |BI Pup *|081043.5-415745 |EA/SD | 12.6 |< 14.4 | |p |26179.643 | | 4.82227 |10 | |00706 00706| +680088 |BK Pup *|081058.3-395759 |EA/KE: | 10.4 | 10.7 | |p |26174.678 | | 1.50127 |08 *| |00706 CoD | +680089 |BL Pup *|074636.3-182844 |EA/SD | 14.1 | 15.5 | 14.2 |p |25616.3349 | | 1.803369 |19 *| |01275 01275| +680090 |BM Pup |075003.1-281519 |DCEP | 10.43 | 11.27 | |V |30792.566 | | 7.19853 |25 | |03474 03474| +680091 |BN Pup *|080621.5-300549 |DCEP | 9.20 | 10.40 | |V |28078.04 | | 13.6731 |29 |G4 |03551 03581| +680092 |BO Pup |072941.8-264608 |M | 13.5 |< 16.0 | |p |28159. | | 615. | | |01276 01276| +680093 |BP Pup *|073013.3-261707 |EB/D | 12.1 | 12.6 | 12.3 |p |28063.947 | | 5.43724 | | |01276 01276| +680094 |BQ Pup *|073115.7-255427 |RRAB | 12.5 | 13.4 | |p |28065.121 | | 0.682323 |26 | |01276 01276| +680095 |BR Pup *|074056.9-253928 |EB/KE | 12.1 | 12.9 | 12.9 |p |26263.5471 | | 1.3395824 | | |00280 00280| +680096 |BS Pup |074214.0-211511 |EA/SD | 11.3 | 12.3 | |p |26378.5404 | | 1.0758889 |12 | |00280 00280| +680097 |BT Pup *|075533.9-242507 |EW | 13.9 | 14.6 | 14.5 |p |26161.4919 | | 0.796057 | | |00280 08613| +680098 |BU Pup *|074635.2-241305 |EA/SD | 13.7 | 15.1 | 13.9 |p |26561.069 | | 1.713393 |20 *| |00280 00280| +680099 |BV Pup |074905.3-233400 |UGSS | 13.12 | 15.7 | |V | | |( 18.1 ) | | |09201 08852| +680100 |BW Pup *|075211.1-211816 |EA | 13.6 | 14.2 |( 0.15 )|p |26274.5349 | | 0.8630358 |20 *| |00280 00280| +680101 |BX Pup *|075415.6-241936 |UGZ | 13.76 | 16.0 | |V | | |( 18. ) | | |09201 08852| +680102 |BY Pup |075735.0-240700 |EA/D | 14.0 | 14.6 | |p |26471.67 | | 2.69911 |30 | |00280 00280| +680103 |BZ Pup |075855.0-191405 |M | 12.8 |< 16.5 | |p |29380. | | 264. | |M5 |02160 02160| +680104 |CC Pup |080135.5-221010 |RRAB | 13.3 | 14.6 | |p |26401.052 | | 0.5119070 |19 | |00280 00280| +680105 |CD Pup |081342.8-241747 |M | 12.6 |< 16.5 | |p |26075. | | 1730. :/N| | |02160 02160| +680106 |CE Pup *|081408.0-423405 |DCEP | 12.5 | 13.6 | |p |26222.20 | | 49.53 |30 | |00280 00280| +680107 |CF Pup |060516.0-490728 |EA/SD | 9.4 | 12.6 | |p |28821.58 | | 7.64556 |08 : | |00016 05464| +680108 |CG Pup |060703.0-464448 |EA/SD | 10.2 | 13.0 | |p |28493.53 | | 1.04957 |15 : | |00016 CoD | +680109 |CH Pup *|064514.1-363213 |M | 7.9 |< 14.0 | |V |40815. | | 505.5 | |Me |00001 02311| +680110 |CI Pup |071021.0-332439 |EA/SD | 11.3 | 12.6 | |p |28514.550 | | 1.65792 | | |00016 02338| +680111 |CK Pup |072718.9-254708 |CEP | 13.2 | 14.1 | |p |28060.89 | | 7.41828 |30 | |01278 01278| +680112 |CL Pup |073003.0-192954 |IS: | 13.7 |< 16.2 | |p | | | | | |00412 01278| +680113 |CM Pup |073042.4-202707 |DCEP | 14.4 | 15.5 | |p |28030.18 | | 3.17337 |20 | |01279 01279| +680114 |CN Pup |080327.7-482739 |M | 13.5 |< 15.6 | |p |26516. | | 201. | |M7:e |00710 00710| +680115 |CO Pup *|082612.0-301708 |CWA | 11.25 | 12.46 | |B |40979.52 | | 16.0192 |45 | |07934 HIP | +680116 |CP Pup *|081146.1-352105 |NA | 0.5 |< 17. | |p |30675. |1942 | | |pec(NOVA) |02442 02442| +680117 |CQ Pup |074557.1-191011 |LB | 10.6 | 11.5 | |p | | | | |MB |00412 00391| +680118 |CR Pup |073008.7-194458 |RRAB | 12.8 | 13.5 | |p |28063.988 | | 0.699702 |35 : | |01342 01342| +680119 |CS Pup |073435.0-193457 |EA | 12.3 | 13.5 | |p |28062.415 | | 2.659365 |15 *| |01342 01342| +680120 |CT Pup |073434.2-252123 |M | 13.5 |< 16.5 | |p |28183. | | 238. | | |01720 USNO | +680121 |CU Pup |073506.1-242611 |EA | 11.4 | 12.3 | |p |28063.078 | | 3.33742 |11 *| |01342 01342| +680122 |CV Pup |073647.2-225926 |M | 13.2 |< 16. | |p |28962. | | 273.5 | | |01003 01343| +680123 |CW Pup |074130.3-194110 |EA | 12.4 | 13.7 | |p |26337.422 | | 6.049785 |09 | |01345 01345| +680124 |CX Pup *|074153.5-225337 |EA/SD | 12.2 | 15.2 | |p |26363.404 | | 2.6613030 |15 | |01345 01345| +680125 |CY Pup *|074453.5-200555 |EA | 12.9 | 13.4 | 13.0 |p |26010.532 | | 5.92359 |10 | |01345 01345| +680126 |CZ Pup *|074452.0-250512 |EA | 12.8 | 13.8 | 13.1 |p |25973.065 | | 6.16657 |16 | |01345 01345| +680127 |DD Pup *|074518.1-203206 |EA/DM | 14.0 | 14.6 | 14.6 |p |26099.245 | | 13.7428 |02 *| |01346 01346| +680128 |DE Pup *|074841.2-202415 |EB | 12.6 | 13.2 | 12.9 |p |26241.568 | | 0.9738223 | | |01345 01345| +680129 |DF Pup *|075350.2-194040 |EA/SD | 12.7 | 14.0 | 12.8 |p |45701.482 | | 0.7714552 |18 *| |00001 01348| +680130 |DG Pup |075419.5-203146 |SRA | 13.2 | 14.5 | |p |27804. | | 145. | | |01345 01345| +680131 |DH Pup |075517.9-250945 |EA/SD: | 13.0 | 13.9 | |p |26094.208 | | 1.1167612 |18 | |01345 01345| +680132 |DI Pup |075640.6-192912 |EA/SD: | 11.8 | 13.0 | |p |25758.194 | | 1.706161 |18 | |01345 01345| +680133 |DK Pup *|075657.8-253105 |EB | 12.5 | 13.0 | 13.0 |p |26363.381 | | 0.9882824 | | |01345 01345| +680134 |DL Pup |080037.9-183633 |SRA | 13.0 | 15.0 | |p |28975. | | 99. | | |01345 01345| +680135 |DM Pup *|080704.1-253152 |EA/SD | 13.5 | 15.2 | 13.7 |p |25969.466 | | 3.56697 |15 | |01344 01344| +680136 |DN Pup *|080820.9-193124 |EA | 13.4 |< 14.4 | 13.5 |p |26309.315 | | 7.58742 |10 | |00001 01345| +680137 |DO Pup *|080905.8-214927 |EA/DS | 13.0 | 15.0 | 13.3 |p |26039.796 | | 12.44623 |15 | |01345 01345| +680138 |DP Pup |081043.1-151947 |M | 11.5 |< 16. | |p | | | | |M8e |00409 00409| +680139 |DQ Pup |072911.2-261032 |SR | 12.4 | 13.2 | |p |27950. | | 550. : | | |00406 00406| +680140 |DR Pup *|072956.1-213601 |EA/KE | 13.2 | 13.6 | 13.3 : |p |28085.024 | | 1.232486 |13 : | |01349 01349| +680141 |DS Pup *|073247.8-245846 |EW/KW | 12.7 | 13.6 | 13.4 |p |28084.628 | | 0.3886763 | | |01349 01349| +680142 |DT Pup *|073351.3-221217 |EB/D | 14.1 | 14.3 | 14.3 |p |28076.962 | | 3.34342 | | |01350 01350| +680143 |DU Pup |073504.0-235915 |M | 13.5 |< 15.5 | |p |27950. | | 550. : | |M |00406 00406| +680144 |DV Pup |073741.8-262439 |LB | 11.0 | 11.9 | |p | | | | |M7 |00406 00406| +680145 |DW Pup |074523.1-204505 |SR | 13.3 | 15.7 : | |p |26285. | | 350. : |45 : | |01347 01347| +680146 |DX Pup |080211.1-130106 |SR | 11.5 | 13.1 | |p |31900. | | | |M6-M7 |01351 01351| +680147 |DY Pup |081348.5-263357 |N | 7. |< 16. | |p |16073. |1902 | | | |01352 08953| +680148 |DZ Pup |061244.4-454002 |M | 11. |< 13. | |p | | | | | |00085 CoD | +680149 |EE Pup |073028.2-144435 |M | 12.5 |< 17. | |p |25246. | | 530. | |M1 |00412 02311| +680150 |EF Pup |073318.8-122125 |M | 12.4 | 16.3 | |p |28473. | | 374.8 | | |00412 02342| +680151 |EG Pup |073607.9-263017 |M | 12.0 |< 16. | |p |29706. | | 338.1 | |M8:e |01003 01343| +680152 |EH Pup |073623.1-260927 |EA/GS: | 14.1 | 14.5 | |p |27807.32 | | 45.8897 : | | |01343 01343| +680153 |EI Pup |073834.7-165755 |LB | 11.1 | 13.0 | |p | | | | |M5-M6.5 |00412 00531| +680154 |EK Pup *|074149.7-250230 |DCEPS | 10.46 | 10.88 | |V |35573.46 | | 2.62594 |45 | |08637 01343| +680155 |EL Pup *|074222.8-143354 |EA | 14.8 | 15.5 | |p |37367.449 | | | | |03148 02361| +680156 |EM Pup |074212.3-251806 |EA/DM: | 14.4 | 14.8 | |p |26000.353 | | 1.60455 |14 | |01343 01343| +680157 |EN Pup *|074244.1-263632 |EW | 11.2 | 11.6 | 11.4 |p |26305.551 | | 0.6721498 | | |01343 01343| +680158 |EO Pup |074618.8-242834 |EA/GS: | 13.4 | 14.1 | |p |27806.86 | | 98.350 |05 | |01343 01343| +680159 |EP Pup |074820.8-230620 |EA/GS: | 13.4 | 13.9 | |p |25944.03 | | 84.511 |06 *| |01343 01343| +680160 |EQ Pup *|074824.1-260527 |EB/KE | 10.2 | 11.0 | 10.9 |p |25653.366 | | 1.14313 | | |00966 09467| +680161 |ER Pup |075019.9-181821 |RRAB | 12.8 | 14.5 | |p |28656.217 | | 0.4024177 |15 | |01343 01343| +680162 |ES Pup *|075403.1-192018 |SRA | 12.0 | 13.7 | |p |29620. | | 137.66 | | |01343 01343| +680163 |ET Pup |075437.2-280458 |M | 10.6 |< 15.8 | |p |31152. | | 330.4 | |M8 |00001 03551| +680164 |EU Pup *|075727.0-191527 |EB/GS: | 14.4 | 15.2 | 14.8 |p |26269.993 | | 37.7017 | | |01343 01343| +680165 |EV Pup |075919.2-175029 |SR | 14.6 | 16.4 | |p | | | 101. : | | |01343 01343| +680166 |EW Pup |075916.0-235854 |M | 14.2 |< 16.5 | |p | | | | |Se |00085 02361| +680167 |EX Pup |080038.3-205935 |M | 13.8 |< 15.7 | |p |28530. | | 289. | |S2,4e |03148 02319| +680168 |EY Pup |080230.9-262917 |EA/DS: | 14.2 |< 16. | |p |27365.301 | | 8.76087 |07 | |01343 01343| +680169 |EZ Pup |080305.5-114033 |M | 13. |< 15.5 | |p |27485. | | 365. :/N| | |00491 00491| +680170 |FF Pup |080335.4-240435 |M | 13.0 |< 16. | |p |29240. | | 436. | |Ce |03148 GSC | +680171 |FG Pup |080431.7-240253 |EA/SD | 13.0 |< 16. | |p |26333.235 | | 3.171929 |15 | |01343 01343| +680172 |FH Pup |080759.0-243611 |EA | 15.5 |< 16. | |p |28656.23 | | 28.0 /N| | |01343 01343| +680173 |FI Pup |080814.7-201715 |EA | 14. |< 16.5 | |p | | | | | |00085 02361| +680174 |FK Pup *|080911.0-361707 |SR | 12.0 | 15.3 | |p | | | 502. | |C6-,3e(N) |06612 06612| +680175 |FL Pup |081021.1-230047 |M | 12.2 |< 16. | |p |28260. | | 236. | | |03148 02319| +680176 |FM Pup *|081230.5-201056 |EA/SD | 14.1 | 15.0 | 14.2 |p |26337.426 | | 1.3618921 |20 *| |01343 01343| +680177 |FN Pup |081419.3-203744 |RRAB | 14.4 | 15.3 | |p |26009.496 | | 0.517485 |12 : | |01343 01343| +680178 |FO Pup |081530.3-245906 |M | 13.3 |< 16. | |p |27370. | | 318. | |Me |01003 01343| +680179 |FP Pup |081558.6-231912 |M | 14.3 |< 16. | |p |29039. | | 270.3 | |M4e |00001 01343| +680180 |FQ Pup |081810.6-234841 |EA | 14. | 16.5 | |p | | | | | |00085 02362| +680181 |FR Pup |082119.9-221846 |EA | 13.5 |< 16.5 | |p | | | | | |00085 02361| +680182 |FS Pup |082228.8-150624 |M | 12. |< 15.5 | |p |27865. | | 765. /N| | |00141 00141| +680183 |FT Pup |082542.7-233714 |M | 13.7 |< 16.5 | |p | | | | |S |00085 02362| +680184 |FU Pup |074610.1-160603 |EA: | 12.1 | 12.9 | |p | | | | | |03165 00531| +680185 |FV Pup |073236.4-121415 |LB | 11.3 | 11.9 | |p | | | | |M6 |00412 02311| +680186 |FW Pup |073241.8-124627 |LB | 12.2 | 14.2 | |p | | | | |M |00412 02342| +680187 |FX Pup |073302.0-114755 |SRA | 12.0 | 13.6 | |p |25358. | | 139.5 |36 |M6 |00412 02311| +680188 |FY Pup |073558.8-155502 |LB | 13.2 | 14.8 | |p | | | | |M6.5 |00412 02343| +680189 |FZ Pup |073806.9-173722 |LB | 15.2 | 16.5 | |p | | | | |M6.5 |00412 02311| +680190 |GG Pup *|073821.1-160319 |LB | 11.99 | 13.5 | |B | | | | |S5,6(M2) |00412 02361| +680191 |GH Pup *|073937.6-155620 |SRA | 13.1 | 14.8 | |p |28780. | | 470. | | |00412 02311| +680192 |GI Pup *|074106.8-145821 |EA | 13.6 | 15.2 | |p |30321.611 | | | | |00412 02361| +680193 |GK Pup *|074144.0-151350 |EA | 13.6 | 15.4 | |p |25302.398 | | 3.07950 |13 : | |00412 02311| +680194 |GL Pup |074241.1-121327 |M | 13.5 | 16.0 | |p |31080. | | 319.7 | | |00001 02343| +680195 |GM Pup |074544.2-173302 |LB | 13.3 | 14.3 | |p | | | | |M6 |00412 02343| +680196 |GN Pup *|074635.8-150033 |LB | 13. | 16.2 | |p | | | | |C(N) |00412 02311| +680197 |GO Pup |074737.5-115711 |LB | 12.6 | 15.19 | |B | | | | |C(N) |00412 02311| +680198 |GP Pup *|074832.5-151116 |EA/DS | 13.2 | 14.3 | 13.5 |p |25624.504 | | 13.138606 |17 *| |00412 02343| +680199 |GQ Pup |074829.2-162313 |SR | 13.3 | 14.4 | |p |25331. | | 113.5 | |M6 |00412 02311| +680200 |GR Pup |075011.2-133331 |LB | 12.92 | 15.3 | |B | | | | |C4,5(N) |00412 02361| +680201 |GS Pup |075157.4-164638 |EA/D | 13.4 | 13.9 | |p |26654.610 | | 2.072840 |14 | |00412 02343| +680202 |GT Pup |071428.4-380350 |SRD | 11.0 | 12.6 | |p |28725. | | 91.7 | |K |02431 03587| +680203 |GU Pup *|072841.1-163502 |EB/DM: | 11.4 | 12.2 | 12.2 |p |25326.359 | | 1.652698 | | |03148 02360| +680204 |GV Pup |074208.7-130012 |E: | 12.9 | 13.7 | |p |32946.473 | | | | |00412 02343| +680205 |GW Pup |074623.7-172509 |EB: | 14.3 | 15.3 | |p | | | | | |00412 02343| +680206 |GX Pup *|081603.4-430950 |EA | 13.4 | 14.0 | 13.9 |p |26306.5083 | | 0.6084752 |18 *| |00720 00720| +680207 |GY Pup *|071640.0-395426 |EW/KW | 11.9 | 12.3 | 12.3 |V |34386.642 | | 0.412209 | |Gp |00080 CoD | +680208 |GZ Pup *|071727.1-400743 |EW/KW | 11.7 | 12.2 | 12.1 |V |34398.437 | | 0.320274 | | |00080 CPD | +680209 |HH Pup *|072035.6-464230 |RRAB | 10.44 | 11.78 | |V |38500.2486 | | 0.39074628 |12 |A3II-III-F5 |03588 06286| +680210 |HI Pup *|073338.2-500725 |EW/KW | 10.7 | 11.0 | 11.0 |V |34344.548 | | 0.432651 | | |00080 CoD | +680211 |HK Pup *|074446.8-130556 |RRAB | 11.4 | 12.4 | |p |36608.383 | | 0.7342382 |20 | |09657 02361| +680212 |HL Pup |081110.8-333057 |CEP | 11.1 | 11.8 | |p |30700.58 | | 3.48250 |25 | |03551 03551| +680213 |HM Pup *|071937.7-483913 |EA | 12. | 13.0 | |p |34302.525 | | 2.589697 | | |08040 06561| +680214 |HN Pup |072946.1-152211 |RRAB | 13.0 | 14.2 | |p |25323.334 | | 0.423218 |24 | |03148 02311| +680215 |HO Pup |073354.1-154538 |GCAS: | 12.7 | 14.2 | |p | | | | | |03148 02311| +680216 |HP Pup *|073714.8-165339 |RRAB | 13.2 | 14.6 | |p |26743.574 | | 0.7363225 |10 : | |03148 02343| +680217 |HQ Pup |075044.0-224152 |M | 15. |< 17. | |p | | | | | |04341 04341| +680218 |HR Pup |075258.2-205246 |M | 13.0 |< 15.5 | |p |27380. | | 260. | | |03148 02318| +680219 |HS Pup |075324.9-313851 |NA | 8.0 |< 20. | |p |38385. |1963 | | | |04369 04369| +680220 |HT Pup |075358.4-261436 |EA | 16.5 | 17. | |p | | | | | |04341 04341| +680221 |HU Pup |075540.2-283855 |SRA | 11.5 | 13.2 | |p |27100. | | 238. : | |M3 |03148 02361| +680222 |HV Pup |075646.8-202554 |LB: | 11.6 | 12.2 | |p | | | | |M5 |03148 BD | +680223 |HW Pup *|075742.2-273607 |DCEP | 11.9 | 13.3 | |p |40978.52 | | 13.454 |35 | |00001 02319| +680224 |HX Pup |080027.4-271216 |EA | 14. | 15. | |p |38004.57 | | | | |04341 04341| +680225 |HY Pup |080213.6-233542 |RR | 15.5 | 17. | |p | | | | | |04341 04341| +680226 |HZ Pup |080322.8-282829 |NB | 7.7 | 18.5 | |p |38048. |1963 | | |pec(NOVA) |05033 04369| +680227 |II Pup |080325.7-275526 |M | 15. | 17.5 | |p | | | | | |04341 04341| +680228 |IK Pup |080341.8-235008 |LB | 13.6 |< 16. | |p | | | | |C(N) |03148 02319| +680229 |IL Pup |080426.1-205322 |EA | 14. | 14.5 | |p | | | | | |04341 04341| +680230 |IM Pup |080433.5-252326 |LB | 13.2 | 13.8 | |p | | | | | |03148 CoD | +680231 |IN Pup |080640.0-273940 |EA | 15.2 |< 16.5 | |p |29696.362 | | | | |03148 02361| +680232 |IO Pup |080658.0-254908 |EA | 13.5 | 16. | |p | | | | | |04341 04341| +680233 |IP Pup |080743.1-231655 |EA | 14.5 | 16.5 | |p |28385.55 | | | | |04341 04341| +680234 |IQ Pup |081128.3-211915 |EA | 16. | 17. | |p |38004.62 | | | | |04341 04341| +680235 |IR Pup |081141.1-211237 |SRB: | 12.5 | 15.5 : | |p | | | 70. : | |C4,3(N) |03148 BD | +680236 |IS Pup |081158.8-281536 |EA | 14.5 | 16.5 | |p |38413.53 | | | | |04341 04341| +680237 |IT Pup |081303.0-282032 |EA/SD: | 11.3 | 12.3 | |p |28611.331 | | 1.336177 |18 *| |03551 03551| +680238 |IU Pup |081430.7-413857 |RR: | 11.5 | 12.0 | |p |34488.328 | | | | |04370 04370| +680239 |IV Pup |081645.3-142641 |LB: | 12. | 13.5 | |p | | | | |C3,5 |04135 04135| +680240 |IW Pup |081806.0-263302 |EA | 16. | 17. | |p |38385.55 | | | | |04341 04341| +680241 |IX Pup |081904.5-240208 |M | 14.4 |< 16.0 | |p |27395. | | 330. | | |03148 02319| +680242 |IY Pup |081923.0-281506 |M | 14.8 |< 16. | |p |29633. | | 300. | | |03148 02319| +680243 |IZ Pup |082404.5-215743 |EA/SD | 13.4 |< 15.2 | |p |27132.34 | | 4.08187 |10 | |03148 02353| +680244 |KK Pup |082354.4-283636 |EA | 12.5 | 13. | |p | | | | | |04341 04341| +680245 |KL Pup |082423.3-232110 |RR | 15. | 15.5 | |p | | | | | |04341 04341| +680246 |KM Pup |082508.9-224138 |M | 13.3 |< 16. | |p |27860. | | 280. | | |03148 02319| +680247 |KN Pup |072704.0-273904 |SRA | 11.4 | 12.9 | |p |28990. | | 109. | | |03551 03551| +680248 |KO Pup |072929.7-330814 |M | 12.2 |< 14.4 | |p |28524. | | 313. | | |03474 03474| +680249 |KP Pup |072931.1-341817 |SRA | 12.6 | 14.0 | |p |28607. | | 179. | | |03551 03551| +680250 |KQ Pup *|073348.0-143126 |LC | 4.82 | 5.17 | |V | | | | |M2epIab+B2V |02301 BD | +680251 |KR Pup |073507.2-162033 |EA | 14. | 15. | |p | | | | | |03776 03776| +680252 |KS Pup |073752.9-332945 |M | 12.5 |< 15.5 | |p |27992. | | 427. | | |03474 03474| +680253 |KT Pup *|074504.1-224035 |EB | 13.1 | 14.0 | 13.4 |p |26241.629 | | 1.304127 | | |03474 03474| +680254 |KU Pup |074727.8-303428 |LB | 13.9 | 14.5 | |p | | | | |S6,8 |03474 03474| +680255 |KV Pup |074719.1-483212 |EA/DM | 9.63 | 10.34 | |V |15793.516 | | 3.667860 |13 *|A0IV |08040 08953| +680256 |KW Pup *|074920.3-150537 |EB/DM | 11.3 | 11.8 | 11.8 |p |25590.613 | | 1.603906 | | |03148 02343| +680257 |KX Pup *|075200.5-262240 |EA/D | 12.77 | 13.13 | 13.04 |V |41686.803 | | 2.1467836 |11 *| |00001 03474| +680258 |KY Pup *|075203.4-264519 |EB/KE | 10.6 | 11.1 | 11.1 |p |28600.290 | | 0.8494608 | |O9.5III |03474 03474| +680259 |KZ Pup |075236.5-172301 |RR | 11.3 | 12.8 | |p | | | | | |00412 04665| +680260 |LL Pup |075348.8-302737 |CEP | 11.2 | 12.3 | |p |28612.03 | | 5.07753 |24 | |03551 03551| +680261 |LM Pup |075445.5-301100 |EA | 13.8 |< 15.0 | |p |28905.35 | | 6.6012 |13 | |03551 03551| +680262 |LN Pup *|075509.1-231024 |EA/D | 12.5 | 13.0 | 12.9 |p |27803.30 | | 3.951299 |08 | |03474 03474| +680263 |LO Pup *|075526.3-221825 |EA/KE: | 13.8 | 14.2 | 13.9 |p |26305.549 | | 1.204557 |12 *| |03474 03474| +680264 |LP Pup *|075545.5-312246 |EA/D | 14.1 | 14.7 | |p |28668.257 | | 3.50796 |10 | |03551 03551| +680265 |LQ Pup |075612.5-323610 |CEP | 12.3 | 13.4 | |p |27425.16 | | 4.51722 |30 | |03551 03551| +680266 |LR Pup |075703.7-280942 |CEP | 11.1 | 12.3 | |p |29631.743 | | 3.33124 |18 | |03551 03551| +680267 |LS Pup |075859.2-291828 |CEP | 9.8 | 10.8 | |p |38376.500 | | 14.1464 |35 | |03992 03551| +680268 |LT Pup *|075942.4-234426 |EA/DM | 12.5 | 12.9 | 12.6 |p |26362.429 | | 1.642693 |06 *| |03474 03474| +680269 |LU Pup |080118.8-283458 |EA | 13. | 14. | |p | | | | | |03910 03910| +680270 |LV Pup |080427.1-351512 |M | 12.9 |< 15.6 | |p |28155. | | 312. | | |03551 03551| +680271 |LW Pup |080526.0-264109 |EA/GS | 9.6 | 10.3 | |p |28640.25 | | 59.349 |02 *| |03474 08953| +680272 |LX Pup |080823.3-162817 |CEP | 10.0 | 10.5 | |p |37314.25 | | 13.88 | | |04000 08953| +680273 |LY Pup |081202.9-231636 |EA | 12.2 | 13.0 | |p |27365.463 | | 2.887907 |10 *| |03474 03474| +680274 |LZ Pup |081210.9-234349 |M | 14.5 | 18. | |p | | | | | |04341 04341| +680275 |MM Pup |081457.5-240616 |RRAB | 12.9 | 13.9 | |p |26305.496 | | 0.543574 |18 | |03474 03474| +680276 |MN Pup *|081519.6-240844 |EB/KE | 12.8 | 13.2 | 13.2 |p |26277.390 | | 1.50283 | | |03474 03474| +680277 |MO Pup |073049.4-120252 |EB: | 11.7 | 12.5 | |p |36193.563 | | 1.06 /N| | |03148 02360| +680278 |MP Pup |073108.5-131426 |E | 10. | 10.5 | |p |31090.47 | | | | |05515 05515| +680279 |MQ Pup *|073119.3-380007 |EB/SD | 9.03 | 10.55 | 9.39 |V |44234.5649 | | 1.4685665 | |B9 |00001 08953| +680280 |MR Pup |073925.2-161432 |EA | 15. |< 17. | |p |30382.46 | | | | |05515 05515| +680281 |MS Pup |074145.8-135914 |E: | 15. | 16. | |p | | | | | |05515 05515| +680282 |MT Pup *|075411.9-143917 |E: | 15. | 19. | |p |31090.47 | | | | |05515 05515| +680283 |MU Pup |075408.1-164730 |M | 14.5 |< 17. | |p |39530. :| | | | |05515 05515| +680284 |MV Pup |075422.1-171307 |EA: | 14. | 15. | |p |30346.56 | | | | |05515 05515| +680285 |MW Pup *|075601.7-445447 |EA/DM | 8.8 | 9.2 | 9.2 |p |34336.450 | | 2.398735 | |A0V |05857 08613| +680286 |MX Pup |081329.5-355358 |GCAS | 4.60 | 4.92 | |V | | | | |B1.5III-IVe |08419 05625| +680287 |MY Pup |073818.2-483605 |DCEPS | 5.54 | 5.76 | |V |41043.72 | | 5.69482 |37 |F4Iab |08834 CoD | +680288 |MZ Pup |080416.2-324029 |LC: | 5.2 | 5.44 | |V | | | | |M1IIb |06304 CoD | +680289 |NN Pup |081705.4-312619 |M | 11.5 |< 13.5 | |p | | | | |M7e |00085 02381| +680290 |NO Pup *|082617.7-390332 |EA/KE: | 6.53 | 6.98 | 6.66 |V |41361.7635 | | 1.25689059 |12 *|B8V |09696 CoD | +680291 |NP Pup |065426.7-422156 |LB | 6.25 | 6.52 | |V | | | | |C7,2(N0) |06258 CoD | +680292 |NQ Pup *|075305.3-113729 |LB | 7.55 | 7.68 | |V | | | | |S6,3 |06059 BD | +680293 |NR Pup |075942.6-500834 |M | 13.5 |< 16. | |p | | | | |Me |04453 GSC22| +680294 |NS Pup |081121.5-393707 |LC | 4.4 | 4.5 | |V | | | | |K3Ib |03712 CoD | +680295 |NT Pup |075846.3-385940 |DCEP | 11.0 | 12.0 | |p |38442.354 | | 15.565 |30 | |06847 06847| +680296 |NU Pup |063248.1-435414 |M | 12. |< 13. | |p | | | | |S |00085 02381| +680297 |NV Pup |071818.4-364402 |GCAS | 4.58 | 4.78 | |V | | | | |B3Ve |08419 09697| +680298 |NW Pup *|071838.2-364434 |BCEP+ELL: | 5.11 |( 0.07 )| |V | | | 0.125 | |B3Vea |06840 09697| +680299 |NX Pup *|071928.3-443511 |INA | 10.00 | 11.16 | |V | | | | |A1-F2IIIe |09702 09741| +680300 |NY Pup |072220.9-504923 |L | 12. | 13. | |p | | | | | |00085 02381| +680301 |NZ Pup |073020.1-194117 |EA: | 15.1 |< 16.1 | |p |30781.343 | | | | |00412 02360| +680302 |OO Pup |073338.8-161902 |DCEP: | 12.0 | 13.3 | |p | | | | | |00412 02343| +680303 |OP Pup |073921.5-172049 |RR: | 11.0 | 12.0 | |p | | | | | |00501 07762| +680304 |OQ Pup |073819.4-460240 |EA | 10.5 | 11.5 | |p | | | | | |00085 CoD | +680305 |OR Pup *|075358.7-262056 |LB: | 6.85 | 7.1 | |V | | | | |M7 |07858 07858| +680306 |OS Pup *|081358.3-361920 |GCAS: | 5.07 | 5.2 | |V | | | | |B1.5IV |08387 CoD | +680307 |OT Pup |082211.1-253755 |LB | 9.5 | 10.5 | |p | | | | |M4 |00836 CoD | +680308 |OU Pup *|071313.4-451058 |ACV | 4.86 | 4.93 | |V | | | 0.9183 | |A0p(Si) |08934 CoD | +680309 |OV Pup |073351.5-282346 |M | 13.2 |< 17.0 | |p | | | | |M8:e |05192 USNO | +680310 |OW Pup |073351.0-362018 |GCAS | 5.37 | 5.56 | |V | | | | |B3Vne |08419 CoD | +680311 |OX Pup *|074705.8-391952 |ACV | 6.30 | 6.36 | |V | | | 2.41 | |B9p(Si) |07977 CoD | +680312 |OY Pup |080608.2-371747 |M | 12.8 |< 15.5 | |p | | | | |Me |02935 05464| +680313 |OZ Pup |082153.5-225813 |M: | 13.7 |< 15.5 | |p | | | | | |04579 02319| +680314 |PP Pup |073552.3-463217 |M: | 11.2 | 12.3 | |p | | | | |Me |05829 05829| +680315 |PQ Pup |080837.6-374052 |GCAS | 6.17 | 6.42 | |V | | | | |B4Ve |08419 CoD | +680316 |PR Pup |071446.0-465059 |ACV | 5.69 | 5.74 | |V | | | 1.9347 |40 |A0p(Si) |09743 CoD | +680317 |PS Pup *|073142.7-355316 |ELL | 6.62 |( 0.028 )|( 0.028 )|V | | | 1.3422 | |A0 |08476 CoD | +680318 |PT Pup *|073641.0-194208 |BCEP(B) | 5.72 | 5.74 | |V |44254.151 | | 0.162840 |50 |B2III |09019 BD | +680319 |PU Pup *|073818.1-252153 |EB | 4.69 | 4.75 | 4.74 |V |43100.000 | | 2.57895 | |B9 |08478 CoD | +680320 |PV Pup *|074528.7-144110 |EA/DM | 6.88 | 7.32 | 7.31 |V |43119.73344 | | 1.660728 |10 *|A8V+A8V |09744 BD | +680321 |PW Pup *|074906.0-310743 |EB/GS+SRD | 8.75 | 9.88 | 9.54 |V |45340. | | 158.0 | |F2epIab+B8: |09747 CoD | +680322 |PX Pup |075622.7-301704 |LB: | 6.25 |( 0.42 )| |V | | | | |M6III |06324 04257| +680323 |PY Pup |080029.0-485218 |ACV | 6.12 |( 0.04 )| |V |43196.00 | | 6.82 |50 : |A0p(Si) |08360 CoD | +680324 |PZ Pup |080157.9-351813 |EB/KE | 8.34 | 8.50 | |V | | | 1.085147 | |B5 |08389 CoD | +680325 |QQ Pup |080227.1-444001 |ACV | 6.6 |( 0.06 )| |V |43174.000 | | 2.226 |50 |A0p(Si) |08360 CoD | +680326 |QR Pup |081449.8-420222 |ELL | 8.01 | 8.13 | |V | | | 3.55172 | |B8 |08389 CoD | +680327 |QS Pup *|074912.9-465128 |BCEP | 5.84 | | |V | | | 0.1182 | |B1.5IV |08787 CoD | +680328 |QT Pup *|075034.4-384737 |LB: | 10.17 | 10.82 | |V | | | | |C(N) |07892 04265| +680329 |QU Pup *|075140.4-425318 |BCEP(B) | 6.04 | | |V |43480.713 | | 0.1927 | |B2IV |08787 CoD | +680330 |QV Pup *|075513.3-293906 |LB: | 9.0 | 10.90 | |V | | | | |C(N) |07892 04268| +680331 |QW Pup |071233.6-464534 |ACV | 4.47 |( 0.027 )| |V | | | | | |67198 CoD | +680332 |QX Pup |074216.9-144252 |M | 8.31 | 9.47 | |J | | | | | |67202 2MASS| +680333 |QY Pup |074738.5-155927 |SRD | 6.24 | 6.71 | |V | | | | | |67098 BD | +680334 |QZ Pup |075238.6-385146 |ELL | 4.47 | 4.54 | |V | | | | | |67209 CoD | +680335 |V0335 Pup |075657.7-224932 |DCEPS | 8.59 | 8.83 | |V | | | | | |67212 BD | +680336 |V0336 Pup |080244.8-411835 |ACV | 5.52 |( 0.022 )| |V | | | | | |67064 CoD | +680337 |V0337 Pup |080342.0-292508 |ACV | 7.6 |( 0.03 )| |V | | | | | |67066 CoD | +680338 |V0338 Pup |063455.5-451830 |RRAB | 9.07 | 9.25 | |V | | | | | |68295 CoD | +680339 |V0339 Pup |064612.2-374631 |GCAS | 6.15 | 6.27 | |V | | | | | |68154 CoD | +680340 |V0340 Pup |074855.3-233240 |I: | 11.98 | 12.20 | |V | | | | | |68210 68210| +680341 |V0341 Pup |075521.8-281702 |ACV | 7.2 |( 0.01 )| |V | | | | | |68290 CoD | +680342 |V0342 Pup |075550.1-455848 |SXARI: | 6.7 |( 0.040 )| |V | | | | | |68303 CoD | +680343 |V0343 Pup |073207.6-465633 |SXARI | 8.8 |( 0.04 )| |V | | | | | |69233 CoD | +680344 |V0344 Pup |073613.8-445727 |RS | 6.88 | 6.99 | |V | | | | | |69011 CoD | +680345 |V0345 Pup |072614.8-474324 |EA/SD | 18.16 | 20.00 | |B | | | | | |70093 70093| +680346 |V0346 Pup |081048.9-325205 |M: | 6.30 | 8.03 | |H | | | | | |70075 70076| +680347 |V0347 Pup |061033.7-484425 |EA/WD+NL | 13.55 | 16.75 | |B | | | | | |71063 71063| +680348 |V0348 Pup |071232.9-360539 |EA/WD+NL | 15.4 | 17.1 | |V | | | | | |71069 71069| +680349 |V0349 Pup |072917.1-341017 |DSCTC | 7.49 | 7.53 | |B | | | | | |71072 CoD | +680350 |V0350 Pup |073034.1-340526 |BCEP | 7.48 | 7.52 | |B | | | | | |71073 CoD | +680351 |V0351 Pup |081138.4-350730 |NA | 6.4 |< 12. | |V | | | | | |71075 GSC22| +680352 |V0352 Pup |074016.9-475421 |INT | 12.62 |( 2.4 )| |V | | | | | |72141 GSC22| +680353 |V0353 Pup |074634.1-321817 |SR | 3.10 | 3.55 | |J | | | | | |72036 CoD | +680354 |V0354 Pup |074726.3-272006 |ZZ | 17.71 |( 0.04 y )| |B | | | | | |73274 73048| +680355 |V0355 Pup |080631.0-202004 |DSCTC | 8.5 |( 0.04 )| |B | | | | | |73067 BD | +680356 |V0356 Pup |060817.8-465058 |RS: | 8.33 | 8.46 | |Hp| | | | | |HIP HIP | +680357 |V0357 Pup |063705.1-502858 |LB: | 8.11 | 8.21 | |Hp| | | | | |HIP HIP | +680358 |V0358 Pup |065739.1-411741 |EA: | 9.30 | 9.54 | |Hp| | | | | |HIP HIP | +680359 |V0359 Pup |065818.3-395831 |LB: | 8.88 | 9.04 | |Hp| | | | | |HIP HIP | +680360 |V0360 Pup *|070147.2-353253 |EB: | 6.52 | 6.58 | |Hp| | | | | |HIP HIP | +680361 |V0361 Pup |070753.0-345000 |EW | 8.08 | 8.39 | |Hp| | | | | |HIP HIP | +680362 |V0362 Pup |071039.6-411554 |E: | 7.52 | 7.63 | |Hp| | | | | |HIP HIP | +680363 |V0363 Pup |071225.8-363240 |LPB | 5.89 | 5.91 | |Hp| | | | | |HIP HIP | +680364 |V0364 Pup *|071234.2-361319 |IA: | 8.70 | 9.75 | |Hp| | | | | |HIP HIP | +680365 |V0365 Pup |071906.5-351103 |EA | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +680366 |V0366 Pup |072051.8-483051 |EA: | 8.07 | 8.29 | |Hp| | | | | |HIP HIP | +680367 |V0367 Pup |072402.0-440806 |LB: | 8.36 | 8.46 | |Hp| | | | | |HIP HIP | +680368 |V0368 Pup |072447.4-371728 |DSCTC | 6.20 | 6.23 | |Hp| | | | | |HIP HIP | +680369 |V0369 Pup |072737.0-182948 |ACYG: | 7.66 | 7.76 | |Hp| | | | | |HIP HIP | +680370 |V0370 Pup |072751.0-160538 |BE | 8.47 | 8.59 | |Hp| | | | | |HIP HIP | +680371 |V0371 Pup |072749.4-282216 |LPB | 7.03 | 7.06 | |Hp| | | | | |HIP HIP | +680372 |V0372 Pup |072851.4-301449 |BY: | 9.97 | 10.13 | |Hp| | | | | |HIP HIP | +680373 |V0373 Pup |072928.0-215131 |BE | 7.61 | 7.81 | |Hp| | | | | |HIP HIP | +680374 |V0374 Pup |072930.3-364105 |SRB | 7.28 | 7.50 | |Hp| | | | | |HIP HIP | +680375 |V0375 Pup |073140.6-265405 |LPB: | 8.63 | 8.69 | |Hp| | | | | |HIP HIP | +680376 |V0376 Pup *|073313.2-400331 |EB: | 6.21 | 6.24 | |Hp| | | | | |HIP HIP | +680377 |V0377 Pup |073408.7-505026 |LB | 7.45 | 7.64 | |Hp| | | | | |HIP HIP | +680378 |V0378 Pup *|073603.9-142934 |EB: | 5.60 | 5.68 | |Hp| | | | | |HIP HIP | +680379 |V0379 Pup |073559.6-342528 |ACV | 9.12 | 9.21 | |Hp| | | | | |HIP HIP | +680380 |V0380 Pup |073725.2-333027 |GCAS: | 9.19 | 9.61 | |Hp| | | | | |HIP HIP | +680381 |V0381 Pup |073927.2-113350 |EB | 7.26 | 7.71 | |Hp| | | | | |HIP HIP | +680382 |V0382 Pup |073913.7-293140 |BY: | 11.01 | 11.22 | |Hp| | | | | |HIP HIP | +680383 |V0383 Pup |073954.7-455811 |SRB: | 7.40 | 7.52 | |Hp| | | | | |HIP HIP | +680384 |V0384 Pup |074102.6-314059 |LC | 8.76 | 9.40 | |Hp| | | | | |HIP HIP | +680385 |V0385 Pup |074358.1-282554 |ACV | 8.00 | 8.09 | |Hp| | | | | |HIP HIP | +680386 |V0386 Pup |074343.4-412309 |SXARI: | 8.66 | 8.81 | |Hp| | | | | |HIP HIP | +680387 |V0387 Pup |074347.9-401834 |BE | 6.47 | 6.59 | |Hp| | | | | |HIP HIP | +680388 |V0388 Pup |074429.4-213024 |BE | 9.95 | 10.16 | |Hp| | | | | |HIP HIP | +680389 |V0389 Pup |074436.6-171727 |IA: | 8.17 | 8.35 | |Hp| | | | | |HIP HIP | +680390 |V0390 Pup |074434.2-244027 |EA | 5.53 | 5.62 | |Hp| | | | | |HIP HIP | +680391 |V0391 Pup |074619.4-285438 |DSCTC: | 7.88 | 7.95 | |Hp| | | | | |HIP HIP | +680392 |V0392 Pup |074610.6-375601 |E: | 5.82 | 5.93 | |Hp| | | | | |HIP HIP | +680393 |V0393 Pup *|074618.9-375352 |ELL | 7.69 | 7.73 | |Hp| | | | | |HIP HIP | +680394 |V0394 Pup |074707.4-413103 |SRD | 7.71 | 7.82 | |Hp| | | | | |HIP HIP | +680395 |V0395 Pup |074836.5-304522 |LPB | 7.14 | 7.17 | |Hp| | | | | |HIP HIP | +680396 |V0396 Pup |074908.3-360803 |SRD | 8.79 | 8.99 | |Hp| | | | | |HIP HIP | +680397 |V0397 Pup |074914.7-351436 |EA | 5.91 | 6.09 | |Hp| | | | | |HIP HIP | +680398 |V0398 Pup |074919.6-331947 |ACYG: | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +680399 |V0399 Pup |074928.9-483828 |EA | 9.27 | 9.56 | |Hp| | | | | |HIP HIP | +680400 |V0400 Pup |075105.7-472406 |LB: | 8.41 | 8.52 | |Hp| | | | | |HIP HIP | +680401 |V0401 Pup |075110.8-483652 |EA: | 9.44 | 9.76 | |Hp| | | | | |HIP HIP | +680402 |V0402 Pup |075220.3-262547 |ACYG: | 9.21 | 9.30 | |Hp| | | | | |HIP HIP | +680403 |V0403 Pup |075230.1-215959 |BE: | 9.01 | 9.12 | |Hp| | | | | |HIP HIP | +680404 |V0404 Pup |075450.4-453951 |LPB | 7.29 | 7.32 | |Hp| | | | | |HIP HIP | +680405 |V0405 Pup |075714.8-143107 |EB | 8.72 | 8.92 | |Hp| | | | | |HIP HIP | +680406 |V0406 Pup |075620.8-495855 |LC | 7.39 | 8.15 | |Hp| | | | | |HIP HIP | +680407 |V0407 Pup |075754.1-202543 |SRC: | 6.82 | 7.46 | |Hp| | | | | |HIP HIP | +680408 |V0408 Pup |075905.2-251637 |BE | 9.20 | 9.35 | |Hp| | | | | |HIP HIP | +680409 |V0409 Pup |075948.9-202655 |E: | 8.38 | 8.47 | |Hp| | | | | |HIP HIP | +680410 |V0410 Pup |075945.9-471813 |EB | 6.69 | 6.74 | |Hp| | | | | |HIP HIP | +680411 |V0411 Pup |080015.9-324242 |SRB | 8.28 | 8.62 | |Hp| | | | | |HIP HIP | +680412 |V0412 Pup |080017.4-375046 |LB: | 8.74 | 8.86 | |Hp| | | | | |HIP HIP | +680413 |V0413 Pup |080035.4-452013 |LPB: | 7.62 | 7.69 | |Hp| | | | | |HIP HIP | +680414 |V0414 Pup |080124.6-124736 |ACV: | 8.77 | 8.91 | |Hp| | | | | |HIP HIP | +680415 |V0415 Pup |080202.5-424613 |LPB | 7.86 | 7.89 | |Hp| | | | | |HIP HIP | +680416 |V0416 Pup |080250.5-343245 |SRB: | 7.20 | 7.45 | |Hp| | | | | |HIP HIP | +680417 |V0417 Pup |080350.7-313306 |E: | 9.76 | 10.02 | |Hp| | | | | |HIP HIP | +680418 |V0418 Pup |080438.8-295758 |LB: | 7.32 | 7.47 | |Hp| | | | | |HIP HIP | +680419 |V0419 Pup *|080559.5-315026 |LB: | 11.09 | 11.41 | |Hp| | | | | |HIP HIP | +680420 |V0420 Pup |080819.4-233704 |BE | 6.30 | 6.57 | |Hp| | | | | |HIP HIP | +680421 |V0421 Pup |080939.8-272621 |EB | 9.07 | 9.23 | |Hp| | | | | |HIP HIP | +680422 |V0422 Pup |081012.1-353848 |LB: | 8.93 | 9.04 | |Hp| | | | | |HIP HIP | +680423 |V0423 Pup |081103.4-185827 |ACV | 7.46 | 7.52 | |Hp| | | | | |HIP HIP | +680424 |V0424 Pup |081110.5-265303 |LB: | 8.93 | 9.04 | |Hp| | | | | |HIP HIP | +680425 |V0425 Pup |081150.2-273125 |EB: | 7.81 | 7.97 | |Hp| | | | | |HIP HIP | +680426 |V0426 Pup |081154.8-301243 |BE: | 7.68 | 7.82 | |Hp| | | | | |HIP HIP | +680427 |V0427 Pup |081153.4-354623 |SRB: | 6.46 | 6.82 | |Hp| | | | | |HIP HIP | +680428 |V0428 Pup |081321.9-412451 |SRB | 7.69 | 7.84 | |Hp| | | | | |HIP HIP | +680429 |V0429 Pup |081457.9-174155 |LB: | 8.95 | 9.05 | |Hp| | | | | |HIP HIP | +680430 |V0430 Pup |081540.1-260036 |BY: | 10.13 | 10.26 | |Hp| | | | | |HIP HIP | +680431 |V0431 Pup |081717.6-423118 |E | 7.21 | 7.32 | |Hp| | | | | |HIP HIP | +680432 |V0432 Pup |081922.3-200951 |ACV: | 6.67 | 6.70 | |Hp| | | | | |HIP HIP | +680433 |V0433 Pup |081943.1-181553 |LB: | 9.41 | 9.62 | |Hp| | | | | |HIP HIP | +680434 |V0434 Pup |082010.7-232133 |EA | 7.76 | 8.38 | |Hp| | | | | |HIP HIP | +680435 |V0435 Pup |082023.5-334633 |LB: | 8.33 | 8.43 | |Hp| | | | | |HIP HIP | +680436 |V0436 Pup |082316.9-381710 |LB | 6.28 | 6.40 | |Hp| | | | | |HIP HIP | +680437 |V0437 Pup |082326.5-422508 |LB | 8.72 | 8.92 | |Hp| | | | | |HIP HIP | +680438 |V0438 Pup |082457.2-424611 |EA | 5.90 | 6.07 | |Hp| | | | | |HIP HIP | +680439 |V0439 Pup |082553.2-333351 |SRC | 8.51 | 8.81 | |Hp| | | | | |HIP HIP | +680440 |V0440 Pup |082639.9-301750 |LB | 8.77 | 9.01 | |Hp| | | | | |HIP HIP | +680441 |V0441 Pup |072853.6-260629 |X+BE | 9.6 | 10.9 | |K | | | | | |75216 75217| +680442 |V0442 Pup |074113.3-323838 |ACYG | 7.72 | 7.84 | |Hp| | | | | |75218 CoD | +680443 |V0443 Pup |074550.4-341949 |E/WR | 10.49 |( 0.04 )| |V | | | | | |75067 CoD | +680444 |V0444 Pup |081356.1-360802 |INT | 12.99 | 16.49 | |V | | | | | |75219 75220| +680445 |V0445 Pup |073756.9-255659 |NC: | 8.6 |< 14. | |V | | | | | |76257 USNO | +680446 |V0446 Pup |071319.7-350033 |SR: | 13.3 | 14.2 | |V | | | | | |76012 USNO | +680447 |V0447 Pup |072950.8-272814 |LB | 12.0 | 12.8 | |V | | | | | |76012 GSC | +680448 |V0448 Pup |073007.4-291602 |SR: | 12.4 | 13.0 | |V | | | | | |76012 GSC22| +680449 |V0449 Pup |073138.4-224705 |SR: | 13.3 | 14.1 | |V | | | | | |76012 USNO | +680450 |V0450 Pup |073142.3-302736 |SR: | 11.8 | 13.2 | |V | | | | | |76012 GSC | +680451 |V0451 Pup |073205.5-263826 |SR: | 12.0 | 13.1 | |V | | | | | |76012 GSC | +680452 |V0452 Pup |073221.3-290454 |SR: | 13.1 | 13.9 | |V | | | | | |76012 GSC22| +680453 |V0453 Pup |073224.7-235806 |SR: | 13.1 | 15.0 | |V | | | | | |76012 USNO | +680454 |V0454 Pup |073426.8-160333 |LB: | 13.6 | 14.4 | |V | | | | | |76012 USNO | +680455 |V0455 Pup |073456.2-225004 |M: | 13.2 |< 15.2 | |V | | | | | |76012 USNO | +680456 |V0456 Pup |073558.0-181952 |SR: | 11.35 |( 1.0 )| |V | | | | | |76012 GSC | +680457 |V0457 Pup |073559.9-195256 |SR: | 11.8 | 13.0 | |V | | | | | |76012 UCAC2| +680458 |V0458 Pup |073634.8-210647 |SR: | 11.8 | 12.8 | |V | | | | | |76012 GSC | +680459 |V0459 Pup |073713.1-180644 |SR: | 11.9 | 12.4 | |V | | | | | |76012 GSC22| +680460 |V0460 Pup |073725.1-120410 |DSCTC | 14.08 | 14.12 | |V | | | | | |76077 76077| +680461 |V0461 Pup |073726.1-130009 |SR: | 14.3 | 15.2 | |V | | | | | |76012 USNO | +680462 |V0462 Pup |073731.2-120205 |EB: | 14.66 | 14.91 | |V | | | | | |76077 76077| +680463 |V0463 Pup |073731.6-120210 |DSCTC | 13.46 | 13.50 | |V | | | | | |76077 76077| +680464 |V0464 Pup |073735.7-120359 |DSCTC | 13.39 | 13.42 | |V | | | | | |76077 76077| +680465 |V0465 Pup |073740.5-120126 |DSCT | 13.37 | 13.48 | |V | | | | | |76077 76077| +680466 |V0466 Pup |073845.3-220709 |LB | 13.2 | 13.9 | |V | | | | | |76012 USNO | +680467 |V0467 Pup |073942.0-222218 |SR: | 11.2 | 12.5 | |V | | | | | |76012 GSC | +680468 |V0468 Pup |073958.0-373446 |BE | 5.92 | 6.02 | |V | | | | | |76078 DM | +680469 |V0469 Pup |074000.8-224335 |SR: | 11.6 | 12.7 | |V | | | | | |76012 GSC | +680470 |V0470 Pup |074042.8-221036 |M | 12.2 |< 15.0 | |V | | | | | |76012 USNO | +680471 |V0471 Pup |074106.0-262519 |SR: | 12.1 | 14.6 | |V | | | | | |76012 USNO | +680472 |V0472 Pup |074225.7-180909 |SR: | 12.3 | 13.3 | |V | | | | | |76012 USNO | +680473 |V0473 Pup |074231.6-175459 |SR: | 11.20 |( 0.8 )| |V | | | | | |76012 GSC | +680474 |V0474 Pup |074320.2-163101 |SR: | 10.82 |( 0.8 )| |V | | | | | |76012 GSC | +680475 |V0475 Pup |074338.1-315322 |M: | 12.5 |< 15.1 | |V | | | | | |76012 USNO | +680476 |V0476 Pup |074415.1-250417 |SR: | 11.9 | 13.5 | |V | | | | | |76012 USNO | +680477 |V0477 Pup |074502.4-150049 |SR: | 12.8 | 13.9 | |V | | | | | |76012 GSC | +680478 |V0478 Pup |074531.8-124912 |LB | 13.1 | 13.8 | |V | | | | | |76012 GSC | +680479 |V0479 Pup |074652.7-271917 |SR: | 11.8 | 14.2 | |V | | | | | |76012 USNO | +680480 |V0480 Pup |074748.3-295343 |SR: | 12.9 | 14.1 | |V | | | | | |76012 USNO | +680481 |V0481 Pup |074853.4-350651 |LB: | 13.0 | 13.5 | |V | | | | | |76012 GSC22| +680482 |V0482 Pup |074913.1-230622 |SR: | 13.1 | 15.0 | |V | | | | | |76012 GSC22| +680483 |V0483 Pup |075032.7-180604 |SR: | 13.0 | 14.7 | |V | | | | | |76012 USNO | +680484 |V0484 Pup |075110.2-175720 |SR: | 12.5 | 14.2 | |V | | | | | |76012 USNO | +680485 |V0485 Pup |075133.9-351405 |SR: | 12.1 | 13.5 | |V | | | | | |76012 GSC | +680486 |V0486 Pup |075205.4-300506 |LB: | 11.5 | 12.1 | |V | | | | | |76012 GSC | +680487 |V0487 Pup |075216.3-242752 |SR: | 11.9 | 13.0 | |V | | | | | |76012 GSC | +680488 |V0488 Pup |075238.5-300704 |LB | 12.6 | 13.4 | |V | | | | | |76012 GSC22| +680489 |V0489 Pup |075332.6-290234 |SR: | 12.5 | 13.1 | |V | | | | | |76012 GSC | +680490 |V0490 Pup |075354.7-302354 |LB | 13.2 | 14.3 | |V | | | | | |76012 GSC22| +680491 |V0491 Pup |075356.1-291230 |SR: | 12.3 | 12.9 | |V | | | | | |76012 GSC22| +680492 |V0492 Pup |075405.3-161716 |SR: | 11.2 | 12.7 | |V | | | | | |76012 GSC | +680493 |V0493 Pup |075427.4-340818 |SR: | 11.72 |( 0.7 )| |V | | | | | |76012 GSC | +680494 |V0494 Pup |075427.8-322058 |SR: | 10.9 | 12.0 | |V | | | | | |76012 GSC22| +680495 |V0495 Pup |075506.4-190923 |SR: | 12.8 | 14.4 | |V | | | | | |76012 GSC22| +680496 |V0496 Pup |075517.2-322725 |GCAS: | 11.3 | 12.2 | |V | | | | | |76012 GSC | +680497 |V0497 Pup |075517.6-292822 |SR: | 12.8 | 13.7 | |V | | | | | |76012 GSC | +680498 |V0498 Pup |075554.1-124323 |SR: | 13.3 | 14.6 | |V | | | | | |76012 USNO | +680499 |V0499 Pup |075630.0-234121 |SR: | 13.4 | 14.1 | |V | | | | | |76012 USNO | +680500 |V0500 Pup |075643.0-281516 |SR: | 11.4 | 11.9 | |V | | | | | |76012 GSC | +680501 |V0501 Pup |075724.1-285738 |M: | 13.6 |< 14.5 | |V | | | | | |76012 GSC22| +680502 |V0502 Pup |075753.1-313357 |SR: | 12.6 | 13.1 | |V | | | | | |76012 GSC22| +680503 |V0503 Pup |075808.4-305539 |SR: | 11.6 | 12.3 | |V | | | | | |76012 GSC | +680504 |V0504 Pup |075915.3-312006 |SR: | 11.6 | 12.4 | |V | | | | | |76012 GSC | +680505 |V0505 Pup |080027.8-140614 |M: | 13.6 |< 15.1 | |V | | | | | |76012 USNO | +680506 |V0506 Pup |080044.2-154524 |SR: | 12.6 | 13.1 | |V | | | | | |76012 GSC22| +680507 |V0507 Pup |080055.8-242644 |M: | 13.8 |< 14.5 | |V | | | | | |76012 GSC22| +680508 |V0508 Pup |080135.8-315349 |SR: | 13.0 | 13.8 | |V | | | | | |76012 GSC | +680509 |V0509 Pup |080225.5-303216 |SR: | 11.3 | 12.3 | |V | | | | | |76012 GSC22| +680510 |V0510 Pup |080240.7-240443 |SRD: | 11.7 | 12.2 | |V | | | | | |76012 GSC | +680511 |V0511 Pup |080310.7-121409 |SR: | 12.4 | 13.3 | |V | | | | | |76012 UCAC2| +680512 |V0512 Pup |080319.2-313801 |SR: | 11.7 | 12.7 | |V | | | | | |76012 GSC | +680513 |V0513 Pup |080322.2-313012 |SR: | 10.8 | 11.7 | |V | | | | | |76012 GSC | +680514 |V0514 Pup |080330.5-180031 |SR: | 11.7 | 13.0 | |V | | | | | |76012 GSC22| +680515 |V0515 Pup |080342.4-312646 |SR: | 11.4 | 12.2 | |V | | | | | |76012 GSC | +680516 |V0516 Pup |080345.6-474844 |E+XM | 16.2 | 18.5 | |B | | | | | |76081 USNO | +680517 |V0517 Pup |080436.4-313035 |SR: | 12.5 | 13.3 | |V | | | | | |76012 GSC | +680518 |V0518 Pup |080651.4-153324 |SR: | 13.0 | 14.2 | |V | | | | | |76012 USNO | +680519 |V0519 Pup |080703.5-323845 |SR: | 11.1 | 12.0 | |V | | | | | |76012 GSC22| +680520 |V0520 Pup |080703.9-322132 |RR: | 12.7 | 13.2 | |V | | | | | |76012 USNO | +680521 |V0521 Pup |080705.1-294744 |SR: | 10.4 | 11.68 | |V | | | | | |76012 GSC22| +680522 |V0522 Pup |080729.0-322332 |SR: | 12.2 | 12.9 | |V | | | | | |76012 GSC22| +680523 |V0523 Pup |080747.5-263308 |RRAB: | 12.8 | 13.7 | |V | | | | | |76082 GSC | +680524 |V0524 Pup |080752.4-263235 |SR: | 12.9 | 13.6 | |V | | | | | |76012 GSC | +680525 |V0525 Pup |080802.9-224256 |SR: | 12.4 | 12.9 | |V | | | | | |76012 GSC22| +680526 |V0526 Pup |080806.6-325712 |SR: | 10.9 | 11.8 | |V | | | | | |76012 GSC22| +680527 |V0527 Pup |080839.6-254322 |SR: | 11.4 | 12.4 | |V | | | | | |76012 GSC | +680528 |V0528 Pup |080904.8-282905 |SR: | 12.0 | 12.9 | |V | | | | | |76012 GSC | +680529 |V0529 Pup |080907.0-322522 |SR: | 12.7 | 13.4 | |V | | | | | |76012 GSC22| +680530 |V0530 Pup |080917.0-324825 |SR: | 12.8 | 13.8 | |V | | | | | |76012 GSC22| +680531 |V0531 Pup |081010.0-293203 |SR: | 10.58 | 11.6 | |V | | | | | |76012 GSC | +680532 |V0532 Pup |081029.1-324720 |SR: | 12.2 | 14.5 | |V | | | | | |76012 GSC22| +680533 |V0533 Pup |081113.5-275325 |SR: | 13.0 | 13.8 | |V | | | | | |76012 GSC22| +680534 |V0534 Pup |081203.4-202139 |SR: | 11.7 | 12.3 | |V | | | | | |76012 UCAC2| +680535 |V0535 Pup |081204.0-200226 |SR: | 12.4 | 13.1 | |V | | | | | |76012 2MASS| +680536 |V0536 Pup |081212.7-311414 |SR: | 12.0 | 13.8 | |V | | | | | |76012 GSC | +680537 |V0537 Pup |081230.6-300905 |SR: | 12.3 | 13.0 | |V | | | | | |76012 GSC | +680538 |V0538 Pup |081311.3-195629 |SR: | 12.9 | 13.7 | |V | | | | | |76012 UCAC2| +680539 |V0539 Pup |081338.0-255736 |SR: | 13.5 | 14.2 | |V | | | | | |76012 GSC22| +680540 |V0540 Pup |081436.8-305824 |SR: | 12.1 | 13.4 | |V | | | | | |76012 GSC | +680541 |V0541 Pup |081546.3-342358 |SR: | 12.4 | 13.7 | |V | | | | | |76012 GSC22| +680542 |V0542 Pup |081600.0-312556 |SR: | 12.7 | 13.3 | |V | | | | | |76012 GSC22| +680543 |V0543 Pup |081608.2-311228 |SR: | 13.3 | 13.9 | |V | | | | | |76012 GSC | +680544 |V0544 Pup |081613.5-323505 |SR: | 11.3 | 12.4 | |V | | | | | |76012 GSC | +680545 |V0545 Pup |081655.1-301312 |SR: | 13.0 | 13.6 | |V | | | | | |76012 GSC22| +680546 |V0546 Pup |081713.2-341715 |SR: | 10.5 | 11.2 | |V | | | | | |76012 DM | +680547 |V0547 Pup |081804.0-282151 |SR: | 11.9 | 13.0 | |V | | | | | |76083 GSC | +680548 |V0548 Pup |081845.6-315111 |SR: | 11.7 | 12.8 | |V | | | | | |76012 GSC22| +680549 |V0549 Pup |081859.4-345038 |SR: | 12.6 | 13.5 | |V | | | | | |76012 GSC22| +680550 |V0550 Pup |081933.0-320437 |SR: | 13.1 | 13.6 | |V | | | | | |76012 GSC22| +680551 |V0551 Pup |082021.0-321357 |SR: | 12.3 |< 14.3 | |V | | | | | |76012 GSC22| +680552 |V0552 Pup |082057.1-191504 |SRD | 9.09 |( 0.5 )| |V | | | | | |76084 DM | +680553 |V0553 Pup |082145.8-134213 |SR: | 14.0 | 14.6 | |V | | | | | |76012 USNO | +680554 |V0554 Pup |082202.8-174140 |SR: | 14.3 | 14.8 | |V | | | | | |76012 USNO | +680555 |V0555 Pup |082214.9-180122 |SR: | 12.1 | 14.7 | |V | | | | | |76012 GSC | +680556 |V0556 Pup |082237.4-180313 |SR: | 11.6 | 12.5 | |V | | | | | |76012 GSC | +680557 |V0557 Pup |082253.4-151828 |SR: | 11.3 | 13.7 | |V | | | | | |76012 USNO | +680558 |V0558 Pup |082310.4-331213 |M: | 12.0 |< 14.5 | |V | | | | | |76012 USNO | +680559 |V0559 Pup |082334.5-213145 |SR: | 12.5 | 13.2 | |V | | | | | |76012 GSC22| +680560 |V0560 Pup |082403.1-264459 |SR: | 11.2 | 12.0 | |V | | | | | |76012 DM | +680561 |V0561 Pup |082425.9-242123 |M: | 11.2 | 14.8 | |V | | | | | |76012 GSC22| +680562 |V0562 Pup |082445.9-334514 |SR: | 11.3 | 12.8 | |V | | | | | |76012 GSC22| +680563 |V0563 Pup |082448.6-330731 |SR: | 11.8 | 12.8 | |V | | | | | |76012 UCAC2| +680564 |V0564 Pup |082502.6-252200 |SR: | 11.29 |( 0.8 )| |V | | | | | |76012 DM | +680565 |V0565 Pup | | | | | | | | | | | | |=KM Pup +680566 |V0566 Pup |082545.3-331801 |SR: | 12.4 | 13.1 | |V | | | | | |76012 GSC22| +680567 |V0567 Pup |082639.2-132822 |SR: | 11.4 | 12.4 | |V | | | | | |76012 GSC | +680568 |V0568 Pup |082729.8-124326 |SR: | 12.0 | 13.5 | |V | | | | | |76012 UCAC2| +680569 |V0569 Pup |072912.5-192751 |LB | 1.85 | 2.74 | |K | | | | | |77063 77063| +680570 |V0570 Pup |073128.9-261651 |SR: | 10.4 | 12.4 | |* | | | | | |77004 USNO | +680571 |V0571 Pup |073219.5-143450 |EA | 12.8 |< 15.0 | |P | | | | | |77064 UCAC2| +680572 |V0572 Pup |081228.4-311452 |X | 10.66 | 11.43 | |K | | | | | |77069 UCAC2| +680573 |V0573 Pup |082135.7-152545 |BY: | 8.75 | 8.98 | |V | | | | | |77053 DM | +680574 |V0574 Pup |074153.6-270638 |NA | 6.93 | 18. : | |V |53332 | | | |pec(Nova) |78320 | +680575 |V0575 Pup *|060446.7-482730 |RS | 6.62 |( 0.04 )| |V | | | 3.3 | |G2V+G5V |78046 DM | +680576 |V0576 Pup |065054.9-372923 |M | 12.4 |< 15.5 | |V |52567 | | 301. | |Me |78040 USNO | +680577 |V0577 Pup |065512.4-360710 |M | 11.5 |< 14.4 | |V |52628 | | 286. | |Me |78090 2MASS| +680578 |V0578 Pup |071705.8-344939 |M | 11.2 |< 14.5 | |V |52748 | | 469. | |M7e |78130 USNO | +680579 |V0579 Pup *|071759.8-412119 |EA | 12.39 | 13.56 | 13.52 |V |52183.820 | | 2.152247 |13 | |78130 GSC | +680580 |V0580 Pup |071905.0-425802 |SRA | 9.7 | 11.5 | |V |52956. | | 350.9 |50 |R |78130 GSC | +680581 |V0581 Pup *|072821.1-364313 |EW | 11.87 | 12.47 | 12.43 |V |52877.892 | | 0.92015 | | |78011 DM | +680582 |V0582 Pup *|073408.3-130222 |EA | 7.86 | 8.13 | 7.94 : |V |52763.433 | | 2.6713 | |B8II/III |78011 DM | +680583 |V0583 Pup |074047.8-240514 |EB | 7.98 | 8.33 | |V |52643.764 | | 0.780408 | |A3III |78011 DM | +680584 |V0584 Pup |075131.4-461554 |SRB | 9.5 | 10.2 | |V | | | 330. : | | |78130 DM | +680585 |V0585 Pup |075909.0-222613 |M | 11.5 |< 14.0 | |V |52400 | | 435. | |M9e |78130 USNO | +680586 |V0586 Pup |080149.4-484656 |M | 11.0 | 14.5 | |V |52920 | | 335. | |Me |78090 USNO | +680587 |V0587 Pup *|080344.2-255445 |EA | 9.11 | 9.32 | 9.25 |V |51928.652 | | 7.2845 | |A3V |78011 DM | +680588 |V0588 Pup *|080632.0-134635 |M | 10.9 |< 14.5 | |V |52770 | | 231. | | |78130 USNO | +680589 |V0589 Pup *|081026.6-353538 |EA | 8.72 | 9.09 | 8.97 |V |51964.603 | | 2.02218 | |B8V |78011 DM | +680590 |V0590 Pup |081539.2-173204 |M | 11.6 | 15.2 | |V |53098 | | 275. | | |78130 78107| +680591 |V0591 Pup |081701.9-150043 |M | 12.6 |< 14.4 | |V |53054 | | 254. | | |78040 USNO | +680592 |V0592 Pup |082517.7-342201 |RS | 7.83 | 7.87 | |V | | | 1.35 | |G1V+G3V |78046 DM | +680593 |V0593 Pup |082540.3-221034 |M | 12.5 |< 14.6 | |V |52563 | | 465. : | | |78088 USNO | +680594 |V0594 Pup |082604.2-300641 |RV | 11.0 | 13.4 | |V |53077.7 | | 58.1 | | |78040 GSC | +680595 |V0595 Pup |082627.1-120909 |EA | 12.5 | 13.8 | |V |52388.4972 | | 2.51875 | | |78040 GSC | +680596 |V0596 Pup *|082733.3-205038 |EA/DM | 6.57 | 7.05 | 7.03 |V |44620.65895 | | 4.5961832 |06 *|A1V+A1V |09765 BD | +680597 |V0597 Pup |081618.0-341525 |NA | 7.0 |< 19. | |V |54419. |2007 | | |pec(Nova) |79152 | +680598 |V0598 Pup |070542.5-381439 |XN | 4.1 | 16. | |V |54257. :|2007 | | |pec(e) |79167 | +680599 |V0599 Pup |063658.8-451013 |SRB | 9.1 | 10.6 | |V | | | 136.3 | | |79064 DM | +680600 |V0600 Pup |065111.4-482156 |SRB | 10.3 | 11.5 | |V | | | 132.4 | | |79064 79118| +680601 |V0601 Pup |065546.0-473503 |SRB | 12.1 | 13.7 | |V | | | 104. | | |79100 GSC | +680602 |V0602 Pup |070318.8-442939 |SRA | 11.9 | 13.9 | |V |53836. | | 330. | | |79100 GSC | +680603 |V0603 Pup |070507.5-371730 |SRB | 12.9 | 14.6 | |V | | | 146. | | |79100 GSC | +680604 |V0604 Pup |071838.2-371330 |EB | 8.32 | 8.37 | 8.34 |V |52946.797 | | 3.5101 | |B8/9III |79003 DM | +680605 |V0605 Pup *|072644.0-443340 |EA | 11.30 | 12.00 | 11.98 |V |52239.762 | | 4.9370 |06 | |79011 79232| +680606 |V0606 Pup |072844.8-442817 |CEP | 11.1 | 11.6 | |V |51871.34 | | 1.43777 |35 | |79064 79232| +680607 |V0607 Pup |073619.1-143532 |EA | 9.13 | 9.65 | 9.39 |V |52520.898 | | 7.24816 |03 |A0V |79009 DM | +680608 |V0608 Pup |073937.2-363012 |EA | 8.12 | 8.44 | 8.18 |V |52566.839 | | 0.953865 |14 |B7V |79011 DM | +680609 |V0609 Pup |074253.2-281305 |SRB | 11.6 | 12.3 | |V | | | 311. | |C |79064 GSC | +680610 |V0610 Pup |074300.6-205611 |EA | 10.35 | 11.04 | 10.99 |V |52706.617 | | 1.563405 |16 |Be |79011 DM | +680611 |V0611 Pup *|074406.1-165558 |EA | 8.11 | 8.35 | 8.33 |V |52540.855 | | 6.3177 |07 |B3IV |79006 DM | +680612 |V0612 Pup |074427.6-241719 |DCEPS: | 12.7 | 13.1 | |V |51878.1 | | 3.2736 |40 : | |79064 79189| +680613 |V0613 Pup |074718.8-192404 |LB | 8.9 | 9.9 | |V | | | | |M4 |79100 79040| +680614 |V0614 Pup |075021.4-232520 |SRA | 11.5 | 12.6 | |V |53791. | | 198. | |M6 |79100 79187| +680615 |V0615 Pup |075245.8-480152 |EA | 8.91 | 8.98 | 8.97 |V |52950.772 | | 3.38771 |16 |B5V |79004 DM | +680616 |V0616 Pup |075357.6-282204 |DCEP | 12.8 | 13.8 | |V |51925.672 | | 5.8014 |25 | |79190 79190| +680617 |V0617 Pup |075448.3-330304 |EA | 10.47 | 11.21 | 10.87 |V |51966.575 | | 3.17970 |18 |OB |79011 DM | +680618 |V0618 Pup |075543.2-444625 |EA | 9.36 | 9.9 : | 9.6 : |V |52655.733 | | 4.53022 |05 |A1/2V |79003 DM | +680619 |V0619 Pup |075621.1-135439 |LB | 11.3 | 13.2 | |V | | | | | |79100 79191| +680620 |V0620 Pup *|075749.9-292303 |DCEP | 12.5 | 13.5 | |p |52167.87 | | 2.586 |30 | |79064 79189| +680621 |V0621 Pup |075809.1-464830 |EB | 10.25 | 11.0 | 10.69 |V |52437.461 | | 0.390386 | | |79011 DM | +680622 |V0622 Pup |075912.2-264156 |DCEP | 12.8 | 13.4 | |V |51875.9 | | 3.7167 |25 | |79064 79049| +680623 |V0623 Pup |075942.1-205327 |EA | 11.88 | 12.75 : | 12.15 |V |53053.678 | | 1.75072 |07 | |79003 79049| +680624 |V0624 Pup *|080041.4-325025 |SRC | 10.6 | 11.0 | |V | | | 85.5 | |M2Iab+B1V |79064 DM | +680625 |V0625 Pup |080150.5-402920 |EW | 9.43 | 10.07 | 10.02 |V |52723.645 | | 0.446394 | |F3V |79018 79232| +680626 |V0626 Pup *|080310.4-381148 |EA | 9.04 | 9.16 | 9.10 |V |47913.248 | | 1.425902 |11 |A0V |79006 DM | +680627 |V0627 Pup |080311.1-175634 |EA | 9.73 | 10.22 | 9.91 |V |52754.550 | | 5.79935 |08 |B5III |79011 DM | +680628 |V0628 Pup *|080453.1-201558 |SRB | 11.7 | 13.2 | |V | | | 129. | | |79100 79187| +680629 |V0629 Pup |080458.8-285139 |DCEP | 12.1 | 13.0 | |V |53861.555 | | 4.1744 |18 | |79064 79189| +680630 |V0630 Pup |080532.8-211147 |LB | 11.5 | 12.9 | |V | | | | | |79100 79065| +680631 |V0631 Pup |080740.3-251951 |LB | 10.2 | 10.7 | |V | | | | | |79100 DM | +680632 |V0632 Pup |080838.0-212057 |SRB | 10.8 | 11.7 | |V | | | 97. : | |M6 |79100 79187| +680633 |V0633 Pup |081006.9-201829 |SRB | 11.6 | 12.6 | |V | | | 67. : | | |79100 79065| +680634 |V0634 Pup *|081548.7-315241 |EA | 9.61 | 9.91 | |V |53413.710 | | 115.481 |03 |F8 |79003 DM | +680635 |V0635 Pup |081800.8-192214 |M | 10.9 |< 14.5 | |V |53854. | | 201. | |M6: |79100 79059| +680636 |V0636 Pup |081930.6-200508 |SRB | 9.6 | 10.6 | |V | | | 84.7 : | |M7 |79100 DM | +680637 |V0637 Pup |081950.5-392854 |EA | 11.28 | 11.95 : | 11.5 : |V |52637.751 | | 2.37050 |05 | |79011 DM | +680638 |V0638 Pup |082119.5-222437 |SRB | 12.6 | 14.0 | |V | | | 81. | | |79100 79189| +680639 |V0639 Pup |082202.8-222556 |SRB | 11.5 | 13.0 | |V | | | 800. | | |79100 79189| +680640 |V0640 Pup |082328.4-210916 |EA | 11.66 | 12.14 | 11.72 |V |51899.769 | | 1.80488 |10 | |79004 79049| +680641 |V0641 Pup |082334.9-215749 |SRB | 11.3 | 12.4 | |V | | | 654. | | |79064 79049| +680642 |V0642 Pup *|082338.1-232040 |EA | 10.25 | 10.95 : | 10.95 : |V |51924.692 | | 5.4141 |08 | |79011 DM | +680643 |V0643 Pup |082409.6-215806 |SRB | 10.8 | 11.7 | |V | | | 208. | |C |79100 79187| +680644 |V0644 Pup |082523.8-260504 |EA | 11.73 | 13.0 | 11.85 |V |53438.563 | | 0.885933 |12 | |79009 79065| +680645 |V0645 Pup |082540.0-233925 |LB | 11.6 | 12.5 | |V | | | | | |79100 79187| +680646 |V0646 Pup |075035.6-330624 |FU: | 12.12 | 12.36 | |V | | | | |G0-G2I |80433 GSC | NL80_2 +680647 |V0647 Pup |060747.0-444346 |DSCT | 6.74 | 6.78 | |V | | | 0.1167053 | |F0V |80171 HIP | NL80_2 +680648 |V0648 Pup |064034.6-375011 |SR | 13.5 | 14.7 | |V | | | 162. : | | |80256 GSC | NL80_2 +680649 |V0649 Pup |064517.3-464207 |EA: | 9.17 | 9.36 | |V | | | 51.3365 : | |B9V |80001 DM | NL80_2 +680650 |V0650 Pup |070506.3-370058 |SRA | 13.0 | 14.0 : | |V |53406. | | 134. | | |80256 GSC | NL80_2 +680651 |V0651 Pup *|070522.9-355320 |EA | 12.20 | 13.25 | 12.4 |V |53121.520 | | 4.0035 |20 |K0V+M1/3V |80048 GSC | NL80_2 +680652 |V0652 Pup *|070958.9-363929 |EW | 9.66 | 9.84 | 9.83 |V |51868.165 | | 0.371829 | |F5V |80036 DM | NL80_2 +680653 |V0653 Pup *|072114.7-463620 |EW | 10.25 | 10.53 | 10.53 |V |51869.0 | | 0.388309 | | |80002 GSC | NL80_2 +680654 |V0654 Pup *|072120.6-464054 |EW | 14.0 | 14.8 | 14.8 |V |54499.7462 | | 0.370100 | | |80242 80242| NL80_2 +680655 |V0655 Pup |072608.0-473722 |BY: | 15.9 | 16.0 | |V | | | | | |80277 80277| NL80_2 +680656 |V0656 Pup *|072611.0-474303 |EW | 18.12 | 18.27 | 18.25 |V |48655.5672 | | 0.32903 | | |80277 80277| NL80_2 +680657 |V0657 Pup |072616.4-473836 |EA | 17.0 | 17.2 | |V |48658.7648 | | 0.7413 |10 | |80277 80277| NL80_2 +680658 |V0658 Pup *|072618.9-474148 |EW | 16.60 | 16.76 | 16.76 |V |48656.6764 | | 0.4020 | | |80277 80277| NL80_2 +680659 |V0659 Pup |072623.7-474202 |BY: | 14.63 | 14.78 | |V | | | 8. : | | |80277 80277| NL80_2 +680660 |V0660 Pup *|072626.7-474027 |EA | 16.34 | 16.64 | 16.4 : |V |48657.7128 | | 0.8015 |14 | |80277 80277| NL80_2 +680661 |V0661 Pup *|072632.9-474118 |EA: | 20.2 | 21.0 | 20.7 |V |48668.7426 | | 0.8882 | | |80277 80277| NL80_2 +680662 |V0662 Pup *|072650.6-474527 |EW | 20.1 | 20.5 | 20.5 |V |48656.7105 | | 0.2386 | | |80277 80277| NL80_2 +680663 |V0663 Pup *|072653.7-474601 |EW | 17.24 | 17.33 | 17.32 : |V |48657.6511 | | 0.6974 | | |80277 80277| NL80_2 +680664 |V0664 Pup *|072729.0-505630 |EW | 11.89 | 12.26 | 12.25 |V |51868.317 | | 0.330557 | | |80036 GSC | NL80_2 +680665 |V0665 Pup |072811.9-462604 |SRA | 12.5 | 13.3 : | |V |53905. | | 314. : | | |80256 GSC | NL80_2 +680666 |V0666 Pup |072826.2-364551 |SRB | 12.7 | 14.0 : | |V | | | 125. | | |80256 GSC | NL80_2 +680667 |V0667 Pup *|073237.6-133109 |XM | 14.3 |( 0.04 )| |R | | | 0.4728 | |pec(e) |80279 80279| NL80_2 +680668 |V0668 Pup *|073321.5-114840 |EA+BE | 12.75 | 13.5 | 13.3 |V |52626.0 | | 26.98 | |Be |80015 GSC | NL80_2 +680669 |V0669 Pup |073702.1-193254 |M | 12.4 |< 14.4 | |V |51914. | | 434. | |C |80001 2MASS| NL80_2 +680670 |V0670 Pup *|073821.5-221416 |EA+BE: | 8.83 | 9.00 | 9.00 |V |51950.61 | | 4.44988 |19 |B5IV: |80001 DM | NL80_2 +680671 |V0671 Pup |073904.4-402847 |M | 10.0 | 14.0 | |V |53472. | | 471. | |C |80002 2MASS| NL80_2 +680672 |V0672 Pup |074216.7-295104 |SR | 5.30 | 5.43 | |K | | | 309. | |C |80166 2MASS| NL80_2 +680673 |V0673 Pup |074351.4-370555 |LB | 13.2 | 14.3 : | |V | | | | | |80256 GSC | NL80_2 +680674 |V0674 Pup *|074536.9-310932 |EW | 10.73 | 11.00 | 10.95 |V |51868.398 | | 0.602926 | | |80036 GSC | NL80_2 +680675 |V0675 Pup *|075046.9-302212 |EA | 10.79 | 12.15 | 10.9 |V |53798.630 | | 3.70821 |12 | |80015 GSC | NL80_2 +680676 |V0676 Pup |075243.3-282653 |M: | 13.6 |< 14.8 | |V | | | 400. : | |C |80001 2MASS| NL80_2 +680677 |V0677 Pup |075739.6-455141 |M | 12.5 |< 15.0 | |V |53105. | | 330. | | |80256 GSC | NL80_2 +680678 |V0678 Pup |075747.4-375111 |SR | 12.6 | 14.0 : | |V | | | 251. : | |M8 |80256 GSC | NL80_2 +680679 |V0679 Pup |075901.6-395127 |SR | 13.0 |< 14.1 | |V | | | 105. : | |M9 |80256 USNO | NL80_2 +680680 |V0680 Pup |075923.0-503049 |SRB | 12.6 |< 14.0 | |V | | | 128. | | |80001 USNO | NL80_2 +680681 |V0681 Pup |075924.3-410316 |M | 5.8 | 7.8 | |K | | | 519. | |C |80166 2MASS| NL80_2 +680682 |V0682 Pup |080025.5-194211 |M | 4.46 | 6.28 | |K | | | 541. | | |80166 2MASS| NL80_2 +680683 |V0683 Pup *|080112.0-293331 |LPB | 8.28 | 8.36 | |Hp| | | 1.21806 | |B7III/IV |80019 HIP | NL80_2 +680684 |V0684 Pup |080307.1-263431 |M | 7.07 | 7.82 | |K | | | 431. | |C |80166 2MASS| NL80_2 +680685 |V0685 Pup |080457.5-295126 |SR | 6.06 | 6.26 | |K | | | 199. | |C |80166 2MASS| NL80_2 +680686 |V0686 Pup |080706.2-284740 |M | 4.33 | 6.24 | |K | | | 555. | |C |80166 2MASS| NL80_2 +680687 |V0687 Pup *|080725.4-214948 |RRAB | 12.8 | 13.7 | |V |52948.84 | | 0.575206 |23 | |80135 GSC | NL80_2 +680688 |V0688 Pup |080920.3-362427 |M | 8.06 | 10.17 | |K | | | 832. : | |C |80166 2MASS| NL80_2 +680689 |V0689 Pup |081002.5-330829 |M: | 5.18 | 6.70 | |K | | | 474. : | |C |80166 2MASS| NL80_2 +680690 |V0690 Pup *|081022.3-354623 |EA | 8.92 | 9.01 | 8.96 |V |53856.64 | | 4.89927 |06 |B9IV |80015 DM | NL80_2 +680691 |V0691 Pup *|081028.8-125301 |EB | 12.51 | 12.57 | 12.53 |V |51629.15 | | 0.700 | | |80295 80295| NL80_2 +680692 |V0692 Pup *|081038.4-125017 |EW | 14.53 | 14.72 | 14.70 |V |51596.06 | | 0.340 | | |80295 80295| NL80_2 +680693 |V0693 Pup |081042.2-124939 |DSCTC | 13.16 | 13.20 | |V | | | 0.055 | | |80295 80295| NL80_2 +680694 |V0694 Pup |081044.7-125349 |GDOR | 14.31 | 14.37 | |V |51585.13 | | 0.352 | | |80295 80295| NL80_2 +680695 |V0695 Pup *|081046.1-125313 |EW | 15.65 | 15.95 | 15.85 |V |51591.025 | | 0.292 | | |80295 80295| NL80_2 +680696 |V0696 Pup *|081046.3-125451 |EA | 14.30 | 14.43 | 14.39 |V |51617.99 | | 0.945 |07 : | |80295 80295| NL80_2 +680697 |V0697 Pup *|081048.8-124628 |EB: | 10.95 | 11.08 | 11.06 |V |51630.07 | | 1.964 | | |80295 80295| NL80_2 +680698 |V0698 Pup *|081231.8-363228 |EA | 11.93 | 12.8 | 12.6 |V |53449.625 | | 2.81344 |09 | |80048 GSC | NL80_2 +680699 |V0699 Pup |081243.0-354436 |SRB | 12.1 |< 13.5 | |V | | | 125. | |M6 |80256 GSC | NL80_2 +680700 |V0700 Pup |081908.2-371434 |M: | 13.2 |< 14.5 | |V |52810. | | 399. : | |M9 |80256 GSC | NL80_2 +680701 |V0701 Pup *|081932.9-235810 |RRC | 10.45 | 10.75 | |V |53440.665 | | 0.285665 | | |80301 DM | NL80_2 +680702 |V0702 Pup |081957.0-202720 |RRAB | 13.5 | 14.4 | |V |52709.653 | | 0.378807 |13 | |80083 GSC | NL80_2 +680703 |V0703 Pup |082141.3-345724 |M | 12.9 |< 14.8 | |V |54849. | | 423. | |Ce |80001 GSC | NL80_2 +680704 |V0704 Pup |082509.6-412003 |M | 4.68 | 6.11 | |K | | | 470. | |C |80166 2MASS| NL80_2 +680705 |V0705 Pup |082629.4-192704 |SRB | 11.8 | 12.6 | |* | | | 78. | | |80001 USNO | NL80_2 +689006 |zet Pup |080335.0-400011 |ACYG: | 2.11 | 2.17 | |Hp| | | | | |75111 CoD | +689015 |omi Pup *|074805.2-255614 |BE: | 4.43 | 4.46 | |Hp| | | | | |HIP HIP | +689016 |pi. Pup |071708.6-370551 |SRD: | 2.80 | 2.87 | |Hp| | | | | |HIP HIP | +689017 |rho Pup *|080732.6-241816 |DSCT | 2.68 | 2.87 | |V |44995.905 | | 0.1408809 |48 |F6IIp |09760 03579| +689018 |sig Pup |072913.8-431805 |ELL: | 3.36 | 3.39 | |Hp| | | | | |HIP HIP | +6892122|L 2 Pup *|071332.3-443823 |SRB | 2.6 | 6.2 | |V | | | 140.6 | |M5IIIe-M6IIIe |09763 08953| +690001 |R Pyx |084530.7-281203 |M | 10.4 | 15.1 | |B |18606. | | 364.7 | |C(R)e |00001 08613| +690002 |S Pyx *|090504.6-250520 |M | 8.0 | 14.3 | |V |43565. | | 206.10 |45 |M3e-M5e |00001 00002| +690003 |T Pyx *|090441.5-322248 |NR | 7.0 | 15.77 | |B |39501. |1967 |( 7000. ) | |pec(NOVA) |00001 08588| +690004 |U Pyx |082951.8-301933 |SR: | 8.6 | 9.4 | |p | | | 345. : | |K5 |00693 08953| +690005 |V Pyx |085325.6-344909 |SRD | 9.0 | 11.5 | |p | | | 69.6 | |G8IIp |00693 05625| +690006 |W Pyx |083653.8-175816 |SRA | 10.8 | 12.5 | |p |26766. | | 166. | |M5e-M7 |00187 BD | +690007 |X Pyx |091617.5-293639 |M | 12.7 | 16.0 | |p |25980. | | 330. | |Me |01353 09611| +690008 |Y Pyx |091822.4-282515 |SR | 13.2 | 14.8 | |p | | | 60. : | | |01353 09611| +690009 |Z Pyx |091855.1-251641 |M | 12.2 |< 16.0 | |p |26450. | | 237. | |Me |01353 06286| +690010 |RR Pyx *|091855.8-263338 |RRAB | 13.5 | 15.0 | |p |26382.30 | | 0.49106 | | |01353 06286| +690011 |RS Pyx |092052.7-275027 |M | 12.0 | 16.0 | |p |26500. | | 320. | | |01353 09611| +690012 |RT Pyx |092121.6-263307 |RRAB | 14.5 | 16.2 | |p |26382.30 | | 0.57600 | | |01353 06286| +690013 |RU Pyx |092246.4-255556 |SR | 13.9 | 15.5 | |p | | | 135. : | | |01353 06286| +690014 |RV Pyx |092255.4-300305 |M | 12.5 | 16.4 | |p |26130. | | 296. | | |01353 09611| +690015 |RW Pyx |092635.0-300319 |SR | 12.6 | 14.2 | |p | | | 240. : | | |01353 09611| +690016 |RX Pyx |092656.2-262314 |M | 13.6 |< 16.0 | |p |26770. | | 214. | | |01353 06286| +690017 |RY Pyx |083952.5-175208 |EA | 11. | 12. | |p | | | | | |00190 00190| +690018 |RZ Pyx *|085204.4-272901 |EB/KE | 8.83 | 9.72 | 9.69 |B |38431.474 | | 0.656273 | |B7V |05228 09611| +690019 |SS Pyx |092237.6-252706 |E | 13.0 | 13.8 | |p | | | | | |01353 06286| +690020 |ST Pyx |092630.6-291602 |I: | 12.8 | 13.5 | |p | | | | | |01353 09611| +690021 |SU Pyx *|083200.7-271533 |EA | 11.4 | 12.5 | |V |28952.208 | | 5.06953 |05 | |01219 CoD | +690022 |SV Pyx |092455.5-333713 |EA | 10.0 | 11.0 | |p |28876.52 | | 1.4424 | | |00016 08953| +690023 |SW Pyx |083036.2-230635 |EA | 10.5 |< 12. | |p | | | | | |00975 08953| +690024 |SX Pyx |090319. -355544:|LB: | 11.5 |< 13. | |p | | | | | |00836 02381| +690025 |SY Pyx |092328.0-292516 |RR | 14.0 | 15.6 | |p | | | | | |01353 09611| +690026 |SZ Pyx |083308.4-175855 |M | 11. |< 12.5 | |p | | | 250. : | |S |00975 00351| +690027 |TT Pyx *|084830.9-260948 |EA | 8.80 | 9.48 | |V |44234.800 | | 1.515778 |30 |B9 |00001 08953| +690028 |TU Pyx |091015.8-195450 |SRB | 9.9 | 10.7 | |p |26042.1 | | 88.0 | |M5 |01354 08953| +690029 |TV Pyx *|090834.7-341041 |EB | 12.1 | 12.5 |( 0.05 )|V |34424.306 | | 0.646765 | | |00080 CoD | +690030 |TW Pyx |082842.5-253741 |EA | 13. | 13.5 | |p |38415.48 | | | | |04341 04341| +690031 |TX Pyx *|084230.6-322032 |E/KE | 9.5 | 9.9 | 9.8 |p |27844.475 | | 1.123745 | |A3 |05399 CoD | +690032 |TY Pyx *|085942.7-274859 |EA/D/RS | 6.85 | 7.50 | 7.48 |V |43187.2304 | | 3.1985787 |07 *|G5+G5 |09431 08953| +690033 |TZ Pyx *|084108.3-321203 |EW | 10.7 | 11.1 | 11.1 |V |28847.550 | | 0.6973125 | | |05377 CoD | +690034 |UU Pyx |084312.1-330545 |M | 13.8 |< 15.5 | |p | | | | |Me |04488 USNO | +690035 |UV Pyx |084536.6-250617 |M | 12.0 |< 15. | |p | | | | |Me |04579 USNO | +690036 |UW Pyx |084700.1-341859 |LB: | 14.2 | 15.7 | |p | | | | |Cea |04488 CoD | +690037 |UX Pyx |090942.1-281023 |SR | 10. | 11. | |p | | | | |M4 |07897 07897| +690038 |UY Pyx |091232.5-263037 |LB | 9. | 9.5 | |p | | | | |M3 |00190 CoD | +690039 |UZ Pyx *|084636.3-294341 |SRB | 6.99 | 7.47 | |V | | | 100. : | |C5,5J(R8) |06059 CoD | +690040 |VV Pyx | | | | | | | | | | | | |=V0596 Pup +690041 |VW Pyx *|085746.0-285736 |* | 16.47 | 17.74 | |B |44379.861 | | 0.67059 |50 | |09766 08077| +690042 |VX Pyx |083258.5-343803 |RS | 6.32 | 6.42 | |V | | | | | |69011 CoD | +690043 |VY Pyx |085429.6-233119 |CWB | 7.65 | 8.08 | |B | | | | | |71086 BD | +690044 |VZ Pyx |085919.9-242855 |UG | 12.5 | 16.8 | |V | | | | | |71087 GSC | +690045 |WW Pyx |090432.3-322251 |E | 12.4 | 13.2 | |V | | | | | |71089 71089| +690046 |WX Pyx |083305.8-224832 |XM | 16.2 | 17.74 | |V | | | | | |73275 73111| +690047 |WY Pyx |083649.0-362736 |M | 9.0 |< 12. | |V | | | | | |73030 73030| +690048 |WZ Pyx |085353.6-244735 |M | 9.35 | 11.64 | |Rc| | | | | |73276 73276| +690049 |XX Pyx |085839.0-243511 |DSCTC | 11.49 |( 0.08 B )| |V | | | | | |73277 CoD | +690050 |XY Pyx |082759.4-350650 |EB | 5.68 | 5.76 | |Hp| | | | | |HIP HIP | +690051 |XZ Pyx |082816.5-225853 |LB: | 9.22 | 9.34 | |Hp| | | | | |HIP HIP | +690052 |YY Pyx |082813.5-271528 |SRA | 9.07 | 9.36 | |Hp| | | | | |HIP HIP | +690053 |YZ Pyx |082843.0-344354 |BCEP: | 7.62 | 7.66 | |Hp| | | | | |HIP HIP | +690054 |ZZ Pyx |082944.5-324459 |LB: | 8.63 | 8.73 | |Hp| | | | | |HIP HIP | +690055 |AA Pyx |083023.6-303044 |ACV | 9.07 | 9.12 | |Hp| | | | | |HIP HIP | +690056 |AB Pyx |083029.8-364317 |LC | 6.58 | 6.89 | |Hp| | | | | |HIP HIP | +690057 |AC Pyx |083128.0-254056 |EA: | 7.80 | 8.10 | |Hp| | | | | |HIP HIP | +690058 |AD Pyx |083501.9-275947 |LB | 8.48 | 8.73 | |Hp| | | | | |HIP HIP | +690059 |AE Pyx |083929.8-215533 |SRD: | 8.17 | 8.25 | |Hp| | | | | |HIP HIP | +690060 |AF Pyx |084017.6-320955 |E: | 8.09 | 8.27 | |Hp| | | | | |HIP HIP | +690061 |AG Pyx |084248.0-344403 |LB: | 8.36 | 8.46 | |Hp| | | | | |HIP HIP | +690062 |AH Pyx |084314.1-340419 |LB | 8.45 | 8.69 | |Hp| | | | | |HIP HIP | +690063 |AI Pyx |084649.2-343723 |IA: | 6.23 | 6.36 | |Hp| | | | | |HIP HIP | +690064 |AK Pyx |084814.6-283820 |LB | 6.09 | 6.51 | |Hp| | | | | |HIP HIP | +690065 |AL Pyx |090106.3-273057 |LB | 7.05 | 7.35 | |Hp| | | | | |HIP HIP | +690066 |AM Pyx |090124.5-304224 |LB: | 8.20 | 8.31 | |Hp| | | | | |HIP HIP | +690067 |AN Pyx |091002.6-212506 |ACV: | 8.25 | 8.30 | |Hp| | | | | |HIP HIP | +690068 |AO Pyx |091447.6-334057 |LB | 8.35 | 8.73 | |Hp| | | | | |HIP HIP | +690069 |AP Pyx |091843.6-340545 |LB: | 7.45 | 7.57 | |Hp| | | | | |HIP HIP | +690070 |AQ Pyx |091904.7-363757 |SRD | 9.10 | 9.36 | |Hp| | | | | |HIP HIP | +690071 |AR Pyx |092538.5-272706 |EB: | 8.72 | 8.97 | |Hp| | | | | |HIP HIP | +690072 |AS Pyx |082721.9-261458 |RR: | 14.3 | 14.8 | |V | | | | | |76012 GSC | +690073 |AT Pyx |082840.7-334623 |INB | 12.7 |< 14.0 | |V | | | | | |76012 76260| +690074 |AU Pyx |082922.6-333332 |SR: | 12.1 | 13.0 | |V | | | | | |76012 GSC | +690075 |AV Pyx |083101.2-214738 |M: | 12.2 |< 14.2 | |V | | | | | |76087 2MASS| +690076 |AW Pyx |083152.8-263708 |SR: | 11.2 | 12.5 | |V | | | | | |76012 DM | +690077 |AX Pyx |083153.3-341318 |SR: | 12.6 | 13.8 | |V | | | | | |76012 GSC | +690078 |AY Pyx |083206.5-341131 |SR: | 12.4 | 13.0 | |V | | | | | |76012 GSC | +690079 |AZ Pyx |083247.2-341429 |SR: | 11.7 | 12.5 | |V | | | | | |76012 GSC | +690080 |BB Pyx |083433.0-214535 |SR: | 13.0 | 14.1 | |V | | | | | |76012 GSC | +690081 |BC Pyx |083526.4-271612 |SR: | 13.2 | 14.0 | |V | | | | | |76012 GSC | +690082 |BD Pyx |083603.6-191509 |SR: | 12.4 | 14.5 | |V | | | | | |76012 USNO | +690083 |BE Pyx |083745.1-220441 |SR: | 12.7 | 13.2 | |V | | | | | |76012 GSC | +690084 |BF Pyx |083817.9-181439 |SR: | 10.8 | 12.0 | |V | | | | | |76012 USNO | +690085 |BG Pyx |083834.2-174041 |SR: | 13.6 | 14.3 | |V | | | | | |76012 GSC | +690086 |BH Pyx |084341.1-323139 |M | 10.1 |< 15.0 | |V | | | | | |76089 76090| +690087 |BI Pyx |085017.8-231844 |SR: | 11.42 |( 0.6 )| |V | | | | | |76012 DM | +690088 |BK Pyx |085120.4-193701 |SR: | 11.45 |( 1.0 )| |V | | | | | |76012 GSC | +690089 |BL Pyx |085902.3-231630 |SR: | 10.8 | 11.4 | |V | | | | | |76012 DM | +690090 |BM Pyx |090124.4-240553 |SR: | 13.8 | 14.5 | |V | | | | | |76012 GSC | +690091 |BN Pyx |090220.4-234701 |SR: | 14.4 | 15.3 | |V | | | | | |76012 GSC | +690092 |BO Pyx |090249.8-195729 |SR: | 14.2 | 14.8 | |V | | | | | |76012 GSC | +690093 |BP Pyx |090353.2-234902 |SR: | 11.96 |( 0.9 )| |V | | | | | |76012 DM | +690094 |BQ Pyx |090413.7-295300 |L: | 13.2 | 14.0 | |V | | | | | |76012 GSC | +690095 |BR Pyx |090414.7-292940 |M: | 12.7 |< 15.2 | |V | | | | | |76012 GSC | +690096 |BS Pyx |090443.4-200745 |SR: | 11.5 | 12.1 | |V | | | | | |76012 UCAC2| +690097 |BT Pyx |090502.8-281451 |SR: | 13.2 | 13.8 | |V | | | | | |76012 GSC | +690098 |BU Pyx |090509.0-195725 |SR: | 12.7 | 13.3 | |V | | | | | |76012 GSC | +690099 |BV Pyx |090630.6-210153 |SR: | 12.8 | 13.6 | |V | | | | | |76012 GSC | +690100 |BW Pyx |090653.9-244005 |SR: | 9.93 |( 0.5 )| |V | | | | | |76012 DM | +690101 |BX Pyx |090710.3-271650 |SR: | 11.9 | 13.0 | |V | | | | | |76012 GSC | +690102 |BY Pyx |090734.5-273107 |SR: | 10.05 |( 0.6 )| |V | | | | | |76012 DM | +690103 |BZ Pyx |090810.1-281910 |SR: | 11.46 |( 0.7 )| |V | | | | | |76012 DM | +690104 |CC Pyx |090928.6-221305 |M: | 13.3 |< 15.0 | |V | | | | | |76012 USNO | +690105 |CD Pyx |090940.5-243759 |SR: | 12.3 | 12.9 | |V | | | | | |76012 GSC | +690106 |CE Pyx |090943.7-271532 |SR: | 11.58 |( 0.7 )| |V | | | | | |76012 DM | +690107 |CF Pyx |091425.9-243157 |SR: | 10.3 | 11.1 | |V | | | | | |76012 DM | +690108 |CG Pyx |091449.4-264128 |SR: | 13.0 | 14.2 | |V | | | | | |76012 GSC | +690109 |CH Pyx |091519.9-244416 |SR: | 11.1 | 11.6 | |V | | | | | |76012 DM | +690110 |CI Pyx |091706.0-283557 |SR: | 11.62 |( 0.5 )| |V | | | | | |76012 GSC | +690111 |CK Pyx |091753.8-290522 |SR: | 13.2 | 13.8 | |V | | | | | |76012 GSC | +690112 |CL Pyx |092218.6-282750 |SR: | 12.0 | 13.1 | |V | | | | | |76012 GSC | +690113 |CM Pyx |092315.7-284523 |SR: | 11.12 |( 0.6 )| |V | | | | | |76012 DM | +690114 |CN Pyx |083942.0-210856 |M | 10.5 |< 14.5 | |V | | | | | |77217 GSC | +690115 |CO Pyx |084508.9-255908 |M | 12.5 |< 16.0 | |P | | | | | |77077 77077| +690116 |CP Pyx |085242.8-251444 |M | 13.2 |< 16.0 | |P | | | | | |77077 77077| +690117 |CQ Pyx |091354.0-245125 |M | 4.71 | 7.36 | |K | | | | | |77081 2MASS| +690118 |CR Pyx *|083129.0-310420 |EB | 11.11 | 11.59 | 11.37 |V |51965.60 | | 1.49299 | | |78130 DM | +690119 |CS Pyx |083623.0-300215 |BY | 8.08 |( 0.03 )| |V | | | 13.97 | |G8/K0V |78110 DM | +690120 |CT Pyx |083715.5-172941 |BY | 8.72 |( 0.04 )| |V | | | 16.41 | |K1V |78018 DM | +690121 |CU Pyx *|084402.7-215210 |EA | 12.28 | 14.7 | 12.36 |V |52645.761 | | 3.4331 | | |78112 DM | +690122 |CV Pyx |085835.6-264837 |SRA | 11.7 | 13.5 | |V |53009 | | 250. | | |78130 GSC | +690123 |CW Pyx |090242.4-303243 |M | 11.3 |< 15.0 | |V |52053 | | 326. | | |78040 GSC | +690124 |CX Pyx |090734.0-261400 |SRA | 11.1 | 12.8 | |V |52980 | | 357. | |M6 |78130 GSC | +690125 |CY Pyx *|090817.1-370654 |E: | 8.27 | 8.36 | |V | | | 0.840 | |G3V |78046 DM | +690126 |CZ Pyx *|091809.9-271303 |SRB | 12.3 | 14.0 | |V | | | 97. | | |78130 GSC | +690127 |DD Pyx |091814.6-330139 |SRB | 8.4 | 9.3 | |V | | | 114. | |M6 |78130 DM | +690128 |DE Pyx |092100.5-264426 |RRC | 13.2 | 13.8 | |V |52991.797 | | 0.355958 |40 | |78130 GSC | +690129 |DF Pyx |092204.5-364209 |M | 10.6 |< 14.3 | |V |52945 | | 333. | | |78130 USNO | +690130 |DG Pyx |092407.0-360550 |SRA | 12.5 | 14.3 | |V |53070 | | 287. | | |78130 GSC | +690131 |DH Pyx |092704.0-345351 |LB | 9.6 | 10.1 | |V | | | | | |78130 DM | +690132 |DI Pyx |092724.6-292719 |LB | 12.7 | 13.3 | |p | | | | |M6 |01353 06286| +690133 |DK Pyx *|083324.1-343855 |EA | 7.85 | 7.97 | 7.91 |V |48112.955 | | 6.17848 |06 |B3III |79193 DM | +690134 |DL Pyx |084517.6-335821 |EA | 10.09 | 10.61 | 10.53 |V |52814.457 | | 2.56769 |10 | |79011 DM | +690135 |DM Pyx |084605.8-355821 |EA | 9.33 | 9.76 | 9.70 |V |52752.556 | | 3.09154 |08 |A2IV |79011 DM | +690136 |DN Pyx *|092210.2-314753 |EA | 8.45 | 8.55 | 8.55 |V |52764.617 | | 6.64046 |04 : |A0V |79018 DM | +690137 |DO Pyx |083602.8-340734 |M | 4.84 | 6.30 | |K | | | 590. | |C |80166 2MASS| NL80_2 +690138 |DP Pyx |084605.6-274549 |M | 11.6 |< 14.8 | |V |53433. | | 458. | |Ce |80001 2MASS| NL80_2 +690139 |DQ Pyx *|085420.9-354336 |EB | 9.25 | 9.35 | 9.31 |V |53040.812 | | 1.10622 | |B9V |80011 DM | NL80_2 +690140 |DR Pyx |090222.3-370935 |SR | 12.9 |< 14.2 | |V | | | 220. | | |80256 GSC | NL80_2 +690141 |DS Pyx |091139.1-362415 |LB | 12.4 |< 13.3 | |V | | | | | |80256 2MASS| NL80_2 +690142 |DT Pyx |091858.5-294237 |UG | 11.6 |< 16.0 | |V | | | | |pec(UG) |80001 80027| NL80_2 +700001 |R Ret *|043332.8-630145 |M | 6.5 | 14.2 | |V |41703. | | 278.46 |48 |M4e-M7.5e |00001 00002| +700002 |S Ret | | | | | | | | | | | | |=R Ret +700003 |T Ret *|040053.4-551545 |SR | 11.4 | 13.2 | |p | | | 59.7 | | |05758 09467| +700004 |U Ret |032038.0-590223 |EW/KW | 13.6 | 14.7 | |p |27658.62 | | 0.354956 | | |00357 06286| +700005 |V Ret |032310.8-611826 |RR | 13.4 | 14.4 | |p |27425.275 | | 0.582415 | | |00357 02380| +700006 |W Ret |032503.2-634645 |RRAB | 14.9 | 16.3 | |p |27425.25 | | 0.65907 | | |00357 06286| +700007 |X Ret *|032520.1-650319 |RRAB | 11.16 | 12.14 | |V |39438.500 | | 0.4919885 | |A9-F0 |05233 02380| +700008 |Y Ret |032740.7-594445 |RR | 14.7 | 15.8 | |p |28125.54 | | 0.53383 | | |00357 06286| +700009 |Z Ret |033126.8-605102 |RR | 15.0 | 15.8 | |p |27750.38 | | 0.587325 | | |00357 06286| +700010 |RR Ret |033246.6-635621 |SR: | 13.6 | 15.0 | |p | | | | | |00357 GSC | +700011 |RS Ret |033506.4-643631 |RRAB | 14.4 | 15.6 | |p |27425.30 | | 0.63252 | | |00357 06286| +700012 |RT Ret |033926.2-574539 |SR: | 12.7 | 13.7 | |p | | | | | |00357 06286| +700013 |RU Ret |034230.4-600748 |RRAB | 14.5 | 15.9 | |p |27425.43 | | 0.54853 | | |00357 06286| +700014 |RV Ret |034748.5-623056 |M | 11.4 | 16.5 | |p |27400. | | 269.5 | | |00357 09611| +700015 |RW Ret |034749.6-623213 |I | 13.7 | 15.1 | |p | | | | | |00357 09611| +700016 |RX Ret |034739.8-664140 |SRD | 9.1 | 11.2 | |p | | | | |G8-K0II-IIIep |00357 03389| +700017 |RY Ret |035003.4-572114 |SRA | 11.0 | 12.2 | |p |27375. | | 237. | |M3e |00357 08667| +700018 |RZ Ret |035101.5-613328 |RRAB | 14.9 | 16.3 | |p |27422.32 | | 0.54215 | | |00357 USNO | +700019 |SS Ret |035652.2-621749 |RR | 13.8 | 15.0 | |p | | | 0.5 | | |00357 09611| +700020 |ST Ret |041741.3-603542 |M | 11.5 |< 15. | |p | | | | | |00085 02385| +700021 |SU Ret |043239.4-625006 |SR | 13.0 | 14.0 | |V | | | 56. : | | |01355 03389| +700022 |SV Ret |035342.6-545606 |M: | 14.5 | 16.5 | |p | | | | |M2e |04704 04256| +700023 |SW Ret |032820.1-645838 |EW | 13.0 | 13.4 | |V |34419.462 | | 0.52274 | | |00080 02380| +700024 |SX Ret |040719.6-602650 |SRB | 9.24 | 9.80 | |V |40622. | | 100. : | |M4-5III |05828 CoD | +700025 |SY Ret |041509.8-665504 |LB | 9.43 | 9.58 | |V | | | | |M2-3 |05828 CoD | +700026 |SZ Ret |035509.9-533032 |SR | 11.5 | 12.5 | |p | | | | | |00085 CoD | +700027 |TT Ret |041621.0-605655 |ACV | 6.37 |( 0.015 )| |V | | | | | |67064 CPD | +700028 |TU Ret |042135.0-664009 |RRAB | 13.4 | 14.8 | |p | | | | | |69133 69131| +700029 |TV Ret |043540.7-591524 |UG: | 16.61 | 20.77 | |B | | | | | |72082 72082| +700030 |TW Ret |041227.9-650845 |RV: | 7.11 | 7.69 | |J | | | | | |73033 USNO | +700031 |TX Ret |041639.3-641856 |DSCTC | 8.6 |( 0.03 )| |B | | | | | |73067 CPD | +700032 |TY Ret |042401.1-670701 |SR | 6.90 | 7.06 | |J | | | | | |73033 GSC | +700033 |TZ Ret |043702.1-590353 |RRAB | 18.31 | 20.01 | |B | | | | | |73278 73278| +700034 |UU Ret |032846.9-595836 |SRB | 9.26 | 9.45 | |Hp| | | | | |HIP HIP | +700035 |UV Ret |033620.5-612929 |LB: | 9.20 | 9.33 | |Hp| | | | | |HIP HIP | +700036 |UW Ret |035029.9-602540 |SRB | 7.76 | 7.92 | |Hp| | | | | |HIP HIP | +700037 |UX Ret |035734.0-542127 |EW | 8.32 | 9.02 | |Hp| | | | | |HIP HIP | +700038 |UY Ret |035940.6-584030 |LB: | 9.53 | 9.68 | |Hp| | | | | |HIP HIP | +700039 |UZ Ret |041103.8-630938 |DSCTC | 9.28 | 9.34 | |Hp| | | | | |HIP HIP | +700040 |VV Ret |042102.4-590950 |LB | 8.59 | 8.77 | |Hp| | | | | |HIP HIP | +700041 |VW Ret |042535.4-604525 |EA | 8.76 | 9.28 | |Hp| | | | | |HIP HIP | +700042 |VX Ret |040405.8-575327 |UG | 14.7 | 18.1 | |B | | | | | |77003 GSC | +700043 |VY Ret *|032716.8-611533 |EA | 7.89 | 8.47 | 8.43 |V |52898.794 | | 14.21605 | |F5V |79011 DM | +700044 |VZ Ret |032836.9-665513 |EA/RS | 10.85 | 11.26 | 10.9 : |V |53700.7585 | | 2.31981 |05 |G5V |79100 GSC | +700045 |WW Ret |032845.8-604126 |SRB | 10.0 | 11.2 | |V | | | 76. | | |79100 DM | +700046 |WX Ret |033744.6-552347 |SRA | 8.0 | 9.5 | |V |53466. | | 265. | |M6/7III |79100 DM | +700047 |WY Ret *|033219.2-633234 |EA | 13.8 | 14.6 | 14.0 |V |51872.632 | | 0.553640 |10 | |80011 GSC | NL80_1 +709003 |gam Ret |040053.8-620933 |SR | 4.42 | 4.64 | |V | | | 25. | |M4III |06994 09611| +710001 |R Sge *|201403.7+164335 |RVB | 8.0 | 10.4 | |V |43830. | | 70.770 | |G0Ib-G8Ib |00001 00368| +710002 |S Sge *|195601.3+163805 |DCEP | 5.24 | 6.04 | |V |42678.792 | | 8.382086 |31 |F6Ib-G5Ib |08632 08953| +710003 |T Sge |192142.0+174000 |SRB | 10.4 | 11.9 | |p | | | 165.5 | |M4-M6.5 |00366 08953| +710004 |U Sge *|191848.4+193638 |EA/SD | 6.45 | 9.28 | 6.71 |V |17130.4114 | | 3.38061933 |17 |B8V+G2IV-III |08608 08953| +710005 |V Sge *|202014.7+210610 |E+NL | 8.6 | 13.9 | |V |37889.9154 | | 0.514195 | |pec(cont+e) |03593 01361| +710006 |W Sge |191932.4+171219 |M | 8.8 | 14.4 : | |V |44423. | | 278.26 | |M4e-M6.5 |00001 00119| +710007 |X Sge *|200504.9+203853 |SR | 7.0 | 9.7 | |V |25648. | | 196. |50 |C6-,5(N3) |01362 05662| +710008 |Y Sge |195330.9+181428 |M | 13.6 |< 16.2 | |p |25164. | | 146. | |M4 |01363 00772| +710009 |Z Sge *|195356.2+184716 |SRA | 13.5 | 15.7 | |B |39720. | | 190.8 |55 |M6IIIe |09700 09701| +710010 |RR Sge |195653.2+193702 |M | 13.5 |< 16. | |p |26970. | | 250. | | |01363 01368| +710011 |RS Sge *|195706.4+195944 |RVB+EA | 11.7 | 15.9 | |p |44861. | | 82.395 | | |00001 00119| +710012 |RT Sge |200712.5+181227 |M | 12.6 |< 16.2 | |p |30498. | | 299.28 | | |01000 00772| +710013 |RU Sge |195033.9+184009 |M | 14.1 |< 17.0 | |p |31022. | | 256.0 | | |01000 00772| +710014 |RV Sge |195153.7+165734 |M | 13.5 |< 17.0 | |p |30986. | | 289.3 | | |01002 00772| +710015 |RW Sge *|195233.2+190623 |M | 13.0 |< 16.4 | |p |36843. | | 444.9 | |M4 |00001 00772| +710016 |RX Sge |195656.2+185606 |M | 13.0 |< 16.5 | |p |24026. | | 439. | |M6.5 |01363 00772| +710017 |RY Sge |195828.5+164758 |M | 13.2 | 17.2 : | |p |29408. | | 333. | | |01000 00772| +710018 |RZ Sge *|200318.6+170252 |UGSU | 12.2 | 17.42 | |B | | |( 64. ) | |pec(UG) |09703 08852| +710019 |SS Sge |193908.3+164240 |N: | 11.7 |< 16. | |p |21090. :|1916 | | | |01369 01369| +710020 |ST Sge |201142.2+203717 |M | 10.0 | 14.9 | |V |45691. | | 192.31 |42 |M4e |00001 00772| +710021 |SU Sge |190600.9+173435 |SRA | 14.0 | 16. | |p |33207. | | 240. | | |06997 06286| +710022 |SV Sge |190811.8+173741 |RCB | 11.5 | 16.2 | |p | | | | |C0-3,2-3(R2) |09704 09772| +710023 |SW Sge |195338.6+175153 |M | 13.0 |< 16.1 | |p |30562. | | 301.2 | | |01002 00772| +710024 |SX Sge |195349.1+182203 |M | 12.3 | 16.3 | |p |30410. | | 475.6 | | |01002 00772| +710025 |SY Sge *|195453.5+181402 |EA/DM | 10.5 | 11.2 | 10.7 |V |33040.460 | | 3.53923 |13 |B2 |00001 00021| +710026 |SZ Sge |195459.1+192030 |RRAB | 14.6 | 15.8 | |p |31318.453 | | 0.472334 |23 | |04027 00772| +710027 |TT Sge |195513.6+190705 |M | 14.9 |< 17.4 | |p |30950. | | 279.7 | |M6 |01002 00772| +710028 |TU Sge *|195521.8+191646 |EA/SD | 13.0 | 15.0 | |p |28020.361 | | 4.908918 |14 | |08321 00772| +710029 |TV Sge |195732.3+174416 |M | 12.9 |< 17. | |p |30511. | | 276.8 | | |01002 00772| +710030 |TW Sge |195855.5+181302 |M | 14.6 |< 17.5 | |p |29170. | | 264. : | | |00773 00772| +710031 |TX Sge *|200304.4+191558 |M | 13.5 | 16.2 | |p |32524. | | 156.7 | | |00001 00772| +710032 |TY Sge |200337.5+170128 |CST: | 13.4 | | |p | | | | | |00773 00772| +710033 |TZ Sge |194101.7+165621 |M | 12.7 |< 16.0 | |p |26098. | | 270.30 | | |09784 06286| +710034 |UU Sge *|194210.3+170516 |EA/D:/PN | 14.18 | 15.59 | 14.41 |V |42953.9328 | | 0.46506918 |12 |O(subdwarf)+KV |09706 09706| +710035 |UV Sge |194700.0+164716 |M | 13.8 |< 16.0 | |p |36165. | | 173.0 | |M1 |00001 00772| +710036 |UW Sge |194853.0+170322 | | 14.5 | 15.2 | |p | | | | | |01370 USNO | +710037 |UX Sge |201807.2+180816 |M | 14.1 |< 16.0 | |p |25870. | | 263. | | |00609 02317| +710038 |UY Sge |202023.4+163649 |LB: | 13.5 | 14.5 | |p | | | | | |00609 02314| +710039 |UZ Sge *|201216.2+192055 |EA/SD | 11.4 | 13.0 | 11.6 : |p |45861.414 | | 2.2157325 |12 *|A3V |00001 02331| +710040 |VV Sge |195534.5+192114 |LB | 14.0 | 15.4 | |p | | | | |M6.5 |00773 02284| +710041 |VW Sge |195730.6+194838 |M | 13.8 |< 16.5 | |p |28396. | | 282. | | |00773 02285| +710042 |VX Sge |200225.1+164634 |M: | 15.1 |< 16.2 | |p |30890. | | 273.8 | | |01002 00772| +710043 |VY Sge |195732.5+161145 |M | 13.1 |< 16.1 | |p |27608. | | 270. | | |00773 00772| +710044 |VZ Sge *|200003.3+173100 |LB | 5.27 | 5.57 | |V | | | | |M4IIIa |06645 05151| +710045 |WW Sge |202031.5+185809 |SRA | 10.7 | 12.6 | |p |26520. | | 221. | |M6 |00911 00470| +710046 |WX Sge |193925.1+170845 |M | 13.3 |< 16.5 | |p |29810. | | 394.2 | |M6-M8 |09784 02349| +710047 |WY Sge *|193243.9+174455 |N+UG:+EA | 5.4 | 20.7 | |B |72494. :|1783 | | |pec(e+cont) |01372 09708| +710048 |WZ Sge *|200736.5+174215 |UGSU+E+ZZ | 7.0 | 15.53 | |B | | |(11900. ) | |DAep(UG) |09709 09472| +710049 |XX Sge |194016.6+182655 |EA | 14.7 | 16.1 | |p |34685.2485 | | 3.5190493 |08 | |08321 03595| +710050 |XY Sge *|194106.4+175611 |LB: | 14.0 | 15.7 | |p | | | | | |06996 06996| +710051 |XZ Sge |194228.3+175320 |LB | 13.9 | 14.8 | |p | | | | |M3 |00773 02284| +710052 |YY Sge |194408.5+180008 |M | 13.6 |< 15.6 | |p |27555. | | 213. | | |00773 02329| +710053 |YZ Sge |194457.3+170846 |M | 14.4 |< 16.5 | |p |27561. | | 255. | | |00773 02329| +710054 |ZZ Sge |194618.2+184438 |EA | 13.7 | 14.5 | |p |31019.25 | | 5.60304 |13 *| |03594 02329| +710055 |AA Sge |194631.1+184505 |LB | 13.2 | 14.7 | |p | | | | |M6 |00773 02284| +710056 |AB Sge |194743.5+175224 |M | 13.9 |< 16.0 | |p |30983. | | 226.2 | |M8 |01002 00772| +710057 |AC Sge |194839.0+184829 |M | 12.8 |< 16.0 | |p |30642. | | 247.8 | | |01002 00772| +710058 |AD Sge |194854.2+173342 |SRA | 14.4 | 16.1 | |p |27630. | | 136. | |M6 |00773 02330| +710059 |AE Sge |194900.9+184519 |LB | 14.5 | 15.7 | |p | | | | |M7 |03595 02330| +710060 |AF Sge |194904.5+185409 |M | 13.2 |< 15.8 | |p |27664. | | 256. | |M5 |00773 00772| +710061 |AG Sge *|194953.2+181318 |SRB | 14.3 |< 16.0 | |p | | | 334. | |M6 |00773 02284| +710062 |AH Sge |195010.2+173008 |M | 14.4 |< 16.5 | |p |27539. | | 277. | | |00773 02330| +710063 |AI Sge |195058.5+173856 |LB | 15.8 |< 16.6 | |p | | | | |M6.5 |00773 00772| +710064 |AK Sge |195145.6+164934 |L | 12.7 | 13.6 | |p | | | | | |00773 02330| +710065 |AL Sge |195308.3+190046 |SRA | 13.5 | 15.7 | |p |27964. | | 225. | |M5 |00773 02284| +710066 |AM Sge |195345.2+192231 |LB | 15.3 | 15.8 | |p | | | | | |00773 02350| +710067 |AN Sge |195412.6+174404 |M | 13.1 |< 15.9 | |p |27613. | | 329. | | |00773 02330| +710068 |AO Sge |195418.4+174818 |M | 13.9 |< 16.0 | |p |30612. | | 385.6 | | |01002 00772| +710069 |AP Sge |195420.8+192158 |L | 13.8 | 14.9 | |p | | | | | |00773 GSC | +710070 |AQ Sge |195610.5+203921 |EA | 15.8 |< 16.5 | |p |29429.518 | | | | |00773 00772| +710071 |AR Sge |195620.2+205953 |M | 14.9 |< 16.5 | |p |27542. | | 252. | |M7 |00773 02330| +710072 |AS Sge |195638.7+171938 |M | 13.7 |< 17. | |p |28019. | | 288. | | |00773 00772| +710073 |AT Sge |195704.3+170837 |LB | 12.6 | 13.3 | |p | | | | | |00773 02330| +710074 |AU Sge |195733.5+180021 |M | 14.6 |< 16.0 | |p |30528. | | 274. | | |00773 02330| +710075 |AV Sge |195753.7+181227 |L | 15.7 | 16.2 | |p | | | | | |00773 00772| +710076 |AW Sge |195837.1+164128 |UG | 13.8 |< 17.5 | |p | | |( 400. :) | | |03183 08852| +710077 |AX Sge |195927.1+194322 |M | 15.2 |< 17.0 | |p |27710. | | 310. | | |00773 02330| +710078 |AY Sge |195936.0+204700 |I | 15.1 | 16.2 | |p | | | | | |00773 02285| +710079 |AZ Sge |200000.3+174119 |LB | 14.4 | 15.7 | |p | | | | | |00773 02285| +710080 |BB Sge |200003.5+180154 |LB | 13.6 | 14.9 | |p | | | | | |00773 02330| +710081 |BC Sge |200023.4+161605 |M | 14.5 |< 16.5 | |p |29171. | | 330. | | |00773 02350| +710082 |BD Sge |200047.4+175318 |SR | 14.5 | 15.7 | |p |29111. | | 78. | | |00773 02330| +710083 |BE Sge |200108.3+211945 |SR | 15.2 |< 17.0 | |p |29120. | | 229. : | | |00773 02331| +710084 |BF Sge |200223.1+210525 |LB | 10.3 | 12.1 | |B | | | | |C4,4(N3) |00773 02331| +710085 |BG Sge |200245.1+204710 |M | 12.4 |< 15.5 | |p |27638. | | 225. | | |00773 02331| +710086 |BH Sge |200318.6+180820 |LB | 13.2 | 14.4 | |p | | | | | |00773 02331| +710087 |BI Sge |200322.8+183900 |RRAB | 13.8 | 15.0 | |p |27931.507 | | 0.632805 |20 | |03893 02331| +710088 |BK Sge |200408.6+162139 |M | 14.3 |< 16.0 | |p |27580. | | 391. | | |00773 02331| +710089 |BL Sge |200421.6+174836 |M | 12.8 |< 17.0 | |p |30161. | | 425. | | |00773 02350| +710090 |BM Sge |200501.9+192412 |M | 13.5 | 18.0 | |p |27500. | | 312. | | |00773 00772| +710091 |BN Sge |200521.3+202653 |M | 12.5 |< 15.9 | |p |30420. | | 315.0 | | |01002 00772| +710092 |BO Sge |200550.1+191439 |LB | 11.9 | 13.7 | |p | | | | |M7 |00773 02331| +710093 |BP Sge |200557.9+164232 |LB | 15.5 | 17.0 | |p | | | | | |03165 02331| +710094 |BQ Sge |200619.2+195925 |M | 13.8 |< 16.5 | |p |30936. | | 229. | | |03567 00772| +710095 |BR Sge *|200626.7+211358 |EA | 12.9 | 14.1 | |p |30514.473 | | 2.362211 |11 | |00773 02350| +710096 |BS Sge |200631.0+184649 |L | 16. | 17. | |p | | | | | |00773 00772| +710097 |BT Sge |200635.6+213507 |M | 12.8 | 18. | |p |27692. | | 275. | | |00773 02331| +710098 |BU Sge |200647.6+195939 |EA | 13.2 | 14.5 | |p |29777.40 | | 5.5008 |17 *| |00773 02285| +710099 |BV Sge |200703.5+190305 |L | 12.9 | 14.4 | |p | | | | | |00773 02331| +710100 |BW Sge |200842.6+174354 |LB | 14.8 | 15.7 | |p | | | | | |00773 02331| +710101 |BX Sge |200910.3+184609 |M | 13.1 |< 16.5 | |p |27731. | | 263. | | |00773 02331| +710102 |BY Sge |200947.2+171834 |LB | 14.3 | 15.5 | |p | | | | | |00773 02331| +710103 |BZ Sge |201012.9+193057 |LB | 14.4 | 15.3 | |p | | | | | |00773 02350| +710104 |CC Sge |201022.8+165724 |LB | 14.0 | 15.0 | |p | | | | | |03165 02331| +710105 |CD Sge |201028.5+173420 |LB | 14.8 | 16.5 | |p | | | | | |00773 02331| +710106 |CE Sge |201037.5+180457 |SRA | 14.2 | 15.7 | |p |28734. | | 244. | | |00773 00772| +710107 |CF Sge |201103.0+200207 |LB | 14.6 | 15.7 | |p | | | | | |00773 02350| +710108 |CG Sge |201113.5+210053 |LB | 14.1 | 15.1 | |p | | | | | |00773 02331| +710109 |CH Sge |201122.4+192851 |EA/SD: | 14.9 | 16.5 | |p |29765.541 | | 3.459303 | | |00773 02350| +710110 |CI Sge |201127.2+174426 |LB | 14.4 | 15.0 | |p | | | | | |00773 02331| +710111 |CK Sge |201214.4+191911 |EA/SD | 14.0 | 15.8 | |p |45906.416 | | 2.434927 |11 *| |00001 02350| +710112 |CL Sge |201248.7+182941 |LB | 13.9 | 15.9 | |p | | | | |M6-M8 |00773 02285| +710113 |CM Sge |201331.2+174158 |RRAB | 13.9 | 15.4 | |p |29168.365 | | 0.613602 |15 | |03165 03165| +710114 |CN Sge |201346.5+171629 |IS: | 13.7 | 15.1 | |p | | | | | |00773 02285| +710115 |CO Sge |201408.0+174055 |M | 12.5 | 15.5 | |p |27642. | | 190.5 | |M5e |00773 02331| +710116 |CP Sge *|201405.9+183728 |EA | 13.2 | 14.3 | 13.3 |p |27592.451 | | 3.501655 |10 *| |04027 02350| +710117 |CQ Sge |201600.6+201557 |SRA | 13.5 | 15.0 | |p |27626. | | 147. | | |00773 02331| +710118 |CR Sge |201654.0+164133 |SR | 13.4 | 14.6 | |p |30468. | | 182. | | |00773 02331| +710119 |CS Sge |201710.8+182816 |M | 13.0 |< 16.7 | |p |27539. | | 351. | | |00773 02331| +710120 |CT Sge *|201908.5+204249 |CWB | 12.8 | 13.6 | |V |54641.8 | | 1.7179 | | |80002 02350| +710121 |CU Sge *|192429.7+162959 |EB/DW | 10.9 | 11.7 | 11.3 |p |42633.473 | | 0.7916749 | |F5 |00001 00156| +710122 |CV Sge |194256.7+181353 |LB | 9.4 | 11.3 | |V | | | | |M4III |00104 00541| +710123 |CW Sge *|195958.0+191045 |EW/DW | 11.0 | 11.8 | 11.7 |p |37501.457 | | 0.660347966 | |F5 |06247 00156| +710124 |CX Sge |201425.3+201448 |M | 14.0 |< 17.1 | |p |28444. | | 341.0 | | |04027 02350| +710125 |CY Sge |201826.7+190757 |M | 14.7 |< 16.6 | |p |29787. | | 262. | | |04027 02350| +710126 |CZ Sge *|201922.6+182334 |EA | 14.8 | 16.2 | 15.2 |p |30963.436 | | 2.348202 |17 *| |04027 02350| +710127 |DD Sge |193735.5+170115 |SRB | 14.1 | 15.0 | |p |28829. | | 130.5 | |M6 |00868 01217| +710128 |DE Sge |200713.5+205011 |EA/SD | 11.9 | 13.6 | |p |28717.445 | | 2.872067 |10 *|A |02514 02350| +710129 |DF Sge |201755.7+184349 |RRAB | 14.4 | 15.8 | |p |29846.501 | | 0.482627 |15 | |02267 02372| +710130 |DG Sge |194035.2+191708 |DCEP | 14.6 | 15.9 | |p |36724.37 | | 4.43727 |38 | |04027 02329| +710131 |DH Sge *|194736.0+165436 |RRAB | 14.0 | 15.7 | |p |38887.380 | | 0.4695862 |19 | |09778 09778| +710132 |DI Sge *|200537.4+164039 |SRA | 13.9 | 15.3 | |p |41502. | | 201.1 | | |09778 02641| +710133 |DK Sge *|201352.5+212503 |EW | 12.2 | 13.2 | 13.0 |p |35630.400 | | 0.6218188 | | |09779 02786| +710134 |DL Sge *|190735.2+185720 |EA/SD | 11.4 | 12.2 | 11.5 |p |26089.553 | | 0.8572706 |22 | |06202 04239| +710135 |DM Sge *|191505.9+182552 |EB/DM | 11.0 | 12.0 | 11.6 |p |24822.180 | | 2.775320 | |A0 |04241 04242| +710136 |DN Sge |194016.7+180725 |RR: | 16.5 |< 17.5 | |p | | | | | |04341 04341| +710137 |DO Sge |194309.6+173508 |EA: | 15. | 16. | |p | | | | | |04341 04341| +710138 |DP Sge *|194347.8+181600 |RRAB | 13.6 | 15.0 | |p |40775.472 | | 0.4882977 |15 | |07806 07806| +710139 |DQ Sge *|194505.6+164006 |EB/D | 14.5 | 15.0 | 14.8 |p |36126.315 | | 2.87380 | | |08321 04341| +710140 |DR Sge |194622.5+183729 |EA/SD: | 15.0 | 15.8 | |p |29541.305 | | 0.844707 |08 :*| |04027 02284| +710141 |DS Sge *|194626.8+170332 |E | 15.8 | 16.8 | 16.0 : |p |29777.450 | | 2.65094 : | | |04027 02349| +710142 |DT Sge *|194725.3+185442 |EA | 15.2 | 16.1 | |p |27628.558 | | 3.868467 |10 : | |04027 02329| +710143 |DU Sge |195137.3+181335 |LB: | 14.7 | 15.5 | |p | | | | | |04027 02284| +710144 |DV Sge |195553.9+162214 |EA/SD | 15.2 | 16.3 : | |p |29765.549 | | 1.363415 |09 *| |04027 02350| +710145 |DW Sge |195554.3+193237 |ISA: | 13.2 | 15.0 | |p | | | | | |04027 06996| +710146 |DX Sge |195559.8+181916 |EA | 15.2 | 15.9 | |p |30960.403 | | | | |04027 02330| +710147 |DY Sge |195649.3+162655 |LB | 14.8 | 16.0 | |p | | | | | |04027 02285| +710148 |DZ Sge |195702.0+160644 |RR | 16. | 17. | |p | | | | | |04341 04341| +710149 |EE Sge |195720.3+182028 |M: | 16. |< 18. | |p | | | | | |04341 04341| +710150 |EF Sge |195718.8+174554 |EA: | 16.5 |< 17.5 | |p | | | | | |04341 04341| +710151 |EG Sge |195758.5+170630 |EA | 13.5 | 14.5 | |p |39770.233 | | 2.8815 |13 | |07806 04341| +710152 |EH Sge *|195808.2+210708 |RRAB | 14.0 | 15.2 | |p |28404.385 | | 0.592243 |15 | |04027 02330| +710153 |EI Sge *|195907.5+192753 |EW/KW | 14.0 | 14.8 | 14.6 |V |36724.419 | | 0.3882480 | | |04027 02350| +710154 |EK Sge |200027.3+200252 |EA | 14.5 | 15. | |p | | | | | |04341 04341| +710155 |EL Sge |200057.8+190330 |CST | 11.4 | | |B | | | | |F5 |09716 04283| +710156 |EM Sge |200119.9+205434 |M | 15.2 |< 16.8 | |p |29194. | | 346. | | |04027 02350| +710157 |EN Sge |200304.1+161204 |EA | 13. | 14. | |p | | | | | |04341 04341| +710158 |EO Sge |200303.4+172623 |EA | 15.5 | 17. | |p | | | | | |04341 04341| +710159 |EP Sge |200451.7+172802 |EA | 13.5 | 14. | |p | | | | | |04341 04341| +710160 |EQ Sge |200451.6+164535 |SR: | 15. | 16. | |p | | | | | |04341 04341| +710161 |ER Sge *|200538.5+164136 |RRC | 14.0 | 14.6 | |B |42585.947 | | 0.4184570 |31 | |09778 09778| +710162 |ES Sge |200853.6+173141 |RRAB | 14.5 | 15.4 | |p |27950.534 | | 0.5654824 |20 | |04027 02350| +710163 |ET Sge |200906.3+174341 |UG: | 16. |< 20. | |p | | | | | |04341 04341| +710164 |EU Sge |200945.7+194134 |E | 16.5 | 17. | |p | | | | | |04341 04341| +710165 |EV Sge |201005.4+191832 |E | 15. | 15.5 | |p | | | | | |04341 04341| +710166 |EW Sge |201052.6+161804 |SR: | 16. | 17. | |p | | | | | |04341 04341| +710167 |EX Sge |201053.5+175502 |SRA | 14.5 | 15.5 | |p |27677. | | 81.2 | | |04027 02285| +710168 |EY Sge |201054.2+212659 |RR | 16. | 17.5 | |p | | | | | |04341 04341| +710169 |EZ Sge |201112.9+182056 |LB | 15.0 | 15.4 | |p | | | | | |04027 02331| +710170 |FF Sge *|201143.3+211457 |EA | 12.4 | 13.0 | 13.0 |p |27950.534 | | 2.653854 |13 |A |04027 04291| +710171 |FG Sge *|201156.1+202004 |* | 9.45 | 13.6 | |B | | | | |B4Ieq-K2Ib |09717 05665| +710172 |FH Sge *|201258.9+175902 |EA | 13.4 | 14.3 | 13.5 |p |27543.652 | | 4.45601 |14 *| |04027 02331| +710173 |FI Sge |201316.2+173037 |RRAB | 13.2 | 14.3 | |p |28333.441 | | 0.5047545 |20 | |04027 02331| +710174 |FK Sge |201315.5+163804 |EA | 16. | 17. | |p | | | | | |04341 04341| +710175 |FL Sge *|201323.7+182812 |EA/SD | 13.9 | 15.9 : | |p |29071.474 | | 2.09290 |09 :*| |04027 02285| +710176 |FM Sge |201409.9+184800 |LB | 13.4 | 14.7 | |p | | | | | |04027 02350| +710177 |FN Sge |201432.8+184145 |IS: | 13.9 | 14.4 | |p | | | | | |04027 02285| +710178 |FO Sge *|201439.5+182657 |SR | 13.3 | 14.4 | |p |30156.0 | | 84.4 | | |04027 02285| +710179 |FP Sge *|201445.8+193650 |EA | 14.5 | 14.9 | 14.9 |p |27543.555 | | 0.6420055 |05 *| |04027 02331| +710180 |FQ Sge |201524.4+184406 |SR: | 16. | 17. | |p | | | | | |04341 04341| +710181 |FR Sge |201557.9+192208 |RR: | 16. | 17. | |p | | | | | |04341 04341| +710182 |FS Sge |201818.1+195333 |SRB | 13.9 | 14.6 | |p | | | 148. : | | |04027 02350| +710183 |FT Sge *|194054.3+184448 |M: | 16. | 19. | |p | | | | |ea |03903 03903| +710184 |FU Sge *|194614.8+165446 |EA/SD | 15.5 | 17.5 | 15.8 |p |40098.331 | | 1.0616623 |17 | |07806 03903| +710185 |FV Sge |194635.0+165709 |M | 16. |< 17.5 | |p |37588. :| | | | |03903 03903| +710186 |FW Sge |195141.2+180448 |EA | 16.5 | 18. | |p |39347.41 | | | | |03903 03903| +710187 |FX Sge *|195420.3+184639 |EA/SD | 14.4 | 15.8 | |p |39684.480 | | 1.1547628 |17 *| |07806 03903| +710188 |FY Sge |195611.0+162717 |RRAB | 15.5 | 16.5 | |p |37194.332 | | 0.5347129 |09 | |07806 03903| +710189 |FZ Sge |195714.3+201639 |M | 16. |< 18. | |p |37600. :| | | | |03903 03903| +710190 |GG Sge |195954.3+202135 |M | 16. |< 18. | |p |39384. :| | | | |03903 03903| +710191 |GH Sge |200256.8+213308 |M | 16. |< 18. | |p |39350. :| | | | |03903 03903| +710192 |GI Sge *|200419.6+204634 |SR | 16. | 17.5 | |p | | | | | |03903 03903| +710193 |GK Sge |200535.0+164930 |SR | 15.5 | 17. | |p | | | | | |03903 03903| +710194 |GL Sge |200709.4+185138 |UG | 16. | 20. | |p | | | | | |03903 03903| +710195 |GM Sge |200746.9+192305 |M | 15. | 20. | |p |39353. :| | | | |03903 03903| +710196 |GN Sge *|201008.4+201710 |EB/KE | 10.3 | 10.6 | 10.6 |p |27596.522 | | 1.437600 | |A4-F0 |05670 05670| +710197 |GO Sge |201526.7+183951 |EA | 12.7 | 13.2 | |p |38904.502 | | 0.3997199 | | |05115 05115| +710198 |GP Sge *|201549.4+210758 |SR | 14. | 16. | |p |38365. :| | | | |03903 03903| +710199 |GQ Sge |201716.0+162148 |EA | 14. | 14.5 | |p |38384.25 | | | | |03903 03903| +710200 |GR Sge |202031.4+182350 |LB | 14.5 | 15.8 | |p | | | | | |06953 03905| +710201 |GS Sge |195313.0+180345 |EA/SD | 16. |< 18. | |p |39677.480 | | 1.55616 |13 | |07806 05515| +710202 |GT Sge |195804.1+165105 |EA/SD | 15.5 | 17.5 | |p |37160.381 | | 3.8217498 |15 *| |07806 05515| +710203 |GU Sge |195905.1+210813 |M: | 16.5 |< 18. | |p | | | | | |05515 05515| +710204 |GV Sge |200045.1+210504 |SR | 15.5 | 18. | |p |37590. :| | | | |03903 03903| +710205 |GW Sge |200659.3+205211 |RRAB | 15. | 16.5 | |p |37165.608 | | 0.6380384 |15 | |07806 05515| +710206 |GX Sge |193110.5+191525 |DCEP | 11.82 | 12.92 | |V |35337.465 | | 12.8996 |33 | |06172 05910| +710207 |GY Sge *|193513.6+191209 |DCEP | 9.84 | 10.60 | |V |44700.50 | | 51.0625 |27 | |09718 05910| +710208 |GZ Sge |193616.7+185246 |EA/DS | 13.1 | 14.4 | |p |35838.086 | | 9.85999 |07 | |05911 05911| +710209 |HH Sge *|200648.3+204156 |SRB | 11.1 | 12.5 | |p | | | | | |07199 02786| +710210 |HI Sge |201658.8+195225 |ISA: | 11.5 | 12.3 | |p | | | | | |07056 07056| +710211 |HK Sge |191926.0+165110 |LB: | 13.2 | 14.5 | |p | | | | |M3-M6 |01498 01217| +710212 |HL Sge |193545.8+165033 |M | 13.3 |< 17.5 | |p |33135. | | 330.5 | | |00504 04261| +710213 |HM Sge *|194157.1+164440 |NC+M | 11.10 | 18. | |B |42630. |1975 | | |pec(e)+M |09719 09720| +710214 |HN Sge |194311.6+164648 |LB | 13.5 | 15. | |p | | | | |C |07806 01217| +710215 |HO Sge |195158.7+181425 |M: | 17. |< 18. | |p |38370. :| | | | |03903 03903| +710216 |HP Sge |195429.9+182557 |E: | 16.5 | 17.5 | |p |38372.26 | | | | |03903 03903| +710217 |HQ Sge |195500.3+184717 |EA: | 16. | 17. | |p |38371.25 | | | | |03903 03903| +710218 |HR Sge |200058.7+182315 |LB | 10.1 | 10.8 | |p | | | | |M2 |09722 09722| +710219 |HS Sge |193922.1+180755 |NA | 7.2 | 20. : | |V |43151. :|1977 | | |pec(NOVA) |09724 09723| +710220 |HT Sge |192726.6+181745 |ACYG: | 8.07 |( 0.15 )| |B | | | | |B7Ia |08213 BD | +710221 |HU Sge |200342.2+212947 |LB | 7.8 | 8.8 | |p | | | | |M0 |09725 03915| +710222 |HV Sge |190614.1+185201 |M | 11.7 | 14.8 | |I |41558. | | 427. |60 | |08319 08319| +710223 |HW Sge |190656.7+182016 |M | 12.4 | 15.5 | |I |42260. | | 380. |60 |M5 |08319 08319| +710224 |HX Sge |190716.2+181749 |M | 9.1 | 13.5 | |I |41565. | | 355. |30 : |M8 |08319 08319| +710225 |HY Sge |190726.8+175630 |M | 9.2 | 12.8 | |I |42335. | | 295. |40 |M5 |08319 08319| +710226 |HZ Sge |190730.9+181731 |M | 11.2 | 14.3 | |I |42260. | | 353. |50 : |M7: |08319 08319| +710227 |II Sge |190811.3+175452 |M | 14.5 | 17.5 | |B |42341. | | 227. |60 |M4 |08319 08319| +710228 |IK Sge |190842.0+184219 |M | 10.2 | 14.0 | |I |42183. | | 430. |40 |M7 |08319 08319| +710229 |IL Sge |190845.1+174122 |M | 10.1 | 12.6 | |I |42385. | | 240. |60 |M6 |08319 08319| +710230 |IM Sge |190846.7+182711 |M | 12.1 | 15.8 | |I |41987. | | 425. |40 | |08319 08319| +710231 |IN Sge |190906.3+183759 |M | 9.7 | 14.1 | |I |41590. | | 340. |30 : |M6 |08319 08319| +710232 |IO Sge |190951.6+174000 |M | 12.3 | 15.0 | |I |42570. | | 437. |40 | |08319 08319| +710233 |IP Sge |190956.3+172026 |M | 13.4 | 15.5 : | |I |42279. | | 311. | |M3 |08319 08319| +710234 |IQ Sge |191021.2+171304 |M | 13.1 |< 15.0 | |I |41565. | | 335. | |M6 |08319 08319| +710235 |IR Sge *|191020.6+174028 |M | 11.5 |< 13.5 | |I |42235. | | 363. | |M2 |08319 08319| +710236 |IS Sge |191036.0+173037 |M | 12.1 | 15.0 | |I |42310. | | 370. |50 : | |08319 08319| +710237 |IT Sge |191041.0+171258 |M | 13.6 | 14.9 | |I |42663. | | 250. : |33 | |08319 08319| +710238 |IU Sge |191043.5+185648 |M | 12.2 : | 15.3 | |I |41690. | | 400. |30 |M7 |08319 08319| +710239 |IV Sge |191046.4+195709 |M | 7.2 | 12.1 | |I |42340. | | 412. |40 |M10 |08319 08319| +710240 |IW Sge |191057.3+174203 |M | 11.4 | 15.2 | |I |42375. | | 330. |45 |M7 |08319 08319| +710241 |IX Sge |191057.1+183432 |M | 12.2 | 14.6 | |I |42140. | | 300. |50 |M8 |08319 08319| +710242 |IY Sge |191103.1+172031 |M | 11.9 | 14.5 | |I |42225. | | 336. |50 |M8 |08319 08319| +710243 |IZ Sge |191111.4+184811 |M | 15.4 | 18.5 | |B |41620. | | 270. |45 |M9 |08319 08319| +710244 |KK Sge |191116.8+175151 |M | 6.3 | 12.1 | |I |41660. | | 438. |40 |M7 |08319 08319| +710245 |KL Sge |191136.4+164539 |M | 13.9 | 15.7 : | |I |42550. | | 340. |50 : | |08319 08319| +710246 |KM Sge |191133.5+183613 |M | 10.1 | 14.2 | |I |41655. | | 300. |47 |M7 |08319 08319| +710247 |KN Sge |191138.7+201322 |M | 9.9 | 12.4 | |I |42215. | | 215. |65 |M4 |08319 08319| +710248 |KO Sge |191139.7+200302 |M | 10.1 | 13.2 | |I |42710. | | 295. |45 |M3 |08319 08319| +710249 |KP Sge |191154.2+171840 |M | 11.7 | 14.9 | |I |41650. | | 300. |45 |M6 |08319 08319| +710250 |KQ Sge |191200.0+164210 |M | 11.6 | 14.3 | |I |42340. | | 292. |50 |M5 |08319 08319| +710251 |KR Sge |191228.6+191722 |M | 12.1 | 15.2 | |I |41660. | | 375. : |45 : | |08319 08319| +710252 |KS Sge |191237.3+165351 |M | 13.7 | 15.7 | |I |42600. | | 262. |50 |M2 |08319 08319| +710253 |KT Sge |191254.7+163955 |M | 10.6 | 14.0 | |I |42310. | | 500. : |55 |M8 |08319 08319| +710254 |KU Sge |191258.0+173600 |M | 12.5 | 15.4 | |I |41630. | | 408. |40 |M3 |08319 08319| +710255 |KV Sge |191259.0+202531 |M | 12.0 : | 16.1 | |I |41670. | | 375. |40 | |08319 08319| +710256 |KW Sge |191326.1+182653 |M | 11.9 | 14.9 | |I |42275. | | 410. |50 |M4 |08319 08319| +710257 |KX Sge |191346.7+175222 |M | 11.8 | 15.1 | |I |42307. | | 260. |45 |M5 |08319 08319| +710258 |KY Sge |191348.2+173854 |M | 12.9 | 15.2 | |I |42250. | | 200. |40 |M6 |08319 08319| +710259 |KZ Sge |191355.7+190904 |M | 12.6 | 15.6 | |I |41660. | | 400. |30 | |08319 08319| +710260 |LL Sge |191426.4+192009 |M | 9.2 | 11.9 | |I |42470. | | 360. |50 : |M8 |08319 08319| +710261 |LM Sge |191431.7+193129 |M | 12.2 | 14.9 | |I |42350. | | 320. |60 : |M6 |08319 08319| +710262 |LN Sge *|191439.1+173517 |M | 12.0 | 14.6 | |I |41625. | | 410. |30 | |08319 08319| +710263 |LO Sge |191443.9+171802 |M | 12.5 | 14.8 | |I |41565. | | 475. | |M4 |08319 08319| +710264 |LP Sge |191443.8+175535 |M | 10.9 : | 14.4 | |I |41700. | | 410. |60 : |M8 |08319 08319| +710265 |LQ Sge |191452.6+203649 |M | 12.0 | 15.0 | |I |41700. | | 390. |50 | |08319 08319| +710266 |LR Sge |191500.8+200103 |M | 12.4 | 15.5 | |I |42990. | | 395. |50 |M4 |08319 08319| +710267 |LS Sge |191502.9+193056 |M | 11.1 | 14.6 | |I |42345. | | 315. |30 |M8 |08319 08319| +710268 |LT Sge |191513.3+180308 |M | 11.9 | 15.8 : | |I |42240. | | 355. | |M7 |08319 08319| +710269 |LU Sge |191522.4+172751 |M | 12.7 | 15.6 | |I |42344. | | 285. |40 |M3 |08319 08319| +710270 |LV Sge |191526.8+185747 |M | 10.5 | 14.5 | |I |41700. | | 385. |30 |M8 |08319 08319| +710271 |LW Sge |191538.0+171132 |M | 12.2 | 15.3 | |I |42375. | | 395. |42 |M8 |08319 08319| +710272 |LX Sge |191537.4+191805 |M | 9.8 | 13.8 | |I |42307. | | 260. |40 |M5 |08319 08319| +710273 |LY Sge |191544.5+172047 |M | 12.4 | 15.5 | |I |42340. | | 470. |20 : | |08319 08319| +710274 |LZ Sge |191544.5+170303 |M | 13.7 : | 15.3 | |I |42400. | | 300. |45 | |08319 08319| +710275 |MM Sge |191545.1+184328 |M | 13.3 | 15.7 | |I |42310. | | 220. |50 : | |08319 08319| +710276 |MN Sge |191633.9+182253 |M | 7.8 | 12.6 | |I |41625. | | 415. |25 |M8 |08319 08319| +710277 |MO Sge |191637.8+163042 |M | 13.2 | 15.3 | |I |42700. | | 450. |50 | |08319 08319| +710278 |MP Sge |191640.0+182806 |M | 11.7 | 15.0 | |I |42200. | | 279.4 |30 | |08319 08319| +710279 |MQ Sge |191706.1+173044 |M | 11.3 | 15.0 | |I |42175. | | 212. |30 |M8 |08319 08319| +710280 |MR Sge |191716.0+171933 |M | 11.0 | 15.1 | |I |42690. | | 410. |40 : |M10 |08319 08319| +710281 |MS Sge |191720.7+165152 |M | 13.2 | 15.5 | |I |41580. | | 295. |45 | |08319 08319| +710282 |MT Sge |191725.7+175518 |M | 12.6 | 14.5 | |I |42180. | | 368. |30 : |M4 |08319 08319| +710283 |MU Sge |191735.0+164451 |M | 12.2 | 15.2 | |I |42330. | | 450. |25 | |08319 08319| +710284 |MV Sge *|191751.5+183413 |M | 10.1 | 15.7 | |I |42339. | | 393. |50 |M6 |08319 08319| +710285 |MW Sge |191756.3+162719 |M | 12.9 | 15.3 | |I |41595. | | 220. |60 | |08319 08319| +710286 |MX Sge | | | | | | | | | | | | |=V1705 Aql +710287 |MY Sge |191759.5+164825 |M | 12.0 : | 14.5 | |I |42390. | | 300. |40 |M6 |08319 08319| +710288 |MZ Sge *|191759.6+183354 |M | 12.3 | 15.7 | |I |42300. | | 311.5 |30 |M4 |08319 08319| +710289 |NN Sge |191803.1+174147 |M | 12.9 | 15.5 | |I |42270. | | 285. |50 |M8 |08319 08319| +710290 |NO Sge |191759.5+200125 |M | 5.3 | 7.7 : | |I |41575. | | 345. |50 : |M5 |08319 08319| +710291 |NP Sge |191805.3+184822 |M | 12.1 | 16.2 | |I |42338. | | 491.5 |30 | |08319 08319| +710292 |NQ Sge |191808.5+185240 |M | 13.1 | 15.7 | |I |42300. | | 301.0 |50 |M5 |08319 08319| +710293 |NR Sge |191904.2+183053 |M | 14.9 | 16.9 | |I |41615. | | 336.7 |50 : | |08319 08319| +710294 |NS Sge |191908.1+204909 |M | 14.0 | 16.2 | |I |42150. | | 350. |60 : | |08319 08319| +710295 |NT Sge |191933.5+195902 |M | 13.0 | 15.5 | |I |42360. | | 300. |40 |M8 |08319 08319| +710296 |NU Sge |191943.9+182722 |M | 13.6 | 16.6 | |I |41565. | | 327.5 |50 |M10 |08319 08319| +710297 |NV Sge |191941.7+192447 |M | 12.4 | 15.2 : | |I |42290. | | 310. |50 : |M8 |08319 08319| +710298 |NW Sge |191954.3+173349 |M | 12.9 | 16. : | |I |42300. | | 360. |60 : |M8 |08319 08319| +710299 |NX Sge |191949.4+194150 |M | 10.0 | 13.8 | |I |42365. | | 180. |50 |M8 |08319 08319| +710300 |NY Sge |191957.9+181936 |M | 12.5 | 14.8 | |I |42160. | | 313.6 |14 |M9 |08319 08319| +710301 |NZ Sge |192001.3+202126 |M | 10.9 | 14.0 | |I |42180. | | 313. |47 |M6 |08319 08319| +710302 |OO Sge |192004.7+195322 |M | 9.1 | 13.2 | |I |42180. | | 350. |50 |M8 |08319 08319| +710303 |OP Sge |192013.3+182543 |M | 12.7 | 15.5 | |I |42550. | | 336.0 |55 |M6 |08319 08319| +710304 |OQ Sge |192029.3+173140 |M | 13.3 | 15.1 | |I |42195. | | 340. |60 : |M5 |08319 08319| +710305 |OR Sge |192153.9+190221 |M | 14.0 | 16.2 : | |I |42205. | | 330. |40 : | |08319 08319| +710306 |OS Sge |192209.3+181853 |M | 11.5 | 15.9 | |I |42273. | | 515. |40 | |08319 08319| +710307 |OT Sge |192218.2+173105 |M | 13.7 | 17.0 : | |I |41565. | | 330. |40 : |M6 |08319 08319| +710308 |OU Sge |192230.2+175823 |M | 11.2 | 14.4 | |I |42400. | | 325. |50 |M8 |08319 08319| +710309 |OV Sge |192245.8+184102 |M | 11.2 | 14.7 | |I |42190. | | 368. |40 : |M6 |08319 08319| +710310 |OW Sge |192255.0+184503 |M | 11.1 | 15.2 | |I |42183. | | 325. |60 | |08319 08319| +710311 |OX Sge |192330.0+184508 |M | 10.6 | 13.9 | |I |42265. | | 390. |40 |M8 |08319 08319| +710312 |OY Sge |192330.8+184940 |M | 12.6 | 15.6 | |I |42260. | | 475. |40 | |08319 08319| +710313 |OZ Sge |192351.3+171258 |M | 11.8 | 15.2 | |I |42275. | | 367. |50 : |M6 |08319 08319| +710314 |PP Sge |192408.0+170303 |M | 12.7 | 15.4 | |I |42285. | | 126. |60 | |08319 08319| +710315 |PQ Sge |192453.2+190115 |M | 13.9 | 16.3 | |I |42549. | | 470. |40 |M8 |08319 08319| +710316 |PR Sge |192510.1+191212 |M | 12.9 | 15.2 | |I |42585. | | 375. |30 : |M6 |08319 08319| +710317 |PS Sge |192547.7+173708 |M | 13.8 | 16.3 | |I |42258. | | 355. |50 |M6 |08319 08319| +710318 |PT Sge *|192549.5+191448 |M | 10.4 | 14.7 | |I |41630. | | 530. |40 |M10 |08319 08319| +710319 |PU Sge |192617.4+180018 |M | 10.5 | 14.4 | |I |42190. | | 320. |50 |M6 |08319 08319| +710320 |PV Sge |192617.0+181216 |M | 7.3 | 9.7 | |I |42549. | | 435. |60 |M6 |08319 08319| +710321 |PW Sge |192636.1+190026 |M | 10.6 | 13.7 | |I |42180. | | 300. |50 |M2 |08319 08319| +710322 |PX Sge |192639.7+174411 |M | 11.0 | 14.7 | |I |42300. | | 425. |40 | |08319 08319| +710323 |PY Sge |192706.0+191934 |M | 9.8 | 14.1 | |I |42280. | | 370. |40 |M10 |08319 08319| +710324 |PZ Sge |192725.8+182639 |M | 12.3 | 15.3 | |I |42710. | | 640. |50 | |08319 08319| +710325 |QQ Sge |193531.3+181745 |EA/DS: | 13.8 | 14.7 | |p |35931.563 | | 10.5138 |03 *| |08321 08321| +710326 |QR Sge |191130.9+165138 |E:/WR | 11.04 | 11.12 | |V | | | | | |67216 HIP | +710327 |QS Sge |193511.3+182230 |I | 13.2 | 13.8 | |p | | | | | |67218 67217| +710328 |QT Sge |194832.2+181204 |E:/WR | 10.50 |( 0.04 )| |V | | | | | |67219 67220| +710329 |QU Sge |195349.3+184543 |E | 15.2 | 17.0 | |p | | | | | |67221 67221| +710330 |QV Sge |202008.7+164354 |* | 11.2 |( 0.20 )| |B | | | | | |67224 67186| +710331 |QW Sge |194549.6+183650 |ZAND | 12. | 13. | |p | | | | | |69033 69081| +710332 |QX Sge |195936.8+204815 |E/PSR | 20.4 |< 23. | |V | | | | | |69236 69236| +710333 |QY Sge |200754.6+184255 |SRD: | 12.37 | 12.57 | |V | | | | | |70094 70094| +710334 |QZ Sge |195221.8+184019 |E: | 6.16 | 6.23 | |V | | | | | |71190 BD | +710335 |V0335 Sge |201420.6+170055 |SRB | 9.8 | 11.2 | |p | | | | | |71191 71248| +710336 |V0336 Sge |191509.9+174257 |DSCTC | 9.4 |( 0.04 )| |V | | | | | |73279 BD | +710337 |V0337 Sge |194810.5+172406 |M | 7.3 | 9.3 | |K | | | | | |73029 2MASS| +710338 |V0338 Sge |191234.5+165047 |E: | 6.69 | 6.75 | |Hp| | | | | |HIP HIP | +710339 |V0339 Sge *|193812.1+164826 |LC | 8.46 | 8.84 | |Hp| | | | | |HIP HIP | +710340 |V0340 Sge |193925.3+163416 |LC: | 6.37 | 6.47 | |Hp| | | | | |HIP HIP | +710341 |V0341 Sge |194248.3+175806 |GCAS: | 7.67 | 7.84 | |Hp| | | | | |HIP HIP | +710342 |V0342 Sge |194431.6+183519 |SRB | 6.78 | 6.92 | |Hp| | | | | |HIP HIP | +710343 |V0343 Sge |195058.9+165128 |E: | 7.24 | 7.32 | |Hp| | | | | |HIP HIP | +710344 |V0344 Sge |200806.5+163952 |LB | 6.35 | 6.52 | |Hp| | | | | |HIP HIP | +710345 |V0345 Sge |195337.7+184252 |SRA | 13.9 | 14.4 | |B | | | | | |75221 75222| +710346 |V0346 Sge |200329.3+210512 |EB | 15.2 | 16.3 | |p | | | | | |75224 75153| +710347 |V0347 Sge |200430.2+211357 |EA | 16.1 | 16.5 | |p | | | | | |75223 75153| +710348 |V0348 Sge |201543.0+191603 |SR: | 11.6 | 13.1 | |p | | | | | |75002 GSC22| +710349 |V0349 Sge |185726.5+194847 |SR: | 10.5 | 12.6 | |* | | | | | |76146 GSC | +710350 |V0350 Sge |190011.6+200354 |SR: | 12.4 | 13.1 | |* | | | | | |76147 USNO | +710351 |V0351 Sge |190017.9+193540 |SR: | 12.1 | 13.6 | |* | | | | | |76147 USNO | +710352 |V0352 Sge |190138.1+190319 |SR: | 12.0 | 13.6 | |* | | | | | |76057 USNO | +710353 |V0353 Sge |192837.7+173236 |CEP: | 14.03 | 14.44 | |V | | | | | |76209 USNO | +710354 |V0354 Sge |193115.6+190042 |CEP | 15.42 | 15.80 | |Ic| | | | | |76209 2MASS| +710355 |V0355 Sge |193544.8+185642 |DCEP | 14.7 | 15.6 | |B | | | | | |76213 76213| +710356 |V0356 Sge |190247.5+205240 |SR: | 12.5 | 13.9 | |* | | | | | |77156 GSC22| +710357 |V0357 Sge |194138.3+183429 |SR: | 11.2 | 12.2 | |* | | | | | |77156 2MASS| +710358 |V0358 Sge |200736.2+174450 |EA | 14.2 | 15.3 | |B | | | | | |77186 77186| +710359 |V0359 Sge |185729.9+200528 |M | 11.8 |< 15.2 | |V |53574 | | 364. : | | |78006 2MASS| +710360 |V0360 Sge |185912.6+201438 |SR: | 11.5 | 13.5 | |* | | | | | |78006 2MASS| +710361 |V0361 Sge |185938.6+195900 |M | 11.0 |< 13.3 | |* |51375 | | 365. : | | |78006 2MASS| +710362 |V0362 Sge |185940.0+193011 |M: | 11.8 | 14.2 | |* | | | | | |78006 2MASS| +710363 |V0363 Sge |190222.6+195656 |M: | 11.0 | 13.6 | |* |51410 | | | | |78006 2MASS| +710364 |V0364 Sge |193112.0+190119 |DCEP | 15.1 | 16.4 | |B |42599.47 | | 6.3236 |30 | |78271 GSC | +710365 |V0365 Sge |200755.4+173116 |EW | 12.50 | 13.19 | |V |52122.659 | | 0.369132 | | |78286 78286| +710366 |V0366 Sge *|191813.8+173914 |EB | 11.75 | 12.25 | 12.0 |V |51456.676 | | 0.751779 | | |79100 79066| +710367 |V0367 Sge |191953.1+171426 |DCEP | 11.7 | 12.4 | |V |51497.4 | | 4.84188 |27 | |79064 GSC | +710368 |V0368 Sge |195302.2+182535 |EW | 12.20 | 12.55 | 12.48 |V |51482.654 | | 0.41586 | | |79003 GSC | +710369 |V0369 Sge |200129.2+183756 |EW | 13.2 | 14.0 | 13.9 |V |52918.604 | | 0.395831 | | |79009 GSC | +710370 |V0370 Sge *|200459.9+201328 |EA | 11.70 | 12.3 | 12.22 : |V |52734.943 | | 8.3264 |04 | |79193 GSC | +710371 |V0371 Sge |200935.5+173445 |EB | 11.90 | 12.45 | 12.18 |* |51426.62 | | 0.83334 | | |79025 79049| +710372 |V0372 Sge |200939.6+210444 |BCEP | 8.47 |( 0.03 )| |V | | | 0.164314 | |B0.5III/IV |79164 DM | +710373 |V0373 Sge |201654.0+165526 |RRC | 15.4 | 16.0 | |* |52912.4077 | | 0.2995 |30 | |79131 79049| +710374 |V0374 Sge |201727.9+165304 |EW | 12.33 | 12.87 | 12.87 |V |52464.4087 | | 0.542565 | | |79131 79135| +710375 |V0375 Sge |190758.6+201821 |EA | 10.84 | 11.27 | 11.22 |V |52724.899 | | 2.11434 |12 |G0 |80042 GSC | NL80_3 +710376 |V0376 Sge |191949.5+203236 |LB | 12.1 | 12.6 | |* | | | | | |80062 2MASS| NL80_3 +710377 |V0377 Sge |192925.0+190923 |DCEP | 13.0 | 13.7 | |* |51487.2 | | 6.13 |30 | |80081 USNO | NL80_3 +710378 |V0378 Sge *|194534.5+184030 |DSCTC: | 12.8 |( 0.03 )| |B | | | 0.088 | | |80089 80089| NL80_3 +710379 |V0379 Sge |194547.3+183938 |EB | 10.46 | 10.76 | 10.65 |V |51414.728 | | 2.30593 | |B8 |80042 GSC | NL80_3 +710380 |V0380 Sge *|195415.1+171253 |EB | 10.03 | 10.32 | 10.22 |V |51454.669 | | 1.37599 | |F2 |80042 DM | NL80_3 +710381 |V0381 Sge |200148.7+163045 |DSCTC | 7.81 |( 0.04 )| |B | | | 0.0898874 | |F0 |80363 HIP | NL80_3 +710382 |V0382 Sge |201352.0+213331 |EA | 10.41 | 10.83 : | 10.82 |V |51422.688 | | 2.97575 |09 |F5 |80011 DM | NL80_3 +710383 |V0383 Sge |201514.4+185326 |SR | 12.45 | 12.75 | |* | | | 40. : | | |80120 80120| NL80_3 +710384 |V0384 Sge |202018.6+211845 |EA: | 15.2 |( 0.8 )|( 0.25 )|* |53209.8072 | | 0.63649 | | |80548 80548| NL80_3 +719004 |del Sge *|194723.3+183203 |LB: | 3.75 | 3.83 | |V | | | | |M2.5II-III+B9V |07315 BD | +720001 |R Sgr *|191641.8-191828 |M | 6.7 | 12.83 | |V |43371. | | 269.84 |46 |M4e-M6e |00001 00002| +720002 |S Sgr *|191925.9-190125 |M | 9.5 | 16.0 | |V |40478. | | 230.64 |45 |M3e-M4.5e |00001 00002| +720003 |T Sgr *|191614.4-165817 |M | 7.1 | 12.9 | |V |44897. | | 394.66 |47 |S4.5,8e-S5.5,8e |00001 00002| +720004 |U Sgr *|183153.3-190730 |DCEP | 6.28 | 7.15 | |V |30117.925 | | 6.745226 |28 |F5Ib-G1.5Ib |06591 03609| +720005 |V Sgr |183123.4-181545 |CST | 8.1 | | |V | | | | |F2II | BD | +720006 |W Sgr *|180501.2-293448 |DCEP | 4.29 | 5.14 | |V |43374.77 | | 7.59503 |32 |F4-G2Ib |00001 00478| +720007 |X Sgr *|174733.6-274951 |DCEP | 4.20 | 4.90 | |V |40741.70 | | 7.01283 |36 |F5-G2II |00001 00478| +720008 |Y Sgr *|182123.0-185136 |DCEP | 5.25 | 6.24 | |V |40762.38 | | 5.77335 |34 |F5-G0Ib-II |09773 08953| +720009 |Z Sgr |191943.2-205535 |M | 8.4 | 16.0 | |V |39250. | | 450.41 |47 |M4e-M9(Se) |00001 00002| +720010 |RR Sgr *|195556.4-291124 |M | 5.4 | 14.0 | |V |40809. | | 336.33 |43 |M4e-M9e |00001 00002| +720011 |RS Sgr *|181736.2-340626 |EA/SD | 6.01 | 6.97 | 6.28 |V |20586.387 | | 2.4156832 |17 *|B3IV-V+A |01593 00010| +720012 |RT Sgr *|201743.6-390646 |M | 6.0 | 14.1 | |V |42083. | | 306.46 |47 |M5e-M7e |00001 00002| +720013 |RU Sgr *|195842.9-415058 |M | 6.0 | 13.8 | |V |41900. | | 240.49 |43 |M3e-M6e |00001 00002| +720014 |RV Sgr *|182756.1-331929 |M | 7.2 | 14.8 | |V |42621. | | 315.85 |47 |M4e-M9 |00001 00002| +720015 |RW Sgr *|191354.6-185142 |SRA | 9.0 | 11.7 | |V |41931. | | 186.82 |47 |M4II/IIIe-M6III:e|00001 00002| +720016 |RX Sgr *|191432.6-184843 |M | 9.0 | 14.4 | |V |42171. | | 335.23 |49 |M5e |00001 00002| +720017 |RY Sgr *|191632.8-333120 |RCB | 5.8 | 14.0 | |V | | | | |G0Iaep(C1,0) |09797 00002| +720018 |RZ Sgr |201528.4-442438 |SRB | 10.4 |< 13.0 | |p | | | 223.2 | |S4,4ep |00358 00546| +720019 |SS Sgr |183026.1-165349 |SRB | 10.9 | 11.3 | |p | | | | |C3,4(R3/N) |00235 00568| +720020 |ST Sgr *|190129.2-124534 |M | 7.2 | 16.0 | |V |40463. | | 395.12 |44 |C4,3e-S9,5e |00001 00002| +720021 |SU Sgr *|190343.8-224243 |SRB | 8.12 | 8.64 | |V | | | 60. | |M6III |08837 09467| +720022 |SV Sgr *|180357.8-242535 |INB | 13.5 | 16.5 | |p | | | | |K0:e-K5e |00478 00478| +720023 |SW Sgr *|191952.5-314254 |M | 9.4 | 14.8 | |V |39275. | | 289.9 |51 |M5e-M8 |00001 00002| +720024 |SX Sgr *|184605.3-302920 |EA/SD | 9.51 | 10.72 | 9.62 |V |44048.161 | | 4.15406 |13 |A2 |00001 08953| +720025 |SY Sgr *|181054.3-234135 |INSA: | 9.87 : | 10.12 | |V | | | | |F8 |09800 02428| +720026 |SZ Sgr *|174456.5-183926 |SRB | 11.05 | 11.9 | |B | | | 73. : | |C7,3(Nb) |00236 BD | +720027 |TT Sgr |192534.1-200655 |M | 10.6 |< 17.7 | |p |33845. | | 332.8 | |M4e-M6e |00001 01400| +720028 |TU Sgr |192615.2-352028 |SRB | 11.7 | 13.0 | |p | | | 206. : | |Me |00235 | +720029 |TV Sgr |194411.4-415127 |M | 10.0 |< 13.5 | |p |29064. | | 266.25 | |M7IIIe |00001 08953| +720030 |TW Sgr |191327.0-213340 |M | 9.1 |< 13.5 | |V |36465. | | 220.63 | |M2e-M3e |00001 06286| +720031 |TX Sgr |191359.6-172554 |M | 10. |< 14. | |V |36431. | | 246.73 | |M3e |00001 06286| +720032 |TY Sgr |191742.8-235625 |M | 9.1 | 15.2 | |V |40056. | | 325.41 |44 |M3e |00001 00002| +720033 |TZ Sgr |192004.3-401324 |M | 11.5 |< 14.5 | |p |29058. | | 281.64 | | |00001 GSC | +720034 |UU Sgr |192440.9-391523 |M | 10. |< 14. | |p |30202. | | 267.82 | |M6:e |00235 08953| +720035 |UV Sgr |192929.7-380530 |M | 10.8 | 16.5 | |p |28290. | | 231.41 | |M4 |00001 CoD | +720036 |UW Sgr |194626.1-180906 |SRB | 11.76 | 12.5 | |B | | | | |C6,5-C7,1J(Na) |00235 BD | +720037 |UX Sgr |185454.5-163131 |SRB | 8.9 | 9.6 | |p | | | 100. : | |MB |00235 08953| +720038 |UY Sgr |175205.3-223655 |M | 14.0 |< 17.0 | |p |29120. | | 266.3 | | |00478 00478| +720039 |UZ Sgr |175308.7-214556 |M | 12.5 |< 17.0 | |p |29430. | | 222. | |M6 |00478 00478| +720040 |VV Sgr *|175703.0-192017 |M | 12.1 |< 14.8 | |p |20703. | | 401.5 | |M3-M8e |00001 00565| +720041 |VW Sgr |180020.4-210801 |EA | 13.5 | 15. | |p | | | | | |00266 GSC | +720042 |VX Sgr *|180804.0-221327 |SRC | 6.52 | 14.0 | |V |36493. | | 732. | |M4eIa-M10eIa |01007 00002| +720043 |VY Sgr *|181204.6-204215 |DCEP | 10.86 | 11.98 | |V |36235.469 | | 13.5572 |34 |F6-G2 |02309 00920| +720044 |VZ Sgr |181508.6-294230 |RCB | 10.8 | 15.0 | |V | | | | |C |08140 08140| +720045 |WW Sgr |182305.7-272529 |M | 12.2 |< 16.5 | |p |34922. | | 208.4 | |M: |00001 02452| +720046 |WX Sgr *|175924.2-172355 |EA/SD | 9.6 | 11.3 | |p |45518.542 | | 2.12927 |14 *|A1 |00001 00279| +720047 |WY Sgr *|180058.7-230156 |EA/SD | 10.2 | 11.1 | 10.3 |p |28752.220 | | 4.670431 |18 *|B9 |01600 00024| +720048 |WZ Sgr *|181659.7-190433 |DCEP | 7.45 | 8.63 | |V |35506.629 | | 21.849708 |31 |F8-K1 |01601 01601| +720049 |XX Sgr *|182444.5-164750 |CEP | 8.41 | 9.28 | |V |35308.449 | | 6.424140 |30 |F6-G2 |09667 01603| +720050 |XY Sgr |181106.4-162809 |EA/SD | 10.7 | 12.2 | |V |19979.373 | | 2.0229225 |17 *|A0 |00279 00279| +720051 |XZ Sgr *|182206.8-251424 |EA/SD | 8.82 | 10.93 | 8.95 |V |41890.6201 | | 3.275555 |11 |A3V+G5IV-V: |08605 00024| +720052 |YY Sgr *|184435.8-192323 |EA/DM | 10.02 | 10.73 | 10.64 |V |19467.0871 | | 2.6284841 |10 *|B8+B8 |01605 00279| +720053 |YZ Sgr |184928.6-164323 |DCEP | 7.02 | 7.76 | |V |35514.301 | | 9.553606 |49 |F6-G2 |09667 03203| +720054 |ZZ Sgr |184942.1-344100 |EA/SD | 10.5 | 12.8 | |p |43344.9859 | | 3.0834829 |15 *|A2 |00243 00243| +720055 |AA Sgr |185913.1-131823 |M | 13.2 | 16.5 | |p |16337. | | 207. |44 | |01392 06286| +720056 |AB Sgr |190154.8-125610 | | 14.0 | 15.5 | |p | | | | | |01606 USNO | +720057 |AC Sgr |190205.0-122810 | | 15.0 |< 16.0 | |p | | | | | |01607 GSC22| +720058 |AD Sgr |190353.2-135110 |M | 13.2 |< 16.0 | |p |13351. | | 181.1 | | |01392 06286| +720059 |AE Sgr |190532.3-124149 |SR | 13.2 |< 15.4 | |p |32464. | | 431. | |M9 |04231 06286| +720060 |AF Sgr | | | | | | | | | | | | |N +720061 |AG Sgr |190734.2-285159 |M | 10.0 |< 14.0 | |p |35015. | | 359.25 | |M5e-M7e |00001 08953| +720062 |AH Sgr |190859.0-122118 |M | 11.0 |< 16.3 | |p |36360. | | 171.4 | |M5e-M7 |00001 06286| +720063 |AI Sgr |181645.1-213449 |EA/DS | 11.8 |< 15.0 | |p |21749.64 | | 8.7736 |11 | |01384 06286| +720064 |AK Sgr |182800.6-164533 |M | 10.8 |< 15.0 | |p |37520. | | 413.15 | |M5e-M9 |00001 07087| +720065 |AL Sgr *|191743.8-172845 |M | 10.5 | 14.7 | |p |32055. | | 78.26 |45 | |00001 01400| +720066 |AM Sgr |192243.0-320803 |M | 10.3 | 14.0 | |p |16665. | | 95. | |Me |00017 08667| +720067 |AN Sgr *|192702.5-183050 |M | 9.9 | 15.0 | |p |36465. | | 337.56 | |M5e-M8 |00001 02446| +720068 |AO Sgr |181213.6-295134 |SRB | 10.1 | 11.5 | |p | | | 143.3 | |M3e |00235 09423| +720069 |AP Sgr *|181302.5-230702 |DCEP | 6.52 | 7.41 | |V |36045.500 | | 5.057875 |22 |F6-G1 |09667 08953| +720070 |AQ Sgr |193419.0-162227 |SRB | 9.1 | 11.4 | |p | | | 199.6 | |C7,4(N3) |00235 08953| +720071 |AR Sgr *|185942.1-234227 |RVA | 9.1 | 13.5 | |p |21113. | | 87.87 | |F5e-G6 |06107 09467| +720072 |AS Sgr *|175507.0-214441 |CST: | 13.2 | | |p | | | | |e |07085 00478| +720073 |AT Sgr |180331.0-262829 |NA | 11.0 |< 16.5 | |p |15283. |1900 | | | |01610 00478| +720074 |AU Sgr *|180427.7-225958 |EA | 13.4 | 14.5 | |p | | | | | |01611 USNO | +720075 |AV Sgr *|180448.8-224357 |DCEP | 10.67 | 12.10 | |V |44016.75 | | 15.415 |30 | |00001 00570| +720076 |AW Sgr *|180828.9-230354 |EA: | 15.0 |< 16. | |p | | | | | |09811 09811| +720077 |AX Sgr |180826.5-183308 |SRD | 9.2 | 10.0 | |p | | | 350. : | |G8Ia-M2Ia |00235 08953| +720078 |AY Sgr *|182319.1-183429 |DCEP | 10.10 | 10.92 | |V |40768.53 | | 6.56959 |31 |F6-G1 |09812 01612| +720079 |AZ Sgr |182411.1-303548 |RVA | 11.4 | 12.2 | |p | | | 113.6 | |F5V: |06107 09467| +720080 |BB Sgr *|185059.9-201743 |DCEP | 6.55 | 7.30 | |V |36053.535 | | 6.63699 |34 |F6-G1 |02309 05464| +720081 |BC Sgr |185932.3-115819 | | 14.7 |< 16.0 | |p | | | | | |01607 GSC | +720082 |BD Sgr |190307.8-120659 |M | 14.6 |< 17.7 | |p |29507. | | 274. | | |04231 04231| +720083 |BE Sgr *|190447.7-145949 |RRAB | 13.7 | 14.8 | |p |27334.271 | | 0.4535724 |20 | |01400 01400| +720084 |BF Sgr |190456.4-115850 |M | 14.0 | 16.6 | |p |29725. | | 295. |49 | |04231 USNO | +720085 |BG Sgr |190934.1-142736 | | 14.8 | 16.0 | |p | | | | | |01606 USNO | +720086 |BH Sgr |191426.7-184927 |SR | 12.7 | 13.7 | |p | | | 100. | | |00001 00568| +720087 |BI Sgr |195023.0-155914 |M | 10.8 |< 16. | |p |28289. | | 335.79 | |Me |00001 06286| +720088 |BK Sgr |194942.3-183855 |EA | 14.3 | 16. | |p | | | | | |00266 2MASS| +720089 |BL Sgr |192858.5-294027 |M | 11.6 |< 17. | |p |19595. | | 288. | |Me |00256 CoD | +720090 |BM Sgr *|193831.3-362214 |M | 10.5 |< 13. | |p |15540. | | 402.7 | |M3e-M5e |00031 08953| +720091 |BN Sgr *|174705.4-280900 |EA | 9.25 | 10.1 | 9.37 |V |35370.493 | | 2.519653 |23 |F6 |03115 00024| +720092 |BO Sgr |194137.9-443638 |M | 12.5 |< 15.0 | |p |13376. | | 290. | |M5e |00017 GSC22| +720093 |BP Sgr |194720.5-442816 |M | 10.4 |< 13.5 | |p |28013. | | 241. | | |00016 08953| +720094 |BQ Sgr *|191414.9-361440 |EA/DS | 9.40 | 11.87 | |V |22224.378 | | 8.019537 |10 |A2n |03115 03611| +720095 |BR Sgr |182012.4-321254 |M | 11.3 | 17.4 | |p |35960. | | 302.8 |26 |M4e |00001 02447| +720096 |BS Sgr |182646.7-270820 |NB: | 9.2 |< 16. | |p |21427. |1917 | | | |01614 09467| +720097 |BT Sgr | | | | | | | | | | | | |=V1701 Sgr +720098 |BU Sgr |185802.4-223432 |M | 12. |< 16. | |p |25108. | | 313. | |M3e |00001 09467| +720099 |BV Sgr |190112.2-135744 | | 15.2 |< 16.2 | |p | | | | | |01606 USNO | +720100 |BW Sgr |190135.7-142428 | | 15.2 | 16.0 | |p | | | | | |01606 USNO | +720101 |BX Sgr |190443.6-135926 | | 15.0 | 16.0 | |p | | | | | |01606 USNO | +720102 |BY Sgr |191115.2-133021 | | 15.0 | 15.8 | |p | | | | | |01606 USNO | +720103 |BZ Sgr |195838.5-135654 |CW: | 11.7 | 13.4 | |p | | | | |G:ea |00266 BD | +720104 |CC Sgr *|185328.1-360455 |CEP | 14.5 | 15.5 | |p |23635.55 | | 8.034 | | |01616 USNO | +720105 |CD Sgr *|185329.8-360729 |M | 10.6 | 17.0 | |p |28440. | | 263.08 | | |00001 GSC22| +720106 |CE Sgr *|185426.6-363050 |M: | 14.0 |< 16.0 | |p |12655. | | 90.4 | | |01616 GSC22| +720107 |CF Sgr *|185952.5-352707 |RRAB | 14.8 | 15.8 | |p |23990.332 | | 0.5681240 |16 | |00244 00244| +720108 |CG Sgr *|190016.5-354607 |CEP | 14.0 | 14.5 | |p |14127. | | 64.1 |36 | |01617 GSC | +720109 |CH Sgr |185917.4-132335 | | 15.7 | 16.5 | |p | | | | | |01618 2MASS| +720110 |CI Sgr |185946.2-133514 | | 15.2 | 16.0 | |p | | | | | |01618 GSC22| +720111 |CK Sgr |190109.5-145942 |M | 13.5 |< 16.0 | |p |28781. | | 242. | | |04233 04233| +720112 |CL Sgr |190114.0-122944 | | 15.2 | 16.0 | |p | | | | | |01607 GSC | +720113 |CM Sgr |190220.5-154836 | | 14.7 | 15.4 | |p | | | | | |01618 GSC22| +720114 |CN Sgr |190253.3-131146 |SRA | 14.5 | 16.4 | |p |23267. | | 276.4 |48 | |01392 GSC22| +720115 |CO Sgr |190412.0-125242 |SRA | 13.4 | 14.8 | |p |26595. | | 233. | | |00742 06286| +720116 |CP Sgr |190439.6-122043 | | 15.2 | 15.8 | |p | | | | | |01618 GSC22| +720117 |CQ Sgr |190459.7-135907 | | 15.7 | 16.2 | |p | | | | | |01618 GSC22| +720118 |CR Sgr |190536.0-121916 | | 15.4 | 16.0 | |p | | | | | |01618 GSC22| +720119 |CS Sgr |190541.9-122234 | | 15.2 |< 16.5 | |p | | | | | |01618 GSC22| +720120 |CT Sgr |190550.8-135315 |M | 14.6 |< 17.0 | |p |16018. | | 292. | | |01618 GSC22| +720121 |CU Sgr |190633.4-121628 | | 15.4 |< 16.2 | |p | | | | | |01607 USNO | +720122 |CV Sgr |190637.5-122042 |M | 14.1 |< 16.0 | |p |23343. | | 226. | | |01392 USNO | +720123 |CW Sgr |190647.8-115434 | | 15.2 | 16.0 | |p | | | | | |01607 USNO | +720124 |CX Sgr |190839.9-140624 |M | 13.4 |< 16.7 | |p |17418. | | 211.4 | | |01618 06286| +720125 |CY Sgr |190933.3-152042 |M | 13.1 |< 16.0 | |p |28454. | | 262. | | |04233 04233| +720126 |CZ Sgr |190952.6-141026 | | 14.8 | 15.5 | |p | | | | | |01618 GSC22| +720127 |DD Sgr |191039.3-121453 | | 15.0 | 16.2 | |p | | | | | |01618 GSC22| +720128 |DE Sgr |191227.1-122727 | | 15.2 | 16.0 | |p | | | | | |01607 USNO | +720129 |DF Sgr |191840.0-190330 |M | 13.1 | 16.0 | |p |28693. | | 125.1 | | |04233 04233| +720130 |DG Sgr |193211.2-313242 |M | 12.0 |< 17. | |p |14192. | | 286. | |Me |01619 UCAC2| +720131 |DH Sgr *|193226.9-312731 | | 13.5 | 15.0 | |p | | | | | |01620 GSC | +720132 |DI Sgr *|193427.8-301436 |M | 15.5 : |< 17.5 | |p |22534. | | 475. | | |00031 USNO | +720133 |DK Sgr *|193550.8-293800 |S: | 13.0 | 14.0 | |p | | | | | |01619 GSC22| +720134 |DL Sgr |193610.5-323640 |SR: | 13.0 | 17. : | |p |12640. | | 80. : | |Me |00017 GSC | +720135 |DM Sgr *|193635.3-314509 | | 12.7 | 16.0 | |p | | | | | |01620 UCAC2| +720136 |DN Sgr |193656.1-322044 |M | 13.0 : |< 17. | |p |23567. | | 381.5 | | |00031 USNO | +720137 |DO Sgr *|193654.0-312204 |SR | 13.0 | 15.0 | |p |12675. | | 217. | | |01619 GSC | +720138 |DP Sgr *|193816.4-321648 |M | 11.0 |< 17. | |p |23704. | | 278.3 | | |00031 GSC | +720139 |DQ Sgr |194043.8-323610 |M | 14.5 |< 17. | |p |15310. | | 179.5 | | |00031 GSC22| +720140 |DR Sgr *|194141.9-295406 | | 13.8 | 14.8 | |p | | | | | |01620 GSC | +720141 |DS Sgr *|194244.2-295437 | | 15.3 |< 16.0 | |p | | | | | |01620 GSC22| +720142 |DT Sgr |195305.8-295610 | | 13.9 |< 17.5 | |p | | | | | |01620 08667| +720143 |DU Sgr |180231.1-183901 |INS: | 13.2 |< 16. | |p | | | | |F1: |00121 06286| +720144 |DV Sgr *|183936.3-224044 |EA/SD | 10.4 | 11.5 | |p |31281.215 | | 1.862846 |18 |A0 |00001 03612| +720145 |DW Sgr |190209.2-171245 |M | 10.8 |< 13.7 | |p |35036. | | 174.5 |46 |Me |01694 06286| +720146 |DX Sgr |190605.8-125525 |M | 13.8 |< 16.5 | |p |20359. | | 265.5 | | |01392 06286| +720147 |DY Sgr |191032.0-125633 |SRA | 13.7 | 16.1 | |p |16604. | | 142.4 |41 | |01392 06286| +720148 |DZ Sgr |191148.9-140029 | | 13.6 |< 16. | |p | | | | |M6 |01469 06286| +720149 |EE Sgr |191211.2-142416 |M | 13.3 |< 16.0 | |p |28420. | | 313. | | |04233 04233| +720150 |EF Sgr |191243.1-145656 | | 13.7 |< 16. | |p | | | | | |01469 06286| +720151 |EG Sgr *|191423.5-141114 |EA/SD | 11.2 | 12.7 | |p |27395.771 | | 2.486175 |13 |A0 |00001 00279| +720152 |EH Sgr |191436.0-160458 |M | 12.9 |< 16.0 | |p |28781. | | 232. | | |04233 04233| +720153 |EI Sgr |191430.4-123505 | | 14.2 | 16. | |p | | | | | |01469 GSC | +720154 |EK Sgr |191552.1-115034 |M | 12.5 |< 14.5 | |p |24714. | | 238.0 | |Me |00001 06286| +720155 |EL Sgr |191622.5-134456 |SR | 13.0 | 14.4 | |p |23630. :| | 300. : | | |01621 GSC22| +720156 |EM Sgr |191713.9-124901 |M | 12.7 |< 15.5 | |p |23630. | | 370. : | | |00001 06286| +720157 |EN Sgr |192242.1-135956 |M | 11.5 |< 15. | |p |24747. | | 254.5 | | |00001 06286| +720158 |EO Sgr |192328.7-145341 |SRA | 13.5 | 15.2 | |p |27358. | | 250. | | |04233 04233| +720159 |EP Sgr |192531.6-131858 |M | 12.8 |< 17. | |p |27280. | | 243.3 | |M6 |01623 06286| +720160 |EQ Sgr |192625.7-140625 |L: | 13.0 | 16.5 | |p | | | | | |01621 06286| +720161 |ER Sgr |192631.7-150248 |M | 14.0 |< 17. | |p |23640. :| | | | |01621 06286| +720162 |ES Sgr |192634.6-124043 |M | 12.7 |< 17. | |p |29462. | | 201.5 | | |00001 06286| +720163 |ET Sgr |192704.4-145023 |M | 12.8 |< 15. | |p |23630. | | 220.6 | |Me |00001 06286| +720164 |EU Sgr |192828.6-133204 | | 13.5 | 15. | |p | | | | | |01469 06286| +720165 |EV Sgr |193312.2-144809 |M | 13.5 |< 16.5 | |p | | | 230. : | | |01621 06286| +720166 |EW Sgr |193459.6-123548 |M | 12.0 |< 16. | |p |30193. | | 271.3 | | |00001 06286| +720167 |EX Sgr |193523.2-140406 |M | 12.0 |< 16. | |p |29858. | | 218.1 | | |01623 06286| +720168 |EY Sgr |193722.6-120835 |M | 13.3 | 16.3 | |p |42582. | | 117.0 |50 | |09568 06286| +720169 |EZ Sgr |193752.2-140808 |M | 12.0 | 16. : | |p |24686. | | 248.6 | |Me |01623 06286| +720170 |FF Sgr |193951.6-123610 | | 14.0 | 15.5 | |p | | | | | |01469 06286| +720171 |FG Sgr |194439.7-122402 |M | 11.9 | 16.0 | |p |25853. | | 232.5 | |M6: |01623 06286| +720172 |FH Sgr |195428.3-160139 | | 12.8 |< 15.5 | |p | | | | | |01469 USNO | +720173 |FI Sgr |195656.8-114805 | | 13.0 |< 15.5 | |p | | | | | |01469 06286| +720174 |FK Sgr |174548.1-160709 |M | 12.5 |< 16. | |p |29819. | | 180.2 | |M7e-M9: |01623 06286| +720175 |FL Sgr |180030.2-343612 |NA | 8.3 |< 13. | |p |23960. |1924 | | | |01624 06286| +720176 |FM Sgr |181718.3-233828 |NA | 8.2 : | 16.5 | |p |24727. :|1926 | | | |01625 05464| +720177 |FN Sgr |185354.8-185941 |ZAND | 9. | 13.9 | |p | | | | |pec(e) |01060 06478| +720178 |FO Sgr |185831.5-350340 |M | 11.3 |< 16. | |p |13805. | | 355. | | |00246 GSC | +720179 |FP Sgr |190522.2-344934 |M | 13.3 |< 17. | |p |25460. | | 229. | | |03516 03516| +720180 |FQ Sgr |190736.7-170118 |M | 10.1 |< 16.0 | |p |25740. | | 434. | |M8e |04233 04233| +720181 |FR Sgr |194844.3-155823 | | 12.5 | 14.0 | |p | | | | | |01627 06286| +720182 |FS Sgr |195359.7-173038 |M | 11.0 |< 16. | |p |24718. | | 255.6 | |M7: |00001 06286| +720183 |FT Sgr |180031.9-343830 |M | 11.5 | 17.0 : | |p |28645. | | 250.9 | |Me |00001 00296| +720184 |FU Sgr |180059.4-343642 |M | 13.7 |< 16.5 | |p |29548. | | 229.6 | | |00001 02448| +720185 |FV Sgr *|180220.1-345415 |M | 13.9 |< 16.5 | |p |34212. | | 266.78 | | |00001 02447| +720186 |FW Sgr |180911.4-324026 | | 14.0 | 16.0 | |p | | | | | |01628 06286| +720187 |FX Sgr |181028.1-365322 |M | 12.5 | 16.5 | |p |24030. | | 178.0 | | |00251 06286| +720188 |FY Sgr |181113.7-330542 |M | 12.6 |< 16.5 | |p |34170. | | 300.5 | |M4e |00001 02447| +720189 |FZ Sgr |181134.1-331310 | | 13.4 |< 17.1 | |p |24412. :| | | | |00282 06286| +720190 |GG Sgr *|181246.1-363907 |M | 13.6 | 18.8 | |p |26110. | | 280. | | |00251 06286| +720191 |GH Sgr |181543.9-341125 |M | 12.4 |< 16.5 | |p |26550. | | 336. | |Me |00251 GSC22| +720192 |GI Sgr |181653.2-362750 |M | 11.7 | 17.5 | |p |36729. | | 245.91 | | |00001 06286| +720193 |GK Sgr *|181720.4-332053 |CEP: | 13.9 | 15.0 | |p |28456.1 | | 14.867 |45 | |05590 05590| +720194 |GL Sgr |181946.5-351721 |M | 14.1 |< 17.5 | |p |36792. | | 223.0 | | |05869 USNO | +720195 |GM Sgr |181921.5-252538 |NL: | 12.4 |< 17. | |B | | | | | |08519 08519| +720196 |GN Sgr |182153.1-242754 |M | 15.1 |< 17. | |p | | | 275. | | |00249 GSC22| +720197 |GO Sgr |182215.1-255458 |M | 13.0 |< 17. | |p |26200. | | 243. | |M4e-M8e |04221 08588| +720198 |GP Sgr |182217.0-245835 |M | 14.0 | 17.0 | |p |40080. | | 257.5 | | |08611 08611| +720199 |GQ Sgr |182240.7-245327 |M | 14.0 | 16.5 | |p |26560. | | 156. : | |M4 |04218 04218| +720200 |GR Sgr |182258.5-253447 |NA: | 7.5 : | 16.6 | |p |23906. -|1924 | | | |01629 08953| +720201 |GS Sgr |182301.8-235716 |SRB | 13.6 | 16.0 | |p | | | 360. : | |M6 |06272 06272| +720202 |GT Sgr |182337.3-244959 |M | 14.5 |< 17. | |p |23668. | | 276. | | |00249 GSC22| +720203 |GU Sgr *|182415.6-241526 |RCB | 11.33 | 15.0 | |B | | | | |C(R0) |02569 05464| +720204 |GV Sgr |182504.0-261656 |E | 14.4 | 15.6 | |p | | | | | |00249 GSC | +720205 |GW Sgr |182524.5-250206 |RV: | 13.8 | 15.6 | |p | | | 119. : | | |02569 GSC | +720206 |GX Sgr |182526.3-244125 |M | 13.8 |< 16.3 | |p |32060. | | 262. | | |04221 GSC22| +720207 |GY Sgr |182539.2-272453 |M | 13.0 |< 16.5 | |p |30240. | | 215. | |M4 |02515 GSC22| +720208 |GZ Sgr |182535.9-234501 |M | 14.3 |< 16.5 | |p |26590. | | 215. | |M7 |04218 USNO | +720209 |HH Sgr *|182551.2-251127 |M | 16.0 |< 17. | |p |27631. | | 148. : | | |04409 04409| +720210 |HI Sgr |182601.2-261615 | | 13.2 | 14.4 | |p | | | | | |00249 09467| +720211 |HK Sgr |182613.8-243852 |M | 13.4 | 16.4 | |p |32380. | | 293. | |M7-M8 |04221 USNO | +720212 |HL Sgr |182632.8-265549 | | 14.0 | 16.5 | |p | | | | | |01628 GSC22| +720213 |HM Sgr |182632.1-261103 |M | 12.6 |< 16.5 | |p |38608. | | 290.1 | | |08612 08612| +720214 |HN Sgr |182637.0-261750 |M | 13.1 |< 16.0 | |p |36400. | | 319.8 | | |08612 08612| +720215 |HO Sgr |182655.7-254048 |M | 13.5 |< 16.0 | |p |26160. | | 437. : | |M10 |04218 GSC22| +720216 |HP Sgr |182705.0-262338 |M | 13.4 |< 15.8 | |p |26130. | | 231. | | |04221 09467| +720217 |HQ Sgr |182741.0-240234 |M | 14.7 |< 16.5 | |p |25750. | | 259. | | |04218 04218| +720218 |HR Sgr |182822.2-281428 | | 12.8 |< 17.0 | |p | | | | | |01628 09467| +720219 |HS Sgr |182803.5-213425 |NB | 10.0 : | 16.5 | |p |15264. +|1900 | | | |01629 08588| +720220 |HT Sgr |182823.2-254054 |SR | 13.5 | 15.0 : | |p |26100. | | 227. : | |M4-M8 |04218 USNO | +720221 |HU Sgr |182903.1-250438 |M | 13.5 |< 16.0 | |p |33838. | | 260. | |M7 |04221 GSC22| +720222 |HV Sgr |182941.3-262644 |M | 13.7 |< 16.0 | |p |27610. | | 286. | |M2 |02515 09467| +720223 |HW Sgr |182947.5-245033 |E: | 13.5 | 14.4 | |p | | | | | |00249 GSC | +720224 |HX Sgr |183022.4-264635 |SRA | 13.7 | 15.9 | |p |25750. | | 209. | | |04221 09467| +720225 |HY Sgr |183059.1-245544 |M | 13.8 |< 17. | |p | | | 339. : | | |00249 USNO | +720226 |HZ Sgr |183103.4-243701 |RV: | 13.6 |< 15.9 | |p |24380. | | 163. : | | |04218 04218| +720227 |II Sgr |183133.9-332853 |M | 13.9 | 18.4 | |p |36050. :| | 250. : | | |05869 GSC | +720228 |IK Sgr |183132.7-244738 |M | 13.3 | 16.5 | |p |26180. | | 247.5 | |M7 |02449 06278| +720229 |IL Sgr |183149.5-253936 |M | 13.8 |< 16.3 | |p |24380. | | 215. | |M2 |04221 USNO | +720230 |IM Sgr |183202.3-251323 |M | 11.8 |< 17. | |p |34985. | | 276.0 | |M9e |00001 06278| +720231 |IN Sgr |183221.2-274709 |M | 12.2 |< 16.2 | |p |27220. | | 210. | |Me |02515 GSC | +720232 |IO Sgr |183250.2-250803 |M | 12.5 |< 15.5 | |p |29050. | | 210. | | |02515 2MASS| +720233 |IP Sgr |183305.8-263511 |M | 13.9 |< 16.0 | |p |25740. | | 418. | |M3 |04218 GSC22| +720234 |IQ Sgr |183325.8-250611 |M | 13.0 | 16.0 | |p |26590. | | 335. | |M7-M8 |00842 08527| +720235 |IR Sgr *|183339.9-252051 |RR | 13.4 | 15.0 | |p | | | 0.347 : | | |01628 02517| +720236 |IS Sgr |183348.1-250902 |M | 13.4 |< 16.0 | |p |25440. | | 493. | |M8-M9 |02515 GSC | +720237 |IT Sgr |183433.6-240805 | | 14.5 | 16.0 | |p | | | | | |01628 USNO | +720238 |IU Sgr |183525.4-311747 |M | 12.3 | 17.6 | |p |41100. | | 268.9 | |Me |07087 06274| +720239 |IV Sgr |183536.3-240911 |M | 14.0 |< 16.0 | |p |23950. | | 226. : | |M6 |04221 USNO | +720240 |IW Sgr |183618.9-302950 |M | 11.5 |< 16.3 | |p |34163. | | 345.2 | |M8e |02431 02447| +720241 |IX Sgr |183644.5-322543 |M | 14.4 |< 18.3 | |p |36804. | | 167.3 | | |00001 02447| +720242 |IY Sgr |183622.0-230440 |SRA | 13.1 | 15.0 : | |p |23908. | | 358. : | | |04218 GSC22| +720243 |IZ Sgr |183631.3-205916 | | 13.6 |< 16.5 | |p | | | | |M6 |04218 04218| +720244 |KK Sgr |183733.1-333701 |RRAB | 14.6 | 16.0 | |p |35658.832 | | 0.59166 |16 | |05869 GSC22| +720245 |KL Sgr |183803.6-235410 |M | 13.2 |< 16.5 | |p |29430. | | 236. | |M5 |02515 GSC | +720246 |KM Sgr |183849.0-235303 |M | 13.7 | 16.0 : | |p |27270. | | 255. | |M7 |04221 GSC22| +720247 |KN Sgr |183940.8-245503 |M | 13.7 |< 16.2 | |p |27230. | | 250. | |M4-M8 |04220 GSC22| +720248 |KO Sgr *|184028.4-204007 |M: | 12.7 | 15.8 | |p |24380. | | 312. | | |04221 04221| +720249 |KP Sgr |184142.9-243153 | | 13.8 | 15.5 | |p | | | | | |01628 USNO | +720250 |KQ Sgr |184239.8-310234 |S: | 13.5 | 16.5 | |p | | | | | |00256 GSC | +720251 |KR Sgr |184257.8-263728 | | 13.6 | 15.0 | |p | | | | | |01628 USNO | +720252 |KS Sgr |184259.0-222224 |M | 13.5 |< 16.5 | |p |25850. | | 290. | | |04218 08613| +720253 |KT Sgr |184315.2-261152 | | 14.0 | 15.5 | |p | | | | | |01628 USNO | +720254 |KU Sgr |184337.2-312446 |M | 13.2 | 15.6 | |p |34159. | | 138.23 |43 |Me |02431 02447| +720255 |KV Sgr |184429.4-231939 |M | 12.6 |< 15.6 | |p |32380. | | 230. | | |02515 08588| +720256 |KW Sgr |175200.7-280121 |SRC | 11.0 | 13.2 | |p | | | 670. | |M0I-M4Ia |00478 02448| +720257 |KX Sgr |180034.1-354303 |I | 14.0 | 15.6 | |p | | | | | |00251 06286| +720258 |KY Sgr |180121.1-262445 |NA | 10.5 |< 16.5 | |p |24666. :|1926 | | | |01630 00478| +720259 |KZ Sgr |180236.9-362832 |M | 14.0 |< 16.5 | |p |24030. | | 255.5 | | |00251 06286| +720260 |LL Sgr |181842.2-362015 |M | 15.0 |< 18.0 | |p |25770. | | 316.5 | | |00251 06286| +720261 |LM Sgr |181845.1-362204 |M | 11.0 |< 17.0 | |p |24740. | | 418. | | |00251 06286| +720262 |LN Sgr *|182315.9-332633 |M | 10.5 |< 17. | |p |13705. | | 194.3 | | |00017 08073| +720263 |LO Sgr |182633.9-265656 |M | 13.3 | 16.0 : | |p |26120. | | 178. | | |04221 09467| +720264 |LP Sgr |182800.9-274025 |M | 12.4 |< 16.0 | |p |28774. | | 222. | |Me |00001 06278| +720265 |LQ Sgr |182829.0-275519 |NA | 10. : |< 16.5 | |p |14189. :|1897 | | | |09817 08953| +720266 |LR Sgr |183207.9-292146 |M | 12.9 |< 17. | |p |41440. | | 275. | |M3IIIe-M7 |07086 07590| +720267 |LS Sgr |183235.0-253027 |M | 13.7 |< 16. | |p |25830. | | 214.5 | |M7 |02515 USNO | +720268 |LT Sgr |183250.3-251802 |M | 12.3 |< 15.6 | |p |29740. | | 262. | |M3 |02515 UCAC2| +720269 |LU Sgr |183402.3-253317 |M | 12.8 |< 16.0 | |p |33010. | | 315. | |M9 |02515 USNO | +720270 |LV Sgr |183508.1-295622 | | 14.5 | 16.0 | |p | | | | | |01631 GSC22| +720271 |LW Sgr |183543.8-274046 |M | 13.8 |< 16.0 | |p |26100. | | 299. | | |04221 USNO | +720272 |LX Sgr |183611.8-273611 | | 15.0 | 16.5 | |p | | | | | |01633 GSC22| +720273 |LY Sgr |183918.1-285316 |M | 13.1 | 15.8 | |p |34213. | | 150. | | |01634 USNO | +720274 |LZ Sgr *|183920.3-274939 |SRA | 13.5 : | 15.2 : | |p |25474. | | 214. | | |04222 04222| +720275 |MM Sgr |183924.2-281414 |M | 13.2 |< 17.0 | |p |30903. | | 202.3 | | |05917 USNO | +720276 |MN Sgr |184013.3-280222 |M | 13.5 | 16.0 | |p |27221. | | 283. | | |05594 USNO | +720277 |MO Sgr |184021.1-283500 |M | 12.0 | 15.5 | |p |28016. | | 298.8 | |Me |00001 GSC | +720278 |MP Sgr |184038.4-261454 |M | 13.1 |< 16.0 | |p |26500. | | 149. | | |02515 GSC | +720279 |MQ Sgr |184112.7-280337 |M | 13.3 | 16.5 | |p |30553. | | 218. | | |01634 GSC | +720280 |MR Sgr |184121.3-272439 |M | 13.5 |< 16.0 | |p |26410. | | 227. | | |04220 USNO | +720281 |MS Sgr |184204.5-275025 |M | 13.0 |< 16.5 | |p |37490. | | 270. | | |06279 06279| +720282 |MT Sgr |184306.4-272048 | | 15.5 | 16.5 | |p | | | | | |01632 USNO | +720283 |MU Sgr |184421.0-280737 |M | 12.3 | 17. | |p |21066. | | 380. | | |00256 GSC22| +720284 |MV Sgr *|184432.0-205713 |RCB | 12.0 | 16.05 | |B | | | | |B2p(HDCe) |02569 08613| +720285 |MW Sgr *|184457.5-273830 |M | 12.8 |< 16.0 | |p |36085. | | 203.5 | | |00001 06272| +720286 |MX Sgr |184451.0-233008 |M | 13.8 | 16.3 | |p |25400. | | 228. | | |02515 GSC | +720287 |MY Sgr |184506.8-282156 |M | 13.2 | 17. | |p |18882. | | 262. | | |00256 GSC | +720288 |MZ Sgr |184505.5-261929 |EB/DS | 14.5 | 15.7 | |p |26093.6 | | 14.844 | | |04220 USNO | +720289 |NN Sgr |184632.3-282442 | | 14.5 | 16.0 | |p | | | | | |01631 GSC | +720290 |NO Sgr |184647.0-193625 |M | 13.0 |< 15.5 | |p |36050. | | 296. | | |05594 06286| +720291 |NP Sgr *|184717.9-202127 |LB: | 13.5 | 15.5 | |p | | | | |M5 |04218 04218| +720292 |NQ Sgr |184728.3-241522 |M | 14.5 |< 15.5 | |p |36050. | | 317. | | |04218 USNO | +720293 |NR Sgr |184732.8-235656 |SR | 12.5 |< 15.5 | |p |25900. | | 183. | |C |05594 00245| +720294 |NS Sgr |184756.4-295330 | | 15.5 |< 16.5 | |p | | | | | |01633 USNO | +720295 |NT Sgr |184848.8-220920 |M | 13.2 | 16.5 | |p |25420. | | 123.7 | |Me |04218 04233| +720296 |NU Sgr |184919.8-224450 |SR | 14.3 | 15.1 | |p | | | 86. : | | |01400 01400| +720297 |NV Sgr |185045.1-273314 | | 15.5 | 16.5 | |p | | | | | |01631 USNO | +720298 |NW Sgr |184927.9-200441 |SRA | 13.3 | 15.0 | |p |32710. | | 161.5 | | |04233 04233| +720299 |NX Sgr |185034.4-233608 | | 12.5 | 16.0 | |p | | | | | |01632 GSC | +720300 |NY Sgr |185034.9-233617 |M | 13.7 | 16.5 | |p |25874. | | 159. | | |00245 00245| +720301 |NZ Sgr |185143.4-290036 |M | 13.4 |< 16.5 | |p |25815. | | 292. | | |00245 00245| +720302 |OO Sgr |185151.0-231337 |SRA | 13.4 |< 16.0 | |p |32770. | | 187. | | |04233 04233| +720303 |OP Sgr |185323.6-262012 |M | 12.5 | 16.5 | |p |26260. :| | 303. : | |Me |00245 00245| +720304 |OQ Sgr |185319.0-241522 |M | 13.0 | 16.0 | |p |26233. | | 281. | |Me |00245 00245| +720305 |OR Sgr |185349.0-272058 |M | 13.6 |< 16.5 | |p |26176. | | 242. | | |00245 00245| +720306 |OS Sgr |185356.7-225757 | | 14.8 |< 16.5 | |p | | | | | |01633 USNO | +720307 |OT Sgr |185411.9-271457 |SR | 14.5 |< 15.5 | |p |27620. | | 182. : | | |03516 03516| +720308 |OU Sgr |185426.4-270246 |M | 12.8 | 16.5 | |p |34988. | | 279.3 | |Me |00001 00245| +720309 |OV Sgr |185440.5-304301 |M | 12.9 |< 15.6 | |p |25785. | | 226. | |Me |00245 00245| +720310 |OW Sgr *|185418.5-194916 |RRAB | 14.2 | 15.2 | |p |26509.326 | | 0.4959870 |17 | |01400 01400| +720311 |OX Sgr |185457.1-252630 |M | 12.0 |< 17.0 | |p |25817. | | 348. | |M2e |00245 00245| +720312 |OY Sgr |185511.7-273306 | | 15.5 | 16.2 | |p | | | | | |01632 USNO | +720313 |OZ Sgr |185535.8-291308 | | 15.8 | 16.5 | |p | | | | | |01631 USNO | +720314 |PP Sgr |185548.5-202501 |RRAB | 14.0 | 15.1 | |p |26571.338 | | 0.4549867 |12 | |01400 01400| +720315 |PQ Sgr |185611.3-290355 | | 14.5 | 16.0 | |p | | | | |C(R) |01631 GSC22| +720316 |PR Sgr |185637.1-250123 |M | 14.1 |< 15.5 | |p |25870. | | 169. | | |03516 03516| +720317 |PS Sgr |185729.2-254104 | | 15.0 | 16.2 | |p | | | | | |01633 USNO | +720318 |PT Sgr |185834.2-303208 |M | 13.6 |< 16.5 | |p |25794. | | 177. | | |00245 00245| +720319 |PU Sgr |185832.7-211021 |SRA | 14.0 | 16.0 | |p |32770. | | 221. | | |04233 04233| +720320 |PV Sgr |185838.6-214415 | | 13.8 | 16.0 | |p | | | | | |01633 GSC | +720321 |PW Sgr |185851.7-254000 |M | 13.9 |< 16.5 | |p |25730. | | 334. | | |00245 00245| +720322 |PX Sgr |185916.1-270727 |M | 14.2 |< 17.0 | |p |25860. | | 245. | |Me |03516 03516| +720323 |PY Sgr |190053.3-280705 |M | 13.5 |< 16.0 | |p |26156. | | 247. | | |00245 00245| +720324 |PZ Sgr |190054.6-253252 | | 15.0 | 16.5 | |p | | | | | |01633 USNO | +720325 |QQ Sgr |190143.0-281245 | | 15.0 |< 16.0 | |p | | | | | |01633 USNO | +720326 |QR Sgr |190130.9-211934 |SRA | 13.6 | 15.3 | |p |32820. | | 207.6 | | |04233 04233| +720327 |QS Sgr |190229.1-274019 |M | 11.6 |< 15.0 | |p |30210. | | 158.01 | |Kep-Me |00235 02460| +720328 |QT Sgr |190301.0-292717 | | 15.0 | 16.0 | |p | | | | | |01633 USNO | +720329 |QU Sgr |190315.3-221807 |M | 13.8 |< 16.0 | |p |27640. | | 289. | | |04233 04233| +720330 |QV Sgr |190324.3-233905 | | 15.0 | 16.5 | |p | | | | | |01633 USNO | +720331 |QW Sgr |190336.5-271156 |SR | 15.3 | 17. : | |p |18916. | | 220. | | |00256 01613| +720332 |QX Sgr |190347.9-274712 |M | 13.4 |< 16.5 | |p |25892. | | 192. | | |00245 00245| +720333 |QY Sgr |190348.8-265902 |M | 11.1 |< 15.8 | |p |29100. | | 192. | |Me |00245 00245| +720334 |QZ Sgr |190413.8-310536 |M | 11.8 |< 16. | |p |25748. | | 408. | |Me |00245 00245| +720335 |V0335 Sgr |190402.8-234529 | | 15.2 |< 16.5 | |p | | | | | |01631 USNO | +720336 |V0336 Sgr |190538.4-221105 |EA/SD | 14.0 | 15.1 | |p |26176.483 | | 1.284355 |16 *| |01400 01400| +720337 |V0337 Sgr |190658.8-224412 |M | 12.7 |< 16.5 | |p |28362. | | 216.5 | | |04233 04233| +720338 |V0338 Sgr |190838.2-313411 |M | 12.2 |< 16.2 | |p |25759. | | 176. | |Me |00245 00245| +720339 |V0339 Sgr |190909.3-232438 | | 12.0 |< 16.5 | |p | | | | | |01631 USNO | +720340 |V0340 Sgr |190940.2-312500 | | 13.2 | 15.0 | |p | | | | | |01632 CoD | +720341 |V0341 Sgr |190938.6-215151 |M | 12.8 |< 16.0 | |p |28450. | | 233. | | |04233 04233| +720342 |V0342 Sgr |191236.0-325100 |M | 13.8 |< 15.5 | |p |25490. | | 372. | |M9 |03516 GSC | +720343 |V0343 Sgr |191432.9-342114 |RRAB | 14.5 | 15.8 | |p |23991.294 | | 0.4500230 |14 | |00244 00244| +720344 |V0344 Sgr |191612.1-311637 |M | 10.5 | 14.2 | |V |54963. | | 133. | | |00001 00245| +720345 |V0345 Sgr |192022.1-332500 |M | 12.0 | 16.7 | |p |20748. | | 141. | |Me |00256 08667| +720346 |V0346 Sgr |192122.7-293050 | | 15.0 | 16.5 | |p | | | | | |01632 GSC | +720347 |V0347 Sgr |193244.8-321415 |M | 12.5 |< 16.5 | |p |20043. | | 209. | | |00256 | +720348 |V0348 Sgr *|184020.0-225430 |* | 11.2 | 18.4 | |V | | | | |pec(HDCe)/WC10: |09825 00002| +720349 |V0349 Sgr |184234.9-215957 |M | 12.5 |< 16.4 | |p |25750. | | 231. | |Me |02449 00744| +720350 |V0350 Sgr *|184517.5-203851 |DCEP | 7.08 | 7.83 | |V |35317.227 | | 5.15424 |28 |F5-G2Ib |02309 10202| +720351 |V0351 Sgr |185646.4-164558 |M | 12.6 |< 16.0 | |p |28668. | | 232. | | |04233 00744| +720352 |V0352 Sgr |190216.9-205208 | | 11.8 | 13.1 | |p | | | | | |00744 00744| +720353 |V0353 Sgr |191155.9-194125 | | 10.8 | 12.2 | |p | | | | |MA |03749 00744| +720354 |V0354 Sgr *|191323.4-182900 |EA/DS | 11.2 | 13.5 | |p |31281.34 | | 8.57928 |08 |F8 |00279 05449| +720355 |V0355 Sgr |182422.4-165457 |ISA: | 9.0 | 10.6 | |p | | | | |A7V |03725 08953| +720356 |V0356 Sgr *|184752.3-201628 |EA/DS: | 6.84 | 7.66 | 7.24 |V |33900.827 | | 8.89610 |12 |B3V+A1II |02185 05464| +720357 |V0357 Sgr |190035.3-151214 |SRA | 13.4 | 15.2 | |p |28410. | | 232. | | |04233 04233| +720358 |V0358 Sgr |190045.3-152751 |M | 13.5 |< 15.5 | |p |18525. | | 202. | | |00001 06286| +720359 |V0359 Sgr |190351.6-122551 |LB | 10.8 | 12.7 | |p | | | | |K-M |00270 | +720360 |V0360 Sgr |193542.7-124731 |SR: | 12.3 | 14.8 | |p |29814. | | 165. | |M7 |01623 06286| +720361 |V0361 Sgr |194438.1-134506 |M | 11.8 | 16.5 | |p |30188. | | 363.4 | |M3III |01004 09827| +720362 |V0362 Sgr |194448.9-151121 | | 14.6 |< 16. | |p | | | | | |01330 USNO | +720363 |V0363 Sgr |191116.3-295001 |NA | 8.0 : |< 16. | |p |25096. |1927 | | |pec(NOVA) |01637 08953| +720364 |V0364 Sgr |183818.9-324740 |RRAB | 14.2 | 15.6 | |p |23877.550 | | 0.4779528 |15 | |00243 00243| +720365 |V0365 Sgr |184113.6-352507 |RRAB | 15.2 | 16.3 | |p |35658.919 | | 0.4873135 |14 | |00001 01638| +720366 |V0366 Sgr *|184141.9-323501 |RRAB | 13.72 | 15.3 | |B |35636.873 | | 0.4779777 |18 | |00001 00705| +720367 |V0367 Sgr *|184203.2-322929 |RRAB | 14.2 | 15.0 | |p |24294.465 | | 0.6332400 |16 | |00243 00243| +720368 |V0368 Sgr |184302.4-360142 |RRAB | 15.2 | 16.1 | |p |23878.545 | | 0.6091309 |20 | |00243 00243| +720369 |V0369 Sgr |184304.6-345943 |RRAB | 15.3 | 15.8 | |p |23987.255 | | 0.5800683 |28 | |00243 00243| +720370 |V0370 Sgr |184300.2-331120 |RRAB | 14.2 | 15.4 | |p |26562.198 | | 0.4974313 |20 : | |01638 00243| +720371 |V0371 Sgr |184328.4-334801 |RRAB | 14.4 | 15.4 | |p |23879.520 | | 0.4649770 |14 | |00243 00243| +720372 |V0372 Sgr |184357.3-325301 |RRAB | 13.8 | 15.0 | |p |25553.260 | | 0.4374526 |14 | |00705 00705| +720373 |V0373 Sgr |184600.1-332607 |RRAB | 14.9 | 15.8 | |p |23878.568 | | 0.4558863 |23 | |00243 00243| +720374 |V0374 Sgr |184623.4-365150 |RRAB | 14.9 | 16.0 | |p |23989.286 | | 0.5885975 |15 | |00243 00243| +720375 |V0375 Sgr |184726.1-361511 |RRAB | 14.6 | 15.7 | |p |23881.557 | | 0.4508955 |17 | |00243 00243| +720376 |V0376 Sgr |184823.8-303704 |RRC | 14.4 | 14.8 | |p |26118.884 | | 0.3007673 |50 | |01639 01639| +720377 |V0377 Sgr *|184809.8-200736 |CWA | 12.81 | 13.94 | |V |41153.11 | | 16.19160 |48 |Fe(I-II)-G2 |06743 00048| +720378 |V0378 Sgr |184849.1-331000 |RRAB | 14.6 | 15.2 | |p |23878.55 | | 0.6212519 |22 | |00243 00243| +720379 |V0379 Sgr |184913.2-345250 |RRAB | 13.7 | 15.0 | |p |23965.369 | | 0.5326290 |13 | |00243 00243| +720380 |V0380 Sgr |184918.7-350700 |RRAB | 14.0 | 15.1 | |p |27682.336 | | 0.4751303 |13 | |01638 00243| +720381 |V0381 Sgr |184903.4-261705 |RRAB | 14.3 | 15.2 | |p |26119.14 | | 0.4103325 |13 | |01639 01639| +720382 |V0382 Sgr |185106.7-352445 |RRAB | 14.7 | 15.5 | |p |23883.560 | | 0.6192245 |13 | |00243 00243| +720383 |V0383 Sgr |185114.0-321519 |CWA | 12.23 | 13.22 | |V |26068.28 | | 16.449 |32 |F2 |00046 00243| +720384 |V0384 Sgr |185130.7-354950 |RRC | 14.4 | 15.1 | |p |23999.270 | | 0.3893771 |29 | |00243 00243| +720385 |V0385 Sgr |185156.0-231908 |RRAB | 14.2 | 14.5 | |p |26118.95 | | 0.4868848 |16 | |01639 01639| +720386 |V0386 Sgr |185332.6-303145 |RRAB | 14.3 | 15.2 | |p |26119.23 | | 0.4555582 |14 | |01639 01639| +720387 |V0387 Sgr |185400.3-343055 |RRAB | 13.2 | 14.5 | |p |23877.586 | | 0.5189914 |14 | |00243 00243| +720388 |V0388 Sgr |185400.6-324440 |RRAB | 14.7 | 15.6 | |p |23877.577 | | 0.5284496 |14 | |00243 00243| +720389 |V0389 Sgr |185652.4-350914 |RRAB | 14.3 | 15.7 | |p |23881.603 | | 0.6273774 |16 | |00243 00243| +720390 |V0390 Sgr |185657.7-302056 |RRAB | 14.5 | 15.4 | |p |26119.25 | | 0.5697395 |12 | |01639 01639| +720391 |V0391 Sgr |185804.7-360839 |RRAB | 14.9 | 15.8 | |p |24020.393 | | 0.5430838 |22 | |00243 00243| +720392 |V0392 Sgr |185806.2-354539 |RRAB | 14.2 | 15.1 | |p |23878.545 | | 0.6096817 |22 | |00243 00243| +720393 |V0393 Sgr |190000.4-335545 |RRAB | 14.2 | 15.6 | |p |23878.562 | | 0.6376046 |16 | |00243 00243| +720394 |V0394 Sgr |185957.5-301900 |RRAB | 14.5 | 15.4 | |p |25990.86 | | 0.5348452 |16 | |01639 01639| +720395 |V0395 Sgr |190001.6-274203 |RRAB | 14.0 | 15.5 | |p |26118.95 | | 0.4664729 |14 | |01639 01639| +720396 |V0396 Sgr |190044.8-341522 |RRAB | 14.4 | 15.7 | |p |23877.567 | | 0.6289524 |19 | |00243 00243| +720397 |V0397 Sgr *|190102.7-350040 |RR: | 14.7 | 15.4 | |p |25790.322 | | 0.4636628 |50 | |00243 00243| +720398 |V0398 Sgr |190045.4-193621 |RRAB | 14.6 | 15.5 | |p |27626.396 | | 0.5942747 |14 | |01400 00048| +720399 |V0399 Sgr |190115.0-294706 |RRAB | 14.8 | 15.3 | |p |26119.13 | | 0.5771542 |18 | |01639 01639| +720400 |V0400 Sgr |190210.8-343450 |RRAB | 13.5 | 15.1 | |p |23989.341 | | 0.4504129 |10 | |00243 00243| +720401 |V0401 Sgr *|190126.4-143334 |EA | 13.8 | 15.0 | 14.1 |p |26572.310 | | 3.107695 |13 *| |01400 00048| +720402 |V0402 Sgr |190239.8-341827 |RRAB | 13.7 | 15.4 | |p |22231.212 | | 0.7436049 |23 | |00243 00243| +720403 |V0403 Sgr *|190252.8-342834 |RRAB | 14.1 | 15.5 | |p |25391.644 | | 0.6364985 |17 | |00243 00243| +720404 |V0404 Sgr |190351.5-363411 |RRAB | 14.1 | 15.0 | |p |23877.535 | | 0.5843084 |15 | |00243 00243| +720405 |V0405 Sgr |190330.7-221605 |RRAB | 14.9 | 15.7 | |p |27364.268 | | 0.5241592 |15 | |01400 00048| +720406 |V0406 Sgr |190418.0-311114 |RRAB | 14.7 | 15.8 | |p |26119.28 | | 0.637673 |14 | |01639 01639| +720407 |V0407 Sgr |190507.5-340237 |RRAB | 14.1 | 15.5 | |p |23986.256 | | 0.4813523 |16 | |00243 00243| +720408 |V0408 Sgr |190538.0-313558 |RRAB | 14.4 | 15.3 | |p |26118.82 | | 0.4540303 |20 | |01639 01639| +720409 |V0409 Sgr |190641.3-355714 |RRAB | 14.2 | 15.6 | |p |23965.350 | | 0.5944713 |12 | |00243 00243| +720410 |V0410 Sgr *|190603.0-182541 |CWA | 12.15 | 13.16 | |V |38244.352 | | 13.77333 |41 |F6:-G2 |05375 00048| +720411 |V0411 Sgr |190721.9-360841 |RRAB | 14.0 | 15.3 | |p |24029.291 | | 0.4351197 |11 | |00243 00243| +720412 |V0412 Sgr |190724.3-332324 |RRAB | 14.7 | 15.6 | |p |23880.521 | | 0.6772657 |16 | |00243 00243| +720413 |V0413 Sgr |190727.6-320841 |RRAB | 14.4 | 15.4 | |p |24025.308 | | 0.4712857 |18 | |00244 00244| +720414 |V0414 Sgr |190720.2-174208 |RRAB | 13.8 | 15.1 | |p |27355.224 | | 0.4338236 |23 | |01400 00048| +720415 |V0415 Sgr |190737.1-233709 |EA/SD | 12.3 | 15.3 | |p |26117.20 | | 6.50692 |14 *| |01639 01639| +720416 |V0416 Sgr |190817.4-244242 |EA/SD | 14.1 | 15.0 | |p |26118.19 | | 1.984422 |14 *| |01639 01639| +720417 |V0417 Sgr |190801.6-173701 |RRAB | 14.6 | 15.6 | |p |27337.291 | | 0.5271306 |17 | |01400 00048| +720418 |V0418 Sgr |190838.6-193000 |RRAB | 14.4 | 15.4 | |p |27597.553 | | 0.6562128 |16 | |01400 00048| +720419 |V0419 Sgr |191302.8-300941 |RRAB | 13.7 | 15.1 | |p |26119.00 | | 0.4743880 |17 | |01639 01639| +720420 |V0420 Sgr |191256.9-244006 |RRAB | 14.1 | 15.4 | |p |26118.87 | | 0.6065108 |16 | |01639 01639| +720421 |V0421 Sgr |191336.6-265326 |RRAB | 14.2 | 15.4 | |p |26119.14 | | 0.6343265 |17 | |01639 01639| +720422 |V0422 Sgr |191408.4-345359 |RRAB | 15.3 | 15.9 | |p |23877.608 | | 0.764565 |26 | |00243 00243| +720423 |V0423 Sgr |191410.4-261424 |RRAB | 14.5 | 15.8 | |p |26119.07 | | 0.5193201 |13 | |01639 01639| +720424 |V0424 Sgr |191508.9-322104 |RRAB | 14.7 | 15.2 | |p |23877.55 | | 0.742368 |20 | |00243 00243| +720425 |V0425 Sgr |191515.0-220612 |RRAB | 14.6 | 16.3 | |p |26528.382 | | 0.6001317 |17 | |01400 00048| +720426 |V0426 Sgr *|191537.3-273731 |EA/AR | 12.8 | 13.7 | 13.3 |p |26116.84 | | 5.3937 |11 *| |01639 01639| +720427 |V0427 Sgr *|191550.5-184711 |RR | 14.7 | 16.0 | |p |25825.474 | | 0.5338339 | | |01400 00048| +720428 |V0428 Sgr |191724.7-340452 |RRAB | 14.8 | 15.9 | |p |23877.544 | | 0.4670124 |13 | |00243 00243| +720429 |V0429 Sgr |191742.1-285325 |RRAB | 14.3 | 15.7 | |p |26118.87 | | 0.5893533 |15 | |01639 01639| +720430 |V0430 Sgr |191732.0-153820 |RRAB | 15.0 | 15.8 | |p |27354.242 | | 0.6964758 |21 | |01400 00048| +720431 |V0431 Sgr *|191844.5-332459 |EW/KW | 14.3 | 14.9 | 14.9 |p |23879.512 | | 0.27438732 | | |00243 00243| +720432 |V0432 Sgr |191908.5-332011 |RRAB | 13.9 | 15.2 | |p |24018.297 | | 0.4843211 |20 | |00243 00243| +720433 |V0433 Sgr |191930.2-301934 |RRAB | 14.3 | 15.1 | |p |26118.98 | | 0.4963279 |10 | |01639 01639| +720434 |V0434 Sgr |192034.8-313822 |RRAB | 14.5 | 15.5 | |p |26119.33 | | 0.743543 |27 | |01639 01639| +720435 |V0435 Sgr |192032.0-304706 |RRAB | 14.5 | 15.7 | |p |26119.30 | | 0.5894137 |16 | |01639 01639| +720436 |V0436 Sgr |192309.5-315843 |RRAB | 13.2 | 14.6 | |p |24012.367 | | 0.4589153 |18 | |00244 00244| +720437 |V0437 Sgr *|192249.1-232456 |EA | 13.6 | 15.2 | 14.0 |p |26118.40 | | 3.03653 |30 | |01639 01639| +720438 |V0438 Sgr |192329.2-151805 |RRAB | 15.0 | 16.1 | |p |26507.437 | | 0.6636827 |13 | |01400 00048| +720439 |V0439 Sgr |192512.8-265344 |RRAB | 14.3 | 15.6 | |p |26119.08 | | 0.4298087 |15 | |01639 01639| +720440 |V0440 Sgr *|193220.8-235113 |RRAB | 9.60 | 10.80 | |V |41509.445 | | 0.47747883 |14 |A4-F8 |07984 02455| +720441 |V0441 Sgr |182208.1-252847 |NA | 8.7 | 16.5 | |p |26230. :|1930 | | |pec(NOVA) |09829 05464| +720442 |V0442 Sgr |183738.9-341144 |RRAB | 14.8 | 16.6 | |p |35657.868 | | 0.5631374 |15 | |00001 00244| +720443 |V0443 Sgr |183838.8-345713 |RRAB | 15.1 | 16.5 | |p |23994.336 | | 0.4624318 |14 | |00244 00244| +720444 |V0444 Sgr |183906.7-334802 |M | 11.5 | 17.3 | |p |36808. | | 195.8 | |Me |00001 00244| +720445 |V0445 Sgr |184203.3-353216 |RRAB | 15.0 | 16.1 | |p |35658.877 | | 0.5854876 |18 | |00001 00244| +720446 |V0446 Sgr |184237.3-331659 |RRAB | 14.9 | 16.1 | |p |35658.878 | | 0.4572348 |17 | |00001 00244| +720447 |V0447 Sgr |184358.0-354633 |RRAB | 14.8 | 15.8 | |p |24020.383 | | 0.4800885 |16 | |00244 00244| +720448 |V0448 Sgr |184402.2-351331 |RRAB | 14.2 | 15.6 | |p |23881.507 | | 0.5416333 |18 | |00244 00244| +720449 |V0449 Sgr |184414.8-350306 |EA/D | 14.0 | 14.6 | |p |27982.606 | | 2.247477 |10 *| |01638 00244| +720450 |V0450 Sgr |184456.1-352650 |RRAB | 14.3 | 15.5 | |p |26563.527 | | 0.4579512 |18 | |01640 00244| +720451 |V0451 Sgr |184605.8-360756 |RRAB | 14.5 | 15.6 | |p |23994.353 | | 0.5242381 |16 | |00244 00244| +720452 |V0452 Sgr |184649.5-324145 |RRAB | 13.3 | 14.5 | |p |23998.283 | | 0.5905392 |14 | |00244 00244| +720453 |V0453 Sgr *|184701.1-355024 |RRAB | 14.1 | 15.0 | |p |24029.219 | | 0.5800326 |15 | |00244 00244| +720454 |V0454 Sgr |184749.6-322158 |RRAB | 14.1 | 14.8 | |p |24028.292 | | 0.6587352 |18 | |00244 00244| +720455 |V0455 Sgr |184856.5-354329 |RRAB | 14.8 | 16.0 | |p |24027.387 | | 0.5144954 |14 | |00244 00244| +720456 |V0456 Sgr |184920.4-325548 |RRAB | 14.4 | 15.1 | |p |24293.447 | | 0.7117164 |19 | |00244 00244| +720457 |V0457 Sgr *|185051.3-352649 |RRAB | 14.2 | 15.4 | |p |23883.583 | | 0.4778794 |18 : | |00244 00244| +720458 |V0458 Sgr |185223.0-355701 |RRAB | 14.7 | 16.1 | |p |23883.605 | | 0.5253633 |15 | |00244 00244| +720459 |V0459 Sgr |185252.6-333641 |EA/SD | 13.2 | 14.3 | |p |23878.551 | | 1.641569 |12 *| |00244 00244| +720460 |V0460 Sgr |185312.9-344038 |RRAB | 14.0 | 15.4 | |p |23986.281 | | 0.6014340 |15 | |00244 00244| +720461 |V0461 Sgr |185309.9-332207 |RRAB | 15.0 | 15.8 | |p |23986.285 | | 0.4862863 |28 : | |00244 00244| +720462 |V0462 Sgr |185334.7-362257 |RRAB | 15.2 | 16.1 | |p |23883.582 | | 0.6311588 |16 | |00244 00244| +720463 |V0463 Sgr |185436.3-324723 |RRAB | 14.8 | 15.6 | |p |25474.226 | | 0.5124514 |15 | |00244 00244| +720464 |V0464 Sgr |185447.6-353427 |RRAB | 14.3 | 15.8 | |p |23883.570 | | 0.5237549 |23 | |00244 00244| +720465 |V0465 Sgr |185454.4-364241 |SR | 13.9 | 15.7 | |p | | | | | |00244 00244| +720466 |V0466 Sgr *|185513.9-332819 |RRAB | 15.1 | 15.7 | |p |25621.23 | | 0.629525 |30 | |00244 00244| +720467 |V0467 Sgr |185515.6-324709 |RRAB | 14.0 | 15.3 | |p |23883.531 | | 0.4341090 |22 | |00244 00244| +720468 |V0468 Sgr |185541.0-330548 |RRAB | 14.7 | 15.8 | |p |23879.485 | | 0.5916755 |14 | |00244 00244| +720469 |V0469 Sgr |185602.5-325424 |RRAB | 14.4 | 15.4 | |p |23998.247 | | 0.6549941 |13 | |00244 00244| +720470 |V0470 Sgr |185637.2-320214 |RRAB | 14.1 | 15.1 | |p |26573.266 | | 0.4707483 |10 | |00245 00245| +720471 |V0471 Sgr |185657.8-350842 |RRC | 13.8 | 14.4 | |p |23878.545 | | 0.291508 |34 | |00244 00244| +720472 |V0472 Sgr |185705.5-350504 |RRAB | 14.7 | 15.9 | |p |24025.221 | | 0.5480499 |20 : | |00244 00244| +720473 |V0473 Sgr |185735.8-340047 |RRAB | 14.8 | 15.8 | |p |23881.553 | | 0.5708249 |18 | |00244 00244| +720474 |V0474 Sgr |185817.4-335351 |RRAB | 14.5 | 15.6 | |p |23988.363 | | 0.5012361 |11 | |00244 00244| +720475 |V0475 Sgr |185841.0-322435 |RRAB | 14.6 | 15.4 | |p |23878.522 | | 0.6734982 |17 | |00244 00244| +720476 |V0476 Sgr |190123.5-342646 |RRAB | 13.9 | 15.5 | |p |23988.349 | | 0.4854962 |16 | |00244 00244| +720477 |V0477 Sgr |190125.8-340259 |RRAB | 15.0 | 15.9 | |p |24012.362 | | 0.3997703 |29 | |00244 00244| +720478 |V0478 Sgr |190129.1-323527 |RRAB | 13.0 | 14.0 | |p |23997.249 | | 0.5640862 |14 | |00244 00244| +720479 |V0479 Sgr |190201.5-345513 |RRAB | 13.9 | 14.8 | |p |23988.332 | | 0.6202621 |22 | |00244 00244| +720480 |V0480 Sgr |190207.5-340305 |RRAB | 14.6 | 15.7 | |p |23881.558 | | 0.5623000 |15 | |00244 00244| +720481 |V0481 Sgr |190424.7-352913 |RRAB | 14.2 | 15.2 | |p |23880.564 | | 0.7493464 |18 | |00244 00244| +720482 |V0482 Sgr |190511.2-355340 |RRAB | 13.5 | 15.0 | |p |23994.353 | | 0.4659107 |16 | |00244 00244| +720483 |V0483 Sgr |190519.6-353002 |RRAB | 14.5 | 15.7 | |p |23880.506 | | 0.4580063 |14 | |00244 00244| +720484 |V0484 Sgr |190508.0-320027 |RRAB | 13.4 | 14.6 | |p |25437.449 | | 0.5552748 |18 | |00244 00244| +720485 |V0485 Sgr |190535.4-350912 |RRAB | 14.0 | 15.4 | |p |23987.295 | | 0.6983888 |16 | |00244 00244| +720486 |V0486 Sgr |190602.1-351154 |RRAB | 14.5 | 15.8 | |p |23880.531 | | 0.5603579 |13 | |00244 00244| +720487 |V0487 Sgr |190603.0-352225 |RRAB | 14.6 | 15.7 | |p |23990.340 | | 0.5484086 |15 | |00244 00244| +720488 |V0488 Sgr |190625.8-364433 |RRAB | 14.9 | 15.9 | |p |23877.547 | | 0.5216048 |09 | |00244 00244| +720489 |V0489 Sgr |190848.0-353029 |RRAB | 13.6 | 15.1 | |p |23987.289 | | 0.5738563 |17 | |00244 00244| +720490 |V0490 Sgr |190905.7-342351 |RRAB | 14.8 | 15.7 | |p |24017.247 | | 0.5463251 |18 | |00244 00244| +720491 |V0491 Sgr |190933.4-333625 |RRAB | 13.8 | 14.8 | |p |24018.291 | | 0.5472321 |21 | |00244 00244| +720492 |V0492 Sgr |190937.9-315801 |RRC | 14.0 | 14.5 | |p |25381.542 | | 0.35696 |36 | |00244 00244| +720493 |V0493 Sgr |191041.5-352254 |RRAB | 14.5 | 15.8 | |p |24024.270 | | 0.6497726 |16 | |00244 00244| +720494 |V0494 Sgr |191114.4-345346 |DSCT | 14.2 | 14.8 | |p |23988.359 | | 0.10761971 |37 | |00244 00244| +720495 |V0495 Sgr |191122.9-334948 |RRAB | 13.6 | 15.1 | |p |23965.348 | | 0.5053102 |15 | |00244 00244| +720496 |V0496 Sgr *|191612.5-321614 |EW/KW | 13.8 | 14.3 | 14.3 |p |24019.247 | | 0.4912978 | | |00244 00244| +720497 |V0497 Sgr *|191712.1-343919 |EW | 15.0 | 16.2 | 16.0 |p |23878.5302 | | 0.29300972 | | |00244 00244| +720498 |V0498 Sgr |191720.3-353109 |RRAB | 14.3 | 15.5 | |p |24298.415 | | 0.5048809 |20 | |00244 00244| +720499 |V0499 Sgr |191819.6-355815 |RRAB | 15.2 | 16.0 | |p |24056.280 | | 0.5288171 |18 | |00244 00244| +720500 |V0500 Sgr |191903.1-392406 |RRAB | 13.9 | 14.7 | |p |23877.554 | | 0.6950989 |23 | |00244 00244| +720501 |V0501 Sgr |192036.5-412444 |EA/SD | 12.6 | 13.7 | |p |24020.21 | | 1.5132599 |15 *| |00244 00244| +720502 |V0502 Sgr |192239.0-390727 |RRAB | 14.0 | 15.1 | |p |23990.350 | | 0.4765999 |13 | |00244 00244| +720503 |V0503 Sgr |174413.5-173215 | | 13.3 |< 14.6 | |p | | | | | |00467 00467| +720504 |V0504 Sgr |181014.3-160044 |CEP: | 13. | 14. | |p |26894.398 | | 1.5 | | |01641 01641| +720505 |V0505 Sgr *|195306.4-143612 |EA/SD | 6.46 | 7.51 | 6.63 |V |44461.5907 | | 1.18287156 |20 *|A2V+F6: |00001 08953| +720506 |V0506 Sgr |181820.9-254120 |M | 13.5 |< 16.5 | |p |40062. | | 171. | |M7 |07912 07912| +720507 |V0507 Sgr |181829.1-255226 |M | 13.8 |< 16.5 | |p |36759. | | 217. | |M5-M6 |07912 07912| +720508 |V0508 Sgr |181911.9-255054 |M | 13.5 | 16.5 | |p |41920. | | 293.8 | | |07087 07087| +720509 |V0509 Sgr |182000.1-253305 |RRAB | 13.5 | 15.5 | |p |41121.770 | | 0.5343587 | | |08611 08611| +720510 |V0510 Sgr |182026.8-260112 |M | 13.8 | 16.3 : | |p |42680. | | 167.9 | |M7 |08611 08611| +720511 |V0511 Sgr *|182148.6-250113 |M | 13.4 | 16.5 | |p |26480. | | 158.2 | |M1-M5 |08611 08611| +720512 |V0512 Sgr |182207.5-260409 |M | 15.4 |< 17.0 | |p |26500. | | 196. | |M3-M6 |08611 08611| +720513 |V0513 Sgr |182352.6-253141 |M | 14.5 |< 17.0 | |p |38550. | | 222. | |M3 |07912 07912| +720514 |V0514 Sgr |182421.0-255326 |SR: | 15.4 | 16.4 | |p |23665. | | 66. | |M4 |00014 06278| +720515 |V0515 Sgr *|182515.4-252535 |M | 14.3 |< 17.0 | |p |31635. | | 246.5 | |M7 |08611 08611| +720516 |V0516 Sgr |182619.9-255748 |M | 13.8 |< 16.5 | |p |42190. | | 290. | | |07912 07912| +720517 |V0517 Sgr |182746.9-255618 |M | 13.0 | 17.0 : | |p |41120. | | 281.5 | |M7 |07087 07087| +720518 |V0518 Sgr |182802.2-261722 |M | 14.0 |< 16.3 | |p |37845. | | 159.5 | |M6 |07087 07087| +720519 |V0519 Sgr *|182801.2-255644 |M | 13.2 | 17.0 | |p |35085. | | 178.25 | |M8 |07087 07087| +720520 |V0520 Sgr *|182830.0-254750 |M | 13.3 | 17.0 | |p |34910. | | 260. | |M5-M8 |07087 07087| +720521 |V0521 Sgr |182849.7-261027 |M | 14.5 |< 16.5 | |p |42282. | | 222. | | |07912 07912| +720522 |V0522 Sgr |184800.5-252226 |N: | 13.9 | 17.5 | |p |26570. |1931 | | | |01643 01643| +720523 |V0523 Sgr *|190254.6-290834 |EA/DM | 9.57 | 9.90 | 9.88 |V |15800.762 | | 2.3238102 |12 *|A5 |02453 06617| +720524 |V0524 Sgr *|195314.5-145439 |EA | 11.0 | 12.4 | 11.2 |p |29236.077 | | 4.11621717 |12 |F8III |00007 BD | +720525 |V0525 Sgr *|190713.5-300938 |EB/KE | 8.28 | 8.93 | 8.51 |V |29662.4593 | | 0.70512200 | |A2 |01646 08953| +720526 |V0526 Sgr *|190815.0-312055 |EA/DM | 9.78 | 10.54 | 10.20 |V |22054.0856 | | 1.9194111 |12 |A0 |05764 00010| +720527 |V0527 Sgr *|191611.0-205556 |CWB | 14.40 | 15.47 | |V |41899.880 | | 1.258887 |27 | |09831 01648| +720528 |V0528 Sgr |175832.2-361852 |M | 14.1 |< 16.5 | |p |24720. | | 196.2 | | |00251 06286| +720529 |V0529 Sgr |175827.6-344018 |M | 14.6 |< 16.5 | |p |30893. | | 196.7 | | |02431 02448| +720530 |V0530 Sgr |175831.8-352346 |M: | 15.0 |< 16.5 | |p |24615. | | 145.3 | | |00251 06286| +720531 |V0531 Sgr |175840.5-360424 |M | 14.7 |< 16.5 | |p |23900. | | 100.5 | | |00251 06286| +720532 |V0532 Sgr |175850.8-350531 |CWA | 13.3 | 14.44 | |B |28667.6 | | 34.183 |45 | |00046 00296| +720533 |V0533 Sgr |175854.4-353206 |M | 14.8 |< 16.5 | |p |24640. | | 274.5 | | |00251 06286| +720534 |V0534 Sgr |175927.6-345054 |M | 14.6 |< 16.5 | |p |28770. | | 142.8 | | |02431 02448| +720535 |V0535 Sgr |175940.5-365207 |M: | 15.0 |< 16.5 | |p |24060. | | 212. | | |00251 06286| +720536 |V0536 Sgr |175951.8-363230 |M: | 15.5 |< 16.5 | |p |24030. | | 187.7 | | |00251 06286| +720537 |V0537 Sgr |175958.0-352311 |M | 14.6 |< 16.5 | |p |25370. | | 296. | | |00251 06286| +720538 |V0538 Sgr |175957.9-353039 |M | 13.8 |< 16.5 | |p |27984. | | 255.3 | | |02448 02448| +720539 |V0539 Sgr |180000.5-351501 |M: | 15.0 |< 16.5 | |p |24700. | | 220.5 | | |00251 06286| +720540 |V0540 Sgr |180004.3-355539 |LC | 9.4 | 10.8 | |p | | | | |M5Iab |00236 08613| +720541 |V0541 Sgr |180003.4-351145 |SR | 12.3 | 14.3 | |p |28390. | | 142. | | |02448 02448| +720542 |V0542 Sgr |180011.9-354325 |SR | 13.3 | 16.5 | |p |28345. | | 160. | | |02448 02448| +720543 |V0543 Sgr |180013.3-352738 |M: | 15.0 |< 16.5 | |p |25380. | | 211. | | |00251 GSC22| +720544 |V0544 Sgr |180020.8-345643 |M | 13.8 |< 16.5 | |p |27710. | | 397.5 | | |02431 08613| +720545 |V0545 Sgr |180029.1-352038 |SR: | 15.5 |< 16.5 | |p |26570. | | 250. | | |00251 06286| +720546 |V0546 Sgr |180029.8-352409 |M: | 14.6 |< 16.5 | |p |28440. | | 246. | | |02448 02448| +720547 |V0547 Sgr |180035.7-361229 |M: | 15.8 |< 16.5 | |p |26160. | | | | |00251 GSC22| +720548 |V0548 Sgr |180038.8-345151 |M | 13.8 |< 16.5 | |p |31225. | | 256.75 | | |00001 02448| +720549 |V0549 Sgr |180042.5-352043 |M | 14.3 |< 16.5 | |p |28420. | | 305. | | |02448 02448| +720550 |V0550 Sgr |180053.5-361833 |M | 14.6 |< 16.5 | |p |23960. | | 277. | | |00251 06286| +720551 |V0551 Sgr *|180056.4-343547 |UGSS | 13.5 | 20. | |p | | | | | |02448 08852| +720552 |V0552 Sgr *|180053.0-345833 |M | 13.4 |< 16.5 | |p |28410. | | 276.5 | | |00251 02448| +720553 |V0553 Sgr |180110.8-363000 |M: | 14.9 |< 16.5 | |p |24700. | | 258.8 | | |00251 06286| +720554 |V0554 Sgr *|180111.9-363501 |EB | 13.9 | 14.9 | 14.5 |p |26123.550 | | 0.90703 | | |00251 GSC22| +720555 |V0555 Sgr |180117.6-354522 |M | 14.0 |< 16.5 | |p |28430. | | 192.46 | | |02431 02448| +720556 |V0556 Sgr |180126.3-351731 |M | 14.8 |< 16.5 | |p |24040. | | 285.4 | | |00251 06286| +720557 |V0557 Sgr *|180140.1-353914 |CWA | 14.3 | 14.7 | |p |31227.8 | | 16.231 |50 | |00001 00296| +720558 |V0558 Sgr *|180141.9-352312 |RV | 13.9 | 14.6 | 14.3 |p |28437. | | 63.82 | | |00296 00296| +720559 |V0559 Sgr |180135.3-344757 |M: | 14.9 |< 16.5 | |p |27610. | | 352. | | |00251 2MASS| +720560 |V0560 Sgr |180151.6-363211 |M | 14.5 |< 16.5 | |p |23930. | | 211.1 | | |00251 06286| +720561 |V0561 Sgr |180156.4-351137 |M | 12.5 |< 17.5 | |p |28590. | | 450. | | |02448 02448| +720562 |V0562 Sgr |180202.3-361508 |RR | 15.5 | 16.5 | |p |24728.570 | | 0.47805 | | |00251 06286| +720563 |V0563 Sgr |180215.6-354348 |I | 14.0 | 15.5 | |p | | | | | |00251 06286| +720564 |V0564 Sgr *|180207.7-342938 |CWA | 13.3 | 13.82 | |B |31227. | | 28.11 |30 |F8: |00001 00296| +720565 |V0565 Sgr |180223.9-365911 |M: | 14.8 |< 16.5 | |p |24030. | | 253.5 | | |00251 06286| +720566 |V0566 Sgr |180228.1-350743 |RRAB | 14.8 | 16.4 | |p |26156.440 | | 0.59683 | | |00251 06286| +720567 |V0567 Sgr *|180232.3-363913 |CST | 14.0 | | |p | | | | |pD |01650 08077| +720568 |V0568 Sgr |180234.7-350740 |M: | 15.7 |< 17.5 | |p |24030. | | 210. | | |00251 06286| +720569 |V0569 Sgr |180241.3-351614 |M | 13.2 |< 16.5 | |p |26210. | | 206. | | |00251 08613| +720570 |V0570 Sgr |180310.4-365840 |M: | 15.0 |< 16.5 | |p |24410. | | 265. | | |00251 06286| +720571 |V0571 Sgr |180318.3-344301 |M: | 15.4 |< 16.5 | |p |24650. | | 284. | | |00251 06286| +720572 |V0572 Sgr |180333.0-365811 |M | 14.2 |< 16.5 | |p |24080. | | 230.7 | | |00251 06286| +720573 |V0573 Sgr *|180334.3-355700 |EB | 12.2 | 12.8 | 12.7 |p |28401.277 | | 0.977056 | | |05590 05590| +720574 |V0574 Sgr *|180336.4-344201 |EA/D | 14.3 | 14.9 | 14.7 |p |28714.22 | | 5.0139 |06 *| |00296 00296| +720575 |V0575 Sgr |180355.6-364945 |RRAB | 15.4 | 16.7 | |p |26179.450 | | 0.69639 | | |00251 GSC22| +720576 |V0576 Sgr |180351.3-344733 |RRAB | 14.0 | 14.6 | |p |28394.295 | | 0.4050360 |12 | |01640 00296| +720577 |V0577 Sgr |180400.9-355223 |E | 15.1 |< 16.5 | |p |26130.300 | | 3.8221 | | |00251 06286| +720578 |V0578 Sgr *|180400.8-352230 |M | 14.4 |< 16.5 | |p |23970. | | 188.9 | | |00251 02448| +720579 |V0579 Sgr |180410.9-353952 |SRA | 14.3 | 15.3 | |p |28340. | | 262. | | |02448 02448| +720580 |V0580 Sgr |180419.5-345139 |I | 14.4 | 15.6 | |p | | | | | |00251 06286| +720581 |V0581 Sgr |180419.2-351127 |M | 14.2 |< 16.5 | |p |28350. | | 219. | | |02448 02448| +720582 |V0582 Sgr |180424.5-345734 |RRAB | 15.2 | 16.3 | |p |26179.550 | | 0.53809 | | |00251 06286| +720583 |V0583 Sgr |180430.4-360017 |SRA | 14.0 | 15.2 | |p |26210. | | 101.6 | | |00251 GSC22| +720584 |V0584 Sgr |180432.0-364811 |RRAB | 15.0 | 16.5 | |p |26179.400 | | 0.443695 | | |00251 06286| +720585 |V0585 Sgr |180433.4-354348 |M | 13.4 |< 17.5 | |p |34220. | | 225.6 | |Me |02431 02447| +720586 |V0586 Sgr |180434.1-351146 |SRA | 13.6 | 15.1 | |p |28710. | | 292.9 | | |02431 02448| +720587 |V0587 Sgr |180502.0-343915 |M | 14.7 |< 18. | |p |24030. | | 170. | | |00251 06286| +720588 |V0588 Sgr |180516.6-361146 |E | 14.8 |< 16.5 | |p |26130.300 | | 6.21480 | | |00251 GSC22| +720589 |V0589 Sgr |180517.2-344447 |RCB: | 14.2 | 17.6 | |p | | | | | |00251 GSC22| +720590 |V0590 Sgr |180516.4-350632 |SR | 15.0 | 16.5 | |p | | | | | |00251 06286| +720591 |V0591 Sgr |180522.0-351850 |M | 14.6 |< 16.5 | |p |24700. | | 276.5 | | |00251 06286| +720592 |V0592 Sgr |180528.9-353709 |M: | 14.9 |< 16.5 | |p |24620. | | 144.7 | | |00251 06286| +720593 |V0593 Sgr *|180524.5-343152 |M | 14.5 |< 16.5 | |p |26240. | | 225. | | |00251 GSC22| +720594 |V0594 Sgr |180538.5-355623 |M | 14.0 |< 16.5 | |p |24625. | | 168.6 | | |00251 06286| +720595 |V0595 Sgr |180545.7-362334 |M: | 14.8 |< 16.5 | |p |25760. | | 236.4 | | |00251 GSC22| +720596 |V0596 Sgr |180535.8-344209 |SRA | 15.2 | 16.5 | |p |26570. | | 150.5 | | |00251 06286| +720597 |V0597 Sgr |180545.8-360849 |RR | 15.1 | 15.8 | |p |26125.340 | | 0.38533 | | |00251 GSC22| +720598 |V0598 Sgr *|180539.4-344424 |EA | 13.8 | 14.6 | |p |28659.345 | | 2.574086 |10 | |02448 02448| +720599 |V0599 Sgr |180552.0-365056 |I | 13.7 | 14.9 | |p | | | | | |00251 GSC22| +720600 |V0600 Sgr |180552.9-360719 |RRAB | 15.4 | 16.5 | |p |24656.850 | | 0.51721 | | |00251 06286| +720601 |V0601 Sgr |180555.9-355130 |RRAB | 15.4 | 16.8 | |p |26174.320 | | 0.59181 | | |00251 06286| +720602 |V0602 Sgr |180604.7-355436 |M: | 14.8 | 16.5 | |p |23930. | | 206.7 | | |00251 GSC22| +720603 |V0603 Sgr |180610.0-361937 |M: | 14.8 |< 16.5 | |p |24020. | | 292. | | |00251 06286| +720604 |V0604 Sgr |180611.4-342420 |I | 14.0 | 15.0 | |p | | | | | |00251 06286| +720605 |V0605 Sgr |180624.3-354115 |M | 14.5 |< 16.5 | |p |24410. | | 267.5 | | |00251 06286| +720606 |V0606 Sgr |180631.4-350003 |M: | 14.8 |< 16.5 | |p |24050. | | 284.5 | | |00251 06286| +720607 |V0607 Sgr |180644.4-364322 |M | 14.5 |< 16.5 | |p |26870. | | 188. | | |00251 06286| +720608 |V0608 Sgr |180645.9-353553 |M | 13.3 | 17.0 : | |p |24670. | | 247.6 | | |00251 06286| +720609 |V0609 Sgr |180704.3-360313 |M | 14.0 |< 16.5 | |p |24740. | | 317. | | |00251 06286| +720610 |V0610 Sgr |180717.3-360315 |I | 13.2 | 14.0 | |p | | | | | |00251 06286| +720611 |V0611 Sgr *|180727.4-362049 |SRA | 14.2 |< 16.5 |( 16.2 )|p |26180. | | 116.8 | | |00251 06286| +720612 |V0612 Sgr *|180726.1-363126 |M | 13.7 |< 16.5 | |p |26550. | | 108.7 | | |00251 06286| +720613 |V0613 Sgr |180731.8-352308 |M | 14.5 |< 16.5 | |p |24400. | | 196. | | |00251 06286| +720614 |V0614 Sgr |180733.2-354417 |E/SD | 14.6 | 16.4 | |p |26174.320 | | 2.6448 | | |00251 06286| +720615 |V0615 Sgr *|180740.0-360622 |ZAND | 13.2 | 14.8 | |p | | | | |Bep+Me |08076 08077| +720616 |V0616 Sgr |180750.3-365418 |RRAB | 15.2 | 16.5 | |p |24650.760 | | 0.48551 | | |00251 06286| +720617 |V0617 Sgr |180750.9-351025 |I | 13.6 | 15.7 | |p | | | | | |00251 06286| +720618 |V0618 Sgr |180757.2-362952 |RCB | 11.0 |< 16.5 | |p | | | | | |00251 08087| +720619 |V0619 Sgr |180753.5-345153 |M: | 15.5 |< 16.5 | |p |26180. | | 254.3 | | |00251 06286| +720620 |V0620 Sgr |180757.1-345751 |M | 14.2 |< 16.5 | |p |25430. | | 198.2 | | |00251 06286| +720621 |V0621 Sgr |180807.7-364101 |M: | 14.7 |< 16.5 | |p |25830. | | 269. | | |00251 06286| +720622 |V0622 Sgr |180808.5-352319 |M | 14.9 |< 17.8 | |p |25870. | | 265.5 | | |00251 GSC22| +720623 |V0623 Sgr |180820.5-355241 |I | 13.1 | 14.3 | |p | | | | | |00251 GSC22| +720624 |V0624 Sgr |180823.7-351706 |M | 14.2 | 17.8 | |p |24020. | | 259.6 | | |00251 06286| +720625 |V0625 Sgr |180835.9-363025 |SRA | 14.4 | 16.1 | |p |26060. | | 146.8 | | |00251 06286| +720626 |V0626 Sgr *|180834.8-345643 |CWA | 11.64 | 12.77 | |V |35113.113 | | 26.745 |24 | |02309 06286| +720627 |V0627 Sgr |180833.8-342545 |SRA | 13.9 | 16.3 | |p |34140. | | 128.24 | |Me |00001 02447| +720628 |V0628 Sgr |180844.9-364907 |M | 14.4 |< 16.5 | |p |24630. | | 260. | | |00251 06286| +720629 |V0629 Sgr |180852.6-364211 |M: | 15.1 |< 16.5 | |p |25350. | | 277. | | |00251 06286| +720630 |V0630 Sgr |180848.5-342021 |NA | 1.6 | 14.4 | |p |28445. |1936 | | |pec(NOVA) |09834 02447| +720631 |V0631 Sgr *|180853.5-361145 |E | 13.6 | 14.4 | 14.2 |p |26563.380 | | 0.82361 | | |00251 06286| +720632 |V0632 Sgr *|180910.6-363036 |M | 13.4 |< 16.5 | |p |27300. | | 257. | | |00251 06286| +720633 |V0633 Sgr *|180923.4-345809 |M | 15.3 | 17.9 | |p |24640. | | 229. | | |00251 06286| +720634 |V0634 Sgr |180939.2-354413 |M | 14.6 |< 16.5 | |p |25410. | | 240.6 | | |00251 06286| +720635 |V0635 Sgr |180949.3-360127 |M | 13.4 |< 16.5 | |p |26170. | | 241. | |Me |00251 02447| +720636 |V0636 Sgr |180949.7-364839 |RRAB | 14.6 | 15.6 | |p |30927.312 | | 0.5354125 |15 | |03513 03513| +720637 |V0637 Sgr |180953.6-361045 |M | 13.0 |< 16.5 | |p |23970. | | 241.5 | | |00251 06286| +720638 |V0638 Sgr *|180959.1-355342 |SR | 14.2 | 15.3 | |p |24680. | | 73.1 | | |00251 06286| +720639 |V0639 Sgr |181004.8-352547 |M | 13.4 |< 16.5 | |p |26100. | | 216.0 | |Me |00251 06286| +720640 |V0640 Sgr |181011.9-365225 |M: | 15.2 |< 16.5 | |p |25400. | | 285.5 | | |00251 06286| +720641 |V0641 Sgr |181019.6-362127 |M | 14.1 |< 16.5 | |p |24040. | | 281.8 | | |00251 06286| +720642 |V0642 Sgr |181022.4-362937 |RRAB | 15.1 |< 16.5 | |p |26179.370 | | 0.51412 | | |00251 06286| +720643 |V0643 Sgr |181025.0-351817 |M | 13.8 | 17.3 | |p |34115. | | 197.1 | | |02431 02447| +720644 |V0644 Sgr |181029.8-345127 |I | 14.9 | 15.6 | |p | | | | | |00251 06286| +720645 |V0645 Sgr |181031.3-352448 |RRAB | 15.0 | 16.1 | |p |26101.560 | | 0.51406 | | |00251 06286| +720646 |V0646 Sgr *|181043.7-355350 |SR | 13.8 | 15.7 | |p |24680. | | 97. | | |00251 06286| +720647 |V0647 Sgr |181048.9-360052 |SR | 15.0 | 16.3 : | |p |26140. | | 88.2 | | |00251 06286| +720648 |V0648 Sgr |181052.0-365625 |I | 14.2 | 16.0 | |p | | | | | |00251 06286| +720649 |V0649 Sgr |181106.1-362247 |SR: | 13.9 | 16.0 | |p |25440. | | 141. : | | |00251 06286| +720650 |V0650 Sgr |181115.7-362110 |RRAB | 15.1 | 16.0 | |p |26145.570 | | 0.7789 | | |00251 06286| +720651 |V0651 Sgr |181110.1-344510 |RRAB | 15.2 | 16.3 | |p |26120.420 | | 0.56222 | | |00251 06286| +720652 |V0652 Sgr |181118.3-343948 |M | 14.0 |< 18. | |p |26140. | | 256.8 | | |00251 06286| +720653 |V0653 Sgr |181123.7-360631 |I | 13.0 | 13.8 | |p | | | | | |00251 01655| +720654 |V0654 Sgr |181134.0-365008 |SR: | 15.2 |< 16.5 | |p |24420. | | 440. | | |00251 06286| +720655 |V0655 Sgr *|181142.1-361138 |M | 14.2 |< 16.5 | |p |26100. | | 262. | | |00251 06286| +720656 |V0656 Sgr |181137.3-343601 |RRAB | 15.4 | 16.4 | |p |24727.630 | | 0.50898 | | |00251 06286| +720657 |V0657 Sgr |181143.1-352227 |RR | 15.3 | 16.1 | |p |26097.610 | | 0.50152 | | |00251 06286| +720658 |V0658 Sgr |181153.6-365234 |RR | 15.2 | 16.0 | |p |26174.320 | | 0.48350 | | |00251 06286| +720659 |V0659 Sgr |181155.4-362427 |SR | 12.3 | 14.0 | |p | | | | |S6,8(N) |05869 08087| +720660 |V0660 Sgr *|181214.4-361843 |M | 13.1 |< 17.6 | |p |35666. | | 242.0 | | |05869 GSC22| +720661 |V0661 Sgr |181228.5-354507 |M | 14.0 |< 17.6 | |p |36766. | | 228.7 | | |00001 06286| +720662 |V0662 Sgr |181230.6-365508 |RR | 15.3 | 15.9 | |p |26179.220 | | 0.41211 | | |00251 06286| +720663 |V0663 Sgr *|181227.0-360537 |M | 14.6 |< 18.8 | |p |36760. | | 308.0 | | |05869 06286| +720664 |V0664 Sgr |181227.8-342209 |RRAB | 14.8 | 16.1 | |p |24728.500 | | 0.56781 | | |00251 06286| +720665 |V0665 Sgr |181238.7-363604 |RRAB | 15.3 | 16.7 | |p |35689.770 | | 0.5436555 |18 | |00001 06286| +720666 |V0666 Sgr |181246.2-352457 |RRAB | 13.4 | 14.8 | |p |35632.965 | | 0.52443633 |14 | |05590 05590| +720667 |V0667 Sgr |181300.1-362149 |RRAB | 15.0 | 16.6 | |p |35640.859 | | 0.523449 |18 | |00001 06286| +720668 |V0668 Sgr |181259.2-360938 |M | 15.6 | 18.1 | |p |36815. :| | 250.2 | | |00001 06286| +720669 |V0669 Sgr |181258.6-353008 |M | 15.0 |< 18.0 | |p |36815. | | 254.9 | | |00001 06286| +720670 |V0670 Sgr |181256.8-352207 |M | 14.5 |< 18.2 | |p |35644. | | 207.0 | | |00001 06286| +720671 |V0671 Sgr *|181308.5-342543 |M | 15.4 |< 19.1 | |p |36670. :| | 159.8 : | | |05869 06286| +720672 |V0672 Sgr *|181327.0-354017 |M | 14.4 | 17.6 | |p |36792. | | 220.2 : | | |00001 06286| +720673 |V0673 Sgr |181327.1-351949 |M | 14.8 |< 18.4 | |p |36758. | | 291.5 | | |00251 06286| +720674 |V0674 Sgr *|181333.9-351238 |M | 14.0 | 17.9 | |p |35630. | | 240. : |32 | |05869 06286| +720675 |V0675 Sgr *|181335.4-341902 |RRAB | 9.80 | 10.76 | |V |28387.244 | | 0.6422893 |14 |A5-F6 |03126 02447| +720676 |V0676 Sgr *|181343.1-351725 |M | 13.3 | 18.7 | |p |36792. | | 180.3 | | |00001 06286| +720677 |V0677 Sgr |181352.6-361432 |RRAB | 14.0 | 16.2 | |p |35660.732 | | 0.4447080 |10 | |00001 01638| +720678 |V0678 Sgr |181359.0-363846 |RRAB | 14.6 | 16.3 | |p |35655.839 | | 0.470402 |15 : | |00001 06286| +720679 |V0679 Sgr *|181407.7-360445 |M | 13.6 | 17.9 | |p |34213. | | 226.0 | |Me |02447 02447| +720680 |V0680 Sgr |181415.7-362222 |M | 14.2 | 18.3 | |p |36770. | | 214.71 | | |00001 06286| +720681 |V0681 Sgr |181413.4-344448 |I | 13.7 | 14.6 | |p | | | | | |00251 06286| +720682 |V0682 Sgr |181415.6-344226 |M | 13.4 |< 18.4 | |p |26130. | | 205. |24 | |00251 06286| +720683 |V0683 Sgr *|181424.2-364607 |E | 12.0 | 12.7 | 12.5 |p |26154.500 | | 0.58361 | | |00251 08087| +720684 |V0684 Sgr |181422.1-351258 |I | 14.0 | 15.0 | |p | | | | | |00251 06286| +720685 |V0685 Sgr |181424.6-350733 |M | 14.4 |< 20.9 | |p |36662. | | 192.3 | | |00001 06286| +720686 |V0686 Sgr *|181432.6-362556 |M | 15.0 | 18.2 | |p |36820. | | 215.5 | | |05869 06286| +720687 |V0687 Sgr *|181432.5-342235 |E | 11.9 | 12.7 | 12.2 |p |26154.500 | | 0.64615 | | |00251 06286| +720688 |V0688 Sgr |181444.3-354427 |M | 13.0 | 18.9 | |p |36756. | | 234.4 | | |00001 06286| +720689 |V0689 Sgr |181441.2-342122 |M | 13.9 | 18.5 | |p |36710. | | 204.0 | | |00001 02447| +720690 |V0690 Sgr |181453.2-361727 |M | 13.7 |< 17.5 | |p |26070. | | 250.7 | | |00251 06286| +720691 |V0691 Sgr *|181507.6-355526 |RRAB | 15.6 | 16.7 | |p |35668.860 | | 0.46925 |16 | |05869 06286| +720692 |V0692 Sgr |181511.0-354553 |RRC | 13.0 | 13.4 | |p |35658.840 | | 0.36664 |33 | |05869 08087| +720693 |V0693 Sgr |181514.8-352119 |RRAB | 14.7 | 15.7 | |p |30553.3706 | | 0.6294847 |24 | |05590 05590| +720694 |V0694 Sgr |181519.9-365403 |RRAB | 14.2 | 15.4 | |p |31269.473 | | 0.4526517 |14 | |03513 03513| +720695 |V0695 Sgr |181529.2-360538 |RRAB | 14.5 | 16.3 | |p |26153.430 | | 0.617098 |20 | |00001 06286| +720696 |V0696 Sgr |181535.1-344202 |RRAB | 15.4 | 16.4 | |p |35654.783 | | 0.4832574 |13 | |00001 06286| +720697 |V0697 Sgr |181548.0-353519 |RRAB | 13.34 | 14.48 | |V |28693.477 | | 0.4922493 |15 | |05590 05590| +720698 |V0698 Sgr |181559.0-342340 |I | 14.0 | 15.4 | |p | | | | | |00251 06286| +720699 |V0699 Sgr |181616.8-363946 |M | 13.5 | 17.8 | |p |36715. | | 174.9 | | |00001 06286| +720700 |V0700 Sgr |181617.6-365626 |RRAB | 14.5 | 16.3 | |p |35657.825 | | 0.6341854 |18 | |00001 06286| +720701 |V0701 Sgr |181619.1-362932 |RRAB | 13.1 | 14.4 | |p |35660.760 | | 0.6265386 |14 | |00001 03513| +720702 |V0702 Sgr |181619.7-353804 |RRAB | 14.6 | 16.0 | |p |28788.303 | | 0.4746589 |18 | |05590 05590| +720703 |V0703 Sgr *|181625.0-355519 |RRAB | 14.2 | 15.2 | |p |28077.361 | | 0.570788 |17 | |01640 01640| +720704 |V0704 Sgr |181637.2-352916 |M | 14.2 |< 18. | |p |26570. | | 198.0 | | |00251 GSC22| +720705 |V0705 Sgr *|181626.0-342539 |E/SD | 12.7 | 14.1 | 12.9 |p |35665.867 | | 1.22775 | | |00001 06286| +720706 |V0706 Sgr |181629.0-351629 |RRAB | 14.5 | 16.0 | |p |35660.795 | | 0.6815286 |17 | |00001 06286| +720707 |V0707 Sgr |181629.5-352507 |RRAB | 14.6 | 16.0 | |p |35636.886 | | 0.512694 |13 | |00001 06286| +720708 |V0708 Sgr |181631.2-351727 |RRAB | 14.8 | 16.2 | |p |35663.868 | | 0.481910 |13 | |00001 06286| +720709 |V0709 Sgr |181635.5-350926 |RRAB | 15.1 | 16.8 | |p |35655.794 | | 0.460908 |28 | |00001 06286| +720710 |V0710 Sgr *|181646.8-362532 |EA/SD | 13.3 | 16.3 | |p |36672.985 | | 2.3800 |12 | |00001 03513| +720711 |V0711 Sgr |181643.1-344538 |M | 13.5 | 18.6 | |p |36767. | | 146.79 | |Me |00001 02447| +720712 |V0712 Sgr |181652.2-344637 |RR | 14.1 | 15.2 : | |p |27296.370 | | 0.575242 | | |00251 06286| +720713 |V0713 Sgr *|181709.9-342131 |M | 14.3 | 18.5 | |p |36695. | | 256.2 : | | |00001 GSC22| +720714 |V0714 Sgr |181728.9-350527 |I | 12.0 | 13.2 | |p | | | | | |00251 06286| +720715 |V0715 Sgr |181742.2-344837 |RRAB | 14.0 | 15.0 | |p |28015.324 | | 0.6191479 |16 | |01638 01638| +720716 |V0716 Sgr *|181753.1-343259 |SRA | 14.5 | 16.6 | |p |36720. | | 277.0 | | |05869 06286| +720717 |V0717 Sgr |181755.5-352301 |M | 13.5 |< 17.3 | |p |36828. | | 227.66 | |Me |00001 02447| +720718 |V0718 Sgr *|181757.3-342656 |SRA | 15.0 | 17.0 | |p |36752. | | 155.4 | | |05869 06286| +720719 |V0719 Sgr |181819.6-352455 |I | 11.5 | 12.4 | |p | | | | | |00251 06286| +720720 |V0720 Sgr |181916.3-361221 |M | 13.0 | 16.9 | |p |25830. | | 264. | | |00251 06286| +720721 |V0721 Sgr *|181811.8-353343 |SRB | 12.0 | 14.0 | |p | | | 120. | | |05869 06286| +720722 |V0722 Sgr |180043.4-365727 |E | 13.8 | 14.6 | |p |25421.460 | | | | |00251 GSC22| +720723 |V0723 Sgr |180409.0-363736 |E | 14.9 | 15.8 | |p |23992.630 | | | | |00251 06286| +720724 |V0724 Sgr |180725.4-354845 |I: | 14.4 | 15.5 | |p | | | | | |00251 06286| +720725 |V0725 Sgr *|181159.4-360640 |* | 12.3 | 14.3 | |B | | | | |G5I-III |01655 06290| +720726 |V0726 Sgr |181933.8-265319 |NA | 9.0 : |< 16.5 | |p |28290. :|1936 | | |pec(NOVA) |09837 00021| +720727 |V0727 Sgr *|190423.6-155303 |I | 14.4 | 15.1 | |p | | | | | |01656 01656| +720728 |V0728 Sgr *|190425.2-155309 |RRAB | 14.7 | 15.9 | |p |27169.435 | | 0.4383079 |13 : | |01656 01656| +720729 |V0729 Sgr |191649.1-261433 |IS: | 14.1 | 15.5 | |p | | | | |ea |01598 01657| +720730 |V0730 Sgr |192301.0-282937 |IS: | 12.8 |< 17.5 | |p | | | | | |01598 01657| +720731 |V0731 Sgr |193818.3-140444 | | 13. | 14. | |p | | | | |G5 |01623 06286| +720732 |V0732 Sgr |175607.5-272217 |NA | 6.0 : |< 16.0 | |p |28280. :|1936 | | |pec(NOVA) |01610 00296| +720733 |V0733 Sgr |190008.2-181510 |M | 11.2 | 14.4 | |p |30262. | | 100.9 |50 | |01658 01659| +720734 |V0734 Sgr *|174606.1-294014 |EA/SD | 13.0 | 14.0 | 13.1 |p |27980.642 | | 1.238322 |18 *| |00296 00296| +720735 |V0735 Sgr *|175951.8-293356 |ISB: | 13.5 | 16.5 | |p | | | | | |00296 08852| +720736 |V0736 Sgr |180708.2-332714 |CWA | 13.7 | 14.6 | |p |28282.28 | | 23.140 |46 | |00280 00280| +720737 |V0737 Sgr |180709.0-284453 |N | 9.5 : |< 13. | |p |27249. |1933 | | | |01661 08953| +720738 |V0738 Sgr *|181054.3-315521 |CWA | 12.6 | 14.6 | |p |28329.7 | | 43.39 |38 |F8: |00280 00280| +720739 |V0739 Sgr |181310.6-301615 |SRB | 13.5 |< 18.0 | |p | | | 800. | |C(R) |00645 09423| +720740 |V0740 Sgr |182048.2-294535 |SR: | 13.8 |< 14.4 | |p | | | | | |00280 09423| +720741 |V0741 Sgr |182046.0-294847 |CWA | 12.12 | 13.36 | |V |36213.58 | | 15.16817 |38 | |06743 09423| +720742 |V0742 Sgr |183941.0-364841 |M | 11.3 | 17.7 | |p |36752. | | 313.1 | |M1e |00001 04229| +720743 |V0743 Sgr *|174356.1-282952 |EW/KW | 13.8 | 14.3 | 14.2 |p |28094.2852 | | 0.27663633 | | |02448 02448| +720744 |V0744 Sgr |174445.1-280409 |SRA | 13.0 | 14.6 | |p |28655. | | 199. | | |02448 02448| +720745 |V0745 Sgr *|175519.0-290754 |M | 12.0 |< 17.0 | |p |29150. | | 380.2 | |Se(M) |00478 00296| +720746 |V0746 Sgr |174634.1-230028 |M | 13.6 |< 17.0 | |p |29210. | | 375. | |M9: |00478 00478| +720747 |V0747 Sgr |174655.4-283716 |LB | 14.0 | 16.0 | |p | | | | | |02448 02448| +720748 |V0748 Sgr *|174720.0-270534 |EA | 14.6 | 16.1 | 14.7 |p |28397.38 | | 4.93205 |10 | |00296 00296| +720749 |V0749 Sgr |174722.2-272124 |EA/DM: | 13.9 | 14.3 | |p |26562.27 | | 1.73358 |08 *| |00478 00478| +720750 |V0750 Sgr *|174755.4-293206 |EA | 13.0 | 14.1 | |p |28425.220 | | 5.89490 |11 | |02448 02448| +720751 |V0751 Sgr |174758.0-285114 |EA/DS: | 14.9 | 16.2 | |p |24705.70 | | 11.826 |08 | |00478 00478| +720752 |V0752 Sgr *|174758.1-262539 |EA/DM: | 12.2 | 12.8 | 12.7 |p |23914.865 | | 1.919606 |13 | |00478 00478| +720753 |V0753 Sgr |174802.2-230832 |M | 14.5 |< 17.0 | |p |28960. | | 314.7 | | |00478 00478| +720754 |V0754 Sgr |174845.5-295537 |LB | 12.7 | 13.2 | |p | | | | | |00478 00478| +720755 |V0755 Sgr *|174846.2-255310 |EA/SD | 13.5 | 16.0 | |p |26915.435 | | 2.14008 |08 | |00478 00478| +720756 |V0756 Sgr |174848.9-215252 |RRAB | 11.7 | 12.8 | |p |29434.550 | | 0.5239687 |35 : |F5: |03506 00478| +720757 |V0757 Sgr *|174939.5-261033 |EA/SD: | 13.5 | 14.7 | 13.8 |p |28799.23 | | 0.738988 |16 | |00478 00478| +720758 |V0758 Sgr |174959.3-290059 |LB | 13.2 | 14.8 | |p | | | | |M2 |02448 02448| +720759 |V0759 Sgr |175019.7-272502 |NL | 13.6 | 16.0 | |p | | | | | |00478 00478| +720760 |V0760 Sgr *|175010.8-225053 |RVA | 12.0 | 13.6 | 13.4 |p |27987.40 | | 45.28 | |G5 |00478 00478| +720761 |V0761 Sgr *|175030.8-293654 |EA/SD: | 12.7 | 13.5 | 12.8 |p |29434.565 | | 1.43335 |11 | |00001 00296| +720762 |V0762 Sgr *|175103.5-295833 |M | 13.0 |< 17.0 | |p |26860. | | 444. | |S6,4 |00478 00478| +720763 |V0763 Sgr *|175121.6-290157 |M | 13.4 |< 17.0 | |p |29380. | | 168. | | |00478 00478| +720764 |V0764 Sgr |175132.8-230657 |M | 13.0 |< 17.0 | |p |28765. | | 267.4 | |M4e |00478 00478| +720765 |V0765 Sgr |175154.1-282631 |EA/SD | 12.8 |< 16.5 | |p |28077.406 | | 4.12533 |12 | |00296 00296| +720766 |V0766 Sgr *|175157.0-281702 |EA | 11.0 | 12.9 | |p |26566.70 | | 147.105 |06 |A6/9(e) |00478 00478| +720767 |V0767 Sgr |175228.4-264213 |RR | 12.9 | 13.4 | |p |28342.39 | | 0.670195 |30 | |00296 00296| +720768 |V0768 Sgr *|175257.7-281335 |EA/KE: | 12.5 | 13.2 | 13.0 |p |24681.735 | | 1.155664 |21 *| |00478 00478| +720769 |V0769 Sgr |175304.3-281802 |LB | 13.7 | 14.5 | |p | | | | | |00478 00478| +720770 |V0770 Sgr *|175256.2-244757 |EB/KE: | 12.7 | 13.4 | 13.1 |p |28995.57 | | 1.015247 | | |00478 00478| +720771 |V0771 Sgr |175328.4-244628 |GCAS | 8.9 | 9.38 | |B | | | | |B0ne |00478 00478| +720772 |V0772 Sgr |175414.5-294900 |L | 14.0 | 15.3 | |p | | | | | |00478 02448| +720773 |V0773 Sgr *|175417.6-264530 |DCEP | 12.00 | 12.72 | |V |44024.38 | | 5.748445 |28 | |00001 00296| +720774 |V0774 Sgr |175426.1-231410 |LB | 12.5 | 13.9 | |p | | | | |M5 |00478 00478| +720775 |V0775 Sgr |175507.0-284158 |RRAB | 14.4 | 15.7 | |p |28420.271 | | 0.462709 |12 | |00296 00296| +720776 |V0776 Sgr |175513.2-280022 |LB | 10.6 | 11.1 | |p | | | | |M0-M1 |00478 00478| +720777 |V0777 Sgr *|174625.4-261201 |EA/GS | 10.42 | 10.7 | |B |29411.7 | | 936.07 |06 |K5Ib+A |01600 00478| +720778 |V0778 Sgr *|175512.4-244145 |EA/D | 11.7 | 12.2 | 12.1 |p |27516.54 | | 4.057602 |10 | |00478 00478| +720779 |V0779 Sgr *|175537.1-281800 |EW/KW | 11.5 | 12.1 | 12.0 |p |28640.4664 | | 0.4450342 | |F8 |02448 02448| +720780 |V0780 Sgr *|175540.8-255133 |EA/SD: | 12.8 | 13.6 | 12.9 |p |29107.45 | | 0.86031 |14 | |00478 00478| +720781 |V0781 Sgr |175557.5-280151 |LB | 12.5 | 14.0 | |p | | | | |C(N0) |00478 00478| +720782 |V0782 Sgr *|175637.4-274952 |EA | 12.4 | 13.2 | |p |28638.54 | | 2.529897 |05 | |00478 00478| +720783 |V0783 Sgr |175642.5-250435 |EA | 13.0 | 13.9 | |p |28392.35 | | 2.36494 |19 | |00478 00478| +720784 |V0784 Sgr *|175712.4-255833 |EB/DM: | 12.1 | 12.8 | 12.8 |p |27141.62 | | 1.81916 | | |00478 00478| +720785 |V0785 Sgr |175820.9-284347 |LB | 12.6 | 13.8 | |p | | | | | |02448 02448| +720786 |V0786 Sgr *|175911.5-280840 |EA | 11.4 | 13.0 | |p |28691.8 | | 155.90 |04 | |00296 00296| +720787 |V0787 Sgr |180002.2-303030 |NA | 7.2 : |< 16.5 | |p |28680. :|1937 | | |pec |01660 00296| +720788 |V0788 Sgr |180004.7-290725 |M | 15.1 | 18.5 | |B |34570. | | 199.5 | | |00001 05589| +720789 |V0789 Sgr *|175953.1-280926 |EA/D | 12.3 | 13.0 | 12.7 ? |p |28747.306 | | 2.552340 |10 *| |02448 02448| +720790 |V0790 Sgr |180017.4-234509 |I | 13.5 | 16.0 | |p | | | | | |00478 00478| +720791 |V0791 Sgr *|180155.0-294028 |EA/SD: | 13.8 | 14.8 | |p |28688.314 | | 1.593259 |12 | |02448 02448| +720792 |V0792 Sgr *|180304.7-225150 |EB/D | 11.7 | 12.4 | 12.2 |p |28807.27 | | 3.930956 | | |00478 00478| +720793 |V0793 Sgr *|180414.3-271906 |M | 14.5 | 18.0 | |p |29100. | | 195. | | |00478 00478| +720794 |V0794 Sgr *|180428.3-290815 |RV | 12.4 | 15.6 | |p |28395. | | 175.2 | |M3eIa-M4Ia |00478 00296| +720795 |V0795 Sgr |193839.5-450037 |EA/SD: | 11.3 |< 13.3 | |p |28074.21 | | 1.35191 |20 : | |00016 CoD | +720796 |V0796 Sgr |194639.9-402723 |RRAB | 11.6 | 12.3 | |V |34238.388 | | 0.625566 |20 | |00080 06286| +720797 |V0797 Sgr |184454.4-302714 |RRAB | 14.6 | 15.2 | |p |26248.001 | | 0.4941035 |15 | |01598 01598| +720798 |V0798 Sgr |184631.3-285128 |RRAB | 13.9 | 15.2 | |p |26238.017 | | 0.5687622 |18 | |01598 01598| +720799 |V0799 Sgr |184629.2-280754 |RRAB | 14.8 | 15.6 | |p |26329.775 | | 0.4948335 |16 | |01598 01598| +720800 |V0800 Sgr |184733.7-290512 |RRAB | 14.1 | 15.3 | |p |26408.599 | | 0.5613666 |20 | |01598 01598| +720801 |V0801 Sgr *|184839.9-270145 |EA/DM: | 14.7 | 15.4 | 14.9 |p |25928.022 | | 1.934850 |25 | |01598 01598| +720802 |V0802 Sgr *|184841.0-260904 |CWA | 13.26 | 14.34 | |V |38237.805 | | 13.5147 |48 |F8: |05375 01598| +720803 |V0803 Sgr *|184849.0-272618 |EA/DM: | 14.7 | 15.4 | |p |26385.948 | | 1.885874 |18 *| |01598 01598| +720804 |V0804 Sgr |184859.9-274900 |RRAB | 14.7 | 15.4 | |p |26215.148 | | 0.5132710 |12 : | |01598 01598| +720805 |V0805 Sgr |184933.5-284513 |RRAB | 14.7 | 15.4 | |p |26203.026 | | 0.6406812 |10 | |01598 01598| +720806 |V0806 Sgr |184945.7-262902 |RRAB | 14.1 | 15.0 | |p |26274.141 | | 0.5650292 |16 | |01598 01598| +720807 |V0807 Sgr |184959.8-310459 |RRAB | 14.5 | 15.4 | |p |26150.563 | | 0.5859507 |15 | |01598 01598| +720808 |V0808 Sgr |184958.1-281256 |RRAB | 14.8 | 15.3 | |p |26404.358 | | 0.4947376 |13 | |01598 01598| +720809 |V0809 Sgr |185009.3-271305 |RRAB | 14.6 | 15.3 | |p |26309.045 | | 0.5569029 |12 | |01598 01598| +720810 |V0810 Sgr |185023.2-273933 |RRAB | 14.4 | 15.2 | |p |26349.125 | | 0.5424195 |14 | |01598 01598| +720811 |V0811 Sgr |185036.1-301324 |RRAB | 14.2 | 14.8 | |p |26568.022 | | 0.4784034 |15 | |01598 01598| +720812 |V0812 Sgr |185052.7-301702 |RRAB | 14.8 | 15.4 | |p |26385.677 | | 0.5069735 |18 | |01598 01598| +720813 |V0813 Sgr |185107.7-271250 |RRAB | 14.6 | 15.3 | |p |26363.427 | | 0.4673535 |11 | |01598 01598| +720814 |V0814 Sgr |185146.5-314426 |RRAB | 13.4 | 14.4 | |p |26282.374 | | 0.5507782 |12 | |01598 01598| +720815 |V0815 Sgr |185220.0-302845 |RRAB | 14.3 | 15.3 | |p |26290.844 | | 0.4487108 |10 | |01598 01598| +720816 |V0816 Sgr |185235.0-282312 |RRAB | 14.6 | 15.4 | |p |26378.264 | | 0.5456616 |15 | |01598 01598| +720817 |V0817 Sgr |185246.4-243825 |RRAB | 14.6 | 15.5 | |p |26244.989 | | 0.4655084 |16 | |01598 01598| +720818 |V0818 Sgr *|185315.0-284303 |RRAB | 14.6 | 15.3 | |p |25993.338 | | 0.523751 |23 | |01598 01598| +720819 |V0819 Sgr *|185401.1-255147 |RRAB | 14.1 | 15.0 | |p |26088.405 | | 0.5123466 |15 | |01598 01598| +720820 |V0820 Sgr |185401.3-272849 |RRAB | 13.8 | 15.1 | |p |26081.412 | | 0.5316468 |17 | |01598 01598| +720821 |V0821 Sgr |185428.7-232456 |RRC | 14.3 | 14.6 | |p |26282.185 | | 0.3678216 |35 | |01598 01598| +720822 |V0822 Sgr |185443.7-280750 |RRAB | 15.0 | 15.7 | |p |26438.810 | | 0.6828666 |19 | |01598 01598| +720823 |V0823 Sgr |185450.9-291646 |RRAB | 14.7 | 15.5 | |p |26574.736 | | 0.4467935 |20 | |01598 01598| +720824 |V0824 Sgr *|185510.1-274117 |EW | 14.9 | 15.2 | 15.2 |p |26523.396 | | 0.7867419 | | |01598 01598| +720825 |V0825 Sgr |185546.1-291819 |RRAB | 14.8 | 15.6 | |p |26269.358 | | 0.5937966 |07 | |01598 01598| +720826 |V0826 Sgr |185537.1-224501 |RRAB | 14.0 | 15.0 | |p |26571.290 | | 0.4548674 |18 | |01400 01400| +720827 |V0827 Sgr |185609.3-281434 |RRAB | 14.9 | 15.5 | |p |26405.355 | | 0.4874996 |14 | |01598 01598| +720828 |V0828 Sgr *|185720.9-300720 |RRC | 14.7 | 15.0 | |p |26326.352 | | 0.3633023 |40 | |01598 01598| +720829 |V0829 Sgr |185712.6-260139 |RRAB | 14.2 | 15.2 | |p |26199.979 | | 0.3732583 |15 | |01598 01598| +720830 |V0830 Sgr |185749.1-292143 |RRAB | 13.9 | 15.2 | |p |26261.577 | | 0.3954471 |12 | |01598 01598| +720831 |V0831 Sgr |185736.1-230851 |RRAB | 14.3 | 15.5 | |p |27620.257 | | 0.5241835 |18 | |01400 01400| +720832 |V0832 Sgr |185746.2-251424 |RRAB | 14.8 | 15.5 | |p |26377.001 | | 0.4958414 |13 | |01598 01598| +720833 |V0833 Sgr |185803.4-271836 |RRAB | 13.8 | 14.5 | |p |26353.075 | | 0.5880825 |24 | |01598 01598| +720834 |V0834 Sgr |185831.1-291557 |RRAB | 14.8 | 15.5 | |p |26387.903 | | 0.5927139 |14 | |01598 01598| +720835 |V0835 Sgr |185829.9-251410 |RRAB | 14.9 | 15.5 | |p |26178.407 | | 0.5906682 |13 | |01598 01598| +720836 |V0836 Sgr |185851.4-250207 |SR | 14.4 | 15.1 | |p | | | 80. | | |01598 01598| +720837 |V0837 Sgr |185912.8-244624 |RRAB | 13.7 | 14.9 | |p |26414.856 | | 0.5726207 |13 | |01598 01598| +720838 |V0838 Sgr *|185945.4-285148 |RRAB | 13.6 | 15.0 | |p |26277.962 | | 0.5565165 |10 | |01598 01598| +720839 |V0839 Sgr *|185937.2-232152 |CWB | 14.50 | 15.33 | |V |41513.713 | | 1.835367 |33 | |09831 01598| +720840 |V0840 Sgr |185957.0-295345 |RRAB | 15.0 | 15.7 | |p |26293.332 | | 0.4741555 |18 | |01598 01598| +720841 |V0841 Sgr *|190022.5-314318 |RRAB | 14.6 | 15.5 | |p |26390.466 | | 0.5666805 |15 | |01598 01598| +720842 |V0842 Sgr |185957.3-281446 |RRAB | 14.7 | 15.9 | |p |26273.043 | | 0.4608651 |11 : | |01598 01598| +720843 |V0843 Sgr |190010.3-265730 |RRC | 15.2 | 15.6 | |p |26197.055 | | 0.3247891 |45 | |01598 01598| +720844 |V0844 Sgr *|190014.0-263445 |RRAB | 15.2 | 15.9 | |p |26007.189 | | 0.5310747 |16 | |01598 01598| +720845 |V0845 Sgr *|190045.8-231438 |EW | 14.2 | 14.8 | 14.6 |p |26498.926 | | 0.5287385 | | |01598 01598| +720846 |V0846 Sgr |190111.8-264503 |RRAB | 14.6 | 15.2 | |p |26118.132 | | 0.5318327 |15 | |01598 01598| +720847 |V0847 Sgr |190139.8-265608 |RRAB | 14.4 | 15.7 | |p |26209.675 | | 0.4600653 |13 | |01598 01598| +720848 |V0848 Sgr |190224.9-281753 |RRAB | 15.5 | 16.1 | |p |26549.337 | | 0.5149085 |14 | |01598 01598| +720849 |V0849 Sgr |190237.2-310741 |EA | 12.9 | 14.2 | |p |26289.110 | | 2.95061 |15 *| |01598 01598| +720850 |V0850 Sgr |190500.9-302411 |RRAB | 14.0 | 15.2 | |p |26344.332 | | 0.5196097 |15 | |01598 01598| +720851 |V0851 Sgr |190533.0-304827 |RRAB | 14.7 | 15.4 | |p |26444.279 | | 0.5417421 |12 | |01598 01598| +720852 |V0852 Sgr |190515.8-244127 |RRAB | 15.1 | 15.8 | |p |26225.346 | | 0.5049887 |11 | |01598 01598| +720853 |V0853 Sgr |190646.1-295629 |RRAB | 14.2 | 14.8 | |p |26292.856 | | 0.7275312 |24 | |01598 01598| +720854 |V0854 Sgr |190742.4-250224 |SR | 14.2 | 15.4 | |p | | | 47.50 | | |01598 01598| +720855 |V0855 Sgr |190807.6-291123 |RRAB | 15.4 | 15.9 | |p |26374.029 | | 0.5563080 |18 | |01598 01598| +720856 |V0856 Sgr |190931.6-271622 |RRAB | 14.4 | 15.5 | |p |26279.697 | | 0.5325551 |17 | |01598 01598| +720857 |V0857 Sgr |190944.0-292752 |RRAB | 14.6 | 15.8 | |p |26255.772 | | 0.6900761 |14 | |01598 01598| +720858 |V0858 Sgr |190946.5-294008 |EA/SD: | 14.2 | 15.5 | |p |26414.815 | | 1.072605 |15 *| |01598 01598| +720859 |V0859 Sgr *|190934.5-242421 |RRAB | 14.6 | 15.5 | |p |26320.110 | | 0.4659810 |15 | |01598 01598| +720860 |V0860 Sgr |191039.1-283646 |RRAB | 15.0 | 15.6 | |p |26508.289 | | 0.5499901 |12 | |01598 01598| +720861 |V0861 Sgr |191048.8-291810 |RRAB | 14.4 | 15.7 | |p |26360.273 | | 0.5698756 |12 | |01598 01598| +720862 |V0862 Sgr |191109.8-245304 |RRAB | 15.1 | 15.8 | |p |26478.137 | | 0.5216189 |20 | |01598 01598| +720863 |V0863 Sgr |191133.1-254652 |RRAB | 15.1 | 15.7 | |p |26436.157 | | 0.5156861 |14 | |01598 01598| +720864 |V0864 Sgr |191145.2-265052 |RRAB | 14.8 | 15.8 | |p |26063.870 | | 0.4632683 |15 | |01598 01598| +720865 |V0865 Sgr |191201.2-234038 |DSCT | 14.4 | 14.9 | |p |26268.732 | | 0.11359409 |26 | |01598 01598| +720866 |V0866 Sgr |191217.3-265608 |RRAB | 12.4 | 13.5 | |p |26356.592 | | 0.5973433 |15 | |01598 01598| +720867 |V0867 Sgr |191257.7-283132 |RRAB | 15.6 | 15.9 | |p |26129.819 | | 0.4053721 |20 | |01598 01598| +720868 |V0868 Sgr |191309.8-283055 |RRAB | 15.4 | 16.1 | |p |26265.714 | | 0.5812065 |20 | |01598 01598| +720869 |V0869 Sgr |191319.0-281318 |RRAB | 14.4 | 15.3 | |p |26352.540 | | 0.5483316 |10 | |01598 01598| +720870 |V0870 Sgr |191351.3-252657 |RRAB | 14.0 | 15.5 | |p |26277.984 | | 0.4496928 |13 | |01598 01598| +720871 |V0871 Sgr |191420.7-305220 |RRAB | 13.1 | 14.5 | |p |26421.861 | | 0.6950270 |13 | |01598 01598| +720872 |V0872 Sgr |191431.2-310703 |RRC | 14.4 | 15.0 | |p |26244.291 | | 0.3735253 |40 | |01598 01598| +720873 |V0873 Sgr |191417.3-250131 |RRAB | 14.9 | 15.7 | |p |26465.018 | | 0.5778171 |14 | |01598 01598| +720874 |V0874 Sgr |191426.5-234200 |RRAB | 14.8 | 15.4 | |p |26116.595 | | 0.5433479 |24 | |01598 01598| +720875 |V0875 Sgr |191444.6-245718 |RRAB | 14.4 | 15.5 | |p |26544.014 | | 0.4950461 |09 | |01598 01598| +720876 |V0876 Sgr |191503.9-281804 |RRAB | 14.9 | 15.8 | |p |26462.639 | | 0.4677259 |18 | |01598 01598| +720877 |V0877 Sgr |191541.2-254727 |RRAB | 14.6 | 15.5 | |p |26492.309 | | 0.6212388 |16 | |01598 01598| +720878 |V0878 Sgr |191552.3-284825 |RRAB | 14.7 | 15.5 | |p |26433.206 | | 0.6189279 |14 | |01598 01598| +720879 |V0879 Sgr *|191629.7-231040 |RRAB | 15.0 | 15.5 | |p |26464.122 | | 0.4906629 |25 | |01598 01598| +720880 |V0880 Sgr |191741.1-311311 |RRAB | 15.0 | 15.5 | |p |26093.319 | | 0.5373436 |13 | |01598 01598| +720881 |V0881 Sgr |191755.0-301700 |EA/SD: | 14.8 | 15.7 | |p |26140.263 | | 1.28246 |14 | |01598 01598| +720882 |V0882 Sgr *|191740.9-235852 |EA/SD: | 14.5 | 15.3 | 14.6 |p |26716.158 | | 4.06848 |15 | |01598 01598| +720883 |V0883 Sgr |191743.6-224314 |RRAB | 14.6 | 15.4 | |p |26149.876 | | 0.6289945 |20 | |01598 01598| +720884 |V0884 Sgr *|191836.9-282122 |RRAB | 14.0 | 15.5 | |p |26322.330 | | 0.5168271 | | |01598 01598| +720885 |V0885 Sgr |191830.9-233144 |RRAB | 14.3 | 15.3 | |p |26086.599 | | 0.7005342 |17 | |01598 01598| +720886 |V0886 Sgr |191836.5-251907 |RRAB | 14.8 | 15.8 | |p |26168.999 | | 0.6484454 |16 | |01598 01598| +720887 |V0887 Sgr |191836.4-242234 |RRAB | 14.2 | 15.2 | |p |26070.337 | | 0.6934490 |14 | |01598 01598| +720888 |V0888 Sgr |191925.7-312201 |RRAB | 14.7 | 15.5 | |p |26348.700 | | 0.5319859 |15 | |01598 01598| +720889 |V0889 Sgr *|191921.4-290827 |RRAB | 14.3 | 15.6 | |p |26591.178 | | 0.4757204 | | |01598 01598| +720890 |V0890 Sgr |191935.7-313253 |RRAB | 14.2 | 15.1 | |p |26431.059 | | 0.5331563 |15 | |01598 01598| +720891 |V0891 Sgr |192007.2-302248 |RRAB | 14.9 | 15.5 | |p |26102.498 | | 0.5865256 |25 | |01598 01598| +720892 |V0892 Sgr |192009.5-304612 |RRAB | 14.8 | 15.8 | |p |26429.363 | | 0.5207599 |15 | |01598 01598| +720893 |V0893 Sgr |191959.8-242752 |RRAB | 14.6 | 15.7 | |p |26215.113 | | 0.7062917 |16 | |01598 01598| +720894 |V0894 Sgr |192014.2-255904 |RRAB | 14.9 | 15.8 | |p |26271.522 | | 0.4916242 |10 | |01598 01598| +720895 |V0895 Sgr |192032.9-262438 |RRAB | 14.4 | 15.7 | |p |26558.596 | | 0.4537734 |10 | |01598 01598| +720896 |V0896 Sgr |192056.2-310257 |EA/SD: | 12.3 | 14.2 | |p |25962.957 | | 1.091379 |20 *| |01598 01598| +720897 |V0897 Sgr |192103.9-282100 |RRAB | 14.8 | 15.3 | |p |26249.768 | | 0.5329164 |20 | |01598 01598| +720898 |V0898 Sgr |192140.0-295249 |RRAB | 14.3 | 15.3 | |p |26187.456 | | 0.5502785 |17 | |01598 01598| +720899 |V0899 Sgr |192205.0-273421 |RRAB | 13.8 | 15.5 | |p |26557.812 | | 0.4589226 |11 | |01598 01598| +720900 |V0900 Sgr |192334.3-281028 |RRAB | 13.7 | 15.3 | |p |26281.023 | | 0.4092612 |18 | |01598 01598| +720901 |V0901 Sgr |192458.0-282728 |RRAB | 14.2 | 15.6 | |p |26305.587 | | 0.5954149 |18 | |01598 01598| +720902 |V0902 Sgr *|192514.2-290909 |EW/KW | 14.4 | 14.8 | 14.8 |p |26273.155 | | 0.2939444 | | |01598 01598| +720903 |V0903 Sgr *|192544.2-272255 |EA/SD: | 12.8 | 13.7 | 13.0 |p |26369.598 | | 0.6730857 |20 | |01598 01598| +720904 |V0904 Sgr |192807.1-284251 |RRAB | 14.1 | 15.2 | |p |26457.932 | | 0.5281197 |15 | |01598 01598| +720905 |V0905 Sgr |192821.7-264447 |RRAB | 14.9 | 15.4 | |p |26088.544 | | 0.6547620 |12 | |01598 01598| +720906 |V0906 Sgr |192826.9-244658 |RRAB | 13.8 | 15.2 | |p |26378.386 | | 0.6630479 |19 | |01598 01598| +720907 |V0907 Sgr |185632.6-292603 |EA | 14.1 | 15.3 | |p |26382.594 | | 2.760319 |13 | |01598 01598| +720908 |V0908 Sgr | | | | | | | | | | | | |=V0737 Sgr +720909 |V0909 Sgr |182552.6-350127 |NA | 6.8 |< 16.0 | |p |30172. |1941 | | |pec(NOVA) |00301 USNO | +720910 |V0910 Sgr |183201.4-344222 |SRA | 12.8 | 14.1 | |p |36680. | | 348.3 | |Me |00001 08073| +720911 |V0911 Sgr |183404.0-322128 |M | 11.0 |< 19.5 | |p |36050. | | 285.56 | |M4e |00001 08073| +720912 |V0912 Sgr |183434.2-323310 |M | 11.9 | 18.4 | |p |36663. | | 219.25 |35 : |Me |00001 02447| +720913 |V0913 Sgr |183554.9-295543 |M | 13.4 | 16.3 | |p |31267. | | 285.2 | | |00001 02447| +720914 |V0914 Sgr |184043.8-364840 |M | 13.0 |< 19.5 | |p |35649. | | 332.0 | | |00001 08613| +720915 |V0915 Sgr |184132.6-290404 |M | 11.0 |< 17. | |p |33860. | | 281.8 | | |00848 02460| +720916 |V0916 Sgr |184450.4-344857 |M | 13.1 | 17.0 | |p |34180. | | 199.0 |40 |Me |00001 02447| +720917 |V0917 Sgr |184849.6-364201 |M | 11.5 | 16.5 | |p |20713. | | 205. | | |00256 08613| +720918 |V0918 Sgr |185418.7-270552 |M | 13.0 | 17. : | |p |24320. | | 283. | | |00001 01659| +720919 |V0919 Sgr *|190345.1-165955 |ZAND: | 12.0 |< 14.2 | |p | | | | |Mep |01659 09822| +720920 |V0920 Sgr |190343.3-155636 |M | 13.0 |< 15.5 | |p |27630. | | 280. | | |04233 04233| +720921 |V0921 Sgr |190443.0-354422 |M | 14.0 | 17.5 | |p |20715. | | 400. | | |00256 GSC | +720922 |V0922 Sgr |191117.1-335828 |M | 11.0 | 17.0 | |p |18889. | | 279. | | |00256 UCAC2| +720923 |V0923 Sgr |191631.4-180136 |M | 12.6 |< 16. | |p |24365. | | 251.5 | | |01000 01659| +720924 |V0924 Sgr |191837.7-363447 |M | 12.0 | 16.5 : | |p | | | 285. : | |Me |00256 2MASS| +720925 |V0925 Sgr |191905.0-193405 |M | 12.1 |< 16.0 | |p |28660. | | 213. | | |04233 04233| +720926 |V0926 Sgr |192720.0-185207 |RRAB | 14.9 | 15.9 | |p |26509.316 | | 0.6310852 |16 | |01400 01400| +720927 |V0927 Sgr |180743.2-332117 |NA | 7.5 : |< 16.5 | |p |31197. |1944 | | |pec(NOVA) |01663 08953| +720928 |V0928 Sgr |181900.3-280602 |N | 8.5 |< 14.7 | |p |32316. |1947 | | |pec(NOVA) |01665 01665| +720929 |V0929 Sgr |182505.5-313112 |M | 12.6 | 18.3 | |p |35687. | | 194.5 | |M4e |06272 06272| +720930 |V0930 Sgr |182639.4-300315 |M | 14.3 |< 16.3 | |p |34140. | | 262.5 | |M5-6 |00001 03515| +720931 |V0931 Sgr |182703.7-283218 |M | 12.5 |< 15.5 | |p |36780. | | 239. | |M7-8 |06279 06279| +720932 |V0932 Sgr |183007.9-305340 |M | 12.7 | 17.5 | |p |36750. | | 225.0 | |M6e |02447 02447| +720933 |V0933 Sgr |183057.4-310833 |M | 11.3 | 16.5 | |p |36748. | | 281.4 | |M8-9e |00001 00705| +720934 |V0934 Sgr |183149.4-333749 |M | 13.8 | 18.2 | |p |35961. | | 179.6 | | |00001 01613| +720935 |V0935 Sgr *|183200.3-311158 |M | 11.1 | 17.5 | |p |36779. | | 239.8 | |M5e |00001 02447| +720936 |V0936 Sgr |183305.5-333434 |M | 14.6 |< 18.9 | |p |36825. | | 280. | | |00001 01613| +720937 |V0937 Sgr |183343.2-315546 |M | 14.8 |< 18.7 | |p |36747. | | 252.5 | | |00001 01613| +720938 |V0938 Sgr *|183420.3-312854 |M | 14.8 | 17.9 | |p |36720. | | 219.81 : |50 | |00001 2MASS| +720939 |V0939 Sgr |183423.1-265432 |M | 13.8 |< 16.3 | |p |27620. | | 336. | | |04218 04218| +720940 |V0940 Sgr |183448.2-311822 |M | 12.0 | 18.4 | |p |36728. | | 173.3 | |Me |00001 2MASS| +720941 |V0941 Sgr |183443.5-293449 |M | 11. |< 17. | |p |40028. | | 203. | |M7 |08526 08526| +720942 |V0942 Sgr |183648.3-360206 |M | 12.6 | 18.0 | |p |36777. | | 193.5 | |Me |00001 02447| +720943 |V0943 Sgr |183643.3-324134 |M | 12.6 | 18.1 | |p |36733. | | 171.4 |47 |Me |00001 02447| +720944 |V0944 Sgr |183726.4-351712 |M | 12.8 | 18.1 | |p |36692. | | 209.6 | |Me |00001 GSC | +720945 |V0945 Sgr |183710.0-274210 |M | 13.8 | 17.0 : | |p |25800. | | 247.5 | | |00001 04218| +720946 |V0946 Sgr |183821.4-363523 |M | 13. | 17. | |p |21123. | | 135. | | |00256 08086| +720947 |V0947 Sgr |183808.4-295820 |M | 11.4 | 16.6 | |p |34230. | | 145.3 |48 |Me |00001 02447| +720948 |V0948 Sgr |184039.6-354915 |M | 12.0 |< 17. | |p |25712. | | 310. | | |03516 03516| +720949 |V0949 Sgr |184103.2-280936 |M | 15.8 |< 17. | |p |20330. :|1914 | | | |00256 GSC | +720950 |V0950 Sgr |184225.5-345746 |M | 13.5 | 18.8 | |p |36810. | | 218.67 | | |00001 GSC | +720951 |V0951 Sgr |184227.2-311400 |M | 13.5 |< 16. | |p |21066. | | 230. | | |00256 2MASS| +720952 |V0952 Sgr |184237.4-321408 |M | 13.1 | 15.8 | |p |28635. | | 295.4 | | |00001 02447| +720953 |V0953 Sgr |184237.5-311254 |M | 12.8 |< 15.9 | |p |27670. | | 229.0 | |Me |00001 02447| +720954 |V0954 Sgr |184305.8-350434 |SRA | 13.2 | 15.6 | |p |34160. | | 206.5 | | |00001 02447| +720955 |V0955 Sgr |184246.9-325249 |M | 14.2 |< 17. | |p |20337. | | 148. | | |00256 01613| +720956 |V0956 Sgr |184322.4-340910 |M | 13.1 |< 17.2 | |p |28705. | | 258.0 | |Me |00001 02447| +720957 |V0957 Sgr |184348.1-314807 |M | 12.3 |< 17. | |p |18890. | | 241.5 | |Me |00256 2MASS| +720958 |V0958 Sgr |184457.3-271401 |M | 13.0 |< 16.2 | |p |25750. | | 159.5 | | |04218 GSC | +720959 |V0959 Sgr |184557.6-342039 |M | 13.5 |< 17. | |p |18880. | | 267. | | |00256 01613| +720960 |V0960 Sgr *|184608.4-335257 |M | 13.0 | 17. | |p |18916. | | 289. : | |Me |00256 GSC | +720961 |V0961 Sgr |184559.3-302945 |M | 14.2 | 17. | |p |21066. | | 266. | | |00256 2MASS| +720962 |V0962 Sgr |184706.3-314646 |M | 12.0 | 17. | |p |18882. | | 546. | |Me |00256 2MASS| +720963 |V0963 Sgr |184952.9-313353 |M | 10.7 |< 17.0 | |p |40480. | | 261.3 | | |00001 06274| +720964 |V0964 Sgr |185248.8-294053 |M | 13. |< 17. | |p |21120. | | 193. | | |00256 2MASS| +720965 |V0965 Sgr |185445.5-330519 |M | 12.2 |< 17. | |p |19977. | | 266. | | |00256 GSC | +720966 |V0966 Sgr *|185948.0-295147 |EA/SD: | 13.9 | 14.8 | 14.0 |p |26573.5616 | | 1.5492233 |19 *| |01595 01598| +720967 |V0967 Sgr |190136.1-271809 |M | 14.5 |< 17. | |p |20340. | | 242. | | |00256 01613| +720968 |V0968 Sgr |190206.5-265336 |M | 14. |< 17. | |p |18916. | | 227. | | |00256 01613| +720969 |V0969 Sgr |190231.0-313116 |M | 9.6 | 16.0 | |p |18915. | | 262. | |Me |00256 02386| +720970 |V0970 Sgr |190317.9-265045 |M | 13.8 | 17. | |p |18917. | | 305. | | |00256 01613| +720971 |V0971 Sgr |190755.5-323914 |M | 10.0 | 16.5 | |p |21066. | | 269. | | |00256 2MASS| +720972 |V0972 Sgr |190939.5-354321 |M | 12.8 |< 17. | |p |21062. | | 209. | | |00256 UCAC2| +720973 |V0973 Sgr |190930.1-321627 |M | 12. | 16.5 : | |p |18914. | | 238. | |Me |00256 2MASS| +720974 |V0974 Sgr |190948.7-261358 |EA | 14.7 | 16.0 | |p |27623.4858 | | 2.113405 |16 *| |01595 01598| +720975 |V0975 Sgr |191021.1-300904 |M | 13.4 | 17. | |p |21066. | | 205. | | |00256 2MASS| +720976 |V0976 Sgr |191042.7-333449 |M | 14.4 | 17. | |p |20337. | | 221. | | |00256 2MASS| +720977 |V0977 Sgr *|191054.5-232803 |EA | 13.5 | 14.7 | |p |26573.3710 | | 2.615713 |15 | |01595 01598| +720978 |V0978 Sgr |191455.3-272416 |M | 12.1 | 17. : | |p |20716. | | 200. | |Me |00256 GSC | +720979 |V0979 Sgr |191610.8-311522 |M | 12.9 |< 15.0 | |V |53821. | | 196. | | |00001 2MASS| +720980 |V0980 Sgr |192003.9-294726 |EA/SD: | 13.8 |< 15.3 | |p |26570.4225 | | 2.497530 |15 | |01595 01598| +720981 |V0981 Sgr *|192327.0-244700 |EA | 14.7 | 15.8 | 14.8 |p |26266.451 | | 2.627627 |20 *| |01595 01598| +720982 |V0982 Sgr |192612.4-292716 |M | 14.8 |< 17. | |p |20043. | | 170. | | |00256 GSC | +720983 |V0983 Sgr | | | | | | | | | | | | |=V0347 Sgr +720984 |V0984 Sgr |194256.6-212351 |M | 10.5 |< 15. | |p |26900. :| | | |M0e |00190 00190| +720985 |V0985 Sgr *|175127.5-291700 |EW/KW | 13.8 | 14.3 | 14.3 |p |28398.299 | | 0.3486618 | | |00296 00296| +720986 |V0986 Sgr *|175402.4-270047 |EA/DS | 13.0 | 14.1 | |p |27981.479 | | 10.4300 |05 | |00296 00296| +720987 |V0987 Sgr |175405.4-280701 |EA/D | 14.4 | 15.0 | |p |28096.28 | | 2.80500 |11 *| |00296 00296| +720988 |V0988 Sgr |175552.3-272003 |EA | 13.8 | 14.6 | |p |28446.241 | | 2.46510 |13 *| |00296 00296| +720989 |V0989 Sgr |175639.0-295619 |EA/DS | 14.3 | 15.2 | |p |28428.198 | | 16.6361 |05 *| |00296 00296| +720990 |V0990 Sgr |175718.7-281908 |NA | 11.1 |< 14.7 | |p |28424. |1936 | | | |00296 00296| +720991 |V0991 Sgr |175756.2-293608 |CWA: | 14.1 | 14.9 | |p |28747.01 | | 14.6741 |30 | |00046 00296| +720992 |V0992 Sgr |175852.8-303735 |EA/KE: | 14.2 | 14.8 | |p |28362.309 | | 1.269771 |10 *| |00296 00296| +720993 |V0993 Sgr *|175926.9-324117 |EA | 13.3 | 14.1 | 13.7 |p |28394.317 | | 0.834706 |15 | |00296 00296| +720994 |V0994 Sgr *|175950.8-315507 |EA/SD | 12.7 | 14.2 | 12.8 : |p |28424.328 | | 1.418347 |17 *| |00296 00296| +720995 |V0995 Sgr |175947.0-295721 |CWA: | 13.5 | 14.4 | |p |28350.67 | | 31.706 |30 | |00296 00296| +720996 |V0996 Sgr |180009.7-341412 |CWA | 14.0 | 14.7 | |p |28463.0 | | 15.776 |50 : | |00046 00296| +720997 |V0997 Sgr |180005.1-294853 |CWA | 13.8 | 14.6 | |p |28432.36 | | 31.824 |40 | |00296 00296| +720998 |V0998 Sgr *|180010.5-292606 |EA/KE: | 13.1 | 13.6 |( 0.04 : )|p |28342.338 | | 1.064900 |18 *| |00296 00296| +720999 |V0999 Sgr |180005.7-273314 |NB | 7.5 : | 16.6 | |p |18680. :|1910 | | |pec(NOVA) |00303 00478| +721000 |V1000 Sgr *|180029.4-314206 |EW/KW | 13.3 | 13.9 | 13.9 |p |28361.437 | | 0.4307794 | | |00296 00296| +721001 |V1001 Sgr |180048.1-291725 |EA/D | 13.4 | 14.0 | |p |28420.345 | | 3.05399 |10 *| |00296 00296| +721002 |V1002 Sgr *|180045.7-281003 |EW/KW | 13.4 | 13.7 | 13.7 |p |28404.158 | | 0.4384196 | | |00296 00296| +721003 |V1003 Sgr |180102.1-312358 |RRAB | 13.9 | 14.5 | |p |28361.421 | | 0.4488721 |18 | |00296 00296| +721004 |V1004 Sgr *|180103.9-312346 |CWA | 12.56 | 13.41 | |V |44151.26 | | 37.6375 |35 |F8: |00001 00296| +721005 |V1005 Sgr *|180059.2-284327 |EA | 13.8 | 14.4 | 13.9 |p |28074.279 | | 0.826985 |18 *| |00296 00296| +721006 |V1006 Sgr |180303.7-323221 |RRAB | 14.8 | 15.4 | |p |28094.194 | | 0.610070 |14 | |00296 00296| +721007 |V1007 Sgr |180359.0-345611 |RRAB | 14.6 | 15.3 | |p |28362.288 | | 0.550890 |20 | |00296 00296| +721008 |V1008 Sgr |180407.5-334658 |CWA: | 14.2 | 15.0 | |p |28097.26 | | 11.5918 |30 | |00296 00296| +721009 |V1009 Sgr |180407.6-322159 |RVA | 13.8 | 14.5 | |p |28687. | | 80. | | |00296 00296| +721010 |V1010 Sgr |180507.9-285157 |M: | 14.4 |< 15.2 | |p |28065. | | 395. | | |00296 00296| +721011 |V1011 Sgr |180535.0-292358 |EA | 14.4 |< 15.3 | |p |28424.32 | | 4.74065 |10 | |00296 00296| +721012 |V1012 Sgr |180614.1-314428 |NA | 8. |< 17. | |p |20356. |1914 | | | |01666 08953| +721013 |V1013 Sgr *|180629.9-330234 |EB | 14.8 | 15.2 | 15.0 |p |28391.382 | | 0.919660 | | |00296 00296| +721014 |V1014 Sgr |180645.9-272616 |NB | 10.8 |< 16.1 | |p |15551. :|1901 | | | |00303 07912| +721015 |V1015 Sgr |180902.0-322832 |NA | 7.1 |< 12. | |p |17054. |1905 | | | |01667 08953| +721016 |V1016 Sgr |181957.6-251115 |NA | 7.0 : | 15.0 | |p |14877. |1899 | | | |03517 03517| +721017 |V1017 Sgr *|183204.5-292313 |ZAND: | 6.2 | 14.94 | |B | | | | |G5IIIep |09847 07103| +721018 |V1018 Sgr |184823.8-200259 |RRAB | 13.1 | 14.2 | |p |26572.307 | | 0.6077705 |13 | |01400 01400| +721019 |V1019 Sgr |184857.3-191602 |RRC | 13.5 | 14.0 | |p |26242.355 | | 0.2863651 |35 | |01400 01400| +721020 |V1020 Sgr |184922.2-200411 |RRAB | 14.6 | 15.1 | |p |27353.218 | | 0.4807925 |15 | |01400 01400| +721021 |V1021 Sgr |185048.3-213446 |I | 13.2 | 13.8 | |p | | | | | |01400 01400| +721022 |V1022 Sgr |185116.3-185659 |RRAB | 14.9 | 15.4 | |p |27353.227 | | 0.755227 |21 | |01400 01400| +721023 |V1023 Sgr *|185122.7-203125 |EA/SD: | 12.9 | 13.8 | 13.0 : |p |26571.323 | | 0.7903759 |18 : | |01400 01400| +721024 |V1024 Sgr | | | | | | | | | | | | |=V0489 Sct +721025 |V1025 Sgr |185127.3-155154 |RRAB | 12.6 | 13.4 | |p |27364.181 | | 0.5800041 |19 | |01400 01400| +721026 |V1026 Sgr *|185145.5-182719 |EW/KW | 12.8 | 13.4 | 13.4 |p |26514.461 | | 0.3888659 | | |01400 01400| +721027 |V1027 Sgr |185252.0-190714 |RRAB | 14.7 | 15.6 | |p |26572.326 | | 0.6008056 |16 | |01400 01400| +721028 |V1028 Sgr *|185353.4-223506 |EA/D | 14.2 | 14.9 | 14.4 |p |27568.614 | | 5.14903 |15 *| |01400 01400| +721029 |V1029 Sgr |185417.3-204016 |RRAB | 14.5 | 15.6 | |p |27621.294 | | 0.4787621 |14 | |01400 01400| +721030 |V1030 Sgr |185439.9-192058 |RRAB | 14.4 | 15.2 | |p |27334.250 | | 0.5502906 |16 | |01400 01400| +721031 |V1031 Sgr |185456.2-225221 |RRAB | 14.8 | 15.4 | |p |27364.247 | | 0.5569925 |15 | |01400 01400| +721032 |V1032 Sgr *|185455.1-175531 |EW | 14.7 | 15.2 | 15.0 |p |26572.258 | | 0.6770114 | | |01400 01400| +721033 |V1033 Sgr *|185507.3-184304 |RRAB | 14.6 | 15.2 | |p |27597.559 | | 0.5492397 |10 : | |01400 01400| +721034 |V1034 Sgr *|185508.2-180726 |EA | 14.4 | 15.0 | |p |26571.18 | | 14.0532 |06 | |01400 01400| +721035 |V1035 Sgr |185544.8-185729 |EA | 15.0 | 15.8 | |p |26240.25 | | 3.32029 |11 *| |01400 01400| +721036 |V1036 Sgr |185620.4-180418 |RRAB | 14.1 | 15.4 | |p |26529.373 | | 0.4176487 |20 | |01400 01400| +721037 |V1037 Sgr |185625.2-191623 |RV: | 13.6 | 15.2 | |p | | | 33.8 | | |01400 01400| +721038 |V1038 Sgr |185636.3-212107 |EA/SD | 13.1 | 14.7 | |p |27337.266 | | 1.93231 |11 *| |01400 01400| +721039 |V1039 Sgr |185652.1-165522 |RRAB | 14.2 | 15.2 | |p |26516.525 | | 0.4880659 |12 | |01400 01400| +721040 |V1040 Sgr |185652.1-185221 |RRAB | 14.4 | 15.5 | |p |26529.350 | | 0.4763980 |12 | |01400 01400| +721041 |V1041 Sgr |185708.2-164104 |I | 14.3 | 14.9 | |p | | | | | |01400 01400| +721042 |V1042 Sgr |185737.4-163247 |M | 12.1 | 16.2 | |p |27068. | | 293.5 | |Me |01400 01400| +721043 |V1043 Sgr |185752.0-205337 |SR | 14.5 | 15.5 | |p | | | 75.2 : | | |01400 01400| +721044 |V1044 Sgr |185801.8-192443 |RRAB | 15.0 | 16.3 | |p |27386.225 | | 0.5871884 |16 | |01400 01400| +721045 |V1045 Sgr |185803.5-200729 |EA/SD | 12.4 | 13.8 | |p |27334.267 | | 1.128349 |17 *| |01400 01400| +721046 |V1046 Sgr |185805.3-203145 |I | 14.7 | 15.4 | |p | | | | | |01400 01400| +721047 |V1047 Sgr |185822.2-225614 |RRAB | 14.6 | 15.3 | |p |26514.443 | | 0.5665899 |14 | |01400 01400| +721048 |V1048 Sgr |185842.3-204011 |RRAB | 15.2 | 15.9 | |p |27334.310 | | 0.5468070 |16 | |01400 01400| +721049 |V1049 Sgr | | | | | | | | | | | | |=V0490 Sct +721050 |V1050 Sgr | | | | | | | | | | | | |=V0491 Sct +721051 |V1051 Sgr |185912.4-174835 |RRAB | 14.2 | 15.6 | |p |27354.232 | | 0.4483927 |12 | |01400 01400| +721052 |V1052 Sgr |185930.9-165209 |RRAB | 14.4 | 15.2 | |p |26239.299 | | 1.102461 |14 | |01400 01400| +721053 |V1053 Sgr |190013.5-200328 |RRAB | 14.7 | 15.6 | |p |27337.337 | | 0.6858151 |18 | |01400 01400| +721054 |V1054 Sgr |190024.1-194545 |RRAB | 15.0 | 15.7 | |p |27626.404 | | 0.4695838 |10 | |01400 01400| +721055 |V1055 Sgr |190017.1-150607 |RRAB | 12.2 | 13.2 | |p |27366.270 | | 0.7018135 |19 | |01400 01400| +721056 |V1056 Sgr *|190050.1-140607 |EB | 13.9 | 14.7 | 14.1 |p |27364.236 | | 0.9190621 | | |01400 01400| +721057 |V1057 Sgr |190116.0-223258 |I | 15.2 | 16.3 | |p | | | | | |01400 01400| +721058 |V1058 Sgr |190128.7-223901 |M | 13.4 |< 16.1 | |p |27375. | | 235. | |Me |01400 01400| +721059 |V1059 Sgr |190150.6-130942 |NA | 4.5 : | 16.5 | |p |14360. :|1898 | | |pec(NOVA) |00303 06067| +721060 |V1060 Sgr |190218.0-211418 |RRAB | 15.0 | 15.8 | |p |27353.289 | | 0.4910902 |14 | |01400 01400| +721061 |V1061 Sgr |190217.7-202327 |RRAB | 14.4 | 15.2 | |p |27337.303 | | 0.7191399 |22 | |01400 01400| +721062 |V1062 Sgr |190219.9-203815 |EA/SD | 14.1 | 16.0 | |p |26507.446 | | 0.9879127 |14 *| |01400 01400| +721063 |V1063 Sgr *|190211.1-165224 |RR | 14.9 | 15.6 | |p |27626.496 | | 0.4569827 | | |01400 01400| +721064 |V1064 Sgr |190231.3-142334 |SR | 15.0 | 15.7 | |p |27657. | | 77.7 | | |01400 01400| +721065 |V1065 Sgr |190240.5-160434 |RRAB | 14.8 | 15.5 | |p |26529.374 | | 0.5016250 |20 | |01400 01400| +721066 |V1066 Sgr |190250.0-150320 |RRAB | 14.6 | 15.4 | |p |26572.364 | | 0.5632676 |14 | |01400 01400| +721067 |V1067 Sgr |190315.4-210245 |RRAB | 14.2 | 15.6 | |p |26244.332 | | 0.5047958 |14 | |01400 01400| +721068 |V1068 Sgr *|190318.0-151423 |EW/KW | 15.1 | 15.4 | 15.4 |p |27568.601 | | 0.3699688 | | |01400 01400| +721069 |V1069 Sgr *|190349.2-210140 |RRAB | 12.9 | 13.9 | |p |26507.433 | | 0.4789412 |32 | |01400 01400| +721070 |V1070 Sgr |190351.2-174953 |M | 13.5 |< 16.5 | |p |27320. | | 282. | |Me |01400 01400| +721071 |V1071 Sgr *|190403.0-222831 |EA | 13.2 | 13.9 | |p |27360.267 | | 0.6780498 |25 *| |01400 01400| +721072 |V1072 Sgr *|190513.2-155947 |RRAB | 14.7 | 15.6 | |p |27360.231 | | 0.6172867 |18 | |01400 01400| +721073 |V1073 Sgr |190517.0-171534 |RRAB | 14.9 | 15.6 | |p |27353.299 | | 0.5239165 |12 | |01400 01400| +721074 |V1074 Sgr |190523.7-184707 |EA/SD | 12.7 | 15.2 | |p |26529.470 | | 2.405734 |16 *|F4III |01400 01400| +721075 |V1075 Sgr |190532.6-200326 |RRAB | 13.8 | 15.3 | |p |26572.310 | | 0.4669058 |14 | |01400 01400| +721076 |V1076 Sgr |190621.1-202605 |RRAB | 14.8 | 16.4 | |p |26571.299 | | 0.4557040 |12 | |01400 01400| +721077 |V1077 Sgr |190627.0-193636 |CWA | 12.45 | 13.74 | |V |36406.867 | | 13.42899 |34 | |05375 05680| +721078 |V1078 Sgr |190627.6-150755 |EA/SD: | 15.1 | 15.8 | |p |27629.97 | | 3.02236 |10 *| |01400 01400| +721079 |V1079 Sgr |190641.4-201410 |RRAB | 15.1 | 16.0 | |p |27334.297 | | 0.5618407 |20 | |01400 01400| +721080 |V1080 Sgr *|190633.7-135726 |RRC | 14.6 | 14.9 | |p |26572.37 | | 0.375565 |40 | |01400 01400| +721081 |V1081 Sgr *|190700.2-184423 |RRAB | 13.5 | 14.3 | |p |26572.295 | | 0.5633692 |17 | |01400 01400| +721082 |V1082 Sgr |190721.9-204651 |I | 14.2 | 15.9 | |p | | | | | |01400 01400| +721083 |V1083 Sgr |190755.5-193631 |RRAB | 14.4 | 15.6 | |p |26238.334 | | 0.4244491 |12 | |01400 01400| +721084 |V1084 Sgr |190813.6-195157 |RRAB | 14.7 | 15.9 | |p |27353.310 | | 0.5226359 |20 | |01400 01400| +721085 |V1085 Sgr |190824.3-215044 |RRAB | 14.8 | 16.1 | |p |27626.454 | | 0.6098373 |15 | |01400 01400| +721086 |V1086 Sgr |190817.5-161639 |RRAB | 14.1 | 15.2 | |p |26567.336 | | 0.5353675 |18 | |01400 01400| +721087 |V1087 Sgr |190820.4-152200 |SR | 14.7 | 15.9 | |p | | | 100. | | |01400 01400| +721088 |V1088 Sgr |190837.1-183951 |RRAB | 14.6 | 15.4 | |p |27626.453 | | 0.5435399 |19 | |01400 01400| +721089 |V1089 Sgr *|190846.3-172149 |UGSS | 13.8 | 17. : | |p | | | | | |05386 01400| +721090 |V1090 Sgr |190857.0-162607 |EA | 14.5 | 15.2 | |p |26529.380 | | 0.901675 |20 *| |01400 01400| +721091 |V1091 Sgr |190901.0-164005 |EA | 14.7 | 16.2 | |p |27364.35 | | 2.62715 |14 *| |01400 01400| +721092 |V1092 Sgr |190909.3-155809 |RRAB | 14.4 | 15.3 | |p |27360.282 | | 0.5187096 |14 | |01400 01400| +721093 |V1093 Sgr |190941.0-193801 |RRAB | 13.1 | 14.4 | |p |26571.314 | | 0.6389498 |16 | |01400 01400| +721094 |V1094 Sgr |190944.0-184617 |RRAB | 13.6 | 14.9 | |p |27364.265 | | 0.5660240 |19 | |01400 01400| +721095 |V1095 Sgr |191010.6-205045 |EA/SD | 13.5 | 15.4 | |p |26571.294 | | 2.465204 |11 *| |01400 01400| +721096 |V1096 Sgr |190957.0-145458 |RRAB | 14.7 | 16.0 | |p |27369.262 | | 0.6776629 |14 | |01400 01400| +721097 |V1097 Sgr |191025.4-165818 |RRAB | 15.4 | 16.0 | |p |26572.314 | | 0.5229915 |19 | |01400 01400| +721098 |V1098 Sgr |191026.3-153916 |EA/SD: | 14.5 | 15.5 | |p |26265.344 | | 1.214583 |14 *| |01400 01400| +721099 |V1099 Sgr |191125.9-221546 |RRAB | 13.9 | 15.5 | |p |27360.270 | | 0.6176183 |17 | |01400 01400| +721100 |V1100 Sgr *|191124.8-194923 |EA/SD | 12.1 | 13.9 | |p |26123.648 | | 3.59274 |12 |A5V |01400 01400| +721101 |V1101 Sgr |191122.1-193231 |RRAB | 14.3 | 15.5 | |p |27337.309 | | 0.5777992 |14 | |01400 01400| +721102 |V1102 Sgr |191151.6-222918 |RRAB | 15.6 | 16.4 | |p |27364.206 | | 0.4311674 | | |01400 01400| +721103 |V1103 Sgr |191148.9-202327 |RRAB | 14.9 | 15.8 | |p |27360.257 | | 0.4802959 |15 | |01400 01400| +721104 |V1104 Sgr |191201.1-211458 |RRAB | 15.8 | 16.7 | |p |27360.306 | | 0.4702917 |14 | |01400 01400| +721105 |V1105 Sgr |191231.4-191622 |RRAB | 15.2 | 16.1 | |p |27602.360 | | 0.4922023 |11 | |01400 01400| +721106 |V1106 Sgr |191233.0-192628 |SR | 14.8 | 15.9 | |p | | | 70. | | |01400 01400| +721107 |V1107 Sgr |191238.4-191620 |RRAB | 15.2 | 16.0 | |p |27334.262 | | 0.4809986 |24 | |01400 01400| +721108 |V1108 Sgr *|191243.6-180812 |EA/DS | 11.6 | 12.8 | 11.9 |p |26568.24 | | 46.5816 |01 *| |01400 01400| +721109 |V1109 Sgr *|191249.8-145109 |EB | 14.3 | 14.8 | 14.5 |p |26571.331 | | 0.6111293 | | |01400 01400| +721110 |V1110 Sgr |191314.8-142213 |RRC | 14.7 | 15.1 | |p |27355.257 | | 0.2232919 |35 | |01400 01400| +721111 |V1111 Sgr |191336.4-180422 |RRAB | 14.4 | 15.8 | |p |26509.299 | | 0.5054628 |13 | |01400 01400| +721112 |V1112 Sgr |191404.2-210318 |RRAB | 14.7 | 16.6 | |p |27353.296 | | 0.4754145 |13 | |01400 01400| +721113 |V1113 Sgr |191351.8-134354 |I | 13.5 | 14.7 | |p | | | | | |01400 01400| +721114 |V1114 Sgr |191415.8-152117 |EA/D | 14.4 | 14.8 | |p |26211.205 | | 2.77984 |10 *| |01400 01400| +721115 |V1115 Sgr |191453.9-182451 |RRAB | 13.9 | 14.9 | |p |26571.337 | | 0.3774694 |25 | |01400 01400| +721116 |V1116 Sgr |191448.6-160307 |RRAB | 14.4 | 15.6 | |p |26571.277 | | 0.5583953 |16 | |01400 01400| +721117 |V1117 Sgr |191447.7-142148 |RRAB | 14.8 | 15.7 | |p |27353.319 | | 0.6215678 |17 | |01400 01400| +721118 |V1118 Sgr |191528.9-220618 |RRAB | 13.9 | 14.8 | |p |26572.319 | | 0.4070440 |30 | |01400 01400| +721119 |V1119 Sgr |191524.3-161650 |RRAB | 15.0 | 15.9 | |p |26240.293 | | 0.4956613 |18 | |01400 01400| +721120 |V1120 Sgr |191532.6-191235 |EA/SD | 14.7 | 16.8 | |p |26529.342 | | 1.987048 |12 | |01400 01400| +721121 |V1121 Sgr |191624.4-160354 |SR | 13.3 | 16.3 | |p | | | 92.5 | | |01400 01400| +721122 |V1122 Sgr |191641.7-163256 |RRAB | 13.9 | 15.5 | |p |26567.335 | | 0.4775605 |17 | |01400 01400| +721123 |V1123 Sgr |191706.9-202040 |RRAB | 15.0 | 15.9 | |p |26567.299 | | 0.5779098 |13 | |01400 01400| +721124 |V1124 Sgr |191727.7-210257 |RRAB | 14.8 | 15.7 | |p |27367.258 | | 0.5696671 |24 | |01400 01400| +721125 |V1125 Sgr |191733.4-214603 |RRAB | 13.8 | 15.2 | |p |26568.308 | | 0.3867145 |20 | |01400 01400| +721126 |V1126 Sgr |191720.6-143733 |EA | 14.9 | 15.7 | |p |26517.521 | | 1.513268 |14 *| |01400 01400| +721127 |V1127 Sgr *|191804.9-225515 |RRAB | 15.0 | 15.6 | |p |27568.617 | | 0.5019931 |17 | |01400 01400| +721128 |V1128 Sgr |191852.4-190105 |RRAB | 14.8 | 16.1 | |p |26517.607 | | 0.4578241 |18 | |01400 01400| +721129 |V1129 Sgr |191851.2-181612 |SR | 14.7 | 16.2 | |p | | | 96. | |Me |01400 01400| +721130 |V1130 Sgr |192032.5-203220 |RRAB | 11.9 | 13.0 | |p |27360.246 | | 0.5680605 |13 | |01400 01400| +721131 |V1131 Sgr |192040.4-201617 |RRAB | 15.2 | 16.1 | |p |27565.492 | | 0.5509419 |17 | |01400 01400| +721132 |V1132 Sgr |192105.4-212808 |EA/SD | 14.9 | 16.0 | |p |26212.286 | | 0.9402668 |17 *| |01400 01400| +721133 |V1133 Sgr |192107.0-142503 |EA | 13.2 | 14.0 | |p |27334.294 | | 0.8053028 |15 *| |01400 01400| +721134 |V1134 Sgr |192244.7-205612 |EA/DM: | 13.7 | 14.4 | |p |26266.35 | | 9.8184 |08 *| |01400 01400| +721135 |V1135 Sgr |192244.3-200046 |RRAB | 14.6 | 15.9 | |p |27354.248 | | 0.5233104 |14 | |01400 01400| +721136 |V1136 Sgr *|192234.2-142525 |EA/SD | 13.6 | 14.8 | |p |26528.379 | | 1.470568 |14 | |01400 01400| +721137 |V1137 Sgr |192249.1-165639 |EA | 15.5 | 16.7 | |p |27601.321 | | 2.740399 |13 *| |01400 01400| +721138 |V1138 Sgr |192355.5-174633 |I | 14.0 | 14.8 | |p | | | | | |01400 01400| +721139 |V1139 Sgr |192350.3-150955 |I | 12.8 | 14.7 | |p | | | | | |01400 01400| +721140 |V1140 Sgr |192427.8-222830 |RRAB | 15.2 | 16.1 | |p |26572.301 | | 0.606537 |18 | |01400 01400| +721141 |V1141 Sgr |192425.6-151240 |RRAB | 14.9 | 15.7 | |p |27334.176 | | 0.6357017 |26 | |01400 01400| +721142 |V1142 Sgr |192447.0-185818 |RRAB | 15.2 | 16.1 | |p |26572.336 | | 0.7062310 |17 | |01400 01400| +721143 |V1143 Sgr |192452.8-180923 |M | 12.8 | 16.6 | |p |27460. | | 236. | |Me |01400 01400| +721144 |V1144 Sgr |192554.1-201921 |RRAB | 14.7 | 15.5 | |p |26571.356 | | 0.5841251 |23 | |01400 01400| +721145 |V1145 Sgr |192653.5-221110 |RRAB | 15.5 | 15.8 | |p |27355.154 | | 0.5821791 |17 | |01400 01400| +721146 |V1146 Sgr |192642.4-155757 |I | 14.2 | 15.2 | |p | | | | | |01400 01400| +721147 |V1147 Sgr |192728.6-223038 |RRAB | 14.7 | 15.7 | |p |26517.582 | | 0.4896342 |15 | |01400 01400| +721148 |V1148 Sgr *|180905.8-255908 |N | 8. |< 16. | |p |30956. :|1943 | | |pec(NOVA) |01669 08953| +721149 |V1149 Sgr |181830.5-281717 |N | 7.4 |< 16.5 | |p |31500. :|1945 | | |pec(NOVA) |01664 08953| +721150 |V1150 Sgr |181855.4-240532 |N | 12. |< 16.1 | |p | |1946 | | |pec(NOVA) |01669 USNO | +721151 |V1151 Sgr |182523.8-201159 |N | 10. |< 16. | |p |32320. :|1947 | | |pec(NOVA) |01669 08953| +721152 |V1152 Sgr |181436.1-343718 |RR | 15.5 | 16.5 | |p |26563.510 | | | | |00251 06286| +721153 |V1153 Sgr *|181824.8-345623 |CWB | 14.3 | 15.7 | |p |35661.800 | | 1.332624 |38 | |01640 06286| +721154 |V1154 Sgr | | | | | | | | | | | | |=V0948 Sgr +721155 |V1155 Sgr |185340.9-274110 |M | 13.2 |< 17. | |p |25750. | | 258. | |Me |00245 00245| +721156 |V1156 Sgr |190219.8-183132 |M | 12.2 |< 16. | |p |21040. | | 1262. /N| | |01003 01659| +721157 |V1157 Sgr |191011.8-202942 |M | 12.5 |< 15.6 | |p |26525. | | 140.45 | |C(R) |00001 01659| +721158 |V1158 Sgr |192012.8-405237 |M | 12.1 |< 15.5 | |p |25790. | | 241. | |M2e |03516 03516| +721159 |V1159 Sgr |192209.6-435814 |M | 10.5 |< 12.5 | |p |21045. | | | |Me |01671 02383| +721160 |V1160 Sgr |192548.6-443230 |M | 12.5 | 15.3 | |p | | | | |Me |00085 02386| +721161 |V1161 Sgr |193028.3-402806 |M | 12. |< 13.5 | |p | | | | | |00085 02383| +721162 |V1162 Sgr | | | | | | | | | | | | |=DM Sgr +721163 |V1163 Sgr |193944.3-221804 |M | 10.5 | 14.0 | |p |29875. | | 276. | |Me |00001 00190| +721164 |V1164 Sgr |194146.4-385959 |SR | 11. | 13. | |p | | | 150. : | | |00085 CoD | +721165 |V1165 Sgr |194250.1-343033 |M | 12.5 |< 14. | |p | | | | |Me |00085 02383| +721166 |V1166 Sgr |194323.4-362557 |M | 12.5 |< 16. | |p | | | | | |04001 04001| +721167 |V1167 Sgr |194542.4-263526 |M | 11.5 | 14.8 | |p | | | | |M0e |00085 02386| +721168 |V1168 Sgr |195015.5-363831 |M | 12. |< 14. | |p | | | | | |00085 02384| +721169 |V1169 Sgr |195128.5-370948 |M | 12.5 |< 14. | |p | | | | | |00085 02384| +721170 |V1170 Sgr |195643.9-260454 |M | 12. | 15.5 | |p | | | | | |00085 02386| +721171 |V1171 Sgr |202125.7-383744 |EA | 11. |< 13. | |p | | | | | |00085 02384| +721172 |V1172 Sgr |175023.7-204030 |N | 9. |< 10. | |p |33713. |1951 | | |pec(NOVA) |01673 08953| +721173 |V1173 Sgr |200047.6-283323 |EA | 9.5 | 10.5 | |p |30206.363 | | | | |01674 03518| +721174 |V1174 Sgr |180138. -284400:|N | 12. : |< 18. | |p |34064. :|1952 | | |ea |01675 | +721175 |V1175 Sgr |181416. -310705:|NA | 7. |< 12. | |p |34064. :|1952 | | |pec(NOVA) |01672 08953| +721176 |V1176 Sgr |182425.7-213420 |RRAB | 12.0 | 12.9 | |p |21432.408 | | 0.3548148 |16 | |03506 01676| +721177 |V1177 Sgr *|180434.5-313442 |EA/KE | 11.3 | 11.7 | 11.4 |p |28672.537 | | 0.963089 | |B9 |01638 CPD | +721178 |V1178 Sgr *|181103.4-303100 |EA/SD | 12.8 |< 15.3 | |p |28456.2233 | | 2.458807 |12 | |01638 01638| +721179 |V1179 Sgr |181135.8-335216 |EA | 12.6 | 13.3 | |p |27597.619 | | 0.9096687 |17 | |01638 01638| +721180 |V1180 Sgr *|181157.7-320231 |CWA | 12.97 | 14.50 | |V |44159.06 | | 27.3282 |30 : | |00001 01638| +721181 |V1181 Sgr *|181407.7-274933 |CWA | 12.12 | 13.32 | |V |44128.02 | | 21.31664 |31 |F9-G8 |00001 01638| +721182 |V1182 Sgr |181650.4-274751 |RRAB | 12.5 | 13.7 | |p |28461.284 | | 0.440866 |08 | |01638 01638| +721183 |V1183 Sgr |181742.1-335042 |SRB | 13.9 | 15.2 | |p | | | | | |05869 01638| +721184 |V1184 Sgr |181828.9-302953 |EA/SD: | 13.2 | 14.2 | |p |28077.319 | | 1.298868 |12 | |01638 01638| +721185 |V1185 Sgr *|181945.8-270934 |CWA | 12.84 | 14.04 | |B |44131.96 | | 13.91246 |25 |F0: |05127 01638| +721186 |V1186 Sgr |182037.5-335458 |RRAB | 14.7 | 15.5 | |p |28362.351 | | 0.4356909 |09 | |01638 01638| +721187 |V1187 Sgr *|182256.3-280430 |CWA | 13.46 | 14.69 | |V |44024.22 | | 15.11406 |29 | |00001 01638| +721188 |V1188 Sgr *|182318.2-322530 |RRAB | 12.86 | 13.43 | |V |35664.844 | | 0.5813192 |14 | |00001 01638| +721189 |V1189 Sgr *|182336.5-354553 |CWA | 11.58 | 12.93 | |V |35668.8 | | 14.07182 |32 |F0-F8 |00001 01638| +721190 |V1190 Sgr *|182339.9-355157 |EA/SD: | 13.8 | 14.6 | |p |28783.258 | | 1.500039 |20 | |01638 01638| +721191 |V1191 Sgr *|182702.2-323354 |EW | 13.8 | 14.6 | 14.4 |p |35665.724 | | 0.8007595 | | |00001 01638| +721192 |V1192 Sgr |182750.8-332838 |RRAB | 14.8 | 15.6 | |p |28427.328 | | 0.5405626 |13 | |01638 01638| +721193 |V1193 Sgr |182940.5-334354 |RRAB | 13.6 | 15.1 | |p |35657.867 | | 0.522601 |14 | |01638 01638| +721194 |V1194 Sgr |183004.6-355257 |RRAB | 14.3 | 16.0 | |p |28346.537 | | 0.5082503 |13 | |01638 01638| +721195 |V1195 Sgr |183112.0-355825 |RRC | 14.3 | 15.0 | |p |28398.361 | | 0.3209111 |38 | |01638 01638| +721196 |V1196 Sgr |183319.5-303653 |EA | 13.4 | 14.4 | |p |28458.37 | | 2.60527 |15 | |01638 01638| +721197 |V1197 Sgr |183405.2-284448 |RRAB | 14.6 | 15.3 | |p |28660.561 | | 0.5645271 |18 | |01638 01638| +721198 |V1198 Sgr |183518.0-344853 |RRAB | 14.7 | 16.2 | |p |35634.914 | | 0.5840872 |12 | |00001 01638| +721199 |V1199 Sgr |183545.5-323101 |RRAB | 14.3 | 15.8 | |p |35662.803 | | 0.4742688 |16 | |00001 01638| +721200 |V1200 Sgr |183551.0-312734 |RRAB | 14.2 | 15.5 | |p |35668.767 | | 0.5370198 |18 | |00001 01638| +721201 |V1201 Sgr |183746.2-281531 |RRAB | 13.8 | 14.9 | |p |28341.364 | | 0.6167053 |16 | |01638 01638| +721202 |V1202 Sgr |183922.6-314505 |RRAB | 14.7 | 15.9 | |p |35656.911 | | 0.634686 |17 | |00001 01638| +721203 |V1203 Sgr |183929.4-321301 |RRAB | 14.2 | 16.0 | |p |35662.876 | | 0.4508585 |25 | |00001 01638| +721204 |V1204 Sgr |183934.2-332924 |RRAB | 14.3 | 15.3 | |p |35662.711 | | 0.5823790 |22 | |00001 01638| +721205 |V1205 Sgr *|183951.6-324517 |RRAB | 15.4 | 16.1 | |p |35657.875 | | 0.39723 |18 | |05869 01638| +721206 |V1206 Sgr |184037.4-342604 |RRAB | 14.6 | 15.1 | |p |28341.403 | | 0.6782167 |20 | |01638 01638| +721207 |V1207 Sgr |184045.0-330425 |RRAB | 14.7 | 16.2 | |p |28341.402 | | 0.5204979 |15 | |01638 01638| +721208 |V1208 Sgr |184059.8-293539 |RRAB | 14.7 | 15.5 | |p |27982.424 | | 0.531725 |12 | |01638 01638| +721209 |V1209 Sgr *|184427.2-350442 |RRAB | 13.9 | 15.2 | |p |28016.277 | | 0.49480036 |20 | |03516 01638| +721210 |V1210 Sgr |184516.3-333329 |RRAB | 14.3 | 16.1 | |p |27713.383 | | 0.5545962 |23 | |01638 01638| +721211 |V1211 Sgr *|184701.3-251056 |RRAB | 12.7 | 14.2 | |p |37131.627 | | 0.867047 |15 |F0-F6 |04222 00245| +721212 |V1212 Sgr |184722.9-314254 |RRAB | 14.7 | 15.8 | |p |28344.384 | | 0.457360 |11 | |01638 01638| +721213 |V1213 Sgr |184732.9-251314 |M | 13.5 |< 15.1 | |p |25798. | | 244. | | |00245 00245| +721214 |V1214 Sgr *|184839.3-250348 |RR | 14.4 | 15.4 | |p |26530.678 | | 0.713770 | | |00245 00245| +721215 |V1215 Sgr |184933.8-310414 |RRAB | 14.1 | 15.2 | |p |26559.341 | | 0.4889368 |12 | |00245 00245| +721216 |V1216 Sgr *|184949.4-235010 |UV | 11.2 | 12.55 | |B | | | | |M3.6Ve |09848 05770| +721217 |V1217 Sgr |185033.5-304155 |M: | 14.0 |< 14.7 | |p |25843. | | 109. | | |00245 00245| +721218 |V1218 Sgr |185055.3-253529 |M | 13.1 |< 14.9 | |p |25817. | | 321. | | |00245 00245| +721219 |V1219 Sgr |185337.0-270240 |M: | 14.0 |< 15.3 | |p |26084. | | 194. | | |00245 00245| +721220 |V1220 Sgr |185351.3-290757 |RRAB | 14.6 | 15.4 | |p |26211.232 | | 0.589247 |10 | |00245 00245| +721221 |V1221 Sgr |185421.1-260220 |M | 13.0 |< 14.9 | |p |29119. | | 214.2 | | |00001 00245| +721222 |V1222 Sgr |185427.5-264734 |M | 13.8 |< 15.4 | |p |29140. | | 246. | | |00245 00245| +721223 |V1223 Sgr *|185502.3-310950 |XPR | 13.26 |< 16.3 | |B | | | | |pec(e+cont) |09849 06745| +721224 |V1224 Sgr |185529.1-262502 |M: | 14.6 |< 15.0 | |p |26217. | | 281. | | |00245 00245| +721225 |V1225 Sgr |185550.0-285258 |M: | 14.7 |< 15.5 | |p |26088. | | 381. | | |00245 00245| +721226 |V1226 Sgr |185554.6-274433 |M | 13.5 |< 15.3 | |p |29100. | | 164.1 | | |00001 00245| +721227 |V1227 Sgr |185616.3-242042 |M: | 13.9 |< 15.2 | |p |26200. | | 153. | | |00245 00245| +721228 |V1228 Sgr |185740.2-264025 |M | 13.7 |< 15.6 | |p |25790. | | 237. | | |00245 00245| +721229 |V1229 Sgr |185740.6-252949 |M: | 13.8 |< 15.3 | |p |25725. | | 271. | | |00245 00245| +721230 |V1230 Sgr |185755.4-265203 |M | 13.8 |< 15.6 | |p |26195. | | 143. | | |00245 00245| +721231 |V1231 Sgr |185839.5-240637 |SR | 13.3 | 15.3 | |p |25888. | | 91. | | |00245 00245| +721232 |V1232 Sgr |185929.6-244213 |M | 13.2 |< 15.6 | |p |26220. | | 338. | | |00245 00245| +721233 |V1233 Sgr |190035.7-290349 |RRAB | 14.7 | 15.7 | |p |26480.497 | | 0.4617459 |10 | |00245 00245| +721234 |V1234 Sgr |190031.7-230133 |M | 13.6 |< 15.5 | |p |25752. | | 270. | | |00245 00245| +721235 |V1235 Sgr |190246.5-300622 |M | 12.5 |< 15.3 | |p |25800. | | 358. : | |Me |00245 00245| +721236 |V1236 Sgr |190332.6-231745 |SR: | 14.1 |< 15.1 | |p |26269. | | 311. | | |00245 00245| +721237 |V1237 Sgr |190417.6-314213 |I | 11.9 |< 13.4 | |p | | | | | |00245 00245| +721238 |V1238 Sgr |190402.4-252455 |M: | 13.1 |< 14.4 | |p |25727. | | 210. | | |00245 00245| +721239 |V1239 Sgr |190434.6-283613 |RRAB | 14.0 | 15.1 | |p |27622.244 | | 0.6014427 |13 | |00245 00245| +721240 |V1240 Sgr |190446.5-304147 |EA/SD: | 13.9 | 14.8 | |p |26565.467 | | 0.546125 |16 | |00245 00245| +721241 |V1241 Sgr |190433.6-260734 |RRAB | 14.6 | 15.4 | |p |26573.225 | | 0.5249666 |15 | |00245 00245| +721242 |V1242 Sgr |190429.5-240656 |SR: | 13.9 |< 15.2 | |p |26072. | | 137. | | |00245 00245| +721243 |V1243 Sgr |190438.9-260821 |I | 14.3 | 15.5 | |p | | | | | |00245 00245| +721244 |V1244 Sgr |190516.1-305432 |RRAB | 14.6 | 15.8 | |p |27367.296 | | 0.667532 |15 | |00245 00245| +721245 |V1245 Sgr |190620.7-311420 |M | 13.0 |< 15.4 | |p |25900. | | 192. | |Me |00001 00245| +721246 |V1246 Sgr |190628.9-305508 |M | 13.2 |< 15.3 | |p |26228. | | 125. | | |00245 00245| +721247 |V1247 Sgr |190631.8-302009 |M | 13.1 |< 15.3 | |p |25748. | | 237. | | |00245 00245| +721248 |V1248 Sgr |190731.6-253919 |M | 13.2 |< 15.4 | |p |26202. | | 360. | | |00245 00245| +721249 |V1249 Sgr |190812.3-312553 |RRAB | 14.7 | 15.5 | |p |26570.208 | | 0.5356500 |15 | |00245 00245| +721250 |V1250 Sgr |190826.5-242710 |I | 14.0 | 15.2 | |p | | | | | |00245 00245| +721251 |V1251 Sgr |190959.9-263825 |SRB | 12.8 | 14.8 | |p |29108. | | 147. | | |00245 00245| +721252 |V1252 Sgr |191036.3-302032 |EA/SD | 11.4 | 13.0 | |p |26480.516 | | 1.435689 |17 | |00245 CPD | +721253 |V1253 Sgr |191050.5-235519 |M | 13.1 |< 15.6 | |p |25771. | | 206. | | |00245 00245| +721254 |V1254 Sgr |191110.7-291321 |SR | 12.5 | 14.1 | |p |25795. | | 82. | | |00245 00245| +721255 |V1255 Sgr |191142.7-311823 |I | 14.1 | 14.9 | |p | | | | | |00245 00245| +721256 |V1256 Sgr |191235.4-230634 |M | 12.1 |< 14.7 | |p |25760. | | 402. | | |00245 00245| +721257 |V1257 Sgr |191327.4-283057 |I | 13.9 | 15.6 | |p | | | | | |00245 00245| +721258 |V1258 Sgr |191358.9-254829 |M | 12.5 | 18. | |p |25810. | | 267. | | |00245 00245| +721259 |V1259 Sgr |191619.0-251052 |M | 13.6 |< 15.6 | |p |25816. | | 273. | | |00245 00245| +721260 |V1260 Sgr |191659.8-243627 |SRA | 11.9 | 13.8 | |p |26251. | | 141. | |Me |00245 00245| +721261 |V1261 Sgr |191707.3-260041 |M | 12.9 |< 15.7 | |p |25727. | | 235. | | |00245 00245| +721262 |V1262 Sgr |191727.7-285056 |RRAB | 15.1 | 15.7 | |p |27656.369 | | 0.5258044 |20 | |00245 00245| +721263 |V1263 Sgr |191906.0-280041 |M | 13.0 |< 15.8 | |p |25813. | | 223. | | |00245 00245| +721264 |V1264 Sgr |191859.4-235431 |M | 12.7 |< 15.4 | |p |29131. | | 268. | | |00245 00245| +721265 |V1265 Sgr |191914.8-265835 |RRAB | 14.6 | 15.6 | |p |26570.270 | | 0.533302 |15 | |00245 00245| +721266 |V1266 Sgr |192108.5-294939 |M | 12.4 | 15.5 | |p |26222. | | 142. | |Me |00245 00245| +721267 |V1267 Sgr |192207.7-255657 |M | 12.3 |< 15.2 | |p |25771. | | 152. | | |00245 00245| +721268 |V1268 Sgr |192332.6-305502 |SR | 13.4 | 14.7 | |p |25731. | | 128. | | |00001 00245| +721269 |V1269 Sgr |192321.1-235334 |M | 13.2 |< 14.8 | |p |26089. | | 273. | |Me |00245 00245| +721270 |V1270 Sgr |192359.5-295857 |M | 12.8 |< 14.9 | |p |25847. | | 143. | |Me |00245 00245| +721271 |V1271 Sgr |192349.1-255738 |M | 14.0 |< 16.0 | |p |26220. | | 127. | | |00245 00245| +721272 |V1272 Sgr |192404.0-245719 |SR: | 13.9 |< 15.6 | |p |25811. | | 197. | | |00245 00245| +721273 |V1273 Sgr |192608.0-232834 |SR: | 14.2 |< 15.3 | |p |25815. | | 425. | | |00245 00245| +721274 |V1274 Sgr |174855.5-175201 |NB | 9.5 |< 13.0 | |p |34978. :|1954 | | |pec(NOVA) |09852 08953| +721275 |V1275 Sgr |175906.3-361841 |NA | 7.5 |< 13. | |p |34928. |1954 | | |pec(NOVA) |09853 08953| +721276 |V1276 Sgr *|180528.4-325325 |EW/KW | 14.1 | 14.6 | 14.3 |p |28037.391 | | 0.3480939 | |K3/K4 |01640 01640| +721277 |V1277 Sgr |180717.7-334527 |CWA | 14.6 | 15.1 | |p |28699.71 | | 15.088 |40 | |01640 01640| +721278 |V1278 Sgr |180839.6-340143 |M | 13.1 | 18. | |p | | | | |M5e |04488 04256| +721279 |V1279 Sgr |181027.7-322422 |EA | 14.2 |< 15.1 | |p |28424.408 | | 3.798653 |16 | |01640 01640| +721280 |V1280 Sgr *|181028.0-265159 |M | 12.0 |< 16.1 | |p |37140. | | 523. | |C6-7,3(N) |03523 03523| +721281 |V1281 Sgr *|181129.4-275825 |CWA: | 14.1 | 14.8 | |p |28349.8 | | 50.66 |23 | |01640 01640| +721282 |V1282 Sgr *|181334.7-342843 |EA/SD | 11.9 | 16.2 | |p |35655.750 | | 1.75806 |11 | |05869 00705| +721283 |V1283 Sgr |181347.4-293140 |RRAB | 13.8 | 14.5 | |p |27987.649 | | 0.63370 |20 | |00705 00705| +721284 |V1284 Sgr *|181419.4-360127 |RV: | 13.2 | 13.9 | 13.5 |p |28387. | | 79.93 | | |01640 01640| +721285 |V1285 Sgr | | | | | | | | | | | | |=V0703 Sgr +721286 |V1286 Sgr |181745.1-315932 |RRAB | 14.2 | 15.6 | |p |27983.353 | | 0.4486426 |08 | |00705 00705| +721287 |V1287 Sgr *|182006.1-270226 |EB | 14.5 | 15.2 | 14.8 |p |28105.237 | | 0.833719 | | |01640 01640| +721288 |V1288 Sgr |182025.4-274544 |RRAB | 13.6 | 14.7 | |p |28077.371 | | 0.520510 |11 | |00705 00705| +721289 |V1289 Sgr |182055.7-310833 |M | 13.0 | 15.5 | |p |36760. | | 220. | |Me |07087 04256| +721290 |V1290 Sgr *|182137.3-323801 |CWA | 11.82 | 13.04 | |V |35666.91 | | 27.9516 |17 |F4:-F8: |00001 01640| +721291 |V1291 Sgr |182150.9-313614 |RRAB | 13.9 | 15.3 | |p |35662.831 | | 0.4702512 |22 | |05869 00705| +721292 |V1292 Sgr |182212.3-343823 |RRAB | 14.7 | 16.5 | |p |35656.854 | | 0.5835033 |12 | |01640 01640| +721293 |V1293 Sgr |182248.3-314710 |M | 13.1 | 17.3 | |p |36752. | | 155.9 | | |00001 00705| +721294 |V1294 Sgr |182315.4-341529 |SRA | 14.5 | 16.8 | |p |36770. | | 209.2 | | |00001 00705| +721295 |V1295 Sgr |182313.8-341617 |RRAB | 15.1 | 16.2 | |p |35654.801 | | 0.6013453 |17 | |00001 00705| +721296 |V1296 Sgr |182441.8-301329 |M | 13.6 |< 15.8 | |p |28396. | | 144. | | |00705 00705| +721297 |V1297 Sgr |182553.8-295242 |M | 13.1 |< 15.8 | |p |28706. | | 286.8 | |M8-9 |01640 01640| +721298 |V1298 Sgr |182620.7-351402 |RRAB | 15.0 | 16.8 | |p |35640.918 | | 0.4919006 |12 | |00001 01640| +721299 |V1299 Sgr |182615.7-274724 |RRAB | 14.5 | 14.9 | |p |28362.323 | | 0.4861464 |10 | |01640 01640| +721300 |V1300 Sgr |182722.1-355507 |RRAB | 14.4 | 15.9 | |p |35638.900 | | 0.4766054 |14 | |00001 01640| +721301 |V1301 Sgr |182733.5-360159 |RRAB | 14.5 | 15.4 | |p |30553.329 | | 0.6418776 |20 | |01640 01640| +721302 |V1302 Sgr |182718.3-285936 |RRAB | 14.9 | 16.2 | |p |28362.298 | | 0.6935604 |12 | |01640 01640| +721303 |V1303 Sgr *|182854.7-264541 |CWA | 12.26 | 13.71 | |V |44158.36 | | 18.46812 |41 |F6 |05127 01640| +721304 |V1304 Sgr *|182928.7-322228 |CWA | 12.30 | 13.27 | |V |44016.87 | | 12.9003 |38 |F8: |00001 01640| +721305 |V1305 Sgr |182939.7-314238 |EA/SD | 13.8 | 15.7 | |p |28672.581 | | 3.28228 |14 | |00705 00705| +721306 |V1306 Sgr |183011.1-341413 |RRAB | 14.5 | 15.4 | |p |28660.551 | | 0.6301093 |11 | |01640 01640| +721307 |V1307 Sgr |183118.6-354217 |RRAB | 14.1 | 14.9 | |p |28660.481 | | 0.5284353 |10 | |01640 01640| +721308 |V1308 Sgr |183254.3-345247 |RRAB | 15.2 | 16.1 | |p |28748.393 | | 0.5335793 |19 | |01640 01640| +721309 |V1309 Sgr *|183311.7-321841 |RRAB | 14.7 | 15.9 | |p |27632.316 | | 0.520398 |14 | |00705 00705| +721310 |V1310 Sgr |183501.0-300336 |N: | 11.1 |< 15.5 | |p |27983. :|1935 | | | |00705 00705| +721311 |V1311 Sgr *|183640.5-234607 |M | 13.8 | 18.0 : | |p |42228. | | 200.67 |30 |M3.5e-M5e |00001 01679| +721312 |V1312 Sgr *|183807.4-335031 |RRAB | 14.4 | 15.6 | |p |35655.779 | | 0.60114 |30 | |05869 01640| +721313 |V1313 Sgr |183935.4-285908 |EA | 13.1 | 14.6 | |p |28693.440 | | 2.14408 |10 *| |00705 00705| +721314 |V1314 Sgr *|184046.5-312643 |RRAB | 13.9 | 15.1 | |p |35660.835 | | 0.65750 |15 | |05869 01640| +721315 |V1315 Sgr |184156.3-282419 |EA/SD: | 13.7 | 15.3 | |p |28343.193 | | 7.6481 |12 *| |00705 00705| +721316 |V1316 Sgr |193355.6-224945 |M | 11. |< 16. | |p |35000. | | | |M3e |01662 04256| +721317 |V1317 Sgr *|180157.9-295623 |RRC | 18.3 | 18.9 | |p |32060.683 | | 0.24603 |40 | |01680 01680| +721318 |V1318 Sgr |180159.0-295501 |SR: | 16.6 | 17.5 | |p |32015. | | 170.0 /N| | |01680 01680| +721319 |V1319 Sgr |180159.5-295915 |EA/GS | 16.0 | 17.1 | |p |31673.5 | | 249.5 |11 | |01680 01680| +721320 |V1320 Sgr |180202.0-295413 |RRC | 17.4 | 18.3 | |p |32706.940 | | 0.27742 |30 | |06094 01680| +721321 |V1321 Sgr |180203.2-301014 |LB | 18.2 | 19.2 | |p | | | | | |01680 01680| +721322 |V1322 Sgr |180203.6-300133 |LB | 16.3 | 17.3 | |p | | | | |M3 |01680 01680| +721323 |V1323 Sgr |180203.4-301220 |RV: | 18.4 | 19.1 | |p |32801.7 | | 61.12 | | |01680 01680| +721324 |V1324 Sgr |180204.8-300609 |RRAB | 17.5 | 18.8 | |p |32388.777 | | 0.50247 |16 | |03524 01680| +721325 |V1325 Sgr |180205.5-300713 |SR | 18.2 | 18.9 | |p |32720. | | | | |01680 01680| +721326 |V1326 Sgr |180205.0-295329 |RV: | 17.7 | 18.5 | |p |32060.0 | | 59.8 | | |01680 01680| +721327 |V1327 Sgr *|180205.8-300257 |M: | 16.3 |< 19.0 | |p |33152. | | 224.1 | |M4: |01680 01680| +721328 |V1328 Sgr *|180208.9-301719 |RRAB | 17.3 | 18.1 | |p |31999.773 | | 0.66621 : |20 | |06094 01680| +721329 |V1329 Sgr *|180208.2-294704 |RRAB | 16.7 | 18.0 | |B |44795.6874 | | 0.483070 |20 | |09623 09623| +721330 |V1330 Sgr |180208.7-301206 |RRC: | 17.7 | 18.4 | |p |32740.844 | | 0.42691 |17 | |06094 01680| +721331 |V1331 Sgr *|180210.3-301624 |EA | 16.4 | 17.0 | 16.5 |p |32002.827 | | 0.89127 |16 | |01680 01680| +721332 |V1332 Sgr |180211.0-295004 |EA/D | 18.3 | 19.0 | |p |32825.63 | | 2.948 : |14 | |01680 01680| +721333 |V1333 Sgr |180211.6-295400 |SR | 17.1 | 18.1 | |p |32000. | | 277.0 | | |01680 01680| +721334 |V1334 Sgr |180212.8-300211 |SRA | 16.7 | 17.9 | |p |32388. | | 154.0 | |M6 |01680 01680| +721335 |V1335 Sgr |180213.9-295553 |RRAB | 17.6 | 18.7 | |B |32002.833 | | 0.44856 |08 | |01680 01680| +721336 |V1336 Sgr |180214.3-295651 |M | 17.2 |< 20.4 | |p |31708. | | 258.0 | | |01680 01680| +721337 |V1337 Sgr |180215.0-294644 |RRAB | 16.8 | 17.8 | |B |44666.8462 | | 0.354757 |16 | |09623 09623| +721338 |V1338 Sgr |180215.7-300457 |SR: | 17.6 | 18.2 | |p |31971.8 | | 90.0 : | | |01680 01680| +721339 |V1339 Sgr |180218.6-300535 |RRC | 17.5 | 18.1 | |p |32740.716 | | 0.32584 |42 | |03524 01680| +721340 |V1340 Sgr |180219.1-300928 |SR | 17.4 | 18.0 | |p |32388.8 | | 95.0 : | | |01680 01680| +721341 |V1341 Sgr |180219.0-300925 |RRAB | 18.0 | 19.0 | |p |32740.793 | | 0.39740 |22 | |01680 01680| +721342 |V1342 Sgr |180219.0-295657 |RRAB | 18.4 | 19.5 | |p |32740.753 | | 0.49635 |13 | |03524 01680| +721343 |V1343 Sgr |180219.6-300607 |SR | 18.3 | 18.6 | |p |32825.0 | | 62.0 : | | |01680 01680| +721344 |V1344 Sgr |180221.1-300544 |SR | 17.6 |< 19.2 | |p |32439. | | 117. | | |08424 01680| +721345 |V1345 Sgr |180222.1-295338 |RRAB | 17.3 | 18.6 | |B |32740.844 | | 0.45410 |10 | |03524 01680| +721346 |V1346 Sgr |180222.2-300032 |RRAB | 17.4 | 18.6 | |B |32705.874 | | 0.47362 |10 | |03524 01680| +721347 |V1347 Sgr |180223.6-301005 |SR | 17.0 | 17.4 | |p |32710. | | 118.0 : | |M7 |01680 01680| +721348 |V1348 Sgr |180226.4-300656 |SRA | 18.3 | 19.2 | |p |32741. | | 232.0 | |M7: |01680 01680| +721349 |V1349 Sgr |180226.0-300833 |EA/DM: | 18.3 | 18.9 | |p |32061.669 | | 1.6021 |11 | |01680 01680| +721350 |V1350 Sgr |180230.2-301344 |E | 18.0 | 18.3 | |p |31998.875 | | 0.9487 : | | |01680 01680| +721351 |V1351 Sgr |180231.1-301649 |SR: | 16.9 | 17.7 | |p |31701. | | 225.0 : | |M |01680 01680| +721352 |V1352 Sgr *|180232.5-295857 |RRAB | 16.7 | 18.1 | |B |44406.854 | | 0.49546 |15 | |09623 09623| +721353 |V1353 Sgr |180233.4-295922 |RRAB | 17.0 | 18.1 | |B |43342.7702 | | 0.552141 |17 | |09623 09623| +721354 |V1354 Sgr |180233.3-300952 |SR | 16.6 | 17.2 | |p |32706. | | 200.0 | |M2 |01680 01680| +721355 |V1355 Sgr |180233.6-301334 |EA/KE: | 17.5 | 18.0 | |p |32414.789 | | 1.1567 |16 | |01680 01680| +721356 |V1356 Sgr *|180234.0-301511 |EA/AR: | 17.9 |< 19.3 | 18.0 : |p |31674.701 | | 2.9790 |11 | |01680 01680| +721357 |V1357 Sgr *|180235.4-295730 |E | 18.7 | 19.6 | 19.0 |B |40744.8464 | | 0.350450 | | |09623 09623| +721358 |V1358 Sgr |180235.1-295856 |SRA | 17.2 | 17.6 | |p |32826. | | 184.0 | |M6 |01680 01680| +721359 |V1359 Sgr *|180235.2-295920 |RRAB | 16.8 | 17.4 | |B |43343.5596 | | 0.822045 |29 | |09623 09623| +721360 |V1360 Sgr |180235.4-300014 |RRAB | 17.0 | 18.4 | |B |43333.5219 | | 0.467230 |20 | |09623 09623| +721361 |V1361 Sgr |180236.2-294737 |SR | 18.8 | 19.6 | |p |32767.7 | | 43.6 : | | |01680 01680| +721362 |V1362 Sgr |180236.8-301121 |SRA | 16.4 | 17.1 | |p |32740. | | 90.0 | |M6 |01680 01680| +721363 |V1363 Sgr |180236.8-294717 |DSCT | 16.9 | 17.4 | |p |43341.6455 | | 0.189572 |37 | |09623 09623| +721364 |V1364 Sgr |180236.9-295531 |SR | 18.0 | 19.2 | |p |32767.7 | | 88.1 | | |01680 01680| +721365 |V1365 Sgr |180238.1-301203 |RRC | 17.0 | 17.5 | |p |32417.655 | | 0.37219 |29 | |06094 01680| +721366 |V1366 Sgr |180238.1-301520 |SR | 17.5 | 18.1 | |p |32060. | | 135.0 | | |01680 01680| +721367 |V1367 Sgr |180239.2-300708 |RRAB | 17.7 | 18.5 | |B |43342.4773 | | 0.594483 |22 | |09623 09623| +721368 |V1368 Sgr |180239.1-294835 |SR | 18.4 | 19.3 | |p |32739.0 | | 71.9 | | |01680 01680| +721369 |V1369 Sgr *|180239.0-295156 |RRAB | 17.0 | 18.1 | |B |44406.5919 | | 0.529566 |20 | |09623 09623| +721370 |V1370 Sgr |180239.9-301045 |SR | 16.6 | 17.3 | |p |32370. | | 255.0 | | |01680 01680| +721371 |V1371 Sgr |180240.1-295404 |M | 16.1 |< 18.4 | |p |32439. | | 180. | |M(3-6) |08424 01680| +721372 |V1372 Sgr |180242.9-300834 |LB | 17.7 | 18.1 | |p | | | | |M5 |01680 01680| +721373 |V1373 Sgr |180242.9-301614 |SR: | 17.2 | 17.9 | |p |31943.95 | | 26.5 : |40 |M6 |01680 01680| +721374 |V1374 Sgr *|180243.0-295421 |RRAB | 16.6 | 18.4 | |B |44406.7736 | | 0.444439 |13 |F1.6 |09623 09623| +721375 |V1375 Sgr | | | | | | | | | | | | |=V4108 Sgr +721376 |V1376 Sgr |180244.4-300543 |LB | 18.4 | 18.7 | |p | | | | |M: |01680 01680| +721377 |V1377 Sgr |180245.0-300541 |RV: | 17.1 | 17.7 | |p |32706.2 | | 60.0 : | |M2 |01680 01680| +721378 |V1378 Sgr *|180245.0-295309 |RRAB | 17.1 | 18.2 | |B |40744.7054 | | 0.600229 |20 |F2.4 |09623 09623| +721379 |V1379 Sgr |180246.5-295924 |RRAB | 16.9 | 17.8 | |B |43342.6249 | | 0.557220 |18 | |00001 09623| +721380 |V1380 Sgr |180247.5-300232 |RRC | 16.9 | 17.6 | |B |43333.5562 | | 0.279293 |40 | |09623 09623| +721381 |V1381 Sgr |180248.0-294943 |SR: | 18.6 | 19.8 | |p |32740.0 | | 98.0 : | | |01680 01680| +721382 |V1382 Sgr |180249.3-301255 |RRAB | 17.4 | 18.4 | |B |32737.725 | | 0.49279 |25 | |03524 01680| +721383 |V1383 Sgr |180249.0-295630 |RRC | 17.0 | 17.5 | |B |43333.6130 | | 0.310938 |46 | |09623 09623| +721384 |V1384 Sgr |180249.0-300053 |RRC | 17.1 | 17.7 | |B |44666.8570 | | 0.380158 |42 | |09623 09623| +721385 |V1385 Sgr |180251.2-295735 |LB | 16.8 | 17.3 | |p | | | | |M6 |01680 01680| +721386 |V1386 Sgr |180252.0-300803 |RRAB | 18.0 | 18.5 | |B |43341.5831 | | 0.667679 |24 | |09623 09623| +721387 |V1387 Sgr *|180254.9-295958 |RRAB | 16.8 | 18.2 | |B |43333.7108 | | 0.478628 |18 |A9.1 |09623 09623| +721388 |V1388 Sgr |180256.9-300418 |SRA | 17.2 | 18.2 | |p |32290. | | 180.0 | |M6-M7 |01680 01680| +721389 |V1389 Sgr *|180256.5-300537 |SR | 16.4 | 16.9 | |p |32706.0 | | 61.8 | |M6-M7 |01680 01680| +721390 |V1390 Sgr *|180256.9-300731 |EW | 17.2 | 17.8 | 17.6 |B |43341.6804 | | 0.601158 | | |09623 09623| +721391 |V1391 Sgr |180256.6-294732 |SR | 18.0 | 18.8 | |p |32737.0 | | 72.0 : | | |01680 01680| +721392 |V1392 Sgr *|180257.4-300007 |RRAB | 17.0 | 17.9 | |B |43333.7520 | | 0.550294 |24 | |09623 09623| +721393 |V1393 Sgr *|180257.6-294839 |RRAB | 16.7 | 18.5 | |B |43333.5031 | | 0.424139 |18 |A6.7-F2.3 |09623 09623| +721394 |V1394 Sgr *|180300.3-301013 |E/DM: | 17.8 | 18.0 | 18.0 |p |32705.874 | | 1.8482 | | |01680 01680| +721395 |V1395 Sgr |180300.5-295020 |SR: | 16.6 | 17.5 | |p |31675. | | 165. : | |M: |01680 01680| +721396 |V1396 Sgr |180300.6-295352 |RRAB | 16.3 | 17.3 | |B |43343.6225 | | 0.554531 |16 | |09623 09623| +721397 |V1397 Sgr |180300.3-295456 |LB | 17.6 | 18.8 | |p | | | | |M6 |01680 01680| +721398 |V1398 Sgr |180301.1-300143 |SR | 17.00 | 17.87 | |B |33003. | | 675.0 : | |M6.5-M8.5III |01680 01680| +721399 |V1399 Sgr |180300.7-300721 |LB: | 16.0 | 17.2 | |p | | | | |M7 |01680 01680| +721400 |V1400 Sgr |180301.1-301321 |I | 17.7 | 18.0 | |p | | | | | |01680 01680| +721401 |V1401 Sgr *|180302.5-295646 |SR: | 17.9 | 18.9 | |p |32387.8 | | 60.0 : | |M6 |01680 01680| +721402 |V1402 Sgr |180302.8-301209 |M | 15.7 |< 19.0 | |p |33155. | | 232.0 | |M3: |01680 01680| +721403 |V1403 Sgr |180302.8-295455 |RRC | 17.0 | 17.7 | |B |43341.5963 | | 0.296255 |36 | |09623 09623| +721404 |V1404 Sgr |180303.3-295730 |M | 16.6 |< 19.5 | |p |32001. | | 270. | |M8-M9 |08424 01680| +721405 |V1405 Sgr *|180303.8-300401 |RRAB | 17.8 | 19.1 | |B |43302.7300 | | 0.465093 |18 | |09623 09623| +721406 |V1406 Sgr |180304.2-294834 |RRC | 17.1 | 17.6 | |B |44406.6750 | | 0.286115 |42 | |09623 09623| +721407 |V1407 Sgr |180305.3-294838 |RRC | 16.4 | 17.0 | |B |43341.5905 | | 0.218689 |44 | |09623 09623| +721408 |V1408 Sgr *|180307.8-295006 |RRAB | 16.3 | 17.7 | |B |44056.5703 | | 0.57723 |20 | |09623 09623| +721409 |V1409 Sgr *|180309.6-301158 |RRAB | 17.4 | 18.3 | |B |43302.9046 | | 0.651612 |23 | |09623 09623| +721410 |V1410 Sgr |180308.9-301304 |SR | 17.5 | 18.7 | |p |32780. | | 153.6 | | |01680 01680| +721411 |V1411 Sgr |180309.7-301208 |RRC | 17.5 | 18.0 | |B |43333.8136 | | 0.313330 |49 | |09623 09623| +721412 |V1412 Sgr *|180311.2-295313 |SR | 16.1 | 17.0 | |p |31999.8 | | 70.0 : | |M2 |01680 01680| +721413 |V1413 Sgr |180311.8-300246 |RRC | 17.4 | 18.1 | |B |43301.5787 | | 0.320687 |43 | |09623 09623| +721414 |V1414 Sgr |180313.8-300307 |M | 16.6 |< 19.1 | |p |32400. | | 115.55 | |M6 |01680 01680| +721415 |V1415 Sgr *|180315.9-300858 |RRAB | 17.1 | 18.3 | |B |44406.6345 | | 0.462139 |20 | |09623 09623| +721416 |V1416 Sgr *|180316.1-300141 |RRAB | 16.4 | 17.8 | |B |44087.7284 | | 0.427657 |17 |A8.8-F3.1 |09623 09623| +721417 |V1417 Sgr |180317.4-295931 |E/D: | 16.23 | 16.6 | |B |32349.846 | | 2.27 | | |01680 01680| +721418 |V1418 Sgr *|180318.6-300110 |RRAB | 16.3 | 17.9 | |B |44406.6677 | | 0.454254 |15 | |09623 09623| +721419 |V1419 Sgr *|180318.7-300552 |RRAB | 17.2 | 17.9 | |B |43343.5234 | | 0.571483 |14 | |09623 09623| +721420 |V1420 Sgr |180319.4-300950 |E | 17.4 | 17.7 | |p |32740.753 | | 0.9001 : | | |01680 01680| +721421 |V1421 Sgr |180319.4-295519 |RR: | 18.0 | 18.5 | |p |31970.911 | | 0.355 : | | |01680 01680| +721422 |V1422 Sgr |180319.9-300653 |RRC | 17.3 | 18.1 | |B |43341.5972 | | 0.335403 |44 | |09623 09623| +721423 |V1423 Sgr |180320.8-295329 |RRAB | 17.0 | 17.4 | |p |43341.4829 | | 0.676983 |28 | |09623 09623| +721424 |V1424 Sgr |180321.8-295026 |RRC | 17.4 | 17.9 | |p |32739.762 | | 0.22008 |35 | |06094 01680| +721425 |V1425 Sgr *|180321.0-295933 |EW/DM | 18.2 | 18.8 | 18.8 |B |43334.5173 | | 0.948044 | | |09623 09623| +721426 |V1426 Sgr *|180323.4-300246 |RRAB | 16.4 | 17.9 | |B |40744.8629 | | 0.440225 |16 |F1.7 |09623 09623| +721427 |V1427 Sgr |180324.1-300513 |RRAB | 17.1 | 18.1 | |B |43343.5711 | | 0.458726 |26 | |09623 09623| +721428 |V1428 Sgr |180325.5-300718 |EA/D | 18.3 | 18.9 | |p |32001.782 | | 3.6763 |10 : | |01680 01680| +721429 |V1429 Sgr *|180328.3-295145 |SR | 16.1 | 17.0 | |p |32700. | | 118.3 | | |01680 01680| +721430 |V1430 Sgr |180328.1-295329 |SR: | 19.0 |< 20.0 | |p |32063. | | 132.0 : | | |01680 01680| +721431 |V1431 Sgr |180329.6-295954 |N: | 17.2 |< 19.2 | |p |31675. |1945 | | | |01680 01680| +721432 |V1432 Sgr |180331.1-294945 |M | 14.5 |< 19.0 | |p |32800. | | 197.35 | |M4e |00001 01680| +721433 |V1433 Sgr |180331.9-300609 |SR: | 18.2 | 18.9 | |p |32050. | | 175.0 | |M5 |01680 01680| +721434 |V1434 Sgr |180332.7-295111 |RRAB | 17.2 | 17.7 | |p |32740.844 | | 0.69996 |20 | |03524 01680| +721435 |V1435 Sgr *|180333.4-295849 |EA/KE: | 17.9 | 18.3 | 18.0 |p |32737.725 | | 1.2397 |18 | |01680 01680| +721436 |V1436 Sgr |180333.3-295912 |SR: | 17.9 | 18.9 | |p |32740. | | 195.0 | |M |01680 01680| +721437 |V1437 Sgr *|180333.5-300116 |CWB | 15.7 | 17.1 | |B |44051.02 | | 1.74793 |35 |A7 |00001 09623| +721438 |V1438 Sgr *|180333.6-300309 |RRC | 16.7 | 17.3 | |B |44087.5556 | | 0.298711 |45 | |09623 09623| +721439 |V1439 Sgr *|180334.6-301730 |RRC | 16.5 | 17.4 | |p |32415.699 | | 0.25877 |35 | |01680 01680| +721440 |V1440 Sgr |180335.0-301433 |E: | 17.8 | 18.2 | |p |31709.675 | | 3.7 : | | |01680 01680| +721441 |V1441 Sgr |180336.3-300627 |SR | 18.2 | 19.0 | |p |32390.0 | | 103.0 | |M6 |01680 01680| +721442 |V1442 Sgr |180336.5-295339 |M | 17.1 |< 19.7 | |p |32350. | | 240.0 | |M6-M7 |01680 01680| +721443 |V1443 Sgr *|180336.8-295537 |EA | 18.5 | 19.0 | 18.6 |p |32739.867 | | 0.5845 : |17 | |01680 01680| +721444 |V1444 Sgr |180337.0-301040 |RRC | 17.2 | 17.6 | |p |32740.786 | | 0.26496 : |40 : | |01680 01680| +721445 |V1445 Sgr |180339.7-300900 |RRAB | 16.8 | 18.3 | |B |44087.5439 | | 0.489682 |16 | |09623 09623| +721446 |V1446 Sgr *|180340.0-295005 |EA/KE: | 17.9 | 18.4 | 18.0 |p |31943.948 | | 1.21217 : |10 | |01680 01680| +721447 |V1447 Sgr *|180340.7-300425 |EA/SD | 18.1 | 19.3 | 18.2 |p |31998.851 | | 1.2543 |18 | |01680 01680| +721448 |V1448 Sgr |180342.1-300916 |SRA | 16.0 | 17.2 | |p |32061. | | 128.0 | |M5 |01680 01680| +721449 |V1449 Sgr |180343.4-295144 |SRA | 17.6 | 18.4 | |p |33005. | | 194.0 | |M7 |01680 01680| +721450 |V1450 Sgr |180344.0-300221 |SR | 17.0 | 17.8 | |p |32738. | | 196.5 | |M6 |01680 01680| +721451 |V1451 Sgr |180345.5-294757 |RRAB | 17.8 | 18.7 | |B |32737.857 | | 0.56092 |10 | |06094 01680| +721452 |V1452 Sgr |180346.2-300225 |SR: | 18.0 | 19.2 | |p |31705.7 | | 25.9 : | |M6: |01680 01680| +721453 |V1453 Sgr |180346.1-300732 |I | 17.4 | 18.8 | |p | | | | | |01680 01680| +721454 |V1454 Sgr *|180346.6-301127 |EA/D | 15.3 | 15.7 | 15.4 |p |32001.835 | | 3.1864 |09 | |01680 01680| +721455 |V1455 Sgr |180346.6-301556 |RRC | 16.7 | 17.5 | |p |32736.821 | | 0.33436 |48 | |06094 01680| +721456 |V1456 Sgr |180345.9-295443 |SR | 16.6 | 17.5 | |p |32800. | | 400.0 : | |M6-M7 |01680 01680| +721457 |V1457 Sgr *|180347.0-300359 |EA/D | 18.9 | 19.2 | 19.0 |p |32736.785 | | 2.2848 |10 | |01680 01680| +721458 |V1458 Sgr |180347.5-300509 |LB | 16.3 | 17.4 | |p | | | | |M4 |01680 01680| +721459 |V1459 Sgr *|180348.5-295807 |EA/KE: | 16.9 | 17.5 |( 0.04 )|p |32060.683 | | 1.1857 |13 | |01680 01680| +721460 |V1460 Sgr *|180350.9-295618 |SR | 18.1 |< 19.6 | |p | | | 270. | |M6.5 |08424 01680| +721461 |V1461 Sgr |180351.7-300448 |RRAB | 17.3 | 18.0 | |B |43341.6863 | | 0.594744 |26 | |09623 09623| +721462 |V1462 Sgr |180352.5-301029 |RV | 16.8 | 17.7 | |p |31943.0 | | 75.41 | |M5 |01680 01680| +721463 |V1463 Sgr |180352.8-301418 |SR | 17.5 | 18.3 | |p |32420. | | 315.0 | |M6 |01680 01680| +721464 |V1464 Sgr *|180352.8-295147 |RRAB | 16.6 | 18.1 | |B |43342.6693 | | 0.463173 |12 |A7.5 |09623 09623| +721465 |V1465 Sgr *|180355.8-301246 |RRAB | 17.0 | 18.1 | |B |44796.5652 | | 0.458093 |16 | |09623 09623| +721466 |V1466 Sgr *|180356.8-300320 |SR | 17.4 | 18.9 | |B |33003. | | 167.0 | |M6: |01680 01680| +721467 |V1467 Sgr |180357.2-300606 |RRAB | 17.1 | 18.0 | |B |43334.5159 | | 0.770475 |21 | |09623 09623| +721468 |V1468 Sgr |180357.4-301237 |SR | 17.4 | 18.0 | |p |33003.0 | | 52.0 : | |M4 |01680 01680| +721469 |V1469 Sgr |180356.6-294823 |SR: | 16.1 | 16.9 | |p |31675. | | 285.0 | |M5 |01680 01680| +721470 |V1470 Sgr |180358.0-300241 |SR | 18.1 | 18.8 | |p |32440. | | 395.0 | |M |01680 01680| +721471 |V1471 Sgr |180357.9-295233 |M | 17.4 |< 19.5 | |p |31701. | | 192.0 | |M5e-M8 |01680 01680| +721472 |V1472 Sgr |180359.8-300318 |RV: | 18.0 | 18.6 | |p |33003.0 | | 69.78 | |M6 |01680 01680| +721473 |V1473 Sgr *|180402.4-295031 |SR | 17.5 |< 19.2 | |p |31680. | | 495. : | |M6-M6.5 |01680 01680| +721474 |V1474 Sgr |180402.4-295216 |EA/KE: | 19.4 | 19.8 | |p |32417.735 | | 1.5599 |16 | |01680 01680| +721475 |V1475 Sgr |180403.3-294859 |I | 18.5 | 18.9 | |p | | | | | |01680 01680| +721476 |V1476 Sgr |180404.2-301630 |LB | 16.8 | 17.2 | |p | | | | |M6 |01680 01680| +721477 |V1477 Sgr |180404.3-295645 |RRAB | 16.6 | 17.8 | |B |44795.6948 | | 0.515866 |14 | |09623 09623| +721478 |V1478 Sgr |180404.5-300217 |SRB: | 17.2 | 18.3 | |p |33002. | | 130.0 : | |M6.5-M7 |01680 01680| +721479 |V1479 Sgr |180405.5-301254 |RRAB | 18.0 | 19.0 | |B |43342.6739 | | 0.541603 |23 | |09623 09623| +721480 |V1480 Sgr |180406.1-295107 |LB | 16.7 | 17.5 | |p | | | | |M4 |01680 01680| +721481 |V1481 Sgr |180406.8-295635 |RRC | 17.5 | 18.1 | |B |44056.7004 | | 0.262555 |33 | |09623 09623| +721482 |V1482 Sgr |180408.2-295823 |LB: | 17.6 | 18.4 | |p | | | | |M6 |01680 01680| +721483 |V1483 Sgr |180409.8-300243 |SRA | 16.2 | 17.2 | |p |32059. | | 142.0 | |M4 |01680 01680| +721484 |V1484 Sgr |180409.8-300244 |RRC | 16.4 | 17.0 | |B |43342.8190 | | 0.358490 |46 | |09623 09623| +721485 |V1485 Sgr |180410.9-301654 |RRAB | 17.6 | 18.6 | |B |32414.744 | | 0.60355 |20 : | |03524 01680| +721486 |V1486 Sgr |180411.8-295134 |RV: | 17.3 | 17.7 | |p |31675.0 | | 75.0 : | |M3 |01680 01680| +721487 |V1487 Sgr *|180412.6-295343 |EA/KE: | 18.6 | 19.2 | 18.8 |p |32736.800 | | 1.1861 |11 | |01680 01680| +721488 |V1488 Sgr |180412.3-295714 |SR: | 17.4 | 19.2 | |p |31705. | | 165.0 : | |M5:-M7 |01680 01680| +721489 |V1489 Sgr |180413.3-301232 |SR: | 17.1 | 17.7 | |p |32063. | | | |M7 |01680 01680| +721490 |V1490 Sgr |180414.2-301700 |RRAB | 18.0 | 18.7 | |B |32062.668 | | 0.48652 |28 : | |06294 01680| +721491 |V1491 Sgr *|180415.3-300317 |EA/SD | 18.4 | 19.2 | 18.5 |p |32736.780 | | 2.9089 |14 | |01680 01680| +721492 |V1492 Sgr |180414.7-295220 |E | 15.2 | 15.9 | |p |32000.852 | | 0.51 : | | |01680 01680| +721493 |V1493 Sgr |180416.0-300258 |RRAB | 16.4 | 17.6 | |B |43342.4767 | | 0.429506 |15 | |09623 09623| +721494 |V1494 Sgr |180417.1-294652 |DSCT | 17.2 | 17.8 | |p |32740.753 | | 0.17470 | | |06094 01680| +721495 |V1495 Sgr |180416.9-295523 |RRC: | 19.0 | 19.6 | |p |32739.759 | | 0.49130 : |25 | |06094 01680| +721496 |V1496 Sgr |180419.6-295827 |RRAB | 16.2 | 17.8 | |B |43342.7767 | | 0.507103 |14 | |09623 09623| +721497 |V1497 Sgr |180420.8-301655 |SR | 16.7 | 17.2 | |p |32003.0 | | 70.0 | |M3 |01680 01680| +721498 |V1498 Sgr *|180422.5-295442 |RRAB | 16.4 | 17.7 | |B |43342.7713 | | 0.474693 |18 | |09623 09623| +721499 |V1499 Sgr |180422.4-300054 |SRA | 17.3 | 18.1 | |p |32031. | | 155.0 |30 |M4-M6 |01680 01680| +721500 |V1500 Sgr |180423.1-300023 |SR: | 17.9 | 18.5 | |p |31942.9 | | 29.6 : | |M6.5 |01680 01680| +721501 |V1501 Sgr |180423.2-300133 |SRA | 17.5 | 18.2 | |p |32350.0 | | 91.0 | |M5 |01680 01680| +721502 |V1502 Sgr |180422.9-300649 |SRA | 16.5 | 18.8 | |p |33155. | | 305. | |M7 |08424 01680| +721503 |V1503 Sgr |180423.4-300708 |SR: | 16.9 | 17.4 | |p |32388. | | | |M5: |01680 01680| +721504 |V1504 Sgr |180423.1-301151 |SR | 16.6 | 17.9 | |p |32000. | | 300.0 : | |M6 |01680 01680| +721505 |V1505 Sgr |180423.8-301531 |EA/SD: | 17.7 | 18.2 | |p |32767.753 | | 0.97935 |11 : | |01680 01680| +721506 |V1506 Sgr |180423.5-295438 |SR | 17.2 | 18.0 | |p |32720.0 | | 50.0 | |M5-M6 |01680 01680| +721507 |V1507 Sgr |180423.4-300445 |RRC | 17.3 | 18.0 | |B |43333.7550 | | 0.291902 |43 | |09623 09623| +721508 |V1508 Sgr *|180424.6-300244 |RRAB | 17.2 | 18.4 | |B |44087.5571 | | 0.597617 |24 | |09623 09623| +721509 |V1509 Sgr *|180424.8-300959 |EA/D | 18.0 | 18.6 | 18.1 : |p |32438.659 | | 2.2650 |10 | |01680 01680| +721510 |V1510 Sgr *|180426.6-300837 |RRC | 15.3 | 16.4 | |p |32740.716 | | 0.32651 |30 | |03524 01680| +721511 |V1511 Sgr |180427.3-300116 |M | 16.3 |< 19.0 | |p |32350. | | 240.0 | |M3/6-M7 |01680 01680| +721512 |V1512 Sgr |180427.6-300455 |M | 17.2 |< 19.0 | |p |33004. | | 270.0 | |M6-M8 |01680 01680| +721513 |V1513 Sgr |180428.4-295556 |RRC | 17.2 | 17.9 | |B |43302.7741 | | 0.321899 |44 | |09623 09623| +721514 |V1514 Sgr |180427.6-294938 |RRAB | 16.9 | 18.1 | |p |32416.730 | | 0.51883 |20 | |03524 01680| +721515 |V1515 Sgr |180428.4-295650 |RRAB | 17.2 | 18.3 | |B |44406.8529 | | 0.521142 |18 | |09623 09623| +721516 |V1516 Sgr *|180429.6-300106 |RRAB | 17.0 | 18.0 | |B |43341.7923 | | 0.497101 |28 | |09623 09623| +721517 |V1517 Sgr *|180429.8-300250 |E | 15.0 | 15.6 | |p |32061.710 | | | | |01680 01680| +721518 |V1518 Sgr |180429.7-295133 |RRAB | 17.4 | 18.2 | |p |32740.818 | | 0.55992 |25 | |03524 01680| +721519 |V1519 Sgr |180430.7-295156 |RR | 17.9 | 18.3 | |p |32740.818 | | 0.401 : | | |01680 01680| +721520 |V1520 Sgr |180431.0-301304 |RRC | 16.0 | 16.6 | |p |32739.759 | | 0.41667 |35 | |01680 01680| +721521 |V1521 Sgr |180431.9-301407 |RRAB | 16.9 | 18.0 | |p |32740.818 | | 0.59479 |16 | |03524 01680| +721522 |V1522 Sgr |180430.9-294644 |RRC | 17.2 | 17.8 | |p |32349.902 | | 0.23158 |28 | |01680 01680| +721523 |V1523 Sgr *|180431.8-300241 |RRC | 17.3 | 18.1 | |B |44666.8556 | | 0.362018 |42 | |09623 09623| +721524 |V1524 Sgr |180432.2-295201 |SR | 18.2 | 19.4 | |p |33180. | | 200.0 | | |01680 01680| +721525 |V1525 Sgr |180432.1-295812 |SRA | 18.2 | 18.9 | |p |32739.0 | | 93.0 | |M7 |01680 01680| +721526 |V1526 Sgr *|180432.9-295132 |EA/D | 18.2 | 18.8 | 18.3 |p |32739.867 | | 2.2364 |13 | |01680 01680| +721527 |V1527 Sgr |180434.8-301408 |M | 15.8 |< 18.8 | |p |32350. | | 280.0 | |M7.5 |01680 01680| +721528 |V1528 Sgr |180434.1-295423 |M | 17.7 |< 19.0 | |p |33003. | | 344.0 | | |01680 01680| +721529 |V1529 Sgr |180434.4-300524 |SR | 17.6 |< 19.3 | |p |32825. | | 270. | |M5 |08424 01680| +721530 |V1530 Sgr |180436.1-300533 |RRAB | 17.4 | 18.1 | |B |32740.844 | | 0.66692 |17 | |03524 01680| +721531 |V1531 Sgr |180436.6-301318 |M | 16.2 |< 19.0 | |p |33088. | | 180. | |M7: |08424 01680| +721532 |V1532 Sgr |180437.1-300125 |RRAB | 17.3 | 18.4 | |p |32705.874 | | 0.63862 |10 | |03524 01680| +721533 |V1533 Sgr |180436.8-300406 |SRA | 15.8 | 16.9 | |p |32700. | | 127.0 | |M6 |01680 01680| +721534 |V1534 Sgr |180436.9-300633 |RRC: | 17.5 | 18.2 | |p |32416.672 | | 0.34916 : | | |01680 01680| +721535 |V1535 Sgr |180438.5-300127 |RRC | 17.3 | 17.8 | |p |32415.676 | | 0.22547 : |45 | |01680 01680| +721536 |V1536 Sgr |180440.5-301612 |RRC | 17.2 | 17.6 | |p |32388.777 | | 0.28821 |30 | |01680 01680| +721537 |V1537 Sgr *|180440.5-295248 |EA/KE: | 17.3 | 17.7 | 17.4 |p |32290.987 | | 1.44567 |13 | |01680 01680| +721538 |V1538 Sgr |180441.3-301720 |RRAB | 17.5 | 18.6 | |B |32705.874 | | 0.65494 |19 | |03524 01680| +721539 |V1539 Sgr |180442.8-300506 |SR: | 18.9 | 19.3 | |p |33126.0 | | 63.4 | | |01680 01680| +721540 |V1540 Sgr *|180442.6-295059 |M | 17.5 |< 19.2 | |p |33087. | | 397.5 | | |01680 01680| +721541 |V1541 Sgr |180444.8-295646 |RV | 15.9 | 16.6 | |p |32706.93 | | 62.305 | |M5 |01680 01680| +721542 |V1542 Sgr |180444.4-295649 |M: | 17.9 |< 18.9 | |p |32780. | | 275. | | |08424 01680| +721543 |V1543 Sgr |180444.7-295919 |M | 15.6 |< 18.6 | |p |31673. | | 211.0 | |M3-4e |01680 01680| +721544 |V1544 Sgr |180445.3-300026 |EA/D | 17.7 | 18.1 | |p |32413.730 | | 2.5252 |13 | |01680 01680| +721545 |V1545 Sgr |180446.2-300319 |SRA | 17.8 | 18.6 | |p |32802. | | 270. | |M8: |08424 01680| +721546 |V1546 Sgr *|180446.4-294727 |SR: | 17.3 | 18.0 | |p |31943. | | 175.0 : | | |01680 01680| +721547 |V1547 Sgr |180448.3-300401 |M | 16.8 |< 18.6 | |p |31942. | | 360.0 | | |01680 01680| +721548 |V1548 Sgr |180448.0-301411 |SR | 17.0 | 17.7 | |p |32741. | | 93.0 : | |M |01680 01680| +721549 |V1549 Sgr |180448.4-295410 |SR: | 17.4 | 17.9 | |p |32801.7 | | 66.27 | |M5 |01680 01680| +721550 |V1550 Sgr *|180450.4-300630 |RRC | 18.0 | 18.8 | |p |32001.867 | | 0.27217 |28 | |01680 01680| +721551 |V1551 Sgr |180449.5-300756 |RRAB | 17.8 | 18.9 | |p |32029.706 | | 0.51119 |21 | |03524 01680| +721552 |V1552 Sgr |180450.5-295345 |M | 15.6 |< 18.0 | |p |32707. | | 255.0 | |M(3-6)e |01680 01680| +721553 |V1553 Sgr |180450.7-300045 |SR | 17.0 | 17.5 | |p |32740. | | 1500.0 | |M5 |01680 01680| +721554 |V1554 Sgr *|180451.4-295228 |EA/SD: | 17.4 | 18.2 | 17.5 |p |32001.787 | | 1.2079 |18 | |01680 01680| +721555 |V1555 Sgr |180451.6-300532 |EA/DM: | 18.6 | 19.0 | |p |32739.791 | | 1.6148 |10 | |01680 01680| +721556 |V1556 Sgr |180453.3-300433 |RRC | 17.5 | 18.0 | |B |32736.855 | | 0.26902 |35 | |03524 01680| +721557 |V1557 Sgr *|180453.9-300016 |RRAB | 16.8 | 17.9 | |B |32740.786 | | 0.59084 | |F2.3-F3.2 |06094 01680| +721558 |V1558 Sgr *|180454.1-294637 |RRAB | 16.1 | 17.6 | |B |32740.844 | | 0.49906 |10 |F5.9 |03524 01680| +721559 |V1559 Sgr *|180455.5-301453 |EA/KE: | 17.9 | 18.3 |( 0.04 )|p |32737.790 | | 1.2989 |10 | |01680 01680| +721560 |V1560 Sgr |180457.4-295401 |SR | 17.6 | 18.6 | |p |32003. | | 360.0 : | | |01680 01680| +721561 |V1561 Sgr *|180457.6-295728 |EA/DM | 17.3 | 17.7 | 17.7 |p |32001.317 | | 1.4828 |12 | |01680 01680| +721562 |V1562 Sgr |180501.8-295638 |EA/D | 16.4 | 17.0 | |p |32062.700 | | 2.2559 |12 | |01680 01680| +721563 |V1563 Sgr |180501.3-301033 |EA/DM | 18.2 | 18.6 | |p |32063.708 | | 1.781 |12 | |01680 01680| +721564 |V1564 Sgr |180502.0-295115 |SR | 16.7 | 17.5 | |p |31676. | | 150.0 : | |M5 |01680 01680| +721565 |V1565 Sgr |180504.2-300343 |RRAB | 17.6 | 18.3 | |p |32739.759 | | 0.57571 |25 | |03524 01680| +721566 |V1566 Sgr |180505.1-300734 |RRAB | 18.3 | 19.0 | |p |32417.670 | | 0.56635 |18 | |03524 01680| +721567 |V1567 Sgr *|180504.9-295001 |EA/KE: | 17.8 | 18.3 | 18.0 |p |32415.730 | | 1.5471 |12 | |01680 01680| +721568 |V1568 Sgr |180505.6-295631 |I | 17.5 | 18.1 | |p | | | | | |01680 01680| +721569 |V1569 Sgr *|180505.9-300445 |EA | 17.9 | 18.8 | 18.6 |p |32801.660 | | 1.9811 |27 | |01680 01680| +721570 |V1570 Sgr |180507.1-295752 |RRAB | 17.5 | 18.9 | |p |32736.821 | | 0.46323 |08 | |03524 01680| +721571 |V1571 Sgr |180509.9-300315 |RRAB | 16.9 | 18.0 | |p |32740.844 | | 0.47941 |18 | |03524 01680| +721572 |V1572 Sgr |180536. -313843:|N | 11. |< 16. | |p |35155. -|1955 | | |pec(NOVA) |01681 | +721573 |V1573 Sgr |180548.8-275233 |M: | 13.9 |< 14.8 | |p |28685. | | 320. | | |02448 02448| +721574 |V1574 Sgr |181004.6-292949 |SR | 14.3 | 15.8 | |p |30903. | | 368. | | |01634 01634| +721575 |V1575 Sgr |181152.7-292540 |EA/SD | 14.0 | 15.2 | |p |28458.2928 | | 0.8231878 |22 *| |01682 01682| +721576 |V1576 Sgr *|181230.8-333500 |RRAB | 15.2 | 16.6 | |p |35664.790 | | 0.6205879 |12 | |00001 01682| +721577 |V1577 Sgr *|181218.1-275517 |M | 10.6 | 16.6 | |p |34240. | | 284.0 | |Me |00001 01634| +721578 |V1578 Sgr |181312.8-282746 |SR | 13.8 |< 15.3 | |p |28815. | | 225. | | |01634 01634| +721579 |V1579 Sgr |181316.9-303048 |SR | 14.6 | 16.4 | |p |29927. | | 142. | | |01634 01634| +721580 |V1580 Sgr *|181314.6-280730 |SR | 13.7 | 15.2 | |p |30553. | | 355. : | | |01634 01634| +721581 |V1581 Sgr |181457.1-293740 |SR | 13.8 | 15.5 | |p |28611. | | 253. | | |01634 01634| +721582 |V1582 Sgr |181533.1-293622 |SR | 13.9 | 15.3 | |p |34140. | | 176. | | |01634 01634| +721583 |V1583 Sgr |181526.5-232318 |NA | 8.9 |< 16.5 | |p |25422. |1928 | | | |01683 08953| +721584 |V1584 Sgr |181546.5-302343 |SRA | 13.1 | 15.2 | |p |34153. | | 223. | | |01634 01634| +721585 |V1585 Sgr |181630.4-293635 |SR | 13.2 | 15.1 | |p |34153. | | 231. | | |01634 01634| +721586 |V1586 Sgr |181657.4-303924 |SR | 13.9 | 16.0 | |p |30553. | | 154. | | |01634 01634| +721587 |V1587 Sgr |181730.4-291602 |M: | 13.2 |< 16.1 | |p |30167. | | 230. | | |01634 01634| +721588 |V1588 Sgr |181730.7-284816 |M | 13.1 |< 16.3 | |p |34194. | | 136. | | |01634 01634| +721589 |V1589 Sgr *|181821.0-311320 |RRAB | 14.8 | 16.6 | |p |35660.834 | | 0.5408729 |14 | |00001 01682| +721590 |V1590 Sgr |181846.4-303909 |M: | 13.2 |< 16.2 | |p |30167. | | 300. | | |01634 01634| +721591 |V1591 Sgr |181855.9-274426 |M | 12.4 |< 16.3 | |p |30904. | | 197.0 | | |00001 01634| +721592 |V1592 Sgr |181921.0-283823 |M | 11.7 | 15.3 | |p |30553. | | 218. | | |01634 01634| +721593 |V1593 Sgr |181934.3-303107 |SR | 13.4 | 15.8 | |p |31267. | | 188. | | |01634 01634| +721594 |V1594 Sgr |182004.9-304340 |M | 13.9 |< 16.0 | |p |28659. | | 225. | | |01634 01634| +721595 |V1595 Sgr |182034.2-331803 |CEP: | 15.5 | 17.2 | |p |35686.8 | | | | |05869 01682| +721596 |V1596 Sgr |182024.1-295625 |SR | 13.4 | 15.3 | |p |34183. | | 243. | | |01634 01634| +721597 |V1597 Sgr |182102.2-334830 |RRAB | 13.9 | 15.4 | |p |28772.3023 | | 0.5345226 |11 | |01682 01682| +721598 |V1598 Sgr |182107.8-335646 |RRAB | 14.0 | 16.0 | |p |35666.799 | | 0.4373159 |14 | |00001 01682| +721599 |V1599 Sgr |182118.1-302543 |M | 11.4 | 14.5 | |p |36090. | | 138.5 |50 |Me |07087 01634| +721600 |V1600 Sgr |182130.0-321151 |RRAB | 14.6 | 16.3 | |p |35660.772 | | 0.5564977 |18 | |01682 01682| +721601 |V1601 Sgr |182116.9-273430 |EA | 14.0 | 15.0 | |p |28778.219 | | 2.963485 |12 | |01682 01682| +721602 |V1602 Sgr *|182153.8-324709 |EA/SD | 13.9 | 15.2 | |p |28815.323 | | 1.7233166 |16 : | |01682 01682| +721603 |V1603 Sgr |182310.7-281717 |EA/SD | 12.1 | 15.8 | |p |28744.247 | | 3.332690 |10 *| |01682 01682| +721604 |V1604 Sgr |182349.7-272922 |M | 12.7 |< 16.4 | |p |26210. | | 237.5 | | |02515 01634| +721605 |V1605 Sgr |182458.3-351250 |RRAB | 13.8 | 14.5 | |p |35636.902 | | 0.4395125 |20 | |00001 01682| +721606 |V1606 Sgr |182532.0-300107 |RRAB | 14.4 | 16.1 | |p |28783.2341 | | 0.5517875 |15 | |01682 01682| +721607 |V1607 Sgr |182548.3-313948 |RRAB | 14.9 | 16.4 | |p |35660.821 | | 0.5714486 |12 | |00001 01682| +721608 |V1608 Sgr |182605.7-280033 |SR | 13.4 | 14.9 | |p |34188. | | 121.7 | | |01634 01634| +721609 |V1609 Sgr |182625.3-295236 |M | 12.8 | 15.9 | |p |34153. | | 223. | | |01634 01634| +721610 |V1610 Sgr *|182718.3-270941 |CEP: | 14.4 | 15.3 | |p |34190.495 | | | | |01682 01682| +721611 |V1611 Sgr |182853.8-325252 |RRAB | 14.9 | 16.2 | |p |28695.4486 | | 0.5675328 |12 | |01682 01682| +721612 |V1612 Sgr |182855.6-301205 |M | 13.4 | 15.9 | |p |34130. | | 190. | | |01634 01634| +721613 |V1613 Sgr |182911.8-345610 |RRC | 14.1 | 15.3 | |p |35660.858 | | 0.29914 |42 | |05869 01682| +721614 |V1614 Sgr |182900.0-295011 |M | 13.1 |< 15.8 | |p |34159. | | 358. | |M7 |01634 01634| +721615 |V1615 Sgr |182924.0-282133 |SR: | 14.7 |< 15.7 | |p |30167. | | 128.9 | | |01634 01634| +721616 |V1616 Sgr |182956.7-285728 |SR: | 13.5 | 15.7 | |p |28360. | | | | |01634 01634| +721617 |V1617 Sgr |183023.2-333858 |RRAB | 14.3 | 15.9 | |p |35661.947 | | 0.6494899 |16 | |00001 01682| +721618 |V1618 Sgr |183012.0-293506 |SR: | 13.5 | 15.9 | |p |31267. | | 262. | | |01634 01634| +721619 |V1619 Sgr |183014.8-283531 |EA/SD | 14.4 | 15.6 | |p |27987.3595 | | 0.6053326 |15 : | |01682 01682| +721620 |V1620 Sgr |183016.7-283515 |RRAB | 14.5 | 16.0 | |p |28783.3546 | | 0.5999366 |16 : | |01682 01682| +721621 |V1621 Sgr |183027.6-300104 |RRAB | 14.7 | 15.4 | |p |28346.5021 | | 0.4195745 |09 | |01682 01682| +721622 |V1622 Sgr |183159.4-280403 |M | 13.2 |< 16.8 | |p |34188. | | 193. | | |01634 01634| +721623 |V1623 Sgr |183229.2-334445 |RRAB | 14.6 | 16.6 | |p |35664.830 | | 0.43943315 |14 | |01682 01682| +721624 |V1624 Sgr |183230.9-340745 |RRAB | 14.6 | 15.7 | |p |35665.806 | | 0.5833910 |17 | |01682 01682| +721625 |V1625 Sgr |183232.4-310924 |RRAB | 14.7 | 15.9 | |p |35636.862 | | 0.5527751 |17 | |00001 01682| +721626 |V1626 Sgr |183332.7-353626 |EA | 14.0 | 15.3 | |p |35668.780 | | 2.4534779 |12 *| |00001 01682| +721627 |V1627 Sgr |183548.4-301623 |EA/SD | 14.2 | 16.0 | |p |28699.391 | | 4.55377 |15 *| |01682 01682| +721628 |V1628 Sgr |183616.5-292125 |SR | 14.0 | 15.3 | |p |34181. | | 154. | | |01634 01634| +721629 |V1629 Sgr |183611.9-281321 |M: | 13.9 |< 16.2 | |p |28755. | | 340. | | |01634 01634| +721630 |V1630 Sgr |183645.5-293447 |M | 13.2 | 16.5 | |p |31267. | | 285. : | | |01634 01634| +721631 |V1631 Sgr |183727.2-282940 |SR | 12.9 | 15.0 | |p |34178. | | 231. | | |01634 01634| +721632 |V1632 Sgr |183724.2-280922 |M | 13.0 |< 15.6 | |p |28362. | | 263. | | |01634 01634| +721633 |V1633 Sgr |183814.7-323544 |RRAB | 13.9 | 16.2 | |p |35636.916 | | 0.5199411 |17 | |00001 01682| +721634 |V1634 Sgr |183821.3-323553 |M | 11.7 | 17.0 | |p |36050. | | 280. | |Me |05869 01634| +721635 |V1635 Sgr |183939.1-344117 |RRAB | 13.9 | 15.0 | |p |28815.3376 | | 0.4684874 |17 | |01682 01682| +721636 |V1636 Sgr |184023.1-295706 |RRAB | 14.2 | 15.5 | |p |28458.2994 | | 0.4593327 |09 | |01682 01682| +721637 |V1637 Sgr |184031.0-282425 |M | 11.3 |< 17. | |p |42651. | | 248. | |Me |08519 01634| +721638 |V1638 Sgr |184135.5-285050 |SR | 13.6 | 15.2 | |p |28755. | | 203. | | |01634 01634| +721639 |V1639 Sgr *|184212.3-332605 |RRAB | 14.2 | 15.6 | |p |30553.328 | | 0.5543598 | | |01682 01682| +721640 |V1640 Sgr *|184335.5-345214 |RRAB | 12.3 | 13.6 | |p |28780.3361 | | 0.3673598 |32 |F6 |01682 01682| +721641 |V1641 Sgr |184353.4-283829 |SRA | 13.3 | 15.2 | |p |29908. | | 102.1 | | |01634 01634| +721642 |V1642 Sgr *|184444.0-270346 |SRB | 13.9 |< 16. | |p |34195. | | 300. : | | |01634 01634| +721643 |V1643 Sgr *|194548.0-405619 |EW: | 11.8 | 12.1 | 12.1 |V |34482.428 | | 0.679456 | | |00080 02383| +721644 |V1644 Sgr *|200914.9-293322 |RRAB | 11.6 | 12.4 | |V |34235.360 | | 0.639280 |15 | |00080 02384| +721645 |V1645 Sgr |202044.5-410706 |RRAB | 11.5 | 12.1 | |V |34234.365 | | 0.552838 |27 | |00080 06286| +721646 |V1646 Sgr |202308.8-311742 |RRAB | 11.4 | 12.3 | |V |34324.391 | | 0.544443 |13 | |00080 06286| +721647 |V1647 Sgr *|175913.5-365620 |EA/DM | 6.94 | 7.57 | 7.43 |V |41829.69510 | | 3.28279251 |08 |A1V+A2V |09854 CoD | +721648 |V1648 Sgr *|181728.8-251334 |M: | 14.4 | 16.2 | |p |43047. | | 256. | | |00842 08527| +721649 |V1649 Sgr |181811.6-235549 |SRA | 13.6 | 15.9 | |p |37140. | | 198. | |M8 |00842 08527| +721650 |V1650 Sgr |182119.8-231503 |SRA | 14.3 | 16.2 | |p |42271. | | 204.44 | |M3-M8 |00001 08527| +721651 |V1651 Sgr |182151.3-231249 |M | 14.3 |< 16.3 | |p |40400. | | 400.00 | | |08723 08723| +721652 |V1652 Sgr *|182207.0-263840 |M: | 13.6 | 16.0 | |p |37816. | | 218. | |M3-M5 |00842 08526| +721653 |V1653 Sgr *|182205.2-262944 |M: | 14.0 | 16.0 : | |p |42684. | | 306. | |M7 |08724 08724| +721654 |V1654 Sgr |182317.1-231510 |EA/SD | 13.2 | 15.8 | |p |40064.653 | | 3.44821 | | |08527 08527| +721655 |V1655 Sgr |182435.8-250111 |M | 13.9 |< 16.2 | |p |42980. | | 245. | |M6-M7 |08611 08611| +721656 |V1656 Sgr *|182511.5-262615 |M | 13.6 | 16.0 : | |p |27300. | | 246.5 | |M7: |00842 06278| +721657 |V1657 Sgr |182502.7-230510 |M | 13.7 |< 16.3 | |p |24370. | | 136.8 | |M2 |00842 06278| +721658 |V1658 Sgr *|182535.1-230638 |M | 13.0 : |< 16.3 | |p |36400. | | 105.8 | | |00001 08723| +721659 |V1659 Sgr |182608.6-222725 |SRA | 13.9 | 16.1 | |p |38607. | | 197. | |M5-M6 |00842 08526| +721660 |V1660 Sgr *|182633.8-263303 |M: | 13.2 | 15.6 | |p |40750. | | 340. | | |00842 08526| +721661 |V1661 Sgr *|182658.3-210852 |M: | 13.6 | 16.0 | |p |36770. | | 273. | |M8 |08724 08724| +721662 |V1662 Sgr |182735.4-220054 |M | 13.8 |< 16.5 | |p |25460. | | 290.5 | | |00842 06278| +721663 |V1663 Sgr |182752.7-252029 |SR | 14.0 | 16.3 | |p |43000. | | 148. : | | |08723 08723| +721664 |V1664 Sgr |182828.2-245158 |M | 13.6 |< 16.5 | |p |27230. | | 204. | |M3: |00842 06278| +721665 |V1665 Sgr |182824.9-214049 |M | 13.9 |< 16.4 | |p |42275. | | 298. | | |08723 08723| +721666 |V1666 Sgr |182912.6-250046 |SRA | 13.8 | 15.9 | |p |36728. | | 102.4 : | |M4-M6: |07087 07087| +721667 |V1667 Sgr *|182927.2-245456 |SRA | 13.7 | 16.0 : | |p |43010. | | 159. | |M6-M8 |08723 08723| +721668 |V1668 Sgr *|182925.4-220607 |M | 13.5 | 16.3 | |p |41530. | | 286. | | |08723 08723| +721669 |V1669 Sgr |183022.7-250537 |SRA | 12.3 | 13.6 | |p |42265. | | 175. | |M3 |08724 08724| +721670 |V1670 Sgr *|183025.9-234354 |CWA | 12.9 | 15.5 | |p |43336.599 | | 29.6576 | | |09855 09855| +721671 |V1671 Sgr |183042.2-255709 |M | 13.5 | 16.2 | |p |39030. | | 190.5 | | |08729 08728| +721672 |V1672 Sgr |183037.5-211053 |SRA | 14.2 | 16.2 | |p |43750. | | 236. | |M4 |08729 08728| +721673 |V1673 Sgr |183114.1-251617 |SRA | 14.1 | 16.0 | |p |36110. | | 103.16 | |M7 |00001 08728| +721674 |V1674 Sgr |183121.1-250518 |SRA | 14.1 | 16.5 | |p |43310. | | 195. | |M8 |08729 08728| +721675 |V1675 Sgr *|183136.0-245638 |M | 14.0 |< 16.0 | |p |24360. | | 340. | | |00842 08728| +721676 |V1676 Sgr |183141.8-234443 |M | 13.4 | 16.4 | |p |41140. | | 257. | |M7 |08729 08728| +721677 |V1677 Sgr |183142.4-224343 |M | 13.0 | 15.5 | |p |41950. | | 239. | |M7 |08729 08728| +721678 |V1678 Sgr |183154.8-222200 |M | 13.7 | 16.2 | |p |42650. | | 212. | |M7 |08729 08728| +721679 |V1679 Sgr *|183213.5-260025 |M | 14.2 |< 16.0 | |p |42330. | | 242. | | |08729 08728| +721680 |V1680 Sgr |183228.1-231636 |M | 14.1 |< 16.5 | |p |26510. | | 227. | |M4 |00842 06278| +721681 |V1681 Sgr *|183242.8-233747 |M | 13.9 |< 16.4 | |p |41100. | | 222. | |M5-M8 |08729 08728| +721682 |V1682 Sgr |183250.0-235053 |SRA | 13.8 | 16.0 | |p |42310. | | 192.25 | |M5-M7 |08729 08728| +721683 |V1683 Sgr |183303.9-205430 |M | 12.0 | 16.2 | |p |40080. | | 216.5 | |M7 |07087 07087| +721684 |V1684 Sgr |183314.6-250523 |M | 13.3 | 15.9 | |p |36785. | | 218. | |M7 |08527 06278| +721685 |V1685 Sgr |183320.8-203933 |M | 13.1 |< 16.3 | |p |43350. | | 266. | |M5: |08729 08728| +721686 |V1686 Sgr |183400.2-250558 |M | 14.1 |< 16.5 | |p |27960. | | 288. | | |00842 06278| +721687 |V1687 Sgr |183352.4-204858 |M | 14.2 |< 16.2 | |p |43375. | | 186.3 | |M4 |08729 08728| +721688 |V1688 Sgr |183431.7-232725 |M | 14.0 |< 16.5 | |p |42250. | | 321. | |M8 |08729 08728| +721689 |V1689 Sgr |183438.8-222831 |SRA | 14.7 | 16.4 | |p |42275. | | 149.5 | | |08723 08723| +721690 |V1690 Sgr *|183449.1-211513 |M | 14.0 |< 16.4 | |p |42580. | | 291. | |M7 |08729 08728| +721691 |V1691 Sgr *|183452.0-220459 |M | 13.7 |< 16.4 | |p |39300. | | 232. | |M8 |08723 08723| +721692 |V1692 Sgr |183459.0-191609 |M | 12.0 | 16.3 | |p |26130. | | 500. | |M9 |00842 06286| +721693 |V1693 Sgr |183507.5-190753 |SR | 13.6 | 15.3 | |p |25800. | | 178.2 | |M4 |00842 06286| +721694 |V1694 Sgr |183515.3-213650 |M | 13.4 | 16.4 : | |p |25850. | | 169.5 | |M5-M7 |00842 06286| +721695 |V1695 Sgr |183526.9-222941 |SRA | 14.3 | 16.5 : | |p |40090. | | 191.5 | | |08723 08723| +721696 |V1696 Sgr |183551.9-251528 |M: | 14.2 |< 16.0 | |p |42585. | | 292. | |M5-M7 |08723 08723| +721697 |V1697 Sgr *|183602.8-220729 |M: | 14.6 | 16.4 : | |p |43010. | | 260. | |M6 |08723 08723| +721698 |V1698 Sgr *|183604.6-223950 |M: | 14.5 | 16.3 : | |p |23570. | | 291. | | |00842 06278| +721699 |V1699 Sgr *|183651.6-223201 |M | 13.2 |< 16.4 | |p |36300. | | 203.6 | |M3 |08724 08724| +721700 |V1700 Sgr |183714.4-211859 |M: | 14.0 | 16.5 : | |p |26510. | | 124. | |M4 |00842 06286| +721701 |V1701 Sgr |183750.7-242744 |M | 13.6 |< 16.0 | |p |41950. | | 252.3 | |M6-M7 |07913 07913| +721702 |V1702 Sgr |183901.5-204400 |SRA | 13.3 | 15.2 | |p |42250. | | 101.5 | |M6 |07087 06286| +721703 |V1703 Sgr *|184019.6-184228 |SRA | 14.3 | 16.3 : | |p |26120. | | 206. | |M6 |06272 06272| +721704 |V1704 Sgr |184023.6-204849 |M | 13.6 |< 16.2 | |p |27235. | | 219.5 | |M7 |00842 06286| +721705 |V1705 Sgr *|184113.7-192124 |SR | 14.9 |< 16.2 | |p |42250. | | 142. | |M5 |03303 03303| +721706 |V1706 Sgr |184116.8-194248 |SR | 14.8 |< 16.2 | |p |38615. | | 205. | |M7: |03303 03303| +721707 |V1707 Sgr |184154.2-201015 |M | 12.7 | 15.7 | |p |25740. | | 195. | |M2ea |00842 06286| +721708 |V1708 Sgr |184231.1-214348 |SRA | 13.8 | 16.3 | |p |26130. | | 167. | | |00842 08724| +721709 |V1709 Sgr |184250.3-194748 |SRA | 13.9 | 16.3 : | |p |26160. | | 210.8 | | |06272 06272| +721710 |V1710 Sgr |184324.1-211250 |M | 13.9 |< 16.2 | |p |26100. | | 256.5 | | |00842 06278| +721711 |V1711 Sgr *|200108.0-303039 |CWA | 10.43 | 11.06 | |V |44151.11 | | 28.556 |35 |F4-F6 |00001 02570| +721712 |V1712 Sgr |174910.2-292853 |EA/GS | 14.5 |< 15.2 | |p |28659.49 | | 49.0 |09 | |02448 02448| +721713 |V1713 Sgr |175010.2-291330 |M: | 13.8 |< 15.1 | |p |28410. | | 330. | | |02448 02448| +721714 |V1714 Sgr *|175255.8-293211 |M | 13.5 |< 17. | |p |33527. | | 532. | | |03340 02448| +721715 |V1715 Sgr |175612.2-285017 |M: | 14.2 |< 15.2 | |p |27695. | | 320. : | | |02448 02448| +721716 |V1716 Sgr |175659.3-271926 |SR | 13.9 | 15.2 | |p |28425. | | 170. : | |M6 |02448 02448| +721717 |V1717 Sgr |175739.1-295203 |SRA | 12.7 | 14.9 | |p |28070. | | 440. | |Ce:(M0:e) |02448 02448| +721718 |V1718 Sgr |175827.9-324856 |M: | 14.4 |< 15.4 | |p |28070. | | | | |02448 02448| +721719 |V1719 Sgr |175829.1-341304 |L | 13.7 | 15.1 | |p | | | | | |02448 02448| +721720 |V1720 Sgr |175829.4-334431 |SR: | 14.3 | 15.1 | |p | | | | | |02448 02448| +721721 |V1721 Sgr *|175843.2-331934 |EA/DM | 10.4 | 10.6 | |p |28664.475 | | 1.788564 |10 |F3V |02448 08613| +721722 |V1722 Sgr |175905.9-341414 |M: | 14.8 |< 15.5 | |p |28375. | | 210. | | |02448 02448| +721723 |V1723 Sgr *|175902.7-272920 |EW/KW | 13.4 | 13.9 | 13.8 |p |29479.4222 | | 0.29545329 | | |02448 02448| +721724 |V1724 Sgr |175920.8-301823 |M | 14.0 |< 15.5 | |p |28420. | | 280. | | |02448 02448| +721725 |V1725 Sgr |175948.2-311604 |M | 13.0 |< 15.2 | |p |28415. | | 380. | |M7 |02448 02448| +721726 |V1726 Sgr |180000.6-314149 |L | 12.7 | 13.6 | |p | | | | | |02448 02448| +721727 |V1727 Sgr |180007.2-310647 |L | 14.6 | 15.2 | |p | | | | | |02448 02448| +721728 |V1728 Sgr | | | | | | | | | | | | |=V2471 Sgr +721729 |V1729 Sgr |180019.0-333828 |SR | 13.3 |< 13.8 | |p |28350. | | 93. | | |02448 02448| +721730 |V1730 Sgr *|180018.5-294133 |EA/D | 14.7 | 15.4 | 14.8 : |p |27981.408 | | 5.55094 |12 | |02448 02448| +721731 |V1731 Sgr |180029.4-333830 |M: | 13.2 |< 14.9 | |p |28410. | | 460. : | | |02448 02448| +721732 |V1732 Sgr |180030.5-293118 |EA/SD: | 14.4 |< 15.2 | |p |28360.301 | | 1.884797 |11 | |02448 02448| +721733 |V1733 Sgr |180053.3-353019 |SR | 15.1 | 15.6 | |p |28680. | | 145. | | |02448 02448| +721734 |V1734 Sgr |180102.9-290446 |SR | 13.6 | 14.5 | |p |28660. | | 140. : | |C(N) |02448 02448| +721735 |V1735 Sgr |180103.7-285632 |M: | 14.6 |< 15.4 | |p |28760. | | 240. | | |02448 02448| +721736 |V1736 Sgr |180134.8-333654 |SR: | 14.8 | 15.3 | |p | | | | | |02448 02448| +721737 |V1737 Sgr |180139.0-342025 |M | 14.4 |< 18. | |p |28405. | | 195. | | |02448 02448| +721738 |V1738 Sgr |180155.0-314916 |M | 14.1 | 17.9 | |p |28085. | | 225. | | |02448 02448| +721739 |V1739 Sgr |180203.2-325214 |SR | 14.6 | 15.5 | |p |28400. | | 95. : | | |02448 02448| +721740 |V1740 Sgr |180219.0-282952 |SR | 14.2 | 15.2 | |p |28075. | | 250. : | | |02448 02448| +721741 |V1741 Sgr *|180214.3-240347 |IN | 17. | 18. | |p | | | | | |02929 02927| +721742 |V1742 Sgr |180253.0-310840 |L | 14.5 | 15.3 | |p | | | | | |02448 02448| +721743 |V1743 Sgr *|180237.3-241624 |IN | 17.7 |< 18.5 | |p | | | | |ea: |02929 02927| +721744 |V1744 Sgr |180255.0-311208 |SR: | 14.5 | 16.8 | |p |28400. | | 245. : | | |02448 02448| +721745 |V1745 Sgr |180259.5-313104 |M | 14.9 |< 18. | |p |28090. | | 230. : | | |02448 02448| +721746 |V1746 Sgr |180305.0-322644 |M | 14.4 |< 18.3 | |p |28070. | | 248. : | | |02448 02448| +721747 |V1747 Sgr *|180242.8-241658 |IN | 17.5 | 18.0 | |p | | | | | |02929 02927| +721748 |V1748 Sgr *|180243.3-241743 |IN | 18. : |< 18.5 | |p | | | | | |02929 02927| +721749 |V1749 Sgr *|180248.8-242109 |IN | 17.7 : |< 18.5 | |p | | | | | |02929 02927| +721750 |V1750 Sgr *|180251.1-241808 |IN | 17.5 |< 18.5 | |p | | | | | |02929 02927| +721751 |V1751 Sgr *|180251.1-241923 |IN | 18. : |< 18.5 | |p | | | | | |02929 02927| +721752 |V1752 Sgr *|180254.3-242057 |INB | 15.8 | 18.0 | |p | | | | |K5:e |02929 02927| +721753 |V1753 Sgr *|180302.0-241020 |IN | 17. |< 17.7 | |p | | | | |e: |02929 02927| +721754 |V1754 Sgr |180329.4-321027 |M: | 15.1 |< 15.5 | |p |27865. | | | | |02448 02448| +721755 |V1755 Sgr *|180322.1-242027 |IN | 17.5 | 18.3 | |p | | | | | |02929 02927| +721756 |V1756 Sgr |180342.4-284152 |M: | 14.0 |< 15.2 | |p |28040. | | 260. | | |02448 02448| +721757 |V1757 Sgr |180344.3-294229 |M: | 14.2 |< 14.8 | |p |28435. | | 200. | | |02448 02448| +721758 |V1758 Sgr *|180337.5-242001 |IN | 18. | 18.5 | |p | | | | | |02929 02927| +721759 |V1759 Sgr |180351.1-274010 |M: | 14.2 |< 14.6 | |p |28000. | | | | |02448 02448| +721760 |V1760 Sgr |180354.7-284956 |M: | 14.6 |< 15.4 | |p |28050. | | 200. | | |02448 02448| +721761 |V1761 Sgr *|180349.4-242337 |IN | 17. | 17.6 | |p | | | | | |02929 02927| +721762 |V1762 Sgr *|180350.2-242223 |IN | 18. |< 18.5 : | |p | | | | | |02929 02927| +721763 |V1763 Sgr |180424.9-335001 |M: | 15.0 |< 15.8 | |p |28675. | | 745. /N| | |02448 02448| +721764 |V1764 Sgr *|180358.3-241649 |IN | 17.7 | 18.4 | |p | | | | |ea: |02929 02927| +721765 |V1765 Sgr *|180359.2-242308 |INB | 17.0 | 17.8 | |p | | | | |G-Kea: |02929 02927| +721766 |V1766 Sgr |180425.1-331148 |M | 14.2 |< 15.8 | |p |28450. | | 240. | | |02448 02448| +721767 |V1767 Sgr |180420.8-295151 |L | 13.6 | 13.9 | |p | | | | | |02448 02448| +721768 |V1768 Sgr *|180409.2-242020 |IN | 17.5 | 18.5 : | |p | | | | | |02929 02927| +721769 |V1769 Sgr *|180409.9-242533 |IN | 17.5 | 18. | |p | | | | | |02929 02927| +721770 |V1770 Sgr |180430.3-311538 |M | 12.5 |< 18. | |p |28770. | | 292. : | | |02448 02448| +721771 |V1771 Sgr *|180411.8-241956 |IN | 17.8 |< 18.4 | |p | | | | | |02929 02927| +721772 |V1772 Sgr *|180412.1-242334 |IN | 17.0 | 18. | |p | | | | | |02929 02927| +721773 |V1773 Sgr *|180412.4-241152 |IN | 17.5 | 18.2 : | |p | | | | |ea: |02929 02927| +721774 |V1774 Sgr *|180412.9-242011 |IN | 17.5 | 18.2 | |p | | | | | |02929 02927| +721775 |V1775 Sgr *|180415.7-241902 |IN | 17.0 | 18. | |p | | | | |ea: |02929 02927| +721776 |V1776 Sgr *|180416.1-241953 |IN | 16.7 | 17.3 | |p | | | | | |02929 02927| +721777 |V1777 Sgr *|180416.4-242009 |IN | 17.2 | 18. | |p | | | | | |02929 02927| +721778 |V1778 Sgr *|180416.4-242439 |IN | 17.3 | 18. | |p | | | | |ea: |02929 02927| +721779 |V1779 Sgr *|180417.9-241747 |IN | 17.5 | 18.2 | |p | | | | |ea: |02929 02927| +721780 |V1780 Sgr *|180417.4-241910 |IN | 17.8 |< 18.5 | |p | | | | |ea |02929 02927| +721781 |V1781 Sgr *|180419.6-242405 |IN | 16.8 | 17.5 | |p | | | | | |02929 02927| +721782 |V1782 Sgr *|180423.8-241635 |IN | 17.8 : |< 18.5 | |p | | | | |ea |02929 02927| +721783 |V1783 Sgr |180449.7-324314 |LB | 12.0 | 14.5 | |p | | | | |C(R0) |02448 02452| +721784 |V1784 Sgr *|180424.6-241925 |IN | 17.2 | 17.8 | |p | | | | |ea: |02929 02927| +721785 |V1785 Sgr *|180425.2-241334 |IN | 18. |< 18.5 : | |p | | | | | |02929 02927| +721786 |V1786 Sgr *|180427.3-242057 |IN | 17.3 | 18. | |p | | | | | |02929 02927| +721787 |V1787 Sgr *|180427.1-242107 |IN | 18. | 18.5 | |p | | | | | |02929 02927| +721788 |V1788 Sgr *|180427.7-242051 |IN | 17.7 |< 18.5 | |p | | | | | |02929 02927| +721789 |V1789 Sgr *|180428.4-242112 |IN | 17.5 |< 18.3 | |p | | | | | |02929 02927| +721790 |V1790 Sgr *|180428.2-242548 |IN | 17.7 | 18.5 : | |p | | | | |ea: |02929 02927| +721791 |V1791 Sgr *|180429.4-242304 |IN | 17.6 | 18.3 : | |p | | | | |ea: |02929 02927| +721792 |V1792 Sgr *|180430.0-242019 |IN | 18. |< 18.5 | |p | | | | | |02929 02927| +721793 |V1793 Sgr *|180430.9-242645 |IN | 17.1 | 17.8 | |p | | | | |ea: |02929 02927| +721794 |V1794 Sgr *|180431.6-242030 |IN | 17.5 |< 18. | |p | | | | | |02929 02927| +721795 |V1795 Sgr *|180435.3-241743 |INB: | 15.7 | 17.7 | |B | | | | |K |02929 02927| +721796 |V1796 Sgr |180448.5-285930 |RRAB | 14.0 | 14.6 | |p |28745.482 | | 0.691232 |10 | |02448 02448| +721797 |V1797 Sgr *|180436.5-241914 |IN | 17.1 : | 18. : | |p | | | | |ea |02929 02927| +721798 |V1798 Sgr *|180440.4-242359 |IN | 17.8 |< 18.5 | |p | | | | |ea: |02929 02927| +721799 |V1799 Sgr |180510.5-335829 |M | 14.5 |< 18. | |p |28370. | | 235. | | |02448 02448| +721800 |V1800 Sgr *|180440.9-241711 |IN | 18. | 18.5 | |p | | | | | |02929 02927| +721801 |V1801 Sgr *|180444.2-241538 |IN | 17.5 |< 18. | |p | | | | | |02929 02927| +721802 |V1802 Sgr *|180445.2-242059 |IN | 17.4 | 18. | |p | | | | | |02929 02927| +721803 |V1803 Sgr *|180448.6-242641 |IN | 15.7 | 16.8 | |p | | | | | |02929 02927| +721804 |V1804 Sgr |180502.2-280154 |M: | 14.0 |< 14.5 | |p |28762. | | | |M9.5 |02448 02448| +721805 |V1805 Sgr *|180455.8-242335 |IN | 17.1 | 17.8 | |p | | | | | |02929 02927| +721806 |V1806 Sgr |180510.1-291048 |SR | 14.6 | 15.8 | |p |28410. | | 230. | | |02448 02448| +721807 |V1807 Sgr *|180457.4-243211 |IN | 17.8 |< 18. | |p | | | | | |02929 02927| +721808 |V1808 Sgr *|180458.6-242436 |IN | 17.6 | 18.5 | |p | | | | |ea |02929 02927| +721809 |V1809 Sgr |180535.2-341257 |SRB | 14.3 | 15.0 | |p |28060. | | 150. : | | |02448 02448| +721810 |V1810 Sgr |180522.0-304337 |SRA | 14.6 | 15.2 | |p |28420. | | 220. | | |02448 02448| +721811 |V1811 Sgr |180539.7-282443 |SR: | 14.4 | 14.9 | |p | | | | |C |02448 02448| +721812 |V1812 Sgr |180625.2-342010 |SR: | 14.2 | 14.6 | |p |28430. | | | | |02448 02448| +721813 |V1813 Sgr |180616.3-294904 |M: | 14.3 |< 15.0 | |p |28370. | | 210. : | | |02448 02448| +721814 |V1814 Sgr |180629.8-325805 |M: | 14.3 |< 15.3 | |p |28430. | | 175. : | | |02448 02448| +721815 |V1815 Sgr |180638.5-331945 |M | 13.8 | 17.3 | |p |30553. | | 248. | | |00001 02448| +721816 |V1816 Sgr |180637.2-302204 |CWA: | 14.7 |< 15.2 | |p |28095.9 | | 31.583 |30 | |02448 02448| +721817 |V1817 Sgr |180648.1-304421 |SRA | 14.0 | 16.8 | |p |34188. | | 213. | | |02447 02448| +721818 |V1818 Sgr |180657.9-320057 |M: | 13.4 | 16.1 | |p |27860. | | | | |02448 02448| +721819 |V1819 Sgr |180720.1-333006 |M: | 14.1 |< 15.1 | |p |28725. | | 197. | | |02448 02448| +721820 |V1820 Sgr |180731.0-335138 |SR | 14.0 | 14.9 | |p |28095. | | 185. | | |02448 02448| +721821 |V1821 Sgr |180844.4-321311 |CEP | 13.9 | 15.3 | |p |28781.58 | | 9.5273 |47 | |02447 02447| +721822 |V1822 Sgr |180842.7-303920 |CEP | 14.2 | 15.2 | |p |28833.59 | | 7.5244 |50 | |02447 02447| +721823 |V1823 Sgr |181129.4-331146 |SR | 13.9 | 15.6 | |p |31267. | | 149. | | |02447 02447| +721824 |V1824 Sgr |181130.7-315844 |SR | 13.5 | 15.8 | |p |31267. | | 190. | | |02447 02447| +721825 |V1825 Sgr |181314.5-305409 |M | 14.1 |< 15.6 | |p |28659. | | 253. | | |02447 02447| +721826 |V1826 Sgr |181323.2-325025 |M | 14.4 |< 18.8 | |p |36750. | | 171.3 | | |00001 02447| +721827 |V1827 Sgr |181343.5-332938 |M | 13.1 | 18.3 | |p |36822. | | 301.0 | | |00001 02447| +721828 |V1828 Sgr *|181333.0-262337 |DCEP | 12.71 | 13.62 | |V | | | 12.972 |29 | |03818 05151| +721829 |V1829 Sgr |181353.1-310436 |M | 12.9 | 18.1 | |p |36820. | | 221.8 |30 : | |00001 02447| +721830 |V1830 Sgr |181350.7-274221 |UG | 11.5 | 17.5 | |p | | | | | |04218 08852| +721831 |V1831 Sgr *|181419.1-311200 |CWA | 13.3 | 14.2 | |p |35689.4 | | 26.58 |33 |F8: |05869 02447| +721832 |V1832 Sgr |181547.9-330726 |SRB | 14.0 | 15.5 | |p |34194. | | 112.3 | | |02447 02447| +721833 |V1833 Sgr |181551.7-310703 |CWA | 13.1 | 15.8 | |p |35686.1 | | 48.87 |40 | |05869 02447| +721834 |V1834 Sgr |181616.7-333742 |CWA | 13.3 | 15.3 | |p |35668.80 | | 14.0031 |42 |F8: |00001 02447| +721835 |V1835 Sgr |181615.3-314249 |M | 13.9 |< 19.1 | |p |36785. | | 261.43 | | |00001 02447| +721836 |V1836 Sgr |181630.1-314950 |M | 14.0 |< 17.3 | |p |36672. | | 244.25 | | |00001 02447| +721837 |V1837 Sgr |181616.9-272240 |M | 14.3 |< 16.1 | |p |27240. | | 234. : | |M5 |02515 2MASS| +721838 |V1838 Sgr |181708.0-324810 |M | 12.9 | 17.5 | |p |36774. | | 159.8 | |Me |00001 02447| +721839 |V1839 Sgr |181720.2-334013 |M | 13.5 | 17.3 | |p |36760. | | 183.3 | | |00001 02447| +721840 |V1840 Sgr |181825.4-350512 |M | 14.5 | 17.2 | |p |36800. | | 203.3 | | |00001 02447| +721841 |V1841 Sgr |181822.8-325415 |M | 13.0 | 17.7 | |p |36050. | | 291.6 | |Me |00001 02447| +721842 |V1842 Sgr |181826.6-323134 |SRA | 13.3 | 16.5 | |p |36805. | | 124.8 | | |00001 02447| +721843 |V1843 Sgr *|181833.8-324243 |M | 13.3 | 18.1 | |p |30553. | | 305. | |Me |02447 02447| +721844 |V1844 Sgr |181827.6-304855 |SRA | 14.4 | 15.8 | |p |36702. | | 119.4 | | |00001 02447| +721845 |V1845 Sgr *|181813.6-244854 |M: | 14.1 | 16.3 | |p |25820. | | 240. | |M7 |02449 GSC22| +721846 |V1846 Sgr |181844.0-325308 |M | 14.0 |< 17.2 | |p |36780. | | 262.5 | | |00001 02447| +721847 |V1847 Sgr |181850.4-314034 |SRA | 13.4 | 16.3 | |p |35632. | | 117.2 | | |00001 02447| +721848 |V1848 Sgr |181914.5-335118 |SRA | 14.5 | 17.0 | |p |36778. | | 150.1 | | |00001 02447| +721849 |V1849 Sgr |181929.9-324212 |SRB | 12.6 | 14.6 | |p |34213. | | 61. | | |02447 02447| +721850 |V1850 Sgr |181937.6-343951 |SRA | 14.6 | 16.6 | |p |28641. | | 221.0 | | |05869 02447| +721851 |V1851 Sgr |181938.6-331153 |SRA | 14.5 | 17.1 | |p |36720. | | 176.6 | | |05869 02447| +721852 |V1852 Sgr |181917.6-240527 |M | 13.7 |< 16.3 | |p |25450. | | 443. | |M6-M8 |02515 2MASS| +721853 |V1853 Sgr |181952.7-314522 |M | 13.9 | 17.5 | |p |36716. | | 213.8 | | |00001 02447| +721854 |V1854 Sgr |182005.5-322843 |M | 13.4 |< 19.0 | |p |34213. | | 245.9 | |Me |00001 02447| +721855 |V1855 Sgr |182041.0-324030 |SRA | 13.3 | 16.9 | |p |35635. | | 169.6 | | |05869 02447| +721856 |V1856 Sgr |182016.3-235756 |M | 13.7 |< 16.3 | |p |31600. | | 252. : | | |02515 2MASS| +721857 |V1857 Sgr |182053.9-332334 |M | 13.9 | 19.0 | |p |35961. | | 218.5 | | |00001 02447| +721858 |V1858 Sgr |182140.1-341123 |M | 12.7 | 17.5 | |p |36706. | | 261.7 | | |00001 02447| +721859 |V1859 Sgr |182145.0-340941 |RRAB | 14.7 | 16.2 | |p |28783.3361 | | 0.4749583 |15 | |00001 02447| +721860 |V1860 Sgr |182128.6-244510 |RCB: | 13.5 | 15.5 | |p | | | | | |02569 02569| +721861 |V1861 Sgr |182222.1-353321 |M | 12.3 | 17.2 | |p |36668. | | 257.2 | |Me |00001 02447| +721862 |V1862 Sgr |182157.8-272521 |M | 12.5 | 16.2 | |p |27160. | | 201.5 | |M3ep-M4 |02515 09467| +721863 |V1863 Sgr |182242.5-334023 |M | 14.3 |< 19.0 | |p |36750. | | 170.9 | | |00001 02447| +721864 |V1864 Sgr *|182239.0-273442 |RV | 12.1 | 14.0 | |p |26135. | | 80. : | | |02515 UCAC2| +721865 |V1865 Sgr |182308.6-340026 |EA/SD | 14.0 | 15.3 | |p |28694.483 | | 1.164603 |08 *| |02447 02447| +721866 |V1866 Sgr |182318.4-360506 |SRA | 13.1 | 15.5 | |p |36710. | | 275.6 | | |00001 02447| +721867 |V1867 Sgr |182341.8-340439 |M | 14.3 | 16.9 | |p |36802. | | 203.5 | | |00001 02447| +721868 |V1868 Sgr |182312.6-243718 |SRA | 13.3 | 15.1 | |p |24370. | | 277. | |M5:-M7 |02515 06278| +721869 |V1869 Sgr *|182343.1-331442 |M | 12.6 | 18.6 | |p |35632. | | 332.0 | |Me |05869 02447| +721870 |V1870 Sgr |182423.9-320954 |M | 14.2 |< 18. | |p |36673. | | 157.1 | | |00001 02447| +721871 |V1871 Sgr |182414.9-273935 |M | 13.8 |< 16.4 | |p |36050. | | 305. | | |02515 09467| +721872 |V1872 Sgr |182430.5-304109 |M | 13.1 | 16.7 | |p |28773. | | 176. | |Me |02447 02447| +721873 |V1873 Sgr |182452.4-361102 |M | 14.1 |< 19.0 | |p |35639. | | 247.7 | |Me |00001 02447| +721874 |V1874 Sgr |182543.0-334520 |M | 12.8 | 17.3 | |p |36765. | | 194.1 | |Me |00001 02447| +721875 |V1875 Sgr |182616.4-345448 |M | 13.6 |< 20.5 | |p |30903. | | 281. | | |02447 02447| +721876 |V1876 Sgr |182623.8-304513 |M | 14.1 |< 16.2 | |p |28815. | | 236. | |M5 |02447 02447| +721877 |V1877 Sgr |182619.8-235328 |SR: | 14.3 | 16.5 | |p |26140. | | 195. : | |M7 |02449 GSC22| +721878 |V1878 Sgr |182704.2-354644 |M | 13.7 |< 19.5 | |p |35638. | | 285.2 | | |00001 02447| +721879 |V1879 Sgr |182708.7-314858 |SRA | 14.3 | 16.2 | |p |34183. | | 416. | | |02447 02447| +721880 |V1880 Sgr |182737.6-354102 |M | 12.2 | 17.8 | |p |36778. | | 268.7 | |Me |00001 02447| +721881 |V1881 Sgr |182747.8-312135 |M | 13.9 | 17.3 | |p |36720. | | 114.0 | | |00001 02447| +721882 |V1882 Sgr *|182756.9-293327 |CEP | 14.4 | 15.3 | |p |34181.4 | | 2.7113 |23 | |02447 02447| +721883 |V1883 Sgr |182815.3-340733 |M | 12.9 |< 18.0 | |p |36815. | | 211.3 | | |00001 02447| +721884 |V1884 Sgr |182834.1-332444 |SRB | 12.8 | 15.8 | |p |34188. | | 234. | | |02447 02447| +721885 |V1885 Sgr |182854.7-354709 |SR | 12.6 | 14.4 | |p |34213. | | 166. | | |02447 02447| +721886 |V1886 Sgr |182907.3-352846 |M | 12.7 | 16.2 | |p |36724. | | 125.6 | |Me |00001 02447| +721887 |V1887 Sgr |182907.8-350537 |SR | 13.4 | 14.3 | |p |28744. | | 133. | | |02447 02447| +721888 |V1888 Sgr |182918.1-345406 |M | 13.2 | 16.9 | |p |36750. | | 153.1 | | |00001 02447| +721889 |V1889 Sgr |182910.1-320430 |M | 13.3 | 18.1 | |p |36792. | | 148.82 | |Me |00001 02447| +721890 |V1890 Sgr |182907.1-270233 |M | 14.0 |< 16.3 | |p |25850. | | 230. | |M4 |02515 09467| +721891 |V1891 Sgr *|183009.2-241548 |M | 13.8 | 16.4 | |p |24390. | | 390. | |M7-M8 |02449 GSC22| +721892 |V1892 Sgr |183103.9-331314 |RRAB | 14.5 | 15.7 | |p |28775.340 | | 0.571588 |15 | |02447 02447| +721893 |V1893 Sgr |183053.2-264937 |M | 13.6 |< 16.3 | |p |33850. | | 325.3 | | |02515 09467| +721894 |V1894 Sgr *|183121.9-322228 |M | 13.2 | 18.8 | |p |36682. | | 196.5 | |Me |00001 02447| +721895 |V1895 Sgr *|183132.9-353608 |M | 13.1 | 16.6 | |p |36738. | | 158.59 | | |00001 02447| +721896 |V1896 Sgr |183112.2-265225 |M | 13.8 |< 16.3 | |p |25390. | | 258. | | |02515 09467| +721897 |V1897 Sgr |183112.0-270726 |M | 13.6 | 16.3 | |p |26210. | | 189. | | |02515 09467| +721898 |V1898 Sgr |183134.0-265743 |M | 13.1 |< 16.3 | |p |27270. | | 288. : | | |02515 09467| +721899 |V1899 Sgr |183145.4-264553 |RV | 12.1 | 14.5 | |p | | | | | |04218 04218| +721900 |V1900 Sgr *|183210.1-244628 |SR | 12.8 | 14.7 | |p |25430. | | 162. : | |M3 |02449 GSC22| +721901 |V1901 Sgr |183218.3-263013 |M | 12.3 | 16.1 | |p |42278. | | 142.6 | | |02515 08723| +721902 |V1902 Sgr |183225.0-244949 |M | 13.7 |< 16. | |p |27260. | | 248.5 | |M7 |02515 2MASS| +721903 |V1903 Sgr |183354.7-350120 |M | 14.1 | 18.3 | |p |36050. | | 265.7 | | |00001 02447| +721904 |V1904 Sgr *|183323.3-240517 |M | 13.6 | 16.2 | |p |25450. | | 325. | |M5 |02449 GSC22| +721905 |V1905 Sgr |183342.0-252043 |NA | 9.1 |< 16.5 | |p |26803. |1932 | | | |02517 02517| +721906 |V1906 Sgr |183420.1-351137 |RRAB | 14.7 | 16.3 | |p |35658.839 | | 0.5143032 |18 | |00001 02447| +721907 |V1907 Sgr |183344.8-201242 |M | 13.6 | 16.3 | |p |26200. | | 271. | |M7 |02515 06286| +721908 |V1908 Sgr |183409.1-245308 |M | 13.0 | 16.6 | |p |26200. | | 188. | |M7 |02449 GSC | +721909 |V1909 Sgr |183407.0-210911 |SR: | 12.5 | 15.8 | |p |27980. | | 32. : | | |02449 06286| +721910 |V1910 Sgr |183456.6-270122 |M | 12.8 |< 16.3 | |p |27300. | | 200.3 | |M6:e |02515 2MASS| +721911 |V1911 Sgr *|183521.5-335413 |CWA | 13.6 | 16.2 | |p |35667.22 | | 10.0581 |30 | |05869 02447| +721912 |V1912 Sgr |183525.4-350023 |M | 13.0 |< 17.1 | |p |28765. | | 411.2 | |Me |00001 02447| +721913 |V1913 Sgr |183511.6-264017 |M | 13.2 |< 16.3 | |p |25830. | | 261.5 | |M7 |02515 2MASS| +721914 |V1914 Sgr |183514.7-221528 |LB | 13.5 | 16.0 | |p | | | | |M4 |02449 GSC22| +721915 |V1915 Sgr |183620.7-322856 |M | 13.5 |< 17.6 | |p |35678. | | 233.8 | |Me |00001 02447| +721916 |V1916 Sgr |183706.6-341851 |M | 14.2 | 18.0 | |p |36810. | | 249.9 | |Me |00001 02447| +721917 |V1917 Sgr |183726.5-201128 |SRA | 13.7 | 15.8 | |p |25420. | | 141. | |M5 |02515 06286| +721918 |V1918 Sgr |183734.8-205325 |IA: | 12.1 | 15.7 | |p | | | | |B:e |02569 02569| +721919 |V1919 Sgr |183820.6-314343 |SRA | 13.9 | 16.3 | |p |36810. | | 162.0 | | |00001 02447| +721920 |V1920 Sgr |183816.8-203018 |M | 13.0 |< 16.2 | |p |26920. | | 240. | |M2 |02449 GSC22| +721921 |V1921 Sgr |183843.9-214329 |ISB | 12.6 | 15. | |p | | | | |K5 |02569 02569| +721922 |V1922 Sgr |183915.2-251658 |M | 13.8 | 16.4 | |p |25390. | | 346. | |M8 |02515 UCAC2| +721923 |V1923 Sgr |183937.4-250217 |M | 14.6 |< 16.2 | |p |26110. | | 545. | |M3 |02515 2MASS| +721924 |V1924 Sgr |184125.1-324115 |M | 13.0 | 17.6 | |p |36745. | | 174.3 | |Me |00001 02447| +721925 |V1925 Sgr *|184140.6-313030 |RRAB | 14.7 | 16.2 | |p |35664.762 | | 0.458186 |14 | |00001 02447| +721926 |V1926 Sgr |184123.9-235829 |M | 13.5 |< 16.2 | |p |26095. | | 308. | |M8 |02515 UCAC2| +721927 |V1927 Sgr |184210.1-222956 |M | 12.0 |< 16.0 | |p |36050. | | 419. | |M7 |02449 06286| +721928 |V1928 Sgr |184249.4-324150 |M | 13.0 |< 15.6 | |B |43349. | | 201.86 | |Ke-Me |00001 02447| +721929 |V1929 Sgr |184236.1-251612 |M | 13.0 | 16.3 | |p |26210. | | 289. : | |M5 |02515 UCAC2| +721930 |V1930 Sgr |184321.6-214057 |M | 11.5 |< 16.0 | |p |33860. | | 257. | |Me |02449 06286| +721931 |V1931 Sgr |184437.4-243108 |M | 13.2 | 16.3 | |p |26180. | | 186.5 | | |02449 GSC22| +721932 |V1932 Sgr |184534.0-320744 |M | 13.4 |< 16.2 | |p |34157. | | 264. | |Me |02447 02447| +721933 |V1933 Sgr |184510.1-194720 |EA/SD | 12.5 |< 15.0 | |p |24021.53 | | 1.3503527 | | |02937 06286| +721934 |V1934 Sgr |184559.0-251807 |M | 13.1 | 16.2 | |p |27250. | | 169. | | |02515 UCAC2| +721935 |V1935 Sgr |184614.6-301856 |SRA | 13.3 | 14.9 | |p |28784. | | 213. | | |02447 02447| +721936 |V1936 Sgr |184717.2-320028 |SRA | 13.9 | 15.7 | |p |34160. | | 153.0 | | |02431 02447| +721937 |V1937 Sgr |184721.9-323216 |SRA | 12.3 | 13.7 | |p |34159. | | 105. | | |02447 02447| +721938 |V1938 Sgr |184759.1-273734 |M | 13.8 |< 16.3 | |p |41180. | | 254. | | |06274 06274| +721939 |V1939 Sgr |184757.7-220253 |M | 13.4 |< 16.0 | |p |32828. | | 115.3 | | |00001 04233| +721940 |V1940 Sgr |190934.0-172026 |M | 12.1 | 15.6 | |p |33163. | | 200. | | |02598 01659| +721941 |V1941 Sgr |191342.6-120120 |EA | 12.1 | 13.6 | |p |21405.25 | | 5.438781 | | |04191 01659| +721942 |V1942 Sgr *|191909.6-155430 |LB | 6.74 | 7.00 | |V | | | | |C6,4(N2/R8) |02598 BD | +721943 |V1943 Sgr |200655.2-271330 |LB | 9. | 11. | |p | | | | |M8 |00848 08953| +721944 |V1944 Sgr |180036.9-271715 |N | 7. : | 15. | |p |37079. -|1960 | | |pec(NOVA) |04214 08953| +721945 |V1945 Sgr *|180130.5-225750 |M | 11.6 | 14.4 | |I |37843. | | 408. | | |04407 06378| +721946 |V1946 Sgr *|180200.2-233330 |M | 9.0 | 13.3 | |I |36705. :| | 440. : | | |03815 04407| +721947 |V1947 Sgr *|180213.9-230213 |IN: | 17. |< 18. | |p | | | | | |04806 GSC22| +721948 |V1948 Sgr *|180217.7-224009 |SR | 12.0 | 13.8 | |I | | | | |C |04407 06378| +721949 |V1949 Sgr *|180211.5-225528 |INS: | 17. | 18. | |p | | | | | |04407 02428| +721950 |V1950 Sgr *|180239.3-232203 |M | 7.0 | 14.2 | |I |36454. | | 400. : | |M |04407 06378| +721951 |V1951 Sgr *|180330.1-225951 |M | 8.3 | 14.8 | |I |37180. | | 510. | | |04407 06378| +721952 |V1952 Sgr |181052.8-273959 |SRA | 14.6 | 15.8 | |p |27280. | | 198. | | |04409 04409| +721953 |V1953 Sgr |181402.3-273029 |M: | 14.5 |< 15.3 | |p |26510. | | 138. | |M4 |04218 04218| +721954 |V1954 Sgr *|181526.3-203746 |DCEP | 11.8 | 13.4 | |p |32626.915 | | 6.1794489 |35 | |09862 04219| +721955 |V1955 Sgr |181548.8-273325 |SRA | 14.3 | 15.3 | |p |24400. | | 211. | | |04220 04220| +721956 |V1956 Sgr |181549.2-245255 |SRB | 13.5 | 15.8 | |p | | | 110. : | | |04221 04221| +721957 |V1957 Sgr |181608.8-271837 |M | 13.8 |< 15.5 | |p |36040. | | 254. | | |04220 04220| +721958 |V1958 Sgr *|181559.4-222815 |EA/SD | 13.8 |< 15.5 | 14.0 |p |27981.380 | | 1.82585 | | |04222 04222| +721959 |V1959 Sgr |181643.1-253120 |EA/DS | 12.6 | 15.8 : | |p |27160.568 | | 20.064 | | |04218 04218| +721960 |V1960 Sgr |181722.1-273922 |SR: | 14.7 | 16.3 : | |p |27970. | | | | |04220 04220| +721961 |V1961 Sgr |181753.0-254409 |EA | 12.2 | 13.8 | |p |36838.496 | | 0.2038504 | | |04220 04220| +721962 |V1962 Sgr *|181917.5-160113 |INS: | 12.1 | 14.2 | |I | | | | | |04407 04407| +721963 |V1963 Sgr *|181922.5-163102 |EA: | 12.3 | 13.8 | |I | | | 2.421 :/N| |F8/G0e |04407 04407| +721964 |V1964 Sgr |182013.3-232946 |M | 14.0 |< 16.3 | |p |25860. | | 235. | |M7 |04218 04218| +721965 |V1965 Sgr |182135.3-364644 |M | 13.8 |< 16.5 | |p |36666. | | 254.0 | | |05869 04151| +721966 |V1966 Sgr *|182109.6-161928 |SRA: | 14.9 | 16.4 | |I |37479. :| | 430. : | | |04407 04407| +721967 |V1967 Sgr |182129.4-232621 |CWA: | 13.5 | 15.5 | |p |37520. | | 18.796 | | |04409 04409| +721968 |V1968 Sgr |182123.1-193324 |EA | 12.3 | 13.3 | |p |37820.669 | | 0.5632499 | | |04220 04220| +721969 |V1969 Sgr *|182146.9-251141 |M | 14.5 | 18. : | |p |29520. | | 290. | | |04409 04409| +721970 |V1970 Sgr *|182129.9-161713 |M | 13.9 | 16.0 | |I |37875. | | 270. | | |04407 04407| +721971 |V1971 Sgr *|182137.6-161345 |M | 13.1 | 15.5 | |p |37435. | | 385. | | |04407 04407| +721972 |V1972 Sgr |182206.5-273610 |SRA | 13.7 | 15.4 | |p |25800. | | 272. | | |04220 04220| +721973 |V1973 Sgr *|182145.4-161237 |SR | 12.0 | 15.3 | |I |37605. | | | | |04407 04407| +721974 |V1974 Sgr |182202.9-232214 |M: | 15.8 |< 16.4 | |p |24400. | | 143. : | | |04409 04409| +721975 |V1975 Sgr *|182158.0-162249 |M: | 12.4 | 15.0 | |I |40050. | | 422. | | |07264 04407| +721976 |V1976 Sgr *|182225.1-162836 |M | 11.8 | 16.2 : | |I |37841. | | 520. : | | |04407 04407| +721977 |V1977 Sgr *|182227.0-161721 |M | 9.5 | 14.6 | |I |37875. | | 467. | | |04407 04407| +721978 |V1978 Sgr |182338.1-273755 |M: | 13.9 |< 16.0 | |p |25749. | | 169. : | | |04218 04218| +721979 |V1979 Sgr |182432.5-364956 |M | 13.0 | 18.6 | |p |36720. | | 198.94 | |Me |00001 04151| +721980 |V1980 Sgr *|182524.5-251040 |EA/GS | 11.2 | 11.8 | 11.7 |p |25474. | | 40.506 |10 | |04222 04222| +721981 |V1981 Sgr |182543.3-254629 |M | 15.1 |< 17.0 | |p |26095. | | 314. | | |04222 04222| +721982 |V1982 Sgr |182558.5-194128 |LB | 13.5 | 14.5 | |p | | | | |M6 |04220 04220| +721983 |V1983 Sgr |182558.0-260540 |M | 13.5 | 16.5 | |p |31600. | | 175. | | |04221 09467| +721984 |V1984 Sgr |182615.0-215017 |M | 12.4 | 15.0 | |p |25850. | | 344. | |M6-M7 |04218 04218| +721985 |V1985 Sgr |182622.0-191735 |M: | 15.2 : |< 16. | |p |25400. | | 433. | | |04409 04409| +721986 |V1986 Sgr |182715.6-225804 |SRA | 14.0 | 16.3 | |p |36402. | | 264. | | |04220 04220| +721987 |V1987 Sgr |182727.9-261353 |M | 15.0 |< 16.5 | |p |26900. | | 279. | | |04221 2MASS| +721988 |V1988 Sgr |182757.3-273723 |ZAND: | 12.7 | 15.9 | |B |24022. | | | |M7 |04222 04222| +721989 |V1989 Sgr |182733.9-183543 |M: | 14.9 : |< 16. | |p |24020. | | 480. | | |04409 04409| +721990 |V1990 Sgr |182912.2-213630 |M | 14.0 |< 15.5 | |p |27600. | | 163. | |M4-M7 |04222 04222| +721991 |V1991 Sgr |183003.0-364729 |SRB | 13.7 | 14.9 | |p | | | 95. : | | |04151 04151| +721992 |V1992 Sgr |182935.0-243915 |M | 14.7 |< 16.2 | |p |27270. | | 245. : | | |04218 04218| +721993 |V1993 Sgr |182941.4-190403 |M | 14.7 |< 16.5 | |p |25480. | | 285. | |M7e |04218 04218| +721994 |V1994 Sgr |183004.2-272312 |SRA | 13.6 | 15.8 | |p |26100. | | 288. | | |04218 04218| +721995 |V1995 Sgr |182945.9-205031 |EA/SD | 12.5 | 14.1 | |p |27254.364 | | 1.7243356 | | |04218 04218| +721996 |V1996 Sgr *|183036.0-243721 |DCEP | 12.4 | 14.2 | |p |33858. | | 18.15 | | |04218 04218| +721997 |V1997 Sgr |183045.1-215757 |M | 14.2 |< 15.7 | |p |25380. | | 395. | |M7 |04409 04409| +721998 |V1998 Sgr |183130.1-223525 |SRA | 14.4 | 16. | |p |37574. | | 178. | |M2 |04220 04220| +721999 |V1999 Sgr |183232.2-345840 |M | 12.7 | 16.3 | |p |35666. | | 233.0 | | |05869 06561| +722000 |V2000 Sgr |183206.8-223145 |RR | 13.7 | 15.1 | |p |36775.660 | | 0.6418382 | | |04220 04220| +722001 |V2001 Sgr |183238.5-263541 |M | 13.5 |< 15.6 | |p |25800. | | 223. | | |04221 UCAC2| +722002 |V2002 Sgr |183236.4-221334 |M | 13.0 |< 16.4 | |p |27260. | | 245. | |M7 |04218 04218| +722003 |V2003 Sgr *|183302.9-194626 |SRB | 12.0 | 15.0 | |p | | | 380. : | |S5,8 |04222 04222| +722004 |V2004 Sgr |183317.5-225210 |M | 15.1 |< 16.4 | |p |27900. | | 295. | |M7 |04409 04409| +722005 |V2005 Sgr |183447.3-275323 |M | 13.1 |< 15.0 | |p |25400. | | 148. : | | |04220 04220| +722006 |V2006 Sgr |183507.2-270708 |EA/SD | 13.7 | 14.7 | |p |30553.302 | | 1.7822530 |17 | |05590 05590| +722007 |V2007 Sgr *|183526.3-234746 |SRA | 14.8 | 17.6 | |p |36052. | | 309. |30 |M6: |08792 04409| +722008 |V2008 Sgr *|183534.9-224638 |SR | 13.5 | 15.4 | |p |26560. | | | | |04220 04220| +722009 |V2009 Sgr |183531.2-210309 |M | 13.0 |< 16.0 | |p |26100. | | 253. | |M4 |04218 04218| +722010 |V2010 Sgr |183614.9-275952 |LB | 11.9 | 12.7 | |p | | | | |M7 |04220 04220| +722011 |V2011 Sgr |183654.0-274326 |SRA | 13.5 | 15.2 | |p |25474. | | 167. | | |04218 04218| +722012 |V2012 Sgr |183712.4-261022 |LB: | 14.0 |< 16.2 | |p |30116. | | | |M7 |04218 04218| +722013 |V2013 Sgr |183704.2-200327 |EA | 14.6 | 15.4 | |p |25417.502 | | 5.8674 | | |04221 04221| +722014 |V2014 Sgr |183729.1-265451 |M | 14.0 |< 16.3 | |p |24020. | | 210. | | |04220 04220| +722015 |V2015 Sgr |183724.4-224946 |EA/DS | 14.7 | 16.0 | |p |31638.315 | | 9.1042 | | |04222 04222| +722016 |V2016 Sgr |183810.4-265822 |SRA | 13.5 | 15.6 | |p |25400. | | 241. | |M7 |04221 2MASS| +722017 |V2017 Sgr |183845.7-343328 |M | 13.6 | 18.2 | |p |36710. | | 414.9 | |S: |00001 04229| +722018 |V2018 Sgr |183845.9-325950 |SRA | 13.2 | 14.9 | |p |36725. | | 94.51 | | |00001 04229| +722019 |V2019 Sgr |183853.7-330009 |M | 13.9 | 18.0 | |p |28040. | | 252.3 | | |00001 04229| +722020 |V2020 Sgr |183950.4-224242 |M | 14.7 |< 16.4 | |p |24410. | | 316. : | | |04218 04218| +722021 |V2021 Sgr |184033.7-240217 |SRA | 14.7 | 16.2 | |p |25390. | | 286. | |M7 |04218 04218| +722022 |V2022 Sgr |184039.0-252250 |CWB | 12.93 | 13.95 | |V |41922.506 | | 1.533171 |41 | |09831 04409| +722023 |V2023 Sgr |184041.2-225620 |M | 14.4 |< 16.4 | |p |24390. | | 223. | | |04218 04218| +722024 |V2024 Sgr |184110.7-252914 |M | 13.3 | 16. | |p |27274. | | 196. | |M6 |04220 UCAC2| +722025 |V2025 Sgr |184114.2-240202 |M | 14.9 |< 16.0 | |p |25860. | | 352. | |M7 |04222 04222| +722026 |V2026 Sgr |184142.4-265646 |SRA | 14.0 | 16.0 : | |p |27980. | | 249. | | |04218 04218| +722027 |V2027 Sgr |184142.3-203204 |SRA | 14.5 | 16.2 | |p |24355. | | 189. | | |04220 2MASS| +722028 |V2028 Sgr *|184206.8-321245 |M | 12.6 | 18.7 | |p |36673. | | 210.63 | | |00001 04410| +722029 |V2029 Sgr |184230.4-254840 |M | 14.7 |< 16.0 | |p |25400. | | 266. | | |04218 04218| +722030 |V2030 Sgr |184238.0-261430 |M | 14.2 |< 16.2 | |p |25480. | | 283. | |M3 |04222 04222| +722031 |V2031 Sgr |184339.4-251849 |M | 14.5 |< 16.0 | |p |30120. | | 182. | | |04218 04218| +722032 |V2032 Sgr |184347.1-273402 |M | 14.0 |< 16.2 | |p |36720. | | 229.5 | | |06272 04218| +722033 |V2033 Sgr |184344.8-235914 |M | 14.4 |< 16.4 | |p |25850. | | 355. | | |04220 04220| +722034 |V2034 Sgr |184412.8-261635 |RR | 14.9 | 15.8 | |p |25474.346 | | 0.509585 | | |04220 04220| +722035 |V2035 Sgr |184411.5-184035 |M | 13.5 |< 16.2 | |p |24410. | | 338. : | | |04218 04218| +722036 |V2036 Sgr |184427.3-240544 |M | 14.3 |< 16.2 | |p |27220. | | 400. : | | |04220 04220| +722037 |V2037 Sgr *|184456.1-253155 |SRA | 14.0 | 15.5 | |p |25800. | | 280. | | |04218 04218| +722038 |V2038 Sgr |184520.4-262747 |UG: | 14.0 | 16.2 | |p |25400. :| |( 300. :) | | |04218 04218| +722039 |V2039 Sgr |184529.3-243242 |M | 14.9 |< 16.3 | |p |26100. | | 279. | | |04220 04220| +722040 |V2040 Sgr |184559.6-250023 |L | 11.8 | 13.4 | |p | | | | | |03516 04222| +722041 |V2041 Sgr |184604.3-240112 |SRA | 13.5 | 15.5 | |p |25797. | | 95. | | |03516 04220| +722042 |V2042 Sgr |184727.2-215607 |M | 13.8 |< 15.8 | |p |25415. | | 211.2 | | |04220 04220| +722043 |V2043 Sgr |184739.5-204547 |M | 13.9 |< 16.0 | |p |27602. | | 296. | | |04233 04233| +722044 |V2044 Sgr |184944.1-340029 |M | 13.0 | 15.8 | |p |25490. | | 170.6 | |Me |04229 04229| +722045 |V2045 Sgr |184915.1-170325 |M | 13.3 |< 16.0 | |p |26200. | | 451. | |C |04233 04233| +722046 |V2046 Sgr |184934.0-205835 |M | 13.6 |< 16.0 | |p |32804. | | 285. | | |04233 04233| +722047 |V2047 Sgr |184933.6-182159 |I | 14.4 | 15.4 | |p | | | | | |04233 04233| +722048 |V2048 Sgr |184953.7-190616 |M | 13.9 |< 16.0 | |p |28804. | | 215. | | |04233 04233| +722049 |V2049 Sgr |185006.5-183609 |M | 14.0 |< 16.0 | |p |28756. | | 218. | | |04233 04233| +722050 |V2050 Sgr |185051.3-211401 |M | 13.7 |< 16.0 | |p |32740. | | 247. | | |04233 04233| +722051 |V2051 Sgr |185059.6-221718 |M | 13.3 |< 16.0 | |p |32820. | | 221.8 | | |04233 04233| +722052 |V2052 Sgr |185105.9-200205 |M | 13.3 |< 16.0 | |p |26240. | | 306. | | |04233 04233| +722053 |V2053 Sgr |185129.7-184433 |SRA | 13.1 | 15.4 | |p |28781. | | 206.7 | | |04233 04233| +722054 |V2054 Sgr *|185131.9-183756 |SR: | 13.8 | 15.5 | |p |28390. | | | | |04233 04233| +722055 |V2055 Sgr |185211.5-324943 |M | 13.5 |< 16. | |p |25738. | | 320. | | |04229 04229| +722056 |V2056 Sgr |185222.4-182606 |M | 14.2 |< 16.0 | |p |28362. | | 279. | | |04233 04233| +722057 |V2057 Sgr |185232.6-201145 |M | 14.4 |< 16.0 | |p |32830. | | 242. | | |04233 04233| +722058 |V2058 Sgr |185300.0-205648 |M | 13.6 |< 16.0 | |p |32790. | | 240. | | |04233 04233| +722059 |V2059 Sgr |185309.1-212832 |M | 14.1 |< 16.0 | |p |28454. | | 405. | |M8 |04233 04233| +722060 |V2060 Sgr |185312.5-192151 |M | 14.3 |< 16.0 | |p |28382. | | 249. | | |04233 04233| +722061 |V2061 Sgr |185313.1-163825 |SRA | 14.4 | 15.2 | |p |28410. | | 119. | | |04233 04233| +722062 |V2062 Sgr *|185357.2-231621 |M | 13.4 |< 16.0 | |p |28756. | | 246. | | |04233 UCAC2| +722063 |V2063 Sgr |185355.9-210843 |M | 13.6 |< 16.0 | |p |32818. | | 206. | | |04233 04233| +722064 |V2064 Sgr *|185359.1-213954 |SRA | 14.2 | 15.3 | |p |27624. | | 293. | | |04233 04233| +722065 |V2065 Sgr *|185441.7-200742 |M: | 14.5 |< 16.0 | |p |32712. | | 330. | | |04233 04233| +722066 |V2066 Sgr |185508.7-224649 |M | 13.8 |< 16.0 | |p |28420. | | 222.6 | | |04233 04233| +722067 |V2067 Sgr |185512.7-203916 |M | 14.2 |< 16.0 | |p |26142. | | 354. | | |04233 04233| +722068 |V2068 Sgr |185520.9-225954 |M | 12.8 |< 16.0 | |p |28367. | | 242. | |Me |04233 04233| +722069 |V2069 Sgr |185530.9-203909 |I | 14.3 | 15.1 | |p | | | | | |04233 04233| +722070 |V2070 Sgr |185536.5-185722 |M | 13.5 |< 16.0 | |p |26508. | | 255. | | |04233 04233| +722071 |V2071 Sgr |185634.0-184735 |M | 13.7 |< 16.0 | |p |27630. | | 199. | | |04233 04233| +722072 |V2072 Sgr |185641.5-204548 |M | 14.0 |< 16.0 | |p |32774. | | 277. | | |04233 04233| +722073 |V2073 Sgr |185700.9-221859 |M | 13.9 |< 16. | |p |27600. | | 253. | | |04233 04233| +722074 |V2074 Sgr |185649.3-160340 |M | 14.5 |< 16.0 | |p |28680. | | 292. | | |04233 04233| +722075 |V2075 Sgr |185712.4-191045 |M | 13.2 |< 16.0 | |p |32714. | | 265. | |Me |04233 04233| +722076 |V2076 Sgr |185758.4-330337 |M | 14.2 |< 16.0 | |p |25776. | | 292. | | |04229 04229| +722077 |V2077 Sgr |185813.9-202000 |I | 14.3 | 15.1 | |p | | | | | |04233 04233| +722078 |V2078 Sgr |185819.7-222927 |M | 13.7 |< 16. | |p |28450. | | 201. | | |04233 04233| +722079 |V2079 Sgr |185836.8-203941 |M | 13.6 |< 16.0 | |p |32820. | | 266. | | |04233 04233| +722080 |V2080 Sgr |185831.1-170231 |M | 13.7 |< 16.0 | |p |28710. | | 292. | | |04233 04233| +722081 |V2081 Sgr |185902.9-174438 |M | 13.5 |< 16. | |p |28700. | | 284. | | |04233 04233| +722082 |V2082 Sgr |185918.5-202015 |I | 13.9 | 15.2 | |p | | | | | |04233 04233| +722083 |V2083 Sgr |185932.9-220611 |M | 14.2 |< 16.0 | |p |27644. | | 320. | | |04233 04233| +722084 |V2084 Sgr |185942.2-135213 |SRA | 11.9 | 13.8 | |p |27640. | | 139. | | |04233 04233| +722085 |V2085 Sgr |185947.2-115440 |LB | 14.2 | 15.9 | |p | | | | |M5 |04231 04231| +722086 |V2086 Sgr |185951.9-140524 |M | 12.6 |< 16.0 | |p |28698. | | 334. | | |04233 04233| +722087 |V2087 Sgr |190014.2-160016 |M | 13.8 |< 16.0 | |p |26140. | | 268. | | |04233 04233| +722088 |V2088 Sgr |190023.2-153916 |SRA: | 14.2 |< 16.0 | |p |27590. | | 186. | | |04233 04233| +722089 |V2089 Sgr |190044.6-194807 |M | 13.5 |< 16.0 | |p |28780. | | 241. | | |04233 04233| +722090 |V2090 Sgr |190049.0-213431 |M | 13.4 |< 16.0 | |p |32780. | | 387. | | |04233 04233| +722091 |V2091 Sgr |190051.0-182857 |M | 14.1 |< 16.0 | |p |26120. | | 271. | | |04233 04233| +722092 |V2092 Sgr |190103.0-162752 |M | 13.6 |< 16.0 | |p |27588. | | 252. | | |04233 04233| +722093 |V2093 Sgr |190117.5-185428 |M | 14.2 |< 16.0 | |p |27590. | | 300. | | |04233 04233| +722094 |V2094 Sgr *|190108.2-124620 |RR | 14.6 | 15.3 | |p | | | | | |04231 04231| +722095 |V2095 Sgr |190125.3-191425 |M | 13.8 |< 16.0 | |p |25750. | | 519. | | |04233 04233| +722096 |V2096 Sgr |190135.6-174922 |M | 14.3 |< 16.0 | |p |28730. | | 124. | | |04233 04233| +722097 |V2097 Sgr |190136.7-143928 |SRA | 14.4 | 15.4 | |p |26260. | | 220. | | |04233 04233| +722098 |V2098 Sgr |190144.6-140107 |SR | 14.2 | 15.2 | |p |26170. | | 158. : | | |04233 04233| +722099 |V2099 Sgr |190155.7-174249 |M: | 13.7 |< 16.0 | |p |28660. | | 251. | | |04233 04233| +722100 |V2100 Sgr |190322.1-231011 |SRB | 13.7 | 14.4 | |p | | | 434. : | | |04233 04233| +722101 |V2101 Sgr |190322.7-165043 |SRA | 14.8 | 15.8 | |p |25798. | | 269. | | |04233 04233| +722102 |V2102 Sgr |190345.8-221858 |M | 13.5 |< 16.0 | |p |32750. | | 293. | | |04233 04233| +722103 |V2103 Sgr |190344.1-150413 |M | 14.0 |< 16.0 | |p |27628. | | 279. | | |04233 04233| +722104 |V2104 Sgr |190446.9-221653 |M | 13.5 |< 16.0 | |p |28640. | | 292. | |Me |04233 04233| +722105 |V2105 Sgr |190439.8-150712 |M | 14.3 |< 16.0 | |p |28360. | | 267. | | |04233 04233| +722106 |V2106 Sgr *|190528.3-163748 |SRA: | 12.4 | 14.0 | |p |28720. | | 238. | | |04233 04233| +722107 |V2107 Sgr |190542.7-184140 |M | 13.7 |< 16.0 | |p |28392. | | 186. | | |04233 04233| +722108 |V2108 Sgr |190558.0-220743 |SRA: | 14.8 |< 16.0 | |p |28757. | | 385. | | |04233 04233| +722109 |V2109 Sgr |190552.7-184741 |M | 13.8 |< 16.0 | |p |27362. | | 216. | | |04233 04233| +722110 |V2110 Sgr |190614.7-151650 |M | 13.2 |< 16.0 | |p |28680. | | 291. | | |04233 04233| +722111 |V2111 Sgr |190737.7-140849 |I | 13.8 | 14.7 | |p | | | | | |04233 04233| +722112 |V2112 Sgr |190914.6-185619 |M | 13.3 |< 16.0 | |p |28700. | | 255. | | |04233 04233| +722113 |V2113 Sgr |190926.8-163223 |M | 13.2 |< 15.6 | |p |28760. | | 212.9 | | |00001 04233| +722114 |V2114 Sgr |191017.3-211200 |M | 13.5 |< 16.0 | |p |28770. | | 244. | | |04233 04233| +722115 |V2115 Sgr |191018.8-210926 |I | 13.0 | 14.0 | |p | | | | | |04233 04233| +722116 |V2116 Sgr |191022.5-181458 |SRA | 14.8 | 15.6 | |p |26240. | | 188. | | |04233 04233| +722117 |V2117 Sgr |191032.2-143412 |SRA | 13.4 | 15.6 | |p |28781. | | 190.6 | | |04233 04233| +722118 |V2118 Sgr |191102.9-170903 |M | 13.2 |< 16.0 | |p |28781. | | 287. | | |04233 04233| +722119 |V2119 Sgr |191136.5-200739 |LB | 13.1 | 14.0 | |p | | | | |M6-M7 |04233 04233| +722120 |V2120 Sgr |191142.8-151655 |M | 14.3 |< 16.0 | |p |26250. | | 221. | | |04233 04233| +722121 |V2121 Sgr |191209.6-164458 |M | 13.8 |< 16.0 | |p |28668. | | 372. | | |04233 04233| +722122 |V2122 Sgr |191210.2-154202 |M | 13.0 |< 16.0 | |p |28690. | | 266. | | |04233 04233| +722123 |V2123 Sgr |191228.7-200539 |M | 13.3 |< 16.0 | |p |28480. | | 272. | | |04233 04233| +722124 |V2124 Sgr |191303.6-151851 |SRA | 12.9 | 14.5 | |p |28678. | | 126. | | |04233 04233| +722125 |V2125 Sgr |191349.9-222907 |M | 13.3 |< 16.0 | |p |28757. | | 200. | | |04233 04233| +722126 |V2126 Sgr |191356.4-162828 |SRA | 13.4 | 15.1 | |p |28688. | | 128.1 | | |04233 04233| +722127 |V2127 Sgr |191358.5-155303 |SRA | 13.0 | 14.8 | |p |28700. | | 267. | |M6+ |04233 04233| +722128 |V2128 Sgr |191421.4-190137 |M | 12.6 |< 16.0 | |p |27584. | | 315. | | |04233 04233| +722129 |V2129 Sgr |191552.1-221626 |M | 13.2 |< 16.0 | |p |27640. | | 229. | | |04233 04233| +722130 |V2130 Sgr |191618.4-200710 |M | 13.7 |< 16.0 | |p |28450. | | 216. | | |04233 04233| +722131 |V2131 Sgr |191650.2-190110 |M | 14.2 |< 16.0 | |p |28380. | | 416. | | |04233 04233| +722132 |V2132 Sgr |191730.1-184702 |SRA | 12.4 | 14.5 | |p |29160. | | 130.3 | | |04233 04233| +722133 |V2133 Sgr |191758.8-220430 |SRA | 13.8 | 15.8 | |p |28373. | | 152.9 | | |04233 04233| +722134 |V2134 Sgr |191746.0-142954 |M | 13.2 | 16.7 | |p |32718. | | 347.1 | | |04243 04233| +722135 |V2135 Sgr |191753.7-145747 |M | 13.4 | 16.7 | |p |26520. | | 296. | | |04233 04233| +722136 |V2136 Sgr |191848.7-223131 |M | 13.6 |< 16.0 | |p |27346. | | 183.2 | | |04233 04233| +722137 |V2137 Sgr |191948.0-180057 |M | 13.0 |< 16.0 | |p |28710. | | 324. | | |04233 04233| +722138 |V2138 Sgr |192031.2-193216 |M | 13.4 |< 16.0 | |p |28690. | | 287. | | |04233 04233| +722139 |V2139 Sgr |192047.5-181220 |LB | 10.4 | 11.4 | |p | | | | |M5 |04233 04233| +722140 |V2140 Sgr |192152.1-172317 |M | 12.6 |< 16.0 | |p |28781. | | 315. | | |04233 04233| +722141 |V2141 Sgr |192212.5-214104 |M | 13.2 |< 16.0 | |p |28721. | | 213. | | |04233 04233| +722142 |V2142 Sgr |192236.7-182912 |I | 13.7 | 15.0 | |p | | | | | |04233 04233| +722143 |V2143 Sgr |192258.7-213315 |I | 14.4 | 15.3 | |p | | | | | |04233 04233| +722144 |V2144 Sgr |192551.0-435634 |M: | 13. |< 14. | |p | | | | | |06561 06561| +722145 |V2145 Sgr |192453.4-200309 |M | 14.4 |< 16.0 | |p |28694. | | 250. | | |04233 04233| +722146 |V2146 Sgr |192614.6-181652 |I | 13.8 | 14.5 | |p | | | | | |04233 04233| +722147 |V2147 Sgr |192630.1-141810 |SRA | 13.6 | 15.6 | |p |28400. | | 212. | | |04233 04233| +722148 |V2148 Sgr *|192657.6-175731 |M | 13.0 |< 16.0 | |p |28400. | | 212. | | |04233 04233| +722149 |V2149 Sgr |193001.7-392235 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +722150 |V2150 Sgr |193455.0-441446 |RR | 13.5 | 14.5 | |p | | | | | |04001 04001| +722151 |V2151 Sgr |193748.0-433308 |RR: | 13.5 | 14.5 | |p | | | | | |04001 04001| +722152 |V2152 Sgr |193751.6-405134 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722153 |V2153 Sgr |193821.0-402241 |EB | 13.5 | 14. | |p | | | | | |04001 04001| +722154 |V2154 Sgr |193839.0-405147 |M | 13. |< 16. | |p | | | | | |04001 04001| +722155 |V2155 Sgr |193934.4-422252 |M | 12. | 15. | |p | | | | | |04001 04001| +722156 |V2156 Sgr |193932.6-415103 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722157 |V2157 Sgr |194014.4-392159 |RR | 13. | 14. | |p | | | | | |04001 04001| +722158 |V2158 Sgr |194024.8-365221 |EA | 14. | 14.5 | |p | | | | | |04001 04001| +722159 |V2159 Sgr |194023.0-361159 |RR | 13.5 | 15. | |p | | | | | |04001 04001| +722160 |V2160 Sgr |194041.2-385201 |RR | 13. | 14. | |p | | | | | |04001 04001| +722161 |V2161 Sgr |194043.2-383608 |RR | 14. | 15. | |p | | | | | |04001 04001| +722162 |V2162 Sgr |194049.9-373713 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +722163 |V2163 Sgr |194136.1-384327 |RR | 15. | 16. | |p | | | | | |04001 04001| +722164 |V2164 Sgr |194210.1-394540 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722165 |V2165 Sgr |194217.3-373525 |M | 12.5 | 16.5 | |p | | | | | |04001 04001| +722166 |V2166 Sgr |194230.2-401148 |IS: | 13. | 13.5 | |p | | | | | |04001 04001| +722167 |V2167 Sgr |194235.0-400453 |L: | 13. | 14. | |p | | | | | |04001 04001| +722168 |V2168 Sgr |194237.5-383956 |EA | 12.5 | 15. | |p | | | | | |04001 04001| +722169 |V2169 Sgr |194241.8-401006 |IS | 15. | 15.5 | |p | | | | | |04001 04001| +722170 |V2170 Sgr |194246.4-403342 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +722171 |V2171 Sgr |194250.9-402017 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +722172 |V2172 Sgr |194318.4-384341 |RR | 15. | 16. | |p | | | | | |04001 04001| +722173 |V2173 Sgr |194402.4-331934 |SR | 13. | 14. | |p | | | | | |06561 06561| +722174 |V2174 Sgr |194427.8-372504 |RR | 15. | 16. | |p | | | | | |04001 04001| +722175 |V2175 Sgr |194429.8-391723 |RR | 13.5 | 14.5 | |p | | | | | |04001 04001| +722176 |V2176 Sgr |194453.3-441655 |RR | 13. | 14. | |p | | | | | |04001 04001| +722177 |V2177 Sgr |194439.8-393454 |RR | 15. | 16. | |p | | | | | |04001 04001| +722178 |V2178 Sgr |194513.2-405906 |RR | 16. | 17. | |p | | | | | |04001 04001| +722179 |V2179 Sgr |194540.5-445444 |RR | 14. | 14.5 | |p | | | | | |04001 04001| +722180 |V2180 Sgr |194517.7-373815 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722181 |V2181 Sgr |194525.6-382518 |RR | 13.5 | 14.5 | |p | | | | | |04001 04001| +722182 |V2182 Sgr |194620.9-412507 |RR | 16. | 16.5 | |p | | | | | |04001 04001| +722183 |V2183 Sgr |194614.8-384925 |RR | 14. | 15. | |p | | | | | |04001 04001| +722184 |V2184 Sgr |194617.5-372453 |EA | 12.5 | 13. | |p | | | | | |04001 04001| +722185 |V2185 Sgr |194644.6-383433 |EA | 15.5 | 16.5 | |p | | | | | |04001 04001| +722186 |V2186 Sgr |194706.9-400451 |IS: | 13.5 | 14. | |p | | | | | |04001 04001| +722187 |V2187 Sgr |194724.0-450355 |RR | 13. | 14. | |p | | | | | |04001 04001| +722188 |V2188 Sgr |194734.0-433746 |EA | 13.5 | 14. | |p | | | | | |04001 04001| +722189 |V2189 Sgr |194746.4-434544 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +722190 |V2190 Sgr |194745.7-423017 |RR | 16. | 17. | |p | | | | | |04001 04001| +722191 |V2191 Sgr |194805.8-423949 |RR | 14. | 15. | |p | | | | | |04001 04001| +722192 |V2192 Sgr |194816.9-401852 |RR | 14. | 14.5 | |p | | | | | |04001 04001| +722193 |V2193 Sgr |194817.4-385824 |RR | 15. | 16. | |p | | | | | |04001 04001| +722194 |V2194 Sgr |194818.2-383033 |RR | 14. | 15. | |p | | | | | |04001 04001| +722195 |V2195 Sgr |194848.7-424055 |SR: | 14. | 15.5 | |p | | | | | |04001 04001| +722196 |V2196 Sgr |195022.1-445702 |RR | 14. | 15. | |p | | | | | |04001 04001| +722197 |V2197 Sgr |195045.8-445729 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722198 |V2198 Sgr |195122.9-412552 |RR | 13.5 | 14. | |p | | | | | |04001 08613| +722199 |V2199 Sgr |195206.8-392324 |RR | 16. | 17. | |p | | | | | |04001 04001| +722200 |V2200 Sgr |195210.4-382536 |RR | 15. | 16. | |p | | | | | |04001 04001| +722201 |V2201 Sgr |195250.3-430142 |EA | 12. | 13. | |p | | | | | |04001 08613| +722202 |V2202 Sgr |195243.9-385752 |RR | 14. | 15. | |p | | | | | |04001 04001| +722203 |V2203 Sgr |195347.4-395533 |RR | 15. | 16. | |p | | | | | |04001 04001| +722204 |V2204 Sgr |195416.1-390715 |RR | 15. | 16. | |p | | | | | |04001 04001| +722205 |V2205 Sgr |195441.5-433049 |RR | 15.5 | 16.5 | |p | | | | | |04001 04001| +722206 |V2206 Sgr |195521.1-450408 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722207 |V2207 Sgr |195526.3-430239 |M | 13. | 16. | |p | | | | | |04001 08613| +722208 |V2208 Sgr |195600.9-411459 |EA | 15. | 16. | |p | | | | | |04001 04001| +722209 |V2209 Sgr |195616.4-434029 |IS: | 13. | 14. | |p | | | | | |04001 04001| +722210 |V2210 Sgr |195615.4-413505 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722211 |V2211 Sgr |195642.5-393528 |RR | 14. | 15.5 | |p | | | | | |04001 04001| +722212 |V2212 Sgr |195716.5-415531 |RRAB | 15. | 16. | |p | | | | | |04001 04001| +722213 |V2213 Sgr |195752.7-392959 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +722214 |V2214 Sgr |195914.8-395254 |RR | 15. | 16. | |p | | | | | |04001 04001| +722215 |V2215 Sgr |195927.1-425400 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +722216 |V2216 Sgr |195941.3-432956 |RR | 15.5 | 16.5 | |p | | | | | |04001 04001| +722217 |V2217 Sgr |195926.4-382622 |RR | 14. | 15. | |p | | | | | |04001 04001| +722218 |V2218 Sgr |195951.9-444553 |RR | 15. | 16.1 | |p | | | | | |04001 04001| +722219 |V2219 Sgr |195958.4-392255 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +722220 |V2220 Sgr |200022.6-443102 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +722221 |V2221 Sgr |200039.1-433246 |L: | 13. | 14. | |p | | | | | |04001 04001| +722222 |V2222 Sgr |200042.3-402858 |RR | 15.5 | 16. | |p | | | | | |04001 04001| +722223 |V2223 Sgr |200131.0-391140 |RR | 14. | 15. | |p | | | | | |04001 04001| +722224 |V2224 Sgr |200152.0-431503 |RR: | 15.5 | 16.5 | |p | | | | | |04001 04001| +722225 |V2225 Sgr |200208.9-441636 |M | 14. | 17. | |p | | | | | |04001 04001| +722226 |V2226 Sgr |200312.0-363615 |RR | 15. | 16. | |p | | | | | |04001 04001| +722227 |V2227 Sgr |200324.6-400856 |RR | 13.5 | 14.5 | |p | | | | | |04001 04001| +722228 |V2228 Sgr |200446.8-401527 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722229 |V2229 Sgr |200526.4-423730 |RR | 13. | 14. | |p | | | | | |04001 08613| +722230 |V2230 Sgr |200558.0-385308 |L: | 14. | 15. | |p | | | | | |04001 04001| +722231 |V2231 Sgr |200643.5-420245 |RR | 15. | 16. | |p | | | | | |04001 04001| +722232 |V2232 Sgr |200727.3-434910 |RR | 11.5 | 12.5 | |p | | | | | |04001 04001| +722233 |V2233 Sgr |200737.3-411048 |RR | 15. | 16. | |p | | | | | |04001 04001| +722234 |V2234 Sgr |200741.7-423220 |L: | 12.0 | 15.5 | |p | | | | | |04001 04001| +722235 |V2235 Sgr |200730.0-383149 |EA | 10. | 10.5 | |p | | | | |MB |04001 04001| +722236 |V2236 Sgr |200822.0-405705 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722237 |V2237 Sgr |200840.2-355856 |RR | 13. | 14. | |p | | | | | |04001 04001| +722238 |V2238 Sgr |200916.5-433822 |L: | 11. | 12. | |p | | | | | |04001 04001| +722239 |V2239 Sgr |200909.7-414932 |RR | 12. | 13. | |p | | | | | |04001 04001| +722240 |V2240 Sgr |201052.0-433718 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +722241 |V2241 Sgr |201104.5-425203 |RR | 15. | 16. | |p | | | | | |04001 04001| +722242 |V2242 Sgr |201130.3-375535 |RR | 15.5 | 16.5 | |p | | | | | |04001 04001| +722243 |V2243 Sgr |201129.9-364021 |RR: | 15. | 16.5 | |p | | | | | |04001 04001| +722244 |V2244 Sgr |201147.1-383942 |RR | 13.5 | 14.5 | |p | | | | | |04001 04001| +722245 |V2245 Sgr |201202.1-382346 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722246 |V2246 Sgr |201230.5-374406 |RR | 13. | 13.5 | |p | | | | | |04001 04001| +722247 |V2247 Sgr |201304.2-380938 |RR | 15.5 | 16.5 | |p | | | | | |04001 04001| +722248 |V2248 Sgr |201313.5-375942 |RR | 13.5 | 14. | |p | | | | | |04001 04001| +722249 |V2249 Sgr |201403.7-381731 |RR | 15.5 | 16. | |p | | | | | |04001 04001| +722250 |V2250 Sgr |201444.9-392814 |EA | 13. | 13.5 | |p | | | | | |04001 04001| +722251 |V2251 Sgr |201519.6-373915 |RR | 15. | 16. | |p | | | | | |04001 04001| +722252 |V2252 Sgr |201651.5-413856 |RR | 16. | 16.5 | |p | | | | | |04001 04001| +722253 |V2253 Sgr |201641.5-373908 |RR | 15. | 16. | |p | | | | | |04001 04001| +722254 |V2254 Sgr |201730.2-410431 |RR | 14. | 15. | |p | | | | | |04001 04001| +722255 |V2255 Sgr |201747.0-414021 |L: | 12.4 | 16.5 | |p | | | | | |04001 04001| +722256 |V2256 Sgr |201747.0-375337 |RR | 15. | 16. | |p | | | | | |04001 04001| +722257 |V2257 Sgr |201814.5-403940 |L: | 15.5 | 16.5 | |p | | | | | |04001 04001| +722258 |V2258 Sgr |201819.8-385345 |RR | 14.5 | 15.5 | |p | | | | | |04001 04001| +722259 |V2259 Sgr |201837.8-431809 |RR | 14.5 | 16. | |p | | | | | |04001 04001| +722260 |V2260 Sgr |201839.8-414240 |EA: | 15. | 16. | |p | | | | | |04001 04001| +722261 |V2261 Sgr |201833.5-363456 |EA | 13.5 | 14. | |p | | | | | |04001 04001| +722262 |V2262 Sgr |201853.2-413111 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +722263 |V2263 Sgr |201948.8-404032 |RR | 14.5 | 15. | |p | | | | | |04001 04001| +722264 |V2264 Sgr |202009.3-384420 |RR | 14. | 15. | |p | | | | | |04001 04001| +722265 |V2265 Sgr |202110.3-433353 |EA | 12.5 | 13. | |p | | | | | |04001 04001| +722266 |V2266 Sgr |202055.0-361651 |RR | 13. | 14.5 | |p | | | | | |04001 04001| +722267 |V2267 Sgr |202250.6-415334 |L: | 10.5 | 11.5 | |p | | | | | |04001 04001| +722268 |V2268 Sgr |202301.4-422150 |RR | 15. | 16. | |p | | | | | |04001 04001| +722269 |V2269 Sgr |202312.6-420719 |EA | 14. | 15.5 | |p | | | | | |04001 04001| +722270 |V2270 Sgr |202328.1-383804 |RR | 15. | 16. | |p | | | | | |04001 04001| +722271 |V2271 Sgr |202340.6-393732 |RR | 15.5 | 16.5 | |p | | | | | |04001 04001| +722272 |V2272 Sgr |202408.3-445102 |RRAB | 14.2 | 15.0 | |p |36807.345 | | 0.53193 |24 | |04294 04001| +722273 |V2273 Sgr |202414.7-405211 |RRAB | 13.5 | 14.8 | |p |36807.418 | | 0.5517 |13 | |04294 04001| +722274 |V2274 Sgr |202517.7-425506 |RRAB | 14.4 | 15.0 | |p |36730.425 | | 0.414936 |30 | |04294 04001| +722275 |V2275 Sgr |202617.5-432713 |RRAB | 12.8 | 14.3 | |p |36807.379 | | 0.5562 |14 | |04294 04001| +722276 |V2276 Sgr *|202622.2-434032 |UG | 14.3 |< 16.7 | |p | | | | | |05386 08852| +722277 |V2277 Sgr |202615.4-412922 |RRAB | 12.6 | 13.8 | |p |36807.354 | | 0.5275 |14 | |04294 04001| +722278 |V2278 Sgr |202638.9-450406 |RRAB | 13.5 | 14.6 | |p |36725.476 | | 0.492822 |18 | |04294 04001| +722279 |V2279 Sgr |202703.4-404014 |RRAB | 11.9 | 13.2 | |p |36807.417 | | 0.48987 |17 | |04294 04001| +722280 |V2280 Sgr |202737.7-401341 |RRAB | 14.1 | 15.3 | |p |36807.470 | | 0.5162 |14 | |04294 04001| +722281 |V2281 Sgr |202812.3-423608 |RRAB | 12.5 | 13.8 | |p |36807.234 | | 0.47914 |08 | |04294 04001| +722282 |V2282 Sgr *|180216.8-230347 |INB | 16. | 17. | |p | | | | | |02428 02428| +722283 |V2283 Sgr *|180438.8-365453 |EA/DM | 10.23 | 11.03 | 10.59 |V |38948.5043 | | 3.4714231 |06 *|A0 |07106 03516| +722284 |V2284 Sgr *|180520.8-364956 |CEP | 14.0 | 14.4 | |p |31314.32 | | 1.94192 |35 | |03513 03513| +722285 |V2285 Sgr | | | | | | | | | | | | |=V4620 Sgr +722286 |V2286 Sgr |181407.7-362600 |M | 13.9 | 17.4 : | |p |36744. | | 142.4 | | |00001 03513| +722287 |V2287 Sgr |181409.4-275759 |RRAB | 15.3 | 16.2 | |p |33125.822 | | 0.566471 |17 | |03909 03909| +722288 |V2288 Sgr |181411.9-274633 |RRAB | 15.9 | 16.9 | |p |34187.437 | | 0.544399 |15 | |03909 03909| +722289 |V2289 Sgr |181414.7-274226 |RRAB | 17.0 | 17.9 | |p |34308.233 | | 0.548926 |15 | |03909 03909| +722290 |V2290 Sgr |181426.2-280152 |SRA | 15.5 | 16.9 | |p |34545. | | 106. | | |03909 03909| +722291 |V2291 Sgr |181427.0-280549 |RRC | 15.5 | 16.4 | |p |33151.714 | | 0.303891 |40 : | |03909 03909| +722292 |V2292 Sgr |181427.9-280631 |RRAB | 16.1 | 16.5 | |p |33125.698 | | 0.624573 |13 | |03909 03909| +722293 |V2293 Sgr |181427.9-274954 |M: | 13.8 | 17.7 | |p |34248. | | 248. | | |03909 03909| +722294 |V2294 Sgr |181430.5-280150 |RRAB | 16.1 | 17.2 | |p |34184.580 | | 0.603310 |20 | |03909 03909| +722295 |V2295 Sgr |181432.6-274511 |SR: | 16.7 | 18.1 | |p | | | | | |03909 03909| +722296 |V2296 Sgr |181433.9-274316 |RRC | 16.2 | 16.6 | |p |33151.714 | | 0.2352788 |50 | |03909 03909| +722297 |V2297 Sgr |181439.4-274353 |RRAB | 16.3 | 17.3 | |p |34307.297 | | 0.515580 |12 | |03909 03909| +722298 |V2298 Sgr |181440.0-274800 |RRAB | 15.7 | 16.9 | |p |34248.360 | | 0.490717 |23 | |03909 03909| +722299 |V2299 Sgr |181442.5-280207 |SRA | 16.2 | 18.3 | |p |34629. | | 140. | | |03909 03909| +722300 |V2300 Sgr |181446.1-275824 |RRAB | 16.3 | 17.1 | |p |34248.423 | | 0.545146 |20 | |03909 03909| +722301 |V2301 Sgr |181446.6-274320 |RRAB | 15.6 | 16.5 | |p |33151.765 | | 0.4427495 |13 | |03909 03909| +722302 |V2302 Sgr |181448.7-274323 |SRA | 15.9 | 17.3 | |p |34185. | | 165. | | |08424 03909| +722303 |V2303 Sgr |181451.3-274740 |RRC | 16.3 | 16.7 | |p |33125.717 | | 0.314514 |23 | |03909 03909| +722304 |V2304 Sgr |181457.6-280137 |RRC | 15.9 | 16.5 | |p |33917.266 | | 0.324761 |40 | |03909 03909| +722305 |V2305 Sgr |181504.0-280035 |RRAB | 16.2 | 16.4 | |p |34184.284 | | 0.624388 |20 | |03909 03909| +722306 |V2306 Sgr |181505.2-280052 |RRAB | 18.1 | 18.8 | |p |34184.329 | | 0.453944 |11 | |03909 03909| +722307 |V2307 Sgr |181504.0-274450 |SRA | 14.1 | 15.8 | |p |34569. | | 336. | | |03909 03909| +722308 |V2308 Sgr |181508.1-280123 |RRAB | 15.9 | 17.0 | |p |34217.454 | | 0.4890350 |20 | |03909 03909| +722309 |V2309 Sgr |181519.4-275708 |SR | 17.3 | 18.1 | |p |34536. | | | | |03909 03909| +722310 |V2310 Sgr |181521.2-275327 |RRAB | 17.0 | 17.7 | |p |34184.315 | | 0.454582 |13 | |03909 03909| +722311 |V2311 Sgr |181522.0-275015 |RRAB | 16.4 | 16.8 | |p |34243.305 | | 0.582430 |10 | |03909 03909| +722312 |V2312 Sgr |181524.4-280430 |M | 15.7 |< 18.4 | |p |33853. | | 219. | | |03909 03909| +722313 |V2313 Sgr *|181524.8-274657 |EA | 16.7 | 18.0 | 16.8 |p |33154.687 | | 3.31074 |10 *| |03909 03909| +722314 |V2314 Sgr |181525.9-274948 |SR | 16.5 | 18.0 | |p |33853. | | 220. | | |08424 03909| +722315 |V2315 Sgr *|181531.4-274937 |RRC: | 16.2 | 16.6 | |p | | | 0.240 : | | |03909 03909| +722316 |V2316 Sgr |181531.4-274535 |RRC | 15.8 | 16.2 | |p |33087.798 | | 0.2816697 |40 | |03909 03909| +722317 |V2317 Sgr |181532.5-280233 |M | 17.4 |< 19.8 | |p |34573. | | 380. | | |08424 03909| +722318 |V2318 Sgr |181531.5-274155 |M | 16.3 |< 18.2 | |p |34573. | | 380. : | | |08424 03909| +722319 |V2319 Sgr |181536.4-275719 |RRAB | 14.8 | 16.3 | |p |34184.551 | | 0.475233 |12 | |03909 03909| +722320 |V2320 Sgr |181539.6-280538 |RRC | 17.2 | 17.6 | |p |34304.240 | | 0.313576 |35 : | |03909 03909| +722321 |V2321 Sgr |181543.4-275943 |RRAB | 15.1 | 16.4 | |p |33887.325 | | 0.457878 |12 | |03909 03909| +722322 |V2322 Sgr |181552.3-275244 |EA | 15.4 | 16.5 | |p |34213.513 | | 3.81780 |08 *| |03909 03909| +722323 |V2323 Sgr *|181555.0-275707 |UG: | 13.1 | 16.5 | |p |33864. | | | | |03909 03909| +722324 |V2324 Sgr |181555.5-273939 |RRAB | 16.2 | 17.7 | |p |34537.336 | | 0.659991 |21 | |03909 03909| +722325 |V2325 Sgr |181556.6-275221 |RRAB | 15.2 | 16.8 | |p |34187.424 | | 0.455321 |12 | |03909 03909| +722326 |V2326 Sgr |181556.8-275957 |RRAB | 15.8 | 16.9 | |p |34186.493 | | 0.536431 |20 | |03909 03909| +722327 |V2327 Sgr |181600.8-280309 |RRAB | 16.9 | 18.0 | |p |34217.56 | | 0.865665 |17 | |03909 03909| +722328 |V2328 Sgr |181622.2-275122 |RRC | 15.9 | 16.4 | |p |34307.225 | | 0.344974 |35 : | |03909 03909| +722329 |V2329 Sgr |181625.1-275257 |M | 14.9 | 18.0 | |p |34184. | | 240. | | |08424 03909| +722330 |V2330 Sgr |181630.1-274009 |RRC | 16.4 | 17.0 | |p |34305.250 | | 0.282287 |43 | |03909 03909| +722331 |V2331 Sgr |181706.9-235752 |SRB | 14.5 | 16.2 | |p |32600. | | 240. : | | |05121 06278| +722332 |V2332 Sgr |182344.4-231950 |M | 14.5 |< 16.3 | |p |24400. | | 238. | |M6 |05122 06278| +722333 |V2333 Sgr |181940.4-231629 |LB | 12.6 | 13.3 | |p | | | | |M5 |06278 06278| +722334 |V2334 Sgr |182056.6-361037 |M | 12.3 | 16.3 | |p |36725. | | 211.2 | |Me |00001 03513| +722335 |V2335 Sgr |182107.4-364524 |M | 13.1 | 17.5 | |p |36740. | | 192.2 | |Me |00001 03513| +722336 |V2336 Sgr |182229.8-363254 |SRB | 13.5 | 14.9 | |p |36760. | | 93.3 | | |03513 03513| +722337 |V2337 Sgr |182248.4-362340 |M | 13.1 | 16.9 | |p |36761. | | 126.5 | |Me: |00001 03513| +722338 |V2338 Sgr |182348.6-252619 |EA/SD: | 13.8 | 15.5 | |p |37199.544 | | 2.8138 | | |05121 06278| +722339 |V2339 Sgr |182407.5-231827 |SRA | 14.0 | 16.3 | |p |24400. | | 137.8 | |M2 |05122 06278| +722340 |V2340 Sgr |182421.1-225102 |M | 14.0 |< 16.3 | |p |37840. | | 215. | |M7 |05122 06278| +722341 |V2341 Sgr *|182432.1-234706 |SRA | 13.5 | 14.6 | |p |37980. | | 150. | |M4 |05121 06278| +722342 |V2342 Sgr *|182435.8-245316 |RV | 13.1 | 13.8 | 13.5 |B |44396.74 | | 92.1 | |M: |09863 09863| +722343 |V2343 Sgr *|182442.3-232012 |M | 14.0 |< 16.0 | |p |26580. | | 283. | |M7 |05122 06278| +722344 |V2344 Sgr |182650.0-232538 |RRAB | 13.4 | 14.8 : | |p |26562.353 | | 0.64491 | | |05122 06278| +722345 |V2345 Sgr |182647.9-224606 |M | 14.5 |< 16.3 | |p |37120. | | 205. | |M8 |05121 06278| +722346 |V2346 Sgr *|182645.9-210740 |SRB | 12.1 | 13.0 | |p | | | | |M5-M6 |05121 06278| +722347 |V2347 Sgr |182846.5-361616 |M | 11.4 | 18.5 | |p |36792. | | 190.6 | | |00001 03513| +722348 |V2348 Sgr |182830.6-231301 |M | 14.1 |< 15.5 | |p |33878. | | 261. | |M4-M7 |05122 06278| +722349 |V2349 Sgr *|182825.1-164205 |EA/D | 8.76 | 9.4 | 9.2 |B |26916.650 | | 5.02565 |12 |B1Vne |05284 BD | +722350 |V2350 Sgr |182854.6-254721 |ISB: | 13.8 | 15.5 | |p | | | | |M6-M6.5 |05121 06278| +722351 |V2351 Sgr *|182929.9-312802 |EA/DM | 10.21 | 10.73 | 10.31 |V |28784.21 | | 3.748819 |10 *| |03551 02447| +722352 |V2352 Sgr *|182911.9-220246 |SRA | 13.5 | 15.4 | |p |28588. | | 185.2 | |M7 |05122 06278| +722353 |V2353 Sgr |182928.4-242352 |LB | 13.6 | 14.1 | |p | | | | |M5 |05121 06278| +722354 |V2354 Sgr |183011.6-245227 |UV: | 12.4 | 13.2 | |p | | | | |M5 |05121 06278| +722355 |V2355 Sgr *|183045.3-322238 |RRAB | 15.0 | 16.4 | |p | | | | | |04410 04410| +722356 |V2356 Sgr |183108.6-365214 |RRAB | 14.8 | 16.0 | |p |31675.3255 | | 0.51310501 |15 | |03513 03513| +722357 |V2357 Sgr |183026.3-222341 |M | 13.9 | 16.6 | |p |25800. | | 225. |31 |M3 |05121 06278| +722358 |V2358 Sgr *|183042.2-233820 |LB | 13.9 | 14.5 | |p | | | | |M5-M6 |05121 06278| +722359 |V2359 Sgr *|183134.9-322554 |UG: | 16.4 |< 18.6 | |p | | | | | |04410 04410| +722360 |V2360 Sgr *|183157.9-321221 |RRAB | 15.5 | 16.7 | |p | | | | | |04410 04410| +722361 |V2361 Sgr *|183159.5-321157 |RR: | 16.4 | 17.6 | |p | | | | | |04410 04410| +722362 |V2362 Sgr *|183139.5-241144 |SRA | 13.9 | 15.8 : | |p |37200. | | 199.6 | | |05121 2MASS| +722363 |V2363 Sgr |183235.3-231404 |LB: | 13.9 | 14.9 | |p | | | | |M7 |05121 06278| +722364 |V2364 Sgr |183409.9-242514 |LB | 12.7 | 13.7 | |p | | | | |M7 |05121 06278| +722365 |V2365 Sgr |183437.7-215558 |SRA | 14.7 | 16. : | |p |28022. | | 132. | |M6: |05122 06278| +722366 |V2366 Sgr *|183442.2-215650 |RRAB | 14.7 | 15.6 | |p |27964.555 | | 0.5108643 |20 | |05122 06278| +722367 |V2367 Sgr *|183452.1-235256 |SRB | 12.9 | 14.8 | |p | | | 424. : |50 |M7 |08792 08792| +722368 |V2368 Sgr |183507.6-211941 |M: | 15.7 |< 16.4 | |p |26570. | | 193.8 | |M7 |06272 06278| +722369 |V2369 Sgr |183525.3-222246 |SRA | 15.0 | 16.4 | |p |31227. | | 315. | |M9 |05122 06278| +722370 |V2370 Sgr |183610.8-204331 |SRB | 12.8 | 14.8 | |p | | | | |M5 |05121 06278| +722371 |V2371 Sgr |183816.9-365147 |RRAB | 14.4 | 15.9 | |p |26563.421 | | 0.52549008 |10 | |03516 03516| +722372 |V2372 Sgr |183736.3-221235 |SRA | 14.4 | 16.2 | |p |30116. | | 226. | |M7 |05122 06278| +722373 |V2373 Sgr |183839.6-353655 |RRAB | 15.0 | 16.0 | |p |28432.360 | | 0.51718421 |17 | |03516 03516| +722374 |V2374 Sgr |183809.6-274127 |RRAB | 13.8 | 15.1 | |p |33858.326 | | 0.601989 | | |05121 06278| +722375 |V2375 Sgr |183831.0-325852 |M | 13.1 |< 19.0 | |p |36752. | | 330.94 | | |00001 03516| +722376 |V2376 Sgr |183824.7-253256 |SRB | 13.0 | 13.9 | |p | | | 92.5 : | |M6 |05121 06278| +722377 |V2377 Sgr |184000.7-332749 |M | 13.2 | 18.8 | |p |36713. | | 211.5 | | |00001 03516| +722378 |V2378 Sgr *|183959.4-183839 |M: | 13.7 |< 15.5 | |p |36750. | | 312. | |M9 |05121 06278| +722379 |V2379 Sgr |184100.2-342216 |I | 13.7 | 14.5 | |p | | | | | |03516 03516| +722380 |V2380 Sgr |184125.4-254306 |LB | 13.8 | 14.9 | |p | | | | |M5 |05121 06278| +722381 |V2381 Sgr |184231.6-355928 |SRA | 13.5 | 15.4 | |p |25420. | | 183. | | |03516 03516| +722382 |V2382 Sgr |184234.6-353318 |SRA | 14.2 | 16.2 | |p |25400. | | 187. | | |00001 03516| +722383 |V2383 Sgr |184249.0-190118 |M | 13.1 |< 16.1 | |p |25850. | | 188.5 | | |06272 06278| +722384 |V2384 Sgr |184612.0-365127 |RRAB | 14.8 | 15.7 | |p |26566.5185 | | 0.57016145 |14 | |03516 03516| +722385 |V2385 Sgr |184625.3-324925 |M | 13.2 |< 15.5 | |p |25796. | | 235. | | |03516 03516| +722386 |V2386 Sgr |184643.0-320451 |I | 13.3 | 14.0 | |p | | | | | |03516 03516| +722387 |V2387 Sgr |184812.4-352941 |RRAB | 15.0 | 16.0 | |p |28433.284 | | 0.54937512 |16 | |03516 03516| +722388 |V2388 Sgr |184856.7-342718 |M | 13.5 |< 16.0 | |p |27670. | | 388. | |Me |05590 03516| +722389 |V2389 Sgr *|184924.3-355856 |RRC | 14.0 | 14.5 | |p |28042.330 | | 0.41328098 |50 | |03516 03516| +722390 |V2390 Sgr |185030.9-265733 |M | 14.1 |< 17.5 | |p |25764. | | 207. | | |03516 03516| +722391 |V2391 Sgr *|185238.9-341920 |SRA | 14.1 | 14.9 | |p |25338. | | 378. : | | |03516 03516| +722392 |V2392 Sgr |185306.1-261709 |SRA | 14.2 |< 15.5 | |p |25886. | | 211. | | |03516 03516| +722393 |V2393 Sgr |185332.6-293243 |M | 13.9 |< 15.5 | |p |26568. | | 278. | | |03516 03516| +722394 |V2394 Sgr |185542.3-341237 |SRA | 14.4 |< 15.5 | |p |25730. | | 251. | | |03516 03516| +722395 |V2395 Sgr |185741.6-335047 |SRA | 12.4 | 14.2 | |p |25490. | | 150. | | |03516 03516| +722396 |V2396 Sgr |185900.9-344329 |RRAB | 14.1 | 15.5 | |p |26155.222 | | 0.43387047 |08 | |03516 03516| +722397 |V2397 Sgr |185839.6-251210 |I | 13.7 | 14.3 | |p | | | | | |03516 03516| +722398 |V2398 Sgr |190008.8-360936 |RRAB | 15.2 | 16.2 | |p |30554.368 | | 0.53757277 |15 | |03516 03516| +722399 |V2399 Sgr |190125.9-344339 |RRAB | 14.6 | 15.7 | |p |28016.2506 | | 0.46886422 |12 | |03516 03516| +722400 |V2400 Sgr |190212.1-262453 |M | 14.1 |< 16. | |p |29080. | | 249. | | |03516 03516| +722401 |V2401 Sgr |190211.4-244158 |SRA | 13.9 | 15.0 | |p |26212. | | 128.5 | | |03516 03516| +722402 |V2402 Sgr |190359.0-321719 |I | 14.2 |< 15.5 | |p | | | | | |03516 03516| +722403 |V2403 Sgr |190441.3-285447 |SRA | 14.6 |< 15.5 | |p |25720. | | 248. | | |03516 03516| +722404 |V2404 Sgr |190616.8-312322 |M | 13.4 |< 16. | |p |26264. | | 212. | | |03516 03516| +722405 |V2405 Sgr |190710.1-324647 |M | 13.5 |< 15.5 | |p |32706. | | 355. | | |03516 03516| +722406 |V2406 Sgr |190732.3-280930 |SRA | 13.9 | 14.7 | |p |25780. | | 158. | | |03516 03516| +722407 |V2407 Sgr |191011.4-270538 |M | 14.0 |< 15.5 | |p |26550. | | 298. | |Me |03516 03516| +722408 |V2408 Sgr |191347.2-333253 |SRA | 13.7 | 15.0 | |p |23990. | | 123.1 | | |03516 03516| +722409 |V2409 Sgr |191355.0-241043 |M | 13.7 |< 15.5 | |p |26124. | | 218.5 | | |03516 03516| +722410 |V2410 Sgr |191607.3-274605 |RRAB | 13.5 | 14.3 | |p |26571.3070 | | 0.61450731 |14 | |03516 03516| +722411 |V2411 Sgr |191642.2-324438 |SR | 14.4 | 15.1 | |p |25410. | | 385. : | | |03516 03516| +722412 |V2412 Sgr |191709.1-352611 |I | 14.2 | 15.4 | |p | | | | | |03516 03516| +722413 |V2413 Sgr *|191955.8-282444 |RRAB | 13.9 | 15.0 | |p |26570.239 | | 0.4728999 |12 | |03516 03516| +722414 |V2414 Sgr |192305.1-302307 |SRA | 13.8 | 14.9 | |p |25860. | | 198. | | |03516 03516| +722415 |V2415 Sgr |175311.6-293425 |N: | 13. : |< 18. | |p |33918. :|1951 | | |ea |05586 | +722416 |V2416 Sgr *|175716.0-214129 |ZAND | 14.6 |< 17.6 | |p | | | | |M5+pec(e+cont) |06495 08077| +722417 |V2417 Sgr |175814.7-290510 |M | 16.5 |< 18.9 | |p | | | 200. | | |08424 05589| +722418 |V2418 Sgr |175824.7-291136 |M | 14.9 | 17.9 | |p |34215. | | 147. | | |08424 05589| +722419 |V2419 Sgr |175825.3-291132 |M | 15.6 |< 18.3 | |p |34245. | | 160. | | |08424 05589| +722420 |V2420 Sgr |175825.5-285427 |M | 16.7 |< 19.5 | |p |34245. | | 240. | | |08424 05589| +722421 |V2421 Sgr |175829.5-285811 |M | 16.8 |< 19.5 | |p |34200. :| | 245. | | |08424 05589| +722422 |V2422 Sgr |175832.4-285618 |M | 17.4 |< 19.6 | |p |34304. | | 400. : | | |08424 05589| +722423 |V2423 Sgr |175834.0-290344 |SRA | 16.8 | 19.2 | |p |34629. | | 207. | | |08424 05589| +722424 |V2424 Sgr |175833.2-285108 |RRAB | 16.8 | 18.7 | |p |34536.341 | | 0.562022 |17 | |05589 05589| +722425 |V2425 Sgr *|175836.3-291622 |RR: | 16.1 | 17.5 | |p | | | | | |05589 05589| +722426 |V2426 Sgr |175837.8-285450 |RRAB | 17.2 | 18.6 | |p |34536.396 | | 0.456895 |12 | |05589 05589| +722427 |V2427 Sgr |175840.0-290123 |M | 18.2 |< 19.0 | |p |34539. | | 355. | | |08424 05589| +722428 |V2428 Sgr |175845.5-285409 |RR: | 17.1 | 18.1 | |p | | | | | |05589 05589| +722429 |V2429 Sgr |175846.8-290845 |RRAB | 17.3 | 18.4 | |p |34536.428 | | 0.468922 |17 | |05589 05589| +722430 |V2430 Sgr |175850.5-290912 |RR | 17.1 | 18.4 | |p | | | | | |05589 05589| +722431 |V2431 Sgr |175853.8-291329 |RRAB | 17.1 | 18.5 | |p |34536.235 | | 0.656545 |25 | |05589 05589| +722432 |V2432 Sgr |175853.1-290114 |RRAB | 18.0 | 18.9 | |p |34213.202 | | 0.462909 |12 | |05589 05589| +722433 |V2433 Sgr |175855.3-290639 |RRAB | 17.9 | 18.8 | |p |34248.419 | | 0.565902 |19 | |05589 05589| +722434 |V2434 Sgr |175855.9-291057 |CEP | 16.2 | 18.3 | |p |34537.78 | | 2.8838 |29 | |05589 05589| +722435 |V2435 Sgr |175855.0-290038 |UG: | 16.1 | 17.2 | |p |34307. | | | | |05589 05589| +722436 |V2436 Sgr |175857.7-291328 |RRAB | 17.1 | 18.5 | |p |34245.282 | | 0.485859 |19 | |05589 05589| +722437 |V2437 Sgr |175859.0-291030 |RRAB | 16.5 | 18.5 | |p |34537.635 | | 0.459109 |12 | |05589 05589| +722438 |V2438 Sgr |175900.2-290719 |RRAB | 15.9 | 17.5 | |p |34536.274 | | 0.389825 |11 | |05589 05589| +722439 |V2439 Sgr |175907.2-291301 |SR: | 16.3 | 17.5 | |p |33890. | | 137. : | | |05589 05589| +722440 |V2440 Sgr |175909.8-285833 |RRAB | 16.6 | 17.6 | |p |34304.204 | | 0.556663 |20 | |05589 05589| +722441 |V2441 Sgr |175912.7-285657 |RRAB | 17.2 | 17.8 | |p |34536.368 | | 0.697392 |20 | |05589 05589| +722442 |V2442 Sgr *|175914.3-285446 |RRC: | 17.3 | 17.8 | |p | | | 0.33 : | | |05589 05589| +722443 |V2443 Sgr |175916.5-291524 |M | 16.6 | 18.8 | |p |34186. | | 290. | | |05589 05589| +722444 |V2444 Sgr |175919.4-290115 |EA | 18.8 |< 19.4 | |p |34537.165 | | 1.62204 | | |05589 05589| +722445 |V2445 Sgr |175922.3-285011 |RRAB | 17.3 | 18.4 | |p |34536.370 | | 0.378625 |10 | |05589 05589| +722446 |V2446 Sgr |175923.2-290216 |M | 17.4 |< 19.3 | |p |34597. | | 300. | | |08424 05589| +722447 |V2447 Sgr |175923.4-290224 |RRAB | 17.1 | 18.8 | |p |34536.309 | | 0.512128 |16 | |05589 05589| +722448 |V2448 Sgr |175924.7-285827 |SRB | 18.7 |< 19.6 | |p |34538. | | 115. | | |05589 05589| +722449 |V2449 Sgr *|175925.7-290951 |EB | 17.0 | 17.9 | 17.4 |p |34539.574 | | 1.14321 | | |05589 05589| +722450 |V2450 Sgr |175925.4-290517 |RRC | 17.7 | 18.0 : | |p |34536.280 | | 0.327415 |40 | |05589 05589| +722451 |V2451 Sgr |175928.1-285305 |RRC | 15.8 | 16.5 | |p |34536.294 | | 0.228770 |40 | |05589 05589| +722452 |V2452 Sgr |175930.3-291117 |RRAB | 17.7 | 18.7 | |p |33886.282 | | 0.4787649 |11 | |05589 05589| +722453 |V2453 Sgr |175932.4-285505 |RR | 18.2 | 19.4 | |p | | | | | |05589 05589| +722454 |V2454 Sgr |175934.7-291241 |RRAB | 17.3 | 18.4 | |p |34304.222 | | 0.555236 |16 | |05589 05589| +722455 |V2455 Sgr |175935.5-291340 |RRAB | 17.9 | 19.2 | |p |33886.273 | | 0.482855 |17 | |05589 05589| +722456 |V2456 Sgr |175936.6-291252 |RRAB | 17.6 | 18.7 | |p |34536.454 | | 0.610080 |12 | |05589 05589| +722457 |V2457 Sgr |175936.8-285401 |RRC: | 17.4 | 18.1 | |p | | | | | |05589 05589| +722458 |V2458 Sgr |175937.6-285714 |RR | 18.1 | 18.6 | |p | | | | | |05589 05589| +722459 |V2459 Sgr |175937.5-285508 |RRAB | 17.5 | 19.4 | |p |34627.234 | | 0.528851 |15 : | |05589 05589| +722460 |V2460 Sgr |175937.8-285738 |M | 18.2 |< 19.3 | |p |34308. | | 390. : | | |08424 05589| +722461 |V2461 Sgr |175941.3-284816 |SR: | 17. : | 18. : | |p |34542. | | | | |08424 05589| +722462 |V2462 Sgr |175944.5-291531 |RRAB | 16.7 | 18.5 | |p |34304.220 | | 0.486439 |26 : | |05589 05589| +722463 |V2463 Sgr |175945.4-285937 |M | 16.1 |< 18.9 | |p |34571. | | 215. | |M7 |08424 05589| +722464 |V2464 Sgr |175945.9-290321 |SRA | 16.0 | 17.7 | |p |34631. | | 160. | |M3 |08424 05589| +722465 |V2465 Sgr |175945.8-285320 |RRAB | 18.4 | 19.3 | |p |34536.617 | | 0.480090 |18 | |05589 05589| +722466 |V2466 Sgr |175945.7-285220 |RRAB | 18.1 | 19.0 | |p |34248.360 | | 0.623026 |11 | |05589 05589| +722467 |V2467 Sgr |175948.0-290351 |M | 16.9 |< 18.5 : | |p |33887. | | 240. | | |08424 05589| +722468 |V2468 Sgr *|175948.6-290103 |UG: | 17.4 | 18.2 | |p |34538. | | | | |05589 05589| +722469 |V2469 Sgr |175953.4-285637 |RR | 16.9 | 18.1 | |p | | | | | |05589 05589| +722470 |V2470 Sgr |180001.8-285716 |EA/SD | 17.9 | 19.4 | |p |34537.331 | | 1.641335 |18 : | |05589 05589| +722471 |V2471 Sgr *|180002.0-285652 |M | 16.1 |< 19.2 | |p |34542. | | 217.67 | | |00001 05589| +722472 |V2472 Sgr |180003.3-290102 |M | 16.4 |< 18.9 | |p |33893. | | 290. : | | |08424 05589| +722473 |V2473 Sgr |180003.4-290539 |RRAB | 16.7 | 18.6 | |p |34536.313 | | 0.524015 |12 | |05589 05589| +722474 |V2474 Sgr |180003.9-290540 |RR: | 16.9 | 18.0 | |p | | | | | |05589 05589| +722475 |V2475 Sgr |180006.0-285006 |RRAB | 17.1 | 18.7 | |p |34536.536 | | 0.511931 |19 | |05589 05589| +722476 |V2476 Sgr |180006.8-285420 |RRAB | 17.3 | 19.0 | |p |34536.341 | | 0.514012 |16 | |05589 05589| +722477 |V2477 Sgr |180009.0-291337 |M | 16.9 : |< 18.8 | |p |34244. | | 275. | |M8 |08424 05589| +722478 |V2478 Sgr |180011.8-290427 |M: | 18.8 |< 19.6 | |p | | | 430. | | |08424 05589| +722479 |V2479 Sgr |180014.7-290024 |M | 15.4 | 18.6 | |p |34245. | | 207. | | |08424 05589| +722480 |V2480 Sgr |180016.4-290846 |RRAB | 17.2 | 18.5 | |p |34537.552 | | 0.695264 |09 | |05589 05589| +722481 |V2481 Sgr |180017.7-285906 |RRC: | 16.6 | 17.4 | |p | | | | | |05589 05589| +722482 |V2482 Sgr |180018.9-284850 |M | 16.6 |< 18.3 | |p |34538. | | 195. | | |08424 05589| +722483 |V2483 Sgr |180021.6-290850 |SRA | 16.8 | 18.4 | |p |34246. | | 250. | | |08424 05589| +722484 |V2484 Sgr |180024.2-290357 |M | 15.6 |< 18.8 | |p |34246. | | 190. | | |08424 05589| +722485 |V2485 Sgr |180023.4-284940 |RR | 17.6 | 18.9 | |p | | | | | |05589 05589| +722486 |V2486 Sgr |180024.4-290157 |RRAB | 16.7 | 18.4 | |p |34248.407 | | 0.517939 |14 | |05589 05589| +722487 |V2487 Sgr |180028.3-290329 |RRAB | 17.0 | 18.4 | |p |34536.260 | | 0.514047 |11 | |05589 05589| +722488 |V2488 Sgr |180027.4-285317 |M: | 16.2 : | 18.2 | |p |33893. :| | 260. | | |08424 05589| +722489 |V2489 Sgr |180034.5-285730 |RRAB | 17.4 | 19.3 : | |p |34536.582 | | 0.299591 |08 | |05589 05589| +722490 |V2490 Sgr |180034.3-285740 |RRAB | 16.8 | 17.9 | |p |34536.522 | | 0.567990 |13 | |05589 05589| +722491 |V2491 Sgr |180035.1-290451 |EA | 17.1 | 18.2 | |p | | | | | |05589 05589| +722492 |V2492 Sgr |180037.4-291053 |RR | 17.3 | 18.6 | |p | | | | | |05589 05589| +722493 |V2493 Sgr *|180040.9-290013 |CST: | 15.4 | 17.1 | |p |34545. | | | | | 05589| +722494 |V2494 Sgr |180043.2-290837 |RR: | 17.4 | 18.4 | |p | | | | | |05589 05589| +722495 |V2495 Sgr |180042.1-285530 |SRA | 15.6 | 16.9 | |p |34592. | | 165. | | |08424 05589| +722496 |V2496 Sgr |180043.7-285408 |SRA | 16.3 | 18.2 | |p |34304. | | 260. : | | |08424 05589| +722497 |V2497 Sgr |180047.7-291554 |SRA | 16.8 | 19.0 | |p |34187. | | 184. | | |08424 05589| +722498 |V2498 Sgr |180046.6-284952 |SRA | 16.2 | 18.0 | |p |34246. | | 164. | | |08424 05589| +722499 |V2499 Sgr |180053.0-291101 |M | 15.6 |< 18.9 | |p |34306. | | 250. | |M7 |08424 05589| +722500 |V2500 Sgr |180052.3-285054 |EA/SD | 13.9 : | 16.1 | |p |34539.341 | | 1.59178 |17 : | |05589 05589| +722501 |V2501 Sgr |180054.8-285927 |RRAB | 16.8 | 18.6 | |p |34539.449 | | 0.554123 |10 | |05589 05589| +722502 |V2502 Sgr |180055.7-290800 |RRAB | 16.6 | 17.6 | |p |34536.658 | | 0.535704 |16 | |05589 05589| +722503 |V2503 Sgr |180057.4-285354 |CWA: | 18. : | 19. : | |p |34539.4 | | 19. : | | |05589 05589| +722504 |V2504 Sgr |180100.3-285131 |RRAB | 16.8 : | 18.2 : | |p |34537.308 | | 0.504489 |20 | |05589 05589| +722505 |V2505 Sgr |181023.5-322810 |CWA | 14.5 | 15.8 | |p |28775.8 | | 22.5669 |30 | |05590 05590| +722506 |V2506 Sgr *|181101.7-283240 |ZAND | 12. |( 3.5 : )| |p | | | | |Mea |05591 08077| +722507 |V2507 Sgr *|181135.3-304117 |EA | 14.4 | 15.6 | 14.6 |p |31000.17 | | 5.50956 |15 | |05590 05590| +722508 |V2508 Sgr *|181254.4-285937 |EB | 13.8 | 14.7 | 14.1 : |p |31560.470 | | 0.6974599 | | |05590 05590| +722509 |V2509 Sgr *|181549.9-353814 |EB/KE | 7.35 | 7.71 | 7.50 |V |44387.7712 | | 1.0869739 | |A0 |00001 06618| +722510 |V2510 Sgr *|181626.2-315105 |CWA | 13.7 | 15.4 | |p |28337.6 | | 30.48 |31 | |05590 05590| +722511 |V2511 Sgr |181623.4-281948 |CEP | 13.6 | 14.7 | |p |32728.306 | | 1.724757 |30 | |05590 05590| +722512 |V2512 Sgr |181731.1-292643 |M | 13.0 |< 16.0 | |p |28395. | | 173. | | |05590 05590| +722513 |V2513 Sgr |181747.4-274927 |SRA | 11.1 | 12.1 | |p |36050. | | 57.3 | |M2 |05592 06278| +722514 |V2514 Sgr |181808.4-341844 |RRAB | 14.2 | 15.4 | |p |35660.827 | | 0.6438395 |17 | |05590 05590| +722515 |V2515 Sgr |181809.2-323457 |RRAB | 14.6 | 16.5 | |p |28780.2698 | | 0.40576683 |14 | |05590 05590| +722516 |V2516 Sgr |181814.6-325646 |RRAB | 14.7 | 15.3 | |p |29926.271 | | 0.4643320 |12 | |05590 05590| +722517 |V2517 Sgr |181822.4-290359 |M | 13.3 |< 16.0 | |p |34182. | | 189. | | |05590 05590| +722518 |V2518 Sgr |181910.0-330817 |M | 13.1 |< 18.8 | |p |28750. | | 263.3 | | |00001 05590| +722519 |V2519 Sgr |181927.0-345328 |RRAB | 14.8 | 15.5 | |p |31267.374 | | 0.6018184 |21 | |05590 05590| +722520 |V2520 Sgr *|181907.9-273252 |SRA | 14.5 | 16.2 | |p |30116. | | 154.5 | |M5 |05593 06278| +722521 |V2521 Sgr |181921.7-303720 |RRAB | 14.4 | 15.6 | |p |28815.312 | | 0.5161802 |16 | |05590 05590| +722522 |V2522 Sgr |181934.3-290425 |RRAB | 14.3 | 16.2 | |p |28783.231 | | 0.4837430 |19 | |05590 05590| +722523 |V2523 Sgr |182012.0-354837 |RRAB | 14.3 | 15.2 | |p |35658.867 | | 0.5452956 |18 | |00001 05590| +722524 |V2524 Sgr |181952.4-235413 |SRA | 14.5 | 16.0 | |p |32385. | | 165. | |M8: |05593 06278| +722525 |V2525 Sgr |181957.0-221238 |EA/SD | 13.8 | 16.0 | |p |32702.406 | | 3.16299 | | |05594 06278| +722526 |V2526 Sgr *|182021.3-293344 |CWA | 13.5 | 14.4 | |p |38941.2 | | 31.45 |42 | |07915 05590| +722527 |V2527 Sgr |182006.2-225553 |EA/DS | 13.7 |< 15.0 | |p |32473.23 | | 21.466 | | |05592 06278| +722528 |V2528 Sgr |182033.2-312334 |RRAB | 15.1 | 16.2 | |p |35655.834 | | 0.4952461 |14 | |00001 05590| +722529 |V2529 Sgr *|182049.7-274252 |EA/KE: | 13.9 | 14.5 | 14.5 |p |28815.295 | | 1.4727798 |17 *| |05590 05590| +722530 |V2530 Sgr |182058.5-291215 |CWA | 13.9 | 14.6 | |p |28783.1 | | 16.8482 |41 | |05590 05590| +722531 |V2531 Sgr |182054.7-263351 |CWA | 14.1 | 15.7 | |p |37826. | | 28.14 | | |04409 04409| +722532 |V2532 Sgr |182107.1-310606 |RRAB | 15.5 | 16.1 | |p |29926.218 | | 0.4897079 |15 | |05590 05590| +722533 |V2533 Sgr |182126.7-284346 |RRAB | 13.8 | 15.3 | |p |28458.280 | | 0.5460633 |12 | |05590 05590| +722534 |V2534 Sgr |182113.2-230543 |SRA | 14.3 | 16.3 | |p |24400. | | 186. | |M: |05592 06278| +722535 |V2535 Sgr |182225.1-310754 |RRAB | 14.4 | 16.5 | |p |28783.257 | | 0.4313330 |16 | |05590 05590| +722536 |V2536 Sgr |182233.2-315125 |RRC | 14.6 | 15.0 | |p |29733.618 | | 0.3224341 |40 | |05590 05590| +722537 |V2537 Sgr |182300.3-323404 |EA/SD | 12.3 | 14.8 | |p |29864.256 | | 2.5581482 |14 | |05590 05590| +722538 |V2538 Sgr |182311.9-360031 |RRAB | 13.5 | 14.8 | |p |35661.839 | | 0.4896893 |14 | |00001 05590| +722539 |V2539 Sgr |182338.9-341148 |RRAB | 14.7 | 15.8 | |p |28719.514 | | 0.6450824 |21 | |05590 05590| +722540 |V2540 Sgr *|182356.3-320724 |RRAB | 14.2 | 16.1 | |p |29875.252 | | 0.4705151 |17 | |05590 05590| +722541 |V2541 Sgr |182456.4-344158 |RRAB | 14.6 | 16.2 | |p |28783.259 | | 0.5352720 |17 | |05590 05590| +722542 |V2542 Sgr |182425.3-221819 |SRA | 14.0 | 15.5 | |p |32063. | | 112.5 | |M |05592 06278| +722543 |V2543 Sgr |182459.5-262901 |M | 13.7 |< 14.5 | |p |33850. | | 189. | |M8ea |05592 06278| +722544 |V2544 Sgr *|182504.4-263546 |M | 15.0 |< 16.0 | |p |27980. | | 262. | |M: |05592 06278| +722545 |V2545 Sgr |182556.4-320927 |RRAB | 14.8 | 16.0 | |p |28773.378 | | 0.6405743 |12 | |05590 05590| +722546 |V2546 Sgr |182602.8-230014 |CEP | 14.4 | 16.3 | |p |28022. | | 14.40 | | |05592 06278| +722547 |V2547 Sgr |182639.3-275911 |M | 14.2 |< 16.0 | |p |28755. | | 238. | | |05590 05590| +722548 |V2548 Sgr |182627.2-220215 |SRA | 14.5 | 16.4 | |p |23950. | | 159. | |M3 |05593 06278| +722549 |V2549 Sgr |182700.7-221733 |M: | 15.0 |< 16.0 | |p |26560. | | 281. | | |05592 06278| +722550 |V2550 Sgr |182733.1-322845 |RRAB | 15.2 | 16.4 | |p |30167.379 | | 0.5585168 |18 | |05590 05590| +722551 |V2551 Sgr |182731.2-281835 |M | 14.4 |< 16.0 | |p |28735. | | 260. | | |05590 05590| +722552 |V2552 Sgr *|182729.4-244258 |RRAB | 14.3 | 15.2 | |p |33123.282 | | 0.492531 | | |05595 06278| +722553 |V2553 Sgr *|182734.7-231601 |M | 14.4 |< 16.0 | |p |33858. | | 193. | |M: |05595 06278| +722554 |V2554 Sgr |182828.7-330520 |RRAB | 15.0 | 16.2 | |p |29926.272 | | 0.5801544 |14 | |05590 05590| +722555 |V2555 Sgr |182824.5-291328 |RRAB | 14.4 | 15.7 | |p |28753.300 | | 0.5595220 |22 | |05590 05590| +722556 |V2556 Sgr |182836.8-282853 |M | 14.5 |< 16.0 | |p |34185. | | 126. | | |05590 05590| +722557 |V2557 Sgr |182822.1-220641 |M | 14.2 |< 16.1 | |p |32370. | | 202. : | |M8 |05593 06278| +722558 |V2558 Sgr |182824.2-221332 |SRA | 14.0 | 15.5 | |p | | | 175. : | |M3-M6 |05593 06278| +722559 |V2559 Sgr |182852.4-321043 |EA | 14.5 | 15.4 | |p |28396.230 | | 3.15028 |18 | |05590 05590| +722560 |V2560 Sgr |182917.3-333923 |RRAB | 14.6 | 16.0 | |p |28781.410 | | 0.5323395 |24 | |05590 05590| +722561 |V2561 Sgr |182914.6-285834 |RRAB | 14.3 | 15.5 | |p |28774.282 | | 0.4903102 |14 | |05590 05590| +722562 |V2562 Sgr *|182859.1-224725 |M | 13.3 |< 16.0 | |p |37140. | | 248.53 | |M8 |00001 06278| +722563 |V2563 Sgr *|182939.4-332814 |RRAB | 14.1 | 15.0 | |p |29926.303 | | 0.5120484 |18 | |05590 05590| +722564 |V2564 Sgr *|182932.1-300957 |RRAB | 14.3 | 15.5 | |p |29864.247 | | 0.4520972 |12 | |05590 05590| +722565 |V2565 Sgr *|182920.4-243244 |M | 13.5 |< 15.5 | |p |27630. | | 305. : | |M: |06272 06278| +722566 |V2566 Sgr *|182951.7-310506 |RRAB | 14.9 | 15.7 | |p |30903.38 | | 0.861584 |33 | |05590 05590| +722567 |V2567 Sgr *|182954.0-310518 |RRAB | 14.8 | 16.0 | |p |30903.345 | | 0.4785680 |09 | |05590 05590| +722568 |V2568 Sgr *|183001.4-311351 |RRAB | 15.6 | 16.5 | |p |30167.298 | | 0.6310864 |14 | |05590 05590| +722569 |V2569 Sgr |183009.7-253404 |RRAB | 14.1 | 15.3 | |p |33858.392 | | 0.565429 | | |05592 06278| +722570 |V2570 Sgr |183013.0-230945 |RRAB | 14.6 | 16.2 | |p |31227.641 | | 0.6907303 | | |05595 06278| +722571 |V2571 Sgr |183049.4-230552 |SRA | 14.5 | 15.9 | |p |28350. | | 291. | |M7 |05595 06278| +722572 |V2572 Sgr |183136.9-323559 |NA | 6.5 | 14.83 | |B |40413. |1969 | | |pec(NOVA) |06619 05754| +722573 |V2573 Sgr |183115.0-214735 |SRA | 14.3 | 16.2 | |p |26564. | | 170. | |M5: |05595 06278| +722574 |V2574 Sgr |183149.9-311535 |RRAB | 14.4 | 15.7 | |p |35664.802 | | 0.5845124 |14 | |00001 05590| +722575 |V2575 Sgr |183149.8-280122 |EA/SD | 12.8 | 14.3 | |p |28783.232 | | 0.8923404 |18 | |05590 05590| +722576 |V2576 Sgr *|183149.8-261853 |SRA | 14.1 |< 15.5 | |p |36100. | | 149. | |M2: |05592 06278| +722577 |V2577 Sgr *|183219.2-341428 |RRAB | 14.8 | 16.1 | |p |30553.295 | | 0.512648 |13 : | |05590 05590| +722578 |V2578 Sgr *|183153.1-232743 |SRA | 14.4 | 16.0 | |p |29430. | | 216. | |M: |05595 06278| +722579 |V2579 Sgr *|183232.9-354631 |RRAB | 15.0 | 16.2 | |p |35660.564 | | 0.59123 |18 | |05869 05590| +722580 |V2580 Sgr |183206.7-235436 |RRAB | 14.0 | 15.3 | |p |33858.456 | | 0.4421283 | | |05595 06278| +722581 |V2581 Sgr |183233.4-322520 |RRAB | 14.2 | 15.6 | |p |29926.217 | | 0.5557308 |16 | |05590 05590| +722582 |V2582 Sgr |183234.9-312018 |RRAB | 14.0 | 15.2 | |p |28778.253 | | 0.4729523 |18 | |05590 05590| +722583 |V2583 Sgr |183240.1-313547 |RRAB | 14.9 | 16.0 | |p |31267.369 | | 0.5495599 |16 | |05590 05590| +722584 |V2584 Sgr *|183304.8-251147 |RRAB | 14.0 | 15.7 | |p |39272.737 | | 0.534902 |15 | |00001 06278| +722585 |V2585 Sgr |183322.8-214908 |M: | 15.1 |< 16.0 | |p |24400. | | 330. | |M: |05595 06278| +722586 |V2586 Sgr |183336.0-231724 |M | 14.3 |< 16.0 | |p |26160. | | 276. | |M5 |05593 06278| +722587 |V2587 Sgr |183415.7-332934 |RRAB | 14.7 | 16.1 | |p |28772.284 | | 0.5172015 |15 | |05590 05590| +722588 |V2588 Sgr |183354.8-205733 |M | 14.3 |< 16.4 | |p |25400. | | 324. | |M9: |05595 06278| +722589 |V2589 Sgr |183428.9-230132 |RV | 14.5 | 15.7 | |p |23238. | | 137.5 | | |05594 06278| +722590 |V2590 Sgr |183525.1-315027 |RRAB | 14.8 | 16.0 | |p |28815.309 | | 0.4374643 |21 | |05590 05590| +722591 |V2591 Sgr |183458.6-213413 |M | 14.9 |< 15.9 | |p |27250. | | 255. | | |05594 06278| +722592 |V2592 Sgr *|183528.3-234530 |RRC | 13.6 | 14.3 | |p |36048.775 | | 0.3428097 |40 | |05595 06278| +722593 |V2593 Sgr *|183622.6-324901 |RRAB | 14.6 | 16.1 | |p |35665.841 | | 0.51225 |11 | |05869 05590| +722594 |V2594 Sgr *|183632.9-301636 |RRAB | 13.8 | 15.4 | |p |29927.243 | | 0.413750 |20 | |05590 05590| +722595 |V2595 Sgr |183636.8-302226 |I | 12.4 | 13.7 | |p | | | | | |05590 05590| +722596 |V2596 Sgr |183635.4-270034 |E/SD | 13.8 | 15.3 | |p |28783.244 | | 1.629135 |12 | |05590 05590| +722597 |V2597 Sgr |183652.4-291045 |RRAB | 14.9 | 16.1 | |p |30553.343 | | 0.5070635 |10 | |05590 05590| +722598 |V2598 Sgr *|183636.7-224710 |SRA | 14.8 | 16.1 | |p |26120. | | 272. | |M6: |05594 06278| +722599 |V2599 Sgr |183712.4-300123 |RRAB | 14.3 | 15.8 | |p |30903.389 | | 0.4426614 |18 | |05590 05590| +722600 |V2600 Sgr |183718.3-212919 |SR | 14.3 | 15.6 | |p | | | 150. : | |M3 |05593 06278| +722601 |V2601 Sgr *|183802.1-224152 |ZAND | 14.0 | 15.3 | |p |29850. | | 850. | |M6e |05598 09822| +722602 |V2602 Sgr |183941.3-292700 |EA/SD | 14.0 |< 16.0 | |p |27901.524 | | 3.32328 |17 | |05590 05590| +722603 |V2603 Sgr |183954.6-294331 |RRAB | 14.6 | 15.8 | |p |31267.378 | | 0.5681476 |17 | |05590 05590| +722604 |V2604 Sgr |184000.9-302638 |RRAB | 14.4 | 15.6 | |p |30167.317 | | 0.5831857 |15 | |05590 05590| +722605 |V2605 Sgr |183959.7-295658 |RRAB | 14.2 | 15.6 | |p |28773.396 | | 0.5434073 |15 | |05590 05590| +722606 |V2606 Sgr |184006.6-212228 |EA | 13.5 | 14.9 | |p |37141.637 | | 5.070043 | | |05595 06278| +722607 |V2607 Sgr |184052.8-313053 |RRAB | 14.5 | 16.0 | |p |28776.291 | | 0.4804022 |12 | |05590 05590| +722608 |V2608 Sgr |184056.0-260504 |SRA | 11.9 | 13.1 | |p | | | 200. : | |M3-M6 |05593 06278| +722609 |V2609 Sgr |184233.6-291426 |RRAB | 14.2 | 15.6 | |p |29926.288 | | 0.5775003 |15 | |05590 05590| +722610 |V2610 Sgr | | | | | | | | | | | | |=V0372 Sgr +722611 |V2611 Sgr |184356.3-295550 |RRAB | 14.7 | 15.6 | |p |28727.328 | | 0.5379934 |14 | |05590 05590| +722612 |V2612 Sgr |184425.6-293600 |RRAB | 13.8 | 14.8 | |p |28815.291 | | 0.8336630 |20 | |05590 05590| +722613 |V2613 Sgr |184451.3-293931 |RRAB | 14.3 | 15.2 | |p |38783.311 | | 0.4353220 |20 : | |05590 05590| +722614 |V2614 Sgr |184458.7-312013 |RRAB | 14.6 | 15.6 | |p |28785.208 | | 0.6218350 |19 | |05590 05590| +722615 |V2615 Sgr |184557.3-311655 |M | 14.3 |< 16.0 | |p |34181. | | 108.3 | | |05590 05590| +722616 |V2616 Sgr *|184653.9-290502 |EA/KE: | 12.9 | 13.5 | 13.0 |p |28784.293 | | 1.0406721 |18 | |05590 05590| +722617 |V2617 Sgr *|195518.4-235813 |EA/KE: | 9.56 | 10.1 | 9.63 |V |25501.340 | | 0.9972646 | |A0 |05779 CoD | +722618 |V2618 Sgr |181120.4-363458 |RR: | 15.5 | 17.0 | |p |35665.744 | | | | |05869 GSC22| +722619 |V2619 Sgr |181157.9-364148 |RRAB | 15.5 | 16.9 | |p |35634.852 | | 0.57677 |16 | |05869 GSC22| +722620 |V2620 Sgr *|181155.8-352552 |SRA | 16.6 | 18.4 : | |p |36750. | | 138.2 : | | |05869 GSC22| +722621 |V2621 Sgr |181156.7-350403 |E | 17.1 | 18.2 | |p |35636.908 | | | | |05869 GSC22| +722622 |V2622 Sgr |181204.5-355004 |SRA | 15.4 | 16.9 | |p |36722. | | 131.2 | | |05869 GSC22| +722623 |V2623 Sgr |181209.9-363342 |RRAB | 15.0 | 16.5 | |p |35666.887 | | 0.43000 |18 | |05869 GSC22| +722624 |V2624 Sgr |181205.1-345117 |RRAB | 15.8 | 17.1 | |p |35655.838 | | 0.55720 |12 | |05869 GSC22| +722625 |V2625 Sgr *|181208.4-342913 |E | 15.2 | 16.4 | |p |35660.818 | | 1.51674 : | | |05869 GSC22| +722626 |V2626 Sgr |181214.1-351903 |RRAB | 15.8 | 17.3 | |p |35664.806 | | 0.46205 |13 | |05869 GSC22| +722627 |V2627 Sgr |181209.7-321724 |M | 16.0 |< 19.4 | |p |35690. +| | | | |05869 GSC22| +722628 |V2628 Sgr *|181209.9-322059 |M | 15.0 | 18.3 | |p |36730. | | 148. : | | |05869 GSC22| +722629 |V2629 Sgr |181219.4-350337 |SRA | 17.4 | 18.9 | |p |36673. -| | 178. : | | |05869 GSC22| +722630 |V2630 Sgr |181218.6-344433 |RRC | 16.3 | 17.2 | |p |35661.877 | | 0.28525 |47 | |05869 GSC22| +722631 |V2631 Sgr |181218.8-345400 |RRAB | 15.7 | 17.0 | |p |35662.824 | | 0.32270 |28 | |05869 GSC22| +722632 |V2632 Sgr |181222.4-360135 |RRAB | 15.4 | 16.9 | |p |35665.843 | | 0.53726 |13 | |05869 UCAC2| +722633 |V2633 Sgr |181226.3-350640 |RRAB | 16.8 | 18.0 | |p |35664.859 | | 0.48197 |20 | |05869 GSC22| +722634 |V2634 Sgr |181222.5-324215 |M | 15.6 |< 18.6 | |p |36073. :| | | | |05869 GSC22| +722635 |V2635 Sgr |181230.4-352109 |RRAB | 14.9 | 16.5 | |p |35661.881 | | 0.48517 |17 | |05869 GSC22| +722636 |V2636 Sgr |181222.7-312040 |RRAB | 16.3 | 17.9 | |p |35636.935 | | 0.43388 |20 | |05869 GSC22| +722637 |V2637 Sgr |181240.6-364330 |RRAB | 15.3 | 17.1 | |p |35664.933 | | 0.44517 |34 : | |05869 GSC22| +722638 |V2638 Sgr |181231.0-331219 |M | 14.3 | 18.5 | |p |36735. | | 261.0 | | |05869 GSC22| +722639 |V2639 Sgr |181237.5-350757 |RRAB | 14.5 | 16.0 | |p |35662.831 | | 0.32303 |25 : | |05869 GSC22| +722640 |V2640 Sgr |181237.2-345133 |SRB | 14.5 | 15.4 | |p | | | | | |05869 GSC | +722641 |V2641 Sgr |181227.9-312432 |RRAB | 15.7 | 16.6 | |p |35665.872 | | 0.55573 |20 | |05869 GSC22| +722642 |V2642 Sgr |181232.4-321007 |SRB | 17.7 | 18.5 | |p | | | | | |05869 GSC22| +722643 |V2643 Sgr |181235.4-324023 |RRAB | 16.0 | 17.1 | |p |35665.802 | | 0.51591 |35 : | |05869 GSC22| +722644 |V2644 Sgr |181240.2-335252 |M | 16.0 | 18.6 | |p |36725. | | 293.0 | | |05869 GSC22| +722645 |V2645 Sgr *|181247.9-350536 |RRAB | 15.3 | 16.6 | |p |35664.840 | | 0.52296 |16 : | |05869 GSC22| +722646 |V2646 Sgr |181248.1-351842 |SRA | 15.4 | 17.4 | |p |36810. +| | 158.8 | | |05869 GSC22| +722647 |V2647 Sgr |181237.7-310756 |SR | 15.0 |< 17.8 | |p |36790. | | | | |05869 2MASS| +722648 |V2648 Sgr |181244.4-332612 |UV: | 15.6 | 17.3 | |p | | | | | |05869 GSC22| +722649 |V2649 Sgr *|181246.7-340827 |M | 15.2 |< 18.7 | |p |36673. | | 230.0 : | | |05869 GSC22| +722650 |V2650 Sgr |181242.6-322358 |SR | 16.1 |< 17.8 | |p |36750. | | | | |05869 GSC22| +722651 |V2651 Sgr |181246.9-331033 |RRAB | 16.1 | 17.3 | |p |35665.724 | | 0.33512 |30 | |05869 GSC22| +722652 |V2652 Sgr |181248.5-331927 |M | 14.0 | 17.2 | |p |36702. -| | 292. : | | |05869 GSC22| +722653 |V2653 Sgr |181244.5-320117 |M | 13.7 |< 17.4 | |p |35670. | | 166.8 | | |05869 GSC | +722654 |V2654 Sgr |181252.9-335956 |SRB | 16.2 | 17.5 | |p | | | | | |05869 GSC22| +722655 |V2655 Sgr |181248.5-314510 |SRA | 16.6 | 18.5 | |p |36760. | | 141.6 | | |05869 GSC | +722656 |V2656 Sgr |181252.0-323341 |RRAB | 15.3 | 17.0 | |p |35662.815 | | 0.57095 |08 | |05869 GSC22| +722657 |V2657 Sgr |181256.9-340622 |RRAB | 15.5 | 17.0 | |p |35665.831 | | 0.31089 |20 | |05869 GSC22| +722658 |V2658 Sgr |181250.1-313408 |RRAB | 16.7 | 18.0 | |p |35667.853 | | 0.46817 |22 | |05869 GSC22| +722659 |V2659 Sgr |181252.7-320617 |RRAB | 16.2 | 17.6 | |p |35663.848 | | 0.48411 |18 | |05869 GSC22| +722660 |V2660 Sgr |181253.3-322613 |M | 13.6 |< 18.3 | |p |36770. | | 131. : | | |05869 GSC22| +722661 |V2661 Sgr |181259.4-335345 |E | 17.3 | 18.6 | |p |35687.730 | | | | |05869 GSC22| +722662 |V2662 Sgr |181251.9-312120 |RRAB | 16.5 | 17.8 | |p |35663.829 | | 0.46258 |25 | |05869 GSC22| +722663 |V2663 Sgr |181306.5-354528 |RRAB | 15.5 | 16.5 | |p |35663.837 | | 0.59494 |25 | |05869 GSC22| +722664 |V2664 Sgr |181259.9-330851 |L | 15.2 | 16.6 | |p | | | | | |05869 GSC | +722665 |V2665 Sgr |181300.0-331631 |SRA: | 17.2 |< 18.7 | |p | | | | | |05869 GSC22| +722666 |V2666 Sgr |181303.9-340905 |RR | 16.8 | 17.4 | |p | | | | | |05869 GSC22| +722667 |V2667 Sgr |181306.0-344516 |L | 15.7 | 16.2 | |p | | | | | |05869 GSC22| +722668 |V2668 Sgr |181303.1-332923 |RRAB | 15.7 | 17.2 | |p |35664.901 | | 0.54922 |25 | |05869 GSC22| +722669 |V2669 Sgr |181302.9-325959 |RRAB | 15.8 | 17.2 | |p |35655.856 | | 0.54534 |20 | |05869 GSC22| +722670 |V2670 Sgr |181305.5-332317 |E/SD | 16.8 | 18.5 : | |p |35664.805 | | 2.9437 | | |05869 GSC22| +722671 |V2671 Sgr |181304.9-324702 |SRB | 16.2 | 17.0 | |p | | | | | |05869 GSC22| +722672 |V2672 Sgr *|181305.6-322344 |SRA | 15.1 |< 17.4 | |p |36765. | | 168.4 : | | |05869 GSC22| +722673 |V2673 Sgr |181310.5-340214 |M | 15.0 |< 18.7 | |p |36796. | | 264. : | | |05869 GSC | +722674 |V2674 Sgr |181304.3-312734 |RRAB | 16.5 | 18.3 | |p |35661.821 | | 0.49080 |15 | |05869 GSC22| +722675 |V2675 Sgr |181304.4-315711 |M | 14.1 | 18.1 | |p |36673. -| | 152. : | | |05869 GSC22| +722676 |V2676 Sgr |181316.3-350905 |RRAB | 15.4 | 17.6 | |p |35634.902 | | 0.57806 |20 | |05869 GSC22| +722677 |V2677 Sgr |181313.0-333919 |RRAB | 15.6 | 17.6 | |p |35636.912 | | 0.45895 |14 | |05869 2MASS| +722678 |V2678 Sgr |181321.0-354815 |SR | 17.7 | 19.4 | |p | | | | | |05869 GSC22| +722679 |V2679 Sgr |181323.2-361111 |RRAB | 15.6 | 16.5 | |p |35660.777 | | 0.65789 |24 | |05869 GSC22| +722680 |V2680 Sgr |181314.6-321323 |RRC | 17.2 | 17.8 | |p |35661.830 | | 0.29061 |50 : | |05869 GSC22| +722681 |V2681 Sgr |181316.4-321225 |M | 14.9 | 18.1 | |p |36752. | | 112. : | | |05869 GSC22| +722682 |V2682 Sgr *|181316.5-322047 |M | 16.2 |< 18.4 | |p |36726. | | 163.6 : | | |05869 GSC22| +722683 |V2683 Sgr |181321.6-335735 |RRAB | 16.2 | 18.1 | |p |35660.805 | | 0.44224 |17 | |05869 GSC22| +722684 |V2684 Sgr |181316.9-321529 |RRAB | 16.2 | 18.0 | |p |35666.748 | | 0.47925 |17 | |05869 GSC22| +722685 |V2685 Sgr |181329.2-354551 |SR | 15.6 | 16.7 | |p |36752. | | | | |05869 GSC22| +722686 |V2686 Sgr |181330.6-354715 |RRAB | 13.9 | 16.3 | |p |35661.813 | | 0.45161 |18 | |05869 GSC22| +722687 |V2687 Sgr *|181331.6-360942 |M | 14.6 | 17.8 | |p |36712. | | 211.0 : | | |05869 GSC22| +722688 |V2688 Sgr |181323.6-330619 |RR | 15.2 | 17.2 | |p |35664.845 | | | | |05869 GSC22| +722689 |V2689 Sgr |181325.8-333216 |RRAB | 15.7 | 17.0 | |p |35640.927 | | 0.53994 |27 : | |05869 GSC22| +722690 |V2690 Sgr |181335.2-361830 |RRAB | 14.8 | 16.1 | |p |35664.845 | | 0.49912 |20 : | |05869 GSC22| +722691 |V2691 Sgr |181326.5-332522 |RRAB | 14.9 | 16.9 | |p |35657.836 | | 0.54998 |16 | |05869 GSC22| +722692 |V2692 Sgr |181337.7-361500 |SRB | 16.7 | 18.0 | |p | | | | | |05869 GSC22| +722693 |V2693 Sgr |181338.5-364003 |M: | 14.4 |< 16.5 | |p |23970. :| | | | |00251 06286| +722694 |V2694 Sgr |181330.8-333626 |SRA | 15.4 |< 17.7 | |p |35660. :| | 236. : | | |05869 USNO | +722695 |V2695 Sgr |181335.3-350732 |SRA | 15.2 | 17.2 | |p |36760. | | 92.5 : | | |05869 GSC22| +722696 |V2696 Sgr |181333.3-335500 |SRB: | 15.4 | 16.8 | |p | | | | | |05869 GSC22| +722697 |V2697 Sgr |181330.9-330029 |RR: | 15.3 | 17.5 : | |p | | | | | |05869 GSC22| +722698 |V2698 Sgr |181329.2-313949 |M: | 15.2 | 18.0 | |p |36810. | | | | |05869 GSC22| +722699 |V2699 Sgr |181343.2-353204 |SRB | 17.2 | 18.0 | |p | | | | | |05869 GSC22| +722700 |V2700 Sgr |181334.8-321332 |SR | 17.6 | 18.5 | |p |36760. | | | | |05869 GSC22| +722701 |V2701 Sgr |181336.6-323519 |RRAB | 15.6 | 17.3 | |p |35654.841 | | 0.46844 |30 : | |05869 GSC22| +722702 |V2702 Sgr |181346.3-351102 |M | 14.8 |< 18.4 | |p |36780. | | | | |05869 GSC22| +722703 |V2703 Sgr *|181343.9-340352 |SRA | 16.4 | 18.3 : | |p |36720. | | 180. : | | |05869 GSC22| +722704 |V2704 Sgr |181345.5-343419 |SRA | 15.4 | 17.7 | |p |36702. | | 240.0 | | |05869 GSC22| +722705 |V2705 Sgr |181349.7-342048 |RRAB | 15.6 | 17.5 | |p |35662.850 | | 0.53662 |16 | |05869 GSC22| +722706 |V2706 Sgr |181346.5-324114 |RRAB | 16.1 | 17.1 | |p |35633.877 | | 0.65005 |15 | |05869 GSC22| +722707 |V2707 Sgr |181342.6-311437 |SRB | 15.5 | 16.4 | |p | | | | | |05869 GSC22| +722708 |V2708 Sgr |181351.6-340651 |RRAB | 15.4 | 17.3 | |p |35665.789 | | 0.54820 |17 | |05869 GSC22| +722709 |V2709 Sgr |181345.8-313842 |M | 16.2 |< 19.1 | |p |36732. | | 236.0 | | |05869 GSC22| +722710 |V2710 Sgr |181401.1-362220 |RRAB | 15.5 | 17.0 | |p |35660.794 | | 0.55318 |12 | |05869 GSC22| +722711 |V2711 Sgr |181347.2-314610 |RRAB | 16.5 | 18.2 | |p |35640.948 | | 0.45262 |18 : | |05869 GSC22| +722712 |V2712 Sgr |181353.0-332619 |SR | 17.2 | 18.0 | |p | | | | | |05869 GSC22| +722713 |V2713 Sgr |181353.0-334714 |SRB | 15.4 | 16.3 | |p | | | | | |05869 GSC22| +722714 |V2714 Sgr |181357.2-345000 |M | 15.7 |< 18.6 | |p |36760. | | | | |05869 GSC22| +722715 |V2715 Sgr |181352.9-323038 |M | 15.8 | 18.7 | |p |35961. | | | | |05869 GSC22| +722716 |V2716 Sgr |181403.9-354834 |SRB | 16.1 | 17.1 | |p | | | | | |05869 2MASS| +722717 |V2717 Sgr |181408.5-364522 |SRB | 16.3 | 17.8 | |p | | | 196. : | | |05869 GSC22| +722718 |V2718 Sgr |181408.2-365614 |SRB | 17.4 | 18.3 | |p | | | | | |05869 GSC22| +722719 |V2719 Sgr *|181355.7-324238 |CEP: | 15.6 | 18.8 | |p |35687.9 | | 70.8 |28 | |05869 GSC22| +722720 |V2720 Sgr |181355.6-324532 |RRAB | 15.0 | 16.6 | |p |35658.834 | | 0.47491 |18 | |05869 2MASS| +722721 |V2721 Sgr |181357.6-331740 |RRAB | 14.4 | 16.1 | |p |35656.820 | | 0.53419 |13 | |05869 GSC22| +722722 |V2722 Sgr |181401.0-335007 |SR | 15.0 | 16.5 | |p |36761. | | | | |05869 GSC22| +722723 |V2723 Sgr |181400.6-331417 |M | 15.2 |< 18.6 | |p |36810. +| | | | |05869 GSC22| +722724 |V2724 Sgr |181403.0-332044 |SRB: | 18.0 |< 18.6 | |p | | | | | |05869 GSC22| +722725 |V2725 Sgr |181407.6-340902 |RRAB | 15.9 | 17.2 | |p |35660.746 | | 0.55689 |15 | |05869 GSC22| +722726 |V2726 Sgr |181404.3-322203 |RRAB | 16.5 | 17.9 | |p |35664.769 | | 0.53354 |15 | |05869 GSC22| +722727 |V2727 Sgr |181415.2-345714 |RRAB | 15.4 | 16.5 | |p |35664.889 | | 0.56745 |17 | |05869 GSC22| +722728 |V2728 Sgr |181418.9-352242 |RRAB | 15.2 | 16.4 | |p |35655.829 | | 0.39634 |25 | |05869 GSC22| +722729 |V2729 Sgr |181419.2-353318 |SRA | 14.7 | 16.7 | |p |36778. | | 106. | | |05869 GSC22| +722730 |V2730 Sgr |181412.4-324736 |RRAB | 16.2 | 17.1 | |p |35657.860 | | 0.35203 |20 | |05869 GSC22| +722731 |V2731 Sgr *|181413.6-323658 |M | 13.8 | 18.6 | |p |36710. | | 206.0 : | | |05869 GSC22| +722732 |V2732 Sgr *|181419.1-324351 |SRA | 15.2 | 17.4 | |p | | | 161.8 : | | |05869 GSC22| +722733 |V2733 Sgr *|181421.3-333340 |SRB | 16.1 | 17.7 | |p | | | 201. : | | |05869 GSC22| +722734 |V2734 Sgr |181426.6-351449 |RRAB | 15.3 | 16.7 | |p |35658.853 | | 0.45515 |14 | |05869 GSC22| +722735 |V2735 Sgr |181418.4-322154 |SRB: | 15.4 | 16.0 | |p | | | | | |05869 GSC22| +722736 |V2736 Sgr *|181415.9-312312 |RRC | 16.8 | 17.5 | |p |35661.889 | | 0.47027 |50 | |05869 GSC22| +722737 |V2737 Sgr |181428.8-352149 |RRAB | 16.2 | 17.6 | |p |35662.749 | | 0.55413 |20 | |05869 GSC22| +722738 |V2738 Sgr *|181426.4-333801 |RRAB | 15.3 | 16.4 | |p |35661.852 | | 0.50599 |15 | |05869 GSC22| +722739 |V2739 Sgr |181433.6-355455 |RRAB | 15.3 | 16.6 | |p |35663.775 | | 0.50843 | | |05869 GSC22| +722740 |V2740 Sgr *|181423.2-312445 |M | 15.3 | 18.3 | |p |36673. -| | 177.5 : | | |05869 GSC22| +722741 |V2741 Sgr |181426.4-321711 |SRB | 15.5 : | 16.6 | |p | | | | | |05869 2MASS| +722742 |V2742 Sgr |181429.4-332230 |SR | 17.2 | 17.9 | |p | | | | | |05869 GSC22| +722743 |V2743 Sgr |181441.3-365801 |RRAB | 15.2 | 16.7 | |p |35658.868 | | 0.38168 |18 | |05869 GSC22| +722744 |V2744 Sgr |181434.7-345906 |RRAB | 16.0 | 17.2 | |p |35664.845 | | 0.48900 |20 : | |05869 GSC22| +722745 |V2745 Sgr *|181431.5-332634 |RRAB | 15.9 | 16.8 | |p |35663.801 | | 0.56595 |15 | |05869 GSC22| +722746 |V2746 Sgr |181438.0-351635 |RRAB | 15.8 | 17.4 | |p |35664.751 | | 0.41724 |28 | |05869 GSC22| +722747 |V2747 Sgr |181433.0-325150 |RRAB | 16.2 | 16.9 | |p |35660.782 | | 0.37410 |13 | |05869 GSC22| +722748 |V2748 Sgr |181445.9-362706 |RRAB | 14.9 | 16.4 | |p |35664.800 | | 0.47462 |15 | |05869 GSC22| +722749 |V2749 Sgr |181435.2-322701 |SR | 17.9 |< 19.9 | |p | | | | | |05869 USNO | +722750 |V2750 Sgr |181447.8-362122 |RRAB | 16.5 | 18.0 | |p |35660.796 | | 0.38888 |20 | |05869 GSC22| +722751 |V2751 Sgr |181450.0-365118 |SR | 14.1 | 14.5 | |p | | | | | |05869 GSC | +722752 |V2752 Sgr |181440.5-334157 |RRAB | 14.6 | 16.2 | |p |35664.775 | | 0.57456 |15 | |05869 GSC22| +722753 |V2753 Sgr |181445.8-352035 |RRAB | 14.4 | 16.4 | |p |35634.964 | | 0.60982 |18 | |05869 GSC22| +722754 |V2754 Sgr |181433.8-310908 |RRAB | 15.1 | 16.0 | |p |35662.734 | | 0.71050 |20 | |05869 GSC22| +722755 |V2755 Sgr |181437.4-304841 |M | 14.9 | 18.9 | |p |36810. +| | 225.0 | | |05869 GSC22| +722756 |V2756 Sgr *|181434.5-294923 |ZAND | 13.2 | 15.2 | |p |37485. | | 243. | |M2e+cont |05912 05912| +722757 |V2757 Sgr |181452.4-345219 |SRB | 14.7 | 15.4 | |p | | | | | |05869 GSC | +722758 |V2758 Sgr |181458.4-351325 |RRAB | 15.6 | 16.7 | |p |35636.949 | | 0.52102 |25 | |05869 GSC22| +722759 |V2759 Sgr |181450.0-321039 |RRAB | 16.7 | 18.1 | |p |35638.900 | | 0.49618 |12 | |05869 GSC22| +722760 |V2760 Sgr |181455.7-335719 |RRAB | 15.2 | 16.1 | |p |35665.823 | | 0.72103 |14 | |05869 GSC22| +722761 |V2761 Sgr |181521.7-352730 |SRB | 14.1 | 15.1 | |p | | | | | |05869 GSC | +722762 |V2762 Sgr |181459.1-345058 |SR | 15.5 | 16.9 | |p |36788. | | | | |05869 2MASS| +722763 |V2763 Sgr *|181452.8-323349 |M | 14.4 | 18.0 | |p |36720. | | 179.6 : | | |05869 GSC22| +722764 |V2764 Sgr |181503.2-354609 |RRAB | 15.6 | 16.9 | |p |35637.840 | | 0.46549 |18 | |05869 GSC22| +722765 |V2765 Sgr |181505.9-364045 |SRA | 15.3 |< 17.4 | |p |35635. | | 330.0 | | |05869 GSC22| +722766 |V2766 Sgr |181506.5-360853 |SRB | 16.2 | 17.3 | |p | | | | | |05869 GSC22| +722767 |V2767 Sgr |181508.0-364324 |RRAB | 15.4 | 16.7 | |p |35665.859 | | 0.54625 |16 : | |05869 GSC22| +722768 |V2768 Sgr |181454.1-314825 |M | 15.3 | 18.8 | |p |36702. | | 162.6 | | |05869 GSC22| +722769 |V2769 Sgr |181509.4-361258 |SRA | 15.9 | 17.8 | |p |36673. | | 260.0 | | |05869 GSC22| +722770 |V2770 Sgr |181506.4-345412 |RRAB | 16.1 | 17.7 | |p |35689.790 | | 0.53690 |10 | |05869 GSC22| +722771 |V2771 Sgr |181457.3-304617 |CEP | 16.5 | 17.7 | |p |35672.2 | | 26.06 |35 | |05869 GSC22| +722772 |V2772 Sgr |181504.2-331623 |RRAB | 15.9 | 17.0 | |p |35658.873 | | 0.55853 |16 | |05869 GSC22| +722773 |V2773 Sgr |181507.7-330921 |M | 14.2 | 18.7 | |p |36760. | | 210. : | | |05869 GSC22| +722774 |V2774 Sgr |181506.6-323244 |L | 16.5 | 17.0 | |p | | | | | |05869 GSC22| +722775 |V2775 Sgr |181510.2-334114 |SRB | 14.4 | 15.7 | |p | | | | | |05869 GSC | +722776 |V2776 Sgr |181513.0-330923 |RR | 15.4 | 16.6 | |p |35666.770 | | | | |05869 GSC22| +722777 |V2777 Sgr *|181514.0-331420 |RRAB | 15.7 | 16.7 | |p |35660.835 | | 0.57800 |20 | |05869 GSC22| +722778 |V2778 Sgr |181523.0-355102 |M | 15.3 |< 17.9 | |p |36735. | | 309.5 | | |05869 GSC22| +722779 |V2779 Sgr |181519.1-341437 |RR | 15.6 | 16.8 | |p |35687.799 | | | | |05869 2MASS| +722780 |V2780 Sgr |181522.0-344201 |RRAB | 15.4 | 16.5 | |p |35666.789 | | 0.54952 |15 | |05869 GSC22| +722781 |V2781 Sgr |181513.8-310058 |SR | 14.8 | 16.0 | |p |36785. | | | | |05869 GSC22| +722782 |V2782 Sgr |181532.6-364922 |RRAB | 15.5 | 16.7 | |p |35689.795 | | 0.38179 |27 | |05869 GSC22| +722783 |V2783 Sgr *|181522.1-333155 |M | 13.8 | 18.1 | |p |36050. | | 212.0 : | | |05869 GSC22| +722784 |V2784 Sgr |181516.6-312631 |M | 15.1 | 18.1 | |p |36720. | | 205.0 | | |05869 GSC22| +722785 |V2785 Sgr |181532.0-355050 |M | 15.1 | 18.5 | |p |36729. | | 302.5 | | |05869 GSC22| +722786 |V2786 Sgr |181526.9-340001 |RRAB | 15.5 | 16.5 | |p |35663.872 | | 0.63902 : |25 : | |05869 GSC22| +722787 |V2787 Sgr |181530.4-345008 |RR | 16.1 | 16.5 | |p |35655.801 | | 0.49921 | | |05869 GSC22| +722788 |V2788 Sgr |181527.0-334339 |M | 13.3 |< 16.4 | |p |35657. | | 301.0 | | |05869 GSC22| +722789 |V2789 Sgr *|181528.7-340409 |M | 13.8 | 18.0 | |p |35635. | | 198.6 : | | |05869 GSC | +722790 |V2790 Sgr |181528.0-330612 |RR | 17.2 | 18.3 | |p |35666.843 | | | | |05869 USNO | +722791 |V2791 Sgr |181533.1-342128 |RRAB | 14.7 | 15.9 | |p |35666.841 | | 0.38454 |15 : | |05869 GSC22| +722792 |V2792 Sgr |181531.7-332457 |RRC | 15.7 | 16.3 | |p |35663.892 | | 0.36911 |40 | |05869 GSC22| +722793 |V2793 Sgr |181525.6-310410 |CEP | 12.6 | 14.0 | |p |35660.0 :| | 15.90 |26 | |05869 UCAC2| +722794 |V2794 Sgr |181533.5-324723 |RRAB | 15.4 | 17.0 | |p |35663.852 | | 0.47093 |17 | |05869 GSC22| +722795 |V2795 Sgr |181530.1-313343 |SR | 16.7 | 18.0 | |p | | | | | |05869 GSC22| +722796 |V2796 Sgr |181532.4-323448 |RRAB | 15.2 | 17.3 | |p |35658.886 | | 0.55734 |35 | |05869 GSC22| +722797 |V2797 Sgr |181536.9-330805 |RRAB | 15.0 | 16.2 | |p |35663.849 | | 0.36327 |20 : | |05869 GSC22| +722798 |V2798 Sgr *|181535.9-320632 |M | 15.2 |< 18.5 | |p |36720. | | 197.4 : | | |05869 GSC22| +722799 |V2799 Sgr |181538.8-323141 |RRAB | 16.3 | 17.6 | |p |35638.835 | | 0.52903 : |19 | |05869 GSC22| +722800 |V2800 Sgr |181540.2-322303 |RR | 15.3 | 17.1 | |p |35666.733 | | | | |05869 2MASS| +722801 |V2801 Sgr |181541.3-314114 |RRAB | 15.8 | 16.9 | |p |35664.790 | | 0.47780 |14 | |05869 GSC22| +722802 |V2802 Sgr |181541.0-305845 |M | 14.7 |< 17.3 | |p |36761. | | | | |05869 GSC22| +722803 |V2803 Sgr |181549.3-332214 |SRB | 17.6 | 18.6 | |p | | | | | |05869 2MASS| +722804 |V2804 Sgr |181549.4-333703 |L | 16.5 | 16.8 | |p | | | | | |05869 GSC22| +722805 |V2805 Sgr |181559.3-354232 |RRC | 15.2 | 16.1 | |p |35655.809 | | 0.37096 : |26 | |05869 GSC22| +722806 |V2806 Sgr |181558.8-352755 |RRAB | 15.7 | 17.6 | |p |35664.825 | | 0.53230 |21 | |05869 GSC22| +722807 |V2807 Sgr |181558.8-353225 |SRA | 14.7 | 16.9 | |p |36810. | | | | |05869 GSC22| +722808 |V2808 Sgr |181549.2-313029 |M | 14.0 | 16.7 | |p |36050. | | 268.5 | | |05869 GSC22| +722809 |V2809 Sgr |181548.3-311553 |SR | 15.1 | 16.4 | |p |36752. | | | | |05869 GSC22| +722810 |V2810 Sgr |181600.9-343057 |RRAB | 15.7 | 16.4 | |p |35656.796 | | 0.64641 |22 | |05869 GSC22| +722811 |V2811 Sgr |181552.7-320221 |M | 15.4 |< 18.6 | |p |36778. | | | | |05869 GSC22| +722812 |V2812 Sgr |181605.0-351212 |M: | 15.2 |< 17.0 | |p |36050. | | | | |05869 GSC22| +722813 |V2813 Sgr |181606.8-360327 |RRAB | 16.2 | 18.1 | |p |35666.793 | | 0.53748 |20 | |05869 GSC22| +722814 |V2814 Sgr |181607.5-360040 |M | 14.4 |< 18.7 | |p |36673. -| | 281.2 | | |05869 GSC22| +722815 |V2815 Sgr |181555.4-314916 |RRAB | 16.2 | 16.7 | |p |35664.841 | | 0.49871 |13 : | |05869 GSC22| +722816 |V2816 Sgr *|181556.0-315915 |M | 14.2 |< 19.2 | |p |36730. | | 200. : | | |05869 GSC22| +722817 |V2817 Sgr |181557.3-322729 |RRAB | 15.2 | 17.5 | |p |35655.845 | | 0.54456 |26 | |05869 GSC22| +722818 |V2818 Sgr |181554.1-305308 |SR | 15.9 |< 18.0 | |p |35639. :| | | | |05869 GSC22| +722819 |V2819 Sgr |181614.7-364947 |SR | 15.7 | 16.8 | |p |36785. | | | | |05869 GSC22| +722820 |V2820 Sgr |181606.4-340922 |SR | 15.9 | 16.7 | |p | | | | | |05869 GSC22| +722821 |V2821 Sgr |181614.9-364713 |RRAB | 15.6 | 17.5 | |p |35687.767 | | 0.44202 |11 : | |05869 2MASS| +722822 |V2822 Sgr |181604.2-322229 |SRA | 15.2 |< 17.2 | |p |35635. | | 338.0 | | |05869 GSC22| +722823 |V2823 Sgr |181617.3-361300 |M | 15.8 |< 17.3 | |p | | | | | |05869 GSC22| +722824 |V2824 Sgr |181611.0-340804 |M | 13.8 |< 19.2 | |p |36050. | | 318. : | | |05869 GSC | +722825 |V2825 Sgr |181616.9-360754 |RRC | 14.7 | 15.3 | |p |35657.774 | | 0.34794 |50 | |05869 GSC22| +722826 |V2826 Sgr |181610.8-334456 |E: | 15.2 | 16.0 | |p | | | | | |05869 GSC22| +722827 |V2827 Sgr |181615.2-345107 |RRAB | 15.0 | 17.2 | |p |35661.801 | | 0.34593 |20 | |05869 GSC22| +722828 |V2828 Sgr *|181608.5-322904 |RRAB | 15.8 | 17.6 | |p |35657.849 | | 0.65807 : |20 : | |05869 GSC22| +722829 |V2829 Sgr |181607.9-313824 |RRAB | 15.9 | 17.3 | |p |35687.812 | | 0.54402 |23 | |05869 GSC22| +722830 |V2830 Sgr *|181613.2-324422 |SRB: | 15.7 | 16.8 | |p | | | | | |05869 GSC22| +722831 |V2831 Sgr |181619.1-343637 |M | 13.8 | 19.9 | |p |36770. | | 222.0 | | |05869 GSC22| +722832 |V2832 Sgr |181610.7-312942 |RR | 16.3 | 16.9 | |p |35657.861 | | 0.59352 |35 : | |05869 GSC22| +722833 |V2833 Sgr *|181619.1-334414 |M | 14.0 | 18.0 | |p |36720. | | 160.0 : | |Me |05869 GSC22| +722834 |V2834 Sgr *|181613.9-312841 |M: | 15.4 | 18.0 | |p |36050. | | 157. : | | |05869 UCAC2| +722835 |V2835 Sgr |181624.3-341229 |L | 14.9 | 16.3 | |p | | | | | |05869 GSC22| +722836 |V2836 Sgr |181629.8-355542 |SR | 15.9 | 17.9 | |p | | | 199. : | | |05869 GSC22| +722837 |V2837 Sgr |181617.1-314803 |M | 15.8 |< 18.5 | |p |35635. | | 249.0 | | |05869 GSC22| +722838 |V2838 Sgr |181627.7-350123 |SRB | 15.0 | 16.6 | |p | | | 106.4 | | |05869 GSC | +722839 |V2839 Sgr |181619.3-314209 |UG: | 15.3 | 17.2 | |p | | | | | |05869 GSC22| +722840 |V2840 Sgr |181624.4-331548 |RRAB | 15.3 | 17.4 | |p |35661.868 | | 0.63942 |15 | |05869 GSC22| +722841 |V2841 Sgr |181621.9-315144 |SRA | 17.3 |< 18.7 | |p | | | | | |05869 GSC22| +722842 |V2842 Sgr |181636.1-353423 |M | 15.3 |< 18.4 | |p |36792. | | 232.5 | | |05869 GSC22| +722843 |V2843 Sgr | | | | | | | | | | | | |=V0704 Sgr +722844 |V2844 Sgr |181632.3-334142 |RRAB | 14.7 | 16.6 | |p |35638.969 | | 0.50386 |29 : | |05869 GSC22| +722845 |V2845 Sgr |181631.4-331039 |M | 15.9 | 19.2 | |p |35961. :| | 214.0 | | |05869 GSC22| +722846 |V2846 Sgr *|181640.9-354614 |RRAB | 14.9 | 16.4 | |p |35657.891 | | 0.65798 : |26 | |05869 GSC22| +722847 |V2847 Sgr |181634.2-325738 |RRAB | 16.0 | 18.3 | |p |35636.963 | | 0.43453 |13 | |05869 GSC22| +722848 |V2848 Sgr |181638.4-341411 |RRAB | 15.3 | 16.6 | |p |35665.836 | | 0.53965 |23 | |05869 GSC22| +722849 |V2849 Sgr |181648.3-361931 |RRAB | 15.1 | 16.3 | |p |35664.801 | | 0.51609 |13 | |05869 GSC22| +722850 |V2850 Sgr |181637.3-325936 |RRAB | 16.2 | 17.7 | |p |35660.852 | | 0.46681 |15 : | |05869 GSC22| +722851 |V2851 Sgr |181634.7-314744 |M | 15.2 | 18.0 | |p |36729. | | | | |05869 GSC22| +722852 |V2852 Sgr |181643.2-340122 |RRAB | 15.4 | 17.0 | |p |35662.736 | | 0.60570 |19 | |05869 GSC22| +722853 |V2853 Sgr |181646.7-352508 |E: | 14.1 | 15.7 | |p | | | | | |05869 GSC22| +722854 |V2854 Sgr |181650.1-361755 |RRAB | 15.4 | 16.7 | |p |35658.884 | | 0.55813 |11 | |05869 GSC22| +722855 |V2855 Sgr |181637.2-312139 |RRAB | 16.1 | 17.8 | |p |35668.807 | | 0.40009 |15 | |05869 GSC22| +722856 |V2856 Sgr |181650.0-351801 |SR | 15.3 | 16.4 | |p | | | | | |05869 GSC22| +722857 |V2857 Sgr |181649.7-352018 |RRAB | 15.3 | 16.8 | |p |35664.861 | | 0.33206 |16 | |05869 GSC22| +722858 |V2858 Sgr |181637.7-312017 |SRB: | 17.5 |< 18.6 | |p | | | | | |05869 | +722859 |V2859 Sgr |181645.5-333400 |RRAB | 15.2 | 16.9 | |p |35634.930 | | 0.47343 |16 | |05869 GSC22| +722860 |V2860 Sgr |181638.7-310852 |SRA | 14.8 | 15.6 | |p | | | | | |05869 GSC | +722861 |V2861 Sgr |181642.0-314850 |RRAB | 16.0 | 17.5 | |p |35658.868 | | 0.52496 |20 | |05869 GSC22| +722862 |V2862 Sgr |181642.4-315535 |RRAB | 15.3 | 16.5 | |p |35666.825 | | 0.71437 |20 | |05869 GSC22| +722863 |V2863 Sgr |181644.6-324004 |M | 15.7 |< 18.1 | |p |35668. | | | | |05869 GSC22| +722864 |V2864 Sgr |181658.5-361936 |CEP | 15.5 | 17.8 | |p |35657.1 | | 75.8 : |59 | |05869 GSC22| +722865 |V2865 Sgr |181644.4-314946 |RRAB | 15.6 | 16.8 | |p |35657.828 | | 0.33985 |27 | |05869 GSC22| +722866 |V2866 Sgr |181647.8-324308 |M | 15.6 |< 18.8 | |p |35688. +| | 308. : | | |05869 GSC22| +722867 |V2867 Sgr |181656.2-353216 |SR | 16.0 |< 17.6 | |p |36810. +| | | | |05869 GSC22| +722868 |V2868 Sgr *|181657.3-355506 |SRA | 16.2 |< 17.8 | |p |36705. | | 172.0 : | | |05869 GSC22| +722869 |V2869 Sgr |181643.2-310651 |RRAB | 15.8 | 17.1 | |p |35656.965 | | 0.47082 |37 : | |05869 GSC22| +722870 |V2870 Sgr |181646.6-320559 |RRAB | 15.4 | 16.7 | |p |35658.895 | | 0.47691 |15 | |05869 GSC22| +722871 |V2871 Sgr |181700.7-364046 |SR | 13.9 | 16.1 | |p |36729. | | | | |05869 GSC22| +722872 |V2872 Sgr |181653.3-333250 |RRC | 15.3 | 16.1 | |p |35665.790 | | 0.35169 |52 | |05869 GSC22| +722873 |V2873 Sgr |181656.2-335324 |SR | 14.9 | 16.3 | |p |36752. | | | | |05869 GSC22| +722874 |V2874 Sgr |181700.5-341729 |RRAB | 15.4 | 17.1 | |p |35665.842 | | 0.45333 |20 | |05869 GSC22| +722875 |V2875 Sgr |181657.6-320629 |M | 16.0 |< 18.4 | |p |35632. -| | | | |05869 GSC22| +722876 |V2876 Sgr *|181655.3-311525 |E/KW: | 15.1 | 15.7 | 15.7 : |p |35660.799 | | 0.44915 | | |05869 GSC22| +722877 |V2877 Sgr *|181658.0-315705 |M | 14.9 | 18.5 | |p |36729. | | 203.5 : | | |05869 GSC22| +722878 |V2878 Sgr |181706.7-341614 |RRAB | 15.3 | 16.4 | |p |35661.882 | | 0.40598 |33 | |05869 GSC22| +722879 |V2879 Sgr |181705.4-331941 |RR | 14.7 | 16.0 | |p |35664.858 | | 0.35574 |45 : | |05869 GSC22| +722880 |V2880 Sgr |181700.8-313027 |RRAB | 16.1 | 17.7 | |p |35657.842 | | 0.44885 |20 | |05869 GSC22| +722881 |V2881 Sgr |181707.3-325446 |E/SD: | 14.8 | 16.5 | |p |35665.796 | | 0.52558 : | | |05869 GSC22| +722882 |V2882 Sgr |181709.4-333804 |RRAB | 14.9 | 16.7 | |p |35657.795 | | 0.45812 |16 | |05869 GSC22| +722883 |V2883 Sgr |181707.8-324634 |SRB | 17.8 | 18.6 | |p | | | | | |05869 GSC22| +722884 |V2884 Sgr |181707.5-321448 |SR | 15.2 | 16.3 | |p | | | | | |05869 GSC | +722885 |V2885 Sgr |181723.3-365007 |RR | 14.7 | 16.3 | |p |35660.800 | | | | |05869 GSC22| +722886 |V2886 Sgr |181707.6-313340 |M | 15.5 |< 18.2 | |p |36778. | | | | |05869 GSC22| +722887 |V2887 Sgr |181708.9-313126 |SR | 15.3 | 16.0 | |p | | | | | |05869 GSC22| +722888 |V2888 Sgr |181716.4-334852 |RRAB | 15.8 | 17.4 | |p |35661.832 | | 0.45828 |14 | |05869 GSC22| +722889 |V2889 Sgr |181726.0-361312 |RRAB | 15.1 | 16.4 | |p |35658.914 | | 0.41442 |26 | |05869 GSC22| +722890 |V2890 Sgr |181727.6-354403 |RRAB | 15.4 | 16.9 | |p |35687.760 | | 0.62443 |20 | |05869 GSC22| +722891 |V2891 Sgr |181714.3-312316 |L: | 15.7 | 16.7 | |p | | | | | |05869 GSC22| +722892 |V2892 Sgr |181715.8-314820 |M | 15.2 |< 18.8 | |p |36810. +| | 311.5 | | |05869 GSC22| +722893 |V2893 Sgr *|181728.5-353433 |SRA | 14.8 | 16.5 | |p |36792. | | 199. : | | |05869 GSC | +722894 |V2894 Sgr |181726.4-340617 |SRB: | 14.5 | 15.5 | |p | | | | | |05869 GSC22| +722895 |V2895 Sgr |181720.1-320116 |RRAB | 15.2 | 16.7 | |p |35633.938 | | 0.64412 |20 : | |05869 GSC22| +722896 |V2896 Sgr |181725.4-334742 |RRAB | 15.1 | 16.2 | |p |35663.023 | | 0.53405 |16 : | |05869 GSC22| +722897 |V2897 Sgr |181721.5-315839 |RRAB | 15.8 | 16.8 | |p |35664.813 | | 0.55786 |25 | |05869 GSC22| +722898 |V2898 Sgr |181727.6-330657 |E | 16.3 | 18.4 | |p |36809.683 | | | | |05869 GSC22| +722899 |V2899 Sgr |181734.0-353110 |RRAB | 15.3 | 16.3 | |p |35636.910 | | 0.60247 |19 | |05869 GSC22| +722900 |V2900 Sgr *|181733.3-325300 |RR | 15.0 | 16.5 | |p |35655.838 | | 0.33212 : | | |05869 GSC22| +722901 |V2901 Sgr |181735.7-334211 |E | 16.1 | 17.5 | |p |35657.076 | | 7.9252 | | |05869 GSC22| +722902 |V2902 Sgr |181729.0-311511 |SRA | 16.0 | 18.0 | |p | | | 176.4 | | |05869 GSC22| +722903 |V2903 Sgr |181732.6-322536 |RRAB | 16.2 | 17.8 | |p |35658.922 | | 0.53114 |13 | |05869 GSC22| +722904 |V2904 Sgr |181734.5-325801 |SRA | 15.7 |< 17.9 | |p |35666. | | 318. : | | |05869 GSC22| +722905 |V2905 Sgr *|181720.3-280950 |ZAND | 10.0 : | 14.6 | |p | | | | |pec(e+cont) |06293 08953| +722906 |V2906 Sgr |181733.9-323248 |SRA | 14.9 | 17.1 | |p |36761. | | 194.2 | | |05869 GSC22| +722907 |V2907 Sgr |181733.0-312300 |M | 14.6 |< 18.2 | |p |35961. :| | | | |05869 GSC22| +722908 |V2908 Sgr |181742.1-332546 |M | 14.9 | 18.7 | |p |36770. | | 197.2 | | |05869 GSC22| +722909 |V2909 Sgr |181750.1-355912 |M | 14.3 |< 18.6 | |p |35657. | | 237.0 | | |05869 GSC22| +722910 |V2910 Sgr |181750.9-360357 |RRAB | 15.7 | 17.3 | |p |35633.976 | | 0.40515 |17 | |05869 GSC22| +722911 |V2911 Sgr |181735.7-305440 |RRAB | 15.1 | 16.9 | |p |35657.826 | | 0.46990 |15 | |05869 GSC22| +722912 |V2912 Sgr |181746.7-335655 |RRAB | 15.5 | 16.1 | |p |35662.770 | | 0.36174 |17 | |05869 GSC22| +722913 |V2913 Sgr |181738.7-312720 |SRB | 15.4 | 16.7 | |p | | | | | |05869 GSC22| +722914 |V2914 Sgr |181745.7-333214 |RRAB | 15.1 | 17.1 | |p |35657.747 | | 0.44053 |16 | |05869 GSC22| +722915 |V2915 Sgr |181749.9-344116 |RR | 15.4 | 16.4 | |p |35660.799 | | | | |05869 GSC22| +722916 |V2916 Sgr |181740.8-311939 |M | 15.8 | 18.6 | |p |36702. -| | 310. : | | |05869 GSC22| +722917 |V2917 Sgr |181742.6-320246 |SR | 15.6 | 16.6 | |p | | | | | |05869 GSC22| +722918 |V2918 Sgr *|181744.0-320856 |SRA | 15.7 |< 17.9 | |p |36778. | | 308.5 : | | |05869 GSC22| +722919 |V2919 Sgr |181747.0-331138 |RRAB | 16.2 | 18.2 | |p |35687.781 | | 0.58425 |20 | |05869 2MASS| +722920 |V2920 Sgr |181749.9-335147 |RRAB | 15.6 | 16.9 | |p |35655.860 | | 0.68614 |16 | |05869 GSC22| +722921 |V2921 Sgr |181751.8-342724 |RRAB | 15.1 | 16.2 | |p |35657.813 | | 0.40786 |35 | |05869 GSC22| +722922 |V2922 Sgr |181744.3-310922 |SR | 16.9 |< 18.3 | |p |36750. | | | | |05869 2MASS| +722923 |V2923 Sgr |181750.2-325419 |SR | 15.0 | 16.5 | |p |36761. | | | | |05869 GSC22| +722924 |V2924 Sgr |181752.2-335220 |SR | 16.0 |< 17.7 | |p |35635. | | | | |05869 GSC22| +722925 |V2925 Sgr |181802.3-360444 |SR | 14.2 | 15.8 | |p |35632. -| | | | |05869 GSC | +722926 |V2926 Sgr |181757.3-340648 |SR | 15.1 | 16.1 | |p | | | | | |05869 GSC22| +722927 |V2927 Sgr |181748.1-310423 |M | 14.2 | 17.5 | |p |35662. | | | | |05869 GSC | +722928 |V2928 Sgr |181801.4-350843 |RR | 16.5 | 17.3 | |p |35656.838 | | | | |05869 GSC22| +722929 |V2929 Sgr |181803.9-355227 |SR | 14.9 | 16.3 | |p |36050. | | | | |05869 GSC22| +722930 |V2930 Sgr |181805.7-363811 |RRAB | 15.6 | 17.5 | |p |35658.960 | | 0.57475 |26 | |05869 GSC22| +722931 |V2931 Sgr |181755.4-325337 |RRAB | 15.7 | 16.7 | |p |35634.921 | | 0.49039 |14 | |05869 GSC22| +722932 |V2932 Sgr |181754.2-322518 |L | 15.7 | 16.7 | |p | | | | | |05869 GSC22| +722933 |V2933 Sgr |181807.8-361400 |RRAB | 15.0 | 16.2 | |p |35640.927 | | 0.45283 |16 | |05869 GSC22| +722934 |V2934 Sgr |181808.3-350544 |M | 15.6 |< 19.1 | |p |35961. | | | | |05869 GSC22| +722935 |V2935 Sgr |181756.1-305824 |SR | 16.7 |< 18.0 | |p |36673. -| | | | |05869 2MASS| +722936 |V2936 Sgr |181756.6-311949 |RRAB | 15.5 | 17.3 | |p |35662.870 | | 0.46118 |16 | |05869 GSC22| +722937 |V2937 Sgr *|181801.9-324209 |RRAB | 14.6 | 15.48 | |V |35655.732 | | 0.52895 |13 | |05869 GSC22| +722938 |V2938 Sgr |181811.6-350633 |RRAB | 15.6 | 17.0 | |p | | | 0.32121 : |16 : | |05869 GSC22| +722939 |V2939 Sgr |181802.6-315909 |L | 14.8 | 15.6 | |p | | | | | |05869 GSC22| +722940 |V2940 Sgr |181814.1-352257 |SR | 17.1 |< 19.2 | |p |35688. +| | | | |05869 GSC22| +722941 |V2941 Sgr |181817.1-361755 |RRAB | 15.4 | 17.0 | |p |35654.803 | | 0.48097 |15 | |05869 GSC22| +722942 |V2942 Sgr |181803.6-314557 |SRB | 15.8 | 17.1 | |p | | | | | |05869 GSC22| +722943 |V2943 Sgr |181816.7-353738 |RRAB | 15.8 | 17.5 | |p |35665.650 | | 0.52340 |34 | |05869 GSC22| +722944 |V2944 Sgr |181809.1-325917 |CEP | 14.4 | 15.5 | |p |35665.4 :| | 12.101 |35 | |05869 GSC | +722945 |V2945 Sgr |181809.8-324401 |RRAB | 16.3 | 17.6 | |p |35663.807 | | 0.43934 |24 : | |05869 GSC22| +722946 |V2946 Sgr |181807.6-315208 |RRAB | 15.0 | 16.0 | |p |35664.764 | | 0.54778 |26 | |05869 GSC22| +722947 |V2947 Sgr *|181806.4-311411 |SRB: | 15.7 | 17.3 | |p | | | | | |05869 GSC22| +722948 |V2948 Sgr |181809.8-321722 |RRAB | 16.2 | 17.5 | |p |35633.944 | | 0.64302 |17 | |05869 GSC22| +722949 |V2949 Sgr |181817.9-343817 |L | 14.4 | 15.7 | |p | | | | | |05869 GSC | +722950 |V2950 Sgr |181824.8-363713 |RRAB | 14.9 | 16.4 | |p |35664.860 | | 0.61935 |18 | |05869 GSC22| +722951 |V2951 Sgr |181821.9-353227 |L | 15.4 | 16.3 | |p | | | | | |05869 GSC22| +722952 |V2952 Sgr |181813.2-322225 |L | 15.2 | 16.0 | |p | | | | | |05869 GSC22| +722953 |V2953 Sgr |181823.1-353343 |RRAB | 15.4 | 17.3 | |p |35689.764 | | 0.47444 |20 | |05869 GSC22| +722954 |V2954 Sgr |181818.7-333942 |RRAB | 16.0 | 17.3 | |p |35662.792 | | 0.40067 |20 | |05869 GSC22| +722955 |V2955 Sgr |181818.6-332654 |RR | 15.9 | 16.7 | |p |35656.828 | | | | |05869 GSC22| +722956 |V2956 Sgr |181812.6-305435 |RRAB | 16.5 | 17.7 | |p |35657.722 | | 0.53206 |18 | |05869 GSC22| +722957 |V2957 Sgr |181817.8-323538 |RRAB | 15.1 | 17.0 | |p |35661.828 | | 0.60317 |21 : | |05869 2MASS| +722958 |V2958 Sgr |181820.1-325133 |RRAB | 15.3 | 16.8 | |p |35662.840 | | 0.45245 |13 | |05869 GSC22| +722959 |V2959 Sgr *|181828.9-361032 |RRAB | 15.5 | 16.4 | |p |35661.920 | | 0.59409 : |20 | |05869 GSC22| +722960 |V2960 Sgr |181815.7-312707 |L | 15.5 | 16.3 | |p | | | | | |05869 GSC22| +722961 |V2961 Sgr |181819.2-321458 |RRAB | 15.9 | 17.6 | |p |35664.775 | | 0.44580 |15 | |05869 GSC22| +722962 |V2962 Sgr *|181823.6-335306 |M | 14.0 | 17.3 | |p |36720. | | 173.8 : | | |05869 GSC22| +722963 |V2963 Sgr |181825.0-341208 |RR | 16.4 | 17.5 | |p |35664.732 | | 0.50779 | | |05869 GSC22| +722964 |V2964 Sgr |181829.9-335612 |E: | 15.8 | 16.4 | |p | | | | | |05869 GSC22| +722965 |V2965 Sgr |181827.1-321041 |RRAB | 16.1 | 17.4 | |p |35657.882 | | 0.55830 |13 | |05869 GSC22| +722966 |V2966 Sgr |181827.0-314700 |SRB | 16.9 | 17.7 | |p | | | | | |05869 GSC22| +722967 |V2967 Sgr *|181838.3-351352 |RRAB | 15.5 | 16.7 | |p |35658.766 | | 0.40652 : |20 | |05869 GSC22| +722968 |V2968 Sgr |181830.4-322410 |SR | 14.8 | 15.5 | |p | | | | | |05869 GSC | +722969 |V2969 Sgr |181847.1-365157 |M | 15.8 |< 18.6 | |p |36673. | | 290.5 | | |05869 GSC22| +722970 |V2970 Sgr |181830.9-310502 |SRB | 15.3 | 16.8 | |p | | | | | |05869 GSC22| +722971 |V2971 Sgr |181834.7-312145 |RRAB | 15.6 | 17.3 | |p |35632.899 | | 0.51091 |14 | |05869 GSC22| +722972 |V2972 Sgr |181843.4-335442 |SRB | 15.4 | 16.8 | |p | | | | | |05869 GSC22| +722973 |V2973 Sgr |181902.4-305954 |M | 14.3 |< 18.5 | |p |35961. | | 227.0 |20 | |05869 GSC22| +722974 |V2974 Sgr |181839.2-321140 |L | 16.1 | 16.7 | |p | | | | | |05869 GSC22| +722975 |V2975 Sgr |181851.3-353947 |SR | 14.0 | 15.0 | |p | | | | | |05869 GSC | +722976 |V2976 Sgr |181842.1-322219 |M | 14.8 |< 18.4 | |p |35657. | | 318.0 | | |05869 GSC22| +722977 |V2977 Sgr |181845.4-323602 |I: | 16.3 | 18.9 | |p | | | | | |05869 GSC22| +722978 |V2978 Sgr |181852.5-344107 |RRAB | 15.0 | 16.4 | |p |35640.928 | | 0.57668 |17 | |05869 GSC22| +722979 |V2979 Sgr |181850.8-332802 |RRAB | 15.5 | 16.4 | |p |35654.783 | | 0.32742 |18 | |05869 GSC22| +722980 |V2980 Sgr |181852.1-334102 |M | 16.3 | 18.9 | |p |35662. | | 232.0 | | |05869 2MASS| +722981 |V2981 Sgr |181854.1-341348 |DSCT | 15.1 | 15.6 | |p |35661.875 | | 0.17192 |52 : | |05869 GSC22| +722982 |V2982 Sgr |181902.4-364146 |SRA | 17.2 |< 19.2 | |p | | | 120. : | | |05869 GSC22| +722983 |V2983 Sgr |181851.3-330615 |SRB | 14.5 | 15.2 | |p | | | | | |05869 GSC22| +722984 |V2984 Sgr |181854.3-335708 |RRAB | 14.7 | 16.7 | |p |35660.819 | | 0.44599 |17 | |05869 | +722985 |V2985 Sgr |181903.5-362206 |SRA | 15.8 | 17.4 | |p |35662. | | 175. : | | |05869 GSC22| +722986 |V2986 Sgr |181905.2-364710 |RRC | 16.4 | 17.2 | |p |35634.924 | | 0.32582 |42 | |05869 GSC22| +722987 |V2987 Sgr |181851.3-314108 |RRAB | 15.9 | 17.0 | |p |35655.893 | | 0.44734 |29 | |05869 GSC22| +722988 |V2988 Sgr | | | | | | | | | | | | |=V0655 Sgr +722989 |V2989 Sgr |181854.6-321615 |M | 16.4 |< 18.8 | |p |35961. :| | 328. : | | |05869 GSC22| +722990 |V2990 Sgr |181857.4-330034 |RRAB | 15.2 | 16.0 | |p |35668.839 | | 0.52847 |15 | |05869 GSC22| +722991 |V2991 Sgr |181908.3-352219 |RRAB | 16.0 | 17.4 | |p |35660.817 | | 0.44397 |24 | |05869 GSC22| +722992 |V2992 Sgr |181902.1-330847 |M | 13.8 | 17.2 | |p |35632. | | 153.2 | | |05869 GSC22| +722993 |V2993 Sgr |181858.5-305137 |SRA | 13.6 | 15.4 | |p |36792. | | 150.2 | | |05869 09423| +722994 |V2994 Sgr |181906.6-332107 |RRC | 16.4 | 16.9 | |p |35656.872 | | 0.28781 |37 | |05869 GSC22| +722995 |V2995 Sgr |181908.9-335354 |RRAB | 15.7 | 16.8 | |p |35666.798 | | 0.47923 |19 | |05869 GSC22| +722996 |V2996 Sgr *|181918.1-365404 |SRB: | 15.1 | 17.0 | |p | | | | | |05869 GSC22| +722997 |V2997 Sgr |181902.1-313039 |RRAB | 15.1 | 16.0 | |p |35664.844 | | 0.37268 |19 | |05869 GSC22| +722998 |V2998 Sgr |181901.8-312507 |RRAB | 15.6 | 16.9 | |p |35657.823 | | 0.31397 |22 | |05869 GSC22| +722999 |V2999 Sgr |181914.1-351256 |E | 16.3 | 18.4 | |p |35661.830 | | 5.15039 | | |05869 GSC22| +723000 |V3000 Sgr |181916.6-354855 |RRAB | 15.5 | 17.1 | |p |35654.789 | | 0.55359 |17 | |05869 GSC22| +723001 |V3001 Sgr |181917.8-361647 |RRAB | 14.2 | 15.4 | |p |35662.827 | | 0.60753 |25 | |05869 GSC22| +723002 |V3002 Sgr |181903.3-305956 |RRAB | 15.4 | 17.0 | |p |35662.810 | | 0.44238 |12 | |05869 GSC22| +723003 |V3003 Sgr |181904.0-312818 |RRAB | 15.4 | 17.5 | |p |35657.803 | | 0.43818 |27 | |05869 GSC22| +723004 |V3004 Sgr *|181919.5-363429 |RRAB | 15.4 | 17.0 | |p |35656.831 | | 0.49702 |15 | |05869 GSC22| +723005 |V3005 Sgr *|181910.0-331207 |SRB: | 15.2 | 16.5 | |p | | | | | |05869 GSC22| +723006 |V3006 Sgr |181910.6-332320 |L: | 15.4 | 16.7 | |p | | | | | |05869 GSC22| +723007 |V3007 Sgr |181906.8-314206 |RRAB | 15.8 | 16.9 | |p |35660.752 | | 0.49097 | | |05869 GSC22| +723008 |V3008 Sgr |181906.8-314024 |SR | 15.0 | 15.9 | |p |35635. | | | | |05869 GSC22| +723009 |V3009 Sgr |181910.0-323810 |L | 14.6 | 15.1 | |p | | | | | |05869 GSC22| +723010 |V3010 Sgr |181910.9-330422 |RRAB | 15.1 | 16.2 | |p |35636.915 | | 0.51057 |17 | |05869 2MASS| +723011 |V3011 Sgr |181913.5-332351 |RRAB | 14.8 | 16.2 | |p |35662.772 | | 0.47339 |16 | |05869 GSC22| +723012 |V3012 Sgr |181916.0-341020 |RRAB | 15.8 | 17.3 | |p |35657.821 | | 0.44256 |15 : | |05869 GSC22| +723013 |V3013 Sgr |181912.6-320743 |RRAB | 16.1 | 17.1 | |p |35665.837 | | 0.46838 |18 | |05869 GSC22| +723014 |V3014 Sgr |181925.0-360704 |L | 13.9 | 14.5 | |p | | | | | |05869 GSC22| +723015 |V3015 Sgr |181917.0-331350 |RRAB | 15.5 | 17.1 | |p |35663.835 | | 0.46798 |16 | |05869 GSC22| +723016 |V3016 Sgr *|181923.7-352208 |RRAB | 15.7 | 17.3 | |p |35665.815 | | 0.40710 |17 | |05869 GSC22| +723017 |V3017 Sgr |181912.3-311935 |SRA | 14.6 | 16.7 | |p |36792. | | 237. : | | |05869 GSC22| +723018 |V3018 Sgr |181926.5-343134 |M | 14.6 |< 20.6 | |p |36810. | | 262. : | |Me |05869 GSC22| +723019 |V3019 Sgr |181918.6-312318 |M | 15.8 | 19.6 | |p |36740. | | | | |05869 GSC22| +723020 |V3020 Sgr |181934.7-355159 |RRC | 15.3 | 16.0 | |p |35658.888 | | 0.27000 |30 : | |05869 GSC22| +723021 |V3021 Sgr |181935.0-352254 |RRAB | 15.7 | 17.0 | |p |35664.781 | | 0.69394 |18 | |05869 GSC22| +723022 |V3022 Sgr |181939.8-361440 |SRB | 15.0 | 15.3 | |p | | | | | |05869 2MASS| +723023 |V3023 Sgr |181933.3-330804 |RR | 16.4 | 17.9 | |p |35655.765 | | | | |05869 2MASS| +723024 |V3024 Sgr |181928.8-312258 |SR | 16.7 |< 18.1 | |p |36729. | | | | |05869 GSC22| +723025 |V3025 Sgr |181942.9-354638 |SR | 16.2 |< 18.5 | |p |35688. +| | | | |05869 GSC22| +723026 |V3026 Sgr |181930.8-313654 |RRAB | 15.2 | 17.1 | |p |35666.857 | | 0.47464 |12 | |05869 2MASS| +723027 |V3027 Sgr |181931.9-320156 |L | 15.2 | 15.6 | |p | | | | | |05869 2MASS| +723028 |V3028 Sgr |181935.9-331556 |RRAB | 14.9 | 16.5 | |p |35664.792 | | 0.51760 |13 | |05869 GSC22| +723029 |V3029 Sgr |181931.9-312156 |SR | 16.5 | 17.5 | |p |36729. | | | | |05869 2MASS| +723030 |V3030 Sgr |181935.4-322740 |M | 14.4 | 18.6 | |p |36702. | | | | |05869 2MASS| +723031 |V3031 Sgr |181935.9-321132 |RRAB | 15.8 | 17.3 | |p |35665.853 | | 0.57018 |15 | |05869 2MASS| +723032 |V3032 Sgr *|181943.6-344531 |M | 14.2 |< 16.8 | |p |36720. | | 134. : | | |05869 2MASS| +723033 |V3033 Sgr *|181231.8-323917 |M | 14.6 |< 17.8 | |p |35961. | | 339. : | | |05869 2MASS| +723034 |V3034 Sgr *|181939.8-325850 |M | 14.2 | 17.6 | |p |36710. | | 181.4 : | | |05869 2MASS| +723035 |V3035 Sgr |181941.0-333435 |SR | 16.7 |< 18.8 | |p |35632. -| | | | |05869 2MASS| +723036 |V3036 Sgr |181941.7-335121 |RRAB | 15.8 | 16.6 | |p |35662.839 | | 0.54820 |22 : | |05869 2MASS| +723037 |V3037 Sgr |181939.4-323819 |RRAB | 14.9 | 15.9 | |p |35661.848 | | 0.46606 |30 : | |05869 GSC22| +723038 |V3038 Sgr *|181945.2-332706 |M | 14.7 |< 19.3 | |p |36729. | | 201.5 : | | |05869 2MASS| +723039 |V3039 Sgr |181948.5-344444 |CEP: | 16.0 | 17.1 | |p | | | | | |05869 2MASS| +723040 |V3040 Sgr |181942.0-312454 |RRAB | 15.9 | 16.4 | |p |35634.925 | | 0.47489 |15 | |05869 GSC22| +723041 |V3041 Sgr |182000.0-365340 |RRAB | 15.6 | 17.1 | |p |35658.927 | | 0.64691 |16 | |05869 2MASS| +723042 |V3042 Sgr |181957.2-355839 |RRAB | 15.9 | 17.6 | |p |35655.827 | | 0.37356 |35 : | |05869 2MASS| +723043 |V3043 Sgr |182000.8-361751 |SR | 15.7 | 16.7 | |p |36778. | | | | |05869 2MASS| +723044 |V3044 Sgr |181948.1-321341 |M | 15.2 | 18.6 | |p |35961. | | 215.5 | | |05869 2MASS| +723045 |V3045 Sgr |181948.7-320509 |M | 14.6 | 18.8 | |p |36706. | | 185.2 | | |05869 2MASS| +723046 |V3046 Sgr |181952.8-330532 |E | 16.6 | 17.6 | |p |35689.752 | | | | |05869 2MASS| +723047 |V3047 Sgr |182004.7-362322 |RRAB | 16.5 | 17.2 | |p |35660.846 | | 0.60255 |18 | |05869 2MASS| +723048 |V3048 Sgr |181959.4-343541 |SR | 15.1 | 16.6 | |p |36810. | | | | |05869 2MASS| +723049 |V3049 Sgr |182000.0-335916 |RRAB | 15.6 | 16.4 | |p |35658.857 | | 0.70539 |15 | |05869 2MASS| +723050 |V3050 Sgr |182010.3-363310 |RRAB | 15.6 | 16.6 | |p |35658.826 | | 0.35833 |17 : | |05869 2MASS| +723051 |V3051 Sgr |182005.2-350333 |SRB | 16.9 | 17.6 | |p | | | | | |05869 2MASS| +723052 |V3052 Sgr *|182000.3-331504 |SRB: | 16.4 | 17.0 | |p | | | | | |05869 GSC22| +723053 |V3053 Sgr |182007.7-344558 |RRAB | 15.3 | 16.8 | |p |35634.870 | | 0.48969 |15 | |05869 2MASS| +723054 |V3054 Sgr |182001.6-314559 |RRAB | 15.7 | 17.6 | |p |35687.839 | | 0.47485 |14 | |05869 2MASS| +723055 |V3055 Sgr |182001.2-311749 |RRAB | 15.0 | 16.4 | |p |35638.821 | | 0.49439 |29 | |05869 2MASS| +723056 |V3056 Sgr |182008.9-335043 |M | 15.0 |< 18.7 | |p |36673. -| | 267.0 | | |05869 2MASS| +723057 |V3057 Sgr |182003.8-315826 |M | 14.1 | 18.7 | |p |35961. | | 232.0 | | |05869 2MASS| +723058 |V3058 Sgr |182016.6-353446 |SR | 17.0 |< 19.3 | |p | | | | | |05869 2MASS| +723059 |V3059 Sgr |182017.3-353342 |SRB | 15.1 | 16.7 | |p | | | | | |05869 2MASS| +723060 |V3060 Sgr |182017.5-352722 |RRAB | 14.9 | 15.8 | |p |35662.848 | | 0.59244 |13 | |05869 2MASS| +723061 |V3061 Sgr |182006.0-312107 |SRB | 16.0 | 16.8 | |p | | | | | |05869 2MASS| +723062 |V3062 Sgr *|182006.6-311554 |RRC: | 15.7 | 16.2 | |p |35664.811 | | 0.29805 |50 | |05869 USNO | +723063 |V3063 Sgr |182024.0-364242 |SRA | 16.5 |< 18.5 | |p |35632. -| | 332.0 | | |05869 2MASS| +723064 |V3064 Sgr |182011.7-322258 |SRB | 15.8 | 17.1 | |p | | | | | |05869 2MASS| +723065 |V3065 Sgr *|182028.5-365019 |M | 15.0 | 18.0 | |p |36730. | | 119.8 : | | |05869 2MASS| +723066 |V3066 Sgr |182009.9-305242 |RRAB | 15.4 | 16.8 | |p |35665.788 | | 0.53363 |15 | |05869 2MASS| +723067 |V3067 Sgr |182010.4-310255 |M | 16.1 |< 18.5 | |p |35688. +| | 302. : | | |05869 2MASS| +723068 |V3068 Sgr |182017.5-331814 |SR | 15.3 | 16.4 | |p |35632. | | | | |05869 2MASS| +723069 |V3069 Sgr |182031.1-364702 |RRC | 16.4 | 17.3 | |p |35636.900 | | 0.38407 |32 : | |05869 2MASS| +723070 |V3070 Sgr |182018.1-322715 |SR | 13.6 | 14.4 | |p |35668. | | | | |05869 GSC | +723071 |V3071 Sgr *|182019.8-320703 |M | 15.9 | 18.7 | |p |35688. | | 232. : | | |05869 2MASS| +723072 |V3072 Sgr *|182021.4-322237 |M | 15.6 | 18.7 | |p |36673. | | 166.0 : | | |05869 2MASS| +723073 |V3073 Sgr |182021.1-310550 |M | 14.8 |< 18.3 | |p |36752. | | 250. : | | |05869 2MASS| +723074 |V3074 Sgr |182022.2-314310 |SR | 14.8 | 16.0 | |p |36725. | | | | |05869 2MASS| +723075 |V3075 Sgr |182026.2-325357 |L | 14.2 | 15.3 | |p | | | | | |05869 GSC | +723076 |V3076 Sgr |182022.5-312111 |RRAB | 16.2 | 17.0 | |p |35656.882 | | 0.60440 |19 | |05869 2MASS| +723077 |V3077 Sgr |182039.5-344143 |SRB | 14.4 | 15.2 | |p | | | | | |05869 GSC | +723078 |V3078 Sgr |182038.8-341526 |RRAB | 15.4 | 16.6 | |p |35662.794 | | 0.37670 |29 | |05869 2MASS| +723079 |V3079 Sgr |182039.9-342803 |L | 14.5 | 16.3 | |p | | | | | |05869 2MASS| +723080 |V3080 Sgr |182039.0-332711 |M | 13.8 | 17.1 | |p |36720. | | 317.0 | | |05869 GSC | +723081 |V3081 Sgr |182036.2-344622 |M | 16.6 | 19.4 | |p |36780. | | | | |05869 2MASS| +723082 |V3082 Sgr |182044.6-352919 |SRB | 16.2 | 17.4 | |p | | | | | |05869 2MASS| +723083 |V3083 Sgr |182045.5-350920 |RRAB | 15.0 | 16.7 | |p |35661.893 | | 0.47545 |19 | |05869 2MASS| +723084 |V3084 Sgr |182036.8-315217 |SR | 16.0 | 17.0 | |p |36702. | | | | |05869 2MASS| +723085 |V3085 Sgr |182040.1-325904 |RRC | 15.1 | 15.8 | |p |35662.842 | | 0.26208 |35 | |05869 2MASS| +723086 |V3086 Sgr |182049.6-355510 |L | 16.2 | 17.3 | |p | | | | | |05869 2MASS| +723087 |V3087 Sgr |182049.1-351135 |E | 16.1 | 16.6 | |p |35632.900 | | | | |05869 2MASS| +723088 |V3088 Sgr *|182041.2-315528 |M | 14.5 | 18.1 | |p |36702. | | 154.0 : | | |05869 2MASS| +723089 |V3089 Sgr |182040.9-315818 |RRAB | 16.2 | 17.5 | |p |35636.916 | | 0.50900 |13 | |05869 2MASS| +723090 |V3090 Sgr |182053.2-355136 |RRAB | 14.7 | 16.4 | |p |35665.834 | | 0.53229 |12 | |05869 2MASS| +723091 |V3091 Sgr |182047.4-323351 |SR | 15.0 | 16.5 | |p | | | | | |05869 2MASS| +723092 |V3092 Sgr |182100.5-360524 |RRAB | 16.7 | 18.5 | |p |35657.872 | | 0.56196 |15 | |05869 2MASS| +723093 |V3093 Sgr |182055.8-335540 |RRAB | 15.1 | 16.4 | |p |35667.876 | | 0.47688 |11 | |05869 2MASS| +723094 |V3094 Sgr |182103.3-353536 |SRA | 15.1 | 16.8 | |p |35635. | | 276.0 | | |05869 2MASS| +723095 |V3095 Sgr |182059.7-334555 |RR | 15.3 | 16.9 | |p | | | | | |05869 2MASS| +723096 |V3096 Sgr |182109.8-364206 |RRAB | 14.3 | 16.5 | |p |35666.846 | | 0.55277 |15 | |05869 2MASS| +723097 |V3097 Sgr |182057.6-312016 |RRAB | 16.4 | 17.3 | |p |35636.002 | | 0.57308 |23 | |05869 2MASS| +723098 |V3098 Sgr |182111.0-350841 |SRB: | 15.7 | 16.7 | |p | | | | | |05869 2MASS| +723099 |V3099 Sgr |182108.7-340421 |RRAB | 15.6 | 16.1 | |p |35663.885 | | 0.44468 |20 | |05869 2MASS| +723100 |V3100 Sgr |182100.5-305724 |SR | 16.2 | 17.7 | |p |36761. | | | | |05869 2MASS| +723101 |V3101 Sgr |182105.4-324125 |SRA | 13.5 | 15.1 | |p |35635. :| | 79. : | | |05869 GSC | +723102 |V3102 Sgr |182112.8-345748 |RRAB | 15.2 | 16.7 | |p |35660.854 | | 0.54103 |13 | |05869 2MASS| +723103 |V3103 Sgr |182117.7-360102 |SRA | 14.7 | 17.0 | |p |35632. | | 265.0 | | |05869 2MASS| +723104 |V3104 Sgr |182107.9-321638 |L | 15.8 | 16.9 | |p | | | | | |05869 2MASS| +723105 |V3105 Sgr *|182121.1-355848 |RRAB | 15.9 | 18.0 | |p |35664.835 | | 0.58071 |12 | |05869 2MASS| +723106 |V3106 Sgr *|182114.4-334530 |M | 14.6 | 18.2 | |p |36050. | | 209.5 : | | |05869 2MASS| +723107 |V3107 Sgr |182111.3-320556 |M | 16.1 |< 18.4 | |p |36673. | | 318.0 | | |05869 2MASS| +723108 |V3108 Sgr |182120.8-350940 |M | 14.0 | 18.8 | |p |36770. | | | | |05869 2MASS| +723109 |V3109 Sgr |182111.4-314347 |RRAB | 16.3 | 17.4 | |p |35662.803 | | 0.56470 |16 | |05869 2MASS| +723110 |V3110 Sgr |182111.1-311717 |RRAB | 14.8 | 16.4 | |p |35636.962 | | 0.58149 |15 | |05869 2MASS| +723111 |V3111 Sgr *|182120.2-340110 |M | 14.3 | 18.8 | |p |36810. | | 156.8 : | | |05869 GSC | +723112 |V3112 Sgr |182129.4-364226 |RRAB | 15.8 | 16.6 | |p |35687.744 | | 0.51006 |20 : | |05869 2MASS| +723113 |V3113 Sgr |182122.0-340748 |RRAB | 15.8 | 16.7 | |p |35658.802 | | 0.46525 |18 | |05869 2MASS| +723114 |V3114 Sgr |182122.4-341725 |L | 15.1 | 16.5 | |p | | | | | |05869 2MASS| +723115 |V3115 Sgr |182113.5-311929 |RRAB | 17.1 | 17.8 | |p |35658.912 | | 0.54030 |25 | |05869 2MASS| +723116 |V3116 Sgr |182121.1-321758 |RR: | 17.1 |< 17.8 | |p | | | | | |05869 2MASS| +723117 |V3117 Sgr |182132.5-360735 |M | 13.9 |< 19.4 | |p |36740. | | 302. : | | |05869 2MASS| +723118 |V3118 Sgr |182120.5-315049 |SR | 16.7 |< 18.2 | |p |36673. :| | | | |05869 2MASS| +723119 |V3119 Sgr |182127.9-340233 |L | 15.5 | 15.9 | |p | | | | | |05869 2MASS| +723120 |V3120 Sgr |182121.3-315023 |SRA | 16.5 |< 18.2 | |p |36673. | | 177.2 | | |05869 2MASS| +723121 |V3121 Sgr |182131.6-345325 |RRAB | 15.7 | 17.0 | |p |35662.826 | | 0.70136 |17 | |05869 2MASS| +723122 |V3122 Sgr |182137.1-363512 |M | 15.6 |< 19.2 | |p |36778. +| | | | |05869 2MASS| +723123 |V3123 Sgr |182126.8-324121 |SRA | 15.7 | 17.7 | |p |36810. | | 144.4 | | |05869 2MASS| +723124 |V3124 Sgr |182139.1-355309 |RRAB | 16.1 | 17.2 | |p |35660.793 | | 0.51904 |10 | |05869 2MASS| +723125 |V3125 Sgr |182129.3-323731 |L | 15.0 | 15.7 | |p | | | | | |05869 2MASS| +723126 |V3126 Sgr |182130.9-330625 |SRB | 16.4 | 17.2 | |p | | | | | |05869 2MASS| +723127 |V3127 Sgr *|182146.2-363703 |UV: | 15.2 | 16.1 | |p | | | | | |05869 2MASS| +723128 |V3128 Sgr *|182139.8-342228 |SR: | 15.6 |< 16.8 | |p |36752. | | | | |05869 | +723129 |V3129 Sgr |182142.3-350308 |SR | 14.8 | 16.3 | |p |36770. | | | | |05869 2MASS| +723130 |V3130 Sgr |182143.6-345758 |E | 15.4 | 16.0 | |p |35662.835 | | 0.49119 | | |05869 2MASS| +723131 |V3131 Sgr |182145.2-350525 |RRAB | 15.8 | 17.0 | |p |35660.763 | | 0.61602 |16 | |05869 GSC22| +723132 |V3132 Sgr |182142.2-334005 |RR | 15.5 | 16.8 | |p |35657.794 | | | | |05869 2MASS| +723133 |V3133 Sgr |182151.4-360901 |RRAB | 16.1 | 16.9 | |p |35660.895 | | 0.62648 |15 | |05869 2MASS| +723134 |V3134 Sgr |182147.6-343431 |RRAB | 15.2 | 16.3 | |p |35654.831 | | 0.56037 |14 | |05869 2MASS| +723135 |V3135 Sgr |182148.6-345533 |E/SD | 16.2 | 18.1 | |p |35664.802 | | 1.38374 | | |05869 2MASS| +723136 |V3136 Sgr |182145.6-325041 |M | 15.5 |< 18.4 | |p |36778. | | 240.0 | | |05869 2MASS| +723137 |V3137 Sgr |182150.5-342954 |L | 16.1 | 17.1 | |p | | | | | |05869 2MASS| +723138 |V3138 Sgr |182158.7-363950 |RRAB | 15.5 | 17.4 | |p |35634.893 | | 0.63928 |17 | |05869 2MASS| +723139 |V3139 Sgr |182142.1-310730 |RRAB | 15.9 | 17.6 | |p |35664.883 | | 0.45249 |14 | |05869 2MASS| +723140 |V3140 Sgr |182151.5-340554 |RRAB | 15.1 | 16.3 | |p |35654.817 | | 0.79765 |17 | |05869 2MASS| +723141 |V3141 Sgr |182153.8-342411 |RRAB | 15.1 | 16.1 | |p |35660.805 | | 0.56701 |18 | |05869 2MASS| +723142 |V3142 Sgr |182156.8-352118 |SRA | 16.1 | 17.9 | |p | | | 200. : | | |05869 2MASS| +723143 |V3143 Sgr |182156.8-332127 |RRAB | 15.6 | 16.7 | |p |35665.904 | | 0.41656 |13 | |05869 2MASS| +723144 |V3144 Sgr |182201.3-351346 |SRB | 15.5 | 16.5 | |p | | | | | |05869 2MASS| +723145 |V3145 Sgr |182151.7-305951 |RR | 15.9 | 16.9 | |p |35664.849 | | | | |05869 2MASS| +723146 |V3146 Sgr |182158.9-333602 |RRAB | 15.8 | 16.7 | |p |35666.748 | | 0.52311 |18 | |05869 2MASS| +723147 |V3147 Sgr |182154.4-313507 |E | 13.0 | 13.7 | |p |36701.964 | | | | |05869 | +723148 |V3148 Sgr |182203.7-344728 |SRA | 14.9 | 16.8 | |p |36752. | | 244. : | | |05869 2MASS| +723149 |V3149 Sgr |182205.2-342708 |RRAB | 15.8 | 17.6 | |p |35654.722 | | 0.52947 |15 | |05869 2MASS| +723150 |V3150 Sgr |182200.5-322139 |RRAB | 16.0 | 17.4 | |p |35667.870 | | 0.55239 |18 | |05869 GSC22| +723151 |V3151 Sgr |182200.3-320435 |RRAB | 16.5 | 18.2 | |p |35657.824 | | 0.56753 |20 | |05869 2MASS| +723152 |V3152 Sgr |182209.1-340441 |RRAB | 15.6 | 16.7 | |p |35660.837 | | 0.54066 |12 | |05869 2MASS| +723153 |V3153 Sgr |182209.8-321623 |RRAB | 15.4 | 17.1 | |p |35662.816 | | 0.56649 |22 | |05869 2MASS| +723154 |V3154 Sgr |182209.6-314823 |M | 15.3 | 17.9 | |p |36792. | | 199.6 | | |05869 2MASS| +723155 |V3155 Sgr |182212.2-315132 |RR: | 15.8 | 16.8 | |p |35636.925 | | | | |05869 2MASS| +723156 |V3156 Sgr |182225.8-353709 |RR | 15.5 | 16.9 | |p |35660.810 | | 0.37342 |23 : | |05869 2MASS| +723157 |V3157 Sgr |182219.5-330957 |RR | 16.1 | 17.4 | |p |35658.818 | | | | |05869 2MASS| +723158 |V3158 Sgr |182220.8-333144 |M | 15.1 | 18.4 | |p |36050. | | | | |05869 2MASS| +723159 |V3159 Sgr |182218.6-323136 |RRAB | 15.7 | 16.9 | |p |35657.804 | | 0.80205 |13 | |05869 2MASS| +723160 |V3160 Sgr |182229.6-360335 |E | 16.4 | 16.8 | |p |35636.898 | | 0.75662 | | |05869 2MASS| +723161 |V3161 Sgr |182216.5-312402 |SRA | 16.4 |< 18.2 | |p |36740. | | 256. : | | |05869 2MASS| +723162 |V3162 Sgr |182219.9-321937 |RRAB | 15.1 | 16.6 | |p |35660.789 | | 0.43781 |25 | |05869 2MASS| +723163 |V3163 Sgr |182222.3-324202 |SR | 17.1 | 18.6 | |p |36792. | | | | |05869 2MASS| +723164 |V3164 Sgr |182222.4-320249 |RRAB | 15.4 | 16.8 | |p |35666.791 | | 0.52403 |18 | |05869 2MASS| +723165 |V3165 Sgr |182237.0-362122 |RRAB | 15.3 | 16.7 | |p |35689.810 | | 0.51779 |20 | |05869 2MASS| +723166 |V3166 Sgr |182231.3-332728 |RR | 14.6 | 16.1 | |p |35656.800 | | | | |05869 2MASS| +723167 |V3167 Sgr |182243.1-361314 |E: | 15.7 | 16.9 | |p | | | | | |05869 2MASS| +723168 |V3168 Sgr |182245.2-360332 |RRAB | 15.4 | 16.3 | |p |35657.837 | | 0.32635 |20 | |05869 2MASS| +723169 |V3169 Sgr |182231.1-312238 |RRAB | 15.3 | 16.9 | |p |35663.723 | | 0.56018 |16 | |05869 2MASS| +723170 |V3170 Sgr *|182238.5-333106 |RRAB | 14.7 | 16.4 | |p |35664.739 | | 0.52002 |18 | |05869 2MASS| +723171 |V3171 Sgr |182244.2-341332 |E/SD | 16.0 | 19.2 : | |p |35655.820 | | 4.99151 | | |05869 2MASS| +723172 |V3172 Sgr |182248.3-350358 |RR | 14.4 | 15.5 | |p |35665.757 | | 0.34214 : |20 : | |05869 2MASS| +723173 |V3173 Sgr |182239.1-311226 |RRAB | 14.6 | 16.7 | |p |35638.890 | | 0.46317 |15 | |05869 2MASS| +723174 |V3174 Sgr |182243.1-315353 |RRAB | 16.0 | 16.9 | |p |35662.877 | | 0.51895 |10 | |05869 2MASS| +723175 |V3175 Sgr *|182246.2-331039 |M | 14.2 | 17.9 | |p |36729. | | 154.2 : | | |05869 2MASS| +723176 |V3176 Sgr *|182251.4-324143 |M | 14.3 | 17.5 | |p |36725. | | 250.0 : | | |05869 2MASS| +723177 |V3177 Sgr |182252.9-322326 |M | 15.1 |< 18.8 | |p |36778. | | 153.2 | | |05869 2MASS| +723178 |V3178 Sgr |182251.8-313412 |RRAB | 15.0 | 16.1 | |p |35658.866 | | 0.53695 |15 | |05869 2MASS| +723179 |V3179 Sgr *|182257.9-324031 |M | 15.6 | 18.5 | |p |35688. | | 234. : | | |05869 2MASS| +723180 |V3180 Sgr |182302.2-335724 |RRAB | 15.8 | 17.2 | |p |35667.893 | | 0.45463 : |17 | |05869 2MASS| +723181 |V3181 Sgr |182253.2-304741 |SR | 15.5 | 16.4 | |p | | | | | |05869 2MASS| +723182 |V3182 Sgr |182303.9-343008 |RRAB | 15.7 | 17.1 | |p |35664.836 | | 0.40316 |28 | |05869 2MASS| +723183 |V3183 Sgr |182305.3-343303 |RRAB | 15.8 | 16.8 | |p |35640.906 | | 0.66915 |18 | |05869 2MASS| +723184 |V3184 Sgr |182302.5-321640 |RR | 15.6 | 17.2 | |p |35658.900 | | | | |05869 2MASS| +723185 |V3185 Sgr |182307.8-335022 |RRC | 15.5 | 16.4 | |p |35657.836 | | 0.28858 |40 | |05869 2MASS| +723186 |V3186 Sgr *|182308.6-341138 |RRAB | 14.5 | 15.6 | |p |35662.727 | | 0.40067 |25 : | |05869 2MASS| +723187 |V3187 Sgr |182302.1-314708 |RRAB | 15.0 | 16.6 | |p |35661.805 | | 0.43891 |15 | |05869 2MASS| +723188 |V3188 Sgr |182303.9-320110 |RRAB | 16.1 | 17.1 | |p |35661.858 | | 0.33020 |19 | |05869 2MASS| +723189 |V3189 Sgr |182306.5-325006 |SRB: | 17.2 | 17.7 | |p | | | | | |05869 2MASS| +723190 |V3190 Sgr | | | | | | | | | | | | |=LN Sgr +723191 |V3191 Sgr |182317.3-325428 |RRAB | 15.5 | 17.5 | |p |35663.836 | | 0.52041 |20 | |05869 2MASS| +723192 |V3192 Sgr |182320.1-333534 |RRAB | 15.0 | 16.3 | |p |35658.909 | | 0.69956 |17 | |05869 2MASS| +723193 |V3193 Sgr |182315.2-314746 |RRAB | 16.2 | 17.2 | |p |35658.904 | | 0.53639 |21 | |05869 2MASS| +723194 |V3194 Sgr |182330.1-354243 |SRA | 16.4 |< 18.0 | |p |35961. | | 175.2 | | |05869 2MASS| +723195 |V3195 Sgr |182330.3-355550 |RRAB | 14.7 | 16.4 | |p |35660.819 | | 0.58227 |15 | |05869 2MASS| +723196 |V3196 Sgr *|182325.4-340250 |SRB: | 15.4 | 18.7 | |p | | | | | |05869 USNO | +723197 |V3197 Sgr |182317.9-311656 |RRAB | 15.1 | 16.9 | |p |35638.851 | | 0.46393 |16 | |05869 2MASS| +723198 |V3198 Sgr |182337.1-365016 |M | 16.6 |< 19.1 | |p |36673. | | 267.0 | | |05869 2MASS| +723199 |V3199 Sgr |182326.1-323054 |E: | 16.1 | 17.0 | |p | | | | | |05869 2MASS| +723200 |V3200 Sgr |182326.6-305406 |RR | 15.4 | 16.7 | |p |35665.900 | | | | |05869 2MASS| +723201 |V3201 Sgr |182326.6-311522 |E | 15.9 | 17.6 | |p |35689.734 | | | | |05869 2MASS| +723202 |V3202 Sgr |182339.4-352347 |L | 14.9 | 15.6 | |p | | | | | |05869 2MASS| +723203 |V3203 Sgr |182343.7-363628 |M | 13.9 | 17.7 | |p |36778. | | 254.5 | | |05869 GSC | +723204 |V3204 Sgr |182335.1-330900 |SRB | 16.1 | 16.6 | |p | | | | | |05869 2MASS| +723205 |V3205 Sgr |182346.6-363604 |SR | 15.8 |< 17.7 | |p |36770. | | | | |05869 2MASS| +723206 |V3206 Sgr |182351.5-362821 |RRAB | 15.4 | 16.9 | |p |35654.795 | | 0.48596 |14 | |05869 2MASS| +723207 |V3207 Sgr *|182342.8-332715 |SRA | 16.2 | 18.5 | |p |36050. | | 196. : | | |05869 2MASS| +723208 |V3208 Sgr |182348.8-352323 |L | 16.0 | 17.1 | |p | | | | | |05869 2MASS| +723209 |V3209 Sgr |182352.9-361845 |RRAB | 15.4 | 17.2 | |p |35687.812 | | 0.53158 |16 | |05869 2MASS| +723210 |V3210 Sgr |182338.4-313013 |RRAB | 15.3 | 16.9 | |p |35664.900 | | 0.59155 |22 | |05869 2MASS| +723211 |V3211 Sgr |182343.9-332406 |RRC | 15.5 | 16.2 | |p |35665.903 | | 0.37954 |47 | |05869 2MASS| +723212 |V3212 Sgr |182341.5-312550 |RRAB | 15.8 | 17.0 | |p |35657.866 | | 0.52248 |13 | |05869 2MASS| +723213 |V3213 Sgr |182350.1-335639 |RRAB | 15.2 | 16.7 | |p |35633.891 | | 0.47341 |19 | |05869 2MASS| +723214 |V3214 Sgr |182344.9-315148 |SR | 15.6 |< 17.1 | |p | | | | | |05869 2MASS| +723215 |V3215 Sgr |182343.6-311351 |SRA | 14.0 | 15.6 | |p | | | 94. : | | |05869 UCAC2| +723216 |V3216 Sgr |182345.7-315420 |RRAB | 15.1 | 16.3 | |p |35660.856 | | 0.44732 |22 | |05869 2MASS| +723217 |V3217 Sgr |182346.0-312350 |SR | 14.2 |< 16.4 | |p |35635. | | | | |05869 2MASS| +723218 |V3218 Sgr |182404.4-362623 |SR | 16.7 | 17.2 | |p | | | | | |05869 2MASS| +723219 |V3219 Sgr |182353.5-330332 |SR | 14.5 | 16.1 | |p | | | | | |05869 GSC | +723220 |V3220 Sgr |182349.7-311143 |SRB | 16.3 | 17.2 | |p | | | | | |05869 2MASS| +723221 |V3221 Sgr |182351.8-321319 |RRC | 15.6 | 16.1 | |p |35658.856 | | 0.30773 |50 | |05869 2MASS| +723222 |V3222 Sgr |182350.6-312944 |M | 14.2 | 17.4 | |p |35632. | | 148.6 | | |05869 GSC | +723223 |V3223 Sgr |182404.7-354127 |L | 14.1 | 15.0 | |p | | | | | |05869 GSC | +723224 |V3224 Sgr |182352.3-310548 |L | 16.0 | 16.5 | |p | | | | | |05869 2MASS| +723225 |V3225 Sgr |182407.3-355033 |M | 14.6 |< 17.8 | |p |36702. | | | | |05869 2MASS| +723226 |V3226 Sgr |182404.4-343542 |RRAB | 16.7 | 17.6 | |p |35636.939 | | 0.59996 |23 | |05869 2MASS| +723227 |V3227 Sgr |182406.1-345537 |M | 15.1 |< 19.5 | |p |36761. | | 245. : | | |05869 2MASS| +723228 |V3228 Sgr |182356.3-305403 |RRAB | 15.0 | 16.9 | |p |35665.814 | | 0.45065 |15 | |05869 2MASS| +723229 |V3229 Sgr |182404.4-334444 |RRC | 15.3 | 16.3 | |p |35660.815 | | 0.29800 |33 | |05869 2MASS| +723230 |V3230 Sgr |182410.3-353916 |RRAB | 15.9 | 17.3 | |p |35662.835 | | 0.59534 |17 | |05869 2MASS| +723231 |V3231 Sgr |182359.0-313103 |L: | 15.9 | 16.3 | |p | | | | | |05869 2MASS| +723232 |V3232 Sgr |182405.3-313548 |RRAB | 15.5 | 16.7 | |p |35668.766 | | 0.33985 |18 | |05869 2MASS| +723233 |V3233 Sgr |182418.4-354146 |SR | 15.6 | 17.3 | |p |35961. :| | | | |05869 2MASS| +723234 |V3234 Sgr |182418.6-353929 |RRAB | 15.4 | 16.6 | |p |35637.935 | | 0.54629 |15 | |05869 2MASS| +723235 |V3235 Sgr |182406.8-313224 |SRA | 15.9 | 18.1 | |p |36702. | | 308. : | | |05869 2MASS| +723236 |V3236 Sgr |182408.0-320252 |RRAB | 15.6 | 16.9 | |p |35665.773 | | 0.53936 |17 | |05869 2MASS| +723237 |V3237 Sgr |182418.4-343056 |RRAB | 15.6 | 17.0 | |p |35664.865 | | 0.56452 |17 | |05869 GSC22| +723238 |V3238 Sgr |182412.9-322225 |M | 15.2 | 19.3 | |p |36729. | | 291.0 | | |05869 2MASS| +723239 |V3239 Sgr *|182415.4-331233 |M | 15.3 |< 18.0 | |p |36810. | | 283.0 : | | |05869 2MASS| +723240 |V3240 Sgr |182417.3-333035 |I: | 15.3 | 16.2 | |p | | | | | |05869 2MASS| +723241 |V3241 Sgr |182418.7-341904 |E: | 16.8 | 18.8 | |p | | | | | |05869 2MASS| +723242 |V3242 Sgr |182416.5-325427 |RRAB | 14.9 | 16.4 | |p |35664.848 | | 0.48330 |13 | |05869 2MASS| +723243 |V3243 Sgr |182445.9-320303 |RRAB | 15.7 | 17.0 | |p |35666.849 | | 0.51182 |13 | |05869 2MASS| +723244 |V3244 Sgr |182424.4-341658 |RRAB | 15.4 | 16.8 | |p |35634.949 | | 0.51552 |26 | |05869 2MASS| +723245 |V3245 Sgr |182432.4-355316 |E | 16.4 | 18.6 | |p |35668.796 | | | | |05869 2MASS| +723246 |V3246 Sgr |182418.3-305510 |RRAB | 16.5 | 18.0 | |p |35654.878 | | 0.48747 |14 | |05869 2MASS| +723247 |V3247 Sgr |182422.8-323647 |RRAB | 15.4 | 16.8 | |p |35662.879 | | 0.45493 |22 | |05869 2MASS| +723248 |V3248 Sgr |182423.7-323912 |RRAB | 15.7 | 16.9 | |p |35664.851 | | 0.56812 |22 | |05869 2MASS| +723249 |V3249 Sgr *|182429.2-342308 |SRB: | 15.1 | 18.6 | |p | | | | | |05869 2MASS| +723250 |V3250 Sgr |182423.1-305554 |SR | 17.0 |< 18.7 | |p |35688. | | | | |05869 2MASS| +723251 |V3251 Sgr |182424.6-313006 |L | 17.5 | 17.9 | |p | | | | | |05869 2MASS| +723252 |V3252 Sgr |182428.0-323052 |M | 14.8 |< 18.9 | |p |35688. +| | 297. : | | |05869 2MASS| +723253 |V3253 Sgr |182427.7-315253 |RRAB | 16.5 | 17.6 | |p |35687.847 | | 0.55706 |20 | |05869 2MASS| +723254 |V3254 Sgr |182429.2-322537 |E: | 13.2 | 14.2 | |p | | | | | |05869 GSC | +723255 |V3255 Sgr |182444.9-354603 |RRAB | 14.7 | 16.5 | |p |35665.858 | | 0.54810 |18 | |05869 2MASS| +723256 |V3256 Sgr |182436.2-324347 |RRC | 16.5 | 17.2 | |p |35656.836 | | 0.36941 |40 | |05869 2MASS| +723257 |V3257 Sgr |182438.8-333940 |SR | 15.9 | 17.1 | |p |36778. | | | | |05869 2MASS| +723258 |V3258 Sgr |182441.8-324525 |RRAB | 14.9 | 16.5 | |p |35662.827 | | 0.52775 |17 | |05869 2MASS| +723259 |V3259 Sgr |182442.3-324632 |SR | 16.0 | 17.1 | |p |35662. | | | | |05869 2MASS| +723260 |V3260 Sgr |182439.3-313253 |SRB | 16.7 | 17.2 | |p | | | | | |05869 2MASS| +723261 |V3261 Sgr |182451.1-353812 |L | 15.6 | 16.1 | |p | | | | | |05869 2MASS| +723262 |V3262 Sgr |182449.9-344237 |RRC | 14.6 | 15.0 | |p |35663.824 | | 0.24364 |45 | |05869 2MASS| +723263 |V3263 Sgr |182451.7-353320 |M | 15.1 |< 19.1 | |p |36673. | | 273.0 | | |05869 2MASS| +723264 |V3264 Sgr |182452.2-351820 |RRAB | 15.0 | 16.2 | |p |35666.827 | | 0.69775 |11 | |05869 2MASS| +723265 |V3265 Sgr |182444.2-320542 |RRC | 14.8 | 15.5 | |p |35662.835 | | 0.42712 |50 | |05869 2MASS| +723266 |V3266 Sgr |182447.4-325031 |RRAB | 15.5 | 16.9 | |p |35658.836 | | 0.53519 |16 | |05869 2MASS| +723267 |V3267 Sgr |182457.7-354829 |SRB | 14.6 | 15.4 | |p | | | | | |05869 2MASS| +723268 |V3268 Sgr |182452.2-335645 |M | 14.0 | 18.9 | |p |36050. | | 270.5 | | |05869 2MASS| +723269 |V3269 Sgr |182448.9-312317 |RR | 15.6 | 17.2 | |p |35636.982 | | 0.29614 |20 : | |05869 2MASS| +723270 |V3270 Sgr |182455.3-331044 |E: | 15.8 | 17.0 | |p | | | | | |05869 2MASS| +723271 |V3271 Sgr |182502.6-352252 |I: | 15.5 | 17.4 | |p | | | | | |05869 2MASS| +723272 |V3272 Sgr |182505.3-360607 |SR | 15.4 | 16.7 | |p |36729. | | | | |05869 2MASS| +723273 |V3273 Sgr |182453.0-320600 |SR | 15.1 | 15.8 | |p |36752. | | | | |05869 2MASS| +723274 |V3274 Sgr |182506.8-364312 |E: | 16.5 | 17.2 | |p | | | | | |05869 2MASS| +723275 |V3275 Sgr |182501.8-332155 |RR | 16.5 | 17.2 | |p |35660.799 | | | | |05869 2MASS| +723276 |V3276 Sgr |182505.5-342656 |RRAB | 15.8 | 16.8 | |p |35662.692 | | 0.35653 |22 | |05869 2MASS| +723277 |V3277 Sgr |182501.6-323713 |RRC | 15.8 | 16.3 | |p |35658.847 | | 0.37753 |45 | |05869 2MASS| +723278 |V3278 Sgr |182512.9-354853 |E | 15.7 | 16.6 | |p |36791.791 | | | | |05869 2MASS| +723279 |V3279 Sgr |182505.5-332340 |RRC | 16.1 | 16.9 | |p |35658.848 | | 0.23847 |43 | |05869 2MASS| +723280 |V3280 Sgr |182508.0-332900 |SR | 14.9 | 16.1 | |p |36673. | | | | |05869 GSC | +723281 |V3281 Sgr |182510.1-332548 |RRAB | 15.6 | 17.0 | |p |35632.949 | | 0.51908 |15 | |05869 2MASS| +723282 |V3282 Sgr |182519.2-363015 |L | 14.5 | 15.2 | |p | | | | | |05869 2MASS| +723283 |V3283 Sgr |182519.0-352033 |RRAB | 15.0 | 16.6 | |p |35664.868 | | 0.43628 |22 | |05869 2MASS| +723284 |V3284 Sgr |182518.7-352527 |RR | 15.8 | 16.6 | |p |35661.946 | | 0.52497 |30 | |05869 2MASS| +723285 |V3285 Sgr *|182512.5-330113 |SRA | 16.6 | 18.8 | |p |36720. | | 130.4 : | | |05869 2MASS| +723286 |V3286 Sgr |182523.1-360734 |RRAB | 14.7 | 16.0 | |p |35634.872 | | 0.49296 |16 | |05869 2MASS| +723287 |V3287 Sgr |182508.5-310451 |RRAB | 15.5 | 16.9 | |p |35687.803 | | 0.52853 |14 | |05869 2MASS| +723288 |V3288 Sgr |182515.0-333345 |M | 14.6 |< 18.4 | |p |36740. | | 309.5 | | |05869 2MASS| +723289 |V3289 Sgr |182510.3-312838 |L | 18.0 |< 18.9 | |p | | | | | |05869 2MASS| +723290 |V3290 Sgr |182510.2-310205 |M | 14.9 | 17.9 | |p |36752. | | 287.5 | | |05869 2MASS| +723291 |V3291 Sgr |182512.9-313714 |SRB | 16.6 | 18.0 | |p | | | | | |05869 2MASS| +723292 |V3292 Sgr |182522.6-333048 |RRAB | 15.4 | 16.8 | |p |35688.847 | | 0.53951 |16 | |05869 2MASS| +723293 |V3293 Sgr |182525.0-340347 |L: | 15.2 | 16.2 | |p | | | | | |05869 2MASS| +723294 |V3294 Sgr *|182523.1-324051 |M | 14.7 | 17.7 | |p |36725. | | 216.0 : | | |05869 GSC | +723295 |V3295 Sgr *|182520.5-312329 |M | 15.0 | 18.4 | |p |36778. | | 256.5 : | | |05869 2MASS| +723296 |V3296 Sgr |182535.7-361958 |L | 14.6 | 15.1 | |p | | | | | |05869 GSC | +723297 |V3297 Sgr |182521.1-312843 |M | 15.4 |< 18.4 | |p |36800. | | 127.2 | | |05869 2MASS| +723298 |V3298 Sgr |182527.9-333306 |RRAB | 15.5 | 16.5 | |p |35687.780 | | 0.40392 |20 | |05869 2MASS| +723299 |V3299 Sgr |182527.8-322042 |M | 14.8 | 18.2 | |p |36778. | | 189.4 | | |05869 2MASS| +723300 |V3300 Sgr |182532.1-334902 |L | 15.8 | 16.4 | |p | | | | | |05869 2MASS| +723301 |V3301 Sgr |182524.4-305630 |RRAB | 15.0 | 16.8 | |p |35660.873 | | 0.64322 |18 | |05869 2MASS| +723302 |V3302 Sgr |182532.3-333120 |SRA: | 16.7 |< 17.5 | |p | | | | | |05869 2MASS| +723303 |V3303 Sgr |182534.9-340044 |L | 17.1 | 18.1 | |p | | | | | |05869 2MASS| +723304 |V3304 Sgr |182531.2-305031 |RRAB | 15.8 | 16.6 | |p |35636.881 | | 0.55404 |15 | |05869 2MASS| +723305 |V3305 Sgr |182547.3-353637 |RRAB | 15.4 | 17.4 | |p |35636.934 | | 0.54417 |12 | |05869 2MASS| +723306 |V3306 Sgr |182532.8-305057 |RRAB | 15.2 | 16.6 | |p |35666.888 | | 0.56433 |17 | |05869 2MASS| +723307 |V3307 Sgr |182541.1-324602 |SR | 15.9 | 17.4 | |p | | | | | |05869 2MASS| +723308 |V3308 Sgr |182542.9-332203 |RRAB | 17.6 | 19.0 | |p |35662.780 | | 0.44395 |17 | |05869 GSC22| +723309 |V3309 Sgr |182538.6-310837 |RRAB | 15.7 | 16.8 | |p |35656.897 | | 0.69287 |21 | |05869 2MASS| +723310 |V3310 Sgr |182541.0-314839 |RRAB | 15.1 | 16.2 | |p |35654.839 | | 0.54281 |15 | |05869 2MASS| +723311 |V3311 Sgr |182551.5-345716 |SRB | 15.6 | 17.8 | |p | | | | | |05869 GSC | +723312 |V3312 Sgr |182546.7-331638 |SRB | 15.0 | 16.2 | |p | | | | | |05869 2MASS| +723313 |V3313 Sgr |182552.8-344707 |RRAB | 15.2 | 17.0 | |p |35631.944 | | 0.51621 |15 | |05869 2MASS| +723314 |V3314 Sgr |182554.2-345642 |RRAB | 14.9 | 16.2 | |p |35638.847 | | 0.47796 |21 | |05869 2MASS| +723315 |V3315 Sgr |182556.0-341443 |RRAB | 15.5 | 16.9 | |p |35655.851 | | 0.53399 |14 | |05869 2MASS| +723316 |V3316 Sgr |182602.0-354403 |RR | 15.6 | 16.6 | |p |35665.710 | | | | |05869 2MASS| +723317 |V3317 Sgr |182558.7-333528 |RRAB | 15.3 | 16.5 | |p |35663.824 | | 0.34918 |14 | |05869 2MASS| +723318 |V3318 Sgr |182552.5-310251 |RRAB | 14.7 | 16.7 | |p |35660.794 | | 0.44025 |15 | |05869 2MASS| +723319 |V3319 Sgr |182613.0-352917 |SRA | 16.3 | 18.2 | |p |35688. +| | 336.5 | | |05869 2MASS| +723320 |V3320 Sgr |182605.4-321940 |RRAB | 15.8 | 16.9 | |p |35655.876 | | 0.58741 |17 | |05869 2MASS| +723321 |V3321 Sgr |182603.7-310534 |M | 17.1 |< 19.7 | |p |36673. | | 178.0 | | |05869 2MASS| +723322 |V3322 Sgr |182620.9-364641 |M | 14.9 | 18.5 | |p |35662. | | 192.8 | | |05869 2MASS| +723323 |V3323 Sgr |182607.8-312211 |RRAB | 15.8 | 16.5 | |p |35661.807 | | 0.37291 |20 | |05869 2MASS| +723324 |V3324 Sgr |182608.7-312839 |M | 16.2 |< 18.9 | |p |36810. +| | | | |05869 2MASS| +723325 |V3325 Sgr |182611.1-314329 |M | 15.2 | 18.6 | |p |36752. | | 287.5 | | |05869 2MASS| +723326 |V3326 Sgr |182612.7-321502 |RRAB | 14.7 | 15.6 | |p |35660.792 | | 0.37876 |10 | |05869 2MASS| +723327 |V3327 Sgr |182622.0-342942 |RRAB | 14.9 | 15.7 | |p |35664.792 | | 0.47718 |15 | |05869 2MASS| +723328 |V3328 Sgr |182626.5-351523 |M | 15.0 | 17.8 | |p |35657. :| | | | |05869 2MASS| +723329 |V3329 Sgr |182622.8-324037 |SR | 14.0 | 14.8 | |p |36752. | | | | |05869 GSC | +723330 |V3330 Sgr |182627.9-332125 |RRAB | 15.8 | 17.4 | |p |35661.886 | | 0.40928 |15 | |05869 2MASS| +723331 |V3331 Sgr |182624.4-315546 |SR | 14.6 | 16.0 | |p |36725. | | | | |05869 GSC | +723332 |V3332 Sgr |182628.8-330740 |SR | 15.2 | 16.2 | |p |35639. | | | | |05869 GSC | +723333 |V3333 Sgr |182636.1-345818 |M | 15.2 |< 18.5 | |p |36720. | | 240.0 | | |05869 2MASS| +723334 |V3334 Sgr |182640.7-351311 |RR | 15.4 | 15.9 | |p |35665.890 | | | | |05869 2MASS| +723335 |V3335 Sgr *|182645.5-364738 |SRB: | 12.9 | 13.8 | |p | | | | | |05869 GSC | +723336 |V3336 Sgr |182632.3-314223 |RRAB | 15.1 | 17.2 | |p |35666.872 | | 0.53341 |16 | |05869 2MASS| +723337 |V3337 Sgr |182645.2-353040 |SRB | 18.3 | 18.8 | |p | | | | | |05869 2MASS| +723338 |V3338 Sgr |182638.5-323826 |RRAB | 15.5 | 16.6 | |p |35656.870 | | 0.48001 |14 | |05869 2MASS| +723339 |V3339 Sgr |182652.2-364321 |SRB | 14.8 | 16.2 | |p | | | | | |05869 2MASS| +723340 |V3340 Sgr |182652.9-360302 |E | 16.3 | 17.9 | |p |36810.667 | | | | |05869 2MASS| +723341 |V3341 Sgr |182640.6-312752 |RRAB | 16.2 | 18.2 | |p |35689.810 | | 0.46786 |30 | |05869 2MASS| +723342 |V3342 Sgr |182647.1-324744 |E | 17.7 | 19.0 | |p |36777.740 | | | | |05869 2MASS| +723343 |V3343 Sgr |182644.2-312915 |M | 13.5 | 16.1 | |p |36761. | | 134.2 | | |05869 GSC | +723344 |V3344 Sgr |182645.4-314839 |RRAB | 15.7 | 17.2 | |p |35664.770 | | 0.48431 |13 | |05869 2MASS| +723345 |V3345 Sgr |182656.8-354024 |SRA | 15.0 | 16.9 | |p |36792. | | 197. : | | |05869 2MASS| +723346 |V3346 Sgr |182650.1-310955 |RRAB | 15.4 | 16.7 | |p |35658.918 | | 0.58034 |20 | |05869 2MASS| +723347 |V3347 Sgr |182655.1-323837 |E: | 15.8 | 16.3 | |p | | | | | |05869 2MASS| +723348 |V3348 Sgr |182651.5-311147 |M | 14.6 |< 18.4 | |p |36673. -| | 220. : | | |05869 2MASS| +723349 |V3349 Sgr |182702.0-342730 |SRB | 15.7 | 16.7 | |p | | | | | |05869 2MASS| +723350 |V3350 Sgr |182705.7-343351 |RR | 14.6 | 16.1 | |p |35633.823 | | 0.49724 | | |05869 2MASS| +723351 |V3351 Sgr |182704.5-341938 |M | 16.5 |< 19.6 | |p |36050. | | | | |05869 USNO | +723352 |V3352 Sgr |182712.4-334228 |SRB | 15.8 | 17.1 | |p | | | | | |05869 2MASS| +723353 |V3353 Sgr *|182717.6-353030 |RRAB | 15.0 | 16.8 | |p |35661.839 | | 0.47018 |22 | |05869 2MASS| +723354 |V3354 Sgr |182718.0-331954 |SRB | 15.8 | 16.6 | |p | | | | | |05869 2MASS| +723355 |V3355 Sgr |182721.2-320749 |SR | 16.2 | 16.9 | |p |36702. | | | | |05869 2MASS| +723356 |V3356 Sgr *|182732.6-352332 |SRA | 15.1 | 16.9 | |p |36702. | | 188.6 : | | |05869 2MASS| +723357 |V3357 Sgr |182723.9-321409 |RRAB | 15.4 | 16.9 | |p |35661.870 | | 0.53564 |28 | |05869 2MASS| +723358 |V3358 Sgr |182728.4-334444 |RRAB | 15.8 | 17.6 | |p |35638.845 | | 0.49373 |20 | |05869 2MASS| +723359 |V3359 Sgr |182736.1-353819 |SRA | 16.1 | 19.3 | |p |36673. | | 192. : | | |05869 2MASS| +723360 |V3360 Sgr |182739.6-362504 |SR | 15.9 | 16.9 | |p |36725. | | | | |05869 2MASS| +723361 |V3361 Sgr |182724.8-311340 |L | 15.7 | 16.7 | |p | | | | | |05869 2MASS| +723362 |V3362 Sgr |182729.1-321115 |SR | 15.1 | 16.3 | |p |35639. | | | | |05869 2MASS| +723363 |V3363 Sgr |182733.5-332355 |RRAB | 14.5 | 16.2 | |p |35660.930 | | 0.57665 |12 | |05869 2MASS| +723364 |V3364 Sgr |182733.1-331057 |RRAB | 14.7 | 16.4 | |p |35634.879 | | 0.48761 |13 | |05869 2MASS| +723365 |V3365 Sgr *|182728.2-305854 |M | 15.4 |< 18.1 | |p |36720. | | 144.6 : | | |05869 2MASS| +723366 |V3366 Sgr |182747.5-355319 |M | 14.8 | 18.1 | |p |36673. | | 400. : | |Me |05869 2MASS| +723367 |V3367 Sgr |182744.8-333714 |SRB | 16.5 | 17.2 | |p | | | | | |05869 2MASS| +723368 |V3368 Sgr |182746.0-332235 |SRA | 14.4 | 16.8 | |p |36752. | | 177. : | | |05869 GSC | +723369 |V3369 Sgr |182754.1-355417 |SR | 16.8 | 17.6 | |p |36810. | | | | |05869 2MASS| +723370 |V3370 Sgr |182755.9-361655 |RRAB | 14.9 | 16.4 | |p |35655.836 | | 0.42732 |15 | |05869 2MASS| +723371 |V3371 Sgr |182758.6-365304 |RRAB | 16.3 | 17.5 | |p |35658.892 | | 0.55209 |13 | |05869 2MASS| +723372 |V3372 Sgr |182748.8-333150 |RRAB | 15.3 | 16.5 | |p |35664.835 | | 0.51558 |16 | |05869 2MASS| +723373 |V3373 Sgr |182749.3-311422 |M | 14.5 |< 18.1 | |p |36720. | | 302.5 | | |05869 2MASS| +723374 |V3374 Sgr |182758.8-335627 |SRB | 15.9 | 16.5 | |p | | | | | |05869 2MASS| +723375 |V3375 Sgr |182809.0-363126 |M | 13.9 | 17.3 | |p |36673. | | 338. : | | |05869 2MASS| +723376 |V3376 Sgr |182802.3-340736 |RRC | 16.2 | 16.9 | |p |35636.968 | | 0.37569 |47 | |05869 2MASS| +723377 |V3377 Sgr |182801.7-331118 |RRAB | 15.3 | 16.2 | |p |35637.938 | | 0.55472 |17 | |05869 2MASS| +723378 |V3378 Sgr |182757.5-312016 |E: | 15.0 | 15.6 | |p | | | | | |05869 2MASS| +723379 |V3379 Sgr |182813.9-353305 |RRAB | 15.1 | 16.4 | |p |35636.931 | | 0.51625 |14 | |05869 2MASS| +723380 |V3380 Sgr |182805.7-322449 |SR | 16.0 | 17.0 | |p |36778. | | | | |05869 2MASS| +723381 |V3381 Sgr |182805.8-321443 |RRAB | 15.1 | 17.1 | |p |35661.814 | | 0.50150 |25 | |05869 2MASS| +723382 |V3382 Sgr |182817.5-355052 |E/SD: | 16.0 | 17.0 | |p |35960.925 | | 1.25491 | | |05869 2MASS| +723383 |V3383 Sgr |182805.2-314814 |SR | 17.5 | 18.6 | |p |36729. | | | | |05869 2MASS| +723384 |V3384 Sgr |182808.7-320320 |RRC | 16.7 | 17.5 | |p |35661.841 | | 0.38974 |40 | |05869 2MASS| +723385 |V3385 Sgr |182815.0-332950 |RR | 14.9 | 15.9 | |p |35667.900 | | | | |05869 2MASS| +723386 |V3386 Sgr |182812.9-320514 |RRAB | 15.4 | 16.4 | |p |35662.833 | | 0.40563 |20 | |05869 2MASS| +723387 |V3387 Sgr |182829.2-362136 |RRAB | 15.7 | 16.7 | |p |35664.792 | | 0.52345 |17 | |05869 2MASS| +723388 |V3388 Sgr *|182813.9-311339 |M | 15.4 | 18.3 | |p |36740. | | 186.8 : | | |05869 2MASS| +723389 |V3389 Sgr |182816.1-320849 |M | 16.0 | 19.3 | |p |36729. | | 187.2 | | |05869 2MASS| +723390 |V3390 Sgr |182815.7-312324 |L: | 16.2 | 16.6 | |p | | | | | |05869 2MASS| +723391 |V3391 Sgr |182828.7-353504 |E | 15.2 | 15.8 | |p |35689.708 | | | | |05869 2MASS| +723392 |V3392 Sgr |182816.6-312551 |E | 16.8 | 18.6 | |p | | | | | |05869 2MASS| +723393 |V3393 Sgr |182834.3-363938 |RRAB | 15.3 | 16.6 | |p |35634.912 | | 0.56392 |17 | |05869 2MASS| +723394 |V3394 Sgr |182827.9-334624 |RR | 15.3 | 16.4 | |p |35636.844 | | 0.50649 | | |05869 2MASS| +723395 |V3395 Sgr *|182836.1-351007 |M | 14.9 | 18.3 | |p |36810. | | 221.0 : | | |05869 2MASS| +723396 |V3396 Sgr |182836.7-342716 |SR | 15.3 | 16.6 | |p |36752. | | | | |05869 2MASS| +723397 |V3397 Sgr |182844.8-365343 |SR | 17.3 | 17.9 | |p |35668. | | | | |05869 2MASS| +723398 |V3398 Sgr |182839.3-341531 |L | 15.6 | 16.0 | |p | | | | | |05869 2MASS| +723399 |V3399 Sgr |182832.0-311123 |RRAB | 16.5 | 17.9 | |p |35636.930 | | 0.50695 |10 | |05869 2MASS| +723400 |V3400 Sgr |182834.9-313550 |M | 16.0 | 19.2 | |p |36778. | | 168.0 | | |05869 2MASS| +723401 |V3401 Sgr |182843.7-342426 |RRAB | 15.2 | 16.8 | |p |35665.849 | | 0.48851 |10 | |05869 2MASS| +723402 |V3402 Sgr |182839.2-322348 |RRAB | 14.9 | 16.8 | |p |35662.850 | | 0.50921 |15 | |05869 2MASS| +723403 |V3403 Sgr |182841.5-331456 |SR | 15.7 | 16.9 | |p |36750. | | | | |05869 2MASS| +723404 |V3404 Sgr |182839.0-320529 |SR | 16.1 | 18.6 | |p | | | | | |05869 2MASS| +723405 |V3405 Sgr |182846.5-341928 |RRAB | 15.5 | 17.0 | |p |35634.865 | | 0.45252 |13 | |05869 2MASS| +723406 |V3406 Sgr |182842.4-321731 |L | 17.5 | 18.2 | |p | | | | | |05869 2MASS| +723407 |V3407 Sgr |182843.5-321219 |RRC | 16.2 | 16.7 | |p |35656.791 | | 0.30524 |42 | |05869 2MASS| +723408 |V3408 Sgr |182854.8-350342 |SR | 15.4 | 16.3 | |p | | | | | |05869 2MASS| +723409 |V3409 Sgr |182853.5-334946 |RRAB | 15.4 | 16.6 | |p |35658.967 | | 0.36117 |17 | |05869 2MASS| +723410 |V3410 Sgr |182852.4-323916 |RRAB | 15.2 | 17.0 | |p |35687.820 | | 0.52744 |16 | |05869 2MASS| +723411 |V3411 Sgr |182858.4-335057 |RRAB | 15.8 | 17.6 | |p |35658.847 | | 0.47091 |12 | |05869 2MASS| +723412 |V3412 Sgr *|182903.9-351425 |SRB: | 15.3 | 16.8 | |p | | | | | |05869 2MASS| +723413 |V3413 Sgr |182859.3-335037 |M | 13.5 | 18.4 | |p |36050. | | | | |05869 2MASS| +723414 |V3414 Sgr |182853.3-312151 |RRAB | 15.1 | 16.3 | |p |35666.835 | | 0.44930 |17 | |05869 2MASS| +723415 |V3415 Sgr |182902.9-340228 |SR | 15.5 | 16.9 | |p |36720. | | | | |05869 2MASS| +723416 |V3416 Sgr |182855.9-313507 |SRA: | 16.7 |< 18.2 | |p | | | | | |05869 2MASS| +723417 |V3417 Sgr |182913.1-364853 |RRAB | 16.3 | 17.4 | |p |35666.810 | | 0.52253 |11 | |05869 2MASS| +723418 |V3418 Sgr |182912.3-352231 |M | 15.1 |< 19.1 | |p |36810. | | 206. : | | |05869 GSC | +723419 |V3419 Sgr |182905.2-312636 |RRAB | 14.9 | 16.8 | |p |35689.746 | | 0.54764 |15 | |05869 2MASS| +723420 |V3420 Sgr |182913.9-333610 |RRAB | 15.6 | 16.8 | |p |35660.804 | | 0.58337 |23 | |05869 2MASS| +723421 |V3421 Sgr |182911.6-322356 |E | 16.5 | 19.1 | |p |36778.741 | | | | |05869 2MASS| +723422 |V3422 Sgr |182910.1-312332 |SRA | 15.5 | 17.5 | |p |36810. | | 368.0 | | |05869 2MASS| +723423 |V3423 Sgr |182917.8-323142 |RR: | 15.4 | 16.2 | |p | | | | | |05869 2MASS| +723424 |V3424 Sgr |182916.8-313600 |RRAB | 15.8 | 17.0 | |p |35655.831 | | 0.56448 |15 | |05869 2MASS| +723425 |V3425 Sgr |182924.0-332750 |RRAB | 15.9 | 17.1 | |p |35665.797 | | 0.52030 |17 | |05869 2MASS| +723426 |V3426 Sgr |182927.2-332940 |RRAB | 15.7 | 17.0 | |p |35665.743 | | 0.53316 |13 | |05869 2MASS| +723427 |V3427 Sgr |182922.8-314416 |SR | 14.6 | 15.8 | |p | | | | | |05869 2MASS| +723428 |V3428 Sgr |182935.6-355149 |RRAB | 15.5 | 17.0 | |p |35666.816 | | 0.45640 |12 | |05869 2MASS| +723429 |V3429 Sgr |182934.1-340827 |SR | 15.2 | 16.6 | |p |36752. | | | | |05869 2MASS| +723430 |V3430 Sgr |182942.5-364914 |SR | 15.2 | 16.2 | |p |35665. | | | | |05869 2MASS| +723431 |V3431 Sgr |182924.5-305252 |L | 16.1 | 16.9 | |p | | | | | |05869 2MASS| +723432 |V3432 Sgr |182928.9-311420 |M | 15.7 |< 19.1 | |p |36702. | | | | |05869 2MASS| +723433 |V3433 Sgr *|182934.8-324149 |M | 15.3 |< 18.6 | |p |36756. | | 190.7 : | | |05869 2MASS| +723434 |V3434 Sgr |182937.4-320408 |RR | 15.2 | 17.8 | |p |35640.903 | | 0.33943 |35 | |05869 2MASS| +723435 |V3435 Sgr |182937.6-312904 |SR | 14.8 | 15.8 | |p | | | | | |05869 2MASS| +723436 |V3436 Sgr |182939.2-313816 |RR | 16.0 | 17.2 | |p |35665.845 | | 0.56467 |12 | |05869 2MASS| +723437 |V3437 Sgr |182942.8-320314 |M | 16.1 | 18.7 | |p | | | 265.0 | |Me |05869 2MASS| +723438 |V3438 Sgr |182957.2-362552 |SR | 15.2 | 16.6 | |p |36720. | | | | |05869 2MASS| +723439 |V3439 Sgr |182952.4-345129 |SRB | 14.6 | 15.4 | |p | | | | | |05869 GSC | +723440 |V3440 Sgr |182949.9-334347 |L | 16.6 | 17.2 | |p | | | | | |05869 2MASS| +723441 |V3441 Sgr |182957.5-325903 |SR | 16.0 | 16.7 | |p |36673. | | | | |05869 2MASS| +723442 |V3442 Sgr |182953.2-312939 |M | 15.5 | 18.8 | |p |35660. | | 332. : | | |05869 2MASS| +723443 |V3443 Sgr *|182956.0-305735 |M | 15.7 | 18.9 | |p |36785. | | 152.6 : | | |05869 USNO | +723444 |V3444 Sgr *|183005.1-352223 |SRA | 14.8 | 16.5 | |p |35662. | | 140.0 : | | |05869 GSC | +723445 |V3445 Sgr |183009.0-360521 |RR | 16.3 | 17.1 | |p |35657.810 | | | | |05869 2MASS| +723446 |V3446 Sgr |183001.1-330154 |RR | 16.3 | 17.3 | |p |35664.797 | | 0.33296 | | |05869 2MASS| +723447 |V3447 Sgr |182113.9-305346 |RRAB | 15.1 | 16.7 | |p |35662.828 | | 0.48672 |18 | |05869 2MASS| +723448 |V3448 Sgr |183006.4-334746 |RRAB | 15.0 | 16.5 | |p |35661.919 | | 0.44080 |28 | |05869 2MASS| +723449 |V3449 Sgr |183009.2-344158 |SR | 14.0 | 15.4 | |p |35640. | | | | |05869 GSC | +723450 |V3450 Sgr |183001.5-314911 |SRB | 16.3 | 16.9 | |p | | | | | |05869 2MASS| +723451 |V3451 Sgr |183010.3-334627 |RRAB | 15.7 | 17.4 | |p |35657.818 | | 0.68847 |18 | |05869 2MASS| +723452 |V3452 Sgr |183006.6-320641 |DSCT | 16.7 | 17.4 | |p |35660.805 | | 0.15429 |19 | |05869 2MASS| +723453 |V3453 Sgr |183008.3-324533 |DSCT | 15.6 | 16.1 | |p |35658.870 | | 0.10808 |38 | |05869 2MASS| +723454 |V3454 Sgr |183009.1-320548 |E | 16.2 | 17.0 | |p |35658.825 | | 0.23648 | | |05869 2MASS| +723455 |V3455 Sgr |183015.3-340302 |RRAB | 14.6 | 16.2 | |p |35660.824 | | 0.48179 |14 | |05869 2MASS| +723456 |V3456 Sgr |183010.9-323113 |RRAB | 16.0 | 16.9 | |p |35655.827 | | 0.59845 |22 | |05869 2MASS| +723457 |V3457 Sgr |183018.1-342656 |L: | 14.7 | 15.4 | |p | | | | | |05869 2MASS| +723458 |V3458 Sgr |183009.3-304712 |L: | 15.8 | 16.9 | |p | | | | | |05869 2MASS| +723459 |V3459 Sgr *|183021.1-334836 |RR | 15.3 | 16.5 | |p |35658.745 | | 0.50655 | | |05869 2MASS| +723460 |V3460 Sgr |183029.2-355232 |RRAB | 15.9 | 17.6 | |p |35640.903 | | 0.57654 |18 | |05869 2MASS| +723461 |V3461 Sgr |183032.4-361918 |RRAB | 15.8 | 17.0 | |p |35665.919 | | 0.64281 |17 | |05869 2MASS| +723462 |V3462 Sgr |183020.0-323759 |UG: | 14.1 | 18.0 | |p | | | | | |05869 06286| +723463 |V3463 Sgr |183027.3-340626 |RRAB | 15.9 | 17.4 | |p |35662.847 | | 0.52037 |16 | |05869 2MASS| +723464 |V3464 Sgr |183034.2-362106 |RRAB | 15.9 | 16.9 | |p |35665.911 | | 0.64242 |16 | |05869 2MASS| +723465 |V3465 Sgr |183030.3-344101 |SRB | 15.3 | 15.9 | |p | | | | | |05869 2MASS| +723466 |V3466 Sgr |183035.0-350056 |RRAB | 15.8 | 17.2 | |p |35637.936 | | 0.55916 |31 | |05869 2MASS| +723467 |V3467 Sgr *|183033.6-340457 |SRB | 15.8 | 16.4 | |p | | | | | |05869 2MASS| +723468 |V3468 Sgr |183025.6-305556 |RRAB | 15.3 | 16.7 | |p |35668.795 | | 0.44823 |13 | |05869 2MASS| +723469 |V3469 Sgr |183042.8-360036 |SR | 15.2 | 16.1 | |p | | | | | |05869 2MASS| +723470 |V3470 Sgr |183029.5-313129 |RRC | 14.8 | 15.3 | |p |35660.750 | | 0.35475 |46 | |05869 2MASS| +723471 |V3471 Sgr |183048.1-361553 |M | 14.5 | 19.1 | |p |36810. | | 255.0 | | |05869 2MASS| +723472 |V3472 Sgr |183038.1-315422 |SRB | 17.5 | 18.6 | |p | | | | | |05869 2MASS| +723473 |V3473 Sgr *|183053.8-355516 |CEP: | 15.0 | 15.8 | |p |35656.8 | | | | |05869 2MASS| +723474 |V3474 Sgr |183042.0-312616 |L | 14.6 | 14.9 | |p | | | | | |05869 2MASS| +723475 |V3475 Sgr | | | | | | | | | | | | |=V2355 Sgr +723476 |V3476 Sgr |183049.5-325751 |EA/SD | 14.9 | 17.4 | |p |35640.926 | | 1.79863 : | | |05869 01613| +723477 |V3477 Sgr |183048.7-310955 |RRAB | 15.0 | 16.3 | |p |35638.875 | | 0.49157 |13 | |05869 2MASS| +723478 |V3478 Sgr |183101.5-340500 |L | 15.4 | 15.7 | |p | | | | | |05869 2MASS| +723479 |V3479 Sgr |183105.5-345538 |RRAB | 15.7 | 17.2 | |p |35662.843 | | 0.49631 |15 : | |05869 2MASS| +723480 |V3480 Sgr |183059.1-321957 |M | 15.5 |< 18.2 | |p |36673. -| | 277. : | | |05869 2MASS| +723481 |V3481 Sgr |183112.7-355507 |RRAB | 15.0 | 16.2 | |p |35663.811 | | 0.54334 |15 | |05869 2MASS| +723482 |V3482 Sgr |183059.9-315342 |RRAB | 14.4 | 16.2 | |p |35658.867 | | 0.39221 |13 | |05869 2MASS| +723483 |V3483 Sgr |183113.1-355442 |CEP | 16.3 | 17.0 | |p |35657.44 | | 6.1035 : | | |05869 2MASS| +723484 |V3484 Sgr |183104.3-321730 |RRAB | 16.7 | 17.6 | |p |35640.956 | | 0.47563 |22 | |05869 2MASS| +723485 |V3485 Sgr |183117.7-362850 |CEP | 15.2 | 16.5 | |p |35659.88 | | 11.1256 |37 | |05869 2MASS| +723486 |V3486 Sgr |183116.1-341109 |RRAB | 15.2 | 16.1 | |p |35663.804 | | 0.36722 |18 | |05869 2MASS| +723487 |V3487 Sgr |183124.1-364152 |L | 14.5 | 15.4 | |p | | | | | |05869 GSC | +723488 |V3488 Sgr |183124.3-355254 |RRAB | 15.4 | 16.8 | |p |35658.855 | | 0.49037 |16 : | |05869 2MASS| +723489 |V3489 Sgr |183111.9-314114 |RRAB | 14.8 | 16.4 | |p |35661.841 | | 0.63505 |17 | |05869 2MASS| +723490 |V3490 Sgr |183112.6-314441 |RRAB | 16.7 | 18.0 | |p |35636.910 | | 0.74349 |13 : | |05869 2MASS| +723491 |V3491 Sgr |183130.0-363857 |M | 15.7 |< 19.2 | |p |36792. | | | | |05869 2MASS| +723492 |V3492 Sgr |183122.7-335750 |RR | 15.7 | 16.1 | |p |35656.890 | | | | |05869 2MASS| +723493 |V3493 Sgr |183132.7-354834 |RRAB | 15.3 | 16.4 | |p |35664.822 | | 0.57453 |29 | |05869 2MASS| +723494 |V3494 Sgr |183123.0-324351 |M | 16.3 |< 19.6 | |p |36810. | | 264.0 | | |05869 2MASS| +723495 |V3495 Sgr |183139.6-365344 |E | 15.2 | 16.4 | |p |36791.788 | | | | |05869 2MASS| +723496 |V3496 Sgr |183133.7-333350 |M | 15.8 |< 18.8 | |p |35688. +| | | | |05869 2MASS| +723497 |V3497 Sgr |183127.4-312529 |UV: | 14.9 | 15.7 | |p | | | | | |05869 2MASS| +723498 |V3498 Sgr |183130.8-310900 |RR | 15.5 | 16.9 | |p |35656.831 | | 0.35089 |15 | |05869 2MASS| +723499 |V3499 Sgr |183137.9-313550 |SR | 15.0 | 15.6 | |p |36710. | | | | |05869 2MASS| +723500 |V3500 Sgr *|183147.8-342724 |SRB: | 15.9 | 16.8 | |p | | | | | |05869 2MASS| +723501 |V3501 Sgr *|183155.6-362152 |E/KW: | 15.2 | 15.7 | 15.7 : |p |35657.929 | | 0.31195 | | |05869 2MASS| +723502 |V3502 Sgr |183144.1-323417 |RRAB | 15.0 | 16.4 | |p |35665.871 | | 0.44378 |20 | |05869 2MASS| +723503 |V3503 Sgr |183201.0-364015 |M | 15.1 | 19.7 | |p |36710. | | 224.0 | | |05869 2MASS| +723504 |V3504 Sgr |183148.5-321716 |SR | 17.9 |< 18.6 | |p | | | | | |05869 2MASS| +723505 |V3505 Sgr |183147.7-310309 |SR | 16.7 | 17.6 | |p | | | | | |05869 2MASS| +723506 |V3506 Sgr |183155.8-314930 |SRA | 15.8 | 17.2 | |p | | | 184. : | | |05869 2MASS| +723507 |V3507 Sgr | | | | | | | | | | | | |=V2360 Sgr +723508 |V3508 Sgr *|183124.2-190931 |GCAS | 7.70 | 8.00 | |V | | | | |B6IIIe |05914 09872| +723509 |V3509 Sgr |183212.4-353605 |RRAB | 15.0 | 16.2 | |p |35662.905 | | 0.61755 |21 | |05869 2MASS| +723510 |V3510 Sgr |183218.5-354807 |RRAB | 15.6 | 16.6 | |p |35687.823 | | 0.57534 |21 | |05869 2MASS| +723511 |V3511 Sgr *|183216.4-332543 |SRB: | 15.3 | 16.3 | |p | | | | | |05869 2MASS| +723512 |V3512 Sgr |183222.2-352342 |RR | 14.2 | 15.4 | |p |35663.900 | | | | |05869 2MASS| +723513 |V3513 Sgr |183217.0-332213 |SR | 15.4 | 16.4 | |p |36702. -| | | | |05869 2MASS| +723514 |V3514 Sgr |183212.1-311303 |RRC | 15.5 | 16.3 | |p |35655.835 | | 0.30011 |37 | |05869 2MASS| +723515 |V3515 Sgr |183220.3-333704 |RRAB | 15.2 | 17.0 | |p |35662.876 | | 0.46027 |17 | |05869 2MASS| +723516 |V3516 Sgr |183219.0-331402 |L | 16.1 | 17.1 | |p | | | | | |05869 2MASS| +723517 |V3517 Sgr |183225.3-343128 |RRAB | 15.1 | 16.5 | |p |35661.819 | | 0.47994 |16 | |05869 2MASS| +723518 |V3518 Sgr |183229.9-354729 |RRAB | 15.3 | 16.6 | |p |35660.725 | | 0.36912 |22 | |05869 2MASS| +723519 |V3519 Sgr |183230.8-354357 |RR | 18.0 | 18.7 | |p |35664.860 | | | | |05869 2MASS| +723520 |V3520 Sgr |183232.3-351614 |RRAB | 14.8 | 15.9 | |p |35664.788 | | 0.34965 |12 | |05869 2MASS| +723521 |V3521 Sgr |183223.4-321116 |RRAB | 15.9 | 17.0 | |p |35658.851 | | 0.57889 |22 | |05869 2MASS| +723522 |V3522 Sgr |183227.3-321951 |RRAB | 15.7 | 16.4 | |p |35654.829 | | 0.51905 |15 | |05869 2MASS| +723523 |V3523 Sgr |183236.9-351502 |SR | 15.5 | 16.3 | |p |36760. | | | | |05869 2MASS| +723524 |V3524 Sgr |183240.2-360524 |SR | 15.4 | 16.5 | |p |36673. | | | | |05869 2MASS| +723525 |V3525 Sgr |183228.3-320740 |RRAB | 15.5 | 16.6 | |p |35654.855 | | 0.54697 |12 | |05869 2MASS| +723526 |V3526 Sgr |183235.6-334725 |RRAB | 15.2 | 16.2 | |p |35657.797 | | 0.52788 |13 | |05869 2MASS| +723527 |V3527 Sgr |183244.9-355552 |RRAB | 15.4 | 17.2 | |p |35665.831 | | 0.70038 |16 | |05869 2MASS| +723528 |V3528 Sgr |183240.1-332228 |M | 14.7 | 17.2 | |p |36720. | | 267.0 | | |05869 2MASS| +723529 |V3529 Sgr |183240.6-315655 |RRAB | 15.0 | 16.4 | |p |35664.791 | | 0.47177 |16 | |05869 2MASS| +723530 |V3530 Sgr |183248.6-335406 |SRA | 14.6 | 16.7 | |p |35657. | | 291. : | | |05869 2MASS| +723531 |V3531 Sgr |183242.1-310935 |RRAB | 16.2 | 17.4 | |p |35658.871 | | 0.54165 |14 | |05869 2MASS| +723532 |V3532 Sgr |183253.4-341809 |E | 14.8 | 16.2 | |p |36728.902 | | | | |05869 2MASS| +723533 |V3533 Sgr |183256.5-342944 |E | 16.4 | 17.4 | |p |36050.264 | | 7.23850 | | |05869 2MASS| +723534 |V3534 Sgr |183257.9-345916 |M | 16.6 |< 19.9 | |p |36050. :| | 293.0 | | |05869 2MASS| +723535 |V3535 Sgr |183301.8-354833 |RRAB | 15.2 | 16.6 | |p |35686.789 | | 0.62586 |14 | |05869 2MASS| +723536 |V3536 Sgr *|183250.8-321907 |M | 14.9 |< 19.4 | |p |36792. | | 148.4 : | | |05869 2MASS| +723537 |V3537 Sgr *|183306.2-362227 |SRA | 17.0 |< 19.3 | |p |36720. | | 239.5 : | | |05869 2MASS| +723538 |V3538 Sgr |183255.3-315358 |SRA | 15.4 | 17.8 | |p | | | 179.4 | | |05869 2MASS| +723539 |V3539 Sgr |183255.9-312613 |RRAB | 15.6 | 17.2 | |p |35658.900 | | 0.51597 |14 | |05869 2MASS| +723540 |V3540 Sgr |183302.3-332614 |RRAB | 15.4 | 16.5 | |p |35666.788 | | 0.57405 |15 | |05869 2MASS| +723541 |V3541 Sgr |183304.0-333130 |E | 15.5 | 15.9 | |p |36809.665 | | | | |05869 2MASS| +723542 |V3542 Sgr |183301.3-312450 |L | 12.5 | 13.2 | |p | | | | | |05869 UCAC2| +723543 |V3543 Sgr |183308.2-325050 |RRAB | 15.7 | 16.8 | |p |35634.931 | | 0.51978 |18 | |05869 2MASS| +723544 |V3544 Sgr |183307.7-314510 |RRAB | 15.2 | 16.3 | |p |35666.746 | | 0.54659 |18 | |05869 2MASS| +723545 |V3545 Sgr |183320.0-353038 |L | 15.1 | 15.5 | |p | | | | | |05869 2MASS| +723546 |V3546 Sgr |183316.6-341228 |M | 13.8 | 18.8 | |p | | | 332. : | | |05869 01613| +723547 |V3547 Sgr |183321.3-350444 |M | 13.8 |< 18.6 | |p |36810. | | 222.0 | | |05869 GSC | +723548 |V3548 Sgr |183312.2-313806 |RRAB | 15.0 | 16.5 | |p |35658.902 | | 0.72020 |18 | |05869 2MASS| +723549 |V3549 Sgr |183313.3-312227 |RRAB | 15.2 | 16.2 | |p |35661.816 | | 0.53652 |18 | |05869 2MASS| +723550 |V3550 Sgr |183317.5-320944 |RR | 15.2 | 16.4 | |p |35660.852 | | 0.58739 |47 | |05869 2MASS| +723551 |V3551 Sgr *|183325.2-333514 |M | 14.0 | 18.2 | |p |36792. | | 144.6 : | |Me |05869 2MASS| +723552 |V3552 Sgr |183331.1-352728 |RRC | 15.4 | 15.9 | |p |35661.861 | | 0.34976 |52 | |05869 2MASS| +723553 |V3553 Sgr |183323.7-322849 |RRAB | 14.9 | 16.4 | |p |35660.802 | | 0.46447 |16 | |05869 2MASS| +723554 |V3554 Sgr |183331.2-342833 |RRAB | 15.1 | 16.2 | |p |35664.809 | | 0.50794 |13 | |05869 2MASS| +723555 |V3555 Sgr |183332.9-342633 |E | 14.4 | 14.9 | |p |36751.828 | | | | |05869 GSC | +723556 |V3556 Sgr |183340.9-364657 |RRAB | 15.5 | 17.0 | |p |35638.861 | | 0.49644 |15 | |05869 2MASS| +723557 |V3557 Sgr |183332.9-333654 |RR | 15.3 | 16.1 | |p | | | | | |05869 2MASS| +723558 |V3558 Sgr |183349.8-364549 |RRAB | 15.0 | 16.8 | |p |35634.942 | | 0.48635 |25 | |05869 2MASS| +723559 |V3559 Sgr |183336.2-314346 |SR | 16.5 | 18.1 | |p |36752. | | | | |05869 2MASS| +723560 |V3560 Sgr *|183342.3-335559 |SRA | 15.4 | 17.8 | |p |36810. | | 156. : | | |05869 2MASS| +723561 |V3561 Sgr |183340.6-323858 |RRAB | 15.3 | 16.6 | |p |35663.838 | | 0.55809 |15 | |05869 2MASS| +723562 |V3562 Sgr |183349.1-335618 |RRAB | 16.5 | 18.4 | |p |35662.814 | | 0.55636 |14 | |05869 2MASS| +723563 |V3563 Sgr |183343.8-312732 |SR | 15.6 | 16.7 | |p | | | | | |05869 2MASS| +723564 |V3564 Sgr *|183346.6-305516 |SRB: | 15.5 | 16.3 | |p | | | | | |05869 2MASS| +723565 |V3565 Sgr |183352.5-322058 |SR | 15.6 | 16.6 | |p | | | | | |05869 2MASS| +723566 |V3566 Sgr *|183359.3-342429 |SRA | 15.2 | 17.0 | |p | | | 168.4 : | | |05869 2MASS| +723567 |V3567 Sgr |183401.1-340732 |RRAB | 15.4 | 16.7 | |p |35633.980 | | 0.52388 |16 | |05869 2MASS| +723568 |V3568 Sgr |183403.5-330422 |SR | 15.3 | 16.6 | |p |36702. | | | | |05869 GSC | +723569 |V3569 Sgr |183401.1-320818 |E | 15.7 | 17.7 | |p |35662.829 | | | | |05869 2MASS| +723570 |V3570 Sgr |183406.4-334210 |RRAB | 16.0 | 16.6 | |p |35664.749 | | 0.54247 |16 | |05869 2MASS| +723571 |V3571 Sgr |183407.2-321512 |SR | 14.1 | 15.6 | |p |35961. :| | | | |05869 GSC | +723572 |V3572 Sgr |183410.4-330632 |E | 16.6 | 17.8 | |p |36760.840 | | | | |05869 2MASS| +723573 |V3573 Sgr |183408.9-311719 |RRAB | 15.0 | 16.8 | |p |35654.823 | | 0.44846 |14 | |05869 2MASS| +723574 |V3574 Sgr |183423.0-353840 |L | 12.1 | 12.6 | |p | | | | | |05869 | +723575 |V3575 Sgr |183423.3-345631 |E/SD | 16.6 | 18.2 | |p |35636.916 | | 0.75286 | | |05869 2MASS| +723576 |V3576 Sgr |183427.9-360751 |RRC | 16.0 | 16.3 | |p |35658.821 | | 0.36234 |48 | |05869 2MASS| +723577 |V3577 Sgr |183416.4-321420 |L | 14.8 | 15.3 | |p | | | | | |05869 GSC | +723578 |V3578 Sgr |183431.3-345049 |SR | 13.6 | 14.2 | |p | | | | | |05869 GSC | +723579 |V3579 Sgr |183437.5-350002 |L | 15.2 | 16.1 | |p | | | | | |05869 2MASS| +723580 |V3580 Sgr |183438.2-351519 |IS: | 14.7 |< 15.4 | |p | | | | | |05869 2MASS| +723581 |V3581 Sgr |183432.2-323520 |RRAB | 16.5 | 17.3 | |p |35661.819 | | 0.61979 |19 | |05869 2MASS| +723582 |V3582 Sgr |183435.8-334346 |SR | 16.7 | 17.5 | |p |36702. | | | | |05869 2MASS| +723583 |V3583 Sgr *|183438.8-340008 |SRA | 15.9 | 17.9 | |p |36673. | | 188.6 : | | |05869 2MASS| +723584 |V3584 Sgr |183439.7-331812 |RRAB | 14.7 | 16.3 | |p |35658.797 | | 0.45808 |14 | |05869 2MASS| +723585 |V3585 Sgr |183440.3-330458 |RRAB | 15.1 | 16.6 | |p |35655.787 | | 0.37406 |16 | |05869 2MASS| +723586 |V3586 Sgr |183442.8-332448 |L | 15.6 | 15.9 | |p | | | | | |05869 2MASS| +723587 |V3587 Sgr |183446.4-340854 |RRAB | 16.0 | 17.7 | |p |35637.921 | | 0.51767 |13 | |05869 2MASS| +723588 |V3588 Sgr *|183457.1-355719 |RRAB | 15.6 | 17.0 | |p |35655.826 | | 0.43277 |18 | |05869 2MASS| +723589 |V3589 Sgr |183451.1-334544 |CEP: | 15.3 | 16.1 | |p | | | | | |05869 2MASS| +723590 |V3590 Sgr |183446.8-321335 |SRB: | 14.8 | 16.1 | |p | | | | | |05869 2MASS| +723591 |V3591 Sgr |183456.5-345644 |RRAB | 17.7 | 18.8 | |p |35665.874 | | 0.55696 |15 | |05869 USNO | +723592 |V3592 Sgr |183459.2-351627 |L | 15.4 | 16.4 | |p | | | | | |05869 2MASS| +723593 |V3593 Sgr |183502.9-362627 |SR | 14.4 | 15.2 | |p | | | | | |05869 GSC | +723594 |V3594 Sgr |183449.3-312232 |RRAB | 15.5 | 16.2 | |p |35658.861 | | 0.44694 |24 : | |05869 2MASS| +723595 |V3595 Sgr |183448.8-305018 |SR | 16.3 |< 18.5 | |p |36792. | | | | |05869 2MASS| +723596 |V3596 Sgr |183450.9-312524 |L | 14.2 | 15.0 | |p | | | | | |05869 2MASS| +723597 |V3597 Sgr |183453.4-320045 |M: | 14.9 | 18.2 | |p |36778. | | 193. : | | |05869 2MASS| +723598 |V3598 Sgr |183459.6-323736 |L | 15.4 | 16.2 | |p | | | | | |05869 2MASS| +723599 |V3599 Sgr |183513.5-363636 |RRAB | 15.7 | 17.1 | |p |35634.919 | | 0.51658 |14 | |05869 2MASS| +723600 |V3600 Sgr |183504.6-333934 |M | 14.8 |< 18.9 | |p |36785. | | 253.0 | | |05869 2MASS| +723601 |V3601 Sgr |183509.8-335124 |RRAB | 15.1 | 16.2 | |p |35636.883 | | 0.49028 |13 | |05869 2MASS| +723602 |V3602 Sgr |183522.9-362226 |RRAB | 15.1 | 16.6 | |p |35665.880 | | 0.56640 |13 | |05869 2MASS| +723603 |V3603 Sgr |183518.5-344816 |SRB | 15.8 | 16.8 | |p | | | | | |05869 2MASS| +723604 |V3604 Sgr |183525.9-363741 |RRAB | 15.3 | 16.7 | |p |35658.792 | | 0.54560 |18 | |05869 2MASS| +723605 |V3605 Sgr |183520.8-345815 |RR: | 17.7 | 18.2 | |p | | | | | |05869 GSC22| +723606 |V3606 Sgr |183521.0-350652 |M | 13.2 | 15.8 | |p |36702. | | 116. : | | |05869 GSC | +723607 |V3607 Sgr |183521.3-343556 |L | 15.3 | 16.1 | |p | | | | | |05869 2MASS| +723608 |V3608 Sgr |183524.6-353205 |UG | 15.6 | 18.7 | |p | | | | | |05869 2MASS| +723609 |V3609 Sgr |183528.4-353027 |RRAB | 15.5 | 16.2 | |p |35664.798 | | 0.40335 |20 | |05869 2MASS| +723610 |V3610 Sgr |183529.5-353705 |SR | 16.1 | 16.6 | |p |36729. | | | | |05869 2MASS| +723611 |V3611 Sgr |183534.4-363549 |RRAB | 14.9 | 17.0 | |p |35667.847 | | 0.47636 |16 | |05869 2MASS| +723612 |V3612 Sgr |183525.5-334555 |SRB | 15.8 | 17.2 | |p | | | | | |05869 2MASS| +723613 |V3613 Sgr |183525.8-320951 |RRAB | 15.4 | 16.6 | |p |35640.946 | | 0.47443 |22 | |05869 2MASS| +723614 |V3614 Sgr |183530.8-333146 |RR | 16.8 | 17.7 | |p |35664.799 | | 0.22061 |36 | |05869 2MASS| +723615 |V3615 Sgr |183537.8-344748 |L | 16.6 | 17.5 | |p | | | | | |05869 2MASS| +723616 |V3616 Sgr |183533.0-325723 |SRB | 15.3 | 15.8 | |p | | | | | |05869 2MASS| +723617 |V3617 Sgr |183543.0-355150 |RRAB | 15.7 | 16.7 | |p |35662.849 | | 0.45987 |16 | |05869 2MASS| +723618 |V3618 Sgr |183545.6-363606 |RRAB | 14.4 | 16.0 | |p |35666.907 | | 0.65482 |18 | |05869 2MASS| +723619 |V3619 Sgr |183546.1-361645 |RRC | 16.8 | 17.4 | |p |35662.742 | | 0.25979 |40 | |05869 2MASS| +723620 |V3620 Sgr |183549.0-355117 |RRAB | 15.2 | 16.0 | |p |35637.036 | | 0.82761 |20 | |05869 2MASS| +723621 |V3621 Sgr |183540.9-332341 |L | 14.9 | 15.3 | |p | | | | | |05869 GSC | +723622 |V3622 Sgr |183546.3-345231 |E/SD | 14.8 | 17.8 | |p |35663.822 | | 5.98587 | | |05869 2MASS| +723623 |V3623 Sgr |183549.8-340352 |SR | 15.4 | 16.0 | |p |36761. | | | | |05869 2MASS| +723624 |V3624 Sgr |183548.4-333736 |RRAB | 15.5 | 16.7 | |p |35640.911 | | 0.45323 |11 | |05869 2MASS| +723625 |V3625 Sgr *|183542.6-311357 |M | 15.2 |< 18.3 | |p |35688. | | 232.5 : | | |05869 2MASS| +723626 |V3626 Sgr |183552.4-342649 |E/KW: | 16.5 | 17.4 | |p |35663.800 | | 0.40332 | | |05869 2MASS| +723627 |V3627 Sgr |183544.8-315459 |RRAB | 15.6 | 16.9 | |p |35661.776 | | 0.47148 |14 | |05869 2MASS| +723628 |V3628 Sgr |183549.4-324330 |L | 15.4 | 16.3 | |p | | | | | |05869 GSC | +723629 |V3629 Sgr |183558.0-350715 |RRC | 15.0 | 15.8 | |p |35664.888 | | 0.27981 |48 | |05869 2MASS| +723630 |V3630 Sgr |183557.0-341605 |RRAB | 16.4 | 17.7 | |p |35655.696 | | 0.63198 |20 | |05869 2MASS| +723631 |V3631 Sgr |183552.4-321416 |RRAB | 15.3 | 16.7 | |p |35655.817 | | 0.48276 |14 | |05869 2MASS| +723632 |V3632 Sgr |183556.5-332144 |L | 15.9 | 16.6 | |p | | | | | |05869 2MASS| +723633 |V3633 Sgr |183605.4-344551 |CEP: | 14.8 | 16.1 | |p |35699. :| | 68.2 : |55 | |05869 2MASS| +723634 |V3634 Sgr *|183559.5-323848 |SRA | 14.2 | 15.8 | |p |35665. | | 166.8 : | | |05869 GSC | +723635 |V3635 Sgr |183608.2-350820 |SRA | 14.9 | 16.9 | |p |36810. | | 146. : | | |05869 2MASS| +723636 |V3636 Sgr |183614.4-352819 |M | 12.8 | 17.5 | |p |36673. | | 296. : | | |05869 GSC | +723637 |V3637 Sgr |183616.9-361057 |RR | 15.7 | 16.5 | |p |35655.850 | | | | |05869 2MASS| +723638 |V3638 Sgr |183604.9-314632 |RRAB | 15.6 | 16.6 | |p |35632.933 | | 0.37309 |17 | |05869 2MASS| +723639 |V3639 Sgr |183617.3-344656 |RRAB | 15.0 | 16.4 | |p |35662.763 | | 0.61260 |20 | |05869 2MASS| +723640 |V3640 Sgr |183615.9-324351 |UV: | 14.5 | 16.0 | |p | | | | | |05869 2MASS| +723641 |V3641 Sgr |183619.8-325641 |RRAB | 15.4 | 16.8 | |p |35663.905 | | 0.62644 |20 | |05869 2MASS| +723642 |V3642 Sgr |183616.7-304841 |SR | 14.4 | 15.2 | |p |36761. | | | | |05869 GSC | +723643 |V3643 Sgr |183611.2-313026 |RRAB | 16.0 | 16.8 | |p |35661.900 | | 0.64694 |19 | |05869 GSC22| +723644 |V3644 Sgr |183624.8-313839 |RRAB | 15.0 | 16.8 | |p |35662.863 | | 0.54191 |19 | |05869 2MASS| +723645 |V3645 Sgr *|183549.4-184139 |NB | 8. : | 18. | |p |40580. :|1969 | | |pec(NOVA) |06437 06437| +723646 |V3646 Sgr |183631.4-332048 |RRAB | 14.5 | 16.0 | |p |35663.891 | | 0.37360 |21 | |05869 2MASS| +723647 |V3647 Sgr |183625.6-310636 |RRAB | 14.5 | 16.3 | |p |35664.819 | | 0.56045 |15 | |05869 2MASS| +723648 |V3648 Sgr |183635.1-320422 |RRAB | 15.7 | 16.5 | |p |35664.831 | | 0.65109 |16 | |05869 2MASS| +723649 |V3649 Sgr |183642.2-321730 |RRAB | 15.3 | 16.4 | |p |35660.899 | | 0.57473 |18 | |05869 2MASS| +723650 |V3650 Sgr |183654.2-355148 |CEP | 16.3 | 17.1 | |p |35658.96 | | 6.5841 |63 | |05869 2MASS| +723651 |V3651 Sgr |183652.0-333302 |E/SD | 16.4 | 18.3 | |p |36718.834 | | 2.93092 | | |05869 2MASS| +723652 |V3652 Sgr |183656.7-350956 |RRAB | 15.5 | 16.7 | |p |35686.826 | | 0.53408 |13 | |05869 2MASS| +723653 |V3653 Sgr |183658.0-351506 |RRAB | 15.4 | 16.8 | |p |35661.841 | | 0.69938 |15 | |05869 2MASS| +723654 |V3654 Sgr |183655.4-324426 |RR | 15.3 | 16.1 | |p |35658.835 | | | | |05869 2MASS| +723655 |V3655 Sgr |183654.9-320820 |SR | 15.8 | 16.4 | |p |35666. | | | | |05869 2MASS| +723656 |V3656 Sgr |183654.0-311710 |SRB: | 15.6 | 16.3 | |p | | | | | |05869 2MASS| +723657 |V3657 Sgr |183656.3-311924 |SR | 15.5 | 16.7 | |p | | | | | |05869 2MASS| +723658 |V3658 Sgr |183705.7-332533 |RRAB | 15.5 | 16.7 | |p |35665.812 | | 0.43703 |18 | |05869 2MASS| +723659 |V3659 Sgr |183714.2-352756 |RRAB | 16.0 | 16.7 | |p |35655.859 | | 0.57700 |15 | |05869 2MASS| +723660 |V3660 Sgr |183704.2-313905 |RRAB | 14.6 | 16.0 | |p |35636.428 | | 0.45644 |10 | |05869 2MASS| +723661 |V3661 Sgr |183704.7-320159 |RRAB | 16.4 | 18.1 | |p |35662.924 | | 0.57282 |17 | |05869 2MASS| +723662 |V3662 Sgr |183706.9-321923 |L | 14.3 | 15.2 | |p | | | | | |05869 GSC | +723663 |V3663 Sgr |183711.0-333043 |RRC | 15.0 | 15.5 | |p |35658.824 | | 0.29495 |53 | |05869 2MASS| +723664 |V3664 Sgr |183721.4-354257 |RRC | 14.7 | 15.6 | |p |35664.885 | | 0.23815 |43 | |05869 2MASS| +723665 |V3665 Sgr |183707.4-305215 |M | 14.8 |< 18.3 | |p |36810. | | | | |05869 2MASS| +723666 |V3666 Sgr |183723.5-344213 |RRAB | 14.7 | 16.6 | |p |35660.829 | | 0.60338 |16 | |05869 2MASS| +723667 |V3667 Sgr |183715.2-310234 |RRAB | 15.4 | 16.9 | |p |35658.878 | | 0.61661 |18 | |05869 2MASS| +723668 |V3668 Sgr |183726.8-335607 |RRC | 15.1 | 15.9 | |p |35661.868 | | 0.36815 |42 | |05869 2MASS| +723669 |V3669 Sgr |183740.2-362233 |RRAB | 17.0 | 18.2 | |p |35663.848 | | 0.58816 |21 | |05869 2MASS| +723670 |V3670 Sgr |183729.2-323631 |RRAB | 15.0 | 16.0 | |p |35654.808 | | 0.59810 |22 | |05869 2MASS| +723671 |V3671 Sgr |183736.5-344609 |RRAB | 16.4 | 17.4 | |p |35654.786 | | 0.39697 |20 | |05869 2MASS| +723672 |V3672 Sgr |183735.5-341227 |SRA | 15.8 | 18.0 | |p |36725. | | 287.5 | | |05869 2MASS| +723673 |V3673 Sgr |183732.0-315020 |L | 17.6 | 18.1 | |p | | | | | |05869 2MASS| +723674 |V3674 Sgr |183736.1-325928 |RRAB | 15.2 | 16.1 | |p |35660.818 | | 0.57961 |17 | |05869 2MASS| +723675 |V3675 Sgr |183744.1-353231 |RRAB | 15.9 | 17.0 | |p |35664.817 | | 0.55975 |15 | |05869 2MASS| +723676 |V3676 Sgr |183743.3-344123 |RRAB | 15.3 | 16.2 | |p |35655.864 | | 0.44875 |25 | |05869 2MASS| +723677 |V3677 Sgr |183745.4-354745 |RRAB | 15.8 | 16.9 | |p |35657.835 | | 0.52947 |11 | |05869 2MASS| +723678 |V3678 Sgr |183754.3-354137 |RRAB | 16.0 | 18.1 | |p |35689.786 | | 0.45778 |15 : | |05869 GSC22| +723679 |V3679 Sgr |183741.4-304813 |M | 13.5 | 18.4 | |p |35688. | | 229.0 | |Me |05869 2MASS| +723680 |V3680 Sgr |183750.0-321613 |E/KW: | 16.7 | 17.6 | |p |35657.833 | | 0.24712 | | |05869 2MASS| +723681 |V3681 Sgr |183801.0-340602 |RR | 15.8 | 17.0 | |p |35661.900 | | | | |05869 2MASS| +723682 |V3682 Sgr |183758.2-332924 |RRAB | 16.4 | 17.4 | |p |35662.945 | | 0.43059 |20 | |05869 2MASS| +723683 |V3683 Sgr |183758.3-321956 |RRAB | 15.6 | 17.2 | |p |35658.796 | | 0.53077 |21 : | |05869 2MASS| +723684 |V3684 Sgr |183807.5-352640 |RRAB | 15.2 | 16.6 | |p |35657.822 | | 0.55903 |17 | |05869 2MASS| +723685 |V3685 Sgr |183755.4-312538 |L | 16.1 | 17.1 | |p | | | | | |05869 2MASS| +723686 |V3686 Sgr |183811.9-361858 |RRAB | 15.9 | 17.8 | |p |35664.825 | | 0.56026 |13 | |05869 2MASS| +723687 |V3687 Sgr |183820.6-364025 |SR | 14.8 | 16.1 | |p |36810. | | | | |05869 GSC | +723688 |V3688 Sgr |183810.6-330743 |RR | 14.7 | 15.8 | |p |35665.831 | | | | |05869 GSC | +723689 |V3689 Sgr |183814.2-334745 |RR | 15.2 | 17.1 | |p |35667.900 | | | | |05869 2MASS| +723690 |V3690 Sgr |183807.9-313619 |RR: | 16.1 | 16.5 | |p | | | | | |05869 2MASS| +723691 |V3691 Sgr |183823.1-342539 |RRAB | 16.3 | 17.7 | |p |35664.851 | | 0.56578 |22 | |05869 2MASS| +723692 |V3692 Sgr |183831.2-325447 |SR | 14.7 | 15.9 | |p |35665. | | | | |05869 2MASS| +723693 |V3693 Sgr |183837.8-332810 |SR | 16.0 | 16.4 | |p |36761. | | | | |05869 2MASS| +723694 |V3694 Sgr |183847.1-353413 |RRAB | 15.0 | 15.8 | |p |35661.835 | | 0.58554 |18 | |05869 2MASS| +723695 |V3695 Sgr |183846.6-351104 |RRAB | 15.3 | 17.4 | |p |35665.797 | | 0.40496 |20 | |05869 2MASS| +723696 |V3696 Sgr |183846.9-343904 |E/SD | 16.3 | 19.3 | |p |35664.849 | | 2.54207 | | |05869 2MASS| +723697 |V3697 Sgr |183847.5-333614 |L: | 14.1 | 14.6 | |p | | | | | |05869 GSC | +723698 |V3698 Sgr |183857.5-355053 |L: | 14.6 | 15.9 | |p | | | | | |05869 GSC | +723699 |V3699 Sgr |183844.3-311007 |SRB: | 14.9 | 16.6 | |p | | | | | |05869 2MASS| +723700 |V3700 Sgr |183903.3-360200 |SRB | 17.0 | 18.1 | |p | | | | | |05869 2MASS| +723701 |V3701 Sgr |183852.7-315000 |E/SD | 16.8 | 18.6 | |p |35667.805 | | 2.19360 | | |05869 2MASS| +723702 |V3702 Sgr |183854.0-323607 |SRA | 15.9 | 17.6 | |p | | | 158.2 | | |05869 2MASS| +723703 |V3703 Sgr |183858.6-324516 |RRAB | 15.1 | 16.5 | |p |35665.805 | | 0.61994 |17 | |05869 2MASS| +723704 |V3704 Sgr |183914.1-362311 |RRAB | 15.2 | 16.6 | |p |35664.841 | | 0.53030 |15 | |05869 2MASS| +723705 |V3705 Sgr |183906.2-325133 |L | 15.0 | 16.0 | |p | | | | | |05869 2MASS| +723706 |V3706 Sgr |183906.4-315049 |SR | 14.2 | 14.6 | |p |36752. | | | | |05869 GSC | +723707 |V3707 Sgr |183922.6-355837 |I: | 15.0 | 17.1 | |p | | | | | |05869 2MASS| +723708 |V3708 Sgr |183914.2-330608 |RRC | 14.8 | 15.1 | |p |35633.974 | | 0.34178 |40 | |05869 2MASS| +723709 |V3709 Sgr *|183908.7-310338 |M | 15.3 | 19.7 | |p |36729. | | 166.0 : | | |05869 GSC | +723710 |V3710 Sgr |183922.5-353917 |E | 17.0 | 17.5 : | |p |36751.818 | | | | |05869 2MASS| +723711 |V3711 Sgr |183921.6-323556 |RRAB | 17.4 | 20.2 | |p |35632.884 | | 0.47197 |17 | |05869 GSC22| +723712 |V3712 Sgr |183918.5-305557 |M | 15.0 | 19.4 | |p |35961. | | 232.0 | | |05869 2MASS| +723713 |V3713 Sgr |183931.6-343425 |RR | 15.7 | 16.6 | |p | | | | | |05869 2MASS| +723714 |V3714 Sgr |183930.8-331333 |E: | 15.9 | 16.5 | |p | | | | | |05869 2MASS| +723715 |V3715 Sgr |183928.1-320909 |RRAB | 15.8 | 17.2 | |p |35633.997 | | 0.52997 |13 | |05869 2MASS| +723716 |V3716 Sgr |183948.0-355530 |L: | 14.7 | 15.0 | |p | | | | | |05869 2MASS| +723717 |V3717 Sgr |183941.4-333322 |M | 14.8 |< 18.4 | |p |35635. | | | | |05869 2MASS| +723718 |V3718 Sgr *|183904.6-210848 |RRAB | 12.5 | 15.2 | |p |38563.748 | | 0.4052151 |20 : | |05916 05916| +723719 |V3719 Sgr |183938.7-314909 |RRAB | 15.6 | 17.1 | |p |35656.798 | | 0.47381 |20 | |05869 2MASS| +723720 |V3720 Sgr |183946.3-343121 |CEP | 15.1 | 16.3 | |p |36718.7 | | 21.836 |45 | |05869 2MASS| +723721 |V3721 Sgr |183939.8-314305 |M | 15.0 | 17.9 | |p |36729. | | 188.8 | | |05869 2MASS| +723722 |V3722 Sgr |183939.2-312008 |RRAB | 15.4 | 16.7 | |p |35666.753 | | 0.51127 |09 | |05869 2MASS| +723723 |V3723 Sgr | | | | | | | | | | | | |=V1635 Sgr +723724 |V3724 Sgr |183940.5-312357 |SR | 13.5 | 14.5 | |p | | | | | |05869 GSC | +723725 |V3725 Sgr |183942.8-311639 |SRB | 16.2 | 16.9 | |p | | | | | |05869 2MASS| +723726 |V3726 Sgr |183958.6-354718 |RRAB | 14.8 | 16.4 | |p |35655.827 | | 0.46948 |12 | |05869 2MASS| +723727 |V3727 Sgr |184000.2-350614 |E | 16.3 | 17.8 | |p |35662.802 | | 0.33291 | | |05869 2MASS| +723728 |V3728 Sgr |183956.2-331710 |SR | 15.1 | 16.0 | |p |36729. | | | | |05869 2MASS| +723729 |V3729 Sgr | | | | | | | | | | | | |=V2371 Sgr +723730 |V3730 Sgr |183958.1-333053 |RRC | 15.1 | 15.8 | |p |35664.746 | | 0.22095 |46 : | |05869 GSC22| +723731 |V3731 Sgr |184010.1-354506 |RRAB | 14.9 | 16.2 | |p |35662.789 | | 0.51563 |11 | |05869 2MASS| +723732 |V3732 Sgr |184014.9-364934 |RRAB | 14.7 | 16.5 | |p |35636.992 | | 0.51834 |18 | |05869 2MASS| +723733 |V3733 Sgr |184003.0-320732 |E | 17.0 | 19.1 | |p |36718.855 | | | | |05869 2MASS| +723734 |V3734 Sgr |184010.5-335131 |SRA | 15.5 | 17.0 | |p |35668. | | 102.0 | | |05869 2MASS| +723735 |V3735 Sgr |184013.9-351405 |RRAB | 16.0 | 16.9 | |p |35663.884 | | 0.58138 |22 | |05869 2MASS| +723736 |V3736 Sgr |184020.1-363357 |SRB: | 14.5 | 15.8 | |p | | | | | |05869 2MASS| +723737 |V3737 Sgr |184016.4-320531 |SRB: | 17.0 | 19.1 | |p | | | | | |05869 USNO | +723738 |V3738 Sgr |184014.8-310709 |RRAB | 15.0 | 16.4 | |p |35640.967 | | 0.47610 |17 | |05869 2MASS| +723739 |V3739 Sgr |184028.8-354048 |SRB: | 15.0 | 15.2 | |p | | | | | |05869 2MASS| +723740 |V3740 Sgr |184033.5-362629 |RRAB | 14.8 | 16.4 | |p |35656.827 | | 0.66247 |23 | |05869 2MASS| +723741 |V3741 Sgr |184023.1-322756 |RR | 15.6 | 17.0 | |p | | | | | |05869 2MASS| +723742 |V3742 Sgr |184024.3-321223 |SR | 16.0 | 17.1 | |p |36730. | | | | |05869 2MASS| +723743 |V3743 Sgr |184026.6-324533 |SRB | 15.2 | 16.6 | |p | | | | | |05869 2MASS| +723744 |V3744 Sgr |184033.5-335604 |SRA | 14.6 | 16.9 | |p |35662. | | 203.5 | | |05869 2MASS| +723745 |V3745 Sgr |184036.6-344410 |RR | 15.2 | 15.9 | |p |35665.811 | | 0.33891 |23 : | |05869 2MASS| +723746 |V3746 Sgr | | | | | | | | | | | | |=V0948 Sgr +723747 |V3747 Sgr |184029.4-320304 |RRAB | 15.4 | 17.0 | |p |35689.747 | | 0.44858 |18 | |05869 2MASS| +723748 |V3748 Sgr *|184040.5-350914 |RRAB | 15.7 | 16.8 | |p |35660.812 | | 0.43996 : |23 | |05869 2MASS| +723749 |V3749 Sgr |184035.0-330029 |RRAB | 15.9 | 17.6 | |p |35655.812 | | 0.59799 |18 | |05869 2MASS| +723750 |V3750 Sgr |184030.2-310820 |RRAB | 14.8 | 16.4 | |p |35632.872 | | 0.47199 |19 | |05869 2MASS| +723751 |V3751 Sgr |184038.2-334830 |RRAB | 14.6 | 16.6 | |p |35657.817 | | 0.47461 |09 | |05869 2MASS| +723752 |V3752 Sgr |184044.0-353226 |E | 15.9 | 18.5 | |p |35668.843 | | | | |05869 2MASS| +723753 |V3753 Sgr |184040.1-323413 |RR | 15.6 | 16.6 | |p |35657.840 | | | | |05869 2MASS| +723754 |V3754 Sgr |184042.9-305320 |RRAB | 15.9 | 17.4 | |p |35662.768 | | 0.60566 |19 | |05869 2MASS| +723755 |V3755 Sgr |184059.6-345318 |RRAB | 15.4 | 16.5 | |p |35661.804 | | 0.71332 |18 | |05869 2MASS| +723756 |V3756 Sgr |184057.5-333458 |SRB | 15.6 | 16.2 | |p | | | | | |05869 2MASS| +723757 |V3757 Sgr |184112.2-363138 |SR | 14.6 | 15.3 | |p |35662. | | | | |05869 2MASS| +723758 |V3758 Sgr |183214.2-310934 |RRAB | 15.7 | 17.6 | |p |35664.838 | | 0.52231 |17 | |05869 2MASS| +723759 |V3759 Sgr |184110.5-342527 |L | 15.9 | 16.2 | |p | | | | | |05869 2MASS| +723760 |V3760 Sgr |184110.1-330007 |M | 14.0 | 16.9 | |p |36761. | | 232. : | | |05869 2MASS| +723761 |V3761 Sgr |184110.7-332848 |E | 15.9 | 16.7 | |p |35687.762 | | | | |05869 2MASS| +723762 |V3762 Sgr |184111.2-323118 |SR | 15.8 | 17.1 | |p |36750. | | | | |05869 2MASS| +723763 |V3763 Sgr |184111.1-323429 |RRC | 15.8 | 16.6 | |p |35658.861 | | 0.26383 |33 | |05869 2MASS| +723764 |V3764 Sgr |184117.0-325131 |RRAB | 14.5 | 16.3 | |p |35662.841 | | 0.64807 |14 | |05869 2MASS| +723765 |V3765 Sgr *|184118.3-322405 |RRAB | 14.3 | 15.9 | |p |35662.824 | | 0.50932 |15 | |05869 01613| +723766 |V3766 Sgr |184120.9-330540 |RRC | 16.5 | 17.1 | |p |35666.779 | | 0.25957 |54 | |05869 2MASS| +723767 |V3767 Sgr |184124.9-341433 |DSCT | 16.0 | 16.8 | |p |35657.845 | | 0.11063 |41 | |05869 2MASS| +723768 |V3768 Sgr |184118.9-314328 |RRAB | 15.2 | 17.2 | |p |35660.779 | | 0.52361 |15 | |05869 2MASS| +723769 |V3769 Sgr |184124.5-312536 |L: | 15.4 | 15.8 | |p | | | | | |05869 2MASS| +723770 |V3770 Sgr |184143.4-363951 |L | 14.5 | 15.1 | |p | | | | | |05869 GSC | +723771 |V3771 Sgr |184140.1-340154 |RRAB | 15.2 | 16.6 | |p |35660.826 | | 0.53793 |20 | |05869 2MASS| +723772 |V3772 Sgr |184144.9-350024 |RRAB | 15.5 | 16.4 | |p |35665.744 | | 0.52147 |12 | |05869 2MASS| +723773 |V3773 Sgr |184144.8-350845 |SRB | 14.7 | 16.3 | |p | | | | | |05869 2MASS| +723774 |V3774 Sgr |184141.0-325434 |UG | 14.7 |< 19.0 | |p | | | | | |05869 2MASS| +723775 |V3775 Sgr |184142.5-311138 |M | 13.1 | 18.3 : | |p |36750. | | | | |05869 2MASS| +723776 |V3776 Sgr |184148.8-314359 |RRAB | 16.0 | 17.4 | |p |35640.962 | | 0.52888 |12 | |05869 2MASS| +723777 |V3777 Sgr |184157.4-321838 |RRAB | 15.2 | 16.5 | |p |35662.842 | | 0.45271 |23 | |05869 GSC22| +723778 |V3778 Sgr |184157.4-311417 |SR | 14.7 | 15.4 | |p |35635. -| | | | |05869 2MASS| +723779 |V3779 Sgr |184200.5-322608 |RRAB | 15.2 | 16.7 | |p |35668.892 | | 0.50980 |14 | |05869 2MASS| +723780 |V3780 Sgr |184202.6-312311 |SR | 14.3 | 15.2 | |p |35667. | | | | |05869 2MASS| +723781 |V3781 Sgr |184212.1-324115 |SR | 15.9 | 17.7 | |p |36778. | | | | |05869 2MASS| +723782 |V3782 Sgr |184224.3-361424 |L | 14.4 | 15.0 | |p | | | | | |05869 GSC | +723783 |V3783 Sgr *|184212.6-322126 |RRAB | 15.3 | 17.0 | |B |43348.663 | | 0.478 |20 : | |09884 09884| +723784 |V3784 Sgr *|184217.4-330008 |M | 16.7 |< 19.1 | |p |35961. | | 118.0 : | | |05869 2MASS| +723785 |V3785 Sgr |184214.0-312635 |RRAB | 15.8 | 17.3 | |p |35636.958 | | 0.44894 |12 | |05869 2MASS| +723786 |V3786 Sgr |184222.5-314231 |SR | 14.9 | 16.5 | |p |35666. | | | | |05869 2MASS| +723787 |V3787 Sgr |184420.9-201552 |RRAB | 14.2 | 15.5 | |p |33858.392 | | 0.5633812 | | |05917 05917| +723788 |V3788 Sgr *|185730.0-363437 |S: | 11.6 | 13.6 | |p | | | | | |05870 05870| +723789 |V3789 Sgr |190007.9-145901 |SRB | 12.1 | 14.9 | |p |29909. | | 96. : | | |04231 04231| +723790 |V3790 Sgr |193320.3-163637 |LB: | 7.24 | 7.54 | |V | | | | |M2 |05918 BD | +723791 |V3791 Sgr *|180223.1-230145 |INS | 12.9 | 15.1 | |I | | | | | |04407 06378| +723792 |V3792 Sgr *|180854.0-252823 |EB/DM | 6.43 | 6.88 | 6.81 |V |41879.349 | | 2.248082 | |B5 |04831 05151| +723793 |V3793 Sgr |181150.8-364005 |M: | 15.0 |< 16.5 | |p |25440. | | | | |00251 06286| +723794 |V3794 Sgr |181248.4-215439 |EA | 12.0 | 12.7 | |p |40058.752 | | 0.9541102 |16 | |06379 06379| +723795 |V3795 Sgr |181323.6-254641 |RCB | 11.5 |< 15.5 | |p | | | | |pec |06274 06274| +723796 |V3796 Sgr |181405.3-270022 |LB: | 12.5 | 13.7 | |p | | | | |M5: |06278 06278| +723797 |V3797 Sgr |181439.6-185442 |SRB: | 13.4 | 14.4 | |p | | | 30. : | |M7 |06278 06278| +723798 |V3798 Sgr |181525.7-193915 |RV: | 13.7 | 15.8 | |p | | | | | |06278 06278| +723799 |V3799 Sgr |181734.0-255452 |SR | 13.5 | 15.5 | |p | | | 60. | |M: |06278 06278| +723800 |V3800 Sgr |182002.2-264051 |RR | 14.0 | 15.4 | |p | | | | | |06278 06278| +723801 |V3801 Sgr |181942.7-185438 |RR | 13.6 | 14.3 | |p | | | | | |06278 06278| +723802 |V3802 Sgr |182001.5-235108 |LB: | 14.3 | 15.4 | |p | | | | |M5: |06278 06278| +723803 |V3803 Sgr |182012.3-232051 |LB: | 12.8 | 13.8 | |p | | | | |S4,3(M7) |06278 06278| +723804 |V3804 Sgr *|182128.8-313205 |ZAND | 11.6 | 13.1 | |p | | | | |pec(e+cont) |09891 09822| +723805 |V3805 Sgr |182210.0-242242 |SR: | 14.2 | 15.4 | |p | | | | |M5 |06278 06278| +723806 |V3806 Sgr |182220.5-231601 |E | 14.3 |< 16.2 | |p |26591.361 | | | | |06278 06278| +723807 |V3807 Sgr |182236.1-273151 |LB: | 13.7 | 14.6 | |p | | | | |M1: |06278 06278| +723808 |V3808 Sgr |182232.0-250732 |RV: | 14.2 | 15.4 | |p | | | | |M5 |06278 06278| +723809 |V3809 Sgr |182225.8-223713 |EW: | 13.5 | 14.3 | |p | | | 0.78 : | | |06278 06278| +723810 |V3810 Sgr |182321.3-222218 |EW: | 13.5 | 14.2 | |p | | | | | |06278 06278| +723811 |V3811 Sgr *|182329.0-215310 |ZAND | 14.6 |< 16.5 | |p | | | 600. : | |Mea+pec(e) |09892 06278| +723812 |V3812 Sgr |182341.4-232915 |SR: | 15.0 | 16.2 | |p | | | | |M5: |06278 06278| +723813 |V3813 Sgr |182410.2-271944 |LB: | 13.8 | 15.1 | |p | | | | |M6 |06278 06278| +723814 |V3814 Sgr |182409.4-255419 |LB: | 14.1 | 15.2 | |p | | | | |M |06278 06278| +723815 |V3815 Sgr |182509.7-262637 |SR | 14.0 | 15.4 | |p | | | | |M4 |06278 06278| +723816 |V3816 Sgr |182501.9-230804 |M: | 13.0 | 16. : | |p | | | | |C(R) |06278 06278| +723817 |V3817 Sgr *|182553.1-242156 |RR: | 15.0 | 16.0 | |p | | | | | |06278 06278| +723818 |V3818 Sgr |182617.2-231015 |LB: | 13.1 | 14.0 | |p | | | | |M3 |06278 06278| +723819 |V3819 Sgr *|182611.6-211319 |RRAB | 12.5 | 14.3 | |p |31674.200 | | 0.524608 | | |06064 06278| +723820 |V3820 Sgr |182622.3-241417 |CEP: | 13.5 | 14.8 | |p | | | 14. : | | |06278 06278| +723821 |V3821 Sgr |182623.3-220422 |EA | 13.7 | 14.6 | |p | | | | | |06278 06278| +723822 |V3822 Sgr |182629.6-224624 |LB: | 13.8 | 14.6 | |p | | | | |M5 |06278 06278| +723823 |V3823 Sgr |182647.1-241116 |E: | 14.8 | 16.0 | |p | | | | | |06278 06278| +723824 |V3824 Sgr |182656.2-241817 |RR: | 13.6 | 14.3 | |p | | | | | |06278 06278| +723825 |V3825 Sgr |182705.5-260832 |LB: | 13.6 | 15.0 | |p | | | | |M6 |06278 06278| +723826 |V3826 Sgr |182708.3-233606 |SR: | 14.7 | 16.1 | |p | | | | |M: |06278 06278| +723827 |V3827 Sgr |182714.7-243513 |LB: | 14.9 | 15.7 | |p | | | | |M8 |06278 06278| +723828 |V3828 Sgr |182802.0-273841 |LB | 13.9 | 15.9 | |B | | | | |M4 |06278 06278| +723829 |V3829 Sgr *|182819.3-231717 |RV: | 14.5 | 15.8 | |p | | | | |M3 |06278 06278| +723830 |V3830 Sgr |182845.4-233154 |LB | 14.4 | 15.0 | |p | | | | |M7 |06278 06278| +723831 |V3831 Sgr |182852.7-215941 |RR: | 15.4 | 16.2 | |p | | | | | |06278 06278| +723832 |V3832 Sgr *|182900.8-243639 |LB: | 13.4 | 14.6 | |p | | | | |SC |06278 06278| +723833 |V3833 Sgr |182906.1-263755 |LB: | 14.2 | 15.6 | |p | | | | |M0: |06278 06278| +723834 |V3834 Sgr *|182931.4-322237 |SRB: | 15.2 | 16.3 | |p | | | | | |05869 UCAC2| +723835 |V3835 Sgr |182914.2-252151 |SRB: | 13.7 | 14.7 | |p | | | 53. : | |M3-M7 |06278 06278| +723836 |V3836 Sgr |182918.4-243336 |M | 14.2 |< 16.0 | |p |26120. | | 320. | |M8 |06272 06278| +723837 |V3837 Sgr *|182917.9-223246 |RR: | 14.3 | 15.2 | |p | | | | | |06278 06278| +723838 |V3838 Sgr *|182959.0-231058 |LB: | 14.6 | 15.5 | |p | | | | |M8 |06278 06278| +723839 |V3839 Sgr |183006.7-231516 |SRA | 14.5 | 15.8 | |p |26560. | | 210. | |M6 |06274 06274| +723840 |V3840 Sgr |183017.2-235911 |LB | 14.9 | 16.1 | |p | | | | |M7 |06278 06278| +723841 |V3841 Sgr *|183030.3-200252 |M | 12.3 | 14.9 : | |p |41140. | | 367. | |M7e-M8e |06279 06279| +723842 |V3842 Sgr *|183041.3-235750 |RR: | 14.5 | 16.0 | |p | | | | | |06278 06278| +723843 |V3843 Sgr *|183048.6-233834 |RR | 14.3 | 15.5 | |p | | | | | |06278 06278| +723844 |V3844 Sgr |183059.7-262925 |EA | 13.8 | 14.9 | |p | | | | | |06278 06278| +723845 |V3845 Sgr |183151.4-251249 |RR | 14.1 | 15.5 | |p | | | | | |06278 06278| +723846 |V3846 Sgr |183211.9-220254 |SR: | 14.0 | 16.4 | |p |24765. | | | |M9 |06278 06278| +723847 |V3847 Sgr |183323.6-221411 |RR: | 14.7 | 16.3 | |p | | | | | |06278 06278| +723848 |V3848 Sgr |183347.0-234336 |LB: | 13.9 | 14.6 | |p | | | | |M6 |06278 06278| +723849 |V3849 Sgr |183405.9-233227 |LB: | 14.1 | 14.9 | |p | | | | |M7 |06278 06278| +723850 |V3850 Sgr |183409.2-231940 |L: | 14.7 | 16.0 | |p | | | | | |06278 06278| +723851 |V3851 Sgr |183458.1-251827 |RR: | 14.2 | 15.0 | |p | | | | | |06278 06278| +723852 |V3852 Sgr |183506.5-250251 |RR: | 14.5 | 16.2 | |p | | | | | |06278 06278| +723853 |V3853 Sgr *|183503.5-235116 |RRAB | 14.2 | 15.7 | |p |42594.580 | | 0.6245374 |20 | |09894 08792| +723854 |V3854 Sgr |183520.5-232432 |LB: | 13.7 | 14.7 | |p | | | | |M2 |06278 06278| +723855 |V3855 Sgr *|183610.1-240549 |SRC: | 12.3 | 14.0 | |p |37138.4 | | 95. | |M: |09901 08792| +723856 |V3856 Sgr |183651.3-221537 |RR: | 14.8 | 15.6 | |p | | | | | |06278 06278| +723857 |V3857 Sgr *|183720.6-244213 |LB: | 13.9 | 14.9 | |p | | | | |C(R) |06278 06278| +723858 |V3858 Sgr |183732.6-223409 |I: | 14.8 | 16.2 | |p | | | | | |06278 06278| +723859 |V3859 Sgr |183832.3-274205 |RR: | 11.8 | 12.6 | |p | | | | | |06278 06278| +723860 |V3860 Sgr |183818.7-212418 |LB: | 14.7 | 16.0 | |p | | | | |M2 |06278 06278| +723861 |V3861 Sgr |183854.6-264827 |EA | 13.3 | 14.6 | |p | | | | | |06278 06278| +723862 |V3862 Sgr |183845.5-224045 |RR: | 13.8 | 15.4 | |p | | | | | |06278 06278| +723863 |V3863 Sgr |184012.3-243106 |EW/KW | 11.7 | 12.5 | |p | | | 0.364913 | | |06278 09903| +723864 |V3864 Sgr |184051.6-264722 |LB: | 12.7 | 13.4 | |p | | | | |M5: |06278 06278| +723865 |V3865 Sgr |184110.6-231628 |RR: | 15.0 | 16.3 : | |p | | | | | |06278 06278| +723866 |V3866 Sgr |184203.2-194636 |E: | 11.8 | 13.9 | |p | | | | | |06278 06278| +723867 |V3867 Sgr *|184258.7-302851 |M | 12.5 | 17. : | |p |37100. | | 422. | | |06272 06272| +723868 |V3868 Sgr *|184327.5-211154 |SRA | 14.2 | 15.8 | |p |36100. | | 263. |50 | |05595 06278| +723869 |V3869 Sgr |184336.8-225630 |RR: | 14.0 | 15.0 | |p | | | | | |06278 06278| +723870 |V3870 Sgr |184409.1-225415 |E | 14.2 | 15.4 | |p | | | | | |06278 06278| +723871 |V3871 Sgr |184440.7-192259 |I: | 14.8 | 16.0 | |p | | | | | |06278 06278| +723872 |V3872 Sgr |200239.5-274236 |LB | 4.45 | 4.64 | |V | | | | |M4III |03712 08667| +723873 |V3873 Sgr |182651.6-321736 |SRA | 12.2 | 13.6 | |p |41180. | | 200. | |Me |06279 06279| +723874 |V3874 Sgr *|182910.2-282400 |M | 12.6 |< 16. | |p |39370. | | 114.5 | | |06279 06279| +723875 |V3875 Sgr *| | | | | | | | | | | | |=V3841 Sgr +723876 |V3876 Sgr *|183312.7-200550 |M | 9.4 | 15.2 | |p |41484. | | 352. | |M8e |09908 06279| +723877 |V3877 Sgr |183625.7-352650 |SRB | 6.84 | 7.30 | |V |40760. | | 50. : | |M5III |06351 CoD | +723878 |V3878 Sgr |184257.5-280626 |M | 11.7 |< 14.5 | |p |40120. | | 345. | | |06279 06279| +723879 |V3879 Sgr *|184255.1-191703 |SRB | 6.05 | 6.58 | |V | | | 50. : | |M5.2III |06645 BD | +723880 |V3880 Sgr *|190854.9-221419 |M | 1.7 | 3.1 | |K |40645. | | 510. | |M8: |07343 2MASS| +723881 |V3881 Sgr |193359.4-425744 |M | 12. | 15. | |p | | | | |Me |00085 02386| +723882 |V3882 Sgr |193620.0-182918 |M | 12.2 |< 16. | |p | | | | |Me |04579 2MASS| +723883 |V3883 Sgr |193906.5-161658 |M | 12.8 |< 16. | |p | | | | |Me |04579 UCAC2| +723884 |V3884 Sgr |194138.0-271021 |M: | 12. |< 13. | |p | | | | |Me |00085 02383| +723885 |V3885 Sgr *|194740.5-420026 |NL+ZZ: | 10.27 | 10.51 | |V | | | | |pec |07217 CoD | +723886 |V3886 Sgr *|195606.0-425713 |EA: | 11.5 | 12.3 | |p |28667.550 | | 1.407685 | | |06871 06871| +723887 |V3887 Sgr |195751.8-284502 |SR | 12. | 13.5 | |p | | | | |Me |00085 02384| +723888 |V3888 Sgr |174840.5-184537 |NA | 7.5 : |< 20. | |V |42327. :|1974 | | |pec(NOVA) |09909 07479| +723889 |V3889 Sgr |175821.5-282154 |NA | 8.4 | 20. : | |p |42607. |1975 | | |ea |07480 09910| +723890 |V3890 Sgr |183043.3-240109 |ZAND | 8.4 : | 17.2 | |p | | | | |pec(e+cont) |09472 09472| +723891 |V3891 Sgr |183526.5-315041 |M | 15.2 | 17.8 : | |p |36761. | | | | |05869 2MASS| +723892 |V3892 Sgr |174445.8-271345 |GCAS | 8.44 | 8.95 | |V | | | | |B1:III:nne |07767 04947| +723893 |V3893 Sgr *|174547.5-261027 |WR | 14.0 | 14.8 | |V | | | | |WC6-7 |05098 09911| +723894 |V3894 Sgr *|174827.8-265830 |EB/D | 6.21 | 6.39 | 6.37 |V |44569.775 | | 2.61862 | |B3IVe |09912 CoD | +723895 |V3895 Sgr |175824.2-291548 |EA | 9.0 | 9.5 | |p |28664.492 | | | |A0 |02448 CoD | +723896 |V3896 Sgr |180234.9-295456 |LB: | 17.9 | 18.6 | |p | | | | |M6: |01680 01680| +723897 |V3897 Sgr |180248.2-301018 |SR: | 17.5 | 18.5 | |p |32350.923 | | 13.0 : | | |01680 01680| +723898 |V3898 Sgr |180304.5-300404 |SRB: | 17.2 | 17.7 | |p |32801.0 | | 57.8 : | |M4 |00001 01680| +723899 |V3899 Sgr *|180247.9-231902 |INSB | 11.7 | 13.0 | |I | | | | |M |04407 06378| +723900 |V3900 Sgr *|180331.2-300102 |LB: | 17.0 | 17.6 | |p | | | | |M6 |01680 01680| +723901 |V3901 Sgr |180442.5-295247 |SR: | 18.3 |< 18.8 | |p |31943. | | | | |01680 01680| +723902 |V3902 Sgr |180840.5-311210 |M: | 15.2 | 18. | |p | | | | |M9 |04488 UCAC2| +723903 |V3903 Sgr *|180917.7-235918 |INA: | 7.00 | 7.45 | |V | | | | |O8Vn |06866 09913| +723904 |V3904 Sgr |181106.1-161304 |M: | 13.4 | 15.2 | |I | | | 360. : | | |07779 2MASS| +723905 |V3905 Sgr |181113.4-160329 |SR: | 14.7 | 16.5 | |I | | | | | |07779 2MASS| +723906 |V3906 Sgr |181402.4-363625 |RRAB | 15.4 | 16.3 | |p |35657.902 | | 0.58208 |22 | |05869 GSC22| +723907 |V3907 Sgr *|181401.7-280550 |SR: | 16.8 | 18.0 | |p |33865. | | | | |03909 03909| +723908 |V3908 Sgr |181334.7-161350 |M | 8.4 | 11.0 | |I |40784. | | 279. | | |07779 UCAC2| +723909 |V3909 Sgr |181422.0-275105 |UG: | 15.5 | 16.6 | |p |34540. | | | | |03909 03909| +723910 |V3910 Sgr |181423.5-274234 |CEP: | 16.9 | 17.6 | |p | | | 6.2 : | | |03909 03909| +723911 |V3911 Sgr |181428.4-275521 |SR: | 15.5 | 16.5 | |p | | | | | |03909 03909| +723912 |V3912 Sgr |181430.9-275718 |SR: | 14.7 | 16.5 | |p |34602. | | | | |03909 03909| +723913 |V3913 Sgr |181436.5-275827 |SR: | 15.4 | 16.8 | |p | | | | | |03909 03909| +723914 |V3914 Sgr |181449.0-304329 |UG: | 14.1 |< 16.0 | |p |28398. | | | | |01634 01634| +723915 |V3915 Sgr |181436.9-245434 |L | 13.2 | 15.5 | |p | | | | | |04409 04409| +723916 |V3916 Sgr |181524.4-275700 |RR: | 16.8 | 17.6 | |p | | | | | |03909 03909| +723917 |V3917 Sgr | | | | | | | | | | | | |=V0404 Ser +723918 |V3918 Sgr |181646. -165211:|M: | 12.6 | 15.5 | |I | | | 365. : | | |07779 | +723919 |V3919 Sgr | | | | | | | | | | | | |=V0717 Sgr +723920 |V3920 Sgr |181732.5-173159 |SR: | 14.9 | 16.0 | |I |39744. | | | | |07779 2MASS| +723921 |V3921 Sgr |181736.2-174141 |M: | 13.3 | 16.0 | |I |39748. | | 450. : | | |07779 2MASS| +723922 |V3922 Sgr |181833.2-350456 |L | 15.5 | 16.0 | |p | | | | | |05869 UCAC2| +723923 |V3923 Sgr |181849.4-174353 |M | 12.3 | 15.6 | |I | | | 396. : | | |07779 2MASS| +723924 |V3924 Sgr |181927.7-174548 |M: | 13.8 | 15.8 | |I |39750. :| | 400. : | | |07779 2MASS| +723925 |V3925 Sgr |181933.1-174644 |M: | 12.3 | 15.8 | |I |41138. :| | 135. : | | |07779 2MASS| +723926 |V3926 Sgr |181934.1-174840 |M | 12.4 | 15.6 | |I |39720. | | 286. : | | |07779 2MASS| +723927 |V3927 Sgr |181957.4-174310 |M: | 12.9 | 15.4 | |I |40424. :| | 450. : | | |07779 2MASS| +723928 |V3928 Sgr |182103.0-334853 |SRB | 15.5 | 15.9 | |p | | | | | |05869 UCAC2| +723929 |V3929 Sgr *|182058.9-264826 |ZAND: | 13.7 |< 16. | |p | | | | |pec(e) |04707 08077| +723930 |V3930 Sgr |182108.3-170623 |M: | 13.7 | 16.3 | |I | | | | | |07779 2MASS| +723931 |V3931 Sgr |182121.8-164259 |M | 12.0 | 15.6 | |I | | | | | |07779 2MASS| +723932 |V3932 Sgr |182142.5-173207 |M | 12.3 | 15.0 | |I |41144. | | 208. | | |07779 2MASS| +723933 |V3933 Sgr |182249.8-362344 |M: | 13.6 | 16.2 | |p |36761. | | | |Me: |05869 UCAC2| +723934 |V3934 Sgr |182306.3-172110 |SR: | 13.3 | 14.8 | |I | | | | | |07779 2MASS| +723935 |V3935 Sgr |182409.4-170340 |SR: | 14.1 | 15.8 | |I | | | 390. : | | |07779 2MASS| +723936 |V3936 Sgr |182418.4-170721 |M: | 13.3 | 15.8 | |I |41144. :| | 390. : | | |07779 2MASS| +723937 |V3937 Sgr |182427.1-161006 |M | 13.8 | 17.2 | |I |39734. | | 608. | | |07779 2MASS| +723938 |V3938 Sgr |182439.4-170502 |M: | 12.8 | 15.8 | |I | | | 290. : | | |07779 2MASS| +723939 |V3939 Sgr |182442.3-160907 |M: | 15.5 | 17.2 | |I |40800. | | 268. : | | |07779 2MASS| +723940 |V3940 Sgr |182509.3-163620 |M: | 11.6 | 15.2 | |I |41214. | | 442. : | | |07779 2MASS| +723941 |V3941 Sgr |182558.3-292549 |UG: | 11.5 |< 14. | |p | | | | | |07782 07782| +723942 |V3942 Sgr |182539.2-163346 |M | 11.2 | 15.3 | |I |41247. | | 379. | | |07779 2MASS| +723943 |V3943 Sgr |182647.0-155730 |M | 14.7 | 17.2 | |I |37556. | | 374. | | |07779 2MASS| +723944 |V3944 Sgr |182647.8-162143 |M: | 14.7 | 17.2 | |I |41100. | | 298. | | |07779 2MASS| +723945 |V3945 Sgr |182722.7-161539 |M: | 14.2 | 16.9 | |I |39680. :| | 366. : | | |07779 2MASS| +723946 |V3946 Sgr |182741.3-162155 |M | 13.8 | 17.6 | |I |41152. :| | 405. : | | |07779 2MASS| +723947 |V3947 Sgr |182747.4-160706 |M | 11.2 | 15.4 | |I |41162. | | 312. : | | |07779 2MASS| +723948 |V3948 Sgr |182752.7-162205 |M | 14.4 | 17.4 | |I |40432. :| | 410. : | | |07779 2MASS| +723949 |V3949 Sgr |182819.7-162111 |M: | 13.2 | 16.6 | |I |41092. :| | 510. : | | |07779 2MASS| +723950 |V3950 Sgr |182838.2-160329 |SR: | 15.0 | 16.9 | |I |41186. | | | | |07779 2MASS| +723951 |V3951 Sgr |184030. -294835:|SRA | 14.0 | 16.0 | |p |41890. | | 144.5 | | |07087 07087| +723952 |V3952 Sgr |184551.3-171759 |M: | 12.2 |< 15.5 | |p |16683. :| | | |M9 |04579 01383| +723953 |V3953 Sgr |185913.9-295020 |M: | 9.6 |< 17. | |p |20338. | | | |M9 |04930 2MASS| +723954 |V3954 Sgr |191051.5-150440 |LB: | 7.15 : | 7.52 | |V | | | | |M3 |07787 BD | +723955 |V3955 Sgr |192107.3-312350 |SRD | 10. | 11.2 | |p | | | | |G0-G5 |05152 CoD | +723956 |V3956 Sgr |192035.1-115112 |L | 13.0 | 13.7 | |p | | | | | |07594 07594| +723957 |V3957 Sgr |192809.9-153928 |L | 13.1 |< 14.0 | |p | | | | | |07594 07594| +723958 |V3958 Sgr |192950.0-444914 |SR | 12. | 13.5 | |p | | | 100. : | | |00085 02383| +723959 |V3959 Sgr |193553.6-372048 |LB | 10. | 10.5 | |p | | | | | |00085 CoD | +723960 |V3960 Sgr |194731.8-411045 |LB | 10. | 10.5 | |p | | | | |M5/7 |04001 04001| +723961 |V3961 Sgr *|195150.6-395228 |ACV | 5.28 | 5.34 | |V |44457.77 | | 2300. | |A0p(Si-Cr-Eu) |09914 CoD | +723962 |V3962 Sgr |200840.8-393004 |RR: | 15. | 16. | |p | | | | | |04001 04001| +723963 |V3963 Sgr |201224.0-384639 |L | 14. | 15. | |p | | | | | |04001 04001| +723964 |V3964 Sgr |174942.6-172336 |NA | 10.0 |< 16.9 | |B |42575. |1975 | | |pec(NOVA) |05158 05158| +723965 |V3965 Sgr |175811.6-290943 |SR: | | | | | | | 160. | | |08424 08424| +723966 |V3966 Sgr |175814.8-285445 |M | 7.00 | 7.32 | |K | | | 390. | | |08424 08424| +723967 |V3967 Sgr |175817.6-290609 |M: | | | | | | | 360. : | | |08424 08424| +723968 |V3968 Sgr |175822.7-285435 |M | 7.00 | 7.32 | |K | | | 300. | | |08424 08424| +723969 |V3969 Sgr |175825.3-290124 |M: | | | | | | | 360. : | | |08424 2MASS| +723970 |V3970 Sgr |175829.9-291303 |M | 6.00 | 6.42 | |K | | | 350. | | |08424 08424| +723971 |V3971 Sgr |175834.7-290232 |M: | | | | | | | 290. : | | |08424 08424| +723972 |V3972 Sgr |175843.8-290713 |M | 6.68 | 7.15 | |K | | | 265. | | |08424 08424| +723973 |V3973 Sgr |175855.2-284950 |SR | | | | | | | 210. | | |08424 08424| +723974 |V3974 Sgr |175855.9-285047 |M: | 5.89 | | |K | | | 450. : | |M8.5 |08424 08424| +723975 |V3975 Sgr |175901.0-285823 |SR: | | | | | | | 400. : | | |08424 08424| +723976 |V3976 Sgr |175910.3-290130 |M: | | | | | | | 500. : | | |08424 08424| +723977 |V3977 Sgr |175913.5-285853 |M | 7.34 | 7.84 | |K | | | 315. | | |08424 08424| +723978 |V3978 Sgr |175923.5-291238 |M: | | | | | | | 235. | | |08424 08424| +723979 |V3979 Sgr |175929.6-290321 |M: | 7.37 | | |K | | | 330. : | | |08424 08424| +723980 |V3980 Sgr |175929.1-285029 |M | 7.13 | 7.30 | |K | | | 320. | | |08424 08424| +723981 |V3981 Sgr |175933.4-285902 |M: | | | | | | | 420. : | | |08424 08424| +723982 |V3982 Sgr |175943.2-291413 |M | 6.49 | 6.71 | |K | | | 330. | | |08424 08424| +723983 |V3983 Sgr |175943.0-291544 |M: | | | | | | | 332. | | |08424 08424| +723984 |V3984 Sgr |175956.4-332430 |GCAS | 7.38 |( 0.18 )| |V | | | | |B1.5Vne |07908 CoD | +723985 |V3985 Sgr |175946.5-285916 |SR: | 6.25 | 6.60 | |K | | | 450. | | |08424 08424| +723986 |V3986 Sgr |175949.3-285218 |M | 7.91 | 8.32 | |K | | | 280. | | |08424 08424| +723987 |V3987 Sgr |175956.1-285328 |M | 6.12 | 6.39 | |K | | | 350. | | |08424 08424| +723988 |V3988 Sgr |175958.2-285926 |M: | | | | | | | 450. : | | |08424 08424| +723989 |V3989 Sgr |180013.2-285009 |M: | | | | | | | 420. : | | |08424 08424| +723990 |V3990 Sgr |180017.0-285524 |M | 7.36 | 7.83 | |K | | | 308. | | |08424 08424| +723991 |V3991 Sgr |180019.4-285004 |SR: | 7.47 | 7.62 | |K | | | 155. | | |08424 08424| +723992 |V3992 Sgr |180021.2-290645 |M | 6.80 | 7.28 | |K | | | 325. | | |08424 08424| +723993 |V3993 Sgr |180026.0-290909 |M: | | | | | | | 420. : | | |08424 08424| +723994 |V3994 Sgr |180044.5-291618 |M: | 6.09 | | |K | | | 410. | | |08424 08424| +723995 |V3995 Sgr |180045.7-291105 |M | 6.69 | 6.98 | |K | | | 360. | | |08424 08424| +723996 |V3996 Sgr |180048.7-291019 |M | 7.41 | 7.80 | |K | | | 355. | |M8.5 |08424 08424| +723997 |V3997 Sgr |180054.1-290253 |M: | | | | | | | | | |08424 08424| +723998 |V3998 Sgr |180217.9-301512 |SR | 7.20 | | |K | | | 260. | | |08424 08424| +723999 |V3999 Sgr |180219.2-295917 |M | 5.67 | 6.58 | |K | | | 470. : | | |08424 08424| +724000 |V4000 Sgr |180230.9-300641 |M | 6.44 | 7.31 | |K | | | 465. | |M9 |08424 08424| +724001 |V4001 Sgr |180241.5-300519 |M | 5.77 | 6.57 | |K | | | 465. | |M9+ |08424 08424| +724002 |V4002 Sgr |180311.5-295747 |SR: | 7.33 | | |K | | | 290. : | |M7 |08424 08424| +724003 |V4003 Sgr |180314.0-294922 |M: | 7.66 | | |K | | | 265. | | |08424 08424| +724004 |V4004 Sgr |180338.3-300902 |SR: | 14.4 | | |I | | | 240. | | |08424 08424| +724005 |V4005 Sgr |180354.8-300052 |M | 7.03 | 7.10 | |K | | | 305. | |M8 |08424 08424| +724006 |V4006 Sgr |180720.4-272432 |M | 11.6 |< 14.4 | |p |37846. | | 281. | | |07912 07912| +724007 |V4007 Sgr |181412.7-274329 |M: | | | | | | | 280. : | | |08424 08424| +724008 |V4008 Sgr |181437.4-275709 |M: | 7.02 | 7.15 | |K | | | 360. : | |M9: |08424 08424| +724009 |V4009 Sgr |181454.2-275633 |M: | | | | | | | 320. | | |08424 08424| +724010 |V4010 Sgr |181527.8-275817 |M | 6.15 | 6.28 | |K | | | 410. | |M9 |08424 08424| +724011 |V4011 Sgr |181558.5-275615 |M: | | | | | | | 360. | | |08424 08424| +724012 |V4012 Sgr |181613.7-273923 |M: | | | | | | | 250. | | |08424 08424| +724013 |V4013 Sgr |181616.6-280317 |SRA | 15.8 | 16.7 | |p |34602. | | 154. | | |08424 03909| +724014 |V4014 Sgr |181617.7-280317 |SR: | | | | | | | | | |08424 08424| +724015 |V4015 Sgr |181628.1-275527 |SR: | | | | | | | 405. | | |08424 08424| +724016 |V4016 Sgr |181641.5-300036 |M | 13. : |< 15. | |p |41930. | | 217. | | |07913 07913| +724017 |V4017 Sgr |181802.3-292933 |SR: | 12. | 15. | |p | | | 4000. : | | |07087 07087| +724018 |V4018 Sgr |182526.8-283558 |L: | 9.5 |< 13.6 | |p | | | | | |07912 07912| +724019 |V4019 Sgr |182527.3-254007 |NL: | 13.0 | 15.0 | |p | | | | |ea |07915 07915| +724020 |V4020 Sgr | | | | | | | | | | | | |=AK Sgr +724021 |V4021 Sgr |183814.9-232247 |NA | 8.8 |< 15.0 | |V |43235. |1977 | | |pec(NOVA) |09916 09910| +724022 |V4022 Sgr |183830.1-203515 |SRA | 15. : | 16.5 | |p |39030. | | 307. | | |07087 07087| +724023 |V4023 Sgr |184408.7-244420 |SRA | 13.7 | 14.7 | |p |38615. | | 146. | | |07913 07913| +724024 |V4024 Sgr *|190816.7-191725 |GCAS | 5.34 | 5.60 | |V | | | | |B2Ve |08419 BD | +724025 |V4025 Sgr |194133.1-264019 |SR: | 11.5 | 12.9 | |p | | | | | |07922 07922| +724026 |V4026 Sgr |194709.0-170441 |SR: | 6.69 | 6.90 | |V | | | | |M5III |08225 BD | +724027 |V4027 Sgr |180229.3-284520 |NB | 11. : |< 16.3 | |V |39994. :|1968 | | |pec(NOVA) |08232 09910| +724028 |V4028 Sgr |182131.4-245455 |SR: | 6.10 | 6.38 | |V | | | 35. : | |M5III |06645 CoD | +724029 |V4029 Sgr |182114.9-162232 |SDOR | 8.12 | 8.29 | |V | | | | |B9Iapeq |08070 BD | +724030 |V4030 Sgr |182119.6-162226 |ACYG: | 8.30 | 8.41 | |V | | | | |B8Iaea |08070 BD | +724031 |V4031 Sgr |182922.0-251524 |GCAS | 6.52 | 6.67 | |V | | | | |B2IVnep |05890 CoD | +724032 |V4032 Sgr *|183309.9-321830 |RRAB | 16.5 | 17.6 | |p |35660.744 | | 0.52364 |11 | |05869 2MASS| +724033 |V4033 Sgr |183844.8-230517 |LB: | 12.0 | 12.6 | |p | | | | |M5 |06278 06278| +724034 |V4034 Sgr *|184353.8-171314 |M: | 12.4 | 13.3 | |p |36420. | | 254. | | |05384 07594| +724035 |V4035 Sgr |180218.3-300044 |M | 7.10 | 7.89 | |K | | | 330. | | |08424 08424| +724036 |V4036 Sgr |180226.2-300530 |M | 6.95 | 7.20 | |K | | | 420. : | | |08424 08424| +724037 |V4037 Sgr |180234.8-295959 |M | 5.74 | 5.81 | |K | | | 400. : | | |08424 08424| +724038 |V4038 Sgr |180308.5-300526 |M | 6.94 | 7.24 | |K | | | 335. | |M7 |08424 08424| +724039 |V4039 Sgr |180321.2-301205 |M | 7.01 | 7.23 | |K | | | 430. | |M8 |08424 08424| +724040 |V4040 Sgr |180400.2-301216 |M | 7.75 | 8.44 | |K | | | 375. | |M8-M8.5 |08424 08424| +724041 |V4041 Sgr |180404.6-295153 |M | 14.3 |< 16. | |I | | | 400. : | |M7 |08424 08424| +724042 |V4042 Sgr |180414.2-294834 |M | 6.71 | 7.48 | |K | | | 420. : | | |08424 08424| +724043 |V4043 Sgr |180427.0-300247 |M | 14.8 |< 16. | |I | | | 360. | |M8 |08424 08424| +724044 |V4044 Sgr |180443.0-295243 |M | 6.66 | 7.07 | |K | | | 335. | | |08424 08424| +724045 |V4045 Sgr |181158.2-285406 |ACV | 6.51 | 6.54 | |V | | | 2.8855 | |A0p(Si-Cr-Eu) |09919 CoD | +724046 |V4046 Sgr *|181410.4-324735 |BY+UV | 10.32 | 10.39 | |V | | | 1.701 | |K5e |08601 CoD | +724047 |V4047 Sgr |181813.6-243818 |ISB | 12.8 | 13.5 | |B | | | | | |08519 08519| +724048 |V4048 Sgr *|181731.3-200840 |EA/SD | 12.4 | 13.8 | 12.6 |B |42543.531 | | 1.49509021 |17 *| |08519 08519| +724049 |V4049 Sgr |182038.2-275626 |N | 12. |< 20. | |V |43576. |1978 | | |pec(NOVA) |04299 09920| +724050 |V4050 Sgr |182253.1-364010 |ACV | 5.31 |( 0.012 )| |V | | | 6.3 | |B8p(Sr-Ti-Cr) |08375 CoD | +724051 |V4051 Sgr *|183020.2-253751 |M | 13.5 | 17.2 | |R |39026. | | 260. |45 | |08523 08523| +724052 |V4052 Sgr *|183110.6-253627 |M | 13.1 | 16.1 | |R |39028. | | 279. |30 | |08523 08523| +724053 |V4053 Sgr | | | | | | | | | | | | |=V1673 Sgr +724054 |V4054 Sgr *|183116.8-254230 |SRA: | 15.6 | 17.3 : | |R | | | 380. | | |08523 08523| +724055 |V4055 Sgr *|183137.2-251810 |M | 13.3 |< 17. | |R |39156. | | 156. |40 | |08523 08523| +724056 |V4056 Sgr | | | | | | | | | | | | |=IL Sgr +724057 |V4057 Sgr |183524.2-223812 |SRA | 14.3 | 15.5 | |p |43000. | | 369. | |S |08525 08525| +724058 |V4058 Sgr *|183751.4-231142 |EA | 11.8 | 12.8 | |B |41927.272 | | 3.03523995 |10 | |08519 08519| +724059 |V4059 Sgr |184336.2-294910 |SRA | 12.0 | 16. | |p |42684. | | 89.8 | | |08526 08526| +724060 |V4060 Sgr *|184701.5-213748 |M | 12.9 |< 14.8 | |p |38970. | | 288. | | |08527 08527| +724061 |V4061 Sgr |185617.5-273126 |CEP: | 12.9 | 14.0 | |B |41842. | | 92.2 |50 | |08519 08519| +724062 |V4062 Sgr |193856.2-283626 |ACV | 6.71 | 6.75 | |V |42620.099 | | 1.737 |30 |B9p(Si) |08312 CoD | +724063 |V4063 Sgr |194237.1-242246 |DSCT | 7.9 |( 0.12 )| |V | | | 0.361 | |F0 |08403 CoD | +724064 |V4064 Sgr |195110.2-272819 |ACV | 7.23 | 7.36 | |V |42621.478 | | 4.718 |30 |B9p(Si) |00208 CoD | +724065 |V4065 Sgr |181938.2-244356 |NA | 8.6 |< 14.0 | |V |44541. |1980 | | |e |04310 04309| +724066 |V4066 Sgr *|183309.6-230423 |EA | 11.0 | 11.8 | |p |44025.73 | | 2.145508 |15 |M5 |04325 06278| +724067 |V4067 Sgr *|183537.9-240003 |M | 15.4 | 18.0 : | |p |42633. | | 233.5 |20 : | |08792 08792| +724068 |V4068 Sgr *|183551.4-235224 |SRA | 15.3 | 16.7 | |p |35339. | | 113.3 |30 |M3-M5 |08792 08792| +724069 |V4069 Sgr *|183614.1-240751 |M | 14.3 | 17.0 : | |p |35309. | | 251.1 |20 | |08792 08792| +724070 |V4070 Sgr |175809.7-290115 |M | | | | | | | | | |67225 67225| +724071 |V4071 Sgr |175821.5-284925 |M | 6.47 | | |K | | | | | |67225 67225| +724072 |V4072 Sgr |180143.1-324255 |ELL/WR+* | 8.74 |( 1.2 )| |V | | | | | |67228 CoD | +724073 |V4073 Sgr |180819.1-225719 |ZAND: | 13.6 |< 15.5 | |p | | | | | |67230 67230| +724074 |V4074 Sgr |181605.5-305114 |ZAND | 8.6 | 12.3 | |p | | | | | |67231 HIP | +724075 |V4075 Sgr |182046.7-295129 |M | 13.8 |< 16.0 | |p | | | | | |67232 67232| +724076 |V4076 Sgr |183140.8-264108 |M | 13.0 |< 15.2 | |p | | | | | |67233 67233| +724077 |V4077 Sgr |183439.5-262603 |N | 8.0 |< 20. | |V | | | | | |67237 67236| +724078 |V4078 Sgr |183642.3-252414 |M: | 14.6 |< 16.0 | |p | | | | | |67233 67233| +724079 |V4079 Sgr |184225.1-315625 |E: | 15.6 | 17.7 | |B | | | | | |67238 67238| +724080 |V4080 Sgr |184246.3-323743 |RR | 16.2 | 17.2 | |B | | | | | |67238 67238| +724081 |V4081 Sgr |184302.6-322532 |RRAB | 17.3 |< 18.3 | |B | | | | | |67238 67238| +724082 |V4082 Sgr |184305.7-322717 |RRC | 15.1 | 15.6 | |B | | | | | |67238 67238| +724083 |V4083 Sgr |184314.3-324226 |RRAB | 14.9 | 16.5 | |B | | | | | |67238 67238| +724084 |V4084 Sgr |184329.6-315920 |RRAB | 16.5 |< 18.0 | |B | | | | | |67238 67238| +724085 |V4085 Sgr |184334.8-324512 |RR | 16.0 | 16.9 | |B | | | | | |67238 67238| +724086 |V4086 Sgr |184339.9-315505 |RRAB | 15.3 | 16.8 | |B | | | | | |67238 67238| +724087 |V4087 Sgr |184402.3-315954 |RRAB | 15.8 | 17.2 | |B | | | | | |67238 67238| +724088 |V4088 Sgr |185106.4-201800 |E | 7.49 | 7.87 | |V | | | | | |67241 BD | +724089 |V4089 Sgr |193408.5-400205 |EA/DM | 5.87 | 6.07 | |V | | | | | |67244 CoD | +724090 |V4090 Sgr |193955.5-392558 |EA/DM | 6.58 | 6.81 | |V | | | | | |67244 CoD | +724091 |V4091 Sgr |200602.7-184216 |RS: | 8.4 |( 0.04 )| |V | | | | | |67246 BD | +724092 |V4092 Sgr |175342.1-290208 |NA | 9.7 | 15.3 | |V | | | | | |68338 68339| +724093 |V4093 Sgr |180150.3-293917 |RRAB | 16.6 | 18.2 | |B | | | | | |68213 68213| +724094 |V4094 Sgr |180154.0-294202 |RRAB | 16.5 | 17.9 | |B | | | | | |68213 68213| +724095 |V4095 Sgr |180156.0-295056 |RRAB | 16.6 | 17.3 | |B | | | | | |68213 68213| +724096 |V4096 Sgr |180159.5-294432 |RRAB | 16.6 | 17.8 | |B | | | | | |68213 68213| +724097 |V4097 Sgr |180206.0-294459 |RRAB | 17.4 | 18.4 | |B | | | | | |68213 68213| +724098 |V4098 Sgr |180208.0-294734 |RRC | 17.4 | 17.9 | |B | | | | | |68213 68213| +724099 |V4099 Sgr |180211.4-294101 |RRAB | 16.9 | 18.6 | |B | | | | | |68213 68213| +724100 |V4100 Sgr |180214.3-294137 |EW | 17.5 | 18.2 | |B | | | | | |68213 68213| +724101 |V4101 Sgr |180215.6-294218 |RRAB | 16.9 | 18.3 | |B | | | | | |68213 68213| +724102 |V4102 Sgr |180226.6-294346 |RRAB | 16.7 | 18.1 | |B | | | | | |68213 68213| +724103 |V4103 Sgr |180227.5-294422 |RRC | 17.0 | 17.5 | |B | | | | | |68213 68213| +724104 |V4104 Sgr |180232.2-294536 |EW: | 17.2 | 17.8 | |B | | | | | |68213 68213| +724105 |V4105 Sgr |180237.3-294355 |EA | 18.7 | 19.1 | |B | | | | | |68213 68213| +724106 |V4106 Sgr |180239.2-294022 |RRAB | 17.6 | 18.6 | |B | | | | | |68213 68213| +724107 |V4107 Sgr |180242.0-295944 |RRAB | 17.0 | 18.0 | |B | | | | | |68213 68213| +724108 |V4108 Sgr |180244.2-294845 |RRC | 17.1 | 17.7 | |B | | | | | |68213 68213| +724109 |V4109 Sgr |180249.7-294419 |RRAB | 16.9 | 18.4 | |B | | | | | |68213 68213| +724110 |V4110 Sgr |180301.9-294600 |CWB | 17.6 | 19.0 | |B | | | | | |68213 68213| +724111 |V4111 Sgr |180308.0-294407 |RRC | 17.0 | 17.7 | |B | | | | | |68213 68213| +724112 |V4112 Sgr |180328.4-295251 |RRC | 16.8 | 17.3 | |B | | | | | |68213 68213| +724113 |V4113 Sgr |180329.9-300157 |RRC | 17.1 | 17.3 | |B | | | | | |68213 68213| +724114 |V4114 Sgr |180329.7-300732 |RRC | 17.1 | 17.7 | |B | | | | | |68213 68213| +724115 |V4115 Sgr |180330.1-301039 |EW: | 18.2 | 18.7 | |B | | | | | |68213 68213| +724116 |V4116 Sgr |180332.2-295138 |RRAB | 16.9 | 17.6 | |B | | | | | |68213 68213| +724117 |V4117 Sgr |180342.6-300135 |DSCT | 17.8 | 18.2 | |B | | | | | |68213 68213| +724118 |V4118 Sgr |180354.8-295657 |EW: | 18.6 | 19.3 | |B | | | | | |68213 68213| +724119 |V4119 Sgr |180359.4-300048 |EW: | 17.0 | 17.9 | |B | | | | | |68213 68213| +724120 |V4120 Sgr |180356.5-201900 |M | 0.6 | 1.0 | |K | | | | | |68015 2MASS| +724121 |V4121 Sgr |180755.0-284927 |N | 9.5 |< 19. | |p | | | | | |68341 68341| +724122 |V4122 Sgr |181241.0-314500 |RR | 16.3 | 17.6 | |B | | | | | |68215 68215| +724123 |V4123 Sgr |181251.0-313648 |RR | 17.4 | 18.4 | |B | | | | | |68215 68215| +724124 |V4124 Sgr |181255.4-312613 |RR | 16.4 | 17.6 | |B | | | | | |68215 68215| +724125 |V4125 Sgr |181343.9-312935 |RR | 16.4 | 17.5 | |B | | | | | |68215 68215| +724126 |V4126 Sgr |181432.1-314924 |RR | 16.5 | 17.2 | |B | | | | | |68215 68215| +724127 |V4127 Sgr |181444.5-320401 |RR | 17.2 | 18.4 | |B | | | | | |68215 68215| +724128 |V4128 Sgr |182356.8-245511 |RRAB | 16.2 | 17.6 | |B | | | | | |68344 68344| +724129 |V4129 Sgr |182359.6-244936 |RRAB | 15.9 | 17.6 : | |B | | | | | |68344 68344| +724130 |V4130 Sgr |182504.9-245820 |RRAB | 16.5 | 18.0 | |B | | | | | |68344 68344| +724131 |V4131 Sgr |184011.0-223950 |GCAS: | 8.68 | 8.82 | |V | | | | | |68346 BD | +724132 |V4132 Sgr |184317.4-322911 |EW: | 16.3 | 16.9 | |B | | | | | |68347 68347| +724133 |V4133 Sgr |200335.2-385109 |ACV | 6.90 | 6.92 | |V | | | | | |68290 CoD | +724134 |V4134 Sgr |175840.0-334828 |XI | 18.3 | 18.82 | |V | | | | | |69237 69238| +724135 |V4135 Sgr |175945.1-321621 |N | 10.4 |< 22. | |V | | | | | |69240 69157| +724136 |V4136 Sgr |180935.7-232520 |IT: | 11.81 | 12.42 | |V | | | | | |69241 69242| +724137 |V4137 Sgr |182444.5-245025 |M: | 15.0 | 19. | |B | | | | | |69244 69243| +724138 |V4138 Sgr |192240.3-203835 |RS | 6.57 | 6.85 | |V | | | | | |69011 BD | +724139 |V4139 Sgr |192805.6-405005 |RS | 8.40 | 8.69 | |V | | | | | |69011 CoD | +724140 |V4140 Sgr |195849.7-385613 |EA+UGSU: | 15.5 | 18. | |p | | | | | |69246 69246| +724141 |V4141 Sgr |175023.8-195343 |ZAND: | 15.0 | 17.5 | |B | | | | | |70158 70096| +724142 |V4142 Sgr |180744.6-282404 |EA/DS | 10.9 | 14.1 | |p | | | | | |70097 | +724143 |V4143 Sgr |183500.0-331405 |RRC | 16.4 | 17.3 | |B | | | | | |70098 70098| +724144 |V4144 Sgr |183505.8-331653 |RRC: | 16.3 | 17.1 | |B | | | | | |70098 70098| +724145 |V4145 Sgr |183520.0-330618 |RRAB | 17.6 : | 18.8 | |B | | | | | |70098 70098| +724146 |V4146 Sgr |183621.0-332132 |RRAB | 16.9 | 18.2 : | |B | | | | | |70098 70098| +724147 |V4147 Sgr |183623.1-323828 |RRAB | 13.3 | 15.1 | |B | | | | | |70098 70098| +724148 |V4148 Sgr |183625.3-323952 |RRAB | 15.7 | 16.6 | |B | | | | | |70098 70098| +724149 |V4149 Sgr |183633.7-323435 |RRAB: | 15.9 | 17.2 | |B | | | | | |70098 70098| +724150 |V4150 Sgr |183640.0-324914 |RRAB | 15.6 | 17.0 | |B | | | | | |70098 70098| +724151 |V4151 Sgr |183934.3-253742 |SRA: | 15.2 |< 16. | |p | | | | | |70101 70101| +724152 |V4152 Sgr |185847.3-293018 |SR: | 9.24 | 9.52 | |V | | | | | |70066 CoD | +724153 |V4153 Sgr |192008.0-142709 |EA: | 7.64 | 7.87 | |V | | | | | |70102 BD | +724154 |V4154 Sgr |180516.4-360506 |M | 8.93 | 11.95 | |J | | | | | |71144 2MASS| +724155 |V4155 Sgr |180546.6-354306 |M | 10.87 | 12.52 | |J | | | | | |71144 2MASS| +724156 |V4156 Sgr |180922.1-345053 |M | 6.72 | 9.11 | |J | | | | | |71144 2MASS| +724157 |V4157 Sgr |180935.0-255158 |NA | 7. |< 21. | |V | | | | | |71158 71159| +724158 |V4158 Sgr |181112.8-351039 |M | 7.92 | 9.01 | |J | | | | | |71144 2MASS| +724159 |V4159 Sgr |181147.6-165338 |BCEP | 8.09 | 8.16 | |V | | | | | |71160 BD | +724160 |V4160 Sgr |181413.9-321229 |NA | 7.0 |< 21. | |V | | | | | |71162 | +724161 |V4161 Sgr |181612.1-330406 |M | 11.30 | 13.93 | |J | | | | | |71144 2MASS| +724162 |V4162 Sgr |181700.1-330233 |M | 8.87 | 11.83 | |J | | | | | |71144 2MASS| +724163 |V4163 Sgr |181814.0-314032 |M | 7.68 | 8.82 | |J | | | | | |71144 2MASS| +724164 |V4164 Sgr |181936.2-310441 |M | 7.41 | 8.66 | |J | | | | | |71144 2MASS| +724165 |V4165 Sgr |182008.5-303340 |M | 7.50 | 8.82 | |J | | | | | |71144 2MASS| +724166 |V4166 Sgr |182009.9-300451 |M | 9.16 | 11.97 | |J | | | | | |71144 2MASS| +724167 |V4167 Sgr |182030.3-310601 |M | 8.99 | 10.60 | |J | | | | | |71144 UCAC2| +724168 |V4168 Sgr |182113.2-303156 |M | 8.06 | 9.00 | |J | | | | | |71144 2MASS| +724169 |V4169 Sgr |182326.9-282200 |NA | 7.7 |< 12.6 | |V | | | | | |71166 71167| +724170 |V4170 Sgr |182335.5-302553 |M | 8.87 | 10.00 | |J | | | | | |71144 2MASS| +724171 |V4171 Sgr |182341.4-225928 |NA | 7.49 | 20.5 : | |V | | | | | |71168 71252| +724172 |V4172 Sgr |182455.3-290447 |M | 8.35 | 11.03 | |J | | | | | |71144 2MASS| +724173 |V4173 Sgr |182511.2-291846 |M | 8.14 | 9.95 | |J | | | | | |71144 2MASS| +724174 |V4174 Sgr |182533.4-275436 |M | 8.03 | 9.81 | |J | | | | | |71144 2MASS| +724175 |V4175 Sgr |182544.3-285044 |M: | 9.23 | 9.81 | |J | | | | | |71144 2MASS| +724176 |V4176 Sgr |182910.3-261704 |M | 8.17 | 10.11 | |H | | | | | |71144 2MASS| +724177 |V4177 Sgr |182936.8-271800 |M | 10.61 | 14.6 | |H | | | | | |71144 2MASS| +724178 |V4178 Sgr |182948.3-260106 |M | 10.49 | 12.64 | |J | | | | | |71144 2MASS| +724179 |V4179 Sgr |182952.5-271258 |M | 9.40 | 11.35 | |J | | | | | |71144 2MASS| +724180 |V4180 Sgr |183028.4-263020 |M | 6.84 | 7.89 | |H | | | | | |71144 2MASS| +724181 |V4181 Sgr |183036.3-265514 |M | 8.00 | 10.11 | |J | | | | | |71144 2MASS| +724182 |V4182 Sgr |183118.7-253405 |M | 9.50 | 11.87 | |J | | | | | |71144 2MASS| +724183 |V4183 Sgr |183150.4-260849 |M | 9.38 | 12.53 | |H | | | | | |71144 2MASS| +724184 |V4184 Sgr |183207.7-245721 |M | 3.21 | 4.26 | |H | | | | | |71144 2MASS| +724185 |V4185 Sgr |183213.2-263957 |M | 8.68 | 11.17 | |J | | | | | |71144 2MASS| +724186 |V4186 Sgr |183338.5-244537 |M | 8.28 | 9.71 | |J | | | | | |71144 2MASS| +724187 |V4187 Sgr |183353.5-260202 |M | 7.46 | 9.04 | |J | | | | | |71144 2MASS| +724188 |V4188 Sgr |183413.1-254339 |M | 7.81 | 8.77 | |J | | | | | |71144 2MASS| +724189 |V4189 Sgr |183504.0-244012 |M | 8.15 | 9.33 | |J | | | | | |71144 2MASS| +724190 |V4190 Sgr |183521.3-205026 |DSCTC | 6.44 | 6.48 | |V | | | | | |71017 BD | +724191 |V4191 Sgr |183713.3-235515 |M | 12.50 | 15.4 | |J | | | | | |71144 2MASS| +724192 |V4192 Sgr |183748.4-234842 |M | 8.41 | 11.53 | |J | | | | | |71144 2MASS| +724193 |V4193 Sgr |183813.7-232218 |M | 8.27 | 9.56 | |J | | | | | |71144 2MASS| +724194 |V4194 Sgr |183813.4-230123 |M | 6.65 | 8.08 | |H | | | | | |71144 2MASS| +724195 |V4195 Sgr |183847.4-220602 |M | 7.96 | 9.25 | |J | | | | | |71144 2MASS| +724196 |V4196 Sgr |184423.0-195628 |M | 7.88 | 9.52 | |J | | | | | |71144 2MASS| +724197 |V4197 Sgr |190557.9-192853 |EW/KE | 7.95 | 8.70 | |V | | | | | |71179 BD | +724198 |V4198 Sgr |190708.3-184417 |* | 6.23 | 6.29 | |V | | | | | |71123 BD | +724199 |V4199 Sgr |192137.1-191404 |* | 6.18 | 6.26 | |V | | | | | |71123 BD | +724200 |V4200 Sgr |195417.8-235628 |BY | 6.18 |( 0.07 )| |V | | | | | |71001 CoD | +724201 |V4201 Sgr |175318.9-265637 |SR | 7.76 |( 2.20 )| |J | | | | | |72036 72142| +724202 |V4202 Sgr |180324.9-223701 |E: | 8.21 |( 0.25 )| |V | | | | | |72015 BD | +724203 |V4203 Sgr |180422.7-242210 |INA | 9.60 | 10.19 | |V | | | | | |72028 72143| +724204 |V4204 Sgr |180549.7-241521 |INA | 11.06 | 11.35 | |V | | | | | |72028 72143| +724205 |V4205 Sgr |180633.4-245350 |RRAB | 16.5 | 18.1 | |B | | | | | |72144 72144| +724206 |V4206 Sgr |180655.0-312128 |RRAB | 16.6 | 17.7 | |B | | | | | |72145 72145| +724207 |V4207 Sgr |180654.9-310607 |RRAB | 16.8 | 18.3 | |B | | | | | |72145 72145| +724208 |V4208 Sgr |180655.4-310116 |RRAB | 17.0 | 18.2 | |B | | | | | |72145 72145| +724209 |V4209 Sgr |180658.6-313534 |RRC | 16.6 | 17.0 | |B | | | | | |72145 72145| +724210 |V4210 Sgr |180702.4-304814 |RRAB | 17.1 | 18.5 | |B | | | | | |72145 72145| +724211 |V4211 Sgr |180655.5-252149 |RRAB | 15.5 | 16.9 | |B | | | | | |72144 72144| +724212 |V4212 Sgr |180707.4-312052 |RRAB | 17.3 | 18.3 | |B | | | | | |72145 72145| +724213 |V4213 Sgr |180709.3-312043 |RRAB | 16.1 | 17.6 | |B | | | | | |72145 72145| +724214 |V4214 Sgr |180716.6-314037 |RRAB | 16.6 | 18.0 | |B | | | | | |72145 72145| +724215 |V4215 Sgr |180724.9-314031 |RRC | 17.6 | 18.1 | |B | | | | | |72145 72145| +724216 |V4216 Sgr |180723.9-304609 |RRC | 18.0 | 18.6 | |B | | | | | |72145 72145| +724217 |V4217 Sgr |180725.6-314142 |RRAB | 17.7 | 18.7 | |B | | | | | |72145 72145| +724218 |V4218 Sgr |180725.6-313828 |RRAB | 16.7 | 17.8 | |B | | | | | |72145 72145| +724219 |V4219 Sgr |180726.1-310652 |RRAB | 16.5 | 18.2 | |B | | | | | |72145 72145| +724220 |V4220 Sgr |180726.8-311910 |EW | 17.5 | 18.0 | |B | | | | | |72145 72145| +724221 |V4221 Sgr |180727.7-312423 |RRC | 17.3 | 17.7 | |B | | | | | |72145 72145| +724222 |V4222 Sgr |180727.5-303811 |RRAB | 16.8 | 18.1 | |B | | | | | |72145 72145| +724223 |V4223 Sgr |180733.9-313053 |RRAB | 17.3 | 18.3 | |B | | | | | |72145 72145| +724224 |V4224 Sgr |180733.6-305329 |RRC | 17.6 | 18.2 | |B | | | | | |72145 72145| +724225 |V4225 Sgr |180737.0-312600 |RRAB | 16.8 | 17.7 | |B | | | | | |72145 72145| +724226 |V4226 Sgr |180738.3-313324 |RRAB | 16.7 | 18.1 | |B | | | | | |72145 72145| +724227 |V4227 Sgr |180737.9-304952 |RRAB | 16.9 | 17.9 | |B | | | | | |72145 72145| +724228 |V4228 Sgr |180740.2-312333 |RRAB | 16.7 | 18.3 | |B | | | | | |72145 72145| +724229 |V4229 Sgr |180739.7-310342 |RRAB | 17.4 | 18.1 | |B | | | | | |72145 72145| +724230 |V4230 Sgr |180746.3-314242 |RRAB | 16.8 | 18.1 | |B | | | | | |72145 72145| +724231 |V4231 Sgr |180749.0-312237 |RRAB | 16.2 | 17.5 | |B | | | | | |72145 72145| +724232 |V4232 Sgr |180749.6-304015 |RRAB | 17.1 | 18.0 | |B | | | | | |72145 72145| +724233 |V4233 Sgr |180752.6-312631 |EW/KW | 17.5 | 18.0 | |B | | | | | |72145 72145| +724234 |V4234 Sgr |180753.3-304116 |RRAB | 16.1 | 17.1 | |B | | | | | |72145 72145| +724235 |V4235 Sgr |180753.5-304314 |RRAB | 17.1 | 18.3 | |B | | | | | |72145 72145| +724236 |V4236 Sgr |180753.8-304833 |RRC | 18.0 | 18.7 | |B | | | | | |72145 72145| +724237 |V4237 Sgr |180755.4-313322 |RRAB | 17.1 | 18.1 | |B | | | | | |72145 72145| +724238 |V4238 Sgr |180754.9-304303 |RRAB | 17.2 | 18.3 | |B | | | | | |72145 72145| +724239 |V4239 Sgr |180800.1-312713 |RRAB | 16.8 | 18.1 | |B | | | | | |72145 72145| +724240 |V4240 Sgr |180800.1-312431 |RRAB | 16.9 | 18.0 | |B | | | | | |72145 72145| +724241 |V4241 Sgr |180800.5-305827 |RRAB | 16.7 | 18.3 | |B | | | | | |72145 72145| +724242 |V4242 Sgr |180802.1-304735 |RRAB | 17.2 | 18.3 | |B | | | | | |72145 72145| +724243 |V4243 Sgr |180802.7-305830 |RRAB | 16.7 | 17.5 | |B | | | | | |72145 72145| +724244 |V4244 Sgr |180802.9-304025 |RRAB | 17.1 | 18.3 | |B | | | | | |72145 72145| +724245 |V4245 Sgr |180803.4-303739 |RRAB | 16.3 | 17.2 | |B | | | | | |72145 72145| +724246 |V4246 Sgr |180807.7-313515 |EA | 18.2 | 18.7 | |B | | | | | |72145 72145| +724247 |V4247 Sgr |180809.5-314256 |RRC | 16.6 | 17.2 | |B | | | | | |72145 72145| +724248 |V4248 Sgr |180809.8-312851 |RRAB | 17.2 | 18.0 | |B | | | | | |72145 72145| +724249 |V4249 Sgr |180810.2-304737 |RRC | 18.0 | 18.3 | |B | | | | | |72145 72145| +724250 |V4250 Sgr |180812.6-311940 |RRAB | 16.7 | 17.9 | |B | | | | | |72145 72145| +724251 |V4251 Sgr |180815.1-304840 |RRAB | 16.1 | 17.8 | |B | | | | | |72145 72145| +724252 |V4252 Sgr |180819.7-305911 |RRAB | 17.3 | 18.7 | |B | | | | | |72145 72145| +724253 |V4253 Sgr |180822.5-313210 |RRC | 16.5 | 17.1 | |B | | | | | |72145 72145| +724254 |V4254 Sgr |180822.4-311501 |RRAB | 15.4 | 16.8 | |B | | | | | |72145 72145| +724255 |V4255 Sgr |180823.1-313027 |RRC | 17.2 | 17.7 | |B | | | | | |72145 72145| +724256 |V4256 Sgr |180823.7-313148 |RRAB | 16.3 | 17.6 | |B | | | | | |72145 72145| +724257 |V4257 Sgr |180824.0-311503 |EA: | 16.9 | 17.2 | |B | | | | | |72145 72145| +724258 |V4258 Sgr |180824.8-313850 |RRC | 17.1 | 17.7 | |B | | | | | |72145 72145| +724259 |V4259 Sgr |180828.0-313836 |RRAB | 17.2 | 18.3 | |B | | | | | |72145 72145| +724260 |V4260 Sgr |180828.8-303713 |RRC | 17.8 | 18.4 | |B | | | | | |72145 72145| +724261 |V4261 Sgr |180830.5-310152 |RRAB | 16.9 | 17.9 | |B | | | | | |72145 72145| +724262 |V4262 Sgr |180833.6-314141 |RRAB | 17.5 | 18.3 | |B | | | | | |72145 72145| +724263 |V4263 Sgr |180839.3-313053 |RRC | 17.2 | 17.9 | |B | | | | | |72145 72145| +724264 |V4264 Sgr |180838.9-310744 |RRAB | 16.7 | 17.7 | |B | | | | | |72145 72145| +724265 |V4265 Sgr |180839.5-313117 |RRC: | 17.0 | 17.4 | |B | | | | | |72145 72145| +724266 |V4266 Sgr |180840.7-312005 |RRAB | 16.8 | 17.9 | |B | | | | | |72145 72145| +724267 |V4267 Sgr |180841.1-313235 |RRAB | 16.5 | 17.9 | |B | | | | | |72145 72145| +724268 |V4268 Sgr |180843.5-303710 |RRAB | 16.1 | 17.6 | |B | | | | | |72145 72145| +724269 |V4269 Sgr |180845.5-312629 |RRC | 18.2 | 18.6 | |B | | | | | |72145 72145| +724270 |V4270 Sgr |180845.6-310052 |RRAB | 17.3 | 18.5 | |B | | | | | |72145 72145| +724271 |V4271 Sgr |180847.7-313515 |RRC | 17.8 | 18.3 | |B | | | | | |72145 72145| +724272 |V4272 Sgr |180848.0-312041 |RRAB | 16.5 | 18.0 | |B | | | | | |72145 72145| +724273 |V4273 Sgr |180848.9-310251 |RRAB | 16.8 | 18.4 | |B | | | | | |72145 72145| +724274 |V4274 Sgr |180858.2-303951 |RRC | 17.1 | 17.8 | |B | | | | | |72145 72145| +724275 |V4275 Sgr |180900.8-305958 |RRAB | 16.9 | 18.1 | |B | | | | | |72145 72145| +724276 |V4276 Sgr |180902.5-314123 |RRC | 16.2 | 16.6 | |B | | | | | |72145 72145| +724277 |V4277 Sgr |180902.4-311615 |RRAB | 17.0 | 18.4 | |B | | | | | |72145 72145| +724278 |V4278 Sgr |180907.9-314346 |RRAB | 16.2 | 17.3 | |B | | | | | |72145 72145| +724279 |V4279 Sgr |180917.3-312101 |RRAB | 17.0 | 18.1 | |B | | | | | |72145 72145| +724280 |V4280 Sgr |180919.6-305416 |RRAB | 16.5 | 18.0 | |B | | | | | |72145 72145| +724281 |V4281 Sgr |180922.4-310018 |RRAB | 17.5 | 18.2 | |B | | | | | |72145 72145| +724282 |V4282 Sgr |180922.9-304902 |RRAB | 16.3 | 17.4 | |B | | | | | |72145 72145| +724283 |V4283 Sgr |180926.3-311700 |RRAB | 16.5 | 18.0 | |B | | | | | |72145 72145| +724284 |V4284 Sgr |180927.0-313740 |RRAB | 15.7 | 16.6 | |B | | | | | |72145 72145| +724285 |V4285 Sgr |180926.6-304043 |RRAB | 16.8 | 17.8 | |B | | | | | |72145 72145| +724286 |V4286 Sgr |180931.3-305124 |RRAB | 16.8 | 17.7 | |B | | | | | |72145 72145| +724287 |V4287 Sgr |180935.3-313543 |RRC: | 16.9 | 17.4 | |B | | | | | |72145 72145| +724288 |V4288 Sgr |180939.8-313321 |RRAB | 16.1 | 17.6 | |B | | | | | |72145 72145| +724289 |V4289 Sgr |180948.8-313347 |RRAB | 16.2 | 17.3 | |B | | | | | |72145 72145| +724290 |V4290 Sgr |180948.3-304240 |RRAB | 17.1 | 18.2 | |B | | | | | |72145 72145| +724291 |V4291 Sgr |180951.4-305122 |RRC | 17.0 | 17.5 | |B | | | | | |72145 72145| +724292 |V4292 Sgr |180954.4-312250 |RRAB | 16.5 | 17.9 | |B | | | | | |72145 72145| +724293 |V4293 Sgr |180958.0-310445 |RRAB | 15.8 | 17.0 | |B | | | | | |72145 72145| +724294 |V4294 Sgr |180959.6-304501 |RRAB | 17.2 | 18.1 | |B | | | | | |72145 72145| +724295 |V4295 Sgr |181001.8-304656 |EA | 17.4 | 18.2 | |B | | | | | |72145 72145| +724296 |V4296 Sgr |181004.2-305827 |RRAB | 16.6 | 17.2 | |B | | | | | |72145 72145| +724297 |V4297 Sgr |181004.4-304910 |RRAB | 15.7 | 17.3 | |B | | | | | |72145 72145| +724298 |V4298 Sgr |181006.2-305328 |RRAB | 16.6 | 17.6 | |B | | | | | |72145 72145| +724299 |V4299 Sgr |181009.2-312702 |RRC | 16.8 | 17.3 | |B | | | | | |72145 72145| +724300 |V4300 Sgr |181008.6-304936 |RRAB | 16.8 | 17.9 | |B | | | | | |72145 72145| +724301 |V4301 Sgr |181013.5-314345 |RRAB | 17.1 | 18.0 | |B | | | | | |72145 72145| +724302 |V4302 Sgr |181014.0-312211 |RRAB | 16.2 | 17.3 | |B | | | | | |72145 72145| +724303 |V4303 Sgr |181020.9-310835 |RRC | 16.7 | 17.2 | |B | | | | | |72145 72145| +724304 |V4304 Sgr |181021.8-304403 |RRAB | 16.0 | 17.4 | |B | | | | | |72145 72145| +724305 |V4305 Sgr |181025.2-310247 |RRAB | 15.5 | 16.5 | |B | | | | | |72145 72145| +724306 |V4306 Sgr |181028.6-313506 |RRAB | 16.8 | 17.9 | |B | | | | | |72145 72145| +724307 |V4307 Sgr |181030.7-312311 |RRC | 17.0 | 17.4 | |B | | | | | |72145 72145| +724308 |V4308 Sgr |181030.1-310010 |DSCT | 17.5 | 18.0 | |B | | | | | |72145 72145| +724309 |V4309 Sgr |181031.2-311622 |RRAB | 16.8 | 17.9 | |B | | | | | |72145 72145| +724310 |V4310 Sgr |181030.1-303558 |RRAB | 16.5 | 17.7 | |B | | | | | |72145 72145| +724311 |V4311 Sgr |181032.3-305347 |RRAB | 15.5 | 16.5 | |B | | | | | |72145 72145| +724312 |V4312 Sgr |181032.4-304510 |RRAB | 16.0 | 17.2 | |B | | | | | |72145 72145| +724313 |V4313 Sgr |181033.2-305506 |RRAB | 16.0 | 17.4 | |B | | | | | |72145 72145| +724314 |V4314 Sgr |181034.1-312242 |RRC: | 16.9 | 17.4 | |B | | | | | |72145 72145| +724315 |V4315 Sgr |181038.6-304255 |EA | 17.6 | 18.2 | |B | | | | | |72145 72145| +724316 |V4316 Sgr |181039.5-305613 |RRAB | 16.0 | 17.3 | |B | | | | | |72145 72145| +724317 |V4317 Sgr |181044.3-310744 |DSCT | 17.4 | 18.2 | |B | | | | | |72145 72145| +724318 |V4318 Sgr |181047.0-303857 |RRAB | 16.4 | 17.1 | |B | | | | | |72145 72145| +724319 |V4319 Sgr |181050.1-304458 |RRAB | 15.7 | 17.2 | |B | | | | | |72145 72145| +724320 |V4320 Sgr |181052.6-305632 |EA | 16.6 | 17.2 | |B | | | | | |72145 72145| +724321 |V4321 Sgr |181057.0-313155 |RRAB | 15.5 | 16.8 | |B | | | | | |72145 72145| +724322 |V4322 Sgr |181058.1-311117 |RRAB | 16.6 | 17.5 | |B | | | | | |72145 72145| +724323 |V4323 Sgr |181057.4-304834 |EA | 18.0 | 18.5 | |B | | | | | |72145 72145| +724324 |V4324 Sgr |181059.4-310150 |RRAB | 15.8 | 17.4 | |B | | | | | |72145 72145| +724325 |V4325 Sgr |181101.5-312755 |RRAB | 16.5 | 17.8 | |B | | | | | |72145 72145| +724326 |V4326 Sgr |181103.2-310610 |RRAB | 16.8 | 17.8 | |B | | | | | |72145 72145| +724327 |V4327 Sgr |181249.9-292905 |NA | 8. |< 12. | |V | | | | | |72146 | +724328 |V4328 Sgr |181753.4-310850 |M | 9.32 | 12.73 | |H | | | | | |72147 2MASS| +724329 |V4329 Sgr | | | | | | | | | | | | |=V2952 Sgr +724330 |V4330 Sgr |182712.9-283028 |M | 10.48 | 12.94 | |J | | | | | |72147 2MASS| +724331 |V4331 Sgr |183103.7-270541 |M | 9.61 | 12.20 | |J | | | | | |72147 2MASS| +724332 |V4332 Sgr |185036.7-212329 |* | 8. | 17. | |V | | | | | |72149 2MASS| +724333 |V4333 Sgr |193626.1-185111 |DSCT | 5.48 | 5.60 | |V | | | | | |72150 BD | +724334 |V4334 Sgr |175232.7-174108 |* | 10.90 | 21. | |V | | | | | |73280 73280| +724335 |V4335 Sgr |175817.5-290913 |M | 8.01 | 10.57 | |K | | | | | |73281 2MASS| +724336 |V4336 Sgr |175906.2-284907 |M | 9.28 | 11.16 | |J | | | | | |73281 2MASS| +724337 |V4337 Sgr |175917.2-291622 |M | 8.67 | 12.64 | |J | | | | | |73281 2MASS| +724338 |V4338 Sgr |175918.3-290953 |UG | 8.0 |< 14. | |V | | | | | |73282 | +724339 |V4339 Sgr |175949.6-285306 |M | 10.78 | 13.86 | |J | | | | | |73281 2MASS| +724340 |V4340 Sgr |180100.1-290049 |SRA | 8.24 | 8.61 | |J | | | | | |73281 2MASS| +724341 |V4341 Sgr |180102.5-291405 |M | 7.27 | 8.37 | |K | | | | | |73281 2MASS| +724342 |V4342 Sgr |180909.5-315520 |RRAB | 16.3 | 17.5 | |B | | | | | |73284 73284| +724343 |V4343 Sgr |180921.1-314543 |RRAB | 16.2 | 17.6 | |B | | | | | |73184 73284| +724344 |V4344 Sgr |180944.8-315229 |RRC | 16.1 | 16.8 | |B | | | | | |73284 73284| +724345 |V4345 Sgr |180954.8-315718 |RRAB | 16.2 | 17.6 | |B | | | | | |73284 73284| +724346 |V4346 Sgr |181008.9-320017 |RRAB | 16.1 | 16.7 | |B | | | | | |73284 73284| +724347 |V4347 Sgr |181012.9-320143 |RRAB | 16.2 | 17.9 | |B | | | | | |73284 73284| +724348 |V4348 Sgr |181015.7-315453 |RRAB | 16.6 | 17.8 | |B | | | | | |73284 73284| +724349 |V4349 Sgr |181033.4-315336 |RRAB | 16.3 | 17.5 | |B | | | | | |73284 73284| +724350 |V4350 Sgr |181033.4-313639 |RRAB | 16.1 | 16.9 | |B | | | | | |73284 73284| +724351 |V4351 Sgr |181038.0-315525 |RRAB | 17.1 | 17.7 | |B | | | | | |73284 73284| +724352 |V4352 Sgr |181038.0-313444 |RRAB | 16.2 | 17.6 | |B | | | | | |73284 73284| +724353 |V4353 Sgr |181044.3-315812 |RRAB | 16.3 | 17.4 | |B | | | | | |73284 73284| +724354 |V4354 Sgr |181048.7-314809 |RRAB | 15.1 | 15.7 | |B | | | | | |73284 73284| +724355 |V4355 Sgr |181053.2-315328 |RRAB | 16.0 | 17.4 | |B | | | | | |73284 73284| +724356 |V4356 Sgr |181057.8-312730 |RRC: | 16.9 | 17.9 | |B | | | | | |73284 73284| +724357 |V4357 Sgr |181103.9-320317 |RRAB | 15.8 | 17.6 | |B | | | | | |73284 73284| +724358 |V4358 Sgr |181106.0-315312 |RRAB | 16.0 | 17.2 | |B | | | | | |73284 73284| +724359 |V4359 Sgr |181116.7-315548 |RRC | 15.7 | 16.5 | |B | | | | | |73284 73284| +724360 |V4360 Sgr |181547.9-310612 |CEP | 13.3 | 15.6 | |p | | | | | |73286 73328| +724361 |V4361 Sgr |182342.5-180715 |N | 10.6 |< 15.5 | |p | | | | | |73374 | +724362 |V4362 Sgr |183023.1-171157 |NB | 8.0 |< 15.0 | |V | | | | | |73288 | +724363 |V4363 Sgr |183118.6-230737 |RRAB | 16.4 | 18.0 | |B | | | | | |73289 73289| +724364 |V4364 Sgr |183130.5-233602 |RRAB | 16.3 | 17.8 | |B | | | | | |73289 73289| +724365 |V4365 Sgr |183150.6-235555 |LB: | 17.6 | 19. | |B | | | | | |73289 73289| +724366 |V4366 Sgr |183151.8-234819 |RRAB | 15.8 | 17.6 | |B | | | | | |73289 73289| +724367 |V4367 Sgr |183201.4-234031 |E | 16.8 | 18.0 | |B | | | | | |73289 73289| +724368 |V4368 Sgr |185440.3-194200 |NC: | 10.0 |< 21. | |V | | | | | |73291 73292| +724369 |V4369 Sgr |190543.0-302528 |RRAB | 15.07 | 15.98 | |V | | | | | |73118 73118| +724370 |V4370 Sgr |190612.7-303125 |EW | 19.27 | 19.75 | |V | | | | | |73118 73118| +724371 |V4371 Sgr |192257.3-141532 |BY | 9.42 | 9.60 | |V | | | | | |73293 BD | +724372 |V4372 Sgr |192835.3-150608 |ELL: | 6.76 | 6.80 | |V | | | | | |73294 BD | +724373 |V4373 Sgr |193920.4-294434 |ACVO | 9.94 |( 0.01 B )| |V | | | | | |73295 CoD | +724374 |V4374 Sgr |201758.9-280759 |EA: | 8.87 | 9.22 | |V | | | | | |73296 73296| +724375 |V4375 Sgr |174814.0-280053 |BE | 8.93 | 9.06 | |Hp| | | | | |HIP HIP | +724376 |V4376 Sgr |175915.8-193227 |ELL: | 9.14 | 9.27 | |Hp| | | | | |HIP HIP | +724377 |V4377 Sgr |180032.7-335456 |LB: | 8.94 | 9.04 | |Hp| | | | | |HIP HIP | +724378 |V4378 Sgr |180228.3-191025 |LB | 9.94 | 10.47 | |Hp| | | | | |HIP HIP | +724379 |V4379 Sgr |180533.3-194515 |BE: | 7.03 | 7.13 | |Hp| | | | | |HIP HIP | +724380 |V4380 Sgr |180728.7-283024 |LB | 9.68 | 10.13 | |Hp| | | | | |HIP HIP | +724381 |V4381 Sgr |180838.6-212658 |ACYG: | 6.57 | 6.62 | |Hp| | | | | |HIP HIP | +724382 |V4382 Sgr |180844.9-220939 |BCEP | 7.93 | 7.98 | |Hp| | | | | |HIP HIP | +724383 |V4383 Sgr |181124.3-204245 |BE | 8.69 | 8.82 | |Hp| | | | | |HIP HIP | +724384 |V4384 Sgr |181214.7-192558 |ACYG: | 7.20 | 7.30 | |Hp| | | | | |HIP HIP | +724385 |V4385 Sgr |181237.6-281411 |ELL: | 7.42 | 7.46 | |Hp| | | | | |HIP HIP | +724386 |V4386 Sgr |181442.1-330827 |E: | 8.37 | 8.55 | |Hp| | | | | |HIP HIP | +724387 |V4387 Sgr |181530.8-183942 |ACV | 6.09 | 6.12 | |Hp| | | | | |HIP HIP | +724388 |V4388 Sgr |181556.0-314532 |LB: | 8.25 | 8.34 | |Hp| | | | | |HIP HIP | +724389 |V4389 Sgr |181751.6-272117 |SRB: | 7.16 | 7.26 | |Hp| | | | | |HIP HIP | +724390 |V4390 Sgr *|182148.9-161929 |EB | 7.75 | 7.87 | |Hp| | | | | |HIP HIP | +724391 |V4391 Sgr |182224.7-321252 |SRB | 8.32 | 8.53 | |Hp| | | | | |HIP HIP | +724392 |V4392 Sgr |182314.7-282444 |SRD: | 8.41 | 8.55 | |Hp| | | | | |HIP HIP | +724393 |V4393 Sgr |182319.9-203913 |LB: | 7.54 | 7.65 | |Hp| | | | | |HIP HIP | +724394 |V4394 Sgr |182501.3-193326 |EB: | 10.52 | 11.06 | |Hp| | | | | |HIP HIP | +724395 |V4395 Sgr |182944.9-341608 |SRB | 8.10 | 8.27 | |Hp| | | | | |HIP HIP | +724396 |V4396 Sgr |183002.1-332943 |EA | 7.68 | 8.11 | |Hp| | | | | |HIP HIP | +724397 |V4397 Sgr |183129.0-211458 |SRB | 8.11 | 8.27 | |Hp| | | | | |HIP HIP | +724398 |V4398 Sgr |183310.1-182206 |ACYG | 6.89 | 6.93 | |Hp| | | | | |HIP HIP | +724399 |V4399 Sgr |183405.1-325740 |EA: | 7.13 | 7.31 | |Hp| | | | | |HIP HIP | +724400 |V4400 Sgr |183520.5-220527 |BE | 8.02 | 8.15 | |Hp| | | | | |HIP HIP | +724401 |V4401 Sgr |183523.7-191607 |SRB | 6.64 | 6.77 | |Hp| | | | | |HIP HIP | +724402 |V4402 Sgr |183620.9-321938 |LB | 8.35 | 8.65 | |Hp| | | | | |HIP HIP | +724403 |V4403 Sgr |184211.5-340225 |EA | 8.68 | 9.14 | |Hp| | | | | |HIP HIP | +724404 |V4404 Sgr |184553.2-182151 |ACV | 7.43 | 7.48 | |Hp| | | | | |HIP HIP | +724405 |V4405 Sgr |184601.1-193623 |SRB: | 6.20 | 6.33 | |Hp| | | | | |HIP HIP | +724406 |V4406 Sgr |184647.3-293754 |SRB | 6.73 | 6.89 | |Hp| | | | | |HIP HIP | +724407 |V4407 Sgr |185241.7-304403 |EB | 6.62 | 6.80 | |Hp| | | | | |HIP HIP | +724408 |V4408 Sgr |185418.0-195559 |LPB: | 8.28 | 8.37 | |Hp| | | | | |HIP HIP | +724409 |V4409 Sgr |190447.9-184227 |BE | 8.67 | 8.78 | |Hp| | | | | |HIP HIP | +724410 |V4410 Sgr |190736.8-314018 |LB: | 8.48 | 8.60 | |Hp| | | | | |HIP HIP | +724411 |V4411 Sgr |191426.5-291626 |E: | 8.50 | 8.76 | |Hp| | | | | |HIP HIP | +724412 |V4412 Sgr |192013.4-361340 |LB: | 7.97 | 8.10 | |Hp| | | | | |HIP HIP | +724413 |V4413 Sgr |192036.9-275958 |LB: | 8.75 | 8.86 | |Hp| | | | | |HIP HIP | +724414 |V4414 Sgr |192031.8-170240 |SRB | 7.60 | 7.77 | |Hp| | | | | |HIP HIP | +724415 |V4415 Sgr |192225.7-315612 |SRB | 6.93 | 7.04 | |Hp| | | | | |HIP HIP | +724416 |V4416 Sgr |192247.9-323012 |SRB | 8.01 | 8.17 | |Hp| | | | | |HIP HIP | +724417 |V4417 Sgr *|192329.7-343137 |E: | 8.94 | 9.34 | |Hp| | | | | |HIP HIP | +724418 |V4418 Sgr |192850.7-163103 |LB: | 8.47 | 8.57 | |Hp| | | | | |HIP HIP | +724419 |V4419 Sgr |193228.5-305210 |SRB | 6.47 | 6.65 | |Hp| | | | | |HIP HIP | +724420 |V4420 Sgr |194128.5-200506 |SRB: | 8.62 | 8.82 | |Hp| | | | | |HIP HIP | +724421 |V4421 Sgr |194247.8-201145 |LB | 9.20 | 9.39 | |Hp| | | | | |HIP HIP | +724422 |V4422 Sgr |194632.1-161234 |LB: | 8.01 | 8.07 | |Hp| | | | | |HIP HIP | +724423 |V4423 Sgr |194833.9-160949 |LB: | 8.17 | 8.27 | |Hp| | | | | |HIP HIP | +724424 |V4424 Sgr |195401.9-301510 |RRAB | 10.04 | 10.68 | |Hp| | | | | |HIP HIP | +724425 |V4425 Sgr |195509.8-254826 |SXPHE: | 9.38 | 9.92 | |Hp| | | | | |HIP HIP | +724426 |V4426 Sgr |195602.7-364004 |SRB | 8.67 | 8.85 | |Hp| | | | | |HIP HIP | +724427 |V4427 Sgr |195622.6-162219 |LB | 8.58 | 8.76 | |Hp| | | | | |HIP HIP | +724428 |V4428 Sgr |200104.8-421011 |EA | 8.26 | 8.53 | |Hp| | | | | |HIP HIP | +724429 |V4429 Sgr *|200629.4-181829 |SRD: | 8.12 | 8.30 | |Hp| | | | | |HIP HIP | +724430 |V4430 Sgr |201034.8-391245 |LB | 8.86 | 9.18 | |Hp| | | | | |HIP HIP | +724431 |V4431 Sgr |201212.3-293311 |SRD | 8.54 | 8.68 | |Hp| | | | | |HIP HIP | +724432 |V4432 Sgr |201223.6-354658 |LB: | 8.23 | 8.35 | |Hp| | | | | |HIP HIP | +724433 |V4433 Sgr |201250.2-345408 |IB: | 10.63 | 11.36 | |Hp| | | | | |HIP HIP | +724434 |V4434 Sgr |201623.6-362713 |LB | 6.16 | 6.33 | |Hp| | | | | |HIP HIP | +724435 |V4435 Sgr |201736.1-292339 |LB | 8.66 | 8.86 | |Hp| | | | | |HIP HIP | +724436 |V4436 Sgr |201836.8-380531 |LB: | 8.91 | 9.06 | |Hp| | | | | |HIP HIP | +724437 |V4437 Sgr |201958.2-323700 |EB | 7.26 | 7.56 | |Hp| | | | | |HIP HIP | +724438 |V4438 Sgr |202148.0-404520 |LB | 6.99 | 7.10 | |Hp| | | | | |HIP HIP | +724439 |V4439 Sgr |202142.5-362817 |SRB: | 8.48 | 8.92 | |Hp| | | | | |HIP HIP | +724440 |V4440 Sgr |202531.8-391946 |LB: | 8.75 | 8.88 | |Hp| | | | | |HIP HIP | +724441 |V4441 Sgr |202520.9-295905 |LB | 7.42 | 7.53 | |Hp| | | | | |HIP HIP | +724442 |V4442 Sgr |202626.1-370633 |LB: | 8.47 | 8.59 | |Hp| | | | | |HIP HIP | +724443 |V4443 Sgr |202707.9-385935 |LB | 7.78 | 7.91 | |Hp| | | | | |HIP HIP | +724444 |V4444 Sgr |180736.2-272013 |NA | 7.7 |< 21. | |V | | | | | |75225 75304| +724445 |V4445 Sgr |174357.0-290028 |M | 8.2 | 9.2 | |K | | | | | |75191 2MASS| +724446 |V4446 Sgr |174356.9-285031 |M | 9.9 | 11.5 | |K | | | | | |75191 2MASS| +724447 |V4447 Sgr |174404.7-291954 |M | 9.3 | 11.9 | |K | | | | | |75191 2MASS| +724448 |V4448 Sgr |174407.5-292446 |M | 10.1 | 11.3 | |K | | | | | |75191 2MASS| +724449 |V4449 Sgr |174415.0-284506 |M | 7.7 | 8.8 | |K | | | | | |75191 2MASS| +724450 |V4450 Sgr |174419.2-284422 |M | 8.8 | 10.3 | |K | | | | | |75191 2MASS| +724451 |V4451 Sgr |174428.4-285100 |M | 9.0 | 11.4 | |K | | | | | |75191 2MASS| +724452 |V4452 Sgr |174429.4-290459 |M | 5.93 | 6.96 | |L'| | | | | |75226 2MASS| +724453 |V4453 Sgr |174430.1-290114 |M | 8.75 | 9.90 | |K | | | | | |75191 2MASS| +724454 |V4454 Sgr |174431.4-290104 |M: | 8.9 | 9.6 | |K | | | | | |75191 2MASS| +724455 |V4455 Sgr |174433.4-292306 |M | 12.6 | 15.0 | |K | | | | | |75191 | +724456 |V4456 Sgr |174433.9-292307 |M | 11.3 | 12.6 | |K | | | | | |75191 2MASS| +724457 |V4457 Sgr |174434.3-291039 |M | 10.6 | 12.6 | |K | | | | | |75191 2MASS| +724458 |V4458 Sgr |174435.0-290436 |M | 3.60 | 5.51 | |L'| | | | | |75226 2MASS| +724459 |V4459 Sgr |174436.5-290020 |M | 11.0 | 12.8 | |K | | | | | |75191 2MASS| +724460 |V4460 Sgr |174437.5-292305 |M | 11.1 | 12.1 | |K | | | | | |75191 2MASS| +724461 |V4461 Sgr |174438.5-292322 |M | 9.9 | 11.4 | |K | | | | | |75191 2MASS| +724462 |V4462 Sgr |174439.7-291646 |M | 10.0 | 12.6 | |K | | | | | |75191 2MASS| +724463 |V4463 Sgr |174444.4-290538 |M | 9.6 | 11.8 | |K | | | | | |75191 2MASS| +724464 |V4464 Sgr |174445.0-285657 |M | 13.4 | 14.7 | |K | | | | | |75191 | +724465 |V4465 Sgr |174446.0-290614 |M | 9.9 | 12.1 | |K | | | | | |75191 2MASS| +724466 |V4466 Sgr |174451.3-290945 |M | 10.8 | 12.7 | |K | | | | | |75191 2MASS| +724467 |V4467 Sgr |174451.3-290921 |M | 8.95 | 10.10 | |K | | | | | |75191 2MASS| +724468 |V4468 Sgr |174454.2-291345 |M | 8.25 | 9.25 | |K | | | | | |75191 2MASS| +724469 |V4469 Sgr |174455.6-285227 |M | 10.9 | 12.6 | |K | | | | | |75191 2MASS| +724470 |V4470 Sgr |174456.8-291326 |M | 4.74 | 5.92 | |L'| | | | | |75226 2MASS| +724471 |V4471 Sgr |174457.7-292042 |M | 10.1 | 12.6 | |K | | | | | |75191 2MASS| +724472 |V4472 Sgr |174502.4-285055 |M: | 11.6 | 12.5 | |K | | | | | |75191 2MASS| +724473 |V4473 Sgr |174503.2-290713 |M | 9.2 | 10.6 | |K | | | | | |75191 2MASS| +724474 |V4474 Sgr |174503.3-285023 |M: | 10.3 | 11.1 | |K | | | | | |75191 2MASS| +724475 |V4475 Sgr |174505.3-291713 |M | 7.0 | 8.0 | |K | | | | | |75191 2MASS| +724476 |V4476 Sgr |174506.3-291705 |M | 9.5 | 11.4 | |K | | | | | |75191 2MASS| +724477 |V4477 Sgr |174507.0-290335 |M | 8.4 | 9.7 | |K | | | | | |75191 2MASS| +724478 |V4478 Sgr |174508.0-290343 |M: | 9.0 | 9.7 | |K | | | | | |75191 2MASS| +724479 |V4479 Sgr |174508.8-285917 |M | 9.6 | 11.5 | |K | | | | | |75191 2MASS| +724480 |V4480 Sgr |174510.4-291812 |M | 10.2 | 13.1 | |K | | | | | |75191 2MASS| +724481 |V4481 Sgr |174511.4-283839 |M | 11.0 | 13.6 | |K | | | | | |75191 2MASS| +724482 |V4482 Sgr |174512.9-291255 |M | 8.9 | 10.5 | |K | | | | | |75191 2MASS| +724483 |V4483 Sgr |174513.1-290936 |M | 8.9 | 10.1 | |K | | | | | |75191 2MASS| +724484 |V4484 Sgr |174512.4-284044 |M | 8.0 | 9.7 | |K | | | | | |75191 2MASS| +724485 |V4485 Sgr |174514.0-291528 |M | 10.2 | 13.3 | |K | | | | | |75191 2MASS| +724486 |V4486 Sgr |174513.8-290655 |M | 12.9 | 14.1 | |K | | | | | |75191 | +724487 |V4487 Sgr |174514.3-290721 |M | 9.8 | 11.4 | |K | | | | | |75191 2MASS| +724488 |V4488 Sgr |174514.4-290918 |M | 11.1 | 13.2 | |K | | | | | |75191 | +724489 |V4489 Sgr |174513.9-284743 |M | 5.18 | 6.72 | |L'| | | | | |75226 2MASS| +724490 |V4490 Sgr |174516.4-291538 |M | 7.9 | 9.2 | |K | | | | | |75191 2MASS| +724491 |V4491 Sgr |174518.1-291804 |M | 12.8 | 14.6 | |K | | | | | |75191 | +724492 |V4492 Sgr |174517.8-290553 |M | 5.34 | 6.98 | |L'| | | | | |75226 2MASS| +724493 |V4493 Sgr |174518.3-285839 |M | 8.4 | 9.4 | |K | | | | | |75191 2MASS| +724494 |V4494 Sgr |174519.3-291406 |M | 8.4 | 10.0 | |K | | | | | |75191 2MASS| +724495 |V4495 Sgr |174518.9-285858 |M | 10.1 | 12.0 | |K | | | | | |75191 2MASS| +724496 |V4496 Sgr |174526.4-290804 |M | 5.45 | 6.94 | |L'| | | | | |75226 2MASS| +724497 |V4497 Sgr |174529.5-290917 |M | 6.32 | 7.72 | |L'| | | | | |75226 | +724498 |V4498 Sgr |174530.4-292100 |M | 9.7 | 11.3 | |K | | | | | |75191 2MASS| +724499 |V4499 Sgr |174529.4-283935 |M | 10.1 | 12.2 | |K | | | | | |75191 2MASS| +724500 |V4500 Sgr |174531.9-292500 |M: | 11.6 | 12.4 | |K | | | | | |75191 2MASS| +724501 |V4501 Sgr |174531.4-284622 |M | 5.91 | 6.85 | |L'| | | | | |75226 2MASS| +724502 |V4502 Sgr |174532.1-284619 |LB | 6.91 | 7.53 | |L'| | | | | |75226 2MASS| +724503 |V4503 Sgr |174533.2-291120 |SR: | 8.30 |< 9.8 | |L'| | | | | |75226 | +724504 |V4504 Sgr |174533.2-290329 |M | 9.8 | 11.5 | |K | | | | | |75191 2MASS| +724505 |V4505 Sgr |174533.5-290216 |M | 6.35 | 7.93 | |L'| | | | | |75226 | +724506 |V4506 Sgr |174534.3-284956 |M | 10.8 | 13.2 | |K | | | | | |75191 2MASS| +724507 |V4507 Sgr |174534.8-290603 |M | 8.4 | 10.2 | |K | | | | | |75191 2MASS| +724508 |V4508 Sgr |174537.9-285926 |SR: | 11.7 | 12.6 | |K | | | | | |75191 2MASS| +724509 |V4509 Sgr |174538.3-290234 |LB | 12.0 | 12.6 | |K | | | | | |75191 | +724510 |V4510 Sgr |174538.5-290204 |M: | 7.8 | 8.7 | |K | | | | | |75191 2MASS| +724511 |V4511 Sgr |174540.7-290024 |M: | 9.2 | 9.9 | |K | | | | | |75191 2MASS| +724512 |V4512 Sgr |174540.7-290024 |M | 9.6 | 10.8 | |K | | | | | |75191 2MASS| +724513 |V4513 Sgr |174540.6-290056 |LB | 11.2 | 12.6 | |K | | | | | |75191 | +724514 |V4514 Sgr |174541.4-290127 |M: | 10.0 | 10.9 | |K | | | | | |75191 2MASS| +724515 |V4515 Sgr |174542.4-285918 |M | 9.2 | 10.3 | |K | | | | | |75191 2MASS| +724516 |V4516 Sgr |174542.9-285902 |M | 8.0 | 10.2 | |K | | | | | |75191 2MASS| +724517 |V4517 Sgr |174544.3-285913 |LB | 8.0 | 8.4 | |K | | | | | |75191 2MASS| +724518 |V4518 Sgr |174546.6-283240 |M | 8.5 | 11.0 | |K | | | | | |75191 2MASS| +724519 |V4519 Sgr |174548.5-291045 |M | 8.8 | 11.1 | |K | | | | | |75191 2MASS| +724520 |V4520 Sgr |174549.4-285849 |M | 8.9 | 10.4 | |K | | | | | |75191 2MASS| +724521 |V4521 Sgr |174551.3-285807 |M | 10.3 | 11.7 | |K | | | | | |75191 2MASS| +724522 |V4522 Sgr |174551.3-284807 |M | 4.75 | 6.22 | |L'| | | | | |75226 2MASS| +724523 |V4523 Sgr |174552.6-291430 |M | 9.8 | 12.0 | |K | | | | | |75191 2MASS| +724524 |V4524 Sgr |174552.0-284451 |M | 11.5 | 14.2 | |K | | | | | |75191 | +724525 |V4525 Sgr |174553.2-291441 |M: | 8.4 | 9.3 | |K | | | | | |75191 2MASS| +724526 |V4526 Sgr |174553.3-290034 |M | 11.9 | 13.6 | |K | | | | | |75191 | +724527 |V4527 Sgr |174553.4-285813 |M: | 9.7 | 10.4 | |K | | | | | |75191 2MASS| +724528 |V4528 Sgr |174554.7-285954 |M: | 8.8 | 9.3 | |K | | | | | |75191 2MASS| +724529 |V4529 Sgr |174554.2-283146 |M | 8.7 | 11.7 | |K | | | | | |75191 2MASS| +724530 |V4530 Sgr |174556.1-285552 |M | 5.57 | 7.03 | |L'| | | | | |75226 2MASS| +724531 |V4531 Sgr |174555.8-284519 |M | 5.81 | 8.48 | |L'| | | | | |75226 2MASS| +724532 |V4532 Sgr |174556.1-283928 |M | 9.7 | 12.0 | |K | | | | | |75191 2MASS| +724533 |V4533 Sgr |174558.9-290113 |M: | 8.6 | 9.2 | |K | | | | | |75191 2MASS| +724534 |V4534 Sgr |174558.9-285835 |M | 9.7 | 12.2 | |K | | | | | |75191 2MASS| +724535 |V4535 Sgr |174559.5-285524 |M: | 8.7 | 9.6 | |K | | | | | |75191 75227| +724536 |V4536 Sgr |174600.3-285012 |M | 10.7 | 13.0 | |K | | | | | |75191 2MASS| +724537 |V4537 Sgr |174600.2-285014 |M | 11.0 | 12.7 | |K | | | | | |75191 2MASS| +724538 |V4538 Sgr |174600.9-290124 |LB | 14.3 | 15.1 | |K | | | | | |75191 | +724539 |V4539 Sgr |174601.7-284957 |M | 10.0 | 11.5 | |K | | | | | |75191 2MASS| +724540 |V4540 Sgr |174601.6-285001 |M | 10.1 | 11.6 | |K | | | | | |75191 2MASS| +724541 |V4541 Sgr |174602.9-284421 |M | 11.9 | 13.1 | |K | | | | | |75191 | +724542 |V4542 Sgr |174604.8-284400 |M | 9.5 | 10.8 | |K | | | | | |75191 2MASS| +724543 |V4543 Sgr |174606.4-290930 |M: | 12.5 | 13.3 | |K | | | | | |75191 | +724544 |V4544 Sgr |174607.3-291400 |M | 10.1 | 12.9 | |K | | | | | |75191 | +724545 |V4545 Sgr |174607.5-285215 |LB: | 13.2 | 14.7 | |K | | | | | |75191 | +724546 |V4546 Sgr |174608.0-290913 |M | 11.2 | 12.8 | |K | | | | | |75191 | +724547 |V4547 Sgr |174610.4-290043 |M: | 8.7 | 9.4 | |K | | | | | |75191 2MASS| +724548 |V4548 Sgr |174614.5-283640 |M | 11.8 | 13.8 | |K | | | | | |75191 2MASS| +724549 |V4549 Sgr |174615.0-284417 |M | 8.4 | 9.5 | |K | | | | | |75191 2MASS| +724550 |V4550 Sgr |174615.3-285542 |M | 6.42 | 8.47 | |L'| | | | | |75226 | +724551 |V4551 Sgr |174622.1-284623 |M | 9.3 | 11.2 | |K | | | | | |75191 2MASS| +724552 |V4552 Sgr |174624.9-290001 |M | 10.6 | 13.0 | |K | | | | | |75191 2MASS| +724553 |V4553 Sgr |174625.8-285000 |M | 8.3 | 10.0 | |K | | | | | |75191 2MASS| +724554 |V4554 Sgr |174628.0-285338 |M: | 9.0 | 9.6 | |K | | | | | |75191 2MASS| +724555 |V4555 Sgr |174628.7-285320 |M | 8.1 | 9.8 | |K | | | | | |75191 2MASS| +724556 |V4556 Sgr |174630.8-283134 |M | 9.2 | 10.4 | |K | | | | | |75191 | +724557 |V4557 Sgr |174631.4-283948 |M | 8.4 | 9.5 | |K | | | | | |75191 | +724558 |V4558 Sgr |174631.3-283106 |M: | 9.4 | 10.1 | |K | | | | | |75191 2MASS| +724559 |V4559 Sgr |174631.7-283541 |M | 11.2 | 12.4 | |K | | | | | |75191 | +724560 |V4560 Sgr |174633.1-284502 |M | 10.0 | 11.2 | |K | | | | | |75191 | +724561 |V4561 Sgr |174635.6-292151 |M | 10.6 | 13.4 | |K | | | | | |75191 2MASS| +724562 |V4562 Sgr |174635.3-285857 |M | 7.36 | 9.53 | |L'| | | | | |75226 | +724563 |V4563 Sgr |174635.7-283208 |LB: | 14.2 | 15.0 | |K | | | | | |75191 | +724564 |V4564 Sgr |174637.6-291928 |M | 9.0 | 10.0 | |K | | | | | |75191 2MASS| +724565 |V4565 Sgr |174638.1-291931 |M | 9.4 | 10.8 | |K | | | | | |75191 2MASS| +724566 |V4566 Sgr |174637.3-283226 |M | 9.5 | 10.8 | |K | | | | | |75191 2MASS| +724567 |V4567 Sgr |174642.3-283326 |M | 10.5 | 12.2 | |K | | | | | |75191 2MASS| +724568 |V4568 Sgr |174647.8-284715 |LB: | 13.5 | 14.0 | |K | | | | | |75191 | +724569 |V4569 Sgr |174643.9-180242 |M | 12.0 |< 14.5 | |p | | | | | |75228 2MASS| +724570 |V4570 Sgr |174702.2-284556 |M | 9.2 | 11.1 | |K | | | | | |75191 2MASS| +724571 |V4571 Sgr |174719.5-292032 |M: | 8.7 | 9.4 | |K | | | | | |75191 2MASS| +724572 |V4572 Sgr |174721.3-292025 |M | 9.4 | 11.2 | |K | | | | | |75191 2MASS| +724573 |V4573 Sgr |174721.3-283923 |M | 10.7 | 13.1 | |K | | | | | |75191 2MASS| +724574 |V4574 Sgr |174724.0-283243 |M | 8.15 | 9.65 | |K | | | | | |75191 2MASS| +724575 |V4575 Sgr |174739.7-283546 |M | 12.6 | 14.7 | |K | | | | | |75191 | +724576 |V4576 Sgr |174740.0-283521 |M: | 9.1 | 9.8 | |K | | | | | |75191 UCAC2| +724577 |V4577 Sgr |180029.4-284831 |M | 6.53 | 7.63 | |J | | | | | |75229 2MASS| +724578 |V4578 Sgr |180223.5-233438 |WR | 12.92 |( 0.10 )| |V | | | | | |75109 75020| +724579 |V4579 Sgr |180337.9-280009 |NB | 11.0 | 16.5 | |B | | | | | |75307 2MASS| +724580 |V4580 Sgr |180827.5-365844 |XN+XP | 16.6 |< 20.0 | |V | | | | | |75230 | +724581 |V4581 Sgr |180842.5-324132 |RRAB | 17.8 | 18.6 | |B | | | | | |75231 75231| +724582 |V4582 Sgr |180842.6-321854 |RRAB | 16.8 | 17.5 | |B | | | | | |75231 75231| +724583 |V4583 Sgr |180853.9-315638 |RRAB | 16.8 | 18.0 | |B | | | | | |75231 75231| +724584 |V4584 Sgr |180855.2-323046 |EW | 16.8 | 17.3 | |B | | | | | |75231 75231| +724585 |V4585 Sgr |180857.5-320246 |RRAB | 17.1 | 18.2 | |B | | | | | |75231 75231| +724586 |V4586 Sgr |180900.3-322316 |RRAB | 16.4 | 17.5 | |B | | | | | |75231 75231| +724587 |V4587 Sgr |180901.2-323311 |RRAB: | 17.9 | 18.8 | |B | | | | | |75231 75231| +724588 |V4588 Sgr |180906.8-323338 |RRAB | 17.5 | 18.4 | |B | | | | | |75231 75231| +724589 |V4589 Sgr |180907.0-324224 |RRAB | 16.5 | 18.2 | |B | | | | | |75231 75231| +724590 |V4590 Sgr |180920.8-323127 |RRAB | 16.9 | 18.5 | |B | | | | | |75231 75231| +724591 |V4591 Sgr |180920.7-320613 |RRAB | 17.2 | 18.7 | |B | | | | | |75231 75231| +724592 |V4592 Sgr |180925.8-322315 |RRAB | 16.8 | 17.9 | |B | | | | | |75231 75231| +724593 |V4593 Sgr |180931.1-320311 |RRAB | 17.0 | 17.8 | |B | | | | | |75231 75231| +724594 |V4594 Sgr |180936.1-315054 |RRC: | 16.5 | 17.0 | |B | | | | | |75231 75231| +724595 |V4595 Sgr |180950.5-314636 |RRAB | 16.8 | 18.1 | |B | | | | | |75231 75231| +724596 |V4596 Sgr |180952.7-321728 |RRAB | 17.0 | 18.3 | |B | | | | | |75231 75231| +724597 |V4597 Sgr |181003.8-323756 |RRAB | 17.1 | 17.8 | |B | | | | | |75231 75231| +724598 |V4598 Sgr |181008.7-322708 |RRAB | 16.8 | 18.1 | |B | | | | | |75231 75231| +724599 |V4599 Sgr |181009.0-321943 |RRC | 17.1 | 18.0 | |B | | | | | |75231 75231| +724600 |V4600 Sgr |181013.5-322342 |RRAB | 17.1 | 18.1 | |B | | | | | |75231 75231| +724601 |V4601 Sgr |181017.9-314855 |RRAB | 16.8 | 17.9 | |B | | | | | |75231 75231| +724602 |V4602 Sgr |181018.3-315410 |RRAB | 16.8 | 17.2 | |B | | | | | |75231 75231| +724603 |V4603 Sgr |181020.5-322336 |RRAB | 17.1 | 18.4 | |B | | | | | |75231 75231| +724604 |V4604 Sgr |181023.1-323557 |RRAB | 17.0 | 18.3 | |B | | | | | |75231 75231| +724605 |V4605 Sgr |181035.7-321434 |RRAB | 16.4 | 17.8 | |B | | | | | |75231 75231| +724606 |V4606 Sgr |181040.0-322038 |RRAB | 16.9 | 18.2 | |B | | | | | |75231 75231| +724607 |V4607 Sgr |181040.2-320609 |RRAB | 17.2 | 18.2 | |B | | | | | |75231 75231| +724608 |V4608 Sgr |181045.2-323202 |RRC | 17.1 | 17.7 | |B | | | | | |75231 75231| +724609 |V4609 Sgr |181047.1-323804 |RRAB | 16.1 | 17.2 | |B | | | | | |75231 75231| +724610 |V4610 Sgr |181059.1-322233 |RRAB | 16.9 | 18.6 | |B | | | | | |75231 75231| +724611 |V4611 Sgr |181102.9-322215 |RRAB | 16.0 | 17.4 | |B | | | | | |75231 75231| +724612 |V4612 Sgr |181113.9-323021 |RRAB | 17.0 | 17.8 | |B | | | | | |75231 75231| +724613 |V4613 Sgr |181114.8-322642 |RRAB | 17.2 | 18.4 | |B | | | | | |75231 75231| +724614 |V4614 Sgr |181117.9-314515 |RRAB | 17.1 | 18.2 | |B | | | | | |75231 75231| +724615 |V4615 Sgr |181120.7-315658 |RRAB | 17.0 | 18.4 | |B | | | | | |75231 75231| +724616 |V4616 Sgr |181121.2-314809 |RRAB | 16.4 | 17.9 | |B | | | | | |75231 75231| +724617 |V4617 Sgr |181121.9-321506 |RRC: | 17.1 | 17.9 | |B | | | | | |75231 75231| +724618 |V4618 Sgr |181129.6-324258 |RRAB | 15.9 | 17.2 | |B | | | | | |75231 75231| +724619 |V4619 Sgr |181130.2-315453 |RRAB | 17.6 | 18.6 | |B | | | | | |75231 75231| +724620 |V4620 Sgr *|181130.4-314836 |RRAB | 16.0 | 17.7 | |B | | | | | |75231 75231| +724621 |V4621 Sgr |181131.9-321240 |RRAB | 16.6 | 17.4 | |B | | | | | |75231 75231| +724622 |V4622 Sgr |181137.5-322505 |RRAB | 17.1 | 18.1 | |B | | | | | |75231 75231| +724623 |V4623 Sgr |181138.7-313908 |EA | 15.9 | 16.3 | |B | | | | | |75231 75231| +724624 |V4624 Sgr |181147.7-314631 |RRAB | 16.8 | 18.0 | |B | | | | | |75231 75231| +724625 |V4625 Sgr |181149.7-320154 |RRAB | 15.8 | 17.6 | |B | | | | | |75231 75231| +724626 |V4626 Sgr |181150.5-315438 |RRA | 16.8 | 18.3 | |B | | | | | |75231 75231| +724627 |V4627 Sgr |181153.6-322307 |RRAB | 16.3 | 17.7 | |B | | | | | |75231 75231| +724628 |V4628 Sgr |181156.7-321524 |RRAB | 16.5 | 17.5 | |B | | | | | |75231 75231| +724629 |V4629 Sgr |181159.4-315224 |RRAB | 15.8 | 17.1 | |B | | | | | |75231 75231| +724630 |V4630 Sgr |181200.4-321702 |RRAB | 16.7 | 17.7 | |B | | | | | |75231 75231| +724631 |V4631 Sgr |181201.7-320702 |RRAB | 16.8 | 18.1 | |B | | | | | |75231 75231| +724632 |V4632 Sgr |181202.8-322348 |RRAB | 16.4 | 17.6 | |B | | | | | |75231 75231| +724633 |V4633 Sgr |182140.5-273137 |NA | 7.4 |< 20. | |V | | | | | |75232 75233| +724634 |V4634 Sgr |182928.1-234749 |XB | 18.8 | 19.7 | |B | | | | | |75234 75235| +724635 |V4635 Sgr |183341.6-300926 |M | 11.6 |< 15.0 | |p | | | | | |75002 2MASS| +724636 |V4636 Sgr |185039.6-163328 |M | 12.4 | 15.0 | |p | | | | | |75064 75064| +724637 |V4637 Sgr |185218.4-262757 |M | 11.8 |< 15.0 | |V | | | | | |75236 75236| +724638 |V4638 Sgr |193400.4-205556 |SR | 9.05 | 9.33 | |V | | | | | |75169 BD | +724639 |V4639 Sgr |195525.8-242741 |EA | 12.3 | 14.3 | |p | | | | | |75002 UCAC2| +724640 |V4640 Sgr |201504.8-400544 |RPHS | 12.47 |( 0.02 )| |V | | | | | |75237 GSC | +724641 |V4641 Sgr |181921.6-252426 |XN | 9. | 13.8 | |V | | | | | |75309 75310| +724642 |V4642 Sgr |175509.8-194601 |NA | 10.4 |< 19. | |V | | | | | |76166 76165| +724643 |V4643 Sgr |175440.4-261415 |NA | 8.1 | 16. | |V | | | | | |76275 GSC22| +724644 |V4644 Sgr |174614.4-285003 |M | 8.2 | 9.2 | |K | | | | | |76162 76162| +724645 |V4645 Sgr |174614.9-284843 |M | 9.6 | 11.3 | |K | | | | | |76162 76162| +724646 |V4646 Sgr |174615.1-284928 |M | 8.0 | 9.6 | |K | | | | | |76162 76162| +724647 |V4647 Sgr |174615.2-285004 |SDOR | 7.1 | 7.6 | |K | | | | | |76162 76267| +724648 |V4648 Sgr |174615.6-285024 |M | 9.6 | 10.5 | |K | | | | | |76162 76162| +724649 |V4649 Sgr |174617.4-285014 |M | 7.9 | 8.6 | |K | | | | | |76162 76162| +724650 |V4650 Sgr |174618.0-284904 |SDOR | 7.0 | 7.9 | |K | | | | | |76162 76267| +724651 |V4651 Sgr |175141.2-173608 |LB | 14.2 | 15.3 | |* | | | | | |76072 2MASS| +724652 |V4652 Sgr |175226.6-174001 |M | 13.9 | 16.9 | |* | | | | | |76072 76057| +724653 |V4653 Sgr |175302.0-173534 |SR: | 12.2 | 14.2 | |* | | | | | |76057 76057| +724654 |V4654 Sgr |175313.6-172844 |M: | 12.1 | 14.8 | |* | | | | | |76072 76057| +724655 |V4655 Sgr |175434.3-194406 |SR: | 11.5 | 13.0 | |* | | | | | |76057 76057| +724656 |V4656 Sgr |175655.5-293117 |LB: | 12.6 |< 15.0 | |* | | | | | |76057 GSC22| +724657 |V4657 Sgr |175715.7-181256 |M: | 13.6 |< 16.3 | |* | | | | | |76057 2MASS| +724658 |V4658 Sgr |175734.1-282608 |M: | 12.1 |< 14.5 | |* | | | | | |76057 2MASS| +724659 |V4659 Sgr |175737.6-255940 |SR: | 11.7 | 13.0 | |* | | | | | |76057 76057| +724660 |V4660 Sgr |175740.1-204623 |SR: | 12.4 | 13.9 | |* | | | | | |76057 76057| +724661 |V4661 Sgr |175741.6-190542 |SR: | 13.8 |< 15.9 | |* | | | | | |76057 2MASS| +724662 |V4662 Sgr |175743.9-220617 |M: | 13.0 |< 15.5 | |* | | | | | |76057 76057| +724663 |V4663 Sgr |175751.3-244632 |SR: | 12.4 | 14.1 | |* | | | | | |76057 2MASS| +724664 |V4664 Sgr |175753.7-211207 |SR: | 13.1 | 14.4 | |* | | | | | |76057 2MASS| +724665 |V4665 Sgr |175801.4-293637 |L: | 12.3 |< 15.0 | |* | | | | | |76057 76057| +724666 |V4666 Sgr |175809.4-300419 |SR: | 13.1 |< 14.3 | |* | | | | | |76057 2MASS| +724667 |V4667 Sgr |175828.5-293801 |SR: | 12.0 | 14.1 | |* | | | | | |76057 2MASS| +724668 |V4668 Sgr |175829.0-275203 |SR: | 12.3 | 14.6 | |* | | | | | |76057 76057| +724669 |V4669 Sgr |175831.5-311446 |M: | 11.8 |< 14.0 | |* | | | | | |76072 2MASS| +724670 |V4670 Sgr |175840.7-281224 |SR: | 9.9 | 11.9 | |* | | | | | |76057 UCAC2| +724671 |V4671 Sgr |175842.3-181507 |M: | 10.5 | 12.8 | |* | | | | | |76269 2MASS| +724672 |V4672 Sgr |175845.8-295604 |M: | 11.4 |< 14.4 | |* | | | | | |76072 76057| +724673 |V4673 Sgr |175850.9-203346 |SR: | 12.7 | 13.7 | |* | | | | | |76057 2MASS| +724674 |V4674 Sgr |175858.8-294530 |SR: | 12.9 | 14.0 | |* | | | | | |76269 2MASS| +724675 |V4675 Sgr |175900.4-302255 |M: | 13.9 |< 16.5 | |* | | | | | |76057 2MASS| +724676 |V4676 Sgr |175902.7-200700 |SR: | 13.1 | 13.9 | |* | | | | | |76057 76057| +724677 |V4677 Sgr |175907.8-272928 |SR: | 11.6 | 12.8 | |* | | | | | |76057 2MASS| +724678 |V4678 Sgr |175917.4-295046 |SR: | 12.9 | 14.1 | |* | | | | | |76269 76057| +724679 |V4679 Sgr |175918.3-205237 |SR: | 11.7 | 13.9 | |* | | | | | |76269 2MASS| +724680 |V4680 Sgr |175920.9-164832 |SR: | 13.6 | 15.2 | |* | | | | | |76269 76057| +724681 |V4681 Sgr |175934.1-211941 |SR: | 12.2 | 13.3 | |* | | | | | |76057 2MASS| +724682 |V4682 Sgr |175937.4-293828 |SR: | 11.6 | 13.2 | |* | | | | | |76072 76057| +724683 |V4683 Sgr |175939.6-251329 |M | 10.8 | 19. :B | |* | | | | | |76168 2MASS| +724684 |V4684 Sgr |175940.5-293758 |SR: | 12.5 | 13.6 | |* | | | | | |76072 UCAC2| +724685 |V4685 Sgr |175947.5-251230 |E: | 13.2 | 14.5 | |* | | | | | |76057 76057| +724686 |V4686 Sgr |175948.1-312248 |SR: | 12.9 | 14.8 | |* | | | | | |76072 2MASS| +724687 |V4687 Sgr |175956.0-245418 |SR: | 13.1 | 14.1 | |* | | | | | |76057 76057| +724688 |V4688 Sgr |175957.0-245137 |M: | 12.3 | 14.8 | |* | | | | | |76057 76057| +724689 |V4689 Sgr |175959.3-280320 |SR: | 12.0 | 13.6 | |* | | | | | |76057 2MASS| +724690 |V4690 Sgr |180000.0-293423 |SR: | 12.7 | 13.8 | |* | | | | | |76072 UCAC2| +724691 |V4691 Sgr |180004.4-295008 |SR: | 12.7 | 14.7 | |* | | | | | |76072 76057| +724692 |V4692 Sgr |180009.5-274742 |SR: | 12.2 | 14.1 | |* | | | | | |76269 2MASS| +724693 |V4693 Sgr |180020.2-294258 |SR: | 13.3 | 14.4 | |* | | | | | |76072 76057| +724694 |V4694 Sgr |180030.4-272346 |SR: | 12.1 | 13.9 | |* | | | | | |76057 76057| +724695 |V4695 Sgr |180041.3-293737 |SR: | 11.7 | 12.6 | |* | | | | | |76057 2MASS| +724696 |V4696 Sgr |180044.2-295315 |SR: | 12.9 | 15.0 | |* | | | | | |76072 2MASS| +724697 |V4697 Sgr |180044.8-301314 |SR: | 13.2 | 14.3 | |* | | | | | |76057 76057| +724698 |V4698 Sgr |180053.1-312852 |M: | 12.3 | 15.2 | |* | | | | | |76057 UCAC2| +724699 |V4699 Sgr |180102.1-234052 |SR: | 13.1 | 14.0 | |* | | | | | |76269 76057| +724700 |V4700 Sgr |180102.5-311426 |M: | 12.5 | 15.4 | |* | | | | | |76072 2MASS| +724701 |V4701 Sgr |180109.9-300331 |M: | 11.1 | 14.4 | |* | | | | | |76057 76057| +724702 |V4702 Sgr |180110.5-270838 |SR: | 12.6 |< 14.5 | |* | | | | | |76057 2MASS| +724703 |V4703 Sgr |180111.3-180025 |M: | 14.7 |< 16.5 | |* | | | | | |76269 2MASS| +724704 |V4704 Sgr |180125.3-185157 |SR: | 14.0 |< 15.4 | |* | | | | | |76057 2MASS| +724705 |V4705 Sgr |180126.9-293658 |SR: | 13.1 | 14.5 | |* | | | | | |76057 2MASS| +724706 |V4706 Sgr |180130.2-275701 |SR: | 11.9 | 12.7 | |* | | | | | |76057 2MASS| +724707 |V4707 Sgr |180145.2-300501 |SR: | 13.1 |< 14.4 | |* | | | | | |76072 2MASS| +724708 |V4708 Sgr |180145.5-294613 |SR: | 12.6 | 13.6 | |* | | | | | |76057 2MASS| +724709 |V4709 Sgr |180156.0-170641 |SR: | 13.2 |< 14.3 | |* | | | | | |76269 76057| +724710 |V4710 Sgr |180219.5-274203 |SR: | 11.9 | 12.8 | |* | | | | | |76057 76057| +724711 |V4711 Sgr |180223.0-294524 |SR: | 13.3 |< 14.4 | |* | | | | | |76057 2MASS| +724712 |V4712 Sgr |180225.3-275036 |SR: | 10.8 | 12.5 | |* | | | | | |76057 2MASS| +724713 |V4713 Sgr |180229.5-302415 |M: | 11.9 | 14.5 | |* | | | | | |76057 2MASS| +724714 |V4714 Sgr |180230.4-245126 |SR: | 11.2 | 12.5 | |* | | | | | |76269 76057| +724715 |V4715 Sgr |180233.9-312520 |SR: | 12.2 | 14.3 | |* | | | | | |76072 76057| +724716 |V4716 Sgr |180248.6-211720 |SR: | 13.3 | 14.0 | |* | | | | | |76269 2MASS| +724717 |V4717 Sgr |180302.6-311916 |SR: | 12.7 |< 14.0 | |* | | | | | |76057 76057| +724718 |V4718 Sgr |180311.5-273934 |SR: | 12.6 |< 14.4 | |* | | | | | |76057 76057| +724719 |V4719 Sgr |180529.5-274822 |SR: | 12.7 | 14.2 | |* | | | | | |76072 2MASS| +724720 |V4720 Sgr |180757.7-271552 |SR: | 12.5 | 14.5 | |* | | | | | |76057 UCAC2| +724721 |V4721 Sgr |180811.2-271408 |SR: | 12.9 | 14.6 | |* | | | | | |76057 2MASS| +724722 |V4722 Sgr |181044.4-260901 |XB | 21.5 |< 22.5 | |B | | | | | |76171 76171| +724723 |V4723 Sgr |181146.9-292023 |M | 11.9 |< 13.1 | |V | | | | | |76172 2MASS| +724724 |V4724 Sgr |181157.9-185213 |M: | 11.1 |< 13.2 | |V | | | | | |76173 2MASS| +724725 |V4725 Sgr |181326.0-285652 |SR | 10.9 | 11.8 | |V | | | | | |76174 2MASS| +724726 |V4726 Sgr |182619.2-292813 |M | 12.1 |< 13.4 | |V | | | | | |76178 UCAC2| +724727 |V4727 Sgr |183330.7-285851 |E | 10.6 |< 13.8 | |V | | | | | |76182 DM | +724728 |V4728 Sgr |184137.0-275701 |SRD | 9.00 | 9.28 | |V | | | | | |76084 DM | +724729 |V4729 Sgr |185732.8-185517 |SR: | 13.8 | 15.2 | |* | | | | | |76197 2MASS| +724730 |V4730 Sgr |185901.4-165158 |SR: | 11.3 | 12.6 | |* | | | | | |76057 2MASS| +724731 |V4731 Sgr |185927.0-135125 |SR: | 13.2 | 14.5 | |* | | | | | |76197 76057| +724732 |V4732 Sgr |185939.6-142617 |PVTEL | 11.13 | 11.15 | |V | | | | | |76196 GSC | +724733 |V4733 Sgr |190222.2-182518 |SR: | 11.9 | 13.3 | |* | | | | | |76057 2MASS| +724734 |V4734 Sgr | | | | | | | | | | | | |=V1251 Sgr +724735 |V4735 Sgr |191338.2-182435 |M: | 11.2 |< 13.8 | |V | | | | | |76204 2MASS| +724736 |V4736 Sgr |194201.4-231037 |M | 12.4 |< 15.0 | |V | | | | | |76216 UCAC2| +724737 |V4737 Sgr |201726.5-300427 |SR: | 12.2 | 14.4 | |V | | | | | |76225 UCAC2| +724738 |V4738 Sgr |202237.5-395412 |XM | 18.1 | 19.2 | |V | | | | | |76016 76016| +724739 |V4739 Sgr |182446.0-300041 |NA | 7.2 |< 18. | |V | | | | | |77153 77222| +724740 |V4740 Sgr |181146.0-303051 |NA | 6.5 |< 18. | |V | | | | | |77150 77151| +724741 |V4741 Sgr |175959.6-305321 |NA | 9.2 |< 18. | |V | | | | | |77138 | +724742 |V4742 Sgr |180221.9-252032 |NA | 8.0 |< 18. | |V | | | | | |77141 77142| +724743 |V4743 Sgr |190109.3-220006 |NA | 5.0 | 16.8 : | |V | | | | | |77163 77224| +724744 |V4744 Sgr |174721.6-232821 |NA | 9.7 |< 20. | |R | | | | | |77134 77135| +724745 |V4745 Sgr |184002.5-332656 |N | 7.41 |< 17. | |V | | | | | |77229 77213| +724746 |V4746 Sgr |174446.7-285108 |M | 8.5 | 9.7 | |K | | | | | |77133 2MASS| +724747 |V4747 Sgr |174446.9-290221 |SR: | 8.2 | 9.3 | |K | | | | | |77133 2MASS| +724748 |V4748 Sgr |174448.5-285907 |M: | 7.8 | 8.9 | |K | | | | | |77133 2MASS| +724749 |V4749 Sgr |174448.8-290148 |M | 8.7 | 9.2 | |K | | | | | |77133 2MASS| +724750 |V4750 Sgr |174449.4-291150 |M: | 9.0 | 9.7 | |K | | | | | |77133 2MASS| +724751 |V4751 Sgr |174449.5-290316 |M | 9.0 | 9.6 | |K | | | | | |77133 2MASS| +724752 |V4752 Sgr |174449.7-290722 |M | 9.3 | 10.6 | |K | | | | | |77133 2MASS| +724753 |V4753 Sgr |174450.0-285709 |M | 9.9 | 10.6 | |K | | | | | |77133 2MASS| +724754 |V4754 Sgr |174450.1-285803 |M: | 9.6 | 10.7 | |K | | | | | |77133 2MASS| +724755 |V4755 Sgr |174451.7-290803 |M: | 9.5 | 10.2 | |K | | | | | |77133 2MASS| +724756 |V4756 Sgr |174453.5-291215 |M: | 8.4 | 9.2 | |K | | | | | |77133 2MASS| +724757 |V4757 Sgr |174454.2-290631 |M: | 9.1 | 10.3 | |K | | | | | |77133 2MASS| +724758 |V4758 Sgr |174454.4-290456 |M | 8.5 | 9.6 | |K | | | | | |77133 2MASS| +724759 |V4759 Sgr |174454.9-285814 |M | 7.8 | 8.8 | |K | | | | | |77133 2MASS| +724760 |V4760 Sgr |174455.1-285103 |M: | 9.1 | 10.0 | |K | | | | | |77133 2MASS| +724761 |V4761 Sgr |174455.4-285947 |M: | 8.1 | 8.8 | |K | | | | | |77133 2MASS| +724762 |V4762 Sgr |174455.8-290131 |M | 9.0 | 9.6 | |K | | | | | |77133 2MASS| +724763 |V4763 Sgr |174456.0-290605 |M | 10.1 | 10.8 | |K | | | | | |77133 2MASS| +724764 |V4764 Sgr |174456.1-290145 |M: | 8.3 | 9.3 | |K | | | | | |77133 2MASS| +724765 |V4765 Sgr |174456.7-290442 |M: | 8.8 | 9.4 | |K | | | | | |77133 2MASS| +724766 |V4766 Sgr |174456.7-291020 |M: | 9.0 | 9.9 | |K | | | | | |77133 2MASS| +724767 |V4767 Sgr |174457.3-285607 |M | 10.4 | 11.2 | |K | | | | | |77133 2MASS| +724768 |V4768 Sgr |174457.7-290012 |M | 8.9 | 9.8 | |K | | | | | |77133 2MASS| +724769 |V4769 Sgr |174457.7-290156 |M: | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +724770 |V4770 Sgr |174458.8-290327 |M: | 7.9 | 8.6 | |K | | | | | |77133 2MASS| +724771 |V4771 Sgr |174458.9-290911 |M | 8.0 | 9.6 | |K | | | | | |77133 2MASS| +724772 |V4772 Sgr |174459.0-285702 |M: | 8.7 | 9.6 | |K | | | | | |77133 2MASS| +724773 |V4773 Sgr |174459.2-290549 |M | 7.9 | 8.5 | |K | | | | | |77133 2MASS| +724774 |V4774 Sgr |174459.5-290926 |M | 7.9 | 9.1 | |K | | | | | |77133 2MASS| +724775 |V4775 Sgr |174459.6-291115 |M: | 8.0 | 8.8 | |K | | | | | |77133 2MASS| +724776 |V4776 Sgr |174500.8-290716 |M: | 8.5 | 9.0 | |K | | | | | |77133 2MASS| +724777 |V4777 Sgr |174501.0-290115 |M | 9.0 | 10.0 | |K | | | | | |77133 2MASS| +724778 |V4778 Sgr |174501.7-285916 |M: | 8.6 | 9.5 | |K | | | | | |77133 2MASS| +724779 |V4779 Sgr |174501.7-290250 |M | 7.8 | 8.7 | |K | | | | | |77133 2MASS| +724780 |V4780 Sgr |174501.8-290324 |M: | 8.3 | 8.9 | |K | | | | | |77133 2MASS| +724781 |V4781 Sgr |174501.8-290056 |M: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +724782 |V4782 Sgr |174502.3-290332 |M: | 8.2 | 9.0 | |K | | | | | |77133 2MASS| +724783 |V4783 Sgr |174502.8-290652 |M | 5.4 | 6.0 | |K | | | | | |77133 2MASS| +724784 |V4784 Sgr |174502.9-290828 |M | 7.6 | 8.4 | |K | | | | | |77133 2MASS| +724785 |V4785 Sgr |174502.9-290250 |M: | 9.9 | 10.7 | |K | | | | | |77133 2MASS| +724786 |V4786 Sgr |174503.0-290557 |M | 8.7 | 9.3 | |K | | | | | |77133 2MASS| +724787 |V4787 Sgr |174503.7-290630 |M: | 8.5 | 9.0 | |K | | | | | |77133 2MASS| +724788 |V4788 Sgr |174504.4-285931 |M | 6.8 | 7.8 | |K | | | | | |77133 2MASS| +724789 |V4789 Sgr |174504.4-290625 |M | 10.0 | 11.2 | |K | | | | | |77133 2MASS| +724790 |V4790 Sgr |174504.7-290125 |M | 8.0 | 9.0 | |K | | | | | |77133 2MASS| +724791 |V4791 Sgr |174504.8-290549 |M | 8.0 | 8.7 | |K | | | | | |77133 2MASS| +724792 |V4792 Sgr |174504.8-290622 |M: | 8.8 | 9.8 | |K | | | | | |77133 | +724793 |V4793 Sgr |174505.0-290653 |M: | 8.4 | 9.4 | |K | | | | | |77133 2MASS| +724794 |V4794 Sgr |174505.2-290136 |M | 7.6 | 8.5 | |K | | | | | |77133 2MASS| +724795 |V4795 Sgr |174505.8-285645 |M | 9.3 | 10.0 | |K | | | | | |77133 2MASS| +724796 |V4796 Sgr |174506.0-285748 |M: | 8.0 | 9.0 | |K | | | | | |77133 2MASS| +724797 |V4797 Sgr |174506.6-290100 |M | 8.6 | 9.4 | |K | | | | | |77133 | +724798 |V4798 Sgr |174507.2-285027 |M | 8.0 | 9.1 | |K | | | | | |77133 2MASS| +724799 |V4799 Sgr |174507.2-290143 |M: | 8.8 | 9.4 | |K | | | | | |77133 2MASS| +724800 |V4800 Sgr |174507.6-291023 |M | 9.5 | 11.6 | |K | | | | | |77133 2MASS| +724801 |V4801 Sgr |174508.0-290901 |M: | 9.4 | 9.9 | |K | | | | | |77133 2MASS| +724802 |V4802 Sgr |174508.2-290122 |M: | 9.7 | 11.1 | |K | | | | | |77133 2MASS| +724803 |V4803 Sgr |174508.5-291105 |M: | 8.1 | 8.8 | |K | | | | | |77133 2MASS| +724804 |V4804 Sgr |174509.1-290121 |M: | 10.0 | 11.5 | |K | | | | | |77133 | +724805 |V4805 Sgr |174509.2-290610 |M | 7.3 | 7.9 | |K | | | | | |77133 2MASS| +724806 |V4806 Sgr |174509.5-290117 |M: | 9.8 | 10.4 | |K | | | | | |77133 2MASS| +724807 |V4807 Sgr |174510.7-290956 |M: | 8.8 | 9.5 | |K | | | | | |77133 2MASS| +724808 |V4808 Sgr |174510.9-285124 |M: | 9.6 | 10.5 | |K | | | | | |77133 2MASS| +724809 |V4809 Sgr |174511.0-290918 |M | 8.5 | 8.8 | |K | | | | | |77133 2MASS| +724810 |V4810 Sgr |174511.4-291142 |M | 7.9 | 8.7 | |K | | | | | |77133 2MASS| +724811 |V4811 Sgr |174511.7-285618 |M: | 8.4 | 9.3 | |K | | | | | |77133 2MASS| +724812 |V4812 Sgr |174511.9-290208 |M | 7.3 | 8.6 | |K | | | | | |77133 2MASS| +724813 |V4813 Sgr |174512.1-290425 |M | 7.9 | 9.1 | |K | | | | | |77133 2MASS| +724814 |V4814 Sgr |174512.1-285902 |M | 9.0 | 9.3 | |K | | | | | |77133 2MASS| +724815 |V4815 Sgr |174512.2-291111 |M | 9.6 | 10.1 | |K | | | | | |77133 2MASS| +724816 |V4816 Sgr |174512.6-290036 |M | 8.2 | 9.5 | |K | | | | | |77133 2MASS| +724817 |V4817 Sgr |174512.9-290447 |M | 9.0 | 9.8 | |K | | | | | |77133 2MASS| +724818 |V4818 Sgr |174513.3-285932 |M | 9.4 | 10.0 | |K | | | | | |77133 2MASS| +724819 |V4819 Sgr |174513.4-290336 |M: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +724820 |V4820 Sgr |174513.5-290527 |M: | 7.3 | 8.3 | |K | | | | | |77133 2MASS| +724821 |V4821 Sgr |174514.2-285742 |M: | 8.9 | 9.8 | |K | | | | | |77133 2MASS| +724822 |V4822 Sgr |174514.2-285645 |M | 10.2 | 13.0 | |K | | | | | |77133 2MASS| +724823 |V4823 Sgr |174514.2-291045 |M | 9.5 | 10.5 | |K | | | | | |77133 2MASS| +724824 |V4824 Sgr |174514.4-285744 |M: | 9.9 | 10.8 | |K | | | | | |77133 2MASS| +724825 |V4825 Sgr |174514.6-290440 |M: | 8.7 | 9.5 | |K | | | | | |77133 2MASS| +724826 |V4826 Sgr |174515.3-285150 |M | 9.5 | 10.8 | |K | | | | | |77133 2MASS| +724827 |V4827 Sgr |174516.1-290920 |M | 8.5 | 9.2 | |K | | | | | |77133 2MASS| +724828 |V4828 Sgr |174516.4-291116 |M | 9.1 | 10.0 | |K | | | | | |77133 2MASS| +724829 |V4829 Sgr |174517.1-290134 |M: | 10.0 | 11.8 | |K | | | | | |77133 2MASS| +724830 |V4830 Sgr |174517.1-290409 |M | 7.5 | 8.0 | |K | | | | | |77133 2MASS| +724831 |V4831 Sgr |174517.4-290425 |M | 7.8 | 8.8 | |K | | | | | |77133 2MASS| +724832 |V4832 Sgr |174517.9-290918 |M: | 8.4 | 9.3 | |K | | | | | |77133 2MASS| +724833 |V4833 Sgr |174518.6-290036 |M | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +724834 |V4834 Sgr |174518.8-284920 |M: | 9.2 | 10.0 | |K | | | | | |77133 2MASS| +724835 |V4835 Sgr |174519.0-285527 |M: | 10.1 | 10.8 | |K | | | | | |77133 2MASS| +724836 |V4836 Sgr |174519.5-290325 |M: | 8.9 | 9.5 | |K | | | | | |77133 2MASS| +724837 |V4837 Sgr |174519.7-291121 |M: | 8.6 | 10.2 | |K | | | | | |77133 2MASS| +724838 |V4838 Sgr |174520.1-290208 |M: | 9.2 | 10.1 | |K | | | | | |77133 2MASS| +724839 |V4839 Sgr |174520.1-290050 |M: | 9.7 | 10.7 | |K | | | | | |77133 2MASS| +724840 |V4840 Sgr |174520.5-290719 |M | 10.1 | 11.4 | |K | | | | | |77133 2MASS| +724841 |V4841 Sgr |174521.0-290845 |M | 10.5 | 11.8 | |K | | | | | |77133 | +724842 |V4842 Sgr |174521.4-290636 |M | 9.8 | 11.5 | |K | | | | | |77133 2MASS| +724843 |V4843 Sgr |174522.6-290326 |M | 10.6 | 12.5 | |K | | | | | |77133 2MASS| +724844 |V4844 Sgr |174522.8-291017 |M | 8.5 | 9.6 | |K | | | | | |77133 2MASS| +724845 |V4845 Sgr |174522.8-285933 |M | 8.0 | 9.5 | |K | | | | | |77133 2MASS| +724846 |V4846 Sgr |174522.9-290342 |M | 9.6 | 10.3 | |K | | | | | |77133 2MASS| +724847 |V4847 Sgr |174523.1-285636 |M | 9.2 | 10.7 | |K | | | | | |77133 2MASS| +724848 |V4848 Sgr |174523.8-285618 |M: | 9.2 | 9.8 | |K | | | | | |77133 2MASS| +724849 |V4849 Sgr |174523.9-285539 |M | 9.3 | 10.8 | |K | | | | | |77133 2MASS| +724850 |V4850 Sgr |174524.0-285128 |M: | 11.1 | 11.8 | |K | | | | | |77133 2MASS| +724851 |V4851 Sgr |174525.6-285402 |M: | 8.9 | 9.9 | |K | | | | | |77133 2MASS| +724852 |V4852 Sgr |174525.8-290419 |M: | 8.5 | 9.4 | |K | | | | | |77133 2MASS| +724853 |V4853 Sgr |174525.9-285105 |M | 10.0 | 12.2 | |K | | | | | |77133 2MASS| +724854 |V4854 Sgr |174526.2-290604 |M | 9.0 | 10.5 | |K | | | | | |77133 2MASS| +724855 |V4855 Sgr |174526.3-290002 |M: | 8.6 | 9.2 | |K | | | | | |77133 2MASS| +724856 |V4856 Sgr |174526.3-290924 |M | 9.0 | 10.9 | |K | | | | | |77133 2MASS| +724857 |V4857 Sgr |174526.5-285035 |M: | 9.5 | 10.4 | |K | | | | | |77133 2MASS| +724858 |V4858 Sgr |174526.7-285624 |M: | 8.8 | 9.8 | |K | | | | | |77133 2MASS| +724859 |V4859 Sgr |174527.1-285918 |M: | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +724860 |V4860 Sgr |174527.5-285423 |M | 10.4 | 11.8 | |K | | | | | |77133 2MASS| +724861 |V4861 Sgr |174527.5-285938 |M: | 10.2 | 11.0 | |K | | | | | |77133 2MASS| +724862 |V4862 Sgr |174527.7-285853 |M: | 8.5 | 9.1 | |K | | | | | |77133 2MASS| +724863 |V4863 Sgr |174527.8-290234 |M | 8.9 | 10.0 | |K | | | | | |77133 2MASS| +724864 |V4864 Sgr |174527.8-285812 |M | 7.7 | 8.3 | |K | | | | | |77133 2MASS| +724865 |V4865 Sgr |174528.1-285433 |M | 10.0 | 13.0 | |K | | | | | |77133 UCAC2| +724866 |V4866 Sgr |174528.0-290016 |M | 9.3 | 10.3 | |K | | | | | |77133 2MASS| +724867 |V4867 Sgr |174528.1-284940 |M | 10.5 | 11.7 | |K | | | | | |77133 2MASS| +724868 |V4868 Sgr |174528.2-285331 |M: | 8.9 | 9.3 | |K | | | | | |77133 2MASS| +724869 |V4869 Sgr |174528.4-285414 |M | 9.3 | 10.3 | |K | | | | | |77133 2MASS| +724870 |V4870 Sgr |174528.4-290400 |M | 8.6 | 9.1 | |K | | | | | |77133 2MASS| +724871 |V4871 Sgr |174528.6-285959 |M: | 9.1 | 10.1 | |K | | | | | |77133 2MASS| +724872 |V4872 Sgr |174528.7-290146 |M: | 7.7 | 9.4 | |K | | | | | |77133 2MASS| +724873 |V4873 Sgr |174528.8-285544 |M | 10.3 | 12.1 | |K | | | | | |77133 | +724874 |V4874 Sgr |174529.0-290413 |M: | 8.3 | 9.3 | |K | | | | | |77133 2MASS| +724875 |V4875 Sgr |174529.2-290704 |M | 9.5 | 11.0 | |K | | | | | |77133 2MASS| +724876 |V4876 Sgr |174529.7-285611 |M | 9.5 | 10.2 | |K | | | | | |77133 2MASS| +724877 |V4877 Sgr |174530.0-290510 |M: | 7.8 | 8.7 | |K | | | | | |77133 2MASS| +724878 |V4878 Sgr |174530.4-290014 |M | 9.5 | 11.0 | |K | | | | | |77133 2MASS| +724879 |V4879 Sgr |174530.4-285750 |M | 7.8 | 8.8 | |K | | | | | |77133 2MASS| +724880 |V4880 Sgr |174530.6-285939 |M | 9.0 | 11.1 | |K | | | | | |77133 2MASS| +724881 |V4881 Sgr |174530.7-285649 |M | 9.8 | 11.4 | |K | | | | | |77133 2MASS| +724882 |V4882 Sgr |174530.7-285801 |M: | 10.4 | 11.4 | |K | | | | | |77133 2MASS| +724883 |V4883 Sgr |174530.9-290141 |M | 9.5 | 11.0 | |K | | | | | |77133 2MASS| +724884 |V4884 Sgr |174530.9-290521 |M | 8.4 | 8.9 | |K | | | | | |77133 2MASS| +724885 |V4885 Sgr |174531.1-290030 |M: | 9.6 | 10.5 | |K | | | | | |77133 2MASS| +724886 |V4886 Sgr |174531.6-291124 |M: | 9.8 | 10.8 | |K | | | | | |77133 | +724887 |V4887 Sgr |174531.9-285747 |M | 8.4 | 9.8 | |K | | | | | |77133 2MASS| +724888 |V4888 Sgr |174532.1-290209 |M: | 8.5 | 9.2 | |K | | | | | |77133 2MASS| +724889 |V4889 Sgr |174532.2-290818 |M: | 10.3 | 11.3 | |K | | | | | |77133 2MASS| +724890 |V4890 Sgr |174532.3-290205 |M | 9.7 | 11.7 | |K | | | | | |77133 | +724891 |V4891 Sgr |174532.5-290159 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +724892 |V4892 Sgr |174532.8-290523 |SR: | 8.5 | 9.2 | |K | | | | | |77133 2MASS| +724893 |V4893 Sgr |174533.0-290110 |SR: | 9.4 | 12.0 | |K | | | | | |77133 | +724894 |V4894 Sgr |174533.1-291111 |M: | 9.6 | 10.1 | |K | | | | | |77133 2MASS| +724895 |V4895 Sgr |174533.1-285922 |M: | 9.2 | 10.2 | |K | | | | | |77133 2MASS| +724896 |V4896 Sgr |174533.2-285555 |M | 8.8 | 10.0 | |K | | | | | |77133 2MASS| +724897 |V4897 Sgr |174533.3-284858 |M | 9.1 | 10.2 | |K | | | | | |77133 2MASS| +724898 |V4898 Sgr |174533.7-285912 |M: | 8.7 | 9.6 | |K | | | | | |77133 2MASS| +724899 |V4899 Sgr |174533.8-290235 |M: | 9.4 | 10.1 | |K | | | | | |77133 2MASS| +724900 |V4900 Sgr |174534.2-290010 |M: | 9.2 | 9.9 | |K | | | | | |77133 2MASS| +724901 |V4901 Sgr |174534.4-290208 |M: | 9.7 | 10.3 | |K | | | | | |77133 2MASS| +724902 |V4902 Sgr |174534.4-285403 |M: | 10.5 | 12.1 | |K | | | | | |77133 | +724903 |V4903 Sgr |174534.7-290732 |M: | 7.9 | 8.8 | |K | | | | | |77133 2MASS| +724904 |V4904 Sgr |174534.8-290154 |M: | 8.7 | 9.4 | |K | | | | | |77133 2MASS| +724905 |V4905 Sgr |174535.3-290832 |M | 9.2 | 11.0 | |K | | | | | |77133 2MASS| +724906 |V4906 Sgr |174535.6-290325 |M: | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +724907 |V4907 Sgr |174535.8-285740 |M: | 9.0 | 9.7 | |K | | | | | |77133 2MASS| +724908 |V4908 Sgr |174536.1-290500 |M | 8.6 | 9.2 | |K | | | | | |77133 2MASS| +724909 |V4909 Sgr |174536.4-285000 |M | 9.4 | 10.2 | |K | | | | | |77133 2MASS| +724910 |V4910 Sgr |174537.2-290046 |M | 9.9 | 11.1 | |K | | | | | |77133 | +724911 |V4911 Sgr |174538.0-290102 |M | 9.2 | 11.2 | |K | | | | | |77133 2MASS| +724912 |V4912 Sgr |174538.0-285622 |M | 7.4 | 8.4 | |K | | | | | |77133 2MASS| +724913 |V4913 Sgr |174538.3-285702 |M | 8.4 | 9.5 | |K | | | | | |77133 2MASS| +724914 |V4914 Sgr |174538.3-290904 |M: | 9.0 | 10.0 | |K | | | | | |77133 2MASS| +724915 |V4915 Sgr |174538.5-284824 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +724916 |V4916 Sgr |174538.5-285606 |M: | 8.3 | 9.3 | |K | | | | | |77133 2MASS| +724917 |V4917 Sgr |174538.7-290610 |M: | 9.7 | 10.5 | |K | | | | | |77133 2MASS| +724918 |V4918 Sgr |174538.8-285636 |M: | 8.2 | 8.7 | |K | | | | | |77133 2MASS| +724919 |V4919 Sgr |174539.5-285730 |M: | 9.2 | 9.6 | |K | | | | | |77133 2MASS| +724920 |V4920 Sgr |174540.5-290035 |M: | 8.3 | 9.3 | |K | | | | | |77133 2MASS| +724921 |V4921 Sgr |174540.5-290812 |M: | 8.9 | 9.7 | |K | | | | | |77133 2MASS| +724922 |V4922 Sgr |174540.5-285320 |SR: | 8.3 | 9.0 | |K | | | | | |77133 2MASS| +724923 |V4923 Sgr |174540.8-290034 |M: | 9.0 | 9.7 | |K | | | | | |77133 | +724924 |V4924 Sgr |174541.1-285623 |M: | 8.0 | 8.8 | |K | | | | | |77133 2MASS| +724925 |V4925 Sgr |174541.7-285236 |M | 8.7 | 9.7 | |K | | | | | |77133 2MASS| +724926 |V4926 Sgr |174542.1-285637 |M: | 8.7 | 9.7 | |K | | | | | |77133 2MASS| +724927 |V4927 Sgr |174542.3-285139 |M: | 9.2 | 10.0 | |K | | | | | |77133 2MASS| +724928 |V4928 Sgr |174542.7-285958 |M: | 7.6 | 8.3 | |K | | | | | |77133 2MASS| +724929 |V4929 Sgr |174543.0-285154 |M | 9.3 | 11.0 | |K | | | | | |77133 2MASS| +724930 |V4930 Sgr |174543.0-290012 |M | 8.2 | 9.3 | |K | | | | | |77133 2MASS| +724931 |V4931 Sgr |174543.2-285422 |M | 8.3 | 9.1 | |K | | | | | |77133 2MASS| +724932 |V4932 Sgr |174543.3-284822 |M | 8.9 | 10.2 | |K | | | | | |77133 2MASS| +724933 |V4933 Sgr |174544.3-285153 |M: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +724934 |V4934 Sgr |174544.7-285815 |M | 7.8 | 9.0 | |K | | | | | |77133 2MASS| +724935 |V4935 Sgr |174545.0-285234 |M | 9.7 | 10.7 | |K | | | | | |77133 2MASS| +724936 |V4936 Sgr |174545.1-285741 |M | 8.1 | 9.2 | |K | | | | | |77133 2MASS| +724937 |V4937 Sgr |174545.3-285346 |M | 8.6 | 10.5 | |K | | | | | |77133 2MASS| +724938 |V4938 Sgr |174546.9-285700 |M: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +724939 |V4939 Sgr |174547.1-285536 |M: | 8.6 | 9.3 | |K | | | | | |77133 2MASS| +724940 |V4940 Sgr |174547.4-290424 |M | 11.0 | 12.1 | |K | | | | | |77133 2MASS| +724941 |V4941 Sgr |174547.7-285529 |M | 10.1 | 11.3 | |K | | | | | |77133 2MASS| +724942 |V4942 Sgr |174547.8-285625 |M | 9.1 | 9.8 | |K | | | | | |77133 2MASS| +724943 |V4943 Sgr |174547.9-285304 |M | 8.4 | 10.1 | |K | | | | | |77133 2MASS| +724944 |V4944 Sgr |174548.0-285521 |M: | 8.5 | 9.3 | |K | | | | | |77133 2MASS| +724945 |V4945 Sgr |174548.0-290302 |M | 8.6 | 9.3 | |K | | | | | |77133 2MASS| +724946 |V4946 Sgr |174548.2-285124 |M | 6.5 | 7.1 | |K | | | | | |77133 2MASS| +724947 |V4947 Sgr |174548.6-290357 |M: | 8.1 | 8.6 | |K | | | | | |77133 2MASS| +724948 |V4948 Sgr |174549.8-285651 |M | 7.6 | 8.5 | |K | | | | | |77133 2MASS| +724949 |V4949 Sgr |174550.0-285248 |M | 10.8 | 12.3 | |K | | | | | |77133 2MASS| +724950 |V4950 Sgr |174550.1-285338 |M: | 9.8 | 11.0 | |K | | | | | |77133 2MASS| +724951 |V4951 Sgr |174550.4-290922 |M: | 9.4 | 10.4 | |K | | | | | |77133 2MASS| +724952 |V4952 Sgr |174550.7-285400 |M: | 9.6 | 10.5 | |K | | | | | |77133 2MASS| +724953 |V4953 Sgr |174550.8-290421 |M | 9.2 | 10.8 | |K | | | | | |77133 2MASS| +724954 |V4954 Sgr |174551.0-290148 |M | 9.3 | 10.5 | |K | | | | | |77133 2MASS| +724955 |V4955 Sgr *|174551.4-285803 |M: | 10.3 | 11.0 | |K | | | | | |77133 2MASS| +724956 |V4956 Sgr |174552.2-285131 |M | 8.5 | 10.5 | |K | | | | | |77133 2MASS| +724957 |V4957 Sgr |174552.4-290202 |M | 9.5 | 11.0 | |K | | | | | |77133 2MASS| +724958 |V4958 Sgr |174553.1-290428 |M | 9.7 | 11.0 | |K | | | | | |77133 2MASS| +724959 |V4959 Sgr |174553.5-284950 |M | 8.3 | 9.6 | |K | | | | | |77133 2MASS| +724960 |V4960 Sgr |174553.8-285635 |M | 9.1 | 9.8 | |K | | | | | |77133 2MASS| +724961 |V4961 Sgr |174555.3-291007 |M | 8.4 | 9.5 | |K | | | | | |77133 2MASS| +724962 |V4962 Sgr |174555.5-285011 |M | 8.2 | 9.5 | |K | | | | | |77133 2MASS| +724963 |V4963 Sgr |174555.5-290628 |M | 9.6 | 10.7 | |K | | | | | |77133 2MASS| +724964 |V4964 Sgr |174555.7-290128 |M: | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +724965 |V4965 Sgr |174555.8-290313 |M | 9.0 | 10.1 | |K | | | | | |77133 2MASS| +724966 |V4966 Sgr |174556.2-284948 |M | 9.7 | 10.6 | |K | | | | | |77133 2MASS| +724967 |V4967 Sgr |174556.3-285109 |M: | 7.3 | 8.8 | |K | | | | | |77133 2MASS| +724968 |V4968 Sgr |174556.4-284927 |M | 8.8 | 9.4 | |K | | | | | |77133 2MASS| +724969 |V4969 Sgr |174556.8-290631 |M | 8.2 | 9.3 | |K | | | | | |77133 2MASS| +724970 |V4970 Sgr |174557.1-285559 |M | 7.5 | 8.5 | |K | | | | | |77133 2MASS| +724971 |V4971 Sgr |174557.5-290743 |M: | 9.8 | 10.7 | |K | | | | | |77133 2MASS| +724972 |V4972 Sgr |174557.9-290736 |M: | 9.6 | 10.2 | |K | | | | | |77133 2MASS| +724973 |V4973 Sgr |174558.4-285336 |M: | 8.4 | 9.7 | |K | | | | | |77133 2MASS| +724974 |V4974 Sgr |174558.7-290807 |M | 8.1 | 8.6 | |K | | | | | |77133 2MASS| +724975 |V4975 Sgr |174559.3-291200 |M | 8.3 | 9.4 | |K | | | | | |77133 2MASS| +724976 |V4976 Sgr |174559.5-285444 |M | 8.8 | 9.3 | |K | | | | | |77133 2MASS| +724977 |V4977 Sgr |174559.6-285412 |M | 8.4 | 10.2 | |K | | | | | |77133 2MASS| +724978 |V4978 Sgr |174559.9-290212 |M: | 9.1 | 10.1 | |K | | | | | |77133 2MASS| +724979 |V4979 Sgr |174600.5-285332 |M: | 9.2 | 9.9 | |K | | | | | |77133 2MASS| +724980 |V4980 Sgr |174600.9-285451 |M: | 8.9 | 9.5 | |K | | | | | |77133 2MASS| +724981 |V4981 Sgr |174600.9-290601 |M | 8.4 | 9.3 | |K | | | | | |77133 2MASS| +724982 |V4982 Sgr |174601.0-290334 |M: | 8.4 | 8.8 | |K | | | | | |77133 2MASS| +724983 |V4983 Sgr |174601.7-290655 |M | 8.7 | 9.9 | |K | | | | | |77133 2MASS| +724984 |V4984 Sgr |174601.9-290142 |M | 9.5 | 10.6 | |K | | | | | |77133 2MASS| +724985 |V4985 Sgr |174602.2-285315 |M: | 8.8 | 9.8 | |K | | | | | |77133 2MASS| +724986 |V4986 Sgr |174603.4-285829 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +724987 |V4987 Sgr |174603.5-285135 |M | 9.5 | 11.1 | |K | | | | | |77133 2MASS| +724988 |V4988 Sgr |174603.6-285742 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +724989 |V4989 Sgr |174603.6-290419 |M: | 9.1 | 9.5 | |K | | | | | |77133 2MASS| +724990 |V4990 Sgr |174603.9-285657 |M: | 9.6 | 10.4 | |K | | | | | |77133 2MASS| +724991 |V4991 Sgr |174604.0-285233 |M: | 7.3 | 8.2 | |K | | | | | |77133 2MASS| +724992 |V4992 Sgr |174604.1-285625 |M: | 8.9 | 9.6 | |K | | | | | |77133 2MASS| +724993 |V4993 Sgr |174604.2-285956 |M: | 9.3 | 9.8 | |K | | | | | |77133 2MASS| +724994 |V4994 Sgr |174604.3-285737 |M: | 7.0 | 7.4 | |K | | | | | |77133 2MASS| +724995 |V4995 Sgr |174604.6-290547 |M | 9.8 | 11.0 | |K | | | | | |77133 | +724996 |V4996 Sgr |174604.7-285333 |M: | 9.1 | 9.9 | |K | | | | | |77133 2MASS| +724997 |V4997 Sgr |174605.0-290355 |M | 8.2 | 8.8 | |K | | | | | |77133 2MASS| +724998 |V4998 Sgr |174605.6-285132 |SR: | 6.3 | 7.4 | |K | | | | | |77133 2MASS| +724999 |V4999 Sgr |174605.9-290632 |M: | 8.7 | 9.4 | |K | | | | | |77133 2MASS| +725000 |V5000 Sgr |174606.2-285000 |M | 8.9 | 10.2 | |K | | | | | |77133 2MASS| +725001 |V5001 Sgr |174606.3-290000 |M: | 8.8 | 9.7 | |K | | | | | |77133 2MASS| +725002 |V5002 Sgr |174606.3-285907 |M | 8.9 | 10.4 | |K | | | | | |77133 2MASS| +725003 |V5003 Sgr |174606.5-285556 |M: | 8.9 | 9.8 | |K | | | | | |77133 2MASS| +725004 |V5004 Sgr |174607.5-291043 |M | 8.5 | 9.7 | |K | | | | | |77133 2MASS| +725005 |V5005 Sgr |174607.6-290454 |M | 8.6 | 9.4 | |K | | | | | |77133 2MASS| +725006 |V5006 Sgr |174607.7-285734 |M: | 9.0 | 9.8 | |K | | | | | |77133 2MASS| +725007 |V5007 Sgr |174607.8-290206 |M: | 9.1 | 9.6 | |K | | | | | |77133 2MASS| +725008 |V5008 Sgr |174607.9-290423 |M | 9.7 | 11.0 | |K | | | | | |77133 2MASS| +725009 |V5009 Sgr |174608.1-284849 |M: | 7.2 | 7.8 | |K | | | | | |77133 2MASS| +725010 |V5010 Sgr |174608.6-291017 |M | 8.6 | 9.3 | |K | | | | | |77133 2MASS| +725011 |V5011 Sgr |174609.8-285119 |M | 9.0 | 10.2 | |K | | | | | |77133 2MASS| +725012 |V5012 Sgr |174609.9-291210 |M: | 7.6 | 8.1 | |K | | | | | |77133 2MASS| +725013 |V5013 Sgr |174610.0-285410 |M | 9.2 | 10.4 | |K | | | | | |77133 2MASS| +725014 |V5014 Sgr |174610.9-290208 |M | 9.3 | 10.0 | |K | | | | | |77133 2MASS| +725015 |V5015 Sgr |174611.0-285845 |SR: | 9.9 | 10.5 | |K | | | | | |77133 2MASS| +725016 |V5016 Sgr |174610.9-285723 |M | 9.5 | 10.8 | |K | | | | | |77133 2MASS| +725017 |V5017 Sgr |174611.0-284951 |M: | 7.4 | 9.0 | |K | | | | | |77133 2MASS| +725018 |V5018 Sgr |174611.1-290216 |M: | 7.7 | 8.6 | |K | | | | | |77133 2MASS| +725019 |V5019 Sgr |174611.6-290157 |M | 9.1 | 10.0 | |K | | | | | |77133 2MASS| +725020 |V5020 Sgr |174611.7-285932 |M | 8.7 | 10.2 | |K | | | | | |77133 2MASS| +725021 |V5021 Sgr |174611.9-285256 |M | 7.5 | 8.3 | |K | | | | | |77133 2MASS| +725022 |V5022 Sgr |174612.4-285519 |M | 9.1 | 10.5 | |K | | | | | |77133 2MASS| +725023 |V5023 Sgr |174612.5-284849 |M | 8.4 | 9.5 | |K | | | | | |77133 2MASS| +725024 |V5024 Sgr |174612.6-290825 |M: | 7.6 | 8.2 | |K | | | | | |77133 2MASS| +725025 |V5025 Sgr |174612.6-290809 |M: | 8.3 | 9.1 | |K | | | | | |77133 2MASS| +725026 |V5026 Sgr |174612.7-291012 |M | 8.0 | 9.0 | |K | | | | | |77133 2MASS| +725027 |V5027 Sgr |174612.8-290626 |M: | 9.3 | 10.3 | |K | | | | | |77133 2MASS| +725028 |V5028 Sgr |174612.8-285811 |M: | 9.1 | 9.6 | |K | | | | | |77133 2MASS| +725029 |V5029 Sgr |174613.2-285540 |M: | 9.2 | 10.0 | |K | | | | | |77133 2MASS| +725030 |V5030 Sgr |174613.6-285231 |M | 9.0 | 9.6 | |K | | | | | |77133 2MASS| +725031 |V5031 Sgr |174613.7-285514 |M: | 7.7 | 8.4 | |K | | | | | |77133 2MASS| +725032 |V5032 Sgr |174613.8-290559 |M | 9.0 | 10.0 | |K | | | | | |77133 2MASS| +725033 |V5033 Sgr |174614.2-290518 |M | 8.8 | 10.2 | |K | | | | | |77133 2MASS| +725034 |V5034 Sgr |174614.3-285409 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +725035 |V5035 Sgr |174614.8-285132 |M: | 8.9 | 9.5 | |K | | | | | |77133 2MASS| +725036 |V5036 Sgr |174614.9-285709 |M | 9.8 | 10.5 | |K | | | | | |77133 2MASS| +725037 |V5037 Sgr |174615.1-285425 |M: | 8.9 | 9.7 | |K | | | | | |77133 2MASS| +725038 |V5038 Sgr |174615.2-285342 |M | 8.1 | 9.3 | |K | | | | | |77133 2MASS| +725039 |V5039 Sgr |174615.7-285632 |M | 8.9 | 10.2 | |K | | | | | |77133 2MASS| +725040 |V5040 Sgr |174615.8-291052 |M: | 8.3 | 9.0 | |K | | | | | |77133 2MASS| +725041 |V5041 Sgr |174615.9-291138 |M: | 8.9 | 9.6 | |K | | | | | |77133 2MASS| +725042 |V5042 Sgr |174616.4-285426 |M: | 9.5 | 10.2 | |K | | | | | |77133 2MASS| +725043 |V5043 Sgr |174616.4-285859 |M: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +725044 |V5044 Sgr |174616.5-290428 |M | 8.4 | 9.1 | |K | | | | | |77133 2MASS| +725045 |V5045 Sgr |174616.6-285716 |M: | 8.1 | 8.8 | |K | | | | | |77133 2MASS| +725046 |V5046 Sgr |174616.8-285614 |M | 8.9 | 10.4 | |K | | | | | |77133 2MASS| +725047 |V5047 Sgr |174617.0-290408 |SR: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +725048 |V5048 Sgr |174617.1-290006 |M | 9.0 | 10.1 | |K | | | | | |77133 2MASS| +725049 |V5049 Sgr |174617.4-290223 |M | 8.7 | 9.9 | |K | | | | | |77133 2MASS| +725050 |V5050 Sgr |174617.4-290517 |M: | 8.3 | 9.0 | |K | | | | | |77133 2MASS| +725051 |V5051 Sgr |174617.5-284812 |M | 7.5 | 8.5 | |K | | | | | |77133 2MASS| +725052 |V5052 Sgr |174617.5-285524 |M | 9.0 | 9.8 | |K | | | | | |77133 2MASS| +725053 |V5053 Sgr |174617.9-285540 |M: | 9.2 | 10.2 | |K | | | | | |77133 2MASS| +725054 |V5054 Sgr |174618.0-285716 |M | 9.8 | 11.3 | |K | | | | | |77133 2MASS| +725055 |V5055 Sgr |174618.5-290337 |M | 8.4 | 10.2 | |K | | | | | |77133 2MASS| +725056 |V5056 Sgr |174618.8-291001 |M | 9.0 | 9.7 | |K | | | | | |77133 2MASS| +725057 |V5057 Sgr |174619.1-285520 |M | 8.5 | 10.0 | |K | | | | | |77133 2MASS| +725058 |V5058 Sgr |174619.4-290007 |M | 11.7 | 12.8 | |K | | | | | |77133 2MASS| +725059 |V5059 Sgr |174619.4-290439 |M: | 8.5 | 8.9 | |K | | | | | |77133 2MASS| +725060 |V5060 Sgr |174619.5-290149 |M | 8.9 | 9.6 | |K | | | | | |77133 2MASS| +725061 |V5061 Sgr |174619.9-290736 |M: | 8.9 | 9.5 | |K | | | | | |77133 2MASS| +725062 |V5062 Sgr |174620.7-285320 |M: | 11.6 | 12.2 | |K | | | | | |77133 2MASS| +725063 |V5063 Sgr |174620.9-285328 |M | 11.8 | 12.9 | |K | | | | | |77133 | +725064 |V5064 Sgr |174621.0-284923 |M: | 8.6 | 9.6 | |K | | | | | |77133 2MASS| +725065 |V5065 Sgr |174621.1-290846 |M | 9.3 | 10.5 | |K | | | | | |77133 2MASS| +725066 |V5066 Sgr |174621.6-285840 |M | 10.5 | 12.3 | |K | | | | | |77133 2MASS| +725067 |V5067 Sgr |174621.6-290321 |M: | 8.5 | 9.1 | |K | | | | | |77133 2MASS| +725068 |V5068 Sgr |174622.0-285207 |M: | 8.8 | 9.8 | |K | | | | | |77133 2MASS| +725069 |V5069 Sgr |174622.6-290305 |M: | 9.7 | 10.3 | |K | | | | | |77133 2MASS| +725070 |V5070 Sgr |174623.0-290601 |M | 9.2 | 10.0 | |K | | | | | |77133 2MASS| +725071 |V5071 Sgr |174623.2-285043 |M | 7.8 | 8.7 | |K | | | | | |77133 2MASS| +725072 |V5072 Sgr |174623.3-290703 |M: | 8.4 | 8.9 | |K | | | | | |77133 2MASS| +725073 |V5073 Sgr |174623.6-290619 |M: | 7.3 | 7.8 | |K | | | | | |77133 2MASS| +725074 |V5074 Sgr |174624.4-290040 |M | 8.6 | 9.4 | |K | | | | | |77133 2MASS| +725075 |V5075 Sgr |174625.5-290612 |M | 8.6 | 9.0 | |K | | | | | |77133 2MASS| +725076 |V5076 Sgr |174625.6-285054 |M: | 9.7 | 10.5 | |K | | | | | |77133 2MASS| +725077 |V5077 Sgr |174626.8-285357 |M | 9.7 | 12.4 | |K | | | | | |77133 2MASS| +725078 |V5078 Sgr |174627.1-284857 |M: | 8.8 | 9.7 | |K | | | | | |77133 2MASS| +725079 |V5079 Sgr |174627.9-285023 |M | 7.8 | 9.0 | |K | | | | | |77133 2MASS| +725080 |V5080 Sgr |174628.2-290613 |M | 8.7 | 9.7 | |K | | | | | |77133 2MASS| +725081 |V5081 Sgr |174628.4-290728 |M | 8.4 | 9.4 | |K | | | | | |77133 2MASS| +725082 |V5082 Sgr |174628.8-285148 |M: | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +725083 |V5083 Sgr |174628.9-290208 |M: | 9.3 | 10.0 | |K | | | | | |77133 2MASS| +725084 |V5084 Sgr |174629.3-285405 |M | 9.7 | 10.9 | |K | | | | | |77133 2MASS| +725085 |V5085 Sgr |174630.6-285700 |M | 7.8 | 8.8 | |K | | | | | |77133 2MASS| +725086 |V5086 Sgr |174631.6-285913 |M | 10.4 | 12.1 | |K | | | | | |77133 2MASS| +725087 |V5087 Sgr |174631.8-290719 |M | 10.8 | 12.4 | |K | | | | | |77133 2MASS| +725088 |V5088 Sgr |174632.0-285220 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +725089 |V5089 Sgr |174632.5-285753 |M | 8.4 | 9.8 | |K | | | | | |77133 2MASS| +725090 |V5090 Sgr |174632.5-290409 |M: | 10.2 | 11.0 | |K | | | | | |77133 2MASS| +725091 |V5091 Sgr |174633.8-290735 |M | 8.6 | 9.2 | |K | | | | | |77133 2MASS| +725092 |V5092 Sgr |174633.9-285405 |M | 8.6 | 9.9 | |K | | | | | |77133 2MASS| +725093 |V5093 Sgr |174634.2-285629 |M: | 9.7 | 10.4 | |K | | | | | |77133 2MASS| +725094 |V5094 Sgr |174634.3-285238 |M: | 8.4 | 9.3 | |K | | | | | |77133 2MASS| +725095 |V5095 Sgr |175116.5-230932 |SR: | 11.5 | 12.9 | |V | | | | | |77004 UCAC2| +725096 |V5096 Sgr |175357.3-221053 |SR: | 12.5 |< 13.2 | |V | | | | | |77004 2MASS| +725097 |V5097 Sgr |180204.1-233742 |WR | 11.8 |< 14.5 | |V | | | | | |77140 77140| +725098 |V5098 Sgr |180250.9-241617 |INA | 12.04 | 13.71 | |V | | | | | |77145 GSC | +725099 |V5099 Sgr *|180306.0-273045 |UGSU | 15.46 | 19.89 | |V | | | | | |77146 77146| +725100 |V5100 Sgr |180411.2-242446 |INA | 13.14 | 13.68 | |V | | | | | |77145 2MASS| +725101 |V5101 Sgr |180443.7-210931 |WR | 11.4 | 14.7 | |V | | | | | |77220 77220| +725102 |V5102 Sgr |181626.0-163956 |SR: | 11.0 | 12.6 | |V | | | | | |77004 UCAC2| +725103 |V5103 Sgr |181905.8-301907 |M | 11.5 |< 13.8 | |V | | | | | |77004 2MASS| +725104 |V5104 Sgr |182234.7-270629 |M | 2.99 | 4.49 | |K | | | | | |77081 77152| +725105 |V5105 Sgr |182334.7-274009 |M | 11.3 |< 13.4 | |V | | | | | |77004 2MASS| +725106 |V5106 Sgr |183049.2-181244 |M: | 11.8 |< 13.2 | |V | | | | | |77004 2MASS| +725107 |V5107 Sgr |183726.7-174541 |M: | 11.7 |< 13.3 | |V | | | | | |77004 2MASS| +725108 |V5108 Sgr |184733.6-240720 |M: | 11.8 |< 14.0 | |V | | | | | |77004 2MASS| +725109 |V5109 Sgr |190921.7-170359 |SR: | 11.8 | 14.0 | |V | | | | | |77004 UCAC2| +725110 |V5110 Sgr |193945.2-172932 |M | 10.9 |< 15.0 | |V | | | | | |77004 GSC | +725111 |V5111 Sgr |194000.6-311317 |DSCTC | 11.8 |( 0.04 )| |V | | | | | |77101 GSC | +725112 |V5112 Sgr *|195252.7-170150 |E: | 8.68 | 8.95 | |V | | | | | |77178 DM | +725113 |V5113 Sgr |181010.4-274535 |NA | 8.8 |< 18. | |V |52902. |2003 | | |pec(Nova) |78231 78232| +725114 |V5114 Sgr |181932.3-283636 |NA | 8.1 |< 18. | |V |52081. |2004 | | |pec(Nova) |78241 | +725115 |V5115 Sgr |181659.0-255639 |NA | 7.8 |< 18. | |V |53460. |2005 | | |pec(Nova) |78316 78114| +725116 |V5116 Sgr |181750.8-302631 |NA | 7.4 |< 15. | |V |53557. |2005 | | | |78109 | +725117 |V5117 Sgr |175852.6-364735 |NA | 9.2 |< 17. | |V |53787. |2006 | | |pec(Nova) |78084 | +725118 |V5118 Sgr |175005.0-295741 |EA | 16.00 | 16.07 | |I |52060.37108 | | 1.6154 |06 | |78220 78220| +725119 |V5119 Sgr |175040.9-174038 |SR: | 11.7 | 13.6 | |* | | | | | |78006 USNO | +725120 |V5120 Sgr |175048.1-300039 |EA: | 16.07 | 16.14 | |I |52090.7 | | | | |78220 78220| +725121 |V5121 Sgr |175049.5-300106 |EA | 14.67 | 14.71 | |I |52061.53515 | | 8.65725 | | |78118 78220| +725122 |V5122 Sgr |175103.1-295550 |EA | 15.35 | 15.42 | |I |52061.05651 | | 4.5487 |05 | |78220 78220| +725123 |V5123 Sgr |175114.4-295424 |EA | 16.18 | 16.22 | |I |52075.53363 | | 2.69042 : | | |78134 78134| +725124 |V5124 Sgr |175127.0-295222 |EA: | 14.51 | 14.54 | |I |52073.7 | | | | |78220 78220| +725125 |V5125 Sgr |175128.3-295235 |EP: | 14.92 | 14.96 | |I |52070.21900 | | 3.10140 |03 | |78134 78220| +725126 |V5126 Sgr |175149.4-300144 |EA | 14.88 | 14.93 | |I |52060.47118 | | 0.8082 |11 | |78220 78220| +725127 |V5127 Sgr |175150.9-295443 |EA | 14.01 | 14.07 | |I |52061.42444 | | 3.2687 |05 | |78220 78220| +725128 |V5128 Sgr |175208.6-295613 |EA | 14.79 | 14.84 | |I |52061.42566 | | 2.7179 |06 | |78220 78220| +725129 |V5129 Sgr *|175218.6-295625 |EA | 15.64 | 15.71 | 15.71 |I |52061.01612 | | 5.43284 | | |78118 78220| +725130 |V5130 Sgr |175236.0-293729 |EP: | 16.70 | 16.75 | |I |52074.99241 | | 1.74832 |05 | |78134 78134| +725131 |V5131 Sgr |175244.9-172401 |SR: | 12.5 | 14.4 | |* |52544 | | | | |78006 2MASS| +725132 |V5132 Sgr |175245.4-293512 |EA | 15.27 | 15.31 | |I |52062.13473 | | 2.2181 |06 | |78220 78220| +725133 |V5133 Sgr |175246.4-294514 |EA | 16.43 | 16.49 | |I |52063.10716 | | 3.4051 |06 | |78220 78220| +725134 |V5134 Sgr |175248.6-300030 |EA | 14.92 | 14.96 | |I |52061.92604 | | 2.3650 |07 | |78220 78220| +725135 |V5135 Sgr |175254.0-294634 |EA | 15.59 | 15.63 | |I |52073.84778 | | 1.32565 |09 | |78134 78134| +725136 |V5136 Sgr |175304.5-293830 |EA | 14.83 | 14.90 | |I |52063.80639 | | 5.2821 |04 | |78220 78220| +725137 |V5137 Sgr |175321.2-293539 |EA | 14.78 | 14.85 | |I |52061.49645 | | 2.5389 |05 | |78220 78220| +725138 |V5138 Sgr |175322.7-295923 |EA | 14.33 | 14.37 | |I |52060.79767 | | 1.8832 |09 | |78220 78220| +725139 |V5139 Sgr |175336.8-293430 |EA | 15.71 | 15.75 | |I |52061.13038 | | 1.7149 |11 | |78220 78220| +725140 |V5140 Sgr |175348.1-295601 |EA | 15.92 | 15.97 | |I |52076.26084 | | 2.24861 |06 | |78134 78134| +725141 |V5141 Sgr |175351.2-174614 |SR: | 13.0 | 14.5 | |* | | | | | |78006 2MASS| +725142 |V5142 Sgr |175351.7-294154 |EA | 15.39 | 15.46 | |I |52063.87664 | | 4.2835 |04 | |78220 78220| +725143 |V5143 Sgr |175409.0-294739 |EA | 13.49 | 13.55 | |I |52060.33385 | | 2.1386 |13 | |78220 78220| +725144 |V5144 Sgr |175416.5-294312 |EA | 16.01 | 16.06 | |I |52061.07501 | | 2.2280 |05 | |78220 78220| +725145 |V5145 Sgr |175423.5-294558 |EA | 16.21 | 16.27 | |I |52062.35748 | | 13.8736 | | |78118 78220| +725146 |V5146 Sgr |175433.4-294438 |EA | 16.35 | 16.42 | |I |52061.89798 | | 5.2821 |02 | |78220 78220| +725147 |V5147 Sgr |175433.9-300132 |EA | 13.06 | 13.10 | |I |52062.28715 | | 7.7978 |04 | |78220 78220| +725148 |V5148 Sgr |175435.0-293851 |EA | 16.39 | 16.46 | |I |52061.79082 | | 3.2866 |04 | |78220 78220| +725149 |V5149 Sgr |175438.6-293832 |EA | 14.55 | 14.63 | |I |52061.48734 | | 4.2750 |05 | |78220 78220| +725150 |V5150 Sgr |175447.0-294117 |EA | 15.58 | 15.63 | |I |52066.11971 | | 6.8925 | | |78220 78220| +725151 |V5151 Sgr |175452.3-295820 |EA | 13.22 | 13.25 | |I |52061.18221 | | 4.8746 |09 | |78220 78220| +725152 |V5152 Sgr |175503.3-294848 |EA | 15.19 | 15.22 | |I | | | 2.99432 | | |78118 78134| +725153 |V5153 Sgr |175516.4-293132 |EA | 13.48 | 13.51 | |I |52062.29677 | | 4.5170 |05 | |78220 78220| +725154 |V5154 Sgr |175529.8-293331 |EA | 15.39 | 15.44 | |I |52063.67328 | | 4.1610 |05 | |78220 78220| +725155 |V5155 Sgr |175553.2-292229 |EA | 15.68 | 15.73 | |I |52075.46493 | | 1.67483 |11 | |78134 78134| +725156 |V5156 Sgr |175621.2-292400 |EA | 14.67 | 14.73 | |I |52062.50097 | | 4.1015 |03 | |78220 78220| +725157 |V5157 Sgr *|175635.5-293221 |EP | 15.30 | 15.32 | |I |52072.68492 | | 1.21190 |05 | |78134 78134| +725158 |V5158 Sgr |175641.2-294006 |EA | 13.70 | 13.74 | |I |52060.54289 | | 1.9533 |07 | |78220 78220| +725159 |V5159 Sgr |175644.9-294035 |EA | 15.99 | 16.05 | |I |52062.74970 | | 8.5810 |04 | |78220 78220| +725160 |V5160 Sgr |175647.5-294242 |EA | 14.85 | 14.89 | |I |52060.35064 | | 1.3433 |06 | |78220 78220| +725161 |V5161 Sgr |175658.6-240611 |M | 10.7 | 13.2 | |I |51325 | | | | |78006 2MASS| +725162 |V5162 Sgr |175705.7-292249 |EA | 14.68 | 14.72 | |I |52060.81057 | | 0.8152 |09 | |78220 78220| +725163 |V5163 Sgr |175710.3-291538 |EA | 14.94 | 14.97 | |I |52060.03667 | | 3.43079 |03 | |78134 78220| +725164 |V5164 Sgr *|175716.0-293531 |EA | 13.26 | 13.31 | 13.31 |I |52060.98942 | | 2.51957 | | |78118 78220| +725165 |V5165 Sgr |175728.5-294350 |EA | 15.79 | 15.82 | |I |52077.04692 | | 3.18473 |04 | |78134 78134| +725166 |V5166 Sgr |175730.1-292844 |EA | 15.17 | 15.22 | |I |52060.57910 | | 5.7197 |06 | |78220 78220| +725167 |V5167 Sgr |175738.0-293517 |EA | 15.76 | 15.84 | |I |52062.37694 | | 6.2516 |04 | |78220 78220| +725168 |V5168 Sgr |175752.4-224134 |M | 10.5 | 12.9 | |I |51325 :| | 400. : | | |78006 2MASS| +725169 |V5169 Sgr |175802.4-294440 |SR: | 13.7 |< 15.4 | |* | | | | | |78006 2MASS| +725170 |V5170 Sgr |175811.2-195641 |M: | 13.3 |< 16.2 | |* | | | | | |78006 2MASS| +725171 |V5171 Sgr |175819.1-233629 |M: | 8.8 | 10.7 | |I | | | | | |78006 2MASS| +725172 |V5172 Sgr |175825.4-270555 |M: | 10.3 | 13.7 | |* | | | | | |78006 2MASS| +725173 |V5173 Sgr |175840.3-290349 |SR | 13.47 |( 0.2 )| |Rc| | | 78. | | |78223 2MASS| +725174 |V5174 Sgr |175840.8-290829 |SR | 15.16 |( 0.2 )| |Rc| | | 55. | | |78223 2MASS| +725175 |V5175 Sgr |175841.1-311517 |M: | 13.2 | 16.6 | |* | | | | | |78006 2MASS| +725176 |V5176 Sgr |175841.6-290354 |SRB | 14.8 | 15.8 | |Rc| | | 124. : | | |78223 2MASS| +725177 |V5177 Sgr |175841.9-290651 |SR | 13.92 |( 0.25 )| |Rc| | | 104. | | |78223 2MASS| +725178 |V5178 Sgr |175842.4-290516 |SR | 16.65 |( 0.4 )| |Rc| | | 112. | | |78223 2MASS| +725179 |V5179 Sgr |175842.4-291029 |SR | 16.10 |( 0.3 )| |Rc| | | 78. | | |78223 2MASS| +725180 |V5180 Sgr |175842.5-290241 |SR | 14.01 |( 0.15 )| |Rc| | | 31. | | |78223 2MASS| +725181 |V5181 Sgr |175842.6-290341 |SR | 16.31 |( 0.25 )| |Rc| | | 39. | | |78223 2MASS| +725182 |V5182 Sgr |175842.8-290847 |SR | 14.8 | 15.4 | |Rc| | | 74.3 | | |78223 2MASS| +725183 |V5183 Sgr |175843.3-291014 |SRS | 15.21 |( 0.1 )| |Rc| | | 27. | | |78223 2MASS| +725184 |V5184 Sgr |175843.7-290326 |SR | 13.41 |( 0.2 )| |Rc| | | 94. | | |78223 2MASS| +725185 |V5185 Sgr |175844.5-290236 |SRS | 14.05 |( 0.12 )| |Rc| | | 20. | | |78223 2MASS| +725186 |V5186 Sgr |175845.5-290358 |SR | 15.75 |( 0.15 )| |Rc| | | 36. | | |78223 2MASS| +725187 |V5187 Sgr |175845.8-291035 |SR | 15.43 |( 0.1 )| |Rc| | | 37. | | |78223 2MASS| +725188 |V5188 Sgr |175845.8-290328 |SR | 14.43 |( 0.12 )| |Rc| | | 37. | | |78223 2MASS| +725189 |V5189 Sgr |175845.9-290749 |SRS | 15.65 |( 0.15 )| |Rc| | | 25. | | |78223 2MASS| +725190 |V5190 Sgr |175846.0-290311 |SR | 15.08 |( 0.35 )| |Rc| | | 57. | | |78223 2MASS| +725191 |V5191 Sgr |175846.8-290720 |SR | 16.87 |( 0.1 )| |Rc| | | 31. | | |78223 2MASS| +725192 |V5192 Sgr |175846.9-290334 |SR | 15.10 |( 0.15 )| |Rc| | | 31. | | |78223 2MASS| +725193 |V5193 Sgr |175847.1-290710 |SR | 16.02 |( 0.1 )| |Rc| | | 68. | | |78223 2MASS| +725194 |V5194 Sgr |175847.3-290158 |SR | 14.66 |( 0.15 )| |Rc| | | 59. | | |78223 2MASS| +725195 |V5195 Sgr |175847.7-290944 |SR | 14.24 |( 0.1 )| |Rc| | | 95. | | |78223 2MASS| +725196 |V5196 Sgr |175847.8-291005 |SRB | 13.65 | 14.35 | |Rc| | | 220. : | | |78223 2MASS| +725197 |V5197 Sgr |175848.1-290127 |SRB | 16.10 | 16.75 | |Rc| | | 139.7 : | | |78223 2MASS| +725198 |V5198 Sgr |175848.6-290745 |SRB | 15.20 | 15.90 | |Rc| | | 98.4 | | |78223 2MASS| +725199 |V5199 Sgr |175849.0-291123 |SRB | 14.10 | 15.10 | |Rc| | | 381. : | | |78223 2MASS| +725200 |V5200 Sgr |175849.1-290529 |SRS | 15.14 |( 0.1 )| |Rc| | | 20. | | |78223 2MASS| +725201 |V5201 Sgr |175849.3-291014 |SRA | 15.75 | 17.40 | |Rc| | | 221. | | |78223 2MASS| +725202 |V5202 Sgr |175850.0-290633 |SR | 13.61 |( 0.1 )| |Rc| | | 140. | | |78223 2MASS| +725203 |V5203 Sgr |175850.2-290456 |SR | 15.15 |( 0.5 )| |Rc| | | 116. | | |78223 2MASS| +725204 |V5204 Sgr |175850.4-290315 |SR | 14.73 |( 0.15 )| |Rc| | | 30. | | |78223 2MASS| +725205 |V5205 Sgr |175850.5-291017 |SR | 16.01 |( 0.5 )| |Rc| | | 124. | | |78223 2MASS| +725206 |V5206 Sgr |175850.8-290107 |SR | 16.70 |( 0.35 )| |Rc| | | 144. : | | |78223 2MASS| +725207 |V5207 Sgr |175851.1-290722 |SR | 13.40 |( 0.4 )| |Rc| | | 71. | | |78223 2MASS| +725208 |V5208 Sgr |175851.3-290206 |SR | 16.24 |( 0.1 )| |Rc| | | 33. | | |78223 2MASS| +725209 |V5209 Sgr |175851.6-290314 |SRS | 14.15 |( 0.08 )| |Rc| | | 15.3 | | |78223 2MASS| +725210 |V5210 Sgr |175851.9-290526 |SR | 16.14 |( 0.1 )| |Rc| | | 95. | | |78223 2MASS| +725211 |V5211 Sgr |175853.0-290833 |SR | 14.16 | 14.44 | |Rc| | | 36.3 | | |78223 2MASS| +725212 |V5212 Sgr |175853.1-290423 |SR | 15.74 |( 0.3 )| |Rc| | | 33. | | |78223 2MASS| +725213 |V5213 Sgr |175853.4-285940 |SRS | 14.59 |( 0.15 )| |Rc| | | 28. | | |78223 2MASS| +725214 |V5214 Sgr |175854.0-290351 |SRS | 14.13 |( 0.1 )| |Rc| | | 25. | | |78223 2MASS| +725215 |V5215 Sgr |175854.1-290524 |SR | 15.90 |( 0.6 )| |Rc| | | 112. | | |78223 2MASS| +725216 |V5216 Sgr |175854.4-290325 |SRS | 15.49 |( 0.2 )| |Rc| | | 26. | | |78223 2MASS| +725217 |V5217 Sgr |175854.5-291033 |SR | 15.62 |( 0.4 )| |Rc| | | 84. | | |78223 2MASS| +725218 |V5218 Sgr |175854.6-285833 |SRS | 12.74 |( 0.25 )| |Rc| | | 25. | | |78223 2MASS| +725219 |V5219 Sgr |175855.0-290628 |SR | 16.21 |( 0.15 )| |Rc| | | 134. | | |78223 2MASS| +725220 |V5220 Sgr |175855.2-285810 |SRS | 13.13 |( 0.1 )| |Rc| | | 17.4 | | |78223 2MASS| +725221 |V5221 Sgr |175855.4-290707 |SR | 15.11 |( 0.2 )| |Rc| | | 50. | | |78223 2MASS| +725222 |V5222 Sgr |175855.5-291208 |SR | 15.37 |( 0.25 )| |Rc| | | 41. | | |78223 2MASS| +725223 |V5223 Sgr |175856.2-290051 |SR | 16.46 |( 0.3 )| |Rc| | | 173. : | | |78223 2MASS| +725224 |V5224 Sgr |175856.6-290601 |SRS | 15.07 |( 0.15 )| |Rc| | | 28. | | |78223 2MASS| +725225 |V5225 Sgr |175856.7-290340 |SR | 15.40 |( 0.2 )| |Rc| | | 56. | | |78223 2MASS| +725226 |V5226 Sgr |175856.8-290804 |SRS | 15.23 |( 0.1 )| |Rc| | | 21. | | |78223 2MASS| +725227 |V5227 Sgr |175856.9-290447 |SR | 15.17 |( 0.3 )| |Rc| | | 45. | | |78223 2MASS| +725228 |V5228 Sgr |175857.2-291218 |SR | 15.88 |( 0.12 )| |Rc| | | 101. | | |78223 2MASS| +725229 |V5229 Sgr |175857.4-290539 |SR | 13.43 |( 0.1 )| |Rc| | | 98. | | |78223 2MASS| +725230 |V5230 Sgr |175857.5-290633 |SRA | 13.00 | 13.80 | |Rc| | | 59.7 | | |78223 2MASS| +725231 |V5231 Sgr |175857.7-290116 |SRA | 15.35 | 15.95 | |Rc| | | 325. | | |78223 2MASS| +725232 |V5232 Sgr |175857.8-290350 |SR | 16.17 |( 0.6 )| |Rc| | | 232. : | | |78223 2MASS| +725233 |V5233 Sgr |175858.3-291137 |SRS | 13.61 |( 0.1 )| |Rc| | | 20. | | |78223 2MASS| +725234 |V5234 Sgr |175858.4-290846 |SR | 15.71 |( 0.25 )| |Rc| | | 36. | | |78223 2MASS| +725235 |V5235 Sgr |175858.5-290723 |SRB | 13.95 | 14.50 | |Rc| | | 49.1 | | |78223 2MASS| +725236 |V5236 Sgr |175859.9-285812 |SRS | 13.74 |( 0.1 )| |Rc| | | 16.9 | | |78223 2MASS| +725237 |V5237 Sgr |175900.1-291112 |SR | 14.50 |( 1.0 )| |Rc| | | 146. | | |78223 2MASS| +725238 |V5238 Sgr |175900.1-290558 |SRS | 15.12 |( 0.1 )| |Rc| | | 16.4 | | |78223 2MASS| +725239 |V5239 Sgr |175900.6-290307 |SRS | 14.95 |( 0.15 )| |Rc| | | 27. | | |78223 2MASS| +725240 |V5240 Sgr |175900.8-290954 |SR | 16.67 |( 0.4 )| |Rc| | | 82. | | |78223 2MASS| +725241 |V5241 Sgr |175900.8-291240 |SR | 15.40 |( 0.2 )| |Rc| | | 36. | | |78223 2MASS| +725242 |V5242 Sgr |175901.1-290912 |SRS | 15.61 |( 0.2 )| |Rc| | | 25. | | |78223 2MASS| +725243 |V5243 Sgr |175901.1-290519 |SR | 15.83 |( 0.15 )| |Rc| | | 63. | | |78223 2MASS| +725244 |V5244 Sgr |175901.4-290803 |SR | 16.21 |( 0.3 )| |Rc| | | 84. | | |78223 2MASS| +725245 |V5245 Sgr |175901.8-290532 |SR | 15.22 |( 0.2 )| |Rc| | | 36. | | |78223 2MASS| +725246 |V5246 Sgr |175902.1-290626 |SR | 15.36 |( 0.3 )| |Rc| | | 84. | | |78223 2MASS| +725247 |V5247 Sgr |175902.7-290843 |SRS | 16.15 |( 0.2 )| |Rc| | | 15.2 | | |78223 2MASS| +725248 |V5248 Sgr |175902.9-290139 |SR | 15.07 |( 0.25 )| |Rc| | | 33. | | |78223 2MASS| +725249 |V5249 Sgr |175903.0-291206 |SR | 13.94 |( 0.15 )| |Rc| | | 43. | | |78223 2MASS| +725250 |V5250 Sgr |175903.3-290603 |SR | 15.30 |( 0.08 )| |Rc| | | 62. | | |78223 2MASS| +725251 |V5251 Sgr |175903.5-285920 |SRS | 15.07 |( 0.15 )| |Rc| | | 28. | | |78223 2MASS| +725252 |V5252 Sgr |175904.1-291104 |SRB | 14.90 | 15.80 | |Rc| | | 115.5 | | |78223 2MASS| +725253 |V5253 Sgr |175904.5-290746 |SR | 15.43 |( 0.3 )| |Rc| | | 127. | | |78223 2MASS| +725254 |V5254 Sgr |175905.1-290709 |SRS | 13.53 |( 0.1 )| |Rc| | | 21.8 | | |78223 2MASS| +725255 |V5255 Sgr |175905.4-285836 |SR | 16.36 |( 0.3 )| |Rc| | | 79. | | |78223 2MASS| +725256 |V5256 Sgr |175905.5-290546 |SRS | 13.37 |( 0.1 )| |Rc| | | 18.7 | | |78223 2MASS| +725257 |V5257 Sgr |175905.6-290235 |SR | 16.15 |( 0.3 )| |Rc| | | 95. | | |78223 2MASS| +725258 |V5258 Sgr |175905.6-291107 |SR | 14.03 |( 0.1 )| |Rc| | | 51. | | |78223 2MASS| +725259 |V5259 Sgr |175905.7-291130 |SRS | 16.38 |( 0.5 )| |Rc| | | 20.1 | | |78223 2MASS| +725260 |V5260 Sgr |175905.9-290734 |SRS | 13.70 |( 0.06 )| |Rc| | | 26. | | |78223 2MASS| +725261 |V5261 Sgr |175905.9-290621 |SR | 13.71 |( 0.3 )| |Rc| | | 60. | | |78223 2MASS| +725262 |V5262 Sgr |175906.5-290529 |SRS | 14.87 |( 0.15 )| |Rc| | | 29. | | |78223 2MASS| +725263 |V5263 Sgr |175907.2-291244 |SR | 15.12 |( 0.15 )| |Rc| | | 30. | | |78223 2MASS| +725264 |V5264 Sgr |175907.2-291026 |SR | 14.02 |( 0.6 )| |Rc| | | 140. | | |78223 2MASS| +725265 |V5265 Sgr |175907.5-293029 |M | 10.7 |< 13.0 | |* | | | | | |78006 2MASS| +725266 |V5266 Sgr |175907.9-285828 |SR | 15.07 |( 0.25 )| |Rc| | | 31. | | |78223 2MASS| +725267 |V5267 Sgr |175908.2-290730 |SR | 13.42 |( 0.2 )| |Rc| | | 36. | | |78223 2MASS| +725268 |V5268 Sgr |175908.2-290857 |SR | 15.01 |( 0.6 )| |Rc| | | 121. | | |78223 2MASS| +725269 |V5269 Sgr |175908.4-291251 |SRS | 14.08 |( 0.1 )| |Rc| | | 16.4 | | |78223 2MASS| +725270 |V5270 Sgr |175908.7-291345 |SR | 18.12 |( 0.35 )| |Rc| | | 93. | | |78223 | +725271 |V5271 Sgr |175909.2-290426 |SRS | 15.05 |( 0.15 )| |Rc| | | 23.2 | | |78223 2MASS| +725272 |V5272 Sgr |175909.3-285800 |SRS | 14.36 |( 0.1 )| |Rc| | | 24.2 | | |78223 2MASS| +725273 |V5273 Sgr |175909.3-263800 |M | 12.9 |< 18. | |V |52465 | | 585. | | |78006 2MASS| +725274 |V5274 Sgr |175909.4-290826 |SR | 14.23 |( 0.2 )| |Rc| | | 41. | | |78223 2MASS| +725275 |V5275 Sgr |175910.1-291359 |SR | 14.49 |( 0.35 )| |Rc| | | 56. | | |78223 2MASS| +725276 |V5276 Sgr |175910.5-290458 |SR | 15.25 |( 0.4 )| |Rc| | | 140. | | |78223 2MASS| +725277 |V5277 Sgr |175910.6-290036 |SR | 14.24 |( 0.2 )| |Rc| | | 53. | | |78223 2MASS| +725278 |V5278 Sgr |175910.7-290709 |SR | 13.87 |( 0.25 )| |Rc| | | 43. | | |78223 2MASS| +725279 |V5279 Sgr |175910.8-285748 |LB: | 14.00 |( 0.2 )| |Rc| | | | | |78223 2MASS| +725280 |V5280 Sgr |175910.9-290316 |SR | 16.50 |( 0.5 )| |Rc| | | 159. : | | |78223 2MASS| +725281 |V5281 Sgr |175911.1-291403 |SR | 16.25 |( 0.35 )| |Rc| | | 159. | | |78223 2MASS| +725282 |V5282 Sgr |175912.3-291359 |SRS | 14.27 |( 0.1 )| |Rc| | | 28. | | |78223 2MASS| +725283 |V5283 Sgr |175912.6-290610 |SR | 15.02 |( 0.25 )| |Rc| | | 31. | | |78223 2MASS| +725284 |V5284 Sgr |175913.1-290902 |SR | 15.62 |( 0.25 )| |Rc| | | 71. | | |78223 2MASS| +725285 |V5285 Sgr |175913.3-291410 |SRS | 15.00 |( 0.15 )| |Rc| | | 26. | | |78223 2MASS| +725286 |V5286 Sgr |175913.5-285812 |SR | 12.62 |( 0.4 )| |Rc| | | 95. | | |78223 2MASS| +725287 |V5287 Sgr |175913.8-290704 |SR | 14.98 |( 0.15 )| |Rc| | | 33. | | |78223 2MASS| +725288 |V5288 Sgr |175913.8-290953 |SR | 16.28 |( 0.3 )| |Rc| | | 116. | | |78223 2MASS| +725289 |V5289 Sgr |175913.9-290816 |SRS | 15.12 |( 0.15 )| |Rc| | | 22.7 | | |78223 2MASS| +725290 |V5290 Sgr |175914.0-290242 |SR | 15.98 |( 0.35 )| |Rc| | | 71. | | |78223 2MASS| +725291 |V5291 Sgr |175914.5-290854 |SRS | 13.54 |( 0.1 )| |Rc| | | 27. | | |78223 2MASS| +725292 |V5292 Sgr |175914.8-291131 |SR | 15.86 |( 0.4 )| |Rc| | | 93. | | |78223 2MASS| +725293 |V5293 Sgr |175914.8-295353 |M: | 11.9 |< 15.8 | |* | | | | | |78006 2MASS| +725294 |V5294 Sgr |175915.3-290534 |SR | 14.86 |( 0.5 )| |Rc| | | 80. | | |78223 2MASS| +725295 |V5295 Sgr |175915.8-290825 |SR | 15.33 |( 0.2 )| |Rc| | | 65. | | |78223 2MASS| +725296 |V5296 Sgr |175915.9-290840 |SR | 14.25 |( 0.25 )| |Rc| | | 53. | | |78223 2MASS| +725297 |V5297 Sgr |175915.9-290410 |SR | 14.56 |( 0.15 )| |Rc| | | 55. | | |78223 2MASS| +725298 |V5298 Sgr |175916.3-290806 |SR | 15.31 |( 0.25 )| |Rc| | | 64. | | |78223 2MASS| +725299 |V5299 Sgr |175917.0-290502 |SR | 13.27 |( 0.2 )| |Rc| | | 57. | | |78223 2MASS| +725300 |V5300 Sgr |175917.3-291050 |SR | 14.43 |( 0.7 )| |Rc| | | 153. : | | |78223 2MASS| +725301 |V5301 Sgr |175917.8-290808 |SR | 15.92 |( 0.3 )| |Rc| | | 88. | | |78223 2MASS| +725302 |V5302 Sgr |175918.1-290124 |SR | 12.64 |( 0.45 )| |Rc| | | 38. | | |78223 2MASS| +725303 |V5303 Sgr |175918.3-290506 |SR | 14.58 |( 0.8 )| |Rc| | | 133. : | | |78223 2MASS| +725304 |V5304 Sgr |175918.4-290608 |SR | 16.34 |( 0.4 )| |Rc| | | 125. : | | |78223 2MASS| +725305 |V5305 Sgr |175918.5-290047 |SRS | 13.44 |( 0.15 )| |Rc| | | 25.1 | | |78223 2MASS| +725306 |V5306 Sgr |175918.5-291304 |SR | 13.70 |( 0.1 )| |Rc| | | 140. | | |78223 2MASS| +725307 |V5307 Sgr |175918.8-290547 |SRS | 14.30 |( 0.08 )| |Rc| | | 16.2 | | |78223 2MASS| +725308 |V5308 Sgr |175919.5-290452 |SR | 12.95 |( 0.15 )| |Rc| | | 60. | | |78223 2MASS| +725309 |V5309 Sgr |175919.7-291248 |SRS | 14.15 |( 0.15 )| |Rc| | | 28. | | |78223 2MASS| +725310 |V5310 Sgr |175920.0-291417 |SR | 17.37 |( 1.0 )| |Rc| | | 68. | | |78223 2MASS| +725311 |V5311 Sgr |175920.4-290952 |SR | 17.78 |( 0.9 )| |Rc| | | 120. | | |78223 2MASS| +725312 |V5312 Sgr |175920.6-291508 |SR | 15.34 |( 0.25 )| |Rc| | | 68. | | |78223 2MASS| +725313 |V5313 Sgr |175921.0-310920 |SR: | 13.9 |< 15.7 | |* | | | | | |78006 2MASS| +725314 |V5314 Sgr |175921.6-290842 |SR | 14.84 |( 0.35 )| |Rc| | | 52. | | |78223 2MASS| +725315 |V5315 Sgr |175921.8-291100 |SR | 14.86 |( 0.25 )| |Rc| | | 45. | | |78223 2MASS| +725316 |V5316 Sgr |175921.8-290548 |SR | 14.69 |( 0.35 )| |Rc| | | 53. | | |78223 2MASS| +725317 |V5317 Sgr |175921.9-291231 |SR | 12.84 |( 0.35 )| |Rc| | | 65. | | |78223 2MASS| +725318 |V5318 Sgr |175921.9-245935 |M: | 12.4 |< 16.0 | |* | | | | | |78006 USNO | +725319 |V5319 Sgr |175921.9-291158 |SR | 17.49 |( 0.4 )| |Rc| | | 88. | | |78223 2MASS| +725320 |V5320 Sgr |175922.4-291135 |SR | 14.76 |( 0.25 )| |Rc| | | 62. | | |78223 2MASS| +725321 |V5321 Sgr |175923.1-290822 |SR | 13.34 |( 0.3 )| |Rc| | | 74. | | |78223 2MASS| +725322 |V5322 Sgr |175923.3-291453 |SR | 16.08 |( 1.0 )| |Rc| | | 131. | | |78223 2MASS| +725323 |V5323 Sgr |175923.8-290954 |SR | 14.94 |( 0.2 )| |Rc| | | 31. | | |78223 2MASS| +725324 |V5324 Sgr |175924.3-291400 |SRB | 13.20 | 14.10 | |Rc| | | 166. | | |78223 2MASS| +725325 |V5325 Sgr *|175924.4-291238 |SR | 15.88 |( 0.5 )| |Rc| | | 105. | | |78223 2MASS| +725326 |V5326 Sgr |175925.2-290338 |SR | 16.43 |( 0.25 )| |Rc| | | 129. | | |78223 2MASS| +725327 |V5327 Sgr |175925.5-290038 |SR | 13.78 |( 0.15 )| |Rc| | | 39. | | |78223 2MASS| +725328 |V5328 Sgr |175926.0-290613 |SR | 17.06 |( 0.25 )| |Rc| | | 62. | | |78223 2MASS| +725329 |V5329 Sgr |175926.3-290707 |SR | 13.34 |( 0.35 )| |Rc| | | 52. | | |78223 2MASS| +725330 |V5330 Sgr |175926.4-290218 |SR | 15.46 |( 0.2 )| |Rc| | | 78. | | |78223 2MASS| +725331 |V5331 Sgr |175926.8-290348 |SRS | 15.63 |( 0.06 )| |Rc| | | 16.0 | | |78223 2MASS| +725332 |V5332 Sgr |175927.6-291335 |SRS | 14.41 |( 0.1 )| |Rc| | | 15.5 | | |78223 2MASS| +725333 |V5333 Sgr |175927.8-290531 |SR | 15.71 |( 0.3 )| |Rc| | | 73. | | |78223 2MASS| +725334 |V5334 Sgr |175927.8-291040 |SR | 14.85 |( 0.3 )| |Rc| | | 41. | | |78223 2MASS| +725335 |V5335 Sgr |175927.9-290119 |SR | 13.18 |( 0.1 )| |Rc| | | 58. | | |78223 2MASS| +725336 |V5336 Sgr |175929.5-290927 |SR | 12.64 |( 0.2 )| |Rc| | | 146. | | |78223 2MASS| +725337 |V5337 Sgr |175931.0-290859 |SR | 16.13 |( 0.3 )| |Rc| | | 121. : | | |78223 2MASS| +725338 |V5338 Sgr |175932.1-290859 |SR | 13.90 |( 0.3 )| |Rc| | | 105. | | |78223 2MASS| +725339 |V5339 Sgr |175932.4-290802 |SRS | 16.07 |( 0.1 )| |Rc| | | 20.5 | | |78223 2MASS| +725340 |V5340 Sgr |175933.9-290729 |SRS | 16.53 |( 0.06 )| |Rc| | | 12.9 | | |78223 2MASS| +725341 |V5341 Sgr |175934.9-291113 |SRS | 15.64 |( 0.08 )| |Rc| | | 14.3 | | |78223 2MASS| +725342 |V5342 Sgr |175935.3-290507 |SR | 14.34 |( 0.05 )| |Rc| | | 95. | | |78223 2MASS| +725343 |V5343 Sgr |175936.0-290917 |SR | 13.61 |( 0.4 )| |Rc| | | 140. | | |78223 2MASS| +725344 |V5344 Sgr |175936.2-290517 |SRS | 16.38 |( 0.1 )| |Rc| | | 12.0 | | |78223 2MASS| +725345 |V5345 Sgr |175936.9-290836 |SR | 15.48 |( 0.6 )| |Rc| | | 129. | | |78223 2MASS| +725346 |V5346 Sgr |175937.0-312447 |M: | 13.2 |< 15.4 | |* | | | | | |78006 2MASS| +725347 |V5347 Sgr |175937.0-290253 |SR | 16.04 |( 0.05 )| |Rc| | | 57. | | |78223 2MASS| +725348 |V5348 Sgr |175937.6-290928 |SRS | 14.18 |( 0.25 )| |Rc| | | 19.2 | | |78223 2MASS| +725349 |V5349 Sgr |175938.2-290129 |SR | 15.66 |( 0.06 )| |Rc| | | 105. | | |78223 2MASS| +725350 |V5350 Sgr |175939.2-290916 |SR | 14.69 |( 0.2 )| |Rc| | | 44. | | |78223 2MASS| +725351 |V5351 Sgr |175940.8-290738 |SR | 16.10 |( 0.06 )| |Rc| | | 93. | | |78223 2MASS| +725352 |V5352 Sgr |175941.3-210524 |M: | 13.3 |< 14.8 | |V |52483 | | 370. | | |78006 2MASS| +725353 |V5353 Sgr |175943.3-290736 |SRS | 15.34 |( 0.05 )| |Rc| | | 28. | | |78223 2MASS| +725354 |V5354 Sgr |175946.8-290358 |SRS | 16.31 |( 0.25 )| |Rc| | | 12.0 | | |78223 2MASS| +725355 |V5355 Sgr |175950.4-293542 |SR | 12.4 | 13.4 | |V |52840 | | 500. : | | |78006 2MASS| +725356 |V5356 Sgr |180015.6-215049 |SR: | 12.6 | 14.6 | |* | | | | | |78006 2MASS| +725357 |V5357 Sgr |180032.8-241619 |M | 7.7 | 10.8 | |I |51255 :| | 550. : | | |78006 2MASS| +725358 |V5358 Sgr |180039.6-283145 |M: | 12.4 |< 15.5 | |* | | | | | |78006 2MASS| +725359 |V5359 Sgr |180042.2-294437 |M: | 12.7 |< 15.0 | |* | | | | | |78006 2MASS| +725360 |V5360 Sgr |180110.5-293038 |SR: | 12.3 |< 14.4 | |* | | | | | |78006 2MASS| +725361 |V5361 Sgr |180113.9-302037 |RVA | 11.7 | 13.1 | |I |50597 | | 56.7 | | |78006 2MASS| +725362 |V5362 Sgr |180131.6-294352 |M | 11.2 | 17.4 | |I | | | 350. : | | |78006 2MASS| +725363 |V5363 Sgr |180135.9-301559 |SR | 11.0 | 12.9 | |I |53128 :| | 260. : | | |78006 2MASS| +725364 |V5364 Sgr |180149.5-301545 |SRA | 12.5 | 13.8 | |V |52854 | | 236. | | |78006 2MASS| +725365 |V5365 Sgr |180210.9-284750 |M | 11.5 | 15.6 | |I | | | 310. : | | |78006 2MASS| +725366 |V5366 Sgr |180214.6-281537 |M | 11.1 | 13.3 | |I | | | 270. : | | |78006 2MASS| +725367 |V5367 Sgr |180222.8-282224 |SR | 10.6 | 12.2 | |I | | | 193. | | |78006 2MASS| +725368 |V5368 Sgr |180229.7-281410 |M: | 11.6 |< 14.4 | |* | | | | | |78006 2MASS| +725369 |V5369 Sgr |180232.2-300201 |SRS | 13.71 |( 0.06 )| |Rc| | | 16.3 | | |78223 2MASS| +725370 |V5370 Sgr |180236.1-300218 |SRS | 15.62 |( 0.2 )| |Rc| | | 26.4 | | |78223 2MASS| +725371 |V5371 Sgr |180236.7-295753 |LB: | 15.03 |( 0.2 )| |Rc| | | | | |78223 2MASS| +725372 |V5372 Sgr |180237.9-295934 |SRS | 14.78 |( 0.15 )| |Rc| | | 28.5 | | |78223 2MASS| +725373 |V5373 Sgr |180238.7-295955 |SR | 16.59 |( 0.35 )| |Rc| | | 119. | | |78223 2MASS| +725374 |V5374 Sgr |180239.3-295920 |SRS | 13.80 |( 0.1 )| |Rc| | | 23.0 | | |78223 2MASS| +725375 |V5375 Sgr |180240.0-295822 |SR | 13.87 |( 0.15 )| |Rc| | | 42. | | |78223 2MASS| +725376 |V5376 Sgr |180240.6-300055 |SRS | 14.67 |( 0.15 )| |Rc| | | 27. | | |78223 2MASS| +725377 |V5377 Sgr |180240.9-295903 |SR | 15.80 |( 0.2 )| |Rc| | | 115. | | |78223 2MASS| +725378 |V5378 Sgr |180241.6-295754 |SR | 13.83 |( 0.2 )| |Rc| | | 52. | | |78223 2MASS| +725379 |V5379 Sgr |180241.8-295958 |SR | 15.52 |( 0.3 )| |Rc| | | 98. | | |78223 2MASS| +725380 |V5380 Sgr |180242.9-300336 |SR | 16.88 |( 0.5 )| |Rc| | | 128. | | |78223 2MASS| +725381 |V5381 Sgr |180243.3-295615 |SR | 15.02 |( 0.25 )| |Rc| | | 42. | | |78223 2MASS| +725382 |V5382 Sgr |180243.6-294215 |SRA | 10.7 | 11.9 | |I |53170 | | 204. | | |78006 2MASS| +725383 |V5383 Sgr |180245.0-295813 |SRS | 14.52 |( 0.1 )| |Rc| | | 18.0 | | |78223 2MASS| +725384 |V5384 Sgr |180245.3-295538 |SRS | 13.51 |( 0.5 )| |Rc| | | 17.7 | | |78223 2MASS| +725385 |V5385 Sgr |180245.5-300329 |SR | 14.14 |( 0.06 )| |Rc| | | 50. | | |78223 2MASS| +725386 |V5386 Sgr |180245.7-300112 |SR | 16.22 |( 0.35 )| |Rc| | | 115. | |M7 |78223 78226| +725387 |V5387 Sgr |180248.4-300311 |SR | 15.40 |( 0.3 )| |Rc| | | 54. | | |78223 2MASS| +725388 |V5388 Sgr |180248.9-295431 |SR | 15.65 |( 0.4 )| |Rc| | | 79. | | |78223 2MASS| +725389 |V5389 Sgr |180249.4-295853 |SR | 14.63 |( 0.3 )| |Rc| | | 63. | |M6 |78223 78226| +725390 |V5390 Sgr |180251.2-300014 |SR | 15.14 |( 0.7 )| |Rc| | | 88. | |M7 |78223 78226| +725391 |V5391 Sgr |180251.8-300246 |SR | 15.32 |( 0.25 )| |Rc| | | 58. | | |78223 2MASS| +725392 |V5392 Sgr |180252.3-300024 |SR | 15.70 |( 0.3 )| |Rc| | | 115. | |M6 |78223 78226| +725393 |V5393 Sgr |180252.6-295458 |SR | 15.76 |( 0.2 )| |Rc| | | 36. | |M7 |78223 78226| +725394 |V5394 Sgr |180252.8-300108 |SR | 15.92 |( 0.4 )| |Rc| | | 101. | |M6.5 |78223 78226| +725395 |V5395 Sgr |180252.9-300251 |SR | 15.53 |( 0.3 )| |Rc| | | 83. | | |78223 2MASS| +725396 |V5396 Sgr |180253.8-295425 |SR | 14.48 |( 0.15 )| |Rc| | | 36. | |M6 |78223 78226| +725397 |V5397 Sgr |180254.1-300049 |SR | 14.89 |( 0.5 )| |Rc| | | 79. | |M6 |78223 78226| +725398 |V5398 Sgr |180256.1-295535 |SRA | 15.20 | 16.20 | |Rc|51990 | | 280. : | | |78223 2MASS| +725399 |V5399 Sgr |180256.6-295706 |SR | 13.63 |( 0.5 )| |Rc| | | 74. | | |78223 2MASS| +725400 |V5400 Sgr *|180256.9-295552 |SRS | 15.71 |( 0.15 )| |Rc| | | 28. | |M6 |78223 78226| +725401 |V5401 Sgr |180257.1-295201 |SR | 14.54 |( 0.1 )| |Rc| | | 43. | | |78223 2MASS| +725402 |V5402 Sgr |180257.4-300354 |SR | 12.77 |( 0.1 )| |Rc| | | 42. | | |78223 2MASS| +725403 |V5403 Sgr |180258.2-295050 |SRS | 13.17 |( 0.15 )| |Rc| | | 23.2 | | |78223 2MASS| +725404 |V5404 Sgr |180258.4-300312 |SR | 15.26 |( 0.2 )| |Rc| | | 58. | | |78223 2MASS| +725405 |V5405 Sgr |180258.7-295427 |SRB | 13.77 |( 0.5 )| |Rc| | | 381. : | | |78223 2MASS| +725406 |V5406 Sgr |180258.7-295222 |SR | 13.57 |( 0.08 )| |Rc| | | 36. | | |78223 2MASS| +725407 |V5407 Sgr |180258.8-300109 |SR | 14.87 |( 0.25 )| |Rc| | | 36. | |M6.5 |78223 78226| +725408 |V5408 Sgr |180259.0-295759 |SR | 14.45 |( 0.3 )| |Rc| | | 101. | | |78223 2MASS| +725409 |V5409 Sgr |180259.5-300254 |SRA | 15.20 | 15.95 | |Rc| | | 235. : | |M7 |78223 78226| +725410 |V5410 Sgr |180301.4-234231 |SRA | 9.7 | 11.3 | |I |51354 | | 438. | | |78006 2MASS| +725411 |V5411 Sgr |180301.6-300001 |SR | 15.63 |( 0.25 )| |Rc| | | 34. | |M6.5 |78223 78226| +725412 |V5412 Sgr |180301.7-295053 |SRS | 13.59 |( 0.1 )| |Rc| | | 12.7 | | |78223 2MASS| +725413 |V5413 Sgr |180303.1-295516 |SR | 12.83 |( 0.06 )| |Rc| | | 67. | | |78223 2MASS| +725414 |V5414 Sgr |180303.8-300243 |SR | 15.31 |( 0.5 )| |Rc| | | 71. | |M6.5 |78223 78226| +725415 |V5415 Sgr |180303.9-295137 |SR | 14.71 |( 0.1 )| |Rc| | | 123. | |M6.5 |78223 78226| +725416 |V5416 Sgr |180304.8-295259 |SR | 15.29 |( 0.15 )| |Rc| | | 37. | | |78223 2MASS| +725417 |V5417 Sgr |180305.3-295516 |SR | 15.51 |( 0.3 )| |Rc| | | 115. | |M7 |78223 78226| +725418 |V5418 Sgr |180305.4-295032 |SRS | 12.58 |( 0.05 )| |Rc| | | 16.0 | | |78223 2MASS| +725419 |V5419 Sgr |180305.8-295346 |SR | 14.78 |( 0.4 )| |Rc| | | 67. | | |78223 2MASS| +725420 |V5420 Sgr |180305.8-300509 |SRS | 14.91 |( 0.2 )| |Rc| | | 23. | | |78223 2MASS| +725421 |V5421 Sgr |180306.2-295142 |SR | 15.29 |( 0.4 )| |Rc| | | 81. | |M7 |78223 78226| +725422 |V5422 Sgr |180306.2-295204 |SR | 16.42 |( 0.2 )| |Rc| | | 139. | |M7 |78223 78226| +725423 |V5423 Sgr |180306.9-300636 |SR | 16.00 |( 0.2 )| |Rc| | | 77. | |M7 |78223 78226| +725424 |V5424 Sgr |180307.1-300521 |SR | 16.08 |( 0.4 )| |Rc| | | 73. | |M6.5 |78223 78226| +725425 |V5425 Sgr |180307.3-300256 |SR | 13.29 |( 0.25 )| |Rc| | | 41. | | |78223 2MASS| +725426 |V5426 Sgr |180307.8-300452 |SR | 13.88 |( 0.05 )| |Rc| | | 119. | | |78223 2MASS| +725427 |V5427 Sgr |180307.9-251857 |SR: | 12.3 | 14.3 | |* |51340 :| | | | |78006 2MASS| +725428 |V5428 Sgr |180308.2-300331 |SR | 15.64 |( 0.2 )| |Rc| | | 92. | |M6.5 |78223 78226| +725429 |V5429 Sgr |180308.7-295220 |SR | 16.02 |( 0.3 )| |Rc| | | 98. | |M6.5 |78223 78226| +725430 |V5430 Sgr |180308.8-300554 |SRS | 14.64 |( 0.1 )| |Rc| | | 19.6 | | |78223 2MASS| +725431 |V5431 Sgr *|180309.3-295244 |SR | 13.71 |( 0.2 )| |Rc| | | 43. | | |78223 2MASS| +725432 |V5432 Sgr |180309.5-300241 |SRS | 13.45 |( 0.1 )| |Rc| | | 19.6 | | |78223 2MASS| +725433 |V5433 Sgr |180309.9-300139 |SRS | 14.51 |( 0.1 )| |Rc| | | 29.7 | |M6 |78223 78226| +725434 |V5434 Sgr |180310.6-295620 |SRS | 14.66 |( 0.15 )| |Rc| | | 12.0 | | |78223 2MASS| +725435 |V5435 Sgr |180311.9-295902 |SR | 12.74 |( 0.05 )| |Rc| | | 40. | | |78223 2MASS| +725436 |V5436 Sgr |180312.5-300430 |SR | 15.23 |( 0.4 )| |Rc| | | 90. | |M7 |78223 78226| +725437 |V5437 Sgr |180313.3-300057 |SR | 16.41 |( 0.7 )| |Rc| | | 222. : | |M8 |78223 78226| +725438 |V5438 Sgr |180313.9-295621 |SR | 14.16 |( 0.4 )| |Rc| | | 75. | | |78223 2MASS| +725439 |V5439 Sgr |180317.8-300231 |LB | 15.29 |( 1.0 )| |Rc| | | | |M6.5 |78227 78226| +725440 |V5440 Sgr |180318.1-300311 |SRS | 14.51 |( 0.1 )| |Rc| | | 11.4 | |M6 |78227 78226| +725441 |V5441 Sgr |180318.4-295347 |SR | 15.81 |( 0.2 )| |Rc| | | 76. | |M9 |78223 78226| +725442 |V5442 Sgr |180318.7-300220 |SR | 15.38 |( 0.4 )| |R | | | 246. | |M6 |78227 78226| +725443 |V5443 Sgr |180320.0-295936 |SRS | 13.83 |( 0.1 )| |Rc| | | 12.2 | |M5 |78223 78226| +725444 |V5444 Sgr |180320.3-300040 |SR | 13.47 |( 0.15 )| |R | | | 39.1 | |M3 |78227 2MASS| +725445 |V5445 Sgr |180320.3-295433 |SRS | 14.79 |( 0.1 )| |Rc| | | 24. | |M6.5 |78223 78226| +725446 |V5446 Sgr |180320.7-300452 |SRS | 15.42 |( 0.15 )| |Rc| | | 25. | |M6 |78223 78226| +725447 |V5447 Sgr |180322.3-300256 |SR | 13.22 |( 0.25 )| |Rc| | | 51. | |M6 |78223 78226| +725448 |V5448 Sgr |180323.0-300320 |SR | 15.54 |( 0.8 )| |R | | | 344. | |M6 |78227 78226| +725449 |V5449 Sgr |180323.3-300839 |SR | 14.97 |( 1.0 )| |Rc| | | 123. | |M7 |78223 78226| +725450 |V5450 Sgr |180323.8-295411 |SR | 15.15 |( 0.35 )| |Rc| | | 88. | |M6.5 |78223 78226| +725451 |V5451 Sgr |180323.9-300006 |SR | 14.33 |( 0.5 )| |Rc| | | 400. : | |M5 |78223 2MASS| +725452 |V5452 Sgr |180323.9-295926 |SR | 15.57 |( 0.3 )| |Rc| | | 62. | |M6.5 |78223 78226| +725453 |V5453 Sgr |180324.4-300416 |SR | 14.41 |( 0.15 )| |Rc| | | 33. | |M6.5 |78223 78226| +725454 |V5454 Sgr |180324.5-300439 |SRS | 15.93 |( 0.1 )| |R | | | 15.2 | |M6 |78227 78226| +725455 |V5455 Sgr |180325.0-300849 |SRS | 14.14 |( 0.03 )| |Rc| | | 23. | | |78223 2MASS| +725456 |V5456 Sgr |180325.1-295917 |SR | 15.15 |( 0.1 )| |R | | | 66.2 | |M6 |78227 78226| +725457 |V5457 Sgr |180325.3-295948 |SR | 14.70 |( 0.2 )| |Rc| | | 25.7 | |M6 |78227 78226| +725458 |V5458 Sgr |180325.3-300646 |SR | 14.37 |( 0.4 )| |Rc| | | 62. | |M6.5 |78223 78226| +725459 |V5459 Sgr |180325.8-295847 |SR | 14.84 |( 0.7 )| |Rc| | | 115. | |M6 |78223 78226| +725460 |V5460 Sgr |180326.5-300702 |SR | 16.02 |( 0.15 )| |Rc| | | 29. | | |78223 2MASS| +725461 |V5461 Sgr |180327.3-300104 |SR | 14.81 |( 0.3 )| |Rc| | | 749. | |M6.5 |78227 78226| +725462 |V5462 Sgr |180327.4-300226 |SRS | 13.65 |( 0.1 )| |Rc| | | 16.6 | |M5 |78223 2MASS| +725463 |V5463 Sgr |180327.8-300656 |SR | 15.41 |( 0.15 )| |Rc| | | 128. | | |78223 2MASS| +725464 |V5464 Sgr |180328.4-295545 |SR | 16.02 |( 0.1 )| |Rc| | | 107. | |M9 |78223 78226| +725465 |V5465 Sgr |180328.8-300228 |SRS | 14.71 |( 0.15 )| |R | | | 20.3 | |M7 |78227 78226| +725466 |V5466 Sgr |180329.2-300249 |SR | 12.97 |( 0.6 )| |Rc| | | 60.3 | | |78227 2MASS| +725467 |V5467 Sgr |180329.3-295940 |LB: | 15.11 |( 0.4 )| |Rc| | | | |M7 |78227 78226| +725468 |V5468 Sgr |180329.6-300109 |SR | 14.63 |( 0.5 )| |Rc| | | 88. | |M6.5 |78223 78226| +725469 |V5469 Sgr |180330.0-295822 |SR | 13.30 |( 0.25 )| |Rc| | | 40. | |M5 |78223 2MASS| +725470 |V5470 Sgr |180330.5-295836 |SRS | 12.26 |( 0.05 )| |R | | | 19.6 | |M2 |78227 2MASS| +725471 |V5471 Sgr |180330.6-300051 |SR | 15.59 |( 0.4 )| |R | | | 359. | |M6 |78227 78226| +725472 |V5472 Sgr |180331.1-295903 |SR | 15.46 |( 0.2 )| |Rc| | | 64. | |M7 |78223 78226| +725473 |V5473 Sgr |180331.2-295334 |SR | 15.35 |( 0.2 )| |Rc| | | 81. | |M8 |78223 78226| +725474 |V5474 Sgr |180331.7-300044 |SR | 13.03 |( 0.06 )| |Rc| | | 37. | |M3 |78223 2MASS| +725475 |V5475 Sgr |180331.9-300029 |SR | 13.65 |( 0.25 )| |Rc| | | 331. | |M6 |78227 78226| +725476 |V5476 Sgr |180332.2-300149 |SR | 13.71 |( 0.1 )| |Rc| | | 107. | |M6 |78223 2MASS| +725477 |V5477 Sgr |180332.3-300444 |SRS | 14.61 |( 0.3 )| |Rc| | | 26. | |M6 |78223 78226| +725478 |V5478 Sgr |180332.3-300332 |SRS | 14.62 |( 0.05 )| |R | | | 17.3 | |M4 |78227 2MASS| +725479 |V5479 Sgr |180333.3-300523 |SR | 14.73 |( 0.2 )| |Rc| | | 575. | |M7 |78227 78226| +725480 |V5480 Sgr |180333.7-300331 |SR | 12.70 |( 0.02 )| |R | | | 50.7 | |M3 |78227 2MASS| +725481 |V5481 Sgr |180334.1-295959 |SR | 15.30 |( 0.35 )| |Rc| | | 119. | |M8 |78223 78226| +725482 |V5482 Sgr |180334.1-300517 |SRS | 15.39 |( 0.05 )| |R | | | 16.6 | |M6 |78227 78226| +725483 |V5483 Sgr |180334.1-300105 |SR | 14.39 |( 0.2 )| |Rc| | | 101. | |M6.5 |78223 78226| +725484 |V5484 Sgr |180334.5-300138 |SR | 14.57 |( 0.2 )| |Rc| | | 58. | |M6 |78223 78226| +725485 |V5485 Sgr |180335.0-295949 |SR | 15.43 |( 0.2 )| |R | | | 135.5 | |M5 |78227 2MASS| +725486 |V5486 Sgr |180336.0-295858 |SRS | 15.83 |( 0.1 )| |R | | | 28.5 | |M6.5 |78227 78226| +725487 |V5487 Sgr |180336.9-300147 |SRS | 15.42 |( 0.2 )| |Rc| | | 11.0 | |M9 |78223 78226| +725488 |V5488 Sgr |180339.0-295827 |SR | 13.55 |( 0.1 )| |Rc| | | 55. | |M4 |78223 2MASS| +725489 |V5489 Sgr |180340.2-295532 |SRS | 13.35 |( 0.2 )| |Rc| | | 29.7 | | |78223 2MASS| +725490 |V5490 Sgr |180340.4-295613 |SRS | 14.40 |( 0.15 )| |Rc| | | 18.1 | | |78223 2MASS| +725491 |V5491 Sgr |180342.7-300007 |SRS | 14.54 |( 0.05 )| |R | | | 18.5 | |M5 |78227 2MASS| +725492 |V5492 Sgr |180343.8-300517 |SR | 16.1 |( 0.2 )| |R | | | 561. | |M7 |78227 78226| +725493 |V5493 Sgr |180345.3-300133 |SR | 14.82 |( 0.15 )| |R | | | 35.6 | |M5 |78227 2MASS| +725494 |V5494 Sgr |180345.5-300433 |SR | 14.98 |( 0.1 )| |R | | | 529. | |M6 |78227 78226| +725495 |V5495 Sgr |180346.0-295913 |SR | 15.41 |( 0.3 )| |Rc| | | 173.5 | |M7 |78227 78226| +725496 |V5496 Sgr |180346.6-300227 |SRS | 15.2 |( 0.15 )| |R | | | 23.7 | |M6.5 |78227 78226| +725497 |V5497 Sgr |180347.5-300337 |SRS | 14.90 |( 0.1 )| |R | | | 24.1 | |M6.5 |78227 78226| +725498 |V5498 Sgr |180348.5-295947 |SR | 14.60 |( 0.25 )| |Rc| | | 219. | |M6.5 |78227 78226| +725499 |V5499 Sgr |180350.1-300315 |SR | 14.55 |( 0.1 )| |R | | | 32.3 | |M5 |78227 2MASS| +725500 |V5500 Sgr |180350.9-300152 |SRS | 13.76 |( 0.05 )| |R | | | 23.2 | |M3 |78227 2MASS| +725501 |V5501 Sgr |180352.0-300202 |SR | 14.62 |( 0.2 )| |R | | | 48.0 | |M1 |78227 2MASS| +725502 |V5502 Sgr |180352.2-300334 |SR | 14.42 |( 0.1 )| |R | | | 471. | |M5 |78227 2MASS| +725503 |V5503 Sgr |180352.6-300124 |SR | 14.31 |( 0.05 )| |R | | | 44.7 | |M6 |78227 78226| +725504 |V5504 Sgr |180352.9-300159 |SR | 14.9 |( 0.15 )| |R | | | 31.9 | |M6 |78227 78226| +725505 |V5505 Sgr |180357.9-295700 |DSCT | 11.10 | 11.48 | |V | | | 0.08493 | | |78022 GSC | +725506 |V5506 Sgr |180736.9-273347 |SRA | 10.8 | 12.4 | |I |51377 | | 229. | | |78006 2MASS| +725507 |V5507 Sgr |180754.2-273416 |M | 11.5 | 13.8 | |I |51360 | | 288. | | |78006 2MASS| +725508 |V5508 Sgr |180808.0-261314 |UG: | 16.64 |< 19.0 | |I | | | | | |78229 USNO | +725509 |V5509 Sgr |181037.4-262000 |UG: | 16.75 |< 19.0 | |I | | | | | |78229 | +725510 |V5510 Sgr |181151.2-262649 |UG | 15.78 |< 19.0 | |I | | | | | |78229 | +725511 |V5511 Sgr |181339.0-334622 |XP | 18.05 |< 23.3 | |R | | | | | |78233 78233| +725512 |V5512 Sgr |181431.1-170926 |XB | 11.87 | 12.60 | |K | | | | |K5III |78235 | +725513 |V5513 Sgr |181656.8-232951 |UG | 13.95 |< 19.0 | |I | | | | | |78229 | +725514 |V5514 Sgr |181853.6-171828 |M | 14.0 |< 16.0 | |I |40764 | | 665. | | |78230 78230| +725515 |V5515 Sgr |181900.9-252413 |ELL | 14.6 | 14.8 | |V |52043.0 | | 77.0 | | |78237 78237| +725516 |V5516 Sgr |181902.2-252406 |LB | 15.4 | 16.0 | |V | | | | | |78238 78238| +725517 |V5517 Sgr |181902.5-253020 |SR: | 15.8 | 16.6 | |V | | | | | |78238 78238| +725518 |V5518 Sgr |181903.0-252935 |SR: | 14.5 | 15.1 | |V | | | | | |78238 78238| +725519 |V5519 Sgr |181903.7-252631 |SR: | 15.6 | 16.1 | |V | | | | | |78238 78238| +725520 |V5520 Sgr |181906.5-252412 |SR: | 17.8 | 18.7 | |V | | | | | |78238 78238| +725521 |V5521 Sgr *|181907.8-252716 |EW | 15.3 | 15.8 | 15.8 |V |52015.135 | | 0.464 | | |78237 78237| +725522 |V5522 Sgr |181910.6-252740 |SRB | 15.5 | 16.0 | |V | | | 63. | | |78238 78238| +725523 |V5523 Sgr |181910.9-252743 |M | 15.6 | 20.0 | |V |52050 | | 408. | | |78240 78240| +725524 |V5524 Sgr |181911.0-252320 |DSCT: | 17.4 | 18.3 | |V |52015.025 | | 0.163 | | |78239 78239| +725525 |V5525 Sgr |181916.8-252336 |SRB: | 16.6 | 17.4 | |V | | | 51. | | |78238 78238| +725526 |V5526 Sgr |181922.0-252317 |LB: | 16.6 | 17.3 | |V | | | | | |78238 78238| +725527 |V5527 Sgr *|181924.4-252553 |EB | 16.4 | 18.1 | 16.9 |V | | | 0.8273 | | |78237 78237| +725528 |V5528 Sgr *|181924.8-252458 |EB | 17.5 | 18.0 | 17.7 |V | | | 0.3668 | | |78237 78237| +725529 |V5529 Sgr |181928.0-253014 |SRB | 15.2 | 15.7 | |V | | | 67. : | | |78238 78238| +725530 |V5530 Sgr |181936.7-252553 |M | 12.0 | 16.8 | |V |52114 | | 200. | | |78240 78239| +725531 |V5531 Sgr |181940.8-252713 |SR | 16.5 | 16.9 | |V |52150 | | 69. | | |78238 78238| +725532 |V5532 Sgr |181958.5-173134 |M: | 14.7 |< 16.0 | |I |48180 | | 338. : | | |78230 78230| +725533 |V5533 Sgr *|182329.0-301530 |LPB: | 9.77 | 9.80 | |V | | | 0.89164 | |B8IV |78022 DM | +725534 |V5534 Sgr |182330.5-272714 |M | 13.6 | 16.4 | |* | | | | | |78006 2MASS| +725535 |V5535 Sgr *|182457.4-302443 |EB | 10.65 | 11.00 | 10.96 |V |51950.288 | | 2.2517 | |A0 |78022 DM | +725536 |V5536 Sgr |182505.0-170358 |M | 14.6 | 16.5 | |I |40054 | | 206.0 | | |78230 78230| +725537 |V5537 Sgr |182612.7-260540 |SRB | 10.9 | 11.5 | |V | | | 41. | | |78040 DM | +725538 |V5538 Sgr |182754.1-162128 |SRA | 16.1 | 17.4 | |I |44418 | | 416. | | |78230 78230| +725539 |V5539 Sgr |183209.6-295547 |SRA | 11.1 | 13.5 | |V |52850 | | 169.26 | |Me |78090 GSC | +725540 |V5540 Sgr |183958.9-331412 |SRB | 12.0 | 12.8 | |V | | | 53. : | | |78012 GSC | +725541 |V5541 Sgr |184316.6-183128 |PVTEL | 13.3 |( 0.15 )| |V | | | | | |78249 USNO | +725542 |V5542 Sgr |184323.9-212037 |EA | 13.18 | 13.84 | |* |52875.9458 | | 1.6351 |15 | |78250 78250| +725543 |V5543 Sgr |184550.3-321626 |M | 11.5 | 16.7 | |R |52945 | | 241. | | |78130 2MASS| +725544 |V5544 Sgr |184721.8-310748 |SRA | 11.6 | 14.0 | |V |52883 | | 194. | |Me |78090 USNO | +725545 |V5545 Sgr |185352.8-222204 |SRA | 12.1 | 14.2 | |V |53050 | | 377. | |Me |78130 USNO | +725546 |V5546 Sgr |192401.6-333232 |GDOR | 7.69 | 7.79 | |Hp| | | | |F0V |78024 DM | +725547 |V5547 Sgr |193057.4-324157 |ELL: | 7.39 |( 0.1 )| |V | | | 0.692 | |F2 |78024 DM | +725548 |V5548 Sgr |193601.6-244309 |DSCTC: | 5.82 |( 0.04 )| |B | | | 0.11340 | |A1m |78270 DM | +725549 |V5549 Sgr |193640.5-283504 |M | 11.8 |< 15.0 | |V |52775 | | 377. | |Me |78130 GSC | +725550 |V5550 Sgr |194208.9-284611 |M | 11.7 | 14.7 | |V |52812 | | 216. | |Me |78090 GSC | +725551 |V5551 Sgr |194231.0-220612 |M | 11.3 | 15.0 | |V |52787 | | 278. | |Me |78090 GSC | +725552 |V5552 Sgr |194855.3-371212 |EA | 12.86 | 13.74 : | |V |52180.497 | | 2.6954 | | |78011 78121| +725553 |V5553 Sgr |195517.7-440039 |EB | 8.53 | 8.62 | |V |48404.165 | | 2.69466 | |F5/F6V |78011 DM | +725554 |V5554 Sgr |195958.0-225815 |M | 11.3 | 15.4 | |V |52757 | | 276. | |Me |78090 GSC | +725555 |V5555 Sgr *|200149.8-124118 |* | 11.08 | 11.51 | |V | | | | |B1Ibe |78281 DM | +725556 |V5556 Sgr |202729.2-304837 |M | 12.0 |< 15.0 | |V |52832 | | 233. | |Me |78090 2MASS| +725557 |V5557 Sgr |180143.3-353928 |N | 12.3 |< 16.5 | |p |12595. |1893 | | | |00250 | +725558 |V5558 Sgr |181018.3-184652 |NB | 6.53 |< 20. | |V |54292. |2007 | | |pec(Nova) |79182 79182| +725559 |V5559 Sgr *|175406.3-283910 |EA | 12.43 | 13.1 | 13.0 : |V |53263.542 | | 4.4361 |05 | |79009 79116| +725560 |V5560 Sgr |175621.5-273756 |CEP: | 11.7 | 12.1 | |V |53125.76 | | 11.6097 | |ea |79064 79116| +725561 |V5561 Sgr |180016.1-240206 |SRC | 9.46 | 9.78 | |V | | | 86. | |M3-M5Ib |79064 DM | +725562 |V5562 Sgr |180247.5-292159 |EA | 7.77 | 7.99 | 7.98 |V |52548.530 | | 3.03868 |12 |B2V |79011 DM | +725563 |V5563 Sgr |180434.2-242201 |EW: | 9.60 | 9.93 | 9.92 |V |52840.577 | | 0.617262 | |B2Vne |79004 DM | +725564 |V5564 Sgr |181317.2-263214 |SRB | 10.8 | 11.4 | |V | | | 57. | |M5 |79064 79127| +725565 |V5565 Sgr *|181641.6-353810 |EA | 10.39 | 10.89 | 10.69 |V |52819.836 | | 4.3028 |05 |B9 |79011 DM | +725566 |V5566 Sgr *|181957.8-220715 |EA | 11.95 : | 12.35 : | 12.3 : |V |52566.494 | | 2.37999 |10 |M6: |79003 79127| +725567 |V5567 Sgr |182105.5-182720 |DCEP | 10.3 | 10.7 : | |V |52826.76 | | 9.7616 |30 | |79064 79195| +725568 |V5568 Sgr |182524.6-221117 |EA | 12.9 | 13.5 : | 13.5 : |V |53460.725 | | 2.4887 |05 | |79001 79127| +725569 |V5569 Sgr *|185003.6-262415 |EA | 10.0 | 12.0 | |V |52031. | | 513. |16 |Be |79161 DM | +725570 |V5570 Sgr |191056.8-255440 |EA | 8.60 | 9.05 | 8.88 |V |52474.633 | | 11.7902 |03 : |B9V |79006 DM | +725571 |V5571 Sgr |191309.7-321601 |EA | 11.76 | 12.30 | 12.23 |V |52740.875 | | 0.948834 |12 | |79018 79034| +725572 |V5572 Sgr |193203.1-281245 |EA | 7.60 | 7.95 | 7.76 |V |52055.777 | | 1.43979 |15 |B8V |79003 DM | +725573 |V5573 Sgr |193906.6-204914 |CWA | 11.35 | 12.55 | |V |52001.10 | | 14.279 |40 | |79123 79096| +725574 |V5574 Sgr |194544.6-311237 |RRAB | 12.4 | 13.7 | |V |53827.891 | | 0.554840 |10 | |79064 79080| +725575 |V5575 Sgr |195419.4-295440 |EB | 10.76 | 11.08 | 10.95 |V |52529.568 | | 0.80681 | | |79018 DM | +725576 |V5576 Sgr |200222.5-120319 |EA | 11.68 | 12.3 | 11.9 : |V |52513.521 | | 1.14177 |20 | |79018 GSC | +725577 |V5577 Sgr |200311.1-220739 |SRB | 12.0 | 12.8 | |V | | | 134. | |M7 |79100 GSC | +725578 |V5578 Sgr |201123.5-431348 |SRB | 11.5 | 13.4 | |V | | | 211. | | |79100 79063| +725579 |V5579 Sgr |180558.9-271356 |NA | 6.7 |< 19. | |V |54580. |2008 | | |pec(Nova) |79252 79253| +725580 |V5580 Sgr |182201.5-280240 |N | 7.8 |< 15. | |R |54799. |2008 | 2008 | | pec(Nova) |80221 | NL80_1 +725581 |V5581 Sgr |174408.4-260549 |N: | 12.5 |< 14. | |V |54941. |2009 | 2009 | | pec(e) |80222 | NL80_1 +725582 |V5582 Sgr |174505.4-200322 |N | 11.9 |< 20. | |V |54888. |2009 | 2009 | | pec(Nova) |80223 | NL80_1 +725583 |V5583 Sgr |180707.7-334635 |NA | 7.3 |< 20. | |V |55051. |2009 | 2009 | | pec(Nova) |80224 | NL80_1 +725584 |V5584 Sgr |183132.8-161908 |NA | 9.21 |< 21. | |V |55134. |2009 | 2009 | | pec(Nova) |80225 | NL80_1 +725585 |V5585 Sgr |180726.9-290044 |NA | 8.98 |< 18. | |V |55219. |2010 | 2010 | | pec(Nova) |80226 | NL80_1 +725586 |V5586 Sgr |175303.0-281219 |N | 11.1 |< 17. | |* |55311. |2010 | 2010 | | pec(Nova) |80227 | NL80_1 +725587 |V5587 Sgr |174746.2-233514 |NA | 12.2 |< 17. | |V |55628 |2011 | | |pec(Nova) |80426 | NL80_2 +725588 |V5588 Sgr |181021.4-230530 |NA | 11.30 |< 20. | |V |55659 |2011 | | |pec(Nova) |80427 | NL80_2 +725589 |V5589 Sgr |174528.0-230523 |NA | 8.8 |< 16. | |V |56039. |2012 | | |pec(Nova) |80458 80467| NL80_3 +725590 |V5590 Sgr |181103.7-271729 |ZAND: | 10.6 | 15.4 | |* | | | | |pec(e) |80486 80489| NL80_3 +725591 |V5591 Sgr |175225.8-212622 |NA | 9.7 |< 16.5 | |V |56106. |2012 | | |pec(Nova) |80533 80555| NL80_3 +725592 |V5592 Sgr |182027.3-274426 |NA | 7.77 |< 20. | |V |56117. |2012 | | |pec(Nova) |80572 80581| NL80_3 +725593 |V5593 Sgr |181936.9-190741 |NA | 11.07 |< 20. | |V |56131. |2012 | | |pec(Nova) |80601 80602| NL80_3 +725594 |V5594 Sgr |174656.8-231005 |CWB | 14.89 |( 0.52 )| |Ic| | | 1.20950 | | |80466 2MASS| NL80_3 +725595 |V5595 Sgr |174701.9-225134 |CWB | 14.31 |( 0.51 )| |Ic| | | 3.08870 | | |80466 2MASS| NL80_3 +725596 |V5596 Sgr |174716.2-231631 |CWB | 14.84 |( 0.51 )| |Ic| | | 1.28364 | | |80466 2MASS| NL80_3 +725597 |V5597 Sgr |174930.9-295058 |CWB | 16.88 |( 0.56 )| |Ic| | | 1.55140 | | |80466 | NL80_3 +725598 |V5598 Sgr |174951.3-295620 |EP: | 16.63 | 16.66 | |Ic|52083.3491 | | 5.31075 |02 | |80343 80343| NL80_3 +725599 |V5599 Sgr |175021.5-295428 |CWB | 16.40 |( 0.73 )| |Ic| | | 1.50105 | | |80466 | NL80_3 +725600 |V5600 Sgr |175054.0-293142 |RRAB | 17.68 |( 0.42 )| |Ic| | | 0.66782 |19 | |80466 | NL80_3 +725601 |V5601 Sgr |175207.8-295701 |CWB | 16.34 |( 0.41 )| |Ic| | | 2.29300 | | |80466 2MASS| NL80_3 +725602 |V5602 Sgr |175215.5-300017 |CWB | 16.20 |( 0.42 )| |Ic| | | 2.08811 | | |80466 2MASS| NL80_3 +725603 |V5603 Sgr |175224.3-293922 |EA | 15.16 | 15.18 | |I |52079.8336 | | 2.57330 |09 |F6 |80343 80343| NL80_3 +725604 |V5604 Sgr |175226.0-294856 |CWB: | 15.48 |( 0.19 )| |Ic| | | 0.95258 | | |80466 | NL80_3 +725605 |V5605 Sgr |175230.0-293302 |EP: | 13.49 | 13.50 | |I |52079.9182 | | 4.53720 |03 |F2 |80343 80343| NL80_3 +725606 |V5606 Sgr |175329.2-294852 |CWB | 14.89 |( 0.60 )| |Ic| | | 2.21828 | | |80466 USNO | NL80_3 +725607 |V5607 Sgr |175406.6-291622 |CWB | 14.85 |( 0.59 )| |Ic| | | 3.51336 | | |80466 2MASS| NL80_3 +725608 |V5608 Sgr |175409.1-293959 |CWB | 14.51 |( 0.53 )| |Ic| | | 2.21270 | | |80466 2MASS| NL80_3 +725609 |V5609 Sgr |175455.6-295731 |CWB | 15.07 |( 0.49 )| |Ic| | | 3.54254 | | |80466 2MASS| NL80_3 +725610 |V5610 Sgr |175459.2-291939 |EA | 14.93 | 14.95 | |I |52076.1042 | | 3.11580 |07 | |80343 80343| NL80_3 +725611 |V5611 Sgr |175506.8-291808 |CWB | 15.49 |( 0.52 )| |Ic| | | 1.81738 | | |80466 | NL80_3 +725612 |V5612 Sgr |175508.3-294851 |EA | 14.75 | 14.78 | |I |52076.8198 | | 4.34244 |06 | |80490 80490| NL80_3 +725613 |V5613 Sgr |175523.1-293136 |CWA | 13.31 |( 0.77 )| |Ic| | | 9.94431 | | |80466 2MASS| NL80_3 +725614 |V5614 Sgr |175543.8-294450 |CWB | 15.01 |( 0.51 )| |Ic| | | 1.35410 | | |80466 G2.3 | NL80_3 +725615 |V5615 Sgr |175605.0-295452 |CWB: | 15.98 |( 0.23 )| |Ic| | | 0.92213 | | |80466 | NL80_3 +725616 |V5616 Sgr |175612.6-294502 |EA | 15.85 | 15.88 | |I |52075.6424 6| | 2.53782 |05 |F9IV-V |80343 80343| NL80_3 +725617 |V5617 Sgr |175801.5-285957 |CWB | 15.34 |( 0.63 )| |Ic| | | 2.33010 | | |80466 2MASS| NL80_3 +725618 |V5618 Sgr |175803.4-290113 |CWB | 14.73 |( 0.47 )| |Ic| | | 2.31407 | | |80466 2MASS| NL80_3 +725619 |V5619 Sgr |175814.6-313324 |CWB | 14.65 |( 0.71 )| |Ic| | | 1.85470 | | |80466 2MASS| NL80_3 +725620 |V5620 Sgr |175839.5-332034 |EW | 12.25 | 12.65 | 12.60 |V |52405.79 | | 0.421905 | | |80002 GSC | NL80_3 +725621 |V5621 Sgr |175856.0-284320 |CWB | 13.81 |( 0.29 )| |Ic| | | 7.13700 | | |80466 | NL80_3 +725622 |V5622 Sgr |175940.9-333911 |LPB | 9.3 |( 0.06 )| |V | | | 1.4828 | |B5II/III |80491 DM | NL80_3 +725623 |V5623 Sgr |180104.5-284121 |CWB | 14.51 |( 0.44 )| |Ic| | | 2.24745 | | |80466 2MASS| NL80_3 +725624 |V5624 Sgr |180106.5-174423 |M | 3.49 | 4.63 | |K | | | 628. | |C |80166 2MASS| NL80_3 +725625 |V5625 Sgr |180132.7-294912 |CWB | 14.00 |( 0.20 )| |Ic| | | 5.53097 | | |80466 2MASS| NL80_3 +725626 |V5626 Sgr |180147.3-290739 |CWB | 14.29 |( 0.46 )| |Ic| | | 1.33916 | | |80466 2MASS| NL80_3 +725627 |V5627 Sgr *|180156.3-272256 |UG:+E | 15.1 | 16.96 | 16.90 |V |53245.275 | | 0.1170 | |ea |80156 80027| NL80_3 +725628 |V5628 Sgr |180156.8-285512 |CWB: | 15.40 |( 0.23 )| |Ic| | | 0.93951 | | |80466 2MASS| NL80_3 +725629 |V5629 Sgr |180256.0-284039 |CWB | 14.84 |( 0.61 )| |Ic| | | 1.50523 | | |80466 2MASS| NL80_3 +725630 |V5630 Sgr |180419.9-290244 |CWB | 13.40 |( 0.14 )| |Ic| | | 7.45600 | | |80466 2MASS| NL80_3 +725631 |V5631 Sgr *|180604.7-241144 |EA | 7.70 | 7.81 | 7.73 |V |52383.888 | | 4.5928 |07 |O8V(n) |80015 DM | NL80_3 +725632 |V5632 Sgr *|180642.0-234422 |M | 4.17 | 5.81 | |K | | | 664. | |C |80166 2MASS| NL80_3 +725633 |V5633 Sgr *|180807.5-343432 |BCEP | 9.34 | 9.44 | |V | | | 0.210641 | |B1II |80445 GSC | NL80_3 +725634 |V5634 Sgr *|180951.1-194352 |XP | 20.8 | 21.36 | |Ks| | | | | |80498 80499| NL80_3 +725635 |V5635 Sgr |181031.4-260456 |CWB | 15.44 |( 0.16 )| |Ic| | | 5.84966 | | |80466 2MASS| NL80_3 +725636 |V5636 Sgr |181034.2-260838 |CEP: | 16.81 |( 0.42 )| |Ic| | | 0.83163 | | |80466 GSC23| NL80_3 +725637 |V5637 Sgr |181312.2-172808 |SRB | 12.6 | 13.8 | |V | | | 114. | | |80477 GSC | NL80_3 +725638 |V5638 Sgr |181501.4-224358 |M | 4.70 | 6.87 | |K | | | 611. | | |80166 2MASS| NL80_3 +725639 |V5639 Sgr *|181639.2-241833 |RCB | 11.2 | 13.9 | |Ic| | | | | |80500 2MASS| NL80_3 +725640 |V5640 Sgr *|181923.1-282857 |DSCTC: | 11.20 | 11.22 | |V | | | 0.224046 | |F2 |80502 GSC | NL80_3 +725641 |V5641 Sgr *|182610.4-170421 |BCEP | 10.15 | 10.27 | |V | | | 0.203362 | |B |80445 GSC | NL80_3 +725642 |V5642 Sgr |183105.6-251137 |M | 11.9 |< 14.3 | |V |54644. | | 183.5 | | |80001 GSC | NL80_3 +725643 |V5643 Sgr |183324.0-193020 |EA | 9.53 | 9.88 | 9.74 |V |52080.6265 | | 1.91860 |10 |B9IV/V |80001 DM | NL80_3 +725644 |V5644 Sgr *|183951.9-320055 |RR(B) | 11.95 | 13.00 | |V | | | 0.46126 | | |80300 GSC | NL80_3 +725645 |V5645 Sgr |184116.7-290441 |M | 11.8 |< 13.7 | |V |53869. | | 303. | | |80001 GSC | NL80_3 +725646 |V5646 Sgr |184250.9-270855 |M | 13.1 |< 16.6 | |V |54571. | | 285. | | |80239 80239| NL80_3 +725647 |V5647 Sgr |184419.6-203307 |M | 13.4 |< 15.1 | |V |55002. | | 188. | | |80001 GSC | NL80_3 +725648 |V5648 Sgr |185243.6-160048 |EA | 12.0 | 12.9 | 12.1 : |V |53236.358 | | 2.498117 |12 | |80624 GSC | NL80_3 +725649 |V5649 Sgr *|190255.8-141502 |SRA: | 11.7 |< 12.9 | |V |53642. | | 213. | | |80297 80297| NL80_3 +725650 |V5650 Sgr |190726.6-204911 |EB | 15.12 | 16.00 | 15.58 |* |53612.0059 6| | 0.440415 | | |80516 80516| NL80_3 +725651 |V5651 Sgr |191134.7-343509 |RS | 9.8 | 10.1 | |V | | | 3.3775 | |G9III |80001 DM | NL80_3 +725652 |V5652 Sgr |191533.2-241046 |BY | 6.23 | 6.25 | |V | | | 7.06546 | |F8V |80518 HIP | NL80_3 +725653 |V5653 Sgr |193008.7-253603 |EA | 12.16 | 13.4 | 12.22 |V |53555.833 | | 1.516915 |12 | |80011 GSC | NL80_3 +725654 |V5654 Sgr |193443.5-242214 |EA | 11.47 | 13.7 | 11.56 |V |53465.866 | | 1.49863 |11 | |80011 GSC | NL80_3 +725655 |V5655 Sgr |193906.4-254406 |RS | 10.6 | 11.1 | |V | | | 12.76 | |K0IIIe |80034 DM | NL80_3 +725656 |V5656 Sgr |194217.1-145814 |EA | 8.55 | 8.72 | 8.62 |V |53522.806 | | 3.70677 |05 |A0V |80011 DM | NL80_3 +725657 |V5657 Sgr |194249.1-411952 |EA: | 14.2 | 14.9 : | 14.7 : |V |52131.63 | | 2.8765 | | |80011 GSC | NL80_3 +725658 |V5658 Sgr |195904.7-375028 |EA | 8.32 | 8.50 | 8.50 |V |53820.883 | | 1.76937 |12 |F3V |80015 DM | NL80_3 +725659 |V5659 Sgr *|195926.7-340004 |RRAB | 11.7 | 12.8 | |V |52027.5 | | 0.3797209 | | |80377 GSC | NL80_3 +725660 |V5660 Sgr |200152.0-175201 |BY | 12.5 | 13.0 | |V | | | 6.5789 | |K7V |80001 GSC | NL80_3 +725661 |V5661 Sgr |200227.9-370017 |RRAB | 13.5 | 14.25 | |V |54308.702 | | 0.575775 |14 | |80135 GSC | NL80_3 +725662 |V5662 Sgr |200551.1-293500 |NL | 15.81 | 15.98 | |V | | | 0.062887 | |pec(e) |80524 80524| NL80_3 +725663 |V5663 Sgr |200556.4-321659 |RS | 11.9 | 12.2 | |V | | | 8.3114 | | |80001 DM | NL80_3 +725664 |V5664 Sgr *|200749.4-424347 |RRC: | 13.65 | 14.1 | |V |54276.725 | | 0.39505 |50 : | |80135 GSC | NL80_3 +725665 |V5665 Sgr |201349.1-374927 |RRAB | 13.3 : | 14.2 | |V |54229.91 | | 0.59644 |22 | |80135 GSC | NL80_3 +729007 |eta Sgr *|181737.6-364542 |LB: | 3.05 | 3.12 | |V | | | | |M3.5III |05840 08087| +729012 |mu. Sgr *|181345.8-210332 |EA+ACYG | 3.80 | 3.88 | |V |44035. | | 180.55 |11 |B8eqIa+B1.5V |09921 BD | +7290171|rho 1 Sgr |192140.4-175050 |DSCTC | 3.90 | 3.94 | |V | | | 0.050 | |F0IV-V |06255 BD | +729020 |ups Sgr *|192143.6-155718 |EB/GS | 4.53 | 4.61 | 4.59 |V |20439.55 | | 137.939 | |B8pI:+O9V |09924 BD | +730001 |R Sco *|161739.1-225640 |M | 9.8 | 15.5 | |V |44678. | | 224.61 |46 |M(3)e |00001 00002| +730002 |S Sco *|161740.2-225336 |M | 9.5 | 15.5 | |V |41463. | | 177.92 |50 |M(3)e |00001 00002| +730003 |T Sco *|161702.8-225831 |NA | 6.8 |< 12. | |V |00552. |1860 | | | |09563 | +730004 |U Sco *|162230.8-175243 |NR | 8.7 | 19.3 | |V |44049. |1979 | | |pec(e) |09564 09564| +730005 |V Sco | | | | | | | | | | | | |=W Sco +730006 |W Sco |161145.8-200814 |M | 10.5 | 15.4 | |V |39162. | | 221.27 |47 | |00001 00002| +730007 |X Sco |160831.9-213150 |M | 10.2 | 15.0 | |V |39135. | | 199.86 |50 |M2e |00001 00002| +730008 |Y Sco *|162926.4-192051 |M: | 10.9 | 15.0 | |V |34531. | | 351.88 |45 |M8 |00001 00002| +730009 |Z Sco *|160600.7-214400 |M | 8.7 | 13.4 | |V |41750. | | 343.03 |49 |M5.5e:-M7e |00001 00002| +730010 |RR Sco *|165637.8-303448 |M | 5.0 | 12.4 | |V |45418. | | 281.45 |47 |M6II-IIIe-M9 |00001 00002| +730011 |RS Sco |165537.8-450611 |M | 6.2 | 13.0 | |V |44676. | | 319.91 |42 |M5e-M9 |00001 00002| +730012 |RT Sco |170332.6-365514 |M | 7.0 | 15.2 | |V |39252. | | 449.04 |41 |S7,2(M6e-M7e) |00001 00002| +730013 |RU Sco *|174225.2-434501 |M | 7.8 | 13.7 | |V |39980. | | 370.75 |54 |M4/6e-M7II-IIIe |00001 00002| +730014 |RV Sco *|165819.8-333633 |DCEP | 6.61 | 7.49 | |V |34925.38 | | 6.06133 |24 |F5-G1 |02309 08953| +730015 |RW Sco *|171451.7-332555 |M | 8.8 | 15.5 | |V |39078. | | 388.45 |40 |M5e |00001 00002| +730016 |RX Sco |161157.3-245356 |M | 11.2 |< 16. | |p |40838. | | 235.7 |40 |Me |00001 CoD | +730017 |RY Sco *|175052.3-334220 |DCEP | 7.51 | 8.44 | |V |28256.45 | | 20.31322 |37 |F6-G2 |09288 02852| +730018 |RZ Sco *|160436.1-240601 |M | 8.0 | 12.8 | |V |44698. | | 156.60 |45 |M3e-M4e |00001 00002| +730019 |SS Sco |165515.3-323750 |LC: | 9.78 | 11.9 : | |B | | | | |K2 |06450 00261| +730020 |ST Sco |163636.2-311402 |SRA | 10.4 | 13.9 | |p | | | 194.5 | |S4,7:(R5) |00236 08953| +730021 |SU Sco |164038.7-322248 |SR | 11.7 |< 13.2 | |p | | | 414. : | |C5,5(N0) |00236 00261| +730022 |SV Sco *|174820.0-354205 |M | 8.7 | 14.9 | |V |39606. | | 262.0 |49 |M3e |00001 00002| +730023 |SW Sco |172521.7-434956 |M | 10.8 |< 13.0 | |p |28410. | | 260.86 | |M4e |00236 CoD | +730024 |SX Sco |174728.2-354205 |SR: | 10.5 | 11.4 | |p | | | | |C5,4(N3) |02448 00262| +730025 |SY Sco *|175348.8-342403 |M | 10.5 |< 15.0 | |p |29458. | | 234.9 | |M6e |00001 02448| +730026 |SZ Sco |165629.2-393821 |M | 11.1 |< 13.0 | |p |30110. | | 320.86 | |M6e |00236 00263| +730027 |TT Sco |174030.4-413750 |SR: | 11.4 | 13.4 | |p | | | | |C4,4(N3) |00264 00021| +730028 |TU Sco |170735.6-314930 |M | 10.1 |< 13.0 | |p |34906. | | 373.04 | |M7IIe-M9 |00001 00261| +730029 |TV Sco |174327.1-434604 |SRB | 11.0 | 13.0 | |p | | | 200. | |Me |00014 03508| +730030 |TW Sco |161046.6-230357 |M | 12.8 |< 15.0 | |p |40783. | | 199.8 |40 | |09565 09565| +730031 |TX Sco *|175515.2-341408 |CST | 7.7 | | |p | | | | |A2n | 09467| +730032 |TY Sco |160332.2-233442 |M | 12.8 |< 15.0 | |p |13700. | | 291. | |Me |00265 GSC22| +730033 |TZ Sco |160742.9-231855 |M | 13.0 |< 15.0 | |p |40409. | | 205.0 | |Me |09565 09565| +730034 |UU Sco |160733.5-240312 |RRC | 12.5 | 13.4 | |p |40060.240 | | 0.36533 |20 | |09565 09565| +730035 |UV Sco |160828.8-220431 |LB: | 13.0 |< 15.0 | |p | | | | |M7e |09447 09447| +730036 |UW Sco |161013.6-224256 |IN: | 13.2 |< 15.0 | |p | | | | | |09447 09447| +730037 |UX Sco |161026.2-240610 |SRA | 12.5 | 14.5 | |p |40706. | | 201.8 |40 | |00001 09565| +730038 |UY Sco |161440.3-214206 |M: | 12.9 |< 14.9 | |p |23572. | | 151.3 : | | |00267 06286| +730039 |UZ Sco |161540.3-250102 |IN: | 13.2 |< 16. | |p | | | | | |00121 USNO | +730040 |VV Sco |161534.5-224241 |INS: | 12.9 | 14.2 | |p | | | | |ea: |09447 09447| +730041 |VW Sco |161805.5-214904 |M | 14.3 : |< 16. | |p |23572. | | 257.6 | |M7e |00267 06286| +730042 |VX Sco |161815.9-211147 | | 13. | 15. | |p | | | | | |00268 GSC22| +730043 |VY Sco |161924.6-222119 |M | 13.0 |< 15.5 | |p |40350. | | 245. | |M3-5e |00017 09447| +730044 |VZ Sco |161941.7-232428 |M | 11.0 | 15.5 | |p |40784. | | 217.7 |30 |Me |09565 09565| +730045 |WW Sco |162722.1-311814 |M | 10.6 |< 14.7 | |p |19944. | | 431. | |M6e-M9 |00017 UCAC2| +730046 |WX Sco |163248.6-262306 |IN: | 11.8 |< 16.0 | |p | | | | | |09447 09447| +730047 |WY Sco |163320.4-261115 |CEP | 13.2 | 14.5 | |p |40737.140 | | 12.9191 |40 |F0 |09565 GSC22| +730048 |WZ Sco |163347.5-264453 |M | 13.3 | 16. | |p |40670. | | 161.67 |30 | |09565 09565| +730049 |XX Sco *|163512.2-262857 |M: | 13.0 |< 16.0 | |p |40795. | | | |M4e | 09447| +730050 |XY Sco |163658.4-294408 |M: | 14. |< 16. | |p | | | | | |00269 USNO | +730051 |XZ Sco |163703.3-271848 |M: | 13. |< 16. | |p |16240. | | 300. : | | |00147 USNO | +730052 |YY Sco |163813.1-283410 |M | 10.4 | 17.0 | |p |36395. | | 327.43 | |M7e |00001 02452| +730053 |YZ Sco |163850.6-280120 |M: | 14.5 |< 16. | |p | | | | |M3ea |00269 GSC | +730054 |ZZ Sco |164101.3-272644 |M | 12.0 |< 17.0 | |B |43995. | | 209.3 | |Me |09567 00261| +730055 |AA Sco |164447.7-250653 | | 12. | 14. | |p | | | | | |00268 00261| +730056 |AB Sco |164544.1-281249 |EB:/D: | 12.5 | 13.0 | |p |29844.18 | | 10.636 | | |00270 00261| +730057 |AC Sco *|164635.2-272317 |UG: | 12.5 |< 16. | |p | | | | | |00121 00261| +730058 |AD Sco |164917.3-271258 |M | 13.8 |< 16.5 | |p |24340. | | 227.4 | | |00271 00261| +730059 |AE Sco |165011.6-282734 |M | 12.2 | 16.4 | |p |24730. | | 174.5 | |M0e |00271 00261| +730060 |AF Sco |165025.6-253338 |N: | 10.9 |< 15. | |p | | | | | |00268 00261| +730061 |AG Sco |165235.0-283304 |M | 13.2 | 16.8 : | |p |24680. | | 163.2 | |Me |00271 00261| +730062 |AH Sco *|171117.0-321931 |SRC | 8.1 | 12.0 | |p |29769. | | 713.6 |46 |M4e-M5Ia-Iab |00001 00261| +730063 |AI Sco *|175618.6-334843 |RVB | 9.3 | 12.9 | |p | | | 71.0 | |G0-K2 |00236 00272| +730064 |AK Sco |165444.9-365319 |INSB | 8.7 | 11.7 | |p | | | | |F5Vpea |00082 00263| +730065 |AL Sco *|164813.1-325642 |EA/SD | 11.2 | 13.5 | 11.3 |p |25086.135 | | 1.532249 |14 *|F: |00273 02532| +730066 |AM Sco |160708.6-234011 |L: | 14. | 15. | |p | | | | | |00268 USNO | +730067 |AN Sco *|161157.7-195534 |INS: | 14.4 |< 16. | |p | | | | | |00121 GSC | +730068 |AO Sco |161502.4-214528 |I: | 13.4 | 14.1 | |p | | | | | |00269 GSC22| +730069 |AP Sco *|161609.0-233622 |IN: | 14.9 | 16.2 | |p | | | | | |00121 USNO | +730070 |AQ Sco |162034.8-231435 |IN: | 14.4 | 15.5 | |p | | | | | |00121 GSC22| +730071 |AR Sco *|162147.3-225310 |DSCT | 14.1 | 14.6 | |p |44025.413 | | 0.1485354 |40 | |06177 09565| +730072 |AS Sco |162236.1-205832 | | 14.5 | 15.5 | |p | | | | | |00268 USNO | +730073 |AT Sco |163140.8-275436 |SRA | 12.9 | 15.2 | |p |40713. | | 130.1 | |Me |06177 GSC | +730074 |AU Sco *|163411.6-263652 |RRAB | 13.5 | 14.5 | |p |40764.238 | | 0.63368780 |20 | |06177 09565| +730075 |AV Sco *|163725.8-280546 |M: | 15. |< 16. | |p | | | | | |00269 USNO | +730076 |AW Sco |163748.3-291855 | | 14. | 15. | |p | | | | | |00268 USNO | +730077 |AX Sco |164149.8-270619 |SRB | 9.85 | 12.0 | |B | | | 138. : | |M6 |00236 00261| +730078 |AY Sco |164429.7-280108 | | 14. | 15. | |p | | | | | |00268 00261| +730079 |AZ Sco |164511.8-265252 | | 14. | 15. | |p | | | | | |00268 00261| +730080 |BB Sco |164602.5-294306 |M | 12.8 | 17.0 : | |p |24650. | | 182.5 | |Me |00271 00261| +730081 |BC Sco |164645.6-300829 |M | 13.9 | 17.0 : | |p |24730. | | 146.3 | | |00271 00261| +730082 |BD Sco |164643.3-280631 |M | 12.6 |< 16.5 | |p |23550. | | 305. | |Me |00271 00261| +730083 |BE Sco |164726.7-302629 |SR: | 12.9 | 14.5 | |p | | | | |Me |00268 00261| +730084 |BF Sco |164832.8-300741 |RR | 13.7 | 15.4 | |p |24623.700 | | 0.4244 | | |00274 00261| +730085 |BG Sco |164948.6-272641 | | 15. | 16. | |p | | | | | |00268 00261| +730086 |BH Sco |165019.6-275953 |SR | 14. |( 1.5 )| |p |24988. | | 153. | | |00275 00275| +730087 |BI Sco *|165052.6-275751 |M | 14.2 | 17.5 : | |p |24710. | | 151.4 | | |00271 00261| +730088 |BK Sco |155923.7-234624 |M | 10.4 |< 15.0 | |p |33044. | | 197.7 | |M7e |00265 GSC22| +730089 |BL Sco |172407.4-385225 |M | 11.0 | 17.0 | |p |29550. | | 396.3 | |M5e |00263 00263| +730090 |BM Sco *|174058.5-321252 |SRD | 6.8 | 8.7 | |p | | | 815. : | |K2.5Ib |00236 09864| +730091 |BN Sco *|175410.6-342027 |M | 12.5 | 16. : | |p |27910. | | 616. | | |00251 02448| +730092 |BO Sco |162725.4-260654 |IN: | 14.7 | 16. | |p | | | | | |09447 09447| +730093 |BP Sco |162749.0-260244 |IN | 14.4 | 16. | |p | | | | |ea |09447 09447| +730094 |BQ Sco |162856.9-254954 |M: | 14. | 17. | |p | | |> 150. : | | |00276 USNO | +730095 |BR Sco |161313.4-102016 |SR | 11. | 12. | |p | | | | |MB |00278 BD | +730096 |BS Sco *|175504.4-313835 |EA/SD | 11.5 | 13.2 | |p |39301.468 | | 7.6223759 |10 |B5V |00001 00280| +730097 |BT Sco *|161255.6-082728 |RRAB | 13.0 | 13.6 | |p |29440.320 | | 0.5486875 |21 | |05692 06286| +730098 |BU Sco |161359.3-212918 |RR: | 13.5 | 16. | |p | | | | | |00249 06286| +730099 |BV Sco *|161450.3-233239 |RR: | 15. | 17. | |p | | | | | |00249 USNO | +730100 |BW Sco |161714.7-250416 |M | 14. |< 17. | |p | | | | | |00249 USNO | +730101 |BX Sco |162258.3-220814 |CEP: | 14.5 | 15. | |p | | | | | |00249 USNO | +730102 |BY Sco |162906.0-292448 |M | 14. |< 17. | |p |40760. | | 245.1 | | |06177 USNO | +730103 |BZ Sco |163011.3-361507 |M: | 15. |< 16. | |p | | | | | |00249 GSC22| +730104 |CC Sco |163022.8-355600 |M | 13. |< 17. | |p | | | | | |00249 GSC22| +730105 |CD Sco |163225.3-362005 |M | 13. |< 17. | |p | | | | | |00249 GSC22| +730106 |CE Sco |163300.9-375019 |M | 14. |< 16. | |p | | | | | |00249 GSC22| +730107 |CF Sco *|163251.7-281632 |EW | 13.3 | 13.8 | 13.8 |p |40396.4521 | | 0.4835616 | | |06529 GSC22| +730108 |CG Sco |163511.7-290759 | | 14.5 | 16.5 | |p | | | | | |00249 GSC22| +730109 |CH Sco |163957.4-283027 | | 12.5 | 17. | |p | | | | | |00249 00261| +730110 |CI Sco |164201.9-294511 | | 13. | 14.5 | |p | | | | | |00249 00261| +730111 |CK Sco *|164501.5-285417 |M | 13.5 |< 16.5 | |p |24680. | | 283. | | |00271 00261| +730112 |CL Sco *|165452.0-303718 |ZAND | 11.2 | 13.9 | |p | | | | |pec(e) |09566 09472| +730113 |CM Sco |165650.0-310318 |M | 13.8 |< 16. | |p |23909. | | 292. | | |00249 00261| +730114 |CN Sco |165716.0-305420 |SR | 15. | 16.5 | |p |13805. | | 210. | | |00249 00261| +730115 |CO Sco |170238.3-311304 |M | 13.8 |< 16. | |p | | | 176. | | |00249 00261| +730116 |CP Sco *|170305.2-312438 |M: | 14.6 |< 16. | |p | | | 1155. /N| | |00249 00261| +730117 |CQ Sco *|174954.9-401953 |CWA | 11.94 | 13.00 | |V |44151.19 | | 30.447 |36 |F6 |00001 03513| +730118 |CR Sco |175502.8-335325 |M | 12.9 |< 16.7 | |p |31227. | | 266. | | |02931 02448| +730119 |CS Sco |164045.0-315659 | | 14.0 | 15.2 | |p | | | | | |00283 00261| +730120 |CT Sco |164050.3-294230 | | 15.1 | 16.3 | |p | | | | | |00283 00261| +730121 |CU Sco |164052.4-300213 | | 14.3 | 16.1 | |p | | | | | |00283 00261| +730122 |CV Sco |164334.2-303942 | | 15.0 | 15.8 | |p | | | | | |00283 00261| +730123 |CW Sco |164428.3-295614 |SR: | 13.0 | 13.9 | |p | | | | |M4 |00283 00261| +730124 |CX Sco |164455.3-313321 | | 13.6 | 14.5 | |p | | | | | |00283 00261| +730125 |CY Sco |164557.0-314548 | | 15.2 | 16.0 | |p | | | | | |00283 00261| +730126 |CZ Sco |164617.9-310207 | | 14.8 | 16.4 | |p | | | | |Me |00283 00261| +730127 |DD Sco |164627.9-311639 |M: | 14.5 |< 16.5 | |p | | | | | |00283 00261| +730128 |DE Sco |164631.4-311044 | | 13.6 | 15.1 | |p | | | | | |00283 00261| +730129 |DF Sco |164648.8-300222 |M: | 14.7 |< 16.5 | |p | | | 350. : | | |00283 00261| +730130 |DG Sco |164655.0-261945 | | 13.9 | 15.4 | |p | | | | | |00283 00261| +730131 |DH Sco |164700.9-281334 |S: | 15.3 | 16.5 | |p | | | | | |00283 00261| +730132 |DI Sco |164719.2-245359 |M: | 13.7 |< 16.5 | |p | | | | | |00283 00261| +730133 |DK Sco |164830.4-305447 |M | 13.7 | 16.5 | |p |24680. | | 115.3 | | |00271 00261| +730134 |DL Sco |164824.6-262657 |M: | 13.7 |< 16.5 | |p | | | | | |00283 00261| +730135 |DM Sco |164840.3-271724 |RR: | 15.3 | 16.3 | |p | | | | | |00283 00261| +730136 |DN Sco |164848.4-283147 |S: | 15.0 | 16.5 | |p | | | | | |00283 00261| +730137 |DO Sco |164849.4-260856 | | 14.6 | 16.2 | |p | | | | | |00283 00261| +730138 |DP Sco |164905.2-283613 |S: | 13.9 | 15.1 | |p | | | | | |00283 00261| +730139 |DQ Sco |164917.5-300254 |RR | 15.9 |< 16.5 | |p |24654.750 | | 0.4146 | | |00274 00261| +730140 |DR Sco |164930.3-321331 | | 15.4 |< 16.5 | |p | | | | | |00283 00261| +730141 |DS Sco |164944.8-273709 |S: | 14.0 | 15.0 | |p | | | | | |00283 00261| +730142 |DT Sco |164955.3-262527 | | 15.2 |< 16.5 | |p | | | | | |00283 00261| +730143 |DU Sco |165024.4-304207 |SR: | 12.2 | 13.5 | |p | | | 70. : | | |00283 00261| +730144 |DV Sco |165027.9-280758 | | 14.5 |< 16.5 | |p | | | 28. : | | |00283 00261| +730145 |DW Sco |165032.6-295506 |SR: | 15.0 | 16.4 | |p | | | 120. : | | |00283 00261| +730146 |DX Sco *|165056.2-251038 | | 12.5 |< 15.0 | |p | | | | | |00283 00261| +730147 |DY Sco |165105.9-262406 | | 13.9 | 15.9 | |p | | | | | |00283 00261| +730148 |DZ Sco |165121.2-280257 |S: | 13.3 | 13.9 | |p | | | | | |00283 00261| +730149 |EE Sco |165125.6-292424 |S: | 13.3 | 14.4 | |p | | | | | |00283 00261| +730150 |EF Sco |165142.2-294226 |RRAB | 14.8 | 16.2 | |p |24699.690 | | 0.6056 | | |00274 00261| +730151 |EG Sco |165150.6-285620 |M | 13.9 |< 16.5 | |p |24640. | | 227.5 | | |00271 00261| +730152 |EH Sco |165159.3-292237 |M | 14.0 |< 16.5 | |p |23910. | | 217.2 | | |00271 00261| +730153 |EI Sco |165154.6-261626 |M: | 14.5 |< 16.5 | |p | | | | | |00283 00261| +730154 |EK Sco |165228.8-290518 |S: | 14.6 | 16.0 | |p | | | | | |00283 00261| +730155 |EL Sco |165238.1-293219 |S: | 14.5 | 15.4 | |p | | | | | |00283 00261| +730156 |EM Sco |165231.1-254231 | | 13.8 | 16.1 | |p | | | | | |00283 00261| +730157 |EN Sco |165321.4-305112 |S: | 14.3 | 15.8 | |p | | | | | |00283 00261| +730158 |EO Sco |165401.7-321404 | | 15.3 |< 16.5 | |p | | | | | |00283 00261| +730159 |EP Sco |165446.3-312217 |M | 14.0 |< 16.5 | |p |24700. | | 240.7 | | |00271 00261| +730160 |EQ Sco |165452.7-305912 |SR: | 14.7 | 16.3 | |p | | | 90. : | | |00283 00261| +730161 |ER Sco |165624.1-321228 | | 15.1 |< 16.5 | |p | | | | | |00283 00261| +730162 |ES Sco |165602.0-312738 | | 13.7 | 15.4 | |p | | | | | |00283 00261| +730163 |ET Sco |165653.2-320934 | | 15.4 |< 16.5 | |p | | | | | |00283 00261| +730164 |EU Sco |165700.6-321745 | | 14.5 | 15.6 | |p | | | | | |00283 00261| +730165 |EV Sco |165728.3-304743 |M | 13.7 |< 16.5 | |p |24730. | | 350. | | |00271 00261| +730166 |EW Sco |165750.0-323444 |LB: | 11.5 | 12.3 | |p | | | | |S5,2 |00283 00261| +730167 |EX Sco |165751.0-312205 |M | 13.6 |< 16.5 | |p |24690. | | 181.5 | | |00271 00261| +730168 |EY Sco |165759.0-311843 |SR: | 14.2 | 15.8 | |p | | | 235. : | | |00283 00261| +730169 |EZ Sco *|165806.3-310404 |M | 13.8 |< 16.5 | |p |24370. | | 220.6 | | |00271 00261| +730170 |FF Sco |165810.6-320437 | | 12.3 | 13.6 | |p | | | | | |00283 00261| +730171 |FG Sco |165812.0-303807 |SR | 14.4 | 16.6 | |p |24700. | | 127.9 | | |00271 00261| +730172 |FH Sco |165959.4-310547 |M: | 14.7 |< 16.5 | |p | | | | | |00283 00261| +730173 |FI Sco |170130.6-310426 |M | 14.4 |< 16.5 | |p |24640. | | 200.3 | | |00271 00261| +730174 |FK Sco |170154.1-323919 | | 14.4 |< 16.5 | |p | | | | | |00283 00261| +730175 |FL Sco |170147.7-313034 |RR: | 13.6 | 14.7 | |p | | | | | |00283 00261| +730176 |FM Sco |170150.4-313755 |M | 13.6 |< 16.5 | |p |24760. | | 267.7 | | |00271 00261| +730177 |FN Sco |170416.4-324447 |M: | 14.2 |< 16.5 | |p | | | | | |00283 00261| +730178 |FO Sco |170608.2-322756 |M | 13.5 |< 17.0 | |p |28680. | | 231.6 | | |00262 00261| +730179 |FP Sco |170646.6-320139 |RR | 15.0 |< 16.0 | |p |25385.500 | | | | |00262 00261| +730180 |FQ Sco *|170804.5-324202 |UGSS | 12.0 | 18.45 | |B | | |( 48. ) | | |08852 00261| +730181 |FR Sco |170900.4-315144 |M | 14.0 |< 17.0 | |p |28790. | | 202. | | |00262 00261| +730182 |FS Sco |170910.1-320318 |M | 14.4 |< 16.5 | |p |26480. | | 262.5 | | |00262 00261| +730183 |FT Sco |171055.2-324109 |EA/DS | 13.8 |< 16.5 | |p |24646.760 | | 9.5872 |09 | |00262 00261| +730184 |FU Sco *|171225.7-314848 |EA/DM | 12.0 | 12.8 | 12.7 |p |26586.250 | | 11.2682 |06 *| |00262 00261| +730185 |FV Sco *|171345.0-325109 |EA/DM | 7.95 | 8.72 |( 0.1 pg)|V |42954.0424 | | 5.7278964 |13 |B6V |00001 00262| +730186 |FW Sco |171340.0-314138 |M | 14.2 |< 17.0 | |p |26460. | | 339.3 | | |00262 00261| +730187 |FX Sco |174200.0-391443 |M | 12.0 | 16.4 | |p |26130. | | 264. | |M1e |00014 00021| +730188 |FY Sco *|174502.9-360108 |M: | 15.3 |< 16.5 | |p |26500. | | 266. | | |00251 00262| +730189 |FZ Sco |174802.9-364324 |M | 13.3 |< 16.5 | |p |24010. | | 390.5 | | |00251 00262| +730190 |GG Sco *|174938.1-371419 |M | 13.5 |< 16.5 | |p |26460. | | 220. | | |00251 06286| +730191 |GH Sco |175302.2-433839 |M | 10.5 |< 12.5 | |p |13710. | | 277. | |Me: |00285 08953| +730192 |GI Sco |175637.4-395833 |M | 13.0 |< 17.0 | |p |26040. | | 335. | | |00248 06286| +730193 |GK Sco |160335.1-224112 |SR: | 11.8 | 14.1 | |p | | | | | |00286 CoD | +730194 |GL Sco |160649.0-223838 |M: | 13.0 |< 14.5 | |p | | | | | |00286 GSC | +730195 |GM Sco *|160739.8-231452 |M | 13.0 |< 16.0 | |p |40087. | | 265.04 | |Me |00001 05690| +730196 |GN Sco |161228.8-205604 | | 13.1 | 13.7 | |p | | | | | |00287 GSC | +730197 |GO Sco |161651.3-213904 |S: | 13.6 | 14.1 | |p | | | | | |00287 GSC22| +730198 |GP Sco |164654.5-263540 |S: | 15.0 | 15.7 | |p | | | | | |00288 00261| +730199 |GQ Sco |164722.8-281245 |RRAB | 14.9 | 16.1 | |p |24710.700 | | 0.49724 | | |00274 00261| +730200 |GR Sco |164816.9-285956 |RRAB | 15.6 | 16.5 | |p |24623.750 | | 0.6196 | | |00274 00261| +730201 |GS Sco |164930.7-251555 |S: | 15.1 | 15.9 | |p | | | | | |00288 00261| +730202 |GT Sco |165001.8-302257 |RRAB | 14.8 | 16.2 | |p |24627.755 | | 0.5093 | | |00274 00261| +730203 |GU Sco |165024.0-281134 |M | 12.6 | 16.6 | |p |24650. | | 162.5 | | |00271 00261| +730204 |GV Sco |165043.4-292810 |RR | 15.5 | 16.4 | |p | | | | | |00288 00261| +730205 |GW Sco *|165052.0-275822 |CEP | 12.90 | 13.24 | |V |25112.60 | | 21.47 |11 | |00275 00261| +730206 |GX Sco |165140.6-295100 |RR | 15.0 | 16.1 | |p | | | | | |00288 00261| +730207 |GY Sco |165339.4-311403 |RRAB | 15.5 | 16.6 | |p |24654.744 | | 0.5681 | | |00289 00261| +730208 |GZ Sco |165414.7-304537 |RR | 14.7 | 15.9 | |p | | | | | |00288 00261| +730209 |HH Sco |165429.4-312608 |M | 13.5 | 17.3 : | |p |24655. | | 137.1 | | |00289 00261| +730210 |HI Sco |165434.5-305330 |M: | 15.6 |< 16.5 | |p | | | | | |00288 00261| +730211 |HK Sco |165441.0-302307 |ZAND | 13.1 | 15.8 | |p | | | | |pec(e) |00281 09472| +730212 |HL Sco |165445.7-301638 |M: | 15.1 |< 16.5 | |p |23910. | | 231.6 | | |00271 00261| +730213 |HM Sco |165515.3-303434 |RR: | 14.6 | 15.5 | |p | | | | | |00288 00261| +730214 |HN Sco |165526.7-310628 |M | 13.8 | 16.3 | |p |24670. | | 205.5 | | |00271 00261| +730215 |HO Sco |165634.1-305312 |RRAB | 15.0 | 16.1 | |p |24647.690 | | 0.61098 | | |00274 00261| +730216 |HP Sco |165635.9-305402 |M: | 15.9 |< 16.5 | |p | | | | | |00288 00261| +730217 |HQ Sco |165639.4-302653 |RR: | 15.2 | 16.0 | |p | | | | | |00288 00261| +730218 |HR Sco |165643.1-303245 |RR | 15.9 | 16.5 | |p | | | | | |00288 00261| +730219 |HS Sco |165705.7-310352 |RR | 13.9 | 14.9 | |p | | | | | |00288 00261| +730220 |HT Sco |165744.9-312155 |RRAB | 14.3 | 15.7 | |p |24702.700 | | 0.6187 | | |00274 00261| +730221 |HU Sco |165742.1-301711 |RR | 15.3 | 15.8 | |p | | | | | |00288 00261| +730222 |HV Sco |165810.8-304216 |RR | 15.3 | 15.9 | |p | | | | | |00288 00261| +730223 |HW Sco |165853.7-312726 |RR: | 13.4 | 13.9 | |p | | | | | |00288 00261| +730224 |HX Sco |165901.3-315819 | | 15.6 | 16.4 | |p | | | | | |00288 00261| +730225 |HY Sco |165900.4-312559 |RR | 15.5 | 16.3 | |p | | | | | |00288 00261| +730226 |HZ Sco |165901.4-304123 |RR | 15.4 | 16.2 | |p | | | | | |00288 00261| +730227 |II Sco |165920.4-304604 |RR | 15.6 | 16.2 | |p | | | | | |00288 00261| +730228 |IK Sco |165925.1-302641 |M: | 15.8 |< 16.5 | |p | | | | | |00288 00261| +730229 |IL Sco |165941.6-311957 |S: | 15.3 | 16.3 | |p | | | | | |00288 00261| +730230 |IM Sco |170013.2-312758 |E/SD: | 13.3 |< 16.5 | |p | | | | |G2V |00288 00261| +730231 |IN Sco |170014.5-302409 |RR | 15.6 | 16.2 | |p | | | | | |00288 00261| +730232 |IO Sco |170020.1-304824 |RR | 15.3 | 15.9 | |p | | | | | |00288 00261| +730233 |IP Sco |170039.1-311822 |M: | 15.5 |< 16.5 | |p | | | | | |00288 00261| +730234 |IQ Sco |170054.0-303004 |S: | 15.0 | 15.7 | |p | | | | | |00288 00261| +730235 |IR Sco |170113.2-302035 |S: | 15.3 | 16.3 | |p | | | | | |00288 00261| +730236 |IS Sco |170144.9-310107 |RR | 15.3 | 16.7 | |p | | | | | |00288 00261| +730237 |IT Sco |170148.0-305735 | | 15.8 | 16.6 | |p | | | | | |00288 00261| +730238 |IU Sco *|170149.1-310239 |SR | 14.8 | 16.3 | |p |20365. | | 69.05 | | |00290 00261| +730239 |IV Sco |170206.7-301926 |RRC: | 15.4 | 16.1 | |p |24626.730 | | 0.4104 : | | |00274 00261| +730240 |IW Sco |170214.6-311726 |RR | 15.4 | 16.0 | |p | | | | | |00288 00261| +730241 |IX Sco |170301.2-304411 |M: | 15.0 |< 16.5 | |p | | | | | |00288 00261| +730242 |IY Sco |170308.5-312955 |RR | 13.9 | 14.8 | |p | | | | | |00288 00261| +730243 |IZ Sco |170323.2-313517 |S: | 14.5 | 15.5 | |p | | | | | |00288 00261| +730244 |KK Sco |170328.9-303711 |SR: | 16.1 |< 16.5 | |p | | | | | |00288 00261| +730245 |KL Sco |170339.5-302047 |SR: | 15.7 |< 16.5 | |p | | | | | |00288 00261| +730246 |KM Sco |170415.4-312558 | | 15.5 | 16.5 | |p | | | | | |00288 00261| +730247 |KN Sco |170538.2-301607 |RR | 13.7 | 14.9 | |p | | | | | |00288 00261| +730248 |KO Sco *|170630.3-301336 |IS | 14.2 | 15.3 | |p | | | | | |00262 00261| +730249 |KP Sco |174416.9-354323 |NA | 9.4 |< 16.5 | |p |25419. |1928 | | | |00291 00262| +730250 |KQ Sco *|165138.5-452536 |DCEP | 9.34 | 10.29 | |V |35281.4 | | 28.6896 |35 |K5 |02309 00021| +730251 |KR Sco |161441.2-322328 |M | 11.6 | 14.4 | |p |26140. | | 357. | |M3e |00255 | +730252 |KS Sco |175846.4-422347 |M | 11.4 |< 16.3 | |p |26445. | | 429. | |M2e |00255 GSC22| +730253 |KT Sco |161114.9-165140 | | 13.1 |< 14.2 | |p | | | | | |00293 00293| +730254 |KU Sco |161501.4-134554 |LB: | 12.3 | 13.7 | |p | | | | |M6 |00293 00293| +730255 |KV Sco |163528.7-245649 |SRB | 12.0 | 12.7 | |p | | | 100. | |M6 |09447 00294| +730256 |KW Sco |171728.1-402256 |M | 14.2 |< 16.5 | |p |25410. | | 442.5 | | |00263 00263| +730257 |KX Sco |172133.3-445939 |M | 13.5 |< 16.5 | |p |25830. | | 172.5 | | |00014 GSC22| +730258 |KY Sco |172208.6-435928 |M | 13.9 | 16.5 | |p |24420. | | 187.3 | | |00014 GSC22| +730259 |KZ Sco |172215.5-453513 |M | 13.3 |< 16.5 | |p |25420. | | 259.8 | |M4e |00014 USNO | +730260 |LL Sco |172414.8-434919 |M: | 14.9 |< 16.5 | |p |26570. | | 238.1 | | |00014 GSC22| +730261 |LM Sco |172500.3-442340 |M: | 15.5 |< 16.8 | |p |26145. | | 222.5 : | | |00014 GSC22| +730262 |LN Sco |172531.3-443852 |M: | 15.0 |< 16.8 | |p |26140. | | 335. | | |00014 GSC22| +730263 |LO Sco *|172540.3-442757 |M | 11.9 |< 16.5 | |p |25450. | | 420. | |Me |00014 GSC22| +730264 |LP Sco |172701.3-452357 |M: | 15.2 |< 17.0 | |p |25750. | | 252. | | |00014 GSC22| +730265 |LQ Sco |172651.3-430057 |M | 14.8 | 17.3 : | |p |26240. | | 182.6 | | |00014 GSC22| +730266 |LR Sco *|172753.6-435046 |SRD | 10.9 | 12.3 | |p |26460. | | 104.4 | |Fp |00014 | +730267 |LS Sco |172802.9-431154 |M | 14.2 |< 16.5 | |p |25730. | | 299. | | |00014 GSC22| +730268 |LT Sco |172750.0-405909 |M: | 15.4 |< 16.6 | |p |26080. | | 241. : | | |00014 USNO | +730269 |LU Sco |172807.3-405158 |M | 14.2 |< 16.5 | |p |26480. | | 180.5 | | |00014 GSC22| +730270 |LV Sco |172926.6-432641 |M: | 14.8 |< 16.5 | |p |26170. | | 290. : | | |00014 GSC22| +730271 |LW Sco |172953.0-442731 |M: | 15.5 |< 16.8 | |p |26170. | | 261.1 | | |00014 GSC22| +730272 |LX Sco |173012.6-435038 |M: | 14.6 |< 16.5 | |p |26230. | | 280.5 | | |00014 GSC22| +730273 |LY Sco |173003.3-435822 |M | 13.7 |< 16.5 | |p |25710. | | 321.5 | | |00014 GSC | +730274 |LZ Sco |173056.2-434013 |M: | 15.0 |< 16.5 | |p |26210. | | 253. : | | |00014 USNO | +730275 |MM Sco |173045.3-421142 |UG | 13.0 | 18.53 | |B | | |( 28. :) | | |09840 08852| +730276 |MN Sco |173150.3-413837 |M: | 16.0 |< 16.8 | |p |26470. | | 203. : | | |00014 2MASS| +730277 |MO Sco |173228.3-422420 |M: | 15.5 |< 16.7 | |p |24400. | | 307. : | | |00014 GSC22| +730278 |MP Sco |173353.6-440114 |M | 14.4 |< 16.5 | |p |24430. | | 164. | | |00014 GSC22| +730279 |MQ Sco |173437.4-451532 |M: | 15.1 |< 16.7 | |p |24410. | | 232.3 | | |00014 USNO | +730280 |MR Sco |173438.9-412652 |M | 13.8 |< 16.5 | |p |24700. | | 262. | | |00014 GSC22| +730281 |MS Sco |173509.2-422544 |M | 13.5 |< 16.5 | |p |26460. | | 194.5 | | |00014 GSC | +730282 |MT Sco |173524.5-415636 |SRA | 14.8 |< 16.5 | |p |26590. | | 104.4 | | |00014 GSC22| +730283 |MU Sco |173558.9-444339 |M: | 14.8 |< 16.5 | |p |26125. | | 250.8 | | |00014 GSC22| +730284 |MV Sco |173546.1-404812 |M: | 15.2 |< 16.6 | |p |26060. | | 212.2 | | |00014 USNO | +730285 |MW Sco |173638.4-452842 |M | 14.5 |< 16.5 | |p |25440. | | 200.8 | | |00014 GSC22| +730286 |MX Sco |173659.9-421627 |M: | 14.7 |< 16.5 | |p |23940. | | 293.5 | | |00014 GSC22| +730287 |MY Sco |173725.1-430739 |M | 14.0 |< 16.5 | |p |26120. | | 230.6 | | |00014 GSC22| +730288 |MZ Sco |173751.8-412641 |M: | 15.8 |< 16.8 | |p |26180. | | 255. : | | |00014 GSC22| +730289 |NN Sco |173842.1-433935 |SRA | 14.8 | 17.0 : | |p |23930. | | 231. | | |00014 2MASS| +730290 |NO Sco |173843.6-440029 |M: | 15.2 |< 16.8 | |p |26220. | | 204.5 | | |00014 GSC22| +730291 |NP Sco |173905.0-403658 |M: | 15.7 |< 16.7 | |p |26120. | | 213.5 : | | |00014 06286| +730292 |NQ Sco |173912.3-412725 |M: | 15.0 |< 16.7 | |p |26130. | | 233.5 | | |00014 GSC22| +730293 |NR Sco |173924.5-392723 |M: | 15.0 |< 16.5 | |p |26800. | | 377. : | | |00014 USNO | +730294 |NS Sco |173936.2-403630 |M: | 15.0 |< 16.6 | |p |26480. | | 226.5 | | |00014 USNO | +730295 |NT Sco |174043.0-443228 |M | 14.5 |< 16.5 | |p |24730. | | 232.5 | | |00014 USNO | +730296 |NU Sco |174105.2-441812 |M: | 14.8 |< 16.5 | |p |26110. | | 170. | | |00014 2MASS| +730297 |NV Sco |174105.8-431846 |M: | 15.0 |< 16.6 | |p |26190. | | 166.6 | | |00014 GSC | +730298 |NW Sco |174133.5-420248 |M: | 15.5 |< 16.6 | |p |26200. | | 137.5 : | | |00014 GSC22| +730299 |NX Sco |174145.8-411805 |SRA | 13.8 | 16.0 | |p |26125. | | 111.45 | | |00014 GSC22| +730300 |NY Sco |174210.5-411609 |M | 15.0 |< 17. | |p |25420. | | 254. : | | |00014 GSC22| +730301 |NZ Sco |174213.5-413154 |M: | 15.1 |< 16.8 | |p |26180. | | 211.3 | | |00014 GSC22| +730302 |OO Sco *|174227.6-401100 |M: | 14.9 |< 16.5 | |p |26560. | | 214. | | |00014 GSC22| +730303 |OP Sco |174244.6-445957 |M | 14.3 |< 16.5 | |p |24350. | | 326. | | |00014 USNO | +730304 |OQ Sco *|174239.7-412729 |M: | 15.7 |< 16.7 | |p |24380. | | 154. : | | |00014 GSC22| +730305 |OR Sco |174252.3-425208 |M: | 15.5 |< 16.5 | |p |26240. | | 283. : | | |00014 GSC22| +730306 |OS Sco |174252.7-425531 |M: | 15.7 |< 16.7 | |p |25150. | | 190. : | | |00014 GSC22| +730307 |OT Sco |174332.2-452052 |M: | 15.0 |< 16.8 | |p |26180. | | 180. : | | |00014 GSC22| +730308 |OU Sco |174330.6-392302 |M | 14.5 |< 16.5 | |p |23960. | | 270. | | |00014 06286| +730309 |OV Sco |174358.4-453000 |M | 13.6 |< 16.5 | |p |26500. | | 421. | | |00014 GSC22| +730310 |OW Sco |174350.5-424741 |SRA | 14.5 | 16.5 | |p |25710. | | 214.5 | | |00014 UCAC2| +730311 |OX Sco |174417.9-450916 |M | 13.9 |< 16.5 | |p |25380. | | 176.3 | | |00014 GSC | +730312 |OY Sco |174359.9-403608 |M: | 15.5 |< 16.5 | |p |26160. | | 169. | | |00014 GSC22| +730313 |OZ Sco |174417.4-433550 |M | 13.8 | 16.4 | |p |26220. | | 95.0 | | |00014 GSC22| +730314 |PP Sco |174436.9-394146 |M: | 15.0 |< 16.6 | |p |24340. | | 208. | | |00014 06286| +730315 |PQ Sco |174458.8-422429 |M: | 15.0 |< 16.7 | |p |26150. | | 219.5 | | |00014 GSC22| +730316 |PR Sco |174454.3-412533 |M | 12.7 | 16.0 | |p |24760. | | 196.5 | | |00014 UCAC2| +730317 |PS Sco |174509.0-435258 |M: | 14.8 |< 16.5 | |p |26170. | | 284.5 | | |00014 GSC22| +730318 |PT Sco |174547.9-430402 |M: | 14.7 |< 16.5 | |p |25720. | | 140.5 | | |00014 USNO | +730319 |PU Sco |174555.4-430651 |SRA | 13.6 | 16.0 | |p |31610. | | 223.85 | |M3e |00001 04151| +730320 |PV Sco |174548.8-414553 |M: | 14.6 |< 16.5 | |p |26460. | | 405. | | |00014 GSC22| +730321 |PW Sco |174555.8-412503 |M | 14.1 |< 16.5 | |p |25825. | | 281. | | |00014 USNO | +730322 |PX Sco |174616.2-425640 |M: | 15.7 |< 16.8 | |p |24700. | | 222.2 : | | |00014 USNO | +730323 |PY Sco |174620.1-430026 |M | 14.0 |< 16.5 | |p |26470. | | 377. | | |00014 USNO | +730324 |PZ Sco |174622.0-430133 |M: | 15.2 |< 16.7 | |p |26060. | | 332. | | |00014 GSC22| +730325 |QQ Sco |174617.9-405533 |M | 14.1 |< 16.5 | |p |24700. | | 212.5 | | |00014 USNO | +730326 |QR Sco |174627.6-413130 |M: | 14.7 |< 16.5 | |p |25800. | | 278.5 | | |00014 USNO | +730327 |QS Sco |174627.5-411724 |M: | 14.7 |< 16.5 | |p |26170. | | 219.8 | | |00014 GSC22| +730328 |QT Sco |174707.7-440931 |M | 14.4 |< 16.5 | |p |25830. | | 286.8 | | |00014 GSC22| +730329 |QU Sco |174701.2-394202 |M: | 15.2 |< 16.5 | |p |25490. | | 214. | | |00014 06286| +730330 |QV Sco |174729.6-412200 |M | 14.4 |< 16.5 | |p |25800. | | 263. | | |00014 GSC22| +730331 |QW Sco |174731.9-410259 |M: | 15.1 |< 16.5 | |p |26180. | | 235.8 | | |00014 USNO | +730332 |QX Sco |174813.3-441544 |M | 11.6 | 14.6 | |p |23890. | | 360. | |Me |00014 | +730333 |QY Sco |174800.6-430737 |M: | 14.8 |< 16.5 | |p |25450. | | 232. | | |00014 GSC22| +730334 |QZ Sco *|174834.9-431104 |SR | 13.8 | 15.8 | |p |23980. | | 147. | | |00014 GSC22| +730335 |V0335 Sco |174902.8-425830 |M: | 14.8 |< 16.2 | |p |26100. | | 122. | | |00014 USNO | +730336 |V0336 Sco |174911.0-431227 |M: | 14.6 |< 16.5 | |p |24400. | | 315. | | |00014 USNO | +730337 |V0337 Sco |174918.7-430209 |M: | 15.0 |< 16.5 | |p |24380. | | 213.3 | | |00014 GSC22| +730338 |V0338 Sco |174915.4-402649 |M: | 15.5 |< 16.5 | |p |25790. | | 223.5 : | | |00014 GSC22| +730339 |V0339 Sco |174940.4-435659 |M | 14.0 |< 16.5 | |p |25830. | | 393. | |Me |00014 USNO | +730340 |V0340 Sco |174938.5-405304 |M | 13.9 |< 16.5 | |p |25740. | | 173.8 | | |00014 16286| +730341 |V0341 Sco |175005.0-415348 |M: | 15.0 |< 16.5 | |p |26200. | | 273. : | | |00014 USNO | +730342 |V0342 Sco |175010.1-414449 |M | 13.7 |< 16.5 | |p |25500. | | 202.5 | | |00014 GSC22| +730343 |V0343 Sco |175022.7-430109 |M: | 14.6 |< 16.5 | |p |25760. | | 267.5 | | |00014 GSC22| +730344 |V0344 Sco |175015.9-395728 |M | 14.0 |< 16.5 | |p |24350. | | 296. | | |00014 06286| +730345 |V0345 Sco |175030.2-430756 |M: | 15.0 |< 16.5 | |p |26180. | | 160. | | |00014 GSC | +730346 |V0346 Sco |175040.4-432346 |M: | 15.0 |< 16.7 | |p |24405. | | 363. | | |00014 USNO | +730347 |V0347 Sco *|175121.5-445213 |M | 13.9 |< 16.6 | |p |25470. | | 193. | | |00014 GSC22| +730348 |V0348 Sco |175129.9-431623 |M | 13.9 |< 16.5 | |p |26110. | | 273.5 | |C(R) |00014 GSC22| +730349 |V0349 Sco |175138.7-401348 |M | 13.8 |< 16.5 | |p |24350. | | 217. | | |00014 06286| +730350 |V0350 Sco |175200.2-421555 |SRA | 14.3 | 16.4 | |p |25810. | | 172. | | |00014 GSC22| +730351 |V0351 Sco |175226.1-450443 |M: | 14.6 |< 16.5 | |p |25840. | | 216.5 | | |00014 GSC22| +730352 |V0352 Sco |175202.7-403440 |M: | 15.0 |< 16.5 | |p |26145. | | 97.5 | | |00014 06286| +730353 |V0353 Sco |175233.9-442744 |M: | 14.8 |< 16.5 | |p |26070. | | 258. | | |00014 GSC22| +730354 |V0354 Sco |175217.8-400809 |M: | 15.0 |< 16.5 | |p |25750. | | 180. : | | |00014 06286| +730355 |V0355 Sco |175220.1-401134 |M: | 14.7 |< 16.5 | |p |24430. | | 366. | | |00014 06286| +730356 |V0356 Sco |175236.6-402020 |M: | 15.2 |< 16.5 | |p |23960. | | 298. : | | |00014 06286| +730357 |V0357 Sco |175253.9-423835 |M | 14.4 |< 16.5 | |p |25390. | | 215. | | |00014 USNO | +730358 |V0358 Sco |175252.2-413901 |M: | 15.4 |< 16.6 | |p |26070. | | 274. | | |00014 GSC22| +730359 |V0359 Sco |175323.1-451432 |SRA | 14.1 | 16.4 : | |p |24380. | | 291.5 | | |00014 USNO | +730360 |V0360 Sco |175312.1-431420 |M | 13.6 |< 16.5 | |p |27290. | | 339.5 | | |00014 GSC22| +730361 |V0361 Sco |175346.3-402807 |M | 12.5 | 16.5 | |p |24375. | | 148.5 | | |00014 USNO | +730362 |V0362 Sco |175356.7-420034 |M: | 15.0 |< 16.5 | |p |26070. | | 181. | | |00014 GSC22| +730363 |V0363 Sco |175429.6-430234 |M: | 15.0 |< 16.5 | |p |25390. | | 239.5 | | |00014 GSC22| +730364 |V0364 Sco |175448.2-440947 |M | 11.1 |< 16.5 | |p |24730. | | 256.3 | |Me |00014 | +730365 |V0365 Sco |175440.0-411130 |M | 13.8 |< 16.5 | |p |25830. | | 287.5 | | |00014 USNO | +730366 |V0366 Sco |175505.0-452740 |M: | 14.6 |< 16.5 | |p |25460. | | 292. | | |00014 GSC22| +730367 |V0367 Sco |175451.5-420000 |M | 13.3 | 16.6 | |p |31360. | | 154.4 | | |00001 04151| +730368 |V0368 Sco |175506.2-450212 |M | 13.4 |< 16.5 | |p |25410. | | 200. | | |00014 USNO | +730369 |V0369 Sco |175510.2-451942 |M | 13.5 |< 16.5 | |p |25370. | | 330.6 | | |00014 USNO | +730370 |V0370 Sco |175508.9-411338 |SRA | 14.0 | 16.2 | |p |26200. | | 400. | | |00014 GSC22| +730371 |V0371 Sco |175552.3-421218 |M: | 14.8 |< 16.5 | |p |26520. | | 344. | | |00014 GSC22| +730372 |V0372 Sco |175623.0-451539 |M | 13.5 |< 16.5 | |p |25480. | | 182. | |Me |00014 UCAC2| +730373 |V0373 Sco |175618.9-423920 |M: | 14.6 |< 16.5 | |p |24370. | | 315.2 | | |00014 GSC22| +730374 |V0374 Sco |175701.9-430028 |SRA | 13.9 | 16.0 | |p |26090. | | 205. | | |00014 GSC22| +730375 |V0375 Sco |175746.9-451729 |M | 13.6 |< 16.5 | |p |26850. | | 190.6 | |Me |00014 UCAC2| +730376 |V0376 Sco |175756.0-410208 |M | 14.1 |< 16.5 | |p |26080. | | 181. | |Me |00014 GSC22| +730377 |V0377 Sco |175823.7-423258 |M | 14.0 |< 16.5 | |p |31550. | | 195.0 | | |00001 04151| +730378 |V0378 Sco |175837.2-445001 |M | 13.5 |< 16.5 | |p |31582. | | 218.85 | |Me |00001 04151| +730379 |V0379 Sco |175907.3-443902 |M | 14.5 |< 16.5 | |p |25780. | | 217.8 | | |00014 GSC22| +730380 |V0380 Sco |165608.1-301906 |SRA | 9.16 | 10.6 | |V |27682. | | 187.17 |29 |M1 |00295 00261| +730381 |V0381 Sco *|174703.4-354707 |EA/GS | 12.3 | 16.0 | |p |24574. | | 6545. |10 |A5Ia |05772 00262| +730382 |V0382 Sco *|175156.2-352505 |NA | 9.0 |< 16.5 | |p |15631. |1901 | | | |00250 08953| +730383 |V0383 Sco |175334.5-380501 |EA/GS | 11.7 | 14.1 | |p |20350. | | 4900. |12 :*|F0Ia |00250 03516| +730384 |V0384 Sco | | | | | | | | | | | | |=V5557 Sgr +730385 |V0385 Sco *|173809.5-374220 |E/D | 10.9 | 11.7 | |p |24711.690 | | 2.34515 | |B9 |00251 06286| +730386 |V0386 Sco |174055.0-344104 |EA/SD | 13.0 | 14.6 | |p |28161.0303 | | 1.776925 |12 | |00280 00280| +730387 |V0387 Sco *|174101.6-360106 |E | 12.1 | 12.5 | 12.2 |p |26120.570 | | 1.37494 | | |00251 00262| +730388 |V0388 Sco |174439.7-374903 |M: | 15.0 |< 16.5 | |p |24710. | | 413. | | |00251 06286| +730389 |V0389 Sco |174525.6-364525 |M: | 14.9 |< 16.5 | |p |24630. | | 295. | | |00251 00262| +730390 |V0390 Sco *|174704.9-355928 |M | 14.5 |< 16.5 | |p |24700. | | 420. : | | |00251 00262| +730391 |V0391 Sco |174726.4-345559 |M: | 15.0 |< 16.5 | |p |27860. | | 282. | | |02448 02448| +730392 |V0392 Sco |174813.7-374405 |M: | 15.5 |< 16.5 | |p |24060. | | 248. | | |00251 06286| +730393 |V0393 Sco *|174847.6-350326 |EA/SD | 8.2 | 9.0 | 8.3 |p |28321.118 | | 7.71250 |12 *|B9 |00001 08953| +730394 |V0394 Sco |174850.0-354622 |M | 14.3 |< 16.5 | |p |28097. | | 413.7 | | |02931 02448| +730395 |V0395 Sco |174900.5-373747 |M: | 14.6 |< 16.5 | |p |26460. | | 244.5 | | |00251 06286| +730396 |V0396 Sco |174943.8-355820 |M | 13.2 | 16.2 | |p |26220. | | 219.3 | | |00251 06286| +730397 |V0397 Sco |174946.7-350546 |M: | 15.5 |< 16.5 | |p |25430. | | 224. | | |00251 06286| +730398 |V0398 Sco |174954.3-364358 |I | 13.6 | 15.0 | |p | | | | | |00251 06286| +730399 |V0399 Sco |175027.3-354356 |M: | 15.5 |< 16.5 | |p |24620. | | 259. | | |00251 06286| +730400 |V0400 Sco *|175119.0-361056 |RV | 14.7 | 15.9 | 15.0 |p |26090. | | 102.8 : | | |00251 06286| +730401 |V0401 Sco |175127.8-373224 |I | 13.1 | 14.0 | |p | | | | | |00251 UCAC2| +730402 |V0402 Sco *|175150.5-350950 |M | 14.4 |< 16.5 | |p |30904. | | 261.2 | | |02931 02448| +730403 |V0403 Sco *|175201.4-362931 |EA/KE: | 13.5 | 14.2 |( 0.05 )|p |30965.260 | | 1.0408722 |15 | |03513 03513| +730404 |V0404 Sco |175210.9-370036 |M: | 14.6 |< 16.5 | |p |26120. | | 212.2 | | |00251 06286| +730405 |V0405 Sco |175211.0-371515 |M: | 14.6 |< 16.5 | |p |25800. | | 201. | | |00251 06286| +730406 |V0406 Sco |175225.5-373724 |M: | 15.2 |< 16.5 | |p |24710. | | 210.7 | | |00251 06286| +730407 |V0407 Sco *|175225.5-350317 |M | 12.8 |< 16.5 | |p |28705. | | 396. | |Se |00251 00296| +730408 |V0408 Sco |175243.9-374430 |M | 14.0 |< 16.5 | |p |25850. | | 469. | | |00251 06286| +730409 |V0409 Sco |175247.8-364004 |M | 14.0 | 16.8 : | |p |26110. | | 173.5 | | |00251 06286| +730410 |V0410 Sco |175301.1-371223 |M: | 15.2 |< 16.5 | |p |25740. | | 303.5 | | |00251 06286| +730411 |V0411 Sco *|175313.5-365148 |RV | 13.4 | 15.0 | 14.0 |p |26120. | | 135. | | |00251 06286| +730412 |V0412 Sco *|175314.7-361009 |EW/KW | 13.8 | 14.8 | 14.8 |p |26179.225 | | 0.420662 | | |00251 06286| +730413 |V0413 Sco |175323.5-380818 |M: | 15.2 |< 16.5 | |p |27360. | | 217.4 | | |00251 06286| +730414 |V0414 Sco |175329.3-355209 |M | 14.0 |< 16.5 | |p |30174. | | 217.8 | | |02931 02448| +730415 |V0415 Sco |175337.3-370101 |RRAB | 14.8 | 15.8 | |p |26090.550 | | 0.62581 | | |00251 06286| +730416 |V0416 Sco |175341.8-371426 |M | 14.4 |< 16.5 | |p |26110. | | 327. | | |00251 06286| +730417 |V0417 Sco |175342.1-372251 |M | 14.0 |< 16.5 | |p |24740. | | 235. | | |00251 06286| +730418 |V0418 Sco |175358.3-374102 |SRA | 15.0 | 17.0 : | |p |24020. | | 171. | | |00251 06286| +730419 |V0419 Sco |175400.4-365527 |M: | 15.4 |< 16.5 | |p |24710. | | 214. | | |00251 06286| +730420 |V0420 Sco *|175358.1-342338 |M: | 15.3 |< 16.5 | |p |26130. | | 213. : | | |00251 06286| +730421 |V0421 Sco *|175430.0-354853 |M: | 15.0 |< 16.5 | |p |24030. | | 299. | | |00251 06286| +730422 |V0422 Sco |175446.0-374303 |E/SD | 14.0 | 15.0 | |p |25418.430 | | 1.0762 | | |00251 06286| +730423 |V0423 Sco *|175448.8-351952 |RV | 13.0 | 14.5 | 14.2 |p |27675.5 | | 59.633 | | |00296 00296| +730424 |V0424 Sco |175459.0-370441 |M: | 15.2 |< 16.5 | |p |26060. | | 330. | | |00251 06286| +730425 |V0425 Sco *|175449.7-342705 |M | 14.5 |< 17.0 | |p |30920. | | 110.0 | | |02430 02448| +730426 |V0426 Sco *|175518.2-353309 |M: | 15.0 |< 16.5 | |p |23970. | | 211. | | |00251 06286| +730427 |V0427 Sco |175558.1-370054 |M | 13.9 |< 16.5 | |p |27620. | | 237. | | |00251 06286| +730428 |V0428 Sco |175629.9-370810 |I | 13.8 | 15.5 | |p | | | | | |00251 06286| +730429 |V0429 Sco *|175639.6-350000 |M | 14.5 |< 16.5 | |p |26500. | | 216.7 | | |00251 GSC22| +730430 |V0430 Sco *|175646.8-353253 |M | 14.5 |< 16.5 | |p |24040. | | 172.7 | | |00251 06286| +730431 |V0431 Sco |175653.3-370900 |M: | 15.3 |< 16.5 | |p |23970. | | 263.5 | | |00251 06286| +730432 |V0432 Sco *|175655.5-351107 |I | 15.0 | 16.5 | |p | | | | | |00251 06286| +730433 |V0433 Sco |175711.3-381241 |I | 13.0 | 14.3 | |p | | | | | |00251 06286| +730434 |V0434 Sco |175707.3-370640 |M: | 15.5 |< 16.5 | |p |26090. | | 153.1 | | |00251 06286| +730435 |V0435 Sco |175713.7-381719 |M: | 14.8 |< 16.5 | |p |26060. | | 286. | | |00251 GSC22| +730436 |V0436 Sco |175713.8-375425 |M | 14.5 |< 16.5 | |p |24690. | | 213.5 | | |00251 06286| +730437 |V0437 Sco *|175713.0-361930 |EA/SD: | 13.6 | 14.7 | 13.9 |p |26179.240 | | 4.880 |12 | |00251 06286| +730438 |V0438 Sco |175716.4-372900 |M | 11.1 | 16.2 | |p |27274. | | 392.0 | |M3e |00001 CoD | +730439 |V0439 Sco *|175725.6-371704 |M | 14.0 |< 16.5 | |p |24020. | | 171.5 | |M0e |00251 06286| +730440 |V0440 Sco *|175732.7-352205 |M: | 14.7 |< 16.5 | |p |25435. | | 212.5 | | |00251 06286| +730441 |V0441 Sco |175742.2-380148 |M | 13.0 |< 16.5 | |p |24680. | | 146.3 | | |00251 USNO | +730442 |V0442 Sco |175748.9-354703 |I: | 13.5 | 14.0 | |p | | | | | |00251 06286| +730443 |V0443 Sco |175800.2-361536 |RRAB | 15.2 | 16.3 | |p |24728.620 | | 0.54923 | | |00251 GSC22| +730444 |V0444 Sco |175802.5-363731 |SR | 15.2 |< 16.5 | |p |26140. | | 128.8 | | |00251 06286| +730445 |V0445 Sco |175820.7-372643 |E/SD | 14.8 | 16.5 | |p |26089.650 | | 1.881 | | |00251 06286| +730446 |V0446 Sco *|175820.2-361545 |CWA | 12.86 | 13.70 | |V |44126.89 | | 28.6195 |20 |F8e: |02309 03513| +730447 |V0447 Sco |175822.4-370359 |RR | 15.5 | 16.7 | |p |26092.520 | | 0.40987 | | |00251 06286| +730448 |V0448 Sco |175821.6-353520 |I | 13.3 | 13.9 | |p | | | | | |00251 06286| +730449 |V0449 Sco |173658.6-320743 |CST | 7.1 | | |p | | | | |A2V | 00262| +730450 |V0450 Sco *|174223.0-351500 |LB | 10.33 | | |V | | | | |C4-5,4-5(R8-N3) |00251 00262| +730451 |V0451 Sco |174851.6-352230 |E | 12.0 | 12.4 | |p |24411.480 | | | | |00251 06286| +730452 |V0452 Sco |175312.7-371835 |E | 14.2 | 15.0 | |p |26101.550 | | | | |00251 06286| +730453 |V0453 Sco *|175616.1-322830 |EB/GS | 6.36 | 6.73 | 6.70 |V |42218.74 | | 12.00597 | |B0.5Iape |08105 09467| +730454 |V0454 Sco |170633.8-344828 |M | 13.6 |< 16.0 | |p |28360. | | 172.5 | | |00262 00262| +730455 |V0455 Sco *|170721.8-340515 |ZAND | 12.8 |< 16.5 | |p | | | | |pec(e)+M6 |00262 00262| +730456 |V0456 Sco |170724.4-323600 |M | 14. |< 17. | |p |28760. | | 277. | | |00262 00262| +730457 |V0457 Sco *|170802.5-355741 |EA/DM | 10.6 | 11.4 | 11.3 |p |27182.630 | | 2.00738 |10 *| |00262 00262| +730458 |V0458 Sco |170807.1-301905 |EA/SD | 12.5 | 13.6 | |p |25386.435 | | 0.799654 |18 *| |00262 00262| +730459 |V0459 Sco |170821.2-310320 |LB | 11.9 | 12.4 | |p | | | | |M7 |00262 00262| +730460 |V0460 Sco *|170850.4-325405 |EA/D | 13.4 | 16.0 | |p |27565.620 | | 4.01229 |10 | |00262 00262| +730461 |V0461 Sco |171006.9-331917 |LB | 11.3 | 12.8 | |p | | | | | |00262 00262| +730462 |V0462 Sco |171014.3-332501 |E | 11.7 | 12.5 | |p |26098.750 | | | | |00262 00262| +730463 |V0463 Sco |171109.5-324650 |E | 12.6 | 13.4 | |p |24731.560 | | | | |00262 00262| +730464 |V0464 Sco *|171122.4-364547 |EA/SD: | 12.5 | 14.2 | |p |26559.210 | | 4.70901 |08 | |00262 00262| +730465 |V0465 Sco |171224.8-334349 |LB | 10.5 | 11.4 | |p | | | | |M1 |00262 00262| +730466 |V0466 Sco *|171226.5-321304 |EB/SD | 13.4 | 14.8 | 13.7 |p |26813.570 | | 1.01123 | | |00262 00262| +730467 |V0467 Sco *|171519.3-363900 |EA/SD | 11.7 | 15.4 | |p |26503.430 | | 2.41342 |14 | |00262 00262| +730468 |V0468 Sco |171546.5-365201 |E | 12.1 | 12.5 | |p |26572.340 | | | | |00262 00262| +730469 |V0469 Sco |171555.9-302426 |M | 14.3 | 17.5 | |p |26860. | | 143.5 | | |00262 00262| +730470 |V0470 Sco *|171725.5-371908 |DCEP | 10.48 | 11.37 | |V |35308.32 | | 16.2615 |27 | |02309 00262| +730471 |V0471 Sco *|171749.1-342856 |EA/DM | 14.6 | 15.3 | 15.2 |p |27956.520 | | 2.6905 |12 *| |00262 00262| +730472 |V0472 Sco *|171755.2-350539 |EA/GS | 12.2 | 12.6 | |p |28698. | | 208.75 |04 |K3III |00262 00262| +730473 |V0473 Sco |171805.3-322155 |SRB | 13.4 | 15.7 | |p | | | 70. : | | |00262 00262| +730474 |V0474 Sco *|171851.4-313459 |EB | 10.3 | 11.0 | 10.6 |p |26472.510 | | 1.62004 | |B3-5 |00262 00262| +730475 |V0475 Sco |171856.1-322453 |E | 12.2 | 13.2 | |p |28334.410 | | | | |00262 00262| +730476 |V0476 Sco |172226.3-322655 |E | 12.7 | 13.4 | |p |27267.320 | | | | |00262 00262| +730477 |V0477 Sco |172415.8-304927 |LB | 11.6 | 12.4 | |p | | | | |M2 |00262 00262| +730478 |V0478 Sco |172558.5-353232 |UG | 14.0 | 16.69 | |B | | | | | |00262 08852| +730479 |V0479 Sco |172741.3-310819 |LB | 11.7 | 12.5 | |B | | | | |M1 |00262 00262| +730480 |V0480 Sco |172947.1-325915 |EA/SD | 14.0 |< 16. | |p |28342.414 | | 2.610955 |14 | |00296 00296| +730481 |V0481 Sco |173027.7-342831 |L | 14.0 | 15.8 | |p | | | | | |00262 00262| +730482 |V0482 Sco |173048.4-333636 |DCEP | 7.63 | 8.30 | |V |40754.495 | | 4.527807 |28 |F5 |00001 00262| +730483 |V0483 Sco *|173127.9-340306 |LB | 12.3 | 13.6 | |p | | | | | |00262 00262| +730484 |V0484 Sco |173129.1-324414 |L | 13.8 | 15.3 | |p | | | | | |00262 00262| +730485 |V0485 Sco *|173155.0-334343 |SRA | 11.0 | 11.6 | |p |26550. | | 845. | |M5III |00262 00262| +730486 |V0486 Sco *|173437.9-323619 |E: | 13.17 | 14.4 | |B |27190. :| | 60. : | | |00262 00262| +730487 |V0487 Sco *|173505.8-342345 |RRC | 11.11 | 11.59 | |V |41456.611 | | 0.329141 |35 |A3-F8 |00001 02448| +730488 |V0488 Sco |173521.4-310719 |M | 13.7 |< 16.5 | |p |29465. | | 325. | | |02448 02448| +730489 |V0489 Sco |173556.2-342807 |LB | 14.3 | 15.0 | |p | | | | | |00262 00262| +730490 |V0490 Sco *|173754.5-335704 |EA/DM | 12.0 | 12.6 | 12.5 |p |28425.295 | | 3.003757 |05 *| |02448 02448| +730491 |V0491 Sco *|173840.5-340919 |EA/DM | 12.8 | 13.3 | 13.2 |p |26187.370 | | 3.6943 |07 *| |00262 00262| +730492 |V0492 Sco |173845.5-345718 |SR | 13.6 | 15.8 | |p |28020. | | 236. : | | |00262 02448| +730493 |V0493 Sco |173950.6-313936 |E | 13.0 | 13.4 | |p |28062.260 | | | | |00262 00262| +730494 |V0494 Sco *|174048.5-313232 |RRAB | 10.62 | 11.91 | |V |41126.388 | | 0.4273326 |20 |A5-F5: |07984 00262| +730495 |V0495 Sco *|174140.1-362433 |SRB | 11.0 | 12.2 | |p | | | 700. : | | |00262 00262| +730496 |V0496 Sco *|174302.6-322214 |EA/SD | 11.1 | 12.3 | |p |27299.340 | | 2.19250 |09 |F5 |00262 00262| +730497 |V0497 Sco *|174526.2-340844 |EA/SD | 13.5 | 15.5 | 13.6 |p |28425.209 | | 1.289343 |15 *| |00296 00262| +730498 |V0498 Sco |172758.2-310803 |EA | 13.5 | 14.0 | |p |28346.457 | | 3.27433 |16 | |00297 00297| +730499 |V0499 Sco *|172902.3-330016 |EB/DM | 8.25 |( 0.51 )| |V |28340.405 | | 2.3332977 | |B1V |02853 08953| +730500 |V0500 Sco |174837.5-302834 |DCEP | 8.40 | 9.13 | |V |44400.89 | | 9.316863 |49 |K0 |00001 00299| +730501 |V0501 Sco |171503.2-420133 |EW/KE | 13.2 | 13.9 | |p |26119.568 | | 0.89348 | | |00300 00263| +730502 |V0502 Sco *|171614.7-404923 |E/SD | 12.4 | 14.0 | |p |26595.309 | | 7.969388 | | |00300 00263| +730503 |V0503 Sco |171635.4-452543 |E/SD | 12.0 | 13.6 | |p |26183.236 | | 6.08628 | |A0 |00300 00021| +730504 |V0504 Sco |171842.4-384446 |E/SD: | 13.7 | 14.5 | |p |26118.523 | | 2.590012 | | |00300 00263| +730505 |V0505 Sco |172212.5-410240 |E/SD: | 13.5 | 14.5 | |p |26214.208 | | 5.626 | | |00300 00263| +730506 |V0506 Sco |172312.4-391140 |E/SD | 13.3 | 16.0 | |p |25423.490 | | 2.13817 | | |00300 00263| +730507 |V0507 Sco *|172422.4-441650 |CEP | 13.7 | 15.3 | |p |30875.75 | | 11.7989 | | |00046 GSC22| +730508 |V0508 Sco |172547.9-391231 |E/SD | 13.8 | 15.4 | |p |26093.590 | | 4.9363 | | |00300 00263| +730509 |V0509 Sco |172615.1-403618 |EW/KE | 12.8 | 13.4 | |p |26561.450 | | 0.769746 | | |00300 00263| +730510 |V0510 Sco |172737.3-425853 |E/DS | 13.1 |< 16.1 | |p |26176.368 | | 8.71294 | | |00300 GSC22| +730511 |V0511 Sco |172822.5-420239 |E/SD | 12.5 |< 16.0 | |p |26156.420 | | 7.5799 | | |00300 08613| +730512 |V0512 Sco |172851.8-425620 |RRAB | 15.5 | 16.5 | |p |26179.304 | | 0.449342 | | |00300 GSC22| +730513 |V0513 Sco |172946.5-404645 |E/SD | 12.9 | 14.5 | |p |26091.504 | | 1.26902 | | |00300 08613| +730514 |V0514 Sco |172943.8-393902 |RRAB | 13.3 | 14.4 | |p |26183.370 | | 0.60005 | | |00300 GSC | +730515 |V0515 Sco |173103.8-452722 |RRAB | 14.9 | 16.4 | |p |26561.346 | | 0.38377 | | |00300 GSC22| +730516 |V0516 Sco |173307.6-395436 |CEP | 14.5 | 15.9 | |p |29736.25 | | 15.6675 | | |00046 GSC22| +730517 |V0517 Sco |173553.3-442225 |CEP | 13.7 | 15.1 | |p |26179.440 | | 1.176278 |31 | |00300 USNO | +730518 |V0518 Sco |173557.1-414223 |RRAB | 14.8 | 16.3 | |p |26146.549 | | 0.58933 | | |00300 GSC22| +730519 |V0519 Sco |173646.9-433004 |E | 13.8 | 14.6 | |p |26181.220 | | 0.655815 | | |00300 USNO | +730520 |V0520 Sco |173645.6-411812 |RRAB | 15.6 | 16.4 | |p |26179.385 | | 0.516489 | | |00300 GSC22| +730521 |V0521 Sco |173659.5-424756 |RRAB | 13.7 | 15.3 | |p |26561.460 | | 0.47816 | | |00300 GSC22| +730522 |V0522 Sco |173940.7-404339 |RRAB | 14.1 | 15.1 | |p |26179.376 | | 0.509582 | | |00300 GSC22| +730523 |V0523 Sco |173951.9-420757 |EW/KW | 14.0 | 14.7 | |p |26183.300 | | 0.482018 | | |00300 UCAC2| +730524 |V0524 Sco |174007.7-435858 |RRAB | 14.8 | 16.5 | |p |26180.272 | | 0.58443 | | |00300 GSC22| +730525 |V0525 Sco |173957.8-402913 |E/SD | 13.8 |< 16.4 | |p |26180.550 | | 7.5128 | | |00300 UCAC2| +730526 |V0526 Sco |174015.7-440037 |RRAB | 15.4 | 16.7 | |p |26179.490 | | 0.51637 | | |00300 GSC22| +730527 |V0527 Sco |174117.7-441946 |E/SD | 11.8 | 13.5 | |p |26176.300 | | 5.6192 | | |00300 | +730528 |V0528 Sco |174137.1-444940 |RRAB | 15.3 | 16.3 | |p |26561.330 | | 0.66975 | | |00300 USNO | +730529 |V0529 Sco |174152.6-403548 |RRAB | 15.4 | 16.2 | |p |26179.207 | | 0.601397 | | |00300 06286| +730530 |V0530 Sco |174200.8-403300 |E/SD | 13.8 | 16.1 | |p |26179.256 | | 3.04545 | | |00300 06286| +730531 |V0531 Sco |174300.1-441716 |E/SD | 15.7 |< 17.0 | |p |26213.320 | | 4.5332 | | |00300 USNO | +730532 |V0532 Sco |174244.5-394142 |CEP | 14.9 | 16.2 | |p |30246.6 | | 24.147 | | |00046 06286| +730533 |V0533 Sco |174256.7-401756 |CEP | 14.8 | 16.2 | |p |29793.5 | | 15.529 | | |00046 06286| +730534 |V0534 Sco |174347.3-442601 |RRAB | 14.9 | 16.4 | |p |26217.200 | | 0.467488 | | |00300 GSC22| +730535 |V0535 Sco |174400.4-432524 |CWA | 13.4 | 15.3 | |p |29815.4 | | 24.680 |35 | |00046 UCAC2| +730536 |V0536 Sco |174410.4-434412 |RRAB | 13.5 | 14.8 | |p |30962.187 | | 0.4410321 |20 | |03513 03513| +730537 |V0537 Sco |174431.0-434118 |RRAB | 14.8 | 16.3 | |p |26561.346 | | 0.473049 | | |00300 GSC22| +730538 |V0538 Sco |174632.0-445541 |E | 14.1 | 15.0 | |p |26215.211 | | 0.61862 | | |00300 GSC22| +730539 |V0539 Sco |174624.4-411310 |RRAB | 15.0 | 16.1 | |p |26561.380 | | 0.528663 | | |00300 GSC22| +730540 |V0540 Sco *|174641.9-422404 |RRAB | 14.8 | 16.3 | |p |26179.450 | | 0.543130 | | |00300 GSC22| +730541 |V0541 Sco |174700.3-412230 |RRAB | 14.8 | 16.3 | |p |26179.470 | | 0.644705 | | |00300 GSC22| +730542 |V0542 Sco |174740.7-413343 |CEP | 13.30 | 14.8 | |B |30990.22 | | 15.23965 |40 | |03516 03516| +730543 |V0543 Sco |174740.8-425308 |EA/SD | 12.0 | 13.3 | |p |31204.5260 | | 0.9333668 |18 *| |03516 03516| +730544 |V0544 Sco |174750.0-421654 |E/SD | 13.9 |< 16.3 | |p |26215.211 | | 4.7947 | | |00300 GSC22| +730545 |V0545 Sco |174829.1-395132 |RRAB | 15.2 | 16.2 | |p |26179.376 | | 0.577339 | | |00300 06286| +730546 |V0546 Sco |174920.6-415950 |EW/KW | 13.8 | 14.5 | |p |26186.230 | | 0.447038 | | |00300 GSC22| +730547 |V0547 Sco *|174931.9-404740 |RRAB | 14.6 | 15.8 | |p |24383.554 | | 0.5384 | | |00300 06286| +730548 |V0548 Sco |175039.0-422116 |RRAB | 15.0 | 16.4 | |p |26561.210 | | 0.491279 | | |00300 GSC22| +730549 |V0549 Sco *|175100.5-402523 |CWA | 13.39 | 14.39 | |V |44161.19 | | 16.5483 |20 | |00001 03513| +730550 |V0550 Sco |175111.0-431342 |RRAB | 14.8 | 16.3 | |p |30606.298 | | 0.4353630 |10 : | |03516 03516| +730551 |V0551 Sco |175121.8-425854 |RRAB | 15.7 | 16.5 | |p |26179.200 | | 0.63545 | | |00300 GSC22| +730552 |V0552 Sco |175132.2-430215 |RRAB | 12.9 | 13.8 | |p |30994.2453 | | 0.688912 |14 | |00240 06286| +730553 |V0553 Sco |175129.9-421314 |CWB | 15.5 | 16.5 | |p |26180.272 | | 2.4412 | | |00300 USNO | +730554 |V0554 Sco |175310.8-402956 |RRAB | 14.4 | 15.2 | |p |30962.223 | | 0.4161644 |20 | |03513 03513| +730555 |V0555 Sco *|175418.7-414251 |CWA | 13.51 | 14.59 | |V |44159.03 | | 15.6222 |43 | |03513 03513| +730556 |V0556 Sco |175637.4-445124 |RRAB | 14.3 | 15.0 | |p |31285.325 | | 0.4353646 |12 | |03513 03513| +730557 |V0557 Sco |175824.6-415030 |DSCT | 13.2 | 13.8 | |p |30913.3157 | | 0.10947567 |28 | |03513 03513| +730558 |V0558 Sco |161312.0-084146 |SRB | 13.1 | 13.9 | |p | | | 74.6 : | | |05692 05692| +730559 |V0559 Sco |161504.0-094707 |RRAB | 13.6 | 14.33 | |B |30039.156 | | 0.54077978 |16 | |05692 05692| +730560 |V0560 Sco |161840.2-084848 |SRA | 13.5 | 14.8 | |p |28200. | | 422. | | |00278 | +730561 |V0561 Sco |164356.1-402604 |M | 14.2 |< 17.0 | |p |28990. | | 245. | | |00263 00263| +730562 |V0562 Sco *|164430.2-374805 |EA/KE | 11.6 | 12.1 | 12.1 |p |29113.19 | | 1.054997 |20 | |00263 00263| +730563 |V0563 Sco |164506.2-412445 |LB | 11.5 | 12.5 | |p | | | | | |00263 00263| +730564 |V0564 Sco |164649.0-402534 |M | 13.8 |< 17.5 | |p |29080. | | 234.7 | | |00263 00263| +730565 |V0565 Sco |164932.5-405556 |EA/D | 10.6 | 11.0 | |p |29392.54 | | 6.289269 |06 *|B3 |00263 00263| +730566 |V0566 Sco *|164949.2-431050 |EA/SD | 12.6 | 13.7 | |p |26558.37 | | 6.91482 |03 | |00263 00263| +730567 |V0567 Sco *|164950.7-405506 |CEP | 12.21 | 13.31 | |V |29820.0 | | 34.0483 |15 | |00263 00263| +730568 |V0568 Sco *|164945.8-390429 |EA/SD | 14.5 | 16.0 | |p |28702.29 | | 1.431947 |10 | |00263 00263| +730569 |V0569 Sco *|165002.4-423608 |EA/DM | 10.7 | 11.5 | 11.4 |p |27923.60 | | 1.047238 |17 |A3 |00263 00263| +730570 |V0570 Sco *|165130.7-371726 |M: | 14.5 |< 16.0 | |p |29840. | | 410. | | |00263 00263| +730571 |V0571 Sco |165217.0-381622 |EA/SD: | 12.4 | 13.3 | |p |29458.42 | | 2.100399 |12 *| |00263 00263| +730572 |V0572 Sco |165235.3-382837 |M | 13.0 | 16.7 | |p |29930. | | 294. | | |00263 00263| +730573 |V0573 Sco *|165351.5-412529 |EA | 13.7 | 14.0 | |p |29458.44 | | 3.05061 |08 | |00263 00263| +730574 |V0574 Sco *|165429.4-400228 |RRAB | 14.0 | 15.3 | |p |29841.24 | | 0.571664 |20 | |00263 00263| +730575 |V0575 Sco *|165424.5-364922 |EA/SD: | 12.3 | 12.9 | 12.4 |p |29846.29 | | 0.658939 |16 *| |00263 00263| +730576 |V0576 Sco |165432.3-370633 |M | 13.8 |< 17.0 | |p |29750. | | 277.8 | | |00263 00263| +730577 |V0577 Sco |165458.2-420650 |LB | 12.5 | 13.6 | |p | | | | | |00263 00263| +730578 |V0578 Sco |165518.9-342702 |M | 14.4 |< 17. | |p |29465. | | 184.8 | | |00263 00263| +730579 |V0579 Sco *|165554.5-403009 |L | 13.8 | 16.0 | |p | | | | | |00263 00263| +730580 |V0580 Sco |165559.9-375416 |M: | 15.5 |< 16.5 | |p |29520. | | 507. | | |00263 00263| +730581 |V0581 Sco *|165618.7-375755 |EA | 11.8 | 12.3 | 11.9 |p |29470.53 | | 0.510999 |19 | |00263 00263| +730582 |V0582 Sco |165626.6-402359 |I | 15.0 |< 16.5 | |p | | | | | |00263 00263| +730583 |V0583 Sco |165701.5-371738 |EA/SD: | 12.0 | 12.8 | |p |29486.34 | | 0.994728 |11 *| |00263 00263| +730584 |V0584 Sco *|165708.9-374626 |EB:/KE | 12.8 | 13.7 | 13.1 |p |29458.38 | | 0.592751 | | |00263 00263| +730585 |V0585 Sco *|165713.3-390338 |EA/SD | 14.6 | 15.6 | |p |28303.57 | | 1.978224 |07 | |00263 00263| +730586 |V0586 Sco *|165732.2-411836 |EA | 12.4 | 12.8 | |p |29428.53 | | 0.955937 |07 | |00263 00263| +730587 |V0587 Sco |165736.1-375339 |SR | 13.0 | 14.6 | |p |29745. | | 86. | | |00263 00263| +730588 |V0588 Sco *|165749.8-403000 |EA/SD | 14.0 |< 16.5 | |p |26512.39 | | 3.11176 |08 | |00263 00263| +730589 |V0589 Sco *|165800.1-405544 |EA/SD | 12.8 | 13.8 | |p |29049.56 | | 2.61452 |11 | |00263 00263| +730590 |V0590 Sco *|165850.8-422214 |EA/SD: | 10.68 | 11.3 | |B |28392.24 | | 2.47282 |11 |B5 |00263 00263| +730591 |V0591 Sco |165853.0-350539 |EA/SD: | 11.7 | 12.4 | |p |29486.44 | | 0.777684 |15 *| |00263 00263| +730592 |V0592 Sco *|165928.0-424825 |EB/KE | 12.8 | 13.8 | 13.3 |p |28720.44 | | 0.780186 | | |00263 00263| +730593 |V0593 Sco *|165917.9-350652 |EA/DS | 13.7 | 16.0 | |p |26805.80 | | 17.4978 |10 | |00263 00263| +730594 |V0594 Sco *|170024.6-414239 |EA/SD | 10.6 | 11.6 | |p |28720.41 | | 3.63293 |11 |F0 |00263 00263| +730595 |V0595 Sco |170044.5-363801 |M: | 15.1 |< 17.0 | |p |29390. | | 178.9 | | |00263 00263| +730596 |V0596 Sco |170133.6-385317 |I: | 15.0 | 16.0 | |p | | | | | |00263 00263| +730597 |V0597 Sco |170228.4-351448 |M | 14.5 |< 17.0 | |p |29460. | | 216. | | |00263 00263| +730598 |V0598 Sco |170246.6-344029 |UG | 14.8 |< 16.5 | |p | | | | | |00263 00263| +730599 |V0599 Sco |170340.1-384506 |EA | 13.7 | 14.2 | |p |28695.35 | | 2.47540 |16 | |00263 00263| +730600 |V0600 Sco |170403.8-384538 |RRAB | 12.5 | 13.6 | |p |29458.41 | | 0.455254 |25 | |00263 00263| +730601 |V0601 Sco |170405.3-364334 |UG: | 15.0 |< 16.5 | |p | | | | | |00263 08852| +730602 |V0602 Sco |170505.6-433423 |SRA | 13.6 | 14.7 | |p |28990. | | 175. | | |00263 00263| +730603 |V0603 Sco *|170534.8-394734 |EA | 13.2 | 13.8 | |p |28331.50 | | 26.3089 |10 | |00263 00263| +730604 |V0604 Sco |170612.0-400133 |EA/D: | 12.1 | 12.4 | |p |29428.53 | | 1.53789 |12 *|F8 |00263 00263| +730605 |V0605 Sco |170627.6-403027 |M | 12.0 |< 17.0 | |p |29000. | | 370.8 | | |00263 00263| +730606 |V0606 Sco *|170622.1-374131 |EA | 11.9 | 12.2 | |p |27945.45 | | 1.342884 |08 | |00263 00263| +730607 |V0607 Sco *|170616.9-355758 |EA/SD: | 10.2 | 10.8 | 10.3 |p |29470.45 | | 4.51657 |11 *|B8 |00263 00263| +730608 |V0608 Sco |170621.8-354802 |M: | 15.5 |< 17.0 | |p |28720. | | 309.6 | | |00263 00263| +730609 |V0609 Sco *|170633.9-365345 |EW/KE | 13.2 | 13.7 | 13.7 |p |29458.24 | | 1.055047 | | |00263 00263| +730610 |V0610 Sco |170647.8-395235 |E | 12.7 | 14.1 | |p | | | | | |00263 00263| +730611 |V0611 Sco *|170715.5-361647 |EA/DM | 13.5 | 14.2 | 13.7 |p |29865.30 | | 3.90076 |12 | |00263 00263| +730612 |V0612 Sco *|170953.0-423855 |EA/SD: | 12.0 | 12.6 | |p |29793.28 | | 1.06270 |10 | |00263 00263| +730613 |V0613 Sco *|171148.6-375417 |EA/SD: | 13.6 | 14.5 | |p |29403.41 | | 2.71179 |10 : | |00263 00263| +730614 |V0614 Sco |171220.5-365933 |SRA | 11.9 | 12.6 | |p |29750. | | 439. | | |00263 00263| +730615 |V0615 Sco |171252.3-381724 |SR | 15.0 | 16.0 | |p | | | 155. | | |00263 00263| +730616 |V0616 Sco *|171313.3-425903 |EA/DM | 12.0 | 12.5 | 12.4 |p |29750.64 | | 0.84411 |15 |F8 |00263 00263| +730617 |V0617 Sco |171341.1-355521 |M | 13.0 |< 17.0 | |p |28920. | | 523.6 | |C |00263 00263| +730618 |V0618 Sco |171406.3-422436 |M | 14.5 |< 17.0 | |p |28670. | | 304.9 | | |00263 00263| +730619 |V0619 Sco *|171416.1-412121 |EB/KE | 11.9 | 12.4 | 12.1 |p |29458.23 | | 0.754620 | | |00263 00263| +730620 |V0620 Sco *|171404.4-375828 |EA/SD | 12.7 | 13.8 | |p |29486.38 | | 2.57119 |11 | |00263 00263| +730621 |V0621 Sco *|171436.8-410415 |EA/SD | 12.3 | 15.0 | |p |29113.13 | | 6.68717 |08 | |00263 00263| +730622 |V0622 Sco *|171453.4-422915 |EA/DM | 13.6 | 14.3 | 14.2 |p |27592.48 | | 1.50852 |13 *| |00263 00263| +730623 |V0623 Sco *|171444.8-393508 |LB: | 14.9 |< 16.5 | |p | | | | | |00263 00263| +730624 |V0624 Sco |171624.5-410919 |M: | 14.7 |< 16.5 | |p |29790. | | 203.7 | | |00263 00263| +730625 |V0625 Sco *|171713.1-423418 |EW/KW | 13.1 | 13.5 | 13.5 |p |27601.27 | | 0.406288 | | |00263 00263| +730626 |V0626 Sco |171711.2-401725 |EA/D: | 11.4 | 11.8 | |p |29458.39 | | 1.03368 |11 *|A7 |00263 00263| +730627 |V0627 Sco *|171731.9-420333 |EA/KE | 13.4 | 14.1 | 14.1 |p |27592.39 | | 0.832068 |13 | |00263 00263| +730628 |V0628 Sco *|171724.8-365208 |EA/KE | 11.9 | 12.5 | 12.4 |p |29458.56 | | 1.169566 |16 | |00263 00263| +730629 |V0629 Sco *|171820.3-390342 |E | 11.9 | 12.4 | |p |27601.43 | | 3.2491 | | |00263 00263| +730630 |V0630 Sco |171921.9-384849 |E | 14.0 | 15.0 | |p | | | | | |00263 00263| +730631 |V0631 Sco *|171933.4-402058 |EA/KE | 12.9 | 13.8 | 13.2 |p |29470.39 | | 0.823743 |22 | |00263 00263| +730632 |V0632 Sco *|172030.4-430434 |EA/D: | 11.5 | 11.9 | |p |29049.52 | | 1.610168 |07 |F |00263 00263| +730633 |V0633 Sco *|172120.4-415818 |EB:/KE: | 11.9 | 12.5 | 12.2 |p |29458.30 | | 0.493333 | | |00263 00263| +730634 |V0634 Sco *|172139.1-364511 |EA/DM | 11.7 | 12.3 | 12.2 |p |29458.23 | | 1.224028 |08 |A |00263 00263| +730635 |V0635 Sco |172222.9-414441 |LB | 9.5 | 10.7 | |p | | | | |S7,6:(Np) |00263 00263| +730636 |V0636 Sco *|172246.5-453651 |DCEP | 6.40 | 6.92 | |V |40364.392 | | 6.79671 |34 |F7/8Ib/II-G5 |05366 03520| +730637 |V0637 Sco |172330.8-405649 |SRB | 12.0 | 12.8 | |p | | | 85. : | | |00263 00263| +730638 |V0638 Sco *|172407.3-430204 |EA/D: | 11.3 | 12.0 | |p |27964.53 | | 2.358218 |10 |A |00263 00263| +730639 |V0639 Sco |172404.9-400358 |LB | 12.0 : | 14.0 | |p | | | | | |00263 00263| +730640 |V0640 Sco *|172425.2-394452 |EA/DM | 12.8 | 13.5 | 13.5 |p |28339.31 | | 1.71302 |19 | |00263 00263| +730641 |V0641 Sco |172528.9-430042 |IS | 13.0 | 15.1 | |p | | | | | |00263 00263| +730642 |V0642 Sco |172544.6-381433 |EA | 13.6 | 14.2 | |p |29486.285 | | 0.862570 |12 *| |00263 00263| +730643 |V0643 Sco |172555.4-405807 |IA | 12.6 | 13.8 | |p | | | | | |00263 00263| +730644 |V0644 Sco |172619.0-400152 |LB | 13.4 |< 16.5 | |p | | | | |C4-5,5(N) |00263 00263| +730645 |V0645 Sco |174150.5-383116 |M | 14.0 |< 17.0 | |p |26590. | | 315. | | |00248 GSC22| +730646 |V0646 Sco |174512.5-384834 |M | 14.0 |< 17.0 | |p |26240. | | 274. | | |00248 GSC22| +730647 |V0647 Sco |174639.8-385423 |M | 14.7 |< 17.0 | |p |26090. | | 203. | | |00248 GSC22| +730648 |V0648 Sco |174644.2-383150 |M: | 15.2 |< 17.0 | |p | | | | | |00248 GSC22| +730649 |V0649 Sco |174711.0-391429 |M | 14.2 |< 17.0 | |p |31680. | | 195.7 | | |00001 04151| +730650 |V0650 Sco |174758.8-391406 |SRA | 13.5 | 14.9 | |p |26180. | | 85. | | |00248 USNO | +730651 |V0651 Sco |174839.7-391332 |M | 14.2 |< 16.5 | |p |26190. | | 202. | | |00248 GSC22| +730652 |V0652 Sco |174842.8-381800 |LB: | 14.2 | 15.4 | |p | | | | | |00248 06286| +730653 |V0653 Sco |174915.7-391317 |M: | 14.5 |< 16.5 | |p | | | | | |00248 USNO | +730654 |V0654 Sco |175016.0-384932 |M | 14.8 |< 17.0 | |p |26210. | | 272. | | |00248 06286| +730655 |V0655 Sco |175051.4-384242 |M | 14.4 |< 17.0 | |p |26580. | | 280. | | |00248 06286| +730656 |V0656 Sco *|175145.3-395604 |M | 14.4 |< 16.5 | |p |26600. | | 200. | | |00248 GSC22| +730657 |V0657 Sco |175149.1-384959 |M | 14.5 |< 16.5 | |p |26460. | | 242. | | |00248 06286| +730658 |V0658 Sco |175147.7-391325 |M: | 15.4 |< 16.5 | |p |26180. | | 260. | | |00248 06286| +730659 |V0659 Sco |175218.9-393600 |M: | 15.0 |< 16.5 | |p |26500. | | 156. | | |00248 06286| +730660 |V0660 Sco *|175233.9-392119 |RR | 15.5 |< 16.5 | |p | | | | | |00248 06286| +730661 |V0661 Sco |175242.1-394737 |M | 13.0 |< 16.5 | |p |26460. | | 215. | | |00248 06286| +730662 |V0662 Sco |175253.5-394415 |M | 15.0 |< 17.0 | |p |26560. | | 318. | | |00248 06286| +730663 |V0663 Sco |175256.1-395837 |M: | 15.7 |< 17.0 | |p |26480. | | 163. | | |00248 06286| +730664 |V0664 Sco |175254.2-384550 |M | 14.3 | 16.6 | |p |26195. | | 113. | | |00248 06286| +730665 |V0665 Sco |175257.5-384557 |LB | 13.2 | 14.6 | |p | | | | | |00248 06286| +730666 |V0666 Sco |175319.9-395712 |M | 13.8 |< 16.5 | |p |26580. | | 276. | | |00248 06286| +730667 |V0667 Sco |175318.0-392831 |M | 14.2 |< 16.5 | |p |26610. | | 122. | | |00248 06286| +730668 |V0668 Sco |175336.6-394944 |RRAB | 14.8 | 15.6 | |p |26563.440 | | 0.48969 | | |00248 06286| +730669 |V0669 Sco |175336.9-382116 |M: | 15.2 |< 16.5 | |p |26530. | | 173. | | |00248 06286| +730670 |V0670 Sco |175416.1-391444 |M: | 15.7 |< 16.5 | |p |26610. | | 163. | | |00248 06286| +730671 |V0671 Sco |175436.8-381951 |M: | 15.4 |< 16.5 | |p |26560. | | 307. | | |00248 06286| +730672 |V0672 Sco *|175448.2-400031 |M | 14.4 |< 16.5 | |p |26520. | | 360. : | | |00248 06286| +730673 |V0673 Sco |175506.3-391227 |SR | 14.0 | 16.2 | |p | | | | | |00248 06286| +730674 |V0674 Sco *|175514.7-395709 |SRA | 14.4 | 15.6 | |p |26590. | | 178. | | |00248 06286| +730675 |V0675 Sco |175518.2-384558 |LB | 13.8 | 14.8 | |p | | | | | |00248 06286| +730676 |V0676 Sco |175534.8-381738 |M | 13.8 |< 16.5 | |p |26610. | | 214. | | |00248 06286| +730677 |V0677 Sco *|175554.2-382054 |M: | 15.5 |< 16.5 | |p | | | | | |00248 GSC22| +730678 |V0678 Sco |175602.0-385702 |M | 14.3 |< 17.0 | |p |26570. | | 297. | | |00248 06286| +730679 |V0679 Sco *|175618.3-395957 |M: | 15.0 |< 16.5 | |p |26520. | | 182. : | | |00248 06286| +730680 |V0680 Sco |175634.9-393353 |SR | 14.5 | 15.8 | |p | | | | | |00248 06286| +730681 |V0681 Sco |175635.7-384200 |SR | 14.6 | 16.2 | |p | | | 100. : | | |00248 06286| +730682 |V0682 Sco |175643.5-390541 |RRAB | 15.4 | 16.5 | |p |26179.35 | | 0.51794 | | |00248 06286| +730683 |V0683 Sco |175647.5-385314 |M: | 15.5 |< 17.0 | |p |26590. | | 330. | | |00248 06286| +730684 |V0684 Sco |175659.0-390124 |M: | 14.0 |< 16.5 | |p |26560. | | 267. : | | |00248 06286| +730685 |V0685 Sco |175712.4-383155 |RRAB | 14.5 | 15.5 | |p |26179.360 | | 0.59750 | | |00248 06286| +730686 |V0686 Sco |175719.6-390334 |M | 14.0 |< 16.5 | |p |26490. | | 238. | | |00248 06286| +730687 |V0687 Sco |175723.1-385633 |M | 14.5 |< 16.5 | |p |26600. | | 211. | | |00248 06286| +730688 |V0688 Sco |175725.0-391944 |M | 14.0 |< 17.0 | |p |26500. | | 192. | | |00248 06286| +730689 |V0689 Sco |175727.9-382124 |M | 14.3 |< 16.5 | |p |26560. | | 210. | | |00248 06286| +730690 |V0690 Sco *|175738.6-403327 |RRAB | 10.80 | 12.00 | |V |41797.592 | | 0.4922551 |17 |A7-F8 |00001 02383| +730691 |V0691 Sco |175737.9-385427 |M | 14.4 |< 16.5 | |p |26610. | | 190. | | |00248 06286| +730692 |V0692 Sco |175807.8-385913 |M | 14.5 |< 17.0 | |p |26470. | | 187. | | |00248 06286| +730693 |V0693 Sco |175815.4-384747 |SR | 12.5 | 13.9 | |p | | | 140. : | |M3-5 |00248 06286| +730694 |V0694 Sco |175819.5-384214 |RRAB | 15.3 | 16.4 | |p |26179.550 | | 0.50461 | | |00248 06286| +730695 |V0695 Sco |175838.2-391318 |M: | 14.8 |< 16.5 | |p |26590. | | 259. | | |00248 06286| +730696 |V0696 Sco |175311.6-355015 |NA | 7.5 |< 16.5 | |p |31226. |1944 | | |pec(NOVA) |01663 04256| +730697 |V0697 Sco |175121.9-372456 |NA | 8.0 : |< 16.5 | |p |30000. :|1941 | | | |00301 08953| +730698 |V0698 Sco *|172301.2-305457 |EA | 12.7 | 13.7 | |p |27981.32 | | 258.0 /N| | |00296 00296| +730699 |V0699 Sco |173002.5-332540 |EA | 13.4 | 14.7 | |p |28391.4 | | | | |00296 00296| +730700 |V0700 Sco *|173113.2-312243 |EB:/DM | 10.19 | 10.5 | 10.3 |B |28066.28 | | 2.34690 | |B5 |00296 00296| +730701 |V0701 Sco *|173424.5-323016 |EW/KE | 8.63 | 9.05 | 9.05 |V |43574.8358 | | 0.76187547 | |B1:V:nn |09573 00296| +730702 |V0702 Sco *|173424.8-322747 |EA/DS | 12.0 | 13.8 | |B |27715.25 :| | 11.344818 | *|A0Ve |09574 00296| +730703 |V0703 Sco *|174216.8-323124 |DSCT | 7.58 | 8.04 | |V |42979.3923 | | 0.11521772 |35 |A9-G0 |00001 00262| +730704 |V0704 Sco |174605.7-303453 |EA/DS: | 15.0 |< 15.5 | |p |28394.29 | | 13.4541 |10 : | |00296 00296| +730705 |V0705 Sco *|174808.3-343833 |EA/SD: | 14.0 | 15.0 | 14.1 : |p |28424.290 | | 3.46400 |12 *| |00296 00296| +730706 |V0706 Sco *|174815.3-344221 |DCEP: | 14.2 | 14.9 | |p |28346.42 | | 12.6444 |25 | |00296 00296| +730707 |V0707 Sco |174826.5-363755 |N | 9.9 |< 15. | |p |23253. |1922 | | |pec(NOVA) |00302 00262| +730708 |V0708 Sco *|175053.0-343510 |CEP | 13.3 | 14.6 | |p |28612.52 | | 27.178 |18 | |00046 00296| +730709 |V0709 Sco *|175102.8-345049 |CWA | 13.07 | 14.03 | |V |44020.33 | | 17.4358 |42 |F8: |00001 00296| +730710 |V0710 Sco *|175235.7-313624 |EB | 14.0 | 15.0 | 14.2 |p |28360.330 | | 0.4425772 | | |00296 00296| +730711 |V0711 Sco *|175406.1-342117 |NB | 9.7 |< 15.5 | |p |17394. |1906 | | | |00303 03508| +730712 |V0712 Sco *|175446.7-301124 |EB:/GS: | 13.8 | 14.3 | 14.0 |p |28018.88 | | 30.3050 | | |00296 00296| +730713 |V0713 Sco |175556.0-331903 |RRAB | 13.8 | 14.4 | |p |28420.251 | | 0.550537 |15 | |00296 00296| +730714 |V0714 Sco *|175556.6-314247 |EA | 12.2 | 12.8 | |p |28342.431 | | 0.6982113 |23 | |00296 00296| +730715 |V0715 Sco |175725.9-334856 |M | 12.2 |< 14.7 | |p |28445. | | 340. | | |00296 00296| +730716 |V0716 Sco |175747.3-341500 |SR | 13.0 | 14.4 | |p | | | 120. : | | |00296 00296| +730717 |V0717 Sco *|175811.7-335039 |CWA: | 13.14 | 14.40 | |V |44121.88 | | 20.1777 |26 |R |00001 00296| +730718 |V0718 Sco *|161311.6-222907 |EA | 8.98 | 10. | |V |42630.1 | | | |A2 |07492 08953| +730719 |V0719 Sco |174543.9-340055 |NA | 9.8 |< 18.5 | |p |33482. |1950 | | |pec(NOVA) |00304 08953| +730720 |V0720 Sco *|175158.2-352327 |NA | 7.5 |< 18.0 | |p |33500. |1950 | | |pec(NOVA) |00304 03508| +730721 |V0721 Sco |174229.1-344042 |N | 9.5 |< 18.0 | |p |33528. :|1950 | | |pec(NOVA) |00304 03508| +730722 |V0722 Sco |174837. -345757:|N | 9.4 |< 13. | |V |34075. |1952 | | | |00305 03508| +730723 |V0723 Sco *|175005.3-352358 |NA | 9.0 | 22.2 : | |B |34236. |1952 | | | |03522 03522| +730724 |V0724 Sco |174845.5-411222 |EA/SD: | 13.3 | 14.1 | |p |30500.392 | | 2.075177 |17 | |00240 00240| +730725 |V0725 Sco *|163412.1-263623 |IS: | 14.4 | 15.5 | |p | | | | | |00121 UCAC2| +730726 |V0726 Sco |171343.8-330407 |EA | 10.3 | 11.3 : | |p |31262.282 | | | |A0 |00306 00262| +730727 |V0727 Sco |171531.4-330615 |LB: | 9.7 |( 0.7 )| |p | | | | |M1 |00306 05474| +730728 |V0728 Sco |173913.2-452845 |N: | 5. |< 11. | |V |01420. :|1862 | | | |00859 08953| +730729 |V0729 Sco *|172202.9-320549 |M: | 14.0 |< 15.0 | |p |28427. | | | | |02448 02448| +730730 |V0730 Sco |172700.3-332935 |EA | 13.8 | 14.3 | |p |28611.507 | | | | |02448 02448| +730731 |V0731 Sco |173320.8-323426 |RCB: | 12.9 |< 14.9 | |p | | | | | |02448 02448| +730732 |V0732 Sco *|173348.4-333401 |EA | 13.6 | 14.0 | |p |28774.457 | | 1.298501 |25 *| |02448 02448| +730733 |V0733 Sco *|173943.0-355239 |M: | 13.5 |< 15.1 | |p |28735. | | | | |02448 02448| +730734 |V0734 Sco *|174502.3-353807 |M: | 14.7 |< 15.1 | |p |28705. | | | | |02448 02448| +730735 |V0735 Sco *|174636.6-335912 |CWA: | 14.4 | 15.1 | |p |28688.5 | | 30.523 |25 : | |02448 02448| +730736 |V0736 Sco |174704.0-301402 |SRA | 14.3 | 15.3 | |p |28080. | | 360. | | |02448 02448| +730737 |V0737 Sco |174717.9-344028 |M: | 14.4 |< 15.4 | |p |28640. | | 182. | | |02448 02448| +730738 |V0738 Sco *|174855.3-352957 |EA/SD | 13.3 | 13.9 | 13.4 : |p |28077.226 | | 2.39352 |16 | |02448 02448| +730739 |V0739 Sco |175037.5-342802 |M | 14.5 |< 15.5 | |p |28735. | | 115. | | |02448 02448| +730740 |V0740 Sco *|175057.0-345909 |EA/SD: | 14.2 |< 14.8 | |p |28094.267 | | 3.122997 |12 | |02448 02448| +730741 |V0741 Sco *|175127.1-301113 |M | 14.3 |< 14.9 | |p |28460. | | 300. : | | |02448 GSC22| +730742 |V0742 Sco |175218.4-344639 |CEP | 14.0 | 14.6 | |p |28351.41 | | 28.456 |35 | |02448 02448| +730743 |V0743 Sco |175222.7-322625 |SR | 14.3 | 15.3 | |p |28660. | | 350. | | |02448 02448| +730744 |V0744 Sco |175318.4-311330 |N: | 13.3 |< 15.6 | |p |27846. |1935 | | | |02448 02448| +730745 |V0745 Sco |175522.2-331459 |NA | 11.0 |< 14.9 | |p |28665. |1937 | | | |09575 02448| +730746 |V0746 Sco |175538.0-333107 |M: | 14.5 |< 15.2 | |p |28690. | | 340. : | | |02448 02448| +730747 |V0747 Sco |175638.5-335939 |M: | 14.3 |< 15.2 | |p |28425. | | | | |02448 02448| +730748 |V0748 Sco |175636.5-300500 |EA | 14.3 | 14.7 | |p |28641.542 | | 1.188149 |23 *| |02448 02448| +730749 |V0749 Sco *|175648.0-312146 |M: | 14.6 |< 15.4 | |p |28405. | | 210. : | | |02448 02448| +730750 |V0750 Sco |175706.2-334613 |SRA | 13.9 | 15.1 | |p |28460. | | 97. | |C(R) |02448 02448| +730751 |V0751 Sco |175723.4-330101 |M: | 14.4 |< 16. | |p |28085. | | 205. : | | |02448 02448| +730752 |V0752 Sco |175806.7-342159 |M: | 14.5 |< 15.5 | |p |28745. | | 225. | | |02448 02448| +730753 |V0753 Sco |161650.1-295116 |RR | 14. | 15. | |p | | | | | |04001 04001| +730754 |V0754 Sco |162009.3-095959 |RRAB | 14.7 | 16.3 | |p |37078.364 | | 0.652610 |17 | |04401 04401| +730755 |V0755 Sco |162132.1-151241 |I: | 14.4 | 15.5 | |p | | | | | |04401 04401| +730756 |V0756 Sco *|162225.8-320713 |EA/D | 10.5 | 11.1 | 10.7 |p |38204.520 | | 10.78 |12 | |04399 04001| +730757 |V0757 Sco |162141.9-114317 |RRAB | 14.7 | 15.7 | |p |37050.473 | | 0.724128 |25 | |04402 04402| +730758 |V0758 Sco |162248.7-125615 |SR | 13.7 | 15.2 | |p | | | 125. : | | |04402 04402| +730759 |V0759 Sco |162251.0-125322 |I | 14.0 | 14.6 | |p | | | | | |04402 04402| +730760 |V0760 Sco *|162443.7-345338 |EA/DM | 7.04 | 7.4 | 7.4 |B |38230.250 | | 1.7309 |17 |B3:Vn |04430 CoD | +730761 |V0761 Sco *|164347.9-354825 |EA/SD: | 12.5 | 14. | |p | | | | | |06561 06561| +730762 |V0762 Sco |175337.0-431946 |RRAB | 14.6 | 15.2 | |p |31233.534 | | 0.578983 | | |04151 04151| +730763 |V0763 Sco |175408.2-414147 |M: | 14.3 |< 15.0 | |p |30540. | | | | |04151 04151| +730764 |V0764 Sco *|175608.5-450921 |EB/DM | 8.5 | 9.1 | 9.0 |p |38233.210 | | 6.8084 | |A5IV/V |04399 08953| +730765 |V0765 Sco |155054.9-245150 |RRAB | 12. | 13. | |p |29806.198 | | 0.4636602 |17 | |03551 03551| +730766 |V0766 Sco |155136.7-235745 |RRAB | 14. | 15. | |p |29816.236 | | 0.5146130 |15 | |03551 03551| +730767 |V0767 Sco |160320.7-103011 |SR | 12.4 | 13.5 | |V |36700. | | | | |03519 | +730768 |V0768 Sco |160325.9-131932 |RRAB | 14.9 | 16.5 | |p |35655.789 | | 0.47500 |10 | |03519 USNO | +730769 |V0769 Sco |160325.9-114623 |RRAB | 15.7 | 16.9 | |p |35665.755 | | 0.53744 |10 | |03519 2MASS| +730770 |V0770 Sco |160344.2-130650 |SR | 14.0 | 14.8 | |p |36750. | | 192. : | |M6: |03519 UCAC2| +730771 |V0771 Sco |160351.5-131033 |RRAB | 13.88 | 15.5 | |B |41132.547 | | 0.5130626 |10 | |00001 2MASS| +730772 |V0772 Sco |160353.8-122754 |RRAB | 14.6 | 16.4 | |p |35635.783 | | 0.44762 |08 | |03519 | +730773 |V0773 Sco |160405.9-143903 |M | 16.3 | 18.9 | |p |35660. | | 113. | | |03519 GSC22| +730774 |V0774 Sco |160403.9-101454 |RRAB | 15.1 | 16.2 | |p |35657.735 | | 0.57078 |20 | |03519 | +730775 |V0775 Sco |160409.8-093754 |RRAB | 16.3 | 17.3 | |p |35637.902 | | 0.60183 |12 | |03519 | +730776 |V0776 Sco |160438.2-143249 |EA/SD: | 17.1 | 18.2 | |p |35666.724 | | | | |03519 GSC22| +730777 |V0777 Sco |160453.7-115148 |E/SD: | 16.6 | 17.6 | |p |35657.890 | | 2.8879 | | |03519 USNO | +730778 |V0778 Sco |160540.0-123601 |RRAB | 16.7 | 17.6 | |p |35634.803 | | 0.63450 |14 | |03519 | +730779 |V0779 Sco |160625.1-143440 |SR: | 12.8 | 13.4 | |V | | | | |M6-7 |03519 GSC22| +730780 |V0780 Sco |160630.8-095030 |RRAB | 15.9 | 17.4 | |p |35640.924 | | 0.47565 |12 | |03519 | +730781 |V0781 Sco |160649.2-113159 |M | 14.2 | 19.3 | |p |36650. | | 250. | | |03519 2MASS| +730782 |V0782 Sco |160652.5-122256 |RRAB | 15.7 | 17.4 | |p |35633.753 | | 0.46048 |16 | |03519 | +730783 |V0783 Sco |160836.4-120628 |RRAB | 14.08 | 15.4 | |B |41118.576 | | 0.529299 |10 | |00001 | +730784 |V0784 Sco |160848.9-143845 |E | 13.1 | 13.8 | |p |35653.711 | | 1.5260 | | |03519 UCAC2| +730785 |V0785 Sco |160856.9-144815 |RRAB | 15.8 | 16.9 | |p |35638.83 | | 0.63799 |26 | |03519 GSC22| +730786 |V0786 Sco |160857.0-145614 |RRAB | 16.1 | 17.4 | |p |35640.88 | | 0.59282 |10 | |03519 USNO | +730787 |V0787 Sco |160857.5-092426 |L: | 12.6 | 13.0 | |p | | | | | |05692 05692| +730788 |V0788 Sco |160921.9-084656 |SRA | 12.8 | 13.5 | |p |28930. | | 480. | | |05692 05692| +730789 |V0789 Sco |161002.5-121800 |E: | 17.3 | 18.6 | |p | | | | | |03519 GSC22| +730790 |V0790 Sco |160948.5-143716 |RRAB | 14.49 | 15.7 | |B |35653.774 | | 0.56427 |12 | |00001 GSC22| +730791 |V0791 Sco |161013.8-131311 |RRAB | 16.1 | 17.5 | |p |35653.781 | | 0.51633 |18 | |03519 | +730792 |V0792 Sco |161029.2-094524 |RRAB | 17.0 | 18.4 | |p |35665.78 | | 0.57008 |15 | |03519 | +730793 |V0793 Sco |161038.4-101613 |RRAB | 15.1 | 16.9 | |p |35655.740 | | 0.53352 |12 | |03519 2MASS| +730794 |V0794 Sco |161103.6-095038 |UG: | 16.0 | 17.3 | |p | | | | | |03519 | +730795 |V0795 Sco |161121.5-135549 |RRAB | 14.0 | 15.30 | |B |35632.968 | | 0.512321 |10 | |00001 GSC | +730796 |V0796 Sco |161145.8-143020 |RRAB | 14.4 | 15.78 | |B |35637.896 | | 0.6939512 |12 | |00001 USNO | +730797 |V0797 Sco |161150.3-150021 |RRAB | 14.6 | 16.0 | |p |35654.721 | | 0.40415 |10 | |03519 USNO | +730798 |V0798 Sco |160407.5-125930 |RRAB | 15.7 | 17.4 | |p |35653.784 | | 0.63043 |10 | |03519 GSC22| +730799 |V0799 Sco |161231.1-144203 |RRAB | 15.1 | 16.0 | |p |35656.679 | | 0.51569 |12 | |03519 GSC22| +730800 |V0800 Sco |161237.0-141512 |RRAB | 16.4 | 17.7 | |p |35627.85 | | 0.51339 |12 | |03519 GSC22| +730801 |V0801 Sco |161253.6-120945 |RRAB | 15.2 | 16.8 | |p |35638.782 | | 0.51231 |20 | |03519 | +730802 |V0802 Sco |161319.7-133136 |SRA | 14.7 | 16.7 | |p |35660. :| | 145. : | | |03519 GSC | +730803 |V0803 Sco |161336.8-142320 |RRAB | 16.1 | 17.5 | |p |35663.87 | | 0.58071 |12 | |03519 USNO | +730804 |V0804 Sco |161343.2-120723 |RRAB | 17.4 | 18.7 | |p |35657.800 | | 0.60033 |10 | |03519 USNO | +730805 |V0805 Sco *|161413.9-133345 |RR: | 16.3 | 18.0 | |p |35634.844 | | 1.02300 |10 | |03519 USNO | +730806 |V0806 Sco |161443.7-104253 |LB | 12.2 | 13.3 | |V | | | | | |03519 GSC22| +730807 |V0807 Sco |161512.4-112340 |RRAB | 15.7 | 17.3 | |p |35663.786 | | 0.68252 |12 | |03519 | +730808 |V0808 Sco |161525.8-094029 |RRAB | 15.2 | 17.1 | |p |35632.767 | | 0.48659 |10 | |03519 | +730809 |V0809 Sco |161546.2-124716 |RRAB | 17.9 | 18.9 | |p |35657.661 | | 0.56231 |17 : | |03519 USNO | +730810 |V0810 Sco |161550.1-113109 |RRAB | 15.2 | 16.8 | |p |35653.797 | | 0.64922 |10 | |03519 | +730811 |V0811 Sco |161555.3-133407 |RRAB | 16.6 | 17.9 | |p |35663.780 | | 0.59903 : | | |03519 USNO | +730812 |V0812 Sco |161557.9-144308 |RRAB | 15.5 | 16.7 | |p |35656.795 | | 0.65168 |14 | |03519 GSC | +730813 |V0813 Sco |161609.6-121606 |E | 16.2 | 17.6 | |p |35656.721 | | 0.5759 | | |03519 | +730814 |V0814 Sco |161619.1-124713 |SR: | 14.8 | 15.5 | |p | | | | |M6 |03519 2MASS| +730815 |V0815 Sco |161637.0-135553 |SRA | 15.7 | 17.7 | |V |36760. | | 136. | | |03519 USNO | +730816 |V0816 Sco |161639.2-121942 |E | 17.0 | 18.1 | |p |35656.700 | | 0.35218 | | |03519 GSC22| +730817 |V0817 Sco |161813.2-125621 |RRAB | 14.7 | 16.0 | |p |35664.793 | | 0.46360 |15 | |03519 2MASS| +730818 |V0818 Sco *|161955.1-153825 |XI | 11.1 | 14.1 | |B |40081.13 | | 0.787313 | |pec(cont+e) |07593 03963| +730819 |V0819 Sco *|174609.4-432735 |EA/DM | 13.0 | 13.3 | 13.2 |p |31271.115 | | 3.040683 |07 *| |03513 03513| +730820 |V0820 Sco |174734.7-412115 |RRC | 14.6 | 15.3 | |p |31617.406 | | 0.3892175 |40 : | |03513 03513| +730821 |V0821 Sco *|174735.0-385811 |EW/KW | 14.1 | 14.6 | 14.5 |p |31265.538 | | 0.4671846 | | |03513 03513| +730822 |V0822 Sco *|174858.5-411737 |M: | 13.7 | 14.6 | |p |31004. | | 249. | | |03513 03513| +730823 |V0823 Sco |174909.0-414728 |M: | 13.9 |< 15.5 | |p |31270. | | 209. | | |03513 03513| +730824 |V0824 Sco |175006.0-411832 |RRAB | 14.3 | 15.2 | |p |31017.248 | | 0.4764673 |15 | |03513 03513| +730825 |V0825 Sco |174953.2-333214 |N | 8. |< 13. | |p |38380. :|1963 | | | |03970 08953| +730826 |V0826 Sco |175046.3-415655 |I | 13.2 | 13.8 | |p | | | | | |03513 03513| +730827 |V0827 Sco *|175123.9-390800 |EB/KE | 13.9 | 14.4 | 14.1 |p |31268.407 | | 1.145067 | | |03513 03513| +730828 |V0828 Sco |175251.4-451407 |RR | 15. | 16. | |p | | | | | |03776 03776| +730829 |V0829 Sco |175300.2-452123 |RRAB | 14.0 | 14.6 | |p |31269.267 | | 0.6623521 |12 | |03513 03513| +730830 |V0830 Sco |175338.8-440340 |SR: | 13.4 | 13.9 | |p | | | 28. : | | |03513 03513| +730831 |V0831 Sco |175343.7-425739 |RRAB | 13.8 | 14.7 | |p |30877.369 | | 0.4704326 |15 | |03513 03513| +730832 |V0832 Sco |175354.6-372557 |SR: | 12.7 | 13.7 | |p |30548. | | 40. : | | |03513 03513| +730833 |V0833 Sco *|175356.0-363202 |EB/KE | 11.0 | 11.6 | 11.2 |p |31293.224 | | 1.187827 | |F0 |03513 03513| +730834 |V0834 Sco |175443.6-453049 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +730835 |V0835 Sco |175445.5-431141 |M: | 14.4 |< 15.5 | |p |31600. | | 193. | | |03513 03513| +730836 |V0836 Sco |175504.3-434541 |EA/SD: | 13.9 | 14.6 | |p |30927.197 | | 4.125856 : |12 *| |03516 03516| +730837 |V0837 Sco *|175455.6-382715 |EA/SD | 14.2 | 15.0 | 14.3 |p |30970.262 | | 0.8788446 |15 | |03513 03513| +730838 |V0838 Sco *|175527.7-414145 |EB/KE | 13.0 | 13.7 | 13.4 |p |31287.193 | | 0.5602150 | | |03513 03513| +730839 |V0839 Sco |175552.4-445606 |RR | 15. | 16. | |p | | | | | |03776 03776| +730840 |V0840 Sco |175553.8-444454 |RRAB | 14.5 | 15.0 | |p |31264.427 | | 0.646798 |13 | |03513 03513| +730841 |V0841 Sco |175605.3-452111 |I | 13.3 | 13.9 | |p | | | | | |03513 03513| +730842 |V0842 Sco *|175613.0-434624 |EW/KW | 11.5 | 12.5 | 12.3 |p |31233.543 | | 0.4982826 | | |03513 03513| +730843 |V0843 Sco *|175635.5-364222 |EA/SD | 10.4 | 10.9 | 10.5 |p |30970.270 | | 0.983629 |18 *| |03513 03513| +730844 |V0844 Sco |175656.2-414707 |M: | 14.2 |< 15.5 | |p |31600. | | 196. | | |03513 03513| +730845 |V0845 Sco |175705.4-391054 |I | 13.8 | 14.5 | |p | | | | | |03513 03513| +730846 |V0846 Sco |175731.4-431253 |I | 13.3 | 13.9 | |p | | | | | |03516 03516| +730847 |V0847 Sco |175746.2-444159 |RR | 15. | 16.5 | |p | | | | | |03776 03776| +730848 |V0848 Sco *|175736.0-365739 |EW:/KW: | 12.7 | 13.1 | 13.1 |p |30973.276 | | 0.4613166 | | |03513 03513| +730849 |V0849 Sco *|175808.7-422338 |EA/SD | 14.0 | 15.2 | 14.1 |p |31268.273 | | 5.11595 |10 *| |03513 03513| +730850 |V0850 Sco |175822.2-415545 |M: | 13.8 |< 15.5 | |p |31555. | | 278. | | |03513 03513| +730851 |V0851 Sco |175833.7-421451 |M: | 14.0 |< 15.5 | |p |31668. | | | | |03516 03516| +730852 |V0852 Sco |175838.9-431542 |RRAB | 14.6 | 15.3 | |p |31560.486 | | 0.4278321 |10 | |03513 03513| +730853 |V0853 Sco *|175838.9-412923 |EA/KE | 13.8 | 14.4 | 14.1 |p |30998.298 | | 1.298450 |12 | |03513 03513| +730854 |V0854 Sco |161315.6-095324 |DSCT | 13.0 | 13.4 | |p |29382.2570 | | 0.10240124 |38 | |09576 09576| +730855 |V0855 Sco | | | | | | | | | | | | |=GM Sco +730856 |V0856 Sco *|160834.3-390618 |INA | 6.80 | 8.00 | |V | | | | |A7IVe |09577 CoD | +730857 |V0857 Sco *|161141.5-270332 |M | 12.0 |< 15.6 | |B |40691. | | 361.8 | |Me |09565 05690| +730858 |V0858 Sco *|161157.6-270409 |RRAB | 13.4 | 14.3 | |B |40685.406 | | 0.47852 |25 | |09565 05690| +730859 |V0859 Sco |161533.8-253605 |RRAB | 13.5 | 14.9 | |p |40734.351 | | 0.46155 |15 | |09565 05690| +730860 |V0860 Sco |162834.6-251155 |M | 13.5 |< 15.5 | |p |40075. | | 275.1 | |Me |09565 05690| +730861 |V0861 Sco *|165636.0-404924 |EB | 6.07 | 6.40 | 6.28 |V |43704.21 | | 7.84825 | |B0.5Iae |06621 08953| +730862 |V0862 Sco *|174001.0-321204 |GCAS: | 2. | 8.5 | |V | | | | |B1ne-B8 |05922 05922| +730863 |V0863 Sco |160500.9-252901 |RRAB | 13.8 | 14.7 | |p |40413.226 | | 0.67251 |20 | |09565 09565| +730864 |V0864 Sco |160530.9-232838 |M | 12.5 | 17. | |p |40429. | | 223.0 |10 |Me |09565 UCAC2| +730865 |V0865 Sco |160604.3-255230 |RRAB | 13.5 | 14.5 | |p |40651.467 | | 0.55177 |20 | |09565 09565| +730866 |V0866 Sco *|161131.3-183826 |INT | 12.05 |( 0.5 )| |V | | | | |cont+e(T) |06415 06415| +730867 |V0867 Sco |161617.3-284443 |EA/SD | 12.3 | 14.5 | |p |39297.347 | | 3.32613 | | |09565 05234| +730868 |V0868 Sco |162054.2-090711 |SRB | 14.0 | 14.6 | |p | | | 50. : | | |05692 05692| +730869 |V0869 Sco |162409.3-282222 |SR: | 11.6 | 13.4 | |p | | | | | |09660 00294| +730870 |V0870 Sco *|165426.1-415603 | | 12.46 | 12.73 | |V | | | | |F5Ia |09661 06629| +730871 |V0871 Sco |175503.0-383246 |RR | 14.5 | 15.3 | |p | | | | | |00248 06286| +730872 |V0872 Sco |161045.0-163604 |M: | 13. |< 16. | |p | | | | |Me |06888 07594| +730873 |V0873 Sco |161103.4-253931 |M | 12.9 |< 15.5 | |p |40365. | | 247.34 | |Me |09565 05690| +730874 |V0874 Sco |161307.9-354133 |M | 12.5 | 15.2 | |p | | | | |Me |04453 UCAC2| +730875 |V0875 Sco |161640.9-295334 |M | 13.1 |< 16. | |p | | | | |Me |04001 04001| +730876 |V0876 Sco |161751.9-230220 |INS | 14.0 | 15.0 | |p | | | | |ea |09447 06889| +730877 |V0877 Sco *|163341.9-252334 |EB | 12.4 | 13.3 | 13.1 |p |40359.381 | | 4.58776 | | |09565 05690| +730878 |V0878 Sco |163446.3-260632 |INS: | 13.3 | 14.0 | |p | | | | |ea |09447 06889| +730879 |V0879 Sco |163649.8-251635 |M | 13.8 |< 17.2 | |B |43284. | | 216. | |Me |09663 06889| +730880 |V0880 Sco |164114.4-340733 |M | 11. | 15. | |p | | | | |Me |02935 CoD | +730881 |V0881 Sco |164208.1-334601 |E | 8.8 |( 0.4 )| |p |28772.350 | | 2.491600 | |A0 |06871 06871| +730882 |V0882 Sco |164530.4-264331 |SR: | 13.6 | 15.5 | |p | | | | |Me |04001 04001| +730883 |V0883 Sco *|165752.5-375948 |EB/KE | 7.34 | 7.66 | |V |43285.794 | | 1.29484 | |B2.5Vn |00001 06871| +730884 |V0884 Sco *|170356.8-375039 |ELL+X | 6.51 | 6.60 | 6.57 |V |42476.6801 | | 3.41168 | |O5.5-O6.5Iaf |09664 09665| +730885 |V0885 Sco *|174759.0-373824 |E/DM | 8.6 |( 0.3 )| |p |28786.300 | | 3.119975 | |B2V |06871 06871| +730886 |V0886 Sco |162359.2-255902 |UV | 13.8 |< 18.5 | |U | | | | | |07482 09666| +730887 |V0887 Sco |162521.5-262408 |UV | 14.5 |< 18. | |U | | | | | |07482 09666| +730888 |V0888 Sco |162604.3-245752 |UVN | 13.8 | 15.8 | |U | | | | |K |09666 09666| +730889 |V0889 Sco *|165137.2-445746 |E | 11.35 | 12.37 | |V |28673.0 | | 12.5127 | | |06871 06871| +730890 |V0890 Sco *|161329.3-322029 |L | 10.5 | 11.4 | |p | | | | |M7 |07790 CoD | +730891 |V0891 Sco |161345.9-230029 |INS | 12.5 | 14.5 | |p | | | | | |09447 07791| +730892 |V0892 Sco |161414.7-225927 |INS: | 13.8 | 14.9 | |p | | | | |ea |09447 09946| +730893 |V0893 Sco |161515.0-283732 |UG: | 10.6 | 14.5 | |p | | | | | |09447 UCAC2| +730894 |V0894 Sco *|161447.1-153931 |LB | 9.5 | | |V | | | | |Me |07594 07594| +730895 |V0895 Sco |162134.7-261227 |INT | 13.0 | 14.5 | |p | | | | |cont+e(T) |09447 06415| +730896 |V0896 Sco *|162538.5-261354 |INS | 12.0 | 13.7 | |p | | | | | |09447 05690| +730897 |V0897 Sco |162956.4-312202 |SR | 15. | 17. | |p | | | | | |04001 04001| +730898 |V0898 Sco |163244.2-271747 |SRA | 13.1 | 15.5 | |p |41505. | | 140.8 |50 : |M0e |00001 05690| +730899 |V0899 Sco |163411.3-314532 |SR: | 15.5 | 17. | |p | | | | | |04001 04001| +730900 |V0900 Sco *|165358.9-415940 |ELL: | 6.29 | 6.34 | |V |42469.86 | | 2.63 | |B0.5Iae |08222 CoD | +730901 |V0901 Sco |170245.9-324332 |SR: | 13.6 | 15.8 | |p | | | | |Ce(Ne) |04488 | +730902 |V0902 Sco |172608.4-390400 |N: | 11. | 17. | |p |33058. |1949 | | |ea |07795 07795| +730903 |V0903 Sco *|172731.3-310722 |LB | 12.1 | 12.7 | |p | | | | |M6 |02448 02448| +730904 |V0904 Sco |172956.7-410324 |E | 10. |( 0.4 )| |p |14862.588 | | 2.533993 | |A0 |08040 06561| +730905 |V0905 Sco |174159.0-333014 |ACYG: | 6.49 | 6.67 | |V | | | | |A2Ia-0pe |07887 CoD | +730906 |V0906 Sco *|175354.8-344510 |EA/DM | 5.96 | 6.23 | 6.21 |V |39649.8190 | | 2.785847 |13 *|B9V+B9V |09748 07798| +730907 |V0907 Sco *|175655.6-344501 |EA/DM | 8.61 | 9.2 | 9.2 |V |14862.585 | | 3.776277 | |A0 |09749 CoD | +730908 |V0908 Sco |160901.9-390513 |INT | 14.61 | 14.98 | |V | | | | |M2ea(T) |07923 07923| +730909 |V0909 Sco |163204.4-313205 | | 14. |< 16. | |p | | | | | |07897 07897| +730910 |V0910 Sco |163354.8-303929 | | 14. |< 16. | |p | | | | | |02935 2MASS| +730911 |V0911 Sco *|165227.4-404323 |ACV | 6.32 | 6.38 | |V | | | 1.85 | |B9p(Si) |07924 CoD | +730912 |V0912 Sco |165926.2-445027 |LB | 12.2 | 13.5 | |p | | | | |Me |02935 USNO | +730913 |V0913 Sco *|155834.9-244953 |SXARI | 5.40 | 5.47 | |V | | | 0.492 | |B4IV-Vp(He weak) |09750 CoD | +730914 |V0914 Sco *|165648.6-390538 |UV+BY | 12.4 | 14.0 | |U | | | | |M3Ve+M4Ve |09752 09751| +730915 |V0915 Sco *|171427.6-394600 | | 6.22 | 6.64 | |V | | | | |G5Ia |09754 CoD | +730916 |V0916 Sco |174354.7-360333 |ZAND | 14. | | |p | | | | |pec(e) |09755 09755| +730917 |V0917 Sco *|174804.3-360817 |SDOR: | 13.9 | 17.4 | |B | | | | |OBea |09757 09757| +730918 |V0918 Sco |163622.6-425132 |ELL | 5.42 | 5.50 | |V | | | 9.813 | |O8.5I+O7III(f) |08530 CoD | +730919 |V0919 Sco *|165219.3-415116 |WR | 6.45 | 6.61 | |V | | | 2. : | |WN7+O-B1I |04326 CoD | +730920 |V0920 Sco *|165443.2-414936 |BCEP | 9.85 |( 0.043 )| |B | | | 0.10120 | |B1V(n) |09948 09949| +730921 |V0921 Sco *|165906.8-424209 |GCAS | 11.43 |( 0.30 )| |V | | | | |Bep |08535 04349| +730922 |V0922 Sco *|170253.8-382737 |DSCTC | 7.45 |( 0.10 )| |B | | | 0.05 | |A1IV |04355 CoD | +730923 |V0923 Sco *|170350.9-380909 |EA/D | 5.86 | 6.24 | |V |41903.691 | | 34.8269 | |F3IV-V+F3V |08537 CoD | +730924 |V0924 Sco *|173021.7-334530 |ACYG | 10.11 | 10.35 | |V | | | | |A2Iaeq |04386 04386| +730925 |V0925 Sco *|173556.4-332557 |SRD | 8.35 | 8.53 | |V | | | | |G0Ia |04388 09951| +730926 |V0926 Sco *|173858.2-442700 |XB | 17.40 |( 0.2 )| |V | | | 0.18 | |pec(e) |04393 01364| +730927 |V0927 Sco *|155439.5-251438 |SXARI | 5.8 |( 0.03 )| |V |44256.572 | | 1.45937 | |B8IIIp(He weak) |08054 CoD | +730928 |V0928 Sco |155748.8-233138 |ACV | 6.74 | 6.76 | |V | | | | | |67248 CoD | +730929 |V0929 Sco |160606.4-233623 |SXARI | 5.89 | 5.91 | |V | | | | | |67248 CoD | +730930 |V0930 Sco |160956.1-235116 |INS | 13.9 | 15.0 | |p | | | | | |67089 67090| +730931 |V0931 Sco |161146.0-253201 |IN | 13.6 |< 15.5 | |p | | | | | |67089 67090| +730932 |V0932 Sco |161847.4-284511 |IN | 12.3 |< 15.5 | |p | | | | | |67089 67090| +730933 |V0933 Sco |162005.5-200323 |ACV | 7.37 |( 0.045 )| |V | | | | | |67072 BD | +730934 |V0934 Sco |162117.9-264015 |IN | 13.8 |< 15.5 | |p | | | | | |67268 67267| +730935 |V0935 Sco |162218.5-232148 |INS | 13.6 | 15.2 | |p | | | | | |67089 67279| +730936 |V0936 Sco |162539.1-292402 |ACV | 7.63 | 7.71 | |V | | | | | |67065 CoD | +730937 |V0937 Sco |162723. -245340:|INS | 14.5 |< 15.5 | |p | | | | | |67089 67088| +730938 |V0938 Sco |163005.1-262346 |INS | 14.0 |< 15.5 | |p | | | | | |67089 67090| +730939 |V0939 Sco |163200.6-253029 |INS | 13.6 | 14.8 | |p | | | | | |67089 67088| +730940 |V0940 Sco |163201.6-253025 |INS | 13.6 | 14.7 | |p | | | | | |67089 67088| +730941 |V0941 Sco |163217.3-253141 |INS | 13.6 | 14.6 | |p | | | | | |67089 67088| +730942 |V0942 Sco |163247.9-271743 |INS | 12.8 | 14.0 | |p | | | | | |67089 67279| +730943 |V0943 Sco |163601.0-250719 |INS | 13.5 | 15.0 | |p | | | | | |67089 67267| +730944 |V0944 Sco |163549.5-251747 |INS | 10.2 | 11.4 | |p | | | | | |67089 67267| +730945 |V0945 Sco |165354.5-415215 |BCEP | 9.83 |( 0.02 )| |B | | | | | |67281 67282| +730946 |V0946 Sco |165401.8-415112 |BCEP | 10.45 |( 0.06 )| |B | | | | | |67281 67282| +730947 |V0947 Sco |165436.0-415338 |BCEP | 10.16 |( 0.04 )| |B | | | | | |67281 67282| +730948 |V0948 Sco |170415.6-380306 |ACV | 9.34 | 9.36 | |V | | | | | |67248 CoD | +730949 |V0949 Sco |173224.6-341646 |DSCTC | 6.13 |( 0.05 )| |V | | | | | |67284 CoD | +730950 |V0950 Sco |173737.6-404849 |DCEPS | 7.07 | 7.40 | |V | | | | | |67287 CoD | +730951 |V0951 Sco |175358.1-344952 |ACV | 6.39 | 6.44 | |V | | | | | |67072 CoD | +730952 |V0952 Sco |161015.9-265433 |ACV | 6.57 |( 0.04 )| |V | | | | | |68222 CoD | +730953 |V0953 Sco |162009.8-255126 |ACV | 9.2 |( 0.04 )| |V | | | | | |68222 CoD | +730954 |V0954 Sco |163853.9-440926 |EB/KE | 7.49 | 7.75 | |V | | | | | |68332 68224| +730955 |V0955 Sco |163931.6-271708 |ACV | 8.65 |( 0.04 )| |V | | | | | |68222 CoD | +730956 |V0956 Sco |170705.2-354532 |GCAS | 8.0 | 8.6 | |p | | | | | |68225 68225| +730957 |V0957 Sco |175213.7-344757 |SXARI | 5.87 |( 0.05 )| |V | | | | | |68187 CoD | +730958 |V0958 Sco |175316.0-343715 |ACV | 6.95 |( 0.05 )| |V | | | | | |68187 CoD | +730959 |V0959 Sco |175323.4-350101 |ACV | 7.25 |( 0.14 )| |V | | | | | |68187 CoD | +730960 |V0960 Sco |175634.3-314936 |N | 10.5 |< 17. | |V | | | | | |68340 68340| +730961 |V0961 Sco |162049.3-252339 |ACV | 10.17 | 10.25 | |U | | | | | |69056 CoD | +730962 |V0962 Sco |165339.1-414748 |BE | 10.01 |( 0.05 )| |B | | | | | |69249 69250| +730963 |V0963 Sco |165414.2-415501 |BCEP: | 10.7 |( 0.014 )| |B | | | | | |69249 69250| +730964 |V0964 Sco |165418.3-415136 |BCEP | 9.86 |( 0.02 )| |B | | | | | |69249 69250| +730965 |V0965 Sco |173033.4-333916 |RS | 8.46 | 8.67 | |V | | | | | |69252 CoD | +730966 |V0966 Sco |173540.1-443401 |L | 16.0 | 16.8 | |B | | | | | |69253 UCAC2| +730967 |V0967 Sco |173541.1-443547 |E | 16.8 | 17.3 | |B | | | | | |69253 USNO | +730968 |V0968 Sco |173650.6-445101 |RRAB | 16.1 | 17.5 | |B | | | | | |69253 69253| +730969 |V0969 Sco |173704.5-444438 |RRAB | 15.7 | 17.1 | |B | | | | | |69253 69253| +730970 |V0970 Sco |173941.2-321758 |ACV: | 9.52 | 9.56 | |U | | | | | |69056 CoD | +730971 |V0971 Sco |174012.6-320933 |ACV | 10.19 | 10.24 | |U | | | | | |69056 CoD | +730972 |V0972 Sco |162322.9-262216 |DSCT | 9.52 | 9.69 | |V | | | | | |70103 70171| +730973 |V0973 Sco |165133.7-411350 |ACYG | 5.22 | 5.28 | |V | | | | | |70077 CoD | +730974 |V0974 Sco |170409.3-374603 |ACV | 8.80 |( 0.07 )| |V | | | | | |70104 70164| +730975 |V0975 Sco |172239.2-374817 |ACYG | 6.27 | 6.35 | |V | | | | | |70077 CoD | +730976 |V0976 Sco |174009.4-321214 |DSCT | 11.51 | 11.68 | |V | | | | | |70105 70106| +730977 |V0977 Sco |175150.4-323158 |N | 10.0 |< 19. | |V | | | | | |70107 2MASS| +730978 |V0978 Sco |162630.2-384933 |L: | 16.2 |< 19.6 | |B | | | | | |71141 71141| +730979 |V0979 Sco |162639.5-391231 |L: | 18.4 |< 19.6 | |B | | | | | |71141 71141| +730980 |V0980 Sco |162802.5-390853 |RRAB | 17.8 | 19.4 | |B | | | | | |71141 71141| +730981 |V0981 Sco |162805.5-383750 |E: | 18.2 | 18.6 | |B | | | | | |71141 71141| +730982 |V0982 Sco |162814.0-390858 |E: | 19.0 | 19.8 : | |B | | | | | |71141 71141| +730983 |V0983 Sco |162845.5-390401 |L: | 16.5 |< 19.6 | |B | | | | | |71141 71141| +730984 |V0984 Sco |163308.8-360912 |M | 7.66 | 8.74 | |J | | | | | |71144 2MASS| +730985 |V0985 Sco |164044.6-353729 |M | 8.45 | 9.67 | |J | | | | | |71144 USNO | +730986 |V0986 Sco |164711.3-331756 |M | 10.62 | 12.46 | |J | | | | | |71144 2MASS| +730987 |V0987 Sco |164848.5-330101 |M | 9.09 | 10.44 | |J | | | | | |71144 2MASS| +730988 |V0988 Sco |165404.6-312543 |M | 9.46 | 13.19 | |J | | | | | |71144 2MASS| +730989 |V0989 Sco |165657.0-311641 |M | 7.89 | 9.57 | |J | | | | | |71144 GSC22| +730990 |V0990 Sco |165810.7-305824 |M | 8.03 | 9.23 | |J | | | | | |71144 GSC22| +730991 |V0991 Sco |170629.1-374927 |RS: | 9.67 | 9.76 | |V | | | | | |71007 CoD | +730992 |V0992 Sco |170717.5-431522 |NA | 7.26 | 18. : | |V | | | | | |71145 71146| +730993 |V0993 Sco |173709.9-452121 |M | 7.94 | 9.99 | |J | | | | | |71144 GSC22| +730994 |V0994 Sco |173937.6-321913 |BCEP | 7.10 | 7.22 | |V | | | | | |71123 71153| +730995 |V0995 Sco |174829.3-424322 |M | 6.47 | 8.62 | |J | | | | | |71144 GSC22| +730996 |V0996 Sco |175416.6-401117 |M | 9.04 | 10.31 | |J | | | | | |71144 GSC22| +730997 |V0997 Sco |175424.9-395708 |M | 7.95 | 9.33 | |J | | | | | |71144 GSC22| +730998 |V0998 Sco |175556.7-400704 |M | 8.54 | 9.89 | |J | | | | | |71144 USNO | +730999 |V0999 Sco |175652.0-391110 |M | 8.90 | 10.64 | |J | | | | | |71144 2MASS| +731000 |V1000 Sco |161108.9-190447 |INT | 11.90 | 12.06 | |V | | | | | |72063 72151| +731001 |V1001 Sco |161159.3-190653 |INT | 11.61 | 11.70 | |V | | | | | |72063 72151| +731002 |V1002 Sco |161240.5-185928 |INT | 10.74 | 10.93 | |V | | | | | |72063 72151| +731003 |V1003 Sco |163826.3-432354 |ELL: | 5.83 |( 0.03 )| |V | | | | | |72099 CoD | +731004 |V1004 Sco |164508.9-450337 |M | 8.25 |( 1.39 )| |K | | | | | |72036 2MASS| +731005 |V1005 Sco |165102.2-442329 |M | 7.92 |( 1.46 )| |H | | | | | |72036 GSC22| +731006 |V1006 Sco |165304.9-433247 |SR | 7.80 | 10.40 | |J | | | | | |72036 2MASS| +731007 |V1007 Sco |165410.1-414930 |EB | 6.06 |( 0.24 )| |V | | | | | |72041 CoD | +731008 |V1008 Sco |170356.0-412401 |M | 3.00 | 5.85 | |L'| | | | | |72036 2MASS| +731009 |V1009 Sco |170717.9-403045 |SR | 3.52 | 5.10 | |L'| | | | | |72036 2MASS| +731010 |V1010 Sco |171053.7-422900 |M | 9.11 |( 1.43 )| |H | | | | | |72036 2MASS| +731011 |V1011 Sco |171052.4-395850 |M | 7.53 |( 2.72 )| |J | | | | | |72036 2MASS| +731012 |V1012 Sco |171522.3-381247 |EB | 6.76 | 6.83 | |b | | | | | |72040 CoD | +731013 |V1013 Sco |171616.1-375207 |SR | 8.34 |( 1.64 )| |K | | | | | |72036 USNO | +731014 |V1014 Sco |171752.8-374908 |M | 10.83 |( 1.61 )| |J | | | | | |72036 2MASS| +731015 |V1015 Sco |171929.2-372136 |SR | 10.47 |( 2.68 )| |H | | | | | |72036 2MASS| +731016 |V1016 Sco |173027.6-342745 |SR | 9.44 |( 2.79 )| |K | | | | | |72036 2MASS| +731017 |V1017 Sco |173030.7-343221 |RS: | 8.23 | 8.27 | |V | | | | | |72152 CoD | +731018 |V1018 Sco |173502.7-333330 |SR | 2.42 | 4.70 | |L'| | | | | |72036 2MASS| +731019 |V1019 Sco |173914.9-301424 |SR | 8.11 |( 3.39 )| |J | | | | | |72036 2MASS| +731020 |V1020 Sco |174756. -354406:|UV | 16.0 | 18.5 | |B | | | | | |72153 72153| +731021 |V1021 Sco |175010. -355014:|UV | 16.0 | 18.0 | |B | | | | | |72153 72153| +731022 |V1022 Sco |175122. -351309:|UV | 15.5 | 18.0 | |B | | | | | |72153 72153| +731023 |V1023 Sco |175231. -360746:|UV | 16.7 | 18.1 | |B | | | | | |72153 72153| +731024 |V1024 Sco |175354. -361510:|UV | 15.9 | 17.7 | |B | | | | | |72153 72153| +731025 |V1025 Sco |175531. -362609:|UV | 15.7 | 17.2 | |B | | | | | |72153 72153| +731026 |V1026 Sco |155640.0-220140 |IA | 8.85 | 9.83 | |T | | | | | |73157 BD | +731027 |V1027 Sco |160834.6-390534 |ACV: | 6.60 | 6.67 | |V | | | | | |73297 CoD | +731028 |V1028 Sco |162729.7-291718 |ACV | 7.00 |( 0.01 )| |V | | | | | |73298 CoD | +731029 |V1029 Sco |162824.3-251404 |UV | 15.0 | 18.0 | |U | | | | | |73299 73299| +731030 |V1030 Sco |162844.6-255459 |UV | 15.6 |< 18. | |U | | | | | |73209 73209| +731031 |V1031 Sco |163614.4-261813 |UV | 12.0 |< 18. | |U | | | | | |73209 73209| +731032 |V1032 Sco |165358.6-414842 |BCEP | 9.90 |( 0.02 )| |B | | | | | |73300 73300| +731033 |V1033 Sco |165400.2-395045 |XND+E: | 14.0 | 17.3 | |V | | | | | |73301 73301| +731034 |V1034 Sco |165419.8-415009 |EA | 8.12 | 8.43 | |V | | | | | |73300 73300| +731035 |V1035 Sco |171823.1-342431 |WR | 9.27 |( 0.03 )| |V | | | | | |73303 CoD | +731036 |V1036 Sco |173442.5-323454 |ELL | 5.71 | 5.79 | |V | | | | | |73304 CoD | +731037 |V1037 Sco |173758.5-352304 |PVTEL: | 9.62 | 9.83 | |V | | | | | |73305 CoD | +731038 |V1038 Sco |175206.8-421406 |M | 8.06 | 9.57 | |J | | | | | |73116 GSC22| +731039 |V1039 Sco |154737.7-220521 |SRD: | 11.01 | 11.44 | |Hp| | | | | |HIP HIP | +731040 |V1040 Sco |155355.9-235841 |BCEP: | 5.39 | 5.42 | |Hp| | | | | |HIP HIP | +731041 |V1041 Sco |160151.5-282226 |EA | 8.94 | 9.26 | |Hp| | | | | |HIP HIP | +731042 |V1042 Sco |160200.4-111733 |LB | 9.18 | 9.38 | |Hp| | | | | |HIP HIP | +731043 |V1043 Sco |160229.1-260853 |SRB | 7.45 | 7.58 | |Hp| | | | | |HIP HIP | +731044 |V1044 Sco |160402.9-215540 |E: | 8.76 | 8.96 | |Hp| | | | | |HIP HIP | +731045 |V1045 Sco |160607.6-135327 |LB: | 8.08 | 8.19 | |Hp| | | | | |HIP HIP | +731046 |V1046 Sco |160639.0-262502 |E | 9.34 | 9.70 | |Hp| | | | | |HIP HIP | +731047 |V1047 Sco |160835.8-204827 |I: | 11.17 | 11.53 | |Hp| | | | | |HIP HIP | +731048 |V1048 Sco |160921.9-354412 |LB: | 9.05 | 9.15 | |Hp| | | | | |HIP HIP | +731049 |V1049 Sco |161023.4-291700 |LB | 7.96 | 8.08 | |Hp| | | | | |HIP HIP | +731050 |V1050 Sco |161312.3-341825 |SRB | 7.38 | 7.49 | |Hp| | | | | |HIP HIP | +731051 |V1051 Sco |161345.5-242520 |SXARI | 6.40 | 6.43 | |Hp| | | | | |HIP HIP | +731052 |V1052 Sco |161646.0-082547 |LB: | 8.62 | 8.73 | |Hp| | | | | |HIP HIP | +731053 |V1053 Sco |161952.0-143835 |LB: | 8.03 | 8.16 | |Hp| | | | | |HIP HIP | +731054 |V1054 Sco |162028.2-125440 |E: | 6.63 | 6.71 | |Hp| | | | | |HIP HIP | +731055 |V1055 Sco |162726.2-372837 |EW | 8.65 | 8.92 | |Hp| | | | | |HIP HIP | +731056 |V1056 Sco |162752.3-354700 |BY: | 9.47 | 9.55 | |Hp| | | | | |HIP HIP | +731057 |V1057 Sco |162846.2-354124 |SRB | 7.62 | 7.85 | |Hp| | | | | |HIP HIP | +731058 |V1058 Sco |163141.8-414902 |ACYG | 5.36 | 5.42 | |Hp| | | | | |HIP HIP | +731059 |V1059 Sco |163548.7-420722 |BE | 9.37 | 9.64 | |Hp| | | | | |HIP HIP | +731060 |V1060 Sco |163641.0-320633 |DSCTC | 8.88 | 8.92 | |Hp| | | | | |HIP HIP | +731061 |V1061 Sco |163740.1-425705 |LB | 8.03 | 8.23 | |Hp| | | | | |HIP HIP | +731062 |V1062 Sco |163830.9-390908 |ACV | 6.92 | 6.98 | |Hp| | | | | |HIP HIP | +731063 |V1063 Sco |164042.5-410737 |GCAS | 7.87 | 8.06 | |Hp| | | | | |HIP HIP | +731064 |V1064 Sco |164124.8-420338 |LB: | 7.60 | 7.70 | |Hp| | | | | |HIP HIP | +731065 |V1065 Sco |164300.6-384021 |ACV | 7.69 | 7.75 | |Hp| | | | | |HIP HIP | +731066 |V1066 Sco |164358.4-363821 |LB: | 9.07 | 9.20 | |Hp| | | | | |HIP HIP | +731067 |V1067 Sco |165059.1-264652 |E: | 10.37 | 10.77 | |Hp| | | | | |HIP HIP | +731068 |V1068 Sco |165342.4-430304 |LB | 5.71 | 5.96 | |Hp| | | | | |HIP HIP | +731069 |V1069 Sco |165531.0-392759 |EA: | 8.54 | 8.79 | |Hp| | | | | |HIP HIP | +731070 |V1070 Sco |165552.3-312811 |LPB | 7.65 | 7.70 | |Hp| | | | | |HIP HIP | +731071 |V1071 Sco |165750.2-390657 |SRB | 6.54 | 6.64 | |Hp| | | | | |HIP HIP | +731072 |V1072 Sco |170322.2-400516 |DSCTC | 7.42 | 7.47 | |Hp| | | | | |HIP HIP | +731073 |V1073 Sco |170449.4-340723 |ACYG: | 4.89 | 4.95 | |Hp| | | | | |HIP HIP | +731074 |V1074 Sco |170628.4-352704 |ACYG: | 6.23 | 6.26 | |Hp| | | | | |HIP HIP | +731075 |V1075 Sco |171519.3-333254 |BE: | 5.57 | 5.64 | |Hp| | | | | |HIP HIP | +731076 |V1076 Sco |171617.6-422021 |BE | 6.76 | 6.84 | |Hp| | | | | |HIP HIP | +731077 |V1077 Sco |171820.5-323311 |BE | 6.36 | 6.44 | |Hp| | | | | |HIP HIP | +731078 |V1078 Sco |171924.1-380013 |BE | 7.78 | 7.97 | |Hp| | | | | |HIP HIP | +731079 |V1079 Sco |172046.2-402318 |LB | 8.98 | 9.62 | |Hp| | | | | |HIP HIP | +731080 |V1080 Sco |172241.9-381208 |IA: | 7.65 | 7.78 | |Hp| | | | | |HIP HIP | +731081 |V1081 Sco |172912.9-313203 |EA | 6.97 | 7.12 | |Hp| | | | | |HIP HIP | +731082 |V1082 Sco |173627.4-332936 |E: | 10.09 | 10.53 | |Hp| | | | | |HIP HIP | +731083 |V1083 Sco |173730.9-351959 |BE | 8.15 | 8.36 | |Hp| | | | | |HIP HIP | +731084 |V1084 Sco |173757.4-391123 |EW: | 9.07 | 9.18 | |Hp| | | | | |HIP HIP | +731085 |V1085 Sco |173937.8-361541 |LB: | 8.99 | 9.20 | |Hp| | | | | |HIP HIP | +731086 |V1086 Sco |174335.2-323946 |LB | 6.44 | 6.67 | |Hp| | | | | |HIP HIP | +731087 |V1087 Sco |174911.0-331501 |LB | 8.65 | 8.84 | |Hp| | | | | |HIP HIP | +731088 |V1088 Sco |174944.9-423619 |LB | 8.01 | 8.18 | |Hp| | | | | |HIP HIP | +731089 |V1089 Sco |174946.9-412633 |ACV | 7.52 | 7.57 | |Hp| | | | | |HIP HIP | +731090 |V1090 Sco |175015.2-412630 |E: | 8.30 | 8.45 | |Hp| | | | | |HIP HIP | +731091 |V1091 Sco |175330.0-363031 |ACV | 7.95 | 8.01 | |Hp| | | | | |HIP HIP | +731092 |V1092 Sco |175710.4-415842 |LPB | 6.69 | 6.74 | |Hp| | | | | |HIP HIP | +731093 |V1093 Sco |160827.8-390041 |IT | 14.6 |( 0.48 )| |V | | | | | |75163 75164| +731094 |V1094 Sco |160836.2-392303 |EB | 12.5 |( 0.50 )| |V | | | | | |75163 75164| +731095 |V1095 Sco |160939.5-385507 |IT | 11.5 |( 0.13 )| |V | | | | | |75163 75164| +731096 |V1096 Sco |161004.8-401612 |IT | 11.1 |( 0.10 )| |V | | | | | |75163 75164| +731097 |V1097 Sco |161302.4-400433 |IT | 13.1 |( 0.13 )| |V | | | | | |75163 75164| +731098 |V1098 Sco |161407.9-193829 |INT | 11.20 | 12.05 | |V | | | | | |75086 UCAC2| +731099 |V1099 Sco |162329.6-395801 |IT | 11.0 |( 0.12 )| |V | | | | | |75163 75164| +731100 |V1100 Sco |162316.4-295603 |M | 12.0 |< 15.1 | |p | | | | | |75002 UCAC2| +731101 |V1101 Sco |170544.5-362523 |XI | 18.3 | 19.3 | |V | | | | | |75238 75239| +731102 |V1102 Sco |170545.0-362458 |M: | 17.31 |< 20. | |V | | | | | |75239 75240| +731103 |V1103 Sco |170549.4-362603 |EW | 19.7 | 20.45 | |V | | | | | |75241 75241| +731104 |V1104 Sco |170653.9-423640 |GCAS: | 8.96 | 9.14 | |V | | | | | |75242 CoD | +731105 |V1105 Sco |171701.1-320615 |M | 15.2 | 17.2 | |R | | | | | |75183 75184| +731106 |V1106 Sco |171716.1-301858 |M | 15.4 | 18.8 | |R | | | | | |75183 75184| +731107 |V1107 Sco |171730.1-302401 |M | 14.3 | 17.2 | |R | | | | | |75183 75184| +731108 |V1108 Sco |171731.9-301406 |M | 14.3 | 17.1 | |R | | | | | |75183 75184| +731109 |V1109 Sco |171754.9-301106 |M | 12.5 | 16.8 | |R | | | | | |75183 75184| +731110 |V1110 Sco |171851.8-305645 |M | 13.9 | 15.6 | |R | | | | | |75183 75184| +731111 |V1111 Sco |171918.9-303634 |M | 15.0 | 17.2 | |R | | | | | |75183 75184| +731112 |V1112 Sco |171923.7-305428 |M | 14.1 | 16.9 | |R | | | | | |75183 75184| +731113 |V1113 Sco |171939.4-304720 |M | 14.5 | 17.2 | |R | | | | | |75183 75184| +731114 |V1114 Sco |171940.3-305412 |M | 13.8 | 17.3 | |R | | | | | |75183 75184| +731115 |V1115 Sco |172011.9-310107 |M | 15.3 | 17.3 | |R | | | | | |75183 75184| +731116 |V1116 Sco |172026.3-303647 |M | 13.6 | 17.3 | |R | | | | | |75183 75184| +731117 |V1117 Sco |172027.4-310219 |M | 15.8 | 17.3 | |R | | | | | |75183 75184| +731118 |V1118 Sco |172039.7-310722 |M | 15.9 | 17.3 | |R | | | | | |75183 75184| +731119 |V1119 Sco |172040.8-303240 |M | 15.0 | 17.3 | |R | | | | | |75183 75184| +731120 |V1120 Sco |172044.3-303439 |M | 15.4 | 17.3 | |R | | | | | |75183 75184| +731121 |V1121 Sco |172132.7-301358 |M | 15.8 | 17.2 | |R | | | | | |75183 75184| +731122 |V1122 Sco |172214.5-303409 |M | 14.5 | 17.3 | |R | | | | | |75183 75184| +731123 |V1123 Sco |172255.6-302654 |M | 15.9 | 17.2 | |R | | | | | |75183 75184| +731124 |V1124 Sco | | | | | | | | | | | | |=V2614 Oph +731125 |V1125 Sco |172327.7-315249 |SRA | 16.2 | 17.2 | |R | | | | | |75183 75184| +731126 |V1126 Sco |172359.9-305510 |SRA | 16.6 | 17.3 | |R | | | | | |75183 75184| +731127 |V1127 Sco |172623.4-302931 |M | 14.8 | 17.3 | |R | | | | | |75183 75184| +731128 |V1128 Sco |172712.1-304553 |M | 15.8 | 17.3 | |R | | | | | |75183 75184| +731129 |V1129 Sco |172712.2-300955 |SRA | 16.1 | 17.2 | |R | | | | | |75183 75184| +731130 |V1130 Sco |172728.1-304754 |M | 15.2 | 17.2 | |R | | | | | |75183 75184| +731131 |V1131 Sco |172759.4-301118 |M | 15.2 | 17.2 | |R | | | | | |75183 75184| +731132 |V1132 Sco |172939.9-302524 |M | 16.3 | 18.3 | |R | | | | | |75183 75184| +731133 |V1133 Sco |173004.5-302401 |M | 13.6 | 17.2 | |R | | | | | |75183 75184| +731134 |V1134 Sco |173006.8-314342 |M | 14.6 | 17.2 | |R | | | | | |75183 75184| +731135 |V1135 Sco |173023.8-300828 |M | 14.8 | 17.3 | |R | | | | | |75183 75184| +731136 |V1136 Sco |173117.8-301832 |M | 15.5 | 17.3 | |R | | | | | |75183 75184| +731137 |V1137 Sco |173242.2-301114 |M | 15.3 | 17.3 | |R | | | | | |75183 75184| +731138 |V1138 Sco |173305.1-302827 |M | 15.7 | 17.2 | |R | | | | | |75183 75184| +731139 |V1139 Sco |173519.2-305504 |M | 14.3 | 17.2 | |R | | | | | |75183 75184| +731140 |V1140 Sco |173526.3-311317 |M | 14.9 | 17.2 | |R | | | | | |75183 75184| +731141 |V1141 Sco |175411.2-300253 |NA | 8.5 |< 20. | |V | | | | | |75244 75245| +731142 |V1142 Sco |175525.0-310142 |NA | 6.9 |< 20. | |V | | | | | |75246 75311| +731143 |V1143 Sco |155122.9-214307 |SR: | 12.8 | 14.2 | |V | | | | | |76012 GSC | +731144 |V1144 Sco |155629.4-234819 |BY | 13.01 |( 0.09 )| |V | | | | | |76134 76135| +731145 |V1145 Sco |155655.0-232948 |BY | 15.45 |( 0.13 )| |V | | | | | |76134 76135| +731146 |V1146 Sco |155720.0-233850 |BY | 12.78 |( 0.06 )| |V | | | | | |76134 76135| +731147 |V1147 Sco |155725.8-235422 |BY: | 13.72 |( 0.15 )| |V | | | | | |76134 76135| +731148 |V1148 Sco |155734.3-232111 |BY | 13.62 |( 0.28 )| |V | | | | | |76134 76135| +731149 |V1149 Sco |155836.9-225715 |INT | 10.10 | 10.25 | |V | | | | | |76136 DM | +731150 |V1150 Sco |160000.0-222037 |BY: | 13.25 |( 0.27 )| |V | | | | | |76134 76135| +731151 |V1151 Sco |160105.2-222731 |BY | 13.74 |( 0.16 )| |V | | | | | |76134 76135| +731152 |V1152 Sco |160125.6-224040 |BY | 11.45 |( 0.14 )| |V | | | | | |76134 76135| +731153 |V1153 Sco |160208.4-225459 |BY | 14.09 |( 0.07 )| |V | | | | | |76134 76135| +731154 |V1154 Sco |160210.4-224128 |RS: | 11.32 |( 0.13 )| |V | | | | | |76134 76135| +731155 |V1155 Sco |160353.8-264837 |M: | 13.1 |< 14.7 | |V | | | | | |76138 UCAC2| +731156 |V1156 Sco |160447.8-193023 |BY | 11.16 |( 0.17 )| |V | | | | | |76134 76135| +731157 |V1157 Sco |161120.6-182054 |BY | 12.45 |( 0.16 )| |V | | | | | |76134 76135| +731158 |V1158 Sco |161421.1-184111 |M: | 13.3 |< 15.2 | |V | | | | | |76012 USNO | +731159 |V1159 Sco |161858.7-231631 |INT: | 12.60 | 13.40 | |V | | | | | |76136 UCAC2| +731160 |V1160 Sco |162052.1-315323 |M | 11.3 |< 14.7 | |V | | | | | |76012 UCAC2| +731161 |V1161 Sco |163246.0-394549 |M | 10.1 |< 13.9 | |V | | | | | |76141 GSC22| +731162 |V1162 Sco |164601.3-363307 |M: | 12.5 |< 14.3 | |V | | | | | |76142 USNO | +731163 |V1163 Sco |173337.1-361535 |M | 9.9 | 12.4 | |V | | | | | |76054 UCAC2| +731164 |V1164 Sco |173615.3-444407 |RRAB | 14.63 | 15.42 | |V | | | | | |76160 76160| +731165 |V1165 Sco |174950.0-370505 |RRAB | 15.8 | 17.0 | |V | | | | | |76163 76163| +731166 |V1166 Sco |175001.3-370625 |RRC: | 15.6 | 16.0 | |V | | | | | |76163 76163| +731167 |V1167 Sco |175018.8-370549 |EW | 17.8 | 18.4 | |V | | | | | |76163 76163| +731168 |V1168 Sco |175018.9-370809 |EA | 16.2 | 17.7 | |V | | | | | |76163 76163| +731169 |V1169 Sco |175034.5-370131 |EA: | 16.5 | 16.9 | |V | | | | | |76163 76163| +731170 |V1170 Sco |175041.5-370412 |EW | 15.2 | 15.55 : | |V | | | | | |76163 76163| +731171 |V1171 Sco |175423.4-305752 |SR: | 14.1 | 15.3 | |* | | | | | |76072 USNO | +731172 |V1172 Sco |175447.5-310126 |SR: | 12.3 | 14.3 | |* | | | | | |76072 76057| +731173 |V1173 Sco |175453.2-305734 |SR: | 13.5 | 14.8 | |* | | | | | |76072 GSC22| +731174 |V1174 Sco |175512.2-310113 |SR: | 11.7 | 13.7 | |* | | | | | |76072 76057| +731175 |V1175 Sco |175533.0-304633 |M: | 13.3 | 15.8 | |* | | | | | |76072 USNO | +731176 |V1176 Sco |175640.5-300425 |SR: | 11.8 | 12.6 | |* | | | | | |76057 GSC22| +731177 |V1177 Sco |175728.3-311530 |M: | 12.4 | 15.0 | |* | | | | | |76072 GSC22| +731178 |V1178 Sco |175706.9-322305 |NA | 10.2 |< 18. | |V | | | | | |77136 77137| +731179 |V1179 Sco |155356.7-275420 |M | 12.1 |< 15.3 | |V | | | | | |77004 UCAC2| +731180 |V1180 Sco |162118.3-341922 |M: | 12.6 |< 14.5 | |V | | | | | |77004 UCAC2| +731181 |V1181 Sco |163731.9-300603 |M: | 11.6 |< 14.2 | |V | | | | | |77004 UCAC2| +731182 |V1182 Sco |164933.5-333633 |SR: | 10.3 | 12.2 | |V | | | | | |77004 DM | +731183 |V1183 Sco |165832.7-331001 |M | 11.5 |< 13.8 | |V | | | | | |77004 2MASS| +731184 |V1184 Sco |173030.1-394011 |SR: | 9.6 | 10.8 | |V | | | | | |77004 DM | +731185 |V1185 Sco |174424.0-315536 |M | 3.41 | 4.47 | |L | | | | | |77081 2MASS| +731186 |V1186 Sco |171251.3-305638 |N | 9.6 |< 18. | |V |53196. |2004 | | |pec(Nova) |78205 78206| +731187 |V1187 Sco |172918.8-314602 |NA | 9.6 | 18. | |V |53224. |2004 | | |pec(Nova) |78212 78213| +731188 |V1188 Sco |174421.6-341636 |NA | 8.66 |< 17. | |V |53579. |2005 | | | |78139 | +731189 |V1189 Sco |160742.6-264508 |SRA | 11.2 | 13.2 | |V |53150 | | 192. | |Me |78090 GSC | +731190 |V1190 Sco |160829.7-390311 |INT | 16.42 | 16.93 | |V | | | | |K:e(T) |78184 78184| +731191 |V1191 Sco |160848.2-390419 |INB | 16.52 | 17.43 | |V | | | | |M6.5 |78184 78184| +731192 |V1192 Sco |160851.4-390531 |INT | 15.70 | 16.42 | |J | | | | |M5e(T) |78184 78184| +731193 |V1193 Sco |160851.6-390317 |INT: | 14.67 | 15.33 | |V | | | | |M4.5e(T) |78184 78184| +731194 |V1194 Sco |161221.2-274441 |SRA | 10.2 | 12.4 | |V |53100 | | 220. | | |78130 GSC | +731195 |V1195 Sco *|161923.0-405639 |EA | 8.86 | 9.04 | 9.01 |V |47963.349 | | 4.00305 | |B9IV |78011 DM | +731196 |V1196 Sco *|165120.4-260027 |SRA | 11.9 | 13.8 | |V |53300 | | 430. | |C(N)e |78130 GSC | +731197 |V1197 Sco |165124.6-282154 |M | 12.4 |< 16.0 | |R |52483 | | 555. : | | |78006 USNO | +731198 |V1198 Sco |165359.3-415304 |LPB: | 11.89 |( 0.05 )| |V | | | 0.606 | | |78195 GSC | +731199 |V1199 Sco |165401.9-415324 |DSCTC | 13.99 |( 0.04 )| |V | | | 0.064 : | | |78195 USNO | +731200 |V1200 Sco |165404.9-415646 |GDOR: | 15.71 |( 0.20 )| |V | | | 0.526 | | |78195 USNO | +731201 |V1201 Sco |165410.7-414747 |LPB: | 10.60 |( 0.03 )| |V | | | 0.714 | |B2IV-V |78195 GSC | +731202 |V1202 Sco |165412.9-415229 |GDOR: | 14.62 |( 0.04 )| |V | | | 0.909 : | | |78195 G2.3 | +731203 |V1203 Sco |165414.1-415358 |DSCTC | 14.69 |( 0.02 )| |V | | | 0.032 | | |78195 USNO | +731204 |V1204 Sco |165415.7-414932 |BCEP: | 10.17 |( 0.05 )| |V | | | 0.323 | | |78195 GSC | +731205 |V1205 Sco |165415.7-415140 |DSCTC | 13.45 |( 0.04 )| |V | | | 0.042 | |A5III: |78195 GSC | +731206 |V1206 Sco |165416.2-415026 |LPB: | 10.74 |( 0.03 )| |V | | | 2.5 : | |B1.5V |78195 GSC | +731207 |V1207 Sco |165420.6-414929 |BCEP: | 11.20 |( 0.04 )| |V | | | 0.189 | |B1V(n) |78195 GSC | +731208 |V1208 Sco |165421.3-415142 |E | 9.72 |( 0.15 )| |V |51740.6702 | | | |B0.5V |78195 GSC | +731209 |V1209 Sco |165429.3-415546 |DSCTC | 14.33 |( 0.02 )| |V | | | 0.024 | | |78195 GSC | +731210 |V1210 Sco |165429.8-415539 |GDOR: | 13.70 |( 0.01 )| |V | | | 0.278 | | |78195 GSC | +731211 |V1211 Sco |165430.0-415605 |GDOR: | 16.2 |( 0.25 )| |V | | | 0.83 | | |78195 USNO | +731212 |V1212 Sco *|165431.2-415529 |DSCTC | 10.3 |( 0.04 )| |V | | | 0.0896 | | |78189 DM | +731213 |V1213 Sco |165433.4-415632 |GDOR: | 15.03 |( 0.10 )| |V | | | 0.83 | | |78195 G2.2 | +731214 |V1214 Sco |165434.2-415449 |GDOR: | 15.12 |( 0.02 )| |V | | | | | |78195 G2.2 | +731215 |V1215 Sco |165435.6-415321 |GDOR: | 15.67 |( 0.02 )| |V | | | | | |78195 GSC | +731216 |V1216 Sco *|165457.7-435627 |EA | 10.09 | 10.52 | 10.35 |V |52481.518 | | 3.92070 | |B0.5V |78011 DM | +731217 |V1217 Sco |165609.9-403634 |DSCTC: | 13.3 |( 0.09 )| |B | | | 0.112 | |A7 |78197 78197| +731218 |V1218 Sco |165611.6-403529 |BCEP: | 10.4 |( 0.02 )| |B | | | 0.26 | |B5 |78197 78197| +731219 |V1219 Sco |165615.7-404044 |EA: | 14.1 |( 0.4 )| |B |52094.55 | | | | |78197 78197| +731220 |V1220 Sco |165619.6-403441 |EA | 14.2 |( 0.8 )| |B |52096.60 | | | |A1 |78197 78197| +731221 |V1221 Sco |165628.6-403328 |DSCT: | 12.5 |( 0.10 )| |B | | | 0.11 | |F5 |78197 78197| +731222 |V1222 Sco |165629.9-403224 |DSCT: | 14.2 |( 0.12 )| |B | | | 0.13 | |F3 |78197 78197| +731223 |V1223 Sco |165643.3-403625 |EA | 11.0 |( 0.22 )| |B |52468.5701 | | 1.9083 | |B1 |78197 78197| +731224 |V1224 Sco |165643.5-403256 |RS: | 16.1 |( 0.08 )| |B | | | 0.39 | |F: |78203 78197| +731225 |V1225 Sco *|165647.4-404728 |EW: | 10.16 | 10.25 | 10.25 |V | | | 0.7791625 : | | |78197 78197| +731226 |V1226 Sco |170225.0-364935 |EA | 10.59 | 10.78 | |V |52929.460 | | 2.08355 |11 |A0 |78011 DM | +731227 |V1227 Sco |170228.9-351457 |M: | 10.8 | 12.7 | |R | | | | | |78199 78199| +731228 |V1228 Sco |171959.0-314501 |XN | 16.7 |< 18. | |J |52659. |2003 | | | |78210 78210| +731229 |V1229 Sco *|172643.3-421356 |EB | 8.90 | 9.08 | 8.96 |V |47921.793 | | 1.859839 | |B4III |78011 DM | +731230 |V1230 Sco *|174534.6-340054 |M | 11.3 | 16.5 | |R | | | 450. : | | |78218 2MASS| +731231 |V1231 Sco |174802.7-352821 |EW | 15.42 | 15.61 | |I |50551.861 | | 0.403586 | | |78219 2MASS| +731232 |V1232 Sco |175046.0-300340 |EA: | 14.57 | 14.63 | |I |52114.7 :| | | | |78220 78220| +731233 |V1233 Sco |175055.4-301451 |EA | 13.89 | 14.02 | |I |52064.68849 | | 5.8534 |04 | |78220 78220| +731234 |V1234 Sco |175110.0-301646 |EA | 15.66 | 15.71 | |I |52061.14367 | | 1.6009 |06 | |78220 78220| +731235 |V1235 Sco |175114.6-300328 |EA | 14.71 | 14.79 | |I |52060.21812 | | 2.6188 |07 | |78220 78220| +731236 |V1236 Sco |175117.1-300301 |EA | 14.77 | 14.80 | |I |52074.19693 | | 7.22550 |03 | |78134 78134| +731237 |V1237 Sco |175124.3-301406 |EA | 14.17 | 14.20 | |I |52061.86463 | | 2.8131 |07 | |78220 78220| +731238 |V1238 Sco |175149.0-301325 |EP | 15.56 | 15.59 | |I |52060.22765 | | 1.1899 |11 | |78220 78220| +731239 |V1239 Sco |175215.5-301354 |EA | 15.60 | 15.63 | |I |52076.45988 | | 2.33590 |09 | |78134 78134| +731240 |V1240 Sco |175257.5-300533 |EA | 16.46 | 16.51 | |I |52074.73849 | | 8.16256 |03 | |78134 78134| +731241 |V1241 Sco |175309.8-300630 |EP: | 15.99 | 16.04 | |I |52077.59653 | | 2.90565 |03 | |78134 78134| +731242 |V1242 Sco |175424.5-310535 |SR: | 14.5 | 16.1 | |* | | | | | |78006 2MASS| +731243 |V1243 Sco |175437.7-305328 |M: | 13.6 | 16.9 | |* | | | | | |78006 2MASS| +731244 |V1244 Sco |175444.7-310540 |M | 12.7 |< 16.5 | |* | | | | | |78006 2MASS| +731245 |V1245 Sco |175444.7-305340 |M: | 13.0 |< 15.9 | |* | | | | | |78006 2MASS| +731246 |V1246 Sco |175448.3-310220 |M: | 11.8 | 14.7 | |* |52482 :| | | | |78006 2MASS| +731247 |V1247 Sco |175452.6-310249 |SR: | 13.2 | 15.6 | |* |52490 :| | | | |78006 2MASS| +731248 |V1248 Sco |175456.8-310226 |M: | 13.9 |< 16.5 | |* | | | | | |78006 2MASS| +731249 |V1249 Sco |175513.2-311452 |M: | 13.0 | 15.8 | |* | | | | | |78006 2MASS| +731250 |V1250 Sco |175518.0-310033 |SR: | 13.9 |< 16.0 | |* | | | | | |78006 2MASS| +731251 |V1251 Sco |175528.0-310425 |M: | 12.9 | 17.0 | |* | | | | | |78006 2MASS| +731252 |V1252 Sco |175531.5-310523 |M: | 11.9 | 15.0 | |* | | | | | |78006 2MASS| +731253 |V1253 Sco |175552.2-304839 |SR: | 15.5 |< 17.5 | |* | | | | | |78006 2MASS| +731254 |V1254 Sco |175553.0-310224 |SR: | 15.0 | 16.4 | |* | | | | | |78006 2MASS| +731255 |V1255 Sco |175553.9-311446 |SR: | 14.1 | 15.9 | |* | | | | | |78006 2MASS| +731256 |V1256 Sco |175554.0-311120 |SR: | 14.2 |< 16.1 | |* | | | | | |78006 2MASS| +731257 |V1257 Sco |175558.1-304710 |M: | 13.1 | 16.2 | |* | | | | | |78006 2MASS| +731258 |V1258 Sco |175605.1-311520 |SR: | 11.7 | 13.2 | |* | | | | | |78006 2MASS| +731259 |V1259 Sco |175624.0-311048 |M | 12.2 | 15.9 | |I |50929 | | 460. | | |78006 2MASS| +731260 |V1260 Sco |175633.5-304628 |SR: | 13.1 | 14.8 | |* | | | | | |78006 2MASS| +731261 |V1261 Sco |175637.1-305105 |SR | 11.5 | 12.2 | |I |50987 | | 145. | | |78006 2MASS| +731262 |V1262 Sco |175637.9-310046 |M | 11.7 | 15.7 | |I |50588 | | 363. | | |78006 2MASS| +731263 |V1263 Sco |175638.8-305318 |SRA | 12.1 | 14.0 | |I |51320 | | 207. | | |78006 2MASS| +731264 |V1264 Sco |175639.7-305928 |M: | 13.4 | 16.3 | |* | | | | | |78006 2MASS| +731265 |V1265 Sco |175644.3-310402 |M: | 11.6 | 13.2 | |I | | | 390. | | |78006 2MASS| +731266 |V1266 Sco |175644.3-304941 |M: | 14.3 | 17.0 | |* | | | | | |78006 2MASS| +731267 |V1267 Sco |175648.8-310149 |M: | 12.7 |< 15.6 | |* | | | | | |78006 2MASS| +731268 |V1268 Sco |175656.2-304513 |M | 11.7 | 17.0 | |I |51350 | | 310. : | | |78006 2MASS| +731269 |V1269 Sco |175658.3-305230 |M | 11.2 | 14.8 | |I |50685 | | 216. | | |78006 2MASS| +731270 |V1270 Sco *|175702.5-400716 |EA | 9.17 | 9.72 | 9.70 |V |52441.669 | | 4.24319 | |A0IV |78011 DM | +731271 |V1271 Sco |175708.3-300429 |SR: | 13.0 |< 14.4 | |* | | | | | |78006 2MASS| +731272 |V1272 Sco |175709.0-305823 |M | 11.5 | 14.2 | |I |51200 :| | 420. : | | |78006 2MASS| +731273 |V1273 Sco |175713.6-300617 |SR | 12.7 |< 14.4 | |* | | | | | |78006 2MASS| +731274 |V1274 Sco |175722.2-305458 |M: | 11.1 | 14.2 | |* | | | | | |78006 2MASS| +731275 |V1275 Sco |175725.4-304910 |M | 11.8 | 13.9 | |I | | | 390. : | | |78006 2MASS| +731276 |V1276 Sco |175735.4-310518 |M | 10.7 | 13.2 | |I |51070 | | 480. : | | |78006 2MASS| +731277 |V1277 Sco |175736.1-305952 |M: | 11.3 | 13.9 | |* | | | | | |78006 2MASS| +731278 |V1278 Sco |175746.5-312006 |M | 11.3 | 13.7 | |I |50585 | | 229. | | |78006 2MASS| +731279 |V1279 Sco *|160822.5-390447 |INT | 12.49 | 13.21 | |V | | | | |ea |07923 04068| +731280 |V1280 Sco |165741.2-322036 |NA | 3.8 |< 20. | |V |54148. |2007 | | |pec(Nova) |79194 79194| +731281 |V1281 Sco |165659.4-352150 |NA | 9.0 : |< 20. | |V |54154. :|2007 | | |pec(Nova) |79194 79194| +731282 |V1282 Sco |160704.9-291648 |EA | 13.4 | 14.5 : | 13.6 |V |52535.580 | | 2.1315 |15 : | |79009 USNO | +731283 |V1283 Sco |160817.0-170805 |EB | 8.58 | 8.68 | 8.61 |V |48510.607 | | 1.7587 | |A0V+K0III |79011 DM | +731284 |V1284 Sco |161338.8-412051 |EA | 9.54 | 9.72 | 9.71 |V |52722.863 | | 3.7297 |09 |B9III |79004 DM | +731285 |V1285 Sco |162102.6-305649 |EA | 13.45 | 15.0 : | 13.65 |V |52521.630 | | 3.35345 |11 | |79009 79063| +731286 |V1286 Sco *|162859.7-320734 |SR | 12.6 | 14.1 | |V | | | 127. | | |79006 GSC | +731287 |V1287 Sco |163652.9-280534 |CWB: | 13.2 | 13.9 | |V |53891.670 | | 1.95578 |21 : | |79064 GSC | +731288 |V1288 Sco |163700.0-451907 |EA | 8.17 | 8.51 | 8.26 |V |52040.789 | | 1.108897 |19 |B3III |79018 DM | +731289 |V1289 Sco |164734.7-293612 |CWA | 13.1 | 14.1 | |V |52309.55 | | 12.736 |24 | |79064 79206| +731290 |V1290 Sco |165001.4-413717 |EA | 7.96 | 8.07 | 8.01 |V |48704.307 | | 4.49244 |09 |O9.5IV |79006 DM | +731291 |V1291 Sco |165311.4-363807 |EA | 10.40 | 11.2 | 10.5 |V |51995.070 | | 50.007 |04 | |79009 DM | +731292 |V1292 Sco *|165355.6-415252 |EA | 7.57 | 7.80 | 7.73 |V |53182.567 | | 4.24038 |12 |O9.5III |79009 DM | +731293 |V1293 Sco |165357.6-413842 |EA | 9.77 | 10.19 | 10.07 |V |53478.825 | | 1.317716 |12 |B1V |79009 DM | +731294 |V1294 Sco |165400.0-414253 |EA | 7.58 | 7.67 | 7.59 |V |52468.620 | | 5.604 |10 |O9.5IV |79003 DM | +731295 |V1295 Sco |165435.8-412523 |EA | 7.96 | 8.19 | 8.11 |V |52439.649 | | 2.15767 |20 |B0IVn |79006 DM | +731296 |V1296 Sco *|165444.6-431653 |EA | 12.18 | 12.77 : | 12.72 : |V |52071.677 | | 5.8082 |08 | |79011 79108| +731297 |V1297 Sco |165605.2-402058 |EA | 8.40 | 8.47 | 8.46 : |V |52893.699 | | 4.84886 |08 |O7.5V |79011 DM | +731298 |V1298 Sco |170102.3-402025 |SRB | 12.2 |< 13.1 | |V | | | 96. | | |79064 79108| +731299 |V1299 Sco *|170426.0-391604 |EA | 11.73 | 12.2 : | 12.1 : |V |52501.474 | | 7.6945 |04 : |A2 |79011 79108| +731300 |V1300 Sco *|170458.4-383706 |EA | 8.87 | 9.03 | 9.02 : |V |48005.710 | | 29.3467 |02 : |B9IV/V |79006 DM | +731301 |V1301 Sco *|170518.7-345600 |EA | 13.0 : | 13.5 : | 13.5 : |V |53634.555 | | 1.9541 |06 | |79193 79108| +731302 |V1302 Sco *|170717.5-373623 |EA | 12.6 | 13.15 | 13.1 : |V |53219.530 | | 7.4158 |05 | |79009 79108| +731303 |V1303 Sco *|171305.3-344510 |EA | 11.74 | 12.10 | 11.78 |V |51978.842 | | 11.0943 |04 | |79193 79108| +731304 |V1304 Sco |172821.8-384148 |EA | 8.28 | 8.6 : | 8.59 : |V |52030.779 | | 3.3682 |14 |B3Vn |79011 DM | +731305 |V1305 Sco *|172840.0-333458 |EB: | 8.74 | 9.07 | 9.07 |V |52452.597 | | 1.297320 | |B2V:+B2V: |79011 DM | +731306 |V1306 Sco |173134.2-385140 |EA | 11.21 | 11.60 | 11.52 |V |52117.565 | | 5.54177 |07 |A3-A8 |79003 79115| +731307 |V1307 Sco |173741.7-423105 |DSCT | 9.89 | 10.55 | |V | | | 0.117031 |22 |A3 |79064 DM | +731308 |V1308 Sco *|174916.4-381135 |EA | 10.40 | 11.0 | 10.92 : |V |52549.519 | | 9.1066 |04 |G0 |79003 DM | +731309 |V1309 Sco |175732.9-304310 |NA | 7.9 |< 18. | |V |54716. |2008 | | | |79254 | +731310 |V1310 Sco |170607.5-371427 |NA | 10.5 |< 18. | |* |55248. |2010 | 2010 | | pec(Nova) |80228 | NL80_1 +731311 |V1311 Sco |165513.2-380347 |NA | 8.55 |< 18. | |V |55312. |2010 | 2010 | | pec(Nova) |80229 | NL80_1 +731312 |V1312 Sco |165509.5-383805 |NA | 10.5 |< 21. | |V |55715 |2011 | | |pec(Nova) |80428 | NL80_2 +731313 |V1313 Sco |163644.3-413238 |NA | 10.4 |< 15.5 | |V |55812 |2011 | | |pec(Nova) |80429 | NL80_2 +731314 |V1314 Sco |154939.5-251253 |SRB | 12.0 | 13.2 | |V | | | 490. | | |80001 GSC | NL80_2 +731315 |V1315 Sco |155244.8-260546 |SRB | 8.7 | 10.0 | |V | | | 82.8 | |M5 |80001 DM | NL80_2 +731316 |V1316 Sco |155341.6-251712 |M | 11.6 |< 15.0 | |V |54657. | | 225. | | |80415 80415| NL80_2 +731317 |V1317 Sco *|155517.1-292437 |RCB: | 11.8 |< 14. | |V | | | | | |80293 80293| NL80_2 +731318 |V1318 Sco |155526.1-250959 |M | 12.4 |< 15.0 | |V |53871. | | 252.5 | | |80002 2MASS| NL80_2 +731319 |V1319 Sco *|155551.6-214833 |RRC | 11.35 | 11.90 | |V |53129.476 | | 0.2541281 | | |80420 GSC | NL80_2 +731320 |V1320 Sco |155729.7-234510 |SRB | 12.0 | 13.8 | |V | | | 146.0 | | |80001 GSC | NL80_2 +731321 |V1321 Sco |155748.3-291811 |SRB | 12.0 | 14.0 | |V | | | 73.0 | | |80001 GSC | NL80_2 +731322 |V1322 Sco |155815.6-224443 |M | 10.9 |< 15.0 | |V |55064. | | 366.2 | |Me |80002 GSC | NL80_2 +731323 |V1323 Sco |155856.3-282449 |SRB | 12.1 | 12.8 | |V | | | 43.6 | | |80001 GSC | NL80_2 +731324 |V1324 Sco |175053.9-323721 |NA | 9.2 |< 19. | |V |56098. |2012 | | |pec(Nova) |80613 | NL80_3 +731325 |V1325 Sco |160028.9-291153 |EA | 12.45 | 13.65 | 12.6 |V |53767.8643 | | 1.011387 |20 | |80002 DM | NL80_3 +731326 |V1326 Sco |160242.7-265438 |M | 11.0 |< 14.8 | |V |55064. | | 254. | |M7e |80001 GSC | NL80_3 +731327 |V1327 Sco *|160254.0-202248 |RS | 12.25 | 12.80 | |V | | | 1.95313 | |K7 |80001 GSC | NL80_3 +731328 |V1328 Sco |160331.9-281208 |SRB | 13.1 | 14.3 | |V | | | 85. | | |80001 USNO | NL80_3 +731329 |V1329 Sco |160936.2-215352 |RRAB | 14.3 : | 15.0 : | |V |53883.67 | | 0.540461 |15 : | |80135 USNO | NL80_3 +731330 |V1330 Sco |162307.8-230100 |INT: | 11.72 | 12.18 | |V | | | 4.0538 | |K5Ve |80034 DM | NL80_3 +731331 |V1331 Sco *|162353.2-262224 |GDOR | 12.67 | 12.70 | |V | | | 1.03099 | |F2IV: |80446 USNO | NL80_3 +731332 |V1332 Sco |162402.0-291045 |IT: | 9.8 | 10.1 | |V | | | 4.017 | |K7Ve |80001 DM | NL80_3 +731333 |V1333 Sco |162620.4-341713 |SRD | 11.1 | 11.7 | |V | | | 68.0 | |F8 |80001 DM | NL80_3 +731334 |V1334 Sco |162859.6-320700 |EA | 12.9 | 14.3 | 13.2 |V |52766.8228 | | 2.918013 |20 | |80002 GSC | NL80_3 +731335 |V1335 Sco |163956.6-451628 |M | 13.0 | 15.4 | |Ic|51675. | | 243. | | |80450 2MASS| NL80_3 +731336 |V1336 Sco |164012.1-443321 |M | 12.6 | 14.2 | |Ic|51560. :| | 430. : | | |80450 USNO | NL80_3 +731337 |V1337 Sco |164013.0-450606 |M | 14.6 | 17.2 | |Ic|51748. | | 334. | | |80450 USNO | NL80_3 +731338 |V1338 Sco |164022.4-451343 |M | 15.7 |< 18.2 | |Ic|51290. | | 450. : | | |80450 2MASS| NL80_3 +731339 |V1339 Sco |164023.0-444148 |M | 14.1 | 16.1 | |Ic|51346. | | 262. | | |80450 2MASS| NL80_3 +731340 |V1340 Sco |164023.4-451114 |M | 15.2 |< 19.2 | |Ic|51190. :| | | | |80450 2MASS| NL80_3 +731341 |V1341 Sco |164024.8-442453 |RCB: | 13.5 | 14.7 | |I | | | | | |80451 USNO | NL80_3 +731342 |V1342 Sco |164036.1-442427 |EA | 16.0 | 16.8 | 16.25 |I |51248.87 | | 1.2377 |20 | |80390 USNO | NL80_3 +731343 |V1343 Sco |164046.8-443134 |M | 13.1 : | 14.7 | |I |51550. :| | 375. | | |80450 2MASS| NL80_3 +731344 |V1344 Sco |164100.4-442823 |M | 11.6 : | 13.7 | |Ic|51570. :| | 404. | | |80450 2MASS| NL80_3 +731345 |V1345 Sco |164106.1-443246 |M | 14.5 : | 16.5 | |Ic|51780. :| | 326. | | |80450 2MASS| NL80_3 +731346 |V1346 Sco |164113.5-450614 |M | 15.9 |< 17.7 | |Ic|51640. | | 411. | | |80450 2MASS| NL80_3 +731347 |V1347 Sco |164113.9-442853 |M | 15.5 |< 18.1 | |Ic|51621. | | 422. | | |80450 2MASS| NL80_3 +731348 |V1348 Sco |164121.5-445111 |M | 15.8 : | 17.3 : | |Ic|51530. :| | 370. : | | |80450 2MASS| NL80_3 +731349 |V1349 Sco |164138.5-442606 |M | 14.5 : | 17.1 | |Ic|51540. :| | 440. : | | |80450 2MASS| NL80_3 +731350 |V1350 Sco |164146.8-445735 |M | 17.1 | 19.6 | |Ic|50970. | | 480. : | | |80450 2MASS| NL80_3 +731351 |V1351 Sco |164151.1-443606 |M | 16.7 |< 18.1 | |Ic|51261. | | 319. | | |80450 2MASS| NL80_3 +731352 |V1352 Sco |164159.8-450609 |M | 15.7 | 18.6 | |Ic|50960. | | 500. : | | |80450 2MASS| NL80_3 +731353 |V1353 Sco |164214.2-441551 |M | 15.5 : | 17.4 | |Ic|51800. :| | 347. | | |80450 2MASS| NL80_3 +731354 |V1354 Sco |164214.6-444846 |EB | 13.7 | 14.5 | 14.1 |I |51342.55 | | 0.97054 | | |80390 USNO | NL80_3 +731355 |V1355 Sco |164226.0-443728 |M | 14.3 |< 16.0 | |Ic|51244. | | 420. | | |80450 USNO | NL80_3 +731356 |V1356 Sco |164237.7-442314 |M | 15.1 | 17.6 | |Ic|51588. | | 434. | | |80450 USNO | NL80_3 +731357 |V1357 Sco |164258.9-441059 |M: | 16.6 : | 17.5 | |Ic| | | 360. : | | |80450 USNO | NL80_3 +731358 |V1358 Sco |164327.6-441613 |M | 15.5 : | 19.3 : | |Ic|51410. :| | 570. : | | |80450 2MASS| NL80_3 +731359 |V1359 Sco |164336.6-444323 |M | 17.8 : | 19.0 | |Ic| | | 390. | | |80450 2MASS| NL80_3 +731360 |V1360 Sco |164347.5-443806 |M | 15.1 |< 16.7 | |Ic|51255. | | 353. | | |80450 2MASS| NL80_3 +731361 |V1361 Sco |164425.3-443024 |M | 14.6 |< 16.9 | |Ic|51710. | | 450. | | |80450 2MASS| NL80_3 +731362 |V1362 Sco |164446.9-441106 |M | 14.9 |< 16.6 | |Ic|51606. | | 304. | | |80450 2MASS| NL80_3 +731363 |V1363 Sco |164938.6-443141 |BCEP | 11.2 | 11.3 | |V | | | 0.1775964 | |B2 |80445 DM | NL80_3 +731364 |V1364 Sco *|165314.0-434458 |BCEP | 9.00 | 9.18 | |V | | | 0.2036040 | |B2Iab |80445 DM | NL80_3 +731365 |V1365 Sco |165429.5-413915 |EA | 9.23 | 9.43 | 9.28 |V |53033.926 | | 6.3495 | |B0.5V |80015 GSC | NL80_3 +731366 |V1366 Sco |165806.3-421924 |M | 1.79 | 3.51 | |K | | | 534. | |C |80166 GSC | NL80_3 +731367 |V1367 Sco |170005.4-444414 |EW | 17.45 | 18.06 | 18.02 |Ic|50654.76 | | 0.4258 | | |80454 80454| NL80_3 +731368 |V1368 Sco |170006.2-443916 |EW | 15.12 | 15.41 | 15.40 |Ic|50648.69 | | 0.4015 | | |80454 80454| NL80_3 +731369 |V1369 Sco |170008.2-443600 |EW | 17.78 | 18.35 | 18.20 |Ic|50976.7811 | | 0.3409 | | |80454 80454| NL80_3 +731370 |V1370 Sco |170008.3-444343 |EA | 15.84 | 16.06 | |Ic|50647.6713 | | 3.3964 |10 | |80454 80454| NL80_3 +731371 |V1371 Sco |170009.1-444431 |LB | 15.8 | 16.3 | |Ic| | | | | |80454 80454| NL80_3 +731372 |V1372 Sco |170012.1-443954 |EA | 15.00 | 15.25 | |Ic|51067.5328 | | 2.198 : |06 | |80001 80454| NL80_3 +731373 |V1373 Sco |170018.7-443802 |EA | 13.94 | 14.07 | 14.04 |Ic|50647.6526 | | 0.7630 |16 | |80454 80454| NL80_3 +731374 |V1374 Sco |170020.4-444402 |EW | 14.76 | 15.14 | 15.14 |Ic|50654.7398 | | 0.6588 | | |80454 80454| NL80_3 +731375 |V1375 Sco |170021.3-444543 |SR: | 17.0 | 19. : | |R | | | 37.02 : | | |80454 80454| NL80_3 +731376 |V1376 Sco |170024.9-444649 |EW | 17.70 | 18.20 | 18.13 |Ic|50653.5177 | | 0.3827 | | |80454 80454| NL80_3 +731377 |V1377 Sco |170026.2-443955 |EW | 15.75 | 16.24 | 16.24 |Ic|50668.7012 | | 0.3538 | | |80454 80454| NL80_3 +731378 |V1378 Sco |170027.3-444227 |EW | 17.70 | 18.20 | 18.15 : |Ic|50673.5726 | | 0.4103 | | |80454 80454| NL80_3 +731379 |V1379 Sco |170028.9-443935 |M | 13.3 |< 15.8 | |Ic|50650. | | 279.9 : | | |80454 80454| NL80_3 +731380 |V1380 Sco |170030.6-443557 |EA | 14.96 | 15.26 | |Ic|50674.5258 | | 1.4251 | | |80454 80454| NL80_3 +731381 |V1381 Sco |170034.7-443913 |EA | 14.38 | 14.69 | 14.69 |Ic|50984.6343 | | 1.8614 : |08 | |80454 80454| NL80_3 +731382 |V1382 Sco |170037.1-443634 |EA | 16.38 | 16.63 | |Ic|50648.6400 | | 0.6662 |16 | |80454 80454| NL80_3 +731383 |V1383 Sco |170037.9-443515 |EW | 17.02 | 17.75 | 17.66 |Ic|50673.4897 | | 0.4300 | | |80454 80454| NL80_3 +731384 |V1384 Sco |170043.1-444258 |EW | 17.74 | 18.42 | 18.38 |Ic|50648.7009 | | 0.3638 | | |80454 80454| NL80_3 +731385 |V1385 Sco |170044.1-442205 |M | 12.8 : | 15.1 | |Ic|51530. :| | 438. | | |80450 2MASS| NL80_3 +731386 |V1386 Sco |170044.4-444303 |EW | 17.15 | 17.65 | 17.61 |Ic|50648.5108 | | 0.4681 | | |80454 80454| NL80_3 +731387 |V1387 Sco |170045.0-442318 |M | 12.0 |< 13.5 | |Ic|50900. :| | 430. : | | |80450 2MASS| NL80_3 +731388 |V1388 Sco |170046.3-444157 |M | 13.1 | 14.4 | |Ic|51070. :| | 181.6 : | | |80454 80454| NL80_3 +731389 |V1389 Sco |170046.5-442921 |M | 14.0 | 15.8 | |Ic|50880. | | 285. | | |80450 2MASS| NL80_3 +731390 |V1390 Sco |170046.6-443956 |EW | 17.05 | 17.52 | 17.46 |Ic|50673.5447 | | 0.3588 | | |80454 80454| NL80_3 +731391 |V1391 Sco |170047.1-443718 |EA | 14.30 | 14.58 | |Ic|50664.5957 | | 1.718 : |19 | |80454 80454| NL80_3 +731392 |V1392 Sco |170047.7-443417 |LB | 14.07 | 14.80 | |Ic| | | | | |80454 80454| NL80_3 +731393 |V1393 Sco |170050.8-443847 |EW | 16.63 | 17.48 | 17.2 : |Ic|50993.5864 | | 0.9005 | | |80454 80454| NL80_3 +731394 |V1394 Sco |170051.0-444411 |EW | 17.44 | 17.90 | 17.8 : |Ic|50992.6747 | | 0.33273 | | |80001 80454| NL80_3 +731395 |V1395 Sco |170053.8-444517 |EW | 15.80 | 15.99 | 15.97 |Ic|50984.5645 | | 0.3398 | | |80454 80454| NL80_3 +731396 |V1396 Sco |170059.3-443727 |SR | 16.28 | 16.50 | |Ic| | | 29.49 : | | |80454 80454| NL80_3 +731397 |V1397 Sco |170059.3-443432 |EW | 18.0 | 18.9 | 18.6 : |Ic|50650.6234 | | 0.28577 | | |80001 80454| NL80_3 +731398 |V1398 Sco |170100.8-444037 |EA | 15.75 | 16.23 | 15.95 |Ic|50648.7164 | | 1.0075 |10 | |80454 80454| NL80_3 +731399 |V1399 Sco |170100.9-441327 |M | 14.2 |< 16.5 | |Ic|51631. | | 426. | | |80450 2MASS| NL80_3 +731400 |V1400 Sco |170105.5-443631 |SR | 16.78 | 17.05 | |Ic| | | 53.78 : | | |80454 80454| NL80_3 +731401 |V1401 Sco |170106.2-443524 |EA | 17.39 | 17.74 | 17.52 |Ic|50658.5687 | | 1.3348 |08 | |80454 80454| NL80_3 +731402 |V1402 Sco |170106.3-444252 |M: | 15.60 | 17.55 | |Ic| | | 280. : | | |80001 80454| NL80_3 +731403 |V1403 Sco |170107.0-443956 |EB | 16.78 | 17.70 | 17.05 |Ic|50668.7182 | | 0.8516 | | |80454 80454| NL80_3 +731404 |V1404 Sco |170109.3-444525 |EW | 14.83 | 15.02 | 14.99 |Ic|50647.6713 | | 0.5846 | | |80454 80454| NL80_3 +731405 |V1405 Sco |170110.0-443631 |SR | 14.45 | 14.63 | |Ic| | | 74.2528 | | |80454 80454| NL80_3 +731406 |V1406 Sco |170110.1-444255 |EW | 16.70 | 17.11 | 17.06 |Ic|51083.4993 | | 0.36985 | | |80001 80454| NL80_3 +731407 |V1407 Sco |170111.0-445500 |M | 15.7 | 18.8 | |Ic|51000. | | 522. | | |80450 2MASS| NL80_3 +731408 |V1408 Sco |170112.0-444236 |EW | 18.36 | 18.93 | 18.85 |Ic|50674.5347 | | 0.7679 | | |80454 80454| NL80_3 +731409 |V1409 Sco |170112.4-443620 |EW | 17.20 | 17.90 | 17.80 |Ic|50674.6459 | | 0.3308 | | |80454 80454| NL80_3 +731410 |V1410 Sco |170113.8-443405 |EB | 14.70 | 15.21 | 14.97 |Ic|50920.8064 | | 0.6126 | | |80454 80454| NL80_3 +731411 |V1411 Sco |170116.6-444128 |EW | 14.52 | 14.72 | 14.70 |Ic|50648.7164 | | 0.3969 | | |80454 80454| NL80_3 +731412 |V1412 Sco |170119.8-443748 |EA | 12.4 | 13.1 | 12.9 |V |54739.52 | | 2.32129 : |05 | |80001 GSC | NL80_3 +731413 |V1413 Sco |170134.8-442644 |M | 15.8 | 18.6 | |Ic|50997. | | 398. | | |80450 2MASS| NL80_3 +731414 |V1414 Sco *|170138.0-442856 |M | 14.2 | 17.6 : | |Ic|51730. :| | 500. : | | |80450 2MASS| NL80_3 +731415 |V1415 Sco |170150.8-441516 |M | 12.6 : | 14.5 | |Ic|51780. :| | 320. | | |80450 2MASS| NL80_3 +731416 |V1416 Sco |170152.4-444528 |M | 13.3 | 16.2 | |Ic|50900. | | 304. | | |80450 2MASS| NL80_3 +731417 |V1417 Sco |170214.2-442409 |M | 11.7 : | 12.8 | |Ic| | | 382. | | |80450 2MASS| NL80_3 +731418 |V1418 Sco |170226.2-441717 |M | 14.0 | 16.7 | |Ic|51624. | | 455. : | | |80450 2MASS| NL80_3 +731419 |V1419 Sco |170242.4-442728 |M | 13.3 : | 15.4 : | |Ic|51210. :| | 340. : | | |80450 2MASS| NL80_3 +731420 |V1420 Sco |170309.7-442703 |M | 13.0 |< 14.1 | |Ic|51284. | | 365. | | |80450 2MASS| NL80_3 +731421 |V1421 Sco |170402.2-443220 |M | 11.5 |< 13.4 | |Ic|51605. | | 350. | | |80450 2MASS| NL80_3 +731422 |V1422 Sco |170414.6-441053 |M | 13.0 : | 15.0 | |Ic|51520. :| | 350. | | |80450 2MASS| NL80_3 +731423 |V1423 Sco |170432.0-445019 |M | 14.4 : | 15.9 | |Ic| | | 370. | | |80450 2MASS| NL80_3 +731424 |V1424 Sco |170435.6-443043 |M | 14.7 : |< 17.4 | |Ic|51260. | | 430. : | | |80450 2MASS| NL80_3 +731425 |V1425 Sco |170443.5-442730 |M | 11.0 : | 13.4 : | |Ic|51570. :| | 434. | | |80450 2MASS| NL80_3 +731426 |V1426 Sco |170456.4-443354 |M | 12.9 : | 15.0 | |Ic|51570. :| | 407. | | |80450 2MASS| NL80_3 +731427 |V1427 Sco |170457.3-443707 |M | 12.5 : | 14.7 | |Ic|50980. :| | 413. | | |80450 2MASS| NL80_3 +731428 |V1428 Sco |170506.0-442626 |RRAB | 15.05 | 15.85 | |I |51318.63 | | 0.35637 |17 | |80443 USNO | NL80_3 +731429 |V1429 Sco |170514.5-442316 |M | 13.9 : | 16.2 : | |Ic|51560. :| | 452. | | |80450 2MASS| NL80_3 +731430 |V1430 Sco |170758.0-342612 |DSCT | 9.51 | 9.80 | |V | | | 0.0837770 | |A5 |80171 DM | NL80_3 +731431 |V1431 Sco |171102.7-340247 |M | 13.5 |< 14.7 | |V |54538. | | 229. | |M7 |80001 2MASS| NL80_3 +731432 |V1432 Sco |171115.6-323805 |M | 12.5 |< 18.0 | |R |41180. | | 285. | |M6 |80461 2MASS| NL80_3 +731433 |V1433 Sco |171116.7-335859 |M | 11.9 | 17.6 | |R |39675. | | 210. | | |80461 2MASS| NL80_3 +731434 |V1434 Sco |171120.3-322628 |M | 12.0 | 17.6 | |R |40030. | | 150. | | |80461 2MASS| NL80_3 +731435 |V1435 Sco |171127.4-325623 |M | 12.5 | 17.6 | |R |40700. | | 395. | |M6 |80461 2MASS| NL80_3 +731436 |V1436 Sco |171132.3-322458 |M | 12.5 |< 18.0 | |R |40090. | | 235. | | |80461 2MASS| NL80_3 +731437 |V1437 Sco |171132.5-322911 |M | 11.6 | 14.8 | |R |40110. | | 160. | | |80461 2MASS| NL80_3 +731438 |V1438 Sco |171134.5-321227 |M | 12.5 | 18.5 | |R |40485. | | 335. | | |80461 2MASS| NL80_3 +731439 |V1439 Sco |171141.8-332740 |M | 11.9 | 17.6 | |R |40690. | | 340. | |M6 |80461 2MASS| NL80_3 +731440 |V1440 Sco |171143.1-332803 |M | 12.3 | 14.6 | |R |40490. | | 330. | | |80461 2MASS| NL80_3 +731441 |V1441 Sco |171143.2-331727 |M | 12.9 | 17.8 | |R |40095. | | 290. | | |80461 2MASS| NL80_3 +731442 |V1442 Sco |171150.3-323453 |M | 13.0 | 17.9 | |R |40095. | | 155. | |M7: |80461 2MASS| NL80_3 +731443 |V1443 Sco |171151.7-325149 |M | 11.0 | 17.6 | |R |40090. | | 260. | |M7 |80461 2MASS| NL80_3 +731444 |V1444 Sco |171153.0-330052 |M | 11.3 | 14.8 | |R |40380. | | 310. | |M5 |80461 2MASS| NL80_3 +731445 |V1445 Sco |171153.1-331949 |M | 11.8 | 17.8 | |R |40360. | | 235. | |M6 |80461 2MASS| NL80_3 +731446 |V1446 Sco |171153.7-325948 |M | 12.3 |< 18.0 | |R |39450. | | 250. | |M3 |80461 2MASS| NL80_3 +731447 |V1447 Sco |171155.9-325754 |M | 13.5 |< 14.4 | |V |54595. | | 354. | |M5 |80001 2MASS| NL80_3 +731448 |V1448 Sco |171205.3-321338 |M | 12.9 |< 18.0 | |R |40670. | | 335. | |M7: |80461 2MASS| NL80_3 +731449 |V1449 Sco |171206.0-321705 |M | 11.2 | 14.8 | |R |40690. | | 230. | |M4 |80461 2MASS| NL80_3 +731450 |V1450 Sco |171213.8-321849 |M | 12.7 | 15.8 | |R |40080. | | 350. | | |80461 2MASS| NL80_3 +731451 |V1451 Sco |171215.1-331518 |M | 12.7 |< 18.0 | |R |40505. | | 295. | | |80461 2MASS| NL80_3 +731452 |V1452 Sco *|171218.4-330603 |BCEP | 9.42 | 9.52 | |V | | | 0.1807742 | |B1/2Ib |80445 DM | NL80_3 +731453 |V1453 Sco |171223.2-340647 |M | 11.5 | 17.6 | |R |39700. | | 200. | |M5: |80461 2MASS| NL80_3 +731454 |V1454 Sco |171231.8-324846 |M | 12.1 | 16.2 | |R |40440. | | 340. | | |80461 2MASS| NL80_3 +731455 |V1455 Sco |171241.3-320452 |M | 11.9 | 17.6 | |R |39690. | | 225. | | |80461 2MASS| NL80_3 +731456 |V1456 Sco |171254.0-321424 |M | 11.9 | 17.6 | |R |40040. | | 205. | | |80461 2MASS| NL80_3 +731457 |V1457 Sco |171301.1-334137 |M | 11.9 | 15.8 | |R |40380. | | 260. | |M5 |80461 2MASS| NL80_3 +731458 |V1458 Sco |171302.9-333612 |M | 10.9 | 13.8 | |R |40480. | | 175. | |M3 |80461 2MASS| NL80_3 +731459 |V1459 Sco |171310.4-323920 |M | 12.1 | 16.5 | |R |39660. | | 195. | |M7 |80461 2MASS| NL80_3 +731460 |V1460 Sco |171311.1-324916 |M | 12.9 |< 18.0 | |R |39720. | | 290. | |M7 |80461 2MASS| NL80_3 +731461 |V1461 Sco |171313.2-374408 |EA | 13.1 | 13.7 | 13.45 |V |54640.64 | | 2.9567 |08 | |80011 USNO | NL80_3 +731462 |V1462 Sco |171315.2-320725 |M | 13.0 |< 18.0 | |R |40720. | | 185. | | |80461 2MASS| NL80_3 +731463 |V1463 Sco |171324.1-321159 |M | 13.0 |< 18.0 | |R |41090. | | 350. | | |80461 2MASS| NL80_3 +731464 |V1464 Sco |171333.1-325652 |M | 13.1 | 17.6 | |R |40095. | | 240. | | |80461 2MASS| NL80_3 +731465 |V1465 Sco |171337.4-330831 |M | 12.7 |< 18.0 | |R |40690. | | 300. | | |80461 2MASS| NL80_3 +731466 |V1466 Sco |171354.4-325402 |M | 12.1 |< 18.0 | |R |40450. | | 180. | | |80461 2MASS| NL80_3 +731467 |V1467 Sco |171356.7-340157 |M | 11.0 |< 18.0 | |R |39715. | | 215. | | |80461 2MASS| NL80_3 +731468 |V1468 Sco |171359.5-322655 |M | 12.1 |< 18.0 | |R |40680. | | 490. | |M7: |80461 2MASS| NL80_3 +731469 |V1469 Sco |171359.9-375014 |M | 4.21 | 6.44 | |K | | | 568. | | |80166 2MASS| NL80_3 +731470 |V1470 Sco |171400.2-320314 |M | 12.7 |< 18.0 | |R |40500. | | 300. | |M7 |80461 2MASS| NL80_3 +731471 |V1471 Sco |171400.3-325158 |M | 11.7 |< 17.0 | |R |39730. | | 210. | | |80461 2MASS| NL80_3 +731472 |V1472 Sco |171403.3-320031 |M | 11.2 |< 16.0 | |R |40695. | | 185. | |M6 |80461 2MASS| NL80_3 +731473 |V1473 Sco |171404.3-322149 |M | 12.6 |< 17.0 | |R |39700. | | 270. | |M6 |80461 2MASS| NL80_3 +731474 |V1474 Sco |171406.1-320432 |M | 13.3 |< 18.0 | |R |40700. | | 300. | | |80461 2MASS| NL80_3 +731475 |V1475 Sco |171406.3-320319 |M | 12.9 |< 17.0 | |R |40690. | | 300. | | |80461 2MASS| NL80_3 +731476 |V1476 Sco |171409.8-330756 |M | 12.9 |< 18.0 | |R |40345. | | 280. | | |80461 2MASS| NL80_3 +731477 |V1477 Sco |171423.3-322720 |M | 12.5 |< 18.0 | |R |39715. | | 185. | |M3 |80461 2MASS| NL80_3 +731478 |V1478 Sco |171435.6-334034 |M | 13.0 |< 18.0 | |R |40700. | | 220. | | |80461 2MASS| NL80_3 +731479 |V1479 Sco |171439.7-322453 |M | 12.1 | 17.6 | |R |39705. | | 210. | |M4: |80461 2MASS| NL80_3 +731480 |V1480 Sco |171440.4-322559 |M | 12.5 |< 18.0 | |R |40680. | | 355. | |M6 |80461 2MASS| NL80_3 +731481 |V1481 Sco |171442.0-320910 |M | 11.6 | 17.6 | |R |40060. | | 240. | |M6 |80461 2MASS| NL80_3 +731482 |V1482 Sco |171443.5-321022 |M | 12.2 |< 18.0 | |R |39800. | | 305. | | |80461 2MASS| NL80_3 +731483 |V1483 Sco |171448.7-324120 |M | 12.3 |< 18.0 | |R |40740. | | 230. | |M7 |80461 2MASS| NL80_3 +731484 |V1484 Sco |171453.7-320622 |M | 11.9 | 15.8 | |R |40695. | | 355. | | |80461 2MASS| NL80_3 +731485 |V1485 Sco *|171515.0-332521 |M | 12.9 |< 18.0 | |R |40370. | | 200. | | |80461 2MASS| NL80_3 +731486 |V1486 Sco |171522.1-322041 |M | 12.3 |< 16.0 | |R |40400. | | 250. | |M7 |80461 2MASS| NL80_3 +731487 |V1487 Sco |171522.9-323618 |M | 12.9 |< 18.0 | |R |39630. | | 295. | |M7 |80461 2MASS| NL80_3 +731488 |V1488 Sco *|171524.5-322817 |M | 12.3 | 17.6 | |R |40030. | | 250. | |M6 |80461 2MASS| NL80_3 +731489 |V1489 Sco |171526.4-322646 |M | 12.3 |< 18.0 | |R |41180. | | 240. | | |80461 2MASS| NL80_3 +731490 |V1490 Sco |171529.1-321429 |M | 12.4 |< 16.0 | |R |40090. | | 240. | | |80461 2MASS| NL80_3 +731491 |V1491 Sco |171533.7-324625 |M | 12.8 |< 18.0 | |R |40110. | | 220. | | |80461 2MASS| NL80_3 +731492 |V1492 Sco |171630.1-333624 |M | 13.4 | 17.6 | |R |39730. | | 305. | |M7 |80461 2MASS| NL80_3 +731493 |V1493 Sco |171632.7-391046 |M | 3.49 | 5.11 | |K | | | 628. | |C |80166 2MASS| NL80_3 +731494 |V1494 Sco |171634.6-323852 |M | 12.0 |< 17.0 | |R |40380. | | 260. | |M5 |80461 2MASS| NL80_3 +731495 |V1495 Sco |171639.0-324000 |M | 12.9 |< 18.0 | |R |39705. | | 465. | | |80461 2MASS| NL80_3 +731496 |V1496 Sco |171652.4-330028 |M | 13.1 |< 18.0 | |R |40485. | | 240. | | |80461 2MASS| NL80_3 +731497 |V1497 Sco |171709.8-341548 |M | 11.9 | 16.6 | |R |40685. | | 205. | |M5 |80461 2MASS| NL80_3 +731498 |V1498 Sco |171719.7-324612 |M | 12.9 |< 18.0 | |R |39700. | | 195. | | |80461 2MASS| NL80_3 +731499 |V1499 Sco |171722.1-321729 |M | 12.6 |< 18.0 | |R |41060. | | 225. | | |80461 2MASS| NL80_3 +731500 |V1500 Sco |171758.7-341315 |M | 12.2 | 16.6 | |R |40370. | | 250. | |M6 |80461 2MASS| NL80_3 +731501 |V1501 Sco |171806.9-324730 |M | 12.2 |< 18.0 | |R |39700. | | 180. | | |80461 2MASS| NL80_3 +731502 |V1502 Sco |171834.2-320736 |M | 12.9 |< 18.0 | |R |40090. | | 335. | | |80461 2MASS| NL80_3 +731503 |V1503 Sco |172513.1-391922 |M | 5.51 | 7.38 | |K | | | 630. | |C |80166 2MASS| NL80_3 +731504 |V1504 Sco *|172658.6-433314 |RVB | 11.7 | 13.1 | |V | | | 44. | |G0p |80184 GSC | NL80_3 +731505 |V1505 Sco |172724.1-395131 |CWB | 14.52 |( 0.37 )| |Ic| | | 1.47710 | | |80466 | NL80_3 +731506 |V1506 Sco *|172738.2-380836 |EW | 11.5 | 11.8 | |V | | | 0.378603 | | |80138 GSC | NL80_3 +731507 |V1507 Sco |173228.2-340314 |LB | 10.5 | 11.4 | |V | | | | |M3 |80001 GSC | NL80_3 +731508 |V1508 Sco |173418.5-340651 |EA | 13.5 | 14.1 | 13.9 : |V |55066.5621 | | 0.769136 |07 | |80242 80242| NL80_3 +731509 |V1509 Sco |173420.6-322919 |IT | 16.77 |( 0.7 )| |V | | | 0.83504 | | |80470 80470| NL80_3 +731510 |V1510 Sco |173447.9-323151 |BY: | 16.72 |( 0.2 )| |V | | | 0.4002 | | |80470 80470| NL80_3 +731511 |V1511 Sco |173448.5-323721 |DSCTC | 12.83 |( 0.08 )| |V | | | 0.052565 | | |80470 80470| NL80_3 +731512 |V1512 Sco *|173510.2-322904 |DSCTC | 10.03 |( 0.04 )| |V | | | 0.068554 | |A5 |80470 80470| NL80_3 +731513 |V1513 Sco |174723.2-371236 |CWB | 15.09 |( 0.31 )| |Ic| | | 0.97318 | | |80466 2MASS| NL80_3 +731514 |V1514 Sco |174748.5-351606 |CWA | 13.59 |( 0.61 )| |Ic| | | 8.79121 | | |80466 2MASS| NL80_3 +731515 |V1515 Sco |174812.2-404936 |M | 3.10 | 4.18 | |K | | | 545. | |C |80166 2MASS| NL80_3 +731516 |V1516 Sco |174950.0-400758 |M | 6.79 | 7.80 | |K | | | 399. | | |80166 2MASS| NL80_3 +731517 |V1517 Sco *|175008.5-370414 |DSCT | 17.28 | 17.85 | |V | | | 0.089928 | | |80457 80484| NL80_3 +731518 |V1518 Sco |175013.1-302056 |CWB | 16.75 |( 0.40 )| |Ic| | | 1.78202 | | |80466 2MASS| NL80_3 +731519 |V1519 Sco |175038.6-300349 |CWB | 13.50 |( 0.17 )| |Ic| | | 2.99040 | | |80466 2MASS| NL80_3 +731520 |V1520 Sco *|175058.6-370219 |RRAB | 16.29 | 16.75 | |V | | | 0.620 |20 | |80484 80484| NL80_3 +731521 |V1521 Sco |175059.0-330853 |CWB | 14.58 |( 0.23 )| |Ic| | | 7.77000 | | |80466 2MASS| NL80_3 +731522 |V1522 Sco |175142.5-324141 |CWB | 14.62 |( 0.63 )| |Ic| | | 3.20082 | | |80466 2MASS| NL80_3 +731523 |V1523 Sco |175236.2-300833 |CWB | 15.11 |( 0.43 )| |Ic| | | 2.30150 | | |80466 | NL80_3 +731524 |V1524 Sco |175327.8-301955 |CWB | 16.13 |( 0.26 )| |Ic| | | 1.48412 | | |80466 | NL80_3 +731525 |V1525 Sco |175334.8-301240 |CWB | 14.81 |( 0.31 )| |Ic| | | 4.57875 | | |80466 2MASS| NL80_3 +731526 |V1526 Sco |175344.4-325714 |RRAB | 15.99 |( 0.50 )| |Ic| | | 0.76522 |22 | |80466 | NL80_3 +731527 |V1527 Sco |175400.1-330823 |CWB | 15.46 |( 0.26 )| |Ic| | | 2.73418 | | |80466 2MASS| NL80_3 +731528 |V1528 Sco |175424.3-330651 |CWB | 14.19 |( 0.30 )| |Ic| | | 7.73934 | | |80466 2MASS| NL80_3 +731529 |V1529 Sco |175438.3-301042 |CWB | 14.98 |( 0.85 )| |Ic| | | 1.53185 | | |80466 2MASS| NL80_3 +731530 |V1530 Sco |175512.4-300725 |CWB | 14.45 |( 0.23 )| |Ic| | | 3.65017 | | |80466 2MASS| NL80_3 +731531 |V1531 Sco |175633.0-303634 |CWB: | 15.94 |( 0.29 )| |Ic| | | 0.93110 | | |80466 2MASS| NL80_3 +731532 |V1532 Sco |175646.5-310708 |CWB | 15.02 |( 0.24 )| |Ic| | | 4.49944 | | |80466 2MASS| NL80_3 +739001 |alf Sco *|162924.5-262555 |LC | 0.88 | 1.16 | |V | | | | |M1.5Iab-Ib | 08953| +739004 |del Sco |160020.0-223718 |GCAS | 1.86 | 2.32 | |V | | | | | |76137 DM | +7390061|zet 1 Sco *|165359.7-422143 |SDOR: | 4.66 | 4.86 | |V | | | | |B1Iape |09758 CoD | +739010 |kap Sco *|174229.3-390148 |BCEP | 2.41 | 2.42 | |V | | | 0.1998303 | |B1.5III |09761 CoD | +739011 |lam Sco *|173336.5-370614 |BCEP+E: | 1.62 |( 0.06 )| |V |40000.1235 | | 0.2136966 | |B1.5IV |09953 CoD | +7390121|mu. 1 Sco *|165152.2-380251 |EB/SD | 2.94 | 3.22 | 3.12 |V |32001.0451 | | 1.44626907 | |B1.5V+B6.5V |00308 CoD | +739016 |pi. Sco |155851.1-260651 |EB | 2.82 | 2.85 | |Hp| | | | | |HIP HIP | +739018 |sig Sco *|162111.3-253534 |BCEP | 2.86 | 2.94 | |V |44450.548 | | 0.2468390 |50 |B2III+O9.5V |00001 CoD | +740001 |R Scl *|012658.1-323236 |SRB | 9.1 | 12.9 | |p | | | 370. | |C6,5ea(Np) |00001 00002| +740002 |S Scl *|001522.3-320243 |M | 5.5 | 13.6 | |V |42345. | | 362.57 |48 |M3e-M9e(Tc) |00001 00002| +740003 |T Scl *|002912.1-375431 |M | 8.47 | 13.5 | |V |41985. | | 202.42 |49 |M3-M6e |00001 00002| +740004 |U Scl |011136.4-300629 |M | 8.3 | 15.21 | |V |41430. | | 333.73 |39 |M5e |00001 00002| +740005 |V Scl *|000837.3-391305 |M | 8.7 | 15.0 | |V |40378. | | 296.1 |48 |M4e-M6e |00001 00002| +740006 |W Scl |003313.6-325230 |CST: | 12.7 | | |p | | | | |F5 | CoD | +740007 |X Scl *|004929.5-345446 |M | 10.1 | 14.7 | |V |41425. | | 261.63 |50 | |00001 00002| +740008 |Y Scl *|230905.6-300802 |SRB | 8.7 | 10.3 | |p | | | | |M4 |01188 05474| +740009 |Z Scl |003957.8-335741 |CST: | 6.68 | | |V | | | | |F8V |01378 04408| +740010 |RR Scl |002931.9-380417 |CST | 12.9 | | |V | | | | | |01514 03389| +740011 |RS Scl |012707. -325439:| | 9.8 |< 15. | |p | | | | | |01379 03389| +740012 |RT Scl *|003628.1-254023 |EB/SD: | 10.18 | 10.89 | 10.47 |V |43450.6332 | | 0.51156012 | |A5n+F3 |09684 CoD | +740013 |RU Scl *|000248.1-245643 |RRAB | 9.35 | 10.75 | |V |31122.839 | | 0.49333878 |12 |A5:-F8 |08636 06286| +740014 |RV Scl |011942.6-265155 |RR: | 11.1 | 11.8 | |p | | | | | |00180 00022| +740015 |RW Scl *|012253.6-261734 |RRAB | 12.1 | 14.2 | |p |24731.866 | | 0.451707676 |18 | |03782 03782| +740016 |RX Scl |012624.4-273000 |RR | 14.0 | 15.1 | |p |24744.805 | | 0.54453 | | |00180 00022| +740017 |RY Scl |013323.4-302953 |RR: | 14.5 | 15.1 | |p | | | | | |00180 00022| +740018 |RZ Scl |014157.8-261254 |RR | 14.8 | 16.2 | |p |24765.850 | | 0.46062 | | |00180 00022| +740019 |SS Scl |014211.5-295921 |RR | 13.9 | 14.5 | |p |24744.775 | | 0.4187 | | |00180 00022| +740020 |ST Scl |014236.4-300138 |RR | 12.9 | 14.5 | |p |24744.800 | | 0.51455 | |B9 |00180 00022| +740021 |SU Scl |014335.3-293040 |CST: | 10.5 | | |p | | | | | |00016 00022| +740022 |SV Scl *|014459.7-300333 |RRC | 11.12 | 11.66 | |V |41918.555 | | 0.37760 |35 |A8-F6 |07984 00022| +740023 |SW Scl |000614.2-324859 |SRC | 7.3 | 9.3 | |V |40037. | | 146. | |M1Ib-IIe-M4IIIe |09693 03389| +740024 |SX Scl |000658.7-293625 |RR | 14.7 | 15.8 | |p |25482.50 | | 0.52943 | | |00193 UCAC2| +740025 |SY Scl *|000736.2-252940 |M | 12.15 |< 16.3 | |B |40451. | | 411. : | |M6e-M8: |05973 00190| +740026 |SZ Scl *|001546.7-310545 |EW/KW | 12.98 | 13.68 | 13.68 |B |44406.8677 | | 0.32082757 | | |09929 03389| +740027 |TT Scl |001654.6-301352 |SR | 11.30 | 14.02 | |V |25470. | | 133.3 | |e |00001 UCAC2| +740028 |TU Scl |235140.0-291017 |E | 13.89 | 14.5 | |B |25446.60 | | 1.1567 | | |00193 UCAC2| +740029 |TV Scl |235254.7-301031 |RR | 14.3 | 15.4 | |p |25449.60 | | 0.59724 | | |00193 UCAC2| +740030 |TW Scl |235441.6-332853 |RR | 13.5 |< 14.4 | |p |25441.60 | | 0.38110 | |A7hb |00193 05887| +740031 |TX Scl |235522.3-261807 |RR | 12.5 | 13.7 | |p |25446.60 | | 0.72777 | |F0hb |00193 06286| +740032 |TY Scl |235806.7-334510 |RR | 14.3 | 15.8 | |p |25530.35 | | 0.65020 | | |00193 UCAC2| +740033 |TZ Scl |000049.2-284901 |RR | 14.6 | 15.6 | |p |25479.45 | | 0.58293 | | |00193 UCAC2| +740034 |UU Scl |000122.5-263524 |E | 14.86 | 16.4 | |B |25538.20 | | 3.447 | | |00193 UCAC2| +740035 |UV Scl |005558.6-262300 |RRAB | 12.92 | 13.90 | |V |25854.323 | | 0.520549 |25 |A3:p |05775 00194| +740036 |UW Scl |010308.3-253017 |RRAB | 13.7 | 14.4 | |p |25852.336 | | 0.575096 |15 | |00194 00194| +740037 |UX Scl |000234.3-302545 |I | 13.8 |< 16.0 | |p | | | | |G0: |00193 GSC22| +740038 |UY Scl *|001445.8-391436 |RRC: | 11.53 | 11.96 | |V | | | | | |00016 09930| +740039 |UZ Scl *|232247.0-300710 |RRAB | 11.62 | 12.83 | |V |39112.335 | | 0.449119 |11 |F4-F7 |05233 02385| +740040 |VV Scl *|011606.8-340856 |EB:/DM: | 8.35 | 8.50 | 8.50 |V |36498.450 | | 2.47962 | |A5p |04344 CoD | +740041 |VW Scl |011815.0-391245 |RRAB | 10.4 | 11.4 | |V |27809.381 | | 0.5109147 |13 | |04183 02834| +740042 |VX Scl |013523.7-350743 |RRAB | 11.55 | 12.32 | |V |41614.354 | | 0.637334 |14 | |07233 06561| +740043 |VY Scl *|232900.5-294646 |NL | 12.5 | 18.5 | |p | | | | |pec(cont+e) |07196 09931| +740044 |VZ Scl *|235009.2-262253 |EA+NL | 15.6 | 18.4 | |V |41209.8175 | | 0.14462220 |20 |pec(e) |07990 03983| +740045 |WW Scl |000602.0-365415 |RRAB | 13.15 | 13.89 | |V |41225.840 | | 0.78660 |20 |Afhb |06630 05887| +740046 |WX Scl |004929.1-272314 |RRC | 13.06 | 13.70 | |V |41222.750 | | 0.35478 |40 |Afhb |06630 05887| +740047 |WY Scl |010027.8-281221 |RRAB | 12.32 | 13.59 | |V |41217.739 | | 0.46369 |12 |A0hb |06630 05887| +740048 |WZ Scl *|012843.5-334550 |DSCT | 6.52 | 6.62 | |V | | | | |F0IV |09695 CoD | +740049 |XX Scl *|012926.1-331914 |DSCT | 8.84 | 8.93 | |V | | | | |A7V |09695 CoD | +740050 |XY Scl |000635.8-323535 |SRB | 8.44 | 9.00 | |V | | | 60. : | |M6III |05973 CoD | +740051 |XZ Scl |000635.9-374637 |SRB | 9.01 | 9.70 | |V | | | 55. : | |M5III |05973 08588| +740052 |YY Scl |000829.1-255842 |LB | 8.69 | 8.91 | |V | | | | |M6III |05973 CoD | +740053 |YZ Scl |002828.1-354309 |LB | 8.45 | 8.78 | |V | | | | |M5III |05973 CoD | +740054 |ZZ Scl |003550.0-245241 |LB | 8.01 | 8.33 | |V | | | | |M5III |05973 CoD | +740055 |AA Scl |003628.9-302001 |LB | 8.63 | 8.99 | |V | | | | |M5III |05973 CoD | +740056 |AB Scl |004430.2-333914 |LB | 8.40 | 8.85 | |V | | | | |M5III |05973 CoD | +740057 |AC Scl |005618.7-253314 |SRB | 7.92 | 8.26 | |V | | | 47. : | |M3III-M4III |05973 CoD | +740058 |AD Scl |010528.7-314137 |M: | 10.5 | 13. | |p | | | | |M9 |00085 08588| +740059 |AE Scl |010725.8-321835 |RRAB | 11.78 | 12.92 | |V |41217.730 | | 0.55009 |12 |A7-F0 |06630 02380| +740060 |AF Scl |230724.6-253544 |SRB | 8.71 | 9.15 | |V | | | 32. : | |M4:III |05973 CoD | +740061 |AG Scl |230809.8-353710 |LB | 9.15 | 9.37 | |V | | | | |MB |05973 CoD | +740062 |AH Scl |232827.7-312409 |LB | 9.28 | 9.47 | |V | | | | |MB |05973 CoD | +740063 |AI Scl *|011245.4-375123 |DSCT | 5.89 | 5.98 | |V | | | | |A7III |09695 CoD | +740064 |AK Scl |233656.6-372220 |SR: | 12.5 | 13.5 | |p | | | | | |06561 06561| +740065 |AL Scl *|235516.6-315517 |EA/DM | 6.06 | 6.33 | 6.20 |V |43698.5118 | | 2.445088 |09 *|B6V+A0V |09934 HIP | +740066 |AM Scl |010910.8-282154 |LB: | 12.42 | 13.29 | |V | | | | |C2,4:(R1-2) |08545 03536| +740067 |AN Scl |011240.5-291047 |EW:/KW: | 8.8 | 9.0 | |V | | | 0.25 : | |G5 |08549 CoD | +740068 |AO Scl *|011957.0-332541 |UV | 13.6 | 14.26 | |R | | | | | |08549 04408| +740069 |AP Scl |010555.7-264344 |ACVO | 8.60 |( 0.03 )| |B | | | | | |68227 CoD | +740070 |AQ Scl |004727. -284414:|RRAB | 16.9 | 17.8 | |B | | | | | |69254 | +740071 |AR Scl |005236.7-290128 |RRAB | 15.9 | 17.3 | |B | | | | | |69254 USNO | +740072 |AS Scl |010534.6-265718 |ELL: | 8.10 |( 0.03 )| |V | | | | | |69255 CoD | +740073 |AT Scl |000411.9-300806 |ELL: | 7.08 |( 0.03 )| |V | | | | | |70022 70109| +740074 |AU Scl |001508.0-290023 |DSCTC | 8.4 |( 0.01 )| |B | | | | | |70110 CoD | +740075 |AV Scl |002312.6-310209 |ACV | 6.24 |( 0.03 u )| |U | | | | | |70022 CoD | +740076 |AW Scl |010626.6-353938 |ACV: | 6.87 |( 0.04 u )| |U | | | | | |70022 CoD | +740077 |AX Scl |000126.4-302549 |UV | 15. | 17. | |B | | | | | |71076 71076| +740078 |AY Scl |000419.2-303935 |EA | 8.98 | 9.88 | |J | | | | | |73306 UCAC2| +740079 |AZ Scl |005301.7-362021 |BE | 12.32 | 12.54 | |V | | | | | |73307 CoD | +740080 |BB Scl |013501.0-295437 |E | 7.10 | 7.17 | |V | | | | | |73055 CoD | +740081 |BC Scl *|002718.0-335255 |LB: | 8.00 | 8.10 | |Hp| | | | | |HIP HIP | +740082 |BD Scl |003225.2-245235 |EB | 10.12 | 10.39 | |Hp| | | | | |HIP HIP | +740083 |BE Scl |012133.0-290753 |EW | 10.41 | 10.84 | |Hp| | | | | |HIP HIP | +740084 |BF Scl |012401.1-373559 |SRD | 9.01 | 9.23 | |Hp| | | | | |HIP HIP | +740085 |BG Scl |013411.3-295722 |SRB | 8.72 | 8.96 | |Hp| | | | | |HIP HIP | +740086 |BH Scl |013418.4-272147 |EA | 7.942 | 8.182 | |Hp| | | | | |HIP HIP | +740087 |BI Scl *|013423.4-281412 |LB: | 6.92 | 7.01 | |Hp| | | | | |HIP HIP | +740088 |BK Scl |013558.9-362713 |LB: | 7.61 | 7.72 | |Hp| | | | | |HIP HIP | +740089 |BL Scl |014533.2-262350 |LB: | 7.68 | 7.80 | |Hp| | | | | |HIP HIP | +740090 |BM Scl |230735.3-360418 |LB: | 8.28 | 8.38 | |Hp| | | | | |HIP HIP | +740091 |BN Scl |230742.8-301400 |EA | 8.96 | 9.33 | |Hp| | | | | |HIP HIP | +740092 |BO Scl |231007.5-335433 |LB | 8.08 | 8.22 | |Hp| | | | | |HIP HIP | +740093 |BP Scl |231016.6-352356 |LB: | 8.07 | 8.19 | |Hp| | | | | |HIP HIP | +740094 |BQ Scl |231942.3-312118 |LB: | 8.93 | 9.08 | |Hp| | | | | |HIP HIP | +740095 |BR Scl |232432.2-252205 |LB: | 9.74 | 9.92 | |Hp| | | | | |HIP HIP | +740096 |BS Scl |232825.2-252514 |DSCTC | 6.95 | 6.97 | |Hp| | | | | |HIP HIP | +740097 |BT Scl |233131.1-285637 |LB: | 8.87 | 8.98 | |Hp| | | | | |HIP HIP | +740098 |BU Scl |235927.9-292907 |LB: | 5.70 | 5.72 | |Hp| | | | | |HIP HIP | +740099 |BV Scl |012527.7-284656 |ACV | 8.36 |( 0.04 )| |V | | | | | |75026 CoD | +740100 |BW Scl |235300.8-385146 |NL | 16.20 | 16.54 | |V | | | | | |75247 75248| +740101 |BX Scl |234354.5-281835 |SXPHE | 13.42 | 13.71 | |V | | | | | |76252 76252| +740102 |BY Scl |235132.2-254547 |SXPHE: | 13.83 |( 0.05 )| |V | | | | | |76252 76252| +740103 |BZ Scl |011143.2-255730 |RS | 9.64 | 9.73 | |V | | | | | |77014 DM | +740104 |CC Scl |231531.9-304847 |UGSU | 13.4 | 17.3 | |V | | | | | |77210 GSC22| +740105 |CD Scl |000620.8-351713 |RRAB | 12.7 | 14.2 | |V |52068.835 | | 0.57769 |20 |A0 |78130 78004| +740106 |CE Scl *|003133.5-361625 |EA | 9.70 | 9.92 | 9.75 |V |48635.666 | | 2.277687 | |F3V |78011 DM | +740107 |CF Scl |003307.3-320120 |RS: | 9.78 | 10.10 | |V | | | 27.6 | |G1V |78012 DM | +740108 |CG Scl |005526.8-373126 |EA | 8.67 | 9.16 | |V |52227.588 | | 11.03574 | |G5V |78011 DM | +740109 |CH Scl |005743.8-261322 |EA: | 9.99 | 10.18 | |V |51881.544 | | 1.577216 | |F2V |78011 DM | +740110 |CI Scl *|010343.8-302355 |EA | 8.78 | 9.0 | 8.92 : |V |52559.740 | | 14.7104 |03 : |F5/F6V |79006 DM | +740111 |CK Scl |011339.4-261709 |SRB | 10.4 | 11.1 | |V | | | 50.7 | | |79064 79118| +740112 |CL Scl |012459.8-343858 |RRAB | 13.0 | 14.5 | |V |53700.6062 | | 0.426405 |13 | |79100 79101| +740113 |CM Scl *|233603.6-323724 |EA | 8.81 | 8.93 : | 8.92 : |V |48077.581 | | 10.28857 |03 |F7V |79009 DM | +740114 |CN Scl |234022.9-381858 |RRAB | 12.55 | 13.65 | |V |52990.561 | | 0.58589 |20 | |79064 79080| +740115 |CO Scl |001217.1-351114 |LB | 10.7 | 11.7 | |V | | | | | |80001 DM | NL80_1 +740116 |CP Scl *|002449.4-274419 |EW | 12.39 | 13.15 | 13.01 |V |51868.265 | | 0.313661 | | |80036 GSC | NL80_1 +740117 |CQ Scl *|002821.3-290405 |EW | 11.97 | 12.51 | 12.40 |V |51868.195 | | 0.269892 | | |80036 GSC | NL80_1 +740118 |CR Scl *|004430.2-360629 |EW | 9.58 | 9.71 | 9.68 |V |51868.064 | | 0.246537 | | G5 |80036 DM | NL80_1 +740119 |CS Scl |005923.5-263252 |RRAB | 17.3 |( 0.61 )| |R |52066.737 | | 0.5974 : |14 | |80071 80071| NL80_1 +740120 |CT Scl *|011600.6-254233 |EW | 11.91 | 12.12 | 12.08 |V |52235.550 | | 0.406798 | | A7 |80015 GSC | NL80_1 +740121 |CU Scl |014226.4-302737 |RRC | 12.1 | 12.6 | |V |53355.7239 | | 0.377317 |40 | |80001 DM | NL80_1 +740122 |CV Scl |230930.5-354717 |RRAB | 12.05 | 12.80 | |V |51870.9 | | 0.593485 |18 | |80002 DM | NL80_3 +740123 |CW Scl |232801.1-335952 |EW | 12.13 | 12.87 | 12.8 |V |52940.676 | | 0.385588 | | |80365 80365| NL80_3 +740124 |CX Scl *|234520.2-310025 |E+DSCTC | 10.91 | 11.20 | 11.10 |V |52069.1521 | | 0.8834334 | | |80281 DM | NL80_3 +749001 |alf Scl |005836.4-292127 |SXARI | 4.31 |( 0.04 u )| |V | | | | | |73308 CoD | +749007 |eta Scl |002755.7-330026 |LB | 4.80 | 4.90 | |V | | | | |M4IIIa |04456 CoD | +749018 |sig Scl |010226.4-313307 |ACV: | 5.50 |( 0.03 u )| |V | | | | | |73308 CoD | +750001 |R Sct *|184728.9-054219 |RVA | 4.2 | 8.6 | |V |44872. | | 146.5 | |G0Iae-K2p(M3)Ibe |00001 00002| +750002 |S Sct *|185020.0-075427 |SRB | 9.63 |< 10.9 | |B | | | 148.0 | |C6,4(N3) |00444 00884| +750003 |T Sct |185527.6-081110 |SRB | 11.1 | 12.0 | |p | | | 122. : | |C7,3(N3) |00444 04231| +750004 |U Sct *|185427.2-123635 |EB/SD | 10.08 | 11.04 | 10.31 |V |44468.6658 | | 0.95498575 | |F0 |00001 00097| +750005 |V Sct |184808.8-120731 |M | 12. |< 16. | |p |35988. | | 252.9 | |M3IIIe |03122 01383| +750006 |W Sct *|182433.5-133913 |EA/DM | 9.92 | 10.57 | 10.1 |V |20665.47 | | 10.2703 |12 *|B3n+B0 |01384 08953| +750007 |X Sct *|183119.8-130629 |DCEP | 9.50 | 10.42 | |V |34905.58 | | 4.19807 |31 |F6-G2 |00004 01918| +750008 |Y Sct *|183803.3-082208 |DCEP | 9.22 | 10.02 | |V |34947.20 | | 10.341504 |46 |F8-G3 |02309 01918| +750009 |Z Sct *|184257.3-054915 |DCEP | 9.05 | 10.16 | |V |36247.160 | | 12.901325 |40 |F8-G4 |09667 01918| +750010 |RR Sct |184055.7-040504 |CST: | 10.2 | | |p | | | | |B9Ib |00444 09940| +750011 |RS Sct *|184911.3-101428 |EB/SD | 9.78 | 10.91 | 10.08 |V |44437.1658 | | 0.6642384 | |F5 |09941 04231| +750012 |RT Sct |184937.3-102318 |LB: | 10.0 : | 10.6 | |V | | | | |M1-M2III |09942 00884| +750013 |RU Sct *|184156.4-040638 |DCEP | 8.82 | 10.02 | |V |31174.67 | | 19.70062 |36 |F4-G5 |09288 01918| +750014 |RV Sct |184425.2-131248 |LB: | 8.7 | 9.05 | |V | | | | |C4,4(R3/NB) |04018 08953| +750015 |RW Sct |185631.4-103131 |SRB | 10.0 | 11.5 | |p |29772. | | 116.7 | |M5 |01387 08953| +750016 |RX Sct *|183704.1-073612 |LB | 11. | 13. | |p | | | | |C5,5(N3) |01388 01388| +750017 |RY Sct *|182531.5-124124 |EB/GS | 9.12 | 9.72 | 9.56 |V |43342.42 | | 11.12471 | |O9.7Ibpeq |09943 08953| +750018 |RZ Sct *|182633.5-091206 |EA/GS | 7.34 | 8.84 | 7.47 |V |19261.1025 | | 15.1902079 |17 *|B3Ib |05774 05773| +750019 |SS Sct |184343.5-074352 |DCEP | 7.90 | 8.43 | |V |35315.625 | | 3.671253 |37 |F6-G0 |01386 03203| +750020 |ST Sct |185133.7-125541 |M | 11.5 |< 15.0 | |p |33858. | | 219.5 | |M4e |00966 00567| +750021 |SU Sct *|185252.1-123036 |DCEP | 13.8 | 15.7 | |p |41129.493 | | 1.467978 |25 | |07999 04231| +750022 |SV Sct |185341.0-141138 |M | 12.0 | 15.4 | |p |13103. | | 310. | |Se |09944 02452| +750023 |SW Sct |185352.7-123831 |M | 12.7 |< 16.5 | |p |35275. | | 453. | |M7 |04231 UCAC2| +750024 |SX Sct |185447.7-105808 |M | 14.0 |< 16.5 | |p |14241. | | 192.1 | | |01392 04231| +750025 |SY Sct |185033.9-104302 |EA/SD | 13.9 | 15.8 | |p |39321.07 | | 7.37683 |12 | |07806 07806| +750026 |SZ Sct |185351.2-123100 |SRA | 14.0 |< 16.8 | |p |39311. | | 302.22 | |C |07806 07806| +750027 |TT Sct |185449.3-121121 |RRAB | 13.8 | 15.5 | |p |28671.532 | | 0.45293934 |10 | |07806 06286| +750028 |TU Sct |185744.9-125527 |SRA | 14.4 | 16.6 | |p |24760. | | 128. | | |04231 UCAC2| +750029 |TV Sct |185802.2-122728 |SR | 14.9 |< 17.0 | |p |40458. | | 295.6 | | |07806 07806| +750030 |TW Sct |185902.8-150032 | | 14.0 | 15.2 | |p | | | | | |01607 06286| +750031 |TX Sct *|182814.5-111509 |DCEP: | 12.5 | 14.5 | |p |25830. | | 24.344 |20 | |09729 09729| +750032 |TY Sct *|184207.9-041737 |DCEP | 10.31 | 11.25 | |V |37377.090 | | 11.05302 |47 |F7-G5 |01386 00494| +750033 |TZ Sct |185314.9-114957 |LB | 13.9 | 15.7 | |p | | | | |M5 |04231 UCAC2| +750034 |UU Sct |185427.5-135059 | | 15.2 | 16.0 | |p | | | | | |01607 UCAC2| +750035 |UV Sct |185523.7-124657 |SR | 14.4 | 16.0 | |p | | | 102. | | |04231 GSC22| +750036 |UW Sct |185633.1-103300 |I | 14.1 | 14.8 | |p | | | | | |04231 UCAC2| +750037 |UX Sct |185700.8-143947 |SRA | 14.5 | 15.8 | |p |27622. | | 204. | | |04233 04233| +750038 |UY Sct |182736.5-122759 |SRC | 11.2 | 13.3 | |p | | | 740. : | |M4Ia-Iab |07806 07806| +750039 |UZ Sct *|183122.4-125543 |DCEP | 10.79 | 11.76 | |V |41101.5 | | 14.7442 |37 |G0-G4 |07934 00884| +750040 |VV Sct *|183153.5-141112 |M | 14.0 |< 16.5 | |p |23540. | | 440. :/N| | |01395 UCAC2| +750041 |VW Sct *|183223.1-095510 |M | 10.6 | 18.0 | |p |34616. | | 234.0 | |M4-M7 |04231 02452| +750042 |VX Sct *|183359.6-115458 |EA/GS: | 13.6 | 14.2 | |p |27926.8 | | 33.623 |09 | |01386 UCAC2| +750043 |VY Sct |183659.4-142218 |EA/SD | 13.5 | 17.5 | |p |28369.268 | | 2.64510 |17 | |01396 06286| +750044 |VZ Sct *|183658.5-124431 |EB | 11.8 | 13.0 | 12.0 |V |28368.260 | | 2.19612 | | |01384 00279| +750045 |WW Sct |183814.9-103413 |M | 12.0 |< 16.5 | |p |23954. | | 250. | |M6.5 |01395 06286| +750046 |WX Sct |183841.1-141643 |M | 13.5 |< 16.0 | |p |23667. | | 263. | | |01395 06286| +750047 |WY Sct *|183913.4-102035 |RRAB | 13.8 | 16.1 | |p |39326.495 | | 0.585816 |25 | |07806 07806| +750048 |WZ Sct |183952.2-142026 |CEP | 15.5 | 16.5 | |p | | | | | |01395 UCAC2| +750049 |XX Sct |183937.0-064306 |IS: | 13.2 | 15.2 | |p | | | | | |01397 01397| +750050 |XY Sct *|184106.8-060404 |EW | 13.8 | 14.5 | 14.5 |p |28729.5293 | | 0.7852563 | | |01386 01386| +750051 |XZ Sct |184226.5-062339 |EA/SD | 14.0 | 15.0 | |p |27902.014 | | 1.99721 |15 | |04231 04231| +750052 |YY Sct |184314.4-102910 |M | 12.5 |< 16.0 | |p |23964. | | 348. | |M5.5 |04231 06286| +750053 |YZ Sct |184428.1-080710 |SRA | 14.9 |< 16.6 | |p |28054. | | 129. | | |04231 04231| +750054 |ZZ Sct |184437.7-101250 |EA | 14.6 |< 16.0 | |p |27929.9650 | | 2.199133 |11 | |01398 UCAC2| +750055 |AA Sct |184445.0-091331 |M | 12.4 | 15.3 | |p |43700. | | 264.7 |25 |M4-M6 |00001 06286| +750056 |AB Sct |184453.0-060738 |M | 13.3 |< 17.0 | |p |32454. | | 222.5 | |M2 |04231 06286| +750057 |AC Sct *|184601.5-101456 |EA/SD | 10.0 | 12.6 | 10.2 |V |28817.143 | | 4.797584 |14 |B9 |01386 04231| +750058 |AD Sct |184556.2-073235 |E | 12.5 | 13.2 | |p |23259.307 | | 1.076482 | | |00001 06286| +750059 |AE Sct *|184710.9-074356 |EA | 14.0 | 15.4 | |p |27984.521 | | 4.664435 |10 | |01386 UCAC2| +750060 |AF Sct |184826.7-135748 |RRAB | 11.9 | 13.3 | |p |27355.204 | | 0.5289735 |16 | |01400 01400| +750061 |AG Sct |185019.2-140921 | | 15.4 |< 16.2 | |p | | | | | |01607 GSC22| +750062 |AH Sct |185059.6-095513 |M | 13.5 |< 17.0 | |p |30833. | | 292. | |M5 |04231 04231| +750063 |AI Sct *|185052.4-064423 |M | 12.9 | 16.0 | |p |26410. | | 408. | |C8,2e |04231 06286| +750064 |AK Sct |185157.9-145507 | | 15.5 |< 16.4 | |p | | | | | |01618 UCAC2| +750065 |AL Sct |185211.1-144032 |CWA | 13.56 | 14.88 | |V |27385.69 | | 15.5751 |51 | |05375 00048| +750066 |AM Sct |185202.4-083117 |M: | 15.5 |< 17.0 | |p |24070. :| | | | |01395 GSC22| +750067 |AN Sct *|185239.5-063524 |RV: | 13.1 | 14.2 | |V |45213.17 | | 65.466 | | |09947 06286| +750068 |AO Sct |185312.0-124606 |M: | 14.2 |< 16.0 | |p |23669. | | 271.5 | | |01392 USNO | +750069 |AP Sct *|185308.8-084157 |SRA | 14.1 | 16.1 | |p |35007.4 | | 104.6 | |Me |09730 03613| +750070 |AQ Sct |185320.5-132634 | | 15.2 | 16.5 | |p | | | | | |01618 USNO | +750071 |AR Sct |185321.9-132613 | | 16.1 | 16.7 | |p | | | | | |01618 UCAC2| +750072 |AS Sct |185341.4-094648 |M | 13.3 |< 16.0 | |p |20300. | | 297.7 | | |01392 06286| +750073 |AT Sct |185358.3-151402 | | 15.2 | 15.7 | |p | | | | | |01618 UCAC2| +750074 |AU Sct *|185349.7-075534 |EA/SD | 14.4 | 16.6 | |p |28745.51 | | 5.45651 |15 : | |01402 01402| +750075 |AV Sct |185415.9-120017 |M | 12.8 | 16.6 | |p |27996. | | 242. | |M |04231 USNO | +750076 |AW Sct |185424.5-092400 |M | 12.8 |< 18.4 | |p |32775. | | 237. | |M6 |04231 06286| +750077 |AX Sct |185437.2-081553 |M | 13.5 | 16.5 | |p |25420. | | 200. | |M3e |00147 04231| +750078 |AY Sct |185441.6-101034 |RRAB | 14.0 | 16.4 | |p |38727.514 | | 0.54463178 |15 | |07806 01386| +750079 |AZ Sct |185452.8-122507 |RRAB | 15.6 | 17.3 | |p |38942.466 | | 0.332519 |26 | |07806 07806| +750080 |BB Sct |185558.5-105741 |M | 12.7 | 16.8 | |p |23359. | | 389.5 |45 |M9 |04231 06286| +750081 |BC Sct *|185605.4-074946 |M: | 14.6 |< 16.0 | |p |14130. | | 254.5 | |M5 |04231 2MASS| +750082 |BD Sct |185630.2-144237 | | 14.7 | 16.1 | |p | | | | | |01618 UCAC2| +750083 |BE Sct |185644.4-145432 | | 15.0 | 15.7 | |p | | | | | |01618 UCAC2| +750084 |BF Sct |185648.6-055700 |M | 14.0 |< 17.5 | |p |28633. | | 247.6 | |M3 |00001 04231| +750085 |BG Sct |185709.7-103741 |I | 14.2 | 15.2 | |p | | | | | |07806 07806| +750086 |BH Sct *|185726.4-073623 |EA/D: | 14.1 | 14.9 | 14.9 |p |27929.887 | | 3.207784 |10 | |04231 04231| +750087 |BI Sct *|185727.9-073128 |M | 13.2 | 16.7 | |p |32398. | | 244.6 | | |04231 2MASS| +750088 |BK Sct *|185751.5-082316 |M | 13.7 | 17.1 | |p |27626. | | 292. | |M5 |04231 06286| +750089 |BL Sct |185816.2-140542 | | 13.8 | 15.0 | |p | | | | | |01618 06286| +750090 |BM Sct |185836.2-125936 |L | 14.4 | 16.1 | |p | | | | | |07806 07806| +750091 |BN Sct *|185842.9-082029 |EA | 11.4 | 14.6 | |p |28745.175 | | 14.61155 |09 |A0Ib |01386 04231| +750092 |BO Sct |185848.7-101352 |SRB: | 14.0 | 17.5 | |p |34946. | | | |M5 |04231 04231| +750093 |BP Sct *|183109.8-092211 |LB | 13.1 | 17.6 | |p | | | | |S4,9:(M3) |04231 06286| +750094 |BQ Sct |183857.2-090411 |M | 14.4 |< 17. | |p |39653. | | 377.5 | | |07806 07806| +750095 |BR Sct |184400.7-075815 |M | 14.3 |< 17. | |p |37142. | | 315. | | |07806 07806| +750096 |BS Sct *|185206.0-061440 |EA/SD | 11.00 | 12.40 | 11.07 |V |40148.620 | | 3.8210104 |11 *|B7e-A0III |07237 00110| +750097 |BT Sct |184207.2-042042 |CST | 12. | | |p | | | | | |00742 | +750098 |BU Sct *|184607.4-043719 |RRAB | 12.4 | 14.5 | |p |40412.216 | | 0.420252 |20 | |07806 02274| +750099 |BV Sct |184623.1-050902 |CST | 13. | | |p | | | | | |01394 02452| +750100 |BW Sct |184720.9-044530 |CST | 13.7 | | |p | | | | |F6 |01394 01405| +750101 |BX Sct *|185009.2-042205 |DCEP | 11.7 | 12.62 | |V |27901.83 | | 6.41133 |33 |F6-G0 |02274 02274| +750102 |BY Sct |185115.6-074821 |LB | 11.1 | 12.0 | |p | | | | | |04231 06286| +750103 |BZ Sct |185733.4-054756 |SR: | 12.8 | 14.6 | |p | | | | | |07806 04231| +750104 |CC Sct | | | | | | | | | | | | |=AL Sct +750105 |CD Sct *|185211.9-142855 |EW | 13.5 | 13.7 | 13.7 |p |26567.353 | | 0.6063230 | | |01400 00048| +750106 |CE Sct |184559.5-053816 |IS: | 14.3 |< 17. | |p | | | | | |07806 07806| +750107 |CF Sct *|184827.9-082212 |EA/DS | 13.4 | 15.0 | |p |29434.9 | | 31.9415 |07 | |01386 04231| +750108 |CG Sct |185149.1-081904 |M | 12.6 | 17.5 | |p |28744. | | 408. | |M7 |04231 04231| +750109 |CH Sct *|185255.4-084232 |M | 11.2 | 16.2 | |V |35327. | | 190.48 |48 |Me |03613 03613| +750110 |CI Sct |185317.0-100834 |M | 13.4 | 16.2 | |p |30967. | | 178. | |M4 |04231 04231| +750111 |CK Sct *|184100.7-060550 |DCEP | 10.30 | 10.88 | |V |40855.25 | | 7.41522 |32 |G |02309 BD | +750112 |CL Sct *|184111.5-070435 |EA/DM: | 14.0 | 14.7 | |p |28753.391 | | 1.638566 |22 *| |01407 01407| +750113 |CM Sct *|184226.8-052027 |DCEP | 10.79 | 11.49 | |V |35111.320 | | 3.916977 |25 | | 01407| +750114 |CN Sct *|184230.5-041950 |DCEP | 12.13 | 12.78 | |V |28670.16 | | 9.9923 |48 | |01407 01407| +750115 |CO Sct *|184326.1-104427 |CWA | 13.64 | 15.11 | |V |28776.66 | | 17.13799 |34 | |07806 01407| +750116 |CP Sct |184411.7-081407 |EA/DM: | 14.5 | 15.1 | |p |29015.525 | | 1.79524 |20 *| |01407 01407| +750117 |CQ Sct |184943.7-094856 |EA/SD | 15.0 | 16.7 | |p |28671.491 | | 2.550086 |09 | |01407 01407| +750118 |CR Sct *|184947.6-093011 |EA/D | 11.6 | 12.1 | 12.1 |p |28069.626 | | 4.192325 |06 *| |01407 01407| +750119 |CS Sct |185151.9-054443 |EA/DS | 14.6 |< 15.6 | |p |28777.83 | | 16.5347 |08 | |01407 01407| +750120 |CT Sct *|185421.6-060017 |EA/SD | 10.9 | 11.9 | 11.1 |p |28727.374 | | 4.95360 |15 |B7V(n) |01407 04231| +750121 |CU Sct |185510.8-095950 |RRAB | 14.5 | 15.5 | |p |28774.294 | | 0.4944679 |20 | |01407 01407| +750122 |CV Sct |185528.7-083342 |EA | 14.9 |< 15.7 | |p |28780.50 | | 5.25581 |10 | |01407 01407| +750123 |CW Sct *|185541.7-055803 |EB/DM | 9.8 | 10.2 | 10.1 |p |27978.655 | | 1.786183 | |B9 |01407 04231| +750124 |CX Sct |185546.4-075222 |RRAB | 14.7 | 15.7 | |p |28755.344 | | 0.4497060 |11 | |01407 01407| +750125 |CY Sct |185552.3-053117 |EA/SD: | 14.0 |< 15.4 | |p |28727.42 | | 2.866296 |08 | |01407 01407| +750126 |CZ Sct | | | | | | | | | | | | |=V1706 Aql +750127 |DD Sct *|185821.9-071216 |EA/SD | 16.6 | 17.9 | |p |27990.823 | | 0.512547 | | |09955 01402| +750128 |DE Sct *|185045.0-081216 |EW/KW | 15.8 | 16.3 | 16.3 |p |27990.7503 | | 0.443758 | | |01402 01402| +750129 |DF Sct |185100.1-080524 |RRAB | 16.5 | 17.7 | |p |28007.694 | | 0.62804 |18 | |01402 01402| +750130 |DG Sct *|185101.9-074650 |EA/D | 16.3 | 16.8 | |p |27987.66 | | 6.7999 : |12 | |01402 01402| +750131 |DH Sct |185101.6-075627 |RRAB | 16.8 | 18.3 | |p |28007.769 | | 0.76468 |17 | |01402 01402| +750132 |DI Sct |185120.2-081037 |EA | 16.4 | 17.6 | |p |28007.75 | | 20.78 /N| | |01402 01402| +750133 |DK Sct |185142.4-054334 |EA/SD | 11.8 | 12.9 | |p |28755.296 | | 1.217744 |14 | |01404 01404| +750134 |DL Sct *|185144.5-080225 |EW/KW | 15.4 | 15.9 | 15.9 |p |27990.8568 | | 0.466810 | | |01402 01402| +750135 |DM Sct |185149.4-081119 |M | 15.2 | 18.0 | |p |29437. | | 278. | | |04231 01402| +750136 |DN Sct |185155.6-073501 |RRAB | 16.1 | 17.4 | |p |28008.810 | | 0.566083 |16 | |01402 01402| +750137 |DO Sct |185204.3-074817 |SRA | 16.2 | 18.8 | |p |28000. | | 200. : | | |01402 01402| +750138 |DP Sct |185205.8-074031 |I | 15.8 | 16.2 | |p | | | | | |01402 01402| +750139 |DQ Sct |185236.6-075911 |M: | 17.8 |< 19.0 | |p |27950. | | | | |01402 01402| +750140 |DR Sct |185238.1-075659 |DSCT | 17.5 | 18.2 | |p |27986.825 | | 0.1225664 |30 | |01402 01402| +750141 |DS Sct |185257.6-075239 |I | 16.8 | 17.8 | |p | | | | | |01402 01402| +750142 |DT Sct *|185257.6-073624 |EB | 16.3 | 16.9 | 16.5 |p |28008.857 | | 0.88402 | | |01402 01402| +750143 |DU Sct |185305.8-075339 |I | 17.3 | 18.0 | |p | | | | | |01402 01402| +750144 |DV Sct *|185341.5-080142 |EA/DM: | 17.1 | 17.8 | 17.8 |p |27987.37 | | 13.158 |20 | |01402 01402| +750145 |DW Sct *|185625.5-065911 |EW | 15.8 | 16.5 | 16.4 |p |27989.899 | | 0.558552 | | |01402 01402| +750146 |DX Sct |185648.1-064157 |M | 14.7 | 18.9 | |p |33118. | | 290. | |M6 |04231 01402| +750147 |DY Sct |185711.8-071134 |M | 16. |< 18.4 | |p | | | | | |01402 01402| +750148 |DZ Sct |185719.8-063520 |RRAB | 16.0 | 16.8 | |p |27989.846 | | 0.63600 |20 | |01402 01402| +750149 |EE Sct *|185721.2-070827 |EA/SD | 15.2 | 16.0 | 15.3 |p |28007.889 | | 0.894935 |15 | |01402 01402| +750150 |EF Sct |185720.8-063653 |RRAB | 17.4 | 18.0 | |p |27989.849 | | 0.59774 |16 | |01402 01402| +750151 |EG Sct |185730.3-064548 |SRB: | 15.7 | 17.4 | |p | | | 70. : | | |01402 01402| +750152 |EH Sct *|185739.8-065300 |EA/SD | 14.8 | 17.5 | 15.0 |p |28016.823 | | 1.562137 |15 | |01402 01402| +750153 |EI Sct |185802.2-070049 |M | 16. |< 18.3 | |p |29430. | | 1540. /N| | |01402 01402| +750154 |EK Sct *|185806.0-070650 |EW/KW | 15.4 | 16.1 | 16.0 |p |27990.702 | | 0.4651678 | | |01402 01402| +750155 |EL Sct *|185806.1-063242 |RRAB | 16.3 | 17.6 | |p |28007.761 | | 0.45865 |30 | |01402 01402| +750156 |EM Sct |185819.2-071210 |RRAB | 15.5 | 16.7 | |p |28015.861 | | 0.532088 |14 | |01402 01402| +750157 |EN Sct *|185841.7-063624 |EB: | 16.6 | 17.2 | 17.2 |p |28008.93 | | 2.2790 : | | |01402 01402| +750158 |EO Sct |185842.2-065658 |RRC | 16.9 | 17.5 | |p |27988.75 | | 0.324666 |40 | |01402 01402| +750159 |EP Sct *|185843.1-065347 |EA/SD | 15.5 | 16.9 | 15.6 |p |27955.03 | | 0.984836 |20 | |01402 01402| +750160 |EQ Sct *|182702.0-115919 |EB/KE: | 11.7 | 12.6 | 12.6 : |p |30918.267 | | 1.3217788 | |B |01408 00552| +750161 |ER Sct *|184243.9-074133 |EA/KE: | 9.1 | 9.4 | 9.3 |p |27335.483 | | 1.361041 |18 *|A0 |00714 BD | +750162 |ES Sct |185132.7-140605 |RRAB | 14.0 | 15.4 | |p |27334.283 | | 0.4161623 |20 | |01400 01400| +750163 |ET Sct |185448.4-140214 |RRAB | 15.1 | 16.1 | |p |27366.308 | | 0.5786833 |18 | |01400 01400| +750164 |EU Sct *|185613.2-041230 |NA | 8.0 | 17.0 | |p |33135. |1949 | | |pec(NOVA) |04231 08953| +750165 |EV Sct *|183639.6-081105 |DCEPS | 9.90 | 10.32 | |V |43292.274 | | 3.09099 |50 |G0II |09003 02855| +750166 |EW Sct *|183751.1-064749 |CEP(B) | 7.77 | 8.24 | |V | | | | |G5 |09959 BD | +750167 |EX Sct *|183951.2-075917 |EA/DM: | 13.1 | 13.6 | |p |27932.896 | | 1.582088 |17 | |01397 01397| +750168 |EY Sct *|184219.8-061847 |EA/KE: | 11.9 | 12.7 | 12.4 |p |27953.949 | | 1.166382 |13 *| |01397 01397| +750169 |EZ Sct *|184345.8-050953 |EB/KE | 12.0 | 12.9 | 12.5 |p |27901.996 | | 1.134676 | | |01397 01397| +750170 |FF Sct *|184419.8-061627 |EB/KE: | 13.6 | 14.2 | 14.2 |p |28753.343 | | 1.219110 | | |01397 01397| +750171 |FG Sct *|184503.6-060616 |EW/KW | 13.66 | 14.76 | 14.70 |B |44752.9378 | | 0.270548 | | |09960 01397| +750172 |FH Sct *|184514.8-092536 |RCB | 13.4 | 16.8 | |p | | | | | |09738 01397| +750173 |FI Sct |184619.2-063407 |CWA | 13.52 | 14.90 | |V |28728.7 | | 14.86173 |33 | |07806 01397| +750174 |FK Sct *|184903.7-080549 |EA/SD | 13.8 | 15.5 | 14.4 : |p |27927.867 | | 1.193229 |19 | |01397 01397| +750175 |FL Sct *|184956.3-102632 |EA | 13.6 | 14.6 | 13.8 |p |27930.00 | | 2.32063 |17 *| |01397 01397| +750176 |FM Sct *|185053.1-083111 |EA/KE: | 12.5 | 13.3 | 12.9 |p |28833.338 | | 1.451404 |16 | |01397 01397| +750177 |FN Sct *|185046.8-051208 |EA/SD | 12.7 |< 15.2 | |B |27963.880 | | 4.167153 |13 |B3Ve |01397 01397| +750178 |FO Sct *|185243.1-073341 |EA | 14.3 | 14.7 | |p |27988.850 | | | | |01402 01402| +750179 |FP Sct |185412.5-084156 |M | 14.9 |< 18.5 | |p |28745. | | 372. | |M3 |01397 01397| +750180 |FQ Sct |185720.2-094550 |SRB | 13.1 | 15.7 | |p | | | 150. : | |M7 |07906 01397| +750181 |FR Sct *|182322.8-124052 |ZAND | 11.6 | 12.91 | |B | | | | |M2.5epIab+B |00351 00552| +750182 |FS Sct |185816.9-052405 |N | 10.1 | 16.6 | |p |34191. :|1952 | | |pec(NOVA) |09962 03151| +750183 |FT Sct |184438.2-042458 |DCEP | 16.0 | 17.3 | |p |41127.52 | | 5.25537 |30 | |07806 02274| +750184 |FU Sct |184654.6-044122 |EA/SD: | 14.6 |< 16.3 | |p |32853.167 | | 1.661503 |18 | |07806 02274| +750185 |FV Sct |183451.6-125527 |N | 7. : | 21. | |p |37070. :|1960 | | |pec(NOVA) |04228 04228| +750186 |FW Sct |184149.8-110214 |M | 13.1 | 16.1 | |p |33460. | | 265. |43 |M6.5 |04231 04231| +750187 |FX Sct |184156.6-105721 |RR | 14.3 | 15.0 | |p | | | | | |04231 04231| +750188 |FY Sct |184258.5-105929 |SRB | 14.0 | 18.0 | |p | | | 346. : | |M6 |04231 04231| +750189 |FZ Sct |184304.3-094800 |EA/SD: | 13.1 | 14.3 | |p |30988.30 | | 1.05 : | | |04231 04231| +750190 |GG Sct |184422.9-071558 |SRB | 14.2 | 14.9 | |p |28035. :| | 109. : | |M6 |04231 04231| +750191 |GH Sct |184432.5-072924 |SRA | 15.4 | 17.6 | |p |28020. | | 215. | |M5.5 |04231 04231| +750192 |GI Sct *|184452.8-070109 |EB | 13.9 | 14.7 | 14.5 |p |29050.515 | | 1.57438 | | |04231 04231| +750193 |GK Sct |184529.1-075227 |RV: | 14.9 |< 16.4 | |p | | | 40. : | |M |04231 04231| +750194 |GL Sct |184548.4-062514 |N: | 13.6 |< 16.8 | |p |20629. :|1915 | | | |04231 04231| +750195 |GM Sct *|184557.5-101603 |EA/D | 13.0 | 13.8 | 13.8 : |p |27962.85 | | 2.73070 |12 | |04231 04231| +750196 |GN Sct |184617.1-102543 |LB | 15.4 | 16.0 | |p | | | | |M5 |04231 04231| +750197 |GO Sct |184623.6-103049 |M | 14.9 |< 17.0 | |p |28670. | | 408. | |M6.5 |04231 04231| +750198 |GP Sct |184629.7-062923 |E | 15.0 | 16.5 | |p | | | | | |04231 04231| +750199 |GQ Sct |184748.0-081851 |E | 15.8 | 17.5 | |p | | | | | |04231 04231| +750200 |GR Sct |184746.5-062029 |RRAB | 14.1 | 15.0 | |p |26593.664 | | 0.334 | | |04231 04231| +750201 |GS Sct |184753.8-074848 |LB | 15.9 | 16.7 | |p | | | | |M6 |04231 04231| +750202 |GT Sct |184811.2-082655 |SRA | 14.6 | 15.2 | |p |27980. | | 72. : | |M6 |04231 04231| +750203 |GU Sct |184831.0-081237 |SRA | 15.2 | 16.7 | |p |27994. | | 362. | |M4.5 |04231 04231| +750204 |GV Sct |184839.8-074118 |LB | 14.0 | 15.4 | |p | | | | |M5 |04231 04231| +750205 |GW Sct |184917.8-101232 |RRAB | 16.0 | 16.9 | |p |32384.5 | | 0.465 : | | |04231 04231| +750206 |GX Sct |184944.4-104357 |RRAB | 15.0 | 15.8 | |p |28777.36 | | 0.66095 |11 | |04231 04231| +750207 |GY Sct |184944.5-094505 |LB | 15.1 | 15.7 | |p | | | | |M5 |04231 04231| +750208 |GZ Sct |184951.3-093930 |M | 13.5 |< 16.5 | |p |26200. | | 570. | |M6.5: |04231 04231| +750209 |HH Sct |185001.8-112104 |RR | 15.6 | 16.4 | |p | | | 0.9 : | | |04231 04231| +750210 |HI Sct *|185001.2-102535 |EA | 15.4 | 16.0 | |p |32385.318 | | | | |04231 04231| +750211 |HK Sct |185003.5-105659 |M | 14.4 | 17.4 | |p |28005. | | 234. | | |04231 04231| +750212 |HL Sct *|185013.0-102438 |EW | 13.0 | 13.6 | 13.4 |p |28745.461 | | 0.52125 | | |04231 04231| +750213 |HM Sct |185013.2-103527 |SRA | 14.9 | 15.8 | |p |30880. | | 88. : | |M5 |04231 04231| +750214 |HN Sct |185015.4-110203 |L | 13.5 | 15.0 | |p | | | | | |04231 04231| +750215 |HO Sct |185013.7-084037 |M | 14.8 |< 16.9 | |p |30946. | | 266. | | |04231 04231| +750216 |HP Sct |185014.8-090702 |M | 14.7 |< 16.6 | |p |32420. | | 204. | |M5 |04231 04231| +750217 |HQ Sct |185021.5-105950 |LB: | 15.0 | 15.7 | |p | | | | |M5.5 |04231 04231| +750218 |HR Sct |185023.7-082642 |M | 14.7 | 17.1 | |p |27665. | | 215. | |M4.5 |04231 04231| +750219 |HS Sct |185024.4-082517 |LB | 13.2 | 15.3 | |p | | | | |M4 |04231 04231| +750220 |HT Sct |185031.3-084253 |SRA | 14.8 | 16.6 | |p |30869. | | 228. | |M6 |04231 04231| +750221 |HU Sct |185034.6-091335 |SRA | 15.9 | 16.7 | |p |30965. | | 111. | |M6.5 |04231 04231| +750222 |HV Sct |185032.8-080724 |LB | 15.2 |< 15.7 | |p | | | | |M4 |04231 04231| +750223 |HW Sct |185039.3-091130 |RR | 16.1 | 16.7 | |p | | | 0.5 : | | |04231 04231| +750224 |HX Sct |185050.3-105459 |M | 13.6 |< 16.6 | |p |31272. | | 273. | |M6 |04231 04231| +750225 |HY Sct |185050.5-084011 |LB | 15.4 | 16.1 | |p | | | | |M5 |04231 04231| +750226 |HZ Sct |185052.0-091257 |SRA | 15.9 |< 16.6 | |p |28008. | | 378. | |M6 |04231 04231| +750227 |II Sct |185059.2-110122 |LB: | 16.2 | 17.5 | |p | | | | |M4 |04231 04231| +750228 |IK Sct |185057.3-094142 |RRAB | 15.5 | 16.8 | |p |32384.383 | | 0.415253 |17 | |04231 04231| +750229 |IL Sct |185057.5-083718 |LB | 15.1 | 15.8 | |p | | | | |M6 |04231 04231| +750230 |IM Sct |185100.0-090723 |SR | 15.7 | 16.4 | |p |30830. | | | | |04231 04231| +750231 |IN Sct |185102.1-081531 |EW | 15.6 | 17.0 | |p | | | 0.898 : | | |04231 04231| +750232 |IO Sct |185110.4-113540 |SRB | 14.5 | 15.8 | |p |30830. | | 170. : | |M5 |04231 04231| +750233 |IP Sct |185114.0-110610 |E: | 15.6 | 16.6 | |p | | | 0.5 : | | |04231 04231| +750234 |IQ Sct |185115.7-101552 |RRC | 15.3 | 15.6 | |p |28774.213 | | 0.284689 |45 | |04231 04231| +750235 |IR Sct |185113.0-083224 |RR | 15.9 | 16.5 | |p | | | 0.65 : | | |04231 04231| +750236 |IS Sct *|185118.3-100234 |SR | 15.7 | 16.4 | |p |28031. | | | |M4 |04231 04231| +750237 |IT Sct *|185109.2-060822 |LB | 15.1 | 17.0 | |p | | | | | |04231 04231| +750238 |IU Sct |185114.6-081614 |SRA | 15.3 | 16.8 | |p |27977. | | 295. | |M |04231 04231| +750239 |IV Sct |185122.0-093902 |LB | 15.6 | 16.1 | |p | | | | |M5 |04231 04231| +750240 |IW Sct |185118.6-080918 |LB | 13.9 | 14.5 | |p | | | | | |04231 04231| +750241 |IX Sct |185123.9-085536 |LB | 15.7 | 16.7 | |p | | | | |M6 |04231 04231| +750242 |IY Sct |185131.4-115522 |RR | 14.7 | 16.2 | |p | | | 0.93 /N| | |04231 04231| +750243 |IZ Sct |185125.2-090114 |LB: | 16.0 | 17.0 | |p | | | | |M7 |04231 04231| +750244 |KK Sct |185137.1-100854 |M | 14.9 | 18.5 | |p |27620. | | 279. | |M6-7 |04231 04231| +750245 |KL Sct |185133.1-081533 |LB | 14.5 | 15.2 | |p | | | | |M5 |04231 04231| +750246 |KM Sct |185136.8-083130 |RR | 15.6 | 16.2 | |p | | | 0.3 : | | |04231 04231| +750247 |KN Sct |185141.1-093706 |LB | 16.0 | 16.9 | |p | | | | |M6 |04231 04231| +750248 |KO Sct |185153.1-100436 |LB | 15.4 | 16.0 | |p | | | | |M4 |04231 04231| +750249 |KP Sct |185152.0-091919 |M | 15.3 | 19. : | |p |27670. | | 247. | |M5 |04231 04231| +750250 |KQ Sct |185204.7-113606 |SR | 14.4 |< 16.3 | |p |33140. | | 259. | |S |04231 04231| +750251 |KR Sct |185203.1-100556 |RR | 15.6 | 16.6 | |p | | | 0.665 : | | |04231 04231| +750252 |KS Sct |185209.0-113105 |RR | 15.7 | 16.3 | |p | | | 0.4 : | | |04231 04231| +750253 |KT Sct |185207.0-095718 |RV: | 14.7 | 15.8 | |p | | | | |M3 |04231 04231| +750254 |KU Sct |185209.9-101155 |SRA | 15.8 |< 17.0 | |p |28395. | | 235. | | |04231 04231| +750255 |KV Sct |185216.2-105334 |RR | 14.1 | 14.6 | |p | | | 0.34 : | | |04231 04231| +750256 |KW Sct |185211.9-085125 |LB | 16.0 | 16.9 | |p | | | | |M5 |04231 04231| +750257 |KX Sct |185221.4-111605 |M | 14.8 | 18. | |p |28760. | | 275. | |M5.5 |04231 04231| +750258 |KY Sct |185217.1-090323 |M | 15.4 | 19. : | |p |28680. | | 319. | |M6 |04231 04231| +750259 |KZ Sct |185222.1-085338 |SRA | 16.4 | 16.9 | |p |27650. | | 86. | |M5 |04231 04231| +750260 |LL Sct *|185225.2-092048 |SR | 16.4 | 19.3 | |p |28708. | |> 300. | | |04231 04231| +750261 |LM Sct |185223.6-083022 |SR | 16.0 | 17.1 | |p |30932. | | 100. : | | |04231 04231| +750262 |LN Sct |185229.1-101235 |RR | 15.6 | 16.3 | |p |28727.483 | | 0.293465 |23 | |04231 04231| +750263 |LO Sct |185227.1-083823 |LB | 14.2 | 14.9 | |p | | | | |M5 |04231 04231| +750264 |LP Sct |185221.8-052353 |LB | 14.9 | 16.0 | |p | | | | |M5 |04231 04231| +750265 |LQ Sct |185234.9-105357 |EA/SD: | 15.7 | 16.7 | |p | | | 0.96 : | | |04231 04231| +750266 |LR Sct *|185233.1-084124 |SRA | 15.2 | 17.4 | |p |28013. | | 201. | |M4 |04231 04231| +750267 |LS Sct |185242.6-095144 |M | 14.2 |< 16.6 | |p |29890. | | 378. | |M |04231 04231| +750268 |LT Sct |185244.8-101721 |LB | 15.4 | 16.4 | |p | | | | |M4 |04231 04231| +750269 |LU Sct *|185243.2-092716 |RV: | 15.2 | 16.2 | |p | | | 375. : | |M4 |04231 04231| +750270 |LV Sct |185244.6-080432 |LB | 14.7 | 15.2 | |p | | | | |M5 |04231 04231| +750271 |LW Sct |185247.8-090559 |EA | 14.5 | 15.6 | |p |28774.34 :| | 5.1802 |13 | |04231 04231| +750272 |LX Sct |185246.8-074506 |LB | 15.6 | 16.7 | |p | | | | |M6 |04231 04231| +750273 |LY Sct |185252.5-085712 |RR | 15.7 | 16.8 | |p |32384.34 | | 0.480 | | |04231 04231| +750274 |LZ Sct *|185254.5-083917 |E | 15.3 | 16.2 | |p | | | | | |04231 04231| +750275 |MM Sct *|185257.1-082620 |EA/KE: | 15.1 | 16.0 | 15.8 |p |29072.364 | | 1.116372 |17 | |04231 04231| +750276 |MN Sct |185258.8-084206 |RR | 16.2 | 17.1 | |p | | | 0.55 : | | |04231 04231| +750277 |MO Sct |185259.1-090036 |LB | 15.1 | 15.7 | |p | | | | |M6 |04231 04231| +750278 |MP Sct *|185259.6-084223 |RRAB | 16.2 | 17.3 | |B |35284.988 | | 0.512030 |15 |A6.0-F4.0 |03613 03613| +750279 |MQ Sct |185301.9-072114 |E | 15.0 | 15.9 | |p | | | | | |04231 04231| +750280 |MR Sct *|185305.7-084112 |SRA | 14.5 | 16.2 | |B |34955.5 | | 116.29 |40 |M |09730 03613| +750281 |MS Sct |185257.3-045934 |LB | 15.1 | 15.8 | |p | | | | |M5 |04231 04231| +750282 |MT Sct |185312.0-110015 |LB | 16.4 | 17.4 | |p | | | | |M5 |04231 04231| +750283 |MU Sct |185317.5-091659 |LB: | 15.2 | 16.1 | |p | | | | | |04231 04231| +750284 |MV Sct |185319.9-082521 |SRA | 15.9 | 17.0 | |p |30960. | | 183. | |M6 |04231 04231| +750285 |MW Sct |185320.9-084248 |LB: | 15.3 | 16.6 | |p |28401. | | | |M4 |04231 04231| +750286 |MX Sct |185330.8-101508 |LB | 14.9 | 15.9 | |p | | | | |M4 |04231 04231| +750287 |MY Sct |185328.0-081603 |RRAB | 13.8 | 15.8 | |p |44140.581 | | 0.57390415 |10 | |09971 04231| +750288 |MZ Sct |185335.2-090015 |LB: | 13.5 | 14.5 | |p | | | | |M5.5 |04231 04231| +750289 |NN Sct |185341.7-105231 |RRC | 15.5 | 15.8 | |p |28776.360 | | 0.252587 |40 | |04231 04231| +750290 |NO Sct |185351.5-101322 |RR | 15.4 | 16.6 : | |p | | | 0.274 : | | |04231 04231| +750291 |NP Sct |185351.3-084210 |SRA | 14.6 | 16.7 | |p |28710. | | 205. | | |04231 04231| +750292 |NQ Sct |185403.1-092245 |RRC | 15.4 | 15.9 | |p |28755.367 | | 0.339634 |40 | |04231 04231| +750293 |NR Sct |185403.0-084328 |SRA | 15.9 | 16.7 | |p |30547. | | 96. | | |04231 04231| +750294 |NS Sct |185409.5-105528 |SRB | 16.3 | 17.2 | |p | | | | |M5 |04231 04231| +750295 |NT Sct |185407.4-080318 |CEP | 16.1 | 16.7 | |p | | | 1.37 | | |04231 04231| +750296 |NU Sct *|185408.0-081133 |M | 15.8 |< 18. | |p |28745. | | 140. | | |04231 04231| +750297 |NV Sct *|185412.8-085532 |SR | 15.4 | 16.4 | |p | | | 80. : | |M4 |04231 04231| +750298 |NW Sct |185424.9-143627 |M | 13.6 |< 16.0 | |p |26210. | | 300. : | | |04233 04233| +750299 |NX Sct |185422.1-101201 |RR | 15.6 | 17.3 | |p |32384.22 | | 0.640 | | |04231 04231| +750300 |NY Sct |185421.5-091340 |SRA | 15.0 | 17.1 | |p |30518. | | 187. | |M |04231 04231| +750301 |NZ Sct |185425.9-090922 |SRB | 15.4 | 16.4 | |p | | | 55. : | |M5 |04231 04231| +750302 |OO Sct |185424.5-080008 |LB | 15.7 | 16.6 | |p | | | | |M |04231 04231| +750303 |OP Sct |185426.9-084716 |LB: | 16.1 | 17.1 | |p | | | | |M: |04231 04231| +750304 |OQ Sct |185432.7-104828 |RRAB | 15.3 | 15.9 | |p |28774.309 | | 0.463659 |10 | |04231 04231| +750305 |OR Sct |185435.4-083054 |M | 15.2 | 18.4 | |p |33155. | | 301. | | |04231 04231| +750306 |OS Sct |185446.8-094353 |LB | 16.2 |< 18.5 | |p | | | | |M5 |04231 04231| +750307 |OT Sct |185438.4-055848 |RR | 15.4 | 16.7 | |p | | | | | |04231 04231| +750308 |OU Sct *|185445.6-082220 |M | 14.4 | 17.1 | |p |34213. | | 154. | | |04231 04231| +750309 |OV Sct |185445.6-060022 |M | 14.7 | 17.2 | |p |28750. | | 230. | |M5.5 |04231 04231| +750310 |OW Sct |185454.9-101709 |RRAB | 15.4 | 17.0 | |p |32384.456 | | 0.46292 |15 | |04231 04231| +750311 |OX Sct |185458.1-102611 |M | 15.0 | 17.5 | |p |30970. | | 304. | | |04231 04231| +750312 |OY Sct |185455.9-084019 |SRA | 15.6 | 17.1 | |p |30505. | | 283. | | |04231 04231| +750313 |OZ Sct |185458.5-090618 |SRA | 16.3 |< 17.1 | |p |29107. | | 355. | | |04231 04231| +750314 |PP Sct |185501.7-093408 |SRA | 16.1 | 17.3 | |p |28040. | | 60. : | |M5 |04231 04231| +750315 |PQ Sct |185502.3-084741 |M | 15.2 |< 18.0 | |p |28710. | | 200. : | |M5.5 |04231 04231| +750316 |PR Sct |185510.1-105746 |RR | 16.0 | 16.9 | |p | | | 0.46 : | | |04231 04231| +750317 |PS Sct |185507.6-084049 |SRA | 15.3 | 17.1 | |p |28365. | | 140. | | |04231 04231| +750318 |PT Sct *|185510.6-091509 |M | 15.0 | 17.6 | |p |32065. | | 247. | | |04231 04231| +750319 |PU Sct |185514.5-090916 |LB | 14.6 | 15.2 | |p | | | | |M4 |04231 04231| +750320 |PV Sct |185516.9-082939 |RRAB | 15.5 | 16.0 | |p |28750.348 | | 0.541233 |17 | |04231 04231| +750321 |PW Sct *|185524.5-101002 |LB | 15.3 | 16.8 | |p | | | | | |04231 04231| +750322 |PX Sct |185519.0-075602 |SRA | 15.3 | 15.7 | |p |32384. | | 181. | |M5 |04231 04231| +750323 |PY Sct |185522.9-082438 |SRA | 16.1 |< 17.6 | |p |28360. | | 365. | |M4 |04231 04231| +750324 |PZ Sct |185529.7-102846 |CEP | 14.6 | 15.8 | |p | | | 15. : | | |04231 04231| +750325 |QQ Sct |185530.0-100838 |SR | 15.8 | 16.8 | |p |29130. | | 150. : | |M5 |04231 04231| +750326 |QR Sct |185524.3-054448 |RR | 16.9 | 17.2 | |p | | | | | |04231 04231| +750327 |QS Sct |185536.4-101101 |RRAB | 14.8 | 15.9 | |p |27927.90 | | 0.60032 |40 | |04231 04231| +750328 |QT Sct |185538.3-091409 |RR | 15.8 | 16.7 | |p | | | 0.8 : | | |04231 04231| +750329 |QU Sct *|185533.4-053927 |SR:+E | 15.1 | 16.6 | |p | | | 180. : | |M5 |04231 04231| +750330 |QV Sct |185550.8-101148 |LB | 15.6 | 16.3 | |p | | | | |M5 |04231 04231| +750331 |QW Sct |185557.0-075657 |SRA | 14.2 |< 16.4 | |p |29054. | | 261. | | |04231 04231| +750332 |QX Sct |185608.2-101848 |LB | 14.4 | 15.3 | |p | | | | |M5 |04231 04231| +750333 |QY Sct |185618.5-101225 |LB | 15.0 | 15.9 | |p | | | | |M4 |04231 04231| +750334 |QZ Sct |185638.7-081205 |LB | 14.9 | 17. | |p | | | | | |04231 04231| +750335 |V0335 Sct |185640.9-074623 |SRA | 13.2 | 14.4 | |p |29434. | | 108. | | |04231 04231| +750336 |V0336 Sct |185640.4-080907 |SRA | 13.8 | 15.4 | |p |27995. | | 137. | |M5 |04231 04231| +750337 |V0337 Sct *|185642.7-082355 |SRA | 15.6 | 17.1 | |p |28340. | | 94. |32 |M4 |04231 04231| +750338 |V0338 Sct |185703.1-083900 |SRB | 14.8 | 15.5 | |p |29415. | | 90. : | |M5 |04231 04231| +750339 |V0339 Sct |185700.1-055301 |SRB: | 15.2 | 16.4 | |p |32390. | | 80. : | |M5.5 |04231 04231| +750340 |V0340 Sct *|185704.8-075219 |EW | 15.1 | 15.6 | 15.6 |p |28671.559 | | 0.5091412 | | |04231 04231| +750341 |V0341 Sct |185719.4-083343 |E | 15.3 | 15.8 | |p |27676.251 | | | | |04231 04231| +750342 |V0342 Sct |185723.1-081421 |LB | 15.2 | 15.8 | |p | | | | | |04231 04231| +750343 |V0343 Sct |185727.9-095243 |SRA | 15.4 | 17.1 | |p |28760. | | 42.5 : | |M5 |04231 04231| +750344 |V0344 Sct |185744.0-153205 |M | 12.8 |< 16.0 | |p |28688. | | 263. | | |04233 04233| +750345 |V0345 Sct |185730.4-061548 |ISB: | 15.3 | 16.3 | |p | | | | |M4 |04231 04231| +750346 |V0346 Sct |185732.3-061439 |SRA | 14.7 | 16.6 | |p |28000. | | 262. | |M5.5 |04231 04231| +750347 |V0347 Sct |185745.7-080047 |SRA | 15.1 | 16.8 | |p |30500. | | 300. : | |M |04231 04231| +750348 |V0348 Sct |185747.8-080906 |RR | 13.3 | 14.1 | |p | | | | | |04231 04231| +750349 |V0349 Sct |185744.4-060733 |ISB: | 15.4 | 16.4 | |p | | | | |M5 |04231 04231| +750350 |V0350 Sct |185752.8-081252 |RRAB | 14.8 | 15.7 | |p |27957.955 | | 0.656685 |22 | |04231 04231| +750351 |V0351 Sct |185756.3-080643 |M | 12.5 | 15.3 | |p |24000. | | 210. | |M5 |04231 04231| +750352 |V0352 Sct |185755.5-054914 |LB+E: | 16.0 | 16.9 | |p | | | | |M5.5 |04231 04231| +750353 |V0353 Sct |185806.9-094153 |RR | 16.8 | 17.8 : | |p |29113.258 | | | | |04231 04231| +750354 |V0354 Sct |185809.2-094338 |SR | 16.9 |< 18.0 | |p |33120. | | 182. : | |M5.5 |04231 04231| +750355 |V0355 Sct |185809.6-081502 |RR | 14.0 | 14.5 | |p |26593.622 | | 0.310554 |10 | |04231 04231| +750356 |V0356 Sct *|185811.2-073647 |EA | 12.0 | 12.4 | 12.3 |p |28755.340 | | 1.061441 |12 | |04231 04231| +750357 |V0357 Sct |185808.0-044146 |RR | 15.2 | 16.6 | |p | | | 0.467 : | | |04231 04231| +750358 |V0358 Sct |185812.8-061347 |E | 16.0 | 17.1 | |p | | | 1.1 : | | |04231 04231| +750359 |V0359 Sct |185822.7-095242 |RR | 15.5 | 16.0 | |p | | | | | |04231 04231| +750360 |V0360 Sct *|185827.1-101338 |SRA | 13.7 | 16.0 | |p |29520. | | 104. : | |M |04231 04231| +750361 |V0361 Sct |185840.6-153409 |SRA | 14.3 | 15.4 | |p |26124. | | 153. | | |04233 04233| +750362 |V0362 Sct *|185824.1-073853 |M | 15.4 | 18. | |p |28731. | | 340. : | |M5.5 |04231 04231| +750363 |V0363 Sct |185829.7-100713 |RR | 15.7 | 16.6 | |p | | | 0.6 : | | |04231 04231| +750364 |V0364 Sct |185826.2-062849 |ISB: | 15.5 | 17.2 | |p | | | | |M5.5 |04231 04231| +750365 |V0365 Sct |185834.4-095800 |SRA | 16.9 | 18.4 | |p |32390. | | 200. : | |M |04231 04231| +750366 |V0366 Sct |182944. -121838:|N: | 15.4 |< 20. | |V |37442. :|1961 | | |ea |03987 03987| +750367 |V0367 Sct *|183335.2-102538 |CEP(B) | 11.21 | 11.91 | |V |37430.66 | | 6.29307 |30 | |09972 07597| +750368 |V0368 Sct |184543.6-083300 |NA | 7.7 | 19.3 | |p |40798. |1970 | | |pec(NOVA) |07334 06790| +750369 |V0369 Sct *|185116.9-062111 |DSCT | 9.14 | 9.43 | |V |40393.709 | | 0.223 | |F8III |06565 BD | +750370 |V0370 Sct *|184831.2-054237 |EA/SD | 15.3 | 18.5 | |p |30899.394 | | 4.117068 |14 | |05926 05926| +750371 |V0371 Sct |184334.7-105317 |M | 13.4 |< 17.4 | |p |40444. | | 245. | | |07806 06389| +750372 |V0372 Sct *|183803.7-040106 |EA/DS: | 14.2 | 16.8 : | |p |33117.4 | | 98.65 |03 | |07322 06887| +750373 |V0373 Sct |185526.8-074305 |NA | 6.0 | 18.5 | |p |42541. |1975 | | |pec(NOVA) |09973 09746| +750374 |V0374 Sct |182309.2-123757 |SR | 14.6 | 16.1 | |I | | | 400. | | |07779 2MASS| +750375 |V0375 Sct |182316.9-130136 |SR: | 14.4 | 16.4 | |I |40020. :| | 486. : | | |07779 2MASS| +750376 |V0376 Sct |182421.9-125155 |M: | 10.4 | 15.4 | |I |40388. :| | 600. : | | |07779 2MASS| +750377 |V0377 Sct |182459.2-141813 |M: | 12.2 | 15.9 | |I |41142. | | 522. : | | |07779 2MASS| +750378 |V0378 Sct |182502.7-154106 |SR: | 14.3 | 16.8 | |I |41152. | | 400. : | | |07779 GSC22| +750379 |V0379 Sct |182522.3-153200 |M | 13.1 | 16.2 | |I |39758. | | 417. | | |07779 2MASS| +750380 |V0380 Sct |182540.3-144301 |SR | 12.7 | 15.3 | |I |39684. :| | 400. : | | |07779 2MASS| +750381 |V0381 Sct |182552.5-153207 |M: | 14.4 | 16.7 | |I |41240. | | 416. | | |07779 2MASS| +750382 |V0382 Sct |182608.1-144715 |SRC | 12.1 | 14.7 | |I | | | | | |07779 GSC22| +750383 |V0383 Sct |182636.6-155039 |M | 14.2 | 17.3 | |I |39745. | | 290. | | |07779 2MASS| +750384 |V0384 Sct |182655.0-154023 |SR: | 14.1 | 17.4 | |I |39722. | | 227. : | | |07779 2MASS| +750385 |V0385 Sct |182659.1-144149 |SRA | 13.0 | 15.0 | |p |42940. | | 398. | |Se |08525 08525| +750386 |V0386 Sct |182715.6-154935 |M | 13.5 | 17.1 | |I |41118. | | 444. | | |07779 2MASS| +750387 |V0387 Sct |182715.5-153224 |M | 14.0 | 16.4 | |I |40754. | | 384. : | | |07779 GSC22| +750388 |V0388 Sct |182734.7-133811 |M | 12.3 | 15.6 | |I |37570. | | 376. | | |07779 GSC22| +750389 |V0389 Sct |182735.9-111643 |IS: | 11.7 | 13.0 | |p | | | | | |06996 06996| +750390 |V0390 Sct |182755.9-144842 |M | 12.5 | 16.8 | |I |40478. :| | 322. | | |07779 2MASS| +750391 |V0391 Sct |182806.6-155444 |UG: | 13.5 | 17.0 | |I | | | | | |07779 2MASS| +750392 |V0392 Sct |182812.5-151439 |M | 13.6 | 16.4 | |I |41164. | | 478. : | | |07779 2MASS| +750393 |V0393 Sct |182816.2-141223 |M | 11.3 | 15.2 | |I |41098. | | 378. | | |07779 GSC22| +750394 |V0394 Sct |182818.6-152551 |M | 12.9 | 15.9 | |I |40055. | | 313. | | |07779 2MASS| +750395 |V0395 Sct |182820.5-150601 |M | 12.8 | 16.4 | |I |40082. | | 310. | | |07779 GSC22| +750396 |V0396 Sct |182828.4-150628 |M: | 13.8 | 16.8 | |I |40849. :| | 418. | | |07779 2MASS| +750397 |V0397 Sct |182831.0-151924 |M | 13.7 | 16.4 | |I |39740. :| | 315. | | |07779 GSC22| +750398 |V0398 Sct |182833.6-145633 |M | 13.9 | 16.0 | |I |41164. | | 366. | | |07779 GSC22| +750399 |V0399 Sct |182835.2-145619 |M | 13.2 | 16.0 | |I |39749. | | 319. : | | |07779 2MASS| +750400 |V0400 Sct |182842.4-152252 |M | 12.6 | 15.3 | |I |40458. | | 298. | | |07779 GSC22| +750401 |V0401 Sct |182854.2-142920 |M | 12.1 | 15.4 | |I |40804. | | 477. | | |07779 2MASS| +750402 |V0402 Sct |182900.7-144355 |M | 12.0 | 15.4 | |I |39720. | | 312. | | |07779 USNO | +750403 |V0403 Sct |182902.7-144658 |M | 12.5 | 16.1 | |I |37558. | | 335. : | | |07779 GSC22| +750404 |V0404 Sct |182912.8-153738 |M | 15.6 | 17.2 | |I |41238. :| | 250. : | | |07779 2MASS| +750405 |V0405 Sct |182922.5-150800 |M | 14.3 | 16.2 | |I |39746. | | 362. | | |07779 2MASS| +750406 |V0406 Sct |182923.8-154726 |M | 11.5 | 15.4 | |I |39712. | | 450. | | |07779 2MASS| +750407 |V0407 Sct |182932.2-154839 |M | 11.7 | 15.2 | |I |40394. | | 716. | | |07779 GSC22| +750408 |V0408 Sct |182939.0-144612 |M | 14.4 | 16.0 | |I |41168. | | 318. | | |07779 2MASS| +750409 |V0409 Sct |182940.0-140018 |M | 12.2 | 15.6 | |I |41104. | | 468. | | |07779 2MASS| +750410 |V0410 Sct |182953.0-145752 |M | 14.1 | 15.8 | |I |39720. | | 330. | | |07779 GSC22| +750411 |V0411 Sct |182759.0-134321 |SR: | 12.9 | 14.6 | |I | | | | | |07779 GSC22| +750412 |V0412 Sct |182958.8-141010 |M | 13.5 | 16.1 | |I |41064. :| | 416. : | | |07779 2MASS| +750413 |V0413 Sct |183002.3-152830 |SR: | 15.0 | 17.0 | |I | | | | | |07779 GSC22| +750414 |V0414 Sct *|183013.9-152722 |SR: | 14.6 | 17.2 | |I | | | | | |07779 2MASS| +750415 |V0415 Sct |183013.4-142518 |M | 11.4 | 15.0 | |I |41100. | | 302. | | |07779 GSC22| +750416 |V0416 Sct |183014.8-142133 |M | 12.9 | 15.5 | |I |41126. :| | 301. : | | |07779 USNO | +750417 |V0417 Sct |183015.7-143127 |M | 11.0 | 14.9 | |I |39758. :| | 400. | | |07779 GSC22| +750418 |V0418 Sct |183029.0-142136 |M | 12.9 | 15.4 | |I |41120. :| | 405. | | |07779 GSC22| +750419 |V0419 Sct |183036.3-141625 |M | 14.0 | 15.6 | |I |41214. :| | 354. : | | |07779 2MASS| +750420 |V0420 Sct |183048.1-145246 |M | 11.3 | 14.1 | |I |41170. | | 264. | | |07779 UCAC2| +750421 |V0421 Sct |183050.9-153729 |M: | 12.8 | 16.2 | |I |41164. | | | | |07779 UCAC2| +750422 |V0422 Sct |183125.3-151823 |M | 12.1 | 15.6 | |I |40137. :| | 428. : | | |07779 2MASS| +750423 |V0423 Sct |183125.2-144350 |M: | 12.7 | 15.9 | |I |39690. :| | 460. : | | |07779 2MASS| +750424 |V0424 Sct |183136.3-152658 |M | 10.0 | 15.5 | |I |41158. | | 468. | | |07779 2MASS| +750425 |V0425 Sct |183142.3-151214 |M | 12.0 | 15.8 | |I |37870. :| | 448. : | | |07779 2MASS| +750426 |V0426 Sct |183648.2-145908 |M | 11.9 |< 16.0 | |p |25828. | | 134. | | |04231 04231| +750427 |V0427 Sct |184259.8-042820 |M: | 15. |< 19. | |V | | | | |S |08068 08068| +750428 |V0428 Sct |184541.4-053547 |SR | 11.9 | 13.4 | |p | | | 380. : | |M5-M6 |07806 07806| +750429 |V0429 Sct |185124.2-121932 |SR | 13. | 17.4 | |p |39669. | | 323.8 | | |07806 07806| +750430 |V0430 Sct |182515.2-135842 |ACYG | 6.50 | 6.64 | |V | | | | |B1Ia-Oe |08070 BD | +750431 |V0431 Sct |182925.7-060437 |ACYG | 11.60 | 12.10 | |V | | | | |B1Iaeq |08433 07822| +750432 |V0432 Sct |182946.8-143455 |ACV | 5.96 |( 0.012 )| |V | | | 2.1912 | |B9p(Si-Cr-Eu) |09919 BD | +750433 |V0433 Sct |182506.2-143858 |ACYG | 8.18 |( 0.055 )| |V | | | | | |67291 BD | +750434 |V0434 Sct |182813.9-111610 |M | 6.3 | 8.7 | |K | | | | | |67012 2MASS| +750435 |V0435 Sct |182928.7-123753 |M | 4.7 | 7.2 | |L | | | | | |67012 GSC22| +750436 |V0436 Sct |183007.0-073652 |M | 6.7 | 9.1 | |K | | | | | |67012 2MASS| +750437 |V0437 Sct |183732.5-052359 |M | 6.9 | 10.8 | |K | | | | | |67012 2MASS| +750438 |V0438 Sct |184114.2-061500 |M | 8.3 | 11.5 | |K | | | | | |67012 2MASS| +750439 |V0439 Sct |184548.4-040046 |M | 7.2 | 9.4 | |H | | | | | |67012 2MASS| +750440 |V0440 Sct |184626.8-064034 |M | 9.4 | 12.0 | |H | | | | | |67012 2MASS| +750441 |V0441 Sct |182831.6-095811 |M | 5.2 | 8.1 | |L | | | | | |68345 2MASS| +750442 |V0442 Sct |183903.8-075135 |ACYG | 9.42 | 9.45 | |V | | | | | |70077 BD | +750443 |V0443 Sct |184939.1-061116 |NA | 8.5 : |< 13.2 | |V | | | | | |70111 | +750444 |V0444 Sct |184710.0-082053 |NA | 10.5 |< 20. | |V | | | | | |71174 71175| +750445 |V0445 Sct |183030.6-142856 |SR | 11.45 | 11.7 | |J | | | | | |72155 72155| +750446 |V0446 Sct |182625.2-071318 |BE: | 14.28 | 15.60 | |B | | | | | |73133 UCAC2| +750447 |V0447 Sct |184433.3-070638 |BE | 7.85 |( 0.12 )| |V | | | | | |73309 BD | +750448 |V0448 Sct |183108.6-054722 |BE | 7.42 | 7.48 | |Hp| | | | | |HIP HIP | +750449 |V0449 Sct |183237.8-154206 |ACYG: | 7.93 | 8.02 | |Hp| | | | | |HIP HIP | +750450 |V0450 Sct |183243.3-145156 |SRD | 5.49 | 5.62 | |Hp| | | | | |HIP HIP | +750451 |V0451 Sct |183350.8-142533 |ACV | 7.93 | 8.00 | |Hp| | | | | |HIP HIP | +750452 |V0452 Sct |183926.1-135047 |ACYG: | 9.87 | 10.10 | |Hp| | | | | |HIP HIP | +750453 |V0453 Sct |184217.9-072014 |LB | 6.84 | 7.01 | |Hp| | | | | |HIP HIP | +750454 |V0454 Sct |184345.6-151625 |SRB | 8.54 | 8.67 | |Hp| | | | | |HIP HIP | +750455 |V0455 Sct |184638.1-075555 |GCAS | 9.00 | 9.32 | |Hp| | | | | |HIP HIP | +750456 |V0456 Sct |185005.6-082308 |LB | 8.59 | 8.78 | |Hp| | | | | |HIP HIP | +750457 |V0457 Sct |185109.8-074756 |GCAS: | 8.49 | 8.73 | |Hp| | | | | |HIP HIP | +750458 |V0458 Sct |182227.1-100729 |CEP(B) | 10.5 | 11.5 | |B | | | | | |75249 BD | +750459 |V0459 Sct |182551.0-121958 |DCEP | 14.7 | 16.2 | |B | | | | | |75250 UCAC2| +750460 |V0460 Sct |182704.3-122252 |WR | 13.38 |( 0.22 )| |V | | | | | |75109 75020| +750461 |V0461 Sct |183649.2-135156 |M | 11.2 |< 13.9 | |p | | | | | |75002 UCAC2| +750462 |V0462 Sct |184100.9-042615 |WR | 12.28 |( 0.15 )| |V | | | | | |75109 75020| +750463 |V0463 Sct |183403.1-144512 |NA | 10.6 |< 18. | |V | | | | | |76183 76184| +750464 |V0464 Sct |182500.9-065058 |M | 13.3 |< 15.2 | |V | | | | | |76177 UCAC2| +750465 |V0465 Sct |184022.6-153413 |SR: | 12.1 |< 12.9 | |V | | | | | |76185 UCAC2| +750466 |V0466 Sct |185834.5-040450 |SR: | 13.7 | 14.4 | |* | | | | | |76190 76057| +750467 |V0467 Sct |185905.4-151549 |M: | 11.7 | 14.8 | |* | | | | | |76057 2MASS| +750468 |V0468 Sct |183308.6-144302 |SR: | 13.9 | 14.9 | |* | | | | | |77156 2MASS| +750469 |V0469 Sct |183334.8-143700 |SR: | 12.5 | 13.4 | |* | | | | | |77156 UCAC2| +750470 |V0470 Sct |183429.7-153319 |SR: | 10.5 | 12.0 | |V | | | | | |77004 UCAC2| +750471 |V0471 Sct |184018.8-100730 |M | 11.4 |< 13.3 | |V | | | | | |77004 UCAC2| +750472 |V0472 Sct |184622.0-050234 |M | 8.5 |< 10.5 | |I | | | | | |77149 USNO | +750473 |V0473 Sct |184643.3-045400 |SR | 10.0 | 10.4 : | |V | | | | | |77149 DM | +750474 |V0474 Sct |185531.7-141947 |M | 12.4 |< 13.5 | |V | | | | | |77004 UCAC2| +750475 |V0475 Sct |184937.6-093351 |N | 8.4 |< 16. | |V |52885. |2003 | | |pec(Nova) |78254 78255| +750476 |V0476 Sct |183204.8-064334 |NA | 11.1 |< 17. | |V |53642. |2005 | | |pec(Nova) |78089 | +750477 |V0477 Sct |183842.9-121616 |NA | 10.4 |< 19. | |V |53657. |2005 | | |pec(Nova) |78079 | +750478 |V0478 Sct |182412.8-131555 |M | 14.0 | 16.1 | |I |41080 | | 507. | | |78230 78230| +750479 |V0479 Sct *|182615.1-145054 |XJ: | 8.53 | 9.01 | |K | | | | |O6.5V((f)) |78243 GSC | +750480 |V0480 Sct |182826.8-154518 |SRA | 10.0 | 10.3 | |V |52062 | | 63.36 | | |78090 DM | +750481 |V0481 Sct |183355.3-065839 |BE: | 5.85 | 6.23 | |K | | | | |pec(e) |78245 78245| +750482 |V0482 Sct |184402.2-063844 |M | 11.4 |< 14.1 | |V |52524 | | 388. | | |78103 GSC | +750483 |V0483 Sct |184835.7-064110 |ZAND | 14.20 | 16.40 | |V | | | 197.6 | |M3III |78253 2MASS| +750484 |V0484 Sct *|184916.1-101330 |EA | 9.15 | 9.24 | 9.22 |V |52104.641 | | 29.717 | |B8III |78011 DM | +750485 |V0485 Sct |185740.7-131335 |M | 12.4 |< 14.1 | |V |52027 | | 288. | | |78006 2MASS| +750486 |V0486 Sct |185742.3-104904 |M | 13.0 |< 14.2 | |V |53240 | | 291. : | | |78006 2MASS| +750487 |V0487 Sct |185841.5-064211 |L: | 15.7 | 16.4 | |p | | | | | |01402 01402| +750488 |V0488 Sct |185810.3-054459 |SR: | 12.3 | 13.3 | |* | | | | | |76192 USNO | +750489 |V0489 Sct |185113.2-154402 |I | 13.8 | 14.0 | |p | | | | | |01400 01400| +750490 |V0490 Sct *|185827.4-135200 |EA/DM: | 13.4 | 13.7 | 13.6 |p |28777.49 | | 12.0441 |05 | |01400 01400| +750491 |V0491 Sct *|185833.7-135458 |EW | 13.8 | 14.2 | 14.1 |p |27337.273 | | 0.5677318 | | |01400 01400| +750492 |V0492 Sct |182159.3-053846 |RRAB | 12.7 | 13.9 | |V |53811.890 | | 0.356046 |20 | |79064 79010| +750493 |V0493 Sct *|182836.7-125951 |EA | 8.32 | 8.74 : | 8.52 : |V |52556.459 | | 30.811 |05 |B1Iab |79011 DM | +750494 |V0494 Sct |183218.9-111724 |EA | 9.69 | 9.96 | 9.93 |V |52879.618 | | 4.95232 |16 |B1:V:pe |79006 DM | +750495 |V0495 Sct |185000.4-110955 |EA | 9.78 | 10.81 | 10.20 : |V |52922.518 | | 2.63743 |12 |B8 |79018 DM | +750496 |V0496 Sct |184345.6-073642 |NA | 7.10 |< 19. | |V |55155. |2009 | 2009 | | pec(Nova) |80230 | NL80_1 +750497 |V0497 Sct |182409.7-103738 |SRB | 12.9 | 14.1 | |V | | | 188. | | |80477 2MASS| NL80_3 +750498 |V0498 Sct *|182616.9-151543 |BCEP | 10.68 | 11.00 | |V | | | 0.201051 | |B |80445 GSC | NL80_3 +750499 |V0499 Sct |182639.5-065404 |M | 3.85 | 5.56 | |K | | | 635. | |C |80166 2MASS| NL80_3 +750500 |V0500 Sct |182725.9-144208 |BCEP | 9.99 | 10.08 | |V | | | 0.2401721 | |B |80445 GSC | NL80_3 +750501 |V0501 Sct |182734.2-083723 |M | 5.16 | 6.99 | |K | | | 659. : | |C |80166 2MASS| NL80_3 +750502 |V0502 Sct |183414.6-055951 |SRB | 13.0 | 14.4 | |V | | | 128. | | |80477 GSC | NL80_3 +750503 |V0503 Sct |183630.6-130911 |SRB | 12.8 | 13.9 | |V | | | 164. | | |80477 USNO | NL80_3 +750504 |V0504 Sct |183814.1-053115 |M | 13.2 |< 15.2 | |V |52517. | | 382. | | |80001 2MASS| NL80_3 +750505 |V0505 Sct |185614.8-041249 |M: | 14.4 : |( 2.3 *)| |R | | | 335. : | | |80511 80511| NL80_3 +750506 |V0506 Sct |185718.2-100150 |SRA | 12.4 | 13.3 | |V |54592. | | 264.7 | | |80001 GSC | NL80_3 +759004 |del Sct *|184216.4-090309 |DSCT | 4.60 | 4.79 | |V |43379.05 | | 0.1937697 | |F3IIIp |09974 BD | +760001 |R Ser *|155041.7+150801 |M | 5.16 | 14.4 | |V |45521. | | 356.41 |41 |M5IIIe-M9e |00001 00002| +760002 |S Ser *|152139.5+141853 |M | 7.0 | 14.1 | |V |45433. | | 371.84 |43 |M5e-M6e |00001 00002| +760003 |T Ser *|182848.7+061753 |M | 9.1 | 15.5 | |V |45509. | | 338.12 |47 |M7e |00001 00002| +760004 |U Ser *|160717.7+095553 |M | 7.8 | 14.7 | |V |45652. | | 237.50 |48 |M3e-M6e |00001 00002| +760005 |V Ser *|181649.1-153107 |EB/SD | 9.50 | 10.50 | 9.85 |V |29936.459 | | 3.453551 | |B8 |01414 00318| +760006 |W Ser *|180950.6-153300 |EA/GS | 8.42 | 10.20 | |V |26625.493 | | 14.15486 |20 : |F5eIb(shell) |09795 00318| +760007 |X Ser *|161917.7-022929 |NB | 9.0 | 18.3 | |p |16200. :|1903 | | |pec(e) |00303 09472| +760008 |Y Ser *|151401.5-015311 |SRA | 8.43 | 9.75 | |V |27514. | | 432.7 | |M5IIIe |00867 08953| +760009 |Z Ser *|151602.7+021005 |SRA | 9.4 | 10.9 | |p |23204. | | 87.57 | |M5III |09992 08953| +760010 |RR Ser |153121.7+013935 |CST | 11.8 | | |p | | | | | |01416 | +760011 |RS Ser *|181718.5-130337 |EW/DW | 10.8 | 11.5 | 11.4 |V |34921.838 | | 0.598140369 | |F8 |00001 | +760012 |RT Ser *|173952.0-115639 |NC | 10.6 | 17.0 | |p | | | | |pec | 01419| +760013 |RU Ser |155629.7+090150 |M | 11.6 |< 13.8 | |p |32685. | | 280.0 | | |01413 01413| +760014 |RV Ser *|171750.5-115933 |M | 12.0 | 17.0 | |p |26592. | | 269.9 | |M4IIIe-M8 |00475 UCAC2| +760015 |RW Ser |172157.0-141006 |M | 13.0 |< 16.0 | |p | | | | |Me |02073 06286| +760016 |RX Ser |172306.4-125142 |M | 13.3 |< 17.3 | |B |44060. | | 219.6 | |Me |09818 06286| +760017 |RY Ser |172307.2-124810 |UG | 14.1 | 18.0 | |B | | |( 53.0 ) | | |09818 06286| +760018 |RZ Ser |172333.8-135902 |M | 14.2 |< 17.3 | |B |43700. | | 200.0 | | |09819 06286| +760019 |SS Ser |172347.9-150103 | | 11.8 | 15.0 | |p | | | | | |02073 06286| +760020 |ST Ser |172532.1-155233 |LB: | 13.0 | 15.0 | |p | | | | |S |02073 06286| +760021 |SU Ser |172545.6-154816 | | 13.0 |< 16.0 | |p | | | | | |02073 06286| +760022 |SV Ser |172541.9-141455 |M | 11.0 | 16.0 | |p |23930. | | 373. | |Me |01000 06286| +760023 |SW Ser |172630.6-105930 | | 12.3 |< 15.5 | |p | | | | | |02073 06286| +760024 |SX Ser |172649.3-152513 |M | 12.0 |< 15.8 | |p | | | | |Me |02073 06286| +760025 |SY Ser |172718.9-140118 |M | 14.3 |< 16.8 | |B |43698. | | 211.3 |20 : | |09820 09820| +760026 |SZ Ser |173228.3-124058 | | 15. |< 16. | |p | | | | | |01483 USNO | +760027 |TT Ser |173346.5-152217 |M: | 13. | 16. | |p | | | | | |00121 06286| +760028 |TU Ser |173405.8-131038 |M | 14.5 |< 16. | |p | | | | |Me |01483 UCAC2| +760029 |TV Ser |173432.3-111429 | | 14.5 | 15.5 | |p | | | | | |01483 GSC22| +760030 |TW Ser |173559.1-133210 | | 15.6 |< 16. | |p | | | | | |01483 UCAC2| +760031 |TX Ser |173701.4-152512 | | 14.0 | 15.8 | |p | | | | | |01483 06286| +760032 |TY Ser |174111.1-130638 | | 14.7 | 15.7 | |p | | | | | |01483 GSC | +760033 |TZ Ser |174115.6-133215 |CWA | 13.5 | 15.5 | |B |42637.372 | | 21.07467 |40 | |09821 09821| +760034 |UU Ser |174238.3-152426 |ZAND: | 14.6 | 16.0 | |p | | | | |pec(e) |01483 09822| +760035 |UV Ser |174410.8-145607 |M | 12.9 |< 16. | |p | | | | |Me |01483 06286| +760036 |UW Ser |175034.3-131719 | | 14.5 |< 16. | |p | | | | | |01483 GSC22| +760037 |UX Ser |175309.9-151934 | | 13.8 | 16.0 | |p | | | | | |01483 UCAC2| +760038 |UY Ser |175505.0-125319 |M | 14.5 |< 17.7 | |B |42960. | | 204.22 | | |09821 09821| +760039 |UZ Ser |181124.9-145534 |UGSS | 12.0 | 16.7 | |p | | |( 26.4 ) | |pec(UG) |05386 08852| +760040 |VV Ser |182847.9+000840 |INA | 11.8 | 14.5 | |p | | | | |A2e |06996 09800| +760041 |VW Ser |173921.1-131216 |M | 14.7 |< 17.0 | |B |42630. | | 184. |50 : |M7 |09823 06286| +760042 |VX Ser |173937.7-131329 |M | 12.6 | 17.0 | |B |42900. | | 210. |45 |M1e |09823 06286| +760043 |VY Ser *|153101.9+014102 |RRAB | 9.73 | 10.46 | |V |31225.341 | | 0.71409384 |20 |F2-F6 |01421 06286| +760044 |VZ Ser |180548.6-004305 |M | 13.6 |< 16. | |p |25490. | | 236.2 | | |01000 06286| +760045 |WW Ser *|153224.9+033827 |M | 11.4 |< 15.8 | |p |40739. | | 365.8 | |M8e |00001 00002| +760046 |WX Ser *|152747.0+193352 |M | 12. |< 16. | |p |33365. | | 425.1 | |M8e |00001 03586| +760047 |WY Ser |175721.6-000629 |M | 11.9 |< 15.0 | |p |26160. | | 399. | |M7-8 |00401 00531| +760048 |WZ Ser |175902.4-000527 |M | 14.1 |< 16.4 | |p |25883. | | 193. | | |00401 00531| +760049 |XX Ser |154618.3+205235 |SRA | 11.5 | 13.3 | |p |26103. | | 171.2 |40 |M |01422 01423| +760050 |XY Ser |180055.3-003817 |M | 11.7 |< 15.6 | |p |25414. | | 166. | |M3 |00401 00133| +760051 |XZ Ser |180104.4-012052 |SR | 12.6 | 14.6 | |p |25437. | | 165. | | |00401 00133| +760052 |YY Ser |180534.6-011046 |M | 14.4 | 20. | |p |25495. | | 250. | | |00432 00133| +760053 |YZ Ser |180917.7-001845 |M | 13.4 |< 15.8 | |p |25450. | | 420. | | |00401 00133| +760054 |ZZ Ser |183422.6-015520 |CST | 12.8 | | |p | | | | | |00742 UCAC2| +760055 |AA Ser *|184121.8-010640 |DCEP | 11.74 | 12.64 | |V |44039.34 | | 17.1412 |37 |F9-G2 |00494 00494| +760056 |AB Ser |172203.5-130849 |SR | 11.8 | 13.2 | |p |27623. | | 69.6 | |M7 |01000 00464| +760057 |AC Ser |172951.8-101716 | | 12.0 | 13.5 | |p | | | | | |00467 00467| +760058 |AD Ser |173901.5-150716 |M | 13.5 | 16. | |p |25835. | | 175.4 | | |01424 00467| +760059 |AE Ser |174410.1-140549 |M | 13.2 | 16. | |p |25835. | | 264.8 | |Me |01424 00467| +760060 |AF Ser |174729.3-145532 | | 13.6 |< 14.5 | |p | | | | | |00467 00467| +760061 |AG Ser *|183351.9+034249 |M: | 13.0 |< 17.0 | |p |36453. | | 402.4 | |M6 |09828 02755| +760062 |AH Ser |155920.6+194647 |M | 10.0 | 13.7 | |V |36682. | | 283.5 | |M2 |01004 00002| +760063 |AI Ser |160708.2-001854 |M | 11.5 | 16.0 | |p |34963. | | 212.5 | | |00278 00470| +760064 |AK Ser *|174204.4-135312 |EA/SD | 10.8 | 13.6 | |p |46255.462 | | 1.9225800 |11 *|A5 |00001 00551| +760065 |AL Ser |175808.0-025608 |M | 12.3 |< 15.0 | |p |24314. | | 175.5 | |M3IIIe |01425 00486| +760066 |AM Ser |152938.0-002346 |SR | 10.3 | 12.4 | |V |28674. | | 104.3 |45 |K2-M2 |01422 01422| +760067 |AN Ser *|155331.1+125740 |RRAB | 10.40 | 11.44 | |V |14708.9500 | | 0.52207162 |18 |A7-F5 |07258 02740| +760068 |AO Ser *|155818.4+171610 |EA/SD | 10.7 | 12.0 | 10.8 |V |34133.464 | | 0.87934745 |18 *|A2 |03658 00318| +760069 |AP Ser *|151400.9+095852 |RRC | 10.85 | 11.38 | |V | | | 0.341 | |A7-F3 |09037 00470| +760070 |AQ Ser *|152215.2+023011 |EB/DM | 10.57 | 11.2 | 11.1 |V |28333.220 | | 1.687391 | |F2+A5 |01428 00318| +760071 |AR Ser *|153330.8+024638 |RRAB | 11.43 | 12.33 | |V |42918.394 | | 0.5751416 |20 : |F3 |00001 08081| +760072 |AS Ser *|153849.0+021530 |EB/KE | 11.4 | 12.0 | 11.5 |V |28333.326 | | 0.465937 | |F2 |00753 00470| +760073 |AT Ser *|155540.4+075920 |RRAB | 11.00 | 11.92 | |V |41798.579 | | 0.7465465 |18 |A9-F5 |00001 00470| +760074 |AU Ser *|155649.5+221602 |EW/KW: | 10.9 | 11.80 | 11.61 |V |44722.4745 | | 0.38650086 | |G5 |00001 00553| +760075 |AV Ser *|160341.8+003557 |RRAB | 10.84 | 12.00 | |V |28343.337 | | 0.48755736 |14 |F2 |00001 00561| +760076 |AW Ser *|160628.8+152206 |RRAB | 12.39 | 13.21 | |V |28344.222 | | 0.597097 |14 |F6 |00561 00470| +760077 |AX Ser |180230.9-000559 |SRB | 13.6 | 15.3 | |p |26161. | | 141. | |M7 |00401 02313| +760078 |AY Ser |180806.6-001516 |M | 12.9 | 20. | |p |26490. | | 300. | | |00401 02313| +760079 |AZ Ser |181450.9-001317 |M | 14.1 |< 16.1 | |p |26215. | | 198. | | |00401 02314| +760080 |BB Ser |181539.4-001309 |M | 14.9 | 20. | |p |26090. | | 390. | | |00432 02314| +760081 |BC Ser |160058.1+021028 |M | 10. |< 14. | |p |38860. | | 245.0 | |M3e-M5e |00001 00002| +760082 |BD Ser |173141.1-140505 |SR | 13.4 | 15.4 | |p |23582. | | 134. | | |00477 00552| +760083 |BE Ser |180533.2-135318 |M | 12.1 |< 15.5 | |p |26946. | | 143. | |M5 |00477 00552| +760084 |BF Ser *|151628.5+162640 |CWB | 11.05 | 12.56 | |V |28744.094 | | 1.1654394 |12 |A7-F3 |05448 00470| +760085 |BG Ser |154336.8-014238 |M | 11.0 | 15. | |p |19887. | | 143. | |M6e-M8e |00455 08953| +760086 |BH Ser *|151501.1+192635 |RRAB | 11.9 | 13.5 | |p |41482.427 | | 0.4345527 |13 |A2: |09857 06286| +760087 |BI Ser *|155600.1+173016 |EA/SD: | 11.5 | 12.2 | |p |46264.414 | | 1.204882 |16 *|A3 |01431 00470| +760088 |BK Ser |182703.7+051643 |LB: | 14.3 | 16.7 | |p | | | | | |03165 02325| +760089 |BL Ser |182724.4+050316 |M | 13.2 |< 17. | |p |26940. | | 310. | | |00447 02325| +760090 |BM Ser |182757.8+043436 |M: | 15.5 |< 17. | |p |26499. | | 198. | | |00447 02325| +760091 |BN Ser *|182851.5+061732 |LB | 13.6 | 14.8 | |p | | | | |M5 |00447 02325| +760092 |BO Ser *|182905.2+052546 |M | 13.8 | 17.0 | |p |33480. | | 200.0 |40 | |02755 02325| +760093 |BP Ser |183013.4+061649 |LB | 14.0 | 15.5 | |p | | | | |M6 |00447 02326| +760094 |BQ Ser *|183615.9+042354 |CEP(B) | 9.21 | 9.93 | |V |32410.50 | | 4.2709 |35 |F6III |08079 03165| +760095 |BR Ser *|183614.4+050440 |M | 13.0 | 20. | |p |27182. | | 323. | |M5 |02755 02326| +760096 |BS Ser *|183748.6+050402 |L | 13.7 | 14.2 | |p | | | | | |00447 02327| +760097 |BT Ser *|183849.7+045000 |RR | 13.5 | 14.6 | |p |32820.307 | | 0.295480 |34 | |02755 02327| +760098 |BU Ser *|184004.2+054113 |EA/SD | 13.9 | 15.5 | |p |26117.525 | | 1.843394 |18 *|A0V |00447 02327| +760099 |BV Ser |184255.1+044602 |M | 14.0 | 17.3 | |p |33100. | | 219.4 | | |00494 02327| +760100 |BW Ser |184300.8+040608 |M | 15.0 |< 17. | |p |26200. | | 250. | |C |00447 02327| +760101 |BX Ser |184518.1+041607 |LB | 13.5 | 15.6 | |p | | | | |M6 |00447 02328| +760102 |BY Ser |184527.6+043723 |LB | 13.3 | 15.2 | |p | | | | |M6 |00447 02328| +760103 |BZ Ser |184624.8+052016 |L | 14.6 | 14.9 | |p | | | | | |00447 02328| +760104 |CC Ser *|153624.4+153158 |EW/KE | 11.14 | 11.68 : | 11.63 |V |37481.570 | | 0.5160062 | |A6 |07259 01432| +760105 |CD Ser |154345.0+124009 |SRB | 10. | 11. | |p | | | 80. : | |M4 |01426 08953| +760106 |CE Ser |160741.8-031056 |RR | 14.9 | 15.9 | |p |27924.55 | | 0.512 | | |00278 UCAC2| +760107 |CF Ser |161007.2-030750 |RRAB | 13.5 | 14.7 | |p |37454.398 | | 0.53886 |40 : | |07806 06286| +760108 |CG Ser |161112.4-005348 |RRAB | 13.7 | 15.2 | |p |20634.471 | | 0.56096889 |28 : | |07806 06286| +760109 |CH Ser |161233.6-030522 |RRAB | 14.5 | 15.7 | |p |27960.50 | | 0.541 | | |00278 UCAC2| +760110 |CI Ser |161341.4-022023 |RR | 14.4 | 15.2 | |p |27959.35 | | 0.5383 | | |00278 UCAC2| +760111 |CK Ser |161342.0-004911 |RR | 14.8 | 15.6 | |p |27956.60 | | 0.601 | | |00278 UCAC2| +760112 |CL Ser |161519.8+001346 |SR | 13.8 | 15.6 | |p |27960. | | 203. | | |00278 UCAC2| +760113 |CM Ser |161937.3-011547 |M | 14.1 | 18.3 | |p |37252. | | 221.6 | | |03625 03625| +760114 |CN Ser *|162121.7-022109 |RRAB | 16.2 | 17.2 | |p |37433.770 | | 0.55730106 |14 |F4 |00001 03625| +760115 |CO Ser *|162134.7-032919 |RRAB | 15.0 | 16.7 | |p |25799.312 | | 0.445165 |12 |F3 |00001 03625| +760116 |CP Ser |172034.0-143959 |SR | 11.8 | 13.9 | |p | | | 56. : | | |00351 00351| +760117 |CQ Ser *|180853.7-141555 |EB/SD: | 11.6 | 12.6 | 12.0 |p |30900.324 | | 0.760076 | |A8: |00318 00318| +760118 |CR Ser *|181002.1-133246 |DCEP | 10.50 | 11.32 | |V |35631.53 | | 5.30141 |25 |G5 |02309 00552| +760119 |CS Ser *|152836.3+030524 |RRAB | 12.13 | 12.79 | |B |31176.430 | | 0.5267959 |14 |F1 |03506 00470| +760120 |CT Ser |154539.1+142232 |NA | 6. : | 16.6 | |p |32600. :|1948 | | |pec(NOVA) | 04787| +760121 |CU Ser |172645.8-143527 |M | 13. |< 16. | |p |26970. | | 263.5 | | |01001 00551| +760122 |CV Ser |181907.4-113759 |E/D/WR | 9.00 | 9.63 | |V |40785.29 | | 29.7005 | |WC8+O8-O9III-IV |04466 08953| +760123 |CW Ser |155309.8+060526 |DSCT | 11.59 | 12.06 | |V |31212.280 | | 0.1891505 |40 |A/F |03506 00470| +760124 |CX Ser *|152336.1+023530 |EA/SD: | 12.3 | 13.1 | |p |31213.490 | | 0.9972918 |20 :*|F8 |08117 00470| +760125 |CY Ser |174302.3-132313 |M | 11.6 |< 16. | |p |27282. | | 289.2 | |M3IIIe |01003 00551| +760126 |CZ Ser |183721.0-023915 |LB | 11.9 | 13.0 | |p | | | | |M6.5 |01397 BD | +760127 |DD Ser |184113.2-015806 |INA | 10.1 | 12.5 | |p | | | | |A5III |03160 06996| +760128 |DE Ser |184223.0+043719 |M | 12.1 | 19. : | |p |25839. | | 368.5 | |M8 |00164 00542| +760129 |DF Ser *|151519.1+183928 |RRAB | 11.4 : | 13.0 | |p |29706.054 | | 0.43779512 |16 | |00873 06286| +760130 |DG Ser *|182310.1+013019 |EW | 15.8 | 17.0 | 16.5 : |p |38172.43 | | 0.2877268 | | |08097 00494| +760131 |DH Ser *|183953.9+042647 |M: | 15.7 |< 17.5 | |p |38172. | | 350. | | |08097 00494| +760132 |DI Ser |182201.4+043728 |M | 12.3 |< 17.0 | |p |33186. | | 237.08 | | |08097 06887| +760133 |DK Ser *|182407.8+051123 |M | 11.4 | 18.0 : | |p |38186. | | 264.80 | |M7III |08097 06887| +760134 |DL Ser |182709.2+024226 |M | 14.8 |< 17.5 | |p |38172. | | 178.29 | | |08097 06887| +760135 |DM Ser |182845.3+051409 |I | 13.2 | 14.9 | |p | | | | | |00164 02367| +760136 |DN Ser |183512.5+061509 |L | 14.6 | 15.8 | |p | | | | | |00164 02367| +760137 |DO Ser |184008.8-033948 |M | 14.9 |< 17.2 | |p |38138. | | 292.0 | | |08097 06887| +760138 |DP Ser |184015.2+033219 |M | 14.4 | 17.0 | |p |38476. | | 199.42 | | |08097 06887| +760139 |DQ Ser |184439.6+050249 |L | 13.9 | 16.0 | |p | | | | | |07806 02368| +760140 |DR Ser *|184721.0+052719 |LB | 10.4 | 13.39 | |B | | | | |C6,4(N) |00164 02368| +760141 |DS Ser |175811.2-012045 |RRC | 15.9 | 16.5 | |p |29785.456 | | 0.365511 |50 | |02757 02364| +760142 |DT Ser *|180152.3-012616 |I: | 13.2 | 13.9 | |p | | | | |G0pe |02757 02364| +760143 |DU Ser |183905.8-015904 |LB | 12.5 | 14.6 | |p | | | | |M3 |02394 00141| +760144 |DV Ser *|184013.0-022303 |DCEP | 15.7 | 17.3 | |p |33048.48 | | 23.0639 |24 | |07806 02274| +760145 |DW Ser |160249.2+003641 |M | 11.5 | 15. | |p |36758. | | 235. | |Me |04188 03816| +760146 |DX Ser |160834.8-013214 |SRA | 10.4 | 12.4 | |p |33880. | | 360. | |M5-M8 |03135 04238| +760147 |DY Ser *|161419.1-024310 |RRC | 12.8 | 13.4 | |p |33802.336 | | 0.38621862 |50 : | |03506 06286| +760148 |DZ Ser |180058.9-103352 |N | 8. : |< 20. | |p | |1960 | | |pec(NOVA) |04215 04215| +760149 |EE Ser *|181843.6-155530 |M | 13.4 | 16.4 | |I |37547. | | 550. : | | |03815 04407| +760150 |EF Ser *|182102.1-155300 |M | 12.3 | 15.3 | |I |37585. | | 350. : | | |04243 04407| +760151 |EG Ser *|182602.2-014051 |EA/SD: | 8.44 | 9.2 | |B |26487.525 | | 4.97362 |05 *|A0 |04024 BD | +760152 |EH Ser |161731.8-015411 |RRC | 15.9 | 16.6 | |p |37433.928 | | 0.2895877 |50 | |00001 03625| +760153 |EI Ser |161741.2-032322 |RRC | 16.9 | 17.6 | |p |42954.5758 | | 0.2641531 |30 | |00001 03625| +760154 |EK Ser |161857.8-015221 |RRC | 16.2 | 16.8 | |p |42954.6668 | | 0.3151979 |30 | |09865 03625| +760155 |EL Ser *|162029.6-011319 |SR | 15.3 | 16.8 | |p | | | 740. /N| | |03625 03625| +760156 |EM Ser |162052.3-021230 |RRAB | 16.6 | 18.0 | |p |37433.912 | | 0.5034797 |20 | |00001 03625| +760157 |EN Ser *|162140.1-013124 |RRAB | 13.7 | 14.55 | |B |42954.2457 | | 0.5909218 |22 |A9 |09865 03625| +760158 |EO Ser *|162143.8-030757 |RRAB: | 14.7 | 15.1 | |p |42954.2076 | | 0.6307336 |25 |A9 |09865 03625| +760159 |EP Ser |180124.5-000050 |RR | 16. | 17. | |p |38532.52 | | | | |03903 03903| +760160 |EQ Ser |180537.7-002619 |M | 16. |< 18. | |p |38530. :| | | | |03903 03903| +760161 |ER Ser *|181807.7-135028 |INS: | 17.1 | 17.5 | |p | | | | | |03990 03990| +760162 |ES Ser *|181821.5-132619 |LB | 14.3 | 15.5 | |p | | | | |C(N) |03990 03990| +760163 |ET Ser *|181854.2-132551 |M: | 14.0 | 16.1 | |I | | | | | |03990 03990| +760164 |EU Ser *|181909.3-135041 |INA | 14.2 | 16.4 | |p | | | | |B-Aea |03990 03990| +760165 |EV Ser *|181913.8-135845 |IN: | 16.4 | 18.0 | |p | | | | | |03990 03990| +760166 |EW Ser *|181951.6-135322 |INS: | 17.3 | 17.6 | |p | | | | | |03990 03990| +760167 |EX Ser *|181952.9-140340 |IN: | 12.8 | 13.2 | |p | | | | | |03990 03990| +760168 |EY Ser |183049.8+053018 |EA/SD: | 14.5 |< 17.5 | |p |30201.40 | | | | |03903 03903| +760169 |EZ Ser |151915.0-002949 |RRAB | 14.1 | 15.5 | |p |39182.578 | | 0.571466 |19 | |06575 06575| +760170 |FF Ser |175821.6-003933 |SR: | 15.5 |< 17. | |p | | | | | |03910 03910| +760171 |FG Ser |181507.1-001852 |SR: | 13.5 | 14.5 | |p | | | | | |05515 05515| +760172 |FH Ser |183047.0+023652 |NA | 4.39 | 16. : | |V |40636. |1970 | | |pec(NOVA) | 09472| +760173 |FI Ser *|151421.0+002211 |ACV | 7.97 | 8.09 | |V | | | 3. : | |A0p(Sr-Cr-Eu) |09870 BD | +760174 |FK Ser *|182022.8-101114 |BY: | 10.9 | 11.5 | |p | | | 5.20 | |K5Ve(Li)+K7Ve(Li)|06948 05927| +760175 |FL Ser *|151204.3+185834 |LB | 5.79 | 6.02 | |V | | | | |M4IIIab |05841 BD | +760176 |FM Ser *|181839.8-134744 |INS: | 14.7 | 16.0 | |I | | | | | |03990 06390| +760177 |FN Ser *|181858.5-134828 |INS: | 15.0 | 16.2 | |I | | | | | |03990 06390| +760178 |FO Ser |181921.8-153646 |LB | 8.45 | 8.74 | |V | | | | |C4,5(R6) |06059 BD | +760179 |FP Ser |155440.3+083449 |DSCTC | 6.28 |( 0.025 )| |V | | | 0.2 : | |A7Vn |06456 BD | +760180 |FQ Ser |160836.5+083647 |LB | 6.31 | 6.60 | |V | | | | |M4III |06645 BD | +760181 |FR Ser *|183536.5+045610 |ACV | 6.34 | 6.52 | |V |41460.79 | | 2.1436 | |A2p(Sr-Cr) |07221 BD | +760182 |FS Ser |160828.1+083204 |LB: | 5.68 | 5.73 | |V | | | | |M3.5IIIa |04621 BD | +760183 |FT Ser |172141.0-143620 |LB: | 11.8 | 13.7 | |p | | | | |S5,8 |00551 00551| +760184 |FU Ser |173533.1-141929 |LB: | 12.3 |< 13.2 | |p | | | | |M7 |00551 07897| +760185 |FV Ser |175535.4-133700 |M | 13.5 | 16.2 | |B |42637. :| | 365. | |M8 |09879 09879| +760186 |FW Ser |180206.9-153151 |EA | 12.5 | 13.2 | |p | | | | | |07594 07594| +760187 |FX Ser |180650.2-094117 |LB: | 14.1 | 15.7 | |V | | | | |C |06977 06977| +760188 |FY Ser |180753.5-143126 |M: | 14.0 | 16.4 | |I |40860. :| | 360. : | | |07779 2MASS| +760189 |FZ Ser |180801.9-144415 |M: | 14.0 | 16.3 | |I | | | | | |07779 2MASS| +760190 |GG Ser |180811.0-143428 |M | 10.9 | 15.9 | |I |41244. | | 358. | | |07779 GSC22| +760191 |GH Ser |180822.0-152405 |SR | 14.0 | 15.9 | |I |41164. | | 270. : | | |07779 GSC22| +760192 |GI Ser |180826.4-153512 |M | 11.2 | 16.0 | |I |40860. | | 256. | | |07779 GSC22| +760193 |GK Ser |180825.5-141808 |M: | 14.3 | 16.4 | |I |41136. | | 400. : | | |07779 2MASS| +760194 |GL Ser |180834.4-150739 |RV: | 13.7 | 16.0 | |I | | | | | |07779 2MASS| +760195 |GM Ser |180835.8-150402 |RCB: | 12.0 | 14.0 | |I | | | | | |07779 2MASS| +760196 |GN Ser |180840.0-150939 |M | 13.9 | 16.2 | |I |41178. | | 270. | | |07779 2MASS| +760197 |GO Ser |180851.9-140833 |M | 13.2 | 15.7 | |I |41110. | | 237. | | |07779 2MASS| +760198 |GP Ser |180909.8-155120 |M | 13.2 | 16.2 | |I |41238. | | 288. | | |07779 2MASS| +760199 |GQ Ser |180918.0-143813 |M: | 14.5 | 16.6 | |I | | | | | |07779 2MASS| +760200 |GR Ser |180924.4-151936 |M | 10.1 | 13.4 | |I |41214. | | 239. | | |07779 UCAC2| +760201 |GS Ser |180929.1-140753 |SR: | 14.2 | 16.1 | |I |41246. :| | 375. : | | |07779 2MASS| +760202 |GT Ser |180934.9-142641 |SR | 14.5 | 16.0 | |I | | | | | |07779 2MASS| +760203 |GU Ser |180939.5-145539 |SR: | 14.8 | 16.2 | |I | | | 320. : | | |07779 2MASS| +760204 |GV Ser |180957.1-142046 |M: | 14.5 | 16.2 | |I | | | | | |07779 2MASS| +760205 |GW Ser |180959.8-145116 |M | 12.2 | 15.4 | |I |40410. | | 316. | | |07779 2MASS| +760206 |GX Ser |181005.7-151402 |M | 11.7 | 15.4 | |I |40814. | | 193. | | |07779 2MASS| +760207 |GY Ser |181004.8-144920 |M | 12.6 | 15.7 | |I |40816. | | 478. | | |07779 2MASS| +760208 |GZ Ser |181023.4-152223 |M | 13.2 | 15.9 | |I | | | 338. : | | |07779 2MASS| +760209 |HH Ser |181029.4-150758 |M | 13.6 | 16.4 | |I |41226. | | 482. | | |07779 2MASS| +760210 |HI Ser |181028.1-142606 |M | 13.1 | 16.3 | |I |39720. | | 218. | | |07779 2MASS| +760211 |HK Ser |181040.8-135218 |M | 11.8 | 15.6 | |I |40032. | | 434. | | |07779 2MASS| +760212 |HL Ser |181059.4-142602 |SR: | 13.8 | 16.1 | |I |40404. | | 390. : | | |07779 2MASS| +760213 |HM Ser |181101.9-153557 |M | 12.8 | 15.9 | |I |41096. | | 202. | | |07779 2MASS| +760214 |HN Ser |181112.6-154523 |SR: | 14.8 | 16.3 | |I | | | 330. : | | |07779 2MASS| +760215 |HO Ser |181117.1-133540 |M: | 14.3 | 16.4 | |I | | | | | |07779 2MASS| +760216 |HP Ser |181123.6-153732 |SRA: | 14.4 | 16.3 | |I |41222. | | 210. | | |07779 2MASS| +760217 |HQ Ser |181133.4-154421 |SR: | 14.2 | 16.7 | |I | | | 320. : | | |07779 2MASS| +760218 |HR Ser |181139.1-144706 |M | 11.7 | 15.4 | |I |41092. | | 434. | | |07779 2MASS| +760219 |HS Ser |181143.5-150856 |M | 11.7 | 15.9 | |I |40520. :| | 510. | | |07779 2MASS| +760220 |HT Ser |181149.8-153719 |M | 13.4 | 16.4 | |I |40928. :| | 465. : | | |07779 2MASS| +760221 |HU Ser |181154.8-154013 |M | 13.1 | 16.0 | |I |40790. | | 396. | | |07779 2MASS| +760222 |HV Ser |181157.8-153925 |M | 13.0 | 16.2 | |I |41128. | | 531. | | |07779 2MASS| +760223 |HW Ser |181207.1-145451 |M | 12.6 | 16.2 | |I |40762. :| | 285. | | |07779 2MASS| +760224 |HX Ser |181208.8-144448 |M | 14.6 | 16.5 | |I |40840. :| | 210. : | | |07779 2MASS| +760225 |HY Ser |181217.0-154722 |M | 12.3 | 15.3 | |I |40804. | | 204. | | |07779 2MASS| +760226 |HZ Ser |181216.5-142438 |M | 12.4 | 16.0 | |I |41048. :| | 460. | | |07779 2MASS| +760227 |II Ser |181220.1-152244 |SR: | 13.8 | 16.4 | |I | | | | | |07779 2MASS| +760228 |IK Ser |181225.6-154520 |M | 12.9 | 15.9 | |I |40806. | | 336. | | |07779 2MASS| +760229 |IL Ser |181234.0-152058 |SR: | 14.5 | 16.2 | |I | | | | | |07779 2MASS| +760230 |IM Ser |181253.6-144615 |M: | 14.2 | 16.0 | |I |41190. :| | 200. : | | |07779 2MASS| +760231 |IN Ser |181259.7-145431 |M | 13.3 | 16.6 | |I |40756. | | 480. | | |07779 2MASS| +760232 |IO Ser |181424.7-153104 |M | 12.0 | 15.8 | |I |41220. | | 394. | | |07779 2MASS| +760233 |IP Ser |181446.2-140711 |M | 11.6 | 14.7 | |I |40808. | | 213. | | |07779 UCAC2| +760234 |IQ Ser |181500.8-154817 |SR: | 15.4 | 16.2 | |I | | | 350. : | | |07779 2MASS| +760235 |IR Ser |181502.4-143346 |SR | 13.0 | 15.5 | |I | | | 210. : | | |07779 2MASS| +760236 |IS Ser |181502.5-140750 |M: | 13.0 | 16.0 | |I |41040. :| | 400. : | | |07779 2MASS| +760237 |IT Ser |181519.8-130850 |M: | 12.8 | 16.2 | |I |41066. :| | 500. : | | |07779 2MASS| +760238 |IU Ser |181524.5-140207 |M: | 14.5 | 16.4 | |I | | | | | |07779 2MASS| +760239 |IV Ser |181526.6-125032 |M: | 13.9 | 16.2 | |I | | | | | |07779 2MASS| +760240 |IW Ser |181526.4-125738 |M | 14.3 | 16.1 | |I |41143. | | 247. | | |07779 2MASS| +760241 |IX Ser |181537.5-150532 |M: | 15.1 | 16.4 | |I |39738. | | 298. : | | |07779 2MASS| +760242 |IY Ser |181602.5-151803 |M | 12.5 | 15.9 | |I |41104. | | 458. | | |07779 2MASS| +760243 |IZ Ser |181606.9-145849 |SR: | 14.4 | 16.5 | |I | | | 280. : | | |07779 2MASS| +760244 |KK Ser |181905.1-124321 |M: | 14.7 | 16.1 | |I |40810. | | 288. : | | |07779 2MASS| +760245 |KL Ser |181645.6-150931 |SR: | 11.4 | 13.6 | |I |40836. :| | 490. : | | |07779 UCAC2| +760246 |KM Ser |181647.3-131437 |M | 11.7 | 16.2 | |I |40844. | | 450. | | |07779 2MASS| +760247 |KN Ser |181657.9-155325 |M: | 13.1 | 16.2 | |I |41224. | | 365. : | | |07779 2MASS| +760248 |KO Ser |181700.8-151820 |M | 11.2 | 15.7 | |I |41198. | | 280. | | |07779 2MASS| +760249 |KP Ser |181735.9-123920 |M: | 13.2 | 15.4 | |I | | | 700. : | | |07779 2MASS| +760250 |KQ Ser |181758.0-130452 |M | 13.8 | 16.0 | |I |41192. | | 290. | | |07779 2MASS| +760251 |KR Ser |181813.1-121024 |M | 12.0 | 15.8 | |I |41058. | | 407. | | |07779 2MASS| +760252 |KS Ser |181814.9-122707 |M | 12.3 | 15.8 | |I |41220. | | 420. | | |07779 2MASS| +760253 |KT Ser |181840.6-144447 |M: | 12.0 | 15.1 | |I |41100. | | 388. | | |07779 2MASS| +760254 |KU Ser |181908.3-144743 |M | 13.1 | 16.1 | |I |40072. | | 486. : | | |07779 2MASS| +760255 |KV Ser |181922.7-122353 |M | 12.1 | 15.8 | |I |40424. | | 410. | | |07779 2MASS| +760256 |KW Ser |181936.4-143930 |M: | 11.6 | 12.7 | |I |41124. | | 226. : | | |07779 2MASS| +760257 |KX Ser |181937.7-123430 |SRC: | 13.6 | 15.9 | |I | | | | | |07779 2MASS| +760258 |KY Ser |181958.7-123615 |M | 12.4 | 15.9 | |I |40826. | | 310. | | |07779 2MASS| +760259 |KZ Ser |182000.4-130942 |M | 12.9 | 16.0 | |I |40448. | | 506. | | |07779 2MASS| +760260 |LL Ser |182002.5-124400 |M: | 13.9 | 16.2 | |I | | | | | |07779 2MASS| +760261 |LM Ser |182017.4-130917 |SR: | 14.3 | 16.0 | |I | | | 380. : | | |07779 2MASS| +760262 |LN Ser *|182038.2-133248 |M | 12.8 | 15.0 | |I |41160. | | 190. | | |07779 2MASS| +760263 |LO Ser |182035.8-120836 |M: | 13.8 | 15.8 | |I |39730. | | 304. | | |07779 2MASS| +760264 |LP Ser |182044.9-122840 |M | 13.9 | 15.8 | |I |40798. :| | 259. : | | |07779 2MASS| +760265 |LQ Ser |182045.9-125247 |M | 13.0 | 15.8 | |I |41186. | | 400. | | |07779 2MASS| +760266 |LR Ser |182123.4-154142 |M: | 14.5 | 16.1 | |I | | | | | |07779 2MASS| +760267 |LS Ser *|182448.7+000300 |EB: | 15.0 | 16.8 | |p |38255.29 | | 0.9803404 | | |08097 00494| +760268 |LT Ser |183155.4+030215 |M | 15.5 |< 17.8 | |p |38143. | | 275. : | | |08097 06887| +760269 |LU Ser |174540.3-134844 |M | 13.2 |< 16. | |p | | | | |Me |08135 UCAC2| +760270 |LV Ser *|151134.4+083101 |ACV | 7.45 | 7.60 | |V |41060.5 | | 2.7800 | |A3p(Sr-Cr-Eu) |09011 BD | +760271 |LW Ser |175150.9-144351 |NA | 8.3 |< 16.0 | |V |43569. |1978 | | |pec(NOVA) | 09887| +760272 |LX Ser *|153800.1+185203 |EA+UG: | 13.3 | 17.4 | |B |44293.0240 | | 0.158432441 |12 *|pec(e+cont) |00001 04412| +760273 |LY Ser |153816.6+243119 |LB: | 6.70 | 6.96 | |V | | | | |M4III |08225 BD | +760274 |LZ Ser |173854.1-143740 |M | 13.9 |< 17.0 | |B |42630. | | 350.0 |20 : | |09820 09820| +760275 |MM Ser *|183957.6+050211 |XB | 18.9 | 19.2 | |B | | | | |pec(e+cont) |08553 04437| +760276 |MN Ser |184732.6+021206 |EA: | 15.2 | 17.0 : | |p | | | | | |08097 00494| +760277 |MO Ser *|180337.8-001648 |RRAB | 16.3 | 17.4 | |V |43005.628 | | 0.588395 |10 | |08793 08793| +760278 |MP Ser *|180341.4-001912 |RRC | 16.9 | 17.4 | |V |41129.724 | | 0.273504 |50 | |08793 08793| +760279 |MQ Ser |151918.8+014556 |BY: | 4.99 | 5.11 | |V | | | | | |67295 BD | +760280 |MR Ser |155247.3+185626 |AM | 15.0 | 17. | |V | | | | | |67297 67297| +760281 |MS Ser |155844.0+253410 |BY | 8.20 | 8.31 | |V | | | | | |67299 BD | +760282 |MT Ser |172902.0-151305 |ELL/PN | 15.60 | 15.90 | |B | | | | | |67303 67303| +760283 |MU Ser |175552.8-140117 |NA | 7.7 |< 20. | |V | | | | | |67304 67305| +760284 |MV Ser |183206.9+033935 |ACV | 6.13 |( 0.03 )| |U | | | | | |67134 BD | +760285 |MW Ser |152843.7+034943 |M | 2.7 | 4.0 | |K | | | | | |68015 UCAC2| +760286 |MX Ser |161207.3-030559 |EW/KW | 13.2 | 13.68 | |B | | | | | |68329 68329| +760287 |MY Ser |181805.9-121433 |EB | 7.33 | 7.66 | |V | | | | | |68342 BD | +760288 |MZ Ser |181857.3-135214 |IN: | 8.0 | 9.5 | |K | | | | | |68231 68343| +760289 |NN Ser |155256.2+125447 |NL | 16.6 | 17.2 | |V | | | | | |69042 69043| +760290 |NO Ser |180355.5-010023 |PVTEL: | 10.29 |( 0.08 )| |V | | | | | |69257 BD | +760291 |NP Ser |181601.4-140212 |XB | 17.51 |( 0.5 )| |V | | | | | |69301 69302| +760292 |NQ Ser |160553.4+104106 |RS | 8.3 |( 0.11 )| |V | | | | | |71001 BD | +760293 |NR Ser |174652.3-140524 |M | 7.57 | 9.08 | |J | | | | | |71144 2MASS| +760294 |NS Ser |174728.4-141643 |M | 7.70 | 8.71 | |J | | | | | |71144 2MASS| +760295 |NT Ser |174834.5-134804 |M | 7.79 | 9.33 | |J | | | | | |71144 2MASS| +760296 |NU Ser |174835.1-130228 |M | 7.59 | 9.00 | |J | | | | | |71144 2MASS| +760297 |NV Ser |175042.2-122752 |M | 7.60 | 9.38 | |H | | | | | |71144 2MASS| +760298 |NW Ser |182128.4+052609 |BE | 5.39 | 5.59 | |U | | | | | |72093 BD | +760299 |NX Ser |183546.8+053551 |M | 2.8 | 4.7 | |K | | | | | |72121 2MASS| +760300 |NY Ser |151302.3+231508 |UGSU | 14.8 | 17.9 | |V | | | | | |73310 73111| +760301 |NZ Ser |182739.5-034952 |INA | 13.07 | 16.33 | |U | | | | | |73311 73312| +760302 |OO Ser |182949.1+011621 |FU: | 11.4 | 16.1 | |K | | | | | |73313 73313| +760303 |OP Ser |151303.3+093441 |LB: | 8.41 | 8.53 | |Hp| | | | | |HIP HIP | +760304 |OQ Ser |151457.7-022453 |SRB | 7.19 | 7.47 | |Hp| | | | | |HIP HIP | +760305 |OR Ser |151446.0+212006 |LB: | 8.62 | 8.78 | |Hp| | | | | |HIP HIP | +760306 |OS Ser |151503.1+180253 |SRB | 9.12 | 9.38 | |Hp| | | | | |HIP HIP | +760307 |OT Ser |152152.9+205840 |BY: | 10.03 | 10.16 | |Hp| | | | | |HIP HIP | +760308 |OU Ser *|152243.5+161541 |EW: | 8.25 | 8.43 | |Hp| | | | | |HIP HIP | +760309 |OV Ser |152455.1-021407 |LB | 7.70 | 8.16 | |Hp| | | | | |HIP HIP | +760310 |OW Ser |152630.3+100210 |LB | 7.00 | 7.14 | |Hp| | | | | |HIP HIP | +760311 |OX Ser |152944.5+161131 |SRD: | 7.27 | 7.32 | |Hp| | | | | |HIP HIP | +760312 |OY Ser |153224.2-014701 |SRB | 8.24 | 8.43 | |Hp| | | | | |HIP HIP | +760313 |OZ Ser |153508.4+004446 |LB | 8.72 | 9.05 | |Hp| | | | | |HIP HIP | +760314 |PP Ser |153737.6+215132 |LB: | 10.01 | 10.23 | |Hp| | | | | |HIP HIP | +760315 |PQ Ser |153753.8+212627 |NL: | 8.12 | 8.22 | |Hp| | | | | |HIP HIP | +760316 |PR Ser |154105.2+232107 |LB: | 9.42 | 9.62 | |Hp| | | | | |HIP HIP | +760317 |PS Ser *|154357.9+222023 |E | 8.19 | 8.37 | |Hp| | | | | |HIP HIP | +760318 |PT Ser *|154605.6-014815 |LPB | 5.36 | 5.39 | |Hp| | | | | |HIP HIP | +760319 |PU Ser |160402.1+095941 |SRB | 8.35 | 8.65 | |Hp| | | | | |HIP HIP | +760320 |PV Ser |160641.9+021925 |LB: | 9.50 | 9.68 | |Hp| | | | | |HIP HIP | +760321 |PW Ser |160848.4+015047 |LB: | 8.26 | 8.38 | |Hp| | | | | |HIP HIP | +760322 |PX Ser |160938.0+055237 |LB: | 9.33 | 9.47 | |Hp| | | | | |HIP HIP | +760323 |PY Ser |161048.3+074645 |LB | 8.33 | 8.52 | |Hp| | | | | |HIP HIP | +760324 |PZ Ser |161604.7+021808 |LB: | 9.59 | 9.74 | |Hp| | | | | |HIP HIP | +760325 |QQ Ser |180222.2-121906 |LB: | 7.51 | 7.64 | |Hp| | | | | |HIP HIP | +760326 |QR Ser |181858.7-135928 |EB: | 8.25 | 8.41 | |Hp| | | | | |HIP HIP | +760327 |QS Ser |181948.2-045742 |EA: | 7.69 | 8.25 | |Hp| | | | | |HIP HIP | +760328 |QT Ser |183104.5+043737 |ISA: | 7.77 | 7.85 | |Hp| | | | | |HIP HIP | +760329 |QU Ser |183336.1+053624 |ACV | 7.78 | 7.84 | |Hp| | | | | |HIP HIP | +760330 |QV Ser |183629.6+051719 |ACV | 7.83 | 7.88 | |Hp| | | | | |HIP HIP | +760331 |QW Ser |152614.0+081803 |UG: | 12.8 |< 15.3 | |p | | | | | |75002 GSC22| +760332 |QX Ser |154932.9+252737 |E/RS | 8.66 |( 0.08 )| |V | | | | | |75011 BD | +760333 |QY Ser |155434.6+201839 |SRB | 5.42 | 5.50 | |V | | | | | |75251 BD | +760334 |QZ Ser |155655.0+210711 |UG: | 12.7 |< 14.9 | |p | | | | | |75252 UCAC2| +760335 |V0335 Ser |155905.8+003545 |EA | 7.6 | 8.3 | |V | | | | | |75253 BD | +760336 |V0336 Ser |155911.4+193957 |M: | 11.5 | 14.1 | |p | | | | | |75254 UCAC2| +760337 |V0337 Ser |160512.2+104033 |SR: | 11.8 | 14.5 | |p | | | | | |75021 75021| +760338 |V0338 Ser |160803.7+070429 |RPHS | 12.84 |( 0.25 )| |V | | | | | |75255 75256| +760339 |V0339 Ser |172752.9-134102 |M | 13.8 |< 14.7 | |p | | | | | |75021 75021| +760340 |V0340 Ser |173046.9-112208 |RV: | 9.52 | 9.70 | |V | | | | | |75082 BD | +760341 |V0341 Ser |175433.9-101433 |LB | 13.1 | 14.4 | |p | | | | | |75021 75021| +760342 |V0342 Ser |180144.5-104025 |M | 12.7 | 15.3 | |p | | | | | |75021 75021| +760343 |V0343 Ser |181222.1-114007 |ZAND | 11.7 | 14.9 | |p | | | | | |75257 UCAC2| +760344 |V0344 Ser |151158.8+060220 |L | 13.0 | 14.4 | |V | | | | | |76012 UCAC2| +760345 |V0345 Ser |151621.9+113002 |SR: | 13.9 | 14.9 | |V | | | | | |76012 UCAC2| +760346 |V0346 Ser |151840.3+145903 |SRA | 11.9 | 14.0 | |V | | | | | |76012 UCAC2| +760347 |V0347 Ser |152723.6+042828 |SR: | 12.9 | 15.0 | |V | | | | | |76012 UCAC2| +760348 |V0348 Ser |172559.5-140313 |M: | 13.0 |< 14.3 | |V | | | | | |76154 USNO | +760349 |V0349 Ser |173019.9-101857 |M | 11.9 |< 15.1 | |V | | | | | |76156 UCAC2| +760350 |V0350 Ser |175702.0-142310 |SR: | 11.6 | 12.8 | |* | | | | | |76197 USNO | +760351 |V0351 Ser |175711.9-002843 |SRA | 13.3 | 14.1 | |* | | | | | |76057 USNO | +760352 |V0352 Ser |175732.9-101240 |SR: | 14.0 | 15.1 | |* | | | | | |76057 76057| +760353 |V0353 Ser |175739.5-024820 |SR: | 13.1 | 15.0 | |* | | | | | |76146 UCAC2| +760354 |V0354 Ser |175746.6-105353 |M: | 12.3 |< 14.7 | |* | | | | | |76197 76057| +760355 |V0355 Ser |175757.1-114046 |M: | 11.7 | 14.0 | |* | | | | | |76057 2MASS| +760356 |V0356 Ser |175822.1-114513 |M: | 12.3 | 15.8 | |* | | | | | |76057 USNO | +760357 |V0357 Ser |175823.3-133629 |SR: | 13.0 | 14.1 | |* | | | | | |76057 76057| +760358 |V0358 Ser |175837.5-154519 |SR: | 12.8 | 14.8 | |* | | | | | |76057 76057| +760359 |V0359 Ser |175852.3-103547 |SR: | 13.5 | 14.7 | |* | | | | | |76057 UCAC2| +760360 |V0360 Ser |175854.4-145153 |M: | 12.2 |< 14.6 | |* | | | | | |76197 USNO | +760361 |V0361 Ser |175915.9-120718 |SR: | 13.2 | 14.4 | |* | | | | | |76197 USNO | +760362 |V0362 Ser |175938.8-155756 |SR: | 12.9 | 14.4 | |* | | | | | |76197 76057| +760363 |V0363 Ser |180019.9-143049 |SR: | 13.8 |< 15.2 | |* | | | | | |76057 2MASS| +760364 |V0364 Ser |180053.0-103236 |SR: | 12.3 | 14.6 | |* | | | | | |76146 UCAC2| +760365 |V0365 Ser |180054.9-143830 |SR: | 12.3 | 14.2 | |* | | | | | |76197 76057| +760366 |V0366 Ser |180125.9-145631 |SR: | 13.2 |< 14.6 | |* | | | | | |76197 USNO | +760367 |V0367 Ser |180205.8-103940 |M: | 13.5 | 16.1 | |* | | | | | |76057 76057| +760368 |V0368 Ser |180243.5-025246 |SR: | 13.9 | 14.8 | |* | | | | | |76146 76057| +760369 |V0369 Ser |180248.4-154125 |SR: | 13.0 |< 14.4 | |* | | | | | |76269 76057| +760370 |V0370 Ser |182949.3+011631 |INT | 16.3 | 17.3 | |H | | | | | |76180 76271| +760371 |V0371 Ser |182951.1+011640 |INT | 10.2 | 12.2 | |K | | | | | |76271 76271| +760372 |V0372 Ser |151735.0-010517 |RR(B) | 10.85 | 11.69 | |V | | | | | |77116 77116| +760373 |V0373 Ser |155235.1-010153 |ACV | 7.96 |( 0.02 u )| |V | | | | | |77117 DM | +760374 |V0374 Ser |172104.0-143936 |SR: | 12.9 |< 14.0 | |V | | | | | |77004 UCAC2| +760375 |V0375 Ser |173105.4-160258 |SR: | 11.7 | 13.1 | |V | | | | | |77004 2MASS| +760376 |V0376 Ser |180951.3-020042 |SR | 7.9 | 8.4 | |I | | | | | |77149 UCAC2| +760377 |V0377 Ser |182909.3+045118 |SR: | 12.3 | 13.5 | |* | | | | | |77156 USNO | +760378 |V0378 Ser |174924.6-125959 |N | 11.5 |< 18. | |* |53467. |2005 | | |pec(Nova) |78317 | +760379 |V0379 Ser |151559.2+004747 |BY | 7.05 | 7.08 | |Hp| | | 5.97 | |K0 |78005 DM | +760380 |V0380 Ser |152610.7+003157 |SRA | 10.8 | 12.9 | |V |52765 | | 170. | |Me |78090 GSC | +760381 |V0381 Ser *|154552.4+050227 |RS | 9.15 |( 0.02 )| |V | | | 13.83 : | |K2V |78018 DM | +760382 |V0382 Ser |154809.5+013418 |BY | 7.44 |( 0.04 )| |V | | | 14.045 | |G8V |78018 DM | +760383 |V0383 Ser *|155519.1+160240 |RS | 8.68 |( 0.03 )| |V | | | 33.52 | |KV |78018 DM | +760384 |V0384 Ser *|160153.6+245218 |EW | 11.88 | 12.41 | 12.35 |* |52365.4575 | | 0.268729 | | |78264 GSC | +760385 |V0385 Ser |160325.7+010237 |EW | 13.65 |( 0.54 )| |V |52082.4980 | | 0.31295 | | |78017 GSC | +760386 |V0386 Ser |161033.7-010222 |NL+ZZ | 18.9 | 19.2 | |V | | | 0.056 | |pec(e) |78185 USNO | +760387 |V0387 Ser |180040.4-135317 |M: | 13.3 | 16.1 | |* | | | | | |78006 2MASS| +760388 |V0388 Ser |180114.9-152338 |M: | 13.2 | 16.3 | |* | | | | | |78006 2MASS| +760389 |V0389 Ser |180836.2-144734 |M | 14.5 | 16.7 | |I |37890 | | 236.5 | | |78230 78230| +760390 |V0390 Ser |180906.0-151837 |M | 12.9 | 15.7 | |I |40222 | | 168.5 | | |78230 78230| +760391 |V0391 Ser *|180958.0-145836 |M | 14.0 | 16.1 | |I |40418 | | 243.0 | | |78230 78230| +760392 |V0392 Ser |181219.9-150503 |SR | 11.4 | 12.7 | |I | | | 99.7 | | |78040 78230| +760393 |V0393 Ser *|181329.6-050256 |SRA: | 13.3 |< 14.4 | |V |52491 | | 340. | | |78103 GSC | +760394 |V0394 Ser |181358.0-152200 |SR | 14.6 | 16.2 | |I |44410 | | 163.0 | | |78230 78230| +760395 |V0395 Ser |181407.6-150634 |SRA | 14.7 | 16.3 | |I |44248 | | 310.0 | | |78230 78230| +760396 |V0396 Ser |181632.4-124218 |M: | 14.8 | 16.4 | |I |40042 | | 633. : | | |78230 78230| +760397 |V0397 Ser |181643.7-155107 |EA: | 13.4 | 15.0 | |I |48040 | | 196. : | | |78230 78230| +760398 |V0398 Ser |181645.9-134117 |SR | 15.3 | 16.6 | |I |40810 | | 348. | | |78230 78230| +760399 |V0399 Ser *|181736.2-150225 |EA | 11.6 | 12.7 | 11.9 |V |52442.697 | | 4.11315 |16 | |78011 78230| +760400 |V0400 Ser |181742.1-143457 |M | 13.7 | 16.4 | |I |40790 | | 430. | | |78230 78230| +760401 |V0401 Ser |181849.5-122343 |M | 11.9 |< 16.0 | |I |40500 | | 327.0 | | |78230 78230| +760402 |V0402 Ser |181909.1-124247 |SRA | 14.9 | 16.0 | |I |39760 | | 307.0 | | |78230 78230| +760403 |V0403 Ser |181912.3-123456 |M | 13.6 |< 16.0 | |I |40364 :| | 320.0 | | |78230 78230| +760404 |V0404 Ser |181847.5-123712 |M | 11.2 | 15.1 | |I |41260. :| | 334. | | |07779 2MASS| +760405 |V0405 Ser |172607.7-141659 |M | 11.5 |< 14.0 | |V |53147. | | 285. | | |79179 79010| +760406 |V0406 Ser |173247.9-143733 |M: | 12.7 |< 14.0 | |V |51382. | | 227. | | |79199 USNO | +760407 |V0407 Ser |173701.3-150635 |M: | 12.7 |< 14.8 | |V |53565. | | 126. | | |79199 USNO | +760408 |V0408 Ser |174021.9-120645 |SR: | 13.1 |< 14.8 | |V | | | | | |79199 USNO | +760409 |V0409 Ser |175900.8-113323 |M | 11.4 |< 14.8 | |V |53474. | | 487. | |S |79064 2MASS| +760410 |V0410 Ser |180321.7-002552 |LB | 12.0 | 13.4 | |V | | | | | |79100 79013| +760411 |V0411 Ser |181224.7-104353 |EA | 8.40 | 8.55 | |V |52437.660 | | 34.536 |04 |O7.5If+O9I |79009 DM | +760412 |V0412 Ser |181415.8-092021 |DCEP | 11.57 | 12.35 | |V |52415.9 | | 5.121 |27 | |79125 79010| +760413 |V0413 Ser *|183508.2+000235 |EA | 7.95 | 8.09 | 8.09 |V |49038.828 | | 2.259775 |09 |B3V |79160 DM | +760414 |V0414 Ser |151222.0+115435 |RRAB | 13.2 | 14.0 | |V |51318.69 | | 0.74834 |22 | |80026 GSC | NL80_2 +760415 |V0415 Ser |151226.4-003537 |RRAB | 18.2 | 19.1 | |V |52002.7765 | | 0.644122 | | |80159 USNO | NL80_2 +760416 |V0416 Ser |151356.6-011529 |RRAB | 16.1 | 16.7 | |V |51582.8567 | | 0.582471 |18 | |80159 USNO | NL80_2 +760417 |V0417 Ser |151407.7-012607 |RRAB | 19.1 | 20.3 | |V |51621.8781 | | 0.545916 | | |80159 USNO | NL80_2 +760418 |V0418 Ser |151453.6+020935 |UG | 15.3 |< 18.8 | |* | | | | | |80410 80410| NL80_2 +760419 |V0419 Ser |151609.5-001623 |RRAB | 17.1 | 17.8 | |V |51975.8158 | | 0.551669 |16 | |80159 USNO | NL80_2 +760420 |V0420 Ser |151649.1-000747 |RRC | 17.2 | 17.7 | |V |51338.7080 | | 0.329673 |50 | |80159 USNO | NL80_2 +760421 |V0421 Ser |151745.1-003844 |RRAB | 16.4 | 17.4 | |V |51610.8414 | | 0.554056 |15 | |80159 USNO | NL80_2 +760422 |V0422 Ser |151813.6-011908 |RRAB | 13.1 | 14.5 | |V |53105.787 | | 0.6048 |20 | |80002 GSC | NL80_2 +760423 |V0423 Ser |151918.8+075306 |RRAB | 12.3 | 13.5 | |V |53085.86 | | 0.547990 |15 | |80002 GSC | NL80_2 +760424 |V0424 Ser |151927.8-003829 |RRAB | 16.8 | 17.9 | |V |51588.8957 | | 0.504216 |18 | |80159 USNO | NL80_2 +760425 |V0425 Ser *|151930.0+191558 |EW | 11.7 | 12.1 | 12.1 |V |52699.2 | | 0.54429 | | |80002 GSC | NL80_2 +760426 |V0426 Ser |151951.9+162751 |BY: | 8.09 | 8.34 | |V | | | 48. : | |K5 |80001 DM | NL80_2 +760427 |V0427 Ser |152014.2-002603 |RRAB | 14.5 | 15.6 | |V |51236.8444 | | 0.642954 |13 | |80159 USNO | NL80_2 +760428 |V0428 Ser |152039.6-000009 |RRAB | 18.9 | 19.8 | |V |51587.9339 | | 0.702645 |18 | |80159 USNO | NL80_2 +760429 |V0429 Ser |152113.8-010304 |RRAB | 19.3 | 19.7 | |V |51610.8204 | | 0.652480 |20 | |80159 USNO | NL80_2 +760430 |V0430 Ser |152122.9-000531 |RRAB | 16.8 | 17.9 | |V |51255.8340 | | 0.542108 | | |80159 USNO | NL80_2 +760431 |V0431 Ser |152157.7-021033 |RRAB | 18.9 | 19.7 | |V |51236.8591 | | 0.570191 |11 | |80159 USNO | NL80_2 +760432 |V0432 Ser |152303.6-014121 |RRAB | 18.5 | 19.2 | |V |51338.6454 | | 0.670186 |15 | |80159 USNO | NL80_2 +760433 |V0433 Ser |152318.6-005521 |RRAB | 16.1 | 16.8 | |V |51614.8804 | | 0.608386 |18 | |80159 USNO | NL80_2 +760434 |V0434 Ser |152327.6+023330 |EA | 13.5 | 14.6 | |* |54271.210 | | 0.884 | | |80006 GSC | NL80_2 +760435 |V0435 Ser |152329.3+025026 |RRAB | 14.5 | 15.3 | |* |51339.79 | | 0.58889 |25 : | |80001 GSC | NL80_2 +760436 |V0436 Ser |152346.1-004425 |BY | 10.92 | 11.26 | |V | | | 11.685 | |K1e |80034 GSC | NL80_2 +760437 |V0437 Ser *|152430.7+114717 |SR | 10.6 | 11.4 | |V | | | 430. | | |80001 GSC | NL80_2 +760438 |V0438 Ser |152529.9-012906 |RRAB | 18.3 | 19.4 | |V |52002.7696 | | 0.563078 |12 | |80159 USNO | NL80_2 +760439 |V0439 Ser |152658.4+053816 |RRAB | 13.2 | 14.6 | |V |53190.6229 | | 0.509448 |17 | |80002 GSC | NL80_2 +760440 |V0440 Ser |152709.2-002045 |RRAB | 17.4 | 18.0 | |V |51588.9361 | | 0.504129 |35 | |80159 USNO | NL80_2 +760441 |V0441 Ser |152755.2-020806 |RRAB | 17.0 | 17.9 | |V |51285.8414 | | 0.450955 |20 | |80159 USNO | NL80_2 +760442 |V0442 Ser |152820.9-002544 |RRAB | 14.6 | 15.7 | |V |51604.9225 | | 0.502436 |13 | |80159 GSC | NL80_2 +760443 |V0443 Ser |152839.2+050051 |RRAB | 12.9 | 14.3 | |V |53909.67 | | 0.535286 |15 | |80002 GSC | NL80_2 +760444 |V0444 Ser |152839.8-011916 |RRAB | 16.8 | 18.0 | |V |51643.8384 | | 0.515169 |12 | |80159 USNO | NL80_2 +760445 |V0445 Ser |152951.1+020248 |RS | 11.9 | 12.2 | |* | | | 11.3819 | | |80067 80067| NL80_2 +760446 |V0446 Ser |152954.3+124110 |RRC: | 12.8 | 13.4 | |V |54518.862 | | 0.335165 |45 | |80001 GSC | NL80_2 +760447 |V0447 Ser |153120.4-013602 |RRAB | 15.8 | 16.8 | |V |51615.8411 | | 0.533201 |16 | |80159 USNO | NL80_2 +760448 |V0448 Ser |153138.9-001311 |RRAB | 17.3 | 18.2 | |V |51588.9111 | | 0.565080 |20 | |80159 USNO | NL80_2 +760449 |V0449 Ser |153209.9-012033 |RRAB | 17.4 | 18.0 | |V |51997.8797 | | 0.619253 |20 | |80159 USNO | NL80_2 +760450 |V0450 Ser |153306.7+112456 |RRAB | 13.0 | 14.1 | |V |54572.76 | | 0.617240 |12 | |80002 GSC | NL80_2 +760451 |V0451 Ser |153347.0-015309 |RRAB | 15.4 | 15.8 | |V |51621.8809 | | 0.608010 |20 | |80159 USNO | NL80_2 +760452 |V0452 Ser |153439.2-002615 |RRAB | 18.9 | 20.2 | |V |51257.8988 | | 0.636913 | | |80159 USNO | NL80_2 +760453 |V0453 Ser |153452.7-014017 |RRAB | 19.2 | 20.1 | |V |51612.8728 | | 0.540028 |11 | |80159 USNO | NL80_2 +760454 |V0454 Ser |153634.4+121930 |RS | 10.2 | 10.7 | |V | | | 5.407 | | |80034 GSC | NL80_2 +760455 |V0455 Ser |153701.9-011308 |RRAB | 15.1 | 15.9 | |V |51993.8362 | | 0.364616 |25 | |80159 USNO | NL80_2 +760456 |V0456 Ser |153732.9-014353 |RRAB | 12.3 | 13.1 | |V |53171.71 | | 0.517554 |25 | |80001 GSC | NL80_2 +760457 |V0457 Ser |153808.0+120142 |RRAB | 13.95 | 14.84 | |* |53078.82 | | 0.505925 | | |80001 GSC | NL80_2 +760458 |V0458 Ser |153911.9+035525 |RRAB | 12.6 | 13.9 | |V |54962.67 | | 0.463448 |25 | |80002 GSC | NL80_2 +760459 |V0459 Ser |153946.7-003746 |RRAB | 17.0 | 17.4 | |V |51613.9015 | | 0.628089 |20 | |80159 USNO | NL80_2 +760460 |V0460 Ser |154122.5-002929 |RRAB | 16.8 | 17.3 | |V |51973.8185 | | 0.654350 |15 | |80159 USNO | NL80_2 +760461 |V0461 Ser |154124.2-002226 |RRAB | 14.3 | 15.6 | |V |51400.5619 | | 0.473505 |15 | |80159 USNO | NL80_2 +760462 |V0462 Ser *|154152.3-011427 |RRC | 17.0 | 17.5 | |V |51259.8443 | | 0.378324 |40 | |80159 USNO | NL80_2 +760463 |V0463 Ser |154154.9-004554 |RRC | 17.1 | 17.5 | |V |51587.9200 | | 0.410715 |43 | |80159 USNO | NL80_2 +760464 |V0464 Ser |154329.6-000711 |RRAB | 15.6 | 16.6 | |V |51611.8696 | | 0.705190 |13 | |80159 USNO | NL80_2 +760465 |V0465 Ser |154355.0-012852 |RRAB | 17.3 | 18.0 | |V |51993.8322 | | 0.593447 |12 | |80159 USNO | NL80_2 +760466 |V0466 Ser *|154425.3-001313 |RRC | 14.0 | 14.3 | |V |51615.8819 | | 0.382242 |50 | |80159 GSC | NL80_2 +760467 |V0467 Ser |154435.2+042308 |BY | 12.2 | 12.4 | |* | | | 0.73874 | | |80043 80043| NL80_2 +760468 |V0468 Ser |154605.1-002648 |RRC | 16.8 | 17.4 | |V |51611.8819 | | 0.301299 |30 | |80159 USNO | NL80_2 +760469 |V0469 Ser |154631.6-001559 |RRC | 15.2 | 15.6 | |V |51613.9060 | | 0.399583 |50 | |80159 GSC | NL80_2 +760470 |V0470 Ser |154716.1-004439 |RRAB | 15.9 | 16.4 | |V |51613.9138 | | 0.730139 |20 | |80159 USNO | NL80_2 +760471 |V0471 Ser |154732.0-001637 |RRAB | 15.4 | 16.6 | |V |51615.8943 | | 0.519675 |10 | |80159 USNO | NL80_2 +760472 |V0472 Ser |154753.5+004118 |LB | 8.8 | 9.5 | |V | | | | |M5III |80001 DM | NL80_2 +760473 |V0473 Ser |154827.1-011857 |RRAB | 17.1 | 18.2 | |V |51994.8810 | | 0.507119 |14 | |80159 USNO | NL80_2 +760474 |V0474 Ser |154840.9-031044 |RS | 10.75 | 11.00 | |V | | | 1.9236 | | |80034 DM | NL80_2 +760475 |V0475 Ser |154946.6+235453 |DSCT | 12.37 | 12.60 | |V |51283.7738 | | 0.119955 | | |80001 GSC | NL80_2 +760476 |V0476 Ser |155021.4-020252 |RRAB | 17.6 | 18.4 | |V |51338.7346 | | 0.596924 |14 | |80159 USNO | NL80_2 +760477 |V0477 Ser |155043.1+022752 |RRAB | 12.6 | 13.7 | |V |54879.8704 | | 0.647082 |20 | |80002 GSC | NL80_2 +760478 |V0478 Ser |155046.2-011935 |RRAB | 14.8 | 15.4 | |V |51255.8583 | | 0.620119 |20 | |80159 GSC | NL80_2 +760479 |V0479 Ser |155107.6+111619 |RS | 12.6 | 13.2 | |V | | | 6.603 | | |80034 GSC | NL80_2 +760480 |V0480 Ser |155114.1-005828 |RRAB | 16.7 | 17.7 | |V |51690.7756 | | 0.598659 |10 | |80159 USNO | NL80_2 +760481 |V0481 Ser |155117.1-013706 |RRAB | 18.9 | 20.1 | |V |51999.9187 | | 0.496769 |13 | |80159 G2.3 | NL80_2 +760482 |V0482 Ser |155211.1-005622 |RRAB | 12.6 | 13.9 | |V |54663.6371 | | 0.625956 |15 | |80002 GSC | NL80_2 +760483 |V0483 Ser |155224.9+193632 |RRAB | 14.13 | 15.18 | |* |51348.84 | | 0.49782 | | |80026 USNO | NL80_2 +760484 |V0484 Ser |155229.3+100834 |RRAB | 12.1 | 13.5 | |V |52724.7990 | | 0.511385 |12 | |80002 GSC | NL80_2 +760485 |V0485 Ser |155243.8-003932 |RRAB | 15.0 | 16.1 | |V |51257.8957 | | 0.550662 |15 | |80159 USNO | NL80_2 +760486 |V0486 Ser |155307.5+202839 |RS | 11.75 | 12.05 | |V | | | 9.2291 | | |80021 GSC | NL80_2 +760487 |V0487 Ser |155315.7+173412 |RRAB | 13.3 | 14.5 | |V |51448.63 | | 0.65297 |23 | |80026 GSC | NL80_2 +760488 |V0488 Ser |155428.1+152122 |RRAB | 12.9 | 14.0 | |V |54685.54 | | 0.502575 |25 | |80002 GSC | NL80_2 +760489 |V0489 Ser |155532.0-001055 |EA | 19.2 | 21.0 | |* |53873.59434 | | 0.078847 |12 |pec(e) |80064 80027| NL80_2 +760490 |V0490 Ser |155621.1-000621 |RRAB | 16.1 | 17.5 | |V |51258.8589 | | 0.579281 |12 | |80159 USNO | NL80_2 +760491 |V0491 Ser |155629.5-005922 |RRAB | 18.7 | 19.6 | |V |51612.8349 | | 0.640964 |20 | |80159 USNO | NL80_2 +760492 |V0492 Ser |155636.3-021147 |RRAB | 17.3 | 18.0 | |V |51972.8501 | | 0.706503 |12 | |80159 USNO | NL80_2 +760493 |V0493 Ser *|155644.2-000950 |UGSU | 12.2 | 19. | |V | | | | |pec(UG) |80233 80027| NL80_2 +760494 |V0494 Ser |155657.5-001603 |RRAB | 15.5 | 16.7 | |V |51610.8148 | | 0.654613 | | |80159 USNO | NL80_2 +760495 |V0495 Ser |155826.4-015042 |RRAB | 18.2 | 18.9 | |V |51972.8574 | | 0.758086 |18 | |80159 USNO | NL80_2 +760496 |V0496 Ser |155903.1-004732 |RRAB | 17.6 | 18.4 | |V |51975.8775 | | 0.608617 | | |80159 USNO | NL80_2 +760497 |V0497 Ser *|155907.9-012051 |RRC | 14.9 | 15.3 | |V |51582.8957 | | 0.232169 |50 | |80159 GSC | NL80_2 +760498 |V0498 Ser |155936.0+124623 |RRAB | 12.5 | 13.5 | |V |53156.643 | | 0.571260 |12 | |80002 GSC | NL80_2 +760499 |V0499 Ser *|160043.6+074803 |RPHS | 17.41 |( 0.18 *)| |g | | | 0.00138 | |sdO+K3V |80615 80615| NL80_3 +760500 |V0500 Ser |160046.7+241539 |EW | 12.54 | 12.65 | 12.64 |* |51615.855 | | 0.392998 | | |80394 GSC | NL80_3 +760501 |V0501 Ser *|160104.6-005720 |RRC | 14.5 | 15.0 | |V |51255.8390 | | 0.362919 |44 | |80159 GSC | NL80_3 +760502 |V0502 Ser |160105.6-001307 |LB | 12.5 | 13.4 | |V | | | | |M6.5 |80001 GSC | NL80_3 +760503 |V0503 Ser |160135.5-011359 |RRAB | 17.0 | 17.8 | |V |51643.8523 | | 0.581914 |25 | |80159 USNO | NL80_3 +760504 |V0504 Ser |160152.3+222248 |RRAB | 13.70 | 14.54 | |* |51307.75 | | 0.56396 |13 | |80026 GSC | NL80_3 +760505 |V0505 Ser |160248.2+252038 |EA+RS | 10.44 | 10.75 | 10.60 |V |55029.388 | | 0.495413 |10 | |80001 DM | NL80_3 +760506 |V0506 Ser |160258.6-001403 |RRC | 17.4 | 17.9 | |V |51258.8807 | | 0.553429 |50 : | |80159 USNO | NL80_3 +760507 |V0507 Ser |160308.7-001857 |RRAB | 17.9 | 19.3 | |V |51255.8343 | | 0.613628 |15 | |80159 USNO | NL80_3 +760508 |V0508 Ser |160525.6+013046 |EW | 12.7 | 13.3 | 13.2 |V |52894.54 | | 0.275460 | | |80002 GSC | NL80_3 +760509 |V0509 Ser |160529.2-011953 |RRAB | 15.2 | 16.1 | |V |51614.8791 | | 0.580286 |15 | |80159 USNO | NL80_3 +760510 |V0510 Ser |160704.3+023824 |RS | 9.50 | 9.70 | |V | | | 3.7836 | | |80034 DM | NL80_3 +760511 |V0511 Ser |160712.1-014522 |RRAB | 18.3 | 18.9 | |V |51690.7831 | | 0.655923 | | |80159 USNO | NL80_3 +760512 |V0512 Ser |160739.1-004713 |RRAB | 15.5 | 16.7 | |V |51998.9117 | | 0.479869 |15 | |80159 USNO | NL80_3 +760513 |V0513 Ser |160807.2+112228 |RRAB | 13.92 | 14.81 | |* |53828.78 | | 0.55317 |12 | |80001 GSC | NL80_3 +760514 |V0514 Ser |160855.0-001545 |RRAB | 17.1 | 17.6 | |V |51995.8386 | | 0.782202 |20 | |80159 USNO | NL80_3 +760515 |V0515 Ser |160859.9-012145 |RRAB | 17.8 | 18.4 | |V |51339.7086 | | 0.569421 |20 | |80159 USNO | NL80_3 +760516 |V0516 Ser |160915.8-020040 |RRAB | 17.5 | 18.1 | |V |51255.8470 | | 0.499107 | | |80159 USNO | NL80_3 +760517 |V0517 Ser |160920.3-010016 |RRAB | 16.7 | 17.8 | |V |51325.6923 | | 0.515550 |11 | |80159 USNO | NL80_3 +760518 |V0518 Ser |160959.7-015404 |RRAB | 17.7 | 18.6 | |V |51994.8797 | | 0.565318 |15 | |80159 USNO | NL80_3 +760519 |V0519 Ser |161007.5+035233 |XM | 16.5 | 18.0 | |R | | | 0.13232 | |wd+M5V |80620 80027| NL80_3 +760520 |V0520 Ser |161132.5+003111 |SRB | 10.7 | 12.5 | |V | | | 72.5 | | |80001 GSC | NL80_3 +760521 |V0521 Ser |161159.4-004138 |RRAB | 16.0 | 16.3 | |V |51338.7375 | | 0.613025 |22 | |80159 USNO | NL80_3 +760522 |V0522 Ser |161244.5-002144 |RRAB | 14.7 | 15.9 | |V |51260.8856 | | 0.610910 |12 | |80159 USNO | NL80_3 +760523 |V0523 Ser |161509.8-014937 |RRC | 15.0 | 15.5 | |V |51255.9149 | | 0.497791 |50 | |80159 USNO | NL80_3 +760524 |V0524 Ser |161541.2-000524 |RRAB | 15.1 | 16.2 | |V |51400.5699 | | 0.537907 |12 | |80159 USNO | NL80_3 +760525 |V0525 Ser |161748.2+000301 |RRAB | 13.9 | 14.6 | |V |51994.8786 | | 0.597352 |16 | |80159 GSC | NL80_3 +760526 |V0526 Ser |162128.1-010042 |RRAB | 17.2 | 17.8 | |V |51993.8675 | | 0.767555 | | |80159 USNO | NL80_3 +760527 |V0527 Ser |173513.1-101512 |CWA: | 13.2 | 14.3 | |V |54692. | | 30.7448 | | |80002 GSC | NL80_3 +760528 |V0528 Ser |174314.6-145805 |RRAB | 14.0 | 15.3 | |B |42197.51 | | 0.709461 |12 | |80479 80479| NL80_3 +760529 |V0529 Ser |174703.6-123715 |SRA | 12.6 | 14.4 : | |V |54939. | | 116. | | |80001 GSC | NL80_3 +760530 |V0530 Ser |175733.1-033612 |LB | 12.6 | 13.2 | |* | | | | | |80062 USNO | NL80_3 +760531 |V0531 Ser |175936.1-012503 |SRB | 12.00 | 12.45 | |* | | | 56. | | |80001 USNO | NL80_3 +760532 |V0532 Ser |175959.2-004114 |SRA | 13.0 | 14.1 | |V |54950. | | 97.6 | | |80002 GSC | NL80_3 +760533 |V0533 Ser |180657.5-002456 |SRB | 12.9 | 14.1 | |V | | | 61.4 | | |80001 GSC | NL80_3 +760534 |V0534 Ser |180841.9-141859 |DSCTC | 12.3 |( 0.05 )| |* | | | 0.06527 | | |80497 USNO | NL80_3 +760535 |V0535 Ser |180924.3-072214 |M | 12.9 |< 14.9 | |V |54676. | | 253. | |M8 |80001 2MASS| NL80_3 +760536 |V0536 Ser |181130.6-155534 |DCEP: | 11.5 | 12.1 | |V |51962.4 | | 9.011 | | |80002 GSC | NL80_3 +760537 |V0537 Ser |181135.6-021946 |LB | 12.8 | 13.6 | |* | | | | | |80062 USNO | NL80_3 +760538 |V0538 Ser |181417.7-010500 |SR: | 13.1 | 13.9 | |* | | | 180. : | | |80001 USNO | NL80_3 +760539 |V0539 Ser *|181716.1-152706 |BCEP | 9.59 | 9.69 | |V | | | 0.207308 | |B2Ib |80445 DM | NL80_3 +760540 |V0540 Ser |182327.6+061205 |DSCTC: | 12.8 |( 0.04 )| |V | | | 0.09452 | | |80504 GSC | NL80_3 +760541 |V0541 Ser |182440.2+061004 |DSCTC: | 12.5 |( 0.04 )| |V | | | 0.06559 | | |80504 GSC | NL80_3 +760542 |V0542 Ser |182445.3+060531 |RRC: | 12.4 | 12.6 | |V |54746.54 | | 0.285368 |28 | |80001 GSC | NL80_3 +760543 |V0543 Ser |182455.0-005714 |LB | 12.3 | 13.0 | |* | | | | | |80062 USNO | NL80_3 +760544 |V0544 Ser |182522.0-000043 |X | 22. |( 0.3 )| |V | | | 0.133 | | |80623 80418| NL80_3 +760545 |V0545 Ser |182753.3+060851 |BCEP: | 11.2 |( 0.02 )| |V | | | 0.34196 | | |80504 GSC | NL80_3 +760546 |V0546 Ser |182804.1+055813 |DSCTC: | 10.3 |( 0.01 )| |V | | | 0.08375 | |F0 |80504 GSC | NL80_3 +760547 |V0547 Ser |182824.4+061336 |E | 11.3 |( 0.02 )| |V | | | 1.11068 | | |80504 GSC | NL80_3 +760548 |V0548 Ser |182839.0+045448 |EA | 12.75 | 14.0 | 12.77 : |V |51450.710 | | 3.3749 |09 | |80042 GSC | NL80_3 +760549 |V0549 Ser |182917.7+053919 |DSCTC: | 10.8 |( 0.01 )| |V | | | 0.04683 | |A4 |80504 GSC | NL80_3 +760550 |V0550 Ser |182934.1+030235 |EA | 12.54 | 13.37 | 13.32 |V |52760.797 | | 2.142200 |11 | |80042 GSC | NL80_3 +760551 |V0551 Ser |183029.0+054838 |DSCTC: | 12.8 |( 0.01 )| |V | | | 0.04203 | | |80504 GSC | NL80_3 +760552 |V0552 Ser |183159.1+054020 |BY | 10.7 |( 0.12 )| |V | | | 0.43263 | | |80504 GSC | NL80_3 +760553 |V0553 Ser |183317.4+055931 |RRC: | 12.10 | 12.27 | |V | | | 0.21377 | | |80504 GSC | NL80_3 +760554 |V0554 Ser |184010.1-004742 |EA | 11.6 | 12.6 | 12.0 |V |54400.525 | | 0.435800 |16 | |80002 GSC | NL80_3 +760555 |V0555 Ser |184256.0+043500 |EA | 12.28 | 13.1 | 12.32 : |V |52782.814 | | 3.91352 | | |80013 GSC | NL80_3 +769004 |del Ser *|153448.1+103220 |DSCTC | 4.23 |( 0.04 )| |V | | | 0.134 | |F0IV |06204 BD | +769015 |omi Ser *|174124.9-125231 |DSCTC: | 4.26 |( 0.01 )| |V | | | 0.053 | |A2V |06204 BD | +7690194|tau 4 Ser |153628.2+150605 |SRB | 5.89 | 7.07 | |V | | | 100. : | |M5IIb-IIIa |09893 08953| +769022 |khi Ser |154147.4+125051 |ACV | 5.33 |( 0.03 )| |V |34134.06 | | 1.59584 |50 |A0p(Sr-Cr-Eu) |01435 BD | +769104 |d Ser *|182712.5+001146 |I: | 5.17 | 5.29 | |V | | | | |G0III+A6V |09899 08953| +770001 |R Sex |094242.4-080600 |LB: | 9.7 | 10.6 | |p | | | | |M5IIIe |09902 BD | +770002 |S Sex *|103456.0-002034 |M | 8.2 | 13.7 | |V |45390. | | 264.9 |50 |M2e-M5e |00001 00002| +770003 |T Sex *|095328.4+020326 |RRC | 9.81 | 10.32 | |V |41384.300 | | 0.3246980 |42 |A7II-III-F4III |07984 06286| +770004 |U Sex *|095725.4+034005 |RRAB | 13.2 | 15.0 | |p |45761.413 | | 0.5340080 |10 | |09979 03697| +770005 |V Sex |095607.8+045107 |RR | 12.1 | 13.6 | |p |27509.325 | | 0.4880788 | | |00183 06286| +770006 |W Sex |095058.3-020143 |SR | 10.3 | 12.5 | |B | | | 134.0 | |C6,3e(Nbe) |01437 00002| +770007 |X Sex |102330.9-070517 |SR: | 11. | 12.5 | |p | | | | |M |00190 08953| +770008 |Y Sex *|100248.0+010540 |EW/KW | 9.83 | 10.21 | 10.17 |V |41766.288 | | 0.4198228 | *|F8 |09982 01432| +770009 |Z Sex |101059.4+023329 |LB | 8.7 | 9.84 | |V | | | | |M4-M5III |07515 06928| +770010 |RR Sex |095453.7+051152 |LB | 10.0 | 11.0 | |p | | | | |M4 |00351 08953| +770011 |RS Sex |102102.0+021723 |BCEP: | 6.64 | 6.68 | |V | | | | |B2.5IV |01438 BD | +770012 |RT Sex |101219.2-101917 |SRB | 7.9 | 8.95 | |V | | | 96. | |M6 |05828 08953| +770013 |RU Sex *|094540.8-064400 |EB: | 10.6 | 11.4 | 11.4 |p |38504.130 | | 13.07 : | | |04655 BD | +770014 |RV Sex |104641.8-082233 |RRAB | 11.8 | 12.6 | |p |29640.620 | | 0.503413 |20 |A0-A2 |03160 03160| +770015 |RW Sex *|101956.6-084156 |NL+ZZ: | 10.39 | 10.84 | |V | | | | |pec |06416 BD | +770016 |RX Sex *|102609.2+035557 |DSCTC | 6.70 |( 0.02 )| |V |41303.024 | | 0.0799 | |A3V |06417 BD | +770017 |RY Sex *|103601.2+050713 |UV | 14.95 | 15.29 | |U | | | | |M4Ve |06873 04139| +770018 |RZ Sex |104848.6-090001 |SR: | 13.5 | 15.5 | |p | | | | |M9 |04579 07842| +770019 |SS Sex |102326.5-040427 |ACV | 5.94 | 5.98 | |V |44318.00 | | 4.37 | |B9p(Si-Sr-Cr) |09983 BD | +770020 |ST Sex |095220.3+025449 |RRAB | 15.2 | 16.9 | |B | | | | | |67172 GSC22| +770021 |SU Sex |095922.6-045913 |RRAB | 15.8 | 16.8 | |B | | | | | |67172 GSC22| +770022 |SV Sex |100129.7-044747 |RR: | 14.7 | 16.5 | |B | | | | | |67172 USNO | +770023 |SW Sex |101509.4-030833 |E/WD+NL | 14.8 | 16.7 | |B | | | | | |67307 67308| +770024 |SX Sex |101659.5+023314 |RRAB | 15.6 | 16.8 | |B | | | | | |67172 GSC22| +770025 |SY Sex |102543.9+012809 |M | 13.2 | 17.4 | |B | | | | | |67311 67311| +770026 |SZ Sex |102050.2+032109 |M | 13.7 |< 17.6 | |B | | | | | |68232 68232| +770027 |TT Sex |094625.6-060135 |LB | 10.4 | 11.9 | |p | | | | | |71034 BD | +770028 |TU Sex |101319.8-014349 |EW | 16.4 | 17.0 | |B | | | | | |73314 73314| +770029 |TV Sex |094751.3+041257 |LB: | 8.82 | 8.97 | |Hp| | | | | |HIP HIP | +770030 |TW Sex |095500.6-001056 |LB: | 7.91 | 8.03 | |Hp| | | | | |HIP HIP | +770031 |TX Sex |095848.8+044831 |SRB | 7.18 | 7.29 | |Hp| | | | | |HIP HIP | +770032 |TY Sex |095841.5-110426 |E: | 9.19 | 9.38 | |Hp| | | | | |HIP HIP | +770033 |TZ Sex |100733.3+005506 |SRB | 6.66 | 6.87 | |Hp| | | | | |HIP HIP | +770034 |UU Sex |102144.0+041801 |SRB | 8.74 | 9.05 | |Hp| | | | | |HIP HIP | +770035 |UV Sex |102241.8-092343 |SRB | 6.91 | 7.18 | |Hp| | | | | |HIP HIP | +770036 |UW Sex |104013.0-113415 |LB: | 9.17 | 9.33 | |Hp| | | | | |HIP HIP | +770037 |UX Sex |102517.3-092041 |RPHS | 15.88 |( 0.08 )| |V | | | | | |75258 GSC22| +770038 |UY Sex |105002.8-000037 |RPHS | 13.49 |( 0.08 )| |V | | | | | |75259 75256| +770039 |UZ Sex |102834.9-000029 |R | 13.83 |( 0.02 R )| |V | | | | | |76103 76103| +770040 |VV Sex |094522.8+035733 |SR | 11.6 |( 1. )| |V | | | | | |77067 GSC | +770041 |VW Sex |100145.6-021317 |SR: | 12.1 | 13.4 | |V | | | | | |77004 UCAC2| +770042 |VX Sex |100241.3-013338 |SR: | 10.7 | 12.2 | |V | | | | | |77004 GSC | +770043 |VY Sex |105029.7-024143 |EW | 9.01 |( 0.34 )| |V | | | | | |77092 DM | +770044 |VZ Sex |094431.7+035806 |XM | 12.8 | 16.8 | |V | | | | |pec(e) |78310 USNO | +770045 |WW Sex *|095039.3-053043 |EA | 9.96 | 10.50 | 10.46 |V |52705.725 | | 1.43916 | | |78322 DM | +770046 |WX Sex *|100624.9+010012 |EW | 12.4 | 12.8 | 12.8 |V |50544.4116 | | 0.428870 | | |78017 GSC | +770047 |WY Sex *|100937.4-005628 |EW | 11.5 |( 0.36 )|( 0.29 )|V |50928.4287 | | 0.368055 | | |78017 GSC | +770048 |WZ Sex *|101326.9-013951 |EB | 9.8 | 10.2 | 10.0 |V |52722.77 | | 1.05917 | | |78094 DM | +770049 |XX Sex |101602.1-061826 |EW | 9.32 | 9.56 | |V |52314.79 | | 0.54011 | |F0 |78094 DM | +770050 |XY Sex |102014.5-085346 |R | 14.43 |( 0.08 )| |V | | | 0.0729938 | |sdB |78020 78009| +770051 |XZ Sex |102557.5-073051 |SRA | 9.7 |< 10.4 | |V |51950 | | 364. | | |78103 GSC | +770052 |YY Sex |103947.0-050657 |XM | 17.40 | 18.75 | |V | | | | |pec(e) |78137 USNO | +770053 |YZ Sex |103543.9-091625 |M | 11.5 | 15.3 | |V |53493. | | 148. | | |79100 GSC | +770054 |ZZ Sex |094134.3-003543 |RRC | 16.1 | 16.5 | |V |51613.6561 | | 0.327054 |40 | |80159 USNO | NL80_2 +770055 |AA Sex |094134.8-055306 |RRAB | 14.48 | 15.51 | |* |51598.77 | | 0.56406 | | |80026 GSC | NL80_2 +770056 |AB Sex |094304.9-045820 |RRAB | 13.0 | 14.4 | |V |54290.46 | | 0.587651 | | |80001 GSC | NL80_2 +770057 |AC Sex |094427.6-034148 |RRAB | 12.7 | 13.9 | |V |53465.6732 | | 0.649469 |18 | |80002 GSC | NL80_2 +770058 |AD Sex |094854.7-005748 |RRAB | 14.8 | 15.8 | |V |51606.6366 | | 0.504831 |12 | |80159 USNO | NL80_2 +770059 |AE Sex |095209.2-014404 |RRAB | 16.1 | 17.1 | |V |51611.6348 | | 0.520189 |13 | |80159 USNO | NL80_2 +770060 |AF Sex |095515.9+034532 |RRAB | 13.28 | 14.39 | |* |51590.87 | | 0.53092 |20 | |80026 GSC | NL80_2 +770061 |AG Sex |095625.1-004400 |RRAB | 15.3 | 16.1 | |V |51587.6469 | | 0.561379 |15 | |80159 USNO | NL80_2 +770062 |AH Sex |095627.7-011725 |RRC | 17.7 | 18.0 | |V |51971.7482 | | 0.219029 |40 | |80159 USNO | NL80_2 +770063 |AI Sex *|100346.3+012510 |EB | 10.85 | 11.1 | 11.0 |V |53386.6120 | | 0.603620 | |F5 |80002 GSC | NL80_2 +770064 |AK Sex |100837.7-020313 |RRAB | 16.8 | 17.7 | |V |51992.6168 | | 0.581735 |20 | |80159 USNO | NL80_2 +770065 |AL Sex |101014.2-020114 |RRAB | 16.1 | 17.1 | |V |51582.6574 | | 0.559836 |13 | |80159 USNO | NL80_2 +770066 |AM Sex |101123.1-012644 |RRC | 15.0 | 15.3 | |V |51612.6409 | | 0.176601 |50 | |80159 GSC | NL80_2 +770067 |AN Sex |101217.7-034444 |RS | 9.16 | 9.32 | |V | | | 21.535 | |M1.5V |80002 HIP | NL80_2 +770068 |AO Sex *|101254.9-002457 |RRC: | 15.7 | 16.0 | |V |51612.6420 | | 0.159640 |50 | |80159 GSC | NL80_2 +770069 |AP Sex |101428.4-014111 |RRAB | 18.1 | 18.7 | |V |51606.6755 | | 0.667717 |19 | |80159 USNO | NL80_2 +770070 |AQ Sex |101452.5-002636 |RRAB | 17.5 | 18.3 | |V |51232.7031 | | 0.581861 |12 | |80159 USNO | NL80_2 +770071 |AR Sex |101546.9-001237 |RRAB | 13.2 | 14.1 | |V |53539.4841 | | 0.578767 |15 | |80002 GSC | NL80_2 +770072 |AS Sex |101652.5-013750 |RRAB | 15.2 | 16.1 | |V |51232.6903 | | 0.571667 |17 | |80159 USNO | NL80_2 +770073 |AT Sex |101750.0-020127 |RRC | 16.3 | 16.7 | |V |51253.5878 | | 0.330705 |42 | |80159 USNO | NL80_2 +770074 |AU Sex |101900.3-021329 |RRAB | 12.5 | 13.7 | |V |53754.8002 | | 0.777160 |20 | |80002 GSC | NL80_2 +770075 |AV Sex |101935.9-012755 |RRAB | 16.8 | 17.3 | |V |51983.6508 | | 0.628340 |20 | |80159 USNO | NL80_2 +770076 |AW Sex |101945.1-013903 |RRAB | 15.8 | 16.9 | |V |51232.7294 | | 0.568842 |12 | |80159 USNO | NL80_2 +770077 |AX Sex |102019.4-010131 |RRAB | 14.4 | 15.6 | |V |51571.7816 | | 0.481606 |12 | |80159 GSC | NL80_2 +770078 |AY Sex *|102347.7+003841 |* | 17.26 | 17.90 | |V | | | 0.198094 | |G5-7V-pec(e) |80332 80332| NL80_2 +770079 |AZ Sex |102424.3-020431 |RRC | 15.5 | 15.9 | |V |51611.6625 | | 0.337773 |46 | |80159 USNO | NL80_2 +770080 |BB Sex |102548.8-003731 |RRAB | 16.9 | 18.1 | |V |51585.7172 | | 0.525619 |13 | |80159 USNO | NL80_2 +770081 |BC Sex |103002.7-004732 |RS | 11.6 | 12.1 | |V | | | 15.37 | | |80034 GSC | NL80_2 +770082 |BD Sex |103033.1-011820 |RRAB | 15.9 | 16.9 | |V |51643.6107 | | 0.521932 |10 | |80159 USNO | NL80_2 +770083 |BE Sex |103037.5-004713 |RRC | 17.9 | 18.4 | |V |51248.6760 | | 0.495078 |39 | |80159 USNO | NL80_2 +770084 |BF Sex |103058.3-011835 |RRAB | 16.0 | 16.4 | |V |51582.6417 | | 0.818739 |24 | |80159 USNO | NL80_2 +770085 |BG Sex *|103140.1-005140 |RRC | 17.0 | 17.7 | |V |51586.7100 | | 0.293071 |41 | |80159 USNO | NL80_2 +770086 |BH Sex |103334.8-011754 |RRAB | 16.5 | 17.5 | |V |51992.6572 | | 0.506803 |22 | |80159 USNO | NL80_2 +770087 |BI Sex |103354.8+014930 |RRAB | 14.15 | 15.10 | |* |51629.67 | | 0.48470 | | |80026 GSC | NL80_2 +770088 |BK Sex |103540.4-005819 |RRAB | 16.6 | 17.6 | |V |51608.6892 | | 0.541536 |16 | |80159 USNO | NL80_2 +770089 |BL Sex |103637.1-004112 |RRAB | 15.4 | 16.3 | |V |51254.6660 | | 0.521513 |20 : | |80159 USNO | NL80_2 +770090 |BM Sex |103731.8-003952 |RRAB | 16.3 | 17.2 | |V |51171.8369 | | 0.525700 |19 | |80159 USNO | NL80_2 +770091 |BN Sex |103921.8-011353 |RRAB | 16.3 | 17.2 | |V |51612.6401 | | 0.583016 |12 | |80159 USNO | NL80_2 +770092 |BO Sex |104239.6-011628 |RRAB | 16.4 | 17.3 | |V |51251.6317 | | 0.544575 |18 | |80159 USNO | NL80_2 +770093 |BP Sex *|104548.2-104249 |ACV | 7.40 | 7.44 | |Hp| | | 1.72907 | |A0p(Si) |80340 HIP | NL80_2 +770094 |BQ Sex |104555.6-072136 |RRAB | 12.7 | 14.1 | |V |52749.7546 | | 0.503472 |15 | |80002 GSC | NL80_2 +770095 |BR Sex |104721.6-015727 |RRC | 15.8 | 16.1 | |V |51999.6995 | | 0.457523 |40 | |80159 USNO | NL80_2 +770096 |BS Sex |104800.5-053033 |RRAB | 12.7 | 13.6 | |V |54576.5901 | | 0.60462 |15 | |80002 GSC | NL80_2 +770097 |BT Sex |104842.0-011354 |RRC | 17.0 | 17.4 | |V |51582.6866 | | 0.327003 |38 | |80159 USNO | NL80_2 +779002 |bet Sex |103017.5-003813 |ACV: | 5.00 | 5.10 | |V | | | | | |69140 BD | +780001 |R Tau *|042818.0+100945 |M | 7.6 | 15.8 | |V |45250. | | 320.9 |41 |M5e-M9e |00001 00002| +780002 |S Tau *|042911.8+095644 |M | 9.2 | 16.2 | |V |44927. | | 374.50 |43 |M6.5e-M9e |00001 00002| +780003 |T Tau *|042159.4+193207 |INT | 9.3 | 13.5 | |V | | | | |F8Ve-K1IV-Ve(T) |00574 02301| +780004 |U Tau *|042150.1+194849 |CST | 10.4 | | |p | | | | |F5 |00960 00576| +780005 |V Tau *|045202.3+173217 |M | 8.5 | 14.6 | |V |45316. | | 168.7 |47 |M0e-M4.5e |00001 00002| +780006 |W Tau *|042757.2+160236 |SRB | 8.2 | 13.0 | |V | | | 264.6 |53 |M4-M6.5 |09890 00002| +780007 |X Tau |035313.2+074614 |CST | 6.60 | | |V | | | | |F8IV |00862 BD | +780008 |Y Tau |054539.4+204142 |SRB | 6.50 | 9.2 | |V | | | 241.5 |50 |C6.5,4e(N3) |00589 08953| +780009 |Z Tau *|055224.9+154744 |M | 9.2 | 14.2 | |V |43436. | | 466.2 |41 |S7.5,1e(M7e) |00001 00002| +780010 |RR Tau *|053930.5+262227 |INSA | 10.2 | 14.30 | |V | | | | |B8e-A5eII-III |08044 02301| +780011 |RS Tau |055148.6+155255 |CST | 9.0 | | |V | | | | |F5 |00960 00578| +780012 |RT Tau |050414.0+233851 |CST | 10.1 | | |p | | | | |A0 |00589 | +780013 |RU Tau *|055236.8+155814 |M | 9.7 | 15.3 | |V |42690. | | 544.6 |62 |M3.5e-M6.5 |00001 00002| +780014 |RV Tau *|044706.7+261046 |RVB | 9.8 | 13.3 | |p |17486.6 | | 78.731 | |G2eIa-M2Ia |00001 00368| +780015 |RW Tau *|040354.3+280734 |EA/SD | 7.98 | 11.59 | 8.09 |V |45684.204 | | 2.7688356 |14 |B8Ve+K0IV |00001 00010| +780016 |RX Tau *|043814.6+082009 |M | 9.1 | 14.8 | |V |41282. | | 331.8 |47 |M6e-M7e |00001 00002| +780017 |RY Tau *|042157.4+282636 |INT | 9.3 | 13.0 | |p | | | | |F8Ve-K1IV-Ve(T) |09990 09990| +780018 |RZ Tau *|043637.7+184518 |EW/KW | 10.08 | 10.71 | 10.66 |V |37676.567 | | 0.4156747 | |A7V+A7V |09084 00318| +780019 |SS Tau *|033641.9+052141 |RRAB | 11.92 | 13.02 | |V |39033.953 | | 0.369901 |15 | |00001 06286| +780020 |ST Tau |054503.2+133435 |DCEP | 7.79 | 8.62 | |V |41761.963 | | 4.034299 |27 |F5-G5 |08300 00321| +780021 |SU Tau |054903.7+190422 |RCB | 9.1 | 16.86 | |V | | | | |G0-1Iep(C1,0 HD) |08129 00002| +780022 |SV Tau *|055208.2+280640 |EA/SD | 9.68 | 10.78 | 9.8 |V |34423.7491 | | 2.1669051 |19 *|B9+A0 |09987 08953| +780023 |SW Tau *|042433.0+040724 |CWB | 9.33 | 10.16 | |V |41687.770 | | 1.583584 |36 |F4-F8 |08300 03703| +780024 |SX Tau *|035304.3+253241 |M | 13. | 16.0 : | |B |33640. | | 224.6 | |M |00001 03706| +780025 |SY Tau *|034845.8+233132 |LB | 10.7 | 11.7 | |p | | | | |M4 |00339 03706| +780026 |SZ Tau *|043714.8+183235 |DCEPS | 6.33 | 6.75 | |V |34628.57 | | 3.14873 |45 |F5Ib-F9.5Ib |00001 00021| +780027 |TT Tau *|045131.3+283137 |SRB | 10.2 | 12.2 | |p | | | 166.5 | |C4,2-C7,4(N3) |00373 00021| +780028 |TU Tau |054513.7+242512 |SRB | 5.9 | 9.2 | |V | | | 190. : | |C5,4(N3)+A2III-V |00589 BD | +780029 |TV Tau |040833.9+265035 |SRA | 9.3 | 12.2 | |V |25870. | | 120. |50 |M6 |00373 00002| +780030 |TW Tau |042708.6+131732 |LB: | 10.6 | 11.6 | |p | | | | |K0IV-V: |00340 00021| +780031 |TX Tau |040811.8+263554 |SRA | 10.5 | 12.3 | |V |19384. | | 40.1 |50 |M5 |00360 00002| +780032 |TY Tau *|043443.3+151554 |EA | 11.5 | 12.0 | |V |21192.395 | | 1.0773555 |05 |K0V |00960 00318| +780033 |TZ Tau |040245.7+164034 |M | 10.3 | 14.0 | |V |34860. | | 269.0 | |M9 |00001 06286| +780034 |UU Tau *|034734.3+261653 |M | 13. | 17. | |p |27050. | | 215. | |M |02861 03706| +780035 |UV Tau |035648.3+273343 |M | 13.5 |< 15.6 | |p |33620. | | 333.3 | | |02861 00565| +780036 |UW Tau |045720.9+253744 |LB | 13.7 | 15.3 | |p | | | | |C |00585 UCAC2| +780037 |UX Tau *|043004.0+181349 |INT | 10.6 | 13.7 | |p | | | | |G0Ve-K2Ve(Li) |04050 09991| +780038 |UY Tau |035423.6+160102 |M | 11. | 16. | |p |35014. | | 334.5 | | |00001 06286| +780039 |UZ Tau *|043243.0+255231 |INT(YY) | 11.7 | 15.0 | |p | | | | |G5Ve-M1-3Ve(T) |09478 10000| +780040 |VV Tau |034134.4+200629 | | 11. | 15.4 | |p | | | | | |10001 UCAC2| +780041 |VW Tau *|035341.2+214013 | | 13. | 14. | |p | | | | | |10001 UCAC2| +780042 |VX Tau |042527.2+163323 |M | 9.8 |< 15. | |V |33600. | | 298.9 | |M8e |00001 02224| +780043 |VY Tau |043917.4+224754 |INT | 9.0 | 15.26 | |B | | | | |M0e(T) |05472 09994| +780044 |VZ Tau |050514.3+214549 |ISB | 11.5 | 14.6 | |p | | | | |M4 |06190 06190| +780045 |WW Tau *|040142.0+301516 |SRD | 9.0 | 12.9 | |p |34325. | | 116.4 | |G2e-K2(M3) |03707 08953| +780046 |WX Tau |050816.8+215644 |M | 12.0 |< 13.5 | |p |33706. | | 191.0 | |M |02861 00592| +780047 |WY Tau *|055626.1+261840 |EW/KE | 11.14 | 11.73 | 11.73 |V |37402.2580 | | 0.6927584 | |B9 |03709 00594| +780048 |WZ Tau *|034705.6+202342 |LB | 10.8 | 11.9 | |V | | | | |M0 |00104 | +780049 |XX Tau |051924.4+164300 |NA | 6.0 | 16.5 | |p |25154. |1927 | | |pec(NOVA) |10002 00002| +780050 |XY Tau |040655.9+061721 |M | 12.4 |< 16. | |p |24448. | | 206. | | |00001 06286| +780051 |XZ Tau *|043140.1+181357 |INT | 10.4 | 16.62 | |B | | | | |G5Ve-M3e(T) |07822 09991| +780052 |YY Tau |052838.5+154055 |M | 11.9 |< 16.2 | |p |24830. | | 192.1 |30 : | |00384 06286| +780053 |YZ Tau *|034836.7+241312 |RRC | 13.3 | 14.0 | |p |19658.9700 | | 0.41147560 |40 |A-G |04016 06286| +780054 |ZZ Tau |043051.4+244222 |INSB | 12.9 | 16.5 | |p | | | | |M4e |06401 10000| +780055 |AA Tau *|043455.4+242853 |INT | 12.2 | 16.1 | |p | | | | |K5Ve-M1Ve(T) |06996 09991| +780056 |AB Tau |054102.5+280623 |SRA | 10.4 | 12.0 | |p |37340. | | 142.0 | |M5-M7 |08044 08953| +780057 |AC Tau *|043706.4+014131 |EA/SD | 10.3 | 13.1 | |V |45636.590 | | 2.043356 |18 |F0 |00001 00318| +780058 |AD Tau |053417.0+253616 |I | 12.0 | 13.7 | |p | | | | | |02427 00467| +780059 |AE Tau |053436.7+261209 |CEP | 12.5 | 13.5 | |p |26415.52 | | 3.89645 |28 | |00600 00533| +780060 |AF Tau |033622.3+240928 |SRA | 13.8 | 15.4 | |p |25150. | | 240. | | |00193 06286| +780061 |AG Tau |034456.1+302224 |M | 12.4 |< 15. | |p |39108. | | 206.4 | | |00001 00603| +780062 |AH Tau *|034712.0+250700 |EW/KW | 11.25 | 11.92 | 11.85 |V |31062.5081 | | 0.3326754 | |G1p |09998 09999| +780063 |AI Tau |034819.8+202008 |RR | 13.5 | 15.5 | |p |24801.822 | | 0.5685527 | | |04149 06286| +780064 |AK Tau |040239.4+210359 |M | 11.8 | 15.8 | |p |37648. | | 241.56 | |M5e |00001 03713| +780065 |AL Tau *|053354.9+260102 |EA | 12.9 | 13.9 |( 0.15 )|V |35130.4018 | | 0.930658 |30 |F0-F8 |00605 00533| +780066 |AM Tau *|055221.4+161701 |EA/SD: | 10.4 | 12.3 | |V |45253.417 | | 2.043926 |10 : |B8 |00001 07929| +780067 |AN Tau *|035611.4+293123 |EB/DM | 10.3 | 11.15 | 10.5 |V |28181.388 | | 1.61464 | |A3 |00606 BD | +780068 |AO Tau |044944.6+282029 |M | 12.7 | 16.6 | |p |38688. | | 229.2 | | |05611 05611| +780069 |AP Tau *|045444.7+265527 |EA | 14.0 | 15.0 | 14.7 |B |39414.438 | | 0.9719728 |08 *| |07806 07298| +780070 |AQ Tau |045558.0+275328 |EA/SD: | 12.0 | 12.9 | |p |29651.774 | | 1.215904 |15 *|A-F |07089 07089| +780071 |AR Tau |050616.5+272216 |SR | 14.8 | 16.0 | |p | | | 130. : | | |00607 UCAC2| +780072 |AS Tau *|051428.5+274325 |EA/SD | 12.4 | 14.4 | |p |46033.597 | | 3.483328 |16 *| |00001 07806| +780073 |AT Tau |053955.6+275105 |LB | 13.9 | 14.8 | |p | | | | |M6 |00609 02310| +780074 |AU Tau *|054331.0+280744 |SRA | 12.0 | 14.5 | |V |38057. | | 70.2 |51 | |08079 00533| +780075 |AV Tau |054544.9+270405 |DCEP | 13.0 | 14.0 | |p |37401.567 | | 3.61581 |20 | |03709 00533| +780076 |AW Tau *|054730.2+270812 |M | 13.2 |< 17. | |B |42365. | | 654.4 | |M9 |10009 02310| +780077 |AX Tau |054943.5+240656 |SRA | 14.0 | 15.0 | |p |26315. | | 134. | |M6.5 |00609 02321| +780078 |AY Tau |054948.8+252524 |LB | 13.1 | 14.6 | |p | | | | |M5 |00609 02310| +780079 |AZ Tau |055141.9+281825 |LB | 12.1 | 13.6 | |p | | | | |M7-M8 |00609 02321| +780080 |BB Tau *|055218.6+254942 |LB | 13.2 | 14.0 | |p | | | | |S4e(M0) |00609 02310| +780081 |BC Tau |055258.8+241430 |LB | 14.2 | 15.0 | |p | | | | |M6 |00609 02310| +780082 |BD Tau |055341.4+235143 |LB | 12.8 | 13.9 | |p | | | | |M3-M5IIIe |00609 02310| +780083 |BE Tau |055608.4+245111 |SR | 13.6 | 15.0 | |p | | | 500. : | |M4 |00609 02321| +780084 |BF Tau |055947.2+264531 |SRA | 14.1 | 15.0 | |p |26250. | | 138. | |M6 |00609 02310| +780085 |BG Tau |033110.7+284231 |SR | 11.8 | 13.2 | |p | | | | |M6 |00193 06286| +780086 |BH Tau |034053.1+264059 |SR | 13.2 | 13.9 | |p | | | | | |00193 GSC22| +780087 |BI Tau |034935.6+263034 |SR | 12.8 | 13.8 | |p | | | | |M2 |00193 06286| +780088 |BK Tau *|035138.3+254553 |LB | 11.9 | 12.7 | |p | | | | |M7 |00193 06286| +780089 |BL Tau |035301.6+201229 |SR: | 10.0 | 12.0 | |p | | | | |M4-M5 |00193 08953| +780090 |BM Tau |035431.7+283418 |ISA: | 12.5 | 14.0 | |p | | | | | |00602 00603| +780091 |BN Tau *|041544.9+304008 |EA/SD | 12.7 | 15.2 | |p |45236.584 | | 4.25426 |08 *| |00001 05466| +780092 |BO Tau |041645.1+262208 |RRAB | 12.6 | 13.8 | |p |38701.482 | | 0.445139 |22 | |05617 05617| +780093 |BP Tau *|041915.8+290627 |INT(YY) | 10.7 | 13.6 | |B | | | | |K3Ve-M0Ve(T) |05469 00598| +780094 |BQ Tau |042115.6+223417 | | 13.2 | 14.0 | |p | | | 1.035 | | |00610 06286| +780095 |BR Tau |043442.9+214622 |RRAB | 12. | 14. | |p |36487.401 | | 0.3905928 |12 | |03691 06286| +780096 |BS Tau |045851.4+283124 |INS | 13.5 | 17.1 | |B | | | | |ea |07091 07091| +780097 |BT Tau |055251.8+264730 |INS | 13.7 | 15.9 | |p | | | | | |00612 00533| +780098 |BU Tau *|034911.2+240812 |GCAS | 4.77 | 5.50 | |V | | | | |B8Vne |10005 08953| +780099 |BV Tau *|053834.7+225445 |EB/KE: | 11.7 | 12.4 | 11.9 |p |46052.63 | | 0.93044 | |B9: |10006 | +780100 |BW Tau *|043311.1+052116 |GAL | 13.7 | 16.4 | |B | | | | | |06541 06742| +780101 |BX Tau |043358.4+101353 |I | 15.3 | 16.4 | |p | | | | |F2: |00614 UCAC2| +780102 |BY Tau |044136.0+045625 |I | 14.1 | 15.0 | |p | | | | | |00614 UCAC2| +780103 |BZ Tau |044221.3+065240 |SR | 13.7 | 15.8 | |p | | | 400. | |M4-M7 |00614 06286| +780104 |CC Tau |044254.0+015914 |E | 13.5 | 13.9 | |p | | | | | |00614 UCAC2| +780105 |CD Tau *|051731.1+200755 |EA/D | 6.77 | 7.34 | 7.31 |V |41619.4075 | | 3.435137 |08 *|F7V+F5IV |00001 08953| +780106 |CE Tau |053212.8+183539 |SRC | 4.23 | 4.54 | |V | | | 165. | |M2Iab-Ib |00615 BD | +780107 |CF Tau *|040510.1+222948 |EA/D | 10.03 | 10.5 | 10.2 |V |30651.230 | | 2.75589 |12 |G0 |00318 00318| +780108 |CG Tau |055159.0+272923 |M | 14.4 | 19. : | |p |26224. | | 320. | | |00612 02310| +780109 |CH Tau *|034459.4+095636 |SRB | 9.4 | 10.7 | |V |28733. | | 97. | |M6.5 |00197 08953| +780110 |CI Tau |043352.0+225030 |INST(YY) | 13.8 | 15.9 | |p | | | | |G:e(T)-K7Ve(T) |04046 00598| +780111 |CK Tau |043645.0+085424 |RR | 14.5 | 15.5 | |p | | | | | |00614 UCAC2| +780112 |CL Tau |043844.5+080546 |SR: | 13.7 | 16.2 | |p | | | | | |00614 06286| +780113 |CM Tau *|053431.9+220052 |SN+PSR | -6. : | 17.7 | |V | |1054 | | |cont |05470 10016| +780114 |CN Tau |055809.4+280234 |RRAB | 13.1 | 13.7 | |p |25981.345 | | 0.642062 |40 | |03165 03165| +780115 |CO Tau |055854.7+261354 |LB | 13.1 | 13.8 | |p | | | | |M5III |00612 02310| +780116 |CP Tau |054526.5+153045 |LB | 11.8 | 13.7 | |p | | | | |C5,4(N) |00619 02351| +780117 |CQ Tau |053558.5+244454 |INSA | 8.7 | 12.25 | |B | | | | |A1-F5IVe |05471 05471| +780118 |CR Tau *|055128.9+240331 |EA | 12.5 | 13.0 | |p |26004.35 | | 0.681346 |30 : | |00612 02357| +780119 |CS Tau |055408.1+245110 |LB | 14.8 | 15.6 | |p | | | | |M5 |00612 02321| +780120 |CT Tau *|055850.1+270442 |EW/KE | 10.34 | 11.12 | 11.12 |V |45404.359 | | 0.6668303 | |B2n |00001 00608| +780121 |CU Tau *|034736.9+252316 |EW/KW | 11.5 | 11.92 | 11.90 |V |40969.2328 | | 0.41222 | |G0 |00001 02954| +780122 |CV Tau |035047.5+202808 |RR | 13.6 | 14.6 | |p | | | | | |00193 06286| +780123 |CW Tau |041417.0+281058 |INST | 12.36 | 15.01 | |V | | | | |K0Ve-K5Ve(T) |08292 10000| +780124 |CX Tau |041447.9+264811 |INST | 14.5 | 15.5 | |p | | | | |M1.5-2.5Ve(T) |08292 10000| +780125 |CY Tau |041733.7+282047 |INST | 13.4 | 15.8 | |p | | | | |M1-2Ve(T) |08292 10000| +780126 |CZ Tau *|041831.6+281659 |INSB | 15.7 |< 17.8 | |p | | | | |M1.5-2Ve |06996 10000| +780127 |DD Tau *|041831.1+281629 |INST | 14.1 | 16.6 | |p | | | | |K6Ve-M1Ve(T) |06996 10000| +780128 |DE Tau *|042155.6+275506 |INST | 13.8 | 14.8 | |p | | | | |M1-3Ve(T) |08292 10000| +780129 |DF Tau |042702.8+254222 |INST | 9.2 | 15.0 | |p | | | | |M0-3Ve(T) |05785 10000| +780130 |DG Tau *|042704.7+260616 |INST | 10.5 | 14.9 | |p | | | | |GVe(T)-M0Ve |05785 10000| +780131 |DH Tau *|042941.6+263258 |INST | 13.1 | 15.32 | |B | | | | |M0-M1Ve(T) |08292 10000| +780132 |DI Tau *|042942.5+263249 |INST | 13.6 | 15.8 | |p | | | | |M0-M1Ve(T) |08292 10000| +780133 |DK Tau |043044.2+260125 |INST | 11.9 | 15.36 | |B | | | | |K5Ve-M1Ve(T) |04046 10000| +780134 |DL Tau *|043339.1+252038 |INST(YY) | 13.4 | 15.9 | |B | | | | |GVe-K7Ve(T) |10027 10000| +780135 |DM Tau |043348.7+181010 |INST(YY) | 14.0 | 16.0 | |p | | | | |K5Ve-M2Ve(T) |04050 10000| +780136 |DN Tau *|043527.4+241459 |INST | 11.5 | 14.7 | |p | | | | |K6Ve-M1:Ve(T) |06996 10000| +780137 |DO Tau *|043828.6+261049 |INST | 12.3 | 17.0 | |p | | | | |GVe-M1Ve(T) |04046 10000| +780138 |DP Tau |044237.7+251537 |INT | 13.7 | 15.65 | |B | | | | |M0.5Ve(T) |00598 10000| +780139 |DQ Tau |044653.1+170000 |INST | 12. | 15.33 | |B | | | | |K7-M1Ve(T) |10025 10000| +780140 |DR Tau |044706.2+165843 |INST(YY) | 10.5 | 16.0 | |B | | | | |(cont+e)-K5Ve(T) |10026 10000| +780141 |DS Tau *|044748.4+292512 |INST | 11.9 | 14.02 | |B | | | | |K3Ve-M0:Ve(T) |00598 10000| +780142 |DT Tau |052847.2+160832 |EA/SD | 15.0 | 16.4 | |p |29575.628 | | 1.88225 | | |00619 02357| +780143 |DU Tau |053026.1+215323 |LB | 12.2 | 13.9 | |p | | | | |M3: |00619 02351| +780144 |DV Tau |053106.3+183338 |LB | 9.8 | 10.3 | |p | | | | |M6 |00619 02357| +780145 |DW Tau |053744.1+174530 |M | 13.4 | 16.1 | |p |29288. | | 208. |50 |M7 |00619 02351| +780146 |DX Tau |054105.1+163530 |LB | 12.29 | 13.5 | |B | | | | |M3 |00619 02351| +780147 |DY Tau |054200.0+183227 |LB | 10.8 | 11.52 | |B | | | | |M2-M5(S) |00619 08953| +780148 |DZ Tau |054238.6+220120 |LB | 13.4 | 14.3 | |p | | | | |M6 |00619 02351| +780149 |EE Tau |054238.1+192151 |LB | 12.8 | 14.2 | |p | | | | |M4 |00619 02351| +780150 |EF Tau |054331.8+192512 |DCEP | 13.5 | 14.4 | |p |29362.951 | | 3.44815 |23 | |03148 02351| +780151 |EG Tau |054543.9+183816 |LB | 14.6 | 15.7 | |p | | | | |M5 |00619 02351| +780152 |EH Tau |054533.6+162656 |LB | 13.1 | 14.2 | |p | | | | |M3 |00619 02351| +780153 |EI Tau *|054656.5+175431 |SRA | 13.0 | 15.5 | |p |29238. | | 364. | |S |00619 02351| +780154 |EK Tau | | | | | | | | | | | | |=V1798 Ori +780155 |EL Tau |054921.5+131208 |LB | 12.7 | 14.0 | |p | | | | |M0 |00619 02351| +780156 |EM Tau |055014.6+155929 |M | 12.7 | 18. : | |p |29510. | | 335. | | |00619 02352| +780157 |EN Tau |055643.5+251418 |EA/SD: | 11.4 | 12.1 | |p |26003.435 | | 1.239029 |08 |G0-G2 |03165 02321| +780158 |EO Tau |060017.3+235439 |EA | 13.6 | 14.4 | |p |26418.320 | | 3.9874 |10 *| |03165 02357| +780159 |EP Tau |033004.1+280653 |CST: | 11.10 | | |V | | | | |G2 | 00586| +780160 |EQ Tau *|034813.4+221851 |EW/KW | 10.5 | 11.03 | 10.97 |V |40213.325 | | 0.34134848 | |G2 |00001 00318| +780161 |ER Tau |051111.8+293821 |LB: | 12.6 | 14.4 | |p | | | | |C6,3(N) |00620 00620| +780162 |ES Tau |052924.9+284552 |EA/SD | 14.1 | 16.1 | |p |33184.38 | | 0.909794 |09 | |10028 00620| +780163 |ET Tau *|053740.9+271617 |EA/SD | 9.1 | 10.1 | 9.3 |p |29362.476 | | 5.996879 |18 |B8 |00620 00620| +780164 |EU Tau |054540.5+183925 |DCEPS | 7.90 | 8.25 | |V |41324.22 | | 2.10248 |40 |G5 |08637 02351| +780165 |EV Tau |042324.1+063432 |M | 12. |< 16. | |p | | | | |M8e |02782 06286| +780166 |EW Tau |055135.2+160157 |EA/D | 11.7 | 12.3 | |p |29641.76 | | 5.26934 | |A-F |03738 02352| +780167 |EX Tau |054419.6+132754 |RR | 14.8 | 15.6 | |p | | | | | |00619 02357| +780168 |EY Tau *|043045.0+223748 |UV | 15.5 | 16.5 | |p | | | | |M3-5Ve |00621 00621| +780169 |EZ Tau *|043513.2+225920 |UV | 13.4 | 17.9 | |p | | | | |M5Ve |00621 00621| +780170 |FF Tau |043520.9+225424 |INSB | 14.4 | 16.8 | |p | | | | |K8V-M1V |04046 00621| +780171 |FG Tau |043610.1+240155 |INSB | 16.1 | 17.8 | |p | | | | |M5:V |04046 00621| +780172 |FH Tau *|043638.0+230231 |UV | 14.8 | 17.4 | |p | | | | |M4-5Ve |00621 00621| +780173 |FI Tau |043712.3+233616 |INSB | 16.3 | 18.1 | |B | | | | |M5V |04046 00621| +780174 |FK Tau |043801.9+255711 |UVN | 17.1 | 17.9 | |B | | | | |M6Ve: |00621 00621| +780175 |FL Tau *|034708.5+234239 |UV | 12.64 | 13.50 | |V | | | | |K5V |02952 03742| +780176 |FM Tau |041413.6+281249 |INST | 13.8 | 16.0 | |B | | | | |M0e(T) |08289 10000| +780177 |FN Tau |041414.6+282758 |INST | 14.7 | 16.9 | |B | | | | |K5e(T)-M5e(T) |08289 10000| +780178 |FO Tau |041449.3+281231 |INS | 15.4 | 17.1 | |p | | | | |ea |08289 00598| +780179 |FP Tau |041447.3+264626 |INT | 15.02 | 15.8 | |B | | | | |M2.5Ve-M5Ve(T) |08292 10000| +780180 |FQ Tau |041912.8+282933 |INST | 15.6 | 17.5 | |B | | | | |M2e(T) |08289 10024| +780181 |FR Tau |041935.5+282722 |INS | 16.3 | 17.9 | |p | | | | |ea |08289 10024| +780182 |FS Tau *|042202.2+265731 |INST | 14.1 | 17.6 | |p | | | | |M1e(T) |08289 10036| +780183 |FT Tau |042339.2+245614 |INS | 14.1 | 16.4 | |p | | | | |ea |04046 04046| +780184 |FU Tau |042335.4+250303 |INS | 15.1 |< 17.6 | |p | | | | |ea |08289 00596| +780185 |FV Tau *|042653.5+260654 |INSB | 15.2 | 18.2 | |B | | | | |K5e |04046 10024| +780186 |FW Tau *|042929.7+261653 |IN | 16.4 | 17.6 | |B | | | | |ea |08289 10024| +780187 |FX Tau |043029.6+242645 |INSB | 14.4 | 15.54 | |B | | | | |M1e-M4e |08289 10000| +780188 |FY Tau *|043230.6+241957 |INST | 16.9 | 17.74 | |B | | | | |K7-M0e(T) |08289 10037| +780189 |FZ Tau *|043231.8+242003 |INST | 15.8 | 17.3 | |B | | | | |cont+e(T) |08289 10037| +780190 |GG Tau *|043230.3+173141 |INT | 13.4 | 14.1 | |p | | | | |K5-M0Ve(T) |00598 10000| +780191 |GH Tau *|043306.2+240934 |INB | 13.2 | 16.2 | |p | | | | |M1-M3Ve |04046 10037| +780192 |GI Tau *|043334.1+242117 |INST | 13.7 | 16.4 | |p | | | | |K5-7Ve(T) |08289 10037| +780193 |GK Tau *|043334.6+242105 |INST | 13.0 | 15.5 | |p | | | | |K5-7Ve(T) |08289 10037| +780194 |GL Tau *|043723.7+250234 |CST: | | 19. | |p | | | | | |01042 08077| +780195 |GM Tau |043821.4+260914 |INS | 16.3 |< 17.7 | |p | | | | |ea |08289 10024| +780196 |GN Tau |043920.9+254502 |INS | 15.1 | 17.1 | |p | | | | |ea |08289 04046| +780197 |GO Tau |044303.1+252019 |INST | 14.4 | 16.7 | |p | | | | |K5Ve-M0e(T) |08289 10000| +780198 |GP Tau *|053832.6+250007 |SRB | 11.2 | 11.7 | |p | | | 90. | |M7 |02394 BD | +780199 |GQ Tau |054134.9+255953 |EA/SD: | 11.2 | 12.2 | |p |36493.516 | | 1.5317673 | |B9 |02600 | +780200 |GR Tau *|040103.2+202450 |EB/SD: | 10.26 | 10.80 | 10.49 |V |44573.1071 | | 0.4298525 | |A4-5V+K5V |10039 08953| +780201 |GS Tau *|040636.4+273600 |ACV | 5.15 | 5.22 | |V |21944.74 | | 7.227424 |50 |B9p(Si) |07320 BD | +780202 |GT Tau |042336.1+245517 |INS | 14.4 | 16.3 | |p | | | | | |04046 04046| +780203 |GU Tau *|042639.1+261013 |INS | 12.5 | 14.3 | |p | | | | | |04046 10024| +780204 |GV Tau *|042923.7+243300 | | 15.6 |< 17.7 | |p | | | | |e |08799 08799| +780205 |GW Tau *|043009.5+253227 |EB/KE | 11.2 | 11.9 | 11.7 |p |16900.230 | | 0.6413291 | |A3 |10040 10040| +780206 |GX Tau *|043130.6+245658 |IN | 15.3 | 17.0 | |p | | | | | |04046 10024| +780207 |GY Tau |043209.8+245756 |IN | 15.3 | 16.7 | |p | | | | | |04046 10024| +780208 |GZ Tau |043209.3+245530 |IN | 15.8 | 17.0 | |B | | | | | |04046 10024| +780209 |HH Tau |043216.5+245756 |INS | 14.9 | 17.2 | |B | | | | | |04046 10024| +780210 |HI Tau |043223.9+245949 |INS | 15.6 | 16.8 | |p | | | | | |04046 10024| +780211 |HK Tau *|043150.6+242417 |INSB | 15.1 | 17.6 | |B | | | | |Ke-M0.5Ve |04048 10000| +780212 |HL Tau *|043138.5+181358 |INT | 15.1 | 17.2 : | |B | | | | |K7:e(T)-M2:e(T) |10036 10000| +780213 |HM Tau |043246.1+303100 |EA/D | 15.2 | 15.8 | |p |38708.521 | | 2.589595 |10 | |04419 04419| +780214 |HN Tau *|043339.4+175152 |INST | 13.4 | 15.7 | |p | | | | |K5e(T) |04050 10000| +780215 |HO Tau *|043520.2+223215 |INT | 15.2 | 17.2 | |p | | | | |K-M0.5e(T) |04051 10000| +780216 |HP Tau *|043552.8+225425 |INB | 14.9 | 17.2 | |p | | | | |K3e |04046 10000| +780217 |HQ Tau |043547.3+225022 |INS | 13.0 | 16.8 | |p | | | | | |04046 04046| +780218 |HR Tau *|043728.4+233101 |IN | 15.0 | 16.0 | |p | | | | | |04051 04051| +780219 |HS Tau *|043727.6+233107 |IN | 14.2 | 15.4 | |B | | | | | |04051 04051| +780220 |HT Tau |043751.4+262359 |IN | 15.1 | 15.9 | |p | | | | | |04046 04046| +780221 |HU Tau *|043815.8+204105 |EA/SD: | 5.85 | 6.68 | 5.91 |V |41275.3219 | | 2.0562997 |15 *|B8V |10045 08953| +780222 |HV Tau |043835.3+261039 |INT | 15.5 | 16.4 | |B | | | | |M1Vea(Li) |04046 10024| +780223 |HW Tau *| | | | | | | | | | | | |N +780224 |HX Tau |051048.8+231223 |RRAB | 15.1 | 16.0 | |p |37346.385 | | 0.538750 |13 | |04357 04357| +780225 |HY Tau |054322.4+192405 |EA | 12.4 | 13.6 | |p |31530.305 | | 3.01682 |09 *| |04088 04088| +780226 |HZ Tau *|034040.0+244409 |UV | 14.8 | 19.8 | |U | | | | |M3V |10031 10031| +780227 |II Tau *|034943.3+241905 |UV | 12.4 | 16.9 | |U | | | | |M3Ve-M5Vea |10031 10033| +780228 |IK Tau *|035328.9+112422 |M | 10.8 | 16.5 : | |V |45079. | | 470.0 |50 |M6e-M10e |00001 05118| +780229 |IL Tau |040713.9+291832 |EA/SD | 12.4 | 14.4 | |p |40512.531 | | 5.36062 |10 *| |06210 06210| +780230 |IM Tau *|041049.9+262851 |DSCT | 5.37 | 5.58 | |V |44250.3492 | | 0.145067 | |F2IV-V |10021 BD | +780231 |IN Tau *|042350.4+145518 |UV | 14.3 | 15.83 | |U | | | | |M3Ve |03924 05120| +780232 |IO Tau *|042409.4+150515 |UV | 15.8 | 17.8 | |U | | | | |M3 |03924 05120| +780233 |IP Tau |042457.1+271157 |INS | 12.2 | 13.2 | |V | | | | | |08292 03903| +780234 |IQ Tau *|042951.6+260645 |INST | 13.8 | 16.3 | |B | | | | |M0.5e-M2e(T) |08292 10000| +780235 |IR Tau |043105.1+204006 |M | 13.5 |< 17.5 | |p |40293. | | 258.6 | |M5e |06211 03905| +780236 |IS Tau *|043336.8+260949 |INS | 15.9 | 17.9 | |B | | | | |ea |04051 10024| +780237 |IT Tau *|043354.7+261328 |INSB | 16.1 | 17.2 | |p | | | | |K2e |04051 10024| +780238 |IU Tau |043557.3+283052 |SRA | 12.1 | 13.8 | |p |38480. | | 418.0 | |M7 |03804 UCAC2| +780239 |IV Tau |043932.6+282433 |EA/SD | 14.4 | 16.4 | |p |38821.298 | | 0.979811 | | |05612 05612| +780240 |IW Tau |044104.7+245106 |INS | 13.5 | 14.5 | |p | | | | | |03905 03905| +780241 |IX Tau |053833.5+252555 |M | 14.0 |< 20. | |p |39551. | | 273. | | |06953 03910| +780242 |IY Tau |054223.1+275648 |RRAB | 13.8 | 14.3 | |p |26005.368 | | 0.3764897 |16 | |03165 03165| +780243 |IZ Tau |054434.7+281759 |M | 14.8 | 20. | |p |37620. | | 347. | | |06953 03910| +780244 |KK Tau *|033627.4+244118 |UV | 15.4 | 18.5 | |p | | | | | |05603 05603| +780245 |KL Tau *|033703.5+244436 |UV | 14.1 | 17.2 | |p | | | | | |05603 05603| +780246 |KM Tau *|033908.1+244615 |UV | 12.2 | 18.4 | |B | | | | |M2: |05789 05789| +780247 |KN Tau *|033906.7+235958 |UV | 13.3 | 18.3 | |p | | | | |M3-M4 |05603 05603| +780248 |KO Tau *|034023.1+252948 |UV | 15.3 | 18.7 | |p | | | | | |10031 10031| +780249 |KP Tau *|033929.7+245803 |UV | 13.1 | 15.6 | |U | | | | |M3-M4 |10031 07328| +780250 |KQ Tau *|034158.9+261222 |UV | 14.2 | 18.54 | |B | | | | | |08293 08293| +780251 |KR Tau *|033912.2+251450 |UV | 15.3 | 18.5 | |U | | | | |M2: |05606 10031| +780252 |KS Tau *|034010.9+260641 |UV | 14.4 | 20.9 | |U | | | | | |05606 10031| +780253 |KT Tau *|034003.6+243003 |UV | 16.4 | 17.7 | |B | | | | | |08558 10031| +780254 |KU Tau *|034000.2+232606 |UV | 15.8 | 18.7 | |U | | | | |M2: |05606 10031| +780255 |KV Tau *|034031.2+250853 |UV | 15.1 | 18.8 | |B | | | | | |10031 05607| +780256 |KW Tau *|034009.7+231033 |UV | 14.1 | 20.7 | |U | | | | | |05606 10031| +780257 |KX Tau *|034137.6+221643 |UV | 14. : | 19.1 | |U | | | | | |05520 10031| +780258 |KY Tau *|034158.9+251944 |UV | 13.5 | 16.8 | |U | | | | |K7-M1 |06891 10031| +780259 |KZ Tau *|034153.8+233243 |UV | 13.6 : | 20.0 | |p | | | | | |05605 10031| +780260 |LL Tau *|034204.7+255309 |UV | 16.0 : | 17.0 | |p | | | | | |05605 2MASS| +780261 |LM Tau *|034210.9+240509 |UV | 15.6 | 17.1 | |B | | | | |M1-M2 |10031 10031| +780262 |LN Tau *|034226.3+241408 |UV | 14.3 | 20.0 | |U | | | | | |05606 10031| +780263 |LO Tau *|034240.2+235922 |UV | 11.6 | 18.6 | |U | | | | | |10031 10031| +780264 |LP Tau *|034238.0+244120 |UV | 16.2 | 17.0 | |U | | | | | |05521 05603| +780265 |LQ Tau *|034241.2+240143 |UV | 15.6 |< 20. | |p | | | | | |05521 05603| +780266 |LR Tau *|034253.3+232650 |UV | 13.7 | 16.6 | |B | | | | |M3e-M4e |10031 05604| +780267 |LS Tau *|034305.5+244929 |UV | 15.3 | 17.3 | |B | | | | | |10031 10031| +780268 |LT Tau *|034256.5+240458 |UV | 14.8 | 18.4 | |U | | | | | |05607 10031| +780269 |LU Tau *|034309.7+244133 |UV | 14.5 | 17.97 | |B | | | | | |10031 10031| +780270 |LV Tau *|034313.1+243920 |UV | 13.8 | 17.9 | |B | | | | | |10031 10031| +780271 |LW Tau *|034322.6+230748 |UV | 16.1 | 17.3 | |B | | | | | |05603 10031| +780272 |LX Tau *|034327.4+223741 |UV | 14.8 | 19.8 | |U | | | | | |03924 10031| +780273 |LY Tau *|034337.3+252432 |UV | 15.8 | 18.7 | |B | | | | | |05608 10031| +780274 |LZ Tau *|034336.6+241356 |UV | 12.2 | 15.92 | |B | | | | |K7Ve-M0e |10031 10031| +780275 |MM Tau *|034336.6+232714 |UV | 14.0 | 17.3 | |U | | | | |K7-M0Ve |05610 10031| +780276 |MN Tau *|034336.6+231234 |UV | 15.3 | 20.6 | |U | | | | | |03924 10031| +780277 |MO Tau *|034342.1+243423 |UV | 13.9 | 17.0 | |B | | | | | |07329 10031| +780278 |MP Tau *|034339.0+234406 |UV | 14.0 | 19.3 | |B | | | | | |08293 10031| +780279 |MQ Tau *|034353.9+252830 |UV | 15.2 | 18.2 | |p | | | | | |05606 10031| +780280 |MR Tau *|034352.1+245030 |UV | 16.3 | 17.29 | |U | | | | |K7-M0V |05608 10031| +780281 |MS Tau *|034355.7+242535 |UV | 12.8 | 17.2 | |U | | | | |K7V |10031 10031| +780282 |MT Tau *|034357.4+233442 |UV | 16.0 | 16.8 | |U | | | | |G5V |05520 10031| +780283 |MU Tau *|034402.3+250354 |UV | 15.3 | 18.3 | |U | | | | | |10031 10031| +780284 |MV Tau *|034408.8+230448 |UV | 14.4 | 17.2 | |B | | | | |M2: |05606 10031| +780285 |MW Tau *|034416.4+233704 |UV | 15.0 | 19.4 | |U | | | | |M: |05606 10031| +780286 |MX Tau *|034423.1+240406 |UV | 12.6 | 16.12 | |U | | | | |K5V |10031 10031| +780287 |MY Tau *|034427.3+245038 |UV | 14.1 | 15.45 | |B | | | | |K5Ve-M1V |10031 10031| +780288 |MZ Tau *|034426.4+260231 |UV | 14.2 | 16.9 | |B | | | | |M: |10031 10031| +780289 |NN Tau *|034428.2+251538 |UV | 15.9 | 19. : | |p | | | | | |05603 05603| +780290 |NO Tau *|034426.9+242432 |UV | 16.4 | 18.9 | |U | | | | | |03924 10031| +780291 |NP Tau *|034428.0+241018 |UV | 13.8 | 14.90 | |B | | | | |K4Ve-M0.5 |10031 10031| +780292 |NQ Tau *|034439.6+243144 |UV | 15.3 | 18.5 | |p | | | | | |10031 10031| +780293 |NR Tau *|034455.1+252141 |UV | 12.0 | 15.0 | |B | | | | |K7-M0: |10031 10031| +780294 |NS Tau *|034438.1+225521 |UV | 16.0 | 18.4 | |U | | | | |M: |05606 10031| +780295 |NT Tau *|034436.3+233011 |UV | 14.5 | 18.12 | |B | | | | | |10031 10031| +780296 |NU Tau *|034447.8+241253 |UV | 15.0 | 20.0 | |p | | | | | |10031 10031| +780297 |NV Tau *|034447.6+255458 |UV | 14.8 | 18.6 | |U | | | | |M |10031 10031| +780298 |NW Tau *|034447.3+240038 |UV | 17.5 : | 20.2 | |U | | | | |M |03924 10031| +780299 |NX Tau *|034456.0+235554 |UV | 13.0 : | 19.5 : | |U | | | | | |07328 10031| +780300 |NY Tau *|034458.6+242328 |UV | 15.7 | 18.7 | |U | | | | |K7-M0: |05521 10031| +780301 |NZ Tau *|034513.1+241524 |UV | 15.8 | 21.6 | |U | | | | | |05606 10031| +780302 |OO Tau *|034513.4+233101 |UV | 14.1 | 20.2 | |U | | | | | |05606 10031| +780303 |OP Tau *|034541.7+254113 |UV | 14.0 | 18.5 | |U | | | | |M3-M4 |05606 10031| +780304 |OQ Tau *|034539.0+251328 |UV | 13.9 | 18.2 | |U | | | | |M: |10031 10031| +780305 |OR Tau *|034518.1+250558 |UV | 15.7 | 16.7 | |U | | | | | |05520 10031| +780306 |OS Tau *|034523.5+245103 |UV | 14.5 | 16.81 | |B | | | | |M2Ve-M2.5V |10031 10031| +780307 |OT Tau *|034529.6+234538 |UV | 15.6 | 16.12 | |U | | | | |K3.5Ve |05610 10031| +780308 |OU Tau *|034532.9+241812 |UV+BY | 12.6 | 14.65 | |B | | | | |K7Ve |10031 10031| +780309 |OV Tau |034606.3+294115 |UG | 15.5 | 16.5 | |p | | |( 7.5 :) | |pec(cont+e) |08656 08852| +780310 |OW Tau *|034548.9+235110 |UV | 16.1 | 17.17 | |U | | | | |M0-1Ve |10031 10031| +780311 |OX Tau *|034609.9+244025 |UV | 14.9 | 18.2 | |U | | | | |K7-M2Ve |10031 10031| +780312 |OY Tau *|034610.9+233718 |UV | 15.8 | 17.3 | |B | | | | | |05603 10031| +780313 |OZ Tau *|034625.4+240937 |UV | 15.1 | 17.6 | |B | | | | |M |10031 10031| +780314 |PP Tau *|034631.2+240703 |UV | 12.4 | 15.70 | |B | | | | |K5V |10031 10031| +780315 |PQ Tau *|034632.1+235859 |UV | 13.9 | 16.7 | |U | | | | |K3V-K7: |10031 10031| +780316 |PR Tau *|034635.3+232442 |UV | 15.3 | 17.8 | |U | | | | |K7Ve |10031 10031| +780317 |PS Tau *|034755.3+231906 |UV | 14.3 | 18.9 | |p | | | | | |10031 10031| +780318 |PT Tau *|034649.2+243600 |UV | 15.0 | 17.63 | |U | | | | |M2Ve |10031 10031| +780319 |PU Tau *|034650.1+233156 |UV | 16.0 : | 20.1 | |U | | | | | |05520 10031| +780320 |PV Tau *|034653.6+241715 |UV | 13.9 | 18.2 | |B | | | | |M1Ve-M2Ve |10031 10031| +780321 |PW Tau *|034657.1+250415 |UV | 16.0 | 19.2 | |B | | | | | |05521 05603| +780322 |PX Tau |034640.0+234659 |UV | 16.0 | 18.9 | |B | | | | | |08293 10031| +780323 |PY Tau |034658.5+242740 |UV | 12.1 | 19.2 | |B | | | | | |10031 05607| +780324 |PZ Tau *|034654.6+245910 |UV | 17.0 : | 21.0 : | |U | | | | | |05610 10031| +780325 |QQ Tau *|034703.8+233659 |UV | 14.8 | 17.03 | |B | | | | |M2.5Vea |10031 10031| +780326 |QR Tau *|034709.0+221732 |UV | 15.8 |< 19. | |p | | | | | |05603 05603| +780327 |QS Tau *|034711.0+241352 |UV | 14.0 : | 22.0 | |U | | | | | |05607 10031| +780328 |QT Tau *|034730.6+242214 |UV | 15.0 | 18.4 | |U | | | | |M: |10031 10031| +780329 |QU Tau *|034725.8+222058 |UV | 11.5 | 18.0 | |p | | | | |M3Ve-M4Ve |10031 06819| +780330 |QV Tau *|034733.5+234133 |UV | 13.9 | 17.18 | |B | | | | |M3Ve |10031 10031| +780331 |QW Tau *|034734.8+224805 |UV | 15.8 | 19.1 | |B | | | | | |05603 05603| +780332 |QX Tau *|034741.4+235819 |UV+BY | 12.4 | 15.68 | |U | | | | |K7Ve-M0Ve |10031 10031| +780333 |QY Tau *|034745.0+244810 |UV | 15.1 | 16.7 | |B | | | | | |05603 05603| +780334 |QZ Tau *|034745.9+243802 |UV | 13.2 : | 21.2 | |U | | | | | |05607 10031| +780335 |V0335 Tau *|034744.7+222353 |UV | 14.7 | 19.6 | |B | | | | | |10031 05603| +780336 |V0336 Tau *|034747.9+223320 |UV | 14.8 | 17.0 | |B | | | | |M3-4e |10031 10031| +780337 |V0337 Tau *|035024.6+222709 |UV | 15.0 | 19.1 | |B | | | | | |06891 06891| +780338 |V0338 Tau *|034759.7+244353 |UV | 14.4 | 16.02 | |U | | | | |K4.5Ve-K7 |10031 10031| +780339 |V0339 Tau *|034758.8+232904 |UV | 13.5 | 19.4 | |U | | | | |M4:ea |05604 10031| +780340 |V0340 Tau *|034805.8+230203 |UV | 15.3 | 18.8 | |U | | | | |M2-M4 |10031 10031| +780341 |V0341 Tau *|034805.7+223810 |UV | 12.0 : | 21.0 | |U | | | | | |07328 10031| +780342 |V0342 Tau *|034813.3+235847 |UV | 12.7 | 19.5 | |U | | | | | |05607 10031| +780343 |V0343 Tau *|034817.3+243016 |UV | 16.0 | 17.00 | |U | | | | |K6-M0: |05606 10031| +780344 |V0344 Tau *|034820.3+245455 |UV | 12.7 | 19.8 | |U | | | | |M5Vea |10031 06819| +780345 |V0345 Tau *|034820.6+233102 |UV | 15.0 | 22.0 | |U | | | | | |05606 10031| +780346 |V0346 Tau *|034822.8+235821 |UV | 12.9 | 17.9 | |U | | | | | |10031 10031| +780347 |V0347 Tau *|034826.8+250330 |UV | 15.2 | 17.1 | |B | | | | | |07327 10031| +780348 |V0348 Tau *|034826.6+231130 |UV | 15.9 | 19.9 | |p | | | | |M |10031 10031| +780349 |V0349 Tau *|034831.1+241654 |UV | 14.1 | 18.4 | |U | | | | |M3V |10031 10031| +780350 |V0350 Tau *|034824.8+222426 |UV | 14.0 | 17.5 | |p | | | | |M |10031 06819| +780351 |V0351 Tau *|034825.5+221242 |UV | 14.3 | 15.4 | |B | | | | | |10031 06819| +780352 |V0352 Tau *|034835.5+241203 |UV | 16.0 |< 17.5 | |p | | | | | |05521 05521| +780353 |V0353 Tau *|034837.6+224609 |UV | 15.7 | 17.8 | |U | | | | |M2-M3Vea: |10031 10031| +780354 |V0354 Tau *|034859.0+250614 |UV | 14.43 | 15.32 | |B | | | | |M0V: |02952 03742| +780355 |V0355 Tau *|034905.8+234423 |UV | 14.8 | 17.0 | |B | | | | | |10031 10031| +780356 |V0356 Tau *|034911.0+242051 |UV | 13.1 | 20.2 | |U | | | | |M3: |10031 07328| +780357 |V0357 Tau *|034911.3+233319 |UV | 13.6 | 16.9 | |U | | | | |K6Ve |10031 10031| +780358 |V0358 Tau *|034915.4+243402 |UV | 15.2 | 17.0 | |U | | | | |K6Ve |10031 10031| +780359 |V0359 Tau *|034927.6+243154 |UV | 15.7 | 18.5 | |U | | | | | |05606 10031| +780360 |V0360 Tau *|034917.2+242049 |UV | 16.6 | 17.9 | |U | | | | | |05521 05603| +780361 |V0361 Tau *|034933.0+243203 |UV | 13.9 | 19.1 | |U | | | | |M: |10031 10031| +780362 |V0362 Tau *|033823.9+231155 |UV | 14.9 : | 15.4 : | |p | | | | | |05605 10031| +780363 |V0363 Tau *|034932.5+235543 |UV | 14.8 | 19.2 | |B | | | | | |10031 05603| +780364 |V0364 Tau *|034955.8+244432 |UV | 14.8 | 17.74 | |B | | | | |M: |10031 10031| +780365 |V0365 Tau *|034935.9+220905 |UV | 13.5 | 15.7 | |B | | | | |K7-M0: |10031 10031| +780366 |V0366 Tau *|035000.6+252356 |UV | 13.2 | 14.8 | |p | | | | |M |10031 10031| +780367 |V0367 Tau *|034957.0+250515 |UV | 14.5 |< 17.5 | |p | | | | | |05603 05603| +780368 |V0368 Tau *|035002.2+235145 |UV | 14.0 | 20.0 | |U | | | | |M |10031 10031| +780369 |V0369 Tau *|035011.2+235542 |UV | 16.6 | 18.6 | |U | | | | | |03924 10031| +780370 |V0370 Tau *|035012.4+243159 |UV | 13.8 | 15.40 | |U | | | | |K3V |10031 05610| +780371 |V0371 Tau *|035012.9+242107 |UV | 14.0 | 17.8 | |U | | | | |M2-M3Ve |10031 10031| +780372 |V0372 Tau *|035012.3+235945 |UV | 15.1 | 18.2 | |U | | | | |M2.5-M3Ve |10031 10031| +780373 |V0373 Tau *|035025.1+235542 |UV | 15.4 | 18.9 | |U | | | | | |05606 10031| +780374 |V0374 Tau *|035043.6+221738 |UV | 15.0 | 19.5 | |p | | | | | |10031 10031| +780375 |V0375 Tau *|035053.7+234301 |UV | 14.9 | 16.7 | |U | | | | |K7-M0: |05521 05603| +780376 |V0376 Tau *|035102.3+250320 |UV | 14.6 | 15.5 | |U | | | | |K3-K5V |05610 10031| +780377 |V0377 Tau *|035115.8+231656 |UV | 15.1 | 17.8 | |U | | | | |M: |10031 10031| +780378 |V0378 Tau *|035105.6+244412 |UV | 13.2 | 16.22 | |U | | | | |K4Ve |10031 05604| +780379 |V0379 Tau *|035111.5+242313 |UV | 15.3 | 17.8 | |B | | | | | |10031 05603| +780380 |V0380 Tau *|035124.2+260312 |UV | 16.5 : | 19.4 | |U | | | | | |03924 10031| +780381 |V0381 Tau *|035124.4+240515 |UV | 13.7 | 15.7 | |U | | | | | |10031 10031| +780382 |V0382 Tau *|035125.3+235322 |UV | 14.5 | 15.46 | |B | | | | |K7V |10031 10031| +780383 |V0383 Tau *|035139.1+243529 |UV | 16.1 | 19.6 | |U | | | | | |05608 10031| +780384 |V0384 Tau *|035138.0+231059 |UV | 12. | 16.5 | |U | | | | |M0-M1 |10031 10031| +780385 |V0385 Tau *|035140.1+220506 |UV | 14.5 | 15.0 | |p | | | | | |08293 08293| +780386 |V0386 Tau *|035150.6+225345 |UV | 13.5 | 19.4 | |U | | | | |M: |10031 10031| +780387 |V0387 Tau *|035159.3+243959 |UV | 15.5 | 17.5 | |p | | | | | |07331 07331| +780388 |V0388 Tau *|035155.0+235742 |UV | 13.4 | 19.2 | |B | | | | | |08293 10031| +780389 |V0389 Tau *|035154.5+233332 |UV | 15.3 | 18.8 | |B | | | | | |05606 10031| +780390 |V0390 Tau *|035208.0+252755 |UV | 16.5 : | 22.5 | |U | | | | | |05520 10031| +780391 |V0391 Tau | | | | | | | | | | | | |=V0392 Tau +780392 |V0392 Tau *|035220.6+243356 |UV | 14.9 | 17.9 | |U | | | | |M: |10031 06819| +780393 |V0393 Tau | | | | | | | | | | | | |=V0634 Tau +780394 |V0394 Tau *|035219.1+221032 |UV | 13.5 | 14.7 | |p | | | | | |08293 08293| +780395 |V0395 Tau *|035234.5+223008 |UV | 14.5 | 19.0 | |U | | | | | |10031 07328| +780396 |V0396 Tau *|035305.3+244603 |UV | 15.4 | 20.0 | |U | | | | | |05606 10031| +780397 |V0397 Tau *|035324.5+250207 |UV | 16.6 : | 21.6 | |U | | | | | |03924 10031| +780398 |V0398 Tau *|035341.0+242510 |UV | 15.2 |< 19.2 | |U | | | | |M2: |10031 10031| +780399 |V0399 Tau *|035357.3+232043 |UV | 13.8 | 15.7 | |B | | | | | |10031 07329| +780400 |V0400 Tau *|035413.0+232051 |UV | 15.5 | 17.2 | |p | | | | | |10031 05603| +780401 |V0401 Tau *|035425.0+244244 |UV | 16. | 21.4 | |U | | | | | |03924 10031| +780402 |V0402 Tau *|035433.6+254044 |UV | 14.3 | 17.3 | |U | | | | | |10031 07327| +780403 |V0403 Tau *|035533.9+224832 |UV | 13.6 | 16.4 | |B | | | | |M: |10031 10031| +780404 |V0404 Tau *|035548.7+235536 |UV | 14.8 | 16.4 | |B | | | | | |10031 10031| +780405 |V0405 Tau *|035857.0+234232 |UV | 15.6 | 16.8 | |p | | | | | |05603 10031| +780406 |V0406 Tau |040701.1+285302 |M | 14.4 |< 17.3 | |p |38810. | | 332. | | |05611 05611| +780407 |V0407 Tau |041058.4+261822 |EA/SD | 13.5 | 16.5 | |p |36522.267 | | 2.051133 | | |05612 05612| +780408 |V0408 Tau |041529.1+260733 |RRAB | 14.2 | 15.3 | |p |38701.424 | | 0.602230 |18 | |05795 05795| +780409 |V0409 Tau |041810.8+251958 |INS | 14.4 | 16.9 | |p | | | | | |05614 05614| +780410 |V0410 Tau *|041831.1+282716 |INSB | 11.3 | 12.4 | |B | | | | |K3Ve-K7Ve |05796 10000| +780411 |V0411 Tau *|041856.7+271748 |ZZA | 14.10 | 15.28 | |V | | | | |DA |10057 05616| +780412 |V0412 Tau |042111.0+255300 |SR | 15.7 | 17.2 | |p | | | 190. : | | |05617 05617| +780413 |V0413 Tau |042752.9+231416 |INA: | 15.7 | 16.7 | |p | | | | |A7 |05618 05618| +780414 |V0414 Tau |042818.5+253141 |LB | 13.9 | 17.4 | |p | | | | | |05612 05612| +780415 |V0415 Tau |043215.8+283125 |RRAB | 15.5 | 17.4 | |p |38350.454 | | 0.368549 |27 | |05798 05798| +780416 |V0416 Tau |053443.5+255025 |LB | 15.2 | 15.8 | |p | | | | | |06953 03910| +780417 |V0417 Tau |053443.1+183219 |EA | 14.5 | 15. | |p |30382.55 | | | | |05515 05515| +780418 |V0418 Tau |053544.6+185643 |EA | 15.5 | 16.5 | |p |30367.29 | | | | |05515 05515| +780419 |V0419 Tau |054248.0+180428 |EA | 16. | 18. | |p |30622.60 | | | | |05515 05515| +780420 |V0420 Tau |054735.0+130330 |EA | 15.5 |< 17.5 | |p |31027.64 | | | | |05515 05515| +780421 |V0421 Tau *| | | | | | | | | | | | |N +780422 |V0422 Tau |054840.1+262828 |LB | 15.5 | 16.1 | |p | | | | | |06953 03910| +780423 |V0423 Tau *|055249.0+242443 |EB: | 15.7 | 16.5 : | 15.8 |p |38397.267 | | 0.68242 | | |06953 05515| +780424 |V0424 Tau |055452.1+264823 |EA | 15.0 | 15.8 | |p |31448.63 | | 2.33368 |20 *| |06953 05515| +780425 |V0425 Tau *|034336.4+252138 |UV | 16.1 | 16.7 | |p | | | | | |05928 10031| +780426 |V0426 Tau *|033631.2+224657 |UV | 14.1 | 15.7 | |p | | | | | |10031 07327| +780427 |V0427 Tau *|033752.2+224226 |UV | 14.5 |< 17.5 | |p | | | | | |05929 05929| +780428 |V0428 Tau *|034006.7+242508 |UV | 15.5 | 18.6 | |B | | | | | |05929 05929| +780429 |V0429 Tau *|034012.7+230936 |UV | 15.1 | 18.9 | |B | | | | | |05930 10031| +780430 |V0430 Tau *|034055.0+222059 |UV | 14.2 | 18.1 | |B | | | | | |10031 07327| +780431 |V0431 Tau *|034133.7+250649 |UV | 13.2 | 19.4 | |p | | | | |M3-M4 |10031 07327| +780432 |V0432 Tau *|034158.6+225702 |UV | 13.3 |< 19. | |p | | | | | |10031 05929| +780433 |V0433 Tau *|034236.3+232205 |UV | 17.3 | 19.6 | |p | | | | | |10031 10031| +780434 |V0434 Tau *|034256.7+255851 |UV | 15.7 | 19.5 | |p | | | | | |05928 10031| +780435 |V0435 Tau *|034304.2+224804 |UV | 13.5 | 17.0 | |p | | | | |Mea |10031 10031| +780436 |V0436 Tau *|034328.2+245331 |UV | 15.4 | 19.0 | |p | | | | |M |10031 10031| +780437 |V0437 Tau *|034332.1+225249 |UV | 15.0 | 17.2 | |B | | | | | |07331 10031| +780438 |V0438 Tau *|034425.6+244053 |UV | 14.7 | 18.17 | |B | | | | |ea |10031 10031| +780439 |V0439 Tau *|034512.1+243018 |UV | 16.0 | 18.5 | |p | | | | | |07331 10031| +780440 |V0440 Tau *|034510.8+230258 |UV | 15.7 | 18.5 | |p | | | | | |05929 05929| +780441 |V0441 Tau *|034516.6+243433 |UV | 13.5 | 17.9 | |B | | | | | |10031 06819| +780442 |V0442 Tau *|034512.2+232153 |UV | 15.0 | 19.1 | |B | | | | |M5V |10031 10031| +780443 |V0443 Tau *|034536.7+243907 |UV | 14.0 | 18.5 | |B | | | | |M2-M4 |10031 07331| +780444 |V0444 Tau *|034552.6+255142 |UV | 14.9 | 16.9 | |B | | | | |M3Ve |10031 05929| +780445 |V0445 Tau *|034606.9+251445 |UV | 14.5 | 21.0 | |p | | | | | |10031 10031| +780446 |V0446 Tau *|034628.6+244532 |UV | 13.6 | 15.73 | |B | | | | | |10031 10031| +780447 |V0447 Tau *|034627.5+233434 |UV | 16.3 | 16.8 | |p | | | | | |05928 02953| +780448 |V0448 Tau *|034635.9+235801 |UV | 13.2 | 16.1 | |B | | | | | |10031 10031| +780449 |V0449 Tau *|034648.3+241806 |UV | 15.7 | 16.9 | |B | | | | | |05928 10031| +780450 |V0450 Tau |045156.7+291111 |EA/DS | 14.9 | 16.5 | |p |39060.30 | | 31.50 | | |05836 05836| +780451 |V0451 Tau *|034655.7+251237 |UV | 16.8 | 17.5 | |p | | | | | |05929 05929| +780452 |V0452 Tau *|034704.8+252250 |UV | 15.0 | 18.3 | |p | | | | |M3-M4 |10031 07327| +780453 |V0453 Tau *|034657.1+231503 |UV | 15.3 | 17.1 | |B | | | | | |10031 05929| +780454 |V0454 Tau *|034706.2+241813 |UV | 13.9 | 17.0 | |B | | | | | |05928 10031| +780455 |V0455 Tau *|034721.6+222212 |UV | 14.0 | 20.5 | |U | | | | | |10031 10031| +780456 |V0456 Tau *|034730.6+261645 |UV | 14.2 | 19.4 | |p | | | | | |10031 06819| +780457 |V0457 Tau *|034739.4+242732 |UV | 16.1 | 19.6 | |B | | | | | |10031 05929| +780458 |V0458 Tau *|034813.8+233800 |UV | 14.8 | 20.0 | |p | | | | | |10031 10031| +780459 |V0459 Tau *|034816.4+262006 |UV | 13.3 | 19. : | |p | | | | | |05929 05929| +780460 |V0460 Tau *|034829.8+235806 |UV | 14.8 | 20.0 | |p | | | | | |05928 07329| +780461 |V0461 Tau *|034842.1+250029 |UV | 15.5 | 18.3 | |B | | | | | |07337 07337| +780462 |V0462 Tau *|034846.1+250744 |UV | 15.8 | 16.8 | |B | | | | | |07327 07327| +780463 |V0463 Tau *|034845.4+243727 |UV | 14.8 | 20.5 | |p | | | | | |05928 10031| +780464 |V0464 Tau *|035056.6+253507 |UV | 15.1 | 18.5 | |B | | | | | |10031 07331| +780465 |V0465 Tau *|034901.0+245410 |UV | 15.5 | 18.7 | |B | | | | | |10031 05929| +780466 |V0466 Tau *|035119.1+241013 |UV | 15.6 | 17.6 | |B | | | | | |10031 10031| +780467 |V0467 Tau *|034916.4+240349 |UV | 13.7 | 16.5 : | |p | | | | | |10031 05929| +780468 |V0468 Tau *|034936.5+241814 |UV | 14.2 | 19.4 | |p | | | | | |10031 07327| +780469 |V0469 Tau *|035015.3+241336 |UV | 14.1 | 19.51 | |B | | | | |M5Vea |05928 10031| +780470 |V0470 Tau *|035030.0+250307 |UV | 15.3 | 18.4 | |B | | | | | |05928 10031| +780471 |V0471 Tau *|035025.0+171447 |EA/D/RS+X | 9.40 | 9.71 | |V |45612.38065 | | 0.52118301 |06 |K0Vea+DA |10059 05120| +780472 |V0472 Tau *|035719.1+220524 |UV | 15.4 | 17.6 | |p | | | | | |05928 10031| +780473 |V0473 Tau *|044916.0+293417 |ACV | 7.22 | 7.36 | |V |38466.729 | | 1.3900 | |B9p(Si-Cr) |08022 BD | +780474 |V0474 Tau *|035147.2+241320 |UV | 15.0 | 16.6 | |B | | | | | |10031 07331| +780475 |V0475 Tau *|035153.9+240252 |UV | 13.3 | 18.5 | |B | | | | |M5.5Vea |10031 05929| +780476 |V0476 Tau *|035230.9+243240 |UV | 16.2 | 18.5 | |B | | | | | |10031 10031| +780477 |V0477 Tau *|035254.2+251744 |UV | 16.6 | 19.2 | |B | | | | | |10031 05929| +780478 |V0478 Tau *|035321.7+253835 |UV | 15.0 | 17.7 | |p | | | | | |05928 10031| +780479 |V0479 Tau *|035427.2+051029 |DSCTC | 7.39 | 7.46 | |V | | | 0.076 | |F1/3III-IV |05932 BD | +780480 |V0480 Tau *|045122.5+185024 |DSCTC | 5.09 | 5.13 | |V | | | 0.042 | |A7IV/V-A9IIIn |05830 BD | +780481 |V0481 Tau *|035615.6+252924 |UV | 15.7 | 18.4 | |B | | | | | |05929 05929| +780482 |V0482 Tau |041343.5+262456 |LB: | 11.5 | 13.0 | |p | | | | |M0-M6 |06821 06821| +780483 |V0483 Tau *|041957.7+140207 |DSCTC | 5.55 | 5.59 | |V | | | 0.054 | |F0IV |08569 BD | +780484 |V0484 Tau *|043023.9+172959 |UV | 14.0 | 16.00 | |B | | | | | |05935 06252| +780485 |V0485 Tau *|033638.4+230845 |UV | 13.7 |< 19. | |p | | | | | |07329 07329| +780486 |V0486 Tau *|033658.0+231240 |ACV | 6.65 | 6.78 | |V |41252.12 | | 10.61 : | |A0p(Cr-Sr-Eu) |07221 BD | +780487 |V0487 Tau *|033921.6+235001 |UV | 17.0 | 18.4 | |B | | | | | |10066 10066| +780488 |V0488 Tau *|033929.2+232958 |UV | 12.8 | 16.8 | |U | | | | | |10031 10031| +780489 |V0489 Tau *|033942.7+235428 |UV | 14.2 | 20.5 | |U | | | | | |10031 06395| +780490 |V0490 Tau *|034031.6+243236 |UV | 16.9 | 18.4 | |B | | | | | |10066 10031| +780491 |V0491 Tau *|034024.2+243504 |UV | 15.0 | 18.2 | |B | | | | | |10031 10031| +780492 |V0492 Tau *|034125.3+223256 |UV | 15.8 | 17.4 | |p | | | | |K |06394 10031| +780493 |V0493 Tau *|034122.9+235548 |UV | 14.9 | 19.0 | |B | | | | | |10031 07329| +780494 |V0494 Tau *|034208.8+254525 |UV | 12.9 | 14.2 | |B | | | | | |07329 07329| +780495 |V0495 Tau *|034201.7+222327 |UV | 16.0 | 19.2 | |B | | | | |M3V |10031 10031| +780496 |V0496 Tau *|034215.5+250226 |UV | 16.4 | 18.0 | |B | | | | | |10066 10066| +780497 |V0497 Tau *|034202.9+241236 |UV | 15.2 | 18.9 | |U | | | | | |10031 06395| +780498 |V0498 Tau *|034209.7+223139 |UV | 16.2 | 16.8 | |U | | | | | |10066 10066| +780499 |V0499 Tau *|034210.6+221539 |UV | 15.8 | 19.3 | |U | | | | | |06397 10031| +780500 |V0500 Tau *|034221.5+243953 |UV | 14.3 | 15.9 | |B | | | | | |10031 10031| +780501 |V0501 Tau *|034228.0+251133 |UV | 15.8 | 17.1 | |B | | | | | |06394 10031| +780502 |V0502 Tau *|034226.3+225341 |UV | 13.8 | 15.9 | |p | | | | | |10031 06395| +780503 |V0503 Tau *|034248.1+255500 |UV | 14.8 | 17.0 | |B | | | | | |10031 10031| +780504 |V0504 Tau *|034242.4+232022 |UV | 16.3 | 18.6 | |B | | | | | |10031 10031| +780505 |V0505 Tau | | | | | | | | | | | | |=V0614 Tau +780506 |V0506 Tau *|034313.5+242311 |UV | 16.0 | 18.3 | |p | | | | | |10066 10031| +780507 |V0507 Tau *|034300.3+255027 |UV | 15.1 | 19.1 | |B | | | | | |06394 10031| +780508 |V0508 Tau *|034311.0+252503 |UV | 14.3 | 17.4 | |p | | | | | |10031 10031| +780509 |V0509 Tau *|034312.1+244445 |UV | 16.4 | 18.8 | |B | | | | | |10031 10031| +780510 |V0510 Tau *|034318.5+233409 |UV | 14.2 | 20.5 | |U | | | | | |06397 10031| +780511 |V0511 Tau *|034357.3+241321 |UV | 15.1 | 19.5 | |B | | | | | |10031 10031| +780512 |V0512 Tau *|034419.1+243519 |UV | 15.1 | 19.4 | |p | | | | | |10031 10031| +780513 |V0513 Tau *|034430.1+253547 |UV | 14.0 | 16.6 | |B | | | | | |10031 10031| +780514 |V0514 Tau *|034423.4+252130 |UV | 12.5 | 18.45 | |B | | | | | |10031 10031| +780515 |V0515 Tau *|034414.0+253216 |UV | 15.0 | 18.7 | |B | | | | | |10031 06819| +780516 |V0516 Tau *|034506.8+233652 |UV | 15.0 | 19.7 | |p | | | | | |06394 10031| +780517 |V0517 Tau *|034520.0+260331 |UV | 15.3 | 18.1 | |B | | | | | |06394 10031| +780518 |V0518 Tau *|034514.2+250520 |UV | 13.4 | 15.8 | |B | | | | |K4V |10031 10031| +780519 |V0519 Tau *|034516.1+240716 |UV | 16.3 | 18.3 | |U | | | | | |06397 10031| +780520 |V0520 Tau *|034517.0+251548 |UV | 15.2 | 17.85 | |B | | | | | |10031 05603| +780521 |V0521 Tau *|034523.9+244358 |UV | 15.2 | 16.0 | |U | | | | | |06397 02953| +780522 |V0522 Tau *|034524.6+250239 |UV | 15.3 | 21.0 | |U | | | | | |06397 10031| +780523 |V0523 Tau *|034533.4+233534 |UV | 15.9 | 17.1 | |B | | | | | |10066 10031| +780524 |V0524 Tau *|034557.0+230129 |UV | 14.7 | 20.0 | |p | | | | | |06394 10031| +780525 |V0525 Tau *|034605.5+231642 |UV | 16.9 | 18.0 | |B | | | | | |10066 10066| +780526 |V0526 Tau *|034559.4+222615 |UV | 16.0 | 17.3 | |B | | | | | |10066 10031| +780527 |V0527 Tau *|034620.6+242647 |UV | 16.7 | 17.9 | |U | | | | | |06395 02953| +780528 |V0528 Tau *|034623.5+240151 |UV | 13.3 | 20.5 | |U | | | | | |06397 10031| +780529 |V0529 Tau *|034624.8+242755 |UV | 16.5 | 17.5 | |U | | | | | |06397 02953| +780530 |V0530 Tau *|034640.0+235917 |UV | 14.7 | 16.6 | |B | | | | | |10031 10031| +780531 |V0531 Tau *|034651.0+261933 |UV | 14.3 |< 20. | |p | | | | | |06398 2MASS| +780532 |V0532 Tau *|034645.8+252730 |UV | 15.8 | 19.0 | |U | | | | | |10031 10031| +780533 |V0533 Tau *|034648.8+230408 |UV | 15.5 | 18.8 | |U | | | | | |10031 07328| +780534 |V0534 Tau *|034703.5+244912 |DSCTC | 8.26 | 8.30 | |V | | | 0.032 | |A9/F0V |06400 02953| +780535 |V0535 Tau *|034703.6+240935 |UV | 15.5 | 16.3 | |B | | | | |K7V-M0 |10031 10031| +780536 |V0536 Tau *|034709.4+234432 |UV | 15.9 | 16.89 | |B | | | | |M3Ve |10031 10031| +780537 |V0537 Tau *|034722.7+234407 |UV | 15.0 | 20.0 | |U | | | | | |10031 10031| +780538 |V0538 Tau *|034723.2+221440 |UV | 15.5 | 17.5 | |U | | | | | |06397 10031| +780539 |V0539 Tau *|034725.8+250833 |UV | 14.3 | 18.8 | |B | | | | | |10031 10031| +780540 |V0540 Tau *|034738.1+245331 |UV | 14.6 | 15.58 | |B | | | | |K5Ve |10031 10066| +780541 |V0541 Tau *|034741.2+234425 |UV | 13.9 | 15.26 | |B | | | | |K |10031 10066| +780542 |V0542 Tau *|034749.7+242816 |UV | 16.4 | 17.2 | |U | | | | | |10066 10031| +780543 |V0543 Tau *|034826.0+251441 |UV | 15.3 | 16.5 | |p | | | | | |06398 10031| +780544 |V0544 Tau *|034845.8+255650 |UV | 16.6 | 17.9 | |B | | | | | |10066 10031| +780545 |V0545 Tau *|034849.3+235838 |UV+BY | 13.4 | 14.20 | |U | | | | |K2.5V |06395 10031| +780546 |V0546 Tau *|034851.8+225339 |UV | 15.1 | 18.9 | |U | | | | | |06395 10031| +780547 |V0547 Tau *|034837.6+221525 |UV | 16.7 | 17.8 | |B | | | | | |10066 10031| +780548 |V0548 Tau *|034901.0+225850 |UV | 15.2 | 17.2 | |B | | | | | |10031 07329| +780549 |V0549 Tau *|034905.9+230622 |UV | 13.6 | 19.8 | |U | | | | | |06397 06397| +780550 |V0550 Tau *|034920.6+254905 |UV | 14.5 | 16.3 | |U | | | | | |10031 10031| +780551 |V0551 Tau *|034921.5+233907 |UV | 13.8 | 18.9 | |B | | | | | |10031 07329| +780552 |V0552 Tau *|035001.9+251241 |UV | 16.6 | 19.3 | |B | | | | | |10031 10031| +780553 |V0553 Tau *|035011.8+241746 |UV | 13.7 | 14.51 | |B | | | | | |10066 10066| +780554 |V0554 Tau *|035013.4+232539 |UV | 17.3 | 18.2 | |U | | | | | |10066 10066| +780555 |V0555 Tau *|035023.9+242843 |UV | 14.6 | 15.2 | |U | | | | | |10066 10031| +780556 |V0556 Tau *|035043.1+251942 |UV | 15.7 | 16.4 | |p | | | | | |10066 10031| +780557 |V0557 Tau *|035057.0+242449 |UV | 15.3 | 16.9 | |B | | | | | |06394 10031| +780558 |V0558 Tau *|035125.9+244739 |UV | 14.7 | 18.2 | |B | | | | | |10031 07329| +780559 |V0559 Tau *|035136.5+262602 |UV | 13.6 | 16.8 | |p | | | | | |07329 07329| +780560 |V0560 Tau *|035132.4+243707 |UV | 13.4 | 14.36 | |B | | | | | |10066 10066| +780561 |V0561 Tau *|035157.5+254832 |UV | 15.5 | 20.0 | |U | | | | | |10031 06819| +780562 |V0562 Tau *|035201.6+250130 |UV | 16.0 | 18.3 | |p | | | | | |10031 10031| +780563 |V0563 Tau *|035207.3+253901 |UV | 16.2 | 18.2 | |B | | | | | |10066 10066| +780564 |V0564 Tau *|035212.2+262209 |UV | 14.9 | 17.5 | |p | | | | | |10031 10031| +780565 |V0565 Tau *|035208.7+260848 |UV | 15.6 | 17.5 | |p | | | | | |10066 10066| +780566 |V0566 Tau *|035219.0+253528 |UV | 16.6 | 17.3 | |U | | | | | |10066 10066| +780567 |V0567 Tau *|035248.7+214228 |UV | 14.4 | 15.8 | |p | | | | | |10031 10031| +780568 |V0568 Tau *|035251.7+223133 |UV | 16.5 | 18.8 | |B | | | | |M |10066 10066| +780569 |V0569 Tau *|035318.4+255517 |UV | 15.2 | 18.3 | |U | | | | | |06395 10031| +780570 |V0570 Tau *|035347.6+234431 |UV | 14.5 | 19.1 | |B | | | | | |06394 10031| +780571 |V0571 Tau *|035402.1+241910 |UV | 16.6 | 18.2 | |B | | | | | |10066 10066| +780572 |V0572 Tau *|035423.1+255934 |UV | 15.0 | 16.6 | |p | | | | | |10066 10031| +780573 |V0573 Tau *|035407.0+225349 |UV | 16.2 | 18.0 | |B | | | | | |10066 10031| +780574 |V0574 Tau *|035400.9+224607 |UV | 15.6 |< 18.0 | |p | | | | | |10066 10031| +780575 |V0575 Tau *|035430.4+242905 |UV | 15.9 | 16.5 | |p | | | | | |10031 10031| +780576 |V0576 Tau *|035410.4+230536 |UV | 16.3 | 17.9 | |B | | | | | |10066 10031| +780577 |V0577 Tau *|035434.8+215302 |UV | 13.5 | 17.6 | |p | | | | | |06394 10031| +780578 |V0578 Tau *|035501.0+242730 |UV | 14.9 | 15.7 | |U | | | | | |10066 10031| +780579 |V0579 Tau *|035529.0+234621 |UV | 15.3 | 16.0 | |U | | | | | |06397 10031| +780580 |V0580 Tau | | | | | | | | | | | | |=V0404 Tau +780581 |V0581 Tau *|035608.6+214548 |UV | 13.3 | 16.8 | |p | | | | | |06394 10031| +780582 |V0582 Tau *|035737.0+252420 |UV | 15.9 | 17.1 | |p | | | | | |06394 10031| +780583 |V0583 Tau *|035743.0+252307 |UV | 14.0 | 19.0 | |p | | | | | |06394 10031| +780584 |V0584 Tau *|035750.8+245205 |UV | 14.7 | 15.5 | |p | | | | | |06394 10031| +780585 |V0585 Tau *|040518.6+163407 |UV | 13.6 | 14.3 | |p | | | | | |06337 06337| +780586 |V0586 Tau |042955.1+244533 |INS | 14.6 | 15.5 | |p | | | | | |06401 06401| +780587 |V0587 Tau |043016.6+243929 |INS | 13.0 | 15.4 | |p | | | | | |06401 06401| +780588 |V0588 Tau |043107.3+245120 |IN | 15.2 | 15.8 | |p | | | | | |06402 06402| +780589 |V0589 Tau *|043413.7+121619 |UV | 14.4 | 15.1 | |p | | | | | |06337 06337| +780590 |V0590 Tau |044345.1+262437 |IS: | 16.3 | 17.3 | |p | | | | | |06403 06403| +780591 |V0591 Tau |044732.2+274107 |LB: | 13.5 | 15.5 | |p | | | | |M7 |06634 06634| +780592 |V0592 Tau |050142.1+251543 |EA/DS | 14.2 | 16.4 | |p |39914.447 | | 20.88138 |06 *| |07806 07806| +780593 |V0593 Tau |055306.1+262644 |GCAS | 8.13 |( 0.22 )| |V | | | | |B3Ve |05522 BD | +780594 |V0594 Tau *|033637.6+232754 |UV | 15.6 | 17.8 | |p | | | | | |06891 06891| +780595 |V0595 Tau *|033849.5+235151 |UV | 15.8 | 16.4 | |p | | | | | |06891 06891| +780596 |V0596 Tau *|033853.9+242508 |UV | 16.2 | 18.1 | |B | | | | | |06892 10031| +780597 |V0597 Tau *|033932.3+241601 |UV | 16.0 | 19.1 | |B | | | | | |10031 10031| +780598 |V0598 Tau *|034001.9+244626 |UV | 15.8 | 19.8 | |U | | | | | |06894 06894| +780599 |V0599 Tau *|033956.7+222824 |UV | 16.4 | 18.3 | |p | | | | | |06893 10031| +780600 |V0600 Tau *|034006.8+232156 |UV | 14.4 | 18.5 : | |p | | | | | |06819 06819| +780601 |V0601 Tau *|034051.8+231351 |UV | 15.0 | 19.2 | |p | | | | | |10031 10031| +780602 |V0602 Tau *|034057.4+255058 |UV | 13.8 | 14.9 | |U | | | | | |06819 06819| +780603 |V0603 Tau *|034103.0+234322 |UV | 15.7 | 18.2 | |p | | | | | |10031 06891| +780604 |V0604 Tau *|034106.0+225321 |UV | 15.2 | 15.8 | |p | | | | | |06891 06891| +780605 |V0605 Tau *|034108.1+231256 |UV | 15.9 | 16.8 | |p | | | | | |06891 06891| +780606 |V0606 Tau *|034042.6+254220 |UV | 13.0 | 14.2 | |p | | | | | |06893 10031| +780607 |V0607 Tau *|034043.5+221507 |UV | 15.0 | 20.5 | |p | | | | | |06893 10031| +780608 |V0608 Tau *|034154.2+254347 |UV | 14.6 | 18.36 | |B | | | | | |08264 10031| +780609 |V0609 Tau *|034150.5+225518 |UV | 15.8 | 21.0 | |p | | | | | |06893 10031| +780610 |V0610 Tau *|034203.8+244245 |UV | 14.3 | 16.2 | |U | | | | | |10031 06819| +780611 |V0611 Tau *|034231.2+244922 |UV | 16.3 | 20.5 | |p | | | | | |06893 10031| +780612 |V0612 Tau *|034227.3+223425 |UV | 15.5 | 17.8 | |p | | | | | |10031 06891| +780613 |V0613 Tau *|034229.4+224726 |UV | 14.80 | 17.40 | |U | | | | | |10031 06819| +780614 |V0614 Tau *|034235.6+215030 |UV | 13.5 | 17.5 : | |p | | | | | |10031 06891| +780615 |V0615 Tau *|034303.9+252019 |UV | 16.5 | 17.0 | |B | | | | | |06895 06895| +780616 |V0616 Tau | | | | | | | | | | | | |=V0737 Tau +780617 |V0617 Tau *|034257.0+241343 |UV | 16.8 | 19.0 | |p | | | | | |08264 08264| +780618 |V0618 Tau *|034305.0+254435 |UV | 15.9 | 19.1 | |U | | | | | |06893 10031| +780619 |V0619 Tau *|034326.2+260231 |UV | 15.5 | 20.7 | |p | | | | | |10031 10031| +780620 |V0620 Tau *|034320.6+242635 |UV | 14.5 |< 18. | |p | | | | | |06891 06891| +780621 |V0621 Tau *|034319.0+224711 |UV | 15.8 | 18. : | |p | | | | | |06891 06891| +780622 |V0622 Tau *|034334.1+253526 |UV | 16.0 | 19.0 | |U | | | | | |06894 06894| +780623 |V0623 Tau *|034336.9+242338 |UV | 15.5 | 17.0 | |U | | | | |K5.5Ve |10031 10031| +780624 |V0624 Tau *|034343.2+242229 |DSCTC | 8.23 | 8.25 | |V | | | 0.0205 | |A7V |10068 02953| +780625 |V0625 Tau *|034348.5+250237 |UV | 14.9 | 20.0 | |U | | | | | |06397 06397| +780626 |V0626 Tau *|034356.7+245937 |UV | 15.1 | 17.4 : | |p | | | | | |06891 06891| +780627 |V0627 Tau *|034402.8+253923 |UV | 12.0 | 14.8 | |U | | | | | |06894 06894| +780628 |V0628 Tau | | | | | | | | | | | | |=V0515 Tau +780629 |V0629 Tau *|034409.9+241604 |UV | 15.2 | 17.6 | |U | | | | | |10031 06896| +780630 |V0630 Tau *|034424.7+245154 |UV | 14.0 | 20.0 | |U | | | | | |10031 06894| +780631 |V0631 Tau *|034424.8+244606 |UV | 13.5 | 17.7 | |U | | | | |ea |06894 06894| +780632 |V0632 Tau *|034421.9+244607 |UV | 13.6 | 14.93 | |U | | | | |Kea |10031 06819| +780633 |V0633 Tau *|034436.7+243604 |UV | 16.4 |< 17.5 | |B | | | | | |06895 06895| +780634 |V0634 Tau *|034444.5+241030 |UV | 16.5 |< 17.2 | |U | | | | | |10031 05603| +780635 |V0635 Tau *|034528.5+225904 |UV | 15.7 | 17.1 | |B | | | | | |06892 10031| +780636 |V0636 Tau *|034546.4+220647 |UV | 15.1 | 18.3 | |B | | | | | |10031 06891| +780637 |V0637 Tau *|034653.0+262136 |UV | 16.5 | 18.1 | |p | | | | | |06893 10031| +780638 |V0638 Tau *|034607.5+242228 |UV | 14.7 | 15.6 | |p | | | | |M0Ve+B |06891 06891| +780639 |V0639 Tau *|034609.6+224237 |UV | 15.2 | 20.2 | |p | | | | | |06893 10031| +780640 |V0640 Tau *|034624.1+230219 |UV | 16.1 | 17.3 | |p | | | | | |06895 06895| +780641 |V0641 Tau *|034627.8+233534 |UV+BY | 13.3 | 14.30 | |B | | | | |K2V |10031 06891| +780642 |V0642 Tau *|034637.3+242037 |UV | 13.2 | 14.46 | |U | | | | |K3Ve |07328 07328| +780643 |V0643 Tau *|034640.3+245552 |UV | 14.8 | 16.67 | |U | | | | | |10031 07328| +780644 |V0644 Tau *|034707.3+231335 |UV | 14.4 | 15.7 | |U | | | | |ea |10031 10031| +780645 |V0645 Tau *|034713.7+234953 |UV | 14.7 | 19.0 | |U | | | | | |06893 10031| +780646 |V0646 Tau *|034718.1+240211 |UV | 15.1 | 17.3 | |U | | | | |K2Ve-M1.5Vea |10069 06894| +780647 |V0647 Tau *|034719.4+240821 |DSCTC | 8.25 | 8.30 | |V | | | 0.047 | |A7V-F0V |10068 02953| +780648 |V0648 Tau *|034710.4+245719 |UV | 16.0 | 18.4 | |B | | | | | |06892 10031| +780649 |V0649 Tau *|034723.9+230857 |UV | 15.0 | 19.0 | |B | | | | | |10031 10031| +780650 |V0650 Tau *|034726.8+234042 |DSCTC | 7.76 |( 0.03 )| |V | | | 0.031 | |A3V-A3.5V |06400 02953| +780651 |V0651 Tau *|034738.4+244403 |UV | 15.3 | 17.0 | |B | | | | | |08264 10031| +780652 |V0652 Tau *|034741.0+225548 |UV | 12.4 | 14.24 | |U | | | | |K2.5Ve |06894 06894| +780653 |V0653 Tau *|034745.0+235219 |UV | 15.2 | 16.0 | |p | | | | | |06891 06891| +780654 |V0654 Tau *|034750.9+243019 |UV | 15.5 | 18.0 | |B | | | | |M |10031 06900| +780655 |V0655 Tau *|034752.1+225248 |UV | 14.5 | 20.0 | |U | | | | | |10031 06894| +780656 |V0656 Tau *|034812.4+263502 |UV | 15.7 | 16.3 | |U | | | | | |06896 06896| +780657 |V0657 Tau *|034808.8+242940 |UV | 16.8 | 17.4 | |B | | | | | |06895 06895| +780658 |V0658 Tau *|034808.0+234424 |UV | 14.5 | 19.4 | |U | | | | | |10031 10031| +780659 |V0659 Tau *|034821.6+254343 |UV | 15.8 | 16.5 | |p | | | | | |06891 06891| +780660 |V0660 Tau *|034828.0+231803 |UV+BY | 12.4 | 14.46 | |U | | | | |K3Ve |06894 06894| +780661 |V0661 Tau *|034835.2+225343 |UV | 15.3 |< 22.0 | |U | | | | | |06894 06894| +780662 |V0662 Tau *|034840.4+243634 |UV | 14.8 | 19.1 | |B | | | | | |10031 06891| +780663 |V0663 Tau *|034912.6+254208 |UV | 14.0 | 19.0 | |U | | | | | |06894 06894| +780664 |V0664 Tau *|034920.6+244636 |UV | 12.6 | 14.7 | |U | | | | |K2.5Vea |06894 06894| +780665 |V0665 Tau *|034919.5+244828 |UV | 16.7 | 17.3 | |B | | | | | |07223 06895| +780666 |V0666 Tau *|034911.4+221623 |UV | 16.0 | 17.0 | |p | | | | | |08264 10031| +780667 |V0667 Tau *|034934.9+232717 |UV | 14.0 | 16.7 | |U | | | | | |10031 10031| +780668 |V0668 Tau *|034936.1+235623 |UV | 15.1 | 19.1 | |U | | | | | |06894 06894| +780669 |V0669 Tau *|035001.7+243649 |UV | 13.5 | 22.0 : | |U | | | | | |07486 06894| +780670 |V0670 Tau *|034951.8+211826 |UV | 15.4 | 16.7 | |p | | | | | |06891 06891| +780671 |V0671 Tau *|035008.4+253256 |UV | 15.3 | 16.5 | |p | | | | | |06819 06819| +780672 |V0672 Tau *|035015.0+224025 |UV | 16.5 | 17.0 | |B | | | | | |06895 06895| +780673 |V0673 Tau *|035022.9+221118 |UV | 14.0 | 17.3 | |U | | | | | |06894 06894| +780674 |V0674 Tau *|035031.9+220848 |UV | 15.4 | 17.5 | |p | | | | | |10031 06891| +780675 |V0675 Tau *|035054.0+244555 |UV | 16.8 |< 17.7 | |U | | | | | |06895 06895| +780676 |V0676 Tau *|035117.8+250228 |UV | 15.0 | 19.1 | |B | | | | | |06893 10031| +780677 |V0677 Tau *|035129.9+235357 |UV | 13.7 | 15.8 | |U | | | | |K |10031 06894| +780678 |V0678 Tau *|035135.5+252959 |UV | 16.4 | 17.2 | |U | | | | | |08264 08264| +780679 |V0679 Tau *|035202.3+243948 |UV | 12.6 | 14.2 | |U | | | | |K3V |10031 06894| +780680 |V0680 Tau *|035237.6+244455 |UV | 13.2 | 15.4 | |U | | | | | |06397 06397| +780681 |V0681 Tau *|035315.7+225215 |UV | 16.0 | 18.7 | |p | | | | | |06893 10031| +780682 |V0682 Tau *|035420.7+220643 |UV | 16.2 | 20.0 | |U | | | | | |06893 10031| +780683 |V0683 Tau *|035439.5+223636 |UV | 15.4 | 16.2 | |p | | | | | |06891 06891| +780684 |V0684 Tau *|035450.0+244536 |UV | 16.4 | 17.0 | |U | | | | | |08264 10031| +780685 |V0685 Tau *|035454.5+230249 |UV | 15.9 | 18.1 | |B | | | | | |06893 10031| +780686 |V0686 Tau *|035502.5+251933 |UV | 16.1 | 17.2 | |p | | | | | |06891 06891| +780687 |V0687 Tau *|035221.8+243951 |UV | 15.4 | 16.8 | |p | | | | | |06892 10031| +780688 |V0688 Tau *|035545.3+261557 |UV | 16.6 | 18.3 | |p | | | | | |06893 10031| +780689 |V0689 Tau *|035551.0+241203 |UV | 15.7 | 17.2 | |p | | | | | |06891 06891| +780690 |V0690 Tau *|035556.4+251800 |UV | 15.7 | 17.5 | |p | | | | | |06819 06819| +780691 |V0691 Tau *|035625.1+260812 |UV | 17.6 | 18.7 | |p | | | | | |06893 10031| +780692 |V0692 Tau *|035630.4+241719 |UV | 14.8 | 17.8 | |p | | | | | |10031 06896| +780693 |V0693 Tau *|035657.1+244835 |UV | 15.5 | 17.2 : | |p | | | | | |06819 06819| +780694 |V0694 Tau *|035759.6+242915 |UV | 15.8 | 17.8 | |p | | | | | |06891 06891| +780695 |V0695 Tau |041840.1+252749 |SR | 16.0 | 18.0 | |p |39600. | | 970. | |C |06902 06902| +780696 |V0696 Tau *|042036.3+150544 |DSCTC | 5.22 | 5.28 | |V | | | 0.036 | |A9/F0IV-V |06838 BD | +780697 |V0697 Tau *|043323.8+235927 |UV | 12.4 | 14.5 | |p | | | | |M1ea |06903 06903| +780698 |V0698 Tau *|043514.9+294420 |SR: | 14.4 | 15.5 | |p | | | | |M6 |06904 06904| +780699 |V0699 Tau |044750.4+274350 |INS | 15.8 | 16.6 | |p | | | | | |06634 06634| +780700 |V0700 Tau *|034326.6+245940 |UV | 13.6 | 14.60 | |U | | | | |K3V |06894 06894| +780701 |V0701 Tau *|034402.0+215707 |UG: | 15.0 |< 21. | |p | | | | | |07484 07484| +780702 |V0702 Tau *|034511.9+230654 |UV | 14.6 | 16.6 | |U | | | | | |07485 10031| +780703 |V0703 Tau *|034733.7+244103 |UV | 12.2 | 14.88 | |U | | | | |K3V |06894 06894| +780704 |V0704 Tau | | | | | | | | | | | | |=V0355 Tau +780705 |V0705 Tau *|034903.6+225112 |UV | 15.8 | 16.6 | |U | | | | | |07485 10031| +780706 |V0706 Tau *|034949.4+250642 |UV | 16.0 | 18.4 | |U | | | | | |07485 10031| +780707 |V0707 Tau *|035107.4+242852 |UV | 15.30 | 16.6 | |B | | | | |M0-M1 |07486 10031| +780708 |V0708 Tau | | | | | | | | | | | | |=V0508 Tau +780709 |V0709 Tau *|035348.9+252114 |UV | 16.7 | 17.5 | |U | | | | | |07485 10031| +780710 |V0710 Tau *|043157.8+182137 |INB | 14.6 | 16.2 | |p | | | | |K7e-M3e |04050 04050| +780711 |V0711 Tau *|033647.3+003516 |RS | 5.71 | 5.94 | |V |40000.58 | | 2.840612 | |G5IV/Vea+K1IVea |10071 BD | +780712 |V0712 Tau *|034457.3+235933 |UV | 14.0 | 17.4 | |p | | | | | |06891 06891| +780713 |V0713 Tau *|034647.1+231736 |UV | 16.7 | 18.1 | |B | | | | | |10066 10066| +780714 |V0714 Tau *|034717.1+255639 |UV | 16.7 | 18.4 | |B | | | | | |10066 10031| +780715 |V0715 Tau *|035213.3+260837 |UV | 14.8 | 18.5 | |U | | | | | |06819 06819| +780716 |V0716 Tau *|035231.1+252940 |UV | 15.9 | 16.7 | |U | | | | | |07848 10031| +780717 |V0717 Tau *|035619.0+235553 |UV | 15.0 | 16.8 : | |U | | | | | |07848 10031| +780718 |V0718 Tau *|043121.9+173910 |M | 10.2 | 14.3 | |V |41280. | | 405. |50 |C2:e(Ne) |09098 10073| +780719 |V0719 Tau |044838.9+251706 |INS: | 12. |< 15.7 | |p | | | | | |06996 01090| +780720 |V0720 Tau |045201.6+290004 |LB: | 14.2 | 14.7 | |p | | | | |M7 |00607 06977| +780721 |V0721 Tau |045603.3+273600 |IN: | 13.5 | 14.4 | |B | | | | | |07789 07789| +780722 |V0722 Tau |045649.4+274307 |GCAS: | 12.9 | 13.4 | |B | | | | |B3e |07091 07091| +780723 |V0723 Tau |050646.2+283523 |EA/SD | 14.5 | 17.1 | |p |39060.584 | | 2.825489 |12 | |07806 07806| +780724 |V0724 Tau |041936.7+214625 |ACV | 5.36 | 5.40 | |V |42299.51 | | 1.56896 |40 |A0p(Si) |08824 BD | +780725 |V0725 Tau *|053854.6+261857 |XNGP | 9.4 | 10.1 | |p | | | | |O9.7IIIe |10075 10074| +780726 |V0726 Tau *|055221.4+161755 |EB/D | 10.9 | 11.5 | 11.2 |V |37016.357 | | 1.98453 | | |07929 07929| +780727 |V0727 Tau *|034202.9+235554 |UV | 15.0 | 18.0 | |B | | | | | |06394 10031| +780728 |V0728 Tau *|034247.5+251752 |UV | 16.4 | 17.2 | |U | | | | | |08264 10031| +780729 |V0729 Tau *|043107.2+272924 |SRB | 13.8 | 15.3 | |B | | | | |M6 |10079 10079| +780730 |V0730 Tau |043433.3+244312 |LB | 16.2 | 17.3 | |B | | | | |M6 |10079 10079| +780731 |V0731 Tau |054319.5+231216 |GCAS | 5.98 | 6.27 | |V | | | | |B2Ve-B5Vpe |10080 BD | +780732 |V0732 Tau *|033832.7+232407 |UV | 16.2 | 21.0 | |p | | | | | |08554 10031| +780733 |V0733 Tau *|033745.5+220031 |UV | 14.5 | 16.5 | |p | | | | | |08554 10031| +780734 |V0734 Tau *|034119.3+235142 |UV | 14.7 | 19.5 | |p | | | | | |10081 10031| +780735 |V0735 Tau *|034137. +234634:|UV | 16.7 | 18.5 | |U | | | | | |08555 | +780736 |V0736 Tau *|034200. +232133:|UV | 15.5 | 17.2 | |U | | | | | |08555 | +780737 |V0737 Tau *|034253.3+233108 |UV | 14.5 | 19.0 | |U | | | | | |10031 10031| +780738 |V0738 Tau *|034313.9+240510 |DSCT: | 14.9 | 16.0 | |p |41569.521 | | 0.105 |50 | |08559 08559| +780739 |V0739 Tau *|034357.0+235706 |UV | 12.8 | 20.0 | |U | | | | | |10031 10031| +780740 |V0740 Tau *|034404.5+255123 |UV | 13.6 | 16.9 | |U | | | | | |10031 10031| +780741 |V0741 Tau *|034359.2+223421 |UV | 16.1 |< 20.5 | |p | | | | | |08560 10031| +780742 |V0742 Tau *|034433.1+254510 |UV | 14.1 | 20.1 | |U | | | | | |10031 10031| +780743 |V0743 Tau *|034448.3+254737 |UV | 16.7 | 17.9 | |U | | | | | |08558 10031| +780744 |V0744 Tau *|034501.1+244641 |UV | 12.5 | 20.0 | |U | | | | | |08558 10031| +780745 |V0745 Tau | | | | | | | | | | | | |=V0629 Tau +780746 |V0746 Tau *|034540.3+245039 |UV | 16.1 | 20.0 : | |U | | | | | |08560 UCAC2| +780747 |V0747 Tau *|034552.8+232754 |UV | 15.7 | 17. | |p | | | | | |08558 10031| +780748 |V0748 Tau *|034558.6+221957 |UV | 16.2 | 20.2 | |p | | | | | |08554 10031| +780749 |V0749 Tau *|034605.3+225854 |UV | 14.6 | 16.3 | |U | | | | | |08554 10031| +780750 |V0750 Tau *|034634.8+225608 |UV | 13.0 | 18.0 | |U | | | | | |10082 10031| +780751 |V0751 Tau *|034737.4+252003 |UV | 14.8 | 18.2 | |p | | | | | |08554 10031| +780752 |V0752 Tau *|034735.9+245227 |UV | 16.5 | 21.4 | |U | | | | | |08561 10031| +780753 |V0753 Tau *|034759.5+243021 |UV | 16.3 | 17.6 | |U | | | | | |08554 10031| +780754 |V0754 Tau *|034811.2+233944 |UV | 14.1 | 17.5 | |p | | | | | |08554 10031| +780755 |V0755 Tau *|034824. +224310:|UV | 15.0 | 19.3 | |U | | | | | |08555 | +780756 |V0756 Tau *|034829.6+230003 |UV | 16.0 | 16.9 | |p | | | | | |08558 10031| +780757 |V0757 Tau *|034832.6+232630 |UV | 18.5 | 21.0 | |p | | | | | |08554 10031| +780758 |V0758 Tau *|034835.5+234606 |UV | 14.9 | 16.5 | |U | | | | | |08558 10031| +780759 |V0759 Tau *|034857.4+241944 |UV | 16.2 | 18.7 | |U | | | | | |08554 10031| +780760 |V0760 Tau *|035020.9+231925 |UV | 14.7 | 18.9 | |p | | | | | |10031 10031| +780761 |V0761 Tau *|035028.1+242300 |UV | 16.2 | 17.5 | |U | | | | | |08558 10031| +780762 |V0762 Tau *|035034.0+245232 |UV | 15.1 | 16.6 | |U | | | | | |08558 10031| +780763 |V0763 Tau *|035058.2+235543 |UV | 14.4 | 20.5 : | |U | | | | | |08564 10031| +780764 |V0764 Tau *|035049.0+224012 |UV | 14.6 | 18.4 | |U | | | | | |10031 10031| +780765 |V0765 Tau *|035046.0+215238 |UV | 16.0 | 17.2 | |U | | | | | |08558 10031| +780766 |V0766 Tau |035115.9+130246 |ACV | 6.30 |( 0.065 )| |V |43849.27 | | 2.53465 |50 |B9p(Si) |04013 BD | +780767 |V0767 Tau *|035156.7+241441 |UV | 16.5 | 18.0 | |U | | | | | |08558 10031| +780768 |V0768 Tau *|035238.9+255026 |UV | 16.6 | 19.7 | |U | | | | | |08554 10031| +780769 |V0769 Tau *|035309.5+260007 |UV | 14.4 | 16.9 | |p | | | | | |08554 10031| +780770 |V0770 Tau *|035551.7+230429 |UV | 15.2 | 16.5 | |U | | | | | |08558 10031| +780771 |V0771 Tau *|035623.5+244957 |UV | 11.6 | 16.6 | |U | | | | | |10031 10031| +780772 |V0772 Tau *|035709.1+220154 |UV | 17.0 | 19.0 | |p | | | | | |08554 10031| +780773 |V0773 Tau *|041412.9+281212 |INB+BY | 10.59 | 10.95 | |V | | | | |K2ea |08567 10000| +780774 |V0774 Tau *|041528.8+061113 |BY: | 6.28 | 6.37 | |V | | | | |G0IV-V |04443 BD | +780775 |V0775 Tau *|042203.5+140438 |DSCTC | 5.72 |( 0.01 )| |V | | | 0.0625 | |A3m |08569 BD | +780776 |V0776 Tau *|042529.4+175541 |ACV: | 4.29 | 4.32 | |V |40501.35 | | 57.25 |50 |A2/3IV/Vm |04447 BD | +780777 |V0777 Tau *|042620.7+153706 |DSCTC | 4.73 |( 0.02 )| |B | | | 0.16 | |A8Vn/F0V |08569 BD | +780778 |V0778 Tau *|043201.3+235155 |EW/KW | 16.3 | 17.0 | 17.0 |B |41362.207 | | 0.434840 | | |08573 08573| +780779 |V0779 Tau |043323.9+233335 |INB: | 15.7 | 16.4 | |B | | | | | |08573 08573| +780780 |V0780 Tau *|054025.7+244808 |UV | 15.0 | 16.84 | |B | | | | |M:Ve |10084 07060| +780781 |V0781 Tau *|055013.1+265743 |EW/KW | 8.9 | 9.3 | 9.3 |p |43874.954 | | 0.3449100 | |G0 |10085 08576| +780782 |V0782 Tau *|033848.7+251120 |UV | 14.5 | 16.6 | |U | | | | | |10031 10031| +780783 |V0783 Tau *|033843.3+252227 |UV | 14.6 : | 18.6 | |U | | | | | |10031 10031| +780784 |V0784 Tau *|034147.1+225125 |UV | 14.5 | 17.3 | |U | | | | | |08794 10031| +780785 |V0785 Tau *|034450.2+245440 |UV | 15.1 | 15.9 | |U | | | | |K5Ve |08795 10031| +780786 |V0786 Tau | | | | | | | | | | | | |=V0518 Tau +780787 |V0787 Tau *|034544.1+240427 |UV | 14.2 | 16.9 | |U | | | | | |08795 02953| +780788 |V0788 Tau *|034601.3+234315 |UV | 16.2 |< 20.0 | |U | | | | | |08794 10031| +780789 |V0789 Tau *|034606.9+243346 |UV | 14.7 | 15.4 | |U | | | | | |08795 10031| +780790 |V0790 Tau *|034608.4+232051 |UV | 13.0 | 16.0 | |U | | | | |K6Ve |10031 10031| +780791 |V0791 Tau *|034733.0+253819 |UV | 16.5 | 20.1 | |p | | | | | |08794 10031| +780792 |V0792 Tau *|034735. +245113:|UV | 13.4 | 20.5 | |U | | | | | |08796 | +780793 |V0793 Tau *|034740.4+241807 |UV | 14.4 | 16.7 | |U | | | | | |10031 10031| +780794 |V0794 Tau *|034751.9+240547 |UV | 15.9 | 17.2 | |U | | | | | |08795 10031| +780795 |V0795 Tau *|034832.0+240448 |UV | 14.5 | 20.5 | |U | | | | | |08796 10031| +780796 |V0796 Tau *|034845.4+232020 |UV | 14.4 | 15.89 | |U | | | | |K4Ve |10031 10031| +780797 |V0797 Tau *|034900.7+235731 |UV | 14.1 | 15.5 | |U | | | | | |08794 10031| +780798 |V0798 Tau *|034920.3+252543 |UV | 15.2 | 19.9 | |U | | | | | |08794 10031| +780799 |V0799 Tau *|035022.0+223733 |UV | 16.5 | 20.0 | |U | | | | | |08794 10031| +780800 |V0800 Tau *|035057.4+240631 |UV | 16.5 | 18.5 | |U | | | | | |08796 10031| +780801 |V0801 Tau *|035113.9+252312 |UV | 14.3 | 20. : | |U | | | | | |08797 10031| +780802 |V0802 Tau *|035151.1+231741 |UV | 13.5 | 20. : | |U | | | | | |08797 10031| +780803 |V0803 Tau | | | | | | | | | | | | |=V0357 Tau +780804 |V0804 Tau *|035325.0+233751 |UV | 15.3 |< 21.0 | |U | | | | | |08794 10031| +780805 |V0805 Tau *|042513.5+171606 |UV | 14.3 | 15.8 | |U | | | | |M2 |08798 05120| +780806 |V0806 Tau |043215.4+242900 |IN | 10.2 | 11.2 | |J | | | | |ea |08799 00596| +780807 |V0807 Tau *|043306.6+240955 |IN | 12.2 | 12.9 | |B | | | | |ea |10024 10024| +780808 |V0808 Tau *|044913.0+244810 |RS | 9.52 |( 0.08 )| |V |44272.77 | | 6.82 |50 |K3V+K3V |08801 BD | +780809 |V0809 Tau |055222.3+141018 |ACV | 5.59 |( 0.02 )| |V |43859.00 | | 2.6541 |50 |B9p(Si-Eu-Cr) |04013 BD | +780810 |V0810 Tau |034302.9+244011 |BY | 12.04 |( 0.075 )| |V | | | | | |67312 67312| +780811 |V0811 Tau |034521.2+234339 |BY | 12.66 |( 0.15 )| |V | | | | | |67315 67315| +780812 |V0812 Tau |034604.1+232420 |BY | 12.90 |( 0.125 )| |V | | | | | |67315 67315| +780813 |V0813 Tau |034606.5+243403 |BY | 12.81 |( 0.09 )| |V | | | | | |67312 67312| +780814 |V0814 Tau |034639.4+240147 |BY | 12.30 |( 0.075 )| |V | | | | | |67312 67312| +780815 |V0815 Tau |034713.5+234252 |BY | 12.41 | 12.52 | |V | | | | | |67315 67315| +780816 |V0816 Tau |035153.4+242313 |BY | 12.73 |( 0.125 )| |V | | | | | |67315 67315| +780817 |V0817 Tau |035703.8+231032 |ELL | 6.06 |( 0.05 )| |V | | | | | |67318 BD | +780818 |V0818 Tau |041738.9+165652 |E/RS | 8.30 |( 0.15 )| |V | | | | | |67321 BD | +780819 |V0819 Tau |041926.3+282614 |BY | 13.14 | 13.50 | |V | | | | | |67323 67322| +780820 |V0820 Tau |042241.4+253459 |UV | 15.2 | 17.5 | |B | | | | | |67324 UCAC2| +780821 |V0821 Tau |042408.0+235511 |UV | 16.0 | 17.1 | |B | | | | | |67324 2MASS| +780822 |V0822 Tau |042540. +215747:|UV | 14.5 | 19.5 | |p | | | | | |67324 | +780823 |V0823 Tau |042603.3+244235 |UV | 15.9 | 17.4 | |p | | | | | |67324 UCAC2| +780824 |V0824 Tau |042803.7+242408 |UV | 14.9 | 20. | |p | | | | | |67324 2MASS| +780825 |V0825 Tau |043111.8+263316 |UV | 14.7 | 20. | |p | | | | | |67324 2MASS| +780826 |V0826 Tau |043215.8+180139 |BY | 13.3 |( 0.5 )| |B | | | | | |67322 67322| +780827 |V0827 Tau |043214.6+182015 |UV+BY | 14.15 | 14.74 | |U | | | | | |67329 67322| +780828 |V0828 Tau |043240.6+224211 |UV | 16.8 | 18.5 | |B | | | | | |67324 2MASS| +780829 |V0829 Tau |043252.2+263505 |UV | 15.0 | 20.5 | |p | | | | | |67324 | +780830 |V0830 Tau |043310.0+243343 |BY | 12.08 | 12.37 | |V | | | | | |67323 67322| +780831 |V0831 Tau |043344.8+234156 |DSCT | 16.4 | 17.6 | |p | | | | | |67332 67331| +780832 |V0832 Tau |043455.4+263501 |UV | 15.9 | 17.1 | |p | | | | | |67324 2MASS| +780833 |V0833 Tau |043648.2+270756 |BY | 9.1 | 9.9 | |p | | | | | |67335 BD | +780834 |V0834 Tau |044118.9+205406 |BY | 7.94 | 8.33 | |V | | | | | |67337 BD | +780835 |V0835 Tau |044354. +222233:|UV | 14.6 | 18.8 | |p | | | | | |67324 | +780836 |V0836 Tau |050306.6+252320 |BY | 13.02 | 13.24 | |V | | | | | |67323 67322| +780837 |V0837 Tau |033711.0+255928 |BY: | 8.2 |( 0.09 )| |V | | | | | |68234 BD | +780838 |V0838 Tau |033852.9+251411 |UV | 16.0 |< 18.0 | |U | | | | | |68236 68236| +780839 |V0839 Tau |033946.9+252543 |UV | 14.8 | 16.5 | |U | | | | | |68237 68236| +780840 |V0840 Tau |034026.8+235017 |UV | 14.0 |< 18.0 | |U | | | | | |68235 68236| +780841 |V0841 Tau |034031.0+242141 |UV | 14.7 | 16.2 | |U | | | | | |68236 68236| +780842 |V0842 Tau |034139.4+222057 |UV | 16.2 | 17. : | |p | | | | | |68238 68238| +780843 |V0843 Tau |034150.7+250519 |UV | 15.9 | 16.7 | |p | | | | | |68237 68236| +780844 |V0844 Tau |034242.4+233010 |UV | 12.6 | 14.6 | |U | | | | | |68236 68236| +780845 |V0845 Tau |034307.6+253429 |UV | 14.5 | 19.7 | |p | | | | | |68239 68236| +780846 |V0846 Tau |034326.4+224243 |UV | 14.8 | 16.8 | |U | | | | | |68236 68236| +780847 |V0847 Tau |034351.8+241416 |UV | 15.0 | 20.4 | |p | | | | | |68239 68236| +780848 |V0848 Tau |034354.4+232117 |UV | 16.5 |< 18.0 | |U | | | | | |68236 68236| +780849 |V0849 Tau |034417.8+242647 |UV | 14.0 |< 18.0 | |U | | | | | |68236 68236| +780850 |V0850 Tau |034420.9+233340 |UV | 14.0 |< 18.0 | |U | | | | | |68236 68236| +780851 |V0851 Tau |034510.3+242332 |UV | 14.3 | 20. : | |U | | | | | |68240 68241| +780852 |V0852 Tau |034506.2+223835 |UV | 14.2 | 17.2 | |U | | | | | |68236 68236| +780853 |V0853 Tau |034512.4+224151 |UV | 14.9 | 20.2 | |U | | | | | |68241 68241| +780854 |V0854 Tau |034527.5+233757 |UV | 16.7 | 21. : | |U | | | | | |68240 68241| +780855 |V0855 Tau |034540.2+243738 |BY: | 10.0 |( 0.035 )| |V | | | | | |68242 68242| +780856 |V0856 Tau |034603.5+242057 |UV | 14.0 : |< 20.0 | |U | | | | | |68236 68236| +780857 |V0857 Tau |034608.7+244033 |UV | 13.1 | 19.8 | |U | | | | | |68244 68236| +780858 |V0858 Tau |034618.0+224236 |UV | 16.5 | 19.5 | |p | | | | | |68237 68236| +780859 |V0859 Tau |034631.3+221820 |UV | 13.6 | 20. | |U | | | | | |68240 68241| +780860 |V0860 Tau |034654.0+251445 |UV | 15.4 | 17.84 | |B | | | | | |68236 68236| +780861 |V0861 Tau |034708.1+241825 |UV | 15.0 |< 19.0 | |U | | | | | |68236 68236| +780862 |V0862 Tau |034715.7+222117 |UV | 15.9 | 21.0 | |U | | | | | |68246 68236| +780863 |V0863 Tau |034717.4+221257 |UV | 16.1 | 16.9 | |B | | | | | |68236 68236| +780864 |V0864 Tau |034726.8+233803 |UV | 14.0 |< 18.0 | |U | | | | | |68236 68236| +780865 |V0865 Tau |034728.8+222236 |UV | 14.2 | 16.8 | |U | | | | | |68236 68236| +780866 |V0866 Tau |034749.8+242543 |UV | 16.8 | 19.7 | |U | | | | | |68239 68236| +780867 |V0867 Tau |034750.0+244707 |UV | 14.2 | 20.0 | |U | | | | | |68249 68236| +780868 |V0868 Tau |034826.0+251308 |UV | 16.0 | 17.0 | |U | | | | | |68239 68236| +780869 |V0869 Tau |034816.4+223240 |UV | 14.5 | 16.1 | |p | | | | | |68236 68236| +780870 |V0870 Tau |034822.6+225222 |UV | 15.9 | 17.64 | |B | | | | | |68251 68251| +780871 |V0871 Tau |034825.2+241426 |UV | 14.7 | 19.6 | |U | | | | | |68239 68236| +780872 |V0872 Tau |034831.8+240159 |UV | 16.0 |< 18.0 | |U | | | | | |68236 68236| +780873 |V0873 Tau |034839.9+241243 |UV | 15.4 | 18.8 | |U | | | | | |68246 68236| +780874 |V0874 Tau |034841.8+250120 |UV | 17.5 | 18.5 | |p | | | | | |68246 68236| +780875 |V0875 Tau |034841.0+231418 |UV | 13.7 | 19.7 | |p | | | | | |68247 68236| +780876 |V0876 Tau |034911.2+221036 |UV | 12.9 | 16.6 | |U | | | | | |68236 68236| +780877 |V0877 Tau |034948.4+221049 |UV | 15.5 | 18.8 | |p | | | | | |68248 68241| +780878 |V0878 Tau |035037.4+222808 |UV | 15.4 | 18.9 | |U | | | | | |68253 68236| +780879 |V0879 Tau |035039.8+230105 |UV | 15.2 | 16.5 | |U | | | | | |68254 68236| +780880 |V0880 Tau |035123.9+220648 |UV | 12.5 | 14.5 | |U | | | | | |68236 68236| +780881 |V0881 Tau |035110.3+242408 |UV | 13.7 |< 18. : | |U | | | | | |68254 68236| +780882 |V0882 Tau |035157.1+235949 |UV | 15.3 | 17.6 | |U | | | | | |68254 68236| +780883 |V0883 Tau |035257.0+222602 |UV | 14.5 | 17.5 | |U | | | | | |68236 68236| +780884 |V0884 Tau |035326.6+253122 |UV | 15.9 | 18.7 | |U | | | | | |68255 68236| +780885 |V0885 Tau |035345.3+255534 |UV | 16.0 | 18.3 | |U | | | | | |68255 68236| +780886 |V0886 Tau |035413.3+252829 |UV | 15.2 | 16.7 | |U | | | | | |68236 68236| +780887 |V0887 Tau |035411.5+251843 |UV | 16.5 | 18.0 | |U | | | | | |68236 68236| +780888 |V0888 Tau |035428.0+235007 |UV | 13.5 | 15.0 | |U | | | | | |68236 68236| +780889 |V0889 Tau |035452.6+243435 |UV | 13.5 | 15.5 | |U | | | | | |68236 68236| +780890 |V0890 Tau |035740.7+251604 |UV | 14.5 |< 18.5 | |p | | | | | |68236 68236| +780891 |V0891 Tau |041525.8+061159 |BY | 6.92 | 7.00 | |V | | | | | |68256 BD | +780892 |V0892 Tau |041840.6+281916 |INA | 5.55 | 6.07 | |K | | | | | |68258 68258| +780893 |V0893 Tau |041858.0+195424 |BY | 8.63 |( 0.029 )| |V | | | | | |68259 BD | +780894 |V0894 Tau |042411. +225453:|UV | 16.3 | 20.5 | |p | | | | | |68260 | +780895 |V0895 Tau |042412.5+144530 |BY | 7.62 |( 0.032 )| |V | | | | | |68259 BD | +780896 |V0896 Tau |042416.1+261631 |UV | 15.2 | 16.8 | |p | | | | | |68262 UCAC2| +780897 |V0897 Tau |042428.3+165310 |BY | 7.80 |( 0.042 )| |V | | | | | |68259 BD | +780898 |V0898 Tau |042429.4+234739 |UV | 14.4 | 20.0 | |p | | | | | |68262 2MASS| +780899 |V0899 Tau |042501.1+241807 |UV | 14.3 | 20.0 | |B | | | | | |68262 USNO | +780900 |V0900 Tau |042506.7+233357 |UV | 15.5 | 17.4 | |U | | | | | |68262 2MASS| +780901 |V0901 Tau |042521.4+224904 |UV | 15.0 | 16.6 | |B | | | | | |68262 UCAC2| +780902 |V0902 Tau |042555.1+240419 |UV | 14.9 | 16.4 | |U | | | | | |68262 UCAC2| +780903 |V0903 Tau |042607.5+225910 |UV | 14.9 | 16.5 | |B | | | | | |68260 UCAC2| +780904 |V0904 Tau |042628.4+263613 |UV | 16.2 | 18.6 | |p | | | | | |68260 2MASS| +780905 |V0905 Tau |042619.6+223242 |UV | 15.2 | 17.0 | |B | | | | | |68262 UCAC2| +780906 |V0906 Tau |042624.6+165112 |BY | 7.98 | 8.06 | |V | | | | | |68259 BD | +780907 |V0907 Tau |042623.5+221956 |UV | 15.3 | 17.6 | |B | | | | | |68260 UCAC2| +780908 |V0908 Tau |042637.9+253354 |UV | 15.0 | 16.1 | |U | | | | | |68262 UCAC2| +780909 |V0909 Tau |042628.3+223055 |UV | 14.7 | 17.0 | |B | | | | | |68262 UCAC2| +780910 |V0910 Tau |042645.2+252042 |UV | 15.3 | 17.0 | |B | | | | | |68260 UCAC2| +780911 |V0911 Tau |042640.1+164449 |BY | 8.11 |( 0.030 )| |V | | | | | |68259 BD | +780912 |V0912 Tau |042705.2+250828 |UV | 15.6 | 17.2 | |B | | | | | |68262 UCAC2| +780913 |V0913 Tau |042702.8+221704 |UV | 14.2 | 16.2 | |B | | | | | |68260 UCAC2| +780914 |V0914 Tau |042722.7+233452 |UV | 15.3 | 16.7 | |B | | | | | |68260 UCAC2| +780915 |V0915 Tau |042728.9+235834 |UV | 14.6 | 15.7 | |U | | | | | |68262 2MASS| +780916 |V0916 Tau |042746.5+240107 |UV | 15.7 | 17.1 | |B | | | | | |68262 UCAC2| +780917 |V0917 Tau |042824.3+244415 |UV | 16.1 | 18.0 | |B | | | | | |68260 2MASS| +780918 |V0918 Tau |042837.2+194427 |BY | 8.6 |( 0.044 )| |V | | | | | |68259 BD | +780919 |V0919 Tau |042844. +250435:|UV | 15.6 | 16.8 | |B | | | | | |68262 | +780920 |V0920 Tau |042848.3+171708 |BY | 7.84 |( 0.050 )| |V | | | | | |68259 BD | +780921 |V0921 Tau |042931.6+175336 |BY | 8.96 | 8.99 | |V | | | | | |68259 BD | +780922 |V0922 Tau |042916.8+230343 |UV | 14.6 | 16.8 | |B | | | | | |68260 UCAC2| +780923 |V0923 Tau |043003.9+255003 |UV | 15.9 | 17.3 | |p | | | | | |68260 UCAC2| +780924 |V0924 Tau |043013.3+250946 |UV | 14.2 | 16.0 | |B | | | | | |68260 GSC22| +780925 |V0925 Tau |043038.2+225429 |UV | 13.1 | 15.6 | |U | | | | | |68262 2MASS| +780926 |V0926 Tau |043030.4+222954 |UV | 16.1 | 18.9 | |B | | | | | |68260 UCAC2| +780927 |V0927 Tau |043123.8+241053 |UV | 14.0 | 16.15 | |B | | | | | |68262 68285| +780928 |V0928 Tau |043218.9+242227 |INB: | 15.7 |( 2.1 )| |B | | | | | |68263 68263| +780929 |V0929 Tau |043238.3+221826 |UV | 14.7 | 16.8 | |B | | | | | |68262 UCAC2| +780930 |V0930 Tau |043259.0+261440 |UV | 15.5 | 21.0 | |p | | | | | |68262 2MASS| +780931 |V0931 Tau |043323.8+253515 |UV | 14.3 | 19.7 | |B | | | | | |68262 2MASS| +780932 |V0932 Tau |043323. +223516:|UV | 15.6 | 16.8 | |B | | | | | |68260 | +780933 |V0933 Tau |043355.9+250803 |UV | 15.3 | 17.1 | |B | | | | | |68262 2MASS| +780934 |V0934 Tau |043405.7+252127 |UV | 15.2 | 19.1 | |p | | | | | |68260 2MASS| +780935 |V0935 Tau |043421.9+253144 |UV | 16.9 | 19.3 | |B | | | | | |68260 2MASS| +780936 |V0936 Tau |043404.3+220015 |UV | 15.6 | 17.8 | |p | | | | | |68264 UCAC2| +780937 |V0937 Tau |043418.5+235631 |UV | 15.0 | 17.3 | |B | | | | | |68262 UCAC2| +780938 |V0938 Tau |043435.3+153017 |BY | 7.94 |( 0.035 )| |V | | | | | |68259 BD | +780939 |V0939 Tau |043449. +235010:|UV | 15.3 | 16.4 | |B | | | | | |68262 | +780940 |V0940 Tau |043445.2+222010 |UV | 15.6 | 17.6 | |B | | | | | |68262 UCAC2| +780941 |V0941 Tau |043525.2+264234 |UV | 15.3 | 18.5 | |p | | | | | |68260 2MASS| +780942 |V0942 Tau |043640.9+264318 |UV | 14.7 | 16.6 | |p | | | | | |68260 2MASS| +780943 |V0943 Tau |043621.6+243606 |UV | 17.1 | 19.6 | |B | | | | | |68262 UCAC2| +780944 |V0944 Tau |043654.7+255051 |UV | 16.2 | 17.8 | |B | | | | | |68260 2MASS| +780945 |V0945 Tau |043718. +230100:|UV | 16.1 | 19.5 | |p | | | | | |68262 | +780946 |V0946 Tau |043750.4+245211 |UV | 14.1 | 15.6 | |B | | | | | |68260 UCAC2| +780947 |V0947 Tau |043826.0+220401 |UV | 15.1 | 16.2 | |p | | | | | |68260 UCAC2| +780948 |V0948 Tau |043833.0+234204 |UV | 16.0 | 18.1 | |B | | | | | |68262 2MASS| +780949 |V0949 Tau |043848. +225754:|UV | 16.1 | 17.0 | |B | | | | | |68262 | +780950 |V0950 Tau |043938.6+230100 |UV | 14.7 | 16.2 | |U | | | | | |68262 UCAC2| +780951 |V0951 Tau |043948.2+235455 |UV | 16.0 | 17.4 | |B | | | | | |68260 UCAC2| +780952 |V0952 Tau |044052.6+225045 |UV | 13.6 | 17.3 | |B | | | | | |68260 UCAC2| +780953 |V0953 Tau |044124.7+230342 |UV | 13.0 | 15.9 | |U | | | | | |68262 UCAC2| +780954 |V0954 Tau |044116.4+223413 |UV | 15.2 | 17.1 | |U | | | | | |68262 UCAC2| +780955 |V0955 Tau |044207.8+252313 |INB | 14.8 | 17.2 | |B | | | | | |68263 68286| +780956 |V0956 Tau |044227. +244939:|UV | 16.0 | 17.4 | |B | | | | | |68260 | +780957 |V0957 Tau |044243. +232838:|UV | 15.5 | 17.1 | |p | | | | | |68260 | +780958 |V0958 Tau |044301. +234037:|UV | 14.2 | 15.7 | |p | | | | | |68262 | +780959 |V0959 Tau |044416. +254231:|UV | 15.8 | 20.0 | |p | | | | | |68262 | +780960 |V0960 Tau |053331.6+183225 |GCAS | 5.53 | 5.69 | |V | | | | | |68293 BD | +780961 |V0961 Tau |054426.2+215319 |LB | 14.3 | 15.5 | |p | | | | | |68192 68192| +780962 |V0962 Tau |054552.0+225247 |UV | 13.5 | 15.4 | |p | | | | | |68192 68192| +780963 |V0963 Tau |034337.7+233210 |BY | 10.69 | 10.76 | |V | | | | | |69258 69259| +780964 |V0964 Tau |034354.2+221800 |UV | 15.6 |< 18. | |U | | | | | |69260 69260| +780965 |V0965 Tau |034403.6+261410 |UV | 15.3 |< 18. | |U | | | | | |69260 69260| +780966 |V0966 Tau |034411.2+232246 |BY | 11.41 | 11.54 | |V | | | | | |69258 69259| +780967 |V0967 Tau |034424.5+233948 |UV | 15. |< 18. | |U | | | | | |69260 69260| +780968 |V0968 Tau |034536.0+260833 |UV | 13.3 | 16.2 | |U | | | | | |69260 69260| +780969 |V0969 Tau |034542.1+245422 |BY | 9.46 | 9.51 | |V | | | | | |69258 69259| +780970 |V0970 Tau |034546.2+261758 |UV | 14.8 |< 18. | |U | | | | | |69260 69260| +780971 |V0971 Tau |034619.6+235654 |BCEP | 4.18 |( 0.01 )| |V | | | | | |69264 BD | +780972 |V0972 Tau |034839.6+261816 |UV | 15.6 | 17.5 | |U | | | | | |69260 69260| +780973 |V0973 Tau |035043.1+261314 |UV | 15.1 |< 18. | |U | | | | | |69260 69260| +780974 |V0974 Tau |035039.0+215856 |UV | 15.4 |< 18. | |U | | | | | |69260 69260| +780975 |V0975 Tau |035051.2+221203 |UV | 15.4 |< 18. | |U | | | | | |69260 69260| +780976 |V0976 Tau |035113.2+250008 |UV | 15.8 |< 18. | |U | | | | | |69260 69260| +780977 |V0977 Tau |035143.2+235103 |UV | 16.2 |< 18. | |U | | | | | |69260 69260| +780978 |V0978 Tau |035217.3+245228 |UV | 15. |< 18. | |U | | | | | |69260 69260| +780979 |V0979 Tau |035219.6+233727 |UV | 15.9 |< 18. | |U | | | | | |69260 69260| +780980 |V0980 Tau |035228.6+245135 |UV | 15.0 | 17.5 | |U | | | | | |69260 69260| +780981 |V0981 Tau |035239.0+222730 |UV | 15.2 | 17.8 | |U | | | | | |69260 69260| +780982 |V0982 Tau |035433.6+231919 |UV | 15.3 |< 18. | |U | | | | | |69260 69260| +780983 |V0983 Tau |035703.1+242153 |UV | 14.1 |< 18. | |U | | | | | |69260 69260| +780984 |V0984 Tau |041633.5+215427 |BY | 9.15 |( 0.04 )| |V | | | | | |69265 BD | +780985 |V0985 Tau |041819.3+160518 |BY | 9.60 |( 0.02 )| |V | | | | | |69266 BD | +780986 |V0986 Tau |042013.0+191401 |BY | 7.47 |( 0.05 )| |V | | | | | |69266 BD | +780987 |V0987 Tau |042158.9+281807 |INT | 8.98 | 9.10 | |V | | | | | |69268 BD | +780988 |V0988 Tau |042322.9+193931 |BY | 9.40 |( 0.05 )| |V | | | | | |69266 BD | +780989 |V0989 Tau |042325.3+154547 |BY | 10.49 |( 0.03 )| |V | | | | | |69266 BD | +780990 |V0990 Tau |042416.9+180011 |BY | 9.99 |( 0.03 )| |V | | | | | |69266 BD | +780991 |V0991 Tau |042500.3+165906 |BY | 10.30 |( 0.04 )| |V | | | | | |69266 BD | +780992 |V0992 Tau |042605.9+153128 |BY: | 7.49 |( 0.03 )| |V | | | | | |69266 BD | +780993 |V0993 Tau |042735.9+153521 |BY | 7.42 |( 0.02 )| |V | | | | | |69266 BD | +780994 |V0994 Tau |042850.8+161720 |BY | 10.71 |( 0.04 )| |V | | | | | |69266 69308| +780995 |V0995 Tau |042931.0+161441 |BY | 10.32 |( 0.04 )| |V | | | | | |69266 BD | +780996 |V0996 Tau |043250.1+160021 |BY | 8.94 |( 0.05 )| |V | | | | | |69266 BD | +780997 |V0997 Tau |043259.5+154908 |BY | 8.66 |( 0.04 )| |V | | | | | |69266 BD | +780998 |V0998 Tau |043732.0+150847 |BY | 7.54 |( 0.03 )| |V | | | | | |69266 BD | +780999 |V0999 Tau |044205.5+252256 |UVN | 15.1 | 17.2 | |B | | | | | |69272 69273| +781000 |V1000 Tau |044207.3+252303 |INT | 16.1 |( 2.3 )| |B | | | | | |69272 69273| +781001 |V1001 Tau |044659.0+170238 |INT | 13.0 | 14.6 | |V | | | | | |69277 69275| +781002 |V1002 Tau |034113.1+240603 |UV | 14.7 |< 18. | |U | | | | | |70113 2MASS| +781003 |V1003 Tau |034246.2+232712 |UV | 15.0 | 16.6 | |U | | | | | |70115 70116| +781004 |V1004 Tau |034258.8+233430 |UV | 13.1 | 17.5 | |U | | | | | |70113 70117| +781005 |V1005 Tau |034506.6+234100 |UV | 14.2 | 16.6 | |U | | | | | |70113 70117| +781006 |V1006 Tau |034509.9+232509 |UV | 16. | 18. | |U | | | | | |70113 70117| +781007 |V1007 Tau |034526.1+244511 |UV | 16. |< 18. | |U | | | | | |70113 UCAC2| +781008 |V1008 Tau |034530.8+223328 |UV | 14.8 |< 18. | |U | | | | | |70113 UCAC2| +781009 |V1009 Tau |034541.6+240432 |UV | 14.4 | 15.2 | |p | | | | | |70118 70117| +781010 |V1010 Tau |034550.5+235226 |UV | 14.6 | 16.14 | |U | | | | | |70113 70117| +781011 |V1011 Tau |034617.3+255912 |UV | 14.7 | 17.8 | |U | | | | | |70113 2MASS| +781012 |V1012 Tau |034630.2+221326 |UV | 15.7 | 18. | |U | | | | | |70113 UCAC2| +781013 |V1013 Tau |034744.5+242904 |UV | 15.8 |< 18. | |U | | | | | |70113 70117| +781014 |V1014 Tau |034754.1+223926 |UV | 16.6 |< 18. | |U | | | | | |70113 2MASS| +781015 |V1015 Tau |034842.3+243715 |UV | 15.3 |< 18. | |U | | | | | |70113 70117| +781016 |V1016 Tau |034843.3+243324 |UV | 16.3 |< 18. | |U | | | | | |70113 70117| +781017 |V1017 Tau |034933.4+240038 |UV | 14. |< 18. | |U | | | | | |70113 70117| +781018 |V1018 Tau |035046.6+251713 |UV | 14.9 |< 18. | |U | | | | | |70113 2MASS| +781019 |V1019 Tau |035143.7+241111 |UV | 15.9 |< 18. | |U | | | | | |70113 2MASS| +781020 |V1020 Tau |035149.9+241150 |UV | 15.5 |< 18. | |U | | | | | |70113 70117| +781021 |V1021 Tau |035301.7+223944 |UV | 15. |< 18. | |U | | | | | |70113 UCAC2| +781022 |V1022 Tau |040727.4+275106 |EW/KW | 14.45 | 15.25 | |B | | | | | |70119 70119| +781023 |V1023 Tau |041847.0+282008 |INT | 14.1 | 14.6 | |B | | | | | |70122 70121| +781024 |V1024 Tau |041926.1+210832 |ACV | 5.02 |( 0.03 )| |U | | | | | |70123 BD | +781025 |V1025 Tau |043554.1+225414 |INSB | 11.02 | 11.12 | |V | | | | | |70124 70166| +781026 |V1026 Tau |043556.8+225436 |INT | 17.2 |< 17.6 | |p | | | | | |70126 70125| +781027 |V1027 Tau |044621.8+172303 |M: | 13.8 |< 15.5 | |V | | | | | |70127 70127| +781028 |V1028 Tau |052718.9+230625 |INT | 10.5 | 13.0 | |B | | | | | |70128 70129| +781029 |V1029 Tau |033900.2+234607 |UV | 15.3 | 17.7 | |U | | | | | |71026 UCAC2| +781030 |V1030 Tau |033901.6+233123 |UV | 15.6 |< 18. | |U | | | | | |71026 UCAC2| +781031 |V1031 Tau |034026.5+235823 |UV | 16.6 |< 18. | |U | | | | | |71026 UCAC2| +781032 |V1032 Tau |034048.9+244051 |UV | 15.8 | 17.8 | |U | | | | | |71026 UCAC2| +781033 |V1033 Tau |034252.2+244207 |UV | 13.0 |< 18. | |U | | | | | |71026 UCAC2| +781034 |V1034 Tau |034257.3+253105 |UV | 14.7 |< 18. | |U | | | | | |71026 UCAC2| +781035 |V1035 Tau |034308.3+253709 |UV | 13.0 | 16.6 | |U | | | | | |71026 UCAC2| +781036 |V1036 Tau |034336.6+230801 |UV | 14.7 | 17.1 | |U | | | | | |71026 UCAC2| +781037 |V1037 Tau |034411.4+235131 |UV | 16.8 |< 18. | |U | | | | | |71026 71027| +781038 |V1038 Tau |034420.1+244746 |BY | 11.26 | 11.46 | |U | | | | | |71028 71027| +781039 |V1039 Tau |034423.7+234735 |UV | 15.5 | 17.1 | |U | | | | | |71026 71027| +781040 |V1040 Tau |034450.1+242503 |UV | 14.5 | 18. | |U | | | | | |71026 71027| +781041 |V1041 Tau |034539.4+234515 |UV: | 12.4 | 14.1 | |U | | | | | |71029 71027| +781042 |V1042 Tau |034609.0+240421 |UV | 16.4 |< 18. | |U | | | | | |71026 71027| +781043 |V1043 Tau |034612.3+253302 |UV | 15.8 |< 18. | |U | | | | | |71026 UCAC2| +781044 |V1044 Tau |034613.9+240125 |UV | 15.5 | 18. | |U | | | | | |71026 71027| +781045 |V1045 Tau |034622.7+243413 |BY | 11.17 | 11.28 | |U | | | | | |71028 71027| +781046 |V1046 Tau |034654.9+244747 |BY: | 11.28 | 11.37 | |U | | | | | |71028 71027| +781047 |V1047 Tau |034755.4+253357 |UV | 15.0 | 17. | |U | | | | | |71026 UCAC2| +781048 |V1048 Tau |034936.8+232908 |UV | 12.8 | 14.5 | |U | | | | | |71029 71027| +781049 |V1049 Tau |035109.7+235658 |UV | 14.6 | 17.6 | |U | | | | | |71026 71027| +781050 |V1050 Tau |035113.0+221825 |UV | 15.8 |< 18. | |U | | | | | |71026 2MASS| +781051 |V1051 Tau |035116.9+234936 |UV | 11.1 | 14.2 | |U | | | | | |71029 71027| +781052 |V1052 Tau |035131.0+242050 |UV | 14.5 | 16.5 | |U | | | | | |71026 71027| +781053 |V1053 Tau |035135.1+232848 |UV | 15.1 |< 18. | |U | | | | | |71026 UCAC2| +781054 |V1054 Tau |035139.3+243256 |UV | 12.7 | 13.8 | |U | | | | | |71029 71027| +781055 |V1055 Tau |035147.5+241607 |UV | 14.6 |< 18. | |U | | | | | |71026 UCAC2| +781056 |V1056 Tau |035255.6+225457 |UV | 16.3 |< 18. | |U | | | | | |71026 UCAC2| +781057 |V1057 Tau |035340.8+240303 |UV | 14.9 | 17. | |U | | | | | |71026 UCAC2| +781058 |V1058 Tau |035506.3+230035 |UV | 12.6 | 18. | |U | | | | | |71026 UCAC2| +781059 |V1059 Tau |044255.1+251636 |UVN | 13.2 | 14.5 | |p | | | | | |71031 71032| +781060 |V1060 Tau |045037.7+154750 |LB: | 11.2 | 12.18 | |B | | | | | |71034 BD | +781061 |V1061 Tau |045852.8+242945 |EB/KE | 7.95 | 8.45 : | |V | | | | | |71038 BD | +781062 |V1062 Tau |050227.4+244523 |NL | | | | | | | | | |71010 GSC22| +781063 |V1063 Tau |051627.8+260838 |ZZB | 17. |( 0.2 )| |V | | | | | |71039 71040| +781064 |V1064 Tau |034350.9+231628 |UV | 14.8 |< 18. | |U | | | | | |72156 UCAC2| +781065 |V1065 Tau |034640.2+232952 |RS: | 12.18 |( 0.15 )| |V | | | | | |72157 72158| +781066 |V1066 Tau |035030.1+220019 |UV | 14.3 |< 18. | |U | | | | | |72156 UCAC2| +781067 |V1067 Tau |040314.0+255300 |INT: | 12.86 | 12.98 | |V | | | | | |72157 72020| +781068 |V1068 Tau |041628.1+280736 |INT | 14.66 | 15.74 | |U | | | | | |72159 72160| +781069 |V1069 Tau |041851.7+172317 |INT | 12.16 | 12.36 | |V | | | | | |72019 72020| +781070 |V1070 Tau |041941.3+274948 |INT | 14.35 | 15.20 | |U | | | | | |72159 72160| +781071 |V1071 Tau |042203.1+282539 |INT | 13.40 | 13.60 | |V | | | | | |72019 72160| +781072 |V1072 Tau |042710.6+175043 |INT | 10.24 | 10.37 | |V | | | | | |72161 72020| +781073 |V1073 Tau |043125.1+181617 |INT | 10.27 | 10.34 | |V | | | | | |72161 72020| +781074 |V1074 Tau |043127.2+170625 |INT | 12.51 | 12.64 | |V | | | | | |72019 72020| +781075 |V1075 Tau |043209.3+175723 |INT | 12.01 | 12.36 | |V | | | | | |72019 72020| +781076 |V1076 Tau |043243.7+180256 |INT | 13.14 | 13.30 | |V | | | | | |72161 72020| +781077 |V1077 Tau |043418.0+183007 |INT | 12.69 | 12.82 | |V | | | | | |72161 72020| +781078 |V1078 Tau |043514.2+182136 |INT | 10.92 | 11.02 | |V | | | | | |72161 72020| +781079 |V1079 Tau |043917.8+222103 |INT | 11.91 | 12.89 | |V | | | | | |72019 72160| +781080 |V1080 Tau |044032.6+242631 |INA | 10.29 | 10.56 | |V | | | | | |72019 BD | +781081 |V1081 Tau |044354.0+225640 |E | 6.9 | 7.3 | |V | | | | | |72162 72162| +781082 |V1082 Tau |033933.6+182306 |RS | 8.19 |( 0.05 )| |V | | | | | |73005 BD | +781083 |V1083 Tau |034343.9+065530 |M | 5.99 | 7.39 | |J | | | | | |73014 UCAC2| +781084 |V1084 Tau |034420.5+244622 |RS | 11.04 |( 0.08 )| |V | | | | | |73263 73315| +781085 |V1085 Tau |034535.4+240500 |BY | 10.12 |( 0.05 )| |V | | | | | |73259 73315| +781086 |V1086 Tau |034707.6+280342 |RRAB | 17.27 | 18.40 | |V | | | | | |73003 GSC22| +781087 |V1087 Tau |034723.0+245056 |UV | 16.8 |< 20.0 | |U | | | | | |73316 73317| +781088 |V1088 Tau |034920.9+243325 |UV | 16.0 | 17.2 | |p | | | | | |73318 73318| +781089 |V1089 Tau |034924.1+235021 |BY | 11.35 |( 0.06 )| |V | | | | | |73263 73315| +781090 |V1090 Tau |034933.1+234743 |BY | 10.93 |( 0.03 )| |V | | | | | |73263 73315| +781091 |V1091 Tau |035035.7+252535 |UV | 12.2 | 13.1 | |U | | | | | |73319 73319| +781092 |V1092 Tau |035705.8+283752 |BY+UV | 11.7 |( 0.13 )| |V | | | | | |73321 73153| +781093 |V1093 Tau |040344.1+280332 |EW | 17.40 | 18.13 | |V | | | | | |73003 GSC22| +781094 |V1094 Tau |041203.6+215651 |EA | 8.95 | 9.43 | |V | | | | | |73322 BD | +781095 |V1095 Tau |041314.2+281911 |BY | 13.67 | 13.76 | |V | | | | | |73323 73324| +781096 |V1096 Tau |041327.2+281625 |BY | 13.37 | 13.58 | |V | | | | | |73323 73324| +781097 |V1097 Tau |041430.6+285130 |BY | 11.64 | 12.37 | |V | | | | | |73323 73324| +781098 |V1098 Tau |041448.0+275235 |INB | 12.00 | 12.19 | |V | | | | | |73325 73324| +781099 |V1099 Tau |041546.3+152403 |ELL: | 6.31 |( 0.02 )| |V | | | | | |73326 BD | +781100 |V1100 Tau |042125.4+201559 |M | 12.5 |< 15.5 | |p | | | | | |73256 73256| +781101 |V1101 Tau |042452.1+220242 |UV | 14.8 | 16.2 | |p | | | | | |73327 73328| +781102 |V1102 Tau |042828.8+174145 |BY | 12.05 |( 0.07 )| |V | | | | | |73263 73329| +781103 |V1103 Tau |042901.0+184026 |BY | 13.10 | 13.31 | |V | | | | | |73323 73324| +781104 |V1104 Tau |042900.2+162047 |BY | 14.26 |( 0.05 )| |V | | | | | |73263 73329| +781105 |V1105 Tau |043055.8+245017 |UV | 13.7 | 18.0 | |p | | | | | |73330 73328| +781106 |V1106 Tau |043314.4+242136 |UV | 16.0 | 17.2 | |p | | | | | |73327 73328| +781107 |V1107 Tau |043325.1+224058 |UV | 15.7 | 19.8 | |p | | | | | |73327 73328| +781108 |V1108 Tau |043413.7+222645 |UV | 14.7 | 16.1 | |p | | | | | |73327 73328| +781109 |V1109 Tau |043419.3+222355 |UV | 14.8 | 15.9 | |p | | | | | |73327 73328| +781110 |V1110 Tau |043439.3+250101 |RS | 10.34 |( 0.06 )| |V | | | | | |73005 BD | +781111 |V1111 Tau |043442.8+244611 |UV | 15.0 | 18.8 | |p | | | | | |73330 73328| +781112 |V1112 Tau |043424.8+082202 |EW | 13.1 |( 0.62 )| |V | | | | | |73331 73331| +781113 |V1113 Tau |043450.8+221827 |UV | 14.5 | 16.7 | |p | | | | | |73330 73328| +781114 |V1114 Tau |043608.7+232831 |UV | 14.1 | 16.0 | |p | | | | | |73330 73328| +781115 |V1115 Tau |043619.1+254259 |BY | 11.65 | 11.82 | |V | | | | | |73325 73324| +781116 |V1116 Tau |043629.1+232027 |DSCTC: | 6.02 |( 0.01 )| |V | | | | | |73326 BD | +781117 |V1117 Tau |043815.6+230228 |UV | 14.1 | 15.3 | |p | | | | | |73330 73328| +781118 |V1118 Tau |044041.9+230117 |UV | 15.1 | 16.4 | |p | | | | | |73327 73328| +781119 |V1119 Tau |052425.5+172301 |BY | 4.98 | 5.02 | |V | | | | | |73242 BD | +781120 |V1120 Tau |032415.4+115140 |LB: | 8.88 | 9.00 | |Hp| | | | | |HIP HIP | +781121 |V1121 Tau |032415.5+012124 |EB: | 8.46 | 8.89 | |Hp| | | | | |HIP HIP | +781122 |V1122 Tau |033335.9+144043 |LB: | 7.51 | 7.61 | |Hp| | | | | |HIP HIP | +781123 |V1123 Tau |033458.5+174238 |EW | 9.87 | 10.25 | |Hp| | | | | |HIP HIP | +781124 |V1124 Tau |033518.4+185411 |SRD: | 7.59 | 7.70 | |Hp| | | | | |HIP HIP | +781125 |V1125 Tau |033858.8+004748 |E | 8.77 | 9.03 | |Hp| | | | | |HIP HIP | +781126 |V1126 Tau |033910.9+110524 |E: | 10.47 | 10.60 | |Hp| | | | | |HIP HIP | +781127 |V1127 Tau |034318.1+124738 |SRB | 8.40 | 8.91 | |Hp| | | | | |HIP HIP | +781128 |V1128 Tau |034927.8+125444 |EW | 9.65 | 10.24 | |Hp| | | | | |HIP HIP | +781129 |V1129 Tau |034927.0+110840 |BY: | 7.75 | 7.85 | |Hp| | | | | |HIP HIP | +781130 |V1130 Tau |035041.9+013350 |EB | 6.65 | 7.04 | |Hp| | | | | |HIP HIP | +781131 |V1131 Tau |035653.1+153213 |DSCTC | 8.82 | 8.89 | |Hp| | | | | |HIP HIP | +781132 |V1132 Tau |035837.3+110139 |LB: | 7.18 | 7.29 | |Hp| | | | | |HIP HIP | +781133 |V1133 Tau |040344.6+052608 |LPB: | 5.28 | 5.32 | |Hp| | | | | |HIP HIP | +781134 |V1134 Tau |040411.9+252357 |LB: | 8.63 | 8.73 | |Hp| | | | | |HIP HIP | +781135 |V1135 Tau |040604.7+244356 |SRB | 8.78 | 8.93 | |Hp| | | | | |HIP HIP | +781136 |V1136 Tau |041156.2+233811 |RS: | 9.49 | 9.58 | |Hp| | | | | |HIP HIP | +781137 |V1137 Tau |041251.2+222448 |ACV: | 6.18 | 6.22 | |Hp| | | | | |HIP HIP | +781138 |V1138 Tau |041324.4+035408 |SRB | 8.10 | 8.27 | |Hp| | | | | |HIP HIP | +781139 |V1139 Tau |041524.1+240443 |LB: | 7.36 | 7.71 | |Hp| | | | | |HIP HIP | +781140 |V1140 Tau |042037.8+285331 |ACV: | 7.97 | 8.02 | |Hp| | | | | |HIP HIP | +781141 |V1141 Tau |042332.4+205855 |LPB | 6.00 | 6.02 | |Hp| | | | | |HIP HIP | +781142 |V1142 Tau |042344.2+225753 |LB: | 6.97 | 7.07 | |Hp| | | | | |HIP HIP | +781143 |V1143 Tau |042621.1+083525 |LPB | 6.06 | 6.09 | |Hp| | | | | |HIP HIP | +781144 |V1144 Tau *|042942.9+103119 |LPB | 6.80 | 6.82 | |Hp| | | | | |HIP HIP | +781145 |V1145 Tau |042938.9+050951 |SRC: | 6.87 | 7.07 | |Hp| | | | | |HIP HIP | +781146 |V1146 Tau |043107.2+150618 |LB: | 6.33 | 6.36 | |Hp| | | | | |HIP HIP | +781147 |V1147 Tau |043225.6+130648 |BY: | 10.96 | 11.13 | |Hp| | | | | |HIP HIP | +781148 |V1148 Tau *|043754.3+071903 |ELL: | 6.98 | 7.00 | |Hp| | | | | |HIP HIP | +781149 |V1149 Tau |043831.1+184401 |EA | 8.49 | 8.65 | |Hp| | | | | |HIP HIP | +781150 |V1150 Tau |043836.2+081031 |BE | 7.59 | 7.68 | |Hp| | | | | |HIP HIP | +781151 |V1151 Tau |043846.2+064913 |LB: | 7.86 | 7.98 | |Hp| | | | | |HIP HIP | +781152 |V1152 Tau *|044106.1+063753 |SRB: | 8.69 | 9.18 | |Hp| | | | | |HIP HIP | +781153 |V1153 Tau |050215.9+240145 |BE | 8.21 | 8.56 | |Hp| | | | | |HIP HIP | +781154 |V1154 Tau |050537.7+230340 |E: | 6.71 | 6.81 | |Hp| | | | | |HIP HIP | +781155 |V1155 Tau |050755.4+214217 |BE | 5.82 | 5.96 | |Hp| | | | | |HIP HIP | +781156 |V1156 Tau |050945.1+280150 |E: | 6.00 | 6.10 | |Hp| | | | | |HIP HIP | +781157 |V1157 Tau |051040.0+172625 |LPB | 7.90 | 7.94 | |Hp| | | | | |HIP HIP | +781158 |V1158 Tau |051354.0+172712 |SRB: | 8.89 | 9.35 | |Hp| | | | | |HIP HIP | +781159 |V1159 Tau |052018.3+193442 |ACV | 6.63 | 6.66 | |Hp| | | | | |HIP HIP | +781160 |V1160 Tau |053015.4+223225 |LB: | 7.66 | 7.81 | |Hp| | | | | |HIP HIP | +781161 |V1161 Tau *|053546.4+184544 |LB: | 9.50 | 9.78 | |Hp| | | | | |HIP HIP | +781162 |V1162 Tau |053738.2+230851 |BE: | 8.88 | 9.07 | |Hp| | | | | |HIP HIP | +781163 |V1163 Tau |053858.0+282737 |BE | 8.40 | 8.53 | |Hp| | | | | |HIP HIP | +781164 |V1164 Tau |054032.5+272634 |ELL: | 8.30 | 8.51 | |Hp| | | | | |HIP HIP | +781165 |V1165 Tau |054339.1+252622 |BE: | 6.78 | 6.86 | |Hp| | | | | |HIP HIP | +781166 |V1166 Tau |054346.7+264909 |E: | 9.41 | 9.58 | |Hp| | | | | |HIP HIP | +781167 |V1167 Tau |055331.1+254432 |BE | 8.36 | 8.62 | |Hp| | | | | |HIP HIP | +781168 |V1168 Tau |034404.8+241632 |BY | 11.63 |( 0.16 )| |V | | | | | |75260 75261| +781169 |V1169 Tau |034413.9+244646 |BY | 10.79 |( 0.03 )| |V | | | | | |75262 75261| +781170 |V1170 Tau |034426.3+243523 |BY | 11.57 |( 0.05 )| |V | | | | | |75260 75261| +781171 |V1171 Tau |034628.4+242602 |BY | 11.10 |( 0.12 )| |V | | | | | |75260 75261| +781172 |V1172 Tau |034738.0+232805 |BY | 13.51 |( 0.12 )| |V | | | | | |75260 75261| +781173 |V1173 Tau |035005.1+240727 |BY | 14.02 |( 0.07 )| |V | | | | | |75262 75261| +781174 |V1174 Tau |035034.6+243028 |BY: | 12.65 |( 0.02 )| |V | | | | | |75263 75261| +781175 |V1175 Tau |035040.1+235559 |BY | 10.31 |( 0.07 )| |V | | | | | |75260 75261| +781176 |V1176 Tau |035054.3+235006 |BY: | 11.57 |( 0.04 )| |V | | | | | |75263 75261| +781177 |V1177 Tau |051226.7+164354 |DSCTC | 14.11 |( 0.01 )| |V | | | | | |75264 75264| +781178 |V1178 Tau |051232.3+164452 |DSCTC | 12.57 |( 0.03 )| |V | | | | | |75264 75264| +781179 |V1179 Tau |051237.4+164231 |DSCTC | 14.38 |( 0.03 )| |V | | | | | |75264 75264| +781180 |V1180 Tau |051240.2+164101 |DSCTC | 15.23 |( 0.03 )| |V | | | | | |75264 75264| +781181 |V1181 Tau |051240.8+164200 |DSCTC | 12.84 |( 0.03 )| |V | | | | | |75264 75264| +781182 |V1182 Tau |051242.8+164143 |DSCTC | 13.50 |( 0.03 )| |V | | | | | |75264 75264| +781183 |V1183 Tau |051246.8+163840 |DSCTC | 13.4 |( 0.03 )| |V | | | | | |75264 75264| +781184 |V1184 Tau |054703.8+210035 |FU: | 14.35 | 18.0 | |R | | | | | |75265 75266| +781185 |V1185 Tau |033900.6+294146 |IA | 10.74 | 10.88 | |V | | | | | |76027 GSC | +781186 |V1186 Tau |034226.8+245021 |BY | 17.42 |( 0.10 )| |Ic| | | | | |76028 76029| +781187 |V1187 Tau |034400.3+243325 |DSCTC | 8.28 |( 0.02 )| |B | | | | | |76009 DM | +781188 |V1188 Tau |034536.0+243001 |EW | 11.85 | 12.30 | |V | | | | | |76030 76030| +781189 |V1189 Tau |034612.9+240316 |BY | 14.08 |( 0.14 )| |V | | | | | |76031 76032| +781190 |V1190 Tau |034733.8+295851 |SR: | 12.4 | 13.8 | |V | | | | | |76012 UCAC2| +781191 |V1191 Tau |034927.7+060440 |M | 11.1 |< 15.3 | |V | | | | | |76012 UCAC2| +781192 |V1192 Tau |035028.1+274006 |SR: | 11.5 | 12.5 | |V | | | | | |76012 UCAC2| +781193 |V1193 Tau |035112.1+235558 |BY | 14.74 |( 0.07 )| |V | | | | | |76031 76032| +781194 |V1194 Tau |040324.9+172426 |IT | 11.65 | 11.80 | |V | | | | | |76033 GSC | +781195 |V1195 Tau |040651.4+254128 |IT | 11.68 |( 0.21 )| |V | | | | | |76033 UCAC2| +781196 |V1196 Tau |040813.0+195639 |E: | 12.95 | 13.35 | |V | | | | | |76033 UCAC2| +781197 |V1197 Tau |040909.8+290130 |IT | 10.55 | 10.62 | |V | | | | | |76033 GSC | +781198 |V1198 Tau |041251.2+244144 |IT | 11.93 | 12.01 | |V | | | | | |76033 GSC | +781199 |V1199 Tau |041522.9+204417 |IT | 10.60 | 10.72 | |V | | | | | |76033 GSC | +781200 |V1200 Tau |042341.3+153755 |IT | 11.17 | 11.33 | |V | | | | | |76033 GSC | +781201 |V1201 Tau |042449.0+264310 |IT | 11.31 |( 0.16 )| |V | | | | | |76033 GSC | +781202 |V1202 Tau |043116.9+215025 |IT | 10.79 | 10.92 | |V | | | | | |76033 GSC | +781203 |V1203 Tau |043242.4+185510 |IT | 10.74 | 10.85 | |V | | | | | |76033 GSC | +781204 |V1204 Tau |043839.1+154614 |IT | 10.64 | 10.84 | |V | | | | | |76033 GSC | +781205 |V1205 Tau |044423.6+201718 |IT | 12.53 | 12.70 | |V | | | | | |76033 UCAC2| +781206 |V1206 Tau |044551.3+155550 |IT | 9.18 | 9.41 | |V | | | | | |76033 GSC | +781207 |V1207 Tau |045839.7+204644 |IT | 11.86 | 11.96 | |V | | | | | |76033 UCAC2| +781208 |V1208 Tau |045944.0+192623 |UGSU | 15. | 18. | |V | | | | | |76039 76005| +781209 |V1209 Tau | | | | | | | | | | | | |=V0738 Tau +781210 |V1210 Tau |034704.2+235943 |GDOR | 8.37 |( 0.03 )| |V | | | | | |77031 DM | +781211 |V1211 Tau |035051.4+231945 |UV | 12.9 | 14.4 | |U | | | | | |77032 GSC | +781212 |V1212 Tau *|035157.0+252529 |UGSU: | 15.3 |< 21.5 | |B | | | | | |77033 77033| +781213 |V1213 Tau |043137.5+181225 |IN | 19.5 |( 1.4 )| |V | | | | | |77037 2MASS| +781214 |V1214 Tau |045013.4+300745 |M | 10.3 | 13.6 | |I | | | | | |77012 77013| +781215 |V1215 Tau |051743.6+252459 |M | 9.9 | 13.6 | |I | | | | | |77012 77013| +781216 |V1216 Tau |052009.6+192849 |SR: | 14.3 | 16.1 | |P | | | | | |77043 UCAC2| +781217 |V1217 Tau |053018.2+202203 |M | 9.8 | 13.7 | |I | | | | | |77012 77013| +781218 |V1218 Tau |054002.8+163849 |EA: | 12.6 | 13.2 | |* | | | | | |77125 UCAC2| +781219 |V1219 Tau |054815.7+200159 |M | 13.7 | 15.9 | |I | | | | | |77012 77013| +781220 |V1220 Tau |032809.6-011805 |EB | 11.9 | 12.5 | |V |51550.250 | | 1.06425 | | |78045 GSC | +781221 |V1221 Tau |032815.0+040948 |BY | 9.49 | 9.56 | |V | | | 0.5473 : | |G6V+K3V |78046 DM | +781222 |V1222 Tau |032825.8+090424 |EW | 13.28 | 13.64 | |* |52265.857 | | 0.29172 | | |78047 GSC | +781223 |V1223 Tau |032914.7+091120 |EW | 12.13 | 12.59 | |* |52264.982 | | 0.44713 | | |78047 GSC | +781224 |V1224 Tau |032938.4+243038 |INT | 12.05 | 12.23 | |V | | | | |K1 |78048 GSC | +781225 |V1225 Tau |033951.2+251142 |GDOR | 8.81 |( 0.08 )| |V | | | 0.390 | |A2 |78050 DM | +781226 |V1226 Tau *|034543.2+254023 |* | 17.36 |( 0.01 : )| |Ic| | | | |L0 |78007 2MASS| +781227 |V1227 Tau |034544.5+244250 |BY | 11.1 |( 0.15 )| |V | | | 24.814 | |M1 |78048 78056| +781228 |V1228 Tau |034724.1+243518 |DSCTC | 7.71 |( 0.02 v )| |V | | | 0.0603 | |A4V |78057 DM | +781229 |V1229 Tau *|034729.4+241718 |EA | 6.84 | 6.94 | 6.88 |V |52903.5981 | | 2.461134 | |A0V |78058 DM | +781230 |V1230 Tau *|035306.0+102645 |EW | 14.28 | 14.52 | 14.49 |* |52271.190 | | 0.35240 | | |78060 GSC | +781231 |V1231 Tau |041650.8+185221 |RRC | 15.46 | 15.93 | |* |52547.535 | | 0.266882 |40 | |78063 USNO | +781232 |V1232 Tau |041801.8+181525 |RS | 7.53 |( 0.05 )| |V | | | 8.968 | |G4V+G8V |78018 DM | +781233 |V1233 Tau |042551.7+185151 |BY | 8.07 |( 0.02 )| |V | | | 9.16 | |G3V+G6V |78018 DM | +781234 |V1234 Tau *|042925.0+090530 |EW | 12.6 | 13.0 | 12.9 |* |52308.291 | | 0.38786 | | |78065 GSC | +781235 |V1235 Tau |043210.2+174318 |DSCTC | 10.96 | 11.00 | |V | | | 0.1169 | |F3 |78022 GSC | +781236 |V1236 Tau |051628.8+260739 |EA | 18.1 |( 0.17 * )| |V |52251.5173 | | 1.29395 |08 |K+L |78068 78068| +781237 |V1237 Tau *|052621.1+244951 |EW | 14.03 |( 0.20 * )|( 0.19 )|V |52250.7845 | | 0.287449 | |G |78070 78070| +781238 |V1238 Tau *|054214.6+222217 |EW | 8.50 | 8.87 | 8.87 |V |52978.7388 | | 1.121730 | |A0 |78130 DM | +781239 |V1239 Tau *|055025.9+265651 |EA: | 10.66 | 11.08 | 10.76 |V |52645.6567 | | 1.084820 | | |78130 GSC | +781240 |V1240 Tau |050938.5+283928 |SRA | 14.9 | 16.5 | |p |25950. | | 300. | |M7 |00607 GSC | +781241 |V1241 Tau *|032423.3-004215 |EA/SD | 9.38 |( 0.90 )|( 0.22 )|V |27531.687 | | 0.82327038 |19 *|A7+F6V: |09199 08953| +781242 |V1242 Tau |034126.7+300409 |EA | 13.92 | 15.3 | |* |51498.846 | | 1.84755 |11 | |79001 79022| +781243 |V1243 Tau *|034851.6+114232 |GDOR | 8.60 |( 0.08 )| |B | | | 0.44316 | |F2V |79219 DM | +781244 |V1244 Tau |034906.3+253523 |SRB | 10.7 | 11.2 | |V | | | 42.9 | | |79064 GSC | +781245 |V1245 Tau |035147.4+251207 |UV | 12.4 | 13.6 | |U | | | | | |79023 79024| +781246 |V1246 Tau |035152.5+302525 |SR | 10.5 | 10.8 | |* | | | 95. | | |79100 79022| +781247 |V1247 Tau |041142.4+262718 |SRB | 12.6 | 13.6 | |V | | | 105. : | | |79100 79040| +781248 |V1248 Tau *|043248.1+223953 |SR: | 10.4 | 10.8 | |* | | | | |M8 |79100 GSC | +781249 |V1249 Tau |043648.2+065706 |EA | 13.32 | 14.15 | 14.05 : |V |51609.717 | | 1.188245 |08 | |79009 GSC | +781250 |V1250 Tau |043825.8+235343 |EA | 12.55 | 13.30 | 13.3 : |* |52661.589 | | 2.044093 |07 | |79009 79031| +781251 |V1251 Tau |044157.7+053634 |EA/RS | 9.49 | 10.08 | 9.95 |V |51946.829 | | 18.897 |10 |G8III+K1/2III |79003 DM | +781252 |V1252 Tau |050907.5+260819 |LB | 10.3 | 10.8 | |* | | | | | |79100 GSC | +781253 |V1253 Tau |051507.6+182229 |SR | 12.1 | 13.2 | |V | | | 160. | | |79100 GSC | +781254 |V1254 Tau |051708.7+274140 |SR | 11.2 | 12.2 | |V | | | 188. | |C(N) |79064 GSC | +781255 |V1255 Tau |052610.6+190816 |SRB | 12.6 | 13.4 | |V | | | 71.9 | | |79064 GSC | +781256 |V1256 Tau |052706.5+165611 |CEP | 12.8 | 13.4 | |V |53737.555 | | 4.4386 |25 | |79064 GSC | +781257 |V1257 Tau |053441.2+175319 |LB | 10.4 | 10.8 | |* | | | | |M4 |79100 GSC | +781258 |V1258 Tau *|053533.8+235318 |M | 11.6 |< 15.0 | |V |52699. | | 428. : | | |79100 GSC | +781259 |V1259 Tau |053726.7+222031 |M | 15.0 | 18.0 | |B |51497. | | 230. : | | |79100 USNO | +781260 |V1260 Tau *|053903.9+253610 |EA | 10.15 | 10.75 : | 10.61 |* |53347.724 | | 5.43077 |05 |A3m |79003 DM | +781261 |V1261 Tau |053934.9+185238 |SRB | 12.0 | 13.0 | |V | | | 123. | |M5 |79100 GSC | +781262 |V1262 Tau |054520.5+190753 |LB | 12.1 | 13.4 | |V | | | | | |79100 79022| +781263 |V1263 Tau |032405.6+072927 |E:/RS | 10.44 | 10.77 | |V | | | 20.43 | | |80034 DM | NL80_1 +781264 |V1264 Tau |032425.3+023101 |IT: | 12.51 |( 0.23 )| |V | | | | | K5 |80127 GSC | NL80_1 +781265 |V1265 Tau |032912.2+125018 |UGSU | 15.2 |< 20. | |V | | | | | |80141 | NL80_1 +781266 |V1266 Tau |033026.0+310218 |RS | 13.49 | 13.82 | |* | | | 2.2308 | | |80021 GSC | NL80_1 +781267 |V1267 Tau |033311.6+103556 |IT: | 12.0 |( 0.18 )| |V | | | | | K3 |80127 GSC | NL80_1 +781268 |V1268 Tau *|034038.8+284624 |EA | 7.42 | 8.62 | |V |54329.479 | | 8.161235 | | A1V |80146 HIP | NL80_1 +781269 |V1269 Tau |034145.6+271857 |IT: | 11.68 | 11.89 | |V | | | 2.6380 | | K2IV |80021 GSC | NL80_1 +781270 |V1270 Tau |034220.9+291441 |RS | 11.1 |( 0.06 * )| |R | | | 2.3271 | | |80021 GSC | NL80_1 +781271 |V1271 Tau |034348.4+250016 |RS | 11.43 | 11.79 | |V | | | 0.4749 | | |80021 GSC | NL80_1 +781272 |V1272 Tau |034403.5+243015 |BY | 11.73 |( 0.15 )| |B | | | 1.365 | | G1V |80147 GSC | NL80_1 +781273 |V1273 Tau |034453.1+035931 |IB: | 12.6 |( 0.06 )| |V | | | 1.34 | | K2 |80127 GSC | NL80_1 +781274 |V1274 Tau |034557.9+273335 |RS | 10.2 |( 0.10 * )| |R | | | 6.6237 | | K5 |80021 GSC | NL80_1 +781275 |V1275 Tau |034624.6+242847 |BY | 14.91 |( 0.02 )| |I | | | 0.89 | | |80149 80149| NL80_1 +781276 |V1276 Tau |034632.0+242835 |BY | 17.15 |( 0.10 )| |I | | | 0.170 | | |80149 80149| NL80_1 +781277 |V1277 Tau |034654.9+242800 |BY | 16.74 |( 0.08 )| |I | | | 0.121 | | |80149 80149| NL80_1 +781278 |V1278 Tau |034707.9+242338 |BY | 15.58 |( 0.04 )| |I | | | 0.806 | | M5 |80149 80149| NL80_1 +781279 |V1279 Tau |034718.1+241351 |BY | 14.86 |( 0.03 )| |I | | | 1.075 | | |80149 80149| NL80_1 +781280 |V1280 Tau |034737.6+242423 |BY | 15.24 |( 0.02 )| |I | | | 0.769 | | |80149 80149| NL80_1 +781281 |V1281 Tau |034759.4+243537 |BY | 16.14 |( 0.04 )| |I | | | 0.84 | | |80149 80149| NL80_1 +781282 |V1282 Tau *|034906.1+234653 |RS | 10.84 | 11.00 | |* | | | 0.3082 | | K0IV |80021 GSC | NL80_1 +781283 |V1283 Tau *|034942.3+242747 |RS | 12.05 | 12.26 | |* | | | 7.7479 | | K3 |80021 GSC | NL80_1 +781284 |V1284 Tau *|035126.2+171535 |EW | 14.55 | 15.20 | 15.17 |* |52612.590 | | 0.350461 | | |80005 80005| NL80_1 +781285 |V1285 Tau |035126.3+095337 |IB: | 12.6 |( 0.04 )| |V | | | 3.65 | | K1 |80127 GSC | NL80_1 +781286 |V1286 Tau |035208.3+241349 |RS: | 10.60 | 10.76 | |V | | | 1.6604 | | G5 |80021 GSC | NL80_1 +781287 |V1287 Tau *|035307.4+253207 |EA | 8.53 |< 8.87 | 8.69 |V |53354.715 | | 13.0620 | | A0 |80015 DM | NL80_1 +781288 |V1288 Tau |035331.4+263141 |BY | 12.1 |( 0.09 * )| |V | | | 0.2835 | | G7IV |80021 GSC | NL80_1 +781289 |V1289 Tau |035425.2+242136 |RS | 10.9 |( 0.12 * )| |V | | | 2.2386 | | G5IV |80021 HIP | NL80_1 +781290 |V1290 Tau |035430.2+012419 |SRB | 11.7 | 12.2 | |V | | | 26.6 | | M5III: |80001 GSC | NL80_1 +781291 |V1291 Tau |035754.7+090823 |RRAB | 13.96 | 14.83 | |* |51630.65 | | 0.52674 | | |80026 GSC | NL80_1 +781292 |V1292 Tau |040013.5+285847 |RRAB | 13.69 | 14.48 | |* |51531.68 | | 0.57148 | | |80026 GSC | NL80_1 +781293 |V1293 Tau |040031.1+193521 |IB | 10.12 | 10.29 | |V | | | 1.1683 | | K1 |80154 DM | NL80_1 +781294 |V1294 Tau |040037.2+062246 |NL | 14.9 | 15.4 | |R | | | 0.143 | | pec(e) |80155 80155| NL80_1 +781295 |V1295 Tau *|040259.3+271855 |EA | 11.27 | 11.66 | 11.35 |V |51566.648 | | 2.09160 |13 | G5 |80011 GSC | NL80_1 +781296 |V1296 Tau |040306.6+044415 |NL | 15.50 | 17.30 | |V | | | | | pec(e) |80156 80027| NL80_1 +781297 |V1297 Tau |040512.3+263244 |IB | 11.21 | 11.49 | |V | | | 1.9610 | | K2 |80154 GSC | NL80_1 +781298 |V1298 Tau |040519.6+200926 |IB | 10.31 | 10.54 | |V | | | 2.86 | | K1 |80154 DM | NL80_1 +781299 |V1299 Tau *|040540.6+224812 |IB | 9.29 | 9.44 | |V | | | 0.8160 | | G3 |80154 DM | NL80_1 +781300 |V1300 Tau |040638.8+201811 |IB | 9.62 | 9.75 | |V | | | 1.0790 | | G1 |80154 HIP | NL80_1 +781301 |V1301 Tau |040713.8+220931 |DSCT | 14.70 | 14.89 | |V | | | 0.16 : | | |80162 80162| NL80_1 +781302 |V1302 Tau |040754.0+175026 |RS | 12.21 |( 0.18 )| |B | | | | | K4 |80127 GSC | NL80_1 +781303 |V1303 Tau |040843.3+270848 |SRB | 12.8 | 13.4 | |* | | | 64. | | |80001 GSC | NL80_1 +781304 |V1304 Tau *|040917.0+171608 |IB | 14.58 |( 0.17 )| |B | | | 0.60 | | M1 |80127 GSC | NL80_1 +781305 |V1305 Tau *|040917.2+171548 |EB | 13.5 |( 0.58 )|( 0.2 )|B |51910.2865 | | 0.59075 | | F2:V |80127 GSC | NL80_1 +781306 |V1306 Tau |040951.1+244621 |IB | 13.38 | 13.59 | |V | | | 5.530 | | M1.5 |80001 GSC | NL80_1 +781307 |V1307 Tau |041250.6+193658 |IB | 12.51 | 12.65 | |V | | | 1.569 : | | K6 |80154 GSC | NL80_1 +781308 |V1308 Tau |041259.9+161148 |IB | 10.95 | 11.12 | |V | | | | | G1 |80154 GSC | NL80_1 +781309 |V1309 Tau |041427.3+122607 |BY | 8.06 |( 0.02 )| |V | | | 8.65 | | G0 |80129 HIP | NL80_1 +781310 |V1310 Tau |041432.3+233430 |BY | 8.08 |( 0.03 )| |V | | | 8.48 | | G3V |80129 HIP | NL80_1 +781311 |V1311 Tau *|041703.5+185232 |EW | 14.38 | 14.62 | 14.59 |* |52547.7597 | | 0.3098052 | | |80164 80164| NL80_1 +781312 |V1312 Tau |041738.9+283301 |IT | 13.3 |( 0.18 * )| |V | | | 1.4127 | | M2Ve |80021 GSC | NL80_1 +781313 |V1313 Tau |041810.8+231705 |RS | 9.36 | 9.60 | |V | | | 1.8787 | | K0 |80034 DM | NL80_1 +781314 |V1314 Tau |041946.6+231748 |RS | 10.8 |( 0.09 * )| |V | | | 2.2176 | | G5 |80021 GSC | NL80_1 +781315 |V1315 Tau |041953.7+300954 |RS | 11.3 |( 0.28 * )| |V | | | 10.2706 | | K0 |80021 GSC | NL80_1 +781316 |V1316 Tau |042127.3+012913 |M | 5.31 | 6.83 | |K | | | 226. : | | N |80166 GSC | NL80_1 +781317 |V1317 Tau |042347.6+294038 |BY | 11.5 |( 0.11 * )| |V | | | 1.3836 | | K2 |80021 GSC | NL80_1 +781318 |V1318 Tau |042521.1+254256 |IB | 14.2 |( 0.44 * )| |V | | | 7.6157 | | |80021 GSC | NL80_1 +781319 |V1319 Tau |043049.2+211411 |IB | 10.26 | 10.40 | |V | | | 0.7360 | | G8 |80154 DM | NL80_1 +781320 |V1320 Tau |043114.4+271018 |IB | 12.6 |( 0.26 * )| |V | | | 5.9087 | | M1 |80021 GSC | NL80_1 +781321 |V1321 Tau |043253.2+173534 |IB | 13.64 | 13.77 | |V | | | 0.857 : | | M2 |80154 GSC | NL80_1 +781322 |V1322 Tau *|043334.7+191649 |IB | 13.08 | 13.20 | |V | | | 1.41 : | | G6 |80154 GSC | NL80_1 +781323 |V1323 Tau |043342.0+182427 |IB | 12.04 | 12.12 | |V | | | 1.122 : | | G5 |80154 GSC | NL80_1 +781324 |V1324 Tau |043556.8+235205 |IB | 13.31 | 13.49 | |V | | | | | M1.5 |80154 GSC | NL80_1 +781325 |V1325 Tau |043813.1+202247 |IB | 12.12 | 12.28 | |V | | | 2.9600 | | K2 |80154 GSC | NL80_1 +781326 |V1326 Tau *|043827.6+154338 |IB | 13.22 | 13.50 | |V | | | 2.54 | | K3 |80154 GSC | NL80_1 +781327 |V1327 Tau |044009.9+114317 |RRC | 12.45 | 13.05 | |V |51536.73 | | 0.33120 |25 | |80026 GSC | NL80_1 +781328 |V1328 Tau |044124.0+271513 |IB | 13.05 | 13.15 | |V | | | | | G8 |80154 GSC | NL80_1 +781329 |V1329 Tau |044155.1+265849 |IB | 9.61 | 9.69 | |V | | | 0.6000 | | G2V |80154 HIP | NL80_1 +781330 |V1330 Tau |044218.6+011740 |RS | 11.7 | 12.1 | |V | | | 8.771 | | K2 |80002 GSC | NL80_1 +781331 |V1331 Tau |044326.0+154604 |IB | 12.81 | 12.97 | |V | | | 1.11 : | | G7 |80154 GSC | NL80_1 +781332 |V1332 Tau *|044341.3+225338 |EW: | 11.58 | 11.80 | 11.78 |* |53686.6648 | | 0.2718255 | | |80172 GSC | NL80_1 +781333 |V1333 Tau |044426.9+195217 |IB | 12.53 | 12.64 | |V | | | | | M1 |80154 GSC | NL80_1 +781334 |V1334 Tau |044454.5+271745 |IB | 9.48 | 9.55 | |V | | | | | K1 |80154 DM | NL80_1 +781335 |V1335 Tau |044653.3+225513 |IB | 12.80 | 12.97 | |V | | | 3.7620 | | M1 |80154 GSC | NL80_1 +781336 |V1336 Tau |044721.0+280853 |RS | 13.0 |( 0.27 * )| |V | | | 0.6232 | | |80021 GSC | NL80_1 +781337 |V1337 Tau *|044800.4+275620 |RS | 12.35 | 12.52 | |* | | | 1.27 | | K0 |80127 GSC | NL80_1 +781338 |V1338 Tau |044817.6+275518 |SRB | 11.5 | 12.3 | |V | | | 56.4 | | |80002 GSC | NL80_1 +781339 |V1339 Tau |044858.0+191456 |RS | 11.60 | 12.10 | |V | | | 16.055 | | K0 |80034 GSC | NL80_1 +781340 |V1340 Tau |044952.3+175639 |SXPHE | 16.3 |( 0.05 )| |B | | | 0.028 | | FV |80174 80174| NL80_1 +781341 |V1341 Tau |045000.2+222957 |IB | 11.15 | 11.31 | |V | | | 0.4778 | | K1 |80154 GSC | NL80_1 +781342 |V1342 Tau |045015.6+182346 |ELL: | 18.4 |( 0.4 * )| |V | | | | | |80133 USNO | NL80_1 +781343 |V1343 Tau |045154.3+175828 |IB | 13.89 | 14.08 | |V | | | | | M1.5 |80154 GSC | NL80_1 +781344 |V1344 Tau |045156.5+284926 |IB | 14.08 | 14.20 | |V | | | | | K2 |80154 GSC | NL80_1 +781345 |V1345 Tau *|045156.9+284943 |IB | 13.25 | 13.45 | |V | | | 0.921 | | K4 |80154 GSC | NL80_1 +781346 |V1346 Tau |045230.8+173026 |IB | 12.00 | 12.11 | |V | | | 0.8204 | | K4 |80154 GSC | NL80_1 +781347 |V1347 Tau *|045250.2+162209 |RS | 11.60 | 11.86 | |V | | | 3.6 | | K6 |80127 GSC | NL80_1 +781348 |V1348 Tau |045257.1+191950 |IB | 12.05 | 12.29 | |V | | | | | K5 |80154 GSC | NL80_1 +781349 |V1349 Tau |045509.6+182631 |IB | 9.16 | 9.27 | |V | | | | | G1 |80154 DM | NL80_1 +781350 |V1350 Tau *|045547.7+174202 |RS | 11.09 | 11.19 | |* | | | 8.1 | | K3 |80127 GSC | NL80_1 +781351 |V1351 Tau |045613.6+155422 |IB | 12.58 | 12.76 | |V | | | 5.6400 | | K7 |80154 GSC | NL80_1 +781352 |V1352 Tau *|045631.3+242648 |EA | 12.60 | 14.5 : | 13.1 : |V |51531.669 | | 6.9098 |11 | |80042 GSC | NL80_1 +781353 |V1353 Tau |045656.5+160025 |IB | 14.23 | 14.50 | |V | | | 0.884 | | M1 |80154 GSC | NL80_1 +781354 |V1354 Tau |045730.7+201429 |IB | 10.96 | 11.20 | |V | | | 1.46 | | K3 |80154 GSC | NL80_1 +781355 |V1355 Tau *|050206.8+242740 |EW | 13.6 | 14.3 | 14.2 |* |51512.94 | | 0.24467 : | | |80001 GSC | NL80_1 +781356 |V1356 Tau *|050444.2+221708 |EA | 10.86 | 11.48 | 11.37 |V |52645.558 | | 12.8075 |03 : | F8 |80042 DM | NL80_1 +781357 |V1357 Tau |050559.7+280717 |IB | 9.93 |( 0.06 * )| |V | | | 0.5239 | | G0 |80021 HIP | NL80_1 +781358 |V1358 Tau |051239.4+192835 |BY | 12.9 | 13.2 | |* | | | 1.93115 | | |80060 80060| NL80_1 +781359 |V1359 Tau |051319.2+180825 |SR | 12.1 | 12.7 | |* | | | 88. | | |80001 GSC | NL80_1 +781360 |V1360 Tau |052037.1+244714 |RS | 11.82 |( 0.10 * )| |V | | | 0.6931 | | |80021 GSC | NL80_1 +781361 |V1361 Tau |052146.8+240045 |IB | 10.85 |( 0.10 * )| |V | | | 3.4547 | | G7IV |80021 GSC | NL80_1 +781362 |V1362 Tau |052210.3+243209 |RS | 10.94 |( 0.06 * )| |V | | | 2.5206 | | G0 |80021 DM | NL80_1 +781363 |V1363 Tau |052247.2+243731 |RS | 11.95 |( 0.07 * )| |V | | | 1.3385 | | |80021 GSC | NL80_1 +781364 |V1364 Tau *|052354.6+253048 |IB | 12.32 |( 0.10 * )| |V | | | 7.7241 | | G4V |80021 GSC | NL80_1 +781365 |V1365 Tau |052705.9+213526 |IB | 11.26 |( 0.09 * )| |V | | | 0.5477 | | G7IV |80021 GSC | NL80_1 +781366 |V1366 Tau |052942.5+233411 |RS | 13.05 |( 0.27 * )| |V | | | 1.6347 | | K4V |80021 GSC | NL80_1 +781367 |V1367 Tau *|053019.1+235127 |EW | 10.81 | 11.20 | 11.15 |V |52700.5490 | | 0.347678 | | |80002 DM | NL80_1 +781368 |V1368 Tau |053104.4+231235 |IB | 9.23 | 9.38 | |Hp| | | 0.9426 | | G0 |80021 HIP | NL80_1 +781369 |V1369 Tau *|053224.0+214111 |EA | 12.35 | 12.75 | 12.43 |V |51536.885 | | 1.35567 |08 | |80015 GSC | NL80_1 +781370 |V1370 Tau *|053248.8+190204 |EW | 10.9 | 11.31 | 11.28 |V |53653.817 | | 0.295523 | | |80002 GSC | NL80_1 +781371 |V1371 Tau |053439.1+280304 |BE | 8.00 | 8.20 | |V | | | 312. | | B8e |80002 HIP | NL80_1 +781372 |V1372 Tau |053858.1+244257 |BY | 12.43 |( 0.13 * )| |V | | | 4.3542 | | |80021 GSC | NL80_1 +781373 |V1373 Tau |054540.9+154349 |SRB | 11.7 | 12.6 | |V | | | 80.6 | | |80002 GSC | NL80_1 +781374 |V1374 Tau *|054803.9+283047 |EB/RS | 13.6 | 14.5 | 13.9 |V |53348.7473 | | 0.2508621 | | M3Ve |80201 80201| NL80_1 +789001 |alf Tau *|043555.2+163034 |LB: | 0.75 | 0.95 | |V | | | | |K5III |03000 BD | +789006 |zet Tau *|053738.7+210833 |E/GS+GCAS | 2.88 | 3.17 | 3.05 |V |44936.781 | | 132.9735 | |B1IVe+G8III: |10086 BD | +7890082|tet 2 Tau *|042839.7+155215 |DSCTC+E: | 3.35 | 3.42 | |V | | | 0.07564 |50 |A7III |10088 BD | +789011 |lam Tau *|040040.8+122925 |EA/DM | 3.37 | 3.91 | 3.54 |V |21506.8506 | | 3.9529478 |15 *|B3V+A4IV |08608 08953| +789014 |ksi Tau |032710.2+094358 |E: | 3.70 | 3.79 | |Hp| | | | | |HIP HIP | +789017 |rho Tau *|043350.9+145040 |DSCTC | 4.90 |( 0.01 )| |B | | | 0.067 | |A8Vn |08569 BD | +789020 |ups Tau *|042618.5+224849 |DSCTC | 4.28 | 4.31 | |V | | | 0.1484 |50 |A8Vn |10091 BD | +790001 |R Tel |201445.1-465855 |M | 7.6 | 14.8 | |V |52979. | | 467. |43 |M5IIe-M7e |00001 00002| +790002 |S Tel *|200616.2-553421 |CST: | 13.1 | | |V | | | | | |01000 00002| +790003 |T Tel |182646.1-493934 |M | 11.3 | 18. | |p |52762. | | 254. | |M4e |N0002 USNO | +790004 |U Tel *|190802.3-485412 |M | 9.1 | 14.4 | |V |52576. | | 449. |30 |M7e |N0002 2MASS| +790005 |V Tel |191814.6-502648 |SRB | 9.1 | 10.2 | |V | | | 373. | |M6/8e |00001 CoD | +790006 |W Tel |195034.6-500034 |M | 9.4 | 14.0 | |V |52750. | | 310. |40 |M5e-M8(III:)e |N0002 GSC | +790007 |X Tel |201847.2-523704 |M | 10.4 |< 14.0 | |V |52973. | | 309. | |M5e-M8e |N0002 CoD | +790008 |Y Tel |202014.3-504212 |SRB | 8.6 | 9.8 | |V | | | 258. | |M7III |00001 CoD | +790009 |Z Tel |193933.8-453433 |M | 9.2 |< 14.6 | |V |52586. | | 233. | |M4e |N0002 N0003| +790010 |RR Tel *|200418.5-554333 |NC | 6.5 | 16.5 | |p | |1944 | | |pec |N0031 72118| +790011 |RS Tel *|181851.2-463253 |RCB | 9.0 | 15.34 | |V | | | | |C(R4) |00017 CoD | +790012 |RT Tel |184359.4-471453 |LB | 9.3 | 9.8 | |V | | | | |M4/6 |00001 CoD | +790013 |RU Tel |190807.0-481552 |M | 9.5 | 15.0 | |V |53866. | | 273.3 | |M2e-M4e |00001 CoD | +790014 |RV Tel *|184337.4-513750 |EA | 10.3 | 12.0 | |p |51953.664 | | 8.328119 |10 |A2/3III/IV |00001 03743| +790015 |RW Tel |184322.2-454653 |SRB | 9.4 | 11.8 | |p | | | 127.35 | |M4-6II-IIIe |00624 CoD | +790016 |RX Tel |190658.2-455814 |LC | 6.6 | 7.4 | |V | | | | |M3Iab |10201 CoD | +790017 |RY Tel |182706.6-505033 |M | 11. |< 15. | |p |52635. | | 241. | |M3e |N0002 2MASS| +790018 |RZ Tel |182613.5-560219 |M | 10.5 | 14.2 | |V |52249. | | 178.6 |50 | |N0002 06286| +790019 |SS Tel *|183216.7-563702 |M | 9.1 | 13.3 | |V |52566. | | 416.5 |45 | |00001 06286| +790020 |ST Tel *|184701.6-543421 |RRAB | 13.4 | 14.8 : | |V |52145.534 | | 0.572212 |20 | |00001 | +790021 |SU Tel *|191312.9-544951 | | 14.2 | 16. | |p | | | | | |00029 UCAC2| +790022 |SV Tel |185617.9-492810 |M | 8.5 |< 14. | |V |52421. | | 226. | |M4e-M6e |N0002 N0003| +790023 |SW Tel |192739.6-455231 |M | 10.4 | 14.3 | |V |48719. | | 228.2 | |M4e |00001 CoD | +790024 |SX Tel |185216.8-503129 |LB: | 14.8 |< 16.5 | |p | | | | | |00629 2MASS| +790025 |SY Tel |181143.0-522735 |RR | 13.9 | 16.0 | |p | | | | | |00629 06286| +790026 |SZ Tel |181705.4-533350 |RR | 13.6 | 15.8 | |p | | | | | |00629 UCAC2| +790027 |TT Tel |182011.1-523345 |RR | 14.4 | 15.9 | |p | | | | | |00629 06286| +790028 |TU Tel |182030.3-523829 |M | 12.0 | 16.0 | |p |23624. | | 238.4 | | |00630 06286| +790029 |TV Tel |182047.0-523301 |RR | 13.7 | 15.1 | |p | | | | | |00629 UCAC2| +790030 |TW Tel |182054.0-523357 |RR | 14.7 | 16.0 | |p | | | | | |00629 USNO | +790031 |TX Tel |182103.6-522935 |M | 13.0 | 16.0 | |p |52383. | | 193.9 | | |N0002 2MASS| +790032 |TY Tel *|182154.9-524827 |M | 10.5 | 16.0 | |p |52205. | | 397. | | |00001 2MASS| +790033 |TZ Tel |181030.2-545946 |SRA | 11.9 | 13.3 | |V |52172. | | 202. | | |10201 06286| +790034 |UU Tel |181210.7-531000 |LB | 14.5 | 15.2 | |p | | | | | |00629 06286| +790035 |UV Tel |181510.2-532435 |LB | 14.2 | 15.3 | |p | | | | | |00629 2MASS| +790036 |UW Tel |181629.1-530651 |RR | 14.8 | 15.3 | |p | | | 0.2882 : | | |00629 06286| +790037 |UX Tel |181634.8-513415 |SRA | 13.0 | 14.7 | |V |52432. | | 201. | | |10201 2MASS| +790038 |UY Tel *|181807.5-551311 |SRB | 13.3 | 14.7 | |V | | | 133. | | |00001 06286| +790039 |UZ Tel |181740.1-501119 |SRA | 12.5 | 14.2 | |V |52082. | | 190. | | |10201 06286| +790040 |VV Tel |181847.1-561357 |SRA | 10.7 | 12.5 | |V |52253. | | 140.9 |50 | |N0002 06286| +790041 |VW Tel |181905.1-565447 |SRA | 12.4 | 14.6 | |V |52759. | | 73.9 | | |N0002 06286| +790042 |VX Tel |181841.7-523511 |SRA | 12.7 | 14.0 | |V |52898. | | 117.8 | | |N0002 06286| +790043 |VY Tel |181916.4-541547 |SRB: | 13.3 | 13.9 | |p | | | 118. : | | |00629 06286| +790044 |VZ Tel |181916.0-520630 |SRB | 9.9 | 11.9 | |V | | | 82.4 | |Me |N0002 06286| +790045 |WW Tel |182356.8-545946 |UG: | 14.6 | 18.5 | |p | | |( 15. :) | | |05386 78043| +790046 |WX Tel |182351.0-503917 |SR: | 14.8 |< 15.9 | |p | | | 300. : | | |00629 GSC | +790047 |WY Tel |182431.6-551605 |SR | 13.4 | 15.8 | |p | | | 275. : | | |00629 06286| +790048 |WZ Tel |182539.1-544538 |M | 14.4 |< 17.4 | |p |52032. | | 394. | | |00001 06286| +790049 |XX Tel |182910.1-564200 |SRB | 12.2 | 12.9 | |V | | | 46. : | | |10201 06286| +790050 |XY Tel |182839.3-560824 |M | 14.4 |< 17.6 | |p | | | 550. : | | |00629 06286| +790051 |XZ Tel |182853.2-514849 |UG: | 15.2 | 19. : | |p | | | | | |00001 GSC22| +790052 |YY Tel *|183356.4-535850 |UG: | 14.4 |< 17.4 | |p | | | | | |00629 72085| +790053 |YZ Tel |183613.3-503814 |SR | 12.1 | 13.0 | |V | | | 73. : | | |10201 2MASS| +790054 |ZZ Tel |183521.9-492932 |SR | 12.8 | 14.9 | |V |52208. | | 150. | | |00629 06286| +790055 |AA Tel |183735.1-524743 |SRB | 12.5 | 12.9 | |V | | | 105. | | |00001 06286| +790056 |AB Tel *|183735.3-505736 |EW | 12.3 | 13.0 | 12.9 |V |51956.446 | | 0.326000 | | |N0002 06286| +790057 |AC Tel |183916.8-563944 |SRA | 11.9 | 13.8 | |V |52954. | | 252. | | |10201 06286| +790058 |AD Tel |183930.2-513009 |LB | 12.5 | 13.5 | |V | | | | | |00629 06286| +790059 |AE Tel |183942.7-531336 |SRB | 11.9 | 13.0 | |V | | | 76. : | | |10201 06286| +790060 |AF Tel |184039.2-560601 |SRB | 11.6 | 12.6 | |V | | | 96. : | | |10201 06286| +790061 |AG Tel *|184112.8-515750 |SRA | 11.4 | 12.7 | |V |52453. | | 115. | |Me |10201 2MASS| +790062 |AH Tel |184200.5-502138 |SRB | 12.3 | 13.8 | |V | | | 143. | | |N0002 06286| +790063 |AI Tel |184201.9-500630 |SRA | 11.9 | 12.4 | |V |52713. | | 55. | | |10201 06286| +790064 |AK Tel |184348.8-550023 |SRA | 13.4 | 15.1 | |V |52919. | | 150. | | |10201 06286| +790065 |AL Tel |184434.8-532815 |SRA | 11.8 | 13.5 | |V |52868. | | 63.4 | | |10201 06286| +790066 |AM Tel |184620.3-525637 |M | 13.4 |< 15.8 | |p |52911. | | 300. : | |Me |00629 06286| +790067 |AN Tel *|184639.0-552113 |SRB | 10.5 | 11.0 | |V | | | 235. | | |10201 06286| +790068 |AO Tel |184630.5-504204 |SRB | 10.7 | 12.0 | |V | | | 121. : | | |10201 02383| +790069 |AP Tel |184748.0-553305 |M | 10.7 |< 14.5 | |V |52930. | | 156. | |Me |10201 06286| +790070 |AQ Tel |184917.2-513606 |RRC | 13.2 | 13.7 | |V |52122.637 | | 0.32078 | | |10201 06286| +790071 |AR Tel |184922.0-500531 |LB | 12.6 | 13.2 | |V | | | | | |00629 06286| +790072 |AS Tel |184931.3-491517 |M | 11.3 |< 14.6 | |V |52032. | | 183. | | |10201 06286| +790073 |AT Tel |185002.6-513805 |CWB | 13.7 | 14.6 | |V |53067.89 | | 1.97 : | | |10201 06286| +790074 |AU Tel |185003.7-495601 |SRA | 11.4 | 13.1 | |V |52787. | | 159. | |Me |10201 06286| +790075 |AV Tel *|185024.0-505135 |EW | 13.2 | 14.3 | 14.1 |V |52415.861 | | 0.416963 | | |10201 06286| +790076 |AW Tel *|185105.2-521139 |EA | 12.2 | 13.4 | 12.3 |V |51956.874 | | 1.188490 |13 | |N0002 06286| +790077 |AX Tel *|185249.1-564032 |CWA | 12.2 | 13.2 | |V |51976.0 | | 9.90808 |45 | |N0002 06286| +790078 |AY Tel |181526.1-542953 |M | 11.3 |< 14.5 | |V |52839. | | 221. | |Me |10201 06286| +790079 |AZ Tel |181552.4-562904 |M | 12.6 |< 14.5 | |V |53086. | | 536. | | |N0002 2MASS| +790080 |BB Tel *|181900.6-491746 | | 14.8 | 16.1 | |p | | | | | |00629 UCAC2| +790081 |BC Tel |182404.9-502708 |M | 10.9 |< 13.9 | |V |52756. | | 176. | | |10201 02386| +790082 |BD Tel |182537.3-510033 |M | 11.8 |< 14.8 | |V |52581. | | 218.2 | | |N0002 06286| +790083 |BE Tel |182719.9-500549 |M | 11.5 |< 14.3 | |V |52089. | | 173. | |Me |10201 06286| +790084 |BF Tel |182729.3-520316 |M | 13.2 | 16.2 | |p |52134. | | 265. | |Me |00001 06286| +790085 |BG Tel |182757.4-533507 |M | 11.2 |< 14.1 | |V |52171. | | 245. | |Me |10201 2MASS| +790086 |BH Tel |184931.7-495430 |M | 10.0 |< 14.3 | |V |52912. | | 217. | |M0e-M2(Ib)pe |10201 04256| +790087 |BI Tel *|181817.6-532220 |CWB | 11.8 | 13.1 | |V |51951.940 | | 1.166490 |20 | |N0002 06286| +790088 |BK Tel |184740.5-460817 |M | 10.4 | 13.0 | |V |52509. | | 153. |56 | |10201 02339| +790089 |BL Tel *|190638.1-512503 |EA+SRD | 7.09 | 9.41 |( 0.1 )|V |45589. | | 778.3 |10 *|F5Iab/b+M |N0032 CoD | +790090 |BM Tel |190741.0-500242 |M | 11.4 |< 14.5 | |V |53088. | | 391. | |Me |10201 2MASS| +790091 |BN Tel |190949.9-480923 |M | 10.3 | 14.1 | |V |52878. | | 282. | |Me |10201 CoD | +790092 |BO Tel *|191552.0-545119 |CWA | 12.01 | 13.4 | |V |52102.6 | | 14.81659 |42 |F5e |00001 02339| +790093 |BP Tel |200949.7-554801 |M | 11.0 |< 15.0 | |V |52570. | | 237. | | |N0002 2MASS| +790094 |BQ Tel |202102.5-561102 |M | 9.6 |< 14.8 | |V |52465. | | 287.7 | |M5e |N0002 GSC | +790095 |BR Tel |202359.9-525212 |SRD | 9.6 | 10.9 | |V | | | 107. : | |G5 |10201 CPD | +790096 |BS Tel |181107.5-562951 |EW | 14.2 | 15.5 | |p | | | | | |00629 06286| +790097 |BT Tel |181135.3-553511 |RR | 14.7 | 15.9 | |p | | | | | |00629 06286| +790098 |BU Tel |181122.7-503929 |RR | 14.2 | 15.2 | |p | | | | | |00629 06286| +790099 |BV Tel |181117.0-503205 |RR | 14.7 | 15.8 | |p | | | | | |00629 06286| +790100 |BW Tel |181137.3-524730 |RR | 14.0 | 16.1 | |p | | | | | |00629 UCAC2| +790101 |BX Tel |181131.3-511239 |RR | 14.8 | 16.2 | |p | | | | | |00629 06286| +790102 |BY Tel |181143.4-504235 |RR | 14.9 | 15.9 | |p | | | | | |00629 06286| +790103 |BZ Tel |181147.0-495304 |RR | 14.4 | 16.3 | |p | | | | | |00629 USNO | +790104 |CC Tel |181206.4-492828 |M | 11.8 |< 15.0 | |V |53081. | | 425. : | | |00001 2MASS| +790105 |CD Tel |181254.1-544428 |RR | 15.5 | 16.8 | |p | | | | | |00629 06286| +790106 |CE Tel |181345.6-562220 |RR | 14.4 | 15.6 | |p | | | | | |00629 06286| +790107 |CF Tel |181335.1-554556 |RR | 13.9 | 15.9 | |p | | | | | |00629 USNO | +790108 |CG Tel |181342.7-524355 |RR | 14.8 | 15.9 | |p | | | | | |00629 06286| +790109 |CH Tel |181349.0-510917 |RR | 14.6 | 15.7 | |p | | | | | |00629 06286| +790110 |CI Tel |181529.7-543622 |RR | 14.6 | 15.7 | |p | | | | | |00629 06286| +790111 |CK Tel *|181543.5-562335 |RR | 14.8 | 17.0 | |p | | | | | |00629 06286| +790112 |CL Tel |181535.0-533236 |RR | 14.8 | 16.0 | |p | | | | | |00629 06286| +790113 |CM Tel |181542.9-522003 |RR | 15.0 | 16.0 | |p | | | | | |00629 06286| +790114 |CN Tel |181608.1-493157 |RR | 14.8 | 16.2 | |p | | | | | |00629 06286| +790115 |CO Tel |181618.9-502958 |RR | 14.9 | 16.0 | |p | | | | | |00629 06286| +790116 |CP Tel |181657.4-545458 |RRAB | 13.4 | 14.1 | |V |52535.518 | | 0.47651 |34 | |10201 06286| +790117 |CQ Tel |181641.0-524253 |RR | 14.9 | 15.9 | |p | | | | | |00629 06286| +790118 |CR Tel |181730.3-553228 |RR | 14.7 | 15.7 | |p | | | | | |00629 UCAC2| +790119 |CS Tel |181718.8-533814 |RR | 15.2 | 16.9 | |p | | | | | |00629 06286| +790120 |CT Tel |181736.2-531825 |SRB | 12.6 | 13.7 | |V | | | 91. : | | |10201 06286| +790121 |CU Tel |181731.1-494438 |SRB | 12.0 | 12.5 | |V | | | 255. | | |00001 06286| +790122 |CV Tel |181824.3-535023 |RR | 15.7 | 16.7 | |p | | | | | |00629 06286| +790123 |CW Tel |181821.0-502933 |RR | 14.1 | 15.4 | |p | | | | | |00629 06286| +790124 |CX Tel |181908.8-552352 |RR | 14.8 | 16.3 | |p | | | | | |00629 06286| +790125 |CY Tel |181938.2-512952 |RRAB | 13.0 | 13.9 | |V |52725.785 | | 0.43280 |24 | |10201 UCAC2| +790126 |CZ Tel |182010.1-544200 |RR | 13.9 | 15.2 | |p | | | | | |00629 06286| +790127 |DD Tel |181937.1-500309 |RR | 14.8 | 15.8 | |p | | | | | |00629 06286| +790128 |DE Tel |182131.9-533200 |EW | 14.8 | 15.8 | |p | | | | | |00629 06286| +790129 |DF Tel |182113.8-493348 |RR | 14.6 | 15.8 | |p | | | | | |00629 UCAC2| +790130 |DG Tel |182209.8-563420 |RR | 15.2 | 16.2 | |p | | | | | |00629 USNO | +790131 |DH Tel |182204.4-541429 |RR | 14.4 | 15.5 | |p | | | | | |00629 06286| +790132 |DI Tel |182258.0-515641 |RR | 14.5 | 15.6 | |p | | | | | |00629 UCAC2| +790133 |DK Tel |182255.2-505937 |RR | 14.1 | 15.8 | |p | | | | | |00629 06286| +790134 |DL Tel |182337.1-543029 |RR | 14.7 | 15.7 | |p | | | | | |00629 06286| +790135 |DM Tel |182348.4-543326 |RR | 14.7 | 15.8 | |p | | | | | |00629 06286| +790136 |DN Tel |182337.1-520629 |RR | 14.7 | 15.8 | |p | | | | | |00629 06286| +790137 |DO Tel |182347.4-523010 |RR | 14.6 | 15.7 | |p | | | | | |00629 06286| +790138 |DP Tel |182430.9-522309 |RR | 14.2 | 15.2 | |p | | | | | |00629 06286| +790139 |DQ Tel |182523.5-534801 |RR | 14.7 | 15.7 | |p | | | | | |00629 06286| +790140 |DR Tel |182519.3-525129 |RR | 14.8 | 16.5 | |p | | | | | |00629 06286| +790141 |DS Tel |182534.3-522441 |RR | 14.7 | 15.9 | |p | | | | | |00629 USNO | +790142 |DT Tel |182602.3-505716 |RR | 14.1 | 16.0 | |p | | | | | |00629 UCAC2| +790143 |DU Tel |182638.4-540534 |RR | 14.4 | 16.2 | |p | | | | | |00629 06286| +790144 |DV Tel |182713.9-550846 |RR | 14.7 | 16.3 | |p | | | | | |00629 06286| +790145 |DW Tel |182656.3-511408 |RR | 14.5 | 15.8 | |p | | | | | |00629 06286| +790146 |DX Tel |182730.6-543157 |RR | 15.8 | 17.0 | |p | | | | | |00629 06286| +790147 |DY Tel |182728.6-532051 |RR | 15.0 | 16.8 | |p | | | | | |00629 06286| +790148 |DZ Tel *|182737.7-493949 |RR | 14.9 | 16.2 | |p | | | | | |00629 UCAC2| +790149 |EE Tel |182858.5-561357 |RRAB | 13.1 | 14.4 | |V |52831.746 | | 0.46794 |20 | |10201 04001| +790150 |EF Tel |182827.3-503808 |RR | 14.5 | 15.9 | |p | | | | | |00629 06286| +790151 |EG Tel |182847.3-543612 |RR | 15.2 | 16.2 | |p | | | | | |00629 06286| +790152 |EH Tel *|182859.8-530955 |RR | 14.7 | 15.8 | |p | | | | | |00629 06286| +790153 |EI Tel |182937.2-533543 |RR | 14.8 | 15.9 | |p | | | | | |00629 06286| +790154 |EK Tel |182913.8-502108 |RR | 13.0 | 14.7 | |p | | | | | |00629 06286| +790155 |EL Tel |182949.3-523714 |RR | 14.1 | 15.4 | |p | | | | | |00629 06286| +790156 |EM Tel |182957.8-531826 |RR | 14.5 | 15.5 | |p | | | | | |00629 06286| +790157 |EN Tel |183051.5-560413 |RR | 14.9 | 16.2 | |p | | | | | |00629 06286| +790158 |EO Tel |183023.9-505128 |RR | 14.7 | 15.8 | |p | | | | | |00629 06286| +790159 |EP Tel |183155.1-564400 |EW | 14.8 | 16.0 | |p | | | | | |00629 06286| +790160 |EQ Tel |183140.7-542906 |RR | 15.0 | 16.0 | |p | | | | | |00629 06286| +790161 |ER Tel |183131.4-502958 |RR | 14.7 | 15.8 | |p | | | | | |00629 06286| +790162 |ES Tel |183342.6-562918 |RR | 14.8 | 15.9 | |p | | | | | |00629 06286| +790163 |ET Tel |183321.8-524103 |RR | 14.1 | 15.2 | |p | | | | | |00629 06286| +790164 |EU Tel *|183330.0-495420 |RRAB | 13.1 | 14.6 | |V |53127.789 | | 0.4689992 |20 | |00001 | +790165 |EV Tel |183355.3-512111 |RRAB | 12.3 | 13.8 | |V |52838.805 | | 0.44194 |10 | |10201 06286| +790166 |EW Tel |183424.5-544913 |RR | 14.3 | 15.3 | |p | | | | | |00629 06286| +790167 |EX Tel |183426.9-514855 |RR | 15.1 | 16.3 | |p | | | | | |00629 06286| +790168 |EY Tel |183501.4-525040 |RR | 14.4 | 15.7 | |p | | | | | |00629 06286| +790169 |EZ Tel |183517.4-542139 |RR | 14.0 | 15.1 | |p | | | | | |00629 06286| +790170 |FF Tel |183520.0-524520 |E: | 13.4 | 14.6 | |V |52922.570 | | 0.3896 | | |00001 UCAC2| +790171 |FG Tel |183603.5-502027 |M | 12.2 |< 15.3 | |V |52191. | | 177. | | |10201 06286| +790172 |FH Tel |183620.1-531542 |RR: | 16.2 | 17.2 | |p | | | | | |00629 UCAC2| +790173 |FI Tel |183621.0-495459 |RR | 13.4 | 14.6 | |p | | | | | |00629 06286| +790174 |FK Tel |183633.6-513809 |RR | 14.6 | 15.8 | |p | | | | | |00629 06286| +790175 |FL Tel *|183653.7-492438 |EB | 14.0 | 14.8 | 14.5 |V |52875.697 | | 0.51178 | | |10201 06286| +790176 |FM Tel |183742.5-560156 |RR | 14.9 | 15.9 | |p | | | | | |00629 06286| +790177 |FN Tel |183836.3-541441 |RR | 15.5 | 16.8 | |p | | | | | |00629 06286| +790178 |FO Tel |184028.4-551437 |RR | 14.6 | 15.7 | |p | | | | | |00629 06286| +790179 |FP Tel |184038.4-524524 |RRAB | 13.1 | 14.1 | |V |52865.751 | | 0.40081 |15 | |10201 06286| +790180 |FQ Tel |184157.3-541507 |RR | 14.8 | 15.8 | |p | | | | | |00629 06286| +790181 |FR Tel |184149.6-515126 |SRA | 12.0 | 13.8 | |V |52500. | | 174. | |Me |10201 N0034| +790182 |FS Tel |184142.8-503429 |RR | 14.6 | 15.8 | |p | | | | | |00629 06286| +790183 |FT Tel |184241.5-525052 |RRAB | 13.1 | 13.8 | |V |52415.840 | | 0.64809 |16 | |10201 06286| +790184 |FU Tel |184323.7-545850 |RRAB | 12.5 | 13.8 | |V |52104.647 | | 0.35969 |11 | |10201 06286| +790185 |FV Tel |184321.1-535440 |RR | 14.8 | 15.8 | |p | | | | | |00629 06286| +790186 |FW Tel |184312.9-503658 |RR | 14.7 | 15.8 | |p | | | | | |00629 UCAC2| +790187 |FX Tel *|184415.2-500924 |RR | 14.4 | 15.5 | |p | | | | | |00629 06286| +790188 |FY Tel |184523.8-531923 |RRAB | 13.1 | 14.0 | |V |52751.756 | | 0.67969 |30 | |00001 06286| +790189 |FZ Tel |184505.5-501204 |RR | 14.8 | 16.0 | |p | | | | | |00629 06286| +790190 |GG Tel |184530.2-523255 |RR | 14.8 | 15.8 | |p | | | | | |00629 06286| +790191 |GH Tel |184537.8-535038 |E | 14.1 | 15.2 | |p | | | 20.684 : | | |00629 06286| +790192 |GI Tel |184826.5-564213 |RR | 13.9 | 15.0 | |p | | | | | |00629 06286| +790193 |GK Tel |184821.6-493504 |RRAB | 13.5 | 14.0 | |V |52428.715 | | 0.81346 |18 | |10201 06286| +790194 |GL Tel |184835.5-514738 |RR | 14.9 | 16.1 | |p | | | | | |00629 06286| +790195 |GM Tel *|184912.0-534521 |RR | 14.6 | 15.8 | |p | | | | | |00629 06286| +790196 |GN Tel |185112.1-523213 |RR | 13.7 | 15.2 | |p | | | | | |00629 06286| +790197 |GO Tel |185138.7-514646 |RR | 14.2 | 15.2 | |p | | | | | |00629 06286| +790198 |GP Tel |185219.9-540727 |RR | 14.8 | 16.1 | |p | | | | | |00629 06286| +790199 |GQ Tel |185239.5-561803 |RRAB | 14.0 | 14.8 | |V |52909.648 | | 0.65107 : |30 : | |00001 UCAC2| +790200 |GR Tel |185222.3-530950 |RRAB | 12.4 | 13.4 | |V |52888.623 | | 0.61196 |25 | |10201 UCAC2| +790201 |GS Tel |183133.6-475242 |M | 12.1 |< 15.2 | |V |51985. | | 329. | | |10201 02383| +790202 |GT Tel |183457.9-523510 |RRAB | 12.9 | 14.3 | |V |52081.660 | | 0.40751 |06 | |10201 02383| +790203 |GU Tel |183529.3-494630 |M: | 12.5 |< 13.8 | |V |52178. | | 166. : | | |10201 06286| +790204 |GV Tel |190220.1-473144 |M | 11.4 |< 15.4 | |V |52690. | | 261. | |Me |10201 02383| +790205 |GW Tel |193012.8-451733 |M | 11.3 |< 14.6 | |V |52193. | | 146. | | |10201 02383| +790206 |GX Tel |201148.3-552527 |M | 11.5 |< 15.0 | |V |53042. | | 345. | |M8e |73014 02386| +790207 |GY Tel *|185540.0-480531 |EB | 11.43 | 12.53 | 11.83 |V |46973.7640 | | 0.4460348 | | |N0035 02383| +790208 |GZ Tel |193646.1-504740 |RRAB | 11.7 | 13.0 | |V |52122.650 | | 0.455353 |15 | |N0002 02383| +790209 |HH Tel *|193320.3-453949 |RRAB | 11.6 | 12.7 | |V |53232.676 | | 0.482092 |17 | |N0002 02383| +790210 |HI Tel |185522.6-524504 |RVA | 10.6 | 11.9 | |V |52955.5 | | 66.5 | | |10201 06561| +790211 |HK Tel |190650.0-522943 |SRB | 10.6 | 13.0 | |V | | | 97. | | |N0002 06561| +790212 |HL Tel |193105.6-502347 |M | 10.9 |< 14.3 | |V |52718. | | 209. | |M0e |10201 06561| +790213 |HM Tel *|193410.5-491046 |EA | 12.0 | 13.8 | 12.3 |V |52192.545 | | 6.2318 | | |10201 06561| +790214 |HN Tel |193704.1-525819 |RRAB | 11.55 | 12.7 | |V |52950.563 | | 0.600370 |15 | |N0002 02383| +790215 |HO Tel *|195158.9-465142 |EA | 8.22 | 8.73 | 8.67 |V |52202.506 | | 1.613101 |12 |A7III(m) |00001 CoD | +790216 |HP Tel |195416.3-532052 |RRAB | 14.05 | 14.70 | |V |49530.1691 | | 0.54955 |11 | |N0006 04001| +790217 |HQ Tel |195512.2-562833 |M | 12.8 |< 14.7 | |V |52708. | | 286. | | |10201 04001| +790218 |HR Tel *|195514.7-550430 |RRC: | 14.3 | 14.8 | |p |36788.417 | | 0.2811 | | |06920 04001| +790219 |HS Tel |195735.1-555707 |RRAB | 13.5 | 14.2 | |V |53153.848 | | 0.713230 |30 : | |N0002 04001| +790220 |HT Tel |200017.2-451853 |RRAB | 12.9 | 14.1 | |V |52867.778 | | 0.61658 |12 | |10201 04001| +790221 |HU Tel |200607.3-545405 |RRAB | 15.50 | 16.48 | |V |49530.3884 | | 0.57412 |20 | |N0006 04001| +790222 |HV Tel |200609.6-523452 |RR | 14.0 | 15.2 | |p | | | | | |06920 04001| +790223 |HW Tel |200804.5-562238 |RRAB | 15.0 |< 16.0 | |p |36788.245 | | | | |06920 04001| +790224 |HX Tel |200726.8-451919 |RR | 14. | 15. | |p | | | | | |04001 04001| +790225 |HY Tel *|200813.4-551402 |RRAB | 11.95 | 13.2 | |V |52855.713 | | 0.402725 |11 | |N0002 04001| +790226 |HZ Tel |200933.6-552900 |RRAB | 13.4 | 14.6 | |V |53177.687 | | 0.45904 |20 | |00001 04001| +790227 |II Tel |201028.8-531029 |RRAB | 14.0 | 15.5 | |p |36785.297 | | 0.59735 |10 | |06920 04001| +790228 |IK Tel |201213.5-522226 |RR: | 15.5 |< 16.0 | |p | | | | | |06920 04001| +790229 |IL Tel |201425.2-525541 |RRAB: | 12.9 | 13.6 | |V |52717.904 | | 0.575420 |25 : | |N0002 04001| +790230 |IM Tel |201745.6-551543 |RRAB | 14.62 | 16.25 | |V |49530.2162 | | 0.62414 |10 | |N0006 04001| +790231 |IN Tel |201822.1-531041 |RRAB | 14.0 | 15.5 | |p |36787.418 | | 0.611 |15 | |06920 04001| +790232 |IO Tel |201846.4-560335 |RRC | 15.3 | 15.9 | |p |36785.290 | | 0.38656 |20 | |06920 04001| +790233 |IP Tel |201855.8-535331 |RRC | 14.0 | 14.5 | |p |36786.475 | | 0.2755 | | |06920 04001| +790234 |IQ Tel *|201922.0-554845 |EB | 12.1 | 13.1 | 12.4 |V |51873.828 | | 0.736550 | | |N0002 04001| +790235 |IR Tel |202042.6-523917 |RRAB | 15.0 |< 16.0 | |p |36784.459 | | 0.51905 |10 | |06920 04001| +790236 |IS Tel *|202142.7-494855 |EA | 9.67 | 10.40 | 9.82 |V |52985.526 | | 1.152800 |17 |F5V |00001 06561| +790237 |IT Tel |202240.4-552745 |RRAB | 13.5 | 14.6 | |V |53819.907 | | 0.68769 |20 | |00001 04001| +790238 |IU Tel |202311.9-561749 |EA | 15.0 |< 16.0 | |p |36834.294 | | | | |06920 04001| +790239 |IV Tel |202433.7-553803 |RRAB | 14.5 | 15.5 | |p |36708.645 | | 0.57743 |15 | |06920 04001| +790240 |IW Tel |202514.1-561636 |RRAB | 14.0 | 15.5 | |p |36785.417 | | 0.4727 |08 | |06920 04001| +790241 |IX Tel |202550.6-524151 |RRAB | 12.9 | 14.2 | |V |52866.668 | | 0.615530 |15 | |N0002 04001| +790242 |IY Tel |202756.1-540847 |RRAB | 13.4 | 14.3 | |V |52548.646 | | 0.55592 |25 : | |00001 04001| +790243 |IZ Tel *|202843.6-562043 |EA | 12.0 | 14.2 | 12.2 |V |51877.040 | | 4.880179 |10 *| |N0002 04001| +790244 |KK Tel *|202838.5-521845 |UGSU | 13.5 | 19.6 | |V | | | | |pec(UG) |N0026 72085| +790245 |KL Tel |202858.8-521555 |EA | 13.4 | 14.4 | |V |52884.771 | | 1.6306 |15 *| |00001 04001| +790246 |KM Tel |180943.1-494101 |RR | 15. | 16. | |p | | | | | |03776 03776| +790247 |KN Tel *|181014.7-540216 |RR | 15. | 16. | |p | | | | | |03776 03776| +790248 |KO Tel |180957.5-470459 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +790249 |KP Tel |181019.7-512037 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +790250 |KQ Tel |181052.8-485836 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +790251 |KR Tel |181138.8-530032 |RR | 15. | 16. | |p | | | | | |03776 03776| +790252 |KS Tel |181232.7-523214 |RR | 15. | 16. | |p | | | | | |03776 03776| +790253 |KT Tel |181246.5-461817 |RR | 14. | 15. | |p | | | | | |03776 03776| +790254 |KU Tel |181321.3-483910 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +790255 |KV Tel |181425.3-503820 |EA: | 16.5 | 18. | |p |38555.37 | | | | |03776 03776| +790256 |KW Tel |181416.8-465430 |RR | 14.5 | 16. | |p | | | | | |03776 03776| +790257 |KX Tel |181434.8-461818 |RR | 15. | 16. | |p | | | | | |03776 03776| +790258 |KY Tel |181545.9-502324 |RR | 15.5 | 17. | |p | | | | | |03776 03776| +790259 |KZ Tel |181557.9-471354 |RR | 15. | 16. | |p | | | | | |03776 03776| +790260 |LL Tel |181607.6-491049 |RR | 15. | 16. | |p | | | | | |03776 03776| +790261 |LM Tel |181724.3-462018 |RR | 15. | 16. | |p | | | | | |03776 03776| +790262 |LN Tel |181742.8-454202 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +790263 |LO Tel |181800.3-461711 |RR | 15.5 | 16.5 | |p | | | | | |03776 03776| +790264 |LP Tel |181849.8-515650 |RR | 14.5 | 16. | |p | | | | | |03776 03776| +790265 |LQ Tel |181834.9-465734 |RR | 16. | 17. | |p | | | | | |03776 03776| +790266 |LR Tel |181847.5-464548 |RR | 15. | 16.5 | |p | | | | | |03776 03776| +790267 |LS Tel |182008.8-453814 |RR | 14. | 15. | |p | | | | | |03776 03776| +790268 |LT Tel |182051.7-505332 |RR | 16. | 17. | |p | | | | | |03776 03776| +790269 |LU Tel |182108.3-463257 |EA | 12.4 | 13.5 | |V |52086.66 | | 1.57173 |15 | |10201 03776| +790270 |LV Tel |182304.3-482035 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +790271 |LW Tel *|182257.8-462310 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +790272 |LX Tel |182327.2-465918 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +790273 |LY Tel |182440.0-492942 |RR | 15. | 16.5 | |p | | | | | |03776 03776| +790274 |LZ Tel |182534.2-454413 |RRAB | 12.9 | 13.8 | |V |52884.632 | | 0.615118 |13 | |N0002 03513| +790275 |MM Tel |182618.8-482209 |EA | 15.5 | 17. | |p |38561.49 | | | | |03776 03776| +790276 |MN Tel |182657.9-471919 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +790277 |MO Tel |182720.9-495618 |RR | 15. | 16. | |p | | | | | |03776 03776| +790278 |MP Tel |183006.8-490233 |RR | 15. | 16.5 | |p | | | | | |03776 03776| +790279 |MQ Tel |183018.1-470903 |RR | 14. | 15. | |p | | | | | |03776 03776| +790280 |MR Tel |183103.8-515917 |RR | 16. | 17. | |p | | | | | |03776 03776| +790281 |MS Tel |183111.1-485120 |RRAB | 13.4 | 13.9 | |V |52739.85 | | 0.70897 | | |10201 03776| +790282 |MT Tel *|190212.3-463912 |RRC | 8.68 | 9.28 | |V |48500.270 | | 0.3169 |35 |A0w |HIP 04001| +790283 |MU Tel |185303.0-560021 |RR | 14.6 | 15.4 | |p | | | | | |00629 06286| +790284 |MV Tel |195202.2-562622 |RRC | 13.5 | 14.3 | |V |52874.797 | | 0.30330 |50 : | |00001 04001| +790285 |MW Tel |200143.6-534435 |LB | 15.0 | 15.5 | |p | | | | | |06920 04001| +790286 |MX Tel |200241.8-535757 |RRAB | 16.06 | 17.18 | |V |49530.8195 | | 0.59555 |15 | |N0006 04001| +790287 |MY Tel *|200452.3-551101 |EB | 13.2 | 14.1 | 13.5 |V |52057.7643 | | 0.55252 | | |00001 04001| +790288 |MZ Tel |200745.7-532557 |RRC | 13.9 | 14.4 | |V |52902.501 | | 0.35952 |40 : | |10201 04001| +790289 |NN Tel *|201137.9-552804 |EW | 15.0 | 15.5 | 15.5 |p |36840.245 | | 0.3838 | | |06920 04001| +790290 |NO Tel |202037.1-534342 |RRAB | 13.6 | 14.5 | |V |52053.798 | | 0.61392 |10 | |00001 04001| +790291 |NP Tel *|202438.1-524401 |EB | 12.7 | 13.6 | 13.3 |V |51872.664 | | 0.31593 | | |N0002 04001| +790292 |NQ Tel |202932.4-544850 |SXPHE | 14.3 | 14.8 | |p |36785.282 | | 0.12325 |30 : | |06920 04001| +790293 |NR Tel |183112.9-490459 |M | 10.7 | 14.8 | |V |52839. | | 196. | | |10201 05829| +790294 |NS Tel *|191507.8-533239 |EB | 9.2 | 10.0 | 9.8 |V |52764.796 | | 1.3397 | |A5V |N0009 CPD | +790295 |NT Tel |192252.1-502323 |M | 10.3 |< 14.4 | |V |52152. | | 261. | |S1,9e-S5,9e |10201 2MASS| +790296 |NU Tel |181258.9-550815 |SRA | 12.3 | 13.5 | |V |52841. | | 61. | | |10201 06286| +790297 |NV Tel *|181731.0-483555 |EA | 9.70 | 10.35 | 9.83 |V |52179.524 | | 3.544966 |07 |B9IV |00001 06871| +790298 |NW Tel |181943.9-511553 |RVA | 11.0 | 12.1 | |V |52184.5 | | 68.9 | |F7-F8 |10201 06871| +790299 |NX Tel |184611.1-482540 |SR | 11.5 | 13.7 | |p |52924. | | 277. | |Me |00001 2MASS| +790300 |NY Tel |190602.2-471435 |SRB | 10.4 | 11.4 | |V | | | 75. : | |Me |10201 05557| +790301 |NZ Tel |192301.6-483552 |M | 10.7 | 14.7 | |V |52931. | | 195. | |Me |10201 06031| +790302 |OO Tel |181915.2-504215 |E: | 14.8 | 15.5 | |p | | | | | |00629 06286| +790303 |OP Tel |182313.2-470605 |M | 12.0 |< 14.3 | |V |52487. | | 162. | | |10201 04001| +790304 |OQ Tel |182631.7-523045 |RR | 15.0 |< 15.9 | |p | | | | | |00629 USNO | +790305 |OR Tel |183014.6-505349 |RR | 14.7 | 15.6 | |p | | | | | |00629 UCAC2| +790306 |OS Tel |183200.8-454030 |RR: | 16. | 17. | |p | | | | | |04001 04001| +790307 |OT Tel |184037.9-501450 |RR | 14.8 | 15.5 | |p | | | | | |00629 UCAC2| +790308 |OU Tel |184515.5-491359 |SRA | 10.8 | 11.7 | |V |52935. | | 75. | | |10201 06561| +790309 |OV Tel |184550.2-475555 |RRAB | 12.9 | 14.4 | |V |52759.878 | | 0.62789 |19 | |10201 04001| +790310 |OW Tel |185424.9-460836 |M | 10.6 | 14.3 | |V |52878. | | 225. | |Me |10201 06031| +790311 |OX Tel |191455.9-473505 |M | 11.5 |< 14.4 | |V |53075. | | 290. | | |10201 2MASS| +790312 |OY Tel |193928.7-525124 |SRA | 9.5 | 10.7 | |V |52195. | | 123. | |M5/7 |10201 CoD | +790313 |OZ Tel |200615.6-561415 |E | 15.3 | 15.8 | |p |36834.376 | | | | |06920 04001| +790314 |PP Tel |201656.5-511511 |CWB | 12.8 | 14.2 | |V |52861.66 | | 1.09068 |12 | |10201 05829| +790315 |PQ Tel |191025.4-511518 |M | 10.7 |< 14.5 | |V |52741. | | 240. | |Me |10201 06031| +790316 |PR Tel *|192940.8-521950 |EB | 11.1 | 11.6 | 11.4 |V |51965.320 | | 0.590637 | |F |N0002 08266| +790317 |PS Tel *|181819.3-521047 |EW: | 15.2 | 15.8 | |B |43349.702 | | | | |08528 08528| +790318 |PT Tel *|181902.2-522246 |E: | 17.7 |< 18.5 | |B |43330.865 | | | | |08528 08528| +790319 |PU Tel *|181924.7-521850 |RRC | 14.6 | 15.5 | |B |43343.597 | | 0.3086 |40 : | |08528 08528| +790320 |PV Tel *|182314.7-563744 |PVTEL | 9.24 | 9.40 | |V | | | | |B5p(He) |04509 CPD | +790321 |PW Tel |193321.6-451618 |ACV | 5.61 |( 0.011 )| |V | | | 2.9213 | |A0p(Cr-Eu-Sr) |09919 CoD | +790322 |PX Tel *|181823.8-521241 |RRAB | 14.7 | 15.3 | |B |43343.597 | | 0.636 |10 | |08528 08528| +790323 |PY Tel |182236.3-484532 |SRA | 10.6 | 12.4 | |V |52814. | | 266. |32 | |10201 06561| +790324 |PZ Tel |185305.9-501050 |BY | 8.33 | 8.63 | |V | | | 0.94088 | |K0Vp |HIP CoD | +790325 |QQ Tel |193941.8-451643 |DSCTC | 6.53 |( 0.050 )| |B | | | 0.065 | |F2/3IV/III |67245 CoD | +790326 |QR Tel *|202411.8-514325 |ACVO | 9.19 |( 0.01 B )| |V | | | | |A9pSrCrEu |71157 CPD | +790327 |QS Tel *|193835.7-461257 |XM | 15.25 | 17.4 | |V | | | | |pec(e) |72163 72163| +790328 |QT Tel |195554.7-512330 |SRB | 12.6 | 14.4 | |V | | | 141. | | |N0002 2MASS| +790329 |QU Tel *|200940.1-522517 |ZZB | 14.93 |( 0.05 )| |V | | | | |DB |73332 73332| +790330 |QV Tel |181707.5-560124 |BE | 5.31 | 5.38 | |Hp| | | | |B3IIIe |HIP HIP | +790331 |QW Tel *|182209.9-553351 |EW | 7.55 | 7.69 | 7.67 |V |52445.656 | | 0.411930 | |F8/G0 |00001 HIP | +790332 |QX Tel |182317.9-532536 |SRD: | 8.62 | 8.78 | |Hp| | | 28.3 | |K0III |00001 HIP | +790333 |QY Tel *|184029.1-454452 |EA | 9.58 | 10.07 | 10.06 |V |51957.064 | | 2.488926 |12 |F8 |N0002 HIP | +790334 |QZ Tel *|184323.8-525142 |EB | 8.07 | 8.27 | 8.27 |V |52831.746 | | 1.0309913 | |A2V |00001 HIP | +790335 |V0335 Tel |185750.4-464411 |LB: | 8.06 | 8.17 | |Hp| | | | |M2/M3III |HIP HIP | +790336 |V0336 Tel |191612.3-471628 |BY: | 11.69 | 12.03 | |Hp| | | | |M |HIP HIP | +790337 |V0337 Tel *|192627.7-454527 |EW | 9.90 | 10.21 | 10.20 |V |51963.442 | | 0.423389 | |F5V |N0002 HIP | +790338 |V0338 Tel |192711.8-562956 |LB | 8.47 | 8.63 | |Hp| | | | |M0III |HIP HIP | +790339 |V0339 Tel |193157.1-540955 |SRS | 6.80 | 7.02 | |V | | | 24.20 | |M4III |00001 HIP | +790340 |V0340 Tel *|194134.1-464613 |BY: | 9.65 | 9.84 | |V | | | 1.71966 | |K0V |HIP HIP | +790341 |V0341 Tel |194313.7-561537 |LB | 7.19 | 7.56 | |Hp| | | | |M5/M6III |HIP HIP | +790342 |V0342 Tel |194847.1-493130 |LB | 7.84 | 7.97 | |Hp| | | | |M3III |HIP HIP | +790343 |V0343 Tel *|195003.5-514646 |EB | 9.11 | 9.44 | 9.40 |V |51874.858 | | 0.875460 | |A2/A3V |N0002 HIP | +790344 |V0344 Tel |195413.5-492742 |SRS | 8.6 | 9.0 | |V | | | 27.4 | |M6III |N0002 HIP | +790345 |V0345 Tel |200040.1-493631 |LB | 6.62 | 6.72 | |Hp| | | | |M4III |HIP HIP | +790346 |V0346 Tel |200403.3-511245 |LB | 8.96 | 9.55 | |V | | | | |M4/M5III |00001 HIP | +790347 |V0347 Tel |202437.5-495335 |LB | 8.36 | 8.68 | |Hp| | | | |M3III |HIP HIP | +790348 |V0348 Tel |202741.2-494601 |LB: | 8.49 | 8.64 | |Hp| | | | |M3III |HIP HIP | +790349 |V0349 Tel *|195008.4-503609 |GDOR: | 7.60 | 7.73 | |Hp| | | 0.6953 | |F0V |75029 CoD | +790350 |V0350 Tel |201819.3-510513 |ACV | 7.55 |( 0.03 U )| |V | | | 4.45 | |B9CrEuSr |75026 CoD | +790351 |V0351 Tel *|184400.5-492053 |EA | 10.05 | 10.52 | 10.27 |V |52104.601 | | 6.4478 |07 |A9IV |78011 CoD | +790352 |V0352 Tel |184720.6-473806 |M | 10.5 |< 13.0 | |V |53261. | | 382. | |Me |N0002 GSC | +790353 |V0353 Tel |184957.3-520719 |ELL:+DSCTC| 7.13 | 7.20 | |Hp| | | 3.2 | |A3III/IV |78024 DM | +790354 |V0354 Tel |182718.7-483259 |EA | 11.60 | 12.92 | 11.90 |V |51981.962 | | 5.23975 |08 | |79018 79071| +790355 |V0355 Tel |182911.9-505819 |EA | 11.97 | 12.50 | 12.10 |V |52114.769 | | 0.838637 |16 | |79003 79010| +790356 |V0356 Tel *|183718.6-515433 |EA | 9.64 | 9.89 : | 9.89 : |V |52124.556 | | 23.1868 |03 : |F2 |79004 DM | +790357 |V0357 Tel |183836.2-484826 |EA | 12.38 | 14.6 | 12.5 |V |52811.846 | | 2.96857 |13 | |79018 79071| +790358 |V0358 Tel *|183836.4-535228 |EA | 11.79 | 12.3 | 12.28 |V |52739.824 | | 3.45563 |06 | |79009 DM | +790359 |V0359 Tel *|184423.7-465727 |EA | 8.54 | 8.83 | 8.66 |V |48315.454 | | 19.2449 |02 : |B9V |79193 DM | +790360 |V0360 Tel |184938.0-474739 |EA | 11.78 | 12.28 | 11.88 |V |51962.854 | | 1.3675 |10 | |79004 79063| +790361 |V0361 Tel |185252.6-521056 |EA | 12.7 | 14.5 : | 12.2 : |V |52831.888 | | 0.88483 |16 | |79018 79080| +790362 |V0362 Tel *|185404.9-513058 |EA | 9.68 | 9.96 | 9.96 : |V |48017.991 | | 1.21125 |08 |G3V |79006 DM | +790363 |V0363 Tel |191012.7-474219 |EA | 11.37 | 12.13 | 11.44 |V |52875.681 | | 2.67524 |12 | |79018 79233| +790364 |V0364 Tel |193922.5-523748 |EA | 11.36 | 11.9 | 11.4 : |V |52095.622 | | 11.2359 |04 : | |79011 DM | +790365 |V0365 Tel |194217.1-454622 |LB | 9.8 | 10.6 | |V | | | | | |79100 79118| +790366 |V0366 Tel |194407.3-543828 |EA | 12.76 | 13.74 | 12.9 : |V |52069.712 | | 0.844598 |13 | |79006 79071| +790367 |V0367 Tel |195044.9-512043 |LB | 10.8 | 11.7 | |V | | | | | |79100 79204| +790368 |V0368 Tel |195349.9-500329 |EW | 11.25 | 12.37 | 11.95 |V |52202.550 | | 0.286829 | | |79011 79118| +790369 |V0369 Tel |201828.0-494256 |SRB | 9.6 | 11.4 | |V | | | 89. | |Mb |79100 79095| +790370 |V0370 Tel |182105.0-540745 |EA | 13.7 | 14.4 | 13.8 : |V |52876.625 | | 0.65186 |17 | |80015 GSC | NL80_3 +790371 |V0371 Tel |182608.3-560209 |RRAB | 13.0 | 13.95 | |V |54336.555 | | 0.521208 |13 | |80135 GSC | NL80_3 +790372 |V0372 Tel |182740.8-515304 |RRAB | 14.1 | 15.0 | |V |52082.678 | | 0.69234 |18 : | |80135 USNO | NL80_3 +790373 |V0373 Tel |183016.5-521230 |RRAB | 13.8 | 14.8 | |V |52192.558 | | 0.625974 |17 : | |80135 GSC | NL80_3 +790374 |V0374 Tel *|184035.3-535032 |RR(B) | 12.27 | 13.42 | |V | | | 0.35636 | | |80132 GSC | NL80_3 +790375 |V0375 Tel |184141.1-550333 |RRAB | 13.75 | 14.4 | |V |52916.57 | | 0.55691 |25 | |80135 GSC | NL80_3 +790376 |V0376 Tel |184740.4-483603 |CWA | 11.32 | 12.65 | |V |53886.87 | | 14.3116 |35 | |80135 GSC | NL80_3 +790377 |V0377 Tel |190858.7-471409 |RRAB | 13.35 | 14.3 | |V |52106.666 | | 0.614008 |10 | |80135 GSC | NL80_3 +790378 |V0378 Tel |192239.0-454023 |RRAB | 13.4 | 14.6 | |V |52039.797 | | 0.495593 |11 | |80135 GSC | NL80_3 +790379 |V0379 Tel *|192832.5-500134 |E+AM | 17.3 | 21.05 | |V |52879.2813 | | 0.0701623 | |wd+M |80523 80524| NL80_3 +790380 |V0380 Tel |194722.4-543129 |RRAB | 13.0 | 14.1 | |V |52204.517 | | 0.515212 |12 |A |80135 GSC | NL80_3 +790381 |V0381 Tel *|195612.0-504346 |RR(B) | 12.05 | 12.80 | |V | | | 0.34778 | | |80300 GSC | NL80_3 +790382 |V0382 Tel |200955.2-455947 |RS | 9.26 | 9.50 | |V | | | 10.695 | |K0III |80001 DM | NL80_3 +800001 |R Tri *|023702.3+341551 |M | 5.4 | 12.6 | |V |45215. | | 266.9 |44 |M4IIIe-M8e |00001 00002| +800002 |S Tri *|022719.5+324423 |M | 8.9 |< 12.4 | |V |35850. | | 241.6 |48 |M2e |00001 06286| +800003 |T Tri *|015647.0+340112 |M | 10.0 |< 14. | |V |38294. | | 324.0 | |M8e |00001 00528| +800004 |U Tri *|015531.4+334608 |RRAB | 11.88 | 13.20 | |V |19100.2275 | | 0.44725300 |16 |A8-F5 |03506 06286| +800005 |V Tri *|013147.1+302202 |EB/SD | 10.7 | 11.8 | 11.0 |V |24474.305 | | 0.5852057 | |A3 |00001 06286| +800006 |W Tri |024130.6+343058 |SRC | 8.5 | 9.7 | |p | | | 108. | |M5II |00634 03746| +800007 |X Tri *|020033.7+275319 |EA/SD | 8.55 | 11.27 | 9.07 |V |42502.721 | | 0.9715352 |18 |A5V+G0V |00001 10044| +800008 |Y Tri *|013418.4+303837 |SDOR | 15.4 | 19.1 | |B | | | | |A:e |V 316 V 327|=M33 V0002 +800009 |Z Tri |020750.9+275615 |M | 11.2 | 14.8 | |p |32915. | | 216.1 | |M2e |00001 06286| +800010 |RR Tri |023225.9+353336 |S: | 11.9 | 12.9 | |p | | | | | |00635 | +800011 |RS Tri *|013449.2+293521 |EA/DM | 10.27 | 11.0 | 10.4 |V |37940.490 | | 1.9089234 |22 |A5V |03432 00318| +800012 |RT Tri |022119.6+315258 |M | 12.5 |< 15.5 | |p |32835. | | 115.4 | | |02931 00542| +800013 |RU Tri *|020021.2+351713 |EA | 11.6 | 12.3 | 11.8 : |p |51461.75 | | 3.26818 |18 *|G0 |00001 00819| +800014 |RV Tri |021318.2+370102 |EA/SD | 11.5 | 13.3 | |p |46033.308 | | 0.75366648 |14 |F9+K2 |00001 00819| +800015 |RW Tri *|022536.2+280551 |EA/WD+NL | 12.50 | 15.61 |( 0.16 J)|V |43512.6615 | | 0.231883276 |07 |pec(cont+e)+M0V |00001 09472| +800016 |RX Tri *|023927.1+351850 |SRA | 11.8 | 13.2 | |p |39842. | | 192. | |M5 |00821 02378| +800017 |RY Tri *|020110.7+334716 |SR | 14. | 15. | |p | | | | | |03905 03905| +800018 |RZ Tri |020918.7+334908 |EA | 14.5 | 15. | |p |38673.59 | | | | |03905 03905| +800019 |SS Tri |021026.3+315926 |EA | 14.5 | 15. | |p |38673.55 | | | | |03905 03905| +800020 |ST Tri *|024132.8+354331 |EB/SD: | 14.3 | 15.2 | 14.5 |p |39025.468 | | 0.4790536 | | |08639 06976| +800021 |SU Tri |021810.3+314457 |LB: | 10.6 | 11.4 | |p | | | | |S5,1 |04187 BD | +800022 |SV Tri |022523.8+361217 |RRAB | 15.2 | 16.5 | |p |41217.436 | | 0.4663857 |17 | |06976 06976| +800023 |SW Tri *|022948.0+365246 |RRAB | 14.6 | 16.1 | |p |41597.427 | | 0.4631558 |18 | |06976 06976| +800024 |SX Tri |023353.1+354745 |RRAB | 14.4 | 15.2 | |p |41222.421 | | 0.7429594 |20 | |06976 06976| +800025 |SY Tri *|023425.4+364147 |RRAB | 15.2 | 17.3 | |p |41619.307 | | 0.4661479 |16 | |06976 06976| +800026 |SZ Tri |024843.4+332723 |SR | 13.6 | 16.5 | |p |41210. | | 2454. | | |06976 06976| +800027 |TT Tri *|013159.9+294922 |E | 14.7 | 16.7 | |p | | | | | |08475 08475| +800028 |TU Tri |013915.7+312415 |UGSU | 14.8 | 20.4 | |p | | | | | |08475 08475| +800029 |TV Tri |013311.2+323541 |RR: | 14.4 | 15.5 | |p | | | | | |08475 08475| +800030 |TW Tri |013637.0+320040 |UGZ | 13.3 | 17.0 | |p | | |( 28. ) | | |08533 08533| +800031 |TX Tri |013737.2+300249 |UGSS | 14.5 | 18.2 | |B | | |( 70. ) | |pec(UG) |08533 10054| +800032 |TY Tri |020327.7+323957 |E | 11.2 | 12.1 | |p |43868.449 | | | | |04364 04364| +800033 |TZ Tri *|021222.3+301811 |ELL/RS | 5.19 |( 0.09 )| |V |43729.8 | | 14.732 | |G5III+G5III: |08538 BD | +800034 |UU Tri |024018.0+352603 |RRC | 14.6 | 15.3 | |p |40153.384 | | 0.276536 |40 | |08639 05506| +800035 |UV Tri |013200.1+302157 |DSCTC | 11.2 |( 0.07 )| |V | | | | | |67339 | +800036 |UW Tri |024517.3+333126 |NA | 14.6 |< 17.5 | |p | | | | | |67343 | +800037 |UX Tri |014535.0+312250 |RRAB | 10.5 | 11.5 | |p | | | | | |69005 69005| +800038 |UY Tri |015652.6+331641 |RRAB | 15.1 | 16.4 | |p | | | | | |69005 69005| +800039 |UZ Tri |015824.7+333131 |N: |>14.2 | 21.0 : | |p | | | | | |69005 69005| +800040 |VV Tri |020049.8+351358 |RRAB | 14.5 | 15.6 | |p | | | | | |69005 69005| +800041 |VW Tri |020402.9+324933 |EW/KW | 13.9 | 14.4 | |p | | | | | |69005 69005| +800042 |VX Tri |021000.9+322409 |RRAB | 13.4 | 14.6 | |p | | | | | |69005 69005| +800043 |VY Tri |021209.4+335552 |LB | 15.0 | 15.6 | |p | | | | | |69005 69005| +800044 |VZ Tri |022129.9+315846 |EW/KW | 12.8 | 13.3 | |p | | | | | |69005 69005| +800045 |WW Tri |022323.6+370138 |EA | 12.2 | 12.7 | |p | | | | | |69005 69278| +800046 |WX Tri |022346.3+335450 |LB | 14.0 | 14.8 | |p | | | | | |69005 69005| +800047 |WY Tri |022500.5+325956 |UG | 13.8 |< 17.0 | |p | | | | | |69005 69005| +800048 |WZ Tri |013942.9+291619 |E: | 18.4 | 18.8 | |B | | | | | |70130 70130| +800049 |XX Tri |020347.1+353529 |RS | 8.1 | 8.7 | |V | | | | | |71008 BD | +800050 |XY Tri |015938.8+280146 |RRAB | 16.29 | 17.56 | |V | | | | | |73003 GSC22| +800051 |XZ Tri |020233.4+280757 |RRAB | 16.67 | 18.00 | |V | | | | | |73003 GSC22| +800052 |YY Tri |021806.0+283645 |M | 5.84 | 7.72 | |K | | | | | |73014 2MASS| +800053 |YZ Tri |013354.4+353630 |SRB | 6.90 | 7.02 | |Hp| | | | | |HIP HIP | +800054 |ZZ Tri |015137.9+334646 |LB: | 8.75 | 8.85 | |Hp| | | | | |HIP HIP | +800055 |AA Tri |015803.8+310804 |SRB | 6.56 | 6.74 | |Hp| | | | | |HIP HIP | +800056 |AB Tri |020937.4+370659 |EB: | 8.28 | 8.38 | |Hp| | | | | |HIP HIP | +800057 |AC Tri |021253.6+351920 |LB: | 9.15 | 9.33 | |Hp| | | | | |HIP HIP | +800058 |AD Tri |021757.3+290026 |LB: | 6.70 | 6.78 | |Hp| | | | | |HIP HIP | +800059 |AE Tri |022510.0+335200 |SRB: | 6.96 | 7.14 | |Hp| | | | | |HIP HIP | +800060 |AF Tri |022714.9+365802 |LB | 7.30 | 7.67 | |Hp| | | | | |HIP HIP | +800061 |AG Tri |022729.3+305825 |BY: | 10.19 | 10.29 | |Hp| | | | | |HIP HIP | +800062 |AH Tri |024031.3+360021 |SRD | 8.24 | 8.44 | |Hp| | | | | |HIP HIP | +800063 |AI Tri |020348.6+295926 |XM | 15.30 | 18.20 | |V | | | | | |75267 75267| +800064 |AK Tri |022438.9+331558 |EW | 12.0 |( 0.34 )| |V | | | | | |75268 75269| +800065 |AL Tri |013143.1+302328 |EW | 14.1 |( 0.28 )| |V | | | | | |77015 77015| +800066 |AM Tri |015619.4+342457 |SR: | 12.6 | 13.5 | |V | | | | | |77004 UCAC2| +800067 |AN Tri |021315.8+335751 |SR: | 12.4 | 13.4 | |V | | | | | |77004 UCAC2| +800068 |AO Tri |021929.4+280413 |SR: | 12.5 | 13.8 | |V | | | | | |77004 77021| +800069 |AP Tri |022610.2+365130 |SR: | 13.3 | 14.1 | |V | | | | | |77004 2MASS| +800070 |AQ Tri |024927.5+325113 |ZZA | 15.8 |( 0.15 * )| |V | | | | | |77025 GSC22| +800071 |AR Tri |013442.6+302528 |DSCTC: | 10.60 | 10.63 | |V | | | 0.045 | | |78022 GSC | +800072 |AS Tri |020358.2+295418 |DSCTC | 8.25 |( 0.09 )| |V | | | 0.08 | |F0 |78033 DM | +800073 |AT Tri |013806.3+330036 |RRAB | 14.1 | 15.1 | |* |51477.01 | | 0.6525 |15 | |79025 79015| +800074 |AU Tri |014024.4+330053 |EA | 14.1 |< 15.2 | 14.5 |* |51338.067 | | 2.0582 |15 | |79004 79015| +800075 |AV Tri |020806.5+352353 |EB: | 11.90 | 12.5 : | 12.05 |* |51437.733 | | 0.88198 | | |79006 79017| +800076 |AW Tri *|013141.3+294153 |EW | 13.4 | 13.7 | 13.7 |* |51469.957 | | 0.3882 | | |80085 80085| NL80_1 +800077 |AX Tri |013149.2+351324 |SXPHE | 14.5 | 15.1 | |* |51477.967 | | 0.068983 | | |80082 80082| NL80_1 +800078 |AY Tri *|013230.8+334131 |EW | 14.1 | 14.5 | 14.45 |* |51481.645 | | 0.3939 | | |80052 80052| NL80_1 +800079 |AZ Tri *|013421.9+325230 |EA/RS: | 13.7 | 14.3 | 14.3 |* |51480.946 | | 0.76479 |10 | |80052 80052| NL80_1 +800080 |BB Tri *|013430.9+331542 |EW | 14.0 | 14.4 | 14.3 : |* |51478.579 | | 0.3924 | | |80052 80052| NL80_1 +800081 |BC Tri *|013551.2+301929 |EW: | 11.9 | 12.1 | 12.08 |* |51480.747 | | 0.7078 | | |80085 80085| NL80_1 +800082 |BD Tri |013612.3+304902 |RS | 12.80 | 13.10 | |* | | | 0.6647 | | |80021 GSC | NL80_1 +800083 |BE Tri *|014329.6+295241 |EW | 12.9 | 13.2 | 13.2 |* |51506.570 | | 0.3843 | | |80052 80052| NL80_1 +800084 |BF Tri *|014405.4+305123 |EW | 14.0 | 14.6 | 14.5 : |* |51491.775 | | 0.32657 | | |80052 80052| NL80_1 +800085 |BG Tri |014447.6+323300 |NL | 12.0 | 12.6 | |* | | | | | |80096 80096| NL80_1 +800086 |BH Tri |014633.5+331712 |BY | 14.0 | 14.7 | |* | | | 4.9393 | | |80021 DM | NL80_1 +800087 |BI Tri *|015308.1+311601 |EW | 12.3 | 12.65 | 12.65 |* |51491.652 | | 0.54934 | | |80052 80052| NL80_1 +800088 |BK Tri |015337.5+332508 |SR | 9.91 | 10.14 | |* |51520. | | 90. | | |80070 80070| NL80_1 +800089 |BL Tri |015339.2+295757 |EA/RS | 12.5 | 12.8 | |* |51507.55 | | 7.036 |05 | |80063 80063| NL80_1 +800090 |BM Tri *|015358.7+341503 |EW | 13.0 | 13.4 | 13.3 : |* |51482.830 | | 0.31781 | | |80102 80102| NL80_1 +800091 |BN Tri |015458.0+294737 |DSCT | 12.15 | 12.35 | |* |51513.544 | | 0.070037 |36 | |80103 80103| NL80_1 +800092 |BO Tri *|015631.9+310805 |EA | 11.9 | 12.24 | 12.0 |* |51492.12 | | 2.012 |10 | |80104 80104| NL80_1 +800093 |BP Tri *|020312.7+343001 |EW | 14.1 | 14.6 | 14.6 |* |51483.807 | | 0.35975 | | |80101 80101| NL80_1 +800094 |BQ Tri *|020647.3+334942 |EW | 12.5 | 12.85 | 12.8 |* |51482.715 | | 0.4958 | | |80101 80101| NL80_1 +800095 |BR Tri *|020721.2+320203 |EW: | 12.95 | 13.40 | 13.3 |* |51473.975 | | 0.6656 | | |80101 80101| NL80_1 +800096 |BS Tri |020929.8+283229 |E+XM: | 17.0 | 21.5 | |V |53666.543 | | 0.06685 |06 | pec(e) |80108 80108| NL80_1 +800097 |BT Tri *|021015.5+302646 |EW | 14.2 | 14.8 | 14.7 |* |51502.559 | | 0.2512 | | |80052 80052| NL80_1 +800098 |BU Tri *|021301.5+370326 |EW | 14.4 | 15.0 | 14.9 |R |53999.4197 | | 0.295562 | | |80110 80110| NL80_1 +800099 |BV Tri *|021332.0+370237 |EA | 14.1 | 14.4 | 14.3 |R |54000.4696 | | 0.494176 |10 | |80110 80110| NL80_1 +800100 |BW Tri |021606.2+343749 |RRC | 12.75 | 13.0 | |* |51496.891 | | 0.22246 |40 | |80103 80103| NL80_1 +800101 |BX Tri *|022050.8+332048 |EW: | 12.35 | 12.70 | 12.60 |* |51566.6629 | | 0.192634 | | M |80001 GSC | NL80_1 +800102 |BY Tri |022133.3+340445 |RS | 9.70 | 9.83 | |* | | | 3.6159 | | G0 |80021 GSC | NL80_1 +800103 |BZ Tri |022226.7+292911 |EA | 11.8 | 12.5 | |V |51481.429 | | 2.94935 |06 | |80063 80063| NL80_1 +800104 |CC Tri *|022354.1+324945 |EW | 13.2 | 13.7 | 13.6 |* |51495.822 | | 0.38292 | | |80052 80052| NL80_1 +800105 |CD Tri *|022430.2+350810 |EB | 12.14 | 12.65 | 12.3 |V |52931.3523 | | 0.36907 | | |80057 GSC | NL80_1 +800106 |CE Tri |022529.1+304151 |RS | 11.3 | 11.6 | |* | | | 5.095 | | |80115 80115| NL80_1 +800107 |CF Tri |022532.1+323828 |SR | 10.55 | 10.76 | |* | | | 49. | | |80070 80070| NL80_1 +800108 |CG Tri |022708.4+342321 |RS | 11.69 | 12.07 | |V | | | 3.1078 | | |80057 GSC | NL80_1 +800109 |CH Tri |022734.8+285830 |RS | 9.87 | 9.99 | |* | | | 4.3104 | | G0 |80021 DM | NL80_1 +800110 |CI Tri |022842.4+342950 |LB | 10.91 | 11.25 | |V | | | | | |80057 GSC | NL80_1 +800111 |CK Tri |022936.4+342343 |RS | 11.70 | 11.86 | |* | | | 2.7458 | | |80021 GSC | NL80_1 +800112 |CL Tri *|022941.0+315940 |EA | 11.7 | 12.15 | 12.07 |* |51492.989 | | 0.57877 |14 | |80052 80052| NL80_1 +800113 |CM Tri *|023145.3+342053 |EW | 13.7 | 14.4 | 14.3 |* |51490.731 | | 0.47273 | | |80101 80101| NL80_1 +800114 |CN Tri *|023215.2+301652 |EW | 12.0 | 12.3 | 12.25 |* |51501.705 | | 0.36706 | | |80101 80101| NL80_1 +800115 |CO Tri |023228.2+321136 |CWA: | 11.7 | 11.9 | |* |51491.0 | | 15.3 |55 | |80116 80116| NL80_1 +800116 |CP Tri *|023428.7+344255 |EA | 10.85 | 11.65 | 10.95 |* |51521.683 | | 13.620 |03 | |80121 GSC | NL80_1 +800117 |CQ Tri |023503.8+313922 |RS | 10.41 | 10.58 | |* | | | 1.2771 | | G0 |80021 DM | NL80_1 +800118 |CR Tri *|023705.7+330845 |EW | 14.1 | 14.8 | 14.7 |* |51497.614 | | 0.29608 | | |80101 80101| NL80_1 +800119 |CS Tri *|023824.8+320742 |EW | 11.15 | 11.4 | 11.4 |* |51494.82 | | 0.6633 | | |80102 80102| NL80_1 +800120 |CT Tri |023839.1+355649 |UGSU | 14.34 |< 21. | |V | | | | | |80122 80122| NL80_1 +800121 |CU Tri |024000.4+351817 |EA | 12.25 | 12.60 | |* |51461.657 | | 2.5785 |11 | |80033 80033| NL80_1 +809001 |alf Tri *|015304.9+293444 |ELL | 3.52 | 3.53 | |Hp| | | | | |HIP HIP | +810001 |R TrA *|151945.7-662946 |DCEP | 6.33 | 7.00 | |V |40838.21 | | 3.389287 |30 |F6Ib/II-G0 |02309 08667| +810002 |S TrA |160110.7-634636 |DCEP | 5.95 | 6.81 | |V |40734.45 | | 6.32344 |28 |F6II-G2 |02309 08953| +810003 |T TrA |150936.5-684317 |CST: | 6.84 | | |V | | | | |B9IV | CPD | +810004 |U TrA *|160719.0-625438 |CEP(B) | 7.30 | 8.29 | |V |43267.14 | | 2.568423 |34 |F5-F8Ib/II |09918 08953| +810005 |V TrA |165006.6-674658 |LB | 10.0 | 10.7 | |p | | | | |C5,5(Nb) |00016 09611| +810006 |W TrA |165200.6-675914 |M | 9.4 | 12.5 | |p |11441. | | 248.7 | |Me |00031 09611| +810007 |X TrA |151419.2-700446 |LB | 5.02 | 6.4 | |V | | | | |C5,5(Nb) |00624 03470| +810008 |Y TrA |161409.2-620547 |M | 11.0 | 16.0 | |p |24710. | | 323. | |S4,1 |00424 06286| +810009 |Z TrA |165446.8-651207 |M | 9.8 |< 12.5 | |p |29710. | | 150.55 | |M3e-M5IIe |00624 08953| +810010 |RR TrA *|161822.7-624415 |EA/SD | 10.36 | 11.85 | 10.60 |V |35629.36932 | | 0.71309172 |20 *|B8 |09928 06286| +810011 |RS TrA |162158.4-612709 |M: | 10.1 |< 11.5 | |p |24408. | | 436.4 | |Me |01000 08953| +810012 |RT TrA |163430.9-630801 |CWB | 9.43 | 10.18 | |V |41922.54 | | 1.9461124 |40 |F8:(R)-G2I-II |00001 06286| +810013 |RU TrA |163827.8-683230 |M | 9.8 |< 13.5 | |p |15214. | | 326.5 | |M4e |00031 05834| +810014 |RV TrA |153205.6-623319 |LB: | 12.0 | 13.74 | |B | | | | |Np |02132 06286| +810015 |RW TrA *|170046.7-663950 |RRAB | 10.89 | 11.66 | |V |41489.292 | | 0.3740438 |20 |F5-F6 |00001 06286| +810016 |RX TrA |153352.6-605000 |M | 12.0 | 15.5 | |p |25382. | | 274. | | |00424 06286| +810017 |RY TrA |153441.1-612947 |M | 14.0 |< 16.5 | |p |24670. | | 252. | | |00424 06286| +810018 |RZ TrA |153839.7-604726 |E/SD: | 15.3 | 16.1 | |p |24320.695 | | 1.5507 | | |00424 06286| +810019 |SS TrA |153921.6-605338 |EA/SD: | 10.5 | 11.3 | |p |28387.28 | | 1.72043 | | |00016 06286| +810020 |ST TrA |153936.8-603523 |SR: | 16.0 |< 16.5 | |p | | | | | |00424 06286| +810021 |SU TrA *|154331.0-624735 |S: | 14.5 | 15.1 | |p | | | | | |00424 UCAC2| +810022 |SV TrA |154429.0-610855 |S: | 16.0 | 16.5 | |p | | | | | |00424 UCAC2| +810023 |SW TrA |154513.5-621042 |RR: | 14.7 | 15.7 | |p | | | | | |00424 06286| +810024 |SX TrA |154605.3-604035 |E/SD: | 14.5 |< 16.3 | |p | | | | | |00424 06286| +810025 |SY TrA |154644.6-620023 | | 12.4 | 14.5 | |p | | | | | |00424 06286| +810026 |SZ TrA |154857.2-633640 |S: | 15.5 |< 16.3 | |p | | | | | |00424 06286| +810027 |TT TrA |154917.3-625612 |RR: | 12.5 | 13.2 | |p | | | | | |00424 06286| +810028 |TU TrA |155007.2-611638 |RR: | 15.5 | 16.4 | |p | | | | | |00424 UCAC2| +810029 |TV TrA |155043.7-613955 |RR: | 15.6 | 16.4 | |p | | | | | |00424 06286| +810030 |TW TrA *|155126.1-634222 |SR | 14.5 |< 16.4 | |p | | | | | |00424 06286| +810031 |TX TrA |155201.2-623201 |M | 11.5 | 16.5 | |p |24680. | | 276. | | |00424 06286| +810032 |TY TrA *|155222.5-630022 |RR | 15.7 | 16.3 | |p | | | | | |00424 2MASS| +810033 |TZ TrA |155226.2-623534 |M | 14.5 |< 16.5 | |p |23961. | | 316. | |Me |00424 06286| +810034 |UU TrA |155306.8-634935 |S: | 13.5 | 14.6 | |p | | | | | |00424 06286| +810035 |UV TrA |155256.6-611437 |S: | 15.0 | 16.1 | |p | | | | | |00424 06286| +810036 |UW TrA *|155342.0-623919 |S: | 15.0 | 16.2 | |p | | | | | |00424 UCAC2| +810037 |UX TrA |155453.3-625146 |S: | 14.8 | 15.8 | |p | | | | | |00424 06286| +810038 |UY TrA |155518.6-620539 |RR | 15.0 | 16.1 | |p | | | | | |00424 06286| +810039 |UZ TrA *|155628.2-640008 |RR | 14.4 | 15.6 | |p | | | | | |00424 UCAC2| +810040 |VV TrA |155607.2-602518 |RR: | 13.8 | 15.5 | |p | | | | | |00424 06286| +810041 |VW TrA |155732.9-645255 |S: | 13.9 | 14.7 | |p | | | | | |00424 06286| +810042 |VX TrA |155753.0-610906 |S: | 14.8 | 16.1 | |p | | | | | |00424 06286| +810043 |VY TrA |155831.9-614121 |S: | 15.2 | 16.2 | |p | | | | | |00424 UCAC2| +810044 |VZ TrA |155907.9-625727 |RR | 12.6 | 14.0 | |p | | | | | |00424 06286| +810045 |WW TrA |155901.0-613153 |M: | 15.0 |< 16.4 | |p |24655. | | 312. | | |00424 06286| +810046 |WX TrA |160042.7-612154 |S: | 13.9 | 14.4 | |p | | | | | |00424 UCAC2| +810047 |WY TrA |160100.5-614712 |M | 14.5 |< 16.5 | |p |24710. | | 323. | | |00424 06286| +810048 |WZ TrA |160138.6-650024 |E/SD: | 12.3 | 13.4 | |p | | | | | |00424 06286| +810049 |XX TrA *|160149.1-632639 |SR: | 15.0 |< 16.2 | |p | | | | | |00424 UCAC2| +810050 |XY TrA *|160252.4-641357 |E | 15.3 | 16.0 | |p | | | | | |00424 UCAC2| +810051 |XZ TrA |160223.1-610012 |M: | 15.0 |< 16.5 | |p |23961. | | 136.8 | | |00424 06286| +810052 |YY TrA |160334.3-613744 |SR: | 15.5 |< 16.5 | |p | | | | | |00424 06286| +810053 |YZ TrA |160509.9-631828 |M: | 14.7 |< 16.5 | |p |24710. | | 172. | | |00424 06286| +810054 |ZZ TrA |160518.3-640554 |SR | 14.5 | 16.4 | |p |24320. | | 243. | | |00424 06286| +810055 |AA TrA |160540.2-613617 | | 13.4 | 14.8 | |p | | | | | |00424 06286| +810056 |AB TrA |160603.2-614351 |SR: | 16.0 |< 16.5 | |p | | | | | |00424 06286| +810057 |AC TrA |160755.9-642505 |S: | 14.8 | 15.5 | |p | | | | | |00424 06286| +810058 |AD TrA |160824.8-614008 |E/SD: | 13.8 | 14.7 | |p |24320.631 | | 1.2604 | | |00424 06286| +810059 |AE TrA |160941.3-644530 |RR | 14.9 | 15.6 | |p | | | | | |00424 06286| +810060 |AF TrA |160858.8-602043 |RR: | 15.9 | 16.4 | |p | | | | | |00424 06286| +810061 |AG TrA |160937.4-602751 |M: | 14.6 |< 16.3 | |p | | | | | |00424 06286| +810062 |AH TrA |161059.8-623103 |E/SD: | 13.7 | 15.0 | |p | | | 14. /N| | |00424 06286| +810063 |AI TrA |161049.1-603228 |RR: | 15.5 | 16.3 | |p | | | | | |00424 UCAC2| +810064 |AK TrA |161137.3-623146 |M: | 15.0 |< 16.5 | |p |24710. | | 325. | | |00424 06286| +810065 |AL TrA |161201.8-614234 |SR | 14.8 | 16.5 | |p |23914. | | 295. | | |00424 06286| +810066 |AM TrA |161235.8-643838 | | 14.0 | 14.6 | |p | | | | | |00424 UCAC2| +810067 |AN TrA |161232.5-633355 |M | 13.7 | 16.5 : | |p |23905. | | 295. | | |00424 UCAC2| +810068 |AO TrA |161242.9-625257 |SR | 14.0 | 16.0 : | |p |24710. | | 266. | | |00424 2MASS| +810069 |AP TrA |161241.4-611721 |RRAB | 15.0 | 16.3 | |p |24710.501 | | 0.48786 | | |00424 06286| +810070 |AQ TrA |161337.4-634148 |S: | 14.6 | 15.6 | |p | | | | | |00424 GSC22| +810071 |AR TrA |161357.8-622751 |E | 15.0 | 15.5 | |p | | | | | |00424 06286| +810072 |AS TrA | | | | | | | | | | | | |=V0389 Nor +810073 |AT TrA |161412.2-622647 |RR | 13.8 | 15.5 | |p |24320.631 | | 0.6078 | | |00424 2MASS| +810074 |AU TrA |161439.0-615602 |RR | 14.5 | 15.3 | |p |24710.563 | | 0.4231 | | |00424 UCAC2| +810075 |AV TrA |161555.1-645111 |RR | 14.4 | 15.8 | |p |24653.716 | | 0.39907 | | |00424 UCAC2| +810076 |AW TrA |161558.4-631415 |RRAB | 14.5 | 16.2 | |p |24653.716 | | 0.51285 | | |00424 06286| +810077 |AX TrA |161548.2-615854 | | 15.0 | 16.4 | |p | | | | | |00424 UCAC2| +810078 |AY TrA |161626.4-630241 |E: | 14.4 | 14.9 | |p | | | | | |00424 UCAC2| +810079 |AZ TrA |161627.5-624225 |E | 13.0 | 13.4 | |p |24298.734 | | 1.2004 | | |00424 UCAC2| +810080 |BB TrA |161643.6-604521 |M: | 15.3 |< 17. | |p |36725. | | 264.1 : | | |00001 04001| +810081 |BC TrA |161729.9-620501 |RRAB | 13.7 | 15.0 | |p |24654.708 | | 0.5097 | | |00424 GSC22| +810082 |BD TrA |161806.7-605759 |SR | 14.7 | 16.5 | |p |23905. | | 171. | | |00424 UCAC2| +810083 |BE TrA |161901.8-645747 |SR: | 13.3 | 15.0 : | |p |24320. | | 155. | | |00424 06286| +810084 |BF TrA |161848.3-622547 |S: | 12.1 | 12.7 | |p | | | | | |00424 06286| +810085 |BG TrA |161854.8-610646 | | 14.9 | 15.6 | |p | | | | | |00424 UCAC2| +810086 |BH TrA *|161906.8-612207 |RR | 14.2 | 15.7 | |p |24649.654 | | 0.5025 | | |00424 04001| +810087 |BI TrA |161912.8-605403 |RR | 14.9 | 15.8 | |p |24650.657 | | 0.4584 | | |00424 06286| +810088 |BK TrA |161923.7-604433 |RRAB | 14.5 | 15.8 | |p |24292.749 | | 0.5738 | | |00424 06286| +810089 |BL TrA |161958.1-622747 |S: | 14.4 | 15.6 | |p | | | | | |00424 06286| +810090 |BM TrA |161957.2-615828 |M | 13.0 |< 16.5 | |p |23948. | | 287. | | |00424 06286| +810091 |BN TrA |162023.8-621947 |M | 13.0 | 16.5 | |p |23905. | | 298. | | |00424 06286| +810092 |BO TrA |162035.6-603944 |S: | 14.3 | 14.8 | |p | | | | | |00424 06286| +810093 |BP TrA |162048.6-611446 |M: | 15.0 |< 17. | |p |24670. | | 279.5 : | | |00001 04001| +810094 |BQ TrA |162124.9-644217 |RRAB | 14.5 | 16.0 | |p |23992.546 | | 0.5034 | | |00424 06286| +810095 |BR TrA |162130.8-631941 | | 14.2 | 14.9 | |p | | | | | |00424 06286| +810096 |BS TrA |162125.6-625846 |SR | 14.9 | 16.5 | |p |24680. | | 335. | | |00424 2MASS| +810097 |BT TrA |162116.8-622620 |S: | 14.5 | 15.1 | |p | | | | | |00424 06286| +810098 |BU TrA |162146.8-621323 |M: | 15.0 |< 16.5 | |p |24650. | | 304. : | | |00424 06286| +810099 |BV TrA |162132.4-603128 |RRAB | 14.2 | 15.5 | |p |24679.648 | | 0.5003 | | |00424 UCAC2| +810100 |BW TrA |162159.6-611751 |SR: | 14.7 |< 16.5 | |p | | | | | |00424 06286| +810101 |BX TrA |162203.8-602304 |SR: | 14.5 |< 16.3 | |p | | | | | |00424 06286| +810102 |BY TrA |162233.8-603703 |RR | 14.7 | 16.1 | |p | | | | | |00424 06286| +810103 |BZ TrA |162254.7-625651 |M | 14.5 |< 16.5 | |p |24710. | | 280. | | |00424 06286| +810104 |CC TrA |162303.3-614622 |M | 13.0 | 16.5 | |p |23961. | | 270. | |Me |00424 04001| +810105 |CD TrA |162346.8-635744 |S: | 13.7 | 14.2 | |p | | | | | |00424 06286| +810106 |CE TrA |162447.2-641740 |RRAB | 14.7 | 16.0 | |p |24285.763 | | 0.5272 | | |00424 UCAC2| +810107 |CF TrA |162532.0-632551 |S: | 14.3 | 15.1 | |p | | | | | |00424 2MASS| +810108 |CG TrA |162528.6-614357 |M | 14.5 |< 16.5 | |p |24670. | | 290. | | |00424 06286| +810109 |CH TrA |162554.9-603445 |RR | 13.7 | 15.3 | |p | | | | | |00424 UCAC2| +810110 |CI TrA *|162622.1-631901 |RR | 14.7 | 15.3 | |p | | | | | |00424 06286| +810111 |CK TrA |162657.6-614432 |RR | 14.7 | 15.9 | |p | | | | | |00424 06286| +810112 |CL TrA |162710.8-625225 |E | 14.9 | 15.9 | |p | | | | | |00424 UCAC2| +810113 |CM TrA |162728.1-611531 |E/SD: | 13.0 | 13.7 | |p |24656.752 | | 0.92553 | | |00424 UCAC2| +810114 |CN TrA |162829.6-615551 |RR | 13.9 | 14.7 | |p | | | | | |00424 UCAC2| +810115 |CO TrA |162820.7-602019 |RR | 15.3 | 16.2 | |p | | | | | |00424 06286| +810116 |CP TrA |162857.0-615812 |SRA | 14.3 | 16.3 | |p |23914. | | 214. | |Me |00424 06286| +810117 |CQ TrA |162901.8-633825 |RR | 13.7 | 15.2 | |p | | | | | |00424 UCAC2| +810118 |CR TrA |162926.6-621055 |M | 13.0 | 16.0 : | |p |24320. | | 292. | | |00424 UCAC2| +810119 |CS TrA |162954.3-643645 |E: | 14.1 | 14.8 | |p | | | | | |00424 06286| +810120 |CT TrA |162920.9-611103 |E/SD | 14.8 | 16.0 | |p |24320.663 | | 1.1464 | | |00424 06286| +810121 |CU TrA |163102.6-650205 |RRAB | 13.0 | 15.0 | |p |24285.763 | | 0.4499 | | |00424 UCAC2| +810122 |CV TrA |163025.7-603156 |RR | 13.4 | 14.1 | |p |24650.657 | | 0.51027 | | |00424 09611| +810123 |CW TrA |163046.3-614217 |RR | 13.9 | 14.7 | |p | | | | | |00424 UCAC2| +810124 |CX TrA |163112.8-612213 |M | 14.0 |< 16.5 | |p |23950. | | 292. | |Me |00424 06286| +810125 |CY TrA |163119.0-604551 |E/SD: | 15.3 | 16.3 | |p |24710.659 | | 2.1058 | | |00424 UCAC2| +810126 |CZ TrA |163140.0-613910 | | 13.2 | 14.3 | |p | | | | | |00424 2MASS| +810127 |DD TrA |163148.2-614638 |M: | 14.6 |< 16.3 | |p |24320. | | 157.6 | | |00424 06286| +810128 |DE TrA |163152.6-623327 |SR | 14.6 | 16.5 | |p |23914. | | 291. | | |00424 06286| +810129 |DF TrA |163158.2-610755 |S: | 15.0 | 15.5 | |p | | | | | |00424 2MASS| +810130 |DG TrA |163316.8-630053 |M | 14.2 |< 16.3 | |p |23914. | | 270. | | |00424 2MASS| +810131 |DH TrA |163320.5-613211 |RR: | 15.8 | 16.3 | |p | | | | | |00424 UCAC2| +810132 |DI TrA *|163355.1-643441 |RR: | 13.6 | 14.4 | |p | | | | | |00424 UCAC2| +810133 |DK TrA |163356.9-642946 |S: | 14.5 | 15.1 | |p | | | | | |00424 UCAC2| +810134 |DL TrA |163342.9-621403 |M: | 15.0 |< 16.5 | |p |24320. | | 206. | | |00424 UCAC2| +810135 |DM TrA |163347.5-613903 |S: | 13.1 | 13.6 | |p | | | | | |00424 | +810136 |DN TrA |153353.8-613653 |S: | 14.1 | 15.0 | |p | | | | | |00424 UCAC2| +810137 |DO TrA |163557.8-644511 |M | 13.4 |< 16.4 | |p |24710. | | 233.5 | | |00424 06286| +810138 |DP TrA |163613.1-634213 |RR | 13.4 | 14.8 | |p | | | | | |00424 06286| +810139 |DQ TrA |163603.2-612302 |RR | 15.0 | 15.9 | |p | | | | | |00424 06286| +810140 |DR TrA |153544.3-615725 |M: | 15.0 |< 16.5 | |p |24650. | | 200. | | |00424 06286| +810141 |DS TrA |163707.6-641710 |RRAB | 13.2 | 14.5 | |p |24655.755 | | 0.51345 | | |00424 06286| +810142 |DT TrA |163732.8-650442 |M | 12.5 | 16.1 | |p |24710. | | 297. | |Me |00424 06286| +810143 |DU TrA |163708.0-622728 |M | 13.8 | 16.4 | |p |23900. | | 241. | |Me |00424 06286| +810144 |DV TrA *|163925.4-643110 |SR: | 13.2 | 16.1 | |p |24273. | | 34.3 | | |00424 06286| +810145 |DW TrA |164101.7-633234 |RR | 13.4 | 14.9 | |p | | | | | |00424 UCAC2| +810146 |DX TrA |164221.0-620359 |E | 12.9 | 13.2 | |p |24320.695 | | 1.341 | | |00424 06286| +810147 |DY TrA |164436.6-613408 |M: | 15.0 |< 16.5 | |p |24300. | | 260. : | | |00424 06286| +810148 |DZ TrA *|164601.7-630451 |E/SD | 15.2 | 16.3 | |p |24650.657 | | 4.943 | | |00424 UCAC2| +810149 |EE TrA |164612.5-622012 |S: | 13.0 | 14.0 | |p | | | | | |00424 06286| +810150 |EF TrA |164034.1-681506 |M | 9.2 | 11.9 : | |V |54686. | | 219.0 |45 |Me |00001 08661| +810151 |EG TrA |151801.1-653100 |EA/SD: | 10. | 11.5 | |p | | | | |B9-A1V |00085 08667| +810152 |EH TrA *|161833.8-694357 |EA/SD | 11.3 | 13.6 | |V |34239.430 | | 3.83301 |42 *| |00080 03784| +810153 |EI TrA |162623.8-653012 |M | 11.5 |< 13.5 | |p | | | | |Me |00085 02382| +810154 |EK TrA *|151400.4-650536 |UGSU | 10.4 |< 15.0 | |V | | |( 231. ) | | |09276 08852| +810155 |EL TrA *|161321.3-695804 |EB/KE | 10.8 | 11.2 | 10.9 |V |40381.97915 | | 0.54550918 | | |00001 02382| +810156 |EM TrA *|145633.2-680835 |EB/KE | 10.1 | 10.5 | 10.4 |p |38232.773 | | 1.03026 | | |04181 03776| +810157 |EN TrA *|145700.7-685023 |CEP: | 8.7 | 9.1 | |p |41785.0 | | 36.54 |32 |F2Ib |03939 09423| +810158 |EO TrA |154913.3-641847 |EA/SD | 11.4 | 13.5 | |p |15499.680 | | 2.141744 |13 *| |08040 02834| +810159 |EP TrA *|154926.2-641557 |EA/D | 9.4 | 9.9 | 9.5 |p |38204.360 | | 2.14165 |16 |B9III |04399 08953| +810160 |EQ TrA *|161000.0-660930 |EA/D | 8.9 | 9.5 | 9.0 |p |41100.006 | | 2.709149 |20 *|F3V |00001 08953| +810161 |ER TrA *|161601.8-631221 |M | 14. |< 16.0 | |p |36810. | | | |Me |08121 04001| +810162 |ES TrA |161750.0-602927 |RR | 16.0 |< 17.0 | |p |36732.281 :| | 1.841 /N| | |08121 04001| +810163 |ET TrA |161858.5-622018 |EA | 14.6 | 15.7 | |p |36732.377 | | | | |08121 04001| +810164 |EU TrA |161919.3-602339 |EA | 14.9 | 15.5 | |p |36772.219 | | | | |08121 04001| +810165 |EV TrA |161949.7-602008 |RRAB | 15.5 |< 16.5 | |p |36724.362 | | 0.6086 |15 | |08121 04001| +810166 |EW TrA |162128.1-613121 |CWA: | 15.1 | 16.0 | |p |36751. | | 64. | | |08121 04001| +810167 |EX TrA |162242.6-612436 |M | 13.0 |< 16.5 | |p |36780. | | | |Me |08121 04001| +810168 |EY TrA |162236.0-605144 |RRAB | 15.6 |< 16.3 | |p |36723.385 | | 0.6227 |20 | |08121 04001| +810169 |EZ TrA |162518.9-602832 |RR | 15.6 |< 16.2 | |p |36780.449 | | | | |08121 04001| +810170 |FF TrA |162626.4-605438 |EA/SD: | 12.3 | 13.5 | |p |36695.379 | | 2.422 | | |08121 04001| +810171 |FG TrA |162734.1-620514 |RR | 15.2 |< 16.0 | |p |36790.342 :| | | | |08121 04001| +810172 |FH TrA *|162744.5-604933 |RRAB | 15.5 |< 16.1 | |p |36781.353 | | 0.37582 |20 | |08121 04001| +810173 |FI TrA |162758.6-615120 |RRAB | 16.0 |< 17.0 | |p |36730.328 | | 0.4754 | | |08121 04001| +810174 |FK TrA *|162905.0-622926 |EA | 14.5 | 15.0 | |p |36731.317 | | 0.5817 | | |08121 04001| +810175 |FL TrA |163036.3-615028 |UG | 15.5 |< 17.0 | |p |36723. | | | | |08121 04001| +810176 |FM TrA *|163342.9-613537 |M | 14.5 |< 17.0 | |p |36838. | | | | |08121 04001| +810177 |FN TrA |163522.6-605009 |RRAB | 14.8 | 15.8 | |p |36780.491 | | 0.74657 |25 | |08121 04001| +810178 |FO TrA |163700.2-631334 |EA | 15.8 |< 16.8 | |p |36748.362 | | | | |08121 04001| +810179 |FP TrA |164208.7-692445 |RRAB | 14.0 | 15.5 | |p |36568.400 | | 0.4569309 |12 | |04489 04489| +810180 |FQ TrA |164053.5-622546 |RR: | 15.8 |< 16.8 | |p | | | | | |08121 04001| +810181 |FR TrA |164155.4-622337 |RRAB | 14.8 | 15.6 | |p |36725.370 | | 0.6057 |10 | |08122 04001| +810182 |FS TrA |164311.7-663734 |M | 11.5 |< 14.5 | |V |54518. | | 272.6 | | |00001 08661| +810183 |FT TrA |164320.0-612740 |RRC | 14.0 | 14.6 | |p |36721.325 | | 0.283 |30 | |08122 04001| +810184 |FU TrA |164348.3-611534 |RRAB | 14.8 | 15.9 | |p |36694.355 | | 0.4945 |15 | |08122 04001| +810185 |FV TrA |164604.6-615440 |RRAB | 14.9 | 15.9 | |p |36720.289 | | 0.493 |15 | |08122 04001| +810186 |FW TrA |165403.5-645935 |SR | 11.5 | 12.5 | |p | | | | | |06561 06561| +810187 |FX TrA |165638.8-665540 |M: | 14.8 |< 16.1 | |P |38806. | | 253.6 | | |08661 08661| +810188 |FY TrA |170117.3-661055 |M | 12.4 |< 15.5 | |p |36820. | | 223. | |Me |04489 04489| +810189 |FZ TrA |150603.4-654322 |EA/SD: | 15. | 17. | |p |38549.29 | | | | |03776 03776| +810190 |GG TrA |151910.8-670832 |EA/SD: | 15. | 17. | |p |38551.39 | | | | |03776 03776| +810191 |GH TrA |152210.9-664403 |RR | 15. | 16. | |p | | | | | |03776 03776| +810192 |GI TrA |154137.4-682642 |RR | 15. | 16. | |p | | | | | |03776 03776| +810193 |GK TrA |154101.0-645129 |RR | 15. | 16. | |p |38561.38 | | | | |03776 03776| +810194 |GL TrA |154330.1-652657 |SR | 13.5 | 15.5 | |p | | | | | |03776 03776| +810195 |GM TrA |154352.7-644029 |RR | 15. | 16. | |p | | | | | |03776 03776| +810196 |GN TrA *|154859.2-664429 |EA/KE | 11.7 | 12.1 | 12.0 |p |28664.350 | | 0.614605 | | |03948 02382| +810197 |GO TrA |155206.5-663110 |RR | 15.5 | 17. | |p |38551.37 | | | | |03776 03776| +810198 |GP TrA |160100.6-693518 |RR | 14.5 | 15.5 | |p | | | | | |03776 03776| +810199 |GQ TrA |162120.0-655149 |EA/SD: | 9.89 | 10.78 | |V |16166.795 | | 2.33947 | |A3V |08040 CPD | +810200 |GR TrA |162813.5-690822 |RRAB | 13.6 | 14.6 | |p |36605.358 | | 0.5401681 |30 | |03921 03921| +810201 |GS TrA |164102.1-701504 |EA/SD: | 13.8 | 14.5 | |p |36604.942 | | 2.521956 |10 *| |03921 03921| +810202 |GT TrA |164250.7-673357 |RRAB | 14.7 | 15.6 | |p |36605.394 | | 0.5384785 |14 | |03921 03921| +810203 |GU TrA |150157.4-694451 |SR | 13.5 | 15. | |p | | | | |Me |03776 03776| +810204 |GV TrA |151925.1-654857 |SR | 15. | 16.5 | |p | | | | | |03776 03776| +810205 |GW TrA |152428.2-672354 |SR: | 16. |< 17. | |p | | | | | |03776 03776| +810206 |GX TrA |152712.5-653207 |SR | 15. | 16. | |p | | | | | |03776 03776| +810207 |GY TrA |154620.6-664115 |SR | 15. | 16. | |p | | | | | |03776 03776| +810208 |GZ TrA |155426.7-691057 |SR | 14.5 | 15.5 | |p | | | | | |03776 03776| +810209 |HH TrA |155920.4-671557 |L | 14.5 | 15.5 | |p | | | | | |03776 03776| +810210 |HI TrA |154233.3-664956 |M: | 11.6 | 17. | |p | | | | | |05829 05829| +810211 |HK TrA |154230.8-653847 |M | 11.0 | 18. | |p | | | | |Me |05834 05834| +810212 |HL TrA |155135.2-641701 |M | 12.0 | 17.3 | |p | | | | |Me |05834 05834| +810213 |HM TrA |161932.0-622139 |DSCT | 14.0 | 14.5 | |p |36779.244 | | 0.10235 | | |08121 04001| +810214 |HN TrA |163609.8-651113 |M | 12.2 | 17.5 | |p | | | | |Me |05834 05834| +810215 |HO TrA |164453.0-695923 |LB | 12. | 13.5 | |p | | | | | |06561 05937| +810216 |HP TrA *|152606.5-632538 |E | 8.2 | 8.6 | |p |38196.250 | | 2.75815 | |B5III |06336 06336| +810217 |HQ TrA |160934.8-605355 |L | 14.5 | 15. | |p | | | | | |08121 04001| +810218 |HR TrA |161502.2-621934 |SR: | 12.7 | 14.0 | |p |36770. | | 130. : | | |08121 04001| +810219 |HS TrA |161711.6-614250 |E | 16.0 |< 17.0 | |p |36733.478 | | | | |08121 04001| +810220 |HT TrA |162139.9-605144 |E | 14.5 | 15.0 | |p |36731.302 | | | | |08121 04001| +810221 |HU TrA |162315.0-614526 |L | 15.2 |< 16.5 | |p |36689. | | | | |08121 04001| +810222 |HV TrA *|162544.3-620646 |EA: | 14.5 | 15.2 | 14.8 |p |36759.271 | | 0.59064 |20 : | |08121 04001| +810223 |HW TrA |162616.2-610915 |L | 16.0 |< 17.0 | |p | | | | | |08121 04001| +810224 |HX TrA |162714.1-620937 |SR | 14.5 | 15.2 | |p |36770. | | 110. : | | |08121 04001| +810225 |HY TrA |162723.6-623006 |SR: | 14.5 | 16.5 | |p |36720. | | 100. : | | |08121 04001| +810226 |HZ TrA |162743.0-622309 |L | 14.6 | 15.2 | |p |36720. | | | | |08121 04001| +810227 |II TrA |162741.7-620309 |SR | 14.0 | 14.6 | |p |36720. | | 59. | | |08121 04001| +810228 |IK TrA |163003.6-620811 |E | 15.3 | 15.8 | |p |36748.362 | | | | |08121 04001| +810229 |IL TrA |163043.8-601948 |L | 15.4 |< 16.0 | |p | | | | | |08121 04001| +810230 |IM TrA *|163316.3-602416 |SR: | 15.2 | 15.7 | |p |36730. | | | | |08121 04001| +810231 |IN TrA |163437.2-633423 |SR | 14.4 | 14.9 | |p |36740. :| | 60. : | | |08121 04001| +810232 |IO TrA |163619.6-623624 |SR: | 15.7 |< 17.0 | |p |36838. :| | 180. : | | |08121 04001| +810233 |IP TrA |152710.9-615136 |M | 11.2 |< 13.5 | |p | | | | |Me |05834 05834| +810234 |IQ TrA |153659.1-645349 |EA | 9.9 | 10.3 | |p | | | | | |06318 06318| +810235 |IR TrA |155247.1-644153 |M | 13.5 |< 18.3 | |p | | | | |Me |04488 UCAC2| +810236 |IS TrA |160911.8-691659 |M: | 11.9 |< 13.5 | |p | | | | |Me |05834 05834| +810237 |IT TrA |161831.5-685605 |RRAB | 13.5 | 15.1 | |p |37419.932 | | 0.4706768 |13 : | |06834 06834| +810238 |IU TrA |162815.9-653911 |M | 11.7 |< 15. | |p | | | | |Me |05834 05834| +810239 |IV TrA |164314.9-620255 |L | 15.5 |< 16.3 | |p | | | | | |08122 04001| +810240 |IW TrA *|164415.6-623421 |EW:/KW: | 14.2 | 14.6 | 14.5 : |p |36723.435 | | 0.3146 | | |08122 04001| +810241 |IX TrA |151833.1-685329 |RR: | 15.5 | 17.5 | |p | | | | | |03776 03776| +810242 |IY TrA |154033.2-673653 |L | 13. | 14. | |p | | | | | |02554 02834| +810243 |IZ TrA |154240.4-655528 |LB | 9.7 | 10.5 | |p | | | | |M6III |09956 CPD | +810244 |KK TrA |154700.1-654359 |L | 9.5 | 10.5 | |p | | | | | |00085 CoD | +810245 |KL TrA |162714.9-623442 |L | 15.5 |< 16.2 | |p |36800. | | | | |08121 04001| +810246 |KM TrA |163302.2-673519 |SR: | 11.4 | 12.5 | |p | | | | | |02554 05829| +810247 |KN TrA |163235.6-603235 |IS: | 12.5 | 13.5 | |p | | | | | |08121 04001| +810248 |KO TrA |163536.8-611342 |RR | 15.7 |< 16.7 | |p |36725.308 :| | | | |08121 04001| +810249 |KP TrA |164237.5-632855 |L | 15.7 | 16.1 | |p |36775. :| | | | |08122 04001| +810250 |KQ TrA |164314.0-615936 |E: | 14.6 | 15.2 | |p |36788.345 | | | | |08122 04001| +810251 |KR TrA |164615.1-622414 |E: | 14.3 | 14.6 | |p |36695.358 | | | | |08122 04001| +810252 |KS TrA |151341.8-684429 |M: | 12.4 | 15. | |p | | | | |M4e |04618 UCAC2| +810253 |KT TrA |153207.5-664246 |M: | 11.7 | 17.3 | |p | | | | | |04618 05834| +810254 |KU TrA |153822.8-671601 |M: | 15. |< 18. | |p | | | | | |04488 UCAC2| +810255 |KV TrA |154532.5-665022 |M: | 13.2 | 18. | |p | | | | | |04488 07842| +810256 |KW TrA |163851.5-631507 | | 15.4 | 17.8 | |p | | | | | |04488 UCAC2| +810257 |KX TrA *|164435.5-623714 |ZAND: | 10.1 | 13.6 | |B | | | | |pec(e) |07930 08077| +810258 |KY TrA *|152816.9-615258 |XND | 17.5 | 20.5 | |B | | | | | |08544 08544| +810259 |KZ TrA *|163216.7-672740 |XBPR | 18.23 | 19.0 | |V | | | | |pec(cont) |04558 04531| +810260 |LL TrA |160833.0-625855 |ACV | 6.88 |( 0.028 )| |V | | | 4.41 | |B9p(Si) |08415 CPD | +810261 |LM TrA *|162033.6-683416 |M | 10.8 |< 15.0 | |V |55038. | | 205.7 | | |00001 UCAC2| +810262 |LN TrA |164102.4-691859 |M | 14.4 |< 16.1 | |V |38644. | | 265.5 | | |08661 08661| +810263 |LO TrA |164558.1-700403 |M | 12.6 |< 15.0 | |V |54747. | | 202.4 | | |00001 08661| +810264 |LP TrA *|164640.0-670635 |ACV | 5.12 |( 0.033 )| |V | | | 3.76 | |A0p(Si) |08415 CPD | +810265 |LQ TrA |164804.7-651224 |M | 11.4 |< 15.5 | |V |54625. | | 203. | | |00001 08661| +810266 |LR TrA |153049.8-653558 |DCEPS | 7.73 | 7.92 | |V | | | | | |67346 CPD | +810267 |LS TrA |152745.7-630114 |RS | 7.30 | 7.53 | |V | | | | | |69011 CPD | +810268 |LT TrA |160349.3-624136 |WR | 10.2 |( 0.13 )| |V | | | | | |69064 69224| +810269 |LU TrA |160102.1-604419 |XI | 18.6 | 19.2 | |V | | | | | |70131 70132| +810270 |LV TrA |163545.8-670737 |RCB: | 8.28 | 8.35 | |V | | | | | |70066 70133| +810271 |LW TrA |150816.7-685950 |LB: | 8.55 | 8.68 | |Hp| | | | | |HIP HIP | +810272 |LX TrA |152733.1-643153 |SRD: | 5.81 | 5.83 | |Hp| | | | | |HIP HIP | +810273 |LY TrA |153450.3-685321 |LB | 7.10 | 7.29 | |V | | | | | |HIP HIP | +810274 |LZ TrA |153652.7-672905 |LPB | 8.05 | 8.08 | |Hp| | | | | |HIP HIP | +810275 |MM TrA |155601.7-660909 |BE | 10.45 | 10.60 | |Hp| | | | | |HIP HIP | +810276 |MN TrA |155828.3-620338 |EA | 8.50 | 9.00 | |Hp| | | | | |HIP HIP | +810277 |MO TrA |160125.3-665055 |SRB | 7.16 | 7.42 | |Hp| | | | | |HIP HIP | +810278 |MP TrA |160153.0-642401 |E: | 7.76 | 7.87 | |Hp| | | | | |HIP HIP | +810279 |MQ TrA |160344.5-602955 |BE | 6.86 | 7.25 | |Hp| | | | | |HIP HIP | +810280 |MR TrA |162436.3-654318 |ACV | 8.71 | 8.82 | |Hp| | | | | |HIP HIP | +810281 |MS TrA |162841.3-630836 |ACV: | 8.86 | 8.96 | |Hp| | | | | |HIP HIP | +810282 |MT TrA |163211.7-694556 |LB: | 8.44 | 8.55 | |Hp| | | | | |HIP HIP | +810283 |MU TrA |163921.1-701007 |ACV | 9.27 | 9.34 | |Hp| | | | | |HIP HIP | +810284 |MV TrA |164153.5-632410 |SRD | 9.01 | 9.20 | |Hp| | | | | |HIP HIP | +810285 |MW TrA |164440.5-684817 |LB: | 8.60 | 8.71 | |Hp| | | | | |HIP HIP | +810286 |MX TrA |165934.0-691605 |ACV | 5.75 | 5.77 | |Hp| | | | | |HIP HIP | +810287 |MY TrA |150820.0-700435 |M | 10.8 |< 14.0 | |V |52786 | | 314. | |M5e |78090 USNO | +810288 |MZ TrA *|153434.1-650611 |EA | 8.57 | 8.76 | 8.73 |V |48127.076 | | 4.73065 | |A4V |78011 DM | +810289 |NN TrA |161234.8-663636 |M | 10.4 |< 13.2 | |V |52491 | | 259. | |Me |78090 USNO | +810290 |NO TrA *|162004.5-695748 |EA | 8.67 | 8.86 | 8.85 |V |48022.005 | | 5.66215 | |F6V |78011 DM | +810291 |NP TrA |163305.2-605413 |DSCTC | 7.88 |( 0.03 b )| |V | | | 0.0613 | |A3III |78037 DM | +810292 |NQ TrA |162211.7-611555 |S: | 13.3 | 14.0 | |p | | | | | |00424 | +810293 |NR TrA |161848.2-602749 |NA | 8.5 |< 19. | |V |54570. |2008 | | | |79255 | +810294 |NS TrA |150729.8-653414 |EA | 12.30 | 14.3 | 12.33 : |V |52417.590 | | 19.0017 |06 : | |79003 79087| +810295 |NT TrA *|154051.2-614343 |EA | 9.20 | 9.56 | 9.51 |V |52062.557 | | 3.2300 |10 |B9IV |79006 DM | +810296 |NU TrA |163909.3-692425 |EA | 11.72 | 12.75 | 11.85 |V |52439.601 | | 1.92834 |10 | |79009 79106| +810297 |NV TrA |164005.6-625556 |EA | 9.17 | 9.6 : | 9.5 : |V |52860.710 | | 7.9935 |05 |A2mA3-A7 |79018 DM | +810298 |NW TrA |150235.9-681636 |M | 10.6 |< 15.0 | |V |55068. | | 262. | | |80001 2MASS| NL80_2 +810299 |NX TrA |150431.1-682708 |M | 10.7 |< 13.7 | |V |54136. | | 298. | | |80399 80399| NL80_2 +810300 |NY TrA *|150710.9-650940 |M | 10.7 |< 13.0 | |V |55013. | | 342. | | |80001 2MASS| NL80_2 +810301 |NZ TrA |150834.7-654409 |M | 12.5 |< 14.3 | |V |54142. | | 302. | | |80406 80406| NL80_2 +810302 |OO TrA |151235.0-643727 |M: | 13.0 |< 14.7 | |V |54126. | | 756. : | | |80001 2MASS| NL80_2 +810303 |OP TrA |151300.7-650435 |M | 12.8 |< 15.5 | |V |54372. | | 277. | | |80406 80406| NL80_2 +810304 |OQ TrA |151311.1-685120 |M | 12.0 |< 14.5 | |V |55088. | | 213.1 | | |80002 2MASS| NL80_2 +810305 |OR TrA |151531.1-663232 |M | 12.6 |< 15.1 | |V |54755. | | 329. | | |80406 80406| NL80_2 +810306 |OS TrA |151555.1-645251 |M | 12.1 |< 14.3 | |V |54643. | | 199. | | |80406 80406| NL80_2 +810307 |OT TrA |151821.9-643209 |M | 11.8 |< 15.3 | |V |54884. | | 236. | | |80001 2MASS| NL80_2 +810308 |OU TrA |151928.8-692030 |M | 12.6 |< 14.6 | |V |54602. | | 246. | | |80406 80406| NL80_2 +810309 |OV TrA |152135.5-641213 |M | 13.0 |< 17.1 | |V |53824. | | 269. | | |80406 80406| NL80_2 +810310 |OW TrA |152244.8-642428 |M | 12.5 |< 14.8 | |V |54133. | | 280. | | |80406 80406| NL80_2 +810311 |OX TrA |152441.8-651605 |M | 12.4 |< 16.0 | |V |54619. | | 283. | | |80406 80406| NL80_2 +810312 |OY TrA |152512.3-633349 |M | 13.6 |< 15.5 | |V |54136. | | 313. | | |80406 80406| NL80_2 +810313 |OZ TrA |152516.4-651210 |M | 12.5 |< 16.0 | |V |54204. | | 252. | | |80406 80406| NL80_2 +810314 |PP TrA |152635.0-625304 |M | 11.0 |< 14.1 | |V |54643. | | 246. | | |80406 80406| NL80_2 +810315 |PQ TrA |152749.3-701641 |RRAB | 13.0 | 14.3 | |V |53452.83 | | 0.486910 |08 | |80001 USNO | NL80_2 +810316 |PR TrA |153055.1-670754 |M | 11.1 |< 13.5 | |V |54594. | | 308. | |M9-M10e |80406 80406| NL80_2 +810317 |PS TrA |153129.2-661435 |M | 12.5 |< 16.3 | |V |54320. | | 240. | | |80406 80406| NL80_2 +810318 |PT TrA |153141.9-653610 |M | 12.0 |< 13.5 | |V |54500. | | 300.2 | | |80002 2MASS| NL80_2 +810319 |PU TrA |153151.7-633506 |M | 12.7 |< 14.5 | |V |54655. | | 394. | | |80415 80415| NL80_2 +810320 |PV TrA |153411.2-643622 |M | 10.8 |< 14.5 | |V |54916. | | 236. | | |80001 2MASS| NL80_2 +810321 |PW TrA |153440.3-625319 |M | 12.8 |< 16.4 | |V |54339. | | 300. | | |80415 80415| NL80_2 +810322 |PX TrA |153528.3-643749 |M | 11.3 |< 15.0 | |V |54746. | | 439. | |M8-M9 |80001 2MASS| NL80_2 +810323 |PY TrA |153908.1-652514 |M | 12.2 |< 14.7 | |V |54542. | | 241. | | |80415 80415| NL80_2 +810324 |PZ TrA |154055.8-682612 |M | 11.1 |< 14.5 | |V |54529. | | 339. | | |80415 80415| NL80_2 +810325 |QQ TrA |154226.3-670754 |M | 12.5 |< 14.6 | |V |54717. | | 229. | | |80415 80415| NL80_2 +810326 |QR TrA |154343.4-633953 |M | 12.7 |< 14.5 | |V |54688. | | 230. | | |80415 80415| NL80_2 +810327 |QS TrA |154429.9-611711 |M | 12.5 |< 14.3 | |V |54571. | | 336. | | |80415 80415| NL80_2 +810328 |QT TrA |154643.0-634135 |M | 11.9 |< 14.4 | |V |54695. | | 278. | | |80415 80415| NL80_2 +810329 |QU TrA |154754.6-623406 |XR: | 20.42 |( 0.31 )| |r'| | | 0.0126 | | |80418 80418| NL80_2 +810330 |QV TrA |154802.8-635755 |M | 13.4 |< 16.7 | |V |54755. | | 239. | | |80415 80415| NL80_2 +810331 |QW TrA |154945.4-642342 |M: | 13.4 |< 15.9 | |V |54536. | | 256. | | |80415 80415| NL80_2 +810332 |QX TrA |155230.1-693607 |M | 11.5 |< 15.7 | |V |54640. | | 220. | | |80415 80415| NL80_2 +810333 |QY TrA |155412.8-670533 |NL: | 15.9 | 18.7 | |R | | | | | |80001 USNO | NL80_2 +810334 |QZ TrA |155622.7-612434 |M | 11.9 |< 14.0 | |V |54892. | | 238.8 | | |80002 2MASS| NL80_2 +810335 |V0335 TrA |155832.1-652220 |M | 12.4 |< 16.0 | |V |54504. | | 290. | | |80415 80415| NL80_2 +810336 |V0336 TrA *|155906.4-631750 |EW | 10.46 | 11.20 | 11.1 |V |52151.542 | | 0.266768 | |K1Ve: |80365 80365| NL80_2 +810337 |V0337 TrA |160007.0-683517 |M | 11.0 |< 14.5 | |V |54580. | | 205.1 | | |80002 USNO | NL80_3 +810338 |V0338 TrA *|160228.7-672910 |SR | 11.8 | 12.5 : | |V |54596. | | 163. | | |80001 GSC | NL80_3 +810339 |V0339 TrA |160322.4-674751 |M | 11.6 |< 14.2 | |V |54684. | | 270. | | |80415 80415| NL80_3 +810340 |V0340 TrA |160346.9-641103 |M | 12.9 |< 14.7 | |V |54526. | | 304. | | |80415 80415| NL80_3 +810341 |V0341 TrA |160412.0-691002 |RRAB | 13.0 | 14.1 | |V |53664.506 | | 0.601064 |12 | |80135 GSC | NL80_3 +810342 |V0342 TrA |160604.8-645319 |SRA | 12.7 | 14.2 | |V |54526. | | 395. | | |80415 80415| NL80_3 +810343 |V0343 TrA |161645.9-604420 |LB | 15.0 | 17.5 | |R | | | | | |80440 2MASS| NL80_3 +810344 |V0344 TrA *|164801.2-671510 |EW | 11.34 | 11.76 | 11.74 |V |55697.061 | | 0.4225126 | | |80622 80622| NL80_3 +810345 |V0345 TrA *|164803.1-671518 |EA | 11.19 | 11.45 | 11.24 |V |55722.029 | | 1.59339 | | |80622 80622| NL80_3 +819009 |iot TrA |162757.3-640329 |GDOR: | 5.30 | 5.42 | |Hp| | | | | |75029 CPD | +820001 |R Tuc |235726.4-652305 |M | 8.5 | 15.2 | |V |39745. | | 286.06 |41 |M5e |00001 00002| +820002 |S Tuc |002307.7-614017 |M | 8.2 | 15.0 | |V |41432. | | 240.71 |44 |M3e-M5II-Ibe |00001 00002| +820003 |T Tuc *|224033.5-613314 |M | 7.50 | 13.8 | |V |41974. | | 250.3 |46 |M3IIe-M6IIe |00001 00002| +820004 |U Tuc *|005713.1-750000 |M | 8.0 | 14.8 | |V |44914. | | 264.8 : |46 |M3e-M7e |00001 00002| +820005 |V Tuc *|005146.6-715953 |EA/SD | 10.60 |( 2.40 )|( 0.11 )|V |36139.142 | | 0.87091649 |21 *|B9/A2(IV) |02487 10055| +820006 |W Tuc *|005809.7-632344 |RRAB | 10.73 | 11.92 | |V |36878.431 | | 0.64222988 |18 |A5-F4: |00639 06286| +820007 |X Tuc |224948.8-645931 | | 11.5 | 13.5 : | |p | | | | | |01017 09611| +820008 |Y Tuc |231717.9-641642 | | 12. |< 14.5 | |p | | | | | |01017 09611| +820009 |Z Tuc |005511.4-724225 |L: | 14.3 | 15.2 | |p | | | | | |V 001 V 212|=SMC V1176 +820010 |RR Tuc *|005802.6-724023 |DCEP | 16.6 | 17.2 | |p |27683.401 | | 4.769900 |25 | |V 209 V 212|=SMC V1401 +820011 |RS Tuc |005744.4-724617 |DCEP | 17.1 | 18.1 | |p |28845.285 | | 1.453900 |12 | |V 209 V 212|=SMC V1381 +820012 |RT Tuc |005846.6-725505 |DCEP | 16.37 | 17.44 | |V |24033.774 | | 2.667278 |14 | |V 209 V 212|=SMC V1441 +820013 |RU Tuc |005919.1-725818 |DCEP | 15.67 | 16.58 | |V |31669.540 | | 2.161022 |18 | |V 209 V 212|=SMC V1481 +820014 |RV Tuc *|005828.9-723550 |DCEP | 16.6 | 17.7 | |p |32849.266 | | 2.107633 |14 | |V 209 V 212|=SMC V1427 +820015 |RW Tuc |010005.3-725641 |DCEP | 16.4 | 17.8 | |p |29897.452 | | 3.244678 |16 | |V 209 V 212|=SMC V1542 +820016 |RX Tuc |010019.5-723839 |DCEP | 15.5 | 16.7 | |p |26323.283 | | 4.290777 |16 | |V 209 V 212|=SMC V1558 +820017 |RY Tuc |010100. -722152:| | 13. |< 16. | |p | | | | | |V 248 |=SMC V1615 +820018 |RZ Tuc |010042.1-724941 |DCEP | 15.9 | 17.5 | |p |32023.603 | | 2.973182 |16 | |V 209 V 212|=SMC V1582 +820019 |SS Tuc *|010149.5-720545 |DCEP | 12.87 | 13.57 | |V |27750.478 | | 49.684 |24 |K5-8: |V 059 V 212|=SMC V1668 +820020 |ST Tuc |010022.4-724710 |DCEPS | 16.8 | 17.1 | |p |29926.228 | | 3.298447 |44 | |V 209 V 212|=SMC V1560 +820021 |SU Tuc *|010320.7-724857 |DCEP | 16.6 | 17.7 | |p |26508.640 | | 2.905313 |16 | |V 209 V 212|=SMC V1795 +820022 |SV Tuc |010312.3-715048 |DCEP | 15.7 | 16.3 | |B |32441.361 | | 5.584440 |28 | |V 209 V 212|=SMC V1775 +820023 |SW Tuc |010328.0-724615 |DCEP | 15.6 | 17.5 | |p |32880.399 | | 3.591696 |15 | |V 209 V 212|=SMC V1807 +820024 |SX Tuc *|010440.0-721911 |DCEP | 16.1 | 17.1 : | |p |26331.335 | | 3.351689 |14 | |V 209 V 212|=SMC V1890 +820025 |SY Tuc *|010414.8-720919 |EB | 15.0 | 15.7 | 15.4 |p |29958.306 | | 8.786497 | | |V 209 V 212|=SMC V1867 +820026 |SZ Tuc |010444.0-722048 | | 15.9 | 17.8 | |B |31108.274 | | 2.893066 |16 | |V 059 V 212|=SMC V1893 +820027 |TT Tuc |010537.8-715036 |DCEP | 16.0 | 17.4 | |B |23340.586 | | 2.346362 |14 | |V 209 V 212|=SMC V1941 +820028 |TU Tuc |010744.0-721922 |DCEP | 16.0 | 17.5 | |B |32142.259 | | 2.308962 |21 | |V 209 V 212|=SMC V2044 +820029 |TV Tuc *|010716.4-722613 |DCEP | 15.5 | 16.6 | |p |30528.640 | | 3.802571 |14 | |V 209 V 212|=SMC V2016 +820030 |TW Tuc |010724.7-723121 |DCEP | 15.3 | 16.7 | |B |32466.394 | | 6.112096 |19 | |V 209 V 212|=SMC V2030 +820031 |TX Tuc |010714.4-715511 |DCEP | 16.0 | 17.3 | |B |26594.456 | | 2.557713 |19 | |V 209 V 212|=SMC V2014 +820032 |TY Tuc |234850.8-693212 | | 12.3 | 12.7 | |p | | | | | |09985 | +820033 |TZ Tuc *|005259.8-695310 |M | 11.2 |< 17.7 | |p |24359. | | 239.92 | |M0e-M3Iab:e |03641 09255| +820034 |UU Tuc |222219.0-605215 |M | 10.4 | 13.6 | |p |24005. | | 335. | |M4e |00210 05232| +820035 |UV Tuc |223810.4-645816 |M | 11.7 |< 13.4 | |p |23985. | | 310. | |M4e |00210 09611| +820036 |UW Tuc *|000558.6-740649 |RR | 14.9 | 15.8 | |p |25479.55 | | 0.46619 | | |00193 06286| +820037 |UX Tuc *|001409.5-723635 |RRAB | 13.5 | 14.7 | |p |25525.40 | | 0.509104 |22 |F0-F5 |03641 09255| +820038 |UY Tuc |001511.3-601325 |SR | 12.2 | 13.8 | |p | | | 105.2 | | |00193 06286| +820039 |UZ Tuc |001542.2-585301 |RRAB | 13.3 | 14.4 | |p |24765.80 | | 0.62536 | | |00193 06286| +820040 |VV Tuc |001853.8-740157 |I | 13.1 | 14.3 | |p | | | | | |V 203 V 204|=SMC V0011 +820041 |VW Tuc |002019.1-735208 |UG: | 15.4 |< 16.5 | |p | | | | | |V 203 V 204|=SMC V0012 +820042 |VX Tuc |002621.9-591343 |RRAB | 14.7 | 15.9 | |p |24760.75 | | 0.51104 | | |00193 06286| +820043 |VY Tuc |002703.9-604827 |RRAB | 14.5 | 16.1 | |p |24763.70 | | 0.66517 | | |00193 06286| +820044 |VZ Tuc |003401.3-731616 |NA | 11.4 |< 18. | |p |25230. |1927 | | | |V 203 V 204|=SMC V0177 +820045 |WW Tuc |004509.8-594608 |RRAB | 14.6 | 15.6 | |p |24761.75 | | 0.73396 | | |00193 UCAC2| +820046 |WX Tuc |010301.8-614604 |RRAB | 14.3 | 15.6 | |p |24761.70 | | 0.83750 | | |00193 06286| +820047 |WY Tuc |235117.3-741616 |RRAB | 13.2 | 14.9 | |p |25451.55 | | 0.56030 | | |00193 06286| +820048 |WZ Tuc |011506.7-592033 |RRAB | 13.3 | 14.5 | |p |24762.75 | | 0.45676 | | |00193 06286| +820049 |XX Tuc |011651.6-610104 |SR: | 13.8 | 15.1 | |p |25810. | | 268. | | |00193 06286| +820050 |XY Tuc |234947.5-741134 |RRAB | 13.5 | 14.9 | |p |25481.50 | | 0.55891 | | |00193 06286| +820051 |XZ Tuc |001230.1-740503 |LB: | 11.2 | 12.2 | |p | | | | |M2-3 |V 203 V 204|=SMC V0005 +820052 |YY Tuc *|231100.6-582007 |RRAB | 11.32 | 12.44 | |V |41894.497 | | 0.635021 |13 |A9-F0 |00016 06286| +820053 |YZ Tuc |231500.2-571312 |LB | 10.4 | 11.0 | |p | | | | | |00016 09611| +820054 |ZZ Tuc |221654.0-634815 |M | 11. | 15. | |p | | | | |Me |00085 02386| +820055 |AA Tuc |222145.7-602714 |M | 10.00 |< 13. | |V |40530. | | 216.9 | | |00001 02386| +820056 |AB Tuc |232339.4-662155 |M | 11. |< 15.5 | |p | | | | |Me |00085 02386| +820057 |AC Tuc |233802.6-592629 |EA/SD | 11.5 | 13.1 | |V |34307.380 | | 1.265829 |13 *| |00080 02385| +820058 |AD Tuc *|002225.3-711951 |RRAB | 14.9 | 15.8 | |B |40828.676 | | 0.60626 |26 |F4 |07861 09255| +820059 |AE Tuc |005000.6-623808 |RRAB | 11.52 | 12.53 | |V |34273.232 | | 0.414363 |16 | |00080 02380| +820060 |AF Tuc *|005128.4-710327 |RRAB | 15.8 | 16.8 | |p |33104.622 | | 0.570857 |14 | |03641 09255| +820061 |AG Tuc |005453.3-664229 |RRAB | 12.24 | 13.33 | |V |39792.411 | | 0.602582 |14 | |05233 02380| +820062 |AH Tuc *|010703.4-714259 |RR | 14.7 | 15.5 | |p | | | 0.603334 |21 | |03641 09255| +820063 |AI Tuc *|010848.1-711450 |RRAB | 15.5 | 17.1 | |p |23341.689 | | 0.514051 |17 | |03641 09255| +820064 |AK Tuc *|011015.3-723105 |RRAB | 16.0 | 16.7 | |p | | | 0.686931 |15 | |03641 09255| +820065 |AL Tuc *|011021.5-735156 |RRAB | 14.5 | 15.5 | |p |31397.251 | | 0.533280 |15 | |03641 09255| +820066 |AM Tuc *|011830.6-675505 |RRC | 11.39 | 11.87 | |V |41960.387 | | 0.4056575 |45 |A7:-F3 |00001 02380| +820067 |AN Tuc |233022.3-582535 |EA/SD | 10.2 | 11.4 | |V |34305.650 | | 5.46093 |07 *|A5III(m) |00080 03834| +820068 |AO Tuc *|000406.3-592906 |RRC | 10.88 | 11.40 | |V |41948.542 | | 0.3332332 |42 |A5-F2 |07984 06286| +820069 |AP Tuc *|001711.5-740601 |RRAB | 15.5 | 16.5 | |p |36735.595 | | 0.3888 |20 | |09264 04001| +820070 |AQ Tuc *|001721.5-715457 |EW | 9.91 | 10.48 | 10.48 |V |40477.7743 | | 0.59484267 | |F3/5(+A) |06217 09611| +820071 |AR Tuc *|002154.6-733517 |RRC | 15.3 | 15.7 | |p |36736.600 | | 0.2882 |40 | |09264 04001| +820072 |AS Tuc |002240.5-733101 |DCEP | 16.2 | 16.9 | |p |36779.48 | | 2.911 : | | |V 202 V 022|=SMC V0021 +820073 |AT Tuc |002310.1-733126 |DCEP | 15.70 | 16.73 | |V |32852.400 | | 3.114799 |17 | |V 209 V 212|=SMC V0026 +820074 |AU Tuc *|002434.7-731828 |RRAB | 16.1 | 17.0 | |p |36736.550 | | 0.7398 |20 | |09264 04001| +820075 |AV Tuc *|002537.5-731909 |RRAB | 15.5 | 16.9 | |p |36760.635 | | 0.4844 |20 | |09264 04001| +820076 |AW Tuc |002557.5-741442 |DCEP | 15.94 | 16.90 | |V |27750.478 | | 3.213946 |14 | |V 209 V 212|=SMC V0085 +820077 |AX Tuc |004208.1-725709 |DCEP | 16.3 | 17.2 | |V |26502.700 | | 2.747562 |15 | |V 209 V 212|=SMC V0242 +820078 |AY Tuc |005300.0-750010 |CEP | 16.5 | 17.7 | |p |26945.391 | | 3.112379 |15 | |V 209 V 212|=SMC V0967 +820079 |AZ Tuc |010753.0-592548 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +820080 |BB Tuc |011045.7-601927 |EA/SD: | 13.5 | 15. | |p | | | | | |04001 04001| +820081 |BC Tuc |011248.5-742220 |DCEP | 15.6 | 16.8 | |p |23667.803 | | 8.114620 |24 | |V 059 V 212|=SMC V2249 +820082 |BD Tuc *|011640.4-724027 |EA | 15.13 | 16.47 | |V |24787.682 | | 3.2127601 |16 | |V 554 V 212|=SMC V2305 +820083 |BE Tuc *|011658.2-734311 |DCEP | 13.62 | 14.65 | |V |26319.275 | | 25.432997 |10 | |V 209 V 212|=SMC V2310 +820084 |BF Tuc *|011753.0-733725 |DCEP | 13.15 | 13.88 | |V |44155.15 | | 22.646828 |26 | |V 059 V 212|=SMC V2320 +820085 |BG Tuc *|011805.1-751125 |RRAB | 15.6 | 16.8 | |p |36735.650 | | 0.480 |20 | |09264 04001| +820086 |BH Tuc *|012007.7-725419 |DCEP | 13.57 | 14.58 | |V |30935.512 | | 19.979036 |33 | |V 059 V 212|=SMC V2333 +820087 |BI Tuc |012119.7-580930 |RR | 15. | 16. | |p | | | | | |04001 04001| +820088 |BK Tuc |232933.3-723240 |RRAB | 12.4 | 13.3 | |p |36735.605 | | 0.5502 |10 | |09264 04001| +820089 |BL Tuc |233133.2-731919 |RR | 15. | 15.5 | |p | | | | | |04001 04001| +820090 |BM Tuc |233831.5-735418 |RRAB | 13.9 | 15.1 | |p |36764.630 | | 0.4970 |25 : | |09264 04001| +820091 |BN Tuc |233955.8-741627 |RRAB | 14.4 | 16.1 | |p |36734.590 | | 0.4668 |25 : | |09264 04001| +820092 |BO Tuc |234259.6-740805 |RRAB | 15.5 | 16.5 | |p |36781.500 | | 0.5560 |20 | |09264 04001| +820093 |BP Tuc |000016.4-724644 |RRAB | 15.1 | 16.5 | |p |36758.615 | | 0.595 |20 | |09264 04001| +820094 |BQ Tuc |005337.9-625217 |LB: | 5.70 |( 0.20 )| |V | | | | |M4III |05840 CPD | +820095 |BR Tuc |230400.8-635512 |M | 12.6 |< 17.5 | |p | | | | |Me |04454 09611| +820096 |BS Tuc *|010804.0-615218 |DSCT | 7.43 | 7.57 | |V | | | 0.065 | |A5III |06338 CoD | +820097 |BT Tuc |010019.0-724436 |UV: | 10.5 | 11.32 | |B | | | | |K0V: |07487 04660| +820098 |BU Tuc |002458.3-714213 |RRAB: | 19.0 | 19.6 | |B |40892.523 | | 0.52416 |26 | |V 214 V 214|=SMC V0064 +820099 |BV Tuc |002926.7-705846 |RRC: | 18.1 | 18.9 | |B |41219.729 | | 0.42609 |40 |A7.9 |V 214 V 214|=SMC V0129 +820100 |BW Tuc |003026.5-715938 |RRAB: | 18.1 | 18.8 | |B |40802.680 | | 0.76923 |30 |A7.9 |V 214 V 214|=SMC V0141 +820101 |BX Tuc |003142.5-714917 |RRAB | 17.9 | 18.9 | |B |40802.680 | | 0.64009 |29 |F1.7 |V 214 V 214|=SMC V0160 +820102 |BY Tuc |003203.3-714101 |RRAB | 18.2 | 19.1 | |B |41216.643 | | 0.58232 |24 | |V 214 V 214|=SMC V0164 +820103 |BZ Tuc *|004143.4-734324 |DCEP | 11.53 | 12.44 | |V |44141.64 | | 127.61 |42 |F8-G1I |V 059 V 212|=SMC V0233 +820104 |CC Tuc |010242.9-652722 |LB | 6.19 |( 0.10 )| |V | | | | |M2III |05840 CPD | +820105 |CD Tuc |233730.0-734621 |RR: | 16. | 17. | |p | | | | | |04001 04001| +820106 |CE Tuc |232902.5-644556 |SR | 9.5 | 10.5 | |p | | | 60. : | |M6III |00085 05937| +820107 |CF Tuc *|005307.8-743906 |EA/RS | 7.44 | 7.80 | 7.52 |V |44160.52 | | 2.79765 |10 *|F8V+K1IV |10064 CPD | +820108 |CG Tuc |232901.0-630638 |ACV | 5.66 |( 0.045 )| |V | | | 2.3148 | |A0p(Si) |09919 CPD | +820109 |CH Tuc |001823.7-741656 |EA | 15.8 | 16.3 | |p | | | | | |67348 67347| +820110 |CI Tuc |002258.0-733747 |RRAB | 15.6 | 16.5 | |p | | | | | |67348 67347| +820111 |CK Tuc |233142.3-731214 |RRC | 15.3 | 15.8 | |p | | | | | |67348 67347| +820112 |CL Tuc |234338.8-733030 |EA/KE: | 15.2 | 15.7 | |p | | | | | |67348 67347| +820113 |CM Tuc |005553.5-731827 |SRC: | 11.62 | 12.8 | |V | | | 86.6 |45 : |M4+I |V 277 V 212|=SMC V1240 +820114 |CN Tuc |230927.7-633912 |ACVO | 9.35 |( 0.01 B )| |V | | | | | |71157 CPD | +820115 |CO Tuc |002833.9-721009 |RRC | 13.67 | 14.14 | |V |36046.614 | | 0.37143 |45 |F0-F3 |V 285 V 212|=SMC V0118 +820116 |CP Tuc |231518.9-591028 |XM | 14.1 | 16.1 | |I | | | | | |73333 USNO | +820117 |CQ Tuc |000619.0-655026 |BY: | 12.02 | 12.34 | |Hp| | | | | |HIP HIP | +820118 |CR Tuc |001420.8-624619 |LB | 6.64 | 6.82 | |Hp| | | | | |HIP HIP | +820119 |CS Tuc |001512.3-685059 |LB | 8.73 | 8.89 | |Hp| | | | | |HIP HIP | +820120 |CT Tuc |002514.6-613048 |BY: | 11.35 | 11.63 | |Hp| | | | | |HIP HIP | +820121 |CU Tuc |003713.4-634913 |EA | 9.99 | 10.40 | |Hp| | | | | |HIP HIP | +820122 |CV Tuc |004635.3-580255 |LB: | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +820123 |CW Tuc |004843.2-614343 |ELL: | 9.44 | 9.60 | |Hp| | | | | |HIP HIP | +820124 |CX Tuc |005629.4-594023 |LB: | 9.23 | 9.43 | |Hp| | | | | |HIP HIP | +820125 |CY Tuc |005752.2-702730 |LB: | 8.70 | 8.85 | |Hp| | | | | |HIP HIP | +820126 |CZ Tuc |010431.2-703225 |SRA | 8.81 | 9.25 | |Hp| | | | | |HIP HIP | +820127 |DD Tuc |011515.8-580152 |SRB | 8.54 | 8.74 | |Hp| | | | | |HIP HIP | +820128 |DE Tuc |011735.0-651242 |SRB | 6.86 | 7.03 | |Hp| | | | | |HIP HIP | +820129 |DF Tuc |221123.7-640052 |LB: | 7.62 | 7.75 | |Hp| | | | | |HIP HIP | +820130 |DG Tuc |221357.5-612656 |LB | 7.96 | 8.19 | |Hp| | | | | |HIP HIP | +820131 |DH Tuc |221402.6-571306 |LB | 7.70 | 8.25 | |Hp| | | | | |HIP HIP | +820132 |DI Tuc |221608.2-573405 |LB | 7.08 | 7.21 | |Hp| | | | | |HIP HIP | +820133 |DK Tuc |222721.2-580002 |E: | 6.90 | 6.97 | |Hp| | | | | |HIP HIP | +820134 |DL Tuc |225101.5-593651 |BY: | 11.74 | 12.02 | |Hp| | | | | |HIP HIP | +820135 |DM Tuc |225705.8-572404 |LB | 6.62 | 7.26 | |Hp| | | | | |HIP HIP | +820136 |DN Tuc |230718.9-605235 |E: | 8.57 | 8.71 | |Hp| | | | | |HIP HIP | +820137 |DO Tuc |231026.4-634112 |BY: | 11.26 | 11.61 | |Hp| | | | | |HIP HIP | +820138 |DP Tuc |231242.7-635313 |LB: | 8.80 | 8.96 | |Hp| | | | | |HIP HIP | +820139 |DQ Tuc |231415.6-565052 |BY: | 11.86 | 12.18 | |Hp| | | | | |HIP HIP | +820140 |DR Tuc |232256.7-600321 |LB | 6.08 | 6.20 | |Hp| | | | | |HIP HIP | +820141 |DS Tuc |233939.4-691145 |RS: | 8.27 | 8.39 | |Hp| | | | | |HIP HIP | +820142 |DT Tuc |234839.3-590327 |LB: | 9.09 | 9.24 | |Hp| | | | | |HIP HIP | +820143 |DU Tuc |234958.2-610807 |SRB | 7.19 | 7.58 | |Hp| | | | | |HIP HIP | +820144 |DV Tuc |235412.8-593231 |ACV | 7.03 | 7.06 | |Hp| | | | | |HIP HIP | +820145 |DW Tuc |235433.0-625204 |LB: | 9.04 | 9.15 | |Hp| | | | | |HIP HIP | +820146 |DX Tuc *|235721.5-641436 |EW: | 9.63 | 9.90 | |Hp| | | | | |HIP HIP | +820147 |DY Tuc |002542.1-720601 |RRC | 17.40 | 17.85 | |V | | | | | |75270 | +820148 |DZ Tuc |005044.7-731606 |E+X | 14.7 |( 0.2 )| |V | | | | | |75271 UCAC2| +820149 |EE Tuc |225759.4-590522 |GDOR: | 6.72 | 6.82 | |Hp| | | | | |75029 CPD | +820150 |EF Tuc |000155.1-670743 |NL | 13.89 | 14.59 | |V | | | | | |77003 UCAC2| +820151 |EG Tuc |011948.3-693327 |SRS | 9.4 | 9.8 | |V |52173.7 | | 22.92 | |M2III: |78130 DM | +820152 |EH Tuc |005123.7-593746 |SRB | 9.2 | 10.1 | |V | | | 73.5 | |M(5)III |79100 DM | +820153 |EI Tuc |222912.5-565212 |EA | 9.53 | 9.97 | 9.87 |V |52770.852 | | 3.64523 |05 |F0IV/V |79018 DM | +820154 |EK Tuc |223851.8-603909 |EB | 9.71 | 10.17 | 9.92 |V |52875.786 | | 1.23501 | |F6 |79011 79028| +820155 |EL Tuc |000104.3-665743 |EW | 14.5 |( 0.4 )| |V |54275.632 | | 0.3372 | | |80006 GSC | NL80_1 +820156 |EM Tuc *|000208.2-665040 |EW | 12.05 | 12.7 | 12.6 |V |54290.630 | | 0.326576 | | |80002 GSC | NL80_1 +820157 |EN Tuc *|003453.4-683548 |EB | 8.58 | 8.64 | 8.61 |V |52517.605 | | 2.88083 | | A0V |80048 HIP | NL80_1 +820158 |EO Tuc |222417.9-654103 |RRAB | 13.45 | 14.6 | 12| |V |52132.678 | | 0.577455 | | |80135 GSC | NL80_3 +820159 |EP Tuc *|223426.7-563525 |RRAB | 13.0 | 13.5 | |V |54557.906 | | 0.61499 |25 | |80153 GSC | NL80_3 +820160 |EQ Tuc |223835.7-633421 |BY | 8.93 | 9.06 | |V | | | 1.1138 : | |G8/K1III/IVp |80034 HIP | NL80_3 +820161 |ER Tuc |224915.8-663041 |RRAB | 13.7 | 14.7 | |V |52088.905 | | 0.607993 |20 | |80083 GSC | NL80_3 +820162 |ES Tuc |225726.0-564541 |BY | 10.40 | 10.57 | |V | | | 6.0264 | |G5V |80001 DM | NL80_3 +820163 |ET Tuc |233001.0-664723 |RRAB | 13.6 | 14.4 | |V |54308.77 | | 0.590475 |16 | |80135 GSC | NL80_3 +820164 |EU Tuc |233531.1-640052 |RRAB | 13.95 | 15.12 | |CV|54762.949 | | 0.4633458 |12 | |80001 GSC | NL80_3 +820165 |EV Tuc |233900.9-644531 |RRAB | 13.9 | 14.9 | |V |53655.595 | | 0.605030 |09 | |80135 GSC | NL80_3 +829008 |tet Tuc *|003323.4-711559 |DSCTC | 6.06 | 6.15 | |V | | | 0.049308 | |A7IV |09621 CPD | +829009 |iot Tuc |010718.6-614631 |SRD: | 5.47 | 5.53 | |Hp| | | | | |HIP HIP | +829013 |nu. Tuc |223300.1-615856 |LB: | 4.75 | 4.93 | |V | | | | |M4III |03712 CoD | +830001 |R UMa *|104438.5+684633 |M | 6.5 | 13.7 | |V |45593. | | 301.62 |39 |M3e-M9e |00001 00002| +830002 |S UMa *|124356.7+610536 |M | 7.1 | 12.7 | |V |45778. | | 225.87 |47 |S0,9e-S5,9e |00001 00002| +830003 |T UMa *|123623.5+592913 |M | 6.6 | 13.5 | |V |45623. | | 256.60 |41 |M4IIIe-M7e |00001 00002| +830004 |U UMa |101507.7+595908 | | 6.20 | 6.25 | |V | | | | |M0III | 00097| +830005 |V UMa |090814.4+510649 |SRB | 9.5 | 11.5 | |V | | | 207.65 | |M5-M6 |08642 00002| +830006 |W UMa *|094345.5+555709 |EW/KW | 7.75 | 8.48 | 8.43 |V |45765.7385 | | 0.33363749 | |F8Vp+F8Vp |00001 00462| +830007 |X UMa |084049.5+500812 |M | 8.1 | 14.8 | |V |45707. | | 249.04 |43 |M3e-M4e |00001 00002| +830008 |Y UMa |124021.3+555048 |SRB | 7.7 | 9.8 | |V | | | 168. | |M7II-III: |00650 08953| +830009 |Z UMa *|115630.2+575218 |SRB | 6.2 | 9.4 | |V | | | 195.5 | |M5IIIe |09833 00002| +830010 |RR UMa |132556.3+622252 |M | 8.6 | 14.2 | |V |45719. | | 230.58 |43 : |M4e |00001 00100| +830011 |RS UMa |123857.5+582900 |M | 8.3 | 14.9 | |V |45991. | | 258.97 |42 |M4e-M6e |00001 00002| +830012 |RT UMa |091824.4+512407 |LB | 8.6 | 9.6 | |V | | | | |C4,4(N5) |00651 08953| +830013 |RU UMa |114140.2+382829 |M | 8.1 | 15.0 | |V |45687. | | 252.46 |30 |M3e-M5e |00001 04169| +830014 |RV UMa *|133318.1+535915 |RRAB | 9.81 | 11.30 | |V |45075.511 | | 0.468060 |20 |A6-F5 |00001 00652| +830015 |RW UMa *|114046.4+515953 |EA/D/RS | 10.16 | 11.72 | 10.34 |V |45823.412 | | 7.328238 |08 |F9V+K1IV |00001 00318| +830016 |RX UMa |091425.3+671538 |SRB | 9.8 | 12.2 | |V | | | 195. | |M5 |00655 00102| +830017 |RY UMa |122027.3+611835 |SRB | 6.68 | 8.3 | |V | | | 310. : | |M2-M3IIIe | 08953| +830018 |RZ UMa |081059.7+651322 |SRB | 9.7 | 11.9 | |p | | | 115. | |M5-M6 |02137 00002| +830019 |SS UMa |140202.7+542757 |SN | 13.5 |< 20.8 | |B |18359. |1909 | | | |V 436 V 436|=N5457V0011 +830020 |ST UMa |112750.4+451107 |SRB | 6.0 | 7.6 | |V | | | 110. : | |M4-M5III | 08953| +830021 |SU UMa *|081228.3+623622 |UGSU | 10.8 | 14.96 | |V | | |( 19. ) | |pec(UG) |09782 00002| +830022 |SV UMa |104632.3+550208 |SRD | 9.1 | 10.6 | |V |44705. | | 76. |45 |G1Ibe-K3Iap |09318 08953| +830023 |SW UMa *|083642.7+532838 |UG | 9.7 | 16.50 | |V | | |( 460. ) | |pec(UG) | 09472| +830024 |SX UMa *|132613.5+561525 |RRC | 10.58 | 11.21 | |V |45109.333 | | 0.3071178 |38 |A4-F5 |00001 10083| +830025 |SY UMa |095543.0+494911 |CST | 5.27 | | |V | | | | |A3III | 00663| +830026 |SZ UMa *|112004.8+655047 |UV | 10.74 |( 0.06 )| |B | | | | |M1.5V |06948 08874| +830027 |TT UMa |090514.4+601713 |LB | 8.9 | 9.5 | |V | | | | |M6III |00179 08953| +830028 |TU UMa *|112948.5+300402 |RRAB | 9.26 | 10.24 | |V |42831.4947 | | 0.5576587 |16 |A8-F8 |00001 09331| +830029 |TV UMa |114535.0+355340 |SRB | 6.75 | 7.34 | |V | | | 42. | |M5III |05429 00228| +830030 |TW UMa *|134045.5+592600 |EA/SD | 12.2 | 14.5 | 12.3 : |V |45447.535 | | 2.1668246 |14 | |00001 00670| +830031 |TX UMa *|104520.5+453359 |EA/SD | 7.06 | 8.80 | 7.13 |V |44998.1475 | | 3.0632382 |12 *|B8V+G0III-IVea |09838 03685| +830032 |TY UMa *|120902.5+560154 |EW/KW | 11.48 | 12.14 |< 12.12 |V |39532.4965 | | 0.354538609 | |F7+F0: |09841 00670| +830033 |TZ UMa |120935.0+582302 |SRB | 9.8 | 10.6 | |p | | | 116. | |M4 |00650 00670| +830034 |UU UMa |122009.7+565452 |RRAB | 13.0 | 14.0 | |V |27572.434 | | 0.644810 | | |00335 00670| +830035 |UV UMa |125926.0+524524 |SRA | 10.2 | 11.5 | |V |29219. | | 65.65 |47 |M4 |00672 00670| +830036 |UW UMa |131201.5+562249 |LB | 11.0 | 11.9 | |V | | | | |M6 |00335 00670| +830037 |UX UMa *|133641.0+515450 |EA/WD+NL | 12.57 | 14.15 | |V |37432.8204 | | 0.19667128 |15 *|pec(e) |05491 09515| +830038 |UY UMa *|134436.8+551318 |EW/KW | 12.7 | 12.9 | 12.9 |V |27586.466 | | 0.376016 | | |00335 00670| +830039 |UZ UMa |081853.9+730548 |RRAB | 13.1 | 15.0 | |p |28157.330 | | 0.4668795 |20 |A5 |05492 00675| +830040 |VV UMa *|093806.7+560107 |EA/SD | 10.13 | 10.91 | 10.26 |V |45815.3365 | | 0.687380 |19 *|A2V |00001 06824| +830041 |VW UMa |105901.8+695921 |SR | 6.85 | 7.71 | |V | | | 610. | |M2 |08179 08953| +830042 |VX UMa *|105540.9+715209 |M | 11.7 |< 14.5 | |p |35480. | | 215.2 | |M8e |00001 | +830043 |VY UMa |104504.0+672441 |LB | 5.87 | 7.0 | |V | | | | |C6,3(N0) |09844 08953| +830044 |VZ UMa |111728.3+294030 |RR | 13.7 | 15.0 | |p | | | | | |00614 06286| +830045 |WW UMa |114701.5+581418 |LB | 10.7 | 11.9 | |p | | | | |M6 |03693 00346| +830046 |WX UMa *|110530.9+433118 |UV | 14.2 | 16.53 | |B | | | | |M5.5Ve |00679 09033| +830047 |WY UMa |104153.2+513800 |LB | 10.0 | 10.8 | |p | | | | |M5 |00680 02379| +830048 |WZ UMa |120547.1+540218 |CST: | 9.5 | 10.0 | |V | | | | |F5 |10089 08953| +830049 |XX UMa |112652.6+533805 |LB: | 13.4 | 13.9 | |V | | | | |M4: |00681 00586| +830050 |XY UMa *|090955.9+542918 |EB/DW/RS | 9.50 |( 0.67 )|( 0.19 )|V |35216.5011 | | 0.478994587 | |G2V |08623 08953| +830051 |XZ UMa *|093124.6+492804 |EA/SD | 10.1 | 11.7 | 10.2 |p |46168.426 | | 1.22232 : |10 *|A5+F9 |00001 10092| +830052 |YY UMa |094407.9+534600 |SRB | 10.2 | 11.3 | |p |25590. | | 326. | |M6 |00499 02379| +830053 |YZ UMa |095519.9+440029 |LB | 10.7 | 12.0 | |p | | | | |M5 |00499 02379| +830054 |ZZ UMa |103003.2+614841 |EA/D | 10.1 | 10.7 | |p |35951.484 | | 2.29926 |08 |F8 |04009 03694| +830055 |AA UMa *|094659.3+454556 |EW/KW | 10.88 | 11.58 | 11.53 |V |40664.8920 | | 0.46812555 | |G0 |10094 09868| +830056 |AB UMa |121114.6+474944 |RRAB | 10.3 | 11.7 | |p |36227.640 | | 0.599577 |30 |F2 |03695 02379| +830057 |AC UMa *|085554.1+645815 |EA/SD | 10.30 | 14. | |V |46072.466 | | 6.854939 |07 |A2 |00001 BD | +830058 |AD UMa *|092338.7+554633 |RRAB | 15.0 | 16.3 | |V |35550.489 | | 0.548315 |18 | |02958 02958| +830059 |AE UMa *|093653.2+440400 |SXPHE: | 10.86 | 11.52 | |V |35604.338 | | 0.086017055 |16 |A9 |07114 00819| +830060 |AF UMa *|102407.8+640751 |EA/SD: | 10.8 | 11.6 | |p |26796.400 | | 5.257555 |10 |A0 |03835 00174| +830061 |AG UMa |104856.3+424014 |RRAB | 13.5 | 16.0 | |p |37347.493 | | 0.462500 |15 | |05264 04065| +830062 |AH UMa |104939.2+464221 |RRAB | 15.5 | 16.9 | |p |37376.434 | | 0.532468 |17 | |05264 04065| +830063 |AI UMa |105216.3+463909 |RRAB | 14.4 | 16.7 | |p |37374.396 | | 0.508423 |12 | |05264 04065| +830064 |AK UMa *|105313.2+411901 |RRC | 16.0 | 16.6 | |p |37352.587 | | 0.490623 : |30 | |05264 04065| +830065 |AL UMa |105551.2+442740 |RRAB | 15.5 | 16.5 | |p |37348.427 | | 0.519279 |11 | |05264 04065| +830066 |AM UMa |110335.5+455918 |RRAB | 15.1 | 16.3 | |B |42534.385 | | 0.4962523 |10 | |00001 04065| +830067 |AN UMa *|110425.6+450314 |E+XRM | 14.90 | 20.2 | |B |42891.397 | | 0.0797522 | |pec(e+cont) |09871 09472| +830068 |AO UMa |110739.8+403357 |RRAB | 14.8 | 16.4 | |p |37378.590 | | 0.561614 |15 | |05264 04065| +830069 |AP UMa |111024.3+424853 |RRAB | 13.6 | 14.2 | |p |37348.386 | | 0.577073 |12 | |05264 04065| +830070 |AQ UMa |111259.5+424841 |RRAB | 15.5 | 17.0 | |p |37347.524 | | 0.644029 |14 | |05264 04065| +830071 |AR UMa |111544.6+425822 |SR | 14.2 | 15.9 | |p |37350.0 | | 68.7 |30 | |05264 04065| +830072 |AS UMa |111642.6+440703 |RRAB | 14.7 | 15.4 | |p |37403.618 | | 0.620702 |17 | |05264 04065| +830073 |AT UMa |111948.2+413751 |RRAB | 15.5 | 16.5 | |p |37348.465 | | 0.579334 |18 | |05264 04065| +830074 |AU UMa |112114.0+441416 |RRAB | 14.8 | 16.4 | |p |37347.566 | | 0.527561 |16 | |05264 04065| +830075 |AV UMa |112940.5+424425 |RRAB | 14.0 | 14.8 | |p |37374.512 | | 0.479483 |12 | |05264 04065| +830076 |AW UMa *|113004.3+295753 |EW/KW | 6.83 | 7.13 | 7.08 |V |44664.7993 | | 0.4387299 | |F0-F2 |00001 BD | +830077 |AX UMa *|113826.8+455606 |RRAB | 12.7 | 13.9 | |V |45382.559 | | 0.53491 |20 |A2 |09874 09874| +830078 |AY UMa |114043.8+300317 |LB | 11.01 | 12.1 | |B | | | | |M2 |04022 BD | +830079 |AZ UMa |114713.8+432816 |LB | 9.6 | 10.3 | |p | | | | |M6III |02576 04167| +830080 |BB UMa |114902.0+491136 |RRAB | 12.3 | 14.1 | |p |40384.354 | | 0.5590529 |12 | |00001 04354| +830081 |BC UMa |115215.9+491442 |UG | 10.9 | 18.3 | |B | | | | | |04375 09875| +830082 |BD UMa |115706.8+482426 |RRAB | 12.2 | 13.8 | |p |40290.30 | | 0.681147 |12 | |05493 04354| +830083 |BE UMa *|115744.8+485618 |EA/D/WD | 14.8 | 17.8 | |B |44998.2809 | | 2.2911665 |02 |DO+MVe |09889 09875| +830084 |BF UMa |120344.6+464018 |RRAB | 12.0 | 13.6 | |p |40295.46 | | 0.501015 |14 | |05493 04354| +830085 |BG UMa *|132644.0+561834 |ELL: | 10.84 | 10.93 | 10.93 |V |35860.665 | | 0.669397 | | |04175 BD | +830086 |BH UMa *|104555.8+521451 |EW/KE | 11.5 | 12.3 | 12.3 |p |45093.348 | | 0.6986834 | |B9 |00001 00174| +830087 |BI UMa *|104711.5+461740 |EW:/KW: | 15.7 | 15.9 | 15.8 |p |37347.570 | | 0.4247 : | | |05264 04065| +830088 |BK UMa *|105018.9+423409 |RRC | 12.8 | 13.5 | |p |37348.465 | | 0.389133 |30 | |05264 04065| +830089 |BL UMa *|110725.8+411558 |EW/KE | 16.0 | 16.4 | 16.2 |p |37347.493 | | 0.572960 | | |05264 04065| +830090 |BM UMa *|111120.5+462547 |EW | 13.8 |( 0.95 )|( 0.80 )|B |37348.558 | | 0.2712207 | | |09878 04065| +830091 |BN UMa *|111622.8+411401 |RRC | 12.9 | 13.7 | |p |37376.415 | | 0.399901 |30 | |05264 04065| +830092 |BO UMa |111657.0+420519 |RRAB | 15.1 | 16.4 | |p |37374.555 | | 0.691671 |17 | |05264 04065| +830093 |BP UMa *|111857.4+470413 |EA | 15.5 | 16.2 : | |p |37348.386 | | 1.38119 | | |05264 04065| +830094 |BQ UMa |112130.0+441835 |EA/SD | 13.5 | 15.9 | |p |37972.651 | | 2.321547 |15 | |05264 04065| +830095 |BR UMa |112404.3+425650 |RRC | 14.4 | 14.8 | |p |37347.520 | | 0.277981 |30 | |05264 04065| +830096 |BS UMa |112541.6+423449 |EA | 13.7 | 14.0 | |p |37347.524 | | 0.437016 |12 | |05264 04065| +830097 |BT UMa |113053.7+441436 |UV | 15.0 | 16.3 | |p | | | | | |05264 04065| +830098 |BU UMa |113101.4+442131 |RRC | 13.1 | 13.5 | |p |37347.452 | | 0.287259 |50 | |05264 04065| +830099 |BV UMa |113709.7+561441 |RR | 16.7 | 17.4 | |p | | | | | |03968 05494| +830100 |BW UMa |113918.2+540118 |RR | 16.5 | 17.5 | |p | | | | | |03968 05494| +830101 |BX UMa |113929.4+551000 |RR | 16.7 | 17.5 | |p | | | | | |03968 05494| +830102 |BY UMa |115822.1+550942 |RR | 15.7 | 17.0 | |p | | | | | |03968 05494| +830103 |BZ UMa |085344.1+574841 |UG | 10.5 | 15.3 | |B | | |( 97. ) | |pec(UG) |00001 05619| +830104 |CC UMa |105340.6+422813 |SRB | 11.7 | 12.4 | |p | | | | |M0 |05264 04065| +830105 |CD UMa |115134.0+525821 |RRAB | 13.9 | 15.4 | |p |39939.314 | | 0.5214151 |13 | |07307 05620| +830106 |CE UMa *|111611. +292138:|UG: | 15.5 |< 21. | |p | | | | | |05940 | +830107 |CF UMa *|115256.5+374306 |UV: | 8.5 | 12. : | |V | | | | | |05941 | +830108 |CG UMa |092143.3+564157 |LB | 5.47 | 5.95 | |V | | | | |M4IIIa |05841 BD | +830109 |CH UMa *|100700.7+673247 |UG | 10.6 | 16.0 | |B | | |( 204. ) | |pec(UG)+K |07608 06409| +830110 |CI UMa |101813.1+715544 |UG | 13.8 |< 17.5 | |p | | |( 34.0 ) | | |04466 07418| +830111 |CK UMa |120136.4+315412 |RRAB | 13.4 | 14.1 | |p |40382.627 | | 0.61031 |27 | |06851 06851| +830112 |CL UMa |122625.6+523326 |RRAB | 15.4 | 16.3 | |p |39936.315 | | 0.6190514 |08 | |06411 06411| +830113 |CM UMa *|094313.8+492937 |CEP: | 12.8 | 13.8 | |p |28630.28 | | 1.4395 : | | |07230 00319| +830114 |CN UMa |102629.3+683052 |RRAB | 16.5 | 17.4 | |p |41394.430 | | 0.568075 |13 | |06906 06906| +830115 |CO UMa |110919.1+361834 |LB | 5.74 | 5.95 | |V | | | | |M3.5IIIab |06907 BD | +830116 |CP UMa |115833.7+520147 |RRAB | 15.9 | 16.7 | |B |40349.337 | | 0.556544 |30 | |06908 06908| +830117 |CQ UMa *|134021.4+571227 |ACV | 6.28 | 6.30 | |V |40747.620 | | 2.449967 | |A4p(Sr-Cr-Eu) |09883 BD | +830118 |CR UMa *|134635.7+542558 |ACV | 5.65 | 5.70 | |V |41444.80 | | 1.37996 | |B9p(Eu-Cr) |09308 BD | +830119 |CS UMa |094631.7+570741 |LB: | 6.78 |( 0.16 )| |B | | | | |M3IIIab |01371 BD | +830120 |CT UMa |103417.4+694552 |LB | 10.5 | 10.9 | |p | | | | |M6 |07863 BD | +830121 |CU UMa |103430.0+663317 |RRAB | 15.7 | 16.8 | |p |41394.56 | | 0.46052 |20 : | |07418 07418| +830122 |CV UMa |110736.0+491037 |LB | 9.3 | 10.3 | |p | | | | |K5 |02578 BD | +830123 |CW UMa *|111151.7+333211 |UV | 12.6 | 14.6 | |p | | | | |M4.5Ve |09885 06874| +830124 |CX UMa |112353.3+371405 |DSCTC: | 6.8 |( 0.028 )| |V | | | | |F0 |07866 BD | +830125 |CY UMa |105657.0+494118 |UG | 11.9 | 17. | |p | | | | | |07931 07931| +830126 |CZ UMa |113340.2+502328 |RRAB | 14.7 | 16.3 | |p |38166.35 | | 0.4967846 |10 | |07932 07932| +830127 |DD UMa |091611.3+540119 |DSCTC | 5.02 |( 0.03 )| |B | | | 0.12 : | |A5V |08209 BD | +830128 |DE UMa |093454.1+652648 |RRAB | 15.0 | 16.1 | |B |41453.357 | | 0.4853777 |11 | |09117 09117| +830129 |DF UMa *|113724.6+472745 |BY | 10.12 | 10.41 | |V | | | | |M0Ve |08313 BD | +830130 |DG UMa *|115551.3+485528 |RRAB | 15.8 | 17.8 | |B |40648.41 | | 0.4728701 |13 | |08273 08273| +830131 |DH UMa |090315.3+500539 |LB: | 9.2 |( 0.24 )| |V | | | | |C3,5J(R5) |08460 BD | +830132 |DI UMa |091216.2+505354 |UG | 15. | 17. | |p | | |( 26. ) | |pec(cont) |08656 02763| +830133 |DK UMa *|093428.9+694949 |RS: | 4.56 |( 0.058 )| |V | | | 0.9202 | |G4III-IV |07964 BD | +830134 |DL UMa *|093641.0+693812 |DSCTC+E | 7.55 |( 0.056 )| |V | | | 0.0831 | |F0 |07964 BD | +830135 |DM UMa *|105543.5+602810 |RS | 9.57 |( 0.32 )| |V |45831.72 | | 7.478 | |K0-K1III-IVea |10121 BD | +830136 |DN UMa *|115505.8+462837 |EA | 6.63 | 6.73 | 6.73, |B |43936.4814 | | 1.730418 |10 *|A3Vn |08557 BD | +830137 |DO UMa |120130.1+405224 |L | 12.0 | 12.9 | |p | | | | | |08362 08362| +830138 |DP UMa |120206.8+430244 |DSCTC | 5.21 |( 0.03 )| |V | | | | |A7m |08448 BD | +830139 |DQ UMa |135642.9+525411 |RR | 15.1 | 15.9 | |B | | | | | |08350 08350| +830140 |DR UMa |135905.7+554429 |QSO | 17.5 |< 18.2 | |B | | | | | | 79229| +830141 |DS UMa |085247.2+500358 |RR: | 15.3 | 16.8 | |p | | | | | |08804 08804| +830142 |DT UMa |085344.9+491840 |RR | 14.3 | 15.8 | |p | | | | | |08804 08804| +830143 |DU UMa |090652.2+481646 |L | 17.7 | 18.6 | |p | | | | | |08804 08804| +830144 |DV UMa |094636.6+444645 |UG | 14. | 19.8 | |B | | | | | |67351 67351| +830145 |DW UMa |103352.9+584655 |EA | 15.1 | 16.6 | |B | | | | | |68267 68308| +830146 |DX UMa |104007.3+563005 |SRA | 14.2 | 15.3 | |p | | | | | |68268 68268| +830147 |DY UMa |111116.0+543629 |RRAB | 15.1 | 16.4 | |p | | | | | |68268 68268| +830148 |DZ UMa |111833.6+524055 |RVB: | 12.0 | 13.5 | |p | | | | | |68268 68268| +830149 |EE UMa |113024.8+463927 |ELL: | 6.35 |( 0.16 )| |V | | | | | |68053 BD | +830150 |EF UMa |115719.3+482904 |RR | 16.4 | 17.7 | |p | | | | | |68269 68269| +830151 |EG UMa |121544.1+523101 |NL | 13.0 | 13.87 | |B | | | | | |68270 68270| +830152 |EH UMa |135320.2+521923 |LB | 6.69 | 6.87 | |V | | | | | |68006 BD | +830153 |EI UMa |083822.0+483802 |NL | 13.4 | 14.9 | |p | | | | | |69284 69043| +830154 |EK UMa |105135.2+540436 |XM | 18. |< 19.5 | |V | | | | | |69285 69285| +830155 |EL UMa |105507.0+365947 |UG: | 14. | 19. | |p | | | | | |69286 69306| +830156 |EM UMa |135309.9+484022 |ZZB | 16.4 |( 0.16 )| |B | | | | | |69179 69046| +830157 |EN UMa |102103.3+684452 |DSCTC | 5.83 | 5.88 | |V | | | | | |70134 BD | +830158 |EO UMa |104523.4+411828 |DSCTC | 7.07 | 7.15 | |V | | | | | |71098 BD | +830159 |EP UMa |110939.8+671237 |ACVO | 6.06 |( 0.01 )| |V | | | | | |71099 BD | +830160 |EQ UMa |083627.3+533440 |EW/KW | 12.4 |( 0.2 )| |V | | | | | |72166 72166| +830161 |ER UMa |094711.9+515409 |UG: | 12.4 | 15.2 | |V | | | | | |72167 72085| +830162 |ES UMa |095428.6+691322 |EW | 10.99 | 11.38 | |V | | | | | |72168 72217| +830163 |ET UMa |102407.8+653359 |ACV | 4.91 |( 0.05 )| |B | | | | | |72169 BD | +830164 |EU UMa |114955.7+284507 |AM | 16.45 | 16.93 | |B | | | | | |72170 72170| +830165 |EV UMa |130753.9+535130 |AM | 17. | 21. | |V | | | | | |72171 72218| +830166 |EW UMa |081826.6+730516 |IS | 9.83 | 11.08 | |V | | | | | |73062 73062| +830167 |EX UMa |084512.2+563627 |RRAB | 10.90 | 11.38 | |V | | | | | |73334 73334| +830168 |EY UMa |090220.8+494910 |RRAB | 13.2 | 14.4 | |p | | | | | |73335 73336| +830169 |EZ UMa |092544.2+635627 |SRD: | 6.23 | 6.28 | |V | | | | | |73005 BD | +830170 |FF UMa |093346.5+624940 |RS | 8.35 |( 0.12 )| |V | | | | | |73005 BD | +830171 |FG UMa |102147.5+605446 |RS | 7.45 |( 0.11 )| |V | | | | | |73005 BD | +830172 |FH UMa |104709.9+633514 |AM | 19.4 |( 1.8 )| |V | | | | | |73337 73337| +830173 |FI UMa |111244.5+545339 |DSCTC | 6.65 |( 0.03 b )| |V | | | | | |73338 BD | +830174 |FK UMa |111714.6+293414 |RS | 9.29 |( 0.04 )| |V | | | | | |73005 BD | +830175 |FL UMa |082048.0+673137 |LB: | 7.05 | 7.14 | |Hp| | | | | |HIP HIP | +830176 |FM UMa |082841.0+605638 |ACV: | 9.10 | 9.17 | |Hp| | | | | |HIP HIP | +830177 |FN UMa |083427.6+671120 |LB | 8.29 | 8.70 | |Hp| | | | | |HIP HIP | +830178 |FO UMa |083640.8+492235 |LB | 7.11 | 7.22 | |Hp| | | | | |HIP HIP | +830179 |FP UMa |084807.6+605259 |LB: | 9.23 | 9.36 | |Hp| | | | | |HIP HIP | +830180 |FQ UMa |084806.3+464131 |LB: | 8.24 | 8.30 | |Hp| | | | | |HIP HIP | +830181 |FR UMa |085115.8+483503 |LB: | 8.80 | 8.96 | |Hp| | | | | |HIP HIP | +830182 |FS UMa |085146.3+523052 |LB: | 9.16 | 9.36 | |Hp| | | | | |HIP HIP | +830183 |FT UMa |085430.3+511440 |RRC: | 9.29 | 9.42 | |Hp| | | | | |HIP HIP | +830184 |FU UMa |085754.4+641843 |LB: | 8.97 | 9.07 | |Hp| | | | | |HIP HIP | +830185 |FV UMa |090236.8+631445 |SRB | 8.65 | 8.81 | |Hp| | | | | |HIP HIP | +830186 |FW UMa |090325.3+584504 |LB: | 9.34 | 9.66 | |Hp| | | | | |HIP HIP | +830187 |FX UMa |090622.4+682643 |EA: | 7.14 | 7.18 | |Hp| | | | | |HIP HIP | +830188 |FY UMa |090608.7+644646 |SRB: | 9.04 | 9.80 | |Hp| | | | | |HIP HIP | +830189 |FZ UMa |090905.1+691239 |LB | 7.41 | 7.62 | |Hp| | | | | |HIP HIP | +830190 |GG UMa |091853.7+625034 |DSCTC: | 8.66 | 8.72 | |Hp| | | | | |HIP HIP | +830191 |GH UMa |092158.7+533759 |SRB | 8.32 | 8.58 | |Hp| | | | | |HIP HIP | +830192 |GI UMa |092655.7+494133 |SRB | 7.86 | 8.12 | |Hp| | | | | |HIP HIP | +830193 |GK UMa |093900.7+583253 |SRB: | 7.36 | 7.42 | |Hp| | | | | |HIP HIP | +830194 |GL UMa |095216.2+601648 |BY: | 12.31 | 12.95 | |Hp| | | | | |HIP HIP | +830195 |GM UMa *|101343.8+502948 |EB | 6.66 | 6.81 | |Hp| | | | | |HIP HIP | +830196 |GN UMa |101426.1+662447 |LB | 9.01 | 9.23 | |Hp| | | | | |HIP HIP | +830197 |GO UMa |101424.6+592359 |LB | 7.42 | 7.68 | |Hp| | | | | |HIP HIP | +830198 |GP UMa |101717.6+412803 |LB: | 6.60 | 6.65 | |Hp| | | | | |HIP HIP | +830199 |GQ UMa |102448.1+511041 |LB | 10.07 | 10.35 | |Hp| | | | | |HIP HIP | +830200 |GR UMa |102631.6+622048 |LB | 9.36 | 9.94 | |Hp| | | | | |HIP HIP | +830201 |GS UMa |102926.8+394609 |DSCTC: | 8.76 | 8.81 | |Hp| | | | | |HIP HIP | +830202 |GT UMa |103555.6+633532 |EB | 8.14 | 8.43 | |Hp| | | | | |HIP HIP | +830203 |GU UMa |104007.5+595700 |LB: | 9.61 | 9.77 | |Hp| | | | | |HIP HIP | +830204 |GV UMa |104047.1+563131 |LB: | 9.30 | 9.44 | |Hp| | | | | |HIP HIP | +830205 |GW UMa |104411.3+444044 |DSCT: | 9.48 | 9.97 | |Hp| | | | | |HIP HIP | +830206 |GX UMa |104607.7+590339 |SRD | 9.08 | 9.33 | |Hp| | | | | |HIP HIP | +830207 |GY UMa |104736.7+653700 |SRB | 6.89 | 7.03 | |Hp| | | | | |HIP HIP | +830208 |GZ UMa |104902.0+671252 |E: | 10.56 | 10.78 | |Hp| | | | | |HIP HIP | +830209 |HH UMa *|110448.1+353627 |DSCT: | 10.58 | 10.79 | |Hp| | | | | |HIP HIP | +830210 |HI UMa |110550.8+515118 |LB: | 9.50 | 9.64 | |Hp| | | | | |HIP HIP | +830211 |HK UMa |110554.0+535103 |LB: | 7.62 | 7.72 | |Hp| | | | | |HIP HIP | +830212 |HL UMa |110752.8+682159 |SRB | 7.98 | 8.17 | |Hp| | | | | |HIP HIP | +830213 |HM UMa |110916.7+512244 |LB | 6.86 | 6.98 | |Hp| | | | | |HIP HIP | +830214 |HN UMa *|111556.4+373835 |EW: | 9.90 | 10.02 | |Hp| | | | | |HIP HIP | +830215 |HO UMa |112136.2+320235 |LB | 8.42 | 8.56 | |Hp| | | | | |HIP HIP | +830216 |HP UMa |112845.1+493332 |LB | 9.06 | 9.27 | |Hp| | | | | |HIP HIP | +830217 |HQ UMa |113042.8+564447 |DSCTC | 7.16 | 7.21 | |Hp| | | | | |HIP HIP | +830218 |HR UMa |113253.0+552507 |EA | 8.70 | 9.02 | |Hp| | | | | |HIP HIP | +830219 |HS UMa |113530.7+345204 |LB | 8.30 | 8.95 | |Hp| | | | | |HIP HIP | +830220 |HT UMa |114814.7+483126 |LB: | 8.27 | 8.39 | |Hp| | | | | |HIP HIP | +830221 |HU UMa *|115019.0+374051 |BY: | 11.19 | 11.48 | |Hp| | | | | |HIP HIP | +830222 |HV UMa |115538.0+471527 |RRC | 8.60 | 8.89 | |Hp| | | | | |HIP HIP | +830223 |HW UMa |115716.8+450038 |LB: | 8.87 | 9.01 | |Hp| | | | | |HIP HIP | +830224 |HX UMa |120133.1+430230 |EB | 8.89 | 9.06 | |Hp| | | | | |HIP HIP | +830225 |HY UMa |120333.2+294045 |LB: | 7.32 | 7.43 | |Hp| | | | | |HIP HIP | +830226 |HZ UMa |120459.8+501701 |LB: | 8.28 | 8.40 | |Hp| | | | | |HIP HIP | +830227 |II UMa *|123254.9+544743 |EW: | 8.17 | 8.48 | |Hp| | | | | |HIP HIP | +830228 |IK UMa |123843.8+550510 |LB: | 9.66 | 9.96 | |Hp| | | | | |HIP HIP | +830229 |IL UMa |124923.5+620338 |SRB | 9.44 | 9.79 | |Hp| | | | | |HIP HIP | +830230 |IM UMa |125119.6+574354 |LB | 7.61 | 7.75 | |Hp| | | | | |HIP HIP | +830231 |IN UMa |125351.9+564912 |LB: | 8.77 | 8.91 | |Hp| | | | | |HIP HIP | +830232 |IO UMa |131454.5+591744 |EA | 8.19 | 8.79 | |Hp| | | | | |HIP HIP | +830233 |IP UMa |133912.6+475346 |DSCTC: | 7.72 | 7.77 | |Hp| | | | | |HIP HIP | +830234 |IQ UMa |134044.3+544054 |SRB | 4.69 | 4.75 | |Hp| | | | | |HIP HIP | +830235 |IR UMa |135001.0+545210 |LB | 7.48 | 7.70 | |Hp| | | | | |HIP HIP | +830236 |IS UMa |135842.4+550556 |SRB: | 9.90 | 10.07 | |Hp| | | | | |HIP HIP | +830237 |IT UMa |140417.4+512718 |LB: | 8.69 | 8.85 | |Hp| | | | | |HIP HIP | +830238 |IU UMa |141343.2+580655 |LB: | 8.29 | 8.40 | |Hp| | | | | |HIP HIP | +830239 |IV UMa |141501.7+611804 |ELL: | 9.00 | 9.06 | |Hp| | | | | |HIP HIP | +830240 |IW UMa |092900.6+434402 |EA | 11.9 |( 0.50 )| |V | | | | | |75272 75272| +830241 |IX UMa |094844.6+433956 |DSCTC | 7.79 |( 0.01 )| |V | | | | | |75273 BD | +830242 |IY UMa |104356.7+580732 |UGSU+E | 13.0 |< 15.3 | |p | | | | | |75313 2MASS| +830243 |IZ UMa |113941.4+420519 |ZZA | 16.78 |( 0.15 )| |B | | | | | |75165 75166| +830244 |KK UMa |114501.4+644738 |M | 12.6 |< 15.0 | |p | | | | | |75002 2MASS| +830245 |KL UMa |114714.5+611531 |RPHS | 13.48 |( 0.10 )| |V | | | | | |75274 75275| +830246 |KM UMa |114749.0+351335 |EW: | 11.0 | 11.6 | |p | | | | | |75276 BD | +830247 |KN UMa |123952.3+551121 |BY: | 11.77 |( 0.35 Rc)| |V | | | | | |75277 75277| +830248 |KO UMa |081542.1+661032 |GDOR | 7.18 |( 0.04 )| |V | | | | | |76080 DM | +830249 |KP UMa |084750.8+661238 |ELL | 7.87 |( 0.04 )| |V | | | | | |76091 DM | +830250 |KQ UMa |091720.2+683806 |L: | 12.9 | 14.4 | |V | | | | | |76012 GSC | +830251 |KR UMa |100127.7+555328 |NL: | 15.00 |( 1.25 )| |g | | | | | |76097 76098| +830252 |KS UMa |102026.5+530433 |UGSU | 12.2 | 16.2 | |V | | | | | |76100 GSC22| +830253 |KT UMa |105807.4+560709 |RRAB | 11.07 | 11.57 | |V | | | | | |76109 76110| +830254 |KU UMa |110537.1+582008 |SR: | 14.0 | 14.8 | |V | | | | | |76054 2MASS| +830255 |KV UMa |111810.8+480213 |XND | 12.8 | 18.8 | |V | | | | | |76112 76113| +830256 |KW UMa |114707.8+612407 |DSCTC | 6.83 |( 0.03 )| |B | | | | | |76009 DM | +830257 |KX UMa |115843.3+632115 |SRA: | 13.3 | 14.6 | |V | | | | | |76012 GSC | +830258 |KY UMa |122129.1+530437 |RPHS | 12.4 |( 0.05 * )| |B | | | | | |76094 76095| +830259 |KZ UMa |093142.1+665119 |DSCTC | 8.15 |( 0.02 b )| |V | | | | | |77082 DM | +830260 |LL UMa |094309.2+700009 |EW | 15.43 |( 0.9 * )| |V | | | | | |77083 77083| +830261 |LM UMa |094600.6+455213 |SRS | 8.21 |( 0.06 )| |V | | | | | |77008 DM | +830262 |LN UMa |100434.7+662915 |NL | 14.6 | 18.0 | |V | | | | | |77085 77218| +830263 |LO UMa |102951.9+395628 |EA | 12.75 | 14.95 | |V | | | | | |77088 77088| +830264 |LP UMa |103357.9+585216 |EW | 12.53 | 12.80 | |V | | | | | |77089 GSC | +830265 |LQ UMa |105718.4+394138 |LB: | 13.6 | 14.5 | |V | | | | | |77004 UCAC2| +830266 |LR UMa |112251.2+314941 |DSCTC: | 7.74 |( 0.07 )| |B | | | | | |77094 DM | +830267 |LS UMa |082740.1+675827 |GDOR | 8.12 |( 0.20 )| |V | | | 1.14 : | |F0 |78091 DM | +830268 |LT UMa |084447.8+553220 |BY | 8.91 |( 0.03 )| |V | | | | |K0V |78018 DM | +830269 |LU UMa *|092403.3+614623 |GDOR | 8.44 | 8.65 | |Hp| | | 1.1156 | |F0V |78091 DM | +830270 |LV UMa |093245.7+493806 |DSCTC: | 10.7 |( 0.03 )| |V | | | 0.037 | | |78049 78049| +830271 |LW UMa |095656.1+412641 |DSCTC | 10.22 | 10.27 | |V | | | 0.0585 | | |78022 DM | +830272 |LX UMa |101435.8+534615 |BY | 8.02 |( 0.05 )| |V | | | 4.935 : | |G5V |78018 DM | +830273 |LY UMa |104817.9+521831 |NL | 14.95 | 15.44 | |V | | | | |pec(e)+K |78138 USNO | +830274 |LZ UMa |105040.3+514759 |BY | 8.31 |( 0.02 )| |V | | | 8.47 | |G5V |78018 DM | +830275 |MM UMa *|110830.8+683017 |* | 16.6 |( 0.01 )| |Ic| | | | |L1 |78007 78143| +830276 |MN UMa |111232.4+354851 |BY | 6.53 | 6.56 | |Hp| | | 8.25 | |G0V |78005 DM | +830277 |MO UMa |111306.0+402138 |RRC | 11.66 | 12.04 | |* |51306.702 | | 0.31802 |40 | |78144 GSC | +830278 |MP UMa |112037.7+392101 |DSCT: | 12.06 | 12.19 | |* | | | 0.0526 : | | |78144 GSC | +830279 |MQ UMa |112141.1+433653 |EW | 11.57 | 11.83 | |* |51312.8513 | | 0.476058 | | |78144 GSC | +830280 |MR UMa |113122.4+432238 |UGSU | 12.95 | 17. | |V | | | | |pec(e) |78148 78149| +830281 |MS UMa *|113220.9+494410 |EW | 11.97 | 12.60 | 12.50 |* |51563.9502 | | 0.410384 | | |78144 GSC | +830282 |MT UMa *|113334.7+425830 |EW | 11.75 | 12.16 | 12.09 |* |51330.7415 | | 0.800632 | | |78144 GSC | +830283 |MU UMa |113536.7+384558 |RRC | 11.8 | 12.3 | |* |51305.7228 | | 0.267946 |40 | |78144 GSC | +830284 |MV UMa *|113859.7+421944 |RS | 8.22 |( 0.02 )| |V | | | 10.84 | |K5V |78018 DM | +830285 |MW UMa |114302.3+603437 |EA | 9.26 |( 0.49 )| |Rc|52402.3278 | | 1.23472 | |F8 |78151 78151| +830286 |MX UMa |114752.9+530055 |DSCTC | 8.78 |( 0.08 )| |B | | | 0.116 | |F3III/IV |78152 DM | +830287 |MY UMa |115157.9+480519 |BY | 8.97 |( 0.03 )| |V | | | 11.43 | |K0V |78018 DM | +830288 |MZ UMa |121127.8+532518 |BY | 7.96 |( 0.02 )| |V | | | 7.44 : | |K0V+K1V |78018 DM | +830289 |NN UMa |122620.2+543519 |BY: | 7.53 |( 0.03 )| |V | | | 7.4 : | |K2 |78018 DM | +830290 |NO UMa *|123118.9+550708 |RS: | 8.08 |( 0.03 )| |V | | | 8.81 : | |K2V |78005 DM | +830291 |NP UMa |124144.5+554329 |BY | 8.27 |( 0.03 )| |V | | | 11.75 | |K3V |78018 DM | +830292 |NQ UMa |132545.5+565814 |BY | 7.29 |( 0.04 )| |V | | | 4.27 | |G9V |78018 DM | +830293 |NR UMa |120605.1+440739 |CST | 14.1 | | |p | | | | | |00001 02460| +830294 |NS UMa *|082424.7+654303 |RRAB | 10.75 | 11.35 | |* |51522.677 | | 0.599132 |20 |A |79045 79046| +830295 |NT UMa *|082439.0+724527 |EA | 13.75 | 14.3 | 14.27 |* |51520.823 | | 1.66439 |05 | |79004 79061| +830296 |NU UMa *|105301.1+574208 |EA | 9.27 | 9.50 | 9.50 : |V |48058.296 | | 5.50762 |03 : |G5IV |79006 DM | +830297 |NV UMa |105941.4+561714 |EA | 12.68 | 13.4 | 13.4 : |* |51306.810 | | 3.02405 |08 | |79006 79017| +830298 |NW UMa |111655.3+283334 |RRAB: | 14.7 | 15.5 | |* |51341.739 | | 0.5896 : |30 : | |79100 GSC | +830299 |NX UMa |111927.8+581853 |RRAB | 14.2 | 15.4 | |* |51406.145 | | 0.51907 |15 |BA |79025 79017| +830300 |NY UMa *|113212.9+385533 |GDOR | 7.95 | 8.02 | |V | | | 0.7564 | |F1V+G0:V |79219 DM | +830301 |NZ UMa |120826.1+485807 |GDOR | 7.72 | 7.82 | |V | | | 0.7572 | |F0III |79111 DM | +830302 |OO UMa |123454.0+533759 |RRAB | 14.2 | 15.1 | |* |51331.68 | | 0.64447 |20 : | |79169 GSC | +830303 |OP UMa |123653.6+575808 |LB | 9.75 | 10.10 | |* | | | | | |79100 GSC | +830304 |OQ UMa |135722.4+562607 |EW | 13.0 | 13.7 | 13.6 |* |51432.173 | | 0.283356 | | |79025 79159| +830305 |OR UMa *|081329.5+695034 |EA | 12.30 | 12.65 | 12.4 |* |51602.596 | | 14.215 |03 | |80013 GSC | NL80_2 +830306 |OS UMa |081917.2+623026 |EA/RS | 5.73 | 5.79 | |V |48022.9 | | 89.06 |10 : |G8III+F0: |80015 DM | NL80_2 +830307 |OT UMa *|081923.2+661236 |EW | 12.22 | 12.53 | 12.48 |* |51518.739 | | 0.316067 | | |80102 80102| NL80_2 +830308 |OU UMa |082831.2+672947 |RRAB | 12.5 | 13.2 | |* |51332.74 | | 0.66088 |16 | |80001 GSC | NL80_2 +830309 |OV UMa *|083605.6+711022 |EA | 10.78 | 11.7 | 11.10 |* |51631.63 | | 9.2512 |05 | |80013 GSC | NL80_2 +830310 |OW UMa |083725.7+491608 |RRC | 12.26 | 12.69 | |* |51511.79 | | 0.31127 |31 | |80026 GSC | NL80_2 +830311 |OX UMa *|083918.2+673942 |EA | 11.95 | 12.45 | 12.14 |* |51274.687 | | 3.4832 |13 | |80013 GSC | NL80_2 +830312 |OY UMa *|085031.6+672625 |EA | 13.2 | 14.2 | 13.3 |* |51567.76 | | 1.52803 |13 | |80013 GSC | NL80_2 +830313 |OZ UMa |085114.6+562120 |RRC | 11.46 | 11.80 | |* |51600.77 | | 0.34528 |40 | |80026 GSC | NL80_2 +830314 |PP UMa *|085215.1+702624 |RRAB | 13.45 | 14.35 | |* |51565.84 | | 0.51869 |22 : | |80026 GSC | NL80_2 +830315 |PQ UMa |085539.6+602937 |RRAB | 13.74 | 14.55 | |* |51504.78 | | 0.47414 |25 : | |80026 GSC | NL80_2 +830316 |PR UMa |085601.6+621445 |RRAB | 13.81 | 14.74 | |* |51623.76 | | 0.50510 |15 | |80026 GSC | NL80_2 +830317 |PS UMa *|085646.5+694032 |EA | 12.47 | 12.8 : | 12.78 |* |51628.645 | | 9.272 |05 | |80023 GSC | NL80_2 +830318 |PT UMa |085819.8+522628 |SR | 10.73 | 11.70 | |V | | | 101.7 | | |80057 GSC | NL80_2 +830319 |PU UMa *|090103.9+480912 |UG+EA | 16.2 | 21.2 | |* |53773.4875 | | 0.0778805 |10 |pec(UG) |80030 80027| NL80_2 +830320 |PV UMa *|090332.3+530630 |SRD: | 6.86 |( 0.02 )| |V | | | 82.0 | |G5Ba1 |80315 HIP | NL80_2 +830321 |PW UMa *|091531.2+650127 |EW | 11.06 | 11.63 | 11.5 |* |51627.6894 | | 0.5553 | | |80316 GSC | NL80_2 +830322 |PX UMa *|091544.9+624832 |DSCTC: | 10.01 | 10.06 | |V | | | 0.0422 | |A0 |80317 DM | NL80_2 +830323 |PY UMa |092430.6+421817 |RRAB | 12.79 | 13.51 | |* |51606.66 | | 0.56211 |15 | |80026 GSC | NL80_2 +830324 |PZ UMa *|092907.1+495123 |EW | 12.5 | 13.4 | 13.1 |* |51337.71408 | | 0.2627 | | |80316 GSC | NL80_2 +830325 |QQ UMa *|092909.7+481905 |EW | 13.3 | 14.1 | 14.1 |* |51330.73815 | | 0.4581 | | |80316 GSC | NL80_2 +830326 |QR UMa |093038.3+444610 |EA | 7.35 | 7.45 | |V |48147.080 | | 1.7854 |09 |A5 |80015 HIP | NL80_2 +830327 |QS UMa |093214.8+495055 |EA | 15.7 | 17.65 | |V |54512.5 | | 0.4183 |17 |pec(e) |80322 80238| NL80_2 +830328 |QT UMa *|093629.2+485246 |EW | 11.00 | 11.80 | 11.70 |* |51563.948 | | 0.473522 | | |80042 GSC | NL80_2 +830329 |QU UMa |093911.6+611023 |RRAB | 12.97 | 13.67 | |* |51540.77 | | 0.63103 |11 | |80026 GSC | NL80_2 +830330 |QV UMa *|094423.5+500256 |EW | 13.5 | 14.5 | 14.25 |* |51354.68751 | | 0.3115 | | |80316 GSC | NL80_2 +830331 |QW UMa |094656.6+634144 |RRC | 11.04 | 11.38 | |* |51633.656 | | 0.29849 |45 | |80001 GSC | NL80_2 +830332 |QX UMa |094732.6+512724 |RRC | 12.59 | 13.03 | |* |51600.80 | | 0.32306 |32 | |80026 GSC | NL80_2 +830333 |QY UMa |094954.9+514423 |RRAB | 12.58 | 13.20 | |* |51540.78 | | 0.57205 |19 | |80026 GSC | NL80_2 +830334 |QZ UMa |095111.1+470913 |RRAB | 13.92 | 14.82 | |* |51279.68 | | 0.51615 | | |80026 GSC | NL80_2 +830335 |V0335 UMa |095411.5+423901 |SRD: | 10.1 | 10.4 | |* | | | 87. | |K2 |80001 GSC | NL80_2 +830336 |V0336 UMa |095748.8+604428 |RRAB | 12.92 | 13.72 | |* |51574.61 | | 0.61895 |13 | |80026 GSC | NL80_2 +830337 |V0337 UMa *|101108.8+503521 |EW | 13.7 | 14.25 | 14.20 |* |51607.6634 | | 0.383360 | | |80239 GSC | NL80_2 +830338 |V0338 UMa |102637.3+433432 |RRAB | 13.58 | 14.34 | |* |51601.66 | | 0.46716 |22 | |80026 GSC | NL80_2 +830339 |V0339 UMa |103131.7+501500 |RRAB | 13.57 | 14.41 | |V |51278.69 | | 0.64634 |17 | |80026 GSC | NL80_2 +830340 |V0340 UMa |103439.6+513921 |RS | 10.6 | 10.9 | |* | | | 12.11 | | |80158 GSC | NL80_2 +830341 |V0341 UMa |103538.2+581549 |RRAB | 13.18 | 14.20 | |V |51324.69 | | 0.52424 |16 | |80026 GSC | NL80_2 +830342 |V0342 UMa *|104514.7+521648 |EW | 13.69 |( 0.42 )|( 0.40 )|V |53054.8371 | | 0.343854 | | |80338 GSC | NL80_2 +830343 |V0343 UMa *|104554.6+521626 |EA: | 14.2 | 14.9 | 14.35 |V |53404.8768 | | 0.560644 |19 | |80339 80339| NL80_2 +830344 |V0344 UMa |110639.0+701826 |RS | 10.1 | 10.4 | |* | | | 9.058 | | |80158 DM | NL80_2 +830345 |V0345 UMa |111749.4+334015 |RRAB | 13.34 | 14.06 | |* |51507.91 | | 0.57667 | | |80026 GSC | NL80_2 +830346 |V0346 UMa |114823.6+350421 |BY | 11.64 |( 0.27 *)| |V | | | 14.7895 | | |80021 GSC | NL80_2 +830347 |V0347 UMa |114903.6+380031 |BY: | 11.00 |( 0.24 *)| |V | | | 8.7540 | |G7III |80021 DM | NL80_2 +830348 |V0348 UMa |115359.3+551436 |RRAB | 13.40 | 14.12 | |* |51530.99 | | 0.59307 |18 | |80001 GSC | NL80_2 +830349 |V0349 UMa |115724.5+382534 |RRAB | 13.7 | 14.6 | |* |51597.69 | | 0.50184 |10 | |80001 USNO | NL80_2 +830350 |V0350 UMa |120026.5+515718 |BY | 10.8 |( 0.05 )| |R | | | 1.336 | |K7V |80362 80362| NL80_2 +830351 |V0351 UMa *|124426.3+613515 |NL | 18.1 | 18.9 | |g | | | | |pec(e) |80030 80027| NL80_2 +830352 |V0352 UMa |125539.0+545741 |ELL: | 6.78 | 6.82 | |Hp| | | 1.41353 | |A0 |80112 HIP | NL80_2 +830353 |V0353 UMa |131922.4+584704 |RRAB | 12.82 | 13.35 | |* |51284.67 | | 0.74198 |16 | |80026 GSC | NL80_2 +830354 |V0354 UMa *|133538.4+491406 |EW | 10.93 | 11.21 | 11.12 |* |51420.700 | | 0.293825 | | |80384 80384| NL80_2 +830355 |V0355 UMa *|133941.2+484727 |ZZ+NL | 17.98 | 18.30 | |* | | | 0.00743 | |pec(e) |80385 80385| NL80_2 +830356 |V0356 UMa *|134354.6+502837 |EA | 12.9 | 13.4 | 13.0 |* |51413.624 | | 0.544755 | | |80102 80102| NL80_2 +830357 |V0357 UMa *|134542.3+510717 |EA | 12.7 | 14.3 | 12.8 |* |51417.56 | | 2.3073 |10 : | |80104 80104| NL80_2 +830358 |V0358 UMa *|134739.5+514835 |EA | 12.15 | 13.15 | 12.45 |* |51469.83 | | 4.669 |13 | |80104 80104| NL80_2 +830359 |V0359 UMa *|135120.2+545743 |ZZA | 15.5 |( 0.10 *)| |R | | | 0.002421 | |DA4 |80376 80204| NL80_2 +830360 |V0360 UMa *|135508.1+482601 |EW | 13.6 | 14.1 | 14.0 |* |51422.539 | | 0.36023 | | |80102 80102| NL80_2 +830361 |V0361 UMa |135524.3+600845 |RRAB | 13.30 | 14.01 | |* |51341.70 | | 0.58542 |20 | |80001 GSC | NL80_2 +830362 |V0362 UMa *|135943.3+494942 |EW | 14.2 | 14.7 | 14.6 |* |51419.762 | | 0.3428 | | |80102 80102| NL80_2 +830363 |V0363 UMa *|140914.6+553924 |EW | 13.75 | 14.05 | 14.0 |* |51420.741 | | 0.37909 | | |80085 80085| NL80_2 +830364 |V0364 UMa *|140954.2+613631 |EW | 13.4 | 13.95 | 13.95 |* |51419.867 | | 0.36698 | | |80085 80085| NL80_2 +830365 |V0365 UMa *|141127.4+551005 |EW | 12.85 | 13.15 | 13.10 |* |51413.875 | | 0.38119 | | |80085 80085| NL80_2 +830366 |V0366 UMa *|141344.5+601846 |EW | 13.6 | 14.2 | 14.2 : |* |51403.675 | | 0.45731 | | |80085 80085| NL80_2 +830367 |V0367 UMa |142215.4+602904 |RRAB | 12.97 | 13.77 | |* |51321.70 | | 0.60781 |23 | |80026 GSC | NL80_2 +830368 |V0368 UMa |142605.1+580512 |M | 10.4 | 13.2 | |* |51476. | | 233. | | |80341 GSC | NL80_2 +839005 |eps UMa *|125401.8+555735 |ACV | 1.76 |( 0.02 )| |V |26437.01 | | 5.0887 | |A0p(Cr-Eu) |02100 BD | +839014 |ksi UMa |111810.9+313145 |RS | 4.38 |( 0.01 )| |V | | | | | |70157 BD | +8390161|pi. 1 UMa |083911.7+650115 |BY | 5.64 |( 0.08 )| |V | | | | | |77075 DM | +839020 |ups UMa *|095059.4+590220 |DSCT | 3.68 | 3.86 | |V |41353.540 | | 0.1327 |64 |F2IV |09888 BD | +840001 |R UMi *|162957.9+721649 |SRB | 8.5 | 11.5 | |V | | | 325.7 |50 |M7IIIe |00001 00002| +840002 |S UMi *|152934.6+783800 |M | 7.5 |< 13.2 | |V |45931. | | 331.0 |50 |M6e-M9e |00001 00002| +840003 |T UMi *|133441.0+732553 |M | 7.8 | 15.0 | |V |45761. | | 301.0 |45 |M4e-M6e |00001 00002| +840004 |U UMi *|141719.9+664739 |M | 7.1 | 13.0 | |V |45418. | | 330.92 |50 |M6e-M8e |00001 00002| +840005 |V UMi *|133841.1+741836 |SRB | 7.2 | 9.1 | |V | | | 72.0 |45 |M5IIIab: |00657 08953| +840006 |W UMi *|160827.3+861200 |EA/SD | 8.51 | 9.59 | 8.66 |V |33682.323 | | 1.7011576 |23 |A3 |00001 08953| +840007 |X UMi *|201955.6+881628 |M | 12.5 | 18.4 | |p |43530. | | 338.0 |36 |Me |08009 00685| +840008 |Y UMi |171035.2+835028 |M | 11.2 |< 14.0 | |V |27892. | | 293. | | |00142 00145| +840009 |Z UMi |150201.0+830349 |M: | 11. |< 14. | |V |26040. | | 475. : | | |00144 00145| +840010 |RR UMi *|145735.0+655557 |SRB | 4.53 | 4.73 | |V | | | 43.3 | |M5III |09895 BD | +840011 |RS UMi |155049.4+721241 |EA/D/RS | 10.81 | 11.4 | |B |44756.734 | | 6.16862258 |12 |F8 |09897 00462| +840012 |RT UMi *|170405.6+801945 |EA/SD | 10.79 | 11.47 | 10.86 |V |41306.2902 | | 1.841962 |20 *|F0 |09898 09898| +840013 |RU UMi *|133856.8+694811 |EB/DW | 10.0 | 10.66 | 10.20 |V |41596.3365 | | 0.52492618 | |F5 |09900 08953| +840014 |RV UMi |142339.6+723022 |M | 11.5 | 16. | |p |27485. | | 304. | | |03235 02594| +840015 |RW UMi |164754.8+770212 |NA | 6. |< 21. | |p |35741. |1956 | | |pec(NOVA) |04204 04205| +840016 |RX UMi |160148.9+775806 |RRAB | 12.8 | 14.2 | |p |27157.390 | | 0.490442 |35 : | |03160 01464| +840017 |RY UMi |133837.8+760426 |LB: | 10.8 | 11.5 | |p | | | | |M4 |00174 BD | +840018 |RZ UMi *|145426.1+864338 |EW/KW | 12.8 | 13.5 | 13.5 |B |43191.2687 | | 0.33735283 | | |10095 10095| +840019 |SS UMi |155122.3+714512 |UG | 12.6 | 17.6 | |V | | | | | |67355 67355| +840020 |ST UMi |190727.3+884614 |RRAB | 14.0 | 15.8 | |p | | | | | |67356 67356| +840021 |SU UMi |220527.6+885049 |EA/SD: | 16.0 |< 17.4 | |p | | | | | |67356 67356| +840022 |SV UMi |140110.2+694150 |LB: | 9.30 | 9.50 | |Hp| | | | | |HIP HIP | +840023 |SW UMi |140458.0+662021 |LB: | 8.71 | 8.82 | |Hp| | | | | |HIP HIP | +840024 |SX UMi |142222.3+663247 |LB: | 8.07 | 8.24 | |Hp| | | | | |HIP HIP | +840025 |SY UMi |143547.5+790828 |LB: | 8.63 | 8.77 | |Hp| | | | | |HIP HIP | +840026 |SZ UMi *|145055.8+671911 |BY: | 11.41 | 12.02 | |Hp| | | | | |HIP HIP | +840027 |TT UMi |145500.2+745252 |SRB | 6.90 | 7.04 | |Hp| | | | | |HIP HIP | +840028 |TU UMi |145543.8+761824 |DSCTC | 8.84 | 8.90 | |Hp| | | | | |HIP HIP | +840029 |TV UMi |150059.7+730312 |EB | 8.77 | 8.85 | |Hp| | | | | |HIP HIP | +840030 |TW UMi |151250.9+752816 |LB | 7.93 | 8.09 | |Hp| | | | | |HIP HIP | +840031 |TX UMi |150747.1+854500 |BY: | 10.82 | 11.26 | |Hp| | | | | |HIP HIP | +840032 |TY UMi |151757.5+835134 |EA | 7.79 | 8.24 | |Hp| | | | | |HIP HIP | +840033 |TZ UMi |153000.1+702310 |LB | 8.40 | 8.60 | |Hp| | | | | |HIP HIP | +840034 |UU UMi |154116.6+755934 |BY: | 12.04 | 12.40 | |Hp| | | | | |HIP HIP | +840035 |UV UMi |161029.6+735305 |LB: | 9.47 | 9.84 | |Hp| | | | | |HIP HIP | +840036 |UW UMi |162559.6+782750 |SRB | 8.81 | 9.09 | |Hp| | | | | |HIP HIP | +840037 |UX UMi |165428.3+833022 |LB: | 9.70 | 9.87 | |Hp| | | | | |HIP HIP | +840038 |UY UMi |121520.3+874200 |GDOR: | 6.30 | 6.38 | |Hp| | | | | |75029 BD | +840039 |UZ UMi |181119.2+885925 |CST | 9.1 | | |p | | | | |G2V |00095 00095| +840040 |VV UMi *|125734.6+885727 |EA | 9.78 | 10.03 | 9.99 : |V |48557.320 | | 7.1520 |04 |A3 |79006 DM | +840041 |VW UMi |155446.8+854006 |EW | 12.10 | 12.52 | 12.52 |* |51420.948 | | 0.48885 | | |79004 GSC | +840042 |VX UMi |170140.1+751751 |GDOR | 6.48 |( 0.06 )| |B | | | 0.34511 | |A9V |79111 DM | +840043 |VY UMi |171414.0+764214 |EW | 11.09 | 12.00 | 11.70 |* |51274.913 | | 0.32540 | | |79006 79062| +840044 |VZ UMi *|132329.0+745409 |EA | 13.1 | 13.5 | 13.5 |* |51463.758 | | 0.62808 |10 | |80107 80107| NL80_2 +840045 |WW UMi *|132757.2+725623 |EB: | 12.45 | 12.6 | 12.55 |* |51608.784 | | 0.60194 | | |80013 GSC | NL80_2 +840046 |WX UMi *|134313.8+740240 |EW | 14.4 | 15.1 | 15.1 |* |51458.596 | | 0.38714 | | |80052 80052| NL80_2 +840047 |WY UMi *|134458.3+771551 |UV | 18.6 |( 0.05 )| |R | | | | |M7V |80387 2MASS| NL80_2 +840048 |WZ UMi *|135117.0+744244 |EW | 12.85 | 13.15 | 13.1 |* |51429.526 | | 0.64137 | | |80085 80085| NL80_2 +840049 |XX UMi |141320.4+735346 |RRAB | 14.2 | 14.8 | |* |51456.72 | | 0.61215 |18 | |80103 80103| NL80_2 +840050 |XY UMi |141755.7+714107 |RRAB | 12.95 | 13.75 | |* |51330.67 | | 0.65252 | | |80026 GSC | NL80_2 +840051 |XZ UMi |143951.6+744502 |RRAB | 11.96 | 12.47 | |* |51612.62 | | 0.58509 |25 | |80026 GSC | NL80_2 +840052 |YY UMi |153202.5+712715 |RRAB | 12.87 | 13.53 | |* |51620.79 | | 0.56962 |12 | |80026 GSC | NL80_2 +840053 |YZ UMi |153530.2+853739 |DSCT | 12.15 | 12.53 | |* |51511.600 | | 0.096605 | | |80171 GSC | NL80_2 +840054 |ZZ UMi |153636.6+691121 |EA | 11.25 | 12.0 | |* |51593.733 | | 3.20644 |10 | |80011 GSC | NL80_2 +840055 |AA UMi *|154642.7+814231 |EA | 12.39 | 12.7 | 12.68 : |* |51571.770 | | 1.46228 |16 | |80011 GSC | NL80_2 +840056 |AB UMi |160331.0+771112 |RRC | 14.45 | 15.0 | |* |51442.614 | | 0.30979 |43 | |80135 GSC | NL80_3 +840057 |AC UMi |161319.9+812335 |EA | 12.65 |< 13.3 | 12.9 : |* |51453.603 | | 0.643290 |12 | |80013 GSC | NL80_3 +840058 |AD UMi |161947.5+830853 |LB | 12.8 | 13.3 | |* | | | | |M5.5 |80062 GSC | NL80_3 +840059 |AE UMi |164608.9+831533 |EA | 12.55 | 13.1 | 12.7 |* |51332.705 | | 1.64465 |13 | |80013 GSC | NL80_3 +840060 |AF UMi |170024.5+803639 |RRAB | 12.77 | 13.53 | |* |51279.64 | | 0.69112 |16 | |80026 GSC | NL80_3 +840061 |AG UMi |171022.5+781459 |RRAB | 13.55 | 14.36 | |* |51457.61 | | 0.54440 |14 | |80026 GSC | NL80_3 +840062 |AH UMi |172227.4+801359 |EA | 13.45 | 15.0 | 13.65 |* |51404.796 | | 1.87622 |12 | |80011 GSC | NL80_3 +840063 |AI UMi |193653.6+882723 |EW | 14.0 | 14.7 | 14.6 : |* |51532.668 | | 0.313848 | | |80526 80526| NL80_3 +840064 |AK UMi *|194042.5+862109 |RRC: | 12.87 | 13.20 | |* |51353.766 | | 0.268250 |50 | |80083 GSC | NL80_3 +840065 |AL UMi |195712.2+864526 |EW | 12.35 | 12.6 : | 12.6 : |* |51495.800 | | 0.47687 | | |80013 GSC | NL80_3 +849001 |alf UMi *|023149.1+891551 |DCEPS | 1.86 | 2.13 | |V |31495.813 | | 3.9696 |50 |F7Ib-F8Ib |10096 BD | +849003 |gam UMi *|152043.7+715003 |DSCTC | 3.04 |( 0.05 )| |V |39950.367 | | 0.143009 | |A3II-III |09905 BD | +849005 |eps UMi *|164558.3+820214 |EA/D/RS | 4.19 | 4.23 | 4.21 |V |33077.75 | | 39.4809 |04 *|G5III |02994 BD | +849011 |lam UMi |171657.3+890216 |SRB | 6.35 | 6.45 | |Hp| | | | | |HIP HIP | +850001 |R Vel |100607.2-521117 |CST: | 6.49 | 6.52 | |V | | | | |K1III |00960 CoD | +850002 |S Vel *|093313.2-451231 |EA/SD | 7.74 | 9.50 | 7.83 |V |27612.3560 | | 5.9336475 |10 |A5Ve+K5IIIe |06220 00024| +850003 |T Vel |083740.8-472143 |DCEP | 7.68 | 8.34 | |V |40713.28 | | 4.63974 |30 |F6-G0II |05676 08086| +850004 |U Vel |093313.2-453054 |SR | 7.87 | 8.19 | |V | | | 37. | |M6III |05828 08953| +850005 |V Vel |092216.2-555737 |DCEP | 7.19 | 7.95 | |V |40736.25 | | 4.370991 |30 |F6-F9II |02309 08953| +850006 |W Vel *|101514.8-542842 |M | 8.3 | 14.0 | |V |40699. | | 394.72 |44 |M5-M8IIIe |00001 00002| +850007 |X Vel |095526.1-413513 |SR | 10.3 | 11.53 | |B | | | 140. : | |C4-5,4-5(Nb) |00693 08588| +850008 |Y Vel *|092901.4-521054 |M | 8.0 | 14.2 | |V |40437. | | 449.9 |40 |M8e-M9.5 |00001 00002| +850009 |Z Vel *|095254.3-541048 |M | 7.8 | 14.8 | |V |39898. | | 411.4 |46 |M9e |00001 00002| +850010 |RR Vel *|102204.1-422134 |EA/SD: | 10.7 | 11.6 | 10.9 |p |28171.546 | | 1.8541803 |13 |A |00007 00546| +850011 |RS Vel *|092345.3-485200 |M | 9.1 : |< 12.6 | |p |29810. | | 409.5 |40 |M7e |00692 08073| +850012 |RT Vel |103017.6-464113 |M: | 10.5 |< 12.0 | |p |15400. | | 141. | |M7e |00017 09423| +850013 |RU Vel *|105340.8-531128 |SR: | 10.6 | 15.3 | |p |28705. | | 125. |52 |M2e-M3e |00016 05474| +850014 |RV Vel |091900.6-503401 |EA/D: | 10.6 | 11.4 | |p |29231.739 | | 4.82109852 |13 |G0 |00007 08073| +850015 |RW Vel *|092019.4-493131 |M | 8.9 |< 13.1 | |p |30170. | | 443.1 |50 |M7III(II)e |00001 08073| +850016 |RX Vel *|092732.6-510415 |EA/SD | 10.4 | 11.2 | 10.5 |p |29243.272 | | 3.11182966 |22 |A2 |00007 08953| +850017 |RY Vel *|102041.0-551917 |DCEP | 7.86 | 8.89 | |V |44017.94 | | 28.1357 |22 |F5-G3Ib/II |10108 00694| +850018 |RZ Vel |083701.3-440653 |DCEP | 6.42 | 7.64 | |V |34845.57 | | 20.398240 |30 |G1Ib-G8 |05060 03715| +850019 |SS Vel |105251.5-532532 |LB | 11.8 | 13.2 | |p | | | | |C(N3) |00016 05474| +850020 |ST Vel |084455.9-503336 |DCEP | 9.39 | 10.08 | |V |40896.70 | | 5.8584249 |30 |K |00692 08953| +850021 |SU Vel |095002.6-420113 |SRB | 9.3 | 12.2 | |p | | | 150. : | |M5(III) |00693 08588| +850022 |SV Vel |104456.4-561722 |DCEP | 7.91 | 9.12 | |V |36195.125 | | 14.09707 |34 |F6-G5II |02309 09650| +850023 |SW Vel *|084338.7-472411 |DCEP | 7.44 | 8.96 | |V |40738.24 | | 23.4410 |15 |F8/G0Ib |00001 03715| +850024 |SX Vel *|084453.5-462035 |DCEP | 7.92 | 8.72 | |V |21015.98 | | 9.54993 |49 |F8II |00695 08086| +850025 |SY Vel |091225.7-434639 |SRB | 8.9 | 10.2 | |p | | | 63. | |M5/6III |00693 08953| +850026 |SZ Vel |095007.4-443908 |SRB | 9.4 | 10.9 | |p | | | 150. : | |M5e |00693 08953| +850027 |TT Vel *|102016.5-461404 |EA/SD: | 10.5 | 11.9 | 10.7 |p |28633.367 | | 2.1083805 |13 |A5 |00007 08953| +850028 |TU Vel |101835.3-451432 |CST: | 10.5 | | |p | | | | |G0 |01113 CoD | +850029 |TV Vel |103427.9-541428 |M | 11. |< 15. | |p |28285. | | 365.2 | |Ce(R8e) |00001 08613| +850030 |TW Vel |090306.6-544551 |SR | 11.0 |< 13.5 | |p | | | 280. : | |Ce(Ne) |00016 UCAC2| +850031 |TX Vel |091357.9-545012 |I: | 10.0 | 13. | |p | | | | |G5 |00016 08953| +850032 |TY Vel |091818.6-543609 |CST: | 11.84 | 11.93 | |V | | | | | |09963 UCAC2| +850033 |TZ Vel |093027.6-530849 |M | 11.3 |< 13.5 | |p |28901. | | 237.4 | | |00001 00696| +850034 |UU Vel |093533.2-540326 |M | 11.0 |< 14.0 | |p |28930. | | 408.9 | |M2e(S7,8e) |00692 00021| +850035 |UV Vel |094846.9-561939 | | 12. | 15. | |p | | | | | |00029 UCAC2| +850036 |UW Vel *|094905.2-562447 | | 12.0 |< 15. | |p | | | | | |00029 UCAC2| +850037 |UX Vel |104012.8-544255 |M | 10. |< 17. | |p |20265. | | 226. | |M0e |00697 08613| +850038 |UY Vel |104903. -544453:| | 12.5 | 16. | |p | | | | | |00697 08613| +850039 |UZ Vel |104916.7-552529 |SRA | 12.4 | 14.0 | |p |24550. | | 354. | |C |03551 03551| +850040 |VV Vel |104947.4-565105 |SR | 12.5 | 14.3 | |p |23868. | | 270. | | |03551 03551| +850041 |VW Vel |105508.4-543343 | | 11.0 |< 16. | |p | | | | | |00697 CPD | +850042 |VX Vel |105901.8-562018 |RRAB | 13.2 | 14.0 | |p |24190.436 | | 0.50940266 |14 | |00694 00694| +850043 |VY Vel |110020.4-553053 | | 12.0 | 15.0 | |p | | | | | |00029 2MASS| +850044 |VZ Vel |102811.0-511108 |SRA | 10.3 | 12.5 | |p |15511. | | 317. | |M6e |00031 08953| +850045 |WW Vel |105023.9-484024 |M | 10.8 | 14. | |p |23173. | | 187.4 | |M5e |00031 CPD | +850046 |WX Vel |104859.9-541054 |M | 11.2 | 14.2 | |p |28910. | | 411.5 | |M5e-M7IIIe |00016 08613| +850047 |WY Vel |092159.1-523352 |ZAND | 8.8 | 10.2 | |p | | | | |M3epIb:+B |00692 08953| +850048 |WZ Vel |101733.3-475650 |SRB | 9.0 | 10.0 | |p | | | 130. : | |M3-M5/6II/III |00692 08953| +850049 |XX Vel |103608.6-560236 |DCEP | 10.25 | 11.22 | |V |34909.742 | | 6.98457 |26 | |02309 00694| +850050 |XY Vel |110458.9-553905 |EA | 11.5 | 12.8 | |p |23901.375 | | 2.51037 |11 | |00032 CoD | +850051 |XZ Vel |101728.0-500550 | | 12.0 |< 14.0 | |p | | | | |C(N) |10109 CoD | +850052 |YY Vel |103210.4-561457 |EA/D | 10.6 | 11.1 | |p |23871.249 | | 4.1636 |12 | |00035 08613| +850053 |YZ Vel *|103705.1-560202 |EA/D | 12.2 | 12.8 | 12.8 |p |26363.458 | | 5.488342 |07 *| |03551 03551| +850054 |ZZ Vel *|103754.1-555637 |EA/DM | 9.93 | 10.39 | 10.0 |V |23700.420 | | 2.87615 |16 |A0V |00035 08613| +850055 |AA Vel *|105117.0-562437 |EB/DM | 9.68 | 9.9 | 9.9 |B |23852.212 | | 2.33432 | |B2 |00698 03715| +850056 |AB Vel |101952.1-561835 |DCEP | 14.5 | 15.8 | |p |25067.59 | | 6.24560 |16 | |00046 UCAC2| +850057 |AC Vel *|104618.4-564946 |EB/DM | 8.6 | 9.11 | 9.11 |V |29342.594 | | 4.5622426 | |B3III/V+B3III/V |00007 03715| +850058 |AD Vel |104526.6-560942 |M | 11.8 |< 14.4 | |p |24261. | | 161. | | |00699 08613| +850059 |AE Vel |093651.5-530158 |DCEP | 9.88 | 10.73 | |V |40772.20 | | 7.13357 |33 | |07934 09967| +850060 |AF Vel *|105302.5-495423 |RRAB | 10.68 | 11.78 | |V |41432.267 | | 0.5273984 |15 |F1-F4 |07984 06286| +850061 |AG Vel |105210.7-565834 |M | 13. |< 16. | |p |23847. | | 245. : | | |00700 05151| +850062 |AH Vel *|081200.0-463840 |DCEPS | 5.50 | 5.89 | |V |42035.675 | | 4.227171 |50 |F7Ib-II |09968 CoD | +850063 |AI Vel *|081405.2-443433 |DSCT | 6.15 | 6.76 | |V | | | 0.11157411 | |A2p-F2pIV/V |10112 00702| +850064 |AK Vel *|080553.9-463657 |EA | 13.0 | 13.4 | |p |26315.387 | | 0.6409118 |19 *| |00703 00703| +850065 |AL Vel *|083111.3-473957 |EA/GS/D | 8.60 | 8.93 | |V |42510.04 | | 96.107 |09 |K0III+A3III/V |00001 08086| +850066 |AM Vel |083537.1-474534 |CEP | 12.90 | 13.6 : | |V |35535.43 | | 7.52326 |32 | |02309 08086| +850067 |AN Vel |080609.9-433953 |RRAB | 11.7 | 13.8 | |p |26309.496 | | 0.3894864 |16 | |00705 00705| +850068 |AO Vel *|081153.9-484446 |EA/DM | 9.35 | 9.79 | 9.55 : |V |24269.333 | | 1.5845993 |15 *|A1p(Si)V |00049 03389| +850069 |AP Vel *|083945.8-435139 |CEP(B) | 9.49 | 10.48 | |V |34900.805 | | 3.12776 |33 |F9 |07326 03715| +850070 |AQ Vel *|102926.4-550314 |EA/KE: | 11.5 | 12.0 |( 0.05 )|p |24358.145 | | 1.042499 |12 | |00060 00060| +850071 |AR Vel |104003.6-564427 |EA/D | 12.0 | 12.6 | |p |24193.324 | | 3.21275 |12 | |00060 00060| +850072 |AS Vel *|082818.2-385819 |EA/KE: | 8.3 | 8.92 | 8.4 |V |26454.440 | | 1.55788874 |12 |A3 |00007 08953| +850073 |AT Vel *|080439.7-450126 |EA/DM | 12.1 | 12.6 | |p |26362.27 | | 11.7971 |07 | |00706 00706| +850074 |AU Vel *|080638.5-445554 |EA/SD | 11.9 | 13.6 | |p |26166.420 | | 5.67380 |10 *| |00706 00706| +850075 |AV Vel *|080701.3-473846 |EA/SD | 11.9 | 14.6 : | |p |26172.278 | | 3.8805 |08 | |00706 00706| +850076 |AW Vel *|080811.7-442054 |EA/DM: | 11.5 | 12.2 | |p |26176.139 | | 1.99246 |11 | |00706 00706| +850077 |AX Vel *|081049.3-474155 |CEP(B) | 7.93 | 8.48 | |V |43878.253 | | 2.592891 |42 |F6II |09970 08953| +850078 |AY Vel *|082017.3-435257 |EB/DM: | 9.46 | 9.9 | 9.7 |V |26308.903 | | 1.617677 | |B9IV/V |00001 03389| +850079 |AZ Vel *|082251.9-442545 |EA | 12.7 | 13.6 | 13.0 |p |26175.344 | | 0.77577765 |20 *| |00706 00706| +850080 |BB Vel *|083649.3-472237 |UG | 13.8 | 16.0 | |V | | | | | |05386 08852| +850081 |BC Vel *|084320.6-443901 |EA/D: | 11.8 | 12.3 | 12.3 |p |26174.647 | | 1.1735824 |22 |F8 |00706 00706| +850082 |BD Vel *|084444.0-430524 |EA/D | 12.0 | 13.0 | |p |26168.860 | | 13.2290 |12 | |00706 00706| +850083 |BE Vel *|085016.4-485920 |EB | 12.4 | 13.0 | 12.5 |p |26173.489 | | 0.6946717 | | |00706 00706| +850084 |BF Vel *|085627.0-395836 |EA/SD | 11.4 | 11.9 |( 0.04 )|p |28253.07 | | 0.70402 |20 | |00709 08086| +850085 |BG Vel |090815.8-512611 |DCEP | 7.43 | 7.91 | |V |34918.94 | | 6.923655 |32 |F7/8II |05060 08953| +850086 |BH Vel |082948.5-411326 |DCEP | 13.1 | 13.5 | |p |26180.78 | | 7.2008 |31 | |00280 00280| +850087 |BI Vel |103943.9-550634 |EA | 13.5 | 13.9 | |p |24374.217 | | 0.4194326 | | |00280 00280| +850088 |BK Vel |080838.1-435935 |M | 12.0 | 16.0 : | |p |24802. | | 461. | |Me |00710 00710| +850089 |BL Vel |080838.6-463101 |M | 11.7 | 16.2 | |p |27383. | | 303. | |Me |00710 00710| +850090 |BM Vel *|081207.8-490054 |EA/SD | 12.9 |< 14.9 : | 13.0 |p |26393.910 | | 2.710900 |18 | |00710 00710| +850091 |BN Vel |081305.5-480756 |SRA | 11.1 | 11.7 | |p |26659. | | 118.5 | |M4/6III |00710 CoD | +850092 |BO Vel *|081518.7-454644 |EW/KW | 13.8 | 14.2 | 14.2 |p |26307.690 | | 0.3344076 | | |00710 00710| +850093 |BP Vel *|081805.8-452326 |EW/KW | 12.9 | 13.8 | 13.7 |p |26534.9854 | | 0.26498597 | | |00710 00710| +850094 |BQ Vel |082206.5-471814 |CEP | 14.0 | 15.1 : | |p |26339.40 | | 3.372462 |26 | |00710 00710| +850095 |BR Vel *|082720.0-400414 |EA | 12.1 | 13.0 | |p |26141.36 | | 7.72461 |05 | |00710 00710| +850096 |BS Vel |082940.8-413400 |UV: | 13.2 | 14.5 | |p | | | | | |00711 00710| +850097 |BT Vel *|083501.7-484154 |EW/KW | 14.0 | 15.1 | 14.8 |p |26288.617 | | 0.3020964 | | |00710 00710| +850098 |BU Vel *|084006.3-424943 |EW | 10.49 | 11.07 | 10.96 |V |41013.386 | | 0.5162856 | |F0 |00710 05151| +850099 |BV Vel *|084447.6-445910 |EA | 12.5 | 13.4 | |p |26183.48 | | 4.2308 |15 *| |00710 00710| +850100 |BW Vel *|084529.9-471651 |EB | 14.0 | 15.3 | 14.3 |p |26400.627 | | 0.4905399 | | |00710 00710| +850101 |BX Vel *|084805.7-423932 |EA/SD | 13.2 | 15.0 | |p |26459.565 | | 1.344807 |15 *| |00710 00710| +850102 |BY Vel |090251.7-492816 |EA | 10.6 | 11.5 | |p |28684.179 | | 3.455370 |14 *| |00696 CoD | +850103 |BZ Vel *|091420.8-494619 |EB/KE | 10.3 | 10.9 | 10.4 |p |29776.193 | | 1.262417 | |A0 |00696 08073| +850104 |CC Vel |093802.3-452340 |M | 11.5 |< 15. | |p |28810. | | 327. | |M7e |00016 UCAC2| +850105 |CD Vel |094438.2-455237 |RRAB | 11.3 | 12.4 | |p |28721.235 | | 0.5734894 |14 |F |00696 06286| +850106 |CE Vel |094900.9-414925 |LB | 10.1 | 11.1 | |p | | | | |M4 |00016 08588| +850107 |CF Vel |101057.5-503053 |M | 10.3 | 15.5 | |p |28882. | | 245. | |Me |00016 08953| +850108 |CG Vel |103921.9-425049 |EA/SD | 10.6 | 12.5 | |p |28874.45 | | 3.685 |11 : | |00016 CoD | +850109 |CH Vel |104820.0-413038 |M | 9.9 |< 13.5 | |p |28275. | | 327. | | |00016 02338| +850110 |CI Vel |110101.3-542442 |M | 11.0 | 13.5 | |p |28230. | | 142.5 | |M0e |00016 02338| +850111 |CK Vel *|103730.8-560742 |EA | 10.0 | 10.6 | |p |23879.400 | | 35.009 /N| | |00712 08613| +850112 |CL Vel *|105425.4-563531 |EA/SD | 13.3 | 14.6 | 13.4 |p |24648.279 | | 0.8577303 |25 *| |00713 00713| +850113 |CM Vel |100732.8-531537 |SRC | 8.7 | 11.0 | |p |28780. | | 780. | |M0-M5(II) |00714 05625| +850114 |CN Vel |110238.6-542310 |NB | 9.8 |< 16.5 | |p |17150. :|1905 | | |pec(NOVA) |00303 00021| +850115 |CO Vel |082941.3-402002 |DCEP | 12.15 | 12.93 | |V |35567.46 | | 4.27536 |26 | |00001 00716| +850116 |CP Vel |084810.5-483933 |DCEP | 13.1 | 13.8 | |p |41122.49 | | 9.84226 |50 | |00001 00717| +850117 |CQ Vel |085850.5-532011 |NA | 9.0 |< 16.5 | |p |29739. |1940 | | | |00718 00696| +850118 |CR Vel *|092836.7-510550 |EA/SD: | 13.8 |< 14.8 | |p |29779.2684 | | 1.4411689 |16 | |00719 00719| +850119 |CS Vel *|094110.3-534858 |DCEP | 11.24 | 12.21 | |V |44021.06 | | 5.90474 |25 | |00719 10114| +850120 |CT Vel |083205.1-442328 |M | 12.4 |< 15.5 | |p |25923. | | 264. | | |00720 00720| +850121 |CU Vel *|085833.0-414752 |UGSU | 10.0 | 15.5 : | |V | | |( 164.7 ) | | |08092 08852| +850122 |CV Vel *|090038.0-513320 |EA/DM | 6.69 | 7.19 | 7.17 |V |42048.6689 | | 6.889494 |07 *|B2.5V+B2.5V |10116 03711| +850123 |CW Vel *|090221.3-525029 |EA/SD | 10.10 | 11.12 |( 0.1 pg)|V |44248.7584 | | 2.360927 |17 |B5III/IV |00001 03711| +850124 |CX Vel |090638.1-522127 |DCEP | 12.36 | 13.3 | |B |41002.28 | | 6.255425 |28 | |00001 00696| +850125 |CY Vel |090824.1-532941 |CWA | 12.7 | 13.9 | |p |29045.75 | | 19.5287 |39 | |00696 00696| +850126 |CZ Vel *|091044.5-504241 |EA/D | 10.8 | 11.4 | 11.1 |p |29756.463 | | 5.19287 |17 *| |00696 CoD | +850127 |DD Vel |091209.6-502234 |CWA | 12.18 | 13.04 | |V |34746.312 | | 13.1948 |50 | |02309 00696| +850128 |DE Vel |091258.1-525122 |SRA | 13.7 |< 14.5 | |p |28159. | | 272. | | |00696 00696| +850129 |DF Vel *|091529.5-501124 |EA/SD | 13.3 | 14.4 | 13.4 |p |29045.235 | | 0.7644785 |20 *| |00696 00696| +850130 |DG Vel |091523.6-524502 |I | 12.1 | 12.9 | |p | | | | | |00696 00696| +850131 |DH Vel *|091710.2-453250 |EB/KE | 13.5 | 14.0 | 13.7 |p |28095.606 | | 1.286856 | | |00696 00696| +850132 |DI Vel |091704.5-535210 |M | 12.2 |< 14.0 | |p |28172. | | 259. | | |00696 00696| +850133 |DK Vel *|091716.7-530506 |DCEP | 10.34 | 10.88 | |V |41354.250 | | 2.48164 |40 |F8II |06223 06826| +850134 |DL Vel *|091805.5-460431 |EA | 11.8 | 12.4 | 12.1 |p |29776.216 | | 0.56355802 |18 | |00696 CoD | +850135 |DM Vel *|091911.8-502311 |SRB: | 10.9 | 11.9 | |p | | | 175. : | |M6 |00696 08073| +850136 |DN Vel |091937.7-454048 |EA/GS/D | 9.57 | 10.1 : | |V |28450.69 | | 12.8977 |09 *|A0III/IV |00696 08953| +850137 |DO Vel |092141.8-514833 |EA/SD | 12.8 | 14.6 | |p |28695.398 | | 3.277127 |11 | |00696 00696| +850138 |DP Vel |093015.8-530331 |DCEP | 11.51 | 12.20 | |V |35250.94 | | 5.48438 |24 | |02309 00696| +850139 |DQ Vel *|093034.2-501154 |EA | 10.7 | 11.6 | 11.0 |p |30881.20 | | 6.08337 |13 *| |00696 CoD | +850140 |DR Vel |093141.0-493918 |DCEP | 9.12 | 9.97 | |V |34930.70 | | 11.1993 |42 | |10108 08953| +850141 |DS Vel *|093427.1-523223 |EW | 10.5 | 11.0 | 10.8 |p |29015.211 | | 0.721565 | | |00696 08953| +850142 |DT Vel *|094347.9-525727 |DSCT | 12.9 | 14.1 : | |p |29049.289 | | 0.12745532 |31 | |05790 00696| +850143 |DU Vel |094542.1-491330 |EA | 10.8 | 11.5 | |p |27485.313 | | 1.552563 |12 | |00696 CoD | +850144 |DV Vel |094921.1-452940 |I | 13.2 | 14.4 | |p | | | | | |00696 00696| +850145 |DW Vel |095003.4-520005 |M | 10.0 | 16. | |p |27549. | | 476. | |M8e |00696 00696| +850146 |DX Vel *|095146.0-505324 |EA/SD: | 10.2 | 11.0 | 10.3 |p |29037.269 | | 1.117296 |14 |A5 |00696 08953| +850147 |DY Vel |095215.5-493132 |M | 11.1 |< 16. | |p |31484. | | 315. | |M7e |00696 00696| +850148 |DZ Vel |095436.6-495956 |EA/D | 10.5 | 11.0 | |p |29747.194 | | 2.81044 |15 *|G0 |00696 00696| +850149 |EE Vel |095522.6-495244 |LB | 10.9 | 12.56 | |B | | | | |C(R) |00696 00696| +850150 |EF Vel |095710.9-521527 |EA | 12.9 | 13.7 | |p |30879.153 | | 3.06955 |13 *| |00696 00696| +850151 |EG Vel |105016.1-443214 |EA | 10. | 12. | |p | | | | |F1 |00085 08953| +850152 |EH Vel *|095111.7-560241 |EA/SD | 13.3 | 14.9 | 13.4 |p |31195.398 | | 4.28947 |10 | |00245 00245| +850153 |EI Vel |080712.1-450357 |RR | 13.8 |< 14.8 | |p | | | 0.733492 | | |00720 00720| +850154 |EK Vel |081312.2-463623 |M: | 13.3 |< 15. | |p |26324. | | 318. | | |00720 00720| +850155 |EL Vel *|083050.3-400422 |EA/D | 11.0 | 11.6 | |p |26414.290 | | 2.758420 |10 *| |00720 CoD | +850156 |EM Vel |083540.3-404008 |I | 12.3 | 13.5 | |p | | | | | |00720 00720| +850157 |EN Vel |083652.8-464344 |M | 11.1 |< 14.3 | |p |26388. | | 107. | |C |00720 00720| +850158 |EO Vel *|083903.3-434356 |EA/DM | 11.37 | 11.90 | 11.90 |V |41713.60 | | 5.32966 |10 *|A0 |08094 05151| +850159 |EP Vel *|084141.3-480645 |SRA | 9.8 | 11.2 | |p |26335. | | 240. | |M6 |00720 08086| +850160 |EQ Vel |084346.6-450512 |EA/SD | 11.0 | 12.2 | |p |26507.2858 | | 1.0802672 |13 *|B7 |00720 05151| +850161 |ER Vel |084836.6-455916 |M | 13.3 |< 15.1 | |p |26372. | | 204. | |Me |00720 00720| +850162 |ES Vel *|085918.0-500834 |EA/D | 12.5 | 13.2 | 12.7 |p |28846.41 | | 5.32946 |11 | |00720 00720| +850163 |ET Vel *|090902.5-463750 |EA/D | 11.9 | 12.3 | 12.1 |p |29778.222 | | 3.080858 |12 *| |00720 CoD | +850164 |EU Vel *|091303.6-445657 |EW/KW | 13.5 | 14.1 | 13.8 |p |30794.343 | | 0.3743755 | | |00720 00720| +850165 |EV Vel |091353.3-505435 |EA/SD: | 12.6 | 14.1 | |p |28632.327 | | 4.543668 |09 *| |00720 00720| +850166 |EW Vel |091925.9-531008 |EA/DS | 12.8 |< 14.2 | |p |29021.26 | | 11.7455 |08 *| |00720 00720| +850167 |EX Vel |092001.5-525122 |DCEP | 11.21 | 12.07 | |V |34920.945 | | 13.2341 |44 | |02309 00720| +850168 |EY Vel *|092046.5-514245 |EA | 12.5 | 13.6 | |p |28982.756 | | 4.07908 |10 | |00720 00720| +850169 |EZ Vel |092507.4-531236 |DCEP | 13.4 | 14.96 | |B |34532.64 | | 34.5346 |10 | |00720 10047| +850170 |FF Vel |093205.2-482917 |EA/DM | 13.3 | 13.6 | |p |31494.54 | | 14.2592 |05 *| |00720 00720| +850171 |FG Vel |093323.7-524521 |DCEP | 11.54 | 12.13 | |V |34916.875 | | 6.45320 |35 | |02309 00720| +850172 |FH Vel |093711.4-530615 |EA/KE: | 11.6 | 12.0 | |p |29753.26 | | 1.457473 |10 *| |00720 00720| +850173 |FI Vel |094317.4-455500 |L | 12.6 | 13.6 | |p | | | | | |00720 00720| +850174 |FK Vel |094336.1-464458 |SRB | 12.1 | 13.5 | |p |31230. | | 206. | |C(N) |01007 00720| +850175 |FL Vel |094710.9-484245 |SR | 11.4 | 12.3 | |p |28280. | | 840. | | |00720 00720| +850176 |FM Vel *|094742.3-532811 |EW/KW | 12.2 | 12.9 | 12.9 |p |29043.238 | | 0.3895262 | | |00720 00720| +850177 |FN Vel |094841.5-553110 |CEP | 10.9 | 12.1 | |p |33240.35 | | 5.32422 | | |00090 CPD | +850178 |FO Vel |095106.9-533732 |EA | 14.0 |< 14.5 | |p |29782.128 | | 3.402584 |12 | |00720 00720| +850179 |FP Vel |095325.9-523034 |LB | 12.0 | 13.38 | |B | | | | |C |00720 00720| +850180 |FQ Vel |095743.7-501340 |EA/SD: | 12.7 |< 14.0 | |p |29021.334 | | 3.58324 | | |00720 00720| +850181 |FR Vel |095904.0-503049 |M: | 12.4 |< 14.0 | |p |27485. | | 430. | | |00720 00720| +850182 |FS Vel *|104600.3-435917 |RRAB | 11.54 | 12.59 | |V |39560.324 | | 0.4757324 |15 |A5-F5 |05233 02382| +850183 |FT Vel *|084230.6-512512 |EB/SD: | 10.1 | 11.2 | 10.5 |p |38374.535 | | 1.05975 | | |04371 08953| +850184 |FU Vel |093350.6-555506 |EA/SD: | 10.3 | 12.1 | |p |28655.225 | | 2.446805 |12 *|A0 |08040 08953| +850185 |FV Vel |094606.2-440822 |EA | 10.82 | 12.2 | |V |52463.5142 | | 1.521100 |13 | |03973 DM | +850186 |FW Vel *|104525.9-522420 |EA/DM | 9.5 | 10.2 | 10.0 |p |28694.240 | | 2.384082 | |A2 |03918 05474| +850187 |FX Vel *|083235.8-375902 |EB/KE | 9.70 | 10.70 | 10.5 |V |34302.525 | | 1.052565 | |Be |05857 08953| +850188 |FY Vel *|083223.4-493605 |EB:/GS | 6.84 | 7.06 | 7.03 |V |40210.586 | | 33.72 | |B2Ibpe |05943 CoD | +850189 |FZ Vel *|085852.4-471405 |DSCTC | 5.14 | 5.17 | |V | | | 0.065 | |A6/7(m)-F0m |05944 CoD | +850190 |GG Vel *|091249.8-432916 |EA | 8.72 | 9.07 | |V |41329.98944 | | 1.4752160 | *|A0V |10050 CoD | +850191 |GH Vel |091343.9-483905 |SRB | 9.05 | 9.27 | |V |40664. | | 75. | |M5III |05828 CoD | +850192 |GI Vel |092501.4-452235 |SRB | 7.88 | 8.05 | |V | | | 120. : | |M3III |05828 CoD | +850193 |GK Vel |092507.9-435836 |SRB | 6.26 | 6.39 | |V | | | 120. : | |M3III-M5III |05828 CoD | +850194 |GL Vel |092644.0-533055 |SRB | 7.31 | 8.01 : | |V |40644. | | 117. | |M4II/III |05828 08953| +850195 |GM Vel |094740.9-463825 |SRB | 8.83 | 9.10 | |V | | | 120. | |M2 |05828 CoD | +850196 |GN Vel |105531.0-412333 |M: | 11.9 |< 13.0 | |p | | | | |Me |06645 06316| +850197 |GO Vel |083739.7-402608 |SRB | 6.61 | 6.98 | |V | | | 75. | |M4III-M5III |06645 CoD | +850198 |GP Vel *|090206.9-403317 |E+ACYG+XP | 6.76 | 6.99 | 6.90. |V |44275.20 | | 8.9647 | |B0.5Iaeq |10051 08086| +850199 |GQ Vel |101455.5-413923 |SR | 13.8 | 15.3 | |p | | | | |Me |02935 UCAC2| +850200 |GR Vel |102322.7-461725 |M | 12.7 |< 16. | |p | | | | |Me(C) |02935 05937| +850201 |GS Vel |104530.8-563642 |LC | 9.21 | 9.45 | |V | | | | |M2Ib |06149 05151| +850202 |GT Vel |091037.7-430456 |EA | 9.7 | 10.3 | |p |41689.080 | | | |A2/3III/IV |06847 06847| +850203 |GU Vel |082736.6-530519 |DSCTC | 5.08 | 5.11 | |V | | | 0.07 | |A9/F0III/IV |07489 CoD | +850204 |GV Vel *|084233.8-471225 |LB | 10.0 | 12.00 | |V | | | | |C(N) |10130 07868| +850205 |GW Vel |085035.8-453256 |GCAS | 8.97 | 9.50 | |V | | | | |B2Vne |04456 CoD | +850206 |GX Vel |091104.4-445204 |ACYG: | 4.97 | 5.04 | |V | | | | |B5Ia |03712 CoD | +850207 |GY Vel |101640.1-511217 |LB | 6.23 | 6.5 | |V | | | | |M4/5III |06324 10118| +850208 |GZ Vel |101936.8-550146 |LC | 3.43 | 3.81 | |R | | | | |K3II |06352 05625| +850209 |HH Vel |104209.2-534313 |SRB | 8.34 | 9.54 | |V | | | 100. : | |M5/6III |07871 CPD | +850210 |HI Vel |104410.6-530538 |LB | 8.33 | 8.62 | |V | | | | |M3/5III |07871 CoD | +850211 |HK Vel |104551.4-544339 |LB | 9.09 | 9.45 | |V | | | | |M3-M8 |07871 04641| +850212 |HL Vel |104754.1-553927 |LB | 9.62 | 9.99 | |V | | | | |M6-M7 |07871 04641| +850213 |HM Vel |104859.6-563609 |SRB | 8.57 | 9.08 | |V | | | 70. : | |M6/7III |07871 04641| +850214 |HN Vel |090341.8-423021 |M | 12.6 | 15.3 | |p | | | | |M8e |04725 | +850215 |HO Vel |102456.1-511459 |M | 12.6 | 15.5 | |p | | | | |M5e |04453 UCAC2| +850216 |HP Vel |104102.7-520509 |LB | 8.42 | 8.87 | |V | | | | |S5,2(M4/5) |07871 CoD | +850217 |HQ Vel |104543.9-533743 |LB | 7.30 | 7.56 | |V | | | | |M1/2III |07871 CPD | +850218 |HR Vel |104733.5-532115 |LB | 9.24 | 9.87 | |V | | | | |M2/3 |07871 CoD | +850219 |HS Vel |105402.6-492114 |M | 11.3 | 16.0 | |p | | | | |M7e |02935 | +850220 |HT Vel |105913.4-570715 |SRB | 10.65 | 11.07 | |V | | | 55. : | |M5-M7 |07871 04641| +850221 |HU Vel *|083520.7-451036 |PSR | 23.2 | 25.2 | |B | | | | | |10135 08276| +850222 |HV Vel *|083552.0-505811 |ACVO: | 5.77 | 5.81 | |V | | | 2.66745 | |B9p(Si) |09919 CoD | +850223 |HW Vel *|083923.8-532623 |BCEP | 5.46 | 5.52 | |V |42745.000 | | 0.26145 | |B6V |08565 04745| +850224 |HX Vel *|084216.2-480557 |ELL: | 5.48 | 5.53 | 5.50 : |V |42758.253 | | 1.12488 | |B1.5Vn |09019 CoD | +850225 |HY Vel *|084225.4-530650 |ELL: | 4.83 | 4.90 | 4.90 |V |44627.727 | | 3.106 | |B3IV |10093 04745| +850226 |HZ Vel |084952.4-390830 |DSCTC | 6.39 |( 0.025 )| |V | | | 0.087 | |A5III |08215 CoD | +850227 |II Vel |085225.1-491405 |E/D | 9.52 | 9.65 | |V | | | 2.9757 | | |08389 CoD | +850228 |IK Vel |090513.9-531245 |EB/DM | 8.50 | 8.95 | |V | | | 1.992321 | |B5 |08389 CoD | +850229 |IL Vel *|091731.1-525020 |BCEP | 9.13 |( 0.15 )| |V | | | 0.18465 | |B2III |08568 CoD | +850230 |IM Vel *|093625.4-484504 |ACVO | 6.50 |( 0.04 )| |B |43181.00 | | 2.85204 | |A8p(Sr-Eu-Cr) |10140 CoD | +850231 |IN Vel *|093713.0-420115 |RS: | 8.84 | 9.13 | |V | | | | |K2IIIp |08570 CoD | +850232 |IO Vel |093803.2-541309 |ACV | 6.9 |( 0.03 )| |V |43185.702 | | 1.08184 |65 |A0p(Si-Sr) |09919 CPD | +850233 |IP Vel *|094327.6-511341 |E | 6.03 |( 0.19 )| |B |42861.6697 | | | |B6V |08572 CoD | +850234 |IQ Vel *|100412.7-404626 |EA/SD | 12.81 | 13.73 | 12.94 |V |44996.72137 | | 3.9262974 |06 |A2-5 |10141 08575| +850235 |IR Vel |100651.0-410636 |M: | 12.7 |< 15.5 | |p | | | | |S0,5e |02935 UCAC2| +850236 |IS Vel *|080943.2-475614 |BCEP | 5.23 | | |V | | | 0.108 | |B1IVn |08787 CoD | +850237 |IT Vel *|081801.1-470531 |ELL: | 7.03 | 7.08 | 7.08 |V |42524.231 | | 2.088 | |B7III |08805 CoD | +850238 |IU Vel |090022.3-431026 |GCAS | 5.97 | 6.08 | |V | | | | |B2.5Vne |10142 CoD | +850239 |IV Vel |095710.9-523820 |BCEP | 5.99 |( 0.013 )| |B |43215.675 | | 0.1608 | |B3IV |08420 CoD | +850240 |IW Vel |105707.8-504554 |DSCTC | 5.90 |( 0.016 )| |V | | | 0.150 | |A4V |08403 CoD | +850241 |IX Vel |081519.0-491321 |NL | 9.1 | 10.0 | |p | | | | | |67360 CoD | +850242 |IY Vel |085519.2-450230 |* | 6.23 | 6.27 | |V | | | | | |67362 CoD | +850243 |IZ Vel |090120.9-415151 |* | 5.53 | 5.56 | |V | | | | | |67362 CoD | +850244 |KK Vel |090742.5-443757 |BCEP | 6.75 | 6.80 | |V | | | | | |67365 67366| +850245 |KL Vel |091230.5-433648 |ACV | 5.56 | 5.57 | |V | | | | | |67368 CoD | +850246 |KM Vel |094114.0-492247 |M | 8.12 | 8.99 | |J | | | | | |67189 67186| +850247 |KN Vel |094743.9-495636 |E | 7.1 |( 0.09 )| |V | | | | | |67370 CoD | +850248 |KO Vel |101558.3-475810 |NL+X | 17. |( 1.0 )| |V | | | | | |67372 67372| +850249 |KP Vel |101645.4-461131 |EA/SD | 14.03 | 14.8 | |B | | | | | |67374 67375| +850250 |KQ Vel |105501.0-421504 |ACV | 6.10 | 6.12 | |V | | | | | |67198 CoD | +850251 |KR Vel |083959.4-531540 |ACV | 7.22 | 7.27 | |V | | | | | |68187 68377| +850252 |KS Vel |084045.4-543754 |UV | 18. : | 22. | |U | | | | | |68271 68271| +850253 |KT Vel |084219.0-530600 |ACV | 5.49 | 5.56 | |V | | | | | |68187 68377| +850254 |KU Vel |100806.5-404004 |DSCTC | 12.55 |( 0.07 )| |V | | | | | |68272 68272| +850255 |KV Vel |105440.6-484703 |R/PN | 11.78 | 12.34 | |V | | | | | |68312 68311| +850256 |KW Vel |080841.6-492950 |ACV | 7.84 | 7.98 | |U | | | | | |69056 CoD | +850257 |KX Vel |085033.5-463145 |E | 4.87 |( 0.08 b )| |B | | | | | |69287 CoD | +850258 |KY Vel |085707.1-521532 |ACV | 10. |( 0.04 )| |V | | | | | |69233 CoD | +850259 |KZ Vel |095307.7-550115 |SRD | 8.64 |( 0.07 )| |V | | | | | |69288 CPD | +850260 |LL Vel |110342.6-512110 |ELL: | 6.71 | 6.76 | |V | | | | | |69289 CoD | +850261 |LM Vel |084047.8-450330 |ACYG | 7.54 | 7.57 | |V | | | | | |70077 CoD | +850262 |LN Vel |084156.9-452439 |ACYG | 5.19 | 5.25 | |V | | | | | |70077 CoD | +850263 |LO Vel |084238.9-471037 |E: | 18.32 |( 0.8 )| |V | | | | | |70135 70136| +850264 |LP Vel |084241.3-471207 |E: | 15.13 |( 0.35 )| |V | | | | | |70135 70136| +850265 |LQ Vel |084242.7-471035 |BY | 17.59 |( 0.08 )| |V | | | | | |70135 70136| +850266 |LR Vel |091842.4-513338 |ACYG | 5.82 | 5.96 | |V | | | | | |70077 CoD | +850267 |LS Vel |083507.1-530425 |UV | 14.5 | 19.5 | |B | | | | | |71076 71076| +850268 |LT Vel |084813.9-445222 |EB | 9.95 | 10.46 | |V | | | | | |71077 71236| +850269 |LU Vel |095834.3-462530 |UV | 11.5 | 13.76 | |U | | | | | |71095 CoD | +850270 |LV Vel |100545.8-442133 |ZZ | 16.6 |( 0.1 )| |V | | | | | |71096 71097| +850271 |LW Vel |101322.8-511359 |DSCTC | 5.24 | 5.29 | |V | | | | | |71017 CoD | +850272 |LX Vel |103022.4-570439 |EB/GS | 6.60 | 6.66 | |b | | | | | |71074 CPD | +850273 |LY Vel |092034.8-473401 |LPB | 7.75 |( 0.02 )| |V | | | | | |72172 CoD | +850274 |LZ Vel |095439.1-431916 |RS: | 7.27 | 7.39 | |V | | | | | |72173 CoD | +850275 |MM Vel |101336.3-450431 |XND | 14.9 | 19. | |B | | | | | |72174 | +850276 |MN Vel |083800.9-465415 |SRA | 7.89 | 9.35 | |T | | | | | |73157 10204| +850277 |MO Vel |084828.6-420119 |ACVO | 9.58 |( 0.01 B )| |V | | | | | |73339 CoD | +850278 |MP Vel |091107.5-431612 |DSCTC | 7.8 |( 0.02 )| |V | | | | | |73067 CoD | +850279 |MQ Vel |092118.5-453057 |M | 3.5 | 5.2 | |K | | | | | |73029 2MASS| +850280 |MR Vel |092546.0-475817 |XI | 16.98 | 17.30 | |V | | | | | |73340 73340| +850281 |MS Vel |093614.7-523241 |SRA | 8.13 | 8.98 | |T | | | | | |73157 CoD | +850282 |MT Vel |094538.8-455440 |DSCTC | 8.1 |( 0.09 )| |B | | | | | |73067 CoD | +850283 |MU Vel |094656.0-473042 |M | 8.6 | 10.4 | |K | | | | | |73029 2MASS| +850284 |MV Vel |102054.8-560236 |BE | 4.49 |( 0.06 )| |V | | | | | |73309 CPD | +850285 |MW Vel |110431.4-511319 |SRB | 7.58 | 8.86 | |V | | | 188. | | |00001 HIP | +850286 |MX Vel |080520.3-465842 |BE: | 6.09 | 6.16 | |Hp| | | | | |HIP HIP | +850287 |MY Vel |080638.3-433558 |LPB | 8.64 | 8.69 | |Hp| | | | | |HIP HIP | +850288 |MZ Vel |080733.5-491613 |LB: | 7.74 | 7.84 | |Hp| | | | | |HIP HIP | +850289 |NN Vel |080909.5-484104 |ACYG: | 5.62 | 5.65 | |Hp| | | | | |HIP HIP | +850290 |NO Vel |081336.2-465930 |EB | 5.08 | 5.12 | |Hp| | | | | |HIP HIP | +850291 |NP Vel |081610.4-433813 |LB: | 8.80 | 8.90 | |Hp| | | | | |HIP HIP | +850292 |NQ Vel |082320.0-445756 |IA: | 7.63 | 7.77 | |Hp| | | | | |HIP HIP | +850293 |NR Vel |082750.5-500600 |GCAS: | 7.56 | 7.75 | |Hp| | | | | |HIP HIP | +850294 |NS Vel |083105.9-390340 |GCAS: | 7.23 | 7.37 | |Hp| | | | | |HIP HIP | +850295 |NT Vel |083424.4-544003 |EA | 8.33 | 9.01 | |Hp| | | | | |HIP HIP | +850296 |NU Vel |083541.0-521920 |LB | 7.32 | 7.50 | |Hp| | | | | |HIP HIP | +850297 |NV Vel |083636.3-523440 |IB: | 9.47 | 9.72 | |Hp| | | | | |HIP HIP | +850298 |NW Vel |083843.3-474716 |SRD | 7.92 | 8.05 | |Hp| | | | | |HIP HIP | +850299 |NX Vel |083909.5-402509 |E | 7.25 | 7.38 | |Hp| | | | | |HIP HIP | +850300 |NY Vel |084019.2-401550 |ACV | 5.15 | 5.19 | |Hp| | | | | |HIP HIP | +850301 |NZ Vel |083957.6-530317 |ELL: | 5.11 | 5.14 | |Hp| | | | | |HIP HIP | +850302 |OO Vel |084008.4-515630 |ACV | 7.41 | 7.44 | |Hp| | | | | |HIP HIP | +850303 |OP Vel |084630.6-455445 |ACYG: | 5.50 | 5.55 | |Hp| | | | | |HIP HIP | +850304 |OQ Vel *|084623.2-525037 |RRC: | 7.73 | 7.77 | |Hp| | | | | |HIP HIP | +850305 |OR Vel |084820.9-465438 |BE | 8.98 | 9.14 | |Hp| | | | | |HIP HIP | +850306 |OS Vel |085053.2-434505 |ACYG: | 7.68 | 7.75 | |Hp| | | | | |HIP HIP | +850307 |OT Vel |085131.0-463228 |SRB | 7.61 | 7.72 | |Hp| | | | | |HIP HIP | +850308 |OU Vel |085508.7-432800 |BE | 8.04 | 8.12 | |Hp| | | | | |HIP HIP | +850309 |OV Vel |085523.1-465328 |EB: | 8.19 | 8.32 | |Hp| | | | | |HIP HIP | +850310 |OW Vel |085657.3-502124 |SRD: | 7.73 | 7.91 | |Hp| | | | | |HIP HIP | +850311 |OX Vel |085944.3-541413 |ACV: | 7.60 | 7.71 | |Hp| | | | | |HIP HIP | +850312 |OY Vel |090144.6-521119 |ACV | 5.19 | 5.22 | |Hp| | | | | |HIP HIP | +850313 |OZ Vel |090309.4-383635 |LB: | 7.69 | 7.79 | |Hp| | | | | |HIP HIP | +850314 |PP Vel |090347.1-540430 |LB: | 8.32 | 8.43 | |Hp| | | | | |HIP HIP | +850315 |PQ Vel |090523.4-421002 |EA | 7.66 | 7.83 | |Hp| | | | | |HIP HIP | +850316 |PR Vel |090557.0-524803 |LPB | 8.22 | 8.26 | |Hp| | | | | |HIP HIP | +850317 |PS Vel |090952.8-472834 |LPB | 6.78 | 6.81 | |Hp| | | | | |HIP HIP | +850318 |PT Vel |091057.7-431603 |EA | 7.05 | 7.60 | |Hp| | | | | |HIP HIP | +850319 |PU Vel |091500.8-401624 |EB | 8.52 | 8.65 | |Hp| | | | | |HIP HIP | +850320 |PV Vel |091554.8-495825 |ACYG: | 7.51 | 7.66 | |Hp| | | | | |HIP HIP | +850321 |PW Vel |091627.2-383937 |LB: | 8.37 | 8.55 | |Hp| | | | | |HIP HIP | +850322 |PX Vel |091700.4-512620 |ACV | 7.53 | 7.56 | |Hp| | | | | |HIP HIP | +850323 |PY Vel |091806.5-444537 |SRD: | 9.32 | 9.46 | |Hp| | | | | |HIP HIP | +850324 |PZ Vel |091853.3-494747 |LPB | 8.43 | 8.47 | |Hp| | | | | |HIP HIP | +850325 |QQ Vel |092042.1-421043 |BE | 9.74 | 9.87 | |Hp| | | | | |HIP HIP | +850326 |QR Vel |092158.4-511035 |BE | 10.13 | 10.30 | |Hp| | | | | |HIP HIP | +850327 |QS Vel |092627.4-511028 |ACV | 8.28 | 8.33 | |Hp| | | | | |HIP HIP | +850328 |QT Vel |092649.6-514611 |EA | 8.02 | 8.23 | |Hp| | | | | |HIP HIP | +850329 |QU Vel |093417.8-410322 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +850330 |QV Vel |093538.2-483049 |ACV | 8.66 | 8.73 | |Hp| | | | | |HIP HIP | +850331 |QW Vel |094840.3-552943 |LB | 7.41 | 7.61 | |Hp| | | | | |HIP HIP | +850332 |QX Vel |094856.5-475445 |EB | 7.98 | 8.21 | |Hp| | | | | |HIP HIP | +850333 |QY Vel |094919.9-503934 |EA | 8.25 | 8.46 | |Hp| | | | | |HIP HIP | +850334 |QZ Vel |095300.1-552224 |LPB | 6.42 | 6.47 | |Hp| | | | | |HIP HIP | +850335 |V0335 Vel |095350.1-510848 |LPB | 5.88 | 5.91 | |Hp| | | | | |HIP HIP | +850336 |V0336 Vel |100501.8-565353 |DSCTC | 6.93 | 6.96 | |Hp| | | | | |HIP HIP | +850337 |V0337 Vel |100918.1-503823 |GCAS | 7.83 | 8.10 | |Hp| | | | | |HIP HIP | +850338 |V0338 Vel |101148.0-500924 |ACV | 7.86 | 7.92 | |Hp| | | | | |HIP HIP | +850339 |V0339 Vel |101555.7-443416 |LB | 8.23 | 8.47 | |Hp| | | | | |HIP HIP | +850340 |V0340 Vel |101812.0-504925 |E: | 7.89 | 7.99 | |Hp| | | | | |HIP HIP | +850341 |V0341 Vel |101929.4-453849 |EA | 7.90 | 8.30 | |Hp| | | | | |HIP HIP | +850342 |V0342 Vel |102011.7-523606 |ACYG: | 7.21 | 7.27 | |Hp| | | | | |HIP HIP | +850343 |V0343 Vel |102111.3-514456 |EA | 8.31 | 8.95 | |Hp| | | | | |HIP HIP | +850344 |V0344 Vel |102205.7-493152 |DSCTC | 7.96 | 8.00 | |Hp| | | | | |HIP HIP | +850345 |V0345 Vel |102208.9-491737 |EA | 7.49 | 7.95 | |Hp| | | | | |HIP HIP | +850346 |V0346 Vel |102439.6-541919 |LB | 6.50 | 6.84 | |Hp| | | | | |HIP HIP | +850347 |V0347 Vel |102546.4-545919 |LB | 7.03 | 7.13 | |Hp| | | | | |HIP HIP | +850348 |V0348 Vel |102615.6-535329 |SRC | 6.81 | 7.07 | |Hp| | | | | |HIP HIP | +850349 |V0349 Vel |102922.7-503414 |ACV: | 9.64 | 9.78 | |Hp| | | | | |HIP HIP | +850350 |V0350 Vel |103003.1-430747 |ACV | 7.45 | 7.53 | |Hp| | | | | |HIP HIP | +850351 |V0351 Vel |103221.8-411035 |E: | 12.19 | 12.79 | |Hp| | | | | |HIP HIP | +850352 |V0352 Vel |103842.9-494432 |LB: | 7.95 | 8.06 | |Hp| | | | | |HIP HIP | +850353 |V0353 Vel |104542.4-412951 |DSCTC: | 7.68 | 7.72 | |Hp| | | | | |HIP HIP | +850354 |V0354 Vel |104541.0-472735 |LB | 6.55 | 6.71 | |Hp| | | | | |HIP HIP | +850355 |V0355 Vel |104705.0-445333 |LB: | 8.90 | 9.08 | |Hp| | | | | |HIP HIP | +850356 |V0356 Vel |104755.5-521446 |EB | 6.73 | 6.87 | |Hp| | | | | |HIP HIP | +850357 |V0357 Vel |105857.4-540332 |LB: | 8.35 | 8.50 | |Hp| | | | | |HIP HIP | +850358 |V0358 Vel |110015.5-445439 |LB | 7.34 | 7.46 | |Hp| | | | | |HIP HIP | +850359 |V0359 Vel |110033.4-515650 |EA | 7.58 | 7.84 | |Hp| | | | | |HIP HIP | +850360 |V0360 Vel *|110211.7-422952 |ACV | 7.70 | 7.80 | |Hp| | | | | |HIP HIP | +850361 |V0361 Vel |110213.9-410651 |LB | 6.20 | 7.55 | |Hp| | | | | |HIP HIP | +850362 |V0362 Vel |110421.0-460331 |EW | 9.09 | 9.36 | |Hp| | | | | |HIP HIP | +850363 |V0363 Vel |083802.6-384535 |LPB | 8.84 | 8.93 | |Hp| | | | | |75030 CoD | +850364 |V0364 Vel |083953.0-525757 |BY | 11.86 |( 0.07 )| |V | | | | | |75278 75278| +850365 |V0365 Vel |084006.2-533807 |BY | 10.45 |( 0.08 )| |V | | | | | |75278 75278| +850366 |V0366 Vel |084125.9-532242 |BY | 12.56 |( 0.15 )| |V | | | | | |75278 75278| +850367 |V0367 Vel |084139.7-525934 |BY | 13.36 |( 0.10 )| |V | | | | | |75278 75278| +850368 |V0368 Vel |084157.8-525214 |BY | 13.57 |( 0.22 )| |V | | | | | |75278 75278| +850369 |V0369 Vel |084204.9-525354 |BY | 15.88 |( 0.05 )| |V | | | | | |75278 75278| +850370 |V0370 Vel |084214.8-525602 |BY | 10.70 |( 0.07 )| |V | | | | | |75278 75278| +850371 |V0371 Vel |084218.6-530157 |BY | 13.96 |( 0.13 )| |V | | | | | |75278 75278| +850372 |V0372 Vel |084327.9-525736 |BY | 13.84 |( 0.10 )| |V | | | | | |75278 75278| +850373 |V0373 Vel |084327.8-525739 |BY | 14.45 |( 0.09 )| |V | | | | | |75278 75278| +850374 |V0374 Vel |084329.3-524129 |BY | 11.73 |( 0.12 )| |V | | | | | |75278 75278| +850375 |V0375 Vel |084339.8-525831 |BY | 15.32 |( 0.05 )| |V | | | | | |75278 75278| +850376 |V0376 Vel |084405.2-525317 |BY | 10.85 |( 0.08 )| |V | | | | | |75278 75278| +850377 |V0377 Vel |084426.2-524232 |BY | 11.46 |( 0.08 )| |V | | | | | |75278 75278| +850378 |V0378 Vel |084447.3-455856 |EA/WR | 11.06 |( 0.12 )| |V | | | | | |75067 75020| +850379 |V0379 Vel |084527.0-525202 |BY | 12.76 |( 0.14 )| |V | | | | | |75278 75278| +850380 |V0380 Vel |084539.1-522600 |BY: | 9.91 |( 0.07 )| |V | | | | | |75278 75278| +850381 |V0381 Vel |101659.0-410344 |XM | 18.25 | 18.60 | |B | | | | | |75279 75279| +850382 |V0382 Vel |104448.4-522531 |NA | 2.66 | 16.4 | |V | | | | | |75280 75312| +850383 |V0383 Vel |102141.8-494924 |UGSS | 12.5 | 17. | |p | | | | | |76101 76101| +850384 |V0384 Vel |083522.4-403854 |IN | 17.84 | 18.42 | |V | | | | | |77072 77072| +850385 |V0385 Vel |083540.7-403836 |IN | 19.78 | 20.22 | |V | | | | | |77072 77072| +850386 |V0386 Vel |083545.1-403721 |IN | 19.66 | 20.07 | |V | | | | | |77072 77072| +850387 |V0387 Vel |083547.7-404044 |IN | 18.92 | 20.40 | |V | | | | | |77072 77072| +850388 |V0388 Vel |084216.6-404410 |INA | 14.24 | 14.59 | |V | | | | |Ae |78038 2MASS| +850389 |V0389 Vel |085335.8-373242 |SRA | 11.6 |< 12.5 | |V |52720 | | 390. | | |78130 GSC | +850390 |V0390 Vel *|085614.2-444311 |RV: | 9.01 | 9.19 | |V | | | 71.9 : | | |78119 DM | +850391 |V0391 Vel |085628.1-430558 |INA | 11.21 | 11.64 | |V | | | | |O8.5 |78038 GSC | +850392 |V0392 Vel |085826.2-432608 |BE | 11.25 | 14.76 | |V | | | | |B5Ve |78038 DM | +850393 |V0393 Vel |085925.8-555850 |SRB | 12.5 | 14.7 | |V | | | 450. | |S |78040 USNO | +850394 |V0394 Vel |090058.1-545555 |SRB | 10.6 | 11.2 | |V | | | 140. | | |78130 GSC | +850395 |V0395 Vel |090100.9-545700 |M | 11.7 |< 14.0 | |V |52903 | | 370. | |M9 |78040 GSC | +850396 |V0396 Vel |090715.3-532519 |M | 11.9 |< 13.8 | |V |52628 | | 489. | |M9 |78040 USNO | +850397 |V0397 Vel |091014.7-375523 |SRB | 11.8 | 14.2 | |V | | | 260. | |M8 |78130 USNO | +850398 |V0398 Vel |102009.0-563655 |ELL: | 7.92 |( 0.03 )| |V | | | 1.455 | |A1IV/V |78136 DM | +850399 |V0399 Vel |102501.1-570511 |BCEP: | 8.24 |( 0.02 )| |V | | | 0.65664 | |B9IV/V |78136 DM | +850400 |V0400 Vel |105307.9-413728 |M | 11.8 |< 14.8 | |V |53060 | | 370. | |Me |78090 USNO | +850401 |V0401 Vel |080825.0-483645 |SRB | 8.5 | 9.3 | |V | | | 900. : | |M5/6(III) |79100 DM | +850402 |V0402 Vel |083921.8-463343 |LB | 12.2 | 13.0 | |V | | | | |C |79100 GSC | +850403 |V0403 Vel |084629.1-404928 |EA | 9.63 | 10.09 | 10.0 : |V |51981.556 | | 7.2027 |05 : |A0 |79011 DM | +850404 |V0404 Vel |085914.9-484949 |EA | 9.37 | 9.48 | 9.47 |V |52714.620 | | 11.4248 |05 |B0IVnp |79006 DM | +850405 |V0405 Vel *|090438.4-410353 |EA | 8.89 | 9.06 | 9.05 |V |48311.779 | | 10.31168 |02 : |G3V |79018 DM | +850406 |V0406 Vel |090723.3-522957 |EA | 9.40 | 10.10 | 9.50 |V |52662.738 | | 2.0340 |11 |B8V |79011 DM | +850407 |V0407 Vel |092502.3-552920 |EB | 9.62 | 10.07 | 9.81 |V |52634.770 | | 1.438215 | |A2 |79011 DM | +850408 |V0408 Vel |093718.4-432205 |SRB | 11.2 | 12.8 | |V | | | 120. | |M6 |79100 GSC | +850409 |V0409 Vel *|093922.9-542456 |EA | 12.45 | 13.45 | 12.79 |V |52929.846 | | 2.78678 |05 | |79004 79074| +850410 |V0410 Vel |094911.2-404136 |M | 12.3 | 16.2 | |R |53867. | | 236. | | |79072 USNO | +850411 |V0411 Vel |095247.9-435931 |M | 10.8 | 14.5 | |V |53651. | | 360. | |M9e: |79100 GSC | +850412 |V0412 Vel |095306.4-442017 |SRB | 9.6 | 10.2 | |V | | | 400. | |C5-C7 |79100 GSC | +850413 |V0413 Vel |100125.5-452726 |M | 10.8 |< 15.0 | |V |53873. | | 178. | | |79100 USNO | +850414 |V0414 Vel |100309.5-472403 |EA | 13.7 | 16.7 | |B |52949.8504 | | 4.414288 |08 | |79072 GSC | +850415 |V0415 Vel |100329.9-464914 |SRA | 10.0 | 12.0 | |V |53723. | | 414. | |S5,8e |79064 79071| +850416 |V0416 Vel |100420.3-551216 |EA | 10.4 | 11.0 | 11.0 |V |53387.809 | | 1.40787 |16 |F2 |79064 DM | +850417 |V0417 Vel |100708.8-550216 |EA | 10.7 | 11.7 | 10.8 |V |53075.7229 | | 2.7527 |15 |B8 |79064 DM | +850418 |V0418 Vel |100827.1-470052 |M | 10.7 | 15.0 | |V |53399. | | 251. | | |79100 GSC | +850419 |V0419 Vel |101150.9-485119 |M | 11.4 |< 14.5 | |V |53800. | | 215. | |M7+OB |79072 GSC | +850420 |V0420 Vel *|101214.7-461011 |RRAB | 10.0 | 10.5 | |V |51870.70 | | 0.60508 |20 | |79064 GSC | +850421 |V0421 Vel |101334.7-493630 |M: | 12.5 |< 14.7 | |V |53709. | | 300. | |M7: |79100 GSC | +850422 |V0422 Vel |101446.9-415636 |M | 11.4 | 15.0 | |V |53672. | | 330. | |Me |79064 GSC | +850423 |V0423 Vel |101522.4-475449 |M | 11.4 |< 15.0 | |V |53080. | | 290. | |Me |79100 GSC | +850424 |V0424 Vel |101616.1-512925 |M | 11. | 14.5 | |R |51941. | | 345. | |M7 |79072 2MASS| +850425 |V0425 Vel |101620.6-553551 |ZAND: | 8.63 | 9.21 | |V | | | | |B0.5ep+K |79100 DM | +850426 |V0426 Vel |101711.9-484727 |M | 10.6 |< 14.8 | |V |53434. | | 265. | |M8 |79100 79071| +850427 |V0427 Vel |102521.7-464037 |SRB | 9.3 | 10.5 | |V | | | 112. | |M2/M3 |79100 DM | +850428 |V0428 Vel |102831.6-492812 |EA: | 11.03 | 11.91 | 11.25 |V |52964.806 | | 0.85496 |20 | |79011 DM | +850429 |V0429 Vel |103503.9-442532 |M | 10.3 | 14.2 | |V |53833. | | 165. | | |79072 79080| +850430 |V0430 Vel |104013.8-441945 |M | 12.0 |< 14.5 | |V |53385. | | 365. | | |79072 USNO | +850431 |V0431 Vel |104140.7-513843 |EA | 12.72 | 14.5 | 12.85 : |V |52810.482 | | 3.76173 |10 | |79018 79071| +850432 |V0432 Vel |104206.5-425241 |EA | 9.04 | 9.22 | 9.22 |V |48970.460 | | 1.46857 |08 |F2V |79006 DM | +850433 |V0433 Vel |104311.5-473637 |LB | 10.3 | 11.6 | |V | | | | | |79100 DM | +850434 |V0434 Vel |104712.6-435507 |SRA | 10.5 | 13.1 | |V |53744. | | 430. | |C |79100 2MASS| +850435 |V0435 Vel |104746.5-461000 |SRA | 11.1 | 12.7 | |V |53407. | | 265. | | |79072 GSC | +850436 |V0436 Vel |105036.3-523040 |M | 10.8 |< 14.2 | |V |53717. | | 380. | |M8 |79072 GSC | +850437 |V0437 Vel |105105.6-554735 |M | 12.6 |< 14.4 | |V |53159. | | 270. | | |79072 USNO | +850438 |V0438 Vel |105209.2-565527 |SRB | 9.0 | 9.7 | |V | | | 53.6 | |M4/6 |79064 DM | +850439 |V0439 Vel |105424.1-561527 |LB | 9.7 | 10.1 | |V | | | | |M4-M5 |79100 DM | +850440 |V0440 Vel |105443.6-453610 |EA | 9.47 | 9.63 | 9.60 |V |48603.597 | | 2.354858 |09 |A7III |79006 DM | +850441 |V0441 Vel |105536.8-561031 |M: | 13.2 |< 14.2 | |V |53461. | | 265. : | | |79100 USNO | +850442 |V0442 Vel |105700.1-534558 |SRA: | 12.2 |< 14.2 | |V |53512. | | 256. | |M8 |79072 USNO | +850443 |V0443 Vel |105719.2-553525 |M | 12.4 |< 16.8 | |V |53383. | | 379. | |M4: |79072 USNO | +850444 |V0444 Vel |110055.4-480056 |M | 11.2 |< 14.8 | |V |53480. | | 240. | | |79072 GSC | +850445 |V0445 Vel |110148.0-561031 |M | 10.7 |< 13.0 | |V |53907. | | 312. | |M5 |79072 USNO | +850446 |V0446 Vel |081245.4-491406 |LB | 12.3 | 13.4 | |V | | | | | |80256 GSC | NL80_2 +850447 |V0447 Vel *|081418.6-443636 |EB | 11.73 | 12.24 | 11.91 |V |52997.792 | | 0.972013 | | |80048 GSC | NL80_2 +850448 |V0448 Vel *|082455.5-483335 |EW | 11.63 | 11.97 | 11.96 |V |51868.180 | | 0.364875 | | |80036 GSC | NL80_2 +850449 |V0449 Vel |083041.4-505042 |M | 11.8 |< 14.5 | |V |54796. | | 468. | |S |80001 2MASS| NL80_2 +850450 |V0450 Vel |083056.6-504225 |SRA | 12.6 |< 14.2 | |V |52791. | | 248. | |M8 |80256 GSC | NL80_2 +850451 |V0451 Vel *|083408.1-443241 |EB | 7.46 | 7.50 | 7.49 |V |52224.81 | | 7.8553 | |B2V |80011 HIP | NL80_2 +850452 |V0452 Vel *|083743.4-395336 |EW | 10.88 | 11.05 | 11.01 |V |52196.855 | | 0.525412 | | |80048 GSC | NL80_2 +850453 |V0453 Vel |083753.0-384218 |LB | 12.8 |< 14.2 | |V | | | | |M7 |80256 GSC | NL80_2 +850454 |V0454 Vel *|083809.0-400452 |EA | 7.55 | 7.66 | 7.65 |V |52717.769 | | 1.13492 |18 |B3V |80015 DM | NL80_2 +850455 |V0455 Vel |083826.7-524507 |BY: | 14.80 | 14.97 | |J | | | 0.1262 | | |80307 USNO | NL80_2 +850456 |V0456 Vel *|084215.6-471227 |EW | 19.84 |( 0.63 )|( 0.45 )|B | | | 0.389 | | |80308 USNO | NL80_2 +850457 |V0457 Vel *|084233.3-471135 |DSCTC | 15.31 |( 0.10 )| |B | | | 0.0782 | | |80308 USNO | NL80_2 +850458 |V0458 Vel *|084236.2-471129 |DSCT | 15.51 |( 0.15 )| |B | | | 0.1543 | | |80308 GSC | NL80_2 +850459 |V0459 Vel *|084238.6-471207 |DSCT | 15.51 |( 0.20 )| |B | | | 0.1328 | | |80308 2MASS| NL80_2 +850460 |V0460 Vel *|084242.0-471209 |DSCT | 14.96 |( 0.25 )| |B | | | 0.1706 | | |80308 80309| NL80_2 +850461 |V0461 Vel *|084243.7-453318 |EA+BE | 8.26 | 8.52 | 8.44 |V |53010.762 | | 1.50941 |12 |B2:Vn |80011 DM | NL80_2 +850462 |V0462 Vel |084243.9-471232 |GDOR | 16.38 |( 0.23 I)| |V | | | 0.9 | | |80308 80309| NL80_2 +850463 |V0463 Vel |084244.8-471301 |DSCTC | 15.35 |( 0.10 )| |B | | | 0.0993 | | |80308 80309| NL80_2 +850464 |V0464 Vel *|084251.7-471143 |EW | 18.72 |( 0.40 )|( 0.30 )|B | | | 0.3259 | | |80308 USNO | NL80_2 +850465 |V0465 Vel *|084303.6-525613 |EW | 13.97 | 14.35 | 14.32 |J | | | 0.3167 | | |80307 USNO | NL80_2 +850466 |V0466 Vel |084331.2-525502 |E | 15.1 | 15.6 | |J | | | | | |80307 USNO | NL80_2 +850467 |V0467 Vel *|084349.8-460709 |EA+BCEP: | 10.82 | 11.04 | 11.00 : |V |51951.7719 | | 2.75320 |18 |O6.5V+B1V |80281 GSC | NL80_2 +850468 |V0468 Vel |084412.3-524619 |DSCT | 15.25 | 15.48 | |J | | | 0.0596 | | |80307 USNO | NL80_2 +850469 |V0469 Vel *|084515.6-535128 |EA | 9.47 | 9.59 | 9.51 |V |52172.863 | | 1.031615 |15 |A2/3mA7-A8 |80011 DM | NL80_2 +850470 |V0470 Vel |084533.3-392308 |SRA | 13.0 |< 14.2 | |V |53725. | | 237. | |M9 |80256 2MASS| NL80_2 +850471 |V0471 Vel |084716.8-471325 |SR | 13.0 |< 14.0 | |V | | | 110. : | |M8 |80256 2MASS| NL80_2 +850472 |V0472 Vel *|084845.5-460509 |* | 13.30 | 13.92 | |V | | | 16.093 | |Be |80313 80313| NL80_2 +850473 |V0473 Vel |085405.1-453946 |LB: | 11.35 | 11.62 | |V | | | 34.25 | |M4 |80001 GSC | NL80_2 +850474 |V0474 Vel |085501.5-510720 |M | 7.49 | 9.44 | |K | | | 703. | |C |80166 2MASS| NL80_2 +850475 |V0475 Vel |085510.7-473556 |M: | 6.41 | 8.61 | |K | | | 570. : | | |80166 2MASS| NL80_2 +850476 |V0476 Vel |085627.2-472739 |LB | 12.9 |< 13.5 | |V | | | | |M7 |80256 GSC | NL80_2 +850477 |V0477 Vel |085709.6-395406 |SR | 12.2 | 13.1 | |V | | | 204. | |M8III |80256 2MASS| NL80_2 +850478 |V0478 Vel |085814.3-412849 |SRB | 12.8 |< 14.5 | |V | | | 103. : | |M7 |80256 2MASS| NL80_2 +850479 |V0479 Vel *|090451.4-374809 |EA | 9.14 | 9.23 | 9.22 |V |53127.600 | | 2.18882 |06 |A2IV |80011 DM | NL80_2 +850480 |V0480 Vel |090545.0-373939 |SRB | 12.7 |< 14.2 | |V | | | 233. | |M6 |80001 GSC | NL80_2 +850481 |V0481 Vel |090654.2-433354 |LB | 12.3 | 13.2 | |V | | | | | |80256 GSC | NL80_2 +850482 |V0482 Vel |091058.2-424059 |M | 13.0 |< 15.0 | |V |53725. | | 360. : | | |80256 GSC | NL80_2 +850483 |V0483 Vel *|091142.3-465310 |EA | 8.23 | 8.30 | 8.25 |V |52943.785 | | 2.61362 |10 |A4V |80011 DM | NL80_2 +850484 |V0484 Vel *|091224.9-380307 |EA | 9.87 | 10.0 | 9.91 |V |53701.827 | | 2.60431 |05 |B9.5V |80011 DM | NL80_2 +850485 |V0485 Vel |091450.0-450249 |SR: | 13.1 |< 14.3 | |V | | | | |M8 |80256 2MASS| NL80_2 +850486 |V0486 Vel |091730.4-495730 |LB | 12.8 | 14.3 | |V | | | | |M8 |80256 GSC | NL80_2 +850487 |V0487 Vel *|091801.6-540227 |RCB: | 9.0 | 13.4 | |V | | | | |C(N) |80001 GSC | NL80_2 +850488 |V0488 Vel |091917.2-520028 |M | 5.39 | 7.25 | |K | | | 431. : | |C |80166 2MASS| NL80_2 +850489 |V0489 Vel |092618.7-520604 |SR: | 6.70 | 7.65 | |K | | | | |C |80166 2MASS| NL80_2 +850490 |V0490 Vel |092645.5-492225 |M | 8.47 | 9.51 | |J | | | 265. | |C |80166 2MASS| NL80_2 +850491 |V0491 Vel |093441.3-470935 |LB | 13.1 |< 14.5 | |V | | | | |M7 |80256 GSC | NL80_2 +850492 |V0492 Vel |093450.7-494845 |LB | 12.4 |< 13.5 | |V | | | | |M7 |80256 GSC | NL80_2 +850493 |V0493 Vel |093457.0-502430 |M | 7.68 | 8.55 | |J | | | 413. | |C |80166 2MASS| NL80_2 +850494 |V0494 Vel |094151.9-474658 |LB | 10.5 | 10.6 | |V | | | | |M0 |80184 GSC | NL80_2 +850495 |V0495 Vel *|094553.6-441943 |EA | 10.13 | 10.58 | 10.47 |V |52842.444 | | 1.95847 |13 |F5 |80323 GSC | NL80_2 +850496 |V0496 Vel *|095047.6-444129 |EA | 9.15 | 9.31 | 9.21 |V |53905.545 | | 2.45506 |07 |A0V |80011 DM | NL80_2 +850497 |V0497 Vel *|095131.9-493124 |EA | 9.52 | 9.78 | 9.63 |V |53901.54 | | 12.43617 |04 |A3/5IV |80011 DM | NL80_2 +850498 |V0498 Vel |095249.7-460318 |M: | 12.4 |< 14.4 | |V |54470. | | 365. | |M7 |80001 2MASS| NL80_2 +850499 |V0499 Vel |095306.7-533854 |M | 4.36 | 5.89 | |K | | | 630. | |C |80166 2MASS| NL80_2 +850500 |V0500 Vel |095440.7-552016 |M | 5.15 | 6.65 | |K | | | 688. : | |C |80166 2MASS| NL80_2 +850501 |V0501 Vel |095612.8-481029 |EA | 9.55 | 9.73 | |V |54172.718 | | 2.01571 |06 |A1V |80011 DM | NL80_2 +850502 |V0502 Vel |100425.4-500531 |LB | 12.2 | 14.0 | |V | | | | |M7 |80256 2MASS| NL80_2 +850503 |V0503 Vel *|100653.7-405323 |EA | 8.93 | 9.07 | 8.98 |V |54463.782 | | 3.45291 |06 |A1IV |80011 DM | NL80_2 +850504 |V0504 Vel *|101636.9-462229 |EW | 18.05 | 18.22 | 18.20 |V | | | 0.303587 | | |80329 80329| NL80_2 +850505 |V0505 Vel *|101707.7-463018 |EW | 18.24 | 18.57 | 18.54 |V | | | 0.345095 | | |80329 80329| NL80_2 +850506 |V0506 Vel *|101713.7-462755 |EW | 17.19 | 17.62 | 17.60 |V | | | 0.377114 | | |80329 80329| NL80_2 +850507 |V0507 Vel *|101717.2-462737 |EW | 16.85 | 17.29 | 17.21 |V | | | 0.441791 | | |80329 80329| NL80_2 +850508 |V0508 Vel *|101725.7-462012 |EA | 17.22 | 17.98 | 17.89 |V | | | 2.84810 |05 | |80329 80329| NL80_2 +850509 |V0509 Vel *|101752.9-463407 |EW | 19.85 | 20.54 | 20.33 |V | | | 0.276216 | | |80329 80329| NL80_2 +850510 |V0510 Vel *|101803.9-461748 |RRAB | 17.09 | 17.88 | |V | | | 0.592920 |14 | |80329 80329| NL80_2 +850511 |V0511 Vel *|101832.0-463733 |EW | 19.61 | 20.03 | 20.00 |V | | | 0.332480 | | |80329 80329| NL80_2 +850512 |V0512 Vel *|101832.8-463042 |EA | 17.73 | 18.35 | 17.84 |V | | | 0.702127 |16 | |80329 80329| NL80_2 +850513 |V0513 Vel *|101846.0-463013 |EA | 18.82 | 19.49 | 19.29 |V | | | 0.306415 | | |80329 80329| NL80_2 +850514 |V0514 Vel *|101856.0-463610 |EB: | 18.66 | 19.14 | |V | | | 1.079991 | | |80329 80329| NL80_2 +850515 |V0515 Vel |102435.1-524420 |M: | 3.70 | 5.68 | |K | | | 756. | | |80166 2MASS| NL80_2 +850516 |V0516 Vel *|103359.5-473150 |EA | 8.48 | 8.64 | |V |53869.650 | | 2.86839 |07 |A0V |80011 DM | NL80_2 +850517 |V0517 Vel |104309.3-440309 |RVA | 12.9 | 13.6 | |V |54444. | | 160.8 | | |80022 GSC | NL80_2 +850518 |V0518 Vel *|104619.9-455800 |EA | 12.05 | 13.33 | 12.14 |V |51908.748 | | 3.24198 |14 | |80048 GSC | NL80_2 +8590032|gam 2 Vel *|080931.9-472012 |WR | 1.81 | 1.87 | |V | | | | |WC8+O9I |07244 CoD | +859004 |del Vel |084442.2-544232 |EA | 1.96 |( 0.4 )| |V | | | | | |76076 DM | +859011 |lam Vel *|090759.8-432557 |LC | 2.14 | 2.30 | |V | | | | |K4Ib-IIa |06620 CoD | +859015 |omi Vel *|084017.6-525519 |* | 3.55 | 3.67 | |V |44651.6922 | | 2.779 |50 |B3III-IV |10093 04745| +859214 |N Vel |093113.3-570204 |CST: | 3.12 | 3.15 | |V | | | | |K5III |03712 00021| +860001 |R Vir *|123829.9+065919 |M | 6.1 | 12.1 | |V |45872. | | 145.63 |50 |M3.5IIIe-M8.5e |00001 00002| +860002 |S Vir *|133300.1-071141 |M | 6.3 | 13.2 | |V |45046. | | 375.10 |45 |M6IIIe-M9.5e |00001 00002| +860003 |T Vir *|121436.7-060209 |M | 9.0 | 14.8 | |V |40277. | | 339.47 |36 |M6e |00001 00002| +860004 |U Vir |125105.7+053312 |M | 7.4 | 13.5 | |V |44736. | | 206.64 |47 |M2e-M8e: |00001 00002| +860005 |V Vir *|132748.1-031023 |M | 8.1 | 15.0 | |V |44667. | | 250.08 |42 |M3e-M6e |00001 00002| +860006 |W Vir *|132602.0-032243 |CWA | 9.46 | 10.75 | |V |32697.783 | | 17.2736 |38 |F0Ib-G0Ib |03716 03716| +860007 |X Vir *|120151.4+090420 |CST: | 7.3 | 11.2 | |V | | | | |F2pIV-V |00726 08953| +860008 |Y Vir |123353.0-042520 |M | 8.3 | 15.0 | |V |45805. | | 218.43 |46 |M2e-M5e |00001 00002| +860009 |Z Vir *|141021.4-131815 |M | 9.9 | 15.1 | |V |42496. | | 305.71 |39 |M5e |00001 00002| +860010 |RR Vir |140453.4-091141 |M | 10.7 | 15.6 | |V |38146. | | 217.52 |47 | |00001 00002| +860011 |RS Vir *|142716.4+044041 |M | 7.0 | 14.6 | |V |45753. | | 353.95 |37 |M6IIIe-M8e |00001 00002| +860012 |RT Vir *|130238.0+051108 |SRB | 7.41 | 8.70 | |V | | | 155. : | |M8III |00727 00097| +860013 |RU Vir *|124718.4+040841 |M | 9.0 | 14.2 | |V |37773. | | 433.2 |49 |C8,1e(R3ep) |10100 00002| +860014 |RV Vir *|130755.4-130959 |M | 10.2 | 15.1 | |V |40635. | | 265.87 |41 |M5e |00001 00002| +860015 |RW Vir |120714.9-064556 |LB | 6.72 | 7.38 | |V | | | | |M5III |08837 00097| +860016 |RX Vir *|120444.9-054624 |SRD: | 8.7 | 9.1 | |p | | | 200. : | |K0 |00727 00097| +860017 |RY Vir |134144.1-190811 |SRB | 10.2 | 10.8 | |p | | | 140. : | |MB |00018 08953| +860018 |RZ Vir |132150.4+015051 |CST: | 10.0 | | |p | | | | |M2 |00729 | +860019 |SS Vir *|122514.4+004611 |SRA | 6.0 | 9.6 | |V |45361. | | 364.14 |48 |C6,3e(Ne) |00001 00002| +860020 |ST Vir *|142739.1-005406 |RRAB | 10.84 | 12.08 | |V |40736.374 | | 0.4108280 |12 |A6-A8 |04957 03506| +860021 |SU Vir *|120514.8+122138 |M | 8.4 | 14.5 | |V |44278. | | 208.6 |48 |M2e-M5.5e |00001 00002| +860022 |SV Vir *|120020.8-101105 |M | 9.3 |< 12.5 | |p |42506. | | 295.33 | |M4e |00001 10147| +860023 |SW Vir |131404.4-024825 |SRB | 6.40 | 7.90 | |V | | | 150. : | |M7III |07444 08953| +860024 |SX Vir |133629.8-193516 |SRB | 10.2 | 13.3 | |p | | | 105.55 | |Me |01652 08953| +860025 |SY Vir |135837.6-043433 |M | 9.6 | 13.4 | |V |38440. | | 236.65 |57 |M6: |00001 06286| +860026 |SZ Vir *|130226.9+051043 |CST: | 12.6 | 13.2 | |p | | | | |G0 |08656 08656| +860027 |TT Vir |135539.7-111304 |RR: | 14.0 | 15.0 | |p | | | | |A0 |08676 UCAC2| +860028 |TU Vir |135653.2-123320 |RR: | 13.0 | 14.0 | |p | | | | |A7 |07364 06286| +860029 |TV Vir *|140408.1-095945 | | 14.4 | 15.2 | |p | | | | |F5 |00266 UCAC2| +860030 |TW Vir *|114521.2-042606 |UGSS | 11.2 | 16.40 | |V | | |( 32. ) | |pec(UG) |09782 09472| +860031 |TX Vir *|135459.9-060104 |RRAB | 12.7 | 14.4 | |p |25661.558 | | 0.623562 | | |03717 UCAC2| +860032 |TY Vir *|115150.1-054544 |SRD | 7.97 | 8.5 | |V | | | 50. : | |G3pIb |06231 BD | +860033 |TZ Vir *|120436.1+023711 |SRB | 9.4 | 11.2 | |p | | | 134. | |M5 |00727 08953| +860034 |UU Vir *|120835.1-002724 |RRAB | 9.89 | 11.07 | |V |41797.461 | | 0.47560652 |17 |A9-F5 |04957 00188| +860035 |UV Vir |122116.7+002203 |RRAB | 11.35 | 12.35 | |V |39992.720 | | 0.5870824 |20 |A4 |05274 00188| +860036 |UW Vir *|131520.7-172817 |EA/SD | 8.98 | 12.3 | |V |44345.413 | | 1.8107755 |14 |A2 |00001 00318| +860037 |UX Vir |134036.6+070819 | | 13. | 14.5 | |p | | | | |F5 |01844 UCAC2| +860038 |UY Vir *|130153.4-194629 |EA/DM | 8.00 | 8.8 | 8.1 |V |30020.667 | | 1.9945051 |16 |A7V |00734 00024| +860039 |UZ Vir |130844.3+132408 |RRAB | 12.2 | 13.9 | |p |25004.399 | | 0.458844 |24 | |00266 00735| +860040 |VV Vir *|140525.2-100922 |EB/SD: | 11.9 | 13.2 | 12.2 : |p |31221.218 | | 0.44613577 | |A-F |08543 00318| +860041 |VW Vir *|122716.9+092505 |SN | 12.5 |< 16. | |p | | | | | |01653 06286| +860042 |VX Vir |122327.6-024005 |RRAB | 13.1 | 14.0 | |p |19865.337 | | 0.5430115 |22 | |07806 06286| +860043 |VY Vir |131830.5-044103 |M | 10.5 | 14.7 | |p |44717. | | 280.04 | |M3ep |00001 09487| +860044 |VZ Vir |132612.1+001121 |RRC | 12.2 | 12.8 | |p |45388.651 | | 0.3396113 |42 |B8hb |10103 10102| +860045 |WW Vir |132823.9-051709 |RRAB | 11.9 | 13.5 | |p |36722.344 | | 0.6515827 |20 : | |07806 06286| +860046 |WX Vir |132835.3-010554 |LB | 12.6 | 13.7 | |p | | | | | |09979 06286| +860047 |WY Vir |133516.1-065823 |RRAB | 13.0 | 14.20 | |B |44010.360 | | 0.609354 |14 |A2 |09270 10105| +860048 |WZ Vir |134527.3+001214 |SR | 10.2 | 12.3 | |p |28209. | | 135. : | |M0 |02427 00002| +860049 |XX Vir *|141648.6-061715 |CWB | 11.55 | 12.78 | |V |43287.50 | | 1.3482051 |12 |F6 |07984 00739| +860050 |XY Vir |144200.6-054957 |M | 12.7 |< 15.5 | |p |32670. | | 258.1 | | |02931 06286| +860051 |XZ Vir |115859.2+023556 |RR: | 12.0 | 13.8 | |p | | | | | |00573 06286| +860052 |YY Vir |130648.5-055710 |I: | 10.7 | 11.6 | |p | | | | |G5III: |00498 08953| +860053 |YZ Vir *|131714.3-050458 |CWA | 12.7 | 13.8 | |V |44024.23 | | 14.4687 |40 |F5:e-F8 |00001 10106| +860054 |ZZ Vir |132338.6-042142 |RRAB | 13.7 | 14.9 | |p |43600.488 | | 0.684050 |22 |A5 |10107 10107| +860055 |AA Vir |134504.3+004253 |SR: | 13.0 | 16. : | |p | | | | | |00741 06286| +860056 |AB Vir |140204.4-053716 |SR | 11.9 | 13.4 | |p |25743. | | 313. : | |M |00147 06286| +860057 |AC Vir |140216.5-053838 |LB: | 11.7 | 12.9 | |p | | | | |M |00147 06286| +860058 |AD Vir *|140537.1-071451 |RRAB | 12.0 | 13.65 | |B |36893.285 | | 0.5522151 |10 | |03718 06286| +860059 |AE Vir |142729.4+034641 |RRAB | 11.5 | 13.9 | |p |28282.471 | | 0.6338581 |12 |A3 |03719 03719| +860060 |AF Vir *|142809.8+063244 |RRAB | 10.94 | 12.01 | |V |40333.771 | | 0.48376 |30 |A2 |10113 10159| +860061 |AG Vir *|120103.5+130030 |EW/KE | 8.35 |( 0.58 )|( 0.44 )|V |45432.4146 | | 0.64265075 | |A7-A9V |00001 00228| +860062 |AH Vir *|121421.0+114909 |EW/KW | 8.89 |( 0.60 )|( 0.53 )|V |45814.385 | | 0.407521 | |K0V+K0V |00001 00228| +860063 |AI Vir |135320.9-064448 | | 11.7 | 13.7 | |p | | | | |M5 |01792 00744| +860064 |AK Vir *|140452.4-182153 |EA/SD | 10.0 |( 1.49 )| |V |42576.408 | | 1.1935981 |13 *| |00001 02532| +860065 |AL Vir *|141109.1-131838 |CWA | 9.10 | 9.92 | |V |44396.69 | | 10.30256 |41 |F0-F8 |00001 08953| +860066 |AM Vir |132333.3-163958 |RRAB | 11.07 | 11.80 | |V |26859.275 | | 0.61508784 |21 |A6 |07806 00132| +860067 |AN Vir *|141800.3-144223 |SRB | 9.2 | 10.1 | |p | | | 100. : | |M5 |00729 08953| +860068 |AO Vir *|142151.9+035428 |M | 10.5 | 13.0 | |p |42529. | | 254.61 |43 |M2e-M4e |00001 08953| +860069 |AP Vir |142830.3+071737 |M: | 12.4 |< 14.0 | |p |25732. | | 330. : | |M3 |00747 06286| +860070 |AQ Vir |144618.4-071550 |M | 11.0 | 15.8 | |p |29408. | | 292.8 | |M5e: |02931 00132| +860071 |AR Vir |145440.1+024143 |RRAB | 12.6 | 13.8 | |p |44011.346 | | 0.530304 |15 | |05621 10165| +860072 |AS Vir *|125245.9-101536 |RRAB | 11.42 | 12.34 | |V |39154.913 | | 0.5534240 |14 |A7 |00001 00464| +860073 |AT Vir *|125510.5-052732 |RRAB | 10.63 | 11.82 | |V |39678.262 | | 0.5257931 |12 |A7 |00001 00464| +860074 |AU Vir *|132448.0-065846 |RRC | 11.36 | 11.90 | |V |41795.317 | | 0.3432307 |35 |A5-F6: |00001 00464| +860075 |AV Vir *|132011.6+091116 |RRAB | 11.42 | 12.16 | |V |41470.283 | | 0.6569090 |17 |A9-F6 |00001 03506| +860076 |AW Vir *|132732.9+030229 |EW/KW | 11.0 | 11.81 | 11.67 |V |45022.645 | | 0.35399695 | |F8 |00001 00470| +860077 |AX Vir *|132744.8+035227 |EB/KE | 10.0 | 10.81 | 10.24 |V |27570.444 | | 0.7025262 | |A0p |09982 BD | +860078 |AY Vir *|135151.7-034034 |SRB | 10.3 | 11.4 | |p | | | 113. | |M6 |00729 08953| +860079 |AZ Vir *|134325.6+043657 |EW/KW | 10.74 | 11.37 | 11.37 |V |43976.540 | | 0.34966511 | |F8 |10117 10117| +860080 |BB Vir *|135140.8+062551 |RRAB | 10.70 | 11.42 | |V |39613.776 | | 0.4710965 |13 |A2 |00001 03506| +860081 |BC Vir *|132221.1+055311 |RRAB | 11.31 | 12.71 | |V |19922.289 | | 0.56451468 |13 |A8 |04307 00470| +860082 |BD Vir *|132640.6-160617 |EA/SD | 9.9 | 11.2 | |V |42538.413 | | 2.548537 |18 *|A5 |00001 00318| +860083 |BE Vir |143005.0-054452 |RRAB | 17.8 | 18.9 | |p |28285.716 | | 0.587356 |12 | |00754 00754| +860084 |BF Vir *|134752.6-003541 |EB/KE: | 10.5 | 11.23 | 10.72 |V |46070.684 | | 0.640570 | |A2 |06070 00753| +860085 |BG Vir |144703.7+045308 |SRB: | 9.5 | 10.68 | |B | | | 50. : | |M5 |05429 08953| +860086 |BH Vir *|135824.9-013939 |EA/DW/RS: | 9.60 | 10.56 | 10.24 |V |43230.609 | | 0.81687161 |16 *|G0V+G2V |00001 00110| +860087 |BI Vir |122930.4+001328 |RRAB | 14.2 | 15.0 | |p |26840.356 | | 0.3356548 |24 : | |03506 06286| +860088 |BK Vir |123021.0+042459 |SRB | 7.28 | 8.8 | |V | | | 150. : | |M7III |05429 08953| +860089 |BL Vir |123103.3-041914 |RRAB | 14.2 | 15.4 | |p |19511.404 | | 0.6686395 | | |07806 07806| +860090 |BM Vir |123155.6+005431 |RRAB | 13.6 | 15.0 | |p |19511.476 | | 0.6718147 |22 : | |07806 07806| +860091 |BN Vir *|123413.9+025717 |RR | 14.2 | 15.0 | |p |32650.373 | | 0.3912845 |34 : | |03506 06286| +860092 |BO Vir *|123420.2+003925 |RRAB | 14.2 | 15.6 | |p |33358.387 | | 0.52005117 |17 : | |03506 06286| +860093 |BP Vir |123420.6-011037 |SR | 12.5 | 13.5 | |p | | | | |M4 |00756 06286| +860094 |BQ Vir *|123627.3-022533 |RRAB | 12.1 | 12.7 | |p |19858.356 | | 0.6359125 |21 | |07806 07806| +860095 |BR Vir |123730.5+022003 |RR | 14.4 | 15.2 | |p |26839.30 | | 0.60190 | | |00756 UCAC2| +860096 |BS Vir *|124139.8-014949 |RR | 13.6 | 14.4 | |p |20608.405 | | 0.3770874 |31 : | |03506 06286| +860097 |BT Vir |124351.2-012315 |RRAB | 14.7 | 15.5 | |p |26840.40 | | 0.73800 | | |00756 06286| +860098 |BU Vir |124429.7-020450 |RRAB | 13.8 | 15.0 | |p |20247.47 | | 0.5813090 |27 : | |07806 07806| +860099 |BV Vir *|124633.9+021828 |RR | 14.6 | 15.3 | |p |36613.558 | | 0.496656 | | |03506 06286| +860100 |BW Vir *|124906.9-010422 |RRAB | 13.8 | 15.4 | |p |28252.463 | | 0.4706619 | | |03506 06286| +860101 |BX Vir |125011.6+015718 |RRAB | 14.7 | 15.7 | |p |26070.544 | | 0.8375589 | | |07806 07806| +860102 |BY Vir |125408.6+021615 |RR | 14.3 | 14.8 | |p |26860.35 | | 0.65895 | | |00756 UCAC2| +860103 |BZ Vir |130041.3-173848 |M | 9.5 |< 13. | |p |29701. | | 150.92 | |M5e |01109 00110| +860104 |CC Vir |130053.4-182732 |RR | 13.9 | 14.6 | |p |29373.511 | | 0.603217 | | |01109 06286| +860105 |CD Vir |130111.9-210151 |RR | 14.0 | 14.9 | |p |29348.584 | | 0.578188 | | |01109 06286| +860106 |CE Vir |134917.1-015545 |RV: | 8.37 | 10.71 | |V | | | 67. : | |G-K |00729 08953| +860107 |CF Vir |141544.5-055208 |M | 11.0 |< 14.0 | |p |31970. | | 227.6 | |M5e: |02931 06286| +860108 |CG Vir *|150454.7+042403 |EB/D | 10.56 | 11.2 | 10.9 |V |31556.540 | | 0.93529 | |F8 |00397 BD | +860109 |CH Vir |122021.4-090000 |LB | 9.5 | 10.6 | |p | | | | |MC |00349 08953| +860110 |CI Vir |123308.3+071501 |LB | 10.2 | 10.9 | |p | | | | |M6 |00349 08953| +860111 |CK Vir *|123547.5+090428 |SRD | 10.19 : | 11.04 | |V | | | 93. : | |G |06232 06232| +860112 |CL Vir |134319.5-100637 |LB | 10.8 | 11.4 | |p | | | | |M |00104 BD | +860113 |CM Vir *|143207.6-011446 |EA | 12.9 | 13.4 | |p |33024.473 | | 3.4019 |09 | |03724 03724| +860114 |CN Vir |125848.4+081236 |SRB | 8.17 | 9.0 | |V | | | 60. : | |M3 |05429 08953| +860115 |CO Vir |130355.8+070405 |SRB | 8.49 | 9.54 | |V | | | 70. : | |M5 |05429 08953| +860116 |CP Vir |135659.5+063429 |SRB | 8.38 | 8.91 | |V | | | 70. : | |M7 |05429 08953| +860117 |CQ Vir |142125.2+062633 |SRB | 8.99 | 9.64 | |V | | | 70. : | |M3 |00351 00156| +860118 |CR Vir |143754.7+033119 |SRB | 10.8 |( 0.5 )| |p | | | 75. : | |M5 |00351 00156| +860119 |CS Vir *|141838.3-184258 |ACV | 5.84 | 5.95 | |V |40382.25 | | 9.2954 |50 |A0p(Cr-Eu) |04498 BD | +860120 |CT Vir |125204.0+055628 |SRB | 10.6 | 11.3 | |p | | | 100. : | |M1 |00503 BD | +860121 |CU Vir *|141215.8+022434 |ACV | 4.92 | 5.07 | |V |41455.685 | | 0.5206794 |50 |A0Vp(Si) |00001 BD | +860122 |CV Vir |123058.1+121831 |M | 14.2 |< 16.5 | |p |37334. | | 146.38 | |Me |03727 03727| +860123 |CW Vir *|133407.9+033932 |ACV | 4.91 | 4.99 | |V |34816.9 | | 3.7220 | |A1p(Sr-Cr-Eu) |05638 BD | +860124 |CX Vir *|140927.4-153454 |EW | 9.8 |( 0.65 )|( 0.30 )|V |26092.450 | | 0.746077 | |F5 |06871 06871| +860125 |CY Vir |144451.2-044042 |RRAB | 13.0 |( 1.5 )| |p |20636.380 | | 0.61272478 |34 : | |07806 06286| +860126 |CZ Vir |144529.0-040116 |RRAB | 13.1 |( 1.5 )| |p |36716.419 | | 0.5169041 |20 : | |07806 06286| +860127 |DD Vir |120959.8+131637 |RR | 15.5 | 16.5 | |p | | | | | |03910 03910| +860128 |DE Vir |121559.3+090738 |RR | 15.5 | 16.5 | |p |39256.44 | | | | |03903 03903| +860129 |DF Vir |122233.5+111740 |RRAB | 15.1 | 15.9 | |p |38827.579 | | 0.652728 |15 | |04784 03910| +860130 |DG Vir |123959.6+113037 |RRAB | 14.7 | 16.0 | |p |38170.456 | | 0.62126 |20 | |04784 03903| +860131 |DH Vir |123956.5+060445 |RRAB | 12.97 | 13.92 | |V |41858.255 | | 0.681552 |15 | |00001 07233| +860132 |DI Vir |124521.9+084531 |RRAB | 14.9 | 16.5 | |p |39256.436 | | 0.641776 |30 | |04784 03903| +860133 |DK Vir *|131625.5-012326 |DSCTC | 6.67 | 6.72 | |V |41777.804 | | 0.119153 |40 |F0IV |08101 BD | +860134 |DL Vir *|135238.8-184233 |EA | 7.0 | 7.5 | |V |38796.525 | | 1.31548 |14 |G8III+A3 |05640 08953| +860135 |DM Vir *|140752.4-110908 |EA/D | 8.75 | 9.50 | 9.49 |V |43583.8810 | | 4.6694335 |06 *|F6IV+F6IV |10144 08953| +860136 |DN Vir *|141119.2-102845 |SRB | 9.1 | 9.6 | |p | | | | |MB |05828 08953| +860137 |DO Vir |143846.0-051931 |RRAB | 11.5 | 13.0 | |p |26588.220 | | 0.5327227 | | |03717 06286| +860138 |DP Vir |121503.7+074730 |RRAB | 14.1 | 15.3 | |p |38386.690 | | 0.485796 |20 |A7V: |04784 03910| +860139 |DQ Vir |121823.2+053041 |RRAB | 14.2 | 15.8 | |p |39257.446 | | 0.584445 |18 | |04784 05515| +860140 |DR Vir |122142.4+075328 |RRAB | 12.5 | 13.8 | |p |39580.423 | | 0.545596 |30 |G5 |04784 05515| +860141 |DS Vir |122727.0+074850 |RRAB | 14.6 | 15.7 | |p |38910.445 | | 0.532160 |20 |A7V: |04784 05515| +860142 |DT Vir *|130046.6+122233 |UV+BY | 10.34 | 11.32 | |B | | | | |M2Ve |05793 07060| +860143 |DU Vir |144833.9+010625 |SRB | 12.6 | 13.9 | |p | | | 79.5 : | | |06575 06575| +860144 |DV Vir *|145441.6+024421 |RRAB | 13.6 | 14.8 | |p |44011.446 | | 0.662674 |22 | |10151 05621| +860145 |DW Vir |150035.5+044520 |RR: | 16.0 | 16.9 | |p | | | | |G0: |06575 06575| +860146 |DX Vir |150611.0+025433 |RRAB | 15.4 | 16.4 | |p |41390.599 | | 0.582594 |16 | |06575 06575| +860147 |DY Vir |121912.2+092216 |EA/SD | 14.2 | 15.7 | |p |38901.411 | | 0.934280 |15 *|G0V |04784 05884| +860148 |DZ Vir |121957.7+081733 |RRAB | 15.6 | 16.3 | |p |38386.652 | | 0.571512 |20 | |04784 05884| +860149 |EE Vir |122104.6+052635 |RRAB | 15.1 | 15.9 | |p |38142.445 | | 0.508983 |22 | |04784 05884| +860150 |EF Vir *|122343.4+074905 |E: | 16.5 | 17. | |p | | | | | |05884 05884| +860151 |EG Vir |122356.3+005131 |RRAB | 14.5 | 15.8 | |p |38436.584 | | 0.584208 |13 | |06828 09014| +860152 |EH Vir |122445.3+083309 |RRAB | 15.2 | 16.3 | |p |39942.552 | | 0.492837 : |20 | |04784 05884| +860153 |EI Vir |122529.0+011421 |RR | 16.0 | 17.3 | |p | | | | | |09014 09014| +860154 |EK Vir |122706.9+110305 |RRAB: | 15.5 | 16.5 | |p |40321.56 | | 0.57 : | | |04784 05884| +860155 |EL Vir |122846.8+052726 |E: | 15.3 | 16.3 | |p |40301.54 | | 12. : | | |04784 05884| +860156 |EM Vir |122922.9+091558 |RRAB | 15.0 | 16.2 | |p |39943.394 | | 0.645858 |14 | |04784 05884| +860157 |EN Vir |122928.9+013803 |RR | 16.5 | 17.5 | |p | | | | | |09014 09014| +860158 |EO Vir |124104.9+130243 |RRAB | 14.8 | 16.1 | |p |39580.423 | | 0.514347 |22 | |04784 05884| +860159 |EP Vir *|124702.3+055701 |ACV | 6.29 | 6.39 | |V |40640.20 | | 16.304 | |A0p(Sr-Eu-Cr) |10152 BD | +860160 |EQ Vir *|133443.2-082031 |UV+BY | 11.80 | 14.1 | |U | | | | |K5Ve |06948 BD | +860161 |ER Vir |140641.6-141218 |SRB | 6.45 | 6.63 | |V |40752. | | 55. | |M4III |05828 BD | +860162 |ES Vir |140837.7-085143 |LB | 8.15 | 8.33 | |V | | | | |MB |05828 BD | +860163 |ET Vir |141050.5-161807 |SRB | 4.80 | 5.00 | |V |40697. :| | 80. | |M2IIIa |05828 BD | +860164 |EU Vir |141222.3-184446 |SRB | 9.01 | 9.19 | |V |40710. :| | 38. | |MB |05828 BD | +860165 |EV Vir |141309.8-135136 |SRB | 6.74 | 7.09 | |V |40726. | | 120. | |M4II-III |05828 BD | +860166 |EW Vir *|141659.4-162620 |SRB | 9.16 | 9.31 : | |V |40710. :| | | |M6III |05828 BD | +860167 |EX Vir *|141717.7-164459 |SRB | 10.4 : | 10.6 : | |V | | | | |M8 |05828 BD | +860168 |EY Vir *|141911.7-132554 |SRB | 8.2 : | 8.6 : | |V | | | | |M5 |05828 BD | +860169 |EZ Vir |142104.1-185932 |SRB | 7.77 | 7.97 | |V |40710. :| | 39. | |M1 |05828 BD | +860170 |FF Vir *|142555.9+005934 |ACV | 7.07 | 7.13 | |V | | | 130.0 | |A2p(Cr-Sr) |06265 BD | +860171 |FG Vir *|121415.5-054300 |DSCTC | 6.53 | 6.58 | |V | | | 0.079 | |Am |10191 BD | +860172 |FH Vir |131623.9+063017 |SRB | 6.92 | 7.45 | |V |40740. | | 70. : | |M6III |06351 08953| +860173 |FI Vir *|114744.4+004816 |UV | 13.82 | 14.26 | |U | | | | |M4.5V |06911 04139| +860174 |FK Vir |122411.5+055818 |SRB | 7.50 | 7.78 | |V | | | 40. : | |M4III |06645 BD | +860175 |FL Vir *|123317.4+090116 |UV | 13.1 | 15.57 | |U | | | | |M5.5Ve+M7 |07231 04139| +860176 |FM Vir *|124537.1+074024 |DSCTC | 5.20 | 5.28 | |V | | | 0.07188 | |F0IVm+A7V |10179 BD | +860177 |FN Vir *|130033.5+054108 |UV | 15.2 | 16.34 | |U | | | | |M5Ve |06873 07060| +860178 |FO Vir *|132947.1+010543 |EB/KE | 6.50 | 6.82 | 6.67 |V |45441.7110 | | 0.775567 | |A7V |10180 BD | +860179 |FP Vir |133552.1+081734 |SRB | 6.72 | 7.35 | |V | | | 40. : | |M4III |06645 BD | +860180 |FQ Vir *|140630.3-153028 |E/DM | 10.1 | 10.9 | |p |27841.725 | | 3.018375 | |A0 |06871 06871| +860181 |FR Vir |140900.3-191444 |LB: | 7.02 | 7.19 | |V | | | | |M3III |06590 BD | +860182 |FS Vir |141453.0+032009 |LB: | 6.37 | 6.52 | |V | | | | |M4IIIab |06590 BD | +860183 |FT Vir |122751.5-043655 |DSCTC | 6.20 | 6.24 | |V | | | 0.05 | |F2III |07489 BD | +860184 |FU Vir |123826.3+130058 |RRAB | 12.0 | 13.1 | |p |39936.405 | | 0.574360 |27 | |07457 07457| +860185 |FV Vir |150157.7+015009 |RRAB | 15.2 | 16.3 | |p |38911.348 | | 0.603431 |13 | |07490 07490| +860186 |FW Vir |123822.4+015117 |SRB: | 5.63 | 5.75 | |V |42250. | | 15. : |50 |M3IIIab |07873 BD | +860187 |FX Vir |140808.8-174936 |LB | 12.9 | 14.2 | |p | | | | |M6 |00486 07897| +860188 |FY Vir |121413.5+060117 |CWB | 15.7 | 17.3 | |B |42212.38 | | 1.081958 |07 : | |10182 10182| +860189 |FZ Vir |122909.7-022546 |SRB | 6.81 | 6.98 | |V | | | 25. | |M4III |07959 BD | +860190 |GG Vir *|124134.4+102535 |DSCT | 6.19 | 6.33 | |V | | | | |A7V |10183 HIP | +860191 |GH Vir *|123804.5+071829 |RRAB | 13.2 | 14.7 | |p |42519.35 | | 0.605306 |15 | |08579 08277| +860192 |GI Vir |125122.3+025450 |RRAB | 13.2 | 15.0 | |p |39177.37 | | 0.587521 |25 | |10184 06286| +860193 |GK Vir *|141536.5+011718 |EA/WD | 17.01 | 23. | |V |42543.8371 | | 0.344330809 |01 | |08278 08278| +860194 |GL Vir *|121859.5+110734 |UV | 12.8 | 15.62 | |B | | | | |MVea |08577 04139| +860195 |GM Vir *|123253.6+113407 |E: | 14.1 | 14.8 | |p | | | | | |04784 05884| +860196 |GN Vir |124348.6+103608 |SR | 12.8 | 13.4 | |p |39270. | | 172. : | | |04784 03903| +860197 |GO Vir |124520.3+035856 |SRA | 15.2 | 17. | |p |42520. | | 122.5 |50 | |08579 08579| +860198 |GP Vir |133543.3-060922 |GCAS | 8.03 | 8.10 | |V | | | | |B5e |08580 04785| +860199 |GQ Vir *|141304.9-120127 |UV | 16.0 | 16.3 | |U | | | | |M5.5Ve |06873 06873| +860200 |GR Vir *|144520.3-064404 |EW/KW | 7.8 |( 0.45 : )|( 0.41 )|V |45116.381 | | 0.419757 | |G0 |10192 08581| +860201 |GS Vir |145121.6+051246 |RRAB | 15.3 | 16.8 | |p |42543.45 | | 0.6501552 |12 | |08582 08582| +860202 |GT Vir |145648.4+064828 |RRAB | 15.3 | 16.1 | |p |43283.39 | | 0.4080564 |15 : | |08582 08582| +860203 |GU Vir *|150203.5+070322 |RRAB | 13.9 | 16.0 | |p |42546.35 | | 0.466577 |10 | |08582 08582| +860204 |GV Vir |150648.7+003723 |RRAB | 15.8 | 17.4 | |p |38141.49 | | 0.5548742 |10 | |08582 08582| +860205 |GW Vir |120145.9-034541 |ZZO | 14.87 |( 0.03 )| |V | | | | | |67377 | +860206 |GX Vir |130524.9-035304 |EA/SD: | 15.2 | 17.1 | |p | | | | | |67172 UCAC2| +860207 |GY Vir |131117.7-003430 |RRAB | 14.9 : | 16.7 | |p | | | | | |67172 UCAC2| +860208 |GZ Vir |131313.8-023321 |DSCTC | 8.0 |( 0.035 )| |V | | | | | |67378 BD | +860209 |HH Vir |131341.6-083706 |SR | 12.8 | 13.7 | |p | | | | | |67379 67379| +860210 |HI Vir |131534.7-073910 |RRAB | 14.5 | 15.7 | |p | | | | | |67380 UCAC2| +860211 |HK Vir |131704.5-085808 |RRAB | 14.4 | 15.6 | |p | | | | | |67380 UCAC2| +860212 |HL Vir |131711.1-031126 |RRAB | 13.7 | 15.2 | |p | | | | | |67381 67381| +860213 |HM Vir |131731.8-053109 |RRAB | 16.1 | 16.9 | |p | | | | | |67172 2MASS| +860214 |HN Vir |132309.9-020455 |RRAB | 14.6 | 15.9 | |p | | | | | |67379 67379| +860215 |HO Vir |132434.1-051506 |RRAB | 15.5 | 16.3 | |p | | | | | |67379 67379| +860216 |HP Vir |133251.5-061938 |RRAB | 14.4 | 15.6 | |p | | | | | |67380 2MASS| +860217 |HQ Vir |133725.4-014948 |SRA | 14.6 | 16.2 | |p | | | | | |67379 67379| +860218 |HR Vir |134228.6-033733 |RRAB | 14.4 | 15.1 | |p | | | | | |67172 UCAC2| +860219 |HS Vir |134338.4-081404 |NL | 13.0 | 15.8 | |B | | | | | |67308 67308| +860220 |HT Vir |134606.8+050656 |EW/KW | 7.06 | 7.48 | |V | | | | | |67383 BD | +860221 |HU Vir |121320.7-090447 |RS: | 8.1 |( 0.27 )| |V | | | | | |68316 BD | +860222 |HV Vir |132103.1+015330 |N | 11. |< 13.0 | |p | | | | | |68307 68275| +860223 |HW Vir |124420.2-084017 |EA/D | 10.5 |( 0.90 )| |V | | | | | |69291 BD | +860224 |HX Vir |133202.8-184344 |DSCTC | 6.01 |( 0.02 )| |V | | | | | |69292 BD | +860225 |HY Vir |130829.9-024044 |EA | 7.81 | 8.10 | |V | | | | | |70137 BD | +860226 |HZ Vir |135951.8-052256 |UV | 11.7 | 11.98 | |V | | | | | |70138 70087| +860227 |II Vir |121027.2-074626 |DSCTC: | 6.49 | 6.55 | |V | | | | | |71109 BD | +860228 |IK Vir |121356.1+020034 |EA | 11.51 | 11.79 | |V | | | | | |71110 71110| +860229 |IL Vir |122940.5+080058 |RRAB | 19.00 | 19.42 | |V | | | | | |71115 71115| +860230 |IM Vir |124938.7-060445 |EA/RS: | 9.74 |( 0.15 )| |V | | | | | |71116 BD | +860231 |IN Vir |132424.2-021855 |RS | 9.24 |( 0.15 )| |V | | | | | |71007 BD | +860232 |IO Vir |141117.6-074450 |M | 4.0 | 6.0 | |J | | | | | |71002 71124| +860233 |IP Vir |144007.0+000145 |DSCT | 11.51 | 11.63 | |V | | | | | |71128 71129| +860234 |IQ Vir |115350.3+003308 |DSCTC | 6.30 |( 0.02 )| |V | | | | | |73067 BD | +860235 |IR Vir |123808.5-035917 |EW | 12.1 |( 0.70 )| |V | | | | | |73341 73341| +860236 |IS Vir |130626.0-045045 |RS | 8.27 |( 0.05 )| |V | | | | | |73005 BD | +860237 |IT Vir |135547.0-181457 |ELL | 7.82 | 7.86 | |V | | | | | |73342 BD | +860238 |IU Vir |140357.2-150111 |ZZA | 15.67 |( 0.40 )| |V | | | | | |73343 2MASS| +860239 |IV Vir |141634.3-214550 |ELL | 10.71 | 10.86 | |V | | | | | |73344 BD | +860240 |IW Vir |113748.0+041924 |LB | 8.79 | 9.52 | |Hp| | | | | |HIP HIP | +860241 |IX Vir |114436.1-012305 |LB: | 8.22 | 8.48 | |Hp| | | | | |HIP HIP | +860242 |IY Vir |115809.4+073247 |LB: | 9.43 | 9.59 | |Hp| | | | | |HIP HIP | +860243 |IZ Vir |120418.8+045554 |SRB | 7.14 | 7.24 | |Hp| | | | | |HIP HIP | +860244 |KK Vir |120946.3+081044 |LB: | 9.23 | 9.34 | |Hp| | | | | |HIP HIP | +860245 |KL Vir |121246.6+110641 |SRB | 8.27 | 8.42 | |Hp| | | | | |HIP HIP | +860246 |KM Vir |121951.9+113555 |LB | 8.15 | 8.30 | |Hp| | | | | |HIP HIP | +860247 |KN Vir |122151.1-042311 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +860248 |KO Vir |122215.0+045118 |LB | 7.46 | 7.62 | |Hp| | | | | |HIP HIP | +860249 |KP Vir |122751.0-101002 |EA | 8.42 | 8.79 | |Hp| | | | | |HIP HIP | +860250 |KQ Vir |122922.9-011359 |LB: | 8.84 | 8.95 | |Hp| | | | | |HIP HIP | +860251 |KR Vir |124103.6-003714 |SRD: | 9.39 | 9.65 | |Hp| | | | | |HIP HIP | +860252 |KS Vir |124108.9-091444 |LB | 7.62 | 7.82 | |Hp| | | | | |HIP HIP | +860253 |KT Vir |124315.9+100603 |SRB | 7.42 | 7.56 | |Hp| | | | | |HIP HIP | +860254 |KU Vir |124425.4+003212 |LB | 7.86 | 8.06 | |Hp| | | | | |HIP HIP | +860255 |KV Vir |125831.0-123048 |LB: | 7.82 | 7.92 | |Hp| | | | | |HIP HIP | +860256 |KW Vir |130130.4+013113 |SRB | 7.45 | 7.58 | |Hp| | | | | |HIP HIP | +860257 |KX Vir |130359.8+111351 |SRB | 7.30 | 7.42 | |Hp| | | | | |HIP HIP | +860258 |KY Vir |130936.1-074651 |SRB: | 8.02 | 8.35 | |Hp| | | | | |HIP HIP | +860259 |KZ Vir |131222.9+023914 |EB: | 8.45 | 8.52 | |Hp| | | | | |HIP HIP | +860260 |LL Vir |131245.8-014530 |SRB: | 6.91 | 7.08 | |Hp| | | | | |HIP HIP | +860261 |LM Vir |131326.8-184935 |EW: | 6.29 | 6.33 | |Hp| | | | | |HIP HIP | +860262 |LN Vir |131431.3+111954 |E: | 5.75 | 5.80 | |Hp| | | | | |HIP HIP | +860263 |LO Vir |131502.9+043103 |SRB | 7.16 | 7.30 | |Hp| | | | | |HIP HIP | +860264 |LP Vir |131727.3-103247 |ELL: | 6.92 | 7.08 | |Hp| | | | | |HIP HIP | +860265 |LQ Vir |131836.7+125442 |LB | 8.16 | 8.30 | |Hp| | | | | |HIP HIP | +860266 |LR Vir |131854.1+023237 |SRD | 8.44 | 8.70 | |Hp| | | | | |HIP HIP | +860267 |LS Vir |132045.2-112701 |SRB: | 8.30 | 8.54 | |Hp| | | | | |HIP HIP | +860268 |LT Vir |132201.8+024526 |SRB: | 7.49 | 7.67 | |Hp| | | | | |HIP HIP | +860269 |LU Vir |132653.5-055551 |EB: | 7.88 | 8.16 | |Hp| | | | | |HIP HIP | +860270 |LV Vir *|133246.1-174533 |EW: | 8.50 | 8.68 | |Hp| | | | | |HIP HIP | +860271 |LW Vir |133454.3-090218 |LB: | 9.14 | 9.29 | |Hp| | | | | |HIP HIP | +860272 |LX Vir |133532.0-042324 |LB | 8.41 | 8.75 | |Hp| | | | | |HIP HIP | +860273 |LY Vir |133651.6-214210 |LB: | 8.45 | 8.81 | |Hp| | | | | |HIP HIP | +860274 |LZ Vir |134221.4+005949 |LB | 7.99 | 8.17 | |Hp| | | | | |HIP HIP | +860275 |MM Vir |134704.6-130644 |SRB: | 8.89 | 9.05 | |Hp| | | | | |HIP HIP | +860276 |MN Vir |134936.8-091156 |LB: | 9.02 | 9.13 | |Hp| | | | | |HIP HIP | +860277 |MO Vir |135215.8-013022 |SRD | 9.03 | 9.26 | |Hp| | | | | |HIP HIP | +860278 |MP Vir |135758.4-042310 |LB: | 8.72 | 8.82 | |Hp| | | | | |HIP HIP | +860279 |MQ Vir |135953.4-222041 |LB | 8.80 | 8.99 | |Hp| | | | | |HIP HIP | +860280 |MR Vir |140402.3-002145 |EB | 8.57 | 8.69 | |Hp| | | | | |HIP HIP | +860281 |MS Vir |140614.4-174119 |EW: | 9.40 | 9.67 | |Hp| | | | | |HIP HIP | +860282 |MT Vir |141135.5-115332 |LB: | 9.02 | 9.16 | |Hp| | | | | |HIP HIP | +860283 |MU Vir |141233.5-095400 |E: | 7.24 | 7.28 | |Hp| | | | | |HIP HIP | +860284 |MV Vir |141421.4-152122 |BY: | 10.38 | 12.06 | |Hp| | | | | |HIP HIP | +860285 |MW Vir *|141727.7-195750 |EW: | 7.00 | 7.04 | |Hp| | | | | |HIP HIP | +860286 |MX Vir |141741.8-214944 |DSCTC: | 7.41 | 7.46 | |Hp| | | | | |HIP HIP | +860287 |MY Vir |141901.5+041047 |LB: | 8.19 | 8.52 | |Hp| | | | | |HIP HIP | +860288 |MZ Vir |141914.9-142429 |LB | 7.29 | 7.66 | |Hp| | | | | |HIP HIP | +860289 |NN Vir *|141937.7+055347 |RRC: | 7.60 | 8.02 | |Hp| | | | | |HIP HIP | +860290 |NO Vir |142135.0-022308 |LB | 8.03 | 8.34 | |Hp| | | | | |HIP HIP | +860291 |NP Vir |142440.0+023213 |SRB: | 8.79 | 9.00 | |Hp| | | | | |HIP HIP | +860292 |NQ Vir |142828.6+054051 |LB | 7.36 | 7.57 | |Hp| | | | | |HIP HIP | +860293 |NR Vir |142856.5+034311 |SRD | 6.93 | 7.09 | |Hp| | | | | |HIP HIP | +860294 |NS Vir |143149.8+064136 |EB | 8.79 | 9.13 | |Hp| | | | | |HIP HIP | +860295 |NT Vir |143546.7+021438 |LB: | 8.47 | 8.61 | |Hp| | | | | |HIP HIP | +860296 |NU Vir |143644.9+025021 |SRD | 8.47 | 8.73 | |Hp| | | | | |HIP HIP | +860297 |NV Vir |144158.7-033125 |SRB: | 8.54 | 8.98 | |Hp| | | | | |HIP HIP | +860298 |NW Vir |144644.2+071653 |LB: | 7.22 | 7.32 | |Hp| | | | | |HIP HIP | +860299 |NX Vir |133525.8-222317 |M: | 12.7 |< 15.1 | |p | | | | | |75281 UCAC2| +860300 |NY Vir |133848.1-020149 |EA+RPHS | 13.30 | 14.22 | |V | | | | | |75282 75256| +860301 |NZ Vir |143043.9+071932 |EA/RS | 11.06 |( 0.20 Rc)| |V | | | | | |75283 GSC | +860302 |OO Vir |150131.6+022620 |SR | 12.3 | 14.1 | |p | | | | | |75021 75021| +860303 |OP Vir |130327.6+045429 |SRB | 8.30 | 8.64 | |V | | | | | |76122 DM | +860304 |OQ Vir |132543.3+060317 |SR: | 12.3 | 14.3 | |V | | | | | |76054 UCAC2| +860305 |OR Vir |133213.3-193950 |SR: | 12.4 | 14.4 | |V | | | | | |76054 UCAC2| +860306 |OS Vir |134041.8+070512 |UV | 15.5 | 16.51 | |V | | | | | |76124 76124| +860307 |OT Vir |140107.9-004745 |M: | 14.1 |< 15.5 | |V | | | | | |76012 UCAC2| +860308 |OU Vir |143500.2-004606 |UGSU+E | 14.5 | 18.5 | |V | | | | | |76125 76005| +860309 |OV Vir |144130.2-020228 |DSCTC: | 7.83 |( 0.03 v )| |V | | | | | |76126 DM | +860310 |OW Vir |115914.6-060714 |SR: | 12.3 | 13.3 | |V | | | | | |77004 UCAC2| +860311 |OX Vir |120535.0-055045 |SRS: | 6.64 | 6.75 | |V | | | | | |77053 DM | +860312 |OY Vir |130030.2+033615 |SRS | 7.51 |( 0.06 )| |V | | | | | |77008 DM | +860313 |OZ Vir |131447.5-035442 |EW: | 13.6 |( 0.30 * )| |R | | | | | |77028 2MASS| +860314 |PP Vir |140448.9+052452 |ACVO | 8.67 |( 0.01 )| |B | | | | | |77112 DM | +860315 |PQ Vir |114928.1+003633 |BY: | 9.12 |( 0.03 )| |V | | | | |K0V |78018 DM | +860316 |PR Vir |115641.2-024644 |BY | 9.50 |( 0.05 )| |V | | | 17.16 | |K3V |78018 DM | +860317 |PS Vir *|115751.3+062705 |EW | 11.6 | 12.3 | 12.2 |V |53073.7375 | | 0.289807 | | |78154 GSC | +860318 |PT Vir *|122423.0+103514 |EW | 13.38 | 13.56 | 13.54 |* |52386.422 | | 0.30817 | | |78135 GSC | +860319 |PU Vir *|123948.6-022622 |EW | 11.54 | 11.71 | 11.68 |* |52407.514 | | 0.2562555 | | |78060 GSC | +860320 |PV Vir |125536.3-053836 |DSCTC | 11.57 | 11.63 | |V | | | 0.18611 | |F |78022 GSC | +860321 |PW Vir |130310.6-160321 |M | 9.5 |< 15.1 | |V |52760 | | 255.2 | |M7e |78090 GSC | +860322 |PX Vir |130349.7-050943 |BY | 7.69 |( 0.04 )| |V | | | 6.47 | |G5V |78018 DM | +860323 |PY Vir *|131032.2-040933 |EW | 9.60 | 10.09 | 10.04 |V |51950.8407 | | 0.311251 | |K0 |78094 DM | +860324 |PZ Vir |132411.6+032051 |AM | 20.5 | 21.8 | |r | | | | | |78168 78043| +860325 |QQ Vir |132748.6+095451 |RPHS | 13.45 |( 0.05 )| |B | | | 0.0016 | |sdB |78169 78009| +860326 |QR Vir |134334.0-174938 |SRA | 9.3 | 11.1 | |V |52469 | | 203.6 | |Me |78090 DM | +860327 |QS Vir |134952.0-131337 |EA+UV | 14.27 | 17.76 | |U |52295.6096 | | 0.150757525 | |DA+dMe |78170 78171| +860328 |QT Vir |135209.3+060005 |DSCTC | 8.50 |( 0.02 b )| |V | | | 0.0562 | |A3 |78037 DM | +860329 |QU Vir *|140543.2+003412 |EW | 11.75 | 12.06 | 12.03 |* |52415.018 | | 0.399249 | | |78135 GSC | +860330 |QV Vir |141836.7-063738 |SXPHE | 14.69 | 15.20 | |* |52415.6540 | | 0.0676535 | | |78172 GSC | +860331 |QW Vir |143056.5-031109 |RRC | 14.32 | 14.73 | |* |52422.113 | | 0.32313 |35 | |78172 GSC | +860332 |QX Vir *|143628.4-053621 |EW | 12.1 | 12.7 | 12.6 |V |52025.629 | | 0.242074 | | |78130 GSC | +860333 |QY Vir |144716.1+024212 |BY | 7.76 |( 0.02 )| |V | | | 21.79 | |G8V |78018 DM | +860334 |QZ Vir *|113826.8+032207 |UG | 10. | 15.71 | |B | | | | |pec(UG) |09303 08852| +860335 |V0335 Vir |120752.2-055955 |RRAB | 13.8 | 14.9 | |V |53870.603 | | 0.46972 |28 : | |79100 79010| +860336 |V0336 Vir |122608.7+101501 |LB | 11.0 | 11.3 | |V | | | | | |79100 79040| +860337 |V0337 Vir |125035.0+005701 |EW | 13.3 | 14.1 | 13.8 |V |53392.858 | | 0.352864 | | |79003 GSC | +860338 |V0338 Vir *|131117.4-110621 |EA | 9.16 | 9.45 | |V |53900.5899 | | 2.9927 |10 |F5 |79190 DM | +860339 |V0339 Vir |131120.8-103051 |SRB | 7.1 | 7.7 | |V | | | 58.5 | |Mb |79190 DM | +860340 |V0340 Vir |131324.2-135757 |EW | 11.53 | 12.22 | 11.85 |V |52879.487 | | 0.454857 | | |79018 79081| +860341 |V0341 Vir |132431.2-155331 |RRAB | 13.1 | 14.6 | |V |53851.664 | | 0.450334 |22 |B-A |79064 GSC | +860342 |V0342 Vir |132710.3-041021 |EA | 10.50 | 10.86 | 10.63 |V |53167.644 | | 0.754190 |17 |A |79100 DM | +860343 |V0343 Vir |133057.9+101332 |LB | 9.0 | 9.3 | |V | | | | | |79100 DM | +860344 |V0344 Vir |134224.6-192350 |SRB | 8.8 | 9.4 | |V | | | 54. | |M2 |79100 DM | +860345 |V0345 Vir |134406.5-132257 |LB | 9.2 | 9.8 | |V | | | | |M0 |79100 DM | +860346 |V0346 Vir |135251.5-135037 |RRAB | 13.1 | 14.4 | |V |52688.791 | | 0.541630 |14 | |79100 GSC | +860347 |V0347 Vir |135441.8-220453 |EA | 11.75 | 12.43 | 11.85 |V |53090.714 | | 0.81672 |18 | |79018 79096| +860348 |V0348 Vir |141625.7-170529 |RRAB | 12.1 | 13.0 | |V |53796.812 | | 0.565210 |25 | |79100 79096| +860349 |V0349 Vir |142603.1-004130 |EA | 8.29 | 8.34 | 8.30 |V |48612.396 | | 2.12408 |06 |F3V |79003 DM | +860350 |V0350 Vir |113943.3+090809 |RRAB | 12.8 | 13.7 | |V |52658.8084 | | 0.65050 |18 | |80002 GSC | NL80_2 +860351 |V0351 Vir |113954.6-014205 |RRAB | 17.4 | 18.0 | |V |51610.6857 | | 0.702141 |20 | |80159 USNO | NL80_2 +860352 |V0352 Vir |114154.6-000740 |RRAB | 18.3 | 19.5 | |V |51612.6752 | | 0.520972 |15 | |80159 USNO | NL80_2 +860353 |V0353 Vir |114251.4-013036 |RRAB | 16.4 | 17.6 | |V |51611.7039 | | 0.522082 |13 | |80159 USNO | NL80_2 +860354 |V0354 Vir *|114332.2+024156 |RRAB | 12.4 | 13.3 | |V |52649.8561 | | 0.59503 |22 | |80001 GSC | NL80_2 +860355 |V0355 Vir |114925.1+052946 |BY: | 11.82 | 11.98 | |* | | | 0.65589 | | |80403 GSC | NL80_2 +860356 |V0356 Vir |115157.7-000607 |RRAB | 17.4 | 18.5 | |V |51610.7072 | | 0.520389 |12 | |80159 USNO | NL80_2 +860357 |V0357 Vir *|115534.3-003602 |RRAB | 16.3 | 17.1 | |V |51988.7370 | | 0.595804 |20 | |80159 USNO | NL80_2 +860358 |V0358 Vir |115651.6+082721 |RS | 11.25 | 11.55 | |V | | | 4.402 | |K |80034 GSC | NL80_2 +860359 |V0359 Vir |115707.0-005508 |RRAB | 17.4 | 18.2 | |V |51613.7201 | | 0.552628 |25 | |80159 USNO | NL80_2 +860360 |V0360 Vir |115724.2-005358 |RRAB | 17.9 | 18.8 | |V |51999.7292 | | 0.553252 |19 | |80159 USNO | NL80_2 +860361 |V0361 Vir |115934.7-015135 |RRAB | 18.5 | 19.4 | |V |52000.7031 | | 0.530780 |15 : | |80159 USNO | NL80_2 +860362 |V0362 Vir |115956.3-000004 |RRAB | 15.8 | 17.1 | |V |51572.8394 | | 0.471809 |10 | |80159 USNO | NL80_2 +860363 |V0363 Vir |120016.0+034308 |RRAB | 13.0 | 14.8 | |V |54528.804 | | 0.452432 |15 | |80001 GSC | NL80_2 +860364 |V0364 Vir |120044.4-004245 |RRAB | 15.9 | 17.0 | |V |51610.7184 | | 0.521190 |13 | |80159 USNO | NL80_2 +860365 |V0365 Vir |120051.7-015230 |RRAB | 17.2 | 18.2 | |V |51604.7878 | | 0.562656 |12 | |80159 USNO | NL80_2 +860366 |V0366 Vir |120135.4-001405 |RRC | 16.0 | 16.2 | |V |51571.8431 | | 0.401229 |43 | |80159 USNO | NL80_2 +860367 |V0367 Vir |120231.8-015345 |RRAB | 15.6 | 16.6 | |V |51582.7425 | | 0.570840 |10 | |80159 USNO | NL80_2 +860368 |V0368 Vir |120420.9-021042 |RRC | 16.2 | 16.7 | |V |51971.8366 | | 0.330611 |43 | |80159 USNO | NL80_2 +860369 |V0369 Vir |120451.0-002107 |RRAB | 16.8 | 17.3 | |V |51585.7894 | | 0.604369 |18 | |80159 USNO | NL80_2 +860370 |V0370 Vir |120604.1-021257 |RRAB | 14.7 | 15.6 | |V |52002.6285 | | 0.699282 |12 | |80159 USNO | NL80_2 +860371 |V0371 Vir |120730.9-000412 |RRAB | 16.9 | 17.7 | |V |51550.9021 | | 0.543971 |35 | |80159 USNO | NL80_2 +860372 |V0372 Vir |120738.7-004510 |RRC | 15.8 | 16.1 | |V |51646.7344 | | 0.401637 |50 : | |80159 USNO | NL80_2 +860373 |V0373 Vir |120800.4-011234 |RRC | 15.6 | 16.2 | |V |51260.7071 | | 0.307906 |32 | |80159 USNO | NL80_2 +860374 |V0374 Vir |120831.4-004718 |RRAB | 16.4 | 17.2 | |V |51620.7169 | | 0.593160 |14 | |80159 USNO | NL80_2 +860375 |V0375 Vir |120910.4-004759 |RRAB | 17.0 | 17.8 | |V |51992.7054 | | 0.638168 |16 | |80159 USNO | NL80_2 +860376 |V0376 Vir |120915.7-015444 |RRAB | 15.0 | 16.2 | |V |51550.8755 | | 0.504135 |20 | |80159 USNO | NL80_2 +860377 |V0377 Vir |120919.8-011047 |RRAB | 18.0 | 18.8 | |V |51588.7655 | | 0.622200 |16 | |80159 USNO | NL80_2 +860378 |V0378 Vir *|121132.0-015236 |RRC | 14.7 | 15.2 | |V |51614.7381 | | 0.366505 |37 | |80159 GSC | NL80_2 +860379 |V0379 Vir *|121209.3+013628 |NL | 17.9 |( 0.10 )| |R | | | | |DA+M: |80364 USNO | NL80_2 +860380 |V0380 Vir |121215.5-012113 |RRAB | 14.7 | 15.8 | |V |51617.8240 | | 0.466656 |20 | |80159 GSC | NL80_2 +860381 |V0381 Vir |121527.8-005257 |RRAB | 15.4 | 16.4 | |V |51550.9022 | | 0.522482 |13 | |80159 USNO | NL80_2 +860382 |V0382 Vir |121551.7-000555 |RRAB | 16.6 | 17.2 | |V |51994.6977 | | 0.623402 |22 | |80159 USNO | NL80_2 +860383 |V0383 Vir |121653.0+054126 |BY | 10.10 | 10.35 | |V | | | 14.26 | |K0 |80034 DM | NL80_2 +860384 |V0384 Vir |121823.3-015449 |RRAB | 17.7 | 18.7 | |V |51257.7636 | | 0.556233 |12 | |80159 USNO | NL80_2 +860385 |V0385 Vir *|121843.0-004239 |RRC | 16.9 | 17.4 | |V |51612.7292 | | 0.308849 |42 | |80159 USNO | NL80_2 +860386 |V0386 Vir |122120.7-012414 |RRAB | 17.2 | 18.1 | |V |51620.7288 | | 0.579122 |14 | |80159 USNO | NL80_2 +860387 |V0387 Vir |122221.5-012437 |RRC | 18.4 | 18.7 | |V |51617.8240 | | 0.499566 |55 | |80159 USNO | NL80_2 +860388 |V0388 Vir |122252.8+011751 |RRAB | 12.0 | 13.1 | |V |53883.6720 | | 0.542991 |10 | |80002 GSC | NL80_2 +860389 |V0389 Vir |122310.9-001658 |RRAB | 15.9 | 17.1 | |V |51610.6783 | | 0.501808 |19 | |80159 USNO | NL80_2 +860390 |V0390 Vir |122415.7-014914 |RRAB | 16.4 | 17.5 | |V |51643.7116 | | 0.515871 |25 | |80159 USNO | NL80_2 +860391 |V0391 Vir *|122418.4+035133 |EW | 13.0 | 13.7 | 13.6 |V |54588.5910 | | 0.354316 | | |80001 GSC | NL80_2 +860392 |V0392 Vir |122419.9-001339 |RRAB | 16.3 | 17.6 | |V |51255.6823 | | 0.480461 |17 | |80159 USNO | NL80_2 +860393 |V0393 Vir |122541.6-011152 |RRAB | 18.5 | 19.2 | |V |51260.6981 | | 0.606152 |14 | |80159 USNO | NL80_2 +860394 |V0394 Vir |122549.8+094546 |BY | 11.3 | 11.6 | |V | | | 7.718 | | |80034 GSC | NL80_2 +860395 |V0395 Vir |122627.4-005205 |RRAB | 18.3 | 18.9 | |V |51993.7336 | | 0.606857 |17 | |80159 USNO | NL80_2 +860396 |V0396 Vir |122743.3-005755 |RRAB | 16.4 | 17.6 | |V |51235.7526 | | 0.540232 |18 | |80159 USNO | NL80_2 +860397 |V0397 Vir |122748.2-005846 |RRAB | 16.0 | 17.1 | |V |51614.7330 | | 0.652196 |14 | |80159 USNO | NL80_2 +860398 |V0398 Vir |122803.9-011455 |RRC | 15.2 | 15.5 | |V |51260.7209 | | 0.395299 |33 | |80159 GSC | NL80_2 +860399 |V0399 Vir |122835.9-003840 |RRAB | 17.4 | 18.2 | |V |51606.8016 | | 0.703220 |17 | |80159 USNO | NL80_2 +860400 |V0400 Vir |122910.5-013400 |RRC | 15.0 | 15.3 | |V |51585.7908 | | 0.394192 |30 | |80159 GSC | NL80_2 +860401 |V0401 Vir |123017.9-001837 |SXPHE: | 17.3 | 17.6 | |V |51606.7992 | | 0.185701 | | |80159 USNO | NL80_2 +860402 |V0402 Vir |123133.3-002010 |RRAB | 16.6 | 17.3 | |V |51255.7038 | | 0.686504 |15 | |80159 USNO | NL80_2 +860403 |V0403 Vir |123142.9-013114 |RRC | 17.4 | 17.8 | |V |51571.8633 | | 0.329363 |43 | |80159 USNO | NL80_2 +860404 |V0404 Vir |123147.2-005304 |RRC | 16.3 | 16.7 | |V |51610.7319 | | 0.346878 |41 | |80159 USNO | NL80_2 +860405 |V0405 Vir |123453.5-001800 |RRAB | 15.8 | 16.7 | |V |51588.7894 | | 0.583475 |16 | |80159 GSC | NL80_2 +860406 |V0406 Vir *|123813.7-033933 |NL | 17.12 | 18.0 | |V | | | | |DA3e |80402 2MASS| NL80_2 +860407 |V0407 Vir |123949.5-000006 |RRAB | 16.5 | 17.5 | |V |51993.7246 | | 0.617153 |11 | |80159 USNO | NL80_2 +860408 |V0408 Vir |124003.5-000410 |RRAB | 16.5 | 17.2 | |V |51983.7579 | | 0.585879 |12 | |80159 USNO | NL80_2 +860409 |V0409 Vir |124032.9-000313 |SXPHE: | 17.1 | 17.4 | |V |51245.7713 | | 0.164164 |40 : | |80159 USNO | NL80_2 +860410 |V0410 Vir |124211.2-013340 |RRC | 16.2 | 16.7 | |V |51235.7597 | | 0.330680 |40 | |80159 USNO | NL80_2 +860411 |V0411 Vir |124224.9-001203 |RRC | 14.4 | 14.8 | |V |51257.7913 | | 0.361027 |50 | |80159 GSC | NL80_2 +860412 |V0412 Vir |124350.6-012821 |RRAB | 17.3 | 17.9 | |V |52002.6715 | | 0.649159 |20 | |80159 USNO | NL80_2 +860413 |V0413 Vir |124407.1-005649 |RRC | 16.1 | 16.4 | |V |51617.8389 | | 0.394457 |23 | |80159 USNO | NL80_2 +860414 |V0414 Vir *|124450.1-005040 |RRC | 14.7 | 15.1 | |V |51643.7233 | | 0.247874 |50 | |80159 GSC | NL80_2 +860415 |V0415 Vir *|124501.6+075705 |EW | 10.10 | 10.34 | 10.32 |V |53133.62 | | 0.373705 | |G0 |80002 80372| NL80_2 +860416 |V0416 Vir |124544.5-015327 |RRAB | 18.7 | 19.5 | |V |51618.8402 | | 0.587824 |20 | |80159 USNO | NL80_2 +860417 |V0417 Vir |124614.8-010312 |RRAB | 15.8 | 16.9 | |V |51643.7321 | | 0.521320 |12 | |80159 USNO | NL80_2 +860418 |V0418 Vir |124648.1-020719 |RRAB | 14.9 | 15.9 | |V |51620.7461 | | 0.612285 |13 | |80159 USNO | NL80_2 +860419 |V0419 Vir *|124804.5-082047 |RRAB | 11.7 | 12.8 | |V |52728.7022 | | 0.5105287 |20 | |80377 GSC | NL80_2 +860420 |V0420 Vir |124905.7-021658 |RRAB | 18.9 | 19.7 | |V |51614.6975 | | 0.553310 |12 : | |80159 USNO | NL80_2 +860421 |V0421 Vir |124914.6-004926 |RRC | 16.6 | 17.2 | |V |51617.8424 | | 0.482846 |35 | |80159 USNO | NL80_2 +860422 |V0422 Vir |125102.3-004513 |RRAB | 16.3 | 17.4 | |V |51245.7837 | | 0.523823 |15 | |80159 USNO | NL80_2 +860423 |V0423 Vir |125205.4-020007 |RRAB | 16.2 | 17.0 | |V |51611.7310 | | 0.558223 |12 | |80159 USNO | NL80_2 +860424 |V0424 Vir |125208.7-002932 |RRAB | 15.1 | 15.9 | |V |52000.7208 | | 0.562467 |16 | |80159 GSC | NL80_2 +860425 |V0425 Vir |125241.7-015409 |RRAB | 18.6 | 19.6 | |V |51993.6571 | | 0.587722 |08 | |80159 USNO | NL80_2 +860426 |V0426 Vir |125244.6-002513 |RRC | 15.3 | 15.8 | |V |51606.8145 | | 0.400088 |39 | |80159 GSC | NL80_2 +860427 |V0427 Vir |125332.5-020830 |RRAB | 13.4 | 14.5 | |V |53882.6002 | | 0.543911 |15 | |80002 GSC | NL80_2 +860428 |V0428 Vir |125502.0-020255 |RRAB | 16.0 | 17.1 | |V |51618.8629 | | 0.551521 |12 | |80159 USNO | NL80_2 +860429 |V0429 Vir |125506.0-000543 |RRAB | 15.4 | 16.5 | |V |51574.9107 | | 0.562475 |13 | |80159 USNO | NL80_2 +860430 |V0430 Vir |125558.9+075711 |RS | 11.03 | 11.2 | |* | | | 9.4260 | | |80375 80375| NL80_2 +860431 |V0431 Vir |125600.9-001450 |RRAB | 16.6 | 17.0 | |V |51260.6822 | | 0.644941 |24 | |80159 USNO | NL80_2 +860432 |V0432 Vir |125610.6-111742 |RRAB | 12.2 | 13.0 | |V |53821.7439 | | 0.597145 |20 | |80001 GSC | NL80_2 +860433 |V0433 Vir |125643.9-010150 |RRAB | 15.7 | 16.4 | |V |51610.7489 | | 0.588606 |14 | |80159 USNO | NL80_2 +860434 |V0434 Vir |125717.9-011258 |RRAB | 17.1 | 17.8 | |V |51611.7740 | | 0.594497 |14 | |80159 USNO | NL80_2 +860435 |V0435 Vir |125757.8-005857 |RRAB | 16.6 | 17.4 | |V |51571.8874 | | 0.646143 |13 | |80159 USNO | NL80_2 +860436 |V0436 Vir |125803.1-020034 |RRAB | 16.2 | 17.1 | |V |51991.7780 | | 0.680374 |11 | |80159 USNO | NL80_2 +860437 |V0437 Vir |125804.4+095044 |RRAB | 13.1 | 14.4 | |V |54588.7501 | | 0.541666 |13 | |80002 GSC | NL80_2 +860438 |V0438 Vir |125827.2-033607 |RRAB | 13.99 | 15.18 | |* |51332.76 | | 0.90617 | | |80026 GSC | NL80_2 +860439 |V0439 Vir *|130110.5+010740 |ZZA | 16.26 |( 0.15 *)| |V | | | 0.0086 | |DA |80376 2MASS| NL80_2 +860440 |V0440 Vir |130140.6-002054 |RRAB | 18.2 | 19.2 | |V |51257.8099 | | 0.54817 |11 | |80159 USNO | NL80_2 +860441 |V0441 Vir |130245.9-020351 |RRAB | 18.5 | 19.3 | |V |51984.7593 | | 0.679619 |20 : | |80159 USNO | NL80_2 +860442 |V0442 Vir |130252.2-013804 |RRAB | 17.2 | 17.8 | |V |51611.7519 | | 0.664569 |20 | |80159 USNO | NL80_2 +860443 |V0443 Vir |130313.6-012222 |RRC | 14.5 | 14.8 | |V |51253.7024 | | 0.219039 |40 : | |80159 GSC | NL80_2 +860444 |V0444 Vir |130349.6-004420 |RRAB | 18.8 | 19.3 | |V |51618.7204 | | 0.828843 |20 | |80159 USNO | NL80_2 +860445 |V0445 Vir |130529.1+124936 |RS | 10.04 | 10.24 | |V | | | 3.6866 | |G5 |80001 DM | NL80_2 +860446 |V0446 Vir |130536.4-004825 |RRAB | 17.6 | 18.3 | |V |51609.8229 | | 0.608895 |20 | |80159 USNO | NL80_2 +860447 |V0447 Vir |130648.5-011753 |RRAB | 19.0 | 19.8 | |V |51609.8087 | | 0.601572 |13 | |80159 USNO | NL80_2 +860448 |V0448 Vir |130855.3-015852 |RRAB | 17.9 | 19.0 | |V |51587.8206 | | 0.646063 |12 | |80159 USNO | NL80_2 +860449 |V0449 Vir |130921.7-004308 |RRAB | 16.0 | 16.6 | |V |51618.8665 | | 0.657447 |18 | |80159 USNO | NL80_2 +860450 |V0450 Vir |131020.9-004457 |RRAB | 18.4 | 19.4 | |V |51613.7850 | | 0.625508 |10 | |80159 USNO | NL80_2 +860451 |V0451 Vir |131050.3-012421 |RRAB | 16.9 | 17.8 | |V |51983.8560 | | 0.542893 |20 : | |80159 USNO | NL80_2 +860452 |V0452 Vir |131114.5+110929 |RRAB | 13.0 | 14.3 | |V |54246.774 | | 0.536272 |20 | |80002 GSC | NL80_2 +860453 |V0453 Vir |131115.7-002900 |RRAB | 16.2 | 17.2 | |V |51610.7588 | | 0.536999 |17 | |80159 USNO | NL80_2 +860454 |V0454 Vir |131117.1-015534 |RRAB | 18.8 | 19.7 | |V |51582.7607 | | 0.645542 |10 | |80159 G2.3 | NL80_2 +860455 |V0455 Vir |131150.9-020949 |RRC | 13.4 | 13.9 | |V |51997.8182 | | 0.406874 |50 | |80159 GSC | NL80_2 +860456 |V0456 Vir |131152.4-002233 |RRAB | 18.2 | 19.3 | |V |51618.6857 | | 0.569381 |12 | |80159 G2.3 | NL80_2 +860457 |V0457 Vir |131253.6+082336 |RS | 8.42 | 8.54 | |V | | | 9.870 | |G5 |80034 HIP | NL80_2 +860458 |V0458 Vir |131316.0-004011 |RRAB | 16.8 | 17.5 | |V |51574.8729 | | 0.692669 |18 | |80159 USNO | NL80_2 +860459 |V0459 Vir |131322.7-020529 |SXPHE: | 13.8 | 14.1 | |V |51609.8312 | | 0.187105 |50 : | |80159 GSC | NL80_2 +860460 |V0460 Vir |131341.1-000110 |RRAB | 17.4 | 18.6 | |V |51621.7947 | | 0.504324 |13 | |80159 USNO | NL80_2 +860461 |V0461 Vir *|131438.0-002039 |SXPHE: | 18.2 | 18.6 | |V |51618.8570 | | 0.181087 | | |80159 USNO | NL80_2 +860462 |V0462 Vir |131609.6-004417 |RRAB | 16.4 | 17.6 | |V |51618.8580 | | 0.520397 |20 | |80159 USNO | NL80_2 +860463 |V0463 Vir |131655.7-004915 |RRAB | 18.4 | 19.4 | |V |51586.8165 | | 0.579373 |20 | |80159 USNO | NL80_2 +860464 |V0464 Vir |131717.8-003558 |RRAB | 18.7 | 19.1 | |V |51643.7265 | | 0.643985 |30 | |80159 USNO | NL80_2 +860465 |V0465 Vir |131741.1-001525 |RRAB | 16.7 | 17.8 | |V |51235.7479 | | 0.479119 |15 | |80159 USNO | NL80_2 +860466 |V0466 Vir |131757.5-000819 |RRAB | 16.4 | 17.5 | |V |51997.8199 | | 0.522711 |10 | |80159 USNO | NL80_2 +860467 |V0467 Vir *|132244.8-060207 |EW | 9.28 | 9.72 | 9.69 |V |53869.7215 | | 0.604568 | |F0 |80002 DM | NL80_2 +860468 |V0468 Vir |132308.9-014916 |RRAB | 18.9 | 19.8 | |V |51999.8080 | | 0.588145 |20 | |80159 USNO | NL80_2 +860469 |V0469 Vir |132315.8-012016 |RRAB | 14.7 | 15.5 | |V |51586.8151 | | 0.571205 |13 | |80159 GSC | NL80_2 +860470 |V0470 Vir |132405.4-020527 |RRAB | 15.7 | 16.8 | |V |51585.8186 | | 0.613905 |12 | |80159 USNO | NL80_2 +860471 |V0471 Vir |132624.9-002612 |RRAB | 16.4 | 17.2 | |V |51983.7191 | | 0.505769 |20 : | |80159 USNO | NL80_2 +860472 |V0472 Vir |132700.1-005457 |RRAB | 14.4 | 15.4 | |V |51606.8434 | | 0.561392 |14 | |80159 GSC | NL80_2 +860473 |V0473 Vir |132712.6-011630 |RRAB | 14.7 | 15.2 | |V |51971.8809 | | 0.610620 |17 | |80159 GSC | NL80_2 +860474 |V0474 Vir |132727.9-004959 |RRAB | 18.7 | 19.5 | |V |51993.7487 | | 0.577490 |10 | |80159 USNO | NL80_2 +860475 |V0475 Vir |132752.5-020113 |RRAB | 18.2 | 19.6 | |V |51580.8916 | | 0.507048 |15 | |80159 G2.3 | NL80_2 +860476 |V0476 Vir *|132922.5-055259 |RRAB | 11.2 | 12.1 | |V |55014.4814 | | 0.576341 |20 | |80001 GSC | NL80_2 +860477 |V0477 Vir |133102.4-020839 |RRAB | 18.6 | 19.8 | |V |52000.7850 | | 0.531307 |13 | |80159 USNO | NL80_2 +860478 |V0478 Vir |133323.5-001200 |RRAB | 17.1 | 17.9 | |V |51228.8276 | | 0.594923 |18 | |80159 USNO | NL80_2 +860479 |V0479 Vir |133330.5-004453 |RRAB | 17.9 | 18.3 | |V |51579.8909 | | 0.646523 |20 | |80159 USNO | NL80_2 +860480 |V0480 Vir |133417.5-015828 |RRC | 16.7 | 17.3 | |V |51609.8454 | | 0.330006 |30 | |80159 USNO | NL80_2 +860481 |V0481 Vir |133551.9-015039 |RRAB | 18.3 | 19.6 | |V |51618.7127 | | 0.518079 |12 | |80159 USNO | NL80_2 +860482 |V0482 Vir |133552.2-003707 |RRAB | 14.7 | 15.6 | |V |51984.8124 | | 0.548149 |14 | |80159 GSC | NL80_2 +860483 |V0483 Vir |133610.6-031411 |RRAB | 13.2 | 14.4 | |V |54844.87 | | 0.541914 |25 | |80001 GSC | NL80_2 +860484 |V0484 Vir |133719.2-001621 |RRAB | 18.5 | 19.7 | |V |51586.8279 | | 0.543274 |15 | |80159 USNO | NL80_2 +860485 |V0485 Vir |133748.9-005647 |RRAB | 18.7 | 19.6 | |V |51574.9476 | | 0.555692 |19 | |80159 USNO | NL80_2 +860486 |V0486 Vir |133848.9-000954 |RRC | 12.7 | 13.2 | |V |53219.51 | | 0.357759 |45 | |80001 GSC | NL80_2 +860487 |V0487 Vir |133933.3+000155 |RRAB | 18.6 | 19.4 | |V |51578.8886 | | 0.692124 |15 | |80159 USNO | NL80_2 +860488 |V0488 Vir |134031.3-004112 |RRAB | 18.7 | 19.8 | |V |52000.8103 | | 0.555246 |12 | |80159 USNO | NL80_2 +860489 |V0489 Vir |134117.4-012140 |RRAB | 18.0 | 19.3 | |V |51621.8350 | | 0.589267 |13 | |80159 USNO | NL80_2 +860490 |V0490 Vir |134213.0-020927 |RRAB | 17.8 | 18.8 | |V |51621.6911 | | 0.565540 |10 | |80159 USNO | NL80_2 +860491 |V0491 Vir |134326.8-004014 |RRAB | 16.4 | 17.3 | |V |51993.7588 | | 0.636120 |12 | |80159 USNO | NL80_2 +860492 |V0492 Vir *|134414.3-004007 |RRC | 14.9 | 15.3 | |V |51612.7875 | | 0.289064 |35 | |80159 GSC | NL80_2 +860493 |V0493 Vir |134431.3-003703 |RRAB | 15.6 | 16.9 | |V |51235.8098 | | 0.527515 |13 | |80159 USNO | NL80_2 +860494 |V0494 Vir |134521.3-000147 |RRAB | 13.8 | 14.6 | |V |51610.7573 | | 0.547209 |13 | |80159 GSC | NL80_2 +860495 |V0495 Vir |134540.8-001119 |RRAB | 18.9 | 19.8 | |V |51578.8926 | | 0.697388 |15 | |80159 USNO | NL80_2 +860496 |V0496 Vir |134546.9-001200 |RRAB | 16.7 | 17.9 | |V |51609.8506 | | 0.525972 |20 | |80159 USNO | NL80_2 +860497 |V0497 Vir |134619.1-013711 |RRAB | 18.4 | 19.4 | |V |51258.8641 | | 0.541174 |10 | |80159 USNO | NL80_2 +860498 |V0498 Vir |134654.4-030735 |RRAB | 14.28 | 15.49 | |* |51334.79 | | 0.50725 | | |80026 GSC | NL80_2 +860499 |V0499 Vir |134729.3-121240 |RRAB | 13.46 | 14.97 | |* |51278.78 | | 0.54211 |12 | |80026 GSC | NL80_2 +860500 |V0500 Vir |134855.4-013656 |RRAB | 16.0 | 17.0 | |V |51993.7415 | | 0.554555 |15 | |80159 USNO | NL80_2 +860501 |V0501 Vir |134947.5-020649 |RRC | 18.1 | 18.7 | |V |51621.8319 | | 0.258187 |50 | |80159 USNO | NL80_2 +860502 |V0502 Vir |135007.5-005638 |RRAB | 18.4 | 19.1 | |V |51235.8215 | | 0.633181 |20 | |80159 USNO | NL80_2 +860503 |V0503 Vir *|135048.7+013319 |EW | 15.00 | 16.17 | 16.10 |R |52419.578 | | 0.2564941 | | |80388 80388| NL80_2 +860504 |V0504 Vir |135156.3-005314 |RRAB | 18.6 | 19.5 | |V |51984.8053 | | 0.634348 |20 : | |80159 USNO | NL80_2 +860505 |V0505 Vir |135225.1-001726 |RRAB | 18.7 | 19.5 | |V |51585.8380 | | 0.590404 |13 | |80159 USNO | NL80_2 +860506 |V0506 Vir |135234.7-011515 |RRAB | 18.8 | 19.7 | |V |51614.7947 | | 0.618520 |17 | |80159 USNO | NL80_2 +860507 |V0507 Vir |135244.5-021829 |RRAB | 13.4 | 14.6 | |V |51916.7 | | 0.575493 |20 | |80002 GSC | NL80_2 +860508 |V0508 Vir |135342.5-001709 |RRAB | 19.3 | 20.3 | |V |51579.9155 | | 0.550159 | | |80159 USNO | NL80_2 +860509 |V0509 Vir |135500.9-005954 |RRAB | 17.0 | 18.1 | |V |51586.8600 | | 0.484006 |08 | |80159 USNO | NL80_2 +860510 |V0510 Vir |135547.2-020041 |RRAB | 17.5 | 18.3 | |V |51338.6477 | | 0.607939 |16 | |80159 USNO | NL80_2 +860511 |V0511 Vir |135556.5-004836 |RRAB | 18.5 | 19.4 | |V |51643.7725 | | 0.582935 |20 | |80159 USNO | NL80_2 +860512 |V0512 Vir |135700.0-013426 |RRAB | 18.8 | 19.6 | |V |51614.8296 | | 0.650135 |22 | |80159 USNO | NL80_2 +860513 |V0513 Vir |135701.3-020523 |RRAB | 15.7 | 16.3 | |V |51606.8581 | | 0.614418 |17 | |80159 USNO | NL80_2 +860514 |V0514 Vir |135800.7-020831 |RRAB | 18.6 | 19.7 | |V |51580.9123 | | 0.561455 |18 | |80159 USNO | NL80_2 +860515 |V0515 Vir |135821.1-013649 |RRAB | 18.5 | 19.7 | |V |51983.8019 | | 0.494135 |20 | |80159 USNO | NL80_2 +860516 |V0516 Vir |135824.0-002819 |RRAB | 18.8 | 19.4 | |V |51612.7783 | | 0.625804 |20 | |80159 USNO | NL80_2 +860517 |V0517 Vir |135850.3-022423 |RRAB | 13.2 | 14.6 | |V |52692.8608 | | 0.440612 |10 | |80002 GSC | NL80_2 +860518 |V0518 Vir |135955.4-002627 |RRAB | 18.7 | 19.5 | |V |51609.8337 | | 0.582415 |20 | |80159 USNO | NL80_2 +860519 |V0519 Vir |140121.4-012421 |RRAB | 18.8 | 19.8 | |V |51983.8874 | | 0.578308 |19 | |80159 USNO | NL80_2 +860520 |V0520 Vir |140407.0+022415 |RRAB | 13.3 | 14.5 | |V |54543.8150 | | 0.564202 |15 | |80002 GSC | NL80_2 +860521 |V0521 Vir |140638.1-015032 |RRAB | 13.9 | 15.1 | |V |51255.7667 | | 0.483728 |12 | |80159 GSC | NL80_2 +860522 |V0522 Vir |140720.9-013116 |RRAB | 18.7 | 19.3 | |V |51587.8104 | | 0.617416 |17 | |80159 USNO | NL80_2 +860523 |V0523 Vir |140744.2-015754 |RRC | 17.2 | 17.8 | |V |51611.8158 | | 0.348144 |30 | |80159 USNO | NL80_2 +860524 |V0524 Vir |140830.0-003751 |RRAB | 18.0 | 19.3 | |V |51582.8217 | | 0.524476 |12 | |80159 USNO | NL80_2 +860525 |V0525 Vir |140847.9-001343 |RRAB | 18.7 | 19.9 | |V |51621.8561 | | 0.563816 |15 | |80159 USNO | NL80_2 +860526 |V0526 Vir |140849.8-000422 |RRAB | 18.7 | 19.8 | |V |51610.7857 | | 0.605442 | | |80159 USNO | NL80_2 +860527 |V0527 Vir |140944.1-013214 |RRAB | 16.2 | 17.2 | |V |51580.8825 | | 0.582715 |18 | |80159 USNO | NL80_2 +860528 |V0528 Vir |141006.8-053159 |RRAB | 12.9 | 14.2 | |V |54286.5540 | | 0.558083 |15 | |80002 GSC | NL80_2 +860529 |V0529 Vir |141030.5-005041 |RRC | 16.8 | 17.2 | |V |51611.8177 | | 0.340109 |42 | |80159 USNO | NL80_2 +860530 |V0530 Vir |141049.8-021406 |RRAB | 18.6 | 19.9 | |V |51613.8488 | | 0.474892 |15 | |80159 USNO | NL80_2 +860531 |V0531 Vir |141100.0-002916 |RRAB | 18.3 | 19.8 | |V |51988.8122 | | 0.517950 |20 | |80159 USNO | NL80_2 +860532 |V0532 Vir |141208.2-015210 |RRC | 16.0 | 16.3 | |V |51606.8683 | | 0.229430 |50 | |80159 USNO | NL80_2 +860533 |V0533 Vir *|141238.6-005351 |RRC: | 15.0 | 15.4 | |V |51580.9165 | | 0.229537 |53 | |80159 USNO | NL80_2 +860534 |V0534 Vir |141259.4-001321 |RRAB | 18.7 | 19.4 | |V |51587.8157 | | 0.746952 |14 | |80159 USNO | NL80_2 +860535 |V0535 Vir |141421.8-011526 |RRAB | 14.6 | 15.6 | |V |51999.7760 | | 0.609243 |12 | |80159 USNO | NL80_2 +860536 |V0536 Vir |141513.5-005303 |RRAB | 19.0 | 20.0 | |V |52000.8427 | | 0.566250 |12 | |80159 USNO | NL80_2 +860537 |V0537 Vir |141543.4-000613 |RRAB | 16.3 | 17.3 | |V |51612.8202 | | 0.572632 |13 | |80159 USNO | NL80_2 +860538 |V0538 Vir |141632.6-012900 |RRAB | 18.9 | 20.0 | |V |51582.8270 | | 0.572199 | | |80159 USNO | NL80_2 +860539 |V0539 Vir |141712.5-015328 |RRAB | 18.7 | 19.7 | |V |51611.8112 | | 0.551050 |20 | |80159 USNO | NL80_2 +860540 |V0540 Vir |141730.6-101806 |RRAB | 13.6 | 14.8 : | |V |52456.50 | | 0.569204 | | |80001 GSC | NL80_2 +860541 |V0541 Vir |141822.3-001506 |RRAB | 18.8 | 19.8 | |V |51255.7414 | | 0.630789 | | |80159 USNO | NL80_2 +860542 |V0542 Vir |141841.5-001756 |RRAB | 18.6 | 19.8 | |V |51338.6783 | | 0.569742 |17 | |80159 USNO | NL80_2 +860543 |V0543 Vir |141858.0-002643 |RRAB | 17.5 | 18.7 | |V |51612.7886 | | 0.559357 |12 | |80159 USNO | NL80_2 +860544 |V0544 Vir |141909.5-002443 |RRAB | 18.9 | 19.8 | |V |52000.8128 | | 0.614129 |16 | |80159 USNO | NL80_2 +860545 |V0545 Vir |141934.1-005509 |RRAB | 18.5 | 19.7 | |V |51613.8586 | | 0.551713 |12 | |80159 USNO | NL80_2 +860546 |V0546 Vir *|141940.6+055403 |EW | 10.37 | 10.50 | 10.48 |V |52767.3482 | | 0.56717 | | |80396 80396| NL80_2 +860547 |V0547 Vir |141952.3-062304 |RRAB | 13.4 | 14.8 | |V |52411.575 | | 0.492750 |15 | |80397 80397| NL80_2 +860548 |V0548 Vir |142006.5-010104 |RRAB | 19.2 | 20.2 | |V |51338.6598 | | 0.545176 |15 | |80159 USNO | NL80_2 +860549 |V0549 Vir |142200.0-010107 |RRAB | 15.0 | 15.9 | |V |51994.8212 | | 0.591196 |13 | |80159 GSC | NL80_2 +860550 |V0550 Vir |142257.4-002922 |RRAB | 18.4 | 19.3 | |V |51586.8476 | | 0.474888 |20 | |80159 USNO | NL80_2 +860551 |V0551 Vir *|142305.6+015401 |RRAB | 12.7 | 13.8 | |V |51304.92 | | 0.44692 |24 | |80026 GSC | NL80_2 +860552 |V0552 Vir |142410.7-004756 |RRAB | 18.5 | 19.2 | |V |51619.9125 | | 0.720620 |20 | |80159 USNO | NL80_2 +860553 |V0553 Vir |142433.5-004734 |RRAB | 18.8 | 19.7 | |V |51984.8318 | | 0.683912 |20 | |80159 USNO | NL80_2 +860554 |V0554 Vir |142454.9-001950 |RRAB | 15.5 | 16.4 | |V |51997.8310 | | 0.531839 |14 | |80159 USNO | NL80_2 +860555 |V0555 Vir |142513.9-020038 |RRAB | 18.8 | 19.8 | |V |51618.9049 | | 0.582240 |13 | |80159 USNO | NL80_2 +860556 |V0556 Vir |142605.7-004526 |RRAB | 18.5 | 19.7 | |V |51611.8311 | | 0.575186 |12 | |80159 USNO | NL80_2 +860557 |V0557 Vir |142641.8-013115 |RRAB | 18.3 | 18.9 | |V |51228.8888 | | 0.864182 |20 | |80159 USNO | NL80_2 +860558 |V0558 Vir |142701.6-012310 |AM: | 15.1 | 20.4 | |R | | | | |pec(e) |80400 SDSS | NL80_2 +860559 |V0559 Vir |142807.2-000342 |RRAB | 18.7 | 19.7 | |V |51582.8073 | | 0.550262 |14 | |80159 USNO | NL80_2 +860560 |V0560 Vir |142808.9-001148 |RRAB | 15.7 | 16.8 | |V |51235.8039 | | 0.548407 |15 | |80159 USNO | NL80_2 +860561 |V0561 Vir |142840.6-012800 |RRAB | 15.1 | 16.2 | |V |51587.8132 | | 0.550276 | | |80159 USNO | NL80_2 +860562 |V0562 Vir |142852.6-000521 |SXPHE: | 14.0 | 14.4 | |V |51582.8353 | | 0.165036 |45 | |80159 GSC | NL80_2 +860563 |V0563 Vir |142949.9-011548 |RRAB | 18.6 | 19.4 | |V |51994.8177 | | 0.613375 |17 | |80159 USNO | NL80_2 +860564 |V0564 Vir |143032.3-000329 |RRAB | 18.0 | 19.2 | |V |51618.7449 | | 0.571281 |14 | |80159 USNO | NL80_2 +860565 |V0565 Vir |143049.1-012216 |RRAB | 18.6 | 19.7 | |V |51586.8770 | | 0.507005 |10 | |80159 USNO | NL80_2 +860566 |V0566 Vir |143138.7-012959 |RRAB | 19.2 | 19.8 | |V |52002.7044 | | 0.628272 |18 | |80159 USNO | NL80_2 +860567 |V0567 Vir |143140.8-005324 |RRAB | 18.5 | 19.8 | |V |51228.8840 | | 0.496878 | | |80159 USNO | NL80_2 +860568 |V0568 Vir |143212.4-021145 |RRAB | 17.2 | 18.3 | |V |51617.9124 | | 0.536904 |15 | |80159 USNO | NL80_2 +860569 |V0569 Vir |143312.9-000734 |RRAB | 18.8 | 19.9 | |V |51618.7494 | | 0.552890 |18 | |80159 USNO | NL80_2 +860570 |V0570 Vir |143403.0-001252 |RRAB | 18.6 | 19.7 | |V |52002.7517 | | 0.569667 |17 | |80159 USNO | NL80_2 +860571 |V0571 Vir |143411.5-015448 |RRAB | 14.4 | 15.3 | |V |51621.7232 | | 0.581796 |12 | |80159 GSC | NL80_2 +860572 |V0572 Vir |143423.4-005816 |RRAB | 18.9 | 19.7 | |V |51582.8256 | | 0.534545 | | |80159 USNO | NL80_2 +860573 |V0573 Vir |143428.0-003937 |RRAB | 17.5 | 18.8 | |V |52002.7113 | | 0.587958 |12 | |80159 G2.3 | NL80_2 +860574 |V0574 Vir |143430.5-081833 |RRAB | 13.0 | 14.4 | |V |54491.85 | | 0.47439 |25 | |80001 GSC | NL80_2 +860575 |V0575 Vir |143443.6-011309 |RRAB | 18.7 | 19.6 | |V |51614.8263 | | 0.619775 |23 | |80159 USNO | NL80_2 +860576 |V0576 Vir |143453.4-003901 |RRAB | 18.9 | 19.8 | |V |51619.9032 | | 0.583035 |14 | |80159 USNO | NL80_2 +860577 |V0577 Vir |143517.0-005933 |LB | 10.53 | 10.85 | |V | | | | |M2 |80001 DM | NL80_2 +860578 |V0578 Vir |143517.6-012459 |RRAB | 18.6 | 19.8 | |V |51999.8413 | | 0.536134 |15 | |80159 USNO | NL80_2 +860579 |V0579 Vir |143604.5-013731 |RRAB | 18.7 | 19.9 | |V |51991.8427 | | 0.560391 |13 | |80159 G2.3 | NL80_2 +860580 |V0580 Vir |143700.9-004422 |RRAB | 18.6 | 19.5 | |V |51258.8037 | | 0.636350 |22 | |80159 USNO | NL80_2 +860581 |V0581 Vir |143701.0-011516 |RRAB | 18.7 | 19.8 | |V |51588.8632 | | 0.473274 |13 | |80159 USNO | NL80_2 +860582 |V0582 Vir |143713.9+024620 |RRAB | 14.26 | 15.47 | |* |51356.72 | | 0.60405 | | |80026 GSC | NL80_2 +860583 |V0583 Vir |143802.8-012823 |RRAB | 18.8 | 19.7 | |V |51614.8406 | | 0.562992 |15 | |80159 USNO | NL80_2 +860584 |V0584 Vir |143926.9-012342 |RRAB | 18.4 | 19.7 | |V |51618.9172 | | 0.531879 |13 | |80159 USNO | NL80_2 +860585 |V0585 Vir *|143927.4-032737 |RRAB | 12.1 | 12.9 | |V |54298.543 | | 0.601615 |13 | |80001 GSC | NL80_2 +860586 |V0586 Vir |143947.5-040805 |RRAB | 12.4 | 13.7 | |V |54292.54 | | 0.682772 |15 | |80001 GSC | NL80_2 +860587 |V0587 Vir |144027.9-001039 |RRAB | 18.8 | 19.6 | |V |51998.8447 | | 0.569986 | | |80159 USNO | NL80_2 +860588 |V0588 Vir |144052.8-030853 |R | 14.0 |( 0.05 )| |R | | | | |sdB+dM |80302 80204| NL80_2 +860589 |V0589 Vir *|144125.7+033900 |EW | 13.76 | 14.25 | 14.20 |* |52788.307 | | 0.2598830 | | |80005 80005| NL80_2 +860590 |V0590 Vir |144209.7-001033 |RRAB | 17.9 | 19.0 | |V |51621.7594 | | 0.653437 |10 | |80159 USNO | NL80_2 +860591 |V0591 Vir *|144212.6+032414 |EW | 11.97 | 12.38 | 12.38 |* |52766.289 | | 0.350954 | | |80005 80005| NL80_2 +860592 |V0592 Vir |144427.8-005806 |RRAB | 18.7 | 19.5 | |V |51588.8360 | | 0.713383 | | |80159 USNO | NL80_2 +860593 |V0593 Vir *|144430.1-012826 |RRC: | 15.2 | 15.6 | |V |51612.8282 | | 0.228947 |42 | |80159 USNO | NL80_2 +860594 |V0594 Vir *|144515.0+000249 |RPHS | 17.41 |( 0.04 *)| |V | | | 0.00138 | |sdB |80398 USNO | NL80_2 +860595 |V0595 Vir |144550.2-021350 |RRAB | 18.6 | 20.1 | |V |51236.8331 | | 0.502380 |15 | |80159 USNO | NL80_2 +860596 |V0596 Vir |144623.9-000657 |RRC | 14.8 | 15.3 | |V |51235.8436 | | 0.325591 |36 | |80159 GSC | NL80_2 +860597 |V0597 Vir |144720.4-000102 |RRAB | 17.4 | 17.9 | |V |51618.7341 | | 0.768588 |23 | |80159 USNO | NL80_2 +860598 |V0598 Vir |144939.6-002944 |RRAB | 16.8 | 17.6 | |V |52000.8263 | | 0.735558 |30 | |80159 USNO | NL80_2 +860599 |V0599 Vir |145327.4-002527 |RRAB | 18.9 | 19.8 | |V |51994.8273 | | 0.643965 |18 | |80159 USNO | NL80_2 +860600 |V0600 Vir |145527.3+061452 |RRAB | 14.04 | 15.16 | |* |51608.89 | | 0.47199 | | |80026 GSC | NL80_2 +860601 |V0601 Vir |150013.9+064442 |BY | 11.7 | 11.9 | |* | | | 12.5002 | | |80067 GSC | NL80_2 +860602 |V0602 Vir |150410.0+042143 |RRAB | 14.23 | 15.17 | |* |51390.70 | | 0.53028 | | |80026 GSC | NL80_2 +860603 |V0603 Vir |150542.9+000111 |RRAB | 18.8 | 19.6 | |V |51585.9025 | | 0.656697 | | |80159 G2.3 | NL80_2 +860604 |V0604 Vir |150612.7+025457 |RRAB | 12.4 | 13.7 | |V |53032.8682 | | 0.49580 |12 | |80001 GSC | NL80_2 +860605 |V0605 Vir |150817.3+030343 |RRAB | 13.99 | 14.85 | |* |51601.89 | | 0.58343 | | |80026 GSC | NL80_2 +869001 |alf Vir *|132511.6-110941 |ELL+BCEP | 0.95 |( 0.10 )|( 0.08 )|V |19530.49 | | 4.014604 | |B1III-IV+B2V |04627 BD | +869013 |nu. Vir |114551.6+063146 |SRB | 4.10 | 4.16 | |Hp| | | | | |HIP HIP | +869017 |rho Vir |124153.1+101408 |DSCTC | 4.88 |( 0.02 )| |V | | | | | |67385 BD | +869023 |psi Vir *|125421.2-093220 |LB | 4.73 | 4.96 | |V | | | | |M3III |05055 BD | +869024 |ome Vir |113827.6+080804 |LB | 5.23 | 5.50 | |V | | | | |M4III | BD | +870001 |R Vol *|070536.2-730052 |M | 8.7 | 13.9 | |V |42279. | | 453.60 |48 |C(N)e |00001 00002| +870002 |S Vol *|072945.6-732244 |M | 7.7 | 13.9 | |V |41940. | | 394.8 |54 |M4e |00001 00002| +870003 |T Vol *|065747.9-670726 |M | 9.7 |< 13.9 | |p |40947. | | 175.0 |47 |M5II-IIIe |00001 05625| +870004 |U Vol |070022.8-661301 |EA: | 10.2 | 11.5 | |p | | | | | |00016 05625| +870005 |V Vol |074252.5-660556 |M | 10.5 |< 13.3 | |p |28900. | | 237.5 | |Me |00001 UCAC2| +870006 |W Vol |073740.0-693232 |EA/AR: | 10.9 | 11.8 | |p |16846.411 | | 2.758361 |17 *|K/M |00760 CPD | +870007 |X Vol |075750.5-651753 |M | 10.3 |< 13.0 | |p |28845. | | 280. | |Me(S7,2) |00016 08953| +870008 |Y Vol |081359.9-704415 |M | 12. |< 14. | |p | | | | | |00085 02381| +870009 |Z Vol |082657.3-710947 |EA | 14.5 | 15.5 | |p | | | | | |04001 04001| +870010 |RR Vol |082728.7-695355 |EA | 15.5 | 17. | |p | | | | | |04001 04001| +870011 |RS Vol |082938.5-660651 |M | 14.5 |< 16. | |p | | | | | |04001 04001| +870012 |RT Vol |083304.8-672913 |RR | 15. | 16.5 | |p | | | | | |04001 04001| +870013 |RU Vol |083251.6-692713 |RR | 15. | 16.5 | |p | | | | | |04001 04001| +870014 |RV Vol |083252.6-700424 |RR | 12.5 | 13.5 | |p | | | | | |04001 04001| +870015 |RW Vol |083602.1-650517 |EA | 13. | 14. | |p | | | | | |04001 04001| +870016 |RX Vol *|083932.1-661740 |UGSU: | 16. |< 18. | |p | | | | | |05386 04001| +870017 |RY Vol |084030.0-682424 |EA | 14. | 14.5 | |p | | | | | |04001 04001| +870018 |RZ Vol |084304.0-660714 |RR | 14. | 15. | |p | | | | | |04001 04001| +870019 |SS Vol |084656.3-675422 |M | 15. |< 17. | |p | | | | | |04001 04001| +870020 |ST Vol *|084759.4-663348 |RR | 15. | 16. | |p | | | | | |04001 04001| +870021 |SU Vol |084818.2-692631 |RR | 15. | 16. | |p | | | | | |04001 04001| +870022 |SV Vol *|084832.6-713915 |RRAB | 11.76 | 12.56 | |V |41742.428 | | 0.37850 |11 | |07233 07233| +870023 |SW Vol |085010.5-662312 |RR | 13. | 13.5 | |p | | | | | |04001 04001| +870024 |SX Vol |085309.8-675958 |EA | 13. | 14. | |p | | | | | |04001 04001| +870025 |SY Vol |085325.9-711248 |UG: | 15.5 |< 17.5 | |p | | | | | |04001 04001| +870026 |SZ Vol |085739.8-663012 |EA | 13.5 | 15. | |p | | | | | |04001 04001| +870027 |TT Vol |085800.5-653405 |M | 16. |< 17. | |p | | | | | |04001 04001| +870028 |TU Vol |090029.2-653311 |EA | 15. | 16.5 | |p | | | | | |04001 04001| +870029 |TV Vol |090050.9-672920 |RR | 15. | 16.5 | |p | | | | | |04001 04001| +870030 |TW Vol |090046.0-683536 |RR | 16. | 17. | |p | | | | | |04001 04001| +870031 |TX Vol *|083220.3-655028 |EA/D | 10. | 10.5 | 10.5 |p |41339.593 | | 5.38837 | | |08040 CPD | +870032 |TY Vol |071306.9-714727 |EB: | 13.1 | 13.6 | |p | | | | | |06318 06318| +870033 |TZ Vol |081254.3-723008 |SR: | 14.1 | 14.7 | |p | | | | | |06318 06318| +870034 |UU Vol |081600.2-682821 |SRB: | 9.2 | 9.5 | |p | | | | |M4e |00085 CPD | +870035 |UV Vol |081840.9-660155 |M | 12.2 | 15.5 | |p | | | | |Me |04453 05254| +870036 |UW Vol |063904.0-741134 |M: | 12. | 15. | |p | | | | | |04663 02385| +870037 |UX Vol |084617.4-710220 |LB: | 9.20 | 9.62 | |V | | | | |SC |06059 | +870038 |UY Vol |074833.7-674508 |XBN+E | 16.9 |< 23. | |V | | | | | |68301 68300| +870039 |UZ Vol |063608.0-724707 |E: | 9.41 | 9.90 | |Hp| | | | | |HIP HIP | +870040 |VV Vol |064702.8-702806 |SRB | 8.42 | 8.62 | |Hp| | | | | |HIP HIP | +870041 |VW Vol |065149.4-692457 |LB: | 8.67 | 8.78 | |Hp| | | | | |HIP HIP | +870042 |VX Vol |065344.3-655450 |E: | 8.03 | 8.28 | |Hp| | | | | |HIP HIP | +870043 |VY Vol |065349.8-713549 |LB: | 8.81 | 8.92 | |Hp| | | | | |HIP HIP | +870044 |VZ Vol |070435.1-681455 |LB: | 8.21 | 8.34 | |Hp| | | | | |HIP HIP | +870045 |WW Vol |071914.6-671115 |LB | 7.92 | 8.21 | |V | | | | | |HIP HIP | +870046 |WX Vol |074400.8-671207 |LB | 7.51 | 7.67 | |Hp| | | | | |HIP HIP | +870047 |WY Vol |080751.3-695357 |ACV | 7.97 | 8.02 | |Hp| | | | | |HIP HIP | +870048 |WZ Vol |084346.2-714934 |EA | 8.40 | 8.66 | |Hp| | | | | |HIP HIP | +870049 |XX Vol |082830.1-644319 |M | 10.7 |< 14.8 | |V |52643 | | 315. | | |78040 GSC | +870050 |XY Vol |090213.6-643258 |M | 12.8 | 15.4 | |V |53116 | | 230. | | |78130 USNO | +870051 |XZ Vol |090319.4-662357 |SRA | 12.6 | 14.4 | |V |51916 | | 140. | | |78130 78121| +870052 |YY Vol |090337.2-660852 |SRA | 12.7 | 14.2 | |V |52950 | | 150. | | |78040 78121| +870053 |YZ Vol *|070521.5-690940 |EA | 13.14 | 13.9 : | 13.85 : |V |52752.573 | | 1.57097 |06 | |79004 GSC | +870054 |ZZ Vol |072701.1-693055 |EW | 8.37 | 8.69 | 8.68 |V |52723.672 | | 0.847434 | |A3IV/V |79011 DM | +870055 |AA Vol |075105.5-673437 |SRB | 9.3 | 10.5 | |V | | | 176. | | |79064 79068| +870056 |AB Vol |081043.5-723245 |EA | 11.98 | 12.81 | 12.16 : |V |53461.716 | | 1.92193 |12 | |79003 79063| +870057 |AC Vol |084016.9-654758 |EA | 11.02 | 11.47 | 11.20 |V |52619.896 | | 8.0758 |05 | |79003 79068| +870058 |AD Vol *|084439.8-710741 |M | 12.0 |< 14.4 | |V |53157. | | 270. | | |79190 79190| +870059 |AE Vol |084539.4-645928 |EW | 9.97 | 10.54 | 10.48 |V |52613.631 | | 0.406614 | | |79011 DM | +870060 |AF Vol |085334.9-702808 |EW | 10.60 | 11.05 | 11.00 |V |52617.843 | | 0.638940 | | |79011 79063| +870061 |AG Vol |085743.9-730545 |EA | 10.45 | 11.34 | 10.85 |V |51928.634 | | 12.4398 |09 | |79011 DM | +870062 |AH Vol *|071001.1-643708 |EA | 11.56 | 11.8 | 11.8 |V |51933.642 | | 3.32932 |06 | |80011 GSC | NL80_2 +870063 |AI Vol |074502.4-711946 |M | 2.04 | 3.67 | |K | | | 511. | |C |80166 2MASS| NL80_2 +870064 |AK Vol |074923.1-654927 |RS | 8.54 | 8.65 | |V | | | 31.808 | |G8III |80286 DM | NL80_2 +870065 |AL Vol *|081609.4-664448 |RR(B) | 12.30 | 13.25 | |V |52614.70 | | 0.51721 | | |80300 GSC | NL80_2 +880001 |R Vul *|210422.5+234918 |M | 7.0 | 14.3 | |V |45586. | | 136.73 |49 |M3e-M7e |00001 00002| +880002 |S Vul *|194823.8+271711 |DCEP | 8.69 | 9.42 | |V |44147.2 | | 68.464 |29 |G0-K2(M1) |10148 00884| +880003 |T Vul *|205128.2+281502 |DCEP | 5.41 | 6.09 | |V |41705.121 | | 4.435462 |32 |F5Ib-G0Ib |08300 08953| +880004 |U Vul |193637.7+201959 |DCEP | 6.73 | 7.54 | |V |44939.58 | | 7.990676 |33 |F6Iab-G2 |00001 00766| +880005 |V Vul *|203632.0+263615 |RVA | 8.05 | 9.53 | 8.65 |V | | | 75.7 | |G4e-K3(M2) |00767 00368| +880006 |W Vul *|201004.3+261707 |SRB | 10.2 | 11.8 | |p | | | 234.52 |43 |M5IIIe |03785 08953| +880007 |X Vul *|195728.6+263323 |DCEP | 8.33 | 9.22 | |V |35309.977 | | 6.319588 |30 |F6Ia-F9 |09667 00884| +880008 |Y Vul |190416.3+244719 |RRAB | 14.2 | 16.0 | |p |38939.413 | | 0.44945164 |10 | |07429 07429| +880009 |Z Vul *|192139.1+253430 |EA/SD | 7.25 | 8.90 | 7.58 |V |42947.4777 | | 2.454934 |18 *|B4V+A3III |00001 00010| +880010 |RR Vul |205447.6+275506 |EA | 10.0 | 11.4 | |p |35035.437 | | 5.05070 |09 *|A2 |07929 08953| +880011 |RS Vul *|191740.0+222628 |EA/SD: | 6.79 | 7.83 | 6.86 |V |32808.257 | | 4.4776635 |14 *|B4V+A2IV |00770 08953| +880012 |RT Vul |191128.8+222259 |CST | 7.5 | | |p | | | | |B8 |00366 00021| +880013 |RU Vul *|203852.7+231531 |SRA | 8.1 | 12.7 | |V |43440. | | 173.6 |47 |M3e-M4e |00001 00002| +880014 |RV Vul |200359.1+213709 |M | 13. |< 16. | |p |26270. | | 424.0 | | |00001 00772| +880015 |RW Vul |200359.0+214219 |M | 12. | 15. | |p |39022. | | 208.55 | |M6.5 |00001 00772| +880016 |RX Vul *|205259.8+232216 |M | 11. | 15. | |p |27520. | | 457. | |M9e |00001 00567| +880017 |RY Vul |190433.8+244625 |RR | 12.7 | 13.4 | |p |20005.33 | | | | |00341 06286| +880018 |RZ Vul *|194714.1+192917 |* | 12.5 | 16.5 | |p | | | | |G2IV/V: |10153 00772| +880019 |SS Vul |195451.7+205543 |M | 13.5 |< 17. | |p |27370. | | 171. | |M3 |10154 00772| +880020 |ST Vul |200113. +230634:| | 11. | 14.4 | |p | | | | | |00775 | +880021 |SU Vul *|201131.4+263254 |LB: | 11.9 | 12.9 | |p | | | | | |00341 BD | +880022 |SV Vul *|195130.9+272737 |DCEP | 6.72 | 7.79 | |V |43086.89 | | 45.0121 |23 |F7Iab-K0Iab |10155 00766| +880023 |SW Vul |200005.2+225607 |UGSS | 14.5 | 18.5 | |p | | |( 15.0 ) | | |00504 08852| +880024 |SX Vul *|203509.4+283421 |M | 12.2 | 17. | |p |26315. | | 425.4 | |M8e |00001 UCAC2| +880025 |SY Vul |203621.9+235151 |EA/SD | 13. | 16. | |p |16293.463 | | 7.80187 |15 *| |03160 00779| +880026 |SZ Vul |203642.3+225412 |M | 12. |< 16.5 | |p |25928. | | 253.6 | | |00001 00779| +880027 |TT Vul |203658.0+261849 |M | 12.8 |< 16.5 | |p |28855. | | 146.9 | | |00780 00779| +880028 |TU Vul |203916.7+222945 |M | 10.3 |< 16. | |p |27391. | | 300.2 | | |00001 00779| +880029 |TV Vul |203938.6+251209 | | 13.5 |< 16.5 | |p | | | | | |01622 2MASS| +880030 |TW Vul |203934.5+271556 | | 14. |< 16. | |p | | | | | |01622 00779| +880031 |TX Vul |204142.8+234706 | | 15. | 16. | |p | | | | | |01622 UCAC2| +880032 |TY Vul |204143.9+253510 |UG | 14. | 19. : | |p | | | | | |08656 08656| +880033 |TZ Vul |204137.4+281814 |LB: | 12. | 14.9 | |p | | | | |C(N) |00341 00779| +880034 |UU Vul *|204240. +205349:| | 10.5 | 13.5 | |p | | | | | |01622 08953| +880035 |UV Vul |205057.8+235406 | | 13.5 |< 16.5 | |p | | | | | |01622 2MASS| +880036 |UW Vul |205232.1+271028 |M | 11. |< 15.0 | |p |26540. | | 365.5 | |M7 |00001 06286| +880037 |UX Vul |205456.3+250519 | | 14.5 | 16. | |p | | | | |A0: |01622 UCAC2| +880038 |UY Vul |205552.8+264052 |UG: | 13.0 |< 16. | |p | | | | | |00341 00779| +880039 |UZ Vul |205646.0+233436 |UG: | 14. |< 16. | |p | | | | | |00341 00779| +880040 |VV Vul *|205723.7+275123 |EA/SD | 12.0 | 13.9 | 12.1 |V |45151.57 | | 3.411361 |18 |A2/3V |00001 00779| +880041 |VW Vul *|205745.1+253026 |UGZ | 13.1 | 16.27 | |B | | |( 30. ) | |pec(UG) |08656 08852| +880042 |VX Vul |205753.6+244822 |SRA | 13. | 15. | |p |25905. | | 218. | | |10154 UCAC2| +880043 |VY Vul *|194823.7+202406 |EB/SD: | 14.2 | 15.1 | 14.4 : |p |28020.452 | | 0.8843484 | | |04027 GSC22| +880044 |VZ Vul |210346.7+233517 |CST: | 10.2 | | |p | | | | |K0 |00653 BD | +880045 |WW Vul *|192558.8+211231 |ISA | 10.25 | 12.94 | |V | | | | |A3ea |10134 06239| +880046 |WX Vul |210923.9+264017 |M | 11. |< 14. | |p |26189. | | 280.7 | |M5e |03122 UCAC2| +880047 |WY Vul |190423.6+250621 |LB | 13.4 | 14.0 | |p | | | | |M5 |00332 00530| +880048 |WZ Vul |190552.2+250733 |EA | 14.5 | 16.1 | |p |29056.520 | | | | |00332 00530| +880049 |XX Vul |192101.2+245932 | | 14.5 | 16. | |p | | | | | |00532 00530| +880050 |XY Vul |192559.3+262435 |M | 12. | 17. | |p |36894. | | 288.6 | |M6e-M6.5 |04427 04427| +880051 |XZ Vul *|192924.3+272605 |EA/SD: | 11.3 | 12.8 | 11.4 |p |45932.55 | | 3.089631 |24 *|G0 |00001 04427| +880052 |YY Vul |192958.7+252321 |M | 13.3 | 16.3 : | |p |29180. | | 310.0 | |M5-M8 |00001 00530| +880053 |YZ Vul |194402.1+274606 |M | 10.7 | 17.3 | |p |45628. | | 376.87 |40 |M5e-M9 |00001 04427| +880054 |ZZ Vul |194750.0+290915 |M | 13.8 |< 18. | |p |36819. | | 161.56 | |M3-M8 |04427 04427| +880055 |AA Vul |195026.1+281120 |M | 13.7 |< 18. | |p |33913. | | 439.1 | |M6.5e-M10e |04427 04427| +880056 |AB Vul *|195347.0+285656 |EA/KE: | 12.4 | 12.9 |( 0.02 )|p |25145.467 | | 1.4613343 |15 *|A8: |04244 04244| +880057 |AC Vul |185955.7+251037 |M | 12.1 | 18.5 | |p |25446. | | 231.2 |45 | |00332 00133| +880058 |AD Vul *|190403.9+243331 |EA | 12.8 | 14.4 | |p |25301.50 | | 10.426342 |07 |F7III |00332 00531| +880059 |AE Vul |190427.5+242113 |M | 13.2 | 18. : | |p |25327. | | 231. |41 : | |00332 00531| +880060 |AF Vul *|193548.1+273936 |E: | 14.8 | 16.5 | |p |33512.505 | | | | |03662 03662| +880061 |AG Vul |194028.5+273554 |M | 13.3 |< 17.2 | |p |37099. | | 214.2 | |M6-M7 |04427 04427| +880062 |AH Vul |194519.4+273534 |M | 13.6 | 17.1 | |p |37942. | | 194.4 |32 |M2 |04427 04427| +880063 |AI Vul |194647.4+280833 |M | 13.2 |< 17.5 | |p |37130. | | 226.2 | |M3-M6 |04427 04427| +880064 |AK Vul |211048.8+272641 |M | 12.6 |< 16. | |p |26997. | | 365.0 | | |00001 06286| +880065 |AL Vul |185915.9+243404 |M | 13.0 |< 17. | |p |25507. | | 270. | | |00332 00133| +880066 |AM Vul |190055.4+251716 |LB | 14.5 | 15.8 | |p | | | | | |00332 00133| +880067 |AN Vul |190217.8+251900 |M | 13.4 | 16.5 | |p |25313. | | 263. |38 |M2 |00332 00133| +880068 |AO Vul |190237.8+243326 |M | 13.8 |< 16.5 | |p |25320. | | 456. | | |00332 00133| +880069 |AP Vul |190601.3+250026 |LB | 14.4 | 15.5 | |p | | | | | |00332 00133| +880070 |AQ Vul |190702.6+241716 |M | 13.0 | 17. | |p |25447. | | 191. |43 |M6 |00332 00133| +880071 |AR Vul *|193543.8+263336 |LB | 14.0 |< 17. | |p | | | | |C6-,4(N) |03662 03662| +880072 |AS Vul |194744.5+275506 |DCEP | 11.76 | 12.71 | |V |31662.723 | | 12.224726 |36 | |02773 02773| +880073 |AT Vul *|195358.5+233352 |EA/SD: | 9.08 | 10.0 | 9.3 |V |29906.980 | | 3.98039 |13 |B3 |00007 00785| +880074 |AU Vul |201805.9+274404 |SRB | 11.8 | 13.4 | |p | | | 145. | |K-M |00460 06286| +880075 |AV Vul |202606.4+261417 |LB | 10.7 | 12.2 | |p | | | | |M5-M8 |03785 00786| +880076 |AW Vul *|202901.7+244828 |EA/SD: | 10.8 | 11.9 | 10.9 |V |46285.465 | | 0.80645141 |20 |F0 |00001 00318| +880077 |AX Vul *|203310.3+245156 |EA/SD: | 11.0 | 12.8 | |V |44853.390 | | 2.0248386 |12 |A1V |00001 00318| +880078 |AY Vul *|203538.9+223727 |EA | 11.3 | 12.4 | |p |42685.377 | | 2.4124468 |16 |F0 |10157 00318| +880079 |AZ Vul *|203054.0+253905 |EA/KE: | 11.8 | 12.4 | 11.9 |p |42654.387 | | 1.1226255 |20 *|A0 |00001 00593| +880080 |BB Vul *|203219.5+273944 |E | 12.5 | 13.2 | |p | | | | | |00599 00599| +880081 |BC Vul |203911.7+253933 |RRAB | 13.5 | 15.1 | |p |30258.453 | | 0.4370163 |14 | |03506 10166| +880082 |BD Vul |203717.8+262913 |M | 9.3 | 12.7 | |V |25758. | | 430. |53 |C6-7,3e(Ne) |00780 00601| +880083 |BE Vul *|202533.6+272209 |EA/SD | 9.78 | 11.31 | 9.90 |V |40111.381 | | 1.552044 |17 *|A3V-A5V |10167 08953| +880084 |BF Vul *|204414.8+204945 |SR | 10.3 | 12.8 | |V |27694. | | 148.2 | |M4 |00310 00158| +880085 |BG Vul |211924.4+220241 |EW/KW | 12.9 | 13.7 | |p |24767.70 | | 0.403252 | | |00193 UCAC2| +880086 |BH Vul |212106.2+242138 |M | 12.6 |< 16.5 | |p |24800. | | 409.0 | | |00193 UCAC2| +880087 |BI Vul *|212248.0+270140 |EW/KW | 14.15 | 14.90 | 14.86 |B |44757.9270 | | 0.251818 | | |09960 GSC22| +880088 |BK Vul |212523.3+275119 |EW/KW | 12.8 | 13.5 | |p |24767.70 | | 0.45347 | | |00193 06286| +880089 |BL Vul |212748.7+263409 |M | 12.7 |< 16.5 | |p |24800. | | 414. | | |00193 UCAC2| +880090 |BM Vul | | | | | | | | | | | | |=V0411 Peg +880091 |BN Vul *|192756.1+242051 |RRAB | 10.63 | 11.40 | |V |45530.395 | | 0.5941295 |19 |A6-F4 |00001 00616| +880092 |BO Vul *|195629.1+235445 |EA/SD | 10.5 | 13.3 | 10.6 |p |35989.431 | | 1.945869 |15 *|F0 |00001 00636| +880093 |BP Vul *|202533.3+210218 |EA/SD | 10.1 | 11.3 | 10.5 |p |46003.248 | | 1.9403491 |10 *|A7 |00001 10158| +880094 |BQ Vul |203119.2+250051 |EA/SD | 11.9 | 13.0 | |V |27976.565 | | 4.4271 |08 |A0IV |00654 00492| +880095 |BR Vul |194635.2+225323 |DCEP | 11.8 | 12.8 | |p |16728.15 | | 5.197170 |28 | |03788 02329| +880096 |BS Vul *|193726.5+215550 |EB/KW | 10.9 | 11.60 | 11.10 |V |43271.578 | | 0.47597147 | |F2 |00001 00554| +880097 |BT Vul *|202304.9+272839 |EA | 11.8 | 12.5 | 12.3 |p |35402.180 | | 1.141200 |12 |F8 |03785 03785| +880098 |BU Vul *|204618.9+281544 |EA/SD | 10.6 | 11.4 | |p |33533.683 | | 0.5689930 |20 *|G0 |10162 00601| +880099 |BV Vul *|205712.4+292004 |SRA | 10.5 | 11.5 | |V |27705. | | 85.3 | |S7,8 |00001 00492| +880100 |BW Vul *|205422.4+283119 |BCEP | 6.52 |( 0.24 )| |V |45177.6220 | | 0.20104117 |50 |B1III-B2IIIeaV |09953 00021| +880101 |BX Vul |185715.4+240232 |RRAB | 14.3 | 15.2 | |p |29111.392 | | 0.597863 |42 | |00332 00533| +880102 |BY Vul |185736.8+232621 |M | 13.9 |< 17. | |p |25532. | | 305. | | |00332 00533| +880103 |BZ Vul |185958.8+250704 |M | 13.5 | 17. | |p |29105. | | 351. |42 | |00332 00533| +880104 |CC Vul |190032.9+232703 |M | 14.0 |< 16.5 | |p |25522. | | 268. | | |00152 00533| +880105 |CD Vul *|202534.3+262806 |EB/SD | 11.5 | 12.6 | 11.9 |p |46298.505 | | 0.6837450 | |F0V |00001 00786| +880106 |CE Vul |193257.8+233616 |RRAB | 12.2 | 14.5 | |p |37176.393 | | 0.3704876 |20 | |06248 06248| +880107 |CF Vul |200054.5+230546 |LB | 12.8 | 14.4 | |p | | | | |Me |00773 00772| +880108 |CG Vul |191654.7+215453 |LB | 13.5 | 15.1 | |p | | | | |C4,4-C5,4/5 |00792 02452| +880109 |CH Vul |201737.4+265319 |M | 12.1 |< 16.5 | |p |32130. | | 224.6 | |M5 |00001 00601| +880110 |CI Vul |210842.4+275144 |M | 12.0 |< 14.5 | |p |28748. | | 317.7 | | |00793 00601| +880111 |CK Vul *|194738.1+271848 |NB | 2.7 | 20. : | |V | |1670 | | |ea |10163 10163| +880112 |CL Vul |193951.7+221610 |SRA | 13.3 | 14.4 | |p |27557. | | 72. | |M2 |00773 02329| +880113 |CM Vul |194235.4+225800 |LB | 13.4 | 13.8 | |p | | | | |M3 |00773 02329| +880114 |CN Vul |194334.0+224459 |M | 11.6 |< 16.5 | |p |34970. | | 330.2 | |M5e-M8 |00001 02329| +880115 |CO Vul |194343.9+193408 |LB | 13.5 |< 16.0 | |p | | | | |C9,1 |00773 02329| +880116 |CP Vul |194518.1+192944 |M | 15.2 |< 17.0 | |p |27711. | | 244. | |M2 |00773 02329| +880117 |CQ Vul |194601.6+241422 |L | 14.6 |< 15.5 | |p | | | | | |00773 02349| +880118 |CR Vul |194659.4+195758 |LB | 12.9 | 14.0 | |p | | | | |C |00773 02329| +880119 |CS Vul *|194724.3+194022 |EA | 13.2 | 14.2 | 13.6 |p |29162.322 | | 4.37767 |04 *| |08321 02349| +880120 |CT Vul |194732.6+205418 |IS: | 13.9 | 16.1 | |B | | | | | |08855 08855| +880121 |CU Vul |194835.1+214006 |LB | 15.0 |< 16.5 | |p | | | | |C(M7) |00773 02330| +880122 |CV Vul |194912.7+205257 |SRA | 15.4 | 17.5 | |p |40150. | | 183.48 | |M3 |00001 10164| +880123 |CW Vul |195102.0+203108 |M | 13.4 | 18.0 | |p |27988. | | 309. | |M8 |00773 02330| +880124 |CX Vul |195110.9+204521 |M | 14.5 | 18.0 | |p |28442. | | 251. | | |00773 02330| +880125 |CY Vul |195452.8+200435 |LB | 13.8 | 14.6 | |p | | | | | |00773 00772| +880126 |CZ Vul |195458.6+210001 |M | 14.6 |< 17.0 | |p |31020. | | 153.2 | |M1 |00001 00772| +880127 |DD Vul |195518.6+212633 |M | 14.1 |< 16.0 | |p |30412. | | 121.30 |50 |M3 |00001 00772| +880128 |DE Vul |195752.8+233729 |M | 13.8 |< 16.5 | |p |27548. | | 298. | |M8 |00773 02330| +880129 |DF Vul |195757.0+224056 |M | 13.1 |< 17.0 | |p |30860. | | 352. | |M8 |00001 00772| +880130 |DG Vul |195840.2+274101 |CEP | 10.73 | 11.87 | |V |28427.344 | | 13.60831 |35 | |04427 04427| +880131 |DH Vul |195914.3+220114 |LB | 15.2 | 16.5 | |p | | | | |M5 |00773 02330| +880132 |DI Vul |200257.2+214200 |LB | 13.2 | 14.4 | |p | | | | |M6.5 |00773 02331| +880133 |DK Vul |200634.0+242600 |SRA | 12.6 | 14.6 | |p |29375. | | 370. | |S4,2(M6.5) |00773 00542| +880134 |DL Vul |200717.5+224842 |SRA | 12.5 | 14.8 | |p |27727. | | 375. | |M6 |00773 00772| +880135 |DM Vul |201040.9+214138 |LB | 14.0 | 14.8 | |p | | | | |M7: |00773 02331| +880136 |DN Vul |201543.7+215733 |EA | 13.6 | 15.0 | |p |29162.32 | | 3.53078 |06 *| |00773 02350| +880137 |DO Vul |195210.7+193443 |UG | 14.0 |< 17.4 | |p | | |( 91.3 ) | | |00504 06996| +880138 |DP Vul |195218.0+193927 |EA | 14.5 | 15.4 | |p |27546.563 | | 6.01793 |11 *| |04027 02330| +880139 |DQ Vul |200003.0+224652 |M | 14.5 |< 17.0 | |p |29830. :| | 310. : | | |00778 00778| +880140 |DR Vul *|201346.9+264502 |EA/DM | 8.65 | 9.27 | 9.19 |V |40300.6680 | | 2.2508645 |15 *|B8 |06242 08953| +880141 |DS Vul |202128.8+264214 |M | 14.9 |< 16.9 | |p |29950. | | 298. | | |00798 02355| +880142 |DT Vul |202509.0+264846 |M | 13.7 |< 16.2 | |p |29964. | | 303. | | |00798 00601| +880143 |DU Vul |203041.8+281234 |M | 13.7 |< 17.0 | |p |29494. | | 276. | | |00798 02371| +880144 |DV Vul |203739.2+243815 |LB | 10.8 | 12.1 | |p | | | | |M0-M4 |00797 BD | +880145 |DW Vul |204033.3+270442 |E | 15.5 | 16.2 | |p |31655.501 | | | | |00798 02371| +880146 |DX Vul |204623.1+254906 |M | 12.4 |< 15. | |p |26575. | | 313. | | |00797 00601| +880147 |DY Vul *|210329.8+235947 |LB | 8.4 | 9.7 | |p | | | | |M3-M6 |00797 08953| +880148 |DZ Vul |211009.0+255623 |LB | 12.6 | 13.5 | |p | | | | | |00797 00601| +880149 |EE Vul |200403.5+281401 |EA | 14.9 | 15.7 | |p |30260.497 | | 2.76380 |15 | |00798 02355| +880150 |EF Vul |201518.6+260338 |L | 12.8 | 14.3 | |p | | | | | |00798 02355| +880151 |EG Vul |202659.8+261159 |RRAB | 15.0 | 16.7 | |p |29498.534 | | 0.564498 |35 | |00798 02371| +880152 |EH Vul *|202801.9+260335 |SRA | 14.1 | 16.0 | |p |30824. | | 202. | |M9 |00798 02355| +880153 |EI Vul |202832.6+255332 |SR | 15.1 |< 16.2 | |p |29974. | | 342. | | |00798 02371| +880154 |EK Vul |203525.8+274425 |LB | 14.4 | 15.0 | |p | | | | | |00798 02371| +880155 |EL Vul |203542.4+252912 |SR | 13.5 | 15.5 | |p | | | | |M7-M8: |00798 02371| +880156 |EM Vul |203935.8+253125 |SRA | 14.5 | 16.4 | |p |29914. | | 151. | | |00798 02371| +880157 |EN Vul |204221.8+272848 |SRA | 13.4 | 15.1 | |p |29557. | | 336. | |M8 |00798 02371| +880158 |EO Vul |202103.9+273353 |E | 12.7 | 13.9 | |p |33538.359 | | | | |00798 02355| +880159 |EP Vul *|193317.8+233920 |LB | 11.0 | 14.7 | |p | | | | |S6,5-S8,7 |10186 06248| +880160 |EQ Vul *|195823.2+280108 |EA/DM: | 11.79 | 12.5 | 12.5 |B |35344.763 | | 9.297164 |07 *|B8 |06178 10187| +880161 |ER Vul *|210225.9+274827 |EW/DW/RS | 7.27 | 7.49 |< 7.44 |V |40182.2621 | | 0.69809409 | |G0V+G5V |10188 BD | +880162 |ES Vul *|191743.6+230132 |BCEP: | 5.42 |( 0.06 )| |V |36338.5 | | 0.6096 |50 |O8IV-B0.5IVeV |02602 BD | +880163 |ET Vul *|193520.1+262549 |CWA | 11.94 | 12.50 | |V |44042.81 | | 53.493 |30 |F8: |00001 02773| +880164 |EU Vul *|195031.6+221205 |EB | 12.9 | 13.5 | 13.3 |p |36757.514 | | 0.88304718 | | |04027 02330| +880165 |EV Vul *|195138.4+235317 |EB/DM | 11.5 | 12.2 | 11.9 |p |42731.135 | | 2.82200 | |B1V: |10169 10169| +880166 |EW Vul |195159.4+271641 |RRAB | 13.7 | 15.3 | |p |31008.5574 | | 0.46730780 |12 | |02774 02774| +880167 |EX Vul *|200447.4+221922 |EA/DS | 12.49 | 15.1 | |B |36096.34 | | 16.135485 |10 |ea: |07806 10170| +880168 |EY Vul *|200716.6+241216 |EA/SD | 11.2 | 12.2 |( 0.05 )|p |35771.238 | | 4.103052 |12 *|A4 |07056 02786| +880169 |EZ Vul |200855.2+245433 |E | 13.0 |< 15. | |p | | | | | |02787 00141| +880170 |FF Vul |202313.0+254259 |E/KW | 13.1 | 13.8 | |p |35686.45 | | 0.444986 | | |02972 02786| +880171 |FG Vul *|203433.0+281651 |SRC | 8.97 | 9.51 | |V |36095.8 | | 86.0 | |M5II |10190 02973| +880172 |FH Vul *|204019.9+221324 |RRAB | 11.4 | 13.6 | |p |36027.454 | | 0.4054185 |15 | |08109 06286| +880173 |FI Vul |204851.2+225939 |LB | 8.6 | 10.3 | |p | | | | |M3 |03135 08953| +880174 |FK Vul *|205231.0+222612 |RRAB | 11.8 | 13.7 | |p |36076.423 | | 0.4340529 |23 | |08109 06286| +880175 |FL Vul |193043.1+271407 |RRAB | 15.5 | 16.6 | |p |34623.217 | | 0.4895864 |24 | |04245 04245| +880176 |FM Vul *|193147.0+270806 |EB/KE: | 12.8 | 13.7 | 13.0 |p |43755.409 | | 0.7846407 | |A3: |00001 04244| +880177 |FN Vul *|193345.7+271126 |EA | 13.9 | 14.5 | 14.2 |p |34637.284 | | 11.67696 |25 | |04427 04427| +880178 |FO Vul |193503.4+263457 |EA | 13.6 | 15.0 | |p |34987.327 | | 2.8388204 |22 *| |04248 04248| +880179 |FP Vul *|193520.0+272454 |EB/SD | 15.4 | 16.7 | 15.6 |p |33922.312 | | 1.10455509 | | |04244 04244| +880180 |FQ Vul *|193536.6+261702 |EA/D | 12.3 | 12.9 | 12.9 |p |34238.507 | | 6.262398 | | |04248 04248| +880181 |FR Vul *|193624.8+264557 |EA | 10.3 | 11.0 | |p |34981.3980 | | 0.94185866 |20 |A2 |04248 04248| +880182 |FS Vul *|193623.7+271008 |EA/DS | 15.1 | 16.2 | 15.2 |p |35317.37 | | 11.697248 |17 *| |04427 04427| +880183 |FT Vul |193624.7+270939 |M: | 14.4 |< 16. | |p |35372. | | 571. : | | |04248 04248| +880184 |FU Vul *|193710.6+273903 |EA | 15.1 | 16.3 | |p |35091.462 | | 3.8504195 |14 *| |04761 04761| +880185 |FV Vul |193840.9+273556 |UV | 12.3 | 14.1 | |p | | | | |Me: |04248 04248| +880186 |FW Vul *|194051.3+271301 |EA/DM | 12.7 | 13.4 | 12.9 |p |34706.180 | | 4.526148 |08 *| |04427 04427| +880187 |FX Vul |194130.8+240744 |M | 15. |< 17. | |p | | | | | |04341 04341| +880188 |FY Vul *|194140.0+214559 |UGZ | 13.4 | 15.33 | |B | | | | | |03156 08852| +880189 |FZ Vul *|194211.4+203443 |EB/DM | 13.2 | 14.0 | 13.9 |p |36763.366 | | 2.4177487 | | |08321 04269| +880190 |GG Vul *|194213.9+202850 |SRA | 14.3 | 15.7 | |p |28852.5 | | 113.1 | | |04027 02329| +880191 |GH Vul *|194233.8+200958 |EA | 14.9 |< 16.4 | |p |27713.314 | | 5.0 : | | |04027 02329| +880192 |GI Vul *|194237.6+263829 |EB | 13.5 | 14.6 | 13.8 |p |35066.263 | | 0.4814832 | | |04427 04427| +880193 |GK Vul *|194358.9+240942 |SR | 15. | 18. | |p | | | | | |04341 04341| +880194 |GL Vul |194456.7+201216 |E | 14.5 | 15. | |p | | | | | |04341 04341| +880195 |GM Vul |194537.8+225113 |M | 15.2 |< 17.1 | |p |29141. | | 212.4 | | |04027 02349| +880196 |GN Vul *|194624.6+272326 |EA/DM | 12.3 | 12.9 | 12.4 |p |35399.273 | | 1.9724441 |18 | |04427 04427| +880197 |GO Vul *|194635.4+275358 |EA/KE: | 13.2 | 13.7 |( 0.03 )|p |34628.337 | | 1.00892787 |24 *| |04244 04244| +880198 |GP Vul *|194656.9+285108 |EB/KE | 10.7 | 11.9 | 11.2 |p |34601.466 | | 1.0325031 | | |00001 04244| +880199 |GQ Vul *|194758.0+260001 |DCEP | 13.03 | 14.10 | |V |45198.340 | | 12.64387 |35 | |00001 04414| +880200 |GR Vul *|194811.3+273729 |EA/SD | 13.2 | 13.9 | 13.3 |p |34238.430 | | 1.3000937 |30 *| |04244 UCAC2| +880201 |GS Vul |194826.5+213215 |RR | 16. | 17. | |p | | | | | |04341 04341| +880202 |GT Vul *|194855.0+205608 |EB | 15.6 | 16.2 | 15.8 |B |38554.49 | | 14.9910 | | |10164 10164| +880203 |GU Vul *|194857.1+262323 |EW | 11.6 | 12.2 | 12.2 |p |34985.423 | | 0.77422704 | | |04427 04427| +880204 |GV Vul *|194923.7+203914 |EA | 14.1 | 14.8 | |p |27546.551 | | 1.01482 |21 *| |04027 02330| +880205 |GW Vul |195137.1+202857 |EA | 14. | 14.5 | |p | | | | | |04341 04341| +880206 |GX Vul |195215.9+194113 |LB | 14.5 | 15.1 | |p | | | | | |04027 04269| +880207 |GY Vul |195155.2+290300 |SRB: | 12.5 | 13.6 | |p | | | 100. : | |M4 |04244 04244| +880208 |GZ Vul |195220.1+195402 |I | 15.5 | 18. | |p | | | | | |04341 04341| +880209 |HH Vul |195210.1+291409 |LB | 10.8 | 11.8 | |p | | | | |M3 |04248 04248| +880210 |HI Vul *|195347.5+284417 |EB/KE | 12.3 | 12.7 | 12.6 |p |34119.521 | | 1.2937249 | | |04248 04248| +880211 |HK Vul |195419.1+282008 |EA/DS | 14.9 |< 16.9 | |p |33439.872 | | 20.3607692 |11 | |04384 04384| +880212 |HL Vul |195515.2+204621 |RRAB | 14.3 | 15.5 | |p |40808.329 | | 0.509288 |10 | |07003 02330| +880213 |HM Vul |195539.4+232507 |M | 15.5 |< 17. | |p | | | | | |04341 04341| +880214 |HN Vul |195553.2+220547 |RR: | 16. | 17. | |p | | | | | |04341 04341| +880215 |HO Vul |195853.5+242342 |CEP: | 13. | 14. | |p | | | | | |04341 04341| +880216 |HP Vul *|195901.0+264214 |EA/SD | 13.4 | 15.7 |( 0.04 )|p |34706.230 | | 3.9827302 |16 *| |04427 04427| +880217 |HQ Vul |200213.9+223826 |LB | 13.8 | 14.1 | |p | | | | | |04027 02331| +880218 |HR Vul |200225.1+220333 |RRAB | 13.8 | 15.0 | |p |27628.505 | | 0.3572594 |22 | |04027 02350| +880219 |HS Vul *|200226.1+224441 |EW/KW | 13.9 | 14.2 | 14.2 |p |36759.482 | | 0.3320669 | | |04027 04269| +880220 |HT Vul |200354.7+223655 |RR: | 15.5 | 16.5 | |p | | | | | |04341 04341| +880221 |HU Vul *|200527.2+222502 |RRAB | 15.6 | 16.6 | |B |37165.387 | | 0.4604116 |30 | |10171 04341| +880222 |HV Vul *|200526.6+221321 |RRAB | 15.0 | 16.3 | |B |40098.360 | | 0.419991 |16 | |07806 04341| +880223 |HW Vul *|200602.3+214959 |SRA | 13.7 | 15.9 | |p |32390.7 | | 75.03 | | |04027 00772| +880224 |HX Vul |201100.3+225143 |M | 15. |< 16.6 | |p |29548. | | 281.9 : | | |04027 02350| +880225 |HY Vul |201216.8+220602 |SRA | 14.4 | 16.5 : | |p |27626. | | 124.0 |50 : | |04027 02350| +880226 |HZ Vul |201226.7+220239 |SR: | 16. | 17.5 | |p | | | | | |04341 04341| +880227 |II Vul |201552.0+221503 |SR: | 15. | 16.5 | |p | | | | | |04341 04341| +880228 |IK Vul |202516.3+240011 |LB | 12.0 | 14.5 | |p | | | | |M7 |04295 00158| +880229 |IL Vul |203832.7+224217 |UG | 15. | 20. : | |p | | | | | |04387 04387| +880230 |IM Vul |204306.0+222855 |E | 11.6 |< 13.3 | |p | | | | | |02587 02975| +880231 |IN Vul |205321.9+253500 |LB | 12.0 | 13.0 | |p | | | | |M7 |04306 | +880232 |IO Vul |192101.1+270103 |M | 15.3 |< 16.7 | |p |34995. | | 153.1 | | |04427 04427| +880233 |IP Vul |192253.2+265800 |M | 15.5 |< 17. | |p |35189. | | 241.5 | | |03662 03662| +880234 |IQ Vul |192329.8+265836 |M | 14.3 |< 17.2 | |p |33507. | | 308.8 | | |04427 04427| +880235 |IR Vul |192338.1+263937 |E | 13.4 | 14.3 | |p |35106.260 | | 11.0 /N| | |03662 03662| +880236 |IS Vul |192745.6+261951 |LB | 14.7 | 15.7 | |p | | | | | |03662 03662| +880237 |IT Vul |192835.8+270704 |SR: | 15.5 |< 17. | |p | | | 230. : | | |03662 03662| +880238 |IU Vul *|192941.2+270530 |M | 13.5 | 16.4 | |p |42638. | | 318.6 |30 | |00001 10172| +880239 |IV Vul |193029.2+274530 |L | 14.5 | 15.4 | |p | | | | | |03662 03662| +880240 |IW Vul *|193533.5+263858 |EA/D | 12.9 | 13.3 | 13.1 |p |35161.658 | | 2.1378487 |12 *| |03662 03662| +880241 |IX Vul |193856.0+262451 |LB | 11.9 | 12.9 | |p | | | | | |03662 03662| +880242 |IY Vul |194010.6+260152 |I | 14.3 | 15.0 | |p | | | | | |03662 03662| +880243 |IZ Vul |194716.5+271956 |IA: | 13.1 | 16.2 | |p | | | | |A0 |03662 03662| +880244 |KK Vul |194721.1+282842 |LB | 15.0 | 16.1 | |p | | | | | |03662 03662| +880245 |KL Vul |195325.5+223425 |RR | 16. | 17. | |p |38268.49 | | | | |03903 03903| +880246 |KM Vul |195425.7+211352 |SR | 15.5 |< 17. | |p | | | | | |03903 03903| +880247 |KN Vul *|195534.6+274221 |EW/KW | 13.0 | 13.4 | 13.4 |p |34634.2821 | | 0.3573325 | | |00001 03662| +880248 |KO Vul *|195716.4+290621 |UV: | 15. | 17.5 | |p | | | | | |03903 03903| +880249 |KP Vul |201112.1+221011 |I | 12.5 | 13.3 | |p | | | | | |03980 03980| +880250 |KQ Vul |201159.3+222400 |RR | 15.5 | 16.5 | |p |38319.40 | | | | |03903 03903| +880251 |KR Vul |201152.9+220547 |RR | 16. | 17. | |p |38371.22 | | | | |03903 03903| +880252 |KS Vul *|201710.8+242107 |SR | 15.5 |< 17. | |p | | | | | |03903 03903| +880253 |KT Vul |201737.4+263349 |M: | 15. |< 17.5 | |p |39300. :| | | | |03903 03903| +880254 |KU Vul |201937.9+233303 |M | 14.5 |< 17. | |p |39370. :| | | | |03903 03903| +880255 |KV Vul |202015.9+254525 |SRA | 15. | 17. | |p |29510. :| | | | |03903 03903| +880256 |KW Vul |202105.3+280000 |M | 15. |< 19. | |p | | | | | |03903 03903| +880257 |KX Vul |202258.9+272653 |M | 16. |< 19. | |p | | | | | |03903 03903| +880258 |KY Vul |202638.4+284513 |M | 15. |< 17.5 | |p | | | | | |03903 03903| +880259 |KZ Vul |203006.5+291420 |M | 15.5 |< 17. | |p | | | | | |03903 03903| +880260 |LL Vul |203143.3+253836 |EA | 16. | 19. | |p |38620.515 | | | | |03776 03776| +880261 |LM Vul |203452.4+231138 |RR | 16.5 | 17.5 | |p |38635.34 | | | | |03776 03776| +880262 |LN Vul |203507.4+225330 |RR: | 16.5 | 17.5 | |p | | | | | |03776 03776| +880263 |LO Vul |203523.3+244716 |EA | 17. | 18. | |p |38616.48 | | | | |03776 03776| +880264 |LP Vul |203904.9+240511 |CEP: | 16.5 | 18. | |p | | | | | |03776 03776| +880265 |LQ Vul |203914.1+242044 |RR | 16.5 | 17.5 | |p |38635.34 | | | | |03776 03776| +880266 |LR Vul |204043.1+245440 |RR: | 16.5 | 17.5 | |p |38652.39 | | | | |03776 03776| +880267 |LS Vul |204438.2+231115 |EA | 16. | 17.5 | |p |38614.46 | | | | |03776 03776| +880268 |LT Vul *|190342.5+211606 |DSCT | 6.52 | 6.62 | |V |40720.7916 | | 0.1090 |47 |F2III |07015 00021| +880269 |LU Vul *|194535.4+283529 |NA | 9.2 |< 21. | |p |40057. |1968 | | |peq(NOVA) |05801 05801| +880270 |LV Vul *|194800.7+271020 |NA | 5.17 | 16.9 | |B |39964. |1968 | | |peq(NOVA) |10194 06067| +880271 |LW Vul *|194942.2+284912 |EB | 16.1 | 17.4 | 16.3 |p |31578.148 | | 2.5699754 | | |09012 09012| +880272 |LX Vul |204023.0+240112 |M: | 17. |< 21. | |p | | | | | |03776 03776| +880273 |LY Vul |190936.2+254006 |SR | 14.7 | 16.4 | |p |39950. | | 150. | | |05898 05898| +880274 |LZ Vul |191824.4+252518 |E | 14.3 | 15.2 | |p |40365.521 | | | | |05898 05898| +880275 |MM Vul |192202.8+272300 |RRAB | 14.7 | 16.4 | |p |39380.345 | | 0.604893 |10 | |05898 05898| +880276 |MN Vul *|192625.6+265731 |EA/AR | 15.1 | 16.1 | 16.1 |p |39406.232 | | 2.273500 |10 | |05876 05876| +880277 |MO Vul *|194239.8+195259 |EB | 14.4 | 15.4 | 14.8 |B |35401.264 | | 4.92658 | | |06266 06266| +880278 |MP Vul |192451.8+273242 |L: | 14.6 | 15.8 | |p | | | | | |06854 06854| +880279 |MQ Vul |192512.7+264216 |RRAB | 15.1 | 16.4 | |p |42934.361 | | 0.6990409 |25 | |10104 06854| +880280 |MR Vul *|192708.0+260305 |SR: | 14.4 | 17.1 | |p |43935. | | 160. | | |10104 06854| +880281 |MS Vul |192849.5+265320 |M | 14.3 |< 18.0 | |p |41462. | | 312.11 | | |10104 06854| +880282 |MT Vul *|193003.0+273533 |SR | 15.1 | 16.1 | |p |42641. | | 172.35 | | |10104 06854| +880283 |MU Vul |200234.3+225806 |RR | 11.5 | 12.0 | |p |40483.341 | | 0.5 : | | |07232 02786| +880284 |MV Vul |201509.8+220908 |ISB: | 9.9 | 10.4 | |p | | | | |K0 |07232 02787| +880285 |MW Vul |201627.2+274634 |ACV | 6.62 | 6.70 | |V |42644.3 | | 16.846 |40 |A0p(Si) |08824 BD | +880286 |MX Vul *|202647.7+242919 |SRD: | 10.7 | 11.3 | |p |38995. | | 362.5 | |F5 |10178 02786| +880287 |MY Vul |191900.1+252231 |EA | 14.9 | 16. | |p |37885.362 | | 6.004637 |10 | |08717 00532| +880288 |MZ Vul |192246.3+244022 |M | 14.5 | 17. | |p |38963. | | 281. | | |00504 00532| +880289 |NN Vul |192954.0+251457 |CWA | 13.82 | 15.0 | |V |38973.2 | | 30.87 | | |06997 00532| +880290 |NO Vul *|193438.0+203714 |EW/KW | 13.4 | 14.2 | 14.1 |p |46346.311 | | 0.3707685 | | |00001 08321| +880291 |NP Vul |193458.1+203003 |EA/SD | 14.3 | 15.5 | |p |35051.024 | | 1.9056726 |10 *| |00001 08321| +880292 |NQ Vul |192914.8+202800 |NB | 6.01 | 18. | |V |43085. |1976 | | |peq(NOVA) |10174 10174| +880293 |NR Vul |195011.9+245524 |LC | 9.13 | 9.61 | |V | | | | |M1Ia |07315 10175| +880294 |NS Vul *|195230.1+222714 |LB: | 7.75 | 8.12 | |V | | | | |M5III |10176 00021| +880295 |NT Vul |200106.0+274513 |ACV | 4.62 | 4.67 | |V |41885.2 | | 14.0 | |A4IIIm |04447 BD | +880296 |NU Vul |201414.5+284141 |DSCTC | 5.36 |( 0.05 )| |B | | | 0.227 | |A7IVn-shell |10177 BD | +880297 |NV Vul |201816.6+242949 |EA | 13.5 | 15.5 | |p |29162.322 | | | | |00773 02350| +880298 |NW Vul |203206.2+235651 |SR: | 17.5 | 18.5 | |p | | | | | |03776 03776| +880299 |NX Vul |200243.4+214927 |SR: | 12.0 | 12.8 | |p | | | | | |10178 02787| +880300 |NY Vul |191737.7+253507 |SRA | 14.1 | 15.6 | |B |37853. | | 52.9 | | |08490 08490| +880301 |NZ Vul |192054.9+202452 |M | 12.0 | 15.5 | |I |41660. | | 370. |40 | |08319 08319| +880302 |OO Vul |192103.1+200232 |M | 7.4 | 13.5 | |I |42190. | | 365. |50 |M9 |08319 08319| +880303 |OP Vul |192104.1+193255 |M | 11.2 : | 14.2 | |I |42440. | | 350. |50 : |M6 |08319 08319| +880304 |OQ Vul |192107.4+200207 |M | 13.8 | 15.9 | |I |42280. | | 240. |50 | |08319 08319| +880305 |OR Vul |192120.7+200612 |M | 10.8 | 14.0 : | |I |41565. | | 365. |60 : |M9 |08319 08319| +880306 |OS Vul |192121.0+203014 |M | 13.3 | 15.8 | |I |41660. | | 420. |36 |M8 |08319 08319| +880307 |OT Vul |192139.9+200128 |M | 12.9 | 15.8 : | |I |42350. | | 390. |50 | |08319 08319| +880308 |OU Vul |192147.7+194938 |M | 14.1 | 16.4 | |I |42600. | | 305. |50 : | |08319 08319| +880309 |OV Vul |192214.5+194052 |M | 14.0 | 16.4 : | |I |41625. | | 320. |50 : |M8 |08319 08319| +880310 |OW Vul |192224.2+200345 |M | 9.2 | 14.0 | |I |42145. | | 375. |50 |M6 |08319 08319| +880311 |OX Vul |192232.1+195301 |M | 9.6 | 12.6 | |I |41650. | | 178. |50 |M9 |08319 08319| +880312 |OY Vul |192253.8+195217 |M | 13.5 | 15.9 | |I |42180. | | 325. |50 | |08319 08319| +880313 |OZ Vul |192420.7+200026 |M | 9.8 | 13.6 | |I |42200. | | 350. |60 |M6 |08319 08319| +880314 |PP Vul |192549.3+193019 |M | 12.7 | 15.1 | |I |42210. | | 275. |35 |M8 |08319 08319| +880315 |PQ Vul |192600.5+194036 |M | 10.2 | 14.0 | |I |41660. | | 368. |55 |M3 |08319 08319| +880316 |PR Vul |192817.8+250903 |SRA | 14.4 | 16.5 | |p |38304. | | 183. |40 | |08491 08491| +880317 |PS Vul *|194356.0+270807 |E: | 6.28 |( 0.076 )| |V | | | | |B7V+G1:III |07964 BD | +880318 |PT Vul *|195227.9+250929 |ZZA | 15.11 |( 0.05 )| |V | | | | |DA |10195 04788| +880319 |PU Vul *|202113.3+213419 |NC | 8.7 | 16.6 | |p | | | | |A4II-F8Iab+M6IIIe|10196 04797| +880320 |PV Vul |193152.7+255815 |SR | 16.7 | 18.2 | |p | | | | | |08753 UCAC2| +880321 |PW Vul |192605.0+272158 |N | 6.43 | 17. : | |V | | | | | |67387 67388| +880322 |PX Vul |192640.3+235351 |INB | 11.56 | 11.82 | |V | | | | | |67390 67390| +880323 |PY Vul |193713.8+274319 |ZZA | 13.0 |( 0.02 : )| |V | | | | | |67041 67391| +880324 |PZ Vul |194408.7+225739 |M: | 17.6 | 18.7 | |R | | | | | |67392 67392| +880325 |QQ Vul |200541.9+223959 |XM | 14.4 | 17.0 | |B | | | | | |67394 67394| +880326 |QR Vul |201515.9+253531 |GCAS | 4.60 | 4.80 | |V | | | | | |67396 BD | +880327 |QS Vul |201530.2+233032 |EA/GS | 5.15 |( 0.12 )| |V | | | | | |67397 BD | +880328 |QT Vul |205605.5+235612 |SR | 10.3 | 11.4 | |V | | | | | |67269 BD | +880329 |QU Vul |202646.0+275043 |NA | 5.2 |< 11.2 | |V | | | | | |68361 68361| +880330 |QV Vul |190440.3+214614 |NA | 7.0 | 19. | |V | | | | | |69294 69009| +880331 |QW Vul |191231.5+242138 |ACV | 9.94 |( 0.15 )| |V | | | | | |69295 BD | +880332 |QX Vul |194524.3+275059 |INS: | 15.7 |< 17.5 | |R | | | | | |69296 69307| +880333 |QY Vul |194615.9+281619 |E/WR | 10.43 | 10.53 | |B | | | | | |69299 69224| +880334 |QZ Vul |200249.6+251411 |XN | 17.5 |< 20. | |B | | | | | |69300 | +880335 |V0335 Vul |192314.1+242740 |SR | 10.1 | 12. | |p | | | | | |71164 71164| +880336 |V0336 Vul |193441.9+235322 |SRB: | 7.7 | 9.6 | |V | | | | | |71188 71188| +880337 |V0337 Vul |190618.0+253421 |M | 12.5 |< 16.0 | |V | | | | | |72071 72071| +880338 |V0338 Vul |191013.6+232040 |SR | 13.2 |< 15. | |V | | | | | |72071 72071| +880339 |V0339 Vul |191112.3+244441 |M | 12.7 | 16.0 | |V | | | | | |72071 72071| +880340 |V0340 Vul |191242.7+231126 |M | 11.8 |< 15. | |V | | | | | |72071 72071| +880341 |V0341 Vul |192145.2+244317 |SR | 12.9 |< 15.8 | |V | | | | | |72071 72071| +880342 |V0342 Vul |192200.9+230625 |M | 12.2 | 15.2 | |V | | | | | |72071 72071| +880343 |V0343 Vul |192202.0+262222 |SR | 13.4 |< 16.2 | |V | | | | | |72071 72071| +880344 |V0344 Vul |192241.1+255838 |M | 12.5 |< 15.2 | |V | | | | | |72071 72071| +880345 |V0345 Vul |192348.6+262721 |IB | 13.3 | 14.7 | |V | | | | | |72071 72071| +880346 |V0346 Vul |192555.6+263823 |SR | 13.2 |< 15.2 | |V | | | | | |72071 72071| +880347 |V0347 Vul |192745.9+244234 |M | 11.9 | 15.2 | |V | | | | | |72071 72071| +880348 |V0348 Vul |193014.9+241010 |M | 14.2 |< 16.0 | |V | | | | | |72071 72071| +880349 |V0349 Vul |193110.5+233034 |M | 11.4 | 15.2 | |V | | | | | |72071 72071| +880350 |V0350 Vul |193920.5+234418 |M | 11.7 |< 15.0 | |V | | | | | |72071 72071| +880351 |V0351 Vul |194020.2+233258 |IB | 14.0 | 15.0 | |V | | | | | |72071 72071| +880352 |V0352 Vul |194102.4+245235 |M | 12.1 |< 15.2 | |V | | | | | |72071 72071| +880353 |V0353 Vul |194922.1+223740 |M | 13.0 |< 15.5 | |V | | | | | |72071 72071| +880354 |V0354 Vul |195008.6+223218 |M | 13.2 |< 15.2 | |V | | | | | |72071 72071| +880355 |V0355 Vul |195115.0+261057 |M: | 12.7 |< 15.2 | |V | | | | | |72071 72071| +880356 |V0356 Vul |195201.7+270946 |SR | 12.0 | 15.0 | |V | | | | | |72071 72071| +880357 |V0357 Vul |195357.1+230824 |SR | 13.0 | 15.0 | |V | | | | | |72071 72071| +880358 |V0358 Vul |195512.4+223106 |M | 12.1 |< 15.0 | |V | | | | | |72071 72071| +880359 |V0359 Vul |195557.1+222100 |M | 11.3 | 14.5 | |V | | | | | |72071 72071| +880360 |V0360 Vul |195628.2+231612 |SRB | 12.4 | 14.2 | |V | | | | | |72071 72071| +880361 |V0361 Vul |195802.9+224930 |IB | 13.0 | 14.7 | |V | | | | | |72071 72071| +880362 |V0362 Vul |200248.5+222828 |GAL | 16.0 | 17.7 | |p | | | | | |72175 72176| +880363 |V0363 Vul |200620.2+252726 |M | 12.5 |< 15.2 | |V | | | | | |72071 72071| +880364 |V0364 Vul |200826.6+253551 |IB | 13.8 |< 15.2 | |V | | | | | |72071 72071| +880365 |V0365 Vul |201001.1+253800 |M | 11.8 | 15.1 | |V | | | | | |72071 72071| +880366 |V0366 Vul |201237.9+243648 |M | 12.4 |< 15.2 | |V | | | | | |72071 72071| +880367 |V0367 Vul |201540.5+252638 |M | 10.3 |< 15.2 | |V | | | | | |72071 72071| +880368 |V0368 Vul |201605.7+241339 |M | 11.6 |< 15.2 | |V | | | | | |72071 72071| +880369 |V0369 Vul |201822.8+263917 |M | 11.8 |< 15.2 | |V | | | | | |72071 72071| +880370 |V0370 Vul |201838.0+283528 |SRA | 13.5 | 15.0 | |V | | | | | |72071 72071| +880371 |V0371 Vul |202021.9+224349 |M | 6.7 | 8.7 | |K | | | | | |72121 2MASS| +880372 |V0372 Vul |202134.5+291445 |SR | 12.4 | 15.0 | |V | | | | | |72071 72071| +880373 |V0373 Vul |202209.9+222300 |SR | 13.0 | 14.9 | |V | | | | | |72071 72071| +880374 |V0374 Vul |202608.8+280939 |SR: | 12.8 |< 15.0 | |V | | | | | |72071 72071| +880375 |V0375 Vul |202728.3+241722 |M | 12.0 |< 16.0 | |V | | | | | |72071 72071| +880376 |V0376 Vul |191513.8+251258 |SR | 10.3 | 11.3 | |r | | | | | |73345 73346| +880377 |V0377 Vul |192250.9+261545 |LPB | 5.18 |( 0.03 )| |V | | | | | |73347 BD | +880378 |V0378 Vul |192815.6+193321 |WR | 14.3 | 14.8 | |B | | | | | |73348 73348| +880379 |V0379 Vul |194954.7+282623 |ELL | 6.22 | 6.29 | |V | | | | | |73349 BD | +880380 |V0380 Vul |195011.1+262652 |SR | 13.0 | 15.0 | |V | | | | | |73350 73350| +880381 |V0381 Vul |201045.4+264436 |DSCTC | 10.23 |( 0.03 )| |V | | | | | |73351 73241| +880382 |V0382 Vul |201118.7+263118 |DSCTC | 10.41 |( 0.03 )| |V | | | | | |73351 73241| +880383 |V0383 Vul |201625.6+222347 |DSCTC | 7.2 |( 0.03 v )| |V | | | | | |73279 BD | +880384 |V0384 Vul |210748.4+280532 |EW | 12.72 | 13.16 | |V | | | | | |73003 UCAC2| +880385 |V0385 Vul |212044.0+280921 |RRC: | 16.33 | 16.65 | |V | | | | | |73003 GSC22| +880386 |V0386 Vul |212142.9+280909 |RRC | 15.15 | 15.58 | |V | | | | | |73003 UCAC2| +880387 |V0387 Vul |185958.1+224852 |LB | 6.21 | 6.32 | |Hp| | | | | |HIP HIP | +880388 |V0388 Vul |191308.7+225208 |ACV: | 9.69 | 9.82 | |Hp| | | | | |HIP HIP | +880389 |V0389 Vul |191931.9+223415 |SRB | 6.69 | 6.98 | |Hp| | | | | |HIP HIP | +880390 |V0390 Vul |192539.0+260614 |ACV: | 7.39 | 7.41 | |Hp| | | | | |HIP HIP | +880391 |V0391 Vul |193136.4+265912 |LPB | 7.32 | 7.36 | |Hp| | | | | |HIP HIP | +880392 |V0392 Vul |193404.7+241837 |ACV: | 9.99 | 10.14 | |Hp| | | | | |HIP HIP | +880393 |V0393 Vul |193657.9+205707 |BY: | 9.39 | 9.56 | |Hp| | | | | |HIP HIP | +880394 |V0394 Vul |194902.7+202531 |E: | 8.75 | 8.92 | |Hp| | | | | |HIP HIP | +880395 |V0395 Vul |195104.1+223636 |BE | 4.78 | 4.97 | |V | | | | | |HIP HIP | +880396 |V0396 Vul |195104.7+274301 |BE | 7.77 | 7.82 | |Hp| | | | | |HIP HIP | +880397 |V0397 Vul |200043.4+234756 |ELL: | 7.38 | 7.46 | |Hp| | | | | |HIP HIP | +880398 |V0398 Vul *|201032.2+292150 |LPB: | 7.54 | 7.62 | |Hp| | | | | |HIP HIP | +880399 |V0399 Vul |202510.8+212919 |EA: | 7.01 | 7.17 | |Hp| | | | | |HIP HIP | +880400 |V0400 Vul |204042.3+260445 |EA: | 6.76 | 6.82 | |Hp| | | | | |HIP HIP | +880401 |V0401 Vul |204300.2+264834 |BY: | 10.85 | 11.03 | |Hp| | | | | |HIP HIP | +880402 |V0402 Vul |204806.3+272726 |EB: | 8.32 | 8.45 | |Hp| | | | | |HIP HIP | +880403 |V0403 Vul |210555.5+205648 |EB | 6.83 | 6.88 | |Hp| | | | | |HIP HIP | +880404 |V0404 Vul |210625.0+213807 |SRD | 9.46 | 9.69 | |Hp| | | | | |HIP HIP | +880405 |V0405 Vul |195304.9+211449 |UGSU: | 15.0 : | 18. : | |p | | | | | |75284 75284| +880406 |V0406 Vul |185841.5+223930 |XND | 15.33 |< 24. | |V | | | | | |76193 76194| +880407 |V0407 Vul |191426.1+245644 |XM | 18.2 |( 0.06 )| |I | | | | | |76205 76205| +880408 |V0408 Vul |193027.4+201604 |EW: | 18.4 | 18.8 | |V | | | | | |76211 76211| +880409 |V0409 Vul |194013.5+223135 |BE: | 11.73 | 12.05 | |V | | | | | |76215 UCAC2| +880410 |V0410 Vul |194259.5+232535 |CEP | 17.75 | 18.48 | |V | | | | | |76209 2MASS| +880411 |V0411 Vul |194307.3+230433 |CEP | 16.03 | 16.37 | |Ic| | | | | |76209 2MASS| +880412 |V0412 Vul |194536.7+241209 |CEP | 16.22 | 16.68 | |V | | | | | |76209 2MASS| +880413 |V0413 Vul |194611.4+240904 |CEP | 15.30 | 15.65 | |V | | | | | |76209 UCAC2| +880414 |V0414 Vul |194611.9+250033 |CEP | 15.01 | 15.45 | |Ic| | | | | |76209 2MASS| +880415 |V0415 Vul |194646.9+244647 |CEP | 13.92 | 14.23 | |V | | | | | |76209 UCAC2| +880416 |V0416 Vul |195025.9+265145 |CEP | 15.93 | 16.30 | |Ic| | | | | |76209 2MASS| +880417 |V0417 Vul |195049.3+261945 |CEP | 16.10 | 16.46 | |V | | | | | |76209 UCAC2| +880418 |V0418 Vul |195941.9+223350 |M: | 13.6 |< 16.0 | |* | | | | | |76057 2MASS| +880419 |V0419 Vul |201019.5+292009 |SR: | 11.3 | 12.3 | |* | | | | | |76221 2MASS| +880420 |V0420 Vul |205936.8+262834 |M | 10.3 | 13.0 | |V | | | | | |76230 76230| +880421 |V0421 Vul |210310.3+242707 |SR | 7.44 | 7.61 | |V | | | | | |76122 DM | +880422 |V0422 Vul |210511.0+265414 |M | 11.0 |< 13.2 | |V | | | | | |76232 UCAC2| +880423 |V0423 Vul |192744.2+242327 |SR: | 10.4 | 12.3 | |* | | | | | |77156 UCAC2| +880424 |V0424 Vul |192942.4+254445 |SR: | 12.1 | 13.0 | |* | | | | | |77156 2MASS| +880425 |V0425 Vul |193006.6+233440 |M: | 12.5 |< 14.9 | |* | | | | | |77156 2MASS| +880426 |V0426 Vul |193053.9+205240 |M: | 13.1 | 15.7 | |* | | | | | |77156 2MASS| +880427 |V0427 Vul |193111.4+251745 |SR: | 13.0 | 13.9 | |* | | | | | |77156 2MASS| +880428 |V0428 Vul |193209.9+211425 |SR: | 11.8 | 14.2 | |* | | | | | |77156 2MASS| +880429 |V0429 Vul |193250.6+211722 |SR: | 11.4 | 12.9 | |* | | | | | |77156 2MASS| +880430 |V0430 Vul |194925.9+223404 |SR: | 12.5 | 13.2 | |* | | | | | |77156 UCAC2| +880431 |V0431 Vul |195029.3+231442 |SR: | 12.5 | 13.3 | |* | | | | | |77156 2MASS| +880432 |V0432 Vul |200015.6+235844 |SR: | 10.9 | 12.0 | |* | | | | | |77156 2MASS| +880433 |V0433 Vul |200032.5+224015 |SR: | 10.3 | 11.2 | |* | | | | | |77156 UCAC2| +880434 |V0434 Vul |200033.2+224341 |SR: | 11.4 | 12.3 | |* | | | | | |77156 2MASS| +880435 |V0435 Vul |200101.4+253745 |SR: | 11.3 | 12.8 | |* | | | | | |77156 2MASS| +880436 |V0436 Vul |202718.6+281944 |BE | 8.81 |( 0.05 )| |V | | | | | |77119 DM | +880437 |V0437 Vul |203901.2+272934 |SRA | 13.3 | 15.0 | |V | | | | | |77144 77144| +880438 |V0438 Vul |204321.1+262437 |M | 12.5 |< 20. | |V | | | | | |77144 77144| +880439 |V0439 Vul |204412.4+261247 |M | 12.0 | 15.8 | |V | | | | | |77144 77144| +880440 |V0440 Vul |204501.2+271507 |M | 12.5 |< 16.0 | |V | | | | | |77144 77144| +880441 |V0441 Vul |204905.9+232152 |SR | 13.1 |< 16.0 | |V | | | | | |77144 77144| +880442 |V0442 Vul |205909.6+272639 |M | 2.97 | 4.07 | |K | | | | | |77081 77154| +880443 |V0443 Vul |210129.9+250343 |M | 12.0 | 15.0 | |V | | | | | |77144 77144| +880444 |V0444 Vul |210405.6+263211 |M | 12.2 | 15.0 | |V | | | | | |77144 77144| +880445 |V0445 Vul |210801.3+234345 |M | 10.5 | 14.4 | |V | | | | | |77144 77144| +880446 |V0446 Vul |210901.2+273123 |LB | 9.7 | 11.1 | |V | | | | | |77144 77144| +880447 |V0447 Vul |211343.6+280014 |M | 11.7 |< 16.0 | |V | | | | | |77144 77144| +880448 |V0448 Vul |212019.5+280858 |LB | 12.4 | 14.1 | |V | | | | | |77144 77144| +880449 |V0449 Vul |212518.9+270326 |SRA | 13.3 | 15.6 | |V | | | | | |77144 77144| +880450 |V0450 Vul |194205.5+231900 |BE | 10.05 | 10.37 | |V | | | | |B1e |78277 GSC | +880451 |V0451 Vul |195304.9+215133 |SRB | 11.9 | 12.7 | |V | | | 160. | | |78040 GSC | +880452 |V0452 Vul |200043.7+224239 |BY | 7.67 |( 0.03 )| |V | | | 12.039 | |G5V |78018 DM | +880453 |V0453 Vul |200924.8+240331 |M: | 12.2 | 14.8 | |* |51290 | | | | |78006 2MASS| +880454 |V0454 Vul |201035.8+255507 |M: | 10.9 | 13.7 | |* | | | | | |78006 2MASS| +880455 |V0455 Vul |202626.1+243039 |LB: | 11.3 | 13.2 | |V | | | | | |78292 GSC | +880456 |V0456 Vul |210018.0+275256 |EA | 12.14 | 12.81 | |V |52871.0792 | | 3.0421 | | |78214 GSC | +880457 |V0457 Vul |211858.2+261350 |BY | 8.45 |( 0.04 )| |V | | | 6.664 | |G8V |78018 DM | +880458 |V0458 Vul |195424.6+205252 |NA | 8.1 | 18. | |V |54322. |2007 | | |pec(Nova) |79182 79182| +880459 |V0459 Vul |194808.9+211527 |NA | 7.2 | 20. : | |V |54462. |2007 | | |pec(Nova) |79203 79242| +880460 |V0460 Vul |193918.1+201101 |LB | 10.6 | 11.4 | |V | | | | |M3 |79100 DM | +880461 |V0461 Vul |194851.6+230812 |SRB | 12.6 | 13.8 | |V | | | 145. | | |79100 79049| +880462 |V0462 Vul |200308.2+251726 |M: | 9.8 | 12.0 : | |* |51525. | | 398. : | | |79036 2MASS| +880463 |V0463 Vul |201142.7+215107 |SR: | 11.1 | 11.6 | |* | | | | | |79100 79040| +880464 |V0464 Vul |202450.1+280116 |LB | 13.3 | 14.2 | |* | | | | | |79040 79040| +880465 |V0465 Vul |210408.9+264750 |LB | 11.1 | 11.8 | |V | | | | | |79100 79010| +880466 |V0466 Vul |210522.9+281749 |RRAB | 13.6 | 14.8 | |* |51401.45 | | 0.4759 |20 | |79025 79010| +880467 |V0467 Vul |211723.9+215334 |EB | 12.44 | 12.85 | 12.70 |* |53185.827 | | 0.427417 | | |79004 GSC | +880468 |V0468 Vul |191145.8+223105 |SR | 11.8 | 12.3 | |* | | | 73. | | |80001 USNO | NL80_3 +880469 |V0469 Vul *|192852.2+271001 |LB: | 12.0 | 12.9 | |V | | | | |e |80077 80077| NL80_3 +880470 |V0470 Vul |192854.0+222136 |LB | 11.6 | 12.1 | |* | | | | | |80062 USNO | NL80_3 +880471 |V0471 Vul |193415.8+193415 |DCEP | 14.8 | 15.6 | |B |41548.42 | | 5.93844 |30 : | |80525 80525| NL80_3 +880472 |V0472 Vul |193709.2+195352 |EA | 14.5 |< 16.6 | |B |39411.3 | | 29.361 |06 | |80525 80525| NL80_3 +880473 |V0473 Vul |193751.9+213526 |EB | 11.6 | 12.0 | 11.7 |V |53530.7457 | | 0.5754471 | | |80001 GSC | NL80_3 +880474 |V0474 Vul |194151.1+222413 |DCEP | 13.3 | 14.3 | |V |51568.8 | | 19.9 | | |80081 USNO | NL80_3 +880475 |V0475 Vul |194259.1+231748 |LB | 15.6 |( 1.36 )| |Ic| | | | | |80528 80528| NL80_3 +880476 |V0476 Vul |194306.0+231649 |INB: | 17.22 |( 0.6 )| |Ic| | | 1.328 : | | |80528 80528| NL80_3 +880477 |V0477 Vul *|194306.8+231637 |DSCTC | 13.46 |( 0.06 )| |Ic| | | 0.0785819 | | |80528 80528| NL80_3 +880478 |V0478 Vul |194309.0+231707 |INB: | 15.92 |( 0.2 )| |Ic| | | 3.1709 : | | |80528 80528| NL80_3 +880479 |V0479 Vul *|194309.1+231749 |DSCTC | 13.33 |( 0.04 )| |Ic| | | 0.0718530 | | |80528 80528| NL80_3 +880480 |V0480 Vul |194309.3+231612 |INB: | 16.09 |( 0.3 )| |Ic| | | 0.78198 : | | |80528 80528| NL80_3 +880481 |V0481 Vul |194310.5+231725 |ELL | 13.42 |( 0.05 )|( 0.04 )|Ic| | | 0.61698 : | | |80528 80528| NL80_3 +880482 |V0482 Vul |194311.6+231820 |LB | 16.63 |( 0.7 )| |Ic| | | | | |80528 80528| NL80_3 +880483 |V0483 Vul |194311.6+231826 |INB: | 13.98 |( 0.09 )| |Ic| | | 3.0469 : | | |80528 80528| NL80_3 +880484 |V0484 Vul |194311.7+231600 |LB: | 14.7 |( 0.11 )| |Ic| | | | | |80528 80528| NL80_3 +880485 |V0485 Vul |194312.2+231717 |LPB: | 13.36 |( 0.07 )| |Ic| | | 0.848250 : | | |80528 80528| NL80_3 +880486 |V0486 Vul |194312.9+231819 |INB: | 14.84 |( 0.10 )| |Ic| | | 1.24083 : | | |80528 80528| NL80_3 +880487 |V0487 Vul |194314.6+231601 |EA | 10.76 |( 0.06 )| |Ic|51422.45 :| | | |B1V |80528 80528| NL80_3 +880488 |V0488 Vul |194320.3+231921 |INB: | 12.01 |( 0.03 )| |Ic| | | | | |80528 80528| NL80_3 +880489 |V0489 Vul |194321.0+231902 |LB | 15.58 |( 1.53 )| |Ic| | | | | |80528 80528| NL80_3 +880490 |V0490 Vul |194352.7+231141 |SRB | 9.8 | 10.3 | |V | | | 79.5 | |M6III |80002 DM | NL80_3 +880491 |V0491 Vul *|194622.7+243748 |EA | 9.94 | 10.35 : | 10.33 : |V |51511.507 | | 7.6699 | |B0.5V |80023 DM | NL80_3 +880492 |V0492 Vul |194755.4+272256 |SRB | 12.1 | 12.5 | |V | | | 27.3 | |M4III |80009 GSC | NL80_3 +880493 |V0493 Vul |195152.8+272503 |EB | 11.30 | 11.65 | 11.60 |V |52791.775 | | 1.2966 | |B3IVn |80002 GSC | NL80_3 +880494 |V0494 Vul |195316.6+203343 |DSCT | 11.8 | 12.0 | |V | | | 0.135674 | | |80531 80531| NL80_3 +880495 |V0495 Vul *|195345.3+203033 |EA | 9.76 | 10.16 | 10.14 |V |54651.4603 | | 1.635135 |10 |B9 |80532 DM | NL80_3 +880496 |V0496 Vul |195349.7+233040 |EW | 11.90 | 12.45 | 12.35 |V |53579.416 | | 0.301201 | | |80002 GSC | NL80_3 +880497 |V0497 Vul |195511.6+245710 |EW | 12.9 | 13.7 | 13.6 |V |54643.803 | | 0.3642332 | | |80001 GSC | NL80_3 +880498 |V0498 Vul *|195951.3+224232 |UGSU | 15.6 | 23. : | |* | | | | | |80233 80537| NL80_3 +880499 |V0499 Vul |201750.7+285807 |EA | 11.19 | 11.60 | 11.60 |* |51464.816 | | 0.83951 |11 |G5 |80011 GSC | NL80_3 +880500 |V0500 Vul |202056.1+210045 |EA | 12.44 | 13.0 : | 12.6 : |V |51332.770 | | 0.73574 |18 | |80042 GSC | NL80_3 +880501 |V0501 Vul |202114.4+215129 |EW | 15.0 |( 0.45 )|( 0.35 )|* |53233.0679 | | 0.31327 | | |80548 80548| NL80_3 +880502 |V0502 Vul |203101.0+240200 |EA | 10.39 | 11.08 | 10.60 |V |51467.654 | | 1.551913 |22 |A0 |80042 DM | NL80_3 +880503 |V0503 Vul |203529.5+260726 |EW | 11.9 | 12.6 | 12.4 |V |53128.913 | | 0.320995 | | |80002 GSC | NL80_3 +880504 |V0504 Vul |203904.7+233847 |BY | 12.28 |( 0.22 *)| |V | | | 0.7145 | | |80021 GSC | NL80_3 +880505 |V0505 Vul |204009.1+250330 |SR | 11.85 | 12.38 | |* | | | 65. | | |80001 2MASS| NL80_3 +880506 |V0506 Vul |204232.1+203645 |SR | 12.0 | 12.6 | |* | | | 76. | | |80001 USNO | NL80_3 +880507 |V0507 Vul *|204945.8+241245 |RRC | 11.46 | 12.0 | |V |54632.809 | | 0.336126 |40 | |80001 GSC | NL80_3 +880508 |V0508 Vul |205059.2+262814 |LB | 12.2 | 12.9 | |* | | | | | |80062 USNO | NL80_3 +880509 |V0509 Vul |205205.9+214922 |RRAB | 13.2 | 14.0 | |V |52756.8 | | 0.456367 |15 | |80001 GSC | NL80_3 +880510 |V0510 Vul |205659.6+234430 |BY | 11.2 | 11.4 | |* | | | 15.2382 | | |80067 80067| NL80_3 +880511 |V0511 Vul |205818.8+252814 |EW | 12.41 | 12.86 | 12.83 |Rc|54289.2333 | | 0.38451 | | |80562 80562| NL80_3 +880512 |V0512 Vul |210338.2+212808 |EA | 12.20 | 13.05 | 12.30 |* |51362.77 | | 4.38093 |11 | |80013 GSC | NL80_3 +880513 |V0513 Vul |210455.7+245615 |EW | 12.1 | 12.7 | 12.6 |V |54305.6870 | | 0.96361 | | |80002 GSC | NL80_3 +880514 |V0514 Vul |210704.6+244542 |EB | 11.30 | 11.90 | 11.75 |V |54253.8243 | | 1.151470 | | |80002 GSC | NL80_3 +880515 |V0515 Vul |212519.6+265654 |BY | 11.26 |( 0.08 *)| |V | | | 2.8246 | | |80021 GSC | NL80_3 +880516 |V0516 Vul |213009.2+251043 |EW: | 14.3 |( 0.70 *)| |R |52874.5556 | | 0.3816 : | | |80017 80017| NL80_3 diff -Nru stellarium-0.12.1/util/GCVS/varcat-hip.dat stellarium-0.12.4/util/GCVS/varcat-hip.dat --- stellarium-0.12.1/util/GCVS/varcat-hip.dat 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/util/GCVS/varcat-hip.dat 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,20067 @@ +010001 |R And *|002402.0+383437 |M | 5.8 | 15.2 | |V |53820. | | 409.2 |38 |S3,5e-S8,8e(M7e) |HIP 00002| +010003 |T And |002223.1+265946 |M | 7.7 | 14.5 | |V |50854. | | 281.0 |46 |M4e-M7.5e |00001 00002| +010004 |U And |011529.7+404308 |M | 9.0 | 15.0 | |V |49564. | | 347.7 |40 |M6e |00001 00002| +010005 |V And |005006.3+353910 |M | 9.0 | 15.2 | |V |51528. | | 256.4 |45 |M2e-M3e |00001 00002| +010006 |W And *|021733.0+441818 |M | 6.7 | 14.6 | |V |48654. | | 397.3 |42 |S6,1e-S9,2e |HIP 00002| +010007 |X And |001609.5+470045 |M | 8.5 | 15.2 | |V |49620. | | 343.4 |37 |S2,9e-S5,5e |00001 00002| +010008 |Y And |013936.9+392035 |M | 8.2 | 15.1 | |V |49489. | | 220.5 |47 |M3e-M4.5e |00001 00002| +010009 |Z And *|233340.0+484906 |ZAND | 7.7 | 11.3 | |V | | | | |M2III+B1eq |N0036 00002| +010010 |RR And |005123.3+342237 |M | 8.4 | 15.6 | |V |49644. | | 330.6 |52 |S6.5,2e |00001 00002| +010011 |RS And *|235521.8+483818 |SRA | 7.0 | 9.4 | |V |38803. | | 136. | |M7-M10 |00001 DM | +010012 |RT And *|231110.1+530133 |EA/RS | 8.97 | 9.83 | 9.28 |V |51421.737 | | 0.6289216 |17 *|F8V+K1 |00001 HIP | +010013 |RU And *|013836.3+384014 |SRA | 9.9 | 14.5 | |V | | | 238.3 |49 |M5e-M6e |00001 00002| +010014 |RV And |021102.6+485645 |SRA | 9.0 | 11.5 | |V |48667. | | 168.9 | |M4e |00001 00002| +010015 |RW And |004718.9+324109 |M | 7.9 | 15.7 | |V |53360. | | 430. |36 |M5e-M10e(S6,2e) |00001 00002| +010016 |RX And *|010435.5+411758 |UGZ | 10.2 | 15.1 | |V | | |( 13. ) | |pec(UG) |09782 72085| +010017 |RY And *|232037.5+393714 |M | 10.0 | 15.3 | |V |53400. | | 391.2 | |M8 |00001 00002| +010018 |RZ And |230930.0+530240 |CST | 9.43 | | |V | | | | |K0 |00098 00002| +010019 |SS And *|231130.1+525313 |SRC | 10.0 | 11.4 | |p | | | 152.5 | |M6II |00098 00098| +010020 |ST And |233845.1+354621 |SRA | 7.7 | 11.8 | |V |53720. | | 326.6 |52 |C4,3e-C6,4e |00001 00002| +010021 |SU And *|000436.4+433305 |LC | 8.0 | 8.5 | |V | | | | |C6,4(C5II) | HIP | +010022 |SV And *|000420.1+400636 |M | 7.7 | 14.7 | |V |53220. | | 313. |42 |M5e-M7e |00001 00002| +010023 |SW And *|002343.1+292404 |RRAB | 9.14 | 10.09 | |V |53735.538 | | 0.4422618 |17 |A7III-F8III |00001 HIP | +010024 |SX And |013335.9+463113 |M | 8.7 |< 14.0 | |V |53208. | | 332.8 | |M6.5e |00001 00002| +010025 |SY And *|001316.4+434241 |EA | 10.7 | 12.2 | |V |17796.36 | | 34.90847 |06 |A0+K1 |08006 08006| +010026 |SZ And |225934.5+425031 |M | 9.5 |< 17.0 | |V |53520. | | 344. |42 |M2e |00001 00002| +010027 |TT And *|231322.9+460851 |EA | 11.5 | 13.1 | 11.6 |V |53662.4564 | | 2.765101 |09 *|A |N0038 GSC | +010028 |TU And |003222.7+260146 |M | 7.5 | 13.5 | |V |53700. | | 316.8 |48 |M5e |00001 00002| +010029 |TV And |225803.0+424411 |SRB | 8.3 | 11.5 | |V | | | 110. | |M4e-M5e |00001 00002| +010030 |TW And *|000318.2+325045 |EA | 8.98 | 11.04 | 9.13 |V |53693.355 | | 4.122834 |13 |F0V+K0 |00001 HIP | +010031 |TX And *|012158.4+384143 |M: | 10.4 | 13.8 | |V |32461. | | 233.4 |60 |M1e |00001 00002| +010032 |TY And |231444.2+404739 |SRB | 8.8 | 10.5 | |V | | | 260. : | |M5e-M6e |00001 00002| +010033 |TZ And |235051.8+473028 |LB: | 8.0 | 9.3 | |V | | | | |M5-6III |00001 HIP | +010034 |UU And *|004345.1+305620 |EA | 11.2 | 14.2 |( 0.2 R)|V |52925.426 | | 1.486293 |17 *|A8IV/V |00001 01136| +010035 |UV And |012917.6+363922 |SRB | 10.84 | 11.9 | |V | | | 227. | | |75119 75119| +010036 |UW And |001410.9+290121 |M | 9.4 |< 15.0 | |V |54024. | | 237. | |M5 |00001 00002| +010037 |UX And |023328.8+453916 |SRB | 8.2 | 9.9 | |V | | | 200. | |M6III |00001 00002| +010038 |UY And |023823.8+391010 |LB | 7.4 | 12.3 | |V | | | | |C5,4(N3) |00104 00002| +010039 |UZ And |011611.2+414458 |M | 9.1 | 15.6 | |V |53990. | | 316.0 |41 |M7e |00001 00002| +010041 |VW And |000440.1+344514 |CST | 11.3 | | |V | | | | | |00681 UCAC2| +010042 |VX And *|001954.0+444234 |SRA | 7.5 | 9.7 | |V | | | 375. | |C4,5J(N7) |N0039 00002| +010043 |VY And |230149.5+455309 |SRB | 9.6 | 11.8 | |V | | | 149. : | |C3,5J-C4,4-5(R8) |00310 00002| +010045 |WW And *|234453.5+454112 |EA | 10.92 |( 0.67 )|( 0.16 )|V |34618.185 | | 23.285213 |05 *|A5+F3p |N0040 HIP | +010046 |WX And *|004537.3+284500 |EA | 12.1 | 13.8 | |V |52616.404 | | 3.001134 |12 |F5IV |N0041 01936| +010047 |WY And *|234129.7+473544 |SRD | 8.65 | 9.65 | |V | | | 109.65 |43 |G2e-K2(M3) |N0042 DM | +010048 |WZ And *|010143.6+380547 |EB | 11.16 | 12.00 | 11.61 |V |52500.2323 | | 0.6956638 | |F5 |N0041 00002| +010049 |XX And *|011727.4+385702 |RRAB | 10.08 | 11.13 | |V |53662.575 | | 0.722757 |19 |A8-F6 |00001 00002| +010051 |XZ And *|015651.5+420602 |EA | 9.91 | 12.45 | |V |52500.5129 | | 1.3573091 |16 *|A1V |N0041 00002| +010052 |YY And |235732.3+320221 |M | 11.9 |< 15.2 | |p |51504. | | 227.8 | | |08009 GSC | +010053 |YZ And |002714.2+305349 |M | 9.7 | 15.9 | |V |54092. | | 207.0 | |M5e |00001 00002| +010055 |AA And *|230522.8+474035 |EB | 10.3 | 11.2 | 10.6 |p |52500.730 | | 0.9350969 | |B8V |N0041 HIP | +010056 |AB And *|231132.1+365335 |EW | 9.49 | 10.46 | 10.32 |V |52500.0599 | | 0.3318912 | |G5+G5V |N0041 00002| +010057 |AC And *|231802.4+484658 |* | 10.70 |( 1.2 )| |V |28009.31 | | 0.7112376 | |A9-F8 |N0043 HIP | +010058 |AD And *|233645.0+484016 |EB | 11.2 |( 0.62 )|( 0.58 )|V |52500.4854 | | 0.986202 | |A0V |N0041 01983| +010062 |AH And |020554.6+404327 |M | 9.3 |< 14.5 | |V |50110. | | 480.2 | |M4-M5e |00001 00114| +010063 |AI And |231818.8+485731 |M | 11.5 | 15.3 | |p |42498. | | 327. | | |00001 00114| +010064 |AK And |232111.6+500012 |M | 10.0 |< 15.0 | |V |52930. | | 317. | |S: |00001 00002| +010065 |AL And |232642.6+451456 |M | 10.0 |< 18. | |V |50655. | | 293. | | |00001 00002| +010066 |AM And *|000507.5+482705 |EA | 12.5 | 13.7 | |p |30696.373 | | 8.850510 |08 | |03115 GSC | +010067 |AN And *|231823.3+414625 |EB | 5.96 | 6.11 | 6.05 |V |48500.732 | | 3.21952 | |A7mIII-IV |HIP DM | +010068 |AO And |231759.6+464512 |M | 10.3 | 14.5 | |V |51512. | | 332.4 | | |00001 GSC | +010069 |AP And *|234930.7+454721 |EA | 11.3 | 11.9 | 11.8 |p |52500.2120 | | 1.5872910 |12 *|F5 |N0041 GSC | +010070 |AQ And *|002731.7+353515 |SRB | 7.7 | 9.5 | |V | | | 169. | |C5,4(Nb) |N0039 DM | +010071 |AR And *|014503.3+375633 |UGSS | 11.0 | 17.6 | |V | | |( 23. ) | |pec(UG) |09782 72085| +010073 |AT And *|234230.8+430052 |RRAB | 10.42 | 10.92 | |V |53287.4851 | | 0.6169122 |21 |F0-F7 |00001 HIP | +010074 |AU And |014720.7+394756 |LB | 9.9 | 10.6 | |V | | | | |M3 |01991 DM | +010076 |AW And *|235536.3+452035 |SR: | 12.4 | 13.2 | |p | | | 330. : | | |01992 GSC | +010077 |AX And |023246.1+462921 |M | 9.3 | 16.2 | |V |51980. | | 378. | | |00001 00002| +010078 |AY And |230137.0+525121 |CST: | 11.0 | | |p | | | | | |03118 00150| +010079 |AZ And |230351.0+485154 |M | 10.2 |< 14.0 | |V |53985. | | 194.4 | |M4 |00001 00002| +010081 |BC And |230053.1+463038 |LB | 10.3 | 11.3 | |p | | | | |M7III |00098 00098| +010082 |BD And *|230705.2+505731 |EB | 11.3 | 11.7 | 11.4 |p |52500.3873 | | 0.4629057 | |F8 |N0041 00098| +010083 |BE And |231943.0+484009 |SRB | 10.2 | 11.9 | |p | | | 156.8 | |M5 |02268 02345| +010084 |BF And |232153.4+491526 |LB | 11.2 | 12.2 | |p | | | | |K-M: |00098 00098| +010085 |BG And |233059.4+431556 |M | 8.5 | 15.6 | |V |54045. | | 289.5 | |S6.5,5e |00001 00002| +010086 |BH And |001715.6+223541 |SRB | 10.0 | 11.4 | |V | | | 98.5 | |M5e |01090 01090| +010087 |BI And |022554.3+380722 |SRB | 11.9 | 13.0 | |p | | | 159.5 | |S8,8 |00821 00002| +010088 |BK And *|233506.0+410611 |RRAB | 12.40 | 13.43 | |V |50740.413 | | 0.4216035 |20 | |N0045 00534| +010089 |BL And *|231124.3+515231 |EB | 11.15 |( 0.77 )|( 0.32 )|V |52500.3814 | | 0.72237587 | |A0 |N0041 02345| +010090 |BM And |233738.4+482413 |INSB | 11.63 | 14.02 | |V | | | | |F8ea-K5Vea |N0046 02376| +010091 |BN And |011047.8+340737 |LB | 10.8 | 11.9 | |p | | | | |M4 |00680 02377| +010094 |BQ And |230205.1+513540 |M | 12.0 | 15.7 | |p |51440. | | 156. |45 | |00001 02344| +010098 |BU And *|232339.9+394337 |M | 9.4 | 14.2 | |V |53585. | | 378. | |M7e |00001 00002| +010100 |BW And |015633.1+390452 |SR | 12.3 | 14.9 | |p |51570. | | 179.8 |24 | |00868 01090| +010101 |BX And *|020903.4+404739 |EB | 8.87 | 9.53 | 9.12 |V |52500.3454 | | 0.6101119 | |F2V |N0041 HIP | +010102 |BY And |233733.4+474105 |SRD: | 10.4 | 11.7 | |p | | | | |K9 |08658 DM | +010103 |BZ And |003737.7+453615 |LB | 7.7 | 8.6 | |V | | | | |K9 |00821 02377| +010104 |CC And *|004348.0+421656 |DSCT | 9.19 | 9.46 | |V | | | 0.1249078 |40 |F3IV-V |02269 HIP | +010105 |CD And *|012628.4+442125 |EA | 9.9 | 10.4 | 10.4 |p |26414.418 | | 68.8832 |06 *|F8 |N0050 02377| +010106 |CE And *|012933.3+463933 |LB | 10.3 | 12.4 | |p | | | | |M2 |00821 02377| +010107 |CF And |230343.8+375114 |LB | 9.8 | 11.0 | |p | | | | |M7 |08021 DM | +010108 |CG And *|000043.6+451512 |ACV | 6.32 | 6.42 | |V |41152.67 | | 3.73975 | |B9pSiEu |69120 HIP | +010110 |CI And *|015508.3+434557 |RRAB | 11.76 | 12.66 | |V |51441.803 | | 0.4847267 |18 |A8 |00001 HIP | +010111 |CK And |231301.0+423041 |LB | 11.0 | 12.1 | |p | | | | |K5 |00821 00821| +010112 |CL And |231451.5+504627 |M | 11.1 |< 17.3 | |p |51410. | | 353.5 | |M8 |02267 02270| +010113 |CM And |234306.6+352845 |SR | 11.9 |< 13.7 | |p |35457. | | 374.0 | |M8 |00001 02380| +010114 |CN And *|002030.5+401334 |EB | 9.62 | 10.21 | 9.90 |V |50698.9447 | | 0.46279092 | |F5V |N0049 DM | +010115 |CO And *|011124.8+465749 |EA | 11.1 | 12.1 : | |p |52501.5247 | | 1.8276678 |14 |F8 |N0041 02271| +010116 |CP And *|021251.2+453752 |EA | 11.4 | 12.9 : | |p |53674.285 | | 3.608986 |11 |A5 |00001 02272| +010117 |CQ And |023132.0+455637 |SRA | 10.3 | 13.3 | |V |54095. | | 189.6 | |M4 |00001 00002| +010118 |CR And |023813.0+463330 |LB: | 10.8 | 11.6 | |p | | | | |M2 |00814 DM | +010119 |CS And |225805.8+484534 |SR | 12.1 | 13.4 | |p |51420. | | 117. | |M6.5 |02267 02344| +010121 |CU And *|230101.6+495825 |EA | 12.5 | 16. | |p |50344.322 | | 1.71601 |15 | |00001 02344| +010122 |CV And |230100.0+501832 |SRA | 12.4 | 13.8 | |p |51360. | | 261. | |45 |02267 02344| +010126 |CZ And |230900.9+493652 |EA | 12.4 | 13.0 | |p |31001.482 | | 2.717200 |07 |A6 |02267 02375| +010132 |DI And *|232656.3+485721 |CWB: | 12.3 | 13.6 | |p |51466.47 | | 3.338 | | |N0051 02345| +010133 |DK And *|232845.9+503429 |EW | 12.5 | 13.1 | 13.1 |p |51435.4353 | | 0.4892224 | | |N0052 02375| +010135 |DM And |233200.7+351149 |RRAB | 12.4 | 13.2 | |p |53320.357 | | 0.630387 |28 | |00001 00558| +010137 |DO And *|001057.1+420640 |EB | 12.3 | 13.8 | 12.9 |p |52501.036 | | 1.348707 | | |N0041 00534| +010138 |DP And |001645.9+444031 |SR: | 12.4 | 13.6 | |p |51405. | | 113. | |M4e |00001 00534| +010139 |DQ And *|005934.5+452424 |CWB: | 11.23 | 12.00 | |V |51481.584 | | 3.200635 |23 |K-M |00001 02546| +010140 |DR And *|010510.7+341306 |RRAB | 11.65 | 12.94 | |V |52620.4385 | | 0.563130 |18 |A |00001 02377| +010141 |DS And *|015746.0+380428 |EA | 10.44 | 10.93 | 10.71 |V |52500.6834 | | 1.0105188 |17 |F2III |N0041 03102| +010144 |DV And |230426.9+382236 |LB | 10.8 | 12.5 | |p | | | | |K5 |08021 DM | +010146 |DX And *|232946.7+434505 |UGSS | 11.0 | 15.5 | |V | | |( 239. ) | |pec(UG) |N0054 72085| +010148 |DZ And |003236.4+260121 |CST: | 10.22 | | |V | | | | |K2III |08660 04008| +010150 |EF And |003943.9+463320 |SRA | 11.4 | 12.6 | |p |36088. | | 114.57 | |M6 |N0056 03915| +010151 |EG And *|004437.2+404046 |ZAND | 6.97 | 7.8 | |V | | | | |M2IIIep |N0057 DM | +010152 |EH And |010312.7+455206 |LB | 11.2 | 12.1 | |p | | | | |M7 |N0058 DM | +010153 |EI And |010726.4+453634 |LB | 10.7 | 11.4 | |p | | | | |M4 |04015 DM | +010154 |EK And |011613.5+414422 |CST: | 11.2 | | |V | | | | | |N0059 06286| +010159 |EP And *|014229.3+444542 |EW | 11.3 |( 0.60 )|( 0.60 )|V |42638.522 | | 0.40410755 | | |N0062 00819| +010162 |ES And |231136.3+490024 |LB | 11.5 | 12.5 | |p | | | | |M6 |04332 2MASS| +010163 |ET And *|231756.0+452920 |ACV | 6.48 |( 0.03 )| |V | | | 1.618875 | |B9pSi |N0063 HIP | +010164 |EU And *|231958.9+471435 |LB: | 10.7 | 11.8 | |V | | | | |C4,4(R) |00001 N0064| +010166 |EW And |232657.4+493059 |LB | 10.8 | 11.8 | |p | | | | |C7,3(Nb) |04336 04336| +010170 |FF And *|004248.3+353256 |UV+BY | 12.02 | 12.90 | |U | | | | |M1Ve+M1Ve |07472 HIP | +010171 |FG And |004412.0+450338 |LB | 12.4 | 14.2 | |p | | | | |M |07434 04015| +010190 |GG And |233719.8+470628 |SRB: | 8.4 | 8.9 | |V | | | | |M5: |03914 DM | +010193 |GK And *|235347.2+453446 |EA | 11.3 | 12.4 | 11.5 |p |52501.745 | | 2.009316 |12 *| |N0041 03915| +010194 |GL And |235457.7+452337 |LB | 9.6 | 10.2 | |p | | | | |K4 |03915 03915| +010195 |GM And |000003.6+352146 |RRAB | 12.43 | 13.30 | |V |47548.628 | | 0.7067585 |09 | |N0069 03917| +010196 |GN And *|003007.4+294506 |DSCTC | 5.23 |( 0.05 )| |V | | | 0.069304115 | |A9IV |N0070 HIP | +010197 |GO And |005018.3+450008 |ACV | 6.12 |( 0.04 )| |V | | | 2.5481 | |A0pSrCrEu |N0071 HIP | +010198 |GP And *|005518.1+230949 |DSCT | 10.53 |( 0.6 )| |V |47005.61456 | | 0.0786827620 |31 |A3 |N0072 HIP | +010199 |GQ And *|001825.8+440138 |UV+BY: | 12.2 | 12.8 | |B | | | | |M6Ve |05825 09033| +010200 |GR And |002828.6+322616 |ACV | 6.87 | 6.95 | |V | | | 546.87 | |A2pSrCrEu |N0073 HIP | +010206 |GX And *|001822.9+440123 |UV | 10.30 | 10.85 | |U | | | | |M1Ve |N0074 09033| +010207 |GY And *|013831.8+452359 |ACV | 6.27 | 6.44 | |V | | | 8000. : | |B9VpCrEu |N0075 HIP | +010208 |GZ And *|021214.1+443934 |EW | 10.83 | 11.61 | 11.58 |V |52500.1211 | | 0.3050169 | | |N0041 06830| +010209 |HH And |234155.0+441039 |BY | 12.23 | 12.34 | |V | | | | |M5.5Ve |73018 GSC | +010212 |HL And |005756.4+382705 |SRB | 12.0 | 14.2 | |p | | | 100. : | | |00001 07434| +010214 |HN And *|012418.7+430832 |ACV | 6.67 | 6.76 | |V | | | 69.92 | |A2pSrCrEu |06992 DM | +010215 |HO And |000722.0+435504 |LB | 12.0 | 13.0 | |p | | | | |C6,4 |02579 GSC | +010216 |HP And |001909.1+412742 |GAL: | 10.5 |< 14.5 | |p | | | | | |N0079 07734| +010239 |IV And |005927.1+393717 |SR: | 10.0 | 10.9 | |p | | | 300. : | |M7 |00001 07434| +010244 |KK And |013416.6+371414 |ACV | 5.91 |( 0.012 )| |V | | | 0.6684 | |B9IVpSi |07740 HIP | +010245 |KL And |021408.0+473945 |M: | 11. |< 13. | |R |51550. | | 270. : | |C-S |00001 GSC | +010247 |KN And |023608.8+380922 |EA | 11.7 | 13.1 | |p |52502.2558 | | 2.2621866 |10 : | |N0041 06976| +010249 |KP And *|230956.5+413504 |EA | 11.5 | 12.9 |( 0.1 R)|p |51408.708 | | 1.40538 |18 |A0 |N0060 00534| +010250 |KQ And |233043.5+460911 |LB: | 9.4 | 10.1 | |p | | | | |K5 |05526 05526| +010251 |KR And |234439.9+420332 |LB: | 10.4 | 10.9 | |p | | | | |M |04109 08662| +010252 |KS And |234505.3+465531 |LB | 9.4 | 10.0 | |p | | | | |M2 |05526 05526| +010253 |KT And |234808.9+444337 |SR: | 11.2 | 11.9 | |p | | | | |M5 |08662 08662| +010254 |KU And |000652.8+430501 |M | 6.5 | 10.5 : | |I |42345. | | 660. : | |M10 |68064 03586| +010257 |KX And *|230706.2+501133 |BE | 6.88 | 7.28 | |V | | | | |B3pe+K1III |N0088 HIP | +010258 |KY And |230916.8+493902 |BE | 6.68 | 6.95 : | |V | | | | |B3Vne |N0089 HIP | +010259 |KZ And *|230957.4+475730 |BY | 7.91 | 8.03 | |V | | | 3.03 | |K2Ve+K2Ve |N0115 HIP | +010261 |LM And *|021109.3+485134 |EB | 12.2 | 13.5 | 12.7 |p |53268.465 | | 0.7611836 | | |00001 08307| +010262 |LN And *|230245.1+440332 |CST: | 6.39 | | |V | | | | |B2V |N0091 HIP | +010263 |LO And *|232706.7+453322 |EW | 11.2 | 11.8 | 11.7 |V |52500.2505 | | 0.3804427 | | |N0041 04364| +010264 |LP And |233427.5+433301 |M | 1.8 | 3.7 | |K |46340. | | 614. | |C8,3.5e |N0092 06977| +010265 |LQ And *|235846.4+462448 |BE | 6.50 | 6.66 | |V | | | 0.309446 | |B4Ven |HIP HIP | +010266 |LR And *|002249.9+292715 |ELL | 7.10 | 7.15 | 7.14 |V |44854.8800 | | 1.432321 | |A3V |N0093 HIP | +010272 |LX And |021944.1+402723 |UG | 12.2 | 16.5 | |V | | | | |pec(UG) |N0094 09384| +010294 |NS And |004903.7+351311 |LB | 11.1 | 12.2 | |p | | | | |M3 |09685 09685| +010302 |OO And |013103.7+350738 |LB | 11.1 | 12.5 | |p | | | | | |09685 09685| +010303 |OP And |013627.2+484322 |RS: | 6.27 | 6.41 | |Hp| | | 2.35954 | |K1III: |HIP HIP | +010304 |OQ And |014207.8+392444 |LB | 7.64 | 7.73 | |V | | | | |M3III |68006 HIP | +010307 |OT And *|232001.2+414518 |EA | 7.32 | 7.72 | |V |45711.73 | | 20.85290 |03 | |68007 HIP | +010308 |OU And |234941.0+362531 |FKCOM: | 5.87 | 5.94 | |V | | | 24.2 : | |G1IIIe |N0097 HIP | +010309 |OV And *|002044.9+404942 |RRAB | 11.38 | 12.70 | |V |53335.418 | | 0.470580 |10 | |N0098 69003| +010315 |PQ And *|022929.5+400240 |UG | 10.0 | 19. | |V | | | | |pec(UG) |N0099 76005| +010316 |PR And |231523.5+501855 |SRB: | 10.4 | 11.3 | |V | | | 96. : | |S |69010 GSC | +010317 |PS And |003937.7+381325 |SR | 10.7 | 11.4 | |p | | | 375. | | |70001 70001| +010320 |PV And |235537.9+462130 |ACV | 6.91 | 6.99 | |V | | | 3.5112 | |B9pSi |N0101 HIP | +010321 |PW And |001820.9+305722 |RS | 8.67 |( 0.10 )| |V | | | 1.745 | |K2V |71001 DM | +010323 |PY And *|003620.1+271517 |ACV | 6.02 |( 0.03 )| |U | | | 4.6904 | |B8IIIpHgMn |71005 HIP | +010324 |PZ And |022058.2+500905 |ACV | 5.59 |( 0.05 )| |V | | | 4.1890 | |B9VpSi |N0102 HIP | +010325 |QQ And |231751.4+405131 |SR | 10.5 | 11.2 | |p | | | 72.4 | |M8 |72002 DM | +010326 |QR And *|001949.9+215652 |EA+NL | 12.16 | 13.07 | |V |35799.247 | | 0.6604565 | |pec(e) |73002 73002| +010328 |QT And |004117.3+342517 |BY+UV | 9.5 |( 0.43 Rc)| |V | | | 1.536 | |K3Ve |73004 DM | +010329 |QU And *|011306.1+413916 |RS | 7.25 |( 0.05 )| |V | | | 21.08 | |G5IV |78018 HIP | +010330 |QV And |011624.5+480456 |ACV | 6.22 |( 0.05 )| |U | | | 5.229 | |B9IIIpSi |67131 HIP | +010332 |QX And *|015757.8+374823 |EW | 11.28 | 11.50 | 11.49 |V |46785.8003 | | 0.411816 | |F6 |73008 02581| +010333 |QY And *|021108.5+485141 |SR: | 11.1 | 11.9 | |p | | | 2200. : | | |08307 08307| +010335 |V0335 And |230202.4+395951 |M | 11.8 | 14.5 | |V |49540. | | 280. | | |73011 73011| +010336 |V0336 And *|230224.0+414337 |M | 11.6 |< 15.0 | |V |49520. | | 270. | | |73011 73011| +010337 |V0337 And *|231625.9+384347 |M | 11.3 | 14.4 | |V |49820. | | 362. | | |73011 73011| +010338 |V0338 And |232541.7+454205 |M | 12.0 |< 14.0 | |V |49520. | | 348. | | |73011 73011| +010339 |V0339 And |233407.7+462002 |M | 11.3 |< 15.0 | |V |49981. | | 325. | | |73011 73011| +010340 |V0340 And |233437.5+401411 |DSCTC | 5.69 |( 0.03 )| |B | | | 0.063 | |A1Vp |N0104 DM | +010341 |V0341 And |000710.2+345114 |LB | 8.63 | 8.94 | |Hp| | | | | |HIP HIP | +010342 |V0342 And *|001003.2+462325 |EA | 7.58 | 7.72 | 7.70 |Hp|48500.6933 | | 2.63934 |05 |A3 |HIP HIP | +010343 |V0343 And |001047.2+321433 |LB | 7.04 | 7.55 | |Hp| | | | |M2 |HIP HIP | +010344 |V0344 And |001122.4+302659 |BY | 7.95 |( 0.04 )| |V | | | 6.105 | |K0V |78018 HIP | +010345 |V0345 And |001215.8+434906 |SRB: | 7.79 | 7.98 | |Hp| | | 45.13 | |M4 |HIP HIP | +010346 |V0346 And |001350.2+365137 |LB: | 8.98 | 9.10 | |Hp| | | | |K5 |HIP HIP | +010347 |V0347 And |001349.5+253307 |SRS: | 9.38 | 9.72 | |Hp|48510.60 | | 15.11 | |M2 |HIP HIP | +010348 |V0348 And *|001517.8+441212 |EA | 6.75 | 6.90 | |Hp|48504.070 | | 5.5392 | |B9 |HIP HIP | +010349 |V0349 And |001609.4+475334 |LB: | 8.81 | 8.93 | |Hp| | | | |M0 |HIP HIP | +010350 |V0350 And |002602.7+354909 |EA | 7.56 | 7.63 | |Hp|47947.413 | | 1.538824 : |10 |A3 |HIP HIP | +010351 |V0351 And |002801.4+270551 |LB | 9.12 | 9.49 | |Hp| | | | |M5 |HIP HIP | +010352 |V0352 And |002911.2+445942 |LB: | 9.01 | 9.13 | |Hp| | | | |M0 |HIP HIP | +010353 |V0353 And |003026.2+402209 |LB: | 9.44 | 9.59 | |Hp| | | | |M0 |HIP HIP | +010354 |V0354 And |003336.8+395303 |SRD: | 8.65 | 8.78 | |Hp| | | 10.877 | |K0 |HIP HIP | +010355 |V0355 And *|004411.3+461408 |EA | 7.69 | 8.0 | 7.9 |V |52295.088 | | 4.71841 | |F5 |N0105 HIP | +010356 |V0356 And |004439.0+363609 |LB: | 9.04 | 9.17 | |Hp| | | | |M1 |HIP HIP | +010357 |V0357 And *|005253.4+383256 |ELL: | 6.70 | 6.74 | 6.7 |Hp| | | 1.66238 | |A2V |HIP HIP | +010358 |V0358 And |005921.9+425104 |LB: | 8.22 | 8.36 | |Hp| | | | |M2 |HIP HIP | +010359 |V0359 And |010252.7+470250 |BY: | 10.89 | 11.31 | |Hp| | | | |M0 |HIP HIP | +010360 |V0360 And |010404.5+384119 |LB | 7.05 | 7.23 | |Hp| | | | |M3III |HIP HIP | +010361 |V0361 And *|010945.3+380728 |DSCTC | 7.79 | 7.83 | |Hp|48500.0220 | | 0.1140500 | |F0 |HIP HIP | +010362 |V0362 And |012807.0+422801 |E: | 8.42 | 8.55 | |Hp| | | 18.518518 : | |M0 |HIP HIP | +010363 |V0363 And *|013146.6+360538 |EB | 9.10 | 9.37 | 9.34 |Hp|48500.3980 | | 1.27799 | |A2 |HIP HIP | +010364 |V0364 And |013250.5+453732 |LB | 9.21 | 9.31 | |Hp| | | | |K2III |HIP HIP | +010365 |V0365 And |013646.7+481856 |DSCTC | 7.49 | 7.53 | |Hp| | | 0.142816 | |F0 |HIP HIP | +010366 |V0366 And |014311.1+483100 |LC | 6.74 | 6.93 | |Hp| | | | |M2Ib |HIP HIP | +010367 |V0367 And |015109.3+380126 |SRS: | 7.11 | 7.45 | |Hp| | | 24.457 : | |M4 |00001 HIP | +010368 |V0368 And |015143.2+390826 |LB | 9.01 | 9.58 | |Hp| | | | |M8 |HIP HIP | +010369 |V0369 And *|015754.9+473353 |LB: | 9.07 | 9.18 | |Hp| | | | |M0 |HIP HIP | +010370 |V0370 And |015844.3+452607 |SRB | 6.18 | 7.19 | |Hp| | | 228. | |M7III |N0106 HIP | +010371 |V0371 And *|020212.9+364301 |BY: | 8.30 | 8.34 | |Hp| | | 1.4937 | |G5 |HIP HIP | +010372 |V0372 And *|020518.2+450534 |EA | 9.05 | 9.53 | 9.37 |Hp|51483.5838 | | 2.940986 |11 |A5 |00001 HIP | +010373 |V0373 And |020546.2+394535 |DSCTC | 7.63 | 7.69 | |Hp| | | 0.1128020 | |F0 |HIP HIP | +010374 |V0374 And |020657.2+451104 |E: | 10.30 | 11.55 | |Hp| | | | |M0 |HIP HIP | +010375 |V0375 And |023206.5+501051 |SRB | 7.01 | 7.22 | |Hp| | | 54. : | |A0 |00001 HIP | +010376 |V0376 And *|023511.6+495137 |EB | 7.68 | 8.00 | 7.96 |Hp|52500.492 | | 0.7986720 | |A0 |N0041 HIP | +010377 |V0377 And |023618.9+401218 |EA | 7.46 | 7.58 | |Hp|48700.254 | | 4.06366 : |05 : |B9 |00001 HIP | +010378 |V0378 And |230054.8+384228 |BE | 6.47 | 6.64 | |V | | | | |B3Vpe |N0107 HIP | +010379 |V0379 And |230633.0+465525 |IA: | 7.70 | 7.85 | |Hp| | | | |B3 |HIP HIP | +010380 |V0380 And |230637.0+423927 |LPB | 7.97 | 8.02 | |Hp| | | 1.37678 | |B9 |HIP HIP | +010381 |V0381 And |230857.1+385455 |EA | 7.35 | 7.42 | |Hp| | | | |A0 |HIP HIP | +010382 |V0382 And *|230958.0+425009 |EB | 9.16 | 9.44 | 9.24 |Hp|51402.871 | | 1.478983 | |A0 |00001 HIP | +010383 |V0383 And |231549.3+423444 |LB: | 8.35 | 8.46 | |Hp| | | | |M0 |HIP HIP | +010384 |V0384 And |232352.0+490408 |LB: | 9.22 | 9.41 | |Hp| | | | |M2 |HIP HIP | +010385 |V0385 And |232408.9+413646 |LB | 6.36 | 6.47 | |Hp| | | | |M0 |HIP HIP | +010386 |V0386 And |232414.9+352947 |LB: | 9.32 | 9.53 | |Hp| | | | |M0 |HIP HIP | +010387 |V0387 And |232536.1+525846 |LB | 6.76 | 6.87 | |Hp| | | | |M0 |HIP HIP | +010388 |V0388 And |232707.4+425443 |ACV | 5.73 | 5.77 | |Hp| | | 1.47931 | |B9Mn |N0108 HIP | +010389 |V0389 And |233201.3+434921 |EA | 8.22 | 8.32 | |Hp| | | | |A0 |HIP HIP | +010390 |V0390 And |233256.5+460725 |SRB | 6.56 | 6.75 | |Hp| | | 303. | |M0 |HIP HIP | +010391 |V0391 And |233524.2+364454 |LB | 9.05 | 9.43 | |Hp| | | | |M2 |HIP HIP | +010392 |V0392 And *|233848.7+442445 |EA | 9.07 | 9.41 | 9.41 |V |48035.107 | | 4.046275 |06 *|A2 |N0109 HIP | +010393 |V0393 And *|233912.5+503242 |LB: | 10.31 | 10.38 | |Hp| | | | | |HIP HIP | +010394 |V0394 And |234120.2+465136 |LPB | 7.40 | 7.42 | |Hp| | | 1.7776 | |B9 |HIP HIP | +010395 |V0395 And *|234432.1+462249 |EW | 7.55 | 7.62 | 7.61 |Hp|48699.9945 | | 0.6847 | |A0 |HIP HIP | +010396 |V0396 And |235133.4+472916 |DSCTC | 7.92 | 7.95 | |Hp| | | 0.1047310 | |F0 |HIP HIP | +010397 |V0397 And |235207.5+375101 |LB: | 8.60 | 8.72 | |Hp| | | | |M5 |HIP HIP | +010398 |V0398 And |235245.1+345819 |LB: | 8.23 | 8.34 | |Hp| | | | |M2 |HIP HIP | +010399 |V0399 And |235300.1+412045 |LB | 6.95 | 7.05 | |Hp| | | | |M2III |HIP HIP | +010400 |V0400 And |235857.8+404732 |E | 8.57 | 8.65 | |Hp| | | | |A5 |HIP HIP | +010401 |V0401 And |000054.8+324932 |LB: | 9.04 | 9.14 | |Hp| | | | |M0 |HIP HIP | +010403 |V0403 And |003853.0+453350 |M | 11.9 | 16.1 | |V |51540. | | 180. : | | |00001 76002| +010404 |V0404 And *|010124.4+411501 |EA/RS | 10.3 | 10.9 | 10.8 |Rc|52500.3140 | | 0.67603321 |18 *| |N0041 75003| +010405 |V0405 And |022226.0+472919 |RS | 11.0 | 11.31 | |V | | | 0.46543 | |M0Ve+dM5e |75004 75004| +010406 |V0406 And *|023525.6+455603 |EB | 9.22 | 9.42 | 9.39 |V |52500.27 | | 2.165032 | |B8 |N0041 HIP | +010412 |V0412 And *|235339.0+453722 |EA | 11.95 | 12.40 | 12.35 |* |51507.720 | | 1.90871 |11 | |N0060 GSC | +010413 |V0413 And *|235404.0+391657 |EA/RS | 7.61 | 8.46 | |U |48127.2 | | 53. |04 |G0III |73005 HIP | +010414 |V0414 And |000936.9+374732 |M | 12.4 | 15.5 | |V |50691. | | 288. | | |76002 76002| +010416 |V0416 And |011030.5+450612 |M | 11.7 |< 14.7 | |V |50611. | | 359. | | |76002 76002| +010417 |V0417 And |011604.7+501145 |M | 11.1 | 14.7 | |V |51129. | | 281. | | |76002 76002| +010418 |V0418 And |013005.8+501001 |M | 11.3 | 14.4 | |V |51161. | | 305. | | |76002 76002| +010419 |V0419 And *|020902.3+393532 |DSCTC | 9.14 |( 0.04 )| |B | | | 0.054 | |F0 |76019 HIP | +010420 |V0420 And *|021821.3+504603 |M | 11.0 |< 15.0 | |V |52178. | | 355.8 | | |00001 76020| +010421 |V0421 And |022320.9+484342 |M | 10.1 |< 12. | |V | | | | |C6,2e |76023 76023| +010428 |V0428 And *|003646.4+442919 |SRS | 5.13 |( 0.06 )| |V | | | 11.5 | |K5-M0III |77008 HIP | +010430 |V0430 And |013551.4+361025 |SR | 11.7 | 13.3 | |V | | | 200. : | | |00001 GSC | +010431 |V0431 And |014222.7+485735 |SR: | 11.1 | 12.1 | |V | | | | | |77004 GSC | +010432 |V0432 And |014915.6+452030 |LB | 12.3 | 13.4 | |V | | | | |M6 |77004 GSC | +010433 |V0433 And |015138.1+391544 |SR: | 9.8 | 10.9 | |V | | | | | |77004 GSC | +010435 |V0435 And |021249.4+471147 |LB | 10.9 | 11.6 | |V | | | | |M1 |77004 GSC | +010436 |V0436 And |022102.7+425638 |ACV | 7.23 | 7.29 | |Hp| | | 26.87 | |B9pCrEuSi |77022 HIP | +010437 |V0437 And |022725.0+425959 |LB | 11.0 | 11.9 | |V | | | | | |77004 GSC | +010438 |V0438 And |023406.1+433136 |LB | 11.5 | 12.4 | |V | | | | |M1 |77004 GSC | +010439 |V0439 And |000636.8+290117 |BY | 6.13 |( 0.04 )| |V | | | 6.23 | |K0Ve |78005 DM | +010442 |V0442 And |010353.4+473832 |BE | 6.63 | 6.92 | |V | | | | |B2IVe |78019 HIP | +010443 |V0443 And |011041.9+425555 |BY | 7.66 |( 0.02 )| |V | | | 20.27 | |K0V |78018 HIP | +010445 |V0445 And |011629.3+425622 |BY | 6.61 |( 0.03 )| |V | | | 5.67 | |G0 |78018 HIP | +010446 |V0446 And *|012540.9+470707 |* | 7.61 |( 0.09 )| |V | | | 64.23 | |G4III |78018 HIP | +010448 |V0448 And |020321.2+462348 |M | 10.5 | 13.6 | |* |51410. | | 285. : | | |N0103 GSC | +010449 |V0449 And *|020946.9+464317 |EW | 12.2 | 12.9 | 12.8 |* |51370.877 | | 0.33853 | | |N0103 GSC | +010450 |V0450 And |021255.0+404006 |BY | 7.19 |( 0.02 )| |V | | | 7.6 : | |G0V |78018 HIP | +010451 |V0451 And |021313.3+403027 |BY | 7.35 |( 0.03 )| |V | | | 7.52 | |G0V |78018 HIP | +010453 |V0453 And |232136.5+440552 |BY | 7.36 |( 0.04 )| |V | | | 7.489 | |K1V |78018 HIP | +010454 |V0454 And |233758.5+461158 |BY | 6.58 |( 0.02 )| |V | | | 7.5 : | |G3/4V |77119 HIP | +010455 |V0455 And |233401.5+392141 |UG | 8.7 | 16.6 | |V | | | | |pec(e) |79103 79104| +010456 |V0456 And |001352.6+452634 |SR | 10.1 | 11.1 | |* |51470. | | 240. : | | |79100 79010| +010457 |V0457 And |004542.2+461158 |M: | 12.2 | 15.2 | |* |51400. | | 233. : | | |79036 USNO | +010458 |V0458 And |014402.1+480243 |EA | 12.20 |< 12.8 | 12.32 |* |51515.897 | | 2.2904 |10 | |79001 79014| +010459 |V0459 And |023357.9+455956 |M | 10.8 |< 13.8 | |* |51484. | | 384. : | | |79036 79026| +010461 |V0461 And |231159.0+493937 |LB | 9.6 | 9.9 | |* | | | | |M6 |79100 79177| +010462 |V0462 And |231932.6+455532 |EA | 12.25 | 12.81 | 12.78 |* |51483.638 | | 4.279 |06 | |79004 79066| +010463 |V0463 And |232013.9+370840 |EB | 12.15 | 13.05 | 12.50 |* |51446.889 | | 0.406095 | | |79025 GSC | +010464 |V0464 And |232401.8+465212 |SRB | 9.9 | 10.6 | |V | | | 120. | |M3 |79100 79228| +010465 |V0465 And |235315.9+465306 |LB | 12.5 | 13.2 | |p | | | | |Mb |79211 79211| +010468 |V0468 And *|000946.5+401135 |EA | 10.90 | 11.56 | 11.54 |* |51415.8742 | | 12.757 |10 | |80001 80016| NL80_1 +010470 |V0470 And |001250.3+374137 |LPB | 6.66 | 6.70 | |Hp| | | 2.74725 | |B2V |80019 HIP | NL80_1 +010471 |V0471 And |001357.6+350243 |RS | 11.5 | 11.7 | |* | | | 2.573 | | |80021 GSC | NL80_1 +010475 |V0475 And |001736.9+305120 |RS | 12.3 | 12.5 | |* | | | 13.5338 | | |80021 GSC | NL80_1 +010476 |V0476 And |001825.0+232434 |RS | 9.93 | 10.25 | |V | | | 1.5371 | |G0 |80021 DM | NL80_1 +010478 |V0478 And *|001855.9+223940 |DSCT | 10.38 | 10.60 | |V | | | 0.09600 | | |80029 DM | NL80_1 +010481 |V0481 And |002001.1+275954 |RS | 10.05 | 10.25 | |V | | | 4.6817 | |G5 |80021 GSC | NL80_1 +010482 |V0482 And *|002034.6+402506 |E/RS | 11.25 | 11.60 | 11.45 |* |51475.7 | | 11.284 | | |80028 80028| NL80_1 +010483 |V0483 And *|002035.3+400417 |EW | 11.97 | 12.2 | 12.2 |* |51497.684 | | 0.29707 | | |80031 80031| NL80_1 +010485 |V0485 And *|002119.2+352415 |EW | 11.08 | 11.23 | 11.22 |* |51505.709 | | 1.03257 | | |80033 80033| NL80_1 +010486 |V0486 And |002123.0+334237 |RS | 10.67 | 10.85 | |* | | | 8.3490 | | |80021 GSC | NL80_1 +010487 |V0487 And *|002127.0+301323 |EB | 11.6 | 11.76 | 11.74 |* |51594.91 | | 1.04068 | | |80028 80028| NL80_1 +010489 |V0489 And *|002439.1+245523 |EB | 12.3 | 13.3 | 12.7 |V |52945.601 | | 0.4227560 | | |80001 GSC | NL80_1 +010491 |V0491 And |003019.9+411040 |BY | 10.5 | 10.9 | |* | | | 36.50 | | |80043 80043| NL80_1 +010493 |V0493 And |003408.5+252350 |RS | 10.64 | 10.78 | |* | | | 3.1555 | |K5 |80021 GSC | NL80_1 +010494 |V0494 And |003633.2+430554 |RS | 11.1 | 11.55 | |* | | | 24.41 | | |80049 80049| NL80_1 +010495 |V0495 And |003711.9+441300 |RS | 10.43 | 10.60 | |* | | | 16.71 | | |80049 80049| NL80_1 +010496 |V0496 And *|003933.0+273029 |EA | 12.5 | 14.7 | 12.6 : |V |53675.4319 | | 4.40262 |10 | |80051 GSC | NL80_1 +010498 |V0498 And *|004020.9+434325 |RS | 9.13 | 9.25 | |* | | | 10.78 | |K0 |80049 80049| NL80_1 +010507 |V0507 And |004705.4+301824 |RS | 11.0 | 11.2 | |* | | | 12.464 | |G0 |80060 80060| NL80_1 +010508 |V0508 And *|004744.1+360223 |EW | 12.15 | 12.45 | 12.4 |* |51464.040 | | 0.7752 | | |80052 80052| NL80_1 +010511 |V0511 And |005214.3+454126 |RS: | 11.8 | 12.0 | |* | | | 1.22208 | | |80067 80067| NL80_1 +010512 |V0512 And *|005217.3+351604 |EA | 11.8 | 12.5 | 11.95 |* |51462.627 | | 0.74532 |10 | |80063 80063| NL80_1 +010516 |V0516 And |005603.4+353358 |RRC | 11.65 | 12.0 | |* |51480.877 | | 0.42871 |45 | |80068 80068| NL80_1 +010520 |V0520 And |005904.5+455222 |SR | 10.95 | 11.4 | |* | | | 70. | | |80070 80070| NL80_1 +010521 |V0521 And *|010126.5+380313 |DSCTC | 11.29 |( 0.04 )| |V | | | 0.10096 | |F0-F2 |80072 80072| NL80_1 +010523 |V0523 And *|010538.0+364906 |EA | 11.9 | 12.4 | 12.35 |* |51478.765 | | 0.52854 |13 | |80063 80063| NL80_1 +010524 |V0524 And |010547.1+443504 |SXPHE | 12.35 | 12.75 | |* |51505.700 | | 0.094493 |40 | |80028 80028| NL80_1 +010525 |V0525 And *|011648.1+341810 |EA/RS | 11.2 | 11.55 | 11.5 |* |51480.560 | | 1.4290 |10 | |80063 80063| NL80_1 +010527 |V0527 And *|012235.7+341936 |EW | 10.65 | 11.05 | 11.05 |* |51478.856 | | 0.70065 | | |80052 80052| NL80_1 +010529 |V0529 And *|012726.7+410604 |GDOR+DSCT | 6.48 | 6.51 | |Hp| | | 0.40331 | |A7Vm |80161 HIP | NL80_1 +010531 |V0531 And *|013015.9+333919 |EW | 11.40 | 11.60 | 11.55 |* |51484.437 | | 0.40633 | | |80033 80033| NL80_1 +010535 |V0535 And |013147.2+384803 |RS | 11.12 | 11.24 | |* | | | 8.7733 | | |80021 GSC | NL80_1 +010537 |V0537 And *|013519.3+374638 |EA | 11.4 | 11.75 | 11.65 |* |51476.783 | | 0.90075 |11 | |80063 80063| NL80_1 +010539 |V0539 And |013626.2+404344 |RS | 12.11 | 12.34 | |* | | | 0.4357 | |M0.5V |80021 GSC | NL80_1 +010540 |V0540 And |013727.1+390008 |RS | 10.43 | 10.56 | |* | | | 1.0616 | | |80021 DM | NL80_1 +010542 |V0542 And |014028.8+421201 |RS | 10.28 | 10.41 | |* | | | 1.0605 | |K0V |80021 DM | NL80_1 +010543 |V0543 And *|014225.3+375525 |EA | 11.0 | 11.8 | 11.15 |* |51475.665 | | 0.9264 |16 | |80063 80063| NL80_1 +010545 |V0545 And |014730.0+480648 |LB | 10.7 | 11.1 | |* | | | | | |80100 GSC | NL80_1 +010546 |V0546 And *|015112.6+434908 |EW | 11.23 | 11.76 | 11.76 |* |51475.6132 | | 0.38303 | | |80001 GSC | NL80_1 +010547 |V0547 And *|015203.0+374809 |EA/RS | 11.38 | 11.76 | 11.74 |* |51574.628 | | 1.9530 |10 | |80021 GSC | NL80_1 +010551 |V0551 And |015621.3+403517 |SR | 11.35 | 11.65 | |* | | | 50.5 | | |80070 80070| NL80_1 +010565 |V0565 And *|020327.8+441451 |EW | 12.17 | 12.30 | 12.25 |* |54775.5870 | | 0.3272 | | |80106 80106| NL80_1 +010566 |V0566 And *|020720.0+353855 |EW | 10.85 | 11.30 | 11.25 |* |51478.78 | | 0.38970 | | |80101 80101| NL80_1 +010567 |V0567 And *|020759.5+401756 |EA | 11.65 | 12.35 | 11.8 |* |51510.265 | | 3.0155 |15 | |80107 80107| NL80_1 +010569 |V0569 And |021440.6+495319 |RRAB | 12.48 | 13.01 | |* |51425.75 | | 0.55289 | | |80026 GSC | NL80_1 +010570 |V0570 And |021545.9+401421 |LB | 9.86 | 10.15 | |* | | | | | |80070 80070| NL80_1 +010574 |V0574 And |022722.4+391129 |LB | 10.0 | 10.3 | |* | | | | | |80100 GSC | NL80_1 +010575 |V0575 And *|022844.3+372859 |EW | 12.0 | 12.4 | 12.35 |* |51504.76 | | 0.6780 | | |80102 80102| NL80_1 +010576 |V0576 And |023253.2+463034 |SRB | 12.5 | 13.2 | |V | | | 81.9 | | |80117 80117| NL80_1 +010577 |V0577 And |023857.3+444423 |RS | 11.57 |( 0.13 )| |B | | | 2.716 | |G |80039 DM | NL80_1 +010578 |V0578 And |225850.0+405611 |BY | 10.86 |( 0.12 : *)| |V | | | 6.3266 | | |80021 GSC | NL80_3 +010579 |V0579 And |225911.1+362118 |EW | 12.5 | 12.8 | 12.8 |* |51448.643 | | 0.338134 | | |80085 80085| NL80_3 +010580 |V0580 And |230004.7+484737 |SR | 12.0 | 12.3 | |* | | | 195.9 : | | |80598 GSC | NL80_3 +010581 |V0581 And |230023.9+481810 |EA | 10.40 | 10.7 | 10.6 |* |51401.100 | | 19.9615 |09 | |80042 GSC | NL80_3 +010582 |V0582 And |230102.1+475344 |SR | 10.05 | 10.28 | |* | | | 52.9 | | |80598 GSC | NL80_3 +010584 |V0584 And |230147.8+352848 |BY | 9.20 | 9.34 | |* | | | 14.1358 | |K2 |80021 DM | NL80_3 +010586 |V0586 And |230209.3+351539 |BY | 10.05 |( 0.08 *)| |V | | | 9.1534 | | |80021 DM | NL80_3 +010587 |V0587 And |230222.4+472129 |LB | 9.88 | 10.02 | |* | | | | | |80598 GSC | NL80_3 +010588 |V0588 And |230233.1+464948 |M | 9.44 | 12.22 | |* |51505. :| | 265.5 | |M4 |80598 2MASS| NL80_3 +010589 |V0589 And |230252.1+480610 |SR | 11.66 | 12.12 | |* | | | 52.3 | | |80598 GSC | NL80_3 +010592 |V0592 And |230343.7+462916 |SR | 10.87 | 11.02 | |* | | | 22.46 | | |80598 GSC | NL80_3 +010594 |V0594 And |230415.6+471952 |SR: | 12.45 | 12.75 | |* | | | | | |80598 USNO | NL80_3 +010596 |V0596 And |230422.8+470318 |SR | 10.33 | 10.47 | |* | | | 60.24 | | |80598 GSC | NL80_3 +010597 |V0597 And |230604.1+483525 |EW: | 11.69 | 12.03 | 11.98 : |* |51442.686 | | 0.46775 | | |80001 GSC | NL80_3 +010598 |V0598 And |230606.4+481555 |SR | 11.50 | 11.80 | |* | | | 61.1 | | |80598 GSC | NL80_3 +010600 |V0600 And |230636.2+471531 |EW | 12.30 | 12.75 | 12.67 : |* |55135.5821 | | 0.396770 | | |80596 GSC | NL80_3 +010601 |V0601 And |230638.1+492328 |EA | 11.73 | 12.20 | |* |55441.352 | | 1.2121 |17 | |80598 GSC | NL80_3 +010602 |V0602 And |230654.9+471636 |SR | 11.23 | 11.58 | |* | | | 78.5 | | |80598 GSC | NL80_3 +010603 |V0603 And |230715.1+482841 |LB | 11.80 | 12.15 | |* | | | | | |80598 USNO | NL80_3 +010605 |V0605 And |230729.2+442950 |SR | 10.15 | 10.40 | |* | | | 37.31 | | |80598 GSC | NL80_3 +010606 |V0606 And |230737.3+443118 |LB | 11.44 | 11.69 | |* | | | | | |80598 GSC | NL80_3 +010607 |V0607 And |230741.9+450931 |LB | 9.04 | 9.60 | |* | | | | | |80598 GSC | NL80_3 +010608 |V0608 And |230807.8+441045 |LB | 10.07 | 10.43 | |* | | | | |M |80598 GSC | NL80_3 +010609 |V0609 And |230819.8+440048 |SR: | 11.38 | 12.14 | |* | | | 98.2 : | | |80598 GSC | NL80_3 +010610 |V0610 And |230915.4+490133 |M: | 12.10 | 13.90 | |* |51313. :| | 290.9 | | |80598 USNO | NL80_3 +010613 |V0613 And |231012.4+473414 |EA | 9.15 | 9.61 | 9.57 |* |55823.333 | | 1.875798 |16 |A5 |80001 DM | NL80_3 +010614 |V0614 And |231050.3+481549 |LB | 9.56 | 9.87 | |* | | | | | |80598 GSC | NL80_3 +010615 |V0615 And |231130.1+470252 |M | 10.86 |< 13.1 | |* |51451. | | | | |80598 USNO | NL80_3 +010616 |V0616 And |231147.2+480318 |LB | 10.1 | 10.7 | |* | | | | | |80598 GSC | NL80_3 +010617 |V0617 And |231223.5+440534 |LB | 10.70 | 11.06 | |* | | | | | |80598 GSC | NL80_3 +010618 |V0618 And |231233.6+451159 |LB | 11.97 | 12.25 | |* | | | | | |80598 GSC | NL80_3 +010619 |V0619 And |231253.2+452913 |SRB | 10.86 | 11.26 | |* | | | 57. | | |80001 GSC | NL80_3 +010621 |V0621 And |231320.0+483927 |SR: | 12.15 | 12.75 | |* | | | | | |80598 GSC | NL80_3 +010622 |V0622 And |231326.3+440126 |DSCT | 11.00 | 11.10 | |* | | | 0.16878 | | |80598 GSC | NL80_3 +010623 |V0623 And |231352.4+442009 |LB | 11.64 | 12.0 | |* | | | | | |80598 GSC | NL80_3 +010624 |V0624 And |231531.4+441125 |LB | 9.34 | 9.57 | |* | | | | | |80598 GSC | NL80_3 +010627 |V0627 And |231609.8+480130 |EB | 10.67 | 10.87 | 10.83 |* |51478.642 | | 1.2224 | | |80001 DM | NL80_3 +010628 |V0628 And |231622.1+472910 |LB | 11.8 | 12.2 | |* | | | | | |80598 GSC | NL80_3 +010629 |V0629 And |231653.0+442918 |EA | 11.2 | 11.65 | 11.4 |* |51535.708 | | 0.7426 |23 | |80598 GSC | NL80_3 +010631 |V0631 And |231820.9+465336 |SRB | 10.55 | 10.73 | |* | | | 43.7 | | |80598 GSC | NL80_3 +010632 |V0632 And |231858.4+440549 |RV: | 11.12 | 11.37 | 11.34 |* |51353.8 | | 44.6 | | |80598 GSC | NL80_3 +010635 |V0635 And |231931.4+465226 |SR | 10.98 | 12.21 | |* |51360. | | 266.4 | |C(N) |80598 GSC | NL80_3 +010636 |V0636 And |231931.9+492725 |LB | 9.34 | 9.52 | |* | | | | | |80598 DM | NL80_3 +010637 |V0637 And |231945.4+444930 |LB | 8.83 | 9.11 | |* | | | | |M8 |80598 DM | NL80_3 +010638 |V0638 And |231950.5+440733 |EW | 11.52 | 11.92 | 11.90 |* |51375.86 | | 0.33271 | | |80598 GSC | NL80_3 +010639 |V0639 And |232100.9+484610 |SR: | 12.30 | 13.10 | |* | | | 241.7 : | | |80598 USNO | NL80_3 +010640 |V0640 And |232117.4+492847 |LB | 9.70 | 9.95 | |* | | | | | |80598 GSC | NL80_3 +010642 |V0642 And |232127.2+492539 |LB | 11.98 | 12.10 | |* | | | | | |80598 GSC | NL80_3 +010644 |V0644 And |232232.4+471541 |SR: | 10.53 | 10.73 | |* | | | 50.9 | | |80598 GSC | NL80_3 +010646 |V0646 And |232304.8+443706 |LB | 9.78 | 10.45 | |* | | | | |M |80598 GSC | NL80_3 +010647 |V0647 And |232305.8+470652 |SR | 11.63 | 11.98 | |* | | | 56.7 | | |80598 GSC | NL80_3 +010649 |V0649 And |232429.1+474350 |EA | 11.55 | 11.70 | 11.65 |* |51467.80 | | 1.6116 |09 | |80598 GSC | NL80_3 +010650 |V0650 And |232441.3+463826 |LB | 9.15 | 9.36 | |* | | | | | |80598 GSC | NL80_3 +010651 |V0651 And |232448.9+483007 |EA | 12.38 | 12.75 | 12.50 |* |51455.82 | | 1.2138 |09 | |80598 GSC | NL80_3 +010652 |V0652 And |232450.7+433453 |BY: | 11.52 | 11.69 | |* | | | 8.230 | | |80598 GSC | NL80_3 +010653 |V0653 And |232507.6+482503 |SRB | 11.34 | 11.56 | |* | | | 32.8 | | |80001 GSC | NL80_3 +010654 |V0654 And |232510.7+484444 |SR: | 10.70 | 10.90 | |* | | | 31.1 : | | |80598 GSC | NL80_3 +010655 |V0655 And |232512.6+471449 |SR | 10.67 | 11.10 | |* | | | 57.8 | | |80598 GSC | NL80_3 +010656 |V0656 And |232519.3+480746 |LB | 11.45 | 11.63 | |* | | | | | |80598 GSC | NL80_3 +010657 |V0657 And |232544.8+470514 |SR | 11.6 | 12.1 | |* | | | 140. | | |80001 GSC | NL80_3 +010658 |V0658 And |232611.5+491315 |SRD: | 9.40 | 9.62 | |* | | | 112.4 : | |K5III |80598 DM | NL80_3 +010659 |V0659 And |232737.9+474803 |SR | 10.60 | 10.80 | |* | | | 43. : | | |80001 GSC | NL80_3 +010660 |V0660 And |232752.1+445415 |RRC | 12.22 | 12.58 | |* |51404.69 | | 0.38542 |45 | |80598 GSC | NL80_3 +010661 |V0661 And |232808.1+445621 |LB | 9.90 | 10.36 | |* | | | | | |80598 GSC | NL80_3 +010662 |V0662 And |232827.5+452240 |EA/RS | 10.65 | 11.05 | 10.75 : |* |51464.80 | | 1.7176 |06 | |80598 GSC | NL80_3 +010663 |V0663 And |232856.9+453829 |LB | 10.53 | 10.77 | |* | | | | | |80598 GSC | NL80_3 +010668 |V0668 And |232953.8+465808 |LB | 9.35 | 9.55 | |* | | | | | |80598 GSC | NL80_3 +010669 |V0669 And |233034.3+433042 |LB | 11.71 | 11.93 | |* | | | | | |80598 GSC | NL80_3 +010670 |V0670 And |233037.3+462404 |DSCT | 10.62 | 10.91 | |* | | | 0.09966 | | |80598 GSC | NL80_3 +010671 |V0671 And |233050.0+481132 |SR | 10.98 | 11.46 | |* | | | 63.9 | | |80598 GSC | NL80_3 +010673 |V0673 And |233103.8+355547 |EB | 11.14 | 11.40 | 11.25 |V |53258.4176 | | 1.629275 | |G8V |80600 GSC | NL80_3 +010674 |V0674 And |233241.3+464758 |EA | 10.65 | 10.9 | 10.75 |* |51414.74 | | 2.84822 |09 | |80598 DM | NL80_3 +010675 |V0675 And |233324.1+484538 |DSCTC: | 11.6 |( 0.04 )| |B | | | 0.080 | | |80089 80089| NL80_3 +010679 |V0679 And |233528.5+472825 |SR | 12.05 | 12.23 | |* | | | 64.4 | | |80598 GSC | NL80_3 +010682 |V0682 And |233603.8+465546 |LB | 10.87 | 11.31 | |* | | | | | |80598 GSC | NL80_3 +010683 |V0683 And |233627.8+440724 |EA | 10.45 | 10.95 | 10.65 |* |51573.63 | | 1.5580 | |F8 |80598 DM | NL80_3 +010685 |V0685 And |233745.7+481323 |LB | 11.14 | 11.38 | |* | | | | | |80598 GSC | NL80_3 +010686 |V0686 And |233755.4+433637 |LB | 10.44 | 10.92 | |* | | | | |M |80598 GSC | NL80_3 +010687 |V0687 And |233827.9+363451 |EW | 11.68 | 11.83 | 11.83 |V |53254.4145 | | 0.395043 | |F3V |80600 GSC | NL80_3 +010688 |V0688 And |233840.2+491223 |SR | 10.48 | 11.03 | |* | | | 121.6 | | |80598 GSC | NL80_3 +010689 |V0689 And |233854.6+351217 |SR | 11.54 | 12.07 | |V | | | 114.504 | | |80600 GSC | NL80_3 +010690 |V0690 And |233906.3+440306 |LB | 9.40 | 9.92 | |* | | | | | |80598 GSC | NL80_3 +010691 |V0691 And |233906.4+420554 |BY | 10.15 | 10.3 | |* | | | 18.61 | | |80043 80043| NL80_3 +010693 |V0693 And |234040.8+444856 |LB | 9.26 | 9.52 | |* | | | | | |80598 GSC | NL80_3 +010695 |V0695 And |234042.3+471426 |LB | 12.00 | 12.30 | |* | | | | | |80598 GSC | NL80_3 +010697 |V0697 And |234209.1+462434 |SR | 10.14 | 11.01 | |* | | | 158. : | | |80001 GSC | NL80_3 +010698 |V0698 And |234229.5+434602 |LB | 10.27 | 10.51 | |* | | | | | |80598 GSC | NL80_3 +010699 |V0699 And |234257.3+474920 |LB | 11.14 | 11.37 | |* | | | | | |80598 GSC | NL80_3 +010700 |V0700 And |234258.3+482716 |LB | 11.15 | 11.35 | |* | | | | | |80598 GSC | NL80_3 +010701 |V0701 And |234347.3+454045 |LB | 12.23 | 12.63 | |* | | | | | |80598 GSC | NL80_3 +010703 |V0703 And |234418.9+480850 |LB | 11.10 | 11.27 | |* | | | | | |80598 GSC | NL80_3 +010705 |V0705 And |234521.6+340821 |EW | 11.12 | 11.40 | 11.39 |V |53255.3502 | | 0.354665 | | |80600 GSC | NL80_3 +010706 |V0706 And |234819.8+344834 |EA | 11.80 | 13.07 | 11.90 |* |51494.6701 | | 2.52094 |14 | |80001 GSC | NL80_3 +010707 |V0707 And |234823.6+361840 |EA | 9.93 | 10.42 | 10.13 |V |53260.7572 | | 2.588628 | |F5V |80600 DM | NL80_3 +010708 |V0708 And |235046.2+332104 |RRAB | 12.4 | 13.4 | |CV|55477.765 | | 0.5339229 |13 | |80001 GSC | NL80_3 +010709 |V0709 And |235111.8+342448 |SR | 12.05 | 12.61 | |V | | | 65.445 | | |80600 GSC | NL80_3 +010711 |V0711 And |235132.0+351854 |SR | 12.45 | 12.74 | |V | | | 58.005 | | |80600 GSC | NL80_3 +010712 |V0712 And |235439.2+364516 |EW | 10.27 | 10.53 | 10.47 |* |51462.648 | | 0.367168 | |G0V |80001 DM | NL80_3 +010713 |V0713 And |235508.3+332229 |RRC: | 12.01 | 12.13 | |V |53255.8821 | | 0.318456 | | |80600 GSC | NL80_3 +010714 |V0714 And |235630.5+362854 |EA | 12.00 | 12.48 | |V |53258.3692 | | 2.498501 |15 | |80600 GSC | NL80_3 +010715 |V0715 And |235750.1+334349 |BY | 11.21 |( 0.15 *)| |V | | | 1.4194 | | |80021 GSC | NL80_3 +019001 |alf And *|000823.3+290526 |ACV: | 2.06 |( 0.04 )| |V | | | 0.966222 | |B8IVpHgMn |08030 HIP | +019006 |zet And *|004720.3+241602 |ELL/RS | 3.92 | 4.14 | |V |32761.016 | | 17.769586 | |K1IIe |N0112 HIP | +019011 |lam And *|233733.8+462729 |RS | 3.65 | 4.05 | |V |43832.8 | | 53.95 | |G8III-IV |N0113 HIP | +019015 |omi And *|230155.3+421934 |GCAS | 3.55 | 3.78 | |V | | | | |B6IIIpe+A2p |N0107 HIP | +020001 |R Ant |100945.5-374356 |CST | 7.65 | | |V | | | | |A0V |01113 CoD | +020002 |S Ant *|093218.4-283740 |EW | 6.27 | 6.83 | 6.80 |V |52627.7968 | | 0.6483489 | |F3V |00001 CoD | +020003 |T Ant *|093350.9-363657 |DCEP | 8.88 | 9.82 | |V |36120.608 | | 5.898053 |22 |F6Iab |N0027 CoD | +020004 |U Ant |103512.9-393345 |LB | 8.8 | 9.7 | |p | | | | |C5,3(Nb) |06258 CoD | +020005 |V Ant *|102109.1-344719 |M | 8.2 | 14.0 | |V |52772. | | 303. | |M7IIIe |01113 06286| +020006 |W Ant |095108.6-295345 |SRB | 9.8 | 10.6 | |V | | | 122. | |M3e-M6e |N0002 06286| +020007 |X Ant |100642.2-300438 |M | 8.8 | 14.0 | |V |53458. | | 164.1 | |M2-M6e |N0002 02452| +020008 |Y Ant *|100832.8-351028 |EA | 10.04 | 10.91 | 10.63 |V |51930.737 | | 6.1039 |08 |F2III/IV |N0009 CoD | +020009 |Z Ant |104558.9-351504 |LB | 8.5 | 10.5 | |V | | | | |S5,4 |00001 CoD | +020010 |RR Ant |093538.9-395413 |LB | 8.0 | 8.8 | |V | | | | |M6III |00016 CoD | +020011 |RS Ant |102002.9-394508 |M | 11.4 |< 15.0 | |V |52105. | | 324. | |Me |00001 06286| +020016 |RX Ant |093754.9-274350 |M | 10.6 | 14.5 | |V |52643. | | 234. |60 |Me |00001 06286| +020017 |RY Ant |093806.5-274330 |SRB | 10.1 | 11.1 | |V | | | 72. | | |00001 06286| +020018 |RZ Ant |093835.7-295654 |SRA | 12.4 | 14.6 | |V |53503. | | 232. | | |00001 06286| +020021 |SU Ant |094641.9-244714 |M | 12.3 |< 14.8 | |V |53821. | | 335. | | |00001 06286| +020022 |SV Ant |094657.8-273816 |M | 11.8 |< 14.6 | |V |53169. | | 298. | | |00001 06286| +020025 |SY Ant |093101.1-291258 |LB | 9.9 | 10.5 | |V | | | | | |01353 06286| +020026 |SZ Ant *|093852.9-295954 |E: | 11.7 | 12.4 | |p | | | | | |01353 06286| +020028 |TU Ant *|094239.5-255139 |LB: | 11.8 | 12.8 | |p | | | | | |01353 06286| +020032 |TY Ant |094620.1-292415 |SRB | 11.3 | 12.0 | |V | | | 103. | | |00001 06286| +020033 |TZ Ant |094644.0-291842 |SRA | 10.9 | 11.7 | |V |53431. | | 99. | | |00001 06286| +020034 |UU Ant *|094652.5-264245 |EA | 11.94 | 12.4 | 12.1 |V |53474.6407 | | 1.36411 |14 | |00001 06286| +020035 |UV Ant |094827.2-284005 |L: | 12.2 | 13.1 | |V | | | | | |00001 06286| +020036 |UW Ant |094854.1-280718 |SRB | 12.1 | 13.6 | |V | | | 126. | |M3-4 |00001 06286| +020038 |UY Ant |105908.6-355720 |M | 10.4 |< 14.5 | |V |53432. | | 297. | | |00001 06286| +020041 |VW Ant |092905.2-393338 |EB | 11.2 | 12.8 | |V |51967.6270 | | 1.08401 | | |N0002 03125| +020044 |VZ Ant |102523.8-354003 |M | 11.1 |< 14.4 | |V |53453. | | 424. | |Me |00001 02385| +020045 |WW Ant |102613.6-383037 |M | 10.4 |< 14.5 | |V |53422. | | 264. | |Me |N0002 02382| +020046 |WX Ant *|103105.3-355827 |EA | 11.25 | 12.95 | 11.6 |V |51964.6801 | | 3.8171 |16 | |00001 06286| +020047 |WY Ant *|101605.0-294342 |RRAB | 10.27 | 11.22 | |V |48500.5339 | | 0.574341 |15 |A5-F4 |HIP 06286| +020048 |WZ Ant *|100622.5-385254 |EW | 11.7 | 12.1 | 12.1 |V |53523.5577 | | 0.445924 | | |N0002 06286| +020049 |XX Ant *|094924.7-382057 |EA | 8.60 | 9.23 | 9.23 |V |53413.7871 | | 0.888014 |20 |A8/F0V |N0009 CoD | +020050 |XY Ant |101812.2-364819 |EA | 9.95 | 10.65 | |V |52734.5941 | | 2.1803 |10 | |N0002 CoD | +020051 |XZ Ant |101827.6-331633 |EA | 9.65 | 10.75 | |V |53036.7096 | | 7.150737 |13 | |00001 CoD | +020052 |YY Ant |100130.6-380528 |LB | 8.74 | 9.4 | |V | | | | |M3/4III |00001 CoD | +020053 |YZ Ant *|101733.8-322810 |EA | 10.48 | 11.54 | 10.56 |V |52988.815 | | 2.152391 |14 |A1IV |00001 CoD | +020054 |ZZ Ant |092858.7-342128 |M | 10.3 |< 12.0 | |V |53433. | | 221. | |Me |00001 CoD | +020055 |AA Ant |100601.3-312303 |M | 11.2 |< 14.4 | |V |53428. | | 270. | |Me |02935 GSC | +020056 |AB Ant |101153.8-351929 |LB | 6.6 | 7.1 | |V | | | | |C6,3(N0) |00001 CoD | +020057 |AC Ant |102132.7-343932 |M | 10.7 |< 14.6 | |V |53497. | | 212.86 | |Me |06012 06286| +020058 |AD Ant |103010.4-371852 |M | 10.4 | 14.7 | |V |53459. | | 316. | |Me |00001 02382| +020059 |AE Ant |101200.8-323502 |SRB | 8.8 | 10.7 | |V | | | 258. | |M5 |00001 CoD | +020061 |AG Ant *|101807.6-285931 |* | 5.29 | 5.83 | |V | | | 429. | |B9.5Ib-II |N0018 CoD | +020062 |AH Ant |105314.9-325919 |SRD | 8.40 | 8.7 | |V | | | 83. | |K2III |00001 CoD | +020063 |AI Ant *|094134.4-292225 |ACVO | 9.66 |( 0.02 )| |B | | | 3.69 | |Ap(Sr-Eu-Cr) |N0028 CoD | +020064 |AK Ant |093456.5-285239 |DSCTC | 8.80 |( 0.03 b )| |V | | | 0.066 | |A2II/III(w) |73012 CoD | +020065 |AL Ant |092918.1-334021 |LB | 7.40 | 7.78 | |V | | | | |M2/M3III |HIP HIP | +020066 |AM Ant |093235.1-335950 |ACV | 9.31 | 9.38 | |Hp| | | 4.8910 | |Ap(Si) |HIP HIP | +020067 |AN Ant *|093244.3-371335 |EB | 8.21 | 8.34 | 8.26 |V |52974.8389 | | 3.681309 | |F0/F2IV |00001 HIP | +020068 |AO Ant |094034.9-363214 |LB | 8.6 | 9.0 | |V | | | | |M0 |HIP HIP | +020069 |AP Ant |100449.0-281119 |ACV | 6.93 | 6.99 | |Hp| | | 18.201 | |Ap(Eu-Cr) |HIP HIP | +020070 |AQ Ant |101200.9-332725 |LB | 9.06 | 9.22 | |Hp| | | | |K5 |HIP HIP | +020071 |AR Ant |101421.0-380914 |LB | 9.30 | 9.48 | |Hp| | | | |M2/M3 |HIP HIP | +020072 |AS Ant |101542.7-312852 |LB: | 8.29 | 8.39 | |Hp| | | | |K5III |HIP HIP | +020073 |AT Ant |101550.7-321034 |SRA | 8.1 | 8.6 | |V |53497. | | 45.3 | |M4III |00001 HIP | +020074 |AU Ant |102634.7-344203 |SRB | 8.30 | 8.64 | |V | | | 30.3 | |M3III |N0002 HIP | +020075 |AV Ant |102710.0-371247 |SRB | 7.5 | 8.3 | |V | | | 84. | |M4III |00001 HIP | +020076 |AW Ant |103532.4-362312 |SRD: | 8.6 | 9.5 | |V | | | 700. : | |G5 |00001 HIP | +020077 |AX Ant |103624.9-314959 |LB | 8.53 | 8.70 | |V | | | | |K5 |HIP HIP | +020078 |AY Ant |104020.8-395603 |SRD | 9.64 | 10.06 | |V | | | 53.5 | |Kp |00001 HIP | +020079 |AZ Ant |104450.7-352039 |DSCTC | 7.93 | 7.96 | |Hp| | | 0.1053030 | |A5/7V |HIP HIP | +020080 |BB Ant |105133.1-343216 |SRB | 8.1 | 9.0 | |V | | | 125. | |M6III |00001 HIP | +020081 |BC Ant |105426.1-333009 |LB | 8.85 | 9.09 | |V | | | | |K5 |HIP HIP | +020082 |BD Ant |101806.4-360231 |M | 11.1 |< 15.0 | |V |53474. | | 283. | | |00001 USNO | +020083 |BE Ant |101800.2-325409 |M | 11.2 | 14.6 | |V |53476. | | 201. | | |00001 GSC | +020084 |BF Ant |095654.1-272831 |DSCTC | 6.32 |( 0.01 )| |V | | | | |A4V |78024 CoD | +020086 |BH Ant |093914.5-244037 |SRB | 11.2 | 12.0 | |V | | | 61. | | |79100 79010| +020087 |BI Ant |094253.8-401254 |SRA | 11.7 | 13.3 | |V |53530. | | 324. | | |79100 USNO | +020088 |BK Ant |094414.8-393941 |RRAB | 11.7 | 12.4 | |V |53135.653 | | 0.5165705 |20 | |79100 DM | +020091 |BN Ant *|095706.0-391726 |RRAB | 11.7 | 13.0 | |V |52841.465 | | 0.535901 |12 | |79064 GSC | +020092 |BO Ant |100753.8-323552 |EB | 8.83 | 9.37 | 9.01 |V |52215.849 | | 1.060168 | |A5V |79064 DM | +020093 |BP Ant |101031.4-363213 |M | 10.0 |< 14.2 | |V |53814. | | 190. | | |79064 GSC | +020094 |BQ Ant |101416.6-334322 |SRB | 9.8 | 10.9 | |V | | | 106. | | |79100 79080| +020095 |BR Ant |101555.5-305752 |LB | 10.0 | 11.5 | |V | | | | | |79100 DM | +020096 |BS Ant |101753.4-375012 |SRB | 11.5 | 12.3 | |V | | | 44. | | |79100 GSC | +020097 |BT Ant |103202.6-301037 |RR | 11.55 | 12.02 | |V |51870.54 | | 0.330435 |32 | |79064 79081| +020098 |BU Ant *|103910.2-393928 |LB | 9.5 | 10.8 | |V | | | | | |79100 DM | +020099 |BV Ant *|110125.5-371018 |EA | 11.52 | 12.24 | 12.24 |V |53447.705 | | 3.59426 |08 | |79003 DM | +020101 |BX Ant |101828.7-315003 |IT | 11.62 |( 0.49 )| |V | | | 0.54 | |M0Ve |80330 GSC | NL80_2 +020102 |BY Ant *|102248.4-333658 |EA | 9.21 | 9.28 | 9.26 |V |51906.72 | | 9.8604 |05 |Fm |80011 DM | NL80_2 +020103 |BZ Ant *|102934.8-303633 |IT | 9.65 |( 0.04 )| |V | | | 3.3 : | |F9Ve |80199 2MASS| NL80_2 +020104 |CC Ant *|103329.4-360358 |EA | 7.68 | 7.87 | 7.78 |V |53767.696 | | 2.44514 |14 |A8III |80011 DM | NL80_2 +020105 |CD Ant *|104129.7-341252 |EA | 10.33 | 10.67 | 10.63 |V |52043.870 | | 2.59549 |08 | |80048 GSC | NL80_2 +020106 |CE Ant |104230.1-334017 |IT | 11.06 |( 0.05 )| |V | | | 5.05 | |M2Ve |80330 GSC | NL80_2 +020107 |CF Ant |105221.4-361811 |EA | 10.12 | 10.47 | |V |53421.758 | | 1.53364 |08 |G2 |80011 GSC | NL80_2 +030001 |R Aps |145753.0-763946 |CST: | 5.35 | | |V | | | | |K4III-M0III |00207 CoD | +030002 |S Aps |150924.5-720345 |RCB | 9.6 | 15.2 | |V | | | | |C(R3) | 00002| +030003 |T Aps |135551.2-774808 |M | 8.4 | 15.0 | |V |41096. | | 261.03 |43 |M3e |00001 00002| +030004 |U Aps |152801.0-755547 |LB | 11.0 | 11.6 | |p | | | | |C(Nb) |00016 CoD | +030005 |V Aps |150447.5-713623 |LB | 10.5 | 11.5 | |p | | | | |MB |02043 05232| +030006 |W Aps |171416.2-740855 |LB | 10.8 | 12.2 | |p | | | | |M6 |00252 GSC | +030009 |Z Aps *|140654.8-712217 |UGZ | 10.7 | 12.7 | |V | | |( 19. :) | | |07031 00022| +030014 |RV Aps |142417.0-731727 |EA/DS | 10.6 | 15.2 | |p |25360.4 | | 34.074 | |A-F |00047 UCAC2| +030016 |RX Aps |143147.6-704721 |M | 10.5 | 16.0 | |p |25450. | | 474. | |Me |00047 00022| +030017 |RY Aps |143308.9-715600 |M | 10.0 |< 16.0 | |p |25660. | | 383. | | |00047 00022| +030022 |SV Aps |143843.9-723139 |M | 10.0 | 16.0 | |p |25410. | | 303. | | |00047 00022| +030025 |SY Aps |143924.3-724936 |RR: | 12.2 | 13.6 | |p | | | | | |00047 00022| +030028 |TU Aps |144019.3-704525 |S: | 11.0 | 12.2 | |p | | | | | |00047 00022| +030032 |TY Aps *|144850.0-711942 |RRAB | 11.25 | 12.20 | |V |39726.275 | | 0.5016935 |32 |A8-F6 |05233 00022| +030038 |UY Aps |145934.4-714754 |RRAB | 12.0 | 13.7 | |p |25326.54 | | 0.48252 | | |00047 00022| +030039 |UZ Aps |150141.1-715907 |SR | 12.1 | 13.9 | |p |25690. | | 88.3 | | |00047 00022| +030040 |VV Aps |150248.4-714814 |M | 12.4 |< 16.5 | |p |39355. | | 234.25 | |Me |00001 00022| +030042 |VX Aps |155956.3-751320 |RRAB | 11.5 | 12.6 | |p |34239.361 | | 0.484578 |35 |F9: |00080 02338| +030043 |VY Aps |160053.6-742853 |SRA | 11.0 | 14.52 | |B |27933. | | 152. | |S |00016 CoD | +030044 |VZ Aps |161614.5-740225 |M | 8.2 | 17.5 | |p |36845. | | 385. | |M5e |00001 04001| +030045 |WW Aps |163131.2-745944 |M | 9.0 | 16.8 | |p |27946. | | 267. | |M4(Ib)e |00016 GSC | +030046 |WX Aps |141532.6-741536 |EA/SD: | 11.5 |< 13. | |p | | | | | |00085 CPD | +030047 |WY Aps |175223.4-771332 |M | 12.5 | 16. | |p | | | | | |00085 02386| +030049 |XX Aps |172802.1-692022 |M | 10.1 | 13.2 | |V |53669. | | 159.54 | |Me |80002 08661| +030051 |XZ Aps |145205.4-794047 |RRAB | 10.8 | 12.8 | |p |28715.330 | | 0.587434 |12 : | |06960 05389| +030052 |YY Aps *|150234.3-724511 |EA | 12. | 12.5 | |p | | | | | |06561 06561| +030053 |YZ Aps |151000.7-782303 |RRAB | 11.4 | 13.1 | |p |36809.410 | | 0.489 |15 | |06960 04001| +030056 |AB Aps |151938.4-784038 |RRAB | 12.5 | 13.8 | |p |36728.380 | | 0.48185 |12 | |06960 04001| +030057 |AC Aps |152404.1-790631 |M | 11.5 | 15.7 | |p |36783. | | | | |05990 04001| +030067 |AN Aps *|154116.3-735744 |EB/KE | 12.4 | 13.1 | 12.8 |p |36761.270 | | 1.0452 | | |06960 04001| +030078 |AY Aps |155815.6-773838 |E | 12.4 | 13.2 | |p |36811.353 | | | | |06960 04001| +030080 |BB Aps |155840.6-775216 |RR: | 12.3 | 13.2 | |p |36810.25 | | | | |06960 04001| +030086 |BH Aps |160840.2-765028 |EA/SD | 10.8 | 13.4 | |p |36728.435 | | 3.652 |10 :*| |06960 04001| +030090 |BM Aps |161315.2-732618 |M: | 12.2 |< 15.5 | |p |36760. | | | | |06960 04001| +030092 |BO Aps |161755.5-723731 |E/SD: | 12.2 | 14.0 | |p |36811.238 | | | | |06960 04001| +030096 |BS Aps |162051.5-714016 |RRAB | 11.8 | 12.8 | |p |37419.947 | | 0.5825555 |15 | |06834 06561| +030099 |BV Aps |162808.3-795742 |E | 12.1 | 12.5 | |p |36809.413 | | | | |06960 04001| +030105 |CD Aps |163529.9-804542 |EA/SD: | 11.3 | 11.8 | |p |28693.550 | | 0.893660 | | |05235 04001| +030106 |CE Aps *|162920.8-712741 |M |<13.5 |< 15.5 | |p | | | | | |04489 04489| +030107 |CF Aps |163541.9-723838 |M | 11.6 |< 16.1 | |P |38769. | | 233.9 | | |08661 08661| +030111 |CK Aps |164206.4-741302 |RRAB | 12.4 | 13.2 | |p |36690.450 | | 0.6235 |25 | |06960 04001| +030117 |CQ Aps |164928.7-720335 |M | 11.3 |< 14.5 | |V |54613. | | 249. | |Me |00001 08661| +030122 |CV Aps |165918.8-750203 |M | 12.5 |< 17. | |p | | | | | |04001 04001| +030127 |DD Aps |170353.8-743649 |RRAB | 12.3 | 13.1 | |p |36725.320 | | 0.6482 |20 | |06960 04001| +030132 |DI Aps |170948.7-732541 |RRAB | 12.5 | 13.4 | |p |36050.237 | | 0.519236 |13 | |00001 04489| +030136 |DN Aps |171414.7-721443 |M | 12.0 |< 14.8 | |V |53628. | | 210. | | |00001 04489| +030141 |DS Aps |171839.8-711638 |M | 11.7 | 15.5 | |p |36785. | | 267. | |Me |04489 04489| +030143 |DU Aps |172546.0-782326 |EA/SD: | 11.3 | 12.0 | |p |28687.375 | | 3.087910 |10 | |05235 04001| +030145 |DW Aps |172330.0-675545 |EA/SD: | 7.9 | 9.1 | |p |39209.502 | | 2.312950 |14 |B6III |05236 CoD | +030150 |EF Aps *|173117.1-743824 |EA/DS | 12.3 | 13.3 | 12.6 |p |36760.20 | | 10.06 |14 *| |06960 04001| +030158 |EO Aps |173824.0-742758 |M | 12.5 |< 15.5 | |p |36840. :| | | | |06960 04001| +030159 |EP Aps |174431.6-801532 |M | 12.0 | 15.7 | |p |36728. | | | | |05990 04001| +030163 |ET Aps |174430.8-741931 |E | 11.5 | 12.1 | |p |36809.244 | | | | |06960 04001| +030165 |EV Aps |175152.1-774054 |RRC | 12.1 | 12.5 | |p |36725.390 | | 0.2834 |25 | |06960 04001| +030166 |EW Aps |175200.1-765126 |M | 12.5 | 17.5 | |p |36808. | | | | |05990 04001| +030167 |EX Aps |175145.0-692005 |RRAB | 11.5 | 12.8 | |p |27933.542 | | 0.4717993 |10 | |04183 02383| +030177 |FN Aps |155133.3-722222 |EA/SD | 11.0 | 12.4 | |p |16589.757 | | 5.73075 | | |08040 03776| +030188 |FY Aps *|171420.2-700048 |EB/DM | 10.9 | 11.7 | |p |28745.125 | | 5.499350 | | |05255 05255| +030189 |FZ Aps |142824.8-825008 |EA/SD: | 12.5 | 13.2 | |p |38884.350 | | 2.89065 | | |05829 05829| +030190 |GG Aps |142611.7-791253 |M: | 12.2 | 16.8 | |p | | | | | |04618 05829| +030191 |GH Aps |170156.4-713044 |SRB | 9.5 | 11.3 | |V | | | 137.48 | |Me |80002 05834| +030200 |GR Aps |154015.4-763429 |L | 12.5 | 12.9 | |p | | | | | |06960 04001| +030212 |HL Aps *|160752.4-794933 |EB/KE | 12.3 | 12.9 | 12.6 |p |36728.405 | | 0.956 | | |06960 04001| +030213 |HM Aps |160831.6-735226 |SR | 12.2 | 12.7 | |p |36785. | | 65. : | | |06960 04001| +030225 |HY Aps |162513.5-733720 |L | 10.8 | 11.2 | |p | | | | | |06960 04001| +030227 |II Aps *|162741.9-745044 |EW/KE | 11.2 | 11.7 | 11.6 |p |36694.450 | | 0.8424 | | |06960 04001| +030228 |IK Aps |162733.5-725257 |L | 12.2 | 14.0 | |p | | | | | |06960 04001| +030232 |IO Aps *|163527.7-743318 |EA/SD | 12.3 | 13.3 | 12.4 |p |36720.36 | | 7.995 | *| |06960 04001| +030237 |IT Aps |164849.5-785458 |L | 11.3 | 12.0 | |p |36730. | | | | |06960 04001| +030240 |IW Aps |165213.2-755738 |SR | 11.6 | 12.0 | |p |36735. | | 30. : | | |06960 04001| +030246 |KM Aps |170729.5-755051 |L | 11.0 | 11.5 | |p | | | | | |06960 04001| +030263 |LO Aps *|174710.2-773720 |EB/KE | 11.3 | 11.8 | 11.5 |p |36729.330 | | 0.7988 | | |06960 04001| +030273 |LY Aps |151940.2-711259 |LB | 12. | 12.5 | |p | | | | |M4 |00085 CPD | +030275 |MM Aps |155807.2-721848 |M: | 12. | 15.3 | |p | | | | | |04453 05502| +030277 |MO Aps |162336.1-801507 |L | 12.5 | 13. | |p | | | | | |02554 02834| +030280 |MR Aps |170757.5-734335 |E | 10. | 11. | |p | | | | | |00085 02834| +030281 |MS Aps |171425.2-763324 |M: | 12.5 |< 13.5 | |p | | | | | |00085 02382| +030285 |MW Aps |152151.8-743350 |M | 11.0 | 16.7 | |p | | | | | |04453 06031| +030288 |MZ Aps |171009.3-722739 |M | 9.7 |< 14.0 | |V |52713. | | 392. | | |00001 08661| +030289 |NN Aps |153127.1-710344 |ACV | 6.86 | 6.92 | |V | | | | | |71133 CPD | +030290 |NO Aps |173127.5-805133 |SR | 5.71 | 5.95 | |V | | | | | |71030 CPD | +030291 |NP Aps |141310.9-732535 |LB | 8.27 | 8.66 | |Hp| | | | | |HIP HIP | +030292 |NQ Aps |141743.3-760518 |SRB | 7.22 | 7.35 | |Hp| | | | | |HIP HIP | +030293 |NR Aps |141855.8-712347 |LB: | 7.86 | 7.97 | |Hp| | | | | |HIP HIP | +030294 |NS Aps |142554.6-782728 |LB | 7.84 | 8.23 | |Hp| | | | | |HIP HIP | +030295 |NT Aps |144242.6-741842 |EW | 8.40 | 8.87 | |Hp| | | | | |HIP HIP | +030296 |NU Aps |145308.3-824057 |LB: | 8.56 | 8.71 | |Hp| | | | | |HIP HIP | +030297 |NV Aps |145251.2-713751 |LB: | 8.90 | 9.03 | |Hp| | | | | |HIP HIP | +030298 |NW Aps |145538.5-794821 |EB | 9.23 | 9.51 | |Hp| | | | | |HIP HIP | +030299 |NX Aps |145641.8-751904 |I: | 11.24 | 11.66 | |Hp| | | | | |HIP HIP | +030300 |NY Aps |151223.4-751516 |BY: | 9.50 | 9.61 | |Hp| | | | | |HIP HIP | +030301 |NZ Aps |151538.2-722355 |LB | 7.94 | 8.08 | |Hp| | | | | |HIP HIP | +030302 |OO Aps |151929.1-714731 |LB | 6.58 | 6.68 | |Hp| | | | | |HIP HIP | +030303 |OP Aps |152432.5-802626 |DSCTC | 8.15 | 8.23 | |Hp| | | | | |HIP HIP | +030304 |OQ Aps |155746.8-813130 |LB | 8.58 | 8.75 | |Hp| | | | | |HIP HIP | +030305 |OR Aps |161632.3-780800 |LPB: | 9.11 | 9.22 | |Hp| | | | | |HIP HIP | +030306 |OS Aps |163800.7-705303 |LB | 8.93 | 9.43 | |Hp| | | | | |HIP HIP | +030307 |OT Aps |163909.3-752919 |EA | 7.98 | 8.34 | |Hp| | | | | |HIP HIP | +030308 |OU Aps |164148.4-732558 |ACV: | 8.60 | 8.69 | |Hp| | | | | |HIP HIP | +030309 |OV Aps |165727.9-762506 |ACV: | 8.14 | 8.19 | |Hp| | | | | |HIP HIP | +030310 |OW Aps |170951.6-821907 |LPB | 7.14 | 7.19 | |Hp| | | | | |HIP HIP | +030311 |OX Aps |171051.2-734049 |LB | 8.24 | 8.52 | |Hp| | | | | |HIP HIP | +030312 |OY Aps |173054.8-813642 |LB | 8.01 | 8.43 | |Hp| | | | | |HIP HIP | +030313 |OZ Aps |173236.0-680404 |EA | 8.59 | 8.67 | |Hp| | | | | |HIP HIP | +030314 |PP Aps |174304.7-705222 |EA | 9.65 | 10.02 | |Hp| | | | | |HIP HIP | +030316 |PR Aps |144417.2-735806 |DSCTC | 8.07 | 8.16 | |Hp| | | | | |77086 DM | +030317 |PS Aps *|153111.1-784511 |EB | 7.86 | 7.97 | 7.89 |V |48574.241 | | 1.086152 | |F3V |78011 DM | +030318 |PT Aps |141533.0-721740 |EA | 12.19 | 13.3 : | 12.33 |V |51903.842 | | 2.74188 |16 | |79018 79076| +030319 |PU Aps |143753.2-742157 |EA | 12.35 | 14.0 : | 12.4 : |V |52867.455 | | 5.05085 |10 | |79004 79076| +030320 |PV Aps *|151128.5-732534 |EA | 7.80 | 8.30 | 8.26 : |V |52705.750 | | 28.877 |02 : |A9III/IV |79009 DM | +030321 |PW Aps |152528.4-782655 |SRB | 9.6 | 10.8 | |V | | | 89. | |Me |79100 DM | +030322 |PX Aps |164529.9-764819 |EB: | 12.31 | 12.64 | 12.45 : |V |53523.692 | | 0.820805 | | |79009 79082| +030323 |PY Aps |171340.1-735344 |SRB | 10.4 | 11.5 | |V | | | 142. | | |79100 79197| +030324 |PZ Aps |172447.0-690848 |EA | 11.50 | 12.39 | 11.68 |V |51950.843 | | 5.3275 |10 | |79018 79106| +030326 |QR Aps |135735.8-730403 |M | 12.1 |< 14.5 | |V |54549. | | 237. | | |80001 2MASS| NL80_2 +030327 |QS Aps |135955.4-785251 |M | 10.8 |< 15.0 | |V |55011. | | 192. | | |80001 GSC | NL80_2 +030328 |QT Aps |140645.5-810616 |SRB | 11.3 | 12.3 | |V | | | 59.4 | | |80002 GSC | NL80_2 +030329 |QU Aps |140702.4-721130 |M | 12.4 |< 14.0 | |V |54291. | | 226. | | |80001 2MASS| NL80_2 +030330 |QV Aps |140800.8-804202 |M | 11.0 | 15.0 | |V |55032. | | 315. | | |80001 GSC | NL80_2 +030332 |QX Aps *|140956.3-710515 |SRB | 12.0 | 14.0 | |V | | | 653. | | |80001 GSC | NL80_2 +030333 |QY Aps |141319.2-751415 |M | 10.2 |< 15.0 | |V |55038. | | 329.6 | | |80002 2MASS| NL80_2 +030335 |V0335 Aps |141451.7-791654 |SRA | 11.1 | 13.4 | |V |54927. | | 146.8 | | |80001 GSC | NL80_2 +030336 |V0336 Aps |141503.0-741447 |DSCT | 11.12 | 11.22 | |V | | | 0.1322093 | | |80242 80242| NL80_2 +030337 |V0337 Aps |141951.0-783858 |M | 10.4 | 15.0 | |V |53742. | | 185.4 | |Me |80001 GSC | NL80_2 +030348 |V0348 Aps |150753.2-721738 |M | 12.4 |< 15.3 | |V |54906. | | 252. | |M5-M7 |80001 2MASS| NL80_2 +030349 |V0349 Aps |150923.6-761648 |SRB | 9.4 | 11.2 | |V | | | 170. | | |80002 DM | NL80_2 +030350 |V0350 Aps |150927.6-822643 |M | 11.0 |< 15.0 | |V |54940. | | 220. | | |80002 2MASS| NL80_2 +030351 |V0351 Aps |150951.9-763306 |M | 10.8 |< 14.3 | |V |54970. | | 190. | |Me |80001 2MASS| NL80_2 +030353 |V0353 Aps |151337.3-755235 |M | 11.0 |< 14.5 | |V |54755. | | 288. | | |80406 80406| NL80_2 +030354 |V0354 Aps *|151528.6-774642 |EA | 12.35 | 12.60 | 12.50 |V |53646.5483 | | 0.587153 |17 | |80242 80242| NL80_2 +030355 |V0355 Aps |151850.7-731601 |M | 12.3 |< 15.0 | |V |54903. | | 255. | | |80001 2MASS| NL80_2 +030358 |V0358 Aps |153754.4-714847 |LB | 12.0 | 13.4 | |V | | | | | |80001 GSC | NL80_2 +030359 |V0359 Aps |153847.0-724016 |M | 11.1 | 15.0 | |V |55070. | | 371.3 | | |80002 GSC | NL80_2 +030361 |V0361 Aps |155303.9-722505 |M | 12.2 |< 15.4 | |V |54621. | | 159.3 | | |80001 GSC | NL80_2 +030363 |V0363 Aps |160332.3-705326 |RRAB | 11.5 | 12.1 | |V |53906.7818 | | 0.728561 |20 | |80002 GSC | NL80_3 +030366 |V0366 Aps |175033.3-691618 |GDOR | 11.55 | 11.62 | |V |54592.8024 | | 0.427913 | | |80242 80242| NL80_3 +0390041|del 1 Aps *|162020.8-784145 |LB: | 4.66 | 4.87 | |V | | | | |M4-M5III |04456 CPD | +039005 |eps Aps |142223.2-800632 |GCAS: | 4.99 | 5.04 | |Hp| | | | | |HIP HIP | +039008 |tet Aps |140519.9-764748 |SRB | 6.4 | 8.6 | |p | | | 119. | |M7III |00207 CPD | +0390101|kap 1 Aps *|153130.8-732323 |GCAS | 5.43 | 5.61 | |V | | | | |B3IVe |06311 CPD | +040001 |R Aqr *|234349.5-151704 |M+ZAND | 5.2 | 12.4 | |V |54045. | | 390. |41 |M5e-M8.5e+pec |00001 00002| +040002 |S Aqr |225706.5-202036 |M | 7.6 | 15.0 | |V |52107. | | 279.3 |39 |M4e-M6e |00001 00002| +040003 |T Aqr |204956.4-050848 |M | 7.0 | 14.2 | |V |53229. | | 201.1 |47 |M2e-M5.5e |00001 00002| +040004 |U Aqr |220319.7-163735 |RCB | 10.6 | 15.9 | |V | | | | |pec |03891 00002| +040005 |V Aqr *|204649.4+022615 |SRB | 7.6 | 10.1 | |V | | | 241. | |M6e |N0039 00002| +040006 |W Aqr *|204625.0-040500 |M | 8.3 | 15.2 | |V |53940. | | 376.1 |42 |M6-M8e |00001 00002| +040007 |X Aqr |221839.3-205404 |M | 7.2 | 15.0 | |V |52951. | | 311.4 |42 |S6,3e:(M4e-M6.5e)|00001 00002| +040008 |Y Aqr |204425.1-045001 |M | 8.1 | 15.5 | |V |52240. | | 382.34 |43 |M6.5e-M9 |00001 00002| +040009 |Z Aqr |235214.6-155117 |SRA | 7.4 | 10.2 | |V |52945. | | 136.6 |50 |M1e-M7III |00001 HIP | +040010 |RR Aqr |211501.3-025345 |M | 9.1 | 14.7 | |V |53954. | | 182.45 |43 |M2e-M4e |00001 00002| +040011 |RS Aqr |211058.1-040140 |M | 9.3 | 15.0 | |V |54005. | | 221.3 |50 |M2e |00001 00002| +040012 |RT Aqr |222312.9-220324 |M | 8.8 | 13.1 | |V |51890. | | 252.2 |50 |M5e-M6e |N0002 00002| +040013 |RU Aqr |232424.3-171909 |SRB | 8.5 | 10.1 | |V | | | 118.8 | |M4/5III |N0002 HIP | +040014 |RV Aqr |210551.7-001242 |M | 9.0 |< 13. | |V |52088. | | 453. | |C6,3e |N0002 GSC | +040015 |RW Aqr |212305.8+005016 |M | 8.5 | 14.5 | |V |54010. | | 140. |38 |M2e-M4e |00001 BD | +040016 |RX Aqr *|211246.3-142333 |LB | 7.8 | 8.6 | |V | | | | |M4 |00797 BD | +040017 |RY Aqr *|212016.0-104808 |EA | 8.82 | 10.21 | 8.92 |V |52500.0210 | | 1.966577 |10 *|A3 |N0041 BD | +040018 |RZ Aqr |212303.7-070629 |M | 10.0 |< 15.5 | |V |52954. | | 391. | |M3e-M9 |N0002 06286| +040019 |SS Aqr |221954.4-142407 |M | 9.2 | 13.6 | |V |52284. | | 202.2 |50 |M2e |N0002 BD | +040020 |ST Aqr *|222101.9-065751 |EB | 9.15 | 9.67 | 9.37 |V |52500.580 | | 0.7809919 | |A7:+G8IV: |00001 BD | +040021 |SU Aqr *|225203.9-125644 |EA | 9.67 | 10.28 | 9.74 |V |52500.714 | | 1.0446981 |17 |A5V |N0041 BD | +040022 |SV Aqr |232245.4-104900 |LB | 9.44 | 11.06 | |V | | | | |M4-5 |05973 BD | +040023 |SW Aqr *|211517.9+000435 |RRAB | 10.37 | 11.68 | |V |52896.700 | | 0.459300 |11 |A5-G1 |N0002 HIP | +040024 |SX Aqr *|213608.4+031350 |RRAB | 11.05 | 12.19 | |V |53882.828 | | 0.5357087 |10 |A5-F7 |00001 HIP | +040025 |SY Aqr |215044.5-050705 |SRB | 9.1 | 11.6 | |V | | | 215. | |M5 |00001 BD | +040026 |SZ Aqr |224250.3-211045 |LC | 8.4 | 10.4 | |V | | | | |K0-M3eIa |00001 BD | +040027 |TT Aqr *|225455.4-092228 |SRB | 8.3 | 9.2 | |V | | | 76.3 | |M5 |N0002 BD | +040028 |TU Aqr |210734.6+012228 |SRB | 11.4 | 13.8 | |V | | | 97.9 | | |N0002 06286| +040029 |TV Aqr |205342.2-013807 |M | 11.9 |< 14.2 | |V |52832. | | 398.5 | |M7 |00001 06286| +040030 |TW Aqr |210405.6-020244 |LB | 11.9 | 13.5 | |V | | | | |M5 |00001 06286| +040031 |TX Aqr |210642.6-012006 |M | 10.3 |< 14.0 | |V |52204. | | 348.7 | | |00001 GSC | +040032 |TY Aqr |214804.9+002202 |M | 12.0 |< 15.0 | |V |53544. | | 213. | | |00001 06286| +040033 |TZ Aqr *|220155.5-053603 |RRAB | 11.67 | 12.58 | |V |52922.604 | | 0.571191 |15 |A6-F6 |N0002 06286| +040035 |UV Aqr |224359.4+014441 |SRA | 10.2 | 12.2 | |V |53902. | | 166.3 |50 |C |00001 06286| +040036 |UW Aqr |220639.2-002527 |SRB | 10.2 | 12.2 | |V | | | 212. | |M5 |00001 68018| +040037 |UX Aqr |231324.1-151916 |M | 10.0 |< 14.0 | |V |52824. | | 322. | |M4e |N0002 06286| +040038 |UY Aqr |204654.5-094746 | | 12.5 | 14.1 | |p | | | | | |01469 06286| +040040 |VV Aqr |205900.7-073229 |M | 11.6 | 14.2 | |V |52248. | | 142.5 |45 | |N0002 06286| +040041 |VW Aqr |210054.5-013112 |M | 10.8 |< 14.5 | |V |53862. | | 210.2 | |Me |00001 06286| +040042 |VX Aqr |210232.6-063621 |M | 10.0 | 14.5 | |V |52803. | | 185.7 |55 | |00001 06286| +040043 |VY Aqr *|211209.2-084937 |UGSU | 10.0 | 17.52 | |V | | | | |pec(UG) |N0054 72085| +040044 |VZ Aqr |213024.6-025917 |UGSS | 12.0 | 18.4 | |V | | |( 50.4 ) | |pec(UG) |N0117 72085| +040045 |WW Aqr |213453.0+024210 |M | 10.5 |< 14.5 | |V |53640. | | 242.7 | | |00001 06286| +040046 |WX Aqr |221015.9-163947 |RRAB | 12.4 | 13.6 | |V |52083.781 | | 0.5508402 |15 | |00001 06286| +040047 |WY Aqr |221516.6+014017 |M | 10. |< 14. | |p |52622. | | 247.8 | | |00001 06286| +040049 |XX Aqr *|204218.9-081530 |M | 9.1 |< 15.0 | |V |52810. | | 323.4 | |M4 |N0002 06286| +040050 |XY Aqr |232122.3-173058 |CST: | 9.37 | | |V | | | | |G0V |00001 BD | +040051 |XZ Aqr *|220500.8-084940 |EA | 11.8 | 13.6 |( 0.2 V)|p |52500.813 | | 2.059232 |11 | |N0041 GSC | +040052 |YY Aqr |221113.3-160747 |SRB | 10.0 | 12.3 | |V | | | 197. | |Me |N0002 06286| +040053 |YZ Aqr *|221430.5-105547 |RRAB | 11.98 | 13.1 | |V |52886.656 | | 0.5519346 |11 | |00001 06286| +040054 |ZZ Aqr |221935.3-094033 |SRA | 10.9 | 12.9 | |V |52887. | | 173.5 |35 | |00001 06286| +040055 |AA Aqr *|223603.8-100055 |RRAB | 12.26 | 13.4 | |V |53579.843 | | 0.6088859 |17 | |00001 06286| +040056 |AB Aqr |223834.6-140214 |LB | 8.8 | 10.0 | |V | | | | |M7 |00001 BD | +040057 |AC Aqr |211621.9-021342 |SRD | 10.0 | 10.5 | |V |52887. | | 68.0 | |F8 |00001 BD | +040058 |AD Aqr |211740.6-130653 |LB | 10.3 | 11.8 | |V | | | | |M2 |00001 BD | +040059 |AE Aqr *|204009.2-005215 |XM+ELL | 10.18 | 12.12 | |V | | | | |K3Ve+pec(e) | 72085| +040068 |AO Aqr *|221131.9-224717 |EW | 11.04 | 11.67 | 11.65 |V |52898.651 | | 0.4893432 | |F: |00001 00022| +040069 |AP Aqr |221215.5-231925 |LB | 11.2 | 12.1 | |V | | | | | |00001 00022| +040070 |AQ Aqr |221250.9-210952 |M | 11.3 |< 15.0 | |V |52742. | | 237.1 | | |N0002 00022| +040075 |AV Aqr |222413.4-194743 |M | 11.0 |< 14.5 | |V |52777. | | 250.7 | | |00001 00022| +040087 |BI Aqr *|224011.4-231341 |EB | 11.85 | 12.4 | 12.4 |V |52144.666 | | 13.0470 | | |00001 00022| +040088 |BK Aqr |210900.7-050456 |SRB | 9.1 | 10.1 | |V | | | 71.4 | |M5 |N0002 BD | +040089 |BL Aqr |211412.5-015843 |LB | 9.75 | 11.7 | |V | | | | |G2-K0(M2) |00104 BD | +040090 |BM Aqr |220645.0-153840 |SRB | 9.6 | 10.4 | |V | | | 55.6 | |M3III: |N0002 HIP | +040091 |BN Aqr *|222748.7-072902 |RRAB | 11.77 | 12.94 | |V |52900.644 | | 0.4696822 |12 |F3 |00001 00975| +040092 |BO Aqr *|225408.3-122138 |RRAB | 11.51 | 12.62 | |V |52922.754 | | 0.6940301 |16 |A8-F1 |00001 00975| +040094 |BQ Aqr *|233608.9-162808 |EA | 10.7 | 11.5 | 10.9 |V |52070.826 | | 6.620525 |11 | |00001 00975| +040095 |BR Aqr *|233832.9-091908 |RRAB | 10.75 | 11.93 | |V |52068.837 | | 0.4818713 |12 |A8-F6 |00001 HIP | +040096 |BS Aqr *|234846.0-080845 |DSCT | 9.12 | 9.62 | |V |52093.793 | | 0.197822 |31 |A8-F3 |N0002 HIP | +040097 |BT Aqr *|205748.3-054107 |RRAB | 11.78 | 12.84 | |V |52885.794 | | 0.4063607 |15 |A |00001 00190| +040099 |BV Aqr *|220254.0-213132 |RRC | 10.72 | 11.24 | |V |52730.904 | | 0.363714 |50 | |00001 HIP | +040100 |BW Aqr *|222315.9-151956 |EA | 10.31 | 10.92 | 10.86 |V |52501.720 | | 6.719708 |04 *|F8IV+F7IV |N0041 HIP | +040101 |BX Aqr *|205143.1-110530 |EA | 12.0 | 13.5 | 12.2 |V |52502.640 | | 1.529629 |11 *| |00001 00190| +040103 |BZ Aqr |210124.1-072600 |M | 10.8 |< 14.5 | |V |52513. | | 202.2 | |M3 |N0002 GSC | +040105 |CD Aqr *|211959.4-040632 |EA | 10.8 | 11.7 | 11.0 |V |51877.419 | | 4.837761 |12 *|A5 |N0002 BD | +040106 |CE Aqr |225221.0-104522 |SRB | 10.5 | 11.2 | |V | | | 57.3 | | |N0002 00975| +040114 |CN Aqr |210826.8-130107 |SRA | 11.7 | 12.7 | |V |52969. | | 106.2 |45 | |00001 06286| +040116 |CP Aqr *|211012.9-014316 |RRAB | 11.03 | 12.40 | |V |52094.717 | | 0.4634012 |15 |A7-F5 |00001 00205| +040123 |CW Aqr *|221922.3-165333 |EB | 10.62 | 11.09 | 10.83 |V |52859.689 | | 0.5429077 | | |00001 BD | +040124 |CX Aqr *|223543.9-004133 |EB | 10.55 | 11.80 | 10.90 |V |52500.4293 | | 0.5559894 |17 *|F2p |00001 00002| +040125 |CY Aqr *|223747.9+013204 |SXPHE | 10.42 | 11.20 | |V |52956.629 | | 0.061038408 |26 |A2-A8 |00001 HIP | +040126 |CZ Aqr *|232220.6-155621 |EA | 10.70 | 12.08 | 11.00 |V |54035.943 | | 0.86275209 |19 *|A7V |00001 BD | +040127 |DD Aqr *|224553.3+010259 |EB | 10.63 | 11.32 | |V |53268.609 | | 0.7210127 | |A5p |00001 00470| +040128 |DE Aqr |205538.6-122341 |LB | 11.7 | 13.0 | |V | | | | |M5 |00193 06286| +040129 |DF Aqr |205819.2-112054 |LB | 11.7 | 12.7 | |V | | | | |M5 |00193 06286| +040130 |DG Aqr |205841.3-104357 |SRB | 11.7 | 12.6 | |V | | | 95. | |M6: |N0002 06286| +040131 |DH Aqr |210052.8-120506 |SRB | 11.6 | 12.8 | |V | | | 64.7 | | |N0002 06286| +040132 |DI Aqr |210752.7-122815 |SRB | 10.7 | 12.0 | |V | | | 136.4 | | |N0002 06286| +040133 |DK Aqr |211402.5-115316 |LB | 11.8 | 12.9 | |V | | | | | |00193 06286| +040134 |DL Aqr |212249.4-024736 |SRA | 9.9 | 12.1 | |V |53269. | | 137.0 |40 | |00001 00205| +040135 |DM Aqr |231858.1-071850 |M | 10.9 | 14.3 | |V |52185. | | 148.3 |50 | |N0002 06286| +040136 |DN Aqr *|231917.2-241259 |RRAB | 10.73 | 11.51 | |V |52033.899 | | 0.633760 |16 |F3-F9 |00001 HIP | +040141 |DS Aqr *|225317.0-183531 |RVA | 10.2 | 11.3 | |V |52213.5 | | 77.34 | |F2II |N0002 HIP | +040142 |DT Aqr |204941.7-142508 |LB | 9.84 | 10.53 | |V | | | | |M |00797 BD | +040144 |DV Aqr *|205841.8-142859 |EB | 5.89 | 6.25 | 6.1 |V |52500.21 | | 1.575529 | |A9IV |N0041 HIP | +040146 |DX Aqr *|220226.3-165753 |EA | 6.43 | 6.88 | 6.55 |Hp|51808.000 | | 0.9450106 |15 |A2V |00001 HIP | +040147 |DY Aqr *|221904.3-023830 |EA | 10.23 | 10.95 | 10.32 |V |52500.29 | | 2.159702 |13 |A0 |N0041 05404| +040148 |DZ Aqr |222141.8-073630 |LB | 8.2 | 9.3 | |V | | | | |M7 |00001 HIP | +040149 |EE Aqr *|223442.0-195135 |EB | 7.91 | 8.55 | 8.12 |V |52500.055 | | 0.50899582 | |F0V |N0041 HIP | +040150 |EF Aqr *|230119.1-062615 |EA | 9.88 | 10.5 | 10.11 |V |51483.622 | | 2.85358 |06 |G1V |N0060 BD | +040153 |EI Aqr *|212920.3-065900 |EA | 11.5 | 12.2 | 11.6 |V |51875.318 | | 1.222318 |12 | |03165 00190| +040154 |EK Aqr *|233916.2-090905 |EW | 10.80 | 11.33 | 11.23 |V |53301.009 | | 0.612790 | | |00001 05503| +040155 |EL Aqr *|234718.4-080512 |EW | 10.35 | 10.75 | 10.71 |V |52500.119 | | 0.4814092 | |F3V |N0041 BD | +040156 |EM Aqr |205508.3-012223 |DSCTC | 6.55 |( 0.03 )| |V | | | 0.1024746 | |A9Vn |HIP HIP | +040157 |EN Aqr |204744.2-050140 |LB | 4.41 |( 0.06 )| |V | | | | |M3III |05840 HIP | +040159 |EP Aqr *|214631.9-021246 |SRB | 6.37 | 6.82 | |V | | | 55. : | |M8III |06645 HIP | +040160 |EQ Aqr |230417.2-160036 |SRB | 9.1 | 9.9 | |V | | | 117. | |M3/M4 |00001 HIP | +040161 |ER Aqr |230525.6-222913 |LB | 7.14 | 7.81 | |V | | | | |M3III |05973 HIP | +040162 |ES Aqr |233820.8-233320 |SRB | 9.56 | 10.2 | |V | | | 60.7 | |M4III |00001 CoD | +040163 |ET Aqr |235121.3-185433 |ACV | 5.12 | 5.21 | |V | | | 3.735239 | |B9pSiCrSr |N0102 HIP | +040164 |EU Aqr |203900.8+005558 |M | 10.5 |< 15.0 | |V |52554. | | 279.0 | |Me |N0002 06286| +040165 |EV Aqr |210617.9+005244 |SRA | 11.3 | 13.6 | |V |52143. | | 124.9 | | |N0002 06286| +040166 |EW Aqr |211141.3-142821 |DSCTC | 6.41 | 6.48 | |V | | | 0.0968946 | |A8III |HIP HIP | +040167 |EX Aqr *|211514.8+022845 |EB | 11.6 | 12.3 | 11.8 |V |52500.470 | | 0.8893842 | | |N0041 06286| +040168 |EY Aqr |211502.8-094637 |M | 11.8 |< 15.0 | |V |52756. | | 282.4 | | |N0002 08066| +040170 |FF Aqr *|220036.4-024427 |EA/RS | 10.08 | 11.47 | |U |42752.9577 | | 9.207755 |06 |G8III+sdOB |08201 HIP | +040173 |FI Aqr *|222433.9-232203 |ACV | 7.49 | 7.52 | |V | | | 4.689 | |B9pSi |00208 HIP | +040174 |FK Aqr *|223845.6-203716 |UV+BY | 10.9 | 11.72 | |U | | | 4.252 | |M2Ve |N0024 HIP | +040176 |FM Aqr |224830.2-103320 |DSCTC | 6.16 | 6.19 | |V | | | 0.087 | |A9III-IV |08336 HIP | +040177 |FN Aqr |210307.6-011831 |DSCTC | 7.34 |( 0.01 )| |V | | | | |F5III |67009 HIP | +040179 |FP Aqr |204636.9-005410 |M | 11.1 | 15.5 | |V |52544. | | 483. | |M8 |N0002 GSC | +040180 |FQ Aqr |205121.3+021846 |PVTEL | 9.47 | 9.60 | |V | | | 21.23 |50 |F0 |68016 BD | +040182 |FS Aqr *|220543.1-002346 |EW | 12.5 | 13.3 | 13.2 |V |53670.303 | | 0.2620461 | | |00001 68018| +040183 |FT Aqr |220718.5-001225 |LB | 11.6 | 12.6 | |V | | | | | |00001 68018| +040187 |FX Aqr *|221301.2-014341 |RRAB | 12.5 | 13.2 | |V |53253.723 | | 0.5882260 |20 | |00001 68018| +040188 |FY Aqr |221635.0-034855 |CWB | 11.8 | 12.7 | |V |52069.804 | | 1.022894 |12 | |N0002 68018| +040193 |GK Aqr *|221956.9-003947 |EW | 12.0 | 12.9 | 12.8 |V |53656.382 | | 0.3274176 | | |00001 68018| +040196 |GN Aqr *|222218.7-041223 |EA | 11.72 | 12.16 | 12.10 |V |53244.640 | | 4.40445 |05 | |N0060 68018| +040198 |GP Aqr |222539.1-075628 |RRC | 10.63 | 11.04 | |V |52424.80 | | 0.405278 |50 | |N0002 68018| +040209 |HH Aqr *|224131.5-062839 |RRAB | 11.6 | 12.7 | |V |51889.526 | | 0.5744539 |20 | |00001 68018| +040210 |HI Aqr *|225328.7-113700 |ACV: | 5.80 |( 0.01 )| |V | | | 3.40 : | |B9pHgMn |09919 HIP | +040211 |HK Aqr *|230819.6-152436 |BY+UV | 10.72 | 10.94 | |V | | | 0.4312 | |M2.5Ve |N0123 HIP | +040213 |HM Aqr *|223527.5-171527 |E: | 8.72 | 9.40 | |V |52404. | | 255. | |A0III |00001 HIP | +040214 |HN Aqr |223738.3-183951 |BCEP | 11.42 | 11.48 | |V | | | 0.152310 | |B1 |N0124 N0125| +040215 |HO Aqr |234636.8-102238 |IS: | 12.4 | 12.8 | |V | | | | | |00001 00205| +040217 |HQ Aqr |232413.2-123756 |RRAB | 12.3 | 13.6 | |V |53281.658 | | 0.5188923 |20 | |00001 N0126| +040219 |HS Aqr *|204054.0-003551 |EA | 9.07 | 9.50 | 9.23 |V |52500.6948 | | 0.7101875 |16 |F8V+G |N0041 71199| +040220 |HT Aqr |214019.8-014710 |SRB | 8.98 | 9.65 | |V | | | 301. | |M5 |00001 BD | +040222 |HV Aqr *|212124.8-030937 |EW/RS | 9.74 | 10.21 | 10.15 |V |52500.2163 | | 0.3744583 | | |N0041 BD | +040224 |HX Aqr |204011.6-005535 |E: | 11.86 | 12.30 | |V | | | | | |73013 GSC | +040225 |HY Aqr |213106.5-073421 |M | 10.7 |< 15.0 | |V |53252. | | 311. | |M8 |00001 GSC | +040226 |HZ Aqr *|213211.9+001318 |RS | 9.78 | 9.90 | |V | | | 4.03 | |K3Ve+K7Ve |73005 HIP | +040229 |IL Aqr |225316.7-141549 |BY | 10.15 | 10.21 | |V | | | | |M4V |73018 BD | +040230 |IM Aqr |203918.0+020837 |LB | 7.81 | 7.97 | |Hp| | | | |M1 |HIP HIP | +040231 |IN Aqr |204006.3-140047 |LB | 8.01 | 8.14 | |Hp| | | | |M4III |HIP HIP | +040232 |IO Aqr *|204045.5+005621 |EA | 8.80 | 9.22 | 9.17 |V |52530.4516 | | 2.368091 |11 |G0 |N0129 HIP | +040233 |IP Aqr |204919.4-084739 |LB | 7.70 | 7.86 | |Hp| | | | |M0 |HIP HIP | +040234 |IQ Aqr |204917.2-003348 |SRB | 6.02 | 6.58 | |Hp| | | 384.6 : | |M3 |HIP HIP | +040235 |IR Aqr |205221.6-031314 |LB | 7.73 | 7.92 | |Hp| | | | |M4III: |HIP HIP | +040236 |IS Aqr |205729.2-031412 |LB | 7.77 | 7.89 | |Hp| | | | |M0 |HIP HIP | +040237 |IT Aqr |210140.5-040753 |SR | 7.10 | 7.25 | |Hp| | | | |M0 |HIP HIP | +040238 |IU Aqr |210235.2-095944 |LB | 6.46 | 6.64 | |Hp| | | | |M3 |HIP HIP | +040239 |IV Aqr |210732.9-000950 |LC | 6.50 | 6.65 | |Hp| | | | |M4:II: |HIP HIP | +040240 |IW Aqr |211617.8-091253 |SRB | 6.47 | 6.54 | |Hp| | | 163. : | |M4III: |00001 HIP | +040241 |IX Aqr |212050.1-090906 |LB | 7.50 | 7.61 | |Hp| | | | |K2 |HIP HIP | +040242 |IY Aqr |212259.2-061358 |LB | 7.67 | 7.86 | |Hp| | | | |M0 |HIP HIP | +040243 |IZ Aqr |213442.8+014945 |LB | 6.23 | 6.47 | |Hp| | | | |M3 |HIP HIP | +040244 |KK Aqr |215927.7-175944 |LB | 7.90 | 8.23 | |Hp| | | | |M2III |HIP HIP | +040245 |KL Aqr |220256.4+000412 |LB | 8.33 | 9.07 | |Hp| | | | |M8 |HIP HIP | +040246 |KM Aqr |220339.1-074705 |LB: | 8.13 | 8.25 | |Hp| | | | |M0 |HIP HIP | +040247 |KN Aqr |220718.1-102649 |LB | 6.85 | 7.02 | |Hp| | | | |M3 |HIP HIP | +040248 |KO Aqr |220935.5-020116 |LB | 8.51 | 8.86 | |Hp| | | | |M0 |HIP HIP | +040249 |KP Aqr |220944.9-135330 |LB: | 8.03 | 8.15 | |Hp| | | | |M1/M2III |HIP HIP | +040250 |KQ Aqr *|221040.0-240134 |RS: | 9.45 | 9.57 | |V | | | 2.43367 | |A0V |HIP HIP | +040251 |KR Aqr |221216.9-110356 |LB | 7.25 | 7.36 | |Hp| | | | |M0 |HIP HIP | +040252 |KS Aqr |221715.9-042922 |LB | 9.42 | 9.63 | |Hp| | | | |M1 |HIP HIP | +040253 |KT Aqr |222133.4-142725 |LB: | 7.83 | 7.94 | |Hp| | | | |M0III |HIP HIP | +040254 |KU Aqr |222330.4-201850 |LB | 7.7 | 8.6 | |V | | | | |M3III |HIP HIP | +040255 |KV Aqr *|222548.0-201413 |E: | 6.84 | 7.03 | |Hp| | | | |A1V+G8/K1III |HIP HIP | +040256 |KW Aqr |222750.8-215211 |LB | 7.92 | 8.31 | |Hp| | | | |M3III |HIP HIP | +040257 |KX Aqr *|223113.4-225948 |EA | 8.11 | 8.58 | 8.47 |V |52444.834 | | 2.073225 |10 |F8/G0V |00001 HIP | +040258 |KY Aqr |223304.1-071027 |LB: | 8.81 | 8.94 | |Hp| | | | |K5 |HIP HIP | +040259 |KZ Aqr |223341.1+011134 |LB: | 8.05 | 8.15 | |Hp| | | | |M1 |HIP HIP | +040260 |LL Aqr *|223442.1-033558 |EA | 9.23 | 9.86 |( 0.32 )|V |48762.552 | | 20.1784 | |G0 |N0109 HIP | +040261 |LM Aqr |223617.9-050917 |LB | 8.19 | 8.39 | |Hp| | | | |M0 |HIP HIP | +040262 |LN Aqr |223638.2-132034 |BY: | 10.86 | 11.30 | |Hp| | | | |K: |HIP HIP | +040263 |LO Aqr |223700.9-073400 |IB: | 7.44 | 7.59 | |Hp| | | | |F0 |HIP HIP | +040264 |LP Aqr |224206.0-050607 |LB | 6.30 | 6.64 | |Hp| | | | |M0 |HIP HIP | +040265 |LQ Aqr |224614.2-110959 |LB | 6.71 | 6.78 | |Hp| | | | |M0 |HIP HIP | +040266 |LR Aqr |230630.3-134507 |LB | 8.7 | 9.3 | |V | | | | |M3III: |00001 HIP | +040267 |LS Aqr |231025.4-131835 |SRD: | 8.33 | 8.61 | |V | | | 269. : | |G6/G8Ib |00001 HIP | +040268 |LT Aqr |232547.9-110920 |LB | 7.96 | 8.13 | |Hp| | | | |M3 |HIP HIP | +040269 |LU Aqr |232807.3-121244 |SRD | 7.39 | 7.54 | |Hp| | | 14.9 : | |K3III |HIP HIP | +040270 |LV Aqr |235241.4-162229 |SR | 7.53 | 7.75 | |Hp| | | 34.32 | |M2III |HIP HIP | +040271 |LW Aqr |235247.6-120101 |LB | 7.24 | 7.46 | |Hp| | | | |M4III |HIP HIP | +040272 |LX Aqr |235607.2-215931 |SRB | 7.29 | 7.38 | |Hp| | | 312. | |M2III |HIP HIP | +040275 |MM Aqr |223312.3-200222 |ACVO | 10.09 |( 0.01 )| |B | | | 0.0080 | |ApEuSrCr |75015 BD | +040276 |MN Aqr |230400.5-205424 |M | 10.0 |< 14.5 | |V |52424. | | 285.4 | | |N0002 06286| +040277 |MO Aqr *|210357.0-021004 |EW | 9.95 | 10.28 | 10.26 |V |51998.469 | | 0.398140 | | |N0002 BD | +040278 |MP Aqr |203912.4-092310 |LB | 10.0 | 10.9 | |V | | | | | |00001 BD | +040279 |MQ Aqr |203934.7-065004 |SRB | 12.0 | 12.7 | |V | | | 65.6 : | | |00001 GSC | +040280 |MR Aqr |204121.1-054503 |SRB | 11.8 | 12.5 | |V | | | 93. | | |00001 GSC | +040281 |MS Aqr |204222.5-025442 |SRB | 10.4 | 11.3 | |V | | | 50. : | | |00001 GSC | +040282 |MT Aqr |204254.3-101108 |LB | 10.0 | 10.8 | |V | | | | | |00001 BD | +040283 |MU Aqr *|204813.3-012926 |EW | 11.11 | 11.63 | 11.62 |V |52396.876 | | 0.272220 | | |N0002 GSC | +040284 |MV Aqr |205037.4-135013 |SRB | 11.1 | 12.7 | |V | | | 95. | | |N0002 GSC | +040285 |MW Aqr |205127.5-025239 |SRB | 11.0 | 11.9 | |V | | | 64. | | |00001 GSC | +040286 |MX Aqr |205246.0-074538 |LB | 9.3 | 10.2 | |V | | | | |M8 |00001 BD | +040287 |MY Aqr |205556.0-012114 |SRB | 11.0 | 11.7 | |V | | | 113. | | |00001 GSC | +040288 |MZ Aqr |210513.0-101802 |SRB | 10.4 | 10.8 | |V | | | 61. : | | |00001 GSC | +040291 |NP Aqr *|205119.1-135528 |EB | 7.59 | 7.69 | 7.64 |V |47985.661 | | 0.806982 | |F0V |78011 BD | +040292 |NQ Aqr *|210753.5-113325 |EW | 12.3 | 13.0 | 12.8 |V |51875.185 | | 0.429587 | | |N0002 06286| +040293 |NR Aqr |210935.1-140700 |SRS: | 7.56 |( 0.02 )| |V | | | 12.08 : | |K5III |78018 BD | +040294 |NS Aqr |211702.1-010439 |BY | 8.08 |( 0.02 )| |V | | | 13.78 : | |K0V |78018 BD | +040295 |NT Aqr |220605.3-052129 |BY | 7.57 |( 0.06 )| |V | | | 10.29 | |G0V |78018 BD | +040296 |NU Aqr |223753.2-132215 |LB: | 8.72 |( 0.02 )| |V | | | | |K0III |78018 BD | +040297 |NV Aqr |223934.6-123655 |BY | 7.74 |( 0.02 )| |V | | | 6.20 : | |G8/K0V |78018 BD | +040299 |NX Aqr |232406.3-073303 |BY: | 7.62 |( 0.02 )| |V | | | | |G5V |78018 BD | +040301 |NZ Aqr |204605.1-043107 |LB | 10.4 | 10.9 | |V | | | | | |79100 DM | +040302 |OO Aqr |204943.2-130736 |EW | 9.20 | 9.60 | 9.59 |V |52227.514 | | 0.586612 | |A5IV/V |79011 79096| +040303 |OP Aqr |205810.4-030731 |LB | 8.60 | 9.40 | |V | | | | |M5 |79100 DM | +040304 |OQ Aqr |210609.1-081112 |SRB | 10.1 | 11.5 | |V | | | 45. | | |79064 79096| +040305 |OR Aqr |211313.7-041600 |EA | 7.94 | 8.11 | 8.11 |V |47977.020 | | 11.42365 |03 |F0V |79004 DM | +040306 |OS Aqr |212539.2-133219 |EB | 12.00 | 12.60 | 12.26 : |V |52032.833 | | 0.586774 | | |79011 79010| +040307 |OT Aqr |222913.3-090254 |SRB | 9.6 | 10.1 | |V | | | 33.8 | | |79064 79227| +040308 |OU Aqr |230848.0-122040 |LB | 9.9 | 10.5 | |V | | | | | |79100 DM | +040309 |OV Aqr *|232608.6-192224 |EA | 8.72 | 8.98 | |V |48635.393 | | 21.66595 |02 : |F2V |79003 DM | +040310 |OW Aqr |233218.0-172351 |RRAB | 12.1 | 13.1 | |V |52862.722 | | 0.655178 |11 | |79064 79210| +040311 |OX Aqr |235401.3-074039 |RRAB | 12.0 | 13.0 | |V |52942.597 | | 0.52891 |20 | |79064 79086| +040316 |PR Aqr |204334.7-073648 |LB | 12.4 | 13.1 | |* | | | | |M5 |80062 USNO | NL80_3 +040318 |PT Aqr |204429.6-002839 |RS | 11.85 | 12.25 | |V | | | 5.87332 | | |80001 GSC | NL80_3 +040320 |PV Aqr |204859.6-064455 |RS | 9.52 | 9.70 | |V | | | 2.05714 | |G5 |80001 DM | NL80_3 +040327 |QS Aqr |205835.6-132207 |EA | 7.46 | 8.05 | 7.71 |V |52445.749 | | 5.78261 | |G0V |80015 DM | NL80_3 +040332 |QX Aqr |211406.0+001912 |CWA | 11.9 | 13.0 | |V |54709.7 | | 15.2875 |50 : | |80001 GSC | NL80_3 +040337 |V0337 Aqr |214105.8+022215 |RS | 11.3 | 12.2 | |V | | | 10.903 | | |80001 GSC | NL80_3 +040342 |V0342 Aqr |215356.7-023431 |BY | 11.8 | 11.9 | |* | | | 7.71 | | |80043 80043| NL80_3 +040345 |V0345 Aqr |222300.5-032257 |BY | 10.9 | 11.4 | |V | | | 7.589 | |G9IVe |80034 DM | NL80_3 +040348 |V0348 Aqr |223648.1-080108 |RRC | 11.62 | 12.10 | |V |51456.690 | | 0.332914 |39 | |80083 GSC | NL80_3 +040351 |V0351 Aqr |224410.1+005854 |EW | 12.50 | 12.95 | 12.90 |V |54365.632 | | 0.284671 | | |80596 GSC | NL80_3 +040352 |V0352 Aqr |224624.4-125448 |RRAB | 12.35 | 13.7 | |V |53905.912 | | 0.510933 |17 | |80001 GSC | NL80_3 +040353 |V0353 Aqr |224646.1-205838 |BY | 10.75 | 11.05 | |V | | | 5.0289 | | |80001 DM | NL80_3 +040355 |V0355 Aqr |230840.2-162300 |BY | 10.20 | 10.46 | |V | | | 5.160 | |K5V |80034 DM | NL80_3 +040356 |V0356 Aqr |231549.9-230013 |RRAB | 12.1 | 13.2 | |V |54309.7828 | | 0.554596 |08 | |80002 GSC | NL80_3 +040357 |V0357 Aqr *|231603.1-155331 |EW | 9.98 | 10.25 | 10.23 |V |51868.143 | | 0.470110 | |G0 |80036 DM | NL80_3 +040360 |V0360 Aqr *|232030.7-144757 |RRAB | 12.3 | 13.0 | |V |54398.723 | | 0.6269552 |15 | |80377 GSC | NL80_3 +040362 |V0362 Aqr *|232547.8-113636 |EA+DSCTC | 9.55 | 9.80 | 9.62 |V |52058.5821 | | 1.594251 |13 |A2III |80281 DM | NL80_3 +040363 |V0363 Aqr |235427.8-123634 |EA | 12.3 | 12.8 | 12.45 : |V |52132.775 | | 1.99119 |08 |A5 |80011 GSC | NL80_3 +049011 |lam Aqr |225236.9-073447 |LB | 3.57 | 3.80 | |V | | | | |M2.5IIIa |HIP HIP | +049015 |omi Aqr |220318.8-020919 |GCAS | 4.68 | 4.89 | |V | | | | |B7IVe-sh |HIP HIP | +049016 |pi. Aqr |222516.6+012239 |GCAS | 4.42 | 4.87 | |V | | | | |B1Ve |08067 HIP | +049022 |khi Aqr |231650.9-074335 |SRB: | 4.75 | 5.10 | |V | | | 35.250 : | |M3III |N0132 HIP | +0490232|psi 2 Aqr |231754.2-091057 |BE: | 4.40 |( 0.06 b )| |V | | | 1.073 | |B5V |71150 HIP | +050001 |R Aql *|190622.3+081348 |M | 5.5 | 12.0 | |V |43458. | | 284.2 |42 |M5e-M9e |00001 00002| +050002 |S Aql |201137.5+153715 |SRA | 8.9 | 12.8 | |V |43855. | | 146.45 |48 |M3e-M5.5e |00001 00002| +050003 |T Aql |184543.7+084436 |LB: | 10.6 | 11.0 | |p | | | | |M5 |00340 00097| +050004 |U Aql *|192921.4-070239 |DCEP | 6.08 | 6.86 | |V |34922.31 | | 7.02393 |30 |F5I-II-G1 |02392 02061| +050005 |V Aql |190424.2-054105 |SRB | 6.6 | 8.4 | |V | | | 353. | |C5,4-C6,4(N6) |00444 00097| +050006 |W Aql *|191523.4-070250 |M | 7.3 | 14.3 | |V |39116. | | 490.43 |37 |S3,9e-S6,9e |00001 00002| +050007 |X Aql |195129.8+042752 |M | 8.3 | 15.5 | |V |41487. | | 347.04 |46 |M6e |00001 00002| +050008 |Y Aql *|190658.6+110416 |E/KE | 5.02 |( 0.04 )|( 0.03 )|B |38607.445 | | 1.30227 | |B8III-V |05239 BD | +050009 |Z Aql |201511.0-060904 |M | 8.2 | 14.8 | |V |41938. | | 129.226 |47 |M3e |00001 00002| +050010 |RR Aql *|195736.1-015311 |M | 7.8 | 14.5 | |V |41764. | | 394.78 |30 |M6e-M9 |00001 00002| +050011 |RS Aql |195906.6-075302 |M | 8.7 | 15.4 | |V |39193. | | 410.12 |48 |M5e-M8 |00001 00002| +050012 |RT Aql *|193801.6+114318 |M | 7.6 | 14.5 | |V |43290. | | 327.11 |42 |M6e-M8e(S) |00001 00002| +050013 |RU Aql |201244.8+125941 |M | 8.7 | 14.8 | |V |39171. | | 274.24 |42 |M5e |00001 00002| +050014 |RV Aql |194043.1+095552 |M | 8.1 | 15.0 | |V |42618. | | 218.60 |47 |M2e-M7:e |00001 00002| +050015 |RW Aql |201151.4+160335 |CST: | 9.0 | | |p | | | | |F3n |00333 00097| +050017 |RY Aql |194823.0+113129 |M | 11.4 |< 15. | |p |35010. | | 353.2 | |M3IIIe-M5e |00001 00114| +050018 |RZ Aql |195353.8+093936 |M | 12.1 |< 14.5 | |p |29479. | | 336.75 | |M5e |00114 00114| +050020 |ST Aql |194916.2+122213 |M | 12.5 |< 15. | |p |34990. | | 248.7 | | |00001 00114| +050021 |SU Aql |193600.3+040524 |M | 12.4 |< 16. | |p |31000. :| | 393. : | |S | 00114| +050022 |SV Aql |193901.8+115646 |M | 10.6 | 15.0 | |V |39170. | | 252.89 | |M8 |00001 00114| +050025 |SY Aql *|200705.4+125706 |M | 8.3 | 15.4 | |V |42651. | | 355.92 |37 |M5e-M7e |00001 00002| +050026 |SZ Aql *|190439.4+011822 |DCEP | 7.92 | 9.26 | |V |35528.937 | | 17.137939 |37 |F7-K1 |00025 06225| +050027 |TT Aql *|190813.8+011755 |DCEP | 6.46 | 7.70 | |V |37236.10 | | 13.7546 |34 |F6-G5 |03509 06225| +050028 |TU Aql |192736.4+020311 |M | 10.3 | 16. : | |p |42930. | | 270.39 | |M4-M9 |00001 00114| +050029 |TV Aql *|201249.6+061800 |M | 9.9 |< 14.0 | |V |40434. | | 243.22 | |M4e |00001 00002| +050030 |TW Aql *|195100.9+135816 |SRD | 9.9 | 11.4 | |V |27588. | | 64.6 |41 |G0-K0 |00310 00537| +050031 |TX Aql |200637.5+035146 |SRD | 10.0 | 10.8 | |V | | | 35. |48 |G0 | 00537| +050032 |TY Aql |191507.7-070049 |ACV: | 10.5 | 11.0 | |p | | | | |A1p(Si) | 00002| +050033 |TZ Aql |203018.5-044517 |LB | 10.2 | 11.0 | |p | | | | |M6 | BD | +050034 |UU Aql *|195718.6-091920 |UGSS | 11.0 | 16.8 | |p | | |( 49.5 ) | |pec(UG) |08716 00002| +050035 |UV Aql |185832.4+142150 |SRA | 11.1 | 12.4 | |p |30906. | | 385.5 | |C5,4-5(N4) |01004 BD | +050036 |UW Aql |185733.6+002721 |LC | 10.1 | 11.6 | |p | | | | |M0Iab-M2Ia-Iab |02274 02274| +050040 |VV Aql |194818.6-062633 |M: | 12.4 |< 15.5 | |p |21821. | | 259. | | |02064 06286| +050041 |VW Aql |185255.3+114107 |L | 11.4 | 12.8 | |p | | | | |M5III: |00266 00002| +050042 |VX Aql *|190009.6-013457 |M: | 12.2 |< 16.0 | |p | | | | |C9,1p(M0ep) | 06286| +050043 |VY Aql |190321.8-070924 |M | 11. |< 16. | |p |36103. | | 333.2 | |M5:e |00001 06286| +050045 |WW Aql |191608.6-080456 |M | 11.5 |< 15. | |p |34314. | | 174.5 | |M3III:e |01006 06286| +050046 |WX Aql |194837.2+034149 |SRB | 11.5 | 12.6 | |p |30584. | | 107. |45 |M6 |01000 GSC | +050047 |WY Aql |195142.7+162459 |M | 12.5 |< 15.0 | |p |27552. | | 388. | |M3 |00773 00772| +050048 |WZ Aql |201439.0+044705 |M | 11.1 |< 14.0 | |p |34600. | | 316.4 | |M4-M6ep |00001 00114| +050050 |XY Aql |191451.0+041431 |M | 9.5 | 17. : | |V |38663. | | 423.4 | |M8 |00001 01956| +050051 |XZ Aql *|202213.4-072104 |EA/SD: | 10.1 | 11.4 | |p |41903.461 | | 2.139181 |14 *|A2 |00001 GSC | +050053 |YZ Aql *|191646.2-003617 |EA/SD: | 10.5 | 14.2 | |V |34222.639 | | 4.67230 |15 |A3 |00769 01956| +050055 |AA Aql *|203815.1-025325 |RRAB | 11.00 | 12.34 | |V |24347.3966 | | 0.36178688 |17 |A5-F5 |03506 04449| +050056 |AB Aql |184742.7-020038 |LB | 11.2 | 13.7 | |p | | | | |M6III |01792 02274| +050058 |AD Aql *|185908.7-081014 |RVA | 11.5 | 13.5 | |p |27628. | | 65.4 | |Fp(R) |00310 04231| +050062 |AH Aql |190004.0-071917 |M | 11.7 |< 14.3 | |V |55104. | | 189. | | |00001 06286| +050064 |AK Aql |190030.6-065513 |M | 10.8 |< 17.0 | |p |38656. | | 298.0 | |M6e |00001 01594| +050065 |AL Aql *|190224.4-083310 |EA/DS | 11.2 | 13.4 | |p |38296.313 | | 20.98630 |10 | |08717 00504| +050097 |BT Aql |193223.4-080629 |M | 12.4 | 16.5 | |p |38925.6 | | 292.52 |30 | |00504 00504| +050109 |CH Aql |203342.2-053849 |RR | 11.5 | 12.5 | |p |36050.335 | | 0.38918702 | | |03506 00504| +050110 |CI Aql |185203.6-012839 |N: | 11. | 15.5 | |p | | | | | |00266 USNO | +050114 |CN Aql |190735.9-081335 |M | 11.5 | 15.0 | |p |17094. | | 358. | | |01627 06286| +050121 |CU Aql *|191828.6-104136 |M | 11.8 | 15.8 | |p |36418. | | 199.22 |49 |M1III:e |00504 03147| +050125 |CY Aql |191925.0+003058 |M | 11.4 | 18.4 | |p |38576. | | 350.0 | |M8e |00001 03150| +050129 |DF Aql |192040.3-113045 |M | 12.3 | 15.2 | |p |38317. | | 242.97 |50 |M2III:e |00504 00504| +050131 |DH Aql |192610.8-101529 |UGSS | 12.5 |< 17.0 | |p | | |( 268. ) | | |05300 08807| +050135 |DM Aql |192811.3+042156 |M | 11.5 |< 16. | |p |33462. | | 343.2 | |M1 |01006 06286| +050136 |DN Aql |193132.8-104746 |SR: | 11.7 | 12.8 | |p | | | 110. : | |M6 |02072 BD | +050140 |DR Aql |193319.9+040612 |M | 12.5 |< 15.8 | |p |25520. | | 237. | | |02461 06286| +050142 |DT Aql *|194125.5+012007 |M | 11. |< 16. | |p |38656. | | 288. | |M4 |00001 02544| +050146 |DX Aql |194434.0-105817 |M | 11.0 |< 16. | |p |35045. | | 313.2 | |Me |00001 00567| +050147 |DY Aql *|194630.5-105655 |RV | 10.2 | 12.9 | |p |28344. | | 131.42 | |G8e-M3Ia |00368 00368| +050154 |EK Aql |201400.5-051015 |M | 11.2 | 16.0 | |p |25805. | | 151.8 |40 |M3e-M4e |00266 06286| +050156 |EM Aql |192307.7+055510 |M | 11. | 15. | |p |38586. | | 254.4 | |M7 |00001 01956| +050159 |EP Aql |202526.8-080514 |M | 11.6 |< 14.0 | |p |18919. | | 431.1 | | |00797 06286| +050161 |ER Aql |191907.0+032405 |M | 11.8 | 16.3 | |p |34221. | | 337.6 | |S |01006 00744| +050163 |ET Aql |203159.8+001114 |L | 11.8 | 13.7 | |p | | | | | |00266 GSC | +050164 |EU Aql |185823.8+164655 |M | 11.2 | 15.0 | |V |27299. | | 321. | |M9 |02427 00869| +050165 |EV Aql *|190646.2+145546 |CEP | 12.4 | 13.9 | |p |36762.2 | | 38.767 | | |06007 00869| +050166 |EW Aql |192229.3+063951 | | 12.5 | 14.0 | |p | | | | |B8 |00744 00744| +050167 |EX Aql *|192507.6+050055 |SRB | 12.1 | 13.4 | |p | | | 99. | |M4 |00310 00744| +050169 |EZ Aql *|193929.7+083628 |RVA | 11.1 | 14.0 | |V |28596.45 | | 38.64 | |G5-K0 |03153 00155| +050170 |FF Aql *|185814.8+172139 |DCEPS | 5.18 | 5.68 | |V |41576.428 | | 4.470916 |48 |F5Ia-F8Ia |08300 BD | +050174 |FK Aql *|190418.6+024647 |EA/SD | 11.1 | 13.5 |( 0.03 )|p |37786.079 | | 2.650876 |12 |B9 |00001 00197| +050176 |FM Aql *|190916.0+103309 |DCEP | 7.89 | 8.66 | |V |35151.723 | | 6.11423 |30 |F5-F9Ia |02083 03203| +050177 |FN Aql *|191247.3+033327 |DCEPS | 7.96 | 8.75 | |V |36804.603 | | 9.48151 |49 |F8-G2 |05661 03203| +050179 |FP Aql |191719.6-000852 |M | 10.8 |< 15.8 | |p |33447. | | 333.6 | |M8 |01007 02544| +050189 |FZ Aql *|192915.3-061758 |LB: | 11.1 | 11.8 | |p | | | | |M: | BD | +050204 |GV Aql *|194058.0-033028 |M: | 12.5 |< 16. | |p |19245. | | 318.3 | |M6e |03156 03156| +050206 |GX Aql |194854.2-072258 |M: | 12.0 | 15.5 | |p | | | 280. : | | |00266 06286| +050207 |GY Aql *|195006.3-073653 |SR | 10. |< 16. | |p | | | 204. | |M6III:e-M8 | 06286| +050209 |HH Aql |195904.3-000311 |M | 12.4 |< 16.0 | |p |36810. | | 236.65 | | |00001 06286| +050210 |HI Aql |200725.9+093333 |M | 12.5 |< 16. | |p |28409. | | 294. | | |01440 06286| +050211 |HK Aql *|184217.7+000918 |LB: | 8.9 | 10.9 | |p | | | | |K5III |02091 02091| +050244 |KK Aql |194749.0+143308 |SRD | 10.9 | 12.9 | |p |28308.4 | | 88.7 |42 |G2e-G6(M2) |02093 BD | +050245 |KL Aql *|200109.8+154813 |DCEP | 9.82 | 10.56 | |V |43338.695 | | 6.108015 |23 |F6Iab-G6 |08632 08632| +050247 |KN Aql |203015.2+015237 |SRB | 8.52 | 9.35 | |V | | | 70. |41 |M5e |01331 BD | +050248 |KO Aql *|184710.7+104549 |EA/SD: | 8.3 | 9.50 | 8.40 |B |41887.4724 | | 2.864055 |13 |A0V-A3V |08720 00110| +050249 |KP Aql *|190229.9+154801 |EA/DM | 9.7 | 10.43 | 10.43 |B |40396.4912 | | 3.36747959 |08 *|F+F |07020 00110| +050250 |KQ Aql |191222.9+013309 |SR | 11.2 | 13.4 | |p |25449. | | 164.2 | |M5e |02095 00533| +050257 |KX Aql |193353.7+141748 |UG | 12.5 | 17.5 : | |p | | |( 300. :) | | |05386 02452| +050263 |LO Aql |193628.4+105814 |M | 12.1 | 15.0 | |p |29436. | | 157.5 | |M0 |00504 06286| +050267 |LS Aql |193833.6+124258 |SRB | 11.1 | 12.4 | |V |27633. | | 78.6 |41 |M4 |00460 06286| +050268 |LT Aql |193849.8+063459 |EA/SD | 12.4 | 14.9 | |p |25850.278 | | 1.846198 |11 *| |01949 02314| +050269 |LU Aql *|193852.0+154410 |SRB | 10.9 | 12.0 | |p |27344. | | 105.7 | |M4-M5 |00310 BD | +050281 |MS Aql |194107.1+114850 |LB | 10.6 | 11.2 | |p | | | | |M4III: |02096 02096| +050283 |MU Aql |194211.5+132025 |M | 12.0 | 15.5 | |p |35336. | | 141.85 | |M4 |00001 06286| +050290 |NO Aql |194509.8+045422 |SRA | 11.0 | 12.7 | |p |31592. | | 73.6 |42 |M4e |00364 01422| +050297 |NV Aql *|194629.3+135117 |SRB | 11.2 | 14.2 | |p |27062. | | 106.5 |48 | |00104 08071| +050302 |OO Aql *|194812.7+091832 |EW/DW: | 9.2 | 9.9 | 9.8 |V |38613.2222 | | 0.50678848 | |G5V |08072 00522| +050303 |OP Aql |194808.3+092045 |EA/SD | 12.2 | 14.6 | |p |29056.512 | | 3.227797 |09 *| |02479 02480| +050304 |OQ Aql |194832.1+145655 |SRB | 10.0 | 11.3 | |V | | | 63.5 |49 |K5 |00460 GSC | +050308 |OU Aql |194951.7+092345 |M | 12.0 | 16.0 | |p |26160. | | 282. | |M3III:e |01370 06286| +050310 |OW Aql |195121.8+150012 |M | 12.3 | 14.8 | |p |40474. | | 194.4 | |N |00001 02452| +050314 |PP Aql *|195246.5+124009 |DCEP | 11.6 | 13.4 | |p |28337.5 | | 24.01 |35 | |03148 00504| +050320 |PV Aql |195949.7+103118 |LB | 10.8 | 12.3 | |p | | | | |M4 |01332 01332| +050321 |PW Aql |193505.1-051838 |RRAB | 12. | 14. | |p |36399.465 | | 0.475044 |15 | |06027 00317| +050322 |PX Aql |195802.5-091329 |SR | 9.4 | 11.7 | |V |27658. | | 154.8 | |M5 |00460 08073| +050323 |PY Aql |201813.6-060836 |M | 11. |< 12.5 | |p |27640. | | 120. : | |Me |00147 00190| +050324 |PZ Aql *|185556.0-025247 |CWA | 11.25 | 11.97 | |V |40862.3 | | 8.7530 |56 |F5-G3 |00001 02274| +050327 |QS Aql *|194105.5+134857 |EA/SD | 5.93 | 6.06 | 5.97 |V |40443.489 | | 2.513294 |17 *|B5V |06428 BD | +050330 |QV Aql *|195416.6+073641 |RV | 12. | 15.5 | |p |27347. | | 169.5 | | |01440 00504| +050333 |QY Aql *|200928.8+151845 |EA/DS: | 11.4 | 14.6 | |p |30223.615 | | 7.229590 |15 |F0 | 00192| +050334 |QZ Aql |201746.4+080044 |M | 12.5 |< 15.5 | |p |40462. | | 213.6 | | |00001 00002| +050335 |V0335 Aql |202117.8+011919 |M | 11.6 |< 16. | |p |35670. | | 177.0 | |M1III:e |00001 02317| +050336 |V0336 Aql *|190119.7+000849 |DCEP | 9.50 | 10.28 | |V |36255.641 | | 7.303552 |31 |F5-G2 |02274 05404| +050337 |V0337 Aql *|190410.3-020147 |EB/DM | 8.57 | 9.27 | 9.09 |V |39328.504 | | 2.733849 | |B0.5Vp+B2V |00001 00010| +050338 |V0338 Aql |190514.9+174858 |L: | 11. | 12.5 | |p | | | | |M3 |00541 00541| +050339 |V0339 Aql |193832.8-095714 |M | 10.6 |< 12.5 | |p |33139. | | 213.3 | | |00001 00464| +050340 |V0340 Aql *|195556.5+155108 |EA/SD | 11.5 | 14.1 | |p |34181.552 | | 3.749053 |11 |F |08321 00772| +050341 |V0341 Aql *|203231.6+003507 |RRAB | 10.13 | 11.39 | |V |41196.251 | | 0.57802054 |13 |A6-F5 |07984 02104| +050342 |V0342 Aql *|191703.5+092039 |EA | 9.5 | 12.9 | |p |39318.581 | | 3.390882 |14 |A4II |00001 04493| +050343 |V0343 Aql *|193835.2+124527 |EA/SD: | 10.6 | 12.3 | 10.7 |p |28443.417 | | 1.844603 |15 *|A0V |00192 02105| +050344 |V0344 Aql |195324.7+021055 |M | 11.0 |< 16. | |p |35742. | | 283.1 | | |00001 02316| +050345 |V0345 Aql |195347.3+025930 |M | 11.5 |< 16. | |p |27336. | | 292.4 | | |03122 02316| +050346 |V0346 Aql *|200959.6+102100 |EA/SD | 9.0 | 10.1 | 9.1 |p |41918.384 | | 1.106363 |19 *|A0V |00001 02203| +050347 |V0347 Aql |190801.1+061828 |LB | 12.2 | 13.3 | |p | | | | |M6-M8 |03148 00533| +050374 |V0374 Aql *|193014.8-005010 |SRA | 8.8 | 11.7 | |V |38314. | | 456.50 | |C7,3(Ne) |08808 08808| +050380 |V0380 Aql |193234.6+021742 |SR | 12.4 | 13.7 | |p |25413. | | 142. | | |01949 02329| +050391 |V0391 Aql |193752.6+064344 |LB | 12.2 | 14.4 | |p | | | | |C6,3(N6) |01949 02314| +050399 |V0399 Aql |194042.9+031206 |M | 12.4 | 15.9 | |p |25842. | | 230.4 | | |01949 00533| +050409 |V0409 Aql *|191758.5-004044 |EA/DM | 11.5 | 12.4 | 12.2 |p |25503.385 | | 2.049390 |20 *|F5 | 00533| +050412 |V0412 Aql |192321.0+013953 |LB | 12.4 | 13.8 | |p | | | | |M7 |01949 02329| +050415 |V0415 Aql |193043.7+134021 |EA/SD | 11.1 | 12.0 : | |p |28670.532 | | 2.462731 |20 : |F2 |05248 00470| +050417 |V0417 Aql *|193524.1+055018 |EW/KW: | 11. | 11.5 | 11.5 |p |43016.404 | | 0.3701288 | |G2V |00001 02106| +050424 |V0424 Aql |195022.3+034850 |M | 12.2 |< 15.5 | |p |27653.7 | | 190.85 | | |03166 03166| +050429 |V0429 Aql |195831.0+160020 |LB | 11.5 | 13.0 | |p | | | | |M2-M6 |01439 00492| +050433 |V0433 Aql *|200115.5+151736 |SRB | 11.5 | 13.5 | |p | | | 51. : | |M1 |08079 00492| +050436 |V0436 Aql |200440.8+114518 |M | 12.5 |< 15.5 | |p |26960. | | 285. | |M4e |01439 00158| +050438 |V0438 Aql |200501.5+074113 |M | 12.5 |< 15.5 | |p |26963. | | 279. | |M3III:e |01440 00158| +050441 |V0441 Aql |200926.4+142928 |SRD | 12.5 | 15. | |p |28422. | | 120. | |G-F |01000 00492| +050442 |V0442 Aql |200958.0+125044 |M | 12.5 |< 15.5 | |p |28088. | | 308. | |M6.5 |01440 00294| +050446 |V0446 Aql |194720.2+160358 |SR | 11.4 | 12.8 | |p |26557. | | 137. |36 |M2 |02107 06286| +050450 |V0450 Aql |193346.0+052757 |SRB | 6.30 | 6.65 | |V |31320. | | 64.20 |52 |M5III-M8III |01000 BD | +050466 |V0466 Aql |200635.5+104929 |M | 12. |< 15.5 | |p |27692. | | 428. | |M5 |01440 00542| +050474 |V0474 Aql |184713.7+103320 |M | 11.7 |< 17. | |p |26884. | | 307. | |M6.5 |00447 02328| +050477 |V0477 Aql |184924.3+083540 |LB | 12.1 | 12.8 | |p | | | | |M6.5 |00447 02328| +050478 |V0478 Aql |184937.4+115204 |LB | 12.5 | 14.5 | |p | | | | |C5,4(N) |00447 02328| +050493 |V0493 Aql *|185724.3-004349 |DCEP | 10.79 | 11.36 | |V |35653.117 | | 2.987751 |30 | |00001 01407| +050496 |V0496 Aql *|190820.8-072616 |DCEPS | 7.59 | 7.98 | |V |36017.062 | | 6.80703 |33 |G5 |05366 05462| +050499 |V0499 Aql |201650.0-070658 |SRA | 9.9 | 12.2 | |V |31338. | | 159.1 |37 |M6 |01004 01110| +050502 |V0502 Aql |195635.5-023715 |M | 12.3 |< 16.5 | |p |26975. | | 286.5 | | |00387 02316| +050503 |V0503 Aql |195914.0-012201 |M | 12.5 |< 16. | |p |26937. | | 138.2 | | |00387 02316| +050521 |V0521 Aql |201702.0-031538 |SRA | 12.1 | 13.9 | |p |26966. | | 166. |52 |M0 |00387 02317| +050525 |V0525 Aql |201950.2-041742 |RRAB | 12.5 | 13.7 | |p |26928.432 | | 0.515686 |26 | |00387 02317| +050539 |V0539 Aql |194752.8-034740 |M | 11.6 | 16. | |p |26930. | | 320. | | |00387 02316| +050541 |V0541 Aql |194827.6+015306 |LB | 12.5 | 13.7 | |p | | | | |M7 |00387 02316| +050543 |V0543 Aql |194935.8-053233 |M | 12.0 |< 15. | |p |23615. | | 152.0 | |M5III:e |00199 06286| +050547 |V0547 Aql |194951.7-010520 |M | 12.0 | 16.5 | |p |27421. | | 282. | |M4III:e |00387 02332| +050553 |V0553 Aql |195152.0+024818 |M | 10.9 |< 16. | |p |38606. | | 212.0 | |M3e |00001 02316| +050563 |V0563 Aql |195716.1-013102 |LB | 12.3 | 14.3 | |p | | | | |M2 |00387 02332| +050572 |V0572 Aql *|200232.7+004250 |CWB | 11.00 | 11.44 | |V |41921.259 | | 3.767697 |45 | |08300 00470| +050575 |V0575 Aql |200540.0+032249 |M | 12.2 | 17. | |p |27387. | | 253. | | |00387 02317| +050580 |V0580 Aql |200838.7-042520 |M | 12.5 | 18.5 : | |p |29789. | | 150.2 | |Me |01003 02333| +050581 |V0581 Aql |200829.1+004906 |M | 12.5 |< 17. | |p |29803. | | 215.8 | | |00001 02333| +050584 |V0584 Aql |201029.8-013741 |LB | 10.7 | 12.1 | |p | | | | |M8 |00387 02333| +050586 |V0586 Aql *|201314.0+150032 |SR | 12.1 | 13.8 | |p |27566. | | 82. | | |00773 02331| +050595 |V0595 Aql |202135.5+004310 |M | 12.5 |< 16. | |p |27022. | | 241.3 | | |00387 02317| +050599 |V0599 Aql *|190234.1-104318 |EB/KE: | 6.67 | 6.75 | 6.73 |V |21836.539 | | 1.849084 | |B2V+B8 |00007 BD | +050600 |V0600 Aql *|192102.4+083059 |DCEP | 9.73 | 10.40 | |V |36317.031 | | 7.23845 |33 |F6-G0 |00001 00156| +050602 |V0602 Aql *|195100.6+162644 |EA/DM: | 11.9 | 13.2 | 12.7 |p |31330.226 | | 3.0124765 |10 |A2 |00001 02330| +050605 |V0605 Aql *|191820.4+014700 |* | 10.4 | | |V | | | | |R0 | 02460| +050608 |V0608 Aql |195358.8-004246 |LB | 11.7 | 12.5 | |p | | | | |M5 |00387 02332| +050609 |V0609 Aql *|200958.7+143814 |EB/DW | 11.7 | 12.1 | 11.9 |p |29365.725 | | 0.796565 | |F8 |01957 01957| +050621 |V0621 Aql |193320.7+061545 |SRB | 12.3 | 13.4 | |p | | | 147. | |M5-M6.5 |01091 02283| +050622 |V0622 Aql |193322.7+105816 |LB | 12.3 | 14.3 | |p | | | | |K |03165 02283| +050649 |V0649 Aql |193945.2+122849 |LB | 12.2 | 13.6 | |p | | | | |M3 |01091 02283| +050688 |V0688 Aql *|194828.9+153716 |EA/DM: | 10.3 | 11.1 | 10.8 |p |33543.296 | | 3.889717 |15 *|OB |08085 02330| +050692 |V0692 Aql |195021.5+014814 |L | 12.3 | 12.8 | |p | | | | | |00387 02332| +050694 |V0694 Aql *|195019.2+075015 |EA/SD | 12.4 | 12.9 | |p |28782.334 | | 0.450175 |27 |F0 |01091 02283| +050700 |V0700 Aql |195046.4+132723 |SRB | 11.0 | 12.2 | |p |40484. | | 53. : | |K0 |00001 02284| +050704 |V0704 Aql |195131.5+141556 |M | 12.2 | 15.8 | |p |28055. | | 281. | | |01091 02284| +050706 |V0706 Aql *|195257.8-020549 |RRAB | 12.2 | 13.6 | |p |27003.280 | | 0.3772390 |30 |F0 |00387 02316| +050719 |V0719 Aql |195530.6+072543 |EA/SD | 12.2 | 14.0 | |p |28753.477 | | 6.751715 |04 *| |01091 02343| +050724 |V0724 Aql *|195642.7+010503 |EW/DW | 11.10 | 11.57 | 11.57 |V |36818.672 | | 0.51752 | |G0 |03157 02316| +050732 |V0732 Aql |195738.9+063349 |LB | 12.4 | 13.4 | |p | | | | |M2 |01091 02284| +050733 |V0733 Aql *|195733.0+110237 |DCEP | 9.73 | 10.16 | |V |42597.207 | | 6.178748 |32 |F9Ib |08632 03173| +050765 |V0765 Aql *|200204.9-030231 |DCEPS | 12.23 | 12.40 | |V |43997.16 | | 5.727 |50 : | |08637 02317| +050786 |V0786 Aql |200808.4-002152 |L | 11.9 | 12.6 | |p | | | | | |00387 02333| +050804 |V0804 Aql *|190541.4-061304 |EW/DW: | 12.5 | 12.8 | 12.8 |p |28777.322 | | 0.655366 | | |01397 01397| +050805 |V0805 Aql *|190618.2-113857 |EA/DM | 7.58 | 8.22 | 7.90 |V |27927.8470 | | 2.4082337 |11 *|A2+A7 |00001 BD | +050822 |V0822 Aql *|193115.8-020637 |EB/DM | 6.87 | 7.44 | 7.07 |V |42577.333 | | 5.294950 | |B5+B8:V |08091 00562| +050829 |V0829 Aql *|194657.3+033029 |EA/SD: | 11.2 | 12.0 | |p |42621.472 | | 1.2114053 | |F5 |08096 BD | +050830 |V0830 Aql |194642.3+160211 |LB | 10.1 | 10.8 | |p | | | | |M4-M6 |00104 00492| +050837 |V0837 Aql |203228.2-051712 |M | 11.1 |< 16. | |p |33125. | | 177.9 | |Me |00797 06286| +050838 |V0838 Aql |203815.3-065440 |M: | 12.3 |< 13.0 | |p |27281. | | 336. | | |00797 00190| +050839 |V0839 Aql |184517.4-025725 |LB | 12.5 | 13.4 | |p | | | | |M1 |01110 01110| +050840 |V0840 Aql |185718.4+064154 |SR | 11.0 | 11.8 | |p | | | 67.5 | |M3-M7 |02004 02004| +050842 |V0842 Aql |191354.4+023731 |LB | 9.7 | 11.0 | |p | | | | |M6+III: |02004 02004| +050843 |V0843 Aql |190526.4-064752 |EA/KE | 9.8 | 10.2 | |p |29864.182 | | 1.497957 : | |B9 |00169 06286| +050844 |V0844 Aql |190656.9+070906 |SRA | 10.3 | 11.1 | |p |29817. | | 369. | |M5-M7ep |00169 BD | +050845 |V0845 Aql |202921.5+005055 |M | 11.8 | 16.7 | |p |34222. | | 228.5 |50 : | |00001 06286| +050858 |V0858 Aql |192912.2+035141 |LB | 11.4 | 12.2 | |p | | | | |M4-M5 |01949 02329| +050859 |V0859 Aql |193101.2+052354 |LB | 11.7 | 12.7 | |p | | | | | |01949 02369| +050865 |V0865 Aql |202354.6+005645 |M | 9.5 | 13.9 | |p |38593. | | 364.8 | |M6-M7(S7,5e:) |00001 04341| +050878 |V0878 Aql |185006.0+070620 |LB | 11.9 | 12.9 | |p | | | | |M2-M6 |00164 02368| +050881 |V0881 Aql |185227.0+075858 |L: | 11.8 | 13.0 | |p | | | | | |00164 02368| +050889 |V0889 Aql *|191849.8+161500 |EA/DM | 8.52 | 9.1 | 9.0 |V |38242.334 | | 11.120879 |03 *|B9 |08098 04524| +050893 |V0893 Aql |194931.9-021630 |M | 12.0 |< 16.5 | |p |28110. | | 316.7 | |M2III:e |02267 02370| +050902 |V0902 Aql |200530.8+042713 |LB | 11.1 | 12.8 | |p | | | | |M |02267 02371| +050912 |V0912 Aql *|184816.3+004904 |DCEP | 12.5 | 13.7 | |p |27245.478 | | 4.40034 |31 |G0 |07007 00141| +050913 |V0913 Aql |185429.0+103757 |SRA | 9.2 | 10.5 | |p |29735. | | 50. | |M5II |02593 03763| +050915 |V0915 Aql |190309.9+121509 |LB | 10.2 | 10.8 | |p | | | | |S5,2-S7,2 |05411 BD | +050916 |V0916 Aql |191000.4+123212 |DCEP | 11.6 | 13.2 | |p |36341.31 | | 13.44155 |40 | |02596 02596| +050923 |V0923 Aql *|193033.1+032640 |GCAS | 6.04 |( 0.12 )| |V | | | | |B5.5IIIpe-B8V |03178 BD | +050925 |V0925 Aql *|194202.3+115015 |SR | 10.1 | 12.0 | |p | | | | |K5 |06996 02096| +050962 |V0962 Aql |190644.0+132141 |EA/SD | 12.3 | 14.5 | |p |37159.415 | | 1.1654 | | |04239 04239| +051051 |V1051 Aql |195209.8-002157 |SRB | 11. | 12. | |p | | | 100. : | |M3-M5 |04278 04278| +051054 |V1054 Aql |195218.2+115541 |SR | 12.2 | 12.6 | |p | | | | |M4 |04029 02349| +051095 |V1095 Aql *|200805.5+151644 |SRD | 12.3 | 13.4 | |p |29048. | | 42.24 |45 : | |04027 02350| +051162 |V1162 Aql |195221.0-112201 |DCEPS | 8.6 | 9.3 | |p |25803.400 | | 5.3761 |50 : |G5 |03929 BD | +051165 |V1165 Aql *|195452.8+124558 |CEP: | 10. | 10.5 | |p |36755.472 | | 6.82957 |30 : | |03932 04564| +051168 |V1168 Aql |195842.1+114841 |EA/SD | 11.9 | 13.9 | |p |28248.610 | | 1.272567 |10 *| |03148 00158| +051182 |V1182 Aql *|185523.1+092048 |EB/KE: | 8.5 | 8.65 | 8.65 |V |39651.720 | | 1.621924 | |O8Vnn |06442 BD | +051208 |V1208 Aql *|191939.4+122229 |DSCTC | 5.51 | 5.56 | |V | | | 0.149663 | |F0III |04591 BD | +051261 |V1261 Aql *|193443.6+070846 |LB | 10.0 | 10.4 | |p | | | | |M4 |07010 03910| +051263 |V1263 Aql |193512.5+020521 |LB | 12.5 | 13.0 | |p | | | | |M6 |07010 03910| +051269 |V1269 Aql *|193640.2+005339 |E | 12.5 | 13. | |p |38940.52 | | | | |05506 05506| +051279 |V1279 Aql |194047.6+022929 |LB | 11.0 | 11.5 | |p | | | | |M4 |07010 03903| +051285 |V1285 Aql |185527.4+082409 |UV | 10.8 | 11.82 | |B | | | | |M2Ve |05831 GSC | +051286 |V1286 Aql *|185846.9+135424 |ACV | 5.83 | 5.93 | |V |41517.4 | | 6.05 | |A4p(Eu-Cr-Sr) |07021 BD | +051288 |V1288 Aql *|191342.7+021737 |ACV | 5.06 | 5.16 | |V |44099.23 | | 1.73 | |B8II-IIIp(Hg:) |04602 BD | +051291 |V1291 Aql *|195318.7-030652 |ACV | 5.61 | 5.67 | |V |32323. | | 224.5 | |A5p(Sr-Cr-Eu) |07022 BD | +051292 |V1292 Aql |200758.9+073350 |M: | 12.4 : | | |p | | | | |M3e |05159 05159| +051293 |V1293 Aql |193307.8+050146 |SRB | 8.3 | 9.0 | |p | | | | |M5III |06302 BD | +051294 |V1294 Aql |193336.9+034541 |GCAS | 6.82 | 7.23 | |V | | | | |B0.5IV |08110 BD | +051295 |V1295 Aql *|200302.5+054417 |* | 7.87 |( 0.02 )| |V | | | | |A0ep |05880 BD | +051300 |V1300 Aql *|201027.9-061614 |M: | 2.2 | 3.2 | |K | | | 680. | |M: |06925 USNO | +051330 |V1330 Aql |203401.6+022016 |SR | 10. | 11. | |p | | | | |M6 |08065 BD | +051331 |V1331 Aql *|184412.8-013316 |EB/KE: | 7.7 | 8.05 | 7.95 |V |42610.070 | | 1.364209 | |B1V |08113 BD | +051332 |V1332 Aql |194411.1-111927 |SR: | 10.8 | 11.5 | |p | | | | | |07594 07594| +051339 |V1339 Aql |195017.5+075409 |GCAS: | 6.33 | 6.52 | |V | | | | |B2.5IVe |05150 BD | +051344 |V1344 Aql |191159.2+042118 |DCEP | 7.65 | 8.00 | |V |43398.071 | | 7.47803 |35 |G1Ib |08317 BD | +051346 |V1346 Aql |191335.9+160955 |M | 12.0 | 15.1 | |I |42190. | | 278. |46 | |08319 08319| +051349 |V1349 Aql *|191527.3+154754 |M | 10.0 | 14.5 | |I |42273. | | 260. |34 |M8 |08319 08319| +051352 |V1352 Aql *|192031.0+110154 |INT | 12.05 | 12.72 | |V | | | | |pec(T) |08433 00965| +051353 |V1353 Aql *|192420.6+160243 |EB/KE | 10.5 | 11.4 | 10.9 |p |34461.529 | | 1.4147979 | |A |08321 08321| +051354 |V1354 Aql |193357.9+114603 |SRB | 12.0 | 14.8 | |p | | | | | |08322 00976| +051356 |V1356 Aql |194658.9-020434 |RRC: | 10.3 | 10.5 | |V |43698.607 | | 0.324 |30 |A6 |01187 00470| +051357 |V1357 Aql *|201203.9+152128 |SXARI | 7.94 |( 0.04 )| |V |44084.32 | | 19.5 | |B5p |08747 BD | +051359 |V1359 Aql |200340.0-032239 |DCEPS: | 8.83 | 9.02 | |V | | | 3.7317 |60 : |G5 |08637 BD | +051360 |V1360 Aql |184553.1-014648 |M | 10.4 | 12.5 | |K | | | | | |67012 | +051361 |V1361 Aql |184709.9-023536 |M | 8.5 | 12.2 | |H | | | | | |67012 | +051362 |V1362 Aql |184842.0-025029 |M | 5.3 | 6.5 | |L | | | | | |67012 | +051363 |V1363 Aql |185126.3-010352 |M | 5.8 | 6.7 | |L | | | | | |67013 | +051364 |V1364 Aql |185201.5-012646 |M | 6.5 | 8.0 | |H | | | | | |67012 2MASS| +051365 |V1365 Aql |185222.3-001411 |M | 3.9 | 7.2 | |L | | | | | |67012 | +051366 |V1366 Aql |185830.0+064302 |M | 7.5 | 9.3 | |H | | | | | |67013 | +051367 |V1367 Aql |190409.8+061317 |M | 9.0 | 11.4 | |K | | | | | |67012 | +051368 |V1368 Aql |190907.5+081623 |M | 6.8 | 7.9 | |L | | | | | |67012 UCAC2| +051369 |V1369 Aql |191419.6+111035 |M | 6.7 | 9.0 | |K | | | | | |67012 | +051370 |V1370 Aql |192321.1+022926 |NA | 6.0 : | 20.0 : | |V | | | | | |67016 67016| +051376 |V1376 Aql |195749.3+113454 |EA/GS | 11.6 | 12.7 | |p | | | | | |67020 67019| +051378 |V1378 Aql |191635.4+034319 |N | 10. |< 12.7 | |V | | | | | |68024 | +051379 |V1379 Aql |193938.8-060350 |RS | 8.34 | 8.55 | |V | | | | | |68316 BD | +051401 |V1401 Aql |200505.4-113558 |SRD | 6.18 | 6.55 | |V | | | | | |68029 BD | +051402 |V1402 Aql |190359.0-041902 |WR | 11.59 |( 0.14 )| |B | | | | | |69021 BD | +051403 |V1403 Aql |190718.1+032635 |ACYG | 7.41 |( 0.08 )| |V | | | | | |69022 BD | +051404 |V1404 Aql |191057.2+045036 |SRB | 12.25 | 12.39 | |V | | | | | |69023 69023| +051407 |V1407 Aql |195716.9-111416 |M | 9.0 |< 13. | |V | | | | | |69029 69030| +051413 |V1413 Aql |190346.9+162617 |ZAND+E | 10.6 | 15.1 | |V | | | | | |71177 71178| +051414 |V1414 Aql |193439.9-073420 |M | 9.0 | 14.4 | |V | | | | | |71185 71186| +051415 |V1415 Aql |194345.3+034431 |M | 0.9 | 1.9 | |L | | | | | |71002 USNO | +051416 |V1416 Aql |200743.0+060313 |M | 1.1 | 2.1 | |L | | | | | |71002 USNO | +051417 |V1417 Aql |184224.9-021725 |M | 12.0 | 13.4 | |I | | | | | |72006 72006| +051418 |V1418 Aql |190318.4+073050 |M | 6.66 | 9.33 | |J | | | | | |72007 72008| +051419 |V1419 Aql |191306.8+013423 |NA | 7.66 |< 22. | |V | | | | | |72009 72010| +051420 |V1420 Aql |192018.1-080212 |M | 6.18 | 8.33 | |J | | | | | |72007 72011| +051421 |V1421 Aql |192714.8+070413 |M | 6.66 | 7.98 | |J | | | | | |72007 72031| +051422 |V1422 Aql |200709.3+151602 |BY | 8.09 |( 0.10 )| |V | | | | | |72012 BD | +051423 |V1423 Aql |200827.0+154030 |RS | 7.8 |( 0.045 )| |V | | | | | |72012 BD | +051424 |V1424 Aql |201045.1+151203 |EA | 8.69 |( 0.14 )| |V | | | | | |72013 BD | +051425 |V1425 Aql |190526.6-014203 |NA | 7.5 : |< 19. | |V | | | | | |73019 73020| +051426 |V1426 Aql |191212.0+042342 |EA | 9.3 |( 0.45 )| |B | | | | | |73021 BD | +051427 |V1427 Aql |191358.6+000732 |SRD | 10.48 | 10.88 | |U | | | | | |73022 BD | +051428 |V1428 Aql |191655.3+051008 |BY | 9.09 | 9.13 | |V | | | | | |73018 BD | +051429 |V1429 Aql |192134.0+145257 |SDOR: | 11.46 | 12.26 | |U | | | | | |73023 BD | +051430 |V1430 Aql |192148.5+043257 |EA/RS | 10.2 |( 0.80 )| |V | | | | | |73024 73025| +051431 |V1431 Aql |192901.0+015702 |ACVO: | 6.06 |( 0.04 )| |v | | | | | |73026 BD | +051433 |V1433 Aql |194055.3+152017 |M | 3.7 | 4.7 | |K | | | | | |73029 GSC22| +051434 |V1434 Aql |184655.6+092509 |LB: | 7.56 | 7.68 | |Hp| | | | | |HIP HIP | +051435 |V1435 Aql |185329.9+093931 |LB: | 7.32 | 7.46 | |Hp| | | | | |HIP HIP | +051436 |V1436 Aql |185453.7+105840 |E: | 9.52 | 11.45 | |Hp| | | | | |HIP HIP | +051437 |V1437 Aql |185915.2-070801 |BE | 8.99 | 9.10 | |Hp| | | | | |HIP HIP | +051438 |V1438 Aql |185951.0+112642 |DSCTC | 7.79 | 7.86 | |Hp| | | | | |HIP HIP | +051439 |V1439 Aql |190049.4+143249 |EB: | 7.68 | 7.98 | |Hp| | | | | |HIP HIP | +051440 |V1440 Aql |190500.1-070831 |ELL:+NL: | 8.40 | 8.75 | |Hp| | | | | |HIP HIP | +051441 |V1441 Aql |190508.5+093832 |EB | 6.91 | 7.00 | |Hp| | | | | |HIP HIP | +051442 |V1442 Aql |190548.2+121227 |LB: | 7.46 | 7.56 | |Hp| | | | | |HIP HIP | +051443 |V1443 Aql |190825.2+090801 |GCAS: | 8.95 | 9.13 | |Hp| | | | | |HIP HIP | +051444 |V1444 Aql |191009.9+022127 |ACV: | 7.93 | 7.99 | |Hp| | | | | |HIP HIP | +051445 |V1445 Aql |191135.3-012353 |LB: | 11.10 | 11.37 | |Hp| | | | | |HIP HIP | +051446 |V1446 Aql |191240.3-062732 |BE | 9.16 | 9.28 | |Hp| | | | | |HIP HIP | +051447 |V1447 Aql |191458.1+102434 |LPB: | 7.34 | 7.44 | |Hp| | | | | |HIP HIP | +051448 |V1448 Aql |191501.4+094827 |BE: | 7.92 | 8.09 | |Hp| | | | | |HIP HIP | +051449 |V1449 Aql |191714.8+010334 |BCEP | 8.30 | 8.38 | |Hp| | | | | |HIP HIP | +051450 |V1450 Aql |191741.0+083651 |EB: | 8.98 | 9.30 | |Hp| | | | | |HIP HIP | +051451 |V1451 Aql |192024.7-103337 |LB | 6.83 | 6.99 | |Hp| | | | | |HIP HIP | +051452 |V1452 Aql |192040.9+142509 |CEP: | 7.75 | 7.85 | |Hp| | | | | |HIP HIP | +051453 |V1453 Aql |192529.0-065542 |LB: | 9.10 | 9.20 | |Hp| | | | | |HIP HIP | +051454 |V1454 Aql |192605.1+033110 |E: | 8.09 | 8.23 | |Hp| | | | | |HIP HIP | +051455 |V1455 Aql |192633.2-080942 |EA: | 8.08 | 8.27 | |Hp| | | | | |HIP HIP | +051456 |V1456 Aql |192806.2+114701 |SRB | 8.42 | 8.63 | |Hp| | | | | |HIP HIP | +051457 |V1457 Aql |192827.9+093747 |SRB | 8.07 | 8.26 | |Hp| | | | | |HIP HIP | +051458 |V1458 Aql |193455.8+061402 |SRA | 8.33 | 8.45 | |Hp| | | | | |HIP HIP | +051459 |V1459 Aql |193920.7+102316 |LB: | 8.48 | 8.65 | |Hp| | | | | |HIP HIP | +051460 |V1460 Aql |194202.0-100532 |LB: | 9.31 | 9.41 | |Hp| | | | | |HIP HIP | +051461 |V1461 Aql |194334.1-090402 |EA | 8.91 | 9.34 | |Hp| | | | | |HIP HIP | +051462 |V1462 Aql |194330.5+004032 |BE | 8.28 | 8.39 | |Hp| | | | | |HIP HIP | +051463 |V1463 Aql |194415.9+073518 |BE | 8.05 | 8.19 | |Hp| | | | | |HIP HIP | +051464 |V1464 Aql |195015.5-083606 |RRC: | 8.69 | 8.76 | |Hp| | | | | |HIP HIP | +051465 |V1465 Aql |195055.2+064925 |ACV: | 9.22 | 9.32 | |Hp| | | | | |HIP HIP | +051466 |V1466 Aql |195215.6+102106 |BE: | 6.50 | 6.56 | |Hp| | | | | |HIP HIP | +051467 |V1467 Aql |195542.9+032152 |LB: | 11.81 | 12.28 | |Hp| | | | | |HIP HIP | +051468 |V1468 Aql |200105.2-072152 |LB | 10.31 | 10.63 | |Hp| | | | | |HIP HIP | +051469 |V1469 Aql |200103.8+093051 |LB | 8.48 | 8.66 | |Hp| | | | | |HIP HIP | +051470 |V1470 Aql *|200409.3+114740 |E | 7.83 | 7.93 | |Hp| | | | | |HIP HIP | +051471 |V1471 Aql |200454.9+022631 |EB: | 8.42 | 8.63 | |Hp| | | | | |HIP HIP | +051472 |V1472 Aql *|200526.6+153002 |E: | 6.38 | 6.54 | |Hp| | | | | |HIP HIP | +051473 |V1473 Aql |200849.7+121342 |LPB: | 7.15 | 7.21 | |Hp| | | | | |HIP HIP | +051474 |V1474 Aql |201109.6+062055 |LB | 7.39 | 7.65 | |Hp| | | | | |HIP HIP | +051475 |V1475 Aql |201202.0+074104 |LB | 7.11 | 7.26 | |Hp| | | | | |HIP HIP | +051476 |V1476 Aql |201207.0+074708 |LB: | 11.69 | 11.98 | |Hp| | | | | |HIP HIP | +051477 |V1477 Aql |201405.4-045016 |CEP: | 9.32 | 9.76 | |Hp| | | | | |HIP HIP | +051478 |V1478 Aql |201424.9-000020 |LB | 8.78 | 9.17 | |Hp| | | | | |HIP HIP | +051479 |V1479 Aql |201424.3+115726 |LB: | 11.29 | 11.53 | |Hp| | | | | |HIP HIP | +051480 |V1480 Aql |201600.9+020641 |LB | 12.05 | 12.69 | |Hp| | | | | |HIP HIP | +051481 |V1481 Aql |201700.3+070418 |LB | 7.24 | 7.56 | |Hp| | | | | |HIP HIP | +051482 |V1482 Aql |202319.2-002708 |SRB | 6.96 | 7.09 | |Hp| | | | | |HIP HIP | +051483 |V1483 Aql |202746.1-053915 |LB: | 6.83 | 7.00 | |Hp| | | | | |HIP HIP | +051484 |V1484 Aql |203605.7+010146 |LB: | 10.10 | 10.31 | |Hp| | | | | |HIP HIP | +051485 |V1485 Aql |184413.2-034758 |WR | 11.88 | 12.70 | |V | | | | | |75019 75020| +051487 |V1487 Aql |191511.6+105644 |XN | 12.15 | 14.3 | |K | | | | | |75022 75023| +051489 |V1489 Aql |195338.1+092328 |CEP: | 12.1 |( 0.15 )| |V | | | | | |75025 GSC | +051490 |V1490 Aql |195340.2+092351 |EA | 10.5 | 11.0 | |V | | | | | |75025 GSC | +051491 |V1491 Aql |195402.9+131618 |ACV | 9.97 |( 0.07 U )| |V | | | | | |75026 BD | +051493 |V1493 Aql |190736.9+123127 |NA | 10.04 |( 21. )| |V | | | | | |75018 75285| +051494 |V1494 Aql |192305.3+045720 |N | 5.03 | 16. | |V | | | | | |75305 75306| +051496 |V1496 Aql |185459.5-000436 |DCEP: | 12.5 | 13.4 | |p | | | | | |76189 76189| +051497 |V1497 Aql |185726.7-033434 |SR: | 11.8 | 13.5 | |* | | | | | |76057 USNO | +051499 |V1499 Aql |185751.1-015900 |SR | 10.7 | 11.6 | |* | | | | | |76190 USNO | +051502 |V1502 Aql |185852.6-094107 |SR: | 11.5 | 12.9 | |* | | | | | |76195 76057| +051503 |V1503 Aql |185901.3-032307 |SR: | 12.5 | 13.8 | |* | | | | | |76147 76057| +051507 |V1507 Aql |185953.9-031434 |M: | 10.5 |< 13.1 | |* | | | | | |76190 76057| +051508 |V1508 Aql |185955.1-101059 |SR: | 12.5 | 13.9 | |* | | | | | |76190 USNO | +051509 |V1509 Aql |190011.9-025724 |SR: | 10.8 | 13.6 | |* | | | | | |76197 76057| +051510 |V1510 Aql |190017.7-060658 |M: | 11.7 | 14.5 | |* | | | | | |76192 USNO | +051512 |V1512 Aql |190049.5-015345 |SR | 12.1 | 13.3 | |* | | | | | |76195 USNO | +051513 |V1513 Aql |190105.0-031049 |SR: | 11.0 | 13.2 | |* | | | | | |76197 USNO | +051514 |V1514 Aql |190110.0-100330 |SR: | 12.5 | 14.0 | |* | | | | | |76072 USNO | +051515 |V1515 Aql |190115.0+113239 |SR: | 12.3 | 13.7 | |* | | | | | |76057 76057| +051517 |V1517 Aql |190139.6-064623 |SR: | 12.2 | 14.3 | |* | | | | | |76192 USNO | +051519 |V1519 Aql |190153.3+120533 |SR: | 12.1 | 13.6 | |* | | | | | |76057 76057| +051520 |V1520 Aql |190158.5-020047 |SR | 12.5 |( 0.7 )| |V | | | | | |76198 GSC | +051522 |V1522 Aql |190225.4-075650 |SR: | 11.3 | 13.4 | |* | | | | | |76190 USNO | +051524 |V1524 Aql |190236.0-070134 |SR: | 11.1 | 13.2 | |* | | | | | |76190 USNO | +051526 |V1526 Aql |190605.7-012959 |M | 10. |< 12.5 | |* | | | | | |76199 USNO | +051528 |V1528 Aql |190853.1-020118 |M | 11.0 |< 12.0 | |I | | | | | |76198 2MASS| +051538 |V1538 Aql |192436.4+063128 |EW: | 12.3 | 12.7 | |* | | | | | |76272 GSC | +051539 |V1539 Aql |192634.5+033152 |LPB | 8.43 |( 0.03 )| |V | | | | | |76208 DM | +051540 |V1540 Aql |192809.3+102938 |SR: | 12.4 | 13.4 | |* | | | | | |76057 76057| +051541 |V1541 Aql |194258.2-051337 |M | 9.52 |< 13. | |* | | | | | |76217 USNO | +051542 |V1542 Aql |194625.1+084513 |DSCT: | 11.71 | 12.34 | |* | | | | | |76170 GSC | +051543 |V1543 Aql |194915.2+103543 |SR | 12.13 | 12.40 | |* | | | | | |76169 GSC | +051544 |V1544 Aql |195412.7+103929 |SR | 12.2 | 12.5 | |* | | | | | |76169 USNO | +051545 |V1545 Aql |195706.6-074528 |M | 10.09 |< 12.5 | |* | | | | | |76219 GSC | +051546 |V1546 Aql |195855.3+110703 |SR: | 12.0 | 12.9 | |* | | | | | |76197 UCAC2| +051548 |V1548 Aql |190728.4+114446 |N | 10.8 |< 18. | |V | | | | | |77167 77168| +051549 |V1549 Aql |184632.1-025723 |SR | 7.5 | 8.3 | |I | | | | | |77149 GSC | +051550 |V1550 Aql |185043.4-033431 |SR | 6.8 | 7.0 | |I | | | | | |77149 GSC | +051551 |V1551 Aql |185235.9-031217 |SR | 8.0 | 8.8 | |I | | | | | |77149 USNO | +051552 |V1552 Aql |185911.0+172704 |M | 11.4 |< 14.3 | |V | | | | | |77004 2MASS| +051553 |V1553 Aql |190256.8+002548 |M: | 12.0 |< 13.8 | |V | | | | | |77004 GSC | +051556 |V1556 Aql |190408.0+024154 |M | 11.5 | 14.9 | |I | | | | | |77164 USNO | +051557 |V1557 Aql |190408.4+015856 |M | 12.5 | 15.5 : | |I | | | | | |77164 GSC22| +051558 |V1558 Aql |190418.3+013041 |M | 12.3 | 14.5 | |I | | | | | |77164 GSC22| +051559 |V1559 Aql |190418.3+025113 |M | 11.2 | 14.4 | |I | | | | | |77164 GSC22| +051560 |V1560 Aql |190434.2+020646 |M | 11.9 | 15.0 | |I | | | | | |77164 GSC22| +051561 |V1561 Aql |190439.5+012218 |M | 10.0 | 13.1 | |I | | | | | |77164 GSC22| +051562 |V1562 Aql |190442.8+025143 |M | 12.4 | 15.1 | |I | | | | | |77164 GSC22| +051563 |V1563 Aql |190450.5+022230 |LB | 10.7 | 11.8 | |I | | | | | |77164 GSC22| +051564 |V1564 Aql |190450.8+023320 |M | 11.8 | 15.2 | |I | | | | | |77164 USNO | +051565 |V1565 Aql |190451.2+013142 |M | 11.3 | 14.5 | |I | | | | | |77164 GSC22| +051566 |V1566 Aql |190451.8+025418 |M | 12.4 | 15.4 : | |I | | | | | |77164 2MASS| +051567 |V1567 Aql |190453.2+020840 |M | 10.9 | 15.1 | |I | | | | | |77164 GSC22| +051568 |V1568 Aql |190454.0+023747 |M | 11.9 | 14.6 | |I | | | | | |77164 GSC22| +051569 |V1569 Aql |190455.8+012130 |M | 11.9 | 15.8 | |I | | | | | |77164 GSC22| +051570 |V1570 Aql |190504.6+011604 |M | 10.2 | 14.8 | |I | | | | | |77164 USNO | +051571 |V1571 Aql |190509.7+021337 |M | 11.8 | 14.0 | |I | | | | | |77164 2MASS| +051572 |V1572 Aql |190509.8+021800 |M | 11.9 | 15.1 | |I | | | | | |77164 GSC22| +051574 |V1574 Aql |190514.6+014452 |M | 12.0 | 15.5 | |I | | | | | |77164 USNO | +051575 |V1575 Aql |190514.7+015552 |M | 12.1 | 14.8 | |I | | | | | |77164 77164| +051576 |V1576 Aql |190517.3+015332 |M | 12.2 | 15.6 : | |I | | | | | |77164 77164| +051577 |V1577 Aql |190518.5+013936 |M | 9.5 | 13.0 | |I | | | | | |77164 GSC22| +051578 |V1578 Aql |190519.9+022741 |M | 11.8 | 15.5 : | |I | | | | | |77164 GSC22| +051579 |V1579 Aql |190521.8+014233 |M | 11.8 | 15.3 | |I | | | | | |77164 USNO | +051580 |V1580 Aql |190556.4+025651 |M | 11.4 | 15.2 | |I | | | | | |77164 GSC22| +051581 |V1581 Aql |190601.5+015003 |M | 12.0 | 15.5 | |I | | | | | |77164 GSC22| +051583 |V1583 Aql |190607.6+012202 |M | 10.1 | 13.6 | |I | | | | | |77164 GSC22| +051584 |V1584 Aql |190617.1+021242 |M | 11.1 | 14.5 | |I | | | | | |77164 GSC22| +051585 |V1585 Aql |190619.2+015702 |M | 12.5 | 15.5 : | |I | | | | | |77164 GSC22| +051586 |V1586 Aql |190623.7+123818 |M: | 12.4 | 15.1 | |* | | | | | |77156 GSC22| +051587 |V1587 Aql |190627.9+005943 |M | 12.1 | 15.7 | |I | | | | | |77164 USNO | +051588 |V1588 Aql |190628.4+031019 |M | 12.0 | 15.0 | |I | | | | | |77164 USNO | +051589 |V1589 Aql |190639.5+032622 |M | 11.4 | 14.8 | |I | | | | | |77164 2MASS| +051593 |V1593 Aql |190646.9+032522 |M | 11.5 | 14.5 | |I | | | | | |77164 GSC22| +051594 |V1594 Aql |190655.8+025944 |M | 12.1 | 15. : | |I | | | | | |77164 USNO | +051596 |V1596 Aql |190701.2+012959 |M | 11.7 | 15.2 | |I | | | | | |77164 GSC22| +051598 |V1598 Aql |190711.6-041001 |M | 10.2 |< 12.0 | |I | | | | | |77149 USNO | +051599 |V1599 Aql |190712.9+032104 |M | 11.2 | 14.5 | |I | | | | | |77164 GSC22| +051600 |V1600 Aql |190713.2+011720 |M | 10.5 | 14.2 | |I | | | | | |77164 USNO | +051601 |V1601 Aql |190714.2+032506 |M | 11.8 | 15.0 | |I | | | | | |77164 GSC22| +051602 |V1602 Aql |190719.3+014934 |M | 11.2 | 15.5 | |I | | | | | |77164 GSC22| +051603 |V1603 Aql |190727.1+022434 |M | 11.0 | 14.4 | |I | | | | | |77164 USNO | +051605 |V1605 Aql |190730.9+023342 |M | 11.5 | 14.6 | |I | | | | | |77164 2MASS| +051607 |V1607 Aql |190734.1+025010 |M | 11.5 | 15.3 | |I | | | | | |77164 USNO | +051609 |V1609 Aql |190806.3+021742 |M | 12.2 | 15.5 | |I | | | | | |77164 GSC22| +051611 |V1611 Aql |190810.0+023150 |M | 12.4 | 15.6 | |I | | | | | |77164 USNO | +051612 |V1612 Aql |190818.4+014628 |M | 11.9 | 15.5 : | |I | | | | | |77164 USNO | +051613 |V1613 Aql |190833.7+015553 |M | 11.9 | 15.0 | |I | | | | | |77164 USNO | +051614 |V1614 Aql |190845.8+031602 |SR | 8.7 | 10.8 | |I | | | | | |77164 USNO | +051615 |V1615 Aql |190848.1+013929 |M | 10.5 | 14.5 | |I | | | | | |77164 USNO | +051616 |V1616 Aql |190849.7+025044 |M | 12.0 | 15.5 : | |I | | | | | |77164 2MASS| +051617 |V1617 Aql |190902.8+030625 |M | 12.5 | 15.2 | |I | | | | | |77164 GSC22| +051618 |V1618 Aql |190917.3+025453 |M | 10.4 | 14.0 | |I | | | | | |77164 USNO | +051619 |V1619 Aql |190931.3+030316 |M | 12.4 | 15.2 | |I | | | | | |77164 GSC22| +051620 |V1620 Aql |190940.9+021326 |M | 12.2 | 14.9 | |I | | | | | |77164 GSC22| +051621 |V1621 Aql |190953.0+025421 |M | 11.6 | 15.0 | |I | | | | | |77164 USNO | +051622 |V1622 Aql |190953.6+024627 |M | 10.8 | 14.0 | |I | | | | | |77164 USNO | +051624 |V1624 Aql |191002.7+030351 |M | 12.0 | 16. : | |I | | | | | |77164 GSC22| +051625 |V1625 Aql |191006.6+034328 |M | 11.8 | 14.2 | |I | | | | | |77164 USNO | +051626 |V1626 Aql |191007.0+030817 |M | 12.0 | 15.3 | |I | | | | | |77164 GSC22| +051627 |V1627 Aql |191008.6+021630 |M | 12.3 | 15.5 : | |I | | | | | |77164 GSC22| +051628 |V1628 Aql |191012.3+024438 |M | 11.7 | 15.0 | |I | | | | | |77164 USNO | +051632 |V1632 Aql |191025.6+021833 |M | 12.3 | 15.3 | |I | | | | | |77164 GSC22| +051636 |V1636 Aql |191233.2-030836 |SR | 9.8 | 10.6 | |I | | | | | |77149 GSC | +051637 |V1637 Aql |191348.6-052952 |SR | 7.0 | 7.7 | |I | | | | | |77149 GSC | +051639 |V1639 Aql |191841.1+072403 |LB | 11.8 | 12.1 | |* | | | | | |77125 GSC | +051640 |V1640 Aql |192035.0-035751 |M | 11.9 |( 2.50 )| |R | | | | | |77172 77172| +051642 |V1642 Aql |192157.3+035555 |LB | 12.4 | 12.9 | |* | | | | | |77125 GSC | +051643 |V1643 Aql |192429.6+045640 |SR: | 11.4 | 12.9 | |* | | | | | |77156 USNO | +051644 |V1644 Aql |192442.8+040656 |LB | 12.1 | 12.7 | |* | | | | | |77125 USNO | +051645 |V1645 Aql |192448.3-082920 |SR: | 10.5 | 12.6 | |V | | | | | |77004 GSC | +051646 |V1646 Aql |193421.5+035443 |EA | 11.9 | 12.4 | |* | | | | | |77125 GSC | +051648 |V1648 Aql *|194108.3+020231 |* | 10.95 | 11.22 | |V | | | | | |77178 GSC | +051650 |V1650 Aql |194814.9+035113 |LB | 11.1 | 11.4 | |* | | | | | |77125 GSC | +051653 |V1653 Aql |195359.4+071445 |LB | 12.0 | 12.4 | |* | | | | | |77125 GSC | +051654 |V1654 Aql |200247.0+031934 |BY | 7.48 |( 0.04 b )| |V | | | | | |77182 DM | +051655 |V1655 Aql |200302.8+152742 |SR | 8.23 | 8.43 | |V | | | | | |77183 DM | +051658 |V1658 Aql |201043.8+045449 |BY | 9.50 |( 0.14 Rc)| |V | | | | | |77188 77188| +051659 |V1659 Aql |201103.3+045510 |BY | 9.00 |( 0.11 Rc)| |V | | | | | |77188 77188| +051660 |V1660 Aql |201448.7+035532 |DSCT: | 12.1 | 12.4 | |* | | | | | |77122 GSC | +051662 |V1662 Aql |203550.6-013620 |SR: | 11.1 | 13.1 | |V | | | | | |77004 GSC | +051664 |V1664 Aql |184339.2-000427 |SR | 11.3 | 13.0 | |I |51443 | | 280. : | | |78006 2MASS| +051665 |V1665 Aql *|185609.9+075608 |EA | 8.09 | 8.40 | 8.26 |V |52810.870 | | 3.88181 | |B9V |78011 DM | +051668 |V1668 Aql |185742.3+111257 |M | 11.6 | 14.8 | |* |51309 | | | | |78006 2MASS| +051669 |V1669 Aql |185813.4+150622 |M: | 12.1 |< 15.1 | |* | | | | | |78006 78256| +051672 |V1672 Aql |190010.9+034547 |SDOR: | 6.91 | 8.58 | |K | | | | | |78257 2MASS| +051673 |V1673 Aql |190015.1+105017 |M: | 11.8 | 15.6 | |* |51460 | | | | |78006 2MASS| +051675 |V1675 Aql |190028.1+140953 |M | 12.5 | 15.2 | |* |51459 | | | | |78006 2MASS| +051676 |V1676 Aql |190040.5-095148 |SR: | 12.3 | 14.0 | |* | | | | | |78006 2MASS| +051677 |V1677 Aql |190109.4+153857 |SR: | 11.6 | 14.0 | |* |51340 | | | | |78006 2MASS| +051679 |V1679 Aql |190132.3+150022 |M: | 11.8 | 13.7 | |* |51340 | | | | |78006 2MASS| +051681 |V1681 Aql |190227.8+181236 |M: | 12.3 | 15.0 | |* | | | | | |78006 2MASS| +051682 |V1682 Aql |190241.8+124600 |M: | 12.1 | 15.1 | |* | | | | | |78006 2MASS| +051683 |V1683 Aql |190253.7-102643 |M | 9.8 | 12.6 | |* |53275 | | 370. | | |78006 2MASS| +051686 |V1686 Aql *|191347.7-015007 |EB | 8.91 | 9.01 | 8.98 |V |52070.764 | | 6.07195 | |B6III |78011 DM | +051687 |V1687 Aql *|191439.6+035040 |EW | 11.42 | 11.85 | 11.85 |V |52464.5579 | | 0.5878039 | | |78097 GSC | +051688 |V1688 Aql |191535.0+113317 |BY | 8.06 |( 0.02 )| |V | | | 14.16 : | |K0V |78018 DM | +051689 |V1689 Aql |192030.0-070241 |SRA | 11.3 | 12.2 | |V |52761 | | 116. | |M7 |78130 GSC | +051690 |V1690 Aql |192238.4+140753 |M: | 10.6 |< 13.1 | |* |52515 | | | | |78088 2MASS| +051691 |V1691 Aql |192501.5-045304 |DSCTC | 6.82 |( 0.04 )| |B | | | 0.0781 | |A9V |78270 DM | +051692 |V1692 Aql *|192628.2+071149 |EW | 11.22 | 11.45 | 11.44 |* |52140.960 | | 0.60926 | | |78065 GSC | +051693 |V1693 Aql |192751.0+111101 |M | 12.1 | 16.4 | |* |52390 | | 538. : | | |78006 2MASS| +051694 |V1694 Aql |193200.4+110925 |M: | 11.4 | 14.1 | |* |51415 | | | | |78006 2MASS| +051695 |V1695 Aql |193822.3-033237 |EW | 10.80 | 11.38 | |V |52522.440 | | 0.4128 | | |78272 DM | +051696 |V1696 Aql |194225.9-105818 |SRA | 10.0 | 13.1 | |V |52912 | | 154.7 | |Me |78130 GSC | +051698 |V1698 Aql |194449.5-004657 |SRB | 11.5 | 13.5 | |V | | | 248. | | |78278 78278| +051700 |V1700 Aql |200055.4+072442 |EA | 8.27 | 8.64 | |V |52527.618 | | 3.40078 | |B9 |78011 DM | +051701 |V1701 Aql |200056.9-060514 |M | 12.1 |< 14.6 | |V |53166 | | 321. | | |78103 2MASS| +051702 |V1702 Aql |200226.5-044635 |EA | 12.06 | 13.18 | |V |52087.723 | | 1.68502 |11 | |78283 GSC | +051703 |V1703 Aql |201359.8-005201 |BY | 7.79 |( 0.03 )| |V | | | 23.98 | |K2V |78018 DM | +051704 |V1704 Aql |202024.0-034859 |RRAB | 12.45 | 13.18 | |* |52523.40 | | 0.5152 |20 | |78272 GSC | +051707 |V1707 Aql *|185203.7+111726 |EA | 12.47 | 13.05 | 13.0 : |V |52888.602 | | 3.63592 |05 |A5 |79009 79130| +051708 |V1708 Aql |185357.5+013641 |SR: | 10.2 | 10.7 | |* | | | | | |79100 79175| +051709 |V1709 Aql |185454.4+010718 |GDOR | 7.43 | 7.49 | |Hp| | | 0.78666 | |F5 |79145 DM | +051711 |V1711 Aql *|191315.2+013438 |LB | 9.2 | 9.9 | |V | | | | |M1 |79100 DM | +051713 |V1713 Aql |193744.0+014936 |EW | 10.61 | 11.15 | 11.07 |V |52481.639 | | 0.531737 | |dK2: |79018 79132| +051714 |V1714 Aql |193939.5+093410 |EA | 11.76 | 12.45 : | 12.40 |V |51486.657 | | 0.962992 |11 | |79004 79133| +051715 |V1715 Aql |194539.2-051918 |M | 11.5 |< 15.0 | |V |53488. | | 267. | | |79064 79010| +051716 |V1716 Aql |194858.7+123406 |SRB | 11.4 | 12.7 | |V | | | 106. | | |79064 79040| +051717 |V1717 Aql |194901.5+002912 |M | 11.3 |< 16. | |V |53892. | | 360. | | |79100 79219| +051718 |V1718 Aql |195034.0+005438 |SRB | 11.8 | 12.7 | |V | | | 57. | | |79100 79040| +051719 |V1719 Aql *|195044.2+014550 |EA | 8.78 | 8.96 | 8.79 : |V |51421.753 | | 2.1774 |07 |G5V |79009 DM | +051720 |V1720 Aql |195254.1+064054 |LB | 11.5 | 12.0 | |* | | | | | |79100 79049| +051725 |V1725 Aql |184911.4+002359 |EA | 12.41 | 13.2 | 13.2 |V |52725.340 | | 99.4022 |05 | |80042 GSC | NL80_3 +051726 |V1726 Aql |184953.4+110010 |LB | 11.8 |( 0.31 )| |Ic| | | | | |80509 USNO | NL80_3 +051727 |V1727 Aql |185009.6+105936 |LB | 10.5 |( 0.29 )| |Ic| | | | | |80509 USNO | NL80_3 +051728 |V1728 Aql |185105.4-031540 |DSCTC | 6.9 |( 0.02 )| |V | | | 0.049051 | |A2 |80510 80510| NL80_3 +051729 |V1729 Aql |185122.2-031904 |DSCTC | 6.1 |( 0.03 )| |V | | | 0.080734 | |F2III |80510 80510| NL80_3 +051730 |V1730 Aql |185354.9-004812 |BE: | 11.9 | 12.3 | |V | | | | |OB:e |80077 GSC | NL80_3 +051731 |V1731 Aql |185520.6-010531 |SR | 12.3 | 13.0 | |V | | | 61. | | |80273 GSC | NL80_3 +051732 |V1732 Aql *|185659.1+002812 |EB | 12.4 | 13.3 | 12.8 |V |51981.4 | | 1.529950 | | |80002 GSC | NL80_3 +051733 |V1733 Aql |185750.4+013115 |SRB | 10.9 | 11.3 | |V | | | 186.8 | |ea |80002 GSC | NL80_3 +051736 |V1736 Aql |185941.3+180937 |SR | 10.9 | 11.8 | |* |51449. | | 88. | | |80001 2MASS| NL80_3 +051737 |V1737 Aql *|190047.5-085721 |M | 11.5 : | 15.5 : | |R |54631. | | 380. | | |80001 2MASS| NL80_3 +051738 |V1738 Aql |190115.5-114840 |LB | 12.4 | 14.0 | |V | | | | | |80001 GSC | NL80_3 +051747 |V1747 Aql |190723.4+084332 |EA | 10.34 | 11.00 | 10.48 |V |51332.759 | | 1.27428 |15 |AO |80042 GSC | NL80_3 +051779 |V1779 Aql |190800.3+040903 |LB: | 12.45 | 12.67 | |Ic| | | | | |80515 80515| NL80_3 +051793 |V1793 Aql |190813.4-061247 |SR: | 11.8 | 12.3 | |* | | | | | |80062 2MASS| NL80_3 +051796 |V1796 Aql |191014.1+050138 |EW | 10.87 | 11.28 | 11.23 |V |51320.786 | | 0.345897 | | |80042 GSC | NL80_3 +051797 |V1797 Aql |191232.7+105635 |LB: | 11.55 | 11.96 | |* | | | | | |80062 2MASS| NL80_3 +051798 |V1798 Aql |191248.7+145722 |EW | 11.55 | 11.94 | 11.94 |V |54629.7659 | | 0.340113 | | |80001 GSC | NL80_3 +051799 |V1799 Aql |191350.5+110944 |EW | 11.46 | 12.20 | 12.10 |V |52403.733 | | 0.3348417 | | |80042 GSC | NL80_3 +051800 |V1800 Aql |191524.8+103022 |EA | 10.34 | 10.92 | 10.8 : |V |51475.666 | | 6.8855 |05 |A2 |80042 DM | NL80_3 +051801 |V1801 Aql *|191822.7-024211 |* | 10.65 | 10.82 | |V | | | 22.5 : | |F3 |80625 DM | NL80_3 +051803 |V1803 Aql |192007.0+124743 |DCEP | 10.15 | 10.60 | |V |52733.4 | | 8.627245 | | |80002 BD | NL80_3 +051804 |V1804 Aql |192036.2+124737 |DCEP | 11.9 | 12.5 | |* |51450.1 | | 18.3 |40 | |80081 GSC | NL80_3 +051805 |V1805 Aql |192219.3+121548 |EA | 11.67 | 12.3 : | 11.93 |V |52552.553 | | 5.00337 |04 | |80013 GSC | NL80_3 +051806 |V1806 Aql |192230.8+115734 |BE | 10.6 | 10.9 | |V | | | | |Be |80077 80077| NL80_3 +051807 |V1807 Aql |192333.5+043725 |EA | 11.93 | 12.6 | 12.5 |V |52853.755 | | 2.1085 |07 | |80042 GSC | NL80_3 +051808 |V1808 Aql |192349.1+081826 |EW | 9.14 | 9.49 | 9.45 |* |52812.702 | | 0.423796 | |F5 |80042 DM | NL80_3 +051809 |V1809 Aql |192944.9+032554 |SR: | 12.4 | 13.0 | |V | | | 36.175 : | | |80001 GSC | NL80_3 +051810 |V1810 Aql |193019.6+132919 |SR | 11.2 | 11.7 | |* | | | 64.0 | | |80001 USNO | NL80_3 +051811 |V1811 Aql *|194042.5+014106 |EA | 10.42 | 10.67 | 10.67 |V |53153.850 | | 3.40300 |07 | |80011 GSC | NL80_3 +051812 |V1812 Aql |195110.6-010126 |EW | 10.16 | 10.33 | 10.30 |V |52437.759 | | 0.523673 | |A3 |80042 DM | NL80_3 +051814 |V1814 Aql |195455.1+065456 |EA | 10.42 | 11.30 | 10.62 |V |52524.606 | | 0.986783 |15 | |80042 DM | NL80_3 +051816 |V1816 Aql |195742.9-014540 |SRB: | 12.0 | 12.4 | |* | | | 75. | | |80001 GSC | NL80_3 +051817 |V1817 Aql |200111.9+075854 |EA | 9.64 | 10.00 | 9.72 |V |52383.0 | | 0.781565 |17 |A2 |80001 DM | NL80_3 +051818 |V1818 Aql |200134.9+045925 |SR | 11.95 | 12.39 | |* | | | 62.2 | | |80001 USNO | NL80_3 +051819 |V1819 Aql |200442.0-011446 |EW | 11.6 | 12.10 | 12.05 |V |52564.5864 | | 0.551128 | | |80002 GSC | NL80_3 +051820 |V1820 Aql *|200455.8+012157 |EA | 12.2 | 12.7 | 12.35 |V |52206.6 | | 0.678825 |10 | |80001 GSC | NL80_3 +051821 |V1821 Aql |200636.6+092953 |RRC | 11.66 | 12.1 | |V |54233.8681 | | 0.329661 |40 | |80001 GSC | NL80_3 +051822 |V1822 Aql |200711.6+085441 |LB | 12.0 | 12.8 | |* | | | | | |80062 GSC | NL80_3 +051825 |V1825 Aql |201309.8+102039 |EA | 8.78 | 9.34 | 9.30 |V |52879.640 | | 1.705523 |12 |F8 |80042 DM | NL80_3 +051826 |V1826 Aql |201342.6+135625 |EA | 10.85 | 11.25 | 11.24 : |V |52843.679 | | 1.746548 |12 |A5 |80011 GSC | NL80_3 +051829 |V1829 Aql |202737.8-013959 |RRAB | 11.50 | 12.10 | |V |52812.7353 | | 0.724820 |15 | |80001 GSC | NL80_3 +059001 |alf Aql |195047.0+085206 |DSCT | 0.77 |( 0.004 * )| |V | | | 0.06342 | |A7IV/V |79163 DM | +059007 |eta Aql *|195228.4+010020 |DCEP | 3.48 | 4.39 | |V |36084.656 | | 7.176641 |32 |F6Ib-G4Ib |02392 BD | +059018 |sig Aql *|193911.6+052352 |EB/DM | 5.14 |( 0.2 )|( 0.1 )|V |22486.797 | | 1.95026 | |B3V+B3V |02005 BD | +060001 |R Ara *|163944.7-565940 |EA | 6.17 | 7.32 | 6.2 |V |47386.1200 | | 4.42522 |14 *|B9Vp |N0001 CPD | +060002 |S Ara *|175910.7-492601 |RRAB | 9.92 | 11.24 | |V |52764.738 | | 0.4518587 |12 |A5-F3 |00001 CoD | +060003 |T Ara *|170233.1-550416 |SRB | 8.9 | 9.8 | |V | | | 170. | |C(R-Nb) |N0002 CPD | +060004 |U Ara |175337.6-514114 |M | 7.7 | 14.1 | |V |51981. | | 224.6 |44 |M3IIep |00001 00002| +060005 |V Ara |175456.2-481830 |M | 10.0 |< 14.3 | |V |53249. | | 384.7 | |M6e |N0002 CoD | +060006 |W Ara |175700.7-494804 |SRB | 8.8 | 10.0 | |V | | | 122. | |M5III |N0002 CoD | +060007 |X Ara |163624.7-552453 |M | 8.4 | 13.5 | |V |52455. | | 177.7 |40 |M5e-M7eII-III |N0002 00002| +060008 |Y Ara |163905.5-594823 |M | 8.6 |< 14.0 | |V |52481. | | 240.2 | |M2e-M4e |N0002 06286| +060009 |Z Ara |165413.3-561554 |M | 9.2 |< 14.0 | |V |52982. | | 293.3 |60 |M3e-M5e |N0002 GSC | +060010 |RR Ara |172752.0-495415 |M | 11.5 | 15.8 | |B |52542. | | 204. | |M3e |00001 N0003| +060011 |RS Ara |165900.1-642624 |M | 10.1 |< 12.2 | |V |52928. | | 204.4 | |Me |00001 GSC | +060012 |RT Ara |172618.3-551356 |RVA | 10.2 | 11.3 | |V |51981.8 | | 76.69 | |F8Ia |00001 07336| +060013 |RU Ara |172906.2-605357 |M | 8.6 | 13.0 | |V |52868. | | 256.8 | |M5e |00001 CPD | +060014 |RV Ara |173259.4-641654 |M | 9.4 |< 15.0 | |V |52593. | | 290.95 | |Me |N0002 08613| +060015 |RW Ara *|173449.2-570851 |EA | 8.85 | 11.45 | 8.91 |V |52740.796 | | 4.3674535 |13 |A1IV |00001 CPD | +060016 |RX Ara |165232.3-610443 |LB: | 9.4 | 10.0 | |V | | | | |M5 |00016 CoD | +060017 |RY Ara |172104.6-510714 |RVA: | 8.71 | 11.51 | |V | | | 145. : | |G5-K0 |N0004 CPD | +060018 |RZ Ara |174823.1-523903 |M | 9.4 |< 14.0 | |V |52851. | | 295.7 | |M1e-M3e |N0002 2MASS| +060019 |SS Ara |175819.1-500940 |CST: | 9.28 | | |V | | | | |K2/4 |00001 CoD | +060020 |ST Ara |165946.4-560825 |M | 10.6 | 14.3 | |V |52532. | | 258.6 | |Me |N0002 2MASS| +060021 |SU Ara |170237.5-542559 | | 12. |< 15. | |p | | | | | |00029 USNO | +060022 |SV Ara |170638.9-552935 |M | 11.5 |< 14.4 | |V |52418. | | 134.25 | | |N0002 GSC | +060023 |SW Ara |171955.4-582321 |EA | 12.5 | 15.9 | |p |53124.984 | | 6.23796 |13 | |00001 06286| +060024 |SX Ara |181007.8-542247 |M | 11.2 |< 14.4 | |V |52826. | | 388.5 | |Me |N0002 06286| +060025 |SY Ara *|163521.1-544518 |EA | 10.50 | 12.11 | 10.60 |V |53230.692 | | 1.8566643 |13 *|A |00001 00430| +060026 |SZ Ara *|171107.4-615715 |SRA | 9.0 | 11.5 | |V |53097. | | 221.8 | |Ce(R-Nb) |00001 06286| +060027 |TT Ara |180355.7-471400 |M | 9.4 | 14.2 | |V |52554. | | 178.6 | |M6e |N0002 GSC | +060028 |TU Ara |171951.5-502304 |M | 10.4 |< 13.7 | |V |53037. | | 353. | |Me |00001 GSC | +060029 |TV Ara *|164938.4-533852 |M | 12. |< 15. | |p |52277. | | 366. | |M2e |N0002 GSC | +060032 |TY Ara |173817.3-523346 |M | 11.5 |< 14.0 | |V |52419. | | 169.4 | |Me |N0002 2MASS| +060033 |TZ Ara |174320.7-535850 |M | 12.0 |< 15.0 | |V |52891. | | 275.7 | | |N0002 GSC | +060034 |UU Ara |174743.4-535036 |M | 11.4 | 15.0 | |V |52274. | | 190.1 | | |N0002 2MASS| +060035 |UV Ara |180946.3-522451 |M | 11.9 |< 15.0 | |V |52589. | | 244.1 | | |N0002 UCAC2| +060036 |UW Ara *|174734.5-484451 |EA | 9.48 | 10.40 | 9.53 |V |52740.812 | | 3.297015 |11 *|A0V |00001 CoD | +060037 |UX Ara |165522.5-515535 |M | 9.9 |< 12.8 | |V | | | 250. : | | |00001 2MASS| +060038 |UY Ara |172929.0-595402 |RVA | 10.5 | 11.4 | |V |52080.6 | | 57.95 | |G |00001 06286| +060039 |UZ Ara |163653.2-561823 |EA | 11.4 | 12.4 | |p |51955.840 | | 1.5999079 |11 *| |00001 00427| +060042 |VX Ara |163658.5-593414 |SRB: | 11.3 | 12.7 | |V | | | 149. | | |N0002 GSC | +060045 |WW Ara |163756.1-581135 |M | 12.2 |< 15.0 | |V |52528. | | 221.0 | | |N0002 06286| +060047 |WY Ara |163857.6-593620 |M | 12.5 |< 14.3 | |V |52889. | | | | |00001 06286| +060048 |WZ Ara |163909.5-575336 |EA | 11.55 | 12.02 | |V |26067.70 | | 14.1423 |11 *| |00429 GSC | +060052 |YY Ara |164120.4-595231 |SR | 11.8 | 13.0 | |p |52221. | | 92. | |K0-M |N0002 06286| +060053 |YZ Ara |164244.5-600657 |M | 11.5 |< 14.0 | |V |52804. | | 274. | |Me |N0002 06286| +060059 |AE Ara |174104.9-470327 |ZAND | 11.5 | 13.8 | |p | | | | |M4+pec(e) |00255 GSC | +060064 |AK Ara |172011.6-472216 |M | 11.2 |< 14.2 | |V |53136. | | 293.3 | |M5:e |00014 GSC | +060070 |AQ Ara |172833.4-465806 |M | 11.1 | 14.5 | |V |52360. | | 235.3 |30 | |N0002 2MASS| +060073 |AT Ara |173033.8-460559 |UGSS | 11.5 | 15.32 | |V | | |( 61.8 ) | |pec(UG) |04646 72085| +060075 |AV Ara |173148.4-472306 |M | 12.5 |< 14.8 | |V |52698. | | 203.7 | | |00014 2MASS| +060078 |AY Ara |173420.5-464413 |M | 11.7 | 14.4 | |V |52705. | | 358. | | |00014 GSC | +060088 |BK Ara |174149.7-472746 |M | 11.6 | 14.6 | |V |52192. | | 206.1 |45 | |00001 2MASS| +060090 |BM Ara |174648.0-462941 |M | 11.7 |< 14.1 | |V |52082. | | 231.2 | | |00001 2MASS| +060091 |BN Ara |174742.4-471850 |M | 11.3 |< 14.1 | |V |52547. | | 339.7 | |Me |00014 2MASS| +060092 |BO Ara |174821.5-472019 |M | 11.4 |< 14.0 | |V |52509. | | 196. | | |00014 GSC | +060093 |BP Ara |174836.0-473917 |M | 11.4 | 14.0 | |V |52270. | | 206.3 | | |N0002 GSC | +060094 |BQ Ara |174844.5-461441 |SRB | 11.9 | 13.8 | |p | | | 77.5 | | |N0002 GSC | +060097 |BT Ara |175442.5-455616 |M | 10.2 |< 14.4 | |V |52400. | | 370. | | |00014 2MASS| +060104 |CC Ara *|165023.1-584655 |M | 12.1 |< 15.0 | |V |52548. | | 312. | | |00001 06286| +060106 |CE Ara |165245.4-585757 |M | 10.6 |< 13.4 | |V |52950. | | 270.0 | | |N0002 06286| +060109 |CH Ara |170648.1-590322 |M | 9.7 |< 13.4 | |V |52821. | | 247.5 | |Me |00001 2MASS| +060110 |CI Ara |170800.0-555001 |M | 12.0 |< 18. | |p |52645. | | 273.6 | |Me |N0002 2MASS| +060111 |CK Ara |170903.8-614851 |SRB | 10.5 | 11.7 | |V | | | 334. | | |N0002 GSC | +060115 |CO Ara |171107.5-582248 |SRB | 12.4 | 14.3 | |V | | | 192. | |Me |N0002 06286| +060122 |CV Ara |171312.8-611139 |RRAB | 12.0 | 13.2 | |p |27277.250 | | 0.55658 | | |00251 USNO | +060123 |CW Ara |171425.4-621829 |M | 10.1 | 15.0 | |V |52352. | | 215.9 | |Me |N0002 GSC | +060125 |CY Ara *|171447.7-554518 |EA | 12.3 | 13.6 | 12.6 |V |53140.821 | | 3.01482 | | |00001 06286| +060126 |CZ Ara |171557.0-630312 |RRAB | 12.4 | 13.4 | |p |27267.330 | | 0.720175 | | |00251 GSC | +060127 |DD Ara |171610.9-614801 |M | 10.3 |< 14.2 | |V |52562. | | 297.0 | | |N0002 GSC | +060129 |DF Ara |171552.9-570125 |SRB | 11.2 | 12.0 | |V | | | 73. | | |N0002 06286| +060133 |DK Ara |171746.1-555838 |M | 11.3 |< 14.0 | |V |52634. | | 274. | |Me |N0002 06286| +060134 |DL Ara |171918.3-591331 |RRAB | 12.2 | 12.9 | |V |52195.485 | | 0.453495 |20 | |N0002 06286| +060138 |DP Ara |172119.6-585051 |SRB | 9.3 | 9.9 | |V | | | 49.7 | |M3/4(III) |N0002 CPD | +060139 |DQ Ara |172117.5-534343 |M | 11.1 |< 14.9 | |V |52977. | | 300. | |Me |N0002 06286| +060140 |DR Ara |172240.4-631309 |SRB | 10.8 | 12.7 | |V | | | 196. | |Me |00001 06286| +060142 |DT Ara |172152.6-572008 |M | 11.8 | 14.5 | |V |52598. | | 247.3 | | |N0002 06286| +060143 |DU Ara *|172312.6-635348 |CW | 11.73 | 12.46 | |V |52105.572 | | 1.6406576 |33 | |00001 06286| +060144 |DV Ara |172245.4-612628 |M | 11.9 |< 14.8 | |V |52922. | | 362. | |Me |00251 2MASS| +060145 |DW Ara |172216.5-571818 |M | 11.7 |< 14.3 | |V |52522. | | 265.7 | |Me |00251 06286| +060147 |DY Ara |172223.3-543855 |SR | 11.2 | 14.0 | |V |52416. | | 164. | | |N0002 GSC | +060148 |DZ Ara *|172311.2-585214 |M | 12.5 |< 16.5 | |p |51968. | | 161.8 | |Me |00001 06286| +060149 |EE Ara |172320.4-562220 |M | 11.0 |< 13.8 | |V |52406. | | 308. | | |00251 06286| +060154 |EK Ara *|172449.8-594116 |M | 12.3 |< 14.6 | |V |52564. | | 289. | | |N0002 06286| +060155 |EL Ara |172518.7-594353 |M | 11.4 |< 13.9 | |V |52559. | | 293. | | |00251 06286| +060156 |EM Ara |172457.0-570031 |M | 11.4 |< 14.1 | |V |52683. | | 202.2 | |Me |N0002 06286| +060160 |EQ Ara |172632.6-551719 |M | 12.3 |< 15.6 | |V |52898. | | 221.5 | |Me |00251 06286| +060162 |ES Ara |172727.6-555904 |M | 12.0 |< 15.0 | |V |53133. | | 289. | |Me |00001 06286| +060164 |EU Ara |172826.8-540347 |SRB | 11.1 | 12.0 | |V | | | 235. | | |00001 06286| +060165 |EV Ara |173004.7-632758 |M | 12.4 |< 14.7 | |V |52713. | | 260. | |Me |00001 06286| +060166 |EW Ara |172900.7-540908 |M | 11.3 |< 15.0 | |V |52766. | | 247.2 | |Me |N0002 06286| +060171 |FG Ara |173043.3-631003 |M | 10.6 |< 14.5 | |V |52908. | | 376. | | |00251 06286| +060172 |FH Ara |172936.4-535744 |M | 10.2 |< 14.5 | |V |53269. | | 434. | |Me |N0002 06286| +060173 |FI Ara |173143.6-605953 |M | 11.3 |< 14.6 | |V |53112. | | 267.5 | |Me |00251 06286| +060181 |FR Ara *|173229.3-591101 |EA | 11.8 | 12.6 | 12.0 |V |52071.672 | | 1.66864 |16 | |00001 GSC | +060184 |FU Ara *|173332.3-580950 |EB: | 10.30 | 10.85 | 10.60 |V |51940.94 | | 0.864510 | | |N0002 06286| +060185 |FV Ara |173510.1-630250 |UG | 12. |< 18. | |p | | | | | |00251 72085| +060187 |FX Ara |173419.4-570941 |SRD | 12.3 | 13.8 | |V | | | 164. | |K0 |N0002 06286| +060188 |FY Ara |173522.6-565717 |M | 11.5 |< 14.0 | |V |52324. | | 200. | | |N0002 06286| +060190 |GG Ara |173625.5-592419 |M | 10.7 |< 15.0 | |V |52829. | | 236.8 | | |N0002 06286| +060191 |GH Ara |173612.1-565615 |M | 10.5 |< 14.6 | |V |53154. | | 329. | | |N0002 06286| +060202 |GT Ara |174025.9-595733 |M | 11.1 |< 14.0 | |V |52301. | | 126.2 | | |N0002 06286| +060203 |GU Ara |174102.6-632553 |M | 11.7 |< 15.0 | |V |52440. | | 183.2 | | |00251 GSC | +060205 |GW Ara |174037.8-600223 |SRB | 11.7 | 13.2 | |V | | | 392. | | |N0002 06286| +060207 |GY Ara |174005.4-540502 |SRB | 12.0 | 13.2 | |V | | | 138. | | |N0002 06286| +060209 |HH Ara |174125.1-620420 |M | 11.4 |< 14.5 | |V |52164. | | 290. | | |00001 06286| +060213 |HM Ara |174542.1-540149 |M | 12.1 | 14.7 | |V |52189. | | 171.3 |60 | |N0002 06286| +060214 |HN Ara |174643.8-564026 |SRA | 11.9 | 12.5 | |V |52150. | | 88.4 |30 | |N0002 05286| +060217 |HQ Ara |175320.6-535058 |M | 10.4 |< 14.0 | |V |52427. | | 261.5 | |Me |00251 06286| +060218 |HR Ara |175425.4-555119 |SRB | 11.0 | 12.0 | |V | | | 121. | | |N0002 06286| +060221 |HU Ara |175622.5-551121 |M | 11.3 |< 14.0 | |V |52811. | | 242.3 | |Me |N0002 06286| +060224 |HX Ara |175844.9-551624 |RRC | 11.85 | 12.22 | |V |52699.869 | | 0.219408 |39 | |00001 06286| +060225 |HY Ara |180032.1-544150 |M | 11.2 |< 14.3 | |V |53242. | | 113.8 | | |N0002 06286| +060227 |II Ara |180237.6-560126 |M | 12.1 |< 14.5 | |V |52461. | | 223. | | |00001 06286| +060231 |IN Ara *|180740.2-543629 |RRAB | 12.32 | 13.6 | |V |52802.840 | | 0.631489 |17 | |00001 06286| +060232 |IO Ara |172035.0-535241 |M | 11.4 |< 14.0 | |V |52425. | | 273. | |Me |N0002 06286| +060235 |IR Ara |171721.6-553916 |SRB | 11.9 | 12.4 | |V | | | 70. | | |N0002 06286| +060237 |IT Ara *|172458.2-595425 |EB | 11.9 | 12.5 | 12.2 |V |52770.776 | | 0.528395 | | |N0002 06286| +060243 |IZ Ara |173529.2-580257 |SRB | 12.5 | 13.4 | |V | | | 62.2 | | |N0002 06286| +060244 |KK Ara |173708.3-631108 |LB | 11.3 | 11.8 | |V | | | | | |00251 06286| +060246 |KM Ara |174217.9-543920 |SRB | 11.9 | 12.4 | |V | | | 97. : | | |00001 06286| +060247 |KN Ara |174629.6-565620 |SRB | 11.4 | 12.0 | |V | | | 410. | | |00001 06286| +060251 |KR Ara |175613.5-522753 |SRA | 11.6 | 13.6 | |V |52907. | | 204. | | |00001 GSC | +060252 |KS Ara |180010.1-543704 |LB | 12.2 | 12.8 | |V | | | | | |00001 06286| +060253 |KT Ara |180056.7-500529 |M | 12.5 |< 16.1 | |p |53220. | | 259. | | |00001 GSC | +060254 |KU Ara *|180144.9-523456 |EA | 12.3 | 13.3 | 13.1 |V |52194.510 | | 2.314 | | |00629 GSC | +060255 |KV Ara |180207.2-543726 |SRB | 11.9 | 12.8 | |V | | | 293. | | |N0002 06286| +060257 |KX Ara |180658.1-525538 |LB | 12.5 | 13.5 | |V | | | | | |00001 06286| +060259 |KZ Ara *|180814.0-494256 |SRD | 11.9 |< 13.3 | |V |53239. | | 145.5 | |K6e |N0002 06286| +060262 |LN Ara |180455.1-530600 |M | 11.8 |< 14.6 | |V |52152. | | 122.5 | | |00001 06286| +060263 |LO Ara |163737.9-525449 |M: | 11.6 |< 13.5 | |p |27995. | | 282. | | |00016 2MASS| +060264 |LP Ara *|164001.8-463935 |EB | 10.0 | 11.0 | 10.4 |V |51965.813 | | 8.533069 | |B8 |00001 CoD | +060265 |LQ Ara |165141.5-610120 |SRA | 9.92 | 10.60 | |V |53224. | | 183.7 |50 |SC |N0002 CoD | +060266 |LR Ara *|165337.2-613511 |EA | 10.43 | 11.01 | 11.01 |V |51953.846 | | 1.51955 |17 |B2 |N0009 CPD | +060267 |LS Ara |165907.2-600527 |M | 11.0 | 17. | |p |53294. | | 394. | |S5,6e |N0002 2MASS| +060268 |LT Ara |172230.1-470403 |E | 10.8 | 15.4 | |p |24376.567 | | 12.974 | |A |00300 03520| +060269 |LU Ara *|172347.0-550344 |EA | 10.3 | 11.6 | 10.4 |V |53128.815 | | 2.38003 |13 | |00016 07336| +060271 |LW Ara *|172809.3-463814 |CW | 12.4 | 13.4 | |V |51952.6 | | 11.148218 |43 | |N0002 UCAC2| +060275 |MM Ara *|174741.1-463053 |EA | 11.25 | 11.89 | 11.85 |V |52102.592 | | 2.556502 | |A2 |00001 CoD | +060280 |MR Ara *|175641.0-454624 |CW | 10.94 | 12.30 | |V |51978.8 | | 19.822392 |48 | |N0002 03513| +060281 |MS Ara *|180304.3-524321 |RRAB | 11.52 | 12.48 | |V |52918.610 | | 0.5249875 |25 | |00001 06286| +060289 |NN Ara |172442.1-591416 |SRA | 11.9 | 12.8 | |V |53133. | | 121.2 |50 | |00001 GSC | +060315 |PQ Ara |175614.1-515044 |M | 10.9 |< 13.5 | |V |52038. | | 329. | |Me |00001 2MASS| +060328 |QT Ara |180519.8-552152 |RR | 12.5 | 14.4 | |p | | | | | |00629 GSC22| +060329 |QU Ara |180503.9-512707 |RR | 12.0 | 13.7 | |p | | | | | |00629 06286| +060332 |QX Ara *|163819.4-543339 |M | 11.3 |< 15.0 | |V |52704. | | 231. | | |N0002 2MASS| +060333 |QY Ara |164616.4-535751 |M: | 10.7 |< 12.8 | |V |51970. | | 261. : | | |00001 2MASS| +060334 |QZ Ara |165024.7-555650 |M | 11.5 |< 14.2 | |V |52751. | | 397. | |Me |00001 02386| +060336 |V0336 Ara *|172906.0-612724 |EA | 12.1 | 13.3 | 12.3 |V |51933.57 | | 3.031760 |13 | |N0002 02383| +060337 |V0337 Ara |174204.5-510120 |M | 10.4 | 14.2 : | |V |52425. | | 163.8 | |Me |N0002 02386| +060338 |V0338 Ara |174827.8-525703 |M | 10.5 |< 14.4 | |V |52533. | | 274. | |Me |N0002 02383| +060339 |V0339 Ara |174957.0-492919 |EA | 10.2 | 10.8 | |p |28698.385 | | 2.438853 |11 *| |04183 04791| +060340 |V0340 Ara *|164519.1-512033 |DCEP | 9.63 | 10.76 | |V |52351.75 | | 20.81110 |24 : | |N0011 02382| +060341 |V0341 Ara *|165741.5-631238 |NL: | 10.47 | 11.04 | |V | | | | | |00001 CPD | +060344 |V0344 Ara |163623.4-553412 |M | 12.0 | 14.6 : | |V |52753. | | 245. : | | |00001 04001| +060349 |V0349 Ara *|163922.6-605742 |EA | 8.58 | 9.08 | 8.93 |V |51946.885 | | 2.651782 |16 |A5V |N0002 CoD | +060350 |V0350 Ara |163916.2-580739 |E | 12.0 | 12.5 | |p |36748.362 :| | | | |08121 04001| +060351 |V0351 Ara |163918.7-580545 |M: | 11.7 |< 13.8 | |V |52669. | | 278. | | |N0002 04001| +060382 |V0382 Ara |164848.8-541358 |SRB: | 12.5 |< 14.2 | |V | | | 99. : | | |00001 04001| +060395 |V0395 Ara |165204.5-553729 |M | 12.4 |< 16.0 | |p |52441. | | 159. | | |N0002 04001| +060404 |V0404 Ara |165445.4-551150 |M | 11.6 | 16. | |V |53117. | | 322. | | |00001 04001| +060426 |V0426 Ara |165910.6-582217 |M | 12.3 |< 14.4 | |V |52410. | | 254.8 | | |N0002 04001| +060446 |V0446 Ara |170259.5-612630 |M | 12.2 |< 15.5 | |V |52778. | | 342. | | |N0002 04001| +060471 |V0471 Ara |170833.4-651859 |M | 10.9 |< 14.5 | |V |54623. | | 276.7 | |Me |00001 08661| +060489 |V0489 Ara *|171042.5-560344 |EB | 12.1 | 13.0 | 12.4 |V |53239.598 | | 0.640075 | | |N0002 04001| +060491 |V0491 Ara *|171104.8-562226 |EB | 12.2 | 13.4 | 12.8 |V |52732.844 | | 0.940097 | | |00001 04001| +060509 |V0509 Ara |171628.3-575113 |M | 12.4 | 16.0 | |p |52743. | | 500. : | | |00001 04001| +060523 |V0523 Ara |172409.1-670545 |M | 11.9 |< 14.3 | |V |52403. | | 201.2 |25 | |00001 04489| +060530 |V0530 Ara |172800.2-491637 |EA | 12.00 | 13.6 | |V |51934.900 | | 3.6383 |12 | |N0015 06561| +060531 |V0531 Ara *|172805.6-492955 |EA | 10.62 | 11.25 | 11.25 |V |51935.72 | | 2.975283 |11 | |N0002 06561| +060532 |V0532 Ara *|172911.7-510541 |EA | 11.4 | 12.0 | 11.5 |V |51934.10 | | 0.670973 |15 | |N0002 06561| +060534 |V0534 Ara |173918.9-665500 |M | 10.1 | 15.0 : | |V |54612. | | 227.7 | | |00001 08661| +060535 |V0535 Ara *|173805.5-564917 |EW | 7.17 | 7.75 | 7.71 |V |39292.9351 | | 0.62930098 | |A8V |N0016 06561| +060536 |V0536 Ara *|174014.4-535032 |EA | 11.7 | 13.0 | 11.8 |V |52923.570 | | 2.374084 |13 | |00001 67025| +060537 |V0537 Ara *|174800.1-544212 |EA | 8.64 | 8.94 | 8.91 |V |52861.711 | | 1.874351 | |B7IV |00001 CPD | +060538 |V0538 Ara |174918.7-532013 |CWA | 12.3 | 13.9 | |V |52177.50 | | 15.8612 |28 | |00001 06561| +060539 |V0539 Ara *|175028.4-533645 |EA+LPB | 5.71 | 6.24 | 6.16 |V |48753.440 | | 3.169094 |11 |B2V+B3V |N0017 CPD | +060561 |V0561 Ara |174855.8-522931 |M | 12.5 |< 15.0 | |V |52907. | | 300. | |Me |00001 03776| +060593 |V0593 Ara |180124.2-455902 |SRA | 11.6 | 13.6 | |V |53110. | | 156.5 |50 : | |00001 03776| +060610 |V0610 Ara |165211.3-571542 |EW | 8.86 | 9.31 | |V |52549.548 | | 0.543159 | |F0V |HIP CPD | +060612 |V0612 Ara |170705.2-550332 |SRA | 12.1 | 14.2 | |V |52842. | | 264. | | |N0002 04001| +060614 |V0614 Ara |170215.8-575358 |M | 11.9 |< 15.0 | |V |52305. | | 273.6 | |Me |N0002 05829| +060616 |V0616 Ara *|170702.6-470011 |EB | 8.15 | 8.51 | 8.47 |V |52106.586 | | 4.99525 | |B3III |N0002 CoD | +060617 |V0617 Ara *|171007.3-603953 |CWB | 11.49 | 11.97 | |V |52755.74 | | 2.52203 |30 | |00001 05834| +060618 |V0618 Ara |173920.1-644501 |M | 10.5 |< 14.0 | |V |52392. | | 135.7 | | |N0002 05834| +060619 |V0619 Ara |173939.0-502208 |M | 10.6 |< 14.0 | |V |52493. | | 218.3 | |Me |N0002 05829| +060620 |V0620 Ara |174713.2-560558 |EA | 9.9 | 11.3 | |V |52405.747 | | 3.10993 |10 |B9III |N0009 05835| +060624 |V0624 Ara *|163839.6-553938 |SRA | 11.65 | 12.2 | |V |53043. | | 294. | | |00001 04001| +060625 |V0625 Ara |163939.2-544448 |LB | 12.0 | 12.3 | |V | | | | | |00001 04001| +060626 |V0626 Ara |174203.6-503039 |LB | 6.23 | 6.46 | |V | | | | |M3III |06645 CoD | +060630 |V0630 Ara |164821.0-494152 |SRB | 12.0 | 13.6 | |V | | | 98. | |M6e |00001 05234| +060631 |V0631 Ara |170657.3-654004 |SRA | 11.4 | 12.6 | |V |53224. | | 208. | |Me |00001 04489| +060633 |V0633 Ara |171701.0-521406 |M | 11.0 |< 14.5 | |V |52907. | | 223.3 | | |00001 06561| +060635 |V0635 Ara |172219.3-530942 |M | 10.0 |< 13.0 | |V |53631. | | 470. | |Ce |N0002 GSC | +060638 |V0638 Ara |173059.2-493210 |M: | 11.5 |< 13.2 | |V |52097. | | 194. | |Me |00001 GSC | +060639 |V0639 Ara *|174104.6-533259 |M | 12.3 | 17.6 | |p |52792. | | 312.5 | |Me |00001 67025| +060640 |V0640 Ara |175007.9-491034 |M | 11.8 |< 13.6 | |V |52336. | | 223.4 | |Me |N0002 GSC | +060643 |V0643 Ara |164134.1-571324 |M: | 12.5 |< 14.1 | |V |52716. | | 249.3 : | | |00001 04001| +060650 |V0650 Ara *|164343.8-554833 |SRA | 10.5 | 12.7 | |V |52408. | | 167.4 | |S7,7 |N0002 04001| +060652 |V0652 Ara |164450.6-562055 |M | 12.3 |< 16. | |V |52652. | | 275. | | |N0002 04001| +060653 |V0653 Ara *|164504.3-545855 |EW | 12.5 | 13.2 | 13.0 |V |51933.132 | | 0.300746 | | |N0002 04001| +060662 |V0662 Ara |164640.5-573102 |RV: | 11.5 | 12.5 | |V |52879.5 | | 92.80 | | |00001 04001| +060664 |V0664 Ara |164743.5-585525 |SR | 9.9 | 11.0 | |V | | | 114. | | |N0002 04001| +060675 |V0675 Ara |163812.4-543315 |M | 11.4 |< 13.2 | |V |52795. | | 193.6 | | |00001 04001| +060677 |V0677 Ara |164146.0-572256 |SRA | 10.5 | 11.5 | |V |53123. | | 109.4 |45 | |N0002 04001| +060680 |V0680 Ara |164307.6-610542 |RRC | 11.85 | 12.21 | |V |51933.769 | | 0.303787 |40 : | |N0002 04001| +060691 |V0691 Ara |165227.2-561213 |RV | 11.3 | 11.9 | |V |53081. | | 130.6 | | |00001 04001| +060698 |V0698 Ara |165525.7-600905 |SRA | 11.9 | 14.0 | |V |52333. | | 249. | |M6-M7 |N0002 04001| +060710 |V0710 Ara *|165856.8-584939 |SR | 8.5 | 10.0 | |V | | | 94.6 | |M5/6III |00001 04001| +060712 |V0712 Ara |170000.0-605114 |SR | 12.5 | 13.3 | |V |52813. | | 123. | | |00001 04001| +060713 |V0713 Ara |170036.6-612418 |LC | 7.86 | 8.82 | |V | | | | |M2Iab/b |00001 CPD | +060722 |V0722 Ara *|170259.6-570642 |EA | 9.96 | 10.51 | 10.09 |V |52755.728 | | 0.988918 |17 | |01385 04001| +060724 |V0724 Ara |170405.0-574021 |SR | 12.0 | 13.2 | |V |52275. | | 141.4 | | |N0002 04001| +060729 |V0729 Ara *|170736.6-481909 |SR | 10.0 | 11.5 | |V |52753. | | 38.0 | | |00001 05937| +060731 |V0731 Ara |171016.3-572645 |SRB | 12.4 | 13.2 | |V | | | 58.4 | | |N0002 04001| +060732 |V0732 Ara |171333.6-575516 |SRA | 12.5 |< 14.5 | |V |52117. | | 136.5 | |M3-M4 |N0002 04001| +060733 |V0733 Ara |171352.8-590518 |SRA | 12.3 | 13.7 | |V |52441. | | 183. | | |00001 06286| +060750 |V0750 Ara |172754.8-470134 |BE | 6.62 | 6.68 | |V | | | | |B35e |75098 CoD | +060760 |V0760 Ara |174930.5-482643 |EA | 12.09 | 13.04 | |V |51948.501 | | 5.5851 |08 | |N0015 06561| +060762 |V0762 Ara |175855.6-464953 |M | 11.6 |< 14.5 | |V |52623. | | 196.4 | | |N0002 06561| +060763 |V0763 Ara |175908.2-474527 |SRB | 10.70 | 11.27 | |V | | | 87. | | |N0002 06561| +060768 |V0768 Ara |164433.9-542322 |M | 11.2 |< 14.0 | |V |52801. | | 238. | |Me |N0002 GSC | +060769 |V0769 Ara |164518.7-570831 |M | 12.3 |< 14.7 | |V |53278. | | 307. | |Me |00001 USNO | +060771 |V0771 Ara |165514.9-623722 |M | 10.8 |< 14.2 | |V |52418. | | 185. : | |Me |00001 05834| +060773 |V0773 Ara |165547.1-561751 |M | 11.8 |< 14.2 | |V |52548. | | 275. | | |00001 GSC | +060775 |V0775 Ara |165748.5-565015 |M | 12.0 |< 14.5 | |V |52540. | | 250. | | |N0002 GSC22| +060778 |V0778 Ara |170115.9-601327 |M | 10.8 |< 14.4 | |V |52070. | | 182.0 | | |N0002 USNO | +060779 |V0779 Ara |170149.2-575934 |M | 11.7 |< 14.4 | |V |53125. | | 188.1 | | |00001 USNO | +060784 |V0784 Ara |170943.1-542244 |M | 12.4 |< 14.8 | |V |52107. | | 182.0 | | |N0002 USNO | +060788 |V0788 Ara |171139.8-552402 |SRB | 12.0 | 13.0 | |V | | | 123. | |M6-M7 |N0002 04001| +060791 |V0791 Ara *|171635.9-602100 |EW | 12.5 | 13.2 | 13.1 |V |51932.94 | | 0.363643 | | |N0002 04001| +060794 |V0794 Ara |172043.3-604757 |SRA | 12.1 | 13.0 | |V |52105. | | 66.66 |35 | |N0002 04001| +060796 |V0796 Ara |172531.4-603919 |SRB | 9.4 | 10.5 | |V | | | 64.7 | | |N0002 04001| +060797 |V0797 Ara |172615.6-495328 |M | 11.1 |< 13.8 | |V |52514. | | 195.8 | | |N0002 06031| +060798 |V0798 Ara |173038.3-521309 |M | 10.4 |< 13.5 | |V |52415. | | 273. | |Me |00001 06031| +060810 |V0810 Ara |170235.6-593050 |SRB | 11.3 |< 13.0 | |V | | | 120. : | | |00001 04001| +060811 |V0811 Ara |170341.7-613016 |SRB | 11.0 | 11.5 | |V | | | 97. | | |N0002 04001| +060812 |V0812 Ara |170326.4-592936 |SRB | 11.5 | 12.7 | |V | | | 66.7 | | |N0002 04001| +060815 |V0815 Ara |170710.1-631745 |SRB | 12.1 | 12.9 | |V | | | 55.2 | | |00001 04001| +060818 |V0818 Ara |171744.4-613805 |SRA | 12.2 | 13.4 | |V |52662. :| | 364. | | |N0002 04001| +060819 |V0819 Ara |172405.5-484213 |SRB | 9.28 | 9.82 | |V | | | 71.2 | | |N0002 01697| +060822 |V0822 Ara |172623.9-661930 |M | 12.5 |< 15.0 | |V |53807. | | 360. | | |00001 08661| +060823 |V0823 Ara |164319.4-461842 |M | 10.3 |< 15.0 | |V |53367. | | 473. | | |N0002 USNO | +060824 |V0824 Ara |171725.5-665704 |RS | 6.63 | 6.97 | |V | | | 1.681652 | |G5IV+K0V-IV |N0024 CPD | +060825 |V0825 Ara *|174010.8-534734 |SRB | 12.3 | 13.5 | |V | | | 39.6 | | |N0002 67025| +060828 |V0828 Ara |170147.4-585730 |BE | 6.11 | 6.24 | |V | | | | |B2IVe |75098 CPD | +060829 |V0829 Ara *|171413.4-565319 |ELL: | 6.09 | 6.20 | |V | | | 80. | | |68034 CPD | +060830 |V0830 Ara |173356.4-453738 |BE | 8.11 | 8.21 | |V | | | | |B1V:nne |68035 CoD | +060831 |V0831 Ara |172106.1-455856 |BCEP: | 7.79 | 7.85 | |V | | | | |B2III |69037 CoD | +060832 |V0832 Ara *|180700.3-481450 |RS | 7.08 | 7.16 | |V | | | 34.6 | |G8-K0III-IIp |69011 CoD | +060833 |V0833 Ara |174007.9-453908 |M | 6.69 | 8.48 | |J | | | 524. : | | |71144 2MASS| +060834 |V0834 Ara *|174829.6-515503 |ACVO | 10.32 |( 0.01 B )| |V | | | | |Ap(Eu-Sr-Cr) |71157 CoD | +060835 |V0835 Ara *|164411.4-483918 |ACVO | 10.41 |( 0.01 )| |B | | | | |A5p(Eu-Si?) |72014 CoD | +060836 |V0836 Ara |165954.5-461902 |E | 7.47 | 7.65 | |V |53250.579 | | 7.0337 : | |B1II |00001 CoD | +060837 |V0837 Ara *|170900.9-565448 |WR | 10.9 | 12.4 | |V | | | | |[WC10] |72179 CPD | +060838 |V0838 Ara |163920.3-540435 |M | 10.8 | 17. | |V |52809. | | 256. | | |N0002 73030| +060839 |V0839 Ara *|171621.1-592924 |BE | 10.75 : | 10.95 | |V | | | | | |73032 CPD | +060840 |V0840 Ara |163708.5-522254 |LB | 6.83 | 6.91 | |Hp| | | | |M2/M3III |HIP HIP | +060841 |V0841 Ara |163831.1-572811 |BY: | 8.73 | 8.79 | |Hp| | | 4.6875 | |K0V |HIP HIP | +060842 |V0842 Ara |164119.7-551752 |SRB | 8.0 | 8.7 | |V | | | 166. | | |N0002 HIP | +060843 |V0843 Ara |164926.5-495909 |ACV | 7.78 | 7.82 | |Hp|48502.3182 | | 2.57281 | |Ap(Si) |HIP HIP | +060844 |V0844 Ara |165443.5-460524 |LB: | 8.38 | 8.49 | |Hp| | | | |K2/K3III |HIP HIP | +060845 |V0845 Ara |165455.5-480611 |LB: | 8.37 | 8.48 | |Hp| | | | |M3/M4III |HIP HIP | +060846 |V0846 Ara |165608.8-504029 |BE | 6.27 | 6.37 | |Hp| | | | |B3Vnpe |HIP HIP | +060847 |V0847 Ara |165729.9-603600 |LPB | 6.50 | 6.53 | |Hp| | | 0.94213 | |B5III |HIP HIP | +060848 |V0848 Ara |165856.8-460744 |BE: | 8.05 | 8.24 | |Hp| | | | |B2IV |HIP HIP | +060849 |V0849 Ara |170055.7-562848 |LC | 8.02 | 8.21 | |Hp| | | | |M3/M4Ib |HIP HIP | +060850 |V0850 Ara |170523.5-580436 |LB | 7.87 | 8.03 | |Hp| | | | |M3III |HIP HIP | +060851 |V0851 Ara *|170735.1-464047 |EB | 6.93 | 6.98 | 6.97 |Hp|48500.2098 | | 0.617372 | |A7III |HIP HIP | +060852 |V0852 Ara *|170929.9-471539 |EA | 7.75 | 8.10 | 7.94 |Hp|48500.410 | | 3.7400 |09 |B8V |HIP HIP | +060853 |V0853 Ara |171034.4-500315 |ACV | 8.77 | 8.82 | |Hp|48501.486 | | 1.9525 | |Ap(Si) |HIP HIP | +060854 |V0854 Ara |171138.7-485224 |LB | 5.87 | 5.99 | |Hp| | | | |M1/M2III |HIP HIP | +060855 |V0855 Ara |171214.6-532234 |LB | 7.25 | 7.35 | |Hp| | | | |M4III |HIP HIP | +060856 |V0856 Ara |171302.9-585441 |LB: | 8.34 | 8.44 | |Hp| | | | |K4III: |HIP HIP | +060857 |V0857 Ara |171814.7-602728 |BY: | 9.59 | 9.71 | |Hp| | | | |G8/K0V |HIP HIP | +060858 |V0858 Ara |171845.1-572621 |ACV | 8.21 | 8.31 | |Hp|48500.6500 | | 1.80495 | |Ap(Cr-Eu) |HIP HIP | +060859 |V0859 Ara |172733.6-531321 |LC | 7.02 | 7.14 | |Hp| | | | |M2II |HIP HIP | +060860 |V0860 Ara |172902.2-590157 |LB | 7.17 | 7.30 | |Hp| | | | |M2/M3III |HIP HIP | +060861 |V0861 Ara |173107.1-532843 |ACYG: | 8.11 | 8.18 | |Hp| | | | |B1Ib |HIP HIP | +060862 |V0862 Ara |173123.3-565516 |BE: | 5.92 | 6.04 | |Hp| | | | |B7II/III |HIP HIP | +060863 |V0863 Ara |173210.5-510427 |SRB | 7.47 | 8.15 | |Hp| | | 294. | |M4/5+A2/3V |HIP HIP | +060864 |V0864 Ara |173311.4-583327 |BE | 6.97 | 7.09 | |Hp| | | | |B7:Vnnpe |HIP HIP | +060865 |V0865 Ara |173411.7-482807 |SRS | 7.55 | 7.70 | |V | | | 27.8 | |M3/4III |00001 HIP | +060866 |V0866 Ara |173656.6-550816 |ACV: | 7.68 | 7.74 | |Hp| | | | |Ap(Si-Cr) |HIP HIP | +060867 |V0867 Ara *|174221.2-461756 |EW | 7.40 | 7.60 | 7.57 |V |52764.7376 | | 0.4937123 | |A0/A1IV |00001 HIP | +060868 |V0868 Ara |175018.9-471350 |BE | 7.57 | 7.63 | |Hp| | | 22.568 | |B6Vne |HIP HIP | +060869 |V0869 Ara |180408.9-474313 |LC | 7.64 | 7.83 | |Hp| | | | |M2Ib/II |HIP HIP | +060870 |V0870 Ara *|180822.7-564602 |EW | 9.00 | 9.40 | 9.40 |Hp|52031.780 | | 0.399773 | |F8 |00001 HIP | +060871 |V0871 Ara |163723.3-484211 |EA | 10.97 | 12.59 | |V |51922.306 | | 9.4166 |02 | |N0015 CoD | +060872 |V0872 Ara |164044.4-512842 |GDOR: | 6.37 | 6.39 | |Hp| | | 0.4266 | | |75029 CoD | +060873 |V0873 Ara |170518.9-470409 |ACYG | 7.17 | 7.23 | |Hp| | | 3.08 | | |75030 CoD | +060874 |V0874 Ara |170857.6-523923 |M | 11.0 |< 14.2 | |V |52475. | | 265. | |Me |00001 GSC | +060875 |V0875 Ara |170943.5-514052 |M | 10.4 |< 14.0 | |V |52705. | | 240. | | |N0002 GSC | +060878 |V0878 Ara *|164948.8-470746 |EW: | 8.00 | 8.22 | 8.21 |V |52102.557 | | 0.770478 | |B3II/III |78011 CoD | +060879 |V0879 Ara |171205.4-663600 |M | 12.2 |< 14.8 | |V |52560. | | 340. | | |00001 02383| +060880 |V0880 Ara |172925.1-511023 |M | 11.2 | 14.7 | |V |52406. | | 186. | |Me |78090 GSC | +060881 |V0881 Ara *|174155.0-453416 |EA | 10.14 | 10.63 | 10.57 |V |52764.755 | | 2.41887 | |F8 |78011 06561| +060882 |V0882 Ara |163956.4-610928 |EA | 7.61 | 7.80 | 7.77 : |V |48180.587 | | 20.9659 |03 |A2IV |79018 DM | +060883 |V0883 Ara *|165145.1-501747 |EA | 8.55 | 9.0 : | 8.79 |V |52192.575 | | 61.874 |02 : |ApSi |79003 DM | +060884 |V0884 Ara |170241.0-585420 |EA | 9.20 | 9.48 | 9.3 : |V |51932.820 | | 15.4908 |05 |B8II/III |79011 DM | +060886 |V0886 Ara |172156.2-512526 |SRB | 10.7 | 12.3 | |V | | | 380. | | |79100 79222| +060888 |V0888 Ara |173030.6-614625 |EW | 8.75 | 9.09 | 9.07 |V |51966.816 | | 0.899788 | |F2IV/V |79011 DM | +060889 |V0889 Ara |173942.0-523803 |EA | 11.27 | 12.07 | 12.06 |V |52563.539 | | 1.05333 |15 | |79018 DM | +060890 |V0890 Ara |174134.5-485436 |CWA | 11.9 | 12.8 | |V |53130.23 | | 10.5919 |22 | |79209 79136| +060891 |V0891 Ara |174150.2-515336 |EB | 12.4 | 13.4 | 12.7 |V |51994.792 | | 0.524694 | | |79018 GSC | +060892 |V0892 Ara |174327.5-522143 |EA | 11.41 | 12.0 | 11.85 |V |53526.855 | | 3.14535 |06 | |79009 DM | +060894 |V0894 Ara |174830.3-511336 |EA | 12.25 | 13.3 | 12.37 |V |52463.628 | | 1.65552 |14 | |79003 79118| +060895 |V0895 Ara |180601.7-473127 |RVA | 9.84 | 12.76 | |V |52057.0 | | 108.71 | | |79123 DM | +060897 |V0897 Ara |163531.0-503210 |M | 10.9 |< 14.4 | |V |54922. | | 528. | |Se |80001 2MASS| NL80_3 +060898 |V0898 Ara *|164408.9-471904 |BCEP | 10.02 | 10.17 | |V | | | 0.2020686 | |B0.5III |80445 DM | NL80_3 +060899 |V0899 Ara |164554.9-535731 |M | 11.7 |< 14.7 | |V |55070. | | 400. | | |80239 USNO | NL80_3 +060900 |V0900 Ara |164630.2-470110 |BCEP | 10.86 |( 0.06 )| |V | | | 0.2242066 | | |80445 GSC | NL80_3 +060901 |V0901 Ara |165553.6-480852 |BCEP | 9.00 | 9.06 | |V | | | 0.2649903 | |B1II |80445 DM | NL80_3 +060902 |V0902 Ara |165732.4-463747 |SR | 3.78 | 4.86 | |K | | | 527. : | |C |80166 2MASS| NL80_3 +060903 |V0903 Ara |170329.0-565757 |EW | 12.34 |( 0.06 )| |I |53504.1880 | | 0.30158 | | |80231 USNO | NL80_3 +060904 |V0904 Ara |171145.1-602614 |RR: | 12.28 |( 0.1 )| |I | | | 0.37350 | | |80231 GSC | NL80_3 +060909 |V0909 Ara *|174028.4-474415 |M | 11.7 |< 15.0 | |V |55075. | | 194. | |Me |80001 2MASS| NL80_3 +060910 |V0910 Ara |174323.3-473353 |EA | 8.68 | 8.90 | 8.74 |V |52898.614 | | 7.35765 | |Am(A0/A5/A7) |80011 DM | NL80_3 +060912 |V0912 Ara |175031.7-493154 |DSCT | 12.1 | 12.4 | |V | | | 0.0726830 | | |80242 80242| NL80_3 +060914 |V0914 Ara |175824.0-492539 |EA | 12.38 | 12.6 | |V |53909.8807 | | 1.44315 |12 | |80242 80242| NL80_3 +069001 |alf Ara |173150.5-495234 |BE | 2.79 | 3.13 | |b | | | 0.9807 | |B2Vne |71150 CoD | +069009 |iot Ara |172316.1-472806 |BE | 5.18 | 5.26 | |V | | | 0.5565 | |B2IIIne |71150 68335| +070001 |R Ari *|021607.1+250324 |M | 7.1 | 14.3 | |V |53640. | | 185.67 |47 |M3e-M6e |00001 00002| +070002 |S Ari |020437.7+123137 |M | 9.3 | 15.8 | |V |53710. | | 291.0 |44 |M4e-M5e |00001 00002| +070003 |T Ari *|024819.7+173034 |M | 7.3 | 11.5 | |V |52600. | | 340. |49 |M6e-M8e |00001 00002| +070004 |U Ari *|031103.0+144800 |M | 7.2 | 15.8 | |V |53658. | | 371.1 |41 |M4e-M7.5e |00001 00002| +070005 |V Ari |021500.1+121424 |SRC | 8.45 | 8.90 | |V | | | 58.7 | |C5II |N0002 HIP | +070007 |X Ari *|030830.9+102645 |RRAB | 8.97 | 9.95 | |V |52894.804 | | 0.6511628 |13 |A8-F4 |00001 HIP | +070008 |Y Ari |024100.2+311159 |SRB | 9.9 | 12.5 | |p | | | 109. | |M5e |00634 BD | +070009 |Z Ari |030811.8+265917 |M | 10.6 | 14.4 | |V |51495. | | 337. | |M5 |00001 00565| +070010 |RR Ari |015551.0+233438 |CST: | 5.76 | | |V | | | | |K0III |HIP HIP | +070011 |RS Ari *|024614.1+275239 |EA | 10.7 | 12.1 | 11.0 |p |52507.45 | | 8.80315 |10 *|F8IV-V+G5IV |N0041 BD | +070012 |RT Ari |030523.8+193150 |M | 10.2 |< 15.0 | |V |50807. | | 258.1 | | |N0002 06286| +070013 |RU Ari *|024445.5+121903 |M | 10.6 |< 13.6 | |V |51425. | | 353.5 |40 : |M10 |02021 01423| +070014 |RV Ari *|021507.5+180428 |DSCT | 11.61 |( 0.75 )| |V | | | 0.09312808 | |A0 |N0134 00196| +070015 |RW Ari *|021603.7+173159 |RRC | 12.12 | 12.60 | |V |51139.242 | | 0.3543006 |42 | |00001 04737| +070016 |RX Ari *|021520.8+223411 |EA | 9.40 | 10.1 | 9.5 |V |38398.5697 | | 1.029626 |18 |F2V |N0041 BD | +070017 |RY Ari *|020228.4+161611 |LB | 9.1 | 10.1 | |V | | | | |M6.5 |01280 BD | +070018 |RZ Ari |025548.5+181954 |SRB | 5.45 | 6.01 | |V | | | 56.5 | |M6III |N0135 HIP | +070019 |SS Ari *|020418.4+240002 |EW | 10.10 | 10.63 | 10.5 |V |52500.2879 | | 0.40598257 | |F8 |N0041 BD | +070020 |ST Ari |031007.9+132713 |SRB | 9.0 | 10.6 | |V | | | 96. | |M4 |00001 BD | +070023 |SW Ari |020504.2+192521 |LB | 9.8 | 11.1 | |V | | | | |M3 |01110 01110| +070024 |SX Ari |031214.3+271525 |SXARI | 5.75 | 5.81 | |V | | | 0.727902 | |B9pSi |N0136 BD | +070025 |SY Ari |021734.1+214259 |RRAB | 12.1 | 13.4 | |V |53586.853 | | 0.5666818 |15 : | |00001 02345| +070026 |SZ Ari *|032623.9+194010 |EA | 11.0 | 11.8 | |V |52500.15 | | 1.717523 |11 |F0 |N0041 02610| +070027 |TT Ari *|020653.1+151742 |NL | 10.2 | 16.5 | |V | | | | |pec(e) |N0137 72085| +070030 |TW Ari |022948.1+160249 |LB | 9.4 | 10.4 | |V | | | | |M5 |01280 BD | +070031 |TX Ari *|030551.8+283404 |EA | 11.4 | 12.6 | |p |52502.191 | | 2.691352 |11 *| |N0041 04036| +070034 |UU Ari *|023038.4+195119 |DSCTC | 6.10 | 6.15 | |V | | | 0.0676 | |A9V |N0140 HIP | +070035 |UV Ari *|024457.6+122645 |DSCTC | 5.18 | 5.22 | |V | | | 0.0355 | |A7III-IV |07985 HIP | +070036 |UW Ari |030725.7+175248 |CST: | 6.11 | | |V | | | | |B1.5V |N0141 HIP | +070037 |UX Ari *|032635.4+284254 |RS | 6.36 | 6.70 | |V | | | | |G5V+K0IV |N0142 HIP | +070038 |UY Ari |020549.1+172935 |SRB | 9.75 | 10.19 | |V | | | 34.6 | |M5 |00001 00196| +070039 |UZ Ari |030134.7+214813 |SR | 11.8 | 12.6 | |V | | | 163. : | |M8 |00001 GSC | +070040 |VV Ari |015109.5+203052 |DSCTC | 6.69 | 6.73 | |V | | | 0.0764 | |F0III |08336 HIP | +070041 |VW Ari *|022645.6+103355 |DSCT | 6.64 | 6.76 | |V | | | 0.1606 | |F0IV |N0143 HIP | +070042 |VX Ari |024415.5+253124 |UV | 11.2 : | 12.14 | |B | | | | |M3.5Ve |08341 HIP | +070043 |VY Ari *|024843.7+310655 |RS | 6.68 | 7.15 | |V | | | 16.1996 | |K3-4IV-V |77103 HIP | +070044 |VZ Ari |024845.9+251117 |ACV | 5.82 | 5.89 | |V | | | | |A0V |68036 HIP | +070047 |WY Ari |025637.6+200537 |INT | 12.25 | 12.88 | |V | | | | |K5Ve |N0145 06415| +070048 |WZ Ari |030840.7+253531 |RS | 8.17 | 8.25 | |V | | | 6.5870 | |G4V+G6V |HIP HIP | +070049 |XX Ari |031947.8+190435 |ACV | 7.33 | 7.42 | |V | | | 2.4997 | |B9VSiCr |77014 HIP | +070052 |YY Ari *|024316.5+220335 |SR | 5.12 | 5.32 | |J | | | 184. : | |M8 |73033 GSC | +070053 |YZ Ari *|025727.5+111806 |M | 5.05 | 6.55 | |J | | | 447. | |M8 |73014 2MASS| +070054 |ZZ Ari |015531.2+171122 |SRB | 8.14 | 8.47 | |V | | | 98. | |M2 |00001 HIP | +070055 |AA Ari |020337.7+225222 |RV: | 8.53 | 8.77 | |V |53586.9 | | 67.1 | |K7 |00001 HIP | +070056 |AB Ari |020558.7+220929 |LB: | 9.00 | 9.20 | |V | | | | |M0 |00001 HIP | +070057 |AC Ari |020817.0+244909 |SRB | 7.08 | 7.28 | |V | | | 32. | |M1 |00001 HIP | +070058 |AD Ari *|021745.4+182718 |EB | 7.40 | 7.47 | 7.4 |V |53330.654 | | 0.53972 | |F0 |N0002 HIP | +070059 |AE Ari |022114.5+232536 |LB | 7.4 | 7.8 | |V | | | | | |00001 HIP | +070060 |AF Ari |022206.6+225225 |EA: | 6.71 | 6.99 | |Hp|48081.59 | | | |G2IV |HIP HIP | +070061 |AG Ari *|022627.0+125356 |EA | 8.14 | 8.42 | 8.3 |V |48500.2720 | | 1.96315 | |B9 |HIP HIP | +070062 |AH Ari |023433.5+250057 |LB: | 8.26 | 8.40 | |V | | | | |K5 |00001 HIP | +070063 |AI Ari |023500.6+222758 |SRB | 10.0 | 10.6 | |V | | | 41.4 | |M5 |N0002 HIP | +070064 |AK Ari |024031.7+211116 |LB: | 7.87 | 8.02 | |V | | | | |M1 |00001 HIP | +070065 |AL Ari *|024236.3+124408 |EA | 9.23 | 9.77 | 9.4 |V |52892.849 | | 3.747457 |06 |F8 |00001 HIP | +070066 |AM Ari |024339.0+173255 |SRB | 7.18 | 7.38 | |V | | | 55. : | |M1 |00001 HIP | +070067 |AN Ari |025318.9+120017 |SRS | 9.10 | 9.42 | |V | | | 26.4 | |M2 |N0002 HIP | +070068 |AO Ari |025541.3+310235 |LB: | 6.81 | 6.93 | |Hp| | | | |M0 |HIP HIP | +070069 |AP Ari |025742.8+235745 |BY: | 9.90 | 10.06 | |Hp| | | | |K0V |HIP HIP | +070070 |AQ Ari |030617.1+113955 |SRS: | 7.14 | 7.27 | |Hp| | | 4.17 : | |M1III |HIP HIP | +070071 |AR Ari |031804.2+245238 |DSCT | 7.87 | 7.98 | |Hp| | | 0.1770392 | |F0 |HIP HIP | +070072 |AS Ari |032514.0+211251 |LB: | 7.86 | 8.02 | |Hp| | | | |M1 |HIP HIP | +070073 |AT Ari |032659.4+244925 |SRS: | 8.06 | 8.17 | |Hp| | | 7.64 : | |K5 |HIP HIP | +070074 |AU Ari |020856.7+173446 |SRS | 8.44 | 8.55 | |V | | | 6.1236 : | |M0 |HIP HIP | +070075 |AV Ari |021037.6+193001 |SRS | 5.67 | 5.74 | |V | | | 5.0320 : | |M3III |HIP HIP | +070077 |AX Ari |015814.0+223412 |SRB | 12.3 | 13.4 | |V | | | 248. | | |N0002 GSC | +070078 |AY Ari |024200.8+305609 |SRD: | 6.82 |( 0.02 )| |V | | | | |K0IV |77023 HIP | +070079 |AZ Ari |021123.1+212239 |BY | 7.33 |( 0.02 )| |V | | | 8.98 : | |G5V |78018 HIP | +070081 |BC Ari |024809.1+270407 |BY | 7.56 |( 0.02 )| |V | | | | |K1V |78018 HIP | +070082 |BD Ari |024812.4+161628 |SRB | 11.1 | 12.2 | |V | | | 192. | |M7 |79100 GSC | +070083 |BE Ari |014710.2+234532 |RS: | 9.90 | 10.15 | |V | | | 21.203 | |K0 |80060 80060| NL80_1 +070086 |BH Ari |015548.0+242606 |RS | 10.6 | 10.8 | |V | | | 3.2541 | | |80021 DM | NL80_1 +070088 |BK Ari |015935.6+234853 |RS | 12.12 | 12.36 | |* | | | 5.5569 | | |80021 GSC | NL80_1 +070090 |BM Ari *|020638.3+141528 |EW | 10.8 | 11.4 | 11.35 |V |53739.608 | | 0.484967 | | |80002 DM | NL80_1 +070091 |BN Ari *|020907.8+262907 |EW | 10.38 | 11.02 | 10.98 |V |51525.671 | | 0.299376 | | |80042 GSC | NL80_1 +070092 |BO Ari *|021208.8+270818 |EW | 9.77 | 10.19 | 10.19 |V |52898.8115 | | 0.318197 | | |80002 GSC | NL80_1 +070093 |BP Ari |022032.4+200729 |RS | 9.26 | 9.50 | |V | | | 9.18 | |G5 |80034 DM | NL80_1 +070094 |BQ Ari *|024840.7+134448 |EW | 10.28 | 10.55 | 10.54 |V |51382.902 | | 0.282336 | | |80042 DM | NL80_1 +070095 |BR Ari |025351.6+152107 |RS | 10.36 | 10.48 | |V | | | 1.009 | |G0V |80039 GSC | NL80_1 +070096 |BS Ari *|025525.8+200452 |IT | 10.69 |( 0.11 )| |Ic| | | 3.36 | |K4V |80127 GSC | NL80_1 +070097 |BT Ari |025557.8+200545 |BY: | 11.6 |( 0.06 )| |Ic| | | 4.249 | |K0V |80128 GSC | NL80_1 +070099 |BV Ari *|025608.4+200339 |INT | 12.17 |( 0.12 )| |Ic| | | 6.6 | |M4 |80127 GSC | NL80_1 +070100 |BW Ari |025746.7+293941 |BY | 8.90 |( 0.03 )| |V | | | 9.57 | |G5 |80129 HIP | NL80_1 +070101 |BX Ari *|025811.2+203003 |INT | 10.54 |( 0.56 )| |Ic| | | 0.505 : | |K4V |80128 GSC | NL80_1 +070103 |BZ Ari |025828.8+294754 |IT: | 11.26 | 11.43 | |* | | | 0.6741 | |K0IV |80021 GSC | NL80_1 +070104 |CC Ari |030239.9+303218 |BY | 12.4 | 12.6 | |* | | | 3.20744 | | |80060 80060| NL80_1 +070105 |CD Ari |030315.5+271642 |RRC | 11.3 | 11.9 | |V |52939.728 | | 0.328282 |38 | |80002 GSC | NL80_1 +070106 |CE Ari |030349.9+250234 |RS | 11.50 | 11.62 | |* | | | 2.6754 | | |80021 GSC | NL80_1 +070107 |CF Ari |030405.1+300310 |RS: | 11.05 | 11.17 | |* | | | 1.8070 | |K0V |80021 GSC | NL80_1 +070108 |CG Ari |031531.9+260450 |RS | 11.94 | 12.18 | |* | | | 9.3197 | | |80021 GSC | NL80_1 +070109 |CH Ari |032231.6+285320 |RS | 10.80 | 10.93 | |* | | | 1.6648 | | |80021 GSC | NL80_1 +070110 |CI Ari |032305.5+183445 |RRAB | 12.2 | 13.6 | |V |52892.862 | | 0.455289 |15 | |80002 GSC | NL80_1 +070111 |CK Ari |032714.4+272309 |RS | 11.04 | 11.17 | |* | | | 10.0933 | |M0.5V |80021 HIP | NL80_1 +070112 |CL Ari *|032906.6+272449 |EB | 9.75 | 10.31 | 10.00 |V |51475.670 | | 0.993618 | |F2 |80048 DM | NL80_1 +079003 |gam Ari *|015331.8+191738 |ACV | 4.62 |( 0.04 )| |V | | | 2.6095 | |A1pSrCrEu |08141 HIP | +0790191|tau 1 Ari *|032113.6+210850 |EB: | 5.26 | 5.32 | |Hp|48500.579 | | 2.20356 | |B5IV |HIP HIP | +080001 |R Aur *|051717.7+533510 |M | 6.7 | 14.0 | |V |54040. | | 450. |51 |M6.5e-M9.5e |00001 HIP | +080002 |S Aur |052707.4+340859 |SR | 8.2 | 14.7 | |V | | | 596. | |C4-5,4-5(N3) |N0039 00002| +080004 |U Aur *|054209.1+320223 |M | 7.4 | 15.5 | |V |54563. | | 400. |40 |M7e-M9e |00001 00002| +080005 |V Aur |062402.3+474224 |M | 8.5 | 13.0 | |V |54699. | | 349. |54 |C6,2e(N3e) |00001 HIP | +080006 |W Aur |052654.6+365411 |M | 8.0 | 15.3 | |V |54345. | | 271.3 |40 |M3e-M8e |00001 00002| +080007 |X Aur |061213.4+501340 |M | 7.8 | 13.8 | |V |54858. | | 165.5 |50 |M3e-M7e |00001 HIP | +080008 |Y Aur |052839.2+422616 |DCEP | 9.16 | 10.02 | |V |48164.755 | | 3.8594076 |33 |F5-F9 |00001 HIP | +080009 |Z Aur *|060145.5+531820 |SR | 9.2 | 12.0 | |V |54830. | | 111.5 |47 |M3 |00001 00002| +080010 |RR Aur |061208.2+430952 |M | 9.0 | 15.6 | |V |54816. | | 309.8 |47 |M3e-M7e |00001 00002| +080011 |RS Aur *|060353.7+461735 |SR | 8.7 | 11.7 | |V | | | 173. |47 |M4e-M6e |N0039 HIP | +080012 |RT Aur *|062834.1+302935 |DCEP | 5.00 | 5.82 | |V |54153.880 | | 3.728485 |25 |F4Ib-G1Ib |00001 HIP | +080013 |RU Aur *|054007.9+373811 |M | 8.0 | 16.0 | |V |54782. | | 463.0 |42 |M7e-M9e |00001 HIP | +080014 |RV Aur |063444.6+423013 |SRB | 11.8 | 13.1 | |p | | | 229. | |C4,5 |00373 HIP | +080015 |RW Aur *|050749.6+302405 |IT | 9.2 | 12.5 | |V | | | | |G5Vep |01923 HIP | +080016 |RX Aur *|050123.2+395737 |DCEP | 7.28 | 8.02 | |V |48503.159 | | 11.626 |49 |F6-G2 |HIP HIP | +080017 |RY Aur *|051825.1+382019 |EA | 11.7 | 14.0 | |p |53426.412 | | 2.725396 |14 *|B9 |00001 GSC | +080018 |RZ Aur *|054922.4+314209 |EA | 11.9 | 14.0 | |V |52502.951 | | 3.010585 |12 *|A |N0041 01924| +080019 |SS Aur *|061322.5+474426 |UGSS | 10.2 | 16.13 | |V | | |( 55.7 ) | |pec(UG) |N0150 72085| +080020 |ST Aur *|061459.0+464748 |M | 9.6 | 17.9 | |V |54387. | | 295.6 | | |00001 00002| +080021 |SU Aur *|045559.4+303402 |INT | 8.9 | 10.0 | |V | | | | |G2III(Li) |N0151 HIP | +080022 |SV Aur |060340.2+462608 |LB | 9.4 | 10.3 | |V | | | | |M1 |01078 BD | +080024 |SX Aur *|051142.9+420955 |EB | 8.38 | 9.14 | 8.87 |V |52500.3179 | | 1.2100855 | |B3V+B5V |N0041 HIP | +080025 |SY Aur *|051239.2+424954 |DCEP | 8.74 | 9.40 | |V |48164.95 | | 10.14465 |50 |F5-F8 |00001 HIP | +080026 |SZ Aur *|054156.6+385556 |M | 8.2 | 15.3 | |V |54551. | | 455.6 |46 |M8e |00001 GSC | +080027 |TT Aur *|050942.3+393511 |EA | 8.40 | 9.51 | 8.97 |V |48599.2964 | | 1.332735 |21 *|B2Vn |N0152 GSC | +080028 |TU Aur |063537.1+453723 |SRB | 7.60 | 8.30 | |Hp| | | 156. | |M5III |00001 HIP | +080029 |TV Aur |045808.2+483337 |SRB | 10.1 | 11.1 | |V | | | 182.9 | |S5,8:-S7,5 |01078 BD | +080030 |TW Aur *|055706.7+453034 |SRB | 7.4 | 9.5 | |V | | | 104. | |M5III |00361 BD | +080031 |TX Aur |050905.5+390009 |LB | 8.5 | 9.2 | |V | | | | |C5,4(N3) | HIP | +080032 |TY Aur |045856.1+481925 |CST | 10.64 | | |V | | | | |F8 | BD | +080033 |TZ Aur *|071135.0+404637 |RRAB | 11.08 | 12.45 | |V |53751.356 | | 0.39167475 |14 |A9-F7 |00001 HIP | +080034 |UU Aur *|063632.8+382644 |SRB | 4.9 | 7.0 | |V | | | 441. | |C5,3-C7,4(N3) |N0039 HIP | +080035 |UV Aur *|052148.9+323040 |M | 7.4 | 10.7 | |V |54821. | | 392.8 | |C6,2-C8,2Jep(Ne) |00001 HIP | +080036 |UW Aur *|065717.4+410704 |SRA | 9.5 | 11.6 | |V |42800. | | 560.7 |55 |C4,5J(R6p/N3) |04972 HIP | +080037 |UX Aur |051557.9+493247 |SRC | 8.4 | 9.2 | |V | | | 90. : | |M4II |01078 HIP | +080038 |UY Aur *|045147.4+304714 |INT | 11.2 | 13.53 | |V | | | | |K7Ve(Li) | GSC | +080039 |UZ Aur |051510.0+400757 |SRB | 9.7 | 10.8 | |p | | | 69. : | |M3-M4III |00589 HIP | +080040 |VV Aur |061342.2+453111 |M | 12.2 |< 15. | |p |51508. | | 424.70 | |M8e |00001 GSC | +080041 |VW Aur *|061714.4+331223 |SRB | 10.0 | 11.6 | |p | | | 215. | |M6 |01505 BD | +080042 |VX Aur |072830.5+405813 |M | 8.0 | 13.1 | |V |54467. | | 325.8 | |M5e |00001 HIP | +080043 |VY Aur |060952.1+463428 |M | 9.3 | 15.3 | |V |54853. | | 405.8 | |M8e |00001 00002| +080044 |VZ Aur |061427.1+464921 |CST: | 10.99 | | |V | | | | |A9 |N0153 BD | +080045 |WW Aur *|063227.2+322718 |EA | 5.86 | 6.54 | 6.43 |V |52501.8139 | | 2.52501936 |10 *|A4m+A5m |N0041 HIP | +080048 |WZ Aur |054542.9+433726 |M | 11.4 |< 16. | |V |51450. | | 283.8 | | |00001 01921| +080050 |XY Aur |055545.6+410624 |M | 11.7 |< 15. | |p |34350. | | 283.1 | | |00001 01925| +080051 |XZ Aur |060429.5+471712 |SR | 11.3 | 12.5 | |V | | | 215. : | |C4-5,4-5(N) |00001 00002| +080052 |YY Aur |060406.2+420031 |M | 10.0 |< 14.4 | |V |53270. | | 337.9 : | |M5e |00001 01921| +080053 |YZ Aur *|051522.0+400441 |DCEP | 9.94 | 10.93 | |V |43816.417 | | 18.192830 |30 |F5-G2 |N0154 HIP | +080054 |ZZ Aur *|054542.1+410859 |EB | 10.75 | 11.69 | 11.04 |V |52500.2769 | | 0.6012172 | |A7 |N0041 BD | +080055 |AA Aur |064112.9+440959 |M | 8.8 | 16.0 | |V |54420. | | 267.9 | |M3e |00001 08156| +080056 |AB Aur *|045545.8+303304 |INA | 6.3 | 8.4 | |V | | | | |A0Ve+sh | HIP | +080057 |AC Aur |052704.3+500728 |M | 8.5 | 15.0 | |V |54721. | | 312.4 | |M5e |00001 GSC | +080058 |AD Aur |052900.0+390254 |SRB | 11.0 | 13.1 | |p | | | 162.3 | |M6 |00608 HIP | +080059 |AE Aur *|051618.1+341844 |INA | 5.78 | 6.08 | |V | | | | |O9.5V | HIP | +080060 |AF Aur |054844.4+445437 |SR: | 11.3 | 14.5 : | |p | | | | |C4,4(N) | 04986| +080061 |AG Aur |062735.3+470152 |SRD | 8.8 | 11.8 | |V |54828. | | 99. |48 |G2e-K0(M3) |00001 GSC | +080062 |AH Aur *|062604.9+275956 |EW | 10.18 |( 0.50 )|( 0.50 )|V |52500.3848 | | 0.4941067 | |F7V |N0041 HIP | +080063 |AI Aur |063349.6+301518 |SR | 9.06 | 9.79 | |V | | | 65. | |M5III |N0155 BD | +080064 |AK Aur |063918.0+313644 |EA | 10.55 |( 0.5 )| |B |51577.66 | | 4.76 |12 |A1 |00001 GSC | +080065 |AL Aur |063317.4+313530 |M | 9.0 | 16.6 | |V |53824. | | 388.0 | |M7e |00001 02014| +080066 |AM Aur *|045637.0+321211 |EA | 10.08 | 11.22 | 10.15 |V |52983.529 | | 13.61855 |14 *|A8 |00001 BD | +080067 |AN Aur |045941.5+405010 |DCEP | 10.11 | 10.83 | |V |51536.715 | | 10.289381 |52 |F6-F9 |00001 HIP | +080068 |AO Aur *|054745.0+320053 |DCEP | 10.38 | 11.30 | |V |51437.91 | | 6.76216 |27 |F5-G0 |00001 08632| +080069 |AP Aur *|072350.3+362653 |EB | 11.0 |( 0.54 )|( 0.51 )|V |50461.0921 | | 0.56937243 | |A2 |N0156 00002| +080070 |AQ Aur *|050630.3+352316 |M | 10.3 | 15.5 | |V |54791. | | 343.0 | |M7 |00001 N0157| +080071 |AR Aur *|051818.9+334603 |EA | 6.15 | 6.82 | 6.70 |V |52501.392 | | 4.134651 |07 *|B9p+B9(Hg-Mn) |N0041 HIP | +080072 |AS Aur |060524.4+284723 |DCEP | 11.52 | 12.25 | |V |47648.646 | | 3.175001 |22 |F6-F9 |N0154 N0159| +080074 |AU Aur |045415.0+495400 |M | 10.0 | 14.0 | |V |54521. | | 400.5 |50 |C6-7,3e(N0e) |00001 HIP | +080075 |AV Aur |053713.6+390439 |CST: | 9.64 | | |V | | | | |M0 |N0153 GSC | +080076 |AW Aur *|054000.7+284249 |M | 10.1 | 17.1 | |V |53823. | | 443.2 | |M5-M9 |00001 00002| +080077 |AX Aur |054650.8+313553 |DCEP | 12.15 | 12.68 | |V |48569.54 | | 3.04664 |30 | |N0160 N0160| +080078 |AY Aur |055603.6+320918 |M | 9.8 | 16. | |V |54196. | | 384.3 | |M6.5 |00001 00002| +080079 |AZ Aur *|060107.3+394015 |M | 8.2 | 14.0 | |V |54467. | | 411.9 | |C7,1e-C8,2-3(N0e)|00001 00002| +080080 |BB Aur |060325.0+313841 |SRB | 11.0 | 12.4 | |p | | | 704. | |M3-M4S |00608 00608| +080081 |BC Aur *|054616.6+325050 |EA | 11.6 | 13.2 | 11.7 |p |54803.768 | | 5.759759 |10 | |00001 GSC | +080084 |BF Aur *|050503.5+411719 |EB | 8.70 | 9.48 | 9.48 |V |52500.950 | | 1.5832232 | |B5V+B5V |N0041 HIP | +080086 |BH Aur |051204.3+335747 |RRAB | 11.12 | 12.20 | |V |53755.264 | | 0.4560898 |17 | |N0161 HIP | +080088 |BK Aur |051040.2+494115 |DCEP | 9.12 | 9.90 | |V |42825.384 | | 8.002432 |31 |G2 |08632 HIP | +080092 |BO Aur |060010.6+291407 |SRB | 11.8 | 13.1 | |p | | | 1000. : | |M6 |00608 02310| +080096 |BS Aur |060417.0+282902 |M | 10.2 |< 15.0 | |V |41255. | | 466.7 | |M8-M9 |N0162 02310| +080098 |BU Aur |060957.7+312427 |SRA | 11.3 | 11.8 | |p |26655. | | 169. | |M1 |00609 02321| +080100 |BW Aur |062659.1+454736 |M | 11.2 |< 14.0 | |V |51494. | | 360. | |M6 |00001 06286| +080101 |BX Aur |063432.5+424042 |LB: | 11.6 | 12.5 | |p | | | | | |01059 01059| +080106 |CE Aur |065521.1+461710 |M | 11.8 |< 17.5 | |p |50141. :| | 332. | |M7 |01941 06286| +080108 |CG Aur *|050342.6+291132 |EA | 11.73 | 12.26 | 12.05 |R |52501.699 | | 1.8048556 |10 |A7 |N0041 GSC | +080110 |CI Aur *|050922.9+292716 |EA | 12.40 | 13.60 | 12.45 |V |52501.042 | | 1.870031 |10 *| |N0041 06445| +080111 |CK Aur |050949.3+365744 |EA | 12.0 | 13.0 | |p |28834.28 | | | |A0 |00608 00608| +080112 |CL Aur *|051254.2+333028 |EA | 11.7 | 13.01 |( 0.32 )|V |50097.2712 | | 1.24437505 |18 *|A0 |N0163 GSC | +080114 |CN Aur |054507.8+511143 |SRB | 11.5 | 12.6 | |p | | | 85.6 | |M6 |01078 GSC | +080115 |CO Aur *|060028.5+351844 |CEP(B) | 7.43 | 7.97 | |V | | | 1.783027 | |F5Ib |N0164 GSC | +080117 |CQ Aur *|060353.6+311941 |EA/RS | 9.04 | 9.37 | 9.14 : |V |43814.05 | | 10.62251 |14 |G8IV+F5V |N0165 HIP | +080124 |CX Aur |065622.1+465927 |LB: | 11.7 | 12.3 | |p | | | | |K8V |01941 HIP | +080125 |CY Aur |045740.1+460533 |DCEP | 11.42 | 12.32 | |V |43536.86 | | 13.84765 |37 | |00001 GSC | +080126 |CZ Aur |072848.9+355527 |LB | 10.5 | 11.5 | |p | | | | |M4 |00922 00922| +080135 |DM Aur |050756.9+374858 |M | 10.0 |< 13.5 | |V |54870. | | 337.7 | |M7 |00001 GSC | +080143 |DU Aur |051114.5+311950 |M | 11.0 | 14.2 | |V |32953. | | 275.2 | |M6 |00608 02320| +080147 |DY Aur |051819.0+351500 |M | 12.4 | 15.6 | |V |51450. | | 474. |50 |C(R) |00001 00533| +080151 |EG Aur |052651.5+320310 |SRB | 12.4 | 13.7 | |p | | | 149.5 : | |M6.5 |00001 07789| +080155 |EL Aur |050323.0+503758 |LB | 8.9 | 9.6 | |V | | | | |C5,4(N3) |01078 HIP | +080156 |EM Aur *|051324.4+370559 |EB | 11.05 | 11.60 | 11.50 |R |54499.4277 | | 1.821972 | |A3 |00001 BD | +080157 |EN Aur |051508.8+334432 |LB | 12.4 | 14.3 | |p | | | | |M6 |07091 GSC | +080158 |EO Aur *|051821.1+363755 |EA | 7.56 | 8.13 | 7.89 |V |52500.255 | | 4.0656497 |12 *|B3V+B3V |N0041 HIP | +080159 |EP Aur *|061132.1+312853 |EB | 11.16 |( 0.66 )|( 0.22 )|V |52500.500 | | 0.5910094 | |F8 |N0041 02321| +080161 |ER Aur *|051310.0+415926 |DCEP | 11.17 | 11.80 | |V |47407.47 | | 15.6973 |40 | |00001 GSC | +080162 |ES Aur |061747.7+340208 |LB | 10.6 | 11.0 | |p | | | | |M6 |00346 GSC | +080163 |ET Aur |070703.3+370147 |M | 9.6 | 16.0 | |V |54510. | | 205.3 | |M2e |00001 00922| +080165 |EV Aur |045124.4+424700 |SR | 11.97 | 12.39 | |V | | | 55. | | |73062 02341| +080168 |EY Aur |045315.6+414857 |LB | 11.6 | 13.7 | |V | | | | |M6 | 02342| +080169 |EZ Aur |045313.0+404343 |SRB | 11.1 | 11.6 | |V | | | 140. | |M6.5 |07341 02342| +080171 |FG Aur *|045546.0+372106 |EA | 11.65 | 12.55 | 12.1 |R |51386.985 | | 13.6456 |13 *|F7III |00001 02356| +080172 |FH Aur |045616.2+400432 |LB | 12.5 | 14.6 | |p | | | | |M6.5 |01091 02342| +080173 |FI Aur |050224.7+420942 |LB | 12.4 | 13.4 | |p | | | | |M6.5 |01091 02342| +080177 |FN Aur *|053946.0+323405 |EA | 11.9 | 13.1 | 12.2 |R |52504.55 | | 8.34312 |08 | |N0041 02357| +080179 |FP Aur *|054338.8+305332 |EA | 11.7 | 12.0 | |p |52500.2744 | | 0.9472340 |21 |A5 |N0041 02357| +080184 |FU Aur |054808.2+303752 |LB | 10.6 | 12.5 | |p | | | | |C7,2(N0) | HIP | +080186 |FW Aur *|055210.3+301244 |EA | 12.3 | 14.3 | 12.5 |R |53762.4667 | | 2.559973 |16 | |00001 00608| +080192 |GI Aur *|061136.4+292642 |EA: | 11.45 | 11.90 | 11.50 : |R |54412.818 | | 1.2078591 | |F0 |00001 02358| +080196 |GN Aur |055439.3+403327 |M | 10.5 | 13.2 | |R |51438. | | 240. | | |00001 00158| +080197 |GO Aur |062602.0+502929 |M | 9.2 | 15.9 | |V |54399. | | 292.45 |50 | |00001 02378| +080199 |GQ Aur |062642.9+471424 |M | 10.0 | 17.0 | |V |54914. | | 307.8 |50 |M3 |00001 02378| +080200 |GR Aur |064342.6+380153 |M | 12.3 |< 13.5 | |p |51615. | | 400. : | | |04099 02378| +080201 |GS Aur |051906.8+302815 |LB | 11.8 | 14.0 | |p | | | | | |03213 00608| +080202 |GT Aur |053626.8+443529 |DCEP | 11.70 | 12.60 | |V |47848.76 | | 4.404750 |20 | |N0159 00542| +080203 |GU Aur |054036.1+465337 |SRA | 10.94 | 12.8 | |R |51464. | | 199. | | |00001 00542| +080204 |GV Aur |054414.0+373513 |DCEP | 11.57 | 12.51 | |V |48515.46 | | 5.25998 |23 | |00001 00491| +080206 |GX Aur *|062456.4+383956 |EB | 11.50 | 12.2 | 12.2 |V |52500.885 | | 1.143288 | |A |N0041 01059| +080209 |HH Aur |053929.8+295001 |CST: | 8.54 | | |V | | | | |G6IV |09984 HIP | +080210 |HI Aur |054700.2+285129 |CST: | 10.8 | | |V | | | | |C |00001 00620| +080212 |HL Aur *|061913.0+494207 |EB | 10.80 | 11.69 | 11.25 |V |52500.5886 | | 0.6225051 | |F4 |N0041 N0168| +080213 |HM Aur |072906.8+404058 |LB | 11.3 | 12.4 | |p | | | | |M7III |00833 76005| +080214 |HN Aur *|045115.5+434048 |SRB | 11.2 | 11.7 | |V | | | 165. : | |C(N5) |08734 GSC | +080216 |HP Aur *|051021.8+354747 |EA | 11.16 | 11.79 | 11.55 |V |46353.2360 | | 1.4228191 |08 *|G0 |N0169 02615| +080218 |HR Aur |063111.0+305616 |E:/RS: | 10.92 | 12.09 | |V |46759.855 | | 1.627777 | |K0:e |N0170 02378| +080219 |HS Aur *|065118.5+474024 |EA | 10.16 | 10.90 | 10.70 |V |46105.6419 | | 9.815377 |03 *|G8V+G8V |N0171 HIP | +080220 |HT Aur |071648.2+393901 |M | 8.9 | 15.9 | |V |54449. | | 300.85 | |M |00001 06286| +080221 |HU Aur *|043904.4+343924 |EA | 11.1 | 11.8 | 11.8 |V |52500.6805 | | 1.4080071 |15 *| |N0041 00819| +080226 |HZ Aur |050608.4+335507 |ACV | 7.02 | 7.13 | |V | | | 6.43000 | |B9pSiCr |N0173 HIP | +080229 |IL Aur |051409.1+371445 |EA: | 12.0 | 12.6 | |V | | | | | |04341 04341| +080230 |IM Aur *|051529.7+462421 |EA | 7.96 | 8.55 | 8.21 |V |52500.7300 | | 1.2472863 |20 *|B6V |N0041 BD | +080234 |IQ Aur |051900.0+334454 |ACV | 5.35 | 5.43 | |V | | | 2.4660 |22 |B9VpSi |03357 HIP | +080236 |IS Aur *|052721.8+430543 |SR | 12.2 | 15.1 | |p |26260. | | 76.5 | |M2 |04070 GSC | +080238 |IU Aur *|052752.4+344658 |EB | 8.19 | 8.89 | 8.74 |V |38448.4068 | | 1.81147435 | |B0p+B1Vp |N0175 HIP | +080241 |IX Aur |053608.3+380200 |LB | 11.2 | 12.5 | |p | | | | |M7 |04077 02378| +080242 |IY Aur *|054827.2+430458 |EB | 9.27 | 9.86 | 9.49 |V |52502.097 | | 2.793380 | |B5:p |N0041 04364| +080244 |KK Aur |060146.8+410636 |M | 11.5 |< 15. | |p |27394. | | 297.4 | | |04092 04092| +080248 |KO Aur *|060615.2+482213 |EA | 9.90 | 10.52 | 10.45 |V |54802.868 | | 3.9537957 |05 *| |00001 04364| +080249 |KP Aur |060600.3+362038 |M | 12.4 |< 15.0 | |p |51600. | | 265. | |M8 |00001 04093| +080250 |KQ Aur |061517.6+501203 |LB | 10.9 | 11.4 | |p | | | | |M |04022 BD | +080251 |KR Aur *|061543.9+283509 |NL | 11.3 |< 17.6 | |B | | | | |pec(e) |04815 72085| +080252 |KS Aur |062543.9+362620 |LB | 10.8 | 12.6 | |p | | | | |M6 |04098 02378| +080253 |KT Aur |062743.7+534147 |SRA | 11.1 | 12.6 | |p |36670. | | 131. | |M5 |04099 04099| +080254 |KU Aur *|062804.4+302334 |EA | 11.7 | 12.8 | 11.8 |V |52500.0847 | | 1.3195742 |10 |F5 |N0041 04336| +080255 |KV Aur |063658.3+275724 |SRB | 12.3 | 14.4 : | |p | | | 750. | |C |04102 04102| +080256 |KW Aur *|051524.4+324115 |DSCTC+ELL | 4.95 | 5.08 | |V | | | 0.088088 | |A9IV |04822 HIP | +080263 |LO Aur |055723.9+482242 |M | 11.7 | 17.5 | |V |54139. | | 505. |42 |M9 |00001 03905| +080273 |LY Aur *|052942.6+352230 |EB | 6.66 | 7.35 | 7.23 |V |52501.836 | | 4.002494 | |O9.5+O9.5III |N0041 HIP | +080276 |MN Aur *|054057.6+460816 |EA/RS: | 10.80 | 11.82 | 11.16 |R |51502.482 | | 5.580910 |09 | |N0041 05514| +080277 |MO Aur |054520.6+315432 |EA | 12.4 | 13.4 | |R |52501.5400 | | 5.266706 |09 *| |N0041 05515| +080285 |MW Aur |060229.1+292010 |E: | 12.4 | 13.0 | |p |36904.646 | | | | |05516 05516| +080288 |MZ Aur |052033.0+363756 |BE | 8.14 | 8.30 | |Hp| | | | |B2Vnpea |HIP HIP | +080289 |NN Aur |053513.8+314840 |EA | 11.97 | 12.50 | |R |54085.528 | | 2.1760786 | | |00001 05527| +080290 |NO Aur |054042.0+315514 |LC | 6.06 | 6.44 | |V | | | | |M2SIab |09344 HIP | +080292 |NQ Aur *|045319.9+435039 |SRB: | 10.9 | 11.6 | |R | | | 450. : | |C(N) |06566 GSC | +080293 |NR Aur |045326.9+404149 |SRB: | 11.8 | 12.5 | |V | | | 200. : | |C(N) |06566 GSC | +080297 |NV Aur *|051119.4+525234 |M | 3.6 | 6.2 | |H |41021. | | 635. | |M10 |07343 2MASS| +080300 |NY Aur |065920.1+421853 |ACV | 6.56 | 6.73 | |V | | | 5.4379 | |A0pEuSrCr |07039 HIP | +080307 |OT Aur |053109.6+343952 |LB | 11.6 | 12.9 | |V | | | | |C |07036 GSC | +080308 |OU Aur |053107.2+315417 |LB | 12.4 | 13.2 | |V | | | | |C(N) |07036 GSC | +080309 |OV Aur |053240.7+325621 |LB | 11.2 | 11.8 | |V | | | | |C(R) |07036 GSC | +080310 |OW Aur |053501.5+335100 |LB | 12.3 | 13.6 | |V | | | | |C |07036 GSC | +080311 |OX Aur *|065301.4+385209 |DSCT | 5.94 | 6.14 | |V | | | 0.154412 | |F2IV |05453 HIP | +080312 |OY Aur |045942.3+424630 |SR: | 11.5 | 12.0 | |V | | | 250. : | |C(N) |06566 GSC | +080316 |PR Aur |050735.8+290016 |SRB | 10.4 | 10.7 | |R | | | 57.4 | |M6 |00001 GSC | +080319 |PU Aur |051815.7+424732 |LB: | 5.55 | 5.78 | |V | | | | |M4III |N0191 HIP | +080325 |QQ Aur |055722.1+394224 |LB | 11.6 | 13.3 | |V | | | | |C(N) |07793 GSC | +080326 |QR Aur |061343.1+414150 |ACV | 7.19 | 7.21 | |Hp| | | 16.990 | |A0pEuSrCr |HIP HIP | +080331 |QW Aur |063357.8+281719 |SRA | 11.9 | 13.1 | |V |43490. | | 188. | |M8 |67269 67269| +080332 |QX Aur |065709.0+473523 |SR | 11.3 | 14.0 | |p | | | 200. : | |M8e |00001 06286| +080333 |QY Aur *|071001.8+383146 |UV | 10.9 | 13.19 | |B | | | | |M5Ve+M5Ve |06948 HIP | +080335 |V0335 Aur |054229.3+373847 |DCEP | 11.90 | 12.90 | |V |48580.59 | | 3.41270 |20 | |N0160 N0160| +080337 |V0337 Aur |045924.9+315358 |M | 11.8 | 14.8 | |V |41375. | | 420. | |C(N) |N0194 GSC | +080340 |V0340 Aur |053959.4+332642 |SR | 12.3 | 13.0 | |V | | | 350. : | |C |08144 GSC | +080345 |V0345 Aur |060451.4+340745 |LB | 12.4 | 13.4 | |p | | | | |M6 |07793 GSC | +080346 |V0346 Aur |045234.9+383020 |LB: | 8.43 | 8.72 | |Hp| | | 365. : | |SC5/9 |HIP HIP | +080348 |V0348 Aur *|051910.2+354732 |LB | 12.0 | 13. | |p | | | | |C6,3(N) |02576 HIP | +080352 |V0352 Aur |065514.7+435436 |DSCTC | 6.13 | 6.18 | |V | | | 0.17 | |F1IV |01746 HIP | +080355 |V0355 Aur *|053941.3+420714 |EA | 11.14 | 11.76 | 11.38 |R |51277.680 | | 17.6445 | | |N0060 08732| +080356 |V0356 Aur *|054228.1+285956 |DSCT | 7.97 | 8.10 | |V | | | 0.1892678 | |F4IIIp |N0196 BD | +080358 |V0358 Aur *|055240.6+321151 |LB | 12.2 | 13.0 | |V | | | | |C(N) |08734 GSC | +080362 |V0362 Aur |052710.2+295516 |LC | 7.29 | 7.73 | |V | | | | |M1.5Iab-Ib |02556 HIP | +080364 |V0364 Aur |053027.5+462015 |EA | 12.2 | 12.8 | |R |52500.6057 | | 0.6990248 |20 | |N0041 03905| +080373 |V0373 Aur *|055924.9+382538 |M | 1.0 | 2.5 | |L | | | 590. : | |M9 |71002 GSC | +080382 |V0382 Aur *|063752.4+533102 |SRD: | 9.00 | 9.12 | |V | | | | |F7IVwe |68039 HIP | +080390 |V0390 Aur *|051515.5+471015 |BY:+UV: | 6.92 | 6.99 | |V | | | 9.8 | |G5III |69044 HIP | +080391 |V0391 Aur |055924.3+350805 |SRA | 11.5 | 13.0 | |V |43870. | | 155. | |S |69010 GSC | +080392 |V0392 Aur |061421.1+280759 |SRB: | 12.4 | 13.8 | |V | | | 175. : | |S |69010 GSC | +080393 |V0393 Aur |054739.1+431252 |SRA | 1.3 | 2.3 | |L | | | 517. | |C |71002 06977| +080394 |V0394 Aur *|060622.4+293045 |SRC | 6.01 | 6.11 | |V | | | 32.896 | |M3II |71062 HIP | +080395 |V0395 Aur |061622.2+285107 |ELL | 7.34 | 7.43 | |V |43978.905 | | 23.1755 | |F5III+B8V |71064 HIP | +080396 |V0396 Aur |045537.0+301755 |INT | 10.76 | 11.01 | |V | | | 2.236 | |K0Ve |N0198 72160| +080397 |V0397 Aur *|045602.0+302104 |INT | 11.46 | 11.74 | |V | | | 9.345 | |K7 |N0199 72020| +080398 |V0398 Aur *|050640.6+513552 |GDOR | 4.93 | 5.03 | |V | | | 1.25804 | |F0V |N0200 HIP | +080399 |V0399 Aur |052540.4+293815 |SR | 11.1 | 11.8 | |p | | | 250. : | |M: |72022 GSC | +080400 |V0400 Aur |052851.7+322522 |SR | 11.1 | 11.7 | |p | | | 80. : | |M: |72022 GSC | +080401 |V0401 Aur |052852.9+322839 |SR: | 9.6 | 10.1 | |p | | | 70. : | | |72022 BD | +080402 |V0402 Aur *|050214.7+311549 |EW | 8.84 | 8.98 | 8.98 |V |54115.520 | | 0.6034956 | |F2 |00001 HIP | +080403 |V0403 Aur *|055704.6+490147 |RS | 6.49 | 6.68 | |V | | | 73.1 | |G8III |73005 HIP | +080404 |V0404 Aur *|055713.5+432817 |EB | 12.2 |( 0.59 )|( 0.28 : )|V |52501.033 | | 0.7543173 | | |N0041 04364| +080406 |V0406 Aur *|061751.5+323017 |EA | 7.47 | 7.58 | 7.57 |V |46770.690 | | 5.46414 |07 :*|A3 |73038 HIP | +080407 |V0407 Aur |045507.2+404452 |LB: | 8.10 | 8.25 | |Hp| | | | |M1 |HIP HIP | +080408 |V0408 Aur |045603.4+432936 |LC | 7.36 | 7.47 | |Hp| | | | |M0Ib |HIP HIP | +080409 |V0409 Aur |045659.0+375158 |SRD: | 8.76 | 8.93 | |Hp|48532.31 | | 58.19 | |F8 |HIP HIP | +080410 |V0410 Aur *|050110.8+343027 |EW | 10.10 | 10.45 | |Hp|54783.884 | | 0.3663612 | |G0 |N0201 HIP | +080411 |V0411 Aur *|050434.5+302250 |LB: | 8.24 | 8.35 | |Hp| | | | |M0 |HIP HIP | +080412 |V0412 Aur |050848.0+423443 |LB: | 8.45 | 8.70 | |Hp| | | | |M6III: |HIP HIP | +080413 |V0413 Aur |050956.4+370016 |BE | 7.95 | 8.33 | |Hp| | | | |B1Ve |HIP HIP | +080414 |V0414 Aur |051048.2+410010 |BE | 8.20 | 8.30 | |Hp| | | | |B2Vne |HIP HIP | +080415 |V0415 Aur |051214.5+411255 |BE | 7.80 | 7.87 | |Hp| | | | |B2:V:nne |HIP HIP | +080416 |V0416 Aur |051313.3+401137 |GCAS: | 7.23 | 7.48 | |Hp| | | | |B2V:pe |HIP HIP | +080417 |V0417 Aur *|051331.8+353911 |EA | 7.92 | 8.15 | 8.08 |Hp|48500.5262 | | 1.86553 |13 |A0 |HIP HIP | +080418 |V0418 Aur |051511.5+482142 |LB: | 8.39 | 8.49 | |Hp| | | | |K0 |HIP HIP | +080419 |V0419 Aur |052008.2+354710 |LB: | 7.32 | 7.42 | |Hp| | | | |M3 |HIP HIP | +080420 |V0420 Aur |052235.2+374034 |BE | 7.42 | 7.53 | |Hp| | | | |B0IVpe |HIP HIP | +080421 |V0421 Aur |052330.2+501314 |LB | 7.84 | 8.01 | |Hp| | | | |M0 |HIP HIP | +080422 |V0422 Aur |052342.6+504451 |BY: | 11.73 | 12.04 | |Hp| | | | |K5 |HIP HIP | +080423 |V0423 Aur |052310.1+354232 |LPB: | 8.63 | 8.79 | |Hp| | | | |B8 |HIP HIP | +080424 |V0424 Aur *|052400.8+323732 |EB | 8.31 | 8.48 | 8.44 |Hp|48500.154 | | 1.8370 | |B9 |HIP HIP | +080425 |V0425 Aur *|052430.5+414938 |EB | 7.62 | 7.90 | 7.84 |Hp|48500.8290 | | 1.568583 | |B5 |HIP HIP | +080426 |V0426 Aur *|052812.3+352552 |EB | 10.55 | 10.76 | 10.66 |Hp|52925.5394 | | 1.419094 | |B3V |00001 HIP | +080427 |V0427 Aur |053035.9+313040 |LB | 7.52 | 7.65 | |Hp| | | | |K5 |HIP HIP | +080428 |V0428 Aur |053126.7+381911 |RV | 6.74 | 7.26 | |Hp|48526.89 | | 89.20 : | |K5 |HIP HIP | +080429 |V0429 Aur |053254.9+520741 |LB: | 8.61 | 8.71 | |Hp| | | | |K0 |HIP HIP | +080430 |V0430 Aur |053417.0+410724 |SRC | 6.89 | 7.02 | |Hp|48636. | | 410. | |M2II |HIP HIP | +080431 |V0431 Aur *|053642.3+341206 |BE: | 8.97 | 9.29 | |Hp| | | 16.86 : | |B5e |HIP HIP | +080432 |V0432 Aur *|053732.5+370512 |EA | 7.98 | 8.40 | |V |51571.4123 | | 3.08175 |09 |G0 |N0202 HIP | +080433 |V0433 Aur *|053918.3+291255 |LPB: | 6.02 | 6.06 | |Hp| | | 4.6382 | |B2IV-V |HIP HIP | +080434 |V0434 Aur |054219.9+430335 |BE | 7.16 | 7.30 | |Hp| | | | |B3Vne |HIP HIP | +080435 |V0435 Aur |054159.4+293122 |BE | 8.91 | 9.02 | |Hp| | | | |B3e |HIP HIP | +080436 |V0436 Aur |054517.0+354142 |LB: | 8.27 | 8.44 | |Hp| | | | |K5 |HIP HIP | +080437 |V0437 Aur *|054903.1+540157 |EA | 8.42 | 9.00 | |Hp|48500.101 | | 3.3638 : | |B9 |HIP HIP | +080438 |V0438 Aur |054853.6+290810 |GCAS | 8.03 | 8.14 | |Hp| | | | |B3:pe:shell |HIP HIP | +080439 |V0439 Aur |055033.8+472740 |LB: | 7.45 | 7.54 | |Hp| | | | |K5 |HIP HIP | +080440 |V0440 Aur *|055125.8+320729 |LB: | 6.24 | 6.37 | |Hp| | | | |M3III |HIP HIP | +080441 |V0441 Aur |055537.6+532736 |SR: | 7.38 | 7.50 | |Hp| | | | |M0 |HIP HIP | +080442 |V0442 Aur |055654.8+353444 |SR: | 7.04 | 7.39 | |Hp| | | | |M5 |HIP HIP | +080443 |V0443 Aur |055833.7+433015 |LB | 8.33 | 8.64 | |Hp| | | | |M2 |HIP HIP | +080444 |V0444 Aur |060058.6+475407 |ACV | 5.70 | 5.74 | |Hp| | | 14.368 | |B9.5pSiFe |N0108 HIP | +080445 |V0445 Aur |060239.2+425256 |LPB | 8.36 | 8.44 | |Hp| | | 2.27366 | |B8 |HIP HIP | +080446 |V0446 Aur |060342.6+503645 |LB | 8.45 | 8.65 | |Hp| | | | |M5 |HIP HIP | +080447 |V0447 Aur |060438.4+463506 |BE | 7.17 | 7.31 | |Hp| | | | |B3Ve |HIP HIP | +080448 |V0448 Aur |060524.0+334402 |LPB | 8.49 | 8.56 | |Hp| | | 4.0420 | |B9 |HIP HIP | +080449 |V0449 Aur *|060819.0+453316 |EB | 7.46 | 7.58 | 7.53 |Hp|52500.5934 | | 0.70366366 | |A0 |N0041 HIP | +080450 |V0450 Aur |060932.6+283957 |SR: | 7.94 | 8.10 | |Hp| | | | |K7 |HIP HIP | +080451 |V0451 Aur |061114.9+285427 |LPB | 7.74 | 7.80 | |Hp| | | 2.63323 | |B8 |HIP HIP | +080452 |V0452 Aur |061745.0+392826 |LB: | 6.77 | 6.87 | |Hp| | | | |K2 |HIP HIP | +080453 |V0453 Aur |062133.3+523114 |SR: | 7.71 | 8.22 | |Hp| | | | |M3 |HIP HIP | +080454 |V0454 Aur |062203.1+343551 |EA | 7.74 | 8.17 | |Hp|48502.21 | | 27.027 | |F8 |00001 HIP | +080455 |V0455 Aur *|062854.9+520733 |EA | 7.33 | 7.64 | 7.64 |Hp|47931.70 | | 3.14578 | |F2 |N0203 HIP | +080456 |V0456 Aur |062831.7+390638 |DSCTC | 7.88 | 7.95 | |Hp| | | 0.138657 | |F0 |HIP HIP | +080457 |V0457 Aur |063037.7+514645 |LB: | 8.84 | 8.94 | |Hp| | | | |M0 |HIP HIP | +080458 |V0458 Aur |063319.6+471306 |LB | 7.53 | 7.65 | |Hp| | | | |M5 |HIP HIP | +080459 |V0459 Aur *|063537.6+323437 |EB | 7.68 | 8.12 | 7.96 |Hp|48500.8270 | | 1.062637 | |B8 |HIP HIP | +080460 |V0460 Aur |063806.4+511208 |LB: | 7.57 | 7.87 | |Hp| | | | |M5 |HIP HIP | +080461 |V0461 Aur |064653.2+450211 |LB: | 9.41 | 9.56 | |Hp| | | | |K5 |HIP HIP | +080462 |V0462 Aur *|065636.6+463219 |EB: | 8.13 | 8.30 | 8.30 |Hp|48500.7417 | | 1.75680 | |A0 |HIP HIP | +080463 |V0463 Aur |071201.1+435035 |ACV: | 6.86 | 6.92 | |Hp| | | 0.804150 | |A0 |HIP HIP | +080464 |V0464 Aur |043912.1+325435 |M | 12.1 |< 15.2 | |V |51598. | | 280. | | |00001 GSC | +080465 |V0465 Aur |044648.0+355740 |SRB | 12.5 | 13.3 | |V | | | 69. : | | |00001 GSC | +080467 |V0467 Aur |045553.0+404613 |LB | 10.3 | 11.5 | |V | | | | | |00001 GSC | +080468 |V0468 Aur *|045611.6+444639 |EB | 12.4 | 12.7 | 12.6 |V |50395.5073 | | 0.91279 | | |75034 GSC | +080470 |V0470 Aur |045615.2+444654 |DCEP | 12.0 | 12.6 | |R |51537.62 | | 3.40724 |22 | |00001 GSC | +080471 |V0471 Aur |045604.6+371845 |SRB | 11.4 | 11.8 | |R | | | 88. | | |00001 GSC | +080472 |V0472 Aur |045947.3+350302 |SRB | 10.2 | 10.7 | |R | | | 160. : | | |00001 GSC | +080473 |V0473 Aur |050255.5+364409 |LB: | 11.9 | 12.7 | |V | | | | | |00001 GSC | +080475 |V0475 Aur |050629.8+292631 |LB: | 11.0 | 11.4 | |R | | | | | |00001 GSC | +080478 |V0478 Aur |050944.6+404425 |LB: | 10.9 | 12.0 | |R | | | | | |00001 GSC | +080479 |V0479 Aur |051016.6+392319 |LB: | 9.6 | 10.1 | |R | | | | |C |00001 GSC | +080482 |V0482 Aur |051042.0+335718 |SRA: | 9.7 | 11.9 | |R |51594. | | 280. : | | |00001 GSC | +080483 |V0483 Aur |051144.3+541800 |M | 11.7 |< 15.0 | |V |51475. | | | | |00001 GSC | +080484 |V0484 Aur |051320.0+535442 |LB: | 9.3 | 9.6 | |R | | | | | |00001 GSC | +080485 |V0485 Aur |051641.1+501333 |M | 9.6 | 12.6 | |R |51418. | | 372. : | | |00001 2MASS| +080486 |V0486 Aur |051746.8+365932 |SR: | 10.6 | 11.3 | |R | | | | | |00001 GSC | +080487 |V0487 Aur |052045.0+381050 |SR: | 10.6 | 13.3 | |R | | | | | |00001 GSC | +080488 |V0488 Aur |052229.1+470258 |M: | 9.9 | 12.2 | |R |51559. | | 392. | | |00001 2MASS| +080489 |V0489 Aur |052226.6+425742 |LB: | 12.5 | 13.3 | |B | | | | | |00001 GSC | +080491 |V0491 Aur |053024.3+391541 |LB: | 10.5 | 11.4 | |R | | | | | |00001 2MASS| +080492 |V0492 Aur |053656.9+520233 |SR | 12.1 | 13.5 | |R | | | 330. : | |Ce |00001 GSC | +080493 |V0493 Aur |055009.5+542244 |M | 10.6 | 16.1 | |V |52375. | | 306.7 | | |00001 GSC | +080494 |V0494 Aur |060031.1+552715 |M | 10.8 | 15.8 | |V |54220. | | 337.5 | | |00001 75037| +080497 |V0497 Aur |045233.5+454137 |LB: | 11.0 | 12.5 | |R | | | | | |00001 GSC | +080500 |V0500 Aur |045627.4+330350 |LB | 10.5 | 10.7 | |R | | | | | |00001 GSC | +080501 |V0501 Aur *|045706.5+314250 |IT: | 10.59 | 10.83 | |V | | | | |K2 |76033 GSC | +080502 |V0502 Aur |050423.5+375811 |LB: | 11.0 | 12.0 | |V | | | | | |00001 GSC | +080503 |V0503 Aur |051055.4+331807 |SRB | 11.1 | 11.7 | |R | | | 81. | | |00001 GSC | +080504 |V0504 Aur |052559.7+451219 |LB | 11.8 | 12.6 | |V | | | | | |00001 GSC | +080505 |V0505 Aur |052736.3+484223 |LB: | 11.6 | 12.5 | |B | | | | | |00001 GSC | +080508 |V0508 Aur |055714.8+322239 |M | 12.1 |< 15.2 | |V |51516. | | 317. | |S |00001 2MASS| +080510 |V0510 Aur |060638.7+375755 |M: | 11.0 | 14.3 | |R |51508. | | | | |00001 GSC | +080511 |V0511 Aur |060910.0+501727 |SRB | 10.2 | 10.5 | |R | | | 81. | | |00001 GSC | +080513 |V0513 Aur |061414.8+504152 |LB | 11.9 | 13.1 | |V | | | | |M7 |00001 GSC | +080517 |V0517 Aur |062504.8+514654 |SR | 10.6 | 11.6 | |R | | | 270. : | | |00001 GSC | +080518 |V0518 Aur |062636.6+292002 |LB: | 10.5 | 11.5 | |V | | | | | |00001 GSC | +080519 |V0519 Aur |063242.2+431713 |LB: | 10.6 | 11.1 | |R | | | | | |00001 GSC | +080520 |V0520 Aur |063324.7+345414 |LB: | 11.2 | 12.0 | |V | | | | | |00001 GSC | +080521 |V0521 Aur |063413.6+455759 |LB: | 11.0 | 11.7 | |V | | | | | |00001 GSC | +080522 |V0522 Aur |063807.2+345921 |SRA: | 10.9 | 12.0 | |R |51457. | | 180. : | | |00001 2MASS| +080524 |V0524 Aur |044028.0+301650 |M | 9.8 | 12.5 | |R | | | | | |00001 2MASS| +080525 |V0525 Aur |044329.3+343219 |M | 9.5 | 12.9 | |Ic|49952. | | 386. | | |76006 75290| +080526 |V0526 Aur |050147.6+380542 |BY | 10.62 | 10.77 | |R | | | 2.8542 | |G0 |N0205 GSC | +080528 |V0528 Aur *|051252.4+464303 |M | 8.1 | 11.2 | |I |50050. | | 433. : | | |76006 75290| +080530 |V0530 Aur *|054529.9+290706 |M | 9.4 | 12.4 | |I |49955. | | 449. : | | |76006 75290| +080532 |V0532 Aur |061345.1+522540 |M | 11.0 | 15.3 : | |R |51536. | | 260. : | | |00001 2MASS| +080533 |V0533 Aur |062021.4+352221 |M | 11.3 | 15.6 | |I |49708. | | 428. : | | |76006 75290| +080534 |V0534 Aur *|062623.9+275644 |EA | 10.40 | 10.75 | 10.75 |V |51570.2412 | | 4.2836529 |06 | |N0206 77054| +080536 |V0536 Aur |045356.2+364527 |BY | 7.77 |( 0.03 )| |V | | | 7.878 | |G5Ve |78018 DM | +080537 |V0537 Aur |050845.0+401517 |DSCTC | 12.1 |( 0.05 )| |V | | | 0.15132 | | |78067 GSC | +080538 |V0538 Aur |054120.3+532852 |BY | 6.34 | 6.38 | |Hp| | | 10.86 | |K1Ve |78005 HIP | +080552 |V0552 Aur *|061409.8+453009 |AM: | 11.2 | 14.5 | |p | | | 0.060868 | |K |78085 78085| +080553 |V0553 Aur |064411.8+365938 |GDOR | 7.53 | 7.58 | |Hp| | | 1.1505 | |F0 |78091 HIP | +080556 |V0556 Aur |044518.7+355815 |SR | 10.4 | 11.0 | |R | | | 150. : | | |00001 04341| +080557 |V0557 Aur |045046.7+424032 |SR: | 10.3 | 10.6 | |R | | | | |C(N) |00001 GSC | +080558 |V0558 Aur |045340.1+371844 |SR: | 11.2 | 11.8 | |R | | | | | |00001 04341| +080559 |V0559 Aur |045545.0+415227 |SR: | 10.6 | 10.9 | |R | | | 170. : | |C |00001 GSC | +080560 |V0560 Aur *|045642.8+391724 |EA | 9.07 | 9.20 | 9.18 : |V |48181.925 | | 1.528311 |12 : |A0 |79006 HIP | +080561 |V0561 Aur |050354.2+294904 |LB | 10.6 | 10.8 | |R | | | | | |00001 GSC | +080563 |V0563 Aur |052200.6+325353 |LB | 11.3 | 12.5 | |R | | | | | |00001 04341| +080564 |V0564 Aur |053205.0+300655 |SRB | 10.6 | 11.0 | |R | | | 110. | |M6 |00001 GSC | +080565 |V0565 Aur *|053742.4+391530 |EA | 11.84 | 12.19 | 12.16 |R |51598.723 | | 4.2650 |06 | |79004 79041| +080566 |V0566 Aur |054203.0+410348 |SR | 10.8 | 11.2 | |R | | | 240. : | | |00001 03905| +080568 |V0568 Aur |054355.5+445140 |SRB | 11.1 | 11.4 | |R | | | 110. | | |00001 03905| +080570 |V0570 Aur |054927.8+443924 |SRB | 9.5 | 10.1 | |R | | | 78. | | |00001 00158| +080571 |V0571 Aur |054941.9+395440 |LB | 9.6 | 10.0 | |R | | | | | |00001 03905| +080572 |V0572 Aur |055651.0+300657 |LB | 10.1 | 10.5 | |R | | | | |C |00001 05527| +080573 |V0573 Aur |055804.3+464811 |LB | 10.6 | 10.9 | |R | | | | | |03905 03905| +080575 |V0575 Aur |060730.9+510653 |RRAB | 12.33 | 13.4 | |R |52990.5840 | | 0.497932 |10 | |79048 04065| +080576 |V0576 Aur *|061011.3+300144 |EA | 9.68 | 9.98 : | 9.97 : |R |51464.843 | | 1.9614 |06 : |A0 |78225 DM | +080578 |V0578 Aur |062250.0+301952 |LB | 11.2 | 11.9 | |R | | | | | |04367 04367| +080581 |V0581 Aur *|051206.9+454643 |M | 11.3 | 16.4 | |R |51502. | | 306. : | | |00001 2MASS| +080583 |V0583 Aur |043925.5+333245 |IB | 11.39 | 11.56 | |V | | | 2.4180 | |K5 |80021 GSC | NL80_1 +080584 |V0584 Aur *|043931.0+340745 |RS | 9.9 |( 0.07 * )| |V | | | 0.7333 | |K2 |80021 HIP | NL80_1 +080585 |V0585 Aur *|044729.2+315143 |EB | 11.05 | 11.45 | 11.30 |* |51601.666 | | 0.535297 | |F5 |80013 GSC | NL80_1 +080586 |V0586 Aur |045104.9+434647 |DSCTC: | 12.05 |( 0.04 )| |V | | | 0.05963 | | |80176 80176| NL80_1 +080587 |V0587 Aur |045117.8+433714 |DSCTC: | 11.44 |( 0.05 )| |V | | | 0.2232 | | |80176 80176| NL80_1 +080588 |V0588 Aur |045222.1+400635 |RS | 12.47 |( 0.16 * )| |V | | | 6.2542 | | |80021 GSC | NL80_1 +080589 |V0589 Aur *|045224.2+431955 |EA | 12.2 | 12.9 | 12.3 |* |51528.66 | | 1.1600 |18 | |80107 80107| NL80_1 +080591 |V0591 Aur *|045400.2+393344 |EB | 10.81 | 11.42 | 10.99 |* |51628.627 | | 1.10965 | |A0 |80011 GSC | NL80_1 +080592 |V0592 Aur |045450.6+320412 |RS | 11.43 |( 0.10 * )| |V | | | 0.2801 | |G0 |80021 DM | NL80_1 +080593 |V0593 Aur |045639.2+434846 |RS: | 9.6 | 9.9 | |* | | | 52. | | |80115 80115| NL80_1 +080594 |V0594 Aur *|045751.4+393002 |EA | 12.45 | 13.2 | 13.1 |* |51527.899 | | 1.4368 |12 | |80107 80107| NL80_1 +080595 |V0595 Aur |045809.0+433301 |RS | 11.98 |( 0.19 * )| |V | | | 0.4411 | | |80021 GSC | NL80_1 +080596 |V0596 Aur *|050202.3+423755 |EW | 11.83 | 12.29 | 12.27 |* |53686.5780 | | 0.397885 | | |80172 GSC | NL80_1 +080597 |V0597 Aur |050206.2+311102 |RS | 11.07 |( 0.07 * )| |V | | | 4.2336 | |G5 |80021 DM | NL80_1 +080598 |V0598 Aur |050329.6+310942 |RS: | 11.60 | 12.10 | |* | | | 16.98 | | |80177 GSC | NL80_1 +080599 |V0599 Aur *|050846.8+320209 |EW | 12.0 | 12.35 | 12.25 |V |53686.4414 | | 0.316535 | | |80172 GSC | NL80_1 +080600 |V0600 Aur |051022.3+312640 |IB | 11.30 |( 0.08 * )| |V | | | 2.2013 | |K2IV |80021 GSC | NL80_1 +080601 |V0601 Aur |051043.4+302043 |RS | 12.01 |( 0.14 * )| |V | | | 1.8082 | | |80021 GSC | NL80_1 +080602 |V0602 Aur |051043.9+461439 |BY | 11.5 | 11.7 | |* | | | 24.920 | | |80060 80060| NL80_1 +080604 |V0604 Aur |051908.5+340538 |IB | 12.30 |( 0.17 * )| |V | | | 2.1662 | |K2IV |80021 GSC | NL80_1 +080605 |V0605 Aur |052246.8+353536 |LB | 12.5 | 13.0 | |* | | | | | |80062 USNO | NL80_1 +080606 |V0606 Aur *|052336.6+293428 |EA | 10.77 | 11.13 | 10.84 |* |51531.695 | | 1.8868 |14 |A5m |80011 DM | NL80_1 +080607 |V0607 Aur *|052424.6+543922 |EA/RS | 10.5 | 11.3 | 11.1 |V |54175.868 | | 2.0668 |08 | |80185 GSC | NL80_1 +080608 |V0608 Aur *|052737.9+395533 |EA | 12.5 |( 0.41 )|( 0.15 )|V |51900.1194 | | 0.7632387 | | |80186 GSC | NL80_1 +080610 |V0610 Aur *|053001.9+332406 |EA | 10.75 | 11.07 | 10.85 : |* |51514.840 | | 1.6192 |13 |B5 |80042 GSC | NL80_1 +080611 |V0611 Aur |053020.9+414914 |RS | 11.48 |( 0.08 * )| |V | | | 0.7299 | | |80021 GSC | NL80_1 +080613 |V0613 Aur |053505.7+394632 |IB: | 10.83 |( 0.14 * )| |V | | | 4.5055 | |K0V |80021 DM | NL80_1 +080614 |V0614 Aur |053807.2+422029 |BY | 12.12 |( 0.10 * )| |V | | | 3.3000 | | |80021 GSC | NL80_1 +080615 |V0615 Aur |053844.5+535631 |SRB | 10.5 | 10.9 | |* | | | 47. | | |80100 GSC | NL80_1 +080616 |V0616 Aur |053929.4+354109 |INB | 12.01 | 14.01 | |Ks| | | | | |80196 80196| NL80_1 +080617 |V0617 Aur *|053956.6+300511 |EB | 8.03 | 8.21 | 8.13 |V |48013.1 | | 66.76 | |F5II+Be |80015 HIP | NL80_1 +080619 |V0619 Aur |054356.0+525731 |SRB: | 10.0 | 11.0 | |* | | | 92. | | |80100 GSC | NL80_1 +080620 |V0620 Aur *|054540.2+410624 |EA | 12.03 | 12.38 | 12.3 |* |53409.3330 | | 1.503265 |09 | |80197 80197| NL80_1 +080621 |V0621 Aur |054604.5+344528 |DCEP | 12.3 | 12.8 | |* |51514.7 | | 4.69 |21 | |80081 GSC | NL80_1 +080623 |V0623 Aur *|054815.4+390210 |EB | 12.5 | 12.9 | 12.7 |* |54346.5408 | | 0.60304 | | |80202 80202| NL80_1 +080637 |V0637 Aur *|055258.8+362337 |DCEPS | 10.05 | 10.37 | |* |51543.6 | | 7.85 |33 | |80081 GSC | NL80_1 +080638 |V0638 Aur |055313.5+382407 |RS: | 11.4 | 11.7 | |* | | | 14.003 | | |80060 80060| NL80_1 +080642 |V0642 Aur |060951.0+322948 |BY | 10.39 |( 0.05 *)| |V | | | 7.8858 | | |80021 GSC | NL80_2 +080644 |V0644 Aur *|061825.7+342939 |EA | 11.22 | 11.53 | 11.53 |* |51488.800 | | 0.78045 |15 | |80011 GSC | NL80_2 +080645 |V0645 Aur *|061915.4+282623 |EA | 9.72 | 10.26 | 10.10 |V |52977.747 | | 10.8925 |04 |A2 |80023 DM | NL80_2 +080648 |V0648 Aur *|064116.9+464908 |EW/RS | 11.63 | 11.96 | 11.80 |* |54085.591 | | 0.422467 | | |80258 GSC | NL80_2 +080649 |V0649 Aur |065341.9+424219 |BY | 11.28 |( 0.08 *)| |V | | | 3.5416 | |K7V |80021 GSC | NL80_2 +080653 |V0653 Aur |072452.4+353127 |RRAB | 12.17 | 13.04 | |* |51532.63 | | 0.57928 |17 | |80001 GSC | NL80_2 +089002 |bet Aur *|055931.7+445651 |EA | 1.89 | 1.98 | 1.98 |V |52500.573 | | 3.960036 |06 *|A2IV+A2IV |N0041 HIP | +089005 |eps Aur *|050158.1+434924 |EA | 2.92 | 3.88 | |V |45513. | | 9884. |08 |A8Iab: |00001 HIP | +089006 |zet Aur *|050228.7+410433 |EA | 3.70 | 3.97 | |V |52968.7941 | | 972.150912 |04 |K5Ib-II+B6.5IV-V |N0041 HIP | +089008 |tet Aur *|055943.3+371245 |ACV | 2.62 | 2.70 | |V | | | 3.6186 | |B9.5p(Si) |HIP HIP | +089016 |pi. Aur |055956.1+455612 |LC | 4.24 | 4.34 | |V | | | | |M3.5II |05841 HIP | +0890231|psi 1 Aur *|062453.9+491716 |SRC | 4.68 | 5.70 | |V | | | 175. : | |K5-M0Iab-Ib |N0135 HIP | +090001 |R Boo *|143711.6+264412 |M | 6.0 | 13.3 | |V |55029. | | 223.11 |45 |M3e-M8e |00001 HIP | +090002 |S Boo |142252.9+534837 |M | 7.4 | 14.0 | |V |55035. | | 269.88 |47 |M3e-M6e |00001 HIP | +090004 |U Boo |145420.0+174144 |SRB | 9.7 | 13.2 | |V | | | 204. |49 |M4e |N0039 GSC | +090005 |V Boo *|142945.3+385141 |SR | 7.0 | 12.0 | |V | | | 257. |48 |M6e |N0039 HIP | +090006 |W Boo |144325.4+263140 |SRB | 4.49 | 5.4 | |V | | | 25. | |M2-M4III |N0208 HIP | +090007 |X Boo |142410.4+161908 |CST | 10.25 | | |V | | | | | | BD | +090008 |Y Boo |142201.6+194819 |CST: | 7.94 | | |V | | | | |K0III | HIP | +090009 |Z Boo *|140629.8+132900 |M | 8.2 | 15.7 | |V |54558. | | 282.2 |40 |M5e-M6e |00001 BD | +090010 |RR Boo |144705.8+391902 |M | 8.2 | 15.0 | |V |54929. | | 194.0 |48 |M2e-M6e |00001 HIP | +090011 |RS Boo *|143333.2+314517 |RRAB | 9.63 | 10.88 | |V |48500.3370 | | 0.377339 |17 |A7-F5 |HIP HIP | +090012 |RT Boo |151714.7+362133 |M | 8.2 | 14.0 | |V |54873. | | 275.5 |49 |M6.5e-M8e |00001 HIP | +090014 |RV Boo |143915.9+323222 |SRB | 7.0 | 9.0 | |V | | | 144. | |M5e-M7e |N0039 HIP | +090015 |RW Boo |144113.4+313420 |SRB | 7.2 | 8.7 | |V | | | 209. | |M5 |01100 HIP | +090016 |RX Boo *|142411.6+254213 |SRB | 6.43 | 9.1 | |V | | | 162.3 | |M6.5e-M8IIIe |N0209 HIP | +090017 |RY Boo |144943.0+230156 |CST: | 7.12 | 7.16 | |V | | | | |F5III-IV | HIP | +090018 |RZ Boo |140315.2+284139 |SRA | 9.8 | 12.6 | |V |53900. | | 210.9 | |M4 |00001 GSC | +090019 |SS Boo *|151332.5+383406 |EA/RS | 10.28 | 10.95 |( 0.1 )|V |52501.03 | | 7.606146 |10 *|G0V+K1IV |N0041 HIP | +090020 |ST Boo *|153039.2+354704 |RRAB | 10.28 | 11.54 | |V |48500.1722 | | 0.622286 |15 |A7-F7 |HIP HIP | +090021 |SU Boo *|142921.0+320804 |EA | 11.96 | 12.72 | 12.04 |V |52500.895 | | 1.561258 |13 |A3V |N0041 GSC | +090023 |SW Boo *|142734.9+360244 |RRAB | 11.76 | 12.88 | |V |53540.492 | | 0.513551 |13 |F6 |00001 GSC | +090024 |SX Boo |135608.7+140812 |SRA | 10.5 | 14.5 | |V |53480. | | 151.7 | |M0e |00001 GSC | +090025 |SY Boo *|141240.0+173222 |EB | 12.25 | 12.87 | 12.46 : |V |52500.3928 | | 0.7144818 | | |N0041 06286| +090026 |SZ Boo *|144213.3+281223 |RRAB | 11.92 | 13.05 | |V |53160.642 | | 0.5228203 |10 |F5 |00001 06286| +090027 |TT Boo |145744.8+404341 |UGSU | 12.1 | 19.19 | |V | | |( 45. ) | | |03225 72085| +090028 |TU Boo *|140458.0+300002 |EW | 11.53 | 12.48 | 12.17 |V |52500.1633 | | 0.3242827 | |G3 |N0041 GSC | +090029 |TV Boo *|141636.6+422136 |RRC | 10.71 | 11.30 | |V |51308.71 | | 0.3125609 |36 |A7-F2 |00001 06286| +090030 |TW Boo *|144505.9+410144 |RRAB | 10.63 | 11.68 | |V |51559.98 | | 0.5322715 |13 |F0-F9 |00001 HIP | +090031 |TX Boo *|144717.4+315028 |EB | 12.2 | 12.6 | 12.3 |R |54633.699 | | 3.4127464 | |F0: |00001 GSC | +090032 |TY Boo *|150046.9+350755 |EW | 11.39 | 12.06 | 11.92 |V |54202.337 | | 0.3171485 | |G3 |00001 GSC | +090033 |TZ Boo *|150809.1+395813 |EW | 10.45 | 11.00 | 10.82 |V |54961.423 | | 0.2971613 | |G2V |00001 HIP | +090034 |UU Boo *|151705.3+350657 |RRAB | 11.50 | 12.81 | |V |54491.653 | | 0.4569339 |10 |F5 |N0210 06286| +090035 |UV Boo |142232.4+253300 |CST: | 8.13 | | |V | | | | |F5V | HIP | +090036 |UW Boo *|142059.6+470645 |EA | 10.91 | 11.73 |( 0.1 pg)|V |52500.0434 | | 1.0047082 |20 |F0 |N0041 BD | +090037 |UX Boo |142134.5+465943 |EA: | 10.93 | 11.6 | |V |48761.621 | | | |G2V-G8III |N0211 BD | +090038 |UY Boo *|135846.3+125707 |RRAB | 10.23 | 11.40 | |V |53575.517 | | 0.6508964 |16 |A8-F0 |00001 HIP | +090039 |UZ Boo |144401.2+220055 |UG | 11.0 | 20.4 | |V | | |( 2191. ) | | |N0054 72085| +090040 |VV Boo |140936.8+384034 |SR | 10.0 | 10.5 | |R | | | 260. : | |M7 |00001 GSC | +090041 |VW Boo *|141726.0+123403 |EW | 10.42 | 11.11 | 10.93 |V |52500.0099 | | 0.3423147 | |G5 |N0041 HIP | +090045 |WW Boo |145654.6+253500 |RRAB | 12.4 | 13.6 | |V |53897.416 | | 0.479267 |15 | |00001 06286| +090046 |WX Boo |150621.5+255548 |SRB | 11.1 | 12.2 | |V | | | 207. | | |00001 GSC | +090047 |WY Boo |135938.5+274715 |SR | 10.0 | 11.0 | |V | | | 114. | |M5 |00001 BD | +090049 |XX Boo |145137.6+292127 |RRAB | 11.8 | 12.4 | |R |53485.629 | | 0.581402 |20 |A2 |00001 06286| +090050 |XY Boo *|134911.6+201125 |EW | 10.29 | 10.76 | 10.73 |V |52500.4721 | | 0.3705754 | |F5V |N0041 HIP | +090051 |XZ Boo |135355.2+171651 |LB | 8.8 | 9.9 | |V | | | | |M5 |00001 BD | +090052 |YY Boo *|153528.3+432849 |EA | 11.9 | 13.2 | 12.1 |R |52500.428 | | 3.933070 | |A4 |N0041 02379| +090053 |YZ Boo |152407.0+365201 |DSCT | 10.30 | 10.80 | |V |48500.0030 | | 0.1040920 |31 |A6-F1 |HIP HIP | +090054 |ZZ Boo *|135609.5+255507 |EA | 6.79 | 7.44 | 7.44 |V |52502.9212 | | 4.9917633 |06 |F2V |N0041 HIP | +090055 |AA Boo |140234.2+075352 |LB | 9.5 | 10.4 | |V | | | | |M4p |00001 BD | +090057 |AC Boo *|145628.3+462144 |EW | 10.14 | 10.67 | 10.67 |V |52500.3020 | | 0.3524485 | |F8Vn |N0041 HIP | +090058 |AD Boo *|143512.8+243822 |EA | 9.45 | 10.09 | 9.85 |V |52501.5314 | | 2.0688069 |08 |G0 |N0041 GSC | +090059 |AE Boo *|144735.3+165044 |RRC | 10.44 | 10.88 | |V |52861.512 | | 0.3148958 |45 |F2 |00001 HIP | +090065 |AL Boo |133855.8+184241 |M | 12.0 |< 14.8 | |V |53517. | | 167.0 | | |00001 04341| +090070 |AQ Boo *|134726.9+171825 |EW | 12.2 | 12.9 | 12.9 |V |52500.2019 | | 0.3331394 | |F8p |00001 04341| +090093 |BP Boo |154250.8+522139 |ACV | 5.34 |( 0.02 )| |U | | | 1.30488 | |B9pSiCr |06989 HIP | +090099 |BV Boo |134203.9+225450 |LB | 11.7 | 12.1 | |V | | | | | |05264 04341| +090100 |BW Boo *|143708.8+355547 |EA | 7.13 | 7.46 | 7.17 |V |52501.026 | | 3.332816 |06 |F0V |N0041 HIP | +090101 |BX Boo *|150038.7+471639 |ACV | 6.33 | 6.41 | |V | | | 2.88813 | |B9VpSiCrSr |HIP HIP | +090102 |BY Boo |140755.8+435116 |LB: | 4.98 | 5.33 | |V | | | | |M4-4.5III |05055 HIP | +090103 |BZ Boo |133821.4+271714 |DSCTC: | 8.20 |( 0.03 )| |V | | | 0.1329 : | |A5 |00001 HIP | +090106 |CE Boo *|145429.2+160604 |UV | 11.35 | 11.68 | |B | | | | |M2Ve+M8Ve |07440 HIP | +090107 |CF Boo |140817.3+492729 |LB | 5.29 | 5.38 | |Hp| | | | |M2IIIab |HIP HIP | +090109 |CH Boo |143439.6+492206 |LB: | 5.83 | 5.87 | |Hp| | | | |M1IIIab |HIP HIP | +090110 |CI Boo |142214.0+292212 |LB | 6.23 | 6.57 | |Hp| | | | |M3III |HIP HIP | +090111 |CK Boo *|143503.8+090649 |EW | 8.95 | 9.25 | 9.22 |V |52500.029 | | 0.3551522 | |F8 |N0041 HIP | +090113 |CM Boo *|141603.1+200338 |RRAB | 12.1 | 13.2 | |V |53862.616 | | 0.609069 |16 | |00001 08351| +090114 |CN Boo |141604.1+185443 |DSCTC: | 6.24 |( 0.03 : )| |B | | | 0.04 : | |A8m |08352 BD | +090115 |CO Boo |143328.3+173647 |M | 11.2 |< 15. | |V |53433. | | 280.5 | | |00001 08351| +090116 |CP Boo |143320.3+365733 |DSCTC: | 6.89 |( 0.02 )| |B | | | | |F8IV |08353 HIP | +090117 |CQ Boo |145404.8+153747 |RRC | 11.65 | 12.25 | |V |54664.610 | | 0.281882 |40 | |00001 67035| +090119 |CS Boo |140601.8+243415 |RRAB | 12.3 | 13.5 | |V |53820.708 | | 0.5533825 | | |00001 08351| +090122 |CV Boo *|152619.6+365854 |EA | 10.65 | 11.48 | 11.36 |V |52500.5608 | | 0.8469938 |15 |G0 |N0041 BD | +090125 |CY Boo |141728.4+151548 |SRB | 5.74 | 5.90 | |V | | | 23. | |M3III |77065 HIP | +090127 |DD Boo |145120.1+233230 |RRC | 12.4 | 12.9 | |V |53090.785 | | 0.3393397 |40 | |00001 73040| +090128 |DE Boo *|145323.8+190910 |RS | 5.97 | 6.04 | |V | | | 10.39 | |K2V |73005 HIP | +090130 |DG Boo |151802.0+464206 |RRAB | 11.59 | 12.76 | |V |54313.435 | | 0.4586685 |15 | |00001 GSC | +090131 |DH Boo |133752.9+132648 |LB: | 7.90 | 8.24 | |Hp| | | | |M4 |HIP HIP | +090132 |DI Boo |134234.2+231907 |LB | 7.31 | 7.42 | |Hp| | | | |M0 |HIP HIP | +090133 |DK Boo |134359.1+214905 |LB | 8.02 | 8.77 | |Hp| | | | |K5 |HIP HIP | +090134 |DL Boo |134757.4+185640 |LB | 7.58 | 7.80 | |Hp| | | | |K5 |HIP HIP | +090135 |DM Boo *|134922.7+103527 |NL: | 8.73 | 8.94 | |Hp| | | | |G5 |HIP HIP | +090136 |DN Boo *|135142.0+141806 |EW | 11.03 | 11.32 | 11.28 |V |53803.760 | | 0.4475667 | |G0 |00001 HIP | +090137 |DO Boo |135437.5+121615 |LB: | 8.82 | 9.25 | |Hp| | | | |M5 |HIP HIP | +090138 |DP Boo |140629.6+165813 |LB: | 6.53 | 6.69 | |Hp| | | | |M1 |HIP HIP | +090139 |DQ Boo *|141236.2+451153 |BY: | 9.30 | 9.42 | |Hp| | | | |K0 |HIP HIP | +090140 |DR Boo |141558.2+342615 |LB | 8.06 | 8.60 | |Hp| | | | |K0 |HIP HIP | +090141 |DS Boo |141609.5+525617 |LB | 8.74 | 8.94 | |Hp| | | | |M2 |HIP HIP | +090142 |DT Boo |142144.6+435948 |ISB | 8.42 | 8.86 | |Hp| | | | |M5 |HIP HIP | +090143 |DU Boo *|142217.7+412702 |EB | 8.48 | 9.02 | 8.86 |V |52500.033 | | 1.055889 | |A2 |N0041 HIP | +090144 |DV Boo *|142249.7+145620 |EA | 7.53 | 7.76 | 7.69 |V |48045.254 | | 3.78264 |06 |A2 |79006 HIP | +090145 |DW Boo *|142647.4+082254 |EB: | 7.36 | 7.45 | 7.43 |V |55048.523 | | 0.9244464 | |A0 |00001 HIP | +090146 |DX Boo |142846.0+255114 |LB | 6.67 | 6.76 | |V | | | | |M1III |HIP HIP | +090147 |DY Boo |142938.6+190009 |LB | 9.26 | 9.47 | |Hp| | | | |M2 |HIP HIP | +090148 |DZ Boo |142953.9+193508 |LB: | 8.68 | 8.89 | |V | | | | |K5 |HIP HIP | +090149 |EE Boo |143114.3+453543 |LB | 8.49 | 8.69 | |Hp| | | | |K5 |HIP HIP | +090150 |EF Boo *|143230.5+504941 |EW/RS | 9.23 | 9.83 | 9.78 |V |52500.2231 | | 0.4205161 | |G5 |N0041 HIP | +090151 |EG Boo |144008.2+282536 |LB: | 7.96 | 8.06 | |Hp| | | | |K5 |HIP HIP | +090152 |EH Boo |144223.3+544812 |LB | 7.28 | 7.50 | |Hp| | | | |M2 |HIP HIP | +090153 |EI Boo |144306.9+425407 |SRD | 8.89 | 9.11 | |Hp| | | 35.32 | |K0 |HIP HIP | +090154 |EK Boo |144606.0+150754 |LB: | 5.33 | 5.71 | |Hp| | | | |M5IIIab |HIP HIP | +090155 |EL Boo *|144803.4+135641 |EW | 9.20 | 9.43 | 9.42 |V |54633.625 | | 0.4137642 | |F8 |00001 HIP | +090156 |EM Boo *|144832.2+244504 |EA | 8.98 | 9.32 | 9.23 |V |52736.755 | | 2.446228 |13 |G5 |00001 HIP | +090157 |EN Boo |145102.9+120951 |LB: | 7.67 | 7.85 | |Hp| | | | |M1 |HIP HIP | +090158 |EO Boo |145142.2+190521 |LB: | 8.45 | 8.60 | |Hp| | | | |M2III |HIP HIP | +090159 |EP Boo |145136.8+260735 |LB: | 9.56 | 9.68 | |Hp| | | | |M0 |HIP HIP | +090160 |EQ Boo *|145225.8+175723 |EA | 8.80 | 9.20 | 9.11 |V |47931.794 | | 5.43536 |04 |G5 |79193 HIP | +090161 |ER Boo |145318.0+355345 |LB: | 9.89 | 10.02 | |Hp| | | | |M0 |HIP HIP | +090162 |ES Boo |145533.6+352721 |LB: | 8.53 | 8.64 | |Hp| | | | |M0 |HIP HIP | +090163 |ET Boo *|145920.3+464904 |EB | 9.14 | 9.50 | 9.40 |Hp|54982.456 | | 0.6450412 | |F8 |00001 HIP | +090164 |EU Boo |145942.4+320351 |LB: | 10.09 | 10.25 | |Hp| | | | |M0 |HIP HIP | +090165 |EV Boo |150230.7+314102 |LB | 6.42 | 6.61 | |Hp| | | | |M5 |HIP HIP | +090166 |EW Boo *|150246.1+375436 |EA | 10.31 | 10.69 | 10.34 |Hp|52500.229 | | 0.9063492 |20 |A0 |N0041 HIP | +090167 |EX Boo |150327.3+252538 |SRB | 9.4 | 10.0 | |V | | | 52. | |M5 |00001 HIP | +090168 |EY Boo |150310.2+431115 |LB: | 9.46 | 9.72 | |Hp| | | | |M5 |HIP HIP | +090169 |EZ Boo |150957.0+202526 |SRB | 9.72 | 9.88 | |V | | | 195. | |M2 |00001 HIP | +090170 |FF Boo |151031.5+114025 |LB: | 6.93 | 7.02 | |Hp| | | | |M2.5III |HIP HIP | +090171 |FG Boo |151135.0+495411 |LB | 7.35 | 8.06 | |Hp| | | | |M0 |HIP HIP | +090172 |FH Boo |151246.8+441617 |LB: | 9.18 | 9.35 | |Hp| | | | |M0 |HIP HIP | +090173 |FI Boo *|152206.0+511055 |EW | 9.55 | 9.68 | 9.66 |V |52500.337 | | 0.390001 | |G3V |N0041 HIP | +090174 |FK Boo |152714.9+503710 |LPB | 7.79 | 7.83 | |Hp| | | 1.5129 | |B9 |HIP HIP | +090175 |FL Boo *|152809.9+382138 |LB: | 9.40 | 9.55 | |Hp| | | | |K0 |HIP HIP | +090176 |FM Boo |153145.0+434513 |LB: | 10.65 | 10.83 | |Hp| | | | |M0 |HIP HIP | +090177 |FN Boo |153146.8+470325 |BY: | 10.47 | 10.76 | |Hp| | | | |K6 |HIP HIP | +090178 |FO Boo |153932.1+424149 |LB: | 7.65 | 7.76 | |Hp| | | | |M1 |HIP HIP | +090179 |FP Boo *|154300.3+431555 |EW | 10.14 | 10.44 | 10.38 |Hp|52500.311 | | 0.640458 | |A5 |N0041 HIP | +090180 |FQ Boo |134944.1+082431 |DSCTC | 6.59 |( 0.02 b )| |V | | | 0.049 | |A2V |75040 HIP | +090181 |FR Boo |140315.7+243551 |RS | 9.26 | 9.30 | |B | | | 96. | |K3III |73005 HIP | +090186 |FW Boo |152925.8+522509 |RV: | 12.2 | 13.9 | |R | | | 102. | | |79207 GSC | +090187 |FX Boo |154107.5+472044 |M: | 11.9 |< 14.1 | |R |51401. | | 160. | | |00001 2MASS| +090189 |FZ Boo |140612.9+104934 |LB: | 7.62 | 7.72 | |V | | | | |M0III |77023 HIP | +090190 |GG Boo *|140916.6+383734 |EB | 12.26 | 12.65 | 12.46 |R |51259.8645 | | 0.42695 | | |77100 GSC | +090191 |GH Boo *|141451.5+273416 |EW | 11.6 | 12.0 | 11.9 |V |52500.4012 | | 0.6595104 | | |00001 GSC | +090192 |GI Boo *|143723.3+380442 |EA | 11.3 | 11.8 | 11.4 |R |51286.7052 | | 1.0335 |15 | |77100 DM | +090193 |GK Boo *|143820.7+363225 |EA | 10.3 | 10.8 | 10.7 |R |54959.525 | | 0.4777725 |17 | |00001 GSC | +090194 |GL Boo *|144005.7+263402 |EA | 10.8 | 11.3 | 11.0 |V |52501.7330 | | 3.1974877 |17 | |N0041 DM | +090195 |GM Boo *|144726.6+224514 |EW | 11.85 | 12.35 | 12.30 |V |52500.102 | | 0.3611189 | | |N0041 GSC | +090196 |GN Boo *|145007.8+293859 |EW | 10.75 | 11.35 | |* |55015.4454 | | 0.3015996 | | |00001 GSC | +090197 |GO Boo *|145312.5+284222 |EA | 12.0 | 12.4 | 12.1 : |R |52500.4161 | | 3.0764190 |09 | |N0041 GSC | +090198 |GP Boo *|145730.9+240252 |EB | 10.65 | 11.03 | 10.75 |V |52500.1110 | | 0.81877010 | | |N0041 GSC | +090200 |GR Boo *|145954.5+255434 |EW | 11.30 | 11.85 | 11.80 |V |52500.1925 | | 0.3766704 | | |N0041 GSC | +090201 |GS Boo *|150029.6+334022 |EA | 11.35 | 12.01 | 11.45 |R |52500.045 | | 1.256816 |13 | |N0041 DM | +090202 |GT Boo *|151726.7+381336 |EB | 12.1 | 12.4 | 12.3 |R |52500.5173 | | 0.56892286 | | |N0041 GSC | +090204 |GV Boo *|133659.4+265248 |EW | 12.3 | 13.1 | 12.9 |V |54924.3933 | | 0.3678717 | | |00001 GSC | +090205 |GW Boo *|135313.9+200943 |EW | 10.19 | 10.65 | 10.59 |V |52788.42371 | | 0.53158 | |A9III |78104 DM | +090206 |GX Boo *|140105.6+244217 |EW: | 12.16 | 12.32 | 12.32 |R |51332.194 | | 0.387810 | | |78161 GSC | +090207 |GY Boo |141241.6+234852 |BY | 8.88 |( 0.03 )| |V | | | 9.52 : | |K0V |78018 HIP | +090208 |GZ Boo |142108.9+372404 |BY | 8.90 |( 0.04 )| |V | | | 7.52 | |K2V |78018 HIP | +090209 |HH Boo *|142144.1+464159 |EW | 10.91 | 11.55 | 11.42 |V |52500.3368 | | 0.31866645 | |G5III |N0041 GSC | +090210 |HI Boo |142643.2+315216 |RS: | 10.25 |( 0.35 )| |V | | | 20.83 | |K2III |78173 DM | +090211 |HK Boo *|142901.2+120720 |RS | 8.43 |( 0.09 )| |V | | | 17.62 | |G5IVe |78018 HIP | +090212 |HL Boo |142902.8+110234 |EA: | 7.61 |( 0.03 )| |V |51327.5 | | 26.68 |15 : |K0 |78018 HIP | +090213 |HM Boo |142909.3+381640 |E:/RS | 9.17 |( 0.02 )| |V |51339. | | 21.84 | |K3V |78018 HIP | +090214 |HN Boo |143600.6+094448 |BY | 7.48 |( 0.04 )| |V | | | 11.54 | |K0V |78018 HIP | +090215 |HO Boo |144603.1+273044 |BY | 7.98 |( 0.02 )| |V | | | 93. : | |K2V |78018 HIP | +090216 |HP Boo |145015.8+235443 |BY | 5.98 | 6.01 | |Hp| | | 7.85 | |G2V |78005 HIP | +090224 |HX Boo |134808.5+074913 |SRB | 8.97 | 9.59 | |V | | | 56.2 | |M5 |80002 DM | NL80_2 +090225 |HY Boo |135649.2+242927 |RS | 10.74 | 10.92 | |V | | | 12.23 | | |80034 GSC | NL80_2 +090228 |IK Boo *|140846.2+292908 |EW | 11.42 | 11.76 | 11.69 |* |53382.6264 | | 0.303119 | | |80172 GSC | NL80_2 +090232 |IO Boo *|141251.0+243202 |EW | 11.61 | 12.21 | 12.09 |V |52395.7197 | | 0.2710 | | |80393 80393| NL80_2 +090237 |IT Boo |141614.6+483922 |SRD: | 11.05 | 11.35 | |* | | | 70. | | |80070 80070| NL80_2 +090238 |IU Boo |141630.9+265525 |BY | 10.32 | 10.56 | |V | | | 7.0209 | | |80021 GSC | NL80_2 +090243 |IZ Boo |142004.7+390301 |BY: | 11.79 |( 0.06 *)| |V | | | 0.3693 | |M2.5 |80021 GSC | NL80_2 +090245 |KL Boo |142019.6+275857 |BY | 10.93 | 11.28 | |V | | | 7.8248 | |K5V |80021 GSC | NL80_2 +090249 |KP Boo *|142335.3+433941 |EB | 11.90 | 12.35 | 12.1 |* |51399.545 | | 0.58987 | | |80101 80101| NL80_2 +090251 |KR Boo |142529.4+205747 |RRAB | 12.4 | 13.6 | |V |52834.542 | | 0.512138 |17 | |80001 GSC | NL80_2 +090252 |KS Boo |142656.6+233653 |BY | 10.90 |( 0.05 *)| |V | | | 6.4131 | | |80021 GSC | NL80_2 +090253 |KT Boo |142902.5+335039 |BY | 9.32 |( 0.07 *)| |V | | | 3.8028 | |G0 |80021 DM | NL80_2 +090255 |KV Boo |143033.5+384355 |SRB | 8.8 | 10.1 | |* | | | 75. | |M |80001 GSC | NL80_2 +090258 |KY Boo |143104.0+440422 |RS | 11.6 | 11.8 | |* | | | 6.70280 | | |80067 80067| NL80_2 +090260 |LL Boo *|143241.2+461140 |RS | 12.09 | 12.24 | |* | | | 6.862 | | |80115 80115| NL80_2 +090264 |LP Boo |143732.0+352819 |SR | 9.8 | 10.2 | |* | | | 80. : | | |80070 80070| NL80_2 +090266 |LR Boo |143806.8+354941 |RS | 12.2 | 12.4 | |* | | | 1.384 | | |80370 80370| NL80_2 +090267 |LS Boo |143821.8+142455 |RRAB | 12.4 | 13.6 | |V |54627.60 | | 0.5527108 |15 | |80001 GSC | NL80_2 +090269 |LU Boo |143854.6+330020 |BY | 11.12 |( 0.07 *)| |V | | | 5.0682 : | | |80021 GSC | NL80_2 +090271 |LW Boo |144032.6+173557 |RRAB | 12.4 | 13.5 | |V |54175.7868 | | 0.563420 |15 | |80002 GSC | NL80_2 +090272 |LX Boo |144145.3+423121 |BY | 11.39 |( 0.14 *)| |V | | | 0.5940 | | |80021 GSC | NL80_2 +090276 |MN Boo *|144351.2+474303 |EW | 9.18 | 9.48 | 9.46 |* |51421.594 | | 0.38769 | |G0 |80101 80101| NL80_2 +090278 |MP Boo |144438.3+531305 |RS | 10.95 | 11.15 | |* | | | 72. | | |80069 80069| NL80_2 +090280 |MR Boo *|144533.4+511045 |EB | 11.06 | 11.47 | 11.34 |* |51408.908 | | 0.86685 | | |80101 80101| NL80_2 +090281 |MS Boo |144541.0+340719 |RS | 11.2 | 11.4 | |* | | | 11.131 | | |80370 80370| NL80_2 +090284 |MV Boo |144831.0+350318 |EA/RS | 10.70 | 10.90 | |* |51288.72 | | 3.56053 |08 | |80001 GSC | NL80_2 +090286 |MX Boo |144952.6+420627 |RS | 10.81 | 10.96 | |* | | | 13.7137 | | |80170 80170| NL80_2 +090288 |MZ Boo |145240.2+453941 |RRAB | 12.3 | 13.1 | |* |51325.754 | | 0.50075 |12 | |80168 80168| NL80_2 +090290 |NO Boo |145501.9+144203 |EB:/RS | 11.19 | 11.42 | |* |51425.66 | | 3.4934 : | | |80170 80170| NL80_2 +090291 |NP Boo |145641.0+273025 |M | 10.5 | 13.0 | |V |53056. | | 233.3 | | |80002 GSC | NL80_2 +090292 |NQ Boo |145800.7+131149 |RS | 10.7 | 11.0 | |* | | | 59.66 | | |80158 GSC | NL80_2 +090294 |NS Boo |150018.9+335207 |BY | 11.81 |( 0.12 *)| |V | | | 2.4429 | | |80021 GSC | NL80_2 +090295 |NT Boo *|150032.8+495503 |EW | 12.1 | 12.35 | 12.35 |* |51408.707 | | 0.43489 | | |80101 80101| NL80_2 +090300 |NY Boo *|150109.6+484816 |EW | 12.15 | 12.5 | 12.5 |* |51406.635 | | 0.32679 | | |80101 80101| NL80_2 +090302 |OO Boo |150247.4+221821 |RS | 10.7 | 10.9 | |V | | | 1.153 : | | |80001 DM | NL80_2 +090304 |OQ Boo |150337.7+280334 |EW | 12.17 |( 0.09 )| |V |51218.5117 | | 0.397984 | | |80394 GSC | NL80_2 +090307 |OT Boo *|150650.4+473816 |EA | 9.8 | 10.25 | 10.0 |* |51434.97 | | 15.64 |07 |F8 |80407 80407| NL80_2 +090317 |PS Boo *|151944.2+502057 |EW | 12.3 | 12.6 | 12.5 |* |51403.825 | | 0.281615 | | |80101 80101| NL80_2 +090319 |PU Boo *|152302.2+453920 |EW | 10.6 | 10.9 | 10.85 |* |51395.826 | | 0.48224 | | |80101 80101| NL80_2 +090323 |PY Boo *|152822.1+513221 |EW | 12.1 | 12.65 | 12.55 |* |51403.125 | | 0.278047 | | |80101 80101| NL80_2 +090325 |QQ Boo *|153204.8+453408 |EW | 12.45 | 12.85 | 12.75 |* |51415.776 | | 0.27648 | | |80101 80101| NL80_2 +090328 |QT Boo *|153511.0+494744 |EW | 11.65 | 11.8 | 11.75 |* |51402.537 | | 0.319065 | | |80085 80085| NL80_2 +090329 |QU Boo |153605.6+420023 |SRD | 11.55 | 11.74 | |* |51442. | | 54. |35 | |80070 80070| NL80_2 +090331 |QW Boo *|153634.6+463809 |EW | 12.1 | 12.45 | 12.4 |* |51391.922 | | 0.29087 | | |80101 80101| NL80_2 +090332 |QX Boo *|153649.3+473719 |EW | 12.5 | 13.2 | 13.1 |* |51395.970 | | 0.360465 | | |80101 80101| NL80_2 +090334 |QZ Boo |153920.9+474524 |RS | 10.95 | 11.25 | |* | | | 20.0 | | |80115 80115| NL80_2 +090335 |V0335 Boo |154058.9+402700 |BY | 10.50 |( 0.05 *)| |V | | | 1.9775 | | |80021 GSC | NL80_2 +090336 |V0336 Boo |154436.6+461922 |SXPHE | 12.35 | 12.70 | |* |51388.951 | | 0.112892 |25 | |80178 80178| NL80_2 +090339 |V0339 Boo *|154835.0+432845 |EW | 10.7 | 10.9 | 10.9 |* |51393.654 | | 0.36281 | | |80102 80102| NL80_2 +099003 |gam Boo *|143204.7+381830 |DSCTC | 3.02 | 3.07 | |V | | | 0.2903137 | |A7III |03236 HIP | +099009 |iot Boo |141609.9+512202 |DSCTC | 4.73 | 4.78 | |V | | | 0.027 | |A7V |N0219 HIP | +0990102|kap 2 Boo *|141329.0+514724 |DSCTC | 4.50 | 4.58 | |V | | | 0.06479 | |A8IV |N0220 HIP | +099014 |ksi Boo *|145123.4+190602 |BY | 4.52 | 4.67 | |V | | | 10.137 | |G8Ve+K4Ve |03866 HIP | +099109 |i Boo *|150347.3+473915 |EW | 4.70 | 4.86 | 4.84 |V |52500.1807 | | 0.2678190 | |G2V+G2V |N0041 HIP | +100001 |R Cae |044030.1-381407 |M | 6.7 | 13.7 | |V |40645. | | 390.95 |41 |M6e |00001 00002| +100002 |S Cae *|045656.4-330800 |E | 10.47 | 11.28 | |V | | | | | |06450 CoD | +100003 |T Cae |044718.9-361234 |SR | 9.0 | 10.8 | |p |27840. | | 156. | |C6,4(N4) |00016 03389| +100004 |U Cae |045314.4-374916 |RRAB | 11.6 | 13.1 | |V |34314.590 | | 0.419794 |18 | |00080 06286| +100005 |V Cae |050137.7-390806 |RRAB | 12.33 | 13.28 | |V |34322.315 | | 0.570798 |19 | |05775 02381| +100006 |W Cae |045021.6-454650 |EA/SD: | 10. | 10.8 | |p |28752.600 | | 6.97885 | |G0 |03795 CoD | +100007 |X Cae *|050426.2-354218 |DSCTC | 6.28 | 6.39 | |V |39395.570 | | 0.1352227 |50 |F1III-F2IV |06451 CoD | +100008 |Y Cae |045047.7-401253 |LB | 8.74 | 8.86 | |V | | | | |M3(III) |05828 CoD | +100009 |Z Cae |045235.4-430338 |SR | 7.84 | 7.99 | |V |40667. | | 52. | |M2III |05828 CoD | +100012 |RT Cae |042538.7-380334 |EW: | 10.00 | 10.21 | |Hp| | | | | |HIP HIP | +100013 |RU Cae |042540.4-395009 |SRB | 8.08 | 8.24 | |Hp| | | | | |HIP HIP | +100014 |RV Cae |042809.5-415735 |LB | 6.44 | 6.56 | |Hp| | | | | |HIP HIP | +100015 |RW Cae |042940.9-482220 |SRB: | 8.81 | 8.91 | |Hp| | | | | |HIP HIP | +100016 |RX Cae *|043053.3-411027 |DSCTC | 7.07 | 7.16 | |Hp| | | | | |HIP HIP | +100017 |RY Cae |043235.4-401230 |LB: | 8.38 | 8.48 | |Hp| | | | | |HIP HIP | +100018 |RZ Cae |043301.5-381700 |EA: | 7.68 | 7.82 | |Hp| | | | | |HIP HIP | +100019 |SS Cae |043444.9-420146 |LB: | 8.23 | 8.33 | |Hp| | | | | |HIP HIP | +100020 |ST Cae |045449.4-293342 |LB: | 9.29 | 9.46 | |Hp| | | | | |HIP HIP | +100021 |SU Cae |045550.0-274217 |LC: | 8.51 | 8.71 | |Hp| | | | | |HIP HIP | +100022 |SV Cae |050056.5-420011 |SRB | 7.74 | 7.86 | |Hp| | | | | |HIP HIP | +100023 |SW Cae |044141.9-331453 |SRB | 9.0 | 10.9 | |V | | | 223. | | |79100 DM | +100024 |SX Cae |044356.5-430519 |EA | 12.27 | 13.1 | 12.95 |V |52215.706 | | 3.6521 |05 | |79018 79034| +110001 |R Cam *|141751.0+834954 |M | 6.97 | 14.4 | |V |43978. | | 270.22 |45 |S2,8e-S8,7e |00001 00002| +110002 |S Cam |054102.5+684755 |SRA | 7.7 | 11.6 | |V |43360. | | 327.26 |51 |C7,3e(R8e) |00001 00002| +110003 |T Cam *|044008.9+660849 |M | 7.3 | 14.4 | |V |43433. | | 373.20 |47 |S4,7e-S8.5,8e |00001 00002| +110004 |U Cam *|034148.2+623854 |SRB | 11.0 | 12.8 | |p |43060. | | | |C3,9-C6,4e(N5) | 00002| +110005 |V Cam *|060232.3+743027 |M | 7.7 | 16.0 | |V |43402. | | 522.45 |31 |M7e |00001 00002| +110006 |W Cam |062556.3+752704 |M | 10.8 | 14.5 | |V |35213. | | 283.6 | |M7 |05167 00100| +110007 |X Cam |044542.2+750604 |M | 7.4 | 14.2 | |V |44679. | | 143.56 |49 |K8-M8e |00001 00002| +110008 |Y Cam *|074111.0+760426 |EA+DSCTC | 10.50 | 12.24 | 10.60 |V |42961.92757 | | 3.3056244 |16 *|A8V |08593 05177| +110009 |Z Cam *|082513.2+730639 |UGZ | 10.0 | 14.5 | |V | | |( 22. ) | |pec(UG)+G1 | 00002| +110010 |RR Cam |053527.2+722758 |SRA | 9.5 | 11.3 | |V |37750. | | 123.88 |44 |M6 |00001 01078| +110011 |RS Cam *|085049.6+785741 |SRB | 7.9 | 9.7 | |V |27143. | | 88.6 |45 |M4III |00310 00102| +110012 |RT Cam |063519.4+640534 |M | 10.2 |< 14.0 | |p |43837. | | 366.31 | |M6e |00001 00100| +110013 |RU Cam *|072144.1+694015 |CWA | 8.10 | 9.79 | |V | | | 22. |35 |C0,1-C3,2e(K0-R0)| 02301| +110014 |RV Cam |043041.7+572442 |SRB | 9.3 | 10.6 | |p |28861. | | 101. | |M4II-III-M6 |03246 01078| +110015 |RW Cam *|035421.8+583912 |DCEP | 8.20 | 9.10 | |V |37389.57 | | 16.41437 |34 |F8Ib(F5-G1)+A: |03167 07170| +110016 |RX Cam *|040458.5+583935 |DCEP | 7.30 | 8.07 | |V |42766.583 | | 7.912024 |28 |F6Ib-G2Ib |08632 05186| +110017 |RY Cam *|043050.1+642630 |SRB | 8.9 | 11.0 | |p |39238. | | 135.75 | |M3III |01078 01078| +110018 |RZ Cam |063359.8+670131 |RRAB | 12.09 | 13.30 | |V |39418.983 | | 0.48044941 |05 | |02038 02039| +110019 |SS Cam *|071624.7+731957 |EA/SD/RS | 10.05 | 10.62 | 10.35 : |V |35223.672 | | 4.8242541 |20 |G1III+F5V |08623 GSC | +110020 |ST Cam |045113.4+681008 |SRB | 9.2 | 12.0 | |p | | | 300. : | |C5,4(N5) | 01078| +110021 |SU Cam |063812.7+735458 |M | 8.9 | 12.6 | |V |44265. | | 285.03 | |M5 |00001 00114| +110022 |SV Cam *|064119.1+821602 |EA/DW/RS | 8.40 |( 0.71 )|( 0.15 :pg)|V |42594.61518 | | 0.59306995 |17 *|G5V+G3V |08593 00010| +110023 |SW Cam *|080359.8+732431 |M | 9.8 | 13.3 : | |V |43419. | | 252.8 | |M5e |00001 00675| +110024 |SX Cam |042408.8+681318 |M | 10.8 | 15.5 : | |V |41650. | | 393.3 | |M6e: |00001 01078| +110025 |SY Cam |061121.5+800426 |SRB | 10.5 | 11.8 | |p | | | 400. : | |M4 |00104 BD | +110026 |SZ Cam *|040749.3+621959 |EA/DM | 7.0 | 7.29 | 7.24 |B |41665.2516 | | 2.6985439 |17 |O9.5V+B0 |04226 02071| +110027 |TT Cam |050037.8+581309 |M | 11.8 |< 15.5 | |p |28962. | | 252.6 | |M0-M7 |01078 01078| +110028 |TU Cam *|055457.8+595318 |EB/DM | 5.12 | 5.29 | 5.22 |V |38051.375 | | 2.933241 | |A0IV-V |05266 BD | +110029 |TV Cam *|040732.8+601907 |DCEP | 11.22 | 12.21 | |V |37407.35 | | 5.29497 |32 |F3pIb-F7pIb |02304 01078| +110030 |TW Cam |042047.6+572629 |RVB | 8.98 | 10.27 | |V |38607.8 | | 87.22 | |F8Ib-G8Ib |08079 01078| +110031 |TX Cam *|050051.2+561055 |M | 11.6 | 17.68 | |B |44215. | | 557.4 | |M8-M10 |01078 05118| +110033 |TZ Cam |055345.3+630050 |SRB | 11.5 | 12.4 | |p |28783. | | 253.3 |43 |M8 |01078 01078| +110034 |UU Cam |035217.7+743357 |RRC | 11.8 | 12.3 | |p |27160.516 | | 0.3412637 |40 |A7 |00001 01078| +110035 |UV Cam |040553.9+614740 |SRB | 7.5 | 8.1 | |V | | | 294. : | |C5,3(R8) |01078 01078| +110036 |UW Cam |044828.6+733453 |SR | 11.5 | 12.9 | |p |29170. | | 544. |63 |M1 |01078 01078| +110037 |UX Cam |051046.2+684014 |LB | 9.5 | 10.5 | |p | | | | |M6 |01078 01078| +110038 |UY Cam *|075858.9+724715 |RRC | 11.33 | 11.66 | |V |35565.239 | | 0.26704234 |45 |A3III-A6III |03258 00675| +110039 |UZ Cam *|141902.3+810316 |M | 12.4 |< 14.5 | |p |43773. | | 225.64 | |M3 |00001 00114| +110043 |VY Cam |050608.0+563828 |SRA | 12.4 | 13.6 | |p |29093. | | 227. |43 |M6 |01078 01078| +110044 |VZ Cam |073104.5+822441 |SR | 4.80 | 4.96 | |V | | | 23.7 | |M4IIIa |02082 00462| +110045 |WW Cam *|043125.3+642146 |EA/DM | 10.6 | 11.1 | 11.1 |p |40381.534 | | 2.274367 |09 |A: |00001 07361| +110046 |WX Cam |034903.8+531100 |LB | 12.2 | 13.0 | |p | | | | |S5,8 |01110 02320| +110047 |WY Cam |043953.6+790751 |M | 11.4 |< 15.1 | |p |33654. | | 406.96 | |S2e |00001 GSC | +110048 |WZ Cam |073029.9+750346 |SR | 11.7 | 13.1 | |p | | | | |M4 |00144 00319| +110049 |XX Cam *|040838.8+532139 |RCB: | 8.09 | 9.8 | |B | | | | |G1I(C0-2,0) |02086 08129| +110051 |XZ Cam |051712.7+755005 |EA/DS | 11.4 | 14.4 | |p |32468.503 | | 11.0146 |08 *|A0 |00410 00988| +110052 |YY Cam |054828.9+800325 |SR | 12.3 |< 14.8 | |p |32373. | | 219. | |M2 |00001 01351| +110053 |YZ Cam |062325.8+800415 |M | 12.0 |< 14.4 | |p |32490. | | 362. | |M8 |03122 01351| +110054 |ZZ Cam |041743.9+622048 |LB | 8.7 | 9.3 | |p | | | | |M0-M5 |01078 01078| +110055 |AA Cam |071452.1+684815 |LB | 9.0 | 9.6 | |p | | | | |M5(S) |00333 BD | +110056 |AB Cam *|034608.3+584703 |DCEP | 11.35 | 12.34 | |V |37406.586 | | 5.78764 |32 |F3pIb-G0pIb |00001 02090| +110062 |AH Cam *|040638.9+553000 |RRAB | 11.31 | 12.33 | |V |38729.458 | | 0.3687346 |21 |B9 |00001 06108| +110063 |AI Cam |044104.7+730132 |SR: | 12.2 |< 14.5 | |p |29730. | | | |M5 |00822 00822| +110064 |AK Cam *|083825.7+765528 |EA/SD: | 10.3 | 10.9 | |p |41515.390 | | 2.226835 |11 |F4 |00001 BD | +110065 |AL Cam |114024.7+801410 |EA/SD: | 10.5 | 11.3 | |p |26411.523 | | 1.32833335 |15 |A5V |03253 07187| +110067 |AN Cam |040557.6+765312 |EA/DS | 10.4 | 11.2 | |p |26003.470 | | 20.9986 |07 |F8 |04014 BD | +110068 |AO Cam |042813.6+530245 |EW/KW | 9.5 | 10. | |p |44559.9604 | | 0.329917 | | |05442 03776| +110069 |AP Cam |045459.7+741727 |LB | 10.5 | 11.3 | |p | | | | |M6.5 |04057 BD | +110070 |AQ Cam |045117.9+545600 |EA/SD | 12. | 16. : | |p |30735.398 | | 3.10911 |10 *| |03142 04059| +110071 |AR Cam |050220.0+535603 |M | 12.5 |< 15.5 | |p | | | | | |04059 04059| +110072 |AS Cam *|052946.9+692945 |EA/DM | 8.57 | 9.19 | 8.97 |V |40204.5137 | | 3.4309714 |08 |B8V+B9 |05267 BD | +110073 |AT Cam *|053717.2+670234 |EW/DM: | 9.8 | 10.6 | 10.6 |p |26057.475 | | 1.39590 | |A0 |04109 04109| +110074 |AU Cam *|054556.0+685401 |SRA | 10.0 | 10.7 | |V |38140. | | 366. |30 | |04087 04087| +110075 |AV Cam *|062801.9+774934 |EA/KE: | 11.6 | 12.1 | |p |26251.410 | | 1.444917 |13 | |04020 00174| +110076 |AW Cam *|064728.8+693745 |EB/KE | 8.22 | 8.66 | 8.36 |V |38738.452 | | 0.7713468 | |A0V | BD | +110077 |AX Cam *|080142.5+601928 |ACV | 5.95 | 6.08 | |V |41701.41 | | 8.0278 |40 |A2p(Sr-Cr-Eu) |05268 BD | +110078 |AY Cam *|082551.8+771307 |EA/DM | 9.69 | 10.26 | 10.23 |V |39385.5084 | | 2.7349658 |13 *|G0 |05456 04132| +110079 |AZ Cam *|091438.4+815630 |EB/DM | 10.1 | 10.9 | 10.8 |p |40655.4792 | | 1.319226 | |F0 |00001 BD | +110081 |BC Cam |074627.4+624950 |ACV | 6.43 | 6.48 | |V |41254.08 | | 4.285 | |F0p(Sr-Cr-Eu) |07441 BD | +110082 |BD Cam |034209.3+631301 |LB | 5.04 | 5.17 | |V | | | | |S5,3(M4III) |01371 BD | +110083 |BE Cam |034931.3+653134 |LC | 4.35 | 4.48 | |V | | | | |M2II |04590 BD | +110085 |BG Cam |042112.6+751119 |LB | 11.38 | 11.81 | |V | | | | |M4III |07853 07853| +110086 |BH Cam |055502.4+645843 |LB | 2.37 | 2.53 | |K | | | | |M8 |06005 04032| +110087 |BI Cam *|080646.6+662920 |LB | 11.1 | | |R | | | | |M5 |04057 04057| +110088 |BK Cam *|031959.3+653908 |GCAS | 4.78 | 4.89 | |V | | | | |B2Ve | BD | +110090 |BM Cam *|050612.1+590117 |RS | 6.18 |( 0.140 )| |V |44288.8 | | 82.8 | |K0III |08737 BD | +110091 |BN Cam |051222.5+735648 |ACV | 5.3 |( 0.05 )| |V |41252.91 | | 0.7325 | |A0p(Si) |08488 BD | +110094 |BQ Cam |033459.9+531023 |XFPNG | 11.3 | 12.1 | |J | | | | | |67040 67482| +110096 |BS Cam |052259.9+692405 |DSCTC | 8.0 |( 0.05 )| |V | | | | | |67044 BD | +110099 |BV Cam |050608.4+585821 |GCAS | 5.08 |( 0.07 )| |V | | | | | |68046 BD | +110100 |BW Cam |051952.1+631556 |M | 1.69 | 3.09 | |K | | | | | |68015 USNO | +110103 |BZ Cam |062934.1+710437 |NL | 12.5 | 14.1 | |B | | | | | |70011 70010| +110104 |CC Cam |045717.4+692719 |M | 10.7 | 14.5 | |V | | | | | |71035 71024| +110105 |CD Cam |075811.0+724552 |EW | 11.63 | 11.85 | |V | | | | | |72023 72024| +110106 |CE Cam |032954.7+585244 |ACYG | 4.54 |( 0.03 )| |V | | | | | |73044 BD | +110110 |CI Cam |041942.1+555958 |ZAND: | 12.31 | 13.08 | |B | | | | | |73049 GSC | +110111 |CK Cam |050631.6+552113 |DCEP | 7.19 | 7.80 | |V | | | | | |73050 BD | +110112 |CL Cam |051831.1+755649 |RS | 7.55 |( 0.13 )| |V | | | | | |73005 BD | +110113 |CM Cam |070415.1+752441 |FKCOM | 6.96 |( 0.05 )| |V | | | | | |73005 BD | +110114 |CN Cam |113611.8+811737 |RRAB | 9.80 | 10.27 | |B | | | | | |73051 BD | +110115 |CO Cam |121211.9+773659 |ELL | 5.14 |( 0.07 )| |V | | | | | |73052 BD | +110116 |CP Cam |031739.2+641220 |EB | 10.75 | 11.23 | |Hp| | | | | |HIP HIP | +110117 |CQ Cam |032440.6+643510 |LC | 5.15 | 5.27 | |Hp| | | | | |HIP HIP | +110118 |CR Cam |032839.2+622935 |BE: | 8.22 | 8.53 | |Hp| | | | | |HIP HIP | +110119 |CS Cam |032904.1+595625 |ACYG: | 4.29 | 4.34 | |Hp| | | | | |HIP HIP | +110120 |CT Cam |033801.0+551015 |BE | 7.70 | 7.83 | |Hp| | | | | |HIP HIP | +110121 |CU Cam |034235.9+771013 |EA | 7.94 | 8.18 | |Hp| | | | | |HIP HIP | +110122 |CV Cam |034149.8+531737 |EB | 9.42 | 9.66 | |Hp| | | | | |HIP HIP | +110123 |CW Cam |034300.3+573356 |IA: | 8.31 | 8.52 | |Hp| | | | | |HIP HIP | +110124 |CX Cam |034606.2+535419 |SRB: | 7.79 | 7.97 | |Hp| | | | | |HIP HIP | +110125 |CY Cam |035249.0+532901 |LPB: | 8.43 | 8.51 | |Hp| | | | | |HIP HIP | +110126 |CZ Cam *|035843.6+690100 |* | 9.52 | 9.72 | |Hp| | | | | |HIP HIP | +110127 |DD Cam |035838.2+535919 |EB | 7.04 | 7.23 | |Hp| | | | | |HIP HIP | +110128 |DE Cam |040421.6+531945 |BE | 8.16 | 8.33 | |Hp| | | | | |HIP HIP | +110129 |DF Cam |040542.3+570737 |SR: | 9.01 | 9.35 | |Hp| | | | | |HIP HIP | +110130 |DG Cam |041415.2+663253 |LB: | 8.34 | 8.47 | |Hp| | | | | |HIP HIP | +110131 |DH Cam |041721.1+571042 |ACV | 6.70 | 6.74 | |Hp| | | | | |HIP HIP | +110132 |DI Cam |042842.1+794207 |EA | 7.85 | 8.09 | |Hp| | | | | |HIP HIP | +110133 |DK Cam |042703.5+714653 |EA | 7.60 | 7.71 | |Hp| | | | | |HIP HIP | +110134 |DL Cam |043201.8+535439 |BCEP: | 5.81 | 5.85 | |Hp| | | | | |HIP HIP | +110135 |DM Cam |043316.9+524818 |LB | 7.15 | 7.23 | |Hp| | | | | |HIP HIP | +110136 |DN Cam |044246.2+725842 |EW | 8.28 | 8.74 | |Hp| | | | | |HIP HIP | +110137 |DO Cam |044905.8+613027 |SRB | 6.91 | 7.25 | |Hp| | | | | |HIP HIP | +110138 |DP Cam |045025.1+631959 |E: | 9.90 | 10.44 | |Hp| | | | | |HIP HIP | +110139 |DQ Cam |045414.8+583813 |E: | 8.12 | 8.23 | |Hp| | | | | |HIP HIP | +110140 |DR Cam |045709.6+590713 |SRB | 6.46 | 6.63 | |Hp| | | | | |HIP HIP | +110141 |DS Cam |050218.9+634613 |LB: | 8.86 | 8.96 | |Hp| | | | | |HIP HIP | +110142 |DT Cam |051357.7+563029 |E: | 8.17 | 8.23 | |Hp| | | | | |HIP HIP | +110143 |DU Cam |051723.4+620049 |SRB | 8.60 | 9.18 | |Hp| | | | | |HIP HIP | +110144 |DV Cam |051927.9+580703 |EA | 6.10 | 6.30 | |Hp| | | | | |HIP HIP | +110145 |DW Cam |052345.5+684114 |BY: | 10.96 | 11.56 | |Hp| | | | | |HIP HIP | +110146 |DX Cam |052344.2+604316 |LB: | 8.90 | 9.18 | |Hp| | | | | |HIP HIP | +110147 |DY Cam |054103.7+785842 |LB: | 9.28 | 9.46 | |Hp| | | | | |HIP HIP | +110148 |DZ Cam |053820.6+692358 |LB: | 8.49 | 8.62 | |Hp| | | | | |HIP HIP | +110149 |EE Cam |054555.0+631747 |DSCTC | 7.78 | 7.86 | |Hp| | | | | |HIP HIP | +110150 |EF Cam |054924.9+780324 |LB: | 8.85 | 8.96 | |Hp| | | | | |HIP HIP | +110151 |EG Cam |055937.8+583535 |BY: | 10.30 | 10.54 | |Hp| | | | | |HIP HIP | +110152 |EH Cam |060201.3+694757 |LB: | 9.41 | 9.59 | |Hp| | | | | |HIP HIP | +110153 |EI Cam |060216.3+665359 |LB: | 7.12 | 7.16 | |Hp| | | | | |HIP HIP | +110154 |EK Cam |061206.8+625809 |LB: | 8.74 | 8.84 | |Hp| | | | | |HIP HIP | +110155 |EL Cam |062804.9+744435 |LB: | 9.03 | 9.60 | |Hp| | | | | |HIP HIP | +110156 |EM Cam |063229.4+665453 |LB: | 9.13 | 9.31 | |Hp| | | | | |HIP HIP | +110157 |EN Cam |063322.5+630821 |ACV: | 8.99 | 9.04 | |Hp| | | | | |HIP HIP | +110158 |EO Cam |064211.3+742851 |SRB | 8.88 | 9.23 | |Hp| | | | | |HIP HIP | +110159 |EP Cam |064837.5+765924 |SRB | 7.61 | 7.86 | |Hp| | | | | |HIP HIP | +110160 |EQ Cam |064840.5+644516 |SRB | 7.94 | 8.08 | |Hp| | | | | |HIP HIP | +110161 |ER Cam |065835.1+705451 |LB: | 9.04 | 9.16 | |Hp| | | | | |HIP HIP | +110162 |ES Cam |071029.9+633709 |LB | 8.72 | 8.90 | |Hp| | | | | |HIP HIP | +110163 |ET Cam |071627.9+792845 |LB: | 9.51 | 9.63 | |Hp| | | | | |HIP HIP | +110164 |EU Cam |071700.2+740841 |SRB | 9.24 | 9.54 | |Hp| | | | | |HIP HIP | +110165 |EV Cam |072150.7+750522 |ACV: | 6.95 | 6.99 | |Hp| | | | | |HIP HIP | +110166 |EW Cam |072728.0+724213 |RRAB | 9.33 | 9.83 | |Hp| | | | | |HIP HIP | +110167 |EX Cam |073124.3+660805 |LB: | 7.24 | 7.34 | |Hp| | | | | |HIP HIP | +110168 |EY Cam |073541.5+672710 |SRB: | 8.52 | 8.80 | |Hp| | | | | |HIP HIP | +110169 |EZ Cam |073604.4+662813 |SRB | 7.17 | 7.31 | |Hp| | | | | |HIP HIP | +110170 |FF Cam |074652.9+814057 |BE: | 7.71 | 8.02 | |Hp| | | | | |HIP HIP | +110171 |FG Cam |074250.5+610927 |SRD | 7.97 | 8.11 | |Hp| | | | | |HIP HIP | +110172 |FH Cam |075739.8+773435 |EW | 6.91 | 6.97 | |Hp| | | | | |HIP HIP | +110173 |FI Cam |075828.4+671854 |LB: | 8.88 | 9.00 | |Hp| | | | | |HIP HIP | +110174 |FK Cam |080732.0+604233 |SRB | 8.90 | 9.38 | |Hp| | | | | |HIP HIP | +110175 |FL Cam |085046.6+780955 |LB | 6.75 | 7.03 | |Hp| | | | | |HIP HIP | +110176 |FM Cam |090915.8+745321 |SRB: | 9.07 | 9.29 | |Hp| | | | | |HIP HIP | +110177 |FN Cam |092258.0+771311 |EW | 8.60 | 9.06 | |Hp| | | | | |HIP HIP | +110178 |FO Cam |094500.1+851440 |LB: | 10.08 | 10.22 | |Hp| | | | | |HIP HIP | +110179 |FP Cam |113252.4+795500 |LB: | 8.15 | 8.28 | |Hp| | | | | |HIP HIP | +110180 |FQ Cam |115247.4+765920 |LB: | 9.36 | 9.53 | |Hp| | | | | |HIP HIP | +110181 |FR Cam |120018.6+805112 |LB | 6.16 | 6.37 | |Hp| | | | | |HIP HIP | +110182 |FS Cam |140538.6+813624 |LB | 8.81 | 8.99 | |Hp| | | | | |HIP HIP | +110184 |FU Cam |032350.0+645647 |M | 12.2 | 14.8 | |p | | | | | |75002 GSC | +110187 |FX Cam |033319.2+680441 |SR: | 12.1 | 12.8 | |p | | | | | |75002 GSC | +110189 |FZ Cam |034025.2+604652 |SR: | 12.1 | 13.2 | |p | | | | | |75002 GSC | +110193 |GK Cam |034400.2+654659 |SR: | 12.1 | 12.9 | |p | | | | | |75002 GSC | +110194 |GL Cam |034840.2+581712 |SR: | 12.4 | 13.8 | |p | | | | | |75002 GSC | +110195 |GM Cam |035910.1+580108 |M | 12.4 |< 15.0 | |p | | | | | |75002 | +110198 |GP Cam |040427.8+555527 |SR: | 10.5 | 11.4 | |p | | | | | |75002 GSC | +110199 |GQ Cam |040923.3+570528 |ACYG | 8.13 | 8.20 | |Hp| | | | | |75030 BD | +110200 |GR Cam |041512.4+525538 |SR: | 12.0 | 14.4 | |p | | | | | |75002 GSC | +110203 |GU Cam |042446.6+555543 |SR: | 11.8 | 13.4 | |p | | | | | |75002 GSC | +110205 |GW Cam |043142.0+581807 |SR: | 12.2 | 13.0 | |p | | | | | |75002 GSC | +110207 |GY Cam |043517.5+621624 |SR: | 12.5 | 14.2 | |p | | | | | |75002 GSC | +110209 |HH Cam |043517.7+572329 |SR: | 11.3 | 13.2 | |p | | | | | |75002 GSC | +110211 |HK Cam |043619.9+665102 |SR: | 11.8 | 12.6 | |p | | | | | |75002 GSC | +110215 |HO Cam |051254.1+591936 |M | 12.1 |< 15.3 | |p | | | | | |75002 GSC | +110216 |HP Cam |060633.6+673300 |SR: | 11.3 | 13.1 | |p | | | | | |75002 GSC | +110217 |HQ Cam |062035.6+671523 |EA | 12.1 | 14.3 | |p | | | | | |75002 GSC | +110223 |HW Cam |082734.3+835257 |EA | 10.3 |( 0.45 )| |V | | | | | |75050 75051| +110226 |HZ Cam |033641.4+532837 |SR: | 11.1 | 11.6 | |V | | | | | |76012 GSC | +110227 |II Cam |034015.6+685435 |SR: | 11.8 | 12.4 | |V | | | | | |76012 GSC | +110232 |IO Cam |042218.5+563538 |SR: | 12.1 | 12.7 | |V | | | | | |76258 GSC | +110233 |IP Cam |042548.0+525648 |SR: | 12.3 | 12.8 | |V | | | | | |76012 GSC | +110237 |IT Cam |043411.0+573334 |LB | 12.1 | 12.8 | |V | | | | | |76012 GSC | +110238 |IU Cam |043916.9+654757 |SR: | 11.8 | 12.4 | |V | | | | | |76012 GSC | +110239 |IV Cam |050422.2+674748 |SR: | 11.4 | 12.4 | |V | | | | | |76012 GSC | +110240 |IW Cam |050842.5+661601 |M | 12.5 |< 14.7 | |V | | | | | |76012 USNO | +110243 |IZ Cam |051750.9+645208 |SR: | 11.9 | 12.6 | |V | | | | | |76012 GSC | +110244 |KK Cam |051946.1+642602 |M | 12.0 |< 14.5 | |V | | | | | |76012 GSC | +110245 |KL Cam |052243.7+641908 |SR: | 10.8 | 12.9 | |V | | | | | |76012 GSC | +110247 |KN Cam |053729.1+672533 |M | 10.7 | 14.8 | |V | | | | | |76012 GSC | +110248 |KO Cam |054744.5+563233 |SR: | 11.6 | 12.9 | |V | | | | | |76012 GSC | +110249 |KP Cam |054903.6+690908 |SR: | 11.7 | 12.9 | |V | | | | | |76012 GSC | +110250 |KQ Cam |055622.6+662701 |SR: | 11.8 | 13.0 | |V | | | | | |76012 GSC | +110251 |KR Cam |060402.0+593219 |SR: | 11.1 | 12.1 | |V | | | | | |76012 GSC | +110252 |KS Cam |060822.8+575736 |SR: | 11.0 | 12.0 | |V | | | | | |76012 GSC | +110253 |KT Cam |061050.5+674413 |SR: | 12.1 | 13.1 | |V | | | | | |76012 GSC | +110254 |KU Cam |061424.8+683850 |SR: | 11.7 | 12.7 | |V | | | | | |76012 GSC | +110255 |KV Cam |064125.7+645032 |SR: | 11.4 | 11.9 | |V | | | | | |76012 GSC | +110256 |KW Cam |064835.3+642100 |SR: | 10.3 | 11.4 | |V | | | | | |76012 GSC | +110257 |KX Cam |032305.9+565244 |M | 12.4 | 14.7 | |I | | | | | |77012 77013| +110259 |KZ Cam |033819.7+565558 |ACV | 6.28 | 6.30 | |V | | | | | |77029 DM | +110260 |LL Cam |035104.2+584225 |M | 9.3 | 12.9 | |I | | | | | |77012 77013| +110261 |LM Cam |035635.8+572027 |M | 9.5 | 13.9 | |I | | | | | |77012 77013| +110262 |LN Cam |040547.3+584522 |ELL: | 10.3 |( 0.04 )| |V | | | | | |77034 DM | +110263 |LO Cam |040609.0+584831 |DCEP | 11.67 | 12.84 | |B | | | | | |77034 77214| +110264 |LP Cam |040940.4+622712 |RRAB | 11.10 | 11.75 | |V | | | | | |77036 77214| +110265 |LQ Cam |041222.6+535506 |M | 7.3 | 11.5 | |I | | | | | |77012 77013| +110266 |LR Cam |054305.2+684007 |EW | 10.7 |( 0.63 )| |V | | | | | |77048 77048| +110272 |LX Cam |032446.1+555212 |M: | 12.1 |< 14.5 | |* |52194 :| | 275. : | | |78006 2MASS| +110273 |LY Cam |033508.3+550455 |SRA: | 10.7 |< 12.4 | |* |51401 | | 340. : | | |78006 2MASS| +110275 |MM Cam *|035100.5+690610 |* | 7.11 |( 0.04 )| |V | | | | |K0III |78018 DM | +110276 |MN Cam |035729.8+545618 |DCEP | 11.2 | 11.7 | |* |51485.596 | | 8.196 | | |78061 GSC | +110277 |MO Cam |035859.5+561113 |BE | 11.14 | 11.39 | |V | | | | |Be |78062 GSC | +110278 |MP Cam *|040101.2+551110 |EB: | 12.5 | 14.3 | 13.0 |* |53003.2500 | | 2.6092 | | |78214 78214| +110279 |MQ Cam |040131.0+550243 |DCEP | 11.9 | 12.3 | |* |51451.1 | | 6.60 |25 | |78061 GSC | +110280 |MR Cam |041218.1+584005 |M | 9.8 | 12.6 | |* |51520 | | 350. : | | |78040 GSC | +110281 |MS Cam |043354.3+643800 |BY | 7.75 |( 0.03 )| |V | | | 7.604 | |G0Ve |78018 DM | +110284 |MV Cam |081947.2+774432 |SRA | 9.1 | 9.6 | |* |51630 | | 56. | | |78040 GSC | +110285 |MW Cam |122643.7+812826 |DSCT | 9.25 | 9.36 | |Hp| | | 0.132792 | |F0 |78157 DM | +110286 |MX Cam |035624.5+690229 |EA | 12.30 | 14.4 | 12.47 |* |51401.892 | | 1.40856 |16 | |79006 GSC | +110287 |MY Cam |035918.3+571414 |ELL | 9.8 | 10.15 | |* |51466.763 | | 1.175 | |O6V(f)+O6V(f) |79146 DM | +110288 |MZ Cam |040515.9+543611 |DCEPS | 11.3 | 11.7 | |* |51500.77 | | 3.25 |40 | |79025 79026| +110290 |NO Cam |041451.6+752041 |EW | 12.2 | 13.0 | 12.9 |* |51497.718 | | 0.43075 | |F5 |79025 GSC | +110291 |NP Cam |060205.2+725105 |SRD: | 11.1 | 11.9 | |* |51517. | | 35.0 |35 |F4 |79025 79046| +110293 |NR Cam |075430.6+780645 |EW | 10.76 | 11.25 | 11.18 |* |51589.757 | | 0.255885 | | |79009 79062| +110296 |NU Cam |095447.4+832101 |EB | 10.75 | 11.15 | 11.05 |* |51278.439 | | 0.690046 | |F4 |79006 79077| +110297 |NV Cam |031804.7+613406 |SR: | 12.45 | 12.96 | |* | | | | | |80062 USNO | NL80_1 +110299 |NX Cam *|032610.6+593443 |EW: | 10.5 | 10.95 | 10.8 |* |51447.79 | | 0.6058 | | |80101 80101| NL80_1 +110302 |OO Cam *|033218.4+611641 |EA | 10.90 | 11.33 | 11.24 |* |51578.625 | | 8.1190 |03 : | |80023 GSC | NL80_1 +110304 |OQ Cam *|033334.3+641646 |EW | 10.9 | 11.4 | 11.4 |* |51501.714 | | 0.43784 | | |80144 80144| NL80_1 +110305 |OR Cam |033423.7+582450 |DCEPS | 9.62 | 9.88 | |* |51479.64 | | 3.6818 |50 : | |80131 80131| NL80_1 +110307 |OT Cam |034022.3+640611 |EA/RS: | 12.0 | 12.5 | |* |51495.88 | | 10.883 |05 | |80145 80145| NL80_1 +110308 |OU Cam |034235.5+662221 |CEP | 11.55 | 11.8 | |* |51504.5 | | 25.3 |43 | |80116 80116| NL80_1 +110311 |OX Cam |034825.7+592632 |DCEP | 10.0 | 10.5 | |* |51473.8 | | 5.07 |22 |F6-G1Ib |80081 GSC | NL80_1 +110313 |OZ Cam |034844.8+671613 |SR | 12.3 | 12.8 | |* |51444. | | 70. |40 | |80070 80070| NL80_1 +110314 |PP Cam *|034903.5+742734 |EA | 12.45 | 13.01 | 13.01 |* |51421.782 | | 0.84040 |11 | |80042 GSC | NL80_1 +110315 |PQ Cam *|035041.8+673446 |EA | 11.65 | 11.95 | |* | | | 1.21565 |10 | |80013 GSC | NL80_1 +110318 |PT Cam *|035452.5+673807 |EA | 11.88 | 12.28 | 12.13 |* |51482.655 | | 4.0451 |04 | |80013 GSC | NL80_1 +110319 |PU Cam |035456.1+672412 |SRB | 10.7 | 11.1 | |* | | | 56. | | |80100 GSC | NL80_1 +110320 |PV Cam |035622.4+571526 |DCEPS: | 11.9 | 12.2 | |* |51495.1 | | 3.09 |50 : | |80081 GSC | NL80_1 +110321 |PW Cam |035624.6+651614 |SR | 10.6 | 10.8 | |* |51483. | | 29. |35 | |80070 80070| NL80_1 +110322 |PX Cam *|035748.1+573128 |EA | 12.49 | 13.55 | 12.77 |* |51553.62 | | 4.5534 |12 | |80013 GSC | NL80_1 +110323 |PY Cam |035837.7+551427 |SRB | 10.8 | 11.2 | |* | | | 50. | | |80100 GSC | NL80_1 +110325 |QQ Cam |040236.5+642653 |CWA | 12.2 | 12.7 | |* |51488.2 | | 12.3 |58 | |80081 GSC | NL80_1 +110327 |QS Cam |040346.5+571452 |DCEP | 11.6 | 12.1 | |* |51521.9 | | 5.12 |22 | |80081 GSC | NL80_1 +110329 |QU Cam *|040755.1+773122 |EA | 11.05 | 11.5 | 11.20 |* |51503.629 | | 0.75184 |15 | |80150 80150| NL80_1 +110330 |QV Cam *|040811.3+555012 |EB | 12.10 | 12.65 : | 12.5 : |* |51420.645 | | 2.9060 | |OB |80013 GSC | NL80_1 +110333 |QY Cam *|041148.1+564627 |EA | 12.5 | 12.95 | 12.95 |* |51519.26 | | 2.5453 |16 | |80150 80150| NL80_1 +110335 |V0335 Cam *|041441.8+675013 |EA | 11.62 | 11.9 | 11.66 |* |51378.998 | | 1.24513 |13 | |80013 GSC | NL80_1 +110337 |V0337 Cam *|041620.0+685821 |EB | 9.95 | 10.40 | 10.15 |* |51523.466 | | 0.75678 | |A2 |80144 80144| NL80_1 +110339 |V0339 Cam *|041945.1+555736 |DSCTC | 12.35 | 12.42 | |V | | | 0.0506318 | | |80165 80165| NL80_1 +110347 |V0347 Cam *|042623.1+791352 |EA | 11.37 | 11.8 : | 11.7 : |* |51532.600 | | 9.4545 |03 : | |80023 GSC | NL80_1 +110355 |V0355 Cam |042846.2+551701 |RRC | 12.2 | 12.5 | |* |51589.623 | | 0.21852 |32 | |80001 GSC | NL80_1 +110358 |V0358 Cam |043006.0+560317 |LB | 10.6 | 11.0 | |* | | | | | |80100 GSC | NL80_1 +110359 |V0359 Cam |043018.7+535625 |DCEP | 11.9 | 12.4 | |* |51538.9 | | 6.6 |23 | |80081 GSC | NL80_1 +110360 |V0360 Cam |043023.2+550409 |SRS | 11.7 | 11.9 | |* |51438. | | 28.5 | | |80001 GSC | NL80_1 +110361 |V0361 Cam *|043251.2+784254 |EA | 11.27 | 11.5 | 11.4 |* |51598.565 | | 8.6386 |06 | |80023 GSC | NL80_1 +110362 |V0362 Cam *|043336.2+640538 |EW | 11.63 | 12.12 | 12.08 |* |51443.7706 | | 0.7208 | | |80016 80016| NL80_1 +110363 |V0363 Cam |043442.0+554232 |SR | 11.0 | 11.4 | |* | | | 32. | | |80016 80016| NL80_1 +110365 |V0365 Cam |043633.6+572405 |SRA: | 11.6 | 13.6 | |* |51430. | | 260. : | | |80016 80016| NL80_1 +110366 |V0366 Cam *|043739.6+715846 |EW | 10.55 | 10.85 | 10.85 |* |51525.04 | | 0.77337 | | |80102 80102| NL80_1 +110367 |V0367 Cam |044055.2+533807 |DSCT | 10.69 | 10.90 | |* | | | 0.121596 | | |80171 GSC | NL80_1 +110369 |V0369 Cam *|044330.2+635912 |EW | 12.5 | 13.2 | 13.2 |* |51483.6406 | | 0.3452 | | |80016 80016| NL80_1 +110370 |V0370 Cam |044336.9+693221 |SR | 11.6 | 12.15 | |* | | | 49.7 | | |80070 80070| NL80_1 +110371 |V0371 Cam |044424.1+785412 |SRD | 12.5 | 12.8 | |* |51493. | | 56.5 | | |80070 80070| NL80_1 +110373 |V0373 Cam *|044644.0+592751 |EW | 12.5 | 13.0 : | 12.8 : |* |51553.706 | | 0.3858 | | |80144 80144| NL80_1 +110374 |V0374 Cam *|044818.9+640116 |EA | 12.4 | 13.1 | 12.55 |* |51489.326 | | 0.80688 |08 | |80150 80150| NL80_1 +110376 |V0376 Cam |045721.0+792059 |SXPHE | 11.75 | 12.15 | |* |51495.807 | | 0.1403229 |18 | |80178 80178| NL80_1 +110378 |V0378 Cam *|050009.2+734108 |EA | 12.16 | 12.7 : | 12.7 : |* |51633.64 | | 5.5577 |08 | |80013 GSC | NL80_1 +110379 |V0379 Cam *|050442.9+613353 |EA | 12.29 | 15.07 | 12.42 |V |54481.2279 | | 1.1670805 |19 | |80180 80180| NL80_1 +110381 |V0381 Cam *|050842.0+704044 |EB | 12.50 | 13.1 | 12.75 |* |51599.730 | | 0.458030 | | |80013 GSC | NL80_1 +110382 |V0382 Cam *|051018.5+631951 |EA | 10.8 | 11.1 | 10.95 |* |51517.85 | | 0.86803 |10 : | |80150 80150| NL80_1 +110383 |V0383 Cam *|051039.4+751034 |EW | 11.65 | 11.90 | 11.85 |* |51526.953 | | 0.37727 | | |80144 80144| NL80_1 +110384 |V0384 Cam *|051853.8+654233 |EA | 12.5 | 12.75 | 12.75 |* |51522.42 | | 1.3846 |12 | |80107 80107| NL80_1 +110386 |V0386 Cam *|052133.9+714546 |EW | 12.3 | 12.75 | 12.7 |* |51456.594 | | 0.50808 | | |80085 80085| NL80_1 +110387 |V0387 Cam *|052146.3+654455 |EB | 12.5 | 13.1 | 12.75 |* |51520.553 | | 0.65113 | | |80144 80144| NL80_1 +110388 |V0388 Cam |052202.3+772744 |SRD | 11.05 | 11.3 | |* | | | 44.5 | | |80070 80070| NL80_1 +110389 |V0389 Cam *|052254.8+700015 |EW | 11.8 | 12.5 | 12.3 |* |51496.523 | | 0.4399 | | |80144 80144| NL80_1 +110391 |V0391 Cam *|053233.9+624752 |UGSU | 11.6 | 16.9 | |V | | | (133.6 ) | |pec(UG) |80188 80188| NL80_1 +110395 |V0395 Cam *|053536.0+710335 |EA | 12.30 | 12.91 | 12.39 |* |51459.747 | | 2.7527 |11 | |80013 GSC | NL80_1 +110399 |V0399 Cam *|053823.5+611725 |EA | 10.02 | 10.20 | 10.18 |* |51508.70 | | 2.5978 |10 : |F0 |80107 80107| NL80_1 +110403 |V0403 Cam *|053958.5+672018 |EW | 11.16 | 11.38 | 11.38 |* |51513.661 | | 0.38635 | | |80144 80144| NL80_1 +110405 |V0405 Cam *|054250.7+642515 |EW | 11.52 | 11.75 | 11.72 |* |51517.885 | | 0.37475 | | |80144 80144| NL80_1 +110407 |V0407 Cam |054353.5+725451 |SR | 11.37 | 11.68 | |* | | | 48. | | |80070 80070| NL80_1 +110409 |V0409 Cam *|054643.9+752057 |EA | 11.03 | 11.29 | 11.27 : |* |51524.605 | | 6.6764 |04 : | |80023 GSC | NL80_1 +110410 |V0410 Cam *|054751.5+621133 |EW | 12.25 | 12.6 | 12.55 |* |51517.627 | | 0.65856 | | |80102 80102| NL80_1 +110411 |V0411 Cam |054919.8+674403 |RS | 12.0 | 12.2 | |* | | | 7.43 | | |80203 80203| NL80_1 +110419 |V0419 Cam *|060100.4+615651 |EW | 12.3 | 12.6 | 12.6 |* |51503.548 | | 0.41470 | | |80144 80144| NL80_2 +110422 |V0422 Cam *|060738.2+694347 |EA | 11.32 | 11.88 | 11.67 |* |51548.607 | | 17.871 |02 : | |80023 GSC | NL80_2 +110423 |V0423 Cam *|060749.7+724637 |EA/RS | 11.35 | 12.05 | 11.90 |* |51521.79 | | 3.070 | | |80143 80143| NL80_2 +110425 |V0425 Cam |060927.4+792547 |SRA | 12.13 | 12.33 | |* |51499. | | 33.8 |45 | |80070 80070| NL80_2 +110427 |V0427 Cam |061044.7+703415 |SRA | 9.95 | 10.25 | |* |51515. | | 50.4 |47 | |80070 80070| NL80_2 +110430 |V0430 Cam |061347.0+633510 |RS | 10.47 | 10.74 | |* | | | 22.3 | | |80246 80246| NL80_2 +110431 |V0431 Cam |061353.8+672100 |SR | 11.4 | 11.65 | |* |51536. | | 61. |42 | |80070 80070| NL80_2 +110434 |V0434 Cam |061519.6+771952 |LB | 10.45 | 10.85 | |* | | | | | |80070 80070| NL80_2 +110441 |V0441 Cam |062508.8+694852 |LB | 10.24 | 10.46 | |* | | | | | |80070 80070| NL80_2 +110446 |V0446 Cam |063218.0+700816 |SR | 11.25 | 11.4 | |V | | | 32.2 | | |80070 80070| NL80_2 +110447 |V0447 Cam *|063721.1+680441 |EB | 11.89 | 12.36 | 12.03 |* |51612.652 | | 0.83614 | | |80013 GSC | NL80_2 +110448 |V0448 Cam |064044.8+732201 |SR | 12.3 | 12.6 | |* | | | 25.4 | | |80070 80070| NL80_2 +110452 |V0452 Cam *|064352.7+702150 |EW | 12.10 | 12.35 | 12.35 |* |51525.978 | | 0.39745 | | |80102 80102| NL80_2 +110455 |V0455 Cam *|064725.0+694215 |EA | 10.88 | 11.33 | 11.05 |* |51537.601 | | 1.66900 |08 | |80013 GSC | NL80_2 +110456 |V0456 Cam *|064752.2+641145 |EW | 12.1 | 12.3 | 12.3 |* |51527.718 | | 0.41980 | | |80144 80144| NL80_2 +110459 |V0459 Cam *|064827.6+652057 |EA | 11.1 | 11.65 | 11.5 |* |51542.667 | | 1.5047 |07 |G4 |80150 80150| NL80_2 +110463 |V0463 Cam |065318.1+724542 |RS | 12.1 | 12.25 | |* | | | 5.617 | | |80181 80181| NL80_2 +110468 |V0468 Cam *|070333.8+630809 |EW | 12.5 | 13.05 | 13.03 |* |51530.631 | | 0.34750 | | |80144 80144| NL80_2 +110471 |V0471 Cam |071317.1+701634 |RS | 10.9 | 11.1 | |* | | | 12.38 | | |80181 80181| NL80_2 +110472 |V0472 Cam |071412.8+764951 |SR | 12.2 | 12.7 | |* | | | 67. | | |80070 80070| NL80_2 +110473 |V0473 Cam *|071704.9+771026 |EW | 11.55 | 12.20 | 12.15 |* |51528.964 | | 0.298438 | | |80144 80144| NL80_2 +110474 |V0474 Cam *|071915.0+690316 |EW | 11.0 | 11.5 | 11.4 |V |51441.216 | | 0.328207 | | |80274 80274| NL80_2 +110478 |V0478 Cam *|072723.8+772223 |EA | 12.3 | 13.7 | 12.5 |* |51523.31 | | 3.52632 |10 |G5 |80150 80150| NL80_2 +110480 |V0480 Cam |073055.3+634350 |RS: | 9.6 | 9.9 | |* | | | 85.28 | |G5II |80158 GSC | NL80_2 +110489 |V0489 Cam *|074843.7+762809 |EA/RS | 10.94 | 11.22 | 11.21 |* |51525.793 | | 0.619753 |10 | |80042 GSC | NL80_2 +110491 |V0491 Cam |075245.1+811952 |RRC | 11.88 | 12.04 | |* |51521.80 | | 0.39275 |44 | |80083 GSC | NL80_2 +110498 |V0498 Cam *|085158.1+740155 |EA | 11.79 | 12.22 | 12.02 |* |51582.760 | | 12.111 |02 | |80023 GSC | NL80_2 +110499 |V0499 Cam *|085424.3+794054 |EA | 10.52 | 10.9 | 10.56 |* |51318.730 | | 2.93555 |04 | |80013 GSC | NL80_2 +110502 |V0502 Cam *|085918.4+801950 |EA | 12.49 | 13.05 | 13.00 : |* |51577.753 | | 3.78551 |04 | |80013 GSC | NL80_2 +110503 |V0503 Cam *|090046.9+764603 |EA | 12.05 | 12.7 : | 12.6 : |* |51549.642 | | 2.97703 |07 | |80013 GSC | NL80_2 +110504 |V0504 Cam *|090400.0+761632 |EA | 11.66 | 11.95 | 11.90 |* |51593.71 | | 19.971 : |02 | |80013 GSC | NL80_2 +110507 |V0507 Cam *|091113.8+775224 |EA | 11.74 | 12.13 | 11.81 |* |51502.792 | | 2.21127 |11 | |80013 GSC | NL80_2 +110508 |V0508 Cam *|092118.1+783742 |EW | 12.5 | 12.63 | 12.6 |* |51525.370 | | 0.30172 | | |80144 80144| NL80_2 +110514 |V0514 Cam *|112830.1+793856 |EW | 12.4 | 13.0 | 12.9 |* |51458.976 | | 0.36274 | | |80144 80144| NL80_2 +110516 |V0516 Cam *|120043.9+770500 |EA | 10.45 | 10.77 | |* |51370.69 | | 5.2218 |07 |F2 |80011 DM | NL80_2 +110517 |V0517 Cam *|120651.0+771857 |EA | 10.98 | 11.38 | 11.05 |* |51581.763 | | 2.09223 |06 | |80011 GSC | NL80_2 +110518 |V0518 Cam *|131255.8+834143 |EA | 11.92 | 12.50 | 12.08 |* |51325.750 | | 3.6165 |14 | |80013 GSC | NL80_2 +120001 |R Cnc *|081633.8+114335 |M | 6.07 | 11.8 | |V |44231. | | 361.60 |47 |M6e-M9e |00001 00002| +120002 |S Cnc *|084356.1+190203 |EA/DS | 8.29 | 10.25 | 8.39 |V |36985.029 | | 9.4845516 |08 |B9V+G8IV |06111 00462| +120003 |T Cnc |085640.1+195057 |SRB | 7.6 | 10.5 | |V | | | 482. |35 |C3,8-C5,5(R6-N6) |00001 00002| +120004 |U Cnc *|083546.3+185345 |M | 8.5 | 15.5 | |V |40627. | | 304.78 |40 |M2e |00001 00002| +120005 |V Cnc *|082142.9+171707 |M | 7.5 | 13.9 | |V |43485. | | 272.13 |46 |S0e-S7,9e |00001 00002| +120006 |W Cnc |090952.6+251454 |M | 7.4 | 14.4 | |V |43896. | | 393.22 |40 |M6.5e-M9e |00001 00002| +120007 |X Cnc |085522.9+171353 |SRB | 5.6 | 7.5 | |V |43631. | | 195. : | |C5,4(N3) |05628 00097| +120009 |Z Cnc |082225.3+145932 |SRB | 9.4 | 10.7 | |p |37026. | | 104. : | |M6III |02079 BD | +120010 |RR Cnc |081103.1+230855 |M | 9.8 | 15. | |p |41400. | | 298.26 | |M3e |00001 00114| +120011 |RS Cnc *|091038.8+305747 |SRC: | 6.2 | 7.7 | |p | | | 120. : | |M6eIb-II(S) | 06225| +120012 |RT Cnc *|085816.0+105043 |SRB | 7.12 | 8.6 | |V | | | 60. : | |M5III |08643 00119| +120013 |RU Cnc *|083730.1+233342 |EA/DS/RS | 10.10 | 11.25 | 10.21 : |V |22650.720 | | 10.172988 |08 |F9V:+G9V: |02087 00537| +120015 |RW Cnc *|091906.0+290356 |RRAB | 10.7 | 12.6 | |p |39556.314 | | 0.547199 |13 |A5 |05238 02088| +120016 |RX Cnc |081443.5+244405 |SRB | 9.2 | 11.3 | |p | | | 120. : | |M8 |02079 BD | +120018 |RZ Cnc *|083908.5+314745 |EA/GS/RS | 8.67 | 10.03 | 9.21 |V |18702.531 | | 21.642998 |15 |K2III+K4III |07194 BD | +120019 |SS Cnc *|080625.6+231506 |RRAB | 11.49 | 12.72 | |V |23078.589 | | 0.36733792 |13 |A4-F5 |00001 02108| +120020 |ST Cnc |080927.9+143952 |M | 12. |< 16. | |p |34815. | | 139.7 | |M8 |02931 00114| +120021 |SU Cnc |081330.6+134806 |M | 12.0 |< 16. | |p |34410. | | 187.1 | |M6 |02306 00114| +120023 |SW Cnc |090859.3+093541 |EA/SD: | 11.6 | 12.5 | |p |30495.651 | | 1.799211 |10 *|F8 |03115 00531| +120025 |SY Cnc *|090103.3+175356 |UGZ | 10.6 | 14.0 | |p | | |( 27. ) | |pec(UG)+G |02109 02544| +120026 |SZ Cnc |082123.4+140015 |M | 10.2 | 15.1 | |p |42824. | | 319.15 | |M2 |00001 02110| +120027 |TT Cnc *|083255.2+131129 |RRAB | 10.72 | 11.78 | |V |39944.367 | | 0.5634494 |18 |A9-F4 |05271 02111| +120028 |TU Cnc |085216.6+090519 |EA/SD | 9.9 | 12.4 | |p |42050.7344 | | 5.561451 |09 *|A0 |00001 BD | +120029 |TV Cnc |081418.8+083425 |M | 9.5 |< 14.5 | |V |52984. | | 263. | |M7 |00001 00491| +120030 |TW Cnc *|082937.3+122720 |EA | 8.50 | 8.97 |( 0.1 pg)|V |31854.76 | | 70.760 |03 |G8III+A8 |02402 02190| +120031 |TX Cnc *|084001.7+185959 |EW/KW | 10.00 | 10.35 | 10.32 |V |38011.3909 | | 0.382881537 | |F8V+F7V |06112 BD | +120033 |TZ Cnc |090401.0+205655 |SRA | 10.7 | 12.1 | |B |42842. | | 55.3 | |M3-M5III |04288 00837| +120034 |UU Cnc *|080230.9+151042 |EB/GS | 8.68 | 9.35 | 9.2 |V |41072.03 | | 96.71 | |K4III |03257 BD | +120035 |UV Cnc *|083846.7+210934 |LB | 9. | 10.5 | |p | | | | |M4 |01047 08667| +120037 |UX Cnc |090329.5+073538 |LB | 12.1 | 12.6 | |p | | | | | |04027 02323| +120038 |UY Cnc |083607.0+131232 |M | 10.8 | 17. | |p |40641. | | 228.55 | |M6.5 |00001 00541| +120039 |UZ Cnc *|080323.4+191054 |EA/DM | 11.2 | 11.9 | 11.4 |p |35550.54 | | 11.5815 |15 |G0 |02431 00156| +120040 |VV Cnc |081116.3+190855 |LB | 10.5 | 11.5 | |p | | | | |M3 |01110 00156| +120041 |VW Cnc |081338.2+101150 |M | 10.6 | 16. | |p |36262. | | 366. | |M7 |00001 06286| +120042 |VX Cnc |080254.0+185940 |SRB | 11.1 | 11.7 | |p | | | 36.4 | |M1 |01544 00156| +120043 |VY Cnc *|090041.1+185523 |EW/DW | 11.9 | 12.4 | 12.3 : |p |31163.318 | | 0.71942 | |G2 |00192 00192| +120044 |VZ Cnc *|084052.1+094927 |DSCT | 7.18 | 7.91 | |V |39897.4246 | | 0.178363704 |26 |A7III-F2III |05272 06286| +120045 |WW Cnc *|090948.6+302537 |EA/SD | 10.5 | 11.6 | |p |27133.459 | | 1.1159843 |14 |F7+A6 |07531 00362| +120046 |WX Cnc *|084650.8+325105 |EA/DM: | 10.5 | 11.2 | 10.7 |p |25620.377 | | 1.2245888 |10 |F2 |00001 02378| +120047 |WY Cnc *|090155.5+264123 |EA/SD/RS | 9.51 | 10.14 | 9.60 |V |26352.3895 | | 0.82937122 |16 |G5V |03261 02378| +120048 |WZ Cnc |080849.1+164452 |SRB | 10.5 | 11.5 | |p | | | 120. : | |M2 |00499 BD | +120049 |XX Cnc *|084317.2+203601 |LB | 10.1 | 11.0 | |p | | | | |M4 |00499 08667| +120050 |XY Cnc |082513.7+155659 |E | 12.1 | 13.0 | |p |34090.15 | | | |K2V |00836 00837| +120051 |XZ Cnc *|082919.5+131239 |EB/DM: | 9.8 | 10.2 | 10.2 |p |25647.390 | | 1.113753 | |A5 |03262 00196| +120052 |YY Cnc *|083438.9+311828 |E: | 11.3 | 11.7 | |p | | | 0.5557 : | |F2 | 02378| +120053 |YZ Cnc *|081056.6+280833 |UGSU | 10.2 | 14.6 | |p | | |( 11.3 ) | |pec(UG) |03264 00002| +120054 |ZZ Cnc *|075706.9+105905 |EA/DS | 9.4 | 10.9 | |p |26770.350 | | 25.5950 |08 |A8IV-V:+K0III: |04020 04132| +120055 |AA Cnc |083722.9+261224 |UV: | 12.1 : | 14.6 | |p | | | | | |06122 04139| +120067 |AN Cnc |085810.3+154818 |RRAB | 12.1 | 13.0 | |V |38430.4448 | | 0.54315826 |11 | |03452 00541| +120070 |AQ Cnc |091739.0+123904 |RRAB | 11.1 | 12.0 | |p |33001.336 | | 0.5485195 |15 |A2 |05342 02609| +120072 |AS Cnc |082542.1+254308 |RRAB | 11.9 | 13.0 | |p |39200.406 | | 0.617520 |20 | |05519 04336| +120073 |AT Cnc |082836.9+252003 |UG: | 12.3 | 14.6 | |p | | |( 14. ) | |DAe |04476 05519| +120087 |BI Cnc *|084445.0+100454 |ACV | 5.58 | 5.71 | |V |41616.50 | | 4.2359 | |A0p(Si-Cr) |04479 BD | +120089 |BL Cnc |080618.4+223808 |LB | 5.97 | 6.04 | |V | | | | |M3III |05841 BD | +120090 |BM Cnc *|081308.9+293924 |ACV | 5.53 | 5.65 | |V |39482.9 | | 4.116 | |B9p(Si-Cr) |05390 BD | +120091 |BN Cnc *|084039.2+191342 |DSCTC | 7.80 |( 0.03 )| |V | | | 0.0388205 | |A8V |04481 08667| +120092 |BO Cnc |085228.6+281533 |LB: | 5.9 | 6.37 | |V | | | | |M3III |05840 BD | +120093 |BP Cnc |082643.9+123917 |SRB | 5.41 | 5.75 | |V | | | 40. : | |M3III |06994 BD | +120094 |BQ Cnc *|084026.8+201055 |DSCTC | 8.19 |( 0.02 )| |V | | | 0.074 | |F2Vn |06838 08667| +120095 |BR Cnc *|083740.7+193106 |DSCTC | 8.26 |( 0.02 )| |V | | | 0.038 | |F0Vn |06838 08667| +120096 |BS Cnc *|083909.1+193533 |DSCTC | 8.50 |( 0.02 )| |V | | | 0.051 | |A9Vn |06838 08667| +120097 |BT Cnc *|083942.7+194643 |DSCTC | 6.66 |( 0.06 )| |V | | | 0.10228 | |F0III |04482 08667| +120098 |BU Cnc *|083944.7+191631 |DSCTC | 7.67 |( 0.03 )| |V | | | 0.071 | |A7Vn |06838 08667| +120099 |BV Cnc *|084033.0+191140 |DSCTC | 8.65 |( 0.02 )| |V | | | 0.21 | |F0V |06456 BD | +120100 |BW Cnc *|084052.5+201600 |DSCTC | 8.48 |( 0.01 )| |V | | | 0.072 | |F0Vn |06838 08667| +120101 |BX Cnc *|084206.5+192441 |DSCTC | 7.96 |( 0.02 )| |V | | | 0.053 | |A7V |06838 08667| +120102 |BY Cnc *|084210.8+185604 |DSCTC | 7.91 |( 0.01 )| |V | | | 0.058 | |A7Vn |06838 08667| +120120 |CT Cnc |082139.5+310543 |LB | 12.1 | 12.8 | |p | | | | |M1 |05519 BD | +120121 |CU Cnc *|083137.6+192340 |UV | 10.9 | 13.9 | |U | | | | |M5Ve |07800 07477| +120122 |CV Cnc *|083137.7+192351 |UV | 11.8 | 15.8 | |U | | | | |M5Ve |07800 07477| +120123 |CW Cnc |090826.5+131314 |LB | 10.0 | 11.2 | |p | | | | |M6 |02609 BD | +120124 |CX Cnc |082836.8+240842 |DSCTC | 6.10 |( 0.025 )| |V | | | 0.096 | |A5 |08290 BD | +120125 |CY Cnc *|083837.9+195923 |DSCTC | 8.14 |( 0.02 )| |V | | | 0.1 : | |F0V |06456 BD | +120133 |DK Cnc |083806.7+202250 |SRB | 10.4 | 11.7 | |V | | | 100. : | |M3 |01998 00499| +120144 |DV Cnc |090315.6+081246 |SRB: | 10.0 | 11.3 | |V |43537. | | 118. | |M4 |02171 08361| +120147 |DY Cnc |083429. +191534:|UV | 12.0 | 16.5 | |U | | | | | |67051 | +120148 |DZ Cnc |083431. +191521:|UV | 11.5 | 14. | |U | | | | | |67051 | +120149 |EE Cnc |083815. +192809:|UV | 11.0 | 14.5 | |U | | | | | |67051 | +120150 |EF Cnc |084038.8+231550 |EW | 11.7 | 12.4 | |p | | | | | |67054 67053| +120151 |EG Cnc |084304.0+275150 |NL | 11.9 | 17. : | |V | | | | | |67055 67055| +120152 |EH Cnc |082618.4+205250 |EW/KW | 11.73 | 12.47 : | |V | | | | | |68305 68048| +120159 |EP Cnc |084056.3+193449 |DSCTC | 6.76 |( 0.03 )| |V | | | | | |70016 BD | +120162 |ES Cnc |085120.8+115326 |EA | 11.16 | 11.28 | |V | | | | | |71078 71079| +120166 |EW Cnc |085132.6+115041 |DSCTC | 12.27 |( 0.02 )| |V | | | | | |71082 71081| +120167 |EX Cnc |085134.3+115111 |DSCTC | 10.95 |( 0.05 )| |V | | | | | |71082 71083| +120169 |EZ Cnc |085257.7+234754 |RRAB | 11.78 | 12.72 | |V | | | | | |71084 71084| +120170 |FF Cnc |082939.3+171701 |EA | 10.82 | 11.40 | |V | | | | | |72025 72025| +120173 |FI Cnc |083217.3+291910 |FKCOM | 7.28 |( 0.17 )| |V | | | | | |73005 BD | +120174 |FK Cnc |083305.0+111605 |BY: | 7.94 |( 0.03 )| |V | | | | | |73005 BD | +120175 |FL Cnc |084414.8+320346 |DSCTC | 7.03 |( 0.06 )| |V | | | | | |73053 BD | +120178 |FO Cnc |080205.4+245835 |LB: | 8.60 | 8.77 | |Hp| | | | | |HIP HIP | +120179 |FP Cnc |080856.4+324911 |BY | 9.94 | 10.18 | |Hp| | | | | |HIP HIP | +120180 |FQ Cnc |083048.8+142552 |SRB | 8.40 | 8.62 | |Hp| | | | | |HIP HIP | +120181 |FR Cnc |083230.5+154926 |BY: | 10.28 | 10.47 | |Hp| | | | | |HIP HIP | +120182 |FS Cnc |083323.1+202324 |LB: | 8.60 | 8.81 | |Hp| | | | | |HIP HIP | +120183 |FT Cnc |084334.9+311902 |SRD | 8.43 | 8.63 | |Hp| | | | | |HIP HIP | +120184 |FU Cnc |084450.3+073717 |SRB: | 9.01 | 9.11 | |Hp| | | | | |HIP HIP | +120185 |FV Cnc *|084801.7+184038 |UG: | 10.44 | 10.62 | |Hp| | | | | |HIP HIP | +120186 |FW Cnc |084837.0+102559 |LB | 6.91 | 7.05 | |Hp| | | | | |HIP HIP | +120187 |FX Cnc |084839.5+123249 |SRB | 6.63 | 6.77 | |Hp| | | | | |HIP HIP | +120188 |FY Cnc |085713.8+305838 |SRB | 8.71 | 8.97 | |Hp| | | | | |HIP HIP | +120189 |FZ Cnc |085910.7+180806 |SRB | 6.28 | 6.38 | |Hp| | | | | |HIP HIP | +120190 |GG Cnc |090025.9+242948 |LB: | 8.24 | 8.36 | |Hp| | | | | |HIP HIP | +120191 |GH Cnc |090422.5+291605 |SRB | 7.59 | 7.72 | |Hp| | | | | |HIP HIP | +120192 |GI Cnc |090643.4+242321 |SRB | 8.58 | 8.73 | |Hp| | | | | |HIP HIP | +120193 |GK Cnc |090730.4+163637 |LB: | 9.10 | 9.20 | |Hp| | | | | |HIP HIP | +120194 |GL Cnc |091235.3+065629 |LB: | 9.43 | 9.53 | |Hp| | | | | |HIP HIP | +120195 |GM Cnc |091350.1+141239 |LB: | 8.61 | 8.73 | |Hp| | | | | |HIP HIP | +120196 |GN Cnc |091604.4+200423 |RR: | 8.80 | 8.89 | |Hp| | | | | |HIP HIP | +120197 |GO Cnc |091738.1+164218 |EA | 8.40 | 8.66 | |Hp| | | | | |HIP HIP | +120198 |GP Cnc |083809.7+071333 |DSCTC | 11.2 |( 0.09 )| |R | | | | | |75052 75052| +120200 |GR Cnc |075654.0+094238 |M | 12.4 | 15.2 | |V | | | | | |76012 GSC | +120201 |GS Cnc |081506.3+283110 |SR: | 10.9 | 12.1 | |V | | | | | |76012 DM | +120202 |GT Cnc |082201.4+133705 |SR: | 10.8 | 12.4 | |V | | | | | |76012 UCAC2| +120203 |GU Cnc |082614.0+152139 |SR: | 10.6 | 11.7 | |V | | | | | |76012 GSC | +120204 |GV Cnc |082740.5+191544 |SR: | 11.4 | 13.1 | |V | | | | | |76012 GSC | +120205 |GW Cnc |084812.7+210714 |L: | 12.1 | 13.1 | |V | | | | | |76012 UCAC2| +120206 |GX Cnc |085049.5+121716 |RS | 11.72 |( 0.08 )| |V | | | | | |76092 GSC | +120207 |GY Cnc |090950.6+184947 |UGSU:+E | 12.5 | 17.80 | |V | | | | | |76093 76270| +120210 |HI Cnc |084118.4+191540 |DSCTC | 7.92 |( 0.01 )| |V | | | | | |77076 DM | +120212 |HL Cnc |090122.8+104359 |BY | 8.83 | 8.87 | |V | | | | | |77080 DM | +120214 |HN Cnc *|081546.8+162156 |EW | 11.13 | 11.54 | 11.53 |V |51968.495 | | 0.494514 | | |78065 GSC | +120215 |HO Cnc |083655.8+231448 |BY | 8.73 |( 0.03 )| |V | | | 5.21 : | |K5Ve |78018 DM | +120216 |HP Cnc |085042.2+075152 |BY | 9.08 |( 0.02 )| |V | | | 11.14 : | |K0V |78018 DM | +120227 |II Cnc |085349.9+265448 |BY | 8.46 |( 0.05 )| |V | | | 8.19 | |G8V |78018 DM | +120228 |IK Cnc |085441.5+163640 |BY | 8.32 |( 0.03 )| |V | | | 9.45 : | |G5V |78018 DM | +120229 |IL Cnc *|085551.5+200339 |EW | 12.35 | 12.96 | 12.88 |* |52721.5705 | | 0.267650 | | |78060 GSC | +120231 |IN Cnc *|091614.7+161526 |EB | 11.87 | 12.56 | 12.24 |* |52721.3126 | | 0.50146 | | |78060 GSC | +120233 |IP Cnc |091753.5+283338 |BY | 7.20 |( 0.02 )| |V | | | 43.4 | |K3V |78018 DM | +120235 |IR Cnc |082618.4+231513 |EB | 11.90 | 12.33 | 12.27 |* |51598.746 | | 0.717775 | | |79004 79066| +120236 |IS Cnc |083647.4+065922 |LB | 10.8 | 11.2 | |V | | | | |M3 |79100 79017| +120237 |IT Cnc |084242.6+212457 |EW: | 12.5 | 12.9 | 12.9 |* |51560.714 | | 0.363675 : | | |79004 GSC | +120238 |IU Cnc |090059.1+125852 |EW | 11.80 | 12.36 | 12.32 |* |51630.657 | | 0.4216475 | | |79003 79070| +120240 |IW Cnc |080453.6+194511 |RRAB | 12.4 | 13.1 | |V |53078.5482 | | 0.603380 |15 | |80002 GSC | NL80_2 +120245 |KL Cnc |080750.6+282108 |RS | 11.6 | 11.8 | |* | | | 3.88535 | | |80067 80067| NL80_2 +120247 |KN Cnc |081035.3+274928 |RS | 11.6 | 11.9 | |* | | | 17.737 | | |80060 80060| NL80_2 +120248 |KO Cnc |081116.0+115658 |RV | 11.2 | 11.5 | |V |54467.7 | | 66.25 | | |80297 80297| NL80_2 +120249 |KP Cnc |081427.1+204228 |DSCTC | 7.30 |( 0.04 )| |B | | | 0.12 : | |F2 |80299 HIP | NL80_2 +120251 |KR Cnc |082622.6+265946 |EA | 10.36 |( 0.014 )| |Rc|52676.3021 | | 3.35002 |03 |F+G |80305 GSC | NL80_2 +120254 |KU Cnc |083526.9+241539 |RS | 11.25 | 11.6 | |V | | | 20.74 | |K7 |80002 GSC | NL80_2 +120255 |KV Cnc *|084002.4+274332 |RRAB | 11.9 | 13.0 | |V |52761.4932 | | 0.50200 |15 | |80026 GSC | NL80_2 +120257 |KX Cnc *|084246.2+315145 |EA | 7.25 |( 0.71 I)|( 0.49I )|V |54182.8146 | | 31.21985 |01 |F8 |80310 HIP | NL80_2 +120258 |KY Cnc *|084416.2+250433 |EA | 10.25 | 10.86 | 10.80 |V |54428.8140 | | 2.3807 |10 | |80002 GSC | NL80_2 +120260 |LL Cnc *|085051.2+192126 |EB | 11.90 | 12.48 | 12.05 |V |53801.542 | | 1.32434 | | |80001 GSC | NL80_2 +120265 |LQ Cnc |090002.3+273929 |RRC | 11.7 | 12.2 | |V |53125.4772 | | 0.337429 |43 | |80002 GSC | NL80_2 +120266 |LR Cnc |090347.7+121826 |RS | 12.00 | 12.23 | |* | | | 5.3287 | | |80170 80170| NL80_2 +120269 |LU Cnc *|091425.9+185354 |EW | 12.1 | 12.60 | 12.55 |V |52733.576 | | 0.3985528 | | |80001 GSC | NL80_2 +129010 |kap Cnc *|090744.8+104006 |ACV: | 5.22 | 5.27 | |V |39633.5 | | 5.0035 | |B9IIIp(Hg-Mn) |05339 BD | +130001 |R CVn *|134857.0+393233 |M | 6.5 | 12.9 | |V |43586. | | 328.53 |46 |M5.5e-M9e |00001 00002| +130002 |S CVn |131306.4+372237 |CST | 9.75 | | |V | | | | |K3III |01701 07204| +130003 |T CVn *|123012.4+313012 |M: | 7.6 | 12.6 | |V |42784. | | 290.09 |42 |M6.5e |00001 00002| +130004 |U CVn *|124719.6+382231 |M | 8.8 |< 12.5 | |p |42491. | | 345.65 | |M7e |00001 00583| +130005 |V CVn *|131927.8+453138 |SRA | 6.52 | 8.56 | |V |43929. | | 191.89 |50 |M4e-M6eIIIa: |00001 00002| +130006 |W CVn *|140628.0+374942 |RRAB | 10.03 | 10.96 | |V |21402.4238 | | 0.551759337 |15 |F0-F7 |07366 00884| +130007 |X CVn |140457.3+373651 |CST | 10.8 | | |p | | | | | | GSC | +130008 |Y CVn *|124507.8+452625 |SRB | 7.4 | 10.0 | |p | | | 157. | |C5,4J(N3) |00650 06225| +130009 |Z CVn *|124945.4+434626 |RRAB | 11.46 | 12.36 | |V |38931.371 | | 0.653819 |28 |A8-F5 |07114 06286| +130010 |RR CVn *|122907.5+343850 |RRAB | 11.89 | 13.15 | |V |43670.6126 | | 0.55860758 |15 |A9-F5 |04496 00884| +130011 |RS CVn *|131036.9+355606 |EA/AR/RS | 7.93 | 9.14 | 8.19 |V |22811.6995 | | 4.7978870 |11 |F4IV-V+K0IVe |08623 00462| +130012 |RT CVn |134844.7+334335 |M | 12.0 | 16.0 | |p |34400. | | 253.60 |45 : |M5e |00001 00567| +130013 |RU CVn *|135933.3+313904 |RRAB | 11.36 | 12.48 | |V |34483.467 | | 0.5732449 |16 |A2 |05436 02455| +130015 |RW CVn |135933.5+371150 |SRB | 10.1 | 11.2 | |p | | | 100. : | |M7III |00231 BD | +130016 |RX CVn *|134842.6+412307 |RRAB | 12.19 | 12.97 | |V |39566.019 | | 0.5400264 |16 | |03271 06286| +130017 |RY CVn |134423.5+333057 |LB | 11.0 | 11.8 | |p | | | | |M4 |00225 00225| +130018 |RZ CVn *|134503.0+323917 |RRAB | 10.88 | 11.92 | |V |40343.851 | | 0.5674110 |17 |A8 |00001 03272| +130019 |SS CVn |134815.9+395403 |RRAB | 11.52 | 12.27 | |V |39622.705 | | 0.4785210 |15 |A0 |00001 03272| +130020 |ST CVn *|135734.1+295129 |RRC | 11.04 | 11.60 | |V |40390.467 | | 0.329045 |43 |A1 |05839 03272| +130022 |SV CVn *|123556.0+371225 |RRAB | 12.20 | 13.00 | |V |39952.760 | | 0.668062 |12 |A0 |05274 00228| +130023 |SW CVn *|124055.0+370507 |RRAB | 12.03 | 13.44 | |V |39555.945 | | 0.4416567 |12 |A0 |00001 01332| +130024 |SX CVn |132943.1+452846 |CST: | 10.3 | | |p | | | | |G2 |00001 BD | +130025 |SY CVn |131020.3+470228 |LB | 11. | 12. | |p | | | | |M8 |00922 BD | +130027 |TT CVn |125922.6+374904 |SRB | 10.4 | 11.11 | |B | | | 105. | |C3,5CH(R6p) |07213 BD | +130028 |TU CVn |125456.5+471148 |SRB | 5.55 | 6.6 | |V | | | 50. | |M5III |05429 BD | +130029 |TV CVn |131511.8+421600 |LB | 10.8 | 11.8 | |p | | | | |M5 |00362 00362| +130030 |TW CVn |125921.2+435316 |LB | 11.0 | 12.6 | |p | | | | |M5III |00499 02379| +130031 |TX CVn *|124442.1+364551 |ZAND | 9.2 | 11.8 | |p | | | | |B1-B9Veq+K0III-M4|02626 02626| +130037 |UX CVn *|121448.5+363849 |ELL+E: | 11.73 | 12.00 | 11.94 |U |41096.183 | | 0.573703 | |B3 |06125 04577| +130038 |UY CVn |122453.8+453505 |LB | 10.6 | 11.8 | |p | | | | |M5III |04022 BD | +130039 |UZ CVn |123027.7+403032 |RRAB | 11.3 | 12.0 | |p |26427.3806 | | 0.6977829 |16 |A5-F2 |04171 00819| +130041 |VW CVn *|132942.2+285249 |EW | 11.4 | 12.6 | 12.4 |p |35923.246 | | 0.850012 | | |04172 04172| +130042 |VX CVn |132940.4+410528 |SRA | 10.2 | 11.5 | |p |26860. | | 360. | |M4 |04109 00174| +130043 |VY CVn |133043.9+374630 |LB | 10.38 | 11.4 | |B | | | | |M5 |04022 BD | +130044 |VZ CVn *|133203.4+283505 |EA/DW | 9.17 | 9.72 | 9.54 |V |38880.5804 | | 0.84246163 |17 *|F2V |05984 00462| +130053 |YZ CVn *|135648.9+284420 |EA/SD | 12.5 | 13.4 |( 0.05 v)|p |44793.446 | | 1.175558 |14 | |00001 04172| +130054 |ZZ CVn |135911.1+452816 |LB | 10.9 | 11.8 | |p | | | | |M7 |04022 00819| +130063 |AI CVn *|122347.0+423234 |DSCT | 5.89 | 6.15 | |V | | | 0.2085 | |F3IV |04652 BD | +130068 |AO CVn |131732.5+403421 |DSCTC | 4.70 | 4.75 | |V |44381.6675 | | 0.12168 |50 |F3IIIp |04677 BD | +130069 |AP CVn |125110.6+325819 |RRAB | 12.4 | 13.9 | |p |40022.531 | | 0.57465 |16 | |06851 06064| +130070 |AQ CVn *|124341.8+322128 |* | 10.7 | 13.1 | |Y | | | | |A0 |06839 07044| +130072 |AS CVn |123055.6+315213 |UV | 12.5 | 15.8 | |p | | | | | |07445 07445| +130075 |AV CVn |132118.7+435914 |LB | 9.5 | 12.1 | |p | | | | |S2.5,9 |00586 BD | +130076 |AW CVn |135147.5+342639 |SR: | 4.72 | 4.81 | |V | | | | |K5III |04513 BD | +130077 |AX CVn |123916.9+355707 |ACV | 6.32 | 6.55 | |V | | | 4900. | |A0p(Sr-Cr-Eu) |06631 BD | +130084 |BF CVn *|125740.3+351330 |BY+UV: | 10.50 | 10.60 | |V | | | 3.17 | |M1.5Ve |02195 06874| +130086 |BH CVn *|133447.8+371057 |RS | 4.94 | 5.01 | |V |43639.52 | | 2.6131738 | |F2IV |08365 BD | +130087 |BI CVn *|130316.4+363701 |EW/KW | 10.26 | 10.71 | 10.70 |V |44365.2497 | | 0.38416 | |G0 |03876 BD | +130088 |BK CVn |131814.5+494055 |ACV | 5.13 |( 0.04 )| |V | | | | | |68036 BD | +130089 |BL CVn |131851.9+332619 |ELL | 8.13 |( 0.24 )| |V | | | | | |68052 BD | +130090 |BM CVn |132132.3+385250 |RS | 7.21 |( 0.06 )| |V | | | | | |68053 BD | +130091 |BN CVn |122936.8+474918 |RR: | 11.5 | 12. | |V | | | | | |70017 70018| +130092 |BO CVn |135908.2+404909 |EW | 9.48 | 10.10 | |V | | | | | |70019 BD | +130093 |BP CVn |124741.5+342254 |SR | 11.9 | 12.8 | |p | | | | | |72022 72027| +130094 |BQ CVn |125903.8+470905 |RS | 7.98 |( 0.09 )| |V | | | | | |73005 BD | +130095 |BR CVn |132305.5+470007 |SRB | 6.58 |( 0.50 )| |V | | | | | |73054 BD | +130096 |BS CVn |120735.4+420415 |LB: | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +130097 |BT CVn |122251.1+500246 |LB: | 9.25 | 9.41 | |Hp| | | | | |HIP HIP | +130098 |BU CVn |122353.9+404310 |LB | 7.90 | 8.20 | |Hp| | | | | |HIP HIP | +130099 |BV CVn |123159.4+432859 |LB | 9.18 | 9.47 | |Hp| | | | | |HIP HIP | +130100 |BW CVn |123214.4+452950 |SRB | 8.66 | 8.82 | |Hp| | | | | |HIP HIP | +130101 |BX CVn |124333.7+411542 |LB | 7.65 | 7.97 | |Hp| | | | | |HIP HIP | +130102 |BY CVn |124637.5+472220 |LB | 7.71 | 7.91 | |Hp| | | | | |HIP HIP | +130103 |BZ CVn |125320.0+463923 |LB | 7.32 | 7.47 | |Hp| | | | | |HIP HIP | +130104 |CC CVn |125859.0+343245 |SRB: | 7.92 | 8.13 | |Hp| | | | | |HIP HIP | +130105 |CD CVn |130002.5+472632 |LB: | 9.48 | 9.64 | |Hp| | | | | |HIP HIP | +130106 |CE CVn |130244.4+452305 |LB | 7.45 | 7.62 | |Hp| | | | | |HIP HIP | +130107 |CF CVn |130320.3+393814 |LB: | 10.34 | 10.48 | |Hp| | | | | |HIP HIP | +130108 |CG CVn |130508.0+483707 |LB: | 9.57 | 9.73 | |Hp| | | | | |HIP HIP | +130109 |CH CVn |131319.8+403339 |LB: | 8.64 | 8.75 | |Hp| | | | | |HIP HIP | +130110 |CI CVn |131333.4+474752 |EA: | 9.36 | 9.87 | |Hp| | | | | |HIP HIP | +130111 |CK CVn |132257.3+513911 |LB: | 7.74 | 7.84 | |Hp| | | | | |HIP HIP | +130112 |CL CVn |132353.9+370202 |LB | 6.10 | 6.20 | |Hp| | | | | |HIP HIP | +130113 |CM CVn |132723.4+390858 |LB: | 8.89 | 9.03 | |Hp| | | | | |HIP HIP | +130114 |CN CVn |132837.8+424534 |LB: | 9.54 | 9.69 | |Hp| | | | | |HIP HIP | +130115 |CO CVn |133012.7+454407 |LB | 7.17 | 7.28 | |Hp| | | | | |HIP HIP | +130116 |CP CVn |133117.2+362849 |LB: | 7.58 | 7.64 | |Hp| | | | | |HIP HIP | +130117 |CQ CVn |133319.8+441734 |LB: | 8.19 | 8.29 | |Hp| | | | | |HIP HIP | +130118 |CR CVn |133738.7+421203 |SRB | 7.55 | 7.68 | |Hp| | | | | |HIP HIP | +130119 |CS CVn *|134011.4+350311 |LB: | 9.13 | 9.25 | |Hp| | | | | |HIP HIP | +130120 |CT CVn |134710.9+474345 |LB | 7.37 | 7.67 | |Hp| | | | | |HIP HIP | +130121 |CU CVn |134820.1+312404 |EW: | 7.56 | 7.61 | |Hp| | | | | |HIP HIP | +130122 |CV CVn |135147.1+394010 |LB: | 7.27 | 7.47 | |Hp| | | | | |HIP HIP | +130123 |CW CVn |135323.1+334712 |SRD | 7.00 | 7.24 | |Hp| | | | | |HIP HIP | +130124 |CX CVn |135955.7+280941 |EA | 9.39 | 9.69 | |Hp| | | | | |HIP HIP | +130125 |CY CVn |140022.4+375216 |LB | 8.09 | 8.47 | |Hp| | | | | |HIP HIP | +130126 |CZ CVn |140626.1+305047 |LB: | 7.69 | 7.83 | |Hp| | | | | |HIP HIP | +130127 |DD CVn |122456.9+425117 |GDOR | 7.15 |( 0.04 )| |V | | | | | |75054 BD | +130129 |DF CVn |124337.2+384416 |EW | 10.96 | 11.46 | |V | | | | | |76119 76120| +130134 |DL CVn |125214.2+385631 |EB | 12.0 | 12.3 | |V | | | | | |77100 GSC | +130135 |DM CVn |133619.3+292341 |EA | 12.5 | 13.2 | |V | | | | | |77100 UCAC2| +130137 |DO CVn |123551.3+511317 |BY | 8.52 |( 0.02 )| |V | | | 8.73 | |K0V |78018 DM | +130138 |DP CVn |123617.0+513052 |BY: | 8.58 |( 0.07 )| |V | | | 14.21 | |G5III |78018 DM | +130139 |DQ CVn *|124033.4+342256 |EW | 12.12 | 12.59 | 12.59 |* |53094.6168 | | 0.491421 | | |78264 GSC | +130140 |DR CVn *|124441.8+355756 |EW | 11.62 | 11.92 | 11.92 |* |52715.7932 | | 0.3290529 | | |78264 GSC | +130142 |DT CVn |125010.7+373101 |DSCTC | 6.04 |( 0.03 )| |B | | | 0.114 | |A3V |78037 DM | +130145 |DW CVn |130222.3+372043 |BY: | 8.12 |( 0.04 )| |V | | | | |F8V |78018 DM | +130146 |DX CVn *|130549.2+383706 |EW | 12.25 | 12.71 | 12.68 |* |52694.5006 | | 0.357382 | | |78264 GSC | +130153 |EI CVn *|140205.6+340240 |EW | 11.82 | 12.60 | 12.50 |* |52694.3796 | | 0.260768 | | |78264 GSC | +130154 |EK CVn |131432.5+342056 |LB: | 9.05 | 9.6 | |* | | | | |M6 |79100 DM | +130155 |EL CVn |132357.0+433555 |EA | 9.42 | 9.59 | 9.50 |V |48331.778 | | 0.795629 |10 |A1V |79006 DM | +130156 |EM CVn |132422.8+480438 |SR | 12.1 | 13.5 | |* |51350. | | 143. | | |79190 79190| +130157 |EN CVn |133205.3+460007 |EA | 10.92 | 11.40 : | 11.4 : |* |51338.725 | | 0.33448 |05 |F7 |79009 DM | +130158 |EO CVn *|122224.7+334615 |EW | 12.25 | 12.56 | 12.53 |* |51628.4660 | | 0.35887 | |F8 |80001 GSC | NL80_2 +130159 |EP CVn |122308.7+452754 |RS | 11.1 | 11.4 | |* | | | 11.80 | | |80158 GSC | NL80_2 +130160 |EQ CVn |122557.8+334651 |EA/RS | 11.97 |( 0.13 *)| |V | | | 1.3636 | |G0V |80021 GSC | NL80_2 +130161 |ER CVn |122751.2+333843 |BY | 11.90 |( 0.10 *)| |V | | | 12.5865 | |M0 |80021 GSC | NL80_2 +130163 |ET CVn |124328.0+375736 |RS | 10.7 | 11.0 | |* | | | 11.034 | |K2V: |80370 80370| NL80_2 +130166 |EW CVn |124408.5+402330 |BY | 11.28 |( 0.13 *)| |V | | | 2.6454 | |G5 |80021 DM | NL80_2 +130168 |EY CVn *|130625.4+342917 |EW | 11.94 | 12.25 | 12.21 |* |53060.5691 | | 0.342687 | | |80378 GSC | NL80_2 +130170 |FF CVn |131926.0+360407 |BY | 11.1 | 11.3 | |* | | | 16.599 | | |80370 80370| NL80_2 +130171 |FG CVn |132426.4+303314 |BY | 9.83 |( 0.03 *)| |V | | | 3.3479 | |F2 |80021 DM | NL80_2 +130172 |FH CVn |132712.1+455826 |BY | 11.38 |( 0.16 *)| |V | | | 2.1838 | | |80021 GSC | NL80_2 +130173 |FI CVn *|132837.3+353312 |EW | 11.90 | 12.02 | 12.00 : |* |51579.42 | | 0.33405 | | |80001 GSC | NL80_2 +130174 |FK CVn |132931.2+293616 |BY | 10.38 |( 0.06 *)| |V | | | 7.9604 | | |80021 GSC | NL80_2 +130176 |FM CVn |133240.5+284758 |BY | 10.98 |( 0.09 *)| |V | | | 2.4849 | | |80021 DM | NL80_2 +130177 |FN CVn *|133609.3+455941 |EW | 12.15 | 12.45 | 12.4 |* |51479.871 | | 0.61071 | | |80085 80085| NL80_2 +130178 |FO CVn |133722.1+413438 |RRC | 11.05 | 11.2 | |* |51426.808 | | 0.284485 |48 | |80103 80103| NL80_2 +130179 |FP CVn |133924.7+400905 |BY | 11.04 |( 0.03 *)| |V | | | 16.2579 | | |80021 GSC | NL80_2 +130181 |FR CVn |134328.2+391133 |BY | 11.30 | 11.43 | |* | | | 3.079 | | |80001 GSC | NL80_2 +130182 |FS CVn |134330.7+332951 |BY | 11.25 |( 0.10 *)| |V | | | 5.9383 | | |80021 GSC | NL80_2 +130184 |FU CVn *|135209.7+411742 |EW | 11.15 | 11.55 | 11.5 |* |51430.975 | | 0.96213 | | |80102 80102| NL80_2 +130185 |FV CVn *|135313.7+322247 |EW | 11.77 | 12.15 | 12.10 |* |53117.3815 | | 0.315367 | | |80378 GSC | NL80_2 +130186 |FW CVn *|135418.9+404542 |EW | 9.25 |( 0.07 *)|( 0.05 *)|V | | | 0.3454 | |G0 |80021 DM | NL80_2 +130194 |GL CVn *|140052.8+340057 |EA | 12.3 | 12.8 | 12.55 |* |51429.63 | | 1.8584 |10 | |80107 80107| NL80_2 +130195 |GM CVn *|140146.6+320848 |EW | 10.15 | 10.45 | 10.41 |* |53502.5478 | | 0.366986 | | |80172 GSC | NL80_2 +130196 |GN CVn *|140509.0+385419 |EW | 11.46 | 12.20 | 12.13 |* |53382.6919 | | 0.395010 | | |80172 GSC | NL80_2 +1390012|alf 2 CVn *|125601.7+381906 |ACV | 2.84 | 2.98 | |V |39012.61 | | 5.46939 |60 |B9.5Vp(Si-Cr-Eu) |06632 BD | +140001 |R CMa *|071928.2-162343 |EA/SD | 5.70 | 6.34 | 5.78 |V |44289.361 | | 1.1359405 |15 *|F1V |00001 00010| +140002 |S CMa |070927.7-325537 |CST | 9.0 | | |p | | | | |A5 | CPD | +140003 |T CMa |072125.9-252645 |SR | 9.0 | 11. | |V |23692. | | 309. | | |00147 CoD | +140004 |U CMa |061850.6-261000 |SRA | 10.0 | 12.0 | |p |31437. | | 304.90 |40 |M7e |00001 CoD | +140005 |V CMa |064340.7-314657 |M | 10.3 | 13.3 | |p |31478. | | 242.54 |40 |Me |00001 GSC | +140006 |W CMa |070803.4-115524 |LB | 6.35 | 7.9 | |V | | | | |C6,3(N) |00374 06360| +140007 |X CMa |065645.9-235755 |SRB | 10.0 | 11.2 | |p | | | 106.6 | |M7 |01266 CoD | +140009 |Z CMa *|070343.2-113306 |INA | 8.8 | 11.2 | |p | | | | |B8peq |00867 04002| +140010 |RR CMa *|072250.3-163527 |EA/SD | 12.5 | 14.2 | 13.1 |p |25704.282 | | 1.196242 | | |00412 00531| +140012 |RT CMa *|061313.5-173916 |EA/SD | 11.4 | 12.9 | 11.5 |V |26625.547 | | 1.293772 |17 *|F8 |00391 00391| +140013 |RU CMa |062233.6-224129 |EA/SD | 11.3 | 14.6 | |V |26711.342 | | 1.976168 |12 | |00391 00391| +140014 |RV CMa |070040.1-142059 |LB | 10.4 | 11.6 | |p | | | | |M6 |01710 00391| +140015 |RW CMa |071311.7-184351 |DCEP | 11.8 | 12.8 | |p |41042.22 | | 5.729685 |25 |F5-G2 |00001 00391| +140016 |RX CMa *|071351.9-180941 |EA/SD | 11.0 | 13.0 | 11.1 |p |42413.0587 | | 2.0691121 |16 | |08593 00391| +140017 |RY CMa |071637.6-112914 |DCEP | 7.71 | 8.45 | |V |36416.937 | | 4.67825 |24 |F6-G0Ib |02309 00391| +140018 |RZ CMa *|072132.9-164114 |DCEP | 9.36 | 9.97 | |V |36428.062 | | 4.254832 |28 |F6 |00001 00391| +140019 |SS CMa |072607.2-251526 |DCEP | 9.26 | 10.36 | |V |41109.19 | | 12.361 |45 |F6-G2 |00001 01717| +140020 |ST CMa |063222.4-224446 |M | 11. | 15. | |p |39049. | | 288.5 | | |00001 00391| +140021 |SU CMa |070123.3-190246 |M | 10.0 |< 12.9 | |V |26690. | | 248. |32 |M6.5 |00391 00391| +140022 |SV CMa |070125.9-190202 |LB | 10.00 | 11.5 | |V | | | | |M3-M4 |00391 00391| +140023 |SW CMa *|070815.2-222625 |EA/DM | 9.5 | 10.0 | 9.9 |p |26706.177 | | 10.091948 |06 *|A8 |03284 00391| +140024 |SX CMa *|071008.0-161439 |EA/SD | 10.1 | 11.0 | 10.3 |p |28095.400 | | 1.62425838 |22 *|A5: |00007 00391| +140025 |SY CMa |071033.1-195011 |M | 10.4 | 14.3 | |p |38821. | | 220.0 | |M4-6 |00001 00405| +140026 |SZ CMa |071303.7-152444 |EA/SD: | 10.2 | 11.1 | |V |26743.337 | | 2.8560849 |07 *|F8 |01373 00391| +140027 |TT CMa |072202.0-145657 |M | 12.3 | 16.3 | |p |26020. | | 314. | |S |00510 00391| +140028 |TU CMa *|063136.7-240951 |EA | 9.7 | 10.7 | 10.1 |V |26977.445 | | 1.1278041 |16 *| |03285 00391| +140029 |TV CMa |070915.4-134710 |DCEP | 10.16 | 10.96 | |V |40676.34 | | 4.67001 |29 |F5-G2 |00001 00391| +140030 |TW CMa |072202.4-141906 |DCEP | 9.28 | 9.93 | |V |39429.26 | | 6.99507 |31 |F5-F8 |00001 00391| +140031 |TX CMa |061324.6-223252 |EA/SD | 9.6 | 10.8 | |V |42363.504 | | 2.3973893 |10 *|B8 |00001 00391| +140032 |TY CMa |061803.1-162848 |M | 11.5 |< 14. | |p |27699. | | 228. | | |00394 00391| +140033 |TZ CMa |064147.2-194025 |EA | 9.8 | 10.5 | |V |27124.871 | | 1.911446 |17 |A0 |01373 00391| +140034 |UU CMa |065841.5-184848 |EA/SD | 10. | 12.5 | |p |44598.412 | | 2.1664842 |17 *| |00001 00391| +140035 |UV CMa |070507.0-281829 |M | 10.5 |< 14. | |p |27410. | | 340. | |M5-8e |00394 00391| +140036 |UW CMa *|071840.4-243331 |EB/KE: | 4.84 | 5.33 | 5.25 |V |36185.358 | | 4.393407 | |O7Ia:fp+OB |04990 06425| +140037 |UX CMa *|072021.0-121429 |EB/KE | 11.7 | 12.6 | 12.3 |V |26706.235 | | 0.962084 | | |00391 00391| +140038 |UY CMa |061816.4-170235 |SRD | 10.8 | 12.8 | |p | | | 114.6 | |G0 |06107 00368| +140039 |UZ CMa |061847.4-170227 |SRC | 10.18 | 12.3 | |V |29324. | | 82.5 |47 |M6II |00391 00391| +140040 |VV CMa |070641.3-143006 |CEP | 12.2 | 12.8 | |p |26090.220 | | 3.8627 | | |01716 GSC | +140041 |VW CMa *|071225.5-252958 |EB/KE | 9.0 | 9.2 | 9.1 |p |27924.229 | | 0.720831 | | |00435 00435| +140043 |VY CMa *|072258.3-254603 |* | 6.5 | 9.6 | |V | | | | |M5eIbp(C6,3) |06132 06599| +140044 |VZ CMa |072628.3-255536 |DCEPS | 9.15 | 9.60 | |V |26747.14 | | 3.12640 |43 | |01266 00391| +140045 |WW CMa *|061950.9-213907 |S: | 9.16 | 9.57 | |V | | | | |F6-G1 | 00391| +140052 |YY CMa |070051.9-191432 |EA | 12.3 | 12.7 | |p |28068.441 | | 5.60945 |20 :*| |01279 01279| +140060 |AF CMa |071522.8-234043 |EA/DS | 12.3 | 15.5 | |p |28073.265 | | 8.38100 |10 | |01279 01279| +140071 |AR CMa *|070556.2-244100 |EA | 11.9 | 12.5 | |p |28060.204 | | 1.166069 |15 | |01719 01719| +140073 |AT CMa |070651.8-255840 |EA/DS | 12.5 | 14.1 | |p |28054.256 | | 10.0628 |10 :*| |01719 01719| +140083 |BE CMa |072338.6-225811 |LB | 11.0 | 12.3 | |p | | | | |C5,5J(N) |01719 01719| +140094 |BQ CMa *|071509.3-254658 |M | 12.2 | 15.2 | |p |28095. | | 351. | | |01720 02385| +140115 |CO CMa *|071401.0-260635 |SRB | 9.7 | 10.5 | |p | | | 80. : | |M3e |00001 CoD | +140117 |CQ CMa |071552.1-192011 |SRB | 12.5 | 13.1 | |p |28138. | | 67. | |M6 |01349 01349| +140118 |CR CMa *|071802.1-194058 |EB/SD | 12.1 | 13.1 | 12.4 |p |28094.488 | | 0.6241424 | | |01349 01349| +140119 |CS CMa |071804.8-183726 |SRB | 11.7 | 13.0 | |p | | | 180. : | |M3-M4 |01350 02360| +140120 |CT CMa |071756.5-261736 |EA/SD | 12.3 | 14.0 | |p |28096.374 | | 1.7512889 |17 *| |00406 00406| +140123 |CW CMa *|072152.5-234737 |EA/DM | 8.58 | 8.98 | 8.94 |V |42090.1657 | | 2.11797737 |09 *|A0V |05016 CoD | +140124 |CX CMa *|072201.0-255236 |EB/KE | 9.9 | 10.6 | 10.3 |p |28095.601 | | 0.954608 | | |00406 00391| +140125 |CY CMa |072302.7-252813 |SRA | 11.6 | 12.6 | |p |28157. | | 117. | |M6 |00406 00406| +140127 |DD CMa *|072408.7-191047 |EA/SD | 11.6 | 12.4 | 11.8 |p |28095.663 | | 2.0083807 |16 | |00406 00406| +140134 |DL CMa |065148.6-190218 |M | 11.8 |< 16. | |p |34399. | | 345. : | |M7e |03122 02353| +140143 |DU CMa |071825.2-171531 |SRA | 12.3 | 14.0 | |p |31490. | | 252.8 | |M6.5 |00412 02360| +140147 |DY CMa |064237.6-142719 |SR | 10.5 | 12. | |p | | | | |M7 |00415 02352| +140150 |EF CMa *|072437.7-172919 |EA/DS | 11.3 | 12.1 | |p |25647.00 | | 59.36 |07 : | |05283 00132| +140151 |EG CMa |061727.6-213629 |EA/SD | 10.5 | 12. | |p |25623.410 | | 1.83783 | | |05018 01111| +140152 |EH CMa |061712.5-310147 |M | 10.5 | 13.5 | |p |34393. | | 290. | |M8e |00829 00829| +140166 |EW CMa *|071415.2-262109 |GCAS | 4.42 | 4.82 | |V | | | | |B3IVe |08419 CoD | +140168 |EY CMa *|065332.9-201327 |BCEP | 4.79 | 4.84 | |V |41296.1640 | | 0.184557 |50 |B1III-IV |07243 BD | +140169 |EZ CMa *|065413.1-235542 |WR | 6.71 | 6.95 | |V |43200.47 | | 3.763 | |WN5 |05019 CoD | +140170 |FF CMa *|071030.6-303945 |EB/KE | 7.38 | 7.74 | 7.6 |V |28847.465 | | 1.213375 | |B2V+B2V |05284 CoD | +140172 |FH CMa |063619.7-303436 |M: | 11.5 |< 12.5 | |p | | | | |M7 |00085 CoD | +140176 |FM CMa *|070542.1-124843 |EB/DM | 7.28 | 7.50 | |V | | | 2.7888 | |B1V |06135 08087| +140177 |FN CMa *|070640.8-111739 |BCEP | 5.38 | 5.42 | |V | | | 0.12377 | |B0III |05522 06633| +140180 |FQ CMa *|070443.8-284355 |EB | 9.6 | 10.2 | 9.7 |p |38433.400 | | 2.652 | | |05843 CoD | +140181 |FR CMa *|062124.7-114624 |GCAS | 5.46 | 5.64 | |V | | | | |B1Vpe |06311 BD | +140182 |FS CMa *|062817.4-130311 |* | 7.55 | 8.58 | |V | | | | |B2IVep |06312 BD | +140183 |FT CMa *|064428.5-310414 |GCAS | 5.13 | 5.44 | |V | | | | |B2Ve |08419 CoD | +140184 |FU CMa *|070019.4-220709 |GCAS | 6.48 | 6.60 | |V | | | | |B3IV-Vne |06311 BD | +140185 |FV CMa |070722.6-235027 |GCAS | 5.64 | 5.94 | |V | | | | |B2IV-Ve |08419 CoD | +140186 |FW CMa *|072440.2-161205 |GCAS | 5.00 | 5.50 | |V | | | | |B3Ve |08419 BD | +140187 |FX CMa |072703.9-114314 |SRB | 8.56 | 8.86 | |V | | | 40. : | |S3,9(C1) |06059 BD | +140188 |FY CMa |072659.5-230510 |GCAS | 5.54 | 5.69 | |V | | | | |B0IVpe |08419 BD | +140189 |FZ CMa *|070242.6-112712 |EA/DM | 8.05 | 8.44 | 8.44 |V |41742.324 | | 1.27306 |16 *|B2.5IV-Vn |07045 07045| +140190 |GG CMa *|071347.2-310501 |ELL+BCEP: | 6.55 | 6.61 | |V | | | | |B2IV |06840 CoD | +140191 |GH CMa |072223.1-203024 |SRB | 6.82 | 7.19 | |V | | | 20. : | |M6III |06645 BD | +140192 |GI CMa |064743.0-134000 |RRAB | 12.1 | 13.4 | |p |38739.506 | | 0.452239 | | |07446 07446| +140196 |GN CMa |064227.4-190050 |LB | 12. | 13. | |p | | | | |M7 |00085 02352| +140198 |GP CMa |065246.0-120955 |LB: | 9. | 12.1 | |V | | | | |Cea: |00685 00685| +140203 |GU CMa *|070149.5-111803 |GCAS | 6.49 | 6.72 | |V | | | | |B2Vne |07824 06633| +140204 |GV CMa |070814.0-183033 |L | 11.5 | 12.5 | |p | | | | | |00085 02353| +140205 |GW CMa |071107.9-290717 |LB | 11. | 12. | |p | | | | |M5 |00085 CoD | +140207 |GY CMa *|071336.5-272123 |BCEP: | 6.12 |( 0.04 )| |V | | | 0.112 | |B0.5V |06840 CoD | +140208 |GZ CMa *|071619.2-164300 |EA/DM | 8.1 | 8.7 | |p |38814.273 | | 4.801052 |07 |A0 |04514 BD | +140209 |HH CMa |065714.8-221210 |BCEP | 6.59 | 6.66 | |V | | | 0.19 | |B2III |08115 CoD | +140210 |HI CMa |071245.5-153007 |GCAS | 7.8 |( 0.4 )| |p | | | | |B2IIIe |05857 BD | +140211 |HK CMa *|064701.5-210055 |ACV | 6.06 | 6.09 | |Y |42818.88 | | 2.181 | |B9p |08054 BD | +140212 |HL CMa *|064517.2-165135 |UGSS+XM | 10.0 | 14.5 | |V | | |( 15. ) | |pec(UG) |03886 03886| +140213 |HM CMa |064519.0-164809 |UV | 8.9 | 11.97 | |V | | | | | |67056 67056| +140214 |HN CMa |071224.2-272829 |DSCTC | 6.61 |( 0.025 )| |V | | | | | |67057 CoD | +140215 |HO CMa |071313.1-305759 |E: | 7.55 | 8.62 | |V | | | | | |67058 CoD | +140216 |HP CMa |064531.2-305656 |GCAS | 5.48 | 5.80 | |V | | | | | |68296 CoD | +140217 |HQ CMa |072054.9-265750 |EA | 6.01 | 6.27 | |V | | | | | |68298 CoD | +140218 |HR CMa |063246.9-110959 |EA/GS | 6.24 | 6.32 | |V | | | | | |71065 BD | +140219 |HS CMa |063341.3-180739 |M | 9.8 | 14.0 | |V | | | | | |71066 71066| +140220 |HT CMa |070242.5-112612 |IA | 11.87 | 12.24 | |V | | | | | |72028 72029| +140221 |HU CMa |070406.7-112609 |IA | 11.61 | 12.05 | |V | | | | | |72028 72029| +140222 |HV CMa |070505.8-150058 |M | 7.10 | 9.93 | |J | | | | | |72007 72142| +140223 |HW CMa |070821.9-222430 |EA | 9.19 |( 0.13 )| |y | | | | | |72030 BD | +140224 |HX CMa |071204.1-201717 |M | 6.94 | 8.62 | |J | | | | | |72007 72031| +140225 |HY CMa |061238.8-164836 |E/RS | 9.26 | 9.84 | |V | | | | | |73055 BD | +140226 |HZ CMa |065023.4-314222 |ELL | 5.69 | 5.82 | |y | | | | | |73056 CoD | +140229 |IL CMa |070600.5-303921 |E+LPB: | 6.32 | 6.54 | |V | | | | | |73058 CoD | +140230 |IM CMa |071853.2-245723 |ELL: | 10.52 | 10.58 | |b | | | | | |73059 73060| +140232 |IO CMa |061222.4-302853 |EA | 8.46 | 8.71 | |Hp| | | | | |HIP HIP | +140233 |IP CMa |061246.3-174548 |LPB | 6.44 | 6.48 | |Hp| | | | | |HIP HIP | +140234 |IQ CMa |061237.3-251607 |EB | 9.24 | 9.63 | |Hp| | | | | |HIP HIP | +140235 |IR CMa |061419.0-193131 |SRB | 7.56 | 7.70 | |Hp| | | | | |HIP HIP | +140236 |IS CMa |062056.4-294015 |EW | 6.96 | 7.44 | |Hp| | | | | |HIP HIP | +140237 |IT CMa |062158.2-262211 |LPB | 7.82 | 7.86 | |Hp| | | | | |HIP HIP | +140238 |IU CMa *|062347.6-194707 |ACV: | 6.55 | 6.58 | |Hp| | | | | |HIP HIP | +140239 |IV CMa |062339.1-270357 |SRC | 8.21 | 8.75 | |Hp| | | | | |HIP HIP | +140240 |IW CMa |062540.5-294211 |E: | 6.88 | 6.96 | |Hp| | | | | |HIP HIP | +140241 |IX CMa |062805.6-270837 |EB | 7.77 | 7.84 | |Hp| | | | | |HIP HIP | +140242 |IY CMa |062839.2-322217 |E: | 5.64 | 5.72 | |Hp| | | | | |HIP HIP | +140243 |IZ CMa |062912.0-260708 |SRB | 7.85 | 8.03 | |Hp| | | | | |HIP HIP | +140244 |KK CMa |063026.6-150608 |EB | 8.17 | 8.26 | |Hp| | | | | |HIP HIP | +140245 |KL CMa |063029.8-145716 |EA | 6.73 | 6.97 | |Hp| | | | | |HIP HIP | +140246 |KM CMa |063124.0-325207 |LB | 6.24 | 6.50 | |Hp| | | | | |HIP HIP | +140247 |KN CMa |063234.5-231108 |SRD: | 8.65 | 8.72 | |Hp| | | | | |HIP HIP | +140248 |KO CMa |063346.2-303458 |LB | 8.06 | 8.48 | |Hp| | | | | |HIP HIP | +140249 |KP CMa |064557.9-284844 |LPB | 7.58 | 7.63 | |Hp| | | | | |HIP HIP | +140250 |KQ CMa |064747.1-221010 |ACV | 8.24 | 8.29 | |Hp| | | | | |HIP HIP | +140251 |KR CMa |064850.6-202532 |SRB | 8.08 | 8.40 | |Hp| | | | | |HIP HIP | +140252 |KS CMa |064915.9-124005 |BE | 7.25 | 7.37 | |Hp| | | | | |HIP HIP | +140253 |KT CMa |064950.3-113024 |E: | 9.37 | 9.61 | |Hp| | | | | |HIP HIP | +140254 |KU CMa |065026.5-140648 |BE | 7.93 | 8.10 | |Hp| | | | | |HIP HIP | +140255 |KV CMa |065052.7-205437 |E: | 7.09 | 7.14 | |Hp| | | | | |HIP HIP | +140256 |KW CMa |065141.4-234810 |ACV | 7.55 | 7.59 | |Hp| | | | | |HIP HIP | +140257 |KX CMa |065300.3-265728 |LB | 6.07 | 6.37 | |Hp| | | | | |HIP HIP | +140258 |KY CMa |065302.0-314651 |LB | 10.46 | 11.00 | |Hp| | | | | |HIP HIP | +140259 |KZ CMa |065352.2-131109 |BE | 8.66 | 8.77 | |Hp| | | | | |HIP HIP | +140260 |LL CMa |065435.9-175502 |BE | 7.36 | 7.64 | |Hp| | | | | |HIP HIP | +140261 |LM CMa |065511.7-215219 |ACYG: | 8.64 | 8.70 | |Hp| | | | | |HIP HIP | +140262 |LN CMa |065712.5-302937 |LB: | 9.15 | 9.26 | |Hp| | | | | |HIP HIP | +140263 |LO CMa |065844.5-203655 |SRB: | 7.75 | 7.86 | |Hp| | | | | |HIP HIP | +140264 |LP CMa |065946.5-161203 |BE | 9.20 | 9.31 | |Hp| | | | | |HIP HIP | +140265 |LQ CMa |065944.5-282359 |BE: | 7.12 | 7.26 | |Hp| | | | | |HIP HIP | +140266 |LR CMa |070051.1-233548 |ACYG: | 9.26 | 9.35 | |Hp| | | | | |HIP HIP | +140267 |LS CMa |070106.0-251256 |E: | 5.57 | 5.60 | |Hp| | | | | |HIP HIP | +140268 |LT CMa |070402.6-121717 |EA | 7.38 | 7.56 | |Hp| | | | | |HIP HIP | +140269 |LU CMa |070500.2-313134 |LB: | 7.75 | 7.87 | |Hp| | | | | |HIP HIP | +140270 |LV CMa |070630.5-113216 |EB | 8.65 | 8.83 | |Hp| | | | | |HIP HIP | +140271 |LW CMa |070709.6-293222 |SRB: | 7.38 | 7.50 | |Hp| | | | | |HIP HIP | +140272 |LX CMa |070827.7-183611 |LB: | 7.28 | 7.31 | |Hp| | | | | |HIP HIP | +140273 |LY CMa |070937.0-160547 |GCAS | 8.99 | 9.27 | |Hp| | | | | |HIP HIP | +140274 |LZ CMa |070943.0-251352 |EB: | 5.63 | 5.66 | |Hp| | | | | |HIP HIP | +140275 |MM CMa |071212.2-255633 |LPB | 5.84 | 5.87 | |Hp| | | | | |HIP HIP | +140276 |MN CMa |071419.9-152344 |BE | 9.53 | 9.70 | |Hp| | | | | |HIP HIP | +140277 |MO CMa *|071435.1-172319 |I: | 11.13 | 11.53 | |Hp| | | | | |HIP HIP | +140278 |MP CMa |071448.3-210127 |EB | 8.30 | 8.48 | |Hp| | | | | |HIP HIP | +140279 |MQ CMa |071534.7-272522 |LB: | 8.16 | 8.31 | |Hp| | | | | |HIP HIP | +140280 |MR CMa |071558.7-175406 |ACV | 8.99 | 9.08 | |Hp| | | | | |HIP HIP | +140281 |MS CMa |071606.9-302607 |EA | 7.08 | 7.20 | |Hp| | | | | |HIP HIP | +140282 |MT CMa |071630.1-295615 |LB: | 8.23 | 8.35 | |Hp| | | | | |HIP HIP | +140283 |MU CMa |071809.6-153742 |BE: | 8.94 | 9.04 | |Hp| | | | | |HIP HIP | +140284 |MV CMa |071809.9-300505 |EB | 9.74 | 10.08 | |Hp| | | | | |HIP HIP | +140285 |MW CMa |071838.5-291745 |ACV | 8.66 | 8.79 | |Hp| | | | | |HIP HIP | +140286 |MX CMa |071912.8-245721 |EB | 6.74 | 6.81 | |Hp| | | | | |HIP HIP | +140287 |MY CMa |072007.2-201958 |LB: | 10.49 | 10.76 | |Hp| | | | | |HIP HIP | +140288 |MZ CMa |072104.3-255330 |SRB | 5.87 | 5.95 | |Hp| | | | | |HIP HIP | +140289 |NN CMa |072243.3-260041 |GCAS | 7.05 | 7.30 | |Hp| | | | | |HIP HIP | +140290 |NO CMa *|072300.7-315526 |BE: | 5.33 | 5.38 | |Hp| | | | | |HIP HIP | +140291 |NP CMa |072319.3-300441 |BE | 8.99 | 9.16 | |Hp| | | | | |HIP HIP | +140292 |NQ CMa |072420.7-263028 |BE: | 9.81 | 10.12 | |Hp| | | | | |HIP HIP | +140293 |NR CMa |072708.0-175154 |DSCTC | 5.67 | 5.70 | |Hp| | | | | |HIP HIP | +140301 |NZ CMa |064223.3-222138 |LPB | 8.82 | 8.90 | |Hp| | | | | |75030 BD | +140302 |OO CMa |064615.4-262016 |M: | 12.2 | 15.0 | |p | | | | | |75002 UCAC2| +140304 |OQ CMa |065423.2-150003 |SR: | 12.0 | 14.0 | |p | | | | | |75002 UCAC2| +140306 |OS CMa |070933.4-161404 |ACYG | 6.04 | 6.07 | |Hp| | | | | |75030 BD | +140307 |OT CMa |071433.8-325948 |M | 11.5 |< 15.0 | |p | | | | | |75021 75021| +140309 |OV CMa |061551.8-120837 |SR: | 11.9 | 13.4 | |V | | | | | |76012 GSC | +140311 |OX CMa |062852.3-274514 |SR: | 12.5 | 14.0 | |V | | | | | |76012 USNO | +140313 |OZ CMa |062957.9-154807 |SR: | 12.3 | 13.3 | |V | | | | | |76012 GSC | +140315 |PQ CMa |063427.0-134145 |SR: | 12.5 | 15.2 | |V | | | | | |76059 GSC | +140316 |PR CMa |063431.9-263756 |SR: | 12.2 | 13.9 | |V | | | | | |76012 GSC | +140317 |PS CMa |063543.3-262227 |SR: | 12.5 | 13.3 | |V | | | | | |76012 GSC | +140318 |PT CMa |063639.2-130514 |SR: | 11.5 | 12.3 | |V | | | | | |76012 GSC | +140319 |PU CMa |064047.7-242315 |UGSU: | 11.5 | 15.1 | |V | | | | | |76064 USNO | +140328 |QT CMa |070954.7-143141 |SR: | 12.5 | 14.2 | |V | | | | | |76012 GSC | +140329 |QU CMa |071354.6-254920 |EB | 11.76 | 12.14 | |V | | | | | |76067 76068| +140330 |QV CMa |071525.4-174919 |M | 12.1 |< 14.8 | |V | | | | | |76070 USNO | +140332 |QX CMa |071834.4-245727 |LPB: | 11.13 | 11.19 | |b | | | | | |76071 76071| +140333 |QY CMa |071838.8-245616 |DSCTC: | 10.59 | 10.64 | |b | | | | | |76071 76071| +140334 |QZ CMa |071910.2-295234 |SR: | 12.4 | 14.7 | |V | | | | | |76012 GSC | +140335 |V0335 CMa |071937.0-311745 |LB: | 12.0 | 12.8 | |V | | | | | |76012 GSC | +140338 |V0338 CMa |072135.2-154428 |SR: | 12.3 | 13.5 | |V | | | | | |76012 GSC | +140339 |V0339 CMa |072135.4-202736 |LB: | 11.0 | 11.9 | |V | | | | | |76012 GSC | +140340 |V0340 CMa |072136.7-285743 |SR: | 12.1 | 13.0 | |V | | | | | |76012 GSC | +140341 |V0341 CMa |072142.2-282957 |SR: | 12.3 | 12.9 | |V | | | | | |76012 GSC | +140343 |V0343 CMa |072149.1-283840 |SR: | 11.8 | 12.7 | |V | | | | | |76012 GSC | +140346 |V0346 CMa |072530.1-295123 |SR: | 11.9 | 12.4 | |V | | | | | |76012 GSC | +140348 |V0348 CMa |072540.3-220228 |SR: | 12.0 | 13.5 | |V | | | | | |76012 GSC | +140350 |V0350 CMa |064246.0-222655 |GDOR | 6.18 | 6.27 | |V | | | | | |77035 DM | +140351 |V0351 CMa |072306.6-292220 |LB: | 10.7 | 12.5 | |V | | | | | |77004 GSC | +140352 |V0352 CMa |061345.3-235143 |BY | 6.37 | 6.40 | |V | | | 7.2 | |G5V |78046 DM | +140353 |V0353 CMa |062133.1-221253 |BY | 8.48 |( 0.02 )| |V | | | | |K2V |78018 DM | +140354 |V0354 CMa |062603.8-142101 |M | 11.1 | 13.9 | |V |52904 | | 248. | | |78130 USNO | +140355 |V0355 CMa |063252.3-261024 |M | 10.8 |< 14.3 | |V |52213 | | 370. | |S |78130 78086| +140356 |V0356 CMa |063911.6-263419 |BY: | 8.44 |( 0.02 )| |V | | | | |K1V |78018 DM | +140357 |V0357 CMa |072004.1-193045 |SRA | 9.6 | 10.0 | |V |52400 | | 270. | |M3e |78090 DM | +140359 |V0359 CMa |072114.8-291800 |SRA | 11.2 | 13.0 | |V | | | 290. | |M7 |78130 GSC | +140360 |V0360 CMa |061507.6-145504 |RRAB | 12.0 | 13.1 | |V |53744.708 | | 0.666328 |15 | |79100 79034| +140361 |V0361 CMa |062501.2-232826 |SRB | 10.3 | 11.7 | |V | | | 153. | |M5-6 |79064 DM | +140362 |V0362 CMa |062650.3-231506 |EB | 9.57 | 9.79 | 9.73 |V |51982.584 | | 10.585 | | |79011 DM | +140363 |V0363 CMa |062941.3-202146 |SRB | 9.0 | 9.7 | |V | | | 90. | | |79064 DM | +140364 |V0364 CMa |063147.7-145451 |SRB | 10.6 | 11.7 | |V | | | 138. | |M8 |79100 GSC | +140365 |V0365 CMa |063517.9-152250 |SRA | 10.5 | 13.6 | |V |53460. | | 258. | | |79100 79058| +140366 |V0366 CMa |063541.1-291246 |SRA | 11.7 | 14.1 | |V |53674. | | 233. | | |79100 GSC | +140367 |V0367 CMa |063546.9-130502 |SR: | 11.2 | 12.9 | |V | | | 750. : | |M4 |79100 79058| +140368 |V0368 CMa |063639.5-165934 |SRB | 10.4 | 11.1 | |V | | | 354. | | |79100 79022| +140369 |V0369 CMa |063716.5-295002 |SRB | 9.6 | 10.5 | |V | | | 53.8 | | |79064 DM | +140370 |V0370 CMa |064005.5-135531 |SRB | 10.4 | 11.4 | |V | | | 76.2 | | |79064 79184| +140371 |V0371 CMa |064108.1-200905 |SRB | 10.8 | 11.7 | |V | | | 301. | |C |79100 79047| +140372 |V0372 CMa |064314.2-155612 |SRB | 10.2 | 11.1 | |V | | | 86. : | |M7 |79100 79058| +140373 |V0373 CMa |064633.0-191918 |SRB | 11.8 | 12.8 | |V | | | 42.5 | | |79064 79184| +140374 |V0374 CMa |065123.2-161456 |SRB | 10.2 | 10.6 | |V | | | 73. : | |C |79064 79186| +140375 |V0375 CMa |065205.7-132957 |EA | 12.07 | 13.08 | 12.17 |V |51920.655 | | 2.3540 |12 | |79003 79047| +140376 |V0376 CMa |065404.7-192954 |LB | 11.5 | 12.7 | |V | | | | | |79100 79047| +140377 |V0377 CMa *|065516.1-171255 |EA | 7.88 | 7.98 | 7.98 |V |48323.304 | | 3.01351 |04 |B8III |79018 DM | +140378 |V0378 CMa |065714.1-312458 |EB | 10.60 | 11.05 | 10.76 |V |52967.757 | | 0.877912 | | |79011 DM | +140379 |V0379 CMa |065955.8-155548 |LB | 11.0 | 12.2 | |V | | | | |M6 |79100 79187| +140380 |V0380 CMa |070104.0-185136 |LB | 11.8 | 12.4 | |V | | | | |R: |79100 79022| +140381 |V0381 CMa |070132.0-275134 |EB | 7.73 | 7.82 | 7.78 |V |52942.804 | | 3.37443 | |A2V |79006 DM | +140382 |V0382 CMa |070229.8-153920 |SRB | 9.9 | 10.5 | |V | | | 75.4 | | |79064 79022| +140383 |V0383 CMa *|070311.0-245106 |SRB | 11.7 | 12.2 | |V | | | 50. | |Me |79100 GSC | +140384 |V0384 CMa |070355.1-175248 |DCEP | 11.7 | 12.3 | |V |51876.784 | | 4.2059 | | |79064 79047| +140385 |V0385 CMa |070404.7-160622 |SRB | 10.8 | 11.3 | |V | | | 170. | |N |79100 79188| +140386 |V0386 CMa |070432.3-193746 |LB | 11.6 | 12.4 | |V | | | | | |79100 79047| +140387 |V0387 CMa |070536.1-250633 |SRB | 8.9 | 10.0 | |V | | | 129. | |M5 |79064 DM | +140388 |V0388 CMa *|070607.4-125708 |EA | 8.25 | 8.43 | 8.34 |V |53067.651 | | 2.98260 |05 |B3V |79018 DM | +140389 |V0389 CMa |070617.2-243658 |LB: | 8.9 | 9.7 | |V | | | | |M5 |79100 DM | +140390 |V0390 CMa |070638.0-154807 |DCEP | 12.3 | 13.3 | |V |51875.776 | | 4.4633 |20 | |79064 79187| +140391 |V0391 CMa |070946.2-200535 |EA | 10.06 | 10.55 | 10.25 : |V |51922.660 | | 1.75690 |10 | |79011 DM | +140392 |V0392 CMa |071016.4-161549 |SRB | 11.0 | 12.1 | |V | | | 154. | |M7 |79100 GSC | +140393 |V0393 CMa |071318.2-143447 |SRB | 8.0 | 8.4 | |V | | | 83. | |M5III |79100 79022| +140394 |V0394 CMa |071401.7-143601 |LB | 10.0 | 10.6 | |V | | | | |S: |79100 79047| +140395 |V0395 CMa |071420.3-194022 |SRB | 12.3 | 13.3 | |V | | | 131. | |M7 |79100 79047| +140396 |V0396 CMa |071442.1-172541 |LB | 10.2 | 10.9 | |V | | | | |C5:,3: |79100 79187| +140397 |V0397 CMa |071518.3-161612 |EA | 11.13 | 11.60 | 11.53 |V |52215.795 | | 2.53153 |09 | |79018 79058| +140398 |V0398 CMa |072334.6-311800 |EA | 7.98 | 8.11 | 8.02 |V |47912.729 | | 2.198515 |06 |B9III |79006 DM | +140399 |V0399 CMa |061255.8-144006 |RRC | 11.7 | 12.2 | |V |51869.82 | | 0.320102 |40 | |80002 GSC | NL80_2 +140405 |V0405 CMa *|062426.2-204454 |EW | 10.64 | 10.98 | 10.97 |V |51868.231 | | 0.384692 | | |80036 DM | NL80_2 +140415 |V0415 CMa *|063641.1-223653 |EA | 6.34 | 6.48 | 6.40 |V |48401.484 | | 1.98571 |06 |B5V |80015 DM | NL80_2 +140416 |V0416 CMa *|065232.0-253330 |EW | 8.61 | 8.99 | 8.94 |V |51868.247 | | 0.418639 | |F6V |80036 DM | NL80_2 +140417 |V0417 CMa |070109.2-290625 |ZAND | 10.47 | 10.87 | |V | | | | |S6,8e |80267 GSC | NL80_2 +140420 |V0420 CMa |071556.7-151808 |SR | 5.47 | 5.73 | |K | | | 486. : | |C |80166 2MASS| NL80_2 +140421 |V0421 CMa |071608.3-232702 |I | 10.55 | 10.73 | |V | | | | |F5 |80184 DM | NL80_2 +140422 |V0422 CMa *|071821.9-245112 |EA | 8.91 | 9.07 | 8.95 |V |51993.495 | | 4.19184 |05 |B2IV/V |80015 GSC | NL80_2 +140423 |V0423 CMa |072315.2-294321 |DCEP | 12.5 | 13.25 | |V |52496.49 | | 3.3363 |20 | |80177 GSC | NL80_2 +140424 |V0424 CMa |072403.5-125228 |M: | 3.75 | 4.94 | |K | | | 620. : | |C |80166 2MASS| NL80_2 +140425 |V0425 CMa |072407.3-233046 |M | 4.22 | 5.45 | |K | | | 560. : | |C |80166 2MASS| NL80_2 +140426 |V0426 CMa |072435.3-155952 |SR | 5.06 | 5.36 | |K | | | 457. | |C |80166 2MASS| NL80_2 +149002 |bet CMa *|062242.0-175721 |BCEP | 1.93 | 2.00 | |V |41296.175 | | 0.25003 | |B1II-III |07254 BD | +149007 |eta CMa |072405.7-291811 |ACYG | 2.38 | 2.48 | |Hp| | | | | |HIP HIP | +149009 |iot CMa |065608.2-170315 |BCEP | 4.36 | 4.40 | |V | | | 0.08 : | |B3II-III |08395 BD | +149010 |kap CMa |064950.5-323031 |GCAS | 3.78 | 3.97 | |V | | | | |B2Vne | CoD | +1490141|ksi 1 CMa *|063151.4-232506 |BCEP | 4.33 | 4.36 | |V |41296.0514 | | 0.2095755 | |B0.5IV |07243 CoD | +1490151|omi 1 CMa |065408.0-241103 |LC | 3.78 | 3.99 | |V | | | | |K2.5Iab |06313 CoD | +1490152|omi 2 CMa |070301.5-235000 |ACYG | 2.98 | 3.04 | |Hp| | | | | |HIP HIP | +149018 |sig CMa *|070143.1-275605 |LC | 3.43 | 3.51 | |V | | | | |K7Ib |04659 CoD | +149019 |tau CMa *|071842.5-245716 |EB | 4.32 | 4.37 | |Hp| | | | | |HIP HIP | +149024 |ome CMa *|071448.6-264622 |GCAS | 3.60 | 4.18 | |V | | | | |B2IV-Ve |07367 CoD | +150001 |R CMi *|070842.6+100127 |M | 7.25 | 11.6 | |V |41323. | | 337.78 |48 |C7,1Je(CSep) |00001 00002| +150002 |S CMi |073243.1+081905 |M | 6.6 | 13.2 | |V |43911. | | 332.94 |49 |M6e-M8e |00001 00002| +150003 |T CMi *|073400.5+114407 |M | 9.5 | 15.1 | |V |42045. | | 328.3 |47 |M4Se-M8 |00001 00002| +150004 |U CMi *|074120.0+082249 |M | 8.0 | 14.0 | |V |43150. | | 413.88 |52 |M4e |00001 00002| +150005 |V CMi |070658.9+085237 |M | 7.4 | 15.1 | |V |42737. | | 366.10 |39 |M4e-M10 |00001 00002| +150006 |W CMi |074845.5+052335 |SRB | 8.72 | 9.04 | |V | | | 95. : | |C7,2(R6) |07213 BD | +150007 |X CMi *|072144.7+022126 |RRAB | 12.5 | 13.6 | |p |28257.272 | | 0.363527 |19 |F5-F6 |00001 00530| +150017 |RY CMi *|072258.2+064635 |EA/SD | 11.9 | 14.9 | 12.0 : |p |25323.51 | | 3.265211 |11 | |01715 00531| +150026 |SZ CMi |073649.0+041428 |SR | 12.4 | 13.4 | |p |25310. | | 125. | | |00386 00531| +150035 |UV CMi |074418.9+042651 |LB | 12.4 | 13.8 | |p | | | | | |00386 00531| +150037 |UX CMi |074533.8+051231 |SRA | 10.2 | 11.6 | |p |26735. | | 150.5 | |M5 |02431 BD | +150039 |UZ CMi *|075051.8+033904 |EW/DW | 11.6 | 12.1 | 12.1 |p |25243.69 | | 0.761950 | |F8 |00386 00531| +150040 |VV CMi |075136.3+032903 |M | 11.6 |< 19. | |p |25356. | | 334. | | |01724 00531| +150042 |VX CMi |075400.8+014415 |M | 11.8 |< 16.4 | |p |25362. | | 272.7 | |Me |01724 00531| +150044 |VZ CMi |071209.6+111729 |M | 12. |< 15.5 | |p |34824. | | 284.6 | | |00001 00489| +150046 |WX CMi |071157.5+072959 |M | 11.0 | 15.8 | |p |36120. | | 420.1 |25 |Se |05025 05025| +150051 |XZ CMi *|075407.1+033920 |EA | 9.7 | 10.42 | 9.88 |V |42444.4017 | | 0.5788095 |22 *|F0 |00001 02532| +150052 |YY CMi *|080638.6+015547 |EB | 8.33 | 9.13 | 8.88 |V |28023.147 | | 1.0940197 | |F6Vn |03295 06637| +150053 |YZ CMi *|074440.2+033309 |BY+UV | 8.6 | 12.93 | |B |41355.178 | | 2.780964 | |M4.5Ve |06948 00664| +150054 |ZZ CMi |072414.0+085352 |SR | 10.2 | 11.9 | |p |28960. | | 500. : | |M6I-IIep |00346 00346| +150055 |AA CMi |071719.2+014340 |RRAB | 11.01 | 12.00 | |V |36576.435 | | 0.47632310 |20 |A6 |03297 00156| +150057 |AC CMi |072950.1+103656 |EA/DW | 11. | 11.5 | |p |31521.38 | | 0.7887 | |F5 |00279 00279| +150058 |AD CMi |075247.2+013551 |DSCT | 9.21 | 9.51 | |V |42429.4582 | | 0.12297443 |37 |F0III-F3III |06719 06463| +150059 |AE CMi |075256.1+010940 |M | 12.3 |< 15. | |p | | | | |M2e |01726 | +150060 |AF CMi |075938.9+003028 |M | 12. |< 14. | |p |33380. :| | | |M7e |01726 06286| +150061 |AG CMi *|070836.0+061426 |EA/SD | 10.9 | 11.9 | |p |34698.677 | | 1.6645438 |16 *|F4 |06136 06136| +150062 |AH CMi *|071045.0+105909 |RRC: | 12.3 | 12.6 | |p |30267.663 | | 0.345845 |49 | |00407 02346| +150063 |AI CMi |073541.1+001458 |L: | 8.8 | 10.6 | |p | | | | |G5Iab |01728 BD | +150064 |AK CMi *|074015.6+035709 |EA/SD | 10.1 | 11.5 | 10.3 |p |43101.672 | | 0.5658975 |30 :*|A-F |04836 00462| +150065 |AL CMi *|074857.1+053811 |RRAB | 12. | 13. | |p |36597.356 | | 0.55050 |17 | |03300 00196| +150066 |AM CMi *|075018.1+015719 |EB/KE | 10.0 | 10.7 | 10.5 |p |25244.653 | | 1.0191860 | | |02633 02633| +150069 |AP CMi |072442.6-000720 |EA | 12.5 | 13.5 | |p |26770.357 | | | | |00158 00158| +150075 |AV CMi |070910.9+121119 |EA | 11.8 | 12.1 | |p |38378.59 | | 1.13888 |10 : | |07010 05515| +150079 |AZ CMi |074407.6+022420 |DSCTC | 6.44 | 6.51 | |V |40886.0713 | | 0.09526 | |F0III |06014 BD | +150080 |BB CMi |075124.6+045439 |RRC | 10.0 | 10.8 | |p |25644.400 | | 0.396424 |40 |A5 |05957 05957| +150081 |BC CMi |075207.2+031638 |SRB | 6.14 | 6.42 | |V | | | 35. : | |M5 |06645 BD | +150082 |BD CMi |072025.0+092257 |LB: | 11.2 | 12.5 | |V | | | | |M3 |00416 00196| +150083 |BE CMi |073629.1+020444 |LB | 11.5 | 12.0 | |p | | | | |C5,5(R8) |00333 BD | +150084 |BF CMi *|073018.9+043122 |EA/SD: | 10.3 | 11.1 |( 0.05 : )|V |44169.571 | | 1.1806866 |18 *| |04451 08373| +150086 |BH CMi |080236.4+014350 |EW | 9.3 |( 0.37 : )| |V | | | | | |70020 BD | +150087 |BI CMi |080531.7+020932 |DSCT: | 9.0 |( 0.1 : )| |V | | | | | |70021 BD | +150088 |BK CMi |071538.9+050339 |SR | 12. | 13.5 | |B | | | | | |72032 BD | +150089 |BL CMi |072349.2+013704 |E: | 11.5 | 12.5 | |p | | | | | |72033 72034| +150091 |BN CMi |070836.9+041034 |SRB: | 7.01 | 7.10 | |Hp| | | | | |HIP HIP | +150092 |BO CMi *|072248.4+072940 |* | 8.07 | 8.36 | |Hp| | | | | |HIP HIP | +150093 |BP CMi |073327.5+110042 |SRB | 6.77 | 6.91 | |Hp| | | | | |HIP HIP | +150094 |BQ CMi |073503.0+061140 |SRA: | 7.69 | 7.90 | |Hp| | | | | |HIP HIP | +150095 |BR CMi |073851.0+075800 |ACV: | 7.16 | 7.22 | |Hp| | | | | |HIP HIP | +150096 |BS CMi |075631.7+062423 |SRD: | 7.80 | 7.89 | |Hp| | | | | |HIP HIP | +150097 |BT CMi |075704.0+025703 |BE | 7.68 | 7.80 | |Hp| | | | | |HIP HIP | +150098 |BU CMi |075805.9+071249 |EA: | 6.41 | 6.51 | |Hp| | | | | |HIP HIP | +150099 |BV CMi |075845.2+053724 |EA: | 6.91 | 7.03 | |Hp| | | | | |HIP HIP | +150100 |BW CMi |080559.0+060001 |LB: | 9.02 | 9.12 | |Hp| | | | | |HIP HIP | +150101 |BX CMi |071046.3+075350 |EA | 10.81 | 11.48 | |V | | | | | |75060 75061| +150103 |BZ CMi |071152.6+040405 |EA: | 11.4 | 11.9 | |* | | | | | |76066 GSC | +150104 |CC CMi |072451.0+120817 |SR: | 11.8 | 12.9 | |V | | | | | |76012 GSC | +150105 |CD CMi |072527.4+101824 |SR | 11.5 | 11.8 | |* | | | | | |76073 GSC | +150107 |CF CMi |072633.2+100356 |SR | 12.29 | 12.59 | |* | | | | | |76074 GSC | +150108 |CG CMi |072646.9+022558 |LB | 12.3 | 13.1 | |V | | | | | |76012 USNO | +150109 |CH CMi |072744.1+091904 |SR: | 11.1 | 12.5 | |V | | | | | |76012 GSC | +150111 |CK CMi |073548.0+110115 |SR: | 11.3 | 12.5 | |V | | | | | |76012 UCAC2| +150112 |CL CMi |073947.7+031242 |SR: | 11.5 | 12.3 | |V | | | | | |76012 GSC | +150113 |CM CMi |074000.7+055923 |SR: | 11.7 | 12.9 | |V | | | | | |76012 GSC | +150118 |CR CMi |080602.9+030947 |SR: | 11.5 | 12.5 | |V | | | | | |76012 UCAC2| +150119 |CS CMi |080621.6+032302 |SR: | 12.3 | 13.5 | |V | | | | | |76012 GSC | +150120 |CT CMi |080816.2+004337 |SR: | 12.0 | 12.5 | |V | | | | | |76012 USNO | +150122 |CV CMi |081109.5+004031 |SR: | 10.57 |( 0.7 )| |V | | | | | |76012 GSC | +150123 |CW CMi |075045.5-000011 |EW/K | 11.2 |( 0.43 )| |V | | | | | |77066 GSC | +150124 |CX CMi *|071334.1+101513 |EW | 11.41 | 12.02 | 11.97 |V |51951.3605 | | 1.121968 | | |78097 GSC | +150125 |CY CMi |071610.3+095948 |SRD | 8.11 | 8.26 | |V | | | 36.8 | |F5Iab |78099 DM | +150126 |CZ CMi |071657.3+091236 |EW | 10.54 | 11.06 | |V |52336.3877 | | 0.426388 | | |78097 GSC | +150127 |DD CMi |074858.2+003943 |GDOR | 7.50 | 7.57 | |Hp| | | 0.713 | |F2 |78091 DM | +150128 |DE CMi |080958.5+010114 |DSCTC | 7.96 |( 0.06 )| |B | | | 0.088474 | |F0 |78106 DM | +150129 |DF CMi |071023.2+062912 |SRB | 11.5 | 14.1 | |V | | | 137.9 | |M4 |79064 79133| +150130 |DG CMi |071833.4+092940 |EA | 11.94 | 13.9 : | 12.05 |* |53113.570 | | 0.99369 |15 | |79003 GSC | +150131 |DH CMi |071844.8+102153 |SRB | 10.5 | 11.3 | |V | | | 72.1 | | |79064 79133| +150132 |DI CMi |072700.3+035827 |LB | 12.0 | 12.8 | |V | | | | |M5 |79100 79060| +150133 |DK CMi |073314.2+024416 |EA | 11.88 | 12.65 | 12.18 |V |51560.719 | | 5.04735 |05 | |79003 79059| +150135 |DM CMi |075359.9+034500 |EA | 8.13 | 8.22 | 8.20 |V |48588.418 | | 7.72461 |03 : |A0V |79006 DM | +150136 |DN CMi |080952.9+050336 |SRB | 9.1 | 9.6 | |V | | | 152. | |C(Np) |79100 DM | +150137 |DO CMi *|071219.4+092103 |DSCT | 10.54 | 10.73 | |V | | | 0.19450 | | |80272 DM | NL80_2 +150138 |DP CMi *|071814.9+014127 |EA/RS | 10.62 | 10.90 | 10.78 : |V |52998.75 | | 7.40522 | | |80001 GSC | NL80_2 +150139 |DQ CMi |072038.5+064055 |RRAB | 11.7 | 12.4 | |V |53031.6263 | | 0.615830 |20 | |80002 GSC | NL80_2 +150140 |DR CMi *|072431.4+030328 |EA | 11.08 | 11.65 | 11.42 |V |51557.760 | | 23.7704 | | |80023 GSC | NL80_2 +150141 |DS CMi *|072519.0-000500 |EW | 11.6 | 11.92 | 11.88 |V |52786.4526 | | 0.649350 | | |80002 GSC | NL80_2 +150143 |DU CMi |072937.0+010141 |SRB | 11.7 | 12.9 | |V | | | 101. | | |80001 GSC | NL80_2 +150144 |DV CMi |073716.9+113954 |SRB | 11.55 | 12.05 | |V | | | 55. : | | |80001 GSC | NL80_2 +150146 |DX CMi *|074653.2+003544 |EA | 12.05 | 12.8 | 12.1 : |V |52713.563 | | 2.30318 |12 | |80013 GSC | NL80_2 +150147 |DY CMi *|074727.6+065050 |UGSU | 11.4 | 19.1 | |V | | | | |pec(UG) |80233 80234| NL80_2 +150149 |EE CMi |075108.0+005635 |SRB | 12.5 | 14.1 | |V | | | 224.4 | | |80002 GSC | NL80_2 +150150 |EF CMi |075250.4+001410 |RRC: | 12.2 | 12.6 | |V |52026.5249 | | 0.194885 |42 | |80002 GSC | NL80_2 +150152 |EH CMi |075501.1+002337 |SRA | 10.91 | 11.7 | |V |52670. | | 173.5 | | |80001 GSC | NL80_2 +150154 |EK CMi *|075717.5-000501 |EB | 11.85 | 12.38 | 12.20 |V |54467.7174 | | 0.66075 | | |80002 GSC | NL80_2 +150155 |EL CMi *|075946.8+002107 |EA | 11.8 | 12.8 | 12.1 |V |53871.5051 | | 1.053830 |20 | |80002 GSC | NL80_2 +150159 |EP CMi *|081000.9+001022 |EB | 12.2 | 13.3 | 12.9 |V |53733.8001 | | 2.7255 | | |80002 GSC | NL80_2 +159002 |bet CMi |072709.0+081722 |GCAS | 2.84 | 2.92 | |V | | | | |B8Ve | BD | +160001 |R Cap |201118.4-141603 |M | 9.4 | 14.9 | |V |39014. | | 345.13 |44 |Ne |00001 00002| +160002 |S Cap |204144.3-190328 |CST: | 9.2 | | |p | | | | |G5 | BD | +160003 |T Cap |212200.8-150933 |M | 8.4 | 14.3 | |V |39267. | | 269.28 |44 |M2e-M8.2 |00001 00002| +160004 |U Cap |204808.6-144701 |M | 10.4 | 15.7 | |V |38975. | | 203.14 |46 |M5.5e |00001 00002| +160005 |V Cap |210736.6-235514 |M | 8.2 | 14.4 | |V |40395. | | 275.72 |42 |M5e-M8.2 |00001 00002| +160006 |W Cap |201429.0-215845 |M | 11.0 | 15.0 | |V |38948. | | 209.67 |51 |M5e-M8.0 |00001 00002| +160007 |X Cap |210833.0-212052 |M | 10.2 | 15.0 | |V |38971. | | 217.94 |48 |M2.0e-M7.5 |00001 00002| +160008 |Y Cap |213422.9-135830 |M | 10.0 | 15.0 | |V |16735. | | 411.76 |35 | |05041 00002| +160009 |Z Cap |211037.5-161025 |M | 8.6 | 15.0 | |V |42017. | | 181.48 |49 |M2e-M7.0 |00001 00002| +160010 |RR Cap |210220.8-270515 |M | 7.8 | 15.5 | |V |39096. | | 277.54 |40 |M5e-M8.5 |00001 00002| +160011 |RS Cap *|210715.4-162521 |SRB | 8.3 | 10.3 | |p | | | 340. | |M4 |00358 BD | +160012 |RT Cap *|201706.5-211905 |SRB | 8.9 | 11.7 | |p | | | 393. | |C6,4(N3) | 06754| +160013 |RU Cap *|203234.0-214126 |M | 9.2 | 15.2 | |V |38891. | | 347.37 |36 |M9e |00001 00002| +160014 |RV Cap *|210128.9-151346 |RRAB | 10.22 | 11.57 | |V |33883.262 | | 0.44774401 | |A7-F4 |03506 01729| +160015 |RW Cap *|201756.1-174023 |EA/SD: | 9.8 | 11.0 | 9.9 |p |42664.532 | | 3.392446 |16 |A3+A4 |00001 00024| +160016 |RX Cap *|201455.2-125635 |RV | 11.6 | 13.7 | 12.5 |p |20741.4 | | 67.92 |22 |F8-G0 |01730 02452| +160017 |RY Cap *|200656.3-085450 |M: | 12.4 |< 13.5 | |p | | | | | |01731 USNO | +160018 |RZ Cap |203830.1-120106 |RR: | 12.5 | 13.5 | |p | | | 0.5 : | | |01732 06286| +160019 |SS Cap |200827.2-091406 |M | 11.9 |< 16. | |p |34981. | | 252.6 | | |00001 06286| +160021 |SU Cap |201747.0-135733 | | 12.4 | 13.8 | |p | | | | | |01733 08588| +160022 |SV Cap |202337.7-090755 |LB | 11.8 | 12.9 | |p | | | | | |00797 06286| +160028 |TU Cap |201410.2-155344 |SRB | 9.20 | 11.29 | |V | | | 90. : | |M5 |06450 01110| +160029 |TV Cap *|202358.1-114934 |SRB | 10.8 | 12.2 | |p | | | 151. | |M5e |00001 BD | +160030 |TW Cap *|201428.4-135008 |CWA | 9.95 | 11.28 | |V |44073.10 | | 28.6101 |20 : |A5Ib-F4Ib |00001 08588| +160031 |TX Cap |204032.1-170328 |M | 10.9 |< 14.5 | |p |34961. | | 129.35 | |M4e |00001 00190| +160032 |TY Cap *|202429.7-125755 |EA/SD | 10.5 | 11.8 | 10.6 |p |44793.452 | | 1.4234498 |19 *|A5 |00001 01735| +160033 |TZ Cap |204934.0-143443 |EB: | 11.8 | 13.6 | |p |28777.164 | | 1.99743 | | |00732 00293| +160034 |UU Cap |213610.4-135206 |SRB | 9.3 | 10.4 | |p | | | 100. : | |M4 |01158 BD | +160036 |UW Cap *|202051.3-103055 |EA/KE | 10.9 | 11.5 | 11.5 |p |43016.360 | | 1.399111 |14 *|A:+A: |00001 BD | +160052 |YY Cap |210355.1-184718 |LB | 11.1 | 11.6 | |p | | | | |M0 |00193 BD | +160053 |YZ Cap *|211932.4-150701 |RRC | 11.02 | 11.60 | |V |43729.741 | | 0.2734563 |40 |A5-A7 |00001 08087| +160054 |ZZ Cap |213414.2-165534 |SR | 11. | 12. | |p | | | 133. : | | |01110 01110| +160055 |AA Cap |215028.0-155028 |SR | 10.5 | 11.5 | |p |30629. | | 72.9 |41 |M5 |01110 01110| +160056 |AB Cap |205929.6-144800 |LB | 10.4 | 11.0 | |p | | | | |M2 |00479 BD | +160057 |AC Cap |201417.3-265444 |M | 11. |< 13.5 | |p |28700. :| | | |Me |00085 02384| +160058 |AD Cap *|213948.9-160021 |E/RS | 10.77 | 11.4 | |B | | | 2.96000 | |G5+G5 |07373 BD | +160059 |AE Cap *|201857.2-155128 |SR | 9.0 | 11.1 | |B | | | 200. | |M4 |03263 BD | +160060 |AF Cap |201454.1-210540 |EA | 10.1 | 10.8 | |p |38252.290 | | 6.03145 |10 | |04350 04383| +160061 |AG Cap |214616.3-091633 |SRB | 5.90 | 6.14 | |V | | | 25. : | |M3III |06645 BD | +160062 |AH Cap |214432.9-093209 |SR | 11. | 12.5 | |p | | | | |Me |00190 00190| +160063 |AI Cap |201728.4-105739 |EA | 11.9 | 12.8 | |p | | | | | |07594 07594| +160064 |AK Cap |203407.6-231459 |LB | 9.0 | 9.7 | |p | | | | |M2 |00190 CoD | +160065 |AL Cap |203731.6-153722 |L | 12.3 | 13.2 | |p | | | | | |07594 07594| +160066 |AM Cap |203844.4-094100 |LB | 10.4 | 11.1 | |p | | | | |M2 |02546 02546| +160067 |AN Cap |203247.4-263323 |RR: | 12. | 13. | |p | | | | | |00085 02384| +160068 |AO Cap |205936.1-190207 |ACV | 6.2 |( 0.050 )| |V | | | 2.25 | |B9p(Si) |08375 BD | +160069 |AP Cap |214736.4-171741 |ACV | 7.60 | 7.65 | |V |42619.827 | | 2.67 | |B9p(Si) |08312 BD | +160071 |AR Cap |200942.0-182048 |ACV | 8.08 | 8.28 | |V | | | | | |68148 BD | +160072 |AS Cap |213416.6-132902 |RS: | 8.0 |( 0.13 )| |V | | | | | |68056 BD | +160073 |AT Cap |202936.9-210735 |RS | 8.87 | 9.18 | |V | | | | | |69011 BD | +160074 |AU Cap |212129.7-150922 |RS | 7.98 | 8.02 | |V | | | | | |69011 BD | +160075 |AV Cap |200831.3-100345 |ACV: | 6.24 |( 0.02 u )| |B | | | | | |70022 BD | +160076 |AW Cap |203809.8-173007 |ACVO | 9.72 |( 0.01 B )| |V | | | | | |71157 BD | +160078 |AY Cap |203006.8-233041 |SR | 6.36 | 6.88 | |J | | | | | |73033 GSC | +160079 |AZ Cap |205602.7-171054 |BY+UV | 10.40 | 10.50 | |V | | | | | |73065 73065| +160080 |BB Cap |213118.6-094726 |BY | 11.96 | 11.99 | |V | | | | | |73018 73066| +160081 |BC Cap |200849.5-152444 |SRB | 8.13 | 8.37 | |Hp| | | | | |HIP HIP | +160082 |BD Cap |201006.8-251702 |DSCTC | 7.51 | 7.57 | |Hp| | | | | |HIP HIP | +160083 |BE Cap |201110.1-085032 |BE: | 6.16 | 6.43 | |V | | | | | |HIP HIP | +160084 |BF Cap |201828.6-191729 |EB | 8.94 | 9.27 | |Hp| | | | | |HIP HIP | +160085 |BG Cap |201945.3-132709 |SRD: | 8.92 | 9.04 | |Hp| | | | | |HIP HIP | +160086 |BH Cap *|202708.5-113251 |EB: | 8.03 | 8.16 | |Hp| | | | | |HIP HIP | +160087 |BI Cap |203143.0-115304 |LB: | 9.64 | 9.79 | |Hp| | | | | |HIP HIP | +160088 |BK Cap |203303.0-191819 |LB: | 8.78 | 8.90 | |Hp| | | | | |HIP HIP | +160089 |BL Cap |204239.8-180635 |RR: | 7.38 | 7.45 | |Hp| | | | | |HIP HIP | +160090 |BM Cap |204855.7-203708 |E | 9.16 | 9.42 | |Hp| | | | | |HIP HIP | +160091 |BN Cap *|212002.5-271816 |IB: | 8.15 | 8.54 | |Hp| | | | | |HIP HIP | +160092 |BO Cap |213522.8-230705 |LB: | 8.07 | 8.19 | |Hp| | | | | |HIP HIP | +160093 |BP Cap |213720.0-112739 |LB | 7.34 | 7.44 | |Hp| | | | | |HIP HIP | +160094 |BQ Cap |213736.1-202555 |EA | 8.11 | 8.40 | |Hp| | | | | |HIP HIP | +160095 |BR Cap |214644.9-222901 |LB: | 8.97 | 9.10 | |Hp| | | | | |HIP HIP | +160096 |BS Cap |215056.5-201120 |LB | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +160097 |BT Cap |215538.4-210824 |SRB: | 7.04 | 7.14 | |Hp| | | | | |HIP HIP | +160098 |BU Cap |215607.6-140208 |LB | 7.70 | 7.95 | |Hp| | | | | |HIP HIP | +160099 |BV Cap |215624.9-093509 |LB | 7.82 | 8.02 | |Hp| | | | | |HIP HIP | +160100 |BW Cap |215843.8-211059 |LB | 6.07 | 6.19 | |Hp| | | | | |HIP HIP | +160101 |BX Cap |205239.3-202000 |LB | 11.2 | 12.8 | |p | | | | | |75064 UCAC2| +160102 |BY Cap |214132.9-140251 |RS | 5.13 | 5.18 | |V | | | | | |75011 BD | +160103 |BZ Cap |203618.0-241814 |SR: | 10.4 | 11.0 | |V | | | | | |77004 DM | +160104 |CC Cap |204409.7-221812 |SR: | 11.7 | 12.8 | |V | | | | | |77004 UCAC2| +160105 |CD Cap |205235.9-263851 |SR: | 12.3 | 13.0 | |V | | | | | |77004 GSC | +160106 |CE Cap |210242.8-234655 |SR: | 11.6 | 12.2 | |V | | | | | |77004 77228| +160109 |CH Cap |211937.5-224227 |SR: | 11.8 | 12.6 | |V | | | | | |77004 DM | +160111 |CK Cap |213953.4-154035 |LB: | 12.0 | 12.8 | |V | | | | | |77004 UCAC2| +160112 |CL Cap |201826.8-185820 |EW | 12.49 | 12.93 | |* |52508.702 | | 0.39118 | | |78122 GSC | +160113 |CM Cap *|201949.6-123038 |EW | 9.70 | 10.25 | 10.20 |V |51979.010 | | 0.4189 | |F8/G0V |78130 DM | +160115 |CO Cap |203310.5-234011 |SRA | 10.8 | 12.8 | |V |52156 | | 242. | |M5e |78090 78174| +160117 |CQ Cap |212632.7-175243 |EB | 8.82 | 9.21 | 9.10 |V |52867.648 | | 0.690808 | |A9V |79011 DM | +160119 |CS Cap |215654.3-121250 |SRB | 9.3 | 10.3 | |V | | | 74. | |M3:III: |79100 DM | +160121 |CU Cap |201903.0-140205 |RS | 10.60 | 11.35 | |V | | | 11.794 | |K1IIIe |80034 GSC | NL80_3 +160124 |CX Cap |202411.8-245701 |RVA: | 12.4 | 13.7 | |V |52945.5 | | 51.37 | | |80022 GSC | NL80_3 +160125 |CY Cap |202842.3-094317 |RS | 9.25 | 9.45 | |V | | | 2.402 | |G5 |80034 DM | NL80_3 +160127 |DD Cap |203425.0-104058 |EA/RS | 10.03 | 10.40 | |V |52040.825 | | 7.3457 | |K1III |80048 GSC | NL80_3 +160130 |DG Cap |204142.3-221921 |BY | 9.72 | 10.00 | |V | | | 5.3080 | |K6Ve |80034 HIP | NL80_3 +160132 |DI Cap |211305.3-172913 |BY | 10.50 | 10.76 | |V | | | 4.820 : | |K6Ve |80034 GSC | NL80_3 +160134 |DL Cap |213902.0-211246 |RRAB | 11.9 | 12.6 | |V |53279.676 | | 0.661860 |15 | |80002 GSC | NL80_3 +169003 |gam Cap |214005.5-163944 |ACV | 3.20 |( 0.03 )| |J | | | | | |75065 BD | +169004 |del Cap *|214702.4-160738 |EA | 2.81 | 3.05 | 2.90 |V |35656.913 | | 1.0227688 |08 *|A7mIII |06781 BD | +169005 |eps Cap *|213704.8-192758 |GCAS | 4.48 | 4.72 | |V | | | | |B3IV-Vpeq |03712 BD | +169009 |iot Cap |212214.8-165004 |BY | 4.27 |( 0.06 )| |V | | | | | |73005 BD | +170001 |R Car *|093214.6-624720 |M | 3.9 | 10.5 | |V |42000. | | 308.71 |48 |M4e-M8e |00001 00002| +170002 |S Car |100921.9-613256 |M | 4.5 | 9.9 | |V |42112. | | 149.49 |51 |K5e-M6e |00001 00002| +170003 |T Car |105517.2-603101 |CST: | 7.00 | | |B | | | | |K0III |00693 03508| +170004 |U Car *|105748.2-594356 |DCEP | 5.72 | 7.02 | |V |37320.055 | | 38.7681 |21 |F6-G7Iab |06006 08613| +170005 |V Car *|082843.7-600721 |DCEP | 7.08 | 7.82 | |V |37454.023 | | 6.69668 |30 : |F6-G2Ib-II |06006 CoD | +170007 |X Car *|083116.8-591337 |EB/KE | 7.90 | 8.65 | 8.6 |V |28857.146 | | 1.0826310 | |A0V+A0V |00007 CoD | +170008 |Y Car *|103310.9-582955 |DCEP(B) | 7.53 | 8.48 | |V |41041.39 | | 3.639760 |29 |F3 |06143 03308| +170009 |Z Car |101354.6-585109 |M | 10.2 | 15.2 | |V |39448. | | 384.01 |37 |M6e |00001 00002| +170010 |RR Car *|095804.8-585140 |SRB | 9.1 | 10.4 | |p | | | | |M6.5SII-III |02430 00002| +170012 |RT Car *|104447.1-592448 |LC | 8.2 | 9.9 | |V | | | | |M2Ia-0 |00001 03508| +170013 |RU Car |091516.9-661410 |LB | 10.9 | 12.1 | |p | | | | |N3 |00370 05625| +170014 |RV Car |095820.9-635352 |M | 10.2 |< 16. | |V |38937. | | 365.68 |39 |M6e |00001 00002| +170015 |RW Car |091936.1-684528 |M | 8.5 | 15.0 | |V |38991. | | 318.62 |47 |M4e-M7e |00001 00002| +170016 |RX Car |103645.8-621917 |M | 12. |< 14. | |p |19466. | | 332.8 | |MS |00697 USNO | +170017 |RY Car *|112011.4-615217 |M | 12.5 |< 17.2 | |p |38744. | | 424.3 |45 |S7,8e |00001 06816| +170018 |RZ Car |103537.3-704300 |M | 8.8 |< 15.0 | |V |39586. | | 272.77 |42 |M4e-M8e |00001 00002| +170019 |SS Car |105810.6-615458 |EA | 12.3 | 13.0 | |p |23828.36 | | 3.300759 |07 |A |00034 08613| +170020 |ST Car *|101553.1-601255 |EB/SD | 9.6 |( 1.15 )|( 0.27 )|V |44317.7292 | | 0.90164965 | |A0IV+F6 |06833 03508| +170021 |SU Car |101330.4-605310 |M | 10. | 17.5 | |p |40096. | | 575.6 | |M5-M8e |05148 05625| +170022 |SV Car |094820.6-593212 |M | 10.1 |< 13.8 | |p |29340. | | 298.4 | |M9e |01000 USNO | +170023 |SW Car *|102657.1-581634 |EA/DS | 10.8 | 12.4 |( 0.05 )|p |28947.643 | | 8.165878 |10 *|A0 |03308 05289| +170024 |SX Car |104605.8-573251 |DCEP | 8.66 | 9.47 | |V |35074.336 | | 4.8600 |30 |F5-G2Ib-II |06006 02483| +170025 |SY Car |111538.6-575542 |LB | 10.8 | 11.6 | |p | | | | |C(N3) | 05625| +170026 |SZ Car *|095951.7-601306 |SRB | 10.0 | 12.1 | |p | | | 126. : | |C(N3) |00692 05625| +170027 |TT Car |102039.4-614448 |M | 12. |< 17. | |p |20621. | | 370.5 | |M6e |00697 03508| +170028 |TU Car |103456.0-604238 |M | 12. |< 17. | |p |20347. | | 258. | |C |00697 03508| +170029 |TV Car |103843.6-604925 |LB: | 12.4 | 14.72 | |B | | | | |C |01889 GSC | +170030 |TW Car |105504.1-590325 |LB: | 11.7 | 13.7 | |p | | | | |M3 |01889 GSC | +170031 |TX Car *|105858.1-590457 |RRAB | 12.5 | 13.3 | |p |24566.442 | | 0.6011360 |27 : | |00694 00694| +170032 |TY Car |105141.3-724610 |SRB | 11.0 | 12.5 | |p | | | 184. | |M5 |00003 05625| +170033 |TZ Car *|104603.0-653653 |SRB | 10.2 | 11.9 | |p | | | 69. | |R5 |00003 05625| +170034 |UU Car |092658.5-733237 |M | 9.9 |< 12.9 | |p |29523. | | 197.68 |47 |M3e |00001 08613| +170035 |UV Car |102423.3-605431 |LB | 10.6 | 12.6 | |p | | | | |M3-M5 |00016 05625| +170036 |UW Car |102650.9-594010 |DCEP | 8.98 | 9.86 | |V |34897.059 | | 5.345773 |28 |G0 |06006 05625| +170037 |UX Car *|102911.2-573648 |DCEP | 7.81 | 8.67 | |V |34906.805 | | 3.682246 |26 |F5-G1II |06006 03508| +170038 |UY Car |103204.4-614658 |DCEP | 8.54 | 9.33 | |V |34890.645 | | 5.543726 |27 |G |06006 03508| +170039 |UZ Car |103617.8-610045 |DCEP | 9.00 | 9.62 | |V |34894.69 | | 5.20466 |29 |G0 |06006 03508| +170040 |VV Car *|103826.0-591223 |INB: | 11.4 | 13.0 | |p | | | | |M3-M6 | 03308| +170042 |VX Car |104020.0-575641 |L | 11.1 | 12.7 | |p | | | | | |03551 03551| +170043 |VY Car *|104432.7-573355 |DCEP | 6.87 | 8.05 | |V |10009.58 | | 18.990 |36 |F6-G4Iab-Ib |02309 06998| +170045 |WW Car |105135.8-592306 |DCEP | 9.35 | 10.11 | |V |34925.15 | | 4.67681 |28 |F0 |02309 08613| +170048 |WZ Car *|105518.7-605624 |DCEP | 8.65 | 10.01 | |V |44143.17 | | 23.0132 |17 |F8 |00001 08613| +170049 |XX Car *|105709.2-650805 |DCEP | 8.67 | 9.89 | |V |36221.730 | | 15.71624 |33 |G0 |02309 CoD | +170050 |XY Car *|110216.1-641546 |DCEP | 8.82 | 9.77 | |V |36190.230 | | 12.43483 |39 |G5 |02309 CoD | +170051 |XZ Car *|110413.5-605848 |DCEP | 8.05 | 9.13 | |V |36205.754 | | 16.6499 |37 |K5 |06006 08613| +170052 |YY Car |102009.1-612634 |EA/SD | 10.0 | 11.5 | |p |23901.932 | | 2.64264 |12 *| |00032 05625| +170053 |YZ Car *|102816.9-592101 |DCEP | 8.24 | 9.08 | |V |34907.04 | | 18.1631 |41 |G5 |02309 03308| +170056 |AB Car |063615.4-555147 |SRA | 11.1 | 13.0 | |p |29850. | | 310. |32 : | |00353 CoD | +170057 |AC Car |070648.0-582252 |SRB | 9.1 | 10.3 | |p | | | 99. : | |M7III |00016 03389| +170058 |AD Car |103523.4-590623 |SR: | 12.0 | 13.3 | |p | | | | |M5-M7 |01889 04641| +170060 |AF Car *|101353.1-590111 |M | 10.0 | 15.0 | |p |38125. | | 453.0 | |M8e |00001 00002| +170061 |AG Car *|105611.6-602713 |SDOR | 7.1 | 9.0 | |p | | | | |B0I-A2Ieq |01890 08613| +170062 |AH Car |071936. -561039:| | 12.0 | 13.0 | |p | | | | | |00029 | +170063 |AI Car |074822.3-522809 |EA: | 10.0 |< 12.0 | |p | | | | | |00029 GSC | +170065 |AL Car |090019.3-594011 |M | 11.5 | 15.5 | |p |28267. | | 424. | | |00016 05625| +170069 |AP Car |101908.2-612230 |M | 12.5 |< 17. | |p |20252. | | 369. | | |00697 05625| +170070 |AQ Car |102123.0-610427 |DCEP | 8.55 | 9.15 | |V |36188.449 | | 9.76896 |50 |F8-G0Ib |06006 05625| +170072 |AS Car *|102423.5-601457 |EA | 11. | 12.2 | |p |23921.655 | | 2.76593 |13 | |00032 05625| +170073 |AT Car |102524.5-595642 | | 10.4 | 12.5 | |p | | | | |B5-B7ea |00029 05625| +170076 |AW Car *|103235.1-604610 |EA/SD | 12.2 | 16.5 | |p |23997.328 | | 6.51070 |09 | |01892 USNO | +170077 |AX Car |103312.4-582944 |CST: | 11.5 | 13. | |p | | | | | |00016 UCAC2| +170078 |AY Car |103431.4-594831 | | 12.1 | 14. | |p | | | | | |00697 UCAC2| +170092 |BO Car *|104550.7-592919 |LC | 7.18 | 8.5 | |V | | | | |M4Ib |00001 08613| +170093 |BP Car *|104641.9-600947 |EA/DS | 11.5 | 12.5 | |p |23879.931 | | 9.64492 |04 *| |00032 08613| +170095 |BR Car |104756.5-600909 |CST | 11.4 | | |p | | | | | |00003 08613| +170101 |BX Car |105205.7-622859 |SRA | 12.5 | 15.5 | |p |23925. | | 427. | | |03551 03551| +170103 |BZ Car *|105406.3-620233 |SRC | 8.9 | 10.8 | |p | | | 97. | |M3Ib |00003 08613| +170104 |CC Car |105427.0-612049 |DCEP | 11.71 | 12.83 | |V |40741.35 | | 4.75995 |24 | |00001 00077| +170105 |CD Car *|105709.9-610141 |EA | 12. | 12.9 | |p |23900.198 | | 2.96756 |08 *| |00032 08613| +170106 |CE Car |105828.6-634826 | | 11.9 |< 16. | |p | | | | | |01893 USNO | +170108 |CG Car |105924.0-623356 |M | 11.0 |< 16. | |p |28746. | | 224.7 | |Me |00001 2MASS| +170109 |CH Car *|110424.3-612204 |M | 10.9 | 15.4 : | |V |53473. | | 224.3 | | | UCAC3| +170110 |CI Car *|111406.6-602436 |EA/SD | 11.8 | 13.8 | |p |23901.246 | | 2.81849 |11 |A2 |00032 05151| +170111 |CK Car |102425.4-601129 |SRC | 9.2 | 10.5 | |p |29500. | | 525. : | |M3.5Iab |00692 05625| +170112 |CL Car |105359.9-610531 |SRC | 9.7 | 12.2 | |p |29530. | | 513. | |M5Iab |00003 03508| +170113 |CM Car |094755.8-672707 |M | 11.5 |< 14. | |p |28885. | | 335. | |M2e |00016 GSC | +170114 |CN Car |101532.9-581028 |DCEP | 10.24 | 11.00 | |V |34510.24 | | 4.93261 |30 | |02309 00694| +170115 |CO Car *|101756.6-632230 |EA/DS | 9.6 | 10.8 | |p |23877.983 | | 8.3121 |10 | |00032 CPD | +170118 |CR Car |103254.1-583116 |DCEP | 11.30 | 11.89 | |V |40737.25 | | 9.76094 |50 | |00001 01894| +170120 |CT Car |103655.8-613453 |DCEP | 11.70 | 12.82 | |V |35095.840 | | 18.0565 |33 | |06006 01895| +170122 |CV Car *|104544.4-575500 |EA/DS: | 11.1 | 13.2 |( 0.05 )|p |25759.730 | | 14.414897 |10 |A3 |01896 01896| +170124 |CX Car |105735.2-583313 |EA/SD | 10.0 | 10.8 | |p |23909.914 | | 3.34717 |12 *|A |00032 CPD | +170125 |CY Car |105750.7-604432 |DCEP | 9.44 | 10.05 | |V |35069.355 | | 4.26593 |34 |G0 |06006 00694| +170128 |DE Car *|110613.7-604733 |EA/SD | 11.2 | 13.8 | |p |23891.343 | | 3.71306 |11 |A |00032 05151| +170130 |DG Car |111208.9-611424 |EA/DS | 11.3 | 13.3 | |p |18098.75 | | 34.7247 |04 | |01267 CPD | +170132 |DI Car *|111552.4-695447 |* | 9.63 | 12.19 | |V | | | | |pec(R) | 05324| +170133 |DK Car *|111657.9-602929 |EA/DS | 11.6 | 12.7 | |p |23918.458 | | 11.335 |10 | |00032 05151| +170137 |DO Car |101320.6-591308 |EA | 9.3 | 9.5 | |p |29765.533 | | 3.85194 |09 |A1IV-V |00007 CoD | +170139 |DQ Car |102156.7-571441 |EA | 11.1 | 11.5 | |p |23872.929 | | 0.86691 |19 |A0 |00035 CPD | +170140 |DR Car |102441.4-602955 |EA/SD | 11.7 | 12.5 | |p |23849.5 | | 3.9957 |10 : |B5 |00016 05625| +170141 |DS Car *|103104.8-613947 |EA/KE: | 12.5 | 12.9 | |p |23843.447 | | 1.0988 |10 | |00035 UCAC2| +170144 |DV Car |104004.6-601216 |EA/KE: | 10.0 | 10.3 | |p |23840.321 | | 0.8405 |24 |B8 |00035 CoD | +170145 |DW Car *|104310.1-600212 |EA/KE | 9.6 | 10.3 | 10.3 |p |29241.997 | | 1.3277504 |18 |B5 |00007 08613| +170146 |DX Car |104448.2-622355 |EA/DM | 10.6 | 10.8 | |p |23810.13 | | 10.466 |10 | |00035 CPD | +170147 |DY Car |105232.8-603136 |DCEP | 10.91 | 11.76 | |V |40773.22 | | 4.67461 |24 | |00001 00694| +170152 |EH Car *|110423.8-611823 |EA/DS | 12.5 |< 15. | |p |23916.48 | | 13.367 |08 | |00035 08613| +170156 |EM Car *|111204.5-610543 |EA/DM | 8.73 | 9.0 | 8.9 |B |29551.574 | | 3.41427 |14 *|O8V+O8V |00007 05288| +170157 |EN Car *|111207.5-604316 |EA/KE | 10.58 | 10.9 | |B |23879.894 | | 1.53498 |15 *|B3-B5 |00035 05288| +170161 |ER Car *|110941.1-585016 |DCEP | 6.58 | 7.13 | |V |40277.88 | | 7.71855 |34 |F8-G1Iab-Ib |05366 03389| +170165 |EV Car |102021.6-602716 |SRC | 9.2 | 10.6 | |p |29475. | | 347. : | |M4.5Ia |00692 05625| +170167 |EX Car |102459.6-633810 |EA/SD | 10.0 | 11.5 | |p |23997.641 | | 1.396366 |14 *|G0 |01892 CPD | +170168 |EY Car |104223.0-610957 |DCEP | 10.00 | 10.68 | |V |35067.004 | | 2.87598 |30 | |08711 CPD | +170169 |EZ Car *|104253.9-622333 |EA/KE | 9.5 | 10.0 | 9.8 |p |23995.421 | | 1.1886881 |20 |B4III-IV |00003 CPD | +170173 |FI Car *|105101.8-583526 |DCEP | 11.34 | 11.92 | |V |41122.8 | | 13.4582 |50 | |00001 05151| +170175 |FL Car |105354.4-612721 |EA | 12.5 | 12.8 | |p |23940.386 | | 0.92576 |25 | |01892 08613| +170177 |FN Car |110114.4-600700 |DCEP | 11.16 | 11.85 | |V |34899.352 | | 4.58569 |40 : | |06006 08613| +170178 |FO Car *|110130.7-621727 |DCEP | 10.51 | 11.11 | |V |41115.8 | | 10.3568 |45 | |00001 GSC | +170179 |FP Car *|110435.9-623422 |EA | 10.1 | 11.5 | |B |21725.048 | | 176.027 |04 |B5III |00003 05291| +170181 |FR Car |111421.2-600311 |DCEP | 9.29 | 10.04 | |V |41048.5 | | 10.71697 |43 |G5 |00001 05151| +170182 |FS Car *|103839.2-590933 |EB | 10.8 | 11.5 | 10.9 |p |22746.105 | | 2.146587 | | |01902 01902| +170183 |FT Car *|103923.0-604919 |RR | 12.2 | 14.4 | |p | | | 0.5 : | | |00699 UCAC2| +170188 |FY Car |105034.7-623217 |SR: | 11.0 | 12.5 | |p |28665. | | 27.0 | | |00016 01902| +170189 |FZ Car |105401.8-591159 |DCEPS | 11.72 | 12.12 | |V |25738.51 | | 3.57792 |45 | |08711 01905| +170190 |GG Car *|105558.9-602334 |EB/GS | 9.1 | 9.5 | 9.5 |p |29580.13 | | 62.086 | |Beq |00007 01906| +170191 |GH Car *|111044.6-604501 |DCEPS | 9.00 | 9.35 | |V |35069.395 | | 5.72557 |44 |G0 |06006 05288| +170192 |GI Car |111400.0-575439 |DCEPS | 8.10 | 8.47 | |V |34924.602 | | 4.43061 |46 |F3-F8Iab-Ib |06006 05625| +170193 |GK Car *|111401.5-574316 |RV | 12.5 | 14.0 | 13.2 |p |24239. | | 55.6 |14 | |01905 01905| +170194 |GL Car *|111439.8-603936 |EA/DM | 9.73 | 10.33 | 10.31 |B |24264.448 | | 2.4222338 |14 *|B3:V |01907 05288| +170195 |GM Car *|103715.6-591423 |EB/KE | 9.11 |< 9.39 | 9.22 |V |29344.340 | | 1.535433 | |B8II-III |08083 03308| +170196 |GN Car *|110859.7-641928 |EB | 11.8 | 13.1 | 12.1 |p |23970.247 | | 4.34381 | | |00055 00055| +170198 |GP Car *|103001.0-590444 |EA | 12.4 | 12.8 | 12.8 |p |24445.440 | | 2.264192 |23 | |00060 00060| +170202 |GT Car |105926.1-592911 |DCEP | 11.57 | 13.19 | |V |26128.51 | | 13.1620 |50 | |00046 00060| +170203 |GU Car |110652.3-571403 |EA/SD | 11.1 | 12.2 | |p |28692.42 | | 3.49056 |13 |A2 |00016 00060| +170204 |GV Car *|110532.9-584350 |EA/DM | 8.92 | 9.32 | 9.1 |V |23828.433 | | 4.294621 |10 *|A0 |01911 03389| +170205 |GW Car *|093623.3-595910 |EB/KE | 9.55 | 10.1 | 9.9 |V |30291.0395 | | 1.1289111 | |B1III:n |01123 03312| +170206 |GX Car |095526.2-582547 |DCEP | 8.94 | 9.77 | |V |40741.13 | | 7.19673 |29 |F8II-K0 |00001 05625| +170207 |GY Car |100154.2-624938 |M | 11.3 |< 15.0 | |p |30875. | | 305. | | |04151 04151| +170208 |GZ Car *|102020.4-592236 |DCEPS(B) | 9.98 | 10.47 | |V |40742.6 | | 4.15901 |45 |G5 |07326 00092| +170209 |HH Car *|105336.7-592718 |EA/DM | 10.30 | 10.82 | 10.66 |V |41698.660 | | 3.231497 |18 |Bea |00001 05292| +170210 |HI Car *|110127.1-602629 |EA/SD | 10.6 | 11.5 | 10.8 |p |30334.761 | | 2.227342 |18 *|B5 |01123 01123| +170211 |HK Car *|110345.2-603832 |DCEP | 10.71 | 11.60 | |B |34535.35 | | 6.69574 |30 |G5 |02309 00092| +170212 |HL Car *|100442.8-615035 |EA/DS | 11. | 14. | |p |23379.16 | | 18.22465 |09 | |00077 03311| +170213 |HM Car |100951.6-610025 |EA/DS | 12. | 13. | |p |24996.978 | | 10.97299 |07 | |00077 00077| +170214 |HN Car *|101024.9-610001 |EA/KE | 11.9 | 12.5 | 12.5 |p |24358.678 | | 1.3918766 |17 | |00077 00077| +170216 |HP Car *|101935.7-572419 |EA/DM | 8.85 | 9.3 | 9.3 |V |24348.182 | | 1.6004464 |12 *|B2IIIn |00077 07330| +170217 |HQ Car *|102032.0-611457 |DCEP | 11.84 | 13.02 | |V |20326.03 | | 14.0722 |31 | |00077 00077| +170218 |HR Car *|102253.8-593728 |SDOR | 8.2 | 9.6 | |p | | | | |B2eq |01913 03308| +170223 |HW Car *|103920.3-610909 |DCEP | 9.0 | 9.8 | |p |24404.94 | | 9.2002 |50 |G2-3Ib-II |00077 CoD | +170232 |IO Car |105626.2-604358 |CEP | 11.81 | 12.56 | |B |24378.72 | | 13.606 |46 | |00077 00077| +170235 |IR Car *|110906.5-594029 |EW/KW | 12.2 | 12.6 | 12.6 |p |24380.061 | | 0.3460624 | | |00077 00077| +170237 |IT Car |111210.1-614518 |DCEP | 7.90 | 8.29 | |V |37299.766 | | 7.53320 |36 |F8-K2Iab-Ib |06006 05288| +170238 |IU Car *|065307.5-593544 |RRAB | 11.35 | 12.30 | |V |41695.359 | | 0.737148 |18 |A6-F5 |00001 02338| +170239 |IV Car |100236.7-585723 |EA/SD | 11.3 | 14.1 | |p |30853.244 | | 2.742844 |11 *| |00046 02338| +170240 |IW Car *|092653.3-633749 |RVB | 7.9 | 9.6 | |p |29401. | | 67.5 | |F7-8 |01917 08087| +170241 |IX Car *|105026.3-595857 |SRC | 9.0 | 10.0 | |p |28900. | | 400. | |M2Iab |01918 08613| +170242 |IY Car |074310.8-624734 |M | 11. |< 16. | |p | | | | |Me |00085 02385| +170243 |IZ Car *|083225.2-570213 |M | 12. |< 14. | |p | | | | |Me |00085 02381| +170244 |KK Car |083601.3-595627 |M | 11.8 | 15.2 | |p | | | | |M5ep |00085 02385| +170245 |KL Car |094248.8-634131 |M | 12. |< 13.5 | |p | | | | |S2,5e |00085 02382| +170246 |KM Car |095225.0-630113 |M | 11.9 |< 15.0 | |p |31575. | | 244. | | |04151 04151| +170248 |KO Car |100918.5-650834 |M | 11. |< 13. | |p | | | | | |00085 02382| +170249 |KP Car |101329.6-724131 |EA | 11. |< 13. | |p | | | | | |00085 CPD | +170250 |KQ Car *|092919.5-605122 |EA/SD | 10.2 | 11.5 | 10.3 |p |30868.225 | | 2.318375 |17 *|B8III-IV |00245 03312| +170251 |KR Car |092956.2-620912 |M | 12.3 |< 15.0 | |p |31635. | | 112. | |Me |00245 00245| +170252 |KS Car |072650.3-615135 |SR | 12.5 | 14.5 | |p | | | | |M5e |00085 02385| +170254 |KU Car *|103745.2-584011 |EA | 11.1 | 11.6 | 11.6 |p |30845.981 | | 5.921121 |09 *| |01123 01123| +170255 |KV Car |110302.6-670737 |SRB | 9.8 | 10.6 | |p | | | 150. : | |M4III |00090 05625| +170256 |KW Car |085626.0-585437 |M | 11.8 |< 15.0 | |p |30140. | | 383. | |Me |04151 04151| +170257 |KX Car |085646.8-624249 |M | 11.4 |< 15.0 | |p |30873. | | 269. | |Me |04151 04151| +170267 |LS Car |091049.7-722647 |SR | 12. | 13. | |p |36730. :| | | | |04001 04001| +170295 |NT Car |094328.8-623712 |M | 11.3 |< 15.0 | |p |31590. | | 313. | | |04151 04151| +170307 |OT Car |095907.5-682327 |EA | 12. | 12.5 | |p | | | | | |04001 04001| +170312 |OY Car *|100622.2-701405 |UGSU+E | 12.2 | 17. | |B | | |( 260. ) | |pec(UG) |00001 05183| +170314 |PP Car |103201.5-614107 |GCAS | 3.27 | 3.37 | |V | | | | |B5Vne |04118 CoD | +170322 |PX Car *|062100.2-543257 |EB/KE | 9.65 | 10.45 | 10.10 |V |28656.275 | | 0.795171 | |A9IV |05187 CoD | +170323 |PY Car |073458.9-634404 |E | 10.0 | 10.6 | |p |14939.729 | | 3.34066 | | |08040 CPD | +170324 |PZ Car |103745.2-612826 |EA/DM | 10.0 | 10.3 | |p |25384.72 | | 10.40059 |15 *|G5 |03551 CPD | +170325 |QQ Car |084642.4-580536 |EA/DM | 10.1 | 10.4 | |p |28663.325 | | 11.01985 | | |05289 05289| +170326 |QR Car *|095108.4-672612 |EB/KE | 10.0 | 10.5 | 10.4 |p |36691.256 | | 1.197375 | |A3 |05393 04001| +170327 |QS Car *|103417.5-710954 |EA/DM | 9.0 | 9.4 | 9.3 |p |28656.315 | | 9.3208 | |F2-F5 |05289 CoD | +170328 |QT Car |105221.2-715333 |EB | 11.4 | 12.3 | |p |34310.525 | | 1.632520 | | |05255 05255| +170329 |QU Car *|110542.5-683758 |NL | 11.4 |( 0.7 )| |V | | | | |pec |05524 05778| +170330 |QV Car |092118.1-584058 |SRB | 8.51 | 8.76 | |V |40689. :| | 75. | |M5III |05828 CoD | +170331 |QW Car |093257.6-741635 |EA/SD | 9.9 | 12.1 | |p |28904.505 | | 2.853175 | | |05236 05236| +170332 |QX Car *|095433.9-582517 |EA/DM | 6.60 | 7.21 | 7.02 |V |40701.3715 | | 4.47804 |06 |B5V+B5V |07436 05625| +170333 |QY Car *|101146.5-580338 |GCAS | 5.63 | 5.83 | |V | | | | |B2IVpne |05188 04641| +170334 |QZ Car *|104422.9-595936 |EB | 6.16 | 6.49 | 6.43 |V |43192.4 | | 5.9981 | |O9III |05189 04641| +170335 |V0335 Car |104450.9-685025 |SRA | 11.7 | 13.0 | |p | | | | |Me |00085 02382| +170337 |V0337 Car |101705.0-611956 |LC | 3.36 | 3.44 | |V | | | | |K3II |03712 05625| +170338 |V0338 Car |111352.3-583630 |EA/GS | 9.3 | 9.8 | |p |38555.198 | | 74.64 | |B9ea |06317 06317| +170339 |V0339 Car |111941.5-732337 |L | 12.5 | 17.5 | |p | | | | | |06318 06318| +170340 |V0340 Car |064052.2-522600 |SR | 9.5 | 10.5 | |p | | | | |M4/5pe |00085 CoD | +170341 |V0341 Car *|075651.0-590733 |L | 6.2 | 7.10 | |V | | | | |M1-3II-III |05196 07467| +170343 |V0343 Car *|084037.0-594540 |BCEP: | 4.20 |( 0.04 )| |B | | | | |B1.5III |04456 CoD | +170344 |V0344 Car |084642.5-564611 |GCAS | 4.4 | 4.51 | |V | | | | |B3Vne |06311 CoD | +170345 |V0345 Car |090538.4-703219 |GCAS | 4.67 | 4.78 | |V | | | | |B2Vne |06311 CoD | +170347 |V0347 Car *|101333.8-732004 |EA/DM | 8.5 | 9.0 | |p |38474.425 | | 5.72555 | |A3m |06871 06871| +170348 |V0348 Car *|102659.0-574033 |EB | 8.55 | 8.93 | 8.9 |V |39637.3 | | 5.562107 | |B1III+B |07048 04641| +170349 |V0349 Car |102935.4-575759 |LC | 7.76 | 8.31 | |V | | | | |M2Iab |06149 CoD | +170351 |V0351 Car |104519.0-720357 |M | 12.2 | 15.2 | |p |40627. | | | |M4-M5e |06318 06318| +170352 |V0352 Car |110727.8-731352 |M | 11.7 | 15. | |p |36675. :| | | |Me |04001 06318| +170353 |V0353 Car |111002.3-600543 |GCAS | 7.59 | 7.78 | |V | | | | |B2Ve |07778 04641| +170354 |V0354 Car *|102826.3-673618 |M: | 12.0 |< 16. | |V | | | | | |07447 USNO | +170355 |V0355 Car |072908.4-631445 |L | 11. | 12. | |p | | | | | |00085 02381| +170356 |V0356 Car *|075802.9-603653 |EA: | 7.59 | 8.01 | |V | | | | |B9.5IVp(Si) |07829 07829| +170357 |V0357 Car *|091058.1-585801 |E: | 3.41 | 3.44 | |V | | | | |B2IV-V |07832 05625| +170361 |V0361 Car *|103543.8-581442 |LC | 7.09 | 7.57 | |V | | | | |M1.5Iab-Ib |07892 05200| +170364 |V0364 Car |104011.4-650601 |ACV | 5.48 | 5.52 | |V |42428.81 | | 1.668 | |B8IIIp(Si) |07614 CPD | +170366 |V0366 Car |095443.4-571853 |M+ZAND | 5.70 | 8.60 | |J | | | 433. | |pec(e) |09146 08077| +170367 |V0367 Car *|095645.3-573917 |EB/DM | 7.49 | 7.59 | 7.54 |V |42468.79 | | 5.73 | |B6V |08222 07616| +170368 |V0368 Car |101135.5-584940 |LB: | 6.1 | 6.40 | |V | | | | |M5III |08223 CPD | +170369 |V0369 Car |103325.4-581125 |ACYG | 6.11 |( 0.1 )| |V | | | | |B6eIa |08070 CPD | +170370 |V0370 Car |103727.1-584400 |ACYG | 5.45 | 5.52 | |V | | | | |A0eIa |08070 07619| +170371 |V0371 Car |110834.0-615650 |ACYG | 5.12 | 5.19 | |V | | | | |B9.5eIa |08070 CPD | +170372 |V0372 Car |075229.7-542202 |BCEP | 5.69 |( 0.027 )| |V | | | 0.1160 | |B2III |08380 CoD | +170373 |V0373 Car *|075745.9-604935 |GCAS | 8.9 | 9.2 | |V | | | | |B9pe |02388 08383| +170374 |V0374 Car *|075850.5-604928 |GCAS | 5.72 | 5.84 | |V | | | | |B2IV-Vpne |08386 07830| +170375 |V0375 Car *|080442.9-625011 |BCEP: | 6.29 |( 0.04 )| |V | | | | |B4Vn |08387 CPD | +170376 |V0376 Car *|085658.4-591346 |BCEPS | 4.91 | 4.96 | |V | | | 0.0208 | |B2IV-V |08308 CPD | +170377 |V0377 Car |092527.1-572144 |EA/DM | 8.05 | 8.34 | |V | | | 2.242624 | |B4V |08389 CPD | +170378 |V0378 Car *|103553.6-581448 |BCEP: | 9.22 |( 0.015 )| |V | | | 0.188 | |B0.5III |08215 02405| +170379 |V0379 Car *|103558.5-581416 |BCEP+E: | 8.21 | 9.34 | |V | | | 0.1753 | |B1III |08215 02405| +170380 |V0380 Car *|103601.6-581510 |BCEP: | 8.95 |( 0.02 )| |V | | | 0.236 : | |B0.5III |08215 02405| +170381 |V0381 Car *|103608.3-581304 |BCEP: | 9.04 | 9.06 | |V | | | 0.17 : | |B1III |08215 02405| +170382 |V0382 Car *|110835.4-585830 |DCEP: | 3.84 | 4.02 | |V | | | | |F8-G2Ia |02555 05625| +170383 |V0383 Car |065904.0-583053 |DSCTC | 8.84 |( 0.06 )| |V | | | | |Fm |03889 CPD | +170384 |V0384 Car *|091745.3-683627 |SRB | 9.7 | 11.7 | |V | | | 100. | |Me |00001 08741| +170385 |V0385 Car *|110617.2-653035 |ELL:+WR | 7.70 |( 0.04 )|( 0.04 )|V |42000.0 | | 4.762 | |WN8 |03899 CPD | +170386 |V0386 Car |070418.3-564459 |ACV | 5.16 |( 0.026 )| |V | | | | | |67064 CPD | +170387 |V0387 Car |071339.9-534004 |ACV | 7.0 |( 0.023 )| |V | | | | | |67064 CPD | +170388 |V0388 Car |072151.4-554616 |ACV | 7.94 |( 0.03 )| |V | | | | | |67066 CPD | +170389 |V0389 Car |072141.1-615705 |ACV | 7.2 |( 0.01 )| |V | | | | | |67066 CPD | +170390 |V0390 Car |073900.3-531624 |ACV | 6.06 |( 0.004 )| |V | | | | | |67067 CoD | +170391 |V0391 Car |075802.5-604847 |ACV | 8.92 | 8.96 | |V | | | | | |67072 67071| +170392 |V0392 Car |075810.5-605158 |EA/DM+ACV:| 9.49 | 9.67 | |V | | | | | |67072 67071| +170393 |V0393 Car |075902.7-613501 |DSCT | 7.47 |( 0.23 )| |V | | | | | |67076 CPD | +170396 |V0396 Car |095452.9-574338 |ELL | 8.32 |( 0.06 )| |V | | | | | |67081 CPD | +170397 |V0397 Car |100003.7-661635 |DCEPS | 8.21 | 8.44 | |V | | | | | |67083 CPD | +170398 |V0398 Car |102631.4-583826 |E | 9.69 |( 0.035 )| |V | | | | | |67084 CPD | +170399 |V0399 Car |102724.5-573820 |CEP | 4.64 | 4.71 | |V | | | | | |67098 CPD | +170400 |V0400 Car |103448.7-580901 |BCEP | 9.76 |( 0.01 B )| |V | | | | | |67102 67100| +170401 |V0401 Car |103530.1-581208 |BCEP | 9.56 |( 0.03 B )| |V | | | | | |67102 67100| +170402 |V0402 Car |103532.3-581522 |GCAS | 9.91 | 9.97 : | |V | | | | | |67102 67100| +170403 |V0403 Car |103540.7-581244 |BCEP | 8.78 |( 0.04 B )| |V | | | | | |67102 67100| +170404 |V0404 Car |103548.2-581416 |BCEP | 9.21 | 9.23 | |V | | | | | |67102 67100| +170405 |V0405 Car |103548.2-581233 |BCEP | 9.29 |( 0.01 B )| |V | | | | | |67102 67100| +170406 |V0406 Car |103557.8-581221 |BCEP | 9.26 |( 0.03 B )| |V | | | | | |67102 67100| +170407 |V0407 Car |103817.6-650231 |ACV | 6.71 | 6.74 | |V | | | | | |67104 CPD | +170408 |V0408 Car |105815.0-625202 |M | 0.20 | 0.55 | |K | | | | | |67106 CPD | +170409 |V0409 Car |073057.0-575928 |ACVO | 9.1 |( 0.03 )| |B | | | | | |68299 CPD | +170410 |V0410 Car |075807.8-604635 |DSCTC | 10.67 |( 0.05 )| |V | | | | | |68059 68304| +170412 |V0412 Car |103543.3-581334 |BCEP: | 9.85 | 9.88 | |V | | | | | |68061 68310| +170413 |V0413 Car |105605.5-602326 |SRB | 8.98 | 9.12 | |V | | | | | |68062 CPD | +170414 |V0414 Car |110457.6-595132 |ACYG: | 6.55 |( 0.09 )| |V | | | | | |68313 CPD | +170415 |V0415 Car |064951.3-533721 |EA/GS | 4.39 |( 0.06 )| |V | | | | | |69051 CPD | +170416 |V0416 Car |075745.5-604703 |DSCTC: | 10.57 | 10.64 | |V | | | | | |69052 69053| +170417 |V0417 Car |075814.0-603902 |DSCTC: | 10.70 |( 0.02 )| |B | | | | | |69052 69053| +170418 |V0418 Car |075819.8-604939 |DSCTC: | 11.29 |( 0.03 )| |B | | | | | |69052 69053| +170419 |V0419 Car |075830.9-603747 |DSCTC: | 10.87 |( 0.02 )| |B | | | | | |69052 69053| +170420 |V0420 Car |075833.3-604926 |DSCTC: | 10.53 | 10.56 | |V | | | | | |69052 69053| +170421 |V0421 Car |075851.4-604003 |DSCTC: | 10.73 | 10.82 | |V | | | | | |69052 69053| +170422 |V0422 Car |075921.3-604856 |ACV | 9.08 | 9.13 | |V | | | | | |69056 69053| +170423 |V0423 Car |095506.0-572259 |ACV | 6.9 |( 0.02 )| |B | | | | | |69057 CPD | +170424 |V0424 Car |100239.8-595755 |ACV | 9.58 | 9.66 | |U | | | | | |69056 69058| +170425 |V0425 Car |103955.9-583319 |M | 8.61 | 11.48 | |J | | | | | |69060 | +170426 |V0426 Car |104756.9-590853 |PVTEL | 10.40 | 10.60 | |V | | | | | |69062 69063| +170427 |V0427 Car |105304.6-593020 |SXARI: | 8.9 |( 0.015 )| |V | | | | | |69064 CPD | +170428 |V0428 Car |105344.8-593047 |E:/WR | 10.7 |( 0.05 )| |V | | | | | |69064 CPD | +170429 |V0429 Car |104117.5-594037 |EA/WR | 6.38 |( 0.12 )| |B | | | | | |70023 70024| +170430 |V0430 Car |110605.8-595700 |BCEP: | 6.68 |( 0.03 )| |V | | | | | |70025 CoD | +170431 |V0431 Car |111004.1-605845 |E/WR | 8.09 |( 0.02 )| |B | | | | | |70023 CoD | +170432 |V0432 Car |110840.3-604252 |SDOR | 11.79 | 12.43 | |V | | | | | |71100 71101| +170433 |V0433 Car |102356.9-572752 |BCEP | 8.12 | 8.17 | |V | | | | | |72035 CPD | +170434 |V0434 Car |103036.7-574853 |SRC | 9.26 | 12.0 | |J | | | | | |72036 | +170435 |V0435 Car |062150.1-511416 |DSCTC | 7.3 |( 0.02 )| |B | | | | | |73067 CoD | +170437 |V0437 Car |095453.4-584145 |ACVO | 9.32 |( 0.01 B )| |V | | | | | |73069 CPD | +170438 |V0438 Car |103544.7-581431 |ELL: | 11.25 |( 0.07 B )| |V | | | | | |73070 73070| +170440 |V0440 Car |103554.8-581300 |BCEP | 9.14 |( 0.01 )| |B | | | | | |73070 73070| +170444 |V0444 Car |062517.1-515023 |LB: | 8.07 | 8.30 | |Hp| | | | | |HIP HIP | +170445 |V0445 Car |063721.7-545845 |SRB | 9.01 | 9.35 | |Hp| | | | | |HIP HIP | +170446 |V0446 Car |063737.7-572615 |LB: | 8.72 | 8.84 | |Hp| | | | | |HIP HIP | +170447 |V0447 Car |064333.1-530126 |SRB | 8.51 | 8.69 | |Hp| | | | | |HIP HIP | +170448 |V0448 Car |064718.7-553224 |SRD: | 5.66 | 5.86 | |Hp| | | | | |HIP HIP | +170449 |V0449 Car |065312.9-522437 |SRD | 9.03 | 9.18 | |Hp| | | | | |HIP HIP | +170450 |V0450 Car |070315.1-591041 |LPB | 5.45 | 5.47 | |Hp| | | | | |HIP HIP | +170451 |V0451 Car |070431.4-602802 |SRB | 8.83 | 9.12 | |Hp| | | | | |HIP HIP | +170452 |V0452 Car |071210.2-595022 |EA: | 8.04 | 8.37 | |Hp| | | | | |HIP HIP | +170453 |V0453 Car |072452.4-630042 |EA: | 11.32 | 12.19 | |Hp| | | | | |HIP HIP | +170454 |V0454 Car |073246.1-533319 |EB | 6.92 | 7.10 | |Hp| | | | | |HIP HIP | +170455 |V0455 Car |073625.3-615226 |EA | 8.33 | 8.55 | |Hp| | | | | |HIP HIP | +170456 |V0456 Car |074223.8-560846 |SXARI: | 7.21 | 7.26 | |Hp| | | | | |HIP HIP | +170457 |V0457 Car |074227.3-632908 |LB: | 8.41 | 8.51 | |Hp| | | | | |HIP HIP | +170458 |V0458 Car |074656.7-522050 |ACV: | 6.85 | 6.92 | |Hp| | | | | |HIP HIP | +170459 |V0459 Car |075213.3-593649 |ACV | 7.47 | 7.51 | |Hp| | | | | |HIP HIP | +170460 |V0460 Car |075937.5-603513 |LC | 5.15 | 5.30 | |V | | | | | |HIP HIP | +170461 |V0461 Car |080123.0-543056 |EA | 6.08 | 6.20 | |Hp| | | | | |HIP HIP | +170462 |V0462 Car |080215.5-553226 |EB | 6.68 | 6.84 | |Hp| | | | | |HIP HIP | +170463 |V0463 Car |080540.0-592526 |BY: | 10.41 | 10.60 | |Hp| | | | | |HIP HIP | +170464 |V0464 Car |080848.9-613408 |LB: | 8.95 | 9.06 | |Hp| | | | | |HIP HIP | +170465 |V0465 Car |081745.0-612800 |LB: | 8.73 | 8.87 | |Hp| | | | | |HIP HIP | +170466 |V0466 Car |081805.0-601850 |EA | 7.25 | 7.55 | |Hp| | | | | |HIP HIP | +170467 |V0467 Car |082001.7-565130 |EA: | 8.00 | 8.46 | |Hp| | | | | |HIP HIP | +170468 |V0468 Car |082509.3-552822 |ACV: | 6.59 | 6.62 | |Hp| | | | | |HIP HIP | +170469 |V0469 Car |082929.8-541242 |ACV | 6.39 | 6.42 | |Hp| | | | | |HIP HIP | +170470 |V0470 Car |083241.1-552812 |EB: | 7.45 | 7.61 | |Hp| | | | | |HIP HIP | +170471 |V0471 Car |083652.7-633739 |BE | 8.02 | 8.10 | |Hp| | | | | |HIP HIP | +170472 |V0472 Car |084330.1-614120 |ACV | 6.78 | 6.83 | |Hp| | | | | |HIP HIP | +170473 |V0473 Car |085454.0-581423 |LPB | 6.31 | 6.35 | |Hp| | | | | |HIP HIP | +170474 |V0474 Car |090023.2-630004 |BY | 10.26 | 10.44 | |Hp| | | | | |HIP HIP | +170475 |V0475 Car |090051.3-575501 |SRB | 7.79 | 8.25 | |Hp| | | | | |HIP HIP | +170476 |V0476 Car |090552.6-693431 |EA: | 8.28 | 8.39 | |Hp| | | | | |HIP HIP | +170477 |V0477 Car |091108.3-581953 |EA | 8.34 | 8.56 | |Hp| | | | | |HIP HIP | +170478 |V0478 Car |091751.7-670303 |SRD | 6.28 | 6.30 | |Hp| | | | | |HIP HIP | +170479 |V0479 Car |092335.0-611136 |BY: | 10.07 | 10.22 | |Hp| | | | | |HIP HIP | +170480 |V0480 Car |092439.5-584121 |BE | 7.76 | 7.99 | |Hp| | | | | |HIP HIP | +170481 |V0481 Car |092826.3-722521 |ACV | 7.72 | 7.77 | |Hp| | | | | |HIP HIP | +170482 |V0482 Car |093023.4-582143 |SRB: | 5.85 | 5.95 | |Hp| | | | | |HIP HIP | +170483 |V0483 Car |093434.9-640151 |LPB | 7.40 | 7.43 | |Hp| | | | | |HIP HIP | +170484 |V0484 Car |093429.8-660720 |GCAS | 7.43 | 7.62 | |Hp| | | | | |HIP HIP | +170485 |V0485 Car |094137.3-683018 |BE | 7.07 | 7.12 | |Hp| | | | | |HIP HIP | +170486 |V0486 Car |094213.0-665453 |EB | 6.31 | 6.45 | |Hp| | | | | |HIP HIP | +170487 |V0487 Car |094540.6-571110 |ACV | 6.39 | 6.49 | |Hp| | | | | |HIP HIP | +170488 |V0488 Car |094540.4-700706 |LPB | 7.13 | 7.16 | |Hp| | | | | |HIP HIP | +170489 |V0489 Car |094654.6-693012 |SRB | 8.17 | 8.60 | |Hp| | | | | |HIP HIP | +170490 |V0490 Car |094827.1-573931 |SRB | 8.10 | 8.32 | |Hp| | | | | |HIP HIP | +170491 |V0491 Car *|095530.2-575717 |BY:+E: | 9.18 | 11.22 | |Hp| | | | | |HIP HIP | +170492 |V0492 Car |095659.8-690607 |LPB | 6.14 | 6.18 | |Hp| | | | | |HIP HIP | +170493 |V0493 Car *|095740.3-594252 |EA | 8.84 | 9.19 | |Hp| | | | | |HIP HIP | +170494 |V0494 Car |095705.5-703503 |LB: | 9.24 | 9.53 | |Hp| | | | | |HIP HIP | +170495 |V0495 Car |100756.6-621317 |ACV | 6.40 | 6.42 | |Hp| | | | | |HIP HIP | +170496 |V0496 Car |101010.6-710412 |SRB | 7.96 | 8.57 | |Hp| | | | | |HIP HIP | +170497 |V0497 Car |101136.3-595302 |BE | 8.99 | 9.12 | |Hp| | | | | |HIP HIP | +170498 |V0498 Car *|101149.9-613231 |E: | 7.14 | 7.24 | |Hp| | | | | |HIP HIP | +170499 |V0499 Car |101552.6-572230 |ACYG: | 7.91 | 7.99 | |Hp| | | | | |HIP HIP | +170500 |V0500 Car |101702.3-575447 |WR | 10.61 | 10.81 | |Hp| | | | | |HIP HIP | +170501 |V0501 Car |102027.4-720749 |SRB | 6.91 | 7.01 | |Hp| | | | | |HIP HIP | +170502 |V0502 Car |102257.6-604011 |LB: | 8.25 | 8.36 | |Hp| | | | | |HIP HIP | +170503 |V0503 Car |102600.2-574937 |BE: | 9.27 | 9.39 | |Hp| | | | | |HIP HIP | +170504 |V0504 Car |102655.7-573625 |ACYG: | 7.14 | 7.21 | |Hp| | | | | |HIP HIP | +170505 |V0505 Car |102649.3-731005 |SRB | 6.60 | 6.68 | |Hp| | | | | |HIP HIP | +170506 |V0506 Car |102802.9-571155 |LPB: | 6.77 | 6.80 | |Hp| | | | | |HIP HIP | +170507 |V0507 Car |102818.3-630952 |BE | 6.39 | 6.45 | |Hp| | | | | |HIP HIP | +170508 |V0508 Car |102849.3-605341 |ACYG | 7.66 | 7.70 | |Hp| | | | | |HIP HIP | +170509 |V0509 Car |103011.7-622922 |EA | 8.61 | 8.97 | |Hp| | | | | |HIP HIP | +170510 |V0510 Car |103033.7-612011 |GCAS | 7.47 | 7.67 | |Hp| | | | | |HIP HIP | +170511 |V0511 Car |103007.9-705317 |LB | 7.10 | 7.26 | |Hp| | | | | |HIP HIP | +170512 |V0512 Car |103506.2-692105 |SRB | 6.85 | 6.98 | |Hp| | | | | |HIP HIP | +170513 |V0513 Car |103542.0-581134 |ACYG | 6.72 | 6.76 | |Hp| | | | | |HIP HIP | +170514 |V0514 Car |103802.6-571523 |LPB | 5.83 | 5.86 | |Hp| | | | | |HIP HIP | +170515 |V0515 Car |103807.1-603256 |SRB | 7.79 | 8.03 | |Hp| | | | | |HIP HIP | +170516 |V0516 Car |104053.0-575608 |ACYG | 7.03 | 7.08 | |Hp| | | | | |HIP HIP | +170517 |V0517 Car |104105.5-731700 |SRB: | 7.86 | 7.95 | |Hp| | | | | |HIP HIP | +170518 |V0518 Car |104214.1-642759 |GCAS: | 4.60 | 4.76 | |Hp| | | | | |HIP HIP | +170519 |V0519 Car |104240.6-591257 |BE | 5.40 | 5.48 | |Hp| | | | | |HIP HIP | +170520 |V0520 Car |104332.3-603400 |LC: | 4.63 | 4.70 | |Hp| | | | | |HIP HIP | +170521 |V0521 Car |104410.0-720352 |LB | 7.23 | 7.69 | |Hp| | | | | |HIP HIP | +170522 |V0522 Car |104805.4-595509 |ACYG: | 6.04 | 6.12 | |Hp| | | | | |HIP HIP | +170523 |V0523 Car |105156.2-582456 |ACYG | 6.95 | 6.99 | |Hp| | | | | |HIP HIP | +170524 |V0524 Car |105230.9-571426 |ACYG | 5.28 | 5.34 | |Hp| | | | | |HIP HIP | +170525 |V0525 Car |105616.3-580311 |LB | 7.10 | 7.26 | |Hp| | | | | |HIP HIP | +170526 |V0526 Car |105624.5-573305 |ACYG: | 7.38 | 7.45 | |Hp| | | | | |HIP HIP | +170527 |V0527 Car |105920.6-580728 |DSCTC: | 9.04 | 9.09 | |Hp| | | | | |HIP HIP | +170528 |V0528 Car |110306.2-605439 |LC | 6.51 | 6.75 | |Hp| | | | | |HIP HIP | +170529 |V0529 Car |110312.8-630400 |EA | 8.19 | 8.58 | |Hp| | | | | |HIP HIP | +170530 |V0530 Car |110429.2-625744 |LC | 8.00 | 8.22 | |Hp| | | | | |HIP HIP | +170531 |V0531 Car |110816.5-613310 |LB: | 9.28 | 9.48 | |Hp| | | | | |HIP HIP | +170532 |V0532 Car |111203.5-582524 |SRB | 6.10 | 6.28 | |Hp| | | | | |HIP HIP | +170533 |V0533 Car |111236.0-601904 |ACYG: | 4.69 | 4.75 | |Hp| | | | | |HIP HIP | +170534 |V0534 Car *|111633.9-620656 |IA: | 10.73 | 11.06 | |Hp| | | | | |HIP HIP | +170535 |V0535 Car |111719.0-674925 |LB | 6.05 | 6.16 | |Hp| | | | | |HIP HIP | +170536 |V0536 Car |111818.3-625829 |LPB: | 8.87 | 8.97 | |Hp| | | | | |HIP HIP | +170537 |V0537 Car |111843.7-581111 |SRB | 6.24 | 6.56 | |Hp| | | | | |HIP HIP | +170538 |V0538 Car |112006.2-651507 |LB: | 7.64 | 8.20 | |Hp| | | | | |HIP HIP | +170539 |V0539 Car |082633.2-571806 |ACV | 8.86 |( 0.13 )| |V | | | | | |75066 CPD | +170540 |V0540 Car |104719.1-571932 |ACYG | 6.98 | 7.04 | |Hp| | | | | |75030 CPD | +170541 |V0541 Car |105106.0-621702 |EA/WR | 11.73 |( 0.09 )| |V | | | | | |75067 75020| +170542 |V0542 Car |103341.8-641346 |BY | 11.75 |( 0.04 )| |V | | | | | |76104 76105| +170550 |V0550 Car |103956.0-635930 |BY | 12.14 |( 0.11 )| |V | | | | | |76104 76105| +170552 |V0552 Car |104051.4-644248 |BY | 12.19 |( 0.21 )| |V | | | | | |76104 76105| +170555 |V0555 Car |104207.1-644608 |BY | 11.57 |( 0.07 )| |V | | | | | |76104 76106| +170557 |V0557 Car |104241.5-642104 |BY | 10.57 |( 0.21 )| |V | | | | | |76104 76107| +170558 |V0558 Car |104406.8-635935 |BY | 11.07 |( 0.08 )| |V | | | | | |76104 76105| +170559 |V0559 Car |104422.6-641530 |BY | 10.92 |( 0.06 )| |V | | | | | |76104 76106| +170560 |V0560 Car |104433.7-594415 |ELL | 7.74 |( 0.02 )| |V | | | | | |76108 DM | +170561 |V0561 Car |104459.6-650219 |BY | 10.89 |( 0.09 )| |V | | | | | |76104 76107| +170563 |V0563 Car |104530.0-642521 |BY | 10.66 |( 0.10 )| |V | | | | | |76104 76107| +170564 |V0564 Car |104614.8-640258 |BY | 10.70 |( 0.12 )| |V | | | | | |76104 76105| +170567 |V0567 Car |104818.4-640953 |BY | 10.26 |( 0.05 )| |V | | | | | |76104 76107| +170570 |V0570 Car |104948.4-644629 |BY | 11.73 |( 0.10 )| |V | | | | | |76104 76105| +170572 |V0572 Car |104447.3-594353 |EA | 8.66 | 9.07 | |V | | | | | |77090 DM | +170573 |V0573 Car |104508.2-594049 |EA: | 9.45 | 10.00 | |y | | | | | |77091 77091| +170575 |V0575 Car *|072449.6-512827 |EA | 7.82 | 8.23 | 8.08 |V |52784.540 | | 7.0508 | |F2V |78011 DM | +170576 |V0576 Car *|081915.7-601001 |* | 6.32 | 8.17 | |K | | | | |G+M |78108 2MASS| +170577 |V0577 Car |082203.6-605713 |M | 10.4 | 14.8 | |V |52920 | | 209. | |Me |78130 USNO | +170578 |V0578 Car |084345.4-550152 |M | 11.2 |< 14.0 | |V |52190 | | 180. | | |78040 USNO | +170582 |V0582 Car |090518.0-670824 |SRA: | 11.0 | 12.6 | |V |52624 | | 252. | | |78130 78121| +170584 |V0584 Car |091130.0-613713 |M | 10.8 | 15.0 | |V |51960 | | 307. | | |78130 78126| +170585 |V0585 Car |091257.9-574828 |M: | 10.9 |< 15.0 | |V |51956 | | 301. | |M7 |78130 USNO | +170586 |V0586 Car |091627.5-720415 |M | 11.0 | 13.5 | |V |52820 | | 183. | | |78130 78129| +170587 |V0587 Car |092029.3-664847 |SRB: | 12.0 | 12.8 | |V | | | 231. : | | |78130 78121| +170588 |V0588 Car |092108.9-615622 |M | 11.0 |< 14.2 | |V |52971 | | 406. | |Me |78040 USNO | +170591 |V0591 Car |092700.9-703756 |LB | 12.5 | 13.5 | |V | | | | | |78130 78121| +170592 |V0592 Car *|093345.3-660117 |EW | 10.87 | 11.50 | 11.45 |V |52615.737 | | 0.80110 | | |78011 78121| +170593 |V0593 Car |093517.0-682353 |M | 10.9 | 15.0 | |V |52810 | | 335. | | |78130 GSC | +170594 |V0594 Car |093724.3-634846 |EA | 10.4 | 11.2 | |V |51948.606 | | 3.16583 | |A5 |78011 78132| +170595 |V0595 Car |093955.1-743243 |M | 10.2 | 13.6 | |V |52940 | | 186. | |Me |78090 78133| +170596 |V0596 Car |095028.5-605803 |IA | 8.44 | 8.75 | |V | | | | |B5Vne |78038 DM | +170597 |V0597 Car |101810.3-605942 |SRB | 9.5 | 10.0 | |V | | | 113. | |S |78130 GSC | +170598 |V0598 Car *|104246.9-725912 |EA | 10.81 | 11.38 | 11.32 |V |51880.770 | | 3.51151 | | |78011 DM | +170599 |V0599 Car |105327.3-582525 |IA | 8.85 | 9.41 | |V | | | | |B8e |78038 DM | +170600 |V0600 Car |110602.8-683633 |M | 10.6 | 14.0 | |V |52750 | | 280. | |S4,2 |78142 78142| +170601 |V0601 Car |111223.9-602243 |SRA | 8.2 | 8.5 | |V | | | 73. | |M0 |78290 DM | +170602 |V0602 Car |111330.0-600529 |SRC | 7.6 | 9.1 | |V | | | 635. | |M3Ia+ |78130 DM | +170604 |V0604 Car |071450.6-591604 |EW | 9.16 | 9.64 | 9.60 |V |51878.748 | | 0.472292 | |F7IV/V |79011 DM | +170605 |V0605 Car |073950.2-533828 |EB | 9.50 | 10.18 | 9.91 |V |52989.797 | | 0.688714 | |A1/2V |79011 79233| +170606 |V0606 Car |074438.7-564232 |EA | 8.31 | 8.68 | 8.60 : |V |53042.680 | | 12.3192 |04 |B8/9III |79018 DM | +170607 |V0607 Car *|075622.7-611702 |ACV | 9.34 | 9.41 | |V | | | 1.9457 | |Ap |79100 DM | +170608 |V0608 Car |080734.0-551937 |EW | 8.87 | 9.55 | 9.55 |V |51884.718 | | 0.967554 | |A0V |79011 DM | +170609 |V0609 Car |091025.4-573022 |EA | 10.96 | 11.82 | 11.35 |V |52690.713 | | 3.13602 |06 | |79003 DM | +170610 |V0610 Car |092259.8-594456 |EA | 10.20 | 10.75 : | 10.60 : |V |53383.850 | | 4.84493 |08 |B8 |79003 DM | +170611 |V0611 Car |093135.2-655105 |EA | 11.95 | 12.45 | 12.15 |V |52706.640 | | 0.98273 |14 | |79064 79063| +170612 |V0612 Car |093314.2-642107 |M | 10.8 | 14.3 | |V |52174. | | 386. | | |79072 79073| +170613 |V0613 Car |093516.6-602728 |EA | 12.30 | 13.10 | 12.4 : |V |53091.199 | | 5.9441 |11 | |79100 GSC | +170614 |V0614 Car |093657.8-655007 |SRB | 10.3 | 11.7 | |V | | | 165. | |S7,8 |79100 79068| +170615 |V0615 Car |093735.8-583038 |SRB | 10.0 | 11.7 | |V | | | 115. | |M4 |79100 79080| +170616 |V0616 Car |094107.2-725320 |LB | 10.5 | 11.6 | |V | | | | | |79100 GSC | +170617 |V0617 Car |094133.9-613903 |M | 12.1 |< 14.4 | |V |53755. | | 165.2 | | |79064 USNO | +170618 |V0618 Car |094211.8-590218 |SRA | 11.7 | 12.9 | |V |53357.8 | | 67.6 | |M7 |79064 79075| +170619 |V0619 Car |094313.0-720638 |LB | 12.2 | 13.5 | |V | | | | | |79230 79063| +170620 |V0620 Car |094316.3-660352 |LB | 9.70 | 10.45 | |V | | | | | |79100 DM | +170624 |V0624 Car |094558.0-721238 |SRB | 8.6 | 9.5 | |V | | | 85. | |M6/7III |79100 DM | +170625 |V0625 Car *|095047.8-672315 |EW | 11.15 | 12.00 | 11.95 |V |52783.535 | | 0.2769435 | | |79011 79063| +170626 |V0626 Car |095048.0-690603 |LB | 10.0 | 10.7 | |V | | | | | |79100 79078| +170627 |V0627 Car *|095108.6-570845 |SRA: | 11.6 |< 12.8 | |V |52950. | | 346. | |M9 |79072 GSC | +170629 |V0629 Car |095304.6-654810 |EW | 11.8 | 12.3 | 12.3 |V |53832.64 | | 0.562480 | | |79064 79063| +170630 |V0630 Car |095459.6-615741 |M: | 12.4 |< 14.2 | |V |53079. | | 230. | | |79064 USNO | +170631 |V0631 Car |095718.3-671009 |SRB | 11.5 | 12.2 | |V | | | 60. | | |79100 79063| +170632 |V0632 Car |095750.4-581533 |EA | 12.16 | 12.66 | 12.54 |V |53018.820 | | 7.1362 |05 | |79018 79034| +170633 |V0633 Car |095822.5-722937 |EA | 12.4 | 13.2 | 12.6 |V |53788.663 | | 1.89450 |15 | |79064 79063| +170636 |V0636 Car |100103.4-685419 |M | 11.4 |< 14.4 | |V |53585. | | 203. | | |79100 USNO | +170640 |V0640 Car |100430.3-583952 |INA | 7.4 | 9.8 | |V | | | | |B3/4[e] |79234 DM | +170641 |V0641 Car |100457.7-600456 |M | 12.0 |< 14.2 | |V |53877. | | 203. | | |79072 USNO | +170643 |V0643 Car |100609.0-601037 |M | 10.8 | 14.2 | |V |52783. | | 418. | |Se |79100 USNO | +170645 |V0645 Car |100734.1-630949 |M | 11. | 16.5 | |V |53455. | | 350. | |M9 |79072 2MASS| +170647 |V0647 Car |101035.6-615148 |SRB | 9.4 | 9.7 | |V | | | 190. | |M2/3(III) |79100 DM | +170648 |V0648 Car |101103.0-574814 |ZAND: | 9.6 | 10.0 | |V | | | | |M3ep+OB |79100 DM | +170649 |V0649 Car |101246.3-574951 |M | 11.8 |< 14.6 | |V |53443. | | 288. | | |79072 USNO | +170652 |V0652 Car |102454.1-635214 |SRA: | 12.0 |< 13.8 | |V |52854. | | 376. | |M8 |79072 2MASS| +170653 |V0653 Car |102539.6-681456 |M | 11.6 |< 14.0 | |V |53756. | | 298. | |Me |79100 GSC | +170654 |V0654 Car |102924.6-600516 |EA | 12.5 | 13.3 : | 13.1 : |V |51919.730 | | 2.87362 |05 |B8V |79018 79155| +170655 |V0655 Car *|103008.8-665905 |EA | 6.19 | 6.36 | 6.35 |V |48175.220 | | 16.9330 |05 |B4IV |79009 DM | +170658 |V0658 Car |103847.3-584332 |EA | 9.08 | 9.37 | 9.23 |V |52786.540 | | 32.186 |18 |A1Iab |79004 DM | +170660 |V0660 Car *|104339.6-601022 |M: | 10.6 : | 14.6 : | |V | | | 424. : | |C |79100 2MASS| +170661 |V0661 Car *|104400.4-595228 |EA | 8.07 | 8.28 | 8.2 : |V |53131.619 | | 23.944 |04 : |O7II |79216 DM | +170662 |V0662 Car *|104536.3-594823 |EB | 12.05 | 12.75 | 12.75 |V |53490.609 | | 1.41355 | |O4V |79064 79217| +170663 |V0663 Car |104846.4-691750 |M | 10.5 | 15.8 | |V |53837. | | 269. | | |79072 GSC | +170664 |V0664 Car |105030.7-724436 |M | 10.1 |< 15.0 | |V |53503. | | 227. | |Me |79064 79076| +170665 |V0665 Car *|105152.0-662007 |EA | 10.90 | 11.30 | 11.3 : |V |51888.780 | | 15.509 |04 : | |79009 DM | +170666 |V0666 Car |105208.2-733639 |SRB | 11.0 | 13.3 | |V | | | 146.4 | | |79064 79076| +170667 |V0667 Car |105244.3-581039 |SRB | 10.0 | 10.5 | |V | | | 40. | |M5-M7 |79100 DM | +170668 |V0668 Car |105255.3-693908 |M | 11.9 |< 14.4 | |V |53868. | | 251. | | |79100 GSC | +170669 |V0669 Car |105323.8-593512 |SRA: | 12.4 | 13.8 : | |V |53871. | | 290. | |S |79072 USNO | +170670 |V0670 Car |105636.5-713227 |M | 11.4 | 15.0 | |V |53832. | | 216. | |Me |79064 79076| +170671 |V0671 Car |105809.3-721446 |M | 8.8 | 12.4 | |V |53757. | | 226. | |Me |79064 DM | +170672 |V0672 Car |105925.4-581218 |M | 12.3 |< 15.0 | |V |53561. | | 355. | |M7 |79072 USNO | +170673 |V0673 Car |110538.6-731548 |M | 12.1 |< 15.0 | |V |53868. | | 242. | |Me |79064 GSC | +170674 |V0674 Car *|110650.2-595048 |EA | 9.94 | 10.47 | 10.24 |V |52973.770 | | 19.811 |03 |B1V |79003 DM | +170675 |V0675 Car *|110742.1-713541 |SRA: | 10.9 |< 12.2 | |V |53657. | | 414. | | |79064 79071| +170676 |V0676 Car |110919.6-714812 |SRB | 10.1 | 11.0 | |V | | | 56.7 | | |79064 79087| +170677 |V0677 Car |111328.9-673529 |M | 12.0 |< 15.2 | |V |53541. | | 131. | | |79072 GSC | +170680 |V0680 Car *|070014.7-605155 |BY: | 11.75 |( 0.04 )| |V | | | 4.4 | |G5V |80199 2MASS| NL80_2 +170681 |V0681 Car *|073903.7-603709 |EA+DSCT: | 10.04 | 10.22 | 10.19 |V |51978.6871 | | 1.2209619 |09 |A5II |80281 DM | NL80_2 +170684 |V0684 Car *|085729.6-625350 |EA | 8.76 | 8.94 | 8.94 |V |52619.731 | | 3.33751 |09 |A5IV/V |80011 DM | NL80_2 +170685 |V0685 Car |091639.5-743645 |LB | 12.0 |< 12.5 | |V | | | | | |80256 GSC | NL80_2 +170686 |V0686 Car *|093338.8-574209 |EA | 8.92 | 9.05 | 9.01 |V |53851.646 | | 2.08489 |07 |A0V |80011 DM | NL80_2 +170688 |V0688 Car |094441.5-624732 |M | 6.52 | 7.70 | |K | | | 547. | |C |80166 2MASS| NL80_2 +170689 |V0689 Car |094509.3-632726 |RRAB | 12.02 | 12.82 | |V |53556.5229 | | 0.60586 |17 | |80002 GSC | NL80_2 +170690 |V0690 Car |094826.8-580105 |DCEP | 11.59 | 12.20 | |V |53025.32 | | 4.15049 |25 | |80326 GSC | NL80_2 +170692 |V0692 Car |094949.4-625609 |SR | 12.2 | 13.3 | |V | | | 190. : | | |80001 GSC | NL80_2 +170693 |V0693 Car |095229.9-752228 |M | 2.48 | 4.25 | |K | | | 539. | |C |80166 2MASS| NL80_2 +170695 |V0695 Car |095452.1-603526 |M | 6.17 | 7.99 | |K | | | 714. | |C |80166 2MASS| NL80_2 +170697 |V0697 Car |100008.5-620519 |M | 8.35 | 10.06 | |K | | | 506. | |C |80166 2MASS| NL80_2 +170698 |V0698 Car |100357.6-600037 |SRB | 11.6 | 12.5 | |V | | | 235. | |C(R) |80001 GSC | NL80_2 +170699 |V0699 Car |100419.6-590400 |M: | 5.55 | 6.53 | |K | | | 531. | |C |80166 2MASS| NL80_2 +170700 |V0700 Car |100657.2-592125 |SR | 8.99 | 9.57 | |J | | | 448. | |C |80166 2MASS| NL80_2 +170701 |V0701 Car *|100913.6-571434 |CEP(B) | 10.7 | 11.5 | |V |52655.94 | | 4.089 | | |80328 GSC | NL80_2 +170702 |V0702 Car |101134.9-575753 |M | 6.63 | 8.38 | |K | | | 585. | | |80166 2MASS| NL80_2 +170704 |V0704 Car |101239.9-601330 |SRA | 11.9 | 14.2 : | |V |54814. | | 422. | |Ce |80001 GSC | NL80_2 +170706 |V0706 Car *|101453.2-590256 |SRA | 12.5 | 14.2 | |V |54893. | | 184. | |M7e |80001 GSC | NL80_2 +170707 |V0707 Car |101527.0-575811 |LB | 7.32 | 9.28 | |J | | | | |C |80166 2MASS| NL80_2 +170708 |V0708 Car |101537.9-593305 |DCEP | 11.9 | 12.5 | |V |52960.04 | | 51.42724 |25 | |80326 GSC | NL80_2 +170709 |V0709 Car |101916.9-571926 |LB | 10.8 | 12.0 | |V | | | | |K |80184 GSC | NL80_2 +170710 |V0710 Car |102144.0-581635 |M | 5.32 | 6.66 | |K | | | 675. | | |80166 2MASS| NL80_2 +170711 |V0711 Car |102349.2-591354 |M | 5.13 | 5.59 | |K | | | 585. : | |C |80166 2MASS| NL80_2 +170712 |V0712 Car *|102358.0-574549 |EB/WR | 10.64 | 11.07 | 11.07 |I |53124.569 | | 3.686 | |WN6ha |80333 2MASS| NL80_2 +170713 |V0713 Car *|102735.9-582327 |EA | 9.45 | 9.64 | 9.62 |V |52703.70 | | 3.12881 |13 |B2V |80011 GSC | NL80_2 +170714 |V0714 Car *|102815.8-574139 |EA | 9.68 | 9.85 | 9.77 |V |51958.636 | | 2.04530 |13 |B2 |80011 GSC | NL80_2 +170715 |V0715 Car |102944.3-622829 |SR | 9.63 | 9.89 | |J | | | 168. | |C |80166 2MASS| NL80_2 +170716 |V0716 Car |103110.7-592818 |M | 10.5 |< 13.8 | |V |54565. | | 408. | | |80001 2MASS| NL80_2 +170717 |V0717 Car *|103209.8-590542 |EB+EB | 10.44 | 10.94 | 10.85 |V |54540.7963 | | 0.9533071 | |F |80138 GSC | NL80_2 +170718 |V0718 Car *|103308.1-713345 |EW+EW | 10.55 | 10.87 | 10.85 |V |53773.7961 | | 0.816190 | | |80138 GSC | NL80_2 +170719 |V0719 Car |103708.9-605934 |SR | 8.64 | 9.30 | |J | | | 495. : | | |80166 2MASS| NL80_2 +170720 |V0720 Car *|104129.9-595658 |ACV: | 9.69 | 9.82 | |V | | | 3.08133 | |B8 |80335 80335| NL80_2 +170721 |V0721 Car |104205.6-593327 |SRB | 8.5 | 9.1 | |V | | | 52.95 | |M4/5III: |80335 80335| NL80_2 +170722 |V0722 Car |104232.1-593530 |BE: | 8.84 | 9.01 | |V | | | | |B2/3II |80335 80335| NL80_2 +170724 |V0724 Car *|104327.4-600555 |BCEP | 8.86 | 9.03 | |V | | | 0.451686 | |B1V |80335 80335| NL80_2 +170725 |V0725 Car *|104330.8-592924 |EA | 9.95 | 10.16 | 10.05 |V |52979.820 | | 9.4109 |03 : |B0V(n) |80335 80335| NL80_2 +170726 |V0726 Car |104333.8-591828 |SRB | 11.6 | 12.4 | |V | | | 57.1 | |M |80335 80335| NL80_2 +170727 |V0727 Car |104410.2-691819 |R | 12.0 |( 0.04 )| |R | | | 0.336784 | |DA+dMe |80337 80337| NL80_2 +170729 |V0729 Car |104440.5-600333 |SR: | 9.35 | 9.85 | |V |54986.6 | | 106. | | |80335 80335| NL80_2 +170730 |V0730 Car |104457.3-595606 |SRC: | 7.7 | 7.9 | |V | | | 99.8 : | |M1Iab+B |80335 80335| NL80_2 +170731 |V0731 Car *|104512.7-594446 |EA | 9.27 | 9.78 : | 9.7 |V |52652.800 | | 2.29995 |12 |OBV+O9.5V |80335 80335| NL80_2 +170732 |V0732 Car |104616.0-582521 |SR | 6.87 | 7.11 | |J | | | 232. : | |C |80166 2MASS| NL80_2 +170733 |V0733 Car *|104638.9-592346 |EA | 10.76 | 11.03 | 10.91 |V |51920.833 | | 2.95697 |09 |B2-3 |80335 80335| NL80_2 +170734 |V0734 Car *|104727.8-593747 |EA | 11.20 | 11.58 | 11.30 |V |52662.788 | | 3.10746 |04 |A |80335 80335| NL80_2 +170735 |V0735 Car |104730.5-591138 |ACV | 10.26 | 10.39 | |V | | | 3.1450 | |B8V |80335 80335| NL80_2 +170736 |V0736 Car *|104738.9-603704 |EA | 7.91 | 8.18 | 8.17 |V |52700.640 | | 17.7997 |04 |B1Vnep |80023 DM | NL80_2 +170737 |V0737 Car |104800.4-594121 |SR | 10.42 | 10.86 | |V | | | 22.25 | |M5-M7 |80335 80335| NL80_2 +170738 |V0738 Car *|104846.5-603540 |EB | 9.08 | 9.17 | 9.14 |V |53015.80 | | 4.778 | |B1IIIn |80015 GSC | NL80_2 +170744 |V0744 Car *|105041.4-591246 |EB | 8.43 | 8.55 | 8.49 |V |51936.715 | | 1.51416 | |B9IV |80015 DM | NL80_2 +170755 |V0755 Car |105255.4-605210 |M | 5.69 | 6.86 | |K | | | 483. | |C |80166 2MASS| NL80_2 +170772 |V0772 Car *|105544.1-684727 |EB | 7.98 | 8.17 | 8.07 |V |51339.87 | | 0.88417 | |A1V |80011 DM | NL80_2 +170777 |V0777 Car |105645.4-600337 |M | 12.5 |< 14.5 | |V |54473. | | 461. | |C |80001 GSC | NL80_2 +170782 |V0782 Car |105747.1-621916 |M | 5.83 | 6.39 | |K | | | 473. | |C |80166 GSC | NL80_2 +170791 |V0791 Car |105905.5-603149 |M | 5.14 | 6.00 | |K | | | 416. | |C |80166 2MASS| NL80_2 +170802 |V0802 Car *|110204.3-620943 |SRD | 8.70 | 8.95 | |V | | | 92. | |F3II |80184 DM | NL80_2 +170829 |V0829 Car *|110949.4-602810 |EA | 9.42 | 9.58 | 9.51 |V |53470.672 | | 0.96280 |15 |B3.5V |80015 DM | NL80_2 +170830 |V0830 Car |111236.4-583838 |BCEP: | 8.32 | 8.36 | |Hp| | | 0.112217 | |B1:Vn |80019 HIP | NL80_2 +170831 |V0831 Car *|111514.5-600953 |EA: | 7.70 | 7.80 | 7.78 |V |51908.74 | | 14.758 | |B1/2II/IIIn |80015 DM | NL80_2 +170832 |V0832 Car |111638.9-655056 |M | 3.73 | 5.30 | |K | | | 623. | |C |80166 2MASS| NL80_2 +170833 |V0833 Car *|111743.0-575930 |ELL: | 9.45 | 9.54 | 9.54 |V |54133.79 | | 1.24357 | |B1.5Vnn |80011 DM | NL80_2 +179007 |eta Car *|104503.5-594104 |SDOR | -0.8 | 7.9 | |V | | | | |pec(e) |07272 08613| +179022 |khi Car *|075646.7-525857 |BCEP | 3.46 |( 0.015 )| |V | | | 0.101 | |B2IV |08395 CoD | +179112 |l Car |094514.8-623028 |DCEP | 3.28 | 4.18 | |V |40736.9 | | 35.53584 |26 |F6Ib-K0Ib |00001 05232| +180001 |R Cas *|235824.9+512320 |M | 4.7 | 13.5 | |V |44463. | | 430.46 |40 |M6e-M10e |00001 00002| +180002 |S Cas |011942.0+723641 |M | 7.9 | 16.1 | |V |43870. | | 612.43 |43 |S3,4e-S5,8e |00001 00002| +180003 |T Cas *|002314.3+554733 |M | 6.9 | 13.0 | |V |44160. | | 444.83 |56 |M6e-M9.0e |00001 00002| +180004 |U Cas *|004621.4+481439 |M | 8.0 | 15.7 | |V |44621. | | 277.19 |44 |S3,5e-S8,6e |00001 00002| +180005 |V Cas |231140.7+594159 |M | 6.9 | 13.4 | |V |44605. | | 228.83 |48 |M5e-M8.5e |00001 00002| +180006 |W Cas *|005453.9+583349 |M | 7.8 | 12.5 | |V |44209. | | 405.57 |46 |C7,1e |00001 00002| +180007 |X Cas *|015638.1+591534 |M | 9.45 | 13.2 | |V |43922. | | 422.84 |55 |C5,4e(N1e) |00001 00002| +180008 |Y Cas *|000321.4+554052 |M | 8.7 | 15.3 | |V |44506. | | 413.48 |43 |M6e-M8.5e |00001 00002| +180009 |Z Cas *|234431.5+563452 |M | 8.5 | 15.4 | |V |42376. | | 495.71 |39 |M7e |00001 00002| +180010 |RR Cas |235549.0+534329 |M | 9.5 | 14.7 | |V |44470. | | 300.07 |48 |M5e |00001 00002| +180011 |RS Cas *|233716.1+622544 |DCEP | 9.53 | 10.36 | |V |42773.487 | | 6.295983 |27 |F7-G1Ib |08632 07920| +180012 |RT Cas |234624.3+542909 |SRA | 11.0 | 14.0 | |p |29549. | | 399.8 | |M7 |00343 00101| +180013 |RU Cas |011141.4+650108 |CST: | 5.50 | 5.60 | |V | | | | |B9IV | 02061| +180014 |RV Cas *|005242.8+472456 |M | 7.3 | 16.1 | |V |44313. | | 331.68 |38 |M4.5e-M9.5e |00001 00002| +180015 |RW Cas *|013714.0+574533 |DCEP | 8.62 | 9.76 | |V |35575.227 | | 14.7949 |37 |F6-G5 |00001 00884| +180016 |RX Cas *|030745.8+673439 |EB/GS | 8.64 | 9.49 |< 9.49 |V |16250.910 | | 32.31211 | |K1III+A5eIII |05031 06225| +180017 |RY Cas *|235207.0+584430 |DCEP | 9.38 | 10.39 | |V |37344.602 | | 12.13726 |41 |F5-G3Ib |03157 00884| +180018 |RZ Cas *|024855.5+693803 |EA/SD | 6.18 | 7.72 | 6.26 |V |43200.3063 | | 1.195247 |17 *|A2.8V |00018 05056| +180019 |SS Cas |000936.5+513401 |M | 8.8 | 13.3 | |V |44208. | | 140.57 |48 |M3e-M8e |00001 00002| +180020 |ST Cas |001732.1+501714 |SR | 11.6 | 12.4 | |p | | | | |C4,4(N3) |00882 00103| +180021 |SU Cas *|025158.8+685319 |DCEPS | 5.70 | 6.18 | |V |38000.598 | | 1.949319 |40 |F5Ib-II-F7Ib-II |00883 05056| +180022 |SV Cas *|233901.4+521545 |SRA | 9.1 | 12.5 | |p |37964. | | 264.5 |42 |M6.5 |00001 BD | +180023 |SW Cas |230710.1+583315 |DCEP | 9.32 | 10.01 | |V |42989.590 | | 5.440950 |31 |F6-G2 |08632 00884| +180024 |SX Cas *|001042.1+545329 |EA/GS | 8.96 | 9.83 | 9.32 |V |39009.525 | | 36.56375 |10 |B7eIII+K3III |05067 00102| +180025 |SY Cas *|001509.8+582527 |DCEP | 9.40 | 10.24 | |V |41682.230 | | 4.071098 |25 |F5-G0 |08300 00887| +180026 |SZ Cas *|022713.8+592738 |DCEPS | 9.60 | 10.02 | |V |39059.47 | | 13.63289 |44 |F6-G4Ib |05074 00884| +180028 |TU Cas *|002619.4+511649 |CEP(B) | 6.88 | 8.18 | |V |41704.839 | | 2.139298 |31 |F3II-F5II |05075 BD | +180029 |TV Cas *|001918.7+590821 |EA/SD | 7.22 | 8.22 | 7.34 |V |44602.4534 | | 1.8125956 |18 |B9V+F7IV |00001 05100| +180030 |TW Cas *|024554.8+654335 |EA | 8.32 | 8.98 | 8.40 |V |42008.3873 | | 1.4283240 |16 |B9V+A0: |08720 00010| +180031 |TX Cas *|025216.2+624658 |EB/DM | 9.16 | 9.8 | 9.6 |V |29677.228 | | 2.926870 | |B0V |00007 BD | +180032 |TY Cas *|003659.5+630802 |M | 11.5 |< 17.5 | |p |43405. | | 645.0 | |M6 |00001 00197| +180033 |TZ Cas |235256.2+610008 |LC | 8.86 | 10.5 | |V | | | | |M2Iab |00104 BD | +180034 |UU Cas *|235039.5+605439 |EB/DM | 10.4 | 10.8 | 10.5 |p |28751.72 | | 8.51929 | |B0.5III |00893 00884| +180035 |UV Cas |230214.7+593637 |RCB | 11.8 | 16.5 | |p | | | | |F0Ib-G5Ib |00098 05155| +180036 |UW Cas |003601.3+575443 |M | 10.7 |< 17.0 | |p |39935. | | 290.48 | |M8 |00001 00969| +180037 |UX Cas |001323.3+632731 |SRB | 12.0 |< 13.8 | |p |27330. | | 360. : | |C6,2(R2) |00001 00894| +180038 |UY Cas |230201.4+573819 |SRA | 9.8 | 12.0 | |V |34035. | | 102.85 |38 |M3e-M4e |01005 00895| +180039 |UZ Cas *|011241.2+611248 |DCEP | 10.93 | 11.73 | |V |36982.266 | | 4.259459 |26 |F6-G2 |00321 00321| +180040 |VV Cas *|015107.0+595318 |DCEP | 10.26 | 11.20 | |V |42836.853 | | 6.207059 |26 |F6-G2Ib |08632 00884| +180041 |VW Cas *|010548.2+614518 |DCEP | 10.36 | 11.07 | |V |42778.693 | | 5.993859 |33 |F6-G2 |08632 00884| +180042 |VX Cas |003130.7+615851 |ISA | 10.5 | 13.3 | |V | | | | |A0ea |05157 00197| +180043 |VY Cas |005126.0+625515 |SRB | 10.5 | 12.0 | |p | | | 100. | |M6-M7 |00898 00884| +180044 |VZ Cas |011628.4+562343 |M | 9.3 | 15.0 | |V |44676. | | 169.24 |46 |M0e-M3e |00001 00899| +180045 |WW Cas |013332.7+574505 |LB | 9.1 | 11.7 | |V | | | | |C5,5(N1) | 00685| +180046 |WX Cas |015403.7+610633 |LC | 9.4 | 11.5 | |V | | | | |M2Iab-Ib |00197 00103| +180047 |WY Cas *|235801.4+562914 |M | 10.0 | 16.9 | |p |44310. | | 476.56 |39 |S6,5pe |00001 07377| +180048 |WZ Cas *|000115.9+602119 |SRB | 9.4 | 11.4 | |p | | | 186. | |C9,2JLi(N1p) |00001 00002| +180049 |XX Cas *|012934.6+605805 |EA/DM | 10.0 | 10.7 | 10.2 |p |36527.619 | | 3.0671773 |20 *|B4Vn+B6Vn |03119 00901| +180050 |XY Cas |004953.3+600739 |DCEP | 9.61 | 10.26 | |V |42006.786 | | 4.501697 |31 |F6Ib-G2Ib |08300 00884| +180051 |XZ Cas |012256.4+611035 |LB | 9.0 | 9.6 | |V | | | | |M0 |00903 BD | +180052 |YY Cas |031018.0+654434 |LB | 11.4 | 11.9 | |p | | | | |M0 |00904 BD | +180053 |YZ Cas *|004539.1+745917 |EA/DM | 5.71 | 6.12 | 5.78 |B |28733.4218 | | 4.467224 |15 |A2V+F2V |00905 BD | +180054 |ZZ Cas *|003330.4+623040 |EB/KE | 10.7 | 11.1 | 10.9 |p |33437.495 | | 1.243527 | |B3 |00001 00522| +180055 |AA Cas |011925.7+561945 |LB | 8.3 | 9.4 | |V | | | | |M6III |00179 04551| +180056 |AB Cas *|023731.5+711816 |EA+DSCT | 10.10 | 11.85 | 10.28 |V |42714.4627 | | 1.3668738 |18 *|A3+KV |00001 00906| +180058 |AD Cas |010433.8+710221 |M | 12.4 |< 17.5 | |p |40500. | | 147.21 | | |00001 07414| +180066 |AM Cas |022623.4+711832 |UGSS | 12.3 | 15.2 | |p | | |( 30. ) | | |05421 05421| +180068 |AO Cas *|001743.1+512559 |ELL/KE | 6.07 | 6.24 | 6.24 |V |32191.189 | | 3.523487 | |O9III+O9III |03323 BD | +180069 |AP Cas |003316.2+625426 |DCEP | 11.25 | 11.87 | |V |37244.281 | | 6.8470 |35 |F6Ib-F7.5Ib |00908 00908| +180070 |AQ Cas *|011910.4+622348 |EA/D | 10.06 | 11.0 | 10.4 |V |26282.50 | | 11.72115 |18 |B3+B9: |00001 00192| +180071 |AR Cas *|233001.9+583256 |EA/DM | 4.82 | 4.96 | 4.86 |V |35792.8948 | | 6.0663309 |06 *|B3IV-V |06470 BD | +180072 |AS Cas *|002537.8+641348 |CEP(B) | 11.81 | 12.55 | |V |43809.75 | | 3.02125 |30 | |08637 08637| +180078 |AY Cas |013900.0+645921 |DCEP | 11.23 | 11.95 | |V |36999.797 | | 2.871294 |35 |F4 |00001 00912| +180079 |AZ Cas *|014216.5+612516 |EA/GS | 9.22 | 9.52 | |V |42689. | | 3402. |03 |F8-M0eIb+B0-B1V |08827 08826| +180080 |BB Cas |235059.5+620843 |M | 12.1 | 16.6 | |p |35350. | | 340.0 |35 |M8 |00913 00913| +180082 |BD Cas *|000951.4+613051 |CWB | 10.84 | 11.21 | |V |41932.032 | | 3.650900 |47 | |08300 00915| +180083 |BE Cas *|001008.2+591259 |INSB | 12.5 | 13.7 | |p | | | | |F2 |00453 GSC | +180086 |BH Cas |002121.4+590905 |EW: | 12.3 | 12.7 | |p | | | 0.5 : | | |00916 GSC | +180087 |BI Cas |004331.3+623956 |EB/GS | 12.10 | 12.84 | |V |33218.38 | | 21.533306 | | |09148 00917| +180089 |BL Cas |005426.2+633321 |SR | 11.7 | 12.4 | |V | | | 84. : | |M6ea |00918 00918| +180090 |BM Cas *|005446.0+640505 |EB/GS | 8.78 | 9.31 | 8.98 |V |25772.9 | | 197.28 | |A5Ia-F0eIab |03257 08828| +180093 |BP Cas |011501.1+653558 |DCEP | 10.55 | 11.33 | |V |36991.353 | | 6.272724 |28 |F6-G1 |05693 00920| +180096 |BS Cas *|012138.6+591027 |EW/KW | 12.2 | 12.6 | 12.6 |p |27984.489 | | 0.4404832 | |A-F |00911 GSC | +180097 |BT Cas |012502.2+610441 |M | 11.9 |< 17.0 | |p |38656. | | 399. | |M8 |00001 06286| +180098 |BU Cas *|012841.0+610755 |EA/DM | 11.6 | 12.1 | |p |28423.570 | | 2.2551986 |10 |A |05733 05733| +180100 |BW Cas |013929.0+632610 |EA: | 12.4 | 13.1 | |p |25999.26 | | 1.895 | | |00909 GSC | +180101 |BX Cas |014711.9+623406 |SR | 11.4 | 12.3 | |p |28765. | | | |M5 |00144 BD | +180102 |BY Cas *|014711.9+612521 |DCEPS | 10.06 | 10.58 | |V |41774.191 | | 3.223316 |50 |F5-F7 |08300 00921| +180103 |BZ Cas *|015342.5+625735 |EA/SD | 11.4 | 12.4 | 11.5 |V |29497.316 | | 2.1264317 |16 *|A0 |02263 00922| +180104 |CC Cas *|031405.3+593349 |EB/DM | 7.06 | 7.30 | 7.26 |V |43818.166 | | 3.368753 | |O9IV+O9IV |00001 BD | +180105 |CD Cas |234502.6+630014 |DCEP | 10.37 | 11.15 | |V |37023.312 | | 7.80089 |34 |F6-G5 |03157 00924| +180106A|CE CasA*|235809.5+611249 |DCEP | 10.63 | 11.15 | |V |37745.602 | | 5.1410583 |30 |F9Ib |05296 00925| +180106B|CE CasB*|235809.2+611249 |DCEP | 10.62 | 11.30 | |V |37742.754 | | 4.4793014 |30 |F8Ib-G0Ib |05296 00925| +180107 |CF Cas *|235818.0+611316 |DCEP | 10.80 | 11.47 | |V |37022.191 | | 4.87522 |29 |F8Ib-G0Ib |05295 00137| +180108 |CG Cas *|000059.3+605732 |DCEP | 10.89 | 11.73 | |V |36885.566 | | 4.36554 |26 |F5-F8 |02551 00137| +180109 |CH Cas *|232228.4+624526 |DCEP | 10.37 | 11.45 | |V |36912.426 | | 15.08619 |40 |F3pIb-F6 |03330 00137| +180115 |CO Cas |022222.8+683048 |L | 12.5 | 15. | |p | | | | | |00907 02320| +180117 |CQ Cas *|024640.0+630020 |SRB | 10.0 | 11.5 | |V | | | 2300. | |M6.5 |00104 00541| +180118 |CR Cas *|230452.0+593357 |EB/SD | 12.1 | 13.9 | 13.3 |B |40526.26 | | 2.840183 | |G5-K8: |07920 00927| +180119 |CS Cas *|235014.2+512359 |CWA | 11.46 | 12.88 | |V |37948.934 | | 14.73602 |37 |F8 |00001 00098| +180121 |CU Cas |002014.0+620736 |SRB | 12.0 | 13.1 | |p | | | 85. | |M6 |00144 06286| +180123 |CW Cas *|004552.7+630508 |EW/KW | 11.02 | 11.62 | 11.47 |V |41649.40322 | | 0.3188449 | |G8p |08829 00832| +180125 |CY Cas *|232912.8+632228 |DCEP | 11.07 | 12.21 | |V |40119.466 | | 14.37686 |34 |G0Ib-G2Ib |07920 00137| +180126 |CZ Cas |233927.4+622220 |DCEP | 11.30 | 12.11 | |V |36905.242 | | 5.66438 |30 |F6 |08831 00137| +180127 |DD Cas *|235735.0+624306 |DCEP | 9.56 | 10.18 | |V |42780.493 | | 9.812027 |50 |F7-G1 |08632 03203| +180129 |DF Cas *|024443.3+612753 |DCEP | 10.53 | 11.13 | |V |41719.622 | | 3.832472 |30 |F6-G4: |08300 00930| +180132 |DI Cas *|000440.7+553214 |M | 11.6 |< 17.0 | |p |37170. | | 363.9 | |M5 |00001 02336| +180134 |DL Cas *|002958.6+601243 |DCEP | 8.63 | 9.26 | |V |42780.334 | | 8.000669 |33 |F5Ib-G2Ib |08632 00932| +180136 |DN Cas *|022311.5+604950 |EA/DM | 9.81 | 10.24 | 10.13 |V |41388.571 | | 2.310955 |15 *|O8V+O8V |07295 02281| +180137 |DO Cas *|024124.2+603312 |EB/KE | 8.39 | 9.01 | 8.61 |V |33926.4573 | | 0.6846661 | |A4V |05895 BD | +180140 |DR Cas |233053.4+620723 |LB | 12.4 | 12.7 | |B | | | | |M2:S: |00453 02287| +180145 |DW Cas |233848.4+592331 |DCEP | 10.81 | 11.41 | |V |36980.605 | | 4.99776 |28 |F7 |03157 00098| +180148 |DZ Cas *|233950.0+555256 |EB/KE | 11.6 | 12.3 | 12.0 |p |28434.556 | | 0.7848916 | |A9 |00453 02287| +180152 |EH Cas |234537.0+622056 |LB | 11.6 | 12.80 | |B | | | | |M3 |00453 02287| +180154 |EK Cas *|234707.1+553237 |EA/DM | 11.9 | 12.5 |( 0.05 )|V |38388.25 | | 8.678018 |14 *| |03257 02287| +180157 |EN Cas *|235022.6+561718 |EA | 12.2 | 13.2 | 12.4 |p |28728.48 | | 4.437737 |20 *| |03115 00098| +180158 |EO Cas |235127.3+625147 |M | 12.5 |< 17.1 | |p |29908. | | 455. | |Se |00001 02336| +180159 |EP Cas *|235258.9+572651 |EB/SD | 11.2 | 12.3 | 11.4 |p |28179.182 | | 0.8134394 | | |02263 02287| +180160 |EQ Cas *|235253.3+550049 |RVA | 9.3 | 13.4 | 12.7 |V |35155.11 | | 58.34 | |Fp(R) |08079 00098| +180172 |FH Cas |000552.6+550202 |SRA | 12.5 | 13.7 | |p |28658. | | 210. | |M6 |00453 02377| +180176 |FM Cas |001428.2+561511 |DCEP | 8.82 | 9.47 | |V |42817.713 | | 5.809284 |30 |F7-G0I |08632 02288| +180183 |FT Cas |002500.3+593124 |M | 12.5 |< 17.7 | |p |35127. | | 369. | | |02430 02336| +180189 |FZ Cas |003904.8+594041 |LB | 12.2 | 14.2 | |B | | | | |M5-M8 |00453 02336| +180190 |GG Cas *|011612.9+561943 |EA/DM | 9.94 | 10.29 | 9.99 |V |41054.9335 | | 3.758719 |13 |B5-B8V+F8-G0III |00001 03339| +180191 |GH Cas |014903.4+561627 |EA/SD | 12.3 | 15.8 | |p |28635.377 | | 3.35867 |12 *| |00911 02347| +180198 |GP Cas |023950.4+593551 |LC | 11.5 | 12.7 | |p | | | | |M2.0Iab |00911 02282| +180202 |GT Cas *|001330.1+581701 |EA/SD | 11.9 | 12.8 | |p |27341.425 | | 2.989804 |14 |A0 |02263 00941| +180203 |GU Cas *|001625.0+562047 |EA | 11.1 | 12.0 | 11.3 |p |41181.458 | | 3.093391 |10 |OB |06100 00941| +180208 |GZ Cas *|005143.3+555923 |SR | 12.0 | 13.0 | |p |35040. | | 168. | |M |00001 00942| +180210 |HI Cas |005529.8+535221 |M | 11.5 | 16.7 | |p |31005. | | 296.4 |50 | |00911 00942| +180219 |HS Cas *|010819.9+633512 |LC | 10.9 | 12.33 | |B | | | | |M4Ia |00498 BD | +180221 |HU Cas *|011103.6+572046 |RRAB | 12.0 | 13.5 | |p |31435.049 | | 0.41159560 |20 |A2 |00874 00558| +180229 |IL Cas *|013046.8+600602 |EA/SD | 10.6 | 11.5 |( 0.05 )|p |28008.215 | | 3.4517461 |11 *|B5 |05733 05733| +180230 |IM Cas |013200.3+621945 |SRB | 10.2 | 11.0 | |p |27990. | | 323. | |M2 |00911 02340| +180233 |IP Cas |014855.9+544329 |LB | 12.5 | 13.4 | |p | | | | |M |00911 02340| +180234 |IQ Cas |014941.7+594310 |EA | 12.2 | 13.4 | |p |28308.42 | | 3.54175 |14 *| |00911 02340| +180235 |IR Cas *|230652.4+540452 |EB | 10.8 | 12.3 | 11.5 |p |42364.054 | | 0.6806854 | |F4: |06180 06202| +180236 |IS Cas *|232828.6+603356 |EA/SD: | 12.1 | 13.1 | 12.2 |B |28776.263 | | 1.8415124 |14 *|A2 |00001 00098| +180237 |IT Cas *|234201.4+514437 |EA/DM | 11.1 | 11.9 | 11.8 |p |28762.434 | | 3.896638 |05 *|F6 |02263 00098| +180238 |IU Cas |234439.2+522042 |RRAB | 12.1 | 13.0 | |p |28748.274 | | 0.649384 |15 | |00098 00098| +180239 |IV Cas *|234931.5+530805 |EA/SD | 11.2 | 12.4 | 11.3 |p |40854.597 | | 0.9985245 |20 *|A2 |00001 00098| +180240 |IW Cas *|000244.2+484251 |M | 11.4 |< 14.7 | |p |37855. | | 396.38 | |S4.5,9e |00001 00098| +180241 |IX Cas *|000450.8+501406 |CWA | 11.19 | 11.77 | |V |42779.743 | | 9.153375 |49 |F7 |08632 00098| +180242 |IY Cas |005153.0+571233 |SR | 11.8 | 14.2 | |p |35059. | | 86.00 |53 | |00001 00945| +180243 |IZ Cas |005240.2+472816 |LB | 11.5 | 13.1 | |p | | | | |K8 |00156 00156| +180245 |KL Cas *|005141.5+585152 |EB/SD | 11.8 | 13.5 | 12.3 |p |31056.004 | | 2.447426 | |OB |00942 00945| +180246 |KM Cas |022930.5+612944 |SDOR: | 12.2 | 13.1 | |p | | | | |B1eaI-II | 00945| +180247 |KN Cas |000936.4+624004 |LC | 10.5 | 11.2 | |p | | | | |M1epIb+B2.6V |00812 BD | +180248 |KO Cas *|002150.8+482543 |M | 12.1 |< 14.0 | |p |35834. | | 300.4 | | |00001 00534| +180251 |KR Cas *|005402.1+543101 |EA/SD | 9.8 | 11.0 | 9.9 |p |15038.229 | | 4.904278 |15 *|A0 |00821 00942| +180252 |KS Cas |005704.1+484211 |SRA | 11.0 | 12.5 | |p |28412. | | 454. | |M5 |00680 02377| +180253 |KT Cas |010450.2+540620 |EA/SD | 12.4 | 14.7 | |p |34330.21 | | 2.769682 |12 | |02403 00930| +180266 |LR Cas *|013249.9+630103 |EB/DM | 10.7 | 11.4 | 10.9 |p |41959.276 | | 4.4557746 | |B5 |00001 00946| +180274 |LZ Cas |003723.2+464607 |SR | 11.0 | 13.0 | |p |25566. | | 111.3 | |M |00821 00821| +180275 |MM Cas *|005435.0+542636 |EA/SD | 12.0 | 13.1 | 12.4 |p |35401.483 | | 1.15847 |18 |F |02645 02355| +180276 |MN Cas *|014203.0+545736 |EA/DM | 10.10 | 10.58 | 10.57 |V |42326.4699 | | 1.91692705 |17 *|A0V+A0V |06380 02356| +180279 |MQ Cas |000937.6+581311 |IA | 11.7 | 13.6 | |p | | | | |ea |00176 02376| +180283 |MU Cas *|001551.6+602554 |EB/DM | 10.6 | 10.9 | 10.8 |p |27962.509 | | 3.861145 | |B8 |00176 02376| +180288 |MZ Cas |002124.3+595711 |LC | 10.6 | 11.8 | |p | | | | |M2Iab |00176 BD | +180290 |NO Cas |002404.7+612030 |RRAB | 12.0 | 12.8 | |p |38353.480 | | 0.719472 |35 |A |06404 02376| +180292 |NQ Cas |002434.9+541738 |LB | 10.6 | 11.52 | |B | | | | |C4,5J(R5) |00176 02376| +180302 |OO Cas |004400.9+585606 |LB | 11.7 | 12.7 | |p | | | | |M6.5 |00164 02355| +180305 |OR Cas *|004801.3+605142 |EA/SD | 11.4 | 12.4 | 11.8 |p |44210.389 | | 1.2457116 |10 *|F3 |00001 02377| +180311 |OX Cas *|010900.1+612815 |EA/DM | 9.90 | 10.35 | 10.30 |V |41269.6355 | | 2.4893427 |15 |B1V |07383 04190| +180314 |PP Cas |012001.5+573129 |LB | 11.0 | 12.0 | |p | | | | |M5 |00164 02355| +180319 |PU Cas |014128.1+591314 |LB | 12.0 | 13.5 | |p | | | | |M6 |00164 02356| +180320 |PV Cas *|231002.6+591206 |EA/DM | 9.71 | 10.36 | 10.36 |V |40227.4044 | | 1.75046986 |12 *|B8V+B8V |07041 02636| +180323 |PY Cas *|234343.5+610553 |SR | 11.3 | 14.46 | |B |34080. | | 111. | |M5III |00176 02376| +180324 |PZ Cas *|234403.3+614722 |SRC | 11.16 | 12.9 | |B |34150. | | 925. | |M2-4Ia |06803 02225| +180325 |QQ Cas *|234536.8+595422 |EB/DM | 10.3 | 10.9 | 10.8 |p |42009.407 | | 2.142043 | |B2 |00001 02409| +180332 |QX Cas *|235843.1+610940 |EA/DM | 10.19 | 10.70 | 10.50 |V |35755.000 | | 6.00471 |09 *|B1V+B1V |02470 02445| +180338 |V0338 Cas |001306.8+490622 |LB: | 11.2 | 12.5 | |p | | | | |M2 |00721 00812| +180342 |V0342 Cas |230121.2+575202 |DCEP | 12.4 | 13.5 | |p |27955.71 | | 3.91989 |20 |F6-G0 |03350 02375| +180349 |V0349 Cas |231131.1+560130 |SR | 12.5 | 14.2 | |p |28377. | | 70.79 |49 | |02267 02345| +180356 |V0356 Cas |232913.2+563933 |LB | 11.8 | 13.1 | |p | | | | |M6.5 |02267 02345| +180358 |V0358 Cas |233027.4+575834 |LC | 11.5 | 13.8 | |p | | | | |M3Ia-Iab |02267 02376| +180359 |V0359 Cas *|233427.1+561918 |EB | 11.8 | 12.6 | 12.0 |p |29079.480 | | 1.303879 | |A0 |02267 02376| +180360 |V0360 Cas *|233447.6+555417 |EA/SD | 12.1 | 13.4 | 12.3 |p |31346.424 | | 1.500590 |12 |A |02267 02376| +180361 |V0361 Cas *|234144.3+560953 |EA/KE: | 12.3 | 12.8 | |p |30319.344 | | 1.228985 |07 : |A |02267 02376| +180362 |V0362 Cas |000221.5+632807 |ISA | 12.0 | 13.6 | |p | | | | |B |00176 00558| +180363 |V0363 Cas *|001514.3+602026 |RRAB | 10.29 | 10.73 | |V |36142.592 | | 0.5465353 |40 |F3-F7 |03633 02551| +180364 |V0364 Cas *|005243.0+502810 |EA | 11.2 | 11.9 | 11.9 |p |34333.298 | | 1.543068 |15 |A2 |00001 02636| +180365 |V0365 Cas *|010053.1+563645 |SRB | 10.2 | 12.0 | |p | | | 136. | |M5S(S7,2) |04015 02638| +180366 |V0366 Cas *|010825.6+584418 |EW/DW | 12.0 | 12.7 | 12.7 |p |35075.461 | | 0.72927425 | |G1: |06922 02355| +180368 |V0368 Cas |031235.5+595511 |EA | 8.45 | 9.2 | |B |25554.320 | | 4.451642 |12 |B3III |02594 BD | +180373 |V0373 Cas *|235533.8+572444 |E:/GS | 5.9 | 6.3 | |V |36491.237 | | 13.4192 | |B0.5II+B0.5II |02646 BD | +180374 |V0374 Cas *|235633.5+560745 |EA/SD | 11.8 | 12.7 | 12.1 |p |29490.269 | | 1.0448096 |17 |A |02670 02551| +180375 |V0375 Cas *|235709.4+630022 |EB/KE | 10.1 | 10.9 | 10.6 |p |34642.255 | | 1.47338431 | |B3 |02679 02679| +180377 |V0377 Cas *|001914.3+594218 |DSCT: | 7.78 | 7.83 | |V | | | 0.03 | |F0 |04005 BD | +180379 |V0379 Cas |002636.0+604754 |DCEPS | 8.88 | 9.23 | |V |44883.47 | | 4.30575 |45 |F6-G0 |08860 06228| +180380 |V0380 Cas *|003056.0+734006 |EA/SD | 10.4 | 11.2 | |p |25645.505 | | 1.357273 |20 |A0 |05304 04014| +180381 |V0381 Cas *|003251.6+491939 |EA/DM | 10.2 | 10.8 | 10.8 |p |44546.297 | | 1.7459455 |13 *|B3 |00001 BD | +180382 |V0382 Cas |003537.5+580025 |SRA | 10.7 | 11.5 | |R |37494. | | 139. |50 |C |04342 04342| +180384 |V0384 Cas |004528.2+473501 |EA/KE | 11.8 | 12.3 | |p |36073.516 | | 1.108273 |20 *|A0 |06952 04015| +180385 |V0385 Cas |004917.9+503903 |EA/D | 11.6 | 12.2 | |p |26626.373 | | 2.830424 |12 *| |04024 04015| +180387 |V0387 Cas |010031.8+584146 |EA/DM | 12.5 | 13.0 | |p |28523.713 | | 1.608208 | | |05235 04341| +180388 |V0388 Cas *|010319.8+622156 |UV | 12.5 | 13.66 | |V | | | | |M3Vpe-M7Ve |02901 00664| +180389 |V0389 Cas |011417.3+485926 |EA | 10.8 | 12.2 | |p |35662.479 | | 2.494757 |09 *| |00001 04016| +180391 |V0391 Cas |015631.7+701214 |LB | 9.2 | 10.0 | |p | | | | |M4 |04024 BD | +180393 |V0393 Cas |020239.6+711752 |SRA | 7.0 | 8.0 | |V |43210. | | 393. | |M0 |00001 BD | +180395 |V0395 Cas |021029.2+631751 |DCEP | 10.39 | 10.95 | |V |41949.427 | | 4.037728 |26 |G3 |08300 00174| +180396 |V0396 Cas *|231336.0+564417 |EA/DM | 9.9 | 10.4 | 10.2 |p |25883.850 | | 11.12576 |08 *|B9 |04009 BD | +180398 |V0398 Cas |232230.8+591826 |LB | 11.2 | 12.2 | |B | | | | |M2 |04396 04396| +180403 |V0403 Cas |233738.0+545050 |I | 10.5 | 11.0 | |p | | | | |G5 |04109 BD | +180416 |V0416 Cas |010159.1+571519 |LB | 12.2 | 13.2 | |p | | | | | |06953 03905| +180436 |V0436 Cas |233247.6+575420 |ACV | 7.39 | 7.84 | |V |38666. | | 159.0 | |A0p(Sr-Cr-Eu) |07219 BD | +180445 |V0445 Cas *|003139.6+531300 |EB | 10.89 | 11.32 | 11.08 |V |41921.3782 | | 0.67352 | | |06954 05525| +180446 |V0446 Cas |003612.5+624111 |LB | 9.9 | 10.5 | |p | | | | |M0-M4III |05394 05394| +180447 |V0447 Cas |004343.8+595013 |LB: | 12.5 | 14.0 | |p | | | | | |05526 05526| +180451 |V0451 Cas |005220.1+594332 |LB | 9.3 | 10.0 | |p | | | | |M5 |05525 05525| +180459 |V0459 Cas *|011129.9+610848 |EA/DM | 10.9 | 11.6 | 11.6 |p |25321.600 | | 8.458294 |04 *|B9 |05395 05395| +180465 |V0465 Cas |011813.9+574811 |SRB | 7.7 | 8.9 | |p | | | 60. | |M5 |07112 03980| +180466 |V0466 Cas *|011953.6+581831 |LC | 9.8 | 10.74 | |B | | | | |M1.5Ib |05394 05397| +180482 |V0482 Cas *|024044.9+611656 |BCEP | 8.27 | 8.31 | |B | | | 0.37822 : | |O9.5I-II |05522 BD | +180486 |V0486 Cas |004238.0+522014 |E: | 6.91 |( 0.04 )| |V |39012.27 | | 5.551 | |B1III |05847 BD | +180487 |V0487 Cas |010659.7+634623 |SRD | 7.44 | 7.74 | |V | | | 134. | |G0-G4Ia |05848 BD | +180488 |V0488 Cas |023801.3+630145 |M | 11.2 |< 17.0 | |R |44489. | | 282.36 | | |04276 05849| +180509 |V0509 Cas *|230005.1+565643 |SRD | 4.75 | 5.5 | |V | | | | |F8e-KIa-0+B1V |08863 BD | +180518 |V0518 Cas *|021726.2+594312 |E/DM | 10.82 | 11.1 | |V | | | 3. | |B3 |06320 06320| +180520 |V0520 Cas *|234207.4+555438 |EW/KW | 12.5 | 13.1 | 13.1 |B |41186.369 | | 0.48959 | | |07651 07651| +180523 |V0523 Cas *|004006.3+501416 |EW/KW | 10.62 | 11.45 | 11.34 |V |41220.3036 | | 0.23369068 | | |08866 07049| +180526 |V0526 Cas *|005057.4+513029 |DSCTC | 6.34 | 6.37 | |V | | | | |F5III |07695 BD | +180528 |V0528 Cas |022937.7+603926 |BCEP: | 8.69 | 8.86 | |B | | | | |B5V |06844 BD | +180529 |V0529 Cas |022943.5+604039 |GCAS | 8.44 | 8.86 | |V | | | | |B5Vea |06844 BD | +180532 |V0532 Cas *|235905.6+565816 |SRA | 9.9 | 11.1 | |V |41238. | | 450. |50 |C6,3e(Ne) |08868 08868| +180533 |V0533 Cas *|235954.3+565847 |SRA | 12.1 | 14.3 | |V |41250. | | 305. |50 |C(N) |08868 08868| +180534 |V0534 Cas |001317.9+555912 |SRB | 12.0 | 13.0 | |p | | | | | |07974 07974| +180535 |V0535 Cas |001939.8+522156 |LB | 10.5 | 11.4 | |p | | | | |MA |08069 08069| +180537 |V0537 Cas |010330.6+532641 |ISA: | 11.4 | 13.1 | |p | | | | | |08869 04016| +180538 |V0538 Cas |011807.2+614304 |ISB | 9.4 | 10.6 | |p | | | | |K5III |08870 05394| +180539 |V0539 Cas |013752.4+624749 |LB: | 8.36 | 8.72 | |V | | | | |M2 |07315 BD | +180540 |V0540 Cas *|020330.5+693456 |ACV | 7.73 | 7.75 | |V |40854.7 | | 34.9 | |A0p(Cr) |06992 BD | +180541 |V0541 Cas *|023429.2+632028 |EW | 10.4 | 11.1 | 11.0 |p |39026.542 | | 0.909026 | | |08871 04321| +180545 |V0545 Cas |002016.0+592314 |ISA: | 11.4 | 12.6 | |p | | | | | |07914 02786| +180547 |V0547 Cas *|003229.4+671408 |UV | 11.5 | 12.01 | |B | | | | |M2.5Ve |07835 08874| +180551 |V0551 Cas *|010033.4+602641 |ACV | 8.43 | 8.77 | |V |41206. | | 69.0 | |A0p(Sr-Cr) |07893 BD | +180554 |V0554 Cas *|011020.1+623040 |EA: | 11.2 | 11.8 | |p |39089. :| | | |M2I+Be |08818 BD | +180555 |V0555 Cas |011608.2+553010 |LB | 11.0 | 11.7 | |p | | | | |M1 |02579 02355| +180556 |V0556 Cas |012351.8+623120 |RR: | 11.6 | 13.1 | |p | | | | | |00164 02355| +180557 |V0557 Cas |014220.5+680235 |ACV | 5.55 | 5.64 | |V |40974.88 | | 3.1848 |50 |B9p(Si-Sr-Cr) |08819 BD | +180558 |V0558 Cas |020731.8+652856 |E | 9.0 | 9.6 | |B | | | | |A-F |03835 07846| +180559 |V0559 Cas *|022540.1+613259 |EA | 7.01 | 7.23 | 7.21 |V |41357.560 | | 1.58064 |12 |B9V |07295 BD | +180563 |V0563 Cas |231655.3+602601 |M | 11.2 | 15.4 | |V |41175. | | 543. |50 |M5.5e-M8.7e |07920 07920| +180566 |V0566 Cas *|234850.2+621252 |ACYG | 5.34 | 5.45 | |V | | | | |A3eqIa-0 |07850 BD | +180567 |V0567 Cas |000506.2+611850 |ACV | 5.71 | 5.81 | |V |40482.444 | | 6.4322 |50 |B9p(Hg-Mn) |07955 BD | +180572 |V0572 Cas |231957.1+622748 |M | 10.6 | 14.4 | |I |41000. | | 775. | |M8-M10 |07920 07920| +180573 |V0573 Cas |232114.6+590853 |M | 10.0 | 13.6 | |I |41775. | | 356.5 |40 |M7 |07920 07920| +180576 |V0576 Cas |232311.7+614439 |LB | 12.0 | 14. | |I | | | | |M6 |07920 07920| +180581 |V0581 Cas |232958.0+602812 |M | 12.0 | 16.0 | |I |40975. | | 435. |50 |M8 |07920 07920| +180585 |V0585 Cas |233359.0+610410 |LB | 12.2 | 12.7 | |I | | | | |M5 |07920 07920| +180587 |V0587 Cas |233745.5+605939 |SRB | 12.3 | 13.0 | |I | | | 145. : | |M6 |07920 07920| +180588 |V0588 Cas |012238.1+542308 |DCEP: | 12.2 | 13.6 | |p | | | | | |00164 02355| +180589 |V0589 Cas *|014605.5+605937 |LC | 8.75 | 9.22 | |V | | | | |M3Iab-Ib |07315 BD | +180594 |V0594 Cas |004318.3+615440 |INA | 10.9 | 12.00 | |B | | | | |O9.5e |08328 BD | +180595 |V0595 Cas |014302.7+563046 |LC | 8.75 | 9.05 | |V | | | | |M2Ib |02556 BD | +180597 |V0597 Cas |015953.7+601258 |UV | 10.1 | 13.2 | |B | | | | |M |08332 08332| +180598 |V0598 Cas *|020159.1+615418 |LB | 7.38 | 7.54 | |V | | | | |M3-4III |08875 BD | +180599 |V0599 Cas |020235. +602814:|UV | 11.9 | 14.1 | |B | | | | |M2 |08332 08332| +180600 |V0600 Cas |020302.1+611537 |UV | 12.0 | 14.9 | |B | | | | |M2-M3 |08332 08332| +180601 |V0601 Cas |021331.6+602603 |UV | 11.3 | 13.9 | |B | | | | |M1 |08332 08332| +180603 |V0603 Cas |021444.4+594757 |UV | 11.1 | 13.2 | |B | | | | |M0-M1 |08339 08339| +180605 |V0605 Cas |022022.5+594017 |LC | 8.22 | 8.48 | |V | | | | |M2Iab |02556 BD | +180606 |V0606 Cas |022214.2+593653 |UV | 12.2 | 14.5 | |B | | | | | |08339 08339| +180607 |V0607 Cas |022226.3+613535 |UV | 12.1 | 14.1 | |B | | | | |M: |08339 08339| +180608 |V0608 Cas |022426.1+712307 |E: | 12.3 : | 13.3 : | |p | | | 0.47 : | | |08340 08340| +180609 |V0609 Cas |022452.9+615346 |UV | 12.3 | 14.7 | |B | | | | |M3 |08339 08339| +180612 |V0612 Cas |023039.6+610025 |UV | 12.5 | 14.2 | |B | | | | |M2 |08339 08339| +180614 |V0614 Cas |023853.4+622718 |UV | 12.2 | 13.3 | |B | | | | |M |08342 08342| +180615 |V0615 Cas *|024031.7+611346 |* | 11.2 | 11.9 | |B | | | | |B1eIb: |08346 03544| +180619 |V0619 Cas |031056. +624250:|UV | 12.1 | 14.3 | |B | | | | | |08348 08348| +180621 |V0621 Cas |031113.6+610814 |UV | 10.8 | 13.4 | |B | | | | |M2 |08348 08348| +180623 |V0623 Cas |031125.3+575411 |LB: | 9.0 | 9.8 | |p | | | | |C4,5J(R5) |02576 BD | +180624 |V0624 Cas |031129.6+603536 |UV | 12.3 | 13.9 | |B | | | | |M2 |08348 08348| +180626 |V0626 Cas |031218.8+610306 |UV | 11.9 | 14.6 | |B | | | | |M1 |08348 08348| +180627 |V0627 Cas *|225741.0+584913 |SR: | 12.4 | 13.24 | |V | | | | |M2eII-III |08433 08893| +180628 |V0628 Cas |231725.6+605043 |INA | 10.88 | 11.84 | |V | | | | |Beq |06415 04002| +180629 |V0629 Cas |233601.0+523757 |ACV | 9.0 |( 0.074 )| |V | | | 0.63195 | |A0p(Si) |07955 BD | +180630 |V0630 Cas |234852.0+512739 |UG: | 12.3 | 17.1 | |p | | | | | |08355 08355| +180634 |V0634 Cas |004933.6+644700 |LC | 10.67 | 11.00 | |V | | | | |M1.9Iab |02556 GSC | +180636 |V0636 Cas |013243.2+633538 |DCEPS | 7.09 | 7.26 | |V |44001.355 | | 8.377 |50 |G0Ib |08745 BD | +180637 |V0637 Cas |025653.2+573325 |LC | 9.84 | 10.08 | |V | | | | |M2.2Iab |02556 GSC | +180638 |V0638 Cas *|230243.9+551411 |ACV | 5.7 |( 0.10 )| |U |44115.24 | | 5.36 | |B9IIIp(He weak) |08747 BD | +180639 |V0639 Cas |000325.7+633826 |ACYG | 6.19 | 6.28 | |V | | | | | |67108 BD | +180640 |V0640 Cas |000615.8+582612 |E: | 5.96 |( 0.066 )| |V | | | | | |67109 BD | +180641 |V0641 Cas |000926.3+635714 |SRB: | 10.1 | 11.1 | |p | | | | | |67110 BD | +180642 |V0642 Cas |001504.7+635038 |ISB | 10.3 | 11.3 | |p | | | | | |67112 67111| +180643 |V0643 Cas |002857.7+602138 |DCEP | 11.7 | 12.1 | |p | | | | | |67110 GSC | +180644 |V0644 Cas |010116.6+601418 |DCEP | 11.3 | 11.9 | |p | | | | | |67020 GSC | +180646 |V0646 Cas |013035.1+624331 |EA/KE: | 10.21 | 10.5 | |B | | | | | |67124 67124| +180648 |V0648 Cas |025104.0+575120 |LC | 11.8 | 12.6 | |p | | | | | |67118 BD | +180649 |V0649 Cas |231627.1+615747 |EA/DM | 6.53 |( 0.10 )| |V | | | | | |67128 BD | +180650 |V0650 Cas |234839.0+645235 |ACV | 6.41 |( 0.02 )| |V | | | | | |67134 BD | +180651 |V0651 Cas |234833.5+574457 |EW/KW | 10.5 | 11.0 | |p | | | | | |67020 67137| +180652 |V0652 Cas |235218.8+580536 |LB | 11.7 | 12.1 | |V | | | | | |67140 67139| +180654 |V0654 Cas |000020.6+605943 |EA/D | 11.1 |( 0.5 : )| |p | | | | | |67156 67157| +180656 |V0656 Cas |023544.7+650859 |M | 8.2 | 10.8 : | |I | | | | | |68015 68282| +180657 |V0657 Cas |235204.9+614812 |M | 4.3 | 6.2 | |1.| | | | | |68015 2MASS| +180658 |V0658 Cas |000705.6+614855 |M | 11.5 | 14.0 | |V | | | | | |69065 69065| +180661 |V0661 Cas |004654.5+635606 |SRB: | 12.3 | 14.2 | |V | | | | | |69010 GSC | +180662 |V0662 Cas |011802.7+651730 |XP: | 11.06 |( 0.10 : )| |V | | | | | |69066 69067| +180663 |V0663 Cas |024232.5+713440 |DSCTC | 8.8 |( 0.04 v )| |V | | | | | |69068 BD | +180666 |V0666 Cas |020128.1+581814 |M | 10.0 | 13.8 | |V | | | | | |70001 70026| +180667 |V0667 Cas |032056.1+704639 |M | 8.8 |< 14.5 | |p | | | | | |70028 70027| +180668 |V0668 Cas |002741.2+693852 |M | 1.0 | 2.8 | |L | | | | | |71002 USNO | +180669 |V0669 Cas |013351.2+622653 |M: | 1.57 | 3.02 | |L | | | | | |71006 | +180675 |V0675 Cas |022909. +603022:|M | 11.4 | 14.5 | |I | | | | | |71015 | +180676 |V0676 Cas |023103. +624517:|M | 7.4 | 10.4 | |I | | | | | |71015 | +180683 |V0683 Cas |023903. +594355:|I | 11.7 | 12.9 | |I | | | | | |71015 | +180685 |V0685 Cas |024032. +632652:|LB | 12.1 | 12.9 | |I | | | | | |71015 | +180690 |V0690 Cas |024551. +630537:|M | 12.3 | 15.4 | |I | | | | | |71015 | +180692 |V0692 Cas |024725. +580832:|M | 12.3 | 15.9 | |I | | | | | |71015 | +180696 |V0696 Cas |025146.5+592737 |M | 12.2 | 15.5 | |I | | | | | |71015 USNO | +180699 |V0699 Cas |030041. +613652:|E: | 12.2 | 13.2 | |I | | | | | |71015 | +180700 |V0700 Cas |030045.1+594306 |LB | 10.8 | 11.8 | |I | | | | | |71015 USNO | +180701 |V0701 Cas |032337. +702710:|M | 1.3 | 3.6 | |L | | | | | |71002 | +180704 |V0704 Cas |030740.5+602922 |SR | 11.4 | 12.1 | |p | | | | | |72022 BD | +180705 |V0705 Cas |234147.2+573101 |NA | 5.8 |< 16. | |V | | | | | |72039 72039| +180706 |V0706 Cas |000734.6+644314 |M: | 12.0 | 16.0 | |V | | | | | |73072 73072| +180707 |V0707 Cas |000817.8+524557 |M: | 11.6 | 16.8 | |V | | | | | |73072 73072| +180708 |V0708 Cas |001113.7+641932 |M: | 11.5 | 16.5 | |V | | | | | |73072 73072| +180720 |V0720 Cas |004507.1+532648 |SR | 9.6 | 12.5 | |p | | | | | |73076 73077| +180721 |V0721 Cas |005633.1+593944 |M: | 12.2 |< 15.0 | |V | | | | | |73072 73072| +180722 |V0722 Cas |005924.1+604421 |M: | 11.9 | 14.7 | |V | | | | | |73072 73072| +180723 |V0723 Cas |010505.3+540040 |NB | 7.08 |< 18. | |V | | | | | |73078 73079| +180724 |V0724 Cas |011453.6+633644 |M: | 10.8 | 16.2 | |V | | | | | |73072 73072| +180726 |V0726 Cas |023730. +620100:|L | 11.1 | 12.1 | |I | | | | | |73080 | +180727 |V0727 Cas |030337.8+700802 |M | 10.0 | 15.8 | |p | | | | | |73081 73081| +180728 |V0728 Cas |231529.2+615157 |RS: | 8.1 |( 0.06 )| |V | | | | | |73082 BD | +180739 |V0739 Cas |000416.0+650911 |LB | 7.62 | 7.70 | |Hp| | | | | |HIP HIP | +180740 |V0740 Cas |000857.2+662724 |SRD: | 8.69 | 8.74 | |Hp| | | | | |HIP HIP | +180741 |V0741 Cas |001010.5+643848 |EB | 8.26 | 8.51 | |Hp| | | | | |HIP HIP | +180742 |V0742 Cas *|001137.1+581243 |BE | 7.11 | 7.17 | |Hp| | | | | |HIP HIP | +180743 |V0743 Cas |002043.6+615247 |SRB | 6.81 | 6.91 | |Hp| | | | | |HIP HIP | +180744 |V0744 Cas |002156.7+532851 |EA | 8.44 | 8.70 | |Hp| | | | | |HIP HIP | +180745 |V0745 Cas *|002253.3+621429 |EB | 8.06 | 8.16 | |Hp| | | | | |HIP HIP | +180746 |V0746 Cas *|002415.7+520112 |LPB | 5.54 | 5.56 | |Hp| | | | | |HIP HIP | +180747 |V0747 Cas *|002857.0+482449 |LB: | 6.89 | 7.16 | |Hp| | | | | |HIP HIP | +180748 |V0748 Cas |003258.9+483930 |SRB | 10.01 | 10.40 | |Hp| | | | | |HIP HIP | +180749 |V0749 Cas |003348.9+581255 |LB: | 8.62 | 8.74 | |Hp| | | | | |HIP HIP | +180750 |V0750 Cas |003544.2+494411 |LB: | 8.89 | 9.02 | |Hp| | | | | |HIP HIP | +180751 |V0751 Cas |003547.7+554226 |LPB | 7.88 | 7.91 | |Hp| | | | | |HIP HIP | +180752 |V0752 Cas |003645.4+485708 |LB | 7.75 | 8.54 | |Hp| | | | | |HIP HIP | +180753 |V0753 Cas |004024.8+593050 |LB | 7.16 | 7.26 | |Hp| | | | | |HIP HIP | +180754 |V0754 Cas |004201.9+535733 |SRD | 8.76 | 9.07 | |Hp| | | | | |HIP HIP | +180755 |V0755 Cas |004250.1+641729 |EA/GS: | 7.14 | 7.30 | |V | | | | | |HIP HIP | +180756 |V0756 Cas |004450.4+601833 |DSCTC: | 8.75 | 8.83 | |Hp| | | | | |HIP HIP | +180757 |V0757 Cas |004916.1+682802 |LPB | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +180758 |V0758 Cas |005658.1+561424 |LB: | 8.57 | 8.69 | |Hp| | | | | |HIP HIP | +180759 |V0759 Cas |010309.9+530826 |LB: | 7.43 | 7.61 | |Hp| | | | | |HIP HIP | +180760 |V0760 Cas |010604.0+574523 |LPB | 7.12 | 7.17 | |Hp| | | | | |HIP HIP | +180761 |V0761 Cas |011309.8+614222 |ACV: | 6.38 | 6.41 | |Hp| | | | | |HIP HIP | +180762 |V0762 Cas |011611.9+714438 |BY: | 5.92 | 6.02 | |Hp| | | | | |HIP HIP | +180763 |V0763 Cas |011647.9+751202 |SRB | 8.27 | 8.43 | |Hp| | | | | |HIP HIP | +180764 |V0764 Cas |011726.3+573756 |BE | 6.85 | 6.93 | |Hp| | | | | |HIP HIP | +180765 |V0765 Cas |011909.1+581726 |EB | 10.72 | 11.11 | |Hp| | | | | |HIP HIP | +180766 |V0766 Cas |012040.6+513541 |EA | 7.10 | 7.51 | |Hp| | | | | |HIP HIP | +180767 |V0767 Cas |012920.6+614542 |SRB | 8.87 | 9.04 | |Hp| | | | | |HIP HIP | +180768 |V0768 Cas |013131.6+594608 |LPB: | 10.09 | 10.18 | |Hp| | | | | |HIP HIP | +180769 |V0769 Cas |013647.0+632452 |LPB: | 7.59 | 7.65 | |Hp| | | | | |HIP HIP | +180770 |V0770 Cas |013951.7+605408 |LB | 7.45 | 8.13 | |Hp| | | | | |HIP HIP | +180771 |V0771 Cas |014200.9+614744 |BE: | 9.31 | 9.48 | |Hp| | | | | |HIP HIP | +180772 |V0772 Cas |014202.9+610218 |ACV: | 6.67 | 6.72 | |Hp| | | | | |HIP HIP | +180773 |V0773 Cas |014418.0+573212 |EA | 6.21 | 6.30 | |Hp| | | | | |HIP HIP | +180774 |V0774 Cas |014700.0+602220 |SRB | 8.35 | 8.67 | |Hp| | | | | |HIP HIP | +180775 |V0775 Cas |015150.5+632715 |EA: | 9.73 | 9.93 | |Hp| | | | | |HIP HIP | +180776 |V0776 Cas |015323.4+700233 |EW: | 8.94 | 9.09 | |Hp| | | | | |HIP HIP | +180777 |V0777 Cas |015542.9+591624 |BE | 6.95 | 7.12 | |Hp| | | | | |HIP HIP | +180778 |V0778 Cas |015828.9+591609 |SRC | 8.19 | 8.36 | |Hp| | | | | |HIP HIP | +180779 |V0779 Cas |020209.3+753008 |EA: | 6.59 | 6.65 | |Hp| | | | | |HIP HIP | +180780 |V0780 Cas |020236.4+594117 |BE | 8.08 | 8.24 | |Hp| | | | | |HIP HIP | +180781 |V0781 Cas |020349.1+641415 |SRD | 7.58 | 7.68 | |Hp| | | | | |HIP HIP | +180782 |V0782 Cas |020845.4+650215 |BE | 7.66 | 7.74 | |Hp| | | | | |HIP HIP | +180783 |V0783 Cas |021030.9+640531 |BE | 9.81 | 10.00 | |Hp| | | | | |HIP HIP | +180784 |V0784 Cas |021025.5+595847 |DSCTC | 6.70 | 6.76 | |Hp| | | | | |HIP HIP | +180785 |V0785 Cas |021049.9+644945 |EA | 9.33 | 9.64 | |Hp| | | | | |HIP HIP | +180786 |V0786 Cas |021143.9+604245 |ACYG: | 8.67 | 8.78 | |Hp| | | | | |HIP HIP | +180787 |V0787 Cas |021513.0+640128 |BE | 8.00 | 8.24 | |Hp| | | | | |HIP HIP | +180788 |V0788 Cas |023326.6+705723 |LPB | 7.88 | 7.92 | |Hp| | | | | |HIP HIP | +180789 |V0789 Cas |023430.7+764305 |SRB | 6.70 | 6.84 | |Hp| | | | | |HIP HIP | +180790 |V0790 Cas |023448.1+603308 |ACYG: | 8.42 | 8.54 | |Hp| | | | | |HIP HIP | +180791 |V0791 Cas |023655.3+595301 |EB | 7.78 | 7.94 | |Hp| | | | | |HIP HIP | +180792 |V0792 Cas |024722.3+591711 |BCEP | 9.26 | 9.45 | |Hp| | | | | |HIP HIP | +180793 |V0793 Cas |025012.0+725452 |EB | 7.93 | 8.22 | |Hp| | | | | |HIP HIP | +180794 |V0794 Cas |025053.5+622204 |EA | 7.88 | 8.10 | |Hp| | | | | |HIP HIP | +180795 |V0795 Cas |025334.7+734616 |E | 8.97 | 9.19 | |Hp| | | | | |HIP HIP | +180796 |V0796 Cas |025309.8+584556 |LPB | 8.062 | 8.112 | |Hp| | | | | |HIP HIP | +180797 |V0797 Cas |025737.8+610744 |LPB: | 7.71 | 7.74 | |Hp| | | | | |HIP HIP | +180798 |V0798 Cas |030053.8+593958 |ACV | 7.33 | 7.37 | |Hp| | | | | |HIP HIP | +180799 |V0799 Cas |030527.5+613918 |EA | 8.80 | 9.15 | |Hp| | | | | |HIP HIP | +180800 |V0800 Cas |030735.0+754813 |LB | 7.05 | 7.22 | |Hp| | | | | |HIP HIP | +180801 |V0801 Cas |030854.2+622305 |BE | 6.48 | 6.57 | |Hp| | | | | |HIP HIP | +180802 |V0802 Cas |031233.6+691414 |I: | 10.60 | 10.90 | |Hp| | | | | |HIP HIP | +180803 |V0803 Cas |031510.9+595443 |BE: | 9.12 | 9.28 | |Hp| | | | | |HIP HIP | +180804 |V0804 Cas |031839.7+771924 |LB: | 8.28 | 8.38 | |Hp| | | | | |HIP HIP | +180805 |V0805 Cas |033019.4+715150 |SRB | 6.30 | 6.51 | |Hp| | | | | |HIP HIP | +180806 |V0806 Cas |230357.6+541154 |E: | 9.00 | 9.20 | |Hp| | | | | |HIP HIP | +180807 |V0807 Cas |231213.0+593559 |ELL: | 10.89 | 11.02 | |Hp| | | | | |HIP HIP | +180808 |V0808 Cas |231527.9+620445 |BE: | 9.76 | 9.93 | |Hp| | | | | |HIP HIP | +180809 |V0809 Cas |231923.8+624423 |LC | 6.58 | 6.71 | |Hp| | | | | |HIP HIP | +180810 |V0810 Cas |232019.0+554828 |BE | 8.56 | 8.69 | |Hp| | | | | |HIP HIP | +180811 |V0811 Cas |232034.3+581639 |BE | 8.62 | 8.79 | |Hp| | | | | |HIP HIP | +180812 |V0812 Cas |232048.9+622445 |ACV | 8.12 | 8.18 | |Hp| | | | | |HIP HIP | +180813 |V0813 Cas |232210.5+562054 |BE | 7.90 | 8.02 | |Hp| | | | | |HIP HIP | +180814 |V0814 Cas |232931.3+514107 |LB | 7.55 | 7.80 | |Hp| | | | | |HIP HIP | +180815 |V0815 Cas |233631.4+510737 |LB: | 8.77 | 8.88 | |Hp| | | | | |HIP HIP | +180816 |V0816 Cas |234220.9+643055 |LB | 6.50 | 6.63 | |Hp| | | | | |HIP HIP | +180817 |V0817 Cas |234555.1+544408 |BE | 8.26 | 8.61 | |Hp| | | | | |HIP HIP | +180818 |V0818 Cas |234953.1+621251 |BE | 7.67 | 7.81 | |Hp| | | | | |HIP HIP | +180819 |V0819 Cas |235350.0+605112 |ACYG: | 7.01 | 7.09 | |Hp| | | | | |HIP HIP | +180820 |V0820 Cas |235747.7+594312 |BE | 8.19 | 8.27 | |Hp| | | | | |HIP HIP | +180821 |V0821 Cas |235849.2+534020 |EA | 8.27 | 8.62 | |Hp| | | | | |HIP HIP | +180822 |V0822 Cas |000217.7+604211 |SRB | 6.75 | 6.84 | |Hp| | | | | |HIP HIP | +180823 |V0823 Cas |000542.4+632414 |* | 11.4 | 12.2 | |B | | | | | |75068 GSC | +180824 |V0824 Cas |002231.3+630159 |DCEP | 11.03 | 11.36 | |V | | | | | |75069 75069| +180826 |V0826 Cas |003502.8+611902 |LB: | 10.5 | 14.6 | |V | | | | | |75071 75071| +180827 |V0827 Cas |003718.8+631257 |DCEPS | 12.3 | 12.7 | |B | | | | | |75069 75069| +180829 |V0829 Cas |011751.6+671352 |M | 10.00 |( 2.4 )| |K | | | | | |75074 | +180831 |V0831 Cas |014700.2+612124 |XP | 11.49 |( 0.19 )| |V | | | | | |75077 GSC | +180832 |V0832 Cas |014738.5+604157 |ZAND: | 7.3 | 7.8 | |K | | | | | |75078 GSC | +180835 |V0835 Cas |030715.1+652805 |SR: | 11.9 | 14.4 | |p | | | | | |75002 GSC | +180837 |V0837 Cas |231526.1+572705 |LB | 12.5 |< 16.2 | |V | | | | | |75079 75079| +180844 |V0844 Cas |232531.3+552207 |M | 12.5 |< 15.0 | |V | | | | | |75079 75079| +180853 |V0853 Cas |234913.4+545404 |M | 12.5 | 15.5 | |V | | | | | |75079 75079| +180854 |V0854 Cas |235209.2+663450 |M | 11.3 | 14.3 | |V | | | | | |75079 75079| +180856 |V0856 Cas |000642.7+522733 |SR | 12.5 | 14.8 | |V | | | | | |76002 76002| +180857 |V0857 Cas |000939.8+531011 |M | 12.5 |< 15.2 | |V | | | | | |76002 76002| +180859 |V0859 Cas |002120.7+512139 |M | 10.5 | 15.5 | |V | | | | | |76002 76002| +180860 |V0860 Cas |002649.0+494036 |EA | 12.4 | 13.8 | |V | | | | | |76002 76002| +180861 |V0861 Cas |003636.7+680120 |M | 7.5 | 10.8 | |I | | | | | |76006 76006| +180862 |V0862 Cas |003840.2+531611 |M | 11.0 |< 16.0 | |V | | | | | |76002 76002| +180863 |V0863 Cas |004328.4+644535 |WR | 10.54 |( 0.09 )| |V | | | | | |76007 76008| +180864 |V0864 Cas |004501.1+484104 |SRA | 10.7 | 13.1 | |V | | | | | |76002 76002| +180865 |V0865 Cas |004906.9+680548 |M | 9.7 | 11.6 | |I | | | | | |76006 76011| +180866 |V0866 Cas |004937.9+505642 |SR: | 11.7 | 12.9 | |V | | | | | |76012 GSC | +180867 |V0867 Cas |005628.4+604710 |M | 8.8 | 11.8 | |I | | | | | |76006 76011| +180871 |V0871 Cas |233417.3+555358 |DSCT | 12.5 |( 0.18 )| |V | | | | | |76250 GSC | +180880 |V0880 Cas |005533.9+682855 |SR: | 11.6 | 12.2 | |V | | | | | |77004 GSC | +180883 |V0883 Cas |005742.7+640835 |SR: | 12.4 | 13.4 | |V | | | | | |77004 GSC | +180884 |V0884 Cas |005909.2+634850 |SR: | 10.5 | 12.4 | |V | | | | | |77004 77010| +180885 |V0885 Cas |010055.8+672042 |SR: | 12.4 | 13.5 | |V | | | | | |77004 GSC | +180887 |V0887 Cas |010158.4+575949 |SR | 8.1 | 8.8 | |I | | | | | |77012 77013| +180888 |V0888 Cas |010527.4+655900 |SR: | 9.3 | 11.5 | |* | | | | | |77004 USNO | +180889 |V0889 Cas |010625.0+654802 |SR: | 11.8 | 12.6 | |V | | | | | |77004 GSC | +180890 |V0890 Cas |010744.6+590302 |M | 11.5 |< 14.0 | |* | | | | | |77004 GSC22| +180891 |V0891 Cas |011022.3+660713 |SR: | 11.8 | 12.7 | |V | | | | | |77004 GSC | +180893 |V0893 Cas |011413.9+655137 |SR: | 11.5 | 12.6 | |V | | | | | |77004 GSC | +180894 |V0894 Cas |011511.8+663954 |SR: | 11.6 | 12.6 | |V | | | | | |77004 GSC | +180895 |V0895 Cas |011618.3+674523 |SR: | 10.8 | 11.6 | |V | | | | | |77004 GSC | +180897 |V0897 Cas |012013.7+653127 |M | 11.0 |< 13.6 | |* | | | | | |77004 USNO | +180899 |V0899 Cas |012204.1+665012 |SR: | 11.5 | 12.2 | |V | | | | | |77004 GSC | +180900 |V0900 Cas |012300.7+643924 |SR: | 11.1 | 12.3 | |V | | | | | |77004 GSC | +180901 |V0901 Cas |012435.5+654101 |SR: | 11.1 | 12.1 | |V | | | | | |77004 GSC | +180902 |V0902 Cas |012558.4+632932 |SR: | 10.9 | 11.8 | |V | | | | | |77004 GSC22| +180905 |V0905 Cas |012935.1+650205 |SR: | 11.3 | 12.5 | |V | | | | | |77004 GSC | +180908 |V0908 Cas |013620.4+583142 |SR: | 12.0 | 13.2 | |V | | | | | |77004 GSC | +180909 |V0909 Cas |013638.5+612554 |BCEP | 10.7 |( 0.19 )| |R | | | | | |77016 77016| +180910 |V0910 Cas |013701.3+611558 |SR: | 12.5 | 13.7 | |V | | | | | |77004 GSC | +180911 |V0911 Cas |013946.8+594230 |SR: | 12.1 | 13.0 | |V | | | | | |77004 GSC | +180913 |V0913 Cas |014022.4+624022 |SR: | 12.5 | 13.5 | |V | | | | | |77004 GSC | +180914 |V0914 Cas |014118.9+633644 |SR: | 11.4 | 12.1 | |V | | | | | |77004 GSC | +180915 |V0915 Cas |014238.3+633632 |SR: | 11.5 | 12.4 | |V | | | | | |77004 GSC | +180917 |V0917 Cas |014336.4+584808 |SR: | 10.5 | 11.2 | |V | | | | | |77004 GSC | +180918 |V0918 Cas |014358.3+584105 |SR: | 12.1 | 13.3 | |V | | | | | |77004 GSC | +180920 |V0920 Cas |014816.3+630707 |SR: | 10.4 | 11.2 | |V | | | | | |77004 GSC | +180921 |V0921 Cas |014919.8+561222 |SR: | 11.7 | 13.4 | |V | | | | | |77004 GSC | +180922 |V0922 Cas |015010.6+661339 |SR: | 10.8 | 11.6 | |V | | | | | |77004 GSC | +180923 |V0923 Cas |015615.9+600104 |SR: | 12.4 | 13.8 | |V | | | | | |77004 GSC22| +180924 |V0924 Cas |020057.1+583658 |SR: | 11.3 | 13.5 | |V | | | | | |77004 77010| +180925 |V0925 Cas |020300.5+583613 |SR: | 11.8 | 12.5 | |V | | | | | |77004 GSC | +180927 |V0927 Cas |020815.8+591556 |SR: | 10.9 | 11.8 | |V | | | | | |77004 GSC | +180928 |V0928 Cas |021140.6+611426 |M: | 12.1 |< 14.1 | |* | | | | | |77004 GSC22| +180929 |V0929 Cas |021515.3+654220 |SR: | 12.2 | 13.3 | |V | | | | | |77004 GSC | +180933 |V0933 Cas |022032.8+623202 |SR: | 11.7 | 13.8 | |V | | | | | |77004 GSC | +180934 |V0934 Cas |022114.9+664217 |SR: | 11.8 | 12.5 | |V | | | | | |77004 GSC | +180941 |V0941 Cas |023404.7+605915 |SR: | 12.5 | 13.3 | |V | | | | | |77004 GSC | +180947 |V0947 Cas |024726.8+635823 |M | 9.0 | 12.1 | |I | | | | | |77012 77013| +180949 |V0949 Cas |024930.0+614237 |M: | 11.4 | 13.8 | |* | | | | | |77004 GSC | +180952 |V0952 Cas |030220.7+710940 |EA | 11.7 | 12.9 | |P | | | | | |77026 77027| +180953 |V0953 Cas |031224.1+600221 |M: | 12.1 |< 13.9 | |* | | | | | |77004 GSC22| +180957 |V0957 Cas |000945.7+503039 |SR: | 11.6 | 12.8 | |* | | | | | |78006 USNO | +180958 |V0958 Cas |001048.5+572927 |SR: | 8.8 | 9.8 | |* | | | | | |78006 GSC | +180959 |V0959 Cas |001202.7+550519 |EW | 12.0 | 12.6 | |* |51335.8533 | | 1.0652 | | |78006 GSC | +180960 |V0960 Cas |001950.4+474238 |SR | 11.5 | 12.3 | |* | | | 130. : | | |78006 USNO | +180961 |V0961 Cas *|002649.3+552724 |EB | 12.0 |( 0.40 )|( 0.22 )|V |52668.3556 | | 0.75986 | | |78010 GSC | +180963 |V0963 Cas |004422.5+572627 |SR: | 12.3 | 13.8 | |* | | | | | |78006 USNO | +180964 |V0964 Cas |004959.3+525635 |SR: | 12.3 | 13.1 | |* | | | 110. : | | |78006 USNO | +180966 |V0966 Cas |010257.2+691337 |BY | 7.67 |( 0.02 )| |V | | | 12.165 | |G5V |78018 DM | +180967 |V0967 Cas |011100.0+670955 |SRA | 12.3 | 14.3 | |* |51475 | | 256. : | | |78006 USNO | +180972 |V0972 Cas |014518.0+610657 |BE | 9.90 |( 0.39 Ic)| |Rc| | | | | |78026 DM | +180974 |V0974 Cas |014539.6+611259 |BE | 12.09 |( 0.10 Ic)| |Rc| | | | | |78026 GSC | +180975 |V0975 Cas |014546.4+610921 |BE | 11.77 |( 0.10 Ic)| |Rc| | | | | |78026 GSC | +180976 |V0976 Cas |014556.1+611246 |BE | 11.58 |( 0.20 Ic)| |Rc| | | | | |78026 GSC | +180977 |V0977 Cas |014559.3+611246 |BE | 10.23 |( 0.20 Ic)| |Rc| | | | | |78026 DM | +180978 |V0978 Cas |014606.1+611339 |BE | 11.11 |( 0.25 Ic)| |Rc| | | | | |78026 DM | +180980 |V0980 Cas |014620.2+611422 |BE | 11.44 |( 0.15 Ic)| |Rc| | | | | |78026 GSC | +180981 |V0981 Cas |014626.8+610742 |BE | 10.20 |( 0.15 Ic)| |Rc| | | | | |78026 DM | +180982 |V0982 Cas |014626.9+611412 |BE | 11.90 |( 0.12 Ic)| |Rc| | | 0.67298 | | |78026 GSC | +180983 |V0983 Cas |014627.7+611226 |BE | 10.34 |( 0.35 Ic)| |Rc| | | | | |78026 GSC | +180984 |V0984 Cas |014630.6+611429 |BE | 11.66 |( 0.42 Ic)| |Rc| | | | | |78026 GSC | +180985 |V0985 Cas |014635.5+611548 |BE | 9.85 |( 0.36 Ic)| |Rc| | | | | |78026 DM | +180986 |V0986 Cas |014703.7+611732 |BE | 12.07 |( 0.05 Ic)| |Rc| | | | | |78026 GSC | +180987 |V0987 Cas |014744.8+635109 |BY | 5.63 |( 0.05 )| |V | | | 21.7 | |K0V |78005 DM | +180988 |V0988 Cas |020040.2+583137 |ACVO | 8.54 |( 0.02 )| |B | | | 0.00528 | |F0 |78032 DM | +180989 |V0989 Cas |021542.5+674020 |BY | 7.13 |( 0.03 )| |V | | | 6.79 | |K2V |78018 DM | +180990 |V0990 Cas *|021641.8+671702 |* | 7.03 |( 0.02 )| |V | | | 7.48 : | |K4II |78018 DM | +180991 |V0991 Cas |031658.1+670245 |M | 12.2 | 15.0 | |* |52215 :| | 430. : | | |78006 2MASS| +180993 |V0993 Cas |230149.8+591902 |SR: | 11.3 | 12.2 | |* |51500 | | | | |78006 2MASS| +180996 |V0996 Cas |234134.0+593528 |SR | 11.8 | 13.3 | |* |51384 | | 260. : | | |78006 2MASS| +181000 |V1000 Cas |234943.8+571312 |M | 12.5 | 15.2 | |* |51450 | | | | |78006 2MASS| +181006 |V1006 Cas *|000737.5+533136 |GDOR | 8.37 |( 0.13 )| |V | | | 0.9004 | |F2V |79111 DM | +181007 |V1007 Cas |000803.3+510803 |EW | 12.00 | 12.44 | 12.41 |* |51324.849 | | 0.332004 | | |79004 79005| +181008 |V1008 Cas |002116.2+481106 |LB | 9.5 | 9.8 | |* | | | | | |79100 GSC | +181009 |V1009 Cas |005109.9+560459 |EB | 12.30 | 12.65 | 12.50 |* |51486.57 | | 0.7845 | | |79025 79008| +181010 |V1010 Cas |005757.0+600615 |EA | 9.51 | 9.92 | 9.90 : |* |51482.637 | | 2.398 |09 |A2V |79009 DM | +181012 |V1012 Cas *|011253.9+513609 |GDOR | 7.68 |( 0.06 )| |B | | | 0.5486 | |F1V |79219 DM | +181015 |V1015 Cas |014206.4+704340 |EA | 11.80 | 12.55 : | 11.9 |* |51343.082 | | 4.922 |08 | |79004 79016| +181016 |V1016 Cas |014316.8+595951 |DCEP | 12.27 | 12.70 | |* |51495.29 | | 3.845 |25 | |79025 79144| +181017 |V1017 Cas |021424.8+653558 |DCEP | 11.8 | 12.4 | |* |51522.7 | | 5.03 |20 | |79012 79185| +181018 |V1018 Cas *|030119.4+603420 |EA | 10.26 | 10.56 | 10.52 |* |51601.625 | | 4.1278 |10 |O7V |79004 GSC | +181019 |V1019 Cas |231751.6+620805 |DCEPS | 10.9 | 11.1 | |* |51573.0 | | 3.62 |50 |F6: |79012 79142| +181020 |V1020 Cas |233239.0+630409 |DCEP | 12.13 | 12.65 | |* |51551.2 | | 4.74 |28 | |79012 79089| +181022 |V1022 Cas *|235708.5+554221 |EA | 5.56 | 5.68 | 5.59 : |Hp|49040.829 | | 12.1564 |04 : |F1/6V+F3V |79213 DM | +181026 |V1026 Cas *|000701.9+644405 |DSCTC | 8.73 |( 0.06 )| |V | | | 0.160018 | |A5 |80014 DM | NL80_1 +181028 |V1028 Cas |001201.9+603751 |LB | 12.5 | 13.5 | |* | | | | |M6.5 |80018 80018| NL80_1 +181032 |V1032 Cas *|002217.2+464937 |EA | 12.3 | 12.7 | 12.5 |* |51498.130 | | 3.3579 |11 | |80024 80024| NL80_1 +181035 |V1035 Cas |002759.0+490945 |RRC | 12.22 | 12.62 | |* |51541.62 | | 0.39202 | | |80026 GSC | NL80_1 +181036 |V1036 Cas *|002817.1+634406 |INT: | 9.40 |( 0.10 )| |V | | | | |G0 |80039 HIP | NL80_1 +181038 |V1038 Cas *|002953.0+475034 |EB | 9.89 | 10.10 | 10.05 |* |51542.625 | | 20.30 | | |80042 DM | NL80_1 +181039 |V1039 Cas |003026.4+684259 |SRB | 10.0 | 10.3 | |* | | | 43. | | |80001 80044| NL80_1 +181042 |V1042 Cas |003432.3+512900 |SRA: | 11.0 | 11.7 | |* |51575. | | 180. : | | |80001 GSC | NL80_1 +181044 |V1044 Cas *|003956.3+674255 |EA: | 9.50 | 9.83 | 9.63 |* |51425.74 | | 3.5791 |30 : |B5 |80011 DM | NL80_1 +181046 |V1046 Cas *|004044.2+585054 |EA | 11.6 | 12.8 | 11.7 : |B |44377.35 | | 0.9805 |13 | |80053 80053| NL80_1 +181047 |V1047 Cas |004201.5+541505 |RRC | 11.14 | 11.47 | |* |51413.66 | | 0.33440 | | |80026 GSC | NL80_1 +181048 |V1048 Cas |004430.6+564551 |SR | 9.81 | 10.00 | |V | | | 57.61 | | |80057 DM | NL80_1 +181049 |V1049 Cas |004525.0+580552 |EA | 11.0 | 11.43 | |* |51483.697 | | 2.98128 |20 | |80013 GSC | NL80_1 +181050 |V1050 Cas |004534.3+561627 |LB | 11.29 | 11.85 | |V | | | | | |80057 GSC | NL80_1 +181051 |V1051 Cas |004611.8+571306 |LB | 10.81 | 11.13 | |V | | | | | |80057 GSC | NL80_1 +181052 |V1052 Cas |004623.6+631937 |DSCTC | 11.31 | 11.35 | |V | | | 0.127 | | |80059 80059| NL80_1 +181054 |V1054 Cas *|004820.8+591647 |LB | 11.1 | 11.5 | |* | | | | |M5 |80062 GSC | NL80_1 +181055 |V1055 Cas |004821.0+711611 |BY | 11.30 |( 0.08 )| |V | | | 9.517 | |G |80039 GSC | NL80_1 +181057 |V1057 Cas |005153.0+651050 |RRC: | 10.28 | 10.52 | |* |51459.61 | | 0.42333 | |F4II |80026 GSC | NL80_1 +181059 |V1059 Cas |005436.0+743141 |RRAB: | 10.52 | 10.73 | |* |51401.76 | | 0.64968 |32 | |80026 GSC | NL80_1 +181060 |V1060 Cas *|005514.3+612349 |EA | 10.02 | 10.45 | 10.42 |* |51339.87 | | 1.81603 |13 |A2 |80011 DM | NL80_1 +181061 |V1061 Cas *|005613.7+650716 |EA | 10.21 | 10.59 | 10.50 |* |51390.705 | | 3.6493 |15 | |80011 DM | NL80_1 +181062 |V1062 Cas *|010209.2+595543 |EB | 10.55 | 10.87 | 10.8 |* |51554.484 | | 1.1644 | |F0V |80024 80024| NL80_1 +181063 |V1063 Cas *|010447.3+760614 |EW | 11.6 | 12.3 | 12.3 |* |51578.7522 | | 0.6200 | | |80016 80016| NL80_1 +181064 |V1064 Cas *|010759.9+633743 |EW | 11.30 | 11.80 | 11.73 |* |51349.919 | | 0.457606 | |B2 |80042 GSC | NL80_1 +181065 |V1065 Cas *|010928.9+683915 |EA/RS | 9.92 | 10.15 | 10.14 |* |51608.823 | | 13.651 |09 | |80042 DM | NL80_1 +181066 |V1066 Cas *|011055.2+580556 |EA | 10.81 | 11.06 | 11.06 |* |51548.650 | | 8.4650 |06 : | |80023 DM | NL80_1 +181067 |V1067 Cas *|011301.2+744354 |EB | 12.2 | 13.15 | 12.9 |* |51608.517 | | 0.41324 | | |80032 80032| NL80_1 +181070 |V1070 Cas *|011559.0+524640 |EA | 10.44 | 10.80 | 10.47 |* |51460.635 | | 4.4745 |05 | |80013 DM | NL80_1 +181071 |V1071 Cas |011616.4+741341 |RV: | 11.6 | 11.85 | |* |51463. | | 96.7 | | |80028 80028| NL80_1 +181072 |V1072 Cas |011616.6+633153 |BE | 11.7 | 11.9 | |* | | | | |Be |80077 80077| NL80_1 +181085 |V1085 Cas *|011902.0+581010 |LB | 12.45 | 12.80 | |V | | | | | |80078 GSC | NL80_1 +181086 |V1086 Cas |011902.4+581920 |LPB: | 11.75 | 11.95 | |V | | | | |B5 |80078 GSC | NL80_1 +181089 |V1089 Cas |011922.8+710255 |LB | 12.4 | 13.3 | |* | | | | | |80062 GSC | NL80_1 +181094 |V1094 Cas *|012023.1+591716 |EW | 12.1 | 12.4 | 12.35 : |* |54389.5032 | | 0.514270 | | |80080 GSC | NL80_1 +181100 |V1100 Cas |012121.1+640603 |DCEP | 11.5 | 12.0 | |* |51447.3 | | 4.71 |22 | |80081 GSC | NL80_1 +181103 |V1103 Cas *|012159.2+583314 |EA | 11.38 | 11.95 : | 11.95 : |* |51556.605 | | 6.1772 |09 |B0 |80023 GSC | NL80_1 +181108 |V1108 Cas |012346.4+584054 |SRB | 12.05 | 12.7 | |* | | | 58. | | |80001 GSC | NL80_1 +181110 |V1110 Cas *|013005.4+734532 |EA | 10.55 | 10.91 | 10.7 : |* |51478.660 | | 24.850 |02 : | |80023 DM | NL80_1 +181112 |V1112 Cas *|013210.7+663459 |EA | 11.48 | 11.85 : | |* |51378.632 | | 2.12893 |10 | |80013 GSC | NL80_1 +181116 |V1116 Cas |013237.0+615812 |BCEP | 9.35 | 9.45 | |V | | | 0.67410 |30 |B0.5III |80057 DM | NL80_1 +181122 |V1122 Cas *|013315.2+604100 |BE | 9.63 |( 0.44 )| |I | | | | |B5V |80088 80088| NL80_1 +181123 |V1123 Cas *|013316.3+603802 |EA | 10.91 |( 0.20 )|( 0.11 )|I |51427.8223 | | 4.5020 : |08 |B2V |80088 80088| NL80_1 +181128 |V1128 Cas |013333.2+613330 |SRC | 8.51 | 8.74 | |V | | | 92.6 | |M1.5Ib |80057 DM | NL80_1 +181129 |V1129 Cas |013335.6+604039 |SRS | 10.41 |( 0.08 )| |I | | | 1.1494 | | |80088 80088| NL80_1 +181131 |V1131 Cas *|013341.5+744545 |EA | 12.25 | 12.60 | 12.54 |* |51532.61 | | 9.7814 |05 | |80013 GSC | NL80_1 +181132 |V1132 Cas |013345.5+603723 |GDOR | 8.24 | 8.30 | |I | | | 0.62576 | |FOV |80HIP 80088| NL80_1 +181137 |V1137 Cas *|013453.9+673815 |EA | 11.85 | 12.39 | 12.28 |* |54763.3379 | | 4.15907 |06 | |80209 GSC | NL80_1 +181141 |V1141 Cas *|013818.0+610835 |EA | 12.28 | 12.93 | 12.76 |* |51542.702 | | 6.9092 |08 |B1V: |80023 GSC | NL80_1 +181142 |V1142 Cas *|014332.2+640215 |ELL: | 11.10 | 11.15 | 11.15 |V | | | 1.48632 | | |80094 80094| NL80_1 +181143 |V1143 Cas |014335.6+640207 |BCEP | 11.30 | 11.45 | |V | | | 0.189991 | | |80094 80094| NL80_1 +181146 |V1146 Cas |014422.7+604044 |BE | 12.38 |( 0.24 I )| |V | | | | |ea |80095 80095| NL80_1 +181147 |V1147 Cas |014428.1+604003 |BE | 10.69 |( 0.12 I )| |V | | | | |Be |80095 80095| NL80_1 +181154 |V1154 Cas |014631.5+650135 |DCEP | 10.8 | 11.1 | |* |51492.0 | | 2.113 |35 | |80081 GSC | NL80_1 +181155 |V1155 Cas *|014639.0+611406 |BCEP | 10.41 |( 0.04 )| |I | | | 0.194047 | |B5 |80098 80098| NL80_1 +181156 |V1156 Cas *|014639.8+610952 |BCEP | 11.72 |( 0.03 )| |I | | | 0.27640 | | |80098 80098| NL80_1 +181159 |V1159 Cas *|015108.2+744832 |EA | 11.82 |< 12.2 | 11.91 |* |51541.84 | | 14.068 |09 | |80013 GSC | NL80_1 +181160 |V1160 Cas *|015639.2+721947 |EA | 11.68 | 12.0 | 12.0 |* |51490.875 | | 2.13318 |10 | |80013 GSC | NL80_1 +181162 |V1162 Cas *|020831.9+680615 |EA | 11.06 | 11.78 | 11.67 |* |51427.630 | | 29.067 | | |80023 GSC | NL80_1 +181163 |V1163 Cas |021426.6+594512 |GCAS | 10.8 | 11.3 | |* | | | | |Be |80111 80111| NL80_1 +181164 |V1164 Cas *|021757.8+705812 |EA | 12.23 | 12.73 | 12.27 : |* |51582.61 | | 3.7134 |09 | |80013 GSC | NL80_1 +181165 |V1165 Cas |022722.4+643529 |LB | 12.45 | 13.10 | |* | | | | | |80062 USNO | NL80_1 +181166 |V1166 Cas *|023209.6+613824 |EA | 11.65 | 12.35 | 11.80 |* |51460.630 | | 1.3210 |14 |B2V |80033 80033| NL80_1 +181168 |V1168 Cas |024012.9+642319 |RV: | 12.5 | 13.0 | |* |51476. | | 172. | | |80001 GSC | NL80_1 +181170 |V1170 Cas *|024731.1+582006 |EW | 11.15 | 11.49 | 11.47 |* |51421.708 | | 0.960968 | |B5 |80042 GSC | NL80_1 +181171 |V1171 Cas |025057.7+753400 |LB | 10.64 | 11.00 | |* | | | | | |80100 GSC | NL80_1 +181173 |V1173 Cas |025826.1+720019 |SR | 12.5 | 13.2 | |* | | | 56. | | |80001 GSC | NL80_1 +181175 |V1175 Cas *|032126.5+732608 |EA | 9.78 | 10.25 | 10.22 : |* |51602.607 | | 3.4572 |06 | |80042 DM | NL80_1 +181176 |V1176 Cas *|032449.2+772012 |EA | 11.18 | 11.72 | 11.7 : |* |51572.752 | | 6.3344 |04 | |80023 GSC | NL80_1 +181177 |V1177 Cas *|032450.7+703322 |EA | 11.30 | 11.58 | 11.47 : |* |51486.7 | | 105. |04 | |80001 GSC | NL80_1 +181178 |V1178 Cas *|033316.9+693534 |EA | 12.50 | 13.38 | 12.92 |* |51474.57 | | 8.662 |12 | |80013 GSC | NL80_1 +181181 |V1181 Cas |225714.8+572845 |BE | 10.7 | 11.1 | |* | | | | |Be |80077 80077| NL80_3 +181182 |V1182 Cas |225835.0+570919 |BY: | 11.6 |( 0.19 )| |B | | | 17.314 | |K |80039 DM | NL80_3 +181183 |V1183 Cas *|230237.4+593618 |DSCTC | 7.36 | 7.42 | |Hp| | | 0.050571 | |A8III |80599 HIP | NL80_3 +181185 |V1185 Cas |232605.4+521812 |EA | 10.34 | 10.47 | 10.46 |* |54397.51 | | 5.84530 | | |80001 GSC | NL80_3 +181187 |V1187 Cas |232705.4+572535 |SR | 12.0 | 12.4 | |* | | | 77. : | | |80597 80597| NL80_3 +181190 |V1190 Cas |232953.6+565022 |SR | 11.1 | 11.55 | |* | | | 58. | | |80597 80597| NL80_3 +181191 |V1191 Cas |233222.7+600515 |EA | 11.20 | 11.48 | 11.48 |* |51462.625 | | 1.94145 | |OB |80042 GSC | NL80_3 +181192 |V1192 Cas |233630.5+632729 |SRA | 10.8 | 11.0 | |* |51512. | | 37.4 | | |80597 80597| NL80_3 +181193 |V1193 Cas |234130.8+513259 |LB | 11.8 | 12.3 | |* | | | | | |80062 USNO | NL80_3 +181194 |V1194 Cas *|234233.8+561120 |DSCTC | 10.55 | 10.63 | |* | | | 0.1387 | | |80612 GSC | NL80_3 +181195 |V1195 Cas |235354.4+590901 |LB | 12.2 | 12.7 | |* | | | | | |80062 GSC | NL80_3 +181206 |V1206 Cas |235626.7+580137 |DCEP | 11.7 | 12.1 | |* |51455.9 | | 4.74 | | |80081 GSC | NL80_3 +189001 |alf Cas *|004030.4+563214 |CST: | 2.20 | 2.27 | |V | | | | |K0IIIa | BD | +189002 |bet Cas *|000910.7+590859 |DSCTC | 2.25 | 2.31 | |V |38991.876 | | 0.10430 |40 |F2III-IV |03902 BD | +189003 |gam Cas *|005642.5+604300 |GCAS | 1.6 | 3.0 | |V | | | | |B0.5IVpe |06475 BD | +189004 |del Cas *|012549.0+601407 |EA: | 2.68 | 2.76 | 2.75 |V |20161. | | 759. | |A5V |05160 BD | +189007 |eta Cas |004906.3+574855 |RS: | 3.58 | 3.63 | |Hp| | | | | |HIP HIP | +189009 |iot Cas *|022903.9+672409 |ACV | 4.45 | 4.53 | |V |37248.313 | | 1.74050 |35 |B9p(Cr-Sr) |08824 BD | +189010 |kap Cas *|003300.0+625554 |ACYG | 4.22 | 4.30 | |B | | | | |B1eaIa |08876 BD | +189015 |omi Cas *|004443.5+481704 |GCAS | 4.50 | 4.62 | |V | | | | |B2-5eIV |07855 BD | +189016 |pi. Cas *|004328.1+470128 |ELL | 5.00 | 5.02 | |Hp| | | | | |HIP HIP | +189017 |rho Cas *|235423.0+572958 |SRD | 4.1 | 6.2 | |V | | | 320. | |F8pIa-K0pIa-0 |08877 BD | +190001 |R Cen *|141634.3-595449 |M | 5.3 | 11.8 | 8.3 |V |41942. | | 546.2 | |M4e-M8IIe |00001 00002| +190002 |S Cen |122433.9-492625 |SR | 9.2 | 10.7 | |p | | | 65. | |C4,5(Nbp) |00003 05464| +190003 |T Cen |134145.6-333551 |SRA | 5.5 | 9.0 | |V |43242. | | 90.44 |47 |K0:e-M4II:e |00001 00002| +190004 |U Cen |123330.8-543934 |M | 7.0 | 14.0 | |V |39941. | | 220.28 |47 |M3II:e-M5IIe |00001 00002| +190005 |V Cen *|143233.1-565316 |DCEP | 6.43 | 7.21 | |V |40308.60 | | 5.493839 |26 |F5Ib/II-G0 |05060 CoD | +190006 |W Cen |115501.3-591514 |M | 7.60 | 13.7 | |V |41786. | | 201.57 |47 |M3e-M8(III)e |00001 00002| +190007 |X Cen |114911.8-414527 |M | 7.0 | 13.8 | |V |41709. | | 315.1 |41 |M5e-M6.5e |00001 00002| +190008 |Y Cen |143058.6-300552 |SRB: | 8.9 | 10.0 | |p | | | 180. : | |M4e-M7 |00005 CoD | +190010 |RR Cen *|141657.2-575116 |EW/KE: | 7.27 | 7.68 | 7.63 |V |24231.0981 | | 0.60569029 | *|A9/F0V |06477 08830| +190011 |RS Cen *|112027.9-615237 |M | 7.75 | 14.1 | |V |41966. | | 164.37 |46 |M1Ibe-M5(III)e |00001 00002| +190012 |RT Cen *|134820.9-365145 |M | 8.1 | 13.6 | |V |42098. | | 255.02 |47 |M6II:e |00001 00002| +190013 |RU Cen |120923.8-452535 |RV | 8.7 | 10.7 | |p |28015.51 | | 64.727 | |A7Ib-G2pe |03510 05464| +190014 |RV Cen |133736.0-562835 |M | 7.0 | 10.8 | |V |40960. | | 446.0 |56 |N3e |00001 00002| +190015 |RW Cen |110717.9-550719 |SRA | 8.6 | 10.3 | |V |38134. | | 185.2 |53 |N3 |05975 05464| +190016 |RX Cen |135125.4-365638 |M | 8.7 |< 15. | |V |42114. | | 327.90 |38 |M5e |00001 00002| +190017 |RY Cen |144952.4-423049 |M | 10.5 | 16.4 | |p |28739. | | 327.5 | |M5e |01004 GSC | +190018 |RZ Cen *|130156.0-643737 |EB/KE: | 8.95 | 9.60 | 9.4 |V |29342.942 | | 1.8759517 | |B2V |00007 04641| +190019 |SS Cen *|131338.5-640904 |EA/SD | 9.4 | 11.0 | 9.5 |p |29552.475 | | 2.4787192 |14 |B8V |00007 CPD | +190020 |ST Cen *|110958.6-522929 |EA/DM: | 10.62 | 11.34 | 11.30 |V |43173.056 | | 1.2234184 |22 |F9V |00007 CoD | +190021 |SU Cen *|111109.3-475037 |EA/SD: | 9.1 | 10.0 | 9.2 |p |29253.830 | | 5.35432828 |15 |F0/3V |00007 CoD | +190022 |SV Cen *|114757.2-603358 |EB/KE: | 8.71 | 9.98 | 9.45 |V |44061.0600 | | 1.658500 | |B1V+B6.5II-III |05212 04641| +190023 |SW Cen |121747.5-494404 |EA/SD | 10.0 | 12.2 | |p |29236.591 | | 5.2195375 |13 |B9V |00007 05464| +190024 |SX Cen *|122112.6-491241 |RVB | 9.6 | 12.5 | |p | | | 32.8642 | |F5-G3/5Vp |00011 05464| +190025 |SY Cen *|134151.5-614610 |EA/SD | 11.2 | 12.2 | |p |27892.6234 | | 6.631357 |11 |A5 |00013 CoD | +190026 |SZ Cen *|135035.1-582957 |EA/D | 8.3 | 8.9 | 8.7 |p |41386.7466 | | 4.107983 |15 |A6III |05213 CoD | +190027 |TT Cen |131935.2-604646 |M | 11.5 |< 16.5 | |p |25380. | | 462. | |CSe |00014 05464| +190028 |TU Cen |143401.2-314140 |M | 9.5 | 14.5 | |p |28214. | | 293.90 | |M4e-M7e |01004 CoD | +190029 |TV Cen |121431.7-513158 |SRB: | 10. | 10.5 | |p | | | 175. : | |C(Nb) |00003 05464| +190030 |TW Cen |135743.2-310411 |M | 8.8 |< 12.6 | |p |29310. | | 269.27 |43 |M4e-M8II: |01004 08087| +190031 |TX Cen *|143512.0-605952 |DCEP | 9.85 | 11.14 | |V |34964.000 | | 17.0936 |38 | |02309 GSC | +190033 |TZ Cen *|130407.2-604558 |CST: | 11.5 | 13.0 | |p | | | | | |00016 GSC | +190034 |UU Cen |132206.3-611839 |M | 10.4 | 14.4 | |p |15121. | | 368. | |M8e |00017 05464| +190035 |UV Cen |114057.1-573930 |M | 10.1 |< 13.5 | |p |29157. | | 274.3 | |Me |00001 GSC | +190036 |UW Cen *|124317.2-543141 |RCB | 9.1 |< 14.5 | |V | | | | |K |00003 05464| +190037 |UX Cen |132209.8-641308 |SRB | 10.1 | 10.6 | |p | | | 122. : | |C(Nb) |00003 CoD | +190038 |UY Cen |131631.8-444216 |SR | 9.22 | 11.2 | |B | | | 114.6 : | |SC |00018 CoD | +190039 |UZ Cen *|114058.5-624133 |CEP(B) | 8.30 | 9.12 | |V |40746.1 | | 3.33434 |27 |F3Ib/II |05119 CoD | +190040 |VV Cen |114629.1-615327 |M | 10.2 | 17.1 | |B |10160. | | 199. | |M2:e-M4e |00020 00021| +190041 |VW Cen *|133359.0-640320 |DCEP | 9.67 | 10.72 | |V |44023.17 | | 15.03618 |38 | |02309 00022| +190042 |VX Cen |135113.3-602437 |SR | 9.5 | 12.8 | |p |29800. | | 307.8 | |S8,5e(M4-8II-III)|00023 06965| +190043 |VY Cen |113114.5-512622 |L | 11.0 | 11.5 | |p | | | | | |00016 CoD | +190044 |VZ Cen *|115228.8-613127 |EA | 8.34 | 8.6 | 8.4 |B |29125.519 | | 4.9287012 |20 |B2III/IV |00007 04641| +190045 |WW Cen |130924.7-601458 |SRB | 8.8 | 11.6 | |V | | | 304. | |M5-M7 |00003 04641| +190049 |XX Cen |134018.6-573648 |DCEP | 7.30 | 8.31 | |V |40366.24 | | 10.954348 |49 |F6-G4(F7/8II) |05060 CoD | +190050 |XY Cen |134844.7-443048 |LB | 10.7 | 11.1 | |p | | | | |M0 |00016 CoD | +190051 |XZ Cen |122412.0-353802 |M | 7.8 | 10.7 | |V |30136. | | 290.7 | |M5e |00026 05464| +190052 |YY Cen |123541.8-543452 |M: | 12.5 |< 14.3 | |p |28696. | | | |M5e |00016 05464| +190053 |YZ Cen |125410.7-435256 |SR: | 10.5 | 11.0 | |p | | | | |K3III |00018 CoD | +190054 |ZZ Cen *|135958.6-471341 | | 10.5 | 13.0 | |V | | | | | |00027 CoD | +190055 |AA Cen *|140000.5-471339 | | 10.7 | 13.5 | |V | | | | | |00027 CoD | +190056 |AB Cen *|112621.3-582458 |EA/DS | 10.6 | 13.2 | |p |23885.15 | | 46.853 |08 : |G0: |00028 CPD | +190057 |AC Cen |113309. -574135:|CST: | 11. |< 13. | |p | | | | | |00016 GSC | +190058 |AD Cen |115311.6-591848 |LC: | 9.4 | 11.4 | |p | | | | |K3(II)-M3e | 00002| +190059 |AE Cen |120255.9-551309 | | 12. | 15.5 | |p | | | | | |00029 GSC | +190060 |AF Cen |130407.6-562015 |M | 10.5 |< 15. | |p |25758. | | 284. | | |00030 GSC | +190061 |AG Cen |133130.2-541827 |CST | 10.5 | | |p | | | | | |00030 CoD | +190062 |AH Cen |134045.3-572813 |CST | 12.5 | | |p | | | | | |00030 GSC | +190064 |AK Cen |143155.7-592740 | | 12. | 14. | |p | | | | | |00029 USNO | +190065 |AL Cen |123606.1-533607 |SRA | 10.0 | 11.9 | |p |29835. | | 125. | |M1/3e |00003 05464| +190066 |AM Cen |134717.6-532126 |LB | 10.4 | 11.61 | |B | | | | |SC |00016 CoD | +190067 |AN Cen |134800.5-380816 |M | 11.5 |< 14. | |p |12642. | | 333. | |Me |00017 05625| +190068 |AO Cen |150051.7-422937 |M | 10.6 |< 12.5 | |p |13627. | | 189. | |M2e |00031 CoD | +190069 |AP Cen *|150110.1-342831 |M | 10.4 |< 13.5 | |p |13355. | | 357. | |M5e |00017 CoD | +190070 |AQ Cen |140459.9-352950 |M | 9.3 |< 13.5 | |p |29719. | | 387.5 | |Me |01004 08073| +190071 |AR Cen |110813.2-562532 |EA/DS | 12.5 | 14.1 | |p |23893.2 | | 8.971 | | |00032 GSC | +190074 |AU Cen |135157.9-522239 |M | 12.5 |< 16.5 | |p |23918. | | 261.5 | | |00030 06286| +190076 |AW Cen |131345.3-565815 |SR | 10.3 | 11.3 | |p | | | 90. | |M4(III) |00003 CoD | +190078 |AY Cen |112505.8-604405 |DCEP | 8.58 | 9.16 | |V |36733.520 | | 5.30975 |32 |G1I-G5 |02309 CoD | +190079 |AZ Cen *|112513.0-612209 |DCEPS | 8.41 | 8.80 | |V |35223.36 | | 3.21068 |40 |F7 |02431 CoD | +190080 |BB Cen |115333.5-625108 |DCEPS | 9.86 | 10.48 | |V |40990.27 | | 3.99766 |45 |F5 |08834 00021| +190081 |BC Cen |140223.5-583415 |M | 11.0 | 17.0 | |p |24310. | | 293. | |M |00014 06286| +190082 |BD Cen *|142355.4-595142 |EA/KE: | 10.2 | 11.4 | 10.7 |p |28693.326 | | 1.201114 |18 *| |00016 CoD | +190083 |BE Cen |150146.2-301441 |M | 9.8 | 14.0 | |p |28740. | | 201.56 |45 |Me |00005 08087| +190084 |BF Cen *|113617.0-612801 |EA/DM: | 8.5 | 9.4 | 8.8 |p |24262.28 | | 3.69334 |20 |B7 |00039 03389| +190085 |BG Cen *|113721.4-640215 |E/KE | 11.8 | 12.6 | 12.3 |p |23990.237 | | 0.743112 | | |00040 00040| +190086 |BH Cen *|113910.2-632515 |EB/KE | 10.03 | 11.16 | 11.1 V |V |31748.7478 | | 0.79158298 | |B5V |05794 05747| +190087 |BI Cen *|114554.6-592240 |RRAB | 11.18 | 12.33 | |V |36690.224 | | 0.453183 |26 |A3-F3: |03126 00040| +190088 |BK Cen *|114916.0-630443 |CEP(B) | 9.60 | 10.38 | |V |35221.711 | | 3.173887 |30 |G5 |05316 04655| +190093 |BP Cen |131908.7-495505 |EA/SD | 12.2 | 16.0 | |p |24644.722 | | 2.17042 | | |00030 06286| +190094 |BQ Cen |132027.9-503720 |S: | 12.0 | 13.1 | |p | | | | | |00030 06286| +190095 |BR Cen |132439.5-522001 |SR | 11.8 | 14.0 | |p | | | | |Me |00030 06286| +190098 |BU Cen |132936.7-500006 |RV: | 12.4 | 14.2 | |p | | | 85.5 | | |00030 06286| +190099 |BV Cen *|133119.5-545834 |UGSS+E/WD | 10.7 | 13.6 | |V |40264.780 | | 0.6096144 | |pec(UG) |05799 08852| +190105 |CD Cen |133721.3-534855 |M | 11.5 | 16.2 | |p |25390. | | 178. | | |00030 03508| +190111 |CK Cen |134749.8-574212 |M | 12.3 | 16.3 | |p |25385. | | 198. | | |00030 06286| +190113 |CM Cen |135102.4-553320 |M | 12.2 |< 16.5 | |p |27480. | | 457. | | |04174 04174| +190114 |CN Cen *|112547.8-593756 |RVA | 12.5 | 14. | 13.3 |p |24204.5 | | 51.0 | |G4 |00044 00044| +190117 |CQ Cen |130803.4-552918 |E/SD: | 11.7 | 12.5 | |p |27950.032 | | 6.30159 | | |00013 00013| +190120 |CT Cen |131043.0-581639 |EA/DS | 10.3 | 13.0 | |p |25438.206 | | 16.394 | |A3(ea) |00030 CoD | +190130 |DG Cen |131310.3-511253 |M | 12.4 | 16.4 | |p |25325. | | 185. | |Me |00030 06286| +190132 |DI Cen *|131509.7-555808 |EA/DM | 11.8 | 12.5 | 12.3 |p |28295.4584 | | 3.549574 |08 : | |00013 00013| +190133 |DK Cen |131724.5-582321 |EA/DS | 11.8 | 12.9 | |p |28658.572 | | 9.475357 |08 | |00013 00013| +190142 |DT Cen *|132253.0-545158 | | 12.0 | 12.6 | |p | | | | | |00030 GSC | +190147 |DY Cen *|132534.0-541444 |RCB | 12.0 |< 16.4 | |p | | | | |pec |00030 03508| +190149 |EE Cen |132715.7-575815 |SR | 12.3 | 14.2 | |p | | | 198. | | |00030 06286| +190155 |EL Cen |133025.2-565452 |E | 12.3 | 12.7 | |p | | | | | |00030 06286| +190158 |EO Cen |133142.5-582337 |EA/DS | 11.0 | 13.1 | |p |29019.9662 | | 9.42567 | | |00013 00013| +190159 |EP Cen *|133146.0-573346 |EA/SD | 11.3 | 12.5 | 11.5 |p |27871.487 | | 0.925449 |23 *| |00013 00013| +190186 |FW Cen |134523.5-562154 |E | 12.4 | 12.9 | |p | | | | | |00030 GSC | +190217 |HQ Cen |135251.2-562923 |S: | 12.5 | 13.3 | |p | | | | | |00030 GSC | +190225 |HY Cen |135655.7-565528 |M | 12.4 |< 16.0 | |p |25360. | | 311. | |Me |00030 GSC | +190239 |IV Cen |112810.4-601027 |EA/DS: | 11.4 | 12.1 | |p |24464.62 | | 19.138 |11 *|G8 |00045 00045| +190240 |IW Cen *|113321.3-594930 |EB/KE | 12.0 | 12.4 | 12.1 |p |24776.098 | | 1.132963 | | |00045 00045| +190242 |IY Cen *|113804.4-630604 |EA/DS: | 12.0 | 12.5 | |p |24679.48 | | 20.461 |18 | |00045 00045| +190244 |KK Cen *|114248.2-585936 |DCEP | 10.84 | 11.94 | |V |41017.51 | | 12.1803 |47 | |02309 00045| +190245 |KL Cen |114601.9-624408 |EA/SD | 12.3 | 13.6 | |p |24708.483 | | 5.29654 |04 | |00045 00045| +190247 |KN Cen *|133636.9-643330 |DCEP | 9.28 | 10.36 | |V |36238.172 | | 34.0457 |21 | |00001 00022| +190250 |KQ Cen *|142525.5-635946 |SR | 12.0 | 13.5 | |p | | | | |S7,6 |00047 00022| +190252 |KS Cen |114710.6-413145 |RRAB | 12.5 | 14.2 | |p |25995.342 | | 0.397420 |18 | |00048 00048| +190253 |KT Cen *|114805.3-622111 |EA/DM | 12.12 | 12.72 | 12.72 |V |41696.32 | | 4.130435 |12 *| |00049 00050| +190259 |KZ Cen *|120155.2-461642 |CWB | 11.80 | 12.77 | |V |35219.656 | | 1.519927 |40 | |00051 00052| +190264 |LP Cen |122216.9-414610 |EA/SD | 10.0 | 11.4 | |p |25994.2848 | | 2.472329 |08 |A9V |00048 00048| +190266 |LR Cen *|112348.8-604954 |EA/SD | 12.15 | 13.28 | 12.30 |V |24608.5402 | | 2.095595 |17 |B8.5III |00054 00054| +190268 |LT Cen *|112900.5-605250 |EA/DM | 9.2 | 9.6 | 9.6 |p |25028.933 | | 1.625914 |15 |B9V |00054 CoD | +190271 |LW Cen *|113731.9-632052 |EB/KE | 8.90 | 9.65 | 9.6 |V |24824.462 | | 1.0025674 | |B1.5V |00054 04641| +190273 |LY Cen |114848.0-584213 |M | 11.8 |< 15.0 | |p |25380. | | 345. | | |00054 00054| +190274 |LZ Cen *|115032.5-604738 |EB/DM | 8.10 | 8.50 | 8.50 |V |26096.384 | | 2.757717 | |B2III |00049 04641| +190275 |MM Cen *|115455.9-605042 |EA/DM | 12.3 | 12.8 | 12.7 |p |24860.248 | | 2.094477 |23 | |00054 00054| +190276 |MN Cen *|112803.0-612441 |EA/DM | 8.6 | 9.0 | 8.7 |p |24918.58 | | 3.48916 |17 |B2/3V |00055 04641| +190277 |MO Cen |114201.2-614021 |EA/DS: | 9.8 | 10.1 | |p |24294.33 | | 9.6565 | |B8 |00055 04641| +190278 |MP Cen *|114345.8-614436 |EB/DM | 9.7 | 10.4 | 10.0 |p |29113.350 | | 2.9934466 | |B3 |00007 04641| +190279 |MQ Cen *|114415.6-614259 |EA/DM | 9.7 | 10.1 | 10.1 |p |29113.387 | | 3.6869340 |20 |B6 |00007 04641| +190280 |MR Cen *|114509.7-605811 |EB/DM | 10.2 | 10.8 | 10.5 |p |24296.44 | | 3.91373 | |B7 |00055 04641| +190283 |MU Cen |121253.9-442816 |UGSS | 11.8 | 15.0 : | |V | | | 44.9 | |pec(UG) |05919 08852| +190285 |MW Cen |122823.1-482031 |EA/SD | 12.0 | 14.0 | |p |25984.4208 | | 2.2815304 |12 : | |00059 00058| +190287 |MY Cen *|131104.5-613738 |DCEP | 11.64 | 12.60 | |V |34940.145 | | 3.71861 |27 | |02309 06286| +190288 |MZ Cen |131401.8-641930 |CEP | 11.21 | 11.99 | |V |26063.5 | | 10.353 | | |00014 06286| +190291 |NP Cen *|131638.0-621248 |EA/SD | 9.8 | 10.9 | 10.2 |p |27946.241 | | 2.852993 |14 |A5 |00013 CoD | +190294 |NS Cen |132138.3-583011 |M | 11.6 |< 16.5 | |p |26190. | | 345.5 | | |00014 USNO | +190300 |NY Cen *|132548.0-625505 |EB/SD | 11.8 | 12.8 | 11.9 |p |28594.883 | | 1.2952007 | | |00013 00013| +190301 |NZ Cen |132602.6-631828 |M | 12.3 |< 18.5 | |p |25620. | | 382. | |Se |00014 06286| +190302 |OO Cen *|132630.2-630945 |DCEP | 11.62 | 12.47 | |V |35611.13 | | 12.8805 |36 | |02309 00013| +190306 |OS Cen |132740.6-592024 |M | 11.0 |< 16. | |p |21344. | | 433. | |M6e |00014 06286| +190308 |OU Cen *|133500.6-615819 |EB/DM | 10.5 | 11.2 | 10.9 |p |27904.614 | | 2.014028 | | |00013 CoD | +190309 |OV Cen *|133556.5-625106 |EB/KE | 10.5 | 11.1 | 11.0 |p |28402.7059 | | 1.1371994 | | |00013 CPD | +190310 |OW Cen |134154.7-622023 |M | 12.0 |< 18. | |p |26020. | | 290. | |M4e |00014 06286| +190314 |PP Cen |134739.4-605909 |M | 10.8 |< 13.7 | |V |53551. | | 317. | | |00001 06286| +190315 |PQ Cen |135021.9-634658 |E/SD: | 10.5 | 11.2 | |p |26159.31 | | 1.05716 | | |00014 CPD | +190320 |PV Cen |135635.6-584716 |E/SD | 11.4 | 12.5 | |p |25684.50 | | 1.91733 | | |00014 06286| +190321 |PW Cen |135640.0-573535 |E/SD: | 11.3 | 11.8 | |p |24682.59 | | 2.5034 | | |00014 06286| +190327 |QS Cen *|140213.8-624752 |EA/SD | 12.1 | 13.7 | |p |27951.30 | | 4.9389 |07 | |00013 00013| +190329 |QU Cen |140333.4-631741 |M | 12.5 |< 16.5 | |p |26090. | | 220. | |Me |00014 06286| +190332 |QX Cen |140709.9-573744 |M | 12.3 |< 16.5 | |p |26400. | | 341. | | |00014 GSC | +190333 |QY Cen *|140817.2-614410 |DCEP | 11.28 | 12.36 | |V |28228.12 | | 17.7524 |32 | |00013 00013| +190337 |V0337 Cen |141710.8-630144 |E/SD: | 12.1 | 12.7 | |p |26479.37 | | 1.86435 | | |00014 06286| +190339 |V0339 Cen *|142148.5-613259 |DCEP | 8.40 | 9.17 | |V |40768.15 | | 9.4660 |50 |F7II-G5 |00001 05288| +190344 |V0344 Cen *|112323.0-605138 |EA/SD: | 12.2 | 13.0 | 12.3 |p |24516.663 | | 1.891912 |16 |F5 |00062 00062| +190346 |V0346 Cen *|114249.7-622605 |EA/DM | 8.48 | 8.9 | 8.8 |B |21963.674 | | 6.32227 |11 |B3II/III |00063 07715| +190348 |V0348 Cen *|114828.9-434653 |EA/SD | 10.7 | 13.4 | |p |25355.4320 | | 2.1524026 |11 |A |00053 00053| +190350 |V0350 Cen *|115011.1-633911 |EA/KE: | 10.1 | 10.6 | 10.3 |p |30868.561 | | 3.216929 |25 | |01123 CPD | +190352 |V0352 Cen |115113.9-493031 |M | 12.3 | 15.1 | |p |26124. | | 240.7 | |Me |00065 00065| +190355 |V0355 Cen |115356.0-451150 |SR | 12.0 | 13.1 | |p |26130. | | 81. : | | |00065 00065| +190366 |V0366 Cen |120912.9-464849 |M | 11.8 | 16.1 | |p |26124. | | 247.7 | | |00065 00065| +190368 |V0368 Cen |121305.8-501224 |SR | 10.2 | 11.0 | |p |27615. | | 175. | |M6/7(III) |00067 05464| +190369 |V0369 Cen |121459.7-544913 |SRB | 8.02 |( 0.51 )| |V | | | 70. : | |M5II |08837 CoD | +190372 |V0372 Cen |122018.3-443142 |M | 11.0 | 16.2 | |p |25973. | | 316.7 | |Me |00065 08087| +190375 |V0375 Cen |123249.1-462457 |M | 12.2 |< 16.0 | |p |25695. | | 280.0 | |Me |00053 00053| +190377 |V0377 Cen *|125717.5-480338 |EA/DS | 8.4 | 9.1 | |p |30393.956 | | 8.251658 |06 |A2V |01123 CoD | +190378 |V0378 Cen |131858.3-622256 |DCEPS | 8.27 | 8.68 | |V |34917.113 | | 6.45930 |32 |F5Iab/b-G5 |02309 CoD | +190379 |V0379 Cen *|132521.3-594653 |EA/SD | 8.8 | 9.6 | 8.9 |p |28402.23 | | 1.874685 |18 *|B5V |00013 05464| +190380 |V0380 Cen *|132723.4-615226 |EA/KE | 9.7 | 10.2 | 10.0 |p |27807.601 | | 1.0872172 |20 *|B5V |00013 06291| +190381 |V0381 Cen |135044.3-573450 |CEP | 7.32 | 8.01 | |V |36201.953 | | 5.07878 |28 |F6-G7(F8Ib/II) |02309 CoD | +190384 |V0384 Cen *|113917.3-621029 |EA/DM | 11.8 | 12.4 | 12.2 |p |25056.372 | | 12.63524 |03 | |00071 00071| +190395 |V0395 Cen |123500.9-475822 |SR | 12.2 | 14.2 | |p |25500. | | 370. |39 | |00072 00072| +190396 |V0396 Cen |131725.0-613502 |LC: | 10.00 | 10.6 | |B | | | | |M4Ia-Iab-M6 |00014 05464| +190398 |V0398 Cen |131955.2-604227 |SRA | 11.9 | 13.9 | |p |27843. | | 264. | | |04174 04174| +190401 |V0401 Cen |132524.4-602751 |LB: | 11.1 | 11.6 | |p | | | | |M |00014 CoD | +190402 |V0402 Cen |132823.3-633502 |EA/SD: | 9.30 | 9.8 | |B |28330.383 | | 3.71996 |09 : |B9IV |00016 06965| +190403 |V0403 Cen |132927.3-591856 |SR: | 11.6 | 13.1 | |p | | | | | |00014 06286| +190404 |V0404 Cen |133243.3-600204 |E | 12.0 | 12.6 | |p | | | | | |00014 06286| +190405 |V0405 Cen *|133517.1-601935 |RV: | 12.2 | 13.7 | |p | | | | | |04174 04174| +190406 |V0406 Cen |134129.9-635545 |E | 12.0 | 12.5 | |p | | | | | |00014 06286| +190412 |V0412 Cen *|135728.1-574240 |LB | 7.1 | 9.6 | |B | | | | |M3Iab/b-M7 |00014 06965| +190413 |V0413 Cen |140440.6-585332 |E | 9.93 | 10.3 | |B | | | | |B8IV-V |00014 05288| +190415 |V0415 Cen |141319.8-445338 |CWA | 12.5 | 14.3 | |p |25771.3 | | 26.735 |38 | |00073 06286| +190416 |V0416 Cen |141545.3-604354 |EA/DS: | 11.3 | 12.1 | |p |30794.34 | | 8.2108 | | |00013 00013| +190417 |V0417 Cen |141559.9-615350 |L | 11.7 | 13.5 | |p | | | | |ea |00014 06286| +190418 |V0418 Cen |142118.6-641430 |LC | 8.7 | 9.5 | |p | | | | |K4II |00014 CoD | +190419 |V0419 Cen *|113054.4-565356 |DCEPS | 7.98 | 8.36 | |V |40760.28 | | 5.50691 |42 |F7II-K0 |00001 CoD | +190420 |V0420 Cen *|113950.3-475751 |CWA | 9.37 | 10.60 | |V |25350.67 | | 24.7678 |27 | |02309 00074| +190422 |V0422 Cen |115152.0-422751 |SRA | 11.6 | 12.1 | |p |25382. | | 193. | |M4e |00074 00074| +190423 |V0423 Cen |120455.3-411338 |M | 12.2 |< 16.0 | |p |26488. | | 325. | | |00075 USNO | +190424 |V0424 Cen |120617.3-491402 |M | 12.4 |< 15.2 | |p |21310. | | 287.4 | | |00074 00074| +190425 |V0425 Cen |121415.1-431736 |M | 11.6 |< 15.9 | |p |25348. | | 287. | |Me |00074 00074| +190431 |V0431 Cen |123234.2-444824 |M | 12.1 |< 16.4 | |p |25369. | | 265.5 | | |00074 00074| +190433 |V0433 Cen |111009.1-355910 |M | 11.9 |< 16.5 | |p |27910. | | 367. | |Me |00076 05464| +190434 |V0434 Cen |111203.7-360948 |LB | 10.4 | 11.0 | |p | | | | |K5 |00076 05464| +190435 |V0435 Cen |111224.0-392203 |M | 11.8 | 15.4 | |p |27850. | | 211. | |Me |00076 06286| +190436 |V0436 Cen *|111400.2-374048 |UGSU | 11.5 | 15.2 | |B | | |( 32. ) | |pec(UG) |00001 08852| +190437 |V0437 Cen |111741.4-395546 |M | 10.7 | 15.5 | |p |27850. | | 350. | |Me |00076 06286| +190438 |V0438 Cen |111802.9-381107 |E | 11.8 | 12.2 | |p | | | | | |00076 06286| +190442 |V0442 Cen |112452.0-355437 |UGSS | 11.89 |< 16.5 | |V | | |( 25. ) | |pec(UG) |05983 08852| +190444 |V0444 Cen |122943.7-342202 |RR | 12.5 | 13.3 | |p | | | 0.53 | | |00078 06286| +190445 |V0445 Cen |123133.9-352924 |E/DS: | 11.9 | 13.7 | |p | | | 14.1 | |Me |00078 06286| +190449 |V0449 Cen |123819.8-354629 |SRD | 10.3 | 11.8 | |p |39614. | | 123. | |G8 |04514 06286| +190451 |V0451 Cen |124147.3-345542 |M | 12.0 | 15.0 | |p | | | 201. | | |00078 08087| +190455 |V0455 Cen |124401.1-304215 |SR | 11.6 | 13.7 | |V |42832. | | 108.3 | | |06577 06286| +190473 |V0473 Cen |125037.2-311301 |M | 12.4 |< 16.0 | |p | | | 224. | |Me |00078 06286| +190476 |V0476 Cen |125215.0-345708 |M | 12.0 |< 16.0 | |p | | | 270. | | |00078 06286| +190487 |V0487 Cen |125820.1-315903 |M | 11.8 | 15.5 | |p | | | 260. | | |00078 UCAC2| +190491 |V0491 Cen *|113459.0-573015 |SR | 11.3 | 12.5 | |p |27892. | | 202. | |Me |00016 02338| +190492 |V0492 Cen |115341.0-531323 |M | 11.2 | 15.2 | |p |28320. | | 330. | | |00016 GSC | +190493 |V0493 Cen |121544.4-512852 |M: | 11.5 |< 13.5 | |p |28326. | | 220. | | |00016 05464| +190495 |V0495 Cen *|130134.8-560531 |EA/DS | 10.4 | 11.9 | 10.6 |p |29393.686 | | 33.4871 |09 |Be |00081 00081| +190496 |V0496 Cen *|130310.7-605239 |DCEP | 9.62 | 10.24 | |V |40773.38 | | 4.42419 |29 |G3 |00001 CoD | +190497 |V0497 Cen |131758.0-414026 |M | 10.8 |< 13.5 | |p |28389. | | 335. | |Me |00016 CPD | +190498 |V0498 Cen *|134225.1-450554 |EA/SD: | 10.3 | 11.3 | |p |28275.35 | | 6.30038 | | |00016 CoD | +190499 |V0499 Cen *|135514.8-431425 |RRAB | 10.36 | 11.54 | |V |41126.248 | | 0.5212100 |12 |A3-F5 |07984 06286| +190500 |V0500 Cen |140914.5-401503 |M | 11.0 | 15.8 | |p |26045. | | 225. | | |00073 08613| +190502 |V0502 Cen |141209.2-401025 |M | 11.8 | 16.0 | |p |25740. | | 209. | |Me |00073 08613| +190504 |V0504 Cen *|141249.2-402138 |RCB | 12.0 |< 18.0 | |p | | | | | |00073 08613| +190512 |V0512 Cen |141929.9-384245 |E | 11.5 | 12.0 | |p | | | | | |00073 06286| +190516 |V0516 Cen |142351.7-402125 |SR | 12.0 | 13.3 | |p |26060. | | 148. | | |00073 06286| +190520 |V0520 Cen |142842.3-391956 |M | 11.1 | 16.1 | |p |26470. | | 276. | |Me |00073 06286| +190522 |V0522 Cen |142927.6-371344 |RR | 12.0 | 12.8 | |p |26012.590 | | 0.62364 | | |00073 06286| +190524 |V0524 Cen |142956.3-392230 |LB | 12.0 | 13.0 | |p | | | | | |00073 06286| +190531 |V0531 Cen |143508.5-401429 |LB | 12.0 | 13.5 | |p | | | | | |00073 06286| +190535 |V0535 Cen |143727.4-370301 |RR | 12.1 | 12.8 | |p |25707.450 | | 0.37150 | | |00073 06286| +190548 |V0548 Cen |144348.9-401745 |L | 11.9 | 12.4 | |p | | | | | |00073 06286| +190553 |V0553 Cen *|144633.6-321015 |CWB | 8.23 | 8.80 | |V |41124.28 | | 2.06051 |41 |F4-K0Ia(C) |06480 CoD | +190562 |V0562 Cen |144957.2-415558 |M | 12.0 | 15.8 | |p |25735. | | 193. | |Me |00073 06286| +190566 |V0566 Cen |145444.7-385646 |M | 11.4 |< 16.2 | |p |26140. | | 350. | |Me |00073 06286| +190568 |V0568 Cen |145609.9-413905 |M | 12.5 | 16.0 | |p |26560. | | 302. | | |00073 06286| +190572 |V0572 Cen |115143.1-391227 |SR | 12.1 | 12.7 | |p | | | 135. | | |00066 06286| +190583 |V0583 Cen |120125.6-372453 |M | 12.1 | 16.1 | |p |28340. | | 306.8 | | |00066 06286| +190586 |V0586 Cen |120331.4-380151 |M | 12.0 |< 16.0 | |p |28280. | | 220.6 | |Me |00066 02382| +190590 |V0590 Cen |111225.2-365246 |RR | 11.8 | 12.8 | |p | | | | | |00076 05464| +190592 |V0592 Cen *|130830.5-592302 |SR | 11.6 | 12.8 | |p | | | 40. | | |00083 00083| +190593 |V0593 Cen *|131713.3-623734 |EW/KE | 10.5 | 11.3 | 11.2 |p |27621.2693 | | 0.7553542 | |B1V |00083 00083| +190595 |V0595 Cen |112206.2-363508 |RR | 12.2 | 13.2 | |p | | | | | |00076 06286| +190597 |V0597 Cen |120517.3-551114 |SR | 11. | 12.5 | |p |28675. | | 220. | | |00085 02382| +190598 |V0598 Cen |121758.1-515143 |M | 11.4 |< 15.5 | |p | | | | |Me |00085 02385| +190599 |V0599 Cen |123108.9-391819 |M | 11. |< 13. | |p | | | | | |00085 02382| +190601 |V0601 Cen |125651.9-340148 |EA | 12.25 | 13.9 | |V |53474.78 | | 2.533051 |10 | |00001 08613| +190602 |V0602 Cen |125959.3-583053 |EA/SD: | 10. | 11.5 | |p | | | | |B6/8III/IV |00085 03511| +190603 |V0603 Cen |130450.4-353527 |M | 11.1 |< 13.4 | |p |38898. | | 253. | |K0 |04514 CoD | +190606 |V0606 Cen *|132136.3-603115 |EB/KE | 9.4 | 10.25 | 9.8 |V |27952.354 | | 1.495093 | |B1/2Ib/II |00001 05464| +190614 |V0614 Cen |134450.9-592758 |E | 10.7 | 11.0 | |p |28074.15 | | 3.47361 | |B9/A0V |00013 CoD | +190618 |V0618 Cen |135036.2-454605 |M | 11. |< 15.5 | |p | | | | |Me |00085 02385| +190619 |V0619 Cen *|135350.5-614821 |E/DS | 12.5 | 14. | |p |27567.95 | | 16.4555 | | |00013 00013| +190621 |V0621 Cen *|140249.5-624323 |EA/SD: | 9.9 | 10.4 | |p |28992.83 | | 3.68357 | |B8/9II/III |00013 CoD | +190636 |V0636 Cen *|141657.9-495642 |EA/DM: | 8.7 | 9.2 | 8.8 |V |34540.340 | | 4.28398 |04 *|G0V |02412 CoD | +190637 |V0637 Cen |141634.8-400026 |EW/KW: | 12.5 | 13.1 | |p | | | | | |00087 08613| +190638 |V0638 Cen |141632.0-322721 |M | 12.0 |< 15.5 | |p | | | | | |00086 02385| +190641 |V0641 Cen |143907.8-595009 |DCEP | 9.96 | 10.86 | |V |41771.771 | | 35.216 | |F5-G9 |08752 08752| +190643 |V0643 Cen |150139.4-394536 |M: | 12. |< 13.5 | |p |28770. | | | |M3e |00085 02382| +190644 |V0644 Cen *|114306.5-604405 |GCAS: | 8.7 | 10.2 | |p | | | | |B2IIIe | 04641| +190645 |V0645 Cen *|142943.0-624046 |UV | 12.1 | 13.12 | |B | | | | |M5Ve |00089 05288| +190646 |V0646 Cen *|113658.8-531235 |EA/SD | 9.0 | 11.7 | 9.1 |p |43916.1946 | | 2.24657322 |15 |B8IV |01123 03512| +190659 |V0659 Cen |133133.4-613457 |DCEP | 6.45 | 6.71 | |V |40348.77 | | 5.62180 |43 |F7Ib |05366 05317| +190661 |V0661 Cen |133353.2-334340 |M | 11.5 | 16.6 | |p | | | 250. : | |Me |00086 02382| +190663 |V0663 Cen |133932.9-304640 |M | 11.9 |< 16.8 | |p | | | 310. : | |Me |00086 GSC | +190671 |V0671 Cen |134009.7-372628 |RRAB | 11.6 | 12.5 | |V |34399.620 | | 0.437670 |27 : | |00080 02382| +190672 |V0672 Cen *|134507.9-460933 |EB/KE | 11.3 | 11.6 | 11.5 |V |34485.509 | | 0.508864 | | |00080 CoD | +190673 |V0673 Cen *|140314.6-484730 |EB/KE: | 10.3 | 10.5 |( 0.05 )|V |34421.603 | | 0.932792 | |A0 |00080 CoD | +190674 |V0674 Cen *|140324.1-362420 |RRAB | 11.0 | 11.9 | |V |34432.590 | | 0.493919 |15 | |00080 06286| +190675 |V0675 Cen |142450.9-343945 |CWB | 11.6 | 12.2 | |V |34481.80 | | 4.6384 |37 : | |00080 02382| +190676 |V0676 Cen *|143750.8-385044 |EW/KW | 11.9 | 12.6 | 12.5 |V |34425.555 | | 0.292397 | | |00080 CoD | +190677 |V0677 Cen *|144234.6-402716 |EW/KW | 11.5 | 11.7 | 11.6 |V |34421.488 | | 0.325067 | | |00080 CoD | +190678 |V0678 Cen *|145123.9-374047 |EB/KE | 10.5 | 10.9 | 10.6 |V |34479.355 | | 1.301858 | | |00080 CoD | +190680 |V0680 Cen |140528.9-312348 |LB: | 11.5 | 12.1 | |p | | | | | |02412 CoD | +190681 |V0681 Cen |140954.2-303814 |LB: | 11.2 | 12.0 | |p | | | | |M6 |02412 CoD | +190682 |V0682 Cen *|143019.9-344702 |IS: | 11.9 | 12.7 | |V | | | | | |02412 02382| +190683 |V0683 Cen |143248.5-333233 |SR: | 11.4 | 12.3 | |p | | | 11.65 : | | |02412 CoD | +190685 |V0685 Cen *|112426.6-574340 |EA/DM | 9.4 | 9.8 | 9.5 |p |25351.530 | | 1.190964 | |B9IV/V |04160 04641| +190686 |V0686 Cen *|113137.5-610321 |CEP | 12.4 | 14.0 | |p |28720. | | 69.3 | | |07452 04160| +190688 |V0688 Cen *|113150.4-623325 |EB/KE | 12.5 | 13.0 | 12.7 |p |26891.198 | | 0.946067 | | |04160 04160| +190689 |V0689 Cen *|113652.8-581401 |EB/KE | 11.9 | 12.6 | 12.1 |p |24966.133 | | 0.5585365 | | |04160 04160| +190692 |V0692 Cen *|115331.5-631527 |EA/DM | 11.1 | 11.8 | 11.6 |p |26129.328 | | 1.723708 |09 | |04160 04160| +190700 |V0700 Cen |132809.8-324325 |EA/SD: | 11.6 | 12.4 | |p |28330.346 | | 0.7649654 |15 *| |04183 CoD | +190701 |V0701 Cen *|133137.7-514618 |EB/KE | 8.8 | 9.3 | 9.1 |V |39243.2661 | | 0.738447 | |B9V |00001 CoD | +190702 |V0702 Cen |133243.4-631952 |M | 11.9 |< 16.0 | |p |27820. | | 470. | | |04174 04174| +190716 |V0716 Cen *|141339.8-543732 |EB/KE | 5.96 | 6.52 | 6.21 |V |38524.4069 | | 1.490096 | |B5V |05318 CoD | +190718 |V0718 Cen |141639.7-321637 |RR | 12.5 | 13.5 | |p | | | | | |04001 04001| +190737 |V0737 Cen |143712.0-620039 |DCEP | 7.5 | 8.0 | |p |28656.350 | | 7.06585 |39 |G2Ib |05319 CoD | +190742 |V0742 Cen *|112727.8-413051 |EB/DM | 9.4 | 10.2 | 10.1 |p |38493.450 | | 6.490 | |B9V |04655 CoD | +190743 |V0743 Cen *|132822.1-511732 |DSCT | 8.57 | 8.82 | |V |39243.6436 | | 0.10225435 |36 |A0V |06779 CoD | +190744 |V0744 Cen |133959.8-495700 |SRB | 5.14 | 6.55 | |V | | | 90. : | |M8III |05992 CoD | +190745 |V0745 Cen *|142715.3-620338 |EB/SD | 9.3 | 10.3 | 9.6 |p |33792.235 | | 3.025101 | |B6/8Ib/II |05994 06965| +190746 |V0746 Cen *|124824.1-333929 |E/SD: | 11.5 | 12.5 | |p |27892.550 | | 5.21035 | | |05399 06286| +190747 |V0747 Cen *|133923.8-450554 |EB/KE | 9.86 | 10.46 | 10.05 |V |36710.286 | | 0.53719488 | |A9/F0V |05656 CoD | +190748 |V0748 Cen *|145936.7-332504 |EA/GS | 11.55 | 13.65 | |V |41917. | | 566.5 |14 |Fep+M |07348 CoD | +190749 |V0749 Cen |150144.7-362124 |M: | 12.5 |< 14.5 | |p | | | | |Me |06561 06561| +190750 |V0750 Cen |113047.3-603530 |LB: | 12.2 |< 12.6 | |I | | | | |C |05853 05853| +190751 |V0751 Cen |113214.7-605418 |LB: | 10.0 |< 10.4 | |I | | | | |C |05853 05853| +190752 |V0752 Cen *|114248.1-354858 |EW/KW | 9.1 | 9.66 | 9.61 |V |44243.6916 | | 0.37022484 | |G0 |00001 CoD | +190753 |V0753 Cen *|115115.3-554816 |RRC: | 10.24 | 10.64 | |V |41386.144 | | 0.221349 |45 |A5 |06970 05855| +190754 |V0754 Cen *|125943.3-585842 |EA/SD | 11.1 |< 13.2 | |p |27924.427 | | 3.76581 | | |08040 05829| +190757 |V0757 Cen *|135155.7-363725 |EW/KW | 8.3 | 8.7 | 8.6 |V |42308.69312 | | 0.34316929 | | |07391 CoD | +190758 |V0758 Cen *|135242.9-553228 |EW/KE | 8.8 | 9.40 | 9.15 |B |44403.2797 | | 0.58078556 | |B9IV |07413 CoD | +190759 |V0759 Cen *|141041.3-474608 |EW/KW | 7.4 | 7.56 | 7.56 |V |42196.09732 | | 0.39395129 | |F9V |07420 CoD | +190760 |V0760 Cen |141231.8-592528 |UV: | 8.1 | 13. | |p | | | | | |05858 05858| +190761 |V0761 Cen *|142302.2-393043 |SXARI | 4.38 | 4.43 | |V |42807.75 | | 8.8171 | |B2V-B8IIIp(He-Si)|08054 CoD | +190762 |V0762 Cen |143130.8-630111 |EA | 10.3 | 10.8 | |p |28664.450 | | 3.367895 | | |05835 05835| +190763 |V0763 Cen *|113513.3-472221 |SRB | 5.55 | 5.80 | |V | | | 60. : | |M3III |06590 CoD | +190764 |V0764 Cen |133608.3-332845 |SRD | 8.84 | 9.13 | |V | | | | |K2III |06450 CoD | +190765 |V0765 Cen |133940.8-394451 |LB: | 6.28 |( 0.08 )| |V | | | | |M4 |05840 CoD | +190766 |V0766 Cen *|134710.9-623523 |SDOR: | 6.17 | 7.50 | |V | | | | |G8Ia-0 |06481 06965| +190767 |V0767 Cen *|135357.2-470741 |GCAS | 5.86 | 6.26 | |V | | | | |B2IIIe |08419 CoD | +190768 |V0768 Cen *|144838.0-363805 |SRB | 5.93 | 6.15 | |V | | | | |M3 |06023 CoD | +190769 |V0769 Cen |111120.8-474850 |M | 10. |< 14. | |p |38793. | | 325. | | |06847 06847| +190770 |V0770 Cen *|112109.1-603213 |BCEP: | 12.32 | 12.5 | |V | | | 0.17 | |B5eVIII-V |07055 UCAC2| +190771 |V0771 Cen |112659.7-612210 |SRC: | 6.87 |( 0.2 )| |V | | | | |M2Ib-II |05899 04641| +190772 |V0772 Cen *|114149.4-632452 |LC: | 7.80 | 8.36 | |V | | | | |M2Ibep+B |06149 04641| +190773 |V0773 Cen |134951.0-373101 |M: | 12. : | 16.3 | |p | | | | |Me |00086 CoD | +190774 |V0774 Cen |135328.2-390326 |GCAS | 7.63 | 7.72 | |V | | | | |B3Vne |06313 CoD | +190775 |V0775 Cen *|135828.3-514453 |EA/DM | 9.9 | 10.6 | |p |28740.250 | | 1.327286 | |F0IV |06871 06871| +190776 |V0776 Cen |150302.7-411419 |M | 12.0 | 17.6 | |p | | | | |Me |02935 06031| +190777 |V0777 Cen *|111143.8-512430 |EA/DM | 9.8 | 10.4 | |p |38471.404 | | 1.776028 | | |06847 06847| +190778 |V0778 Cen |112056.6-620037 |M | 11.4 | 16.6 | |B | | | | | |07452 07452| +190784 |V0784 Cen *|112536.8-602423 |LB | 12.4 | 14.4 | |p | | | | | |07452 07452| +190785 |V0785 Cen |113537.0-471006 |LB: | 7.6 |( 0.31 )| |V | | | | |M3II/III |06323 CoD | +190786 |V0786 Cen |113611.3-631700 |EA: | 9.3 | 9.77 | |V |41364.851 :| | | |B3III/V |07452 04641| +190788 |V0788 Cen *|120853.8-441934 |EA/D | 5.74 | 5.93 | 5.90 |V |41370.496 | | 4.966377 |08 |A2mA5-F2 |07860 CoD | +190789 |V0789 Cen |130448.2-411147 |LB: | 6.22 |( 0.09 )| |V | | | | |M3/4III |06324 CoD | +190790 |V0790 Cen *|132235.9-605820 |BCEP: | 6.16 | 6.27 : | |V | | | | |B2.5Vn |03712 06965| +190795 |V0795 Cen *|141457.1-570510 |GCAS | 4.97 | 5.10 | |V | | | | |B4Vne |06311 06965| +190796 |V0796 Cen |141706.1-563157 |LB | 11.5 | 12.5 | |p | | | | | |06561 06561| +190797 |V0797 Cen |142333.1-312824 |E | 11. | 12. | |p | | | | | |04001 04001| +190798 |V0798 Cen |143449.0-605751 |LB: | 8.7 | 9.3 | |p | | | | |M6III |05076 05288| +190800 |V0800 Cen |145930.2-352227 |SR | 10. | 12. | |p | | | | |Me |00085 05937| +190801 |V0801 Cen *|114800.0-621225 |GCAS:+XP | 8.93 | 9.39 | |V | | | | |B1Vne |07928 08882| +190802 |V0802 Cen |124901.6-364546 |M | 9.8 | 12.6 | |p |38554. | | 228. | | |04514 CoD | +190804 |V0804 Cen |133738.5-483442 |M | 10.9 |< 13.8 | |p |38511. | | 261. | | |04514 07842| +190805 |V0805 Cen |133850.4-540701 |E/DM | 9.9 | 10.3 | |p |28655.350 | | 2.211155 | |A0IV |08040 CoD | +190806 |V0806 Cen |134926.7-342703 |SRB | 4.16 | 4.26 | |V | | | 12. : | |M5III |07704 CoD | +190807 |V0807 Cen *|142515.9-611912 |GCAS | 9.40 | 9.50 | |V | | | | |B3Vne |07934 07776| +190808 |V0808 Cen |112915.1-633314 |ACYG | 6.42 | 6.47 | |V | | | | |B2eaIa |08070 04641| +190809 |V0809 Cen |113115.1-611643 |ACYG | 6.31 | 6.36 | |V | | | | |A3eIa |08227 04641| +190810 |V0810 Cen *|114331.2-622922 |SRD | 4.95 | 5.12 | |V | | | 130. : | |F5-G0Ia-0+B1Iab |04388 07715| +190811 |V0811 Cen |115114.7-631349 |EA: | 11.0 | 11.6 | |V |41364.86 | | | | |07452 07452| +190815 |V0815 Cen |110716.7-423819 |ACV | 5.14 |( 0.03 )| |V | | | 2.433 | |A3p(Sr) |02590 CoD | +190816 |V0816 Cen *|113737.0-464235 |DSCT: | 7.996 | 8.020 | |V |43400.00090 | | 0.00843060 | |F8p |08885 CoD | +190817 |V0817 Cen |120854.6-411354 |GCAS | 5.47 | 5.58 | |V | | | | |B3eaIV |06311 CoD | +190818 |V0818 Cen |125228.6-493152 |M | 12.1 |< 14.1 | |p | | | | | |08368 08368| +190819 |V0819 Cen |131921.7-581142 |RR: | 9.00 |( 0.07 )| |V |42460.59 | | 0.6755 : |60 |A2 |08222 CPD | +190820 |V0820 Cen *|141356.4-380547 |RV | 8.42 |< 10.10 | |V |43325. | | 150. | |K0e |08369 CoD | +190821 |V0821 Cen |141458.6-461719 |PVTEL | 9.94 | 10.03 | |V | | | | |B3p |07799 CoD | +190823 |V0823 Cen |125658.2-543514 |ACV | 6.7 |( 0.005 )| |V | | | 2.84 | |A0p(Si-Cr) |02590 CPD | +190824 |V0824 Cen |131058.4-523401 |ACV | 6.3 |( 0.035 )| |V | | | 1.272 | |A0p(Si) |02590 CoD | +190827 |V0827 Cen |134416.0-510045 |ACV | 6.46 |( 0.025 )| |V | | | 2.605 | |A0p(Si) |02590 CoD | +190828 |V0828 Cen |140327.5-412524 |ACV | 6.10 |( 0.045 )| |V | | | 1.837 | |A0p(Si) |02590 CoD | +190829 |V0829 Cen |113922.2-392308 |RS | 7.9 : |( 0.11 )| |V | | | | | |67024 CoD | +190831 |V0831 Cen |131217.6-595514 |ELL: | 4.49 | 4.66 | |V | | | | | |67169 CPD | +190835 |V0835 Cen |141409.4-632547 |M | 4.35 | 5.72 | |K | | | | | |67189 67186| +190836 |V0836 Cen |144625.8-371320 |BCEP | 8.02 | 8.12 | |V | | | | | |67197 CoD | +190837 |V0837 Cen |113810.9-454458 |DSCT | 7.16 |( 0.10 )| |V | | | | | |68314 CoD | +190838 |V0838 Cen |114438.5-492503 |BY | 8.97 |( 0.08 )| |V | | | | | |68315 CoD | +190839 |V0839 Cen |125849.7-365833 |EW/KW | 9.51 | 10.13 | |V | | | | | |68318 CoD | +190840 |V0840 Cen |132049.5-555014 |NL | 7.5 |< 12.5 | |V | | | | | |68069 GSC | +190841 |V0841 Cen |143416.1-602429 |RS | 8.49 | 8.85 | |V | | | | | |68322 CPD | +190842 |V0842 Cen |143552.6-573735 |N | 4.6 | 18.6 : | |V | | | | | |68171 USNO | +190843 |V0843 Cen |113555.5-613614 |BE | 8.59 |( 0.12 )| |B | | | | | |69073 69074| +190844 |V0844 Cen |113604.9-613449 |BE: | 10.1 |( 0.03 )| |B | | | | | |69073 69074| +190845 |V0845 Cen |113608.1-613838 |BE | 10.0 |( 0.07 )| |B | | | | | |69073 69074| +190846 |V0846 Cen |113610.2-613740 |BE | 9.27 |( 0.04 )| |B | | | | | |69073 69074| +190847 |V0847 Cen |113614.1-613736 |BCEP: | 9.7 |( 0.01 )| |B | | | | | |69073 69074| +190848 |V0848 Cen |113622.0-613629 |BE | 10.4 |( 0.06 )| |B | | | | | |69073 69074| +190849 |V0849 Cen |113631.6-613426 |BE: | 8.6 |( 0.06 )| |B | | | | | |69073 69074| +190851 |V0851 Cen |134400.9-612159 |RS | 7.78 | 7.88 | |V | | | | | |69078 CPD | +190852 |V0852 Cen |141152.1-512624 |M: | 6.7 |( 0.4 )| |K | | | | | |69079 69081| +190853 |V0853 Cen |142958.4-560753 |DSCTC | 6.97 |( 0.02 )| |V | | | | | |69084 CPD | +190854 |V0854 Cen |143449.3-393320 |RCB: | 7.13 | 14.1 | |V | | | | | |69086 69087| +190855 |V0855 Cen |113605.5-614206 |BE | 9.58 |( 0.07 )| |B | | | | | |70030 70029| +190856 |V0856 Cen |125736.3-494650 |BCEP | 8.32 | 8.37 | |V | | | | | |70031 CoD | +190858 |V0858 Cen |113616.2-380211 |RS | 10.58 |( 0.15 )| |V | | | | | |71106 CoD | +190862 |V0862 Cen |115610.7-615922 |L | 10.01 | 10.59 | |I | | | | | |71107 2MASS| +190863 |V0863 Cen |120805.2-503941 |BE: | 4.38 | 4.43 | |b | | | | | |71074 CoD | +190864 |V0864 Cen |131801.1-622604 |WR | 11.90 | | |V | | | | | |71117 71118| +190865 |V0865 Cen |132219.6-630731 |L | 9.30 | 10.51 | |I | | | | | |71107 2MASS| +190868 |V0868 Cen |135010.6-630852 |N | 10.24 |< 22.5 | |V | | | | | |71122 USNO | +190869 |V0869 Cen |140935.0-513017 |* | 5.92 |( 0.09 )| |V | | | | | |71123 CoD | +190870 |V0870 Cen |113819.9-632037 |BE | 10.41 | 10.68 | |V | | | | | |72077 CPD | +190871 |V0871 Cen |113820.4-632222 |EB | 6.48 |( 0.12 )| |V | | | | | |72041 CPD | +190873 |V0873 Cen |114859.0-622544 |CEP | 11.32 | 11.75 | |I | | | | | |72042 2MASS| +190875 |V0875 Cen |115354.6-585824 |M | 3.90 | 5.62 | |L'| | | | | |72007 2MASS| +190876 |V0876 Cen |115440.4-621721 |CEP | 12.12 | 12.54 | |I | | | | | |72042 UCAC2| +190877 |V0877 Cen |125942.0-613807 |EB | 10.44 | 11.15 | |V | | | | | |72043 72044| +190878 |V0878 Cen |130415.2-611857 |EB | 10.37 | 11.12 | |V | | | | | |72043 72044| +190879 |V0879 Cen |131905.2-643731 |M | 6.8 | 9.2 | |K | | | | | |72036 2MASS| +190880 |V0880 Cen |132223.1-625110 |CEP | 12.44 | 12.89 | |I | | | | | |72042 UCAC2| +190881 |V0881 Cen |132721.7-630110 |CEP | 10.26 | 10.93 | |I | | | | | |72042 GSC | +190882 |V0882 Cen |133543.5-624003 |CEP | 11.56 | 11.79 | |I | | | | | |72042 UCAC2| +190883 |V0883 Cen |140856.3-591636 |E | 6.40 | 6.63 | |b | | | | | |72040 CPD | +190884 |V0884 Cen |143330.6-602332 |M | 7.93 |( 1.71 )| |H | | | | | |72036 2MASS| +190885 |V0885 Cen |114058.8-553426 |* | 7.60 | 7.95 | |U | | | | | |73084 CPD | +190888 |V0888 Cen |130231.8-601137 |NA | 7.59 |< 15.0 | |V | | | | | |73088 USNO | +190889 |V0889 Cen |132659.8-620149 |ELL | 11.65 | 11.81 | |V | | | | | |73089 73090| +190892 |V0892 Cen |135548.0-514300 |EA+ACV: | 9.47 | 9.95 | |V | | | | | |73091 CoD | +190893 |V0893 Cen |140029.3-624709 |ZAND: | 5.57 | 6.35 | |K | | | | | |73092 73092| +190896 |V0896 Cen |143744.1-594553 |DSCTC | 8.4 |( 0.02 )| |V | | | | | |73067 CPD | +190897 |V0897 Cen |111021.4-360543 |LB: | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +190898 |V0898 Cen |111120.4-543325 |DCEPS: | 7.93 | 8.21 | |Hp| | | | | |HIP HIP | +190899 |V0899 Cen |111127.4-485106 |LB: | 8.20 | 8.33 | |Hp| | | | | |HIP HIP | +190900 |V0900 Cen |111317.5-500721 |E | 6.95 | 6.99 | |Hp| | | | | |HIP HIP | +190901 |V0901 Cen |111403.3-513256 |EW: | 11.94 | 12.31 | |Hp| | | | | |HIP HIP | +190902 |V0902 Cen *|111556.4-484127 |E: | 12.20 | 12.75 | |Hp| | | | | |HIP HIP | +190903 |V0903 Cen |111921.2-450536 |SRC | 7.57 | 7.83 | |Hp| | | | | |HIP HIP | +190904 |V0904 Cen |112034.2-355901 |LB: | 8.47 | 8.58 | |Hp| | | | | |HIP HIP | +190905 |V0905 Cen |112121.9-554547 |LB: | 10.49 | 10.68 | |Hp| | | | | |HIP HIP | +190906 |V0906 Cen |112158.8-610146 |LPB: | 9.57 | 9.71 | |Hp| | | | | |HIP HIP | +190907 |V0907 Cen |112219.7-610425 |BE | 9.03 | 9.30 | |V | | | | | |HIP HIP | +190908 |V0908 Cen |113304.8-444614 |SRB | 7.80 | 7.95 | |Hp| | | | | |HIP HIP | +190909 |V0909 Cen |113413.7-543320 |SRB | 7.73 | 7.86 | |Hp| | | | | |HIP HIP | +190910 |V0910 Cen |113545.0-613441 |LC | 7.19 | 7.34 | |Hp| | | | | |HIP HIP | +190911 |V0911 Cen |113609.4-614142 |GCAS: | 9.00 | 9.45 | |Hp| | | | | |HIP HIP | +190912 |V0912 Cen |113732.6-392132 |LB | 6.81 | 6.98 | |Hp| | | | | |HIP HIP | +190913 |V0913 Cen |113734.1-605412 |LB | 6.19 | 6.45 | |Hp| | | | | |HIP HIP | +190914 |V0914 Cen |114042.5-535807 |LB | 5.99 | 6.12 | |Hp| | | | | |HIP HIP | +190915 |V0915 Cen *|114155.0-634743 |ACV: | 8.00 | 8.05 | |Hp| | | | | |HIP HIP | +190916 |V0916 Cen |114225.4-622838 |BE | 8.61 | 8.83 | |Hp| | | | | |HIP HIP | +190917 |V0917 Cen |114409.0-453443 |SRD | 8.28 | 8.37 | |Hp| | | | | |HIP HIP | +190918 |V0918 Cen |114719.1-574147 |SRD: | 5.49 | 5.56 | |Hp| | | | | |HIP HIP | +190919 |V0919 Cen |114839.2-355913 |SRB: | 6.07 | 6.64 | |Hp| | | | | |HIP HIP | +190920 |V0920 Cen |114924.5-602533 |LB | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +190921 |V0921 Cen *|115023.4-354547 |SRB: | 9.57 | 10.01 | |Hp| | | | | |HIP HIP | +190922 |V0922 Cen |115113.0-615046 |ACYG: | 6.57 | 6.64 | |Hp| | | | | |HIP HIP | +190923 |V0923 Cen |115142.9-610930 |LC | 7.60 | 7.95 | |Hp| | | | | |HIP HIP | +190924 |V0924 Cen |115426.7-565811 |SRB | 6.89 | 7.05 | |Hp| | | | | |HIP HIP | +190925 |V0925 Cen |115743.0-373902 |SRB | 8.60 | 8.76 | |Hp| | | | | |HIP HIP | +190926 |V0926 Cen |121555.6-540325 |SRB | 6.67 | 6.73 | |Hp| | | | | |HIP HIP | +190927 |V0927 Cen |122921.0-381550 |LB | 9.05 | 9.44 | |Hp| | | | | |HIP HIP | +190928 |V0928 Cen |122957.9-414409 |SRB | 6.01 | 6.08 | |Hp| | | | | |HIP HIP | +190929 |V0929 Cen |123000.5-425547 |LB: | 6.76 | 6.79 | |Hp| | | | | |HIP HIP | +190930 |V0930 Cen |123037.7-361423 |LB: | 8.54 | 8.67 | |Hp| | | | | |HIP HIP | +190931 |V0931 Cen |123246.3-380437 |LB: | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +190932 |V0932 Cen |123305.8-373849 |LB | 9.07 | 9.34 | |Hp| | | | | |HIP HIP | +190933 |V0933 Cen *|123426.0-452346 |LB: | 8.61 | 8.71 | |Hp| | | | | |HIP HIP | +190934 |V0934 Cen |123608.2-334446 |SRB | 7.84 | 7.96 | |Hp| | | | | |HIP HIP | +190935 |V0935 Cen |123939.0-445536 |LB | 8.11 | 8.24 | |Hp| | | | | |HIP HIP | +190936 |V0936 Cen |124202.1-375637 |SRB | 8.41 | 8.68 | |Hp| | | | | |HIP HIP | +190937 |V0937 Cen |124313.3-360040 |LB: | 8.53 | 8.58 | |Hp| | | | | |HIP HIP | +190938 |V0938 Cen |124330.4-411918 |LB: | 7.16 | 7.22 | |Hp| | | | | |HIP HIP | +190939 |V0939 Cen |124614.1-435955 |LB: | 8.25 | 8.38 | |Hp| | | | | |HIP HIP | +190940 |V0940 Cen |124751.9-512638 |BY: | 9.59 | 9.73 | |Hp| | | | | |HIP HIP | +190941 |V0941 Cen |124954.6-341824 |LB: | 8.87 | 8.95 | |Hp| | | | | |HIP HIP | +190942 |V0942 Cen |125144.7-310501 |LB | 7.21 | 7.32 | |Hp| | | | | |HIP HIP | +190943 |V0943 Cen |125150.6-311207 |ACV | 6.93 | 6.98 | |Hp| | | | | |HIP HIP | +190944 |V0944 Cen |125642.1-384840 |LB: | 9.23 | 9.42 | |Hp| | | | | |HIP HIP | +190945 |V0945 Cen |125704.3-511156 |LPB | 5.14 | 5.16 | |Hp| | | | | |HIP HIP | +190946 |V0946 Cen |130134.9-604017 |BE | 7.33 | 7.46 | |Hp| | | | | |HIP HIP | +190947 |V0947 Cen |130506.7-470701 |DSCTC: | 6.52 | 6.55 | |Hp| | | | | |HIP HIP | +190948 |V0948 Cen |130637.6-643337 |EB: | 9.01 | 9.29 | |Hp| | | | | |HIP HIP | +190949 |V0949 Cen |130712.8-542000 |EA | 9.15 | 9.52 | |Hp| | | | | |HIP HIP | +190950 |V0950 Cen |130838.4-543652 |DSCTC | 7.82 | 7.85 | |Hp| | | | | |HIP HIP | +190951 |V0951 Cen |131114.3-390008 |LB: | 8.49 | 8.64 | |Hp| | | | | |HIP HIP | +190952 |V0952 Cen |131129.5-552125 |BE | 8.02 | 8.11 | |Hp| | | | | |HIP HIP | +190953 |V0953 Cen |131152.4-524844 |LB | 6.99 | 7.14 | |Hp| | | | | |HIP HIP | +190954 |V0954 Cen |131249.9-613242 |DSCT | 7.29 | 7.40 | |Hp| | | | | |HIP HIP | +190955 |V0955 Cen |131411.5-632225 |BE | 7.93 | 8.04 | |Hp| | | | | |HIP HIP | +190956 |V0956 Cen |131408.3-544135 |SRD: | 8.31 | 8.58 | |Hp| | | | | |HIP HIP | +190957 |V0957 Cen |131436.4-312511 |SRB | 11.11 | 11.78 | |Hp| | | | | |HIP HIP | +190958 |V0958 Cen |131440.7-383906 |BE | 7.09 | 7.16 | |Hp| | | | | |HIP HIP | +190959 |V0959 Cen |131510.0-605801 |GCAS | 9.67 | 10.00 | |Hp| | | | | |HIP HIP | +190960 |V0960 Cen |131554.9-561931 |E | 9.51 | 9.82 | |Hp| | | | | |HIP HIP | +190961 |V0961 Cen |131604.8-623502 |ELL: | 7.99 | 8.08 | |Hp| | | | | |HIP HIP | +190962 |V0962 Cen |131547.0-420318 |LB: | 8.29 | 8.40 | |Hp| | | | | |HIP HIP | +190963 |V0963 Cen |131844.4-581601 |E: | 8.69 | 8.79 | |Hp| | | | | |HIP HIP | +190964 |V0964 Cen |132037.8-524452 |EB | 5.40 | 5.44 | |Hp| | | | | |HIP HIP | +190965 |V0965 Cen |132255.6-620044 |ACYG: | 8.01 | 8.10 | |Hp| | | | | |HIP HIP | +190966 |V0966 Cen |132547.8-481458 |RS: | 9.84 | 9.94 | |Hp| | | | | |HIP HIP | +190967 |V0967 Cen |132725.1-623856 |BE: | 7.50 | 7.70 | |Hp| | | | | |HIP HIP | +190968 |V0968 Cen |132903.9-585632 |ACV | 8.10 | 8.16 | |Hp| | | | | |HIP HIP | +190969 |V0969 Cen |132934.3-611136 |LPB: | 10.03 | 10.25 | |Hp| | | | | |HIP HIP | +190970 |V0970 Cen |133214.3-615926 |LB | 8.47 | 8.73 | |Hp| | | | | |HIP HIP | +190971 |V0971 Cen |133241.7-534952 |LB | 8.51 | 8.69 | |Hp| | | | | |HIP HIP | +190972 |V0972 Cen |133330.1-621901 |WR | 10.42 | 10.64 | |Hp| | | | | |HIP HIP | +190973 |V0973 Cen |133338.9-303755 |LB: | 8.94 | 9.10 | |Hp| | | | | |HIP HIP | +190974 |V0974 Cen |133646.7-322413 |ELL: | 7.67 | 7.71 | |Hp| | | | | |HIP HIP | +190975 |V0975 Cen |133854.1-550128 |E: | 7.41 | 7.50 | |Hp| | | | | |HIP HIP | +190976 |V0976 Cen |133927.9-635908 |ACV: | 9.38 | 9.50 | |Hp| | | | | |HIP HIP | +190977 |V0977 Cen |134602.9-332803 |LB: | 8.87 | 8.97 | |Hp| | | | | |HIP HIP | +190978 |V0978 Cen |134617.6-470922 |LB | 7.65 | 7.79 | |Hp| | | | | |HIP HIP | +190979 |V0979 Cen |134756.8-635144 |EB | 7.49 | 7.61 | |Hp| | | | | |HIP HIP | +190980 |V0980 Cen |134730.9-460940 |LB | 8.05 | 8.30 | |Hp| | | | | |HIP HIP | +190981 |V0981 Cen |135108.9-303358 |LB | 8.18 | 8.38 | |Hp| | | | | |HIP HIP | +190982 |V0982 Cen |135117.8-392818 |BY: | 9.60 | 9.85 | |Hp| | | | | |HIP HIP | +190983 |V0983 Cen |135149.6-325939 |E: | 4.27 | 4.32 | |Hp| | | | | |HIP HIP | +190984 |V0984 Cen |135207.8-412733 |SRB | 8.28 | 8.45 | |Hp| | | | | |HIP HIP | +190985 |V0985 Cen |135341.0-444953 |LB: | 8.29 | 8.41 | |Hp| | | | | |HIP HIP | +190986 |V0986 Cen |135544.1-415942 |LB | 6.69 | 6.79 | |Hp| | | | | |HIP HIP | +190987 |V0987 Cen |135757.8-595305 |BE | 8.80 | 8.90 | |Hp| | | | | |HIP HIP | +190988 |V0988 Cen |135734.0-313911 |BY: | 9.77 | 10.02 | |Hp| | | | | |HIP HIP | +190989 |V0989 Cen |135852.2-474825 |LB: | 7.45 | 7.55 | |Hp| | | | | |HIP HIP | +190990 |V0990 Cen |140121.9-371953 |LB | 7.37 | 7.60 | |Hp| | | | | |HIP HIP | +190991 |V0991 Cen |140448.1-343347 |LB: | 9.15 | 9.30 | |Hp| | | | | |HIP HIP | +190992 |V0992 Cen |140546.5-544010 |EB: | 6.23 | 6.32 | |Hp| | | | | |HIP HIP | +190993 |V0993 Cen |140719.3-632608 |ACV | 8.87 | 8.91 | |Hp| | | | | |HIP HIP | +190994 |V0994 Cen |140733.5-541550 |SRD: | 8.26 | 8.38 | |Hp| | | | | |HIP HIP | +190995 |V0995 Cen |141052.2-391109 |LB: | 8.63 | 8.87 | |Hp| | | | | |HIP HIP | +190996 |V0996 Cen |141407.3-535555 |LB | 7.01 | 7.37 | |Hp| | | | | |HIP HIP | +190997 |V0997 Cen |141433.7-614756 |LPB: | 9.44 | 9.70 | |Hp| | | | | |HIP HIP | +190998 |V0998 Cen |141417.2-475025 |LB: | 9.07 | 9.23 | |Hp| | | | | |HIP HIP | +190999 |V0999 Cen |141741.3-604719 |LPB: | 9.03 | 9.15 | |Hp| | | | | |HIP HIP | +191000 |V1000 Cen |141909.4-565518 |E | 8.40 | 8.65 | |Hp| | | | | |HIP HIP | +191001 |V1001 Cen |141909.0-555256 |IA: | 7.24 | 7.42 | |Hp| | | | | |HIP HIP | +191002 |V1002 Cen |141944.3-365130 |LB | 6.48 | 6.98 | |Hp| | | | | |HIP HIP | +191003 |V1003 Cen |142252.2-555744 |LC: | 7.47 | 7.74 | |Hp| | | | | |HIP HIP | +191004 |V1004 Cen |142226.4-383855 |LB | 8.86 | 9.12 | |Hp| | | | | |HIP HIP | +191005 |V1005 Cen |142825.1-393229 |SRB | 7.98 | 8.13 | |Hp| | | | | |HIP HIP | +191006 |V1006 Cen |142906.4-603847 |SRB | 8.59 | 8.81 | |Hp| | | | | |HIP HIP | +191007 |V1007 Cen |143148.0-383330 |SRB: | 8.11 | 8.29 | |Hp| | | | | |HIP HIP | +191008 |V1008 Cen |143336.8-584915 |BE | 7.70 | 7.77 | |Hp| | | | | |HIP HIP | +191009 |V1009 Cen |143325.8-343238 |BY: | 10.24 | 10.43 | |Hp| | | | | |HIP HIP | +191010 |V1010 Cen |143429.3-641207 |GCAS | 8.93 | 9.23 | |Hp| | | | | |HIP HIP | +191011 |V1011 Cen |143810.2-624304 |LB: | 8.47 | 8.64 | |Hp| | | | | |HIP HIP | +191012 |V1012 Cen |144005.5-595553 |BE | 9.10 | 9.16 | |Hp| | | | | |HIP HIP | +191013 |V1013 Cen |143928.3-313936 |LB | 9.01 | 9.18 | |Hp| | | | | |HIP HIP | +191014 |V1014 Cen |144236.4-324335 |I: | 11.52 | 12.24 | |Hp| | | | | |HIP HIP | +191015 |V1015 Cen *|144308.9-302133 |CEP: | 8.64 | 8.78 | |Hp| | | | | |HIP HIP | +191016 |V1016 Cen |144508.2-384517 |LB: | 8.42 | 8.54 | |Hp| | | | | |HIP HIP | +191017 |V1017 Cen |144753.6-321450 |LB | 7.59 | 7.79 | |V | | | | | |HIP HIP | +191018 |V1018 Cen |145157.6-404821 |LPB: | 7.89 | 7.98 | |Hp| | | | | |HIP HIP | +191019 |V1019 Cen |145251.1-374811 |LPB | 4.96 | 4.98 | |Hp| | | | | |HIP HIP | +191020 |V1020 Cen |145612.0-352316 |LB | 8.77 | 8.92 | |Hp| | | | | |HIP HIP | +191021 |V1021 Cen |150019.1-375214 |SRB | 8.46 | 8.64 | |Hp| | | | | |HIP HIP | +191022 |V1022 Cen |150234.8-413425 |RR: | 8.33 | 8.38 | |Hp| | | | | |HIP HIP | +191023 |V1023 Cen |114759.8-401730 |DSCTC | 7.94 |( 0.05 v )| |V | | | | | |75081 CoD | +191024 |V1024 Cen |122015.1-535531 |SRD: | 9.36 |( 0.10 )| |V | | | | | |75082 CPD | +191026 |V1026 Cen |125150.8-520743 |GDOR | 9.33 | 9.38 | |Hp| | | | | |75029 CoD | +191028 |V1028 Cen |130117.8-485319 |BE | 10.52 | 10.70 | |Hp| | | | | |75084 CoD | +191029 |V1029 Cen |131806.9-634114 |ACYG | 7.86 | 7.95 | |Hp| | | | | |75030 CPD | +191030 |V1030 Cen |132801.7-472319 |DSCTC: | 9.28 |( 0.03 )| |V | | | | | |75085 CoD | +191031 |V1031 Cen |134205.0-303456 |M | 12.4 | 14.5 | |p | | | | | |75002 GSC | +191032 |V1032 Cen |140810.3-412353 |IT | 12.05 | 12.19 | |V | | | | | |75086 CoD | +191034 |V1034 Cen |143501.3-602332 |DSCTC | 9.14 |( 0.03 )| |B | | | | | |76009 DM | +191035 |V1035 Cen |143521.5-622240 |DSCTC | 9.18 |( 0.02 )| |B | | | | | |76009 DM | +191036 |V1036 Cen |143639.7-623342 |DSCTC | 10.03 |( 0.02 )| |B | | | | | |76009 DM | +191037 |V1037 Cen |145650.5-300534 |M | 12.0 | 14.9 | |V | | | | | |76054 GSC | +191039 |V1039 Cen |135541.2-641557 |NA | 9.11 |< 20. | |V | | | | | |77111 | +191040 |V1040 Cen |115527.0-564153 |UG | 12.5 |< 14.6 | |V | | | | | |77098 USNO | +191041 |V1041 Cen |124908.8-411226 |DSCTC | 12.4 |( 0.02 )| |V | | | | | |77101 GSC | +191042 |V1042 Cen |125001.1-520126 |M | 8.9 | 12.7 | |R | | | | | |77102 77219| +191044 |V1044 Cen |131601.4-370011 |ZAND | 10.7 | 11.7 | |V | | | | | |77109 DM | +191047 |V1047 Cen |132049.7-623751 |N | 8.8 |< 11.0 | |V | | | | | |78261 | +191048 |V1048 Cen *|112842.7-592543 |CEP(B) | 9.57 | 9.83 | |I | | | 0.922405 | |F8 |78147 DM | +191049 |V1049 Cen |113717.6-503023 |SRA | 10.7 | 11.9 | |V |53387 | | 82. | |Me |78090 78150| +191050 |V1050 Cen |113743.2-440431 |M | 10.4 | 14.5 | |V |52850 | | 240. | |Me |78090 78289| +191051 |V1051 Cen |113748.4-631924 |EA | 7.13 | 7.24 | |V |47964.840 | | 9.64645 | |O6.5V(f)+O8.5V |78011 DM | +191052 |V1052 Cen |113944.5-601028 |IA | 8.97 | 9.56 | |V | | | | |B9.5V |78038 DM | +191053 |V1053 Cen *|122858.3-341502 |EW | 11.80 | 12.65 | 12.57 |V |51905.805 | | 0.323464 | | |78011 DM | +191054 |V1054 Cen *|123249.0-354142 |EW | 11.20 | 12.20 | 12.18 : |V |52454.529 | | 0.3483075 | | |78011 DM | +191055 |V1055 Cen |124540.4-474005 |M | 12.0 |< 15.0 | |V |52075 | | 272.7 | |Me |78090 USNO | +191056 |V1056 Cen |125844.7-423043 |M | 10.4 |< 11.5 | |V |53176 | | 353. | |Me |78090 GSC | +191057 |V1057 Cen *|131238.2-632232 |EW | 12.4 | 12.8 | 12.7 |V |53523.6052 | | 0.451682 | | |78166 78166| +191058 |V1058 Cen |131311.0-632331 |IS | 11.8 |( 0.2 * )| |R | | | | | |78166 78166| +191059 |V1059 Cen *|134301.3-483622 |M | 11.2 |< 15.0 | |V |52724 | | 259. | |Me |78090 GSC | +191060 |V1060 Cen |134932.1-462611 |SRA: | 10.6 |< 11.5 | |V |52660 | | 363. | |Me |78090 GSC | +191061 |V1061 Cen *|141456.8-611418 |EA | 9.55 | 9.71 | 9.61 |V |52738.708 | | 2.20957 |11 |B2V |78011 DM | +191062 |V1062 Cen |143028.1-630746 |M | 11.0 |< 14.5 | |V |52503 | | 265.7 | |Me |78130 78174| +191063 |V1063 Cen |144126.5-354738 |DSCTC | 10.71 |( 0.02 )| |B | | | 0.050 | |A2 |78176 DM | +191066 |V1066 Cen |110638.3-491800 |SR | 11.5 | 12.6 | |V |53726. | | 104. | |M5e |79100 GSC | +191067 |V1067 Cen |110714.9-441134 |M | 10.8 |< 14.8 | |V |52656. | | 331. | | |79064 USNO | +191069 |V1069 Cen |110725.8-424631 |M | 11.0 |< 14.4 | |V |53757. | | 170. | |Me |79064 GSC | +191071 |V1071 Cen |111207.6-373438 |EA | 9.68 | 10.23 | 10.03 : |V |51966.704 | | 2.69535 |06 |A5 |79011 DM | +191072 |V1072 Cen |111213.3-551700 |M | 11.8 |< 14.7 | |V |53482. | | 197. | |M8 |79064 GSC | +191073 |V1073 Cen |111232.6-473341 |M | 11.4 |< 14.8 | |V |53751. | | 340. | |Me |79072 GSC | +191074 |V1074 Cen |111237.1-562016 |EA | 11.4 |< 12.0 | 12.1 |V |51947.689 | | 2.4255 |09 |A |79064 DM | +191075 |V1075 Cen |111339.4-472723 |M | 10.9 | 14.7 | |V |53564. | | 202. | | |79064 GSC | +191076 |V1076 Cen |111422.4-424020 |M | 11.9 |< 14.9 | |V |53832. | | 318. | |Me |79072 GSC | +191077 |V1077 Cen |111459.9-422827 |M | 11.6 |< 14.6 | |V |53391. | | 273. | | |79072 GSC | +191078 |V1078 Cen |111641.6-423810 |EA | 11.96 | 12.66 | 12.11 |V |52736.612 | | 1.81033 |12 | |79018 DM | +191079 |V1079 Cen |111735.4-513740 |M | 10.2 |< 14.6 | |V |53423. | | 278. | |Me |79072 GSC | +191080 |V1080 Cen |111806.6-460851 |M | 11.0 | 14.8 | |V |53870. | | 138. | |Me |79100 GSC | +191081 |V1081 Cen |112158.3-492855 |M | 11.2 |< 15.0 | |V |53745. | | 276. | | |79072 USNO | +191082 |V1082 Cen |112205.5-471733 |EA | 12.32 | 13.6 | 12.45 : |V |52934.800 | | 2.63205 |13 | |79018 79087| +191083 |V1083 Cen |112508.3-603128 |LB | 12.0 | 12.6 | |V | | | | |M6 |79100 GSC | +191084 |V1084 Cen |112612.2-512138 |SRB | 8.85 | 10.55 | |V | | | 135. | | |79100 DM | +191085 |V1085 Cen |112646.2-504714 |M | 12.3 | 17.1 : | |V |52963. | | 360. : | | |79072 USNO | +191086 |V1086 Cen *|112818.5-491500 |M | 11.2 |< 13.2 | |V |52835. | | 145. | |Me |79072 GSC | +191087 |V1087 Cen *|112852.0-625552 |EA | 9.34 | 9.52 | 9.50 |V |50563.528 | | 5.04913 |09 |O9V |79218 DM | +191088 |V1088 Cen |112855.8-534300 |SRB | 9.45 | 10.00 | |V | | | 83. | |M9 |79100 DM | +191089 |V1089 Cen *|113148.7-604136 |EA | 7.88 | 7.96 | 7.95 |V |48502.854 | | 5.48793 |06 |B9.5V |79006 DM | +191090 |V1090 Cen |113202.0-442301 |M | 11.7 | 14.4 | |V |53894. | | 222. | | |79064 GSC | +191091 |V1091 Cen |113329.1-533713 |M | 11.5 |< 14.5 | |V |53523. | | 262. | | |79100 USNO | +191092 |V1092 Cen |113626.2-611910 |LC | 7.60 | 8.05 | |V | | | | |M2.5Iab-Ib |79100 DM | +191093 |V1093 Cen |113626.7-593057 |EA | 12.1 | 12.8 | 12.8 |V |52676.759 | | 4.07612 |06 | |79100 GSC | +191094 |V1094 Cen *|113633.8-463007 |EB | 9.90 | 10.45 | 10.16 |V |51869.90 | | 0.97772 | |A4 |79064 DM | +191095 |V1095 Cen *|114148.8-515229 |M: | 12.0 |< 13.6 | |V |53895. | | 336. | | |79064 USNO | +191096 |V1096 Cen |114248.4-514609 |SRB | 9.5 | 11.2 | |V | | | 64. | | |79064 DM | +191097 |V1097 Cen |114659.8-622829 |EB | 11.7 | 12.7 | 12.1 |V |53034.7643 | | 0.91093 | | |79064 GSC | +191099 |V1099 Cen |114720.2-615458 |EB | 10.90 | 11.95 | 11.35 |V |52425.5314 | | 1.25094 | |B5 |79064 79090| +191100 |V1100 Cen *|114753.8-634459 |M | 11.7 |< 14.6 | |V |53516. | | 345. | |M6 |79072 GSC | +191101 |V1101 Cen |114914.5-461323 |EA | 8.13 | 8.55 | 8.46 |V |52434.486 | | 5.0323 |11 |F5V |79011 DM | +191102 |V1102 Cen |114930.1-354654 |SRB | 11.1 | 12.1 | |V | | | 83. | | |79100 DM | +191104 |V1104 Cen *|115142.7-625311 |EB | 9.91 | 10.27 | 10.19 |V |51971.701 | | 0.876112 | |B5 |79011 DM | +191105 |V1105 Cen |115408.7-541017 |SRB | 9.8 | 10.8 | |V | | | 59. | | |79100 DM | +191106 |V1106 Cen |115512.9-565221 |EB | 12.25 | 13.1 | 12.50 |V |52726.8976 | | 1.22383 | | |79064 79071| +191107 |V1107 Cen |115903.5-523506 |SRA | 11.6 | 13.7 | |V |53877. | | 157. | | |79100 GSC | +191108 |V1108 Cen |120012.7-421204 |SRA | 12.3 | 14.5 | |V |53743. | | 128. | | |79100 GSC | +191109 |V1109 Cen |120046.1-402116 |EA | 9.58 | 10.23 | 10.1 : |V |52414.567 | | 3.3370 |07 |A7/8V |79011 DM | +191110 |V1110 Cen |120347.8-531648 |M | 12.0 |< 14.6 | |V |53707. | | 348.8 | | |79064 GSC | +191111 |V1111 Cen |120540.0-354518 |SRB | 10.8 | 11.8 | |V | | | 59. | | |79064 DM | +191113 |V1113 Cen |120646.9-501926 |M | 11.1 | 14.0 | |V |53862. | | 127.8 | |Me |79064 GSC | +191116 |V1116 Cen |121103.3-504023 |EA | 11.72 | 13.7 | 11.85 |V |52759.622 | | 1.95074 |14 | |79018 DM | +191117 |V1117 Cen |121157.6-505042 |EA | 11.5 | 13.1 | 11.7 |V |53835.669 | | 1.135683 |15 | |79064 DM | +191118 |V1118 Cen |121643.0-455203 |EA | 9.55 | 10.1 : | 9.9 : |V |47945.451 | | 11.30489 |02 : |G3V |79004 DM | +191119 |V1119 Cen *|121656.8-451207 |EA | 9.49 | 9.89 | 9.82 |V |52106.482 | | 5.90859 |05 |A8/9IV |79011 DM | +191121 |V1121 Cen |122338.7-342413 |EA | 10.80 | 11.60 | 10.97 |V |52710.707 | | 0.996386 |18 | |79003 DM | +191122 |V1122 Cen |122403.0-414908 |SRB | 10.5 | 11.6 | |V | | | 177. | | |79064 DM | +191123 |V1123 Cen |122453.5-470908 |SRD | 7.84 | 8.04 | |V |53582. | | 60.6 | |F3Ib |79093 79093| +191124 |V1124 Cen |122636.6-522525 |M | 10.8 |< 14.5 | |V |53418. | | 305. | |S7,8e |79064 GSC | +191125 |V1125 Cen |122901.2-475739 |SRB | 10.6 | 11.9 | |V | | | 110. | | |79100 79078| +191126 |V1126 Cen |123254.5-543854 |LB | 9.85 | 10.14 | |V | | | | | |79100 DM | +191127 |V1127 Cen |123352.8-344958 |SRB | 10.8 | 11.8 | |V | | | 68. | | |79064 DM | +191128 |V1128 Cen |123514.7-353650 |LB | 12.0 | 12.9 | |V | | | | | |79100 GSC | +191129 |V1129 Cen *|123907.9-453344 |EB+* | 9.1 | 9.85 | 9.75 |V |52491.552 | | 0.893025 | |F0IV-III |79156 DM | +191131 |V1131 Cen |124156.6-501612 |M | 11.4 |< 15.0 | |V |53893. | | 232. | |Me |79064 USNO | +191133 |V1133 Cen *|124315.0-334102 |EA | 9.56 | 9.78 | 9.60 |V |52064.518 | | 1.270335 |17 |G8IV CNIII |79003 DM | +191135 |V1135 Cen |124800.5-440120 |M | 11.0 |< 15.0 | |V |53863. | | 260. | |Me |79064 GSC | +191136 |V1136 Cen |124933.0-552340 |M | 11.8 |< 14.4 | |V |53873. | | 229. | | |79064 USNO | +191141 |V1141 Cen |125700.3-333007 |LB | 9.3 | 9.9 | |V | | | | |K5 |79100 DM | +191142 |V1142 Cen *|125814.9-625808 |EA | 11.67 | 12.43 | 12.30 |V |52755.618 | | 2.52480 |07 |A |79100 79071| +191143 |V1143 Cen |125908.5-314155 |LB | 10.9 | 11.9 | |V | | | | | |79100 DM | +191144 |V1144 Cen |125914.9-315642 |EA | 11.97 | 12.7 | 12.26 |V |53133.814 | | 1.069415 |11 | |79003 DM | +191146 |V1146 Cen |130050.1-643751 |SRA | 10.5 | 12.0 | |V |53044. | | 299. | |C |79064 GSC | +191147 |V1147 Cen |130057.6-491212 |UGSS: | 11.0 | 13.7 | |V | | | (38.) | | |79237 79071| +191148 |V1148 Cen |130144.9-504217 |M | 10.8 |< 14.4 | |V |53776. | | 287. | | |79064 USNO | +191149 |V1149 Cen |130154.9-504045 |EA | 11.24 | 13.05 | 11.43 |V |52738.740 | | 3.5116 |14 | |79018 DM | +191150 |V1150 Cen |130238.4-470716 |SRA | 11.5 | 13.6 | |V |53799. | | 151. | | |79064 GSC | +191151 |V1151 Cen |130314.9-483029 |M | 10.6 |< 14.5 | |V |53760. | | 192. | |Me |79064 USNO | +191152 |V1152 Cen |130351.0-640600 |LB | 8.2 | 9.1 | |V | | | | |M6III |79100 DM | +191153 |V1153 Cen |130436.0-614017 |EA | 9.68 | 10.22 | 10.13 |V |53153.621 | | 5.97872 |07 |B0V |79003 DM | +191154 |V1154 Cen |130530.8-520656 |SRS | 6.33 | 6.58 | |V | | | 21.8 | |M1III |79190 DM | +191155 |V1155 Cen *|130617.9-482746 |BY | 10.90 |( 0.05 )| |V | | | 8.1 : | |K0Ve |79147 2MASS| +191156 |V1156 Cen |130626.5-382317 |EA | 10.30 | 11.02 | 10.99 |V |52116.460 | | 1.04222 |17 |A1/2V |79018 DM | +191157 |V1157 Cen |130633.9-423234 |M | 10.6 : |< 14. | |V |53591. | | 195. | | |79064 GSC | +191159 |V1159 Cen |131044.1-471719 |M | 11.4 |< 14.7 | |V |53089. | | 280. | |Me |79064 GSC | +191160 |V1160 Cen |131106.7-541000 |EA | 8.63 | 8.80 | 8.78 |V |53183.610 | | 10.35420 |02 |B7V |79003 DM | +191161 |V1161 Cen |131209.1-395444 |SRA | 11.0 | 12.2 | |V |53101. | | 328. | | |79064 GSC | +191163 |V1163 Cen |131225.6-570001 |SRB | 9.0 | 9.2 | |V | | | 46.2 | |S5,4 |79064 DM | +191164 |V1164 Cen |131300.3-483050 |LB | 12.5 | 14.2 | |V | | | | | |79100 GSC | +191165 |V1165 Cen |131446.4-555853 |SRB | 9.05 | 10.95 | |V | | | 106.8 | | |79064 GSC | +191166 |V1166 Cen *|131551.3-635303 |EA | 8.77 | 8.98 | 8.87 |V |51955.858 | | 13.4197 |04 : |B1/2V |79006 DM | +191169 |V1169 Cen |131830.8-623945 |EA | 10.44 | 10.67 | 10.65 |V |51985.818 | | 11.0385 |03 |B3-B5 |79006 DM | +191170 |V1170 Cen |131902.6-470721 |M | 12.0 |< 15.1 | |V |53737. | | 358. | |Me |79064 USNO | +191171 |V1171 Cen |132035.5-632443 |BE | 9.05 | 9.32 | |V | | | | |B2/4III/IVe |79100 DM | +191172 |V1172 Cen |132137.6-613415 |LB | 8.4 | 8.7 | |V | | | | |K-M |79100 DM | +191173 |V1173 Cen |132142.9-604947 |SRB | 11.0 | 11.9 | |V | | | 204. | |M7 |79064 79010| +191174 |V1174 Cen |132149.9-615703 |BE | 10.5 | 10.9 | |V | | | | |B5e |79100 GSC | +191175 |V1175 Cen |132228.7-455330 |EA | 11.81 | 12.61 | 12.03 |V |52793.568 | | 0.740645 |21 | |79018 GSC | +191176 |V1176 Cen *|132301.8-622632 |EA | 10.09 | 10.36 | 10.30 |V |53474.580 | | 31.029 |06 |B1Ia |79009 DM | +191177 |V1177 Cen |132418.2-371701 |EA | 9.08 | 9.44 : | 9.42 : |V |52014.643 | | 5.7945 |05 |G5V |79018 DM | +191178 |V1178 Cen |132453.5-394403 |EA | 11.70 | 13.8 | 11.83 |V |53106.757 | | 2.13185 |10 | |79003 79091| +191180 |V1180 Cen *|132629.2-642951 |M | 11.0 |< 13.1 | |V |53539. | | 218. | |M6 |79064 2MASS| +191181 |V1181 Cen |132745.4-374659 |RRAB | 12.4 | 13.5 | |V |52657.828 | | 0.548042 |11 | |79064 GSC | +191183 |V1183 Cen |132851.5-320009 |LB | 9.3 | 10.4 | |V | | | | |M6 |79100 DM | +191187 |V1187 Cen |132914.4-441403 |SRB | 9.0 | 9.9 | |V | | | 65. | |M3 |79100 DM | +191190 |V1190 Cen |133514.8-435022 |SRB | 10.6 | 12.6 | |V | | | 128. | | |79100 79233| +191192 |V1192 Cen |133736.8-381145 |M | 12.0 |< 14.3 | |V |53093. | | 305. | | |79190 USNO | +191193 |V1193 Cen |133807.8-392953 |SRA | 12.1 | 14.3 | |V |53507. | | 159. | | |79064 GSC | +191194 |V1194 Cen *|133834.6-494259 |EB | 9.71 | 9.93 | 9.87 |V |51984.818 | | 0.793856 | |A6IV |79018 DM | +191195 |V1195 Cen |133939.4-404927 |LB | 10.4 | 11.5 | |V | | | | | |79100 DM | +191197 |V1197 Cen *|134038.0-632230 |DCEP | 12.4 | 12.9 | |V |54301.57 | | 5.555 |25 | |79064 USNO | +191198 |V1198 Cen *|134051.6-625247 |EA | 8.66 | 8.80 | 8.73 : |V |48966.453 | | 6.50404 |06 |B6II/III |79003 DM | +191199 |V1199 Cen |134522.9-355616 |SRA: | 12.2 | 14.0 | |V |53755. | | 202. | | |79064 GSC | +191200 |V1200 Cen |135217.5-383717 |EA | 8.44 | 8.70 | 8.51 |V |48509.652 | | 2.482874 |05 |F5V |79011 DM | +191201 |V1201 Cen |135558.2-302936 |SRB | 9.6 | 10.4 | |V | | | 164. | |Me |79064 DM | +191202 |V1202 Cen *|135920.1-622737 |EA | 8.42 | 8.62 | 8.62 : |V |47917.350 | | 15.5543 |02 : |B9V |79018 DM | +191203 |V1203 Cen |141148.0-620135 |EB | 7.67 | 7.80 | 7.72 |V |48433.960 | | 2.67096 | |B4/5III/IV |79009 DM | +191204 |V1204 Cen |141348.4-640030 |EA | 10.95 | 11.65 | 11.4 : |V |52652.828 | | 2.32713 |06 | |79003 79101| +191205 |V1205 Cen |141640.7-365618 |SRA | 10.2 | 12.7 | |V |53800. | | 176. | | |79100 DM | +191206 |V1206 Cen |141929.1-342350 |EA | 11.77 | 12.76 | 12.05 |V |53063.822 | | 2.582712 |10 | |79003 DM | +191207 |V1207 Cen |142103.2-325313 |EA | 10.71 | 11.93 | 10.88 |V |51948.804 | | 8.5366 |06 |G6V |79011 DM | +191208 |V1208 Cen |143205.6-633139 |M | 11.8 |< 14.6 | |V |53792. | | 453. | | |79064 USNO | +191209 |V1209 Cen |143603.1-582825 |EA | 11.49 | 11.9 : | 11.9 : |V |51954.777 | | 2.09093 |11 | |79018 GSC | +191210 |V1210 Cen *|143655.6-581541 |CEP(B) | 9.75 | 10.35 | |V |52082.85 | | 4.317 | | |79102 DM | +191211 |V1211 Cen |143929.4-422708 |EB: | 11.26 | 11.87 | 11.77 |V |52452.523 | | 1.14153 | | |79018 DM | +191214 |V1214 Cen *|110614.8-422432 |EB+DSCTC | 10.47 | 10.76 | 10.69 |V |51950.2300 | | 2.136998 | | |80281 DM | NL80_2 +191216 |V1216 Cen *|111435.5-553008 |EA | 11.32 | 11.47 | |V |54486.72 | | 3.80399 |10 | |80011 GSC | NL80_2 +191217 |V1217 Cen |112105.5-384516 |IT | 12.4 | 12.9 | |V | | | 3.30327 | |M1Ve |80001 GSC | NL80_2 +191219 |V1219 Cen *|112325.9-623842 |EA | 10.42 | 10.70 | 10.65 |V |54833.8244 | | 9.3270 |03 |B9.5IV/V |80001 DM | NL80_2 +191221 |V1221 Cen |113104.5-410703 |RRAB | 12.2 | 12.9 | |V |55001.335 | | 0.353228 |25 | |80002 GSC | NL80_2 +191223 |V1223 Cen |113218.8-612034 |M | 5.57 | 6.13 | |K | | | 395. | |C |80166 2MASS| NL80_2 +191228 |V1228 Cen |113318.0-630616 |BCEP | 9.55 |( 0.04 )| |V | | | 0.16848 | |B1III |80356 DM | NL80_2 +191229 |V1229 Cen *|113333.9-635345 |EB | 9.23 | 9.52 | 9.49 |V |51868.478 | | 0.991121 | |B1.5Vn |80036 DM | NL80_2 +191232 |V1232 Cen |113445.0-382549 |SXPHE: | 12.26 | 12.67 | |V | | | 0.129485 |20 : | |80358 DM | NL80_2 +191234 |V1234 Cen |113540.4-502833 |M | 11.7 |< 14.2 | |V |52762. | | 310. | | |80360 2MASS| NL80_2 +191235 |V1235 Cen |113616.7-602918 |M: | 11.6 |< 12.2 | |V |54460. | | 510. | |C |80001 2MASS| NL80_2 +191236 |V1236 Cen |114613.0-570405 |LB | 11.00 | 11.50 | |V | | | | |M5 |80001 GSC | NL80_2 +191237 |V1237 Cen *|114633.6-621756 |EW | 11.1 | 11.9 | 11.7 |V |54540.7779 | | 0.486009 | | |80242 80242| NL80_2 +191239 |V1239 Cen *|114824.2-372849 |IT | 11.2 | 11.5 | |V | | | 5.10 | |K5V |80330 DM | NL80_2 +191240 |V1240 Cen |114848.3-633728 |M | 4.60 | 6.34 | |K | | | 615. | |C |80166 2MASS| NL80_2 +191241 |V1241 Cen |114921.3-600705 |M | 4.57 | 5.58 | |K | | | 652. | |C |80166 2MASS| NL80_2 +191243 |V1243 Cen |115100.8-490609 |M | 11.8 |< 14.5 | |V |53451. | | 500. | | |80360 GSC | NL80_2 +191245 |V1245 Cen |115330.7-610333 |M | 5.30 | 6.22 | |K | | | 535. | |C |80166 2MASS| NL80_2 +191248 |V1248 Cen |115529.4-640725 |M: | 5.66 | 6.38 | |K | | | 512. | | |80166 2MASS| NL80_2 +191249 |V1249 Cen |121530.7-394843 |BY | 11.1 | 11.4 | |V | | | 5.067861 | |M0 |80002 DM | NL80_2 +191252 |V1252 Cen |123504.3-413639 |IT | 11.4 |( 0.14 V)| |R | | | 8.33 | |M2Ve |80330 GSC | NL80_2 +191253 |V1253 Cen |123803.8-383125 |CEP | 11.75 | 12.50 | |V |51885.1 | | 4.321 |27 | |80368 DM | NL80_2 +191254 |V1254 Cen *|124452.7-424414 |EW | 11.17 | 11.75 | 11.75 |V |52738.684 | | 0.370790 | | |80365 80365| NL80_2 +191256 |V1256 Cen |124851.2-481708 |M | 11.4 |< 14.3 | |V |53755. | | 319. | | |80360 GSC | NL80_2 +191257 |V1257 Cen |125051.4-515635 |RS | 11.6 | 12.2 | |V | | | 2.76116 | |K5Ve |80002 GSC | NL80_2 +191259 |V1259 Cen *|130220.3-632824 |BCEP | 11.3 | 11.5 | |V | | | 0.189127 | |B |80356 GSC | NL80_2 +191260 |V1260 Cen *|130236.1-595601 |EA | 9.46 | 9.55 | 9.50 |V |51888.826 | | 3.56278 |10 |A0IV |80015 DM | NL80_2 +191261 |V1261 Cen *|130657.2-495427 |BY: | 10.7 |( 0.09 )| |B | | | 3.9 : | |F7 |80199 2MASS| NL80_2 +191262 |V1262 Cen *|130740.7-372934 |EW | 11.82 | 12.7 | 12.6 |V |52712.825 | | 3.370469 | | |80365 80365| NL80_2 +191263 |V1263 Cen *|130807.3-325413 |EB | 12.10 | 12.95 : | 12.5 |V |52699.756 | | 0.410756 | | |80365 80365| NL80_2 +191264 |V1264 Cen *|131018.4-450914 |EA+DSCT | 12.35 | 14.1 | 12.50 |V |54246.7742 | | 5.3504751 |10 |A7V |80379 GSC | NL80_2 +191265 |V1265 Cen *|131055.2-484404 |RS | 10.7 | 11.5 | |V | | | 3.537281 | | |80138 DM | NL80_2 +191266 |V1266 Cen *|131234.3-603339 |EB | 8.05 | 8.16 | 8.13 |V |53476.93 | | 10.157 | |A1III |80011 DM | NL80_2 +191267 |V1267 Cen |132045.4-461138 |IT | 11.69 |( 0.12 V)| |R | | | 0.69 | |K5 |80330 GSC | NL80_2 +191268 |V1268 Cen |132137.2-442152 |IT | 12.08 |( 0.07 V)| |R | | | | |M0.5V |80330 GSC | NL80_2 +191286 |V1286 Cen *|133501.7-421943 |EB | 11.37 | 11.98 | 11.55 |V |51996.681 | | 0.613378 | | |80365 80365| NL80_2 +191287 |V1287 Cen |133741.1-582310 |M | 4.37 | 5.91 | |K | | | 556. | |C |80166 2MASS| NL80_2 +191289 |V1289 Cen *|134909.2-474634 |EA | 10.4 | 11.2 | 11.1 |V |53012.8434 | | 0.897009 |15 |F5 |80002 GSC | NL80_2 +191290 |V1290 Cen |134930.0-311430 |SRB | 10.1 | 11.6 | |V | | | 128. | | |80002 DM | NL80_2 +191291 |V1291 Cen |135153.6-373624 |M | 10.6 |< 15.0 | |V |54895. | | 265. | |Me |80001 GSC | NL80_2 +191292 |V1292 Cen |135434.5-640323 |M | 4.36 | 5.93 | |K | | | 678. | |C |80166 2MASS| NL80_2 +191293 |V1293 Cen |135452.2-391830 |M | 10.6 | 15.0 | |V |55039. | | 186. | |Me |80002 2MASS| NL80_2 +191294 |V1294 Cen *|135541.8-443857 |EA/RS | 7.80 | 8.07 | 8.07 |V |54302.6004 | | 1.16553 |21 |A0Vn |80297 80297| NL80_2 +191295 |V1295 Cen |135554.8-413132 |M | 11.1 | 14.7 | |V |54936. | | 140. | | |80001 GSC | NL80_2 +191296 |V1296 Cen *|135642.9-422417 |EW | 10.71 | 11.40 | 11.34 |V |51979.678 | | 0.506878 | | |80365 80365| NL80_2 +191302 |V1302 Cen |135817.1-562111 |SRB | 7.3 | 7.8 | |V | | | 314. | |C(N) |80297 80297| NL80_2 +191304 |V1304 Cen |135856.8-405350 |RRAB | 12.2 | 13.5 | |V |52089.131 | | 0.615901 |14 | |80391 GSC | NL80_2 +191309 |V1309 Cen |140020.7-593108 |M: | 10.6 | 12.6 | |Ic| | | | | |80392 80392| NL80_2 +191311 |V1311 Cen |140033.5-384107 |SRB | 8.9 | 10.4 | |V | | | 171. | | |80001 DM | NL80_2 +191324 |V1324 Cen |140120.7-593131 |SR: | 12.38 : | 13.20 | |Ic| | | | | |80392 80392| NL80_2 +191326 |V1326 Cen *|140133.0-593246 |EW | 11.35 | 11.70 | 11.67 |Ic|50567.6886 | | 0.9158 | | |80392 80392| NL80_2 +191328 |V1328 Cen |140404.8-610150 |M | 4.63 | 5.63 | |K | | | 495. | |C |80166 2MASS| NL80_2 +191329 |V1329 Cen |140432.8-485418 |M | 11.6 |< 15.0 | |V |54889. | | 186.8 | | |80002 2MASS| NL80_2 +191330 |V1330 Cen |140432.9-594122 |M | 4.57 | 5.62 | |K | | | 538. | |C |80166 2MASS| NL80_2 +191333 |V1333 Cen |140559.9-620423 |LB | 10.4 | 11.9 | |V | | | | |M7-M8 |80001 GSC | NL80_2 +191334 |V1334 Cen |140637.1-433345 |SRA | 10.1 | 13.0 | |V |54994. | | 196.6 | | |80001 GSC | NL80_2 +191335 |V1335 Cen |140701.2-423301 |RS | 10.00 | 10.15 | |V | | | 1.693846 : | |G1V |80002 GSC | NL80_2 +191336 |V1336 Cen |140719.7-481020 |M | 12.1 |< 15.0 | |V |54872. | | 222. | | |80001 GSC | NL80_2 +191337 |V1337 Cen |140839.7-493513 |M | 10.4 |< 15.0 | |V |54540. | | 282.9 | | |80002 GSC | NL80_2 +191338 |V1338 Cen |140858.5-463643 |DSCT | 10.2 | 10.7 | |V |53764.8191 | | 0.1309382 |25 |F0V |80001 DM | NL80_2 +191339 |V1339 Cen |141008.5-382751 |M | 11.6 |< 15.0 | |V |54844. | | 251. | | |80001 2MASS| NL80_2 +191341 |V1341 Cen |141909.8-565941 |SRA | 9.4 | 11.6 | |V |54932. | | 419. | |C(N) |80001 2MASS| NL80_2 +191343 |V1343 Cen |142108.1-370416 |RRC | 12.0 | 12.6 | |V |51947.337 | | 0.28518 |15 | |80386 DM | NL80_2 +191344 |V1344 Cen |142330.4-575304 |RRAB | 11.3 | 12.3 | |V |54482.8388 | | 0.418257 |16 | |80001 GSC | NL80_2 +191345 |V1345 Cen |142345.7-582925 |RRAB | 11.3 | 11.8 | |V |53875.7933 | | 0.631275 | | |80001 GSC | NL80_2 +191346 |V1346 Cen |142348.3-574401 |M | 11.7 |< 14.7 | |V |54619. | | 137.5 | | |80399 80399| NL80_2 +191347 |V1347 Cen *|142524.1-301316 |EA | 10.3 | 11.2 | 11.1 |V |52463.5431 | | 1.25197 |20 |F2V |80001 DM | NL80_2 +191349 |V1349 Cen |142628.1-600211 |SRB | 11.0 | 11.7 | |V | | | 226.2 | |C(N) |80002 GSC | NL80_2 +191350 |V1350 Cen |142705.3-581918 |LB | 11.5 | 12.1 | |V | | | | |M6e |80001 GSC | NL80_2 +191351 |V1351 Cen *|142833.6-320826 |EW | 10.65 | 11.30 | 11.27 |V |51924.880 | | 0.399114 | | |80365 80365| NL80_2 +191352 |V1352 Cen |142902.8-385423 |SRB | 9.4 | 10.7 | |V | | | 268. : | |M6 |80001 DM | NL80_2 +191356 |V1356 Cen *|143736.9-610848 |EA | 11.97 | 12.96 | 12.96 |V |51939.218 | | 3.17071 |14 | |80365 80365| NL80_2 +191358 |V1358 Cen *|143822.4-302754 |M | 12.1 |< 13.6 | |V |53444. | | 279. | | |80399 80399| NL80_2 +191362 |V1362 Cen *|144047.4-372518 |EW | 9.25 | 9.53 | |V |51868.276 | | 0.353410 | |G2V |80036 DM | NL80_2 +191363 |V1363 Cen |144108.0-611854 |M | 11.6 |< 14.4 | |V |53446. | | 601. | |Se |80399 80399| NL80_2 +191365 |V1365 Cen |144821.4-421543 |SRB | 12.5 | 13.9 | |V | | | 97. | | |80001 GSC | NL80_2 +191366 |V1366 Cen |145744.9-302639 |RRAB | 12.37 | 13.36 | |V |52761.579 | | 0.62168 |14 | |80386 GSC | NL80_2 +199002 |bet Cen *|140349.4-602223 |BCEP | 0.61 |( 0.045 )| |V | | | 0.157 | |B1III |08886 05288| +199004 |del Cen *|120821.5-504321 |GCAS | 2.51 | 2.65 | |V | | | | |B2IVne |08663 CoD | +199005 |eps Cen *|133953.3-532759 |BCEP | 2.29 | 2.31 | |V |41040.965 | | 0.169608 | |B1III |06356 CoD | +199007 |eta Cen *|143530.4-420928 |GCAS | 2.30 | 2.41 | |V | | | | |B1.5Vne |07869 CoD | +199012 |mu. Cen *|134937.0-422825 |GCAS | 2.92 | 3.47 | |V | | | | |B2IV-Ve |00094 CoD | +199013 |nu. Cen |134930.3-414116 |ELL:+BCEP | 3.38 | 3.41 | |V | | | | | |67201 CoD | +1990151|omi 1 Cen *|113146.1-592631 |SRD | 5.8 | 6.6 | |B | | | 200. : | |G3Ia-0 |04164 CoD | +1990152|omi 2 Cen |113148.8-593056 |ACYG | 5.12 | 5.22 | |V | | | 46.3 : | |A2eaIa |08070 CoD | +199022 |khi Cen |140602.8-411047 |BCEPS | 4.15 |( 0.020 )| |B | | | 0.035 | |B2V |08308 CoD | +200002 |S Cep |213512.8+783728 |M | 7.4 | 12.9 | |V |43787. | | 486.84 |55 |C7,4e(N8e) |00001 00002| +200003 |T Cep *|210931.8+682927 |M | 5.2 | 11.3 | |V |44177. | | 388.14 |54 |M5.5e-M8.8e |00001 00002| +200004 |U Cep *|010218.4+815232 |EA/SD | 6.75 | 9.24 | 6.93 |V |44541.6031 | | 2.4930475 |15 |B7Ve+G8III-IV |08888 00097| +200005 |V Cep |235627.8+831128 |CST: | 6.56 | | |V | | | | |A3V | 08953| +200006 |W Cep *|223627.6+582534 |SRC | 7.02 | 9.2 | |V | | | | |K0ep-M2epIa+B0/B1|00001 00098| +200007 |X Cep *|205610.1+830325 |M | 8.1 | 16.0 | |V |43834. | | 535.19 |42 |M4.5e:-M7e |00001 00002| +200008 |Y Cep |003822.8+802126 |M | 8.1 | 16.0 | |V |44134. | | 332.57 |40 |M5e-M8.2e |00001 00002| +200009 |Z Cep |022617.4+814042 |M | 10.1 | 15.7 | |V |42156. | | 279.16 |48 |M2e-M8.2 |00001 00002| +200010 |RR Cep |024315.5+810810 |M | 9.0 | 15.5 | |V |43601. | | 384.18 |41 |M5e-M8.8e |00001 00002| +200011 |RS Cep *|050603.2+801452 |EA/DS | 10.2 | 11.9 | |V |40862.677 | | 12.420105 |08 |A5IIIe+G |06978 00100| +200012 |RT Cep |214652.7+643610 |M | 11.7 |< 14.7 | |p |39724. | | 621.55 | |M6 |00001 01765| +200013 |RU Cep |012111.9+850756 |SRD | 8.2 | 9.8 | |V | | | 109. | |G6-M3.5III |02430 00102| +200014 |RV Cep |001310.6+735148 |M | 11.5 | 16. | |p |43041. | | 272.45 |48 : |M2e-M7 |00001 00102| +200015 |RW Cep |222307.0+555748 |SRD | 8.6 | 10.7 | |p | | | 346. : | |K0Ia-0 |00111 00103| +200016 |RX Cep |005004.6+815802 |SRD: | 7.2 | 8.2 | |V | | | 55. : | |G5 |00334 03514| +200017 |RY Cep |232114.5+785732 |M | 8.6 | 13.6 | |V |44533. | | 149.06 |51 |Ke-M0e |00001 00105| +200018 |RZ Cep *|223913.2+645131 |RRC | 9.11 | 9.75 | |V |42635.374 | | 0.3086853 |32 |A0-F2 |08697 00107| +200019 |SS Cep *|034930.0+801921 |SRB | 8.0 | 9.1 | |p | | | 90. | |M5III |00108 08953| +200020 |ST Cep |223010.7+570003 |LC | 9.7 | 11.6 | |p | | | | |M2Ia-Iab |00098 00103| +200021 |SU Cep *|214640.6+571737 |EB/KE | 10.0 | 10.9 | 10.6 |p |26325.465 | | 0.9014011 | |B8 |03526 00110| +200022 |SV Cep *|222133.2+734027 |ISA | 10.35 | 12.15 | |V | | | | |A0ea |05476 02220| +200023 |SW Cep |212545.9+623426 |SRC | 10.8 | 12.2 | |p | | | 70. | |M3.5Ia-Iab |00111 00103| +200025 |SY Cep *|221334.2+623140 |EA/DM | 12.05 | 12.98 | 12.70 |V |44103.330 | | 8.3455 |03 *|A3: |08892 00113| +200026 |SZ Cep *|200957.6+771109 |M | 8.6 | 15.5 | |V |42624. | | 326.59 | |S3.5,8e-S4,8:e |00001 00114| +200029 |TV Cep |220953.9+630717 |EA/SD | 12.2 | 14.7 | |p |21366.623 | | 3.857082 |08 | |03528 00116| +200030 |TW Cep |215313.7+615809 |M | 12.2 | 18. | |p |30670. | | 281.2 |37 |M6.5 |00115 00116| +200031 |TX Cep |235322.2+761105 |M | 12.3 |< 16. | |p |29534. | | 377.0 | | |00114 00114| +200032 |TY Cep *|214135.1+863811 |SRA | 9.7 | 13.3 | |V |24510. | | 330. | |M3 |00117 00118| +200033 |TZ Cep |002515.3+735411 |SRD | 9.0 | 11.0 | |V |25840. | | 83.0 |48 |G6-K2e(M2) |00373 00119| +200038 |UY Cep |210819.3+584555 |M | 12.1 | 16.5 | |p |34587. | | 276.8 | |M7e |01007 00114| +200039 |UZ Cep *|230813.9+703627 |M | 11.3 |< 15. | |p |44609. | | 303.5 | |M4-M5 |00001 00114| +200040 |VV Cep *|215639.1+633732 |EA/GS+SRC | 4.80 | 5.36 | |V |43360. | | 7430. |08 |M2epIa-Iab+B8:eV |08698 02471| +200041 |VW Cep *|203721.5+753602 |EW/KW | 7.23 | 7.68 | 7.56 |V |44157.4131 | | 0.27831460 | *|G5+K0Ve |08898 07302| +200042 |VX Cep |225049.5+641505 |M | 11.4 |< 15.5 | |p |34692. | | 532.3 | |M8 |00001 00114| +200044 |VZ Cep *|215011.1+712638 |EA | 9.74 | 10.15 | 9.93 |V |43720.420 | | 1.1833648 |12 *|G0 |00001 08900| +200045 |WW Cep |221827.9+695140 |EA/SD: | 11.1 | 11.9 | |p |25029.495 | | 1.53360 | |G3 |00123 00124| +200046 |WX Cep *|223115.8+633122 |EA/DM | 8.7 | 9.29 | 9.14 |V |25088.537 | | 3.3784535 |13 |A2+A5: |08901 00124| +200047 |WY Cep *|224620.7+674222 |EB/KE: | 10.8 | 11.7 | 11.5 |p |25123.080 | | 1.249056 | |A7 |00063 00010| +200048 |WZ Cep *|232224.2+725457 |EW/KW | 11.4 | 12.0 | 11.9 |p |28040.556 | | 0.4174471 | |F5 |00126 00124| +200049 |XX Cep *|233820.3+642003 |EA/SD | 9.20 | 10.32 | 9.24 V |V |44839.8022 | | 2.3373266 |14 *|A8V |00001 00124| +200050 |XY Cep *|235232.9+685602 |EA/SD | 10.05 | 10.90 | 10.10 |V |43791.3160 | | 2.774527 |12 *|B8-A0 |08903 00124| +200051 |XZ Cep *|223225.1+670903 |EB/DM: | 8.0 | 8.83 | 8.43 |V |43297.811 | | 5.0972267 | |O9.5V |08904 00124| +200052 |YY Cep |220147.8+565810 |M | 12.0 |< 16. | |p |38678. | | 526.08 | |M6 |00001 07303| +200053 |YZ Cep |221801.2+571717 |ISB | 12.2 | 13.5 | |p | | | | |G0V |00128 06286| +200054 |ZZ Cep *|224502.6+680759 |EA/DM | 8.60 | 9.55 | 8.74 |V |27928.451 | | 2.141800 |12 *|B7+F0V |00803 00124| +200056 |AB Cep |221110.6+551653 |M | 12.0 | 15.5 | |p |41160. | | 324.5 | |M8e |00001 00131| +200057 |AC Cep |222722.7+571559 |M | 12.5 |< 15. | |p |38698. :| | | |M6.5: |03532 00133| +200058 |AD Cep |003126.4+823542 |SR | 10.8 | 15.5 | |p | | | 166. | |M6.5-M8 |00134 00135| +200059 |AE Cep |012248.3+800157 |M | 11.0 |< 16. | |p |28676. | | 170.3 | | |01000 00135| +200060 |AF Cep |021335.1+824403 |M | 12.0 |< 15.5 | |p |28733. | | 232.2 | | |01000 00135| +200061 |AG Cep |022014.7+784537 |M | 10.5 |< 16. | |p |29975. | | 445. | |M9.2-M10e |00001 00135| +200062 |AH Cep *|224752.9+650344 |EB/DM | 6.78 | 7.07 | 7.03 |V |34989.4026 | | 1.7747505 | |B0.5Vne+B0.5V |08873 BD | +200063 |AI Cep *|214622.6+565502 |EB/DM | 9.18 | 9.86 | 9.48 |V |26550.341 | | 4.225288 | |B0.5V:p |03526 03526| +200064 |AK Cep |222850.1+581239 |DCEP | 10.86 | 11.52 | |V |37022.531 | | 7.23268 |28 |F6-G2 |03532 00137| +200065 |AL Cep |224916.9+583507 |M | 10.9 | 14.5 | |p |34397. | | 277.3 |40 |M5-M6.5e |00001 00138| +200067 |AN Cep *|231807.3+830039 |SR | 9.6 | 12.2 | |p | | | 127. | |M8e |00108 08953| +200070 |AQ Cep |082243.9+860452 |RRAB | 12.2 | 13.3 | |V |28128.414 | | 0.6514463 |15 | |03633 00142| +200071 |AR Cep |225133.9+850247 |SRB | 7.0 | 7.9 | |V | | | | |M4III | 08953| +200072 |AS Cep |230205.2+594906 |LB | 11.3 | 12.9 | |p | | | | |M3 |00098 07920| +200073 |AT Cep |234953.0+780205 |SRB | 12.2 | 13.7 | |p | | | 100. : | | |00144 00143| +200075 |AV Cep *|055426.6+860121 |EA | 12.4 |< 13.6 | |p |28776.222 | | 2.9581 |12 | |00144 00145| +200076 |AW Cep |211130.2+735315 |M | 12. |< 16. | |p |28846. | | 251. | |M8 |00146 00146| +200077 |AX Cep |212654.0+701316 |M | 9.5 | 13.0 | |V |37023. | | 395.0 |46 |C(N) |00001 00146| +200078 |AY Cep |220004.7+822152 |M | 11.0 |< 14.5 | |V |29421. | | 281.0 | | |01001 00146| +200079 |AZ Cep |220838.5+593301 |LC | 11.8 | 12.70 | |B | | | | |M2.0Ia |00098 00098| +200080 |BB Cep *|225530.2+640031 |EA/DS | 12.1 | 13.2 | |p |27327.51 | | 30.1856 |09 |G0 |00001 02335| +200082 |BD Cep |201126.5+801041 |M | 11.5 |< 15. | |p |31910. | | 415. | |M7 |01000 00146| +200083 |BE Cep *|224120.8+583631 |EW/KW | 12.4 | 13.3 | 13.0 |p |28751.309 | | 0.42439595 | | |00149 00150| +200084 |BF Cep *|203126.5+625650 |M | 10.0 |< 14.5 | |V |44248. | | 430.14 | |M7 |00001 00151| +200086 |BH Cep *|220142.9+694437 |ISB | 10.79 | 12.7 | |V | | | | |F5IVea |08616 08616| +200087 |BI Cep |220202.7+682432 |RVA | 12.5 | 14.3 | |p |27153. | | 212. | |M5eII |00152 02335| +200092 |BO Cep *|221654.1+700345 |INSB | 11.96 | 13.7 | |B | | | | |F2:ea |08616 00491| +200095 |BR Cep |222717.1+661000 |EA/SD | 12.5 | 15.0 | |p |26802.525 | | 3.1677136 |14 *| |00001 02318| +200098 |BU Cep |223215.6+645840 |EA/KE: | 12.2 | 12.9 | |p |26821.380 | | 1.414388 |14 *| |00152 02335| +200111 |CK Cep |231243.8+635717 |SRB | 12.4 | 13.1 | |p | | | 110. : | |M7 |00152 02318| +200113 |CM Cep |232238.0+651758 |EA/SD | 12.1 | 13.7 | |p |27159.468 | | 1.8589265 |15 *| |00001 02335| +200115 |CO Cep *|005445.1+775521 |EA/DM: | 12.0 | 12.7 | 12.6 |V |29043.457 | | 4.137590 |08 *| |04524 00143| +200116 |CP Cep *|215752.7+560950 |DCEP | 10.06 | 10.96 | |V |33052.33 | | 17.8590 |40 |F5Ib-F7 |08617 00155| +200117 |CQ Cep *|223654.0+565421 |EB/DM/WR | 8.63 | 9.12 | |V |32456.668 | | 1.641249 | |WN5.5+O7 |06489 08953| +200118 |CR Cep *|224624.8+592632 |DCEP | 9.43 | 9.83 | |V |42774.236 | | 6.232964 |39 |F8.4 |08632 00098| +200120 |CT Cep |214612.3+673811 |LB | 12.5 |< 14.4 | |p | | | | |M7 |04298 00156| +200121 |CU Cep |221131.9+570218 |SRB | 11.9 | 15. | |p | | | 700. | |M4-M6 |08619 00158| +200122 |CV Cep *|224954.5+593935 |SR | 12.4 | 13.8 | |p | | | 60. | |M4S |08618 00159| +200123 |CW Cep *|230402.2+632349 |EA/DM | 7.60 | 8.04 | 8.01 |V |35373.4496 | | 2.729140 |13 *|B0.5+B0.5IV-Vea |08620 BD | +200124 |CX Cep *|220933.5+574431 |EB/WR | 12.09 | 12.24 | 12.16 |V |44451.4234 | | 2.12687 | |WN5+O8V |08911 00161| +200130 |DG Cep |224411.1+614343 |LB | 11.54 | 12.5 | |B | | | | |C6,4(Nb/R8) |00085 02374| +200131 |DH Cep *|224654.1+580504 |ELL | 8.58 | 8.62 | |V |32759.279 | | 2.111040 | |O5.5+O6.5IV-Vn |08912 05479| +200132 |DI Cep |225611.5+584002 |INST | 11.95 | 13.5 | |B | | | | |G8pVe-K3Ve(T) |00166 00166| +200133 |DK Cep *|215834.2+605702 |EA/SD | 12.2 | 14.2 | 12.4 |p |33590.5630 | | 0.9859064 |30 | |03526 00167| +200134 |DL Cep *|220025.2+594130 |EB/DM | 12.4 | 13.2 | 12.7 |p |33946.608 | | 1.630481 | | |03526 00167| +200135 |DM Cep |220816.4+724607 |LB | 8.4 | 9.6 | |p | | | | |M4 |03135 08900| +200136 |DN Cep |221332.9+555825 |EA/SD | 12.0 | 13.0 | |p |33873.700 | | 3.306164 |10 |B5 |05862 05862| +200137 |DO Cep *|222759.5+574145 |UV | 10.3 | 11.4 | |V | | | | |M4.5Ve |00171 00172| +200139 |DQ Cep *|205748.6+552916 |DSCT | 7.22 | 7.32 | |V |33924.8404 | | 0.07886444 |50 |F4III |06484 BD | +200141 |DS Cep |202441.0+595841 |L | 12.5 | 13.9 | |p | | | | | |00164 02354| +200144 |DV Cep |204318.4+722230 |E | 11.4 | 12.2 | |p | | | | | |00174 00174| +200145 |DW Cep |205139.7+624850 |EA/SD | 11.7 | 12.7 | |p |26980.297 | | 2.51686 |23 : |B8 |02222 02222| +200146 |DX Cep *|224419.1+835702 |RRAB | 12.0 | 13.7 | |B |38656.355 | | 0.52604167 |15 |A7-F6 |03645 00174| +200147 |DY Cep *|233205.4+640054 |EB | 11.7 | 12.0 | 11.8 |p |29079.434 | | 2.3620175 | |F2: |00176 02376| +200149 |EE Cep *|220922.8+554524 |EA | 10.72 | 12.15 | |V |34346.0 | | 2049.53 |01 *|B5III-IV+e |08921 07404| +200150 |EF Cep *|044539.1+804425 |EW | 12.0 | 12.6 | 12.6 |p |31860.546 | | 0.606072 | | |02263 02263| +200151 |EG Cep *|201556.8+764836 |EB | 9.31 | 10.21 | 9.61 |V |42594.3825 | | 0.54462183 | |A3 |08593 00462| +200152 |EH Cep *|210324.4+675906 |INSB | 12.1 | 15.9 | |p | | | | |G2ea-K2e |02552 02669| +200153 |EI Cep *|212828.2+762413 |EA/DM | 7.54 | 8.06 | 7.98 |V |36820.4665 | | 8.439334 |06 *|Am+F1 |08922 08953| +200154 |EK Cep *|214121.5+694134 |EA/DM | 7.99 | 9.32 | 8.06 |B |39002.7240 | | 4.4277926 |06 |A0V |08626 03539| +200155 |EL Cep *|214622.5+691108 |RRAB | 12.2 | 13.9 | |p |36079.348 | | 0.4166275 |32 | |03506 02335| +200156 |EM Cep *|215348.1+623652 |EW/KE | 7.02 | 7.17 | 7.16 |V |40134.7326 | | 0.806187 | |B1IVe |08701 03542| +200158 |EO Cep *|002339.4+784656 |EB/DM | 12.0 | 12.8 | 12.3 |p |27364.315 | | 1.833658 | | |03235 03235| +200167 |EX Cep *|020359.4+783322 |EA/DM | 11.4 | 11.8 | 11.6 |p |26649.400 | | 1.675064 |12 *|G4 |04109 04109| +200168 |EY Cep *|034004.1+810109 |EB/DM | 10.1 | 10.7 | 10.4 |p |26427.575 | | 5.51672 | |A5 |03235 BD | +200169 |EZ Cep *|035805.4+811423 |RRC | 11.6 | 12.2 | |p |26631.370 | | 0.378999 |50 | |04109 04353| +200170 |FF Cep |082650.5+850702 |SRA | 10.3 | 11.2 | |p |28415. | | 185. | |M |04014 08953| +200172 |FH Cep *|203421.8+643841 |EB | 11.8 | 12.5 | 12.1 |p |34599.502 | | 3.141964 | | |04300 04297| +200179 |FP Cep |205454.0+662641 |RRAB | 12.4 | 13.3 | |p |37119.486 | | 0.46786353 |20 | |03506 02334| +200182 |FS Cep *|205859.9+693728 |EB/KE | 11.8 | 12.3 | 12.0 |p |26930.450 | | 1.347522 | | |03235 04109| +200189 |FZ Cep |211942.8+552700 |SR | 8.5 | 9.1 | |p | | | | |M5 |02522 08953| +200191 |GH Cep |212004.4+775044 |M | 12.5 | 15.5 | |p |26782. | | 331. | |M3 |04312 00158| +200192 |GI Cep *|212928.9+651421 |EA/KE | 11.4 | 12.5 | 11.9 |p |36875.375 | | 1.037684 |20 : | |04298 00319| +200193 |GK Cep *|213059.1+704924 |EB/KE | 6.89 | 7.37 | 7.35 |V |38694.7063 | | 0.936157 | |A2V+A2V |07405 04315| +200196 |GN Cep |215952.2+572149 |SRA | 12.2 |< 14.5 | |p |37155. | | 230. | |M6 |03532 08640| +200198 |GP Cep *|221845.6+560734 |E/WR+E: | 8.96 | 9.07 | |V |31256.602 | | 6.6883 | |WN6+O8-B0III:+O+O|07306 04323| +200199 |GQ Cep |223922.9+753928 |ACV | 8.11 | 8.29 | |V |38350.57 | | 2.037638 |45 |A0p(Si) |08022 BD | +200200 |GR Cep |224742.9+611615 |LB | 11.0 | 12.2 | |p | | | | |M5 |04330 03757| +200201 |GS Cep *|225129.5+570018 |EB/KE | 10.2 | 11.1 | 10.6 |p |26350.375 | | 0.772002 | |A0 |04009 00462| +200202 |GT Cep *|225747.3+682426 |EA/SD | 8.2 | 9.1 | 8.6 |V |25628.250 | | 4.908756 |14 *|B3V |04020 08645| +200203 |GU Cep |231010.9+611430 |LC | 11.6 | 12.6 | |p | | | | |M2Iab |04396 07920| +200205 |GW Cep *|014558.6+800455 |EW/KW | 11.4 | 12.10 | 12.00 |p |38383.711 | | 0.31885 | |G3 |03913 00174| +200207 |GY Cep |200551.5+603917 |LB | 11.4 | 12.3 | |p | | | | | |03148 04065| +200210 |HI Cep |202458.5+613356 |E | 12.3 | 13.8 | |p |37934.509 | | | | |03916 03916| +200229 |IL Cep *|225315.6+620845 |EA | 9.29 | 9.61 | |V | | | 1.401 : | |B2-B3pe |05522 BD | +200232 |IO Cep *|211030.7+574309 |EA/SD | 11.4 | 12.6 | 11.7 |p |30729.280 | | 1.2358073 |15 *|F8 |06325 05957| +200233 |IP Cep *|214655.5+685250 |EW | 11.5 | 12.1 | 12.1 |p |29495.570 | | 0.89888 | | |05957 05957| +200235 |IR Cep *|215751.9+610108 |DCEP | 7.58 | 7.98 | |V |41696.582 | | 2.114124 |40 |G0 |08300 08940| +200245 |KL Cep *|221022.9+540909 |EA | 11.3 | 12.5 : | |p |34724.7 | | 256.1 |03 |K0: |05862 05862| +200258 |KY Cep *|223216. +573952:|* | 4. : | 13. : | |p |40797.333 | | | |pec(cont) |05864 | +200259 |KZ Cep *|225630.9+625207 |BCEP | 8.20 | 8.22 | |B | | | 0.24544 | |B0V |05522 BD | +200269 |LU Cep *|213514.6+605418 |LB | 12.5 | 13.3 | |p | | | | |C4-5,4-5(N3) |06325 06325| +200274 |LZ Cep *|220204.6+580001 |ELL | 5.56 | 5.66 | 5.63 |B |41931.868 | | 3.070510 | |O8.5III+O9Vn |08213 BD | +200277 |MO Cep |220353.0+630712 |LB: | 5.13 | 5.33 | |V | | | | |M5III |06330 BD | +200284 |MV Cep |224455.8+595420 |LB | 11.4 | 12.1 | |V | | | | |C(N) |06566 06566| +200286 |MX Cep *|225241.9+584823 |ACV | 7.81 | 7.96 | |V |40785.2 | | 17.22 | |A2p(Sr-Cr-Mn) |06992 BD | +200289 |NN Cep *|230205.6+623044 |EA/DM | 8.2 | 8.58 | 8.52 |V |44507.4033 | | 2.058305 |12 *|A5 |08948 08686| +200294 |NS Cep *|204523.4+604313 |EA | 12.2 | 12.6 |( 0.04 )|p |30639.300 | | 0.7763644 |19 | |06325 06325| +200295 |NT Cep |213037.1+614250 |LB | 11.2 | 11.7 | |p | | | | |M6 |06325 06325| +200296 |NU Cep |213156.1+613000 |EA | 11.9 | 12.7 | |p |30633.378 | | 4.980605 |04 *| |07056 06325| +200298 |NW Cep *|221348.0+554421 |EA/SD: | 10.6 | 11.5 | 10.7 |p |33853.384 | | 2.7530064 |18 *| |06329 06329| +200299 |NX Cep |222031.0+562951 |SRD: | 12.4 | 13.1 | |p |33813. | | 311. | |F2: |06329 06329| +200300 |NY Cep *|225839.8+630438 |EA/DM | 7.40 | 7.55 | |V |41903.8136 | | 15.275727 |02 |B0IV+B0IV |08691 07410| +200308 |OU Cep |031158.3+833446 |SR | 11.1 | 12.0 | |p | | | | |M8 |00174 BD | +200309 |OV Cep |074030.5+870112 |SR | 5.00 | 5.07 | |V | | | | |M2IIIab |06994 BD | +200315 |PQ Cep |214428.8+733805 |M | 10.5 |< 15.5 | |p |36485. | | | |C6-,3e(N) |02594 00158| +200316 |PR Cep |215801.3+564449 |LB: | 1.48 | 1.86 | |K | | | | |M8 |06352 00685| +200317 |PS Cep *|224749.6+580850 |E/DM | 10.13 | 10.19 | |V | | | 2.09168 | |B6Vne |07882 05479| +200319 |PU Cep |234046.0+701940 |SR | 11.7 | 13.5 | |p | | | | |C |07883 07883| +200320 |PV Cep *|204554.0+675739 |INT | 11.1 | 18. | |R | | | | |A5Ve-K0e(T) |08950 07935| +200322 |PX Cep |213558.0+655142 |E | 12.0 | 13.7 | |p |36098.33 | | | | |04298 02786| +200324 |PZ Cep |225655.4+602510 |SRB | 12.3 | 13.0 | |I | | | 150. : | | |07920 07920| +200327 |QS Cep |230303.8+613018 |M | 12.2 | 14.3 | |I |40890. | | 146. |40 |M4-M5 |07920 07920| +200328 |QT Cep |230558.5+601459 |M | 11.9 | 13.8 | |I |41623. | | 460. |40 |M6: |07920 07920| +200332 |QX Cep |231330.3+625032 |M | 10.0 | 14.25 | |I |41660. | | 330. |50 |M7 |07920 07920| +200333 |QY Cep |231338.2+630902 |M | 10.6 | 14.5 | |I |41215. | | 353. |50 |M5 |07920 07920| +200334 |QZ Cep *|233712.4+665510 |EB/KE | 11.3 | 11.9 | 11.9 |p |37017.434 | | 1.5146774 | |A4 |08718 04015| +200337 |V0337 Cep |213755.2+620455 |ACYG | 4.69 | 4.78 | |V | | | | |B2Ib |08213 BD | +200338 |V0338 Cep *|214532.2+611230 |EA | 9.3 | 10.11 | 9.52 |V |44114.580 | | 2.1044165 |20 :*| |08952 BD | +200341 |V0341 Cep |211323.7+580248 |SR: | 12.5 | 14.0 | |R | | | | | |08376 08376| +200342 |V0342 Cep *|211730.1+581113 |M: | 12.0 | 14.5 | |R | | | | | |08376 08376| +200343 |V0343 Cep |211735.1+555936 |SRA | 9.8 | 11.4 | |R |42675. | | 525. | |C |08377 GSC | +200345 |V0345 Cep *|212440.3+571845 |SRA | 9.8 | 12.2 | |R |38418. | | 417.7 | | |02771 02771| +200347 |V0347 Cep *|212930.9+575927 |INSB: | 11.0 | 14.5 | |R | | | | | |07881 08376| +200351 |V0351 Cep *|223341.4+571906 |CWB | 9.25 | 9.70 | |V |42676.397 | | 2.80591 |38 |F8 |08958 BD | +200352 |V0352 Cep |230127.1+613350 |LB | 10.8 | 11.5 | |B | | | | |M7: |07920 07920| +200354 |V0354 Cep |223334.7+585348 |LC | 10.82 | 11.35 | |V | | | | |M2.7Iab |02556 GSC | +200355 |V0355 Cep |224910.5+591813 |LC | 10.68 | 11.10 | |V | | | | |M1.1Iab |02556 GSC | +200356 |V0356 Cep |231331.5+603019 |LC | 9.86 | 10.13 | |V | | | | |M0.8Ib |02556 GSC | +200360 |V0360 Cep |214018.7+682322 |DSCTC | 8.3 |( 0.03 )| |V | | | | | |67214 BD | +200361 |V0361 Cep |214250.2+660635 |INA | 10.07 | 10.20 | |V | | | | | |67215 BD | +200364 |V0364 Cep |213044.2+705959 |ACV: | 8.4 |( 0.025 )| |V | | | | | |68070 BD | +200365 |V0365 Cep |213042.4+613326 |SRA | 11.8 | 13.4 | |V | | | | | |69010 GSC | +200367 |V0367 Cep |230858.7+624856 |L | 8.24 | 8.91 | |B | | | | | |69089 BD | +200368 |V0368 Cep |231926.6+790013 |RS | 7.7 |( 0.04 B )| |V | | | | | |69090 69305| +200373 |V0373 Cep |214306.8+660654 |INA | 11.82 | 12.89 | |V | | | | | |70033 70034| +200374 |V0374 Cep |230507.5+621537 |BE | 10.2 | 10.7 | |V | | | | | |70036 70035| +200376 |V0376 Cep |215819.8+825216 |RS | 7.5 |( 0.07 )| |V | | | | | |71001 BD | +200377 |V0377 Cep |232420.7+862504 |DSCTC | 6.58 | 6.64 | |V | | | | | |71222 BD | +200378 |V0378 Cep |233133.9+861041 |ELL | 7.09 | 7.12 | |V | | | | | |71222 BD | +200379 |V0379 Cep |204313.7+570650 |EA | 6.65 |( 0.06 b )| |B | | | | | |72045 BD | +200380 |V0380 Cep |210136.9+680948 |INA | 7.10 | 7.36 | |U | | | | | |72187 72046| +200381 |V0381 Cep |211915.7+583725 |LC: | 5.51 | 5.71 | |V | | | | | |72047 BD | +200382 |V0382 Cep |211922.2+645219 |BE | 5.08 | 5.23 | |V | | | | | |72048 BD | +200383 |V0383 Cep |215147.6+615635 |EB | 7.27 | 7.58 | |V | | | | | |72050 72050| +200386 |V0386 Cep |225312.3+611701 |SR | 8.8 | 11.5 | |V | | | | | |72052 72052| +200387 |V0387 Cep |230323.7+602644 |LPB | 6.72 |( 0.02 b )| |B | | | | | |72045 BD | +200388 |V0388 Cep |231537.7+705317 |DSCT: | 5.56 |( 0.07 )| |V | | | | | |72053 BD | +200393 |V0393 Cep |215021.3+593656 |ISA: | 12.2 | 14.8 | |p | | | | | |73095 73095| +200395 |V0395 Cep |232052.1+741407 |INT | 9.5 |( 0.08 )| |V | | | | | |73100 GSC | +200396 |V0396 Cep |000241.9+750210 |LB: | 9.24 | 9.35 | |Hp| | | | | |HIP HIP | +200397 |V0397 Cep |000324.0+731028 |EA | 7.39 | 7.81 | |Hp| | | | | |HIP HIP | +200398 |V0398 Cep |000351.6+664244 |SRB | 6.30 | 6.40 | |Hp| | | | | |HIP HIP | +200399 |V0399 Cep |000449.0+681119 |IA | 9.15 | 9.35 | |Hp| | | | | |HIP HIP | +200400 |V0400 Cep |001301.0+723119 |WR | 10.58 | 10.77 | |Hp| | | | | |HIP HIP | +200401 |V0401 Cep |001406.0+732327 |SRB | 8.17 | 8.33 | |Hp| | | | | |HIP HIP | +200402 |V0402 Cep |002920.1+795242 |DSCTC | 10.56 | 10.64 | |Hp| | | | | |HIP HIP | +200403 |V0403 Cep |015602.9+805430 |SRB: | 7.19 | 7.33 | |Hp| | | | | |HIP HIP | +200404 |V0404 Cep |020459.9+825036 |LB: | 9.78 | 9.96 | |Hp| | | | | |HIP HIP | +200405 |V0405 Cep |024434.4+791156 |EA: | 8.75 | 8.95 | |Hp| | | | | |HIP HIP | +200406 |V0406 Cep |035650.7+844910 |LB: | 8.23 | 8.36 | |Hp| | | | | |HIP HIP | +200407 |V0407 Cep |042107.4+812542 |DSCTC | 8.06 | 8.15 | |Hp| | | | | |HIP HIP | +200408 |V0408 Cep |042813.3+834828 |GCAS: | 5.41 | 5.50 | |Hp| | | | | |HIP HIP | +200409 |V0409 Cep |043702.4+824125 |LB: | 9.30 | 9.42 | |Hp| | | | | |HIP HIP | +200410 |V0410 Cep |070939.5+853412 |LB: | 8.07 | 8.17 | |Hp| | | | | |HIP HIP | +200411 |V0411 Cep |082323.4+862243 |LB | 8.27 | 8.42 | |Hp| | | | | |HIP HIP | +200412 |V0412 Cep |201016.1+612045 |LB | 7.45 | 7.82 | |Hp| | | | | |HIP HIP | +200413 |V0413 Cep |202533.5+801313 |E: | 7.54 | 7.59 | |Hp| | | | | |HIP HIP | +200414 |V0414 Cep |204422.1+562918 |SRB: | 5.87 | 6.04 | |Hp| | | | | |HIP HIP | +200415 |V0415 Cep |204531.8+622345 |EA | 7.90 | 8.23 | |Hp| | | | | |HIP HIP | +200416 |V0416 Cep |204701.1+582500 |SRB: | 6.75 | 6.90 | |Hp| | | | | |HIP HIP | +200417 |V0417 Cep |205110.0+552920 |GCAS: | 8.28 | 8.48 | |Hp| | | | | |HIP HIP | +200418 |V0418 Cep |205124.1+570343 |BE | 9.34 | 9.48 | |Hp| | | | | |HIP HIP | +200419 |V0419 Cep |211247.3+600553 |LC: | 6.28 | 6.55 | |Hp| | | | | |HIP HIP | +200420 |V0420 Cep |211445.5+594540 |GCAS | 8.54 | 8.83 | |Hp| | | | | |HIP HIP | +200421 |V0421 Cep *|211718.8+583641 |BE: | 6.45 | 6.51 | |Hp| | | | | |HIP HIP | +200422 |V0422 Cep |211832.4+611104 |LB | 6.37 | 6.51 | |Hp| | | | | |HIP HIP | +200423 |V0423 Cep |212011.1+794603 |LB | 8.74 | 8.99 | |Hp| | | | | |HIP HIP | +200424 |V0424 Cep |212423.3+562142 |EA | 8.92 | 9.28 | |Hp| | | | | |HIP HIP | +200425 |V0425 Cep |212717.0+595330 |LPB | 9.20 | 9.31 | |Hp| | | | | |HIP HIP | +200426 |V0426 Cep |212725.3+594500 |LB | 6.04 | 6.19 | |Hp| | | | | |HIP HIP | +200427 |V0427 Cep |212732.6+591741 |EB: | 9.17 | 9.27 | |Hp| | | | | |HIP HIP | +200428 |V0428 Cep |213040.8+615013 |EB | 8.29 | 8.62 | |Hp| | | | | |HIP HIP | +200429 |V0429 Cep |213138.4+573009 |ACYG: | 7.48 | 7.54 | |Hp| | | | | |HIP HIP | +200430 |V0430 Cep |213301.1+620009 |BY: | 9.41 | 9.52 | |Hp| | | | | |HIP HIP | +200431 |V0431 Cep |213525.9+681309 |ACV | 6.42 | 6.47 | |Hp| | | | | |HIP HIP | +200432 |V0432 Cep |213659.6+580825 |BE | 8.56 | 8.66 | |Hp| | | | | |HIP HIP | +200433 |V0433 Cep |213657.1+681107 |GCAS: | 8.19 | 8.36 | |Hp| | | | | |HIP HIP | +200434 |V0434 Cep |213949.7+654401 |E | 9.12 | 9.31 | |Hp| | | | | |HIP HIP | +200435 |V0435 Cep |214434.0+590326 |BE | 9.48 | 9.59 | |Hp| | | | | |HIP HIP | +200436 |V0436 Cep |214604.7+790107 |SRB | 7.68 | 8.06 | |Hp| | | | | |HIP HIP | +200437 |V0437 Cep |214921.0+563333 |LB: | 9.32 | 9.49 | |Hp| | | | | |HIP HIP | +200438 |V0438 Cep |215426.6+801831 |SRB | 6.32 | 6.49 | |Hp| | | | | |HIP HIP | +200439 |V0439 Cep |215919.7+601752 |BE: | 7.69 | 7.80 | |Hp| | | | | |HIP HIP | +200440 |V0440 Cep |220119.9+593007 |ACYG: | 9.43 | 9.55 | |Hp| | | | | |HIP HIP | +200441 |V0441 Cep |220036.6+750423 |EA | 8.74 | 9.22 | |Hp| | | | | |HIP HIP | +200442 |V0442 Cep |220412.9+595202 |EB | 6.93 | 7.06 | |Hp| | | | | |HIP HIP | +200443 |V0443 Cep |220427.8+622428 |EA | 8.44 | 8.70 | |Hp| | | | | |HIP HIP | +200444 |V0444 Cep |220613.6+562036 |ELL: | 6.33 | 6.40 | |Hp| | | | | |HIP HIP | +200445 |V0445 Cep |220710.9+722222 |ELL: | 6.88 | 6.91 | |Hp| | | | | |HIP HIP | +200446 |V0446 Cep |220845.6+610121 |EA | 7.31 | 7.45 | |Hp| | | | | |HIP HIP | +200447 |V0447 Cep *|221059.6+632359 |LPB: | 7.39 | 7.44 | |Hp| | | | | |HIP HIP | +200448 |V0448 Cep *|221209.8+534156 |E: | 9.59 | 9.73 | |Hp| | | | | |HIP HIP | +200449 |V0449 Cep |221920.9+585711 |ACYG: | 8.95 | 9.06 | |Hp| | | | | |HIP HIP | +200450 |V0450 Cep |222503.7+575030 |BE | 10.29 | 10.45 | |Hp| | | | | |HIP HIP | +200451 |V0451 Cep |223226.9+583706 |LB | 10.27 | 11.12 | |Hp| | | | | |HIP HIP | +200452 |V0452 Cep |224210.3+752611 |SRD | 8.74 | 8.84 | |Hp| | | | | |HIP HIP | +200453 |V0453 Cep *|225245.8+605459 |EA | 7.54 | 7.66 | |Hp| | | | | |HIP HIP | +200454 |V0454 Cep *|225354.0+623548 |EA: | 9.15 | 9.25 | |Hp| | | | | |HIP HIP | +200455 |V0455 Cep |225608.6+585315 |ACYG | 8.48 | 8.53 | |Hp| | | | | |HIP HIP | +200456 |V0456 Cep |225656.1+595742 |ACV: | 7.18 | 7.23 | |Hp| | | | | |HIP HIP | +200457 |V0457 Cep |230928.4+682542 |LPB | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +200458 |V0458 Cep |231512.4+602702 |WR | 9.64 | 9.82 | |Hp| | | | | |HIP HIP | +200459 |V0459 Cep |232045.1+770346 |DSCTC | 7.72 | 7.75 | |Hp| | | | | |HIP HIP | +200460 |V0460 Cep |233801.6+652602 |LB | 8.35 | 8.55 | |Hp| | | | | |HIP HIP | +200461 |V0461 Cep |234909.1+684007 |LB: | 8.06 | 8.18 | |Hp| | | | | |HIP HIP | +200462 |V0462 Cep |235149.7+815013 |EB | 8.66 | 8.77 | |Hp| | | | | |HIP HIP | +200463 |V0463 Cep |000029.3+671300 |E: | 10.24 | 10.55 | |Hp| | | | | |HIP HIP | +200464 |V0464 Cep |202911.7+641623 |M | 11.9 | 15.4 | |V | | | | | |75087 75087| +200468 |V0468 Cep |203124.4+604019 |LB: | 12.0 |( 0.14 )| |Rc| | | | | |75088 75088| +200469 |V0469 Cep |203127.0+603818 |LB: | 12.1 |( 0.02 )| |Rc| | | | | |75088 75088| +200473 |V0473 Cep |204730.6+613812 |M | 12.3 |< 16.2 | |V | | | | | |75087 75087| +200474 |V0474 Cep |204855.8+632628 |LB | 12.3 |< 16.0 | |V | | | | | |75087 75087| +200477 |V0477 Cep |210326.9+595831 |M | 12.4 | 15.3 | |V | | | | | |75087 75087| +200479 |V0479 Cep |211349.9+615123 |SRA | 11.8 | 13.7 | |V | | | | | |75079 75079| +200480 |V0480 Cep |211707.6+553022 |M | 12.1 | 14.6 | |V | | | | | |75087 75087| +200481 |V0481 Cep |211927.2+612613 |M | 12.1 | 16.0 | |V | | | | | |75079 75079| +200486 |V0486 Cep |213308.2+614630 |SRA | 11.8 | 14.3 | |V | | | | | |75079 75079| +200488 |V0488 Cep |213519.2+573639 |IN | 12.4 | 13.4 | |p | | | | | |75089 75089| +200491 |V0491 Cep |214006.2+593544 |SRA | 12.3 | 14.7 | |V | | | | | |75079 75079| +200497 |V0497 Cep |215326.6+623513 |E: | 8.89 | 9.04 | |V | | | | | |75092 BD | +200498 |V0498 Cep |215444.1+635622 |M | 11.5 |< 16.0 | |V | | | | | |75079 75079| +200499 |V0499 Cep |215515.4+634333 |M | 12.0 | 14.7 | |V | | | | | |75079 75079| +200501 |V0501 Cep |215726.1+641249 |M | 12.2 | 15.5 | |V | | | | | |75079 75079| +200503 |V0503 Cep |215808.6+660003 |M | 11.8 | 16.0 | |V | | | | | |75079 75079| +200504 |V0504 Cep |215825.6+634328 |M | 11.4 | 15.2 | |V | | | | | |75079 75079| +200505 |V0505 Cep |220110.4+661030 |SRB | 12.0 | 14.5 | |V | | | | | |75079 75079| +200506 |V0506 Cep |220136.7+625927 |M | 12.4 | 15.3 | |V | | | | | |75079 75079| +200507 |V0507 Cep |220240.4+613729 |SRA | 12.4 | 14.7 | |V | | | | | |75079 75079| +200508 |V0508 Cep |220321.3+621829 |LB | 11.8 | 14.1 | |V | | | | | |75079 75079| +200510 |V0510 Cep |220430.1+620448 |LB | 12.0 | 14.3 | |V | | | | | |75079 75079| +200512 |V0512 Cep |220659.8+652810 |M | 11.8 | 14.6 | |V | | | | | |75079 75079| +200513 |V0513 Cep |220833.4+633442 |M | 12.5 |< 16.0 | |V | | | | | |75079 75079| +200514 |V0514 Cep |221100.1+593842 |M | 12.5 | 16.0 | |V | | | | | |75079 75079| +200520 |V0520 Cep |222306.5+564250 |SRA | 12.2 | 14.6 | |V | | | | | |75079 75079| +200522 |V0522 Cep |222640.2+583135 |LB | 11.0 | 13.3 | |V | | | | | |75079 75079| +200524 |V0524 Cep |223736.0+611609 |M | 11.8 |< 14.5 | |V | | | | | |75079 75079| +200526 |V0526 Cep |224254.6+655853 |M | 10.9 | 16.0 | |V | | | | | |75079 75079| +200530 |V0530 Cep |231432.3+785640 |M | 11.8 | 15. | |V | | | | | |75095 75291| +200531 |V0531 Cep |231810.6+655244 |M | 11.9 | 16.1 | |V | | | | | |75079 75079| +200535 |V0535 Cep |211735.0+651947 |SR: | 12.0 | 13.0 | |V | | | | | |76012 GSC | +200536 |V0536 Cep |211907.3+653113 |SR: | 11.2 | 11.7 | |V | | | | | |76012 GSC | +200537 |V0537 Cep |212024.0+644153 |SR: | 12.4 | 13.4 | |V | | | | | |76012 GSC | +200539 |V0539 Cep |212235.7+612910 |SR: | 12.3 | 12.9 | |V | | | | | |76012 GSC | +200541 |V0541 Cep |212336.2+615857 |SR: | 10.7 | 11.4 | |V | | | | | |76012 GSC | +200543 |V0543 Cep |212702.2+565955 |SR: | 10.9 | 11.5 | |V | | | | | |76012 GSC | +200545 |V0545 Cep |212805.8+662026 |SR: | 11.8 | 12.6 | |V | | | | | |76012 GSC | +200547 |V0547 Cep |212847.5+585329 |SR: | 12.1 | 12.6 | |V | | | | | |76012 GSC | +200550 |V0550 Cep |213015.8+581739 |SR: | 12.0 | 12.6 | |V | | | | | |76012 GSC | +200551 |V0551 Cep |213043.9+584648 |SR: | 12.0 | 12.6 | |V | | | | | |76012 USNO | +200553 |V0553 Cep |213103.5+675333 |SR: | 11.9 | 12.4 | |V | | | | | |76012 GSC | +200556 |V0556 Cep |213243.0+604253 |SR: | 12.5 | 13.6 | |V | | | | | |76054 GSC | +200560 |V0560 Cep |213610.4+554111 |SR: | 11.8 | 12.4 | |V | | | | | |76012 GSC | +200561 |V0561 Cep |213657.8+565736 |SR: | 12.2 | 12.8 | |V | | | | | |76012 GSC | +200564 |V0564 Cep |213833.3+691840 |SR: | 10.7 | 11.4 | |V | | | | | |76012 GSC | +200566 |V0566 Cep |213910.4+681612 |SR: | 12.5 | 13.0 | |V | | | | | |76012 GSC | +200567 |V0567 Cep |213925.6+675824 |SR: | 12.0 | 13.4 | |V | | | | | |76012 USNO | +200568 |V0568 Cep |213946.3+573936 |SR: | 11.6 | 12.2 | |V | | | | | |76012 GSC | +200569 |V0569 Cep |214004.7+555055 |SR: | 11.6 | 12.5 | |V | | | | | |76012 GSC | +200570 |V0570 Cep |214024.9+605043 |SR: | 12.3 | 12.8 | |V | | | | | |76054 GSC | +200571 |V0571 Cep |214050.0+554758 |SR: | 11.8 | 12.8 | |V | | | | | |76012 USNO | +200574 |V0574 Cep |214132.3+675247 |SR: | 11.7 | 12.3 | |V | | | | | |76012 GSC | +200578 |V0578 Cep |214345.7+675312 |SR: | 11.4 | 12.0 | |V | | | | | |76012 GSC | +200579 |V0579 Cep |214442.1+674929 |SR: | 11.9 | 13.0 | |V | | | | | |76012 GSC | +200580 |V0580 Cep |214443.7+632132 |SR: | 12.0 | 13.2 | |V | | | | | |76012 GSC | +200582 |V0582 Cep |214528.4+660017 |SR: | 11.8 | 12.4 | |V | | | | | |76012 GSC | +200583 |V0583 Cep |214549.8+681524 |SR: | 10.3 | 11.1 | |V | | | | | |76012 GSC | +200586 |V0586 Cep |214553.2+620016 |SR: | 12.0 | 12.9 | |V | | | | | |76012 GSC | +200587 |V0587 Cep |214554.9+591625 |SR: | 12.3 | 12.9 | |V | | | | | |76012 GSC | +200591 |V0591 Cep |214822.4+685210 |SR: | 10.7 | 11.3 | |V | | | | | |76012 GSC | +200592 |V0592 Cep |214940.8+644930 |SR: | 11.8 | 12.3 | |V | | | | | |76012 GSC | +200594 |V0594 Cep |215010.3+555456 |SR: | 12.3 | 13.0 | |V | | | | | |76012 GSC | +200596 |V0596 Cep |215113.2+661745 |SR: | 12.4 | 14.0 | |V | | | | | |76012 GSC | +200597 |V0597 Cep |215142.3+610235 |SR: | 11.9 | 12.5 | |V | | | | | |76012 GSC | +200600 |V0600 Cep |215341.3+591733 |SR: | 11.83 |( 0.6 )| |V | | | | | |76054 GSC | +200601 |V0601 Cep |215428.7+565056 |SR: | 10.9 | 11.8 | |V | | | | | |76012 GSC | +200603 |V0603 Cep |215456.8+663101 |SR: | 11.62 |( 0.5 )| |V | | | | | |76012 GSC | +200604 |V0604 Cep |215459.0+693034 |SR: | 11.7 | 12.2 | |V | | | | | |76012 GSC | +200605 |V0605 Cep |215514.0+564119 |SR: | 10.8 | 11.3 | |V | | | | | |76012 GSC | +200607 |V0607 Cep |215527.3+611714 |SR: | 12.4 | 12.9 | |V | | | | | |76012 GSC | +200609 |V0609 Cep |215534.7+595508 |SR: | 12.2 | 13.0 | |V | | | | | |76012 GSC | +200610 |V0610 Cep |215544.9+573921 |SR: | 12.5 | 13.6 | |V | | | | | |76012 GSC | +200612 |V0612 Cep |215631.4+663605 |SR: | 12.3 | 13.2 | |V | | | | | |76012 GSC | +200613 |V0613 Cep |215659.4+564608 |SR: | 11.4 | 12.0 | |V | | | | | |76012 GSC | +200616 |V0616 Cep |215735.5+614607 |SR: | 12.2 | 12.8 | |V | | | | | |76012 GSC | +200617 |V0617 Cep |215736.0+573541 |SR: | 11.4 | 11.9 | |V | | | | | |76012 GSC | +200619 |V0619 Cep |215817.1+660028 |SR: | 10.6 | 11.3 | |V | | | | | |76012 GSC | +200621 |V0621 Cep |215829.2+635007 |SR: | 11.5 | 12.0 | |V | | | | | |76012 GSC | +200623 |V0623 Cep |215906.2+604054 |SR: | 12.1 | 12.6 | |V | | | | | |76012 GSC | +200625 |V0625 Cep |215935.2+564832 |SR: | 11.5 | 12.5 | |V | | | | | |76012 GSC | +200626 |V0626 Cep |215938.5+642717 |SR: | 10.8 | 11.5 | |V | | | | | |76012 GSC | +200628 |V0628 Cep |220011.5+605134 |SR: | 11.6 | 12.2 | |V | | | | | |76012 GSC | +200629 |V0629 Cep |220024.4+555241 |SR: | 10.7 | 11.7 | |V | | | | | |76012 GSC | +200634 |V0634 Cep |220227.6+661247 |SR: | 11.4 | 12.5 | |V | | | | | |76012 GSC | +200635 |V0635 Cep |220253.1+565010 |SR: | 10.9 | 12.2 | |V | | | | | |76012 GSC | +200636 |V0636 Cep |220358.4+593911 |SR: | 11.0 | 11.8 | |* | | | | | |76057 GSC | +200638 |V0638 Cep |220428.8+683956 |SR: | 10.9 | 11.6 | |V | | | | | |76012 GSC | +200640 |V0640 Cep |220558.0+605955 |SR: | 11.8 | 12.9 | |V | | | | | |76012 GSC | +200641 |V0641 Cep |220605.0+554152 |SR: | 12.3 | 13.1 | |V | | | | | |76012 GSC | +200643 |V0643 Cep |220606.1+591529 |SR: | 11.7 | 12.4 | |V | | | | | |76012 GSC | +200644 |V0644 Cep |220621.1+593939 |SR: | 10.7 | 11.7 | |V | | | | | |76012 GSC | +200645 |V0645 Cep |220637.9+594121 |SRA | 11.0 | 13.0 | |V | | | | | |76240 GSC | +200646 |V0646 Cep |220844.0+611216 |SR: | 11.8 | 12.8 | |V | | | | | |76012 GSC | +200649 |V0649 Cep |220947.6+610937 |SR: | 12.4 | 13.2 | |V | | | | | |76012 GSC | +200651 |V0651 Cep |221256.2+594650 |SR: | 11.3 | 12.3 | |V | | | | | |76012 GSC | +200652 |V0652 Cep |221415.5+592201 |SR: | 11.6 | 12.3 | |V | | | | | |76012 GSC | +200654 |V0654 Cep |221514.9+574656 |SR: | 11.5 | 12.3 | |V | | | | | |76012 GSC | +200656 |V0656 Cep |221721.6+575805 |SR: | 12.1 | 12.8 | |V | | | | | |76012 GSC | +200657 |V0657 Cep |221800.6+623656 |SR: | 12.5 | 13.2 | |V | | | | | |76012 GSC | +200658 |V0658 Cep |221807.6+570138 |SR: | 11.6 | 12.7 | |V | | | | | |76054 GSC | +200659 |V0659 Cep |221818.6+673937 |SR: | 11.8 | 13.0 | |V | | | | | |76012 GSC | +200661 |V0661 Cep |222108.7+692757 |SR: | 11.8 | 12.3 | |V | | | | | |76012 GSC | +200663 |V0663 Cep |222257.5+583654 |SR: | 12.5 | 13.0 | |V | | | | | |76012 GSC | +200664 |V0664 Cep |222351.7+584417 |SR: | 12.4 | 13.4 | |V | | | | | |76012 GSC | +200666 |V0666 Cep |222512.3+593837 |SR: | 12.3 | 12.8 | |V | | | | | |76012 GSC | +200671 |V0671 Cep |222728.9+584203 |SR: | 12.3 | 13.2 | |V | | | | | |76012 GSC | +200672 |V0672 Cep |222729.5+592602 |SR: | 11.2 | 11.7 | |V | | | | | |76012 GSC | +200673 |V0673 Cep |222813.2+574731 |SR: | 12.2 | 12.7 | |V | | | | | |76054 GSC | +200674 |V0674 Cep |222817.4+591404 |SR: | 10.6 | 11.7 | |V | | | | | |76012 GSC | +200675 |V0675 Cep |222831.1+602749 |SR: | 12.0 | 12.9 | |V | | | | | |76054 GSC | +200676 |V0676 Cep |222847.2+583219 |SR: | 12.4 | 13.3 | |V | | | | | |76012 GSC | +200677 |V0677 Cep |222853.7+580109 |SR: | 12.3 | 13.0 | |V | | | | | |76054 GSC | +200679 |V0679 Cep |222937.8+593016 |SR: | 12.2 | 12.9 | |V | | | | | |76012 GSC | +200681 |V0681 Cep |223002.3+570313 |SR: | 11.7 | 13.0 | |V | | | | | |76054 GSC | +200682 |V0682 Cep |223141.1+590044 |SR: | 11.3 | 12.1 | |V | | | | | |76012 GSC | +200685 |V0685 Cep |223232.3+593406 |SR: | 11.64 |( 0.6 )| |V | | | | | |76012 GSC | +200686 |V0686 Cep |223337.3+633510 |SR: | 11.5 | 12.0 | |V | | | | | |76012 GSC | +200687 |V0687 Cep |223355.2+631853 |SR: | 11.8 | 12.3 | |V | | | | | |76012 GSC | +200690 |V0690 Cep |223416.6+675528 |SR: | 10.8 | 11.3 | |V | | | | | |76012 GSC | +200696 |V0696 Cep |224318.1+672734 |SR: | 10.4 | 11.2 | |V | | | | | |76012 GSC | +200697 |V0697 Cep |224528.4+675839 |SR: | 12.1 | 12.6 | |V | | | | | |76012 GSC | +200699 |V0699 Cep |224600.7+574650 |EW | 11.60 | 11.95 | |V | | | | | |76244 76244| +200701 |V0701 Cep |224730.9+671149 |SR: | 11.2 | 11.7 | |V | | | | | |76012 GSC | +200704 |V0704 Cep |212309.2+554915 |M | 9.0 | 11.7 | |I | | | | | |77012 77013| +200707 |V0707 Cep |224059.8+694615 |M | 9.9 | 12.4 | |I | | | | | |77012 77013| +200708 |V0708 Cep |224814.1+695829 |M | 7.7 | 11.0 | |I | | | | | |77012 77013| +200710 |V0710 Cep |230446.7+640525 |EB | 7.41 | 7.75 | |V | | | | | |77208 DM | +200711 |V0711 Cep *|230515.0+632345 |EA | 8.95 |( 0.23 )| |V | | | | | |77209 77209| +200715 |V0715 Cep |210654.2+613100 |LB: | 12.3 | 13.1 | |* | | | | | |78006 2MASS| +200716 |V0716 Cep |212703.5+592443 |M | 12.0 |< 17. | |* |51454 | | 330. : | | |78006 2MASS| +200722 |V0722 Cep |215912.4+585852 |SR | 12.5 | 13.3 | |* | | | 180. : | | |78006 2MASS| +200723 |V0723 Cep |220012.4+593117 |M: | 11.4 | 14.4 | |* | | | | | |78006 2MASS| +200726 |V0726 Cep |220802.5+584847 |M | 12.2 |< 15. | |R |51565 | | 320. : | | |78006 2MASS| +200728 |V0728 Cep |221749.2+591610 |SR: | 11.0 | 12.5 | |* | | | | | |78006 2MASS| +200731 |V0731 Cep |233743.3+641812 |EA | 10.53 |( 0.85 * )| |V |52591.2773 | | 6.068697 |06 | |78003 78308| +200734 |V0734 Cep |000738.6+760828 |EA | 11.05 | 11.42 | 11.40 |* |51482.647 | | 3.7659 |07 |A3IV |79003 GSC | +200735 |V0735 Cep |210223.9+600442 |EA | 11.39 | 11.87 | 11.82 |V |51481.644 | | 2.5035 |17 | |79009 GSC | +200736 |V0736 Cep |211629.1+552310 |EW | 9.96 | 10.42 | 10.40 |* |51288.827 | | 0.85785 | |F5 |79004 DM | +200737 |V0737 Cep *|212348.3+633328 |EW | 11.95 | 12.33 | 12.30 |* |51448.689 | | 0.298755 | | |79004 GSC | +200738 |V0738 Cep *|212955.1+585616 |EA | 10.00 | 10.29 | 10.25 |* |51428.659 | | 1.29827 |16 |B1:V |79004 DM | +200741 |V0741 Cep *|221348.1+671026 |EA | 9.09 | 9.25 | 9.17 |V |51450.602 | | 6.00911 |04 |B8 |79006 DM | +200743 |V0743 Cep *|221806.2+555416 |EA | 10.53 | 10.85 : | 10.8 : |* |51542.684 | | 4.6722 |14 : |B0III: |79004 GSC | +200744 |V0744 Cep |222405.0+684459 |EB | 12.20 | 12.54 | 12.40 |* |51426.642 | | 0.62455 | | |79009 79140| +200746 |V0746 Cep |224220.5+655443 |EA | 11.40 | 11.85 | 11.45 |* |51338.882 | | 1.25996 |15 | |79009 GSC | +200747 |V0747 Cep *|000146.9+673025 |EA | 9.97 | 10.13 | 10.05 |V |54400.5322 | | 5.33146 |06 |O5V(f)n |80009 80009| NL80_1 +200749 |V0749 Cep *|000748.6+704022 |EA | 10.62 | 11.0 | 10.9 |* |51358.71 | | 5.1398 |08 | |80013 GSC | NL80_1 +200750 |V0750 Cep *|001450.9+714945 |EA | 11.42 | 11.86 | 11.63 : |* |51465.650 | | 18.8805 |04 | |80023 GSC | NL80_1 +200753 |V0753 Cep *|001542.4+780029 |EA | 11.22 | 11.51 | 11.45 |* |51454.66 | | 68.13 |09 | |80013 GSC | NL80_1 +200754 |V0754 Cep *|001542.6+751155 |EW | 12.0 | 12.3 | 12.25 |* |51335.008 | | 0.40905 | | |80025 80025| NL80_1 +200794 |V0794 Cep *|011359.0+844526 |DSCTC: | 12.5 |( 0.04 )| |V | | | 0.0738 | | |80076 GSC | NL80_1 +200795 |V0795 Cep |012431.0+850107 |RRC | 11.48 | 11.68 | |* |51414.69 | | 0.36697 |50 |F0: |80083 GSC | NL80_1 +200796 |V0796 Cep *|014136.4+800419 |EW | 12.2 | 12.85 | 12.85 |V |53433.6360 | | 0.39290 | | |80210 80210| NL80_1 +200798 |V0798 Cep *|015434.8+792809 |EA | 11.90 | 12.50 | 12.43 |* |51607.605 | | 16.080 | | |80023 GSC | NL80_1 +200799 |V0799 Cep |015538.0+810709 |LB | 10.23 | 10.67 | |* | | | | | |80070 80070| NL80_1 +200805 |V0805 Cep *|033111.5+790016 |EA | 12.37 | 12.87 | 12.46 |* |51598.585 | | 6.2966 |03 : | |80013 GSC | NL80_1 +200806 |V0806 Cep *|041937.6+803546 |EA | 11.09 | 11.35 | 11.34 |* |51473.578 | | 1.35263 |10 | |80013 GSC | NL80_1 +200808 |V0808 Cep *|052045.9+851156 |EB | 11.55 | 11.92 | 11.78 : |* |51352.350 | | 0.484564 | | |80013 GSC | NL80_1 +200814 |V0814 Cep |201138.6+613349 |EA | 11.48 | 11.90 | 11.56 |* |51615.805 | | 1.72032 |11 | |80011 GSC | NL80_3 +200815 |V0815 Cep |201357.9+612419 |SRB | 10.8 | 11.25 | |* | | | 69. : | | |80539 80539| NL80_3 +200828 |V0828 Cep |204605.7+554201 |SR | 11.10 | 11.30 | |* | | | 62. | | |80546 GSC | NL80_3 +200831 |V0831 Cep |205515.9+605202 |LB: | 12.4 | 12.9 | |* | | | | | |80062 2MASS| NL80_3 +200832 |V0832 Cep |205526.1+613528 |RS | 12.2 | 12.4 | |* | | | 5.8098 | | |80539 80539| NL80_3 +200833 |V0833 Cep |205541.6+624435 |EB | 10.12 | 10.4 | 10.23 |* |51459.518 | | 0.707009 | | |80526 80526| NL80_3 +200838 |V0838 Cep |210237.4+625055 |EB | 12.5 | 13.05 | 12.65 |* |51502.746 | | 0.531977 | | |80526 80526| NL80_3 +200839 |V0839 Cep *|210331.7+592550 |EA | 9.93 | 10.24 | 10.19 |* |51448.645 | | 9.9634 |08 |B8 |80023 DM | NL80_3 +200844 |V0844 Cep |211422.8+821831 |RS | 12.5 | 12.85 | |* | | | 5.186 | | |80539 80539| NL80_3 +200847 |V0847 Cep |211912.1+735558 |SRB | 10.8 | 11.1 | |* | | | 45. | | |80100 GSC | NL80_3 +200848 |V0848 Cep |212050.2+571335 |SR | 10.4 | 10.8 | |* | | | 58. | | |80001 USNO | NL80_3 +200849 |V0849 Cep |212527.2+704002 |EA | 10.85 | 11.45 | 11.25 : |* |51414.125 | | 2.02958 |10 | |80107 80107| NL80_3 +200850 |V0850 Cep *|212952.1+645517 |EA | 9.98 | 10.6 | 10.31 : |V |51475.710 | | 12.922 |03 |A0 |80023 DM | NL80_3 +200851 |V0851 Cep |213022.7+701929 |LB | 12.3 | 12.7 | |* | | | | | |80070 80070| NL80_3 +200852 |V0852 Cep |213253.9+703743 |RS | 12.05 | 12.33 | |* | | | 22.7 | | |80069 80069| NL80_3 +200856 |V0856 Cep |213922.8+794208 |EW | 12.25 | 12.5 | 12.5 |* |51401.864 | | 0.314009 | | |80580 80580| NL80_3 +200858 |V0858 Cep |214745.0+725746 |LB | 12.1 | 12.5 | |* | | | | | |80539 80539| NL80_3 +200862 |V0862 Cep |215044.2+800816 |EA | 11.95 | 12.3 | 12.3 |* |51363.535 | | 1.28875 |16 | |80584 80584| NL80_3 +200863 |V0863 Cep |215233.0+654734 |EB | 12.5 | 12.8 | 12.7 |* |51277.661 | | 1.17652 | | |80539 80539| NL80_3 +200867 |V0867 Cep |215735.0+711829 |LB: | 10.1 | 10.7 | |* | | | | | |80100 GSC | NL80_3 +200869 |V0869 Cep |220336.1+551414 |SR | 11.4 | 11.8 | |* | | | 75. : | | |80001 USNO | NL80_3 +200870 |V0870 Cep |220426.6+615401 |EW | 10.93 | 11.17 | 11.15 |* |51299.985 | | 0.301067 | | |80013 GSC | NL80_3 +200871 |V0871 Cep |220634.3+565058 |SR | 12.2 | 12.7 | |* | | | 70. | | |80001 USNO | NL80_3 +200873 |V0873 Cep *|221233.6+571558 |ACYG | 8.5 |( 0.04 )| |R | | | 7.273 | |B9Iab |80591 80591| NL80_3 +200875 |V0875 Cep |221301.2+832005 |EW | 12.00 | 12.33 | 12.31 |* |51415.813 | | 0.60703 | | |80013 GSC | NL80_3 +200876 |V0876 Cep |221337.0+554428 |DSCT | 11.20 | 11.35 | |* |52617.476 | | 0.148585 | | |80171 GSC | NL80_3 +200877 |V0877 Cep |221345.8+754348 |EA | 11.70 | 12.16 | 12.0 |* |51421.718 | | 6.01927 |04 | |80013 GSC | NL80_3 +200878 |V0878 Cep |221444.8+680445 |BY | 11.12 | 11.22 | |* | | | 1.490 | | |80001 GSC | NL80_3 +200880 |V0880 Cep *|222459.6+701854 |EA | 10.63 | 11.06 | 10.81 |* |51467.580 | | 27.33 | | |80023 GSC | NL80_3 +200881 |V0881 Cep *|222515.9+701434 |EA | 11.64 | 11.96 | 11.73 |* |51466.747 | | 2.3337 |11 | |80023 GSC | NL80_3 +200882 |V0882 Cep *|222531.1+624527 |BY | 11.6 | 12.1 | |* | | | 22.889 | | |80001 GSC | NL80_3 +200884 |V0884 Cep |222851.3+731758 |SR | 12.5 | 13.0 | |* | | | 97. | | |80001 USNO | NL80_3 +200886 |V0886 Cep |223057.1+655306 |EA | 10.76 | 10.98 | 10.87 |* |51364.751 | | 3.8053 |08 |Be |80042 GSC | NL80_3 +200887 |V0887 Cep |223100.2+695221 |EA | 12.50 | 12.9 | 12.9 |* |51612.585 | | 1.69189 |05 | |80013 GSC | NL80_3 +200888 |V0888 Cep |223137.7+715359 |EA | 11.81 | 12.1 : | 12.05 : |* |51503.789 | | 2.92473 |06 | |80013 GSC | NL80_3 +200890 |V0890 Cep |223446.0+581805 |EA | 9.97 | 10.34 | 10.25 |V |52891.1763 | | 1.955103 | |O9V |80057 GSC | NL80_3 +200893 |V0893 Cep |223526.9+640755 |SR | 11.8 | 12.1 | |* | | | 50.4 | | |80001 GSC | NL80_3 +200894 |V0894 Cep |223630.3+632559 |LB | 12.5 | 13.0 | |* | | | | | |80062 USNO | NL80_3 +200895 |V0895 Cep |223637.3+643253 |EA | 11.00 | 11.28 | 11.26 |* |51504.779 | | 2.4859 |09 | |80001 DM | NL80_3 +200897 |V0897 Cep *|223718.8+705429 |EA | 11.45 | 11.69 | 11.65 |* |51474.575 | | 4.4871 |05 | |80023 GSC | NL80_3 +200898 |V0898 Cep *|223802.4+672759 |EA | 12.20 | 12.65 : | 12.64 : |* |51364.686 | | 2.87475 |07 | |80023 GSC | NL80_3 +200900 |V0900 Cep |223949.5+583255 |EA | 9.38 | 10.05 | 9.55 |V |52894.2908 | | 3.09209 | |B5V |80057 DM | NL80_3 +200901 |V0901 Cep |224010.4+603350 |DCEP | 11.1 | 11.4 | |* |51500.2 | | 9.0 | | |80081 GSC | NL80_3 +200902 |V0902 Cep |224107.8+824225 |EW | 11.78 | 12.28 | 12.23 |* |52856.842 | | 0.328692 | | |80042 GSC | NL80_3 +200903 |V0903 Cep |224202.9+580406 |LB | 10.14 | 10.40 | |V | | | | |M2III |80057 GSC | NL80_3 +200904 |V0904 Cep |224215.4+631853 |SR | 12.3 | 12.7 | |* | | | 66. | | |80001 GSC | NL80_3 +200907 |V0907 Cep |224543.4+732159 |EB | 12.35 | 12.9 | 12.6 |* |51514.789 | | 0.63622 | | |80584 80584| NL80_3 +200908 |V0908 Cep |224621.7+595731 |DCEPS | 11.28 | 11.55 | |V |52896.9093 | | 3.0332 |35 | |80057 GSC | NL80_3 +200909 |V0909 Cep |224712.2+595834 |EW | 12.13 | 12.47 | 12.44 |V |52892.0818 | | 0.425526 | | |80057 GSC | NL80_3 +200910 |V0910 Cep |224805.4+614502 |EA | 12.35 | 12.65 | 12.65 |* |51416.550 | | 2.4530 |13 | |80584 80584| NL80_3 +200911 |V0911 Cep |224823.1+602417 |DCEP | 12.09 | 12.73 | |V |52897.6785 | | 4.27785 |22 | |80057 GSC | NL80_3 +200912 |V0912 Cep |224902.3+723554 |SR | 11.0 | 11.45 | |* | | | 65. | | |80597 80597| NL80_3 +200915 |V0915 Cep |225128.0+714321 |EA | 11.18 | 11.61 | 11.45 |* |51341.863 | | 3.5697 |04 | |80013 GSC | NL80_3 +200919 |V0919 Cep *|225940.8+651240 |EA | 10.62 | 10.92 | 10.86 |* |51295.837 | | 1.85197 |10 | |80042 DM | NL80_3 +200920 |V0920 Cep |230109.6+595641 |BE | 11.2 | 11.7 | |* | | | | |Be |80077 80077| NL80_3 +200921 |V0921 Cep *|230114.0+623405 |EA | 11.62 | 12.20 | 12.03 |* |51311.870 | | 13.714 |07 | |80023 GSC | NL80_3 +200922 |V0922 Cep *|230139.2+694245 |EA | 11.46 | 11.92 | 11.92 |* |51606.605 | | 3.57494 |05 | |80023 GSC | NL80_3 +200923 |V0923 Cep |230224.9+724842 |EA | 11.57 | 12.00 | 11.85 |* |51403.677 | | 2.94152 |05 | |80013 GSC | NL80_3 +200924 |V0924 Cep |230307.9+775930 |EA | 11.81 | 12.15 | 11.94 |* |51318.730 | | 1.25771 |08 | |80013 GSC | NL80_3 +200925 |V0925 Cep |230542.2+751839 |EA | 11.64 | 11.95 | 11.69 : |* |51400.735 | | 2.14718 |10 | |80013 GSC | NL80_3 +200926 |V0926 Cep |230559.0+811042 |CWA | 12.45 | 12.7 | |* |51379. | | 45.35 |32 | |80177 GSC | NL80_3 +200927 |V0927 Cep |230641.7+704459 |EA | 9.60 | 10.05 | 10.05 |* |51426.62 | | 2.57791 |10 | |80013 DM | NL80_3 +200929 |V0929 Cep |230754.5+601028 |EA | 11.37 | 11.8 : | 11.8 : |* |51340.81 | | 7.0206 |05 | |80013 GSC | NL80_3 +200930 |V0930 Cep |231027.1+695448 |EW | 12.48 | 12.83 | 12.83 |* |51553.616 | | 0.393725 | | |80013 GSC | NL80_3 +200931 |V0931 Cep |231053.1+645547 |CEP | 11.35 | 11.55 | |* |51442.0 | | 19.2 |40 | |80116 80116| NL80_3 +200935 |V0935 Cep |232224.0+743844 |EB | 12.05 | 12.55 | 12.35 |* |51407.420 | | 1.2280 | | |80024 80024| NL80_3 +200937 |V0937 Cep |232350.4+781417 |EA | 11.95 | 12.3 | 12.3 |* |51417.698 | | 1.58145 |12 | |80013 GSC | NL80_3 +200939 |V0939 Cep |232439.8+711310 |EA | 12.39 | 13.0 | 12.9 : |* |51457.76 | | 5.5466 | | |80013 GSC | NL80_3 +200940 |V0940 Cep |232559.0+643456 |EB | 11.55 | 11.9 | 11.7 |* |51338.487 | | 0.97578 | | |80024 80024| NL80_3 +200944 |V0944 Cep *|233034.9+663346 |EA | 10.86 | 11.21 | 11.07 |* |51478.573 | | 6.560 | | |80023 GSC | NL80_3 +200945 |V0945 Cep |233254.6+654417 |EB | 11.87 | 12.17 | 12.02 |* |51609.340 | | 1.12995 | | |80024 80024| NL80_3 +200948 |V0948 Cep |233657.6+742030 |EA | 12.35 | 12.6 | 12.6 |* |51397.820 | | 1.13502 |10 | |80013 GSC | NL80_3 +200949 |V0949 Cep |233826.9+772434 |EA | 12.35 | 12.8 | 12.45 |* |51413.641 | | 1.067973 |05 | |80013 GSC | NL80_3 +200953 |V0953 Cep |234142.9+810335 |EA/RS | 11.08 | 12.00 | 11.34 |* |51356.739 | | 1.54912 |04 | |80042 GSC | NL80_3 +200954 |V0954 Cep *|234212.1+674902 |EB | 12.28 | 12.61 | 12.52 |* |51507.885 | | 0.51978 | | |80011 GSC | NL80_3 +200955 |V0955 Cep |234343.6+812752 |EA | 12.18 | 12.70 | 12.50 |* |51332.731 | | 1.040474 |10 | |80013 GSC | NL80_3 +200956 |V0956 Cep |234517.8+800412 |EA | 12.41 | 12.92 | 12.9 |* |51287.83 | | 6.0213 |03 | |80013 GSC | NL80_3 +200957 |V0957 Cep *|234610.4+712955 |EA | 11.52 | 11.96 | 11.94 |* |51504.666 | | 1.98873 | | |80023 GSC | NL80_3 +200958 |V0958 Cep |234950.0+822226 |EW | 10.75 | 10.88 | 10.88 |* |51362.575 | | 0.34529 | |F5 |80032 80032| NL80_3 +200959 |V0959 Cep |235012.9+683325 |EW | 11.45 | 11.68 | 11.68 |* |51535.698 | | 0.372266 | | |80011 DM | NL80_3 +200961 |V0961 Cep *|235806.0+673611 |EA | 10.43 | 10.83 | 10.75 : |* |51442.716 | | 7.0385 | |A5 |80023 DM | NL80_3 +209002 |bet Cep *|212839.6+703339 |BCEP | 3.16 | 3.27 | |V |40444.625 | | 0.1904881 |50 |B2IIIeV |06487 BD | +209004 |del Cep *|222910.3+582455 |DCEP | 3.48 | 4.37 | |V |36075.445 | | 5.366341 |25 |F5Ib-G1Ib |02392 08953| +209005 |eps Cep *|221502.2+570237 |DSCTC | 4.15 | 4.21 | |V | | | 0.041242 | |F0IV |08955 BD | +209006 |zet Cep *|221051.3+581205 |E: | 3.50 | 3.54 | |Hp| | | | | |HIP HIP | +209012 |mu. Cep *|214330.5+584648 |SRC | 3.43 | 5.1 | |V | | | 730. | |M2eIa |08956 08953| +209013 |nu. Cep |214526.9+610715 |ACYG | 4.25 | 4.35 | |V | | | | | |68370 BD | +210001 |R Cet |022602.3-001042 |M | 7.2 | 14. | |V |43768. | | 166.24 |43 |M4e-M9 |00001 00002| +210002 |S Cet |002403.6-091941 |M | 7.6 | 14.7 | |V |42650. | | 320.45 |47 |M3e-M6.5e: |00001 00002| +210003 |T Cet |002146.3-200329 |SRC | 5.0 | 6.9 | |V |40562. | | 158.9 | |M5-6SIIe |00001 00002| +210004 |U Cet |023343.7-130854 |M | 6.8 | 13.4 | |V |42137. | | 234.76 |44 |M2e-M6e |00001 00002| +210005 |V Cet |235754.0-085731 |M | 8.6 | 14.8 | |V |38792. | | 257.82 |45 |M3e |00001 00002| +210006 |W Cet *|000207.4-144033 |M | 7.1 | 14.8 | |V |38578. | | 351.31 | |S6,3e-S9,2e |00001 00002| +210007 |X Cet |031926.1-010356 |M | 8.4 | 13.0 | |V |41953. | | 177.14 |49 |M2e(S)-M6e |00001 00002| +210009 |Z Cet |010645.1-012853 |M | 8.4 | 14.2 | |V |41679. | | 184.81 |48 |M1e-M6.5e |00001 00002| +210010 |RR Cet *|013208.2+012030 |RRAB | 9.10 | 10.10 | |V |33181.404 | | 0.55302814 |12 |A7-F5 |03506 00188| +210011 |RS Cet |022800.1+001317 |SR: | 7.9 | 8.6 | |V | | | | |G |00179 08953| +210012 |RT Cet |011652.8-235040 |LB | 10.6 | 11.8 | |p | | | | |M6 |08905 00022| +210013 |RU Cet *|010040.3-155728 |RRAB | 10.83 | 12.13 | |V |39826.411 | | 0.586280 |18 |A7:-F8 |05233 02455| +210014 |RV Cet *|021514.9-104801 |RRAB | 10.35 | 11.22 | |V |39113.363 | | 0.623403 |20 |F0-G5 |05233 00184| +210015 |RW Cet *|021521.4-121227 |EA/SD | 10.43 | 11.4 | 10.5 |B |42229.3883 | | 0.9752009 |21 *|A5 |08593 00186| +210016 |RX Cet *|003338.3-152915 |RRAB | 11.01 | 11.75 | |V |40125.799 | | 0.5736918 |20 |F0:-F4 |05839 00188| +210017 |RY Cet |021600.1-203111 |M | 10.5 |< 13.5 | |p |25795. | | 374. | |M5e-M7 |00189 00190| +210018 |RZ Cet *|022832.4-082130 |RRAB | 11.24 | 12.36 | |V |33906.892 | | 0.51061074 |16 |A6-F4 |06071 00188| +210019 |SS Cet *|024836.3+014827 |EA/SD | 9.4 | 13.0 | |V |42451.329 | | 2.973976 |13 |A0 |00001 00192| +210023 |SW Cet |013830.1+012140 |LB | 9.8 | 10.9 | |p | | | | |M7III |00195 00196| +210026 |SZ Cet |010459.2-024137 |L: | 12.5 | 13.2 | |p | | | | | |00193 BD | +210027 |TT Cet *|014656.5-094510 |EW/KE: | 10.8 | 11.32 | 11.1 |V |32545.830 | | 0.4859565 | |A |01005 02532| +210028 |TU Cet *|025921.7+031633 |EA/SD | 10.8 | 11.8 | 10.9 |V |28507.240 | | 4.39117 |14 |F6-F8V |00197 00197| +210029 |TV Cet *|031436.5+024516 |EA/DM | 8.60 | 9.32 | 9.10 |V |41275.962 | | 9.1032884 |03 *|F2 |06011 08953| +210030 |TW Cet *|014854.1-205335 |EW/KW | 10.43 | 11.18 | 11.14 |V |42373.378 | | 0.3168519 | |G5+G5 |00001 08953| +210031 |TX Cet *|015606.3-004420 |EB/KE | 10.90 | 11.47 | 11.12 |V |43082.6343 | | 0.74084025 | |A2nn |08809 00192| +210032 |TY Cet *|022044.3-142323 |EW/KE | 11.62 | 12.1 | 12.1 |B |27414.006 | | 0.647364 | |F0 |00192 00192| +210033 |TZ Cet |022242.4-101208 |SR | 10.0 | 10.47 | |B |29220. | | 95. | |M3 |00199 08953| +210034 |UU Cet *|000405.1-165952 |RRAB | 11.54 | 12.36 | |V |41208.576 | | 0.606081 |20 |A7-F6: |07984 00182| +210035 |UV Cet *|013901.4-175702 |UV | 6.8 | 12.95 | |V | | | | |M5.5Ve | 00002| +210038 |UY Cet |002706.5-063617 |SRB | 9.8 | 11.4 | |p |26755. | | 440. |53 |M7 |00201 08953| +210039 |UZ Cet |020605.7-101245 |SRA | 9.6 | 10.6 | |p |26615. | | 121.74 | |M2 |00123 08953| +210040 |VV Cet *|005543.3-020538 |EW/KE | 10.3 | 11.0 | 11.0 |p |31328.483 | | 0.522390 | |A5 |03566 BD | +210041 |VW Cet |013904.3-175049 |EB/KW: | 11.6 | 12.1 | |V |35111.396 | | 0.486 | | |02209 05288| +210042 |VX Cet *|023935.2-001544 |EA/SD: | 11. | 11.5 | |p |26955.895 | | 2.7207954 |06 |F |06078 00205| +210043 |VY Cet *|014933.7-193729 |EW/KW | 11.10 | 11.72 | 11.70 |V |35429.021 | | 0.3408097 | | |00001 BD | +210044 |VZ Cet *|021920.8-025840 |* | 9.5 | 12. | |V |33300. :| | 4750. : |50 |Beq |02115 08953| +210045 |WW Cet *|001124.7-112843 |UG | 9.3 | 16.8 | |p | | |( 31.2 ) | |pec(UG) |08810 08852| +210046 |WX Cet |011704.2-175623 |UG | 9.5 | 18. | |p | | |( 450. :) | |pec(UG) |08928 08927| +210047 |WY Cet |013535.9-115631 |EA/SD: | 9.6 | 10.4 | |p |26619.350 | | 1.939675 |13 *|A2 |05304 BD | +210048 |WZ Cet *|014100.7-064334 |EA/DM | 10.8 | 11.4 | 11.0 |p |26308.350 | | 6.645088 |14 *|A0 |04020 BD | +210050 |XY Cet *|025933.5+033103 |EA/DM | 8.65 | 9.54 | 9.34 |V |38372.949 | | 2.780712 |10 |Am+Am |05488 04132| +210051 |XZ Cet |020016.6-162046 |RRAB | 9.24 | 9.71 | |V | | | 0.8231000 |22 |A |03306 08953| +210052 |YY Cet *|020012.0-181228 |EB/KE: | 9. | 9.4 | 9.2 |p |27333.500 | | 1.117455 | |A7 |05377 BD | +210055 |AA Cet *|015900.7-225511 |EW/KE | 6.2 | 6.7 | 6.7 : |p |41268.689 | | 0.53616996 | |F2 |00001 08953| +210056 |AB Cet *|022600.3-152029 |ACV: | 5.71 | 5.88 | |V |33226.69 | | 2.997814 |50 |A5Vp(Sr-Cr) |05880 BD | +210057 |AC Cet |001058.0-183423 |LB | 7.96 | 8.29 | |V | | | | |M5III |05973 BD | +210058 |AD Cet *|001427.6-074650 |LB: | 4.9 | 5.16 | |V | | | | |M3III |05841 BD | +210059 |AE Cet |001438.4-185558 |LB: | 4.26 | 4.46 | |V | | | | |M1III-M3III |05841 BD | +210060 |AF Cet |002023.1-232259 |LB | 9.99 | 10.25 | |V | | | | |M6III |05973 CoD | +210061 |AG Cet |002800.6-113932 |SRB | 6.99 | 7.45 | |V | | | 90. : | |M3 |05973 08953| +210062 |AH Cet |003805.1-212436 |LB | 9.44 | 9.56 | |V | | | | |M6III |05973 BD | +210063 |AI Cet |004201.2-093852 |SRB | 8.48 | 9.00 | |V | | | 47. : | |M8 |05973 08953| +210064 |AK Cet |010030.4-121145 |LB | 7.68 | 7.94 | |V | | | | |M3 |05973 BD | +210065 |AL Cet |010838.9-170349 |LB | 8.75 | 9.07 | |V | | | | |M5III |05973 BD | +210066 |AM Cet |011117.3-133012 |SRB | 6.84 | 7.12 | |V | | | 70. : | |M5III |05973 BD | +210067 |AN Cet |011414.8-021046 |SRB | 8.37 | 8.74 | |V | | | 20. : | |M4 |05973 BD | +210068 |AO Cet |012017.2-094451 |LB | 9.05 | 9.29 | |V | | | | |M2 |05973 BD | +210069 |AP Cet |013425.8-185828 |SR: | 11. |< 12. | |p | | | | |M7 |00190 00190| +210070 |AQ Cet |014954.6-045134 |LB | 8.49 | 9.00 | |V | | | | |MC |05973 BD | +210071 |AR Cet |020026.8-083126 |SR: | 5.40 | 5.61 | |V | | | | |M3III |05973 BD | +210072 |AS Cet |021808.6-140801 |LB | 7.90 | 8.09 | |V | | | | |M2 |05973 BD | +210073 |AT Cet |024157.5-223622 |SRB | 8.08 | 8.32 | |V | | | 60. : | |M5 |05973 00022| +210074 |AU Cet |000239.3-192639 |SR | 9.53 | 9.90 | |V | | | 47. | |M6III |05973 BD | +210075 |AV Cet |012402.5-080027 |DSCTC | 6.20 | 6.22 | |V | | | 0.070 | |F0V |06255 BD | +210077 |AX Cet |002159.7-214517 |EA | 11.5 |< 12.5 | |p | | | | | |00190 06286| +210078 |AY Cet |011636.3-023001 |RS | 5.35 | 5.58 | |V | | | | |G5III-IVe |08933 BD | +210080 |BB Cet |003831.9-201748 |ACV | 6.63 | 6.64 | |V |42620.629 | | 1.4788 |30 |B8p(Si) |00208 BD | +210081 |BC Cet |005732.5-102833 |ACV | 7.64 | 7.66 | |V | | | 1.11 | |A0p(Si) |08934 BD | +210082 |BD Cet |002246.3-091351 |RS | 8.2 |( 0.10 )| |V | | | | | |67226 BD | +210083 |BE Cet |002251.8-121234 |BY | 6.38 | 6.43 | |V | | | | | |67239 BD | +210085 |BG Cet |003606.9-225032 |DSCTC | 6.35 |( 0.009 )| |B | | | | | |67245 CoD | +210087 |BI Cet |012250.3+004243 |RS | 8.08 | 8.30 | |V | | | | | |68279 BD | +210088 |BK Cet |015252.1-165545 |DSCTC | 5.73 | 5.81 | |V | | | | | |68079 BD | +210091 |BN Cet |020615.8-190726 |ACVO | 9.3 |( 0.01 B )| |V | | | | | |71009 BD | +210096 |BS Cet |024026.6-142657 |DSCTC | 6.65 | 6.73 | |V | | | | | |71017 BD | +210098 |BU Cet |003514.9-033534 |RS | 3.86 | 3.96 | |K | | | | | |72054 BD | +210100 |BW Cet |013116.5-110708 |ACVO | 9.38 |( 0.01 B )| |V | | | | | |73101 BD | +210101 |BX Cet |023615.3+065218 |BY | 11.64 | 11.68 | |V | | | | | |73018 73102| +210102 |BY Cet |024726.9-001222 |RS | 9.55 | 9.69 | |V | | | | | |73103 BD | +210103 |BZ Cet |030002.8+074459 |BY | 7.95 |( 0.05 )| |V | | | | | |73005 BD | +210106 |CE Cet |000616.9-104643 |SRB | 7.54 | 7.67 | |Hp| | | | | |HIP HIP | +210107 |CF Cet |000833.5-173441 |SRB | 6.11 | 6.27 | |Hp| | | | | |HIP HIP | +210108 |CG Cet |000853.6-221046 |SRB | 7.12 | 7.23 | |Hp| | | | | |HIP HIP | +210109 |CH Cet |001253.4-221551 |LB | 8.53 | 8.67 | |Hp| | | | | |HIP HIP | +210110 |CI Cet |001713.2-140633 |ACV: | 9.46 | 9.52 | |Hp| | | | | |HIP HIP | +210111 |CK Cet |002257.0-203924 |EB | 10.41 | 10.74 | |Hp| | | | | |HIP HIP | +210112 |CL Cet *|002904.1-171301 |RRC: | 9.88 | 10.00 | |Hp| | | | | |HIP HIP | +210113 |CM Cet |003314.3-104343 |LB: | 9.58 | 9.73 | |Hp| | | | | |HIP HIP | +210114 |CN Cet |004010.0-085553 |EA: | 9.10 | 9.74 | |Hp| | | | | |HIP HIP | +210115 |CO Cet |005240.6-212619 |SRD | 7.48 | 7.61 | |Hp| | | | | |HIP HIP | +210116 |CP Cet |005800.4-223545 |SRD | 8.57 | 8.63 | |Hp| | | | | |HIP HIP | +210117 |CQ Cet |005843.8-193758 |SRB | 7.11 | 7.24 | |Hp| | | | | |HIP HIP | +210118 |CR Cet |010040.4-013931 |SRB | 6.81 | 6.94 | |Hp| | | | | |HIP HIP | +210119 |CS Cet |010649.0-225121 |BY: | 7.89 | 7.95 | |Hp| | | | | |HIP HIP | +210120 |CT Cet |010945.8-201259 |EW | 9.41 | 9.59 | |Hp| | | | | |HIP HIP | +210121 |CU Cet |012037.1-082453 |SRB | 8.66 | 9.70 | |Hp| | | | | |HIP HIP | +210122 |CV Cet |012236.2-045612 |SRB | 9.23 | 9.65 | |Hp| | | | | |HIP HIP | +210123 |CW Cet |012330.2-135527 |RR: | 8.40 | 8.49 | |Hp| | | | | |HIP HIP | +210124 |CX Cet |013028.1-173359 |E: | 9.60 | 10.22 | |Hp| | | | | |HIP HIP | +210125 |CY Cet |013258.9+000737 |SRB: | 7.98 | 8.11 | |Hp| | | | | |HIP HIP | +210126 |CZ Cet |013953.8-225448 |SRB | 7.28 | 7.40 | |Hp| | | | | |HIP HIP | +210127 |DD Cet |014235.8-201021 |SRD | 7.30 | 7.34 | |Hp| | | | | |HIP HIP | +210128 |DE Cet |014521.4-031008 |SRB | 7.39 | 7.57 | |Hp| | | | | |HIP HIP | +210129 |DF Cet |014731.4-075237 |LB: | 8.55 | 8.66 | |Hp| | | | | |HIP HIP | +210130 |DG Cet |015037.3-045715 |E | 9.03 | 9.49 | |Hp| | | | | |HIP HIP | +210131 |DH Cet |015034.0-173900 |SR | 9.31 | 9.93 | |Hp| | | | | |HIP HIP | +210132 |DI Cet |015128.3-152719 |SRD | 9.42 | 9.72 | |Hp| | | | | |HIP HIP | +210133 |DK Cet |015749.0-215405 |BY: | 8.16 | 8.28 | |Hp| | | | | |HIP HIP | +210134 |DL Cet |015911.3+013645 |SRB | 11.29 | 11.76 | |Hp| | | | | |HIP HIP | +210135 |DM Cet |020446.7-171715 |LB | 7.27 | 7.52 | |Hp| | | | | |HIP HIP | +210136 |DN Cet |020646.6+035415 |SRB | 8.51 | 8.72 | |Hp| | | | | |HIP HIP | +210137 |DO Cet |020844.9-172329 |LB: | 7.93 | 8.03 | |Hp| | | | | |HIP HIP | +210138 |DP Cet |020951.4+034610 |EA | 6.85 | 7.05 | |Hp| | | | | |HIP HIP | +210139 |DQ Cet |021535.7-232208 |LB | 7.76 | 8.02 | |Hp| | | | | |HIP HIP | +210140 |DR Cet |021622.9+030611 |SRB | 9.14 | 9.35 | |Hp| | | | | |HIP HIP | +210141 |DS Cet |021609.3-210030 |EA: | 8.97 | 9.34 | |Hp| | | | | |HIP HIP | +210142 |DT Cet |022537.8+084318 |EB: | 9.15 | 9.27 | |Hp| | | | | |HIP HIP | +210143 |DU Cet |023305.1+100814 |LB: | 10.08 | 10.32 | |Hp| | | | | |HIP HIP | +210144 |DV Cet |023352.7-060020 |LB: | 8.35 | 8.45 | |Hp| | | | | |HIP HIP | +210145 |DW Cet |023440.5-024740 |SRB | 8.47 | 8.63 | |Hp| | | | | |HIP HIP | +210146 |DX Cet |023602.6+062557 |DSCT | 6.96 | 7.16 | |Hp| | | | | |HIP HIP | +210147 |DY Cet |023833.2-141757 |EW | 9.54 | 10.12 | |Hp| | | | | |HIP HIP | +210148 |DZ Cet |023836.2-210218 |LB: | 8.00 | 8.13 | |Hp| | | | | |HIP HIP | +210149 |EE Cet *|024952.4+085623 |EW | 8.78 | 9.03 | |Hp| | | | | |HIP HIP | +210150 |EF Cet |024951.7+062802 |LB: | 12.08 | 12.53 | |Hp| | | | | |HIP HIP | +210151 |EG Cet |025346.2+092009 |SRB | 6.36 | 6.52 | |Hp| | | | | |HIP HIP | +210152 |EH Cet |025704.6+043004 |SRB: | 6.05 | 6.22 | |Hp| | | | | |HIP HIP | +210153 |EI Cet |030138.0+021006 |ACV: | 9.07 | 9.16 | |Hp| | | | | |HIP HIP | +210154 |EK Cet |031015.5+055432 |BY: | 11.59 | 11.99 | |Hp| | | | | |HIP HIP | +210155 |EL Cet *|031226.4+063939 |LB: | 5.66 | 5.70 | |Hp| | | | | |HIP HIP | +210156 |EM Cet |032237.9-003143 |EA: | 9.75 | 10.09 | |Hp| | | | | |HIP HIP | +210158 |EO Cet |012343.3-050546 |RPHS | 12.32 |( 0.05 )| |V | | | | | |75097 GSC | +210159 |EP Cet |022409.6-161516 |GDOR | 6.74 | 6.77 | |V | | | | | |75029 BD | +210161 |ER Cet |013406.6-101403 |M: | 11.7 | 15.2 | |V | | | | | |76012 GSC | +210163 |ET Cet |003221.6-183909 |SR: | 12.0 | 13.0 | |V | | | | | |77004 GSC | +210165 |EV Cet *|005753.8-004635 |EW | 11.6 |( 0.48 )|( 0.44 )|V |51131.3749 | | 0.4282299 | | |78017 GSC | +210166 |EW Cet |011624.2-120549 |BY | 7.55 |( 0.03 )| |V | | | 7.85 | |K0V |78018 DM | +210167 |EX Cet |013735.5-064538 |BY | 7.66 |( 0.02 )| |V | | | 7.15 | |G5V |78018 DM | +210168 |EY Cet |014058.8-052413 |BY | 8.50 |( 0.03 )| |V | | | 9.17 | |G0 |78018 DM | +210169 |EZ Cet |014923.4-104213 |BY | 6.75 |( 0.05 )| |V | | | 8.92 | |G1V |78005 DM | +210177 |FN Cet |020459.3-154041 |BY | 7.79 |( 0.04 )| |V | | | 15.78 | |K0V |78018 DM | +210178 |FO Cet |020610.7-101634 |GDOR | 6.68 | 6.75 | |V | | | 0.8227 | |F0 |78034 DM | +210180 |FQ Cet |021218.7-133042 |EA | 10.4 |( 0.1 )| |V |50185.5067 | | 6.709914 | | |78036 DM | +210181 |FR Cet *|022458.4-024648 |* | 6.31 | 6.65 | |V | | | | |A0III |78038 DM | +210182 |FS Cet |023507.6+034357 |R | 12.41 |( 0.01 )| |V | | | | |DAwke+M1.5V |78041 78009| +210183 |FT Cet |023641.8-030922 |BY | 8.10 |( 0.04 )| |V | | | 11.784 | |K0V |78018 DM | +210184 |FU Cet *|025953.2-004047 |* | 7.86 |( 0.05 )| |V | | | 21.20 | |G2III-IV |78018 DM | +210187 |FX Cet |004506.1-185415 |RRAB | 11.9 | 13.2 | |V |52569.644 | | 0.497032 |10 | |79170 79096| +210188 |FY Cet |013547.9-112229 |SRB | 9.4 | 10.9 | |V | | | 212. | |M0 |79100 79096| +210189 |FZ Cet |014225.3-221557 |UGSU | 12.2 | 18.7 | |p | | | | | |79229 79029| +210191 |GH Cet |015649.9-211144 |EA | 10.52 | 11.20 | 10.60 |V |51876.593 | | 1.135238 |12 | |79011 DM | +210193 |GK Cet |000347.5-112835 |RRAB | 12.3 | 13.2 | |V |52944.732 | | 0.74089 |25 | |80002 GSC | NL80_1 +210194 |GL Cet |001159.8-243359 |SRB | 9.7 | 10.9 | |V | | | 101. | |M6 |80002 GSC | NL80_1 +210195 |GM Cet |001244.9-110118 |SRB | 9.0 | 10.7 | |V | | | 215. | |M5 |80001 DM | NL80_1 +210196 |GN Cet |002431.5-095404 |LB | 10.3 | 11.0 | |V | | | | |M6 |80001 DM | NL80_1 +210198 |GP Cet *|003655.1-055227 |EA | 9.81 | 10.26 | 9.89 |V |51466.870 | | 3.4885 |12 |F0V |80048 DM | NL80_1 +210200 |GR Cet *|004716.0-194144 |EW | 11.21 | 11.59 | 11.47 |V |51868.031 | | 0.488810 | |FO |80036 DM | NL80_1 +210202 |GT Cet |010515.9+015914 |RS | 11.56 | 11.90 | |V | | | 6.9058 | | |80034 GSC | NL80_1 +210205 |GW Cet *|012848.3-112713 |RRAB | 12.4 | 13.9 | |V |52519.796 | | 0.516648 |30 : | |80001 GSC | NL80_1 +210208 |GZ Cet *|013701.1-091234 |UGSU | 12.4 | 18.6 | |V | | | | |pec(e)+M |80090 80027| NL80_1 +210212 |HL Cet |015752.3-053203 |RRC | 11.8 | 12.3 | |V |51870.083 | | 0.301467 |40 | |80002 GSC | NL80_1 +210214 |HN Cet |021952.3+091648 |RRAB | 12.3 | 13.2 | |V |51932.40 | | 0.462674 |30 | |80002 GSC | NL80_1 +210215 |HO Cet |023321.4-104705 |UGSU | 12.02 | 19.0 | |V | | | | | |80118 80118| NL80_1 +210218 |HR Cet |024236.2+071726 |RS | 8.83 | 9.10 | |V | | | 52.84 | |K0 |80034 DM | NL80_1 +210219 |HS Cet *|024644.5+010755 |EA | 10.5 | 11.1 | 11.1 |V |53381.240 | | 3.6910 |08 | |80002 DM | NL80_1 +210220 |HT Cet |030328.2+061336 |GDOR | 7.06 |( 0.02 )| |B | | | 1.0833 | |F2 |80130 HIP | NL80_1 +210223 |HW Cet |031234.3+094457 |RS | 10.10 | 10.52 | |V | | | 6.209 | | |80034 DM | NL80_1 +219001 |alf Cet |030216.8+040523 |LB: | 2.45 | 2.54 | |V | | | | |M2III |06994 BD | +219004 |del Cet *|023929.0+001943 |BCEP | 4.05 | 4.10 | |V |38338.4763 | | 0.16113668 | |B2IV |08935 BD | +2190101|kap 1 Cet |031921.7+032213 |BY | 4.95 | 4.99 | |Hp| | | | | |HIP HIP | +219015 |omi Cet *|021920.8-025840 |M | 2.0 | 10.1 | |V |44839. | | 331.96 |38 |M5e-M9e |00001 00002| +220001 |R Cha |082146.5-762118 |M | 7.5 | 14.2 | |V |42006. | | 334.58 |41 |M4e-M7e |00001 00002| +220002 |S Cha *|133313.7-773410 |CST | 6.51 | | |V | | | | |F5V |00207 CPD | +220003 |T Cha *|115713.5-792132 |INSB | 10.09 | 14.0 | |V | | | | |F5 |02412 03508| +220004 |U Cha |134826.7-823927 |M | 11.0 |< 13.5 | |p |23210. | | 341.3 | | |00031 GSC | +220005 |V Cha |074635.3-780110 |M | 12. |< 14. | |p | | | | |M5e |00085 04256| +220006 |W Cha |082822.2-763343 |M | 12. | 16. | |p |39317. | | 286.3 | | |06055 02385| +220007 |X Cha |103822.5-804646 |M | 10.8 | 17. | |p | | | | |Me |00085 02385| +220008 |Y Cha |112536.5-770035 |M | 11.3 | 16. | |p | | | | |Me |00085 02385| +220009 |Z Cha *|080728.2-763201 |UGSU+EA | 11.5 | 16.23 | |V | | |( 104.1 ) | |pec(UG) |06494 08852| +220011 |RS Cha *|084312.2-790412 |EA+DSCT | 6.02 | 6.68 | 6.53 |V |42850.7688 | | 1.669870 |15 *|A5V+A7V |04293 CPD | +220013 |RU Cha |101429.9-811944 |M | 11.4 | 16.2 | |p | | | | | |08727 04001| +220018 |RZ Cha *|104224.1-820214 |EA/DM | 8.2 | 9.1 | 8.8 |p |41401.7711 | | 2.832084 |11 *|F5+F5V |04302 CPD | +220025 |SY Cha *|105630.5-771140 |INSB | 12.2 | 15.0 | |p | | | | |K2Ve |04159 04068| +220032 |TY Cha |110206.4-815312 |M | 11.5 |< 16.5 | |p | | | | | |04001 04001| +220044 |VZ Cha *|110924.3-762321 |INS | 12.4 | 15.54 | |B | | | | |ea |04462 04068| +220053 |YZ Cha *|113409.1-774435 |EA/DM | 11.15 |( 0.4 )|( 0.4 )|B |42145.881 | | 4.457357 | |A0 |07002 04001| +220099 |BV Cha |130221.2-794526 |CWB | 12.4 | 13.4 | |p |38472.320 | | 1.238 |25 | |05449 04001| +220100 |BW Cha |134016.9-782237 |EA/SD: | 11.67 |( 0.8 )| |B |28664.400 | | 2.116255 |11 *| |05289 CPD | +220101 |BX Cha |111950.6-762849 |M | 12.5 |< 17. | |p | | | | | |04001 04001| +220110 |CI Cha |110721.4-814737 |LB: | 8.82 | 8.95 | |V | | | | |C |06353 CPD | +220111 |CK Cha |113323.8-772722 |M | 11. |< 13.1 | |p | | | | |Me |04001 05254| +220118 |CR Cha |105907.0-770140 |INB | 11.20 | 11.37 | |V | | | | |K2e |06415 06415| +220119 |CS Cha |110224.9-773336 |INB | 11.56 | 11.70 | |V | | | | |K5e |08378 08390| +220120 |CT Cha |110409.7-762719 |INB | 12.31 | 12.43 | |V | | | | |G8:ea |08378 08390| +220121 |CU Cha |110803.3-773918 |INA | 8.38 | 8.48 | |V | | | | |B9-A0Vpe |08378 06415| +220122 |CV Cha |111227.7-764422 |INB | 10.93 | 10.98 | |V | | | | |G8e(T:) |06415 06415| +220132 |DI Cha |110720.7-773807 |INT | 10.65 | 10.74 | |V | | | | | |70037 70009| +220133 |DK Cha |125317.1-770711 |INA | 9.28 | 11.15 | |J | | | | | |72057 72058| +220134 |DL Cha |130608.6-770627 |SRB | 12.3 | 13.3 | |p | | | | | |73105 73106| +220135 |DM Cha |085924.6-780534 |SRB | 8.22 | 8.36 | |Hp| | | | | |HIP HIP | +220136 |DN Cha |090005.1-754332 |SRB | 7.62 | 7.72 | |Hp| | | | | |HIP HIP | +220137 |DO Cha |090747.2-821930 |ELL: | 7.74 | 7.78 | |Hp| | | | | |HIP HIP | +220138 |DP Cha |094724.3-810341 |SRB | 7.84 | 7.98 | |Hp| | | | | |HIP HIP | +220139 |DQ Cha |103252.7-810947 |ACV | 7.80 | 7.84 | |Hp| | | | | |HIP HIP | +220140 |DR Cha |104151.5-794700 |E | 5.94 | 5.99 | |Hp| | | | | |HIP HIP | +220141 |DS Cha |111641.4-791553 |LB: | 8.96 | 9.09 | |Hp| | | | | |HIP HIP | +220142 |DT Cha |114436.1-774903 |LB: | 8.56 | 8.66 | |Hp| | | | | |HIP HIP | +220143 |DU Cha |114714.3-763705 |LB | 7.10 | 7.55 | |Hp| | | | | |HIP HIP | +220144 |DV Cha |114930.6-760932 |ACV | 9.93 | 10.07 | |Hp| | | | | |HIP HIP | +220145 |DW Cha |115828.2-775430 |BY: | 10.64 | 10.83 | |Hp| | | | | |HIP HIP | +220146 |DX Cha |120005.1-781135 |IA: | 6.59 | 6.70 | |Hp| | | | | |HIP HIP | +220147 |DY Cha |133912.0-754102 |LPB | 6.32 | 6.34 | |Hp| | | | | |HIP HIP | +220149 |EE Cha |115835.2-774932 |DSCT | 7.04 | 7.15 | |B | | | | | |76116 DM | +220150 |EF Cha |120705.5-784428 |DSCT | 7.86 | 7.97 | |B | | | | | |76116 DM | +220151 |EG Cha |083656.2-785646 |INT | 10.61 |( 0.07 )| |V | | | | | |77073 77074| +220156 |EM Cha |084307.1-790453 |INT | 10.84 |( 0.05 )| |V | | | | | |77073 77074| +220159 |EP Cha |084701.6-785934 |INT | 11.13 |( 0.19 )| |V | | | | | |77073 77074| +220161 |ER Cha |100513.7-790344 |DSCTC | 7.6 |( 0.08 )| |B | | | | | |77086 DM | +220164 |EU Cha |092308.1-783641 |M | 12.4 |< 15.2 | |V |53133 | | 228. | | |78040 USNO | +220165 |EV Cha |133252.5-761222 |M | 11.1 | 14.0 | |V |52731 | | 166. | |Me |78090 78133| +220166 |EW Cha |091402.6-821312 |EA | 8.60 | 8.91 | 8.65 |V |52658.760 | | 3.81876 |05 |A1V |79011 DM | +220167 |EX Cha |093325.7-785255 |M | 11.2 |< 15.0 | |V |52404. | | 238. | | |79064 79076| +220169 |EZ Cha |103909.0-775722 |LB | 9.0 | 10.3 | |V | | | | |Mc |79100 DM | +220170 |FF Cha |104644.9-802614 |LB | 9.6 | 10.7 | |V | | | | | |79100 79082| +220171 |FG Cha |105128.6-804640 |SRA | 12.1 | 14.8 | |V |53577. | | 176. | | |79064 79081| +220173 |FI Cha |110743.7-773941 |INT | 8.22 | 8.39 | |Ks| | | | |M0.5e |79088 79085| +220174 |FK Cha |110758.0-773845 |INT | 6.83 | 7.33 | |Ks| | | | |K7e |79088 79085| +220175 |FL Cha |110839.0-771604 |INT | 8.83 | 9.22 | |Ks| | | | |K8e |79088 79085| +220176 |FM Cha |110953.4-763426 |INT | 9.22 | 10.20 | |J | | | | |K4-K6e |79088 79085| +220177 |FN Cha |111004.7-763545 |INT | 9.12 | 9.32 | |Ks| | | | |M0e |79088 79088| +220178 |FO Cha *|111049.6-771752 |INT | 9.20 | 9.42 | |Ks| | | | |K7e |79088 79085| +220179 |FP Cha |112405.9-755449 |SRA | 11.3 | 12.6 : | |V |53774. | | 234. | | |79072 79063| +220180 |FQ Cha |113011.0-780703 |SRB | 11.4 | 13.3 | |V | | | 177. | | |79100 79063| +220181 |FR Cha |113522.8-815050 |SRB | 11.3 | 12.6 | |V | | | 144. | | |79100 79063| +220182 |FS Cha |115138.6-781154 |M | 12.5 |< 14.6 | |V |53574. | | 281. | | |79064 USNO | +220184 |FU Cha |120059.3-794600 |SRB | 10.6 | 11.3 | |V | | | 70.7 | | |79064 79063| +220185 |FV Cha |123333.9-822628 |SRB | 9.92 | 10.18 | |V | | | 26.5 | | |79064 79063| +220186 |FW Cha |124556.9-810008 |M | 12.4 |< 15.0 | |V |53798. | | 202. | | |79093 79093| +220189 |FZ Cha |130423.1-792738 |LB | 11.1 | 12.3 | |V | | | | | |79100 79063| +220190 |GG Cha |132157.3-781043 |LB | 8.0 | 8.9 | |V | | | | |M5III |79100 DM | +220191 |GH Cha |132927.8-790704 |SRB | 9.2 | 10.1 | |V | | | 280. | | |79100 DM | +220192 |GI Cha |133625.5-793327 |SRB | 12.1 | 13.3 | |V | | | 276. | | |79064 79063| +220193 |GK Cha |133753.4-755022 |M | 12.4 |< 14.1 | |V |53851. | | 277. | | |79190 USNO | +220194 |GL Cha |134735.3-760715 |M | 12.2 |< 14.5 | |V |53895. | | 283. | | |79100 GSC | +220195 |GM Cha *|110928.6-763328 |INT | 10.61 | 12.75 | |Ks| | | | | |80434 80434| NL80_2 +220197 |GO Cha *|093310.4-802834 |EW | 10.64 | 10.97 | 10.95 |V |51868.118 | | 0.406067 | | |80036 GSC | NL80_2 +220198 |GP Cha *|095357.6-763652 |RVB | 11.0 | 13.0 | |V | | | 100.6 | |G0 |80184 GSC | NL80_2 +220200 |GR Cha |110347.6-771956 |INT | 9.99 | 10.12 | |Ks| | | | |M5e |80348 80349| NL80_2 +220203 |GU Cha |110457.0-771557 |INT | 10.20 | 11.23 | |Ks| | | | |M3e |80348 80350| NL80_2 +220205 |GW Cha |110637.9-791011 |E: | 12.17 | 12.58 | |Ks| | | | | |80348 2MASS| NL80_2 +220206 |GX Cha |110641.8-763549 |INT | 10.09 | 10.28 | |Ks| | | | |M4.5e |80348 80349| NL80_2 +220208 |GZ Cha |110716.2-772307 |INB | 11.34 | 11.75 | |Ks| | | | |M1 |80348 2MASS| NL80_2 +220209 |HH Cha |110729.9-772502 |E: | 10.84 | 11.20 | |Ks| | | | |A |80348 2MASS| NL80_2 +220213 |HM Cha *|110757.3-771726 |INT | 9.62 | 9.99 | |Ks| | | | |M1e |80348 2MASS| NL80_2 +220214 |HN Cha *|110758.1-774241 |INT | 9.76 | 10.07 | |Ks| | | | |M2.5e |80348 80350| NL80_2 +220215 |HO Cha *|110803.0-773843 |INT | 8.09 | 8.36 | |Ks| | | | |M1e |80348 2MASS| NL80_2 +220216 |HP Cha *|110815.2-773353 |INT | 6.07 | 6.36 | |Ks| | | | |K7e |80348 80353| NL80_2 +220219 |HS Cha |110855.0-763241 |INT | 11.43 | 11.61 | |Ks| | | | |M5.5e |80348 2MASS| NL80_2 +220220 |HT Cha |110907.9-764911 |ISB: | 11.50 | 11.92 | |Ks| | | | |M3 |80348 2MASS| NL80_2 +220221 |HU Cha |110918.1-763029 |INT | 9.10 | 9.36 | |Ks| | | | |M1e |80348 80349| NL80_2 +220222 |HV Cha |110922.7-763432 |INT | 8.53 | 9.04 | |Ks| | | | |M1e |80348 2MASS| NL80_2 +220223 |HW Cha |110941.9-763458 |INB | 9.93 | 10.15 | |Ks| | | | | |80348 2MASS| NL80_2 +220224 |HX Cha |110954.1-762925 |INT | 9.22 | 9.40 | |Ks| | | | |M2e |80348 80350| NL80_2 +220226 |HZ Cha |110955.1-763241 |INB | 9.63 | 10.10 | |Ks| | | | | |80348 2MASS| NL80_2 +220227 |II Cha |111003.8-755340 |E: | 12.10 | 12.61 | |Ks| | | | | |80348 GSC | NL80_2 +220228 |IK Cha |111053.6-772501 |INT | 10.80 | 11.50 | |Ks| | | | |M4.5e |80348 2MASS| NL80_2 +220229 |IL Cha |111134.8-763621 |INT | 9.60 | 9.83 | |Ks| | | | |M2.5e |80348 GSC | NL80_2 +220230 |IM Cha |111203.5-772601 |INT | 11.45 | 12.04 | |Ks| | | | |M5e |80348 80355| NL80_2 +220231 |IN Cha |111209.8-763437 |INT | 9.77 | 9.97 | |Ks| | | | |M5e |80348 80350| NL80_2 +220232 |IO Cha |111333.6-763537 |INT | 10.65 | 10.86 | |Ks| | | | |M4.5e |80348 80350| NL80_2 +229006 |zet Cha *|093353.4-805629 | | 5.06 | 5.17 | |V | | | | |B5IV |04614 CPD | +230001 |R Cir |152753.6-574335 |SRB | 10.2 | 12.1 | |p | | | 222. | |M4/6III |00023 08953| +230002 |S Cir *|152917.4-580443 |EA/DS | 10.8 | 12.1 | 10.9 |p |29117.474 | | 9.976596 |15 |A: |00007 CoD | +230003 |T Cir *|134324.0-652832 |EA/SD | 9.3 | 10.6 | 9.4 |p |29095.586 | | 3.2984345 |13 |B6/8II/III |00007 06965| +230004 |U Cir *|140542.4-670055 |SR | 12.0 | 13.5 | |p |23950. | | 145. | |C |00047 00022| +230005 |V Cir *|144454.7-570156 |EB/DM | 10.8 | 11.3 | 11.0 |p |38499.325 | | 4.40901 | | |08040 CPD | +230008 |Y Cir |133909.9-650211 |E/SD: | 10.8 | 11.8 | |p |25327.50 | | 3.17 | | |00047 00022| +230009 |Z Cir |135102.5-702823 |RCB: | 12.0 | 15.0 | |p | | | | |Me |03578 00022| +230010 |RR Cir |135034.6-665752 |E | 12.0 | 13.0 | |p | | | | | |00047 00022| +230020 |ST Cir |140112.5-693224 |M | 12.4 | 16.0 : | |p |25410. | | 193.8 | | |00047 00022| +230025 |SY Cir |140333.8-693754 |RV | 12.2 | 15.0 | |p |25328.0 | | 46.36 | | |00047 00022| +230032 |TY Cir |140841.1-681455 |S: | 12.5 | 13.5 | |p | | | | | |00047 00022| +230037 |UX Cir |141559.3-673909 |E | 12.2 | 13.3 | |p | | | | | |00047 00022| +230039 |UZ Cir *|142052.1-673056 |M | 11.1 | 15.8 | |p |21700. | | 538. | | |00047 00022| +230041 |VW Cir |142153.9-662234 |SRB | 10.5 | 12.1 | |p |14750. | | 206. |47 |M2e |00047 00022| +230042 |VX Cir *|142308.4-695735 |M | 11.0 |< 16.5 | |p |25370. | | 417. | |M7e |00047 00022| +230043 |VY Cir |142423.2-695758 |E/SD: | 11.7 | 13.0 | |p | | | | | |00047 00022| +230050 |XY Cir |143103.9-663854 |E | 12.1 | 13.0 | |p | | | | | |00047 00022| +230058 |AD Cir |144133.1-682316 |LB: | 10.9 | 12.4 | |p | | | | |M5 |00016 00022| +230059 |AE Cir |144451.3-692335 |RCB | 12.2 | 16.0 : | |p | | | | | |00047 08129| +230061 |AG Cir |144722.8-675530 |S: | 12.5 | 13.5 | |p | | | | | |00047 00022| +230070 |AQ Cir *|143719.8-644524 |E/KE | 11.0 | 11.7 | |p |28656.350 | | 0.57284 | |OB |00016 CPD | +230072 |AS Cir |151339.5-602018 |SR: | 12. |< 13.5 | |p | | | | |C |00085 04256| +230073 |AT Cir *|140338.2-664407 |EA/DM | 8.4 | 8.8 | |p |15221.517 | | 3.257494 |15 |A5IV/V |08040 06871| +230074 |AU Cir |144345.3-664213 |EA/SD | 10.7 | 11.9 | |V |28334.225 | | 2.0660680 |14 *| |04183 CPD | +230075 |AV Cir |145030.3-672951 |DCEP | 8.0 | 8.6 | |p |38206.05 | | 3.0651 |40 |F7II |04383 08953| +230076 |AW Cir |145011.0-643243 |EA/SD: | 12. | 13.5 | |p | | | | | |06561 06561| +230077 |AX Cir *|145235.3-634835 |DCEP | 5.65 | 6.09 | |V |38199.54 | | 5.273268 |32 |F2-G2II+B4 |05060 CPD | +230080 |BB Cir |144257.5-581824 |EA/SD: | 9.4 | 10.2 | |p |38195.225 | | 3.0872 | |A2IV |05137 08953| +230082 |BD Cir *|145105.4-555500 |EA/KE: | 9.4 | 9.9 | 9.5 |p |38205.310 | | 0.86956 |18 | |04430 08953| +230084 |BF Cir *|150232.0-645742 |EB/DM: | 8.8 | 9.2 | 8.9 |p |38199.345 | | 6.458997 | |B5V |08040 08667| +230085 |BG Cir *|150421.5-660504 |EB/DM | 9.6 | 10.3 | 10.3 |p |34365.525 | | 1.911485 | |ea |03922 08667| +230091 |BN Cir *|151750.4-594342 |E | 9.2 | 9.6 | |p |38233.250 | | 6.7125 | |B9III/IV |06336 06336| +230092 |BO Cir |144600.4-652300 |DSCTC | 9.73 |( 0.02 )| |V |43584.120 | | 0.1412 |40 |Fm |08391 CPD | +230093 |BP Cir |144642.0-612743 |CEP | 7.54 |( 0.33 )| |V | | | 2.3984 |42 |F2/3II |02873 CPD | +230095 |BR Cir *|152040.8-571000 |XF | 7.21 | 11.38 | |K | | | | |e |02936 02911| +230096 |BS Cir |142332.1-663842 |ACV | 6.7 |( 0.14 )| |V | | | 2.205 | |A2p(Si-Cr) |02590 CPD | +230097 |BT Cir |144304.5-621226 |DSCTC | 7.4 |( 0.01 )| |V | | | | | |67247 CPD | +230098 |BU Cir |144511.0-553606 |BCEP | 6.10 |( 0.02 )| |V | | | | | |67249 CPD | +230099 |BV Cir |150102.2-643434 |DSCT | 6.8 |( 0.10 )| |V | | | | | |67250 CPD | +230102 |BY Cir |144453.5-635356 |N | 7.2 |< 12. | |V | | | | | |73108 73109| +230104 |CC Cir |151457.7-595030 |WR | 11.71 |( 0.10 )| |V | | | | | |73112 73090| +230105 |CD Cir |134631.5-644032 |LB: | 7.74 | 7.82 | |Hp| | | | | |HIP HIP | +230106 |CE Cir |140420.9-652458 |E: | 7.94 | 8.06 | |Hp| | | | | |HIP HIP | +230107 |CF Cir |141303.5-652653 |WR | 11.89 | 12.40 | |Hp| | | | | |HIP HIP | +230108 |CG Cir |143459.8-660150 |EA | 10.34 | 10.76 | |Hp| | | | | |HIP HIP | +230109 |CH Cir |143535.1-684421 |ACV | 7.72 | 7.78 | |Hp| | | | | |HIP HIP | +230110 |CI Cir |143555.0-695814 |LB | 7.12 | 7.23 | |Hp| | | | | |HIP HIP | +230111 |CK Cir |143931.7-681212 |BE | 6.81 | 6.89 | |Hp| | | | | |HIP HIP | +230112 |CL Cir |144404.1-562133 |EA | 8.57 | 9.15 | |Hp| | | | | |HIP HIP | +230113 |CM Cir |144757.1-683111 |ACV | 7.08 | 7.14 | |Hp| | | | | |HIP HIP | +230114 |CN Cir |144749.0-602526 |EB | 8.92 | 9.18 | |Hp| | | | | |HIP HIP | +230115 |CO Cir |144844.5-663537 |BE | 5.79 | 5.92 | |Hp| | | | | |HIP HIP | +230116 |CP Cir |145034.2-661534 |GCAS: | 7.51 | 7.74 | |Hp| | | | | |HIP HIP | +230117 |CQ Cir |145050.3-601710 |BE | 9.91 | 10.06 | |Hp| | | | | |HIP HIP | +230118 |CR Cir |145456.9-610433 |LC: | 7.39 | 7.50 | |Hp| | | | | |HIP HIP | +230119 |CS Cir |145812.2-611404 |EB | 8.95 | 9.14 | |Hp| | | | | |HIP HIP | +230120 |CT Cir |145841.2-575104 |SRB | 8.11 | 8.30 | |Hp| | | | | |HIP HIP | +230121 |CU Cir |150730.1-604637 |BE | 8.48 | 8.59 | |Hp| | | | | |HIP HIP | +230122 |CV Cir |150903.3-615315 |BE | 6.90 | 7.03 | |Hp| | | | | |HIP HIP | +230123 |CW Cir |151516.2-581022 |BE | 7.95 | 8.16 | |V | | | | | |HIP HIP | +230124 |CX Cir |151524.1-590429 |ACYG: | 8.04 | 8.23 | |Hp| | | | | |HIP HIP | +230125 |CY Cir |152013.0-572353 |LB | 6.98 | 7.14 | |Hp| | | | | |HIP HIP | +230126 |CZ Cir |152220.1-590850 |ACYG: | 7.92 | 8.02 | |Hp| | | | | |HIP HIP | +230127 |DD Cir |142323.4-690845 |NA | 7.5 |< 21. | |V | | | | | |75292 75293| +230129 |DF Cir |141751.4-680249 |RS | 7.54 |( 0.08 )| |V | | | 0.646 | |F5V |78046 DM | +230131 |DH Cir |134255.1-652242 |SRB | 12.1 | 12.9 | |V | | | 55. | | |79064 GSC | +230132 |DI Cir |140149.5-644917 |EA | 11.30 | 11.70 | 11.36 |V |52720.688 | | 1.44876 |14 | |79003 79099| +230133 |DK Cir *|144712.7-574038 |EA | 7.68 | 7.98 | 7.77 |V |52776.748 | | 18.569 |03 : |A1IV |79011 DM | +230134 |DL Cir |144808.1-603409 |EA | 12.30 | 13.85 | 12.45 |V |52643.849 | | 2.43419 |10 | |79018 79087| +230135 |DM Cir |152408.5-565015 |EW | 9.99 | 10.51 | 10.43 |V |53011.851 | | 0.386773 | |F7/G0 |79018 DM | +230136 |DN Cir |135129.2-654656 |M | 5.82 | 7.60 | |K | | | 690. | |C |80166 2MASS| NL80_2 +230137 |DO Cir |135203.6-673056 |M | 3.03 | 4.70 | |K | | | 500. | |C |80166 2MASS| NL80_2 +230141 |DS Cir |141856.4-691427 |SRB | 11.5 | 12.2 | |V | | | 81. | | |80001 GSC | NL80_2 +230143 |DU Cir |142436.7-653750 |M | 11.7 | 16.7 | |R |53454. | | 270. : | | |80001 2MASS| NL80_2 +230144 |DV Cir |143848.7-684849 |M | 10.2 |< 14.3 | |V |54691. | | 352. | |Me |80399 80399| NL80_2 +230146 |DX Cir |144043.7-645307 |M: | 11.8 |< 13.4 | |V |53741. | | 273. | | |80001 2MASS| NL80_2 +230147 |DY Cir |144313.8-570845 |M | 5.74 | 6.24 | |K | | | 488. | |C |80166 2MASS| NL80_2 +230148 |DZ Cir |144426.3-633328 |M | 7.20 | 9.63 | |K | | | 643. | |C |80166 2MASS| NL80_2 +230149 |EE Cir |144548.6-634551 |M | 11.7 |< 14.6 | |V |54493. | | 372. | | |80399 80399| NL80_2 +230152 |EH Cir |144804.2-572037 |M | 7.87 | 10.12 | |K | | | 723. | |C |80166 2MASS| NL80_2 +230153 |EI Cir |144916.9-663923 |M | 11.8 |< 14.4 | |V |54480. | | 385. | | |80399 80399| NL80_2 +230155 |EL Cir *|144941.0-674812 |M | 11.2 |< 14.0 | |V |53831. | | 232. | | |80399 80399| NL80_2 +230157 |EN Cir |145152.0-685512 |M | 11.8 |< 14.6 | |V |54499. | | 439. | | |80399 80399| NL80_2 +230158 |EO Cir |145310.7-640034 |M | 12.3 |< 15.8 | |V |54543. | | 256. | | |80399 80399| NL80_2 +230162 |ES Cir |150012.9-625403 |DSCT | 10.52 | 11.22 | |V | | | 0.101565 |19 | |80358 DM | NL80_2 +230163 |ET Cir |150125.4-654424 |M | 12.3 |< 14.9 | |V |55085. | | 437. | | |80002 2MASS| NL80_2 +230164 |EU Cir |150356.6-641343 |M | 12.3 |< 14.5 | |V |54705. | | 239. | |M5-M7 |80399 80399| NL80_2 +230165 |EV Cir |150546.5-582255 |DCEP | 11.9 | 13.1 | |V |53054.7 | | 16.7018 |25 | |80326 GSC | NL80_2 +230167 |EX Cir |151214.6-571328 |M | 6.17 | 8.63 | |K | | | 948. | | |80166 2MASS| NL80_2 +230168 |EY Cir |151335.3-635334 |SRB | 7.70 | 8.30 | |V | | | 58.0 | |M5III |80001 DM | NL80_2 +239001 |alf Cir |144230.4-645831 |ACVO | 3.18 | 3.21 | |V | | | | | |67251 CPD | +239003 |gam Cir |152322.6-591915 |BE: | 4.50 | 4.56 | |Hp| | | | | |HIP HIP | +239004 |del Cir |151656.9-605726 |ELL | 5.08 |( 0.1 )| |V | | | | | |72059 CPD | +239008 |tet Cir *|145644.0-624652 |GCAS | 5.02 | 5.44 | |V | | | | |B3Vne |08419 CPD | +240001 |R Col |055033.0-291155 |M | 7.8 | 15.0 | |V |42016. | | 327.62 |39 |M3e-M7 |00001 00002| +240002 |S Col |054656.3-314128 |M | 8.9 | 14.2 | |V |40559. | | 325.85 |46 |M6e-M8 |00001 00002| +240003 |T Col *|051917.3-334229 |M | 6.6 | 12.7 | |V |41973. | | 225.84 |50 |M3e-M6e |00001 00002| +240004 |U Col *|061453.1-330424 |EA/SD | 10.4 | 11.0 | 10.5 |p |28521.774 | | 1.24617466 |16 |A |00007 08953| +240005 |V Col |061015.2-304555 |M | 10.4 |< 15. | |p |14980. | | 300. | |Me |00213 08953| +240006 |W Col |062751.9-400558 |M | 9.3 |< 11.5 | |p |15411. | | 327. | |M6e |00213 08953| +240007 |X Col |052612.6-285021 |M | 11. |< 13. | |p |29500. | | 321.9 | | |01004 2MASS| +240010 |RR Col |063319.0-351753 |EA | 10.2 | 10.7 | |p |14277.3 | | 11.305 :/N| | |00215 08953| +240011 |RS Col *|051531.2-284502 |EW/DW | 9.54 | 9.99 | 9.97 |V |40612.6483 | | 0.672355 | *|G+G |00001 08953| +240012 |RT Col |051650.6-272825 |RRAB | 12.4 | 13.5 | |B |27779.550 | | 0.5365936 |14 |A2II |00016 02338| +240013 |RU Col |053450.8-302515 |EA/SD: | 10.9 | 12.0 | |p |28862.429 :| | | | |00016 03389| +240014 |RV Col |053544.2-304935 |SRD | 9.3 | 10.3 | |p |27800. | | 105.7 |40 : |G5 |00016 03389| +240015 |RW Col |060338.6-313525 |RRAB | 11.5 | 12.5 | |p |27808.515 | | 0.529234 |15 | |00016 02338| +240016 |RX Col |061314.7-371501 |RRAB | 11.4 | 12.6 | |p |28812.567 | | 0.594043 | | |00016 02338| +240017 |RY Col *|051507.8-413742 |RRAB | 10.44 | 11.24 | |V |34310.565 | | 0.4788571 |15 |A7-F3 |03126 06286| +240018 |RZ Col *|051954.1-355406 |EW/KE | 11.0 | 11.58 | 11.20 |V |34326.2824 | | 0.56522725 | | |04826 04004| +240020 |ST Col |055903.9-392727 |EA | 11. | 11.5 | |p | | | | | |06561 06561| +240021 |SU Col |050747.0-335155 |RRAB | 11.3 | 12.3 | |p | | | | |A2II | CoD | +240022 |SV Col |053854.0-333756 |EA/SD: | 11.4 | 12.2 | |p |38708.300 | | 3.6218 | | |05532 05532| +240023 |SW Col |052324.0-394042 |LB: | 5.71 |( 0.34 )| |V | | | | |M1III |05890 CoD | +240024 |SX Col |063135.0-365624 |LB: | 6.28 |( 0.13 )| |V | | | | |M1III |05840 CoD | +240026 |SZ Col |050847.0-343102 |LB: | 9.4 | 10.1 | |p | | | | |M6 |00085 CoD | +240027 |TT Col |054906.4-322000 |SR: | 12. | 14. | |p | | | | |M7 |00085 02381| +240028 |TU Col |055003.7-402412 |SR: | 12. |< 13. | |p | | | | | |00085 02381| +240030 |TW Col |060051.0-425214 |ACV | 7.0 |( 0.032 )| |V | | | | | |67064 CoD | +240032 |TY Col |055750.8-380403 |RS | 9.57 | 9.64 | |V | | | | | |71106 GSC | +240033 |TZ Col |055216.0-283925 |RS | 9.05 |( 0.06 )| |V | | | | | |72060 CoD | +240035 |UV Col |051638.4-405300 |M | 4.07 | 5.59 | |J | | | | | |73014 GSC | +240037 |UX Col |052856.5-332816 |RS: | 10.53 | 10.61 | |V | | | | | |73103 CoD | +240038 |UY Col |055941.4-303954 |DSCT | 8.95 | 9.12 | |V | | | | | |73114 CoD | +240039 |UZ Col |050706.2-374202 |LB: | 8.59 | 8.74 | |Hp| | | | | |HIP HIP | +240040 |VV Col |050915.1-381314 |LB | 9.34 | 9.61 | |Hp| | | | | |HIP HIP | +240041 |VW Col *|051800.4-272927 |EA | 9.24 | 10.33 | |Hp| | | | | |HIP HIP | +240042 |VX Col |051803.4-300009 |LB: | 8.48 | 8.58 | |Hp| | | | | |HIP HIP | +240043 |VY Col |052924.5-305722 |SRB | 7.65 | 7.89 | |Hp| | | | | |HIP HIP | +240044 |VZ Col |053014.0-424150 |BY: | 9.77 | 9.91 | |Hp| | | | | |HIP HIP | +240045 |WW Col |053415.9-362601 |LB: | 9.52 | 9.65 | |Hp| | | | | |HIP HIP | +240046 |WX Col |053712.9-424256 |RS: | 9.36 | 9.48 | |Hp| | | | | |HIP HIP | +240047 |WY Col |053930.0-363359 |LB: | 9.19 | 9.30 | |Hp| | | | | |HIP HIP | +240048 |WZ Col |054215.2-344004 |LPB: | 5.27 | 5.29 | |Hp| | | | | |HIP HIP | +240049 |XX Col |054314.5-332530 |SRB | 6.75 | 6.93 | |Hp| | | | | |HIP HIP | +240050 |XY Col |054610.2-352349 |LB: | 8.94 | 9.10 | |Hp| | | | | |HIP HIP | +240051 |XZ Col |054812.8-331353 |LB: | 9.17 | 9.27 | |Hp| | | | | |HIP HIP | +240052 |YY Col |054905.3-282247 |SRD | 8.47 | 8.64 | |Hp| | | | | |HIP HIP | +240053 |YZ Col |055121.4-415742 |SRD | 9.06 | 9.23 | |Hp| | | | | |HIP HIP | +240054 |ZZ Col |055239.5-364253 |SRB | 8.68 | 8.85 | |Hp| | | | | |HIP HIP | +240055 |AA Col |055432.7-350507 |DSCTC | 8.18 | 8.25 | |Hp| | | | | |HIP HIP | +240056 |AB Col |055534.5-285713 |SRB: | 7.71 | 7.87 | |Hp| | | | | |HIP HIP | +240057 |AC Col |060430.7-340328 |SRD | 8.58 | 9.09 | |Hp| | | | | |HIP HIP | +240058 |AD Col |060524.7-284039 |E: | 7.66 | 7.84 | |Hp| | | | | |HIP HIP | +240059 |AE Col |060814.5-285941 |BY: | 11.69 | 11.99 | |Hp| | | | | |HIP HIP | +240060 |AF Col |061010.4-402114 |LB | 5.46 | 5.68 | |Hp| | | | | |HIP HIP | +240061 |AG Col |061411.9-341518 |LB | 8.78 | 9.10 | |Hp| | | | | |HIP HIP | +240062 |AH Col |062542.5-354151 |ACV | 7.83 | 7.89 | |Hp| | | | | |HIP HIP | +240063 |AI Col |062852.7-372029 |SRB | 8.15 | 8.27 | |Hp| | | | | |HIP HIP | +240064 |AK Col |063143.4-343001 |EA | 9.03 | 9.25 | |Hp| | | | | |HIP HIP | +240065 |AL Col |063145.2-371023 |ACV | 7.46 | 7.53 | |Hp| | | | | |HIP HIP | +240066 |AM Col |063753.6-341745 |LB | 9.05 | 9.31 | |Hp| | | | | |HIP HIP | +240067 |AN Col |052116.9-342042 |BE | 6.03 | 6.11 | |V | | | | | |75098 CoD | +240068 |AO Col |053245.8-280047 |M: | 11.9 |< 15.0 | |p | | | | | |75002 UCAC2| +240071 |AR Col |063914.5-332210 |SR: | 12.3 | 13.3 | |V | | | | | |76012 GSC | +240072 |AS Col |052038.0-394518 |RS: | 7.34 | 7.38 | |V | | | 0.690 : | |F5/6V |78046 DM | +240073 |AT Col |053705.3-393226 |BY | 9.52 | 9.61 | |V | | | 1.422 | |K0V |78046 DM | +240074 |AU Col |060902.6-410705 |DSCTC | 7.45 |( 0.04 b )| |V | | | 0.143 | |A2V |78037 DM | +240075 |AV Col |055650.6-274002 |RRAB | 11.6 | 13.0 | |V |52664.677 | | 0.468743 |12 | |79100 79068| +240076 |AW Col *|060511.3-324351 |EA | 8.00 | 9.74 | 8.17 |V |52764.4934 | | 10.319 |04 |A3m |79100 DM | +240077 |AX Col |063404.8-413232 |SRA | 9.2 | 10.2 | |V |53735. | | 96.5 | | |79064 DM | +240078 |AY Col *|051908.4-374031 |EA/RS | 10.46 | 11.0 | 10.63 |V |52867.708 | | 17.943 |06 |G8III |80048 DM | NL80_1 +240079 |AZ Col *|052850.6-301013 |EW | 11.30 | 11.66 | 11.65 |V |51868.163 | | 0.302101 | | |80036 DM | NL80_1 +240080 |BB Col |054343.1-322329 |M | 4.15 | 5.51 | |Ks| | | 483. | | |80166 2MASS| NL80_1 +240083 |BE Col *|060402.4-314341 |EA | 11.29 | 11.63 | 11.55 |V |52529.8677 | | 0.64788 |20 | |80002 GSC | NL80_2 +249011 |lam Col |055306.9-334805 |ELL: | 4.85 | 4.92 | |V | | | 0.640 |35 |B5V |08380 CoD | +250001 |R Com *|120415.2+184657 |M | 7.1 | 14.6 | |V |43539. | | 362.82 |38 |M5e-M8ep |00001 00002| +250002 |S Com *|123245.6+270145 |RRAB | 10.89 | 12.13 | |V |40654.641 | | 0.5865907 |14 |A6-F7 |05917 00107| +250003 |T Com *|125838.9+230821 |M | 11.5 | 15.6 | |B |33735. | | 406. | |M2:-M8-9eIII |00114 00114| +250004 |U Com *|124003.2+272956 |RRC | 11.50 | 11.97 | |V |24961.445 | | 0.2927382 |35 |A8-F0 |00217 00107| +250005 |V Com *|121015.9+272554 |RRAB | 12.48 | 13.77 | |V |40683.940 | | 0.46914575 |08 |A2 |00001 00219| +250006 |W Com *|122131.7+281358 |BLLAC | 11.5 | 17.5 | |B | | | | |cont |06778 07696| +250015 |RW Com *|123300.3+264258 |EW/KW | 11.00 | 11.70 | 11.56 |V |40022.4163 | | 0.2373459 | |G2+G2 |08968 00107| +250017 |RY Com *|130508.0+231642 |RRAB | 11.66 | 12.87 | |V |39598.806 | | 0.4689531 |20 |F2-F5 |00001 06108| +250018 |RZ Com *|123505.1+232014 |EW/KW | 10.42 | 11.13 | 11.09 |V |34837.4198 | | 0.33850604 | |K0+G9 |03580 00192| +250019 |SS Com *|124939.1+184212 |EW/KW | 11.3 | 11.9 | 11.9 |B |25002.510 | | 0.4127919 | |F5 |00192 00192| +250020 |ST Com *|131751.3+204651 |RRAB | 10.91 | 11.84 | |V |43224.506 | | 0.59892864 |19 |F2-F8 |00001 04948| +250023 |SW Com |120906.4+193514 |ISB: | 10.8 | 12.0 | |p | | | | |G8-K3: |00230 06286| +250025 |SY Com |121020.4+193039 |SR | 10.6 | 11.68 | |B | | | 175.5 | |M4 |00231 01025| +250029 |TV Com |122757.9+184808 |LB | 10.90 | 13.3 | |B | | | | |M2 |00233 BD | +250030 |TW Com |121842.8+220549 |LB | 9.44 | 10.1 | |V | | | | |K5 |00104 08953| +250034 |UU Com *|123100.6+243402 |ACV+DSCTC | 5.41 | 5.46 | |V |40334.194 | | | |A3p(Sr-Cr-Eu) |08969 02979| +250037 |UX Com *|130133.0+283754 |EA/AR/RS | 9.96 | 10.52 | 10.13 |V |25798.328 | | 3.642583 |08 |G2III |08592 BD | +250041 |VW Com *|133244.6+164839 |UV | 10.9 | 11.39 | |V | | | | |M4Ve |02767 00664| +250049 |XX Com |120802.2+161048 |CST | 12.1 | | |p | | | | |F5 |05264 04341| +250063 |AI Com *|122854.7+255446 |ACV+DSCT: | 5.23 | 5.40 | |V |39586.07 | | 5.0633 | |A0p(Cr-Eu-Sr) |08974 02979| +250096 |BS Com *|133439.2+241638 |RRAB | 12.4 | 13.6 | |p |36692.34 | | 0.36350 |25 | |04172 04172| +250104 |CC Com *|121206.0+223159 |EW/KW | 11.30 | 12.21 | 12.09 |V |39533.5830 | | 0.22068628 | | |05028 04341| +250120 |CT Com *|122349.0+240756 |UV | 12.5 | 16.0 | |U | | | | |M |03924 05520| +250137 |DO Com |123843.0+183242 |M | 12.1 | 15.3 | |p |37770. | | 130. | | |05264 04065| +250164 |EU Com |130359.8+194219 |LB | 12.0 | 12.3 | |p | | | | |M5 |05264 04065| +250174 |FK Com *|133046.8+241358 |FKCOM | 8.14 | 8.33 | |V |42192.345 | | 2.400 |40 : |G2eapnIII+K3V |08343 BD | +250176 |FM Com *|121902.0+260030 |DSCTC | 6.40 | 6.48 | |V | | | 0.0551 | |A5-A7mIV-V |07015 02979| +250177 |FN Com |121906.5+182121 |LB | 10.7 | 11.0 | |p | | | | | |05264 04341| +250182 |FS Com |130622.6+223658 |SRB | 5.30 | 6.1 | |V | | | 58. : | |M5III |04513 08953| +250193 |GK Com |120004.7+192510 |SRB | 6.84 | 7.13 | |V | | | 50. | |M4III |06645 BD | +250195 |GM Com *|121224.9+272248 |DSCTC | 8.06 | 8.14 | |V | | | 0.208 : | |F5V |06456 02979| +250196 |GN Com *|122418.5+260555 |ACV: | 5.15 | 5.18 | |V | | | | |A2V(Am) |06456 02979| +250209 |HH Com *|131837.3+262157 |ACV | 7.77 | 7.85 | |V |41731.0 | | 5.07 | |A2p(Sr-Cr-Eu) |08470 BD | +250225 |HY Com |121816.0+160916 |RRC | 10.25 | 10.73 | |V | | | | | |67254 BD | +250226 |HZ Com |122940.9+243115 |RS | 9.71 | 9.81 | |V | | | | | |67255 BD | +250229 |IL Com |122502.3+253338 |RS: | 8.16 |( 0.04 )| |V | | | | | |68082 BD | +250231 |IN Com |125533.7+255331 |R:/PN | 8.7 |( 0.07 )| |V | | | | | |68084 68083| +250232 |IO Com |132103.6+222826 |EA | 9.15 | 9.48 | |V | | | | | |70038 70038| +250237 |IT Com |133508.1+204655 |RS | 7.57 |( 0.20 )| |V | | | | | |73005 BD | +250238 |IU Com |120811.6+170317 |BY: | 12.08 | 12.54 | |Hp| | | | | |HIP HIP | +250239 |IV Com |121320.5+164140 |BY: | 11.91 | 12.13 | |Hp| | | | | |HIP HIP | +250240 |IW Com |121656.6+274423 |LB | 7.94 | 8.08 | |Hp| | | | | |HIP HIP | +250241 |IX Com |122832.7+293524 |SRB | 8.60 | 8.75 | |Hp| | | | | |HIP HIP | +250242 |IY Com |123007.5+175344 |LB | 7.29 | 7.52 | |Hp| | | | | |HIP HIP | +250243 |IZ Com |123210.0+205509 |LB: | 8.66 | 8.80 | |Hp| | | | | |HIP HIP | +250244 |KK Com |123231.1+210603 |EB: | 9.54 | 9.77 | |Hp| | | | | |HIP HIP | +250245 |KL Com |123332.2+242655 |SR: | 7.25 | 7.39 | |Hp| | | | | |HIP HIP | +250246 |KM Com |123851.5+134814 |LB | 8.25 | 9.00 | |Hp| | | | | |HIP HIP | +250247 |KN Com |124202.4+140934 |LB: | 8.78 | 8.92 | |Hp| | | | | |HIP HIP | +250248 |KO Com |124503.9+233537 |LB: | 7.82 | 7.92 | |Hp| | | | | |HIP HIP | +250249 |KP Com |124817.9+191922 |SRB: | 7.64 | 7.77 | |Hp| | | | | |HIP HIP | +250250 |KQ Com |124823.3+203813 |LB: | 8.16 | 8.25 | |Hp| | | | | |HIP HIP | +250251 |KR Com |132015.8+174557 |EB: | 7.26 | 7.32 | |Hp| | | | | |HIP HIP | +250252 |KS Com |132947.7+274030 |LB | 8.47 | 8.71 | |Hp| | | | | |HIP HIP | +250253 |KT Com |133350.2+172530 |CWB: | 8.34 | 8.41 | |Hp| | | | | |HIP HIP | +250254 |KU Com |122126.7+245949 |DSCTC: | 7.42 |( 0.01 )| |V | | | | | |75101 BD | +250260 |LL Com |131759.9+300802 |EB | 12.3 | 13.0 | |p | | | | | |75103 75103| +250263 |LO Com |123204.9+262248 |EW | 12.38 | 13.20 | |* | | | | | |77099 UCAC2| +250266 |LR Com |124506.9+213933 |EA | 10.8 | 11.7 | |V | | | | | |77004 GSC | +250267 |LS Com |125141.9+273227 |FKCOM | 4.87 | 4.97 | |V | | | | | |77103 DM | +250268 |LT Com |125241.8+261638 |EB | 10.53 | 10.74 | |V | | | | | |77104 DM | +250269 |LU Com |130016.5+304706 |RS: | 4.90 |( 0.15 )| |V | | | | | |77105 DM | +250270 |LV Com |120750.9+185656 |BY | 9.16 |( 0.03 )| |V | | | 5.5 | |K2V |78018 DM | +250271 |LW Com |124847.0+245025 |BY | 6.31 |( 0.10 )| |V | | | 15.80 | |G5V |78160 DM | +250272 |LX Com |125138.4+253032 |BY | 9.09 |( 0.05 )| |V | | | 7.74 | |K1Ve |78018 DM | +250275 |MM Com *|130011.7+302311 |EW | 12.25 | 12.89 | 12.80 |* |51600.9795 | | 0.3019899 | | |78264 GSC | +250278 |MP Com |130622.7+221648 |GDOR | 6.86 | 6.94 | |Hp| | | 1.073 | |F0 |78165 DM | +250280 |MR Com *|131424.2+271132 |EW | 12.00 | 12.45 | 12.43 |* |52308.4688 | | 0.412749 | | |78264 GSC | +250281 |MS Com |120600.8+231217 |GDOR | 7.85 |( 0.10 )| |B | | | 0.6879 | |F0V+G5:V |79219 DM | +250283 |MU Com |132953.1+253904 |SRB | 11.0 | 11.5 | |V | | | 90.2 | | |79064 79196| +250284 |MV Com |120315.6+160638 |BY | 12.1 | 12.7 | |V | | | 3.530 | | |80034 80043| NL80_2 +250285 |MW Com *|121911.6+291201 |EA/RS | 10.36 | 10.6 : | 10.5 |* |51361.6996 | | 2.1677 |09 |F6 |80021 DM | NL80_2 +250286 |MX Com *|122354.9+224546 |EB | 11.80 | 11.96 | 11.94 |V |54656.4793 | | 1.81771 | | |80001 GSC | NL80_2 +250287 |MY Com |123013.7+215811 |BY | 10.23 |( 0.08 *)| |V | | | 1.1489 | |G0 |80021 HIP | NL80_2 +250288 |MZ Com *|123240.7+234805 |EA/RS | 10.05 | 10.33 | 10.2 : |V |52669.8558 | | 7.54596 |05 | |80001 GSC | NL80_2 +250289 |NN Com *|123531.9+141934 |EW | 12.14 | 12.68 | 12.67 |* |52763.558 | | 0.58283 | | |80367 80367| NL80_2 +250290 |NO Com |124107.8+302614 |EA | 6.94 | 7.02 | |V |48052.22 | | 2.7044 | |A5mF0 |80015 HIP | NL80_2 +250291 |NP Com |124848.3+144530 |RS | 9.8 | 10.1 | |V | | | 2.455 | |K0 |80034 GSC | NL80_2 +250292 |NQ Com |125147.2+223240 |BY | 10.48 |( 0.06 *)| |V | | | 3.4046 | |M0 |80021 HIP | NL80_2 +250293 |NR Com |125532.9+301111 |BY | 11.23 |( 0.06 *)| |V | | | 2.5903 | |K8V |80021 GSC | NL80_2 +250295 |NT Com |130346.0+283721 |RS | 10.68 | 10.91 | |* | | | 3.2035 | |G5V: |80021 DM | NL80_2 +250296 |NU Com |131008.4+243602 |SRB | 9.3 | 9.9 | |V | | | 73. | |M5 |80001 DM | NL80_2 +250297 |NV Com *|131228.3+251427 |EW: | 11.85 | 12.17 | 12.15 |V |54231.56 | | 0.370890 | | |80001 GSC | NL80_2 +250298 |NW Com *|131247.4+265252 |DSCTC+GDOR| 8.43 | 8.48 | |V | | | 0.047852 | |Am |80380 HIP | NL80_2 +250299 |NX Com |131308.0+294052 |BY | 11.08 |( 0.04 *)| |V | | | 9.1128 | |G7V |80021 GSC | NL80_2 +250307 |OT Com |132117.6+210125 |BY | 11.82 |( 0.11 *)| |V | | | 1.3456 | | |80021 GSC | NL80_2 +250314 |PP Com |133100.9+262325 |DSCTC | 7.38 |( 0.01 )| |V | | | 0.06230061 | |sgF1 |80092 HIP | NL80_2 +260001 |R CrA *|190153.6-365708 |INSA | 10.0 | 14.36 | |B | | | | |A5IIpe |08962 08961| +260002 |S CrA *|190108.6-365720 |INT | 10.49 | 13.2 | |V | | | | |Ge(T) |08962 08961| +260003 |T CrA *|190158.6-365750 |INSB | 11.67 | 14.3 | |V | | | | |F0ea |08962 08961| +260004 |U CrA |184107.0-375011 |M | 9.9 | 14.3 | |p |33175. | | 147.50 |42 |M2Ibe |01004 08613| +260005 |V CrA *|184732.3-380932 |RCB | 8.3 |< 16.5 | |V | | | | |C(R0) |08140 08613| +260006 |W CrA |180512.2-392033 |SRB | 11.0 | 13.1 | |p | | | 125. : | |C0-3(R4) |00236 CoD | +260007 |X CrA |180959.5-452449 |SRB | 10.8 | 12.7 | |p | | | 324. : | |MC |00235 03206| +260008 |Y CrA |181422.9-425032 |ZAND | 12.0 | 13.8 | |p | | | | |pec | 02452| +260009 |Z CrA |183104.3-445808 |M | 11.0 |< 12.9 | |p |11189. | | 303. | |M6e |00237 2MASS| +260010 |RR CrA |180557.1-381512 |M | 9.8 |< 14.0 | |p |29050. | | 280.10 | |M2e-M7II-IIIe |01004 06286| +260011 |RS CrA *|190315.1-393423 |M: | 10.0 |< 13.0 | |p | | | | | |08963 08953| +260012 |RT CrA |184533.0-384650 |M | 11.0 |< 13.5 | |p |10223. | | 218. | | |00237 08613| +260013 |RU CrA |191723.4-393647 |L: | 9.8 | 12.4 | |p | | | | | |00016 08953| +260014 |RV CrA |184007.1-423550 | | 12.2 | 15.5 | |p | | | | | |00239 CoD | +260015 |RW CrA *|175920.3-375253 |EA/SD | 9.3 | 10.3 | 9.4 |p |31017.297 | | 1.6835995 |18 |A0 |00240 00024| +260016 |RX CrA |182628.1-441754 |M | 10.6 |< 15. | |p |11862. | | 285.9 | |M3e |00016 CoD | +260017 |RY CrA |182158.1-445359 |M | 12.1 |< 14. | |p |28845. | | 195. | |M4e |00016 2MASS| +260018 |RZ CrA |190837.3-422133 |M | 9.9 |< 13.5 | |p |28744. | | 460. : | |M6e |00016 08953| +260019 |SS CrA *|180804.6-434500 |M | 12.2 | 15.7 | |V |31290. | | 237. : | | |04151 08964| +260024 |SX CrA |180138.7-434346 |M | 12.0 |< 16.5 | |p |23678. | | 215.8 | |Me |00242 2MASS| +260032 |TY CrA *|190140.8-365234 |EA | 9.39 | 9.81 | |V |42954.29 | | 2.888777 |06 |B9Vea |08965 08961| +260033 |TZ CrA *|181848.2-432137 |EA/SD | 9.6 | 10.33 | 9.72 |V |36080.035 | | 0.68674954 |20 *|A1III/IV |02487 08087| +260034 |UU CrA *|184045.9-421429 |EA/SD | 10.9 | 11.6 | 11.0 |p |16208.865 | | 2.2379960 |21 |A0 |02196 CoD | +260037 |UX CrA *|185731.8-374758 |M | 10.9 |< 17.0 | |p |27160. | | 347.5 | |M(6:)e |00235 GSC | +260039 |UZ CrA |185317.6-380522 |M | 12.0 |< 16. | |p |16283. | | 107. | | |00246 08613| +260041 |VW CrA |190328.7-382005 |M | 12.5 |< 16. | |p |13710. | | 312. | |Me |00246 00244| +260042 |VX CrA |190335.3-382035 |M | 12.5 |< 16. | |p |13704. | | 310. | |Me |00246 00244| +260045 |WW CrA |180536.8-434957 |RRAB | 12.0 | 12.7 | |p |31287.228 | | 0.5594749 |20 | |03516 03516| +260046 |WX CrA |180850.5-371943 |RCB | 11.0 |< 16.5 | |p | | | | |C(R5) |08140 08087| +260048 |WZ CrA |181502.3-401325 |M | 12.5 |< 16.5 | |p |26480. | | 276. | | |00248 06286| +260052 |YY CrA |184115.1-370234 |M | 10.8 | 16.5 | |p |36804. | | 125.88 |39 |M3Ibe |00001 08613| +260060 |AF CrA *|180129.8-371141 |M | 12.0 |< 16.5 | |p |26470. | | 467. | |M5e |00251 08087| +260065 |AL CrA *|181511.5-370652 |CWA | 11.46 | 12.58 | |V |35124.375 | | 17.060 |47 | |00046 04151| +260066 |AM CrA |184115.4-372905 |SR | 8.6 | 12.7 | |p | | | 187.5 : | |M3e |00235 08613| +260114 |CN CrA |185128.0-411518 |M | 11.4 |< 14.5 | |p |26270. | | 214. | |M1e |00255 UCAC2| +260122 |CV CrA |185425.6-382556 |RRAB | 12.5 | 14.2 | |p |23992.303 | | 0.4709644 |17 | |00244 00244| +260190 |GG CrA |180736.4-375249 |M | 12.5 | 16.3 | |p |26560. | | 129.2 | | |00251 06286| +260236 |IS CrA |181937.1-380407 |EA/SD | 10.9 | 12.2 | |p |31293.214 | | 3.236580 |12 *|A2 |03513 03513| +260246 |KM CrA *|175905.7-392950 |M | 12.0 |< 16.5 | |p |26550. | | 241. | |Me |00248 2MASS| +260250 |KQ CrA *|175934.5-393507 |CWA | 11.92 | 12.91 | |V |35152.715 | | 30.864 |24 | |02309 03513| +260328 |QT CrA |180912.4-401213 |SRD: | 11.4 | 12.5 | |p | | | 79.145 |47 |A/Fe-K |00235 06286| +260347 |V0347 CrA *|181219.8-391422 |CWA | 12.20 | 13.18 | |V |31169.8 | | 15.3460 |50 | |03516 03516| +260359 |V0359 CrA |181603.3-383906 |E | 12.0 | 12.9 | |p |26563.300 | | | | |00248 06286| +260384 |V0384 CrA |185137.7-380815 |M | 10.3 | 15. | |p |21123. | | 203. | |Me |00256 08613| +260385 |V0385 CrA *|180153.7-423711 |RV | 11.5 | 14.0 | |p |30991. | | 79.7 | | |04151 04151| +260388 |V0388 CrA |184413.1-432154 |M: | 12.5 |< 14. | |p | | | | |Me |00085 02383| +260389 |V0389 CrA |184817.2-431850 |M | 12.5 | 15.3 | |p | | | | |Me |00085 02386| +260390 |V0390 CrA |185218. -372121:|M | 11.3 | 15.0 | |p |20713. | | 179. | | |00256 08613| +260391 |V0391 CrA |191227.3-385905 |M | 12.0 |< 15.5 | |p |25358. | | 228. | |Me |03516 02386| +260405 |V0405 CrA |181831.1-414815 |EA/SD | 12.1 | 13.5 | |p |31287.3160 | | 1.174856 |18 | |00240 00240| +260411 |V0411 CrA |184303.0-385535 |M | 11.5 |< 16.0 | |p |25764. | | 340. | |M3e |04229 04229| +260412 |V0412 CrA |184515.5-383419 |EA/DM: | 10.7 | 11.3 | |V |34338.32 | | 4.8370 |10 :*| |00080 08613| +260413 |V0413 CrA *|184757.6-374423 |RRAB | 10.23 | 10.90 | |V |41500.369 | | 0.589339 |17 |F0-F8 |05233 06286| +260416 |V0416 CrA |181037.7-410231 |M | 12.5 |< 16. | |p |31314. | | 207. | | |02770 08087| +260441 |V0441 CrA |182954.7-410656 |M | 11.2 |< 15.5 | |p |31560. | | 379. | | |03516 03516| +260454 |V0454 CrA *|175909.9-393817 |EA/DM | 10.1 | 10.9 | 10.5 |p |31264.460 | | 2.396874 |08 *|A5 |03513 03513| +260473 |V0473 CrA |180328.9-415403 |M | 12.2 | 15.5 | |p |31240. | | 134. | |Me |03516 03516| +260476 |V0476 CrA |180328.4-371951 |I | 12.5 | 13.5 | |p | | | | | |03513 03513| +260509 |V0509 CrA |181156.5-434633 |SRA | 12.4 | 14.0 | |p |31555. | | 158. | | |03513 03513| +260521 |V0521 CrA |181447.9-442732 |M | 12.4 | 14.9 | |p |31280. | | 129.8 | | |03516 03516| +260529 |V0529 CrA |181558.2-410526 |I | 11.8 | 14.7 | |p | | | | | |03516 03516| +260537 |V0537 CrA |181701.0-390639 |I | 11.6 | 12.6 | |p | | | | | |03513 03513| +260543 |V0543 CrA |181826.3-413923 |M | 11.0 |< 15.5 | |p |29800. | | 328. | |Me |03516 03516| +260560 |V0560 CrA |182037.9-371401 |SRA | 12.5 | 13.4 | |p |31320. | | 257. | | |03516 03516| +260581 |V0581 CrA |182443.5-452444 |M | 10.9 |< 15.5 | |p |31325. | | 1100. : | | |03513 03513| +260592 |V0592 CrA |182620.8-445950 |RRAB | 11.5 | 13.1 | |p |31001.3205 | | 0.5937039 |16 | |03516 03516| +260619 |V0619 CrA |183025.9-421351 |SRA | 12.2 | 14.1 | |p |31356. | | 162. | | |03516 03516| +260620 |V0620 CrA |183112.6-440728 |EA/SD | 12.4 | 13.6 | |p |31327.2580 | | 2.615237 |11 *| |03513 03513| +260622 |V0622 CrA *|183106.3-382107 |SR | 12.5 | 13.3 | |p | | | | | |03513 03513| +260635 |V0635 CrA |183503.8-425649 |I | 12.5 | 13.1 | |p | | | | | |03513 03513| +260638 |V0638 CrA |183716.6-441144 |M | 12.2 |< 15.5 | |p |31672. | | 317. | | |03513 03513| +260648 |V0648 CrA *|185745.0-411351 |EA/SD | 12.1 | 14.0 | |p |25738.5375 | | 4.844838 |08 *| |03516 03516| +260668 |V0668 CrA |183224.8-421914 |DSCTC | 8.70 | 8.76 | |V | | | 0.088 | |A4/5V |06338 CoD | +260681 |V0681 CrA |183739.6-425720 |EA/DM | 7.6 | 8.1 | |p |28748.350 | | 2.163925 | |B9.5V |03973 CoD | +260685 |V0685 CrA |184948.0-444117 |M: | 11.5 | 16.0 | |p | | | | |Me |04725 06031| +260686 |V0686 CrA *|185640.5-372036 |ACV | 5.25 | 5.41 | 5.40 |V |42254.500 | | 7.34 | |B8IV(Si) |08970 CoD | +260690 |V0690 CrA |190032.3-444909 |M: | 12. |< 13. | |p | | | | |Me |07428 GSC | +260692 |V0692 CrA *|181312.7-412010 |SXARI | 5.46 |( 0.05 )| |V | | | 1.67 | |B3p(Si) |08415 CoD | +260694 |V0694 CrA |181225.8-374509 |ACVO | 7.95 |( 0.005 B )| |V | | | | | |69097 CoD | +260695 |V0695 CrA |175903.3-384740 |M | 9.35 | 11.59 | |J | | | | | |71144 2MASS| +260696 |V0696 CrA |180005.2-380142 |M | 10.15 | 12.57 | |J | | | | | |71144 2MASS| +260697 |V0697 CrA |180027.2-374834 |M | 7.45 | 8.89 | |H | | | | | |71144 GSC22| +260698 |V0698 CrA |180224.8-382713 |M | 8.24 | 10.37 | |J | | | | | |71144 2MASS| +260699 |V0699 CrA |180256.8-371157 |M | 7.54 | 8.68 | |J | | | | | |71144 GSC22| +260700 |V0700 CrA |180325.0-374620 |M | 8.33 | 9.98 | |J | | | | | |71144 2MASS| +260701 |V0701 CrA |190317.7-381511 |DSCTC | 5.69 | 5.73 | |V | | | | | |71017 CoD | +260702 |V0702 CrA |190202.0-370744 |INT | 10.48 | 10.58 | |V | | | | | |72063 72064| +260703 |V0703 CrA |175846.6-390919 |M | 10.55 | 14.04 | |H | | | | | |73116 2MASS| +260704 |V0704 CrA |182430.1-441157 |DSCTC | 7.90 | 7.93 | |V | | | | | |73117 CoD | +260709 |V0709 CrA |190134.9-370057 |INB | 11.33 | 11.67 | |V | | | | | |73119 73120| +260710 |V0710 CrA |190150.7-365810 |INB | 5.84 | 9.13 | |K | | | | | |73121 73122| +260711 |V0711 CrA |180432.8-421324 |EB | 8.36 | 8.69 | |Hp| | | | | |HIP HIP | +260712 |V0712 CrA |180636.4-433739 |SRC | 7.68 | 8.06 | |Hp| | | | | |HIP HIP | +260713 |V0713 CrA |180853.3-392940 |LB | 7.57 | 7.72 | |Hp| | | | | |HIP HIP | +260714 |V0714 CrA |181229.5-414258 |ACV | 8.10 | 8.15 | |Hp| | | | | |HIP HIP | +260715 |V0715 CrA |182114.4-390118 |ACV: | 6.80 | 6.85 | |Hp| | | | | |HIP HIP | +260716 |V0716 CrA |182457.8-383430 |LB: | 7.72 | 7.84 | |Hp| | | | | |HIP HIP | +260717 |V0717 CrA |183715.7-404813 |SRD | 7.03 | 7.13 | |Hp| | | | | |HIP HIP | +260718 |V0718 CrA |183935.2-431109 |LB: | 5.45 | 5.51 | |Hp| | | | | |HIP HIP | +260719 |V0719 CrA |184253.1-391708 |BE | 6.99 | 7.03 | |Hp| | | | | |HIP HIP | +260720 |V0720 CrA |190709.1-390757 |LB | 8.57 | 9.10 | |Hp| | | | | |HIP HIP | +260722 |V0722 CrA |180613.7-401507 |SR: | 12.3 |< 13.0 | |V | | | | | |76054 USNO | +260723 |V0723 CrA |183821.4-385356 |SR: | 12.1 | 12.8 | |V | | | | | |76054 GSC | +260724 |V0724 CrA |183922.8-382525 |SR: | 10.0 | 11.0 | |V | | | | | |76054 GSC | +260725 |V0725 CrA |184027.2-381930 |SR: | 12.1 | 12.8 | |V | | | | | |76054 GSC | +260726 |V0726 CrA |184430.8-434108 |M | 11.0 |< 14.3 | |V | | | | | |76186 76187| +260729 |V0729 CrA |183213.9-443702 |SRA | 11.4 | 13.6 | |V |52900 | | 336. | |Me |78090 2MASS| +260730 |V0730 CrA *|184921.2-381105 |EW: | 9.78 | 10.01 | 9.99 |V |52470.531 | | 0.84116 | | |78130 DM | +260731 |V0731 CrA *|183051.8-371649 |EB | 10.9 | 11.3 : | 11.05 : |V |52796.754 | | 0.537745 | | |79011 DM | +260732 |V0732 CrA |184251.2-431121 |EA | 10.68 | 11.51 | 10.80 |V |52712.879 | | 1.00545 |16 | |79018 DM | +260733 |V0733 CrA |184737.7-410344 |EA | 12.40 | 13.36 | 12.6 |V |52082.640 | | 2.65996 |11 | |79004 USNO | +260734 |V0734 CrA |185108.7-431106 |EA | 11.08 | 12.0 | 11.18 |V |52943.530 | | 0.978382 |16 | |79003 DM | +260735 |V0735 CrA |191012.9-443117 |M | 10.6 | 14.6 | |V |53492. | | 373. | | |79064 GSC | +260736 |V0736 CrA |180110.4-435504 |SRB | 10.36 | 10.86 | |V | | | 61.2 | | |80001 GSC | NL80_3 +260737 |V0737 CrA *|180233.0-400516 |BCEP | 9.18 | 9.30 | |Hp| | | 0.152934 | |B0III |80019 HIP | NL80_3 +260747 |V0747 CrA |182158.5-445117 |LB | 10.5 | 11.6 | |V | | | | | |80001 GSC | NL80_3 +260748 |V0748 CrA |182828.6-425125 |M | 12.0 : |< 15.6 | |R |54298. | | 227. | | |80297 80297| NL80_3 +260750 |V0750 CrA |184427.4-371728 |EW | 9.94 | 10.17 | 10.14 |V |52814.673 | | 0.379130 | | |80011 DM | NL80_3 +260751 |V0751 CrA |184840.1-393319 |SRA | 12.3 | 14.4 | |V |54365. | | 135.7 | | |80297 80297| NL80_3 +260753 |V0753 CrA |191743.8-440017 |RS | 9.75 | 10.10 | |V | | | 9.424 | |G8IIIe |80002 DM | NL80_3 +269005 |eps CrA *|185843.4-370627 |EW | 4.74 | 5.00 | 4.95 |V |39707.6619 | | 0.5914264 | |F2V |05341 03508| +270001 |R CrB *|154834.4+280924 |RCB | 5.71 | 14.8 | |V | | | | |C0,0(F8pep) | 00002| +270002 |S CrB *|152124.0+312203 |M | 5.8 | 14.1 | |V |44604. | | 360.26 |35 |M6e-M8e |00001 00002| +270004 |U CrB *|151811.4+313849 |EA/SD | 7.66 | 8.79 | 7.72 |V |16747.9718 | | 3.45220133 |14 *|B6V+F8III-IV |08608 00010| +270005 |V CrB |154931.3+393418 |M | 6.9 | 12.6 | |V |43763. | | 357.63 |41 |C6,2e(N2e) |00001 00002| +270006 |W CrB |161524.6+374744 |M | 7.8 | 14.3 | |V |44192. | | 238.40 |45 |M2e-M5e |00001 00002| +270007 |X CrB |154853.5+361453 |M | 8.5 | 14.2 | |V |43719. | | 241.17 |46 |M5e-M7e |00001 00002| +270008 |Y CrB |154643.7+381921 |SRB | 10.9 | 12.8 | |p | | | 300. | |M8 | 00567| +270009 |Z CrB |155608.4+291418 |M | 8.8 | 15.5 | |V |42514. | | 250.68 |42 |M4e-M5e |00001 00002| +270010 |RR CrB *|154126.2+383327 |SRB | 8.4 | 10.1 | |p | | | 60.8 |50 |M5 |01100 00002| +270011 |RS CrB *|155830.8+360120 |SRA | 8.7 | 11.6 | |p |34825. | | 332.2 |47 |M7 |02430 08953| +270012 |RT CrB *|153803.0+292914 |EA/AR:/RS | 10.20 | 10.82 | 10.52 |V |28273.243 | | 5.1171590 |08 *|G0 |08592 08953| +270013 |RU CrB |153536.6+254510 |SRA | 10.6 | 11.7 | |V |25812. | | 436. |52 |M5 |00373 BD | +270014 |RV CrB *|161925.9+294248 |RRC | 11.14 | 11.70 | |V |42926.334 | | 0.331565 |36 |A9 |08697 01102| +270015 |RW CrB *|153915.2+293720 |EA/SD: | 10.22 | 10.78 | 10.29 |V |40751.7302 | | 0.7264114 |20 |F2V |06497 08953| +270016 |RX CrB |151749.4+293953 |CST: | 10.2 | 11.8 | |p | | | | |A-F | 08953| +270017 |RY CrB |162305.1+305101 |SRB | 9.2 | 10.4 | |V |31344. | | 90. |52 |M10III |03246 08953| +270019 |SS CrB |154127.1+363741 |LB | 10. | 11. | |p | | | | |M5 |00922 08953| +270020 |ST CrB |155016.0+381949 |LB | 10.5 | 11.5 | |p | | | | |M5 |00922 00922| +270023 |SW CrB |154045.3+384307 |SRB | 7.8 | 8.5 | |V | | | 100. : | |M0 |08179 08953| +270024 |SX CrB |161523.8+331948 |LB | 9.8 | 10.3 | |p | | | | |M5 |00169 02379| +270025 |SY CrB |153655.2+323454 |LB | 10.4 | 11.0 | |p | | | | |M6 |04022 08953| +270026 |SZ CrB |154725.9+293943 |RRAB | 12.5 | 14.0 | |p |36288.5371 | | 0.448619 |10 | |04186 04185| +270027 |TT CrB |154831.7+281655 |SRB | 10.9 | 12.1 | |V | | | 60. : | |M2 |07019 04187| +270029 |TV CrB |152221.4+265238 |RRAB | 10.6 | 12.2 | |p |31618.537 | | 0.5846145 |15 |A8 |05436 03160| +270030 |TW CrB *|160650.7+271635 |EB/KE | 10.5 | 11.3 | 11.0 |p |37898.3681 | | 0.58887327 | | |07063 04239| +270031 |TX CrB |154633.5+314047 |SR: | 10.8 | 11.6 | |p | | | | |M3 |00819 BD | +270033 |TZ CrB *|161440.9+335131 |RS+DSCT: | 5.69 |( 0.05 )| |V |23869.561 | | 1.139789 | |F8V |08402 BD | +270034 |UU CrB *|152252.8+313313 |* | 8.59 | 8.64 | |V |44381.753 | | | |F8 |08751 BD | +270035 |UV CrB |152225.3+253727 |ELL | 7.20 |( 0.16 )| |V | | | | | |68316 BD | +270038 |UY CrB |160621.8+280704 |RR: | 12.5 | 13.8 | |p | | | | | |72065 72065| +270040 |VV CrB |155058.8+313004 |SRB | 10.9 | 12.6 | |p | | | | | |73123 GSC | +270050 |XY CrB |153626.2+372236 |LB: | 8.18 | 8.30 | |Hp| | | | | |HIP HIP | +270051 |XZ CrB |155034.3+342530 |LB: | 9.47 | 9.66 | |Hp| | | | | |HIP HIP | +270052 |YY CrB |155032.4+375008 |EW | 8.64 | 9.13 | |Hp| | | | | |HIP HIP | +270053 |YZ CrB |155338.9+254715 |LB: | 9.18 | 9.30 | |Hp| | | | | |HIP HIP | +270054 |ZZ CrB |155615.4+311320 |LB | 7.89 | 8.05 | |Hp| | | | | |HIP HIP | +270055 |AA CrB |155813.3+281622 |LB: | 9.41 | 9.53 | |Hp| | | | | |HIP HIP | +270056 |AB CrB |160457.4+273820 |LB: | 9.15 | 9.26 | |Hp| | | | | |HIP HIP | +270057 |AC CrB |160540.4+305501 |LB: | 8.23 | 8.36 | |Hp| | | | | |HIP HIP | +270058 |AD CrB |160708.7+322247 |SRB: | 8.73 | 9.11 | |Hp| | | | | |HIP HIP | +270059 |AE CrB |160812.5+373601 |LB: | 9.97 | 10.16 | |Hp| | | | | |HIP HIP | +270060 |AF CrB |160924.8+305201 |LB: | 9.72 | 9.83 | |Hp| | | | | |HIP HIP | +270061 |AG CrB |161053.3+290830 |SRB | 9.10 | 9.37 | |Hp| | | | | |HIP HIP | +270062 |AH CrB |162035.0+343740 |SRB | 8.41 | 8.93 | |Hp| | | | | |HIP HIP | +270063 |AI CrB |162104.4+373932 |LB: | 9.18 | 9.28 | |Hp| | | | | |HIP HIP | +270064 |AK CrB |155601.5+370622 |SR: | 11.2 | 12.4 | |V | | | | | |76012 GSC | +270065 |AL CrB *|155830.5+265111 |* | 8.49 | 8.55 | |V | | | | | |77119 DM | +270067 |AN CrB |153530.2+361235 |BY | 8.61 |( 0.02 )| |V | | | 9.37 : | |K0V |78018 DM | +270068 |AO CrB |153925.2+273735 |BY | 8.99 |( 0.04 )| |V | | | 6.98 | |G5V |78018 DM | +270070 |AQ CrB |155731.8+283801 |RRAB | 11.78 | 12.73 | |V |50724.980 | | 0.665426 |14 | |78264 78181| +270071 |AR CrB *|155918.6+275215 |EW | 10.84 | 11.45 | 11.44 |* |52365.5044 | | 0.397352 | | |78264 GSC | +270072 |AS CrB *|160014.5+351232 |EW | 11.34 | 11.85 | 11.75 |* |52409.4467 | | 0.380658 | | |78264 GSC | +270073 |AT CrB |160629.6+383756 |BY | 8.58 |( 0.02 )| |V | | | 26.02 | |K3V |78018 DM | +270074 |AU CrB |161331.7+323443 |DSCT | 12.3 | 12.5 | |* | | | 0.05172 | | |78186 GSC | +270075 |AV CrB *|161458.6+301636 |EW | 11.87 | 12.48 | 12.41 |* |52360.4749 | | 0.308193 | | |78264 GSC | +270076 |AW CrB *|161520.2+354226 |DSCT: | 11.08 | 11.35 | |* |51295.3703 | | 0.180465 | | |78264 GSC | +270077 |AX CrB |151940.1+315033 |BY | 9.04 |( 0.18 )| |V | | | 9.24 | |K0V |80412 HIP | NL80_2 +270079 |AZ CrB |152502.7+294335 |SRB | 9.75 | 10.2 | |* | | | 80. : | | |80414 80414| NL80_2 +270081 |BC CrB |153039.4+301225 |RS | 11.85 | 12.0 | |* | | | 4.4507 | | |80414 80414| NL80_2 +270083 |BE CrB |153352.7+311801 |BY | 12.14 |( 0.09 *)| |V | | | 1.5262 | | |80021 GSC | NL80_2 +270085 |BG CrB *|153440.6+265443 |RS | 9.04 |( 0.06 *)| |V | | | 0.3322 | |G0 |80021 DM | NL80_2 +270086 |BH CrB |153511.3+384359 |BY | 12.09 |( 0.14 *)| |V | | | 2.1942 | | |80021 GSC | NL80_2 +270087 |BI CrB |153633.4+271029 |RS: | 10.00 |( 0.05 *)| |V | | | 1.3393 | |A0 |80021 HIP | NL80_2 +270088 |BK CrB |153650.3+373449 |BY | 11.30 |( 0.06 *)| |V | | | 4.3950 | |M2 |80021 HIP | NL80_2 +270095 |BR CrB *|155304.3+361845 |EW | 9.88 | 10.11 | 10.11 |* |51325.731 | | 0.76695 | |F0 |80417 80417| NL80_2 +270096 |BS CrB |155431.4+295652 |EW: | 11.46 |( 0.14 *)| |V | | | 0.46548 | | |80001 GSC | NL80_2 +270098 |BU CrB |155842.1+323046 |BY | 11.86 |( 0.07 *)| |V | | | 6.2612 | |K5V |80021 GSC | NL80_2 +270100 |BW CrB |160150.7+333035 |LB | 9.00 | 9.34 | |* | | | | | |80417 GSC | NL80_3 +270101 |BX CrB |160229.6+373330 |EW | 12.25 | 12.50 | 12.45 |* |51442.68 | | 0.35884 | | |80001 GSC | NL80_3 +270102 |BY CrB |160306.2+261423 |DSCT | 12.34 | 12.48 | |V | | | 0.192446 | | |80371 GSC | NL80_3 +270104 |CC CrB |160518.1+372624 |RS | 12.2 | 12.4 | |* | | | 5.915 | | |80370 80370| NL80_3 +270105 |CD CrB |160533.4+291240 |SRB | 9.76 | 9.98 | |* | | | 40. : | | |80417 80417| NL80_3 +270108 |CG CrB |160714.0+340136 |BY | 10.91 |( 0.12 *)| |V | | | 0.7418 | | |80021 GSC | NL80_3 +270113 |CM CrB |161043.4+343714 |DSCT: | 11.57 |( 0.14 )| |V | | | 0.18391199 | | |80371 GSC | NL80_3 +270115 |CO CrB |161303.6+352620 |LB | 8.4 | 8.8 | |* | | | | | |80417 80417| NL80_3 +270118 |CR CrB |161428.0+303145 |DSCT: | 11.8 |( 0.12 )| |V | | | 0.17690501 | | |80371 GSC | NL80_3 +270121 |CU CrB |162157.2+381734 |RS | 10.2 | 10.4 | |* | | | 31.977 | | |80370 80370| NL80_3 +279001 |alf CrB *|153441.3+264253 |EA/DM | 2.21 | 2.32 |( 0.25 )|B |23163.770 | | 17.359907 |03 *|A0V+G5V |01106 05056| +279002 |bet CrB *|152749.7+290621 |ACV | 3.65 | 3.72 | |V |40335.0 | | 18.487 | |F0IIIp(Sr-Cr-Eu) |05343 05056| +279003 |gam CrB *|154244.6+261744 |DSCTC | 3.80 | 3.86 | |V | | | 0.030 | |A0IV |06255 05056| +279004 |del CrB |154935.6+260406 |RS: | 4.57 | 4.69 | |V | | | | | |69098 BD | +279008 |tet CrB |153255.8+312133 |BE | 4.06 | 4.33 | |V | | | | | |72066 BD | +280001 |R Crv |121937.9-191522 |M | 6.7 | 14.4 | |V |42781. | | 317.03 |41 |M4.5e-M9:e |00001 00002| +280002 |S Crv |123735.8-171551 |LB | 10.1 | 11.0 | |p | | | | |M5 | 01107| +280003 |T Crv |123706.9-173132 |M | 11.6 |< 16.6 | |p |34130. | | 401.34 | |M6e |00001 01107| +280004 |U Crv *|123502.0-182739 |M | 10.1 |< 15. | |p |38480. | | 283.42 | |M5e |00001 08953| +280005 |V Crv |124032.3-173851 |M | 11.7 |< 15.5 | |p |29381. | | 193.63 | |M2e |01001 01108| +280006 |W Crv *|120734.4-130859 |EB/KW: | 11.16 | 12.50 | 11.86 |V |39647.766 | | 0.38808083 | | |00001 00192| +280007 |X Crv |124843.4-193020 |SRB | 10.8 |< 12.0 | |p | | | 112.3 | |M6III |00018 BD | +280008 |Y Crv *|123810.4-150000 |EW/KE | 11.0 | 11.7 | 11.7 |p |25620.646 | | 0.4948130 | |A0 |03646 00464| +280010 |RR Crv |123026.9-175853 |E/SD | 11.1 | 13.9 | |p |29392.209 | | 5.158122 | | |01109 06286| +280013 |RU Crv |123456.4-205011 |SR | 10.4 | 11.0 | |p | | | | |M2 |01109 08953| +280014 |RV Crv *|123740.7-193440 |EB/KE | 8.60 | 9.16 | |V |41029.384 | | 0.7472521 | |F0+G0: |07026 08953| +280020 |ST Crv |115946.7-131453 |M | 11.7 |< 15. | |p |31285. | | 224.6 | | |01001 01110| +280021 |SU Crv |122125.8-215717 |M | 12.2 | 16.0 | |p |42170. | | 351.5 |37 |Me |04561 01111| +280022 |SV Crv |124947.0-150444 |SRB | 6.78 | 7.6 | |V | | | 70. : | |M5III |08225 07071| +280024 |SX Crv *|124015.0-184801 |EW/KW | 8.99 | 9.25 | 9.23 |V |41017.4557 | | 0.3166386 | |F8 |07459 BD | +280027 |TT Crv |122318.9-114844 |SR | 6.47 | 6.57 | |V | | | 11.5 | |M3III |08225 BD | +280028 |TU Crv |123558.8-203139 |DSCTC | 6.53 |( 0.025 )| |B | | | 0.082 | |F0III |08403 BD | +280029 |TV Crv |122024.1-182701 |UG | 12. | 18. | |p | | | | | |71114 71114| +280031 |TX Crv |120047.5-120927 |E: | 8.08 | 8.60 | |Hp| | | | | |HIP HIP | +280032 |TY Crv *|120051.2-193932 |ELL | 5.19 | 5.23 | |Hp| | | | | |HIP HIP | +280033 |TZ Crv |120057.3-211503 |SRD | 8.27 | 8.47 | |Hp| | | | | |HIP HIP | +280034 |UU Crv |120549.1-234652 |LB: | 8.95 | 9.05 | |Hp| | | | | |HIP HIP | +280035 |UV Crv |121724.0-210330 |BY: | 9.38 | 9.49 | |Hp| | | | | |HIP HIP | +280036 |UW Crv |121942.6-191156 |LB | 8.03 | 8.28 | |Hp| | | | | |HIP HIP | +280037 |UX Crv |122051.0-125112 |LB | 8.08 | 8.39 | |Hp| | | | | |HIP HIP | +280038 |UY Crv |122328.2-230941 |BY: | 10.82 | 11.00 | |Hp| | | | | |HIP HIP | +280039 |UZ Crv |122422.8-224808 |LB | 9.45 | 9.80 | |Hp| | | | | |HIP HIP | +280040 |VV Crv |124115.9-130050 |EA | 5.19 | 5.34 | |Hp| | | | | |HIP HIP | +280041 |VW Crv |125258.8-143714 |SRB: | 7.48 | 7.80 | |Hp| | | | | |HIP HIP | +280042 |VX Crv |122152.5-135310 |M | 11.4 |< 16. | |p | | | | | |75105 75105| +280044 |VZ Crv |124832.3-154310 |BY | 7.93 |( 0.03 )| |V | | | 18.62 : | |K2V |78018 DM | +280045 |WW Crv |121702.5-241850 |LB | 9.9 | 10.8 | |V | | | | | |79100 DM | +280046 |WX Crv |123517.4-203345 |SRB | 11.4 | 12.5 | |V | | | 102. | |M7e: |79100 79010| +280049 |XX Crv *|122509.5-213952 |RR(B) | 11.93 | 12.74 | |V |52250.8451 | | 0.40644 | | |80132 GSC | NL80_2 +280052 |YY Crv |124416.3-120307 |RRAB | 12.1 | 12.9 | |V |51286.79 | | 0.68115 |15 | |80026 GSC | NL80_2 +290001 |R Crt *|110033.9-181930 |SRB | 9.8 | 11.2 | |p | | | 160. : | |M7 |01113 08953| +290002 |S Crt *|115245.1-073548 |SRB | 10.7 | 12.3 | |p | | | 155. | |M6e-M7e | BD | +290003 |T Crt *|112353.0-195430 |SRB | 9.7 | 11.3 | |p | | | 70. : | |M4 |01113 08953| +290004 |U Crt |111245.3-071755 |M | 9.5 |< 13.5 | |V |28269. | | 169. |45 |M0e |01000 00464| +290005 |V Crt *|112413.4-164023 |EA/KE: | 9.9 | 10.53 | 10.1 |p |41397.3323 | | 0.7020361 |18 *|A6 |06104 00110| +290006 |W Crt *|112629.6-175452 |RRAB | 10.74 | 12.08 | |V |39644.289 | | 0.41201459 |13 |A5:-F6: |09009 00464| +290007 |X Crt *|114856.2-102629 |RRAB | 11.12 | 11.76 | |V |41798.339 | | 0.73283324 |18 |F2-F7 |00727 06286| +290008 |Y Crt |112026.1-245442 |M | 10.2 |< 15.0 | |p |28991. | | 158.36 |50 |M3e-M5e |01004 08953| +290009 |Z Crt *|112600.9-222859 |EA/SD: | 10.5 | 11.5 | |p |31206.325 | | 3.051864 |14 | |00001 00464| +290010 |RR Crt *|113141.2-122253 |SRB: | 9. | 10.5 | |p |31273. :| | | |M5 |01114 00110| +290011 |RS Crt |114903.1-103715 |EA | 11.21 | 11.9 | |B |31211.390 | | 0.8168 |30 |G0 |00192 00110| +290012 |RT Crt |110155.1-073942 |M | 10.8 | 14. | |p |27459. | | 342.7 | |M8 |00349 00132| +290013 |RU Crt |115106.5-111228 |LB: | 8.5 | 9.5 | |p | | | | |M3 |00349 08953| +290014 |RV Crt *|111914.7-194944 |EA | 9.2 : | 9.7 : | 9.4 : |p |42537.7087 | | 1.170494 | |F8 |04584 08953| +290015 |RW Crt |110558.4-090916 |SRB | 8.71 | 8.94 | |V |40683. | | 77. | |MB |05828 BD | +290016 |RX Crt |111747.1-220845 |SRB | 7.3 : | 7.7 : | |V | | | 300. : | |M3 |05828 BD | +290017 |RY Crt |112805.8-200237 |SRB | 9.24 | 9.80 | |V |40652. | | 80. | |MB |05828 08953| +290019 |SS Crt |113544.7-175538 |SRB | 8.54 | 8.82 | |V |40692. :| | 65. | | |05828 BD | +290021 |SU Crt *|113251.6-120206 |DSCTC | 8.62 | 8.65 | |V | | | 0.055 | |F2V |06338 BD | +290022 |SV Crt *|111658.2-070805 |ACV | 6.32 | 6.35 |( 0.015 )|B |40373.62 | | 5.90513 | |A8IVp(Sr-Cr-Si) |07074 BD | +290025 |SY Crt |111539.8-123533 |LB: | 6.34 | 6.62 | |V | | | | |M4III |08225 BD | +290026 |SZ Crt |112126.7-202714 |BY | 8.1 |( 0.035 )| |V | | | | | |68087 BD | +290027 |TT Crt |113447.3-114531 |UG | 12.5 | 15.3 | |V | | | | | |69099 69099| +290028 |TU Crt |110336.6-213746 |UGSU | 12.1 | 17.5 | |B | | | | | |72067 72068| +290029 |TV Crt |112205.3-244640 |RS | 8.91 | 8.98 | |V | | | | | |73005 CoD | +290030 |TW Crt |110148.0-215031 |EA | 8.39 | 8.72 | |Hp| | | | | |HIP HIP | +290031 |TX Crt |110534.0-250109 |ACV | 9.58 | 9.71 | |Hp| | | | | |HIP HIP | +290032 |TY Crt |111306.6-171523 |SRB | 8.00 | 8.18 | |Hp| | | | | |HIP HIP | +290033 |TZ Crt |111320.2-220213 |LB | 7.97 | 8.14 | |Hp| | | | | |HIP HIP | +290034 |UU Crt |111523.6-113518 |SRB | 6.70 | 7.01 | |Hp| | | | | |HIP HIP | +290035 |UV Crt |111913.1-161445 |SRB | 8.49 | 8.67 | |Hp| | | | | |HIP HIP | +290036 |UW Crt |111926.4-212559 |LB: | 8.24 | 8.35 | |Hp| | | | | |HIP HIP | +290037 |UX Crt |112554.0-134505 |SRB | 6.53 | 6.69 | |Hp| | | | | |HIP HIP | +290038 |UY Crt |112736.2-130621 |LB: | 8.26 | 8.39 | |Hp| | | | | |HIP HIP | +290039 |UZ Crt |112957.7-174609 |LB | 7.74 | 7.90 | |Hp| | | | | |HIP HIP | +290040 |VV Crt |113026.1-151920 |E:/RS: | 9.48 | 9.69 | |Hp| | | | | |HIP HIP | +290041 |VW Crt |113905.6-163644 |LB | 7.75 | 7.88 | |Hp| | | | | |HIP HIP | +290042 |VX Crt |113950.3-163713 |SRB: | 6.14 | 6.25 | |Hp| | | | | |HIP HIP | +290043 |VY Crt |114158.0-242309 |DSCTC | 6.94 | 7.04 | |Hp| | | | | |HIP HIP | +290044 |VZ Crt |114330.7-150234 |LPB: | 6.89 | 6.93 | |Hp| | | | | |HIP HIP | +290045 |WW Crt |114609.9-245225 |LB | 7.47 | 7.61 | |Hp| | | | | |HIP HIP | +290046 |WX Crt |110123.8-113244 |SR: | 12.3 | 14.3 | |V | | | | | |76111 GSC | +290047 |WY Crt |111022.2-230234 |SR: | 11.0 | 11.9 | |V | | | | | |77004 DM | +290048 |WZ Crt |111801.9-213514 |SR: | 12.1 | 13.4 | |V | | | | | |77004 GSC | +290049 |XX Crt |112640.8-193614 |SR: | 11.8 | 12.5 | |V | | | | | |77004 GSC | +290050 |XY Crt |112716.6-085208 |ACVO | 8.5 |( 0.01 )| |B | | | | | |77095 DM | +290052 |YY Crt |113232.7-191158 |SR: | 11.6 | 13.2 | |V | | | | | |77004 GSC | +290053 |YZ Crt |114120.3-224824 |SR: | 10.9 | 11.9 | |V | | | | | |77004 DM | +290054 |ZZ Crt |114239.8-113349 |SR: | 11.9 | 13.0 | |V | | | | | |77004 GSC | +290055 |AA Crt |114804.8-163514 |SR: | 10.3 | 11.2 | |V | | | | | |77004 DM | +290056 |AB Crt |110250.1-091949 |BY | 9.03 |( 0.03 )| |V | | | 10.33 | |K3V |78018 DM | +290057 |AC Crt |105921.8-122840 |EW | 9.7 | 10.2 | 10.2 |V |53707.837 | | 0.61726 | |A8 |79064 DM | +290058 |AD Crt |111714.9-233606 |SRB | 9.9 | 11.1 | |V | | | 54. | | |79100 DM | +290059 |AE Crt |114647.0-152002 |SRB | 9.7 | 10.7 | |V | | | 138. | |M |79100 DM | +290060 |AF Crt |114948.0-081721 |SRB | 11.2 | 11.8 | |V | | | 31.5 | | |79100 79091| +290061 |AG Crt *|110330.1-105914 |RRC | 12.0 | 12.6 | |V |54247.491 | | 0.376842 |40 | |80001 GSC | NL80_2 +290063 |AI Crt *|112613.8-140408 |RRAB | 12.3 | 13.4 | |V |53499.5825 | | 0.50290 | | |80153 GSC | NL80_2 +290064 |AK Crt *|112733.2-245008 |EA+DSCTC | 11.00 | 11.52 | 11.15 |V |51965.9735 | | 2.778758 |11 |A7II/III: |80281 DM | NL80_2 +290066 |AM Crt |113324.6-103659 |M | 3.54 | 4.74 | |K | | | 443. | |C |80166 2MASS| NL80_2 +290067 |AN Crt |114106.8-103707 |RRAB | 12.1 | 13.1 | |V |53804.7456 | | 0.622335 |10 | |80002 GSC | NL80_2 +290068 |AO Crt |115302.0-231259 |CWA | 12.4 | 13.5 | |V |53060.3215 | | 15.5707 |50 | |80326 GSC | NL80_2 +300001 |R Cru *|122337.7-613745 |DCEP | 6.40 | 7.23 | |V |34514.629 | | 5.82575 |28 |F6-G2Ib-II |02309 01115| +300002 |S Cru |125422.0-582550 |DCEP | 6.22 | 6.92 | |V |34973.520 | | 4.68997 |34 |F6-G1Ib-II |05366 03511| +300003 |T Cru *|122121.1-621654 |DCEP | 6.32 | 6.83 | |V |34541.340 | | 6.73331 |34 |F6-G2Ib |05366 01115| +300004 |U Cru *|123223.7-573459 |M | 10.3 | 14. | |p |40020. | | 342.6 | |M4e-M6e |05344 03389| +300005 |V Cru |125635.6-575357 |M | 10.4 | 13.90 | |B |15539. | | 376.5 | |Ce(Ne) |00001 08953| +300006 |W Cru *|121159.2-584701 |EB/GS | 9.04 | 10.38 | 9.3 |B |40731.6 | | 198.53 | |G2eIab |01117 08953| +300007 |X Cru |124622.3-590729 |DCEP | 8.10 | 8.70 | |V |34939.562 | | 6.21997 |31 |F6-G2Ib |02309 03511| +300008 |Y Cru |120256.8-634340 |M | 10.8 | 16.0 | |p |14040. | | 214. | |M6e: |00017 05625| +300009 |Z Cru |121114.9-642612 |SRA | 10.8 | 13.5 | |p |18050. | | 341. | |C(N0) |00017 05625| +300010 |RR Cru |122327.5-603557 | | 12.5 | 14.0 | |p | | | | | |01118 GSC | +300012 |RT Cru |123453.9-643356 |IA | 10.7 | 13.1 | |p | | | | |B:e |04160 04160| +300020 |ST Cru |122545.7-600000 |M | 10.7 | 13.7 | |p |21010. | | 440. | |M6e |01119 CoD | +300021 |SU Cru *|121816.9-631649 |DCEP | 9.38 | 10.10 | |V |35075.766 | | 12.8476 |34 | |02309 00040| +300022 |SV Cru *|115753.7-623846 |DCEP | 11.76 | 12.50 | |V |34575.26 | | 7.00427 |30 | |02309 09001| +300023 |SW Cru *|115906.4-601819 |RRAB | 11.82 | 12.65 | |V |26030.453 | | 0.3277799 |18 |A9-F6 |03126 00040| +300024 |SX Cru |115939.5-620822 |EA/SD: | 12.5 | 13.6 | |p |23988.21 | | 0.901374 |21 | |00040 00040| +300025 |SY Cru *|120658.8-624121 |EA/SD | 12.4 |< 14.0 | |p |24290.20 | | 4.2013 |10 | |00040 00040| +300026 |SZ Cru |121525.1-583001 |EA/DM: | 10.9 | 11.6 | |p |24288.28 | | 1.9740 |17 *| |00040 00040| +300027 |TT Cru |122430.0-613316 |EA/SD: | 10.1 | 11.0 | |p |24264.52 | | 2.95201 |17 *| |00039 00040| +300028 |TU Cru *|122851.2-642506 |EB/AR | 11.0 | 11.9 | 11.5 |p |23971.27 | | 3.1000 | | |00040 00040| +300030 |TW Cru *|120316.3-625616 |EW/KW | 12.4 | 12.9 | 12.85 : |p |24776.1574 | | 0.3881358 | | |00045 00045| +300033 |TZ Cru *|120953.6-604815 |EA | 11.8 | 12.4 | |p |24791.045 | | 1.045570 |15 *| |00045 00045| +300036 |UW Cru *|121403.9-644055 |EA/DM: | 12.3 | 13.1 | 12.9 |p |25362.155 | | 6.354527 |07 *| |00049 00045| +300037 |UX Cru *|121804.1-624207 |EA/DM: | 11.7 | 12.5 | 12.4 |p |26043.119 | | 12.29745 |07 *| |01120 00045| +300039 |UZ Cru |122124.7-574955 |EA/GS | 11.1 | 11.6 | |p |24943.58 | | 56.252 |05 | |00045 00045| +300041 |VW Cru |123318.7-633023 |DCEP | 9.32 | 9.94 | |V |40799.40 | | 5.26522 |28 |K0 |00046 00045| +300042 |VX Cru |123423.4-611415 |DCEP | 11.42 | 12.42 | |V |41101.27 | | 12.2126 |32 | |07934 00045| +300050 |XY Cru *|121931.0-634550 |EA/SD | 11.6 | 12.4 | 11.7 |p |24537.884 | | 1.024005 |14 *| |00054 00054| +300054 |ZZ Cru *|120545.4-633015 |EB/DM | 9.65 | 10.1 | 9.8 |B |29262.748 | | 1.862194 | |B3V |00007 05625| +300055 |AA Cru |121711.6-622849 |EA/DM | 10.8 | 11.4 | |p |25331.485 | | 1.89382 |10 | |00055 CPD | +300056 |AB Cru *|121737.1-580953 |EA/DM | 8.56 | 9.2 | 8.9 |B |29235.019 | | 3.4132987 |19 *|O8Vne |00007 08588| +300057 |AC Cru *|122439.2-640052 |EB/K | 11.3 | 12.1 | 12.1 |p |24918.533 | | 0.9041954 | | |00055 00055| +300058 |AD Cru *|121259.7-620549 |DCEP | 10.64 | 11.45 | |V |43344.123 | | 6.39789 |30 | |09003 01122| +300059 |AE Cru *|115834.8-611001 |EA/D | 9.0 | 9.7 |( 0.03 )|p |30399.114 | | 3.4781475 |12 *|B7III |01123 08953| +300060 |AF Cru *|121907.2-630954 |EA | 9.76 | 10.53 | 9.87 |V |24988.959 | | 1.895669 |06 |F5-G9 |01122 08752| +300061 |AG Cru *|124126.0-594739 |DCEP | 7.73 | 8.58 | |V |34908.770 | | 3.83728 |27 |F8Ib-II |06611 01124| +300063 |AI Cru *|120607.7-611525 |EA/KE | 9.55 | 10.30 | 9.94 |B |33466.3358 | | 1.4177073 |20 |B2IVe |01126 04641| +300065 |AL Cru |115638.4-622745 |M | 11.0 |< 13. | |p |30504. | | 328. | |M4e-M8 |00714 GSC | +300066 |AM Cru |123300.6-643224 |EA/DM | 10.7 | 11.2 | |p |28008.320 | | 2.086905 |09 |B5 |04160 04160| +300067 |AN Cru |124315.8-582900 |EA/SD | 10.6 | 12.3 | |V |34421.565 | | 3.25737 |12 *| |00080 03511| +300068 |AO Cru |121745.8-633658 |LC | 8.5 | 10.0 | |p | | | | |M0Ia/ab |00714 05625| +300073 |AT Cru *|120349.4-641606 |EA/DS | 12.4 | 13.5 | 12.6 |p |24550.60 | | 33.925 |10 | |04160 04160| +300074 |AU Cru |120656.0-592127 |SRA | 12.4 | 13.7 | |p |26480. | | 35.2 | | |04160 04160| +300077 |AX Cru |121117.0-605618 |SRA | 11.9 | 13.4 | |p |26092. | | 56.6 | | |04160 04160| +300078 |AY Cru *|121116.0-590803 |EA/SD | 11.1 | 12.2 | 11.2 |p |24802.076 | | 1.598383 |18 | |04160 04160| +300079 |AZ Cru |121131.6-614613 |SRA | 11.8 | 13.1 | |p |26122. | | 37.2 | |C(R5) |04160 04160| +300082 |BD Cru *|122437.9-611445 |EA/SD | 12.1 | 13.3 |( 0.05 )|p |25623.317 | | 1.984223 |18 *| |04160 04160| +300083 |BE Cru |122733.2-581619 |EA/AR: | 12.5 | 13.2 | |p |25165.531 | | 2.220947 |09 | |04160 04160| +300084 |BF Cru *|123518.4-623914 |EW/KW | 12.0 | 12.5 | 12.3 |p |25702.3681 | | 0.49880632 | | |04160 04160| +300085 |BG Cru |123140.3-592526 |DCEPS | 5.34 | 5.58 | |V |40393.66 | | 3.3428 |47 |F5Ib-G0p |05538 05317| +300086 |BH Cru *|121616.8-561710 |M | 7.2 | 10.0 | 8.0 |V |40858. | | 421. | |SC4.5/8-e-SC7/8-e|09006 06031| +300087 |BI Cru *|122326.0-623816 |ZAND | 11.0 | 14.0 | |p | | | | |pec |09007 06031| +300089 |BL Cru |122728.9-585930 |SR: | 5.43 |( 0.35 )| |V | | | | |M4/5III |06994 CoD | +300092 |BO Cru |123639.0-614048 |M: | 7.7 | 12.0 | |I | | | | |M0-M10(S)e: |04956 04956| +300093 |BP Cru *|122637.6-624613 |ELL+XPNG: | 10.83 |( 0.07 )| |V | | | 41.51 | |B2Iaeq |09017 08404| +300094 |BQ Cru *|124332.9-630611 |GCAS | 11.49 | 12.39 | |V | | | | |Be |08405 03112| +300095 |BR Cru |124624.1-563010 |ACV | 8.70 | 8.82 | |V |43014.000 | | 2.8730 |50 |Ap |03127 CPD | +300096 |BS Cru *|125320.7-602317 |BCEP: | 9.75 | 9.79 | |V | | | 0.275 | |B0.5V |08407 03167| +300097 |BT Cru *|125335.5-602347 |BCEP | 9.80 |( 0.032 )| |B | | | 0.133 | |B2:V |08407 03167| +300098 |BU Cru *|125337.6-602125 |E: | 6.80 | 6.90 | |V |43228.61 | | | |B1.5Ib |08407 03167| +300099 |BV Cru *|125339.2-602113 |BCEP | 8.77 |( 0.05 )| |B | | | 0.16 | |B0.5III(n) |08407 03167| +300100 |BW Cru *|125357.5-602458 |BCEP | 9.03 | 9.09 | |V | | | 0.203 | |B2III |08407 03167| +300101 |BX Cru |125038.7-630434 |DCEP | 12.20 | 12.66 | |V |41773.692 | | 19.537 | | |03939 08752| +300102 |BY Cru |120448.8-620008 |EB/GS/K | 7.62 | 8.01 | |V | | | | | |68088 CPD | +300103 |BZ Cru |124250.3-630331 |GCAS | 5.24 | 5.45 | |V | | | | | |68090 68317| +300104 |CC Cru |125347.3-601955 |ELL: | 7.97 |( 0.08 )| |V | | | | | |68092 68092| +300105 |CD Cru |124351.0-630515 |E:/WR | 10.71 |( 0.11 )| |V | | | | | |69064 69100| +300106 |CE Cru |124451.6-625815 |SXARI: | 9.4 |( 0.03 )| |V | | | | | |69064 CPD | +300107 |CF Cru |120455.5-624739 |LB | 11.81 | 12.12 | |I | | | | | |71107 | +300108 |CG Cru |120553.0-624544 |LB | 12.11 | 12.36 | |I | | | | | |71107 USNO | +300109 |CH Cru |124156.6-594109 |GCAS: | 4.88 | 5.7 | |B | | | | | |71105 CPD | +300111 |CK Cru |120258.5-622949 |CEP | 12.26 | 12.67 | |I | | | | | |72042 USNO | +300112 |CL Cru |120659.9-643433 |M | 6.18 | 7.74 | |K | | | | | |72007 | +300113 |CM Cru |123355.5-624953 |M | 8.03 |( 1.75 )| |J | | | | | |72036 USNO | +300114 |CN Cru |125349.5-602303 |EB | 8.61 |( 0.24 )| |B | | | | | |72069 72070| +300115 |CO Cru |120854.3-554342 |DSCTC | 9.22 | 9.30 | |V | | | | | |73129 CPD | +300116 |CP Cru |121031.4-614510 |NA: | 9.2 |< 12. | |V | | | | | |73130 | +300118 |CR Cru |125338.2-602145 |E: | 11.44 |( 0.06 B )| |V | | | | | |73131 73132| +300119 |CS Cru |125339.0-602343 |E: | 9.83 |( 0.09 B )| |V | | | | | |73131 73132| +300120 |CT Cru |125343.9-602229 |BCEP | 9.82 |( 0.02 B )| |V | | | | | |73131 73132| +300122 |CV Cru |125347.0-601836 |BCEP+E: | 9.99 |( 0.04 B )| |V | | | | | |73131 73132| +300123 |CW Cru |125351.6-602317 |BE | 10.09 |( 0.20 B )| |V | | | | | |73131 73132| +300124 |CX Cru |125351.7-602159 |BCEP+E | 10.08 |( 0.04 B )| |V | | | | | |73131 73132| +300125 |CY Cru |125352.2-602228 |BCEP+E: | 9.66 |( 0.05 B )| |V | | | | | |73131 73132| +300126 |CZ Cru |125353.0-602131 |BCEP | 10.26 |( 0.02 B )| |V | | | | | |73131 73132| +300127 |DD Cru |115958.8-583603 |LB: | 8.89 | 9.05 | |Hp| | | | | |HIP HIP | +300128 |DE Cru |120256.4-621031 |LPB | 6.77 | 6.82 | |Hp| | | | | |HIP HIP | +300129 |DF Cru |120323.9-624146 |LPB | 7.78 | 7.84 | |Hp| | | | | |HIP HIP | +300130 |DG Cru |120332.6-610554 |GCAS | 7.43 | 7.64 | |Hp| | | | | |HIP HIP | +300131 |DH Cru |120404.1-643220 |ACV | 7.34 | 7.40 | |Hp| | | | | |HIP HIP | +300132 |DI Cru |120518.7-620310 |WR | 10.62 | 10.94 | |Hp| | | | | |HIP HIP | +300133 |DK Cru |121401.8-592349 |BE | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +300134 |DL Cru |121416.9-642431 |ACYG | 6.24 | 6.28 | |Hp| | | | | |HIP HIP | +300135 |DM Cru |121953.7-625115 |ACYG: | 6.88 | 6.91 | |Hp| | | | | |HIP HIP | +300136 |DN Cru |122731.3-554922 |E: | 8.73 | 8.87 | |Hp| | | | | |HIP HIP | +300137 |DO Cru |123532.5-641317 |BE | 10.09 | 10.32 | |Hp| | | | | |HIP HIP | +300138 |DP Cru |124219.8-625938 |EB | 9.69 | 9.98 | |Hp| | | | | |HIP HIP | +300139 |DQ Cru |124554.0-603306 |BE | 9.03 | 9.19 | |Hp| | | | | |HIP HIP | +300140 |DR Cru |124626.0-575702 |BY: | 8.88 | 8.99 | |Hp| | | | | |HIP HIP | +300141 |DS Cru |125118.0-601947 |ACYG: | 5.79 | 5.84 | |Hp| | | | | |HIP HIP | +300142 |DT Cru |125341.4-611257 |LPB: | 10.02 | 10.21 | |Hp| | | | | |HIP HIP | +300143 |DU Cru *|125341.3-602058 |LC | 7.08 | 7.52 | |Hp| | | | | |HIP HIP | +300144 |DV Cru |125611.2-572814 |BY: | 9.38 | 9.50 | |Hp| | | | | |HIP HIP | +300145 |DW Cru |125633.7-642139 |ACYG: | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +300147 |DY Cru |124724.7-594141 |SR | 8.4 | 9.9 | |V | | | | | |76121 GSC | +300150 |EF Cru |125338.0-602240 |BCEP | 10.17 |( 0.01 )| |V | | | 0.125 | |B2 |78162 GSC | +300151 |EG Cru |125343.3-602402 |BCEP: | 11.45 |( 0.01 )| |V | | | 0.426 | | |78162 GSC | +300152 |EH Cru |125349.4-602058 |BCEP: | 11.81 |( 0.01 )| |B | | | 0.355 | | |78162 GSC | +300153 |EI Cru |125352.0-602216 |BCEP | 9.44 |( 0.01 )| |V | | | 0.182 | |B1V |78162 USNO | +300154 |EK Cru |120258.5-624019 |EB | 8.09 | 8.18 | 8.14 |V |52861.524 | | 4.7470 | |O9.5V |79009 DM | +300155 |EL Cru |121111.7-624534 |EA | 11.76 | 12.02 | 11.85 : |V |53043.798 | | 1.72912 |11 | |79003 GSC | +300156 |EM Cru |122439.8-624550 |M | 11.8 |< 15.8 | |R |53425. | | 338. | | |79093 79093| +300157 |EN Cru |122606.2-593722 |SRB | 9.75 | 11.50 | |V | | | 709. : | |M6 |79064 GSC | +300158 |EO Cru |122900.8-611558 |EA | 9.54 | 10.01 | 9.98 |V |52134.480 | | 5.0244 |04 |A0V |79011 DM | +300159 |EP Cru *|123716.8-564717 |EA | 8.66 | 9.36 | 9.23 |V |53470.691 | | 11.0776 |04 |B5V |79100 DM | +300160 |EQ Cru *|124024.3-594911 |EA | 10.06 | 10.5 : | 10.32 |V |52135.445 | | 15.493 |03 |B9IV |79018 DM | +300161 |ER Cru |124221.3-582807 |SRB | 9.0 | 10.0 | |V | | | 86. | |M4/5 |79064 DM | +300162 |ES Cru |124613.2-615009 |SRB | 10.6 | 11.8 | |V | | | 145. | |M5-M7 |79064 GSC | +300163 |ET Cru |125028.0-603949 |EA | 9.01 | 9.37 | 9.22 |V |52454.515 | | 2.04388 |14 |B2/3III |79011 DM | +300164 |EU Cru |115807.8-641444 |M | 5.27 | 6.00 | |K | | | 414. | |C |80166 2MASS| NL80_2 +300165 |EV Cru |120410.0-624226 |SR | 6.38 | 6.70 | |K | | | 401. | |C |80166 2MASS| NL80_2 +300167 |EX Cru |121243.5-613901 |LB | 6.06 | 7.15 | |K | | | | |C |80166 2MASS| NL80_2 +300168 |EY Cru |122210.2-602415 |M | 4.20 | 5.87 | |K | | | 627. | |C |80166 2MASS| NL80_2 +300170 |FF Cru |123240.9-581129 |M | 3.67 | 5.09 | |K | | | 580. | |C |80166 2MASS| NL80_2 +300171 |FG Cru *|123747.7-621923 |BCEP | 10.1 |( 0.10 )| |V | | | 0.217457 | |B |80356 DM | NL80_2 +300173 |FI Cru |124434.8-633146 |RS | 10.56 | 10.87 | |V | | | 1.282697 | |K3Ve |80002 DM | NL80_2 +300174 |FK Cru |124506.8-623338 |M | 7.35 | 9.23 | |K | | | 806. | | |80166 2MASS| NL80_2 +300175 |FL Cru *|125318.7-640124 |BCEP | 11.6 |( 0.14 )| |V | | | 0.212974 | |B |80356 GSC | NL80_2 +309002 |bet Cru *|124743.3-594120 |BCEP | 1.23 | 1.31 | |V | | | 0.2365072 | |B0.5III-IV |07423 03511| +309004 |del Cru |121508.7-584456 |BCEP | 2.78 | 2.84 | |V | | | 0.151038 |40 |B2IV |08410 CPD | +3090082|tet 2 Cru *|120419.2-630957 |BCEP: | 4.70 | 4.74 | |V | | | 0.0889 | |B3IV |08395 CPD | +309011 |lam Cru *|125439.2-590848 |BCEP: | 4.62 |( 0.02 )| |V |41779.081 | | 0.3951 | |B4Vne |09019 CPD | +3090122|mu. 2 Cru |125436.9-571007 |GCAS | 4.99 | 5.18 | |V | | | | |B5Vne |08419 CPD | +310001 |R Cyg *|193649.4+501200 |M | 6.1 | 14.4 | |V |44595. | | 426.45 |35 |S2.5,9e-S6,9e(Tc)|00001 00002| +310002 |S Cyg |200529.9+575909 |M | 9.3 | 16.0 | |V |44097. | | 322.93 |50 |S2.5,1e(M3.5-M7e)|00001 00002| +310003 |T Cyg *|204710.8+342227 |LB: | 4.91 | 4.96 | |V | | | | |K3III | 08953| +310004 |U Cyg *|201936.6+475339 |M | 5.9 | 12.1 | |V |44558. | | 463.24 |48 |C7,2e-C9,2(Npe) |00001 00002| +310005 |V Cyg |204118.3+480829 |M | 7.7 | 13.9 | |V |44038. | | 421.27 |46 |C5,3e-C7,4e(Npe) |00001 00002| +310006 |W Cyg *|213602.5+452229 |SRB | 6.80 | 8.9 | |B | | | 131.1 |50 |M4e-M6e(Tc:)III |08641 00002| +310007 |X Cyg *|204324.2+353516 |DCEP | 5.85 | 6.91 | |V |43830.387 | | 16.386332 |35 |F7Ib-G8Ib |09029 09027| +310008 |Y Cyg *|205203.6+343928 |EA/DM | 7.30 | 7.90 | 7.75 |V |09453.4192 | | 2.9963328 |10 *|B0IV+B0IV |08839 06225| +310009 |Z Cyg *|200127.5+500233 |M | 7.1 | 14.7 | |V |44618. | | 263.69 |45 |M5e-M9e |00001 00002| +310010 |RR Cyg *|204604.6+445210 |SRB | 11.9 | 12.8 | |p | | | 235. | |M3III |00104 00103| +310011 |RS Cyg *|201323.7+384345 |SRA | 6.5 | 9.5 | |V |38300. | | 417.39 | |C8,2e(N0pe) |05352 00002| +310012 |RT Cyg |194337.8+484641 |M | 6.0 | 13.1 | |V |44588. | | 190.28 |44 |M2e-M8.8eIb |00001 00002| +310013 |RU Cyg *|214039.1+541929 |SRA | 9.2 | 11.6 | |p |43798. | | 233.43 |50 |M6e-M8e |00001 00002| +310014 |RV Cyg *|214316.3+380103 |SRB | 10.8 | 12.4 | |p | | | 263. | |C6,4e(N5) |00653 00097| +310015 |RW Cyg |202850.6+395854 |SRC | 8.05 | 9.7 | |V | | | 550. : | |M2-4Ia-Iab |00001 00097| +310016 |RX Cyg |201049.6+474847 |CST | 8.19 | | |V | | | | |B0III-IVn |00458 BD | +310017 |RY Cyg *|201023.4+355649 |LB | 8.5 | 10.3 | |V | | | | |C4,8-C6,4(N) |06566 06566| +310018 |RZ Cyg *|205153.2+472120 |SRA | 9.8 | 14.1 | |V |40100. | | 275.69 | |M7.0-M8.2ea |00001 00002| +310019 |SS Cyg *|214242.8+433510 |UGSS | 7.7 | 12.4 | |V | | |( 49.5 ) | |K5V+pec(UG) |09030 01129| +310020 |ST Cyg |203233.5+545701 |M | 9.4 | 14.5 | |V |44476. | | 337.29 |48 |M5.5e-M8.0e |00001 00002| +310021 |SU Cyg *|194448.7+291553 |DCEP | 6.44 | 7.22 | |V |43301.778 | | 3.8455473 |37 |F2-G0I-II+B7V |09083 00884| +310022 |SV Cyg *|200930.1+475217 |LB | 11.67 | 13.2 | |B | | | | |C5,5-C7,4(N3) | 00002| +310023 |SW Cyg *|200657.9+461758 |EA/SD | 9.24 | 11.83 | 9.30 |V |41867.8173 | | 4.57313411 |12 |A2e+K0 |09084 01131| +310024 |SX Cyg |201533.5+310420 |M | 8.2 | 15.2 | |V |44080. | | 411.02 |41 |M7e |00001 00002| +310025 |SY Cyg *|194634.3+324218 |EA/SD | 10.7 | 14.2 |( 0.03 )|p |20001.537 | | 6.0055115 |11 |A3 |04248 04248| +310026 |SZ Cyg *|203254.3+463605 |DCEP | 8.92 | 9.84 | |V |43306.79 | | 15.10965 |42 |F9-G5Ib |00001 00097| +310027 |TT Cyg *|194057.0+323706 |SRB | 10.2 | 11.9 | |B | | | 118. | |C5,4e(N3e) |00366 00097| +310028 |TU Cyg |194610.7+490425 |M | 8.7 | 15.5 | |V |44765. | | 219.44 |49 |M3e-M6e |00001 00002| +310029 |TV Cyg *|203319.6+463409 |LB: | 10.9 | 11.4 | |p | | | | |M0 |00349 08953| +310030 |TW Cyg |210559.7+292421 |M | 8.9 | 15.0 | |V |39136. | | 340.86 |48 |M6.5-M10ep |00001 00002| +310031 |TX Cyg *|210006.4+423551 |DCEP | 8.59 | 10.02 | |V |43794.971 | | 14.7098 |37 |F5-G6Ib |09029 09029| +310032 |TY Cyg |193351.9+281944 |M | 9.0 | 15.0 | |V |41875. | | 349.0 |48 |M6e-M8e |00001 00002| +310033 |TZ Cyg |191604.1+500937 |LB | 9.6 | 11.7 | |V | | | | |M6 |09098 00002| +310034 |UU Cyg *|213928.1+431641 |CST | 8.9 | | |p | | | | |A2 | BD | +310035 |UV Cyg *|193113.3+433813 |SRB | 9.9 | 10.5 | |p | | | 135.5 : | |M6 |00366 00097| +310036 |UW Cyg *|202302.8+431433 |EA/SD | 10.7 | 13.0 |( 0.05 )|V |43690.0355 | | 3.4507805 |16 *|F0 |08593 01141| +310037 |UX Cyg *|205505.5+302452 |M | 9.0 | 16.5 : | |V |44421. | | 565.0 |40 |M4e-M6.5e |00001 00002| +310038 |UY Cyg *|205628.3+302540 |RRAB | 10.59 | 11.46 | |V |22433.7270 | | 0.56070478 |22 |A8-F5 |01132 00568| +310039 |UZ Cyg *|215914.3+442135 |EA/DS | 10.23 | 12.11 | 10.31 |V |41226.6585 | | 31.305809 |08 |A3+K1 |09099 00568| +310041 |VW Cyg *|201512.3+343048 |EA/DS | 10.25 | 12.58 | 10.31 |V |41116.8678 | | 8.4303102 |11 |A3e+G5 |09099 01135| +310042 |VX Cyg *|205720.8+401039 |DCEP | 9.54 | 10.55 | |V |43783.642 | | 20.133407 |31 |F5e-G2I-II |09029 00097| +310043 |VY Cyg |210416.6+395820 |DCEP | 9.19 | 10.02 | |V |43045.282 | | 7.856982 |29 |F6-G1Ib |08632 00097| +310044 |VZ Cyg *|215141.4+430803 |DCEP | 8.60 | 9.28 | |V |41705.702 | | 4.864453 |28 |F5-G0 |08300 00100| +310045 |WW Cyg *|200402.7+413517 |EA/SD | 10.02 | 13.26 | 10.16 |V |40377.886 | | 3.3177690 |14 |B8+G |00001 00101| +310046 |WX Cyg |201833.3+372659 |M | 8.8 | 13.2 | |V |40480. | | 410.45 |48 |C8,2JLi(N3e) |00001 00002| +310047 |WY Cyg |214842.2+441459 |M | 9.5 | 17.0 | |p |44832. | | 304.54 |44 |M5e-M6e |00001 08953| +310048 |WZ Cyg *|205306.8+384941 |EB/K: | 10.5 | 11.5 | 10.9 |p |40825.475 | | 0.5844659 | |F0V |00001 01138| +310049 |XX Cyg *|200315.6+585717 |SXPHE | 11.28 | 12.13 | |V |44455.3945 | | 0.134865113 |22 |A5 |09100 00101| +310050 |XY Cyg |194837.2+413752 |M | 11.5 |< 16. | |p |38848. | | 299.18 | |S:e |00001 06286| +310051 |XZ Cyg *|193229.3+562318 |RRAB | 8.9 | 10.16 | |V |44124.440 | | 0.46670 | |A5-F5 |00001 06225| +310052 |YY Cyg |212228.7+422347 |SRA | 12.1 | 13.2 | |p |29826. :| | 388. | |C6,0-C7,3eaV(n) |01000 BD | +310053 |YZ Cyg |210239.8+411709 |CST: | 8.2 | | |p | | | | |A0 | BD | +310054 |ZZ Cyg *|202352.9+465514 |EA/SD | 10.61 | 11.69 | 10.78 |V |45000.3570 | | 0.62861644 |25 *|F6-8V+K5 |00001 01141| +310055 |AA Cyg *|200427.6+364901 |SRB | 9.4 | 12.4 | |p | | | 212.7 | |S7,5-S7.5,6(MpTc)|00653 08953| +310056 |AB Cyg |213633.8+320610 |SRB | 9.5 | 10.1 | |p | | | 520. | |M4IIIe | 01142| +310057 |AC Cyg *|201249.8+492703 |SRB | 9.6 | 10.4 | |p | | | 142. : | |M7 |00111 08953| +310058 |AD Cyg *|203136.5+323352 |LB | 10.4 | 11.4 | |B | | | | |S5,8(Nb) | 08953| +310059 |AE Cyg *|211314.3+304427 |EA/SD | 11.8 | 12.8 |( 0.06 )|p |44586.229 | | 0.96918718 |17 |A5 |00001 01142| +310060 |AF Cyg *|193012.9+460852 |SRB | 7.4 | 9.4 | |p | | | 92.5 | |M5e-M7 |08641 00002| +310061 |AG Cyg |195333.6+370236 |M | 11.2 | 17.0 | |V |34240. | | 296.3 |47 |M6-M8.2 |00001 01145| +310062 |AH Cyg |200036.7+401048 |SRB | 10.8 | 12.3 | |p |29445. | | 112.0 |40 : |M6.5 |01146 01146| +310063 |AI Cyg |203145.2+323121 |SRB | 9.2 | 11.8 | |p | | | 197.3 | |M6-M7 |00653 08953| +310064 |AK Cyg *|214351.3+511307 |CST | 11.05 | | |V | | | | |F8Ib-II |08843 | +310066 |AM Cyg |204900.8+315056 |M | 11.3 | 14.5 | |p |30075. | | 370.6 | |M6e |01000 00565| +310067 |AN Cyg |205122.4+334819 |M | 12.0 |< 15.5 | |p |32770. | | 193.8 | | |00001 06286| +310072 |AS Cyg |205709.2+312016 |M: | 12.5 | 15.5 | |p |26860. :| | 210. : | | |01147 06286| +310073 |AT Cyg |205713.4+331253 |M | 11.2 |< 15.0 | |p |34943. | | 264.1 | |M5e |02931 01149| +310074 |AU Cyg |201832.8+342321 |M | 9.5 | 15.3 | |p |42325. | | 435.31 | |M6e-M7e |00001 01151| +310075 |AV Cyg *|192041.1+293020 |SRD | 11.0 | 13.7 | |p |38270.5 | | 89.22 |40 : |G0e-G6 |08844 00884| +310076 |AW Cyg |192847.6+460238 |SRB | 11.0 | 14.5 | |p | | | 340. : | |C4,5(N3) |09105 08953| +310077 |AX Cyg *|195712.5+441540 |LB | 7.85 | 8.8 | |V | | | | |C4,5(N6) |00340 00103| +310078 |AY Cyg *|200944.2+412937 |LB | 11.7 | 13.9 | |B | | | | |C4,8-C7,4(N) |01155 BD | +310079 |AZ Cyg |205759.4+462801 |SRC | 10.2 | 12.0 | |p | | | 459. : | |M2-4Iab |00111 01141| +310080 |BB Cyg *|211818.3+284004 |M | 11.0 |< 14.2 | |p |41245. | | 259.71 |47 | |00001 02460| +310081 |BC Cyg |202138.5+373159 |SRC | 11.3 | 13.8 | |p | | | 700. : | |M3.5Ia |07341 07341| +310084 |BF Cyg *|192353.5+294029 |ZAND | 9.3 | 13.4 | |p | | | | |Bep+M5III |08044 00570| +310085 |BG Cyg *|193857.7+283047 |M | 9.0 | 12.8 | |V |43784. | | 288.0 |30 |M7e-M8e |00001 00002| +310086 |BH Cyg |211857.6+415338 |M | 11.9 |< 17. | |p |29876. | | 361.85 | |M5 |00001 06286| +310087 |BI Cyg *|202121.9+365556 |LC | 8.4 | 9.9 | |V | | | | |M4Iab |00104 00570| +310088 |BK Cyg |212932.7+472135 |M | 11.5 |< 17.0 | |p |38202. | | 511. | |M9 |05348 01159| +310091 |BN Cyg |214446.8+462843 |M | 11.8 | 17.5 | |p |37959. | | 174.3 | |M4e |00001 06286| +310092 |BO Cyg *|214914.5+410817 |EA/DM | 11.8 | 12.5 | 12.0 |p |36446.767 | | 1.756227 |18 | |00001 01142| +310093 |BP Cyg |215252.4+485727 |M | 12.0 |< 17. | |p |32810. | | 309.00 | |M5 |01159 01159| +310094 |BQ Cyg |215454.2+512844 |M | 11.5 |< 15. | |p |33260. | | 419.84 | |M7 |00001 06286| +310095 |BR Cyg *|194054.7+464706 |EA/SD | 9.4 | 10.60 | 9.58 |V |41539.4654 | | 1.33256415 |19 *|A5V+F0V |07496 00192| +310096 |BS Cyg *|195143.5+534132 |M | 11.0 |< 16. | |p |37583. | | 426.7 | |C6-7,-e(Nep) |00001 01161| +310097 |BT Cyg |200017.1+504040 |M | 12. |< 16. | |p |25163. | | 272.5 | | |01000 06286| +310098 |BU Cyg |200531.0+502201 |M | 10.2 | 14.5 | |V |33096. | | 157.87 |50 |M0 |00001 01162| +310099 |BV Cyg |203244.7+541716 |M | 11. |< 15.5 | |V |21530. | | 322.5 | | |00001 06286| +310103 |BZ Cyg *|204559.8+451825 |DCEP | 10.00 | 10.53 | |V |43774.037 | | 10.141932 |50 |F8Ib-G5Ib |09029 00799| +310104 |CC Cyg |204748.7+540238 |M | 12. |< 16. | |p |25330. | | 320. | | |01167 06286| +310105 |CD Cyg *|200426.6+340644 |DCEP | 8.35 | 9.56 | |V |43831.167 | | 17.073967 |28 |F8-K0Ib |09029 00884| +310106 |CE Cyg |211856.3+470026 |CST | 7.75 | | |V | | | | |K3III |08847 09108| +310107 |CF Cyg |200126.6+520519 |CST | 8.9 | | |V | | | | |A2 |00179 BD | +310108 |CG Cyg *|205813.4+351030 |EA/SD/RS | 9.73 | 10.86 : |< 10.44 |V |39425.1221 | | 0.63114100 |13 *|G9.5V+K3V |07499 00192| +310109 |CH Cyg *|192433.1+501429 |ZAND+SR | 5.60 | 8.49 | |V | | | | |M7IIIab+Be |08849 00002| +310110 |CI Cyg *|195011.8+354103 |EA/GS+ZAND| 9.9 | 13.1 | |p |11902. | | 855.25 |16 |Bep+M5III |01567 03677| +310112 |CL Cyg |195732.7+545749 |M | 12.3 |< 17. | |p |24482. | | 308.4 | | |01171 01161| +310113 |CM Cyg *|195834.2+520547 |M | 9.3 | 14.5 | |V |44359. | | 254.83 |44 |SC2-S4e |00001 01172| +310114 |CN Cyg |201753.6+594734 |M | 7.3 | 15.0 | |V |44577. | | 198.53 |44 |M2-M7e(S) |00001 01172| +310115 |CO Cyg |210034.5+444530 |LB | 9.6 | 10.6 | |p | | | | |K5 |00104 01141| +310116 |CP Cyg |213727.9+444148 |CST | 6.20 | | |V | | | | |A7III | BD | +310117 |CQ Cyg |195740.0+531835 |CST: | 9.6 | | |p | | | | |F2 |00111 03557| +310120 |CT Cyg |210806.0+321347 |M | 10.5 |< 13.3 | |V |41853. | | 282.28 | |M7 |00001 01173| +310121 |CU Cyg *|195226.2+551942 |M | 9.5 | 14.1 | |V |37958. | | 213.6 |43 |M6e |00001 00119| +310122 |CV Cyg *|195420.9+380250 |EW/DW | 10.80 | 11.40 | 11.33 |V |24454.4160 | | 0.9834308 | |F8III |03678 01174| +310123 |CW Cyg |195306.3+540559 |E: | 12.0 | 14.1 | |p | | | | | |01175 | +310124 |CX Cyg |201043.5+494958 |SRA | 10.9 | 12.9 | |V |24040. | | 270. |43 |M |00458 01173| +310125 |CY Cyg *|204650.2+460307 |LB | 11.0 | 11.7 | |p | | | | |CS(M2p) |00104 BD | +310126 |CZ Cyg *|211233.3+284652 |M | 10.0 |< 13.3 | |V |38580. | | 278.0 | | |00001 00592| +310127 |DD Cyg *|193131.4+344218 |M | 10.5 |< 13. | |p |44568. | | 147.6 |47 |M0e |00001 01149| +310129 |DF Cyg *|194853.9+430215 |RVB | 10.8 | 15.2 | |p |42255. | | 49.808 | |G5-K4I-II |09110 00119| +310131 |DH Cyg *|205828.0+473850 |M | 12.3 | 15.8 | |p |34748. | | 527.8 |29 |M6 |02700 02700| +310132 |DI Cyg |210226.0+305524 |M | 11.8 |< 15.5 | |p |35176. | | 352.4 | |M2e |00001 06286| +310133 |DK Cyg *|213502.7+343545 |EW/D | 10.37 | 10.93 | 10.90 |V |37999.5838 | | 0.47069055 | |A7V |03682 00225| +310134 |DL Cyg *|213946.5+483224 |EA/DM | 9.6 | 10.3 | 9.9 |p |44087.499 | | 4.8303889 |15 *|B3 |00001 00225| +310135 |DM Cyg *|212111.6+321129 |RRAB | 10.93 | 11.99 | |V |42582.406 | | 0.4198600 |13 |A9-F6 |04957 00522| +310137 |DO Cyg |215822.6+523402 |EA/SD | 11.4 | 12.3 | |p |44487.377 | | 1.7100091 |08 |A0 |00001 01179| +310139 |DQ Cyg *|220217.5+544247 |M | 12.1 |< 14.4 | |p |24790. | | 360. | |M8 |01180 00856| +310140 |DR Cyg |204341.0+380956 |M | 9.3 |< 15.5 | |p |39419. | | 313.88 | |M5e |00001 01181| +310142 |DT Cyg *|210630.3+311105 |DCEPS | 5.57 | 5.96 | |V |44046.969 | | 2.499215 |48 |F5.5-F7Ib-II |00001 01182| +310143 |DU Cyg |211242.9+364418 |M | 9.8 | 14.2 | |V |39384. | | 108.21 | |M4 |00001 01202| +310144 |DV Cyg *|192144.8+294530 |M | 12.4 | 16.0 | |p |34971. | | 149.5 | | |00001 04244| +310145 |DW Cyg *|192316.9+281151 |M | 12.5 | 16.6 | |p |36806. | | 275.8 | |M6 |00001 04427| +310148 |DZ Cyg |192711.5+315749 |M | 12.4 | 17. | |p |36833. | | 191.78 | | |04244 04244| +310152 |EH Cyg *|193648.8+280743 |M | 11.8 | 16.5 | |p |44470. | | 280.70 |50 |M4ea:-M8 |00001 04427| +310156 |EM Cyg *|193840.1+303028 |UGZ+E | 11.9 | 14.4 | |p | | | | |pec(UG) |04248 04248| +310159 |EP Cyg |194503.7+311951 |DCEP | 12.31 | 13.12 | |V |37852.785 | | 4.2889305 |26 | |04248 01203| +310163 |ET Cyg |195119.5+311813 |M | 12.4 |< 18. | |p |35394. | | 327.2 | | |03662 03662| +310165 |EV Cyg *|195301.8+293852 |M | 11.5 |< 16. | |p |37186. | | 262.5 |46 |M2e-M6.5 |04427 04427| +310168 |EY Cyg |195436.7+322155 |UGSS | 11.4 | 15.7 | |p | | |( 240. ) | |Be(subdwarf)+K0V |00001 04244| +310169 |EZ Cyg *|195749.0+301557 |DCEP | 11.7 | 13.4 | |p |37892.691 | | 11.659717 |44 : |G5 |04244 04244| +310170 |FF Cyg *|203851.7+375323 |M | 8.2 | 14.2 | |V |44456. | | 323.82 |43 |S6,8e(M4e) |00001 01149| +310171 |FG Cyg *|215933.4+483216 |M | 11.7 |< 16. | |p |41907. | | 442.5 | |M9: |00001 06286| +310175 |FL Cyg |192654.1+340711 |M | 12.1 | 16.5 | |p |37866. | | 143.86 | | |00001 03662| +310176 |FM Cyg *|193007.4+295516 |M | 12.2 |< 17.2 | |p |35368. | | 269.7 |49 |M7-M9 |00001 04244| +310180 |FQ Cyg |193348.4+305455 |M | 12.5 | 16.7 | |p |35321. | | 294.6 | |M6.5-M9 |00001 04427| +310182 |FS Cyg |193615.1+342350 |M | 11.8 |< 16.2 | |p |34626. | | 356.5 | |M6e |03662 03662| +310184 |FU Cyg |194116.1+315630 |M | 11.8 | 16.7 | |p |36804. | | 213.5 |45 |M7-M9 |03662 03662| +310187 |FX Cyg |194409.6+394726 |M | 12.5 |< 15.5 | |p |26259. | | 385. | | |01205 01206| +310189 |FZ Cyg |195113.0+390446 |M | 12.0 | 15.2 | |p |35665. | | 196.3 | |M9: |00001 06286| +310190 |GG Cyg *|195418.6+324046 |EA/SD | 12.0 | 12.9 | 12.1 |p |32793.392 | | 2.00836486 |20 |A5 |04244 04244| +310191 |GH Cyg |195910.8+292703 |DCEP | 9.50 | 10.33 | |V |42743.743 | | 7.817930 |33 |F5-G1 |08632 04244| +310192 |GI Cyg |195933.7+334446 |DCEP | 11.43 | 12.03 | |V |37906.645 | | 5.782550 |31 | |04248 04248| +310195 |GM Cyg *|200415.9+380744 |EA/SD | 12.0 | 13.5 | |p |32408.522 | | 4.745802 |11 *|B9 |03115 01209| +310196 |GN Cyg *|200422.2+402630 |SRA | 9.8 | 12.4 | |p |29214. | | 140.7 |46 |M7 |00460 08953| +310197 |GO Cyg *|203720.1+352610 |EB/KE | 8.47 | 9.09 | 8.73 |V |33930.4056 | | 0.71776382 | |B9n+A0n:V |05222 08953| +310199 |GQ Cyg |210411.8+334257 |M | 11.1 |< 15. | |p |33853. | | 333.7 | |M5e |00001 06286| +310200 |GR Cyg |210440.1+371642 |M | 12. |< 16. | |p |25270. :| | | |S |01211 06286| +310201 |GS Cyg *|212940.8+303313 |M | 12. |< 16. | |p |25612. | | 390. | |M6e-M10e |01212 06286| +310203 |GU Cyg |215205.3+501822 |M | 12.2 | 16. | |p |33478. | | 325.41 | |M9 |00001 06286| +310207 |GY Cyg *|220153.5+484337 |SRB | 10.6 | 12.5 | |p | | | 300. : | |M7p |08856 00119| +310213 |HM Cyg |193255.9+365029 |M | 11.5 |< 15. | |p |33737. | | 387.3 | |M5 |00001 00133| +310217 |HQ Cyg |193349.8+385000 |M | 12.5 |< 15.5 | |p |40743. | | 287. | | |07118 00133| +310231 |IN Cyg |194404.9+343108 |M | 12.5 |< 19. | |p |41567. | | 287. |35 | |07118 05353| +310233 |IP Cyg |194440.1+344938 |M | 12. |< 18. | |p |32810. | | 406. | |M10 |04417 04417| +310242 |IY Cyg |195533.8+314550 |CEP | 12.49 | 13.89 | |V |28449.93 | | 21.75257 |17 | |04248 04248| +310243 |IZ Cyg |195520.4+370357 |M | 11.0 | 17.5 | |p |34985. | | 441.2 | |M2e-M10 |00001 00133| +310245 |KL Cyg *|195753.5+330936 |M | 12.4 | 17. : | |p |41127. | | 526. |55 |Ce |04972 00133| +310246 |KM Cyg |200013.4+360843 |M | 11.4 | 19. | |p |33297. | | 334.7 | |M4 |01003 00133| +310249 |KP Cyg *|200540.7+411545 |RRAB | 12.5 | 14.2 | |p |26178.579 | | 0.855936 |22 |A8-F7 |08859 01223| +310251 |KR Cyg *|200905.6+303301 |EB | 9.19 | 10.00 | 9.37 |V |29106.413 | | 0.8451517 | |A2V |00001 08953| +310253 |KT Cyg |201143.5+363108 |GCAS: | 11.9 | 13.8 | |p | | | | |B5e |07079 00133| +310254 |KU Cyg *|201245.1+472341 |EA/D:/RS: | 10.73 | 12.38 | 11.15 |V |33884.84 | | 38.4393 |08 |F4p+K5eIII: |03730 01225| +310255 |KV Cyg *|201538.1+364737 |EB/SD | 11.5 | 12.6 | 11.9 |p |29468.389 | | 2.8389936 | |B0 |01226 01226| +310259 |KZ Cyg |202722.9+410450 |M | 11.2 | 17.2 | |p |39993. | | 405.95 |45 |M8e |00001 00133| +310270 |LV Cyg |215508.0+481348 |M | 11.3 |< 17.0 | |p |33403. | | 370.4 | |M7 |01159 GSC | +310271 |LW Cyg |215513.8+502950 |LB | 12.30 |< 14.5 | |B | | | | |C5,4(R3) |06566 06566| +310272 |LX Cyg *|215557.1+482051 |M | 11.5 |< 17. | |p |38895. | | 465.3 | |SC3e-S5,5e: |00001 01159| +310279 |MQ Cyg *|215826.2+532412 |M | 12.0 | 15.4 | |V |41180. | | 480. |38 |C(N) |00001 06566| +310280 |MR Cyg *|215856.6+475900 |EA/SD | 8.75 | 9.68 | 9.12 |V |33396.4069 | | 1.67703362 |22 |B3V+B9 |06501 08953| +310282 |MT Cyg |215850.4+520059 |L | 12. | 13. | |p | | | | | |00132 00133| +310285 |MW Cyg |201222.8+325218 |DCEP | 9.14 | 9.90 | |V |42923.839 | | 5.954586 |30 |F8-G2Ib |08632 01232| +310287 |MY Cyg *|202003.4+335635 |EA/DM | 8.30 | 9.02 | 8.99 |V |33847.607 | | 4.0051873 |09 *|A7:m+A5:m |08861 00192| +310288 |MZ Cyg *|212154.7+372733 |CWA: | 10.76 | 12.68 | |V |43983.40 | | 21.314 |34 |G1-G3 |00001 01235| +310334 |QZ Cyg |195904.0+381543 |LB | 11.2 | 12.4 | |p | | | | |M3 |01236 08953| +310345 |V0345 Cyg |201010.7+302855 |EA/DM | 11.3 | 11.8 | |p |28635.568 | | 2.075493 |18 |A1 |00001 00599| +310346 |V0346 Cyg *|201924.7+362024 |EA/SD | 11.8 | 13.5 | 11.9 |p |35686.750 | | 2.743282 |14 *|A5 |08867 01241| +310354 |V0354 Cyg |210209.2+442436 |SRB | 11.4 | 13.1 | |p |29534. | | 101.74 |61 |M5 |09114 09114| +310360 |V0360 Cyg *|211035.5+304021 |RVA | 10.36 | 12.23 | |V |39748. | | 70.390 | |F5-G0e |00001 01142| +310363 |V0363 Cyg |212119.9+315728 |M | 11.6 |< 16. | |p |31970. | | 357.0 | | |00001 00599| +310366 |V0366 Cyg *|204429.8+540607 |EB/KE | 10.0 | 10.5 | 10.2 |p |34489.593 | | 1.0960183 | |A5 |02739 08953| +310367 |V0367 Cyg *|204759.6+391716 |EB/GS/SD: | 6.67 | 7.60 | 7.16 |V |37390.855 | | 18.59773 | |B8peIa+F4III |08608 08953| +310369 |V0369 Cyg *|194154.7+544035 |M | 9.8 | 14.9 | |V |44799. | | 104.76 |47 |M4e |08079 01217| +310370 |V0370 Cyg *|194338.1+324735 |EB/SD | 11.8 | 13.1 | 11.9 |p |34629.462 | | 0.77454388 | |A0 |04248 04248| +310371 |V0371 Cyg *|201821.6+300921 |EA/GS/D | 12.2 | 13.2 | 12.5 |p |31993.95 | | 45.3796 |13 *|G5III |03115 01249| +310372 |V0372 Cyg |202637.7+554449 |SRA | 11. | 12. | |p |27380. | | 308. | |M6 |01250 01217| +310380 |V0380 Cyg *|195037.3+403559 |EA/DM | 5.61 | 5.78 | 5.76 |V |41256.053 | | 12.425612 |11 *|B1III+B3V: |07134 00846| +310382 |V0382 Cyg *|201847.2+362026 |EB | 8.29 | 9.18 | 9.12 |V |36814.7706 | | 1.8855146 | |O7+O8V |08873 08953| +310383 |V0383 Cyg |202858.2+340806 |CWB: | 10.60 | 11.14 | |V |37298.125 | | 4.612211 |35 | |00782 00601| +310385 |V0385 Cyg *|205347.6+353310 |EA/SD | 12.3 | 13.3 | 12.4 |p |42964.406 | | 1.2280478 |20 *| |00001 01251| +310386 |V0386 Cyg |211440.4+414259 |DCEP | 9.25 | 9.97 | |V |42777.188 | | 5.257606 |29 |F5-G1Ib |08632 01142| +310387 |V0387 Cyg *|211537.4+372952 |EA/K: | 11.5 | 12.3 | 11.6 |V |27985.461 | | 0.6405964 |27 *|A4+G5 |08907 00192| +310388 |V0388 Cyg *|202912.9+312312 |EB/KE: | 8.9 | 9.55 | 9.15 |V |41953.3373 | | 0.8590372 | |A3 |08908 01255| +310389 |V0389 Cyg *|210838.9+301220 |* | 5.55 | 5.71 | |V | | | | |B9Vp(Si) |01256 01182| +310390 |V0390 Cyg |193155.3+482730 |M | 11.1 | 18.6 | |p |36771. | | 249.4 | |M8 |02931 00534| +310391 |V0391 Cyg |194052.4+484742 |M | 11.2 |< 15.2 | |p |28330. | | 405. | |M8 |00345 00534| +310392 |V0392 Cyg |195246.0+562050 |SR | 12.5 | 14.5 | |p |27577. | | 102. | | |01250 01217| +310393 |V0393 Cyg *|195848.3+431744 |EA/DS | 9.0 | 10.0 | |p |44090.485 | | 13.63354 |09 |A0 |08910 08910| +310394 |V0394 Cyg |200544.2+483209 |M | 11.5 |< 14.7 | |p |36810. | | 422. | | |02931 00534| +310395 |V0395 Cyg |200839.6+440338 |SRD: | 7.9 | 8.62 | |V | | | 40.5 | |F8Ib |03246 08953| +310397 |V0397 Cyg |203211.2+352727 |LB | 12.3 | 13.7 | |p | | | | |M7ea |00782 00601| +310398 |V0398 Cyg |204650.8+341204 |EA | 12.5 |< 15. | |p |25157.27 | | 9.2122 : | | |01000 00601| +310401 |V0401 Cyg *|192920.3+302429 |EW/KE | 10.64 | 11.17 | 11.13 |V |43835.259 | | 0.5827220 | |F0 |00001 04427| +310402 |V0402 Cyg *|200907.8+370907 |DCEP | 9.53 | 10.22 | |V |41698.635 | | 4.364836 |30 |G0III |08300 01260| +310403 |V0403 Cyg |201033.4+512644 |CWB: | 11.8 | 12.3 | |p |28768.20 | | 0.80477 |31 | |09120 01261| +310405 |V0405 Cyg |202136.2+402650 |LB | 10.0 | 10.6 | |p | | | | |M6.5 |00324 08953| +310408 |V0408 Cyg |210538.0+460009 |LB | 11.4 | 12.5 | |p | | | | |M6III |00612 00319| +310410 |V0410 Cyg |214048.5+494945 |M | 11.0 | 15.5 | |p |33410. | | 429.5 | |M8 |01159 01159| +310413 |V0413 Cyg |215505.2+542902 |LB | 12.4 | 13.2 | |p | | | | |C5,4(N3) |01280 06566| +310417 |V0417 Cyg |200058.7+394218 |LB | 12.3 | 13.5 | |p | | | | |M6 |01155 02333| +310420 |V0420 Cyg |200242.8+420852 |LB | 10.9 | 11.6 | |p | | | | |M2-M3 |01155 02333| +310425 |V0425 Cyg *|200804.6+360726 |GCAS: | 10.05 | 10.24 | |V | | | | |Bpe |09122 02333| +310427 |V0427 Cyg *|200803.5+373643 |SRB | 10.9 | 13.8 | |p |37170. | | 59.07 | |M3 |05352 02333| +310430 |V0430 Cyg *|201126.2+354228 |SRB | 12.4 | 14.6 | |p | | | | |M4 |07341 07341| +310436 |V0436 Cyg |201708.6+365313 |SRA | 11.0 | 12.2 | |V |37243. | | 316.26 | |C3,5(R) |00001 06566| +310438 |V0438 Cyg |201854.3+400352 |DCEP | 12.0 | 13.5 | |p |25435.71 | | 11.211058 |40 | |01282 01282| +310440 |V0440 Cyg |202523.3+405218 |LB | 12.3 | 13.9 | |p | | | | |M3 |01155 02334| +310441 |V0441 Cyg *|202708.1+363307 |SRA | 10.0 | 12.5 | |p |25708. | | 375. | |M4(S4,6) |01155 00523| +310442 |V0442 Cyg *|202752.3+304728 |EA | 10.0 | 10.4 | 10.4 : |p |28745.249 | | 2.3859476 |10 |F4+F5: |00525 00021| +310443 |V0443 Cyg *|202745.6+384124 |EA | 12.3 | 13.0 | |p |27298.509 | | 0.8311017 |13 | |02400 02400| +310444 |V0444 Cyg *|201932.4+384354 |EA/WR | 7.92 | 8.22 | 8.06 |V |41164.332 | | 4.212424 |20 *|O6+WN5.5 |07149 01283| +310445 |V0445 Cyg *|202819.0+381743 |EA/SD | 11.7 | 15.5 | |p |40147.414 | | 1.947738 |09 | |00001 02334| +310448 |V0448 Cyg *|200609.9+352310 |EB/SD | 7.90 | 8.72 | 8.40 |V |16361.107 | | 6.5197162 | |O9.5e+B1Ib-II |08916 08953| +310449 |V0449 Cyg |195321.0+335701 |LB | 7.4 | 9.07 | |B | | | | |M1-M4 |03662 03662| +310451 |V0451 Cyg |194746.4+344207 |SRA | 11.3 | 12.0 | |p |28735. | | 50.6 |38 |M4 |00600 00319| +310453 |V0453 Cyg *|200635.0+354426 |EA/D | 8.29 | 8.72 | 8.68 |V |39340.0988 | | 3.8898128 |15 |B0.5IV:+B1V: |06174 07151| +310454 |V0454 Cyg *|201556.8+373031 |EB/SD | 11.8 | 13.2 | 12.3 |p |28725.469 | | 2.3168937 | |B5 |05352 00342| +310455 |V0455 Cyg *|202620.9+394010 |EB/DM | 10.4 | 11.0 | 10.9 |p |37112.51 | | 8.76573 | |B2(p:e:) |00001 09124| +310456 |V0456 Cyg *|202850.9+390914 |EA/SD: | 10.8 | 11.9 | 11.4 |p |44911.353 | | 0.89119220 |08 *|A2 |00385 00385| +310459 |V0459 Cyg |211054.4+490831 |DCEP | 10.27 | 10.99 | |V |36808.656 | | 7.25125 |29 |F8 |03157 01141| +310460 |V0460 Cyg |214201.1+353037 |SRB | 5.57 | 7.0 | |V | | | 180. : | |C6,4(N1) |09125 08953| +310461 |V0461 Cyg *|193247.1+430703 |SR | 12.2 | 13.8 | |p |27960. | | 199. | | |00157 00346| +310462 |V0462 Cyg *|194003.3+435356 |M | 12.0 | 16.4 | |p |39650. | | 366.68 | |M7e |00001 00534| +310463 |V0463 Cyg *|194213.9+311803 |EA/DM | 10.55 | 11.15 | 10.65 |V |44081.508 | | 2.117562 |20 *|A0V |00001 01290| +310466 |V0466 Cyg *|195433.5+330005 |EA | 10.8 | 11.7 | 11.4 |p |28774.389 | | 1.39156629 |12 *|F4 |04244 01292| +310470 |V0470 Cyg *|201921.7+405317 |ELL/DM | 8.53 | 8.55 | 8.545 |V |42283.860 | | 1.873142 | |B2+B2 |08917 BD | +310471 |V0471 Cyg *|210707.8+383405 |LB | 11.8 | 13.0 | |p | | | | |S7,5 |01294 06286| +310474 |V0474 Cyg *|191401.6+490542 |EA/DS | 11.3 | 12.7 | |p |26631.148 | | 23.65881 |08 |F8 |03115 00534| +310475 |V0475 Cyg |191901.8+435927 |LB | 11.9 | 12.6 | |p | | | | |M5III |00349 01089| +310477 |V0477 Cyg *|200527.7+315818 |EA/DM | 8.50 | 9.34 | 8.69 |V |44189.2639 | | 2.3469906 |07 |A3V+F5V |00001 01296| +310478 |V0478 Cyg *|201938.8+382009 |EA/DM | 8.63 | 9.04 | 9.02 |V |41602.724 | | 2.8808994 |16 *|O9.5Vp+B0V |08920 BD | +310479 |V0479 Cyg |211554.9+381130 |M | 11.0 | 15.4 | |p |39060. | | 388. | |M6 |00001 USNO | +310480 |V0480 Cyg |195226.9+343641 |SRB | 10.5 | 11.1 | |p | | | 29. : | |M0-M4 |00782 01298| +310482 |V0482 Cyg *|195942.6+335928 |RCB | 11.8 |< 15.5 | |p | | | | | |03662 01299| +310483 |V0483 Cyg *|200045.9+315003 |EB/DM | 11.6 | 12.3 | 11.9 |p |28098.406 | | 2.6042757 | |B8 |04244 04244| +310485 |V0485 Cyg |200115.1+335542 |LB | 8.9 | 9.8 | |p | | | | |M5III |03662 03662| +310487 |V0487 Cyg |200628.4+332003 |SRB | 11.5 | 12.5 | |p | | | 122. | |M5 |00782 | +310489 |V0489 Cyg |200952.4+302104 |LB | 11.8 | 13.1 | |p | | | | |M6.5 |00798 02355| +310495 |V0495 Cyg |201558.3+350053 |DCEP | 12.2 | 12.7 | |p |28419.278 | | 6.72379 |17 | |00782 00601| +310496 |V0496 Cyg *|201940.4+354711 |EA/KE: | 12.1 | 12.5 | 12.5 |p |28805.607 | | 1.474915 |20 | |01002 00601| +310498 |V0498 Cyg *|202310.8+390944 |EA/DM | 9.98 | 10.75 | 10.27 |V |42633.406 | | 3.4848355 |20 *|B1:III: |00001 01300| +310500 |V0500 Cyg *|202440.4+345705 |EA/SD | 11.9 | 13.4 | 12.0 |p |28860.222 | | 0.9242137 |16 *| |03115 | +310505 |V0505 Cyg *|202928.9+324750 |EB | 11.7 | 12.4 | 12.0 |p |28099.426 | | 0.6676720 | |F0 |00798 02355| +310512 |V0512 Cyg *|204443.7+493551 |EA/SD: | 11.4 | 12.4 | 11.5 |p |34730.397 | | 2.424630 |13 *|A0 |05689 02372| +310513 |V0513 Cyg *|204556.8+403823 |EA/KE: | 12.5 | 13.0 | 12.6 |p |28245.58 | | 1.056196 |19 *| |00612 02343| +310514 |V0514 Cyg |204612.6+452843 |DCEP | 12.4 | 13.2 | |p |36445.69 | | 5.09891 |24 |K3 |00001 02285| +310517 |V0517 Cyg |204723.6+434440 |INSA | 12.5 | 15.3 | |p | | | | |A5ea |07754 07115| +310520 |V0520 Cyg *|205457.5+473202 |DCEP | 10.53 | 11.11 | |V |43670.714 | | 4.049068 |23 |G0 |00001 08637| +310523 |V0523 Cyg |210205.0+351848 |M | 11.4 | 17.0 | |p |33229. | | 373.4 |39 |M7e |01302 01302| +310530 |V0530 Cyg |211209.6+473802 |INSA: | 11.9 | 12.6 | |p | | | | |B5: |00612 02373| +310532 |V0532 Cyg *|212032.9+452803 |DCEPS | 8.85 | 9.30 | |V |41706.559 | | 3.283612 |44 |F5 |08300 02344| +310536 |V0536 Cyg *|213258.2+495356 |EA/SD | 11.9 | 14.2 | |p |37576.374 | | 6.01020 |10 | |09126 03842| +310537 |V0537 Cyg |213401.2+495600 |EA/SD | 11.9 | 12.8 | |p |28408.494 | | 4.75842 |06 |A |03843 03842| +310538 |V0538 Cyg *|213728.1+514545 |DCEP | 10.20 | 10.73 | |V |42772.924 | | 6.118961 |33 | |08632 01304| +310539 |V0539 Cyg *|213932.7+451100 |SRB | 10.1 | 11.9 | |p | | | 160. | |M6 |01142 03158| +310540 |V0540 Cyg |191838.4+482731 |M | 12.4 |< 14.8 | |p |43250. | | 361. | |M5e |08729 00534| +310541 |V0541 Cyg *|194229.4+311940 |EA/DM | 10.2 | 10.9 | 10.9 |p |43348.443 | | 15.33779 |02 *|A0 |00001 01305| +310544 |V0544 Cyg *|195322.6+563730 |M | 12.4 |< 17.5 | |p |34485. | | 273.3 | | |00164 00492| +310548 |V0548 Cyg *|195658.3+544758 |EA/SD: | 8.54 | 9.29 | 8.62 |V |44456.4958 | | 1.805233 |20 *|A1V+F7 |00001 02354| +310549 |V0549 Cyg |200250.2+565122 |M | 12.3 |< 17.5 | |p |31750. | | 325.5 | | |00164 02354| +310555 |V0555 Cyg |200720.7+565853 |LB | 12.1 | 13.3 | |p | | | | |M5 |00164 01217| +310558 |V0558 Cyg |201156.2+542909 |M | 11.2 |< 17.5 | |p |44197. | | 344.65 | | |00001 02354| +310561 |V0561 Cyg |202558.2+520841 |ISB | 11.8 | 14.5 | |p | | | | |G-K |00164 02354| +310568 |V0568 Cyg |204222.3+352722 |GCAS | 6.40 | 6.68 | |V | | | | |B2IV-VeV | 09128| +310577 |V0577 Cyg |211000.0+464420 |SRA | 10.3 | 11.0 | |V |42027. | | 479.0 | |C7,4e(N) |00001 03814| +310579 |V0579 Cyg |211048.4+441046 |LB | 11.4 | 13.02 | |B | | | | |M6ea |01262 02373| +310582 |V0582 Cyg |211151.4+463418 |LB | 11.8 | 12.4 | |p | | | | |M4 |01262 02344| +310590 |V0590 Cyg |211721.3+454229 |LB | 11.8 | 12.2 | |p | | | | |M6 |01262 02337| +310591 |V0591 Cyg |211724.7+461123 |LB | 11.0 | 12.10 | |B | | | | |M2 |01262 02373| +310598 |V0598 Cyg |212246.6+305852 |M | 12.0 |< 15. | |p |18503. | | 298.3 | | |00797 06286| +310602 |V0602 Cyg |212336.0+413312 |L: | 11.6 | 12.2 | |p | | | | |G7 |01262 02344| +310609 |V0609 Cyg |212656.0+542929 |DCEP | 12.2 | 13.6 | |p |32778.0 | | 31.072 |30 | |00170 00170| +310611 |V0611 Cyg |212922.2+415617 |SRB | 11.8 | 13.2 | |p | | | 55. | | |01309 01309| +310620 |V0620 Cyg |213308.2+354618 |EA/SD | 11.5 |< 13. | |p |15290.27 | | 6.267268 | |A1 |02689 02379| +310621 |V0621 Cyg |213240.4+491245 |DCEP | 12.3 | 14.0 | |p |28038.67 | | 5.86400 |32 | |03847 01310| +310628 |V0628 Cyg *|213404.0+471422 |EW | 12.2 | 12.7 | 12.5 |p |27955.138 | | 0.651652 | | |05348 02373| +310652 |V0652 Cyg *|214250.1+415931 |EA/SD | 12.0 | 13.7 | 12.1 |p |28038.483 | | 3.764549 |10 *| |03843 01311| +310659 |V0659 Cyg |214744.1+455354 |SRA | 10.4 | 11.5 | |V |39350. | | 514. |64 |C |04972 04972| +310663 |V0663 Cyg |214831.5+420532 |M | 12.2 |< 16.0 | |p |28868. | | 364. | | |01262 02373| +310671 |V0671 Cyg |215015.1+474802 |LB | 12.4 | 13.3 | |p | | | | |C6-,4(N) |01262 06566| +310673 |V0673 Cyg |215137.8+430959 |M | 12.3 | 16.3 | |p |32816. | | 325.5 | | |00001 01312| +310675 |V0675 Cyg |215157.9+484349 |EA/DM | 12.3 | 13.0 | |p |28052.267 | | 8.89254 |10 *| |01262 02374| +310680 |V0680 Cyg *|215344.4+534813 |EB/KE | 10.0 | 10.8 | 10.3 |p |43820.346 | | 1.1991385 | |B9 |00001 03091| +310686 |V0686 Cyg |194701.1+354948 |M | 11.9 |< 14.8 | |p |36100. | | 320. | | |03122 01313| +310687 |V0687 Cyg *|192611.6+295912 |EA/SD: | 10.2 | 11.4 | 10.4 |p |44913.278 | | 1.7072309 |10 *|A1 |00001 04244| +310695 |V0695 Cyg *|201337.9+464429 |EA/GS/D | 3.73 | 3.89 | |V |41470.0 | | 3784.3 |02 |K4Iab+B4IV-V |09130 BD | +310696 |V0696 Cyg *|195356.7+345730 |SRB | 10.7 | 11.0 | |V | | | 180. : | |K2 |00681 BD | +310697 |V0697 Cyg |194915.7+524706 |LB | 8.9 | 10.8 | |p | | | | |M2 |00164 02370| +310698 |V0698 Cyg |195953.4+361640 |EA | 12.2 | 14.9 | |p |34309.284 | | 97.7732 |05 *|B2 |02263 01281| +310699 |V0699 Cyg |201700.3+390820 |EA | 12.0 | 13.0 | |p |32708.664 | | 1.55152 |21 |B2 |01281 01281| +310700 |V0700 Cyg *|203105.3+384701 |EW/KW | 11.9 | 12.4 | 12.3 |B |44498.366 | | 0.3400461 | |F2 |00001 01281| +310701 |V0701 Cyg |211516.3+432703 |LB | 12.4 | 13.1 | |p | | | | |C |01262 02285| +310702 |V0702 Cyg |211549.9+540136 |SRA | 11.9 | 13.3 | |p |33382. | | 388. : | |M5 |00170 01315| +310717 |V0717 Cyg |200105.0+304952 |LC | 11.7 | 14.0 | |p | | | | |M2Iab |00798 03662| +310720 |V0720 Cyg *|200406.0+295738 |SR | 11.9 | 14.1 | |p | | | 345. : | |M6 |03662 03662| +310728 |V0728 Cyg *|202640.1+584648 |EA/SD: | 10.6 | 12.7 | |p |44806.415 | | 2.0601468 |17 *|A0 |00001 01320| +310729 |V0729 Cyg *|203222.4+411819 |EB/D/GS | 9.05 | 9.37 | 9.29 |V |40413.796 | | 6.5977915 | |O7fIa+O8 |07162 03853| +310737 |V0737 Cyg *|195435.9+384509 |M: | 11.2 | 13.1 | |I |32535. | | | |M6.5 |01222 01321| +310738 |V0738 Cyg |195638.4+400536 |M | 12.5 | 17.3 | |p |38350. | | 413. |25 |M8 |05701 05701| +310743 |V0743 Cyg |200941.4+292400 |EA/DM | 12.4 | 12.7 | |p |31020.343 | | 2.04107 : | |A |00798 02355| +310744 |V0744 Cyg |202355.5+561452 |LB | 11.7 | 13.1 | |p | | | | |C4-5,3(N) |01320 01320| +310745 |V0745 Cyg |203143.7+505213 |EA/DM | 11.6 | 12.2 | |p |28451.284 | | 2.283184 |10 :*|A0 |01320 01320| +310746 |V0746 Cyg |203323.6+514555 |LB | 11.7 | 12.9 | |p | | | | |M3 |01320 01320| +310747 |V0747 Cyg *|203717.7+501939 |NL: | 11.7 | 12.5 | |p | | | | | |05702 01320| +310748 |V0748 Cyg |204146.0+504137 |EA/DS | 11.7 | 12.6 | |p |30145.545 | | 10.49018 |05 |A |02697 01320| +310750 |V0750 Cyg |204921.2+503151 |M | 12.0 | 17.78 | |B |41512. | | 432.8 | |M5ea |00001 01320| +310753 |V0753 Cyg *|192247.1+481211 |EA | 11.2 | 11.7 | |p |33804.47 | | 0.476187 |30 |F8 |01140 02379| +310759 |V0759 Cyg *|200026.8+485938 |RRAB | 12.1 | 13.8 | |p |37522.398 | | 0.3600548 |12 | |00001 00534| +310764 |V0764 Cyg |200914.3+593202 |I | 12.2 | 14.0 | |p | | | | | |00164 02354| +310773 |V0773 Cyg |202527.0+565730 |ISB: | 11.4 | 12.8 | |p | | | | |M4 |00164 02354| +310776 |V0776 Cyg |203322.1+551939 |L | 12.3 | 13.7 | |p | | | | | |00164 02354| +310778 |V0778 Cyg |203607.4+600526 |LB | 11.6 | 13.5 | |p | | | | |C4,5J(N) |00164 02354| +310787 |V0787 Cyg |201616.8+475948 |EA | 10.8 | 11.5 | |p |16457.424 | | 1.5285151 |15 *|A0 |09134 00819| +310788 |V0788 Cyg |202734.1+315125 |EA | 10.0 | 10.9 | |p |26620.54 | | 47.84870 |04 *|F8 |08982 08982| +310796 |V0796 Cyg *|193356.1+471834 |EA | 10.9 | 11.4 | 11.4 |p |37997.108 | | 1.480870 |20 |A0 |05304 02379| +310798 |V0798 Cyg |193806.9+305434 |DSCT: | 12.4 | 12.8 | |p |31813.7090 | | 0.19476629 |50 | |02773 02773| +310819 |V0819 Cyg |195301.3+474828 |BCEP: | 6.26 | 6.30 | |V | | | 0.3775 : | |B0.5IIIp |02602 BD | +310828 |V0828 Cyg *|203754.4+542955 |EB/DM | 9.7 | 10.12 | 10.12 |p |38937.476 | | 2.10454 | |B8 |03868 00832| +310829 |V0829 Cyg |204537.5+322909 |LB: | 11.1 | 12.3 | |p | | | | |M4 |02406 00294| +310832 |V0832 Cyg *|205949.6+473115 |GCAS | 4.49 | 4.88 | |V | | | | |B1.5Venn |02602 BD | +310834 |V0834 Cyg |210717.7+323603 |M | 12.5 |< 15.0 | |p |36494. | | 357. | | |02430 00294| +310836 |V0836 Cyg *|212123.6+354411 |EB/KE | 8.57 | 9.23 | 8.77 |V |44853.4903 | | 0.6534122 | |A0V |09137 08953| +310840 |V0840 Cyg *|192207.0+284006 |SDOR: | 10.2 | 10.9 | |p | | | | |A1II |04427 04427| +310841 |V0841 Cyg *|192218.4+284108 |EB/KE | 11.1 | 11.3 | 11.2 |p |34629.425 | | 0.76113617 | |A5 |04244 04244| +310845 |V0845 Cyg |192215.1+463753 |SR | 12.5 | 14.2 | |p | | | 160. : | | |04253 04236| +310850 |V0850 Cyg *|192458.8+471457 |EA/AR: | 11.3 | 12.3 | 11.8 |p |37146.546 | | 4.56427 |20 *| |09138 04236| +310859 |V0859 Cyg *|192712.7+285650 |EW/KW | 11.7 | 12.2 | 12.1 |p |34629.4141 | | 0.40500132 | | |04244 04244| +310885 |V0885 Cyg *|193249.9+300117 |EB/DM | 9.9 | 10.3 | 10.2 |p |34980.514 | | 1.6947950 | | |04427 04427| +310889 |V0889 Cyg *|193332.1+282900 |EB/DM: | 10.0 | 10.4 | 10.4 |p |34119.427 | | 1.7479360 | | |04427 04427| +310890 |V0890 Cyg |193327.2+321024 |LB | 11.6 | 12.4 | |p | | | | | |04427 04427| +310891 |V0891 Cyg *|193338.4+291622 |EA/DM | 9.3 | 9.9 | 9.4 |p |34663.449 | | 1.9057825 |20 |A0 |04244 04244| +310894 |V0894 Cyg |193300.9+461423 |RRAB | 11.9 | 13.4 | |p |36997.198 | | 0.571403 |20 | |04259 04236| +310895 |V0895 Cyg |193346.9+324305 |LB | 11.6 | 12.3 | |p | | | | |M2 |04244 04244| +310897 |V0897 Cyg |193359.5+294743 |L | 12.5 | 12.9 | |p | | | | | |04244 04244| +310909 |V0909 Cyg *|193553.2+281644 |EA/DM | 9.3 | 9.84 | 9.66 |p |45202.3731 | | 2.8054230 |07 *|A0 |09140 04244| +310912 |V0912 Cyg *|193552.6+313151 |EA/D | 12.4 | 13.0 |( 0.05 )|p |35336.485 | | 2.5282034 |16 *|F8: |04248 04248| +310918 |V0918 Cyg |193742.0+301311 |LB | 11.2 | 11.8 | |p | | | | |MC |04244 04244| +310923 |V0923 Cyg |193810.8+313457 |SRD | 12.2 | 14.0 | |p | | | 29. : | |G: |07520 04248| +310924 |V0924 Cyg *|193811.6+322922 |DCEPS | 10.56 | 10.85 | |V |43066.075 | | 5.571472 |40 |F6 |08632 04266| +310927 |V0927 Cyg *|193731.3+484732 |SRA | 10.5 | 12.0 | |p |36837.4 | | 229. |50 |M6 |07164 07164| +310939 |V0939 Cyg *|193824.3+563225 |EW | 12.1 | 12.5 | 12.5 |p |37917.62 | | 0.558 | | |03148 04065| +310957 |V0957 Cyg *|194345.5+293141 |EB/DM | 12.2 | 12.8 | 12.6 |p |34627.339 | | 1.6735251 | | |04244 04244| +310959 |V0959 Cyg *|194353.9+301934 |EA/DM | 11.3 | 11.9 | 11.4 |p |33922.412 | | 1.8398202 |18 *|A5: |04244 04244| +310961 |V0961 Cyg *|194358.3+325215 |EA | 12.2 | 12.8 | 12.4 |p |34237.401 | | 2.0378068 |12 *| |04248 04248| +310963 |V0963 Cyg |194404.9+314150 |EA/DW: | 12.2 | 12.9 | |p |34629.397 | | 0.69733397 |24 |F5: |04248 04248| +310973 |V0973 Cyg |194449.0+404301 |SRB | 7.75 | 8.6 | |B | | | 40. : | |M3IIIa |03500 08953| +310974 |V0974 Cyg *|194518.6+323153 |EA | 11.9 | 12.5 | 12.5 |p |35019.419 | | 3.204437 |09 *| |04248 04248| +310976 |V0976 Cyg |194528.2+312830 |SRA | 11.9 | 12.8 | |p |34224. | | 144.4 | |M6.5 |04248 04248| +310977 |V0977 Cyg |194547.1+311322 |LB | 10.7 | 11.4 | |p | | | | |MB |04248 04248| +310995 |V0995 Cyg |194834.4+461343 |EA/SD | 11.3 | 12.9 | |p |26352.250 | | 3.556275 | |B8 |04277 04187| +311011 |V1011 Cyg *|195514.8+341229 |EA/D | 12.2 | 12.9 |( 0.04 )|p |33922.333 | | 3.2393706 |16 *|A0 |04248 04248| +311018 |V1018 Cyg *|195759.9+332028 |EB/DM | 11.2 | 11.7 | 11.6 |p |34121.513 | | 1.6236748 | |A2n |04248 04248| +311027 |V1027 Cyg |200227.4+300426 |L | 10.5 | 11.5 | |p | | | | |G7Ia |04248 04248| +311034 |V1034 Cyg *|200534.8+305833 |EB/SD: | 9.6 | 10.6 | 9.9 |p |42938.459 | | 0.976931 | |A0 |04287 04287| +311036 |V1036 Cyg |200803.9+404340 |E | 11.6 | 13.3 | |p |37189.377 | | 0.74412 : | | |00001 04019| +311042 |V1042 Cyg *|201153.5+361151 |WR | 8.06 | 8.16 | |V | | | | |WC8(+OB) |04301 BD | +311056 |V1056 Cyg |205030.6+370410 |LB | 10.0 | 10.8 | |p | | | | |MB |04316 08953| +311057 |V1057 Cyg *|205853.7+441528 |INT | 10.3 | 16.5 | |B | | | | |B3-Ke(T) | 06505| +311058 |V1058 Cyg |210214.5+344633 |LB | 9.8 | 10.6 | |p | | | | |MB |04316 08953| +311059 |V1059 Cyg |210435.3+422632 |SRA | 9.3 | 10.3 | |p |36730. | | 372. : | |MA |03775 08953| +311061 |V1061 Cyg *|210720.5+520258 |EA/D | 9.4 | 9.9 | 9.5 |p |26355.233 | | 2.346656 |07 |F8 |03835 08953| +311068 |V1068 Cyg *|212033.1+421639 |EA/GS/RS: | 10.5 | 12.1 | 11.2 |p |37961.570 | | 42.6813 |08 |B9+G8II-III |08998 04391| +311070 |V1070 Cyg |212248.6+405557 |SRB | 6.5 | 8.5 | |V | | | 73.5 | |M7III |09000 08953| +311073 |V1073 Cyg *|212500.4+334115 |EW/KE | 8.23 | 8.61 | 8.57 |V |38672.5816 | | 0.7858597 | |A3Vm |03794 BD | +311083 |V1083 Cyg *|213733.3+490456 |EB/DM | 11.0 | 11.5 | 11.2 |p |26622.435 | | 1.62585 | |A |03235 04109| +311088 |V1088 Cyg |214214.7+530404 |M | 11.7 |< 15.5 | |p |36785. | | 370. | |M6 |04395 04395| +311125 |V1125 Cyg |193148.4+315203 |LB | 9.0 | 9.9 | |p | | | | |M5 |03662 03662| +311136 |V1136 Cyg *|193750.0+285036 |EA | 12.5 | 13.3 | 13.2 |p |35453.235 | | 3.462766 |10 *| |06178 03662| +311141 |V1141 Cyg *|193952.9+363947 |EW/KE | 11.3 | 11.8 | 11.8 |p |38001.404 | | 0.84909682 | |A7: |03928 00319| +311143 |V1143 Cyg *|193841.2+545826 |EA/DM | 5.85 | 6.37 | 6.06 |V |42212.7651 | | 7.6407613 |02 |F5V+F5V |00001 BD | +311145 |V1145 Cyg |194227.4+281428 |LB | 11.2 | 11.93 | |B | | | | |M3 |03662 03662| +311147 |V1147 Cyg |194552.5+321540 |E | 11.9 | 12.7 | |p |34119.561 | | 2.24460 : | | |00001 03662| +311154 |V1154 Cyg |194815.5+430737 |CEP | 8.95 | 9.37 | |V |37706.721 | | 4.925537 |31 |G2 |08053 09151| +311171 |V1171 Cyg *|195757.3+335301 |EA/KE: | 10.0 | 10.3 | 10.3 |p |40380.5492 | | 1.4621239 |15 |B9 |06179 03662| +311172 |V1172 Cyg |195812.4+331229 |LB | 11.6 | 12.7 | |p | | | | |M6 |03662 03662| +311173 |V1173 Cyg |200112.6+361255 |LB | 12.3 | 13.70 | |B | | | | |M6eaIII |09150 09150| +311183 |V1183 Cyg |201321.5+374444 |LB | 10.5 | 11.7 | |p | | | | |M6 |09150 09150| +311187 |V1187 Cyg *|201641.8+415746 |EA/DM | 10.88 | 11.23 | 11.19 |V |38634.5462 | | 7.535 |03 *|OB |03933 | +311190 |V1190 Cyg |201620.4+540916 |SRA | 12.5 | 14.4 | |p |31230. | | 142. | | |03148 04065| +311191 |V1191 Cyg *|201650.8+415741 |EW/KW | 10.82 | 11.15 | 11.11 |V |38634.5471 | | 0.313377 | | |03941 | +311196 |V1196 Cyg *|202441.3+543000 |EB/KE | 12.0 | 12.3 |( 0.05 )|p |26655.248 | | 1.26583 | | |03148 04065| +311202 |V1202 Cyg |203901.0+533134 |LB | 11.8 | 12.7 | |p | | | | | |03148 04065| +311225 |V1225 Cyg *|210616.2+461802 |M | 11.9 |< 17.5 | |B |41676. | | 379.5 | |M:e |08845 08845| +311251 |V1251 Cyg |214054.4+483943 |UG: | 12.5 |< 15. | |p |38313. | | | | |03944 03944| +311264 |V1264 Cyg |193443.9+435645 |ACV | 6.48 | 6.67 | |V |40848.258 | | 1.84534 |40 |B9p(Si-Cr-Sr) |00001 BD | +311276 |V1276 Cyg |194249.1+291954 |DSCTC | 6.50 | 6.53 | |V | | | 0.088 | |F3III |06255 06183| +311305 |V1305 Cyg *|200453.1+374512 |EB/KE: | 11.4 | 11.8 | 11.6 |p |25426.510 | | 0.9009015 | |A8 |05408 05408| +311319 |V1319 Cyg |202051.1+390046 |SRA | 12.2 | 14.6 | |p |36789. | | 41.87 | | |05352 05352| +311322 |V1322 Cyg *|202346.0+383003 |GCAS | 8.77 | 9.70 | |V | | | | |B0pe |09013 08953| +311326 |V1326 Cyg *|203430.6+541237 |EA | 11.3 | 11.8 | 11.8 |p |28382.785 | | 16.6817 |06 *| |05415 01320| +311329 |V1329 Cyg *|205101.3+353453 |E+NC | 12.1 | 18. | |B |24869.9 | | 950.07 | |pec |09015 05703| +311331 |V1331 Cyg *|210109.2+502145 |INST | 10.59 | 13.08 | |V | | | | |A8-F0eq(T) |05548 05418| +311334 |V1334 Cyg *|211922.2+381415 |DCEPS | 5.77 | 5.96 | |V |40124.533 | | 3.332816 |50 |F2Ib |09016 BD | +311335 |V1335 Cyg |212118.7+455124 |LB | 10.7 | 11.7 | |p | | | | |M0 |05420 05420| +311339 |V1339 Cyg |214208.4+454557 |SRB | 5.9 | 7.1 | |V | | | 35. : | |M3-M6 |05422 08953| +311351 |V1351 Cyg |194204.2+552748 |LB | 6.33 | 6.55 | |V | | | | |M5IIIa |05840 BD | +311353 |V1353 Cyg |194640.8+372543 |SRB | 11.6 | 12.8 | |p | | | | | |05874 05874| +311356 |V1356 Cyg *|195639.4+295929 |EB/DM | 10.1 | 10.5 | 10.4 |p |40371.4095 | | 1.95669202 | |B0V |05877 BD | +311357 |V1357 Cyg *|195821.7+351206 |ELL+XF | 8.72 | 8.93 | 8.88 |V |41561.22 | | 5.599824 | |O9.7IabpeV |09020 07267| +311362 |V1362 Cyg |200341.6+362532 |E: | 8.09 | 8.21 | |V | | | 7. : | |B5II:nea |06034 BD | +311372 |V1372 Cyg *|201336.3+533934 |ACV | 7.33 | 7.39 | |V | | | 18.2 | |A4p(Cr) |09023 BD | +311388 |V1388 Cyg |202736.8+385046 |LB | 11.3 | 12.2 | |p | | | | |M1 |05352 BD | +311393 |V1393 Cyg |203339.1+411926 |IS: | 11.5 | 13.2 | |p | | | | | |05352 02334| +311395 |V1395 Cyg |205218.1+464559 |SRB: | 9.05 | 9.48 | |V | | | | |MA |05128 BD | +311396 |V1396 Cyg *|210005.3+400413 |UV+BY: | 11.4 | 11.65 | |B | | | | |M3Ve |06035 06936| +311403 |V1403 Cyg |215654.9+510815 |E | 10.8 | 11.2 | |p |33478.562 | | | |B8 |05862 05862| +311410 |V1410 Cyg *|215826.3+493834 |SR: | 12.0 | 13.0 | |V | | | | |C |06566 06566| +311411 |V1411 Cyg *|215823.6+494417 |EA/KE | 12.1 | 12.7 | |p |33513.563 | | 0.776739 |24 *|A3 |05862 05862| +311413 |V1413 Cyg |215938.0+515816 |E | 12.5 | 13.0 | |p |34928.465 | | | | |05862 05862| +311418 |V1418 Cyg |220205.9+513053 |E | 11.8 | 12.1 | |p |32936.236 | | | |B5: |05862 05862| +311422 |V1422 Cyg |200752.9+351858 |LB | 12.2 | 12.8 | |V | | | | |C(N) |06566 06566| +311423 |V1423 Cyg |200915.2+351239 |LB | 10.9 | 11.2 | |V | | | | |C(N:) |06566 06566| +311425 |V1425 Cyg *|211101.8+551956 |EB/KE: | 7.7 |( 0.45 )|( 0.31 )|V |40400.944 | | 1.252387 | |B9+A0 |06508 08953| +311426 |V1426 Cyg |213407.5+390416 |M | 10.8 | 13.7 | |V |39010. | | 470. |50 |C7,2e(N) |05908 00346| +311427 |V1427 Cyg *|213551.7+475443 |GCAS | 9.10 | 9.19 | |V | | | | |B3eq |06509 06511| +311439 |V1439 Cyg |193553.7+363657 |LB | 12.0 | 13.6 | |p | | | | | |06855 06855| +311440 |V1440 Cyg *|194135.9+400944 |LB: | 10.00 | 10.4 | |V | | | | |M3III |06856 07078| +311481 |V1481 Cyg *|214356.6+534321 |EB/DM | 12.1 | 12.6 | 12.5 |V |40040.610 | | 2.76340 | |B2V |09043 09043| +311482 |V1482 Cyg |215144.4+550811 |LB | 12.4 | 13.6 | |p | | | | | |06329 06329| +311487 |V1487 Cyg |201107.5+360751 |LB | 10.5 | 11.2 | |V | | | | |M7 |07341 07341| +311488 |V1488 Cyg *|201528.3+474251 |EA/GS/D | 3.90 | 4.14 | |V |41256.96 | | 1147.4 |02 |K5Iab+B4IV-V |06506 BD | +311489 |V1489 Cyg *|204625.5+400659 |* | 11.19 | 12.54 | |R | | | 1280. | |M4.5-M7.9Ia-III |07462 09044| +311496 |V1496 Cyg |205906.0+423832 |UV | 12.5 | 16.5 | |U | | | | | |07463 07463| +311501 |V1501 Cyg |215147.5+550811 |SRB | 12.5 | 12.9 | |V | | | 450. : | |M |07341 07341| +311502 |V1502 Cyg |215522.6+525324 |LB | 11.7 | 12.2 | |V | | | | |C(N) |06566 06566| +311507 |V1507 Cyg *|194841.9+292408 |E | 6.92 | 7.04 | 7.01 |V |43760.37 | | 27.9705 | |B8II-IIIep |07747 BD | +311509 |V1509 Cyg *|195034.0+384321 |LB | 5.08 | 5.4 | |V | | | | |M2IIIa |01371 BD | +311511 |V1511 Cyg *|200029.5+364611 |LB | 2.65 | 3.31 | |K | | | | |M10III |06005 09054| +311521 |V1521 Cyg *|203225.8+405728 |X | 11.4 |( 1.53 )| |K | | | | | |09186 09058| +311525 |V1525 Cyg |204444.9+531625 |SRA | 11.8 | 13.7 | |V |41740. | | 405. |50 |C(N) |03814 03814| +311527 |V1527 Cyg |204807.0+513350 |LB | 11.0 | 11.5 | |V | | | | |C6,4(R) |03814 03814| +311541 |V1541 Cyg |205905.7+473602 |SRA | 11.4 | 12.0 | |V |41550. | | 400. | |C5,4(N) |03814 03814| +311559 |V1559 Cyg |212257.4+432522 |LB | 11.8 | 12.3 | |R | | | | |C(R) |03814 03814| +311560 |V1560 Cyg |212438.8+444901 |SRA | 11.1 | 11.8 | |V |41940. | | 220. |50 |C(N) |03814 03814| +311568 |V1568 Cyg |213831.8+454247 |M | 11.2 | 14.4 | |V |41460. | | 495. |46 |C(N) |03814 03814| +311571 |V1571 Cyg |214236.5+445636 |SRA | 11.4 | 13.0 | |V |41880. | | 425. |65 |C(N) |03814 03814| +311578 |V1578 Cyg *|215234.1+471344 |INA | 10.09 | 10.24 | |V | | | | |A0eq |09061 07766| +311579 |V1579 Cyg |194306.4+555243 |LB | 10.1 | 10.6 | |p | | | | |M6 |09063 09063| +311582 |V1582 Cyg |195750.3+431950 |E: | 9.0 |( 0.5 )| |V | | | 1.0017 /N| |K2 |07945 07945| +311584 |V1584 Cyg *|201956.0+465014 |ACV | 6.48 |( 0.04 )| |V |41153.246 | | 1.132854 | |B9p(Si) |07946 BD | +311610 |V1610 Cyg *|210218.7+364141 |* | 5.8 | 6.3 | |L | | | | |F5Iaep |09177 09066| +311617 |V1617 Cyg |214033.6+514439 |LB | 10.6 | 13. | |p | | | | |M7III |00797 BD | +311619 |V1619 Cyg |215105.0+393212 |ACV | 6.17 |( 0.01 )| |V | | | 20.70 | |B8IIIp(Hg-Mn) |07851 BD | +311622 |V1622 Cyg |200732.1+404346 |M | 10.4 | 14.3 | |I |40480. | | 350. | | |08252 2MASS| +311623 |V1623 Cyg |200736.9+395635 |M | 11.9 | 15.0 | |I |40150. | | 310. | | |08252 2MASS| +311624 |V1624 Cyg *|200925.6+365023 |SXARI | 4.91 | 4.97 | |V |43699.12 | | 0.70 | |B3VeV |09067 BD | +311625 |V1625 Cyg |200926.1+404346 |SR: | 12.2 | 14.5 | |I | | | | | |08252 USNO | +311628 |V1628 Cyg |201051.4+411556 |M | 12.1 | 14.5 | |I |40818. | | 261. | | |08252 2MASS| +311630 |V1630 Cyg |201119.0+405229 |M | 12.4 | 13.8 | |I |39804. :| | 415. | | |08252 2MASS| +311631 |V1631 Cyg |201151.2+413254 |M | 11.5 | 13.6 | |I |41160. | | 430. | | |08252 2MASS| +311632 |V1632 Cyg |201201.6+410021 |SR | 12.3 | 14.7 | |I |40520. | | 318. | | |08252 USNO | +311633 |V1633 Cyg |201208.1+393650 |M | 12.2 | 15.0 | |V |40365. | | 404. | | |08252 09068| +311634 |V1634 Cyg |201219.4+415150 |M | 11.9 | 13.7 | |I |39640. | | 251. | | |08252 USNO | +311635 |V1635 Cyg |201234.2+390234 |M | 12.4 | 15.1 | |I |39800. | | 400. | | |08252 USNO | +311636 |V1636 Cyg |201243.8+413603 |M | 10.7 | 14.2 | |I |40504. | | 322. | | |08252 USNO | +311639 |V1639 Cyg |201323.5+383847 |M | 11.9 | 15.2 | |I |39980. | | 360. | | |08252 USNO | +311643 |V1643 Cyg |201420.6+382745 |M | 11.1 | 14.6 | |I |40474. | | 297. | | |08252 2MASS| +311644 |V1644 Cyg |201432.0+364823 |DSCTC | 4.94 | 4.97 | |V | | | 0.031 | |A2V |08254 BD | +311645 |V1645 Cyg |201439.1+391312 |M | 12.3 | 15.0 | |I |40798. | | 380. | | |08252 2MASS| +311646 |V1646 Cyg |201520.3+395847 |M: | 12.4 | 15.5 | |I |40176. | | 388. | | |08252 2MASS| +311649 |V1649 Cyg |201829.0+403406 |M | 12.5 | 15.0 | |I |40140. | | 442. | | |08252 2MASS| +311650 |V1650 Cyg |201838.0+391756 |M | 9.3 | 11.3 | |I |40172. | | 395. | | |08252 USNO | +311653 |V1653 Cyg |202043.1+392240 |M | 10.4 | 12.2 | |I |40560. | | 335. | | |08252 USNO | +311654 |V1654 Cyg |202217.1+404313 |M | 10.1 | 14.4 | |I |40815. :| | 268. : | | |08252 2MASS| +311655 |V1655 Cyg |202524.0+384236 |M | 12.0 | 14.8 | |I |39864. | | 462. | | |08252 2MASS| +311656 |V1656 Cyg |202519.5+423222 |M | 11.5 | 14.1 | |I |40380. | | 308. | | |08252 2MASS| +311658 |V1658 Cyg |202525.6+422629 |M | 11.1 | 14.5 | |I |39904. | | 382. | | |08252 USNO | +311659 |V1659 Cyg |202905.5+394246 |M | 12.1 | 15.4 | |I |40578. | | 770. | | |08252 2MASS| +311661 |V1661 Cyg *|204856.3+460651 |ACYG | 4.81 | 4.87 | |V | | | | |B3eaIa |08213 BD | +311666 |V1666 Cyg |212651.9+352026 |SRA | 10.9 | 12.9 | |V |41187. | | 376. |50 |C(N) |08422 08270| +311671 |V1671 Cyg *|193532.0+311636 |SXARI | 7.45 | 7.46 | |V |44107.24 | | 9.35 | |B2Vp |08747 BD | +311672 |V1672 Cyg |194414.6+403213 |SR | 12.1 | 14.3 | |p | | | 80. | | |03187 00534| +311674 |V1674 Cyg *|195821.6+351301 |* | 10.54 | 10.60 | |B | | | | |G0 |08429 BD | +311675 |V1675 Cyg |200121.9+431339 |INSB | 8.4 | 9.1 | |p | | | | |M2 |08432 08432| +311676 |V1676 Cyg *|200557.3+354718 |WR | 6.75 | 6.84 | |V | | | | |WN5+O9.5Ia |08213 BD | +311677 |V1677 Cyg |201218.9+412524 |I | 12.5 | 13.4 | |I | | | | | |08252 USNO | +311678 |V1678 Cyg |201327.0+383431 |E | 12.4 | 14.4 | |I | | | | | |08252 GSC | +311679 |V1679 Cyg |201431.8+363940 |WR | 5.99 | 6.5 | |K | | | | |WC6-7+Be |07306 BD | +311685 |V1685 Cyg |202028.3+412152 |INA | 10.58 | 10.72 | |V | | | | |B2e |03309 04002| +311687 |V1687 Cyg |202028.0+435116 |WR | 4.0 |( 2.5 )| |K | | | | |WC7p+O5 |03478 BD | +311690 |V1690 Cyg |202230.9+424936 |RV | 11.3 | 14.2 | |I |40056. | | 285. | | |08252 USNO | +311696 |V1696 Cyg *|204121.6+523515 |* | 10.30 |( 0.06 )| |V |38626.237 | | 4.3174 | |WN7.5 |03541 03499| +311715 |V1715 Cyg |205710.5+542811 |M: | 11.7 | 14.7 | |R |43065. | | 485. | |C |08377 GSC | +311719 |V1719 Cyg *|210432.9+504703 |RRC | 7.95 | 8.33 | |V |43776.715 | | 0.267299 |49 |F5III |09180 BD | +311720 |V1720 Cyg *|210740.1+485119 |ELL: | 7.77 | 7.79 | 7.79 |V |42692.557 | | 0.248331 | |G5III |08517 BD | +311721 |V1721 Cyg *|212143.4+372058 |EA | 12.2 | 13.0 | |B |43697.488 | | 2.722913 |07 | |09181 09181| +311726 |V1726 Cyg *|212938.9+485809 |DCEPS | 8.87 | 9.06 | |V |44105.39 | | 4.2359 |50 |F5 |09182 BD | +311728 |V1728 Cyg |213552.4+511442 |M: | 10.0 | 13.0 | |R | | | | | |08376 08376| +311730 |V1730 Cyg |213753.2+502149 |SR: | 12.5 | 14.5 | |R | | | | | |08376 08376| +311732 |V1732 Cyg |214111.6+463104 |SRA | 11.6 | 13.6 | |R |43175. | | 388. | |C |08377 GSC | +311733 |V1733 Cyg |214150.7+515707 |M: | 11.0 | 14.0 | |R | | | | | |08376 08376| +311734 |V1734 Cyg |214319.5+503915 |M: | 12.0 |< 14.5 | |V | | | | | |08376 08376| +311737 |V1737 Cyg *|215503.3+494541 |M: | 12.0 | 14.5 | |R | | | | | |08376 08376| +311738 |V1738 Cyg *|215628.6+512849 |SR: | 12.5 | 14.5 | |R | | | | | |08376 08376| +311741 |V1741 Cyg |192609.1+361904 |ACV | 4.60 |( 0.02 )| |U |41451.03 | | 0.68674 | |B9p(Si) |08488 BD | +311742 |V1742 Cyg |192652.2+275241 |SR | 10.9 | 12.3 | |p | | | | | |08754 | +311743 |V1743 Cyg |193341.6+491544 |SRB: | 5.96 |( 0.18 )| |V | | | 40. : | |M4.5III |08755 BD | +311744 |V1744 Cyg *|193652.2+301930 |ACV: | 7.5 |( 0.04 U )| |V |44100.28 | | 12.46 |40 |B9 |08747 BD | +311745 |V1745 Cyg |193729.9+293654 |DSCTC | 7.3 | 7.34 | |V | | | 0.0534 | |A3V |08756 BD | +311746 |V1746 Cyg *|195955.2+370234 |GCAS+BCEP | 5.19 |( 0.07 )| |V | | | | |B3IV-Ve |08663 BD | +311749 |V1749 Cyg |202114.1+353717 |LC | 9.44 | 9.94 | |V | | | | |M3Iab |02556 BD | +311760 |V1760 Cyg |214257.0+312731 |M | 11.76 |< 15. | |B |36830. | | 298. | |M4e |09188 03996| +311762 |V1762 Cyg |190825.8+522533 |RS | 5.81 | 6.03 | |V | | | | | |67258 BD | +311763 |V1763 Cyg |193135.8+390127 |EW/KW | 12.4 | 13.0 | |B | | | | | |67260 67259| +311764 |V1764 Cyg |193642.6+275303 |RS | 7.69 |( 0.15 )| |V | | | | | |67261 BD | +311765 |V1765 Cyg |194850.6+332614 |EB/GS+ACYG| 6.44 |( 0.16 )| |V | | | | | |67263 BD | +311766 |V1766 Cyg |195121.5+433458 |SRA | 10.3 | 11.5 | |V | | | | | |67269 67269| +311767 |V1767 Cyg |195136.7+441438 |SRA: | 11.0 | 12.5 | |V | | | | | |67269 67269| +311768 |V1768 Cyg |200436.2+321307 |ACYG | 5.56 | 5.70 | |V | | | | | |67271 BD | +311769 |V1769 Cyg |201014.2+361035 |EA/D/WR | 7.99 | 8.09 | |V | | | | | |67274 BD | +311770 |V1770 Cyg |201206.5+382118 |E:/WR | 7.48 | 7.52 | |V | | | | | |67275 BD | +311773 |V1773 Cyg |201849.7+461920 |ELL | 6.44 |( 0.05 )| |V | | | | | |67283 BD | +311787 |V1787 Cyg |203745.3+551631 |EA | 12.4 | 13.6 | |p | | | | | |67309 67310| +311792 |V1792 Cyg |205130.9+375922 |ELL | 7.29 |( 0.09 )| |V | | | | | |67001 BD | +311794 |V1794 Cyg |205353.6+442311 |FKCOM | 7.23 |( 0.17 )| |V | | | | | |67327 67326| +311800 |V1800 Cyg |210304.0+374830 |M | 10.8 | 13.2 | |V | | | | | |67330 67285| +311801 |V1801 Cyg |210445.4+404938 |SRA | 12.1 : | 13.3 : | |R | | | | | |67288 67288| +311802 |V1802 Cyg |210613.6+403230 |LB | 12.1 | 13.0 | |R | | | | | |67288 67288| +311803 |V1803 Cyg |210653.9+384458 |BY | 5.19 | 5.27 | |V | | | | | |67336 BD | +311804 |V1804 Cyg |210729.8+371045 |LB | 12.5 | 14.5 | |V | | | | | |67285 67181| +311805 |V1805 Cyg |210757.0+354126 |SR: | 12.3 | 14.0 | |p | | | | | |67341 67340| +311806 |V1806 Cyg |210848.8+402231 |SRA | 11.2 : | 13.2 : | |R | | | | | |67288 67288| +311808 |V1808 Cyg |211632.9+415438 |SRA | 12.1 | 14.2 | |R | | | | | |67288 67288| +311809 |V1809 Cyg |211827.2+435645 |ELL | 4.98 | 5.09 | |V | | | | | |67352 67352| +311811 |V1811 Cyg |212852.0+391044 |INS: | 10.1 | 12.3 | |p | | | | | |67341 67341| +311814 |V1814 Cyg |214359.2+534206 |IA | 11.8 | 12.28 | |B | | | | | |67363 67367| +311815 |V1815 Cyg |220145.3+480454 |RRC | 11.2 | 11.5 | |p | | | | | |67020 67369| +311817 |V1817 Cyg |193113.6+554355 |RS: | 6.37 |( 0.05 )| |V | | | | | |68094 BD | +311818 |V1818 Cyg |194119.9+290840 |EA: | 8.68 | 8.96 | |B | | | | | |68095 BD | +311819 |V1819 Cyg |195437.5+354216 |N | 9.5 |< 14.6 | |B | | | | | |68356 68356| +311820 |V1820 Cyg |200538.7+354531 |BCEP | 10.80 |( 0.04 )| |V | | | | | |68097 68357| +311821 |V1821 Cyg |200633.5+355242 |DSCTC | 10.14 |( 0.06 )| |V | | | | | |68097 68357| +311822 |V1822 Cyg |201042.0+500243 |SRA | 10.4 |( 1.1 )| |R | | | | | |68098 68358| +311823 |V1823 Cyg |201206.4+343834 |RRAB | 12.5 | 13.5 | |p | | | | | |68359 68360| +311824 |V1824 Cyg |201316.1+481710 |SRA | 10.5 |( 0.7 )| |R | | | | | |68098 68358| +311825 |V1825 Cyg |201606.2+495508 |SRA | 8.6 |( 0.6 )| |R | | | | | |68098 GSC | +311838 |V1838 Cyg |204541.6+364411 |M | 12.0 | 18.0 | |B | | | | | |68103 68103| +311853 |V1853 Cyg |204816.6+342724 |ACYG | 10.97 | 11.10 | |V | | | | | |68105 | +311864 |V1864 Cyg |205005.0+373000 |M | 12.0 | 15.0 | |V | | | | | |68103 68103| +311894 |V1894 Cyg |210045.1+340506 |SR | 12.1 | 13.3 | |V | | | | | |68103 68103| +311898 |V1898 Cyg |210353.8+461950 |EA/DM | 7.71 | 8.15 | |V | | | | | |68366 BD | +311906 |V1906 Cyg |212728.3+364156 |M | 2.4 | 3.3 | |K | | | | | |68015 2MASS| +311910 |V1910 Cyg |213232.0+385755 |ISA: | 11.4 | 15.9 | |p | | | | | |68369 68102| +311912 |V1912 Cyg |213325.3+352131 |IS: | 12.5 | 14.0 | |p | | | | | |68368 68110| +311914 |V1914 Cyg |214958.8+435757 |ELL | 8.39 | 8.62 | |V | | | | | |68371 BD | +311918 |V1918 Cyg |192608.7+522648 |EW/KW | 10.59 | 11.12 | |V | | | | | |69102 BD | +311919 |V1919 Cyg |193456.1+334744 |LB | 6.66 | 6.73 | |V | | | | | |69103 BD | +311920 |V1920 Cyg |194517.3+335827 |PVTEL | 10.30 | 10.41 | |V | | | | | |69104 69105| +311921 |V1921 Cyg |195142.1+442146 |SRC: | 11.8 | 13.1 | |V | | | | | |69106 69106| +311922 |V1922 Cyg |201645.1+374043 |BCEP | 10.96 |( 0.03 )| |U | | | | | |69107 69108| +311923 |V1923 Cyg |203206.3+404830 |WR | 12.3 |( 0.04 )| |V | | | | | |69109 69110| +311931 |V1931 Cyg |210110.9+460921 |E+BE | 5.33 | 5.48 | |V | | | | | |69117 BD | +311934 |V1934 Cyg |212455.4+491923 |ACV | 6.51 |( 0.02 )| |U | | | | | |69120 BD | +311942 |V1942 Cyg |220256.7+443900 |ACV | 5.47 |( 0.05 )| |U | | | | | |69128 BD | +311943 |V1943 Cyg |191301.1+495318 |LB | 12.1 | 13.2 | |p | | | | | |70039 70040| +311944 |V1944 Cyg |191355.4+512019 |LB | 12.3 | 13.6 | |p | | | | | |70039 70040| +311959 |V1959 Cyg |210435.4+492926 |M: | 10.1 | 12.8 | |R | | | | | |70048 70048| +311964 |V1964 Cyg |193005.7+312421 |SRD: | 12.0 | 12.8 | |p | | | | | |71184 71184| +311965 |V1965 Cyg |193410.1+280408 |M | 3.7 | 6.0 | |H | | | | | |71002 71187| +311966 |V1966 Cyg |193445.2+303059 |E:/PN | 9.95 | 10.04 | |V | | | | | |71189 BD | +311967 |V1967 Cyg |194542.9+301526 |SRB | 7.43 | 7.83 | |V | | | | | |71094 BD | +311968 |V1968 Cyg |200109.1+405539 |M | 1.2 | 3.2 | |L | | | | | |71002 2MASS| +311969 |V1969 Cyg |200914.3+312545 |M | 0.7 | 2.0 | |L | | | | | |71002 2MASS| +311970 |V1970 Cyg |201550.4+465427 |SR | 11.4 | 12.3 | |p | | | | | |71191 71034| +311971 |V1971 Cyg |202133.1+321851 |RS | 7.9 |( 0.18 )| |V | | | | | |71001 BD | +311972 |V1972 Cyg |202303.6+392950 |IA | 11.54 | 12.12 | |B | | | | | |71193 71194| +311973 |V1973 Cyg |202307.9+405113 |ISA | 9.67 | 10.09 | |V | | | | | |71195 BD | +311974 |V1974 Cyg |203031.7+523751 |NA+E: | 4.2 | 17.5 : | |V | | | | | |71197 71197| +311977 |V1977 Cyg |204737.5+434725 |INA | 10.81 | 11.44 | |V | | | | | |71204 71205| +311980 |V1980 Cyg |210155.1+495137 |INT | 12.29 | 12.50 | |V | | | | | |71207 71207| +311981 |V1981 Cyg |210224.2+444728 |SRB | 7.5 | 8.1 | |B | | | | | |71209 BD | +311982 |V1982 Cyg |210354.3+501509 |INT | 12. | 13.8 | |B | | | | | |71210 71207| +311983 |V1983 Cyg |211311.2+401126 |SR: | 12.26 | 14.48 | |V | | | | | |71211 71211| +311985 |V1985 Cyg |192706.3+352344 |M | 11.6 |< 15.2 | |V | | | | | |72071 72071| +311986 |V1986 Cyg |193013.5+280952 |M | 12.4 |< 15.2 | |V | | | | | |72071 72071| +311988 |V1988 Cyg |193550.7+341610 |M | 12.3 | 15.2 | |V | | | | | |72071 72071| +311989 |V1989 Cyg |194209.9+301353 |M | 12.0 |< 15.2 | |V | | | | | |72071 72071| +311990 |V1990 Cyg |194333.5+342924 |M | 10.4 | 13.0 | |V | | | | | |72071 72071| +311991 |V1991 Cyg |194351.8+322929 |M | 10.2 | 14.7 | |V | | | | | |72071 72071| +311992 |V1992 Cyg |194625.0+314008 |M | 11.9 | 15.0 | |V | | | | | |72071 72071| +311995 |V1995 Cyg |194913.0+293134 |M | 10.0 | 12.6 | |V | | | | | |72071 72071| +311998 |V1998 Cyg |195222.0+305015 |SR | 12.5 | 14.2 | |V | | | | | |72071 72071| +311999 |V1999 Cyg |195423.4+340451 |M | 12.5 |< 15.2 | |V | | | | | |72071 72071| +312003 |V2003 Cyg |195906.6+311332 |M | 11.9 | 15.1 | |V | | | | | |72071 72071| +312004 |V2004 Cyg |200229.7+295141 |M | 11.8 | 15.1 | |V | | | | | |72071 72071| +312006 |V2006 Cyg |200324.0+295453 |SR | 11.8 | 13.6 | |V | | | | | |72071 72071| +312008 |V2008 Cyg |200621.8+355821 |RS: | 5.36 |( 0.05 )| |V | | | | | |72073 BD | +312009 |V2009 Cyg |200638.3+335808 |M | 12.5 | 15.1 | |V | | | | | |72071 72071| +312011 |V2011 Cyg |201233.1+401605 |* | 7.93 |( 0.07 )| |B | | | | | |72074 BD | +312012 |V2012 Cyg |201711.1+313318 |SR: | 10.7 | 11.2 | |p | | | | | |72075 BD | +312014 |V2014 Cyg |203003.5+485706 |BCEP: | 4.86 |( 0.03 b )| |B | | | | | |72045 BD | +312015 |V2015 Cyg |203354.8+464138 |ACV | 5.62 |( 0.02 b )| |B | | | | | |72045 BD | +312018 |V2018 Cyg |204645.6+434511 |INA | 11.83 | 11.97 | |V | | | | | |72028 72076| +312019 |V2019 Cyg |204804.8+434726 |INA | 11.15 | 11.42 | |V | | | | | |72028 72076| +312020 |V2020 Cyg |204820.3+433948 |INA | 10.96 | 11.33 | |V | | | | | |72028 72076| +312021 |V2021 Cyg |205310.5+340708 |EA | 8.9 | 9.5 | |V | | | | | |72078 BD | +312022 |V2022 Cyg |205258.8+441504 |INA | 11.88 | 12.15 | |V | | | | | |72028 72076| +312023 |V2023 Cyg |205510.3+450303 |INA | 11.77 | 12.18 | |V | | | | | |72028 72076| +312028 |V2028 Cyg |195631.5+310620 |BE | 11.68 | 12.40 | |U | | | | | |73133 GSC | +312031 |V2031 Cyg |202351.0+382934 |EA | 8.53 | 8.67 | |V | | | | | |73135 73135| +312034 |V2034 Cyg |203339.5+491951 |SRA | 10.7 | 11.8 | |V | | | | | |73134 73134| +312035 |V2035 Cyg |203528.1+452919 |SRB | 11.7 | 12.6 | |V | | | | | |73134 73134| +312037 |V2037 Cyg |203739.7+485630 |SRB | 10.9 | 12.1 | |V | | | | | |73134 73134| +312044 |V2044 Cyg |205227.9+462452 |M: | 12.0 | 14.7 | |V | | | | | |73139 73139| +312061 |V2061 Cyg |211051.8+442017 |LB | 12.5 | 13.2 | |R | | | | | |73134 73134| +312068 |V2068 Cyg |212113.0+550629 |LB | 12.0 | 13.3 | |R | | | | | |73134 73134| +312072 |V2072 Cyg |213115.0+384632 |M | 11.8 | 17.8 | |p | | | | | |73142 73139| +312075 |V2075 Cyg |215514.5+442507 |RS | 7.46 |( 0.36 )| |V | | | | | |73005 BD | +312076 |V2076 Cyg |215732.0+382426 |SRD | 12.3 | 15.2 | |V | | | | | |73011 73011| +312077 |V2077 Cyg |191644.5+503848 |E: | 9.16 | 9.31 | |Hp| | | | | |HIP HIP | +312078 |V2078 Cyg |192151.4+283958 |BY: | 11.34 | 11.65 | |Hp| | | | | |HIP HIP | +312079 |V2079 Cyg |192601.2+450047 |ACV: | 7.00 | 7.06 | |Hp| | | | | |HIP HIP | +312080 |V2080 Cyg |192648.0+500844 |EA | 7.46 | 7.87 | |Hp| | | | | |HIP HIP | +312081 |V2081 Cyg |192749.0+504413 |CEP: | 8.69 | 8.75 | |Hp| | | | | |HIP HIP | +312082 |V2082 Cyg |192930.1+361715 |ELL | 6.72 | 6.77 | |Hp| | | | | |HIP HIP | +312083 |V2083 Cyg |193116.4+472852 |EA | 6.94 | 7.18 | |Hp| | | | | |HIP HIP | +312084 |V2084 Cyg |193329.8+360119 |DSCTC | 7.41 | 7.46 | |Hp| | | | | |HIP HIP | +312085 |V2085 Cyg |193732.2+545728 |LB | 7.29 | 7.40 | |Hp| | | | | |HIP HIP | +312086 |V2086 Cyg |193924.9+295529 |LB: | 8.20 | 8.31 | |Hp| | | | | |HIP HIP | +312087 |V2087 Cyg |194127.5+471941 |LB | 7.23 | 7.37 | |Hp| | | | | |HIP HIP | +312088 |V2088 Cyg |194236.2+282053 |DSCTC: | 8.33 | 8.39 | |Hp| | | | | |HIP HIP | +312089 |V2089 Cyg |194249.3+550137 |SRB | 8.20 | 8.35 | |Hp| | | | | |HIP HIP | +312090 |V2090 Cyg |194438.2+342451 |LB | 6.32 | 6.73 | |V | | | | | |HIP HIP | +312091 |V2091 Cyg |194903.0+295258 |LB: | 8.34 | 8.59 | |Hp| | | | | |HIP HIP | +312092 |V2092 Cyg |195004.1+323825 |LPB | 8.20 | 8.24 | |Hp| | | | | |HIP HIP | +312093 |V2093 Cyg |195046.9+374935 |LB | 6.00 | 6.40 | |Hp| | | | | |HIP HIP | +312094 |V2094 Cyg |195512.1+463956 |ACV | 7.70 | 7.79 | |Hp| | | | | |HIP HIP | +312095 |V2095 Cyg |195650.2+441616 |ACV: | 7.86 | 7.94 | |Hp| | | | | |HIP HIP | +312096 |V2096 Cyg |195631.5+534704 |SRD | 7.98 | 8.09 | |Hp| | | | | |HIP HIP | +312097 |V2097 Cyg |195813.7+342522 |LPB | 7.68 | 7.71 | |Hp| | | | | |HIP HIP | +312098 |V2098 Cyg |195810.6+423139 |LB | 8.22 | 8.42 | |Hp| | | | | |HIP HIP | +312099 |V2099 Cyg |195952.5+315049 |SRB: | 8.15 | 8.24 | |Hp| | | | | |HIP HIP | +312100 |V2100 Cyg |195915.4+520321 |LPB: | 6.05 | 6.11 | |Hp| | | | | |HIP HIP | +312101 |V2101 Cyg |195953.8+520859 |LB | 6.74 | 7.06 | |Hp| | | | | |HIP HIP | +312102 |V2102 Cyg |200140.2+400145 |LB | 9.94 | 10.49 | |Hp| | | | | |HIP HIP | +312103 |V2103 Cyg |200201.3+293509 |BE | 9.09 | 9.21 | |Hp| | | | | |HIP HIP | +312104 |V2104 Cyg |200145.5+573907 |IA | 7.63 | 7.76 | |Hp| | | | | |HIP HIP | +312105 |V2105 Cyg *|200311.6+315510 |ACYG: | 8.07 | 8.17 | |Hp| | | | | |HIP HIP | +312106 |V2106 Cyg |200502.3+521721 |LB | 8.42 | 8.61 | |Hp| | | | | |HIP HIP | +312107 |V2107 Cyg |200845.8+371413 |EB | 8.57 | 8.75 | |Hp| | | | | |HIP HIP | +312108 |V2108 Cyg |200911.8+335512 |EB | 7.86 | 8.01 | |Hp| | | | | |HIP HIP | +312109 |V2109 Cyg |200850.4+485439 |DSCT | 7.48 | 7.66 | |Hp| | | | | |HIP HIP | +312110 |V2110 Cyg |201009.4+450100 |LPB | 7.71 | 7.79 | |Hp| | | | | |HIP HIP | +312111 |V2111 Cyg |201038.2+335121 |LPB | 7.62 | 7.65 | |Hp| | | | | |HIP HIP | +312112 |V2112 Cyg |201032.9+522306 |LB | 7.34 | 7.61 | |Hp| | | | | |HIP HIP | +312113 |V2113 Cyg |201648.2+322247 |BE | 7.09 | 7.26 | |Hp| | | | | |HIP HIP | +312114 |V2114 Cyg |201754.5+340525 |LB | 6.92 | 7.19 | |Hp| | | | | |HIP HIP | +312115 |V2115 Cyg |201848.6+505350 |LB: | 8.52 | 8.63 | |Hp| | | | | |HIP HIP | +312116 |V2116 Cyg |201949.8+294337 |SXARI: | 6.71 | 6.75 | |Hp| | | | | |HIP HIP | +312117 |V2117 Cyg |202039.2+430737 |SXARI: | 8.95 | 9.15 | |Hp| | | | | |HIP HIP | +312118 |V2118 Cyg |202318.2+404533 |ACYG: | 7.12 | 7.20 | |Hp| | | | | |HIP HIP | +312119 |V2119 Cyg |202344.4+372835 |BE | 5.74 | 5.85 | |Hp| | | | | |HIP HIP | +312120 |V2120 Cyg |202532.8+544103 |GCAS | 7.13 | 7.34 | |Hp| | | | | |HIP HIP | +312121 |V2121 Cyg *|202702.3+492300 |RRAB: | 5.75 | 5.84 | |Hp| | | | | |HIP HIP | +312122 |V2122 Cyg |202920.8+502737 |ACV: | 7.58 | 7.62 | |Hp| | | | | |HIP HIP | +312123 |V2123 Cyg |203305.1+313925 |BE | 7.71 | 7.85 | |Hp| | | | | |HIP HIP | +312124 |V2124 Cyg |203306.6+542725 |LB | 6.80 | 6.90 | |Hp| | | | | |HIP HIP | +312125 |V2125 Cyg |203354.2+351503 |LC | 4.67 | 4.78 | |Hp| | | | | |HIP HIP | +312126 |V2126 Cyg |203327.7+504100 |EB: | 9.01 | 9.10 | |Hp| | | | | |HIP HIP | +312127 |V2127 Cyg |203506.2+333309 |ACV: | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +312128 |V2128 Cyg |203555.6+373727 |LB: | 8.65 | 8.77 | |Hp| | | | | |HIP HIP | +312129 |V2129 Cyg |203828.6+605507 |DSCTC | 8.37 | 8.44 | |Hp| | | | | |HIP HIP | +312130 |V2130 Cyg |203933.3+403447 |SXARI: | 6.02 | 6.04 | |Hp| | | | | |HIP HIP | +312131 |V2131 Cyg |204458.5+402442 |LB | 8.21 | 8.47 | |Hp| | | | | |HIP HIP | +312132 |V2132 Cyg |204542.0+461149 |LB | 8.51 | 8.74 | |Hp| | | | | |HIP HIP | +312133 |V2133 Cyg |204636.0+545235 |EA | 8.44 | 8.75 | |Hp| | | | | |HIP HIP | +312134 |V2134 Cyg |204743.3+431612 |EB | 8.32 | 8.49 | |Hp| | | | | |HIP HIP | +312135 |V2135 Cyg |204832.8+535422 |BE | 8.17 | 8.29 | |Hp| | | | | |HIP HIP | +312136 |V2136 Cyg |204954.6+463941 |E: | 6.30 | 6.38 | |Hp| | | | | |HIP HIP | +312137 |V2137 Cyg |205214.7+354405 |LB: | 7.82 | 7.93 | |Hp| | | | | |HIP HIP | +312138 |V2138 Cyg |205339.9+410258 |ACV: | 7.55 | 7.61 | |Hp| | | | | |HIP HIP | +312139 |V2139 Cyg |205523.1+401800 |BE | 7.12 | 7.28 | |Hp| | | | | |HIP HIP | +312140 |V2140 Cyg |205549.8+472504 |ACYG: | 5.65 | 5.84 | |V | | | | | |HIP HIP | +312141 |V2141 Cyg |205753.2+444717 |LB | 7.11 | 7.38 | |Hp| | | | | |HIP HIP | +312142 |V2142 Cyg |205958.8+322944 |SRB | 6.85 | 6.95 | |Hp| | | | | |HIP HIP | +312143 |V2143 Cyg |210016.2+333039 |LB: | 9.24 | 9.36 | |Hp| | | | | |HIP HIP | +312144 |V2144 Cyg |210049.9+463443 |GCAS: | 7.12 | 7.27 | |Hp| | | | | |HIP HIP | +312145 |V2145 Cyg |210250.0+383415 |LB | 8.48 | 8.65 | |Hp| | | | | |HIP HIP | +312146 |V2146 Cyg |210549.1+301302 |SRA | 8.45 | 8.94 | |Hp| | | | | |HIP HIP | +312147 |V2147 Cyg |210636.9+483740 |ACV: | 8.82 | 8.89 | |Hp| | | | | |HIP HIP | +312148 |V2148 Cyg |210958.6+453009 |EA | 6.52 | 6.69 | |Hp| | | | | |HIP HIP | +312149 |V2149 Cyg |211609.6+423227 |GCAS | 8.77 | 8.99 | |Hp| | | | | |HIP HIP | +312150 |V2150 Cyg *|211810.9+303522 |EW: | 8.09 | 8.19 | |Hp| | | | | |HIP HIP | +312151 |V2151 Cyg |211856.3+541241 |NL: | 12.08 | 12.89 | |Hp| | | | | |HIP HIP | +312152 |V2152 Cyg |212129.5+415358 |ACV: | 8.94 | 9.00 | |Hp| | | | | |HIP HIP | +312153 |V2153 Cyg |212251.1+404150 |BE | 7.52 | 7.62 | |Hp| | | | | |HIP HIP | +312154 |V2154 Cyg |212308.3+483108 |EA | 7.85 | 8.24 | |Hp| | | | | |HIP HIP | +312155 |V2155 Cyg |212430.3+552200 |GCAS | 7.55 | 7.80 | |Hp| | | | | |HIP HIP | +312156 |V2156 Cyg |212502.4+442706 |BE | 8.96 | 9.04 | |Hp| | | | | |HIP HIP | +312157 |V2157 Cyg |212547.0+364003 |ACYG: | 5.87 | 5.92 | |Hp| | | | | |HIP HIP | +312158 |V2158 Cyg |212617.6+355021 |LB | 7.57 | 7.78 | |Hp| | | | | |HIP HIP | +312159 |V2159 Cyg |212628.4+491649 |ACV: | 7.87 | 7.96 | |Hp| | | | | |HIP HIP | +312160 |V2160 Cyg |212733.0+340129 |BY: | 11.02 | 11.19 | |Hp| | | | | |HIP HIP | +312161 |V2161 Cyg |212814.9+475714 |LPB | 8.03 | 8.08 | |Hp| | | | | |HIP HIP | +312162 |V2162 Cyg |212914.9+442017 |BE | 7.56 | 7.67 | |Hp| | | | | |HIP HIP | +312163 |V2163 Cyg |213000.9+452939 |BE | 6.89 | 7.02 | |Hp| | | | | |HIP HIP | +312164 |V2164 Cyg |213047.0+474012 |LB: | 8.02 | 8.15 | |Hp| | | | | |HIP HIP | +312165 |V2165 Cyg |213355.4+504504 |EA | 8.73 | 8.92 | |Hp| | | | | |HIP HIP | +312166 |V2166 Cyg |213544.5+294444 |BE | 8.11 | 8.23 | |Hp| | | | | |HIP HIP | +312167 |V2167 Cyg |213614.2+444545 |LPB | 9.43 | 9.48 | |Hp| | | | | |HIP HIP | +312168 |V2168 Cyg |213638.6+392721 |BY: | 10.18 | 10.65 | |Hp| | | | | |HIP HIP | +312169 |V2169 Cyg |213759.4+482914 |EB | 7.61 | 7.76 | |Hp| | | | | |HIP HIP | +312170 |V2170 Cyg |214222.7+340409 |LB | 8.16 | 8.39 | |Hp| | | | | |HIP HIP | +312171 |V2171 Cyg |214646.4+373929 |LB | 7.21 | 7.33 | |Hp| | | | | |HIP HIP | +312172 |V2172 Cyg |215645.0+513434 |BE | 8.17 | 8.30 | |Hp| | | | | |HIP HIP | +312173 |V2173 Cyg |215702.2+484007 |LPB | 6.47 | 6.51 | |Hp| | | | | |HIP HIP | +312174 |V2174 Cyg *|215829.8+542906 |ACYG: | 8.92 | 9.07 | |Hp| | | | | |HIP HIP | +312175 |V2175 Cyg *|220138.2+501005 |BE | 9.26 | 9.38 | |Hp| | | | | |HIP HIP | +312179 |V2179 Cyg |194753.1+514515 |SRA | 12.3 | 14.9 | |V | | | | | |75087 75087| +312180 |V2180 Cyg |195912.7+312710 |WR | 12.3 |( 0.09 )| |V | | | | | |75109 75020| +312183 |V2183 Cyg |202131.7+365513 |WR | 9.80 | 10.00 | |Hp| | | | | |75111 BD | +312185 |V2185 Cyg |203309.6+411300 |EA | 10.62 | 10.70 | |Ic| | | | | |75112 75112| +312186 |V2186 Cyg |203310.5+412222 |EA | 10.99 | 11.13 | |Ic| | | | | |75112 75112| +312188 |V2188 Cyg |203318.6+411536 |BE | 11.70 |( 0.06 )| |Ic| | | | | |75112 75112| +312190 |V2190 Cyg |203324.8+412204 |BCEP: | 12.28 |( 0.05 )| |Ic| | | | | |75112 75112| +312193 |V2193 Cyg |203650.9+322334 |LB: | 11.6 | 12.2 | |p | | | | | |75113 GSC | +312194 |V2194 Cyg |203631.9+532617 |SRA | 12.1 | 14.4 | |V | | | | | |75087 75087| +312195 |V2195 Cyg |204300.0+352948 |RR: | 12.1 | 13.7 | |p | | | | | |75115 75116| +312197 |V2197 Cyg |205016.3+375645 |E | 10.9 | 12.4 | |p | | | | | |75117 75116| +312200 |V2200 Cyg |210114.3+434318 |ACV | 7.12 |( 0.04 )| |U | | | | | |75118 BD | +312204 |V2204 Cyg |211714.6+542442 |M | 12.0 | 15.5 | |V | | | | | |75087 75087| +312205 |V2205 Cyg |213555.1+544909 |LB | 11.7 | 13.6 | |V | | | | | |75079 75079| +312216 |V2216 Cyg |193807.2+305201 |DSCTC: | 12.29 | 12.35 | |V | | | | | |76214 76214| +312217 |V2217 Cyg |194655.5+342335 |SRA | 12.0 |( 0.15 )| |Rc| | | | | |76218 76218| +312218 |V2218 Cyg |195657.5+340953 |M: | 11.0 | 14.4 | |* | | | | | |76192 USNO | +312221 |V2221 Cyg |195743.8+304621 |SR: | 12.4 | 13.7 | |* | | | | | |76192 USNO | +312222 |V2222 Cyg |195752.6+301155 |SR: | 12.3 | 13.4 | |* | | | | | |76057 76057| +312223 |V2223 Cyg |195755.1+314600 |SR: | 10.5 | 12.0 | |* | | | | | |76057 USNO | +312225 |V2225 Cyg |195808.6+300629 |SR: | 11.1 | 12.2 | |* | | | | | |76195 76057| +312228 |V2228 Cyg |195955.8+293431 |SR: | 11.9 | 12.5 | |* | | | | | |76057 76057| +312230 |V2230 Cyg |200037.6+320542 |SR: | 12.0 | 12.9 | |* | | | | | |76197 76057| +312234 |V2234 Cyg |200140.7+401130 |SR: | 12.3 | 13.0 | |* | | | | | |76057 USNO | +312236 |V2236 Cyg |200244.1+375059 |SR: | 11.7 | 12.4 | |* | | | | | |76057 USNO | +312238 |V2238 Cyg |200621.5+355419 |DSCTC | 10.54 |( 0.08 )| |V | | | | | |76220 76220| +312239 |V2239 Cyg |201517.6+373144 |EA | 11.73 | 12.51 | |* | | | | | |76222 UCAC2| +312240 |V2240 Cyg |201555.9+372716 |EW | 12.03 | 12.29 | |* | | | | | |76223 UCAC2| +312245 |V2245 Cyg |202310.8+405230 |LPB: | 8.50 |( 0.04 )| |V | | | | | |76226 DM | +312246 |V2246 Cyg |203215.2+373815 |XP | 9.74 | 10.34 | |K | | | | | |76227 76228| +312247 |V2247 Cyg |204848.0+342608 |EA | 10.4 | 11.3 | |B | | | | | |76229 GSC | +312250 |V2250 Cyg |211013.5+525102 |M | 8.9 | 11.5 | |I | | | | | |76006 76011| +312256 |V2256 Cyg |213653.9+334307 |ELL | 8.07 | 8.17 | |Hp| | | | | |76235 DM | +312257 |V2257 Cyg |213703.0+545541 |SR: | 12.5 | 13.0 | |V | | | | | |76054 GSC | +312258 |V2258 Cyg |213958.3+543900 |SR: | 11.2 | 12.3 | |V | | | | | |76054 GSC | +312262 |V2262 Cyg |214356.1+534243 |IB: | 10.93 |( 0.13 * )| |V | | | | | |76236 76236| +312263 |V2263 Cyg |214403.5+534247 |EB/SD | 12.36 |( 0.68 * )| |V | | | | | |76236 76236| +312265 |V2265 Cyg |214657.6+545409 |SR: | 11.4 | 12.3 | |V | | | | | |76054 GSC | +312267 |V2267 Cyg |215244.9+551737 |SR: | 12.3 | 12.8 | |V | | | | | |76054 GSC | +312268 |V2268 Cyg |215449.2+551539 |SR: | 11.5 | 12.0 | |V | | | | | |76054 GSC | +312270 |V2270 Cyg |215828.8+510532 |SR: | 12.1 | 13.0 | |* | | | | | |76057 USNO | +312272 |V2272 Cyg |215910.9+550756 |SR: | 11.1 | 11.8 | |V | | | | | |76054 GSC | +312273 |V2273 Cyg |220002.5+504939 |SR: | 10.8 | 11.5 | |* | | | | | |76057 USNO | +312274 |V2274 Cyg |200717.9+360437 |NA | 11.7 |< 18. | |V | | | | | |77184 77185| +312275 |V2275 Cyg |210302.0+484553 |NA | 6.66 |< 15. | |V | | | | | |77196 77197| +312276 |V2276 Cyg |191518.9+522936 |EA | 11.4 | 11.8 | |V | | | | | |77100 GSC | +312277 |V2277 Cyg |191533.7+443701 |EA | 10.5 | 11.1 | |V | | | | | |77100 DM | +312279 |V2279 Cyg |191854.5+434926 |RS: | 12.2 | 14.0 | |V | | | | | |77143 77144| +312281 |V2281 Cyg |192506.9+455603 |EA | 12.1 | 12.6 | |V | | | | | |77100 GSC | +312282 |V2282 Cyg |192537.9+532520 |EW : | 12.02 | 12.30 | |* | | | | | |77171 GSC22| +312283 |V2283 Cyg |192839.0+450552 |M | 12.1 |< 16.0 | |V | | | | | |77143 77144| +312285 |V2285 Cyg |193033.0+480325 |M | 11.6 | 15.2 | |V | | | | | |77143 77144| +312286 |V2286 Cyg |193035.8+315848 |LB | 7.51 |( 0.03 )| |V | | | | | |77023 DM | +312287 |V2287 Cyg |193207.7+523714 |EB | 11.6 | 12.1 | |V | | | | | |77100 GSC | +312288 |V2288 Cyg |193310.6+385834 |SRA | 11.9 | 14.2 | |V | | | | | |77143 77144| +312291 |V2291 Cyg |193658.3+474831 |EA: | 11.5 | 11.8 | |V | | | | | |77100 GSC | +312292 |V2292 Cyg |193738.5+490751 |M | 11.8 | 16.0 | |V | | | | | |77143 77144| +312293 |V2293 Cyg |193908.5+432350 |SRA | 12.2 | 13.9 | |V | | | | | |77143 77144| +312295 |V2295 Cyg |194206.6+380337 |SR | 12.2 | 14.2 | |V | | | | | |77143 77144| +312296 |V2296 Cyg |194208.4+472257 |M | 11.8 | 15.5 | |V | | | | | |77143 77144| +312298 |V2298 Cyg |194415.7+391112 |M | 12.0 | 14.8 | |V | | | | | |77143 77144| +312300 |V2300 Cyg |194758.8+384555 |SRA | 11.8 | 13.7 | |V | | | | | |77143 77144| +312301 |V2301 Cyg |194926.4+373158 |LB | 12.5 | 14.0 | |V | | | | | |77143 77144| +312302 |V2302 Cyg |195039.6+504223 |M | 11.8 | 14.8 | |V | | | | | |77143 77179| +312303 |V2303 Cyg |195206.7+433108 |LB | 11.5 | 13.5 | |V | | | | | |77143 77144| +312304 |V2304 Cyg |195253.3+462146 |LB | 11.8 | 13.5 | |V | | | | | |77143 77179| +312305 |V2305 Cyg |195347.9+471144 |M | 11.4 | 14.6 | |V | | | | | |77143 77179| +312307 |V2307 Cyg |195828.4+470610 |M | 11.0 | 15.0 | |V | | | | | |77143 77179| +312308 |V2308 Cyg |195912.0+484333 |M | 11.4 | 15.2 | |V | | | | | |77143 77179| +312309 |V2309 Cyg |195939.0+473133 |M | 12.0 |< 16.1 | |V | | | | | |77143 77144| +312312 |V2312 Cyg *|201203.8+474413 |LBV | 6.92 |( 0.08 b )| |V | | | | | |77190 DM | +312313 |V2313 Cyg |202117.5+303441 |SRB | 10.46 | 10.87 | |V | | | | | |77191 GSC | +312314 |V2314 Cyg |202210.2+311512 |EA | 8.64 | 8.76 | |Hp| | | | | |77192 DM | +312315 |V2315 Cyg |203445.9+324813 |SRA | 11.3 | 13.3 | |V | | | | | |77144 77144| +312317 |V2317 Cyg |203701.2+303947 |M | 12.1 | 15.0 | |V | | | | | |77144 77144| +312318 |V2318 Cyg |203711.3+342215 |SRA | 12.4 | 14.5 | |V | | | | | |77144 77144| +312320 |V2320 Cyg |203950.1+343718 |LB | 11.8 | 13.2 | |V | | | | | |77144 77144| +312324 |V2324 Cyg *|205855.6+493113 |* | 11.58 | 11.80 | |V | | | | | |77178 GSC | +312325 |V2325 Cyg |210405.5+323013 |SR | 11.0 | 15.5 | |V | | | | | |77144 77144| +312328 |V2328 Cyg |211014.8+312941 |SRA | 11.2 | 14.3 | |V | | | | | |77144 77144| +312329 |V2329 Cyg |211019.3+332854 |M | 11.3 | 14.6 | |V | | | | | |77144 77144| +312330 |V2330 Cyg |211047.8+342007 |M | 10.4 | 14.9 | |V | | | | | |77144 77144| +312331 |V2331 Cyg |211113.6+341914 |L | 12.5 | 14.6 | |V | | | | | |77144 77144| +312332 |V2332 Cyg |211120.0+312319 |M | 11.2 |< 15.0 | |V | | | | | |77144 77144| +312333 |V2333 Cyg |211412.3+363900 |M | 10.6 |< 14.7 | |V | | | | | |77144 77144| +312334 |V2334 Cyg |211645.0+291340 |LB | 12.2 |< 14.4 | |V | | | | | |77144 77144| +312335 |V2335 Cyg |211709.6+310750 |M | 11.5 | 15.0 | |V | | | | | |77144 77144| +312337 |V2337 Cyg |211939.9+350012 |LB: | 12.1 | 13.3 | |V | | | | | |77144 77144| +312338 |V2338 Cyg |211953.0+350857 |LB: | 11.8 | 13.3 | |V | | | | | |77144 77144| +312339 |V2339 Cyg |212031.9+330718 |SRA | 10.7 | 13.2 | |V | | | | | |77144 77144| +312340 |V2340 Cyg |212844.9+485842 |DCEP | 11.8 | 12.3 | |B | | | | | |77199 GSC | +312341 |V2341 Cyg |213154.7+330303 |M | 11.5 | 15.6 | |V | | | | | |77144 77144| +312343 |V2343 Cyg |213604.2+361347 |SR | 11.3 | 12.9 | |V | | | | | |77144 77144| +312346 |V2346 Cyg |213955.1+311916 |M | 12.5 | 16.0 | |V | | | | | |77144 77144| +312347 |V2347 Cyg |214300.1+324139 |LB | 11.4 | 13.7 | |V | | | | | |77144 77144| +312356 |V2356 Cyg |214447.5+342716 |LB | 10.8 |< 16.0 | |V | | | | | |77144 77144| +312357 |V2357 Cyg |214609.7+355616 |M | 11.6 | 15.2 | |V | | | | | |77144 77144| +312359 |V2359 Cyg |215627.8+534619 |SR: | 12.4 | 13.2 | |V | | | | | |77004 GSC | +312360 |V2360 Cyg |215733.1+534748 |SR: | 11.8 | 12.7 | |V | | | | | |77004 GSC | +312363 |V2363 Cyg *|192108.4+510201 |EW | 12.10 |( 0.18 )|( 0.13 )|V |52571.108 | | 0.361900 | | |78161 GSC | +312364 |V2364 Cyg *|192211.8+492834 |EW | 11.20 | 11.84 | 11.73 |* |52186.90143 | | 0.5921376 | | |78268 GSC | +312365 |V2365 Cyg |192414.7+501520 |EA | 9.62 |( 0.2 )| |B |51717.8150 | | 3.747833 : |03 |A5 |78269 DM | +312367 |V2367 Cyg |193445.6+455416 |DSCT | 11.81 |( 0.40 V )| |* |52570.024 | | 0.176617 | | |78161 GSC | +312369 |V2369 Cyg |193951.0+382108 |RRC | 10.9 |( 0.37 )| |V |52907.3267 | | 0.297224 |35 | |78274 GSC | +312414 |V2414 Cyg *|200219.4+395509 |E | 9.87 | 10.48 | |R | | | 4.85437 | |B8 |78282 78282| +312415 |V2415 Cyg |200303.1+311243 |SR | 10.2 | 12.0 | |* | | | 310. : | | |78006 2MASS| +312417 |V2417 Cyg *|200640.0+331428 |BE: | 6.28 | 6.90 | |K | | | | | |78285 GSC | +312418 |V2418 Cyg |200946.0+502730 |M: | 12.1 |< 14.6 | |* |51525 :| | | | |78006 2MASS| +312420 |V2420 Cyg |201427.8+472945 |SR | 12.0 | 14.4 | |* |51390 | | 130. : | | |78006 2MASS| +312425 |V2425 Cyg |203107.8+333235 |BY | 8.35 |( 0.03 )| |V | | | 6.94 : | |K0 |78018 DM | +312426 |V2426 Cyg |203824.1+480912 |SRA: | 12.4 | 14.5 | |* |51340 | | 305. : | | |78040 2MASS| +312429 |V2429 Cyg |204340.6+442838 |LC: | 10.4 | 13.7 | |V | | | | |M3 |78296 78296| +312431 |V2431 Cyg |204916.2+321705 |BY | 8.25 |( 0.03 )| |V | | | 22.64 | |K2V |78018 DM | +312432 |V2432 Cyg |205703.3+391652 |SR: | 11.9 | 13.9 | |* | | | | | |78006 2MASS| +312433 |V2433 Cyg |205941.0+480841 |LB: | 11.5 | 12.4 | |* | | | | | |78006 2MASS| +312434 |V2434 Cyg |210018.4+435045 |SR: | 12.1 | 13.7 | |* | | | | | |78006 2MASS| +312435 |V2435 Cyg |210041.8+385001 |SR: | 10.5 | 12.3 | |* | | | | | |78006 2MASS| +312436 |V2436 Cyg |210240.8+455305 |BY | 7.69 |( 0.03 )| |V | | | 10.526 | |K2V |78018 DM | +312437 |V2437 Cyg |211218.5+475846 |SR: | 11.3 | 12.8 | |* | | | | | |78006 2MASS| +312438 |V2438 Cyg |211536.9+474319 |SR: | 12.1 | 13.7 | |* | | | | | |78006 2MASS| +312455 |V2455 Cyg |212824.6+464031 |DSCT | 8.53 | 8.97 | |V |52885.3992 | | 0.0942075 | |F2 |78299 DM | +312456 |V2456 Cyg *|213043.8+335724 |EB | 11.3 | 11.9 | 11.6 |* |51482.622 | | 0.695915 | |A0 |78013 78300| +312459 |V2459 Cyg |214355.6+425525 |SR: | 12.5 | 13.5 | |* | | | | | |78006 2MASS| +312460 |V2460 Cyg |214620.0+495423 |M: | 12.1 | 15.0 | |* | | | | | |78006 2MASS| +312461 |V2461 Cyg |215038.7+491645 |M: | 11.5 | 14.3 : | |R | | | | | |78040 2MASS| +312463 |V2463 Cyg |215650.4+551422 |SR: | 12.5 | 14.6 | |* | | | | | |78006 2MASS| +312474 |V2474 Cyg *|201046.2+334805 |EB: | 10.97 | 11.27 | 11.2 |* |51354.500 | | 32.34 | | |79006 79040| +312475 |V2475 Cyg |201356.2+351942 |DCEP | 11.1 | 11.9 | |* |51449.77 | | 11.561 |41 | |79100 79040| +312476 |V2476 Cyg |201439.7+353915 |EB | 11.70 | 12.15 | 12.1 |* |51415.730 | | 18.88 | | |79004 79134| +312477 |V2477 Cyg |201858.9+563619 |EW | 9.86 | 10.65 : | 10.52 |* |51492.835 | | 0.311250 | |F8 |79003 79047| +312480 |V2480 Cyg |210405.9+393300 |EA | 12.32 | 13.1 | 12.7 : |* |51282.436 | | 0.66927 |20 | |79004 79040| +312482 |V2482 Cyg |210739.5+404002 |M: | 10.3 | 12.3 | |* |51370. | | 218. : | | |79036 79165| +312483 |V2483 Cyg |210809.4+362819 |EB | 10.89 | 11.9 : | 11.35 : |* |51490.400 | | 112.4 : | | |79004 GSC | +312484 |V2484 Cyg |211522.9+380404 |LB | 9.7 | 10.6 | |* | | | | | |79100 79225| +312486 |V2486 Cyg *|211659.4+401957 |EA | 9.65 | 10.14 | 10.14 |* |51518.644 | | 1.27268 |18 |A2 |79004 DM | +312487 |V2487 Cyg |211850.7+395413 |LB: | 10.6 | 12.6 | |* | | | | | |79100 79165| +312488 |V2488 Cyg |213332.7+363119 |SRB | 9.9 | 10.3 | |* | | | 56. | | |79100 79226| +312489 |V2489 Cyg |213621.7+382324 |SR | 11.8 | 14.3 | |V |51360. | | 205. : | | |79100 79165| +312490 |V2490 Cyg |214226.0+284947 |EB | 11.75 | 12.25 | 12.00 |* |51486.805 | | 0.78099 | | |79003 GSC | +312495 |V2495 Cyg |210025.2+523016 |FU | 11. : |< 15. | |K | | | | | |80439 80439| NL80_2 +312496 |V2496 Cyg |192345.0+511612 |RS | 12.20 | 12.75 | |* | | | 13.3 | | |80246 80246| NL80_3 +312498 |V2498 Cyg *|192403.7+294032 |DSCTC | 11.43 |( 0.07 )| |B | | | 0.06 | | |80089 80089| NL80_3 +312499 |V2499 Cyg |192646.7+542710 |LB | 10.5 | 10.9 | |* | | | | | |80100 GSC | NL80_3 +312500 |V2500 Cyg *|192753.1+332226 |DSCTC | 7.65 |( 0.03 )| |B | | | 0.0640168 | |F1III |80092 HIP | NL80_3 +312501 |V2501 Cyg |193658.2+462024 |DSCTC: | 12.03 | 12.09 | |V | | | 0.05 : | | |80176 80176| NL80_3 +312502 |V2502 Cyg |193703.2+461926 |DSCTC: | 10.84 | 10.90 | |V | | | 0.13 : | |A4 |80176 80176| NL80_3 +312503 |V2503 Cyg |193721.5+462434 |DSCTC: | 11.09 |( 0.02 )| |V | | | 0.05 : | | |80176 80176| NL80_3 +312504 |V2504 Cyg |193724.1+462352 |DSCTC: | 11.52 |( 0.07 )| |V | | | 0.12 : | | |80176 80176| NL80_3 +312505 |V2505 Cyg |193732.1+461915 |DSCTC: | 11.47 |( 0.02 )| |V | | | 0.08 : | | |80176 80176| NL80_3 +312506 |V2506 Cyg |193758.8+461420 |DSCT | 11.01 |( 0.13 )| |V | | | 0.11 : | | |80176 80176| NL80_3 +312508 |V2508 Cyg |193910.0+405215 |BY | 10.3 | 10.5 | |* | | | 31.2 | | |80043 80043| NL80_3 +312509 |V2509 Cyg |194122.3+305223 |EW | 12.5 |( 0.53 )|( 0.50 )|r |53569.476 | | 0.396808 | | |80087 80087| NL80_3 +312510 |V2510 Cyg |194340.5+464003 |RS | 11.1 | 11.4 | |* | | | 25.08 | | |80158 GSC | NL80_3 +312513 |V2513 Cyg |194929.6+312716 |SRD: | 9.33 | 9.50 | |V | | | 45. : | |F3Ia |80530 DM | NL80_3 +312514 |V2514 Cyg |195124.8+404407 |RS | 8.36 | 8.57 | |* | | | 4.1648 : | |G5 |80170 80170| NL80_3 +312515 |V2515 Cyg |195541.3+525258 |SR | 12.2 | 12.6 | |* |51499. | | 55.5 | | |80001 GSC | NL80_3 +312516 |V2516 Cyg |195735.0+553932 |SR | 12.3 | 12.8 | |* | | | 77. | | |80001 GSC | NL80_3 +312517 |V2517 Cyg *|195916.3+363208 |EA | 10.1 | 10.9 | 10.6 |V |53256.433 | | 1.388903 | |A2 |80535 DM | NL80_3 +312518 |V2518 Cyg |195937.1+483407 |SR | 10.5 | 10.9 | |* | | | 65.4 | | |80536 GSC | NL80_3 +312519 |V2519 Cyg |200050.8+554122 |EA: | 10.33 | 10.55 | 10.55 |* |51337.882 | | 1.60275 |11 : | |80011 DM | NL80_3 +312520 |V2520 Cyg |200653.8+324659 |EA | 10.56 | 10.87 | 10.85 : |* |51452.635 | | 1.34883 |12 |A0 |80011 GSC | NL80_3 +312521 |V2521 Cyg |200707.3+503401 |EW: | 12.5 | 12.9 | 12.9 |* |51427.93 | | 1.0786 | | |80102 80102| NL80_3 +312522 |V2522 Cyg |200807.9+585923 |LB | 12.3 | 12.9 | |* | | | | | |80062 USNO | NL80_3 +312523 |V2523 Cyg |200928.6+354401 |SXARI: | 7.84 | 7.91 | |Hp| | | 538. | |O8fpe |80543 HIP | NL80_3 +312525 |V2525 Cyg |201603.0+354207 |BY | 10.65 | 11.05 | |* | | | 11.8 | | |80545 GSC | NL80_3 +312526 |V2526 Cyg |201723.8+360736 |EA: | 10.16 | 10.48 | 10.45 : |V |51518.65 | | 10.5113 | |K0 |80011 GSC | NL80_3 +312527 |V2527 Cyg |201920.6+551219 |SR | 11.3 | 11.7 | |* | | | 59. | | |80546 GSC | NL80_3 +312528 |V2528 Cyg |202027.3+370957 |GCAS: | 11.2 | 11.6 | |* | | | | |Be |80077 80077| NL80_3 +312529 |V2529 Cyg |202100.7+491219 |EA | 9.86 | 10.24 | 10.10 |* |51310.888 | | 4.9045 |05 |F2 |80011 DM | NL80_3 +312530 |V2530 Cyg |202115.4+372431 |BE | 8.6 | 8.7 | |V | | | | |B2Iabe |80009 DM | NL80_3 +312531 |V2531 Cyg |202156.8+363950 |BE | 11.3 | 11.7 | |* | | | | |Be |80077 80077| NL80_3 +312532 |V2532 Cyg |202251.7+541756 |SR | 11.5 | 11.9 | |* | | | 69. | | |80546 2MASS| NL80_3 +312533 |V2533 Cyg *|202258.9+404539 |BCEP | 10.87 |( 0.06 )| |V | | | 0.156539 | |B1V |80549 80549| NL80_3 +312534 |V2534 Cyg *|202307.3+404655 |BCEP | 10.66 |( 0.06 )| |V | | | 0.192198 | |B3 |80549 80549| NL80_3 +312535 |V2535 Cyg |202307.6+404609 |BCEP | 10.46 |( 0.04 )| |V | | | 0.190396 | |B0.5V |80549 80549| NL80_3 +312536 |V2536 Cyg *|202309.8+404552 |BE | 12.33 | 12.62 | |V | | | | |Be |80549 80549| NL80_3 +312537 |V2537 Cyg |202314.6+404519 |EB | 10.36 |( 0.04 )|( 0.02 )|V |52844.50 | | 2.7299 | |O9.5:V |80549 80549| NL80_3 +312538 |V2538 Cyg |202333.5+372545 |EB | 11.20 | 11.80 | 11.75 |* |51325.79 | | 3.1616 | | |80550 80550| NL80_3 +312539 |V2539 Cyg |202333.7+404520 |BCEP | 11.71 |( 0.02 )| |V | | | 0.143010 | |B6.5: |80549 80549| NL80_3 +312540 |V2540 Cyg |202337.9+465552 |EW | 12.44 | 12.76 | 12.62 |V |52795.8746 | | 0.405000 | |G1V:+K2V: |80551 GSC | NL80_3 +312541 |V2541 Cyg *|202411.9+485526 |EA | 9.97 | 10.45 : | |* |51421.73 | | 2.3542 : |16 | |80013 GSC | NL80_3 +312542 |V2542 Cyg |202444.8+545417 |SR | 10.5 | 11.0 | |* | | | 215. | | |80546 GSC | NL80_3 +312543 |V2543 Cyg |202531.9+445416 |GCAS: | 11.4 | 11.8 | |* | | | | |Be |80077 80077| NL80_3 +312545 |V2545 Cyg |202726.5+310538 |EW | 11.4 | 11.7 | |* |53238.6459 | | 0.369190 | | |80282 GSC | NL80_3 +312546 |V2546 Cyg |202804.9+311710 |EW | 11.37 | 11.93 | 11.92 |* |51358.748 | | 0.62279 | |F5 |80042 GSC | NL80_3 +312547 |V2547 Cyg *|202822.7+383719 |WR | 10.95 | 11.15 | |* | | | 139. | |WC5 |80553 GSC | NL80_3 +312548 |V2548 Cyg |203001.9+532647 |SR | 11.9 | 12.3 | |* | | | 57. | | |80001 USNO | NL80_3 +312549 |V2549 Cyg |203122.0+305838 |EA | 10.93 |( 0.4 : *)| |V |53288.505 | | 1.03832 | |F8 |80282 GSC | NL80_3 +312550 |V2550 Cyg |203458.8+413617 |EA | 10.19 | 10.62 | 10.5 |* |51358.767 | | 4.6760 |14 |B0Ib(n) |80013 GSC | NL80_3 +312551 |V2551 Cyg |203536.5+524545 |EW | 10.75 | 11.00 | 10.98 |* |51461.908 | | 0.242324 | | |80042 GSC | NL80_3 +312552 |V2552 Cyg |203557.2+490042 |EW | 10.87 | 11.27 | 11.21 |V |51448.682 | | 0.2785137 | |G5-8V |80042 GSC | NL80_3 +312553 |V2553 Cyg |203713.1+445454 |EA | 10.88 | 11.73 | 11.07 |* |51341.882 | | 1.71636 |15 | |80013 GSC | NL80_3 +312554 |V2554 Cyg |203842.0+484118 |EA | 11.66 | 12.15 : | 11.77 : |* |51330.704 | | 3.6028 |06 | |80011 GSC | NL80_3 +312555 |V2555 Cyg |203901.6+451228 |EB | 10.28 | 10.48 | 10.44 |* |51421.720 | | 22.425 | | |80042 DM | NL80_3 +312556 |V2556 Cyg |204314.4+540231 |SR | 11.90 | 12.45 | |* | | | 115. | | |80001 2MASS| NL80_3 +312557 |V2557 Cyg |204343.7+513631 |EA | 11.90 | 12.5 | 12.05 |* |51467.795 | | 0.98920 |16 | |80001 GSC | NL80_3 +312558 |V2558 Cyg |204913.5+350314 |EA | 12.21 | 12.81 | 12.76 |* |51325.791 | | 0.93536 |18 | |80042 GSC | NL80_3 +312559 |V2559 Cyg |205050.8+410947 |EB | 11.92 | 12.62 | 12.31 |* |51371.150 | | 39.6 | |e |80042 GSC | NL80_3 +312560 |V2560 Cyg |205213.8+463527 |EB | 12.0 | 12.3 | 12.2 |* |53601.5305 | | 0.733803 | | |80087 80087| NL80_3 +312561 |V2561 Cyg |205258.3+440720 |BY | 10.47 | 10.62 | |* | | | 7.1663 | |G5V |80170 80170| NL80_3 +312562 |V2562 Cyg |205519.4+424332 |EB | 9.02 | 9.5 : | 9.4 : |* |51511.60 | | 2.4931 | |A2 |80011 DM | NL80_3 +312563 |V2563 Cyg |205544.8+432828 |EW | 12.45 | 12.77 | 12.72 |* |51504.898 | | 0.530922 | | |80526 80526| NL80_3 +312564 |V2564 Cyg |205633.8+460427 |SR | 12.0 | 12.6 | |* | | | 51.8 | |Me |80001 GSC | NL80_3 +312568 |V2568 Cyg |210148.8+504710 |DCEPS: | 10.05 | 10.45 | |* |51500.84 | | 9.73 |50 | |80566 80566| NL80_3 +312569 |V2569 Cyg |210155.9+315913 |LB | 9.0 | 9.4 | |* | | | | |M3 |80536 GSC | NL80_3 +312570 |V2570 Cyg |210551.7+351432 |EA | 11.08 | 11.5 | 11.23 |* |51514.690 | | 2.00819 |09 | |80013 GSC | NL80_3 +312571 |V2571 Cyg |210800.1+373418 |SR | 11.0 | 11.5 | |* | | | 180. : | | |80536 2MASS| NL80_3 +312578 |V2578 Cyg |211108.6+471006 |CWB: | 10.35 | 10.60 | |* |51362.70 | | 1.7659 | | |80135 GSC | NL80_3 +312584 |V2584 Cyg |211145.0+444530 |GDOR: | 11.53 | 11.63 | |V | | | 1.459 | | |80570 80570| NL80_3 +312587 |V2587 Cyg |211239.1+422551 |LB | 11.20 | 11.40 | |V | | | | | |80571 80571| NL80_3 +312590 |V2590 Cyg |211247.1+413047 |SR | 12.3 | 12.9 | |* | | | 50. | | |80001 USNO | NL80_3 +312618 |V2618 Cyg *|211904.0+434549 |EA | 10.56 | 11.1 | 11.0 : |* |51338.750 | | 47.615 |03 |OB |80042 GSC | NL80_3 +312619 |V2619 Cyg |211926.8+345250 |EW | 12.20 | 12.61 | 12.59 |* |51537.610 | | 0.506738 | | |80042 GSC | NL80_3 +312643 |V2643 Cyg *|213029.9+311430 |EB | 10.70 | 11.00 | 10.92 |* |51341.764 | | 0.610855 | | |80042 DM | NL80_3 +312646 |V2646 Cyg |214434.5+542201 |EW | 11.25 | 11.45 | 11.45 |* |51361.765 | | 0.35465 | | |80031 80031| NL80_3 +312647 |V2647 Cyg *|214703.3+500318 |EA | 11.05 | 11.65 : | 11.6 : |* |53671.255 | | 5.85527 |03 | |80023 GSC | NL80_3 +312648 |V2648 Cyg |214735.3+513725 |EA | 11.64 | 12.0 | |* |51364.72 | | 3.4150 : |10 | |80013 GSC | NL80_3 +312649 |V2649 Cyg |214742.2+304211 |BY | 10.25 |( 0.11 *)| |V | | | 34.7828 | |K2 |80021 DM | NL80_3 +312650 |V2650 Cyg |214755.8+542058 |DCEP | 12.45 | 12.9 | |* |51493.65 | | 7.26 | | |80566 80566| NL80_3 +312651 |V2651 Cyg |214806.7+511530 |DCEP | 11.5 | 12.1 | |* |51473.3 | | 11.9 | | |80081 GSC | NL80_3 +312652 |V2652 Cyg |214825.2+384720 |EA | 12.5 | 13.2 | 12.8 |* |51408.560 | | 1.57137 |10 | |80031 80031| NL80_3 +312653 |V2653 Cyg |214916.1+312503 |BY | 10.82 |( 0.11 *)| |V | | | 6.4128 | | |80021 GSC | NL80_3 +312654 |V2654 Cyg |215011.2+404650 |RS | 11.7 | 12.0 | |* | | | 5.91732 | | |80067 80067| NL80_3 +312655 |V2655 Cyg |215135.5+515409 |EA | 11.3 | 11.7 | 11.6 : |* |51360.868 | | 3.6745 |09 | |80584 80584| NL80_3 +312656 |V2656 Cyg |215227.0+420813 |EB | 12.15 | 12.45 | 12.35 |* |51480.373 | | 1.07849 | | |80584 80584| NL80_3 +312657 |V2657 Cyg |215338.1+482413 |EW | 12.5 | 12.9 | 12.8 |* |51415.915 | | 0.38821 | | |80031 80031| NL80_3 +319001 |alf Cyg *|204125.9+451649 |ACYG | 1.21 | 1.29 | |V | | | | |A2Iae |04766 BD | +319011 |lam Cyg |204724.5+362927 |BE | 4.47 | 4.54 | |Hp| | | | | |HIP HIP | +319019 |tau Cyg *|211447.5+380243 |DSCT | 3.65 | 3.75 | |V | | | | |F0IV |06283 BD | +319020 |ups Cyg *|211755.1+345349 |GCAS | 4.28 | 4.50 | |V | | | | |B2Vne | BD | +319022 |khi Cyg *|195033.9+325451 |M | 3.3 | 14.2 | |V |42140. | | 408.05 |41 |S6,2e-S10,4e(MSe)|00001 00002| +319216 |P Cyg *|201747.2+380159 |SDOR | 3. | 6. | |V | | | | |B1Iapeq | 08953| +320001 |R Del |201455.1+090521 |M | 7.6 | 13.8 | |V |44091. | | 285.07 |45 |M5e-M6e |00001 00002| +320002 |S Del *|204304.9+170517 |M | 8.3 | 12.4 | |V |44887. | | 277.75 |52 |M5e-M8 |00001 00002| +320003 |T Del |204521.0+162356 |M | 8.5 | 15.2 | |V |43296. | | 332.02 |45 |M3e-M6e |00001 00002| +320004 |U Del *|204528.2+180524 |SRB | 7.6 | 8.9 | |p | | | 110. : | |M5II-III |03767 00002| +320005 |V Del |204746.1+192006 |M | 8.1 | 16.1 | |V |41065. | | 533.51 |42 |M4e-M6e |00001 00002| +320006 |W Del *|203740.1+181704 |EA/SD | 9.69 | 12.33 | 9.79 |V |43328.5495 | | 4.806100 |12 |B9.5Ve+G5 |08593 09031| +320007 |X Del |205454.1+173828 |M | 8.2 | 14.8 | |V |41551. | | 281.04 |42 |M4e-M6e |00001 00002| +320008 |Y Del |204139.0+115239 |M | 8.8 | 16.5 : | |V |42707. | | 468.40 |43 |M8e |00001 00002| +320009 |Z Del |203239.1+172703 |M | 8.3 | 15.3 | |V |42317. | | 304.48 |48 |S5,2.5e-S7,2e: |00001 00002| +320010 |RR Del |204333.9+135641 |EA/SD | 10.2 | 11.8 | |V |18183.422 | | 4.599535 |16 |A |01327 00102| +320011 |RS Del |202909.7+161625 |SRB: | 9.18 | 10.0 | |B | | | 60. | |M5-M8 |00653 08953| +320012 |RT Del |202910. +161615:| | 11.8 |< 12.8 | |p | | | | | |01328 | +320013 |RU Del |201727.2+101008 |M | 9.9 |< 14. | |V |38900. | | 260.58 | |M3 |00001 00002| +320015 |RW Del |202628.3+124100 |M | 11. | 16. | |p |36502. | | 237.4 | |M3-M8 |00001 BD | +320016 |RX Del |203000.2+124605 |M | 9.7 | 16.0 | |p |42320. | | 185.63 | |M2e |00001 00002| +320017 |RY Del |203014.8+101631 |M | 11.8 |< 16.0 | |p |35348. | | 248.26 | | |00001 00002| +320018 |RZ Del *|203107.3+113151 |M | 11.0 |< 16.0 | |p |32455. | | 311.8 | | |02931 00002| +320019 |SS Del |204037.0+132701 |M | 11.6 |< 16.0 | |p |36521. | | 194.59 | | |00001 00002| +320020 |ST Del |204453.6+115749 |SRB | 11.2 | 12.3 | |p | | | 102. | |M4 |00609 06286| +320021 |SU Del |205117.6+063059 |M | 12.0 | 16.2 | |p |28430. | | 238.1 | |M2IIIe |00001 06286| +320023 |SW Del |210015.9+133425 |M | 11.1 |< 14.0 | |p |28751. | | 289.4 | |M7e |03772 06286| +320024 |SX Del |210346.2+195755 |I: | 10.6 | 12.1 | |p | | | | | |00653 06286| +320025 |SY Del |203315.8+145854 |LB | 10.2 | 12.1 | |V | | | | |M3 |08044 01332| +320026 |SZ Del |204045.3+185622 |M | 11. |< 16. | |p |40732. | | 235.92 | |M3e |00001 00533| +320027 |TT Del *|203602.4+082703 |EA/SD | 10.6 | 12.5 | |p |45232.419 | | 2.871119 |12 *|A1 |00001 01332| +320028 |TU Del |204050.6+145051 |SRB | 11.2 | 13.0 | |V |32120.5 | | 107.5 |43 | |08044 02315| +320030 |TW Del *|203521.1+081147 |SRB | 9.7 | 13.1 | |V |38687.5 | | 115.6 | |M2 |05987 04389| +320031 |TX Del *|205012.7+033908 |CWB: | 8.84 | 9.54 | |V |42947.009 | | 6.165907 |33 |G0-G5 |08632 08953| +320032 |TY Del *|210422.0+131254 |EA/SD | 9.7 | 10.9 | 9.8 |V |42959.4450 | | 1.19112689 |20 *|B9 |08593 00279| +320035 |UV Del |202054.3+182122 |SRB: | 12.3 | 13.7 | |p | | | 235. : | |K5 |00609 00533| +320038 |UY Del |202220.0+134858 |L | 11.6 | 13.2 | |p | | | | | |00609 00533| +320039 |UZ Del |202232.9+131412 |SR | 11.7 | 14.1 | |p |25865. | | 85. | | |00609 00533| +320041 |VW Del |202235.1+173731 |M | 10.8 | 15.7 | |p |41040. | | 219.50 | | |00001 00533| +320044 |VZ Del |202412.7+180206 |L | 12.2 | 13.8 | |p | | | | | |00609 00533| +320046 |WX Del |202656.7+150602 |M | 11.8 |< 15.0 | |p |35330. | | 526.3 | | |00001 00533| +320048 |WZ Del |202729.4+165146 |M | 12.2 |< 15.3 | |p |25850. | | 259. | | |00609 00533| +320052 |YY Del *|203000.8+140310 |EA | 11.3 | 12.0 |( 0.05 : )|p |42959.512 | | 0.7930922 |19 *|A3 |00001 00533| +320053 |YZ Del |203030.0+141946 |SR | 12.1 | 14.5 | |p |25813. | | 139.6 | | |00609 00533| +320054 |ZZ Del |203113.9+150432 |RRAB | 12.4 | 13.2 | |p |37690.317 | | 0.52019172 |20 | |05988 00533| +320057 |AC Del |203204.7+182425 |L | 12.1 | 14.2 | |p | | | | | |00609 00533| +320058 |AD Del |203304.3+132824 |SRA | 11.3 | 13.3 | |p |25840. | | 88.6 | |M0 |00609 02314| +320061 |AG Del |203417.7+183512 |M | 10.7 |< 15.5 | |p |36720. | | 239.73 | |M4 |00001 00533| +320065 |AL Del *|203615.8+130521 |EB/KE | 12.2 | 12.9 | 12.4 |p |25807.520 | | 1.485485 | | |00410 02314| +320067 |AN Del |203858.2+133838 |M | 11.4 |< 16.2 | |p |36457. | | 194.38 | | |00001 00533| +320068 |AO Del |203948.7+172057 |LB | 11.4 | 12.4 | |p | | | | |M |00609 02318| +320069 |AP Del |204013.3+132433 |LB | 12.5 | 13.6 | |p | | | | |M5 |00609 02314| +320070 |AQ Del |204102.6+172003 |SRB | 10.4 | 11.9 | |p |30674. | | 71.9 |43 |M4 |01110 01110| +320073 |AT Del |204224.8+152016 |SRD: | 11.4 | 12.3 | |p | | | | |G0 |00609 00533| +320075 |AV Del |204531.5+111026 |EA/SD | 10.7 | 12.7 | |p |43689.515 | | 3.85343 |10 *|F8 |00001 00533| +320076 |AW Del |204756.2+170420 |LB | 11.8 | 13.1 | |p | | | | |M7 |00609 02315| +320077 |AX Del |204813.3+152156 |RRAB | 12.4 | 13.4 | |p |25804.460 | | 0.563731 |09 | |00609 00533| +320078 |AY Del |205031.6+134522 |L | 12.3 | 14.3 | |p | | | | | |00609 00533| +320079 |AZ Del |205216.3+144635 |M | 10.8 |< 16.0 | |p |38625. | | 255.65 | | |00001 00114| +320080 |BB Del |205321.3+154538 |M | 11.3 | 15.3 | |p |36539. | | 245.20 | | |00001 00533| +320087 |BI Del |202738.6+142009 |EA/SD | 11.4 | 13.3 | |p |28366.29 | | 7.25238 |07 |G0 |08994 01333| +320095 |BR Del *|204633.2+042337 |M | 10. |< 12.5 | |p |38962. | | 336.55 | |M8e |00001 00470| +320099 |BV Del |205309.9+160849 |RRAB | 12.3 | 13.4 | |p |25527.314 | | 0.423450505 |18 | |05986 00533| +320100 |BW Del |202106.5+182311 |EA | 11.4 | 11.8 | |p |25795.39 | | 2.423114 |14 *|F2 |08994 00470| +320101 |BX Del *|202119.0+182617 |CWB: | 11.79 | 12.57 | |V |38219.531 | | 1.0917795 |25 |F0-F8 |02304 00533| +320102 |BY Del *|202149.9+122427 |EA/DM | 11.4 | 11.9 | 11.8 |p |25830.34 | | 5.01713 |14 |F9 |08994 00542| +320110 |CI Del |202427.4+145758 |LB | 11.0 | 12.1 | |p | | | | |M7 |00911 00470| +320111 |CK Del |202502.0+111237 |RRAB | 11.7 | 13.35 | |B |34598.368 | | 0.4427899 |15 |A2: |04957 01333| +320120 |CT Del |202926.4+095352 |LB | 6.8 | 8.5 | |V | | | | |M7 |00911 08953| +320126 |CZ Del |203337.8+093100 |SRB | 9.0 | 10.2 | |p | | | 123. | |M5 |00677 08953| +320135 |DM Del *|203937.0+142543 |EB/KE | 8.58 | 9.11 | 8.80 |V |44501.3913 | | 0.8446758 | |A2V |00001 BD | +320146 |DX Del *|204728.4+122751 |RRAB | 9.52 | 10.26 | |V |39367.340 | | 0.47261673 |20 |A9-F6 |03506 01442| +320151 |EG Del *|205339.5+163005 |RRC | 12.5 | 13.0 | |p |32580.540 | | 0.32484326 |30 | |05986 00533| +320153 |EI Del *|202614.3+051212 |SRB | 10.5 | 11.9 | |p | | | 20. : | |M2 |01110 00294| +320154 |EK Del *|205404.8+083306 |CEP | 11.90 | 12.57 | |V |27649.41 | | 2.046705 | | |01443 01333| +320159 |EP Del |203927.7+194452 |M | 12.0 | 15.5 | |p |35222. | | 430.5 | | |02267 00158| +320161 |ER Del |204246.5+084114 |LB | 11.0 | 12.3 | |p | | | | |S5,5 |00797 00294| +320162 |ES Del *|204358.4+191417 |M | 10.6 | 16.5 | |p |33189. | | 373.9 | |M10 |02267 02372| +320163 |ET Del *|205456.4+082328 |EB/KE | 12.0 | 12.9 | 12.7 |p |31432.559 | | 1.010784 | |A0: |00001 01444| +320164 |EU Del |203754.7+181607 |SRB | 5.79 | 6.9 | |V |41156. | | 59.7 | |M6.4III |08814 08073| +320176 |FM Del *|203344.3+161618 |CWB | 12.3 | 13.3 | |p |25478.66 | | 3.95452 |20 |F5-F8 |03810 02372| +320186 |FW Del |202615.3+202702 |M | 11.5 | 18. | |p |37093. | | 343. | |M5e |03896 03811| +320187 |FX Del |203724.4+201737 |M | 12.5 |< 15.5 | |p |34248. | | 331.5 | | |02430 00158| +320189 |FZ Del |205332.5+043850 |EA/SD | 10.2 | 11.3 | |p |31324.329 | | 0.7832126 |15 *|F |08994 08953| +320190 |GG Del *|201431.8+151635 |EB | 12.4 | 12.8 | 12.6 |p |28761.71 | | 0.5632265 | |F7 |08994 00294| +320203 |GU Del |204726.2+154756 |LB | 12.5 | 13.3 | |p | | | | |M7 |04303 GSC | +320205 |GW Del |205625.9+104918 |LB | 11.5 | 12.5 | |p | | | | |M8 |04306 | +320207 |GY Del *|201951.0+155027 |M | 11.9 |< 16. | |p |25850. :| | | |M5e-M7e |03976 2MASS| +320248 |KO Del |204447.9+160728 |EA | 12.5 | 13. | |p |40499.375 | | | | |05884 05884| +320249 |KP Del |204510.2+181735 |LB | 7.70 | 8.39 | |V | | | | |M5 |05885 BD | +320250 |KQ Del |201524.2+130419 |LB | 9.9 | 10.5 | |p | | | | |M6.5 |04331 BD | +320253 |KT Del |202545.3+154712 |LB | 12.0 | 12.5 | |p | | | | |M5 |06953 04341| +320257 |KX Del |203642.6+122946 |SRB | 11.5 | 12.4 | |p | | | 130. : | | |06953 04341| +320258 |KY Del |204357.8+175646 |LB | 12.5 | 13.0 | |p | | | | |M5 |06953 03903| +320259 |KZ Del |204439.0+151848 |LB | 12.3 | 12.8 | |p | | | | |M2 |06953 03903| +320263 |LO Del |205728.6+112938 |SR | 11.9 | 13.3 | |p | | | | | |08065 00294| +320264 |LP Del |203303.3+042313 |M | 12.0 | 18.2 | |p |37854. | | 296.9 |20 |M2 |09035 09035| +320265 |LQ Del |204249.5+191107 |SRB | 8.75 | 9.25 | |V | | | 30. : | |M6 |08282 08282| +320266 |LR Del |205502.2+171534 |ACV | 7.7 |( 0.039 )| |V | | | 26. | |A0p |08323 BD | +320267 |LS Del *|205710.3+193859 |EW/KW | 8.61 | 8.76 | 8.76 |V |42687.418 | | 0.3638 | | |08438 BD | +320269 |LU Del |204158.2+173117 |SR: | 6.22 |( 0.25 )| |V | | | | | |70053 BD | +320273 |LY Del |210626.1+192437 |EA | 10.40 | 13.5 | |V | | | | | |73146 73146| +320274 |LZ Del |201709.8+155222 |GCAS | 7.43 | 7.63 | |Hp| | | | | |HIP HIP | +320275 |MM Del |202129.5+120936 |LB: | 11.44 | 11.70 | |Hp| | | | | |HIP HIP | +320276 |MN Del |202226.7+165500 |SRB | 7.17 | 7.37 | |Hp| | | | | |HIP HIP | +320277 |MO Del |202620.4+105019 |BY: | 11.04 | 11.27 | |Hp| | | | | |HIP HIP | +320278 |MP Del |202826.6+114315 |EA | 7.62 | 7.89 | |Hp| | | | | |HIP HIP | +320279 |MQ Del |203044.5+120527 |SRD | 8.64 | 8.79 | |Hp| | | | | |HIP HIP | +320280 |MR Del |203113.5+051309 |EA | 8.85 | 9.16 | |Hp| | | | | |HIP HIP | +320281 |MS Del |203115.2+062121 |LB | 8.28 | 8.44 | |Hp| | | | | |HIP HIP | +320282 |MT Del |203208.0+183739 |LB | 7.05 | 7.30 | |Hp| | | | | |HIP HIP | +320283 |MU Del |203243.0+193135 |BY: | 11.56 | 11.89 | |Hp| | | | | |HIP HIP | +320284 |MV Del |203416.4+193150 |SRB: | 7.24 | 7.34 | |Hp| | | | | |HIP HIP | +320285 |MW Del |203538.7+035951 |SRB: | 8.48 | 8.76 | |Hp| | | | | |HIP HIP | +320286 |MX Del |203623.1+203558 |EB | 8.99 | 9.17 | |Hp| | | | | |HIP HIP | +320287 |MY Del |204359.3+173418 |LB: | 8.01 | 8.15 | |Hp| | | | | |HIP HIP | +320288 |MZ Del |204520.0+070220 |EB | 8.32 | 8.54 | |Hp| | | | | |HIP HIP | +320289 |NN Del |204649.2+073310 |EA | 8.49 | 8.92 | |Hp| | | | | |HIP HIP | +320290 |NO Del |205004.8+165905 |LB | 9.04 | 9.40 | |Hp| | | | | |HIP HIP | +320291 |NP Del |205311.3+152555 |ELL: | 8.89 | 8.97 | |Hp| | | | | |HIP HIP | +320292 |NQ Del |205420.3+081108 |LB: | 11.76 | 12.16 | |Hp| | | | | |HIP HIP | +320293 |NR Del |205711.2+161505 |LB | 7.18 | 7.48 | |Hp| | | | | |HIP HIP | +320294 |NS Del |201542.4+135057 |ACV | 9.22 |( 0.09 U )| |V | | | | | |75026 BD | +320296 |NU Del |210207.0+181039 |M: | 9.8 | 14.6 | |p | | | | | |75130 75130| +320297 |NV Del |201813.7+103755 |SR | 11.64 | 11.94 | |* | | | | | |76169 GSC | +320299 |NX Del |205025.1+060538 |SRB | 10.0 | 11.0 | |V | | | | | |76054 GSC | +320301 |NZ Del |205144.6+035515 |LB | 12.4 | 13.1 | |* | | | | | |77125 GSC | +320304 |OQ Del |203937.7+045819 |BY | 7.88 |( 0.04 )| |V | | | | |K5V |78018 DM | +320305 |OR Del *|204613.3+155426 |RS | 7.09 |( 0.03 )| |V | | | 6.557 | |K0IV |78018 DM | +320307 |OT Del |203131.9+064632 |EA | 12.25 | 12.93 : | 12.45 |V |52832.775 | | 0.646147 |17 | |79006 79136| +320308 |OU Del |203414.3+063406 |LB: | 11.0 | 13.4 | |V | | | | |M1 |79100 79010| +320309 |OV Del |204500.3+164805 |LB | 11.5 | 12.1 | |V | | | | | |79100 79135| +320311 |OX Del *|204900.6+161348 |EA | 10.96 | 11.47 | |V |52754.379 | | 7.125 |09 |G5 |79166 DM | +320312 |OY Del |201749.9+101630 |SR | 12.0 | 12.4 | |* | | | 49.6 | | |80001 USNO | NL80_3 +320313 |OZ Del |202311.1+185446 |EW | 10.48 | 10.77 | 10.71 |V |51322.917 | | 0.911325 | |F2 |80042 GSC | NL80_3 +320314 |PP Del |202823.9+113111 |E+RS | 9.6 | 10.0 | |V | | | 1.0209 | | |80021 GSC | NL80_3 +320315 |PQ Del |202932.8+122731 |BY | 9.95 |( 0.05 : *)| |V | | | 3.7553 | | |80021 DM | NL80_3 +320316 |PR Del |203106.4+090904 |SRB | 10.7 | 11.1 | |* | | | 45. | | |80100 GSC | NL80_3 +320317 |PS Del |203135.0+125420 |EA | 11.95 | 12.40 | 12.08 |V |52933.555 | | 0.753478 |16 | |80011 GSC | NL80_3 +320318 |PT Del |203238.6+200143 |EA | 11.89 | 12.75 | 12.35 |V |52879.688 | | 7.2432 |17 | |80042 GSC | NL80_3 +320320 |PV Del |203553.0+100612 |BY | 12.44 |( 0.09 *)| |V | | | 0.9644 | | |80021 GSC | NL80_3 +320321 |PW Del |203622.0+121540 |BY | 9.77 |( 0.19 )| |V | | | 12.3366 | | |80021 DM | NL80_3 +320322 |PX Del |203747.8+195115 |EB | 12.23 | 12.88 | 12.70 |V |51339.4 | | 49.44 | | |80013 GSC | NL80_3 +320323 |PY Del |203756.5+133753 |EA: | 12.08 | 13.26 | 13.0 |* |53557.8787 | | 0.60851 |21 | |80557 80557| NL80_3 +320325 |QQ Del |204017.1+143036 |BY | 9.86 |( 0.04 *)| |V | | | 0.9378 | | |80021 DM | NL80_3 +320326 |QR Del |204404.8+131412 |BY | 10.71 |( 0.08 *)| |V | | | 2.1510 | | |80021 GSC | NL80_3 +320327 |QS Del |204751.7+135028 |RS | 11.5 | 11.7 | |* | | | 17.9449 | | |80067 80067| NL80_3 +320328 |QT Del |204853.4+122230 |BY | 10.77 |( 0.07 *)| |V | | | 6.2897 | |G5 |80021 DM | NL80_3 +320329 |QU Del |204922.9+064739 |RS | 10.05 | 10.14 | |V | | | 9.04572 | |F0 |80001 DM | NL80_3 +320330 |QV Del |205428.0+090607 |BY | 11.73 |( 0.07 *)| |V | | | 2.2374 | | |80021 GSC | NL80_3 +320332 |QX Del |205550.9+102341 |RS | 11.3 | 11.4 | |* | | | 10.15 | | |80043 80043| NL80_3 +320333 |QY Del |205902.5+184702 |RS | 11.0 | 11.2 | |* | | | 3.62021 | | |80067 80067| NL80_3 +320335 |V0335 Del |210044.1+151955 |EB | 11.92 | 12.30 | 12.04 |* |52500.483 | | 0.787193 | | |80164 80164| NL80_3 +320336 |V0336 Del |210047.5+145246 |EW | 12.25 | 12.48 | 12.46 |* |52497.69 | | 0.631308 | | |80565 80565| NL80_3 +329004 |del Del *|204327.5+150429 |DSCT | 4.38 | 4.49 | |V | | | | |F0IV |07528 BD | +330001 |R Dor *|043645.6-620438 |SRB | 4.8 | 6.6 | |V | | | 338. : | |M8IIIe |00353 00002| +330002 |S Dor *|051814.4-691501 |SDOR | 8.6 | 11.5 | |B | | | | |A0-5eq |V 125 V 016|=LMC V1970 +330003 |T Dor *|044549.6-594713 |M | 10.5 |< 14. | |p |40665. | | 168.0 | |M5IIe |05828 08953| +330004 |U Dor |051008.8-641904 |M | 8.1 | 14.6 | |p |29850. | | 394.4 | |M8IIIe |00001 09040| +330012 |RT Dor |052944.7-641713 |RRAB | 11.8 | 13.0 | |p |30767.272 | | 0.482837 |16 | |09036 09040| +330015 |RW Dor *|051832.5-681333 |EW/KW | 10.8 | 11.4 | 11.2 |p |30938.6017 | | 0.285463812 | |G |09041 09040| +330018 |RZ Dor |042019.7-542012 |M: | 11.0 |< 12.8 | |p |24153. | | 161. | | |00210 GSC | +330019 |SS Dor |040551.6-545003 |M | 11.5 | 15.8 | |p | | | | | |00085 02385| +330020 |ST Dor |042850.3-543008 |M: | 12. |< 13.5 | |p |28850. | | | |M0e |00085 02381| +330021 |SU Dor |044730.0-554106 |M | 8.5 |< 14.0 | |V |40741. | | 235.86 | | |00001 02381| +330041 |VW Dor |060745.7-665839 |RRAB | 11.22 | 12.11 | |V |38379.453 | | 0.570610 |20 | |00001 09040| +330043 |VY Dor |044813.3-534805 |RR | 12. | 12.5 | |p | | | | | |06561 06561| +330045 |WW Dor |041336.8-503510 |SRB | 8.66 | 8.87 | |V |40625. | | 52. | |M2(Ib/II) |05828 CoD | +330046 |WX Dor |041505.4-530033 |SRB | 8.76 | 8.91 | |V | | | 80. : | |MB |05828 CPD | +330047 |WY Dor |044925.4-664949 |LB | 9.60 | 9.85 | |V | | | | |M4/5(III) |05828 CPD | +330048 |WZ Dor |050734.0-632359 |SRB | 5.2 |( 0.12 : )| |V | | | 40. | |M3III |06994 CPD | +330049 |XX Dor *|045913.6-693543 |RRC | 11.23 | 11.67 | |V |40701.307 | | 0.328936 |52 |F0 |09076 CPD | +330050 |XY Dor |040015.5-513354 |LB: | 6.50 |( 0.07 )| |V | | | | |M1III |05150 CoD | +330051 |XZ Dor |044904.8-564000 |LB: | 6.55 |( 0.16 )| |V | | | | |M4III |04456 CPD | +330053 |YZ Dor |061252.9-682137 |M: | 10.5 |< 12.5 | |p | | | | | |V 178 V 179|=LMC V4699 +330055 |AA Dor *|053140.4-695302 |EA/D | 11.13 | 11.60 | 11.21 |V |43196.34870 | | 0.2615398 |07 |O(subdwarf) |09081 CPD | +330056 |AB Dor |052844.8-652655 |FKCOM: | 6.77 | 6.98 | |V | | | | | |67395 CPD | +330061 |AG Dor |040729.2-523417 |RS | 8.66 | 8.83 | |V | | | | | |69011 CPD | +330065 |AL Dor |044652.3-603613 |EA | 7.80 | 8.12 | |Hp| | | | | |HIP HIP | +330066 |AM Dor |045009.1-583122 |LB: | 8.35 | 8.45 | |Hp| | | | | |HIP HIP | +330067 |AN Dor |045228.2-554149 |EA | 7.61 | 7.79 | |Hp| | | | | |HIP HIP | +330068 |AO Dor |050132.8-680143 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +330069 |AP Dor |050645.1-590303 |EW: | 9.38 | 9.60 | |Hp| | | | | |HIP HIP | +330070 |AQ Dor |051013.6-602621 |LB | 8.57 | 9.00 | |Hp| | | | | |HIP HIP | +330071 |AR Dor |051203.1-651033 |E: | 7.12 | 7.20 | |Hp| | | | | |HIP HIP | +330072 |AS Dor |051916.9-675149 |LB: | 9.72 | 9.95 | |Hp| | | | | |HIP HIP | +330073 |AT Dor |052816.2-590847 |LB: | 8.63 | 8.73 | |Hp| | | | | |HIP HIP | +330074 |AU Dor |053622.3-661725 |LB: | 8.73 | 8.86 | |Hp| | | | | |HIP HIP | +330075 |AV Dor |054104.9-615128 |EA | 9.67 | 10.09 | |Hp| | | | | |HIP HIP | +330076 |AW Dor |061342.7-664759 |LB: | 9.17 | 9.35 | |Hp| | | | | |HIP HIP | +330077 |AX Dor |062758.9-664516 |LB: | 8.37 | 8.47 | |Hp| | | | | |HIP HIP | +330078 |AY Dor |063101.1-665215 |LB: | 6.77 | 7.24 | |Hp| | | | | |HIP HIP | +330079 |AZ Dor |053655.0-663337 |BE | 6.26 | 6.29 | |V | | | | | |76053 DM | +330082 |BD Dor |043819.1-571214 |EA | 11.45 | 12.12 | 11.7 : |V |53470.550 | | 0.785242 |18 | |79009 DM | +339001 |alf Dor *|043359.8-550242 |ACV | 3.26 | 3.30 | |V |43481.50 | | 2.95 |50 |A0IIIp(Si) |04013 CPD | +339002 |bet Dor *|053337.5-622923 |DCEP | 3.46 | 4.08 | |V |40905.30 | | 9.8426 |48 |F4-G4Ia-II |08654 08953| +339003 |gam Dor |041601.6-512912 |EW: | 4.23 | 4.27 | |V | | | | |F0V-F5V |06065 HIP | +340001 |R Dra |163240.2+664518 |M | 6.7 | 13.2 | |V |44779. | | 245.60 |45 |M5e-M9eIII |00001 00002| +340002 |S Dra |164255.9+545414 |SRB | 10.5 | 11.5 | |p | | | 136. : | |M7 |01169 08953| +340003 |T Dra *|175623.3+581306 |M | 7.2 | 13.5 | |V |43957. | | 421.62 |44 |C6,2e-C8,3e(N0e) |00001 00002| +340004 |U Dra *|191000.6+671637 |M | 9.1 | 14.6 | |V |44290. | | 316.13 |47 |M6e-M8 |00001 00002| +340005 |V Dra |175814.5+545218 |M | 9.5 | 14.7 | |V |44451. | | 278.33 |50 |M4e |00001 00002| +340006 |W Dra *|180534.7+655722 |M | 8.9 | 15.4 | |V |42176. | | 278.6 |43 |M3e-M4e |00001 00002| +340007 |X Dra |180652.2+660919 |M | 8.9 | 15.8 | |V |44167. | | 257.33 |44 |M5e: |00001 00002| +340008 |Y Dra *|094222.6+775107 |M | 6.24 | 15.0 | |V |44448. | | 325.79 |45 |M5e |00001 09050| +340009 |Z Dra *|114529.2+721458 |EA/SD | 10.8 | 14.1 | 11.0 |p |43499.736 | | 1.3574560 |15 *|F4V |00001 09082| +340010 |RR Dra *|184147.4+624035 |EA/SD | 10.0 | 13.3 | 10.1 |V |44483.391 | | 2.8313215 |15 |A2 |00001 00101| +340011 |RS Dra *|183733.5+741943 |SRA | 9.0 | 12.0 | |V |15120. | | 282.72 |44 |M5e |03817 00101| +340012 |RT Dra |181925.8+724050 |M | 9.6 | 13.8 | |V |35494. | | 279.41 | |M5 |00001 00101| +340013 |RU Dra |181920.7+593223 |M | 9.4 |< 13.6 | |V |34214. | | 297.1 |40 |M5e |00001 00101| +340014 |RV Dra |123746.0+653323 |M | 8.4 | 14.2 | |V |43526. | | 208.14 |35 |M1e-M3e |00001 00002| +340015 |RW Dra *|163531.6+575023 |RRAB | 11.05 | 12.08 | |V |39377.391 | | 0.442917 | |A7-F4 |08636 00102| +340016 |RX Dra *|190242.0+584358 |EA/DM | 10.0 | 10.5 | 10.3 |V |17502.411 | | 3.7863886 |09 *|F |00522 00100| +340017 |RY Dra |125625.9+655940 |SRB: | 6.03 | 8.0 | |V | | | 200. : | |C4,5J(N4p) |00001 08953| +340018 |RZ Dra *|182305.4+585413 |EB/SD: | 10.11 | 11.01 | 10.38 |V |44177.5555 | | 0.5508738 | |A5 |09052 00102| +340019 |SS Dra |122620.9+684117 |SRB | 8.4 | 10.4 | |V |27667. | | 51.5 |48 |M5 |00310 08953| +340020 |ST Dra |163538.0+573605 |CST: | 10.6 : | 11.2 | |p | | | | |K0 |00352 | +340021 |SU Dra *|113756.6+671947 |RRAB | 9.18 | 10.27 | |V |43902.0467 | | 0.66042001 |15 |F2-F7 |08299 08299| +340022 |SV Dra |183338.4+492220 |M | 9.1 | 15.0 | |V |43714. | | 256.24 |49 |M7e |00001 00002| +340023 |SW Dra *|121746.6+693038 |RRAB | 9.94 | 10.94 | |V |26224.5876 | | 0.56966993 |17 |A7-F8 |03506 06286| +340024 |SX Dra *|180433.9+582354 |EA/SD | 9.8 | 11.6 | 10.0 |V |44705.459 | | 5.16952 |14 |A7V |00001 00537| +340025 |SY Dra |173357.8+535738 |M | 10.5 |< 14.0 | |V |42850. | | 391.38 | |M7e |00001 00114| +340026 |SZ Dra |191002.3+660610 |LB | 10.0 | 11.0 | |p | | | | |M5 | 08953| +340027 |TT Dra *|171252.3+575146 |SRB | 10.5 |< 12.5 | |p | | | 107. : | |M6 |01169 08953| +340028 |TU Dra |185130.2+485443 |M | 10.0 |< 13.3 | |V |38892. | | 344.79 | |M4e |00001 00537| +340029 |TV Dra |170824.5+641909 |LB | 10.2 | 11.6 | |p | | | | |M8p(S) | 08953| +340030 |TW Dra *|153351.1+635426 |EA/SD | 8.0 | 10.5 | 8.1 |p |44136.295 | | 2.8068470 |17 |A8V+K0III |09053 08953| +340031 |TX Dra *|163500.7+602805 |SRB | 7.9 | 10.2 | |p | | | 78. : |50 |M4e-M5 |01169 00002| +340032 |TY Dra |173700.1+574425 |LB | 8.8 | 9.9 | |V | | | | |M5-M8 |01462 08953| +340033 |TZ Dra |182211.7+473408 |EA/SD | 9.6 | 10.5 | |p |42966.482 | | 0.8660347 |20 *|A7V: |07531 08953| +340034 |UU Dra *|202403.6+751514 |SRB | 10.8 | 12.3 | |p | | | 120. |50 |M8IIIe |01463 01464| +340035 |UV Dra |144401.9+560625 |SRA | 8.6 | 9.8 | |V |24436.4 | | 77.4 |43 |M5 |00898 08953| +340036 |UW Dra |175731.3+543956 |LB | 7.0 | 8.2 | |V | | | | |K5p | 08953| +340037 |UX Dra *|192135.5+763335 |SRA: | 5.94 | 7.1 | |V | | | 168. |50 |C7,3(N0) |00108 06225| +340038 |UY Dra |175622.1+581254 |CST: | 10.99 | | |V | | | | |K2III-IV |00458 00119| +340039 |UZ Dra *|192555.0+685607 |EA/DM | 9.9 | 10.7 | 10.6 |p |41570.283 | | 3.2613024 |07 |F8 |03671 00010| +340040 |VV Dra |121729.4+691524 |LB: | 10.3 | 10.8 | |p | | | | |K5 | 01465| +340041 |VW Dra *|171629.4+604014 |SRD: | 6.0 | 7.0 | |V | | | 170. : | |K1.5IIIb |03828 08953| +340043 |VY Dra |153950.5+643943 |CST: | 9.2 | | |p | | | | |K2 |01466 09087| +340044 |VZ Dra |162105.7+582703 |RRC | 11.4 | 12.2 | |p |43361.3979 | | 0.3210308 | |A |04150 09088| +340045 |WW Dra *|163904.0+604159 |EA/AR/RS | 8.3 |( 0.65 )|( 0.08 )|V |28020.3686 | | 4.6296238 |12 *|G2IV+K0IV |08592 01467| +340047 |WY Dra |193320.8+805543 |RRAB | 12.08 | 13.64 | |B |38604.518 | | 0.588941 |15 | |00001 01470| +340048 |WZ Dra *|165949.7+521904 |SRA | 8.5 | 14.0 | |V |43135. | | 401.7 |50 |M6e |00001 04238| +340051 |XZ Dra *|190942.6+645132 |RRAB | 9.59 | 10.65 | |V |41928.374 | | 0.476497 |20 |A6-F6 |07032 01474| +340053 |YZ Dra |192345.1+714114 |M | 8.3 |< 14.5 | |V |34722. | | 347.6 | |M8e |00001 00114| +340054 |ZZ Dra *|194058.1+674604 |M | 10. |< 15.5 | |p |41209. | | 267.9 | |M7e |00001 00114| +340055 |AA Dra |200547.5+661720 |M | 10. |< 15.5 | |p |37040. | | 338.62 | |M6 |00001 00114| +340056 |AB Dra |194906.4+774423 |UGZ | 11.0 | 15.3 | |V | | |( 13.4 ) | |pec(UG) |03791 00002| +340057 |AC Dra |202006.0+685249 |LB | 7.14 |( 0.25 )| |B | | | | |M5IIIab |01371 BD | +340058 |AD Dra |191244.3+621615 |M | 11.3 | 15.5 | |V |30291. | | 225.5 |44 : | |01476 USNO | +340059 |AE Dra *|182706.6+552933 |RRAB | 12.4 | 13.38 | |B |31996.480 | | 0.6026728 |15 |A7-F6 |08697 01477| +340060 |AF Dra *|203130.4+745717 |ACV | 5.15 | 5.22 | |V | | | 20.2747 | |A0p(Sr-Cr-Eu) |07946 BD | +340061 |AG Dra *|160141.0+664810 |ZAND | 8.9 | 11.8 | |p |38900. | | 554. | |K3IIIep |05724 09092| +340062 |AH Dra |164816.6+574849 |SRB | 8.5 | 9.3 | |p |30520. | | 158. | |M7 |03775 08953| +340063 |AI Dra *|165618.1+524154 |EA/SD | 7.05 | 8.09 | 7.16 |V |43291.627 | | 1.1988146 |18 *|A0V |00001 06515| +340064 |AK Dra |181643.2+531448 |EA | 11.8 | 12.6 | |p |26828.530 | | 2.218237 |16 |F3 |03835 00174| +340065 |AL Dra |182740.5+491833 |M | 11.0 | 13.8 | |p |39409. | | 330.3 | |M7ea |00001 04238| +340066 |AM Dra |185243.8+641005 |M | 11.3 |< 13.8 | |p |35235. | | 325.3 | | |00686 00174| +340067 |AN Dra |170405.2+714747 |M | 11.8 | 16. | |p |32978. | | 353.5 | |M5 |05724 00174| +340068 |AO Dra |173640.4+545139 |SRA | 11.0 | 12.5 | |p |34213. | | 103. | |M3e |00686 00174| +340069 |AP Dra *|182200.9+695010 |M: | 11.6 |< 13.0 | |p |37490. | | 582. | | |03835 00174| +340071 |AR Dra *|121636.5+645127 |EA/SD: | 11.29 | 12.51 | 11.63 |V |42868.9114 | | 0.6758375 |20 |F5V |00001 09093| +340072 |AS Dra *|122211.7+731455 |* | 8.00 | 8.10 | |V |35926.055 | | 5.414905 | |G4+G9 |02790 BD | +340073 |AT Dra |161715.4+594518 |LB | 6.8 | 7.5 | |p | | | | |M4IIIa |02696 08953| +340074 |AU Dra |173521.3+683819 |EA/SD: | 12.3 | 13.1 | |p |35635.397 | | 0.51514 | | |01040 00174| +340075 |AV Dra |175944.2+515302 |RR | 12.3 |< 12.9 | |p |35335.522 | | 0.5555919 | | |05342 00174| +340076 |AW Dra *|190048.0+500531 |RRAB | 12.3 | 14.3 | |p |36075.224 | | 0.6871941 |20 : | |03506 02798| +340077 |AX Dra *|124014.7+661710 |EB | 10.9 | 11.6 | 11.0 |p |26767.675 | | 0.5681644 | |F5 |04171 00174| +340078 |AY Dra |153839.2+570133 |SRA | 10.6 | 12.6 | |p |26603. | | 262.5 | | |05371 04014| +340079 |AZ Dra |164042.5+724018 |LB | 8.0 | 8.9 | |p | | | | |M2 |04198 08953| +340080 |BB Dra |175345.0+570321 |LB | 10.9 | 11.7 | |p | | | | |M8 |04213 BD | +340081 |BC Dra |181419.1+764108 |RRAB | 11.27 | 11.80 | |V |42278.443 | | 0.719576 |22 |F5 |09094 09094| +340082 |BD Dra |181751.9+771749 |RRAB | 12.02 | 13.11 | |V |41774.441 | | 0.589052 |20 | |07114 02789| +340083 |BE Dra *|182556.9+685744 |EB/KE | 11.3 | 11.8 | 11.5 |p |36317.368 | | 0.5224911 | |B |04171 02789| +340084 |BF Dra |185059.4+695258 |EA | 10.1 | 10.8 | |p |36317.579 | | 5.60545 |06 *|F8 |04109 04235| +340085 |BG Dra |185436.0+513231 |SR: | 12.0 | 14.0 | |p | | | | | |04236 04236| +340086 |BH Dra *|190339.5+572726 |EA/SD: | 8.38 | 9.27 | 8.58 |V |40019.7982 | | 1.81723857 |11 *|A2V+Ap |06517 08953| +340087 |BI Dra |191551.6+734549 |SRA | 11.0 | 11.6 | |p |28410. | | 106. | |M |04014 02789| +340088 |BK Dra *|191820.7+662448 |RRAB | 10.59 | 11.87 | |V |25523.305 | | 0.5920815 |12 |A8 |03835 04250| +340089 |BL Dra |194024.6+605513 |E | 11.9 | 12.2 | |p | | | | | |03148 04065| +340096 |BS Dra *|195628.8+733658 |EA/DM | 9.12 | 9.86 | 9.84 |V |41461.4242 | | 3.3640120 |07 *|F5V+F5V |00001 08953| +340097 |BT Dra |145144.6+600409 |RRAB | 11.36 | 12.30 | |V |30734.635 | | 0.5886740 |16 |A8 |00001 09095| +340098 |BU Dra |145840.1+564507 |EA/SD: | 10.4 | 11.4 | |p |28656.530 | | 1.91417 |07 *|F5 |03160 BD | +340099 |BV Dra *|151150.4+615125 |EW/KW | 7.88 | 8.48 | 8.40 |V |44474.327 | | 0.3500671 | |F7V |00001 09096| +340100 |BW Dra *|151150.1+615141 |EW/KW | 8.61 | 9.08 | 9.02 |V |42572.538 | | 0.2921671 | | |09097 09096| +340101 |BX Dra |160617.4+624546 |RR | 11.5 | 12.2 | |p |27216.410 | | 0.561192 |20 |A3 |03929 03587| +340102 |BY Dra *|183355.8+514309 |BY+UV | 8.04 | 8.48 | |V | | | 3.813 | |K3V+MVe |06948 04028| +340103 |BZ Dra |184717.9+535647 |M | 12. |< 16.5 | |p |38590. :| | | | |03910 03910| +340111 |CK Dra |153743.8+570649 |EA/SD | 11.3 | 12.9 | |p |36233.767 | | 4.994511 |10 : | |05424 05424| +340112 |CL Dra |155747.4+544459 |DSCTC | 4.95 |( 0.02 )| |V | | | 0.063 | |F0IV |06255 BD | +340114 |CN Dra |194644.7+682617 |DSCTC | 6.29 |( 0.09 )| |V | | | 0.100 | |F0III |05500 BD | +340117 |CQ Dra |123006.7+691204 |LB: | 4.95 | 5.04 | |V | | | | |M3IIIa |05841 BD | +340118 |CR Dra *|161705.4+551609 |UV | 9.46 | 12.53 | |U | | | | |M1.5Ve |09119 04069| +340119 |CS Dra |111555.9+750835 |LB | 9.93 | 10.58 | |V | | | | |M5 |09118 | +340120 |CT Dra |114109.3+752822 |LB | 9.8 | 10.4 | |p | | | | |M |02618 BD | +340121 |CU Dra |135125.9+644324 |LB: | 4.52 | 4.67 | |V | | | | |M3III |09152 BD | +340122 |CV Dra |173157.2+571042 |IS | 9.5 | 10.1 | |p | | | | | |09153 BD | +340123 |CW Dra |175125.1+803903 |LB: | 10.8 | 11.7 | |p | | | | |M8 |00174 BD | +340124 |CX Dra *|184643.1+525917 |GCAS+ELL | 5.68 | 5.99 | |V | | | | |B2.5Ve |09164 BD | +340125 |CY Dra |194605.2+593426 |RR: | 12.3 | 13.6 | |p | | | | | |00164 02354| +340126 |CZ Dra |182601.0+505549 |M | 9.1 |< 13.0 | |V |38190. | | 371. | |M7e |07956 07956| +340127 |DD Dra |184404.6+604613 |EA: | 11.2 | 12.0 | |p |31587.248 | | 0.784 : | |B9 |04022 02789| +340128 |DE Dra *|201936.7+621527 |EA/DM | 5.72 |( 0.16 )| |V |42626.2861 | | 5.298036 |05 |B9V |09155 BD | +340130 |DG Dra *|190503.4+570732 |ELL | 9.40 |( 0.19 )|( 0.17 )|V |41851.848 | | 0.5713698 | |A5V |08284 BD | +340131 |DH Dra |101750.7+732514 |M: | 11.3 | 14.5 | |V |42515. | | 550. | |N |09162 04023| +340132 |DI Dra |102116.0+784552 |ACV | 8.2 |( 0.015 )| |B | | | 18. | |A0p(Sr-Cr-Eu) |08323 BD | +340133 |DK Dra *|121541.5+723304 |RS | 6.29 |( 0.19 )| |V |44048.0 | | 63.15 |50 |K0III+K0III |08600 BD | +340134 |DL Dra *|144203.3+611543 |DSCTC | 6.22 | 6.29 | |V | | | | |F2IV |04026 BD | +340137 |DO Dra |114338.4+714120 |UG | 10.0 | 15.1 | |B | | | | | |67400 67400| +340138 |DP Dra |124902.8+660637 |UV | 10.9 |( 1.55 B )| |V | | | | | |67403 HIP | +340139 |DQ Dra |162425.3+551218 |ACV | 5.74 |( 0.017 )| |V | | | | | |67415 BD | +340140 |DR Dra |173241.2+741339 |RS | 6.55 |( 0.12 )| |V | | | | | |67419 BD | +340146 |DX Dra |202220.0+625303 |M | 12.4 | 15.2 | |V | | | | | |68015 USNO | +340148 |DZ Dra |173629.8+682920 |SRB: | 7.6 |( 0.03 )| |V | | | | | |69136 BD | +340149 |EE Dra |185852.6+693153 |ACV | 5.84 |( 0.05 )| |U | | | | | |69128 BD | +340150 |EF Dra |180530.4+694516 |EW/KW | 10.48 |( 0.34 )| |V | | | | | |70055 70055| +340153 |EI Dra |143046.8+604634 |DSCT | 8.50 |( 0.11 )| |V | | | | | |71127 BD | +340154 |EK Dra |143900.2+641730 |BY | 8.15 |( 0.09 )| |B | | | | | |71130 BD | +340158 |EO Dra |182054.9+503143 |M: | 10.8 | 13. | |p | | | | | |71164 71165| +340160 |EQ Dra |192516.0+571348 |SRB | 10.3 | 11.6 | |V | | | | | |71035 71183| +340161 |ER Dra |143142.8+601332 |DSCTC | 6.18 |( 0.03 )| |V | | | | | |72083 BD | +340163 |ET Dra |175025.1+704537 |FKCOM | 11.52 | 11.83 | |U | | | | | |72086 BD | +340164 |EU Dra |151049.8+635226 |SRD: | 8.56 |( 0.20 )| |V | | | | | |73147 BD | +340165 |EV Dra |160147.5+512052 |RS | 8.63 |( 0.06 )| |V | | | | | |73005 BD | +340166 |EW Dra |161645.3+671523 |BY | 10.69 | 10.74 | |V | | | | | |73018 73148| +340168 |EY Dra |181616.8+541022 |BY | 11.83 |( 0.09 )| |V | | | | | |73152 73153| +340169 |EZ Dra |201001.2+665712 |M | 11.2 | 14.2 | |p | | | | | |73154 73154| +340170 |FF Dra |105133.4+751128 |LB | 8.67 | 8.90 | |Hp| | | | | |HIP HIP | +340171 |FG Dra |105727.6+742011 |LB | 7.41 | 7.68 | |Hp| | | | | |HIP HIP | +340172 |FH Dra |105935.0+752829 |SRB | 8.51 | 8.80 | |Hp| | | | | |HIP HIP | +340173 |FI Dra |114013.1+681323 |SRB | 8.30 | 8.52 | |Hp| | | | | |HIP HIP | +340174 |FK Dra |123011.7+635321 |EA | 9.30 | 9.79 | |Hp| | | | | |HIP HIP | +340175 |FL Dra |130204.2+681355 |LB | 9.84 | 10.13 | |Hp| | | | | |HIP HIP | +340176 |FM Dra |131951.0+651104 |SRB | 8.76 | 8.99 | |Hp| | | | | |HIP HIP | +340177 |FN Dra |134643.3+633151 |LB | 8.13 | 8.36 | |Hp| | | | | |HIP HIP | +340178 |FO Dra |143125.7+560929 |LB: | 9.75 | 9.91 | |Hp| | | | | |HIP HIP | +340179 |FP Dra |143432.3+645758 |LB: | 8.55 | 8.66 | |Hp| | | | | |HIP HIP | +340180 |FQ Dra |144601.6+643733 |ACV: | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +340181 |FR Dra |145804.7+635122 |LB: | 8.71 | 8.83 | |Hp| | | | | |HIP HIP | +340182 |FS Dra |151847.5+593117 |LB | 8.20 | 8.33 | |Hp| | | | | |HIP HIP | +340183 |FT Dra |153149.0+542817 |LB | 8.35 | 8.48 | |Hp| | | | | |HIP HIP | +340184 |FU Dra |153445.2+621644 |EW | 10.58 | 11.10 | |Hp| | | | | |HIP HIP | +340185 |FV Dra |153854.6+572742 |LB | 7.33 | 7.48 | |Hp| | | | | |HIP HIP | +340186 |FW Dra |154242.0+670400 |LB | 7.84 | 7.98 | |Hp| | | | | |HIP HIP | +340187 |FX Dra |154347.6+580127 |EB | 9.29 | 9.59 | |Hp| | | | | |HIP HIP | +340188 |FY Dra |154840.6+612631 |LB | 8.14 | 8.41 | |Hp| | | | | |HIP HIP | +340189 |FZ Dra |155537.7+575331 |LB: | 10.49 | 10.68 | |Hp| | | | | |HIP HIP | +340190 |GG Dra |163155.6+525927 |EB | 8.77 | 8.89 | |Hp| | | | | |HIP HIP | +340191 |GH Dra |163535.9+615049 |LB: | 10.04 | 10.19 | |Hp| | | | | |HIP HIP | +340192 |GI Dra |163607.2+585131 |SRD: | 8.10 | 8.15 | |Hp| | | | | |HIP HIP | +340193 |GK Dra |164541.2+681531 |EA | 8.78 | 9.20 | |Hp| | | | | |HIP HIP | +340194 |GL Dra |165854.1+544343 |SRB | 8.60 | 8.84 | |Hp| | | | | |HIP HIP | +340195 |GM Dra |172021.9+575827 |EW | 8.79 | 9.02 | |Hp| | | | | |HIP HIP | +340196 |GN Dra |172101.3+662722 |SRB | 9.06 | 10.07 | |Hp| | | | | |HIP HIP | +340197 |GO Dra |172349.0+634545 |LB | 9.14 | 9.45 | |Hp| | | | | |HIP HIP | +340198 |GP Dra |172315.5+715212 |LB | 6.83 | 7.05 | |Hp| | | | | |HIP HIP | +340199 |GQ Dra |172529.4+512935 |EB | 8.98 | 9.42 | |Hp| | | | | |HIP HIP | +340200 |GR Dra |172839.4+590207 |L | 8.30 | 8.43 | |Hp| | | | | |HIP HIP | +340201 |GS Dra |173057.1+650637 |LB: | 9.78 | 9.91 | |Hp| | | | | |HIP HIP | +340202 |GT Dra |173950.8+725753 |IA: | 8.13 | 8.26 | |Hp| | | | | |HIP HIP | +340203 |GU Dra |174920.8+530054 |LB: | 10.13 | 10.35 | |Hp| | | | | |HIP HIP | +340204 |GV Dra |175327.5+522308 |EA | 8.59 | 8.70 | |Hp| | | | | |HIP HIP | +340205 |GW Dra |175304.1+772302 |DSCTC | 9.31 | 9.38 | |Hp| | | | | |HIP HIP | +340206 |GX Dra |180306.3+504148 |SRD | 8.32 | 8.57 | |Hp| | | | | |HIP HIP | +340207 |GY Dra |181052.6+571530 |LB | 9.02 | 9.26 | |Hp| | | | | |HIP HIP | +340208 |GZ Dra |181241.0+544607 |E: | 9.52 | 9.65 | |Hp| | | | | |HIP HIP | +340209 |HH Dra |182734.1+582846 |LB | 8.80 | 9.13 | |Hp| | | | | |HIP HIP | +340210 |HI Dra |183324.4+584223 |RRC | 9.02 | 9.20 | |Hp| | | | | |HIP HIP | +340211 |HK Dra |183430.9+514656 |LB | 6.56 | 6.77 | |Hp| | | | | |HIP HIP | +340212 |HL Dra |183426.3+574807 |EB | 7.35 | 7.66 | |Hp| | | | | |HIP HIP | +340213 |HM Dra |183743.7+594531 |SRD | 8.17 | 8.30 | |Hp| | | | | |HIP HIP | +340214 |HN Dra |184453.1+570517 |RR: | 8.16 | 8.23 | |Hp| | | | | |HIP HIP | +340215 |HO Dra |185122.1+623916 |LB | 8.37 | 8.54 | |Hp| | | | | |HIP HIP | +340216 |HP Dra |185453.5+511830 |EA | 8.06 | 8.36 | |Hp| | | | | |HIP HIP | +340217 |HQ Dra |185534.1+672250 |LB: | 9.15 | 9.28 | |Hp| | | | | |HIP HIP | +340218 |HR Dra |185826.4+530536 |LB | 9.25 | 9.51 | |Hp| | | | | |HIP HIP | +340219 |HS Dra |191222.6+735333 |LB | 7.24 | 7.37 | |Hp| | | | | |HIP HIP | +340220 |HT Dra |191841.0+635518 |LB: | 8.92 | 9.05 | |Hp| | | | | |HIP HIP | +340221 |HU Dra |192334.2+690053 |SRB | 6.96 | 7.08 | |Hp| | | | | |HIP HIP | +340222 |HV Dra |191938.0+814746 |SRD+E: | 7.79 | 8.14 | |Hp| | | | | |HIP HIP | +340223 |HW Dra |193524.2+694820 |LB | 6.81 | 6.98 | |Hp| | | | | |HIP HIP | +340224 |HX Dra |193616.1+754448 |LB: | 9.56 | 9.76 | |Hp| | | | | |HIP HIP | +340225 |HY Dra |193742.2+803055 |SRB | 8.38 | 8.53 | |Hp| | | | | |HIP HIP | +340226 |HZ Dra |194602.5+695509 |EA | 8.16 | 8.32 | |Hp| | | | | |HIP HIP | +340227 |II Dra |195103.9+783727 |SRD: | 7.72 | 7.79 | |Hp| | | | | |HIP HIP | +340228 |IK Dra |195608.9+762701 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +340229 |IL Dra |195821.6+664726 |LB: | 8.48 | 8.60 | |Hp| | | | | |HIP HIP | +340230 |IM Dra |200517.4+732727 |SRB | 8.08 | 8.18 | |Hp| | | | | |HIP HIP | +340231 |IN Dra |200627.7+703935 |DSCTC | 8.05 | 8.09 | |Hp| | | | | |HIP HIP | +340232 |IO Dra |201318.5+710630 |DSCTC: | 7.86 | 7.92 | |Hp| | | | | |HIP HIP | +340233 |IP Dra |201541.6+655113 |EB | 7.84 | 7.90 | |Hp| | | | | |HIP HIP | +340234 |IQ Dra |203943.3+803000 |SRB: | 8.47 | 8.95 | |Hp| | | | | |HIP HIP | +340235 |IR Dra |125528.6+652619 |GDOR | 5.26 | 5.34 | |Hp| | | | | |75029 BD | +340237 |IT Dra |142858.0+602311 |DSCTC | 7.53 |( 0.03 b )| |V | | | | | |75133 BD | +340238 |IU Dra |150549.9+640250 |BY | 8.42 |( 0.04 )| |V | | | | | |75134 BD | +340240 |IW Dra |164615.1+531154 |M | 11.1 |< 14.9 | |p | | | | | |75002 GSC | +340242 |IY Dra |182317.8+642038 |M: | 11.8 |< 15.0 | |p | | | | | |75002 GSC | +340243 |IZ Dra |184951.0+621725 |M | 11.1 | 14.9 | |V | | | | | |75087 75087| +340244 |KK Dra |190756.6+592352 |EA | 11.8 | 14.8 | |V | | | | | |75087 75087| +340247 |KN Dra |193051.5+592003 |M | 10.4 | 14.5 | |V | | | | | |75087 75087| +340249 |KP Dra |200523.5+632457 |E | 12.0 | 14.4 | |V | | | | | |75087 75087| +340250 |KQ Dra |201342.8+655629 |M | 11.5 |< 15.5 | |V | | | | | |75087 75087| +340252 |KS Dra |201845.0+623245 |M | 11.8 |< 16.2 | |V | | | | | |75087 75087| +340253 |KT Dra |202319.6+652819 |M | 11.8 | 15.8 | |V | | | | | |75087 75087| +340254 |KU Dra |130153.5+655408 |RR: | 11.8 | 13.3 | |V | | | | | |76012 GSC | +340255 |KV Dra |145038.3+640329 |UGSU | 11.8 | 17.1 | |V | | | | | |76127 USNO | +340256 |KW Dra |153119.7+524433 |SR: | 10.9 | 11.9 | |V | | | | | |76012 GSC | +340258 |KY Dra |185815.7+634858 |SR: | 12.1 | 12.8 | |V | | | | | |76012 GSC | +340259 |KZ Dra |201119.9+683331 |EA | 11.2 | 12.4 | |V | | | | | |76012 GSC | +340260 |LL Dra |122937.4+683808 |SR | 9.44 | 9.51 | |V | | | | | |77053 DM | +340262 |LN Dra |174555.4+523805 |EB | 12.0 | 12.6 | |V | | | | | |77100 GSC | +340264 |LP Dra |180955.5+694050 |RS | 8.50 | 8.58 | |V | | | | | |77119 DM | +340265 |LQ Dra |181941.8+501038 |EA | 11.6 |< 13.0 | |V | | | | | |77100 GSC | +340266 |LR Dra |182148.4+512420 |LB | 10.8 | 12.6 | |V | | | | | |77143 77144| +340268 |LT Dra |183741.1+515646 |RCB | 7.48 |< 12.6 | |V | | | | | |77159 DM | +340269 |LU Dra |185901.9+522805 |EA/RS | 12.2 | 12.6 | |V | | | | | |77100 GSC | +340270 |LV Dra |190013.7+503201 |ACV | 5.31 | 5.34 | |Hp| | | | | |77162 DM | +340271 |LW Dra |190626.3+682902 |SXPHE: | 10.9 |( 0.30 )| |V | | | | | |77165 77226| +340272 |LX Dra |190652.7+682626 |SR | 11.02 | 11.36 | |V | | | | | |77166 GSC | +340273 |LY Dra |191351.5+660244 |SRS | 8.88 | 8.93 | |V | | | | | |77053 DM | +340274 |LZ Dra |193433.8+740306 |EW/KW | 12.4 |( 0.5 )| |V | | | | | |77173 77227| +340278 |MP Dra |135617.8+665641 |BY | 8.45 |( 0.03 )| |V | | | 9.52 | |K0V |78018 DM | +340280 |MR Dra |170425.6+524907 |DSCTC | 8.21 |( 0.01 )| |V | | | 0.032 | |A5 |78200 DM | +340281 |MS Dra |173955.7+650006 |BY | 8.39 |( 0.03 )| |V | | | 18.31 | |K0V |78018 DM | +340283 |MU Dra *|185835.3+500930 |EW | 11.51 | 12.09 | 12.08 |* |52146.5052 | | 0.349668 | | |78264 GSC | +340284 |MV Dra |191211.4+574019 |BY | 7.04 |( 0.02 )| |V | | | 5.49 | |G8V |78018 DM | +340285 |MW Dra |095017.1+745816 |EA | 9.14 | 9.7 : | 9.20 : |* |51284.615 | | 3.28935 |14 |G |79009 DM | +340286 |MX Dra |121215.1+685300 |RS | 10.36 | 10.77 | |* | | | 6.395 | |G7 |79100 DM | +340287 |MY Dra |122743.1+675805 |EA | 11.58 | 12.22 | 11.63 |* |51339.7026 | | 1.71325 |15 |A2 |79093 79094| +340288 |MZ Dra |122824.7+741407 |EA | 11.86 | 12.10 | 11.9 |* |51620.769 | | 0.84034 |18 |F2 |79004 GSC | +340289 |NN Dra |130403.0+651524 |EW | 12.34 | 12.98 | 12.92 |* |51285.669 | | 0.382872 | | |79190 79190| +340290 |NO Dra *|151144.4+633719 |EA | 8.02 | 8.14 | 8.13 : |V |48953.470 | | 5.47798 |04 |A2V |79004 DM | +340291 |NP Dra |173516.3+550012 |EA | 9.04 | 9.15 | 9.15 |* |48604.780 | | 3.10886 |08 |A0 |79006 DM | +340294 |NS Dra *|094254.7+785655 |EA | 11.27 | 11.55 | 11.43 |V |51462.0 | | 50.517 |02 : | |80023 GSC | NL80_2 +340296 |NU Dra *|101536.6+764154 |EA | 11.00 | 11.26 | 11.06 |* |51567.77 | | 6.1513 |04 | |80011 GSC | NL80_2 +340300 |NY Dra |113510.4+750547 |SR | 11.1 | 11.5 | |* | | | 45.3 | | |80359 80359| NL80_2 +340302 |OO Dra *|114001.4+750922 |EA+DSCTC | 11.4 | 11.8 | 11.55 |* |51403.832 | | 1.2383832 |14 |A3V-IV |80361 80359| NL80_2 +340305 |OR Dra *|120037.5+691108 |DSCT | 7.40 | 7.44 | |V | | | 0.1128290 | |F2 |80363 HIP | NL80_2 +340310 |OW Dra |130331.1+710644 |RRC | 10.40 | 10.73 | |* |51280.64 | | 0.33297 |45 | |80026 DM | NL80_2 +340311 |OX Dra *|130727.5+691019 |EA | 12.28 | 13.25 : | 12.50 |* |51330.668 | | 2.34906 |10 | |80011 GSC | NL80_2 +340312 |OY Dra |130841.8+654000 |RRC | 12.39 | 12.80 | |* |51390.73 | | 0.31299 |40 | |80026 GSC | NL80_2 +340319 |PU Dra *|150038.6+574631 |EA | 12.05 | 14.4 | 12.25 |* |51420.625 | | 1.54565 |10 | |80104 80104| NL80_2 +340321 |PW Dra |150728.6+580647 |SRD | 10.67 | 10.90 | |* |51401. | | 23.1 | | |80070 80070| NL80_2 +340322 |PX Dra *|150750.2+630702 |EA | 9.82 | 6.95 : | 6.88 |V |48832.12 | | 2.44405 |12 |F4III |80015 HIP | NL80_2 +340326 |QR Dra |151904.0+623048 |SRA | 10.3 | 11.3 | |* |51344. | | 160. | |M |80411 80411| NL80_2 +340334 |QZ Dra |153943.4+565549 |SR | 11.3 | 11.65 | |* | | | 45. : | | |80070 80070| NL80_2 +340337 |V0337 Dra |154718.5+631100 |BY | 11.33 | 11.62 | |* | | | 7.40 | |K5V |80417 80417| NL80_2 +340340 |V0340 Dra |155041.5+622650 |SR | 10.01 | 10.43 | |* | | | 110. | | |80411 80411| NL80_2 +340341 |V0341 Dra *|155257.7+684330 |EA | 10.10 | 10.43 | 10.24 |* |51414.682 | | 1.65042 |12 |F8 |80011 DM | NL80_2 +340343 |V0343 Dra *|155311.0+540907 |EA | 12.4 | 13.05 | 12.6 |* |51389.09 | | 3.772 |10 : | |80104 80104| NL80_2 +340347 |V0347 Dra |160832.6+631839 |EA/RS | 12.4 | 12.7 | |* |51465.614 | | 0.507280 |09 | |80417 80417| NL80_3 +340348 |V0348 Dra |161033.7+514401 |EW | 11.1 | 11.3 | 11.3 |* |51404.831 | | 0.43551 | | |80102 80102| NL80_3 +340349 |V0349 Dra |161322.0+515523 |EW | 11.3 | 11.7 | 11.7 |* |51400.740 | | 0.38987 | | |80101 80101| NL80_3 +340350 |V0350 Dra |161736.6+561420 |DSCTC | 10.08 |( 0.05 )| |B | | | 0.063656 | |A0 |80441 DM | NL80_3 +340353 |V0353 Dra |162749.1+585023 |EB | 11.25 | 11.63 | 11.50 |* |51358.740 | | 0.80272 | | |80033 80033| NL80_3 +340357 |V0357 Dra |165557.1+681200 |EW | 11.55 | 12.15 | 12.12 |* |54942.3613 | | 0.619276 | | |80001 GSC | NL80_3 +340360 |V0360 Dra |170334.0+572959 |ELL: | 8.18 | 8.23 | |Hp| | | 0.51081 | |B9 |80112 HIP | NL80_3 +340362 |V0362 Dra |171112.1+683324 |EW | 12.11 | 12.89 | 12.75 |* |51318.723 | | 0.3472223 | | |80042 GSC | NL80_3 +340365 |V0365 Dra |171648.3+544615 |EW | 11.82 | 12.03 | 12.01 |* |51358.744 | | 0.35396 | | |80033 80033| NL80_3 +340370 |V0370 Dra |172158.3+574922 |BY | 11.11 |( 0.27 *)| |V | | | 6.4272 | | |80021 GSC | NL80_3 +340372 |V0372 Dra *|172540.8+591531 |EB/RS | 10.39 | 11.09 | 10.70 |* |51403.845 | | 0.533529 | |F3IV |80042 DM | NL80_3 +340374 |V0374 Dra |172720.3+562230 |EW | 9.93 | 10.15 | 10.15 |* |51484.611 | | 0.40346 | |F8 |80033 80033| NL80_3 +340380 |V0380 Dra |174524.5+691823 |EA | 12.28 | 13.33 | 12.8 |V |53579.743 | | 0.4937 |20 | |80481 80481| NL80_3 +340381 |V0381 Dra *|174630.5+531158 |EA+DSCTC | 10.6 | 11.1 | 10.7 |R |54620.151 | | 2.71066 |12 |A7IV-V |80482 80482| NL80_3 +340383 |V0383 Dra |174746.9+521341 |BY | 11.42 |( 0.09 *)| |V | | | 2.9532 | | |80021 GSC | NL80_3 +340387 |V0387 Dra |175412.9+510122 |RRAB | 12.17 | 12.54 | |* |51611.89 | | 0.54587 | | |80026 GSC | NL80_3 +340388 |V0388 Dra *|175609.6+712640 |EB | 11.77 | 12.12 | 12.07 |* |51338.851 | | 0.457033 | | |80042 GSC | NL80_3 +340389 |V0389 Dra |175734.1+584414 |BY | 11.96 |( 0.15 *)| |V | | | 3.2408 | | |80021 GSC | NL80_3 +340390 |V0390 Dra |175758.9+550608 |BY | 11.20 |( 0.11 *)| |V | | | 0.6374 | | |80021 GSC | NL80_3 +340391 |V0391 Dra |175910.4+584300 |EA/RS | 10.90 | 11.20 | |* |51310.6936 | | 1.2314 |09 | |80021 GSC | NL80_3 +340393 |V0393 Dra |180029.4+510009 |BY | 10.04 |( 0.04 *)| |V | | | 1.1913 | |F8 |80021 DM | NL80_3 +340394 |V0394 Dra |180152.5+600643 |RRAB | 11.84 | 12.53 | |V |53554.7307 | | 0.5785 |16 | |80492 80492| NL80_3 +340397 |V0397 Dra |180619.1+654137 |EW | 12.45 | 12.9 | 12.8 |V |51492.642 | | 0.7918 | | |80492 80492| NL80_3 +340400 |V0400 Dra |181657.8+692646 |EW | 12.40 | 12.88 | 12.88 |* |51627.82 | | 0.41938 | | |80001 80492| NL80_3 +340401 |V0401 Dra |181725.1+482202 |BY | 10.91 |( 0.04 *)| |V | | | 16.2578 | |M2V |80021 GSC | NL80_3 +340402 |V0402 Dra |182113.9+651510 |EW | 10.93 | 11.20 | 11.17 |* |51370.860 | | 1.38061 | | |80011 GSC | NL80_3 +340404 |V0404 Dra |183053.1+485849 |EW | 11.57 | 11.77 | 11.77 |* |51306.866 | | 0.347625 | | |80371 DM | NL80_3 +340405 |V0405 Dra |183113.4+524708 |EW | 11.54 | 11.88 | 11.87 |* |53600.3847 | | 0.413036 | | |80172 GSC | NL80_3 +340406 |V0406 Dra |183405.9+585557 |LB | 10.3 | 10.6 | |* | | | | | |80100 GSC | NL80_3 +340410 |V0410 Dra *|183956.3+510534 |BY | 8.90 | 9.03 | |Hp| | | 6.8528 | |G5 |80021 HIP | NL80_3 +340411 |V0411 Dra |184412.0+571241 |DSCTC | 8.70 |( 0.01 )| |V | | | 0.063319 | |A2 |80508 DM | NL80_3 +340412 |V0412 Dra |184633.1+485445 |BY | 11.80 |( 0.30 *)| |V | | | 5.0703 | | |80021 GSC | NL80_3 +340413 |V0413 Dra *|184729.6+492555 |EA | 7.19 | 7.27 | 7.22 |V |48261.16 | | 4.243 | |F5 |80015 HIP | NL80_3 +340414 |V0414 Dra *|185330.2+635504 |RRC: | 11.52 | 11.70 | |* |51470.62 | | 0.348087 |45 : | |80135 GSC | NL80_3 +340417 |V0417 Dra |190058.8+484442 |RRAB | 11.83 | 12.26 | |* |51415.82 | | 0.61324 |25 | |80026 GSC | NL80_3 +340418 |V0418 Dra |190523.1+734626 |EA | 11.97 | 12.5 | 12.35 |* |52862.675 | | 7.35025 |03 | |80015 GSC | NL80_3 +340420 |V0420 Dra |191809.3+653518 |RRC | 12.44 | 13.0 | |* |51360.01 | | 0.32963 |30 | |80026 GSC | NL80_3 +340421 |V0421 Dra |191931.5+815535 |EW | 12.16 | 12.54 | 12.52 |* |51310.829 | | 0.653555 | | |80013 GSC | NL80_3 +340422 |V0422 Dra |192136.5+565035 |EB | 11.87 | 12.16 | 12.05 |* |51352.867 | | 0.51245 | | |80033 80033| NL80_3 +340423 |V0423 Dra |192304.0+560805 |EA | 10.93 | 11.25 | 11.10 |* |51478.640 | | 1.21742 |15 | |80033 80033| NL80_3 +340425 |V0425 Dra *|194418.4+814732 |EA | 10.72 | 11.27 | 11.19 |* |51397.673 | | 9.33543 |03 : |F8 |80023 DM | NL80_3 +340428 |V0428 Dra |195528.6+651733 |LB | 10.6 | 11.0 | |* | | | | | |80100 GSC | NL80_3 +340432 |V0432 Dra *|200128.4+611018 |EA | 12.24 | 12.84 | 12.84 |V |53278.3185 | | 11.628188 |03 | |80538 GSC | NL80_3 +340434 |V0434 Dra |200414.3+742536 |RS | 12.0 | 12.7 | |* | | | 21.28 | |K |80001 GSC | NL80_3 +340435 |V0435 Dra |200446.8+682957 |EW | 12.32 | 12.64 | 12.64 |* |51359.896 | | 0.522205 | | |80542 80542| NL80_3 +340438 |V0438 Dra |200704.6+751426 |EW | 11.44 | 11.75 | 11.65 |* |51458.006 | | 0.555168 | | |80526 80526| NL80_3 +340440 |V0440 Dra |200932.7+695522 |LB | 10.4 | 11.0 | |* | | | | | |80100 GSC | NL80_3 +340441 |V0441 Dra *|201239.6+823821 |EA | 12.45 | 12.75 | 12.75 |* |51338.683 | | 2.90540 |05 | |80013 GSC | NL80_3 +340442 |V0442 Dra |201327.8+675226 |SRD | 11.8 | 12.05 | |* |51574.5 | | 75.2 | | |80539 80539| NL80_3 +340446 |V0446 Dra |202932.1+831218 |RRC | 12.26 | 14.49 | |* |51322.84 | | 0.214752 |47 : | |80083 GSC | NL80_3 +340447 |V0447 Dra |203233.5+821522 |RRC | 11.77 | 12.10 | |* |51421.74 | | 0.32827 |38 | |80026 GSC | NL80_3 +340449 |V0449 Dra |203402.6+813100 |EW | 12.23 | 12.45 | 12.42 |* |51442.711 | | 0.351332 | | |80526 80526| NL80_3 +349010 |kap Dra *|123328.9+694718 |GCAS | 3.82 | 4.01 | |V | | | | |B6IIIe |09013 BD | +349015 |omi Dra |185112.1+592318 |RS | 4.63 |( 0.10 )| |V | | | | | |69137 BD | +349021 |phi Dra *|182045.4+712016 |ACV | 4.22 |( 0.04 )| |V |42229.40 | | 1.71646 |60 |A0p(Si) |08824 BD | +350001 |R Equ |211311.5+124806 |M | 8.7 | 15.0 | |V |42921. | | 260.76 |44 |M3e-M4e |00001 00002| +350002 |S Equ *|205712.8+050449 |EA/SD | 8.0 | 10.08 | 8.11 |V |42596.74348 | | 3.4360969 |13 *|B9V+F9III-IV |08593 05373| +350003 |T Equ |211545.4+091610 |SRA | 10.2 | 11.9 | |p |25188. | | 147.5 |46 |M3 |00373 08953| +350006 |W Equ *|211552.6+122319 |EA/DM | 11.8 | 12.4 | 12.4 |p |25070.400 | | 4.236855 |17 *|A7 |03836 00279| +350008 |Y Equ |210606.9+074948 |LB: | 11.6 | 12.9 | |p | | | | |M6 |01110 00294| +350009 |Z Equ *|210903.0+092303 |M | 11.8 | 16.0 | |p |35690. | | 211.6 | |M2IIIe |00001 00922| +350010 |RR Equ |210935.9+060726 |M | 10.8 | 15.7 | |p |43716. | | 271.3 | | |00001 00294| +350012 |RT Equ *|211443.3+042937 |RRAB | 12.5 | 14.1 | |p |37872.416 | | 0.4447564 |24 : | |03113 06286| +350013 |RU Equ |211817.4+074538 |SRB: | 9.5 | 10. | |p | | | 65. | |M6 | 08953| +350014 |RV Equ |211453.6+085937 |SRB | 9.09 | 9.39 | |V | | | 80. : | |K0 |09121 08594| +350018 |RZ Equ *|211752.9+095010 |EA/SD | 12.0 | 14.2 | 12.2 : |p |37161.373 | | 1.96143 |10 | |04354 04354| +350022 |SV Equ *|205718.9+054852 |EW/KE | 9.25 |( 0.20 )|( 0.16 )|V |39382.427 | | 0.881 | |A0 |05425 BD | +350024 |SX Equ |205917.2+083816 |LB: | 8.29 | 8.41 | |Hp| | | | | |HIP HIP | +350025 |SY Equ |212328.8+095555 |BCEP | 8.47 | 8.54 | |Hp| | | | | |HIP HIP | +350026 |SZ Equ |210422.4+102829 |SR | 12.1 | 12.6 | |* | | | | | |76169 GSC | +350027 |TT Equ |211021.1+103600 |SR | 12.33 | 12.84 | |* | | | | | |76169 UCAC2| +350028 |TU Equ |212349.3+062611 |SR: | 11.7 | 12.3 | |V | | | | | |76054 GSC | +350029 |TV Equ |210508.0+075644 |BY: | 7.98 |( 0.02 )| |V | | | 7.52 | |G5 |78018 DM | +350030 |TW Equ |210502.4+082651 |SRB | 11.2 | 12.2 | |V | | | 70.6 | | |79064 79010| +350031 |TX Equ |212042.1+054143 |EA | 11.44 | 11.72 | 11.66 |V |51356.700 | | 5.4788 |06 | |79003 DM | +350032 |TY Equ |210124.6+054213 |BY | 11.71 |( 0.11 *)| |V | | | 0.9801 | | |80021 GSC | NL80_3 +350033 |TZ Equ |210144.8+100841 |BY | 9.85 |( 0.04 *)| |V | | | 13.0611 | |K2 |80021 GSC | NL80_3 +350035 |UV Equ |210707.1+063232 |BY | 10.04 |( 0.08 *)| |V | | | 7.1371 | | |80021 GSC | NL80_3 +350037 |UX Equ |210901.2+093021 |BY | 11.4 | 11.6 | |* | | | 17.8154 | | |80067 80067| NL80_3 +350038 |UY Equ |211054.2+085816 |RS | 11.4 | 12.0 | |V | | | 14.060 | | |80043 GSC | NL80_3 +350039 |UZ Equ |211440.5+125052 |EB | 9.15 | 9.35 | 9.28 |V |52816.827 | | 0.486707 | |F0 |80042 DM | NL80_3 +350041 |VW Equ |211839.3+061216 |RRC | 11.0 | 11.5 | |V |54304.730 | | 0.291447 |36 | |80001 GSC | NL80_3 +350042 |VX Equ |212135.9+094835 |BY | 10.55 |( 0.14 *)| |V | | | 3.6237 | | |80021 DM | NL80_3 +359003 |gam Equ *|211020.5+100754 |ACVO | 4.58 | 4.77 | |V | | | 0.00868 | |F0p(Sr-Cr-Eu) |09123 BD | +360001 |R Eri |045518.6-162504 |CST: | 5.72 | | |V | | | | |G4III |00458 BD | +360002 |S Eri |045955.7-123215 |RRC: | 4.77 | 4.80 | |V | | | 0.273 | |F0IV |09189 BD | +360003 |T Eri |035513.9-240157 |M | 7.2 | 13.2 | |V |42079. | | 252.29 |45 |M3e-M5e |00001 00002| +360004 |U Eri |035029.1-245723 |M | 8.5 | 14.9 | |V |40110. | | 274.91 |49 |M4e |00001 00002| +360005 |V Eri *|040418.8-154331 |SRC | 8.8 | 10.4 | |p | | | 97.0 | |M6II |01485 08667| +360006 |W Eri *|041131.0-250802 |M | 7.5 | 14.5 | |V |40345. | | 376.63 |40 |M7e-M9 |00001 00002| +360007 |X Eri |023124.3-412708 |M: | 10. |< 11. | |V |15024. | | 260. : | | |00546 00546| +360008 |Y Eri |020534.2-570839 |M | 10.7 | 13.5 | |p |30060. | | 302.7 | |M7e |01486 CoD | +360009 |Z Eri *|024755.9-122738 |SRB | 7.0 | 8.63 | |B | | | 80. | |M4III |01487 00002| +360010 |RR Eri |025214.2-081601 |SRB | 7.4 | 9.20 | |B | | | 97. | |M5III |01487 00002| +360011 |RS Eri |041755.4-183025 |M | 9.2 |< 12.8 | |p |38048. | | 296.00 | |M7e |00001 06286| +360012 |RT Eri |033412.5-160951 |M | 8.5 | 12.9 | |p |29360. | | 370.8 |46 |M7e |00001 08953| +360013 |RU Eri *|035443.8-145607 |EB/KE | 9.35 | 10.07 | 9.62 |V |42359.3456 | | 0.63219951 | |F0 |09190 BD | +360014 |RV Eri |040650.0-074024 |LB | 10.0 | 11.5 | |V | | | | |M6 |00458 BD | +360015 |RW Eri |042234.8-053004 |SRA | 10.2 | 11.7 | |p |16780. | | 91.4 |44 |M6 |01489 08073| +360016 |RX Eri *|044944.3-154428 |RRAB | 9.17 | 10.10 | |V |21692.479 | | 0.58724622 |16 |A7-F6 |03506 01045| +360017 |RY Eri *|035858.1-171347 |EA/SD | 10.3 | 11.5 | |V |25621.58 | | 4.97927 |10 |F5 |02532 BD | +360018 |RZ Eri *|044345.8-104056 |EA/DS/RS | 7.70 | 8.72 |( 0.04 pg)|V |43574.083 | | 39.28238 |05 |A5+G8IV |09194 09197| +360019 |SS Eri |031153.1-115233 |M | 9.4 |< 13. | |V |34383. | | 314.4 | |M5: |00001 08953| +360020 |ST Eri |040624.7-233932 | | 12.0 | 12.6 | |p | | | | | |01492 CoD | +360021 |SU Eri |035127.0-012216 |SRB | 9.5 | 10.7 | |p | | | 112. | |M4III |00862 08953| +360022 |SV Eri *|031152.1-112114 |RRAB | 9.56 | 10.23 | |V |35552.109 | | 0.7137964 |30 |A8-F5 |09195 00182| +360023 |SW Eri |035255.2-091007 |M | 9.8 |< 14.1 | |V |38801. | | 400.69 | | |00001 00002| +360024 |SX Eri |045523.9-065550 |M | 9.3 |< 13.6 | |V |38325. | | 282.80 | | |00001 00132| +360025 |SY Eri |050948.3-053055 |SRB | 10.4 | 11.4 | |p | | | 96.0 : | |C6,3(N0) |00372 00002| +360030 |TW Eri |031117.6-234142 |M | 11.0 | 15.2 | |p |33274. | | 322.2 | |M7 |00001 00022| +360033 |TZ Eri *|042140.3-060109 |EA/SD | 9.8 | 12.6 | |V |42414.263 | | 2.6060653 |10 |F |09196 01493| +360034 |UU Eri |043633.9-273443 |SRB | 10.6 | 12.0 | |p | | | 340. | |M7 |01191 CoD | +360035 |UV Eri |045831.9-060407 |M | 10.5 | 17. : | |p |38022. | | 433.22 | |M7 |00001 00975| +360036 |UW Eri |030348.7-141330 |SRB | 9.8 | 10.6 | |p | | | 96. | |M5 |01487 08953| +360037 |UX Eri *|030952.7-065334 |EW/KW | 10.5 | 11.11 | 11.01 |V |41922.3195 | | 0.44527942 | |F8 |09198 00279| +360038 |UY Eri *|031339.1-102632 |CWB | 10.93 | 11.66 | |V |40862.908 | | 2.213235 |28 |A5-F2 |05375 00279| +360039 |UZ Eri |031345.8-141244 |RR | 12.34 | 13.27 | |V |27390.304 | | 0.648618 |12 | |00183 00975| +360040 |VV Eri |032122.6-101706 |EA/SD: | 11. | 12. | |p |27342.522 | | 1.557586 |14 *|A |00186 00975| +360041 |VW Eri *|032130.0-212727 |SRD | 9.2 | 11.16 | |B | | | 83.4 | |K5 |01496 08953| +360042 |VX Eri |032509.3-122119 |SR: | 10.0 | 10.6 | |p | | | | |M3 |00862 08953| +360043 |VY Eri |034116.0-104508 |SRB | 9.2 | 10.6 | |p | | | 102.5 : | |M6 |00862 08953| +360044 |VZ Eri |044148.1-075719 |SR | 10.5 | 12.5 | |p |26628. | | 282. | |M3-M7e |00147 00464| +360045 |WW Eri *|050504.7-073343 |EB/KE | 11.0 | 11.5 | 11.2 |p |26586.453 | | 0.9264970 | | |00279 00975| +360050 |XY Eri |041116.8-135054 |RRAB | 12.5 | 13.4 | |p |24763.90 | | 0.55425 |20 | |00193 06286| +360052 |YY Eri *|041208.8-102810 |EW/KW | 8.1 | 8.80 | 8.72 |V |41581.624 | | 0.32149415 | |G5+G5 |00001 08953| +360064 |AK Eri |042535.2-184802 |E/SD: | 12.5 | 13.5 | |p |44637.341 | | 2.6303 | | |00193 06286| +360068 |AO Eri *|043200.9-174448 |EA/DS | 11.8 | 13.8 | |p |29631.15 | | 9.2982 |08 | |00983 01111| +360070 |AQ Eri |050613.1-040808 |UGZ: | 12.5 | 16.5 | |p | | |( 76. ) | |pec(UG) |09201 08852| +360072 |AS Eri *|033225.1-031848 |EA/SD | 8.29 | 9.00 | 8.42 |V |28538.066 | | 2.664152 |09 *|A3V |03851 08953| +360073 |AT Eri |040557.7-183854 |LB | 11.8 | 12.4 | |p | | | | |M7: |00193 06286| +360074 |AU Eri |041707.2-250102 |SR | 10.5 | 11.5 | |p | | | 62. : | | |01111 08953| +360075 |AV Eri |041957.7-184320 |LB | 12.4 | 13.2 | |p | | | | |M2 |00193 06286| +360078 |AY Eri |042525.1-113656 |LB | 12.3 | 13.3 | |p | | | | |M6 |00193 06286| +360080 |BB Eri *|045337.5-192601 |RRAB | 10.96 | 11.91 | |V |39559.291 | | 0.569898 |12 |F4 |05233 01111| +360081 |BC Eri *|044659.0-143723 |EW/KE | 10.83 : | 11.32 : | 11.26 : |V | | | 0.52778916 | |A6 | 01111| +360082 |BD Eri |043344.9+000136 |M | 12.2 | 16.5 : | |p | | | 336. | |M9e |00614 06286| +360086 |BH Eri |032336.5-195301 |SR | 10.7 | 12.5 : | |V |28876. | | 89.9 |42 |M6 |00983 01111| +360087 |BI Eri |034950.8-235550 |SR | 11.1 | 12.2 | |p |27387. | | 135.6 |37 | |00016 CoD | +360088 |BK Eri *|024955.9-012513 |RRAB | 12.00 | 13.05 | |V |37911.475 | | 0.5481494 |12 : |A |03506 00205| +360089 |BL Eri *|041148.2-114727 |EW/KE | 11.5 | 12.2 | |p |29232.082 | | 0.4162 | |B5 |01500 06286| +360090 |BM Eri *|041329.6-102314 |E:/GS+SR | 8.5 | 9.3 | |p |31140. | | | |M6III |00007 08953| +360094 |BQ Eri *|050759.7-055038 |EB/DM | 10.5 | 11. | 10.9 |p |31156.790 | | 1.429712 | |A8 |00279 00977| +360095 |BR Eri |034847.5-070054 |SRB | 8.37 | 9.7 | |B | | | 175.5 | |M5 |00123 00002| +360096 |BS Eri |044139.2-015319 |LB | 11.6 | 12.1 | |p | | | | |M3 |00123 00977| +360097 |BT Eri |033431.1-392443 |EA/SD: | 9.56 | 10.45 | |V |41991.6039 | | 2.112269 |13 |A0 |07098 CoD | +360098 |BU Eri |034920.9-205227 |EA | 8.5 | 9. | |p |32244.33 | | | |A3 |00948 08953| +360099 |BV Eri *|035153.3-103150 |EW | 8.12 | 8.63 | 8.42 |V |43449.7103 | | 0.5076649 | *|F2 |09202 08953| +360100 |BW Eri *|040636.8-274008 |EB | 9.5 | 10.12 | 9.72 |B |43448.6840 | | 0.6384773 | |A3 |08615 08953| +360101 |BX Eri |044032.8-141203 |SR | 10.5 | 12.0 | |p |30380. | | 165. | |M2-M7 |00948 | +360102 |BY Eri *|025134.1-474805 |RRC | 12.13 | 12.57 | |V |34343.507 | | 0.311361 |35 |A7-F3: |00001 06286| +360103 |BZ Eri *|041212.7-060118 |EA | 9. | 9.48 | 9.21 |B |25558.445 | | 0.6641701 |12 *|F2 |09203 08953| +360104 |CC Eri *|023422.6-434747 |BY+UV | 8.70 | 9.05 | |V | | | 1.56145 | |K7Ve |02838 CoD | +360105 |CD Eri |034746.0-083641 |EA/SD: | 9.51 | 10.49 | |V |29910.567 | | 2.876728 |15 *|A0 |09204 08953| +360110 |CI Eri *|015838.5-533139 |EA/SD: | 9.5 | 10.5 | |p |28782.475 | | 3.382880 | |F8V |05235 04001| +360115 |CO Eri *|023538.6-450412 |EA/SD | 9.0 | 9.6 | 9.1 |p |28776.575 | | 5.7836 | |F7V |03795 08953| +360117 |CQ Eri |032110.4-171358 |M | 10. | 12.5 | |p | | | | |Me |00464 08953| +360118 |CR Eri |035417.8-430637 |EA/SD: | 12.5 | 14. | |p |36845.554 | | | | |06561 06561| +360119 |CS Eri *|023705.8-425748 |RRC | 8.75 | 9.31 | |V |38417.087 | | 0.311331 |47 |A2 |06523 CoD | +360120 |CT Eri *|042924.8-333434 |EW/KE | 10.0 | 10.52 | 10.27 |V |44555.6736 | | 0.634195498 | |F0 |09205 08953| +360121 |CU Eri |024658.2-132028 |CST | 8.7 | | |V | | | | |G5 |00001 08953| +360122 |CV Eri |030050.9-025243 |LB: | 6.10 |( 0.18 )| |V | | | | |M2III | BD | +360123 |CW Eri *|030400.0-174416 |EA/DM | 8.43 | 8.96 | 8.86 |V |41267.6752 | | 2.7283737 |10 *|F0 |07512 BD | +360124 |CX Eri |040326.4-392242 |SRB | 8.89 | 9.43 | |V |40666. | | 97. | |MA |05828 08953| +360125 |CY Eri |040554.1-101745 |SRB | 6.95 | 7.20 | |V | | | 25. | |M4III |05828 BD | +360126 |CZ Eri |040723.8-392955 |SRB | 8.75 | 8.97 | |V | | | 50. | |MA |05828 CoD | +360127 |DD Eri |040856.0-080603 |SRB | 8.60 | 8.9 | |V | | |> 100. | |MC |05828 BD | +360128 |DE Eri |041104.5-200305 |SRB | 8.91 | 9.06 | |V | | |> 150. | |M2 |05828 BD | +360129 |DF Eri |041307.2-363242 |SRB | 8.21 | 8.33 | |V |40643. | | 36. | |MA |05828 CoD | +360130 |DG Eri |042041.4-164948 |SRB | 6.94 | 7.14 | |V |40623. :| | 82. | |M4III |05828 BD | +360131 |DH Eri |042340.4-274950 |SRB | 8.13 | 8.33 | |V | | | 60. | |M3 |05828 CoD | +360132 |DI Eri |023746.8-453710 |LB | 8.76 | 8.98 | |V | | | | |M5/6III |05973 CoD | +360133 |DK Eri |024641.5-413131 |LB | 9.70 | 9.99 | |V | | | | |M3 |05973 CoD | +360134 |DL Eri *|035637.9-094503 |DSCTC | 6.15 |( 0.09 )| |V | | | 0.155879 | |F1V |09206 BD | +360135 |DM Eri *|044026.5-194017 |SRB | 4.28 | 4.36 | |V | | | 30. | |M4III |06994 BD | +360137 |DO Eri *|035516.1-120557 |ACVO | 5.97 | 6.00 | |V |44577.0 | | 12.4580 |50 |A5p(Sr-Cr-Eu) |09208 BD | +360138 |DP Eri |040328.9-242736 |SRB | 7.18 | 7.40 | |V | | | 55. : | |M5III |08225 CoD | +360139 |DQ Eri |042015.3-023743 |SRB | 6.84 | 7.05 | |V | | | 30. : | |M4III |06645 BD | +360140 |DR Eri |025858.5-132037 |LB: | 8.5 | 9. | |p | | | | |M1 |00975 BD | +360141 |DS Eri *|034910.6-423655 |EB | 10. | 11. | 10.3 |p |23147.24 | | 0.827701 | | |07806 07806| +360142 |DT Eri |042640.0-361836 |RR: | 12.5 | 13.5 | |p | | | | | |00085 02381| +360143 |DU Eri |042906.9-130254 |GCAS | 5.41 | 5.49 | |V | | | | |B1Vne |06311 BD | +360144 |DV Eri |043411.6-081353 |LB: | 5.10 | 5.13 | |V | | | | |M3III |06994 BD | +360145 |DW Eri *|044334.7-084740 |ACVO: | 6.82 |( 0.03 )| |V | | | | |F4IIIp(Sr) |07489 BD | +360146 |DX Eri |044405.3-083013 |GCAS | 5.76 | 5.98 | |V | | | | |B2Ve |09209 BD | +360147 |DY Eri *|041521.6-073914 |UV | 12.16 | 13.88 | |U | | | | |M4.5Ve |06586 BD | +360148 |DZ Eri *|043237.5-031234 |SXARI | 5.73 | 5.82 | |Y |42815.52 | | 1.374 | |B9III(He weak) |08054 BD | +360149 |EE Eri |031018.1-014141 |ACV | 7.33 | 7.38 | |V |44197.2 | | 2.1945 | |B9p(Cr-Eu) |08934 BD | +360151 |EG Eri *|033617.4-172801 |ACV | 5.23 | 5.32 | |V |43485.50 | | 1.93 |38 |B9p(Si) |04013 BD | +360152 |EH Eri *|043354.7-064420 |ACV | 5.72 |( 0.035 )| |V |43461.00 | | 3.82 |60 |B9p(Si) |04013 BD | +360153 |EI Eri |040940.9-075334 |RS | 6.95 | 7.32 | |V | | | | | |67435 BD | +360154 |EK Eri |042038.6-061446 |BY | 6.24 |( 0.12 )| |V | | | | | |68122 BD | +360155 |EL Eri |031038.5-052338 |RS | 7.92 | 8.20 | |V | | | | | |69011 BD | +360156 |EM Eri |042042.8-073533 |* | 5.84 |( 0.06 )| |V | | | | | |69140 BD | +360157 |EN Eri |050645.6-043919 |ACV: | 4.89 |( 0.01 u )| |U | | | | | |70022 BD | +360158 |EO Eri |044508.4-235119 |M | 10.3 | 18.0 | |p | | | | | |71033 71033| +360159 |EP Eri |025232.1-124611 |RS | 6.03 | 6.08 | |V | | | | | |72087 BD | +360160 |EQ Eri |042957.6-285247 |DSCT | 7.7 |( 0.10 )| |V | | | | | |72088 CoD | +360161 |ER Eri |021007.9-543040 |UV: | 9.6 | 11.59 | |U | | | | | |73155 CPD | +360162 |ES Eri |031803.8-194414 |RS: | 10.70 | 10.78 | |V | | | | | |73156 GSC | +360163 |ET Eri |033103.9-152452 |SRB | 4.46 | 4.68 | |J | | | | | |73033 GSC | +360164 |EU Eri |034418.6-415352 |SRC | 7.23 | 7.86 | |V | | | 395. | | |00001 HIP | +360165 |EV Eri |040907.4-091412 |SRB | 5.12 | 6.38 | |J | | | | | |73033 GSC | +360166 |EW Eri |043502.2-141341 |INT | 9.30 | 9.71 | |J | | | | | |73158 73159| +360167 |EX Eri |044625.8-280515 |DSCTC | 6.19 |( 0.03 b )| |V | | | | | |73160 CoD | +360168 |EY Eri |045257.3-100159 |M | 6.35 | 9.03 | |J | | | | | |73014 2MASS| +360169 |EZ Eri |050728.5-052425 |RS | 10.17 | 10.29 | |V | | | | | |73156 BD | +360170 |FF Eri |015244.7-540041 |LB: | 7.89 | 8.00 | |Hp| | | | | |HIP HIP | +360171 |FG Eri |015548.3-550420 |DSCTC: | 6.75 | 6.80 | |Hp| | | | | |HIP HIP | +360172 |FH Eri |023459.7-420646 |SRB | 6.97 | 7.09 | |Hp| | | | | |HIP HIP | +360173 |FI Eri |023917.0-434806 |DSCTC | 8.49 | 8.59 | |Hp| | | | | |HIP HIP | +360174 |FK Eri |024458.4-174652 |EA | 9.21 | 9.58 | |Hp| | | | | |HIP HIP | +360175 |FL Eri |024853.8-190139 |SRB | 8.39 | 8.60 | |Hp| | | | | |HIP HIP | +360176 |FM Eri |024942.6-171647 |LB: | 8.23 | 8.33 | |Hp| | | | | |HIP HIP | +360177 |FN Eri |025106.2-405748 |SRA | 7.19 | 7.27 | |Hp| | | | | |HIP HIP | +360178 |FO Eri |025224.6-410903 |EA | 8.51 | 8.80 | |Hp| | | | | |HIP HIP | +360179 |FP Eri |025334.8-091229 |EW | 9.71 | 9.85 | |Hp| | | | | |HIP HIP | +360180 |FQ Eri |025344.7-230844 |LB: | 8.18 | 8.28 | |Hp| | | | | |HIP HIP | +360181 |FR Eri |030048.4-204137 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +360182 |FS Eri |030103.9-412106 |LB: | 8.73 | 8.83 | |Hp| | | | | |HIP HIP | +360183 |FT Eri |030927.9-422851 |BY: | 11.96 | 12.21 | |Hp| | | | | |HIP HIP | +360184 |FU Eri |030956.5-445930 |EA: | 9.25 | 9.59 | |Hp| | | | | |HIP HIP | +360185 |FV Eri |031228.8-113655 |LB: | 9.01 | 9.12 | |Hp| | | | | |HIP HIP | +360186 |FW Eri |033015.6-402203 |E | 11.87 | 12.21 | |Hp| | | | | |HIP HIP | +360187 |FX Eri |033701.4-413140 |EW | 9.73 | 9.97 | |Hp| | | | | |HIP HIP | +360188 |FY Eri |034038.3-051239 |ACV | 5.47 | 5.51 | |Hp| | | | | |HIP HIP | +360189 |FZ Eri |034019.6-431427 |SRB | 7.28 | 7.52 | |Hp| | | | | |HIP HIP | +360190 |GG Eri |034326.8-393723 |LB: | 9.57 | 9.74 | |Hp| | | | | |HIP HIP | +360191 |GH Eri |034413.0-411647 |EA | 9.03 | 9.61 | |Hp| | | | | |HIP HIP | +360192 |GI Eri |034413.3-431410 |SRB | 7.99 | 8.29 | |Hp| | | | | |HIP HIP | +360193 |GK Eri |034512.0-162438 |EA | 8.96 | 9.49 | |Hp| | | | | |HIP HIP | +360194 |GL Eri |035044.4-385855 |SRB | 6.88 | 7.11 | |Hp| | | | | |HIP HIP | +360195 |GM Eri |035126.5-400509 |SRB | 7.37 | 7.62 | |Hp| | | | | |HIP HIP | +360196 |GN Eri |035233.2-200730 |LB: | 8.71 | 8.82 | |Hp| | | | | |HIP HIP | +360197 |GO Eri |035458.6-145421 |LB: | 7.14 | 7.26 | |Hp| | | | | |HIP HIP | +360198 |GP Eri |035442.4-291426 |SRB: | 9.66 | 10.22 | |Hp| | | | | |HIP HIP | +360199 |GQ Eri |035559.5-294839 |LB: | 8.94 | 9.09 | |Hp| | | | | |HIP HIP | +360200 |GR Eri |040018.6-062303 |SRB: | 8.33 | 8.48 | |Hp| | | | | |HIP HIP | +360201 |GS Eri |040019.0-312644 |LB: | 8.58 | 8.72 | |Hp| | | | | |HIP HIP | +360202 |GT Eri |040506.4-311011 |EA | 8.57 | 9.14 | |Hp| | | | | |HIP HIP | +360203 |GU Eri |040917.8-162309 |LPB | 5.39 | 5.42 | |Hp| | | | | |HIP HIP | +360204 |GV Eri |041003.4-342952 |LB: | 7.21 | 7.37 | |Hp| | | | | |HIP HIP | +360205 |GW Eri |041136.2-202122 |EA | 5.84 | 6.01 | |Hp| | | | | |HIP HIP | +360206 |GX Eri |041312.5-035306 |SRB: | 7.51 | 7.62 | |Hp| | | | | |HIP HIP | +360207 |GY Eri |041338.1-010859 |LPB | 6.40 | 6.42 | |Hp| | | | | |HIP HIP | +360208 |GZ Eri |041816.1-204255 |LB | 5.94 | 6.10 | |Hp| | | | | |HIP HIP | +360209 |HH Eri |042731.9-170631 |EA | 8.50 | 8.85 | |Hp| | | | | |HIP HIP | +360210 |HI Eri |042850.6-145846 |LB: | 8.19 | 8.30 | |Hp| | | | | |HIP HIP | +360211 |HK Eri |043006.9-080310 |LB: | 9.74 | 9.91 | |Hp| | | | | |HIP HIP | +360212 |HL Eri |043045.1-071428 |EB | 8.56 | 8.60 | |Hp| | | | | |HIP HIP | +360213 |HM Eri |043105.2-361436 |SRB: | 8.24 | 8.42 | |Hp| | | | | |HIP HIP | +360214 |HN Eri |043324.9-235620 |EB | 8.66 | 8.97 | |Hp| | | | | |HIP HIP | +360215 |HO Eri |043744.5-312438 |LB: | 8.25 | 8.37 | |Hp| | | | | |HIP HIP | +360216 |HP Eri |043855.7-132048 |SRD: | 8.44 | 8.53 | |Hp| | | | | |HIP HIP | +360217 |HQ Eri |043922.8-302724 |LB: | 8.10 | 8.34 | |Hp| | | | | |HIP HIP | +360218 |HR Eri |044130.9-235835 |SRB | 7.33 | 7.50 | |Hp| | | | | |HIP HIP | +360219 |HS Eri |044222.6-005548 |DSCTC: | 6.79 | 6.86 | |Hp| | | | | |HIP HIP | +360220 |HT Eri |044310.3-153715 |LB: | 7.91 | 8.03 | |Hp| | | | | |HIP HIP | +360221 |HU Eri |044611.7-101320 |LB: | 9.05 | 9.19 | |Hp| | | | | |HIP HIP | +360222 |HV Eri *|044833.3-114508 |DSCTC: | 8.37 | 8.46 | |Hp| | | | | |HIP HIP | +360223 |HW Eri |045209.3-192347 |LB: | 9.31 | 9.45 | |Hp| | | | | |HIP HIP | +360226 |HZ Eri |033953.2-133750 |SR: | 11.6 | 12.4 | |V | | | | | |77004 DM | +360227 |II Eri |035156.7-303258 |SR: | 11.9 | 12.7 | |V | | | | | |77004 UCAC2| +360228 |IK Eri |040907.8-162358 |GDOR | 8.14 | 8.16 | |V | | | | | |77035 DM | +360229 |IL Eri |041704.3-121312 |SR: | 12.4 | 13.6 | |V | | | | | |77004 GSC | +360230 |IM Eri |042441.1-200712 |NL | 11.6 | 13.0 | |B | | | | | |77003 DM | +360231 |IN Eri |043944.7-294559 |SR: | 11.9 | 12.7 | |V | | | | | |77004 GSC | +360232 |IO Eri |045327.9-053449 |SR | 10.25 | 11.10 | |V | | | | | |77040 DM | +360233 |IP Eri |025438.8-051951 |BY: | 7.32 |( 0.04 )| |V | | | | |K0IV+DA |78018 DM | +360235 |IR Eri |030232.7-151621 |RS | 8.45 |( 0.02 )| |V | | | 8.05 | |K0V |78018 DM | +360236 |IS Eri |030942.3-093447 |BY | 8.48 |( 0.06 )| |V | | | 5.41 | |G0V |78018 DM | +360237 |IT Eri |034233.6-145043 |SRB | 9.1 | 9.6 | |V | | | 75. : | |M4 |78130 DM | +360238 |IU Eri |041636.0-100509 |DSCTC | 7.49 | 7.55 | |Hp| | | 0.0689 | |A2 |78024 DM | +360239 |IV Eri |042115.4-351814 |RRAB | 12.0 | 13.5 | |V |51914.6021 | | 0.66278 | | |78130 DM | +360241 |IX Eri |044736.3-165604 |BY | 5.47 | 5.51 | |V | | | 11.3 | |G3V |78005 DM | +360242 |IY Eri |020728.2-575210 |EW: | 10.86 | 11.31 | 11.30 |V |52222.632 | | 0.750035 | | |79011 DM | +360246 |KM Eri |042033.1-155450 |SRB | 11.2 | 11.6 | |V | | | 85. | | |79100 79010| +360248 |KO Eri |043538.9-040554 |SRB | 10.3 | 11.3 | |V | | | 38. | | |79100 GSC | +360249 |KP Eri *|044307.2-072442 |EA | 8.78 | 8.93 | 8.93 : |V |47908.707 | | 7.447126 |03 |A2 |79003 DM | +360250 |KQ Eri |045616.1-085814 |LB | 11.7 | 12.5 | |V | | | | | |79100 GSC | +360251 |KR Eri |045651.9-063209 |SRB | 10.9 | 12.0 | |V | | | 88. | | |79100 79177| +360252 |KS Eri *|050902.9-074412 |EB | 9.32 | 9.41 | 9.36 |V |53085.561 | | 0.533437 | |F0 |79009 DM | +360254 |KU Eri *|024634.0-064207 |GDOR | 7.83 | 7.89 | |Hp| | | 2.136 | |F2V |80160 HIP | NL80_1 +360255 |KV Eri *|025015.9-464908 |EW | 12.44 | 12.95 | 12.92 |V |51868.139 | | 0.271753 | | |80036 GSC | NL80_1 +360259 |KZ Eri *|033154.3-013821 |EA | 11.3 | 12.05 | 11.54 |V |52958.752 | | 0.942690 |11 | |80002 GSC | NL80_1 +360262 |LN Eri |034836.3-052030 |BY | 11.65 | 11.82 | |* | | | 1.4527 | | |80043 80043| NL80_1 +360263 |LO Eri |035030.8-135530 |RS | 10.57 | 10.79 | |V | | | 9.34 | |K0IV |80151 DM | NL80_1 +360264 |LP Eri |035039.6-035355 |BY | 12.15 | 12.35 | |* | | | 1.37330 | | |80060 80060| NL80_1 +360265 |LQ Eri |035637.4-132720 |BY | 11.75 | 11.80 | |V | | | 1.37 : | |K1V |80151 GSC | NL80_1 +360266 |LR Eri *|040010.8-194937 |RRAB | 12.0 | 13.0 | |V |53408.6223 | | 0.60220 |20 | |80001 GSC | NL80_1 +360271 |LW Eri *|043127.7-004352 |EB | 12.5 | 13.2 | 12.8 |V |53394.675 | | 0.46561 | | |80002 GSC | NL80_1 +360275 |MM Eri *|044059.8-084003 |RS | 10.05 | 10.12 | |V | | | 2.75 : | |G3+G8 |80151 DM | NL80_1 +360280 |MR Eri |050040.9-045616 |RS: | 9.94 | 10.02 | |V | | | 2.27 : | |F9V |80151 DM | NL80_1 +360281 |MS Eri |050748.3-093143 |RS: | 12.50 |( 0.11 )| |V | | | 1.21 : | |K2 |80151 GSC | NL80_1 +369001 |alf Eri |013742.9-571412 |BE | 0.40 | 0.46 | |Hp| | | 1.263 | |B3Ve |78023 DM | +369003 |gam Eri *|035801.8-133031 |LB: | 2.88 | 2.96 | |V | | | | |M0III |04614 BD | +369004 |del Eri |034314.9-094548 |RS: | 3.51 | 3.56 | |V | | | | | |68123 BD | +369005 |eps Eri |033255.8-092730 |BY | 3.73 |( 0.05 )| |V | | | | | |72089 BD | +369011 |lam Eri *|050908.8-084515 |BCEP | 4.22 | 4.34 | |V | | | 0.701538 | |B2IVe |09212 BD | +369012 |mu. Eri *|044530.1-031517 |EA+LPB: | 4.00 |( 0.05 )| |V |52574.04 | | 7.380618 | |B5IV |80173 HIP | NL80_1 +369013 |nu. Eri *|043619.1-032109 |BCEP | 3.92 |( 0.14 )| |V |33629.277 | | 0.17790414 | |B2III |03857 BD | +3690151|omi 1 Eri *|041151.9-065015 |DSCTC | 4.00 | 4.05 | |V | | | 0.0815 | |F2II-III |07533 BD | +369016 |pi. Eri |034608.5-120606 |LB: | 4.38 | 4.44 | |V | | | | |M2III |03712 BD | +3690194|tau 4 Eri *|031931.0-214528 |LB | 3.57 | 3.72 | |V | | | | |M3III |06590 BD | +3690198|tau 8 Eri |035342.7-243644 |SXARI: | 4.63 |( 0.03 )| |V | | | | | |69140 CoD | +3690199|tau 9 Eri *|035955.5-240058 |ACV | 4.62 | 4.67 | |V | | | 1.2094 | |A0p(Si) |08934 CoD | +370001 |R For |022915.3-260556 |M | 7.5 | 13.0 | |V |41974. | | 388.73 |52 |C4,3e(Ne) |00001 00002| +370002 |S For *|034613.2-242328 |CST: | 5.6 | 8.5 | |V | | | | |F8 | 08953| +370003 |T For |032934.6-282411 |SRB | 10.8 | 11.9 | |p | | | 91.8 | |M2 |01485 00546| +370004 |U For |034430.7-251341 |M | 9.8 |< 15.0 | |V |40202. | | 318.50 | | |00001 02452| +370007 |X For |024257.8-260708 |SRB | 9.5 | 10.8 | |p | | | 76. : | |M3 |01485 00022| +370009 |Z For |025009.9-261552 |RR | 12.2 | 13.0 | |p |24759.830 | | 0.37044 | | |00180 00022| +370016 |RX For *|031113.2-262859 |RRAB | 11.12 | 12.46 | |V |39831.387 | | 0.597314 |14 |A9:-F6 |05233 00975| +370017 |RY For *|031553.5-244132 |EB/SD: | 12.23 | 13.4 | |B |27424.195 | | 0.4855 | | |00279 00022| +370018 |RZ For |033226.7-253931 |SRA | 9.2 | 10.0 | |p |28075. | | 64.6 | |M5 |00016 08953| +370019 |SS For *|020752.0-265158 |RRAB | 9.45 | 10.60 | |V |38668.951 | | 0.495432 |17 |A3-G0 |05233 06286| +370020 |ST For |024422.1-291224 |SRA | 8.71 | 10.34 | |V |41020. | | 277.0 | |M6 |08648 08953| +370021 |SU For |022136.5-371246 |EA/SD | 9.5 | 11.0 | |p |44891.6639 | | 2.434665 |12 *|A2 |09213 03644| +370022 |SV For |015825.2-242244 |SRD | 10.8 | 11.9 | |p |25637. | | 87.24 | |F5 |00201 CoD | +370023 |SW For *|030108.7-380743 |RRAB | 11.99 | 12.62 | |V |34343.590 | | 0.803740 |22 |F0: |03126 02380| +370024 |SX For |033022.4-360314 |RRAB | 10.68 | 11.38 | |V |39158.231 | | 0.6053397 |16 |F2-G2 |05233 06286| +370025 |SY For *|025314.4-374615 |SRB | 11. | 12.57 | |B | | | 55. : | |M |06176 08588| +370027 |TT For |015757.3-262856 |SRB | 9.43 | 10.21 | |V | | | 100. : | |M2 |05973 08953| +370031 |TX For |025430.3-282402 |RR: | 12. | 13. | |p | | | | |A3 |00085 02380| +370032 |TY For |023013.7-251111 |DSCTC | 6.49 | 6.51 | |V | | | 0.05 | |A9V |08462 CoD | +370033 |TZ For *|031440.1-353328 |EA/GS | 6.84 | 7.05 | |V |43216.558 | | | |G0III+G0III |08463 CoD | +370034 |UU For |023723.0-265843 |M | 9.8 | 14.8 | |V | | | | | |68015 GSC | +370035 |UV For |014641.6-240050 |RS | 7.97 | 8.07 | |V | | | | | |69011 CoD | +370036 |UW For |023433.9-343820 |CWB | 11.2 | 11.5 | |V | | | | | |69144 CoD | +370037 |UX For |024325.6-375543 |RS | 7.97 | 8.11 | |V | | | | | |69011 CoD | +370038 |UY For |024421.4-245105 |RS | 8.22 | 8.25 | |V | | | | | |69011 CoD | +370040 |VV For |025233.2-261815 |DSCTC | 8.9 |( 0.02 v )| |V | | | | | |70056 CoD | +370042 |VX For |032646.9-342637 |UG: | 12.2 |< 19. | |V | | | | | |73161 73064| +370044 |VZ For |014919.7-351758 |SRB | 9.21 | 9.33 | |Hp| | | | | |HIP HIP | +370045 |WW For |015141.9-364818 |SRD | 9.25 | 9.49 | |Hp| | | | | |HIP HIP | +370046 |WX For |015154.1-312001 |LB | 8.79 | 9.04 | |Hp| | | | | |HIP HIP | +370047 |WY For |015235.2-263417 |E: | 9.91 | 10.09 | |Hp| | | | | |HIP HIP | +370048 |WZ For |015258.1-280444 |EA: | 9.35 | 9.73 | |Hp| | | | | |HIP HIP | +370049 |XX For |015518.4-354811 |SRB | 8.93 | 9.59 | |Hp| | | | | |HIP HIP | +370050 |XY For |015827.0-364854 |LB: | 9.47 | 9.86 | |Hp| | | | | |HIP HIP | +370051 |XZ For |020118.7-370452 |EW | 9.97 | 10.29 | |Hp| | | | | |HIP HIP | +370052 |YY For |020912.4-314833 |LB: | 7.81 | 7.92 | |Hp| | | | | |HIP HIP | +370053 |YZ For |021102.2-354015 |BY: | 10.01 | 10.20 | |Hp| | | | | |HIP HIP | +370054 |ZZ For |021933.4-251809 |LB: | 8.99 | 9.11 | |Hp| | | | | |HIP HIP | +370055 |AA For |021940.2-333711 |SRC | 7.89 | 8.06 | |Hp| | | | | |HIP HIP | +370056 |AB For |023037.3-311642 |LB: | 8.33 | 8.51 | |Hp| | | | | |HIP HIP | +370057 |AC For |023425.6-324306 |LB: | 8.49 | 8.59 | |Hp| | | | | |HIP HIP | +370058 |AD For |023646.2-354944 |SRB | 7.44 | 7.66 | |Hp| | | | | |HIP HIP | +370059 |AE For |030806.7-244535 |EA | 10.32 | 10.89 | |Hp| | | | | |HIP HIP | +370060 |AF For |030837.5-262647 |LB | 8.13 | 8.46 | |Hp| | | | | |HIP HIP | +370061 |AG For |031027.6-330259 |SRB | 7.84 | 7.97 | |Hp| | | | | |HIP HIP | +370062 |AH For |031740.4-385743 |LB: | 8.29 | 8.42 | |Hp| | | | | |HIP HIP | +370063 |AI For |031934.9-240722 |SRB: | 5.65 | 5.75 | |Hp| | | | | |HIP HIP | +370064 |AK For |032922.9-240603 |E: | 9.24 | 9.35 | |Hp| | | | | |HIP HIP | +370065 |AL For |033050.5-323020 |LB: | 8.97 | 9.09 | |Hp| | | | | |HIP HIP | +370066 |AM For |034310.0-310109 |SRB | 6.93 | 7.15 | |Hp| | | | | |HIP HIP | +370067 |AN For |034612.6-253155 |LB: | 8.79 | 8.95 | |Hp| | | | | |HIP HIP | +370068 |AO For |024303.6-310412 |BY: | 7.51 | 7.54 | |V | | | | | |75139 CoD | +370069 |AP For |023916.0-292720 |SR: | 12.2 | 13.0 | |V | | | | | |77004 GSC | +370070 |AQ For |033425.4-253741 |SR: | 11.1 | 12.3 | |V | | | | | |77004 UCAC2| +370071 |AR For |015930.2-312918 |SRA | 10.6 | 12.1 | |V |52260 | | 128. | | |78130 78014| +370072 |AS For |024621.1-361336 |M | 10.2 |< 11.2 | |V |52887 | | 304. | |Me |78040 USNO | +370073 |AT For |025109.4-380453 |EA | 9.28 | 9.90 | |V |52564.723 | | 2.59226 | |A2V |78011 DM | +370074 |AU For |021502.4-335105 |EA | 10.58 | 11.17 | 11.17 |V |52129.860 | | 6.11384 |09 | |79018 DM | +370075 |AV For *|021833.7-294016 |EA | 8.63 | 8.72 | 8.65 |V |48674.823 | | 1.87970 |06 |F5V |79003 DM | +370077 |AX For |021928.0-304546 |UGSU | 12.5 | 18. | |V | | | | | |80113 80027| NL80_1 +370079 |AZ For *|030527.6-305839 |RR(B) | 12.43 | 13.42 | |V | | | 0.43860 | | |80132 GSC | NL80_1 +379013 |nu. For |020429.4-291749 |ACV | 4.68 | 4.73 | |V |43475.00 | | 1.89 | |B9.5p(Si) |04013 CoD | +380001 |R Gem *|070721.3+224213 |M | 6.0 | 14.0 | |V |43325. | | 369.91 |36 |S2,9e-S8,9e(Tc) |00001 00002| +380002 |S Gem *|074302.6+232658 |M | 8.0 | 14.7 | |V |43578. | | 293.23 |42 |M4e-M8e |00001 00002| +380003 |T Gem *|074918.1+234404 |M | 8.0 | 15.0 | |V |44710. | | 287.79 |50 |S1.5,5e-S9,5e |00001 00002| +380004 |U Gem *|075505.2+220005 |UGSS+E | 8.2 | 14.9 | |V | | |( 105.2 ) | |pec(UG)+M4.5V |09214 01129| +380005 |V Gem *|072309.3+130605 |M | 7.8 | 14.9 | |V |42694. | | 274.8 |45 |M4(S)e-M8 |00001 00002| +380006 |W Gem *|063457.5+151950 |DCEP | 6.54 | 7.38 | |V |42755.191 | | 7.913779 |30 |F5-G1 |08632 08953| +380007 |X Gem |064707.0+301634 |M | 7.5 | 13.8 | |V |43553. | | 264.16 |49 |M5e-M8e(Tc:) |00001 00002| +380008 |Y Gem |074108.5+202544 |SRB | 10.4 | 12.3 | |p | | | 160. : | |M6e-M7 |01505 00100| +380009 |Z Gem |070736.4+223141 |CST | 12.4 | | |p | | | | | | 00967| +380010 |RR Gem *|072133.5+305300 |RRAB | 10.62 | 11.99 | |V |41357.205 | | 0.3973106 |13 |A9-F6 |08652 00101| +380011 |RS Gem |070137.1+303125 |SRB | 9.1 | 12.0 | |V | | | 140. : | |M3-M8 | 00100| +380012 |RT Gem |064634.5+183653 |M | 11. |< 16. | |p |35130. | | 350.4 | |C: |00001 01506| +380013 |RU Gem |072658.9+212607 |EA/DS | 12.1 | 13.2 | |p |34077.15 | | 8.67080 |13 *| |02808 02808| +380014 |RV Gem |071759.8+235520 |M | 11.2 |< 16. | |p |34342. | | 287.6 | | |02535 02535| +380015 |RW Gem *|060128.1+230828 |EA/SD: | 9.53 | 11.76 | 9.74 |V |18302.655 | | 2.8654972 |15 |B5V+F5 |07117 01509| +380016 |RX Gem *|065011.5+331421 |EA/DS | 9.20 | 10.81 | 9.28 |V |40555.782 | | 12.2086588 |09 |A3IIIea+K1: |07096 00102| +380017 |RY Gem *|072724.2+153935 |EA/DS | 8.69 | 11.04 | 8.75 |V |39732.6328 | | 9.300567 |10 |A2Ve+K2IV |09224 00102| +380018 |RZ Gem *|060236.6+221403 |DCEP | 9.49 | 10.46 | |V |42714.970 | | 5.529286 |22 |F5-F9 |08632 01509| +380019 |SS Gem *|060835.1+223702 |RVA | 9.3 | 10.7 |< 10.7 |p |34365. | | 89.31 |19 |F8Ib-G5Ib |01512 00884| +380020 |ST Gem |073911.7+342858 |M | 11.0 | 15.5 | |p |43854. | | 246.23 |47 |M5e-M9e |00001 02535| +380021 |SU Gem *|061400.0+274212 |RVB | 9.8 | 14.1 | |V |40683.3 | | 50.00 | |F5-M3 |08044 00565| +380022 |SV Gem |060041.0+242826 |EA/SD: | 10.55 | 12.0 | |V |18662.488 | | 4.0061216 |15 |B3 |00125 00279| +380023 |SW Gem *|065930.2+260240 |SRA | 8.6 | 10.5 | |V |32360. | | 680. | |M5III |01514 00570| +380024 |SX Gem *|062814.4+203350 |EA/SD: | 11.0 | 11.9 | 11.3 |p |19031.270 | | 1.366877 |13 |A0 |01515 01515| +380026 |SZ Gem |075343.5+191624 |RRAB | 10.98 | 12.25 | |V |27194.027 | | 0.5011365 |12 |A0 |04957 01517| +380028 |TU Gem |061053.1+260053 |SRB | 9.4 | 12.5 | |p | | | 230. | |C6,4(N3) |01505 08953| +380029 |TV Gem |061151.4+215206 |SRC | 8.54 | 9.8 | |B | | | | |K5.5-M1.3Iab | 03654| +380030 |TW Gem |070718.0+223031 |CST: | 8.49 | | |V | | | | |M0III |01505 BD | +380031 |TX Gem *|073600.9+165429 |EA/SD: | 10.0 | 11.3 |( 0.04 )|p |19848.412 | | 2.800014 |11 |A2V+A7V |01518 00279| +380038 |UY Gem |064555.6+125835 |M | 12.2 | 15.3 | |p |33300. | | 325.0 |40 | |00339 00339| +380039 |UZ Gem |071253.7+173917 |M | 11.8 |< 16.2 | |p |35370. | | 349.0 | |M9 |02535 02535| +380040 |VV Gem |062556.0+253224 |M | 12.0 |< 16.2 | |p |35520. | | 252.9 |35 | |02535 02535| +380041 |VW Gem |064208.6+312718 |LB | 8.14 | 8.52 | |V | | | | |C5,4(Na) |00179 BD | +380042 |VX Gem |071249.0+143604 |M | 10.8 |< 15.1 | |p |41280. | | 379.4 | |C7,2e-C9,1e(Nep) |00001 02535| +380045 |WW Gem *|061205.8+233003 |EB/KE | 9.9 | 10.5 | 10.3 |p |25984.257 | | 1.237811 | |B6 |00001 00884| +380046 |WX Gem |064522.9+321843 |CST | 10.8 | | |p | | | | |F2 | BD | +380047 |WY Gem *|061156.3+231225 |LC+E: | 8.89 | 9.8 | |B | | | | |M2epIab+B2V-B3V |01505 08953| +380048 |WZ Gem |071634.1+255944 |M | 9.0 | 15.0 | |V |38048. | | 330.8 |50 |M3e |00001 02535| +380049 |XX Gem |072613.5+332220 |M | 11.9 | 15.5 | |p |37779. | | 384.05 | |M9-M10e |00001 02535| +380050 |XY Gem |075709.3+211910 |M | 11.2 | 15.3 | |p |37731. | | 340.97 |29 |M8: |00001 01523| +380051 |XZ Gem |075703.9+322544 |CST: | 10.0 | 10.2 | |V | | | | |M6 |01524 | +380052 |YY Gem *|073437.4+315210 |EA/DM+UV | 8.91 | 9.60 | |V |24595.8172 | | 0.81428254 |07 *|M1Ve+M1Ve |03200 01525| +380053 |YZ Gem |073342.8+211521 |L: | 10.8 | 11.6 | |p | | | | |A6 |01529 01528| +380054 |ZZ Gem |062401.2+250153 |M | 12.4 | 16.0 | |p |33999. | | 317.0 |49 |C5,3e(Ne) |02535 02535| +380055 |AA Gem *|060634.9+261945 |DCEP | 9.36 | 10.11 | |V |37397.250 | | 11.30235 |47 |F6-G3Ib |01512 01509| +380057 |AC Gem *|063216.8+195023 |EB/DM: | 11.0 | 11.8 | 11.3 |p |38440.354 | | 1.66182414 | |A0 |09228 00228| +380058 |AD Gem |064307.5+205621 |DCEP | 9.45 | 10.23 | |V |41694.911 | | 3.787980 |28 |F5-G2: |08300 00321| +380059 |AE Gem |064736.9+285514 |EA/DS | 10.5 |< 12.3 | |p |35893.28 | | 11.4568 |05 |B8 |00001 00228| +380060 |AF Gem *|065039.6+212156 |EA/SD | 10.54 | 11.83 | 10.67 |V |27162.3095 | | 1.24350348 |20 *|A0 |09229 00228| +380061 |AG Gem |065313.8+352105 |LB | 10.4 | 11.0 | |p | | | | |M6 |00340 00228| +380065 |AL Gem *|065738.6+205333 |EA/D: | 9.80 | 10.39 | 9.85 |V |26324.4467 | | 1.3913385 |14 *|F5V |03660 00228| +380066 |AM Gem |070721.8+281756 |M | 12. |< 16.5 | |p |40915. | | 356.3 | |M10 |00001 02535| +380070 |AQ Gem |062859.9+163554 |LB | 12.1 | 13.1 | |p | | | | |M6.5-M8 |00386 00531| +380073 |AT Gem |064523.1+125150 |SRB | 11.3 | 13.6 | |p | | | 740. | |M6 |00407 01536| +380074 |AU Gem *|074527.5+304641 |M | 12.3 |< 16.5 | |p |35520. | | 424.1 | |M10 |02535 02535| +380075 |AV Gem *|064201.6+132451 |EA/SD | 12.4 | 13.9 | 12.8 : |p |27832.6099 | | 1.2216548 |17 *| |00908 00908| +380077 |AX Gem |063706.8+210704 |LB | 11.6 | 13.8 | |p | | | | |M5 |00134 00134| +380078 |AY Gem *|063156.2+194012 |EA/SD: | 10.8 | 11.9 | 10.9 |p |36631.326 | | 3.0536498 |09 *|A0 |00001 00409| +380079 |AZ Gem *|063433.4+142820 |EB/KE: | 11.8 | 12.4 | 12.4 |p |26000.564 | | 1.006183 | |A-F |01538 00196| +380080 |BB Gem *|063435.3+130445 |DCEP | 10.75 | 11.88 | |V |41839.695 | | 2.308207 |18 | |08300 01538| +380081 |BC Gem |070440.9+095613 |M | 11.7 | 15.5 | |p |34822. | | 229.7 | |M2 |02535 02535| +380082 |BD Gem |063443.1+153454 |EA/SD: | 11.9 | 13.8 | |p |27414.532 | | 1.616727 |14 *|A |05678 00542| +380083 |BE Gem |074436.1+140257 |M | 11.7 |< 16. | |p |34450. | | 410.0 | |M8 |02535 02535| +380087 |BI Gem |060549.7+251442 |LB | 12.4 | 13.7 | |p | | | | |M6 |00612 00533| +380088 |BK Gem |062958.4+133655 |ISB: | 9.8 | 10.1 | |p | | | | |K5III |01251 BD | +380089 |BL Gem |063418.9+142515 |LB | 12.1 | 13.1 | |p | | | | |M6 |01251 01251| +380090 |BM Gem |072059.0+245958 |SRB | 11.5 | 12.1 | |p | | | 286. : | |C5,4J(Nb) |07213 BD | +380091 |BN Gem |073705.7+165415 |GCAS | 6.75 | 6.85 | |V | | | | |O8Vpe |00196 03654| +380092 |BO Gem |062501.3+175813 |EA/SD | 11.3 | 15.1 | |p |37027.269 | | 4.06860 |11 *|A2 |00001 00196| +380093 |BP Gem *|075914.4+203827 |M | 9.5 | 14.8 | |V |43955. | | 246.5 | |M8e |00001 02535| +380094 |BQ Gem |071322.3+160932 |SRB | 6.63 | 7.02 | |B | | | 50. : | |M4IIIab |05429 03654| +380098 |BU Gem |061219.1+225431 |LC | 5.74 | 8.1 | |V | | | | |M1-M2Ia-Iab | 01509| +380100 |BW Gem |061559.9+234451 |DCEP | 12.23 | 12.93 | |V |28183.38 | | 2.63501 |23 | |01542 01542| +380108 |CG Gem |062754.8+203310 |SRA | 12.5 | 14.2 | |p |28088. | | 192. |52 |M6.5-M8 |00911 02337| +380112 |CL Gem |063116.1+181421 |SRA | 11.9 | 13.3 | |p |28202. | | 258. |40 : |M6 |00911 00492| +380118 |CR Gem |063423.9+160430 |LB | 10.9 | 12.10 | |B | | | | |C8,3e(N) |00911 BD | +380119 |CS Gem |063630.8+213753 |SR | 11.5 | 12.5 | |p | | | 96. | |M5 |00911 02342| +380123 |CW Gem |063958.9+215234 |EA/SD | 12.3 | 13.6 | |p |28126.45 | | 1.678148 |12 | |00911 02342| +380124 |CX Gem |064003.8+214919 |EA/SD | 12.0 | 14.2 | |p |28183.42 | | 2.1636985 |16 *| |00001 02342| +380128 |DE Gem |064339.5+225607 |LB | 10.2 | 12.7 | |p | | | | |M6III: |00911 01543| +380130 |DG Gem |064925.1+183744 |EA | 12.5 | 13.4 | |p |27098.37 | | 3.13152 |10 :*| |00911 00409| +380131 |DH Gem |063053.5+122846 |LB | 11.6 | 13.71 | |B | | | | |C4,5J(N2) |00386 00531| +380132 |DI Gem |064138.0+215128 |SRB | 10.8 | 12.0 | |p | | | 88. : | |M5 |01544 BD | +380133 |DK Gem |073110.9+290945 |SRB | 11.8 | 13.4 | |p | | | 124. : | |M1 |01545 01545| +380134 |DL Gem *|073037.0+153426 |SRA | 11.2 | 13.0 | |B |41416. | | 104.3 | | |08664 00346| +380145 |DW Gem |063059.8+272708 |LB | 8.5 : | 11.9 | |p | | | | |M3-M7 |00680 02378| +380146 |DX Gem *|063354.6+142817 |DCEPS | 10.53 | 10.92 | |V |41866.668 | | 3.137486 |50 | |08637 00940| +380147 |DY Gem |063557.8+141246 |SRA | 11.2 | 12.6 | |p |27720. | | 1145. | |S8,5(M5) |00407 02359| +380151 |EG Gem |065751.9+130824 |EA/SD | 12.2 | 13.4 | |p |27344.635 | | 1.273392 |15 *| |00407 00156| +380152 |EH Gem |065927.6+121855 |M | 12.3 | 16.7 | |p |28544. | | 244.4 |51 | |00407 02352| +380159 |EP Gem |063647.5+145402 |SRB | 12.5 | 13.8 | |p | | | 835. | |M6.5 |00407 02346| +380160 |EQ Gem |063719.8+181249 |LB | 11.4 | 12.1 | |p | | | | |M0 |00407 02358| +380170 |FF Gem |064750.2+170629 |SR | 12.2 | 15.4 | |p |28017. | | 393. | |C7,3e(N) |00407 02346| +380171 |FG Gem |064749.6+165148 |EA | 11.6 | 12.6 | |p |27102.40 | | 0.819129 |14 *| |00001 02346| +380172 |FH Gem |064849.5+175123 |LB | 12.5 | 13.1 | |p | | | | |M7 |00407 02358| +380174 |FK Gem |064920.2+121033 |LB | 10.4 | 10.9 | |p | | | | |M6.5 |00407 08953| +380177 |FN Gem |065054.2+142938 |LB | 11.0 | 12.5 | |p | | | | |M2 |03165 02359| +380181 |FR Gem |065652.0+165614 |SRB | 11.9 | 13.5 | |p |28072. | | 133. |40 : |M6 |00407 02346| +380186 |FW Gem |065833.9+313826 |M | 10.4 |< 13. | |p |36836. | | 225.55 | |M0 |03670 02378| +380187 |FX Gem |065812.8+171449 |SRB | 12.2 | 13.4 | |p | | | 117. : | |M6 |00407 02359| +380190 |GG Gem |070240.9+172937 |LB | 11.9 | 13.3 | |p | | | | |M4 |00407 02352| +380191 |GH Gem |070412.8+120334 |ZAND: | 12.4 | 14.6 | |p | | | | |F2: |08656 08656| +380192 |GI Gem |070440.9+132613 |RRAB | 12.39 | 13.46 | |V |30346.638 | | 0.4332653 |09 | |00407 02346| +380194 |GL Gem |070459.5+105105 |LB | 12.4 | 13.1 | |p | | | | |M7 |00407 02346| +380197 |GO Gem |070734.6+170147 |SRB | 11.8 | 12.7 | |p | | | 165. | |M4 |00407 02346| +380201 |GS Gem |062629.6+184124 |SR | 11.3 | 12.4 | |p |33630. | | 148. : | |M7 |00202 01545| +380205 |GW Gem *|075229.0+270916 |EB/SD | 10.48 | 11.45 | 10.68 |V |25645.5798 | | 0.659444013 | |A5 |09230 02378| +380206 |GX Gem *|064609.1+342453 |EB/D: | 10.9 | 11.5 | 11.3 |p |25999.696 | | 1.35003708 | |G5 |01550 01550| +380207 |GY Gem |071723.6+294206 |LB | 11.0 | 11.9 | |p | | | | |M4 |00416 00832| +380210 |HI Gem |071814.4+303809 |E | 12.0 | 13.1 | |p |39827.538 | | | |G-K |02808 02808| +380211 |HK Gem |071940.9+294212 |LB: | 11.9 | 14.2 | |p | | | | | |02808 02808| +380218 |HR Gem *|061213.3+244243 |EA/SD | 11.4 | 12.5 | 11.7 |p |30319.688 | | 1.068963 |15 *| |07010 04065| +380224 |HX Gem |063139.7+160652 |LB: | 12.5 | 14. : | |p | | | | |C4,4(N) |04101 04101| +380228 |IK Gem |063740.6+273624 |SRB | 11.2 | 13.0 | |p | | | 150. : | |M4 |04103 04103| +380234 |IQ Gem |064523.6+182935 |LB | 12.5 | 13.5 | |p | | | | | |04111 04101| +380235 |IR Gem *|064734.5+280624 |UGSU | 10.7 |< 14.5 | |V | | |( 75. ) | |pec(UG) |09231 08852| +380236 |IS Gem |064941.3+323624 |SRC | 6.6 | 7.3 | |p | | | 47. : | |K3II |04113 04113| +380237 |IT Gem |065102.3+160522 |M | 11.5 | 14.5 | |p | | | | |C(R) |04101 04102| +380238 |IU Gem |065730.9+200206 |SR: | 12. | 14.5 | |p | | | | | |04101 04102| +380239 |IV Gem |071739.9+305437 |RR | 12.2 | 13.1 | |p | | | | | |02807 02807| +380255 |KV Gem *|064712.6+154334 |RRC: | 12.4 | 12.9 | |p |31028.619 | | 0.2185467 |40 | |03183 02352| +380263 |LO Gem |060411.7+252000 |E | 11.5 | 12.0 | |p |38397.27 | | | | |06953 05515| +380264 |LP Gem |060505.1+264053 |EA/SD | 12.5 | 15.0 | |p |27046.66 | | 6.63126 |10 *| |06953 05515| +380266 |LR Gem |061515.4+221804 |BCEP | 9.01 | 9.12 | |B | | | 0.23887 | |B0IV |05522 BD | +380268 |LT Gem |061825.6+233417 |E | 9.35 | 9.51 | |B | | | 0.6258 | |B1V |08665 BD | +380269 |LU Gem |061919.3+232810 |BCEP | 7.21 | 7.24 | |B | | | 0.21909 | |B0II |05522 BD | +380270 |LV Gem |063354.1+155507 |LB: | 11.8 | 16.5 : | |p | | | | |C(N:) |07010 05515| +380291 |NP Gem |070225.5+174520 |LB: | 5.89 | 6.04 | |V | | | | |M1.5 |05841 BD | +380292 |NQ Gem *|073154.5+243013 |SR+ZAND | 7.4 | 7.99 | |V | | | 70. : | |C6,2(R9)eV |08460 BD | +380296 |NU Gem |060208.7+273131 |LB: | 12.5 |< 14. | |p | | | | |C4,4(R) |00608 00608| +380298 |NW Gem |063006.6+232843 |LB | 10.6 | 11.2 | |p | | | | | |07010 04065| +380299 |NX Gem |063054.6+232729 |LB | 11.6 | 12.3 | |p | | | | | |07010 04065| +380300 |NY Gem *|063917.8+223618 |SRB | 12.5 |< 15.5 | |p | | | 200. : | |C4-5,4(N) |08670 04101| +380301 |NZ Gem |074203.2+141231 |SR | 5.52 | 5.72 | |V | | | | |M3II-IIIS |06994 BD | +380302 |OO Gem |061147.9+221021 |LB | 11.0 | 11.8 | |R | | | | |M |08199 03903| +380306 |OS Gem *|075255.7+274448 |DSCTC | 9.53 |( 0.035 )| |B | | | 0.0553 | |A7 |09234 BD | +380307 |OT Gem |072427.6+153102 |GCAS | 6.0 | 6.44 | |V | | | | |B2III-Ve |04039 09235| +380308 |OU Gem |062610.3+184525 |BY | 6.76 |( 0.05 )| |V | | | | | |67436 BD | +380309 |OV Gem |064949.8+161210 |SXARI | 5.85 |( 0.10 )| |V | | | | | |68125 BD | +380310 |OW Gem |063141.8+170456 |EA/GS: | 9.0 | 10.9 | |B | | | | | |69150 69149| +380311 |OX Gem |060847.8+253844 |L | 8.1 | 9.1 | |p | | | | | |70057 70057| +380312 |OY Gem |065830.4+161926 |BE | 11.09 | 11.29 | |V | | | | | |70058 70058| +380313 |OZ Gem |073357.8+303038 |M | 0.5 | 1.9 | |L | | | | | |71002 2MASS| +380314 |PP Gem |065633.4+141855 |SR | 11.1 | 12.2 | |p | | | | | |72022 72090| +380317 |PS Gem |070339.6+104613 |SRD | 7.24 | 7.58 | |V | | | | | |73164 BD | +380319 |PU Gem |060944.0+230649 |ACYG | 5.78 | 5.82 | |Hp| | | | | |HIP HIP | +380320 |PV Gem |061408.9+235911 |DSCTC | 7.58 | 7.64 | |Hp| | | | | |HIP HIP | +380321 |PW Gem |061600.1+234700 |EA: | 9.14 | 9.49 | |Hp| | | | | |HIP HIP | +380322 |PX Gem |061658.7+234427 |ACYG | 6.33 | 6.38 | |Hp| | | | | |HIP HIP | +380323 |PY Gem |062403.9+252501 |BE | 8.40 | 8.53 | |Hp| | | | | |HIP HIP | +380324 |PZ Gem |062715.8+145321 |BE: | 6.60 | 6.65 | |Hp| | | | | |HIP HIP | +380325 |QQ Gem |063305.6+165656 |E: | 7.62 | 7.74 | |Hp| | | | | |HIP HIP | +380326 |QR Gem |064100.0+251925 |LB | 7.58 | 7.73 | |Hp| | | | | |HIP HIP | +380327 |QS Gem |064628.7+205037 |DSCT | 8.86 | 8.97 | |Hp| | | | | |HIP HIP | +380328 |QT Gem |064816.5+143533 |EB | 7.66 | 8.06 | |Hp| | | | | |HIP HIP | +380329 |QU Gem |064943.3+252904 |LB: | 6.88 | 7.06 | |Hp| | | | | |HIP HIP | +380330 |QV Gem |065002.2+120329 |LB: | 6.83 | 6.92 | |Hp| | | | | |HIP HIP | +380331 |QW Gem |065046.1+292711 |EW | 10.34 | 10.73 | |Hp| | | | | |HIP HIP | +380332 |QX Gem |065413.6+330009 |LPB: | 8.16 | 8.22 | |Hp| | | | | |HIP HIP | +380333 |QY Gem |065742.9+175407 |E: | 7.08 | 7.20 | |Hp| | | | | |HIP HIP | +380334 |QZ Gem |065838.5+172805 |SRB | 8.49 | 8.63 | |Hp| | | | | |HIP HIP | +380335 |V0335 Gem |070205.5+214753 |EA | 7.90 | 8.05 | |Hp| | | | | |HIP HIP | +380336 |V0336 Gem |070239.1+312024 |SRB | 7.84 | 8.04 | |Hp| | | | | |HIP HIP | +380337 |V0337 Gem |070238.3+134659 |EA: | 8.52 | 8.89 | |Hp| | | | | |HIP HIP | +380338 |V0338 Gem |071115.4+243950 |LB: | 7.95 | 8.06 | |Hp| | | | | |HIP HIP | +380339 |V0339 Gem |071851.5+290603 |E: | 8.94 | 9.31 | |Hp| | | | | |HIP HIP | +380340 |V0340 Gem |072132.8+260933 |BY: | 7.62 | 7.86 | |Hp| | | | | |HIP HIP | +380341 |V0341 Gem |072618.3+255716 |LB | 8.24 | 8.42 | |Hp| | | | | |HIP HIP | +380342 |V0342 Gem |072930.9+350950 |LB: | 7.31 | 7.38 | |Hp| | | | | |HIP HIP | +380343 |V0343 Gem |072918.2+224719 |SRB | 7.61 | 7.86 | |Hp| | | | | |HIP HIP | +380344 |V0344 Gem |073419.6+144511 |DSCTC | 8.07 | 8.10 | |Hp| | | | | |HIP HIP | +380345 |V0345 Gem *|073830.2+334242 |DSCTC: | 7.82 | 7.88 | |Hp| | | | | |HIP HIP | +380346 |V0346 Gem |074105.8+165224 |SRD: | 8.37 | 8.51 | |Hp| | | | | |HIP HIP | +380347 |V0347 Gem |074409.7+141024 |LB: | 7.28 | 7.39 | |Hp| | | | | |HIP HIP | +380348 |V0348 Gem |074444.9+322046 |E: | 8.50 | 8.58 | |Hp| | | | | |HIP HIP | +380349 |V0349 Gem |062035.9+234632 |M: | 12.2 | 15.2 | |p | | | | | |75064 75064| +380350 |V0350 Gem |063412.2+141635 |M | 11.7 | 14.4 | |p | | | | | |75064 75064| +380351 |V0351 Gem |064304.3+150344 |M | 10.6 | 14.2 | |p | | | | | |75021 75021| +380352 |V0352 Gem |071836.1+153509 |M | 10.7 | 14.5 | |p | | | | | |75002 GSC | +380354 |V0354 Gem |060500.9+274555 |SR: | 10.9 | 12.3 | |V | | | | | |76012 UCAC2| +380355 |V0355 Gem |070036.5+260818 |M | 10.5 |< 15.0 | |V | | | | | |76054 GSC | +380356 |V0356 Gem |071426.6+244240 |ACV | 6.89 |( 0.04 u )| |V | | | | | |76069 DM | +380357 |V0357 Gem |072428.4+143407 |SR: | 11.7 | 12.7 | |V | | | | | |76012 GSC | +380358 |V0358 Gem |072747.6+181437 |SR: | 11.5 | 12.8 | |V | | | | | |76012 USNO | +380360 |V0360 Gem |074204.1+152033 |SR: | 11.0 | 12.1 | |V | | | | | |76012 76079| +380361 |V0361 Gem |074246.4+230946 |SR: | 12.0 | 12.6 | |V | | | | | |76012 GSC | +380362 |V0362 Gem |075323.8+142811 |SR: | 10.4 | 11.2 | |V | | | | | |76012 GSC | +380363 |V0363 Gem |075658.0+314853 |SR: | 11.2 | 12.3 | |V | | | | | |76012 GSC | +380364 |V0364 Gem |080137.5+290039 |SR: | 10.9 | 11.5 | |V | | | | | |76012 GSC | +380365 |V0365 Gem |080433.6+280555 |SR: | 12.4 | 13.6 | |V | | | | | |76012 GSC | +380366 |V0366 Gem |063856.4+252939 |SR: | 11.3 | 13.2 | |V | | | | | |77004 GSC | +380367 |V0367 Gem |064643.6+205322 |EA | 11.20 | 11.82 | |V | | | | | |77057 77057| +380368 |V0368 Gem |064747.2+163633 |M | 10.6 | 13.2 | |I | | | | | |77012 77013| +380369 |V0369 Gem |070223.3+255046 |RS | 7.95 | 8.12 | |V | | | | | |77060 DM | +380370 |V0370 Gem |072936.8+163802 |LB | 12.2 | 12.6 | |* | | | | | |77125 GSC | +380371 |V0371 Gem *|061019.4+240115 |DCEP | 10.5 | 11.6 | |V |52234.46 | | 2.1371 |40 |K0 |78082 78083| +380372 |V0372 Gem *|065055.8+222922 |EB | 12.5 |( 0.50 )|( 0.22 )|V |52327.425 | | 0.56914 | | |78092 GSC | +380373 |V0373 Gem *|071155.3+232456 |EB | 9.26 | 9.42 | 9.39 |V |53343.769 | | 1.60498 | |F8 |78011 DM | +380374 |V0374 Gem |071508.0+213523 |M | 12.3 |< 14. | |V | | | 300. : | |S |78098 78098| +380376 |V0376 Gem |072901.8+315938 |BY | 7.73 |( 0.03 )| |V | | | 11.63 | |K2V |78018 DM | +380377 |V0377 Gem |074955.1+272148 |BY | 6.93 |( 0.05 )| |V | | | 6.46 | |G5IV |78005 DM | +380378 |V0378 Gem |060817.5+224229 |SR | 11.8 | 12.5 | |V | | | 150. | |C |79100 GSC | +380379 |V0379 Gem |060845.0+255118 |SRB | 11.3 | 12.4 | |V | | | 149. | | |79100 79008| +380381 |V0381 Gem |063400.0+151703 |SR | 12.3 | 13.5 | |V | | | 107. | | |79064 79054| +380382 |V0382 Gem |064414.5+162404 |EA | 10.22 | 10.57 | 10.55 |* |53070.563 | | 1.446303 |11 |F8 |79004 DM | +380385 |V0385 Gem |065937.6+164039 |SRB | 12.0 | 13.4 | |V | | | 242. | | |79064 79059| +380386 |V0386 Gem |070249.6+172027 |EA | 12.24 | 14.5 : | 12.35 |* |53465.450 | | 3.30831 |06 : | |79003 79054| +380388 |V0388 Gem |071214.8+182350 |EB | 12.33 | 13.6 | 12.58 |* |51548.725 | | 0.605946 | | |79003 79057| +380389 |V0389 Gem |072103.3+254008 |EA | 8.74 | 8.92 | 8.78 |V |48536.929 | | 1.04776 |13 |A2 |79006 DM | +380390 |V0390 Gem |074703.1+145323 |EA | 11.32 | 11.95 | 11.83 : |* |52971.806 | | 2.14948 |08 |F0 |79006 79050| +380391 |V0391 Gem |060358.4+222834 |BY | 11.4 | 11.8 | |V | | | 0.3188 | |K0III |80021 GSC | NL80_2 +380395 |V0395 Gem |061634.0+251741 |SR: | 11.8 | 12.0 | |* | | | 104. | | |80001 GSC | NL80_2 +380396 |V0396 Gem *|062000.7+262059 |EA | 10.06 | 10.37 | 10.37 : |V |51465.85 | | 5.4966 |04 |A2 |80013 DM | NL80_2 +380397 |V0397 Gem |062244.3+183153 |RRC | 12.1 | 12.7 | |V |52649.710 | | 0.286692 |30 | |80001 GSC | NL80_2 +380398 |V0398 Gem |062403.1+225336 |BY | 10.24 | 10.36 | |V | | | 0.7696 | | |80021 DM | NL80_2 +380399 |V0399 Gem *|063018.0+254343 |EA | 10.39 | 11.09 | 10.44 |V |54372.884 | | 2.04642 |08 |A0 |80011 DM | NL80_2 +380400 |V0400 Gem *|063736.0+174733 |EA | 11.32 | 12.12 | 11.90 |V |51627.72 | | 11.3053 |03 : |A0 |80013 GSC | NL80_2 +380401 |V0401 Gem *|064016.1+202844 |EA | 12.45 | 13.4 | 12.55 |V |53715.792 | | 2.19763 |11 | |80011 USNO | NL80_2 +380402 |V0402 Gem *|064217.4+201648 |EW | 11.72 | 12.35 | 12.35 |V |51612.703 | | 0.399248 | | |80011 GSC | NL80_2 +380403 |V0403 Gem *|064401.1+224432 |DSCT | 12.3 | 12.7 | |V | | | 0.1177 | | |80259 GSC | NL80_2 +380404 |V0404 Gem *|064702.8+153723 |EW | 12.4 | 13.0 | 12.9 |V |53407.4513 | | 0.3487050 | | |80260 80260| NL80_2 +380405 |V0405 Gem *|064707.9+153837 |EW | 10.88 | 11.03 | 10.97 |V |54507.4007 | | 0.4621114 | | |80261 GSC | NL80_2 +380406 |V0406 Gem |064715.6+143439 |RS | 10.9 | 11.2 | |V | | | 11.217 | | |80002 80246| NL80_2 +380407 |V0407 Gem |064838.7+162447 |RS: | 11.9 | 12.1 | |* | | | 3.889 | | |80043 80043| NL80_2 +380408 |V0408 Gem |065007.3+163025 |EA | 11.53 | 11.90 | |V |53462.58 | | 38.044 |03 | |80011 GSC | NL80_2 +380410 |V0410 Gem *|065408.1+170203 |EA | 10.77 | 11.20 | 11.06 |V |51548.730 | | 3.47041 |05 |A5 |80042 DM | NL80_2 +380414 |V0414 Gem *|065454.3+181250 |EB | 10.61 | 10.83 | 10.71 |V |53483.487 | | 1.47597 | |A2 |80011 DM | NL80_2 +380415 |V0415 Gem *|065557.5+153533 |EW | 12.4 | 12.9 | 12.8 |V |53381.5558 | | 0.350606 | | |80252 GSC | NL80_2 +380417 |V0417 Gem |065948.4+274159 |EW: | 9.80 | 9.92 | |V |53007.73 | | 0.39331 | |G5 |80001 DM | NL80_2 +380419 |V0419 Gem |070548.0+153833 |SRB | 12.3 | 13.3 | |V | | | 220. | | |80001 GSC | NL80_2 +380420 |V0420 Gem |070818.6+310508 |BY | 11.14 |( 0.08 *)| |V | | | 1.1200 | | |80021 GSC | NL80_2 +380422 |V0422 Gem *|071241.7+160505 |EA | 8.15 | 8.31 | 8.28 |V |53783.665 | | 7.5424 |06 |F2V |80011 DM | NL80_2 +380423 |V0423 Gem |071341.1+273104 |BY | 11.21 | 11.30 | |V | | | 4.2860 | | |80021 GSC | NL80_2 +380424 |V0424 Gem |071650.5+214500 |RS | 9.8 | 10.2 | |V | | | 40.35 | | |80034 GSC | NL80_2 +380426 |V0426 Gem |071925.5+225800 |RRAB | 12.4 | 13.2 | |V |51612.68 | | 0.52311 |12 | |80026 GSC | NL80_2 +380428 |V0428 Gem *|072325.7+260732 |EB | 10.93 | 11.33 | 11.07 |V |51515.678 | | 0.491507 | |K |80042 GSC | NL80_2 +380429 |V0429 Gem |072343.6+202459 |BY | 9.86 | 10.08 | |V | | | 2.799277 | |K5Ve |80002 GSC | NL80_2 +380436 |V0436 Gem |075624.6+314144 |GDOR | 7.89 |( 0.06 )| |B | | | 0.7248 | |F2IV-V |80289 HIP | NL80_2 +389006 |zet Gem *|070406.5+203413 |DCEP | 3.62 | 4.18 | |V |43805.927 | | 10.15073 |50 |F7Ib-G3Ib |00001 06225| +389007 |eta Gem *|061452.7+223025 |SRA+EA | 3.15 | 3.9 | |V |37725. | | 232.9 |50 |M3IIIab |04513 06225| +389012 |mu. Gem *|062257.6+223049 |LB | 2.75 | 3.02 | |V | | | | |M3.0IIIab |06590 BD | +389018 |sig Gem *|074318.7+285301 |RS | 4.13 | 4.29 | |V |44677.1 | | 19.423 | |K1III |09239 BD | +389024 |ome Gem |070224.8+241256 |CEP: | 5.14 |( 0.086 )| |V | | | 0.7282 | |G5II |07964 BD | +390001 |R Gru |214831.8-465450 |M | 7.4 | 14.9 | |V |40957. | | 331.96 |42 |M5e-M7II-IIIe |00001 00002| +390002 |S Gru |222605.5-482619 |M | 6.0 | 15.0 | |V |40608. | | 401.51 |43 |M5e-M8IIIe |00001 00002| +390003 |T Gru |222540.9-373409 |M | 7.8 | 12.3 | |p |42072. | | 136.49 |48 |M1Iae-M2Ibe |00001 00002| +390004 |U Gru *|213148.8-450242 |EA/SD | 11.0 | 14.0 |( 0.05 )|p |11202.754 | | 1.88048 |15 |A5 |01699 08588| +390005 |V Gru |215153.5-422224 |EW/KW | 9.5 | 9.8 | |p |44463.8040 | | 0.4834455 | |F2V |00001 CoD | +390006 |W Gru *|224118.7-435029 |EA/AR | 9.4 | 10.0 | 10.0 |p |30132.149 | | 2.9685036 |11 |F6IV+F6IV |09218 08953| +390007 |X Gru *|231942.4-553642 |EA/SD | 10.64 | 14.33 | 10.69 |V |41858.8235 | | 2.1236413 |16 |A0 |08682 CoD | +390008 |Y Gru |224720.1-475458 |EA/SD | 10.4 | 12.1 | |p |27987.535 | | 1.716897 |12 *| |09219 03674| +390009 |Z Gru *|213437.1-490729 |RR | 11.80 | 12.61 | |V |39773.362 | | 0.266387 |25 |F0-F7: |05233 02384| +390010 |RR Gru |213803.6-444112 |RRAB | 12.0 | 12.7 | |V |34385.582 | | 0.552532 |18 | |00080 02384| +390011 |RS Gru *|214304.2-481122 |DSCT | 7.92 | 8.51 | |V |34325.2931 | | 0.14701131 |24 |A6-A9IV-F0 |09220 08953| +390012 |RT Gru *|215158.4-455907 |RRAB | 12.15 | 13.20 | |V |41151.555 | | 0.5121749 |20 |F0:-F6 |05233 02384| +390013 |RU Gru |222700.6-371118 |EA | 11.00 | 11.4 | |V |34546.648 | | 1.89664 |12 |A0 |00080 CoD | +390014 |RV Gru *|223924.4-465232 |EW/KW | 11.00 | 11.4 | 11.4 |V |34356.434 | | 0.2595186 | | |00080 CoD | +390015 |RW Gru *|224207.0-440912 |RRAB | 11.76 | 12.85 | |V |34360.388 | | 0.550306 |15 |F3-F5 |05233 02384| +390016 |RX Gru *|225816.7-414934 |EB/KE | 10.5 | 10.8 | 10.7 |V |34357.410 | | 0.743128 | | |00080 CoD | +390017 |RY Gru *|231925.6-401726 |EA/SD: | 11.7 | 12.3 | |V |34275.281 | | 2.01063 |14 | |00080 CoD | +390018 |RZ Gru *|224712.0-424439 |NL | 11.5 | 13.0 | |p | | | | |e+cont |09222 09222| +390019 |SS Gru |212806.3-370936 |RRAB | 11.8 | 13.2 | |V |28336.628 | | 0.4896194 |14 | |04183 02386| +390022 |SV Gru |215849.4-441930 |EA/SD: | 12.5 | 14.5 | |p | | | | | |06561 06561| +390024 |SX Gru |220421.4-452505 |RR | 12.5 | 13.5 | |p | | | | | |04001 04001| +390041 |VW Gru *|222903.2-432901 |M | 12.4 |< 16.5 | |p |36720. :| | | | |08685 04001| +390051 |XZ Gru |224734.7-390333 |RRC | 10.4 | 10.7 | |p |38260.438 | | 0.34741 |50 | |04383 CoD | +390052 |YY Gru |224846.6-505928 |EB: | 12.4 | 13.2 | |p |36729.561 | | | | |08685 04001| +390055 |AA Gru |224955.7-462129 |RR: | 12.5 | 13.1 | |p |36814.249 | | | | |08685 04001| +390059 |AE Gru |225551.7-404017 |SR | 11.5 | 14. | |p | | | | |Ce |06561 06561| +390060 |AF Gru |225629.2-472147 |E: | 11.9 | 12.4 | |p | | | | | |08685 04001| +390064 |AK Gru *|230501.9-435609 |EA | 11.0 | 11.5 | |p |36732.607 | | 0.49389 |20 | |08685 04001| +390068 |AO Gru |230810.8-482208 |RRAB | 12.5 | 13.8 | |p |36813.276 | | 0.5725 |15 | |08685 04001| +390069 |AP Gru *|231412.5-503911 |RRAB | 12.4 | 13.5 | |p |27992.643 | | 0.5079836 | | |04183 02385| +390070 |AQ Gru |232218.0-420524 |RR | 12. | 13. | |p | | | | | |06561 06561| +390071 |AR Gru *|223641.7-381809 |EB | 10. | 10.6 | 10.6 |p |27994.600 | | 2.296720 | | |05557 05557| +390072 |AS Gru |230038.9-413052 |SRB | 9.67 | 9.90 | |V | | | 24. : | |M3III |05973 CoD | +390073 |AT Gru |214238.3-413934 |SR: | 12.5 | 13.5 | |p | | | | | |06561 06561| +390076 |AW Gru *|221908.8-480206 |E: | 10.5 | 11.0 | |p |36758. | | 120. :/N| |M4III |08685 04001| +390077 |AX Gru |225001.0-551403 |LB: | 7.0 |( 0.16 )| |V | | | | |M3III |04456 CoD | +390078 |AY Gru |230345.3-495738 |L: | 10.8 | 11.6 | |p | | | | | |00085 CoD | +390081 |BC Gru *|224449.1-481013 |EW:/KW: | 9.9 | 10.3 | 10.3 |p |36814.292 | | 0.26617 | | |08685 04001| +390084 |BF Gru |225652.3-484823 |E: | 11.2 | 11.8 | |p |36731.569 | | 55.8 : | | |08685 04001| +390088 |BK Gru |222437.6-390737 |ACV | 6.82 | 6.89 | |V | | | 2.48 | |A3p(Sr) |08375 CoD | +390092 |BO Gru |230658.6-435439 |E | 12.1 | 12.6 | |p |36814.340 | | | | |08685 04001| +390093 |BP Gru |230146.8-445027 |ACVO | 7.6 |( 0.004 )| |B | | | | | |67440 CoD | +390103 |BZ Gru |215702.1-374449 |DSCTC | 6.13 | 6.21 | |V | | | | | |68079 CoD | +390104 |CC Gru |223908.4-524131 |DSCTC | 6.62 | 6.68 | |V | | | | | |68079 CPD | +390105 |CD Gru |222610.7-451412 |M: | 2.48 | 2.86 | |K | | | | | |69152 USNO | +390111 |CK Gru |232406.8-450458 |M | 2.83 | 4.51 | |J | | | | | |73014 GSC | +390112 |CL Gru |212913.9-412457 |SRB | 8.61 | 8.82 | |Hp| | | | | |HIP HIP | +390113 |CM Gru |213609.9-475719 |SRB | 8.55 | 8.86 | |Hp| | | | | |HIP HIP | +390114 |CN Gru |214935.7-364149 |LB | 8.00 | 8.16 | |Hp| | | | | |HIP HIP | +390115 |CO Gru |215422.2-411558 |SRB | 7.70 | 8.17 | |Hp| | | | | |HIP HIP | +390116 |CP Gru |215837.8-454436 |EA | 7.73 | 8.09 | |Hp| | | | | |HIP HIP | +390117 |CQ Gru |221202.3-430805 |LB: | 8.45 | 8.55 | |Hp| | | | | |HIP HIP | +390118 |CR Gru |221256.2-555642 |LB | 7.20 | 7.32 | |Hp| | | | | |HIP HIP | +390119 |CS Gru |221535.2-390051 |BY: | 9.45 | 9.56 | |Hp| | | | | |HIP HIP | +390120 |CT Gru |222546.2-494933 |LB | 7.77 | 8.16 | |Hp| | | | | |HIP HIP | +390121 |CU Gru |223133.3-532257 |LB: | 8.17 | 8.30 | |Hp| | | | | |HIP HIP | +390122 |CV Gru |223158.4-433253 |LB: | 7.35 | 7.46 | |Hp| | | | | |HIP HIP | +390123 |CW Gru |223639.0-481822 |SRB | 6.65 | 6.76 | |Hp| | | | | |HIP HIP | +390124 |CX Gru |223747.7-395126 |ELL: | 6.66 | 6.71 | |Hp| | | | | |HIP HIP | +390125 |CY Gru |223827.9-365342 |LB | 8.99 | 9.41 | |Hp| | | | | |HIP HIP | +390126 |CZ Gru |223928.2-504053 |SRB | 7.74 | 7.93 | |Hp| | | | | |HIP HIP | +390127 |DD Gru |224103.0-512732 |LB | 7.99 | 8.16 | |Hp| | | | | |HIP HIP | +390128 |DE Gru |224330.2-400744 |LB | 7.38 | 7.58 | |Hp| | | | | |HIP HIP | +390129 |DF Gru |225832.0-421717 |EA | 10.35 | 10.78 | |Hp| | | | | |HIP HIP | +390130 |DG Gru |230130.7-543013 |BY: | 12.21 | 12.73 | |Hp| | | | | |HIP HIP | +390131 |DH Gru |230451.5-495926 |BY: | 11.71 | 12.07 | |Hp| | | | | |HIP HIP | +390132 |DI Gru |230648.0-384739 |E: | 8.78 | 8.85 | |Hp| | | | | |HIP HIP | +390133 |DK Gru |230750.3-560836 |SRB: | 7.87 | 7.98 | |Hp| | | | | |HIP HIP | +390134 |DL Gru |231009.7-403530 |LB | 5.86 | 5.98 | |Hp| | | | | |HIP HIP | +390135 |DM Gru |231431.6-535729 |BY: | 11.06 | 11.27 | |Hp| | | | | |HIP HIP | +390136 |DN Gru |231656.7-515144 |LB: | 8.32 | 8.42 | |Hp| | | | | |HIP HIP | +390137 |DO Gru |232231.3-473113 |LB: | 8.32 | 8.47 | |Hp| | | | | |HIP HIP | +390138 |DP Gru |232540.6-425359 |EA | 8.31 | 8.63 | |Hp| | | | | |HIP HIP | +390139 |DQ Gru |232354.5-534831 |DSCTC: | 6.18 | 6.25 | |Hp| | | | | |76247 DM | +390140 |DR Gru |223418.7-541753 |DSCTC | 7.44 | 7.51 | |Hp| | | 0.0666 | |A3IV |78037 DM | +390141 |DS Gru |224311.6-413159 |M | 9.6 | 15.0 | |V |52476 | | 259.7 | |Me |78090 GSC | +390142 |DT Gru |212818.1-440917 |EA | 10.91 | 11.34 | 11.00 |V |52831.720 | | 0.801683 |15 | |79018 DM | +390143 |DU Gru |220301.0-392124 |EB | 11.79 | 12.42 | 12.24 |V |52996.535 | | 0.601954 | | |79018 DM | +390144 |DV Gru *|221238.5-541727 |EA | 7.73 | 7.85 | 7.74 |V |48398.245 | | 4.818025 |05 |F8V |79001 DM | +390145 |DW Gru *|223238.0-474247 |EA | 11.25 | 11.65 : | 11.6 : |V |53298.633 | | 7.3334 |02 : | |79003 79063| +390146 |DX Gru |223259.2-444845 |SRB | 11.0 | 12.3 | |V | | | 128. | | |79064 DM | +390147 |DY Gru |232314.3-373056 |EW | 9.37 | 10.04 | 10.02 |V |52992.612 | | 0.336029 | |K1V |79018 DM | +390151 |EG Gru |214619.4-425049 |RRAB | 12.35 | 13.5 | |V |52982.579 | | 0.615420 |12 | |80135 GSC | NL80_3 +390152 |EH Gru |214730.6-371551 |EW | 11.85 | 12.55 | 12.55 : |V |52177.531 | | 0.421347 | | |80365 80365| NL80_3 +390153 |EI Gru |215616.9-400827 |RS | 11.6 | 12.0 | |V | | | 2.7388 | | |80034 DM | NL80_3 +390154 |EK Gru |222007.5-483738 |BY | 9.90 | 10.13 | |V | | | 2.901 | |G4V |80034 DM | NL80_3 +390155 |EL Gru |222326.1-471009 |EB | 12.35 | 12.9 | 12.7 |V |52566.652 | | 0.78391 | | |80365 80365| NL80_3 +390156 |EM Gru |225658.6-451320 |BY: | 9.9 | 10.2 | |V | | | 9.590 | |K0III |80034 DM | NL80_3 +390157 |EN Gru *|231523.7-501828 |EW | 11.48 | 11.91 | 11.90 |V |51868.152 | | 0.418344 | | |80036 DM | NL80_3 +390158 |EO Gru |231733.4-524810 |BY | 11.2 | 11.7 | |V | | | 11.223 | | |80034 DM | NL80_3 +399002 |bet Gru |224240.0-465305 |LC: | 2.0 | 2.3 | |V | | | | |M3-5II-III |03712 03674| +3990042|del 2 Gru |222945.4-434457 |LB: | 3.99 | 4.20 | |V | | | | |M4.5IIIa |05945 CoD | +3990161|pi. 1 Gru *|222244.2-455653 |SRB | 5.41 | 6.70 | |V | | | 150. : | |S5,7e |09225 08953| +400001 |R Her |160611.7+182213 |M | 8.2 | 15.0 | |V |45058. | | 318.14 |39 |M6e |00001 00002| +400002 |S Her |165153.9+145631 |M | 6.4 | 13.8 | |V |45054. | | 307.28 |47 |M4,Se-M7.5,Se |00001 00002| +400003 |T Her *|180906.2+310116 |M | 6.8 | 13.7 | |V |45306. | | 164.98 |47 |M2.5e-M8e |00001 00002| +400004 |U Her *|162547.5+185333 |M | 6.4 | 13.4 | |V |44994. | | 406.10 |40 |M6.5e-M9.5e |00001 00002| +400005 |V Her |165806.7+350304 |CST | 10.9 | | |V | | | | | | BD | +400006 |W Her *|163512.3+372043 |M | 7.6 | 14.4 | |V |45059. | | 280.03 |45 |M3e-M5e |00001 00002| +400007 |X Her *|160239.2+471425 |SRB | 7.5 | 8.6 | |p | | | 95.0 | |M6e |01466 00002| +400008 |Y Her |163651.6+070626 |CST: | 7.3 | | |p | | | | |B9 | 03384| +400009 |Z Her *|175807.0+150822 |EA/AR/RS | 7.30 | 8.18 | 8.18 |V |13086.3345 | | 3.9928077 |11 *|F4IV-V |08623 00097| +400010 |RR Her |160413.4+502957 |SRB | 8.8 | 13.5 | |B | | | 239.7 | |C5,7e-C8,1e(N0e) |01466 00097| +400011 |RS Her |172142.4+225516 |M | 7.0 | 13.0 | |V |45194. | | 219.70 |47 |M4e-M8: |00001 00002| +400012 |RT Her |171048.0+270359 |M | 8.5 | 15.5 | |V |45104. | | 298.08 |40 |M4e |00001 00002| +400013 |RU Her *|161014.5+250414 |M | 6.8 | 14.3 | |V |44899. | | 484.83 |43 |M6e-M9 |00001 00002| +400014 |RV Her |170033.3+311324 |M | 9.0 | 15.5 | |V |45143. | | 205.23 |44 |M2e |00001 00002| +400016 |RX Her *|183039.3+123640 |EA/DM | 7.28 | 7.87 | 7.74 |V |33170.398 | | 1.7785724 |13 |A0V+A0V |00001 00097| +400017 |RY Her |175944.8+192854 |M | 8.3 | 14.1 | |V |45211. | | 221.47 |44 |M4e-M6e |00001 00002| +400018 |RZ Her |183647.0+260257 |M | 9.0 | 15.5 | |V |45143. | | 329.05 |44 |M5e-M6e |00001 00002| +400019 |SS Her |163255.5+065130 |M | 8.5 | 13.5 | |V |45209. | | 107.36 |48 |M0e-M5e |00001 00002| +400020 |ST Her |155046.6+482859 |SRB | 8.8 | 10.3 | |p | | | 148.0 | |M6-7IIIaS |01466 00097| +400021 |SU Her |174901.7+223223 |M | 10.5 | 13. | |p |34961. | | 333.8 | |M6e |02538 00101| +400022 |SV Her |182623.1+250133 |M | 9.1 | 15.1 | |V |45143. | | 238.99 |46 |M5e |00001 00002| +400024 |SX Her *|160727.3+245430 |SRD | 8.6 | 10.9 | |p |34218. | | 102.90 |46 |G3ep-K0(M3) |00001 00002| +400025 |SY Her *|170129.3+222839 |M | 8.4 | 14.0 | |p |45248. | | 116.91 |49 |M1e-M6e |00001 00002| +400026 |SZ Her *|173936.8+325647 |EA/SD | 9.86 | 11.87 | 10.10 |V |41864.30517 | | 0.81809828 |18 |F0V |08593 01738| +400027 |TT Her *|165423.0+165013 |EB/KE | 9.61 | 10.34 | 9.89 |V |39995.908 | | 0.91207546 | |A7V-F2V |00001 00110| +400028 |TU Her *|171335.4+304236 |EA/SD | 10.88 | 13.7 | |V |44061.462 | | 2.2670005 |14 |F5 |00001 09240| +400029 |TV Her |181440.5+314910 |M | 9.0 | 14.6 | |V |45254. | | 304.28 |37 |M4e |00001 00002| +400030 |TW Her *|175431.2+302438 |RRAB | 10.52 | 11.83 | |V |21545.2340 | | 0.399600104 |13 |A4-F6 |03572 04449| +400031 |TX Her *|171836.5+415317 |EA/DM | 8.54 | 9.31 | 8.97 |V |40008.3643 | | 2.05980944 |08 *|A5+F0 |09242 08206| +400032 |TY Her |163611.7+131845 |CST: | 10.0 | | |p | | | | |M0 | BD | +400033 |TZ Her |163434.9+375944 |CST: | 9.1 | | |p | | | | |F5 | BD | +400034 |UU Her *|163557.3+375802 |SRD | 8.5 | 10.6 | |p |43651. | | 80.1 | |F2Ib-G0 |09243 00368| +400035 |UV Her |164534.1+120812 |M | 9.5 | 15. | |p |42934. | | 341.95 | |M6e-M6.5e |00001 08953| +400036 |UW Her |171424.5+362205 |SRB | 8.6 | 9.5 | |p | | | 103.6 | |M5e |09244 08953| +400037 |UX Her *|175407.9+165638 |EA/SD | 9.05 | 10.21 | 9.11 |V |39672.37853 | | 1.5488479 |15 *|A3V |08953 01745| +400038 |UY Her |163311.5+380417 |CST | 8.8 | | |p | | | | |A2 | BD | +400039 |UZ Her |173022.9+175451 |M | 9.6 |< 12.5 | |p |42175. | | 263.74 | |M5e |00001 06286| +400040 |VV Her |161229.8+245357 |M | 11.2 | 16.4 | |p |39959. | | 385.64 |20 |M7 |00001 00002| +400041 |VW Her *|180547.1+390957 |M | 12. |< 16. | |p |32743. | | 284.8 |37 | |00001 00529| +400042 |VX Her *|163040.8+182201 |RRAB | 9.89 | 11.21 | |V |21750.4827 | | 0.45537282 |14 |A4-F4 |03506 02166| +400043 |VY Her |170717.6+171023 |M | 10.1 |< 15. | |p |41914. | | 300.38 | |M5e: |00001 00002| +400044 |VZ Her *|171304.0+355843 |RRAB | 10.72 | 12.04 | |V |36788.898 | | 0.44032789 |13 |A6-F4 |07114 01747| +400045 |WW Her *|172430.1+460805 |M | 11.9 | 17.5 | |p |41623. | | 312.37 |40 |M2 |08206 08206| +400046 |WX Her *|172617.6+343131 |M | 12.4 | 16.7 | |p |30533. | | 186. | | |01749 UCAC2| +400047 |WY Her |180003.9+233538 |M | 11. | 15.5 | |p |23235. | | 376. | |M5e-M7e |01750 06286| +400048 |WZ Her |180131.6+184320 |M | 11.5 | 14. | |p |27900. | | 247.8 | | |00001 00002| +400051 |XZ Her |181003.6+180625 |M | 10.5 | 13.6 | |p |33887. | | 171.69 | |M0 |00001 00563| +400052 |YY Her |181434.2+205921 |ZAND | 11.1 |< 14.0 | |B | | | | |M2ep |01332 02460| +400053 |YZ Her |181808.8+212437 |SRB | 11.0 | 11.6 | |p | | | 102. | |M4 |01752 01752| +400055 |AA Her |181942.4+223455 |M | 11. |< 19. | |B |23245. | | 421.61 | |M2 |00001 06286| +400057 |AC Her *|183016.2+215201 |RVA | 6.85 | 9.0 | |V |35097.8 | | 75.01 | |F2pIb-K4e(C0,0) |09249 00368| +400058 |AD Her *|185000.3+204317 |EA/SD | 9.70 | 11.17 | 9.79 |V |39001.1348 | | 9.76657 |11 |A4V+K2 |08636 BD | +400059 |AE Her |184311.6+225944 |M | 10.5 | 15. | |p |45149. | | 248.99 | |M4e |00001 00119| +400060 |AF Her *|163938.1+410645 |RRAB | 12.23 | 13.35 | |V |27663.3095 | | 0.63034554 |12 |A |03506 01757| +400061 |AG Her *|164032.9+403706 |RRAB | 11.99 | 13.24 | |V |27662.209 | | 0.6494465 |14 |A3 |03506 01757| +400062 |AH Her *|164410.0+251502 |UGZ | 10.9 | 14.7 | |p | | |( 19.8 ) | |pec(UG) |04063 08852| +400063 |AI Her |165344.7+485702 |M | 10.5 |< 14. | |p |35720. | | 407. | |M6e |02931 06286| +400064 |AK Her *|171357.8+162101 |EW/KW | 8.29 | 8.77 | 8.64 |V |42186.460 | | 0.42152201 | *|F2+F6 |00001 00110| +400065 |AL Her |174302.9+173137 |M | 11.6 |< 15.0 | |p |35706. | | 211.8 | | |02931 01761| +400066 |AM Her *|181613.3+495204 |AM/XRM+E | 12.3 | 15.7 |( 0.4 )|V |43014.71266 | | 0.128927 | |pec+M4.5V |09257 09256| +400067 |AN Her |173530.6+204242 |SRB | 10.1 | 10.9 | |p | | | 65. : | |M5 | 08953| +400068 |AO Her |173536.2+502440 |SR | 11.0 |< 15.0 | |p | | | 370. | | |00498 06286| +400069 |AP Her *|185027.7+155625 |CWA | 10.19 | 11.18 | |V |43745.347 | | 10.4156 |40 |F2Ib-II-G0 |09029 01762| +400070 |AQ Her |175600.4+425223 |M | 11.1 |< 15. | |p |38233. | | 280.91 | |M7e |00001 00832| +400071 |AR Her *|160032.2+465526 |RRAB | 10.59 | 11.63 | |V |41454.347 | | 0.470028 |20 |A7-F3 |00001 00323| +400072 |AS Her |163851.9+140358 |M | 9.9 | 15.3 | |p |40750. | | 269.14 |53 |M2e |00001 01763| +400073 |AT Her *|173608.8+445738 | | 11.2 | 12.25 | |B | | | | |K0V |09261 06929| +400075 |AV Her |182507.8+124350 |M | 12. |< 16. | |p |34610. | | 331.1 | | |00001 03557| +400076 |AW Her *|182538.7+181740 |EA/AR/RS | 9.65 | 11.0 | |V |25719.434 | | 8.800760 |07 |G0+K2 |08592 08953| +400077 |AX Her |185324.4+191611 |M | 12.5 |< 15.5 | |p |28090. :| | | | |00904 06286| +400078 |AY Her |162313.2+440828 |SRA | 10.5 | 12.8 | |V |35265. | | 129.75 | |Me |01324 06286| +400079 |AZ Her |182233.6+284435 |M | 10.4 | 16. | |p |36782. | | 268.92 | |M4 |00001 06286| +400080 |BB Her *|184554.1+122010 |DCEP | 9.76 | 10.46 | |V |42679.289 | | 7.507945 |32 |G5 |08632 00869| +400081 |BC Her *|185041.7+122954 |EA/SD | 11.8 | 13.0 | |p |36483.424 | | 3.08735 |13 *|A2 |08636 00279| +400082 |BD Her *|185032.2+163151 |RRAB | 12.09 | 12.69 | |V |32628.015 | | 0.4739064 |20 |F2-F6 |02503 00197| +400083 |BE Her |162505.0+291504 |SRB | 8.2 | 9.9 | |V | | | 71.6 | |M4 |08713 08953| +400084 |BF Her |170447.6+165432 |SRB | 12.5 | 15.0 | |p | | | 196. | | |06004 06004| +400085 |BG Her |170928.6+184050 |M | 9.6 |< 12.5 | |p |33360. | | 347.74 | |M3e |00001 06286| +400087 |BI Her |172318.1+145748 |M | 12. |< 16. | |p |27946. | | 210. | | |01766 06286| +400088 |BK Her |174754.0+264121 |M | 11.7 | 16.9 | |p |28298. | | 215.0 | | |00001 00977| +400089 |BL Her *|180109.2+191457 |CWB | 9.70 | 10.62 | |V |41841.289 | | 1.3074502 |26 |F0-F6II-III |08300 02215| +400090 |BM Her |183356.3+255217 |M | 12.4 | 20. | |p |25320. | | 295. | | |00332 00531| +400092 |BO Her *|184030.1+245543 |EA/SD | 10.7 | 13.8 | 10.8 |V |34193.495 | | 4.272843 |15 |A7 |00001 00531| +400096 |BS Her |184632.1+214637 |M | 12.0 | 16.5 | |p |36451. | | 361.6 | |M6e |08715 06286| +400104 |CC Her *|161738.9+085603 |EA/SD | 10.2 | 13.1 | |p |39668.342 | | 1.7340058 |16 *|A0: |00001 00279| +400105 |CD Her *|172538.0+455439 |S: | 11.2 | 12.5 | |p | | | | |G5 |01423 BD | +400106 |CE Her *|174156.6+150430 |CWB | 11.53 | 12.92 | |V |27861.668 | | 1.2094357 |11 |F5 |05448 06286| +400107 |CF Her |174453.8+212947 |M | 9.0 |< 13. | |V |34902. | | 306.2 | |M0 |00001 00977| +400120 |CT Her *|162026.6+182717 |EA/SD | 10.6 | 11.7 | |p |42522.932 | | 1.7863748 |13 *|A3V |00001 00110| +400122 |CV Her |163837.9+305125 |LB | 11.5 | 12.5 | |p | | | | |M3 |00340 00977| +400123 |CW Her |165038.2+352705 |RRAB | 11.9 | 13.2 | |V |36721.358 | | 0.6238405 |12 |A |04149 03568| +400124 |CX Her |171037.1+273530 |SRB | 10.7 | 12.1 | |p | | | 114. : | |M7 |01882 08953| +400125 |CY Her |180446.0+170040 |SRB | 11.5 | 12.4 | |p | | | 80. : | |M6 | 03158| +400126 |CZ Her |180526.6+223005 |M | 12.0 | 18.5 | |p |28840. | | 322.5 | | |00001 01332| +400127 |DD Her |180545.4+282843 |EA/SD: | 11.4 | 12.2 | |p |26562.354 | | 5.643329 |11 *|A2 |00001 00279| +400128 |DE Her *|180630.4+205255 |SRD | 10.8 | 12.5 | |p |36148. | | 165.2 |42 |K0-M3e |03571 01332| +400129 |DF Her *|180633.5+201621 |M | 11.3 |< 14.2 | |p |36379. | | 337.7 | |M6e |00001 01332| +400130 |DG Her |182416.0+182447 |M | 11.1 |< 13.5 | |p |38625. | | 293.0 | |M5e |00001 01332| +400131 |DH Her *|184734.6+225046 |EA/SD | 9.4 | 12.0 | 9.5 |V |26575.456 | | 4.779161 |15 |A5 |08636 00464| +400132 |DI Her *|185326.2+241641 |EA/DM | 8.39 | 9.11 | 8.95 |V |42233.3476 | | 10.5501680 |04 *|B5V+B4V |09272 08953| +400133 |DK Her *|171244.0+131104 |EA | 10.5 | 11. | |p |31289.320 | | 1.942304 |14 *|A1 |00279 00279| +400134 |DL Her *|172022.4+143039 |RRAB | 11.0 | 12.4 | |V |38208.4282 | | 0.59162786 |08 |A6-A7 |03582 00977| +400135 |DM Her |173654.4+341119 |SRB | 11.5 | 12.3 | |p |29396. | | 81.6 |45 |M3 |00310 06286| +400136 |DN Her |161209.4+103626 |M | 10.5 |< 12.5 | |p |31575. | | 226. | | |02931 00470| +400137 |DO Her *|163040.8+232728 |M | 10.8 | 16.4 | |p |40391. | | 216.28 |50 | |00001 00470| +400141 |DS Her |183334.0+160606 |M | 11. |< 15.5 | |p |40446. | | 263.43 | | |00001 00196| +400147 |DY Her *|163117.9+115953 |DSCT | 10.15 | 10.66 | |V |33439.4865 | | 0.148631353 |28 |A7III-F4III |09100 00561| +400148 |DZ Her |180727.1+173341 |SRA | 10.9 | 12.3 | |p |34871. | | 119.78 |30 |M0 |02931 00554| +400150 |EF Her |165526.1+171748 |EA/SD: | 11. | 12. | |p |26440.37 | | 4.7291 |09 |F0 |01773 00977| +400158 |EO Her |175355.8+281326 |SRA | 12.3 | 14.6 | |p |27133. | | 171.1 | | |01766 02312| +400159 |EP Her |175509.4+263619 |RRAB | 12.44 | 13.54 | |V |28048.349 | | 0.4257209 |13 | |00611 02312| +400168 |EY Her |180438.7+324141 |SRA | 12.5 | 14.9 | |p |26541. | | 177. |59 | |00907 02312| +400169 |EZ Her *|180456.6+283247 |SRD: | 12.1 | 12.9 | |p |26120. | | 118. | |G8: |00907 02312| +400173 |FI Her |180954.8+312146 |M | 12.4 |< 16. | |p |26107. | | 239. | | |00907 02312| +400175 |FL Her |181157.8+322754 |LB | 12.1 | 13.9 | |p | | | | |M4 |00907 02325| +400177 |FN Her *|162513.2+111753 |EA/SD: | 10.5 | 11.5 | |p |28309.294 | | 2.69126 |14 *|A9 |00279 00279| +400178 |FO Her |172059.9+222652 |SR | 12.3 | 14.0 | |p |28775. | | 88. | | |01766 02324| +400180 |FQ Her |173219.8+374414 |SR | 12.5 | 14. | |p | | | 100. | | |00395 00491| +400181 |FR Her |173706.0+181305 |M: | 12.0 |< 13.5 | |p |36057. | | 134.23 | |M2 |02931 00470| +400184 |FU Her |175824.2+232640 |M | 11.2 |< 14.6 | |V |33529. | | 212.4 | | |02931 00470| +400187 |FX Her |180442.5+232237 |M | 12.5 |< 14.8 | |p |28419. | | 354. | | |01766 00470| +400194 |GL Her *|185028.4+233909 |EA/SD | 11.5 | 13.5 | |p |38266.326 | | 2.344972 |18 |A |08636 00533| +400196 |GN Her |163156.4+385130 |LB | 9. | 11.49 | |B | | | | |M4III |00922 08953| +400197 |GO Her |173331.6+163228 |SRB | 10.8 | 12.0 | |p | | | 50. | |M5 |01766 BD | +400198 |GP Her |173321.8+233515 |M | 11.8 | 17.2 | |p |35565. | | 257.36 |49 | |00001 02324| +400199 |GQ Her |174541.0+185037 |SRA | 11.2 | 12.9 | |p |28690. | | 115.00 |48 |M4 |01766 00470| +400203 |GU Her *|163205.5+302310 |EA/DM | 11.5 | 12.3 | 11.8 |p |31305.198 | | 4.342921 |17 |F8 |00279 02323| +400207 |GY Her *|163818.0+374805 |RRAB | 11.9 | 12.8 | |p |36387.811 | | 0.5243814 |20 |A1 |03568 02282| +400219 |HS Her *|185049.8+244312 |EA/DM | 8.50 | 8.97 | 8.63 |V |45160.434 | | 1.637435 |12 |B6III |00001 08953| +400225 |HY Her |165434.7+334931 |SRB | 12.1 | 13.3 | |p | | | 96. | |M3 |00152 00351| +400227 |II Her |165910.8+380352 |L | 12.4 | 12.9 | |p | | | | | |00152 02324| +400231 |IN Her |170207.6+341250 |SRB | 11.9 | 12.7 | |p | | | 70. : | |M |00152 02324| +400232 |IO Her |170228.9+364423 |LB | 12.0 | 12.4 | |p | | | | |M0 |00152 02324| +400233 |IP Her |175814.6+301310 |RRAB | 12.5 | 13.6 | |p |28038.517 | | 0.4338594 |26 |G: |01776 06286| +400234 |IQ Her *|181754.8+175853 |SRB | 6.99 | 7.47 | |V |30496. | | 75. |44 |M4 |03246 03729| +400242 |IY Her |185144.6+252344 |LB | 12.1 | 12.7 | |p | | | | |M3 |00332 00533| +400249 |KP Her |165529.3+330059 |LB | 11.9 | 12.4 | |p | | | | |M |00152 02282| +400251 |KR Her |171858.2+282447 |M | 12.4 |< 15.5 | |p |30107. | | 135.9 | | |01766 00922| +400255 |KV Her *|182843.4+121743 |SR | 12.3 | 16.0 | |p |25733. | | 203.5 | | |00447 00158| +400259 |KZ Her |184712.2+122724 |M | 12.2 |< 17. | |p |30159. | | 295.7 | |M5IIIe |00447 02328| +400263 |LO Her |185145.2+121310 |M | 11.6 |< 17. | |p |29848. | | 471. | |M8III |00447 02328| +400265 |LQ Her |161138.0+232941 |LB: | 5.58 | 5.83 | |V | | | | |M4IIIa |05841 BD | +400267 |LS Her *|160203.8+172850 |RRC | 10.79 | 11.12 | |V |28004.947 | | 0.23080771 |40 |A5 |08811 01739| +400268 |LT Her *|165020.4+095652 |EA/D | 10.69 | 11.11 | 10.79 |B |40755.7594 | | 1.0840458 |18 |A2V |07543 00279| +400269 |LU Her |173235.5+261225 |M | 11.7 | 17.5 | |p |35624. | | 217.51 |44 | |00001 02324| +400270 |LV Her *|173532.4+231031 |EA/D | 10.9 | 11.3 | |p |31326.333 | | 5.2674 |09 *|A-F |00279 00470| +400275 |MM Her *|175838.5+220847 |EA/AR/RS | 9.45 | 10.43 | 9.7 |V |31302.445 | | 7.960322 |05 *|G2-5 |08623 00279| +400282 |MT Her *|182150.6+143033 |EB/SD: | 11.86 | 12.86 | 12.30 |V |41117.417 | | 0.48771779 | *|F5: |06547 01779| +400283 |MU Her |163658.8+424450 |SR | 11.9 | 13.2 | |p |31190. | | 192. | |M2e |00346 00346| +400285 |MW Her *|173540.0+153512 |M | 12.4 |< 16. | |p |29156. | | 449.0 | |M8-M9 |00001 03586| +400286 |MX Her *|175050.7+500250 |EA/SD | 11.4 | 12.9 | |p |31657.411 | | 2.3476536 |14 *|F5 |02716 00279| +400288 |MZ Her |184816.8+190650 |SRB | 10.3 | 11.3 | |p | | | 100. : | |M6 |01110 01110| +400289 |NN Her |185209.6+140651 |LB | 11.4 | 12.4 | |p | | | | |M5 |01110 01110| +400291 |NP Her |161708.7+255101 |M | 12.2 |< 15.5 | |p |39643. | | 448. |50 |C6,3e(N) |05681 00542| +400292 |NQ Her *|181133.7+181927 |CST | 8.41 | | 8.4 |V | | | | |A0 |09291 00021| +400294 |NS Her |173141.4+214955 |SRB: | 11.9 | 13.9 | |p | | | 75. : | |M |04201 02324| +400295 |NT Her |173228.8+275323 |LB | 10.0 | 10.6 | |p | | | | |M7 |01766 00832| +400301 |NZ Her |175407.5+392434 |L | 12.0 | 12.6 | |p | | | | | |00569 02365| +400302 |OO Her |175621.3+310737 |LB | 10.2 | 10.8 | |p | | | | |M6 |00569 02365| +400303 |OP Her |175648.5+452103 |SRB | 5.85 | 6.73 | |V |41196. | | 120.5 | |M5IIb-IIIa(S) |08814 02379| +400304 |OQ Her *|175754.7+312529 |SRA | 12.0 | 12.7 | |p |29710. | | 373. | |M |00569 02365| +400308 |OU Her *|180302.0+282939 |LB | 11.1 | 11.6 | |p | | | | |M6 |01766 00832| +400315 |PQ Her |180732.5+401527 |IS | 12.5 | 13.2 | |p | | | | |G8 |00569 02365| +400321 |PW Her *|181024.1+332411 |EA/AR:/RS | 9.84 | 10.44 | 10.1 |V |44785.433 | | 2.8809877 |18 |K0IV-V |00001 02379| +400327 |QS Her |181318.7+345518 |SRB | 12.0 | 12.7 | |p | | | 600. : | |M2 |00569 02347| +400328 |QT Her |181336.3+390818 |LB | 12.4 | 13.6 | |p | | | | |M4 |03595 02347| +400336 |V0336 Her |160807.0+184856 |SRD | 10.3 | 11.3 | |p | | | 48.7 | |F7 |03599 00470| +400337 |V0337 Her |174847.2+454159 |SRB | 9.5 | 10.2 | |p | | | 280. : | |M8 |01778 02379| +400338 |V0338 Her *|175312.7+434623 |EA/SD | 10.07 | 11.15 | 10.13 |V |43691.123 | | 1.3057393 |17 *|F1V |00001 02379| +400341 |V0341 Her |182142.2+141608 |LB: | 12.0 | 13.5 | |V | | | | |M |03165 00554| +400342 |V0342 Her *|182413.0+250451 |EB/SD: | 10.5 | 11.3 | 10.7 |p |35693.440 | | 0.851730 | |F2 |00971 01781| +400350 |V0350 Her |172141.6+244604 |LB | 11.8 | 12.7 | |p | | | | |M5 |00503 02362| +400351 |V0351 Her |173252.6+252519 |SRB | 11.6 | 12.6 | |p | | | 80. : | |M6 |04201 02362| +400352 |V0352 Her |174245.0+303255 |SRB | 10.6 | 11.3 | |p | | | 350. : | |M4 |00499 02379| +400353 |V0353 Her |181005.3+285423 |LB | 11.4 | 12.0 | |p | | | | |M6 |00499 02379| +400354 |V0354 Her |181821.6+242111 |LB | 11.3 | 12.3 | |p | | | | |M7 |00306 03557| +400359 |V0359 Her *|165628.7+373919 |EA/SD | 10.2 | 11.2 | |p |43673.432 | | 1.755735 |16 |F0 |00001 02718| +400361 |V0361 Her |162237.6+191037 |SR | 12. | 15. | |p |36402. | | 85. | |M0 |02394 00542| +400363 |V0363 Her |165128.3+220435 |SRA | 11.4 | 12.8 | |p |35689. | | 197.1 | |M |04024 02609| +400366 |V0366 Her |170704.9+273747 |EA/SD | 12.2 | 14.1 | |p |27571.465 | | 2.758325 |14 *| |04201 02763| +400393 |V0393 Her |172104.0+265551 |M | 11.5 | 18.0 | |p |36438. | | 425.90 |33 : | |00001 02324| +400394 |V0394 Her *|172238.7+175305 |RRAB | 12.2 | 13.3 | |p |29747.504 | | 0.4360573 |09 | |04201 02763| +400427 |V0427 Her |173714.9+211230 |LB | 11.6 | 12.8 | |p | | | | |K5 |04201 00832| +400441 |V0441 Her *|175525.2+260300 |SRD | 5.34 | 5.54 | |V | | | 68. : | |F2Ibe |09294 BD | +400442 |V0442 Her *|181258.3+420346 |RRAB | 12.5 | 13.8 | |p |35730.550 | | 0.4420840 |20 | |03603 00491| +400443 |V0443 Her |182207.8+232720 |ZAND | 11.42 | 11.72 | |V | | | | |M3ep+O |02813 09296| +400449 |V0449 Her |164239.1+482424 |LB | 8.9 | 9.9 | |p | | | | |M6 |04197 02379| +400450 |V0450 Her |164409.4+341231 |EA/D | 10.1 | 10.7 | |p |25687.565 | | 0.912729 |12 *|A0 |04109 BD | +400451 |V0451 Her *|170133.0+145659 |ACV | 6.26 | 6.34 | |V |37145.3 | | 6.0094 | |B9p(Cr-Eu) |09298 BD | +400456 |V0456 Her |170647.6+210618 |LB | 12.1 | 13.8 | |p | | | | | |04201 02324| +400457 |V0457 Her |170823.9+204256 |LB | 11.9 | 12.5 | |p | | | | |M6 |04201 02343| +400463 |V0463 Her *|171133.7+162439 |SRD | 8.46 |( 0.05 )| |V |36029. | | 54.0 | |K0III: |04203 BD | +400466 |V0466 Her |171238.6+202813 |SRB | 11.0 | 12.1 | |p |27565. | | 76.70 | |M5 |04201 02362| +400472 |V0472 Her |171548.5+212757 |LB | 12.4 | 13.0 | |p | | | | |M0 |04201 02343| +400475 |V0475 Her |171959.4+241206 |UV: | 12.5 | 15.8 | |p | | | | | |04201 02343| +400479 |V0479 Her |172126.2+183320 |LB | 12.5 | 13.8 | |p | | | | |M |04201 02343| +400501 |V0501 Her |173543.5+303835 |E | 10.5 | 11.0 | |p | | | | | |03148 02363| +400508 |V0508 Her |173820.0+314038 |LB | 11.1 | 11.7 | |p | | | | |M7 |04022 BD | +400522 |V0522 Her |174721.1+400109 |LB | 10.7 | 11.5 | |p | | | | |M4 |04211 BD | +400526 |V0526 Her |175809.0+411944 |SR | 11.7 | 13.5 | |p |36660. | | 180. : | | |04406 04406| +400529 |V0529 Her *|180759.0+421326 |SR | 10.5 | 11.4 | |p |36800. | | 400. | |M7-M10 |04216 04217| +400534 |V0534 Her |182438.3+195224 |SR: | 12.5 | 15. | |p | | | | | |04225 04225| +400535 |V0535 Her |184535.6+215905 |ACV | 6.41 | 6.58 | |V |38543.8 | | 9.9750 |40 |B9p(Si-Sr-Cr) |08824 BD | +400536 |V0536 Her |185353.1+195238 |SR: | 12.5 | 15. | |p | | | | | |04225 04225| +400548 |V0548 Her |164406.5+080730 |M: | 12.5 | 17.2 | |p |38900. | | | | |03903 03903| +400566 |V0566 Her |180751.0+414309 |SRB | 8.6 | 9.26 | |p | | | 137. | |M4III |09244 03944| +400567 |V0567 Her |180905.0+220741 |M: | 12. : | 16. : | |p | | | | | |05124 05124| +400600 |V0600 Her *|163658.2+142831 |ELL+BCEP: | 7.03 |( 0.03 : )| |V | | | 5.20065 | |B0.5III |04189 BD | +400604 |V0604 Her *|164005.8+184110 |SR | 11.8 | 13.1 | |p | | | 148. | | |04165 05515| +400620 |V0620 Her |171103.2+241416 |DSCTC | 6.19 | 6.23 | |V | | | 0.0797 |48 |A8V |07015 BD | +400624 |V0624 Her *|174417.3+142436 |EA/DM | 6.18 | 6.36 | 6.35 |V |40321.0049 | | 3.894977 |10 *|A3m |06256 BD | +400636 |V0636 Her |164719.8+421420 |LB | 5.83 |( 0.20 )| |V | | | | |M4III-IIIa |05840 BD | +400637 |V0637 Her *|164914.2+455900 |ACV | 4.78 | 4.85 | |V | | | 3.8567 | |A3Vp(Sr-Cr-Eu) |09301 BD | +400640 |V0640 Her *|172554.4+165503 |LB | 5.98 | 6.21 | |V | | | | |M4IIIab |05841 BD | +400641 |V0641 Her *|173817.5+341712 |EW: | 11.2 | 11.8 | |p | | | | |G5 |05957 01980| +400642 |V0642 Her |173342.8+145030 |SRB | 6.41 | 6.56 | |V | | | 12. : | |M4IIIa |06645 BD | +400644 |V0644 Her *|165516.0+133712 |DSCTC | 6.32 | 6.36 | |V | | | 0.11505449 |50 |F2IV |07015 BD | +400645 |V0645 Her *|165501.3+290220 |DSCT: | 7.30 |( 0.14 )| |V | | | | |A5 |06456 BD | +400647 |V0647 Her *|171954.2+263003 |UV | 12.2 | 12.99 | |B | | | | |M4eV |06864 07547| +400648 |V0648 Her |173225.2+262622 |DSCTC | 6.86 |( 0.04 )| |V | | | 0.29 : | |A7V |06456 BD | +400649 |V0649 Her |160644.5+484224 |LB: | 11.5 | 12.7 | |V | | | | |M7 |06977 04238| +400652 |V0652 Her *|164804.7+131543 |* | 10.50 | 10.61 | |V |42216.8050 | | 0.10800182 |30 |B1 |09302 BD | +400655 |V0655 Her *|171353.7+155703 |ACV: | 8.2 |( 0.02 )| |V |36005.007 | | 5.891 |49 |A7V |04203 BD | +400656 |V0656 Her |172018.9+180326 |LB: | 4.9 | 5.1 | |V | | | | |M2IIIab |06412 BD | +400657 |V0657 Her *|172824.3+155151 |LB: | 9.9 | 10.7 | |p | | | | |M7 |02609 BD | +400669 |V0669 Her |181154.2+312419 | | 6.62 |( 0.14 )| |B | | | | |M3III |01371 BD | +400697 |V0697 Her *|162751.4+344811 |M | 2.45 | 3.76 | |K | | | 475. : | |M9 |09305 04238| +400719 |V0719 Her *|170952.6+425608 |RRC: | 12.5 | 13.6 | |p |41598.278 | | 0.335870 |40 | |08206 08206| +400728 |V0728 Her *|171804.3+415039 |EW/KW | 10.9 | 11.5 | 11.4 |p |41571.273 | | 0.4462587 | | |00001 08206| +400744 |V0744 Her *|175003.3+482339 |GCAS | 6.65 | 6.94 | |V | | | | |B7Vne |09306 BD | +400746 |V0746 Her |162643.3+105926 |SR | 6.59 | 6.76 | |V | | | | |M4III |08225 BD | +400771 |V0771 Her *|175852.3+452834 |ACV | 6.44 | 6.52 | |V |41450.86 | | 0.517468 | |B9p(Si-Cr-Sr) |09308 BD | +400772 |V0772 Her *|180549.7+212645 |E | 6.9 |( 0.10 )| |V |43392.823 | | 0.879511 | |G2V |08482 BD | +400773 |V0773 Her |163642.9+152951 |ACV | 6.01 |( 0.03 )| |U |41459.05 | | 1.45876 |40 : |B9p(Si-Sr-Cr:) |09308 BD | +400774 |V0774 Her *|183317.8+221851 |UV | 9.45 : | 10.90 : | |B | | | | |K2 |08764 BD | +400775 |V0775 Her |185553.2+233324 |RS | 8.05 |( 0.12 )| |V |43677.520 | | 2.879395 | |K0V |08765 BD | +400776 |V0776 Her |164746.4+051448 |ACV | 5.21 | 5.27 | |V | | | | | |67134 BD | +400792 |V0792 Her |171025.6+485756 |EA/GS/RS | 8.5 |( 0.33 )| |V | | | | | |67449 BD | +400795 |V0795 Her |171256.2+333119 |NL | 12.5 | 13.2 | |B | | | | | |67457 GSC | +400814 |V0814 Her |174455.5+500240 |SRD | 6.97 | 7.12 | |V | | | | | |67468 BD | +400815 |V0815 Her |180816.1+294128 |RS | 7.6 |( 0.1 )| |V | | | | | |67469 BD | +400818 |V0818 Her |171841.4+433633 |SRB | 9.80 | 11.2 | |B | | | | | |68334 BD | +400819 |V0819 Her |172143.6+395829 |EA/D+BY | 5.51 |( 0.12 )| |V | | | | | |68131 BD | +400820 |V0820 Her |180223.1+205001 |* | 5.17 | 5.19 | |B | | | | | |68132 BD | +400821 |V0821 Her |184154.6+174108 |M | 9.2 | 12.0 | |R | | | | | |68106 68106| +400822 |V0822 Her |185201.9+135756 |EB/KE | 6.12 | 6.30 | |V | | | | | |68134 BD | +400823 |V0823 Her |165204.8+145827 |ACV | 6.40 |( 0.03 )| |U | | | | | |69128 BD | +400826 |V0826 Her |174558.5+391921 |ELL | 6.68 |( 0.028 )| |V | | | | | |69154 BD | +400827 |V0827 Her |184342.5+151919 |NA | 7.5 | 18. | |V | | | | | |69156 69157| +400828 |V0828 Her |185603.8+175943 |ACV | 6.15 |( 0.04 )| |U | | | | | |69128 BD | +400829 |V0829 Her |165547.9+351058 |EW/KW | 10.1 |( 0.29 R )| |V | | | | | |70061 70061| +400830 |V0830 Her |175239.7+294316 |DSCT: | 9.20 | 9.33 | |V | | | | | |70062 BD | +400831 |V0831 Her |180440.2+235631 |DSCTC: | 6.28 | 6.34 | |V | | | | | |70063 BD | +400832 |V0832 Her |171356.5+261051 |RS | 8.8 |( 0.04 )| |V | | | | | |71001 BD | +400833 |V0833 Her |173155.3+174522 |M | 2.6 | 5.4 | |K | | | | | |71002 USNO | +400834 |V0834 Her |174137.4+293556 |RS | 8.0 |( 0.10 )| |V | | | | | |71001 BD | +400835 |V0835 Her |175524.7+361120 |RS | 7.94 | 8.09 | |V | | | | | |71001 BD | +400836 |V0836 Her |181132.9+235513 |EA | 10.7 | 11.4 | |V | | | | | |71161 71161| +400837 |V0837 Her |184336.5+135723 |M | 0.2 | 1.3 | |L | | | | | |71002 71165| +400838 |V0838 Her |184631.5+121402 |NA+EA | 5.0 | 20. | |V | | | | | |71172 71171| +400839 |V0839 Her |155530.6+423358 |BE | 5.74 | 5.84 | |V | | | | | |72093 BD | +400840 |V0840 Her |163250.3+065443 |E | 11.2 | 12.2 | |V | | | | | |72094 72095| +400841 |V0841 Her |165710.7+351712 |UV | 11.08 | 11.25 | |U | | | | | |72096 72096| +400842 |V0842 Her |160602.2+501113 |EW | 9.85 | 10.45 | |V | | | | | |73167 BD | +400844 |V0844 Her |162501.8+390927 |UG | 12.5 | 17.5 | |B | | | | | |73168 73168| +400846 |V0846 Her |162656.3+241407 |RS | 8.96 |( 0.06 )| |V | | | | | |73005 BD | +400857 |V0857 Her |164653.6+383858 |EW | 10.0 |( 0.29 )| |V | | | | | |73170 73042| +400866 |V0866 Her |165950.6+411114 |LB: | 12.1 | 14.2 | |B | | | | | |73126 73126| +400873 |V0873 Her |170904.9+162744 |DSCT: | 8.4 |( 0.21 )| |V | | | | | |73171 BD | +400874 |V0874 Her |171131.9+485029 |EB: | 9.9 | 10.9 | |p | | | | | |73172 73172| +400878 |V0878 Her |172425.3+493837 |EB | 9.37 | 9.87 | |V | | | | | |73173 BD | +400885 |V0885 Her |180550.3+212622 |BY | 10.62 |( 0.06 )| |V | | | | | |73176 BD | +400886 |V0886 Her |180820.1+241043 |BE: | 10. | 11.5 | |p | | | | | |73177 73177| +400887 |V0887 Her |181130.7+270516 |SRD: | 12.09 | 12.33 | |U | | | | | |73022 73022| +400889 |V0889 Her |183420.1+184124 |BY | 7.39 |( 0.14 )| |V | | | | | |73005 BD | +400890 |V0890 Her |161127.3+234912 |LB: | 9.26 | 9.37 | |Hp| | | | | |HIP HIP | +400891 |V0891 Her |161137.7+415035 |LB: | 8.51 | 8.63 | |Hp| | | | | |HIP HIP | +400892 |V0892 Her |161352.3+162604 |SRB | 7.70 | 7.96 | |Hp| | | | | |HIP HIP | +400893 |V0893 Her |162004.1+451300 |RR: | 9.20 | 9.38 | |Hp| | | | | |HIP HIP | +400894 |V0894 Her |162335.7+210327 |SRD | 8.17 | 8.32 | |Hp| | | | | |HIP HIP | +400895 |V0895 Her |162617.9+230353 |SRB | 7.84 | 7.99 | |Hp| | | | | |HIP HIP | +400896 |V0896 Her |162638.2+374554 |LB: | 8.67 | 8.85 | |Hp| | | | | |HIP HIP | +400897 |V0897 Her |162946.7+074456 |SRD: | 6.88 | 7.12 | |Hp| | | | | |HIP HIP | +400898 |V0898 Her |163049.5+271848 |BY: | 11.87 | 12.19 | |Hp| | | | | |HIP HIP | +400899 |V0899 Her |163502.0+331248 |EW | 7.93 | 8.07 | |Hp| | | | | |HIP HIP | +400900 |V0900 Her |163536.7+211819 |LB: | 8.74 | 8.86 | |Hp| | | | | |HIP HIP | +400901 |V0901 Her |163533.7+262828 |SR: | 8.69 | 8.78 | |Hp| | | | | |HIP HIP | +400902 |V0902 Her |163631.7+360224 |LB: | 7.08 | 7.17 | |Hp| | | | | |HIP HIP | +400903 |V0903 Her |163737.7+222642 |SRB | 6.99 | 7.16 | |Hp| | | | | |HIP HIP | +400904 |V0904 Her |163749.0+270238 |LB: | 6.98 | 7.08 | |Hp| | | | | |HIP HIP | +400905 |V0905 Her |163746.0+423138 |LB: | 8.86 | 9.00 | |Hp| | | | | |HIP HIP | +400906 |V0906 Her |163832.5+485144 |LB | 6.52 | 6.65 | |Hp| | | | | |HIP HIP | +400907 |V0907 Her |164013.5+073734 |LB: | 8.38 | 8.48 | |Hp| | | | | |HIP HIP | +400908 |V0908 Her |164117.7+300636 |BY: | 10.14 | 11.95 | |Hp| | | | | |HIP HIP | +400909 |V0909 Her |164306.5+260325 |LB | 7.84 | 8.02 | |Hp| | | | | |HIP HIP | +400910 |V0910 Her |164416.9+314926 |LB: | 8.47 | 8.62 | |Hp| | | | | |HIP HIP | +400911 |V0911 Her |164444.7+323531 |LB: | 8.41 | 8.57 | |Hp| | | | | |HIP HIP | +400912 |V0912 Her |164440.1+383724 |SRD: | 8.69 | 8.79 | |Hp| | | | | |HIP HIP | +400913 |V0913 Her |164523.3+453723 |LB: | 8.45 | 8.56 | |Hp| | | | | |HIP HIP | +400914 |V0914 Her |164537.6+390902 |SRD | 8.48 | 8.69 | |Hp| | | | | |HIP HIP | +400915 |V0915 Her |164615.2+175019 |LB: | 8.32 | 8.44 | |Hp| | | | | |HIP HIP | +400916 |V0916 Her |164635.5+414732 |E: | 8.03 | 8.38 | |Hp| | | | | |HIP HIP | +400917 |V0917 Her |164739.3+141858 |LB: | 10.18 | 10.31 | |Hp| | | | | |HIP HIP | +400918 |V0918 Her |164824.2+170800 |EB | 7.40 | 7.51 | |Hp| | | | | |HIP HIP | +400919 |V0919 Her |164932.0+260206 |DSCTC | 8.42 | 8.46 | |Hp| | | | | |HIP HIP | +400920 |V0920 Her |165006.4+162944 |E: | 7.88 | 7.98 | |Hp| | | | | |HIP HIP | +400921 |V0921 Her |164931.2+470629 |EB | 9.45 | 9.80 | |Hp| | | | | |HIP HIP | +400922 |V0922 Her |165004.9+320012 |LB: | 10.58 | 10.73 | |Hp| | | | | |HIP HIP | +400923 |V0923 Her |165044.2+302409 |EB | 9.09 | 9.27 | |Hp| | | | | |HIP HIP | +400924 |V0924 Her |165500.5+461635 |SRB: | 7.78 | 7.95 | |Hp| | | | | |HIP HIP | +400925 |V0925 Her |165533.9+483639 |LB: | 9.57 | 9.72 | |Hp| | | | | |HIP HIP | +400926 |V0926 Her |165642.1+260405 |LB: | 9.27 | 9.39 | |Hp| | | | | |HIP HIP | +400927 |V0927 Her |165618.0+500736 |DSCT | 10.11 | 10.24 | |Hp| | | | | |HIP HIP | +400928 |V0928 Her |170018.4+261439 |LB: | 8.00 | 8.12 | |Hp| | | | | |HIP HIP | +400929 |V0929 Her |170221.2+400423 |DSCTC | 8.06 | 8.11 | |Hp| | | | | |HIP HIP | +400930 |V0930 Her |170305.5+174350 |BY: | 10.48 | 10.67 | |Hp| | | | | |HIP HIP | +400931 |V0931 Her |170330.2+352451 |LB: | 6.07 | 6.26 | |Hp| | | | | |HIP HIP | +400932 |V0932 Her |170459.9+390952 |LB | 9.61 | 10.03 | |Hp| | | | | |HIP HIP | +400933 |V0933 Her |170631.0+132625 |LB: | 9.26 | 9.37 | |Hp| | | | | |HIP HIP | +400934 |V0934 Her |170634.5+235819 |SRB: | 7.62 | 7.78 | |Hp| | | | | |HIP HIP | +400935 |V0935 Her |170745.6+243501 |EB | 8.44 | 8.64 | |Hp| | | | | |HIP HIP | +400936 |V0936 Her |170825.3+202119 |LB: | 8.94 | 9.08 | |Hp| | | | | |HIP HIP | +400937 |V0937 Her |170853.9+395347 |LB: | 9.53 | 9.65 | |Hp| | | | | |HIP HIP | +400938 |V0938 Her |171026.5+291003 |SRB: | 7.89 | 7.98 | |Hp| | | | | |HIP HIP | +400939 |V0939 Her |171018.5+404124 |LB | 7.24 | 8.02 | |Hp| | | | | |HIP HIP | +400940 |V0940 Her |171046.0+492049 |SRD | 7.44 | 7.93 | |Hp| | | | | |HIP HIP | +400941 |V0941 Her |171235.8+473120 |LB: | 10.10 | 10.24 | |Hp| | | | | |HIP HIP | +400942 |V0942 Her |171507.9+174806 |LB | 7.18 | 7.30 | |Hp| | | | | |HIP HIP | +400943 |V0943 Her |171632.8+274100 |LB: | 8.69 | 8.85 | |Hp| | | | | |HIP HIP | +400944 |V0944 Her |171734.6+285448 |LB | 6.88 | 7.02 | |Hp| | | | | |HIP HIP | +400945 |V0945 Her |171908.4+303757 |LB | 10.41 | 10.75 | |Hp| | | | | |HIP HIP | +400946 |V0946 Her *|171927.1+330510 |BY: | 10.86 | 11.52 | |Hp| | | | | |HIP HIP | +400947 |V0947 Her |171942.9+391724 |LB: | 7.79 | 7.93 | |Hp| | | | | |HIP HIP | +400948 |V0948 Her |172257.7+292043 |EA | 9.02 | 9.31 | |Hp| | | | | |HIP HIP | +400949 |V0949 Her |172305.3+252535 |SRB | 8.78 | 9.28 | |Hp| | | | | |HIP HIP | +400950 |V0950 Her |172514.9+195515 |LB: | 8.60 | 8.70 | |Hp| | | | | |HIP HIP | +400951 |V0951 Her |172623.3+220635 |LB: | 8.84 | 8.95 | |Hp| | | | | |HIP HIP | +400952 |V0952 Her |172829.9+500950 |LB: | 8.65 | 8.77 | |Hp| | | | | |HIP HIP | +400953 |V0953 Her |173007.5+471605 |LB: | 9.16 | 9.27 | |Hp| | | | | |HIP HIP | +400954 |V0954 Her |173028.5+400803 |LB: | 9.09 | 9.23 | |Hp| | | | | |HIP HIP | +400955 |V0955 Her |173317.0+414706 |LB: | 9.86 | 10.07 | |Hp| | | | | |HIP HIP | +400956 |V0956 Her |173437.7+275922 |LB: | 8.57 | 8.72 | |Hp| | | | | |HIP HIP | +400957 |V0957 Her |173430.4+433003 |LB | 8.14 | 8.37 | |Hp| | | | | |HIP HIP | +400958 |V0958 Her |173528.1+310355 |LB: | 9.64 | 9.84 | |Hp| | | | | |HIP HIP | +400959 |V0959 Her |173621.4+273400 |SRC | 6.33 | 6.51 | |Hp| | | | | |HIP HIP | +400960 |V0960 Her |173909.5+315310 |SRD | 7.51 | 7.60 | |Hp| | | | | |HIP HIP | +400961 |V0961 Her |173942.1+163336 |SRB | 8.99 | 9.33 | |Hp| | | | | |HIP HIP | +400962 |V0962 Her |173913.4+460918 |SRB: | 7.93 | 8.24 | |Hp| | | | | |HIP HIP | +400963 |V0963 Her |174144.5+395911 |LB | 9.15 | 9.47 | |Hp| | | | | |HIP HIP | +400964 |V0964 Her |174302.0+174045 |LB | 8.09 | 8.25 | |Hp| | | | | |HIP HIP | +400965 |V0965 Her |174301.3+293911 |SRC: | 7.02 | 7.15 | |Hp| | | | | |HIP HIP | +400966 |V0966 Her |174303.5+373411 |DSCTC | 8.01 | 8.11 | |Hp| | | | | |HIP HIP | +400967 |V0967 Her |174442.0+350623 |LB: | 9.25 | 9.36 | |Hp| | | | | |HIP HIP | +400968 |V0968 Her |174756.7+363319 |LB | 6.47 | 6.66 | |Hp| | | | | |HIP HIP | +400969 |V0969 Her |174934.3+203814 |LB: | 7.51 | 7.55 | |Hp| | | | | |HIP HIP | +400970 |V0970 Her |175205.0+335439 |LB: | 8.37 | 8.48 | |Hp| | | | | |HIP HIP | +400971 |V0971 Her |175724.2+334734 |SRB | 8.20 | 8.52 | |Hp| | | | | |HIP HIP | +400972 |V0972 Her |175805.0+323853 |EW | 6.73 | 6.80 | |Hp| | | | | |HIP HIP | +400973 |V0973 Her *|175911.5+185236 |SRB: | 9.04 | 9.47 | |Hp| | | | | |HIP HIP | +400974 |V0974 Her |180027.7+193021 |BE | 6.38 | 6.45 | |Hp| | | | | |HIP HIP | +400975 |V0975 Her |180031.4+170612 |LB | 7.31 | 7.52 | |Hp| | | | | |HIP HIP | +400976 |V0976 Her |180202.2+293336 |LB: | 9.44 | 9.58 | |Hp| | | | | |HIP HIP | +400977 |V0977 Her |180300.4+150009 |LB | 7.62 | 7.79 | |Hp| | | | | |HIP HIP | +400978 |V0978 Her |180320.6+193321 |LB | 6.82 | 6.97 | |Hp| | | | | |HIP HIP | +400979 |V0979 Her |180445.2+235312 |DSCTC | 8.52 | 8.58 | |Hp| | | | | |HIP HIP | +400980 |V0980 Her |180500.4+165536 |LB | 6.96 | 7.06 | |Hp| | | | | |HIP HIP | +400981 |V0981 Her |180720.7+151405 |LB: | 7.24 | 7.34 | |Hp| | | | | |HIP HIP | +400982 |V0982 Her |180647.5+432707 |LB | 6.99 | 7.38 | |Hp| | | | | |HIP HIP | +400983 |V0983 Her |180711.5+344931 |LB | 7.29 | 7.40 | |Hp| | | | | |HIP HIP | +400984 |V0984 Her |180752.8+450253 |LB: | 9.56 | 9.67 | |Hp| | | | | |HIP HIP | +400985 |V0985 Her |181125.2+205709 |LB: | 9.17 | 9.36 | |Hp| | | | | |HIP HIP | +400986 |V0986 Her |181134.2+473935 |LB: | 8.00 | 8.10 | |Hp| | | | | |HIP HIP | +400987 |V0987 Her |181301.1+365802 |LB | 9.82 | 10.07 | |Hp| | | | | |HIP HIP | +400988 |V0988 Her |182018.2+210425 |EA | 7.71 | 7.90 | |Hp| | | | | |HIP HIP | +400989 |V0989 Her |182148.5+213028 |LPB | 6.79 | 6.82 | |Hp| | | | | |HIP HIP | +400990 |V0990 Her |182556.7+213621 |EA: | 7.72 | 7.96 | |Hp| | | | | |HIP HIP | +400991 |V0991 Her |182655.6+150906 |SRD: | 9.33 | 9.98 | |Hp| | | | | |HIP HIP | +400992 |V0992 Her |182657.0+174403 |SRD | 8.93 | 9.10 | |Hp| | | | | |HIP HIP | +400993 |V0993 Her |182650.5+233017 |LB: | 9.80 | 9.94 | |Hp| | | | | |HIP HIP | +400994 |V0994 Her *|182745.9+244151 |EA | 6.93 | 7.24 | |Hp| | | | | |HIP HIP | +400995 |V0995 Her |183109.7+250948 |LB: | 7.76 | 7.87 | |Hp| | | | | |HIP HIP | +400996 |V0996 Her |183125.1+141721 |LB: | 9.80 | 9.97 | |Hp| | | | | |HIP HIP | +400997 |V0997 Her |183434.9+151346 |SRB | 8.05 | 8.22 | |Hp| | | | | |HIP HIP | +400998 |V0998 Her |183531.2+210427 |E: | 9.02 | 9.15 | |Hp| | | | | |HIP HIP | +400999 |V0999 Her |183841.3+175254 |LB: | 8.89 | 9.14 | |Hp| | | | | |HIP HIP | +401000 |V1000 Her |184445.9+142537 |SRD | 9.20 | 9.42 | |Hp| | | | | |HIP HIP | +401001 |V1001 Her |184753.8+244744 |LB | 9.53 | 9.94 | |Hp| | | | | |HIP HIP | +401002 |V1002 Her |184930.1+181114 |EA | 8.99 | 9.14 | |Hp| | | | | |HIP HIP | +401003 |V1003 Her |185317.5+211333 |DSCTC: | 9.81 | 9.90 | |Hp| | | | | |HIP HIP | +401004 |V1004 Her |162332.1+153329 |SR: | 11.2 | 13.0 | |p | | | | | |75002 GSC | +401006 |V1006 Her |170318.6+390452 |SRD: | 10.11 |( 0.79 )| |V | | | | | |75143 BD | +401009 |V1009 Her |181244.7+212419 |SR | 11.2 | 12.5 | |p | | | | | |75002 GSC | +401011 |V1011 Her |182931.5+223424 |EA | 10.4 | 11.6 | |p | | | | | |75002 GSC | +401012 |V1012 Her |160528.9+421030 |M | 12.4 |< 15.2 | |V | | | | | |76012 GSC | +401014 |V1014 Her |165925.1+230620 |SR: | 10.8 | 12.7 | |V | | | | | |76012 GSC | +401016 |V1016 Her |181658.2+155919 |M | 11.0 | 15.0 | |V | | | | | |76012 GSC | +401017 |V1017 Her |182126.1+181026 |EA | 10.29 | 10.47 | |V | | | | | |76176 DM | +401018 |V1018 Her |182946.4+140746 |SR | 10.5 | 11.6 | |V | | | | | |76179 GSC | +401019 |V1019 Her |184543.7+160157 |LB: | 11.2 | 12.8 | |V | | | | | |76012 GSC | +401022 |V1022 Her |155810.2+492708 |UV+BY | 11.90 |( 0.09 R )| |V | | | | | |77118 77118| +401023 |V1023 Her |155825.3+492651 |EW | 11.97 |( 0.21 R )| |V | | | | | |77118 77118| +401024 |V1024 Her |161005.1+253655 |EA | 12.5 | 13.2 | |V | | | | | |77100 UCAC2| +401025 |V1025 Her |162109.2+253923 |EA | 12.1 |< 12.5 | |V | | | | | |77100 UCAC2| +401026 |V1026 Her |163153.6+252719 |EB | 12.2 | 12.6 | |V | | | | | |77100 GSC | +401027 |V1027 Her |163213.5+133844 |EA | 12.0 | 12.4 | |V | | | | | |77100 GSC | +401028 |V1028 Her |163516.7+124619 |EA | 12.0 |< 12.2 | |V | | | | | |77100 GSC | +401029 |V1029 Her |163532.6+035940 |SR: | 12.2 | 12.7 | |* | | | | | |77122 GSC | +401030 |V1030 Her |164503.7+041022 |SR: | 12.2 | 12.9 | |* | | | | | |77122 GSC | +401031 |V1031 Her |164508.5+203700 |EA | 12.1 | 12.5 | |V | | | | | |77100 UCAC2| +401033 |V1033 Her |165039.9+274423 |EW | 11.8 | 12.4 | |V | | | | | |77100 UCAC2| +401035 |V1035 Her |165252.8+383929 |EA | 10.9 |< 11.4 | |V | | | | | |77100 GSC | +401036 |V1036 Her |165551.9+245336 |EW | 11.6 | 12.1 | |V | | | | | |77100 GSC | +401037 |V1037 Her |165657.0+291906 |EA | 12.0 | 12.3 | |V | | | | | |77100 GSC | +401038 |V1038 Her |165819.8+334022 |EW | 11.8 | 12.4 | |V | | | | | |77100 GSC | +401039 |V1039 Her |165923.9+151228 |EA/RS: | 12.4 | 13.0 | |V | | | | | |77100 GSC | +401040 |V1040 Her |165931.0+191256 |EA | 12.5 | 13.0 : | |V | | | | | |77100 GSC | +401041 |V1041 Her |170101.2+492317 |EA | 11.6 |< 12.1 | |V | | | | | |77100 GSC | +401042 |V1042 Her |170250.5+214000 |EB | 11.94 | 13.09 | |V | | | | | |77126 UCAC2| +401044 |V1044 Her |171018.0+382642 |EW | 12.5 | 13.3 | |* | | | | | |77127 GSC | +401045 |V1045 Her |171059.9+461720 |EB | 10.9 | 11.4 | |V | | | | | |77100 DM | +401046 |V1046 Her |171130.3+231412 |EA | 12.5 | 12.95 | |V | | | | | |77100 GSC | +401047 |V1047 Her |171239.5+330800 |EW | 12.26 | 12.78 | |* | | | | | |77127 USNO | +401049 |V1049 Her |171642.0+212306 |EB | 10.8 | 11.2 | |V | | | | | |77100 DM | +401050 |V1050 Her |171650.0+382159 |EA: | 12.4 | 12.9 | |V | | | | | |77100 GSC | +401051 |V1051 Her |171727.8+271300 |EB | 12.5 | 12.8 | |V | | | | | |77100 GSC | +401052 |V1052 Her |171824.8+222851 |EW | 12.2 | 12.65 | |V | | | | | |77100 GSC | +401054 |V1054 Her |172007.8+133958 |EB | 11.9 | 12.3 | |V | | | | | |77100 GSC | +401055 |V1055 Her |172023.9+411513 |EW | 11.11 | 11.55 | |* | | | | | |77127 GSC | +401056 |V1056 Her |172142.6+405424 |EB | 10.2 | 10.3 | |V | | | | | |77100 DM | +401057 |V1057 Her |172303.6+175701 |EA | 11.8 | 12.2 | |V | | | | | |77100 GSC | +401059 |V1059 Her |172659.3+244148 |EA | 11.9 | 12.4 | |V | | | | | |77100 GSC | +401060 |V1060 Her |172741.3+274504 |EA | 12.1 | 12.8 | |V | | | | | |77100 GSC | +401061 |V1061 Her |172817.0+211556 |EA | 11.4 | 12.0 : | |V | | | | | |77100 DM | +401063 |V1063 Her |173621.2+303214 |EA | 10.8 | 11.0 | |V | | | | | |77100 DM | +401064 |V1064 Her |173920.6+354211 |EW | 11.3 | 11.6 | |V | | | | | |77100 GSC | +401065 |V1065 Her |174103.4+273434 |EW | 11.5 | 12.1 : | |V | | | | | |77100 GSC | +401066 |V1066 Her |174151.0+475104 |EB | 11.8 | 12.3 | |V | | | | | |77100 GSC | +401068 |V1068 Her |174323.1+475141 |EW: | 12.4 | 13.0 | |V | | | | | |77100 GSC | +401069 |V1069 Her |174743.9+463232 |EB | 12.3 | 13.0 | |V | | | | | |77100 GSC | +401070 |V1070 Her |174953.0+370840 |EA | 12.0 | 13.5 | |V | | | | | |77100 GSC | +401071 |V1071 Her |175852.9+481024 |EB | 11.3 | 11.75 | |V | | | | | |77100 GSC | +401073 |V1073 Her |180835.8+334205 |EW | 11.00 | 11.69 | |* | | | | | |77148 GSC | +401075 |V1075 Her |181624.8+501416 |BY | 8.94 | 8.98 | |V | | | | | |77119 DM | +401076 |V1076 Her |182605.8+232847 |M | 4.99 | 6.72 | |K | | | | | |77081 2MASS| +401077 |V1077 Her |183347.6+190215 |SRA | 10.8 | 12.3 | |V | | | | | |77158 GSC | +401079 |V1079 Her |162013.7+243611 |BY: | 8.9 |( 0.14 )| |Rc| | | 19.07 | |K0 |78188 78188| +401080 |V1080 Her |163627.8+141136 |DSCTC | 9.83 | 9.84 | |V | | | 0.0262 | |A2 |78022 DM | +401082 |V1082 Her |164035.1+490959 |BY | 9.00 |( 0.02 )| |V | | | 23. : | |K2V |78018 DM | +401084 |V1084 Her |164345.7+340240 |NL | 12.48 | 12.75 | |V | | | 0.1081 | | |78193 78193| +401085 |V1085 Her |164532.3+334948 |BY | 9.45 |( 0.01 )| |V | | | 13.65 : | |K5V |78018 DM | +401089 |V1089 Her |165742.2+472144 |BY | 7.93 |( 0.03 )| |V | | | 15.39 | |K0V |78018 DM | +401090 |V1090 Her |165753.2+472200 |BY | 7.76 |( 0.02 )| |V | | | 7.22 : | |K0V |78018 DM | +401091 |V1091 Her *|170724.5+361526 |EW | 12.04 | 12.28 | 12.27 |* |52454.130 | | 0.393530 | | |78161 GSC | +401092 |V1092 Her *|171639.9+293405 |EW | 11.93 |( 0.50 V )|( 0.46 )|* |52419.125 | | 0.384512 | | |78161 GSC | +401095 |V1095 Her *|172803.3+434124 |EW | 11.90 | 12.44 | 12.40 |* |52442.5724 | | 0.415381 | | |78264 GSC | +401097 |V1097 Her |173328.0+265548 |EW | 10.76 | 11.30 | |* |52463.4068 | | 0.360847 | | |78264 GSC | +401098 |V1098 Her |173937.2+501203 |EW | 12.44 |( 0.38 V )| |* |51627.337 | | 0.352264 | | |78161 GSC | +401100 |V1100 Her |174410.6+401651 |EW | 10.92 |( 0.34 )| |* |52024.9883 | | 0.346925 | | |78264 GSC | +401101 |V1101 Her *|180733.3+465435 |EW | 11.92 | 12.52 | 12.47 |* |52526.4776 | | 0.382655 | | |78264 GSC | +401103 |V1103 Her *|180818.6+343436 |EW | 11.91 | 12.43 | 12.37 |* |52526.3704 | | 0.291353 | | |78264 GSC | +401108 |V1108 Her *|183926.1+260410 |UGSU | 12.0 | 17.1 | |V | | | | |pec(UG) |78247 | +401109 |V1109 Her |184929.4+120841 |EB | 9.30 | 9.57 | |V |52760.834 | | 2.59849 | |B9 |78011 DM | +401110 |V1110 Her |185024.5+240624 |BY | 7.0 |( 0.02 )| |V | | | 11.7 | |K5 |78018 DM | +401111 |V1111 Her |185512.9+231313 |BY | 7.90 |( 0.03 )| |V | | | 1.1475 | |K5 |78018 DM | +401113 |V1113 Her |185652.7+144540 |M: | 11.8 | 14.8 | |* | | | | | |78006 2MASS| +401115 |V1115 Her |185706.2+125834 |M | 10.3 | 12.8 | |* |53480 | | | | |78006 2MASS| +401116 |V1116 Her |163016.4+165506 |DSCT | 11.16 | 11.45 | |V | | | 0.094681 |40 | |79064 79105| +401117 |V1117 Her *|163906.4+094755 |IS | 12.3 | 15.4 | |p | | | | | |79109 GSC | +401118 |V1118 Her |163945.4+091637 |SRA | 11.4 | 13.2 | |V |53898. | | 127.8 | | |79064 79040| +401119 |V1119 Her |164022.4+060730 |EB | 10.05 | 10.54 | 10.27 |* |51419.83 | | 0.72341 | |G0 |79025 DM | +401120 |V1120 Her |164119.4+082802 |SRB | 10.0 | 11.1 | |V | | | 276. | |M3 |79100 79022| +401121 |V1121 Her |164246.1+095329 |SRB | 10.9 | 12.4 | |V | | | 156. | | |79064 79017| +401122 |V1122 Her |164637.8+390325 |LB | 9.1 | 9.7 | |* | | | | |M1 |79100 79022| +401123 |V1123 Her |165013.1+085911 |SR | 12.2 | 14.0 | |V | | | 157. | | |79100 79022| +401124 |V1124 Her *|170432.9+142633 |RRAB | 12.1 | 13.2 | |* |51357.772 | | 0.5510 |15 | |79025 79050| +401125 |V1125 Her |170526.6+141359 |LB | 10.2 | 10.9 | |V | | | | |M3 |79100 79022| +401127 |V1127 Her |170711.9+361810 |SR | 10.1 | 11.4 | |* |51438. | | 180. | |M7: |79100 79026| +401128 |V1128 Her |173459.1+172108 |LB | 9.6 | 10.0 | |* | | | | | |79100 79040| +401130 |V1130 Her |174644.1+154202 |LB | 12.2 | 13.3 | |V | | | | | |79100 79022| +401134 |V1134 Her |182814.5+121951 |EB | 12.50 | 13.0 | 12.9 |V |51484.658 | | 0.602937 | | |79003 79128| +401136 |V1136 Her |183247.9+244045 |GDOR | 8.07 |( 0.06 )| |B | | | 1.0044 | |F2IV |79219 DM | +401141 |V1141 Her *|155458.5+424611 |RRC | 11.32 | 11.64 | |* |54189.697 | | 0.317152 | |A2 |80269 80269| NL80_2 +401143 |V1143 Her *|155657.0+505406 |EA | 11.6 | 13.2 | 11.7 |* |51393.989 | | 1.6862 |11 | |80104 80104| NL80_2 +401146 |V1146 Her *|155818.7+481448 |EA | 11.10 | 11.45 : | 11.45 : |V |51277.840 | | 7.654 |03 | |80042 GSC | NL80_2 +401148 |V1148 Her |160122.0+482938 |EW | 12.5 | 13.1 | 13.0 |* |51399.849 | | 0.282255 | | |80101 80101| NL80_3 +401153 |V1153 Her |160434.8+504514 |EW | 12.4 | 12.65 | 12.6 |* |51396.909 | | 0.37422 | | |80101 80101| NL80_3 +401158 |V1158 Her *|161123.2+440621 |EW: | 9.78 | 9.95 | 9.94 |* |51408.74 | | 0.6600 | |A3 |80101 80101| NL80_3 +401160 |V1160 Her |161216.2+431631 |EW | 12.2 | 12.65 | 12.6 |* |51381.548 | | 0.376075 | | |80101 80101| NL80_3 +401163 |V1163 Her |161744.8+085459 |RS | 11.55 | 11.80 | |V | | | 17.23 | | |80442 GSC | NL80_3 +401165 |V1165 Her |162000.0+043646 |RS | 10.20 | 10.55 | |V | | | 1.437 | |K2 |80034 DM | NL80_3 +401166 |V1166 Her |162001.8+042841 |DSCT | 12.5 | 13.3 | |V | | | 0.108157 | | |80002 GSC | NL80_3 +401167 |V1167 Her |162003.2+070729 |EW | 9.72 | 10.04 | 9.98 |V |54988.6933 | | 0.275282 | |G5 |80001 DM | NL80_3 +401169 |V1169 Her |162201.2+225022 |BY | 11.83 |( 0.08 : *)| |V | | | 1.3728 | |M |80021 GSC | NL80_3 +401170 |V1170 Her |162240.8+430108 |EW | 12.2 | 12.5 | 12.45 |* |51373.610 | | 0.41409 | | |80102 80102| NL80_3 +401171 |V1171 Her |162255.3+224604 |BY | 10.86 |( 0.05 : *)| |V | | | 1.7387 | |K |80021 GSC | NL80_3 +401173 |V1173 Her |162410.4+455527 |EW | 9.95 | 10.4 | 10.35 |* |51383.737 | | 2.265629 | | |80447 80447| NL80_3 +401174 |V1174 Her |162423.4+044522 |RS | 10.20 | 10.46 | |V | | | 4.963 | | |80034 DM | NL80_3 +401175 |V1175 Her |162446.2+213903 |EW | 11.13 | 11.33 | 11.32 |V |55049.452 | | 0.321197 | | |80001 GSC | NL80_3 +401176 |V1176 Her |162506.6+300226 |BY | 9.73 | 10.06 | |* | | | 14.2 | | |80001 DM | NL80_3 +401177 |V1177 Her |162510.0+051454 |RS: | 11.7 | 12.2 | |V | | | 3.4487 | | |80001 GSC | NL80_3 +401178 |V1178 Her |162641.3+335042 |BY | 9.66 | 9.86 | |Hp| | | 23.1808 | |G0 |80021 HIP | NL80_3 +401179 |V1179 Her |162744.9+110338 |EW | 11.45 | 11.85 | 11.80 |V |53906.4880 | | 0.385498 | | |80001 GSC | NL80_3 +401181 |V1181 Her |162817.3+371124 |EW | 11.19 | 11.60 | 11.56 |* |53898.3997 | | 0.337043 | | |80182 GSC | NL80_3 +401182 |V1182 Her |162823.0+365602 |EA | 11.7 | 12.05 | |* |51393.535 | | 1.9129 |11 | |80063 80063| NL80_3 +401184 |V1184 Her |162835.2+360235 |RS | 12.3 | 12.5 | |* | | | 16.6574 | | |80067 80067| NL80_3 +401185 |V1185 Her |162836.1+471758 |EW | 10.9 | 11.25 | 11.22 |* |51390.561 | | 0.35979 | | |80101 80101| NL80_3 +401187 |V1187 Her |162919.9+354003 |EW | 11.1 |( 0.17 )|( 0.17 )|R |53877.4694 | | 0.310766 | | |80001 GSC | NL80_3 +401191 |V1191 Her |162946.6+281038 |BY | 10.46 | 10.64 | |V | | | 1.4639 | | |80021 GSC | NL80_3 +401194 |V1194 Her |163052.9+241224 |BY | 10.55 | 10.80 | |V | | | 53.07 | | |80027 GSC | NL80_3 +401195 |V1195 Her |163135.7+484336 |RRAB | 11.9 | 12.5 | |* |51391.510 | | 0.60971 |19 | |80168 80168| NL80_3 +401198 |V1198 Her |163420.9+424433 |EW | 10.77 | 11.05 | 11.05 |* |51386.817 | | 0.36362 | | |80102 80102| NL80_3 +401200 |V1200 Her |163527.4+350057 |BY | 12.23 |( 0.12 *)| |V | | | 0.9166 | |M4 |80021 GSC | NL80_3 +401205 |V1205 Her |163739.5+221113 |BY | 10.77 | 10.88 | |V | | | 2.0912 | | |80021 GSC | NL80_3 +401206 |V1206 Her |163741.4+291951 |BY | 11.43 |( 0.11 *)| |V | | | 0.8246 | | |80021 GSC | NL80_3 +401208 |V1208 Her |163850.6+405758 |EW | 12.25 | 12.45 | 12.45 |* |51390.958 | | 0.36332 | | |80102 80102| NL80_3 +401210 |V1210 Her |164153.1+114021 |RS | 9.8 | 10.1 | |* | | | 21.69 | |K0 |80158 DM | NL80_3 +401214 |V1214 Her |164703.5+094558 |RS | 11.3 | 11.5 | |* | | | 4.586 | | |80370 80370| NL80_3 +401216 |V1216 Her |164815.5+444429 |EW | 12.15 | 12.60 | 12.5 |* |51373.713 | | 0.30203 | | |80101 80101| NL80_3 +401217 |V1217 Her |164842.8+095622 |RRAB | 12.35 | 12.93 | |V |52385.5 | | 0.787630 |30 | |80002 GSC | NL80_3 +401219 |V1219 Her |164942.9+222004 |EB | 10.10 | 10.50 | 10.45 |V |53124.85 | | 23.1706 | |K7V |80001 GSC | NL80_3 +401220 |V1220 Her |164956.8+325236 |BY | 11.98 |( 0.14 *)| |V | | | 1.0396 | | |80021 GSC | NL80_3 +401221 |V1221 Her |165000.0+412226 |BY | 11.24 |( 0.11 *)| |V | | | 1.8137 | |K0 |80021 GSC | NL80_3 +401222 |V1222 Her |165025.8+272817 |BY | 11.32 |( 0.10 *)| |V | | | 2.2815 | | |80021 GSC | NL80_3 +401223 |V1223 Her |165034.1+454637 |EW | 10.42 | 10.67 | 10.62 : |* |51412.848 | | 0.67945 | | |80102 80102| NL80_3 +401224 |V1224 Her |165123.1+235542 |BY | 12.0 | 12.2 | |* | | | 3.026 | | |80370 80370| NL80_3 +401225 |V1225 Her |165211.9+202146 |BY | 12.43 |( 0.11 : *)| |V | | | 3.6987 | | |80021 GSC | NL80_3 +401226 |V1226 Her |165308.7+255835 |CWA | 9.88 | 10.27 | |V |54682.6 | | 9.6965 |50 |G5 |80001 DM | NL80_3 +401231 |V1231 Her *|165820.7+333353 |BY | 9.81 |( 0.04 *)| |V | | | 4.5302 | | |80021 GSC | NL80_3 +401233 |V1233 Her |165852.5+391423 |EW | 11.80 |( 0.36 )| |V |51243.3980 | | 0.310599 | | |80394 GSC | NL80_3 +401234 |V1234 Her |165909.6+205816 |BY | 11.90 |( 0.08 *)| |V | | | 4.1037 : | |M3V |80021 GSC | NL80_3 +401235 |V1235 Her |165921.9+342823 |BY | 10.66 |( 0.03 : *)| |V | | | 1.5636 | | |80021 GSC | NL80_3 +401236 |V1236 Her *|170033.8+200134 |BY | 9.72 | 9.86 | |V | | | 4.2298 | |G5 |80021 DM | NL80_3 +401238 |V1238 Her |170121.9+420950 |EW | 9.8 | 10.4 | 10.4 |B |44423.337 | | 0.3701518 | |G0 |80455 80455| NL80_3 +401241 |V1241 Her |170303.1+320326 |BY | 11.48 |( 0.09 *)| |V | | | 2.7718 | |F8 |80021 GSC | NL80_3 +401242 |V1242 Her |170313.5+245321 |BY | 9.85 | 10.05 | |V | | | 5.8417 | | |80021 GSC | NL80_3 +401243 |V1243 Her |170420.2+392859 |BY | 11.36 | 11.52 | |* | | | 0.79645 | | |80001 GSC | NL80_3 +401244 |V1244 Her |170538.1+335100 |RS | 11.5 | 11.7 | |* | | | 5.778 | | |80370 80370| NL80_3 +401245 |V1245 Her |170706.3+202922 |RS | 10.0 | 10.3 | |* | | | 39.1844 | | |80067 80067| NL80_3 +401246 |V1246 Her |170758.0+291915 |BY | 11.42 | 11.70 | |* | | | 3.0816 | | |80021 GSC | NL80_3 +401249 |V1249 Her |171331.0+232027 |BY | 10.35 | 10.60 | |V | | | 2.7852 | | |80021 GSC | NL80_3 +401253 |V1253 Her |171800.3+212809 |BY | 10.08 |( 0.03 *)| |V | | | 0.7904 | | |80021 GSC | NL80_3 +401254 |V1254 Her |171808.6+250612 |BY | 10.71 |( 0.06 *)| |V | | | 2.4103 | |K5 |80021 GSC | NL80_3 +401255 |V1255 Her |171921.1+480343 |BY | 9.75 |( 0.03 *)| |V | | | 5.9483 | |G5 |80021 DM | NL80_3 +401257 |V1257 Her |172228.6+365842 |BY | 10.63 |( 0.11 *)| |V | | | 1.2283 | |K5 |80021 GSC | NL80_3 +401258 |V1258 Her |172314.2+283650 |BY | 10.85 |( 0.06 *)| |V | | | 3.8881 | | |80021 GSC | NL80_3 +401259 |V1259 Her |172339.8+352757 |EA/RS | 11.4 | 11.8 | |* |51453.66 | | 23.161 |07 | |80001 GSC | NL80_3 +401262 |V1262 Her |172405.0+182937 |RS | 11.1 | 11.4 | |V | | | 11.563 | | |80370 80370| NL80_3 +401263 |V1263 Her |172413.7+402617 |BY | 11.38 |( 0.05 *)| |V | | | 0.2890 | | |80021 GSC | NL80_3 +401264 |V1264 Her |172715.6+333006 |EB | 12.35 | 12.7 | 12.45 |* |51400.797 | | 0.81474 | | |80085 80085| NL80_3 +401266 |V1266 Her |172852.7+191312 |BY | 10.3 | 10.5 | |* | | | 19.1288 | | |80067 80067| NL80_3 +401267 |V1267 Her |172907.0+274921 |RRAB | 12.4 | 13.3 | |V |53126.8609 | | 0.468850 |15 | |80002 GSC | NL80_3 +401268 |V1268 Her |172927.2+352405 |BY | 11.81 |( 0.21 *)| |V | | | 14.2202 | |K5V |80021 GSC | NL80_3 +401269 |V1269 Her |173005.0+184339 |BY | 10.69 |( 0.07 *)| |V | | | 12.6078 | |K0 |80021 GSC | NL80_3 +401270 |V1270 Her |173103.3+281507 |BY | 10.27 |( 0.10 *)| |V | | | 1.2653 | | |80021 GSC | NL80_3 +401273 |V1273 Her |173216.1+484750 |BY | 12.39 |( 0.19 *)| |V | | | 12.7178 | |K |80021 GSC | NL80_3 +401276 |V1276 Her |173636.8+151508 |BY | 10.34 |( 0.10 *)| |V | | | 2.6726 | | |80021 GSC | NL80_3 +401277 |V1277 Her |173637.5+460514 |EB | 10.5 | 10.85 | 10.7 |* |51386.534 | | 1.0593 | | |80471 80471| NL80_3 +401278 |V1278 Her |173658.2+300948 |BY | 11.00 |( 0.05 *)| |V | | | 5.1781 | |K4 |80021 GSC | NL80_3 +401280 |V1280 Her |173733.5+414620 |BY | 11.16 |( 0.07 *)| |V | | | 1.5480 | | |80021 GSC | NL80_3 +401283 |V1283 Her |173837.4+375357 |RRC | 10.72 | 11.02 | |* |51421.80 | | 0.27269 |40 | |80026 GSC | NL80_3 +401286 |V1286 Her |174143.8+341209 |EW | 12.27 | 12.91 | 12.88 |* |52898.3144 | | 0.334711 | | |80473 GSC | NL80_3 +401288 |V1288 Her |174311.1+334949 |BY | 11.74 |( 0.24 *)| |V | | | 6.3627 | | |80021 GSC | NL80_3 +401289 |V1289 Her |174357.2+341803 |EW | 10.88 | 11.59 | 11.56 |* |52907.3998 | | 0.340092 | | |80473 GSC | NL80_3 +401290 |V1290 Her *|174407.6+440452 |RS | 8.16 | 8.21 | |V | | | 64.1 | |G5-8III |80480 DM | NL80_3 +401291 |V1291 Her |174605.2+312105 |BY | 12.43 |( 0.10 *)| |V | | | 0.3789 | | |80021 GSC | NL80_3 +401292 |V1292 Her |174625.3+222900 |BY | 11.08 |( 0.09 *)| |V | | | 3.5384 | | |80021 GSC | NL80_3 +401293 |V1293 Her |174647.2+483437 |LB | 11.5 | 11.8 | |* | | | | | |80070 80070| NL80_3 +401294 |V1294 Her |174705.0+332129 |BY | 11.60 |( 0.06 *)| |V | | | 3.2041 | | |80021 GSC | NL80_3 +401295 |V1295 Her |174737.0+450215 |EW | 11.84 | 12.18 | 12.16 |* |53154.4451 | | 0.3492231 | | |80483 GSC | NL80_3 +401296 |V1296 Her |174903.1+230746 |BY | 11.42 | 11.72 | |V | | | 16.835 | | |80001 GSC | NL80_3 +401297 |V1297 Her |174947.0+335059 |BY | 10.90 |( 0.08 *)| |V | | | 1.3479 | | |80021 GSC | NL80_3 +401298 |V1298 Her |174951.7+232807 |EA | 9.75 | 10.08 | 9.94 |V |54547.9068 | | 2.14469 |07 |F8 |80001 DM | NL80_3 +401299 |V1299 Her *|175041.6+482717 |LB | 11.35 | 11.73 | |* | | | | | |80070 80070| NL80_3 +401301 |V1301 Her |175134.0+414127 |BY | 9.97 |( 0.07 *)| |V | | | 9.3576 | |KO |80021 GSC | NL80_3 +401302 |V1302 Her *|175239.1+434929 |EW | 12.0 | 13.0 | 13.0 |* |54610.347 | | 0.3162897 | | |80001 GSC | NL80_3 +401304 |V1304 Her *|175242.7+232729 |BY: | 10.00 | 10.15 | |V | | | 1.5451 | | |80001 GSC | NL80_3 +401305 |V1305 Her |175249.1+244516 |RRC | 12.05 | 12.75 | |V |52710.603 | | 0.291369 |35 | |80002 GSC | NL80_3 +401306 |V1306 Her |175308.1+423439 |EW | 11.30 | 11.97 | 11.94 |* |53121.5547 | | 0.370365 | | |80483 GSC | NL80_3 +401307 |V1307 Her |175319.1+213030 |BY | 10.7 | 11.0 | |V | | | 10.7768 | | |80021 GSC | NL80_3 +401308 |V1308 Her |175447.0+321335 |BY | 9.55 | 9.75 | |* | | | 1.10962 | | |80067 80067| NL80_3 +401309 |V1309 Her |175535.8+434820 |EW | 12.30 | 12.75 | 12.73 |* |53229.5522 | | 0.369881 | | |80483 GSC | NL80_3 +401310 |V1310 Her |175540.6+372516 |EA/RS | 12.45 | 13.45 | 12.93 |* |54007.66 | | 3.120829 |13 | |80001 GSC | NL80_3 +401311 |V1311 Her |175659.6+294715 |SRB | 11.13 | 11.43 | |* | | | 44. | | |80001 GSC | NL80_3 +401312 |V1312 Her |175711.4+224706 |BY | 11.74 |( 0.09 *)| |V | | | 1.8139 | |K7 |80021 GSC | NL80_3 +401313 |V1313 Her |175718.9+313316 |BY: | 10.79 |( 0.19 *)| |V | | | 0.6981 | | |80021 GSC | NL80_3 +401317 |V1317 Her |180100.5+233945 |BY | 10.41 | 10.60 | |V | | | 14.4080 | |K0 |80002 GSC | NL80_3 +401318 |V1318 Her |180121.2+225038 |RRAB | 12.2 | 13.1 | |V |53079.9058 | | 0.583400 |20 | |80002 GSC | NL80_3 +401319 |V1319 Her |180147.3+273910 |BY | 10.22 | 10.42 | |* | | | 6.15 | |G0 |80001 GSC | NL80_3 +401320 |V1320 Her |180207.5+183044 |EA/RS | 11.38 | 11.55 | |V |54574.867 | | 0.547693 |09 | |80001 GSC | NL80_3 +401321 |V1321 Her |180213.9+470112 |EW | 10.68 | 10.94 | 10.87 |* |51291.8086 | | 0.29437 | | |80001 GSC | NL80_3 +401322 |V1322 Her |180238.8+335635 |BY | 9.62 |( 0.05 *)| |V | | | 7.4245 | |G5 |80021 GSC | NL80_3 +401324 |V1324 Her |180426.6+393047 |BY | 11.84 |( 0.11 *)| |V | | | 1.5451 | | |80021 GSC | NL80_3 +401325 |V1325 Her |180500.8+415647 |GDOR | 6.64 |( 0.02 )| |B | | | 0.4210 | |F0V |80289 HIP | NL80_3 +401326 |V1326 Her |180525.0+175730 |BY | 11.45 |( 0.13 *)| |V | | | 27.1661 | | |80021 GSC | NL80_3 +401328 |V1328 Her |180853.5+370707 |BY | 11.87 |( 0.18 *)| |V | | | 8.3429 | | |80021 GSC | NL80_3 +401330 |V1330 Her |180921.7+364516 |RRC | 12.00 | 12.41 | |* |51330.70 | | 0.27026 |33 | |80026 GSC | NL80_3 +401331 |V1331 Her |180921.8+381706 |EA | 10.3 | 10.7 | 10.6 |* |51389.62 | | 3.5627 |08 |A0 |80104 80104| NL80_3 +401332 |V1332 Her |181048.8+171230 |RRAB | 12.3 | 13.4 | |V |53632.5602 | | 0.52235 |25 | |80001 GSC | NL80_3 +401336 |V1336 Her |182131.6+233431 |BY | 11.51 |( 0.07 *)| |V | | | 1.0945 | |K0 |80021 GSC | NL80_3 +401343 |V1343 Her |182555.2+145758 |LPB: | 6.48 | 6.52 | |U*| | | 0.47057 | |B9V |80112 HIP | NL80_3 +401344 |V1344 Her *|182718.4+190833 |EA | 11.47 | 12.06 | 12.06 : |V |53500.775 | | 7.14594 |09 |G0 |80002 GSC | NL80_3 +401348 |V1348 Her |182913.8+210418 |RRAB | 11.1 | 12.1 | |V |54702.5244 | | 0.59108 |15 | |80001 GSC | NL80_3 +401349 |V1349 Her |182945.3+215826 |LB | 12.5 | 13.1 | |* | | | | | |80062 GSC | NL80_3 +401350 |V1350 Her |183344.7+225522 |BY | 12.1 | 12.3 | |* | | | 7.282 | | |80043 80043| NL80_3 +401351 |V1351 Her |183512.8+185502 |EA | 10.60 | 10.98 | 10.92 |V |51403.882 | | 4.59618 |08 |F2 |80042 DM | NL80_3 +401352 |V1352 Her |183647.0+171848 |RV: | 12.45 | 13.0 | |* |51328.757 | | 86.0 | | |80001 GSC | NL80_3 +401353 |V1353 Her |183812.2+222430 |EA | 11.46 | 12.16 | 11.84 |V |52747.884 | | 5.5598 |20 | |80042 GSC | NL80_3 +401354 |V1354 Her |183825.3+185838 |LB | 11.7 | 12.4 | |V | | | | | |80062 GSC | NL80_3 +401355 |V1355 Her |183849.8+244416 |EW | 11.65 | 11.9 | 11.9 |V |52729.1 | | 0.289274 | | |80002 GSC | NL80_3 +401357 |V1357 Her |184330.1+224448 |SRD | 10.32 | 10.46 | |V |53894.7 | | 52.9 | |K2 |80001 GSC | NL80_3 +401358 |V1358 Her |184337.3+224344 |SRB | 12.0 | 12.4 | |* | | | 44.7 | | |80001 GSC | NL80_3 +401359 |V1359 Her |185217.4+170032 |EA: | 12.38 | 13.08 | 12.68 |V |53130.770 | | 7.6706 |17 | |80042 GSC | NL80_3 +409001 |alf Her *|171438.9+142325 |SRC | 2.74 | 4.0 | |V | | | | |M5Ib-II | 08953| +409003 |gam Her |162155.2+190911 |SRD: | 4.02 |( 0.09 )| |B | | | | | |71140 BD | +409009 |iot Her |173927.9+460023 |BCEP | 2.93 |( 0.02 )| |U | | | | | |69161 BD | +409013 |nu. Her *|175830.1+301121 |SRD: | 4.38 | 4.48 | |V | | | 29. : | |F2II |04044 BD | +409014 |ksi Her |175745.9+291452 |SRD | 3.85 | 3.88 | |Hp| | | | | |HIP HIP | +409015 |omi Her *|180732.5+284545 |GCAS | 3.80 |( 0.07 )| |B | | | | |B9Ve | BD | +409016 |phi Her *|160846.2+445606 |ACV: | 4.22 | 4.23 | |Hp| | | | | |HIP HIP | +409019 |tau Her |161944.4+461848 |LPB | 3.83 | 3.86 | |Hp| | | | | |HIP HIP | +409024 |ome Her *|162524.9+140200 |ACV | 4.57 |( 0.08 )| |V |41254.70 | | 2.951 | |B9p(Cr-Mn-Sr) |07805 BD | +409107 |g Her *|162838.5+415254 |SRB | 4.3 | 6.3 | |V | | | 89.2 | |M6III | 00002| +409121 |u. Her *|171719.6+330600 |EA/SD | 4.69 | 5.37 | 4.93 |V |05830.0326 | | 2.0510270 |28 *|B1.5Vp+B5III |05684 08953| +410001 |R Hor *|025352.8-495323 |M | 4.7 | 14.3 | |V |41494. | | 407.6 |40 |M5e-M8eII-III |00001 00002| +410002 |S Hor |022516.0-593413 |M | 10. |< 13. | |p |16854. | | 335.8 | |M7II:e |00001 05464| +410003 |T Hor |030052.1-503832 |M | 7.2 | 13.7 | |V |41957. | | 217.60 |48 |M5IIe |00001 00002| +410004 |U Hor |035247.0-454948 |M | 7.8 |< 15.1 | |p |34638. | | 348.4 | |M6IIIe |00001 05625| +410005 |V Hor *|030328.4-585559 |SRB | 8.7 | 9.8 | |p | | | | |M5III |01486 03389| +410006 |W Hor |024414.8-541804 |SRB | 10.7 | 11.6 | |p | | | 137. |40 : |MC |01486 CoD | +410007 |X Hor *|024745.0-590304 |SRA | 10.3 | 12.4 | |p |30063. | | 279.6 | |M6-8e |00001 03389| +410008 |Y Hor |023647.5-512905 |CST: | 12. | | |p | | | | | |00016 06286| +410010 |RR Hor |034013.1-524346 |CST | 10.0 | | |p | | | | |G |00016 CoD | +410011 |RS Hor |023552.2-623501 |M | 9.8 |< 15.0 | |p |30100. | | 202.85 | |M3e |01486 06286| +410012 |RT Hor |032843.8-555845 |M | 10.0 |< 14.0 | |p |28104. | | 335. | |M5e |00016 02338| +410018 |RZ Hor |030524.3-664103 |E | 11.2 | 13.5 | |p |26715.0 | | 3.3402 | | |00357 06286| +410023 |SW Hor |023835.0-540803 |M | 11. |< 13. | |p | | | | | |00085 02380| +410024 |SX Hor |023010.5-650613 |SR | 12. | 13. | |p | | | | |M5e |00085 04256| +410025 |SY Hor *|041418.4-462657 |EW/KW | 11.4 | 12.1 | 12.0 |V |34243.382 | | 0.3116392 | | |00080 02380| +410026 |SZ Hor *|030701.2-560805 |EW/KW | 10.4 : | 10.8 : | 10.7 : |p |28048.610 | | 0.4804562 | | |05433 CPD | +410027 |TT Hor |032704.4-455257 |EA | 9.8 | 10.5 | |p |28761.512 | | 2.6081127 |15 *| |07806 06286| +410028 |TU Hor *|033037.0-472231 |ELL | 5.90 | 6.04 | 6.03 |V |43055.620 | | 0.935971 | |A2V+K |04429 CoD | +410029 |TV Hor |023015.6-574834 |SRB | 6.74 | 6.89 | |V | | | 30. : | |M4-5III |06351 CoD | +410030 |TW Hor |031233.2-571918 |SRB | 5.52 | 5.95 | |V | | | 158. : | |C7,2(N0) |07296 CoD | +410032 |TY Hor *|022148.1-630502 |M: | 10.5 | 13. | |p | | | | | |00085 06031| +410033 |TZ Hor |022526.4-662939 |LB: | 6.41 |( 0.11 )| |V | | | | |M5III |04614 CPD | +410034 |UU Hor *|031825.4-493602 |RRAB | 12.1 | 12.9 | |p |24722.571 | | 0.6436812 |17 | |07806 07806| +410042 |VX Hor |041137.4-443801 |DSCT: | 9.4 | 9.61 | |V | | | | |F5-6V |05945 CoD | +410044 |VZ Hor |025153.0-613705 |BY | 8.75 | 8.88 | |V | | | | | |68135 CPD | +410046 |WX Hor |034935.8-520448 |SRA | 7.14 | 7.88 | |V | | | | | |71030 71230| +410047 |WY Hor |023401.1-653634 |EW | 9.55 | 9.70 | |Hp| | | | | |HIP HIP | +410048 |WZ Hor |024801.1-625751 |EA: | 8.14 | 8.46 | |Hp| | | | | |HIP HIP | +410049 |XX Hor |024826.4-602453 |LB: | 8.99 | 9.09 | |Hp| | | | | |HIP HIP | +410050 |XY Hor |024940.9-524531 |SRB | 7.72 | 7.98 | |Hp| | | | | |HIP HIP | +410051 |XZ Hor |025452.7-515713 |LB: | 8.73 | 8.91 | |Hp| | | | | |HIP HIP | +410052 |YY Hor |030336.5-653143 |SRB | 8.00 | 8.18 | |Hp| | | | | |HIP HIP | +410053 |YZ Hor |030922.1-485746 |ACV: | 8.16 | 8.30 | |Hp| | | | | |HIP HIP | +410054 |ZZ Hor |031544.4-453227 |LB: | 9.01 | 9.11 | |Hp| | | | | |HIP HIP | +410055 |AA Hor |031737.2-461206 |LB: | 8.69 | 8.79 | |Hp| | | | | |HIP HIP | +410056 |AB Hor |032302.9-513317 |LB: | 8.11 | 8.22 | |Hp| | | | | |HIP HIP | +410057 |AC Hor |032659.3-533351 |LB: | 9.02 | 9.19 | |Hp| | | | | |HIP HIP | +410058 |AD Hor |033549.8-434259 |DSCTC | 7.03 | 7.11 | |Hp| | | | | |HIP HIP | +410059 |AE Hor |040906.7-482834 |EA | 8.56 | 8.87 | |Hp| | | | | |HIP HIP | +410060 |AF Hor |024147.1-525930 |UV | 11.8 |( 4.0 U )| |V | | | | | |75099 GSC | +410061 |AG Hor |030521.3-521805 |SRB | 9.9 | 11.0 | |V | | | 142. | |Me |79100 DM | +410062 |AH Hor |035214.4-490418 |SRB | 8.9 | 9.7 | |V | | | 73. | | |79100 DM | +410064 |AK Hor |031508.7-514410 |E/RS | 9.54 | 9.76 | |V |53699.635 | | 21.4105 | |K1 |80138 DM | NL80_1 +420001 |R Hya *|132942.8-231653 |M | 3.5 | 10.9 | |V |43596. | | 388.87 |49 |M6e-M9eS(Tc) |00001 00002| +420002 |S Hya |085334.0+030407 |M | 7.2 | 13.3 | |V |43509. | | 256.63 |49 |M4e-M8.0e |00001 00002| +420003 |T Hya *|085539.8-090829 |M | 6.7 | 13.48 | |V |41975. | | 298.7 |49 |M3e-M9:e |00001 00002| +420004 |U Hya |103733.3-132304 |SRB | 7.0 | 9.4 | |B | | | 450. : | |C6.5,3(N2)(Tc) |03610 03610| +420005 |V Hya *|105137.3-211500 |SRA | 10.9 | 16. | |p |30920. | | 530.7 |50 |C6,3e-C7,5e(N6e) |09247 00002| +420006 |W Hya *|134902.0-282204 |SRA | 7.7 | 11.6 | |p |43271. | | 361. |50 |M7.5e-M9ep |00001 08953| +420007 |X Hya *|093530.3-144129 |M | 7.2 | 13.6 | |V |41060. | | 301.10 |42 |M7e-M8.5e |00001 00002| +420008 |Y Hya *|095103.7-230102 |SRB | 8.3 | 12.0 | |p | | | 302.8 | |C5,4(N3p) |00693 05151| +420009 |Z Hya |114739.3-331636 |SRB | 8.8 | 9.8 | |V | | | 75. : | | |00066 00546| +420010 |RR Hya *|094459.0-240116 |M | 8.6 | 14.5 | |V |39212. | | 343.49 |50 |M3.0e-M8e |00001 00002| +420011 |RS Hya *|105119.1-283741 |M | 9.2 | 14.4 | |V |39169. | | 338.6 |45 |M6e |00001 00002| +420012 |RT Hya *|082941.1-061908 |SRB | 7.0 | 10.2 | |V | | | 290. |46 |M6e-M8e |03616 00002| +420013 |RU Hya *|141134.4-285307 |M | 7.2 | 14.3 | |V |43162. | | 331.5 |35 |M6e-M8.8e |00001 00002| +420014 |RV Hya |083943.8-093513 |SRC | 8.7 | 10.0 | |p | | | 116. | |M5II |00374 08953| +420015 |RW Hya *|133418.1-252249 |ZAND | 10.0 | 11.2 | |p |19128. | | 370. | |M2epIII |09253 08953| +420016 |RX Hya *|090541.2-081540 |EA/SD | 8.9 | 11.6 |( 0.05 )|V |43447.700 | | 2.2816450 |13 |A8 |09254 00462| +420017 |RY Hya |082006.3+024556 |SRB | 12.2 | 15. | |p | | | 529. | |C6,4e(Nb) |00374 BD | +420018 |RZ Hya |092450.3-064735 |M | 9.2 |< 12.5 | |V |39860. | | 332.54 | |M4e-M5 |00001 00583| +420019 |SS Hya *|133029.5-233858 |EA: | 7.88 | 8.1 | |B | | | | |B9 |00018 BD | +420020 |ST Hya |093751.8-203914 |M | 8.8 | 14.4 | |V |40282. | | 304.75 | |Me |00001 02452| +420021 |SU Hya *|095343.3-215042 |SRB | 10.6 | 11.9 | |p | | | 95. : | |M4III: |00693 BD | +420022 |SV Hya *|123030.5-260251 |RRAB | 9.78 | 11.00 | |V |39318.319 | | 0.47854395 |15 |F0-F8 |00001 01786| +420023 |SW Hya |130320.4-290611 |M | 9.8 |< 13.0 | |p |29302. | | 218.8 | |M2e |00001 06286| +420024 |SX Hya *|134437.4-264648 |EA/SD | 8.6 | 12.6 | |p |44344.451 | | 2.895737 |11 |A3+K5: |00001 08953| +420025 |SY Hya *|082951.7-092358 |EA/SD | 10.7 |< 13.6 | |p |32216.356 | | 3.40292 | |A |00001 08543| +420026 |SZ Hya *|091348.8-091909 |RRAB | 10.44 | 11.84 | |V |40679.412 | | 0.53724022 |15 |A7 |06557 00182| +420027 |TT Hya *|111312.5-262754 |EA/SD | 7.25 | 9.02 | 7.32 |V |43918.1060 | | 6.95342913 |11 |A5IIIe+G5IV |09127 03628| +420028 |TU Hya *|085816.4-004953 |M | 10.5 | 15.8 | |p |42476. | | 277.3 | |M5e |00001 01787| +420029 |TV Hya |133710.6-233658 |E: | 8.0 | 8.2 | |p | | | | |A3 |00018 BD | +420030 |TW Hya |110151.9-344217 |S: | 10.5 | 12.2 | |p | | | | | |00016 HIP | +420031 |TX Hya |092348.1-020529 |CST: | 9.8 | | |p | | | | |A1 |01437 BD | +420032 |TY Hya *|092902.4+053428 |EA/SD | 10.5 | 13.5 | |p |34478.464 | | 4.661078 |10 |A0 |08712 06286| +420033 |TZ Hya |093139.9+035421 |SR: | 11.8 | 13.5 | |p | | | | |M |00351 00351| +420034 |UU Hya *|093629.7+040640 |RRAB | 11.79 | 12.73 | |V |39478.934 | | 0.5238684 |14 |A0-A9 |07032 02455| +420039 |UZ Hya |091646.2-043513 |M | 8.8 | 14.5 | |V |42527. | | 260.95 |50 |M4e |00001 00132| +420040 |VV Hya *|091114.5-092206 |M | 10.4 |< 16. | |p |40309. | | 149.1 | |Me |00001 00975| +420041 |VW Hya |083351.0-143954 |EA/SD | 10.5 | 14.1 | |V |26421.430 | | 2.696423 |12 |A0 |00001 00132| +420042 |VX Hya *|094546.9-120014 |DSCT: | 10.21 | 10.96 | |V | | | 0.2233889 | |F2Ib-F8 |03630 00975| +420043 |VY Hya *|102016.0-230905 |EA/SD | 9.0 | 11.3 | 9.1 |p |23535.601 | | 2.00119519 |09 |A3 |00007 08953| +420044 |VZ Hya *|083141.4-061908 |EA/DM | 8.96 | 9.68 | 9.46 |V |40254.8607 | | 2.9042998 |07 *|F5V+F5V |05691 08953| +420045 |WW Hya |085746.4-031655 |M | 10.5 |< 15. | |p |42446. | | 310.77 | | |00001 00464| +420046 |WX Hya |091326.8-142310 |M | 9.5 |< 12.5 | |V |39914. | | 235.78 | |M3e |00001 00464| +420047 |WY Hya *|081410.9+002944 |EW/KE | 10.4 | 11.2 | 11.2 |p |40570.9755 | | 0.7160065 | |A6+A6 |00001 00491| +420048 |WZ Hya *|101324.1-130817 |RRAB | 10.27 | 11.28 | |V |39627.363 | | 0.537715 |16 |A2 |05233 06286| +420049 |XX Hya *|090949.5-153559 |RRAB | 11.24 | 12.49 | |V |39832.011 | | 0.50776718 |12 | |00001 00975| +420050 |XY Hya |092243.0-241622 |SR | 12.0 | 13.2 | |p | | | | | |01353 06286| +420063 |AI Hya *|081847.5+001701 |EA+DSCTC | 9.35 | 9.94 | 9.84 |V |41726.3872 | | 8.289676 |10 |F0+F5 |08051 07164| +420064 |AK Hya |083953.5-171811 |SRB | 6.33 | 6.91 | |V | | |( 75. :) | |M4III |08837 08953| +420065 |AL Hya |091446.2+024817 |E/SD | 11. |< 13. | |V |28544.90 | | 4.02630 | |A7 |01240 06286| +420068 |AO Hya |092042.5-241552 |I | 11.5 | 12.5 | |p | | | | | |01353 06286| +420069 |AP Hya |092415.0-215212 |I | 12.5 | 13.6 | |p | | | | | |01353 06286| +420071 |AR Hya |092553.6-234549 |LB | 10.9 | 11.9 | |p | | | | |M4 |01353 06286| +420072 |AS Hya |093046.8-185614 |EA | 10.5 |< 12. | |p |25651.0 | | 15.99 : | | |00190 00190| +420074 |AU Hya |093123.0-222533 |I | 11.6 | 13.0 | |p | | | | | |01353 06286| +420075 |AV Hya *|093502.5+051924 |EB/KE | 10.2 | 10.77 | 10.35 |V |36673.376 | | 0.6834062 | |A1 |09260 00196| +420078 |AY Hya |094329.1-225741 |LB | 12.2 | 12.8 | |p | | | | | |01353 06286| +420079 |AZ Hya |094536.3-235350 |LB | 12.0 | 13.3 | |p | | | | |M6 |01353 06286| +420081 |BC Hya |094956.0-224939 |E | 11.2 | 12.0 | |p | | | | | |01353 06286| +420082 |BD Hya |111611.8-301051 |SRA | 10.4 | 12.2 | |p |27900. | | 117.4 |45 |M0e |00076 06286| +420084 |BF Hya |110141.1-325009 |M | 12.0 | 15.5 | |p |27900. | | 294. | |Me |00076 06286| +420085 |BG Hya |110241.4-323536 |M | 12.4 |< 16.5 | |p |28300. | | 262. | |Me |00076 UCAC2| +420086 |BH Hya |110916.8-333711 |M | 11.5 | 15.5 | |p |27850. | | 211. | |Me |00076 USNO | +420087 |BI Hya |111148.2-322254 |RR | 11.3 | 12.2 | |p |27901.260 | | 0.526464 | | |00076 06286| +420088 |BK Hya |112003.1-351524 |LB | 10.4 | 11.4 | |p | | | | |K5 |00076 06286| +420089 |BL Hya |122532.4-311904 |M | 12.5 | 16.5 | |p | | | 146. | | |00078 06286| +420106 |CE Hya |124052.0-291955 |SRA | 12.4 | 13.4 | |V |42910. | | 167.2 |50 : | |06577 06286| +420119 |CS Hya |084442.8+042547 |SR | 12.0 | 13.9 : | |p |26025. | | 174.5 | |M |04027 00531| +420122 |CV Hya |085439.0+061713 |LB | 11.5 | 13.3 | |p | | | | | |04027 00196| +420126 |CZ Hya |102718.1-253256 |M | 9.7 |< 15.5 | |p |27546. | | 442. | |Ce(Ne) |00001 08953| +420127 |DD Hya *|081231.8+025005 |RRAB | 11.5 | 12.5 | |p |41695.504 | | 0.501776 |12 |A-F |04957 01432| +420128 |DE Hya *|082747.5+053859 |EA/SD | 11. | 14.0 | |V |31149.151 | | 4.227678 |10 |A2 |03115 00279| +420129 |DF Hya *|085502.2+060538 |EW/KW | 11. | 11.5 | 11.5 |p |31138.231 | | 0.3305978 | |G0 |00001 00279| +420130 |DG Hya |085806.3-052626 |RRAB | 11.61 | 12.62 | |V |37016.328 | | 0.429973 |15 |A0 |03635 00190| +420131 |DH Hya *|090014.8-094644 |RRAB | 11.36 | 12.65 | |V |31176.244 | | 0.4889982 |13 |A4-F4 |03634 00464| +420132 |DI Hya |090651.3-123137 |EA | 11. | 12. | |p |31194.131 | | 0.6147132 |28 *|A6: |00279 00279| +420133 |DK Hya *|094453.0-205413 |EB | 10.5 | 11.5 | 10.7 |p |31178.216 | | 0.521951 | | |00001 00279| +420134 |DL Hya |095226.8-233921 |M | 12.3 |< 16.0 | |p |26300. | | 398. | |Me |01353 00190| +420135 |DM Hya *|095413.6-232553 |EA/SD: | 11.9 | 12.6 | |p |31178.367 | | 0.78685 : |23 | |00279 00279| +420136 |DN Hya |114116.7-334233 |M | 11.4 | 14.4 | |p |28190. | | 182.4 | |Me |00066 02385| +420142 |DT Hya |115400.2-311540 |RR | 11.7 | 12.6 | |p |27900.524 | | 0.56798 | | |00066 06286| +420143 |DU Hya |115458.1-315525 |EA/SD | 11.9 | 14.0 | |p |27891.254 | | 1.66022 | | |00066 06286| +420144 |DV Hya |115624.4-341627 |SRB | 11.2 | 11.8 | |p | | | 107. | |MA |00066 06286| +420148 |DZ Hya |120127.7-321335 |EA/KE | 11.4 | 11.9 | |p |29015.446 | | 1.08777 | | |00066 06286| +420154 |EK Hya |120848.9-300420 |RR | 12.0 | 12.9 | |p |27890.570 | | 0.72340 | | |00066 06286| +420158 |EO Hya |124220.7-255309 |M | 12.2 |< 16.0 | |p |29335. | | 291.97 | | |01109 06286| +420159 |EP Hya |125144.0-264645 |M | 10.8 |< 15.5 | |p |29722. | | 166.00 | |Me |00001 06286| +420163 |ET Hya |083504.2-085010 |RRAB | 10.9 | 12.0 | |p |35921.386 | | 0.685519 |12 | |05963 00975| +420164 |EU Hya *|084203.6-064349 |EA/DW | 10.1 | 10.8 | 10.2 |p |34126.335 | | 0.7782085 |14 *|F2 |00001 06558| +420167 |EX Hya *|125224.2-291456 |UGSU+E | 9.6 | 13.99 | |V | | | | |pec(UG) |05695 08852| +420168 |EY Hya *|084621.2+013756 |SRA | 9.6 | 12.0 | |p |32707. | | 182.7 | |M7 |04027 08953| +420169 |EZ Hya *|092641.1-134506 |EW/KW | 10.4 | 10.7 | 10.7 |V |42454.6891 | | 0.44975201 | |F9 |09192 BD | +420170 |FF Hya |103751.8-120115 |SRB | 8.2 | 10.3 | |p | | | 85. | |M6 |05828 08953| +420171 |FG Hya *|082703.9+033052 |EW/KW | 9.90 | 10.28 | 10.25 |V |44968.2764 | | 0.327832 | |G0 |00001 00182| +420172 |FH Hya |093401.8-065919 |LB | 10.0 | 10.5 | |p | | | | |K-M |00351 08953| +420173 |FI Hya *|123955.9-264017 |M | 10.2 | 17.4 | |p |33661. | | 324.1 | |M4e(S4,4e) |00001 09268| +420174 |FK Hya |082427.9-083113 |LB | 8.9 | 10.2 | |p | | | | |MB |01792 08953| +420175 |FL Hya |092235.9-160133 |M | 11. |< 13. | |p | | | | | |00132 00132| +420176 |FM Hya |094331.4-183430 |M | 11. | 16.0 | |p |26790. | | 300. : | |Me |00190 00190| +420177 |FN Hya |094627.1-172912 |M | 11.5 |< 12.5 | |p |26750. | | 300. : | | |00190 00190| +420178 |FO Hya |095943.3-190756 |EA/KE | 9.5 | 10. | |p |31216.15 | | 1.159 | | |00279 00279| +420179 |FP Hya |111307.8-283735 |M | 10. | 14.2 | |p | | | | | |01111 01111| +420180 |FQ Hya |135906.8-255144 |M | 11. | 14.3 | |p |36720. | | 355. : | |Me |03122 CoD | +420181 |FR Hya |083836.8-161730 |M | 12. |< 13. | |p |34100. | | 196. : | | |00836 00190| +420182 |FS Hya *|100737.8-164111 |SRB | 9.5 | 11.5 | |p | | | 166.7 | |M |01113 08953| +420183 |FT Hya |135645.1-253243 |M | 10.5 |< 12. | |p |36366. | | 150.7 | |Me |03637 01111| +420184 |FU Hya |143832.0-294327 |M | 10.8 | 13.3 | |p |33395. | | | |Me |01112 04001| +420185 |FV Hya |084309.5+054724 |ISB: | 10.7 | 11.4 | |p | | | | |G8 |03095 03095| +420186 |FW Hya *|110419.8-332647 |EB | 12.2 | 12.5 | 12.4 |V |34478.279 | | 0.509603 | | |00080 CoD | +420187 |FX Hya |132758.9-270552 |RRAB | 11.9 | 12.9 | |V |34242.292 | | 0.417356 |10 | |00080 02382| +420188 |FY Hya *|135335.5-293449 |RRAB | 11.89 | 13.03 | |V |41089.311 | | 0.6366510 |14 |F2: |07984 02382| +420189 |FZ Hya |082133.3+045730 |LB | 9.5 | 10.5 | |p | | | | |M6 |09269 09269| +420190 |GG Hya |082153.0-103550 |M | 10.4 |< 13.5 | |V |33769. | | 370. | | |02815 00491| +420191 |GH Hya |135653.6-270919 |LB | 10.1 | 10.7 | |p | | | | |M3 |02412 08953| +420192 |GI Hya |141620.4-263907 |IS: | 11.3 | 12.0 | |V | | | | | |02412 CoD | +420193 |GK Hya *|083049.3+021627 |EA/DM/RS | 9.35 | 9.91 | 9.57 |V |14968.863 | | 3.587052 |10 |G4V |08623 08953| +420194 |GL Hya |084059.2+023722 |RRAB | 12.0 | 13.7 | |p |26032.409 | | 0.505930 |24 | |04027 02322| +420195 |GM Hya *|084348.2+055101 |EA/DM | 11.0 | 11.7 | |p |25248.785 | | 12.18528 |06 |G2 |04027 00196| +420197 |GO Hya |085453.5+062613 |RRAB | 11.6 | 12.2 | |p |25649.507 | | 0.636437 |24 | |04027 02323| +420201 |GS Hya |141539.6-253958 |RRAB | 12.24 | 13.16 | |V |41782.587 | | 0.523145 |13 | |07233 04001| +420215 |HO Hya |144600.6-285134 |RR | 12. | 13. | |p | | | | | |04001 04001| +420217 |HQ Hya |081915.1-100957 |DSCTC | 6.29 | 6.33 | |V | | | 0.0755 | |F3IIIp |07015 BD | +420218 |HR Hya |083501.8+025931 |M: | 12.5 | 14.5 | |p | | | | | |03905 03905| +420219 |HS Hya *|102436.8-190533 |EA/D | 8.07 | 8.61 | 8.55 |V |41374.5954 | | 1.5680420 |10 *|F3+F4 |00001 08953| +420220 |HT Hya |085917.9+014740 |LB | 11.5 | 12.5 | |p | | | | |M6 |03905 03905| +420221 |HU Hya |081100.9-103634 |EA/DM | 9.4 | 9.9 | |p |27120.550 | | 2.516440 | |A2 |05639 08953| +420222 |HV Hya |083528.2-075856 |ACV | 5.66 | 5.76 | |V |40619.8 | | 5.57 | |A2p(Sr-Cr-Eu) |06066 BD | +420223 |HW Hya |100519.9-212120 |LB | 8.39 | 8.59 | |V | | | | |M3 |05828 BD | +420224 |HX Hya |103707.7-235336 |SRB | 8.63 | 8.82 | |V |40689. | | 50. | |M3 |05828 CoD | +420225 |HY Hya |111437.8-260431 |LB | 7.47 | 7.60 | |V | | | | |M3 |05828 CoD | +420226 |HZ Hya |112620.7-254519 |SRB | 7.63 | 8.18 | |V |40689. :| | 95. | |M3 |05828 08953| +420227 |II Hya |114845.1-264459 |SRB | 4.85 | 5.12 | |V |40684. | | 61. | |M4III |05828 CoD | +420228 |IK Hya *|120447.3-274043 |RR | 9.96 | 10.42 | |V |38461.510 | | 0.65 | |A2: |09271 08953| +420229 |IL Hya |092449.0-234935 |RS | 7.45 | 7.95 | |V |44662.355 | | 12.86833 | |K1III |09237 08953| +420230 |IM Hya |120951.5-322757 |EA/SD | 11.9 | 12.9 | |p |38796.562 | | 1.7821 | | |06316 06316| +420231 |IN Hya |092036.7+001054 |SRB | 6.27 | 6.87 | |V | | | 65. : | |M4III |08225 BD | +420232 |IO Hya |100732.2-222923 |SRB | 6.87 | 7.02 | |V | | | 80. : | |M4III |06645 BD | +420234 |IQ Hya |091331.9-232331 |M | 5.0 | 6.2 | |I | | | | |C3,2(Ne) |07465 07465| +420235 |IR Hya |115816.9-253753 |M | 12.4 | 16.9 | |p |42097. | | 187.7 |35 | |08034 08034| +420237 |IT Hya |081959.1+001258 |SRB | 8.5 |( 0.4 R )| |V | | | 170. | |K2 |07810 07810| +420239 |IV Hya |092220.6-133849 |RRAB | 11. |< 12. | |p |42871.349 | | 0.54074 |10 | |08036 00190| +420240 |IW Hya *|094515.1-220145 |M: | 1.0 | 3.0 | |K |40671. | | 650. | |M9 |07343 USNO | +420241 |IX Hya |095504.0-252200 |LB: | 9. | 10. | |p | | | | |M1 |04779 CoD | +420242 |IY Hya |101700.6-143930 |LB: | 11.9 | 13.4 | |V | | | | |C |06977 06977| +420243 |IZ Hya |102802.3-212347 |LB | 10. | 11. | |p | | | | |M5 |01111 BD | +420247 |KN Hya |130533.3-260115 |M | 8.5 | 11. | |p | | | | |M5e |00190 CoD | +420250 |KQ Hya |141635.8-294151 |LB | 12. | 13. | |p | | | | | |04001 04001| +420252 |KS Hya |143243.9-264541 |RR: | 12. | 13.3 | |p | | | | | |04001 04001| +420254 |KU Hya *|092250.9-095020 |ACV | 6.51 | 6.53 | |V |41799.78 | | 33.97 |50 |A3Vp(Sr-Cr-Eu) |08934 BD | +420256 |KW Hya *|091226.0-070635 |EA/DM | 6.11 | 6.58 | 6.35 |V | | | 7.750 | |A3mIII:+A0V: |09246 BD | +420257 |KX Hya |084921.7-032635 |ACV | 5.31 |( 0.02 )| |V | | | 6. | |B9p(Hg-Mn) |07968 BD | +420258 |KY Hya |092243.6-181040 |EA | 9.5 | 11. | |p |33357.269 | | | | |00190 BD | +420259 |KZ Hya |105054.1-252115 |SXPHE | 9.46 | 10.26 | |V |42516.15836 | | 0.0595104212 |25 |A0 |08483 CoD | +420260 |LL Hya |103709.1-273513 |EA | 11.4 | 11.9 | |p | | | | | |08368 08368| +420261 |LM Hya |082627.2-035915 |DSCTC | 5.80 |( 0.006 )| |B | | | | | |67473 BD | +420262 |LN Hya |125630.1-262737 |SRD | 6.57 | 6.90 | |V | | | | | |67098 CoD | +420263 |LO Hya |082829.1-023102 |EA/DM | 6.37 | 6.61 | |V | | | | | |68137 BD | +420264 |LP Hya |092551.2-240038 |M | 7.9 | 9.8 : | |I | | | | | |68015 USNO | +420265 |LQ Hya |093225.6-111105 |BY | 7.79 | 7.86 | |V | | | | | |68135 BD | +420266 |LR Hya |103602.2-115448 |BY | 8.03 | 8.05 | |V | | | | | |68138 BD | +420267 |LS Hya |111925.9-301923 |ACV | 7.87 | 8.00 | |V | | | | | |68148 CoD | +420268 |LT Hya |141332.7-295418 |M | 12.1 | 15.8 | |V | | | | | |68015 USNO | +420269 |LU Hya |082514.1-071013 |RS | 7.34 | 7.39 | |V | | | | | |69011 BD | +420270 |LV Hya |115703.8-331856 |ACV: | 6.20 |( 0.03 )| |V | | | | | |69140 CoD | +420271 |LW Hya |125332.8-225223 |R: | 9.56 | 9.63 | |V | | | | | |69169 69166| +420272 |LX Hya |091825.0-202216 |ACVO | 7.79 | 7.82 | |V | | | | | |71090 BD | +420274 |LZ Hya |134119.8-284700 |ACVO | 9.0 |( 0.01 )| |B | | | | | |71121 CoD | +420277 |MO Hya |125157.9-264418 |DSCTC | 6.15 |( 0.06 v )| |V | | | | | |73179 CoD | +420278 |MP Hya |143100.7-251854 |DSCTC | 7.9 |( 0.02 )| |B | | | | | |73180 CoD | +420279 |MQ Hya |081823.0+055818 |SRD | 8.52 | 8.69 | |Hp| | | | | |HIP HIP | +420280 |MR Hya |081907.4-020448 |SRB | 9.00 | 9.18 | |Hp| | | | | |HIP HIP | +420281 |MS Hya |081914.4-073329 |SRD | 6.99 | 7.09 | |Hp| | | | | |HIP HIP | +420282 |MT Hya |082041.4+051122 |SRB | 9.83 | 10.15 | |Hp| | | | | |HIP HIP | +420283 |MU Hya |083346.8-095953 |SRB | 7.45 | 7.62 | |Hp| | | | | |HIP HIP | +420284 |MV Hya |084150.3-053639 |SRB | 7.74 | 7.86 | |Hp| | | | | |HIP HIP | +420285 |MW Hya |084209.4-030300 |LB | 7.26 | 7.49 | |Hp| | | | | |HIP HIP | +420286 |MX Hya |084520.8-023604 |EA | 6.52 | 7.01 | |Hp| | | | | |HIP HIP | +420287 |MY Hya |084609.6-104948 |LB | 6.57 | 6.90 | |Hp| | | | | |HIP HIP | +420288 |MZ Hya |084922.1-075631 |SRB | 8.84 | 9.03 | |Hp| | | | | |HIP HIP | +420289 |NN Hya |085438.2-112239 |LB: | 6.65 | 6.76 | |Hp| | | | | |HIP HIP | +420290 |NO Hya |085909.9+000612 |SRB: | 9.57 | 9.79 | |Hp| | | | | |HIP HIP | +420291 |NP Hya |090158.8+024016 |ACV: | 7.08 | 7.14 | |Hp| | | | | |HIP HIP | +420292 |NQ Hya |090519.6-172022 |LB: | 7.97 | 8.08 | |Hp| | | | | |HIP HIP | +420293 |NR Hya |090616.8-005951 |LB: | 9.58 | 9.76 | |Hp| | | | | |HIP HIP | +420294 |NS Hya |090659.9+012746 |SRB | 6.18 | 6.29 | |Hp| | | | | |HIP HIP | +420295 |NT Hya |090758.1-074818 |DSCTC | 7.42 | 7.49 | |Hp| | | | | |HIP HIP | +420296 |NU Hya |091019.8-113700 |LB | 8.33 | 8.50 | |Hp| | | | | |HIP HIP | +420297 |NV Hya |091659.9-093718 |LB: | 7.65 | 7.75 | |Hp| | | | | |HIP HIP | +420298 |NW Hya |091948.3-055930 |LB: | 7.79 | 7.89 | |Hp| | | | | |HIP HIP | +420299 |NX Hya |092049.4+005247 |EB | 8.33 | 8.50 | |Hp| | | | | |HIP HIP | +420300 |NY Hya |092122.8-064020 |EA | 8.65 | 9.02 | |Hp| | | | | |HIP HIP | +420301 |NZ Hya |092256.7-152945 |EA | 8.28 | 8.78 | |Hp| | | | | |HIP HIP | +420302 |OO Hya |092642.1+035009 |I: | 10.37 | 10.83 | |Hp| | | | | |HIP HIP | +420303 |OP Hya |092813.3-074315 |LB | 6.97 | 7.10 | |Hp| | | | | |HIP HIP | +420304 |OQ Hya |093126.7-182501 |LB: | 8.00 | 8.11 | |Hp| | | | | |HIP HIP | +420305 |OR Hya |093407.3-210406 |LB: | 9.24 | 9.40 | |Hp| | | | | |HIP HIP | +420306 |OS Hya |093436.5-002914 |LB | 8.45 | 8.70 | |Hp| | | | | |HIP HIP | +420307 |OT Hya |093437.5-162233 |SRB: | 7.82 | 7.95 | |Hp| | | | | |HIP HIP | +420308 |OU Hya |093612.9+054305 |LB: | 9.59 | 9.76 | |Hp| | | | | |HIP HIP | +420309 |OV Hya |093559.0-203310 |LB: | 8.67 | 8.77 | |Hp| | | | | |HIP HIP | +420310 |OW Hya |093947.4-103413 |EA | 6.29 | 6.66 | |Hp| | | | | |HIP HIP | +420311 |OX Hya |095323.3-175534 |SRB | 7.67 | 7.84 | |Hp| | | | | |HIP HIP | +420312 |OY Hya |095906.3-235703 |BE | 6.09 | 6.15 | |Hp| | | | | |HIP HIP | +420313 |OZ Hya |100211.6-194601 |EA | 9.50 | 9.75 | |Hp| | | | | |HIP HIP | +420314 |PP Hya |100237.0-202527 |ELL: | 6.84 | 6.91 | |Hp| | | | | |HIP HIP | +420315 |PQ Hya |100404.3-153855 |LB: | 9.03 | 9.17 | |Hp| | | | | |HIP HIP | +420316 |PR Hya |100552.9-144838 |SRB | 8.96 | 9.17 | |Hp| | | | | |HIP HIP | +420317 |PS Hya |100922.9-132144 |SRB: | 7.12 | 7.21 | |Hp| | | | | |HIP HIP | +420318 |PT Hya |100943.3-144545 |LB: | 8.02 | 8.13 | |Hp| | | | | |HIP HIP | +420319 |PU Hya |101501.3-134749 |LB: | 8.83 | 8.92 | |Hp| | | | | |HIP HIP | +420320 |PV Hya |102836.4-263559 |LB | 9.32 | 9.87 | |Hp| | | | | |HIP HIP | +420321 |PW Hya |103103.6-213840 |BY: | 10.17 | 12.31 | |Hp| | | | | |HIP HIP | +420322 |PX Hya |103330.7-201052 |E | 8.47 | 8.57 | |Hp| | | | | |HIP HIP | +420323 |PY Hya |104412.0-124726 |LB: | 8.88 | 8.99 | |Hp| | | | | |HIP HIP | +420324 |PZ Hya |104448.9-240456 |LB: | 9.93 | 10.38 | |Hp| | | | | |HIP HIP | +420325 |QQ Hya |104733.4-313612 |LB: | 7.02 | 7.06 | |Hp| | | | | |HIP HIP | +420326 |QR Hya |105631.1-343350 |E | 8.51 | 8.69 | |Hp| | | | | |HIP HIP | +420327 |QS Hya |105950.7-305434 |SRD | 9.16 | 9.33 | |Hp| | | | | |HIP HIP | +420328 |QT Hya |112758.7-351944 |SRD | 6.52 | 6.58 | |Hp| | | | | |HIP HIP | +420329 |QU Hya |113231.6-290831 |SRB | 7.39 | 7.50 | |Hp| | | | | |HIP HIP | +420330 |QV Hya |114945.1-331649 |LB: | 9.05 | 9.16 | |Hp| | | | | |HIP HIP | +420331 |QW Hya |120338.8-322439 |LB | 8.84 | 9.36 | |Hp| | | | | |HIP HIP | +420332 |QX Hya |120511.9-341232 |SRB | 7.47 | 7.59 | |Hp| | | | | |HIP HIP | +420333 |QY Hya |120920.8-275856 |EB: | 9.07 | 9.36 | |Hp| | | | | |HIP HIP | +420334 |QZ Hya |121133.4-270415 |LB | 7.57 | 7.70 | |Hp| | | | | |HIP HIP | +420335 |V0335 Hya |121312.9-340731 |LB | 5.84 | 6.34 | |Hp| | | | | |HIP HIP | +420336 |V0336 Hya |121534.3-314125 |LB | 7.47 | 7.59 | |Hp| | | | | |HIP HIP | +420337 |V0337 Hya |121729.6-343018 |SRA | 8.38 | 9.20 | |Hp| | | | | |HIP HIP | +420338 |V0338 Hya |122129.9-302906 |SRB | 8.27 | 8.55 | |Hp| | | | | |HIP HIP | +420339 |V0339 Hya |123023.6-270509 |SRB | 8.16 | 8.42 | |Hp| | | | | |HIP HIP | +420340 |V0340 Hya |124019.2-293654 |EA | 8.24 | 8.53 | |Hp| | | | | |HIP HIP | +420341 |V0341 Hya |124113.7-275430 |SRB | 6.61 | 6.71 | |Hp| | | | | |HIP HIP | +420342 |V0342 Hya |124313.1-245926 |LB | 6.72 | 6.91 | |Hp| | | | | |HIP HIP | +420343 |V0343 Hya |124742.0-294742 |SRB | 8.01 | 8.23 | |Hp| | | | | |HIP HIP | +420344 |V0344 Hya |125857.2-295955 |LB: | 7.28 | 7.38 | |Hp| | | | | |HIP HIP | +420345 |V0345 Hya |130243.3-270038 |LB: | 8.93 | 9.03 | |Hp| | | | | |HIP HIP | +420346 |V0346 Hya |132320.0-243920 |SRB: | 7.50 | 7.74 | |Hp| | | | | |HIP HIP | +420347 |V0347 Hya |133457.4-295524 |BY: | 8.58 | 8.83 | |Hp| | | | | |HIP HIP | +420348 |V0348 Hya |135009.3-292910 |LB: | 8.52 | 8.63 | |Hp| | | | | |HIP HIP | +420349 |V0349 Hya |135519.3-262557 |SRB | 7.36 | 7.76 | |Hp| | | | | |HIP HIP | +420350 |V0350 Hya |140423.8-295359 |LB | 7.89 | 8.16 | |Hp| | | | | |HIP HIP | +420351 |V0351 Hya |140743.6-290134 |LB | 8.65 | 9.06 | |Hp| | | | | |HIP HIP | +420352 |V0352 Hya |140850.4-240522 |LB: | 9.08 | 9.22 | |Hp| | | | | |HIP HIP | +420353 |V0353 Hya |141012.3-252402 |EA | 7.51 | 7.65 | |Hp| | | | | |HIP HIP | +420354 |V0354 Hya |141812.2-273116 |E: | 8.40 | 8.52 | |Hp| | | | | |HIP HIP | +420355 |V0355 Hya |142351.3-280903 |LB: | 8.33 | 8.43 | |Hp| | | | | |HIP HIP | +420356 |V0356 Hya |143205.1-274233 |EB | 7.56 | 7.69 | |Hp| | | | | |HIP HIP | +420358 |V0358 Hya |093501.8+044522 |EA | 9.53 |( 0.51 )| |V | | | | | |75146 BD | +420359 |V0359 Hya |095914.3-124514 |ACV | 7.85 | 7.88 | |V | | | | | |75147 BD | +420360 |V0360 Hya |121929.8-280101 |M | 11.0 |< 15.4 | |p | | | | | |75148 75149| +420364 |V0364 Hya |082127.6-003349 |SR: | 11.09 |( 0.5 )| |V | | | | | |76012 GSC | +420365 |V0365 Hya |082153.2-094012 |SR: | 11.9 | 13.1 | |V | | | | | |76012 UCAC2| +420367 |V0367 Hya |083500.0-172208 |SR: | 12.5 | 13.4 | |V | | | | | |76012 GSC | +420369 |V0369 Hya |083629.5-160156 |SR: | 11.8 | 12.9 | |V | | | | | |76012 GSC | +420370 |V0370 Hya |083713.6-162141 |SR: | 10.8 | 11.8 | |V | | | | | |76012 DM | +420371 |V0371 Hya |084024.2-144920 |M | 11.0 |< 13.8 | |V | | | | | |76088 USNO | +420372 |V0372 Hya |085148.1-190924 |SR: | 10.4 | 11.6 | |V | | | | | |76012 DM | +420376 |V0376 Hya |090016.6-164831 |SR: | 11.35 |( 1.1 )| |V | | | | | |76012 DM | +420377 |V0377 Hya |090055.5-153052 |SR: | 12.4 | 13.2 | |V | | | | | |76012 GSC | +420378 |V0378 Hya |090137.0-170839 |SR: | 11.6 | 12.1 | |V | | | | | |76012 GSC | +420380 |V0380 Hya |090942.4-174043 |SR: | 11.48 |( 0.6 )| |V | | | | | |76012 GSC | +420381 |V0381 Hya |091248.4-232147 |SR: | 10.47 |( 0.5 )| |V | | | | | |76012 DM | +420382 |V0382 Hya |091324.1-150734 |SR: | 11.26 |( 0.6 )| |V | | | | | |76012 GSC | +420383 |V0383 Hya |091355.7-174640 |SR: | 12.0 | 13.6 | |V | | | | | |76012 GSC | +420385 |V0385 Hya |092936.9-220523 |SR: | 10.85 |( 0.7 )| |V | | | | | |76012 DM | +420386 |V0386 Hya |093102.5-234207 |SR: | 12.4 | 13.2 | |V | | | | | |76012 DM | +420389 |V0389 Hya |093447.4-215235 |SR: | 11.77 |( 0.5 )| |V | | | | | |76012 GSC | +420390 |V0390 Hya |081340.6-011222 |EA | 11.86 | 13.77 | |V | | | | | |77070 GSC | +420397 |V0397 Hya |081919.1+012020 |BY | 8.35 |( 0.03 )| |V | | | 8.75 : | |G5V |78018 DM | +420398 |V0398 Hya |082626.8-031744 |M | 10.9 | 14.1 | |V |52776 | | 313. | |Me |78090 GSC | +420399 |V0399 Hya |082654.8-061211 |BY | 7.59 |( 0.02 )| |V | | | 40.87 : | |K2 |78018 DM | +420400 |V0400 Hya |083102.3-105804 |M | 10.5 |< 15.0 | |V |52402 | | 315. | |M8: |78040 USNO | +420401 |V0401 Hya |083750.3-064825 |BY | 6.73 |( 0.05 : )| |V | | | 6.14 | |G0 |78005 DM | +420402 |V0402 Hya |085312.1-074321 |BY | 9.04 |( 0.12 )| |V | | | 0.4085 | |K0/1V |78046 DM | +420403 |V0403 Hya |085410.7-130051 |M | 8.8 | 13.6 | |V |52638 | | 348. | | |78130 GSC | +420405 |V0405 Hya |090420.7-155451 |BY | 8.77 |( 0.03 )| |V | | | 8.64 : | |K2Ve |78018 DM | +420407 |V0407 Hya |090917.9-170224 |SRB | 10.8 | 12.8 | |V | | | 102. | |M4 |78130 78124| +420408 |V0408 Hya |091007.5-170038 |SRB | 10.0 | 11.0 | |V | | | 325. | | |78130 DM | +420409 |V0409 Hya |091009.6+034435 |EW | 11.0 | 11.6 | |V |53154.4821 | | 0.472271 | | |78130 78125| +420410 |V0410 Hya |091244.4-144117 |EA | 10.48 | 11.11 | |V |52732.719 | | 3.1508 | |A3 |78011 DM | +420411 |V0411 Hya |091343.5-202155 |SRB | 10.2 | 11.1 | |V | | | 63. | |M7 |78130 DM | +420413 |V0413 Hya |091550.7-154124 |SRB | 10.7 | 11.5 | |V | | | 200. | |M7 |78130 GSC | +420414 |V0414 Hya |092253.7-134921 |RS: | 8.8 | 9.2 | |V | | | 18.8 : | | |78131 DM | +420415 |V0415 Hya |092527.0-062416 |GDOR: | 7.07 | 7.10 | |Hp| | | 0.490 | |A3 |78091 DM | +420416 |V0416 Hya |095739.7-163120 |GDOR | 6.64 | 6.73 | |Hp| | | | |F0V |78024 DM | +420417 |V0417 Hya |100437.7-114347 |BY | 8.15 |( 0.03 )| |V | | | 10.74 | |K0V |78018 DM | +420418 |V0418 Hya |103630.8-135036 |BY: | 8.71 |( 0.02 )| |V | | | | |K2V |78018 DM | +420419 |V0419 Hya |104328.3-290351 |BY | 7.72 |( 0.02 )| |V | | | 13.47 : | |K1V |78018 DM | +420420 |V0420 Hya *|122432.5-281856 |E: | 10.1 | 10.9 | |V | | | 755. : | |S4,6e |78100 DM | +420422 |V0422 Hya |145601.6-264239 |M | 12.4 | 15.5 | |V |52393 | | 266. | |Me |78090 78128| +420424 |V0424 Hya |081552.5-015049 |M | 12.0 |< 14.6 | |V |53570. | | 330. | |Me |79064 USNO | +420426 |V0426 Hya |082835.2-135114 |EA | 11.55 | 12.23 | 11.86 |V |51578.880 | | 7.3089 |03 |A |79003 79067| +420427 |V0427 Hya *|083938.9-055852 |SRA | 12.3 | 13.5 | |V |53892. | | 138. | | |79100 USNO | +420428 |V0428 Hya |084146.1+021120 |M | 9.1 | 12.0 | |* |52638. | | 490. : | |M9 |79100 USNO | +420429 |V0429 Hya |085543.8-191328 |SRB | 9.5 | 10.7 | |V | | | 117. | | |79100 79096| +420430 |V0430 Hya *|090448.5+053008 |RRAB | 12.35 | 13.25 | |* |51553.70 | | 0.49691 |15 | |79025 79022| +420431 |V0431 Hya |091139.4-120935 |LB | 9.6 | 10.7 | |V | | | | |M4 |79100 79096| +420432 |V0432 Hya |091218.6-110444 |EA | 7.90 | 7.98 | 7.98 |V |48594.965 | | 1.115657 |07 |A1/2III/IV |79004 DM | +420433 |V0433 Hya |095016.5-224032 |LB: | 12.0 | 13.6 | |V | | | | | |79100 79010| +420435 |V0435 Hya |095536.1-194127 |EA | 10.04 | 10.76 | 10.10 |V |51932.715 | | 2.2110 |10 | |79018 DM | +420436 |V0436 Hya |100535.1-123515 |SRB | 9.7 | 11.7 | |V | | | 240. | |M5 |79100 DM | +420437 |V0437 Hya |101553.3-262906 |LB | 9.4 | 10.4 | |V | | | | |M0 |79100 DM | +420438 |V0438 Hya |103758.3-201109 |LB | 9.1 | 9.7 | |V | | | | | |79230 DM | +420439 |V0439 Hya |104407.5-272642 |M | 11.2 |< 14.2 | |V |53900. | | 243. | | |79064 GSC | +420440 |V0440 Hya |105828.6-324648 |SRB | 9.4 | 10.1 | |V | | | 53.5 | | |79064 DM | +420441 |V0441 Hya |111038.0-285403 |EB | 11.05 | 11.75 | 11.47 |V |51979.683 | | 0.58413 | | |79011 DM | +420442 |V0442 Hya |111130.7-335754 |EW | 11.7 | 12.7 | 12.4 |V |53421.758 | | 0.309400 | | |79064 GSC | +420443 |V0443 Hya *|111626.1-331713 |EA | 11.05 | 11.56 | 11.53 : |V |52406.540 | | 4.67017 |07 | |79009 GSC | +420444 |V0444 Hya |111850.1-302825 |SRB | 9.5 | 10.3 | |V | | | 135. | |M8 |79100 DM | +420446 |V0446 Hya |112958.7-293619 |EW | 11.55 | 12.3 | 12.3 |V |53100.726 | | 0.370327 | | |79064 79081| +420447 |V0447 Hya |114014.8-301549 |SRB | 12.0 | 12.7 | |V | | | 148. | |M7 |79072 GSC | +420448 |V0448 Hya |114420.8-282904 |SRA | 12.0 | 14.5 | |V |53521. | | 186. | | |79064 GSC | +420449 |V0449 Hya |115231.9-254655 |LB | 9.9 | 10.6 | |V | | | | | |79100 DM | +420450 |V0450 Hya |115919.1-270903 |M | 11.5 |< 14.6 | |V |53769. | | 301. | | |79072 GSC | +420454 |V0454 Hya |121327.8-323925 |EA | 12.22 | 13.15 : | 12.3 : |V |53108.757 | | 2.34751 |05 | |79009 GSC | +420455 |V0455 Hya |123504.3-284640 |SRB | 8.8 | 9.6 | |V | | | 68. | |M6III |79064 DM | +420456 |V0456 Hya |123533.6-314000 |SRB | 12.2 | 13.1 | |V | | | 61. | | |79064 GSC | +420457 |V0457 Hya |123722.6-280240 |SRB | 9.7 | 10.6 | |V | | | 115. | |M5 |79064 DM | +420458 |V0458 Hya |123927.5-331726 |LB | 12.3 | 13.5 | |V | | | | | |79100 GSC | +420460 |V0460 Hya |125244.3-260013 |SRB | 9.2 | 11.0 | |V | | | 109. | |M5 |79064 DM | +420462 |V0462 Hya |130245.5-235813 |SXPHE | 10.84 | 11.46 | |V |52432.684 | | 0.158491 |25 | |79097 DM | +420463 |V0463 Hya |132717.4-250215 |M | 11.2 |< 14.5 | |V |53011. | | 325. | | |79100 GSC | +420465 |V0465 Hya |144824.0-271554 |M | 11.3 |< 14.6 | |V |53863. | | 224. | |Me |79064 DM | +420466 |V0466 Hya *|081201.8-003300 |EB | 11.3 | 11.7 | 11.6 |V |51871.13 | | 1.14113 | | |80002 GSC | NL80_2 +420468 |V0468 Hya *|081301.3+011941 |RRC | 11.2 | 11.6 | |V |51914.55 | | 0.467711 |45 | |80002 GSC | NL80_2 +420472 |V0472 Hya *|081540.0-005641 |EB | 12.3 | 12.6 | 12.5 |V |52975.7922 | | 0.88313 | | |80002 GSC | NL80_2 +420474 |V0474 Hya *|081843.5+002851 |EB | 11.8 | 12.6 | 12.2 |V |53865.5136 | | 0.528304 | | |80002 GSC | NL80_2 +420478 |V0478 Hya |082250.0+015134 |BY | 8.66 | 8.77 | |V | | | 3.296 | |G1.2V |80303 DM | NL80_2 +420483 |V0483 Hya *|082819.1-104228 |EW | 12.25 | 12.55 | 12.55 |V |52735.649 | | 0.407496 | | |80011 GSC | NL80_2 +420486 |V0486 Hya |083029.8-024237 |RRAB | 12.3 | 13.8 | |V |53008.7526 | | 0.508655 |15 | |80002 GSC | NL80_2 +420490 |V0490 Hya *|083923.5-093440 |EA | 8.65 |< 8.80 | 8.71 : |V |48794.107 | | 92.1711 | |A0V |80011 HIP | NL80_2 +420496 |V0496 Hya |084433.8-001303 |RRAB | 12.5 | 13.4 | |V |53437.6261 | | 0.537051 |13 | |80002 GSC | NL80_2 +420500 |V0500 Hya *|084746.9-033900 |RR(B) | 10.5 | 11.1 | |V |52940.85 | | 0.42079 | | |80300 GSC | NL80_2 +420502 |V0502 Hya *|084903.6-112102 |EA | 10.05 | 10.41 | 10.09 |V |53133.587 | | 2.49447 |12 |F0 |80048 GSC | NL80_2 +420503 |V0503 Hya |084919.8+055230 |RS | 9.4 | 9.7 | |V | | | 7.2965 | |K0 |80034 DM | NL80_2 +420511 |V0511 Hya *|090047.0-182047 |EA | 8.99 | 9.06 | 9.05 |V |48568.32 | | 2.03915 |08 |A1V |80015 DM | NL80_2 +420516 |V0516 Hya |091137.6+040230 |RRAB: | 12.5 | 13.2 | |V |53816.6596 | | 0.346612 |30 | |80002 GSC | NL80_2 +420519 |V0519 Hya *|091322.9+043236 |EW | 12.0 | 12.55 | 12.50 |V |53783.7280 | | 0.401682 | | |80001 GSC | NL80_2 +420530 |V0530 Hya |092907.3+012725 |RRAB | 11.55 | 12.06 | |V |54142.775 | | 0.634348 |22 | |80002 GSC | NL80_2 +420542 |V0542 Hya *|102013.6-135137 |EW | 10.28 | 10.40 | 10.40 |V |51868.285 | | 0.381025 | | |80036 DM | NL80_2 +420545 |V0545 Hya *|103512.8-120631 |EW+EW | 11.30 | 12.03 | 11.98 |V |53085.7689 | | 0.384647 | | |80138 GSC | NL80_2 +420547 |V0547 Hya *|112117.2-344646 |IT | 12.0 |( 0.21 )| |V | | | 5.56 | |M1Ve |80330 GSC | NL80_2 +420548 |V0548 Hya *|112117.4-344650 |IT | 12.0 |( 0.27 )| |V | | | 5.35 | | |80330 GSC | NL80_2 +420550 |V0550 Hya *|113241.3-265156 |IT | 12.23 |( 0.05 )| |V | | | 4.65 | |M3Ve |80330 DM | NL80_2 +420552 |V0552 Hya *|121206.1-261248 |RRAB | 12.5 | 13.8 | |V |54931.6746 | | 0.39878 |25 | |80153 GSC | NL80_2 +420553 |V0553 Hya *|122617.8-254620 |EW | 12.36 | 13.05 | 12.90 |V |52386.640 | | 0.371497 | | |80365 80365| NL80_2 +420554 |V0554 Hya *|132801.7-272948 |EW | 12.5 | 13.3 | 13.2 |V |52488.507 | | 0.302559 | | |80365 80365| NL80_2 +420555 |V0555 Hya *|132906.0-300747 |EB | 11.82 | 12.50 | 12.20 |V |51924.831 | | 0.539643 | | |80365 80365| NL80_2 +420556 |V0556 Hya |133951.7-265217 |RRAB | 11.45 | 11.99 | |V |52722.661 | | 0.59606 |22 | |80386 DM | NL80_2 +420557 |V0557 Hya |135332.8-290542 |M | 11.2 |< 15.0 | |V |54953. | | 191. | |M5-M7 |80001 GSC | NL80_2 +420558 |V0558 Hya |141007.0-260940 |LB | 10.2 | 11.1 | |V | | | | | |80001 DM | NL80_2 +420559 |V0559 Hya *|141345.5-225442 |RRAB | 11.9 | 13.1 | |V |52427.044 | | 0.4479434 |42 | |80377 GSC | NL80_2 +420562 |V0562 Hya |144644.7-264513 |M | 11.9 |< 15.0 | |V |54692. | | 291.1 | | |80002 2MASS| NL80_2 +429002 |bet Hya *|115254.5-335429 |ACV | 4.27 |( 0.04 )| |V |42451.78 | | 2.344 | |B9IIIp(Si) |09248 CoD | +429005 |eps Hya |084646.5+062508 |BY: | 3.35 | 3.39 | |V | | | | | |69171 BD | +429007 |eta Hya |084313.5+032355 |BCEP | 4.27 | 4.33 | |V | | | 0.17 | |B3V |08395 BD | +4290222|khi 2 Hya *|110557.6-271716 |EA/DM | 5.65 | 5.94 | 5.92 |V |42848.6107 | | 2.267701 |14 *|B8III-IVe+B8.5V |09250 CoD | +430002 |S Hyi |001856.0-795455 |E/SD: | 12.0 | 13.0 | |p |25452.56 | | 0.90312 | | |00193 06286| +430008 |Y Hyi *|004550.7-784917 |EA/SD | 10.4 | 14.0 | |p |25481.50 | | 3.53597 | |A6V |00193 06286| +430011 |RS Hyi *|011027.8-765055 |M | 10.0 | 16.0 | |p |25850. | | 215.5 | |M3e |00193 06286| +430014 |RV Hyi *|012052.3-801901 |EA | 11.8 | 12.8 | 12.4 |p |25477.40 | | 7.19505 | | |00193 06286| +430015 |RW Hyi |013112.3-782908 |RR | 12.5 | 13.3 | |p |25481.50 | | 0.55577 | | |00193 06286| +430017 |RY Hyi *|013334.0-751227 |M | 11.0 | 15.5 | |p |26650. | | 319. | |M5e |00193 06286| +430021 |SU Hyi |014230.5-800033 |RR | 12.5 | 13.8 | |p |25441.60 | | 0.34835 | | |00193 06286| +430024 |SX Hyi |020739.5-774847 |RR | 12.5 | 13.5 | |p |25469.50 | | 0.31067 | | |00193 06286| +430027 |TT Hyi |005456.0-800221 |I | 12.4 | 13.3 | |p | | | | | |00193 06286| +430028 |TU Hyi |015417.1-762244 |I | 11.0 | 11.8 | |p | | | | | |00193 06286| +430029 |TV Hyi |020104.3-780530 |I | 11.8 | 13.1 | |p | | | | | |00193 06286| +430035 |UV Hyi |033856.3-722433 |EA | 12.4 | 13.4 | |p |27426.30 | | 0.81705 | | |00357 02380| +430037 |UX Hyi |034900.3-695243 |SRB | 9.6 | 11.7 | |p | | | 600. : | |M4III |00357 06286| +430041 |VW Hyi *|040911.3-711741 |UGSU | 8.4 | 14.4 | |V | | |( 27.3 ) | |pec(UG) |09275 08852| +430042 |VX Hyi |041453.5-732137 |EA/SD | 11.9 | 13.8 | |p |26711.40 | | 3.2322 | |F4 |00357 02381| +430044 |VZ Hyi *|014458.4-801108 | | 11.0 | 12.0 | |p | | | | |MB |00193 06286| +430045 |WW Hyi |020609.3-695219 |EA | 12. |< 13. | |p | | | | | |00085 02380| +430046 |WX Hyi *|020950.8-631840 |UGSU | 9.6 | 14.85 | |V | | |( 13.7 ) | |pec(UG) |09276 08852| +430047 |WY Hyi |035154.9-735807 |M | 12.0 |< 15.6 | |p |27450. | | 231. | |Me |00357 02380| +430055 |AA Hyi |003902.4-765808 |EA/KE: | 12.0 | 12.6 | |p |28694.700 | | 1.150272 |18 *| |05235 04001| +430080 |BB Hyi *|023318.8-733643 |RRC | 11.76 | 12.32 | |V |41993.430 | | 0.287131 |35 |F0III |06099 05845| +430084 |BF Hyi |040403.2-742713 |EA | 10.5 | 11.5 | |p | | | | | |00085 02380| +430085 |BG Hyi |012412.2-704031 |DSCTC | 8.2 |( 0.03 )| |V | | | | | |67476 CPD | +430090 |BM Hyi |014433.0-610107 |ACV | 7.0 |( 0.04 )| |V | | | | | |67066 CPD | +430091 |BN Hyi |030732.1-785921 |DSCTC | 5.7 |( 0.02 )| |V | | | | | |67481 CPD | +430094 |BQ Hyi |021800.8-712803 |E:/RS | 8.06 | 8.22 | |V | | | 18.66 | |G1 |V 301 CPD |=SMC V2391 +430095 |BR Hyi |041500.9-693212 |DSCT | 10.54 | 10.67 | |V | | | | | |69173 CPD | +430097 |BT Hyi |030037.1-815407 |ACVO | 9.1 |( 0.01 B )| |V | | | | | |71020 CPD | +430103 |BZ Hyi |000725.9-772939 |EA | 8.53 | 8.69 | |Hp| | | | | |HIP HIP | +430104 |CC Hyi |013420.3-643108 |LB | 8.97 | 9.17 | |Hp| | | | | |HIP HIP | +430105 |CD Hyi |013633.8-762219 |SRB: | 8.28 | 8.35 | |Hp| | | | | |HIP HIP | +430106 |CE Hyi |013856.1-583449 |DSCTC | 8.48 | 8.53 | |Hp| | | | | |HIP HIP | +430107 |CF Hyi |014311.1-580037 |BY: | 9.23 | 9.41 | |Hp| | | | | |HIP HIP | +430108 |CG Hyi |014922.7-722443 |LPB | 7.77 | 7.82 | |Hp| | | | | |HIP HIP | +430109 |CH Hyi |020152.3-742645 |SRB | 6.77 | 6.90 | |Hp| | | | | |HIP HIP | +430110 |CI Hyi |021148.9-712903 |SRB | 8.52 | 9.09 | |Hp| | | | | |HIP HIP | +430111 |CK Hyi |022207.5-813303 |LB: | 8.38 | 8.48 | |Hp| | | | | |HIP HIP | +430112 |CL Hyi |022746.8-693126 |SRB: | 6.48 | 7.15 | |Hp| | | | | |HIP HIP | +430113 |CM Hyi |024250.5-711216 |SRB | 7.66 | 7.87 | |Hp| | | | | |HIP HIP | +430114 |CN Hyi |024537.0-711409 |EW | 6.68 | 6.93 | |Hp| | | | | |HIP HIP | +430115 |CO Hyi |024942.7-694843 |SRB | 8.55 | 8.88 | |Hp| | | | | |HIP HIP | +430116 |CP Hyi |030013.7-810519 |EW: | 7.90 | 8.04 | |Hp| | | | | |HIP HIP | +430117 |CQ Hyi |032512.1-783958 |LB | 8.48 | 8.67 | |Hp| | | | | |HIP HIP | +430118 |CR Hyi |033335.9-690100 |ELL: | 9.28 | 9.34 | |Hp| | | | | |HIP HIP | +430119 |CS Hyi |033553.0-691135 |SRA | 8.24 | 9.28 | |Hp| | | | | |HIP HIP | +430120 |CT Hyi |034523.7-713929 |ACV: | 6.21 | 6.24 | |Hp| | | | | |HIP HIP | +430121 |CU Hyi |041735.5-715839 |BY: | 9.20 | 9.44 | |Hp| | | | | |HIP HIP | +430124 |CX Hyi |030438.7-811358 |SRS | 9.9 | 10.1 | |V | | | 17.90 | |M |78130 DM | +430125 |CY Hyi *|030617.2-681230 |EW | 9.3 | 9.8 | 9.8 |V |52128.767 | | 0.41612 | |F7 |78130 DM | +430126 |CZ Hyi |002656.6-793256 |SR | 11.4 | 13.5 | |V | | | 103. | | |79064 79063| +430128 |DE Hyi |012341.2-782310 |SRB | 12.2 | 13.6 | |V | | | 72.5 | | |79100 79063| +430130 |DG Hyi |014438.1-772213 |SRB | 11.1 | 11.8 | |V | | | 47.2 | | |79100 79010| +430131 |DH Hyi |014913.3-633100 |EA | 8.45 | 8.63 | 8.58 |V |48375.910 | | 7.43367 |03 |A2mA5-A7 |79009 DM | +430132 |DI Hyi |022734.9-674712 |M | 11.6 |< 14.4 | |V |53616. | | 294. | |M |79100 79214| +430133 |DK Hyi |030841.8-754724 |SRB | 10.4 | 12.0 | |V | | | 43. | | |79100 79063| +430134 |DL Hyi |032009.5-713610 |SRB | 10.1 | 11.2 | |V | | | 52. | | |79100 79118| +4390071|eta 1 Hyi |015234.8-675640 |CST: | 6.7 | | |p | | | | |B9V |00016 CoD | +440001 |R Ind |223600.4-671716 |M | 8.2 | 14.6 | |V |41801. | | 216.26 |47 |M2e-M4(II)e |00001 00002| +440002 |S Ind |205623.3-541927 |M | 7.9 | 17.0 | |p |39779. | | 399.95 |41 |M6e-M8eII-Ib: |00001 00002| +440003 |T Ind |212009.5-450119 |SRB | 7.7 | 9.4 | |p | | | 320. : | |C7,2(Na) |01016 08953| +440004 |U Ind |204221.6-510606 |SRB | 10.4 | 12.4 | |p | | | 97.5 | |M5/6e |01016 08953| +440005 |V Ind *|211129.9-450428 |RRAB | 9.12 | 10.48 | |V |40118.393 | | 0.4795910 |10 |A5-G3: |07984 06286| +440006 |W Ind |211422.8-530135 |SRC | 9.4 | 11.5 | |p |30090. | | 198.8 | |M4IIe-M5IIe |01016 05474| +440007 |X Ind |213028.4-535719 |M | 9.0 |< 13.0 | |p |30043. | | 225.85 |49 |M4e-M5IIe |00001 08953| +440008 |Y Ind |214355.4-524342 |M | 9.8 |< 13.0 | |p |30094. | | 304.18 |52 |M6(II))e-M7e |00001 08953| +440009 |Z Ind |215424.4-495641 |CST: | 10.3 | 10.6 | |p | | | | | |00016 CoD | +440010 |RR Ind |214617.6-651828 |SRB | 10.9 | 13.1 | |p |30120. | | 140. : |60 |C6II(Na) |01016 CoD | +440011 |RS Ind *|213649.7-702001 |EA/DW | 9.9 | 10.2 | 10.0 |p |27000.179 | | 0.62406531 |21 |F4 |02196 05474| +440012 |RT Ind |204641.8-555028 |CST: | 10.7 | | |p | | | | | |00016 CoD | +440013 |RU Ind *|214822.8-544544 |EA/GS: | 11.3 | 12.1 | 12.1 |p |24083. | | 35.54 |14 : | |00210 CoD | +440014 |RV Ind |230059.6-705619 |M: | 11.6 |< 12.7 | |p |24716. | | 295. | |Me |00210 CoD | +440015 |RW Ind |215829.2-691236 |M | 9.6 |< 13.4 | |V |26510. | | 150. : | |M0Ibe-M4(II:)e |01805 01805| +440016 |RX Ind *|204103.5-522905 |M | 10.7 | 15.5 | |p |28781. | | | | |00016 | +440017 |RY Ind *|205802.1-460400 |EB/KE | 10.83 | 11.45 | 11.04 |V |43019.8922 | | 0.71211400 | |A5 |09274 CoD | +440018 |RZ Ind |210351.6-492946 |M | 8.4 |< 14.0 | |V |36454. | | 255. | |Me |06454 02386| +440019 |SS Ind |220807.0-670822 |M | 9.10 | 14.3 | |V |36544. | | 190. |47 | |06455 05474| +440020 |ST Ind *|203523.8-481920 |EW/KW | 11.3 | 11.79 | 11.79 |V |44839.6967 | | 0.40188233 | | |09279 CoD | +440021 |SU Ind *|205441.2-454351 |EB/DW | 9.3 | 9.7 | 9.5 : |V |34267.489 | | 0.986323 | |F5/6V |00080 CoD | +440023 |SW Ind |203026.2-481459 |RR | 12.5 | 14. | |p | | | | | |06561 06561| +440029 |TV Ind *|203354.6-552831 |EB | 11.7 | 12.2 | 11.9 |V |36786.293 | | 0.57686 | | |04183 04208| +440030 |TW Ind |203342.8-461237 |RRAB | 12.5 | 14.1 | |p |36807.304 | | 0.58451 |16 | |04294 04001| +440042 |VX Ind |204151.4-470643 |RRAB | 11.8 | 13.2 | |p |36678.595 | | 0.615986 |30 | |04294 04001| +440064 |AK Ind |210912.2-464605 |LB | 9.1 | 9.4 | |p | | | | |M4/5III |04294 04001| +440068 |AO Ind |220029.1-502940 |RR | 12.3 | 14.5 | |p | | | | | |06561 06561| +440069 |AP Ind |220544.7-560000 |M: | 12. |< 15. | |p |28891. | | | | |02554 04208| +440070 |AQ Ind |220755.0-595230 |EA | 11. | 13. | |p | | | | | |06561 06561| +440075 |AV Ind |211013.6-590017 |M | 12. | 16. | |p | | | | |Me |02935 USNO | +440077 |AX Ind |205605.2-570002 |L | 11.5 | 12.0 | |p | | | | | |06920 04001| +440078 |AY Ind *|214905.8-720609 |UV | 9.9 | 11.26 | |B | | | | |M2Ve |07816 CPD | +440080 |BB Ind |203911.3-463543 |LB: | 10.3 | 11.1 | |p | | | | |M2/3 |07969 05937| +440081 |BC Ind |214637.9-673547 |ACV | 7.18 | 7.24 | |V |42619.508 | | 1.788 |40 |B9p(Si) |08312 CPD | +440082 |BD Ind |215656.7-615046 |ACV | 7.5 |( 0.01 )| |V | | | | | |67066 CPD | +440083 |BE Ind |215947.7-593412 |DSCTC | 8.4 |( 0.02 )| |V | | | | | |67448 CPD | +440085 |BG Ind |215830.1-590044 |EA | 6.11 | 6.36 | |V | | | | | |68303 CPD | +440086 |BH Ind |212819.9-524915 |RS | 9.44 | 9.89 | |V | | | | | |69011 CPD | +440087 |BI Ind |231352.8-681729 |RS | 7.65 | 7.70 | |V | | | | | |73181 CPD | +440088 |BK Ind |203034.6-495119 |EA | 10.30 | 10.84 | |Hp| | | | | |HIP HIP | +440089 |BL Ind |203242.0-572907 |LB | 8.76 | 9.02 | |Hp| | | | | |HIP HIP | +440090 |BM Ind |204101.4-515251 |LB | 8.85 | 9.05 | |Hp| | | | | |HIP HIP | +440091 |BN Ind |204201.5-501546 |SRB | 7.51 | 7.64 | |Hp| | | | | |HIP HIP | +440092 |BO Ind |204416.5-535040 |EW | 8.41 | 8.61 | |Hp| | | | | |HIP HIP | +440093 |BP Ind |205042.9-561430 |BY: | 9.05 | 9.17 | |Hp| | | | | |HIP HIP | +440094 |BQ Ind |205533.7-564431 |SXPHE | 9.78 | 10.05 | |Hp| | | | | |HIP HIP | +440095 |BR Ind |211122.8-522021 |EA | 7.08 | 7.22 | |Hp| | | | | |HIP HIP | +440096 |BS Ind |212059.8-522840 |EA | 9.01 | 9.32 | |Hp| | | | | |HIP HIP | +440097 |BT Ind |213200.7-584855 |SRB | 7.87 | 8.52 | |Hp| | | | | |HIP HIP | +440098 |BU Ind |214431.2-650334 |LB: | 10.09 | 10.32 | |Hp| | | | | |HIP HIP | +440099 |BV Ind |214635.7-575948 |LB: | 8.98 | 9.08 | |Hp| | | | | |HIP HIP | +440100 |BW Ind |215908.3-714455 |SRD: | 9.14 | 9.20 | |Hp| | | | | |HIP HIP | +440101 |BX Ind |220139.8-540926 |DSCTC | 7.94 | 8.03 | |Hp| | | | | |HIP HIP | +440102 |BY Ind |220855.6-703119 |LB | 8.86 | 9.04 | |Hp| | | | | |HIP HIP | +440103 |BZ Ind |221153.2-675625 |LB: | 8.72 | 8.89 | |Hp| | | | | |HIP HIP | +440104 |CC Ind |231637.8-701504 |SRB: | 6.66 | 7.36 | |Hp| | | | | |HIP HIP | +440106 |CE Ind |215143.5-731010 |ACV | 8.86 |( 0.02 )| |V | | | | | |75026 CPD | +440107 |CF Ind |213940.9-513422 |DSCTC | 7.76 | 7.81 | |Hp| | | | | |76009 DM | +440108 |CG Ind |211031.3-484959 |SRA | 10.7 | 12.4 | |V |52761 | | 202. | |Me |78090 GSC | +440109 |CH Ind *|212942.6-502032 |EA | 7.50 | 8.18 | 8.14 : |V |52854.862 | | 5.9532 |07 |A9V |78011 DM | +440111 |CK Ind *|220438.4-644342 |GDOR | 7.36 | 7.44 | |Hp| | | 0.8853 | |A9/F0V |78301 DM | +440112 |CL Ind |222055.8-741512 |SRA | 11.3 | 11.9 | |p |23980. | | 382. | | |00210 | +440113 |CM Ind |213230.3-735335 |SRB | 7.77 | 7.93 | |Hp| | | | | |HIP HIP | +440114 |CN Ind |204539.2-510243 |EW | 9.43 | 9.87 | 9.82 |V |52783.760 | | 0.45364 | |F6:V: |79011 DM | +440115 |CO Ind |205629.6-475043 |EB | 10.64 | 11.25 | 10.93 |V |52175.543 | | 0.597959 | |A2/3V: |79018 79020| +440116 |CP Ind |210705.5-540453 |EA | 12.15 | 14.12 | 12.35 |V |52930.544 | | 2.85739 |10 | |79018 79071| +440117 |CQ Ind *|213103.3-505049 |EA | 8.38 | 8.8 : | 8.75 : |V |52625.750 | | 26.921 |02 : |F7V |79011 DM | +440118 |CR Ind |213345.1-673349 |EW | 12.05 | 12.7 | 12.7 |V |52900.626 | | 0.390816 | | |79018 79121| +440119 |CS Ind |215954.5-685037 |UG | 11.9 |< 17. | |V | | | (89.) | | |79229 79071| +440121 |CU Ind |223717.6-692909 |EW | 12.50 | 13.21 | 13.08 |V |52134.686 | | 0.337259 | | |79004 79121| +440122 |CV Ind |224039.7-681417 |M | 11.3 | 14.0 | |V |53888. | | 128. | | |79100 79106| +440123 |CW Ind |230056.6-691642 |RV: | 11.5 | 11.95 | |V |51869.540 | | 121.21 | | |79018 79121| +440124 |CX Ind |210121.2-493307 |BY | 10.70 | 11.35 | |V | | | 6.238 | |K7V |80034 DM | NL80_3 +440125 |CY Ind |212044.1-543759 |RS | 10.3 | 10.9 | |V | | | 2.3988 | |K0III |80034 GSC | NL80_3 +440127 |DD Ind |212447.1-471051 |EW | 12.10 | 12.88 | 12.82 |V |52872.914 | | 0.362746 | | |80365 80365| NL80_3 +440128 |DE Ind |214057.0-573443 |RRAB | 12.0 | 13.1 | |V |52902.693 | | 0.480757 |14 | |80135 GSC | NL80_3 +440129 |DF Ind |215751.5-681250 |RS | 8.76 | 8.94 | |V | | | 3.37668 | |G8V |80001 HIP | NL80_3 +450001 |R Lac *|224315.6+422211 |M | 8.5 | 14.8 | |V |41526. | | 299.86 |41 |M5e-M8.5e |00001 00002| +450002 |S Lac *|222900.9+401856 |M | 7.6 | 13.9 | |V |43804. | | 241.50 |46 |M4e-M8.2e |00001 00002| +450004 |U Lac *|224743.4+550930 |SRC | 9.4 | 12.1 | |p | | | | |M4epIab+B |00882 00098| +450005 |V Lac *|224838.0+561918 |DCEP | 8.38 | 9.42 | |V |28901.285 | | 4.983458 |25 |F5-G0 |09288 00884| +450006 |W Lac *|220729.8+374407 |M | 10.3 |< 15.0 | |p |39439. | | 328.5 | |M7e-M8e |00001 00100| +450007 |X Lac *|224903.2+562542 |DCEPS | 8.20 | 8.64 | |V |42738.132 | | 5.444990 |38 |F6-G0 |08632 00884| +450008 |Y Lac |220902.9+510245 |DCEP | 8.76 | 9.50 | |V |41746.745 | | 4.323776 |34 |F5-G0 |08300 00102| +450009 |Z Lac *|224052.1+564946 |DCEP | 7.88 | 8.93 | |V |42827.123 | | 10.885613 |43 |F6Ib-G6Ib |09029 00884| +450010 |RR Lac *|224126.5+562558 |DCEP | 8.38 | 9.30 | |V |42776.686 | | 6.416243 |30 |F6-G2 |08632 00884| +450011 |RS Lac |221252.5+434501 |SRD | 9.6 | 12.5 | |V |40884. | | 237.26 |53 |K0 |00001 00002| +450012 |RT Lac *|220130.7+435326 |EB/AR/RS | 8.84 | 9.89 | 9.62 |V |44873.3648 | | 5.0739496 | |G9IV+K1IV |09292 00010| +450013 |RU Lac |225619.5+482843 |M | 10.8 |< 13.0 | |p |35310. | | 203.24 | |M1-M7 |00001 06286| +450014 |RV Lac *|224440.9+494357 |SRB | 11.0 | 12.7 | |p | | | 67. | |M4 |00197 00098| +450015 |RW Lac *|224457.1+493928 |EA/DM | 10.4 | 11.0 : | 10.8 |p |18657.440 | | 10.36922 |04 *|F2 |00522 00522| +450016 |RX Lac *|224956.9+410304 |SRB | 9.1 | 11.3 | |p | | | 650. : |32 |M7.5Se |08021 08953| +450017 |RY Lac *|221215.6+435004 |SRB | 12.5 | 13.2 | |p | | | | |M6 |00104 00002| +450018 |RZ Lac |223540.5+524437 |GCAS: | 8.2 | 9.3 | |p | | | | |B7e |00572 BD | +450019 |SS Lac *|220441.5+462538 |EA/D | 10.1 | 10.5 | 10.5 |p |15900.76 | | 14.41629 |05 |B7 |00063 00010| +450021 |SU Lac *|222257.0+553041 |M | 11.3 | 16. | |p |44216. | | 302.0 |40 : |M5e: |00001 06286| +450023 |SW Lac *|225341.7+375619 |EW/KW | 8.51 | 9.39 | 9.31 |V |45275.3477 | | 0.3207209 | |G8Vp+G8Vp |00001 00010| +450024 |SX Lac |225600.0+351145 |SRD | 9.0 | 10.0 | |p | | | 190.0 |47 |K2 |01026 08953| +450028 |TU Lac |225456.6+365142 |M | 11.7 |< 15.0 | |p |27307. | | 277. | |M |00230 06286| +450029 |TV Lac |225607.4+541346 |LB | 11.5 | 12.3 | |p | | | | |C4,5(N3) |00098 00098| +450030 |TW Lac *|223026.3+543706 |EA/SD | 11.5 | 13.3 | |V |41500.534 | | 3.037417 |15 |A2 |09084 02217| +450031 |TX Lac |224551.2+550435 |LB | 11.2 | 12.9 | |p | | | | |C3:,4J(R5) |09299 00098| +450036 |UW Lac *|222039.8+422429 |EA/SD | 11.4 | 12.5 |( 0.05 )|p |37188.335 | | 5.29023 |12 |A |06087 01813| +450038 |UY Lac *|222551.8+461128 |EA/DS | 12.3 | 13.7 | |V |35782.44 | | 11.4489 |09 | |02931 01799| +450041 |VW Lac |223440.4+540215 |M | 12.3 |< 16.5 | |p |36835. | | 300.2 | |M9 |02931 00856| +450042 |VX Lac *|224100.6+381920 |EA/SD | 10.9 | 13.0 | |p |45258.466 | | 1.0744942 |15 *|F0 |00001 01142| +450043 |VY Lac *|224959.1+450016 |EB/KE | 10.2 | 11.0 | 10.6 |p |43749.467 | | 1.03625 | |A2 |00001 00279| +450069 |AP Lac |220651.7+482756 |M | 11.3 |< 19. | |p |33483. | | 524. | |M9: |01814 01814| +450070 |AQ Lac |220738.8+470031 |M | 11.7 | 16. | |p |36790. | | 362.9 | | |02931 00530| +450071 |AR Lac *|220840.8+454432 |EA/AR/RS | 6.08 | 6.77 | 6.43 |V |41593.7123 | | 1.98319204 |15 |G2IV-V+K0IV |09313 00010| +450072 |AS Lac |220932.4+474245 |M | 12.3 | 18. | |p |33920. | | 218.2 | |M2 |01817 00530| +450073 |AT Lac |221057.5+462727 |M | 12.4 | 15.8 | |p |32770. | | 171.3 | | |00001 00530| +450074 |AU Lac *|221517.1+484317 |EA/SD | 12.0 | 13.2 | 12.2 |p |34195.441 | | 1.392441 |18 *|A |08089 00098| +450075 |AV Lac |221621.9+474424 |M | 12.5 |< 15.4 | |p |33516. | | 347.0 | | |00001 00131| +450076 |AW Lac *|221757.9+542802 |EB/KE | 10.6 | 11.3 | 11.2 |p |26624.222 | | 1.1428498 | |A0 |01818 00279| +450081 |BC Lac |223659.9+450156 |M | 12.2 | 15.7 | |p |25451. | | 247. | |M5 |01155 00530| +450085 |BG Lac |220025.1+432643 |DCEP | 8.51 | 9.18 | |V |35315.273 | | 5.331908 |33 |F7-G4 |01821 01142| +450086 |BH Lac *|223452.0+513027 |IA: | 11.0 | 12.8 | |p | | | | |A0 |00098 00098| +450089 |BL Lac *|220243.3+421640 |BLLAC | 12.4 | 17.2 | |B | | | | | |09325 06090| +450098 |BU Lac *|222846.6+503412 |SRB | 10.8 | 14.0 | |p |15800. | | 2000. | |M0 |00098 00098| +450102 |BY Lac |223612.1+481626 |SRB | 12.4 | 14.0 | |p | | | 160. : | |M6 |00098 00098| +450104 |CC Lac |224242.8+515002 |M | 12.0 | 16.7 | |p |31082. | | 302.4 |23 : | |02267 00133| +450112 |CL Lac |225135.2+522022 |M | 12.2 | 15.0 | |p |28773. | | 413.8 |40 |M6.5 |00098 00098| +450113 |CM Lac *|220004.5+443308 |EA/DM | 8.18 | 9.15 | 8.53 |V |27026.316 | | 1.6046916 |11 *|A2V+A8V |01823 00010| +450114 |CN Lac *|220608.5+461835 |EB/DW | 12.4 | 12.9 | 12.6 |p |26267.373 | | 0.6373744 | |G3 |01824 | +450115 |CO Lac *|224630.0+564932 |EA/DM | 10.28 | 10.89 | 10.79 |V |27534.0728 | | 1.5422075 |13 *|B8.5IV+B9.5V |05710 01965| +450117 |CQ Lac |222110.4+394313 |RRAB | 11.5 | 13.0 | |p |35036.386 | | 0.620040 |10 |A1 |09330 01089| +450119 |CS Lac *|215942.7+423416 |EB/DM | 9.3 | 9.7 | 9.4 |p |27695.478 | | 3.797807 | |B5V |03376 01142| +450120 |CT Lac |220639.9+482707 |SRA | 10.6 | 17.2 | |p |41110. | | 555. |62 |C6-,4(R) |04972 06566| +450123 |CW Lac |223631.6+564606 |LB | 12.1 | 13.2 | |p | | | | |M0: |01251 01826| +450124 |CX Lac |220746.0+400627 |SRD | 9.5 | 10.6 | |p | | | 133. |55 |K5 |01142 01142| +450125 |CY Lac |221308.7+543334 |EA/DM | 11.5 | 11.8 | |p |28746.219 | | 2.78694 |13 *|B5 |00150 00150| +450126 |CZ Lac *|221930.8+512815 |RRAB | 10.77 | 11.26 | |V |45178.328 | | 0.432205 |14 |A8-F5 |09334 01442| +450127 |DD Lac *|224128.6+401332 |BCEP | 5.16 | 5.28 | |V |43063.774 | | 0.1930924 |50 |B1.5III |00001 BD | +450128 |DE Lac *|221007.8+405511 |DSCT | 10.08 | 10.43 | |V |42659.819 | | 0.2536934 |33 |F5-F8 |08114 01142| +450129 |DF Lac *|222116.9+543156 |DCEP | 11.53 | 12.20 | |V |37393.211 | | 4.47925 |31 |F6pIb-F9pIb |01828 01828| +450130 |DG Lac *|222849.9+534616 |EA/SD | 10.8 | 12.0 | |p |44509.387 | | 2.206534 |16 *|A5 |00001 05862| +450131 |DH Lac *|221221.6+392556 |M | 11.6 | 14.6 | |p |41221. | | 288.8 | |M5e |00001 01089| +450134 |DL Lac |215837.1+414625 |M | 12.5 |< 17. | |p |31327. | | 375. | | |01262 02374| +450144 |DV Lac |224504.3+563719 |LB | 12.1 | 14.6 | |p | | | | |C4,3(N) |02267 02375| +450150 |EF Lac |224949.6+483755 |M | 12.3 | 16. | |p |28399. | | 167.7 | | |02267 02344| +450154 |EK Lac |220449.8+494011 |EA/KE: | 11.2 | 11.7 | |p |32824.253 | | 1.537316 |15 *|A1 |01833 01833| +450155 |EL Lac |220853.7+421621 |EA/SD | 12.4 | 16.0 | |p |25502.578 | | 2.806792 |10 *| |06087 | +450156 |EM Lac *|222354.8+540110 |EW/KW | 12.50 | 13.09 | 13.09 |V |38259.5444 | | 0.38913342 | |F |07431 05862| +450157 |EN Lac *|225623.6+413614 |BCEP+EA/D | 5.41 |( 0.11 )| |B | | | |50 |B2IV |09343 BD | +450159 |EP Lac *|222734.4+542536 |EA/SD | 12.4 | 13.4 |( 0.04 )|p |33187.584 | | 2.0558257 |21 *|B9 |05862 05862| +450162 |ES Lac *|223206.3+535733 |EA/DM | 11.0 | 11.6 | 11.6 |p |34240.416 | | 4.459349 | |A2 |07432 05862| +450164 |EU Lac *|222531.9+514339 |EA/DM | 12.1 | 12.6 | |p |33209.361 | | 2.332488 |10 *|A0 |05862 05862| +450165 |EV Lac *|224649.7+442002 |UV+BY | 8.28 | 11.83 | |B | | | | |M4.5Ve |03380 09349| +450166 |EW Lac *|225704.5+484103 |GCAS | 5.22 | 5.48 | |V | | | | |B3III-IVpeV |01838 BD | +450177 |FN Lac |225133.5+504631 |SRA | 11.9 | 12.7 | |p |28442. | | 128.5 |50 : |M5: |02267 02375| +450178 |FO Lac |225201.1+505809 |LB | 12.4 | 14.3 | |p | | | | |M6-M8 |03381 02375| +450186 |FW Lac |222125.5+453900 |LB | 9.8 | 10.7 | |p | | | | |MB |04396 04396| +450188 |FY Lac |223235.5+453146 |I | 11.0 | 11.9 | |p | | | | | |04397 04397| +450189 |FZ Lac |223452.7+450509 |SRA | 10.6 | 11.4 | |p |36786. | | 60. | |M |04015 BD | +450192 |GI Lac |224040.6+500037 |SRB | 11.9 | 13.0 | |p | | | | |M8 |05862 05862| +450193 |GK Lac |224156.2+502800 |SR | 11.6 | 12.0 | |p | | | | |MIII |04015 02374| +450194 |GL Lac |224407.5+553521 |ACV | 8.73 | 8.90 | |V |36864.88 | | 9.4871 |57 |B8p(Si) |07553 04323| +450206 |GX Lac *|224616.8+565108 |EA/DM | 10.1 | 10.40 | 10.23 |V |39749.3973 | | 6.3552563 |04 |B8 |00001 09314| +450211 |HK Lac *|220456.6+471405 |RS | 6.77 | 7.04 | |V | | | 25.83 | |K0III-IVpeaV |08933 BD | +450220 |HT Lac *|220516.5+464441 |SRB | 6.08 | 6.36 | |V | | | 82. : | |M4IIIab |08814 BD | +450229 |IL Lac |220647.1+520908 |E | 12.5 | 13.1 | |p |33295.302 | | | |A2: |05862 05862| +450243 |IZ Lac *|221305.6+514927 |EB/KE | 12.5 | 12.8 | 12.7 |p |32768.515 | | 0.798878 | |A3 |05862 05862| +450261 |LM Lac |221941.4+503321 |SRB | 11.3 | 12.1 | |p | | | 50. | |MC |05862 05862| +450272 |LX Lac |222159.0+551803 |SRB | 12.5 | 13.6 | |p | | | 150. | |M6 |05862 05862| +450273 |LY Lac *|222204.9+550736 |EA/KE | 12.5 | 12.9 | 12.6 |p |34152.555 | | 1.5451538 |16 *|A0 |05862 05862| +450274 |LZ Lac *|222221.4+552339 |EB/KE | 12.1 | 12.5 | 12.5 |p |33481.560 | | 1.2507007 | |A0 |05862 05862| +450278 |MP Lac *|222349.0+495832 |EA/DS | 12.3 | 13.7 | 12.5 |p |34239.86 | | 31.3957 |20 :*|F8: |05862 05862| +450282 |MT Lac |222445.7+545134 |SRB | 11.6 | 12.0 | |p | | | 36. : | |MC |05862 05862| +450288 |MZ Lac *|222801.7+534100 |EA | 11.2 | 12.1 | 12.1 |p |33873.594 | | 3.158795 |06 :*|A0 |05862 05862| +450291 |NP Lac |222853.6+495112 |LB | 11.5 | 12.2 | |p | | | | |MC |05862 05862| +450300 |NY Lac |223236.7+552605 |SRB | 12.1 | 13.4 | |p | | | 150. : | |M7.5-M8 |05862 05862| +450302 |OO Lac *|223320.5+560855 |EB/SD | 12.5 | 14.2 | 12.8 |p |33560.479 | | 1.755936 | |B7 |05862 05862| +450307 |OT Lac |223644.7+564407 |E: | 11.2 | 11.9 | |p | | | | |B5 |05862 05862| +450308 |OU Lac |223654.8+534000 |LB | 12.3 | 13.1 | |p | | | | | |05862 05862| +450309 |OV Lac *|223851.9+542108 |SRB | 12.5 | 14.0 | |p | | | | |M: |05862 05862| +450311 |OX Lac *|224059.1+504528 |EB/DM | 10.7 | 11.1 |( 0.04 )|p |33562.520 | | 5.5337615 | |B9 |07056 05862| +450314 |PP Lac *|224238.7+532503 |EW/KW | 11.1 | 12.0 | 12.0 |p |45595.438 | | 0.401163 | | |00001 05862| +450319 |PU Lac |220905.5+502758 |LB | 12.5 | 13.2 | |V | | | | |C |06566 06566| +450320 |PV Lac |220943.8+390531 |SR | 12.4 | 14.3 | |p | | | 300. : | | |06087 04321| +450321 |PW Lac |221033.1+371321 |RRAB | 12.0 | 13.4 | |p |37518.472 | | 0.512367 |10 | |06087 04321| +450325 |QQ Lac *|221655.5+500523 |LB | 11.2 | 12.5 | |p | | | | |M5 |06329 06329| +450338 |V0338 Lac *|221055.2+525006 |EA: | 12.4 | 13.1 | |p | | | 76.973 :/N| |A0: |06329 06329| +450340 |V0340 Lac *|221244.5+541109 |EA/D | 11.8 | 12.4 | 12.4 |p |32803.425 | | 19.943265 |02 :*| |06329 06329| +450341 |V0341 Lac |221309.5+533726 |LB | 10.2 | 10.96 | |B | | | | |M0-M3III |06329 06329| +450342 |V0342 Lac *|221400.2+515631 |EW | 12.4 | 12.9 | 12.9 |p |33861.4954 | | 0.7005779 | | |06329 06329| +450343 |V0343 Lac *|221558.4+531843 |EA/SD | 11.3 | 11.6 | |p |32803.456 | | 6.471914 |11 *|A0 |06329 06329| +450344 |V0344 Lac *|221846.9+515915 |EW/KW | 12.2 | 13.0 | 13.0 |p |45222.5635 | | 0.39222768 | |A3: |06329 06329| +450345 |V0345 Lac *|221843.3+544033 |EA/DM | 11.1 | 11.7 | 11.6 |p |31344.407 | | 7.491862 |10 *|B8 |04524 06329| +450346 |V0346 Lac |221915.7+553221 |L | 11.7 | 12.1 | |p | | | | |G5:: |06329 06329| +450347 |V0347 Lac *|222109.6+412319 |ISB: | 11.3 | 13.1 | |p | | | | |G2 |06087 06087| +450348 |V0348 Lac |222733.0+531443 |LB | 11.1 | 11.9 | |p | | | | |M2 |06329 06329| +450350 |V0350 Lac *|223006.5+492123 |ELL+RS | 6.27 | 6.47 | 6.45 |V |44207.743 | | 17.748 | |K2III-IVp |00001 BD | +450354 |V0354 Lac |222910.4+545106 |LB | 10.4 | 12. | |p | | | | |M0III: |04316 BD | +450355 |V0355 Lac *|225513.6+551114 |LB | 12. | 13. | |p | | | | |M7 |04333 | +450357 |V0357 Lac |222022.7+515140 |GCAS | 7.02 |( 0.2 )| |B | | | | |B1IV:pnne |07970 BD | +450358 |V0358 Lac |224746.4+434359 |M | 12.2 | 15.6 | |p |41965. | | 332. | | |08021 04321| +450360 |V0360 Lac *|225021.8+415712 |EB/DM: | 5.91 | 5.98 | 5.93 |V |41895.8077 | | 10.075 | |B3IV:eaV |00001 BD | +450362 |V0362 Lac *|223407.3+392008 |ACV | 8.69 |( 0.07 )| |V |44509.32 | | 1.43 |50 |A0p(4200-Si) |08766 BD | +450363 |V0363 Lac *|224458.5+492853 |LB | 11.2 | 12.0 | |p | | | | |C(N) |08762 08762| +450364 |V0364 Lac *|225214.8+384445 |EA/DM | 8.51 | 9.25 | 9.15 |B |44257.2865 | | 7.351522 |06 |A3 |09358 BD | +450365 |V0365 Lac |220551.2+481353 |ELL | 6.27 |( 0.08 )| |V | | | | | |67283 BD | +450367 |V0367 Lac |221840.4+434435 |M | 10.5 |< 15. | |R | | | | | |68146 68146| +450372 |V0372 Lac |223607.8+423117 |SRB: | 12.5 | 13.5 | |p | | | | | |69127 69127| +450377 |V0377 Lac |225311.4+401003 |LPB | 6.25 |( 0.02 b )| |B | | | | | |72045 BD | +450378 |V0378 Lac |220327.8+453407 |LB | 8.7 | 9.1 | |R | | | | | |73134 73134| +450379 |V0379 Lac |220754.2+410512 |M | 12.1 | 15.2 | |V | | | | | |73011 73011| +450380 |V0380 Lac |221015.6+381546 |M | 11.7 | 15.1 | |V | | | | | |73011 73011| +450381 |V0381 Lac |221558.9+422247 |NL: | 12.5 |< 16.2 | |V | | | | | |73011 73011| +450382 |V0382 Lac |221938.2+481320 |SR | 12.3 | 14.1 | |V | | | | | |73011 73011| +450383 |V0383 Lac |222007.0+493012 |BY+UV | 8.9 |( 0.19 )| |V | | | | | |73182 BD | +450385 |V0385 Lac |222541.2+501816 |M | 12.2 | 15.6 | |V | | | | | |73011 73011| +450386 |V0386 Lac |222956.5+454654 |M | 12.5 | 15.0 | |V | | | | | |73011 73011| +450387 |V0387 Lac |223134.5+481601 |M | 11.0 | 14.6 | |V | | | | | |73011 73011| +450388 |V0388 Lac |224110.5+403411 |M | 10.6 | 15.2 | |V | | | | | |73011 73011| +450389 |V0389 Lac |224321.0+411720 |M | 9.7 | 14.0 | |V | | | | | |73011 73011| +450391 |V0391 Lac |224935.5+521811 |M | 11.8 | 15.2 | |V | | | | | |73011 73011| +450392 |V0392 Lac |225015.9+532417 |SRA | 12.2 | 14.3 | |V | | | | | |73011 73011| +450393 |V0393 Lac |220205.8+422247 |I: | 10.51 | 10.98 | |Hp| | | | | |HIP HIP | +450394 |V0394 Lac |220325.1+484103 |EB | 8.04 | 8.15 | |Hp| | | | | |HIP HIP | +450395 |V0395 Lac |220341.3+531245 |ACYG: | 8.45 | 8.52 | |Hp| | | | | |HIP HIP | +450396 |V0396 Lac |220510.6+440353 |IA: | 9.83 | 10.13 | |Hp| | | | | |HIP HIP | +450397 |V0397 Lac |220608.3+495409 |BE | 9.67 | 9.79 | |Hp| | | | | |HIP HIP | +450398 |V0398 Lac |220712.4+523808 |EA | 8.73 | 9.02 | |Hp| | | | | |HIP HIP | +450399 |V0399 Lac |220725.6+531827 |ACYG: | 6.24 | 6.29 | |Hp| | | | | |HIP HIP | +450400 |V0400 Lac |220749.0+425712 |LPB: | 7.87 | 7.95 | |Hp| | | | | |HIP HIP | +450401 |V0401 Lac |220821.3+491316 |EA | 7.93 | 8.16 | |Hp| | | | | |HIP HIP | +450402 |V0402 Lac |220915.2+445047 |EA | 6.70 | 6.99 | |Hp| | | | | |HIP HIP | +450403 |V0403 Lac |221424.1+523049 |LB: | 7.73 | 7.81 | |Hp| | | | | |HIP HIP | +450404 |V0404 Lac |221900.2+454809 |BE | 8.28 | 8.47 | |Hp| | | | | |HIP HIP | +450405 |V0405 Lac |222150.9+420441 |LPB | 6.35 | 6.37 | |Hp| | | | | |HIP HIP | +450406 |V0406 Lac |222301.6+551359 |ACYG: | 7.95 | 8.02 | |Hp| | | | | |HIP HIP | +450407 |V0407 Lac |222436.9+411824 |ELL: | 8.31 | 8.38 | |Hp| | | | | |HIP HIP | +450408 |V0408 Lac |222541.8+522618 |GCAS | 7.86 | 8.10 | |Hp| | | | | |HIP HIP | +450409 |V0409 Lac |222822.5+472659 |GCAS | 8.41 | 8.62 | |Hp| | | | | |HIP HIP | +450410 |V0410 Lac |222845.6+500817 |LB | 8.47 | 8.83 | |Hp| | | | | |HIP HIP | +450411 |V0411 Lac |222858.3+505747 |DCEPS | 7.83 | 8.07 | |Hp| | | | | |HIP HIP | +450412 |V0412 Lac *|222931.8+474225 |LC | 4.39 | 4.56 | |Hp| | | | | |HIP HIP | +450413 |V0413 Lac *|223005.7+544725 |ELL | 9.72 | 9.85 | |Hp| | | | | |HIP HIP | +450414 |V0414 Lac |223337.6+463355 |ACV | 7.33 | 7.39 | |Hp| | | | | |HIP HIP | +450415 |V0415 Lac |223831.8+555005 |BE | 9.22 | 9.35 | |Hp| | | | | |HIP HIP | +450416 |V0416 Lac |223837.9+564744 |LB | 5.05 | 5.18 | |Hp| | | | | |HIP HIP | +450417 |V0417 Lac |223940.9+470333 |LB | 8.03 | 8.21 | |Hp| | | | | |HIP HIP | +450418 |V0418 Lac |224005.8+404013 |LB | 6.72 | 7.09 | |Hp| | | | | |HIP HIP | +450419 |V0419 Lac |224141.7+440006 |LB: | 9.15 | 9.33 | |Hp| | | | | |HIP HIP | +450420 |V0420 Lac |224417.3+492444 |SRD: | 7.11 | 7.18 | |Hp| | | | | |HIP HIP | +450421 |V0421 Lac |224515.9+471214 |LB | 7.73 | 7.89 | |Hp| | | | | |HIP HIP | +450422 |V0422 Lac |224917.7+475548 |IA: | 7.78 | 7.85 | |Hp| | | | | |HIP HIP | +450423 |V0423 Lac |225547.1+433334 |BE | 7.97 | 8.06 | |Hp| | | | | |HIP HIP | +450424 |V0424 Lac |225626.0+494401 |LC | 5.03 | 5.11 | |Hp| | | | | |HIP HIP | +450441 |V0441 Lac |220937.4+523416 |EW | 12.2 |( 0.22 * )| |R | | | | | |77203 USNO | +450442 |V0442 Lac *|225138.9+515042 |* | 12.26 |( 0.30 )| |V | | | | | |77205 GSC | +450443 |V0443 Lac |220205.4+442035 |BY: | 7.96 |( 0.02 )| |V | | | | |G5V |78018 DM | +450444 |V0444 Lac |220619.7+490821 |SR: | 11.7 | 12.9 | |* | | | | | |78006 2MASS| +450446 |V0446 Lac |221111.9+361523 |BY | 7.23 |( 0.02 )| |V | | | 9.083 | |K0V |78018 DM | +450447 |V0447 Lac |221554.1+544022 |BY | 7.50 |( 0.03 )| |V | | | 4.4266 | |K1V |78018 DM | +450448 |V0448 Lac |222431.4+434311 |SRD: | 11.22 | 11.72 | |U | | | 90.1 | |F8-G0Ia |78302 DM | +450451 |V0451 Lac |224220.8+520335 |M: | 11.1 | 13.1 | |* | | | | | |78006 2MASS| +450452 |V0452 Lac |224527.4+460905 |SR | 12.0 | 13.5 | |* |51496 | | 94. | | |78006 GSC | +450455 |V0455 Lac |221050.5+501937 |EA | 12.44 | 13.05 | 13.05 : |* |51423.743 | | 1.9881 |11 | |79004 79139| +450456 |V0456 Lac |221350.0+435439 |EA | 12.49 | 13.0 : | 13.0 : |* |51383.798 | | 3.1875 |12 | |79004 79168| +450457 |V0457 Lac *|223623.0+380618 |EA | 9.84 | 10.04 | 10.02 : |V |48305.198 | | 6.15727 |02 : |B9V |79006 DM | +450462 |V0462 Lac |220410.9+462431 |DSCTC: | 10.76 |( 0.05 )| |V | | | | |A5: |80176 80176| NL80_3 +450463 |V0463 Lac |220450.8+462300 |DSCTC: | 11.81 |( 0.03 )| |V | | | | |A2V |80176 80176| NL80_3 +450465 |V0465 Lac |220559.2+462717 |LB: | 9.03 |( 0.05 )| |V | | | | |M0 |80176 80176| NL80_3 +450468 |V0468 Lac *|223105.8+502153 |LPB | 7.69 | 7.75 | |Hp| | | 0.824008 | |B9 |80019 DM | NL80_3 +450469 |V0469 Lac |223153.3+363506 |BY | 10.5 | 10.7 | |* | | | 24.04 | | |80043 80043| NL80_3 +450471 |V0471 Lac |223655.2+401028 |BY | 11.42 |( 0.10 *)| |V | | | 15.2555 | | |80021 GSC | NL80_3 +450472 |V0472 Lac |223709.3+421502 |EB | 12.3 | 12.9 | 12.55 |* |51353.586 | | 0.71835 | | |80584 80584| NL80_3 +450474 |V0474 Lac |224558.7+562832 |EB | 12.25 | 12.78 | 12.52 |* |53294.9863 | | 0.7655 | | |80008 80008| NL80_3 +450475 |V0475 Lac |224824.6+393126 |LB | 12.2 | 12.6 | |* | | | | | |80062 GSC | NL80_3 +450476 |V0476 Lac |224918.1+522636 |EA | 10.30 | 10.83 : | 10.69 : |* |51441.210 | | 17.915 |09 | |80042 GSC | NL80_3 +450477 |V0477 Lac |224935.7+525505 |SR | 11.6 | 12.0 | |* | | | 68. | | |80001 USNO | NL80_3 +450479 |V0479 Lac |225250.7+355857 |EW | 12.2 | 12.9 | 12.85 |* |51433.941 | | 0.34575 | | |80085 80085| NL80_3 +460001 |R Leo *|094733.5+112544 |M | 4.4 | 11.3 | |V |44164. | | 309.95 |43 |M6e-M8IIIe-M9.5e |00001 00002| +460002 |S Leo *|111050.8+052735 |M | 9.0 | 14.5 | |V |43591. | | 190.16 |47 |M3e-M6e: |00001 00002| +460005 |V Leo *|100001.9+211544 |M | 8.4 | 14.6 | |V |42706. | | 273.35 |44 |M5e |00001 00002| +460006 |W Leo *|105337.4+134254 |M | 8.9 | 14.8 | |V |43627. | | 391.75 |35 |M5.5e-M7e |00001 00002| +460007 |X Leo |095101.4+115230 |UGSS | 11.1 | 15.7 | |V | | |( 16.90 ) | |pec(UG) |09324 08852| +460008 |Y Leo *|093651.8+261358 |EA/SD | 10.09 | 13.20 |( 0.1 IR)|V |45436.451 | | 1.6861020 |14 *|A5V |00001 00279| +460009 |Z Leo |095208.4+265423 |SRB | 9.9 | 11.5 | |p |36717. | | 56.83 |47 |M3III-IV |00761 00884| +460010 |RR Leo *|100743.5+235930 |RRAB | 9.94 | 11.27 | |V |43295.402 | | 0.4523933 |13 |A7-F5 |00001 09331| +460011 |RS Leo |094325.7+195140 |M | 10.7 | 16.0 | |p |45020. | | 208.2 |31 |M5e |00001 00567| +460012 |RT Leo *|094522.4+195420 |EA/SD | 10.3 | 11.6 | 10.5 |p |23844.037 | | 7.447906 |13 *| |00001 08953| +460013 |RU Leo |105309.4+242131 |LB | 10.3 | 12.0 | |V | | | | |M3 | 08953| +460015 |RW Leo *|103938.5+085940 |EA/SD | 11.9 | 13.6 | |V |43324.73087 | | 1.6825565 |14 *| |08593 01840| +460016 |RX Leo *|112358.4+263654 |RRAB | 11.56 | 12.27 | |V |36306.383 | | 0.6534122 |23 |F2 |03691 00228| +460017 |RY Leo |100415.9+135858 |SRB | 9.0 | 11.8 | |V | | | 155. |47 |M2e | 00002| +460019 |SS Leo *|113354.5-000200 |RRAB | 10.38 | 11.56 | |V |41781.409 | | 0.6263441 |12 |A7-F6 |00001 01841| +460020 |ST Leo *|113832.7+103342 |RRAB | 10.74 | 12.02 | |V |27923.118 | | 0.4779843 |15 |A6-F8 |00001 01842| +460022 |SV Leo |100241.0+264136 |M | 12.3 | 16.5 | |p |30076. | | 307.0 |37 | |02931 06286| +460023 |SW Leo |105555.5-025857 |RRAB | 12.5 | 13.5 | |p |27150.245 | | 0.554152 | | |03717 06286| +460024 |SX Leo |110338.2-031216 |SRB | 9.15 | 10.5 | |V |40644. | | 100. : | |M6 |05828 08953| +460025 |SY Leo |105246.9-011047 |SRB | 12.2 | 13.1 | |p | | | 82. | |K8III-M |00104 06286| +460026 |SZ Leo *|110136.8+080956 |RRAB | 11.91 | 12.79 | |V |45467.291 | | 0.53406125 |14 |A |09266 06286| +460027 |TT Leo |111510.7-012316 |LB | 10.5 | 11.7 | |V | | | | |M7 |00340 06286| +460029 |TV Leo *|111121.9-055332 |RRAB | 11.46 | 12.56 | |V |37041.390 | | 0.6728526 |12 |F4-F6 |08636 00744| +460031 |TX Leo *|103502.2+083902 |EA/DM | 5.66 | 5.75 | 5.69 |V |38844.3055 | | 2.4450566 |11 *|A2V |05720 00462| +460032 |TY Leo *|105227.2-050517 |EA | 10.5 | 11. | |p |25743.47 | | 1.18466 | |G |01848 00190| +460033 |TZ Leo |112340.0+165107 |M | 12. | 15. | |p |35475. | | 331.5 | |M8 |02931 04238| +460034 |UU Leo *|094749.7+125903 |EA/SD | 11.4 | 12.7 | 11.5 |p |45397.456 | | 1.6797409 |10 *|A2 |00001 00196| +460035 |UV Leo *|103820.8+141604 |EA/DW | 8.90 | 9.56 | 9.49 |V |38440.72633 | | 0.60008478 |18 |G0V+G2V |01234 03385| +460036 |UW Leo |111511.1-053531 |LB: | 10.2 | 10.8 | |p | | | | |M5III |00727 08953| +460037 |UX Leo *|111713.6-063514 |EA/SD: | 10.3 | 11.1 | 10.4 |p |37376.430 | | 1.007172 |12 |F4 |00001 00190| +460038 |UY Leo |102921.6+230344 |LB | 9.5 | 11. | |p | | | | |M7III |00483 08953| +460039 |UZ Leo *|104033.2+133401 |EW/KE | 9.58 | 10.15 | 10.12 |V |39800.373 | | 0.6180428 | |A7 |00001 08953| +460040 |VV Leo |104846.6+083958 |SR | 9.3 | 10.21 | |V |28215. | | 181.5 | |M7 |01852 08953| +460042 |VX Leo |111735.8+265945 |LB | 12.4 | 13.2 | |p | | | | |M6.5 |00614 | +460043 |VY Leo |105601.5+061107 |LB: | 5.69 | 6.03 | |V | | | | |M5.5III |01371 BD | +460044 |VZ Leo |092650.7+163603 |EA/SD | 11.8 | 12.9 | |B |31164.316 | | 1.089906 |22 *|A5 |06533 00279| +460045 |WW Leo |093026.1+071221 |RRAB | 12.08 | 12.87 | |V |34882.394 | | 0.60284527 |17 | |05721 01432| +460046 |WX Leo |115612.3+154344 |LB | 9.42 | 9.99 | |B | | | | |M5 |00904 08953| +460047 |WY Leo |093101.1+163925 |EA/D | 11.1 | 11.7 | |p |28552.47 | | 4.985778 |10 *|A2 |03391 00279| +460048 |WZ Leo |093412.7+185406 |EA/D | 11.3 |< 12.0 | |p |31162.50 | | 1.405570 |12 *|A1 |00156 00156| +460049 |XX Leo *|095929.3+134706 |EB | 11.1 | 11.7 | 11.4 |B |31169.418 | | 0.97094 : | |A8 |00279 00156| +460050 |XY Leo *|100140.4+172433 |EW/KW | 9.45 | 9.93 | 9.80 |V |45074.4906 | | 0.2840969 | |K0V+K0 |09317 00156| +460051 |XZ Leo *|100234.2+170247 |EW/KE | 10.6 | 11.2 | 11.1 |p |45025.358 | | 0.4877351 | |A6 |00001 01432| +460052 |YY Leo |100820.0+200013 |SRB | 10.5 | 11.4 | |p | | | 40.9 | |M3 |00156 00156| +460054 |ZZ Leo |113654.8+093145 |SRB | 10.3 | 11.6 | |p |25359. | | 148. |40 |M0 |00156 00156| +460055 |AA Leo |113914.2+101938 |RRAB | 11.61 | 12.83 | |V |39596.655 | | 0.5986557 |14 |F: |00001 00470| +460056 |AB Leo *|093322.0+195217 |SRD | 10.7 | 13.2 | |p |34855. | | 130.2 | |F6e-G6ep |09361 00002| +460057 |AC Leo |100014.7+172735 |CST: | 9.44 | 9.49 | |V | | | | |K0III |03596 BD | +460058 |AD Leo *|101936.3+195212 |UV | 8.07 | 11.00 | |B | | | | |M4.5Ve |09362 07060| +460059 |AE Leo |112612.2+173940 |RRAB | 11.6 | 12.8 | |p |19839.590 | | 0.626723 |20 |A0 |03396 00156| +460060 |AF Leo *|112753.1+150848 |SRB | 9.5 | 11. | |p | | | 107. |43 |M5 |00310 08953| +460061 |AG Leo |095332.2+160206 |EA/D | 10.7 | 11.2 | |p |26651.635 | | 3.392498 |10 |F5 |03397 00156| +460063 |AI Leo |114028.6+111143 |LB | 8.44 | 10.5 | |V | | | | |M5 |00104 08953| +460064 |AK Leo |114048.4+130441 |SRB | 8.36 | 9.4 | |V | | | 60. : | |M5 |05429 08953| +460065 |AL Leo |095812.9+181728 |EA/D | 10.2 | 10.6 | |p |26115.9 | | 4.1444 : | |F5 |00156 00156| +460066 |AM Leo *|110210.9+095343 |EW/KW | 9.25 | 9.83 | 9.83 |V |42493.389 | | 0.36579740 | |F8V |00001 08953| +460067 |AN Leo |112322.5+063805 |RRAB | 11.8 | 12.9 | |p |19858.407 | | 0.5720244 |18 | |03558 02346| +460068 |AO Leo |113449.4+231403 |M: | 12.5 | 15. | |p |26720. | | 150. : | | |03399 00158| +460069 |AP Leo *|110505.0+050906 |EW/KW | 9.32 | 9.91 | 9.88 |V |39536.542 | | 0.4303576 | |G0V |00001 08953| +460070 |AQ Leo *|112355.3+101858 |RR(B) | 12.37 | 13.15 | |B |41766.480 | | 0.5497508 | |A1 |09320 02346| +460077 |AX Leo |113303.8+120914 |RRAB | 11.8 | 12.3 | |p |25244.703 | | 0.726828 |18 |A2 |04166 02347| +460097 |BT Leo |111204.6+183005 |RRAB | 12.0 | 13.1 | |p |25619.667 | | 0.499727 |18 | |03160 00141| +460101 |BX Leo *|113802.1+163236 |RRC | 11. | 11.7 | |p |38406.72 | | 0.36286 |40 |A6 |03925 00470| +460106 |CE Leo *|114424.3+232123 |EW/KW | 11.8 | 12.6 | 12.5 |p |45047.4325 | | 0.303429 | | |05264 04065| +460114 |CN Leo *|105628.9+070053 |UV | 11.52 | 17.08 | |U | | | | |M6.5Ve |09227 04139| +460122 |CV Leo |115358.8+202924 |LB | 10.67 | 11.2 | |B | | | | |K5 |05264 BD | +460123 |CW Leo *|094757.4+131643 |M | 10.96 | 14.8 | |R |41710. | | 630. |40 |C9,5 |09321 06140| +460124 |CX Leo *|102739.0+094545 |ACV | 5.97 | 6.15 | |V | | | 7.897 | |A0p(Si-Cr-Sr) |09322 BD | +460126 |CZ Leo |113120.0-041759 |SRB | 8.51 | 9.01 | |V |40680. :| | 115. | |M5 |05828 08953| +460127 |DD Leo |100814.9+172131 |SRB: | 10.2 | 10.9 | |p | | | | |M8 |00156 00156| +460128 |DE Leo *|102515.2+084706 |SRB: | 5.60 |( 0.07 )| |V | | | | |M2IIIabS |05896 08953| +460129 |DF Leo |092329.5+074250 |SRB | 6.74 | 6.95 | |V | | | 70. : | |M4III |06645 BD | +460130 |DG Leo *|094950.1+211046 |DSCTC | 6.08 | 6.12 | |V | | | 0.08184505 |50 |A8IV |07015 BD | +460131 |DH Leo *|100001.7+243310 |RS | 7.75 | 7.94 | |V |43194.475 | | 1.06950 | |K0Ve+B: |04066 BD | +460133 |DK Leo *|101419.2+210430 |BY | 9.87 | 10.20 | |V | | | 8.05 |50 |M0Ve |08768 HIP | +460134 |DL Leo |094303.6+101901 |RRAB | 12.44 | 13.54 | |V | | | | | |67451 67450| +460135 |DM Leo |101319.9+110609 |RRAB | 12.5 |( 1.1 V )| |p | | | | | |67453 67063| +460136 |DN Leo |103855.2+100349 |PVTEL: | 9.91 | 10.00 | |V | | | | | |67455 BD | +460139 |DQ Leo |114759.1+201308 |RS | 4.53 |( 0.03 )| |V | | | | | |67458 BD | +460140 |DR Leo |094135.1+311640 |LB | 5.84 | 5.98 | |V | | | | | |68006 BD | +460141 |DS Leo |110238.3+215802 |BY | 9.52 | 9.57 | |V | | | | | |68147 BD | +460143 |DU Leo |094411.4+252111 |EA/SD | 8.68 | 9.43 | |R | | | | | |71092 BD | +460144 |DV Leo |095358.3+101532 |SR | 7.78 | 8.13 | |V | | | | | |71094 BD | +460145 |DW Leo |102611.5+145401 |RS | 8.5 |( 0.08 )| |V | | | | | |71001 BD | +460146 |DX Leo |093243.8+265919 |BY | 7.00 |( 0.10 )| |V | | | | | |73360 BD | +460147 |DY Leo |094948.5+110623 |RS | 7.59 |( 0.05 )| |V | | | | | |73005 BD | +460149 |EE Leo |105052.1+064829 |BY | 11.64 | 11.70 | |V | | | | | |73018 73066| +460151 |EG Leo |092950.1+190558 |LB | 8.78 | 8.97 | |Hp| | | | | |HIP HIP | +460152 |EH Leo |093106.2+250250 |SRB | 7.70 | 7.89 | |Hp| | | | | |HIP HIP | +460153 |EI Leo |093441.5+081115 |SRB | 7.38 | 7.49 | |Hp| | | | | |HIP HIP | +460154 |EK Leo |094348.9+072955 |SRB | 8.73 | 8.91 | |Hp| | | | | |HIP HIP | +460155 |EL Leo |094720.4+324656 |SRB | 7.52 | 7.83 | |Hp| | | | | |HIP HIP | +460156 |EM Leo |095045.0+312334 |LB | 7.06 | 7.27 | |Hp| | | | | |HIP HIP | +460157 |EN Leo |095304.4+220724 |LB | 8.11 | 8.25 | |Hp| | | | | |HIP HIP | +460158 |EO Leo |100249.0+215657 |LPB: | 5.59 | 5.62 | |Hp| | | | | |HIP HIP | +460159 |EP Leo |100346.5+120720 |SRD: | 8.01 | 8.08 | |Hp| | | | | |HIP HIP | +460160 |EQ Leo |101323.9+120846 |LB: | 9.49 | 9.65 | |Hp| | | | | |HIP HIP | +460161 |ER Leo |102147.1+153204 |DSCTC: | 9.88 | 9.94 | |Hp| | | | | |HIP HIP | +460162 |ES Leo |103211.8+140814 |SRB: | 5.46 | 5.56 | |Hp| | | | | |HIP HIP | +460163 |ET Leo |103325.8+173427 |EW: | 9.60 | 9.72 | |Hp| | | | | |HIP HIP | +460164 |EU Leo |104123.5+083346 |LB | 7.59 | 7.71 | |Hp| | | | | |HIP HIP | +460165 |EV Leo |104137.2+135843 |SRB | 7.63 | 7.77 | |Hp| | | | | |HIP HIP | +460166 |EW Leo |104440.4+192523 |SRB: | 9.15 | 9.57 | |Hp| | | | | |HIP HIP | +460167 |EX Leo |104506.8+162016 |EW | 8.27 | 8.49 | |Hp| | | | | |HIP HIP | +460168 |EY Leo |105030.8+101949 |LB | 8.55 | 8.85 | |Hp| | | | | |HIP HIP | +460169 |EZ Leo |105836.9+211417 |LB | 8.18 | 8.31 | |Hp| | | | | |HIP HIP | +460170 |FF Leo |110215.8+041157 |SRB | 9.35 | 9.71 | |Hp| | | | | |HIP HIP | +460171 |FG Leo |110419.1+051330 |SRB | 7.84 | 8.01 | |Hp| | | | | |HIP HIP | +460172 |FH Leo |110607.4+070201 |NL: | 8.33 | 8.62 | |Hp| | | | | |HIP HIP | +460173 |FI Leo |111036.8+111806 |LB | 6.92 | 7.34 | |Hp| | | | | |HIP HIP | +460174 |FK Leo |111205.5+141822 |EA | 8.57 | 8.85 | |Hp| | | | | |HIP HIP | +460175 |FL Leo *|111213.3+220320 |SRD: | 8.39 | 8.76 | |V | | | | | |HIP HIP | +460176 |FM Leo |111245.1+002053 |EA | 8.54 | 8.86 | |Hp| | | | | |HIP HIP | +460177 |FN Leo |111512.2+230544 |LC | 4.56 | 4.64 | |Hp| | | | | |HIP HIP | +460178 |FO Leo |111725.1+224940 |EB | 8.50 | 8.73 | |Hp| | | | | |HIP HIP | +460179 |FP Leo |112107.7+151347 |LB: | 9.93 | 10.10 | |Hp| | | | | |HIP HIP | +460180 |FQ Leo |112129.3+035615 |LB: | 8.19 | 8.32 | |Hp| | | | | |HIP HIP | +460181 |FR Leo |112239.0+095327 |LB: | 9.70 | 9.89 | |Hp| | | | | |HIP HIP | +460182 |FS Leo |112758.5+144956 |EB | 9.06 | 9.25 | |Hp| | | | | |HIP HIP | +460183 |FT Leo |112935.6+280524 |LB: | 8.81 | 8.92 | |Hp| | | | | |HIP HIP | +460184 |FU Leo |113127.7+084500 |LB | 8.77 | 9.25 | |Hp| | | | | |HIP HIP | +460185 |FV Leo |113203.6+180918 |SRB | 7.87 | 8.05 | |Hp| | | | | |HIP HIP | +460186 |FW Leo |114244.0+181431 |ACV: | 7.31 | 7.38 | |Hp| | | | | |HIP HIP | +460187 |FX Leo *|114657.2+270123 |SR: | 8.91 | 9.34 | |Hp| | | | | |HIP HIP | +460188 |FY Leo |114927.1+181408 |SRB | 8.45 | 8.59 | |Hp| | | | | |HIP HIP | +460189 |FZ Leo |115801.0+140217 |BY: | 8.44 | 8.58 | |Hp| | | | | |HIP HIP | +460192 |GI Leo |103937.6+122323 |SR | 10.5 | 12.2 | |p | | | | | |75064 75064| +460193 |GK Leo |110750.5+270908 |LB | 11.6 | 13.2 | |V | | | | | |76054 GSC | +460195 |GM Leo |100408.4+113743 |DSCTC | 7.10 |( 0.04 )| |V | | | | | |77084 DM | +460196 |GN Leo |102223.5+252959 |SR | 8.97 |( 0.70 )| |V | | | | | |77087 DM | +460199 |GQ Leo |114745.7+125403 |BY: | 9.7 |( 0.14 )| |R | | | | | |77097 77097| +460200 |GR Leo |115728.9+195902 |BY | 8.87 | 8.92 | |B | | | | | |77053 DM | +460201 |GS Leo |093035.8+103606 |BY | 8.66 |( 0.06 )| |V | | | 3.041 | |G9V |78018 DM | +460202 |GT Leo |094209.9+073525 |BY | 8.92 |( 0.04 )| |V | | | 10.92 | |K0Ve |78018 DM | +460203 |GU Leo *|094733.8+182143 |EW | 11.62 | 12.31 | 12.19 |* |52385.2621 | | 0.354076 | | |78135 GSC | +460204 |GV Leo *|101159.2+165230 |EW | 11.45 | 11.96 | 11.87 |V |52754.4602 | | 0.266727 | | |78306 GSC | +460205 |GW Leo |101853.5+134109 |EW | 12.06 | 12.23 | |* |52721.528 | | 0.33614 | | |78060 GSC | +460206 |GX Leo |105616.9+222106 |SRS | 7.71 | 7.79 | |B | | | 13.96 | |K4III |78141 DM | +460207 |GY Leo |105630.8+072319 |BY | 7.37 |( 0.03 )| |V | | | 11.43 | |K0V |78018 DM | +460208 |GZ Leo |110202.3+223546 |RS | 8.83 | 8.95 | |V | | | 1.5264 | |K0V+K2V |78141 DM | +460209 |HH Leo |110441.5-041316 |BY | 7.57 | 7.61 | |V | | | 6.9 | |G5V |78046 DM | +460210 |HI Leo *|111216.8+011906 |EB | 11.2 |( 0.8 )|( 0.5 )|V |50552.3886 | | 0.311589 | | |78017 GSC | +460212 |HL Leo |114347.0+240037 |BY | 7.40 |( 0.06 )| |V | | | 37.17 | |G2V |78018 DM | +460214 |HN Leo |095826.0+274532 |GDOR | 6.44 | 6.51 | |V | | | 0.7753 | |F0V+F5:V |79219 DM | +460218 |HR Leo |110442.3-025820 |EB | 8.94 | 9.03 | 8.98 |V |48220.840 | | 1.081354 | |F2V |79004 DM | +460220 |HT Leo |092205.1+070002 |RS | 11.9 | 12.1 | |* | | | 1.72442 | | |80060 80060| NL80_2 +460223 |HW Leo |094328.8+292714 |RRAB | 12.11 | 12.68 | |* |51518.87 | | 0.59072 |16 | |80026 GSC | NL80_2 +460230 |IM Leo |103353.0+191535 |RRAB | 11.9 | 12.6 | |V |53902.5142 | | 0.50405 |10 | |80001 GSC | NL80_2 +460231 |IN Leo |103959.0+132722 |RS | 10.1 | 10.5 | |V | | | 6.217 | | |80034 GSC | NL80_2 +460235 |IR Leo |105609.6-054022 |BY | 12.4 | 12.6 | |* | | | 1.483315 | |K7e |80060 80060| NL80_2 +460240 |IW Leo |105920.1+045317 |RS | 12.3 | 12.8 | |V | | | 17.50 | | |80034 GSC | NL80_2 +460246 |KM Leo |111013.0+182812 |BY | 11.7 | 11.9 | |* | | | 5.811 | | |80043 80043| NL80_2 +460255 |KV Leo *|112550.0+035136 |GDOR: | 6.34 | 6.37 | |V | | | 0.45286 | |F3IV |80130 HIP | NL80_2 +460257 |KX Leo |112759.4+132151 |RRC | 11.7 | 12.3 | |V |53737.8336 | | 0.345643 |35 | |80002 GSC | NL80_2 +460260 |LL Leo |113053.6+131928 |RRAB | 12.4 | 13.7 | |V |51573.86 | | 0.33240 |15 | |80026 GSC | NL80_2 +460265 |LQ Leo |114839.2+231139 |BY | 10.44 |( 0.12 *)| |V | | | 4.7245 | | |80021 DM | NL80_2 +469002 |bet Leo |114903.6+143419 |DSCTC | 2.14 |( 0.025 )| |V | | | | | |67459 BD | +469017 |rho Leo |103248.7+091824 |ACYG | 3.83 | 3.90 | |V | | | | |B1Iab |07884 BD | +470001 |R LMi *|094534.3+343043 |M | 6.3 | 13.2 | |V |45094. | | 372.19 |41 |M6.5e-M9.0e(Tc:) |00001 00002| +470002 |S LMi |095343.2+345535 |M | 7.5 | 14.3 | |V |45292. | | 233.83 |42 |M2.0e-M8.2e |00001 00002| +470003 |T LMi *|094828.5+331720 |EA/SD | 10.87 | 12.92 | 10.97 |V |45397.368 | | 3.019885 |12 *|A3V |00001 01924| +470004 |U LMi *|095438.6+360524 |SRA | 10.0 | 13.3 | |V |34354. | | 272.2 |40 |M6e |00001 00002| +470005 |V LMi *|102525.6+284708 |RRAB | 11.10 | 12.23 | |V |19530.341 | | 0.5439187 |15 |A8-F1 |00001 00884| +470006 |W LMi |104438.8+260211 |SRD | 10.5 | 13.5 | |V |28303. | | 117.2 |46 |G2e-K2e(M3) |00310 00119| +470007 |X LMi |100606.7+392128 |RRAB | 11.76 | 12.81 | |V |39200.007 | | 0.6843193 |17 |A5: |00001 03401| +470008 |Y LMi *|101551.5+325133 |RRAB | 11.4 | 13.3 | |V |35556.0394 | | 0.5244710 |32 |A3 |03258 01856| +470009 |Z LMi |094015.2+360619 |LB | 11.1 | 12.5 | |p | | | | |M |00499 02379| +470011 |RS LMi |092833.8+360939 |LB | 9.5 | 10.6 | |p | | | | |M7 |04154 02379| +470012 |RT LMi *|094948.3+342715 |EW/KW | 11.4 | 11.7 | 11.7 |p |45002.4147 | | 0.3749180 | |G0 |09319 04157| +470014 |RV LMi |102329.0+295057 |SRB | 10.0 | 10.6 | |p | | | 55. : | |M5 |04077 02379| +470016 |RX LMi |104211.3+314149 |SRB | 5.98 | 6.16 | |V | | | 150. : | |M4IIIa |06590 BD | +470021 |SU LMi |093413.4+362351 |RS: | 4.54 |( 0.02 )| |V | | | | | |69181 BD | +470022 |SV LMi |093539.5+354837 |RS: | 5.39 |( 0.04 )| |V | | | | | |69181 BD | +470028 |TU LMi |094415.6+344315 |LB | 9.0 | 9.9 | |p | | | | | |HIP HIP | +470029 |TV LMi |095545.7+371142 |EA: | 9.10 | 9.36 | |Hp| | | | | |HIP HIP | +470030 |TW LMi |100327.6+411817 |SRB | 7.36 | 7.48 | |Hp| | | | | |HIP HIP | +470031 |TX LMi |101149.5+330729 |LB: | 8.76 | 8.86 | |Hp| | | | | |HIP HIP | +470032 |TY LMi |101657.4+294106 |LB | 8.53 | 8.71 | |Hp| | | | | |HIP HIP | +470033 |TZ LMi |101846.5+391841 |SRB | 8.46 | 8.63 | |Hp| | | | | |HIP HIP | +470034 |UU LMi |102422.2+341035 |SRB | 6.89 | 7.03 | |Hp| | | | | |HIP HIP | +470035 |UV LMi |104110.3+344118 |LB: | 8.07 | 8.18 | |Hp| | | | | |HIP HIP | +470036 |UW LMi |104330.2+284109 |EA | 8.44 | 8.67 | |Hp| | | | | |HIP HIP | +470037 |UX LMi |104542.2+275754 |DSCTC | 9.16 | 9.24 | |Hp| | | | | |HIP HIP | +470038 |UY LMi |104644.3+344353 |LB | 8.13 | 8.35 | |Hp| | | | | |HIP HIP | +470039 |UZ LMi |104901.1+264813 |SRD: | 8.64 | 8.82 | |Hp| | | | | |HIP HIP | +470040 |VV LMi |110208.5+275223 |SRD | 8.21 | 8.44 | |Hp| | | | | |HIP HIP | +470041 |VW LMi |110251.9+302455 |EW: | 8.03 | 8.45 | |Hp| | | | | |HIP HIP | +470042 |VX LMi |110545.3+303545 |SRB | 8.55 | 8.84 | |Hp| | | | | |HIP HIP | +470044 |VZ LMi |093925.6+341453 |M | 10.3 |< 15.0 | |p | | | | | |75002 USNO | +470045 |WW LMi |105442.2+252927 |DSCTC | 6.16 | 6.23 | |V | | | | | |75159 BD | +470048 |WZ LMi *|103126.5+313833 |EW | 12.45 | 12.71 | 12.68 |* |52355.9645 | | 0.389131 | | |78135 GSC | +470049 |XX LMi *|103304.8+322215 |EW | 12.42 | 12.58 | 12.56 |* |52358.913 | | 0.3709787 | | |78122 GSC | +470050 |XY LMi *|103412.3+320852 |EW | 10.71 | 11.15 | 11.13 |* |52366.884 | | 0.4368897 | | |78122 GSC | +470051 |XZ LMi *|105948.3+251724 |RS: | 8.49 |( 0.03 )| |V | | | 7.019 | |G8V |78018 DM | +470052 |YY LMi *|110314.5+303531 |RS: | 8.96 |( 0.06 )| |V | | | 11.53 | |G5V |78018 DM | +470054 |ZZ LMi |093112.7+380231 |RS | 10.8 | 12.1 | |* | | | 5.501 | | |80043 80043| NL80_2 +470055 |AA LMi |094753.0+331702 |DSCTC | 11.4 |( 0.04 )| |* | | | 0.0542 | | |80325 80325| NL80_2 +470058 |AD LMi *|102622.8+374513 |RS | 9.6 | 9.8 | |* | | | 17.8 | |K1IV |80069 80069| NL80_2 +470061 |AG LMi *|104448.8+332112 |EA | 10.72 | 11.31 | 10.75 : |* |51526.875 | | 0.679507 |23 | |80013 GSC | NL80_2 +470062 |AH LMi |104556.7+262959 |RS | 11.9 | 12.1 | |* | | | 2.51292 | | |80060 80060| NL80_2 +470063 |AI LMi |104646.9+371730 |BY: | 11.6 | 11.8 | |* | | | 14.902 | | |80060 80060| NL80_2 +470064 |AK LMi |105305.0+381333 |RS | 10.35 | 10.48 | |* | | | 9.7733 | | |80170 80170| NL80_2 +480001 |R Lep *|045936.4-144823 |M | 5.5 | 11.7 | |V |42506. | | 427.07 |55 |C7,6e(N6e) |00001 00002| +480002 |S Lep *|060545.5-241144 |SRB | 6.0 | 7.58 | |V | | | 89.0 | |M6III |01266 00097| +480003 |T Lep *|050450.8-215417 |M | 7.4 | 14.3 | |V |41844. | | 368.13 |47 |M6e-M9e |00001 00002| +480004 |U Lep *|045618.0-211302 |RRAB | 9.84 | 11.11 | |V |41352.346 | | 0.5814762 |13 |A7-F7 |07114 01045| +480005 |V Lep *|061058.6-201242 |EB/KE | 9.6 | 10.1 | 9.9 |V |18873.723 | | 1.0701048 | |A5 |00279 00279| +480006 |W Lep |060951.0-223151 |SR | 10.2 | 11.6 | |p | | | 485.0 | | |01266 BD | +480007 |X Lep |051820.1-162107 |M | 10.6 | 16. | |p |38744. | | 278.81 | |M7e |00001 00132| +480008 |Y Lep |050850.9-242529 |SRB | 10.3 | 11.7 | |p | | | 109. | |M4III |01191 08953| +480009 |Z Lep *|051010.0-145217 |E | 11. | 12.5 | 12.0 : |p |27424.311 | | 0.993715 | |F0 |00279 00279| +480010 |RR Lep *|051210.5-131159 |EB | 10.2 | 11.1 | 10.4 |p |30377.162 | | 0.915428 | |A2 |03263 01857| +480011 |RS Lep *|055918.4-201325 |EA/SD | 9.91 | 10.38 | 9.96 |V |36191.148 | | 1.2885439 |18 *|A2V |02487 00279| +480012 |RT Lep |054233.2-234141 |M | 10.5 |< 12.5 | |p |32966. | | 399.0 | |M9e |00001 08953| +480013 |RU Lep *|060352.3-245407 |EA | 11.23 | 12.12 | |V |43516.670 | | 4.459601 |07 *| |09329 08953| +480014 |RV Lep |060946.8-222849 |SR: | 11.7 | 12.6 | |p | | | 200. : | | |01859 | +480015 |RW Lep |053852.7-140227 |SRA | 11.6 | 13.0 | |p |25992. | | 149.9 |35 |M8 |01860 00975| +480016 |RX Lep |051122.9-115057 |SRB | 5.0 | 7.4 | |V | | | 60. : | |M6.2III |08837 08953| +480017 |RY Lep |054810.3-200125 |EA | 8.2 | 9.1 | |V |38315.595 | | | |F0 |04400 08953| +480018 |RZ Lep *|051846.1-221244 |SRB | 8.33 | 8.44 | |V | | | 10. : | |S4,5(M0) |06059 BD | +480019 |SS Lep *|060459.1-162904 |ZAND | 4.82 | 5.06 | |V | | | | |A0Veq+M1III |07141 BD | +480020 |ST Lep |051925.6-135053 |M | 12. |< 16. | |p |40590. | | 700. /N| | |07446 07446| +480021 |SU Lep |052242.2-134751 |EA | 12.2 | 12.8 | |R |42038.960 | | 2.993 /N| |F: |07446 07446| +480022 |SV Lep |052543.6-142332 |M | 11.6 | 14.5 | |R | | | | |Me |07446 07446| +480023 |SW Lep |051649.6-243529 |LB | 9.5 | 10. | |p | | | | |M3 |00190 CoD | +480024 |SX Lep |055937.6-255553 |SR | 12. |< 13. | |p | | | | | |00085 02381| +480025 |SY Lep *|060946.1-130653 |M | 12. |< 16. | |p |42503. | | 307.5 | |M5e |00001 09364| +480026 |SZ Lep |053547.7-254419 |LB: | 7.40 | 7.93 | |V | | | | |C7,3(R8) |06869 CoD | +480027 |TT Lep |060648.9-213738 |E | 12.1 | 12.9 | |p |30369.300 | | 4.28885 | | |08040 05254| +480028 |TU Lep |050622.1-144148 |ACV | 7.07 |( 0.105 )| |V | | | | | |67065 BD | +480030 |TW Lep |054039.7-201756 |RS: | 7.0 |( 0.32 )| |V | | | | | |67401 BD | +480031 |TX Lep |051918.3-183034 |ACV | 6.54 |( 0.04 )| |V | | | | | |68148 BD | +480034 |UU Lep |051430.6-261231 |RS | 6.91 | 7.02 | |V | | | | | |69011 CoD | +480035 |UV Lep |061121.8-154735 |ACVO | 6.77 |( 0.01 B )| |V | | | | | |72098 BD | +480036 |UW Lep |045823.0-255705 |LB: | 9.84 | 10.04 | |Hp| | | | | |HIP HIP | +480037 |UX Lep |045946.4-212340 |LB: | 9.47 | 9.67 | |Hp| | | | | |HIP HIP | +480038 |UY Lep |050734.8-240757 |LB: | 9.68 | 9.85 | |Hp| | | | | |HIP HIP | +480039 |UZ Lep |050831.9-210414 |LB: | 9.56 | 9.72 | |Hp| | | | | |HIP HIP | +480040 |VV Lep |051305.2-235752 |LB: | 8.44 | 8.52 | |Hp| | | | | |HIP HIP | +480041 |VW Lep |051800.8-183645 |LB: | 7.91 | 8.02 | |Hp| | | | | |HIP HIP | +480042 |VX Lep |051931.2-250727 |LB | 6.76 | 6.99 | |Hp| | | | | |HIP HIP | +480043 |VY Lep |052347.7-264838 |LB: | 9.08 | 9.19 | |Hp| | | | | |HIP HIP | +480044 |VZ Lep |053241.8-161909 |SRD | 6.76 | 6.86 | |Hp| | | | | |HIP HIP | +480045 |WW Lep |053526.6-154417 |LPB | 6.76 | 6.80 | |Hp| | | | | |HIP HIP | +480046 |WX Lep |053925.1-111237 |EB | 7.93 | 8.02 | |Hp| | | | | |HIP HIP | +480047 |WY Lep |054614.0-233840 |LB | 6.39 | 6.55 | |Hp| | | | | |HIP HIP | +480048 |WZ Lep |054714.0-124817 |LB | 7.26 | 7.55 | |Hp| | | | | |HIP HIP | +480049 |XX Lep |055223.8-261728 |ACV | 7.82 | 7.86 | |Hp| | | | | |HIP HIP | +480050 |XY Lep |055618.3-240520 |LB: | 7.75 | 7.85 | |Hp| | | | | |HIP HIP | +480051 |XZ Lep |060651.9-111025 |LPB | 6.60 | 6.62 | |Hp| | | | | |HIP HIP | +480052 |YY Lep |060657.5-214844 |SRB: | 5.60 | 5.82 | |Hp| | | | | |HIP HIP | +480053 |YZ Lep |051917.4-183112 |LPB | 6.30 | 6.36 | |Hp| | | | | |75160 BD | +480054 |ZZ Lep |052728.2-124150 |NL: | 9.77 | 10.02 | |V | | | | | |75161 BD | +480055 |AA Lep |055412.4-224147 |M: | 10.4 | 13.1 | |p | | | | | |75002 GSC | +480056 |AB Lep |055506.6-225402 |RS: | 12.5 |( 0.1 )| |V | | | | | |75162 75162| +480057 |AC Lep |060017.7-125400 |GDOR | 6.28 | 6.30 | |Hp| | | | | |75029 BD | +480058 |AD Lep |052144.6-155534 |M | 12.3 | 15.3 | |V | | | | | |76012 GSC | +480059 |AE Lep |060337.0-145303 |IA | 10.17 | 10.44 | |V | | | | | |76027 DM | +480060 |AF Lep |052704.8-115404 |RS | 6.26 | 6.35 | |V | | | 1. : | |F7V+G5V |78071 DM | +480061 |AG Lep |053019.1-191632 |BY | 9.62 | 9.67 | |V | | | 1.90 | |G5V |78046 DM | +480062 |AH Lep |053409.2-151703 |BY | 8.46 | 8.50 | |V | | | 1.31 | |G3V |78046 DM | +480063 |AI Lep |054020.7-194011 |RS | 8.97 |( 0.05 )| |V | | | 1.713 | |G6IV+G0V |78018 DM | +480064 |AK Lep |054426.5-222519 |BY | 6.15 |( 0.06 )| |V | | | 21.4 | |K2V |78074 DM | +480065 |AL Lep |050617.7-200753 |EW | 9.40 | 9.75 | 9.70 |V |51868.910 | | 0.44864 | |G0 |79064 DM | +480066 |AM Lep *|051217.6-115158 |BY | 9.92 |( 0.07 )| |V | | | 2.8 | |G8Ve |79147 2MASS| +480068 |AO Lep |052414.6-140603 |RRAB | 11.8 | 12.7 | |V |53767.688 | | 0.560086 |21 | |79100 79178| +480069 |AP Lep |052619.5-152730 |EA | 9.65 | 10.21 | 9.71 |V |51579.808 | | 2.29609 |11 |A9V |79003 DM | +480071 |AR Lep |054050.1-233507 |EA | 10.71 | 11.5 : | 10.86 |V |52736.660 | | 13.5166 |07 | |79011 DM | +480072 |AS Lep |054111.8-165232 |SRB | 8.5 | 8.9 | |V | | | 52.5 | |M2 |79100 DM | +480073 |AT Lep |054817.1-250231 |EA | 11.45 | 12.2 : | 12.0 : |V |52634.783 | | 10.6495 |03 : | |79003 DM | +480074 |AU Lep |060104.4-121221 |M | 12.2 |< 14.4 | |V |53681. | | 278. | | |79190 79190| +480075 |AV Lep |060150.8-210618 |SRB | 9.6 | 10.6 | |V | | | 200. : | | |79100 79080| +480076 |AW Lep |060435.1-140157 |GDOR: | 7.65 | 7.69 | |Hp| | | 0.4199 | |A9V |79145 DM | +480077 |AX Lep |050349.6-113101 |IB | 12.26 |( 0.04 )| |V | | | 1.75 : | |K1 |80151 GSC | NL80_1 +480078 |AY Lep |052259.4-203253 |SRB | 9.3 | 9.7 | |V | | | 58.8 | |M0e+F |80184 DM | NL80_1 +480080 |BB Lep |054230.2-162255 |RRAB | 11.8 | 12.7 | |V |51869.75 | | 0.53890 |20 | |80002 GSC | NL80_1 +480081 |BC Lep *|054530.6-174634 |EA | 10.58 | 11.15 | 10.70 |V |53619.883 | | 3.9895 |14 : | |80023 GSC | NL80_1 +480084 |BF Lep |055137.0-143213 |RRAB | 12.4 | 13.4 | |V |53812.6261 | | 0.5190007 |12 | |80001 GSC | NL80_1 +480085 |BG Lep |055208.7-220810 |SRB | 11.9 | 12.3 | |* | | | 50. | | |80001 GSC | NL80_1 +489012 |mu. Lep |051255.9-161220 |ACV | 2.97 | 3.41 | |V | | | 2. : | |B9IIIp(Hg-Mn) |07968 BD | +490001 |R Lib |155336.0-161411 |M | 9.8 | 15.9 | |V |39221. | | 241.85 |44 |M5e |00001 00002| +490002 |S Lib *|152124.0-202318 |M | 7.5 | 13.0 | |V |41883. | | 192.9 |49 |M1.0e-M6.0e |00001 00002| +490003 |T Lib |151044.3-200108 |M | 10.2 | 15.6 | |V |38474. | | 237.50 |41 |M4e-M5.5e |00001 00002| +490004 |U Lib |154203.1-211051 |M | 9.0 | 15.0 | |V |39124. | | 226.59 |44 |M3e-M8.0e |00001 00002| +490005 |V Lib |144022.2-173927 |M | 9.0 | 15.9 | |V |39214. | | 255.30 |42 |M5e-M8.0e |00001 00002| +490006 |W Lib *|153747.9-160957 |M | 10.5 | 15.5 | |V |38945. | | 205.50 |45 | |00001 00002| +490007 |X Lib *|153612.7-210904 |M | 10.0 | 14.5 | |V |38470. | | 164.38 |40 |M4e |00001 00002| +490008 |Y Lib *|151141.3-060041 |M | 7.6 | 14.7 | |V |44017. | | 275.7 |41 |M5e-M8.2e |00001 00002| +490009 |Z Lib *|154631.2-210739 |M | 10.4 |< 14.0 | |V |27689. | | 298.6 | |M3e |00001 00579| +490010 |RR Lib *|155623.7-181815 |M | 7.8 | 15.0 | |V |38784. | | 277.01 |47 |M4e-M8e |00001 00002| +490011 |RS Lib *|152419.8-225440 |M | 7.0 | 13.0 | |V |42154. | | 217.65 |48 |M7e-M8.5e |00001 00002| +490012 |RT Lib *|150626.2-184356 |M | 8.2 | 14.7 | |V |39193. | | 251.16 |45 |M2.5pe-M8.2e |00001 00002| +490013 |RU Lib *|153316.5-151935 |M | 7.2 | 14.4 | |V |41840. | | 316.56 |46 |M5e-M6e |00001 00002| +490014 |RV Lib *|143548.4-180212 |EA/D/RS | 9.02 | 9.50 | 9.44 |V |30887.236 | | 10.722164 |14 *|G5 |00279 00024| +490015 |RW Lib |152306.2-240411 |M | 8.84 | 14.26 | |V |41530. | | 203.31 |48 |K5e:-M5.6e: |00001 06286| +490016 |RX Lib *|154200.1-204646 |CWA | 11.65 | 12.78 | |V |44131.88 | | 24.933 |37 |F9eV |00001 00521| +490017 |RY Lib |142730.0-213127 |RRAB | 12. | 14. | |p |26126.578 | | 0.48300422 | | |03717 06286| +490018 |RZ Lib |145944.9-151615 |RRAB | 12.5 | 14.1 | |V |27602.340 | | 0.5963275 |08 | |01756 06286| +490019 |SS Lib *|154905.1-153209 |EA/KE: | 10.4 | 11.3 | 10.8 |V |41155.660 | | 1.4379983 |20 |A5 |00001 01862| +490022 |SV Lib |153321.6-271103 |M | 10.2 |< 11.5 | |p |33852. | | 402.66 | |M8e |00001 06286| +490023 |SW Lib |155533.4-125106 |M | 12.3 | 17.6 | |p |35690. | | 291.8 | |M7 |00215 06286| +490024 |SX Lib |144246.2-201236 |M | 10.2 |< 15.8 | |p |41900. | | 332.9 | |M6e: |07973 06286| +490026 |SZ Lib |151717.5-054328 |EB: | 12.5 | 13.5 | |V |42504.7 | | 6.65 | | |07471 06286| +490027 |TT Lib |150854.5-152951 |M | 10.9 | 16. | |p |33354. | | 278.3 | |M3e |00001 06286| +490028 |TU Lib |153521.3-235649 |M | 11.4 | 14.5 | |p |11188. | | 287. | |M3e |00031 06286| +490029 |TV Lib *|151821.9-082743 |RRAB | 11.23 | 12.51 | |V |20017.3015 | | 0.269624031 |13 |A5-F5 |03096 01867| +490030 |TW Lib |144436.9-193228 |M | 11.6 | 17. | |p |26120. | | 135.5 | |Me |00001 06286| +490031 |TX Lib |151910.6-065829 |RR | 12.4 | 13.2 | |p | | | | |F0hb: |09270 06286| +490032 |TY Lib *|152145.7-081440 |EA/SD | 11.2 | 13.6 | |p |45105.422 | | 3.2016741 |09 | |00001 06286| +490033 |TZ Lib |153651.3-100449 |M | 11.3 | 16.0 | |p |28332. | | 183.6 | | |02931 06286| +490034 |UU Lib |160205.9-181809 |M | 12. |< 15. | |p |31242. | | 287. | |Me |00001 00351| +490036 |UW Lib *|143054.2-164838 |SRD | 9.05 | 10.64 | |V |41920. | | 84.726 | |G2e-K0(M3) |00005 08953| +490037 |UX Lib |145515.1-061733 |RRAB | 12.5 | 13.5 | |p |26174.421 | | 0.48317104 | | |03717 06286| +490039 |UZ Lib |153223.2-083201 |FKCOM | 9.16 | 9.62 | |V |43222.15 | | 4.75 | |K0IIIe |09367 BD | +490040 |VV Lib *|153946.9-210049 |RRAB | 12.3 | 13.6 | |p |26093.533 | | 0.4781301 |30 : | |03506 03551| +490043 |VY Lib *|155117.0-154503 |RRAB | 11.12 | 12.14 | |V |41144.370 | | 0.5339412 |14 |A7:-F7 |00001 00190| +490044 |VZ Lib *|153151.8-154110 |EW/KW | 10.13 | 10.63 | 10.55 |V |44788.59010 | | 0.35826334 | |F5 |09333 00279| +490045 |WW Lib |150508.3-223623 |SRA | 11.5 | 13.0 | |p |28020. | | 81.5 | |C |01869 06286| +490046 |WX Lib |150604.2-274721 |EA | 12.1 | 12.7 | |p |27956.550 | | 0.4600045 | | |00001 06286| +490049 |XX Lib |150710.0-255952 |RRAB | 11.6 | 12.6 | |p |27955.354 | | 0.69843 | | |01869 06286| +490052 |YY Lib |150810.7-211001 |M | 9. |< 12. | |p | | | 229.53 | |Me |01872 00464| +490054 |ZZ Lib |151015.3-293459 |M | 12.2 |< 16.4 | |p |28010. | | 246.3 | | |01869 06286| +490079 |AZ Lib |152038.4-221729 |RRAB | 11.8 | 12.8 | |p |27984.418 | | 0.6513749 | | |04149 06286| +490090 |BM Lib |152638.4-113230 |RR | 12.5 | 13.9 | |p | | | | | |01870 06286| +490093 |BP Lib |152752.9-255841 |M | 11.1 | 16.2 | |p | | | 209.2 | |Me |01869 06286| +490097 |BT Lib *|153115.9-232136 |RV | 11.5 | 13.1 | 12.3 |p | | | 75.34 | | |01869 03405| +490108 |CG Lib *|153516.8-242013 |RRC | 11.20 | 11.80 | |V |41153.324 | | 0.306850 |32 |A4-G0 |00001 06286| +490149 |EE Lib |154338.1-092308 |M | 10.2 |< 13.5 | |p |33100. | | 208.9 | |M6e |00001 00190| +490150 |EF Lib |152137.8-284052 |LB | 10.9 | 11.5 | |p | | | | |M6 |01869 CoD | +490151 |EG Lib |145521.5-220020 |M | 11. |< 12.5 | |p | | | 365. : | |M5 |00190 00190| +490152 |EH Lib *|145855.9-005653 |DSCT | 9.35 | 10.08 | |V |33438.6082 | | 0.0884132445 |32 |A5-F3 |09335 01874| +490153 |EI Lib |153421.8-230003 |EA/SD: | 9.5 | 10.5 | |p |30869.310 | | 1.98691 |13 |A2 |01875 03405| +490157 |EN Lib |154441.0-283955 |M | 11.5 |< 13.5 | |p | | | | |Me |00085 02382| +490159 |EP Lib |143959.9-223427 |M | 10.8 |< 14.0 | |p |28746. | | 185.78 |46 |Me |00001 06286| +490162 |ES Lib *|151648.6-130221 |EB/KE | 7.10 | 7.57 | 7.33 |V |40329.4669 | | 0.8830356 | |A2-3V |07559 08953| +490186 |FW Lib |151025.3-211031 |EB:/KE | 9.8 | 10.2 | |p |27156.575 | | 1.495095 | | |05236 05236| +490187 |FX Lib *|155811.4-141646 |GCAS | 4.74 | 4.96 | |V | | | | |B5IIIpe |08419 BD | +490188 |FY Lib |145746.5-122615 |SRB | 7.06 | 7.78 | |V | | | 120. : | |M5III |08225 BD | +490189 |FZ Lib |151921.8-090848 |LB | 6.73 | 7.24 | |V | | | | |M4III |08225 BD | +490190 |GG Lib |153215.2-235249 |SR: | 6.83 | 6.93 | |V | | | | |M5:III |06866 CoD | +490191 |GH Lib |143607.9-242151 |EA | 12.5 | 13.4 | |p | | | | | |07594 07594| +490192 |GI Lib |150441.9-172508 |EA | 12.5 | 13.6 | |p | | | | | |07594 07594| +490194 |GL Lib |152206.4-240319 |SR: | 11.9 | 12.5 | |p | | | | |M7 |01869 06286| +490200 |GR Lib |155809.8-152647 |SR: | 12.5 | 13.3 | |p | | | | |M7 |01870 06286| +490201 |GS Lib |144327.1-201254 |M | 11.4 |< 13.4 | |p |42186. | | 218.9 | | |07973 07973| +490203 |GU Lib |154459.5-280428 | | 11.8 | 13.8 | |p | | | | | |04579 USNO | +490205 |GW Lib |151955.4-250025 |NA | 9.0 | 18.5 | |p | | | | | |67402 USNO | +490206 |GX Lib |152326.1-063638 |RS | 7.31 |( 0.08 )| |V | | | | | |67404 BD | +490207 |GY Lib |152445.8-240416 |EB: | 12.3 | 13.0 | |p | | | | | |67406 67063| +490208 |GZ Lib |152934.7-172627 |ACVO | 6.66 | 6.71 | |V | | | | | |67408 BD | +490210 |HI Lib |150902.4-135959 |ACVO | 7.48 |( 0.007 )| |V | | | | | |68151 BD | +490212 |HL Lib |143040.5-222739 |ELL: | 6.93 | 7.02 | |V | | | | | |70065 BD | +490213 |HM Lib |152748.3-251010 |SR: | 7.42 | 7.63 | |V | | | | | |70066 CoD | +490214 |HN Lib |143416.8-123110 |BY | 10.30 | 10.33 | |V | | | | | |73018 BD | +490215 |HO Lib |151926.8-074320 |BY | 10.56 | 10.58 | |V | | | | | |73018 BD | +490217 |HQ Lib |153854.9-174435 |ELL: | 10.6 | 11. | |V | | | | | |73184 BD | +490218 |HR Lib |155633.4-144946 |DSCTC | 6.13 |( 0.02 b )| |V | | | | | |73185 BD | +490219 |HS Lib |143024.5-212952 |LB | 8.32 | 8.69 | |Hp| | | | | |HIP HIP | +490220 |HT Lib |144606.3-134555 |LB: | 9.32 | 9.44 | |Hp| | | | | |HIP HIP | +490221 |HU Lib |145015.7-075153 |SRD | 8.71 | 8.96 | |Hp| | | | | |HIP HIP | +490222 |HV Lib |150031.7-115228 |LB | 7.89 | 8.10 | |Hp| | | | | |HIP HIP | +490223 |HW Lib |150053.1-042720 |RR: | 9.09 | 9.22 | |Hp| | | | | |HIP HIP | +490224 |HX Lib |150242.7-250519 |LB: | 8.45 | 8.56 | |Hp| | | | | |HIP HIP | +490225 |HY Lib |150402.0-280341 |DSCT | 7.78 | 7.88 | |Hp| | | | | |HIP HIP | +490226 |HZ Lib |150709.7-085543 |LB: | 8.02 | 8.12 | |Hp| | | | | |HIP HIP | +490227 |II Lib |150725.4-144044 |SRB | 8.05 | 8.19 | |Hp| | | | | |HIP HIP | +490228 |IK Lib |150853.0-230358 |LB: | 7.91 | 8.02 | |Hp| | | | | |HIP HIP | +490229 |IL Lib |150856.8-114726 |E | 7.64 | 7.76 | |Hp| | | | | |HIP HIP | +490230 |IM Lib |151020.8-282759 |E: | 9.66 | 10.01 | |Hp| | | | | |HIP HIP | +490231 |IN Lib |151732.1-103002 |RR: | 7.33 | 7.42 | |Hp| | | | | |HIP HIP | +490232 |IO Lib |151739.6-171150 |RS: | 9.34 | 9.46 | |Hp| | | | | |HIP HIP | +490233 |IP Lib |152613.1-281838 |BY: | 9.97 | 10.15 | |Hp| | | | | |HIP HIP | +490234 |IQ Lib |152806.2-133106 |CEP: | 9.33 | 9.42 | |Hp| | | | | |HIP HIP | +490235 |IR Lib |152926.9-285052 |EW: | 8.72 | 8.83 | |Hp| | | | | |HIP HIP | +490236 |IS Lib |153108.8-051227 |LB: | 9.11 | 9.28 | |Hp| | | | | |HIP HIP | +490237 |IT Lib |153318.9-250137 |EA: | 9.01 | 9.51 | |Hp| | | | | |HIP HIP | +490238 |IU Lib |153426.5-091100 |LPB | 5.11 | 5.16 | |Hp| | | | | |HIP HIP | +490239 |IV Lib |153713.4-182006 |E: | 8.46 | 9.00 | |Hp| | | | | |HIP HIP | +490240 |IW Lib |153938.1-273128 |RR: | 9.45 | 9.56 | |Hp| | | | | |HIP HIP | +490241 |IX Lib |154110.1-115208 |LB: | 8.54 | 8.65 | |Hp| | | | | |HIP HIP | +490242 |IY Lib |154215.1-075451 |LB: | 7.90 | 8.01 | |Hp| | | | | |HIP HIP | +490243 |IZ Lib |155356.2-185703 |SRB | 7.52 | 7.63 | |Hp| | | | | |HIP HIP | +490245 |KL Lib |144834.9-010703 |DSCTC | 8.79 |( 0.02 v )| |V | | | | | |76263 DM | +490250 |KQ Lib |145117.1-110943 |EW | 11.6 | 11.9 | |* | | | | | |77115 GSC | +490252 |KS Lib |143259.9-105603 |M | 11.8 |< 13.9 | |V |52851 | | 380. : | |Me |78090 USNO | +490254 |KU Lib |144031.1-161234 |BY | 7.36 | 7.39 | |Hp| | | 9.35 | |G6V |78005 DM | +490257 |KX Lib |145728.0-212456 |BY | 5.72 |( 0.04 )| |V | | | | |K4V |78018 DM | +490258 |KY Lib |155156.6-092809 |RS | 8.93 |( 0.04 )| |V | | | 13.62 | |K2V |78018 DM | +490259 |KZ Lib *|155559.8-171139 |EA | 11.14 | 13.1 | 11.22 |V |52845.597 | | 1.238751 | | |78011 GSC | +490261 |LM Lib |150752.9-272908 |EA: | 11.07 | 11.70 | 11.33 |V |51996.772 | | 0.782983 |21 | |79018 DM | +490262 |LN Lib |150806.3-291209 |EA | 8.54 | 8.69 | 8.61 |V |53419.846 | | 1.66703 |10 |F0V |79009 DM | +490264 |LP Lib |151338.5-202632 |EA | 11.58 | 12.1 | 11.63 |V |52095.567 | | 2.44206 |08 |F6-F7 |79009 79010| +490265 |LQ Lib |152601.1-153246 |RRAB | 11.9 | 13.0 | |V |53853.804 | | 0.579309 |20 | |79100 79010| +490267 |LS Lib |154414.3-225532 |SR | 12.0 | 14.5 | |V |53481. | | 231. | |M6: |79064 GSC | +490268 |LT Lib |154434.6-115302 |EA | 12.46 | 13.35 | 12.55 |V |53140.750 | | 18.002 |09 | |79003 79010| +490272 |LX Lib |143549.0-233630 |M | 11.5 |< 15.0 | |V |54888. | | 269.7 | | |80002 GSC | NL80_2 +490273 |LY Lib |143729.1-201942 |M | 11.3 |< 14.5 | |V |54867. | | 283. | | |80001 GSC | NL80_2 +490274 |LZ Lib *|144001.1-195933 |EW | 10.0 | 10.4 | |V | | | 0.354445 | |G0 |80138 DM | NL80_2 +490278 |MP Lib |145107.9-245353 |LB | 9.0 | 10.3 | |V | | | | |M8 |80001 GSC | NL80_2 +490280 |MR Lib *|145315.4-143557 |RRAB | 12.4 | 13.4 | |V |53133.7052 | | 0.54007 | | |80153 GSC | NL80_2 +490282 |MT Lib |145416.5-153720 |RRAB | 12.4 | 13.7 | |V |53596.5330 | | 0.532637 |12 | |80001 GSC | NL80_2 +490288 |MZ Lib |145835.3-194334 |SRB | 8.1 | 8.8 | |V | | | 79. | |M2III |80002 DM | NL80_2 +490291 |NP Lib |150000.2-141705 |DSCT | 12.47 | 13.30 | |V | | | 0.1675616 |23 | |80001 GSC | NL80_2 +490293 |NR Lib |150207.3-120152 |RS | 10.9 | 11.5 | |V | | | 2.6831 | | |80034 GSC | NL80_2 +490296 |NU Lib |150237.7-275032 |M | 9.9 |< 14.8 | |V |54544. | | 281. | | |80399 80399| NL80_2 +490298 |NW Lib |150400.5-025105 |LB | 10.23 | 10.54 | |V | | | | |C4,4 |80001 HIP | NL80_2 +490301 |NZ Lib |150733.2-263848 |SRA | 11.5 | 14.0 | |V |54603. | | 147.2 |40 | |80002 GSC | NL80_2 +490304 |OQ Lib |150836.6-282539 |SRB | 10.9 | 12.1 | |V | | | 61.5 | | |80002 GSC | NL80_2 +490305 |OR Lib *|150908.8-243330 |SR | 10.4 | 11.9 | |V | | | 395. | | |80001 DM | NL80_2 +490313 |OZ Lib *|151340.7-224635 |SR | 10.0 | 11.3 | |V |54294. | | 445. | | |80001 DM | NL80_2 +490314 |PP Lib |151453.1-210958 |SRB | 11.5 | 12.1 | |V | | | 53.0 | | |80001 GSC | NL80_2 +490316 |PR Lib |151610.4-043115 |LB | 9.9 | 10.4 | |V | | | | |K5 |80001 DM | NL80_2 +490317 |PS Lib |151721.2-190059 |BY | 9.3 | 9.6 | |V | | | 11.38 | |G4V |80034 DM | NL80_2 +490319 |PU Lib |152015.8-253744 |LB | 11.6 | 12.6 | |V | | | | | |80001 DM | NL80_2 +490321 |PW Lib *|152153.1-120646 |RRAB | 12.3 | 13.6 | |V |53077.87 | | 0.441196 |15 | |80002 GSC | NL80_2 +490322 |PX Lib |152216.3-265226 |BY: | 11.7 | 12.6 | |V | | | 6.834 | |K6 |80368 GSC | NL80_2 +490323 |PY Lib |152540.4-140656 |SRB | 10.2 | 12.2 | |V | | | 95. | |M |80001 GSC | NL80_2 +490325 |QQ Lib |152826.6-044736 |RS | 11.9 | 12.1 | |* | | | 0.57687 | | |80067 80067| NL80_2 +490327 |QS Lib |152950.4-173405 |LB | 11.7 | 13.0 | |V | | | | | |80001 GSC | NL80_2 +490328 |QT Lib |153244.1-141455 |SRB | 12.0 | 13.0 | |V | | | 51.2 | |M6: |80002 GSC | NL80_2 +490330 |QV Lib |153341.4-291441 |SRB | 10.6 | 11.5 | |V | | | 96.6 | | |80001 DM | NL80_2 +490331 |QW Lib |153352.4-295415 |SRB | 10.6 | 11.3 | |V | | | 70.5 | | |80001 DM | NL80_2 +490332 |QX Lib |153503.9-280905 |RRAB | 11.3 | 12.0 | |V |54356.4962 | | 0.583569 |28 | |80395 80395| NL80_2 +490333 |QY Lib |153507.6-084950 |RS | 11.32 | 11.55 | |V | | | 19.725 | | |80034 GSC | NL80_2 +490334 |QZ Lib *|153615.9-083907 |UGSU | 11.2 | 18. | |V | | | | |pec(UG) |80233 80027| NL80_2 +490335 |V0335 Lib |153645.0-240750 |SRB | 11.0 | 12.0 | |V | | | 87. | |M6 |80001 GSC | NL80_2 +490338 |V0338 Lib |153912.1-194846 |RVA | 10.5 | 11.0 | |V |54158.8 | | 310. | | |80001 DM | NL80_2 +490340 |V0340 Lib |154053.4-221905 |LB | 11.4 | 12.4 | |V | | | | | |80001 GSC | NL80_2 +490342 |V0342 Lib |154337.2-214931 |SRB | 11.4 | 12.7 | |V | | | 197. | |M8III |80001 GSC | NL80_2 +490344 |V0344 Lib |154447.4-190127 |SRB | 12.1 | 13.3 | |V | | | 63.7 | | |80001 GSC | NL80_2 +490347 |V0347 Lib |154730.8-172230 |LB | 11.4 | 12.6 | |V | | | | | |80001 GSC | NL80_2 +490350 |V0350 Lib |155006.1-171125 |SR: | 12.3 | 12.9 | |V | | | 185.6 : | | |80002 GSC | NL80_2 +490354 |V0354 Lib |155444.9-075205 |RS | 11.3 | 11.9 | |V | | | 5.624 | | |80034 GSC | NL80_2 +490356 |V0356 Lib |155506.7-194631 |BY | 12.1 | 12.6 | |V | | | 4.880 | |K5V |80034 GSC | NL80_2 +490359 |V0359 Lib |155814.8-131212 |SRB | 12.4 | 13.5 | |V | | | 76.2 | |M6 |80001 GSC | NL80_2 +490360 |V0360 Lib |155830.6-103949 |RRC | 12.25 | 12.75 | |V |54257.73 | | 0.344860 |38 | |80135 GSC | NL80_2 +490361 |V0361 Lib |160057.8-184806 |SRB | 11.9 | 13.1 | |V | | | 73. | | |80001 GSC | NL80_3 +499004 |del Lib *|150058.4-083108 |EA/SD | 4.91 | 5.90 | 4.98 |V |42960.6994 | | 2.3273543 |23 *|A0IV-V |00001 08953| +499011 |lam Lib |155320.1-201001 |ELL | 5.03 |( 0.02 )| |V | | | | | |73186 BD | +499018 |sig Lib |150404.2-251655 |SRB | 3.20 | 3.46 | |V | | | 20. | |M3.5IIIa |06994 CoD | +500001 |R Lup |155328.9-361752 |M | 9.4 | 14.0 | |V |40840. | | 235.62 |48 |M5e |00001 00002| +500002 |S Lup *|145326.4-463657 |M | 7.8 | 13.5 | |V |41762. | | 339.73 |52 |Se |00001 00002| +500003 |T Lup |142220.0-495058 |LB | 11.71 |( 0.4 )| |B | | | | |C(Nb) | 08588| +500004 |U Lup |160042.4-295517 |SRD | 10.8 | 13.2 | |p | | | 87. | |G2-K0e(M2e) |01876 00546| +500005 |V Lup |145944.0-532428 |LB: | 9.16 | 9.26 | |V | | | | |C5,5(Nb) | CoD | +500006 |W Lup |151538.3-504731 |M | 10.6 |< 13.4 | |p |15872. | | 236.7 | |M4 |00001 | +500007 |X Lup *|145326.4-463709 |L: | 10.4 | 12.8 | |p | | | | | | 00002| +500008 |Y Lup *|145936.8-545757 |M | 8.2 | 15.2 | |V |41520. | | 396.82 |37 |M7e |00001 00002| +500009 |Z Lup |143551.7-432203 |LB | 10.5 | 12.6 | |p | | | | |C4,3-C6,3(Na) | 06286| +500010 |RR Lup |160505.7-342330 |M | 11.0 |< 14.1 | |p |30892. | | 183.62 | |M3e-M8(II:)e |00001 | +500011 |RS Lup |142327.7-473121 |LB | 10.7 | 12.30 | |B | | | | |C(Nb) |00623 08588| +500012 |RT Lup |143044.2-484130 |M | 10.5 | 16.5 | |p |24228. | | 364. | |Me |01877 08588| +500013 |RU Lup *|155642.3-374916 |INT | 9.6 | 13.4 | |p | | | | |pec(T) | 04068| +500014 |RV Lup |142519. -525414:|CST: | 12.5 | | |p | | | | | |00016 | +500015 |RW Lup |142621.3-440911 |M | 9.9 | 13.0 | |p |28766. | | 197. |36 |MB |00016 06286| +500016 |RX Lup |154631.0-480323 |M | 10. |< 14. | |p |15208. | | 237.2 | |M3e-M6II-IIIe-M8:|00031 06286| +500017 |RY Lup *|155928.4-402151 |INSB | 9.9 | 13.0 | |p | | | | |G0Vea |02412 03508| +500023 |SW Lup |153655.1-374604 |M | 10.3 |< 13.5 | |p |28924. | | 377. | | |00016 08953| +500024 |SX Lup *|154229.4-433915 |EA/SD | 11.5 | 12.6 | 11.8 |V |34270.290 | | 0.6858441 |22 *| |00080 08087| +500025 |SY Lup |144151.7-514012 |M | 11.8 | 15.2 | |p |28706. | | 410. | |Me |00016 06286| +500027 |TT Lup |144201.3-470843 |M | 12.2 | 16.2 | |p |54583. | | 300. | |Me |00016 06286| +500028 |TU Lup |144340.7-495025 |E/SD: | 12.4 | 16.2 | |p | | | | | |00211 06286| +500034 |UU Lup |145012.4-472651 |M | 11.7 |< 16.5 | |p |28695. | | 481. : | | |00016 06286| +500041 |VW Lup |145544.7-505737 |RR | 12.5 | 13.1 | |p | | | | | |00211 06286| +500042 |VX Lup |145553.9-481732 |M | 12.5 | 16.4 | |p | | | | |Me |00211 06286| +500049 |XX Lup |150039.4-482139 | | 12.5 | 14.4 | |p | | | | | |00211 06286| +500051 |XZ Lup |150248.3-475143 |SR: | 11.6 | 13.5 | |p | | | | | |00211 06286| +500053 |YZ Lup |150528.6-442221 |M | 12.0 |< 16.5 | |p |28680. | | 220. : | | |00016 06286| +500055 |AA Lup |150858.2-485332 |M | 11.8 |< 16.5 | |p |28370. | | 213. | |M5e |00016 06286| +500056 |AB Lup |151006.1-504835 |E/SD: | 12.5 | 14.5 | |p | | | | | |00211 03408| +500062 |AH Lup |151318.2-474823 |M | 11.2 | 16.0 | |p |28651. | | 217. | |Me |00016 06286| +500066 |AM Lup |151854.7-503045 | | 12.0 | 14.5 | |p | | | | |B8ea |00211 06286| +500068 |AO Lup |152047.4-440621 |E: | 12.5 | 14.3 | |p | | | | | |00211 06286| +500069 |AP Lup |152145.2-484537 |RR: | 11.9 | 13.1 | |p | | | | | |00211 06286| +500074 |AU Lup |152405.4-442411 |M | 11.4 |< 16.5 | |p |28623. | | 231. | |M5:e |00016 06286| +500076 |AW Lup |152748.4-493052 |RR: | 12.0 | 13.2 | |p | | | | | |00211 06286| +500092 |BO Lup |153405.3-413253 |M | 12.5 |< 16.0 | |p |25370. | | 444. | | |00434 06286| +500118 |CR Lup |155451.7-413143 |M | 11.7 |< 16.0 | |p |28640. | | 299.1 | | |00001 06286| +500123 |CW Lup *|142023.0-443159 |RR | 11.5 | 12.2 | |p |26890.350 | | 0.37737 | | |00073 | +500134 |DL Lup |143315.6-461242 |LB | 12.0 | 13.5 | |p | | | | | |00073 06286| +500135 |DM Lup |143323.6-445950 |M | 11.3 | 16.1 | |p |26100. | | 228. | |Me |00073 06286| +500138 |DP Lup |143425.4-453059 |SR | 12.5 | 14.2 | |p |26810. | | 299. | | |00073 06286| +500142 |DT Lup |143635.8-512449 |EA/SD | 9.8 | 11.7 | |p |27897.629 | | 1.453122 |14 *|A0V |00016 03409| +500163 |ET Lup |145635.0-424003 |LB | 11.3 | 12.1 | |p | | | | | |00073 06286| +500165 |EV Lup |151608.0-441920 |EA/DS | 9.8 | 12.5 | |p |28394.32 | | 15.3120 |05 | |00016 06286| +500167 |EX Lup |160305.5-401825 |IN(YY) | 8.5 | 14.3 | |V | | | | |M0:Ve(T) | 01868| +500170 |FF Lup |151137.8-435442 |M | 11. |< 13. | |p | | | | |Me |00085 02382| +500171 |FG Lup |151508.1-364057 |M | 11. |< 14. | |p | | | | | |00085 02382| +500172 |FH Lup |151525.2-354654 |M | 10.5 | 15.2 | |p | | | | |Me |00085 02385| +500173 |FI Lup |151556.2-393534 |LB | 11. | 14. | |p | | | | |Me |00085 02385| +500174 |FK Lup *|152008.4-515336 |EA/SD | 10.6 | 12.0 | 10.7 : |V |28367.23 | | 3.351765 |16 *| |00080 03408| +500175 |FL Lup |151936.0-340701 |M: | 12. |< 13.5 | |p | | | | |Me |00085 02382| +500176 |FM Lup *|152021.7-373516 |M | 11.4 | 15.2 | |p | | | | |Me |00085 02385| +500177 |FN Lup |153701.7-394328 |M | 11.7 | 15. | |p | | | | |Me |00085 02385| +500178 |FO Lup |155106.9-313516 |M | 11. | 16.5 | |p | | | | | |00085 02385| +500179 |FP Lup |155124.2-325116 |M | 11.0 |< 13.5 | |p | | | | | |00085 02385| +500180 |FQ Lup |154333.6-371010 |L: | 9.5 | 10.5 | |p | | | | | |00503 08953| +500181 |FR Lup *|144102.6-535024 |EB/KE | 10.1 | 10.8 | |p |28744.350 | | 1.264033 | | |05739 06561| +500182 |FS Lup |145216.3-512523 |EA | 11.5 | 12.5 | |p | | | | | |06561 06561| +500183 |FT Lup *|145952.7-425859 |EB/D: | 9.7 | 10.64 | 9.98 |p |45061.8323 | | 0.470084 | |F0V |00001 CoD | +500185 |FV Lup *|152300.4-533114 |EA | 10.8 | 11.9 | 11.2 |p |38499.500 | | 4.10288 | | |08040 04181| +500186 |FW Lup |152225.4-405536 |RR | 8.82 | 9.22 | |V |42171.377 | | 0.4841712 |23 |F5IV |07984 CoD | +500188 |FY Lup |153211.4-445850 |EA | 11.5 | 12. | |p | | | | | |06561 06561| +500189 |FZ Lup |143233.2-534136 |EA/D | 9.4 | 9.8 | |p |28328.260 | | 2.267310 | |A0/1Vn |08040 CoD | +500190 |GG Lup *|151856.4-404718 |EB/DM | 5.49 | 6.0 | 5.8 |B |34532.325 | | 2.164175 | |B7V |05137 08953| +500191 |GH Lup |152438.3-525114 |CEP | 7.55 | 7.83 | |V |41125.4 | | 9.285 | |G2Iab |03931 05742| +500192 |GI Lup |150616.3-412814 |M | 10.4 | 16. | |B |40075. | | 326.2 | |S7,8e |00001 05254| +500193 |GK Lup |145314.0-480020 |M: | 11.6 |< 16. | |p | | | | | |02935 05829| +500194 |GL Lup |154350.8-472414 |M: | 11.6 |< 15.5 | |p | | | | | |02935 05829| +500195 |GM Lup |150442.9-405141 |LB: | 6.38 : | 6.7 | |V | | | | |M6III |05150 CoD | +500197 |GO Lup *|152813.3-372131 |SRB | 6.98 | 7.19 | |V | | | | |M4III |06645 CoD | +500199 |GQ Lup |154912.1-353905 |IN(YY) | 11.40 | 12.70 | |V | | | | |K7Ve(T) |09369 04068| +500201 |GS Lup |145515.4-540317 |SR: | 11.5 | 12.5 | |p | | | | | |00085 05937| +500202 |GT Lup |152155.4-530600 |EA | 11.7 | 12.3 | |p | | | | | |07594 07594| +500209 |HH Lup |153709.2-422104 |SR: | 12.0 | 14.7 | |p | | | | |Me |02935 05829| +500210 |HI Lup |155316.3-392620 |EA/SD: | 11.5 | 12.7 | |p | | | | | |07762 07762| +500216 |HP Lup |151126.8-361457 |EA | 9.27 | 9.52 | |V | | | | | |67411 CoD | +500217 |HQ Lup |152606.9-395320 |ACV | 7.37 | 7.38 | |V | | | | | |67248 CoD | +500218 |HR Lup |150812.1-403502 |ACV | 5.76 | 5.81 | |V | | | | | |68154 CoD | +500219 |HS Lup |150757.8-453446 |E:/RS: | 7.74 |( 0.04 )| |V | | | | | |70067 CoD | +500220 |HT Lup |154512.9-341731 |INT | 10.26 | 10.40 | |V | | | | | |70069 70068| +500221 |HU Lup |151025.7-520952 |DSCTC | 9.07 | 9.13 | |V | | | | | |71017 CoD | +500222 |HV Lup |152817.4-450806 |BE: | 7.30 | 8.09 | |V | | | | | |71132 CoD | +500223 |HW Lup |154517.4-341828 |INT | 9.95 | 10.45 | |H | | | | | |71134 71135| +500224 |HX Lup |142238.7-481912 |ELL: | 6.09 |( 0.06 )| |V | | | | | |72099 CoD | +500225 |HY Lup |143150.1-511032 |N | 7.97 |< 17. | |V | | | | | |72197 GSC22| +500226 |HZ Lup |150633.2-305507 |ACV | 5.96 |( 0.07 U )| |V | | | | | |72101 CoD | +500227 |II Lup |152305.1-512559 |M | 4.37 | 5.97 | |H | | | | | |72007 72102| +500230 |IM Lup |155609.2-375606 |INT | 11.73 | 12.09 | |y | | | | | |72107 72108| +500231 |IN Lup |155910.9-384455 |DSCTC | 7.15 | 7.20 | |V | | | | | |73185 CoD | +500232 |IO Lup |160046.9-390519 |DSCTC | 6.65 |( 0.03 b )| |V | | | | | |73187 CoD | +500233 |IP Lup |142543.9-532715 |ACV | 7.95 | 8.04 | |Hp| | | | | |HIP HIP | +500234 |IQ Lup |142910.2-501121 |E: | 10.40 | 10.72 | |Hp| | | | | |HIP HIP | +500235 |IR Lup |143246.5-450622 |LB: | 8.49 | 8.60 | |Hp| | | | | |HIP HIP | +500236 |IS Lup |143928.8-510929 |LPB | 9.29 | 9.33 | |Hp| | | | | |HIP HIP | +500237 |IT Lup |144019.3-454738 |ACV | 6.56 | 6.60 | |Hp| | | | | |HIP HIP | +500238 |IU Lup |150101.4-425958 |EA | 8.78 | 9.10 | |Hp| | | | | |HIP HIP | +500239 |IV Lup |150143.3-454932 |LB | 8.03 | 8.37 | |Hp| | | | | |HIP HIP | +500240 |IW Lup |150442.6-333643 |SRB | 8.83 | 9.00 | |Hp| | | | | |HIP HIP | +500241 |IX Lup |150905.7-545536 |LB: | 8.30 | 8.40 | |Hp| | | | | |HIP HIP | +500242 |IY Lup |150914.8-325008 |LB: | 8.23 | 8.35 | |Hp| | | | | |HIP HIP | +500243 |IZ Lup |151030.6-473643 |SRB | 8.30 | 8.45 | |Hp| | | | | |HIP HIP | +500244 |KK Lup |151150.4-464506 |LB | 7.59 | 7.87 | |Hp| | | | | |HIP HIP | +500245 |KL Lup |151608.6-373005 |LB: | 8.23 | 8.34 | |Hp| | | | | |HIP HIP | +500246 |KM Lup |151717.5-415537 |LB: | 7.57 | 7.69 | |Hp| | | | | |HIP HIP | +500247 |KN Lup |151956.5-300625 |BY: | 9.21 | 9.33 | |Hp| | | | | |HIP HIP | +500248 |KO Lup |152208.8-321123 |LB: | 6.89 | 6.99 | |Hp| | | | | |HIP HIP | +500249 |KP Lup |152704.2-482720 |LB: | 7.93 | 8.18 | |Hp| | | | | |HIP HIP | +500250 |KQ Lup |152919.3-383806 |E: | 6.50 | 6.54 | |Hp| | | | | |HIP HIP | +500251 |KR Lup |153026.2-321813 |BY: | 8.87 | 8.98 | |Hp| | | | | |HIP HIP | +500252 |KS Lup |153148.5-373847 |LB | 8.89 | 8.98 | |Hp| | | | | |HIP HIP | +500253 |KT Lup |153553.3-445730 |BE | 4.48 | 4.50 | |Hp| | | | | |HIP HIP | +500254 |KU Lup |154024.7-441719 |ACV | 6.93 | 6.99 | |Hp| | | | | |HIP HIP | +500255 |KV Lup |154310.9-375506 |EB | 8.75 | 8.97 | |Hp| | | | | |HIP HIP | +500256 |KW Lup |154547.6-302056 |BY: | 9.40 | 9.58 | |Hp| | | | | |HIP HIP | +500257 |KX Lup |154856.3-383645 |LB: | 8.34 | 8.44 | |Hp| | | | | |HIP HIP | +500258 |KY Lup |155114.5-313027 |ACV | 8.88 | 8.99 | |Hp| | | | | |HIP HIP | +500259 |KZ Lup |155141.2-380929 |SRB | 8.30 | 8.84 | |Hp| | | | | |HIP HIP | +500260 |LL Lup |160158.9-373204 |ACV: | 7.41 | 7.47 | |Hp| | | | | |HIP HIP | +500261 |LM Lup |160444.5-392605 |ACV | 6.90 | 6.94 | |Hp| | | | | |HIP HIP | +500262 |LN Lup |160501.1-391300 |SRB | 7.37 | 7.72 | |Hp| | | | | |HIP HIP | +500263 |LO Lup |150737.8-460316 |IT | 11.3 |( 0.16 )| |V | | | | | |75163 75164| +500264 |LP Lup |150754.5-451521 |IT | 10.3 |( 0.12 )| |V | | | | | |75163 75164| +500265 |LQ Lup |150837.8-442317 |IT | 10.8 |( 0.09 )| |V | | | | | |75163 75164| +500267 |LS Lup |151552.7-441817 |IT | 11.8 |( 0.25 )| |V | | | | | |75163 75164| +500268 |LT Lup |151545.4-333200 |IT | 10.8 |( 0.10 )| |V | | | | | |75163 75164| +500271 |LW Lup |151826.9-373802 |IT | 10.7 |( 0.18 )| |V | | | | | |75163 75164| +500272 |LX Lup |151852.8-405053 |IT | 10.3 |( 0.06 )| |V | | | | | |75163 75164| +500273 |LY Lup |151916.0-405608 |IT | 11.2 |( 0.13 )| |V | | | | | |75163 75164| +500274 |LZ Lup |152211.6-395951 |IT | 11.7 |( 0.33 )| |V | | | | | |75163 75164| +500275 |MM Lup |152325.6-405547 |IT | 11.7 |( 0.08 )| |V | | | | | |75163 75164| +500277 |MO Lup |152403.0-320951 |IT | 12.3 |( 0.20 )| |V | | | | | |75163 75164| +500278 |MP Lup |152432.4-365203 |IT | 11.3 |( 0.11 )| |V | | | | | |75163 75164| +500281 |MS Lup |152559.6-450116 |IT | 10.8 |( 0.15 )| |V | | | | | |75163 75164| +500282 |MT Lup |153802.6-380723 |IT | 12.2 |( 0.16 )| |V | | | | | |75163 75164| +500283 |MU Lup |154041.2-375619 |IT | 12.2 |( 0.10 )| |V | | | | | |75163 75164| +500287 |MY Lup |160044.5-415531 |IT | 11.30 | 12.24 | |V | | | | | |75086 CoD | +500288 |MZ Lup |160109.0-332014 |IT | 10.9 |( 0.05 )| |V | | | | | |75163 75164| +500289 |NN Lup |160159.2-361256 |IT | 12.0 |( 0.11 )| |V | | | | | |75163 75164| +500293 |NR Lup |155633.6-331824 |SR: | 12.0 | 12.9 | |V | | | | | |76012 DM | +500295 |NT Lup |143200.8-442629 |DSCTC | 11.11 | 11.12 | |V | | | | | |77113 DM | +500296 |NU Lup |155733.9-300828 |M | 12.4 |< 14.6 | |V | | | | | |77004 GSC22| +500297 |NV Lup |160253.6-351725 |M | 12.3 |< 14.2 | |V | | | | | |77004 USNO | +500299 |NX Lup |153716.9-320326 |GDOR | 7.95 | 8.03 | |Hp| | | | |F0V |78024 DM | +500301 |NZ Lup |155327.3-421601 |BY | 7.87 |( 0.04 )| |V | | | 2.20 : | |G2 |78046 DM | +500302 |OO Lup *|144546.2-464812 |EA | 8.66 | 8.75 | 8.75 |V |48347.805 | | 7.06114 |04 : |F3/F5V |79006 DM | +500303 |OP Lup |144734.8-491913 |SRB | 9.1 | 10.0 | |V | | | 123. | |M5/6 |79064 DM | +500305 |OR Lup *|150450.4-532136 |EA | 9.28 | 9.55 | 9.53 |V |48681.670 | | 7.55596 |04 |G0IV/V |79003 DM | +500306 |OS Lup |150452.2-375739 |EW | 10.33 | 11.05 : | 10.95 : |V |52132.527 | | 0.374131 | | |79011 DM | +500307 |OT Lup *|150608.2-425527 |EA | 9.82 | 10.4 : | 10.4 : |V |51930.798 | | 6.20679 |04 |F5/F6V |79018 DM | +500308 |OU Lup *|150648.3-350458 |EA | 9.92 | 10.55 | 10.40 |V |52414.589 | | 4.61052 |04 : |B9IV |79018 DM | +500309 |OV Lup |150847.6-415949 |SRA | 10.2 | 14.2 | |V |53865. | | 97.5 | | |79100 GSC | +500310 |OW Lup |150933.6-334831 |EW | 10.03 | 10.39 | 10.37 |V |52840.696 | | 0.360317 | | |79011 DM | +500311 |OX Lup |151054.5-423546 |EA | 12.15 | 14.2 | 12.32 |V |52441.566 | | 5.4193 |10 | |79006 79080| +500312 |OY Lup |151140.0-421126 |EA | 8.94 | 9.05 | 9.03 |V |52878.610 | | 6.14395 |04 : |A1mA3-A6 |79009 DM | +500313 |OZ Lup |152614.3-412835 |SRB | 9.3 | 11.0 | |V | | | 153. | | |79100 DM | +500314 |PP Lup *|155524.2-415530 |EA | 8.67 | 9.06 | 8.82 |V |53170.910 | | 29.6924 |04 |A7+F |79006 DM | +500315 |PQ Lup *|155553.3-404144 |RRAB | 11.6 | 12.4 | |V |52744.833 | | 0.58198 |17 | |79033 79081| +500317 |PS Lup *|142008.4-523039 |RRAB | 11.7 | 13.0 | |V |54333.51 | | 0.471850 |15 | |80001 GSC | NL80_2 +500320 |PV Lup |142735.0-473709 |M | 11.0 |< 13.8 | |V |54671. | | 282. | | |80001 GSC | NL80_2 +500322 |PX Lup |144017.7-483237 |M | 11.6 |< 15.4 | |V |54534. | | 263. | | |80399 80399| NL80_2 +500323 |PY Lup |144036.9-465335 |M | 11.8 |< 15.0 | |V |53982. | | 395. | | |80001 2MASS| NL80_2 +500324 |PZ Lup *|144210.1-432006 |EW | 10.42 | 10.70 | 10.67 |V |52038.659 | | 0.489307 | | |80365 80365| NL80_2 +500325 |QQ Lup *|144226.4-455807 |EW | 12.40 | 13.35 | 13.2 |V |52502.542 | | 0.251562 | | |80365 80365| NL80_2 +500328 |QT Lup *|144542.4-443644 |EW | 12.32 | 12.82 | 12.80 |V |52738.722 | | 0.385957 | | |80365 80365| NL80_2 +500329 |QU Lup *|144910.0-442417 |EW | 10.37 | 10.56 | 10.53 |V |51868.191 | | 0.446493 | | |80036 GSC | NL80_2 +500330 |QV Lup *|144956.6-432812 |EW | 11.35 | 11.78 | 11.68 |V |52813.674 | | 0.365618 | | |80365 80365| NL80_2 +500331 |QW Lup |145107.5-544619 |M | 10.0 |< 14.0 | |V |54536. | | 383. | | |80399 80399| NL80_2 +500332 |QX Lup |145145.3-500455 |M | 11.6 |< 14.6 | |V |54653. | | 273. | | |80399 80399| NL80_2 +500333 |QY Lup |145534.9-484541 |M | 11.0 |< 14.4 | |V |54938. | | 184.8 | | |80002 GSC | NL80_2 +500334 |QZ Lup *|145621.8-445408 |EB | 8.30 | 8.46 : | 8.43 : |V |54232.7007 | | 1.136545 | |B9V |80395 80395| NL80_2 +500335 |V0335 Lup |145638.2-450719 |LB | 8.62 | 8.82 | |V | | | | |M1III: |80001 GSC | NL80_2 +500336 |V0336 Lup |145752.8-472840 |M | 11.6 |< 14.5 | |V |54866. | | 403. | | |80001 GSC | NL80_2 +500337 |V0337 Lup |150109.8-424451 |M | 12.4 |< 16.4 | |V |54704. | | 320. | | |80399 80399| NL80_2 +500338 |V0338 Lup |150307.7-412024 |M | 12.5 |< 15.5 | |V |54847. | | 263. | | |80001 GSC | NL80_2 +500339 |V0339 Lup *|150327.4-475604 |RRAB | 11.5 | 12.3 | |V |52861.63 | | 0.60058 |15 | |80153 DM | NL80_2 +500340 |V0340 Lup |150358.3-462018 |SRA | 11.8 | 14.0 | |V |55064. | | 168. | | |80001 GSC | NL80_2 +500341 |V0341 Lup |150404.4-410807 |M | 9.5 | 13.0 | |V |54992. | | 142. | |Me |80001 GSC | NL80_2 +500342 |V0342 Lup |150417.8-414427 |M | 11.3 |< 14.6 | |V |54590. | | 348. | |Me |80406 80406| NL80_2 +500343 |V0343 Lup |150427.6-305246 |M | 10.8 |< 15.0 | |V |54628. | | 234. | | |80001 GSC | NL80_2 +500344 |V0344 Lup |150435.7-370831 |M | 11.0 |< 14.5 | |V |54946. | | 209. | | |80001 GSC | NL80_2 +500345 |V0345 Lup |150501.5-450322 |SRB | 10.6 | 11.2 | |V | | | 52.5 | | |80001 GSC | NL80_2 +500346 |V0346 Lup |150522.3-361533 |LB | 12.0 | 14.1 | |V | | | | | |80001 2MASS| NL80_2 +500347 |V0347 Lup |150606.7-412043 |M | 11.3 |< 14.7 | |V |54929. | | 281. | | |80001 GSC | NL80_2 +500348 |V0348 Lup |150622.9-525733 |M | 11.1 |< 14.1 | |V |54884. | | 352. | | |80001 GSC | NL80_2 +500350 |V0350 Lup |150850.4-521427 |M | 12.0 |< 14.8 | |V |54520. | | 362. | | |80406 80406| NL80_2 +500351 |V0351 Lup |150854.2-412754 |M | 10.9 |< 15.0 | |V |54921. | | 186.7 | |Me |80002 GSC | NL80_2 +500352 |V0352 Lup |150854.8-481005 |M | 11.4 |< 15.0 | |V |54884. | | 247. | |Me |80001 GSC | NL80_2 +500353 |V0353 Lup *|150922.8-425511 |EW | 12.2 | 12.8 | 12.7 |V |52134.159 | | 0.67957 | | |80365 80365| NL80_2 +500354 |V0354 Lup |150925.2-365855 |SRB | 11.5 | 14.0 | |V | | | 159. | | |80001 GSC | NL80_2 +500356 |V0356 Lup |151027.7-433924 |LB | 10.6 | 11.5 | |V | | | | | |80001 DM | NL80_2 +500357 |V0357 Lup |151101.5-405228 |M | 10.9 | 15.0 | |V |55076. | | 218. | | |80001 2MASS| NL80_2 +500358 |V0358 Lup |151141.5-481959 |M | 3.61 | 5.28 | |K | | | 632. | |C |80166 2MASS| NL80_2 +500359 |V0359 Lup |151215.1-311047 |M | 9.3 |< 14.7 | |V |54888. | | 243. | |Me |80001 GSC | NL80_2 +500361 |V0361 Lup |151456.2-424725 |M | 11.7 |< 14.5 | |V |52696. | | 344.1 | |Me |80002 2MASS| NL80_2 +500362 |V0362 Lup |151515.5-403225 |M | 11.2 |< 15.0 | |V |54858. | | 314. | | |80001 2MASS| NL80_2 +500363 |V0363 Lup *|151643.4-422813 |EW | 11.6 | 11.9 | 11.85 |V |51985.788 | | 0.347743 | | |80365 80365| NL80_2 +500365 |V0365 Lup |151844.5-363358 |M | 11.8 |< 14.9 | |V |54277. | | 324. | |Me |80406 80406| NL80_2 +500366 |V0366 Lup |151845.3-391353 |M | 12.3 |< 14.5 | |V |53847. | | 367. | |M5: |80360 2MASS| NL80_2 +500367 |V0367 Lup |152015.7-490401 |M | 12.0 |< 14.4 | |V |54304. | | 287. | | |80406 80406| NL80_2 +500368 |V0368 Lup |152312.9-322642 |RRAB | 12.2 | 12.9 | |V |52086.565 | | 0.504915 |20 | |80001 DM | NL80_2 +500369 |V0369 Lup |152413.4-425630 |SRA | 11.7 | 14.4 | |V |54915. | | 236. | | |80001 GSC | NL80_2 +500373 |V0373 Lup |152723.3-352035 |M | 12.0 |< 14.8 | |V |54590. | | 294. | | |80406 80406| NL80_2 +500376 |V0376 Lup |152855.7-530517 |BCEP: | 8.17 | 8.20 | |Hp| | | 0.564882 | |B9III |80019 HIP | NL80_2 +500378 |V0378 Lup *|153225.3-403047 |EA | 10.8 | 11.5 | 11.0 |V |54228.7215 | | 6.44770 |12 | |80001 GSC | NL80_2 +500379 |V0379 Lup *|153427.5-455004 |EA | 9.86 | 10.08 | 9.89 |V |52922.493 | | 5.8472 |04 |A0IV |80048 DM | NL80_2 +500380 |V0380 Lup |153456.1-370900 |M | 12.0 |< 14.8 | |V |54877. | | 311. | | |80001 2MASS| NL80_2 +500382 |V0382 Lup |153851.5-392120 |M | 11.0 |< 14.9 | |V |54664. | | 341. | | |80415 80415| NL80_2 +500383 |V0383 Lup |154224.7-302011 |LB | 12.2 | 13.0 | |V | | | | | |80001 GSC | NL80_2 +500386 |V0386 Lup *|154518.2-322206 |EW | 10.9 | 11.4 | 11.3 |V |54592.667 | | 0.619112 | | |80001 DM | NL80_2 +500388 |V0388 Lup |155038.7-381743 |SRA | 12.0 | 14.8 : | |V |54611. | | 168. | | |80001 GSC | NL80_2 +500389 |V0389 Lup |155100.4-351114 |M | 11.8 |< 14.5 | |V |54559. | | 300. | | |80415 80415| NL80_2 +500390 |V0390 Lup |155223.3-395956 |SRB | 12.4 | 14.4 | |V | | | 112. | | |80001 GSC | NL80_2 +500393 |V0393 Lup |155737.8-350706 |M | 12.4 |< 14.9 | |V |54586. | | 283. | | |80415 80415| NL80_2 +500394 |V0394 Lup |160104.6-404003 |M | 12.2 |< 14.9 | |V |54655. | | 187.5 | | |80415 80415| NL80_3 +500395 |V0395 Lup |160157.3-384648 |M | 11.0 | 15.2 : | |V |54716. | | 359. | | |80415 80415| NL80_3 +500396 |V0396 Lup |160302.1-374921 |EW | 10.92 | 11.35 | 11.27 |V |53163.679 | | 0.363235 | | |80001 DM | NL80_3 +500397 |V0397 Lup |160326.2-304700 |LB | 12.3 | 12.9 | |V | | | | | |80001 GSC | NL80_3 +500399 |V0399 Lup |160439.7-402432 |M | 12.1 |< 14.9 | |V |54539. | | 292. | | |80415 80415| NL80_3 +509001 |alf Lup *|144155.8-472318 |BCEP | 2.29 | 2.34 | |V |37418.395 | | 0.2598466 | |B1.5III |09370 CoD | +509003 |gam Lup *|153508.4-411000 |ELL: | 2.69 | 2.71 | |Hp| | | | | |HIP HIP | +509004 |del Lup *|152122.3-403851 |BCEP | 3.20 | 3.24 | |V |41045.172 | | 0.16547 |50 |B1.5IV |06356 CoD | +509018 |sig Lup |143237.1-502726 |ELL: | 4.42 |( 0.02 )| |V | | | | | |72099 CoD | +5090191|tau 1 Lup |142608.2-451317 |BCEP | 4.54 | 4.58 | |V |43602.1269 | | 0.17738884 | |B2IV |08417 CoD | +510001 |R Lyn *|070118.0+551950 |M | 7.2 | 14.3 | |V |45175. | | 378.75 |44 |S2.5,5e-S6,8e: |00001 00002| +510002 |S Lyn *|064434.1+575440 |M | 8.5 | 14.8 | |V |44966. | | 296.34 |45 |M6e-M8.2e |00001 00002| +510003 |T Lyn *|082242.9+333109 |M | 8.8 | 13.5 | |V |43200. | | 406.0 |47 |C5,2e-C7,1e(NOe) |00001 00002| +510004 |U Lyn *|064046.5+595202 |M | 8.8 | 15.0 | |V |45111. | | 433.6 |42 |M7e-M9.5:e |00001 00002| +510005 |V Lyn *|062940.9+613233 |SRB | 9.5 | 12.0 | |p | | | | |M5III-IV |00310 08953| +510006 |W Lyn |081646.9+400753 |M | 7.5 | 14.0 | |V |42050. | | 295.2 | |M6 |00001 06286| +510007 |X Lyn |082531.3+352414 |M | 9.5 | 16. | |V |45045. | | 320.8 | |M5e |00001 00567| +510008 |Y Lyn *|072811.6+455926 |SRC | 7.8 | 10.3 | |p | | | 110. | |M6SIb-II |00361 08953| +510009 |Z Lyn |080844.1+574945 |CST: | 8.8 | | |p | | | | |A2 |00179 00119| +510010 |RR Lyn *|062625.8+561706 |EA/DM | 5.52 | 6.03 | 5.90 |V |33153.8623 | | 9.945079 |04 *|A7Vm+F3V |08626 02465| +510011 |RS Lyn |071813.9+483109 |SR | 10.2 | 11.6 | |p |26790. | | 285. | |M7 |00127 08953| +510012 |RT Lyn |081450.6+374012 |M | 10.5 |< 13. | |p |37691. | | 394.6 | |M6e |00001 06286| +510013 |RU Lyn |073957.0+364000 |M | 11.0 |< 16.0 | |p |38377. | | 243.47 | |M3 |00001 00228| +510015 |RW Lyn *|075039.1+382714 |RRAB | 12.18 | 13.60 | |B |25981.503 | | 0.498567 |15 |F4.6-F5.4 |03411 09384| +510016 |RX Lyn |082808.0+382023 |SRA | 11.1 | 13.3 | |p |34442. | | 145.3 | |M |00001 02378| +510017 |RY Lyn |085513.6+462743 |EA/SD | 11.4 | 13.3 | |p |42887.443 | | 1.434988 |10 | |00001 00319| +510018 |RZ Lyn *|093606.8+411831 |EB/KE | 10.6 | 11.3 | 10.8 |p |25643.310 | | 1.146918 | |A2 |00362 00362| +510019 |SS Lyn |080555.5+514114 |LB | 10.3 | 11.3 | |p | | | | |M5 |09386 09386| +510020 |ST Lyn |082848.8+383927 |LB: | 11.7 | 12.7 | |p | | | | |K0IIIea |02741 02741| +510021 |SU Lyn |064255.1+552827 |SRB | 9.6 | 10.5 | |p | | | 126. | |M4 |00499 04099| +510022 |SV Lyn |080339.9+362042 |SRB | 8.2 | 9.1 | |p | | | 70. : | |M5III |05429 02378| +510023 |SW Lyn *|080741.6+414802 |EA/DW | 9.51 | 10.20 | 9.65 |V |43975.390 | | 0.6440634 |12 |F2V |00001 02378| +510024 |SX Lyn *|081357.9+571558 |EA/SD | 10.0 | 11.4 | 10.1 |p |45439.424 | | 2.0224715 |10 :*|A2 |00001 00519| +510025 |SY Lyn |074929.4+530753 |SR | 10.7 | 12.9 | |p |25938. | | 79.02 | |M |00834 00174| +510026 |SZ Lyn *|080935.8+442818 |DSCT | 9.08 | 9.72 | |V |38124.39824 | | 0.120534920 |30 |A7-F2 |09389 02378| +510027 |TT Lyn *|090307.8+443508 |RRAB | 9.42 | 10.21 | |V |36651.3560 | | 0.597434355 |17 |F0-F8 |07366 03252| +510028 |TU Lyn |063102.7+611429 |EA/GS: | 11.4 | 11.8 | |p |25912.523 | | 38.9461 |04 |F0: |02522 00174| +510029 |TV Lyn *|073331.7+474810 |RRC | 11.24 | 11.66 | |V |40950.922 | | 0.24065119 |42 |A6 |04957 07350| +510030 |TW Lyn *|074506.3+430642 |RRAB | 11.0 | 12.3 | |p |45022.458 | | 0.481860 |17 |F6-F8: |09334 02819| +510031 |TX Lyn |071808.2+481639 |LB | 11.0 | 11.7 | |p | | | | |K5 |04098 04098| +510032 |TY Lyn |081823.2+461608 |EA/SD: | 10.0 | 10.8 | |p |26024.325 | | 4.331655 |10 |A0 |04014 08953| +510033 |TZ Lyn *|083110.6+401330 |ACV | 6.65 | 6.79 | |V |37311.12 | | 6.80054 |56 |A0p(Eu-Cr-Sr) |09390 BD | +510034 |UU Lyn *|091529.9+424209 |EB/DM | 11.54 | 12.33 | 11.82 |V |44674.0481 | | 0.46846016 | |F3V |09382 00819| +510035 |UV Lyn *|090324.1+380555 |EW/KW | 9.41 | 9.81 | 9.78 |V |40271.5032 | | 0.41498088 | |F8 |09391 06991| +510036 |UW Lyn |061754.8+613055 |LB: | 4.95 |( 0.11 )| |V | | | | |M3IIIab |05840 BD | +510037 |UX Lyn |090347.1+384432 |SRB: | 6.60 | 6.78 | |V | | | | |M6III |06357 BD | +510038 |UY Lyn |071323.4+512544 |LB: | 5.47 | 5.55 | |V | | | | |M3IIIab |01371 BD | +510039 |UZ Lyn *|061937.4+590040 |E:+DSCTC: | 4.43 | 4.73 | |V | | | | |A2V |08547 BD | +510040 |VV Lyn *|073157.7+361310 |UV+BY: | 10.53 | 10.60 | |V | | | | |M3.5Ve |08313 07060| +510045 |WW Lyn |073407.8+381040 |EA/KE | 11.6 | 12.1 | |p | | | | | |67007 67007| +510059 |AE Lyn |080235.8+571625 |RS | 6.49 |( 0.06 )| |V | | | | | |67412 BD | +510067 |AN Lyn |091428.7+424638 |DSCT | 10.58 | 10.79 | |V | | | | | |67413 BD | +510069 |AP Lyn |063433.4+605628 |M | 10.9 | 14.7 | |V | | | | | |68015 GSC | +510082 |BD Lyn |073521.5+513222 |LB: | 9.86 | 10.40 | |V | | | | | |69186 BD | +510083 |BE Lyn |091817.2+460911 |DSCT | 8.60 | 9.00 | |V | | | | | |69188 BD | +510084 |BF Lyn |092225.9+401204 |BY | 7.72 |( 0.1 )| |V | | | | | |69190 BD | +510085 |BG Lyn |075627.4+404256 |EB | 10.68 | 11.57 | |V | | | | | |70070 70071| +510089 |BL Lyn |073157.3+361347 |BY | 11.76 | 11.80 | |V | | | | | |73018 73102| +510090 |BM Lyn |074720.8+472018 |RS+E | 7.70 |( 0.25 )| |V | | | | | |73005 BD | +510091 |BN Lyn |082250.1+431117 |SRD: | 4.21 | 4.27 | |V | | | | | |73039 BD | +510092 |BO Lyn |084301.2+405952 |DSCT | 12.2 |( 0.32 )| |B | | | | | |73188 GSC | +510094 |BQ Lyn |063432.8+552111 |SRD | 6.48 | 6.69 | |Hp| | | | | |HIP HIP | +510095 |BR Lyn |065338.1+610056 |SRB: | 7.39 | 7.95 | |Hp| | | | | |HIP HIP | +510096 |BS Lyn |070011.5+560709 |LB: | 8.36 | 8.46 | |Hp| | | | | |HIP HIP | +510097 |BT Lyn |070710.1+543455 |SRB | 9.18 | 9.45 | |Hp| | | | | |HIP HIP | +510098 |BU Lyn |070722.9+514755 |SRB: | 8.61 | 8.80 | |Hp| | | | | |HIP HIP | +510099 |BV Lyn |070821.0+611432 |LB: | 8.13 | 8.25 | |Hp| | | | | |HIP HIP | +510100 |BW Lyn |071955.9+594148 |SRB | 8.22 | 8.41 | |Hp| | | | | |HIP HIP | +510101 |BX Lyn |072451.4+522400 |LB: | 8.37 | 8.48 | |Hp| | | | | |HIP HIP | +510102 |BY Lyn |072843.5+475515 |SRB: | 6.60 | 6.70 | |Hp| | | | | |HIP HIP | +510103 |BZ Lyn |073103.5+500255 |SRB: | 7.56 | 7.72 | |Hp| | | | | |HIP HIP | +510104 |CC Lyn |073556.0+430152 |EW | 6.42 | 6.52 | |Hp| | | | | |HIP HIP | +510105 |CD Lyn |074306.4+484110 |E: | 9.83 | 10.37 | |Hp| | | | | |HIP HIP | +510106 |CE Lyn |074409.5+385016 |SRB | 7.20 | 7.66 | |Hp| | | | | |HIP HIP | +510107 |CF Lyn |074432.3+364144 |E | 9.61 | 9.93 | |Hp| | | | | |HIP HIP | +510108 |CG Lyn |074531.7+420603 |LB: | 8.65 | 8.77 | |Hp| | | | | |HIP HIP | +510109 |CH Lyn |074700.4+553229 |SRB | 7.93 | 8.07 | |Hp| | | | | |HIP HIP | +510110 |CI Lyn |074715.6+420313 |SRD | 8.70 | 8.86 | |Hp| | | | | |HIP HIP | +510111 |CK Lyn |075013.5+394615 |LB | 6.81 | 6.94 | |Hp| | | | | |HIP HIP | +510112 |CL Lyn |075512.5+540946 |EA | 9.78 | 10.37 | |Hp| | | | | |HIP HIP | +510113 |CM Lyn |075550.6+380312 |LB | 8.48 | 8.83 | |Hp| | | | | |HIP HIP | +510114 |CN Lyn |080137.2+384458 |EA | 9.07 | 9.58 | |Hp| | | | | |HIP HIP | +510115 |CO Lyn |080928.9+551521 |DSCTC | 6.88 | 6.94 | |Hp| | | | | |HIP HIP | +510116 |CP Lyn |081149.5+514609 |LB: | 8.11 | 8.21 | |Hp| | | | | |HIP HIP | +510117 |CQ Lyn |081259.0+553731 |DSCT | 8.04 | 8.14 | |Hp| | | | | |HIP HIP | +510118 |CR Lyn |081753.7+432435 |DSCTC | 7.70 | 7.77 | |Hp| | | | | |HIP HIP | +510119 |CS Lyn |081747.5+375204 |EB | 8.49 | 8.67 | |Hp| | | | | |HIP HIP | +510120 |CT Lyn |082111.4+351948 |SRB | 7.97 | 8.11 | |Hp| | | | | |HIP HIP | +510121 |CU Lyn |082345.9+361851 |LB | 8.76 | 8.97 | |Hp| | | | | |HIP HIP | +510122 |CV Lyn |082537.4+521656 |SRB: | 8.61 | 8.73 | |Hp| | | | | |HIP HIP | +510123 |CW Lyn *|084026.3+445418 |EB: | 9.61 | 9.85 | |Hp| | | | | |HIP HIP | +510124 |CX Lyn |084241.7+390341 |LB | 7.48 | 7.65 | |Hp| | | | | |HIP HIP | +510125 |CY Lyn |085355.7+353218 |ELL: | 6.15 | 6.18 | |Hp| | | | | |HIP HIP | +510126 |CZ Lyn |085712.1+412027 |SRB | 7.92 | 8.07 | |Hp| | | | | |HIP HIP | +510127 |DD Lyn |075540.8+352446 |DSCTC | 6.23 |( 0.03 b )| |V | | | | | |75040 BD | +510131 |DH Lyn |090847.8+420921 |SR: | 12.0 | 14.5 | |p | | | | | |75002 GSC | +510132 |DI Lyn |093522.5+395748 |EA | 6.79 | 6.87 | |V | | | | | |75167 BD | +510133 |DK Lyn |061948.3+571513 |M | 12.3 |< 15.3 | |V | | | | | |76012 GSC | +510134 |DL Lyn |062530.9+574253 |M | 12.4 | 15.3 | |V | | | | | |76012 GSC | +510135 |DM Lyn |064944.1+591117 |SR: | 11.9 | 12.7 | |V | | | | | |76012 GSC | +510136 |DN Lyn |073142.5+473323 |M: | 11.7 | 14.3 | |V | | | | | |76012 GSC | +510137 |DO Lyn |074542.3+393249 |GDOR | 7.17 |( 0.05 )| |V | | | | | |76080 DM | +510138 |DP Lyn |074750.1+585926 |SR: | 11.9 | 13.1 | |V | | | | | |76012 USNO | +510139 |DQ Lyn |082341.0+372811 |RRC | 11.46 | 11.92 | |B | | | | | |76085 GSC | +510140 |DR Lyn |082424.5+500051 |EA | 11.6 | 14.3 | |V | | | | | |76012 GSC | +510143 |DU Lyn |074639.3+373103 |SRB | 5.18 |( 0.13 )| |V | | | | | |77065 DM | +510146 |DX Lyn |073300.6+370147 |BY | 7.68 |( 0.02 )| |V | | | 8.03 | |G5V |78018 DM | +510147 |DY Lyn *|080046.0+421033 |EA | 9.67 | 10.21 | 10.16 |V |52704.4884 | | 1.31324 |13 |F5V |78104 DM | +510148 |DZ Lyn |081153.5+425436 |EB: | 9.88 | 10.25 | |V |52722.4734 | | 0.378018 | |F3V |78104 DM | +510149 |EE Lyn |081450.3+484916 |DSCTC | 9.12 | 9.14 | |V | | | 0.05 : | |F0 |78022 DM | +510150 |EF Lyn |081931.8+350244 |GDOR | 7.23 | 7.27 | |Hp| | | 0.4229 | |A5 |78091 DM | +510153 |EI Lyn |091348.2+431304 |SXARI | 5.32 |( 0.03 )| |V | | | 3.834 | |B8IIIp |78127 DM | +510154 |EK Lyn |080417.1+384638 |EA | 9.73 | 10.1 : | 9.80 |* |51497.820 | | 2.2353 |14 |A2 |79003 DM | +510161 |ER Lyn |075118.8+362957 |RS | 12.3 | 12.5 | |* | | | 3.3769 | | |80043 80043| NL80_2 +510162 |ES Lyn |075204.0+535654 |LB | 10.1 | 10.4 | |* | | | | |C(N) |80100 GSC | NL80_2 +510163 |ET Lyn |075240.0+393218 |DSCTC | 7.38 | 7.42 | |V | | | 0.184373 | |gF1 |80092 HIP | NL80_2 +510170 |FF Lyn |080802.3+533931 |RRAB | 12.34 | 12.97 | |* |51602.79 | | 0.57540 |17 | |80001 GSC | NL80_2 +510171 |FG Lyn *|081117.4+525235 |EB | 10.77 | 11.04 | 11.00 |* |51463.77 | | 1.43543 | | |80013 GSC | NL80_2 +510173 |FI Lyn *|081727.3+515147 |EW | 9.73 | 10.22 | 10.18 |* |51578.812 | | 0.373260 | |F8 |80013 GSC | NL80_2 +510174 |FK Lyn |081744.5+362606 |BY | 11.8 | 12.0 | |* | | | 8.235 | | |80043 80043| NL80_2 +510176 |FM Lyn |082713.6+412833 |RS | 10.53 | 10.75 | |* | | | 17.61 | | |80049 80049| NL80_2 +510177 |FN Lyn *|083716.6+412226 |EA | 10.23 | 10.95 | 10.36 |* |51584.7626 | | 1.810750 |22 |F0 |80001 DM | NL80_2 +510178 |FO Lyn |083726.4+424024 |EW | 11.11 | 11.58 | |* |51498.85 | | 0.634457 | | |80001 GSC | NL80_2 +510179 |FP Lyn |084146.8+390532 |EW | 11.36 | 11.69 | |V |53045.932 | | 0.359097 | | |80306 GSC | NL80_2 +510180 |FQ Lyn |084626.4+343637 |EW | 11.72 | 12.06 | |V |53047.032 | | 0.569226 | | |80001 GSC | NL80_2 +510182 |FS Lyn |085444.3+415513 |EB | 11.02 | 11.37 | |V |53055.945 | | 0.540063 | | |80306 GSC | NL80_2 +510184 |FU Lyn |090144.2+421932 |EW | 12.46 | 12.90 | |V |53055.395 | | 0.397867 | | |80306 GSC | NL80_2 +520001 |R Lyr |185520.1+435646 |SRB | 3.88 | 5.0 | |V | | | 46. : | |M5III |09225 00002| +520002 |S Lyr *|191311.8+260028 |M | 9.8 | 15.6 | |V |42924. | | 438.40 |40 |SCe |00001 00002| +520003 |T Lyr |183220.1+365956 |LB | 7.84 | 9.6 | |V | | | | |C6,5(R6) | 00103| +520004 |U Lyr *|192009.2+375236 |M | 8.3 | 13.5 | |V |42492. | | 451.72 |52 |C4,5e(N0e) |00001 00002| +520005 |V Lyr *|190904.5+293930 |M | 8.2 | 15.7 | |V |45209. | | 373.53 |33 |M7e |00001 00002| +520006 |W Lyr *|181455.9+364013 |M | 7.3 | 13.0 | |V |45084. | | 197.88 |48 |M2e-M8e |00001 00002| +520007 |X Lyr |191303.1+264640 |LB | 8.6 | 9.8 | |V | | | | |M3.5III | 00103| +520009 |Z Lyr *|185936.8+345716 |M | 9.2 | 15.3 | |V |45266. | | 291.70 |49 |M4e-M5.5:e |00001 00002| +520010 |RR Lyr *|192527.9+424704 |RRAB | 7.06 | 8.12 | |V |42923.4193 | | 0.56686776 |19 |A5.0-F7.0 |09338 06874| +520011 |RS Lyr *|191301.3+332449 |M | 9.2 | 15.8 | |V |42919. | | 301.41 |48 |M5e |00001 00002| +520012 |RT Lyr *|190114.9+373120 |M | 9.1 | 15.2 | |V |45119. | | 253.70 |45 |M5e |00001 00002| +520013 |RU Lyr *|191221.3+411814 |M | 9.5 | 15.9 | |V |45121. | | 371.84 |45 |M6e:-M8e |00001 00002| +520014 |RV Lyr *|191618.0+322515 |EA/SD | 11.5 | 14.6 | |p |45526.431 | | 3.599050 |12 |A |00001 00010| +520015 |RW Lyr *|184510.1+433808 |M | 9.8 | 16.0 | |V |44486. | | 503.75 |38 |M7e |00001 00002| +520016 |RX Lyr *|185410.0+324951 |M | 10.9 | 16.0 | |V |44585. | | 247.82 |45 |Me |00001 00002| +520017 |RY Lyr |184452.1+344033 |M | 9.0 |< 15.6 | |V |45306. | | 325.79 |40 |M5e-M6e |00001 00002| +520018 |RZ Lyr *|184337.9+324754 |RRAB | 10.6 | 12.03 | |V |41183.426 | | 0.5112423 |14 |A9-F4 |00001 00323| +520019 |SS Lyr *|191315.5+465856 |M | 8.4 | 14.0 | |V |45090. | | 346.33 | |M5IIIe |00001 00563| +520020 |ST Lyr |190945.6+433653 |M | 10.6 |< 18. | |p |44433. | | 300.5 | |M4IIIe |09340 00100| +520022 |SV Lyr |184532.0+361802 |M | 12.1 | 15. | |p |38937. | | 301.3 |44 | |00458 00524| +520024 |SX Lyr |185457.4+312726 |M | 12.1 |< 15. | |p |27982. | | 279.3 | | |00498 00524| +520025 |SY Lyr |184127.5+284852 |SRB | 9.1 | 10.5 | |V | | | 100. | |M6 |09341 09341| +520026 |SZ Lyr *|183439.2+460957 |SRA | 10.3 | 12.5 | |V |32121. | | 133.1 |43 |M6 |01000 00002| +520027 |TT Lyr *|192736.3+414206 |EA/SD | 9.34 | 11.43 | 9.44 |V |38605.2644 | | 5.243727 |14 |B2V |01002 00526| +520028 |TU Lyr |182030.3+314521 |LB | 11.1 | 12.3 | |p | | | | |M6 |00326 00002| +520029 |TV Lyr |182138.8+302753 |M | 10.0 | 13.9 | |V |38439. | | 262.31 | |M4e |00001 00567| +520030 |TW Lyr *|182356.4+393506 |M | 9.5 | 14.9 | |V |43039. | | 376.71 | |M6 |00001 09385| +520031 |TX Lyr |181625.2+404136 |M | 10.4 |< 13. | |V |38231. | | 223.35 | |M2e |00001 00529| +520032 |TY Lyr *|190947.7+280420 |M | 9.0 | 14.6 | |V |42677. | | 333.71 |35 |M8e |00001 09342| +520033 |TZ Lyr *|181549.7+410638 |EB/D | 10.87 | 11.85 | 11.05 |V |44784.4093 | | 0.5288269 | |F5V |00001 00529| +520034 |UU Lyr |190542.3+280501 |M | 11.5 |< 16.1 | |p |37945. :| | 248. | | |00328 00528| +520035 |UV Lyr |191023.8+275040 |M | 11.0 | 17.3 | |p |42341. | | 235.2 |46 | |01001 00528| +520036 |UW Lyr |191134.9+281324 |M | 12.3 | 18.5 | |p |42505. | | 233.34 |30 | |00001 00528| +520038 |UY Lyr |185340.8+464110 |LB | 11.9 | 13.4 | |p | | | | |M |00331 06286| +520039 |UZ Lyr *|192108.9+375612 |EA/SD | 9.9 | 11.0 | |V |43689.9415 | | 1.8912727 |15 |B9V |00001 00568| +520042 |VX Lyr |184223.7+303417 |M | 11.4 | 17.0 | |p |25344. | | 294. |53 | |00332 06286| +520043 |VY Lyr |184347.4+391617 |CST: | 11.0 | | |p | | | | | |09341 09341| +520044 |VZ Lyr |190918.1+293259 |M | 12. | 16. | |p |28052. | | 246.4 | |M |01000 00568| +520047 |WY Lyr |185343.8+401815 |M | 11. |< 15. | |p |25258. | | 281.7 | |M3e |01000 06286| +520048 |WZ Lyr |190214.9+471300 |M | 10.6 | 15. | |p |44568. | | 376.64 | |M9e |00001 06286| +520050 |XY Lyr |183806.5+394006 |LC | 5.80 | 6.35 | |V | | | | |M4-5Ib-II |09344 02396| +520051 |XZ Lyr |190831.1+304323 |M | 12.5 |< 17. | |p |29844. | | 281.8 | | |01000 00524| +520053 |YZ Lyr |190325.4+290851 |LB | 11.2 | 12.0 | |V | | | | |M1 |09341 09341| +520056 |AB Lyr |190700.4+334331 |M | 11. | 15. | |p |39212. | | 216.5 | |M4e |00001 00524| +520058 |AD Lyr |190733.5+345004 |M | 12. | 16. | |p |29300. | | 190.7 | | |01001 00524| +520059 |AE Lyr |190809.9+261415 |SR | 9.3 | 11.2 | |V |29234. | | 57.8 |48 | |08044 09341| +520062 |AH Lyr *|191301.1+271638 |EB/SD | 12.0 | 13.0 | 12.1 |V |27845.436 | | 1.0307101 | | |09341 09341| +520063 |AI Lyr |191435.6+274946 |M | 11.2 | 17.2 | |p |42583. | | 236.98 |40 | |00001 09342| +520065 |AL Lyr *|191929.6+273344 |CWA | 11.76 | 12.8 | |V |36862.05 | | 12.9916 |50 | |09341 09341| +520067 |AN Lyr |192150.1+320031 |M | 11.0 | 17. : | |p |37872. | | 224.2 |48 |M7e |03662 00530| +520068 |AO Lyr |181820.1+314200 |M | 11.5 | 17.2 | |p |32097. | | 293. |45 | |01005 06286| +520069 |AP Lyr |182847.8+285642 |SR | 12. | 14. | |p |26725. | | 180. | | |01000 06286| +520070 |AQ Lyr *|183451.0+263542 |RRAB | 12.3 | 13.51 | |V |35695.098 | | 0.3571424 |16 | |03423 00336| +520078 |AY Lyr *|184426.8+375952 |UGSU | 12.5 | 18.4 | |B | | |( 24. ) | |pec(UG) | 00002| +520083 |BE Lyr |185444.2+271901 |M | 12.3 |< 17. | |p |25281. | | 276.5 | |M2:e |00332 00531| +520087 |BI Lyr |185751.9+283621 |M | 12.0 |< 16.5 | |p |25303. | | 249.8 | | |00332 00531| +520088 |BK Lyr |185913.6+305847 |M | 11.7 | 16.9 | |p |25412. | | 251. |37 | |00332 00531| +520089 |BL Lyr |190234.2+255028 |M | 11.5 | 16.9 | |p |42586. | | 279.07 |17 | |00001 08490| +520093 |BP Lyr |190624.8+313632 |M | 12.5 |< 16.5 | |p |25441. | | 319.3 | | |01000 00524| +520097 |BT Lyr |191307.9+301338 |M | 12.5 | 16.9 | |p |33843. | | 167.3 | | |01005 00352| +520098 |BU Lyr |191457.9+402255 |SRB | 11.2 | 12.6 | |V | | | 259. | |M7 |09341 09341| +520099 |BV Lyr *|191742.9+325731 |EA | 12.1 | 12.8 | |V |32881.235 | | 1.8296477 |13 | |04427 09341| +520104 |CC Lyr *|183357.4+313824 |CWA | 11.65 | 12.45 | |V |44045.09 | | 24.16 : |21 |F0p |00001 09341| +520106 |CE Lyr |183652.4+280421 |M | 11.7 | 14.5 | |p |25772. | | 318. | | |01000 00133| +520113 |CM Lyr |184025.7+325410 |SRB | 11.4 | 12.8 | |V | | | 183. : | | |00001 09341| +520114 |CN Lyr |184115.9+284321 |RRAB | 11.07 | 11.76 | |V |44486.3338 | | 0.41138232 |22 |F0-F5 |03426 00133| +520122 |CV Lyr *|185035.8+280654 |SRB | 10.8 | 13.1 | |V | | | 140. | | |09341 00133| +520124 |CX Lyr *|185117.3+284748 |RRAB | 12.14 | 13.17 | |V |33069.365 | | 0.61664495 |18 |F4 |03506 09341| +520138 |DP Lyr |190019.7+354222 |SRB | 11.1 | 12.3 | |V | | | 86. |46 | |09341 00133| +520145 |DW Lyr |190654.3+294501 |SRB | 11.6 | 12.5 | |V | | | 94.4 |46 | |00310 09341| +520149 |EE Lyr |191119.7+291559 |SRB | 11.3 | 13.0 | |V | | | 73. | | |09341 00133| +520150 |EF Lyr |191048.0+385827 |SRA | 11.2 | 12.8 | |V |36794. | | 294. |37 | |09341 00133| +520151 |EG Lyr |191048.8+383426 |SRB | 10.48 | 12.86 | |V | | | 236. | |M5III |09341 00133| +520154 |EK Lyr |191308.9+351245 |SRB | 11.9 | 12.8 | |V | | | 180. | | |09341 00133| +520155 |EL Lyr |191320.8+320318 |M | 12.2 |< 16.5 | |p |35040. | | 234.1 |42 : | |00001 00133| +520159 |EP Lyr *|191819.6+275103 |RVB | 9.96 | 10.90 : | |V |27009. | | 83.34 |18 |A4Ib-G5p |08079 04427| +520160 |EQ Lyr |191902.6+410635 |M | 12. |< 15. | |p | | | | | |00132 00133| +520161 |ER Lyr |191953.6+401522 |M | 12. | 15.5 | |p |33044. | | 196.6 |43 |M5e |00001 00133| +520166 |EW Lyr *|183315.6+374513 |EA/SD | 11.2 | 13.5 | |V |26499.697 | | 1.948723 |11 |F0 |00001 00464| +520167 |EX Lyr *|183711.6+260920 |RRC | 12.0 | 12.4 | |V |36461.300 | | 0.3586324 |48 | |00001 09341| +520168 |EY Lyr |184051.0+314024 |LB | 8.3 | 9.2 | |V | | | | |M5 |09341 09341| +520169 |EZ Lyr *|184741.2+355927 |RRAB | 10.8 | 11.8 | |V |33914.3357 | | 0.52526769 |10 |A7-F4 |09341 00464| +520171 |FG Lyr *|185619.0+321128 |EA/SD | 12.4 | 13.3 | |V |27866.560 | | 2.871825 |15 | |09341 00533| +520172 |FH Lyr *|191129.9+363936 |EA/SD | 12.5 | 13.9 | |V |45554.400 | | 1.589240 |18 | |00335 09341| +520173 |FI Lyr |184204.8+285730 |SRB | 9.6 | 10.4 | |V | | | 146. | |M |00335 09341| +520174 |FK Lyr *|191025.4+273924 |SR | 11.3 | 12.1 | |V | | | 43. | | |09341 00531| +520175 |FL Lyr *|191204.9+461927 |EA/DM | 9.27 | 9.89 | 9.52 |V |38221.55250 | | 2.1781544 |08 *|G0V |03435 03433| +520176 |FM Lyr |184249.6+352711 |LB | 11. | 12. | |p | | | | |M |00341 BD | +520177 |FN Lyr *|191022.3+422732 |RRAB | 11.91 | 13.23 | |V |33829.402 | | 0.52739716 |13 | |02717 00534| +520190 |GG Lyr |184704.0+285250 |LB | 12.0 | 12.8 | |p | | | | |M4 |00332 00533| +520210 |HI Lyr |181625.0+462752 |M | 12.5 |< 14.5 | |p |29398. | | 182. |54 |M0e |00001 00346| +520211 |HK Lyr |184250.0+365731 |LB | 7.8 | 9.6 | |V | | | | |C6,4(N4) | 00346| +520213 |HM Lyr |185221.2+333113 |LB | 10.1 | 10.9 | |p | | | | |M6 |06087 08953| +520214 |HN Lyr |191725.8+424850 |M | 10.8 |< 14.0 | |p |31240. | | 406. | |M7IIIe |00346 00346| +520215 |HO Lyr |192008.8+414059 |M | 11.4 | 14.0 | |p |30584. | | 100.4 |40 |M2e |00346 00346| +520216 |HP Lyr *|192139.1+395608 |EB/GS | 10.5 | 11.0 | 11.0 |p |26910. | | 140.75 | |A6 |03437 01089| +520224 |HX Lyr |181700.1+344856 |SRB | 12.5 | 13.9 | |p | | | 363. | | |00569 02353| +520227 |II Lyr |181755.0+383304 |LB | 12.1 | 12.6 | |p | | | | |K-M |00569 02365| +520232 |IO Lyr *|182238.0+325733 |RRAB | 11.27 | 12.24 | |V |39618.9315 | | 0.57712278 |18 |F1-F6 |00001 00350| +520237 |IT Lyr |182559.7+312951 |M | 12.5 | 17.0 | |p |29705. | | 198.7 |48 | |00569 02347| +520238 |IU Lyr |182553.9+353340 |L | 11.8 | 12.9 | |p | | | | | |00569 02347| +520241 |IX Lyr |182856.3+321449 |M | 11.5 |< 16.8 | |p |29827. | | 282. | | |00569 02353| +520245 |KL Lyr |183013.2+372939 |M | 11.7 | 16.5 | |p |29724. | | 215.1 |48 : | |00569 00141| +520249 |KP Lyr *|183051.8+383825 |SR | 10.3 | 11.3 | |p |29375. | | 146. | |M9III |00569 02353| +520257 |KX Lyr *|183315.2+401023 |RRAB | 10.38 | 11.47 | |V |39630.8696 | | 0.44090446 |21 |A7-F5 |00001 02366| +520274 |LZ Lyr *|184126.2+325847 |EA/SD | 12.0 | 13.3 | |p |42870.618 | | 1.6111788 |11 *| |00001 02366| +520278 |MP Lyr |184326.0+405033 |M | 11.8 | 16.6 | |p |29764. | | 153.0 |49 | |00569 02366| +520279 |MQ Lyr |185502.9+291328 |SRB | 12.2 | 12.8 | |p |31035. | | 72.6 | |M2 |00351 00533| +520284 |MV Lyr *|190716.3+440109 |NL | 12.2 | 18.0 | |B | | | | |Op+M5V |09372 00365| +520285 |MW Lyr *|181953.8+315855 |RRAB | 12.5 | 14.0 | |p |36041.462 | | 0.3978497 |20 |A-F |05646 02363| +520286 |MX Lyr |182109.6+460858 |M | 12.5 |< 15.5 | |p |36160. | | 340. | |M3e |02394 00158| +520292 |NQ Lyr |190748.4+421755 |RRAB | 12.2 | 13.3 | |p |17852.251 | | 0.5877888 |20 : | |02717 00538| +520293 |NR Lyr |190827.3+384846 |RRAB | 11.8 | 13.1 | |p |36079.374 | | 0.6820293 |27 | |03506 00319| +520298 |NW Lyr *|191556.3+342708 |CWB | 11.97 | 13.15 | |V |36398.452 | | 1.6011823 |32 | |09375 00141| +520302 |OO Lyr |183009.0+303817 |LB | 11.2 | 11.9 | |p | | | | |M |03118 03118| +520303 |OP Lyr |183253.7+430104 |M | 11.9 |< 18. | |p |38230. | | 297.6 | | |09340 04406| +520304 |OQ Lyr *|185651.3+311204 |I | 9.9 | 10.6 | |p | | | | |G6 |04216 09406| +520305 |OR Lyr |185731.3+274053 |LB | 10.7 | 11.7 | |p | | | | |M5 |04391 04391| +520308 |OU Lyr |191137.5+323652 |SRA | 10.0 | 10.7 | |p |33200. | | 90. | |MB |04216 08953| +520309 |OV Lyr |191613.2+292034 |SRA | 11.3 | 12.3 | |p |34643. | | 170.1 | |M7 |04244 04244| +520317 |PS Lyr *|191822.6+271701 |EA/SD | 11.3 | 12.0 | 11.4 |p |34601.529 | | 1.4469824 |17 | |04427 04427| +520320 |PV Lyr *|191902.6+313636 |EA/SD: | 12.0 | 12.3 | |p |34628.396 | | 1.1986321 |36 | |04427 04427| +520323 |PY Lyr *|192026.0+285644 |EW/KW | 12.5 | 13.5 | 13.4 |p |45119.418 | | 0.3857582 | |F0: |00001 04248| +520326 |QR Lyr |192125.9+325927 |L | 11.9 | 13.2 | |p | | | | | |04244 04244| +520379 |V0379 Lyr |192228.5+311823 |I | 12.5 | 13.4 | |p | | | | | |03662 03662| +520398 |V0398 Lyr |190813.2+390918 |LB | 7.30 : | 7.57 | |V | | | | |M6 |05445 BD | +520404 |V0404 Lyr *|191906.0+382201 |EB/SD: | 12.2 | 13.0 | 12.4 |p |35836.462 | | 0.73094585 | | |05540 05540| +520406 |V0406 Lyr *|183216.3+415046 |EW/KE | 12.5 | 13.0 | 13.0 |p |38525.500 | | 1.51130 | | |05957 00538| +520449 |V0449 Lyr |190737.1+440020 |E | 12.5 | 16.0 | |p | | | | | |06358 06358| +520459 |V0459 Lyr |184713.7+361421 |LB | 11.4 | 12.6 | |p | | | | |M |08069 00319| +520467 |V0467 Lyr *|183446.5+324128 |EW:/KE: | 12.4 | 12.9 | 12.9 |p |43192.556 | | 0.5457931 | | |08214 08214| +520471 |V0471 Lyr |191146.0+311700 |ACV | 5.91 | 5.98 | |V |41449.99 | | 1.160898 | |B9p(Si) |09308 BD | +520473 |V0473 Lyr *|191559.5+275535 |DCEPS: | 5.99 | 6.35 | |V |39320.6859 | | 1.49078 |50 |F6Ib-II |04071 BD | +520476 |V0476 Lyr |191949.8+404708 |LB | 10.5 | 11.7 | |p | | | | | |08493 08493| +520478 |V0478 Lyr |190732.4+301516 |RS | 7.63 |( 0.033 )| |V |44506.76 | | 2.185 | |G6V |08770 BD | +520491 |V0491 Lyr |183959.5+401953 |SRB | 9.2 | 10.5 | |B | | | | | |72075 BD | +520494 |V0494 Lyr |190312.8+335812 |M | 11.2 |< 15.0 | |V | | | | | |72071 72071| +520496 |V0496 Lyr |190727.1+354636 |IB | 12.0 | 13.0 | |V | | | | | |72071 72071| +520497 |V0497 Lyr |190749.1+362309 |IB | 11.9 | 13.5 | |V | | | | | |72071 72071| +520498 |V0498 Lyr |190902.9+325322 |SR | 11.3 | 12.3 | |V | | | | | |72071 72071| +520501 |V0501 Lyr |191437.5+370117 |M | 11.5 | 14.8 | |V | | | | | |72071 72071| +520502 |V0502 Lyr |191746.4+342601 |M | 12.0 | 14.8 | |V | | | | | |72071 72071| +520503 |V0503 Lyr |192422.6+321908 |SRB | 11.7 |< 15.2 | |V | | | | | |72071 72071| +520504 |V0504 Lyr |192602.0+350309 |M | 11.6 |< 15.2 | |V | | | | | |72071 72071| +520511 |V0511 Lyr |190621.3+274248 |RS | 8.92 |( 0.08 )| |V | | | | | |73005 BD | +520527 |V0527 Lyr |181739.4+345506 |LB: | 9.26 | 9.60 | |Hp| | | | | |HIP HIP | +520528 |V0528 Lyr |182400.0+435428 |SRB | 6.61 | 6.77 | |Hp| | | | | |HIP HIP | +520529 |V0529 Lyr |182523.1+382627 |ACV | 7.32 | 7.35 | |Hp| | | | | |HIP HIP | +520530 |V0530 Lyr |183034.6+361457 |LB: | 7.40 | 7.51 | |Hp| | | | | |HIP HIP | +520531 |V0531 Lyr *|183217.1+362534 |E: | 8.27 | 8.63 | |Hp| | | | | |HIP HIP | +520532 |V0532 Lyr |183323.0+305332 |BE | 6.44 | 6.54 | |Hp| | | | | |HIP HIP | +520533 |V0533 Lyr |183645.5+431319 |EB | 6.26 | 6.38 | |Hp| | | | | |HIP HIP | +520534 |V0534 Lyr |183758.8+372606 |ACYG: | 8.08 | 8.42 | |Hp| | | | | |HIP HIP | +520535 |V0535 Lyr |184140.2+340556 |LPB | 7.36 | 7.40 | |Hp| | | | | |HIP HIP | +520536 |V0536 Lyr |184301.1+294828 |LB | 7.97 | 8.27 | |Hp| | | | | |HIP HIP | +520537 |V0537 Lyr |184541.5+412420 |LB: | 7.89 | 8.02 | |Hp| | | | | |HIP HIP | +520538 |V0538 Lyr |184907.9+473057 |LB | 7.11 | 7.45 | |Hp| | | | | |HIP HIP | +520539 |V0539 Lyr |185126.8+391914 |EA | 7.26 | 7.31 | |Hp| | | | | |HIP HIP | +520540 |V0540 Lyr |185112.0+464418 |LB | 7.77 | 7.94 | |Hp| | | | | |HIP HIP | +520541 |V0541 Lyr |185318.5+405943 |LB | 6.44 | 6.66 | |Hp| | | | | |HIP HIP | +520542 |V0542 Lyr |185801.9+381558 |EA | 5.83 | 5.95 | |Hp| | | | | |HIP HIP | +520543 |V0543 Lyr |185846.6+404045 |BCEP: | 6.10 | 6.20 | |Hp| | | | | |HIP HIP | +520544 |V0544 Lyr |185914.8+314054 |DSCTC | 7.51 | 7.54 | |Hp| | | | | |HIP HIP | +520545 |V0545 Lyr |185912.3+391302 |LPB: | 6.36 | 6.38 | |Hp| | | | | |HIP HIP | +520546 |V0546 Lyr |185921.4+413813 |LB: | 7.78 | 7.88 | |Hp| | | | | |HIP HIP | +520547 |V0547 Lyr |190019.1+404102 |LB | 6.48 | 6.58 | |Hp| | | | | |HIP HIP | +520548 |V0548 Lyr |190057.8+462924 |SRB | 8.49 | 8.75 | |Hp| | | | | |HIP HIP | +520549 |V0549 Lyr |190402.1+330216 |DSCTC: | 8.11 | 8.14 | |Hp| | | | | |HIP HIP | +520550 |V0550 Lyr *|190617.0+412450 |LPB | 6.43 | 6.47 | |Hp| | | | | |HIP HIP | +520551 |V0551 Lyr |190719.2+410315 |ELL: | 7.11 | 7.17 | |Hp| | | | | |HIP HIP | +520552 |V0552 Lyr |191217.4+411416 |LB | 7.05 | 7.18 | |Hp| | | | | |HIP HIP | +520553 |V0553 Lyr |191339.7+271822 |LB | 9.51 | 10.19 | |Hp| | | | | |HIP HIP | +520554 |V0554 Lyr |191517.3+400649 |ACV: | 8.06 | 8.14 | |Hp| | | | | |HIP HIP | +520555 |V0555 Lyr |191812.1+340810 |LB | 8.45 | 8.59 | |Hp| | | | | |HIP HIP | +520556 |V0556 Lyr |192508.3+355958 |EB | 8.09 | 8.30 | |Hp| | | | | |HIP HIP | +520557 |V0557 Lyr |192558.3+361111 |SRD | 7.22 | 7.46 | |Hp| | | | | |HIP HIP | +520558 |V0558 Lyr |192736.4+375628 |BE | 6.22 | 6.30 | |Hp| | | | | |HIP HIP | +520559 |V0559 Lyr |182823.0+312134 |E | 11.3 | 13.1 | |p | | | | | |75002 GSC | +520560 |V0560 Lyr |182933.6+265613 |M | 12.0 |< 15.2 | |p | | | | | |75168 USNO | +520562 |V0562 Lyr |183113.9+465835 |ZAND: | 11.8 | 16.8 | |p | | | | | |76181 GSC | +520563 |V0563 Lyr |184506.6+401112 |EW | 10.96 | 11.47 | |V | | | | | |76188 DM | +520569 |V0569 Lyr |181521.9+390546 |EA | 11.9 | 12.3 | |V | | | | | |77100 GSC | +520570 |V0570 Lyr |181724.6+423616 |M | 11.1 | 15.8 | |V | | | | | |77143 77144| +520571 |V0571 Lyr |182102.0+443843 |EA | 11.7 | 12.3 | |V | | | | | |77100 GSC | +520572 |V0572 Lyr |182138.3+421008 |EA | 10.6 | 11.0 | |V | | | | | |77100 DM | +520573 |V0573 Lyr |182301.3+400835 |EW | 10.8 | 11.3 | |V | | | | | |77100 DM | +520574 |V0574 Lyr |182712.2+361437 |EW | 12.01 | 12.68 | |* | | | | | |77155 GSC | +520576 |V0576 Lyr |183907.8+415654 |EB | 12.3 | 12.7 | |V | | | | | |77100 GSC | +520578 |V0578 Lyr |184943.4+405749 |LB | 12.2 | 14.2 | |V | | | | | |77143 77144| +520586 |V0586 Lyr |191520.6+395850 |M | 11.0 |< 16.0 | |V | | | | | |77143 77144| +520588 |V0588 Lyr |191955.0+405240 |SRA | 12.5 | 14.0 | |V | | | | | |77143 77144| +520589 |V0589 Lyr |192531.8+425113 |EW | 11.6 | 12.0 | |V | | | | | |77100 GSC | +520590 |V0590 Lyr |181908.8+331353 |BY | 8.28 |( 0.02 )| |V | | | 4.825 | |K0V |78018 DM | +520592 |V0592 Lyr *|183053.7+340810 |EW | 12.41 | 12.92 | 12.82 |* |52135.5275 | | 0.355682 | | |78264 GSC | +520593 |V0593 Lyr |183206.4+403557 |DSCT | 11.75 |( 0.62 )| |V |52422.310 | | 0.102141 |31 | |78264 GSC | +520595 |V0595 Lyr |184634.6+382103 |BY | 8.10 |( 0.02 )| |V | | | 10.973 | |G5V |78018 DM | +520596 |V0596 Lyr |184655.1+450052 |EW | 12.09 | 12.75 | |* |52146.5105 | | 0.299632 | | |78264 GSC | +520597 |V0597 Lyr |191159.7+421846 |DSCT | 11.0 |( 0.11 )| |V | | | 0.1479 | | |78263 GSC | +520636 |V0636 Lyr |184752.8+384218 |LB | 11.7 | 12.4 | |* | | | | | |79100 GSC | +520637 |V0637 Lyr |181414.3+461411 |RS | 12.0 | 12.2 | |* | | | 1.59309 | | |80060 80060| NL80_3 +520639 |V0639 Lyr |181549.5+321838 |EB | 12.35 | 12.8 | 12.45 |* |51389.765 | | 0.62945 | | |80102 80102| NL80_3 +520640 |V0640 Lyr |181705.2+434959 |BY | 11.6 | 11.7 | |* | | | 13.018 | | |80370 80370| NL80_3 +520643 |V0643 Lyr |181848.0+342235 |BY | 12.40 |( 0.17 *)| |V | | | 8.5030 | | |80021 GSC | NL80_3 +520645 |V0645 Lyr |181938.1+364059 |BY | 11.40 |( 0.06 *)| |V | | | 1.0536 | | |80021 GSC | NL80_3 +520646 |V0646 Lyr |182122.4+314117 |SRB | 9.75 | 10.0 | |* | | | 44. | | |80070 80070| NL80_3 +520647 |V0647 Lyr |182247.1+443443 |BY | 11.52 |( 0.34 *)| |V | | | 5.7509 | |K5V |80021 GSC | NL80_3 +520650 |V0650 Lyr |182714.3+302210 |BY | 10.8 | 11.0 | |* | | | 33.6579 | | |80067 80067| NL80_3 +520651 |V0651 Lyr |182850.3+350634 |BY | 9.18 |( 0.03 *)| |V | | | 2.6940 | |G5 |80021 DM | NL80_3 +520652 |V0652 Lyr |182934.9+295805 |BY: | 9.18 | 9.31 | |Hp| | | 0.8610 | |F8 |80021 GSC | NL80_3 +520653 |V0653 Lyr |183016.5+410508 |EW | 11.21 | 11.75 | 11.68 |* |52886.3468 | | 0.468816 | | |80505 GSC | NL80_3 +520655 |V0655 Lyr |183018.9+344656 |BY: | 10.62 | 10.75 | |* | | | 3.0479 | | |80021 GSC | NL80_3 +520657 |V0657 Lyr |183037.3+433553 |BY | 11.39 |( 0.16 *)| |V | | | 23.1356 | | |80021 GSC | NL80_3 +520658 |V0658 Lyr |183336.1+463542 |EW | 11.25 | 11.62 | 11.61 |* |52926.3248 | | 0.330259 | | |80505 GSC | NL80_3 +520659 |V0659 Lyr |183340.2+361320 |BY | 11.6 | 11.8 | |* | | | 11.733 | | |80370 80370| NL80_3 +520661 |V0661 Lyr |183544.6+300815 |BY | 11.06 |( 0.12 *)| |V | | | 0.6175 | | |80021 GSC | NL80_3 +520663 |V0663 Lyr |183707.3+450741 |BY | 10.6 | 10.7 | |* | | | 55.121 | | |80370 80370| NL80_3 +520665 |V0665 Lyr |183825.3+340644 |RS | 10.15 | 10.42 | |* | | | 19.7 | | |80246 80246| NL80_3 +520666 |V0666 Lyr |183923.9+310002 |EW | 12.25 | 12.7 | 12.7 |* |51393.764 | | 0.5035 | | |80085 80085| NL80_3 +520667 |V0667 Lyr |184232.2+375534 |EA | 12.0 | 12.35 | 12.15 |* |51416.898 | | 1.4328 |12 | |80104 80104| NL80_3 +520668 |V0668 Lyr *|184421.5+280605 |DSCTC | 7.16 |( 0.03 )| |V | | | 0.0732979 | |F0 |80363 HIP | NL80_3 +520669 |V0669 Lyr |184706.3+434035 |RS | 10.8 | 11.0 | |* | | | 39.637 | | |80370 80370| NL80_3 +520670 |V0670 Lyr |185543.9+281307 |BY | 10.3 | 10.5 | |* | | | 74.0 | | |80043 80043| NL80_3 +520672 |V0672 Lyr |190409.8+363758 |EP | 11.34 | 11.36 | |R |53186.8060 | | 3.030065 |04 |K0V |80514 GSC | NL80_3 +520676 |V0676 Lyr |191302.6+443616 |RS | 10.22 | 10.40 | |* | | | 3.5657 | | |80170 80170| NL80_3 +520677 |V0677 Lyr |191512.1+394251 |SRD: | 10.3 |< 11.2 | |V |53221.1 | | 125.4 | | |80517 80517| NL80_3 +520722 |V0722 Lyr *|192155.3+350255 |* | 11.09 | 11.68 | |V | | | | |BIe |80522 GSC | NL80_3 +520723 |V0723 Lyr *|192357.5+380652 |DSCTC | 8.17 | 8.21 | |B | | | 0.0664549 | |F2III |80363 HIP | NL80_3 +520724 |V0724 Lyr |192730.7+422440 |SR | 11.7 | 12.3 | |* | | | 70.0 | | |80001 USNO | NL80_3 +529001 |alf Lyr *|183656.3+384701 |DSCTC | -0.02 | 0.07 | |V | | | 0.19 | |A0V |04126 BD | +529002 |bet Lyr *|185004.8+332146 |EB | 3.25 | 4.36 | 3.85 |V |08247.950 | | 12.913834 | |B8II-IIIep |07042 08953| +5290042|del 2 Lyr *|185430.3+365355 |SRC: | 4.22 | 4.33 | |V | | | | |M4II | BD | +529009 |iot Lyr |190718.1+360601 |BE | 5.20 | 5.27 | |Hp| | | | | |HIP HIP | +530001 |R Men *|054241.1-751502 |SRB | 9.5 | 12.0 | |p | | | 120. *2| |M5/6e |00353 08953| +530002 |S Men |065720.3-755916 |LB | 10.2 | 12.5 | |p | | | | |M4 |00016 08953| +530004 |U Men *|040935.9-815118 |SRA | 8.0 | 10.9 | |p |36065. | | 407.28 | |Me |00001 08953| +530007 |X Men |033229.6-762655 |M | 11.4 |< 15.0 | |p |28720. | | 380. | |M3e |00357 02338| +530010 |RR Men *|034350.4-840003 |EA/D | 11.8 | 12.6 | 12.1 |p |38408.350 | | 2.6011 |19 *| |04371 02380| +530011 |RS Men *|051541.2-734714 |M: | 12.5 | 15. | |p | | | | |Me |04663 04256| +530012 |RT Men *|043646.9-701841 |M | 12.2 | 17.2 | |p |31029. | | 250.44 |44 |MIIIe |00826 04762| +530013 |RU Men *|060150.1-703536 |M | 12.3 | 15.1 | |p |31778. | | 171.82 |37 |MIIIe |00826 00828| +530014 |RV Men *|061711.7-732856 |RRAB | 12.2 | 13.8 | |p |31172.239 | | 0.542291 |45 | |09036 09040| +530028 |TU Men *|044140.6-763647 |UGSU | 11.4 | 17. | |p | | |( 68. ) | |pec(UG) |08589 08852| +530032 |TY Men *|052649.7-813507 |EW/K | 8.08 | 8.56 | 8.47 |V |42054.7973 | | 0.46166701 | |A3-4V |08590 CPD | +530033 |TZ Men *|053013.9-844706 |EA/D | 6.19 | 6.87 | 6.36 |V |39190.34 | | 8.56898 |04 *|A1III+B9V: |05334 08953| +530036 |UW Men |071409.4-844547 |M | 11.9 |< 15.5 | |p |36060. | | 380. : | | |04043 05234| +530037 |UX Men *|053003.2-761455 |EA/DM | 8.8 | 9.57 | 9.47 |p |41984.64388 | | 4.181100 |05 *|G1V+G1V |07981 CoD | +530045 |WW Men |040257.3-795043 |SR: | 9.7 | 10.1 | |p | | | | |M5e |04256 CoD | +530046 |WX Men |053444.8-734429 |LB: | 5.72 |( 0.15 )| |V | | | | |M2-3III |05840 CPD | +530050 |XY Men *|052213.5-715619 |EB/KE | 10.63 | 11.27 | 10.88 |V |42423.0889 | | 0.7766348 | |A3 |04091 09077| +530051 |XZ Men *|044734.6-794826 |DSCTC(B) | 7.85 |( 0.03 )| |V | | | | |A3p |09378 CPD | +530052 |YY Men |045817.9-751638 |FKCOM: | 8.60 | 8.89 | |V | | | | | |67422 CPD | +530053 |YZ Men |051026.8-771302 |RS | 7.69 | 7.75 | |V | | | | | |68026 CPD | +530059 |AE Men |062540.3-720235 |RS | 8.24 | 8.33 | |V | | | | | |69011 CPD | +530061 |AG Men |054052.8-732055 |SR: | 9.3 |( 1.5 )| |I |46902. | | 408. : | | |V 479 V 443|=LMC V4104 +530063 |AI Men |035019.1-755344 |SRB | 7.42 | 7.48 | |Hp| | | | | |HIP HIP | +530064 |AK Men |035320.0-794835 |DSCT | 9.13 | 9.27 | |Hp| | | | | |HIP HIP | +530065 |AL Men |053118.6-790032 |EB | 8.90 | 9.21 | |Hp| | | | | |HIP HIP | +530066 |AM Men |060204.8-704031 |LB: | 8.48 | 8.58 | |Hp| | | | | |HIP HIP | +530067 |AN Men *|060019.5-803553 |EW | 9.36 | 9.54 | |Hp| | | | | |HIP HIP | +530068 |AO Men |061828.2-720242 |BY: | 9.96 | 10.18 | |Hp| | | | | |HIP HIP | +530069 |AP Men |063741.7-773219 |SRB | 7.64 | 7.98 | |Hp| | | | | |HIP HIP | +530071 |AR Men |033124.5-752721 |SRA | 12.5 | 14.1 | |V |52708. | | 146. | | |79100 79063| +530072 |AS Men |043256.9-780741 |SRB | 8.8 | 9.8 | |V | | | 127. | | |79100 DM | +530073 |AT Men *|045206.9-704353 |EA | 11.22 | 11.93 | |V |53131.4682 | | 2.3446345 |10 |G0 |79035 79090| +530074 |AU Men *|055500.7-724136 |EW | 10.23 | 11.15 | 11.0 |V |51869.180 | | 0.343841 | |G0 |79064 DM | +530075 |AV Men |061907.9-783509 |RRAB | 12.5 | 13.3 : | |V |53133.538 | | 0.55496 |18 | |79064 79056| +530076 |AW Men |070616.3-765021 |EA | 12.45 | 14.6 | 12.65 |V |51935.585 | | 4.5521 |08 | |79006 79056| +530077 |AX Men |071201.6-820024 |SRB | 11.2 | 12.1 | |V | | | 100. : | | |79100 79086| +530078 |AY Men |073458.5-765747 |SRB | 10.8 | 11.8 | |V | | | 38. | | |79100 GSC | +530080 |BB Men *|062254.3-750202 |EW | 11.40 | 11.83 | 11.80 |V |51868.148 | | 0.257707 | | |80036 GSC | NL80_2 +530081 |BC Men *|071127.3-842813 |BY | 11.86 |( 0.09 )| |V | | | 1.9 | |G8V |80199 2MASS| NL80_2 +539009 |iot Men *|053536.2-784915 |ELL: | 6.00 | 6.05 | 6.05 |V |41979.85 | | 5.288 | |B8II |07983 CPD | +540001 |R Mic *|204003.0-284731 |M | 8.3 | 13.8 | |V |43311. | | 138.62 |46 |M4e |00001 00002| +540002 |S Mic *|212644.1-295105 |M | 7.8 | 14.8 | |V |40485. | | 209.68 |43 |M3e-M5.5 |00001 00002| +540003 |T Mic |202755.2-281540 |SRB | 7.7 | 9.6 | |p | | | 347. | |M6e |00358 06478| +540004 |U Mic *|202915.8-402501 |M | 7.0 | 14.4 | |V |39540. | | 334.29 |39 |M5e-M7e |00001 00002| +540005 |V Mic *|212348.8-404205 |M | 9.4 | 14.0 | |p |30044. | | 381.15 | |M3e-M6e |00001 08953| +540006 |W Mic |212301.9-415800 |M | 10.3 | 15.5 | |p |15577. | | 198.8 | |M2e-M4e |00359 04001| +540007 |X Mic |210436.9-331648 |M | 9.8 |< 14.3 | |p |29883. | | 239.64 | |M4e-M5e |00001 05474| +540008 |Y Mic *|210706.5-341647 |SR | 10.3 | 11.9 | |p | | | 364. : | | |00358 05474| +540009 |Z Mic *|211622.7-301703 |RRAB | 11.23 | 11.86 | |V |41597.376 | | 0.5869340 |15 |F0-F8II |07984 06286| +540010 |RR Mic *|211549.3-431140 |CWA | 11.01 | 11.86 | |V |44139.57 | | 31.52 |19 | |05127 CoD | +540011 |RS Mic |202904.3-283106 |M | 10. | 15.5 | |p |37567. | | 228.5 | |Me |06298 02386| +540012 |RT Mic |203722.9-301026 |M | 12. |< 14. | |p | | | | | |00085 02384| +540013 |RU Mic |203840.1-364036 |SR | 10.5 | 11. | |p | | | 165. : | |Me |00085 08953| +540014 |RV Mic |204029.8-393743 |M | 10.5 |< 13. | |p | | | | | |00085 02384| +540015 |RW Mic |204624.8-422427 |M | 11. | 15.5 | |p | | | | | |00085 02386| +540016 |RX Mic |205426.4-274416 |M | 9.5 |< 14.0 | |V |35343. | | 239.75 | | |06299 02384| +540017 |RY Mic *|205823.2-401355 |M | 9.6 |< 14.5 | |V |37098. | | 198.2 | | |06430 06478| +540018 |RZ Mic *|205016.4-421305 |EA/DM | 11.0 | 11.8 | 11.2 |V |34362.42 | | 3.983051 |15 :*|A5 |00080 06431| +540023 |SW Mic |203100.9-394935 |SR: | 11.4 | 14. | |p |36840. :| | | | |04294 04001| +540027 |TT Mic |203716.1-444611 |RRAB | 12.4 | 13.6 | |p |36808.468 | | 0.672435 : |16 | |04294 04001| +540029 |TV Mic *|203722.4-383016 |EB/AR: | 11.7 | 12.6 | 12.4 |p |36807.302 | | 2.0762 | | |04294 02384| +540039 |UZ Mic *|204506.6-385838 |EW/KW | 11.9 | 12.4 | 12.4 |p |36724.251 | | 0.440964 | | |04294 04001| +540043 |VY Mic |204907.1-334354 |EA/DM | 9.4 | 9.7 | |p |38295.265 | | 4.4358 |10 |A3 |04383 CoD | +540051 |XZ Mic *|205854.8-385629 |RRAB | 12.40 | 13.50 | |V |42638.355 | | 0.449208 |20 | |04294 04001| +540054 |ZZ Mic *|210035.2-423920 |DSCT(B:) | 9.27 | 9.69 | |V |40442.8443 | | 0.0671835 |40 |A3-A8IV |06432 06431| +540064 |AK Mic |210952.2-395016 |UV | 11.7 | 16.2 | |p | | | | | |04294 04001| +540073 |AT Mic *|204151.2-322607 |UV | 11.4 | 12.90 | |U | | | | |M4.5Ve+M4.5Ve |05865 05288| +540074 |AU Mic *|204509.5-312027 |BY+UV | 8.59 | 8.96 | |V |42720.75 | | 4.865 | |M1.6Ve |06168 CoD | +540075 |AV Mic |204124.7-420802 |LC: | 6.25 | 6.35 | |V | | | | |M3II |06351 CoD | +540076 |AW Mic *|211905.9-335508 |RRC: | 9.04 | 9.13 | |V | | | 0.479 : | |B9 |07896 CoD | +540077 |AX Mic *|211715.3-385203 |UV | 9.21 | 9.31 | |U | | | | |M0Ve |08771 CoD | +540087 |BI Mic |212603.9-295548 |ACVO | 8.9 |( 0.002 )| |B | | | | | |68057 CoD | +540090 |BM Mic |211431.1-304527 |RS | 8.23 | 8.45 | |V | | | | | |69011 CoD | +540091 |BN Mic |211452.7-311101 |RS | 7.68 | 7.94 | |V | | | | | |69011 CoD | +540092 |BO Mic |204745.0-363541 |BY | 9.2 |( 0.21 )| |V | | | | | |73196 CoD | +540093 |BP Mic |210020.9-365510 |M | 3.79 | 4.48 | |H | | | | | |73014 USNO | +540094 |BQ Mic |211007.5-383104 |M | 3.45 | 4.74 | |J | | | | | |73014 USNO | +540095 |BR Mic |212701.1-315621 |BCEP | 8.78 | 8.82 | |V | | | | | |73197 CoD | +540096 |BS Mic |203635.8-380132 |LB | 8.64 | 9.02 | |Hp| | | | | |HIP HIP | +540097 |BT Mic |203957.3-433623 |EB | 10.14 | 10.41 | |Hp| | | | | |HIP HIP | +540098 |BU Mic |203952.5-360201 |DSCTC | 7.28 | 7.32 | |Hp| | | | | |HIP HIP | +540099 |BV Mic |204312.5-321735 |EA: | 9.86 | 10.20 | |Hp| | | | | |HIP HIP | +540100 |BW Mic |204421.1-343108 |SRD: | 9.19 | 9.31 | |Hp| | | | | |HIP HIP | +540101 |BX Mic |204511.7-350959 |EB: | 6.91 | 6.96 | |Hp| | | | | |HIP HIP | +540102 |BY Mic |205406.6-275531 |LB: | 6.49 | 6.52 | |Hp| | | | | |HIP HIP | +540103 |BZ Mic |205944.1-433026 |LB | 8.72 | 8.90 | |Hp| | | | | |HIP HIP | +540104 |CC Mic |211655.7-283617 |E: | 9.76 | 10.17 | |Hp| | | | | |HIP HIP | +540105 |CD Mic |212143.9-300855 |E: | 8.59 | 9.04 | |Hp| | | | | |HIP HIP | +540106 |CE Mic |212356.1-442330 |BY: | 11.17 | 11.39 | |Hp| | | | | |HIP HIP | +540107 |CF Mic |212528.4-414207 |LB | 7.28 | 7.90 | |Hp| | | | | |HIP HIP | +540108 |CG Mic |202902.4-431458 |ACV | 8.88 |( 0.04 U )| |V | | | | | |75026 CoD | +540109 |CH Mic |203045.7-383441 |ACV | 8.85 |( 0.06 U )| |V | | | | | |75026 CoD | +540110 |CI Mic |210534.9-354208 |ACV | 9.07 |( 0.03 )| |V | | | | | |75026 CoD | +540111 |CK Mic |203254.8-354330 |SR: | 10.1 | 11.7 | |V | | | | | |77004 DM | +540112 |CL Mic |203301.7-335528 |SR: | 9.8 | 10.8 | |V | | | | | |77004 DM | +540114 |CN Mic |203718.5-330301 |SR: | 10.8 | 12.2 | |V | | | | | |77004 DM | +540115 |CO Mic |203841.9-280448 |SR: | 12.2 | 13.2 | |V | | | | | |77004 GSC | +540116 |CP Mic |204017.6-302531 |SR: | 11.4 | 12.3 | |V | | | | | |77004 GSC | +540117 |CQ Mic |204113.1-281622 |SR: | 11.8 | 12.9 | |V | | | | | |77004 DM | +540118 |CR Mic |204246.4-292915 |SR: | 11.3 | 12.1 | |V | | | | | |77004 DM | +540119 |CS Mic |204440.7-320013 |SR: | 11.9 | 12.6 | |V | | | | | |77004 DM | +540123 |CW Mic |212351.2-385258 |SR: | 9.5 | 10.5 | |V | | | | | |77004 DM | +540124 |CX Mic |205109.1-345353 |M | 11.0 | 15.2 | |V |52816 | | 233. | |Me |78130 GSC | +540125 |CY Mic |205155.0-404705 |EA | 11.75 | 12.46 | |V |51882.504 | | 1.628741 |10 | |78011 78121| +540127 |DD Mic |210006.4-423844 |ZAND | 11.0 | 11.7 | |V | | | | |M0.3e |78066 GSC | +540128 |DE Mic *|210559.0-361534 |EW | 7.65 | 8.05 | 8.00 |V |52623.549 | | 0.410687 | |F6/F7V |78011 DM | +540129 |DF Mic |203911.6-375548 |SRB | 9.6 | 10.7 | |V | | | 197. | | |79100 DM | +540130 |DG Mic |211419.3-424755 |EA | 8.38 | 8.84 | 8.77 : |V |52104.716 | | 2.69592 |06 |A2mA7/8-A8/9 |79018 DM | +540131 |DH Mic |203608.3-360711 |BY | 11.55 | 11.85 | |V | | | 2.1256 | |M3Ve |80002 DM | NL80_3 +5490081|tet 1 Mic |212045.6-404834 |ACV | 4.77 | 4.87 | |V |40345.32 | | 2.1215 | |A2p(Cr-Eu-Sr-Mg) |09383 CoD | +550001 |R Mon *|063910.0+084410 |INA | 11.0 | 13.8 | |B | | | | |A3:e-Fpe |09395 00002| +550002 |S Mon *|064058.7+095345 |IA: | 4.62 | 4.68 | |V | | | | |O7.5III-Vf | 02750| +550003 |T Mon *|062513.0+070509 |DCEP | 5.58 | 6.62 | |V |43784.615 | | 27.024649 |27 |F7Iab-K1Iab+A0V |09029 00559| +550004 |U Mon *|073047.5-094637 |RVB | 6.1 | 8.8 | |p |38496. | | 91.32 |22 |F8eVIb-K0pIb(M2) |08125 00368| +550005 |V Mon *|062243.6-021144 |M | 6.0 | 13.9 | |V |44972. | | 340.5 |46 |M5e-M8e |00001 00002| +550006 |W Mon |065221.1-070850 |LB | 8.8 | 12.1 | |V | | | | |C4,5(N) |00369 08953| +550007 |X Mon *|065711.8-090352 |SRA | 6.8 | 10.2 | |V |42446. | | 155.8 |51 |M1eIII-M6ep |00001 00002| +550008 |Y Mon *|065652.1+111432 |M | 8.6 | 14.9 | |V |40637. | | 227.9 |49 |M4e-M8.2e |00001 00002| +550009 |Z Mon |063248.6-085220 |LB: | 9.2 | 9.7 | |p | | | | |K5 |00372 00097| +550010 |RR Mon *|071731.5+010542 |M | 8.4 | 15.8 | |V |40290. | | 394.70 |39 |S7,2e-S8,2e/M6-10|00001 00002| +550011 |RS Mon |070728.9+045910 |M | 9.82 |< 12.7 | |V |38703. | | 263.79 | |M3e-M6e: |00001 00567| +550012 |RT Mon |080843.5-104723 |SRB | 8.13 | 10.3 | |V | | | 107. |49 |M3-4III |00374 08953| +550013 |RU Mon *|065412.3-073545 |EA/DM | 10.33 | 11.18 | 11.06 |V |41743.1947 | | 3.584749 |06 *|B9p |09546 00102| +550014 |RV Mon *|065821.5+061002 |SRB | 9.71 | 11.9 | |B | | | 131.5 | |C4,4-C6,2(Nb/R9) |00372 00119| +550015 |RW Mon *|063445.9+084932 |EA/SD | 9.26 | 11.51 | 9.45 |V |33680.4481 | | 1.90609412 |15 |B9V+F8V-G0IV |09399 03455| +550016 |RX Mon *|072921.3-041644 |M | 9.6 |< 13.0 | |p |35800. | | 345.7 | |M6e-M9 |00001 00528| +550017 |RY Mon *|070656.5-073327 |SRA | 7.5 | 9.2 | |V |27440. | | 455.7 |43 |C5,5-C7,4:(N5/R) |00001 08953| +550020 |ST Mon |064705.8+080054 |M | 11.3 | 16.7 | |B |35127. | | 397.5 |35 |M6.5 |02931 06286| +550021 |SU Mon *|074217.5-105247 |SRB | 9.6 | 12.4 | |p | | | | |S3,6 |00374 08953| +550022 |SV Mon *|062126.3+062813 |DCEP | 7.61 | 8.88 | |V |43794.338 | | 15.232780 |38 |F6-G4 |09029 00560| +550023 |SW Mon |062701.0+052244 |SRB | 9.05 | 10.9 | |V | | | 112. | |M4III-M6 |00507 00002| +550024 |SX Mon *|065157.3+044553 |SR | 9.1 | 11.1 | |p | | | 100. | |M6.5 |00376 08953| +550025 |SY Mon |063731.3-012343 |M | 9.6 | 17.0 | |p |38438. | | 422.17 | |M6e-M9 |00001 05285| +550026 |SZ Mon *|065127.8-012216 |RVA | 9.66 | 10.75 | 10.55 |V |40550.0 | | 32.685 | |F9-K5 |00001 03453| +550027 |TT Mon |072540.6-055101 |M | 8.0 |< 13.5 | |p |38323. | | 323.17 | |M5e-M8 |00001 00400| +550028 |TU Mon *|075319.8-030231 |EA/SD | 9.0 | 11.7 | 9.1 |p |34068.1230 | | 5.0490291 |15 *|B5V+A5III: |08608 02532| +550029 |TV Mon *|062822.7+051257 |EA/SD | 12.0 | 13.9 | |p |44225.475 | | 4.179742 |10 | |00001 00570| +550031 |TX Mon *|065052.3-012545 |DCEP | 10.67 | 11.36 | |V |35838.977 | | 8.701731 |36 |F6-G2 |03453 00380| +550032 |TY Mon |065639.8+001123 |DCEP | 12.5 | 13.4 | |p |31901.142 | | 4.0226946 |30 |K5 |03453 03453| +550033 |TZ Mon |065800.9-002234 |DCEP | 10.43 | 11.18 | |V |37633.801 | | 7.42818 |30 |F6-G1 |03453 03453| +550037 |UX Mon *|075916.4-073018 |EA+DSCT: | 8.22 | 9.16 | 8.52 |V |33328.8533 | | 5.9045505 |17 |A6Vep+G0-G2III-IV|08608 06286| +550038 |UY Mon |065850.3+093722 |DCEPS | 9.22 | 9.62 | |V |44681.34 | | 2.39813 |43 |F8II |09402 03455| +550039 |UZ Mon |070131.3+073108 |M | 11.7 | 16.0 | |p |36251. | | 272.9 |44 |M2 |00001 06286| +550040 |VV Mon *|070318.3-054416 |EA/D/RS | 9.4 | 9.95 | 9.55 |V |26037.543 | | 6.050829 |11 |K0IV+G2 |08592 07991| +550045 |WW Mon |063337.2+091213 |DCEP | 11.97 | 12.92 | |V |37634.145 | | 4.66231 |28 |F6-F9 |00384 00531| +550049 |XX Mon *|065212.2-024825 |DCEP | 11.44 | 12.25 | |V |40689.60 | | 5.456473 |29 |F6-G0 |03453 00380| +550057 |AC Mon *|070059.8-084232 |DCEP | 9.75 | 10.47 | |V |37683.203 | | 8.01425 |30 |F5-G1 |03263 08588| +550060 |AF Mon |070353.1-065325 |M | 11.5 | 15.7 | |p |30373. | | 289.6 | |M7 |01007 00380| +550061 |AG Mon |070913.7-022132 |M | 11.6 | 17. : | |p |35113. | | 155.17 | | |00001 00408| +550062 |AH Mon |071226.7-015200 |M | 11. | 15.2 | |p |30930. | | 374. | |M7 |00387 05285| +550064 |AK Mon *|071249.9-030329 |M | 11.5 | 15.8 | |p |34717. | | 328.6 | |M5(S5,1) |00001 00380| +550065 |AL Mon |071252.2-052047 |M | 12.5 | 18.0 | |p |25610. | | 243.5 | |M3 |00387 00531| +550066 |AM Mon |071248.6-075541 |M | 12.1 | 16.5 | |p |27370. | | 432. | |M10 |00387 00531| +550067 |AN Mon *|065936.4-103722 |EA | 11.6 | 12.7 | 11.7 : |V |44685.390 | | 2.4458028 |15 *| |00001 08588| +550068 |AO Mon *|070636.3-043725 |EA/DM | 9.6 | 10.23 | 10.16 |V |40588.3272 | | 1.884660 |17 *|B3+B5 |00001 08953| +550069 |AP Mon |070933.9-064358 |LB | 8.74 | 9.5 | |V | | | | |M3 |00391 00391| +550070 |AQ Mon *|071417.7-071345 |EA/DM | 10.5 | 11.3 | 10.9 |p |25620.392 | | 2.545560 |06 |A0 |00389 00391| +550071 |AR Mon *|072048.5-051536 |EA/GS/RS | 8.62 | 9.47 | 9.03 |V |26606.408 | | 21.20911 |08 |G8III+K0III |08623 00391| +550072 |AS Mon |072223.6-085159 |EA | 10.7 | 11.4 | |V |26721.569 | | 1.836486 |20 *|A |00391 00391| +550073 |AT Mon |072429.9-073330 |EA/D: | 10.5 | 11.4 | |p |26607.500 | | 2.02902 |12 |F2 |09405 00391| +550074 |AU Mon *|065454.7-012233 |EA/DS: | 8.11 | 9.06 | 8.2 : |V |42801.3752 | | 11.1130371 |10 *|B5ea+F0 |09407 00391| +550075 |AV Mon *|072816.1-043651 |EA/SD: | 10.8 | 11.7 |( 0.04 )|V |26709.172 | | 6.947353 |10 *|A0 |00390 00391| +550076 |AW Mon *|074843.8-102642 |EA/DS | 10.5 | 12.2 | |p |35932.9 | | 20.820 |08 *|A2ea |09409 00391| +550077 |AX Mon *|063032.9+055201 |* | 6.59 | 6.94 | |V |39550. | | 232.5 | |B1eqIV+K1II-III |09410 BD | +550079 |AZ Mon |065745.2+031809 |M | 11.7 |< 15.7 | |p |32964. | | 388.9 | |M9 |00001 05285| +550080 |BB Mon *|070116.5-084143 |EA/KE | 10.6 | 11.3 |( 0.04 )|p |26681.5628 | | 0.7326988 |18 |A0 |09414 08588| +550081 |BC Mon *|075859.2-043005 |M | 10.0 |< 13.2 | |p |40284. | | 272.3 | |M3e |00001 00391| +550082 |BD Mon |080101.4-053736 |M | 10.3 |< 12.4 | |V |42039. | | 373.26 | |S5,2e |00001 00391| +550083 |BE Mon *|064005.6+073621 |DCEP | 10.19 | 10.88 | |V |41880.240 | | 2.705510 |26 |F4-G0 |08300 03455| +550085 |BG Mon |065622.8+070440 |SRB | 9.2 | 10.4 | |V |31881. | | 30. : | |C5,2(N) |02563 00491| +550087 |BI Mon |070102.4+104419 |M | 10.5 |< 15.5 | |p |41386. | | 430.31 | | |00001 00489| +550090 |BM Mon *|070845.3+004146 |EA/SD | 12.2 | 13.8 | 12.3 |p |27455.398 | | 1.2449426 |15 *|B1V: |00001 05285| +550092 |BO Mon *|075950.1-032837 |EA/SD | 10.0 | 12.1 | 10.1 |V |43507.5970 | | 2.2252193 |15 *|A2 |08593 08953| +550095 |BR Mon |070722.4-011924 |LB | 12.2 | 13.5 | |p | | | | |M5 |05285 05285| +550096 |BS Mon |072405.2-033236 |LB: | 9.5 | 10.4 | |V | | | | |M0p |00391 00391| +550098 |BU Mon |065033.6+034416 |SRB | 12.0 | 14.2 | |p |30724. | | 134.4 | |M3 |05285 05285| +550099 |BV Mon |065651.1+043058 |DCEP | 12.07 | 13.33 | |B |27834.29 | | 3.0143 |29 | |00400 00400| +550100 |BW Mon |071122.2-012939 |SRA | 11.3 | 12.8 | |p |28225. | | 157.0 | |M1 |01002 05285| +550101 |BX Mon *|072522.8-033551 |* | 9.5 | 13.4 | |p |30345. | | 1374. |39 |M4ep+F0II-III |09420 06286| +550103 |BZ Mon *|063738.2+045746 |EA/SD | 12.1 | 15.4 | |p |43192.663 | | 3.451804 |06 | |09422 02321| +550108 |CG Mon |065127.2+051322 |M | 11.2 | 15.0 | |p |37335. | | 419.11 | |C6,2e(N:) |00001 02310| +550112 |CL Mon |065536.7+062243 |M | 11.0 | 17.5 | |p |37440. | | 497.15 | |C6,3e(N6e) |00001 02310| +550117 |CQ Mon |062714.0+044631 |LB | 12.3 | 13.7 | |p | | | | |M6 |00382 02310| +550119 |CS Mon *|063210.9+063911 |CEP | 10.71 | 11.30 | |V |40862.66 | | 6.7317 |30 | |07934 08632| +550122 |CV Mon *|063704.8+030350 |DCEP | 9.90 | 10.70 | |V |42773.136 | | 5.378898 |26 | |08632 08633| +550123 |CW Mon |063654.5+000218 |UGSS | 11.9 | 16.3 | |p | | |( 121.7 ) | | |09201 08852| +550124 |CX Mon |063718.5+005516 |LB | 11.8 | 12.7 | |p | | | | |S6:/5+ |00382 08087| +550126 |CZ Mon |064440.7+031859 |LB | 12.5 | 14.5 | |p | | | | |C4,5(N5) |00382 00492| +550127 |DD Mon *|064557.8-001732 |EB/KE | 11.1 | 11.8 | 11.3 |p |30321.453 | | 0.56801193 | |B5 |05285 05285| +550129 |DF Mon *|064736.0+004056 |LB | 12.5 | 14.8 | |B | | | | |C4-5,4-5(N) |00382 02321| +550130 |DG Mon |064805.1+003217 |LB | 12.5 | 15.0 | |p | | | | |M2 |00382 02321| +550132 |DI Mon |064936.3+031019 |SRB | 11.0 | 12.0 | |p | | | 60. | |M3-M6 |05285 05285| +550139 |DQ Mon |063144.6+065741 |EA | 12.5 | 14.7 | |p |35164.405 | | | | |00382 02321| +550151 |EG Mon |065206.2-040153 |SRB | 12.0 | 14.0 | |p | | | 175. : | |M6-M7 |05285 05285| +550154 |EK Mon *|065246.2-022730 |DCEP | 10.77 | 11.42 | |V |40896.54 | | 3.957941 |31 | |03453 03453| +550155 |EL Mon |065445.8-064006 |LB | 12.2 | 13.4 | |p | | | | |M5-M6 |00387 02322| +550156 |EM Mon |065454.7-080118 |SRA | 12.1 | 14.8 | |p |25610. | | 220.5 | |C(R:) |00387 02311| +550159 |EP Mon *|065633.4-052110 |EA/KE: | 10.5 | 11.1 | |V |32888.576 | | 1.1480993 |18 |A2 |08638 00391| +550165 |EV Mon |070208.6+104543 |M | 11.5 | 16.5 | |p |32248. | | 399.73 | | |00001 00489| +550178 |FO Mon |071517.3-061255 |LB | 12.1 | 12.7 | |p | | | | |M4 |00387 02322| +550182 |FS Mon *|072442.3-050915 |EA/D: | 10.5 | 11.5 | 11.2 |p |34453.264 | | 1.905868 |10 |F2 |06584 00391| +550183 |FT Mon |062136.1+040425 |DCEP | 12.08 | 13.22 | |V |54179.58 | | 3.421861 |18 | |00001 00156| +550184 |FU Mon *|062223.9+032528 |SR | 11.6 | 12.7 | |p |29350. | | 309.8 | |C8,0J(CSe) |00403 00403| +550185 |FV Mon |065217.7+084839 |EA/SD | 11.5 | 13.9 | |p |28543.38 | | 7.51880 |08 *|A2 |00156 00156| +550186 |FW Mon *|075738.4-071122 |EA/SD: | 9.4 | 10.6 |( 0.04 )|p |27562.220 | | 3.8735903 |13 |B5+F2 |00001 00404| +550187 |FX Mon *|064505.6+090218 |M | 11. | 18.0 | |p |40275. | | 428.5 |35 |M1-M8 |00001 00409| +550193 |GK Mon |073936.6-005358 |M | 11.5 | 15.5 | |p |28937. | | 133. | | |02427 00541| +550194 |GL Mon |063546.5-052238 |SRB | 10.0 | 10.9 | |p |25500. | | 103.5 | |M4-M6.5 |00394 00391| +550197 |GO Mon |063430.5+092414 |EA/DS | 12.5 |< 14.7 | |p |27100.25 | | 12.4670 |10 | |08647 00491| +550203 |GU Mon *|064446.9+001318 |EW | 11.8 | 12.5 | 12.5 |B |30345.347 | | 0.89668149 | | |05285 00380| +550207 |GY Mon |065311.3-043434 |LB | 9.4 | 11.6 | |p | | | | |C6,3(N3/R8) |00085 08953| +550209 |HH Mon |065513.1-072538 |ISB: | 9.2 | 9.8 | |V | | | | |F5 |00104 08953| +550210 |HI Mon *|065549.1-040236 |EB/KE | 9.3 | 10.1 | 9.9 |V |30315.350 | | 1.5744326 | |B1V |05285 00380| +550215 |HO Mon *|071017.0+002529 |EA/SD: | 11.4 | 14.2 | |p |29999.390 | | 7.89448 |09 |A5 |05285 00380| +550217 |HQ Mon |071133.7+005207 |RV: | 12.4 | 14.2 | |p | | | 65. | | |05285 00380| +550223 |HW Mon |072327.0-100331 |M: | 12.5 |< 17. | |p | | | | |M10: |00085 02360| +550225 |HY Mon *|074451.0-073249 |EB | 11.5 | 12.4 | 12.4 |p |27397.797 | | 1.56574 | |F8 |09428 00205| +550228 |IK Mon |074647.4-104833 |M | 11.7 |< 16. | |p |36235. | | 387.0 | | |00001 02343| +550229 |IL Mon *|075536.0-033456 |EA/SD: | 10.6 | 11.6 | |p |32232.825 | | 4.02631 |07 |A0 |08013 08013| +550230 |IM Mon *|062301.5-031637 |EB/KE | 6.40 | 6.49 | 6.47 |B |33340.168 | | 1.190243 | |B5Vp+B7 |03465 05288| +550236 |IS Mon *|064514.2+100547 |EA/SD | 11.5 | 13.5 |( 0.05 )|p |27099.26 | | 4.04761 |18 *| |00407 02346| +550238 |IU Mon |065506.2+101242 |EA/SD | 12.5 | 14.8 | |p |27502.182 | | 5.638605 |09 *| |00407 02359| +550239 |IV Mon |065621.8+105729 |LB | 12.2 | 13.6 | |p | | | | |C6-,4(N) |00407 02346| +550242 |IY Mon |070039.3+103452 |M | 11.7 |< 16.8 | |p |28221. | | 338. | |M0 |00407 02352| +550243 |IZ Mon *|070044.8+084903 |EB | 11.9 | 12.6 | 12.0 |p |27344.621 | | 0.7798089 | | |00001 02346| +550247 |KN Mon |072550.8-104108 |LB | 12.4 | 14.5 | |p | | | | |S |00412 02342| +550248 |KO Mon |073007.7-092317 |LB | 12.4 | 13.4 | |p | | | | |M6 |00412 02360| +550250 |KQ Mon |073121.1-102149 |L | 12.1 | 13.0 | |p | | | | | |00412 02342| +550251 |KR Mon |075623.0-004344 |S: | 11.7 | 13.0 | |p | | | | |G3V |00572 UCAC2| +550252 |KS Mon |061944.2-051708 |SRB | 9.5 | 10.7 | |p | | | | |MA |00202 08953| +550280 |MR Mon |064711.5+013146 |LB | 9.6 | 11.2 | |p | | | | |M3-M5 |05285 05285| +550284 |MV Mon |070338.2-031111 |SRA | 11.9 | 13.2 | |p |30745. | | 184.4 | |M7 |02748 00408| +550286 |MX Mon *|071233.0-042714 |EB/KE | 11.4 | 12.1 | 11.7 |p |30130.2166 | | 0.68644524 | |A5 |05285 00408| +550288 |MZ Mon |071619.1-021847 |SR | 12.0 | 13.0 | |p | | | 200. : | | |00408 00408| +550293 |NR Mon |072626.8-085536 |LB: | 10.2 | 11.4 | |p | | | | |M6 |00416 08953| +550294 |NS Mon *|063608.0+075144 |EW/DW | 10.6 | 11.1 | 11.1 |p |41599.600 | | 0.9399163 | |G0 |09432 09432| +550316 |PR Mon *|073821.5-100446 |E | 11.0 | 11.7 | |p |29726.200 | | 1.12371 : | |A |03469 02360| +550317 |PS Mon |080852.0-102347 |SR: | 10. | 10.8 | |p |34040. | | | |M |00500 00391| +550324 |PZ Mon |064821.1+011308 |ISB: | 9.6 | 11.1 | |p | | | | |K2Ve |05285 05285| +550326 |QR Mon *|065406.3+004737 |SRB | 10.6 | 12.3 | |p | | | | |M5III-M7 |05285 05285| +550327 |QS Mon |072513.1-075243 |M | 12.5 |< 15.5 | |p |37308. | | 378. | | |04122 00541| +550372 |V0372 Mon *|064126.1-043546 |SR | 12.5 | 13.8 | |p | | | | |SC(N) |02748 02359| +550377 |V0377 Mon |064902.1-013937 |SRB | 11.5 | 13.6 | |p | | | 335. : | |M6 |05123 00539| +550380 |V0380 Mon *|065209.2-013723 |EW/DW | 12.4 | 12.9 | 12.9 |p |25622.495 | | 0.99583300 | |F5 |05285 02360| +550381 |V0381 Mon |065632.8-074626 |L | 12.5 | 13.5 | |p | | | | | |02748 02360| +550391 |V0391 Mon |072220.4-050756 |RRAB | 12.5 | 12.9 | |p |30735.415 | | 0.464331 |15 | |02748 00539| +550392 |V0392 Mon |060757.2-042424 |E | 12.0 | 13.5 | |p |37365.274 | | | | |04096 04096| +550394 |V0394 Mon *|063649.1-035218 |EA | 12.0 | 13.2 |( 0.04 )|p |33706.328 | | 4.2650821 |14 | |04428 04428| +550397 |V0397 Mon *|063830.7-042149 |EB | 11.7 | 12.7 | 11.9 |p |34776.446 | | 4.7038566 | | |04428 04428| +550442 |V0442 Mon *|064219.5+034822 |EA/DM | 11.2 | 11.7 | 11.6 |p |32906.578 | | 1.6670128 |15 *| |04428 04428| +550445 |V0445 Mon *|064308.4-014643 |EB/D | 10.9 | 11.7 | 11.3 |p |33220.576 | | 3.1310574 | | |04428 04428| +550448 |V0448 Mon *|064745.0+012218 |EB/KE | 9.4 | 9.9 | 9.8 |p |32888.517 | | 1.1184666 | |A2 |04428 04428| +550450 |V0450 Mon *|064919.3+001951 |EB/DM | 12.1 | 12.7 | 12.6 |p |32233.339 | | 2.5970025 | |B5: |04428 04428| +550453 |V0453 Mon *|065039.0-022207 |EW | 11.1 | 11.8 | 11.8 |p |33220.504 | | 0.68702530 | | |04428 04428| +550454 |V0454 Mon *|065356.1+013509 |EA/D | 12.0 | 12.4 | 12.2 |p |34446.310 | | 2.2475862 |14 *| |04428 04428| +550460 |V0460 Mon *|070016.6+020212 |EB/KE | 10.5 | 11.2 | 10.7 |p |32233.364 | | 1.3975793 | | |04428 04428| +550464 |V0464 Mon *|070543.7-030934 |EB | 12.1 | 12.9 | 12.3 |p |31852.354 | | 1.1264091 | | |04428 04428| +550465 |V0465 Mon *|070809.3-000357 |DCEP | 10.17 | 10.77 | |V |41698.687 | | 2.713176 |38 |G0 |08300 03453| +550467 |V0467 Mon |072629.0-032116 |M | 12. | 14.5 | |p |29590. | | 96. : | | |04122 00541| +550472 |V0472 Mon |074553.6-090254 |LB: | 12. | 13.5 | |p | | | | | |04125 04125| +550473 |V0473 Mon |075452.6-094616 |LB: | 12.5 | 13.5 | |p | | | | | |04125 04125| +550474 |V0474 Mon *|055901.1-092256 |DSCT | 5.93 | 6.36 | |V |41661.1668 | | 0.13612600 | |F2IV |08668 BD | +550475 |V0475 Mon |062858.4+092808 |SR: | 11.6 | 13.2 | |I | | | 340. : | |M0: |03451 03451| +550491 |V0491 Mon |063430.3+110441 |SRA | 12.0 | 13.6 | |I |36957. | | 234. |50 | |03451 03451| +550492 |V0492 Mon |063430.0+001214 |LB | 10.6 | 11.13 | |B | | | | |M4-M5 |05123 05123| +550494 |V0494 Mon *|063644.3-025145 |EA | 11.6 | 12.2 |( 0.05 )|p |34769.462 | | 0.8388121 |28 | |05123 05123| +550496 |V0496 Mon *|063744.7+031801 |EB | 12.5 | 13.3 | 12.8 |p |32915.4155 | | 0.6607649 | | |05123 05123| +550498 |V0498 Mon *|063944.3+015745 |EA | 10.3 | 10.6 | |p |33220.515 | | 1.2363909 |25 | |05123 05123| +550499 |V0499 Mon |064005.1+034107 |EA | 11.2 | 11.8 | |p |34776.37 | | | | |05123 05123| +550502 |V0502 Mon |064326.2-022950 |EB:/DS: | 12.2 | 13.2 | |p |33328. | | 27.43 : | | |05123 05123| +550504 |V0504 Mon |064443.9-035708 |CEP | 12.5 | 13.1 | |p |33705.564 | | 2.774050 |45 | |05123 05123| +550505 |V0505 Mon *|064550.0+022957 |EB/GS/D | 7.15 | 7.65 | 7.55 |V |44635.318 | | 53.7805 | |B5eaIb+B5 |09443 08953| +550508 |V0508 Mon |064709.4+035802 |DCEP | 10.22 | 10.74 | |V |41732.070 | | 4.133608 |26 | |08300 03453| +550510 |V0510 Mon *|064726.9+023101 |DCEP | 12.35 | 12.94 | |V |33000.403 | | 7.307175 |38 | |05123 05123| +550511 |V0511 Mon |064734.5+015513 |L | 12.1 | 12.8 | |p | | | | | |05123 05123| +550515 |V0515 Mon *|064921.1-020649 |EA | 12.3 | 12.9 | 12.7 |p |33304.4495 | | 0.87397300 |17 | |05123 05123| +550516 |V0516 Mon |065041.5+015154 |LB | 10.8 | 12.1 | |p | | | | | |05123 05123| +550517 |V0517 Mon |065052.5-000424 |LB | 11.4 | 12.3 | |p | | | | |M2 |05123 05123| +550519 |V0519 Mon |065128.9-000157 |LB | 9.4 | 10.3 | |p | | | | |M5III |05123 05123| +550520 |V0520 Mon |065512.4-012854 |LB | 12.1 | 12.8 | |p | | | | | |05123 05123| +550521 |V0521 Mon *|065553.6-001424 |EA/DM | 10.0 | 10.5 | 10.4 |p |33008.411 | | 2.9706633 |18 *|A0 |05123 05123| +550522 |V0522 Mon |065640.9-024355 |L | 11.1 | 12.1 | |p | | | | | |05123 05123| +550523 |V0523 Mon |065807.1-090138 |SRB | 6.95 | 7.45 | |V | | | 45. : | |MB |05128 08588| +550526 |V0526 Mon *|070153.6-010752 |DCEPS | 8.45 | 8.78 | |V |40286.290 | | 2.674985 |48 |F6II |08053 05123| +550527 |V0527 Mon *|070205.6-015423 |EA | 12.2 | 12.9 |( 0.05 )|p |33327.448 | | 0.8245743 |22 *| |05123 05123| +550530 |V0530 Mon *|070315.8+031454 |EW | 12.4 | 12.8 | 12.8 |p |33294.420 | | 0.52552935 | | |05123 05123| +550531 |V0531 Mon |070313.8+015815 |L | 12.5 | 13.7 | |p | | | | | |05123 05123| +550532 |V0532 Mon *|070430.6-002105 |EW:/KW: | 12.2 | 12.8 | 12.8 |p |34769.3467 | | 0.46698470 | | |05123 05123| +550533 |V0533 Mon |070638.8+020028 |LB | 11.8 | 12.7 | |p | | | | |K5 |05123 05123| +550535 |V0535 Mon *|071048.8+011656 |RRC | 11.8 | 12.5 | |p |34795.334 | | 0.3328635 |32 | |03453 03453| +550536 |V0536 Mon |071355.6-025430 |E | 9.1 | 10.1 | |p | | | 31.035 /N| |B4V |05123 05123| +550569 |V0569 Mon *|070549.6-103936 |BCEP | 6.42 | 6.53 | |V | | | 0.267 : | |B0V |06585 08087| +550571 |V0571 Mon *|071123.6-001807 |DSCTC | 5.43 | 5.50 | |V | | | | |F2V |09450 BD | +550577 |V0577 Mon *|062923.4-024850 |UV | 12.5 | 13.3 | |B | | | | |M4.5Ve |06586 06874| +550578 |V0578 Mon *|063200.6+045241 |E | 8.54 | 8.57 | |V | | | 2.420 | |B0V+B0V |06113 07128| +550587 |V0587 Mon |063236.1+085903 |SRB | 11.9 | 13.4 : | |V | | | 400. : | |C(N) |07129 07129| +550588 |V0588 Mon *|063905.9+094103 |DSCTC | 9.66 | 9.72 | |V | | | 0.11 | |A7III-IV |06359 02749| +550589 |V0589 Mon *|063928.5+094204 |DSCTC | 10.27 |( 0.05 )| |V | | | 0.124 | |F2III |06359 02749| +550592 |V0592 Mon |065042.3-080228 |ACV | 6.16 | 6.32 | |V |33942.98 | | 2.9760 | |A2p(Sr-Cr) |09454 BD | +550613 |V0613 Mon *|064822.3+053230 |SRB: | 7.64 | 8.5 | |V | | | | |M2(S5,1) |06059 BD | +550614 |V0614 Mon |070102.0-031509 |SRB | 7.01 | 7.36 | |V | | | 60. : | |C4,5J(R5) |06059 BD | +550616 |V0616 Mon *|062244.5-002044 |XND+ELL: | 11.26 | 20.2 | |B | | | | |pec(cont-e)+K5-7V|08693 09457| +550617 |V0617 Mon |062347.9+082951 |M | 12.5 | 15.4 | |V |41210. | | 375. : | |C(N) |07129 07129| +550627 |V0627 Mon |062648.0-075434 |M: | 6.62 | 7.26 | |I | | | | |M6e |06005 GSC22| +550632 |V0632 Mon *|072058.6-102244 |SR: | 10.4 | 10.8 | |V | | | | |M7III-M9 |06977 08127| +550633 |V0633 Mon |075113.6-023711 |M: | 11.0 | 15.6 | |V | | | | |C |06977 06977| +550634 |V0634 Mon |071710.1-014419 |E | 12.0 | 12.4 | |p |25981.40 | | 2.1141 | | |00001 02322| +550635 |V0635 Mon |080144.5-083535 |EA/DM | 7.6 | 8.1 | |p |29658.375 | | 1.807805 | |F5+A2 |08040 07762| +550636 |V0636 Mon |062501.4-090716 |M: | 6.2 | 9.8 | |I | | | | |C |09464 USNO | +550637 |V0637 Mon *|070254.8-041421 |BCEP | 4.96 | 5.01 | |V |43496.1169 | | 0.19120 | |B1IV-Vea |08696 BD | +550638 |V0638 Mon *|061143.7-043956 |ACV | 6.16 | 6.18 | |V |43852.00 | | 0.724 |50 |B9p(Hg-Mn) |04013 BD | +550640 |V0640 Mon *|063724.0+060807 |* | 6.04 | 6.08 | |V | | | | |O8V+O8f |04106 BD | +550641 |V0641 Mon *|064028.6+094904 |ELL | 8.46 |( 0.07 )| |V |43214.577 | | 1.304054 | |B1.5IV+B2V |08500 BD | +550642 |V0642 Mon *|064046.1+094917 |FKCOM | 11.69 | 11.82 | |V |43128.963 | | 0.74479 | |K0IVpea |09465 08499| +550644 |V0644 Mon |065709.4-104928 |GCAS | 6.88 | 6.98 | |V | | | | |B0-1V-IVeq+K |08587 08588| +550645 |V0645 Mon *|080113.3-012333 |FKCOM | 4.68 |( 0.020 )| |V |43100.000 | | 0.207878 |50 |K4III |08506 BD | +550646 |V0646 Mon |070347.5-010559 |ACV | 8.85 | 8.92 | |V |44230.732 | | 11.978 | |A0p(Sr-Eu) |09466 BD | +550647 |V0647 Mon |070858.8-010057 |GCAS | 9.28 | 9.35 | |V | | | | |B1Vne |08772 BD | +550648 |V0648 Mon |062814.0+051620 |ACV | 7.35 | 7.39 | |V | | | | | |67066 BD | +550649 |V0649 Mon |063710.4+060333 |ELL: | 7.56 | 7.62 | |V | | | | | |67201 BD | +550651 |V0651 Mon |070922.5-004824 |* | 11.29 | 15.28 | |V | | | | | |67428 67427| +550653 |V0653 Mon |061101.2-064515 |ACV | 6.19 |( 0.04 )| |U | | | | | |68020 BD | +550654 |V0654 Mon |062151.5-035041 |M | 6.10 | 8.49 | |1.| | | | | |68015 USNO | +550680 |V0680 Mon |065930.7+091900 |RR | 9.6 | 10.1 | |p | | | | | |68297 68297| +550682 |V0682 Mon |062810.8-045357 |ACV | 7.65 | 7.73 | |U | | | | | |69056 BD | +550683 |V0683 Mon |063211.3-071823 |E | 8.21 |( 0.40 )| |V | | | | | |69194 BD | +550684 |V0684 Mon |064038.4+094716 |EA/DM | 8.44 |( 0.10 )| |V | | | | | |69195 69196| +550685 |V0685 Mon |072047.6-074810 |SRB: | 10.2 | 11.5 | |V | | | | | |69010 | +550686 |V0686 Mon |072542.7-030622 |M | 11.5 |< 21. | |p | | | | | |69197 69198| +550687 |V0687 Mon |063110.1+102604 |INT | 12.27 | 13.29 | |V | | | | | |70074 70009| +550688 |V0688 Mon |063654.2+032529 |M: | 9.19 | 11.2 | |H | | | | | |70075 70076| +550689 |V0689 Mon |063838.2+013649 |ACYG | 6.19 | 6.26 | |V | | | | | |70077 BD | +550694 |V0694 Mon |072551.3-074408 |* | 9.1 | 10.1 | |V | | | | | |71070 71071| +550695 |V0695 Mon |080044.1-025255 |BE | 6.48 | 6.55 | |V | | | | | |71074 BD | +550696 |V0696 Mon |060413.5-064232 |* | 5.12 | 5.18 | |B | | | | | |72113 BD | +550699 |V0699 Mon |063241.8+100934 |INA | 10.36 | 10.84 | |V | | | | | |72115 72029| +550700 |V0700 Mon |063305.2+101920 |INA | 8.62 | 8.91 | |V | | | | | |72115 72029| +550713 |V0713 Mon |062527.3-093206 |M | 7.75 | 10.01 | |J | | | | | |73198 73199| +550714 |V0714 Mon |062912.4+044440 |EW | 11.5 |( 0.64 )| |V | | | | | |73200 73200| +550715 |V0715 Mon |064903.6+010007 |LPB: | 5.34 |( 0.18 u )| |U | | | | | |73201 BD | +550717 |V0717 Mon |055741.4-060541 |LB | 7.27 | 7.50 | |Hp| | | | | |HIP HIP | +550718 |V0718 Mon |061705.4-060709 |LPB | 8.08 | 8.13 | |Hp| | | | | |HIP HIP | +550719 |V0719 Mon |062102.9+023408 |LB: | 7.14 | 7.23 | |Hp| | | | | |HIP HIP | +550720 |V0720 Mon |062318.4-072705 |LC: | 9.60 | 9.83 | |Hp| | | | | |HIP HIP | +550721 |V0721 Mon |062335.9-095229 |LB | 6.18 | 6.26 | |Hp| | | | | |HIP HIP | +550722 |V0722 Mon |062820.4-004346 |E: | 7.84 | 7.99 | |Hp| | | | | |HIP HIP | +550723 |V0723 Mon |062904.7-053420 |SRD: | 8.37 | 8.51 | |Hp| | | | | |HIP HIP | +550724 |V0724 Mon |062915.4-080602 |SRB | 7.88 | 8.14 | |Hp| | | | | |HIP HIP | +550725 |V0725 Mon |063017.6+025052 |BE | 8.87 | 9.01 | |Hp| | | | | |HIP HIP | +550726 |V0726 Mon |063018.0-062549 |LPB | 7.93 | 7.97 | |Hp| | | | | |HIP HIP | +550727 |V0727 Mon |063109.3+095623 |EB | 7.88 | 7.99 | |Hp| | | | | |HIP HIP | +550728 |V0728 Mon |063243.2-073032 |BE | 8.03 | 8.12 | |Hp| | | | | |HIP HIP | +550729 |V0729 Mon |063435.6+045805 |SRB | 6.72 | 6.90 | |Hp| | | | | |HIP HIP | +550730 |V0730 Mon |063440.6-083629 |EA: | 8.85 | 8.95 | |Hp| | | | | |HIP HIP | +550731 |V0731 Mon |063752.7+045724 |ACYG: | 6.16 | 6.22 | |Hp| | | | | |HIP HIP | +550732 |V0732 Mon |063823.1+043727 |LPB: | 8.16 | 8.26 | |Hp| | | | | |HIP HIP | +550733 |V0733 Mon |064001.6-044155 |BE | 8.61 | 8.83 | |Hp| | | | | |HIP HIP | +550734 |V0734 Mon |064006.3-101839 |ACV | 8.49 | 8.55 | |Hp| | | | | |HIP HIP | +550735 |V0735 Mon |064025.2+023329 |ACV: | 7.50 | 7.54 | |Hp| | | | | |HIP HIP | +550736 |V0736 Mon |064018.9-062047 |LB | 6.90 | 7.04 | |Hp| | | | | |HIP HIP | +550737 |V0737 Mon |064212.9-102953 |BE | 8.81 | 8.92 | |Hp| | | | | |HIP HIP | +550738 |V0738 Mon |064312.5-084530 |SRB | 9.72 | 9.98 | |Hp| | | | | |HIP HIP | +550739 |V0739 Mon |064757.3+004634 |BE | 8.94 | 9.04 | |Hp| | | | | |HIP HIP | +550740 |V0740 Mon |064944.3-012024 |ACV | 7.28 | 7.34 | |Hp| | | | | |HIP HIP | +550741 |V0741 Mon *|065043.3-041558 |LPB: | 6.84 | 6.88 | |Hp| | | | | |HIP HIP | +550742 |V0742 Mon |065145.8+050504 |BE | 6.89 | 6.94 | |Hp| | | | | |HIP HIP | +550743 |V0743 Mon |065133.4-065800 |GCAS | 6.57 | 6.87 | |V | | | | | |HIP HIP | +550744 |V0744 Mon |065513.7+052602 |BE: | 7.61 | 7.85 | |Hp| | | | | |HIP HIP | +550745 |V0745 Mon |065511.9-091916 |EA | 7.69 | 7.99 | |Hp| | | | | |HIP HIP | +550746 |V0746 Mon |065619.1-034826 |BE | 8.04 | 8.14 | |Hp| | | | | |HIP HIP | +550747 |V0747 Mon |065709.5-083231 |BE: | 8.02 | 8.21 | |Hp| | | | | |HIP HIP | +550748 |V0748 Mon |070116.4-020919 |LB: | 8.59 | 8.73 | |Hp| | | | | |HIP HIP | +550749 |V0749 Mon |070337.2-022827 |GCAS: | 7.08 | 7.25 | |Hp| | | | | |HIP HIP | +550750 |V0750 Mon *|070425.5-102716 |GCAS | 6.92 | 7.22 | |V | | | | | |HIP HIP | +550751 |V0751 Mon |070747.0-032216 |SRB | 7.85 | 7.99 | |Hp| | | | | |HIP HIP | +550752 |V0752 Mon |070756.9-044040 |DSCTC: | 6.99 | 7.01 | |Hp| | | | | |HIP HIP | +550753 |V0753 Mon *|071057.9-035243 |EB: | 8.30 | 8.82 | |Hp| | | | | |HIP HIP | +550754 |V0754 Mon |071219.1-014640 |ACV: | 8.70 | 8.79 | |Hp| | | | | |HIP HIP | +550755 |V0755 Mon |071731.6-054922 |LPB | 7.18 | 7.23 | |Hp| | | | | |HIP HIP | +550756 |V0756 Mon |071922.1-084659 |LB: | 7.12 | 7.29 | |Hp| | | | | |HIP HIP | +550757 |V0757 Mon |072134.6-055350 |BE: | 6.49 | 6.58 | |Hp| | | | | |HIP HIP | +550758 |V0758 Mon |072307.0-041249 |LB | 8.96 | 9.25 | |Hp| | | | | |HIP HIP | +550759 |V0759 Mon |072321.3-042557 |ACV: | 8.68 | 8.80 | |Hp| | | | | |HIP HIP | +550760 |V0760 Mon |072513.1-030803 |LB | 8.56 | 8.82 | |Hp| | | | | |HIP HIP | +550761 |V0761 Mon |072609.5-103257 |E: | 8.36 | 8.44 | |Hp| | | | | |HIP HIP | +550762 |V0762 Mon |073030.8-003749 |LB: | 8.81 | 8.91 | |Hp| | | | | |HIP HIP | +550763 |V0763 Mon |073557.8-032206 |BE | 7.70 | 7.85 | |Hp| | | | | |HIP HIP | +550764 |V0764 Mon |073743.2-074338 |RRC | 7.13 | 7.20 | |Hp| | | | | |HIP HIP | +550765 |V0765 Mon |073927.0-020901 |LB: | 11.12 | 11.49 | |Hp| | | | | |HIP HIP | +550766 |V0766 Mon |074123.9-091254 |LB | 8.25 | 8.39 | |Hp| | | | | |HIP HIP | +550767 |V0767 Mon |075004.0-005255 |LB | 9.53 | 9.97 | |Hp| | | | | |HIP HIP | +550768 |V0768 Mon |075544.1-031154 |LB: | 10.24 | 10.42 | |Hp| | | | | |HIP HIP | +550769 |V0769 Mon |075903.9-041957 |EB: | 7.03 | 7.09 | |Hp| | | | | |HIP HIP | +550770 |V0770 Mon |080449.1-052442 |SRB: | 7.37 | 7.46 | |Hp| | | | | |HIP HIP | +550771 |V0771 Mon |080826.2-010153 |LB: | 8.15 | 8.26 | |Hp| | | | | |HIP HIP | +550772 |V0772 Mon |080833.9-020445 |CEP: | 10.22 | 10.38 | |Hp| | | | | |HIP HIP | +550773 |V0773 Mon |080915.7-043310 |E: | 7.59 | 7.67 | |Hp| | | | | |HIP HIP | +550774 |V0774 Mon |081006.5-064443 |LB | 7.78 | 7.90 | |Hp| | | | | |HIP HIP | +550775 |V0775 Mon |081030.6-093617 |LB | 7.57 | 7.73 | |Hp| | | | | |HIP HIP | +550776 |V0776 Mon |055907.3-105238 |SRA | 12.3 |( 0.4 )| |V | | | | | |75169 BD | +550777 |V0777 Mon |061958.2-103815 |R: | 8.78 | 8.94 | |V | | | | | |75170 BD | +550778 |V0778 Mon |062547.6+063905 |SRB | 10.65 | 11.45 | |V | | | | | |75119 75119| +550780 |V0780 Mon |064036.7+094723 |E: | 12.50 |( 0.24 Ic)| |V | | | | | |75171 75171| +550783 |V0783 Mon |065210.2+024251 |DSCT | 11.08 | 11.19 | |V | | | | | |75119 75119| +550785 |V0785 Mon |070856.5-001724 |SRA: | 12.5 | 14.4 | |V | | | | | |75172 GSC22| +550786 |V0786 Mon |071925.9-004329 |M | 11.0 | 13.7 | |V | | | | | |75172 GSC | +550787 |V0787 Mon |072000.8-020906 |SRA | 12.5 | 14.7 | |V | | | | | |75172 GSC22| +550789 |V0789 Mon |072513.9-002537 |RS: | 9.34 |( 0.17 Rc)| |V | | | | | |75173 75173| +550790 |V0790 Mon |080130.5-100542 |M: | 12.3 | 15.0 | |p | | | | | |75002 GSC22| +550791 |V0791 Mon |060214.9-100100 |IA | 10.32 | 10.59 | |V | | | | | |76027 DM | +550795 |V0795 Mon |061347.3-101952 |M | 12.4 |< 15.2 | |V | | | | | |76012 GSC | +550796 |V0796 Mon |061700.3-083608 |SR: | 12.3 | 14.0 | |V | | | | | |76012 USNO | +550799 |V0799 Mon |062552.0-005240 |LB | 11.3 | 12.0 | |V | | | | | |76012 GSC | +550810 |V0810 Mon |064104.4+095150 |IN | 12.3 |( 0.11 Ic)| |V | | | | | |76062 76063| +550823 |V0823 Mon |072218.1-095602 |SR: | 12.3 | 13.5 | |V | | | | | |76012 USNO | +550825 |V0825 Mon |072433.3-005640 |SR: | 12.4 | 13.1 | |V | | | | | |76012 GSC | +550826 |V0826 Mon |072828.2-004504 |M | 12.3 |< 15.3 | |V | | | | | |76012 USNO | +550827 |V0827 Mon |072935.5-091533 |ACV | 7.96 | 8.00 | |V | | | | | |76075 DM | +550828 |V0828 Mon |073138.2-110138 |LB | 10.9 | 12.2 | |V | | | | | |76012 GSC | +550831 |V0831 Mon |075743.3-004106 |M | 11.2 | 14.0 | |V | | | | | |76012 GSC | +550833 |V0833 Mon |080430.7-030748 |M: | 11.8 | 14.8 | |V | | | | | |76012 USNO | +550836 |V0836 Mon |080758.3-102931 |SR: | 10.68 |( 0.7 )| |V | | | | | |76012 GSC | +550837 |V0837 Mon |080822.4-010518 |SR: | 10.72 |( 0.7 )| |V | | | | | |76012 GSC | +550838 |V0838 Mon |070404.8-035051 |NC | 6.7 | 16.05 | |V | | | | | |77061 GSC | +550839 |V0839 Mon |064640.7+082147 |GDOR: | 7.5 |( 0.01 b )| |V | | | | | |77056 DM | +550841 |V0841 Mon |064815.7+080241 |M: | 11.6 |< 13.1 | |V | | | | | |77004 GSC | +550842 |V0842 Mon |064843.5+050201 |EB | 9.74 | 10.08 | |V | | | | | |77058 GSC | +550843 |V0843 Mon |065810.9+101358 |EW | 12.4 |( 0.52 )| |V | | | | | |77059 UCAC2| +550844 |V0844 Mon |075419.3-004009 |SRB | 11.53 |( 0.20 )| |V | | | | | |77067 GSC | +550848 |V0848 Mon |063111.1+055237 |BY | 8.94 |( 0.02 )| |V | | | 19.98 : | |K2IV-V |78018 DM | +550850 |V0850 Mon |063931.4+031911 |BY | 9.37 |( 0.03 )| |V | | | 9.99 : | |K3V |78018 DM | +550851 |V0851 Mon *|065140.1+002707 |ACV: | 10.85 | 10.90 | |V | | | 0.332 | |A0V(m) |78093 78093| +550856 |V0856 Mon |065151.1+002539 |ACV: | 11.62 | 11.66 | |V | | | 0.741 : | | |78093 78093| +550860 |V0860 Mon *|065818.7-043821 |EA | 9.22 | 9.44 | 9.38 |V |53497.480 | | 2.516367 |12 |B8 |78130 DM | +550862 |V0862 Mon |070410.4+051247 |BY | 9.08 |( 0.02 )| |V | | | 10.88 | |G5V |78018 DM | +550863 |V0863 Mon *|070525.1-090034 |EB | 9.02 | 9.16 | 9.13 |V |52785.566 | | 3.5230 | |B0.5III |78130 DM | +550864 |V0864 Mon |071508.4-044421 |EW | 9.9 | 10.6 | |V |53511.487 | | 0.358427 | |G0 |78130 GSC | +550865 |V0865 Mon |072243.2-084054 |SRB | 11.7 | 12.6 | |V | | | 54. | | |78095 GSC | +550866 |V0866 Mon |073417.8-084521 |EA | 12.0 | 13.7 | |V |51873.813 | | 1.862168 |15 | |78095 GSC | +550867 |V0867 Mon |073426.2-065348 |BY | 8.16 |( 0.02 )| |V | | | 4.76 : | |K2V |78018 DM | +550868 |V0868 Mon |073904.8-023906 |EB | 8.9 | 9.5 | |V |52681.731 | | 0.63772 | | |78094 DM | +550869 |V0869 Mon |073959.3-033551 |BY | 7.18 |( 0.02 )| |V | | | | |K2Ve |78018 DM | +550870 |V0870 Mon |074800.8-023541 |M | 8.4 |< 12. | |V |51491 | | 293. | | |78103 GSC | +550871 |V0871 Mon |080617.3-042647 |EA | 8.84 | 9.18 | |V |51927.725 | | 4.33593 | |A3/5m |78322 DM | +550872 |V0872 Mon |062309.1-100531 |M | 12.5 |< 15.0 | |V |53837. | | 266. | |M7: |79100 79178| +550873 |V0873 Mon |062610.1+020558 |EA | 10.58 | 10.93 | 10.93 |V |52653.650 | | 3.19669 |05 |G0 |79009 79050| +550875 |V0875 Mon *|063300.1+093230 |LB | 10.8 | 11.1 | |* | | | | |M7 |79100 GSC | +550876 |V0876 Mon |063824.6-013903 |SRB | 9.9 | 10.8 | |V | | | 131. : | |M4ep |79100 79022| +550877 |V0877 Mon |064301.5-094348 |EA | 8.22 | 8.98 | 8.85 |V |52559.790 | | 2.94626 |06 |A1mA7-F2 |79011 DM | +550878 |V0878 Mon *|065448.9-011657 |EB | 8.11 | 8.18 | 8.14 |V |48574.663 | | 0.697461 | |K0 |79004 DM | +550879 |V0879 Mon *|065534.0-101312 |EA | 8.28 | 8.72 | 8.7 : |V |52896.884 | | 2.18691 |11 |A0V |79011 DM | +550880 |V0880 Mon *|065537.7-092923 |EW | 8.21 | 8.41 | 8.41 |V |52232.752 | | 0.372457 | |G0 |79006 DM | +550881 |V0881 Mon |065733.6+050642 |EA | 11.48 | 12.25 | 12.1 |* |53045.632 | | 1.69841 |10 |A |79003 79053| +550882 |V0882 Mon |065739.5-052715 |EA | 9.08 | 9.7 : | 9.65 : |V |52739.532 | | 2.85371 |08 |B9V |79011 DM | +550883 |V0883 Mon |065811.9-050429 |EA | 8.71 | 8.86 | 8.77 |V |48701.550 | | 50.363 |02 : |F0 |79018 DM | +550884 |V0884 Mon |070511.8-110602 |EA | 9.13 | 9.65 : | 9.14 |V |52776.580 | | 123.21 |03 |B5Vn |79009 DM | +550885 |V0885 Mon |071402.9+000325 |SRB | 9.6 | 10.1 | |V | | | 54. | |M2 |79100 DM | +550886 |V0886 Mon |071917.2-105431 |LB | 8.5 | 9.1 | |V | | | | |M0 |79100 DM | +550887 |V0887 Mon |072129.4-102020 |EB | 9.36 | 9.48 | 9.44 |V |52964.797 | | 3.6433 | | |79064 DM | +550888 |V0888 Mon |073348.4-094053 |EA | 8.49 | 8.87 | 8.83 |V |51873.806 | | 2.54961 |16 |A5 |79011 DM | +550889 |V0889 Mon |073423.1-012723 |LB | 10.7 | 11.2 | |V | | | | |M4 |79100 79112| +550891 |V0891 Mon |074118.6-013230 |EA | 8.12 | 8.33 | 8.30 : |V |48196.000 | | 31.4204 |02 : |B9.5/A0IV |79006 DM | +550892 |V0892 Mon |074155.7-011635 |SRB | 11.6 | 12.3 | |V | | | 59. | | |79100 79059| +550893 |V0893 Mon |074527.2-051312 |SRB | 11.8 | 13.4 | |V | | | 226. | | |79064 79133| +550894 |V0894 Mon |074651.5-075226 |LB | 10.0 | 10.9 | |V | | | | |M5 |79100 79112| +550895 |V0895 Mon |075021.4-011432 |RRAB | 11.9 | 13.1 | |V |52940.822 | | 0.5131596 |15 |F4 |79100 79112| +550897 |V0897 Mon |080007.8-085726 |SRB | 9.3 | 10.6 | |V | | | 115.5 | |M |79100 79192| +550900 |V0900 Mon *|065722.2-082318 |FU | 9.8 |< 11.5 | 12.65 |J | | | | | |80424 2MASS| NL80_2 +550901 |V0901 Mon *|062725.3+011132 |CEP(B) | 10.1 | 10.4 | |V |53753.6841 | | 2.26571 | |G0 |80249 DM | NL80_2 +550903 |V0903 Mon *|062953.8+060319 |EA | 12.28 | 12.83 | 12.80 |V |51498.710 | | 10.0209 |09 | |80042 GSC | NL80_2 +550904 |V0904 Mon *|063215.3+085421 |EA | 12.40 | 12.82 | 12.68 |V |52364.390 | | 4.2925 |04 |B8 |80252 GSC | NL80_2 +550905 |V0905 Mon |063326.7-000430 |L: | 10.48 | 10.76 | |V | | | | |G0e |80077 80077| NL80_2 +550906 |V0906 Mon *|063719.7+072624 |EA | 10.62 | 11.15 : | 10.82 |V |51604.760 | | 3.06895 |05 |A2 |80042 DM | NL80_2 +550907 |V0907 Mon *|063926.9+071345 |EA | 10.31 | 10.59 | 10.57 |V |51549.733 | | 1.41626 |09 |F8 |80042 GSC | NL80_2 +550908 |V0908 Mon *|064005.7+071933 |EA | 11.27 | 11.74 | 11.54 |V |52521.868 | | 2.88420 |11 |A |80002 GSC | NL80_2 +550909 |V0909 Mon *|064006.8+044551 |EA | 10.35 | 10.67 | 10.63 |V |51566.624 | | 1.85270 |10 |A0V |80042 DM | NL80_2 +550910 |V0910 Mon *|064013.7+040940 |EA | 10.89 | 11.41 | 11.39 |V |52714.509 | | 2.95379 |06 |F8 |80042 GSC | NL80_2 +550911 |V0911 Mon |064037.6+114339 |DCEP | 12.1 | 12.8 | |V |52712.5029 | | 4.978400 |25 | |80002 GSC | NL80_2 +550912 |V0912 Mon *|064059.3+093552 |IN | 9.17 | 9.66 | |H | | | | | |80257 80257| NL80_2 +550914 |V0914 Mon |064553.3+100341 |DCEPS | 10.6 | 11.0 | |V |52394.66 | | 2.680900 |42 | |80002 GSC | NL80_2 +550915 |V0915 Mon *|065002.6+062825 |EA | 10.85 | 11.17 | 11.15 |V |51465.840 | | 2.13583 |12 |B |80042 GSC | NL80_2 +550916 |V0916 Mon |065124.3+054734 |M: | 4.04 | 5.16 | |K | | | 536. : | | |80166 2MASS| NL80_2 +550917 |V0917 Mon *|065533.7+074444 |EA | 9.63 | 9.97 | 9.93 |V |52761.545 | | 4.00951 |04 |A0 |80042 DM | NL80_2 +550918 |V0918 Mon |065540.3-022016 |M: | 2.90 | 3.90 | |K | | | 595. : | |C |80166 2MASS| NL80_2 +550919 |V0919 Mon *|065554.5+080123 |EA | 11.56 | 12.63 | 11.7 |V |52995.698 | | 1.62398 |10 | |80042 GSC | NL80_2 +550920 |V0920 Mon *|065757.8+021732 |EA | 7.47 | 7.54 | 7.48 |V |48356.79 | | 6.7664 |05 |A2:V:m+G8IIIe |80011 DM | NL80_2 +550921 |V0921 Mon |065808.1-071746 |DSCT | 11.13 | 11.15 | |V | | | 0.0337062 | | |80265 80265| NL80_2 +550922 |V0922 Mon *|065829.9+084117 |EA | 10.87 | 11.50 | 11.38 |V |52714.524 | | 2.087092 | |A5+A2 |80042 GSC | NL80_2 +550923 |V0923 Mon |065905.7+033756 |M | 4.92 | 5.99 | |K | | | 584. | | |80166 2MASS| NL80_2 +550924 |V0924 Mon |070100.4+100346 |RRAB: | 11.9 | 12.3 | |V |52306.468 | | 0.71240 |43 | |80266 GSC | NL80_2 +550925 |V0925 Mon *|070105.1-035816 |EA | 8.30 | 8.55 | 8.52 |V |52625.800 | | 5.95575 |10 |B9 |80042 DM | NL80_2 +550926 |V0926 Mon |070206.7-034517 |SRC | 6.50 | 6.70 | |V | | | 39. : | |M1Ib+A0 |80268 DM | NL80_2 +550927 |V0927 Mon *|070223.7+041422 |EW | 10.90 | 11.17 | 11.16 |V |51522.719 | | 0.361883 | | |80042 GSC | NL80_2 +550928 |V0928 Mon |070411.0+000352 |RS: | 12.5 | 13.0 | |V | | | 9.574 | | |80002 GSC | NL80_2 +550930 |V0930 Mon *|070720.7-093500 |EB | 8.32 | 8.41 | 8.40 |V |51889.743 | | 2.35510 | |B3II/III |80015 GSC | NL80_2 +550931 |V0931 Mon *|070807.7-103617 |EA | 10.06 | 10.18 | |V |53780.725 | | 1.90150 |07 |B9 |80015 GSC | NL80_2 +550932 |V0932 Mon |071035.0-011126 |M | 5.31 | 6.96 | |K | | | 594. | |C |80166 2MASS| NL80_2 +550933 |V0933 Mon |071207.7-101639 |SR | 5.77 | 6.07 | |K | | | 437. | | |80166 2MASS| NL80_2 +550935 |V0935 Mon *|071710.2-013214 |EA | 9.7 | 10.2 | 9.9 |V |54430.79 | | 5.99381 | |A0 |80001 GSC | NL80_2 +550937 |V0937 Mon *|074422.0-064149 |EA+DSCT | 8.76 | 8.92 | 8.84 |V |51950.6576 | | 3.208647 |09 |F0V |80281 DM | NL80_2 +550958 |V0958 Mon |062206.4+042817 |EW | 11.92 | 12.8 | |V |51525.891 | | 0.298305 | | |80042 GSC | NL80_2 +559002 |bet Mon |062849.1-070159 |BE | 3.77 | 3.84 | |Hp| | | | | |75174 BD | +560001 |R Mus |124205.0-692427 |DCEP | 5.93 | 6.73 | |V |26496.288 | | 7.510211 |30 |F7Ib-G2 |00003 09423| +560002 |S Mus *|121247.0-700906 |DCEP | 5.89 | 6.49 | |V |40299.42 | | 9.66007 |49 |F6Ib-G0 |05366 03470| +560003 |T Mus *|132113.9-742631 |SRB | 9.4 | 12.0 | |p | | | 93. | |C(Np) |00003 08953| +560004 |U Mus |132459.3-643951 |M | 10.5 |< 14.0 | |p |13323. | | 356. | |M6e |00418 03471| +560006 |W Mus |125134.8-652820 |M | 12.4 |< 15.0 | |V |54127. | | 120. | | |00001 GSC22| +560008 |Y Mus |130548.2-653047 |RCB | 10.5 | 12.1 | |p | | | | |Fp |00017 08129| +560010 |RR Mus |113925.1-723337 |SRB | 11.3 | 12.4 | |p | | | 75. : | |C(Na) |00003 CoD | +560011 |RS Mus |122319.2-753013 |SR | 12.4 |< 13.2 | |p | | | | |C(Nb) |00003 04001| +560012 |RT Mus |114432.9-671819 |DCEP | 8.57 | 9.32 | |V |43290.39 | | 3.086131 |27 |F8 |00001 00021| +560025 |SY Mus *|113210.0-652512 |ZAND | 10.2 | 12.7 | 11.2 |V |36460. | | 621.8 | |M2+e |08131 08131| +560027 |TT Mus |112128.0-652826 |EA/SD: | 11.9 | 12.7 | |p |23995.242 | | 3.53479 |17 | |00040 00040| +560028 |TU Mus *|113110.9-654432 |EB/KE | 8.17 | 8.75 | 8.65 |V |41699.8270 | | 1.3872833 | |O8.5Vn+O8 |08132 05625| +560029 |TV Mus *|113957.8-644859 |EW/KW | 11.0 | 11.3 | 11.3 |p |24161.9711 | | 0.4457010 | |F2 |00399 00399| +560030 |TW Mus *|114241.4-662814 |EW/KW | 12.0 | 12.4 | 12.4 |p |24260.344 | | 0.4179484 | | |00039 00040| +560031 |TX Mus |114707.5-652424 |RRAB | 12.4 | 12.8 | |p |24260.264 | | 0.473226 |20 | |00040 00040| +560032 |TY Mus |114956.4-654713 |M | 11.9 |< 14.5 | |p |23950. | | 173. | | |00040 00040| +560033 |TZ Mus *|115056.5-650826 |DCEP | 11.16 | 12.12 | |V |24259.37 | | 4.944885 |27 | |00001 00040| +560034 |UU Mus |115217.7-652415 |DCEP | 9.13 | 10.28 | |V |36208.270 | | 11.63641 |37 |F7/G0p |00001 00544| +560035 |UV Mus |115407.4-661219 |EA/SD | 10.2 | 11.4 | |p |23943.338 | | 2.003273 |15 |A2 |00039 08953| +560036 |UW Mus *|120633.7-650415 |EA/SD | 11.7 | 12.8 | 11.9 |p |23977.27 | | 6.2886 |14 | |00040 00040| +560038 |UY Mus *|123046.8-660153 |EB/SD | 11.7 | 13.0 | 12.0 |p |24293.41 | | 0.56244 | | |00040 00040| +560039 |UZ Mus |123206.8-660751 |EA/SD | 12.0 | 13.7 | |p |23945.32 | | 2.4620 |14 | |00040 00040| +560042 |VX Mus |120121.1-655244 |EA/SD: | 11.0 | 11.7 | |p |24775.073 | | 3.11175 |18 | |00045 00045| +560050 |XY Mus |132733.0-650404 |SRB | 12.0 | 13.3 | |p |26030. | | 193. | |M5e |00047 00022| +560051 |XZ Mus *|133029.8-704628 |SR | 11.2 | 14.0 | |p |23960. | | 111. | | |00047 00022| +560059 |AE Mus |133437.9-702531 |SR | 12.0 | 14.4 | |p |26030. | | 169. | | |00047 00022| +560063 |AI Mus |133903.7-723710 |M | 12.0 |< 16.5 | |p |25340. | | 444. | | |00047 00022| +560077 |AX Mus *|134920.3-683414 |M | 12.5 | 16.0 | |p |25330. | | 99. | | |00047 00022| +560078 |AY Mus *|113140.3-651616 |EA/DM | 10.51 | 10.8 | 10.8 |B |26473.483 | | 3.205558 |08 *|B9 |00049 00021| +560081 |BC Mus |114735.0-644328 |EA/SD | 12.2 | 14.5 : | |p |24951.363 | | 3.511171 |12 *| |00054 00054| +560089 |BL Mus |130915.9-651718 |EA/SD: | 11.1 | 11.8 | |p |28336.26 | | 5.0126 | | |00016 09423| +560092 |BO Mus |123454.5-674525 |LB | 5.85 | 6.56 | |V | | | | |M6II-III |00422 03470| +560093 |BP Mus |125037.7-714619 |EA/SD | 9.6 |< 13. | |p |43928.138 | | 3.32058 |13 : | |08604 03472| +560094 |BQ Mus |112932.9-694942 |M | 11. |< 15.5 | |p |27890. | | 320. | | |00090 02385| +560095 |BR Mus *|120451.8-725212 |EW/KE | 10.64 | 11.28 | 11.25 |V |44360.60296 | | 0.798196848 | | |09425 CPD | +560096 |BS Mus *|112143.8-660525 |EB/KE | 10.9 | 11.6 | 11.5 |p |25354.284 | | 0.7682424 | | |04160 04160| +560109 |CH Mus |122045.8-753253 |M | 12.5 | 18. | |p | | | | |Me |04001 04001| +560110 |CI Mus |122208.6-740627 |RR | 12.4 | 13.8 | |p | | | 0.600732 | | |04159 04001| +560118 |CR Mus |125838.1-741711 |M | 9.5 |< 15. | |V |41858. | | 206. | |Me |00001 08134| +560119 |CS Mus *|130259.7-741201 |M | 12.5 |< 16. | |p |36720. | | | | |08727 04001| +560124 |CX Mus |114741.9-685910 |EA/D | 8.7 | 9.3 | |p |28687.275 | | 5.90322 | |B5III |05130 08953| +560126 |CZ Mus |115949.5-703109 |EA | 12.5 | 13.5 | |p |38556.22 | | | | |03776 03776| +560137 |DO Mus |114539.8-681616 |EA/SD: | 11.8 | 12.5 | |p |28656.500 | | 3.45449 | | |05449 05449| +560145 |DW Mus *|130749.4-685330 |CEP: | 12.2 | 14.2 : | |p |38156.603 | | 1.002282 |35 | |03934 03934| +560148 |DZ Mus *|115953.5-695305 |EA/D | 8.3 | 8.9 | |p |18093.728 | | 3.247619 | |B8/9IV-V |07002 CPD | +560150 |EF Mus |125417.9-700212 |LB: | 8.0 | 8.8 | |p | | | | |K1II/III |05835 09423| +560151 |EG Mus |124212.6-685048 |SR | 11.5 | 14.18 | |B |40815. | | 140. : | | |06589 06589| +560156 |EM Mus |123555.5-725300 |RRAB | 11.9 | 12.8 | |p |38536.202 | | 0.4672966 |10 | |06525 06525| +560159 |EP Mus *|124314.4-690323 |CWA: | 11.70 | 12.7 | 11.7 : |V |44024.45 | | 21.3395 |34 | |06525 03776| +560163 |ET Mus *|125729.5-745353 |RRC | 12.1 | 12.9 | |p |38536.277 | | 0.2296741 |50 | |06525 04001| +560169 |EZ Mus *|132846.8-693738 |ACV | 6.19 |( 0.09 )| |V |43172.57 | | 4.3127 |50 |B8Vp(Si) |08806 CPD | +560171 |FG Mus |124035.8-700847 |M | 12.5 | 15.9 | |V |38472. | | 155.3 |50 | |08509 03770| +560172 |FH Mus *|123955.9-663040 |ELL: | 6.26 |( 0.03 )|( 0.03 )|V | | | 0.58 : | |B8V |08215 CPD | +560184 |FU Mus |130316.6-675325 |M | 12.0 |< 16.1 | |V |38202. | | 199.5 | | |08509 08509| +560186 |FW Mus |131129.3-683239 |M | 11.4 | 16.0 | |V |40008. | | 317.7 |35 | |08509 08509| +560198 |GP Mus *|125344.0-655359 |CWA | 12.0 | 12.7 | |V |41785.643 | | 26.694 |50 | |08752 08752| +560199 |GQ Mus |115202.4-671221 |NB | 7.2 |< 15. | |V | | | | | |67430 67431| +560201 |GS Mus |120549.9-693423 |ACYG | 7.34 | 7.55 | |V | | | | | |68313 CPD | +560202 |GT Mus |113929.6-652352 |E:/RS | 5.08 | 5.21 | |V | | | | | |69011 69201| +560248 |KO Mus |113028.6-743631 |SRB: | 8.52 | 8.85 | |Hp| | | | | |HIP HIP | +560249 |KP Mus |113150.7-680329 |BE | 8.55 | 8.68 | |Hp| | | | | |HIP HIP | +560250 |KQ Mus |113147.9-735410 |LPB | 6.92 | 6.98 | |Hp| | | | | |HIP HIP | +560251 |KR Mus |113325.4-701141 |E | 6.68 | 6.87 | |Hp| | | | | |HIP HIP | +560252 |KS Mus |115252.4-695303 |LB: | 8.07 | 8.17 | |Hp| | | | | |HIP HIP | +560253 |KT Mus |120237.4-705133 |LC: | 7.76 | 8.10 | |Hp| | | | | |HIP HIP | +560254 |KU Mus *|121408.1-683756 |EB: | 9.06 | 9.26 | |Hp| | | | | |HIP HIP | +560255 |KV Mus |121751.6-691310 |BE: | 8.46 | 8.61 | |Hp| | | | | |HIP HIP | +560256 |KW Mus |122828.0-674837 |LB: | 9.18 | 9.30 | |Hp| | | | | |HIP HIP | +560258 |KY Mus |123852.4-671135 |ACYG: | 6.24 | 6.30 | |Hp| | | | | |HIP HIP | +560259 |KZ Mus |123919.2-713718 |BCEP | 9.02 | 9.10 | |Hp| | | | | |HIP HIP | +560260 |LL Mus |124050.9-674424 |EA | 8.93 | 9.34 | |Hp| | | | | |HIP HIP | +560261 |LM Mus |124525.9-714241 |SRB | 6.99 | 7.19 | |Hp| | | | | |HIP HIP | +560262 |LN Mus |124628.7-645504 |EB | 9.19 | 9.46 | |Hp| | | | | |HIP HIP | +560263 |LO Mus |124719.0-661415 |BY: | 8.61 | 8.72 | |Hp| | | | | |HIP HIP | +560264 |LP Mus |124931.3-663516 |LB: | 8.45 | 8.56 | |Hp| | | | | |HIP HIP | +560265 |LQ Mus |125208.2-685401 |EA | 9.08 | 9.78 | |Hp| | | | | |HIP HIP | +560266 |LR Mus |125626.5-742933 |LB: | 8.13 | 8.25 | |Hp| | | | | |HIP HIP | +560267 |LS Mus |130305.3-712833 |BE | 5.90 | 6.01 | |Hp| | | | | |HIP HIP | +560268 |LT Mus |132413.6-671855 |EB: | 7.80 | 7.92 | |Hp| | | | | |HIP HIP | +560269 |LU Mus |132807.3-661647 |BE | 9.17 | 9.28 | |Hp| | | | | |HIP HIP | +560270 |LV Mus |132954.6-653007 |BE | 7.65 | 7.78 | |Hp| | | | | |HIP HIP | +560271 |LW Mus |133845.0-701112 |DSCT | 9.22 | 9.36 | |Hp| | | | | |HIP HIP | +560272 |LX Mus |134011.5-740445 |EA | 8.85 | 9.03 | |Hp| | | | | |HIP HIP | +560273 |LY Mus |134113.6-715206 |LB | 6.55 | 6.97 | |Hp| | | | | |HIP HIP | +560274 |LZ Mus |115609.0-653421 |NA | 9.45 |< 18. | |V | | | | | |75175 75176| +560277 |MO Mus |122931.1-665138 |ACYG | 7.37 | 7.42 | |Hp| | | | | |75030 CPD | +560278 |MP Mus |132207.5-693812 |IT | 10.30 | 10.42 | |V | | | | | |75086 CPD | +560279 |MQ Mus |114119.5-723039 |M | 11.0 |< 14.4 | |V |52650 | | 400. | |Me |78090 USNO | +560280 |MR Mus *|114137.8-675452 |EA | 8.41 | 8.53 | 8.53 |V |48009.675 | | 3.115733 | |A2V+F6V |78011 DM | +560281 |MS Mus |114919.9-660039 |DCEP | 9.89 | 10.33 | |V |52056.529 | | 1.39143 | |G0 |78130 DM | +560282 |MT Mus |130801.9-645756 |SRA | 11.2 | 13.1 | |V |53068 | | 189. | |M7:e |78130 GSC | +560283 |MU Mus |112123.3-723351 |M | 10.2 | 14.6 | |V |53743. | | 180. | |Me |79064 79076| +560284 |MV Mus |112300.1-724811 |M | 11.5 | 14.5 | |V |53832. | | 280. | |Ce |79064 USNO | +560285 |MW Mus |112332.0-713612 |M | 11.2 : |< 13.9 | |V |52976. | | 323. | |Me |79072 GSC | +560286 |MX Mus |112821.4-702406 |M | 11.7 |< 14.7 | |V |53564. | | 268. | | |79072 USNO | +560288 |MZ Mus |113057.0-693444 |SRA | 11.8 | 13.3 | |V |53476. | | 196. | | |79072 GSC | +560289 |NN Mus |113236.8-700752 |SRB | 11.3 | 12.4 | |V | | | 100. | | |79100 79076| +560290 |NO Mus |113738.9-721110 |M | 11.2 |< 14.0 | |V |53743. | | 334. | | |79072 79089| +560291 |NP Mus |114047.6-700328 |M | 12.3 |< 15.0 | |V |53414. | | 246. | | |79100 USNO | +560293 |NR Mus |114233.4-675209 |M | 12.0 |< 14.2 | |V |53115. | | 290. | |M8 |79072 USNO | +560294 |NS Mus |114705.9-751235 |SRB | 12.4 | 14.1 | |V | | | 227. | | |79100 79063| +560295 |NT Mus *|114708.6-701352 |M | 11.6 |< 16.6 | |V |53836. | | 353. | | |79100 2MASS| +560296 |NU Mus |114819.1-683851 |SRB | 11.3 | 12.5 | |V | | | 68. | |M6 |79100 79089| +560297 |NV Mus |114824.1-675347 |M | 11.0 |< 14.2 | |V |53541. | | 367. | |M7: |79072 GSC | +560298 |NW Mus |115247.0-751226 |SRB | 12.0 | 13.4 | |V | | | 93. | | |79100 79063| +560299 |NX Mus |115324.0-722443 |M | 12.5 |< 14.5 | |V |53875. | | 406. | | |79100 GSC | +560300 |NY Mus |115957.9-741239 |SRB | 12.2 | 13.3 | |V | | | 70.7 | | |79100 GSC | +560301 |NZ Mus |120004.5-751350 |SRB | 11.4 | 12.3 | |V | | | 68. | | |79100 79063| +560302 |OO Mus |120337.9-742835 |SRB | 11.5 | 13.9 | |V | | | 236. : | | |79100 79063| +560303 |OP Mus |120348.5-735309 |SRB | 9.4 | 10.5 | |V | | | 78. | |M4/M5III |79064 79063| +560304 |OQ Mus |120352.0-693055 |SRA | 9.7 | 11.4 | |V |52776. | | 350. | |C: |79100 79089| +560305 |OR Mus |120754.0-675301 |EA: | 8.84 | 9.18 | 8.97 |V |52432.456 | | 1.73106 |16 : |B5III/V |79011 DM | +560306 |OS Mus |120846.3-654529 |LB | 9.7 | 10.7 | |V | | | | |M4 |79064 79071| +560309 |OV Mus |122244.0-702827 |SRB | 11.0 | 12.2 | |V | | | 61. | | |79100 79089| +560313 |OZ Mus |123702.4-723838 |M | 11.8 |< 14.6 | |V |53607. | | 306. | |Me |79093 79093| +560314 |PP Mus |123713.3-671622 |SRB | 12.2 | 13.3 | |V | | | 115. | |M5 |79100 79089| +560316 |PR Mus |124457.7-670422 |SRB | 10.2 | 12.1 | |V | | | 99. | | |79100 79078| +560317 |PS Mus |125510.2-685424 |LC | 6.6 | 7.0 | |V | | | | |M2Iab |79100 DM | +560320 |PV Mus |130415.3-751036 |EA | 10.49 | 11.05 | 11.03 : |V |52093.488 | | 2.68354 |07 | |79011 79063| +560322 |PX Mus *|131157.5-680335 |RVB: | 11.6 |< 14.2 | |V |53170. | | 59. | |M |79100 79106| +560324 |PZ Mus |132057.9-661341 |M | 10.7 |< 14.5 | |V |53512. | | 445. | |M7 |79100 GSC | +560325 |QQ Mus |132532.3-730414 |M | 12.4 |< 14.7 | |V |53356. | | 284. | | |79190 79190| +560326 |QR Mus *|132543.7-751704 |M | 12.4 |< 14.0 | |V |53864. | | 277. | | |79190 79190| +560327 |QS Mus |132617.4-670913 |M | 12.4 |< 16.0 | |V |53465. | | 286. | | |79190 79190| +560329 |QU Mus *|132719.4-743108 |M | 12.4 |< 14.5 | |V |53870. | | 233. | | |79064 USNO | +560330 |QV Mus |132851.5-753719 |SR | 12.0 | 14.0 | |V | | | 122. | | |79064 79089| +560331 |QW Mus |133245.4-745947 |M | 10.6 |< 14.2 | |V |53764. | | 282. | | |79100 79076| +560332 |QX Mus |134719.4-753441 |M | 12.1 |< 15.0 | |V |53792. | | 238. | | |79064 GSC | +560334 |QZ Mus |113357.9-731319 |M | 9.6 | 14.3 | |V |54857. | | 535. | |Ce |80002 GSC | NL80_2 +560335 |V0335 Mus |114710.6-701258 |LB | 10.5 | 11.4 | |V | | | | | |80001 GSC | NL80_2 +560336 |V0336 Mus |120315.3-661450 |SRA | 12.0 | 13.7 | |V |54876. | | 398. | | |80001 GSC | NL80_2 +560337 |V0337 Mus |122544.6-672317 |M | 12.4 |< 14.2 | |V |54935. | | 338. | | |80239 80239| NL80_2 +560338 |V0338 Mus *|125523.2-732212 |RVA: | 9.70 | 10.20 | 10.1 |V |53073. | | 206.7 | | |80001 GSC | NL80_2 +560339 |V0339 Mus |125715.8-690151 |M | 2.76 | 4.31 | |K | | | 586. | |C |80166 2MASS| NL80_2 +560340 |V0340 Mus *|130632.4-650450 |EA | 8.02 | 8.10 | 8.06 |V |53521.605 | | 3.4273 |16 |O9IV |80015 DM | NL80_2 +560350 |V0350 Mus |133225.3-743636 |RRC | 8.17 | 8.35 | |V |52704.788 | | 0.369054 |50 |F2IV |80383 80383| NL80_2 +560352 |V0352 Mus |134847.7-670005 |M | 12.5 |< 16.0 | |V |53831. | | 290. | |M8 |80297 80297| NL80_2 +560353 |V0353 Mus |134927.4-721141 |M | 12.5 |< 15.0 | |V |53562. | | 353. | | |80297 80297| NL80_2 +569001 |alf Mus *|123711.0-690808 |BCEP | 2.68 | 2.73 | |V | | | 0.0903 | |B2IV-V |08395 CPD | +569003 |gam Mus |123228.0-720759 |LPB | 3.78 | 3.80 | |Hp| | | | | |75030 CPD | +569005 |eps Mus |121734.3-675739 |SRB: | 3.99 | 4.31 | |V | | | 40. | |M5III |06590 CPD | +569007 |eta Mus *|131514.9-675341 |E | 4.76 | 4.81 | |V | | | | |B8V |08513 CPD | +569008 |tet Mus *|130807.2-651822 |E+WR | 5.50 | 5.52 | |V |40661.4 | | 18.341 | |WC6+O9.5I |08513 CPD | +569012 |mu. Mus |114814.5-664854 |LB | 4.6 | 4.8 | |V | | | | |K4III |03712 CPD | +570001 |R Nor *|153557.4-493029 |M | 6.5 | 13.9 | |p |41874. | | 507.50 | |M3e-M6II |00001 00002| +570002 |S Nor *|161851.8-575359 |DCEP | 6.12 | 6.77 | |V |44018.69 | | 9.75411 |47 |F8-G0Ib |00001 03473| +570003 |T Nor *|154403.8-545913 |M | 6.2 | 13.6 | |V |40976. | | 240.7 |41 |M3e-M6e |00001 00002| +570004 |U Nor *|154220.9-551843 |DCEP | 8.63 | 9.83 | |V |44788.5 | | 12.64371 |46 |F6-F8Ib/II-G5 |00001 00546| +570005 |V Nor |161001.7-491412 |SRB | 10.0 | 11.0 | |p |29840. | | 155.9 |50 |M5III |00023 08588| +570006 |W Nor *|161642.5-523614 |SRB | 10.3 | 11.6 | |p | | | 134.7 | |M4/5(III) |00023 08087| +570008 |Y Nor *|163257.3-465619 |CST: | 9.5 | | |p | | | | |B9V | 00021| +570009 |Z Nor *|160457.1-461737 |EA/SD | 9.3 | 10.1 | 9.6 |p |43343.9897 | | 2.556914 |26 *|B3IV |08604 00021| +570010 |RR Nor *|151233.5-551849 |EA/D | 9.4 | 10.5 | 9.9 |p |44433.5976 | | 3.0275420 |08 |B9V |00023 08953| +570011 |RS Nor *|160510.0-535510 |DCEP | 9.62 | 10.39 | |V |35308.21 | | 6.19814 |29 | |00004 08953| +570012 |RT Nor *|162418.7-592039 |RCB | 10.6 | 16.3 | |p | | | | |C(R) |00424 06286| +570013 |RU Nor |161522.8-444718 |M | 11.3 |< 13.5 | |p |29810. | | 393.3 | |M7e |00023 00021| +570014 |RV Nor *|160410.2-560448 |CEP | 12.2 | 13.8 | |V |44119.43 | | 32.333 |28 |G8-K3(R0-3) |00001 00427| +570016 |RX Nor |161226.0-561255 |CST: | 12. | 16. | |p | | | | | |00424 GSC22| +570018 |RZ Nor |163241.7-531533 |RCB | 10.63 |< 13. | |V | | | | | |08143 08087| +570019 |SS Nor |161321.9-594657 |M | 9.9 |< 14.5 | |V |54345. | | 461. | |Me |00001 GSC | +570021 |SU Nor |154435.3-585324 |EA/SD | 11.9 | 13.1 | |p |25789.393 | | 1.68639 |15 | |00427 00427| +570022 |SV Nor *|154521.9-594928 |EW/KW | 12.0 | 12.6 | 12.6 |p |25598.599 | | 0.376116 | | |00427 00427| +570023 |SW Nor *|154911.3-585940 |EA/DS | 10.5 | 12.0 | |p |30965.87 | | 29.6349 |01 | |00426 08953| +570024 |SX Nor *|155224.4-515541 |EA | 12.1 | 12.2 | |p |25582.349 | | 3.74008 |13 | |00427 00427| +570025 |SY Nor *|155442.8-543359 |DCEP | 8.98 | 9.94 | |V |40737.43 | | 12.6452 |35 | |00001 00427| +570026 |SZ Nor *|155533.0-564333 |EA/KE | 12.3 | 12.6 | 12.6 |p |25600.121 | | 1.47456 |18 | |00427 00427| +570028 |TU Nor *|160034.2-552818 |EB/DM | 12.4 | 12.7 | 12.5 |p |25603.543 | | 1.6712 | | |00427 00427| +570029 |TV Nor *|160409.2-513240 |EA/DM | 8.9 | 9.7 | 9.3 |p |25832.231 | | 8.524406 |02 |Ap(Eu-Cr-Sr) |00253 08953| +570030 |TW Nor *|160455.2-515713 |DCEP | 11.17 | 12.22 | |V |41092.21 | | 10.78618 |50 | |00001 09439| +570031 |TX Nor *|160538.5-551604 |EA/SD | 12.2 | 13.5 | 12.5 |p |25601.900 | | 3.03049 |16 | |00427 00427| +570032 |TY Nor |161412.1-565002 |EA/SD: | 11.6 | 12.2 | |p |25586.795 | | 3.5204 |15 | |00427 00427| +570033 |TZ Nor *|161607.0-574331 |EA/SD: | 12.0 | 12.7 | 12.1 |p |25608.848 | | 4.2273 |13 | |00427 00427| +570034 |UU Nor |162021.5-534453 |EA/SD | 11.6 | 14.3 | |p |25574.154 | | 3.14825 |13 | |00427 00427| +570036 |UW Nor |162712.2-521733 |EA/DS: | 12.0 | 12.7 | |p |26506.222 | | 8.48601 | | |00429 00428| +570038 |UY Nor *|162734.2-530333 |EA/SD | 11.2 | 12.3 | |p |25601.305 | | 3.13580 |11 | |00427 00427| +570039 |UZ Nor *|162811.6-531922 |EA/SD | 11.2 | 13.4 | |p |25576.380 | | 3.19609 |13 | |00016 00427| +570040 |VV Nor *|163025.4-521926 |EA | 12.1 | 12.3 | |p |25594.888 | | 1.10175 |23 | |00427 00427| +570041 |VW Nor |163134.0-583414 |RRAB | 12.3 | 13.4 | |p |25587.945 | | 0.618025 |15 | |00427 00427| +570042 |VX Nor *|163124.2-543256 |EA | 11.2 | 11.5 |( 0.03 )|p |25589.858 | | 2.08256 |16 | |00427 00427| +570043 |VY Nor |163133.1-535824 |RRAB | 12.1 | 12.8 | |p |25535.249 | | 0.375305 |43 | |00427 00427| +570046 |WX Nor *|154041.8-583217 |EA/SD | 12.5 | 13.4 | 12.8 |p |27746.520 | | 1.271304 |11 : | |00430 00430| +570057 |AC Nor |155129.7-592549 |EA/SD: | 12.4 | 13.4 | |p |25716.580 | | 1.29338 |24 | |00430 00430| +570059 |AE Nor |155048.2-450803 |M | 11.9 | 16.0 | |p |24680. | | 192. | | |00434 06286| +570069 |AP Nor |155607.2-590520 |S: | 11.7 | 12.5 | |p | | | | | |00424 06286| +570071 |AR Nor *|155708.8-600452 |S: | 12.4 | 13.0 | |p | | | | | |00424 | +570072 |AS Nor |155559.6-443826 |M | 11.8 |< 16.0 | |p |25440. | | 396.3 | |M6e |00434 06286| +570105 |CD Nor |161053.7-573251 |M | 12.0 | 16.5 | |p |24650. | | 217. | |M4e |00424 06286| +570106 |CE Nor *|161113.2-600221 |EA/DS | 11.5 | 14.5 | 11.8? |p |25501.050 | | 21.248566 |10 | |00433 00433| +570113 |CM Nor |161250.4-582440 |EA/SD: | 11.9 | 12.8 | |p |25762.264 | | 5.56362 |07 : | |00430 00430| +570141 |DS Nor |161910.9-584820 |SR | 12.4 | 13.5 | |p |25396. | | 70. | | |03474 03474| +570164 |EU Nor |162622.2-582417 |S: | 12.1 | 12.6 | |p | | | | | |00424 06286| +570193 |GK Nor |153450.9-582359 |EA/SD | 11.2 | 12.3 | |p |27933.60 | | 6.53796 |10 *| |00016 06286| +570194 |GL Nor |154412.6-513032 |EA/SD | 10.6 | 12.8 | |p |25824.333 | | 2.20889 |15 | |00433 00433| +570195 |GM Nor *|155158.0-552148 |EA/DM | 10.58 | 11.03 | 11.01 |V |41696.91 | | 1.884580 |13 | |00001 00433| +570203 |GU Nor *|161454.8-532018 |DCEP | 10.08 | 10.73 | |V |44025.74 | | 3.452877 |34 | |00001 00433| +570204 |GV Nor *|161841.1-535942 |EA/SD: | 10.9 | 11.8 | |p |25560.039 | | 2.97183 |11 | |00433 00433| +570209 |HH Nor *|154330.2-515047 |EA/DS | 10.3 | 11.5 | |p |27114.235 | | 8.58313 |10 | |00438 00430| +570210 |HI Nor *|155729.2-563451 |EA/DS | 10.1 | 11.2 | |p |25353.6 | | 73.562 | | |00430 00430| +570213 |HM Nor |160843.0-540123 |EA/SD | 11.8 | 13.7 | |p |25738.756 | | 4.426460 |11 | |00430 00430| +570224 |HX Nor |162728.2-514010 |EA/DS: | 12.3 | 12.9 | |p |25853.33 | | 33.754 |04 | |00435 00435| +570225 |HY Nor |162226.6-522041 |M | 11.5 | 15.5 | |p |42722. | | 236. | | |01000 08087| +570231 |IN Nor |154603.1-515356 |EA/SD: | 10. | 11.5 | |p | | | | | |00085 08953| +570232 |IO Nor |162228.8-483556 |M | 12. |< 15.5 | |p |26935. | | | | |00439 | +570233 |IP Nor |162406.5-491937 |M | 12.5 |< 15.5 | |p | | | | |M1e |02935 00021| +570234 |IQ Nor *|151249.5-544519 |DCEP | 9.47 | 10.11 | |V |37875.77 | | 8.23862 |32 | |00001 08953| +570235 |IR Nor |154852.7-440540 |EA | 9. | 9.5 | |p | | | | | |06561 06561| +570236 |IS Nor *|161020.0-542329 |ISA | 10.7 | 11.0 | |V | | | | |B4 |04183 02834| +570237 |IT Nor *|161709.2-445918 |EB/KE | 9.4 | 10.0 | 9.8 |p |38236.315 | | 0.63579 | |A0III |05399 08953| +570248 |KO Nor |162559.5-565504 |E | 12.0 | 12.5 | |p |36788.345 | | | | |08121 04001| +570269 |LU Nor |163428.5-553707 |E | 11.9 | 12.4 | |p |36832.250 | | 0.47618 : | | |08121 04001| +570270 |LV Nor *|154636.6-505946 |E/DM | 9.7 | 10.0 | 10.50 |p |28004.250 | | 15.7585 | | |05904 CoD | +570278 |MP Nor |161804.8-595742 |SR | 12.0 | 12.5 | |p |36770. | | 90. : | | |08121 04001| +570281 |MS Nor |162013.8-595427 |SR | 11.5 | 12.0 | |p |36788. | | 50. : | | |08121 04001| +570294 |NS Nor *|162754.2-574133 |EA | 10.10 | 10.62 | 8.31 |V |52770.72 | | 3.2235841 | |A0IV |00001 04001| +570313 |OZ Nor |162849.9-444845 |GCAS: | 7.5 | 7.67 | |B | | | | |B2Ve |04456 06871| +570314 |PP Nor |162929.1-464913 |M | 12.5 |< 16. | |p | | | | |Me |02935 06031| +570315 |PQ Nor *|162816.4-571242 | | 7.69 | 7.74 | |V |42180.2 | | 5.58 | |B8/9V |08149 06871| +570316 |PR Nor |154736.0-550041 |M: | 11.5 |< 17. | |p | | | | | |06031 06031| +570318 |PT Nor *|161301.8-542749 |M | 8.0 |( 2.6 )| |I | | | | |M9 |07819 07819| +570322 |PX Nor |162120.9-442345 |E | 12.4 | 12.9 | |p | | | | | |00085 05254| +570326 |QR Nor |161320.8-594730 |M | 12.2 | 14.5 | |V |54969.8 | | 210.2 | | |00001 USNO | +570329 |QU Nor |162942.3-461436 |GCAS | 5.29 | 5.41 | |V | | | | |B1.5Iape |06311 CoD | +570333 |QY Nor |160421.3-534237 |ACV | 6.45 |( 0.014 )| |V | | | 5.2 | |A0p(Si) |08415 CPD | +570334 |QZ Nor *|161120.5-542115 |DCEPS | 8.71 | 9.03 | |V |44361.688 | | 3.786008 |50 |F6I |09463 05742| +570340 |V0340 Nor |161317.4-541406 |DCEP | 8.26 | 8.60 | |V | | | | | |67437 CPD | +570341 |V0341 Nor |161344.4-531908 |NA | 9.4 |< 12.4 | |V | | | | | |67439 | +570343 |V0343 Nor |153857.5-574227 |BY: | 8.14 |( 0.12 )| |V | | | | | |68325 CPD | +570344 |V0344 Nor |154030.6-511256 |M | 10.5 | 16. | |V | | | | | |68326 USNO | +570345 |V0345 Nor |160651.7-520435 |M | 10.2 |< 14.5 | |V |54755 | | 579. | |M4 |00001 2MASS| +570347 |V0347 Nor |161401.1-565928 |M: | 7.06 |( 1.0 )| |J | | | | | |69079 69081| +570348 |V0348 Nor |162656.7-434757 |BCEP: | 7.87 | 7.96 | |V | | | | | |69037 CoD | +570349 |V0349 Nor |161526.4-525515 |BCEP | 8.70 | 8.77 | |V | | | | | |70031 CoD | +570350 |V0350 Nor |160301.5-602011 |* | 9.20 | 9.31 | |V | | | | | |71123 CPD | +570351 |V0351 Nor |154439.8-542305 |LB | 6.97 | 7.19 | |J | | | | | |72036 GSC22| +570353 |V0353 Nor |161431.8-514720 |M | 7.38 |( 2.16 )| |K | | | | | |72036 2MASS| +570354 |V0354 Nor |153859.3-483558 |PVTEL | 11.36 | 11.49 | |V | | | | | |73205 CoD | +570358 |V0358 Nor |152955.8-492024 |LB: | 8.40 | 8.54 | |Hp| | | | | |HIP HIP | +570359 |V0359 Nor |154258.3-580653 |LB | 7.59 | 7.76 | |Hp| | | | | |HIP HIP | +570360 |V0360 Nor |155106.8-550320 |ACYG: | 5.77 | 5.79 | |Hp| | | | | |HIP HIP | +570361 |V0361 Nor |155923.7-584334 |ACYG: | 7.10 | 7.16 | |Hp| | | | | |HIP HIP | +570362 |V0362 Nor |160515.5-562024 |LC: | 7.12 | 7.28 | |Hp| | | | | |HIP HIP | +570363 |V0363 Nor |160519.7-541047 |LB: | 7.89 | 8.02 | |Hp| | | | | |HIP HIP | +570364 |V0364 Nor |160759.8-550750 |BE | 9.24 | 9.32 | |Hp| | | | | |HIP HIP | +570365 |V0365 Nor |160810.8-530444 |LB | 6.89 | 6.99 | |Hp| | | | | |HIP HIP | +570366 |V0366 Nor |160959.1-483428 |ACYG: | 8.52 | 8.62 | |Hp| | | | | |HIP HIP | +570367 |V0367 Nor *|161317.0-534016 |LC: | 5.94 | 6.11 | |Hp| | | | | |HIP HIP | +570368 |V0368 Nor |161643.3-534840 |SRB | 5.43 | 5.54 | |Hp| | | | | |HIP HIP | +570369 |V0369 Nor |161817.5-462659 |LB | 7.12 | 7.44 | |Hp| | | | | |HIP HIP | +570370 |V0370 Nor |161909.7-541703 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +570371 |V0371 Nor |161915.9-553017 |BY: | 9.35 | 9.48 | |Hp| | | | | |HIP HIP | +570372 |V0372 Nor |162623.9-565304 |ACV: | 7.80 | 7.86 | |Hp| | | | | |HIP HIP | +570373 |V0373 Nor |162641.0-594609 |E: | 8.47 | 8.65 | |Hp| | | | | |HIP HIP | +570374 |V0374 Nor *|162649.8-480240 |ELL: | 7.16 | 7.23 | |Hp| | | | | |HIP HIP | +570375 |V0375 Nor |162710.4-474556 |LB: | 9.79 | 9.93 | |Hp| | | | | |HIP HIP | +570376 |V0376 Nor |162754.2-595055 |BE: | 8.57 | 8.74 | |Hp| | | | | |HIP HIP | +570377 |V0377 Nor |162805.3-433940 |LC | 9.07 | 9.33 | |Hp| | | | | |HIP HIP | +570378 |V0378 Nor |162945.2-574523 |CEP: | 6.21 | 6.23 | |Hp| | | | | |HIP HIP | +570379 |V0379 Nor |163024.9-440656 |LB | 7.77 | 7.89 | |Hp| | | | | |HIP HIP | +570380 |V0380 Nor |163159.5-445312 |SRB | 7.58 | 7.68 | |Hp| | | | | |HIP HIP | +570383 |V0383 Nor |153551.7-501721 |SRB | 8.18 | 8.50 | |V | | | 30. | |M3III |78012 DM | +570384 |V0384 Nor *|160518.9-493008 |EA | 10.07 | 10.36 | 10.30 |V |48657.588 | | 3.97413 | |F5 |78011 DM | +570385 |V0385 Nor |162737.8-491042 |ELL: | 11.64 |( 0.04 )| |V | | | 0.974 | | |78190 GSC | +570388 |V0388 Nor |162749.1-490643 |DSCTC | 12.43 |( 0.02 )| |V | | | 0.0867 | | |78190 GSC | +570391 |V0391 Nor |153152.6-591459 |DCEPS | 8.86 | 9.26 | |V |53119.676 | | 4.373092 |40 : |G5 |79209 DM | +570392 |V0392 Nor *|153229.0-525211 |EA | 8.13 | 8.52 | 8.40 |V |52452.533 | | 1.298207 |12 |B9+A0 |79011 DM | +570393 |V0393 Nor |155026.8-464229 |EB | 9.85 : | 10.25 | 10.10 |V |52145.497 | | 1.29838 | |A2/3III/IV |79003 DM | +570394 |V0394 Nor |155814.7-542031 |EB | 8.64 | 8.89 | 8.81 |V |52790.720 | | 3.18423 | |B0/0.5Ia/Iab |79011 DM | +570395 |V0395 Nor |160016.8-450737 |EW | 9.11 | 9.54 | 9.49 |V |52730.790 | | 0.647878 | |F2V |79011 DM | +570396 |V0396 Nor *|160405.6-601259 |EA | 8.33 | 8.88 | 8.85 |V |52104.552 | | 5.5354 |07 |A0IV/V |79006 DM | +570397 |V0397 Nor |161555.5-510715 |DCEP | 10.7 | 11.3 | |V |53129.0492 | | 6.812579 |33 | |79209 79118| +570398 |V0398 Nor |162157.0-490925 |EA | 8.61 | 8.93 | 8.85 |V |52442.602 | | 1.58895 |12 |B8V |79011 DM | +570399 |V0399 Nor |162235.9-503238 |EB | 8.19 | 8.30 | 8.24 |V |53170.830 | | 3.19288 | |F6/7V |79004 DM | +570400 |V0400 Nor |163048.3-460620 |EA: | 9.99 | 10.45 | 10.10 |V |52452.575 | | 1.78686 |15 : |B5 |79018 79238| +570401 |V0401 Nor |152538.5-550348 |M | 11.6 |< 14.6 | |V |54850. | | 337. | | |80001 2MASS| NL80_2 +570402 |V0402 Nor |153001.9-571246 |M | 4.85 | 7.15 | |K | | | 716. | |C |80166 2MASS| NL80_2 +570403 |V0403 Nor |153210.7-501627 |M | 12.5 |< 14.8 | |V |53809. | | 200. | | |80415 80415| NL80_2 +570404 |V0404 Nor |153315.9-485620 |RVA | 11.8 | 13.8 | |V |54616.8 | | 53.65 | | |80022 GSC | NL80_2 +570405 |V0405 Nor *|153351.0-583117 |EA | 8.81 | 9.15 | 9.08 : |V |53175.80 | | 15.0615 |03 |A0III/IV |80015 DM | NL80_2 +570408 |V0408 Nor |154140.1-505638 |LB | 12.3 |< 13.3 | |V | | | | | |80001 2MASS| NL80_2 +570409 |V0409 Nor |154425.1-504501 |RCB | 11.8 | 19. : | |V | | | | |C(R) |80293 80293| NL80_2 +570411 |V0411 Nor |155125.4-563250 |SR: | 11.60 | 12.25 | |I | | | | | |80419 80419| NL80_2 +570416 |V0416 Nor |155140.2-563529 |SR: | 10.49 |< 11.4 | |I | | | | | |80419 80419| NL80_2 +570425 |V0425 Nor |155155.3-563214 |M: |>13.8 | 15.3 | |I | | | | | |80419 80419| NL80_2 +570431 |V0431 Nor |155209.3-563433 |LB | 12.35 | 12.70 | |I | | | | | |80419 80419| NL80_2 +570439 |V0439 Nor |155227.2-562853 |M: | 9.03 |< 10.5 | |I |50585. | | | | |80419 80419| NL80_2 +570451 |V0451 Nor *|155727.4-592015 |EA | 9.38 | 9.58 | 9.58 |V |53063.815 | | 3.4590 |09 |B8IV/V |80015 DM | NL80_2 +570452 |V0452 Nor |155759.7-435750 |LB | 8.2 | 9.6 | |V | | | | |M6III |80001 DM | NL80_2 +570453 |V0453 Nor |160047.4-484608 |UG | 12.4 | 17.0 | |R | | | | | |80616 | NL80_3 +570454 |V0454 Nor |160528.3-423455 |M | 12.0 | 15.5 | |R |54738. | | 223.5 | | |80001 USNO | NL80_3 +570456 |V0456 Nor |160636.8-575601 |M | 12.2 |< 14.4 | |V |53857. | | 364. | | |80415 80415| NL80_3 +570457 |V0457 Nor |160652.5-523652 |M | 11.5 |< 14.5 | |V |54746. | | 340.3 | | |80002 GSC | NL80_3 +570458 |V0458 Nor |161133.9-481951 |M | 5.84 | 8.09 | |K | | | 710. | |C |80166 2MASS| NL80_3 +570459 |V0459 Nor |161206.2-594249 |RRC | 11.55 | 12.05 | |V |52639.883 | | 0.375365 |45 | |80621 GSC | NL80_3 +570460 |V0460 Nor |161222.1-542802 |M | 10.6 : | 13.3 | |I |51086. :| | 410. | | |80389 2MASS| NL80_3 +570462 |V0462 Nor |161233.5-542316 |M | 11.1 | 14.3 | |I |51686. | | 346. | | |80389 USNO | NL80_3 +570463 |V0463 Nor |161323.3-592244 |M | 11.4 |< 14.5 | |V |54332. | | 472. | | |80001 USNO | NL80_3 +570464 |V0464 Nor |161338.9-540818 |M | 11.7 |< 14.3 | |I |51230. | | 350. | | |80389 USNO | NL80_3 +570465 |V0465 Nor |161352.4-540155 |M | 12.5 : | 14.0 | |I |51500. :| | 392. | | |80389 2MASS| NL80_3 +570466 |V0466 Nor |161400.9-540603 |M | 12.0 | 14.7 | |I |51730. | | 323. | | |80389 USNO | NL80_3 +570468 |V0468 Nor |161431.2-533659 |M | 11.6 | 13.7 : | |I |51635. | | 319. | | |80389 2MASS| NL80_3 +570469 |V0469 Nor |161543.0-533449 |M | 12.1 | 14.9 | |I |51291. | | 303. | | |80389 USNO | NL80_3 +570470 |V0470 Nor |161548.8-533305 |M | 11.5 | 14.5 | |I |50921. | | 600. : | | |80389 2MASS| NL80_3 +570471 |V0471 Nor |161606.4-535443 |M | 12.3 : | 13.9 | |I |51500. :| | 382. | | |80389 USNO | NL80_3 +570472 |V0472 Nor |161641.9-541530 |M | 12.1 | 14.9 | |I |50974. | | 560. : | | |80389 2MASS| NL80_3 +570473 |V0473 Nor |161649.1-532613 |M | 11.1 : | 12.8 | |I |51259. | | 385. | | |80389 USNO | NL80_3 +570474 |V0474 Nor |161651.0-535652 |M | 12.2 | 15.1 : | |I |51328. | | 425. | | |80389 USNO | NL80_3 +570475 |V0475 Nor |161713.5-533355 |M | 11.8 | 14.6 | |I |51710. | | 530. : | | |80001 USNO | NL80_3 +570478 |V0478 Nor |161748.1-541225 |M | 11.5 | 13.7 | |I |50947. | | 251. | | |80389 2MASS| NL80_3 +570479 |V0479 Nor *|161857.9-510330 |BCEP | 10.39 | 10.49 | |V | | | 0.205471 | |B5 |80445 DM | NL80_3 +570480 |V0480 Nor |162050.4-480653 |M | 4.25 | 5.79 | |K | | | 560. | |C |80166 2MASS| NL80_3 +570482 |V0482 Nor |162418.1-522013 |M | 12.0 |< 13.2 | |I |51740. :| | 365. | | |80389 2MASS| NL80_3 +570484 |V0484 Nor |162541.6-515306 |M | 12.5 | 15.3 | |I |50958. | | 402. | | |80389 2MASS| NL80_3 +570485 |V0485 Nor |162555.2-521519 |M | 11.9 : | 14.5 | |I |51025. :| | 410. | | |80389 USNO | NL80_3 +570486 |V0486 Nor |162608.7-515142 |M | 12.5 : | 15.9 | |I |51040. :| | 500. : | | |80389 USNO | NL80_3 +570489 |V0489 Nor |162754.7-520636 |M | 12.2 | 13.9 | |I |50950. | | 255. | | |80389 USNO | NL80_3 +570490 |V0490 Nor |162814.5-520414 |M | 11.8 : | 13.5 | |I |50840. :| | 335. | | |80389 2MASS| NL80_3 +579012 |mu. Nor *|163405.0-440243 |ACYG: | 4.87 | 4.98 | |V | | | | |O9.7Iab | CoD | +580001 |R Oct |052606.2-862318 |M | 6.4 | 13.2 | |V |41985. | | 405.39 |44 |M5.5e |00001 00002| +580002 |S Oct |180844.5-864756 |M | 7.2 | 14.0 | |V |42032. | | 259.00 |42 |M4(II)e-M5e |00001 00002| +580003 |T Oct |211401.5-820634 |M | 8.8 | 14.8 | |V |39504. | | 218.50 |51 |M2e-M4(II:)e |00001 00002| +580004 |U Oct *|132432.6-841331 |M | 7.0 | 14.1 | |V |41915. | | 308.44 |47 |M4e-M6(II-III)e |00001 00002| +580005 |V Oct |220800.2-744631 |M: | 11.6 |< 13.0 | |p |28840. | | 289.47 | |M6e-M7 |00207 | +580006 |W Oct |092857.7-882937 |CST: | 11.5 : | 13.0 : | |p | | | | | |00016 UCAC2| +580007 |X Oct *|102614.3-842054 |SRA | 8.7 | 12.7 | |p |28885. | | 206.80 | |M3e-M6IIIe |00207 08953| +580008 |Y Oct |142904.4-883844 |RRAB | 11.3 | 12.8 | |p |28378.650 | | 0.646626 |15 | |00016 06286| +580009 |Z Oct |174436.6-862911 |M | 11.0 | 13.5 | |p |13825. | | 335. | | |00359 09467| +580010 |RR Oct |205542.6-745822 |M | 10.1 |< 13.5 | |p |28881. | | 272.83 | | |00001 08953| +580011 |RS Oct |214716.9-873906 |RRAB | 12.2 | 13.4 | |p |36329.523 | | 0.4580092 |32 | |00001 04117| +580012 |RT Oct |230106.2-870311 |M | 10.4 | 14.6 | |p |36063. | | 180.16 | |Me |00001 08613| +580013 |RU Oct |000846.2-861119 |M | 10.2 | 15. | |p |13443. | | 373. | | |00440 08613| +580014 |RV Oct *|134631.8-842406 |RRAB | 11.6 | 12.1 | |p |15116.665 | | 0.5711625 |11 | |05735 HIP | +580016 |RX Oct |194809.9-784336 |L | 10.3 | 11.1 | |p | | | | | |00016 CoD | +580017 |RY Oct |213609.4-771814 |RRAB | 10.4 | 12.1 | |p |27987.453 | | 0.563469 |36 : | |00016 06286| +580018 |RZ Oct |220020.0-865406 |L: | 11.7 | 13.0 | |p | | | | | |04117 08613| +580019 |SS Oct |215335.4-824644 |RRAB | 10.8 | 12.1 | |p |28020.607 | | 0.621825 |13 | |00016 06286| +580030 |TW Oct |194438.7-771517 |SRA | 9.9 | 12.2 | |p |28695. | | 132. |45 |Me |00016 08953| +580032 |TY Oct |185233.2-805637 |SR | 11.5 |< 13. | |p | | | | | |00085 02386| +580033 |TZ Oct |190710.4-752027 |EA | 11. | 12.5 | |p | | | | | |00085 02383| +580034 |UU Oct |200201.0-771003 |M | 12.5 | 16. | |p | | | | | |00085 02386| +580035 |UV Oct *|163225.5-835411 |RRAB | 8.70 | 9.97 | |V |34328.396 | | 0.542625 | |A6-F6 |00080 06286| +580036 |UW Oct |214438.2-803344 |RRAB | 12.3 | 13.0 | |V |34337.409 | | 0.444490 |15 | |00080 02384| +580039 |UZ Oct *|044336.0-844840 |EB/KE | 9.03 | 9.56 | 9.48 |V |42064.44803 | | 1.1493549 | | |07167 CoD | +580040 |VV Oct |183125.4-755723 |M | 12. |< 14.5 | |p | | | | | |02554 04208| +580069 |AP Oct |214945.7-815822 |RRAB | 12.4 | 13.6 | |p |36329.839 | | 0.605365 |12 | |04010 04010| +580071 |AR Oct |231214.6-743447 |RRAB | 12.2 | 13.5 | |V |36840.420 | | 0.39362 |14 | |04183 02385| +580081 |BC Oct *|233808.1-812118 |EA | 10.30 | 10.80 | |V |54509.525 | | 17.63953 : | | |04340 08953| +580090 |BM Oct |213045.3-790357 |E | 11.4 | 12.2 | |p |28702.550 | | 3.70898 | | |05255 05255| +580093 |BP Oct *|152819.1-880759 |DSCTC | 6.46 |( 0.04 )| |V | | | 0.08 | |A2m |06364 CPD | +580094 |BQ Oct |143529.5-894618 |LB: | 6.8 |( 0.1 )| |V | | | | |M4III(S5,1) |07763 CPD | +580095 |BR Oct |182016.4-774019 |LB: | 9.4 | 10.0 | |p | | | | |M4-6 |01944 06618| +580100 |BW Oct |222202.5-843958 |LB: | 8.8 | 9.7 | |p | | | | |M7III |07821 CPD | +580104 |CC Oct *|200331.8-784951 |DSCTC | 8.01 |( 0.10 )| |V | | | 0.12490 | |Fm |08522 CPD | +580106 |CE Oct *|200604.8-792524 |DSCTC | 8.02 |( 0.02 )| |V | | | | |A7IV/V |08773 CPD | +580107 |CF Oct |204937.3-800801 |RS | 8.27 |( 0.3 )| |V | | | | | |67442 CPD | +580108 |CG Oct |224530.2-884906 |DSCTC | 6.85 |( 0.04 )| |B | | | | | |67443 CPD | +580111 |CK Oct |201356.4-785242 |ACVO | 9.90 |( 0.01 )| |V | | | | | |71157 CPD | +580113 |CM Oct |202357.9-783938 |M | 6.36 | 7.70 | |J | | | | | |73014 GSC22| +580114 |CN Oct |005433.6-824010 |LB: | 8.45 | 8.55 | |Hp| | | | | |HIP HIP | +580115 |CO Oct |030313.2-853822 |LB | 8.74 | 8.92 | |Hp| | | | | |HIP HIP | +580116 |CP Oct *|030953.8-833154 |DSCTC: | 7.68 | 7.73 | |Hp| | | | | |HIP HIP | +580117 |CQ Oct |042916.7-844818 |SRB | 8.12 | 8.59 | |Hp| | | | | |HIP HIP | +580118 |CR Oct |044902.6-881616 |SRB | 7.16 | 7.27 | |Hp| | | | | |HIP HIP | +580119 |CS Oct |081006.7-842642 |LB: | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +580120 |CT Oct |114142.8-880353 |BY: | 10.91 | 11.34 | |Hp| | | | | |HIP HIP | +580121 |CU Oct |121109.4-834642 |ACV | 7.39 | 7.43 | |Hp| | | | | |HIP HIP | +580122 |CV Oct |165105.6-870812 |LB | 8.92 | 9.19 | |Hp| | | | | |HIP HIP | +580123 |CW Oct |170058.5-862152 |ACV: | 6.05 | 6.07 | |Hp| | | | | |HIP HIP | +580124 |CX Oct |170218.4-841813 |SRB | 7.83 | 8.05 | |Hp| | | | | |HIP HIP | +580125 |CY Oct |185741.5-853355 |LB | 7.97 | 8.10 | |Hp| | | | | |HIP HIP | +580126 |CZ Oct |194454.5-800519 |LB | 7.55 | 7.72 | |Hp| | | | | |HIP HIP | +580127 |DD Oct |200413.3-752622 |E: | 9.72 | 9.94 | |Hp| | | | | |HIP HIP | +580128 |DE Oct |201919.2-760736 |RRC: | 9.19 | 9.26 | |Hp| | | | | |HIP HIP | +580129 |DF Oct |203506.6-751000 |LB: | 8.85 | 8.99 | |Hp| | | | | |HIP HIP | +580130 |DG Oct |204520.7-790525 |LB: | 8.81 | 8.97 | |Hp| | | | | |HIP HIP | +580131 |DH Oct |205154.6-785224 |LB: | 9.10 | 9.21 | |Hp| | | | | |HIP HIP | +580132 |DI Oct |212306.7-853820 |SRD | 7.24 | 7.41 | |Hp| | | | | |HIP HIP | +580133 |DK Oct |215038.6-835740 |LPB | 7.62 | 7.66 | |Hp| | | | | |HIP HIP | +580134 |DL Oct |215510.8-765626 |LB | 7.64 | 8.18 | |Hp| | | | | |HIP HIP | +580135 |DM Oct |220202.0-801855 |BY: | 11.69 | 12.03 | |Hp| | | | | |HIP HIP | +580136 |DN Oct |222112.2-745803 |SRB: | 7.28 | 7.36 | |Hp| | | | | |HIP HIP | +580137 |DO Oct |231617.2-875738 |SRB: | 8.20 | 8.34 | |Hp| | | | | |HIP HIP | +580138 |DP Oct |231045.8-762748 |LB | 7.81 | 7.95 | |Hp| | | | | |HIP HIP | +580139 |DQ Oct |232511.0-760617 |SRB | 8.35 | 8.59 | |Hp| | | | | |HIP HIP | +580140 |DR Oct |100729.5-850433 |RS: | 8.70 | 8.73 | |V | | | | | |75179 CPD | +580141 |DS Oct |085635.7-830511 |M | 12.0 |< 14.8 | |V |53119 | | 266. | | |78040 78120| +580142 |DT Oct |184052.4-834310 |UGSU | 11.4 |< 15.2 | |V | | | | | |78078 78248| +580143 |DU Oct *|205004.2-755437 |EA/RS: | 9.21 | 9.48 | 9.34 |V |52845.852 | | 2.47867 | |G3V |78011 DM | +580145 |DW Oct |003752.9-823714 |SRB | 8.8 | 10.1 | |V | | | 88. | | |79100 DM | +580147 |DY Oct |073112.5-843218 |RRAB | 12.2 | 13.4 | |V |53770.6703 | | 0.558093 |15 | |79100 79083| +580148 |DZ Oct *|085448.3-831657 |RRAB | 12.2 | 13.5 | |V |53055.630 | | 0.47786 |30 | |79033 79071| +580150 |EF Oct |110054.5-840527 |M | 11.6 |< 14.5 | |V |53562. | | 305. | | |79072 79086| +580151 |EG Oct |113537.7-842136 |SRB | 11.9 | 13.1 | |V | | | 86. | | |79064 79086| +580152 |EH Oct |113925.2-870926 |M | 11.3 |< 14.9 | |V |53597. | | 193.4 | | |79072 79086| +580153 |EI Oct |123242.9-872623 |EW | 11.35 | 12.2 | 12.1 |V |53000.644 | | 0.338525 | | |79100 DM | +580154 |EK Oct |125352.2-872721 |LB | 9.8 | 10.5 | |V | | | | | |79100 DM | +580155 |EL Oct |125956.0-831207 |M | 11.6 |< 14.3 | |V |53726. | | 242. | | |79100 GSC | +580156 |EM Oct |132030.8-855223 |SRB | 8.4 | 9.6 | |V | | | 100. | |M5/6III |79100 DM | +580157 |EN Oct |145018.0-894658 |EW | 11.88 | 12.6 | 12.5 |V |52404.915 | | 0.288906 | | |79018 79086| +580158 |EO Oct |145421.3-872105 |SRB | 11.9 | 13.2 | |V | | | 86. | | |79100 79086| +580159 |EP Oct |153053.7-844829 |EW | 12.37 | 13.17 | 13.10 |V |52809.693 | | 0.448784 | | |79018 79086| +580160 |EQ Oct |171029.0-862300 |SRA | 9.9 | 12.3 | |V |53849. | | 267. | | |79190 79190| +580161 |ER Oct |195417.2-744310 |SRB | 11.5 | 12.3 | |V | | | 64. | | |79100 79063| +580163 |ET Oct |220240.5-841554 |EA | 11.6 | 12.2 | 12.2 |V |53620.649 | | 5.733983 |05 | |79064 79083| +580167 |EX Oct *|151708.7-831837 |EB | 11.05 | 11.25 | 11.20 |V |51889.7 | | 4.692825 | | |80002 GSC | NL80_2 +580168 |EY Oct |153332.5-862459 |M | 10.3 |< 12.6 | |V |54723. | | 287. | | |80406 80406| NL80_2 +580169 |EZ Oct *|154313.6-864807 |EW | 11.37 | 12.09 | 12.04 |V |52642.759 | | 0.285878 | | |80048 GSC | NL80_2 +580172 |FH Oct |190525.1-782644 |RS | 11.1 | 11.4 | |V | | | 2.80321 | | |80001 DM | NL80_3 +580174 |FK Oct |203837.7-800027 |SRB | 9.0 | 9.9 | |V | | | 95. | | |80558 DM | NL80_3 +580175 |FL Oct |212658.2-854206 |RS | 10.13 | 10.38 | |V | | | 9.1246 | |G9IV |80286 GSC | NL80_3 +580176 |FM Oct |221846.7-843830 |BY | 11.25 | 11.85 | |V | | | 15.28 | | |80034 GSC | NL80_3 +589001 |alf Oct *|210443.1-770126 |EB | 5.22 | 5.26 | |Hp| | | | | |HIP HIP | +589005 |eps Oct |222001.7-802623 |SRB | 4.58 | 5.30 | |V | | | 55. : | |M6III |06590 CPD | +589014 |ksi Oct |225022.8-800726 |LPB | 5.26 | 5.29 | |Hp| | | | | |HIP HIP | +589018 |sig Oct |210846.9-885723 |DSCTC | 5.45 |( 0.05 )| |V | | | 0.097 | |F0IV |09479 CPD | +590001 |R Oph *|170745.8-160534 |M | 7.0 | 13.8 | |V |45234. | | 306.5 |45 |M4e-M6e |00001 00002| +590002 |S Oph |163415.2-170939 |M | 8.9 | 14.7 | |V |42247. | | 233.51 |45 |M5e |00001 00002| +590003 |T Oph |163343.5-160754 |M | 8.8 |< 14.2 | |V |41874. | | 366.82 |36 |M6.5e |00001 00002| +590004 |U Oph *|171631.7+011238 |EA/DM | 5.84 | 6.56 | 6.46 |V |44416.3864 | | 1.67734617 |16 *|B5V+B5V | 00562| +590005 |V Oph *|162643.7-122536 |M | 7.3 | 11.6 | |V |45071. | | 297.21 |48 |C5,2-C7,4e(N3e) |00001 00002| +590006 |W Oph *|162124.5-074200 |M | 9.3 | 14.9 | |V |38414. | | 332.68 |41 |M8e |00001 00002| +590007 |X Oph *|183821.1+085003 |M | 5.9 | 9.2 | |V |44729. | | 328.85 |53 |M5e-M9e |00001 00002| +590008 |Y Oph *|175238.7-060837 |DCEPS | 5.87 | 6.46 | |V |39853.30 | | 17.12413 |44 |F8Ib-G3Ib |06591 02544| +590009 |Z Oph *|171932.1+013054 |M | 7.6 | 14.0 | |V |42238. | | 348.7 |40 |K3ep-M7.5e |00001 00002| +590010 |RR Oph *|164902.5-192752 |M | 8.0 | 14.9 | |V |43184. | | 292.03 |46 |M3e-M7 |00001 00002| +590012 |RT Oph *|175632.0+111010 |M | 8.6 | 15.5 | |V |42630. | | 426.34 |36 |M7e(C) |00001 00002| +590013 |RU Oph *|173252.6+092525 |M | 8.6 | 14.2 | |V |40445. | | 202.29 |49 |M3e-M5e |00001 00002| +590014 |RV Oph *|173435.0+071449 |EA/SD | 9.42 | 11.44 | 9.56 |V |23997.3833 | | 3.6871222 |10 |A2V |03115 00279| +590015 |RW Oph *|175520.5+074949 |M | 9.7 | 14.5 | |V |42006. | | 246.71 | |M3IIIe |00001 06286| +590016 |RX Oph *|165248.1+052427 |M | 9.8 |< 13. | |V |38539. | | 322.93 | |M5 |00001 00547| +590017 |RY Oph *|181636.9+034135 |M | 7.4 | 13.8 | |V |45205. | | 150.41 |46 |M3e-M6e |00001 00002| +590018 |RZ Oph *|184546.4+071312 |EA/GS | 9.65 : | 10.42 | |V |42204.39 | | 261.9277 |04 |F3eIb+K5II |04954 00100| +590019 |SS Oph *|165751.0-024542 |M | 7.8 | 14.5 | |V |44729. | | 180.64 |47 |M5e |00001 00002| +590020 |ST Oph *|173359.4-010451 |RRAB | 11.33 | 12.74 | |V |28426.441 | | 0.45035618 |13 |A4-F4 |04957 00188| +590021 |SU Oph |173926.9+013619 |SRB | 10.3 | 12.2 | |p | | | 106.11 | |M6 |09484 06286| +590022 |SV Oph *|175624.8+032238 |M | 9.4 | 13. | |V |38674. | | 215.93 | |M2e |00001 06286| +590023 |SW Oph *|161628.1-065844 |EA/SD | 10.6 | 11.7 | |p |41085.420 | | 2.446021 |12 |A0 |00001 09485| +590024 |SX Oph *|161755.5-063952 |EA/SD: | 11.8 | 12.3 | |p |33399.557 | | 2.0633038 |16 | |04959 00279| +590025 |SY Oph |165506.8-215810 |SRB | 9.7 | 11.4 | |p |26470. | | 132. | |M5 |00001 08953| +590026 |SZ Oph *|171502.8-080327 |EA/SD | 10.7 | 12.2 | |p |45485.462 | | 3.708451 |13 *|A |00001 00462| +590027 |TT Oph *|164935.9+033754 |RVA | 9.45 | 10.84 | |V |44449. | | 61.08 | |G2e-K0 |00368 03145| +590029 |TV Oph |164242.3-244550 |S: | 11.3 | 12.2 | |p | | | | |M2 |00266 00261| +590030 |TW Oph *|172943.7-192823 |SRB | 11.6 | 13.8 | |p | | | 185. : | |C5,5(Nb) |00236 03479| +590031 |TX Oph |170400.1+045901 |RVA | 9.7 | 11.4 | |V |37880. | | 135. | |F5e-G6e |00001 00002| +590033 |TZ Oph |162907.7-201404 | | 12.4 | 13.5 | |p | | | | |F6 |00268 GSC | +590034 |UU Oph *|165722.6-254759 |EA/SD | 10.0 | 12.5 | |p |20750.489 | | 4.3968025 |12 |A0 |09486 00261| +590035 |UV Oph |164248.9-124413 |SR | 11. | 13. | |V |21429. | | 249. | | |00448 06286| +590036 |UW Oph |174447.3-113833 |M | 10.8 |< 15. | |V |42699. | | 232.06 | |M7 |00001 06286| +590037 |UX Oph *|170457.0-121205 |M | 9.4 | 13.6 | |V |38879. | | 116.71 | |M4e |00001 00002| +590038 |UY Oph |171624.8+044317 |M | 11.3 |< 16.6 | |p |34196. | | 332. : | |M7III |00001 06286| +590039 |UZ Oph |172159.3+065442 |RVA | 9.93 | 11.50 | |V |22183. | | 87.44 | |G2e-G8(M2) |00451 03145| +590040 |VV Oph |172647.2+032804 |M | 11.5 | 15.5 | |p |34538. | | 245.58 | | |00001 00567| +590041 |VW Oph *|172725.9+041339 |M | 10.5 | 14. | |p |38851. | | 285.00 | |M5e |00001 09487| +590043 |VY Oph |173253.1+002512 |RRAB | 12.5 | 14. | |p |27874.634 | | | |F0 |09270 06286| +590045 |WW Oph *|175540.3+075042 |SRA | 12.0 | 14.3 | |V |33073. | | 72.63 | | |08044 GSC | +590046 |WX Oph |182955.7+095021 |M | 12.1 |< 17. | |p |26132. | | 257. | |M3 |00447 GSC22| +590047 |WY Oph |184141.8+062609 |LB | 11.3 | 12.4 | |p | | | | |M6 |00447 06286| +590048 |WZ Oph *|170639.0+074658 |EA/DM | 9.14 | 9.82 | 9.82 |V |35648.775 | | 4.183506 |06 *|F8V+F8V |00001 00564| +590049 |XX Oph *|174356.5-061609 |* | 8.59 | 10.2 | |V | | | | |Bpeq+M5 |08079 05464| +590051 |XZ Oph |165439.8-290951 |RR | 12.3 | 13.6 | |p |25717.600 | | 0.550184 | | |00454 00261| +590054 |ZZ Oph |171056.5-160806 |M | 12.0 |< 15.5 | |p |25740. | | 205. | | |00455 06286| +590057 |AC Oph |171413.6-132040 | | 12.3 | 13.9 | |p | | | | | |02073 06286| +590058 |AD Oph |171500.9-150308 | | 12.2 | 14.0 | |p | | | | | |02073 06286| +590059 |AE Oph |171752.6-200119 |M | 11.5 | 16.1 | |p |36740. | | 176.0 |40 |M4-M8.5 |00001 06286| +590061 |AG Oph |172156.9+141113 |M | 11. |< 15.5 | |p |26214. | | 337. | | |00456 06286| +590062 |AH Oph *|172535.9-030400 |M | 11.7 |< 15. | |p |40446. | | 353.2 | |M7 |06997 06286| +590063 |AI Oph |172542.3+123556 |M | 12.0 |< 16.6 | |p |35690. | | 420. | | |03122 06286| +590064 |AK Oph |172720.9-061316 |M | 12.5 |< 15. | |p |24800. | | 330.9 | |M6 |00215 06286| +590066 |AM Oph |172854.0-055904 |M | 12.5 |< 15. | |p |25313. | | 300. | | |00458 06286| +590068 |AO Oph |173410.7+030302 |M | 12.5 |< 14.5 | |V |28152. | | 217. | | |00459 06286| +590070 |AQ Oph *|173911.7+040152 |SR | 12.0 | 14.2 | |p |27277. | | 125.2 | | |00460 GSC | +590071 |AR Oph |174410.1-032220 |M | 12.5 | 16.0 | |p |25871. | | 277.6 | | |00461 06286| +590075 |AV Oph |180836.8+051715 |LB | 11.3 | 13.4 | |p | | | | |M8 |00266 06286| +590078 |AY Oph |181904.5+061553 |M | 11.5 | 19. | |p |42151. | | 195.27 | | |00001 06286| +590081 |BC Oph |181807.2+065618 |M | 10.7 | 15.3 | |p |42895. | | 307.11 | |M6e |00001 00548| +590082 |BD Oph |160546.3-064228 |M | 11.0 | 15.6 | |p |38894. | | 340.44 | |M6e: |00001 06286| +590084 |BF Oph *|170605.5-263450 |DCEP | 6.93 | 7.71 | |V |44435.21 | | 4.06775 |26 |F6-G2 |00001 00261| +590086 |BH Oph |181550.5+120544 |CWA | 11.60 | 12.48 | |V |37870.723 | | 11.05314 |28 |F6-F9e |03157 | +590087 |BI Oph |183107.6+070031 |M | 11.6 | 15.9 | |p |35680. | | 202.59 |42 |M4e |00001 06286| +590088 |BK Oph |183600.6+074110 |M | 12.3 | 16.8 | |p |28098. | | 376.2 | |M6e-M9 |01000 00549| +590107 |CF Oph |165342.3-245627 | | 11.8 | 13.3 | |p | | | | | |00283 00261| +590125 |CY Oph |165605.9-282149 |EA/DS: | 10.8 | 11.7 | |p |21039. | | 24.5 | | |06592 | +590163 |ET Oph |170108.7-263542 |E:/SD: | 12.2 | 13.4 | |p | | | | | |00283 00261| +590171 |FG Oph |170220.1-252229 |E:/SD: | 12.3 | 13.5 | |p | | | | | |00283 00261| +590185 |FV Oph |170319.6-242857 | | 12.3 | 14.2 | |p | | | | | |00283 00261| +590186 |FW Oph |170329.5-264902 |E:/SD: | 12.3 | 13.6 | |p | | | | | |00283 00261| +590192 |GI Oph |170422.8-243605 |S: | 12.5 | 13.6 | |p | | | | |M4 |00283 00261| +590241 |IX Oph |170948.2-271659 |INB | 11.8 | 12.7 | |p | | | | |Fpe |00121 00261| +590244 |KK Oph |171008.1-271519 |INA | 10.99 | 12.7 | |B | | | | |B-Ae |00283 00261| +590253 |KT Oph |174803.3-004106 |M | 11.5 |< 15.3 | |p |34917. | | 216.6 | | |00001 00531| +590254 |KU Oph |180504.6+024612 |M | 11.7 |< 16.3 | |p |35670. | | 382.5 | |M4IIIe |00001 00531| +590316 |PR Oph |170029.5-121549 |M | 11.2 | 14.5 | |p |25368. | | 233. | |Me |00266 00550| +590367 |V0367 Oph |163943.0-054626 |M | 12.4 | 16.2 | |p |28050. | | 268. | |Me |00278 06286| +590369 |V0369 Oph |170108.7+013313 | | 12.0 | 13.0 | |p | | | | |M |01330 06286| +590372 |V0372 Oph |170413.0+015335 |M | 12.5 | 15.5 | |p |27160. | | 148. | | |00147 06286| +590374 |V0374 Oph |174019.6+122409 |M | 12. |< 16. | |p |35662. | | 214.25 | | |00001 06286| +590389 |V0389 Oph |175653.0+055213 |M | 11.3 |< 16.0 | |p |36381. | | 315.1 | | |00001 00531| +590391 |V0391 Oph *|175809.1+043928 |EA/SD | 11.5 | 15. | |p |45518.546 | | 2.895550 | |A1+G5 |00001 00531| +590395 |V0395 Oph |175947.2+040401 |M | 12.1 | 15.0 | |p |26505. | | 110. | | |00401 00531| +590405 |V0405 Oph |181459.0+044825 |M | 12.5 | 17.5 | |p |25806. | | 340. | | |00401 00531| +590411 |V0411 Oph |183102.6+094011 |M | 12.3 | 17.2 | |p |26103. | | 227. |37 |M4 |00447 GSC22| +590412 |V0412 Oph |183436.9+113901 |M | 12.3 | 20. | |p |26918. | | 318.5 | | |00447 USNO | +590413 |V0413 Oph *|162511.0-103126 |RRAB | 11.9 | 12.8 | |p |29609.8869 | | 0.44900586 |16 |F6 |05692 00132| +590422 |V0422 Oph |180525.9+051312 |M | 11.5 |< 16.5 | |p |26087. | | 213. | | |00401 00133| +590423 |V0423 Oph *|180616.5+003331 |EA/SD: | 11. | 12. | |p |27236.459 | | 1.203786 | | |00465 00133| +590426 |V0426 Oph *|180751.7+055148 |NL | 11.6 | 13.4 | |B | | | | |pec(e+cont) |09434 09472| +590438 |V0438 Oph *|171439.8+110410 |SRB | 9.3 | 11.6 | |p |37130. | | 169.9 |42 |M0-M7e |09484 09436| +590439 |V0439 Oph *|174333.3+033536 |CWB | 11.73 | 12.70 | |V |38943.002 | | 1.892980 |39 | |00001 03485| +590440 |V0440 Oph |165928.2+121946 |M | 11. |< 16. | |p |27861. | | 276.9 | | |01000 06286| +590441 |V0441 Oph |172052.7-172005 |EA/SD | 11.6 | 15.5 | |p |35663.821 | | 3.058545 |15 |A0 |00001 00279| +590445 |V0445 Oph *|162441.2-063230 |RRAB | 10.53 | 11.39 | |V |27543.547 | | 0.3970227 |18 |A9-F6 |07114 00190| +590447 |V0447 Oph |171158.0+082011 |SRB: | 9.5 | 13.5 | |p |30257. | | 21. : | |M4IIIe |02563 00158| +590448 |V0448 Oph |171520.8-180657 |EA/SD | 12.2 | 13.8 | |p | | | 6.086 | | |90055 10055| +590449 |V0449 Oph *|173042.5+103503 |EA/SD | 11.5 | 13.3 | |V |42959.604 | | 1.243075 |17 | |00001 00158| +590450 |V0450 Oph |182023.7+123944 |M | 10.9 | 14.1 | |V |40464. | | 158.3 | | |00001 00470| +590451 |V0451 Oph *|182914.0+105331 |EA/DM | 7.94 |( 0.60 )| 11.9 |B |44834.365 | | 2.19659616 |12 *|B9V+A2 |00001 08953| +590452 |V0452 Oph *|171759.6+110427 |RRAB | 11.68 | 12.63 | |V |36657.675 | | 0.5571623 |13 |F5 |00001 00470| +590453 |V0453 Oph |172649.1-022336 |RVA | 10.40 | 11.53 | |V |37505. | | 81.300 | |Fp |09437 06286| +590454 |V0454 Oph |181333.2+122804 |SR | 11.1 | 12.3 | |p |25655. | | 655. |44 |M4 |00474 00554| +590455 |V0455 Oph *|181518.5+122109 |RRAB | 11.6 | 12.5 | |p |41833.389 | | 0.45391060 |20 |A7 |00001 00470| +590456 |V0456 Oph *|184305.8+085023 |EA/DM | 10.2 | 10.7 | 10.5 |p |41897.532 | | 1.0159996 |20 *|A5: |09438 08953| +590498 |V0498 Oph |181544.1+000521 |LB | 12.5 | 14.0 | |p | | | | |M4 |00432 02314| +590501 |V0501 Oph *|181835.6+141343 |EA/SD: | 10.9 | 11.8 | 11.1 |V |30911.395 | | 0.9679504 |22 *|A5 |03658 00470| +590502 |V0502 Oph *|164120.9+003027 |EW/KW | 8.34 | 8.84 | 8.81 |V |41174.2288 | | 0.45339345 | |G2V+F9V |07576 08953| +590503 |V0503 Oph |165236.1-052728 |SR | 12.0 | 14.5 | |p |20635.5 | | 84.2 | |M3e |00455 06286| +590504 |V0504 Oph |165306.8-045544 |M | 11.5 |< 15. | |p |19560. | | 206. | |M4IIIe |00455 06286| +590506 |V0506 Oph *|174104.2+074704 |EB/DM | 11.2 | 12.0 | 12.0 |p |42957.979 | | 1.0604262 | |A-F |00001 00553| +590508 |V0508 Oph *|175848.6+132946 |EW/KW | 10.06 | 10.69 | 10.59 |V |45082.5430 | | 0.344792129 | |G5 |00001 00279| +590510 |V0510 Oph |180608.5+024823 |SRB | 12.3 | 13.2 | |p |25318. | | 103. | | |00453 00133| +590513 |V0513 Oph |181400.9+051811 |SRB | 9.6 | 11.3 | |V | | | 61.5 | |M5 |08044 BD | +590514 |V0514 Oph |183304.3+082738 |M | 12.4 | 19. : | |p |25763. | | 260. | | |00447 02326| +590515 |V0515 Oph *|183933.1+115039 |SRB | 11.7 | 13.5 | |p |27924. | | 304. | |M5 |00447 02327| +590520 |V0520 Oph |172252.9-291243 |SRA | 11.0 | 12.6 | |p |28345. | | 117. | |M5e |00262 00262| +590521 |V0521 Oph *|172348.9-282848 |SRB | 10.6 | 12.0 | |p | | | 320. | |S5,4(M4) |00262 00262| +590533 |V0533 Oph *|175303.3-023446 |SR: | 8.3 | 9.3 | |p |41169. | | | |M6 |08837 08953| +590535 |V0535 Oph *|173210.2-292600 |EA/SD | 11.3 | 13.6 | |p |27959.505 | | 6.055259 |08 |A3 |00478 00478| +590537 |V0537 Oph *|173336.9-282010 |EA | 12.5 | 12.8 | 12.8 |p |29396.475 | | 1.14718 |15 | |00478 00478| +590551 |V0551 Oph |174052.4-272345 |LB | 10.1 |( 0.4 )| |B | | | | |M2 |00478 00478| +590552 |V0552 Oph |174245.0-282552 |LB | 10.6 | 11.3 | |p | | | | |M0 |00478 00478| +590561 |V0561 Oph |174846.8+033519 |LB | 10.5 | 11.5 | |p | | | | |M6 |00453 08953| +590564 |V0564 Oph *|175201.3+075629 |SRD | 9.42 | 10.91 | |V |37520. | | 70.325 | |G8-K2(M2) |07515 00351| +590566 |V0566 Oph *|175652.4+045915 |EW/KW | 7.46 | 7.96 | 7.89 |V |41835.8617 | | 0.40964569 | |F4V |08286 05288| +590567 |V0567 Oph *|175827.2+010605 |DSCT | 11.07 | 11.43 | |V |38592.4048 | | 0.149521 |40 |A7-F3 |06594 06593| +590569 |V0569 Oph |180031.1+053659 |SRB | 11.8 | 13.2 | |p |25400. | | 161. | |M |00453 02365| +590574 |V0574 Oph *|180615.5+032409 |SRA | 9.9 | 11.0 | |p |25513. | | 71.5 | |M4 |00453 08953| +590577 |V0577 Oph *|181645.9+065418 |EA/DM | 11.36 | 12.00 | 10.5 |B |42652.332 | | 6.079096 |03 *|A |00001 09442| +590578 |V0578 Oph |182517.8+113751 |M | 12.4 | 17.5 | |p |25717. | | 180. |46 | |00447 00554| +590585 |V0585 Oph *|182709.1+073128 |SRB | 11.6 | 13.2 | |p | | | 135. | |M5 |00351 02325| +590591 |V0591 Oph |182745.3+100730 |M | 12.3 |< 16.5 | |p |26767. | | 279.4 | |M6III |00447 02325| +590597 |V0597 Oph |182849.8+093153 |L | 12.3 | 13.3 | |p | | | | | |00447 02325| +590601 |V0601 Oph |182910.3+085536 |LB | 12.2 | 13.6 | |p | | | | | |00447 02326| +590602 |V0602 Oph |182927.1+112904 |M | 11.8 |< 16.5 | |p |25874. | | 300.5 | |M4III |00447 02326| +590614 |V0614 Oph |183234.5+095722 |LB | 12.2 | 12.8 | |p | | | | |M5 |00447 02326| +590648 |V0648 Oph |183817.6+081323 |M | 12.5 |< 17. | |p |25665. | | 168.7 | | |00447 USNO | +590679 |V0679 Oph |184157.2+064907 |LB | 8.96 | 9.3 | |V | | | | |S4.5,8 |00447 BD | +590705 |V0705 Oph |162652.4-094953 |M | 12.0 |< 16.0 | |p |28350. | | 308.7 | | |00001 06286| +590707 |V0707 Oph |162647.7-023701 |LB: | 12.2 | 13.2 | |p | | | | |M7 |00278 06286| +590709 |V0709 Oph |162802.8-041357 |E/SD | 11.9 | 13.4 | |p |27987.40 | | 3.04545658 | | |00278 00122| +590716 |V0716 Oph *|163049.5-053020 |CWB | 11.28 | 12.60 | |V |42954.1388 | | 1.1159157 |13 |A9-F5 |09492 03625| +590720 |V0720 Oph *|163224.6-131201 |M | 12.1 | 17.0 | |p |40800. | | 332.0 |30 |Me |06438 00551| +590721 |V0721 Oph |163157.6+030611 |SR: | 11.5 |< 12. | |p |27544. | | 267. | |M2 |00483 00470| +590732 |V0732 Oph *|163740.1-050835 |M | 12.1 | 15.6 | |p |27950. | | 471. | |M3IIIe |00278 06286| +590735 |V0735 Oph *|170749.0+093309 |EA/SD | 10.5 | 11.6 | 10.6 |p |26894.517 | | 3.2052032 |17 *|A0 |00001 00279| +590738 |V0738 Oph |171550.4+093655 |SR | 12.2 | 13.1 | |p | | | 100. | |M4 |00452 00196| +590741 |V0741 Oph |171802.9+105423 |SRD | 12.1 | 12.9 | |p | | | 194. | |K5 |00452 06286| +590744 |V0744 Oph |171904.4+082949 |M | 12.4 |< 16.6 | |p |34255. :| | 267.3 | | |00001 00158| +590756 |V0756 Oph |172230.4+014648 |RRAB | 12.3 | 13.7 | |p |29404.4340 | | 0.4610295 |23 | |03491 00555| +590759 |V0759 Oph |172356.4+042225 |SR | 11.9 | 13.5 | |p |32719. | | 277.2 | |M2IIIe |02931 00002| +590767 |V0767 Oph *|173044.9+023544 |SR | 12.5 | 14.0 | |p | | | 65. | | |00452 02316| +590784 |V0784 Oph *|173525.2+074521 |RRAB | 11.85 | 12.96 | |V |40358.954 | | 0.3762746 |20 |A1: |06997 00470| +590806 |V0806 Oph |174053.2-165738 |EA/DS | 11.6 : |< 13.0 | |V |34216.67 | | 15.4065 |08 |F8 |00485 00279| +590812 |V0812 Oph |174131.9+064341 |SRB | 11.3 | 12.9 | |p | | | 96. : | |S6,3 |00452 02452| +590815 |V0815 Oph |174200.1+071147 |SR | 11.6 | 13.1 | |p | | | | |M0 |00452 06286| +590816 |V0816 Oph *|174237.6+045730 |RRAB | 11.71 | 13.04 | |V |36351.450 | | 0.3806945 |16 | |02672 02363| +590834 |V0834 Oph |180859.5+120923 |M | 12.5 |< 15.5 | |p | | | | | |00464 00533| +590835 |V0835 Oph |173611.8-163438 |SRB | 11.3 | 14.3 | |p | | | 116. : | |M6 |00351 00551| +590838 |V0838 Oph *|180144.7+102343 |SRB | 11.8 | 13.2 | |p | | | 80. | |M |00351 00533| +590839 |V0839 Oph *|180921.3+090904 |EW/KW | 8.8 | 9.39 | 9.38 |V |40448.4129 | | 0.40899532 | |F8V |00001 00487| +590846 |V0846 Oph |173940.9-285112 |EA/SD: | 10.0 | 10.7 | |p |28361.305 | | 3.126763 |10 *|A2 |00296 CoD | +590850 |V0850 Oph |170610.8-102859 |M | 11.0 |< 16. | |p |25382. | | 345.6 | |M8 |00001 06286| +590851 |V0851 Oph *|183452.0+070403 |SRB | 10.2 | 11.8 | |p |29726. | | 188. | |M5 |00164 00476| +590854 |V0854 Oph *|165912.0-133037 |M: | 11. | 16. | |p |25443. :| | 352. : | | |01003 00551| +590855 |V0855 Oph |165953.2+042859 |M: | 10.4 | 15.5 | |p |26860. | | | |M0IIIe |00158 00002| +590857 |V0857 Oph |170940.0-190804 |M | 12.2 | 16.0 | |p |36718. | | 275.5 | |M4-M9 |05455 00551| +590858 |V0858 Oph |171008.3-023555 |M | 11.5 |< 15. | |p |23636. | | 158.94 | |M4 |06997 02315| +590859 |V0859 Oph |171051.8-183213 |M | 12.5 |< 18.5 | |p |36688. | | 300.5 | |M5-M9.5 |00001 00551| +590865 |V0865 Oph |171900.1+093027 |RR | 12.5 | 13.1 | |p | | | | | |00452 00542| +590873 |V0873 Oph |180711.4+082502 |M | 12.5 |< 15.5 | |p |26935. | | 151. : | |M2e |00001 00492| +590874 |V0874 Oph |180706.9+123355 |M | 12.5 |< 15. | |p | | | | | |00464 00533| +590877 |V0877 Oph |181543.5+090436 |M | 12.5 |< 15. | |p | | | | | |00464 00533| +590880 |V0880 Oph |181820.7+052054 |M | 12.5 |< 17.5 | |p |29830. | | | | |02757 02364| +590882 |V0882 Oph |181914.8+045614 |M | 11.9 | 19. | |p |31696. :| | | | |02757 02364| +590884 |V0884 Oph |182247.4+095205 |M | 12.5 |< 17.0 | |p |29450. | | 210. | | |00164 02366| +590890 |V0890 Oph |182629.5+090700 |M | 12.3 | 19. | |p |27345. | | 316.3 | | |00164 02366| +590904 |V0904 Oph |171432.7+100531 |M | 12.5 |< 15. | |p |37817. | | 156.07 | | |06997 00158| +590905 |V0905 Oph |171446.8+100454 |M | 12.5 |< 15. | |p |34128. | | 255.03 | | |06997 00491| +590911 |V0911 Oph *|162454.9+025958 |SRB | 10.2 | 11.2 | |p | | | 57. | |M0 |02186 02186| +590912 |V0912 Oph |175411.3+014654 |SRB: | 11.6 |( 0.6 )| |p | | | 73. : | |M |00306 BD | +590913 |V0913 Oph |175503.6+141039 |EA/SD | 11.5 | 14.5 | |p |45414.620 | | 1.9173304 | |A-F |00001 00558| +590914 |V0914 Oph |175921.3+114703 |LB | 10.0 | 10.8 | |p | | | | |M0 |00306 08953| +590915 |V0915 Oph |182144.2+040912 |M | 11.0 | 16.2 | |p |32740.4 | | 111.09 |40 |Me |08097 06887| +590916 |V0916 Oph |182249.5+040755 |EA/SD | 11.4 | 13.3 | |p |44731.602 | | 3.114752 |13 *| |00001 02366| +590917 |V0917 Oph |182323.0+113831 |SR | 11.6 | 14.3 | |p |29114. | | 60.7 | | |00164 02366| +590925 |V0925 Oph |183523.7+062736 |LB | 11.3 | 13.4 | |p | | | | |M3-M5 |00164 02367| +590926 |V0926 Oph |183610.4+065258 |M | 12.4 |< 17.0 | |p |26823. | | 251.3 | | |00164 02367| +590949 |V0949 Oph |180250.9+084753 |SR | 12.0 | 14.0 | |p | | | | | |00814 00533| +590959 |V0959 Oph *|181102.3+031046 |DSCT | 12.4 | 13.1 | |p |43726.469 | | 0.08446 | | |09526 02364| +590970 |V0970 Oph |165446.4+074027 |M | 10.0 | 15. | |V |40383. | | 274.96 | | |00001 00470| +590974 |V0974 Oph |173733.7-294525 |DSCT | 11.6 | 12.0 | |p |28671.437 | | 0.1910568 |30 | |02448 02448| +590983 |V0983 Oph *|175538.0+022841 |EA | 10.5 | 11.3 | |p |36045.244 | | | |A0 |02595 BD | +590986 |V0986 Oph *|180437.4+015508 |* | 6.10 | 6.15 | |V | | | 0.323 | |B0.5III |09523 BD | +590988 |V0988 Oph |182652.8+035449 |SRB | 9.0 | 10.2 | |p |31291. | | 63.2 | |M7e |03135 03763| +591010 |V1010 Oph *|164927.7-154005 |EB/KE | 6.1 | 7.00 | 6.46 |V |38937.7690 | | 0.66142613 | |A5V |09527 06439| +591014 |V1014 Oph |182047.9+055613 |LB | 10.8 | 12.2 | |B | | | | |M5e |04109 BD | +591054 |V1054 Oph *|165528.8-082011 |UV | 10.14 | 11.72 | |U | | | | |M4.5Ve+M4.5Ve |09530 05288| +591055 |V1055 Oph |165752.0-093231 |M | 12.0 |< 15.5 | |p |37140. :| | | |M5IIIe-M8 |05159 GSC | +591065 |V1065 Oph |173853.1+102332 |EA | 12.5 | 13.5 | |p |38558.46 | | | | |03776 03776| +591121 |V1121 Oph *|164915.3-142209 |INT | 11.2 | 12.2 | |V | | | | |K5Ve(T) |05548 HIP | +591125 |V1125 Oph |165506.0+113302 |E | 11. | 11.5 | |p |39262.49 | | | | |05515 05515| +591277 |V1277 Oph |170316.7-211853 |SRA | 12.2 | 15.2 | |p | | | | | |05455 06286| +591482 |V1482 Oph |170935.2-190215 |M | 12.3 | 16.3 | |p |36736. | | 178.0 | |M5e-M8e |05455 06286| +591814 |V1814 Oph *|171806.1-165840 |SRA | 12.5 |< 14.4 | |p |36752. | | 112.0 : | | |05455 00551| +591854 |V1854 Oph |171846.2-020342 |M | 12.5 |< 16. | |p |41517. | | 211. | | |06997 02316| +592045 |V2045 Oph *|165117.8-061440 |M: | 12.1 | | |p | | | | |M5IIIe |05159 USNO | +592048 |V2048 Oph *|180015.8+042207 |GCAS+UV: | 4.55 | 4.85 | |V | | | | |B2-B6IV-VneV |05150 05288| +592052 |V2052 Oph |175618.4+004013 |BCEP | 5.81 | 5.84 | |V |41442.048 | | 0.1398903 |50 |B2IV-V |07579 BD | +592053 |V2053 Oph |181449.4+051256 |LB | 10.3 | 11.3 | |V | | | | | |06368 | +592057 |V2057 Oph |174315.8-035331 |SRB | 11.5 | 13.6 | |p | | | | |M6 |06997 00552| +592065 |V2065 Oph |164255.9-033859 |LB: | 12. | 13. | |p | | | | |M4III-M8 |00122 04238| +592066 |V2066 Oph |165105.9+102052 |ISB: | 12.4 | 13.3 | |V | | | | |M7-M9 |03905 03905| +592067 |V2067 Oph |165928.1-021741 |LB: | 11. | 12.5 | |p | | | | | |00205 02315| +592069 |V2069 Oph |171438.2-004720 |SR: | 12.5 | 14.8 | |V | | | | |M8-M9 |06977 06977| +592076 |V2076 Oph |174151.6-175349 |PVTEL | 9.78 | 10.08 : | |V | | | 0.71 : | |O9.5Ia-B1Ia(p) |04509 BD | +592078 |V2078 Oph |175314.4+104523 |SR | 12.5 | 14.5 | |p | | | | | |00464 00533| +592080 |V2080 Oph |175616.9+085454 |L | 12.5 | 13.5 | |p | | | | | |00464 00533| +592081 |V2081 Oph |175754.4+104222 |LB | 11.5 | 12.5 | |p | | | | |M3 |00464 00533| +592103 |V2103 Oph |173029.4-163015 |M | 12.4 |< 14.3 | |p | | | | |Me |00551 00551| +592105 |V2105 Oph *|162743.5-073553 |SRB: | 5.0 | 5.38 | |V | | | | |M2.5III |06994 BD | +592106 |V2106 Oph *|164935.0-215108 |SR | 7.38 | 7.46 | |V | | | 22. : | |M2III |08225 BD | +592108 |V2108 Oph *|171419.4+085603 |SR: | 6.6 | 8.8 | |I | | | | |M7-M9.8 |06005 07783| +592111 |V2111 Oph |164511.4-030506 |SR | 6.69 | 7.08 | |V | | | 45. : | |M5III |08225 BD | +592112 |V2112 Oph *|171852.8+060508 |DSCTC | 6.50 | 6.52 | |V |44114.5474 | | 0.1874472 | |F0III-IV |09552 BD | +592113 |V2113 Oph |171946.5+020822 |SR: | 6.59 | 6.81 | |V | | | | |M5III |08225 BD | +592114 |V2114 Oph |172744.1+082631 |SR | 6.40 | 6.51 | |V | | | 18. : | |M4III |08225 BD | +592117 |V2117 Oph |175924.3-095442 |EA | 12.4 | 13.3 | |p |42625.366 | | 2.3437433 |17 | |08412 08412| +592118 |V2118 Oph *|180133.2+111709 |* | 7.02 | 7.09 | |V |43330.644 | | 0.8171 |43 |F2IV |09556 BD | +592125 |V2125 Oph |173518.5-220238 |ACV | 6.57 |( 0.041 )| |V | | | 9.75 | |B8p(Si) |08415 BD | +592126 |V2126 Oph |180015.7+003746 |ACV | 6.36 |( 0.008 )| |V | | | 2.41 : | |A3p(Sr-Cr-Eu) |08415 BD | +592128 |V2128 Oph |162613.7-091419 |DSCTC | 9.66 | 9.70 | |V | | | | | |67085 BD | +592129 |V2129 Oph |162740.3-242204 |INT | 11.23 | 11.53 | |V | | | | | |67086 67087| +592133 |V2133 Oph |163621.4-021929 |BY | 6.57 |( 0.04 )| |B | | | | | |67092 BD | +592203 |V2203 Oph |174943.3+042824 |EW/KW | 11.6 | 12.0 | |B | | | | | |67133 67133| +592205 |V2205 Oph |162835.4-091932 |PVTEL | 10.40 | 10.59 | |V | | | | | |68330 BD | +592206 |V2206 Oph |165212.9-125701 |SR: | 10.2 | 11.5 | |V | | | | | |68015 GSC | +592207 |V2207 Oph |170013.2-103700 |M | 8.4 | 10.3 : | |I | | | | | |68015 USNO | +592211 |V2211 Oph |175110.0-080122 |M | 8.9 | 10.6 : | |I | | | | | |68015 USNO | +592213 |V2213 Oph |170516.8+004209 |BY | 6.01 |( 0.04 )| |V | | | | | |69205 BD | +592214 |V2214 Oph |171201.7-293734 |NB | 9.4 | 21. | |V | | | | | |69207 | +592215 |V2215 Oph |171613.4-263246 |RS | 6.26 | 6.34 | |V | | | | | |69011 CoD | +592220 |V2220 Oph |173642.2-234916 |M |>14.3 | 17.2 : | |R | | | | | |69211 69210| +592225 |V2225 Oph |173820.9-241806 |M |>14.5 |< 17.1 | |R | | | | | |69211 69210| +592228 |V2228 Oph |173838.2-235214 |M |>14.1 |< 18. | |R | | | | | |69211 69210| +592243 |V2243 Oph |174311.2-181808 |BE | 9.61 | 9.76 | |V | | | | | |69213 BD | +592244 |V2244 Oph |175126.8-014321 |PVTEL | 11.5 |( 0.09 y )| |p | | | | | |69214 69215| +592253 |V2253 Oph |165256.0-264502 |RS | 8.1 |( 0.18 )| |V | | | | | |71001 CoD | +592254 |V2254 Oph |170346.1-295032 |M | 8.94 | 11.15 | |J | | | | | |71144 2MASS| +592255 |V2255 Oph |170610.7-280522 |M | 8.23 | 11.38 | |K | | | | | |71144 2MASS| +592256 |V2256 Oph |170724.9-283748 |M | 9.36 | 12.31 | |H | | | | | |71144 2MASS| +592257 |V2257 Oph |170745.8-270518 |M | 8.88 | 9.86 | |J | | | | | |71144 USNO | +592258 |V2258 Oph |170748.2-280210 |M | 9.35 | 11.72 | |J | | | | | |71144 USNO | +592259 |V2259 Oph |170752.0-271122 |M | 8.63 | 10.07 | |J | | | | | |71144 GSC22| +592260 |V2260 Oph |170924.3-280221 |M | 7.44 | 8.78 | |J | | | | | |71144 2MASS| +592261 |V2261 Oph |171627.6-252002 |M | 7.67 | 9.07 | |J | | | | | |71144 GSC22| +592262 |V2262 Oph |171635.6-255441 |M | 8.50 | 9.61 | |J | | | | | |71144 2MASS| +592263 |V2263 Oph |171846.9-235856 |M | 8.93 | 10.16 | |J | | | | | |71144 GSC22| +592264 |V2264 Oph |172020.9-264626 |NA | 9.8 |< 21. : | |V | | | | | |71148 71149| +592265 |V2265 Oph |172019.6-243843 |M | 7.26 | 8.86 | |J | | | | | |71144 GSC22| +592266 |V2266 Oph |172314.1-224741 |M | 6.52 | 7.88 | |J | | | | | |71144 USNO | +592267 |V2267 Oph |172558.2-210150 |M | 9.66 | 12.39 | |J | | | | | |71144 2MASS| +592268 |V2268 Oph |172603.5-213736 |M | 7.94 | 9.18 | |J | | | | | |71144 2MASS| +592269 |V2269 Oph |172643.1-214110 |M | 7.45 | 8.04 | |H | | | | | |71144 2MASS| +592270 |V2270 Oph |172708.8-220523 |M | 9.15 | 10.62 | |J | | | | | |71144 2MASS| +592271 |V2271 Oph |172726.3-213337 |M | 8.24 | 9.80 | |J | | | | | |71144 GSC22| +592272 |V2272 Oph |172754.1-214237 |M | 8.18 | 10.05 | |J | | | | | |71144 2MASS| +592273 |V2273 Oph |172906.1-210416 |M | 8.32 | 9.73 | |J | | | | | |71144 2MASS| +592274 |V2274 Oph |172925.1-203934 |M | 11.74 | 13.7 | |J | | | | | |71144 2MASS| +592275 |V2275 Oph |172946.2-212507 |M | 9.80 | 12.61 | |K | | | | | |71144 2MASS| +592276 |V2276 Oph |173033.0-193525 |M | 9.53 | 10.99 | |J | | | | | |71144 2MASS| +592277 |V2277 Oph |173039.5-203145 |M | 9.77 | 11.29 | |J | | | | | |71144 2MASS| +592278 |V2278 Oph |173141.0-195808 |M | 8.14 | 10.16 | |K | | | | | |71144 2MASS| +592280 |V2280 Oph |173215.2-193309 |M | 9.48 | 11.60 | |J | | | | | |71144 2MASS| +592281 |V2281 Oph |173322.1-193552 |M | 8.44 | 10.79 | |K | | | | | |71144 2MASS| +592282 |V2282 Oph |173324.0-194953 |M | 10.62 | 13.10 | |J | | | | | |71144 2MASS| +592283 |V2283 Oph |173516.6-183535 |M | 8.09 | 9.68 | |J | | | | | |71144 2MASS| +592284 |V2284 Oph |173839.6-170614 |M | 9.76 | 11.9 | |J | | | | | |71144 2MASS| +592285 |V2285 Oph |173925.3-164238 |M | 8.68 | 10.26 | |J | | | | | |71144 GSC22| +592286 |V2286 Oph |173938.5-165815 |M | 8.90 | 11.03 | |J | | | | | |71144 2MASS| +592287 |V2287 Oph |174108.5-170600 |M | 7.76 | 9.65 | |J | | | | | |71144 2MASS| +592289 |V2289 Oph |174300.0-160656 |M | 8.14 | 9.73 | |J | | | | | |71144 GSC22| +592290 |V2290 Oph |174305.6-200655 |NA | 9.3 |< 22. | |V | | | | | |71156 | +592291 |V2291 Oph |182538.8+080155 |EA/GS | 7.02 |( 1.1 )| |U | | | | | |71169 BD | +592292 |V2292 Oph |165258.8-000135 |BY: | 6.78 |( 0.04 )| |V | | | | | |72119 BD | +592294 |V2294 Oph |171953.5-084700 |M | 3.99 | 5.7 | |K | | | | | |72121 2MASS| +592295 |V2295 Oph |172506.4-231111 |NA | 9.0 |< 21. | |V | | | | | |72122 | +592296 |V2296 Oph |172808.3+050218 |M | 3.0 | 4.1 | |K | | | | | |72121 GSC | +592297 |V2297 Oph |173313.9+082039 |M | 6.7 | 7.5 | |K | | | | | |72121 2MASS| +592299 |V2299 Oph |174625.7+053109 |BY: | 12.42 |( 0.08 )| |V | | | | | |72125 72126| +592300 |V2300 Oph |180007.3+063314 |ELL: | 6.7 |( 0.02 )| |V | | | | | |72045 BD | +592302 |V2302 Oph |180918.6+091216 |M | 4.07 | 5.5 | |K | | | | | |72121 2MASS| +592303 |V2303 Oph |183829.6+111137 |SR | 11.1 |< 12.5 | |V | | | | | |72128 72128| +592306 |V2306 Oph |163018.1-123945 |BY | 10.05 | 10.10 | |V | | | | | |73018 73210| +592307 |V2307 Oph |164017.9-235345 |INA | 9.50 | 11.13 | |U | | | | | |73211 CoD | +592308 |V2308 Oph |170326.7-283431 |M | 8.11 | 9.40 | |J | | | | | |73116 GSC22| +592309 |V2309 Oph |172400.8-291930 |M | 9.2 : | 18. : | |R | | | | | |73212 73212| +592311 |V2311 Oph |173003.9-262803 |M | 9. : | 17.0 | |R | | | | | |73213 73213| +592313 |V2313 Oph |173544.7-191934 |NA | 7.5 |< 12.5 | |V | | | | | |73215 73216| +592314 |V2314 Oph |174403.6+060343 |DSCTC | 7.43 |( 0.08 )| |V | | | | | |73217 BD | +592315 |V2315 Oph |174415.7+054252 |ELL: | 8.28 | 8.34 | |V | | | | | |73218 BD | +592320 |V2320 Oph |174610.9+053930 |ELL: | 7.36 | 7.39 | |V | | | | | |73218 BD | +592323 |V2323 Oph |174636.4+060714 |ELL: | 8.09 | 8.12 | |V | | | | | |73218 BD | +592324 |V2324 Oph |174646.7+053354 |ELL: | 8.19 | 8.25 | |V | | | | | |73218 BD | +592327 |V2327 Oph |174843.4+054205 |ELL: | 7.51 | 7.54 | |V | | | | | |73218 BD | +592338 |V2338 Oph |180528.9+075421 |CWA: | 12.4 | 13.2 | |p | | | | | |73225 73225| +592347 |V2347 Oph |182751.0+075221 |M | 5.8 | 6.9 | |K | | | | | |73029 GSC22| +592348 |V2348 Oph |160139.8-054142 |LB | 8.93 | 9.19 | |Hp| | | | | |HIP HIP | +592349 |V2349 Oph |160701.1-035240 |LB | 7.31 | 7.45 | |Hp| | | | | |HIP HIP | +592350 |V2350 Oph |162259.5-071232 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +592351 |V2351 Oph |162515.0-095153 |RR: | 8.43 | 8.51 | |Hp| | | | | |HIP HIP | +592352 |V2352 Oph |163440.8+031756 |BY: | 11.33 | 11.67 | |Hp| | | | | |HIP HIP | +592353 |V2353 Oph |164339.7-224411 |ACV | 7.58 | 7.64 | |Hp| | | | | |HIP HIP | +592354 |V2354 Oph |164605.3-165402 |LB: | 8.58 | 8.68 | |Hp| | | | | |HIP HIP | +592355 |V2355 Oph |165055.5-163249 |EB | 7.11 | 7.25 | |Hp| | | | | |HIP HIP | +592356 |V2356 Oph |165219.7+111431 |LB: | 7.07 | 7.26 | |Hp| | | | | |HIP HIP | +592357 |V2357 Oph |165716.8+105951 |EW: | 10.66 | 10.79 | |Hp| | | | | |HIP HIP | +592358 |V2358 Oph |165753.4-194730 |LB | 8.35 | 8.52 | |Hp| | | | | |HIP HIP | +592359 |V2359 Oph |165905.6+113047 |LB | 7.84 | 7.96 | |V | | | | | |HIP HIP | +592360 |V2360 Oph |170018.8-191006 |LB: | 8.34 | 8.45 | |Hp| | | | | |HIP HIP | +592361 |V2361 Oph |170146.9+063636 |LB: | 8.62 | 8.79 | |Hp| | | | | |HIP HIP | +592362 |V2362 Oph |170300.6+044452 |LB: | 8.72 | 8.85 | |Hp| | | | | |HIP HIP | +592363 |V2363 Oph |170531.6+021645 |SRB | 9.51 | 10.18 | |Hp| | | | | |HIP HIP | +592364 |V2364 Oph |170534.7+034603 |SRB | 7.36 | 7.48 | |Hp| | | | | |HIP HIP | +592365 |V2365 Oph |170845.8+091110 |E: | 8.91 | 9.11 | |Hp| | | | | |HIP HIP | +592366 |V2366 Oph |170943.1+001939 |LB: | 8.97 | 9.06 | |Hp| | | | | |HIP HIP | +592367 |V2367 Oph |171340.5-082515 |BY: | 11.88 | 12.15 | |Hp| | | | | |HIP HIP | +592368 |V2368 Oph |171614.3+021110 |EA | 6.22 | 6.42 | |Hp| | | | | |HIP HIP | +592369 |V2369 Oph |171734.7+102459 |BY: | 8.54 | 8.65 | |Hp| | | | | |HIP HIP | +592370 |V2370 Oph |172325.1+105250 |LB: | 9.79 | 9.90 | |Hp| | | | | |HIP HIP | +592371 |V2371 Oph |172434.8-265529 |BCEP | 9.12 | 9.18 | |Hp| | | | | |HIP HIP | +592372 |V2372 Oph |172827.6-290331 |LB | 7.31 | 7.40 | |Hp| | | | | |HIP HIP | +592373 |V2373 Oph |173202.9+024925 |EB | 7.39 | 7.46 | |Hp| | | | | |HIP HIP | +592374 |V2374 Oph |173334.6-221018 |SRD | 7.81 | 7.92 | |Hp| | | | | |HIP HIP | +592375 |V2375 Oph |173317.0+000612 |LB | 7.74 | 7.86 | |Hp| | | | | |HIP HIP | +592376 |V2376 Oph |173414.6-245233 |LB: | 8.01 | 8.11 | |Hp| | | | | |HIP HIP | +592377 |V2377 Oph |173356.0+080958 |EB | 8.60 | 8.73 | |Hp| | | | | |HIP HIP | +592378 |V2378 Oph |173433.4-181315 |E: | 7.17 | 7.28 | |Hp| | | | | |HIP HIP | +592379 |V2379 Oph |173532.6+050101 |E: | 7.95 | 8.12 | |Hp| | | | | |HIP HIP | +592380 |V2380 Oph |173532.6+112202 |LB | 7.60 | 7.70 | |Hp| | | | | |HIP HIP | +592381 |V2381 Oph |173857.9+023930 |RR: | 7.77 | 7.84 | |Hp| | | | | |HIP HIP | +592382 |V2382 Oph |174023.9-285524 |BE | 7.26 | 7.29 | |Hp| | | | | |HIP HIP | +592383 |V2383 Oph |174043.8-074613 |BY: | 10.38 | 10.68 | |Hp| | | | | |HIP HIP | +592384 |V2384 Oph |174230.4-284456 |E | 9.10 | 9.24 | |Hp| | | | | |HIP HIP | +592385 |V2385 Oph |174615.2-010900 |BE | 8.85 | 8.98 | |Hp| | | | | |HIP HIP | +592386 |V2386 Oph |174752.8+062409 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +592387 |V2387 Oph |175221.1+064603 |LB | 7.64 | 7.82 | |Hp| | | | | |HIP HIP | +592388 |V2388 Oph |175414.2+110750 |EB | 6.27 | 6.55 | |Hp| | | | | |HIP HIP | +592389 |V2389 Oph |175607.4-012436 |SRB | 7.65 | 7.82 | |Hp| | | | | |HIP HIP | +592390 |V2390 Oph |175830.9+131154 |LB: | 10.73 | 10.90 | |Hp| | | | | |HIP HIP | +592391 |V2391 Oph *|180527.3+023000 |BY: | 4.14 | 4.16 | |Hp| | | | | |HIP HIP | +592392 |V2392 Oph |181605.6+022239 |SRB: | 6.03 | 6.20 | |Hp| | | | | |HIP HIP | +592393 |V2393 Oph |183323.3+081606 |ACV | 6.40 | 6.44 | |Hp| | | | | |HIP HIP | +592394 |V2394 Oph |163140.7-242516 |EW | 11.25 | 11.95 | |U | | | | | |75180 CoD | +592396 |V2396 Oph |164450.0-201217 |M: | 11.7 |< 15. | |p | | | | | |75021 75021| +592397 |V2397 Oph |165657.5-090647 |M: | 12.0 |< 15.3 | |p | | | | | |75002 GSC22| +592398 |V2398 Oph |170035.0-273804 |IT | 11.32 | 12.82 | |U | | | | | |75086 CoD | +592402 |V2402 Oph |171709.9-285354 |M | 12.2 | 17.2 | |R | | | | | |75183 75184| +592409 |V2409 Oph |171812.3-290629 |M | 12.5 | 17.3 | |R | | | | | |75183 75184| +592424 |V2424 Oph |171921.6-054913 |M | 12.3 |< 15.6 | |p | | | | | |75021 75021| +592425 |V2425 Oph |171918.5-001018 |EA | 10.6 |( 0.83 )| |V | | | | | |75188 BD | +592426 |V2426 Oph |172001.2-285958 |M | 11.9 | 17.1 | |R | | | | | |75183 75184| +592434 |V2434 Oph |172146.8-291734 |M | 11.2 | 17.2 | |R | | | | | |75183 75184| +592443 |V2443 Oph |172245.9-083359 |M | 12.4 | 15.2 | |p | | | | | |75002 GSC22| +592487 |V2487 Oph |173159.8-191356 |NA | 9.5 | 17.7 | |p | | | | | |75189 USNO | +592488 |V2488 Oph |173332.0-295748 |M | 10.5 | 17.1 | |R | | | | | |75183 75184| +592496 |V2496 Oph |174344.8-291544 |M | 8.8 | 10.5 | |K | | | | | |75191 | +592497 |V2497 Oph |174346.7-291537 |M | 8.5 | 9.8 | |K | | | | | |75191 | +592499 |V2499 Oph |175639.1+100627 |M | 11.5 | 14.7 | |V | | | | | |75095 75095| +592500 |V2500 Oph |175748.5+044136 |BY | 9.55 |( 0.02 )| |V | | | | | |75192 75300| +592501 |V2501 Oph |180457.4+085738 |SR: | 12.3 |( 0.31 )| |V | | | | | |75193 GSC | +592502 |V2502 Oph |181704.8+010021 |GDOR: | 6.61 | 6.77 | |Hp| | | | | |75029 BD | +592505 |V2505 Oph |162948.7-215212 |BY | 11.23 |( 0.13 )| |V | | | | | |76134 76135| +592506 |V2506 Oph |164547.8-021303 |LB: | 12.3 | 13.1 | |V | | | | | |76012 USNO | +592512 |V2512 Oph |165712.8-125123 |SR: | 11.1 | 12.0 | |* | | | | | |76146 USNO | +592513 |V2513 Oph |165824.1-202336 |SR: | 11.1 | 12.1 | |* | | | | | |76057 USNO | +592514 |V2514 Oph |165846.7-124347 |M | 11.2 |< 14.2 | |* | | | | | |76146 GSC | +592515 |V2515 Oph |165913.1-112022 |SR: | 11.8 | 13.9 | |* | | | | | |76147 USNO | +592516 |V2516 Oph |170022.5-300133 |M: | 12.5 | 15.2 | |* | | | | | |76057 USNO | +592517 |V2517 Oph |170052.2-290134 |SR: | 12.4 |< 14.0 | |* | | | | | |76057 USNO | +592518 |V2518 Oph |170100.9-224947 |M: | 11.5 | 13.9 | |* | | | | | |76057 USNO | +592519 |V2519 Oph |170257.4-285719 |SR: | 11.3 | 12.3 | |* | | | | | |76057 GSC22| +592520 |V2520 Oph |170258.9-285716 |SR: | 11.2 | 12.1 | |* | | | | | |76057 USNO | +592521 |V2521 Oph |170307.0-203326 |SR: | 8.8 | 10.0 | |* | | | | | |76057 USNO | +592522 |V2522 Oph |170811.4-275300 |M: | 12.0 | 17.7 | |R | | | | | |76148 76148| +592523 |V2523 Oph |170836.6-172630 |ZAND | 10.9 | 12.94 | |V | | | | | |76149 UCAC2| +592525 |V2525 Oph |171505.3-092350 |M | 11.9 |< 15.1 | |V | | | | | |76150 USNO | +592532 |V2532 Oph |173734.1-174714 |M: | 12.4 |< 13.3 | |V | | | | | |76161 USNO | +592536 |V2536 Oph |180957.3+085026 |EA | 11.55 | 12.08 | |* | | | | | |76170 GSC | +592537 |V2537 Oph |182113.5+002723 |M: | 12.5 |< 15.1 | |V | | | | | |76175 USNO | +592538 |V2538 Oph |183206.9+080712 |SR: | 12.1 | 12.5 | |* | | | | | |76066 GSC | +592539 |V2539 Oph |183506.1+081428 |SR: | 12.2 | 12.4 | |* | | | | | |76169 USNO | +592540 |V2540 Oph |173734.6-162323 |NB | 8.5 |< 20. | |V | | | | | |77130 77131| +592542 |V2542 Oph |165410.6-013644 |DSCTC | 6.25 |( 0.02 )| |V | | | | | |77124 DM | +592544 |V2544 Oph |165612.2+035308 |LB | 10.3 | 11.4 | |* | | | | | |77125 GSC | +592545 |V2545 Oph |170222.7+041027 |LB | 11.0 | 11.4 | |* | | | | | |77125 GSC22| +592546 |V2546 Oph |170307.4-152715 |M: | 10.3 | 12.7 | |* | | | | | |77004 GSC | +592547 |V2547 Oph |170725.7-105056 |M | 11.8 | 16.0 | |* | | | | | |77004 USNO | +592548 |V2548 Oph |170758.1-244431 |M | 4.57 | 6.45 | |K | | | | | |77081 2MASS| +592549 |V2549 Oph |170922.1+123958 |EA | 11.8 | 12.3 | |V | | | | | |77100 GSC | +592550 |V2550 Oph |171918.6+040324 |LB | 11.7 | 12.1 | |* | | | | | |77125 GSC | +592551 |V2551 Oph |172017.0-200645 |SR: | 12.1 | 12.9 | |V | | | | | |77004 UCAC2| +592552 |V2552 Oph |172314.6-225206 |RCB | 10.5 | 13.6 | |V | | | | | |77004 GSC | +592553 |V2553 Oph |172441.6+135358 |EW | 11.3 | 11.8 | |V | | | | | |77100 GSC | +592554 |V2554 Oph |172511.8-173426 |M | 12.1 |< 14.5 | |V | | | | | |77004 GSC | +592555 |V2555 Oph |172515.6+040108 |LB | 11.3 | 11.7 | |* | | | | | |77125 GSC | +592556 |V2556 Oph |173530.4+040539 |LB | 11.0 | 11.4 | |* | | | | | |77125 GSC | +592557 |V2557 Oph |173628.4-182849 |SR: | 11.0 | 13.1 | |V | | | | | |77004 UCAC2| +592558 |V2558 Oph |174619.4+040908 |LB | 12.0 | 12.4 | |* | | | | | |77125 GSC | +592560 |V2560 Oph |175433.4+041146 |LB | 12.2 | 12.7 | |* | | | | | |77125 GSC | +592562 |V2562 Oph |180306.3+072417 |LB | 12.3 | 12.6 | |* | | | | | |77125 GSC | +592563 |V2563 Oph |180421.5+003624 |E | 11.6 | 13.0 | |* | | | | | |77147 GSC | +592564 |V2564 Oph |180440.1+034645 |LB: | 7.34 |( 0.05 )| |V | | | | | |77023 DM | +592565 |V2565 Oph |180522.0+040547 |LB | 11.4 | 11.8 | |* | | | | | |77125 GSC | +592567 |V2567 Oph |181719.8+040034 |LB | 12.2 | 12.7 | |* | | | | | |77125 GSC | +592568 |V2568 Oph |181854.6+041157 |LB | 11.3 | 11.7 | |* | | | | | |77125 GSC | +592569 |V2569 Oph |182523.0+035222 |LB | 12.1 | 12.4 | |* | | | | | |77125 GSC | +592570 |V2570 Oph |182810.8+075715 |SRS: | 7.66 | 7.72 | |V | | | | | |77053 DM | +592571 |V2571 Oph |182934.6+032812 |SR: | 12.0 | 14.1 | |* | | | | | |77156 GSC22| +592577 |V2577 Oph *|161353.4-063216 |M | 11.6 |< 14.8 | |V |51350 | | 232. | | |78103 78128| +592578 |V2578 Oph |162419.8-133830 |BY | 8.40 |( 0.02 )| |V | | | 13.83 : | |K2V |78018 DM | +592579 |V2579 Oph |162935.3+013819 |RPHS | 11.32 |( 0.04 R )| |B | | | | |sd:B |78116 78009| +592580 |V2580 Oph |163941.4-205239 |SRB | 10.3 | 11.5 | |V | | | 200. : | |M7e |78090 GSC | +592581 |V2581 Oph |164129.1+011847 |BY | 9.42 |( 0.04 )| |V | | | 10.58 | |K2V |78018 DM | +592583 |V2583 Oph |165405.9-271647 |M | 12.3 |< 16.5 | |B |47740 | | 349.4 | | |78196 78196| +592584 |V2584 Oph |165657.8-300109 |M: | 10.7 |< 16. | |* | | | | | |78006 2MASS| +592585 |V2585 Oph |165811.3-233108 |M | 9.8 | 12.6 | |* |53190 | | 300. | | |78006 USNO | +592587 |V2587 Oph |165942.0-225013 |M | 10.5 | 13.1 | |I |51415 :| | 390. : | | |78006 USNO | +592588 |V2588 Oph |165944.1+073834 |SRA | 11.4 | 13.0 | |V |52814 | | 142. |60 | |78194 GSC | +592593 |V2593 Oph |170202.3-283826 |M: | 10.9 | 13.7 | |* |52852 :| | | | |78006 USNO | +592595 |V2595 Oph |170256.6-295034 |SR | 11.3 | 13.5 | |* |51284 :| | | | |78006 2MASS| +592596 |V2596 Oph |170300.7-244516 |M: | 11.2 | 13.8 | |* | | | | | |78006 USNO | +592599 |V2599 Oph |170936.2-264018 |M | 5.94 | 7.06 | |K | | | 545. : | | |78202 2MASS| +592600 |V2600 Oph *|171139.2-232800 |RV | 11.5 | 12.8 | 12.6 |V |53576.6 | | 53.10 | |F8: |78040 GSC | +592605 |V2605 Oph |172951.5+012946 |SRA | 10.1 | 11.9 | |V |52473 | | 113. | |M2e |78090 GSC | +592608 |V2608 Oph |174643.6-040807 |SRA | 12.2 | 14.6 | |V |51310 | | 349. | | |78103 2MASS| +592610 |V2610 Oph |175332.3-035455 |EW | 9.20 | 9.45 | |V |52369.95 | | 0.42651 | |K0 |78094 DM | +592612 |V2612 Oph *|182913.0+064714 |EW | 9.36 | 9.74 | 9.70 |V |52454.7107 | | 0.375296 | |G0 |78244 DM | +592618 |V2618 Oph |162832.9-010429 |SR | 12.3 | 13.5 | |V | | | 129. | | |79064 79010| +592623 |V2623 Oph |170158.8+065528 |SRB | 11.4 | 12.0 | |V | | | 57.45 | | |79064 79022| +592624 |V2624 Oph |170353.7-245043 |SRB | 8.7 | 9.2 | |V | | | 66. | |M2 |79064 DM | +592625 |V2625 Oph |170355.2+123321 |LB | 11.4 | 12.8 | |V | | | | |M7 |79109 79017| +592626 |V2626 Oph *|170532.0+103247 |EA | 8.26 | 8.43 | 8.36 |V |52787.824 | | 10.8743 |04 |A5 |79006 DM | +592627 |V2627 Oph |170603.8+014321 |SRB | 11.3 | 13.1 | |V | | | 105. | |M7 |79067 79113| +592628 |V2628 Oph *|170655.5-233305 |CEP: | 11.9 | 12.5 | |V |53795.57 | | 13.3144 |35 | |79209 GSC | +592630 |V2630 Oph |170905.5+112743 |LB | 11.2 | 12.1 | |V | | | | | |79100 GSC | +592631 |V2631 Oph |171022.1-040336 |CWA | 12.1 | 13.4 | |V |53125.053 | | 15.1902 |40 | |79209 79113| +592632 |V2632 Oph |171152.0-235435 |EA | 12.08 | 13.6 : | 13.6 : |V |53491.810 | | 2.69691 |07 : | |79001 USNO | +592634 |V2634 Oph |171307.2+094531 |SRB | 11.4 | 12.1 | |V | | | 74. : | | |79100 79112| +592635 |V2635 Oph |171629.8-002916 |EW | 12.15 | 12.6 : | 12.6 : |V |52720.838 | | 0.43096 | | |79009 79113| +592637 |V2637 Oph |171829.6+051631 |EW | 11.80 | 12.27 | 12.21 |V |51325.797 | | 0.386182 | | |79004 GSC | +592640 |V2640 Oph *|172801.5+050715 |EW | 12.50 | 13.2 | 13.2 |V |52860.694 | | 0.419892 | | |79003 GSC | +592642 |V2642 Oph *|173557.1+115041 |EA | 11.40 | 12.0 | |V |53122.835 | | 3.46464 |08 | |79003 79040| +592643 |V2643 Oph |173600.3-203125 |M | 12.5 |< 14.4 | |V |52837. | | 300. : | | |79100 USNO | +592645 |V2645 Oph |174038.6+013626 |RRAB | 12.0 | 12.9 | |V |51951.457 | | 0.59821094 |17 | |79069 79013| +592647 |V2647 Oph |174220.3+102004 |EA | 12.30 | 12.85 : | 12.40 |V |53077.904 | | 3.3515 |09 | |79009 79022| +592649 |V2649 Oph |174338.5+135518 |LB | 9.6 | 11.4 | |V | | | | |M0 |79100 79089| +592651 |V2651 Oph |174910.6+084459 |SRB: | 10.9 | 11.9 | |V | | | 147. : | | |79100 79040| +592653 |V2653 Oph |175247.3+034739 |EA | 9.51 | 9.77 | 9.75 |V |48744.790 | | 4.39435 |07 |G5 |79004 DM | +592654 |V2654 Oph |175501.6+032120 |LB | 11.9 | 12.3 | |* | | | | | |79100 79201| +592655 |V2655 Oph |175556.4+015143 |LB | 11.0 | 11.2 | |* | | | | | |79100 79013| +592666 |V2666 Oph *|180933.9+035936 |GDOR | 6.11 |( 0.02 )| |B | | | 0.61439 | |F0V+G1V |79202 DM | +592675 |V2675 Oph |162636.8-241900 |INT | 12.0 | 15.3 | |K | | | | | |80435 2MASS| NL80_2 +592678 |V2678 Oph |162226.3+000723 |RS | 11.00 | 11.26 | |V | | | 23.1111 | | |80002 GSC | NL80_3 +592681 |V2681 Oph |162334.9+002430 |SR | 11.8 | 12.3 | |V | | | 73.6 | | |80001 GSC | NL80_3 +592696 |V2696 Oph |164327.3-141200 |LB | 7.76 | 9.61 | |K | | | | | |80166 2MASS| NL80_3 +592697 |V2697 Oph |164444.2+030934 |RRAB | 12.05 | 13.2 | |V |54299.63 | | 0.635183 |15 | |80002 GSC | NL80_3 +592700 |V2700 Oph |165122.1-005001 |BY | 11.4 | 11.6 | |* | | | 3.3593 | | |80043 80043| NL80_3 +592701 |V2701 Oph |165308.3+112343 |EW | 11.80 | 12.25 | 12.20 |V |52383.63 | | 0.339611 | | |80002 GSC | NL80_3 +592702 |V2702 Oph |165357.7+073450 |RS | 10.4 | 11.0 | |V | | | 11.510 | | |80034 GSC | NL80_3 +592704 |V2704 Oph |165736.1-295506 |SRA | 12.1 | 12.7 | |V |54927. | | 265. | | |80001 GSC | NL80_3 +592707 |V2707 Oph |165925.4-282317 |SRA | 11.6 |< 12.5 | |V |54747. | | 265. | | |80001 GSC | NL80_3 +592708 |V2708 Oph |165950.2-242120 |SRA | 12.2 | 14.4 | |V |54628. | | 333.1 | | |80002 GSC | NL80_3 +592709 |V2709 Oph *|170223.2-242159 |RRAB | 11.4 | 12.0 | |V |54336.5419 | | 0.4613693 |25 | |80377 GSC | NL80_3 +592711 |V2711 Oph *|170523.4+032619 |DSCTC | 7.31 |( 0.05 )| |V | | | 0.0931015 | |F0IV |80363 HIP | NL80_3 +592712 |V2712 Oph |170525.3-160546 |EB | 12.15 | 12.45 | 12.27 |V |51936.99 | | 0.562227 | | |80459 GSC | NL80_3 +592713 |V2713 Oph |170653.1+063501 |EB | 10.89 | 11.49 | 11.12 |V |52775.769 | | 0.490381 | | |80042 GSC | NL80_3 +592714 |V2714 Oph |170755.7-285206 |M | 4.61 | 6.28 | |K | | | 531. | |C |80166 2MASS| NL80_3 +592722 |V2722 Oph |171700.8-250815 |EA | 11.46 | 12.49 | 11.58 |V |53479.870 | | 3.2864 |13 | |80048 GSC | NL80_3 +592723 |V2723 Oph |171711.5+081525 |BY | 11.75 | 11.95 | |* | | | 3.098 | | |80370 80370| NL80_3 +592724 |V2724 Oph *|172156.9+095654 |EB | 11.75 | 12.05 | 11.90 |V |54542.8713 | | 0.444632 | | |80002 GSC | NL80_3 +592725 |V2725 Oph |172313.4+015151 |RRAB | 12.0 | 12.5 | |V |51951.0 | | 0.737670 |15 | |80002 GSC | NL80_3 +592726 |V2726 Oph |172336.1-011127 |RRAB | 11.9 | 12.8 | |V |53160.736 | | 0.667788 |20 | |80001 GSC | NL80_3 +592727 |V2727 Oph |172518.2-233046 |M | 3.74 | 5.42 | |K | | | 603. | |C |80166 2MASS| NL80_3 +592737 |V2737 Oph |173508.4-292328 |EA | 11.21 | 11.40 | 11.24 |V |51961.875 | | 2.8723 |09 |A5 |80048 GSC | NL80_3 +592742 |V2742 Oph *|173904.5+020315 |GDOR | 7.74 |( 0.04 )| |V | | | 0.82775 | |F2V-IV |80363 HIP | NL80_3 +592744 |V2744 Oph *|174108.3-232828 |DCEPS | 9.39 | 9.59 | |V |53451.68 | | 3.779703 | |F5/6Ib/II |80326 DM | NL80_3 +592746 |V2746 Oph |174244.4-172853 |SRA | 12.2 | 13.4 | |V |54297. | | 346. | |M7 |80477 GSC | NL80_3 +592748 |V2748 Oph |174431.6+131257 |BY | 11.44 |( 0.08 *)| |V | | | 2.7015 | | |80021 GSC | NL80_3 +592751 |V2751 Oph |174844.7-050715 |BY | 12.0 | 12.2 | |* | | | 6.576 | | |80043 80043| NL80_3 +592755 |V2755 Oph |175153.0+093752 |BY | 10.86 |( 0.05 *)| |V | | | 9.1586 | | |80021 GSC | NL80_3 +592756 |V2756 Oph |175215.6-003846 |SRA | 11.6 | 12.5 | |V |55032. | | 325. | | |80001 GSC | NL80_3 +592757 |V2757 Oph |175216.4+093758 |BY | 10.02 |( 0.04 *)| |V | | | 7.2957 | | |80021 GSC | NL80_3 +592762 |V2762 Oph |175809.4+092241 |BY | 10.90 |( 0.07 )| |V | | | 0.4885 | | |80021 GSC | NL80_3 +592763 |V2763 Oph |175954.4+104419 |BY | 10.91 |( 0.10 *)| |V | | | 5.8737 | | |80021 GSC | NL80_3 +592765 |V2765 Oph |180328.5+011631 |SRB | 11.5 | 12.0 | |V | | | 30.6 | | |80001 GSC | NL80_3 +592767 |V2767 Oph |180500.4+111014 |BY | 11.02 |( 0.05 *)| |V | | | 0.6070 | | |80021 GSC | NL80_3 +592788 |V2788 Oph |180941.6+110903 |LB | 12.0 | 12.4 | |* | | | | | |80062 USNO | NL80_3 +592796 |V2796 Oph |182306.9+064213 |DSCTC: | 12.3 |( 0.01 )| |V | | | 0.14254 | | |80504 GSC | NL80_3 +592797 |V2797 Oph |182309.1+065134 |DSCTC: | 10.6 |( 0.01 )| |V | | | 0.19818 | | |80504 GSC | NL80_3 +592798 |V2798 Oph |182342.5+062409 |DSCTC: | 11.1 |( 0.01 )| |V | | | 0.09855 | | |80504 GSC | NL80_3 +592799 |V2799 Oph |182347.9+072806 |EA | 12.4 | 13.0 | 12.9 |V |53896.90 | | 1.024466 |08 | |80001 GSC | NL80_3 +592800 |V2800 Oph |182426.8+064541 |DSCTC: | 12.1 |( 0.01 )| |V | | | 0.19167 | | |80504 GSC | NL80_3 +592801 |V2801 Oph |182432.6+073046 |DSCTC: | 12.0 |( 0.01 )| |V | | | 0.06285 | | |80504 GSC | NL80_3 +592802 |V2802 Oph |182440.7+070406 |DSCTC: | 9.2 |( 0.04 )| |V | | | 0.15436 | |F0 |80504 DM | NL80_3 +592803 |V2803 Oph |182504.2+062555 |DSCTC: | 10.0 |( 0.01 )| |V | | | 0.03658 | |A1 |80504 GSC | NL80_3 +592804 |V2804 Oph |182514.8+063353 |DSCTC: | 11.5 |( 0.01 )| |V | | | 0.07567 | | |80504 GSC | NL80_3 +592805 |V2805 Oph |182619.7+072758 |DSCTC: | 12.2 |( 0.01 )| |V | | | 0.14068 | | |80504 GSC | NL80_3 +592806 |V2806 Oph |182654.1+065805 |DSCTC: | 11.8 |( 0.04 )| |V | | | 0.14862 | | |80504 GSC | NL80_3 +592807 |V2807 Oph |182733.4+065600 |DSCTC: | 10.7 |( 0.01 )| |V | | | 0.06734 | |A8 |80504 GSC | NL80_3 +592808 |V2808 Oph |182740.9+070833 |DSCTC: | 11.4 |( 0.02 )| |V | | | 0.05363 | | |80504 GSC | NL80_3 +592810 |V2810 Oph |182833.9+065315 |DSCTC: | 10.0 |( 0.01 )| |V | | | 0.04723 | |A3 |80504 GSC | NL80_3 +592811 |V2811 Oph |182842.9+065125 |DSCTC: | 10.4 |( 0.01 )| |V | | | 0.03634 | |A5 |80504 GSC | NL80_3 +592812 |V2812 Oph |182858.0+072832 |DSCT | 12.0 | 12.23 | |V | | | 0.09568 | | |80504 GSC | NL80_3 +592813 |V2813 Oph |182904.4+062654 |EA | 11.0 |( 0.03 )| |V |52496.93 | | 2.38079 | |A2V |80504 GSC | NL80_3 +592816 |V2816 Oph |183041.9+064750 |BCEP: | 10.9 |( 0.01 )| |V | | | 0.31777 | | |80504 GSC | NL80_3 +592818 |V2818 Oph |183059.8+071150 |DSCTC: | 10.7 |( 0.01 )| |V | | | 0.11008 | | |80504 GSC | NL80_3 +592821 |V2821 Oph |183205.6+071456 |DSCTC: | 11.9 |( 0.01 )| |V | | | 0.05936 | | |80504 GSC | NL80_3 +592824 |V2824 Oph |183316.5+062909 |DSCTC: | 9.1 |( 0.01 )| |V | | | 0.15686 | |A5 |80504 DM | NL80_3 +599006 |zet Oph |163709.5-103402 |GCAS | 2.56 | 2.58 | |V | | | | |O9.5V(e) |09557 BD | +599008 |tet Oph *|172200.6-245958 |BCEP | 3.25 | 3.31 | |V |40324.230 | | 0.140531 | |B2IV |04207 CoD | +599010 |kap Oph |165740.1+092230 |LB: | 4.1 | 5.0 | |p | | | | |K2III |04808 BD | +599022 |khi Oph *|162701.4-182723 |GCAS | 4.18 | 5.0 | |V | | | | |B1.5IV-Vpe |00495 03389| +599024 |ome Oph *|163208.2-212759 |ACV | 4.44 | 4.51 | |V | | | 2.99 : | |A7p(Sr-Cr) |08415 BD | +600001 |R Ori *|045900.6+080750 |M | 9.05 | 13.4 | |V |41391. | | 377.1 |40 |C8,2e(Ne) |00001 00002| +600002 |S Ori *|052900.9-044133 |M | 7.2 | 14.0 | |V |43945. | | 414.30 |48 |M6.5e-M9.5e |00001 00002| +600003 |T Ori *|053550.4-052835 |INSA | 8.7 | 12.6 | |V | | | | |B8-A3eap |00861 04002| +600004 |U Ori *|055549.2+201031 |M | 4.8 | 13.0 | |V |45254. | | 368.3 |38 |M6e-M9.5e |00001 00002| +600005 |V Ori *|050603.4+040609 |M | 8.9 | 14.7 | |V |39082. | | 263.7 |49 |M3e-M8.0e |00001 00002| +600006 |W Ori *|050523.7+011039 |SRB | 8.2 | 12.4 | |p | | | 212. | |C5,4(N5) |00372 05288| +600007 |X Ori |053738.5-014617 |M | 11.4 |< 15.5 | |p |43451. | | 422.2 | |M9 |00001 00961| +600008 |Y Ori |054133.6-040755 |M | 11.5 |< 16. | |p |34768. | | 271.3 | |M3e-M5 |00001 00962| +600009 |Z Ori *|055550.9+134142 |EA/DS | 9.8 | 10.7 | 9.9 |p |25190.720 | | 5.203265 |12 |B3 |01004 03778| +600010 |RR Ori |060302.6+162240 |M | 9.1 |< 14.7 | |V |44240. | | 251.78 | |M6.5e-M8 |00001 08953| +600011 |RS Ori *|062213.2+144041 |DCEP | 8.01 | 8.88 | |V |42820.794 | | 7.566881 |32 |F5Ib-G1Ib |08632 00963| +600012 |RT Ori *|053313.8+070912 |SRB | 9.7 | 11.8 | |p | | | 321. | |C6,4(Nb) |00372 08953| +600017 |RY Ori |053209.9-024947 |INSB | 10.8 | 13.9 | |p | | | | |F6e |08044 00964| +600022 |SV Ori *|053358.4-063617 |UVN | 11.3 | 19.7 | |U | | | | |K7-M0-1e |00861 00861| +600035 |UV Ori |055357.6-062518 |LB | 10.9 | 13.0 | |p | | | | |M5 |04079 08953| +600036 |UW Ori *|055552.9+201016 |EB/KE | 11.1 | 11.6 | 11.6 |p |19822.869 | | 1.0080525 | |B |03779 00884| +600037 |UX Ori |050430.0-034714 |ISA(YY) | 8.7 | 12.8 | |p | | | | |A2ea |05762 08953| +600038 |UY Ori *|053200.3-045554 |RR: | 12.0 | 13.2 | |p | | | | |B9 |00861 00861| +600040 |VV Ori *|053331.4-010922 |EA/KE: | 5.31 | 5.66 | 5.50 |V |40890.5158 | | 1.4853784 |20 |B1V+B7V |09469 08953| +600057 |AC Ori *|053516.0-052353 |IN | 12.5 | 15. | |V | | | | | |00861 00861| +600059 |AE Ori *|053517.2-052132 |INS | 12.3 |< 14.1 | |V | | | | | |00861 00861| +600060 |AF Ori *|053518.6-052314 |IN | 12.2 |< 14.4 | |V | | | | | |00861 00861| +600067 |AN Ori *|053542.0-052813 |INSB | 11.0 | 13.6 | |p | | | | |K0-K1IVe |00861 00861| +600084 |BF Ori *|053713.3-063501 |INA | 9.69 | 13.47 | |V | | | | |A0:-FpII-Vea |09468 00861| +600088 |BK Ori *|053155.8+073649 |M | 9.2 | 14. | |p |40925. | | 354.2 |50 |M7e |00001 08953| +600089 |BL Ori |062528.2+144319 |LB | 7.9 | 9.7 | |p | | | | |C6,3(Nb,Tc) |04079 08953| +600090 |BM Ori *|053516.1-052307 |EA | 7.90 | 8.65 | 7.98 |V |40265.343 | | 6.470525 |10 |B2V+A7IV |05465 00861| +600091 |BN Ori |053629.4+065002 |INSB | 8.8 | 13.9 | |p | | | | |F2pea |03786 03786| +600094 |BQ Ori |055707.4+225020 |SR | 9.4 | 11.5 | |p | | | 110. | |M5IIIe-M8III |00589 00119| +600095 |BR Ori |045122.1+143253 |M | 11.0 | 15.5 | |V |35123. | | 159.2 | | |00001 00968| +600110 |CI Ori *|052944.0-010532 |CST: | 4.67 : | 4.71 | |V | | | | |K5III |03712 BD | +600111 |CK Ori |053019.9+041217 |SR: | 5.9 | 7.1 | |V | | | 120. : | |K2IIIe: |09427 08953| +600112 |CL Ori |054419.7+101908 |M | 11.5 | 15.8 | |p |34020. | | 215.0 | |M2e |00001 00970| +600113 |CM Ori *|060354.9+081432 |RRAB | 12.13 | 13.17 | |V |25298.451 | | 0.65592205 |15 | |03506 00530| +600114 |CN Ori *|055207.8-052501 |UGZ | 11.0 | 16.2 | |V | | |( 15.85 ) | |pec(UG) |09470 08852| +600115 |CO Ori *|052738.3+112539 |INSB | 10.3 | 13.8 | |p | | | | |G5Vpe |09468 05469| +600116 |CP Ori *|060701.9+174158 |EA | 11.1 | 12.2 | 11.2 |p |36130.441 | | 5.32053 |12 |G0 |07363 00228| +600117 |CQ Ori |062334.8+135641 |EA | 12.2 | 13.4 | |V |38455.21 | | 2.74016 |14 |F-G: |00001 00530| +600118 |CR Ori |060544.7+131424 |DCEP | 11.99 | 12.58 | |V |25234.2 | | 4.91075 |35 |F7-F8 |00384 00530| +600119 |CS Ori |060725.5+110907 |DCEP | 10.85 | 11.80 | |V |37258.156 | | 3.88939 |23 |F5-G0 |00921 00530| +600120 |CT Ori *|060958.0+095232 |RV: | 9.14 | 12.39 | |V |25649. | | 135.52 | |F9 |01000 00530| +600125 |CY Ori |061448.7+093428 |ISB | 12.3 | 13.0 | |p | | | | |G0V |00386 00530| +600126 |CZ Ori |061643.2+152412 |UGSS | 11.2 | 15.6 | |V | | |( 25.73 ) | |pec(UG) |09497 09472| +600127 |DD Ori |062144.0+131358 |LB | 11.8 |< 12.9 | |p | | | | |M6.5 |09498 00530| +600131 |DH Ori |052612.8-001654 |SRA | 9.4 | 11.7 | |V |27881. | | 165.3 |39 |M0e |01000 08953| +600134 |DL Ori *|054125.4-080555 |INT | 12. | 15. | |p | | | | |K1e(T) |09499 05981| +600135 |DM Ori *|054339.0-050403 |INS | 12.3 | 15.5 | |p | | | | | |04073 04073| +600136 |DN Ori *|060028.4+101305 |EA/DS | 9.8 | 11.1 | 9.9 |p |35577.20 | | 12.96641 |08 |A2e+F5III |08050 08050| +600138 |DP Ori |060139.8+105440 |SRB | 10.5 | 12.5 | |p |33260. | | 90. : | |M6.5 |02563 00002| +600139 |DQ Ori |060155.5+132825 |SRA | 12.3 | 13.6 | |p |25212. | | 133. | |M6.5 |00386 00531| +600140 |DR Ori |060211.0+082704 |LB | 11.7 | 12.8 | |p | | | | |M6.5 |00386 00531| +600142 |DT Ori |060325.8+134356 |M | 12.4 | 19. | |p |25490. | | 429. | |M10 |01000 00531| +600143 |DU Ori |060342.2+075032 |LB | 11.6 | 12.8 | |p | | | | |M2 |00386 00531| +600147 |DY Ori *|060614.9+135419 |RV: | 11.29 | 12.50 : | |V | | | 60.26 | | |00386 00531| +600148 |DZ Ori |060930.9+153918 |EA/SD: | 12.1 | 13.0 | |p |25243.53 | | 1.83614 |14 : | |00386 00530| +600155 |EL Ori |061336.4+083922 |SRB | 12.3 | 13.2 | |p |32173.5 | | 54.8 |45 |M3: |00460 00531| +600157 |EN Ori |061740.7+085648 |LB | 11.8 | 12.7 | |p | | | | |M5 |00386 00531| +600158 |EO Ori |062018.9+112108 |LB | 11.9 | 13.9 | |p | | | | |M6 |00386 00531| +600159 |EP Ori |045057.3+030832 |M | 10.5 | 13. | |p |33182. | | 358.5 | |M10e |03597 06286| +600160 |EQ Ori *|045714.5-033605 |EA/SD | 10.2 | 13.3 | 10.3 |p |31438.743 | | 1.746057 |12 |A0: |00410 08953| +600161 |ER Ori *|051114.5-083325 |EW/KW | 9.28 | 10.01 | 9.97 |V |41626.415 | | 0.4233987 | |F8V |00001 01467| +600162 |ES Ori |045334.8+053646 |EA/DM | 10.48 | 10.6 | |V |26592.484 | | 1.602 |17 *|A2 |00279 00279| +600163 |ET Ori *|045534.3+012250 |EA/SD | 11.2 | 12.3 | 11.3 |p |26684.283 | | 0.9509356 |30 *|G3 |00392 00975| +600164 |EU Ori |051508.3+032849 |M | 10.5 |< 13.6 | |p |38755. | | 327.54 | |M4 |00001 00977| +600165 |EV Ori |051532.4+092436 |SRD | 9.3 | 11.1 | |V | | | 243. | |K0 |04079 BD | +600166 |EW Ori *|052009.2+020240 |EA/D | 9.90 | 10.6 | 10.5 |V |27543.350 | | 6.9368515 |03 *|G0 |08051 08051| +600167 |EX Ori |052428.9-060850 |LB | 10.0 | 12.3 | |p | | | | |M7IIIe |04079 BD | +600168 |EY Ori *|053118.4-054214 |EA/D | 9.43 | 10.13 | 9.54 |V |43527.466 | | 16.787832 |06 |A7Vm |09476 08052| +600169 |EZ Ori *|053418.5-050448 |INSB | 12.0 | 14.1 | |p | | | | |F8Vnea |00861 00861| +600170 |FF Ori *|053511.3+025655 |EA/SD: | 10.2 | 11.0 | 10.3 |p |32216.367 | | 1.810524 |18 |A1 |00758 00132| +600171 |FG Ori |045423.4+075024 |M | 10.3 |< 15.5 | |p |31460. | | 294.69 | | |00862 08953| +600172 |FH Ori *|052318.6+041538 |EA/SD: | 10.5 | 11.5 | |p |25900.387 | | 2.15116 |15 |A1 |00978 00132| +600173 |FI Ori *|062327.4+143247 |EA | 10.8 | 11.7 | |p |38738.725 | | 4.44815 |10 |F5 |00376 00531| +600174 |FK Ori *|050533.1+092010 |EA/SD | 11.8 | 13.8 | |p |45680.512 | | 1.947529 |13 |A2 |00001 00491| +600175 |FL Ori *|050746.6-024438 |EA/SD | 11.4 | 14.6 | |p |45347.464 | | 1.550971 |14 *|A3V |00001 08953| +600176 |FM Ori |050854.4+103334 |EA/DS | 11.3 | 12.9 | |p |25859.588 | | 22.145125 |07 |A5 |00979 00491| +600177 |FN Ori |051635.8+002502 |M | 11. |< 13. | |p |35113. | | 118.5 | |M0 |00001 00975| +600178 |FO Ori *|052809.7+033723 |EA/DS: | 9.5 | 10.3 | 9.7 |p |31820.627 | | 18.80058 |02 |A3 |03115 08953| +600179 |FP Ori |053220.7-103722 |M | 11. |< 12.5 | |p |32956. | | 146.0 | |Me |00001 00975| +600180 |FQ Ori |054428.8+065202 |M | 12. |< 16. | |p |33310. | | 276.0 | |M1 |00001 UCAC2| +600181 |FR Ori *|055105.7+092638 |EB/SD: | 11.0 | 11.9 | 11.1 |p |27862.159 | | 0.88316217 | |A7 |00753 00196| +600182 |FS Ori |045424.9+085607 |LB | 12. | 13.5 | |p | | | | |M3 |00395 BD | +600183 |FT Ori *|061358.1+212539 |EA/DM | 9.1 | 9.90 | 9.60 |V |41348.68416 | | 3.1504148 |07 *|A0 |07358 08953| +600184 |FU Ori *|054522.4+090411 |FU | 9.6 | 16.5 | |p | | | | |F2I-IIpeaq |09478 00981| +600187 |FX Ori |054155.1+145002 |SRB | 7.7 | 10.4 | |V | | | 720. | |M3 |04079 04079| +600189 |FZ Ori *|054121.0+023623 |EW/KW | 10.7 | 11.3 | 11.2 |V |44024.4583 | | 0.3999866 | |G0 |09506 00196| +600190 |GG Ori *|054310.2-004115 |EA/DM | 10.7 | 11.1 | 11.1 |p |33596.496 | | 6.63147 |05 *|A2 |07363 00985| +600192 |GI Ori |061320.7+183245 |SRA | 10.8 | 12.9 | |p |36602. | | 311. |40 : |M7 |00911 00196| +600193 |GK Ori |061742.1+083111 |SR | 9.5 | 11. | |V |26002. | | 236. | |C4-5,4-5(N) |00483 08953| +600198 |GP Ori *|050248.1+151912 |SRB | 12.2 | 13.3 | |p | | | 370. : | |C8,0J:(SC)ea |02563 00156| +600199 |GQ Ori *|061113.6+093645 |DCEP | 8.66 | 9.36 | |V |42798.358 | | 8.616068 |31 |G0 |08632 00986| +600202 |GT Ori |054329.3+000459 |SRD | 11.1 | 12.9 | |p | | | 86. : | |F0 |02427 00156| +600204 |GV Ori |052359.0+143449 |M | 12.4 |< 16.5 | |p |30500. | | 313. : | | |02279 02356| +600205 |GW Ori *|052908.4+115213 |INST | 10.1 | 11.5 | |p | | | | |G5-8Ve(T) |08289 00598| +600209 |HH Ori *|053011.5-063409 |INS | 11.0 | 13.4 | |p | | | | | |09509 00861| +600211 |HK Ori *|053128.0+120910 |INSA | 11.1 | 13.3 | |p | | | | |B7-A4ep/f |02279 00598| +600221 |HU Ori *|053337.3-052653 |INS | 12.38 | 13.9 | |B | | | | | |09509 00861| +600238 |IU Ori *|053434.7-054138 |INSB | 9.6 | 11.1 | |p | | | | |K3III |09509 00861| +600246 |KM Ori *|053456.0-052313 |INB | 12.3 | 13.8 | |p | | | | |K1-K5Ve |00861 00861| +600252 |KS Ori *|053500.1-052516 |INA | 9.7 | 12.0 | |p | | | | |B9-A0Vn |00861 00861| +600257 |KX Ori *|053504.8-044355 |INA: | 6.9 | 8.1 | |p | | | | |B3V |00861 00861| +600260 |LL Ori *|053505.6-052520 |INT | 12.0 | 13.7 | |p | | | | |K4IVe(T) |00861 00861| +600264 |LP Ori *|053509.8-052753 |INSA: | 7.6 | 9.3 | |p | | | | |B1.5Vp |00861 00861| +600266 |LR Ori *|053510.5-052618 |IN | 11.9 | 13.2 | |V | | | | | |00861 00861| +600270 |LV Ori *|053512.6-052344 |IN | 12.1 | 13.3 | |V | | | | | |00861 00861| +600274 |LZ Ori *|053517.9-044107 |INA | 10.3 | 11.1 | |p | | | | |A0: |00861 00861| +600280 |MR Ori *|053517.0-052145 |INSA | 10.3 | 12.0 | |V | | | | |A2V |09509 00861| +600282 |MT Ori *|053517.9-052246 |IN | 11.2 | 13.0 | |V | | | | | |00861 00861| +600286 |MX Ori *|053521.3-050916 |INB | 10.3 | 11.7 | |p | | | | |F8-G5III-IV/Vea |00861 00861| +600292 |NQ Ori *|053526.3-051512 |INB: | 12.1 | 14.1 | |p | | | | |G9IV-V |05576 00861| +600296 |NU Ori *|053531.4-051603 |INSA | 6.80 | 6.93 | |V | | | | |B0.5V |07359 00861| +600297 |NV Ori *|053531.4-053309 |INSB | 8.7 | 11.3 | |V | | | | |F0IV-F6Ve |09509 00861| +600301 |NZ Ori *|053537.3-052640 |IN | 11.9 | 14.2 | |V | | | | | |00861 00861| +600306 |OS Ori |053620.8+084944 |EA/SD | 11.5 | 13.7 | |V |45386.349 | | 2.383525 |10 *|A0 |00001 00196| +600315 |PQ Ori *|053620.9-021058 |INSB | 12.5 | 13.7 | |p | | | | |F0-F5: |00989 00990| +600316 |PR Ori *|053624.9-061732 |IN | 12.2 | 13.6 | |p | | | | | |00861 00861| +600318 |PT Ori *|053636.0-042424 |INB | 12.1 | 13.1 | |B | | | | |G |00861 00861| +600319 |PU Ori *|053624.2-004213 |INSB | 12.5 | 14.6 | |p | | | | |F8:e-K3:e |04076 00990| +600327 |QS Ori |054536.7+121615 |M | 12.0 |< 16.5 | |p |30710. | | 476. | |C7,4e(N) |02279 02351| +600337 |V0337 Ori |055920.6+200208 |DSCT | 10.90 | 11.45 | |V |53068.587 | | 0.2012592 |35 | |00001 02352| +600339 |V0339 Ori |060104.7+165441 |IS: | 12.5 | 16.0 | |p | | | | | |00619 02352| +600340 |V0340 Ori *|060125.6+153010 |SRB | 12.5 | 13.7 | |p |29601. | | 362. | |M4 |00619 02357| +600343 |V0343 Ori *|060500.3+123305 |EW/DW | 10.5 | 11.0 | 11.0 |V |33599.379 | | 0.8091260 | |F1 |08703 00991| +600345 |V0345 Ori |061601.6-010321 |M | 9.5 |< 14. | |p |42126. | | 331.5 | |M3 |00001 05151| +600346 |V0346 Ori |052442.8+014348 |ISA | 10.0 | 11.9 | |p | | | | |A5III: |04079 00491| +600350 |V0350 Ori |054011.8-094211 |ISA | 10.4 | 12.6 | |p | | | | |A0 |00995 00538| +600351 |V0351 Ori |054418.8+000840 |INSA | 8.3 | 11.6 | |p | | | | |A7III |00201 08953| +600352 |V0352 Ori |060146.9-022114 |LB | 8.5 | 10.0 | |p | | | | |M7ep |04079 08953| +600359 |V0359 Ori *|053533.4-045015 |SXARI | 7.25 | 7.36 | |V |42813.44 | | 15.26 | |B2Vp(He-Sr) |08054 08043| +600361 |V0361 Ori *|053531.4-052516 |INSA | 8.16 | 8.29 | |V | | | | |B5V |00861 00861| +600371 |V0371 Ori *|053344.8+015643 |UV | 11.0 | 13.01 | |B | | | | |M2.5Ve |00997 07060| +600372 |V0372 Ori *|053447.0-053415 |INA | 7.94 | 8.13 : | |V | | | | |B9.5V+A0.5 |00861 00861| +600380 |V0380 Ori *|053625.4-064258 |INAT | 8.2 | 11.10 | |B | | | | |B8-A2eq(T) |00861 04002| +600392 |V0392 Ori |061125.2+183300 |EA/KE: | 10.9 | 11.5 | |p |25506.620 | | 0.659284 |15 : |A5 |03142 02358| +600429 |V0429 Ori |045612.0-033124 |RRAB: | 10. | 11. | |V |28876.413 | | 0.5017 |27 | |02455 06286| +600430 |V0430 Ori |050636.1+003255 |SRB | 9.4 | 10.8 | |p | | | 104.5 | |M6 |03807 08953| +600431 |V0431 Ori |051557.7+115840 |SRB | 9.3 | 11.1 | |V |30033. | | 122. : | |C5,5(N) |02563 00158| +600432 |V0432 Ori *|051848.0+135912 |DCEP | 12.1 | 13.3 | |p |30321.479 | | 5.065635 |15 |F5-G0 |03809 02356| +600435 |V0435 Ori *|052403.9+061824 |SRA | 12.5 | 14.5 | |p |35565. | | 188. | |S4,3(M4) |00001 02351| +600440 |V0440 Ori |052823.2+084128 |LB | 12.3 | 13.5 | |p | | | | |M5 |02279 02351| +600451 |V0451 Ori |053126.8+110123 |GCAS | 8.5 | 9.5 | |p | | | | |B9e |08289 00598| +600471 |V0471 Ori |053524.5+132927 |LB | 11.9 | 13.3 | |p | | | | |M5 |02279 02351| +600495 |V0495 Ori *|053521.7-052527 |IN | 12.5 |< 13.5 | |I | | | | | |01698 01698| +600520 |V0520 Ori |054405.0+065716 |LB | 11.7 | 13.3 | |p | | | | |M4 |02279 02351| +600524 |V0524 Ori |054716.0+100453 |LB | 12.4 | 13.8 | |p | | | | |M |02279 02357| +600530 |V0530 Ori |060433.8-031152 |EA/D | 10.6 | 11.3 | |p |25558.430 | | 6.110792 |06 |G0 |02594 BD | +600533 |V0533 Ori |052003.8-044912 |SR: | 12.4 | 13.0 | |p | | | | |M |02404 BD | +600534 |V0534 Ori |052025.7-054706 |INT | 12.5 | 14.04 | |B | | | | |e(T) |04360 02346| +600535 |V0535 Ori |052320.7-043414 |LB | 10.9 | 11.6 | |B | | | | |M6 |02576 BD | +600536 |V0536 Ori |052454.6+015808 |EA/DM | 10.4 | 11.0 | |B |26793.275 | | 3.163264 |08 |A2 |03835 08613| +600541 |V0541 Ori *|053324.4-052117 |INS | 12.1 | 12.7 | |B | | | | | |04075 00861| +600566 |V0566 Ori *|053535.8-051221 |INSA | 9.8 | 10.6 | |B | | | | |A0Vn |04079 00861| +600586 |V0586 Ori *|053659.3-060916 |INA | 9.65 | 11.2 | |B | | | | |A2Vea |04082 04082| +600613 |V0613 Ori |054135.0+113924 |IS | 12.4 | 14.2 | |p | | | | |ea |08289 02842| +600640 |V0640 Ori *|055500.5-092214 |EA/SD | 11.2 | 13.5 | |p |28897.341 | | 2.02074 |11 | |04089 04089| +600642 |V0642 Ori *|055925.7+091529 |EA/DM | 8.75 | 9.1 | |B |27126.360 | | 2.757240 |17 |A0 |04014 BD | +600643 |V0643 Ori *|060700.9-025458 |EA/DS | 10.7 | 11.5 | |p |33354.197 | | 52.415 |10 |G-K0 |04959 04094| +600647 |V0647 Ori *|062052.4+030752 |EW/DW | 11.5 | 12.0 | 11.9 |p |33705.764 | | 0.977566 | |G0 |00001 02592| +600648 |V0648 Ori *|045232.4+061936 |EA/DM | 11.5 | 12.3 | 12.2 |p |25997.310 | | 1.626468 |10 *|A0 |03183 03183| +600655 |V0655 Ori *|053604.4-050929 |INSB | 12.5 | 16.2 | |B | | | | |ea |03924 02849| +600694 |V0694 Ori *|053156.5-042652 |UVN | 12.5 | 18.22 | |U | | | | | |09501 05573| +600705 |V0705 Ori *|053242.0-053925 |UVN | 12.0 | 16.0 | |B | | | | | |05520 05573| +600788 |V0788 Ori *|053502.9-060525 |UVN | 12.0 : | 17.4 | |B | | | | | |05520 05573| +600815 |V0815 Ori *|053552.6-050506 |INSB | 12.30 | 13.4 | |B | | | | |G2IVe:-K2-5V |05576 00861| +600845 |V0845 Ori *|053640.7-065205 |UVN | 12.5 | 17.5 | |B | | | | | |05520 05573| +600901 |V0901 Ori *|054056.4-013026 |SXARI | 6.97 | 7.02 | |V |42808.59 | | 1.5385 | |B2Vp |08054 08043| +600904 |V0904 Ori *|054157.1-055638 |UVN | 11.7 | 14.7 | |B | | | | | |05520 05573| +600915 |V0915 Ori |060113.9+163324 |LB | 12. | 13. | |p | | | | | |05515 05515| +600916 |V0916 Ori *|060818.1+135818 |BCEP | 8.11 | 8.13 | |B | | | 0.39912 : | |B2.5V |05522 07525| +600917 |V0917 Ori *|060827.4+135551 |BCEP | 8.77 | 8.90 | |V | | | 0.4033 | |B3Vn |05522 BD | +600963 |V0963 Ori |061916.9+203448 |BCEP: | 8.47 : | 8.50 | |V | | | 0.2 : | |B2Ibpea |05838 BD | +600964 |V0964 Ori *|050754.5-020849 |RRAB | 11.5 | 13. | |p |31500.138 | | 0.5046561 |20 |A0 |05734 00132| +601004 |V1004 Ori *|055824.4+015014 |DSCTC | 5.88 | 5.92 | |V | | | 0.0611 | |A5m |08679 BD | +601005 |V1005 Ori *|045934.8+014701 |BY+UV | 9.96 | 10.17 | |V |44521.37 | | 4.565 |50 |M0.5Ve |09503 05288| +601012 |V1012 Ori |051136.5-022249 |IS: | 12.5 | 16.5 : | |p | | | | | |01217 01217| +601016 |V1016 Ori *|053515.8-052314 |EA | 6.72 | 7.65 | |V |43144.600 | | 65.43233 |01 |B0.5Vp |09522 00861| +601024 |V1024 Ori |060603.5+061914 |LB: | 11.7 | 12.5 | |p | | | | |M6 |03467 00196| +601027 |V1027 Ori |061203.8+145602 |EA | 10.5 | 11. | |p |26735.386 | | | |G5 |00196 03467| +601028 |V1028 Ori *|062204.2+105341 |EB | 9.69 | 9.94 | |V | | | 3. | |B2IV |07903 BD | +601030 |V1030 Ori *|053847.2-023541 |SXARI | 6.61 | 6.77 | 6.71 |V |42778.819 | | 1.19080 | |B3Vp(He+)ea |09524 08043| +601031 |V1031 Ori *|054726.9-103159 |EA/DM | 6.02 | 6.43 | 6.32 |V |42688.8732 | | 3.4057 |01 |A4V |08476 BD | +601032 |V1032 Ori |050434.1+152415 |ACV | 4.65 | 4.69 | |V |43864.78 | | 4.6398 |50 |B9p(Si) |04013 BD | +601044 |V1044 Ori *|053416.5-053646 |INB | 11.46 | 11.53 | |V | | | | |G5-G7IVea |08436 00861| +601045 |V1045 Ori *|053454.0-040638 |ACV | 6.73 |( 0.045 )| |V |43470.63 | | 1.564 |40 |B9IVp(Si-Mn) |04013 00861| +601046 |V1046 Ori *|053521.9-042939 |E:+SXARI | 6.54 | 6.58 | 6.58 |V |43495.091 | | 0.94629 | |B2Vp(He+) |04134 00861| +601051 |V1051 Ori |054046.2-102431 |ACV | 6.52 |( 0.02 )| |V |41728.18 | | 1.099 |55 |B9.5IIIp(Si) |04136 BD | +601054 |V1054 Ori *|054825.5-004535 |ACV | 7.32 | 7.35 | |V |44202.159 | | 8.635 | |F0p(Sr-Eu) |08934 BD | +601056 |V1056 Ori *|062048.3+054426 |LC | 7.93 | 8.19 | |V | | | | |M3Ib-II |02556 BD | +601057 |V1057 Ori |051804.1+132504 |SRB | 7.70 | 8.11 | |V | | | 67. | |M5III |04142 04142| +601071 |V1071 Ori *|053450.6-060222 |UVN | 12.4 | 13.5 | |V | | | | | |08780 00861| +601073 |V1073 Ori *|053528.4-052620 |INA | 9.48 | 9.59 | |V | | | | |B9.5V |08043 08043| +601085 |V1085 Ori |051141.4+003053 |ACV | 6.65 | 6.70 | |V | | | | | |67072 67141| +601086 |V1086 Ori |052444.8+015047 |GCAS | 4.92 | 4.96 | |V | | | | | |67143 67141| +601093 |V1093 Ori |053045.2-002224 |ACV | 8.20 |( 0.03 )| |V | | | | | |67072 67141| +601099 |V1099 Ori |053213.1-013602 |SXARI | 8.29 |( 0.03 )| |V | | | | | |67072 BD | +601101 |V1101 Ori |053214.8-043106 |SXARI | 8.14 |( 0.06 )| |V | | | | | |67072 67148| +601107 |V1107 Ori |053326.1+003717 |SXARI | 8.06 |( 0.02 )| |V | | | | | |67072 BD | +601125 |V1125 Ori |053548.4-061736 |UVN | 11.9 | 20.2 | |U | | | | | |67150 USNO | +601130 |V1130 Ori |053618.8-001813 |ACV | 8.54 |( 0.03 )| |V | | | | | |67072 BD | +601133 |V1133 Ori |053631.0-062714 |ACV | 8.11 |( 0.03 )| |V | | | | | |67072 67141| +601147 |V1147 Ori |053946.2-024032 |ACV | 9.01 |( 0.06 )| |V | | | | | |67072 67141| +601148 |V1148 Ori |053955.4-031950 |ACV | 8.04 |( 0.04 )| |V | | | | | |67072 67141| +601149 |V1149 Ori |054126.8+034641 |RS: | 7.2 |( 0.11 )| |V | | | | | |67163 BD | +601154 |V1154 Ori |060830.4+135712 |RRC | 10.90 | 11.10 | |V | | | | | |67166 67170| +601155 |V1155 Ori |061901.8+171931 |ACV | 6.32 |( 0.02 )| |V | | | | | |67131 BD | +601156 |V1156 Ori |052350.4+020456 |SXARI | 7.89 |( 0.03 )| |V | | | | | |68187 BD | +601159 |V1159 Ori |052859.5-033353 |INS: | 12.5 | 16.0 | |p | | | | | |68178 68178| +601162 |V1162 Ori |053202.0-071525 |DSCT | 9.78 | 9.97 | |V | | | | | |68180 BD | +601169 |V1169 Ori |053412.6-045025 |INT | 11.01 |( 0.10 )| |Ic| | | 5.62 | |K4e |78072 GSC | +601179 |V1179 Ori |053606.2-072347 |ACV | 7.37 |( 0.10 )| |V | | | | | |68187 BD | +601185 |V1185 Ori |053739.1-050840 |INS: | 12.0 | 17.4 | |U | | | | | |68178 68178| +601187 |V1187 Ori |053942.6-080908 |LB: | 12.0 | 13.0 | |V | | | | | |68015 GSC | +601192 |V1192 Ori |050008.2+031712 |RS | 7.50 | 7.57 | |V | | | | | |69011 BD | +601197 |V1197 Ori |054309.3-013648 |ELL | 6.30 |( 0.03 )| |V | | | | | |69154 BD | +601198 |V1198 Ori |045817.0+002714 |RS | 7.12 | 7.19 | |V | | | | | |70084 BD | +601199 |V1199 Ori |051127.3-083430 |DSCT: | 8.8 |( 0.16 )| |V | | | | | |70085 70085| +601202 |V1202 Ori |045605.3+100309 |EA | 11.88 | 12.76 | |V | | | | | |71036 71037| +601228 |V1228 Ori |053512.3-052348 |IN: | 12.21 | 12.51 | |Ic| | | | | |71052 71053| +601229 |V1229 Ori |053518.3-052238 |IN: | 11.36 | 11.64 | |Ic| | | | | |71052 71053| +601230 |V1230 Ori |053520.7-052145 |IN: | 9.12 | 9.30 | |Ic| | | | | |71052 71053| +601232 |V1232 Ori |053526.2-052737 |IN | 11.5 | 12.9 | |V | | | | | |71055 71046| +601247 |V1247 Ori |053805.3-011522 |DSCTC | 9.82 | 9.87 | |V | | | | | |71017 BD | +601258 |V1258 Ori |054526.3-041434 |SR: | 12.0 | 12.6 | |p | | | | | |71059 71059| +601259 |V1259 Ori |060359.6+072551 |M | 6.04 | 8.27 | |K | | | | | |71061 USNO | +601260 |V1260 Ori |061928.9+132654 |RS | 7.7 |( 0.11 )| |V | | | | | |71001 BD | +601261 |V1261 Ori |052218.6-083958 |EA/GS/WD | 6.91 |( 0.27 )| |V | | | | | |72129 BD | +601271 |V1271 Ori |053509.6+100152 |INA | 9.83 | 9.95 | |y | | | | | |72131 BD | +601279 |V1279 Ori |053516.7-052404 |IN | 11.5 |( 0.34 )| |Ic| | | | | |72132 72133| +601294 |V1294 Ori |053531.3-051533 |IN | 12.1 |( 0.16 )| |Ic| | | | | |72132 72133| +601299 |V1299 Ori |053756.6-014050 |IB: | 12.1 | 13.0 | |p | | | | | |72022 GSC | +601300 |V1300 Ori |053751.3-063951 |UVN | 12.3 | 15.47 | |U | | | | | |72130 72130| +601307 |V1307 Ori |060200.0+163057 |INA | 9.48 |( 0.35 )| |V | | | | | |72131 72029| +601308 |V1308 Ori |061845.5+151652 |INA | 11.47 | 11.62 | |V | | | | | |72028 72051| +601321 |V1321 Ori |053504.3-050813 |INT | 10.55 | 10.75 | |V | | | | | |73103 73232| +601326 |V1326 Ori |053509.7-052327 |BY | 11.9 |( 0.3 )| |Ic| | | | | |73233 73234| +601328 |V1328 Ori |053514.2-052425 |BY | 11.8 |( 0.13 )| |Ic| | | | | |73233 73234| +601330 |V1330 Ori |053514.9-052239 |BY | 11.86 |( 0.31 )| |Ic| | | | | |73233 73234| +601331 |V1331 Ori |053515.3-052216 |BY: | 12.5 |( 2.11 )| |Ic| | | | | |73233 73234| +601333 |V1333 Ori |053517.0-052233 |BY | 12.2 |( 0.21 )| |Ic| | | | | |73233 73234| +601338 |V1338 Ori |053520.2-052639 |BY | 11.7 |( 0.08 )| |Ic| | | | | |73233 73234| +601352 |V1352 Ori |054209.3+122922 |BY | 11.48 | 11.55 | |V | | | | | |73018 73237| +601355 |V1355 Ori |060240.4-005137 |RS | 8.97 | 9.35 | |V | | | | | |73055 BD | +601356 |V1356 Ori |060824.1+135648 |ACV | 10.80 |( 0.15 u )| |V | | | | | |73240 73241| +601357 |V1357 Ori |061312.5+103738 |RS: | 6.44 | 6.49 | |V | | | | | |73242 BD | +601358 |V1358 Ori |061908.1-032620 |BY | 7.91 | 7.99 | |V | | | | | |73055 BD | +601359 |V1359 Ori |044954.9-022839 |DSCTC | 8.52 | 8.56 | |Hp| | | | | |HIP HIP | +601360 |V1360 Ori |050106.0+034302 |LPB: | 7.18 | 7.22 | |Hp| | | | | |HIP HIP | +601361 |V1361 Ori |050303.1+144557 |EB | 9.21 | 9.42 | |Hp| | | | | |HIP HIP | +601362 |V1362 Ori |050540.4+062755 |LB: | 9.94 | 10.08 | |Hp| | | | | |HIP HIP | +601363 |V1363 Ori |050702.1-004733 |EW | 10.35 | 10.59 | |Hp| | | | | |HIP HIP | +601364 |V1364 Ori |050929.8+142121 |LB: | 7.95 | 8.08 | |Hp| | | | | |HIP HIP | +601365 |V1365 Ori |051437.0-003346 |BY: | 6.46 | 6.87 | |Hp| | | | | |HIP HIP | +601366 |V1366 Ori |051600.5-094835 |E: | 9.87 | 10.64 | |Hp| | | | | |HIP HIP | +601367 |V1367 Ori |051654.3+043950 |LB | 8.58 | 8.78 | |Hp| | | | | |HIP HIP | +601368 |V1368 Ori |052113.4+072119 |SRA | 9.66 | 10.01 | |Hp| | | | | |HIP HIP | +601369 |V1369 Ori |052119.3+040043 |BE | 6.47 | 6.67 | |Hp| | | | | |HIP HIP | +601370 |V1370 Ori |052555.9-022008 |LPB | 8.23 | 8.29 | |Hp| | | | | |HIP HIP | +601371 |V1371 Ori |052759.1+125442 |EB | 8.16 | 8.24 | |Hp| | | | | |HIP HIP | +601372 |V1372 Ori |052848.5+020953 |BE | 7.06 | 7.19 | |Hp| | | | | |HIP HIP | +601373 |V1373 Ori |052905.8-063806 |SRD | 8.83 | 8.91 | |Hp| | | | | |HIP HIP | +601374 |V1374 Ori |053141.0+091334 |BE | 7.45 | 7.72 | |Hp| | | | | |HIP HIP | +601375 |V1375 Ori |053143.7-031259 |E: | 6.82 | 7.00 | |Hp| | | | | |HIP HIP | +601376 |V1376 Ori |053516.7+084203 |LB | 6.89 | 7.19 | |Hp| | | | | |HIP HIP | +601377 |V1377 Ori *|053535.9-031510 |LPB | 6.35 | 6.37 | |Hp| | | | | |HIP HIP | +601378 |V1378 Ori |053736.8-045603 |LPB | 7.06 | 7.12 | |Hp| | | | | |HIP HIP | +601379 |V1379 Ori |053745.9-004642 |LPB | 7.56 | 7.60 | |Hp| | | | | |HIP HIP | +601380 |V1380 Ori *|054707.9+001756 |EA | 9.76 | 10.61 | |Hp| | | | | |HIP HIP | +601381 |V1381 Ori |055422.5-010435 |LB: | 7.25 | 7.51 | |Hp| | | | | |HIP HIP | +601382 |V1382 Ori |055444.7+135117 |BE: | 7.82 | 7.96 | |Hp| | | | | |HIP HIP | +601383 |V1383 Ori |055547.3-073810 |EB | 8.47 | 8.66 | |Hp| | | | | |HIP HIP | +601384 |V1384 Ori |055650.6+162118 |EA | 7.14 | 7.41 | |Hp| | | | | |HIP HIP | +601385 |V1385 Ori |060110.5+192514 |EB | 7.47 | 7.64 | |Hp| | | | | |HIP HIP | +601386 |V1386 Ori |060640.5+153232 |BY: | 6.88 | 6.94 | |Hp| | | | | |HIP HIP | +601387 |V1387 Ori |060925.2+171100 |EB | 8.77 | 8.87 | |Hp| | | | | |HIP HIP | +601388 |V1388 Ori |061059.2+115942 |EA | 7.41 | 7.76 | |Hp| | | | | |HIP HIP | +601389 |V1389 Ori |061259.6+060059 |SRB: | 6.49 | 6.59 | |Hp| | | | | |HIP HIP | +601390 |V1390 Ori |061342.2+084245 |BE | 8.04 | 8.16 | |Hp| | | | | |HIP HIP | +601391 |V1391 Ori |061527.9+174501 |LB | 8.14 | 8.43 | |Hp| | | | | |HIP HIP | +601392 |V1392 Ori |061617.9+090140 |EB | 7.73 | 7.92 | |Hp| | | | | |HIP HIP | +601393 |V1393 Ori |061743.6-001507 |CST: | 11.3 | | |V | | | | |A5 | HIP | +601394 |V1394 Ori |061825.9-010746 |LB | 9.60 | 9.93 | |Hp| | | | | |HIP HIP | +601395 |V1395 Ori |061858.9+101934 |LB: | 8.92 | 9.02 | |Hp| | | | | |HIP HIP | +601399 |V1399 Ori |053521.0-052349 |INB | 10.68 |( 0.16 )| |Ic| | | | | |75302 75196| +601402 |V1402 Ori |054016.1+123901 |UV | 6.73 | 14.02 | |U | | | | | |75198 75199| +601403 |V1403 Ori |054003.9-011943 |EA | 10.60 | 11.62 | |V | | | | | |75200 75201| +601404 |V1404 Ori |054037.0+134822 |M | 6.52 | 8.25 | |J | | | | | |75202 75203| +601406 |V1406 Ori |045700.7+151753 |IT | 10.24 | 10.34 | |V | | | | | |76033 GSC | +601407 |V1407 Ori |045717.7+152509 |IT | 10.22 | 10.38 | |V | | | | | |76033 GSC | +601408 |V1408 Ori |051452.1+101107 |SR | 11.74 | 12.14 | |* | | | | | |76041 GSC | +601409 |V1409 Ori |053019.0+112020 |INA | 10.12 | 10.24 | |V | | | | | |76027 DM | +601410 |V1410 Ori |053157.3+111741 |INA | 9.48 | 9.73 | |V | | | | | |76027 DM | +601443 |V1443 Ori |053444.5-044214 |IN | 12.3 |( 0.15 )| |I | | | | | |76044 76046| +601444 |V1444 Ori |053445.1-052504 |INB | 11.4 |( 0.3 )| |I | | | | | |76048 76047| +601453 |V1453 Ori |053449.7+101611 |SR | 12.06 | 12.25 | |* | | | | | |76049 GSC | +601454 |V1454 Ori |053450.7-052401 |INB | 12.5 |( 0.15 )| |I | | | | | |76048 76047| +601487 |V1487 Ori |053510.5-052246 |INB | 12.38 |( 0.19 )| |Ic| | | | | |76051 76047| +601496 |V1496 Ori |053513.8-052207 |FU: | 12.30 |( 0.59 )| |Ic| | | | | |76051 76047| +601501 |V1501 Ori |053515.5-052514 |INB | 11.7 |( 0.25 )| |I | | | | | |76048 76047| +601506 |V1506 Ori |053516.5-054240 |IN | 12.4 |( 0.16 )| |I | | | | | |76044 76046| +601510 |V1510 Ori |053517.5-052257 |INB | 12.35 |( 1.5 )| |Ic| | | | | |76048 76047| +601523 |V1523 Ori |053521.3-052643 |INB | 12.1 |( 0.4 )| |I | | | | | |76048 76047| +601535 |V1535 Ori |053525.4-051048 |INB | 12.5 |( 0.2 )| |I | | | | | |76044 76047| +601539 |V1539 Ori |053527.5-053520 |INB | 12.0 |( 0.20 )| |I | | | | | |76044 76047| +601549 |V1549 Ori |053529.0-054950 |IN | 12.2 |( 0.16 )| |I | | | | | |76044 76046| +601576 |V1576 Ori |053539.1-050856 |INB | 12.0 |( 0.12 )| |I | | | | | |76044 76047| +601607 |V1607 Ori |053624.1-054448 |IN | 12.5 |( 0.22 )| |I | | | | | |76044 76046| +601620 |V1620 Ori |054404.5+111955 |SR: | 11.8 | 13.4 | |V | | | | | |76054 GSC | +601621 |V1621 Ori |054407.8+100543 |SR | 11.92 | 12.12 | |* | | | | | |76055 GSC | +601623 |V1623 Ori |055227.9+062053 |SRA | 11.7 | 12.5 | |V | | | | | |76056 GSC | +601626 |V1626 Ori |060520.1+100426 |E | 11.57 | 12.07 | |* | | | | | |76058 GSC | +601629 |V1629 Ori |060833.6-004252 |SR: | 11.9 | 12.6 | |V | | | | | |76012 GSC | +601633 |V1633 Ori |061856.2+040920 |EA | 12.1 |( 0.7 )| |V | | | | | |76140 UCAC2| +601634 |V1634 Ori |062040.0+061608 |SRA: | 11.62 | 12.16 | |* | | | | | |76060 GSC | +601635 |V1635 Ori |062454.0+101405 |E | 11.72 | 12.11 | |* | | | | | |76061 GSC | +601637 |V1637 Ori |045308.6-032953 |EA | 12.3 |( 1.12 )| |V | | | | | |77038 77215| +601638 |V1638 Ori |045321.9-032255 |EB | 11.5 |( 0.39 )| |V | | | | | |77039 GSC | +601640 |V1640 Ori |051722.0+101828 |RRC | 12.38 | 12.93 | |V | | | | | |77042 GSC | +601641 |V1641 Ori |052427.8-103924 |M | 11.5 | 16.2 | |P | | | | | |77044 77216| +601642 |V1642 Ori |052920.6+004128 |E | 12.30 | 13.07 | |V | | | | | |77045 GSC | +601643 |V1643 Ori |053234.5-071240 |DSCTC | 10.26 |( 0.03 * )| |V | | | | | |77046 DM | +601644 |V1644 Ori |055807.5+172059 |M | 11.7 | 15.8 | |I | | | | | |77012 77013| +601645 |V1645 Ori |060107.3-021509 |SR | 8.77 | 8.98 | |V | | | | | |77053 DM | +601646 |V1646 Ori |061542.4+162813 |LB | 11.6 | 12.3 | |* | | | | | |77125 GSC | +601649 |V1649 Ori |052331.1+051923 |DSCTC | 6.34 |( 0.01 b )| |V | | | 0.0259 | |A2V |78037 DM | +601650 |V1650 Ori *|052911.4-060805 |INB: | 10.43 | 11.5 : | |V | | | | |F7 |78038 DM | +601651 |V1651 Ori |053127.2-051029 |INB | 12.00 |( 0.07 )| |Ic| | | 4.08 : | | |78072 GSC | +601655 |V1655 Ori |053211.7-050708 |INB | 11.96 |( 0.05 )| |Ic| | | 4.12 | |K8 |78072 GSC | +601657 |V1657 Ori |053308.9-052310 |INB | 12.36 |( 0.10 )| |Ic| | | 10.96 | |K4 |78072 GSC | +601667 |V1667 Ori |053346.1-053427 |INB | 12.34 |( 0.11 )| |Ic| | | 4.65 | |K8 |78072 USNO | +601676 |V1676 Ori |053423.9-051540 |INB | 11.19 |( 0.16 Ic)| |J | | | 21.45 | |M0.5 |78072 USNO | +601686 |V1686 Ori |053435.5-042721 |INB | 11.17 |( 0.04 )| |Ic| | | 4.47 | |K1 |78072 GSC | +601689 |V1689 Ori |053438.7-055743 |INB | 12.09 |( 0.09 )| |Ic| | | 4.42 | |K6 |78072 USNO | +601692 |V1692 Ori |053440.9-044020 |INB | 12.46 |( 0.08 )| |Ic| | | 1.87 | |K7 |78072 USNO | +601693 |V1693 Ori |053441.0-054518 |INB | 11.60 |( 0.20 )| |Ic| | | 4.61 | |K8 |78072 USNO | +601701 |V1701 Ori |053447.6-054351 |INB | 11.34 |( 0.11 )| |Ic| | | 4.18 | | |78072 GSC | +601703 |V1703 Ori |053448.2-044740 |INB | 11.55 |( 0.09 )| |Ic| | | 6.82 | |M1 |78072 USNO | +601706 |V1706 Ori |053451.1-044341 |INB | 11.64 |( 0.06 )| |Ic| | | 1.29 | | |78072 USNO | +601707 |V1707 Ori |053451.3-044757 |INB | 11.38 |( 0.10 )| |Ic| | | 1.69 : | | |78072 2MASS| +601715 |V1715 Ori |053502.7-044929 |INB | 12.10 |( 0.05 )| |Ic| | | 6.96 | | |78072 2MASS| +601718 |V1718 Ori |053503.3-044921 |INT | 10.82 |( 0.34 )| |Ic| | | 10.46 | |ea |78072 2MASS| +601727 |V1727 Ori |053512.5-044426 |INB | 11.97 |( 0.11 )| |Ic| | | 1.14 | |K6 |78072 2MASS| +601730 |V1730 Ori |053516.8-044033 |INB | 11.59 |( 0.21 )| |Ic| | | 2.64 | |K7 |78072 2MASS| +601735 |V1735 Ori |053522.4-050911 |INB | 11.67 |( 0.10 )| |Ic| | | 4.78 | |K4 |78072 USNO | +601738 |V1738 Ori |053527.9-044503 |INB | 11.83 |( 0.04 )| |Ic| | | 29.99 : | | |78072 USNO | +601739 |V1739 Ori |053528.6-045504 |INB | 11.17 |( 0.06 )| |Ic| | | 0.53 | |K1 |78072 USNO | +601740 |V1740 Ori |053529.0-050604 |INB | 12.13 |( 0.07 )| |Ic| | | 3.30 | |K1,2IV-V |78072 USNO | +601751 |V1751 Ori |053540.8-044831 |INB | 11.12 |( 0.10 )| |Ic| | | 5.50 | |K0 |78072 2MASS| +601760 |V1760 Ori |053551.6-050809 |INB | 10.74 |( 0.41 )| |Ic| | | 2.82 | |K1Ve |78072 GSC | +601762 |V1762 Ori |053554.5-044805 |INB | 10.74 |( 0.15 )| |Ic| | | 1.32 | |G6 |78072 USNO | +601765 |V1765 Ori |053601.8-043417 |INB | 12.31 |( 0.05 )| |Ic| | | 27.55 | |K7 |78072 GSC | +601777 |V1777 Ori |053700.9-054137 |INB | 11.46 |( 0.06 )| |Ic| | | 3.19 | |K4 |78072 GSC | +601781 |V1781 Ori |053720.1-051150 |INB | 12.45 |( 0.08 )| |Ic| | | 1.91 | |M2.5 |78072 USNO | +601788 |V1788 Ori |053814.5-052513 |INA | 9.76 | 9.85 | |V | | | | |B9Ve |78038 DM | +601789 |V1789 Ori |053839.7-050843 |INB | 11.61 |( 0.11 )| |Ic| | | 1.08 | |K5 |78072 GSC | +601790 |V1790 Ori |054024.3-004617 |DSCTC | 10.63 |( 0.01 b )| |V | | | 0.0425 | |A2V |78037 DM | +601791 |V1791 Ori |054037.4-080403 |INB: | 11.55 | 14.57 | |V | | | | |Fe |78038 USNO | +601793 |V1793 Ori |055403.0+014022 |INT | 9.45 | 9.95 | |V | | | | |K2:n(Li) |78038 DM | +601800 |V1800 Ori |045418.7+111044 |M | 12.0 |< 14.4 | |V |53777. | | 317. | | |79190 79190| +601801 |V1801 Ori |050138.0+025425 |EA/RS | 8.91 | 9.15 | 9.05 |V |52997.720 | | 4.14357 | |G3/G5V |79004 DM | +601802 |V1802 Ori |050221.2+052920 |M | 11.8 : |< 14.2 | |V |52503. | | 346. | | |79100 GSC | +601803 |V1803 Ori |050913.7+012131 |SR | 12.2 | 13.7 | |V |53850. | | 245. | | |79100 79054| +601804 |V1804 Ori *|052305.5+010325 |EA | 7.08 | 7.14 | 7.12 |V |48188.925 | | 2.22878 |08 |B9.5V |79006 DM | +601806 |V1806 Ori |052545.9-040547 |EA | 11.57 | 12.4 : | 12.1 : |V |53058.657 | | 4.48716 |06 |G4 |79003 GSC | +601807 |V1807 Ori |052639.2+013724 |SR | 12.2 | 13.7 | |V | | | 236. | | |79100 79054| +601808 |V1808 Ori |052649.7-091339 |SR | 11.6 | 14.4 | |V | | | 154. | | |79064 79178| +601809 |V1809 Ori |052753.9+113701 |SRB | 8.9 | 9.2 | |V | | | 29.9 | |M0 |79100 DM | +601810 |V1810 Ori |053115.8+094120 |SRB | 11.0 | 11.8 | |V | | | 66.1 | | |79064 79017| +601811 |V1811 Ori *|053412.4+002450 |EA | 9.52 | 9.66 | 9.64 : |V |51962.558 | | 3.21472 |06 |A2 |79004 DM | +601814 |V1814 Ori *|053709.5-060616 |INT | 10.65 | 10.85 | |V | | | 5.77 | |K0IV/Ve |79042 79231| +601815 |V1815 Ori |053751.7+085132 |EA | 11.95 | 13.32 | 12.3 |* |52896.886 | | 5.5416 |09 | |79006 79017| +601816 |V1816 Ori |054326.3+100424 |SRB | 11.1 | 11.7 | |V | | | 152. | | |79064 79017| +601818 |V1818 Ori *|055342.6-102401 |IN | 11.0 | 14.1 | |V | | | | |ea |79100 GSC | +601819 |V1819 Ori |055428.8+123156 |DCEP | 12.4 | 13.1 | |V |53268.89 | | 3.14948 |20 | |79100 79040| +601820 |V1820 Ori *|055437.1+045411 |RRAB | 12.5 | 13.4 | |V |53042.598 | | 0.479067 |25 : | |79100 79181| +601822 |V1822 Ori |061707.9+150638 |LB | 10.6 | 10.9 | |* | | | | |M6 |79100 GSC | +601823 |V1823 Ori |061717.4+154228 |EA | 11.55 | 12.06 | 12.05 |* |51504.715 | | 2.55156 |10 | |79003 GSC | +601825 |V1825 Ori |044445.4+081347 |BY | 12.05 | 12.30 | |V | | | 2.93 | |K4 |80127 GSC | NL80_1 +601831 |V1831 Ori |045004.7+015043 |IB | 12.03 |( 0.07 )| |V | | | 2.23 | |K3 |80127 GSC | NL80_1 +601833 |V1833 Ori *|045110.2+074257 |EW | 10.32 | 10.55 | 10.53 |V |51594.630 | | 0.377198 | |KO |80042 DM | NL80_1 +601834 |V1834 Ori *|045456.4+083600 |EA | 6.85 | 6.94 | 6.87 |V |47998.857 | | 1.51058 |08 |A2III |80011 HIP | NL80_1 +601840 |V1840 Ori *|045946.2+143055 |IB | 11.56 | 11.89 | |V | | | 1.2308 | |K4 |80154 GSC | NL80_1 +601841 |V1841 Ori |050049.3+152701 |RS | 10.74 | 11.06 | |V | | | 2.763 | |K2IV |80034 GSC | NL80_1 +601843 |V1843 Ori |050305.9+054840 |RS: | 10.62 | 10.68 | |V | | | 3.94 | |G2V |80151 DM | NL80_1 +601848 |V1848 Ori *|050836.4+051222 |EW | 11.05 | 11.75 | 11.65 |V |54066.4302 | | 0.2663496 | | |80182 80182| NL80_1 +601849 |V1849 Ori |050900.7-031507 |IB | 11.27 |( 0.05 )| |V | | | 0.734 | |K1 |80151 GSC | NL80_1 +601850 |V1850 Ori |051138.9-034847 |IB | 11.68 |( 0.08 )| |V | | | 1.31 | |K1 |80151 GSC | NL80_1 +601851 |V1851 Ori *|051244.9+101510 |EW | 12.3 | 13.1 | 13.05 : |V |53821.518 | | 0.276945 | | |80002 GSC | NL80_1 +601852 |V1852 Ori |051305.8+085131 |IB | 12.4 | 12.9 | |V | | | 4.0182 | |K3 |80034 GSC | NL80_1 +601853 |V1853 Ori *|051306.1+155812 |EW | 11.80 | 12.22 | 12.20 : |V |54066.5778 | | 0.383004 | | |80182 80182| NL80_1 +601854 |V1854 Ori |051319.0+013447 |RS | 10.20 | 10.48 | |V | | | 3.656 | |G0 |80034 DM | NL80_1 +601855 |V1855 Ori |051754.4-070819 |IB | 10.62 | 10.74 | |V | | | 0.761 | |K0 |80151 DM | NL80_1 +601856 |V1856 Ori |051802.2+071240 |RS: | 12.36 |( 0.06 )| |V | | | 0.872 | |K2 |80151 GSC | NL80_1 +601857 |V1857 Ori |051838.3+095916 |IB | 12.46 | 12.61 | |V | | | 1.59 | |K2 |80151 GSC | NL80_1 +601859 |V1859 Ori *|052254.8+085805 |RS | 10.26 | 10.52 | |V | | | 5.988 | |G9 |80151 DM | NL80_1 +601861 |V1861 Ori |052344.4-075338 |IB | 12.24 | 12.34 | |V | | | 1.402 | |K5V |80151 GSC | NL80_1 +601862 |V1862 Ori |052422.1-063916 |IB | 12.24 | 12.32 | |V | | | 0.530 | |G5III-IV |80151 GSC | NL80_1 +601864 |V1864 Ori |052616.0+030502 |RS: | 11.9 | 12.0 | |* | | | 3.6492 | | |80060 80060| NL80_1 +601865 |V1865 Ori *|052620.2+153700 |EW | 12.4 | 12.9 | 12.8 |V |53768.318 | | 0.717380 | | |80002 GSC | NL80_1 +601871 |V1871 Ori *|052852.6+063404 |EA: | 12.45 | 12.9 | 12.9 |V |51601.71 | | 11.660 |15 : | |80011 GSC | NL80_1 +601875 |V1875 Ori |052922.2+060654 |LB | 12.35 | 12.85 | |* | | | | | |80062 GSC | NL80_1 +601876 |V1876 Ori |053005.2+004120 |RS: | 9.51 | 9.61 | |V | | | 1.304 | |G3 |80151 DM | NL80_1 +601878 |V1878 Ori *|053042.6-043502 |INB | 11.35 | 11.65 | |V | | | 13.23 | |K2/3+K2/3 |80001 GSC | NL80_1 +601879 |V1879 Ori |053056.2+101500 |IB | 12.48 | 12.57 | |V | | | 0.743 | |K2 |80151 GSC | NL80_1 +601880 |V1880 Ori |053104.7+001724 |BY | 11.80 | 11.97 | |* | | | 13.32 | | |80043 80043| NL80_1 +601882 |V1882 Ori *|053202.3-073156 |IB: | 12.47 | 12.68 | |V | | | 4.06 : | |K2/3+K3 |80151 GSC | NL80_1 +601884 |V1884 Ori *|053222.6+013143 |IB | 11.98 |( 0.07 : )| |V | | | 2.0 : | |K2 |80151 GSC | NL80_1 +601885 |V1885 Ori *|053230.8-042137 |INB | 11.80 | 12.01 | |V | | | 1.165 | |K3 |80151 GSC | NL80_1 +601886 |V1886 Ori |053304.9-075849 |IB | 11.80 | 11.91 | |V | | | 11.03 : | |K1 |80151 GSC | NL80_1 +601889 |V1889 Ori |053338.9-073008 |IB: | 11.33 | 11.50 | |J | | | | | |80189 GSC | NL80_1 +601894 |V1894 Ori |053343.7-062429 |IN | 11.12 | 11.26 | |J | | | 6.52 | | |80189 GSC | NL80_1 +601898 |V1898 Ori |053347.6-052549 |INB | 12.44 | 12.62 | |J | | | | | |80189 2MASS| NL80_1 +601904 |V1904 Ori |053351.4-044822 |INT | 12.32 | 12.78 | |J | | | | |ea |80189 80091| NL80_1 +601917 |V1917 Ori |053403.8-061605 |IN | 11.97 | 12.08 | |J | | | | | |80189 2MASS| NL80_1 +601918 |V1918 Ori |053404.1-084324 |INSA | 11.46 | 11.62 | |J | | | | | |80189 GSC | NL80_1 +601922 |V1922 Ori |053406.0-052244 |INB | 12.10 | 12.60 | |J | | | | | |80189 2MASS| NL80_1 +601924 |V1924 Ori |053406.7-062412 |INB | 11.59 | 11.82 | |J | | | 6.11 | | |80189 2MASS| NL80_1 +601928 |V1928 Ori *|053409.2-080214 |INB | 12.27 | 12.44 | |J | | | | | |80189 2MASS| NL80_1 +601931 |V1931 Ori *|053410.5-045035 |INSB | 10.90 | 11.01 | |J | | | | | |80189 2MASS| NL80_1 +601936 |V1936 Ori |053414.9-025254 |INA: | 6.89 | 7.03 | |J | | | | |B3Vn |80189 HIP | NL80_1 +601937 |V1937 Ori |053416.6-035723 |INSB | 11.03 | 11.20 | |J | | | | | |80189 GSC | NL80_1 +601945 |V1945 Ori |053420.4-025747 |INB | 12.17 | 13.10 | |J | | | | | |80189 2MASS| NL80_1 +601955 |V1955 Ori |053425.5-065347 |INA: | 12.47 | 12.90 | |J | | | | | |80189 GSC | NL80_1 +601956 |V1956 Ori |053426.2-052630 |INT | 10.92 | 11.14 | |J | | | | |K2.5e |80189 2MASS| NL80_1 +601961 |V1961 Ori |053427.4-052422 |INB | 9.49 | 9.71 | |J | | | 5.09 | |G9IV-V |80189 GSC | NL80_1 +601963 |V1963 Ori |053427.7-053155 |INSB | 9.63 | 9.76 | |J | | | | |K2 |80189 GSC | NL80_1 +601965 |V1965 Ori |053429.1-025256 |INSA | 11.59 | 11.70 | |J | | | | | |80189 GSC | NL80_1 +601966 |V1966 Ori |053429.3-060858 |INB | 12.18 | 12.25 | |J | | | | | |80189 GSC | NL80_1 +601967 |V1967 Ori |053429.5-051355 |INSB | 12.39 | 12.78 | |J | | | | |K5.5: |80189 80084| NL80_1 +601971 |V1971 Ori |053430.1-044951 |INT | 11.90 | 12.13 | |J | | | | |e |80189 2MASS| NL80_1 +601972 |V1972 Ori |053430.6-043553 |INT | 12.50 | 13.19 | |J | | | | |M0.5e |80189 2MASS| NL80_1 +601979 |V1979 Ori |053432.7-052107 |INSB | 12.46 | 12.62 | |J | | | | |M1.5 |80189 80084| NL80_1 +601981 |V1981 Ori |053434.0-053451 |INT | 11.65 | 12.01 | |J | | | | |e |80189 80084| NL80_1 +601984 |V1984 Ori |053434.2-025817 |INB | 12.17 | 14.06 | |J | | | | |ea |80189 2MASS| NL80_1 +601986 |V1986 Ori |053435.1-081034 |INSB | 12.46 | 12.66 | |J | | | | | |80189 2MASS| NL80_1 +601992 |V1992 Ori |053437.1-053109 |INT | 12.19 | 12.58 | |J | | | | |M3e |80189 80084| NL80_1 +601994 |V1994 Ori *|053437.6-054311 |INSB | 12.29 | 12.68 | |J | | | | | |80189 2MASS| NL80_1 +602008 |V2008 Ori *|053441.9-045338 |INB | 12.09 | 12.48 | |J | | | | | |80189 2MASS| NL80_1 +602012 |V2012 Ori |053442.7-052838 |INSB | 11.63 | 11.92 | |J | | | | | |80189 80084| NL80_1 +602014 |V2014 Ori *|053443.2-042332 |INA | 7.33 | 7.44 | |J | | | | |B5V |80189 DM | NL80_1 +602019 |V2019 Ori |053445.0-050650 |INT | 11.81 | 11.93 | |J | | | | |e |80189 2MASS| NL80_1 +602023 |V2023 Ori |053446.4-052432 |INB | 11.56 | 11.67 | |J | | | | |M0 |80189 80084| NL80_1 +602025 |V2025 Ori |053446.7-081129 |IB: | 12.06 | 12.21 | |J | | | | | |80189 GSC | NL80_1 +602029 |V2029 Ori |053447.7-061940 |INB | 12.13 | 12.64 | |J | | | 3.66 | | |80189 2MASS| NL80_1 +602031 |V2031 Ori |053447.8-071610 |IN | 11.63 | 11.80 | |J | | | 7.55 | | |80189 GSC | NL80_1 +602033 |V2033 Ori |053447.9-053047 |INB | 12.03 | 12.17 | |J | | | | |M4 |80189 80084| NL80_1 +602038 |V2038 Ori *|053448.5-054228 |INSB | 12.18 | 14.05 | |J | | | | | |80189 2MASS| NL80_1 +602039 |V2039 Ori *|053448.5-033548 |INB | 12.40 | 12.53 | |J | | | | | |80189 GSC | NL80_1 +602045 |V2045 Ori |053449.6-052903 |INT | 12.20 | 12.38 | |J | | | | |M1.5e |80189 80084| NL80_1 +602055 |V2055 Ori |053450.0-062812 |INB | 12.01 | 12.22 | |J | | | 10.17 | | |80189 2MASS| NL80_1 +602056 |V2056 Ori |053450.0-051845 |INA | 8.57 | 8.86 | |J | | | | |A2Vp |80189 DM | NL80_1 +602057 |V2057 Ori |053450.4-052020 |INT | 11.87 | 12.17 | |J | | | | |K6e |80189 80084| NL80_1 +602059 |V2059 Ori |053450.7-045837 |INB | 11.99 | 12.49 | |J | | | | | |80189 2MASS| NL80_1 +602061 |V2061 Ori |053451.2-051655 |INSB | 12.43 | 12.80 | |J | | | | |M3 |80189 80084| NL80_1 +602066 |V2066 Ori |053452.0-052443 |INT | 11.96 | 12.30 | |J | | | | |M3.5e |80189 80084| NL80_1 +602070 |V2070 Ori |053453.5-025420 |INB | 12.12 | 12.23 | |J | | | 2.59 | | |80189 GSC | NL80_1 +602071 |V2071 Ori |053453.9-045622 |INB | 12.32 | 12.43 | |J | | | | | |80189 2MASS| NL80_1 +602073 |V2073 Ori |053454.9-051702 |INT | 11.40 | 11.94 | |J | | | | |K5:e |80189 80084| NL80_1 +602076 |V2076 Ori |053455.1-044828 |INB | 11.06 | 11.22 | |J | | | | |K6 |80189 2MASS| NL80_1 +602077 |V2077 Ori |053455.4-035942 |INB | 11.83 | 11.97 | |J | | | | | |80189 2MASS| NL80_1 +602079 |V2079 Ori |053455.7-045612 |INSB | 12.26 | 12.49 | |J | | | | | |80189 2MASS| NL80_1 +602080 |V2080 Ori |053456.5-052751 |INT | 12.33 | 12.50 | |J | | | 6.50 | |M2e |80189 80084| NL80_1 +602083 |V2083 Ori |053456.7-042021 |INSB | 12.18 | 12.34 | |J | | | | | |80189 2MASS| NL80_1 +602084 |V2084 Ori *|053456.8-044605 |INB | 12.12 | 12.72 | |J | | | 6.24 | | |80189 2MASS| NL80_1 +602085 |V2085 Ori *|053457.3-054406 |INSB | 12.37 | 12.72 | |Ks| | | | | |80189 2MASS| NL80_1 +602087 |V2087 Ori |053457.6-061831 |INSB | 9.77 | 9.95 | |J | | | | |G0V |80189 GSC | NL80_1 +602091 |V2091 Ori |053458.3-054150 |INB | 12.28 | 13.67 | |J | | | | | |80189 2MASS| NL80_1 +602094 |V2094 Ori *|053458.8-052118 |INSB | 11.88 | 12.17 | |J | | | | |K5 |80189 80084| NL80_1 +602097 |V2097 Ori |053459.2-054559 |INSB | 11.62 | 11.81 | |J | | | | | |80189 2MASS| NL80_1 +602098 |V2098 Ori |053459.5-062140 |INB | 11.06 | 11.27 | |J | | | | | |80189 GSC | NL80_1 +602102 |V2102 Ori *|053500.5-052514 |INT | 11.80 | 12.81 | |J | | | | |K6e |80189 80084| NL80_1 +602109 |V2109 Ori *|053501.3-052022 |INB | 12.00 | 12.53 | |J | | | 10.17 | |K7 |80189 80084| NL80_1 +602119 |V2119 Ori |053502.0-041201 |INB | 11.97 | 12.10 | |V | | | 2.348 | |G9 |80151 GSC | NL80_1 +602121 |V2121 Ori *|053502.1-052357 |INB | 11.17 | 12.05 | |Ks| | | | | |80189 2MASS| NL80_1 +602125 |V2125 Ori |053502.8-052208 |INSB | 11.88 | 12.07 | |J | | | | |G: |80189 80084| NL80_1 +602128 |V2128 Ori |053503.2-051830 |INSB | 12.39 | 12.84 | |J | | | | |M1.5 |80189 80084| NL80_1 +602140 |V2140 Ori |053504.5-052357 |INSB | 11.12 | 11.70 | |J | | | | |K2 |80189 80084| NL80_1 +602141 |V2141 Ori *|053504.5-052014 |INB | 11.50 | 11.70 | |Ks| | | | | |80189 2MASS| NL80_1 +602143 |V2143 Ori *|053504.8-052638 |INB | 11.82 | 12.22 | |J | | | 10.93 | |M0.5 |80189 80084| NL80_1 +602144 |V2144 Ori |053504.8-051742 |INB: | 11.16 | 11.76 | |J | | | | |K5 |80189 80084| NL80_1 +602149 |V2149 Ori |053505.2-051450 |INB | 8.16 | 8.24 | |J | | | | |G5 |80189 80084| NL80_1 +602150 |V2150 Ori *|053505.4-052411 |INSB | 11.82 | 12.94 | |J | | | | |M0 |80189 80084| NL80_1 +602151 |V2151 Ori |053505.4-052717 |INT | 11.79 | 12.06 | |J | | | | |K5.5e |80189 80084| NL80_1 +602155 |V2155 Ori |053505.5-052752 |INT | 12.26 | 12.44 | |J | | | | |M1.5e |80189 80084| NL80_1 +602161 |V2161 Ori |053505.8-044843 |INT | 11.84 | 12.29 | |J | | | | |e |80189 2MASS| NL80_1 +602162 |V2162 Ori |053505.9-052709 |INSB | 12.27 | 12.45 | |J | | | | |K8 |80189 80084| NL80_1 +602174 |V2174 Ori |053507.5-051115 |INSB | 12.19 | 13.04 | |J | | | | | |80189 80084| NL80_1 +602182 |V2182 Ori |053508.3-052757 |INSB | 11.73 | 11.88 | |J | | | | | |80189 80084| NL80_1 +602184 |V2184 Ori |053508.5-052518 |INB: | 12.15 | 12.79 | |J | | | | |M2 |80189 80084| NL80_1 +602201 |V2201 Ori |053510.3-052113 |INB | 11.69 | 11.86 | |J | | | | |K7 |80189 80084| NL80_1 +602207 |V2207 Ori |053510.9-052449 |INT | 11.33 | 11.51 | |J | | | | |M3e |80189 80084| NL80_1 +602212 |V2212 Ori *|053511.1-053651 |EA | 11.04 |( 0.2 I )|( 0.1 )|J |53910.40 | | 4.673845 |07 |M2 |80079 80084| NL80_1 +602213 |V2213 Ori *|053511.2-052238 |INSB | 9.89 | 10.45 | |Ks| | | | | |80189 2MASS| NL80_1 +602214 |V2214 Ori *|053511.2-051721 |INSB | 12.27 | 12.44 | |J | | | | |M1 |80189 80084| NL80_1 +602220 |V2220 Ori *|053511.9-052103 |INSB | 12.18 | 12.72 | |J | | | | |K7 |80189 2MASS| NL80_1 +602221 |V2221 Ori |053512.0-052033 |INB | 10.87 | 11.12 | |J | | | | |K3 |80189 80084| NL80_1 +602228 |V2228 Ori *|053512.8-052044 |INT | 11.04 | 11.53 | |J | | | | |M1e |80189 80084| NL80_1 +602230 |V2230 Ori |053513.0-051904 |INSB | 12.26 | 12.39 | |J | | | | | |80189 80084| NL80_1 +602233 |V2233 Ori *|053513.2-051731 |INSB | 12.03 | 12.34 | |Ks| | | | |K6 |80189 80084| NL80_1 +602235 |V2235 Ori |053513.2-052455 |INT | 10.26 | 10.45 | |J | | | | |K1:e |80189 80084| NL80_1 +602237 |V2237 Ori *|053513.3-052754 |INSB | 11.39 | 11.96 | |J | | | | |M2 |80189 80084| NL80_1 +602238 |V2238 Ori |053513.3-052019 |INSB | 11.67 | 11.98 | |J | | | | |M2.5 |80189 80084| NL80_1 +602239 |V2239 Ori *|053513.4-045145 |INA | 8.05 | 8.15 | |J | | | 2.49 | |B3Vn |80189 DM | NL80_1 +602240 |V2240 Ori |053513.4-052818 |INSB | 12.18 | 12.60 | |Ks| | | | | |80189 2MASS| NL80_1 +602244 |V2244 Ori |053513.6-051746 |INB | 11.94 | 12.32 | |Ks| | | | | |80189 2MASS| NL80_1 +602246 |V2246 Ori *|053513.7-044259 |INT | 11.89 | 12.48 | |J | | | | |e |80189 2MASS| NL80_1 +602248 |V2248 Ori *|053513.8-052200 |INB | 6.67 | 6.85 | |Ks| | | | | |80189 80084| NL80_1 +602250 |V2250 Ori |053513.9-052701 |INSB | 11.76 | 12.02 | |Ks| | | | | |80189 2MASS| NL80_1 +602252 |V2252 Ori *|053514.1-051952 |INSB | 11.30 | 11.48 | |J | | | | |G |80189 80084| NL80_1 +602261 |V2261 Ori *|053514.6-061513 |INSB | 12.40 | 12.55 | |J | | | | | |80189 2MASS| NL80_1 +602270 |V2270 Ori *|053515.4-052114 |INT | 12.31 | 12.60 | |J | | | | |M2.5e |80189 80084| NL80_1 +602271 |V2271 Ori *|053515.5-051738 |INSB | 12.29 | 13.08 | |J | | | | | |80189 2MASS| NL80_1 +602274 |V2274 Ori |053515.7-052533 |INSB | 11.42 | 11.72 | |J | | | | |K8e-M0 |80189 80084| NL80_1 +602275 |V2275 Ori |053515.8-053006 |INB | 11.98 | 13.35 | |Ks| | | | | |80189 2MASS| NL80_1 +602277 |V2277 Ori |053515.9-052853 |INSB | 11.46 | 11.67 | |J | | | | |M2.5 |80189 80084| NL80_1 +602279 |V2279 Ori *|053515.9-052350 |INT | 8.58 | 8.72 | |J | | | | |G7e |80189 80084| NL80_1 +602280 |V2280 Ori *|053516.1-052036 |INSB | 10.84 | 11.08 | |J | | | | |K3: |80189 80084| NL80_1 +602282 |V2282 Ori |053516.2-050003 |INB | 11.59 | 11.96 | |Ks| | | | | |80189 2MASS| NL80_1 +602283 |V2283 Ori *|053516.2-051903 |INB | 12.48 | 13.06 | |Ks| | | 3.16 | | |80189 2MASS| NL80_1 +602285 |V2285 Ori |053516.2-052456 |INB | 12.05 | 12.70 | |J | | | | | |80189 80084| NL80_1 +602287 |V2287 Ori |053516.3-052933 |INB | 11.71 | 12.31 | |Ks| | | | | |80189 2MASS| NL80_1 +602288 |V2288 Ori *|053516.4-052510 |INB | 11.93 | 12.24 | |J | | | | |M1.5 |80189 80084| NL80_1 +602289 |V2289 Ori |053516.6-052518 |INSB | 12.3 | 12.9 | |J | | | | |M2 |80189 | NL80_1 +602290 |V2290 Ori |053516.6-051936 |INT | 12.20 | 12.81 | |J | | | | |M0e |80189 80084| NL80_1 +602297 |V2297 Ori *|053516.9-052547 |INSB | 12.25 | 12.48 | |J | | | | |M2.5 |80189 80084| NL80_1 +602299 |V2299 Ori *|053517.1-052334 |INB | 9.27 | 9.47 | |J | | | | |K1 |80189 80084| NL80_1 +602300 |V2300 Ori *|053517.1-055831 |INB | 12.36 | 12.52 | |J | | | | | |80189 2MASS| NL80_1 +602301 |V2301 Ori *|053517.2-044114 |INB | 10.85 | 10.99 | |J | | | | | |80189 2MASS| NL80_1 +602302 |V2302 Ori |053517.2-052028 |INB | 11.42 | 12.20 | |J | | | 5.85 | |M3 |80189 80084| NL80_1 +602303 |V2303 Ori |053517.3-043948 |INSB | 12.03 | 12.28 | |J | | | | | |80189 2MASS| NL80_1 +602304 |V2304 Ori *|053517.4-052015 |INB | 12.41 | 12.64 | |J | | | 13.82 | |M0.5 |80189 80084| NL80_1 +602306 |V2306 Ori |053517.5-051823 |INSB | 11.45 | 11.80 | |Ks| | | | | |80189 2MASS| NL80_1 +602312 |V2312 Ori |053517.7-042923 |INSB | 11.71 | 11.89 | |J | | | | | |80189 2MASS| NL80_1 +602313 |V2313 Ori |053517.7-072015 |INT | 12.49 | 12.63 | |J | | | | |e |80189 2MASS| NL80_1 +602314 |V2314 Ori *|053517.9-052054 |INB | 9.33 | 9.57 | |Ks| | | | |M0 |80189 80084| NL80_1 +602318 |V2318 Ori *|053517.9-054234 |INT | 9.93 | 10.51 | |J | | | 5.53 | |K2Ve |80189 GSC | NL80_1 +602321 |V2321 Ori *|053518.0-052403 |INB | 8.40 | 8.60 | |Ks| | | | |M1 |80189 80084| NL80_1 +602325 |V2325 Ori *|053518.2-052336 |INB | 9.72 | 10.06 | |J | | | | |M0 |80189 2MASS| NL80_1 +602327 |V2327 Ori |053518.2-051307 |INSB | 11.42 | 11.69 | |J | | | | | |80189 80084| NL80_1 +602329 |V2329 Ori |053518.4-045324 |INB | 12.40 | 13.00 | |J | | | | | |80189 2MASS| NL80_1 +602331 |V2331 Ori |053518.5-051338 |INT | 11.43 | 12.64 | |J | | | | |M2e |80189 80084| NL80_1 +602332 |V2332 Ori |053518.6-052625 |INB | 11.05 | 11.50 | |Ks| | | | | |80189 2MASS| NL80_1 +602336 |V2336 Ori *|053518.7-052257 |INB | 8.69 | 9.11 | |Ks| | | | |K3: |80189 80084| NL80_1 +602338 |V2338 Ori *|053518.8-051729 |INA | 11.03 | 11.40 | |J | | | | |A9: |80189 80084| NL80_1 +602343 |V2343 Ori *|053519.0-052108 |INB | 11.64 | 11.83 | |J | | | | |M3 |80189 80084| NL80_1 +602344 |V2344 Ori |053519.0-052822 |INSB | 12.23 | 12.70 | |Ks| | | | | |80189 2MASS| NL80_1 +602350 |V2350 Ori *|053519.4-052542 |INSB | 9.83 | 10.17 | |Ks| | | | | |80189 | NL80_1 +602353 |V2353 Ori *|053519.6-052002 |INB | 10.83 | 11.09 | |Ks| | | | | |80189 2MASS| NL80_1 +602354 |V2354 Ori *|053519.6-052357 |INB | 12.2 | 13.1 | |J | | | 7.84 | |K8 |80189 80084| NL80_1 +602356 |V2356 Ori |053519.7-052427 |INT | 10.94 | 11.08 | |J | | | | |M1e |80189 80084| NL80_1 +602358 |V2358 Ori |053519.8-051535 |INB | 12.16 | 12.66 | |Ks| | | | | |80189 2MASS| NL80_1 +602364 |V2364 Ori *|053520.1-051316 |INT | 9.66 | 10.01 | |J | | | | |Ke |80189 80084| NL80_1 +602366 |V2366 Ori *|053520.3-054640 |INB | 12.42 | 12.57 | |J | | | | | |80189 2MASS| NL80_1 +602367 |V2367 Ori |053520.4-051714 |INB | 11.99 | 12.61 | |J | | | | |M1 |80189 80084| NL80_1 +602369 |V2369 Ori |053520.6-050301 |INB | 11.84 | 12.28 | |Ks| | | | | |80189 2MASS| NL80_1 +602370 |V2370 Ori |053520.6-052256 |INB | 11.80 | 12.53 | |Ks| | | 4.78 | |M: |80189 80084| NL80_1 +602371 |V2371 Ori |053520.8-065506 |INB | 10.43 | 10.57 | |J | | | 2.11 | |G7V |80189 GSC | NL80_1 +602372 |V2372 Ori *|053520.8-052122 |INB | 10.44 | 10.82 | |Ks| | | | |K7 |80189 80084| NL80_1 +602373 |V2373 Ori *|053521.0-052043 |INB | 11.79 | 12.60 | |Ks| | | 2.29 | | |80189 2MASS| NL80_1 +602374 |V2374 Ori *|053521.2-052200 |INB | 10.17 | 10.54 | |Ks| | | | | |80189 2MASS| NL80_1 +602378 |V2378 Ori *|053521.6-053458 |INT | 12.08 | 12.60 | |J | | | | |e |80189 80084| NL80_1 +602380 |V2380 Ori |053521.7-052147 |INSB | 11.72 | 12.33 | |J | | | | |M1: |80189 80084| NL80_1 +602381 |V2381 Ori |053521.7-051946 |INB | 11.76 | 12.00 | |Ks| | | | | |80189 2MASS| NL80_1 +602383 |V2383 Ori *|053521.8-052339 |INB | 10.69 | 10.97 | |Ks| | | 7.23 | |K6 |80189 80084| NL80_1 +602388 |V2388 Ori |053522.4-052201 |INSB | 11.65 | 12.08 | |J | | | | |K3: |80189 80084| NL80_1 +602390 |V2390 Ori |053522.5-045237 |INB | 12.26 | 12.37 | |J | | | | | |80189 2MASS| NL80_1 +602393 |V2393 Ori |053522.7-051838 |INSB | 12.39 | 12.61 | |Ks| | | | | |80189 2MASS| NL80_1 +602394 |V2394 Ori |053522.8-044830 |INB | 11.74 | 12.01 | |J | | | 6.03 | | |80189 2MASS| NL80_1 +602395 |V2395 Ori |053522.8-052313 |INSB | 11.86 | 12.19 | |J | | | | |M0: |80189 80084| NL80_1 +602400 |V2400 Ori |053522.9-053229 |INB | 10.99 | 12.12 | |J | | | | |M1 |80189 80084| NL80_1 +602404 |V2404 Ori *|053523.1-041717 |INB | 12.20 | 12.32 | |J | | | 2.47 | | |80189 2MASS| NL80_1 +602406 |V2406 Ori |053523.3-044905 |INB | 11.73 | 11.86 | |J | | | 6.10 | | |80189 2MASS| NL80_1 +602407 |V2407 Ori |053523.3-052125 |INT | 12.42 | 12.64 | |J | | | | |K7.5:e |80189 80084| NL80_1 +602410 |V2410 Ori *|053523.5-051857 |INB | 11.93 | 12.31 | |J | | | | |M0 |80189 80084| NL80_1 +602411 |V2411 Ori |053523.7-052627 |INSB | 12.39 | 12.83 | |J | | | | |M3 |80189 80084| NL80_1 +602413 |V2413 Ori *|053523.8-051840 |INT | 12.46 | 12.80 | |J | | | | |M2e |80189 80084| NL80_1 +602417 |V2417 Ori *|053524.1-052133 |INSB | 12.32 | 12.53 | |J | | | | |M3 |80189 80084| NL80_1 +602419 |V2419 Ori |053524.2-043103 |INB | 11.61 | 11.76 | |J | | | | |F6 |80189 2MASS| NL80_1 +602420 |V2420 Ori |053524.2-052957 |INB | 11.86 | 12.62 | |J | | | 8.25 | |M2 |80189 80084| NL80_1 +602421 |V2421 Ori |053524.3-052519 |INT | 11.28 | 11.46 | |J | | | | |K2.5e |80189 80084| NL80_1 +602423 |V2423 Ori *|053524.4-052440 |INT | 10.72 | 10.90 | |J | | | | |M0e |80189 80084| NL80_1 +602424 |V2424 Ori |053524.5-051700 |INT | 11.67 | 11.86 | |J | | | | |M1e |80189 80084| NL80_1 +602426 |V2426 Ori |053524.6-055534 |INSB | 11.07 | 11.46 | |Ks| | | | | |80189 2MASS| NL80_1 +602427 |V2427 Ori |053524.6-051130 |INT | 12.16 | 12.46 | |J | | | | |K6e |80189 80084| NL80_1 +602428 |V2428 Ori |053524.6-052104 |INSB | 10.79 | 11.14 | |Ks| | | | | |80189 2MASS| NL80_1 +602431 |V2431 Ori |053525.1-055739 |INB | 11.69 | 11.83 | |J | | | | | |80189 2MASS| NL80_1 +602432 |V2432 Ori |053525.2-055555 |INB | 12.21 | 12.36 | |J | | | 14.69 | | |80189 | NL80_1 +602434 |V2434 Ori |053525.2-051536 |INT | 11.63 | 11.99 | |J | | | | |M2.5e |80189 80084| NL80_1 +602437 |V2437 Ori |053525.4-052411 |INSB | 12.37 | 13.25 | |J | | | | |M1: |80189 80084| NL80_1 +602438 |V2438 Ori |053525.5-045121 |INT | 12.33 | 12.52 | |J | | | | |e |80189 2MASS| NL80_1 +602441 |V2441 Ori |053525.7-052309 |INT | 11.71 | 12.02 | |J | | | 10.22 | |K8e |80189 80084| NL80_1 +602443 |V2443 Ori |053526.0-030834 |INSB | 11.59 | 11.72 | |J | | | | | |80189 2MASS| NL80_1 +602445 |V2445 Ori |053526.2-052006 |INB | 11.92 | 12.15 | |J | | | | | |80189 80084| NL80_1 +602446 |V2446 Ori |053526.2-054509 |INB | 12.37 | 12.62 | |J | | | 5.88 | | |80189 2MASS| NL80_1 +602451 |V2451 Ori *|053526.4-055445 |INA: | 7.47 | 7.57 | |J | | | 8.87 | |B1III-IV |80189 GSC | NL80_1 +602453 |V2453 Ori |053526.6-061909 |INB | 11.54 | 11.69 | |J | | | | | |80189 2MASS| NL80_1 +602455 |V2455 Ori |053526.8-050925 |INB | 11.00 | 11.43 | |Ks| | | | | |80189 2MASS| NL80_1 +602460 |V2460 Ori *|053527.1-054852 |INB | 10.44 | 10.58 | |J | | | | | |80189 GSC | NL80_1 +602463 |V2463 Ori |053527.3-052337 |INB | 11.03 | 11.43 | |J | | | | |K4 |80189 80084| NL80_1 +602465 |V2465 Ori |053527.4-050242 |INB | 10.55 | 11.05 | |Ks| | | | | |80189 2MASS| NL80_1 +602468 |V2468 Ori |053527.7-054255 |INT | 12.00 | 12.18 | |J | | | | |e |80189 2MASS| NL80_1 +602469 |V2469 Ori |053527.8-052119 |INB | 11.39 | 11.59 | |Ks| | | | | |80189 2MASS| NL80_1 +602470 |V2470 Ori |053528.1-050135 |INB | 12.07 | 12.73 | |Ks| | | | | |80189 2MASS| NL80_1 +602471 |V2471 Ori |053528.1-052306 |INT | 12.46 | 13.18 | |J | | | | |M3e |80189 80084| NL80_1 +602472 |V2472 Ori |053528.1-052135 |INB | 10.62 | 10.92 | |Ks| | | | | |80189 2MASS| NL80_1 +602475 |V2475 Ori |053528.2-045838 |INSB | 11.49 | 11.77 | |Ks| | | | | |80189 2MASS| NL80_1 +602483 |V2483 Ori *|053529.8-053254 |INB | 9.90 | 10.06 | |J | | | 3.95 | |G8V |80189 80084| NL80_1 +602484 |V2484 Ori *|053529.9-052356 |INSB | 11.80 | 12.03 | |J | | | | |M1.5 |80189 80084| NL80_1 +602485 |V2485 Ori |053530.0-051228 |INT | 12.00 | 12.23 | |J | | | | |M4e |80189 80084| NL80_1 +602491 |V2491 Ori *|053530.6-055155 |INB | 12.42 | 12.59 | |J | | | | |M4 |80189 2MASS| NL80_1 +602492 |V2492 Ori *|053530.6-052139 |INSB | 11.86 | 12.22 | |Ks| | | | | |80189 2MASS| NL80_1 +602497 |V2497 Ori *|053531.2-045727 |INB | 10.90 | 12.27 | |Ks| | | | | |80189 2MASS| NL80_1 +602498 |V2498 Ori |053531.2-052340 |INSB | 11.58 | 11.78 | |J | | | | |K4: |80189 80084| NL80_1 +602499 |V2499 Ori *|053531.3-051856 |INT | 10.72 | 10.94 | |J | | | | |K8Ve |80189 80084| NL80_1 +602501 |V2501 Ori |053531.5-052137 |INB | 11.44 | 11.63 | |Ks| | | 2.78 | | |80189 2MASS| NL80_1 +602502 |V2502 Ori |053531.5-050547 |INB | 11.60 | 12.05 | |J | | | | | |80189 2MASS| NL80_1 +602504 |V2504 Ori |053531.6-050014 |INB | 9.82 | 10.36 | |Ks| | | 5.69 | | |80189 2MASS| NL80_1 +602505 |V2505 Ori |053531.8-052121 |INB | 11.85 | 12.18 | |Ks| | | | | |80189 2MASS| NL80_1 +602509 |V2509 Ori *|053532.0-051620 |INB | 11.00 | 11.70 | |Ks| | | | |M1 |80189 80084| NL80_1 +602511 |V2511 Ori |053532.2-054427 |INSB | 11.44 | 11.61 | |J | | | | |M3 |80189 2MASS| NL80_1 +602520 |V2520 Ori |053532.7-052118 |INSB | 11.41 | 11.70 | |Ks| | | | | |80189 2MASS| NL80_1 +602521 |V2521 Ori *|053532.7-045012 |INSB | 10.97 | 11.86 | |J | | | | | |80189 2MASS| NL80_1 +602523 |V2523 Ori |053533.2-051411 |INB | 12.09 | 12.39 | |J | | | | | |80189 80084| NL80_1 +602526 |V2526 Ori |053533.4-015236 |RS: | 11.88 | 11.96 | |V | | | 1.74 | |G9 |80151 GSC | NL80_1 +602528 |V2528 Ori |053533.7-044624 |INT | 12.03 | 12.47 | |J | | | | |e |80189 2MASS| NL80_1 +602533 |V2533 Ori |053534.4-051839 |INB | 12.13 | 12.92 | |Ks| | | 4.72 | | |80189 2MASS| NL80_1 +602534 |V2534 Ori |053534.5-044021 |INT | 12.00 | 12.22 | |J | | | | |e |80189 2MASS| NL80_1 +602535 |V2535 Ori |053534.5-050052 |INSB | 10.97 | 11.27 | |J | | | | | |80189 2MASS| NL80_1 +602537 |V2537 Ori *|053534.7-044858 |INB | 12.00 | 12.58 | |Ks| | | | | |80189 2MASS| NL80_1 +602538 |V2538 Ori |053534.7-083450 |BY: | 11.38 | 11.54 | |J | | | 2.06 | | |80189 GSC | NL80_1 +602540 |V2540 Ori |053534.9-042325 |IN | 12.29 | 12.45 | |J | | | 4.21 | | |80189 2MASS| NL80_1 +602543 |V2543 Ori *|053535.1-052124 |INB | 12.49 | 13.34 | |J | | | | | |80189 80084| NL80_1 +602544 |V2544 Ori |053535.2-044740 |INSB | 12.27 | 12.46 | |J | | | | | |80189 2MASS| NL80_1 +602551 |V2551 Ori |053536.4-053138 |INB | 12.42 | 12.60 | |J | | | | | |80189 80084| NL80_1 +602553 |V2553 Ori |053536.7-052328 |INB | 11.56 | 11.80 | |Ks| | | | | |80189 2MASS| NL80_1 +602567 |V2567 Ori |053540.5-043519 |INT | 12.18 | 12.30 | |J | | | | |e |80189 2MASS| NL80_1 +602568 |V2568 Ori *|053540.7-043327 |INB | 12.43 | 12.55 | |J | | | 7.04 | | |80189 2MASS| NL80_1 +602572 |V2572 Ori |053540.9-043439 |INB | 12.35 | 13.31 | |J | | | 15.23 | |K8 |80189 2MASS| NL80_1 +602573 |V2573 Ori |053542.0-051012 |INSB | 11.48 | 11.72 | |J | | | | |K7 |80189 80084| NL80_1 +602579 |V2579 Ori |053542.8-051155 |INB | 11.13 | 11.25 | |J | | | 3.35 | |K6.5 |80189 80084| NL80_1 +602585 |V2585 Ori |053543.7-085557 |E: | 12.49 | 13.06 | |J | | | | | |80189 GSC | NL80_1 +602586 |V2586 Ori |053544.8-052435 |INSB | 11.88 | 12.17 | |J | | | | |M4 |80189 80084| NL80_1 +602590 |V2590 Ori |053546.2-051809 |INB+E: | 11.98 | 12.53 | |J | | | | |M2 |80189 80084| NL80_1 +602592 |V2592 Ori *|053546.5-022227 |EA | 7.80 | 8.26 | 8.20 |V |52912.913 | | 13.5496 |03 |F3V |80015 DM | NL80_1 +602593 |V2593 Ori |053546.9-084831 |IB: | 12.38 | 12.57 | |J | | | | | |80189 GSC | NL80_1 +602597 |V2597 Ori |053547.1-071943 |INB | 12.30 | 12.53 | |J | | | | | |80189 2MASS| NL80_1 +602601 |V2601 Ori |053548.0-035745 |INB | 12.20 | 12.34 | |J | | | | | |80189 GSC | NL80_1 +602612 |V2612 Ori |053551.7-040831 |INB | 11.30 | 11.50 | |J | | | 7.61 | | |80189 GSC | NL80_1 +602614 |V2614 Ori |053552.3-044305 |INT | 11.74 | 12.00 | |J | | | | |e |80189 2MASS| NL80_1 +602623 |V2623 Ori |053556.1-083230 |IA: | 9.93 | 10.07 | |J | | | | | |80189 GSC | NL80_1 +602627 |V2627 Ori |053557.1-064705 |INB | 11.20 | 11.33 | |J | | | 2.65 | | |80189 GSC | NL80_1 +602637 |V2637 Ori |053605.0-064641 |INT | 10.96 | 11.09 | |J | | | | |e |80189 GSC | NL80_1 +602638 |V2638 Ori |053605.0-064244 |INSB | 12.20 | 12.35 | |J | | | | | |80189 2MASS| NL80_1 +602641 |V2641 Ori |053605.3-030717 |INB | 12.09 | 12.22 | |J | | | | | |80189 2MASS| NL80_1 +602647 |V2647 Ori |053611.0-053949 |INT | 11.96 | 12.82 | |J | | | | |K7e |80189 2MASS| NL80_1 +602653 |V2653 Ori |053614.8-061317 |INT | 12.40 | 12.63 | |J | | | | |e |80189 2MASS| NL80_1 +602657 |V2657 Ori |053617.2-061725 |INSB | 12.20 | 12.46 | |J | | | | | |80189 2MASS| NL80_1 +602659 |V2659 Ori |053618.3-061400 |INSB | 11.32 | 11.44 | |J | | | | | |80189 GSC | NL80_1 +602664 |V2664 Ori |053619.8-044455 |INB | 11.57 | 11.73 | |J | | | | | |80189 2MASS| NL80_1 +602667 |V2667 Ori |053620.5-062322 |INSB | 11.78 | 12.15 | |Ks| | | | | |80189 2MASS| NL80_1 +602669 |V2669 Ori |053621.4-064537 |INT | 10.81 | 11.14 | |J | | | | |G8:e |80189 80047| NL80_1 +602678 |V2678 Ori *|053626.1-031354 |INSB | 11.63 | 11.74 | |J | | | | | |80189 GSC | NL80_1 +602679 |V2679 Ori *|053626.1-060804 |INT | 11.15 | 11.36 | |J | | | 4.36 | |e |80189 2MASS| NL80_1 +602681 |V2681 Ori |053627.7-062312 |INT | 11.84 | 12.03 | |J | | | | |e |80189 2MASS| NL80_1 +602686 |V2686 Ori |053629.9-063822 |INB | 12.43 | 12.60 | |J | | | | | |80189 2MASS| NL80_1 +602689 |V2689 Ori *|053631.0+111940 |RS | 8.80 | 9.05 | |V | | | 12.285 | |K7 |80002 HIP | NL80_1 +602691 |V2691 Ori |053631.5-041546 |INSB | 11.94 | 12.14 | |J | | | | | |80189 2MASS| NL80_1 +602692 |V2692 Ori |053632.5-060116 |INB | 12.42 | 12.67 | |Ks| | | | | |80189 2MASS| NL80_1 +602695 |V2695 Ori |053633.7-055754 |INT | 11.86 | 12.18 | |J | | | | |e |80189 2MASS| NL80_1 +602697 |V2697 Ori |053636.2-055529 |INSB | 11.43 | 11.88 | |J | | | | | |80189 2MASS| NL80_1 +602701 |V2701 Ori |053639.8+090716 |IB | 12.27 | 12.63 | |V | | | 0.762 | |K2 |80151 GSC | NL80_1 +602702 |V2702 Ori |053640.6-061033 |INSB | 12.33 | 13.00 | |J | | | | | |80189 2MASS| NL80_1 +602704 |V2704 Ori |053642.1-060706 |INSB | 12.23 | 12.37 | |J | | | | | |80189 2MASS| NL80_1 +602705 |V2705 Ori |053645.5-031412 |INB: | 11.85 | 11.95 | |J | | | | | |80189 GSC | NL80_1 +602706 |V2706 Ori |053647.2-052250 |INSB | 11.75 | 11.87 | |J | | | | | |80189 2MASS| NL80_1 +602710 |V2710 Ori |053650.1-064129 |INT | 11.89 | 12.08 | |J | | | | |e |80189 2MASS| NL80_1 +602712 |V2712 Ori *|053652.3-082452 |EW | 12.4 | 12.8 | 12.7 |V |52996.70 | | 0.346481 | | |80001 GSC | NL80_1 +602713 |V2713 Ori |053652.7-064308 |INB | 12.33 | 12.76 | |J | | | | | |80189 2MASS| NL80_1 +602714 |V2714 Ori |053652.9-063713 |INB | 12.38 | 12.88 | |J | | | 3.93 | | |80189 2MASS| NL80_1 +602715 |V2715 Ori |053654.1-025316 |INB: | 11.00 | 11.15 | |J | | | | | |80189 2MASS| NL80_1 +602718 |V2718 Ori |053657.2-050605 |INSB | 12.13 | 13.06 | |J | | | | | |80189 2MASS| NL80_1 +602719 |V2719 Ori |053658.8-040407 |INA: | 10.89 | 10.99 | |J | | | | | |80189 GSC | NL80_1 +602724 |V2724 Ori |053823.2-021249 |INB | 12.20 |( 0.05 )| |I | | | 0.24 | | |80194 GSC | NL80_1 +602731 |V2731 Ori |053829.2-021616 |INT | 12.41 |( 0.20 )| |I | | | | |e |80194 GSC | NL80_1 +602735 |V2735 Ori *|053838.1+090111 |EA | 9.10 | 9.50 | 9.43 |V |53097.4998 | | 1.226680 |15 |AO |80002 DM | NL80_1 +602745 |V2745 Ori |053921.1+091810 |RS | 11.44 | 11.56 | |V | | | 1.298 | |K1 |80151 GSC | NL80_1 +602747 |V2747 Ori |053927.1-034704 |INB: | 11.08 | 11.35 | |V | | | 1.92952 : | |G8 |80002 GSC | NL80_1 +602751 |V2751 Ori *|053956.5+095632 |RS | 10.70 | 10.85 | |V | | | 0.764 | |K2 |80151 GSC | NL80_1 +602752 |V2752 Ori *|053958.8+070831 |RS | 9.35 | 9.62 | |V | | | 2.1133 | |G5 |80002 DM | NL80_1 +602755 |V2755 Ori |054014.0-070835 |RS: | 12.10 | 12.40 | |V | | | 2.01 : | |K0 |80151 GSC | NL80_1 +602756 |V2756 Ori |054034.2-012154 |INB | 11.98 | 12.12 | |V | | | 1.454 | |K1 |80151 GSC | NL80_1 +602757 |V2757 Ori *|054034.7+114632 |EA | 10.04 | 10.7 | 10.12 |V |51554.897 | | 4.96652 |04 |A5 |80013 DM | NL80_1 +602758 |V2758 Ori *|054123.9-032446 |INB | 11.65 | 11.75 | |V | | | 1.245 : | |G8/K3 |80151 GSC | NL80_1 +602759 |V2759 Ori *|054259.9+092105 |EB | 10.40 | 10.84 | 10.62 |V |52751.489 | | 0.498858 | |F0 |80042 DM | NL80_1 +602761 |V2761 Ori |054352.8-025044 |RS | 10.75 | 10.95 | |V | | | 6.64 : | | |80034 GSC | NL80_1 +602762 |V2762 Ori *|054539.1+111936 |EA | 9.97 | 10.42 | 10.31 |V |51567.838 | | 1.78018 |07 |F2 |80042 DM | NL80_1 +602765 |V2765 Ori |055238.6-055134 |RRC | 11.9 | 12.4 | |V |52686.6595 | | 0.37441 |35 | |80002 GSC | NL80_1 +602770 |V2770 Ori |055645.8+045126 |LB | 12.1 | 12.7 | |* | | | | | |80062 GSC | NL80_1 +602771 |V2771 Ori |055647.8-033654 |SRB | 11.8 | 12.3 | |* | | | 73. | | |80001 USNO | NL80_1 +602772 |V2772 Ori *|055652.5+122744 |EA | 12.10 | 12.77 | 12.35 |V |51504.970 | | 9.7857 |16 | |80042 GSC | NL80_1 +602774 |V2774 Ori |055810.7-025519 |SRB | 12.4 | 13.1 | |* | | | 53. | | |80001 USNO | NL80_1 +602775 |V2775 Ori |054248.5-081635 |FU: | 11.77 | 16.4 | |J | | | | |Me |80431 80431| NL80_2 +602778 |V2778 Ori *|060339.5+033827 |EA | 10.15 | 10.71 | 10.50 : |V |51629.644 | | 14.3877 |03 : |B9 |80023 DM | NL80_2 +602780 |V2780 Ori *|060423.7+180042 |EA | 12.00 | 13.0 | 12.12 |V |51573.74 | | 5.47535 |10 | |80013 GSC | NL80_2 +602782 |V2782 Ori |061015.8+211956 |BY | 11.34 |( 0.09 *)| |V | | | 4.0814 | |K2 |80021 GSC | NL80_2 +602783 |V2783 Ori *|061056.8+062104 |EA | 10.13 | 10.73 | 10.63 |V |52946.750 | | 4.21618 |07 |A0 |80042 DM | NL80_2 +602785 |V2785 Ori |061128.8+202150 |BY | 9.80 | 10.02 | |V | | | 8.6016 | |K2 |80021 DM | NL80_2 +602786 |V2786 Ori |061147.8+190820 |M | 3.82 | 4.78 | |K | | | 493. : | |Ce |80166 2MASS| NL80_2 +602787 |V2787 Ori *|061217.1+145641 |EB | 10.12 | 10.46 | 10.28 |V |51496.8519 | | 0.810979 | |A3m |80245 80245| NL80_2 +602788 |V2788 Ori *|061348.5+055711 |EW | 10.61 | 10.83 | 10.82 : |V |52625.6934 | | 0.500030 | | |80002 GSC | NL80_2 +602789 |V2789 Ori *|061434.5+182828 |EB | 11.12 | 11.48 | 11.4 |V |52970.180 | | 13.6435 | |Be |80042 GSC | NL80_2 +602790 |V2790 Ori *|061531.4+193522 |EW | 11.03 | 11.65 | 11.64 |V |51521.695 | | 0.287842 | | |80042 GSC | NL80_2 +602791 |V2791 Ori |061642.5+011518 |RS | 11.6 | 11.7 | |* | | | 3.362 | | |80043 80043| NL80_2 +602792 |V2792 Ori |061747.0-001439 |SRB | 9.6 | 10.4 | |V | | | 186.6 | |C6,4 |80002 DM | NL80_2 +609001 |alf Ori *|055510.3+072425 |SRC | 0.0 | 1.3 | |V | | | 2335. | |M1-M2Ia-Ibe |06116 08953| +609002 |bet Ori |051432.3-081206 |ACYG | 0.17 | 0.22 | |Hp| | | | | |HIP HIP | +609004 |del Ori *|053200.4-001757 |EA/DM | 2.14 | 2.26 | 2.20 |V |43872.589 | | 5.732476 |13 *|O9.5II-III+B0III |09534 08043| +609005 |eps Ori *|053612.8-011207 |ACYG | 1.64 | 1.74 | |V | | | | |B0.5Iabea |03712 08043| +609007 |eta Ori *|052428.6-022350 |EA+BCEP: | 3.31 | 3.60 | 3.57 |V |15761.826 | | 7.989268 | |B0.5Vea+B3V |09504 08043| +6090151|omi 1 Ori |045232.0+141502 |SRB | 4.65 | 4.88 | |V | | | 30. : | |M3.2IIIaS |06994 BD | +6090165|pi. 5 Ori *|045415.1+022626 |ELL | 3.66 | 3.73 | 3.73 |V |17922.565 | | 3.700363 | |B2III-IV+B0V |01015 05288| +6090221|khi 1 Ori |055423.0+201634 |RS | 4.38 | 4.41 | |V | | | | | |73242 BD | +6090222|khi 2 Ori |060355.2+200818 |ACYG | 4.68 | 4.72 | |Hp| | | | | |HIP HIP | +609023 |psi Ori *|052650.2+030544 |E/D | 4.55 | 4.61 | 4.58 |V |38802.914 | | 2.52596 | |B2IVea+B0 |09537 08043| +609024 |ome Ori |053911.2+040717 |GCAS | 4.40 | 4.59 | |V | | | | |B2IIIe |03712 08043| +610001 |R Pav *|181253.0-633657 |M | 7.5 | 13.8 | |V |42009. | | 229.46 |48 |M3e-M5(II)e |00001 00002| +610002 |S Pav *|195514.0-591144 |SRA | 6.6 | 10.4 | |V |38859. | | 380.86 |49 |M7IIe-M8III |00001 00002| +610003 |T Pav *|195043.5-714617 |M | 7.0 | 14.0 | |V |39429. | | 243.62 |43 |M4e |00001 00002| +610004 |U Pav |205531.1-624215 |M | 8.6 |< 12. | |V |17139. | | 289.7 | |M4e |00001 08588| +610005 |V Pav *|174318.9-574326 |SRB | 9.3 | 11.2 | |p | | | 225.4 | |C6,4(Nb) |00624 08588| +610006 |W Pav *|175026.9-622433 |M | 8.1 | 14.6 | |V |40420. | | 283.35 |40 |M4e-M7e |00001 00002| +610007 |X Pav |201145.9-595613 |SRB | 9.2 | 11.1 | |p | | | 199.19 |48 |MC |06036 05474| +610008 |Y Pav |212416.7-694402 |SRB | 8.6 | 10.3 | |p |30060. | | 233.3 | |C7,3(N0) |01016 05474| +610009 |Z Pav |193527.9-624533 |SRB | 9.1 | 10.6 | |p |29850. | | 135.5 | |M7IIIe |00624 08953| +610010 |RR Pav |200652.5-632428 |M | 11.0 |< 14. | |p |30105. | | 239.8 | |M4e |01016 GSC | +610011 |RS Pav |180722.0-585742 |CWA | 10.10 | 11.25 | |V |27247.600 | | 19.954 |38 |Ke |00251 06286| +610012 |RT Pav *|183630.5-695306 |SRB | 9.6 | 11.2 | |p | | | 85.2 | |M4/5III |00624 08953| +610015 |RW Pav |185451. -575412:| | 11. |< 15.5 | |p | | | | | |00029 | +610016 |RX Pav |185824.5-594625 |M | 11. | 15. | |p |23414. | | 212.1 | | |01000 CoD | +610017 |RY Pav |200123.6-565001 |M | 11. |< 15. | |p |11894. | | 236.3 | | |00031 05474| +610018 |RZ Pav |174853.5-584444 |M | 9.6 | 16.3 | |p |26460. | | 288.5 | |Me |00251 08588| +610019 |SS Pav |191325.5-662130 |RRAB | 12.0 | 12.9 | |V |52054.75 | | 0.65831 |20 | |00001 GSC | +610020 |ST Pav |210403.2-651523 | | 12. | 13.5 | |p | | | | | |01017 USNO | +610021 |SU Pav *|201739.0-600419 |M | 8.6 |< 14.2 | |V |38685. | | 245.3 | |M4(II)e-M6II-IIIe|06037 05474| +610022 |SV Pav |203045.5-701107 |M | 12.3 |< 15. | |p |13823. | | 210. | |Me |01018 UCAC2| +610023 |SW Pav |195725.7-664648 |RR | 11.8 | 12.6 | |p |24670.63 | | 0.802 | | |00210 06286| +610024 |SX Pav *|212844.8-693019 |SRB | 5.34 | 5.97 | |V | | | 50. : | |M5-M7III |06645 05474| +610025 |SY Pav |175204.8-575145 |M | 11.3 |< 14.3 | |p |25440. | | 193.7 | |M1e |00255 08588| +610030 |TW Pav *|174552.5-582131 |SR | 12.0 | 13.2 | |p |27140. | | 397. | | |00251 08588| +610031 |TX Pav |174745.3-600503 |RRAB | 12.3 | 13.4 | |p |27162.550 | | 0.45987 | | |00251 06286| +610032 |TY Pav |174842.9-623600 |RRAB | 12.10 | 13.02 | |V |41532.333 | | 0.7104005 |16 |A7-F6 |00001 06286| +610033 |TZ Pav |174824.8-591040 |I: | 12.0 | 13.4 | |p | | | | | |00251 GSC | +610035 |UV Pav |175127.8-620649 |SRB | 12.4 | 14.0 : | |B | | | 110. | | |06061 06286| +610047 |WY Pav |175612.4-570943 |RRAB | 11.4 | 12.5 | |p |26868.320 | | 0.58858 | | |00251 06286| +610050 |XY Pav |175805.0-573643 |E/SD | 11.7 | 14.0 | |p |26864.460 | | 1.66124 | | |00251 06286| +610051 |XZ Pav |175830.7-591058 |M | 10.5 | 16.0 | |p |27230. | | 332. | | |00251 06286| +610055 |AA Pav |180305.0-590312 |SR | 10.8 : | 13.0 | |p |26240. | | 555. | | |00251 06286| +610058 |AD Pav |180740.4-611356 |SR | 11.5 | 13.6 : | |p |26240. | | 201.3 | |Me |00251 06286| +610060 |AF Pav |181105.1-621827 |M | 12.4 |< 16.5 | |p |27250. | | 278. | | |00251 06286| +610061 |AG Pav |181225.6-623322 |E | 10.2 | 13.0 | |p |44889.5673 | | 1.9647327 | | |00001 06286| +610062 |AH Pav |181352.1-590136 |M | 12.4 | 17.5 | |p |26880. | | 275. | | |00251 06286| +610068 |AO Pav |180239.0-571600 |E | 11.6 | 12.4 | |p |26240.290 | | | | |00251 06286| +610069 |AP Pav |180400.7-625641 |E | 11.7 | 12.1 | |p |26154.460 | | | | |00251 06286| +610070 |AQ Pav |180453.3-600204 |E | 11.2 | 11.6 | |p |26091.540 | | | | |00251 06286| +610071 |AR Pav *|182027.9-660443 |EA+ZAND | 7.4 | 13.62 | |B |20330. | | 604.6 |15 |cont+M3III+shell |06915 09560| +610080 |BB Pav |183449.8-591430 |E | 12.5 | 13.2 | |p | | | 1.7 : | | |00629 06286| +610083 |BE Pav |184442.4-600552 |SR: | 11.0 | 12.0 | |p | | | 130. | | |00629 06286| +610084 |BF Pav *|184539.5-593826 |EW/KW | 11.0 | 11.90 | 11.9 |V |44438.7611 | | 0.3056 | | |09193 06286| +610086 |BH Pav |183440.6-652703 |RRAB | 11.5 | 13.1 | |p |28045.258 | | 0.476958 |18 | |00016 02338| +610087 |BI Pav *|184937.3-600214 |EA/SD: | 10.7 | 11.3 |( 0.05 : )|V |34268.442 | | 2.52694 |17 *|F6 |00080 03254| +610088 |BK Pav |185117.4-591134 |EA/SD | 10.7 | 12.9 | |p |28361.46 | | 2.91655 |14 *| |00016 03254| +610089 |BL Pav |191957.4-670659 |M | 10.4 | 13.3 | |p |31345. | | 134.7 |49 |Me |01003 08953| +610090 |BM Pav |192817.4-624849 |SR | 10.2 | 11.8 | |p |28366. | | 62. |39 | |00016 02339| +610091 |BN Pav |193803.4-603640 |RRAB | 11.2 | 12.5 | |p |28336.513 | | 0.567173 |16 | |00016 02339| +610092 |BO Pav |195017.0-654659 |EA/D: | 9.3 | 10.1 | |p |28698.43 | | 19.23 |03 : | |00016 08953| +610093 |BP Pav |195800.2-654410 |RRAB | 11.3 | 12.7 | |p |28334.480 | | 0.53740 | | |00016 02339| +610094 |BQ Pav |200011.1-695255 |M | 10.9 |< 14.0 | |p |27985. | | 112. |54 | |00016 02339| +610095 |BR Pav |200916.8-571954 |M | 9.8 | 15.3 | |p |40809. | | 246.13 |50 | |00001 05474| +610096 |BS Pav |204630.8-644530 |IS | 9.8 | 11.9 | |p | | | | | |00082 CoD | +610097 |BT Pav |205100.5-634132 |EA/SD | 11.0 | 12.8 | |p |28045.315 | | 2.54400 |08 : | |00016 02339| +610098 |BU Pav |212201.6-631958 |SR | 10.5 | 11.2 | |p |27996. | | 71. |48 | |00016 08953| +610129 |DF Pav *|181903.8-653534 |SRA | 11.9 | 14.8 | |p |40768. :| | 374. | |Me |08627 02386| +610130 |DG Pav |183626.8-675601 |M | 11.9 | 15.5 | |p |38940. | | | |Me |08627 02386| +610131 |DH Pav |190248.6-644608 |M | 11.7 | 16. | |p |38604. | | 244. | | |08627 02386| +610132 |DI Pav |193720.1-565751 |M | 12.0 | 16.5 | |p | | | | |Me |00085 02386| +610133 |DK Pav |194135.1-583555 |M: | 12. |< 13.5 | |p | | | | | |00085 02383| +610134 |DL Pav |194215.3-600416 |M | 11.0 | 17.5 | |p |40082. | | 174. : | | |08627 02386| +610135 |DM Pav |212053.9-613428 |M | 12. |< 17.5 | |p | | | | | |00085 02386| +610136 |DN Pav *|195210.9-634025 |RRAB | 11.69 | 13.05 | |V |41183.397 | | 0.4684426 |12 |A3-F3 |00001 02383| +610160 |EQ Pav *|193204.5-730918 |SR | 12. | 13. | |p | | | | |ea |02554 04208| +610168 |EY Pav |194311.2-723751 |EA:/SD: | 12.5 | 13.6 | |p |36764.512 | | | | |06920 04001| +610178 |FO Pav |195142.2-624408 |RR | 11.3 | 12.2 | |p | | | | | |06561 05234| +610204 |GV Pav |200832.3-602917 |RRAB | 12.3 | 13.8 | |p |36787.386 | | 0.5765 |15 : | |06920 04001| +610217 |HQ Pav *|201625.8-684425 |EB/KE | 12.5 | 12.8 | 12.7 |p |36732.55 | | 0.9262 | | |06920 04001| +610225 |HY Pav *|202349.1-734222 |EW/KW | 11.4 | 12.3 | 12.1 |p |36730.464 | | 0.3516 | | |06920 04001| +610234 |IQ Pav |202633.6-581137 |E | 11.8 | 12.3 | |p |36831.244 | | | | |06920 04001| +610239 |IV Pav |203444.9-723655 |RR: | 10.4 | 10.8 | |p | | | | | |06920 04001| +610242 |IY Pav |203529.5-704615 |EA/SD | 12.0 | 13.1 | |p |36748.415 | | 0.8881 | | |06920 04001| +610259 |KZ Pav *|205840.1-702520 |EA/SD | 7.71 | 9.30 | |V |44431.7546 | | 0.9498768 | |F6V |09213 08953| +610268 |LT Pav *|194836.1-710134 |EW/KW | 11.4 | 12.2 | 12.2 |p |36730.478 | | 0.32885 | | |06920 04001| +610283 |MU Pav |203522.9-610327 |EA/SD | 11.8 | 13.9 | |p |36785.417 | | 0.73605 |20 : | |06920 04001| +610284 |MV Pav |204310.4-694246 |UV | 10. : | 16.5 | |B | | | | |M5: |05722 02384| +610285 |MW Pav *|204627.7-715659 |EW | 8.51 | 8.95 | 8.92 |V |40862.6076 | | 0.79498855 | |F3IV/V |06921 06871| +610286 |MX Pav |182411.2-635655 |EA/SD: | 10.0 | 10.6 | |p |28332.225 | | 5.730685 | | |05904 05835| +610287 |MY Pav |183204.2-585323 |SR: | 11.8 | 12.7 | |p | | | | | |00085 02383| +610288 |MZ Pav |191211.2-611626 |L | 12.2 | 13.2 | |p | | | | | |00085 02383| +610289 |NN Pav |191634.2-662828 |EA/SD | 12.0 | 13.5 | |p |28675.675 | | 2.759385 | | |06871 06871| +610290 |NO Pav |195905.3-621651 |M | 11.1 |< 13.5 | |p | | | | |Me |05834 02384| +610291 |NP Pav *|204801.5-690557 |EA/KE | 10.7 | 11.7 | |p |38234.400 | | 1.266821 | | |05834 02384| +610293 |NR Pav |205036.8-725953 |SR | 11.4 | 12.0 | |p | | | | | |06920 04001| +610296 |NU Pav |200144.7-592233 |SRB | 4.91 | 5.26 | |V | | | 60. : | |M6III |05992 05474| +610298 |NW Pav *|181334.6-651413 |CWA | 11.4 | 13.0 | |p |44168.80 | | 30. | | |06561 05829| +610299 |NX Pav |184115.2-630208 |M | 10.9 | 15. | |p | | | | |Me | 04001| +610301 |NZ Pav |195101.1-653618 |DSCTC | 6.04 |( 0.017 )| |V | | | 0.08 : | |F2III-IV |06338 CPD | +610310 |OW Pav |175759.8-633800 |LB: | 7.8 | 8.9 | |V | | | | |M5III |09287 03508| +610318 |PT Pav |184120.2-623557 |L | 12. | 13. | |p | | | | | |00085 02383| +610319 |PU Pav |184450.0-643024 |M: | 12.5 |< 17.5 | |p | | | | | |04453 GSC22| +610323 |PY Pav |192359.0-583218 |SR: | 11. | 13. | |p | | | | | |00085 CoD | +610326 |QR Pav |193540.0-611919 |RR: | 12.5 | 13.5 | |p | | | | | |06561 06561| +610328 |QT Pav |194219.3-725221 |L | 12.2 | 12.6 | |p | | | | | |06920 04001| +610329 |QU Pav |194334.8-720709 |EA | 12.0 | 12.5 | |p | | | | | |06920 04001| +610340 |V0340 Pav |192408.7-605336 |M: | 12.3 | 16.5 | |p | | | | | |05834 04001| +610341 |V0341 Pav |202536.2-670334 |M: | 12.2 | 16. | |p | | | | | |04454 05834| +610342 |V0342 Pav |204106.8-613532 |DSCTC | 8.4 |( 0.03 )| |V | | | 0.034 | |A6V |08445 CPD | +610343 |V0343 Pav |204848.2-721244 |ACV | 7.99 | 8.02 | |V | | | | | |67484 CPD | +610346 |V0346 Pav |182531.6-630118 |DSCTC | 6.14 |( 0.04 b )| |V | | | | | |73243 CPD | +610350 |V0350 Pav |201900.0-714328 |M | 3.81 | 5.90 | |J | | | | | |73014 73106| +610351 |V0351 Pav |205333.6-715127 |M | 4.02 | 5.97 | |J | | | | | |73014 GSC22| +610352 |V0352 Pav |174707.4-595940 |DSCTC | 6.55 | 6.61 | |Hp| | | | | |HIP HIP | +610353 |V0353 Pav |175949.6-574608 |I: | 11.89 | 12.42 | |Hp| | | | | |HIP HIP | +610354 |V0354 Pav |180536.8-650955 |LB | 8.34 | 8.51 | |Hp| | | | | |HIP HIP | +610355 |V0355 Pav |181328.5-674831 |LB: | 8.34 | 8.48 | |Hp| | | | | |HIP HIP | +610356 |V0356 Pav |181450.2-664854 |E: | 7.45 | 7.62 | |Hp| | | | | |HIP HIP | +610357 |V0357 Pav |183132.4-675718 |ACV: | 7.94 | 7.99 | |Hp| | | | | |HIP HIP | +610358 |V0358 Pav |183612.0-653157 |LB: | 8.43 | 8.53 | |Hp| | | | | |HIP HIP | +610359 |V0359 Pav |183948.7-591806 |LB | 7.38 | 7.68 | |Hp| | | | | |HIP HIP | +610360 |V0360 Pav |184310.7-711718 |LB | 7.63 | 7.81 | |Hp| | | | | |HIP HIP | +610361 |V0361 Pav |184652.3-651459 |LB | 7.07 | 7.17 | |Hp| | | | | |HIP HIP | +610362 |V0362 Pav |184903.5-631610 |E | 7.44 | 7.64 | |Hp| | | | | |HIP HIP | +610363 |V0363 Pav |185227.0-571146 |EA | 8.17 | 8.50 | |Hp| | | | | |HIP HIP | +610364 |V0364 Pav |185958.5-715558 |LPB: | 6.77 | 6.80 | |Hp| | | | | |HIP HIP | +610365 |V0365 Pav |190558.2-600633 |LB: | 8.88 | 9.00 | |Hp| | | | | |HIP HIP | +610366 |V0366 Pav |191316.9-731854 |LB: | 8.32 | 8.48 | |Hp| | | | | |HIP HIP | +610367 |V0367 Pav |191605.4-644920 |EB | 9.07 | 9.26 | |Hp| | | | | |HIP HIP | +610368 |V0368 Pav |192137.2-664326 |EB: | 8.96 | 9.27 | |Hp| | | | | |HIP HIP | +610369 |V0369 Pav |192426.6-714858 |LB: | 8.39 | 8.53 | |Hp| | | | | |HIP HIP | +610370 |V0370 Pav |192425.6-632142 |LC | 8.15 | 8.45 | |Hp| | | | | |HIP HIP | +610371 |V0371 Pav |192517.5-572234 |LB | 8.77 | 8.90 | |Hp| | | | | |HIP HIP | +610372 |V0372 Pav |192634.6-565519 |SRB | 7.80 | 7.95 | |Hp| | | | | |HIP HIP | +610373 |V0373 Pav |195227.6-591003 |LB: | 8.62 | 8.72 | |Hp| | | | | |HIP HIP | +610374 |V0374 Pav |195801.0-603523 |LB: | 8.18 | 8.28 | |Hp| | | | | |HIP HIP | +610375 |V0375 Pav |200404.7-653601 |BY: | 11.17 | 12.23 | |Hp| | | | | |HIP HIP | +610376 |V0376 Pav |201001.3-633932 |LB | 7.82 | 7.95 | |Hp| | | | | |HIP HIP | +610377 |V0377 Pav |201257.6-584645 |ACV | 8.89 | 8.93 | |Hp| | | | | |HIP HIP | +610378 |V0378 Pav |201425.8-621645 |SRB | 6.67 | 6.82 | |Hp| | | | | |HIP HIP | +610379 |V0379 Pav |202131.8-732907 |LB: | 8.92 | 9.02 | |Hp| | | | | |HIP HIP | +610380 |V0380 Pav |202345.1-592029 |LB: | 8.67 | 8.77 | |Hp| | | | | |HIP HIP | +610381 |V0381 Pav |202918.0-642339 |LB | 8.86 | 9.06 | |Hp| | | | | |HIP HIP | +610382 |V0382 Pav *|203147.4-730418 |DSCT: | 8.91 | 9.10 | |Hp| | | | | |HIP HIP | +610383 |V0383 Pav |203200.5-600238 |LB: | 8.73 | 8.90 | |Hp| | | | | |HIP HIP | +610384 |V0384 Pav |203654.5-672510 |LB: | 7.99 | 8.11 | |Hp| | | | | |HIP HIP | +610385 |V0385 Pav |205026.9-725852 |LB | 8.93 | 9.37 | |Hp| | | | | |HIP HIP | +610386 |V0386 Pav |205557.9-652559 |EW | 8.39 | 8.49 | |Hp| | | | | |HIP HIP | +610387 |V0387 Pav |205847.5-614841 |LB | 8.57 | 8.87 | |Hp| | | | | |HIP HIP | +610388 |V0388 Pav |210201.3-715000 |DSCTC | 8.81 | 8.88 | |Hp| | | | | |HIP HIP | +610389 |V0389 Pav |210629.4-683845 |LB: | 7.61 | 7.71 | |Hp| | | | | |HIP HIP | +610390 |V0390 Pav |212124.4-665457 |BY: | 9.03 | 9.20 | |Hp| | | | | |HIP HIP | +610391 |V0391 Pav |212146.0-642435 |LB: | 7.72 | 7.83 | |Hp| | | | | |HIP HIP | +610399 |V0399 Pav *|194225.4-680735 |SRB | 11.2 | 11.9 | |V | | | 500. | |M4IIIe |78130 GSC | +610400 |V0400 Pav *|212704.4-623914 |EB | 9.18 | 9.33 | 9.23 |V |51905.532 | | 1.155466 | |F5V |78011 DM | +610401 |V0401 Pav |180156.3-660149 |EW | 11.32 | 11.90 | 11.89 |V |52467.440 | | 0.327111 | | |79240 79121| +610402 |V0402 Pav |181728.5-681629 |EA | 12.37 | 13.9 : | 12.6 |V |52055.753 | | 5.0543 |11 | |79018 79080| +610403 |V0403 Pav |182936.4-645440 |M | 11.9 |< 15.0 | |V |53183. | | 380. | | |79093 79093| +610405 |V0405 Pav |183110.9-640731 |EA | 9.11 | 9.20 | 9.12 |V |48528.814 | | 5.64797 |04 |F2IV |79009 DM | +610406 |V0406 Pav |190436.5-572542 |SRB | 9.1 | 10.8 | |V | | | 122. | | |79064 DM | +610407 |V0407 Pav |191438.3-611541 |RV | 11.5 | 12.6 | |V |52553.5 | | 112.8 | | |79100 79106| +610409 |V0409 Pav |195308.8-740809 |SRB | 10.8 | 12.5 | |V | | | 63. | | |79100 79071| +610413 |V0413 Pav *|184110.0-722942 |EB | 11.60 | 12.33 | 11.86 |V |51868.391 | | 0.710832 | | |80036 DM | NL80_3 +610414 |V0414 Pav |184652.6-621037 |BY | 11.8 | 12.2 | |V | | | 5.3732 | |M1Ve |80001 GSC | NL80_3 +619010 |kap Pav *|185657.0-671401 |CEP | 3.91 | 4.78 | |V |40140.167 | | 9.09423 |44 |F5-G5I-II |00001 04234| +619011 |lam Pav *|185213.0-621115 |GCAS | 4.0 | 4.26 | |V | | | | |B2II-IIIe | 04234| +619013 |nu. Pav |183122.4-621642 |LPB | 4.56 | 4.60 | |Hp| | | | | |HIP HIP | +619017 |rho Pav *|203735.3-613148 |DSCTC | 4.85 |( 0.055 )| |V | | | 0.1141 | |F0mIII |04143 CPD | +620001 |R Peg *|230639.2+103236 |M | 6.9 | 13.8 | |V |42444. | | 378.1 |44 |M6e-M9e |00001 00002| +620002 |S Peg |232032.6+085508 |M | 6.9 | 13.8 | |V |45311. | | 319.22 |47 |M5e-M8.5e |00001 00002| +620003 |T Peg *|220854.3+123225 |M | 8.4 | 15.4 | |V |45159. | | 379.4 |49 |M6e-M8e |00001 00002| +620004 |U Peg *|235758.5+155710 |EW/KW | 9.23 | 10.07 | 9.73 |V |36511.66823 | | 0.374781439 | |F3+F3 |09562 08953| +620005 |V Peg |220102.6+060711 |M | 7.0 | 15.0 | |V |44506. | | 302.35 |44 |M3e-M7e |00001 00002| +620006 |W Peg *|231950.5+261644 |M | 7.6 | 13.0 | |V |44873. | | 345.5 |46 |M6e-M8e |00001 00002| +620007 |X Peg *|212059.9+142700 |M | 8.8 | 14.4 | |V |45244. | | 201.2 |50 |M2e-M5e |00001 00002| +620008 |Y Peg |221137.5+142156 |M | 8.9 | 16.0 | |V |43038. | | 206.93 |46 |M3e-M5e |00001 00002| +620009 |Z Peg *|000006.6+255311 |M | 7.3 | 13.6 | |V |45090. | | 334.8 |50 |M6e-M8.5e(Tc) |00001 00002| +620010 |RR Peg *|214430.6+250026 |M | 8.5 | 14.9 | |V |45290. | | 264.05 |43 |M4e-M8e |00001 00002| +620011 |RS Peg *|221216.2+143312 |M | 8.2 | 14.7 | |V |45161. | | 415.4 |45 |M6e-M9e |00001 00002| +620012 |RT Peg *|220410.1+350718 |M | 9.4 | 15.4 | |V |45599. | | 215.0 |44 |M3e-M6e |00001 00002| +620013 |RU Peg *|221402.6+124211 |UGSS+ZZ: | 9.0 | 13.2 | |V | | |( 74.3 ) | |pec(UG)+G8IVn |09569 09515| +620014 |RV Peg *|222536.8+302821 |M | 9.0 | 15.5 | |V |42049. | | 396.8 |38 |M6e |00001 00002| +620015 |RW Peg *|230411.5+151812 |M | 8.8 | 14.6 | |V |45457. | | 208.43 |48 |K3e-M6.5e |00001 00002| +620016 |RX Peg *|215622.3+225143 |SRB | 9.7 | 11.6 | |p | | | 629. : | |C4,4J(N3) |00653 08953| +620017 |RY Peg *|220551.6+333018 |CST | 12.31 | | |V | | | | |F9V |01026 00570| +620018 |RZ Peg *|220553.0+333025 |M | 7.6 | 13.6 | |V |45248. | | 438.7 |44 |C9,1e(Ne)(Tc)/CSe|00001 00002| +620019 |SS Peg *|223358.3+243354 |M | 8.0 | 13.6 | |V |45177. | | 424.8 | |M6e-M7e |00001 00002| +620020 |ST Peg |224904.5+272129 |SRB | 9.9 | 11.6 | |p | | | 136.2 | |M6e |01026 08953| +620021 |SU Peg |233659.6+324201 |M | 8.1 | 11.5 | |V |26610. | | 198.4 | |M3e |03567 06286| +620022 |SV Peg *|220542.1+352055 |SRB | 9.2 | 11.0 | |p | | | 144.6 | |M7 |01026 08953| +620023 |SW Peg |212229.0+215954 |M | 8.0 | 14.0 | |V |38750. | | 396.33 |42 : |M4e |03908 08953| +620024 |SX Peg *|225024.8+175337 |M | 9.7 | 15. | |p |45186. | | 303.6 |43 |S3,9e-S4.5,9e |00001 08953| +620025 |SY Peg |220548.0+345418 |LB | 9.6 | 10.0 | |V | | | | |M0 |00179 08953| +620026 |SZ Peg |220628.4+352553 |CST: | 10.4 | 10.7 | |p | | | | |K7 |01026 BD | +620027 |TT Peg |000629.3+270524 |SRA | 9.3 | 11.2 | |V |37178. | | 154. | |M6e |03908 08953| +620028 |TU Peg *|214504.6+124155 |M | 8.2 | 14.6 | |V |45137. | | 321.6 |45 |M7e-M8e |00001 08953| +620029 |TV Peg |212646.5+163454 |M | 9. |< 14. | |V |38550. | | 247.10 | |M0e |00001 08953| +620030 |TW Peg *|220359.5+282054 |SRB | 7.5 | 8.4 | |p | | | 929.3 | |M6-M8 |00653 08953| +620031 |TX Peg |221818.2+133629 |SRB | 9.3 | 10.80 | |B | | | 120. |50 |M5e |00001 05151| +620032 |TY Peg *|232957.0+133232 |EA/SD | 10.1 | 12.0 | 10.2 |V |40451.784 | | 3.092220 |14 *|A2 |00001 00010| +620033 |TZ Peg *|210857.4+160119 |M | 10.1 |< 14.0 | |p |38647. | | 211.9 |47 |M3e |00001 08953| +620034 |UU Peg *|213104.2+110914 |M | 11.1 |< 14. | |p |34612. | | 456.5 | |M7e |00001 00567| +620035 |UV Peg |220408.2+354534 |CST | 9.1 | | |V | | | | |A0 | BD | +620036 |UW Peg *|221810.7+024350 |SRB | 8.7 | 9.9 | |V | | | 106. | |M5-M7 |00898 08953| +620037 |UX Peg *|222835.8+180134 |EA/SD | 10.7 | 12.0 | |p |40425.479 | | 1.544617 |14 *|G5V |00001 08953| +620038 |UY Peg |224444.7+301733 |LB | 10.6 | 11.5 | |p | | | | |M1 |00904 BD | +620040 |VV Peg *|221303.9+182704 |RRAB | 11.13 | 12.31 | |V |39389.474 | | 0.4883871 |13 |A9-F4 |00001 08953| +620041 |VW Peg *|225623.6+331344 |EA | 9.9 | 10.6 | |V |17815.560 | | 1.170648 |12 *| |09519 08953| +620042 |VX Peg *|214244.7+222835 |SRB | 10.0 | 11.6 | |p | | | 934. | |M7 |00653 08953| +620043 |VY Peg |220240.4+022414 |M | 11. |< 16. | |p |34240. | | 377.0 | | |00001 00567| +620044 |VZ Peg *|234216.3+245458 |RRC | 11.66 | 12.13 | |V |38317.2930 | | 0.3064863 |36 |A0 |03315 02474| +620045 |WW Peg *|215638.0+362034 |M | 11.6 |< 13.9 | |p |40510. | | 354. | |M1 |06087 USNO | +620047 |WY Peg |220044.0+332303 |M | 11. |< 16. | |p |33555. | | 295.0 | | |03567 06286| +620054 |ZZ Peg *|225854.5+145145 |EB | 12.2 | 12.8 | 12.5 |p |25088.522 | | 0.667360 | | |01030 | +620058 |AD Peg |222408.8+264431 |LB | 11.1 | 13.0 | |V | | | | |M5-M7 |00898 BD | +620059 |AE Peg *|222721.5+164817 |RRAB | 12.37 | 13.08 | |V |39410.295 | | 0.496707 |10 |A6-F4 |03819 06286| +620060 |AF Peg |225123.2+180708 |SRB | 8.4 | 9.8 | |V | | | 65. | |M5II-III |00310 00119| +620064 |AK Peg |230311.1+112133 |SRA | 8.6 | 10.24 | |V |39040. | | 193.6 |40 |M4-M8e |00001 08953| +620066 |AM Peg |211008.4+122730 |SRA | 9.0 | 11.0 | |V |41620. | | 137.1 |44 |M1e-M3e |00373 08953| +620067 |AN Peg *|211121.1+132112 |M | 9.6 |< 13. | |V |42667. | | 280.07 | |M5 |00001 01033| +620068 |AO Peg *|212703.4+183558 |RRAB | 11.83 | 13.34 | |V |25514.347 | | 0.54724252 |10 |A7-F5 |03506 03506| +620069 |AP Peg |212922.9+180959 |M | 10.5 |< 14. | |p |38529. | | 300.18 | |M5e |00001 01033| +620070 |AQ Peg *|213720.9+132829 |EA/SD | 10.39 | 12.85 | 10.47 |V |41222.7048 | | 5.5485028 |12 |A2e+G5 |09099 00110| +620071 |AR Peg |215240.4+090258 |S: | 12.5 : | 13.58 | |B | | | | |K5 |01033 01033| +620072 |AS Peg *|211301.0+185603 |M | 10.2 | 15. | |p |36435. | | 329.76 | |M2e-M6: |00001 06286| +620073 |AT Peg *|221323.5+082531 |EA/SD | 8.97 | 9.75 | 9.04 |V |45219.8562 | | 1.1460764 |18 *|A7V |00001 08953| +620074 |AU Peg *|212400.2+181644 |CEP | 8.98 | 9.47 | |V |42303.61 | | 2.4015 |33 : |F8 |09582 03203| +620075 |AV Peg *|215202.8+223429 |RRAB | 9.88 | 10.92 | |V |43790.316 | | 0.3903747 |17 |A7-F6 |09583 08953| +620076 |AW Peg *|215220.7+240044 |EA/DS | 7.40 | 8.61 | 7.60 |V |43741.400 | | 10.62259 |10 |A5Ve+F2:pe |00001 08953| +620077 |AX Peg |215829.0+230551 |SR: | 10.6 | 11.3 | |V | | | | |M0: | BD | +620079 |AZ Peg |220636.7+291258 |SRB | 9.8 | 10.9 | |p | | | 102.2 | |M0e |01026 BD | +620080 |BB Peg *|222256.9+161928 |EW/KW | 10.8 |( 0.68 )|( 0.60 )|B |43764.3334 | | 0.3615021 | |F8 |09586 00975| +620081 |BC Peg |224148.4+211013 |SRB | 9.3 | 10.3 | |V | | | 125. |40 : |M6 |00310 08953| +620082 |BD Peg |224259.0+280926 |SRB | 9.4 | 10.3 | |p | | | 78. |50 |M6-M8 |01026 08953| +620083 |BE Peg |224342.2+231113 |SRB | 10.8 | 12.0 | |p | | | 74. | |M5 |01026 08953| +620084 |BF Peg *|224553.1+240837 |RRAB | 12.33 | 13.07 | |V |42961.435 | | 0.4958174 |13 | |09856 06286| +620085 |BG Peg *|225247.3+153935 |EA/SD | 10.5 | 11.6 | |V |45532.518 | | 1.95272 |18 |A2 |00001 06286| +620086 |BH Peg *|225301.0+154717 |RRAB | 9.99 | 10.79 | |V |39365.280 | | 0.640993 |20 |A8-F6 |06603 06603| +620087 |BI Peg *|225751.8+180101 |SRA | 9.9 | 11.2 | |V |27020. | | 500. |52 |M6e |00460 08953| +620088 |BK Peg *|234708.5+263400 |EA/D | 9.97 | 10.47 | 10.47 |V |41587.7259 | | 5.4899085 |06 *|F5IV-V+F8IV |08920 00279| +620091 |BN Peg |212804.3+045902 |EA | 10.3 | 11.2 | |V |33896.366 | | 0.713298 |25 *|F5 |06187 00279| +620092 |BO Peg *|213117.9+115647 |EA/KE: | 11.5 | 12.2 | 11.6 |V |45612.323 | | 0.5804301 |17 *|A4 |00001 00470| +620093 |BP Peg *|213313.5+224424 |DSCT(B) | 11.69 | 12.28 | |V |43014.5786 | | 0.109543375 |30 |A0 |09589 06527| +620097 |BT Peg |213623.9+261807 |RRAB | 11.9 | 13.2 | |p |36457.154 | | 0.5567705 | |A |03273 06286| +620098 |BU Peg *|213707.2+240626 |SRB | 11.0 | 12.1 | |V |32063.2 | | 64.9 |50 |M6.5 |08044 | +620101 |BX Peg *|213849.4+264134 |EW/KW | 11.0 |( 0.69 )|( 0.62 )|V |44195.3771 | | 0.2804208 | |G4-G5 |00001 00279| +620108 |CG Peg *|214116.8+244624 |RRAB | 10.64 | 11.58 | |V |39102.396 | | 0.4671382 |17 |A7-F6 |07114 03736| +620111 |CK Peg |214237.0+214205 |SR | 12.3 | 13.2 | |p |24810. | | 260. | |M8 |00193 | +620120 |CT Peg |214718.1+253256 |SRA | 12.3 | 14.2 | |p |25150. | | 351.5 | |M7 |00193 06286| +620121 |CU Peg *|214744.6+271525 |EA/SD | 11.9 | 14.0 | |V |45171.396 | | 3.8802376 |11 | |00001 07929| +620123 |CW Peg |214827.6+280630 |EA/SD | 11.8 | 16.1 | |p |45934.451 | | 2.372516 |12 | |00001 USNO | +620124 |CX Peg |214931.5+224145 |M | 12.0 |< 15.0 | |V |52784. | | 234. | | |00001 2MASS| +620125 |CY Peg |214947.2+210838 |RRAB | 12.3 | 13.4 | |p |24769.65 | | 0.64795 | | |00193 06286| +620127 |DD Peg |214913.5+255249 |SR: | 11.6 | 12.7 | |p | | | | |M6 |00193 | +620129 |DF Peg *|215443.4+143328 |EA/DS | 9.1 | 10.9 | 9.2 |p |33505.62 | | 14.6987 |04 *|A2: |00485 08953| +620130 |DG Peg *|220333.9+140031 |M | 10.4 | 14.5 | |V |40449. | | 146.60 | |M4e |00001 00470| +620131 |DH Peg *|221525.6+064921 |RRC | 9.15 | 9.80 | |V |44463.571 | | 0.25551040 |39 |A5.0-F0.5 |09591 06286| +620132 |DI Peg *|233214.7+145809 |EA/SD | 9.38 | 10.48 | 9.59 |V |45196.488 | | 0.7118168 |21 *|F4IV |00001 08953| +620133 |DK Peg *|234133.5+101257 |EA/DM | 10.0 | 10.7 | |p |45530.466 | | 1.6318117 |15 |A0V+A2V |00001 08953| +620134 |DL Peg |234827.0+153830 |M | 9.7 |< 15. | |V |42759. | | 180.4 | |M0 |00001 00002| +620135 |DM Peg *|000007.3+184417 |EA/D: | 10.8 | 11.6 | 11.0 |V |25853.470 | | 2.588991 |12 |A6 |01044 00753| +620136 |DN Peg *|215938.2+060844 |SRD | 10.1 | 11.8 | |V | | | 66.68 | |K |08044 00470| +620137 |DO Peg *|220730.6+061016 |EA/SD | 10.6 | 13.5 | |V |45211.510 | | 2.613897 |15 *|B8 |00001 01045| +620140 |DR Peg |213819.0+245518 |LB | 11.0 | 12.5 | |p | | | | |M6 |00193 00470| +620143 |DU Peg |235144.1+294544 |M | 11. |< 15. | |p |29253. | | 161.3 | |M5e |00001 | +620144 |DV Peg *|212707.0+212230 |EW/KE | 11.7 | 12.1 | 12.1 |V |28748.762 | | 0.94624 | |F |00916 | +620145 |DW Peg |213214.2+242827 |LB | 9.56 | 11.5 | |V | | | | |M6e |08079 06928| +620146 |DX Peg |214712.0+235116 |SRA | 8.7 | 9.6 | |V |37555.9 | | 80.66 | |M6 |09593 09593| +620147 |DY Peg *|230851.2+171256 |SXPHE(B) | 9.95 | 10.62 | |V |44502.07044 | | 0.072926297 |32 |A3-F1 |08677 02434| +620148 |DZ Peg *|232007.0+160407 |RRAB | 11.31 | 12.43 | |V |33891.308 | | 0.6073441 |16 |A8 |03506 09608| +620149 |EE Peg *|214001.9+091105 |EA/DM | 6.93 | 7.51 | 7.06 |V |45563.8916 | | 2.62821423 |09 *|A3mV+F5 |09595 02433| +620150 |EF Peg *|211504.1+140349 |UG | 10.7 |< 17. | |p | | | | | |09596 09596| +620151 |EG Peg |212727.0+084127 |M | 11.2 |< 16. | |p |35116. | | 337.9 | |M3 |00001 00470| +620152 |EH Peg *|223402.6+134156 |EA/D: | 11.2 | 11.6 | |p |28408.454 | | 2.374431 |15 |G0 |03338 00470| +620153 |EI Peg |232146.0+123545 |SRA | 9.20 | 10.06 | |V |30928.5 | | 61.15 | |M5III |01049 06928| +620156 |EM Peg |213912.4+081803 |SRA | 10.3 | 12.9 | |p |29468. | | 356. | |M5 |04024 00470| +620158 |EO Peg |231647.9+103557 |LB | 9.6 | 10.5 | |p | | | | |M7 |00797 08953| +620159 |EP Peg |000006.9+201415 |SR | 10.7 | 11.4 | |p |21172. | | 340. : | |M7 |00156 00156| +620161 |ER Peg |230546.8+332907 |EA/SD | 11. | 12. | |p |45526.554 | | 2.274670 | |A2 |00001 02380| +620162 |ES Peg |223318.5+301015 |RRAB | 12.0 | 13.5 | |p |37901.2784 | | 0.53867186 |15 | |03113 00829| +620163 |ET Peg *|224042.3+262302 |RRAB | 12.30 | 13.50 | |V |39005.973 | | 0.489834 |12 |A8-F6 |03506 00829| +620164 |EU Peg *|230125.2+272021 |EA | 12.2 | 12.8 | 12.3 |p |33981.925 | | 0.721114 |23 | |00829 00829| +620165 |EV Peg |214845.9+071219 |LB | 11.5 | 13.0 | |p | | | | |M7 |00797 00470| +620166 |EW Peg |224646.5+252016 |LB | 10.0 | 11.8 | |p | | | | |M6.5 |02609 BD | +620167 |EX Peg |224907.9+245256 |M | 10. | 19. | |p |36770. | | 337.24 |25 : |M10 |00001 02609| +620168 |EY Peg |231519.8+164719 |EA/SD | 12. | 14. | |p |36057.518 | | 0.65678 | | |02394 06286| +620169 |EZ Peg *|231653.4+254310 |NL: | 9.57 |( 0.34 )| |V | | | | |G5Ve |09442 08953| +620170 |FF Peg |233610.3+094858 |M | 9.7 | 14.7 | |V |38659. | | 252.4 | |M5 |00001 00196| +620171 |FG Peg |211946.8+133340 |LB | 11.5 | 12.3 | |p | | | | |M6.5 |04303 BD | +620183 |FT Peg |213048.9+125815 |LB | 11.5 | 12.5 | |p | | | | |M7 |04313 00922| +620188 |FY Peg |213305.3+160858 |LB | 11.5 | 12.5 | |p | | | | |M7 |04306 BD | +620189 |FZ Peg |213449.3+281719 |SRB: | 9.6 | 10.2 | |p | | | | |M5 |04316 08953| +620191 |GH Peg *|215051.6+151626 |EA/DM | 8.8 |( 0.48 )|( 0.13 )|V |41639.084 | | 2.556136 |10 *|A3 |06935 04319| +620192 |GI Peg |220638.3+245814 |LB | 10.5 | 11.3 | |p | | | | |M6 |04303 08953| +620193 |GK Peg |221337.7+252554 |SR: | 10.5 | 11.5 | |p | | | 70. : | |M6.5 |04320 08953| +620194 |GL Peg |222014.9+261803 |SR | 11.5 | 12.7 | |p | | | 145. : | |M7 |04320 | +620195 |GM Peg |223028.3+130618 |LB | 12.0 | 12.6 | |p | | | | |M8 |04306 | +620196 |GN Peg |224529.9+135902 |LB | 11.5 | 12.1 | |p | | | | |M7 |04306 | +620197 |GO Peg |225501.0+193335 |LB | 8.6 | 9.3 | |p | | | | |M4 |04109 08953| +620198 |GP Peg |230645.3+305522 |EA | 10.2 | 11.0 | |p |41238.328 | | 0.9756179 |14 : |A0 |09598 BD | +620199 |GQ Peg |234911.3+263809 |LB | 12.0 | 12.8 | |p | | | | |M6.5 |04306 | +620200 |GR Peg *|235109.5+270938 |SRA | 10.4 | 11.0 | |V |40746. | | 71.10 | |M8 |09593 09593| +620201 |GS Peg |235451.9+192102 |LB | 11.5 | 12.5 | |p | | | | |M7 |04306 | +620202 |GT Peg *|225153.5+314515 |BY+UV | 11.66 |( 0.07 )| |V |41388.783 | | 1.6410 | |M3.5Ve |06948 06936| +620203 |GU Peg |225218.1+341337 |SRA | 11.6 | 12.4 | |p |29164. | | 221.8 | | |03623 03623| +620206 |GX Peg *|223134.4+293234 |DSCTC | 6.35 |( 0.02 )| |V | | | 0.056 | |A8Vm |05500 BD | +620207 |GY Peg |222523.2+345310 |RRAB | 12.2 | 13.4 | |p |41217.390 | | 0.5034537 |20 | |06087 04321| +620208 |GZ Peg *|230931.5+084038 |SRA | 4.95 | 5.23 | |V |43085.7 | | 92.66 | |M4SIII |09599 BD | +620209 |HH Peg |235121.3+091848 |LB: | 5.74 | 5.90 | |V | | | | |M3III |06994 BD | +620211 |HK Peg |210946.8+134418 |SRA | 12.3 | 13.8 | |p |39052. | | 127.3 | | |08065 00294| +620212 |HL Peg |212324.7+231500 |LB | 12.0 | 12.5 | |p | | | | |M6.5 |04295 | +620213 |HM Peg |213741.8+133820 |SRA | 12. | 14. : | |p |39056. | | 159.5 | | |08065 00470| +620214 |HN Peg *|214431.3+144619 |BY | 5.92 | 5.95 | |V |40821.48 | | 24.90 | |G0V |04443 BD | +620215 |HO Peg |215218.2+211623 |LB | 8.3 | 8.7 | |p | | | | |M8III |04109 BD | +620216 |HP Peg *|220425.1+210309 |LB | 8.80 | 8.91 | |V | | | | |C1,2CH(R6p) |02406 BD | +620217 |HQ Peg |221534.1+292730 |LB | 9.5 | 10.4 | |p | | | | |M2e |00975 BD | +620218 |HR Peg *|225435.6+165631 |SRB | 6.12 | 6.49 | |V | | | 50. : | |S5,1(M4) |06059 BD | +620219 |HS Peg |233925.2+321950 |SR | 10.2 | 10.7 | |V | | | | |M8 |04015 04015| +620220 |HT Peg |235237.1+105650 |DSCTC | 5.30 | 5.39 | |V | | | 0.06 | |A4Vn |06985 BD | +620221 |HU Peg |235922.1+134712 |RR | 12.0 | 13.5 | |p | | | | | |02587 02587| +620222 |HV Peg |232740.4+251002 |ACV | 5.96 | 5.98 | |V | | | 6.97 |47 |A0p(Hg-Mn) |07851 BD | +620223 |HW Peg |233328.1+222956 |LB: | 5.32 |( 0.30 )| |V | | | | |M5IIIa |01371 BD | +620227 |II Peg *|235504.0+283801 |RS | 7.18 | 7.78 | |V |44240. | | 6.7026 | |K2IV-Ve |09602 09603| +620228 |IK Peg *|212626.7+192232 |DSCTC | 6.07 |( 0.03 )| |V | | | 0.044 | |A8m |04147 BD | +620230 |IM Peg *|225302.3+165028 |RS | 5.60 | 5.85 | |V |43760.6 | | 24.44 | |K1III-IVp |09610 BD | +620231 |IN Peg |222131.1+121219 |GCAS | 4.85 | 5.05 | |V | | | | | |67171 BD | +620233 |IP Peg |232308.6+182500 |UG+E | 12.0 | 18.6 | |B | | | | | |67172 67173| +620236 |IS Peg |215942.0+262557 |ZZO | 9.8 |( 0.08 )| |V | | | | | |68190 BD | +620238 |IU Peg |220716.2+115316 |M | 9.9 | 15.0 | |V | | | | | |68015 GSC | +620239 |IV Peg |224453.3+180656 |M | 12.0 | 17.8 | |B | | | | | |68191 68191| +620240 |IW Peg |230207.7+103527 |M | 2.4 | 3.4 | |K | | | | | |68015 | +620242 |IY Peg |232207.9+173143 |RRAB | 12.5 | 14.3 | |p | | | | | |68192 68192| +620243 |IZ Peg |232817.1+105437 |M | 1.7 | 6.4 | |L | | | | | |68194 68193| +620249 |KP Peg |212641.1+134118 |EB/KE | 7.05 | 7.26 | |V | | | | | |69220 BD | +620252 |KS Peg |233756.8+182402 |EB/KE | 5.37 |( 0.12 )| |B | | | | | |69222 BD | +620253 |KT Peg |233930.9+281447 |RS | 7.04 |( 0.03 )| |V | | | | | |69154 BD | +620254 |KU Peg |230529.3+260034 |RS | 7.7 |( 0.08 )| |V | | | | | |70089 BD | +620255 |KV Peg |212203.6+170752 |EW/KW | 11.73 |( 0.20 )| |V | | | | | |71212 71212| +620256 |KW Peg |213910.6+264234 |EA | 12.1 |( 0.31 )| |V | | | | | |71213 71214| +620257 |KX Peg |222232.5+302127 |RS | 7.46 | 7.58 | |V | | | | | |71220 BD | +620258 |KY Peg |214948.3+124224 |SR | 10.7 | 11.2 | |p | | | | | |72022 BD | +620259 |KZ Peg |225411.4+085408 |M | 3.61 |( 1.41 )| |J | | | | | |72036 GSC | +620260 |LL Peg |231912.0+171130 |M | 9.64 | 11.60 | |K | | | | | |72007 | +620261 |LM Peg |233607.7+274112 |SR | 10.6 | 11.3 | |p | | | | | |72022 BD | +620262 |LN Peg |001230.3+143349 |RS | 8.40 | 8.59 | |V | | | | | |73005 BD | +620263 |LO Peg |213101.7+232007 |BY | 9.04 | 9.27 | |V | | | | | |73248 73237| +620267 |LS Peg |215157.9+140653 |UG: | 11.6 | 13.0 | |V | | | | | |73250 73111| +620270 |LV Peg |220125.5+083625 |M | 6.18 | 6.95 | |J | | | | | |73014 GSC | +620273 |LY Peg |220552.4+120202 |EB | 11.34 | 11.52 | |V | | | | | |73251 73251| +620276 |MN Peg |223114.7+062249 |M | 11.5 |< 15.5 | |p | | | | | |73252 GSC | +620278 |MP Peg |224247.2+110053 |M | 6.15 | 7.19 | |J | | | | | |73014 GSC | +620280 |MR Peg |225412.1+223935 |M | 5.71 | 7.28 | |J | | | | | |73014 GSC | +620282 |MT Peg |230305.0+205507 |BY | 7.30 |( 0.02 )| |U | | | | | |73255 BD | +620284 |MV Peg |230736.3+234657 |M | 6.08 | 7.31 | |J | | | | | |73014 GSC22| +620285 |MW Peg |231025.1+344618 |SR | 11.7 | 12.4 | |p | | | | | |73256 73256| +620289 |NN Peg |000400.3+120845 |DSCTC | 7.26 | 7.33 | |Hp| | | | | |HIP HIP | +620290 |NO Peg |001026.8+283910 |SRB | 7.02 | 7.19 | |Hp| | | | | |HIP HIP | +620291 |NP Peg |001038.1+165039 |SRA | 9.61 | 9.81 | |Hp| | | | | |HIP HIP | +620292 |NQ Peg |001215.9+223324 |SRB | 7.58 | 7.84 | |Hp| | | | | |HIP HIP | +620293 |NR Peg |210952.1+160927 |EB: | 8.13 | 8.31 | |Hp| | | | | |HIP HIP | +620294 |NS Peg |211511.9+183709 |LB: | 7.92 | 8.03 | |Hp| | | | | |HIP HIP | +620295 |NT Peg |212335.4+140301 |BE | 6.64 | 6.79 | |Hp| | | | | |HIP HIP | +620296 |NU Peg |212730.6+103404 |LB: | 8.83 | 8.94 | |Hp| | | | | |HIP HIP | +620297 |NV Peg |212859.8+221046 |SRB | 5.66 | 5.84 | |Hp| | | | | |HIP HIP | +620298 |NW Peg |213102.0+112226 |SRB | 8.00 | 8.11 | |Hp| | | | | |HIP HIP | +620299 |NX Peg |213109.2+053445 |LB: | 8.10 | 8.20 | |Hp| | | | | |HIP HIP | +620300 |NY Peg |213509.8+181822 |SRB | 9.50 | 9.73 | |Hp| | | | | |HIP HIP | +620301 |NZ Peg |213901.2+201556 |RR: | 5.83 | 5.86 | |Hp| | | | | |HIP HIP | +620302 |OO Peg |214137.7+143931 |EA | 8.25 | 8.68 | |Hp| | | | | |HIP HIP | +620303 |OP Peg |214248.4+240309 |LB: | 9.50 | 9.65 | |Hp| | | | | |HIP HIP | +620304 |OQ Peg |215303.8+255531 |BE | 5.02 | 5.06 | |Hp| | | | | |HIP HIP | +620305 |OR Peg |215337.7+191030 |LB | 7.40 | 7.68 | |Hp| | | | | |HIP HIP | +620306 |OS Peg |215618.6+073314 |LB: | 9.06 | 9.16 | |Hp| | | | | |HIP HIP | +620307 |OT Peg |215940.1+160218 |BY: | 9.89 | 10.05 | |Hp| | | | | |HIP HIP | +620308 |OU Peg |215949.6+235627 |LB | 6.36 | 6.75 | |Hp| | | | | |HIP HIP | +620309 |OV Peg |220232.1+274329 |LB: | 9.19 | 9.35 | |Hp| | | | | |HIP HIP | +620310 |OW Peg |220418.1+214742 |LB: | 9.08 | 9.23 | |Hp| | | | | |HIP HIP | +620311 |OX Peg |220544.5+295423 |LB: | 7.72 | 7.84 | |Hp| | | | | |HIP HIP | +620312 |OY Peg |220730.0+180003 |LB | 6.26 | 6.47 | |Hp| | | | | |HIP HIP | +620313 |OZ Peg |220929.0+264606 |SRB | 8.83 | 9.07 | |Hp| | | | | |HIP HIP | +620314 |PP Peg |221017.0+321718 |LB | 7.15 | 7.26 | |Hp| | | | | |HIP HIP | +620315 |PQ Peg |221729.8+050839 |LB | 7.24 | 7.42 | |Hp| | | | | |HIP HIP | +620316 |PR Peg |221851.3+040835 |CEP: | 9.15 | 9.25 | |Hp| | | | | |HIP HIP | +620317 |PS Peg |221956.0+165222 |SRB | 8.86 | 9.11 | |Hp| | | | | |HIP HIP | +620318 |PT Peg |222100.1+265607 |SRB | 6.41 | 6.56 | |Hp| | | | | |HIP HIP | +620319 |PU Peg |222233.9+095625 |EB | 8.02 | 8.12 | |Hp| | | | | |HIP HIP | +620320 |PV Peg |222356.4+311542 |LB | 6.55 | 7.42 | |Hp| | | | | |HIP HIP | +620321 |PW Peg |222421.0+050338 |LB: | 8.61 | 8.76 | |Hp| | | | | |HIP HIP | +620322 |PX Peg |222434.4+160901 |LB: | 8.78 | 8.88 | |Hp| | | | | |HIP HIP | +620323 |PY Peg |223036.9+120209 |LB | 8.72 | 8.94 | |Hp| | | | | |HIP HIP | +620324 |PZ Peg |223540.8+142541 |LB: | 9.65 | 9.80 | |Hp| | | | | |HIP HIP | +620325 |QQ Peg *|224021.2+075405 |BY: | 11.31 | 11.88 | |Hp| | | | | |HIP HIP | +620326 |QR Peg |224040.4+264416 |LB: | 7.79 | 7.91 | |Hp| | | | | |HIP HIP | +620327 |QS Peg |224144.9+123428 |LB: | 7.96 | 8.06 | |Hp| | | | | |HIP HIP | +620328 |QT Peg |224149.6+222322 |EA | 7.44 | 7.66 | |Hp| | | | | |HIP HIP | +620329 |QU Peg |224335.3+324919 |LB | 7.32 | 7.42 | |Hp| | | | | |HIP HIP | +620330 |QV Peg |224409.0+273551 |LB: | 7.90 | 8.00 | |Hp| | | | | |HIP HIP | +620331 |QW Peg |224443.5+264151 |LB | 8.49 | 8.68 | |Hp| | | | | |HIP HIP | +620332 |QX Peg |224559.5+284004 |LB: | 9.81 | 9.98 | |Hp| | | | | |HIP HIP | +620333 |QY Peg |224804.0+103421 |LB | 8.63 | 8.77 | |Hp| | | | | |HIP HIP | +620334 |QZ Peg |225203.0+122011 |LB: | 10.05 | 10.21 | |Hp| | | | | |HIP HIP | +620335 |V0335 Peg |225236.2+101313 |E: | 7.36 | 7.39 | |Hp| | | | | |HIP HIP | +620336 |V0336 Peg |225440.4+242314 |LB | 7.32 | 7.47 | |Hp| | | | | |HIP HIP | +620337 |V0337 Peg |225700.2+142508 |LB | 7.72 | 7.86 | |Hp| | | | | |HIP HIP | +620338 |V0338 Peg |225806.4+213047 |LB: | 7.23 | 7.32 | |Hp| | | | | |HIP HIP | +620339 |V0339 Peg |230002.5+290016 |LB: | 9.31 | 9.41 | |Hp| | | | | |HIP HIP | +620340 |V0340 Peg |230132.7+323647 |LB | 7.12 | 7.43 | |Hp| | | | | |HIP HIP | +620341 |V0341 Peg *|230529.0+243911 |ELL | 7.12 | 7.15 | |Hp| | | | | |HIP HIP | +620342 |V0342 Peg *|230728.7+210803 |ELL: | 6.00 | 6.06 | |Hp| | | | | |HIP HIP | +620343 |V0343 Peg |230727.7+324931 |EA: | 6.17 | 6.39 | |Hp| | | | | |HIP HIP | +620344 |V0344 Peg |230946.9+154959 |LB: | 9.63 | 9.78 | |Hp| | | | | |HIP HIP | +620345 |V0345 Peg |231008.9+334604 |LB | 6.22 | 6.59 | |Hp| | | | | |HIP HIP | +620346 |V0346 Peg |231305.0+085748 |LB | 6.65 | 6.78 | |Hp| | | | | |HIP HIP | +620347 |V0347 Peg |231405.7+100939 |SRD | 9.46 | 9.67 | |Hp| | | | | |HIP HIP | +620348 |V0348 Peg |231712.9+314326 |LB: | 7.96 | 8.09 | |Hp| | | | | |HIP HIP | +620349 |V0349 Peg |231719.2+295224 |SRB: | 7.22 | 7.32 | |Hp| | | | | |HIP HIP | +620350 |V0350 Peg |232430.9+304244 |DSCTC | 7.27 | 7.32 | |Hp| | | | | |HIP HIP | +620351 |V0351 Peg |232525.2+154119 |RRC | 8.00 | 8.31 | |Hp| | | | | |HIP HIP | +620352 |V0352 Peg |233001.9+213258 |ACV: | 7.08 | 7.12 | |Hp| | | | | |HIP HIP | +620353 |V0353 Peg |233132.3+334154 |EB | 7.49 | 7.56 | |Hp| | | | | |HIP HIP | +620354 |V0354 Peg |233143.0+282413 |ACV | 6.40 | 6.44 | |Hp| | | | | |HIP HIP | +620355 |V0355 Peg |233539.4+225942 |SRD | 8.98 | 9.36 | |Hp| | | | | |HIP HIP | +620356 |V0356 Peg |234511.1+314122 |LB: | 9.25 | 9.39 | |Hp| | | | | |HIP HIP | +620357 |V0357 Peg |234535.1+252819 |EW | 9.01 | 9.49 | |Hp| | | | | |HIP HIP | +620358 |V0358 Peg |234618.9+245121 |SRB | 10.33 | 10.69 | |Hp| | | | | |HIP HIP | +620359 |V0359 Peg |234623.5+232700 |SRB | 7.94 | 8.09 | |Hp| | | | | |HIP HIP | +620360 |V0360 Peg |234830.4+303139 |RV: | 8.05 | 8.43 | |Hp| | | | | |HIP HIP | +620361 |V0361 Peg |235114.4+160827 |LB | 8.93 | 9.12 | |Hp| | | | | |HIP HIP | +620362 |V0362 Peg |235122.3+231748 |LB: | 8.93 | 9.03 | |Hp| | | | | |HIP HIP | +620363 |V0363 Peg |235554.7+151349 |SRB | 6.37 | 6.51 | |Hp| | | | | |HIP HIP | +620365 |V0365 Peg |213926.4+230138 |EB | 10.12 | 10.59 | |V | | | | | |75207 GSC | +620371 |V0371 Peg |213654.3+134032 |SR: | 12.1 | 13.6 | |V | | | | | |76012 GSC | +620372 |V0372 Peg |214704.8+171139 |GDOR | 6.53 |( 0.07 )| |B | | | | | |76237 DM | +620373 |V0373 Peg |215008.7+171709 |UV: | 5.17 | 5.53 | |V | | | | | |76238 DM | +620374 |V0374 Peg |220113.1+281825 |UV | 3.5 | 16.0 | |U | | | | | |76239 76274| +620375 |V0375 Peg |220140.7+103718 |EA: | 12.5 | 13.5 | |* | | | | | |76272 UCAC2| +620376 |V0376 Peg |220310.8+185304 |EP | 7.65 |( 0.02 )| |V | | | | | |76241 DM | +620377 |V0377 Peg |220532.5+173038 |DSCTC | 7.95 |( 0.03 )| |B | | | | | |76242 DM | +620380 |V0380 Peg |212527.6+222542 |SRA | 11.9 | 13.4 | |V | | | | | |77144 77144| +620382 |V0382 Peg |212955.8+231306 |LB | 12.0 | 13.0 | |V | | | | | |77144 77144| +620383 |V0383 Peg |213117.6+264406 |M | 11.1 |< 15.0 | |V | | | | | |77144 77144| +620385 |V0385 Peg |215155.4+291714 |LB | 11.9 | 13.5 | |V | | | | | |77144 77144| +620386 |V0386 Peg |215258.6+334830 |SR | 11.6 | 13.1 | |V | | | | | |77144 77144| +620389 |V0389 Peg |215940.7+293959 |SR | 12.0 | 13.5 | |V | | | | | |77144 77144| +620390 |V0390 Peg |220215.1+284550 |SR | 9.64 | 9.71 | |V | | | | | |77053 DM | +620392 |V0392 Peg |220709.9+282837 |M | 12.0 | 16.1 | |V | | | | | |77144 77144| +620395 |V0395 Peg |232023.2+164723 |RS | 10.97 | 11.11 | |V | | | | | |77119 DM | +620396 |V0396 Peg |233232.6+103320 |EW | 12.12 | 12.43 | |* | | | | | |77212 UCAC2| +620399 |V0399 Peg |212544.1+160211 |M | 11.1 |< 13.0 | |* |52952 | | 223. | | |78319 2MASS| +620400 |V0400 Peg |213447.0+195611 |LB: | 6.90 |( 0.02 )| |V | | | | |K0 |78018 DM | +620401 |V0401 Peg |215005.4+315053 |BY: | 7.34 |( 0.01 )| |V | | | 6.985 : | |K0 |78018 DM | +620402 |V0402 Peg |215445.0+321943 |BY | 7.73 |( 0.01 )| |V | | | 4.51 : | |K0V |78018 DM | +620403 |V0403 Peg |223950.8+040658 |BY | 8.48 |( 0.03 )| |V | | | 18.05 | |K2V |78018 DM | +620404 |V0404 Peg |225630.9+335512 |EW | 10.47 | 10.77 | |V |52555.49881 | | 0.419195 | | |78305 GSC | +620406 |V0406 Peg |233525.6+310941 |BY | 7.90 |( 0.01 )| |V | | | 12.525 | |G5V |78018 DM | +620407 |V0407 Peg *|233655.4+154806 |EW | 9.28 | 9.75 | 9.69 |V |52558.1703 | | 0.636889 | | |78307 DM | +620410 |V0410 Peg |222223.4+342451 |E: | 11.0 | | |p | | | | |K0 |00458 BD | +620412 |V0412 Peg |212928.2+071545 |SRB | 12.2 |< 13.2 | |V | | | 127. | | |79100 GSC | +620414 |V0414 Peg |222118.4+054342 |EA | 8.49 | 8.60 | 8.60 |V |48367.865 | | 3.69948 |07 |F8 |79009 DM | +620415 |V0415 Peg *|224158.8+151316 |EA | 8.15 | 8.25 | 8.24 : |V |48223.160 | | 11.4456 |05 : |F8 |79001 DM | +620416 |V0416 Peg *|230105.9+264653 |EA: | 8.13 | 8.19 | 8.19 |V |48560.500 | | 1.424797 |05 : |A8V |79018 DM | +620417 |V0417 Peg |232114.1+092607 |SRB | 8.6 | 9.2 | |V | | | 50. | |M4 |79064 DM | +620418 |V0418 Peg *|233537.5+143537 |GDOR | 7.52 | 7.56 | |Hp| | | 1.1417 | |A8:Vm+F3:V |79037 DM | +620421 |V0421 Peg *|000702.0+225040 |EA | 8.27 | 8.73 | 8.63 |V |54759.62 | | 3.0875658 |06 |F2III/IV |80001 HIP | NL80_1 +620422 |V0422 Peg |001429.6+133109 |RV: | 11.7 | 12.9 | |V |53728.55 | | 19.80 | | |80022 GSC | NL80_1 +620425 |V0425 Peg |211044.8+162324 |BY | 12.0 | 12.5 | |V | | | 10.5750 | | |80021 GSC | NL80_3 +620427 |V0427 Peg |211436.7+195256 |BY | 11.87 |( 0.06 *)| |V | | | 1.1520 | | |80021 GSC | NL80_3 +620428 |V0428 Peg |211632.7+194213 |RS | 10.3 | 10.6 | |V | | | 15.2484 | | |80001 DM | NL80_3 +620429 |V0429 Peg *|212034.2+183717 |RRAB | 11.3 | 12.4 | |V |54704.704 | | 0.56245 |25 | |80001 GSC | NL80_3 +620430 |V0430 Peg |212341.7+152148 |BY | 10.37 |( 0.06 *)| |V | | | 6.6225 | | |80021 GSC | NL80_3 +620432 |V0432 Peg |212813.7+115745 |EA | 11.9 | 12.5 | 12.5 |V |55124.572 | | 1.4796702 |15 | |80001 80574| NL80_3 +620433 |V0433 Peg |212846.9+232013 |BY | 11.10 | 11.21 | |V | | | 4.5407 | |K4 |80021 GSC | NL80_3 +620434 |V0434 Peg |212934.8+093530 |BY | 11.71 |( 0.06 *)| |V | | | 2.7362 | | |80021 GSC | NL80_3 +620439 |V0439 Peg |213040.6+220143 |BY | 10.2 | 10.4 | |* | | | 24.1350 | | |80067 80067| NL80_3 +620441 |V0441 Peg |213116.7+225357 |BY | 10.05 |( 0.07 *)| |V | | | 1.1268 | | |80021 DM | NL80_3 +620442 |V0442 Peg |213222.0+243342 |BY | 11.99 |( 0.07 : *)| |V | | | 4.7358 | |M3.5 |80021 GSC | NL80_3 +620447 |V0447 Peg |213830.9+272209 |SRB | 10.4 | 10.9 | |* | | | 33. | | |80100 GSC | NL80_3 +620448 |V0448 Peg |213927.6+271557 |LB | 9.74 | 10.10 | |V | | | | |M2III |80057 DM | NL80_3 +620453 |V0453 Peg |214453.2+042143 |RRAB | 12.45 | 13.64 | |CV|53904.88 | | 0.5869586 |14 | |80001 GSC | NL80_3 +620454 |V0454 Peg |214537.4+271111 |BY | 11.30 |( 0.07 *)| |V | | | 1.3729 | | |80021 GSC | NL80_3 +620455 |V0455 Peg |214744.3+192908 |DSCTC | 10.36 | 10.40 | |* | | | 0.13683 : | | |80626 DM | NL80_3 +620456 |V0456 Peg |214809.4+191013 |BY | 10.64 |( 0.06 *)| |V | | | 1.1598 | | |80021 GSC | NL80_3 +620457 |V0457 Peg |214827.4+223702 |DSCT | 12.5 | 12.7 | |V | | | 0.090258 |35 | |80002 GSC | NL80_3 +620460 |V0460 Peg *|215008.2+192526 |ELL+DSCTC | 7.40 | 7.49 | |B | | | 1.4708 | |A8III+F7V: |80583 HIP | NL80_3 +620462 |V0462 Peg |215025.4+145106 |EB | 12.05 | 12.50 | 12.35 |V |54303.748 | | 0.878990 | | |80626 GSC | NL80_3 +620463 |V0463 Peg |215025.6+174343 |EW | 11.60 | 12.15 | 12.05 |V |53336.523 | | 0.3305685 | | |80626 GSC | NL80_3 +620464 |V0464 Peg |215103.1+351046 |EW | 12.35 | 12.9 | 12.8 |* |51426.657 | | 0.890893 | | |80580 80580| NL80_3 +620466 |V0466 Peg |215243.7+214453 |EA: | 8.54 | 8.62 | 8.57 |V |53162.88 | | 3.05174 : | |F2 |80626 DM | NL80_3 +620467 |V0467 Peg |215247.7+181734 |EW | 9.43 | 9.52 | 9.51 |V |55012.8689 | | 0.312817 | |F2 |80626 DM | NL80_3 +620468 |V0468 Peg |215312.0+222338 |EA | 12.50 | 13.0 | 12.60 |* |51353.799 | | 1.62394 |11 | |80626 GSC | NL80_3 +620469 |V0469 Peg |215321.2+223711 |SR | 11.5 | 11.8 | |V | | | 43.5 | | |80626 GSC | NL80_3 +620471 |V0471 Peg |215345.3+183159 |EA | 11.18 | 11.33 | 11.31 |* |51520.702 | | 0.9382 |10 | |80626 GSC | NL80_3 +620472 |V0472 Peg |215406.8+342837 |BY | 10.5 | 10.8 | |* | | | 37.0918 | | |80067 80067| NL80_3 +620475 |V0475 Peg |215433.5+143205 |DSCTC | 9.21 |( 0.03 )| |V | | | 0.048622 | |A4/5V |80585 HIP | NL80_3 +620477 |V0477 Peg |215501.3+202026 |EW | 11.65 | 11.75 | 11.75 |V |54368.5373 | | 0.274751 | | |80002 GSC | NL80_3 +620478 |V0478 Peg |215525.4+193717 |EA | 9.8 | 10.5 | 9.9 |V |53906.803 | | 1.285180 |12 |A2 |80627 DM | NL80_3 +620479 |V0479 Peg *|215626.5+153441 |RRAB | 12.1 | 13.2 | |V |54799.523 | | 0.560112 |15 | |80001 GSC | NL80_3 +620481 |V0481 Peg |215711.2+224011 |EW | 9.55 | 9.95 | 9.90 |V |53330.5239 | | 0.422023 | | |80001 DM | NL80_3 +620482 |V0482 Peg |215832.7+214925 |DSCT | 12.33 | 12.54 | |V |53338.5609 | | 0.080784 | | |80002 GSC | NL80_3 +620484 |V0484 Peg |215929.0+145817 |EW | 11.37 | 11.52 | 11.51 |V |54707.648 | | 0.412371 | | |80626 GSC | NL80_3 +620487 |V0487 Peg |220041.6+271514 |BY | 11.37 |( 0.06 *)| |V | | | 0.5235 | |K |80021 GSC | NL80_3 +620489 |V0489 Peg |220149.3+175942 |EW | 11.77 | 12.08 | 12.0 |V |53521.877 | | 0.415211 | | |80048 GSC | NL80_3 +620490 |V0490 Peg |220214.0+152014 |BY | 9.74 |( 0.04 *)| |V | | | 1.4751 | |K5 |80021 DM | NL80_3 +620491 |V0491 Peg |220237.1+034216 |RRAB | 12.5 | 13.5 | |V |54672.793 | | 0.549584 |15 | |80001 GSC | NL80_3 +620492 |V0492 Peg *|220237.7+185403 |GDOR+DSCTC| 10.6 |( 0.02 )| |V | | | 0.56088 | |F5 |80589 GSC | NL80_3 +620494 |V0494 Peg |220310.9+223207 |EA | 11.95 | 12.50 | 12.10 |V |52757.80 | | 0.714821 |20 | |80002 GSC | NL80_3 +620495 |V0495 Peg |220328.0+181923 |EB | 11.24 | 11.41 | 11.33 |V |54647.817 | | 0.475533 | | |80626 GSC | NL80_3 +620499 |V0499 Peg *|220542.0+195508 |EW | 11.8 | 12.0 | 12.0 |V |55482.621 | | 0.303621 | | |80001 GSC | NL80_3 +620500 |V0500 Peg |220600.1+193550 |EB | 11.45 | 12.6 | 11.65 |V |53621.5882 | | 0.579880 | | |80002 GSC | NL80_3 +620501 |V0501 Peg |220601.0+171038 |BY | 10.8 | 11.0 | |* | | | 23.8171 | | |80067 80067| NL80_3 +620502 |V0502 Peg |220753.8+224359 |EW | 12.50 | 13.00 | 12.95 |V |54783.541 | | 0.469433 | | |80002 GSC | NL80_3 +620504 |V0504 Peg |220827.1+183525 |EW: | 11.12 | 11.17 | 11.16 : |* |51505.633 | | 0.38510 | | |80001 GSC | NL80_3 +620506 |V0506 Peg |221217.2+151146 |EW | 11.85 | 12.15 | 12.05 |V |53602.806 | | 0.436738 | | |80001 GSC | NL80_3 +620508 |V0508 Peg |221251.8+172016 |EW | 12.27 | 12.68 | 12.64 |V |53338.560 | | 0.960564 | | |80011 GSC | NL80_3 +620509 |V0509 Peg |221336.6+264646 |RRAB | 12.0 | 13.3 | |V |53270.568 | | 0.364875 |17 | |80001 GSC | NL80_3 +620510 |V0510 Peg *|221338.6+185410 |DSCTC | 8.27 |( 0.02 b)| |B | | | 0.0441427 | |A9IV |80092 HIP | NL80_3 +620513 |V0513 Peg *|221631.2+290020 |UG | 12.3 | 16.5 | |V | | | ( 71. ) | |pec(UG)+M3 |80167 80167| NL80_3 +620515 |V0515 Peg |221734.8+153133 |DSCTC | 11.24 | 11.33 | |V | | | 0.096321 | | |80626 GSC | NL80_3 +620519 |V0519 Peg |221923.7+033404 |BY | 11.8 | 12.0 | |* | | | 8.05823 | | |80067 80067| NL80_3 +620521 |V0521 Peg *|222144.8+184008 |UGSU | 12.0 | 17.6 | |* | | | | |pec(UG)+M5 |80592 80592| NL80_3 +620523 |V0523 Peg |222228.8+292212 |EW | 10.26 | 10.38 | 10.37 |* |51352.7603 | | 0.27793 | | |80001 GSC | NL80_3 +620529 |V0529 Peg |222614.4+213210 |BY | 9.94 |( 0.03 *)| |V | | | 2.8894 | |K0 |80021 GSC | NL80_3 +620530 |V0530 Peg |222619.3+260338 |SR | 11.8 | 14.3 | |V | | | 324. | |N |80001 GSC | NL80_3 +620532 |V0532 Peg |222804.0+183607 |BY: | 9.97 |( 0.03 *)| |V | | | 0.3232 | |F8 |80021 DM | NL80_3 +620533 |V0533 Peg *|222820.7+173959 |BY | 12.02 |( 0.08 *)| |V | | | 2.3142 | | |80021 GSC | NL80_3 +620534 |V0534 Peg |223328.4+163901 |EA | 9.41 | 9.56 | |V |52933.640 | | 1.01814 |13 |F8 |80011 GSC | NL80_3 +620535 |V0535 Peg |223616.8+331857 |EW | 10.55 | 11.05 | 10.94 |* |51460.5699 | | 0.3230 | | |80021 GSC | NL80_3 +620539 |V0539 Peg |224410.0+144639 |EA | 12.00 | 13.3 | 12.1 |V |52910.6924 | | 1.242973 |15 | |80001 GSC | NL80_3 +620540 |V0540 Peg |224446.1+302934 |BY | 10.40 |( 0.03 : *)| |V | | | 3.5533 | | |80021 DM | NL80_3 +620541 |V0541 Peg |224631.9+351136 |BY | 11.5 | 11.6 | |* | | | 4.139 | | |80043 80043| NL80_3 +620542 |V0542 Peg |224705.5+265255 |RS | 11.13 | 11.45 | |V | | | 2.22033 | | |80060 80060| NL80_3 +620543 |V0543 Peg |224722.7+231317 |BY | 11.24 | 11.64 | |V | | | 5.541 | | |80034 GSC | NL80_3 +620548 |V0548 Peg |225134.2+345753 |EW | 12.1 | 12.35 | 12.35 |* |51433.548 | | 0.38162 | | |80085 80085| NL80_3 +620549 |V0549 Peg |225155.5+353915 |BY | 11.03 |( 0.05 *)| |V | | | 5.2276 | | |80021 GSC | NL80_3 +620550 |V0550 Peg *|225323.1+084607 |RRAB | 12.4 | 13.9 | |V |54783.6193 | | 0.4930493 |20 | |80377 GSC | NL80_3 +620551 |V0551 Peg |225338.1+291305 |BY | 12.33 |( 0.13 *)| |V | | | 0.8252 | | |80021 GSC | NL80_3 +620554 |V0554 Peg |225538.9+281035 |BY | 11.77 |( 0.05 : *)| |V | | | 0.8442 | | |80021 GSC | NL80_3 +620555 |V0555 Peg |225617.6+205236 |BY | 11.60 |( 0.07 *)| |V | | | 1.0999 | | |80021 GSC | NL80_3 +620557 |V0557 Peg |225923.5+325133 |EA/RS | 11.53 | 11.97 | 11.90 |* |51353.792 | | 2.3845 |05 | |80001 GSC | NL80_3 +620558 |V0558 Peg |225956.8+350948 |M | 10.9 | 13.6 | |* |55502. | | 285. : | |MIIIe |80001 2MASS| NL80_3 +620560 |V0560 Peg |230131.6+304427 |EA: | 10.66 | 11.10 | 10.79 |V |52884.4259 | | 0.47137 |26 : |F5V |80001 GSC | NL80_3 +620561 |V0561 Peg |230146.8+130515 |M | 10.6 | 13.5 | |V |53635. | | 300. | |Np |80001 GSC | NL80_3 +620564 |V0564 Peg |230310.3+342507 |RRC | 12.40 | 12.98 | |V |52909.3356 | | 0.318833 |30 | |80057 GSC | NL80_3 +620566 |V0566 Peg |230623.7+340933 |SR: | 11.50 | 11.98 | |V | | | | | |80057 GSC | NL80_3 +620567 |V0567 Peg |230724.9+315014 |BY | 10.67 |( 0.04 *)| |V | | | 7.7129 | |K |80021 DM | NL80_3 +620569 |V0569 Peg |230843.0+213718 |BY | 9.40 |( 0.04 *)| |V | | | 7.5465 | |G5 |80021 DM | NL80_3 +620571 |V0571 Peg |230915.9+341924 |LB | 10.93 | 11.40 | |V | | | | |M5III |80057 GSC | NL80_3 +620573 |V0573 Peg |231034.2+314254 |EW | 12.34 | 12.85 | 12.75 |V |52885.2469 | | 0.417461 | |Ge |80057 GSC | NL80_3 +620574 |V0574 Peg |231034.3+092951 |BY | 10.61 | 10.86 | |V | | | 3.772 | | |80034 GSC | NL80_3 +620575 |V0575 Peg |231036.9+205526 |BY | 9.95 | 10.11 | |V | | | 0.9198 | |K2 |80021 GSC | NL80_3 +620576 |V0576 Peg |231059.5+214243 |EW | 11.2 | 11.8 | 11.6 |V |54372.596 | | 0.258175 | | |80596 GSC | NL80_3 +620579 |V0579 Peg |231159.6+194430 |RRAB | 12.4 | 13.1 | |V |54255.909 | | 0.690277 |22 | |80001 GSC | NL80_3 +620580 |V0580 Peg |231229.0+170922 |BY | 10.96 | 11.18 | |V | | | 3.0960 | |K3V |80001 GSC | NL80_3 +620583 |V0583 Peg |231455.8+273959 |BY | 11.36 | 11.56 | |V | | | 11.7668 | | |80021 GSC | NL80_3 +620585 |V0585 Peg *|231521.5+290502 |RPHS | 11.8 |( 0.13 )| |B | | | 0.0041226 | |sdB |80603 GSC | NL80_3 +620586 |V0586 Peg |231708.2+113700 |BY | 12.1 | 12.3 | |* | | | 0.942903 | | |80060 80060| NL80_3 +620588 |V0588 Peg |231806.6+155259 |RRAB | 12.5 | 13.3 | |V |53900.9106 | | 0.601987 |20 | |80002 GSC | NL80_3 +620589 |V0589 Peg |232048.1+292156 |BY | 11.52 |( 0.07 *)| |V | | | 1.3710 | | |80021 GSC | NL80_3 +620590 |V0590 Peg |232138.8+344252 |EA/RS | 11.7 | 12.2 | |* |51445.84 | | 4.243 | | |80605 GSC | NL80_3 +620592 |V0592 Peg |232153.1+231656 |BY | 10.90 |( 0.11 *)| |V | | | 18.8148 | | |80021 DM | NL80_3 +620594 |V0594 Peg |232358.5+313934 |SR | 11.49 | 12.12 | |V | | | 50.11 | | |80057 GSC | NL80_3 +620595 |V0595 Peg |232617.1+275203 |BY | 11.72 |( 0.09 *)| |V | | | 1.2530 | |M3V |80021 GSC | NL80_3 +620596 |V0596 Peg |232629.3+312041 |EW | 12.04 | 12.68 | 12.60 |V |54770.669 | | 0.2834963 | | |80001 GSC | NL80_3 +620597 |V0597 Peg |233204.6+322756 |RS | 12.0 | 12.1 | |* | | | 7.839 | | |80043 80043| NL80_3 +620599 |V0599 Peg |233409.0+341855 |EA | 12.1 | 13.2 | 12.3 |V |53263.4830 | | 3.917881 |20 | |80600 GSC | NL80_3 +620601 |V0601 Peg |233709.7+303714 |EW | 12.04 | 12.60 | 12.45 |V |53255.5877 | | 0.801886 | | |80600 GSC | NL80_3 +620603 |V0603 Peg |233906.8+220412 |BY | 10.55 |( 0.06 *)| |V | | | 4.0623 | |K2 |80021 DM | NL80_3 +620604 |V0604 Peg |234029.0+295912 |BY | 11.16 |( 0.13 *)| |V | | | 1.1648 | | |80021 GSC | NL80_3 +620605 |V0605 Peg |234106.2+270643 |BY | 11.95 |( 0.08 *)| |V | | | 9.8987 | | |80021 GSC | NL80_3 +620606 |V0606 Peg |234158.8+181301 |RRAB | 12.2 | 13.0 | |V |54309.7867 | | 0.529660 |20 | |80001 GSC | NL80_3 +620607 |V0607 Peg |234413.9+320524 |EW | 11.95 | 12.05 | |V |53255.3958 | | 0.347764 | | |80600 GSC | NL80_3 +620608 |V0608 Peg |234416.2+321042 |DSCT | 12.21 | 12.41 | |V |53255.4841 | | 0.057163 | | |80600 GSC | NL80_3 +620609 |V0609 Peg |234520.9+323958 |EW | 12.15 | 12.28 | 12.28 |V |53255.7725 | | 0.813644 | | |80600 GSC | NL80_3 +620612 |V0612 Peg |234643.5+103335 |BY | 10.82 | 11.37 | |* | | | 18.9 | | |80246 80246| NL80_3 +620614 |V0614 Peg |234720.8+300511 |BY: | 10.81 |( 0.10 *)| |V | | | 2.3252 | | |80021 GSC | NL80_3 +620618 |V0618 Peg |235600.8+105319 |RRAB | 11.5 | 12.5 | |V |54730.6705 | | 0.562393 |10 | |80001 GSC | NL80_3 +620619 |V0619 Peg |235657.8+104816 |EW | 10.85 | 11.30 | 11.20 |V |54299.824 | | 0.388710 | | |80596 GSC | NL80_3 +629002 |bet Peg *|230346.5+280458 |LB | 2.31 | 2.74 | |V | | | | |M2.5II-IIIe |01050 08953| +629003 |gam Peg |001314.2+151101 |BCEP | 2.78 | 2.89 | |V |41224.640 | | 0.151750125 |50 |B2IV |09605 08953| +629005 |eps Peg *|214411.2+095230 |LC | 0.7 | 3.5 | |V | | | | |K2Ib |06875 08953| +629016 |phi Peg |235229.3+190713 |SRB: | 5.11 | 5.17 | |Hp| | | | | |HIP HIP | +629019 |tau Peg *|232038.2+234425 |DSCTC | 4.60 |( 0.02 )| |V | | | 0.05433 | |A5IV |07580 BD | +630001 |R Per |033003.1+354017 |M | 8.1 | 14.8 | |V |45339. | | 209.89 |49 |M2e-M5e |00001 00002| +630002 |S Per *|022251.7+583511 |SRC | 7.9 | 12.0 | |V | | | 822. | |M3Iae-M7 |08630 00002| +630003 |T Per *|021921.9+585740 |SRC | 8.34 | 9.7 | |V | | | 2430. | |M2Iab |08044 03544| +630004 |U Per *|015935.1+544920 |M | 7.4 | 12.8 | |V |45066. | | 320.26 |46 |M5e-M7e |00001 00002| +630006 |W Per *|025037.9+565900 |SRC | 8.7 | 11.8 | |V | | | 485. | |M3Ia-Iab-M7 |09653 00002| +630007 |X Per *|035523.1+310245 |GCAS+XP | 6.03 | 7.0 | |V | | | | |O9.5(III-V)ep | 08953| +630008 |Y Per *|032742.4+441037 |M | 8.1 | 11.3 | |V |45245. | | 248.60 |48 |C4,3e(R4e) |00001 00002| +630009 |Z Per *|024003.2+421158 |EA/SD | 9.7 | 12.4 | 9.8 |p |45659.245 | | 3.0563066 |14 |A0V+G0IV-V |00001 09668| +630010 |RR Per *|022829.4+511617 |M | 8.1 | 15.1 | |V |44944. | | 389.62 |45 |M6e-M7e |00001 00002| +630011 |RS Per *|022224.3+570634 |SRC | 7.82 | 10.0 | |V | | | 244.5 | |M4Iab |08044 08953| +630012 |RT Per *|032340.4+463436 |EA/SD | 10.46 | 11.74 | 10.67 |V |33376.0583 | | 0.84940032 |16 *|F2V |09734 09736| +630013 |RU Per |033030.3+393929 |SRB | 10.0 | 12.0 | |V | | | 170. : | |M4e | 00002| +630014 |RV Per *|041038.0+341555 |EA/SD | 10.3 | 12.7 | 10.4 |V |42046.921 | | 1.9734926 |15 *|A2 |00001 00462| +630015 |RW Per *|042016.8+421852 |EA/D | 9.68 | 11.36 | 9.78 |V |36701.0854 | | 13.198904 |08 |A5IIIe+G0III |09655 08953| +630016 |RX Per |035116.2+330207 |M | 9.0 |< 13.5 | |V |42642. | | 422.08 | |M3e |00001 00100| +630017 |RY Per *|024542.1+480838 |EA/SD | 8.50 | 10.25 | 8.65 |V |27070.708 | | 6.8635663 |13 |B5Vea+F6IV |00957 00102| +630018 |RZ Per *|012942.2+505124 |M | 8.7 | 14.0 | |V |45498. | | 355.25 |47 |S4,9e |00001 00002| +630019 |SS Per |015557.4+502902 |CST | 12.1 | | |p | | | | |K | BD | +630020 |ST Per *|030005.7+391125 |EA/SD | 9.52 | 11.40 | 9.62 |V |42436.588 | | 2.648315 |13 |A3V+G-K |00001 09742| +630021 |SU Per *|022206.9+563615 |SRC | 9.4 | 10.8 | |p | | | 533. | |M3.5Iab |06116 00884| +630022 |SV Per *|044947.9+421723 |DCEP | 8.49 | 9.37 | |V |43839.296 | | 11.129318 |39 |F6-G1 |09029 00884| +630023 |SW Per |041051.9+421235 |SRB | 9.6 | 11.1 | |p | | | 102. | |M5III |00589 01059| +630024 |SX Per *|041706.1+414355 |DCEP | 10.70 | 11.54 | |V |41847.979 | | 4.289967 |25 |F5-G5 |08300 01059| +630025 |SY Per *|041633.2+503735 |SRA | 8.7 |( 3.0 )| |V |37635. | | 474. |54 |C6,4e(N3e) |04972 04972| +630026 |SZ Per |034707. +341921:|N: | 10.5 |< 16.5 | |p | | | | | |01060 08953| +630027 |TT Per |015029.3+534434 |SRB | 9.2 | 10.6 | |p | | | 82. | |M5II-III |01053 00884| +630028 |TU Per *|030904.8+531136 |RRAB | 11.94 | 13.05 | |V |38772.590 | | 0.6070749 |16 |A5 |00001 06286| +630029 |TV Per *|024348.5+361502 |SRD | 10.3 | 13.5 | |p | | | 358. : | |K0 |00634 08953| +630030 |TW Per |031956.8+330837 |M | 10.6 |< 13.5 | |p |39426. | | 335.14 | |M2e |00001 06286| +630031 |TX Per *|024800.4+365802 |RVA | 9.81 | 12.5 | |V | | | 78. : | |Gp(M2)-K0e(M2) | 00002| +630032 |TY Per |020242.3+580453 |M | 10.6 | 15.0 | |V |42312. | | 364.65 | |M6 |00001 01062| +630033 |TZ Per *|021350.9+582253 |UGZ | 12.0 | 15.6 | |V | | |( 17. ) | |pec(UG) |09782 00002| +630034 |UU Per |034707.6+524042 |LB | 8.9 | 10.9 | |V | | | | |M4 | | +630035 |UV Per |021008.0+571120 |UGSS | 11.0 | 17.5 | |V | | |( 320. ) | | |09672 00002| +630037 |UX Per *|021307.5+580448 |DCEP | 11.02 | 12.07 | |V |37402.945 | | 4.565815 |26 |F5-G3 |03537 09759| +630038 |UY Per *|023431.3+584954 |DCEP | 10.80 | 11.74 | |V |44945.845 | | 5.365106 |26 |F7-G0 |09667 00884| +630039 |UZ Per *|032006.0+320118 |SRB | 8.6 |< 11.7 | |p | | | 927. | |M5II-III |00634 08953| +630040 |VV Per *|032658.7+494259 |SRB | 11.0 |< 12.5 | |V | | | 228. | | |09768 01067| +630041 |VW Per |032923.3+442427 |M | 12.0 | 16. | |V |35770. | | 279.8 |47 |M |00001 01068| +630042 |VX Per *|020748.5+582637 |DCEP | 8.99 | 9.69 | |V |43758.994 | | 10.88904 |49 |F6-G1 |09029 03203| +630043 |VY Per *|022735.4+585502 |DCEP | 10.80 | 11.66 | |V |44912.75 | | 5.531830 |26 |F5-F9 |00001 09759| +630044 |VZ Per *|023843.1+554559 |LB: | 10.6 | 10.8 | |V | | | | |C4,5J(R4) |08734 HIP | +630045 |WW Per |031827.9+424918 |M | 12.5 |< 16.5 | |p |41216. | | 274.4 |40 : | |00001 01071| +630047 |WY Per *|033824.2+424039 |EA/SD | 11.5 | 14.2 | |V |46002.360 | | 3.3271615 |10 *|A0 |00001 01071| +630049 |XX Per *|020309.4+551357 |SRC | 8.2 | 10.2 | |p | | | 415. | |M4Ib+B |06116 08953| +630050 |XY Per *|034936.3+385856 |INA | 9.8 | 11.0 | |p | | | | |A2II+B6e |09770 09481| +630051 |XZ Per *|040927.6+463401 |EA/SD | 11.4 | 13.4 | 11.6 |p |43507.47742 | | 1.15163412 |23 *|G1 |08593 00462| +630052 |YY Per |043629.2+445840 |LB: | 10.2 | 11.1 | |p | | | | |M5 |01059 01059| +630053 |YZ Per *|023825.4+570246 |SRB | 10.01 | 11.9 | |B | | | 378. | |M1Iab-M3Iab |01053 08953| +630054 |ZZ Per *|025152.0+565454 | | 10.9 |( 0.4 : )| |V | | | | | |09773 | +630055 |AA Per |031514.4+463452 |SRA | 10.4 | 11.7 | |p |24890. | | 130.4 |55 |M7 |01073 08953| +630056 |AB Per *|033745.2+404549 |EA/SD | 10.4 | 11.4 | 10.5 |p |22987.207 | | 7.1602886 |12 |A5 |03671 08953| +630057 |AC Per |034503.4+444652 |LB: | 11.8 | 12.4 | |p | | | | |C6,3(N3) |01075 BD | +630058 |AD Per *|022029.0+565935 |SRC | 9.7 | 11.2 | |p |41603. | | 362.5 |67 |M2.5Iab |08044 08953| +630059 |AE Per *|030010.8+440816 |SRB | 10.4 |< 12.3 | |p | | | 115. | |M5 |00634 00819| +630060 |AF Per |034222.4+363037 |SRB | 9.5 | 10.7 | |V | | | 89. | |K0 |00373 08953| +630061 |AG Per *|040655.8+332647 |EA/DM | 6.69 | 7.00 | 7.00 |V |44584.583 | | 2.02870904 |12 *|B3Vn+B3 |00001 00021| +630062 |AH Per |024811.2+392744 |M | 12.3 |< 16. | |p |29940. | | 311.5 | |M0e |01001 GSC22| +630063 |AI Per |024858.1+374429 |M | 11.9 | 16.3 | |p |38642. | | 231.0 | |Me |00001 06976| +630064 |AK Per |025243.6+430615 |M | 12.2 |< 16. | |p |34360. | | 287.5 | |M3 |00001 06286| +630065 |AL Per |030203.3+482949 |M | 11.5 | 15.5 | |p |25238. | | 145. | | |01076 00531| +630071 |AR Per *|041717.2+472401 |RRAB | 9.92 | 10.83 | |V |27236.9179 | | 0.42554892 |16 |A8-F6 |08299 08299| +630072 |AS Per *|041946.9+485712 |DCEP | 9.17 | 10.14 | |V |41723.934 | | 4.972516 |25 |F8-G1 |08300 01078| +630076 |AW Per *|044746.3+364322 |DCEP | 7.04 | 7.89 | |V |42709.059 | | 6.463589 |25 |F6-G0 |08632 00021| +630077 |AX Per *|013622.7+541502 |ZAND | 9.4 | 13.6 | |p |36679.4 | | 681.6 | |M3IIIep+A0 |09676 08850| +630078 |AY Per *|031025.1+505554 |EA/DS: | 9.8 | 10.6 | |p |27152.25 | | 11.77664 |06 |A0 |03534 03534| +630090 |BM Per *|042939.4+482519 |DCEP | 9.65 | 11.02 | |V |35784.26 | | 22.9519 |13 |K5 |03537 09678| +630092 |BO Per |030803.5+533827 |EA/D: | 12.0 | 12.3 | |p |30764.405 | | 4.580152 |07 *|B9 |03800 03800| +630093 |BP Per *|033106.7+492447 |EB | 11.7 | 12.0 | |p |28422.540 | | 1.978914 | | |03800 03800| +630094 |BQ Per |033545.0+341327 |CST: | 12.5 | 13.3 | |p | | | | |F5 |08656 00603| +630096 |BS Per |022652.7+520703 |SRB | 12.0 | 13.6 | |p | | | 400. | |C5,5(N4) |00911 02282| +630098 |BU Per *|021853.3+572517 |SRC | 10.4 | 12.3 | |p | | | 367. | |M3.5Ib |09647 08953| +630099 |BV Per |021914.1+511525 |SRA | 12.4 | 14.3 | |p |29300. | | 320. | |M6 |01086 | +630100 |BW Per |024708.2+460330 |SRA | 10. | 11. | |p |30674. | | 117.4 |46 |M4 |00001 08953| +630107 |CF Per |020323.6+574321 |ISB | 10.5 | 12.5 | |V | | | | |M6 |08079 02340| +630112 |CL Per |020454.9+531550 |M | 12.0 | 18.5 : | |p |30734. | | 266.0 |47 | |00911 02281| +630113 |CM Per *|020511.2+571225 |EA/D | 12.5 | 13.4 | |p |36128.66 | | 38.6365 |10 |A3V |02431 02281| +630118 |CR Per *|020952.2+575433 |EA/DS: | 12.4 | 12.9 | |p |28069.57 | | 22.681 |02 : | |00911 02281| +630124 |CX Per |021447.9+514819 |M | 12.5 | 17.8 | |p |29171. | | 293. |40 |M3 |00911 02347| +630133 |DK Per *|022345.6+575924 |EB/SD | 12.3 | 13.3 |( 0.05 )|p |42492.373 | | 0.898876 | | |00001 02281| +630135 |DM Per *|022558.0+560610 |EA/SD | 7.86 | 8.59 | 8.02 |V |41920.4543 | | 2.7277427 |17 *|B5V |09679 02340| +630145 |DW Per |023352.6+570139 |DCEP | 11.20 | 11.86 | |V |36906.703 | | 3.649785 |24 |F6Ib |00001 02282| +630147 |DY Per *|023517.1+560845 |SRB | 10.6 | 13.2 | |V | | | 900. : | |C4,5(R8) |00911 02282| +630155 |EL Per *|024016.6+520827 |SRA | 11.5 | 12.8 | |p |29219. | | 167. | |M |00911 02340| +630158 |EO Per *|025038.6+572010 |ISA | 11.2 | 12.4 | |V | | | | |B0ea |08079 02282| +630161 |ER Per *|025655.8+543836 |SRB | 11.1 | 12.0 | |p | | | 150. | |M6.5 |00911 02348| +630163 |ET Per |013922.2+535219 |RRAB | 12.2 | 13.7 | |p |28183.251 | | 0.3940137 |16 | |00911 02340| +630164 |EU Per *|013927.3+543057 |SRB | 12.3 | 13.4 | |p | | | 115. : | | |00911 02340| +630167 |EX Per *|022412.4+520909 |EA/DM | 12.0 | 12.8 | 12.5 |V |29170.49 | | 8.47614 |04 |A1 |00911 02282| +630178 |FO Per |040835.0+511448 |UG | 11.8 | 16. | |V | | |( 11.02 ) | | |09681 09680| +630181 |FR Per *|041132.5+512003 |LB | 12.2 | 13.4 | |p | | | | |C4,5(R3) |01079 01078| +630183 |FT Per |041219.7+444542 |LB | 12.4 | 14.5 | |p | | | | |M6 |01079 01059| +630188 |FY Per *|044156.6+504236 |NL: | 12.3 | 14.5 | |B | | | | | |09682 03540| +630189 |FZ Per *|022059.6+570930 |SRC | 9.8 | 10.77 | |B | | | 184. | |M0.5Iab-M2.0Iab |06116 08953| +630190 |GG Per |031140.8+413847 |M | 12.2 | 15.8 | |B |40532. | | 277.84 |54 | |08634 09628| +630191 |GH Per *|031313.6+554212 |SR | 12.2 | 13.1 | |p | | | 440. : | |M6 |01090 | +630197 |GO Per |042231.2+393513 |LB | 11.4 | 12.6 | |p | | | | |M4 |01091 01059| +630199 |GQ Per *|042323.2+361254 |LB | 10.1 | 11.0 | |p | | | | |M6 |01091 02341| +630204 |GV Per |042749.7+414133 |LB | 12.1 | 13.4 | |p | | | | |M6 |01091 01059| +630207 |GY Per |042915.1+393345 |M | 11.5 | 18.5 : | |p |31155. | | 377.8 | |C |00001 01090| +630215 |HO Per |044128.7+401131 |LB | 11.8 | 13.1 | |p | | | | |M6.5 |01091 02341| +630217 |HQ Per *|044357.9+405005 |CEP | 12.4 | 13.3 | |p |44084.47 | | 8.63793 |30 |F |00001 01059| +630218 |HR Per |044934.6+404331 |LB | 12.5 | 13.4 | |p | | | | |M6 |01091 02341| +630221 |HU Per |034233.2+390604 |EA/DS | 10.9 | 13.9 | |p |16739.43 | | 17.2544 |06 |A |02437 00940| +630228 |IK Per *|042927.5+420311 |EB/KE | 11.3 | 11.6 | 11.6 |p |27397.514 | | 0.6760369 | |A2 |03605 02356| +630230 |IM Per *|031142.3+521242 |E/DM | 12.0 | 12.7 | 12.7 |p |33541.35 | | 2.25422 |13 : | |00966 00822| +630231 |IN Per |025043.9+383350 |SR: | 12.2 | 14.2 | |p |41596. | | 101.9 : | |M2 |06976 06976| +630233 |IP Per *|034047.0+323154 |ISA | 10.4 | 11.5 | |p | | | | |A3 |09632 09481| +630234 |IQ Per *|035944.7+480905 |EA/DM | 7.72 | 8.27 | 7.88 |V |44290.3461 | | 1.7435701 |12 |B8Vp: |00001 02378| +630235 |IR Per |042003.2+410350 |SRA | 10.4 | 12.0 | |p |28070. | | 175. | |M6.5 |00496 02378| +630236 |IS Per |013210.2+541635 |IS: | 11.7 | 12.8 | |p | | | | | |00164 02356| +630237 |IT Per *|024319.9+434325 |EA/SD | 9.9 | 10.5 | 10.0 |p |29382.942 | | 1.533726 |22 |A1 |09687 07164| +630238 |IU Per |025936.4+435519 |EA/SD | 10.5 | 11.6 | |p |45611.436 | | 0.8570251 |19 *|A4 |00001 00819| +630239 |IV Per |025956.3+423715 |M | 11.0 |< 16.5 | |p |41672. | | 289.02 | |M: |00001 00821| +630240 |IW Per *|033335.0+395358 |ELL/DM | 5.79 | 5.84 | 5.83 |V |33617.317 | | 0.9171877 | |A5m |00823 BD | +630241 |IX Per *|033501.2+320100 |ELL | 6.66 |( 0.02 )|( 0.02 )|V |29146.901 | | 1.326363 | |F2IV |00824 BD | +630242 |IY Per |040757.4+430048 |SRA: | 12.0 |< 13.0 | |p |35024. | | 157.9 | |M |00001 00819| +630243 |IZ Per *|013205.5+540108 |EA/SD | 7.8 | 9.0 | 8.3 |p |44577.5874 | | 3.687673 |12 *|B8 |00001 03543| +630244 |KK Per *|021015.8+563333 |LC | 6.6 | 7.89 | |V | | | | |M1.0Iab-M3.5Iab |02576 08953| +630245 |KL Per |024116.5+485619 |EA/SD: | 11.0 | 11.6 | |p |35840.337 | | 2.223080 |12 :*|A2 |03545 02378| +630247 |KN Per |032235.6+411955 |RRC | 11.2 | 11.8 | |p |36599.246 | | 0.433224 |50 |A4-A6 |09637 02378| +630248 |KO Per |032845.6+483557 |CST: | 10.2 | 10.6 | |p | | | | |A3 |09633 09633| +630249 |KP Per *|033239.0+445121 |BCEP | 6.37 |( 0.14 )| |V |43862.739 | | 0.2017786 |50 |B2IV |09790 BD | +630251 |KR Per *|043708.9+441240 |EB/KE | 10.4 | 11.1 | 11.1 |p |35718.4882 | | 0.99607883 | *|(OB-) |09084 02356| +630252 |KS Per *|044853.4+431632 |* | 7.60 |( 0.25 )| |V | | | 30. : | |A5Iape+B2: |05767 BD | +630253 |KT Per *|013708.5+505721 |UGZ+ZZ | 11.5 | 15.39 | |V | | |( 26. ) | |pec(UG) |09782 09472| +630256 |KW Per *|020000.0+531325 |EB/SD | 10.5 | 11.5 | 10.8 |p |42404.332 | | 0.93125884 | |A2 |00001 00462| +630267 |LS Per |025708.8+375341 |EA/SD | 11.5 | 14.6 | |p |39395.52 | | 2.915693 |12 *|A7IV |05493 04351| +630268 |LT Per |025717.3+315603 |ACV | 5.03 | 5.14 | |V |39837.7 | | 2.88422 | |B9p(Si-Eu-Sr-Cr) |05768 BD | +630272 |LX Per *|031322.4+480631 |EA/AR/RS | 8.10 | 8.93 | 8.38 |V |27033.120 | | 8.038207 |07 *|G5IV+G5IV |07407 08953| +630273 |LY Per |032241.2+341237 |SRA | 11.3 | 12.1 | |p |37193. | | 72.5 | |M5 |04038 02378| +630275 |MM Per |034523.4+480501 |DCEP | 12.0 | 13.0 | |p | | | 4.118415 |20 |G0 |05342 04015| +630281 |MS Per *|040112.2+493312 |EB | 11.9 | 12.7 | 12.1 |B |34099.396 | | 2.779526 | | |08635 03776| +630284 |MV Per |040355.9+442818 |E | 12. | 12.5 | |p | | | | | |03776 03776| +630286 |MX Per *|040839.7+474245 |GCAS | 4.00 |( 0.09 )| |V | | | 72. : | |B3Vpe |04044 BD | +630290 |NO Per |041541.8+484043 |EA: | 11.5 | 12. | |p | | | | | |03776 03776| +630291 |NP Per *|041457.8+312644 |EA/DM | 12.2 | 13.0 | 13.0 |p |38350.527 | | 4.457161 |02 *| |07493 07493| +630301 |NZ Per |042759.5+375031 |EA/D | 11.7 | 12.1 | |p |28247.358 | | 0.9379188 |20 *|F2 |04047 02341| +630314 |PP Per *|021708.2+583147 |LC | 9.10 | 10.30 | |V | | | | |M0.0-M1.5(Iab-Ib)| 08953| +630316 |PR Per *|022142.4+575146 |LC | 9.8 | 10.8 | |p | | | | |M1Iab-Ib |09635 09635| +630329 |QU Per *|030554.7+404113 |EA/SD | 12.2 | 14.8 | |p |36082.582 | | 2.400936 |18 |A2Ve |09639 03910| +630351 |V0351 Per *|020925.7+565930 |BCEP: | 8.69 | 8.72 | |V | | | 0.3746 | |B1IVe |05522 BD | +630352 |V0352 Per *|021337.0+563414 |BCEP | 9.47 | 9.49 | |B | | | 0.21995 | |B1III |05522 BD | +630353 |V0353 Per |021351.8+535453 |BCEP | 8.85 | 8.91 | |B | | | 0.3908 | |B0.5IV |05522 BD | +630354 |V0354 Per *|021545.9+555947 |BCEP | 8.01 | 8.03 | |B | | | 0.45039 | |O9.7Ib-IIIn: |05522 BD | +630355 |V0355 Per *|021604.4+574442 |E: | 9.05 | 9.09 | |V | | | 0.7074 | |B1IV |05522 BD | +630356 |V0356 Per *|021657.7+570749 |BCEP: | 9.29 | 9.34 | |B | | | 0.30595 | |B0.5IIInea |05522 BD | +630357 |V0357 Per *|021657.6+564308 |BCEP: | 7.44 | 7.52 | |V | | | 0.28619 : | |B2Ib-II:p |05522 BD | +630358 |V0358 Per *|021708.2+564611 |GCAS: | 8.43 | 8.54 | |V | | | | |B1IIIpe |09641 BD | +630359 |V0359 Per *|022015.7+570555 |BCEP: | 9.27 | 9.30 | |B | | | 0.27500 | |B1III-IV |05522 BD | +630360 |V0360 Per *|022249.8+573042 |BCEP: | 9.85 | 9.88 | |B | | | 0.20072 : | |B1III |05522 BD | +630361 |V0361 Per *|022335.4+563428 |GCAS | 9.06 | 9.64 | |V | | | | |B1.5IIIpe |06962 05525| +630362 |V0362 Per |023411.4+582420 |BCEP: | 8.22 | 8.24 | |B | | | 0.25942 : | |B0IIIn |05522 BD | +630369 |V0369 Per |025117.2+381441 |IS | 10.5 | 13.7 | |p | | | | | |09105 06976| +630371 |V0371 Per |025531.2+423520 |I: | 10.6 | 11.6 | |p | | | | |G0 |03587 05582| +630374 |V0374 Per |031722.5+421927 |LB: | 10.6 | 11.5 | |p | | | | |M6 |03587 05582| +630376 |V0376 Per *|034908.1+435747 |DSCT | 5.77 | 5.91 | |V | | | 0.09937 | |A7IIIn |09642 BD | +630380 |V0380 Per *|040310.9+380317 |ACV | 7.76 |( 0.03 )| |V |37315.14 | | 3.90072 | |A0p(Sr-Cr-Eu) |09390 BD | +630383 |V0383 Per |030632.2+333731 |ACV: | 7.84 | 7.87 | |V |39860.7 | | 7.7 | |B9V |05390 BD | +630384 |V0384 Per |032629.5+473149 |M | 11.3 | 14.2 | |V |40736. | | 535. | |C(N) |09796 09062| +630386 |V0386 Per |035803.1+344850 |DSCTC | 6.50 | 6.58 | |V | | | 0.052 | |A8V |06255 BD | +630394 |V0394 Per *|040937.0+332937 |LB | 11.6 | 13.3 | |V | | | | |M8 |03905 06977| +630396 |V0396 Per *|033208.6+480125 |SXARI | 5.45 | 5.53 | |V |45699.972 | | 2.4761 | |B5Vp(Mn-He weak) |06879 BD | +630397 |V0397 Per *|035523.5+310308 |LB: | 11.67 | 12.40 | |V | | | | |M |06880 2MASS| +630398 |V0398 Per *|043225.1+310704 |L: | 12.2 | 13.3 | |p | | | | | |06881 06881| +630401 |V0401 Per |020215.8+523341 |LB | 10.8 | 12.2 | |p | | | | |S6e |09646 09646| +630402 |V0402 Per |020840.4+514801 |SR: | 11.3 | 12.1 | |p | | | | |M7 |04022 BD | +630403 |V0403 Per *|022324.1+571243 |LC: | 8.31 | 8.50 | |V | | | | |M0Iab | BD | +630405 |V0405 Per |025448.6+325207 |E | 12.2 | 13.3 | |p | | | | | |06976 06976| +630409 |V0409 Per *|030945.8+455756 |M | 9.6 | 11.1 | |V |41295. | | 355. | |N |08422 08422| +630410 |V0410 Per |031338.6+474934 |SRB: | 8.8 | 9.4 | |V | | | 110. : | |C7,4(Np) |08460 08422| +630411 |V0411 Per |031508.4+545303 |SRC | 9.24 | 10.07 | |V | | | 467. | |M3.4Ia |09647 BD | +630420 |V0420 Per |044412.1+484442 |LB: | 12.5 | 13.6 | |p | | | | |M6 |00319 00319| +630422 |V0422 Per |044634.9+444235 |LB: | 10.03 | 10.13 | |V | | | | |M2 |07315 BD | +630423 |V0423 Per *|031601.9+344119 |ELL: | 6.65 |( 0.03 )| |U | | | 5.543491 | |A1m |09648 BD | +630424 |V0424 Per *|022150.8+572312 |GCAS: | 8.72 | 9.28 | |V | | | | |B1V:pe | BD | +630425 |V0425 Per *|023153.4+574152 |ACYG | 6.98 | 7.10 | |V | | | 16.1 | |B6Iaea |09651 BD | +630427 |V0427 Per |025931.2+392644 |EA/SD: | 11.6 | 12.1 | |p |37345.343 | | 2.810055 |07 *| |09652 00940| +630432 |V0432 Per *|031010.8+425209 |EW/KW | 11.0 | 11.7 | 11.6 |p |35874.376 | | 0.321517 | | |08639 05515| +630436 |V0436 Per *|015159.3+550851 |EA/D | 5.49 | 5.85 | 5.74 |V |43562.853 | | 25.9359 |02 |B1.5V |09801 BD | +630437 |V0437 Per *|015829.5+551259 |M | 11.4 | 14.4 | |V |42800. | | 470. | |N |08734 09802| +630438 |V0438 Per *|021746.3+563829 |ELL | 8.28 | 8.34 | 8.34 |V |43000.00 | | 3.50924 | |B1IV-V |08454 BD | +630439 |V0439 Per *|022311.1+571158 |LC | 8.03 | 8.49 | |V | | | | |M0.5Iab |02556 BD | +630440 |V0440 Per *|022351.7+552154 |DCEPS | 6.18 | 6.32 | |V |44869.94 | | 7.570 |50 |F7Ib |09803 BD | +630441 |V0441 Per |022521.9+572614 |LC | 8.19 | 8.53 | |V | | | | |M2.5Iab |02556 BD | +630445 |V0445 Per |024738.7+393936 |LB | 12.1 | 13.2 | |p | | | | |M5 |08639 03910| +630452 |V0452 Per |030350.2+421259 |LB | 12.4 | 12.8 | |p | | | | |M5 |08639 03905| +630459 |V0459 Per *|032158.6+491254 |DSCTC | 9.14 |( 0.01 )| |V | | | 0.037 | |F0IV |08456 BD | +630461 |V0461 Per *|032419.2+491317 |DSCTC | 8.98 |( 0.01 )| |V | | | 0.035 | |F0V |08456 BD | +630465 |V0465 Per *|033034.0+473742 |DSCTC | 8.78 |( 0.02 )| |V | | | 0.070 | |A6Vn |08457 BD | +630466 |V0466 Per *|034129.6+513011 |SR | 10.9 | 12.7 | |p | | | | |C5,5(N5) |08461 BD | +630467 |V0467 Per |034932.7+330529 |E/D | 5.05 | 5.18 | |V |43101.24 | | 22.58 | |A2V |08464 BD | +630469 |V0469 Per *|042133.2+462956 |BCEP | 4.81 | 4.86 | |V | | | 0.304 | |B4.5V |08468 BD | +630472 |V0472 Per |020840.6+582525 |ACYG | 5.64 | 5.74 | |V | | | | | |67175 BD | +630473 |V0473 Per |021639.2+564416 |BCEP: | 8.25 | 8.27 | |V | | | | | |67180 BD | +630474 |V0474 Per |022221.4+555044 |ACYG | 5.15 | 5.25 | |V | | | | | |67175 BD | +630475 |V0475 Per |022645.7+574045 |ACYG | 7.15 | 7.26 | |V | | | | | |67175 BD | +630480 |V0480 Per |024930.7+570504 |ACYG | 6.23 | 6.30 | |V | | | | | |67175 BD | +630481 |V0481 Per |041308.8+494235 |EB: | 12.0 | 13.2 | |p | | | | | |67182 67181| +630482 |V0482 Per |041541.3+472520 |EA/DM: | 10.6 | 10.9 | |p | | | | | |67182 67181| +630484 |V0484 Per |032221.9+490828 |BY | 11.66 | 11.75 | |V | | | | | |68196 | +630490 |V0490 Per |040639.0+322306 |E: | 6.98 | 7.27 | |V | | | | | |68284 BD | +630491 |V0491 Per |040734.4+380428 |BY | 7.10 |( 0.03 )| |V | | | | | |68053 BD | +630492 |V0492 Per |043157.0+364434 |RS: | 6.7 |( 0.07 )| |V | | | | | |68053 BD | +630493 |V0493 Per |024111.7+564350 |WR | 10.6 |( 0.04 )| |V | | | | | |69223 69224| +630496 |V0496 Per |033511.9+380055 |ACV | 7.70 | 7.79 | |U | | | | | |69056 BD | +630497 |V0497 Per |034229.4+353821 |ACV | 9.52 | 9.56 | |V | | | | | |69056 BD | +630498 |V0498 Per |034948.9+353601 |ACV | 8.96 | 9.04 | |B | | | | | |69056 BD | +630499 |V0499 Per |035224.7+342749 |ACV | 9.96 | 10.01 | |U | | | | | |69056 BD | +630500 |V0500 Per |034839.0+505042 |SR | 9.8 | 10.7 | |p | | | | | |70001 70001| +630502 |V0502 Per |021744.7+565400 |BE | 9.36 | 9.56 | |V | | | | | |71011 71012| +630503 |V0503 Per |022039.0+571843 |BE | 9.43 | 9.72 | |V | | | | | |71011 71012| +630504 |V0504 Per |022118.1+571822 |BE | 9.77 | 9.98 | |V | | | | | |71011 71012| +630505 |V0505 Per |022113.0+543036 |EA/DM | 6.87 | 7.46 | |V | | | | | |71013 BD | +630506 |V0506 Per |022143.4+570733 |BE | 9.45 |( 0.24 )| |V | | | | | |71011 71012| +630507 |V0507 Per |022152.9+570959 |BE | 9.77 | 10.09 | |V | | | | | |71011 71227| +630509 |V0509 Per |030356.7+475055 |DSCT | 6.47 | 6.64 | |V | | | | | |71018 BD | +630510 |V0510 Per |031351.2+435147 |RS | 7.30 |( 0.22 )| |V | | | | | |71228 BD | +630511 |V0511 Per |032625.5+402731 |EA/DM | 8.1 | 8.6 | |V | | | | | |71014 BD | +630513 |V0513 Per |033232.3+412632 |M | 10.4 | 13. : | |V | | | | | |71024 71024| +630514 |V0514 Per |031938.9+500653 |E | 11.4 |( 0.32 )| |V | | | | | |72138 72138| +630517 |V0517 Per |034041.8+390002 |LB | 10.5 | 11.4 | |p | | | | | |72022 BD | +630519 |V0519 Per |021832.8+571240 |BE | 9.05 | 9.40 | |V | | | | | |73257 BD | +630520 |V0520 Per |021904.5+570808 |IA | 6.55 | 6.66 | |V | | | | | |73257 BD | +630521 |V0521 Per |030747.3+471831 |DSCTC | 6.41 | 6.42 | |V | | | | | |73258 BD | +630522 |V0522 Per |031827.4+472115 |BY | 11.50 |( 0.15 )| |V | | | | | |73259 73262| +630525 |V0525 Per |031902.8+481100 |BY | 11.99 |( 0.10 )| |V | | | | | |73260 73262| +630526 |V0526 Per |031957.7+495208 |BY | 12.37 | 12.64 | |V | | | | | |73261 73261| +630529 |V0529 Per |032206.8+473407 |BY | 12.00 |( 0.15 )| |V | | | | | |73260 73262| +630530 |V0530 Per |032448.4+485321 |BY | 11.71 |( 0.09 )| |V | | | | | |73259 73262| +630531 |V0531 Per |032449.7+485218 |BY | 11.63 |( 0.06 )| |V | | | | | |73259 73262| +630532 |V0532 Per |032622.2+492538 |BY | 11.27 |( 0.11 )| |V | | | | | |73262 73262| +630534 |V0534 Per |032751.0+491211 |BY | 12.29 |( 0.03 )| |V | | | | | |73259 GSC | +630537 |V0537 Per |033230.7+491035 |BY | 11.98 |( 0.19 )| |V | | | | | |73262 73262| +630540 |V0540 Per |033622.0+490921 |BY | 11.83 |( 0.11 )| |V | | | | | |73262 73262| +630541 |V0541 Per |033653.7+482359 |BY | 12.45 |( 0.11 )| |V | | | | | |73259 73262| +630543 |V0543 Per |034543.4+461805 |BY | 12.21 |( 0.12 )| |V | | | | | |73260 73222| +630545 |V0545 Per |041808.1+420828 |LPB | 6.22 |( 0.04 )| |V | | | | | |73265 BD | +630547 |V0547 Per *|014510.0+535709 |LB: | 9.91 | 10.06 | |Hp| | | | | |HIP HIP | +630548 |V0548 Per |015607.1+563316 |BE | 9.65 | 9.98 | |Hp| | | | | |HIP HIP | +630549 |V0549 Per |021453.1+543154 |BE | 7.81 | 7.88 | |Hp| | | | | |HIP HIP | +630550 |V0550 Per |021513.3+580832 |SRC: | 8.71 | 8.88 | |Hp| | | | | |HIP HIP | +630551 |V0551 Per |021651.7+570319 |ACYG | 6.54 | 6.57 | |Hp| | | | | |HIP HIP | +630552 |V0552 Per |022129.4+511724 |EB | 8.30 | 8.43 | |Hp| | | | | |HIP HIP | +630553 |V0553 Per |022253.5+571443 |ACYG: | 7.54 | 7.66 | |Hp| | | | | |HIP HIP | +630554 |V0554 Per |022516.0+563635 |ACYG: | 6.28 | 6.36 | |Hp| | | | | |HIP HIP | +630555 |V0555 Per |023119.5+565352 |BE | 8.96 | 9.15 | |Hp| | | | | |HIP HIP | +630556 |V0556 Per |023318.4+561905 |ACYG: | 8.86 | 9.08 | |Hp| | | | | |HIP HIP | +630557 |V0557 Per |024036.9+440528 |ACV: | 7.32 | 7.37 | |Hp| | | | | |HIP HIP | +630558 |V0558 Per |024124.2+441541 |LB: | 9.34 | 9.49 | |Hp| | | | | |HIP HIP | +630559 |V0559 Per |024134.9+472123 |ACV: | 8.96 | 9.06 | |Hp| | | | | |HIP HIP | +630560 |V0560 Per |024139.2+393217 |LB: | 8.43 | 8.53 | |Hp| | | | | |HIP HIP | +630561 |V0561 Per |024152.6+450007 |SRD | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +630562 |V0562 Per |024241.4+502750 |ACV: | 8.86 | 8.99 | |Hp| | | | | |HIP HIP | +630563 |V0563 Per |024749.0+521917 |LB | 8.22 | 8.40 | |Hp| | | | | |HIP HIP | +630564 |V0564 Per |025033.5+361749 |LB: | 8.47 | 8.59 | |Hp| | | | | |HIP HIP | +630565 |V0565 Per |025728.5+522838 |BY: | 9.34 | 9.54 | |Hp| | | | | |HIP HIP | +630566 |V0566 Per |025759.2+495241 |ACV: | 9.38 | 9.50 | |Hp| | | | | |HIP HIP | +630567 |V0567 Per |030315.7+330853 |SRD | 7.91 | 8.05 | |Hp| | | | | |HIP HIP | +630568 |V0568 Per |030651.4+402134 |BY: | 9.76 | 9.92 | |Hp| | | | | |HIP HIP | +630569 |V0569 Per |030847.5+370245 |LB: | 7.87 | 7.98 | |Hp| | | | | |HIP HIP | +630570 |V0570 Per |030934.9+483729 |EB: | 8.15 | 8.25 | |Hp| | | | | |HIP HIP | +630571 |V0571 Per |031123.7+380410 |LB | 7.17 | 7.34 | |Hp| | | | | |HIP HIP | +630572 |V0572 Per |031548.7+505721 |EA | 6.50 | 6.79 | |Hp| | | | | |HIP HIP | +630573 |V0573 Per |031635.2+321103 |E: | 6.11 | 6.19 | |Hp| | | | | |HIP HIP | +630574 |V0574 Per |032231.1+321424 |SRB | 7.26 | 7.39 | |Hp| | | | | |HIP HIP | +630575 |V0575 Per |032313.2+491248 |LPB: | 5.27 | 5.32 | |Hp| | | | | |HIP HIP | +630576 |V0576 Per |032557.4+490715 |LPB: | 6.04 | 6.08 | |Hp| | | | | |HIP HIP | +630577 |V0577 Per |033313.5+461527 |BY: | 8.24 | 8.35 | |Hp| | | | | |HIP HIP | +630578 |V0578 Per |033409.8+465057 |EB | 8.94 | 9.10 | |Hp| | | | | |HIP HIP | +630579 |V0579 Per |033912.2+411658 |RRC: | 7.87 | 7.94 | |Hp| | | | | |HIP HIP | +630580 |V0580 Per *|034702.0+412538 |E: | 7.75 | 8.07 | |Hp| | | | | |HIP HIP | +630581 |V0581 Per |035620.4+445615 |BE | 7.77 | 7.87 | |Hp| | | | | |HIP HIP | +630582 |V0582 Per *|040836.6+380223 |RS: | 5.63 | 5.74 | |Hp| | | | | |HIP HIP | +630583 |V0583 Per |041025.1+421026 |LB | 7.51 | 7.83 | |Hp| | | | | |HIP HIP | +630584 |V0584 Per |041236.5+420706 |BE | 8.00 | 8.19 | |Hp| | | | | |HIP HIP | +630585 |V0585 Per |041716.9+464148 |SRD: | 7.48 | 7.51 | |Hp| | | | | |HIP HIP | +630586 |V0586 Per |041716.4+461350 |BE | 8.00 | 8.11 | |Hp| | | | | |HIP HIP | +630587 |V0587 Per |041830.5+495153 |LB: | 8.40 | 8.52 | |Hp| | | | | |HIP HIP | +630588 |V0588 Per |042012.0+371203 |SRB | 7.77 | 7.93 | |Hp| | | | | |HIP HIP | +630589 |V0589 Per |042239.9+473936 |LB | 7.81 | 7.90 | |Hp| | | | | |HIP HIP | +630590 |V0590 Per |042424.9+341853 |EB: | 7.20 | 7.44 | |Hp| | | | | |HIP HIP | +630591 |V0591 Per |043007.9+455702 |LB: | 7.80 | 8.13 | |Hp| | | | | |HIP HIP | +630592 |V0592 Per *|044433.0+395232 |EB | 8.30 | 8.65 | |Hp| | | | | |HIP HIP | +630593 |V0593 Per |044743.1+401357 |EB | 8.67 | 8.87 | |Hp| | | | | |HIP HIP | +630594 |V0594 Per |045039.2+502433 |LB: | 7.64 | 7.74 | |Hp| | | | | |HIP HIP | +630595 |V0595 Per |022208.6+570729 |BCEP | 9.08 |( 0.03 )| |V | | | | | |75209 75209| +630596 |V0596 Per |023300.3+580206 |M | 9.03 |( 2.5 )| |K | | | | | |75074 2MASS| +630597 |V0597 Per |025342.4+400419 |DSCTC | 9.30 |( 0.02 )| |V | | | | | |75210 BD | +630600 |V0600 Per |031901.4+324116 |EB | 7.62 | 8.06 | |V | | | | | |75212 BD | +630611 |V0611 Per |021829.8+570903 |BCEP | 9.35 |( 0.04 )| |V | | | | | |76021 76021| +630612 |V0612 Per |021851.1+570836 |LPB | 11.94 |( 0.14 )| |V | | | | | |76021 76021| +630613 |V0613 Per |021853.9+570822 |BE | 9.50 |( 0.01 )| |V | | | | | |76021 76021| +630614 |V0614 Per |021900.1+570844 |BCEP | 9.90 |( 0.02 )| |V | | | | | |76021 76021| +630617 |V0617 Per |021906.7+570853 |ELL: | 11.13 |( 0.02 )| |V | | | | | |76021 76021| +630619 |V0619 Per |022202.8+570826 |BCEP | 10.0 |( 0.04 )| |B | | | | | |76022 76022| +630620 |V0620 Per |022209.0+570726 |EA | 12.0 |( 0.28 )| |B | | | | | |76022 76022| +630621 |V0621 Per |022209.7+570702 |EA | 9.5 |( 0.12 )| |B | | | | | |76022 76022| +630622 |V0622 Per |022217.7+570725 |ELL: | 9.3 |( 0.05 )| |B | | | | | |76022 76022| +630623 |V0623 Per |024150.8+425138 |GDOR: | 11.48 |( 0.03 )| |V | | | | | |76024 76025| +630624 |V0624 Per |024234.6+424451 |GDOR: | 11.50 |( 0.03 )| |V | | | | | |76024 76025| +630627 |V0627 Per |032622.6+471609 |RS: | 11.89 |( 0.08 )| |V | | | | | |76026 UCAC2| +630628 |V0628 Per |032625.3+482007 |BY | 12.03 |( 0.07 )| |V | | | | | |76026 UCAC2| +630632 |V0632 Per |034023.2+404536 |SR: | 11.1 | 12.6 | |V | | | | | |76012 GSC | +630634 |V0634 Per |034524.5+405348 |SR: | 10.3 | 11.5 | |V | | | | | |76012 GSC | +630636 |V0636 Per |034845.5+425541 |SR: | 11.7 | 12.6 | |V | | | | | |76012 GSC | +630637 |V0637 Per |035402.3+363218 |SR: | 12.1 | 12.6 | |V | | | | | |76012 GSC | +630643 |V0643 Per |040911.9+362539 |SRS | 7.68 | 7.80 | |Hp| | | | | |76018 DM | +630644 |V0644 Per |041413.8+435452 |SR: | 12.1 | 13.2 | |V | | | | | |76012 GSC | +630645 |V0645 Per |041445.8+434627 |SR: | 11.6 | 12.1 | |V | | | | | |76012 GSC | +630646 |V0646 Per |041537.6+351226 |SR: | 10.8 | 12.2 | |V | | | | | |76012 UCAC2| +630647 |V0647 Per |041607.8+413935 |SR: | 11.4 | 12.7 | |V | | | | | |76012 GSC | +630649 |V0649 Per |041808.3+451652 |SR: | 12.2 | 13.0 | |V | | | | | |76012 76034| +630650 |V0650 Per |041816.7+445358 |SR: | 12.4 | 13.0 | |V | | | | | |76012 GSC | +630651 |V0651 Per |042011.4+331726 |SR: | 12.0 | 12.8 | |V | | | | | |76012 GSC | +630652 |V0652 Per |042024.1+312324 |IT | 12.33 |( 0.07 )| |V | | | | | |76033 UCAC2| +630656 |V0656 Per |042734.4+512106 |SR: | 11.3 | 11.9 | |V | | | | | |76012 GSC | +630657 |V0657 Per |043739.1+323727 |SR: | 11.7 | 12.7 | |V | | | | | |76012 GSC | +630660 |V0660 Per |020321.8+502410 |SR: | 11.0 | 12.9 | |V | | | | | |77004 GSC | +630662 |V0662 Per |020715.7+541331 |SR: | 11.9 | 13.2 | |V | | | | | |77004 GSC | +630664 |V0664 Per |021615.5+544837 |SR: | 11.9 | 12.7 | |V | | | | | |77004 GSC | +630665 |V0665 Per |021848.0+571708 |BCEP | 9.51 |( 0.10 )| |V | | | | | |77020 DM | +630666 |V0666 Per |022147.7+531800 |SR: | 11.4 | 12.0 | |V | | | | | |77004 GSC | +630667 |V0667 Per |022525.8+541103 |SR: | 11.8 | 12.8 | |V | | | | | |77004 GSC | +630669 |V0669 Per |022750.5+534639 |SR: | 12.4 | 13.1 | |V | | | | | |77004 GSC | +630671 |V0671 Per |025045.3+554901 |M | 9.9 | 12.5 | |I | | | | | |77012 77013| +630672 |V0672 Per |025618.0+455313 |M | 9.6 | 12.8 | |* | | | | | |77004 GSC | +630673 |V0673 Per |030552.9+542054 |M | 10.8 | 14.4 | |I | | | | | |77012 77013| +630677 |V0677 Per |042440.4+480725 |M | 10.4 | 14.1 | |I | | | | | |77012 77013| +630678 |V0678 Per |020930.3+575738 |DSCTC: | 8.71 |( 0.02 )| |B | | | 0.0199 | |A5V |78035 DM | +630682 |V0682 Per |030509.4+561059 |M: | 12.4 | 15.5 | |* | | | | | |78006 2MASS| +630683 |V0683 Per |031302.8+325347 |BY | 8.15 |( 0.02 )| |V | | | | |G5V |78018 DM | +630686 |V0686 Per |032059.5+331306 |BY | 7.94 |( 0.04 )| |V | | | 5.95 | |K0V |78018 DM | +630687 |V0687 Per |032312.1+330442 |BY | 7.96 |( 0.02 )| |V | | | 2.54 | |G0 |78018 DM | +630688 |V0688 Per |032604.2+484807 |BY | 10.65 | 10.71 | |V | | | 0.700 | | |78044 GSC | +630689 |V0689 Per |033210.2+490830 |BY | 11.99 | 12.11 | |V | | | 0.645 : | |G5V |78044 GSC | +630690 |V0690 Per |033654.4+405540 |DSCTC: | 12.2 |( 0.05 )| |V | | | 0.083 | | |78049 78049| +630691 |V0691 Per |033715.0+405400 |DSCTC: | 11.2 |( 0.03 )| |V | | | 0.115 | | |78049 78049| +630705 |V0705 Per |034431.2+320622 |DSCTC: | 10.56 |( 0.04 )| |V | | | 0.135 | |F0 |78053 78052| +630706 |V0706 Per |034431.5+320845 |INT | 12.12 |( 0.08 )| |Ic| | | | |K2 |78051 78052| +630720 |V0720 Per |034612.8+513324 |SR: | 11.3 | 13.0 | |* | | | | | |78006 GSC | +630721 |V0721 Per |040039.7+512102 |SRA | 11.7 | 13.9 | |* |51418 | | 350. | | |78040 2MASS| +630722 |V0722 Per |041701.5+353111 |BY | 10.7 |( 0.15 )| |R | | | 1.75 | |K4V |78064 78064| +630723 |V0723 Per |015359.7+532805 |EB | 12.24 | 12.7 : | 12.5 : |* |51589.596 | | 0.7961 | | |79009 79014| +630724 |V0724 Per |020325.7+514739 |SRB | 10.9 | 11.1 | |* | | | 80. | | |79100 79017| +630725 |V0725 Per |021027.0+484641 |EA | 9.97 | 10.22 | 10.07 : |* |51478.588 | | 8.8695 |06 |A0 |79009 DM | +630726 |V0726 Per |023810.8+525113 |LB | 9.3 | 10.0 | |* | | | | |M |79100 79021| +630727 |V0727 Per |023925.9+524353 |SRB | 9.7 | 10.3 | |* | | | 150. | | |79100 79017| +630728 |V0728 Per |024352.2+460344 |EA | 12.07 | 12.35 | 12.20 |* |51452.702 | | 1.8771 |11 |A8 |79003 GSC | +630729 |V0729 Per |025030.0+455456 |LB | 10.2 | 10.6 | |* | | | | | |79100 GSC | +630730 |V0730 Per |025835.5+463205 |SRB | 10.9 | 11.6 | |* | | | 83. : | | |79100 79172| +630731 |V0731 Per |031548.2+440357 |EA | 12.2 | 13.4 | 12.4 |* |51342.857 | | 7.2778 |07 | |79004 GSC | +630732 |V0732 Per *|032319.2+512330 |EA | 11.32 | 11.80 | 11.8 : |* |51455.805 | | 4.50655 |04 |B9 |79009 79021| +630733 |V0733 Per |033148.5+361245 |EA | 11.89 | 12.17 | 12.03 |* |51479.080 | | 77.53 |03 : | |79004 79022| +630734 |V0734 Per |033819.1+320313 |SR: | 10.8 |< 11.6 | |* |51508. | | | | |79100 79017| +630735 |V0735 Per |033829.6+344015 |SR: | 11.1 | 11.5 | |* | | | 200. : | | |79100 79173| +630736 |V0736 Per |033941.4+374732 |EA | 9.73 | 10.03 | 10.0 : |V |48678.948 | | 3.76674 |08 |A4IV |79006 DM | +630738 |V0738 Per |035056.3+471435 |SR | 11.6 | 12.0 | |* | | | 101. | | |79100 79135| +630739 |V0739 Per |035946.4+344057 |LB | 10.8 | 11.7 | |p | | | | | |79215 79215| +630740 |V0740 Per |040449.3+335725 |EW | 11.22 | 11.87 | 11.87 |* |51397.995 | | 0.373042 | | |79004 79027| +630741 |V0741 Per |040522.8+491157 |SRB | 11.1 | 11.5 | |* | | | 95. : | | |79100 79135| +630742 |V0742 Per |040757.6+421319 |SR: | 9.0 | 10.2 | |* | | | | |M7 |79100 GSC | +630743 |V0743 Per |040848.0+313054 |LB | 11.4 | 11.6 | |* | | | | | |79100 79022| +630744 |V0744 Per |041040.7+442650 |LB | 9.7 | 10.2 : | |* | | | | |C5+,4 |79100 79135| +630745 |V0745 Per |041534.9+334946 |M: | 10.4 | 13.0 | |R | | | | |M6 |79100 GSC | +630746 |V0746 Per |042618.9+501233 |LB | 9.9 | 10.2 | |* | | | | |C |79100 79017| +630748 |V0748 Per |044030.2+431152 |LB | 10.2 | 10.6 | |* | | | | |N |79100 GSC | +630749 |V0749 Per |044447.0+433502 |SR | 11.5 | 13.1 | |* | | | 140. : | | |79100 79176| +630750 |V0750 Per |044715.3+425001 |LB | 11.2 | 11.5 | |* | | | | |C |79100 GSC | +630751 |V0751 Per *|013053.1+532538 |EA | 11.46 | 11.93 | 11.90 : |* |51508.610 | | 5.9613 |07 | |80023 GSC | NL80_1 +630754 |V0754 Per *|020328.3+585413 |EA | 11.97 | 12.50 | 12.30 |* |53392.0991 | | 5.3364 |06 | |80073 80073| NL80_1 +630755 |V0755 Per |021013.4+571125 |DSCTC: | 10.14 | 10.19 | |V | | | 0.153 | | |80109 80109| NL80_1 +630756 |V0756 Per *|021707.0+560917 |EA | 12.25 | 12.97 | 12.90 |* |53359.196 | | 4.6050 |04 | |80073 80073| NL80_1 +630757 |V0757 Per *|021823.1+570037 |BCEP | 7.74 | 7.79 | |B*| | | 0.164309 | |B1II |80112 DM | NL80_1 +630758 |V0758 Per *|022206.9+560754 |EA | 10.60 | 10.90 | 10.70 |* |51450.61 | | 5.67513 |16 | |80001 GSC | NL80_1 +630759 |V0759 Per |022256.4+513413 |LB | 12.25 | 12.7 | |* | | | | | |80062 GSC | NL80_1 +630760 |V0760 Per |022452.1+580024 |LB | 12.1 | 12.7 | |* | | | | | |80062 USNO | NL80_1 +630761 |V0761 Per |022453.9+580915 |EA/RS: | 11.65 | 12.1 | |* |51470.625 | | 3.9926 |08 : | |80013 GSC | NL80_1 +630781 |V0781 Per |024105.0+550019 |SRB | 10.85 | 11.23 | |* | | | 47. | | |80001 GSC | NL80_1 +630843 |V0843 Per |024224.9+410850 |LB | 12.45 | 13.03 | |* | | | | | |80062 GSC | NL80_1 +630859 |V0859 Per |024244.9+350402 |LB | 12.05 | 12.50 | |* | | | | | |80062 GSC | NL80_1 +630871 |V0871 Per *|024415.9+564056 |EA | 10.92 | 11.5 : | 11.38 |* |51421.719 | | 3.0240 |08 | B |80042 DM | NL80_1 +630873 |V0873 Per *|024708.2+412232 |EW | 10.8 | 11.5 | 11.5 |V |51370.875 | | 0.2949039 | |K0V |80179 80179| NL80_1 +630874 |V0874 Per *|025020.7+372903 |RS: | 11.54 | 11.70 | |* | | | 1.7330 | |K4V |80021 GSC | NL80_1 +630875 |V0875 Per |025217.6+361648 |RS: | 10.47 | 10.92 | |* | | | 7.9809 | |K2IV |80021 GSC | NL80_1 +630878 |V0878 Per |025752.7+415135 |RS: | 11.58 | 11.73 | |* | | | 0.4854 | | |80021 GSC | NL80_1 +630879 |V0879 Per |025846.0+533712 |LB | 11.45 | 11.72 | |* | | | | | |80062 USNO | NL80_1 +630881 |V0881 Per *|025953.1+380148 |EW | 10.71 | 11.04 | 11.01 |* |51494.882 | | 0.387374 | |K0IV |80042 GSC | NL80_1 +630882 |V0882 Per *|030353.4+570334 |EA | 11.90 | 12.70 | 12.10 |* |53430.9584 | | 1.28482 |16 | |80073 80073| NL80_1 +630884 |V0884 Per *|030620.5+483312 |EA | 10.73 | 11.25 | 11.21 |* |51466.660 | | 12.807 |03 : | |80042 DM | NL80_1 +630887 |V0887 Per *|030918.8+434454 |EA | 9.91 | 10.42 | 10.30 |* |51540.630 | | 1.53444 |15 | |80011 DM | NL80_1 +630888 |V0888 Per *|030937.6+505331 |EA | 11.38 | 12.07 | |* |51612.66 | | 5.4957 |08 |A3 |80013 GSC | NL80_1 +630889 |V0889 Per *|031158.9+460743 |GDOR | 7.26 |( 0.02 b )| |B | | | 0.34306 | |F1 |80130 HIP | NL80_1 +630890 |V0890 Per *|031254.7+502935 |EA | 12.00 | 12.55 | 12.05 |* |51612.520 | | 24.146 |11 | |80042 GSC | NL80_1 +630891 |V0891 Per |031454.5+555249 |DCEP | 11.9 | 12.3 | |* |51401.9 | | 3.22 |30 | |80081 GSC | NL80_1 +630893 |V0893 Per |031610.4+411932 |LB | 10.6 | 11.1 | |* | | | | | |80100 GSC | NL80_1 +630894 |V0894 Per *|031848.0+554012 |RV: | 10.8 | 11.2 | 10.95 |* |51501.2 | | 69.7 | | |80139 80139| NL80_1 +630896 |V0896 Per |032355.2+434314 |SR | 12.35 | 12.75 | |* | | | 70. | | |80001 GSC | NL80_1 +630897 |V0897 Per |033040.8+313658 |RS | 11.50 | 11.68 | |* | | | 1.6559 | |K3V |80021 GSC | NL80_1 +630898 |V0898 Per |033529.9+311338 |IT: | 8.6 |( 0.05 * )| |R | | | 1.8366 | |G0 |80021 DM | NL80_1 +630900 |V0900 Per |034057.8+311806 |RS | 11.05 | 11.20 | |* | | | 4.2419 | |G1V |80021 GSC | NL80_1 +630901 |V0901 Per *|034157.1+390730 |EA | 10.55 | 10.82 | 10.70 |* |51613.738 | | 3.2554 |14 |G5 |80042 DM | NL80_1 +630907 |V0907 Per |034425.3+321013 |INB | 11.86 |( 0.15 )| |H | | | | |M5e |80140 2MASS| NL80_1 +630909 |V0909 Per |034426.0+320430 |INT | 12.42 |( 0.75 )| |I | | | | |G8e |80148 GSC | NL80_1 +630911 |V0911 Per |034430.5+320630 |INB | 11.81 |( 0.15 )| |H | | | | |M0.5 |80140 2MASS| NL80_1 +630912 |V0912 Per *|034432.2+395935 |EA/RS | 12.23 | 12.58 | 12.5 |* |51473.631 | | 0.577545 |12 |K4V |80001 GSC | NL80_1 +630913 |V0913 Per |034432.6+320843 |INB | 10.09 |( 0.15 )| |H | | | | |M2.5e |80140 2MASS| NL80_1 +630914 |V0914 Per |034432.7+320838 |INB | 11.62 |( 0.10 )| |I | | | 2.656 | |G6 |80148 2MASS| NL80_1 +630915 |V0915 Per |034433.3+320940 |INB | 11.39 |( 0.15 )| |H | | | | |M2 |80140 2MASS| NL80_1 +630916 |V0916 Per |034434.9+320954 |INB | 11.39 |( 0.15 )| |H | | | | |M3.5 |80140 2MASS| NL80_1 +630918 |V0918 Per |034436.9+320646 |INB | 10.80 |( 0.09 )| |I | | | 1.687 | |G3 |80148 GSC | NL80_1 +630919 |V0919 Per *|034437.4+321224 |INB | 11.83 |( 0.15 }| |H | | | | |M2e |80140 2MASS| NL80_1 +630921 |V0921 Per |034439.2+320918 |INB | 12.12 |( 0.11 )| |I | | | 2.539 | |G8 |80148 2MASS| NL80_1 +630927 |V0927 Per |034450.6+321907 |IN | 11.0 |( 0.10 * )| |V | | | 6.0371 | | |80021 GSC | NL80_1 +630928 |V0928 Per |034630.4+330235 |RS | 9.8 |( 0.05 * )| |R | | | 1.1202 | |F |80021 GSC | NL80_1 +630935 |V0935 Per *|035911.7+520433 |LB: | 11.49 | 11.57 | |V | | | | | |80152 GSC | NL80_1 +630941 |V0941 Per |040005.8+394137 |RS | 12.1 |( 0.14 * )| |V | | | 5.6162 | | |80021 GSC | NL80_1 +630946 |V0946 Per |040105.2+343903 |RS | 10.7 |( 0.19 * )| |V | | | 18.1451 | |K0 |80021 DM | NL80_1 +630948 |V0948 Per |040415.4+494357 |RS | 10.64 | 10.90 | |* | | | 10.03 | | |80158 GSC | NL80_1 +630949 |V0949 Per |040753.3+335605 |RS | 11.4 |( 0.07 * )| |V | | | 3.8678 | |K3 |80021 GSC | NL80_1 +630950 |V0950 Per |040754.3+352749 |RS | 10.4 |( 0.12 * )| |V | | | 9.4797 | |G0 |80021 DM | NL80_1 +630952 |V0952 Per |041551.4+310036 |IB | 12.34 | 12.47 | |V | | | 0.414 : | |G6 |80154 GSC | NL80_1 +630954 |V0954 Per |041911.6+471640 |RS | 11.60 | 11.77 | |* | | | 4.7334 | | |80060 80060| NL80_1 +630956 |V0956 Per |042637.4+384502 |IB | 10.70 | 10.85 | |* | | | 2.0978 | |G5V |80170 80170| NL80_1 +630958 |V0958 Per *|043128.4+325213 |EA | 11.77 | 12.35 | |* |51535.66 | | 4.9002 |08 |A7 |80013 GSC | NL80_1 +630959 |V0959 Per *|043504.8+372821 |EA | 10.11 | 10.75 | 10.7 : |* |51603.766 | | 0.990715 |16 |F0 |80042 DM | NL80_1 +630960 |V0960 Per *|043715.3+334849 |EA | 11.66 | 12.78 | 11.83 |* |51512.680 | | 4.5265 |12 | |80013 GSC | NL80_1 +630964 |V0964 Per *|044931.1+513111 |EW | 12.50 | 12.95 | 12.90 |* |51291.6775 | | 0.4173 | | |80016 80016| NL80_1 +639002 |bet Per *|030810.1+405720 |EA/SD | 2.12 | 3.39 | |V |45641.5135 | | 2.8673043 |14 *|B8V |00001 08953| +639003 |gam Per |030447.8+533023 |EA/GS | 3.63 |( 0.55 )| |B | | | | | |71019 BD | +639004 |del Per *|034255.5+474715 |GCAS: | 2.99 | 3.04 | |V | | | | |B5III | BD | +639005 |eps Per |035751.2+400037 |BCEP | 2.88 | 3.00 | |V | | | | | |68283 BD | +639014 |ksi Per *|035857.9+354728 |* | 4.00 | 4.06 | |V | | | | |O7.5III(f) |04194 BD | +639015 |omi Per *|034419.1+321718 |ELL | 3.79 | 3.88 | |V |36459.0 | | 4.4191666 | |B1III+B2V |09806 BD | +639017 |rho Per *|030510.6+385025 |SRB | 3.30 | 4.0 | |V | | | 50. : | |M4IIb-IIIa | 08953| +639019 |tau Per |025415.5+524545 |EA/GS | 3.94 | 4.07 | |V | | | | | |68204 BD | +639021 |phi Per *|014339.6+504119 |GCAS | 3.96 | 4.11 | |V | | | 19.5 | |B2Vne+B3Vne |03124 BD | +639023 |psi Per |033629.4+481134 |GCAS | 4.17 | 4.28 | |V | | | | |B5III-Vne |08663 BD | +639102 |b Per *|041814.6+501744 |ELL | 4.52 | 4.68 | |V |43141.728 | | 1.5273643 | |A2V |09809 BD | +640001 |R Phe *|235627.6-494713 |M | 7.5 | 14.4 | |V |39486. | | 269.26 |50 |M2(II)e-M4(III)e |00001 00002| +640002 |S Phe |235904.6-563432 |SRB | 8.6 | 10.6 | |p | | | 141. | |M3e-M6IIIe |00643 05474| +640003 |T Phe *|003026.2-462433 |M | 8.7 | 14.6 | |V |41070. | | 281.79 |37 |M5e |00001 00002| +640004 |U Phe |003503.2-501216 |M | 10.1 |< 14.5 | |p |29875. | | 226.3 | | |00643 08953| +640005 |V Phe |233227.3-455919 |M | 8.5 | 14.4 | |V |40817. | | 257.00 |47 |M4e |00001 00002| +640006 |W Phe *|011952.6-555504 |M | 8.1 | 14.4 | |V |41455. | | 333.95 |42 |M5e-M6e |00001 05464| +640009 |Z Phe |235904.9-532403 |M | 10.0 |< 15. | |p |28844. | | 255. | |Me |00001 09467| +640010 |RR Phe |235844.1-392700 |M | 9.4 |< 14.0 | |p |30423. | | 426.55 | | |01188 08953| +640011 |RS Phe *|011401.5-564644 |M | 10.6 |< 14.5 | |p |24802. | | 239. | |M2e |00210 05464| +640012 |RT Phe *|015329.0-490026 |M | 11.4 |< 13.5 | |p |24804. | | 416. : | | |00210 09611| +640013 |RU Phe |232808.7-472729 |M | 10.8 |< 12.9 | |p |28366. | | 289. | |M1e |00016 08667| +640014 |RV Phe *|232831.4-472713 |RRAB | 11.12 | 12.26 | |V |41915.525 | | 0.5964182 |15 |F6: |07984 06286| +640015 |RW Phe |003016.3-462759 |E | 12.4 | 14.0 | |V |25859.344 | | 5.4129 | | |01189 03389| +640022 |SV Phe |234917.1-430641 |M | 10.2 | 15.0 | |p |28740. | | 265. | | |00016 08953| +640023 |SW Phe |000030.0-393729 |EA/SD | 10.0 | 11.8 | |p |28423.45 | | 2.5531 |08 |A5 |00016 08588| +640024 |SX Phe *|234632.9-413455 |SXPHE(B) | 6.76 | 7.53 | |V |38636.6170 | | 0.054964438 |34 |A5-F4 |09525 08953| +640025 |SY Phe |013030.8-424225 |ISB: | 9.75 | 9.96 | |V | | | | |F8 |02412 03389| +640026 |SZ Phe |013403.4-431430 |ISB | 9.81 | 10.12 | |V | | | | |K4 |02412 03389| +640027 |TT Phe |014531.6-415545 |ISB: | 10.28 | 10.74 | |V | | | | | |02412 CoD | +640028 |TU Phe |233523.7-550306 |ISB: | 11.5 | 13. | |p | | | | | |02763 02763| +640033 |TZ Phe |010958.4-420744 |RRAB | 12.2 | 12.8 | |p |36820.437 | | | | |08121 04001| +640041 |VW Phe |012533.6-414835 |EA/DM: | 10.57 | 11.14 | |V |28719.650 | | 1.742160 | | |05235 04001| +640044 |VZ Phe |012810.3-452434 |SR | 12.5 | 13.5 | |p |36830. | | 150. : | | |08121 04001| +640045 |WW Phe *|013106.8-435935 |EA | 12.4 | 13.2 | 12.7 |p |36789.445 | | 0.720 | | |08121 04001| +640046 |WX Phe |013342.3-434923 |EA | 11.9 | 12.9 | |p |36822.535 | | 1.387 : |10 | |08121 04001| +640058 |AD Phe *|011638.1-394231 |EW/KW | 10.27 | 10.80 | 10.80 |V |44250.598 | | 0.3799252 | | |00001 04001| +640059 |AE Phe *|013232.9-493141 |EW/KW | 7.56 | 8.25 | 8.19 |V |43732.8819 | | 0.362377 | |G0V+G0V |09615 CoD | +640060 |AF Phe |001607.7-483321 |LB | 7.57 | 7.82 | |V | | | | |M4III |05973 CoD | +640061 |AG Phe *|002654.9-395255 |EA/KE: | 8.87 | 9.36 | 8.95 |V |44170.79481 | | 0.75533809 |22 *|A9V |09538 06317| +640062 |AH Phe |004657.5-475852 |SR | 9.27 | 9.48 | |V | | | 45. : | |M6III |05973 CoD | +640063 |AI Phe *|010934.2-461556 |EA/DM | 8.58 | 9.35 | 8.89 |V |43410.6885 | | 24.592325 |02 |F7V+G5:V |09617 06336| +640064 |AK Phe |011933.9-471732 |LB | 7.40 | 7.64 | |V | | | | |M4III |05973 CoD | +640065 |AL Phe |012514.0-455535 |LB: | 8.33 |( 0.27 )| |V | | | | |M3/4 |05973 CoD | +640066 |AM Phe |014951.0-425810 |LB | 9.55 | 9.91 | |V | | | | |M5/6 |05973 CoD | +640067 |AN Phe |233352.2-450300 |SR | 8.83 | 9.54 | |V | | | 70. : | |M6III |05973 08667| +640071 |AR Phe |012355.6-413002 |E: | 11.5 | 12.0 | |p |36764.634 | | | | |08121 04001| +640074 |AU Phe *|015023.5-465828 |EW/KW | 12.5 | 13.0 | 13.0 |p |36735.584 | | 0.265814 : | | |08121 04001| +640076 |AW Phe |012930.5-464523 |LB: | 6.22 |( 0.15 )| |V | | | | |M2III |05840 CoD | +640078 |AY Phe |233750.0-453408 |LB | 7.76 | 8.04 | |V | | | | |M4III |05973 CoD | +640079 |AZ Phe |005003.8-432342 |DSCTC | 6.47 |( 0.015 )| |V | | | 0.0492 | |A9/F0III |09618 CoD | +640080 |BB Phe |003027.8-405623 |DSCTC | 6.18 |( 0.04 )| |V | | | | | |67183 CoD | +640081 |BC Phe |012219.0-564353 |RS | 8.4 : |( 0.06 )| |V | | | | | |67024 CoD | +640082 |BD Phe |015054.4-501222 |DSCTC | 5.90 | 5.94 | |V | | | | | |68079 CoD | +640083 |BE Phe |002147.4-401715 |M: | 6.41 | 7.04 | |J | | | | | |69152 69152| +640084 |BF Phe |234954.6-421803 |DSCTC | 7.7 |( 0.03 b )| |V | | | | | |70091 CoD | +640085 |BG Phe |004901.3-560549 |BE | 10.31 | 10.36 | |V | | | | | |73266 73267| +640086 |BH Phe |000528.0-425315 |SRB: | 7.31 | 7.63 | |Hp| | | | | |HIP HIP | +640087 |BI Phe |000600.0-484044 |SRB: | 9.56 | 9.84 | |Hp| | | | | |HIP HIP | +640088 |BK Phe |000741.0-561458 |LB: | 9.17 | 9.30 | |Hp| | | | | |HIP HIP | +640089 |BL Phe |001047.4-572911 |EB | 8.34 | 8.68 | |Hp| | | | | |HIP HIP | +640090 |BM Phe |001845.9-394038 |EW | 9.27 | 9.53 | |Hp| | | | | |HIP HIP | +640091 |BN Phe |001922.5-535039 |SRB | 7.81 | 7.93 | |Hp| | | | | |HIP HIP | +640092 |BO Phe |002020.2-570948 |SRB | 8.58 | 9.56 | |Hp| | | | | |HIP HIP | +640093 |BP Phe |002343.7-492128 |LB: | 7.72 | 7.84 | |Hp| | | | | |HIP HIP | +640094 |BQ Phe |002524.1-465527 |SXPHE: | 10.47 | 10.60 | |Hp| | | | | |HIP HIP | +640095 |BR Phe |003116.5-513858 |LB: | 9.01 | 9.13 | |Hp| | | | | |HIP HIP | +640096 |BS Phe |003737.0-553937 |SRB | 8.38 | 8.55 | |Hp| | | | | |HIP HIP | +640097 |BT Phe |004929.4-554552 |SRB | 9.38 | 9.64 | |Hp| | | | | |HIP HIP | +640098 |BU Phe |004956.3-572311 |SRB | 7.15 | 7.26 | |Hp| | | | | |HIP HIP | +640099 |BV Phe |005525.3-514958 |BY: | 12.09 | 12.59 | |Hp| | | | | |HIP HIP | +640100 |BW Phe |005655.4-515232 |BY: | 9.05 | 9.19 | |Hp| | | | | |HIP HIP | +640101 |BX Phe |005951.6-494502 |SRB | 7.33 | 7.50 | |Hp| | | | | |HIP HIP | +640102 |BY Phe |012433.9-454317 |SR | 7.87 | 7.91 | |Hp| | | | | |HIP HIP | +640103 |BZ Phe |012450.1-424552 |LB: | 8.88 | 9.03 | |Hp| | | | | |HIP HIP | +640104 |CC Phe |012808.6-523819 |BY: | 9.41 | 9.55 | |Hp| | | | | |HIP HIP | +640105 |CD Phe |014202.9-410705 |ACV: | 8.69 | 8.74 | |Hp| | | | | |HIP HIP | +640106 |CE Phe |014737.8-461526 |SRB | 7.04 | 7.22 | |Hp| | | | | |HIP HIP | +640107 |CF Phe |020614.4-393220 |SRB | 7.05 | 7.21 | |Hp| | | | | |HIP HIP | +640108 |CG Phe *|233130.2-405844 |SXPHE: | 10.23 | 10.57 | |Hp| | | | | |HIP HIP | +640109 |CH Phe |233812.5-562704 |LB: | 7.42 | 7.53 | |Hp| | | | | |HIP HIP | +640110 |CI Phe |234419.2-542610 |SRB: | 7.22 | 7.81 | |Hp| | | | | |HIP HIP | +640111 |CK Phe |234651.2-554834 |LB | 7.24 | 7.41 | |Hp| | | | | |HIP HIP | +640112 |CL Phe |235149.5-461909 |BY: | 9.70 | 9.83 | |Hp| | | | | |HIP HIP | +640114 |CN Phe |004637.6-420937 |DSCTC | 9.45 |( 0.01 )| |V | | | | | |76009 DM | +640116 |CP Phe |003418.6-430003 |SRA | 10.6 | 13.0 | |V |52157 | | 144. | | |78130 78004| +640118 |CR Phe |005002.5-484347 |SRB | 9.2 | 10.6 | |V | | | 119. | | |78130 DM | +640119 |CS Phe |010949.5-441854 |RRAB | 11.9 | 13.8 | |V |51884.534 | | 0.48436 |22 | |78130 78021| +640120 |CT Phe |012546.4-395611 |EA | 11.2 | 11.8 | |V |52104.857 | | 1.2608 | | |78130 78004| +640121 |CU Phe |013830.8-425541 |GDOR: | 6.68 |( 0.06 )| |V | | | | |F0V |78024 DM | +640122 |CV Phe |021247.1-442920 |DSCTC | 7.84 |( 0.02 b )| |V | | | 0.080 | |F0V |78037 DM | +640123 |CW Phe |005151.5-555024 |LB | 11.8 | 12.7 | |V | | | | | |79100 79010| +640124 |CX Phe |011931.1-481741 |EA | 8.77 | 9.14 : | 9.0 |V |48736.140 | | 19.9757 : | |F0V |79011 DM | +640125 |CY Phe |014224.0-464052 |SRB | 9.4 | 10.2 | |V | | | 319. | | |79064 DM | +640126 |CZ Phe *|235621.8-532922 |RR(B) | 12.4 | 13.4 | |V |52978.625 | | 0.42249 | | |79208 79071| +640127 |DD Phe |235704.6-521319 |LB | 9.9 | 10.7 | |V | | | | | |79100 DM | +640128 |DE Phe |235755.3-415543 |EA | 11.25 | 11.81 | 11.37 |V |52502.749 | | 1.40296 |13 | |79011 DM | +640129 |DF Phe |000156.9-525007 |LB | 10.4 | 11.0 | |V | | | | | |80010 DM | NL80_1 +649003 |gam Phe *|012821.9-431906 |LB: | 3.39 | 3.49 | |V | | | | |M0IIIa |04613 CoD | +649006 |zet Phe *|010823.1-551445 |EA/DM | 3.91 | 4.42 | |V |41643.6890 | | 1.6697671 |12 *|B6V+B9V |09544 08953| +649009 |iot Phe *|233504.6-423654 |ACV | 4.70 | 4.75 | |V | | | 12.5 : | |A2Vp(Sr-Cr-Eu) |05880 CoD | +649014 |ksi Phe *|004146.4-563005 |ACV | 5.68 | 5.78 | |V |42314.48 | | 3.9516 | |A9p(Sr-Cr-Eu) |04196 CPD | +649017 |rho Phe *|005041.2-505913 |DSCT | 5.17 | 5.27 | |V | | | 0.110 : | |F3III |06255 CoD | +649023 |psi Phe *|015338.7-461810 |SR | 4.3 | 4.5 | |V | | | 30. | |M4III |06994 CoD | +650001 |R Pic *|044609.6-491445 |SR | 6.35 | 10.1 | |V |44922. | | 170.9 | |M1IIe-M4IIe |00001 00002| +650002 |S Pic *|051057.3-483026 |M | 6.5 | 14.0 | |V |39595. | | 428.0 |36 |M6.5e-M8III-IIe |00001 00002| +650003 |T Pic |051505.9-465505 |M | 7.9 | 14.4 | |V |41283. | | 200.58 |49 |M6IIIe |00001 00002| +650004 |U Pic *|045006.6-503925 |RRAB | 10.68 | 11.87 | |V |41666.449 | | 0.4403710 |12 |A5-F6 |07984 06286| +650005 |V Pic |061314.8-595454 |SR | 8.65 | 10.22 | |V |28730. | | 180. | | |00016 08953| +650006 |W Pic |054313.8-462714 |LB | 11.8 |< 15.0 | |p | | | | |C(N) |00016 CoD | +650007 |X Pic *|050456.5-530826 |EA/SD | 10.7 | 11.8 | 10.8 |p |29112.169 | | 0.8619043 |19 |A2 |00007 CPD | +650008 |Y Pic |051111.5-453439 |SRB | 9.7 | 11.2 | |p | | | 115.7 | |M4/6(III) |00353 08953| +650011 |RS Pic |044203.3-513335 |S: | 11.5 | 12.3 | |p | | | | | |00210 06286| +650012 |RT Pic *|060041.3-445350 |E: | 9.9 |< 12.5 | |p |24120.704 | | | |G8V |01191 08953| +650013 |RU Pic |063018.3-601340 |M | 10.8 |< 15.0 | |p |30055. | | 207.9 | | |00353 USNO | +650014 |RV Pic *|045729.7-520846 |EA/DM | 9.64 | 12.09 | 9.79 |V |41286.757 | | 3.971780 |09 |A1V |07355 CPD | +650015 |RW Pic |060932.3-600719 |M | 10.2 |< 13.8 | |p |28794. | | 287. | |Me |01000 08953| +650016 |RX Pic |063128.3-633207 |EA | 9. | 10.5 | |p | | | | |A2/3V |00085 05625| +650017 |RY Pic |053717.1-553824 |M | 10.6 |< 14.1 | |p |38378. | | 219. : | |M3e |08627 04256| +650018 |RZ Pic |061723.7-615408 |M | 10.0 | 14.0 | |p |38731. | | 311. | |M3e |08627 02381| +650019 |SS Pic |054728.9-451446 |SR: | 9.9 | 10.7 | |p |38375.2 | | 57.5 | | |04371 08953| +650020 |ST Pic |061401.2-612824 |RR | 9.29 | 9.77 | |V |42034.450 | | 0.48574 |22 |F5V |03306 CPD | +650021 |SU Pic *|051814.5-453447 |EA/DM | 10.15 | 10.64 | 10.4 |V |28815.475 | | 1.838115 | |A0 |05393 CoD | +650022 |SV Pic |044003.1-522326 |SRB | 8.99 | 9.17 | |V | | | 60. | |M4III |05828 CPD | +650023 |SW Pic |060209.3-600549 |LB: | 6.45 |( 0.12 )| |V | | | | |M4III |05840 CPD | +650024 |SX Pic |054304.3-505734 |M | 12. |< 13.5 | |p | | | | |Me |00085 02381| +650025 |SY Pic |044838.5-491012 |ACV | 8.84 | 8.87 | |V | | | 15.864 | |A5p(Sr-Eu) |09625 CoD | +650026 |SZ Pic |055327.4-433331 |RS | 7.81 | 7.97 | |V |43931.54 | | 2.441 | |G8V |09626 CoD | +650027 |TT Pic |051637.8-455450 |ACV | 7.1 |( 0.07 )| |V | | | | | |67064 CoD | +650028 |TU Pic |050725.9-444918 |ACV | 6.93 |( 0.03 )| |V | | | | | |68290 CoD | +650029 |TV Pic |044857.5-470804 |ELL | 7.5 |( 0.12 )| |V | | | | | |69228 CoD | +650031 |TX Pic |053602.9-471850 |RS | 6.08 | 6.12 | |V | | | | | |69011 CoD | +650032 |TY Pic |060756.9-542621 |RS | 7.61 | 7.68 | |V | | | | | |69011 CPD | +650033 |TZ Pic |063105.7-590017 |RS | 7.59 | 7.66 | |V | | | | | |69011 CPD | +650035 |UV Pic |052049.3-454130 |BY | 11.80 | 11.93 | |V | | | | | |73103 CoD | +650037 |UX Pic |053559.5-440439 |M | 3.90 | 5.47 | |J | | | | | |73014 GSC | +650038 |UY Pic |053656.9-475753 |RS: | 7.86 | 7.97 | |V | | | | | |73269 73153| +650039 |UZ Pic |045509.6-495644 |E: | 8.28 | 8.57 | |Hp| | | | | |HIP HIP | +650040 |VV Pic |045634.9-432557 |LB: | 7.91 | 8.01 | |Hp| | | | | |HIP HIP | +650041 |VW Pic *|045929.6-492729 |EW | 7.06 | 7.15 | |Hp| | | | | |HIP HIP | +650042 |VX Pic |050300.3-540553 |SRB | 8.71 | 8.93 | |Hp| | | | | |HIP HIP | +650043 |VY Pic |050624.5-561353 |LB: | 8.30 | 8.54 | |Hp| | | | | |HIP HIP | +650044 |VZ Pic *|051140.6-450106 |BY: | 8.90 | 9.22 | |Hp| | | | | |HIP HIP | +650045 |WW Pic |052036.9-433202 |SRA | 6.49 | 6.98 | |Hp| | | | | |HIP HIP | +650046 |WX Pic |052800.4-442738 |LB: | 8.74 | 8.86 | |Hp| | | | | |HIP HIP | +650047 |WY Pic |054011.6-433505 |SRB: | 8.05 | 8.20 | |Hp| | | | | |HIP HIP | +650048 |WZ Pic |054113.1-572628 |E: | 9.26 | 9.35 | |Hp| | | | | |HIP HIP | +650049 |XX Pic |054331.0-473246 |SRB | 7.54 | 7.74 | |Hp| | | | | |HIP HIP | +650050 |XY Pic |054530.6-553441 |EW | 7.61 | 7.66 | |Hp| | | | | |HIP HIP | +650051 |XZ Pic |054513.4-595526 |BY: | 9.30 | 9.60 | |Hp| | | | | |HIP HIP | +650052 |YY Pic |054855.6-461856 |DSCTC | 7.57 | 7.64 | |Hp| | | | | |HIP HIP | +650053 |YZ Pic |055354.3-550537 |SRB | 8.55 | 8.77 | |Hp| | | | | |HIP HIP | +650054 |ZZ Pic |055648.0-592521 |LB | 8.45 | 9.14 | |Hp| | | | | |HIP HIP | +650055 |AA Pic |055742.7-481524 |LB: | 8.15 | 8.26 | |Hp| | | | | |HIP HIP | +650056 |AB Pic |061912.9-580316 |BY: | 9.21 | 9.35 | |Hp| | | | | |HIP HIP | +650057 |AC Pic |062140.7-562144 |SRB | 6.78 | 6.89 | |Hp| | | | | |HIP HIP | +650058 |AD Pic |062237.1-623819 |LB | 8.61 | 8.96 | |Hp| | | | | |HIP HIP | +650059 |AE Pic |063110.6-615246 |EB: | 6.09 | 6.14 | |Hp| | | | | |HIP HIP | +650061 |AG Pic |053512.1-580108 |DSCT | 12.1 |( 0.19 )| |R | | | | | |77047 GSC | +650063 |AI Pic |063249.6-633550 |M | 12.2 |< 15.0 | |V |53068 | | 309. | |Me |78130 USNO | +650064 |AK Pic |063800.4-613200 |BY | 6.14 | 6.19 | |V | | | 2.60 | |G0V+K2/3V |78046 DM | +650066 |AM Pic *|051344.6-493248 |SRA | 8.6 | 9.6 | |V |53712. | | 253. | |M1 |79064 DM | +650067 |AN Pic |060303.2-430138 |SRB | 9.2 | 10.0 | |V | | | 80. : | |M4/6 |79100 DM | +650068 |AO Pic *|061108.5-581716 |EA | 9.43 | 9.83 | 9.70 |V |53517.483 | | 2.23415 |06 |F5/F6IV/V |79009 DM | +650069 |AP Pic |063356.8-624944 |SRB | 8.92 | 9.16 | |V | | | 28.4 | |M3III |79100 DM | +650070 |AQ Pic |063816.5-581734 |M | 10.2 |< 14.6 | |V |53754. | | 232. | | |79064 GSC | +650072 |AS Pic *|060556.8-534252 |EW | 10.82 | 11.14 | 11.10 |V |51868.137 | | 0.463634 | | |80036 GSC | NL80_2 +659004 |del Pic *|061017.9-545807 |EB/D: | 4.65 | 4.90 | 4.83 |V |41695.336 | | 1.672541 | |B3III+O9V |07587 CPD | +660001 |R Psc *|013038.4+025254 |M | 7.0 | 14.8 | |V |44920. | | 344.50 |44 |M3e-M6e |00001 00002| +660002 |S Psc *|011734.5+085553 |M | 8.2 | 15.3 | |V |42325. | | 404.62 |42 |M5e-M7e |00001 00002| +660003 |T Psc |003201.1+143605 |SRB | 9.2 | 12.5 | |V | | | 252. | |M5 |08642 08953| +660004 |U Psc *|012258.5+125203 |M | 10.3 | 14.9 | |V |43432. | | 173.1 |48 |M4e |00001 00002| +660005 |V Psc *|002225.2+064003 |UV: | 11. | 12. | |p | | | | |M1V |01897 00664| +660006 |W Psc *|005946.5+275645 |M | 11.4 | 14.8 | |p |45337. | | 188.1 |48 |M2e-M4 |00001 06073| +660007 |X Psc *|011207.7+221325 |M | 9.8 |< 15. | |p |42314. | | 349.6 | |M5e-M6e |00001 04008| +660008 |Y Psc *|233425.4+075529 |EA/SD | 10.1 | 13.1 | |p |45635.241 | | 3.765767 |10 |A3+K0IV |00001 08953| +660009 |Z Psc |011605.0+254610 |SRB | 8.8 | 10.1 | |p | | | 144. | |C7,2(N0) |01194 08953| +660010 |RR Psc |000101.4+062728 |M | 12.1 |< 16. | |p |32076. | | 270.6 | | |00001 01195| +660012 |RT Psc *|011347.9+270759 |SRB | 8.2 | 10.4 | |p | | | 70. | |M0 |01194 08953| +660013 |RU Psc *|011426.0+242456 |RRC | 9.93 | 10.40 | |V |40143.4027 | | 0.390385 |48 |A7-F3 |09713 04004| +660014 |RV Psc *|011941.1+311205 |EA/DW | 11.3 | 12.0 | 12.0 |V |24381.480 | | 0.55399145 |18 *|F8 |09715 00279| +660015 |RW Psc |012413.7+215129 |SRB | 11.2 | 12.4 | |p |27139. | | 154. |48 |M0e-M3 |00460 01198| +660016 |RX Psc |012539.2+212346 |M | 8.8 | 14.6 : | |V |43035. | | 280.54 |43 |M1e |00001 01198| +660017 |RY Psc *|001141.1-014455 |RRAB | 11.82 | 12.72 | |V |42681.147 | | 0.5297106 |15 |F0-F6 |09009 06286| +660018 |RZ Psc *|010942.1+275702 |ISB: | 11.29 | 13.82 | |V | | | | |K0IV |09658 09481| +660019 |SS Psc *|012052.4+214343 |RRC | 10.73 | 11.21 | |V |19130.305 | | 0.28779276 |44 |A7-F2 |04957 03252| +660020 |ST Psc |012749.6+164209 |SRB | 10.9 | 12.7 | |p | | | 540. | |M5 |09662 00002| +660021 |SU Psc *|012924.4+193741 |EB/D: | 10.95 | 11.9 | 11.3 |V |26004.344 | | 2.681409 | |B3III |00134 06286| +660022 |SV Psc |014635.3+190505 |SRB | 9.9 | 11.3 | |p | | | 102. | |M5 |01194 08953| +660024 |SX Psc *|005737.9+121826 |EA/SD: | 11.2 | 12.1 | |V |45992.289 | | 0.8258808 |25 |A7V |00001 01217| +660025 |SY Psc |010232.9+052343 |RRAB | 12.4 | 13.8 | |p |20398.400 | | 0.67354111 |40 : | |04416 03133| +660026 |SZ Psc *|231323.8+024032 |EA/DS/RS | 7.18 | 7.72 | 7.38 |V |35741.8461 | | 3.9657900 |11 *|K1IV-V+F8V |09732 08953| +660027 |TT Psc |020042.6+053154 |SRB | 10.9 | 13.0 | |p |28939. | | 144.8 |44 |M4 |01219 08953| +660028 |TU Psc |001139.6+120553 |SR | 11.8 |< 13.0 | |p |36193. | | 179. | |M |00790 06286| +660029 |TV Psc |002802.9+175335 |SR | 4.65 | 5.42 | |V |31387. | | 49.1 | |M3III-M4IIIb |00870 08953| +660030 |TW Psc |003946.0+141201 |LB | 10.6 | 12.2 | |p | | | | |M8 |00865 BD | +660031 |TX Psc |234623.5+032913 |LB | 4.79 | 5.20 | |V | | | | |C7,2(N0)(Tc) | 05288| +660032 |TY Psc *|012539.4+322309 |UGSU | 12.2 | 16.3 | |p | | |( 41.5 ) | |pec(UG) |09733 02544| +660033 |TZ Psc |012253.0+252307 |M | 11.2 |< 16. | |p |37298. | | 376.0 | | |00001 00002| +660034 |UU Psc *|001458.8+084916 |ELL/DW: | 6.01 | 6.05 | 6.04 |V |39765.175 | | 0.841678 | |F1IV-V+F1IV-V |06203 BD | +660035 |UV Psc *|011655.1+064842 |EA/D:/RS | 8.91 | 10.05 | 9.54 |V |43406.5225 | | 0.8610482 |12 *|G2 |09677 08953| +660036 |UW Psc *|012325.3+224818 |EA/DM | 10.8 | 11.3 | 11.0 : |p |26027.261 | | 2.490830 |15 |A0 |02594 02609| +660038 |UY Psc |011411.0+071846 |SRD | 8.75 | 9.15 | |V | | | 80. : | |K |06450 BD | +660039 |UZ Psc *|014542.5+083333 |ACV | 6.43 | 6.65 | |V |39757.91 | | 4.1327 |50 |A2p(Cr-Eu-Sr-Si) |05751 04348| +660042 |VX Psc |012952.9+182120 |DSCT | 5.90 | 6.02 | |V | | | 0.131 | |A3V |06204 BD | +660043 |VY Psc |014635.3+172446 |DSCTC | 6.54 | 6.59 | |V | | | 0.2 | |A7III |07157 BD | +660044 |VZ Psc *|232748.4+045124 |EW/KW | 10.20 | 10.45 | 10.43 |V |43832.206 | | 0.2611865 | | |09690 09690| +660045 |WW Psc *|005949.7+062900 |LB | 5.97 | 6.11 | |V | | | | |M2III |06994 BD | +660046 |WX Psc *|010626.0+123553 |M | 0.9 | 4.3 | |K |40460. | | 660. |40 |M8 |07343 03586| +660048 |WZ Psc |020612.3+081453 |SR | 6.20 | 6.38 | |V | | | 20. : | |M4 |06645 BD | +660049 |XX Psc |004713.6+193443 |DSCTC: | 6.13 |( 0.04 )| |V | | | 0.1040 | |F0V |06883 BD | +660051 |XZ Psc |235446.6+000634 |LB | 5.61 | 5.97 | |V | | | | |M5IIb |06645 BD | +660052 |YY Psc |000157.6-060051 |LB: | 4.31 | 4.41 | |V | | | | |M3III |03712 BD | +660055 |AA Psc |015435.3+044243 |LB | 10.9 | 11.2 | |V | | | | |M6ep-M7 |06977 | +660056 |AB Psc |230010.8-002252 |LB | 9.7 | 10.4 | |V | | | | |M6-M7 |02592 02592| +660058 |AD Psc |234404.7+002255 |LB: | 11.8 | 12.8 | |p | | | | |M6-M7 |06845 06286| +660059 |AE Psc |013144.5+224429 |E | 7.09 |( 0.16 )| |V | | | 1.4175 | |G5 |07964 BD | +660060 |AF Psc |233144.9-024439 |UV | 8.5 | 16.2 | |p | | | | |M4Ve |08248 08248| +660061 |AG Psc *|003647.3+151354 |BCEP | 5.81 | 5.94 | |V | | | 0.08 | |B2.5IV |04200 BD | +660062 |AH Psc *|012132.6+094059 |N: | 9.5 |< 14. | |V | | | | | |09737 09737| +660067 |AN Psc |013047.0+150118 |LB | 8.08 | 8.28 | |V | | | | |MB |08225 BD | +660069 |AP Psc |000812.1-022652 |EB/GS | 6.1 | 6.3 | |V | | | | | |67187 BD | +660070 |AQ Psc |012103.6+073622 |EW/KW | 8.60 | 8.96 | |V | | | | | |67188 BD | +660071 |AR Psc |012256.8+072509 |XI+RS | 8.2 | 9.1 | |p | | | | | |67194 67193| +660079 |AZ Psc |225852.9-001857 |RS: | 7.32 | 7.50 | |V | | | | | |68209 BD | +660081 |BC Psc |000520.1-054227 |RS | 4.61 |( 0.08 )| |V | | | | | |70157 BD | +660082 |BD Psc |230203.0-021140 |UV |>18. | 21. | |p | | | | | |70092 70092| +660083 |BE Psc |010407.2+263513 |RS | 8.8 |( 0.21 )| |V | | | | | |71001 BD | +660084 |BF Psc |013154.9+160249 |RS | 7.81 |( 0.02 )| |V | | | | | |71001 BD | +660085 |BG Psc |013708.8+204201 |RS | 8.69 |( 0.06 )| |V | | | | | |71007 BD | +660086 |BH Psc |235931.3-025038 |DSCTC | 7.13 |( 0.09 )| |V | | | | | |71223 BD | +660088 |BK Psc |003942.2+103914 |RS | 10.41 | 10.60 | |V | | | | | |73269 73153| +660089 |BL Psc |004401.3+093258 |NL | 11.30 | 11.39 | |U | | | | | |73271 73153| +660093 |BP Psc |232224.7-021341 |IT | 9.04 | 9.84 | |J | | | | | |73033 GSC | +660095 |BR Psc |234912.5+022404 |BY | 8.93 | 9.03 | |V | | | | | |73018 73066| +660096 |BS Psc |235224.4-005600 |BY | 10.66 |( 0.16 )| |V | | | | | |73005 BD | +660097 |BT Psc |235935.0-015100 |IB: | 7.8 |( 0.09 )| |B | | | | | |73273 BD | +660098 |BU Psc |000202.6-024558 |IB: | 6.9 |( 0.06 )| |B | | | | | |73273 BD | +660099 |BV Psc |001639.4+015102 |SRB: | 6.89 | 7.07 | |Hp| | | | | |HIP HIP | +660100 |BW Psc |001751.2+201337 |SRB | 6.88 | 6.99 | |Hp| | | | | |HIP HIP | +660101 |BX Psc |001752.9+075158 |EB: | 7.61 | 7.67 | |Hp| | | | | |HIP HIP | +660102 |BY Psc |001841.0+124142 |SRB | 8.42 | 8.63 | |Hp| | | | | |HIP HIP | +660103 |BZ Psc |002009.5+030201 |SRB: | 7.55 | 7.66 | |Hp| | | | | |HIP HIP | +660104 |CC Psc |002318.6-013334 |SRB: | 9.92 | 10.17 | |Hp| | | | | |HIP HIP | +660105 |CD Psc |002428.0+054243 |SRD: | 9.81 | 9.99 | |Hp| | | | | |HIP HIP | +660106 |CE Psc |002432.9-043852 |SRB | 7.43 | 7.61 | |Hp| | | | | |HIP HIP | +660107 |CF Psc |002616.5+034933 |LPB | 6.84 | 6.87 | |Hp| | | | | |HIP HIP | +660108 |CG Psc |002653.3+100856 |SRD | 8.35 | 8.49 | |Hp| | | | | |HIP HIP | +660109 |CH Psc |002954.2+084823 |SRD | 7.80 | 7.94 | |Hp| | | | | |HIP HIP | +660110 |CI Psc |004455.3+031204 |SRB | 7.63 | 7.78 | |Hp| | | | | |HIP HIP | +660111 |CK Psc |004856.9+125247 |LB: | 8.20 | 8.30 | |Hp| | | | | |HIP HIP | +660112 |CL Psc |005508.7+321734 |LB: | 9.33 | 9.51 | |Hp| | | | | |HIP HIP | +660113 |CM Psc |005514.6+201806 |SR: | 8.72 | 8.83 | |Hp| | | | | |HIP HIP | +660114 |CN Psc |005644.5+262024 |SRB | 7.60 | 7.76 | |Hp| | | | | |HIP HIP | +660115 |CO Psc |005659.2+315347 |LB: | 7.70 | 7.81 | |Hp| | | | | |HIP HIP | +660116 |CP Psc |005845.9+320620 |EB: | 10.69 | 11.05 | |Hp| | | | | |HIP HIP | +660117 |CQ Psc |010326.0+031520 |SRD+EA | 7.97 | 8.11 | |Hp| | | | | |HIP HIP | +660118 |CR Psc |010512.2+191152 |LB: | 7.42 | 7.52 | |Hp| | | | | |HIP HIP | +660119 |CS Psc |010912.2+024625 |SRB | 9.65 | 9.97 | |Hp| | | | | |HIP HIP | +660120 |CT Psc |011043.1+232758 |SRB | 8.03 | 8.31 | |Hp| | | | | |HIP HIP | +660121 |CU Psc |011245.8+103456 |BY: | 11.87 | 12.25 | |Hp| | | | | |HIP HIP | +660122 |CV Psc |011944.7+060943 |SRB | 7.76 | 7.90 | |Hp| | | | | |HIP HIP | +660123 |CW Psc |012256.4+315028 |SRB | 7.38 | 7.60 | |Hp| | | | | |HIP HIP | +660124 |CX Psc |013005.7+300902 |LB: | 8.96 | 9.06 | |Hp| | | | | |HIP HIP | +660125 |CY Psc |013643.5+074954 |SRB | 6.34 | 6.55 | |Hp| | | | | |HIP HIP | +660126 |CZ Psc |013959.8+234442 |LB: | 9.28 | 9.44 | |Hp| | | | | |HIP HIP | +660127 |DD Psc |015132.5+091807 |LB: | 8.16 | 8.26 | |Hp| | | | | |HIP HIP | +660128 |DE Psc |020012.7+065505 |SRD | 7.43 | 7.56 | |Hp| | | | | |HIP HIP | +660129 |DF Psc |020328.3+095313 |BY: | 11.84 | 12.07 | |Hp| | | | | |HIP HIP | +660130 |DG Psc |225130.1+063642 |LB: | 8.74 | 8.91 | |Hp| | | | | |HIP HIP | +660131 |DH Psc |225414.3+002455 |LB: | 8.69 | 8.80 | |Hp| | | | | |HIP HIP | +660132 |DI Psc |225959.4+050935 |LB: | 7.28 | 7.38 | |Hp| | | | | |HIP HIP | +660133 |DK Psc |230116.4+010504 |LB: | 8.38 | 8.51 | |Hp| | | | | |HIP HIP | +660134 |DL Psc |231114.1+050016 |LB | 6.12 | 6.66 | |Hp| | | | | |HIP HIP | +660135 |DM Psc |233254.5+032254 |SRB | 7.96 | 8.10 | |Hp| | | | | |HIP HIP | +660136 |DN Psc |234713.8+070513 |LB: | 10.57 | 10.77 | |Hp| | | | | |HIP HIP | +660137 |DO Psc |234858.6+062653 |BY: | 12.25 | 12.58 | |Hp| | | | | |HIP HIP | +660138 |DP Psc |235849.1+093300 |SRD | 8.25 | 8.45 | |Hp| | | | | |HIP HIP | +660139 |DQ Psc |235946.5-001648 |SRB | 6.82 | 6.94 | |Hp| | | | | |HIP HIP | +660140 |DR Psc |000123.2+064729 |DSCTC | 7.29 | 7.33 | |Hp| | | | | |HIP HIP | +660141 |DS Psc |005851.9+030358 |EW | 11.73 | 12.19 | |V | | | | | |75214 75017| +660142 |DT Psc |011404.9+283147 |SR: | 6.37 | 6.45 | |Hp| | | | | |75215 BD | +660143 |DU Psc |000138.6-034524 |SR | 9.5 | 10.57 | |I | | | | | |76001 GSC | +660144 |DV Psc |001309.2+053543 |E/RS | 10.59 |( 0.51 Rc)| |V | | | | | |76003 76003| +660146 |DX Psc |002216.3+033524 |SR: | 11.9 | 12.8 | |V | | | | | |77004 GSC | +660148 |DZ Psc |003627.9+213214 |EW | 10.86 | 11.32 | |V | | | | | |77007 DM | +660150 |EF Psc |010730.1+292613 |SR: | 10.8 | 11.6 | |V | | | | | |77004 GSC | +660151 |EG Psc |011102.2+235111 |SR: | 11.0 | 12.0 | |V | | | | | |77004 UCAC2| +660152 |EH Psc |012805.1+283135 |LB: | 11.6 | 13.0 | |V | | | | | |77004 UCAC2| +660153 |EI Psc |232954.2+062811 |UGSU | 12.5 | 16.5 | |V | | | | | |77211 GSC22| +660155 |EL Psc |004633.0+152832 |SRS | 5.28 |( 0.22 )| |V | | | 12. : | |M4IIIa |78016 DM | +660157 |EN Psc |012128.2+312029 |BY | 8.49 |( 0.02 )| |V | | | 13.87 | |K2V |78018 DM | +660158 |EO Psc |012904.9+214323 |RS | 7.74 |( 0.02 )| |V | | | 10.49 | |K2V |78018 DM | +660161 |ER Psc |230920.4+071453 |EA/SD | 12.1 | 13.8 | |V |40088.455 | | 1.620195 |12 *| |07474 07474| +660162 |ES Psc |003802.4+034104 |EB | 11.97 | 12.52 | 12.41 |V |51384.436 | | 4.09242 | | |79006 GSC | +660163 |ET Psc *|005635.9+104025 |EW | 9.04 | 9.37 | 9.33 |V |52627.610 | | 0.439298 | |A2 |79009 DM | +660164 |EU Psc *|014453.5+195125 |EA | 8.44 | 8.54 | 8.51 : |V |48648.639 | | 1.69261 |05 |F0 |79006 DM | +660165 |EV Psc |235408.1+005749 |RRC | 10.40 | 10.85 | |V |53654.641 | | 0.306258 |42 |A0 |79064 79212| +660166 |EW Psc *|000111.5+090441 |EW | 10.26 | 10.39 | 10.37 |V |53958.9374 | | 0.241202 | | |80007 GSC | NL80_1 +660168 |EY Psc *|001538.8+185405 |EA | 9.21 | 9.5 : | 9.35 : |V |52964.611 | | 3.12945 |07 |G0 |80011 DM | NL80_1 +660169 |EZ Psc *|001614.6+195138 |BY | 10.5 | 10.7 | |* | | | 4.7901 | |M4 |80021 HIP | NL80_1 +660170 |FF Psc |001748.5+095322 |RRAB | 11.94 | 12.56 | |* |51462.67 | | 0.70119 |15 | |80026 GSC | NL80_1 +660171 |FG Psc |002108.9-022125 |LB | 9.4 | 10.0 | |V | | | | |M5 |80001 DM | NL80_1 +660172 |FH Psc |002203.5+130335 |RS | 10.05 | 10.26 | |V | | | 34.62 | |K0 |80034 DM | NL80_1 +660174 |FK Psc |002334.7+201429 |RS | 10.70 | 10.87 | |V | | | 7.9165 | |K5 |80021 GSC | NL80_1 +660175 |FL Psc |002511.1+121712 |UGSU | 10.5 | 17.0 : | |V | | | | | |80037 80037| NL80_1 +660176 |FM Psc *|003149.8+045046 |GDOR | 8.01 | 8.11 | |Hp| | | 0.65070 | |F1V |80160 HIP | NL80_1 +660177 |FN Psc |004058.8+095803 |RS | 12.4 | 12.6 | |* | | | 20.06 | | |80043 80043| NL80_1 +660178 |FO Psc |004134.5+211803 |RS | 9.42 | 9.68 | |V | | | 2.941 | |G0 |80034 DM | NL80_1 +660179 |FP Psc |004348.9+184653 |RS | 10.9 | 11.1 | |* | | | 13.74 | | |80043 80043| NL80_1 +660181 |FR Psc *|004757.1+114224 |RRAB | 11.5 | 12.8 | |V |53711.572 | | 0.45568 |20 | |80001 GSC | NL80_1 +660182 |FS Psc |004957.8+325608 |BY | 12.2 | 12.5 | |* | | | 6.8388 | | |80060 80060| NL80_1 +660183 |FT Psc *|005033.2+244900 |BY | 10.9 | 11.1 | |* | | | 1.6968 | |M3.5 |80021 HIP | NL80_1 +660184 |FU Psc *|005101.8+200823 |EA/RS | 11.75 | 12.05 | 11.98 : |V |51556.7035 | | 0.7966 |07 | |80021 GSC | NL80_1 +660186 |FW Psc |005508.3+295717 |RS | 11.7 | 11.85 | |* | | | 3.313 | | |80069 80069| NL80_1 +660191 |GH Psc |005707.7+102557 |RS | 10.0 | 10.2 | |V | | | 35.11 | |F8 |80001 DM | NL80_1 +660192 |GI Psc |005734.2+074653 |RRAB | 12.1 | 12.8 | |V |52635.5587 | | 0.734160 |20 | |80002 GSC | NL80_1 +660194 |GL Psc |005811.6+273437 |RS: | 10.9 | 11.1 | |V | | | 10.8420 | | |80067 80067| NL80_1 +660196 |GN Psc |010506.4+093508 |RS | 12.2 | 12.5 | |* | | | 10.0108 | | |80060 80060| NL80_1 +660198 |GP Psc |010705.5+190908 |RS | 9.91 | 10.15 | |V | | | 1.3754 | | |80021 GSC | NL80_1 +660199 |GQ Psc |010843.0+245610 |RRAB | 12.4 | 13.1 | |V |52964.63 | | 0.302072 |26 | |80002 GSC | NL80_1 +660200 |GR Psc *|010931.9+223919 |EW | 11.05 | 11.85 | 11.75 |V |52856.8533 | | 0.494320 | | |80002 GSC | NL80_1 +660202 |GT Psc *|011045.8+331055 |EB | 12.25 | 12.64 | 12.47 |* |51375.670 | | 0.87347 | | |80024 80024| NL80_1 +660205 |GW Psc *|011732.4+075330 |EW | 11.35 | 12.05 | 12.0 |V |52961.7038 | | 0.336335 | | |80002 GSC | NL80_1 +660207 |GY Psc *|011915.8+301339 |EW | 12.4 | 12.6 | 12.6 |* |51493.572 | | 0.29028 | | |80052 80052| NL80_1 +660208 |GZ Psc |012139.3+251748 |RS | 9.67 | 9.90 | |V | | | 12.994 | | |80034 DM | NL80_1 +660209 |HH Psc |012139.8+253643 |RS | 9.81 | 9.90 | |* | | | 0.5649 | | F8 |80021 DM | NL80_1 +660210 |HI Psc |012215.4+202130 |RS | 9.45 | 9.65 | |V | | | 10.2318 | | |80021 GSC | NL80_1 +660211 |HK Psc |012458.0+255702 |RS | 10.74 | 10.87 | |* | | | 3.0420 | | |80021 DM | NL80_1 +660212 |HL Psc *|012728.9+290619 |EB/RS | 10.79 | 11.12 | 10.97 |V |52929.8486 | | 0.491495 | | G5 |80057 GSC | NL80_1 +660213 |HM Psc |012757.4+185925 |RS | 9.26 | 9.38 | |V | | | 0.7859 | | F8 |80021 DM | NL80_1 +660214 |HN Psc *|012947.9+330336 |EW | 10.75 | 10.95 | 10.93 |* |51478.777 | | 0.32954 | | |80052 80052| NL80_1 +660215 |HO Psc *|013016.5+133325 |EW | 10.95 | 11.7 | 11.6 |V |52872.8396 | | 0.324747 | | |80002 GSC | NL80_1 +660217 |HQ Psc |013514.3+211623 |RS | 10.88 | 11.02 | |* | | | 1.8710 | | F9V |80021 DM | NL80_1 +660218 |HR Psc |013627.8+250836 |RS | 10.8 | 11.3 | |V | | | 3.9346 | | K2e |80021 DM | NL80_1 +660219 |HS Psc |013723.2+265712 |RS | 10.80 | 10.95 | |V | | | 1.0852 | | K5 |80021 GSC | NL80_1 +660221 |HU Psc |014235.8+101440 |DSCTC | 7.57 |( 0.02 )| |B | | | 0.0435787 | | F1V |80092 HIP | NL80_1 +660222 |HV Psc |014453.6+282458 |RS | 10.68 | 10.81 | |* | | | 1.1990 | | |80021 GSC | NL80_1 +660231 |IN Psc *|233637.4-021245 |RRAB | 12.5 | 13.2 | |V |51872.5587 | | 0.645017 |15 | |80002 GSC | NL80_3 +660232 |IO Psc |235051.1-010923 |BY | 11.5 | 11.9 | |V | | | 5.66241 | | |80067 GSC | NL80_3 +660233 |IP Psc |235757.3-010948 |BY | 10.3 | 10.5 | |* | | | 6.1742 | |K0 |80060 80060| NL80_3 +669001 |alf Psc |020202.8+024550 |ACV | 3.82 | 3.83 | |Hp| | | | | |HIP HIP | +669010 |kap Psc |232656.0+011520 |ACV | 4.87 | 4.95 | |V | | | 0.58525 : | |A0p(Cr-Sr-Si-Eu) |09692 BD | +670001 |R PsA *|221800.2-293614 |M | 8.3 | 14.7 | |V |40820. | | 297.6 |38 |M3(II)e-M5IIe |00001 00002| +670002 |S PsA *|220345.8-280304 |M | 8.0 | 14.5 | |V |40696. | | 271.7 |42 |M3e-M5IIe |00001 00002| +670003 |T PsA |222609.7-290456 |CST: | 8.1 | | |p | | | | |F0 |01188 CoD | +670004 |U PsA |220229.5-275307 | | 12.5 |< 14. | |p | | | | |G0: |00016 00002| +670005 |V PsA |225519.7-293645 |SRB | 9.3 | 10.5 | |p | | | 148. | |MB |01188 08953| +670006 |W PsA |220757.7-325000 |EA/DS | 11.4 | 13.2 | |p |29133.940 | | 8.179318 |11 | |00007 CoD | +670008 |Y PsA |220738.7-251539 |CST: | 11.5 | | |p | | | | | |00016 00022| +670014 |RV PsA |213841.9-271234 |M | 10.5 |< 13.0 | |p |25540. | | 361. | | |00016 08953| +670015 |RW PsA *|220946.9-270402 |EW/KW | 11.05 | 11.76 | 11.63 |V |34328.4534 | | 0.36045101 | | |05752 CoD | +670016 |RX PsA |221309.9-271610 |M | 10.5 |< 11.5 | |p |27683. | | 366. | |Me |00016 02339| +670017 |RY PsA |214728.9-361148 |M | 8.8 |< 14.0 | |V |37120. | | 224.39 | |Me |05753 02384| +670018 |RZ PsA |224124.3-332030 |EA | 11. | 12.5 | |p | | | | | |00085 03649| +670019 |SS PsA |225330.6-325539 |M | 11. |< 14. | |p | | | | |Me |00085 CoD | +670020 |ST PsA |225418.7-342326 |M | 9.5 |< 13. | |p |36006. | | 179. | |Me |00001 03508| +670021 |SU PsA |225638.1-353606 |M | 11. |< 13. | |p | | | | |Me |00085 02385| +670022 |SV PsA |213841.6-332114 |EA | 10.1 | 10.6 | |p |35396.171 | | | |G5 |02406 08953| +670023 |SW PsA |220609.8-293254 |EA | 10. | 11. | |p |35728.289 | | | | |02406 08953| +670024 |SX PsA |213943.3-305339 |RR | 12.5 | 13.5 | |p | | | | | |06561 06561| +670025 |SY PsA |214234.9-321210 |M | 12.5 | 16. | |p | | | | | |06561 06561| +670026 |SZ PsA |225140.5-275114 |RR | 12.5 | 13.5 | |p | | | | | |06561 06561| +670027 |TT PsA |220316.8-312643 |LB | 7.00 | 7.49 | |V | | | | |M7III |06351 08953| +670028 |TU PsA |225208.9-251807 |LB: | 11. | 11.8 | |p | | | | |M8 |06375 CoD | +670029 |TV PsA |225748.5-261000 |SRB | 8.56 | 8.95 | |V | | | 45. : | |M5:III |05973 CoD | +670030 |TW PsA |225624.1-313356 |BY | 6.44 | 6.51 | |V | | | 10.3 | |K5Ve |08601 CoD | +670032 |TY PsA |224939.9-270654 |UGSU | 12.0 | 17. | |B | | | | | |67196 67196| +670033 |TZ PsA |230028.2-334442 |RS | 8.40 | 8.49 | |V | | | | | |69011 CoD | +670034 |UU PsA |220436.8-264921 |BE | 5.86 | 5.91 | |b | | | | | |71150 CoD | +670035 |UV PsA |223012.8-302620 |DSCTC | 8.6 |( 0.07 )| |B | | | | | |73067 CoD | +670036 |UW PsA |223333.5-293954 |DSCTC | 8.2 |( 0.08 )| |B | | | | | |73067 CoD | +670037 |UX PsA |213920.0-301816 |LB: | 7.42 | 7.56 | |Hp| | | | | |HIP HIP | +670038 |UY PsA |214055.6-343113 |LB: | 7.72 | 8.08 | |Hp| | | | | |HIP HIP | +670039 |UZ PsA |214204.3-255136 |LB | 7.27 | 7.40 | |Hp| | | | | |HIP HIP | +670040 |VV PsA |215955.5-313133 |BE | 6.99 | 7.11 | |Hp| | | | | |HIP HIP | +670041 |VW PsA |220442.4-354147 |LB: | 7.50 | 7.75 | |Hp| | | | | |HIP HIP | +670042 |VX PsA |220819.4-343322 |LB: | 6.97 | 7.07 | |Hp| | | | | |HIP HIP | +670043 |VY PsA |221519.0-245927 |EB | 8.81 | 9.01 | |Hp| | | | | |HIP HIP | +670044 |VZ PsA |223851.5-330453 |EA | 5.68 | 5.72 | |Hp| | | | | |HIP HIP | +670045 |WW PsA |224457.9-331502 |BY+UV | 11.81 | 12.16 | |Hp| | | | | |HIP HIP | +670046 |WX PsA |225935.8-292744 |DSCTC | 5.57 | 5.59 | |Hp| | | | | |HIP HIP | +670047 |WY PsA |225951.3-350226 |LB: | 8.71 | 8.87 | |Hp| | | | | |HIP HIP | +670048 |WZ PsA |230528.2-304840 |LB | 8.10 | 8.36 | |Hp| | | | | |HIP HIP | +670049 |XX PsA |213427.9-254233 |SR: | 10.7 | 12.3 | |V | | | | | |77004 DM | +670050 |XY PsA |225754.0-265954 |SR: | 10.5 | 12.2 | |V | | | | | |77004 DM | +670051 |XZ PsA *|212740.0-314744 |EW | 7.73 | 8.12 | 8.04 |V |52437.798 | | 0.753572 | |F3IV/V |78011 DM | +670052 |YY PsA |212737.5-334518 |EA | 11.31 | 12.68 | 11.44 |V |52500.634 | | 1.86244 |14 | |79018 DM | +670053 |YZ PsA |214206.2-252829 |RRC | 11.4 | 11.9 | |V |53146.854 | | 0.31685 |38 | |79064 DM | +670054 |ZZ PsA |215035.2-274836 |EW | 9.28 | 9.56 | 9.54 : |V |52844.790 | | 0.373882 | |F6V |79018 DM | +670055 |AA PsA |223007.5-281012 |RRAB | 12.1 | 13.3 | |V |53630.690 | | 0.512793 |13 | |79064 79204| +670059 |AE PsA *|221555.8-252238 |RRAB | 11.45 | 12.7 | |V |53630.690 | | 0.5467383 |12 | |80377 GSC | NL80_3 +670060 |AF PsA |224226.5-340429 |BY: | 10.0 | 10.3 | |V | | | 11.56 | |G9IIIe |80034 GSC | NL80_3 +679016 |pi. PsA *|230329.8-344458 |CST: | 5.10 | 5.12 | |V | | | | |F0V+F3V |06205 CoD | +680001 |R Pup *|074052.6-313940 |SRD | 6.50 | 6.71 | |V | | | | |G2Ia-0 |09629 CoD | +680002 |S Pup |074643.9-480644 |CST | 7.2 | | |V | | | | |A2 |00237 CoD | +680003 |T Pup |074808.6-403909 |CST | 6.14 | | |V | | | | |M2III |06994 03576| +680004 |U Pup *|080050.5-125029 |M | 8.5 | 15.0 | |V |38882. | | 318.44 |41 |M5e-M8e |00001 00002| +680005 |V Pup *|075814.4-491442 |EB/SD | 4.35 | 4.92 | 4.82 |V |45367.60633 | | 1.4544859 | |B1Vp+B3: |09630 08953| +680006 |W Pup *|074557.4-421144 |M | 7.15 | 13.6 | |V |44956. | | 119.7 |47 |M1e-M6e |00001 00002| +680007 |X Pup *|073247.0-205435 |DCEP | 7.82 | 9.24 | |V |41108.8 | | 25.9610 |15 |F6-G2 |07934 00521| +680008 |Y Pup |081237.4-350847 |SRB | 9.2 | 9.9 | |p | | | 110. : | |M7 |00693 05625| +680009 |Z Pup *|073238.1-203929 |M | 7.2 | 15.3 | |V |43075. | | 508.6 |38 |M4e-M9e |00001 00002| +680010 |RR Pup |074653.9-412227 |EA/SD: | 10.34 | 11.37 | |V |29115.580 | | 6.42963328 |13 |A: |00007 08953| +680011 |RS Pup *|081304.2-343443 |DCEP | 6.52 | 7.67 | |V |35734.426 | | 41.3876 |24 |F9-G7 |00001 02440| +680012 |RT Pup |080520.0-384636 |SRB | 10.2 | 11.0 | |B | | | 100. : | |C6,2(Nb) |00693 03389| +680013 |RU Pup |080729.8-225445 |SRB | 10.3 | 12.2 | |p | | | 425. | |C5,4(N3) |00693 08953| +680014 |RV Pup |064228.4-422217 |M | 9.3 | 13.0 | |p |30093. | | 187.96 |50 |M1e-M9 |01004 03389| +680015 |RW Pup *|060910.0-501228 |M | 8.8 | 14.5 | |V |42360. | | 340.88 |47 |M3e-M6e |08646 05464| +680016 |RX Pup *|081412.3-414229 |ZAND+M | 9.00 | 14.1 | |B | | | | |pec(cont+M5-6e) |09518 08953| +680017 |RY Pup |073102.0-345903 |CST | 9.17 | | |B | | | | |K5 |01266 09520| +680018 |RZ Pup |074508.4-395056 |CST | 8.8 | | |p | | | | |K2 |01266 CoD | +680020 |ST Pup *|064856.4-371633 |CWA | 9.28 | 10.68 | |V |44023.96 | | 19. : | |F2:e-G2I |04678 05625| +680021 |SU Pup |075612.1-440833 |M | 9.3 |< 14.0 | |p |31385. | | 339.8 | |M(S4,2)e |01004 08613| +680022 |SV Pup *|081716.6-134831 |M | 9.0 |< 13.1 | |p |36284. | | 166.52 | |M5e |00001 08073| +680023 |SW Pup *|081850.9-424511 |EA/SD: | 9.0 | 10.1 | 9.1 |p |19282.068 | | 2.7473405 |13 |A0V |00707 03389| +680028 |TU Pup |081705.1-343525 |M | 9.3 | 14.2 | |V |40763. | | 238.95 |49 |M8 |00001 06214| +680030 |TW Pup |062201.3-475357 |E | 11.8 | 12.8 | |p | | | | | |00210 CoD | +680031 |TX Pup |070216.8-413640 |CST | 9.2 | | |p | | | | |F7V |01266 CoD | +680032 |TY Pup *|073246.2-204731 |EW/KE | 8.40 | 8.89 | 8.87 |V |34412.106 | | 0.819235 | |A9n |06215 08953| +680033 |TZ Pup |072959.1-131407 |M | 12.0 | 15.8 | |p |25351. | | 317. |53 |M7 |00412 00531| +680034 |UU Pup |073525.0-131828 |M | 11.8 | 15.5 | |p |25287. | | 282. |53 |M3 |00412 00531| +680035 |UV Pup |073725.9-123845 |SRA | 11.4 | 13.9 | |p |26656. | | 193. |47 |M5 |00412 00531| +680039 |UZ Pup *|074146.1-132338 |EB/KE | 9.35 | 10.34 | 10.0 |V |44613.69829 | | 0.79485120 | |A6+A6 |09543 08667| +680041 |VW Pup *|073149.1-200859 |DCEP | 11.00 | 11.75 | |V |43521.291 | | 4.28537 |22 |F5-G0 |09003 00391| +680042 |VX Pup *|073236.6-215550 |CEP(B) | 7.73 | 8.59 | |V |36237.953 | | 3.01087 |50 |F5-F8 |09649 08953| +680043 |VY Pup *|073350.1-113951 |EB/DW | 10.8 | 11.4 |( 0.04 )|V |26990.434 | | 0.816759 | |F2 |00391 00391| +680044 |VZ Pup *|073835.2-282959 |DCEP | 8.92 | 10.35 | |V |41121.19 | | 23.1710 |17 |F5-G2 |09545 09650| +680045 |WW Pup *|074154.9-210759 |DCEP | 10.03 | 11.03 | |V |41047.29 | | 5.516724 |31 |F5-F9 |01268 00391| +680046 |WX Pup *|074159.0-255234 |DCEP | 8.76 | 9.44 | |V |35042.184 | | 8.937050 |31 |F6-G1 |09667 00391| +680047 |WY Pup |075805.1-240230 |DCEP | 10.18 | 10.96 | |V |40925.40 | | 5.25080 |25 |F5-F9 |02309 00391| +680048 |WZ Pup *|080022.9-234211 |DCEP | 9.85 | 10.76 | |V |34889.465 | | 5.027286 |27 |F5-G2 |09667 00391| +680049 |XX Pup *|080828.2-163200 |RRAB | 10.49 | 11.77 | |V |41773.255 | | 0.517181 |13 |A0-A7 |09334 00391| +680050 |XY Pup *|080934.7-115909 |EA/DS | 9.3 | 11.4 | 9.4 |V |26417.805 | | 13.77830 |10 |A3ea |00185 00391| +680051 |XZ Pup *|081331.1-235711 |EA/SD | 7.75 | 10.26 | 7.90 |V |42412.19458 | | 2.1923631 |21 *|A0 |08593 03579| +680052 |YY Pup *|073552.3-192331 |EA/DS | 9.7 | 11.1 |( 0.05 )|p |24832.540 | | 27.95491 |07 |A0 |00007 00391| +680053 |YZ Pup |074417.1-215157 |SR | 10.5 | 12.5 | |p | | | | |M5-7e |00190 00190| +680054 |ZZ Pup |074826.0-191734 |EA/SD | 9.43 | 11.05 | |V |26783.107 | | 6.33811 |10 *|A2 |00391 00391| +680055 |AA Pup |080136.1-244304 |EA/D: | 10.4 | 11.6 | |p |25652.59 | | 7.0671 |10 *|F8 |00280 00391| +680056 |AB Pup |082113.0-122919 |M | 11. |< 13. | |p |33356. | | 272.6 | |Me |01004 00464| +680057 |AC Pup |082244.2-155459 |LB | 8.9 | 10.1 | |V | | | | |C5,4(N) |00391 00391| +680058 |AD Pup |074803.9-253440 |DCEP | 9.27 | 10.36 | |V |41126.18 | | 13.5940 |25 |F5-G2 |02309 00391| +680061 |AG Pup *|074313.0-214314 |EB | 10.7 | 11.8 | 10.9 |p |26097.315 | | 4.779264 | | |00060 CPD | +680062 |AH Pup *|075656.2-251939 |EA | 10.3 | 11.3 |( 0.05 )|p |25913.930 | | 2.0247 |17 *| |00060 00060| +680064 |AK Pup |080511.5-212021 |RRAB | 12.4 | 14.0 | |p |25998.376 | | 0.512053 |14 | |00194 00194| +680067 |AN Pup *|073005.8-212624 |EA | 10.49 | 11.27 | 10.7 |V |41753.375 | | 2.668238 |16 *| |00001 00391| +680068 |AO Pup |075536.3-393623 |M | 10.2 | 15.2 | |p |25907. | | 390.5 | | |00421 08953| +680069 |AP Pup |075745.7-400724 |DCEP | 7.02 | 7.78 | |V |40689.21 | | 5.0843102 |51 |F5-F7 |07934 08953| +680070 |AQ Pup *|075822.1-290748 |DCEP | 8.08 | 9.39 | |V |44676.57 | | 30.104 |17 |F5Ib-G2Ib |00001 00391| +680071 |AR Pup *|080301.6-363548 |RVB | 8.7 | 10.9 | |p | | | 74.58 | |F0I-II-F8I-II |09673 00368| +680072 |AS Pup *|080939.8-381029 |M | 9.0 | 12.8 | |p |35470. | | 324.65 |50 |M7e-M9 |00001 03389| +680073 |AT Pup *|081222.4-365638 |DCEP | 7.53 | 8.41 | |V |40741.22 | | 6.6650 |29 |F8-G0 |07934 03203| +680074 |AU Pup *|081739.8-414228 |EB/KE | 8.50 | 9.46 | 9.28 |V |39112.9551 | | 1.12640327 | |A0V |05756 03389| +680075 |AV Pup *|082432.3-162411 |EW/DW | 10.5 | 11.1 | 11.0 |V |31178.131 | | 0.5563389 | |F8 |00279 00391| +680076 |AW Pup *|082444.3-284943 |EA/SD | 10.2 | 10.9 | |p |27601.919 | | 0.68108 |35 *| |01272 08953| +680078 |AY Pup *|073837.3-242918 |EW/KW | 11.6 | 12.5 | 12.5 |p |40650.345 | | 0.46896148 | | |00001 00391| +680079 |AZ Pup *|081819.7-345550 |EB | 9.7 | 10.2 | 10.1 |p |28110.870 | | 0.86737053 | | |00007 05625| +680080 |BB Pup *|082422.6-193231 |RRAB | 11.57 | 12.68 | |V |38810.776 | | 0.4805440 |15 |F0-F6 |03908 00391| +680085 |BG Pup |080743.1-204101 |LB | 9.5 | 10.2 | |V | | | | |M2 |00391 00391| +680086 |BH Pup *|080815.2-420148 |EA | 8.4 | 9.1 | |p |21692.523 | | 1.915854 |15 |B3/5III |00707 03389| +680088 |BK Pup *|081058.3-395759 |EA/KE: | 10.4 | 10.7 | |p |26174.678 | | 1.50127 |08 *| |00706 CoD | +680090 |BM Pup |075003.1-281519 |DCEP | 10.43 | 11.27 | |V |30792.566 | | 7.19853 |25 | |03474 03474| +680091 |BN Pup *|080621.5-300549 |DCEP | 9.20 | 10.40 | |V |28078.04 | | 13.6731 |29 |G4 |03551 03581| +680093 |BP Pup *|073013.3-261707 |EB/D | 12.1 | 12.6 | 12.3 |p |28063.947 | | 5.43724 | | |01276 01276| +680094 |BQ Pup *|073115.7-255427 |RRAB | 12.5 | 13.4 | |p |28065.121 | | 0.682323 |26 | |01276 01276| +680095 |BR Pup *|074056.9-253928 |EB/KE | 12.1 | 12.9 | 12.9 |p |26263.5471 | | 1.3395824 | | |00280 00280| +680096 |BS Pup |074214.0-211511 |EA/SD | 11.3 | 12.3 | |p |26378.5404 | | 1.0758889 |12 | |00280 00280| +680106 |CE Pup *|081408.0-423405 |DCEP | 12.5 | 13.6 | |p |26222.20 | | 49.53 |30 | |00280 00280| +680107 |CF Pup |060516.0-490728 |EA/SD | 9.4 | 12.6 | |p |28821.58 | | 7.64556 |08 : | |00016 05464| +680108 |CG Pup |060703.0-464448 |EA/SD | 10.2 | 13.0 | |p |28493.53 | | 1.04957 |15 : | |00016 CoD | +680109 |CH Pup *|064514.1-363213 |M | 7.9 |< 14.0 | |V |40815. | | 505.5 | |Me |00001 02311| +680110 |CI Pup |071021.0-332439 |EA/SD | 11.3 | 12.6 | |p |28514.550 | | 1.65792 | | |00016 02338| +680115 |CO Pup *|082612.0-301708 |CWA | 11.25 | 12.46 | |B |40979.52 | | 16.0192 |45 | |07934 HIP | +680117 |CQ Pup |074557.1-191011 |LB | 10.6 | 11.5 | |p | | | | |MB |00412 00391| +680119 |CS Pup |073435.0-193457 |EA | 12.3 | 13.5 | |p |28062.415 | | 2.659365 |15 *| |01342 01342| +680121 |CU Pup |073506.1-242611 |EA | 11.4 | 12.3 | |p |28063.078 | | 3.33742 |11 *| |01342 01342| +680123 |CW Pup |074130.3-194110 |EA | 12.4 | 13.7 | |p |26337.422 | | 6.049785 |09 | |01345 01345| +680124 |CX Pup *|074153.5-225337 |EA/SD | 12.2 | 15.2 | |p |26363.404 | | 2.6613030 |15 | |01345 01345| +680132 |DI Pup |075640.6-192912 |EA/SD: | 11.8 | 13.0 | |p |25758.194 | | 1.706161 |18 | |01345 01345| +680133 |DK Pup *|075657.8-253105 |EB | 12.5 | 13.0 | 13.0 |p |26363.381 | | 0.9882824 | | |01345 01345| +680138 |DP Pup |081043.1-151947 |M | 11.5 |< 16. | |p | | | | |M8e |00409 00409| +680139 |DQ Pup |072911.2-261032 |SR | 12.4 | 13.2 | |p |27950. | | 550. : | | |00406 00406| +680144 |DV Pup |073741.8-262439 |LB | 11.0 | 11.9 | |p | | | | |M7 |00406 00406| +680146 |DX Pup |080211.1-130106 |SR | 11.5 | 13.1 | |p |31900. | | | |M6-M7 |01351 01351| +680148 |DZ Pup |061244.4-454002 |M | 11. |< 13. | |p | | | | | |00085 CoD | +680149 |EE Pup |073028.2-144435 |M | 12.5 |< 17. | |p |25246. | | 530. | |M1 |00412 02311| +680150 |EF Pup |073318.8-122125 |M | 12.4 | 16.3 | |p |28473. | | 374.8 | | |00412 02342| +680151 |EG Pup |073607.9-263017 |M | 12.0 |< 16. | |p |29706. | | 338.1 | |M8:e |01003 01343| +680153 |EI Pup |073834.7-165755 |LB | 11.1 | 13.0 | |p | | | | |M5-M6.5 |00412 00531| +680154 |EK Pup *|074149.7-250230 |DCEPS | 10.46 | 10.88 | |V |35573.46 | | 2.62594 |45 | |08637 01343| +680157 |EN Pup *|074244.1-263632 |EW | 11.2 | 11.6 | 11.4 |p |26305.551 | | 0.6721498 | | |01343 01343| +680160 |EQ Pup *|074824.1-260527 |EB/KE | 10.2 | 11.0 | 10.9 |p |25653.366 | | 1.14313 | | |00966 09467| +680162 |ES Pup *|075403.1-192018 |SRA | 12.0 | 13.7 | |p |29620. | | 137.66 | | |01343 01343| +680163 |ET Pup |075437.2-280458 |M | 10.6 |< 15.8 | |p |31152. | | 330.4 | |M8 |00001 03551| +680174 |FK Pup *|080911.0-361707 |SR | 12.0 | 15.3 | |p | | | 502. | |C6-,3e(N) |06612 06612| +680175 |FL Pup |081021.1-230047 |M | 12.2 |< 16. | |p |28260. | | 236. | | |03148 02319| +680182 |FS Pup |082228.8-150624 |M | 12. |< 15.5 | |p |27865. | | 765. /N| | |00141 00141| +680184 |FU Pup |074610.1-160603 |EA: | 12.1 | 12.9 | |p | | | | | |03165 00531| +680185 |FV Pup |073236.4-121415 |LB | 11.3 | 11.9 | |p | | | | |M6 |00412 02311| +680186 |FW Pup |073241.8-124627 |LB | 12.2 | 14.2 | |p | | | | |M |00412 02342| +680187 |FX Pup |073302.0-114755 |SRA | 12.0 | 13.6 | |p |25358. | | 139.5 |36 |M6 |00412 02311| +680190 |GG Pup *|073821.1-160319 |LB | 11.99 | 13.5 | |B | | | | |S5,6(M2) |00412 02361| +680202 |GT Pup |071428.4-380350 |SRD | 11.0 | 12.6 | |p |28725. | | 91.7 | |K |02431 03587| +680203 |GU Pup *|072841.1-163502 |EB/DM: | 11.4 | 12.2 | 12.2 |p |25326.359 | | 1.652698 | | |03148 02360| +680207 |GY Pup *|071640.0-395426 |EW/KW | 11.9 | 12.3 | 12.3 |V |34386.642 | | 0.412209 | |Gp |00080 CoD | +680208 |GZ Pup *|071727.1-400743 |EW/KW | 11.7 | 12.2 | 12.1 |V |34398.437 | | 0.320274 | | |00080 CPD | +680209 |HH Pup *|072035.6-464230 |RRAB | 10.44 | 11.78 | |V |38500.2486 | | 0.39074628 |12 |A3II-III-F5 |03588 06286| +680210 |HI Pup *|073338.2-500725 |EW/KW | 10.7 | 11.0 | 11.0 |V |34344.548 | | 0.432651 | | |00080 CoD | +680211 |HK Pup *|074446.8-130556 |RRAB | 11.4 | 12.4 | |p |36608.383 | | 0.7342382 |20 | |09657 02361| +680212 |HL Pup |081110.8-333057 |CEP | 11.1 | 11.8 | |p |30700.58 | | 3.48250 |25 | |03551 03551| +680213 |HM Pup *|071937.7-483913 |EA | 12. | 13.0 | |p |34302.525 | | 2.589697 | | |08040 06561| +680221 |HU Pup |075540.2-283855 |SRA | 11.5 | 13.2 | |p |27100. | | 238. : | |M3 |03148 02361| +680222 |HV Pup |075646.8-202554 |LB: | 11.6 | 12.2 | |p | | | | |M5 |03148 BD | +680223 |HW Pup *|075742.2-273607 |DCEP | 11.9 | 13.3 | |p |40978.52 | | 13.454 |35 | |00001 02319| +680235 |IR Pup |081141.1-211237 |SRB: | 12.5 | 15.5 : | |p | | | 70. : | |C4,3(N) |03148 BD | +680237 |IT Pup |081303.0-282032 |EA/SD: | 11.3 | 12.3 | |p |28611.331 | | 1.336177 |18 *| |03551 03551| +680238 |IU Pup |081430.7-413857 |RR: | 11.5 | 12.0 | |p |34488.328 | | | | |04370 04370| +680239 |IV Pup |081645.3-142641 |LB: | 12. | 13.5 | |p | | | | |C3,5 |04135 04135| +680244 |KK Pup |082354.4-283636 |EA | 12.5 | 13. | |p | | | | | |04341 04341| +680247 |KN Pup |072704.0-273904 |SRA | 11.4 | 12.9 | |p |28990. | | 109. | | |03551 03551| +680248 |KO Pup |072929.7-330814 |M | 12.2 |< 14.4 | |p |28524. | | 313. | | |03474 03474| +680250 |KQ Pup *|073348.0-143126 |LC | 4.82 | 5.17 | |V | | | | |M2epIab+B2V |02301 BD | +680252 |KS Pup |073752.9-332945 |M | 12.5 |< 15.5 | |p |27992. | | 427. | | |03474 03474| +680255 |KV Pup |074719.1-483212 |EA/DM | 9.63 | 10.34 | |V |15793.516 | | 3.667860 |13 *|A0IV |08040 08953| +680256 |KW Pup *|074920.3-150537 |EB/DM | 11.3 | 11.8 | 11.8 |p |25590.613 | | 1.603906 | | |03148 02343| +680258 |KY Pup *|075203.4-264519 |EB/KE | 10.6 | 11.1 | 11.1 |p |28600.290 | | 0.8494608 | |O9.5III |03474 03474| +680259 |KZ Pup |075236.5-172301 |RR | 11.3 | 12.8 | |p | | | | | |00412 04665| +680260 |LL Pup |075348.8-302737 |CEP | 11.2 | 12.3 | |p |28612.03 | | 5.07753 |24 | |03551 03551| +680262 |LN Pup *|075509.1-231024 |EA/D | 12.5 | 13.0 | 12.9 |p |27803.30 | | 3.951299 |08 | |03474 03474| +680265 |LQ Pup |075612.5-323610 |CEP | 12.3 | 13.4 | |p |27425.16 | | 4.51722 |30 | |03551 03551| +680266 |LR Pup |075703.7-280942 |CEP | 11.1 | 12.3 | |p |29631.743 | | 3.33124 |18 | |03551 03551| +680267 |LS Pup |075859.2-291828 |CEP | 9.8 | 10.8 | |p |38376.500 | | 14.1464 |35 | |03992 03551| +680268 |LT Pup *|075942.4-234426 |EA/DM | 12.5 | 12.9 | 12.6 |p |26362.429 | | 1.642693 |06 *| |03474 03474| +680271 |LW Pup |080526.0-264109 |EA/GS | 9.6 | 10.3 | |p |28640.25 | | 59.349 |02 *| |03474 08953| +680272 |LX Pup |080823.3-162817 |CEP | 10.0 | 10.5 | |p |37314.25 | | 13.88 | | |04000 08953| +680273 |LY Pup |081202.9-231636 |EA | 12.2 | 13.0 | |p |27365.463 | | 2.887907 |10 *| |03474 03474| +680277 |MO Pup |073049.4-120252 |EB: | 11.7 | 12.5 | |p |36193.563 | | 1.06 /N| | |03148 02360| +680278 |MP Pup |073108.5-131426 |E | 10. | 10.5 | |p |31090.47 | | | | |05515 05515| +680279 |MQ Pup *|073119.3-380007 |EB/SD | 9.03 | 10.55 | 9.39 |V |44234.5649 | | 1.4685665 | |B9 |00001 08953| +680285 |MW Pup *|075601.7-445447 |EA/DM | 8.8 | 9.2 | 9.2 |p |34336.450 | | 2.398735 | |A0V |05857 08613| +680286 |MX Pup |081329.5-355358 |GCAS | 4.60 | 4.92 | |V | | | | |B1.5III-IVe |08419 05625| +680287 |MY Pup |073818.2-483605 |DCEPS | 5.54 | 5.76 | |V |41043.72 | | 5.69482 |37 |F4Iab |08834 CoD | +680288 |MZ Pup |080416.2-324029 |LC: | 5.2 | 5.44 | |V | | | | |M1IIb |06304 CoD | +680289 |NN Pup |081705.4-312619 |M | 11.5 |< 13.5 | |p | | | | |M7e |00085 02381| +680290 |NO Pup *|082617.7-390332 |EA/KE: | 6.53 | 6.98 | 6.66 |V |41361.7635 | | 1.25689059 |12 *|B8V |09696 CoD | +680291 |NP Pup |065426.7-422156 |LB | 6.25 | 6.52 | |V | | | | |C7,2(N0) |06258 CoD | +680292 |NQ Pup *|075305.3-113729 |LB | 7.55 | 7.68 | |V | | | | |S6,3 |06059 BD | +680294 |NS Pup |081121.5-393707 |LC | 4.4 | 4.5 | |V | | | | |K3Ib |03712 CoD | +680295 |NT Pup |075846.3-385940 |DCEP | 11.0 | 12.0 | |p |38442.354 | | 15.565 |30 | |06847 06847| +680296 |NU Pup |063248.1-435414 |M | 12. |< 13. | |p | | | | |S |00085 02381| +680297 |NV Pup |071818.4-364402 |GCAS | 4.58 | 4.78 | |V | | | | |B3Ve |08419 09697| +680298 |NW Pup *|071838.2-364434 |BCEP+ELL: | 5.11 |( 0.07 )| |V | | | 0.125 | |B3Vea |06840 09697| +680299 |NX Pup *|071928.3-443511 |INA | 10.00 | 11.16 | |V | | | | |A1-F2IIIe |09702 09741| +680300 |NY Pup |072220.9-504923 |L | 12. | 13. | |p | | | | | |00085 02381| +680302 |OO Pup |073338.8-161902 |DCEP: | 12.0 | 13.3 | |p | | | | | |00412 02343| +680303 |OP Pup |073921.5-172049 |RR: | 11.0 | 12.0 | |p | | | | | |00501 07762| +680304 |OQ Pup |073819.4-460240 |EA | 10.5 | 11.5 | |p | | | | | |00085 CoD | +680305 |OR Pup *|075358.7-262056 |LB: | 6.85 | 7.1 | |V | | | | |M7 |07858 07858| +680306 |OS Pup *|081358.3-361920 |GCAS: | 5.07 | 5.2 | |V | | | | |B1.5IV |08387 CoD | +680307 |OT Pup |082211.1-253755 |LB | 9.5 | 10.5 | |p | | | | |M4 |00836 CoD | +680308 |OU Pup *|071313.4-451058 |ACV | 4.86 | 4.93 | |V | | | 0.9183 | |A0p(Si) |08934 CoD | +680310 |OW Pup |073351.0-362018 |GCAS | 5.37 | 5.56 | |V | | | | |B3Vne |08419 CoD | +680311 |OX Pup *|074705.8-391952 |ACV | 6.30 | 6.36 | |V | | | 2.41 | |B9p(Si) |07977 CoD | +680314 |PP Pup |073552.3-463217 |M: | 11.2 | 12.3 | |p | | | | |Me |05829 05829| +680315 |PQ Pup |080837.6-374052 |GCAS | 6.17 | 6.42 | |V | | | | |B4Ve |08419 CoD | +680316 |PR Pup |071446.0-465059 |ACV | 5.69 | 5.74 | |V | | | 1.9347 |40 |A0p(Si) |09743 CoD | +680317 |PS Pup *|073142.7-355316 |ELL | 6.62 |( 0.028 )|( 0.028 )|V | | | 1.3422 | |A0 |08476 CoD | +680318 |PT Pup *|073641.0-194208 |BCEP(B) | 5.72 | 5.74 | |V |44254.151 | | 0.162840 |50 |B2III |09019 BD | +680319 |PU Pup *|073818.1-252153 |EB | 4.69 | 4.75 | 4.74 |V |43100.000 | | 2.57895 | |B9 |08478 CoD | +680320 |PV Pup *|074528.7-144110 |EA/DM | 6.88 | 7.32 | 7.31 |V |43119.73344 | | 1.660728 |10 *|A8V+A8V |09744 BD | +680321 |PW Pup *|074906.0-310743 |EB/GS+SRD | 8.75 | 9.88 | 9.54 |V |45340. | | 158.0 | |F2epIab+B8: |09747 CoD | +680322 |PX Pup |075622.7-301704 |LB: | 6.25 |( 0.42 )| |V | | | | |M6III |06324 04257| +680323 |PY Pup |080029.0-485218 |ACV | 6.12 |( 0.04 )| |V |43196.00 | | 6.82 |50 : |A0p(Si) |08360 CoD | +680324 |PZ Pup |080157.9-351813 |EB/KE | 8.34 | 8.50 | |V | | | 1.085147 | |B5 |08389 CoD | +680325 |QQ Pup |080227.1-444001 |ACV | 6.6 |( 0.06 )| |V |43174.000 | | 2.226 |50 |A0p(Si) |08360 CoD | +680326 |QR Pup |081449.8-420222 |ELL | 8.01 | 8.13 | |V | | | 3.55172 | |B8 |08389 CoD | +680327 |QS Pup *|074912.9-465128 |BCEP | 5.84 | | |V | | | 0.1182 | |B1.5IV |08787 CoD | +680328 |QT Pup *|075034.4-384737 |LB: | 10.17 | 10.82 | |V | | | | |C(N) |07892 04265| +680329 |QU Pup *|075140.4-425318 |BCEP(B) | 6.04 | | |V |43480.713 | | 0.1927 | |B2IV |08787 CoD | +680330 |QV Pup *|075513.3-293906 |LB: | 9.0 | 10.90 | |V | | | | |C(N) |07892 04268| +680331 |QW Pup |071233.6-464534 |ACV | 4.47 |( 0.027 )| |V | | | | | |67198 CoD | +680332 |QX Pup |074216.9-144252 |M | 8.31 | 9.47 | |J | | | | | |67202 2MASS| +680333 |QY Pup |074738.5-155927 |SRD | 6.24 | 6.71 | |V | | | | | |67098 BD | +680334 |QZ Pup |075238.6-385146 |ELL | 4.47 | 4.54 | |V | | | | | |67209 CoD | +680335 |V0335 Pup |075657.7-224932 |DCEPS | 8.59 | 8.83 | |V | | | | | |67212 BD | +680336 |V0336 Pup |080244.8-411835 |ACV | 5.52 |( 0.022 )| |V | | | | | |67064 CoD | +680337 |V0337 Pup |080342.0-292508 |ACV | 7.6 |( 0.03 )| |V | | | | | |67066 CoD | +680338 |V0338 Pup |063455.5-451830 |RRAB | 9.07 | 9.25 | |V | | | | | |68295 CoD | +680339 |V0339 Pup |064612.2-374631 |GCAS | 6.15 | 6.27 | |V | | | | | |68154 CoD | +680340 |V0340 Pup |074855.3-233240 |I: | 11.98 | 12.20 | |V | | | | | |68210 68210| +680341 |V0341 Pup |075521.8-281702 |ACV | 7.2 |( 0.01 )| |V | | | | | |68290 CoD | +680342 |V0342 Pup |075550.1-455848 |SXARI: | 6.7 |( 0.040 )| |V | | | | | |68303 CoD | +680343 |V0343 Pup |073207.6-465633 |SXARI | 8.8 |( 0.04 )| |V | | | | | |69233 CoD | +680344 |V0344 Pup |073613.8-445727 |RS | 6.88 | 6.99 | |V | | | | | |69011 CoD | +680346 |V0346 Pup |081048.9-325205 |M: | 6.30 | 8.03 | |H | | | | | |70075 70076| +680349 |V0349 Pup |072917.1-341017 |DSCTC | 7.49 | 7.53 | |B | | | | | |71072 CoD | +680350 |V0350 Pup |073034.1-340526 |BCEP | 7.48 | 7.52 | |B | | | | | |71073 CoD | +680351 |V0351 Pup |081138.4-350730 |NA | 6.4 |< 12. | |V | | | | | |71075 GSC22| +680353 |V0353 Pup |074634.1-321817 |SR | 3.10 | 3.55 | |J | | | | | |72036 CoD | +680355 |V0355 Pup |080631.0-202004 |DSCTC | 8.5 |( 0.04 )| |B | | | | | |73067 BD | +680356 |V0356 Pup |060817.8-465058 |RS: | 8.33 | 8.46 | |Hp| | | | | |HIP HIP | +680357 |V0357 Pup |063705.1-502858 |LB: | 8.11 | 8.21 | |Hp| | | | | |HIP HIP | +680358 |V0358 Pup |065739.1-411741 |EA: | 9.30 | 9.54 | |Hp| | | | | |HIP HIP | +680359 |V0359 Pup |065818.3-395831 |LB: | 8.88 | 9.04 | |Hp| | | | | |HIP HIP | +680360 |V0360 Pup *|070147.2-353253 |EB: | 6.52 | 6.58 | |Hp| | | | | |HIP HIP | +680361 |V0361 Pup |070753.0-345000 |EW | 8.08 | 8.39 | |Hp| | | | | |HIP HIP | +680362 |V0362 Pup |071039.6-411554 |E: | 7.52 | 7.63 | |Hp| | | | | |HIP HIP | +680363 |V0363 Pup |071225.8-363240 |LPB | 5.89 | 5.91 | |Hp| | | | | |HIP HIP | +680364 |V0364 Pup *|071234.2-361319 |IA: | 8.70 | 9.75 | |Hp| | | | | |HIP HIP | +680365 |V0365 Pup |071906.5-351103 |EA | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +680366 |V0366 Pup |072051.8-483051 |EA: | 8.07 | 8.29 | |Hp| | | | | |HIP HIP | +680367 |V0367 Pup |072402.0-440806 |LB: | 8.36 | 8.46 | |Hp| | | | | |HIP HIP | +680368 |V0368 Pup |072447.4-371728 |DSCTC | 6.20 | 6.23 | |Hp| | | | | |HIP HIP | +680369 |V0369 Pup |072737.0-182948 |ACYG: | 7.66 | 7.76 | |Hp| | | | | |HIP HIP | +680370 |V0370 Pup |072751.0-160538 |BE | 8.47 | 8.59 | |Hp| | | | | |HIP HIP | +680371 |V0371 Pup |072749.4-282216 |LPB | 7.03 | 7.06 | |Hp| | | | | |HIP HIP | +680372 |V0372 Pup |072851.4-301449 |BY: | 9.97 | 10.13 | |Hp| | | | | |HIP HIP | +680373 |V0373 Pup |072928.0-215131 |BE | 7.61 | 7.81 | |Hp| | | | | |HIP HIP | +680374 |V0374 Pup |072930.3-364105 |SRB | 7.28 | 7.50 | |Hp| | | | | |HIP HIP | +680375 |V0375 Pup |073140.6-265405 |LPB: | 8.63 | 8.69 | |Hp| | | | | |HIP HIP | +680376 |V0376 Pup *|073313.2-400331 |EB: | 6.21 | 6.24 | |Hp| | | | | |HIP HIP | +680377 |V0377 Pup |073408.7-505026 |LB | 7.45 | 7.64 | |Hp| | | | | |HIP HIP | +680378 |V0378 Pup *|073603.9-142934 |EB: | 5.60 | 5.68 | |Hp| | | | | |HIP HIP | +680379 |V0379 Pup |073559.6-342528 |ACV | 9.12 | 9.21 | |Hp| | | | | |HIP HIP | +680380 |V0380 Pup |073725.2-333027 |GCAS: | 9.19 | 9.61 | |Hp| | | | | |HIP HIP | +680381 |V0381 Pup |073927.2-113350 |EB | 7.26 | 7.71 | |Hp| | | | | |HIP HIP | +680382 |V0382 Pup |073913.7-293140 |BY: | 11.01 | 11.22 | |Hp| | | | | |HIP HIP | +680383 |V0383 Pup |073954.7-455811 |SRB: | 7.40 | 7.52 | |Hp| | | | | |HIP HIP | +680384 |V0384 Pup |074102.6-314059 |LC | 8.76 | 9.40 | |Hp| | | | | |HIP HIP | +680385 |V0385 Pup |074358.1-282554 |ACV | 8.00 | 8.09 | |Hp| | | | | |HIP HIP | +680386 |V0386 Pup |074343.4-412309 |SXARI: | 8.66 | 8.81 | |Hp| | | | | |HIP HIP | +680387 |V0387 Pup |074347.9-401834 |BE | 6.47 | 6.59 | |Hp| | | | | |HIP HIP | +680388 |V0388 Pup |074429.4-213024 |BE | 9.95 | 10.16 | |Hp| | | | | |HIP HIP | +680389 |V0389 Pup |074436.6-171727 |IA: | 8.17 | 8.35 | |Hp| | | | | |HIP HIP | +680390 |V0390 Pup |074434.2-244027 |EA | 5.53 | 5.62 | |Hp| | | | | |HIP HIP | +680391 |V0391 Pup |074619.4-285438 |DSCTC: | 7.88 | 7.95 | |Hp| | | | | |HIP HIP | +680392 |V0392 Pup |074610.6-375601 |E: | 5.82 | 5.93 | |Hp| | | | | |HIP HIP | +680393 |V0393 Pup *|074618.9-375352 |ELL | 7.69 | 7.73 | |Hp| | | | | |HIP HIP | +680394 |V0394 Pup |074707.4-413103 |SRD | 7.71 | 7.82 | |Hp| | | | | |HIP HIP | +680395 |V0395 Pup |074836.5-304522 |LPB | 7.14 | 7.17 | |Hp| | | | | |HIP HIP | +680396 |V0396 Pup |074908.3-360803 |SRD | 8.79 | 8.99 | |Hp| | | | | |HIP HIP | +680397 |V0397 Pup |074914.7-351436 |EA | 5.91 | 6.09 | |Hp| | | | | |HIP HIP | +680398 |V0398 Pup |074919.6-331947 |ACYG: | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +680399 |V0399 Pup |074928.9-483828 |EA | 9.27 | 9.56 | |Hp| | | | | |HIP HIP | +680400 |V0400 Pup |075105.7-472406 |LB: | 8.41 | 8.52 | |Hp| | | | | |HIP HIP | +680401 |V0401 Pup |075110.8-483652 |EA: | 9.44 | 9.76 | |Hp| | | | | |HIP HIP | +680402 |V0402 Pup |075220.3-262547 |ACYG: | 9.21 | 9.30 | |Hp| | | | | |HIP HIP | +680403 |V0403 Pup |075230.1-215959 |BE: | 9.01 | 9.12 | |Hp| | | | | |HIP HIP | +680404 |V0404 Pup |075450.4-453951 |LPB | 7.29 | 7.32 | |Hp| | | | | |HIP HIP | +680405 |V0405 Pup |075714.8-143107 |EB | 8.72 | 8.92 | |Hp| | | | | |HIP HIP | +680406 |V0406 Pup |075620.8-495855 |LC | 7.39 | 8.15 | |Hp| | | | | |HIP HIP | +680407 |V0407 Pup |075754.1-202543 |SRC: | 6.82 | 7.46 | |Hp| | | | | |HIP HIP | +680408 |V0408 Pup |075905.2-251637 |BE | 9.20 | 9.35 | |Hp| | | | | |HIP HIP | +680409 |V0409 Pup |075948.9-202655 |E: | 8.38 | 8.47 | |Hp| | | | | |HIP HIP | +680410 |V0410 Pup |075945.9-471813 |EB | 6.69 | 6.74 | |Hp| | | | | |HIP HIP | +680411 |V0411 Pup |080015.9-324242 |SRB | 8.28 | 8.62 | |Hp| | | | | |HIP HIP | +680412 |V0412 Pup |080017.4-375046 |LB: | 8.74 | 8.86 | |Hp| | | | | |HIP HIP | +680413 |V0413 Pup |080035.4-452013 |LPB: | 7.62 | 7.69 | |Hp| | | | | |HIP HIP | +680414 |V0414 Pup |080124.6-124736 |ACV: | 8.77 | 8.91 | |Hp| | | | | |HIP HIP | +680415 |V0415 Pup |080202.5-424613 |LPB | 7.86 | 7.89 | |Hp| | | | | |HIP HIP | +680416 |V0416 Pup |080250.5-343245 |SRB: | 7.20 | 7.45 | |Hp| | | | | |HIP HIP | +680417 |V0417 Pup |080350.7-313306 |E: | 9.76 | 10.02 | |Hp| | | | | |HIP HIP | +680418 |V0418 Pup |080438.8-295758 |LB: | 7.32 | 7.47 | |Hp| | | | | |HIP HIP | +680419 |V0419 Pup *|080559.5-315026 |LB: | 11.09 | 11.41 | |Hp| | | | | |HIP HIP | +680420 |V0420 Pup |080819.4-233704 |BE | 6.30 | 6.57 | |Hp| | | | | |HIP HIP | +680421 |V0421 Pup |080939.8-272621 |EB | 9.07 | 9.23 | |Hp| | | | | |HIP HIP | +680422 |V0422 Pup |081012.1-353848 |LB: | 8.93 | 9.04 | |Hp| | | | | |HIP HIP | +680423 |V0423 Pup |081103.4-185827 |ACV | 7.46 | 7.52 | |Hp| | | | | |HIP HIP | +680424 |V0424 Pup |081110.5-265303 |LB: | 8.93 | 9.04 | |Hp| | | | | |HIP HIP | +680425 |V0425 Pup |081150.2-273125 |EB: | 7.81 | 7.97 | |Hp| | | | | |HIP HIP | +680426 |V0426 Pup |081154.8-301243 |BE: | 7.68 | 7.82 | |Hp| | | | | |HIP HIP | +680427 |V0427 Pup |081153.4-354623 |SRB: | 6.46 | 6.82 | |Hp| | | | | |HIP HIP | +680428 |V0428 Pup |081321.9-412451 |SRB | 7.69 | 7.84 | |Hp| | | | | |HIP HIP | +680429 |V0429 Pup |081457.9-174155 |LB: | 8.95 | 9.05 | |Hp| | | | | |HIP HIP | +680430 |V0430 Pup |081540.1-260036 |BY: | 10.13 | 10.26 | |Hp| | | | | |HIP HIP | +680431 |V0431 Pup |081717.6-423118 |E | 7.21 | 7.32 | |Hp| | | | | |HIP HIP | +680432 |V0432 Pup |081922.3-200951 |ACV: | 6.67 | 6.70 | |Hp| | | | | |HIP HIP | +680433 |V0433 Pup |081943.1-181553 |LB: | 9.41 | 9.62 | |Hp| | | | | |HIP HIP | +680434 |V0434 Pup |082010.7-232133 |EA | 7.76 | 8.38 | |Hp| | | | | |HIP HIP | +680435 |V0435 Pup |082023.5-334633 |LB: | 8.33 | 8.43 | |Hp| | | | | |HIP HIP | +680436 |V0436 Pup |082316.9-381710 |LB | 6.28 | 6.40 | |Hp| | | | | |HIP HIP | +680437 |V0437 Pup |082326.5-422508 |LB | 8.72 | 8.92 | |Hp| | | | | |HIP HIP | +680438 |V0438 Pup |082457.2-424611 |EA | 5.90 | 6.07 | |Hp| | | | | |HIP HIP | +680439 |V0439 Pup |082553.2-333351 |SRC | 8.51 | 8.81 | |Hp| | | | | |HIP HIP | +680440 |V0440 Pup |082639.9-301750 |LB | 8.77 | 9.01 | |Hp| | | | | |HIP HIP | +680441 |V0441 Pup |072853.6-260629 |X+BE | 9.6 | 10.9 | |K | | | | | |75216 75217| +680442 |V0442 Pup |074113.3-323838 |ACYG | 7.72 | 7.84 | |Hp| | | | | |75218 CoD | +680443 |V0443 Pup |074550.4-341949 |E/WR | 10.49 |( 0.04 )| |V | | | | | |75067 CoD | +680445 |V0445 Pup |073756.9-255659 |NC: | 8.6 |< 14. | |V | | | | | |76257 USNO | +680447 |V0447 Pup |072950.8-272814 |LB | 12.0 | 12.8 | |V | | | | | |76012 GSC | +680448 |V0448 Pup |073007.4-291602 |SR: | 12.4 | 13.0 | |V | | | | | |76012 GSC22| +680450 |V0450 Pup |073142.3-302736 |SR: | 11.8 | 13.2 | |V | | | | | |76012 GSC | +680451 |V0451 Pup |073205.5-263826 |SR: | 12.0 | 13.1 | |V | | | | | |76012 GSC | +680456 |V0456 Pup |073558.0-181952 |SR: | 11.35 |( 1.0 )| |V | | | | | |76012 GSC | +680457 |V0457 Pup |073559.9-195256 |SR: | 11.8 | 13.0 | |V | | | | | |76012 UCAC2| +680458 |V0458 Pup |073634.8-210647 |SR: | 11.8 | 12.8 | |V | | | | | |76012 GSC | +680459 |V0459 Pup |073713.1-180644 |SR: | 11.9 | 12.4 | |V | | | | | |76012 GSC22| +680467 |V0467 Pup |073942.0-222218 |SR: | 11.2 | 12.5 | |V | | | | | |76012 GSC | +680468 |V0468 Pup |073958.0-373446 |BE | 5.92 | 6.02 | |V | | | | | |76078 DM | +680469 |V0469 Pup |074000.8-224335 |SR: | 11.6 | 12.7 | |V | | | | | |76012 GSC | +680470 |V0470 Pup |074042.8-221036 |M | 12.2 |< 15.0 | |V | | | | | |76012 USNO | +680471 |V0471 Pup |074106.0-262519 |SR: | 12.1 | 14.6 | |V | | | | | |76012 USNO | +680472 |V0472 Pup |074225.7-180909 |SR: | 12.3 | 13.3 | |V | | | | | |76012 USNO | +680473 |V0473 Pup |074231.6-175459 |SR: | 11.20 |( 0.8 )| |V | | | | | |76012 GSC | +680474 |V0474 Pup |074320.2-163101 |SR: | 10.82 |( 0.8 )| |V | | | | | |76012 GSC | +680475 |V0475 Pup |074338.1-315322 |M: | 12.5 |< 15.1 | |V | | | | | |76012 USNO | +680476 |V0476 Pup |074415.1-250417 |SR: | 11.9 | 13.5 | |V | | | | | |76012 USNO | +680479 |V0479 Pup |074652.7-271917 |SR: | 11.8 | 14.2 | |V | | | | | |76012 USNO | +680484 |V0484 Pup |075110.2-175720 |SR: | 12.5 | 14.2 | |V | | | | | |76012 USNO | +680485 |V0485 Pup |075133.9-351405 |SR: | 12.1 | 13.5 | |V | | | | | |76012 GSC | +680486 |V0486 Pup |075205.4-300506 |LB: | 11.5 | 12.1 | |V | | | | | |76012 GSC | +680487 |V0487 Pup |075216.3-242752 |SR: | 11.9 | 13.0 | |V | | | | | |76012 GSC | +680489 |V0489 Pup |075332.6-290234 |SR: | 12.5 | 13.1 | |V | | | | | |76012 GSC | +680491 |V0491 Pup |075356.1-291230 |SR: | 12.3 | 12.9 | |V | | | | | |76012 GSC22| +680492 |V0492 Pup |075405.3-161716 |SR: | 11.2 | 12.7 | |V | | | | | |76012 GSC | +680493 |V0493 Pup |075427.4-340818 |SR: | 11.72 |( 0.7 )| |V | | | | | |76012 GSC | +680494 |V0494 Pup |075427.8-322058 |SR: | 10.9 | 12.0 | |V | | | | | |76012 GSC22| +680496 |V0496 Pup |075517.2-322725 |GCAS: | 11.3 | 12.2 | |V | | | | | |76012 GSC | +680500 |V0500 Pup |075643.0-281516 |SR: | 11.4 | 11.9 | |V | | | | | |76012 GSC | +680503 |V0503 Pup |075808.4-305539 |SR: | 11.6 | 12.3 | |V | | | | | |76012 GSC | +680504 |V0504 Pup |075915.3-312006 |SR: | 11.6 | 12.4 | |V | | | | | |76012 GSC | +680509 |V0509 Pup |080225.5-303216 |SR: | 11.3 | 12.3 | |V | | | | | |76012 GSC22| +680510 |V0510 Pup |080240.7-240443 |SRD: | 11.7 | 12.2 | |V | | | | | |76012 GSC | +680511 |V0511 Pup |080310.7-121409 |SR: | 12.4 | 13.3 | |V | | | | | |76012 UCAC2| +680512 |V0512 Pup |080319.2-313801 |SR: | 11.7 | 12.7 | |V | | | | | |76012 GSC | +680513 |V0513 Pup |080322.2-313012 |SR: | 10.8 | 11.7 | |V | | | | | |76012 GSC | +680514 |V0514 Pup |080330.5-180031 |SR: | 11.7 | 13.0 | |V | | | | | |76012 GSC22| +680515 |V0515 Pup |080342.4-312646 |SR: | 11.4 | 12.2 | |V | | | | | |76012 GSC | +680517 |V0517 Pup |080436.4-313035 |SR: | 12.5 | 13.3 | |V | | | | | |76012 GSC | +680519 |V0519 Pup |080703.5-323845 |SR: | 11.1 | 12.0 | |V | | | | | |76012 GSC22| +680521 |V0521 Pup |080705.1-294744 |SR: | 10.4 | 11.68 | |V | | | | | |76012 GSC22| +680522 |V0522 Pup |080729.0-322332 |SR: | 12.2 | 12.9 | |V | | | | | |76012 GSC22| +680525 |V0525 Pup |080802.9-224256 |SR: | 12.4 | 12.9 | |V | | | | | |76012 GSC22| +680526 |V0526 Pup |080806.6-325712 |SR: | 10.9 | 11.8 | |V | | | | | |76012 GSC22| +680527 |V0527 Pup |080839.6-254322 |SR: | 11.4 | 12.4 | |V | | | | | |76012 GSC | +680528 |V0528 Pup |080904.8-282905 |SR: | 12.0 | 12.9 | |V | | | | | |76012 GSC | +680531 |V0531 Pup |081010.0-293203 |SR: | 10.58 | 11.6 | |V | | | | | |76012 GSC | +680532 |V0532 Pup |081029.1-324720 |SR: | 12.2 | 14.5 | |V | | | | | |76012 GSC22| +680534 |V0534 Pup |081203.4-202139 |SR: | 11.7 | 12.3 | |V | | | | | |76012 UCAC2| +680535 |V0535 Pup |081204.0-200226 |SR: | 12.4 | 13.1 | |V | | | | | |76012 2MASS| +680536 |V0536 Pup |081212.7-311414 |SR: | 12.0 | 13.8 | |V | | | | | |76012 GSC | +680537 |V0537 Pup |081230.6-300905 |SR: | 12.3 | 13.0 | |V | | | | | |76012 GSC | +680540 |V0540 Pup |081436.8-305824 |SR: | 12.1 | 13.4 | |V | | | | | |76012 GSC | +680541 |V0541 Pup |081546.3-342358 |SR: | 12.4 | 13.7 | |V | | | | | |76012 GSC22| +680544 |V0544 Pup |081613.5-323505 |SR: | 11.3 | 12.4 | |V | | | | | |76012 GSC | +680546 |V0546 Pup |081713.2-341715 |SR: | 10.5 | 11.2 | |V | | | | | |76012 DM | +680547 |V0547 Pup |081804.0-282151 |SR: | 11.9 | 13.0 | |V | | | | | |76083 GSC | +680548 |V0548 Pup |081845.6-315111 |SR: | 11.7 | 12.8 | |V | | | | | |76012 GSC22| +680551 |V0551 Pup |082021.0-321357 |SR: | 12.3 |< 14.3 | |V | | | | | |76012 GSC22| +680552 |V0552 Pup |082057.1-191504 |SRD | 9.09 |( 0.5 )| |V | | | | | |76084 DM | +680555 |V0555 Pup |082214.9-180122 |SR: | 12.1 | 14.7 | |V | | | | | |76012 GSC | +680556 |V0556 Pup |082237.4-180313 |SR: | 11.6 | 12.5 | |V | | | | | |76012 GSC | +680557 |V0557 Pup |082253.4-151828 |SR: | 11.3 | 13.7 | |V | | | | | |76012 USNO | +680558 |V0558 Pup |082310.4-331213 |M: | 12.0 |< 14.5 | |V | | | | | |76012 USNO | +680559 |V0559 Pup |082334.5-213145 |SR: | 12.5 | 13.2 | |V | | | | | |76012 GSC22| +680560 |V0560 Pup |082403.1-264459 |SR: | 11.2 | 12.0 | |V | | | | | |76012 DM | +680561 |V0561 Pup |082425.9-242123 |M: | 11.2 | 14.8 | |V | | | | | |76012 GSC22| +680562 |V0562 Pup |082445.9-334514 |SR: | 11.3 | 12.8 | |V | | | | | |76012 GSC22| +680563 |V0563 Pup |082448.6-330731 |SR: | 11.8 | 12.8 | |V | | | | | |76012 UCAC2| +680564 |V0564 Pup |082502.6-252200 |SR: | 11.29 |( 0.8 )| |V | | | | | |76012 DM | +680566 |V0566 Pup |082545.3-331801 |SR: | 12.4 | 13.1 | |V | | | | | |76012 GSC22| +680567 |V0567 Pup |082639.2-132822 |SR: | 11.4 | 12.4 | |V | | | | | |76012 GSC | +680568 |V0568 Pup |082729.8-124326 |SR: | 12.0 | 13.5 | |V | | | | | |76012 UCAC2| +680569 |V0569 Pup |072912.5-192751 |LB | 1.85 | 2.74 | |K | | | | | |77063 77063| +680570 |V0570 Pup |073128.9-261651 |SR: | 10.4 | 12.4 | |* | | | | | |77004 USNO | +680572 |V0572 Pup |081228.4-311452 |X | 10.66 | 11.43 | |K | | | | | |77069 UCAC2| +680573 |V0573 Pup |082135.7-152545 |BY: | 8.75 | 8.98 | |V | | | | | |77053 DM | +680574 |V0574 Pup |074153.6-270638 |NA | 6.93 | 18. : | |V |53332 | | | |pec(Nova) |78320 | +680575 |V0575 Pup *|060446.7-482730 |RS | 6.62 |( 0.04 )| |V | | | 3.3 | |G2V+G5V |78046 DM | +680576 |V0576 Pup |065054.9-372923 |M | 12.4 |< 15.5 | |V |52567 | | 301. | |Me |78040 USNO | +680577 |V0577 Pup |065512.4-360710 |M | 11.5 |< 14.4 | |V |52628 | | 286. | |Me |78090 2MASS| +680578 |V0578 Pup |071705.8-344939 |M | 11.2 |< 14.5 | |V |52748 | | 469. | |M7e |78130 USNO | +680579 |V0579 Pup *|071759.8-412119 |EA | 12.39 | 13.56 | 13.52 |V |52183.820 | | 2.152247 |13 | |78130 GSC | +680580 |V0580 Pup |071905.0-425802 |SRA | 9.7 | 11.5 | |V |52956. | | 350.9 |50 |R |78130 GSC | +680581 |V0581 Pup *|072821.1-364313 |EW | 11.87 | 12.47 | 12.43 |V |52877.892 | | 0.92015 | | |78011 DM | +680582 |V0582 Pup *|073408.3-130222 |EA | 7.86 | 8.13 | 7.94 : |V |52763.433 | | 2.6713 | |B8II/III |78011 DM | +680583 |V0583 Pup |074047.8-240514 |EB | 7.98 | 8.33 | |V |52643.764 | | 0.780408 | |A3III |78011 DM | +680584 |V0584 Pup |075131.4-461554 |SRB | 9.5 | 10.2 | |V | | | 330. : | | |78130 DM | +680585 |V0585 Pup |075909.0-222613 |M | 11.5 |< 14.0 | |V |52400 | | 435. | |M9e |78130 USNO | +680586 |V0586 Pup |080149.4-484656 |M | 11.0 | 14.5 | |V |52920 | | 335. | |Me |78090 USNO | +680587 |V0587 Pup *|080344.2-255445 |EA | 9.11 | 9.32 | 9.25 |V |51928.652 | | 7.2845 | |A3V |78011 DM | +680588 |V0588 Pup *|080632.0-134635 |M | 10.9 |< 14.5 | |V |52770 | | 231. | | |78130 USNO | +680589 |V0589 Pup *|081026.6-353538 |EA | 8.72 | 9.09 | 8.97 |V |51964.603 | | 2.02218 | |B8V |78011 DM | +680590 |V0590 Pup |081539.2-173204 |M | 11.6 | 15.2 | |V |53098 | | 275. | | |78130 78107| +680592 |V0592 Pup |082517.7-342201 |RS | 7.83 | 7.87 | |V | | | 1.35 | |G1V+G3V |78046 DM | +680593 |V0593 Pup |082540.3-221034 |M | 12.5 |< 14.6 | |V |52563 | | 465. : | | |78088 USNO | +680594 |V0594 Pup |082604.2-300641 |RV | 11.0 | 13.4 | |V |53077.7 | | 58.1 | | |78040 GSC | +680595 |V0595 Pup |082627.1-120909 |EA | 12.5 | 13.8 | |V |52388.4972 | | 2.51875 | | |78040 GSC | +680596 |V0596 Pup *|082733.3-205038 |EA/DM | 6.57 | 7.05 | 7.03 |V |44620.65895 | | 4.5961832 |06 *|A1V+A1V |09765 BD | +680599 |V0599 Pup |063658.8-451013 |SRB | 9.1 | 10.6 | |V | | | 136.3 | | |79064 DM | +680600 |V0600 Pup |065111.4-482156 |SRB | 10.3 | 11.5 | |V | | | 132.4 | | |79064 79118| +680601 |V0601 Pup |065546.0-473503 |SRB | 12.1 | 13.7 | |V | | | 104. | | |79100 GSC | +680602 |V0602 Pup |070318.8-442939 |SRA | 11.9 | 13.9 | |V |53836. | | 330. | | |79100 GSC | +680604 |V0604 Pup |071838.2-371330 |EB | 8.32 | 8.37 | 8.34 |V |52946.797 | | 3.5101 | |B8/9III |79003 DM | +680605 |V0605 Pup *|072644.0-443340 |EA | 11.30 | 12.00 | 11.98 |V |52239.762 | | 4.9370 |06 | |79011 79232| +680606 |V0606 Pup |072844.8-442817 |CEP | 11.1 | 11.6 | |V |51871.34 | | 1.43777 |35 | |79064 79232| +680607 |V0607 Pup |073619.1-143532 |EA | 9.13 | 9.65 | 9.39 |V |52520.898 | | 7.24816 |03 |A0V |79009 DM | +680608 |V0608 Pup |073937.2-363012 |EA | 8.12 | 8.44 | 8.18 |V |52566.839 | | 0.953865 |14 |B7V |79011 DM | +680609 |V0609 Pup |074253.2-281305 |SRB | 11.6 | 12.3 | |V | | | 311. | |C |79064 GSC | +680610 |V0610 Pup |074300.6-205611 |EA | 10.35 | 11.04 | 10.99 |V |52706.617 | | 1.563405 |16 |Be |79011 DM | +680611 |V0611 Pup *|074406.1-165558 |EA | 8.11 | 8.35 | 8.33 |V |52540.855 | | 6.3177 |07 |B3IV |79006 DM | +680613 |V0613 Pup |074718.8-192404 |LB | 8.9 | 9.9 | |V | | | | |M4 |79100 79040| +680614 |V0614 Pup |075021.4-232520 |SRA | 11.5 | 12.6 | |V |53791. | | 198. | |M6 |79100 79187| +680615 |V0615 Pup |075245.8-480152 |EA | 8.91 | 8.98 | 8.97 |V |52950.772 | | 3.38771 |16 |B5V |79004 DM | +680617 |V0617 Pup |075448.3-330304 |EA | 10.47 | 11.21 | 10.87 |V |51966.575 | | 3.17970 |18 |OB |79011 DM | +680618 |V0618 Pup |075543.2-444625 |EA | 9.36 | 9.9 : | 9.6 : |V |52655.733 | | 4.53022 |05 |A1/2V |79003 DM | +680619 |V0619 Pup |075621.1-135439 |LB | 11.3 | 13.2 | |V | | | | | |79100 79191| +680620 |V0620 Pup *|075749.9-292303 |DCEP | 12.5 | 13.5 | |p |52167.87 | | 2.586 |30 | |79064 79189| +680621 |V0621 Pup |075809.1-464830 |EB | 10.25 | 11.0 | 10.69 |V |52437.461 | | 0.390386 | | |79011 DM | +680623 |V0623 Pup |075942.1-205327 |EA | 11.88 | 12.75 : | 12.15 |V |53053.678 | | 1.75072 |07 | |79003 79049| +680624 |V0624 Pup *|080041.4-325025 |SRC | 10.6 | 11.0 | |V | | | 85.5 | |M2Iab+B1V |79064 DM | +680625 |V0625 Pup |080150.5-402920 |EW | 9.43 | 10.07 | 10.02 |V |52723.645 | | 0.446394 | |F3V |79018 79232| +680626 |V0626 Pup *|080310.4-381148 |EA | 9.04 | 9.16 | 9.10 |V |47913.248 | | 1.425902 |11 |A0V |79006 DM | +680627 |V0627 Pup |080311.1-175634 |EA | 9.73 | 10.22 | 9.91 |V |52754.550 | | 5.79935 |08 |B5III |79011 DM | +680628 |V0628 Pup *|080453.1-201558 |SRB | 11.7 | 13.2 | |V | | | 129. | | |79100 79187| +680629 |V0629 Pup |080458.8-285139 |DCEP | 12.1 | 13.0 | |V |53861.555 | | 4.1744 |18 | |79064 79189| +680630 |V0630 Pup |080532.8-211147 |LB | 11.5 | 12.9 | |V | | | | | |79100 79065| +680631 |V0631 Pup |080740.3-251951 |LB | 10.2 | 10.7 | |V | | | | | |79100 DM | +680632 |V0632 Pup |080838.0-212057 |SRB | 10.8 | 11.7 | |V | | | 97. : | |M6 |79100 79187| +680633 |V0633 Pup |081006.9-201829 |SRB | 11.6 | 12.6 | |V | | | 67. : | | |79100 79065| +680634 |V0634 Pup *|081548.7-315241 |EA | 9.61 | 9.91 | |V |53413.710 | | 115.481 |03 |F8 |79003 DM | +680635 |V0635 Pup |081800.8-192214 |M | 10.9 |< 14.5 | |V |53854. | | 201. | |M6: |79100 79059| +680636 |V0636 Pup |081930.6-200508 |SRB | 9.6 | 10.6 | |V | | | 84.7 : | |M7 |79100 DM | +680637 |V0637 Pup |081950.5-392854 |EA | 11.28 | 11.95 : | 11.5 : |V |52637.751 | | 2.37050 |05 | |79011 DM | +680639 |V0639 Pup |082202.8-222556 |SRB | 11.5 | 13.0 | |V | | | 800. | | |79100 79189| +680640 |V0640 Pup |082328.4-210916 |EA | 11.66 | 12.14 | 11.72 |V |51899.769 | | 1.80488 |10 | |79004 79049| +680641 |V0641 Pup |082334.9-215749 |SRB | 11.3 | 12.4 | |V | | | 654. | | |79064 79049| +680642 |V0642 Pup *|082338.1-232040 |EA | 10.25 | 10.95 : | 10.95 : |V |51924.692 | | 5.4141 |08 | |79011 DM | +680643 |V0643 Pup |082409.6-215806 |SRB | 10.8 | 11.7 | |V | | | 208. | |C |79100 79187| +680644 |V0644 Pup |082523.8-260504 |EA | 11.73 | 13.0 | 11.85 |V |53438.563 | | 0.885933 |12 | |79009 79065| +680645 |V0645 Pup |082540.0-233925 |LB | 11.6 | 12.5 | |V | | | | | |79100 79187| +680646 |V0646 Pup |075035.6-330624 |FU: | 12.12 | 12.36 | |V | | | | |G0-G2I |80433 GSC | NL80_2 +680647 |V0647 Pup |060747.0-444346 |DSCT | 6.74 | 6.78 | |V | | | 0.1167053 | |F0V |80171 HIP | NL80_2 +680649 |V0649 Pup |064517.3-464207 |EA: | 9.17 | 9.36 | |V | | | 51.3365 : | |B9V |80001 DM | NL80_2 +680651 |V0651 Pup *|070522.9-355320 |EA | 12.20 | 13.25 | 12.4 |V |53121.520 | | 4.0035 |20 |K0V+M1/3V |80048 GSC | NL80_2 +680652 |V0652 Pup *|070958.9-363929 |EW | 9.66 | 9.84 | 9.83 |V |51868.165 | | 0.371829 | |F5V |80036 DM | NL80_2 +680653 |V0653 Pup *|072114.7-463620 |EW | 10.25 | 10.53 | 10.53 |V |51869.0 | | 0.388309 | | |80002 GSC | NL80_2 +680664 |V0664 Pup *|072729.0-505630 |EW | 11.89 | 12.26 | 12.25 |V |51868.317 | | 0.330557 | | |80036 GSC | NL80_2 +680665 |V0665 Pup |072811.9-462604 |SRA | 12.5 | 13.3 : | |V |53905. | | 314. : | | |80256 GSC | NL80_2 +680669 |V0669 Pup |073702.1-193254 |M | 12.4 |< 14.4 | |V |51914. | | 434. | |C |80001 2MASS| NL80_2 +680670 |V0670 Pup *|073821.5-221416 |EA+BE: | 8.83 | 9.00 | 9.00 |V |51950.61 | | 4.44988 |19 |B5IV: |80001 DM | NL80_2 +680671 |V0671 Pup |073904.4-402847 |M | 10.0 | 14.0 | |V |53472. | | 471. | |C |80002 2MASS| NL80_2 +680672 |V0672 Pup |074216.7-295104 |SR | 5.30 | 5.43 | |K | | | 309. | |C |80166 2MASS| NL80_2 +680674 |V0674 Pup *|074536.9-310932 |EW | 10.73 | 11.00 | 10.95 |V |51868.398 | | 0.602926 | | |80036 GSC | NL80_2 +680675 |V0675 Pup *|075046.9-302212 |EA | 10.79 | 12.15 | 10.9 |V |53798.630 | | 3.70821 |12 | |80015 GSC | NL80_2 +680677 |V0677 Pup |075739.6-455141 |M | 12.5 |< 15.0 | |V |53105. | | 330. | | |80256 GSC | NL80_2 +680681 |V0681 Pup |075924.3-410316 |M | 5.8 | 7.8 | |K | | | 519. | |C |80166 2MASS| NL80_2 +680682 |V0682 Pup |080025.5-194211 |M | 4.46 | 6.28 | |K | | | 541. | | |80166 2MASS| NL80_2 +680683 |V0683 Pup *|080112.0-293331 |LPB | 8.28 | 8.36 | |Hp| | | 1.21806 | |B7III/IV |80019 HIP | NL80_2 +680684 |V0684 Pup |080307.1-263431 |M | 7.07 | 7.82 | |K | | | 431. | |C |80166 2MASS| NL80_2 +680685 |V0685 Pup |080457.5-295126 |SR | 6.06 | 6.26 | |K | | | 199. | |C |80166 2MASS| NL80_2 +680686 |V0686 Pup |080706.2-284740 |M | 4.33 | 6.24 | |K | | | 555. | |C |80166 2MASS| NL80_2 +680688 |V0688 Pup |080920.3-362427 |M | 8.06 | 10.17 | |K | | | 832. : | |C |80166 2MASS| NL80_2 +680689 |V0689 Pup |081002.5-330829 |M: | 5.18 | 6.70 | |K | | | 474. : | |C |80166 2MASS| NL80_2 +680690 |V0690 Pup *|081022.3-354623 |EA | 8.92 | 9.01 | 8.96 |V |53856.64 | | 4.89927 |06 |B9IV |80015 DM | NL80_2 +680697 |V0697 Pup *|081048.8-124628 |EB: | 10.95 | 11.08 | 11.06 |V |51630.07 | | 1.964 | | |80295 80295| NL80_2 +680698 |V0698 Pup *|081231.8-363228 |EA | 11.93 | 12.8 | 12.6 |V |53449.625 | | 2.81344 |09 | |80048 GSC | NL80_2 +680699 |V0699 Pup |081243.0-354436 |SRB | 12.1 |< 13.5 | |V | | | 125. | |M6 |80256 GSC | NL80_2 +680701 |V0701 Pup *|081932.9-235810 |RRC | 10.45 | 10.75 | |V |53440.665 | | 0.285665 | | |80301 DM | NL80_2 +680704 |V0704 Pup |082509.6-412003 |M | 4.68 | 6.11 | |K | | | 470. | |C |80166 2MASS| NL80_2 +680705 |V0705 Pup |082629.4-192704 |SRB | 11.8 | 12.6 | |* | | | 78. | | |80001 USNO | NL80_2 +689006 |zet Pup |080335.0-400011 |ACYG: | 2.11 | 2.17 | |Hp| | | | | |75111 CoD | +689015 |omi Pup *|074805.2-255614 |BE: | 4.43 | 4.46 | |Hp| | | | | |HIP HIP | +689016 |pi. Pup |071708.6-370551 |SRD: | 2.80 | 2.87 | |Hp| | | | | |HIP HIP | +689017 |rho Pup *|080732.6-241816 |DSCT | 2.68 | 2.87 | |V |44995.905 | | 0.1408809 |48 |F6IIp |09760 03579| +689018 |sig Pup |072913.8-431805 |ELL: | 3.36 | 3.39 | |Hp| | | | | |HIP HIP | +6892122|L 2 Pup *|071332.3-443823 |SRB | 2.6 | 6.2 | |V | | | 140.6 | |M5IIIe-M6IIIe |09763 08953| +690001 |R Pyx |084530.7-281203 |M | 10.4 | 15.1 | |B |18606. | | 364.7 | |C(R)e |00001 08613| +690002 |S Pyx *|090504.6-250520 |M | 8.0 | 14.3 | |V |43565. | | 206.10 |45 |M3e-M5e |00001 00002| +690004 |U Pyx |082951.8-301933 |SR: | 8.6 | 9.4 | |p | | | 345. : | |K5 |00693 08953| +690005 |V Pyx |085325.6-344909 |SRD | 9.0 | 11.5 | |p | | | 69.6 | |G8IIp |00693 05625| +690006 |W Pyx |083653.8-175816 |SRA | 10.8 | 12.5 | |p |26766. | | 166. | |M5e-M7 |00187 BD | +690009 |Z Pyx |091855.1-251641 |M | 12.2 |< 16.0 | |p |26450. | | 237. | |Me |01353 06286| +690011 |RS Pyx |092052.7-275027 |M | 12.0 | 16.0 | |p |26500. | | 320. | | |01353 09611| +690014 |RV Pyx |092255.4-300305 |M | 12.5 | 16.4 | |p |26130. | | 296. | | |01353 09611| +690017 |RY Pyx |083952.5-175208 |EA | 11. | 12. | |p | | | | | |00190 00190| +690018 |RZ Pyx *|085204.4-272901 |EB/KE | 8.83 | 9.72 | 9.69 |B |38431.474 | | 0.656273 | |B7V |05228 09611| +690021 |SU Pyx *|083200.7-271533 |EA | 11.4 | 12.5 | |V |28952.208 | | 5.06953 |05 | |01219 CoD | +690022 |SV Pyx |092455.5-333713 |EA | 10.0 | 11.0 | |p |28876.52 | | 1.4424 | | |00016 08953| +690023 |SW Pyx |083036.2-230635 |EA | 10.5 |< 12. | |p | | | | | |00975 08953| +690024 |SX Pyx |090319. -355544:|LB: | 11.5 |< 13. | |p | | | | | |00836 02381| +690026 |SZ Pyx |083308.4-175855 |M | 11. |< 12.5 | |p | | | 250. : | |S |00975 00351| +690027 |TT Pyx *|084830.9-260948 |EA | 8.80 | 9.48 | |V |44234.800 | | 1.515778 |30 |B9 |00001 08953| +690028 |TU Pyx |091015.8-195450 |SRB | 9.9 | 10.7 | |p |26042.1 | | 88.0 | |M5 |01354 08953| +690029 |TV Pyx *|090834.7-341041 |EB | 12.1 | 12.5 |( 0.05 )|V |34424.306 | | 0.646765 | | |00080 CoD | +690031 |TX Pyx *|084230.6-322032 |E/KE | 9.5 | 9.9 | 9.8 |p |27844.475 | | 1.123745 | |A3 |05399 CoD | +690032 |TY Pyx *|085942.7-274859 |EA/D/RS | 6.85 | 7.50 | 7.48 |V |43187.2304 | | 3.1985787 |07 *|G5+G5 |09431 08953| +690033 |TZ Pyx *|084108.3-321203 |EW | 10.7 | 11.1 | 11.1 |V |28847.550 | | 0.6973125 | | |05377 CoD | +690035 |UV Pyx |084536.6-250617 |M | 12.0 |< 15. | |p | | | | |Me |04579 USNO | +690037 |UX Pyx |090942.1-281023 |SR | 10. | 11. | |p | | | | |M4 |07897 07897| +690038 |UY Pyx |091232.5-263037 |LB | 9. | 9.5 | |p | | | | |M3 |00190 CoD | +690039 |UZ Pyx *|084636.3-294341 |SRB | 6.99 | 7.47 | |V | | | 100. : | |C5,5J(R8) |06059 CoD | +690042 |VX Pyx |083258.5-343803 |RS | 6.32 | 6.42 | |V | | | | | |69011 CoD | +690043 |VY Pyx |085429.6-233119 |CWB | 7.65 | 8.08 | |B | | | | | |71086 BD | +690044 |VZ Pyx |085919.9-242855 |UG | 12.5 | 16.8 | |V | | | | | |71087 GSC | +690045 |WW Pyx |090432.3-322251 |E | 12.4 | 13.2 | |V | | | | | |71089 71089| +690047 |WY Pyx |083649.0-362736 |M | 9.0 |< 12. | |V | | | | | |73030 73030| +690048 |WZ Pyx |085353.6-244735 |M | 9.35 | 11.64 | |Rc| | | | | |73276 73276| +690049 |XX Pyx |085839.0-243511 |DSCTC | 11.49 |( 0.08 B )| |V | | | | | |73277 CoD | +690050 |XY Pyx |082759.4-350650 |EB | 5.68 | 5.76 | |Hp| | | | | |HIP HIP | +690051 |XZ Pyx |082816.5-225853 |LB: | 9.22 | 9.34 | |Hp| | | | | |HIP HIP | +690052 |YY Pyx |082813.5-271528 |SRA | 9.07 | 9.36 | |Hp| | | | | |HIP HIP | +690053 |YZ Pyx |082843.0-344354 |BCEP: | 7.62 | 7.66 | |Hp| | | | | |HIP HIP | +690054 |ZZ Pyx |082944.5-324459 |LB: | 8.63 | 8.73 | |Hp| | | | | |HIP HIP | +690055 |AA Pyx |083023.6-303044 |ACV | 9.07 | 9.12 | |Hp| | | | | |HIP HIP | +690056 |AB Pyx |083029.8-364317 |LC | 6.58 | 6.89 | |Hp| | | | | |HIP HIP | +690057 |AC Pyx |083128.0-254056 |EA: | 7.80 | 8.10 | |Hp| | | | | |HIP HIP | +690058 |AD Pyx |083501.9-275947 |LB | 8.48 | 8.73 | |Hp| | | | | |HIP HIP | +690059 |AE Pyx |083929.8-215533 |SRD: | 8.17 | 8.25 | |Hp| | | | | |HIP HIP | +690060 |AF Pyx |084017.6-320955 |E: | 8.09 | 8.27 | |Hp| | | | | |HIP HIP | +690061 |AG Pyx |084248.0-344403 |LB: | 8.36 | 8.46 | |Hp| | | | | |HIP HIP | +690062 |AH Pyx |084314.1-340419 |LB | 8.45 | 8.69 | |Hp| | | | | |HIP HIP | +690063 |AI Pyx |084649.2-343723 |IA: | 6.23 | 6.36 | |Hp| | | | | |HIP HIP | +690064 |AK Pyx |084814.6-283820 |LB | 6.09 | 6.51 | |Hp| | | | | |HIP HIP | +690065 |AL Pyx |090106.3-273057 |LB | 7.05 | 7.35 | |Hp| | | | | |HIP HIP | +690066 |AM Pyx |090124.5-304224 |LB: | 8.20 | 8.31 | |Hp| | | | | |HIP HIP | +690067 |AN Pyx |091002.6-212506 |ACV: | 8.25 | 8.30 | |Hp| | | | | |HIP HIP | +690068 |AO Pyx |091447.6-334057 |LB | 8.35 | 8.73 | |Hp| | | | | |HIP HIP | +690069 |AP Pyx |091843.6-340545 |LB: | 7.45 | 7.57 | |Hp| | | | | |HIP HIP | +690070 |AQ Pyx |091904.7-363757 |SRD | 9.10 | 9.36 | |Hp| | | | | |HIP HIP | +690071 |AR Pyx |092538.5-272706 |EB: | 8.72 | 8.97 | |Hp| | | | | |HIP HIP | +690074 |AU Pyx |082922.6-333332 |SR: | 12.1 | 13.0 | |V | | | | | |76012 GSC | +690075 |AV Pyx |083101.2-214738 |M: | 12.2 |< 14.2 | |V | | | | | |76087 2MASS| +690076 |AW Pyx |083152.8-263708 |SR: | 11.2 | 12.5 | |V | | | | | |76012 DM | +690078 |AY Pyx |083206.5-341131 |SR: | 12.4 | 13.0 | |V | | | | | |76012 GSC | +690079 |AZ Pyx |083247.2-341429 |SR: | 11.7 | 12.5 | |V | | | | | |76012 GSC | +690082 |BD Pyx |083603.6-191509 |SR: | 12.4 | 14.5 | |V | | | | | |76012 USNO | +690084 |BF Pyx |083817.9-181439 |SR: | 10.8 | 12.0 | |V | | | | | |76012 USNO | +690086 |BH Pyx |084341.1-323139 |M | 10.1 |< 15.0 | |V | | | | | |76089 76090| +690087 |BI Pyx |085017.8-231844 |SR: | 11.42 |( 0.6 )| |V | | | | | |76012 DM | +690088 |BK Pyx |085120.4-193701 |SR: | 11.45 |( 1.0 )| |V | | | | | |76012 GSC | +690089 |BL Pyx |085902.3-231630 |SR: | 10.8 | 11.4 | |V | | | | | |76012 DM | +690093 |BP Pyx |090353.2-234902 |SR: | 11.96 |( 0.9 )| |V | | | | | |76012 DM | +690096 |BS Pyx |090443.4-200745 |SR: | 11.5 | 12.1 | |V | | | | | |76012 UCAC2| +690100 |BW Pyx |090653.9-244005 |SR: | 9.93 |( 0.5 )| |V | | | | | |76012 DM | +690101 |BX Pyx |090710.3-271650 |SR: | 11.9 | 13.0 | |V | | | | | |76012 GSC | +690102 |BY Pyx |090734.5-273107 |SR: | 10.05 |( 0.6 )| |V | | | | | |76012 DM | +690103 |BZ Pyx |090810.1-281910 |SR: | 11.46 |( 0.7 )| |V | | | | | |76012 DM | +690105 |CD Pyx |090940.5-243759 |SR: | 12.3 | 12.9 | |V | | | | | |76012 GSC | +690106 |CE Pyx |090943.7-271532 |SR: | 11.58 |( 0.7 )| |V | | | | | |76012 DM | +690107 |CF Pyx |091425.9-243157 |SR: | 10.3 | 11.1 | |V | | | | | |76012 DM | +690109 |CH Pyx |091519.9-244416 |SR: | 11.1 | 11.6 | |V | | | | | |76012 DM | +690110 |CI Pyx |091706.0-283557 |SR: | 11.62 |( 0.5 )| |V | | | | | |76012 GSC | +690112 |CL Pyx |092218.6-282750 |SR: | 12.0 | 13.1 | |V | | | | | |76012 GSC | +690113 |CM Pyx |092315.7-284523 |SR: | 11.12 |( 0.6 )| |V | | | | | |76012 DM | +690114 |CN Pyx |083942.0-210856 |M | 10.5 |< 14.5 | |V | | | | | |77217 GSC | +690115 |CO Pyx |084508.9-255908 |M | 12.5 |< 16.0 | |P | | | | | |77077 77077| +690117 |CQ Pyx |091354.0-245125 |M | 4.71 | 7.36 | |K | | | | | |77081 2MASS| +690118 |CR Pyx *|083129.0-310420 |EB | 11.11 | 11.59 | 11.37 |V |51965.60 | | 1.49299 | | |78130 DM | +690119 |CS Pyx |083623.0-300215 |BY | 8.08 |( 0.03 )| |V | | | 13.97 | |G8/K0V |78110 DM | +690120 |CT Pyx |083715.5-172941 |BY | 8.72 |( 0.04 )| |V | | | 16.41 | |K1V |78018 DM | +690121 |CU Pyx *|084402.7-215210 |EA | 12.28 | 14.7 | 12.36 |V |52645.761 | | 3.4331 | | |78112 DM | +690122 |CV Pyx |085835.6-264837 |SRA | 11.7 | 13.5 | |V |53009 | | 250. | | |78130 GSC | +690123 |CW Pyx |090242.4-303243 |M | 11.3 |< 15.0 | |V |52053 | | 326. | | |78040 GSC | +690124 |CX Pyx |090734.0-261400 |SRA | 11.1 | 12.8 | |V |52980 | | 357. | |M6 |78130 GSC | +690125 |CY Pyx *|090817.1-370654 |E: | 8.27 | 8.36 | |V | | | 0.840 | |G3V |78046 DM | +690126 |CZ Pyx *|091809.9-271303 |SRB | 12.3 | 14.0 | |V | | | 97. | | |78130 GSC | +690127 |DD Pyx |091814.6-330139 |SRB | 8.4 | 9.3 | |V | | | 114. | |M6 |78130 DM | +690129 |DF Pyx |092204.5-364209 |M | 10.6 |< 14.3 | |V |52945 | | 333. | | |78130 USNO | +690130 |DG Pyx |092407.0-360550 |SRA | 12.5 | 14.3 | |V |53070 | | 287. | | |78130 GSC | +690131 |DH Pyx |092704.0-345351 |LB | 9.6 | 10.1 | |V | | | | | |78130 DM | +690133 |DK Pyx *|083324.1-343855 |EA | 7.85 | 7.97 | 7.91 |V |48112.955 | | 6.17848 |06 |B3III |79193 DM | +690134 |DL Pyx |084517.6-335821 |EA | 10.09 | 10.61 | 10.53 |V |52814.457 | | 2.56769 |10 | |79011 DM | +690135 |DM Pyx |084605.8-355821 |EA | 9.33 | 9.76 | 9.70 |V |52752.556 | | 3.09154 |08 |A2IV |79011 DM | +690136 |DN Pyx *|092210.2-314753 |EA | 8.45 | 8.55 | 8.55 |V |52764.617 | | 6.64046 |04 : |A0V |79018 DM | +690137 |DO Pyx |083602.8-340734 |M | 4.84 | 6.30 | |K | | | 590. | |C |80166 2MASS| NL80_2 +690138 |DP Pyx |084605.6-274549 |M | 11.6 |< 14.8 | |V |53433. | | 458. | |Ce |80001 2MASS| NL80_2 +690139 |DQ Pyx *|085420.9-354336 |EB | 9.25 | 9.35 | 9.31 |V |53040.812 | | 1.10622 | |B9V |80011 DM | NL80_2 +690141 |DS Pyx |091139.1-362415 |LB | 12.4 |< 13.3 | |V | | | | | |80256 2MASS| NL80_2 +690142 |DT Pyx |091858.5-294237 |UG | 11.6 |< 16.0 | |V | | | | |pec(UG) |80001 80027| NL80_2 +700001 |R Ret *|043332.8-630145 |M | 6.5 | 14.2 | |V |41703. | | 278.46 |48 |M4e-M7.5e |00001 00002| +700003 |T Ret *|040053.4-551545 |SR | 11.4 | 13.2 | |p | | | 59.7 | | |05758 09467| +700007 |X Ret *|032520.1-650319 |RRAB | 11.16 | 12.14 | |V |39438.500 | | 0.4919885 | |A9-F0 |05233 02380| +700014 |RV Ret |034748.5-623056 |M | 11.4 | 16.5 | |p |27400. | | 269.5 | | |00357 09611| +700016 |RX Ret |034739.8-664140 |SRD | 9.1 | 11.2 | |p | | | | |G8-K0II-IIIep |00357 03389| +700017 |RY Ret |035003.4-572114 |SRA | 11.0 | 12.2 | |p |27375. | | 237. | |M3e |00357 08667| +700020 |ST Ret |041741.3-603542 |M | 11.5 |< 15. | |p | | | | | |00085 02385| +700024 |SX Ret |040719.6-602650 |SRB | 9.24 | 9.80 | |V |40622. | | 100. : | |M4-5III |05828 CoD | +700025 |SY Ret |041509.8-665504 |LB | 9.43 | 9.58 | |V | | | | |M2-3 |05828 CoD | +700026 |SZ Ret |035509.9-533032 |SR | 11.5 | 12.5 | |p | | | | | |00085 CoD | +700027 |TT Ret |041621.0-605655 |ACV | 6.37 |( 0.015 )| |V | | | | | |67064 CPD | +700030 |TW Ret |041227.9-650845 |RV: | 7.11 | 7.69 | |J | | | | | |73033 USNO | +700031 |TX Ret |041639.3-641856 |DSCTC | 8.6 |( 0.03 )| |B | | | | | |73067 CPD | +700032 |TY Ret |042401.1-670701 |SR | 6.90 | 7.06 | |J | | | | | |73033 GSC | +700034 |UU Ret |032846.9-595836 |SRB | 9.26 | 9.45 | |Hp| | | | | |HIP HIP | +700035 |UV Ret |033620.5-612929 |LB: | 9.20 | 9.33 | |Hp| | | | | |HIP HIP | +700036 |UW Ret |035029.9-602540 |SRB | 7.76 | 7.92 | |Hp| | | | | |HIP HIP | +700037 |UX Ret |035734.0-542127 |EW | 8.32 | 9.02 | |Hp| | | | | |HIP HIP | +700038 |UY Ret |035940.6-584030 |LB: | 9.53 | 9.68 | |Hp| | | | | |HIP HIP | +700039 |UZ Ret |041103.8-630938 |DSCTC | 9.28 | 9.34 | |Hp| | | | | |HIP HIP | +700040 |VV Ret |042102.4-590950 |LB | 8.59 | 8.77 | |Hp| | | | | |HIP HIP | +700041 |VW Ret |042535.4-604525 |EA | 8.76 | 9.28 | |Hp| | | | | |HIP HIP | +700043 |VY Ret *|032716.8-611533 |EA | 7.89 | 8.47 | 8.43 |V |52898.794 | | 14.21605 | |F5V |79011 DM | +700044 |VZ Ret |032836.9-665513 |EA/RS | 10.85 | 11.26 | 10.9 : |V |53700.7585 | | 2.31981 |05 |G5V |79100 GSC | +700045 |WW Ret |032845.8-604126 |SRB | 10.0 | 11.2 | |V | | | 76. | | |79100 DM | +700046 |WX Ret |033744.6-552347 |SRA | 8.0 | 9.5 | |V |53466. | | 265. | |M6/7III |79100 DM | +709003 |gam Ret |040053.8-620933 |SR | 4.42 | 4.64 | |V | | | 25. | |M4III |06994 09611| +710001 |R Sge *|201403.7+164335 |RVB | 8.0 | 10.4 | |V |43830. | | 70.770 | |G0Ib-G8Ib |00001 00368| +710002 |S Sge *|195601.3+163805 |DCEP | 5.24 | 6.04 | |V |42678.792 | | 8.382086 |31 |F6Ib-G5Ib |08632 08953| +710003 |T Sge |192142.0+174000 |SRB | 10.4 | 11.9 | |p | | | 165.5 | |M4-M6.5 |00366 08953| +710004 |U Sge *|191848.4+193638 |EA/SD | 6.45 | 9.28 | 6.71 |V |17130.4114 | | 3.38061933 |17 |B8V+G2IV-III |08608 08953| +710005 |V Sge *|202014.7+210610 |E+NL | 8.6 | 13.9 | |V |37889.9154 | | 0.514195 | |pec(cont+e) |03593 01361| +710006 |W Sge |191932.4+171219 |M | 8.8 | 14.4 : | |V |44423. | | 278.26 | |M4e-M6.5 |00001 00119| +710007 |X Sge *|200504.9+203853 |SR | 7.0 | 9.7 | |V |25648. | | 196. |50 |C6-,5(N3) |01362 05662| +710011 |RS Sge *|195706.4+195944 |RVB+EA | 11.7 | 15.9 | |p |44861. | | 82.395 | | |00001 00119| +710018 |RZ Sge *|200318.6+170252 |UGSU | 12.2 | 17.42 | |B | | |( 64. ) | |pec(UG) |09703 08852| +710020 |ST Sge |201142.2+203717 |M | 10.0 | 14.9 | |V |45691. | | 192.31 |42 |M4e |00001 00772| +710022 |SV Sge |190811.8+173741 |RCB | 11.5 | 16.2 | |p | | | | |C0-3,2-3(R2) |09704 09772| +710024 |SX Sge |195349.1+182203 |M | 12.3 | 16.3 | |p |30410. | | 475.6 | | |01002 00772| +710025 |SY Sge *|195453.5+181402 |EA/DM | 10.5 | 11.2 | 10.7 |V |33040.460 | | 3.53923 |13 |B2 |00001 00021| +710039 |UZ Sge *|201216.2+192055 |EA/SD | 11.4 | 13.0 | 11.6 : |p |45861.414 | | 2.2157325 |12 *|A3V |00001 02331| +710044 |VZ Sge *|200003.3+173100 |LB | 5.27 | 5.57 | |V | | | | |M4IIIa |06645 05151| +710045 |WW Sge |202031.5+185809 |SRA | 10.7 | 12.6 | |p |26520. | | 221. | |M6 |00911 00470| +710048 |WZ Sge *|200736.5+174215 |UGSU+E+ZZ | 7.0 | 15.53 | |B | | |(11900. ) | |DAep(UG) |09709 09472| +710084 |BF Sge |200223.1+210525 |LB | 10.3 | 12.1 | |B | | | | |C4,4(N3) |00773 02331| +710085 |BG Sge |200245.1+204710 |M | 12.4 |< 15.5 | |p |27638. | | 225. | | |00773 02331| +710091 |BN Sge |200521.3+202653 |M | 12.5 |< 15.9 | |p |30420. | | 315.0 | | |01002 00772| +710092 |BO Sge |200550.1+191439 |LB | 11.9 | 13.7 | |p | | | | |M7 |00773 02331| +710115 |CO Sge |201408.0+174055 |M | 12.5 | 15.5 | |p |27642. | | 190.5 | |M5e |00773 02331| +710121 |CU Sge *|192429.7+162959 |EB/DW | 10.9 | 11.7 | 11.3 |p |42633.473 | | 0.7916749 | |F5 |00001 00156| +710122 |CV Sge |194256.7+181353 |LB | 9.4 | 11.3 | |V | | | | |M4III |00104 00541| +710123 |CW Sge *|195958.0+191045 |EW/DW | 11.0 | 11.8 | 11.7 |p |37501.457 | | 0.660347966 | |F5 |06247 00156| +710128 |DE Sge |200713.5+205011 |EA/SD | 11.9 | 13.6 | |p |28717.445 | | 2.872067 |10 *|A |02514 02350| +710133 |DK Sge *|201352.5+212503 |EW | 12.2 | 13.2 | 13.0 |p |35630.400 | | 0.6218188 | | |09779 02786| +710134 |DL Sge *|190735.2+185720 |EA/SD | 11.4 | 12.2 | 11.5 |p |26089.553 | | 0.8572706 |22 | |06202 04239| +710135 |DM Sge *|191505.9+182552 |EB/DM | 11.0 | 12.0 | 11.6 |p |24822.180 | | 2.775320 | |A0 |04241 04242| +710155 |EL Sge |200057.8+190330 |CST | 11.4 | | |B | | | | |F5 |09716 04283| +710170 |FF Sge *|201143.3+211457 |EA | 12.4 | 13.0 | 13.0 |p |27950.534 | | 2.653854 |13 |A |04027 04291| +710171 |FG Sge *|201156.1+202004 |* | 9.45 | 13.6 | |B | | | | |B4Ieq-K2Ib |09717 05665| +710196 |GN Sge *|201008.4+201710 |EB/KE | 10.3 | 10.6 | 10.6 |p |27596.522 | | 1.437600 | |A4-F0 |05670 05670| +710206 |GX Sge |193110.5+191525 |DCEP | 11.82 | 12.92 | |V |35337.465 | | 12.8996 |33 | |06172 05910| +710207 |GY Sge *|193513.6+191209 |DCEP | 9.84 | 10.60 | |V |44700.50 | | 51.0625 |27 | |09718 05910| +710209 |HH Sge *|200648.3+204156 |SRB | 11.1 | 12.5 | |p | | | | | |07199 02786| +710210 |HI Sge |201658.8+195225 |ISA: | 11.5 | 12.3 | |p | | | | | |07056 07056| +710218 |HR Sge |200058.7+182315 |LB | 10.1 | 10.8 | |p | | | | |M2 |09722 09722| +710220 |HT Sge |192726.6+181745 |ACYG: | 8.07 |( 0.15 )| |B | | | | |B7Ia |08213 BD | +710221 |HU Sge |200342.2+212947 |LB | 7.8 | 8.8 | |p | | | | |M0 |09725 03915| +710222 |HV Sge |190614.1+185201 |M | 11.7 | 14.8 | |I |41558. | | 427. |60 | |08319 08319| +710223 |HW Sge |190656.7+182016 |M | 12.4 | 15.5 | |I |42260. | | 380. |60 |M5 |08319 08319| +710224 |HX Sge |190716.2+181749 |M | 9.1 | 13.5 | |I |41565. | | 355. |30 : |M8 |08319 08319| +710225 |HY Sge |190726.8+175630 |M | 9.2 | 12.8 | |I |42335. | | 295. |40 |M5 |08319 08319| +710226 |HZ Sge |190730.9+181731 |M | 11.2 | 14.3 | |I |42260. | | 353. |50 : |M7: |08319 08319| +710228 |IK Sge |190842.0+184219 |M | 10.2 | 14.0 | |I |42183. | | 430. |40 |M7 |08319 08319| +710229 |IL Sge |190845.1+174122 |M | 10.1 | 12.6 | |I |42385. | | 240. |60 |M6 |08319 08319| +710230 |IM Sge |190846.7+182711 |M | 12.1 | 15.8 | |I |41987. | | 425. |40 | |08319 08319| +710231 |IN Sge |190906.3+183759 |M | 9.7 | 14.1 | |I |41590. | | 340. |30 : |M6 |08319 08319| +710232 |IO Sge |190951.6+174000 |M | 12.3 | 15.0 | |I |42570. | | 437. |40 | |08319 08319| +710235 |IR Sge *|191020.6+174028 |M | 11.5 |< 13.5 | |I |42235. | | 363. | |M2 |08319 08319| +710236 |IS Sge |191036.0+173037 |M | 12.1 | 15.0 | |I |42310. | | 370. |50 : | |08319 08319| +710238 |IU Sge |191043.5+185648 |M | 12.2 : | 15.3 | |I |41690. | | 400. |30 |M7 |08319 08319| +710239 |IV Sge |191046.4+195709 |M | 7.2 | 12.1 | |I |42340. | | 412. |40 |M10 |08319 08319| +710240 |IW Sge |191057.3+174203 |M | 11.4 | 15.2 | |I |42375. | | 330. |45 |M7 |08319 08319| +710241 |IX Sge |191057.1+183432 |M | 12.2 | 14.6 | |I |42140. | | 300. |50 |M8 |08319 08319| +710242 |IY Sge |191103.1+172031 |M | 11.9 | 14.5 | |I |42225. | | 336. |50 |M8 |08319 08319| +710244 |KK Sge |191116.8+175151 |M | 6.3 | 12.1 | |I |41660. | | 438. |40 |M7 |08319 08319| +710246 |KM Sge |191133.5+183613 |M | 10.1 | 14.2 | |I |41655. | | 300. |47 |M7 |08319 08319| +710247 |KN Sge |191138.7+201322 |M | 9.9 | 12.4 | |I |42215. | | 215. |65 |M4 |08319 08319| +710248 |KO Sge |191139.7+200302 |M | 10.1 | 13.2 | |I |42710. | | 295. |45 |M3 |08319 08319| +710249 |KP Sge |191154.2+171840 |M | 11.7 | 14.9 | |I |41650. | | 300. |45 |M6 |08319 08319| +710250 |KQ Sge |191200.0+164210 |M | 11.6 | 14.3 | |I |42340. | | 292. |50 |M5 |08319 08319| +710251 |KR Sge |191228.6+191722 |M | 12.1 | 15.2 | |I |41660. | | 375. : |45 : | |08319 08319| +710253 |KT Sge |191254.7+163955 |M | 10.6 | 14.0 | |I |42310. | | 500. : |55 |M8 |08319 08319| +710254 |KU Sge |191258.0+173600 |M | 12.5 | 15.4 | |I |41630. | | 408. |40 |M3 |08319 08319| +710255 |KV Sge |191259.0+202531 |M | 12.0 : | 16.1 | |I |41670. | | 375. |40 | |08319 08319| +710256 |KW Sge |191326.1+182653 |M | 11.9 | 14.9 | |I |42275. | | 410. |50 |M4 |08319 08319| +710257 |KX Sge |191346.7+175222 |M | 11.8 | 15.1 | |I |42307. | | 260. |45 |M5 |08319 08319| +710260 |LL Sge |191426.4+192009 |M | 9.2 | 11.9 | |I |42470. | | 360. |50 : |M8 |08319 08319| +710261 |LM Sge |191431.7+193129 |M | 12.2 | 14.9 | |I |42350. | | 320. |60 : |M6 |08319 08319| +710262 |LN Sge *|191439.1+173517 |M | 12.0 | 14.6 | |I |41625. | | 410. |30 | |08319 08319| +710263 |LO Sge |191443.9+171802 |M | 12.5 | 14.8 | |I |41565. | | 475. | |M4 |08319 08319| +710264 |LP Sge |191443.8+175535 |M | 10.9 : | 14.4 | |I |41700. | | 410. |60 : |M8 |08319 08319| +710265 |LQ Sge |191452.6+203649 |M | 12.0 | 15.0 | |I |41700. | | 390. |50 | |08319 08319| +710266 |LR Sge |191500.8+200103 |M | 12.4 | 15.5 | |I |42990. | | 395. |50 |M4 |08319 08319| +710267 |LS Sge |191502.9+193056 |M | 11.1 | 14.6 | |I |42345. | | 315. |30 |M8 |08319 08319| +710268 |LT Sge |191513.3+180308 |M | 11.9 | 15.8 : | |I |42240. | | 355. | |M7 |08319 08319| +710270 |LV Sge |191526.8+185747 |M | 10.5 | 14.5 | |I |41700. | | 385. |30 |M8 |08319 08319| +710271 |LW Sge |191538.0+171132 |M | 12.2 | 15.3 | |I |42375. | | 395. |42 |M8 |08319 08319| +710272 |LX Sge |191537.4+191805 |M | 9.8 | 13.8 | |I |42307. | | 260. |40 |M5 |08319 08319| +710273 |LY Sge |191544.5+172047 |M | 12.4 | 15.5 | |I |42340. | | 470. |20 : | |08319 08319| +710276 |MN Sge |191633.9+182253 |M | 7.8 | 12.6 | |I |41625. | | 415. |25 |M8 |08319 08319| +710278 |MP Sge |191640.0+182806 |M | 11.7 | 15.0 | |I |42200. | | 279.4 |30 | |08319 08319| +710279 |MQ Sge |191706.1+173044 |M | 11.3 | 15.0 | |I |42175. | | 212. |30 |M8 |08319 08319| +710280 |MR Sge |191716.0+171933 |M | 11.0 | 15.1 | |I |42690. | | 410. |40 : |M10 |08319 08319| +710283 |MU Sge |191735.0+164451 |M | 12.2 | 15.2 | |I |42330. | | 450. |25 | |08319 08319| +710284 |MV Sge *|191751.5+183413 |M | 10.1 | 15.7 | |I |42339. | | 393. |50 |M6 |08319 08319| +710287 |MY Sge |191759.5+164825 |M | 12.0 : | 14.5 | |I |42390. | | 300. |40 |M6 |08319 08319| +710288 |MZ Sge *|191759.6+183354 |M | 12.3 | 15.7 | |I |42300. | | 311.5 |30 |M4 |08319 08319| +710290 |NO Sge |191759.5+200125 |M | 5.3 | 7.7 : | |I |41575. | | 345. |50 : |M5 |08319 08319| +710291 |NP Sge |191805.3+184822 |M | 12.1 | 16.2 | |I |42338. | | 491.5 |30 | |08319 08319| +710297 |NV Sge |191941.7+192447 |M | 12.4 | 15.2 : | |I |42290. | | 310. |50 : |M8 |08319 08319| +710299 |NX Sge |191949.4+194150 |M | 10.0 | 13.8 | |I |42365. | | 180. |50 |M8 |08319 08319| +710300 |NY Sge |191957.9+181936 |M | 12.5 | 14.8 | |I |42160. | | 313.6 |14 |M9 |08319 08319| +710301 |NZ Sge |192001.3+202126 |M | 10.9 | 14.0 | |I |42180. | | 313. |47 |M6 |08319 08319| +710302 |OO Sge |192004.7+195322 |M | 9.1 | 13.2 | |I |42180. | | 350. |50 |M8 |08319 08319| +710306 |OS Sge |192209.3+181853 |M | 11.5 | 15.9 | |I |42273. | | 515. |40 | |08319 08319| +710308 |OU Sge |192230.2+175823 |M | 11.2 | 14.4 | |I |42400. | | 325. |50 |M8 |08319 08319| +710309 |OV Sge |192245.8+184102 |M | 11.2 | 14.7 | |I |42190. | | 368. |40 : |M6 |08319 08319| +710310 |OW Sge |192255.0+184503 |M | 11.1 | 15.2 | |I |42183. | | 325. |60 | |08319 08319| +710311 |OX Sge |192330.0+184508 |M | 10.6 | 13.9 | |I |42265. | | 390. |40 |M8 |08319 08319| +710313 |OZ Sge |192351.3+171258 |M | 11.8 | 15.2 | |I |42275. | | 367. |50 : |M6 |08319 08319| +710318 |PT Sge *|192549.5+191448 |M | 10.4 | 14.7 | |I |41630. | | 530. |40 |M10 |08319 08319| +710319 |PU Sge |192617.4+180018 |M | 10.5 | 14.4 | |I |42190. | | 320. |50 |M6 |08319 08319| +710320 |PV Sge |192617.0+181216 |M | 7.3 | 9.7 | |I |42549. | | 435. |60 |M6 |08319 08319| +710321 |PW Sge |192636.1+190026 |M | 10.6 | 13.7 | |I |42180. | | 300. |50 |M2 |08319 08319| +710322 |PX Sge |192639.7+174411 |M | 11.0 | 14.7 | |I |42300. | | 425. |40 | |08319 08319| +710323 |PY Sge |192706.0+191934 |M | 9.8 | 14.1 | |I |42280. | | 370. |40 |M10 |08319 08319| +710324 |PZ Sge |192725.8+182639 |M | 12.3 | 15.3 | |I |42710. | | 640. |50 | |08319 08319| +710326 |QR Sge |191130.9+165138 |E:/WR | 11.04 | 11.12 | |V | | | | | |67216 HIP | +710328 |QT Sge |194832.2+181204 |E:/WR | 10.50 |( 0.04 )| |V | | | | | |67219 67220| +710330 |QV Sge |202008.7+164354 |* | 11.2 |( 0.20 )| |B | | | | | |67224 67186| +710331 |QW Sge |194549.6+183650 |ZAND | 12. | 13. | |p | | | | | |69033 69081| +710333 |QY Sge |200754.6+184255 |SRD: | 12.37 | 12.57 | |V | | | | | |70094 70094| +710334 |QZ Sge |195221.8+184019 |E: | 6.16 | 6.23 | |V | | | | | |71190 BD | +710335 |V0335 Sge |201420.6+170055 |SRB | 9.8 | 11.2 | |p | | | | | |71191 71248| +710336 |V0336 Sge |191509.9+174257 |DSCTC | 9.4 |( 0.04 )| |V | | | | | |73279 BD | +710337 |V0337 Sge |194810.5+172406 |M | 7.3 | 9.3 | |K | | | | | |73029 2MASS| +710338 |V0338 Sge |191234.5+165047 |E: | 6.69 | 6.75 | |Hp| | | | | |HIP HIP | +710339 |V0339 Sge *|193812.1+164826 |LC | 8.46 | 8.84 | |Hp| | | | | |HIP HIP | +710340 |V0340 Sge |193925.3+163416 |LC: | 6.37 | 6.47 | |Hp| | | | | |HIP HIP | +710341 |V0341 Sge |194248.3+175806 |GCAS: | 7.67 | 7.84 | |Hp| | | | | |HIP HIP | +710342 |V0342 Sge |194431.6+183519 |SRB | 6.78 | 6.92 | |Hp| | | | | |HIP HIP | +710343 |V0343 Sge |195058.9+165128 |E: | 7.24 | 7.32 | |Hp| | | | | |HIP HIP | +710344 |V0344 Sge |200806.5+163952 |LB | 6.35 | 6.52 | |Hp| | | | | |HIP HIP | +710348 |V0348 Sge |201543.0+191603 |SR: | 11.6 | 13.1 | |p | | | | | |75002 GSC22| +710349 |V0349 Sge |185726.5+194847 |SR: | 10.5 | 12.6 | |* | | | | | |76146 GSC | +710350 |V0350 Sge |190011.6+200354 |SR: | 12.4 | 13.1 | |* | | | | | |76147 USNO | +710351 |V0351 Sge |190017.9+193540 |SR: | 12.1 | 13.6 | |* | | | | | |76147 USNO | +710352 |V0352 Sge |190138.1+190319 |SR: | 12.0 | 13.6 | |* | | | | | |76057 USNO | +710356 |V0356 Sge |190247.5+205240 |SR: | 12.5 | 13.9 | |* | | | | | |77156 GSC22| +710357 |V0357 Sge |194138.3+183429 |SR: | 11.2 | 12.2 | |* | | | | | |77156 2MASS| +710359 |V0359 Sge |185729.9+200528 |M | 11.8 |< 15.2 | |V |53574 | | 364. : | | |78006 2MASS| +710360 |V0360 Sge |185912.6+201438 |SR: | 11.5 | 13.5 | |* | | | | | |78006 2MASS| +710361 |V0361 Sge |185938.6+195900 |M | 11.0 |< 13.3 | |* |51375 | | 365. : | | |78006 2MASS| +710362 |V0362 Sge |185940.0+193011 |M: | 11.8 | 14.2 | |* | | | | | |78006 2MASS| +710363 |V0363 Sge |190222.6+195656 |M: | 11.0 | 13.6 | |* |51410 | | | | |78006 2MASS| +710365 |V0365 Sge |200755.4+173116 |EW | 12.50 | 13.19 | |V |52122.659 | | 0.369132 | | |78286 78286| +710366 |V0366 Sge *|191813.8+173914 |EB | 11.75 | 12.25 | 12.0 |V |51456.676 | | 0.751779 | | |79100 79066| +710367 |V0367 Sge |191953.1+171426 |DCEP | 11.7 | 12.4 | |V |51497.4 | | 4.84188 |27 | |79064 GSC | +710368 |V0368 Sge |195302.2+182535 |EW | 12.20 | 12.55 | 12.48 |V |51482.654 | | 0.41586 | | |79003 GSC | +710370 |V0370 Sge *|200459.9+201328 |EA | 11.70 | 12.3 | 12.22 : |V |52734.943 | | 8.3264 |04 | |79193 GSC | +710371 |V0371 Sge |200935.5+173445 |EB | 11.90 | 12.45 | 12.18 |* |51426.62 | | 0.83334 | | |79025 79049| +710372 |V0372 Sge |200939.6+210444 |BCEP | 8.47 |( 0.03 )| |V | | | 0.164314 | |B0.5III/IV |79164 DM | +710374 |V0374 Sge |201727.9+165304 |EW | 12.33 | 12.87 | 12.87 |V |52464.4087 | | 0.542565 | | |79131 79135| +710375 |V0375 Sge |190758.6+201821 |EA | 10.84 | 11.27 | 11.22 |V |52724.899 | | 2.11434 |12 |G0 |80042 GSC | NL80_3 +710376 |V0376 Sge |191949.5+203236 |LB | 12.1 | 12.6 | |* | | | | | |80062 2MASS| NL80_3 +710379 |V0379 Sge |194547.3+183938 |EB | 10.46 | 10.76 | 10.65 |V |51414.728 | | 2.30593 | |B8 |80042 GSC | NL80_3 +710380 |V0380 Sge *|195415.1+171253 |EB | 10.03 | 10.32 | 10.22 |V |51454.669 | | 1.37599 | |F2 |80042 DM | NL80_3 +710381 |V0381 Sge |200148.7+163045 |DSCTC | 7.81 |( 0.04 )| |B | | | 0.0898874 | |F0 |80363 HIP | NL80_3 +710382 |V0382 Sge |201352.0+213331 |EA | 10.41 | 10.83 : | 10.82 |V |51422.688 | | 2.97575 |09 |F5 |80011 DM | NL80_3 +710383 |V0383 Sge |201514.4+185326 |SR | 12.45 | 12.75 | |* | | | 40. : | | |80120 80120| NL80_3 +719004 |del Sge *|194723.3+183203 |LB: | 3.75 | 3.83 | |V | | | | |M2.5II-III+B9V |07315 BD | +720001 |R Sgr *|191641.8-191828 |M | 6.7 | 12.83 | |V |43371. | | 269.84 |46 |M4e-M6e |00001 00002| +720002 |S Sgr *|191925.9-190125 |M | 9.5 | 16.0 | |V |40478. | | 230.64 |45 |M3e-M4.5e |00001 00002| +720003 |T Sgr *|191614.4-165817 |M | 7.1 | 12.9 | |V |44897. | | 394.66 |47 |S4.5,8e-S5.5,8e |00001 00002| +720004 |U Sgr *|183153.3-190730 |DCEP | 6.28 | 7.15 | |V |30117.925 | | 6.745226 |28 |F5Ib-G1.5Ib |06591 03609| +720005 |V Sgr |183123.4-181545 |CST | 8.1 | | |V | | | | |F2II | BD | +720006 |W Sgr *|180501.2-293448 |DCEP | 4.29 | 5.14 | |V |43374.77 | | 7.59503 |32 |F4-G2Ib |00001 00478| +720007 |X Sgr *|174733.6-274951 |DCEP | 4.20 | 4.90 | |V |40741.70 | | 7.01283 |36 |F5-G2II |00001 00478| +720008 |Y Sgr *|182123.0-185136 |DCEP | 5.25 | 6.24 | |V |40762.38 | | 5.77335 |34 |F5-G0Ib-II |09773 08953| +720009 |Z Sgr |191943.2-205535 |M | 8.4 | 16.0 | |V |39250. | | 450.41 |47 |M4e-M9(Se) |00001 00002| +720010 |RR Sgr *|195556.4-291124 |M | 5.4 | 14.0 | |V |40809. | | 336.33 |43 |M4e-M9e |00001 00002| +720011 |RS Sgr *|181736.2-340626 |EA/SD | 6.01 | 6.97 | 6.28 |V |20586.387 | | 2.4156832 |17 *|B3IV-V+A |01593 00010| +720012 |RT Sgr *|201743.6-390646 |M | 6.0 | 14.1 | |V |42083. | | 306.46 |47 |M5e-M7e |00001 00002| +720013 |RU Sgr *|195842.9-415058 |M | 6.0 | 13.8 | |V |41900. | | 240.49 |43 |M3e-M6e |00001 00002| +720014 |RV Sgr *|182756.1-331929 |M | 7.2 | 14.8 | |V |42621. | | 315.85 |47 |M4e-M9 |00001 00002| +720015 |RW Sgr *|191354.6-185142 |SRA | 9.0 | 11.7 | |V |41931. | | 186.82 |47 |M4II/IIIe-M6III:e|00001 00002| +720016 |RX Sgr *|191432.6-184843 |M | 9.0 | 14.4 | |V |42171. | | 335.23 |49 |M5e |00001 00002| +720017 |RY Sgr *|191632.8-333120 |RCB | 5.8 | 14.0 | |V | | | | |G0Iaep(C1,0) |09797 00002| +720018 |RZ Sgr |201528.4-442438 |SRB | 10.4 |< 13.0 | |p | | | 223.2 | |S4,4ep |00358 00546| +720019 |SS Sgr |183026.1-165349 |SRB | 10.9 | 11.3 | |p | | | | |C3,4(R3/N) |00235 00568| +720020 |ST Sgr *|190129.2-124534 |M | 7.2 | 16.0 | |V |40463. | | 395.12 |44 |C4,3e-S9,5e |00001 00002| +720021 |SU Sgr *|190343.8-224243 |SRB | 8.12 | 8.64 | |V | | | 60. | |M6III |08837 09467| +720023 |SW Sgr *|191952.5-314254 |M | 9.4 | 14.8 | |V |39275. | | 289.9 |51 |M5e-M8 |00001 00002| +720024 |SX Sgr *|184605.3-302920 |EA/SD | 9.51 | 10.72 | 9.62 |V |44048.161 | | 4.15406 |13 |A2 |00001 08953| +720025 |SY Sgr *|181054.3-234135 |INSA: | 9.87 : | 10.12 | |V | | | | |F8 |09800 02428| +720026 |SZ Sgr *|174456.5-183926 |SRB | 11.05 | 11.9 | |B | | | 73. : | |C7,3(Nb) |00236 BD | +720027 |TT Sgr |192534.1-200655 |M | 10.6 |< 17.7 | |p |33845. | | 332.8 | |M4e-M6e |00001 01400| +720028 |TU Sgr |192615.2-352028 |SRB | 11.7 | 13.0 | |p | | | 206. : | |Me |00235 | +720029 |TV Sgr |194411.4-415127 |M | 10.0 |< 13.5 | |p |29064. | | 266.25 | |M7IIIe |00001 08953| +720030 |TW Sgr |191327.0-213340 |M | 9.1 |< 13.5 | |V |36465. | | 220.63 | |M2e-M3e |00001 06286| +720031 |TX Sgr |191359.6-172554 |M | 10. |< 14. | |V |36431. | | 246.73 | |M3e |00001 06286| +720032 |TY Sgr |191742.8-235625 |M | 9.1 | 15.2 | |V |40056. | | 325.41 |44 |M3e |00001 00002| +720033 |TZ Sgr |192004.3-401324 |M | 11.5 |< 14.5 | |p |29058. | | 281.64 | | |00001 GSC | +720034 |UU Sgr |192440.9-391523 |M | 10. |< 14. | |p |30202. | | 267.82 | |M6:e |00235 08953| +720035 |UV Sgr |192929.7-380530 |M | 10.8 | 16.5 | |p |28290. | | 231.41 | |M4 |00001 CoD | +720036 |UW Sgr |194626.1-180906 |SRB | 11.76 | 12.5 | |B | | | | |C6,5-C7,1J(Na) |00235 BD | +720037 |UX Sgr |185454.5-163131 |SRB | 8.9 | 9.6 | |p | | | 100. : | |MB |00235 08953| +720039 |UZ Sgr |175308.7-214556 |M | 12.5 |< 17.0 | |p |29430. | | 222. | |M6 |00478 00478| +720040 |VV Sgr *|175703.0-192017 |M | 12.1 |< 14.8 | |p |20703. | | 401.5 | |M3-M8e |00001 00565| +720042 |VX Sgr *|180804.0-221327 |SRC | 6.52 | 14.0 | |V |36493. | | 732. | |M4eIa-M10eIa |01007 00002| +720043 |VY Sgr *|181204.6-204215 |DCEP | 10.86 | 11.98 | |V |36235.469 | | 13.5572 |34 |F6-G2 |02309 00920| +720044 |VZ Sgr |181508.6-294230 |RCB | 10.8 | 15.0 | |V | | | | |C |08140 08140| +720045 |WW Sgr |182305.7-272529 |M | 12.2 |< 16.5 | |p |34922. | | 208.4 | |M: |00001 02452| +720046 |WX Sgr *|175924.2-172355 |EA/SD | 9.6 | 11.3 | |p |45518.542 | | 2.12927 |14 *|A1 |00001 00279| +720047 |WY Sgr *|180058.7-230156 |EA/SD | 10.2 | 11.1 | 10.3 |p |28752.220 | | 4.670431 |18 *|B9 |01600 00024| +720048 |WZ Sgr *|181659.7-190433 |DCEP | 7.45 | 8.63 | |V |35506.629 | | 21.849708 |31 |F8-K1 |01601 01601| +720049 |XX Sgr *|182444.5-164750 |CEP | 8.41 | 9.28 | |V |35308.449 | | 6.424140 |30 |F6-G2 |09667 01603| +720050 |XY Sgr |181106.4-162809 |EA/SD | 10.7 | 12.2 | |V |19979.373 | | 2.0229225 |17 *|A0 |00279 00279| +720051 |XZ Sgr *|182206.8-251424 |EA/SD | 8.82 | 10.93 | 8.95 |V |41890.6201 | | 3.275555 |11 |A3V+G5IV-V: |08605 00024| +720052 |YY Sgr *|184435.8-192323 |EA/DM | 10.02 | 10.73 | 10.64 |V |19467.0871 | | 2.6284841 |10 *|B8+B8 |01605 00279| +720053 |YZ Sgr |184928.6-164323 |DCEP | 7.02 | 7.76 | |V |35514.301 | | 9.553606 |49 |F6-G2 |09667 03203| +720054 |ZZ Sgr |184942.1-344100 |EA/SD | 10.5 | 12.8 | |p |43344.9859 | | 3.0834829 |15 *|A2 |00243 00243| +720061 |AG Sgr |190734.2-285159 |M | 10.0 |< 14.0 | |p |35015. | | 359.25 | |M5e-M7e |00001 08953| +720062 |AH Sgr |190859.0-122118 |M | 11.0 |< 16.3 | |p |36360. | | 171.4 | |M5e-M7 |00001 06286| +720063 |AI Sgr |181645.1-213449 |EA/DS | 11.8 |< 15.0 | |p |21749.64 | | 8.7736 |11 | |01384 06286| +720064 |AK Sgr |182800.6-164533 |M | 10.8 |< 15.0 | |p |37520. | | 413.15 | |M5e-M9 |00001 07087| +720065 |AL Sgr *|191743.8-172845 |M | 10.5 | 14.7 | |p |32055. | | 78.26 |45 | |00001 01400| +720066 |AM Sgr |192243.0-320803 |M | 10.3 | 14.0 | |p |16665. | | 95. | |Me |00017 08667| +720067 |AN Sgr *|192702.5-183050 |M | 9.9 | 15.0 | |p |36465. | | 337.56 | |M5e-M8 |00001 02446| +720068 |AO Sgr |181213.6-295134 |SRB | 10.1 | 11.5 | |p | | | 143.3 | |M3e |00235 09423| +720069 |AP Sgr *|181302.5-230702 |DCEP | 6.52 | 7.41 | |V |36045.500 | | 5.057875 |22 |F6-G1 |09667 08953| +720070 |AQ Sgr |193419.0-162227 |SRB | 9.1 | 11.4 | |p | | | 199.6 | |C7,4(N3) |00235 08953| +720071 |AR Sgr *|185942.1-234227 |RVA | 9.1 | 13.5 | |p |21113. | | 87.87 | |F5e-G6 |06107 09467| +720075 |AV Sgr *|180448.8-224357 |DCEP | 10.67 | 12.10 | |V |44016.75 | | 15.415 |30 | |00001 00570| +720077 |AX Sgr |180826.5-183308 |SRD | 9.2 | 10.0 | |p | | | 350. : | |G8Ia-M2Ia |00235 08953| +720078 |AY Sgr *|182319.1-183429 |DCEP | 10.10 | 10.92 | |V |40768.53 | | 6.56959 |31 |F6-G1 |09812 01612| +720079 |AZ Sgr |182411.1-303548 |RVA | 11.4 | 12.2 | |p | | | 113.6 | |F5V: |06107 09467| +720080 |BB Sgr *|185059.9-201743 |DCEP | 6.55 | 7.30 | |V |36053.535 | | 6.63699 |34 |F6-G1 |02309 05464| +720087 |BI Sgr |195023.0-155914 |M | 10.8 |< 16. | |p |28289. | | 335.79 | |Me |00001 06286| +720089 |BL Sgr |192858.5-294027 |M | 11.6 |< 17. | |p |19595. | | 288. | |Me |00256 CoD | +720090 |BM Sgr *|193831.3-362214 |M | 10.5 |< 13. | |p |15540. | | 402.7 | |M3e-M5e |00031 08953| +720091 |BN Sgr *|174705.4-280900 |EA | 9.25 | 10.1 | 9.37 |V |35370.493 | | 2.519653 |23 |F6 |03115 00024| +720092 |BO Sgr |194137.9-443638 |M | 12.5 |< 15.0 | |p |13376. | | 290. | |M5e |00017 GSC22| +720093 |BP Sgr |194720.5-442816 |M | 10.4 |< 13.5 | |p |28013. | | 241. | | |00016 08953| +720094 |BQ Sgr *|191414.9-361440 |EA/DS | 9.40 | 11.87 | |V |22224.378 | | 8.019537 |10 |A2n |03115 03611| +720095 |BR Sgr |182012.4-321254 |M | 11.3 | 17.4 | |p |35960. | | 302.8 |26 |M4e |00001 02447| +720098 |BU Sgr |185802.4-223432 |M | 12. |< 16. | |p |25108. | | 313. | |M3e |00001 09467| +720103 |BZ Sgr |195838.5-135654 |CW: | 11.7 | 13.4 | |p | | | | |G:ea |00266 BD | +720105 |CD Sgr *|185329.8-360729 |M | 10.6 | 17.0 | |p |28440. | | 263.08 | | |00001 GSC22| +720130 |DG Sgr |193211.2-313242 |M | 12.0 |< 17. | |p |14192. | | 286. | |Me |01619 UCAC2| +720138 |DP Sgr *|193816.4-321648 |M | 11.0 |< 17. | |p |23704. | | 278.3 | | |00031 GSC | +720144 |DV Sgr *|183936.3-224044 |EA/SD | 10.4 | 11.5 | |p |31281.215 | | 1.862846 |18 |A0 |00001 03612| +720145 |DW Sgr |190209.2-171245 |M | 10.8 |< 13.7 | |p |35036. | | 174.5 |46 |Me |01694 06286| +720151 |EG Sgr *|191423.5-141114 |EA/SD | 11.2 | 12.7 | |p |27395.771 | | 2.486175 |13 |A0 |00001 00279| +720154 |EK Sgr |191552.1-115034 |M | 12.5 |< 14.5 | |p |24714. | | 238.0 | |Me |00001 06286| +720157 |EN Sgr |192242.1-135956 |M | 11.5 |< 15. | |p |24747. | | 254.5 | | |00001 06286| +720166 |EW Sgr |193459.6-123548 |M | 12.0 |< 16. | |p |30193. | | 271.3 | | |00001 06286| +720167 |EX Sgr |193523.2-140406 |M | 12.0 |< 16. | |p |29858. | | 218.1 | | |01623 06286| +720169 |EZ Sgr |193752.2-140808 |M | 12.0 | 16. : | |p |24686. | | 248.6 | |Me |01623 06286| +720171 |FG Sgr |194439.7-122402 |M | 11.9 | 16.0 | |p |25853. | | 232.5 | |M6: |01623 06286| +720174 |FK Sgr |174548.1-160709 |M | 12.5 |< 16. | |p |29819. | | 180.2 | |M7e-M9: |01623 06286| +720177 |FN Sgr |185354.8-185941 |ZAND | 9. | 13.9 | |p | | | | |pec(e) |01060 06478| +720178 |FO Sgr |185831.5-350340 |M | 11.3 |< 16. | |p |13805. | | 355. | | |00246 GSC | +720180 |FQ Sgr |190736.7-170118 |M | 10.1 |< 16.0 | |p |25740. | | 434. | |M8e |04233 04233| +720181 |FR Sgr |194844.3-155823 | | 12.5 | 14.0 | |p | | | | | |01627 06286| +720182 |FS Sgr |195359.7-173038 |M | 11.0 |< 16. | |p |24718. | | 255.6 | |M7: |00001 06286| +720183 |FT Sgr |180031.9-343830 |M | 11.5 | 17.0 : | |p |28645. | | 250.9 | |Me |00001 00296| +720187 |FX Sgr |181028.1-365322 |M | 12.5 | 16.5 | |p |24030. | | 178.0 | | |00251 06286| +720191 |GH Sgr |181543.9-341125 |M | 12.4 |< 16.5 | |p |26550. | | 336. | |Me |00251 GSC22| +720192 |GI Sgr |181653.2-362750 |M | 11.7 | 17.5 | |p |36729. | | 245.91 | | |00001 06286| +720195 |GM Sgr |181921.5-252538 |NL: | 12.4 |< 17. | |B | | | | | |08519 08519| +720203 |GU Sgr *|182415.6-241526 |RCB | 11.33 | 15.0 | |B | | | | |C(R0) |02569 05464| +720230 |IM Sgr |183202.3-251323 |M | 11.8 |< 17. | |p |34985. | | 276.0 | |M9e |00001 06278| +720231 |IN Sgr |183221.2-274709 |M | 12.2 |< 16.2 | |p |27220. | | 210. | |Me |02515 GSC | +720232 |IO Sgr |183250.2-250803 |M | 12.5 |< 15.5 | |p |29050. | | 210. | | |02515 2MASS| +720238 |IU Sgr |183525.4-311747 |M | 12.3 | 17.6 | |p |41100. | | 268.9 | |Me |07087 06274| +720240 |IW Sgr |183618.9-302950 |M | 11.5 |< 16.3 | |p |34163. | | 345.2 | |M8e |02431 02447| +720256 |KW Sgr |175200.7-280121 |SRC | 11.0 | 13.2 | |p | | | 670. | |M0I-M4Ia |00478 02448| +720261 |LM Sgr |181845.1-362204 |M | 11.0 |< 17.0 | |p |24740. | | 418. | | |00251 06286| +720262 |LN Sgr *|182315.9-332633 |M | 10.5 |< 17. | |p |13705. | | 194.3 | | |00017 08073| +720264 |LP Sgr |182800.9-274025 |M | 12.4 |< 16.0 | |p |28774. | | 222. | |Me |00001 06278| +720268 |LT Sgr |183250.3-251802 |M | 12.3 |< 15.6 | |p |29740. | | 262. | |M3 |02515 UCAC2| +720277 |MO Sgr |184021.1-283500 |M | 12.0 | 15.5 | |p |28016. | | 298.8 | |Me |00001 GSC | +720283 |MU Sgr |184421.0-280737 |M | 12.3 | 17. | |p |21066. | | 380. | | |00256 GSC22| +720284 |MV Sgr *|184432.0-205713 |RCB | 12.0 | 16.05 | |B | | | | |B2p(HDCe) |02569 08613| +720293 |NR Sgr |184732.8-235656 |SR | 12.5 |< 15.5 | |p |25900. | | 183. | |C |05594 00245| +720299 |NX Sgr |185034.4-233608 | | 12.5 | 16.0 | |p | | | | | |01632 GSC | +720303 |OP Sgr |185323.6-262012 |M | 12.5 | 16.5 | |p |26260. :| | 303. : | |Me |00245 00245| +720311 |OX Sgr |185457.1-252630 |M | 12.0 |< 17.0 | |p |25817. | | 348. | |M2e |00245 00245| +720327 |QS Sgr |190229.1-274019 |M | 11.6 |< 15.0 | |p |30210. | | 158.01 | |Kep-Me |00235 02460| +720333 |QY Sgr |190348.8-265902 |M | 11.1 |< 15.8 | |p |29100. | | 192. | |Me |00245 00245| +720334 |QZ Sgr |190413.8-310536 |M | 11.8 |< 16. | |p |25748. | | 408. | |Me |00245 00245| +720338 |V0338 Sgr |190838.2-313411 |M | 12.2 |< 16.2 | |p |25759. | | 176. | |Me |00245 00245| +720339 |V0339 Sgr |190909.3-232438 | | 12.0 |< 16.5 | |p | | | | | |01631 USNO | +720344 |V0344 Sgr |191612.1-311637 |M | 10.5 | 14.2 | |V |54963. | | 133. | | |00001 00245| +720345 |V0345 Sgr |192022.1-332500 |M | 12.0 | 16.7 | |p |20748. | | 141. | |Me |00256 08667| +720347 |V0347 Sgr |193244.8-321415 |M | 12.5 |< 16.5 | |p |20043. | | 209. | | |00256 | +720348 |V0348 Sgr *|184020.0-225430 |* | 11.2 | 18.4 | |V | | | | |pec(HDCe)/WC10: |09825 00002| +720349 |V0349 Sgr |184234.9-215957 |M | 12.5 |< 16.4 | |p |25750. | | 231. | |Me |02449 00744| +720350 |V0350 Sgr *|184517.5-203851 |DCEP | 7.08 | 7.83 | |V |35317.227 | | 5.15424 |28 |F5-G2Ib |02309 10202| +720352 |V0352 Sgr |190216.9-205208 | | 11.8 | 13.1 | |p | | | | | |00744 00744| +720353 |V0353 Sgr |191155.9-194125 | | 10.8 | 12.2 | |p | | | | |MA |03749 00744| +720354 |V0354 Sgr *|191323.4-182900 |EA/DS | 11.2 | 13.5 | |p |31281.34 | | 8.57928 |08 |F8 |00279 05449| +720355 |V0355 Sgr |182422.4-165457 |ISA: | 9.0 | 10.6 | |p | | | | |A7V |03725 08953| +720356 |V0356 Sgr *|184752.3-201628 |EA/DS: | 6.84 | 7.66 | 7.24 |V |33900.827 | | 8.89610 |12 |B3V+A1II |02185 05464| +720359 |V0359 Sgr |190351.6-122551 |LB | 10.8 | 12.7 | |p | | | | |K-M |00270 | +720360 |V0360 Sgr |193542.7-124731 |SR: | 12.3 | 14.8 | |p |29814. | | 165. | |M7 |01623 06286| +720361 |V0361 Sgr |194438.1-134506 |M | 11.8 | 16.5 | |p |30188. | | 363.4 | |M3III |01004 09827| +720383 |V0383 Sgr |185114.0-321519 |CWA | 12.23 | 13.22 | |V |26068.28 | | 16.449 |32 |F2 |00046 00243| +720410 |V0410 Sgr *|190603.0-182541 |CWA | 12.15 | 13.16 | |V |38244.352 | | 13.77333 |41 |F6:-G2 |05375 00048| +720415 |V0415 Sgr |190737.1-233709 |EA/SD | 12.3 | 15.3 | |p |26117.20 | | 6.50692 |14 *| |01639 01639| +720440 |V0440 Sgr *|193220.8-235113 |RRAB | 9.60 | 10.80 | |V |41509.445 | | 0.47747883 |14 |A4-F8 |07984 02455| +720444 |V0444 Sgr |183906.7-334802 |M | 11.5 | 17.3 | |p |36808. | | 195.8 | |Me |00001 00244| +720505 |V0505 Sgr *|195306.4-143612 |EA/SD | 6.46 | 7.51 | 6.63 |V |44461.5907 | | 1.18287156 |20 *|A2V+F6: |00001 08953| +720523 |V0523 Sgr *|190254.6-290834 |EA/DM | 9.57 | 9.90 | 9.88 |V |15800.762 | | 2.3238102 |12 *|A5 |02453 06617| +720524 |V0524 Sgr *|195314.5-145439 |EA | 11.0 | 12.4 | 11.2 |p |29236.077 | | 4.11621717 |12 |F8III |00007 BD | +720525 |V0525 Sgr *|190713.5-300938 |EB/KE | 8.28 | 8.93 | 8.51 |V |29662.4593 | | 0.70512200 | |A2 |01646 08953| +720526 |V0526 Sgr *|190815.0-312055 |EA/DM | 9.78 | 10.54 | 10.20 |V |22054.0856 | | 1.9194111 |12 |A0 |05764 00010| +720540 |V0540 Sgr |180004.3-355539 |LC | 9.4 | 10.8 | |p | | | | |M5Iab |00236 08613| +720541 |V0541 Sgr |180003.4-351145 |SR | 12.3 | 14.3 | |p |28390. | | 142. | | |02448 02448| +720561 |V0561 Sgr |180156.4-351137 |M | 12.5 |< 17.5 | |p |28590. | | 450. | | |02448 02448| +720573 |V0573 Sgr *|180334.3-355700 |EB | 12.2 | 12.8 | 12.7 |p |28401.277 | | 0.977056 | | |05590 05590| +720618 |V0618 Sgr |180757.2-362952 |RCB | 11.0 |< 16.5 | |p | | | | | |00251 08087| +720626 |V0626 Sgr *|180834.8-345643 |CWA | 11.64 | 12.77 | |V |35113.113 | | 26.745 |24 | |02309 06286| +720659 |V0659 Sgr |181155.4-362427 |SR | 12.3 | 14.0 | |p | | | | |S6,8(N) |05869 08087| +720675 |V0675 Sgr *|181335.4-341902 |RRAB | 9.80 | 10.76 | |V |28387.244 | | 0.6422893 |14 |A5-F6 |03126 02447| +720683 |V0683 Sgr *|181424.2-364607 |E | 12.0 | 12.7 | 12.5 |p |26154.500 | | 0.58361 | | |00251 08087| +720687 |V0687 Sgr *|181432.5-342235 |E | 11.9 | 12.7 | 12.2 |p |26154.500 | | 0.64615 | | |00251 06286| +720714 |V0714 Sgr |181728.9-350527 |I | 12.0 | 13.2 | |p | | | | | |00251 06286| +720719 |V0719 Sgr |181819.6-352455 |I | 11.5 | 12.4 | |p | | | | | |00251 06286| +720721 |V0721 Sgr *|181811.8-353343 |SRB | 12.0 | 14.0 | |p | | | 120. | | |05869 06286| +720725 |V0725 Sgr *|181159.4-360640 |* | 12.3 | 14.3 | |B | | | | |G5I-III |01655 06290| +720733 |V0733 Sgr |190008.2-181510 |M | 11.2 | 14.4 | |p |30262. | | 100.9 |50 | |01658 01659| +720741 |V0741 Sgr |182046.0-294847 |CWA | 12.12 | 13.36 | |V |36213.58 | | 15.16817 |38 | |06743 09423| +720742 |V0742 Sgr |183941.0-364841 |M | 11.3 | 17.7 | |p |36752. | | 313.1 | |M1e |00001 04229| +720745 |V0745 Sgr *|175519.0-290754 |M | 12.0 |< 17.0 | |p |29150. | | 380.2 | |Se(M) |00478 00296| +720752 |V0752 Sgr *|174758.1-262539 |EA/DM: | 12.2 | 12.8 | 12.7 |p |23914.865 | | 1.919606 |13 | |00478 00478| +720756 |V0756 Sgr |174848.9-215252 |RRAB | 11.7 | 12.8 | |p |29434.550 | | 0.5239687 |35 : |F5: |03506 00478| +720760 |V0760 Sgr *|175010.8-225053 |RVA | 12.0 | 13.6 | 13.4 |p |27987.40 | | 45.28 | |G5 |00478 00478| +720766 |V0766 Sgr *|175157.0-281702 |EA | 11.0 | 12.9 | |p |26566.70 | | 147.105 |06 |A6/9(e) |00478 00478| +720768 |V0768 Sgr *|175257.7-281335 |EA/KE: | 12.5 | 13.2 | 13.0 |p |24681.735 | | 1.155664 |21 *| |00478 00478| +720771 |V0771 Sgr |175328.4-244628 |GCAS | 8.9 | 9.38 | |B | | | | |B0ne |00478 00478| +720773 |V0773 Sgr *|175417.6-264530 |DCEP | 12.00 | 12.72 | |V |44024.38 | | 5.748445 |28 | |00001 00296| +720774 |V0774 Sgr |175426.1-231410 |LB | 12.5 | 13.9 | |p | | | | |M5 |00478 00478| +720776 |V0776 Sgr |175513.2-280022 |LB | 10.6 | 11.1 | |p | | | | |M0-M1 |00478 00478| +720777 |V0777 Sgr *|174625.4-261201 |EA/GS | 10.42 | 10.7 | |B |29411.7 | | 936.07 |06 |K5Ib+A |01600 00478| +720778 |V0778 Sgr *|175512.4-244145 |EA/D | 11.7 | 12.2 | 12.1 |p |27516.54 | | 4.057602 |10 | |00478 00478| +720779 |V0779 Sgr *|175537.1-281800 |EW/KW | 11.5 | 12.1 | 12.0 |p |28640.4664 | | 0.4450342 | |F8 |02448 02448| +720781 |V0781 Sgr |175557.5-280151 |LB | 12.5 | 14.0 | |p | | | | |C(N0) |00478 00478| +720782 |V0782 Sgr *|175637.4-274952 |EA | 12.4 | 13.2 | |p |28638.54 | | 2.529897 |05 | |00478 00478| +720784 |V0784 Sgr *|175712.4-255833 |EB/DM: | 12.1 | 12.8 | 12.8 |p |27141.62 | | 1.81916 | | |00478 00478| +720786 |V0786 Sgr *|175911.5-280840 |EA | 11.4 | 13.0 | |p |28691.8 | | 155.90 |04 | |00296 00296| +720789 |V0789 Sgr *|175953.1-280926 |EA/D | 12.3 | 13.0 | 12.7 ? |p |28747.306 | | 2.552340 |10 *| |02448 02448| +720792 |V0792 Sgr *|180304.7-225150 |EB/D | 11.7 | 12.4 | 12.2 |p |28807.27 | | 3.930956 | | |00478 00478| +720794 |V0794 Sgr *|180428.3-290815 |RV | 12.4 | 15.6 | |p |28395. | | 175.2 | |M3eIa-M4Ia |00478 00296| +720795 |V0795 Sgr |193839.5-450037 |EA/SD: | 11.3 |< 13.3 | |p |28074.21 | | 1.35191 |20 : | |00016 CoD | +720796 |V0796 Sgr |194639.9-402723 |RRAB | 11.6 | 12.3 | |V |34238.388 | | 0.625566 |20 | |00080 06286| +720866 |V0866 Sgr |191217.3-265608 |RRAB | 12.4 | 13.5 | |p |26356.592 | | 0.5973433 |15 | |01598 01598| +720896 |V0896 Sgr |192056.2-310257 |EA/SD: | 12.3 | 14.2 | |p |25962.957 | | 1.091379 |20 *| |01598 01598| +720911 |V0911 Sgr |183404.0-322128 |M | 11.0 |< 19.5 | |p |36050. | | 285.56 | |M4e |00001 08073| +720912 |V0912 Sgr |183434.2-323310 |M | 11.9 | 18.4 | |p |36663. | | 219.25 |35 : |Me |00001 02447| +720915 |V0915 Sgr |184132.6-290404 |M | 11.0 |< 17. | |p |33860. | | 281.8 | | |00848 02460| +720917 |V0917 Sgr |184849.6-364201 |M | 11.5 | 16.5 | |p |20713. | | 205. | | |00256 08613| +720919 |V0919 Sgr *|190345.1-165955 |ZAND: | 12.0 |< 14.2 | |p | | | | |Mep |01659 09822| +720922 |V0922 Sgr |191117.1-335828 |M | 11.0 | 17.0 | |p |18889. | | 279. | | |00256 UCAC2| +720924 |V0924 Sgr |191837.7-363447 |M | 12.0 | 16.5 : | |p | | | 285. : | |Me |00256 2MASS| +720925 |V0925 Sgr |191905.0-193405 |M | 12.1 |< 16.0 | |p |28660. | | 213. | | |04233 04233| +720931 |V0931 Sgr |182703.7-283218 |M | 12.5 |< 15.5 | |p |36780. | | 239. | |M7-8 |06279 06279| +720933 |V0933 Sgr |183057.4-310833 |M | 11.3 | 16.5 | |p |36748. | | 281.4 | |M8-9e |00001 00705| +720935 |V0935 Sgr *|183200.3-311158 |M | 11.1 | 17.5 | |p |36779. | | 239.8 | |M5e |00001 02447| +720940 |V0940 Sgr |183448.2-311822 |M | 12.0 | 18.4 | |p |36728. | | 173.3 | |Me |00001 2MASS| +720941 |V0941 Sgr |183443.5-293449 |M | 11. |< 17. | |p |40028. | | 203. | |M7 |08526 08526| +720947 |V0947 Sgr |183808.4-295820 |M | 11.4 | 16.6 | |p |34230. | | 145.3 |48 |Me |00001 02447| +720948 |V0948 Sgr |184039.6-354915 |M | 12.0 |< 17. | |p |25712. | | 310. | | |03516 03516| +720957 |V0957 Sgr |184348.1-314807 |M | 12.3 |< 17. | |p |18890. | | 241.5 | |Me |00256 2MASS| +720962 |V0962 Sgr |184706.3-314646 |M | 12.0 | 17. | |p |18882. | | 546. | |Me |00256 2MASS| +720963 |V0963 Sgr |184952.9-313353 |M | 10.7 |< 17.0 | |p |40480. | | 261.3 | | |00001 06274| +720965 |V0965 Sgr |185445.5-330519 |M | 12.2 |< 17. | |p |19977. | | 266. | | |00256 GSC | +720969 |V0969 Sgr |190231.0-313116 |M | 9.6 | 16.0 | |p |18915. | | 262. | |Me |00256 02386| +720971 |V0971 Sgr |190755.5-323914 |M | 10.0 | 16.5 | |p |21066. | | 269. | | |00256 2MASS| +720973 |V0973 Sgr |190930.1-321627 |M | 12. | 16.5 : | |p |18914. | | 238. | |Me |00256 2MASS| +720978 |V0978 Sgr |191455.3-272416 |M | 12.1 | 17. : | |p |20716. | | 200. | |Me |00256 GSC | +720984 |V0984 Sgr |194256.6-212351 |M | 10.5 |< 15. | |p |26900. :| | | |M0e |00190 00190| +721017 |V1017 Sgr *|183204.5-292313 |ZAND: | 6.2 | 14.94 | |B | | | | |G5IIIep |09847 07103| +721042 |V1042 Sgr |185737.4-163247 |M | 12.1 | 16.2 | |p |27068. | | 293.5 | |Me |01400 01400| +721045 |V1045 Sgr |185803.5-200729 |EA/SD | 12.4 | 13.8 | |p |27334.267 | | 1.128349 |17 *| |01400 01400| +721055 |V1055 Sgr |190017.1-150607 |RRAB | 12.2 | 13.2 | |p |27366.270 | | 0.7018135 |19 | |01400 01400| +721077 |V1077 Sgr |190627.0-193636 |CWA | 12.45 | 13.74 | |V |36406.867 | | 13.42899 |34 | |05375 05680| +721100 |V1100 Sgr *|191124.8-194923 |EA/SD | 12.1 | 13.9 | |p |26123.648 | | 3.59274 |12 |A5V |01400 01400| +721108 |V1108 Sgr *|191243.6-180812 |EA/DS | 11.6 | 12.8 | 11.9 |p |26568.24 | | 46.5816 |01 *| |01400 01400| +721130 |V1130 Sgr |192032.5-203220 |RRAB | 11.9 | 13.0 | |p |27360.246 | | 0.5680605 |13 | |01400 01400| +721156 |V1156 Sgr |190219.8-183132 |M | 12.2 |< 16. | |p |21040. | | 1262. /N| | |01003 01659| +721157 |V1157 Sgr |191011.8-202942 |M | 12.5 |< 15.6 | |p |26525. | | 140.45 | |C(R) |00001 01659| +721158 |V1158 Sgr |192012.8-405237 |M | 12.1 |< 15.5 | |p |25790. | | 241. | |M2e |03516 03516| +721159 |V1159 Sgr |192209.6-435814 |M | 10.5 |< 12.5 | |p |21045. | | | |Me |01671 02383| +721160 |V1160 Sgr |192548.6-443230 |M | 12.5 | 15.3 | |p | | | | |Me |00085 02386| +721161 |V1161 Sgr |193028.3-402806 |M | 12. |< 13.5 | |p | | | | | |00085 02383| +721163 |V1163 Sgr |193944.3-221804 |M | 10.5 | 14.0 | |p |29875. | | 276. | |Me |00001 00190| +721164 |V1164 Sgr |194146.4-385959 |SR | 11. | 13. | |p | | | 150. : | | |00085 CoD | +721165 |V1165 Sgr |194250.1-343033 |M | 12.5 |< 14. | |p | | | | |Me |00085 02383| +721166 |V1166 Sgr |194323.4-362557 |M | 12.5 |< 16. | |p | | | | | |04001 04001| +721167 |V1167 Sgr |194542.4-263526 |M | 11.5 | 14.8 | |p | | | | |M0e |00085 02386| +721168 |V1168 Sgr |195015.5-363831 |M | 12. |< 14. | |p | | | | | |00085 02384| +721169 |V1169 Sgr |195128.5-370948 |M | 12.5 |< 14. | |p | | | | | |00085 02384| +721170 |V1170 Sgr |195643.9-260454 |M | 12. | 15.5 | |p | | | | | |00085 02386| +721171 |V1171 Sgr |202125.7-383744 |EA | 11. |< 13. | |p | | | | | |00085 02384| +721173 |V1173 Sgr |200047.6-283323 |EA | 9.5 | 10.5 | |p |30206.363 | | | | |01674 03518| +721176 |V1176 Sgr |182425.7-213420 |RRAB | 12.0 | 12.9 | |p |21432.408 | | 0.3548148 |16 | |03506 01676| +721177 |V1177 Sgr *|180434.5-313442 |EA/KE | 11.3 | 11.7 | 11.4 |p |28672.537 | | 0.963089 | |B9 |01638 CPD | +721181 |V1181 Sgr *|181407.7-274933 |CWA | 12.12 | 13.32 | |V |44128.02 | | 21.31664 |31 |F9-G8 |00001 01638| +721182 |V1182 Sgr |181650.4-274751 |RRAB | 12.5 | 13.7 | |p |28461.284 | | 0.440866 |08 | |01638 01638| +721189 |V1189 Sgr *|182336.5-354553 |CWA | 11.58 | 12.93 | |V |35668.8 | | 14.07182 |32 |F0-F8 |00001 01638| +721216 |V1216 Sgr *|184949.4-235010 |UV | 11.2 | 12.55 | |B | | | | |M3.6Ve |09848 05770| +721235 |V1235 Sgr |190246.5-300622 |M | 12.5 |< 15.3 | |p |25800. | | 358. : | |Me |00245 00245| +721237 |V1237 Sgr |190417.6-314213 |I | 11.9 |< 13.4 | |p | | | | | |00245 00245| +721252 |V1252 Sgr |191036.3-302032 |EA/SD | 11.4 | 13.0 | |p |26480.516 | | 1.435689 |17 | |00245 CPD | +721254 |V1254 Sgr |191110.7-291321 |SR | 12.5 | 14.1 | |p |25795. | | 82. | | |00245 00245| +721256 |V1256 Sgr |191235.4-230634 |M | 12.1 |< 14.7 | |p |25760. | | 402. | | |00245 00245| +721258 |V1258 Sgr |191358.9-254829 |M | 12.5 | 18. | |p |25810. | | 267. | | |00245 00245| +721260 |V1260 Sgr |191659.8-243627 |SRA | 11.9 | 13.8 | |p |26251. | | 141. | |Me |00245 00245| +721266 |V1266 Sgr |192108.5-294939 |M | 12.4 | 15.5 | |p |26222. | | 142. | |Me |00245 00245| +721267 |V1267 Sgr |192207.7-255657 |M | 12.3 |< 15.2 | |p |25771. | | 152. | | |00245 00245| +721280 |V1280 Sgr *|181028.0-265159 |M | 12.0 |< 16.1 | |p |37140. | | 523. | |C6-7,3(N) |03523 03523| +721282 |V1282 Sgr *|181334.7-342843 |EA/SD | 11.9 | 16.2 | |p |35655.750 | | 1.75806 |11 | |05869 00705| +721290 |V1290 Sgr *|182137.3-323801 |CWA | 11.82 | 13.04 | |V |35666.91 | | 27.9516 |17 |F4:-F8: |00001 01640| +721303 |V1303 Sgr *|182854.7-264541 |CWA | 12.26 | 13.71 | |V |44158.36 | | 18.46812 |41 |F6 |05127 01640| +721304 |V1304 Sgr *|182928.7-322228 |CWA | 12.30 | 13.27 | |V |44016.87 | | 12.9003 |38 |F8: |00001 01640| +721316 |V1316 Sgr |193355.6-224945 |M | 11. |< 16. | |p |35000. | | | |M3e |01662 04256| +721577 |V1577 Sgr *|181218.1-275517 |M | 10.6 | 16.6 | |p |34240. | | 284.0 | |Me |00001 01634| +721591 |V1591 Sgr |181855.9-274426 |M | 12.4 |< 16.3 | |p |30904. | | 197.0 | | |00001 01634| +721592 |V1592 Sgr |181921.0-283823 |M | 11.7 | 15.3 | |p |30553. | | 218. | | |01634 01634| +721599 |V1599 Sgr |182118.1-302543 |M | 11.4 | 14.5 | |p |36090. | | 138.5 |50 |Me |07087 01634| +721603 |V1603 Sgr |182310.7-281717 |EA/SD | 12.1 | 15.8 | |p |28744.247 | | 3.332690 |10 *| |01682 01682| +721634 |V1634 Sgr |183821.3-323553 |M | 11.7 | 17.0 | |p |36050. | | 280. | |Me |05869 01634| +721637 |V1637 Sgr |184031.0-282425 |M | 11.3 |< 17. | |p |42651. | | 248. | |Me |08519 01634| +721640 |V1640 Sgr *|184335.5-345214 |RRAB | 12.3 | 13.6 | |p |28780.3361 | | 0.3673598 |32 |F6 |01682 01682| +721643 |V1643 Sgr *|194548.0-405619 |EW: | 11.8 | 12.1 | 12.1 |V |34482.428 | | 0.679456 | | |00080 02383| +721644 |V1644 Sgr *|200914.9-293322 |RRAB | 11.6 | 12.4 | |V |34235.360 | | 0.639280 |15 | |00080 02384| +721645 |V1645 Sgr |202044.5-410706 |RRAB | 11.5 | 12.1 | |V |34234.365 | | 0.552838 |27 | |00080 06286| +721646 |V1646 Sgr |202308.8-311742 |RRAB | 11.4 | 12.3 | |V |34324.391 | | 0.544443 |13 | |00080 06286| +721647 |V1647 Sgr *|175913.5-365620 |EA/DM | 6.94 | 7.57 | 7.43 |V |41829.69510 | | 3.28279251 |08 |A1V+A2V |09854 CoD | +721669 |V1669 Sgr |183022.7-250537 |SRA | 12.3 | 13.6 | |p |42265. | | 175. | |M3 |08724 08724| +721683 |V1683 Sgr |183303.9-205430 |M | 12.0 | 16.2 | |p |40080. | | 216.5 | |M7 |07087 07087| +721692 |V1692 Sgr |183459.0-191609 |M | 12.0 | 16.3 | |p |26130. | | 500. | |M9 |00842 06286| +721711 |V1711 Sgr *|200108.0-303039 |CWA | 10.43 | 11.06 | |V |44151.11 | | 28.556 |35 |F4-F6 |00001 02570| +721721 |V1721 Sgr *|175843.2-331934 |EA/DM | 10.4 | 10.6 | |p |28664.475 | | 1.788564 |10 |F3V |02448 08613| +721770 |V1770 Sgr |180430.3-311538 |M | 12.5 |< 18. | |p |28770. | | 292. : | | |02448 02448| +721783 |V1783 Sgr |180449.7-324314 |LB | 12.0 | 14.5 | |p | | | | |C(R0) |02448 02452| +721830 |V1830 Sgr |181350.7-274221 |UG | 11.5 | 17.5 | |p | | | | | |04218 08852| +721861 |V1861 Sgr |182222.1-353321 |M | 12.3 | 17.2 | |p |36668. | | 257.2 | |Me |00001 02447| +721862 |V1862 Sgr |182157.8-272521 |M | 12.5 | 16.2 | |p |27160. | | 201.5 | |M3ep-M4 |02515 09467| +721864 |V1864 Sgr *|182239.0-273442 |RV | 12.1 | 14.0 | |p |26135. | | 80. : | | |02515 UCAC2| +721880 |V1880 Sgr |182737.6-354102 |M | 12.2 | 17.8 | |p |36778. | | 268.7 | |Me |00001 02447| +721899 |V1899 Sgr |183145.4-264553 |RV | 12.1 | 14.5 | |p | | | | | |04218 04218| +721901 |V1901 Sgr |183218.3-263013 |M | 12.3 | 16.1 | |p |42278. | | 142.6 | | |02515 08723| +721909 |V1909 Sgr |183407.0-210911 |SR: | 12.5 | 15.8 | |p |27980. | | 32. : | | |02449 06286| +721918 |V1918 Sgr |183734.8-205325 |IA: | 12.1 | 15.7 | |p | | | | |B:e |02569 02569| +721927 |V1927 Sgr |184210.1-222956 |M | 12.0 |< 16.0 | |p |36050. | | 419. | |M7 |02449 06286| +721930 |V1930 Sgr |184321.6-214057 |M | 11.5 |< 16.0 | |p |33860. | | 257. | |Me |02449 06286| +721933 |V1933 Sgr |184510.1-194720 |EA/SD | 12.5 |< 15.0 | |p |24021.53 | | 1.3503527 | | |02937 06286| +721937 |V1937 Sgr |184721.9-323216 |SRA | 12.3 | 13.7 | |p |34159. | | 105. | | |02447 02447| +721940 |V1940 Sgr |190934.0-172026 |M | 12.1 | 15.6 | |p |33163. | | 200. | | |02598 01659| +721941 |V1941 Sgr |191342.6-120120 |EA | 12.1 | 13.6 | |p |21405.25 | | 5.438781 | | |04191 01659| +721942 |V1942 Sgr *|191909.6-155430 |LB | 6.74 | 7.00 | |V | | | | |C6,4(N2/R8) |02598 BD | +721943 |V1943 Sgr |200655.2-271330 |LB | 9. | 11. | |p | | | | |M8 |00848 08953| +721945 |V1945 Sgr *|180130.5-225750 |M | 11.6 | 14.4 | |I |37843. | | 408. | | |04407 06378| +721946 |V1946 Sgr *|180200.2-233330 |M | 9.0 | 13.3 | |I |36705. :| | 440. : | | |03815 04407| +721948 |V1948 Sgr *|180217.7-224009 |SR | 12.0 | 13.8 | |I | | | | |C |04407 06378| +721950 |V1950 Sgr *|180239.3-232203 |M | 7.0 | 14.2 | |I |36454. | | 400. : | |M |04407 06378| +721951 |V1951 Sgr *|180330.1-225951 |M | 8.3 | 14.8 | |I |37180. | | 510. | | |04407 06378| +721954 |V1954 Sgr *|181526.3-203746 |DCEP | 11.8 | 13.4 | |p |32626.915 | | 6.1794489 |35 | |09862 04219| +721961 |V1961 Sgr |181753.0-254409 |EA | 12.2 | 13.8 | |p |36838.496 | | 0.2038504 | | |04220 04220| +721962 |V1962 Sgr *|181917.5-160113 |INS: | 12.1 | 14.2 | |I | | | | | |04407 04407| +721963 |V1963 Sgr *|181922.5-163102 |EA: | 12.3 | 13.8 | |I | | | 2.421 :/N| |F8/G0e |04407 04407| +721968 |V1968 Sgr |182123.1-193324 |EA | 12.3 | 13.3 | |p |37820.669 | | 0.5632499 | | |04220 04220| +721973 |V1973 Sgr *|182145.4-161237 |SR | 12.0 | 15.3 | |I |37605. | | | | |04407 04407| +721975 |V1975 Sgr *|182158.0-162249 |M: | 12.4 | 15.0 | |I |40050. | | 422. | | |07264 04407| +721976 |V1976 Sgr *|182225.1-162836 |M | 11.8 | 16.2 : | |I |37841. | | 520. : | | |04407 04407| +721977 |V1977 Sgr *|182227.0-161721 |M | 9.5 | 14.6 | |I |37875. | | 467. | | |04407 04407| +721980 |V1980 Sgr *|182524.5-251040 |EA/GS | 11.2 | 11.8 | 11.7 |p |25474. | | 40.506 |10 | |04222 04222| +721984 |V1984 Sgr |182615.0-215017 |M | 12.4 | 15.0 | |p |25850. | | 344. | |M6-M7 |04218 04218| +721995 |V1995 Sgr |182945.9-205031 |EA/SD | 12.5 | 14.1 | |p |27254.364 | | 1.7243356 | | |04218 04218| +721996 |V1996 Sgr *|183036.0-243721 |DCEP | 12.4 | 14.2 | |p |33858. | | 18.15 | | |04218 04218| +722003 |V2003 Sgr *|183302.9-194626 |SRB | 12.0 | 15.0 | |p | | | 380. : | |S5,8 |04222 04222| +722010 |V2010 Sgr |183614.9-275952 |LB | 11.9 | 12.7 | |p | | | | |M7 |04220 04220| +722040 |V2040 Sgr |184559.6-250023 |L | 11.8 | 13.4 | |p | | | | | |03516 04222| +722084 |V2084 Sgr |185942.2-135213 |SRA | 11.9 | 13.8 | |p |27640. | | 139. | | |04233 04233| +722106 |V2106 Sgr *|190528.3-163748 |SRA: | 12.4 | 14.0 | |p |28720. | | 238. | | |04233 04233| +722132 |V2132 Sgr |191730.1-184702 |SRA | 12.4 | 14.5 | |p |29160. | | 130.3 | | |04233 04233| +722139 |V2139 Sgr |192047.5-181220 |LB | 10.4 | 11.4 | |p | | | | |M5 |04233 04233| +722155 |V2155 Sgr |193934.4-422252 |M | 12. | 15. | |p | | | | | |04001 04001| +722165 |V2165 Sgr |194217.3-373525 |M | 12.5 | 16.5 | |p | | | | | |04001 04001| +722168 |V2168 Sgr |194237.5-383956 |EA | 12.5 | 15. | |p | | | | | |04001 04001| +722184 |V2184 Sgr |194617.5-372453 |EA | 12.5 | 13. | |p | | | | | |04001 04001| +722201 |V2201 Sgr |195250.3-430142 |EA | 12. | 13. | |p | | | | | |04001 08613| +722232 |V2232 Sgr |200727.3-434910 |RR | 11.5 | 12.5 | |p | | | | | |04001 04001| +722234 |V2234 Sgr |200741.7-423220 |L: | 12.0 | 15.5 | |p | | | | | |04001 04001| +722235 |V2235 Sgr |200730.0-383149 |EA | 10. | 10.5 | |p | | | | |MB |04001 04001| +722238 |V2238 Sgr |200916.5-433822 |L: | 11. | 12. | |p | | | | | |04001 04001| +722239 |V2239 Sgr |200909.7-414932 |RR | 12. | 13. | |p | | | | | |04001 04001| +722255 |V2255 Sgr |201747.0-414021 |L: | 12.4 | 16.5 | |p | | | | | |04001 04001| +722265 |V2265 Sgr |202110.3-433353 |EA | 12.5 | 13. | |p | | | | | |04001 04001| +722267 |V2267 Sgr |202250.6-415334 |L: | 10.5 | 11.5 | |p | | | | | |04001 04001| +722279 |V2279 Sgr |202703.4-404014 |RRAB | 11.9 | 13.2 | |p |36807.417 | | 0.48987 |17 | |04294 04001| +722281 |V2281 Sgr |202812.3-423608 |RRAB | 12.5 | 13.8 | |p |36807.234 | | 0.47914 |08 | |04294 04001| +722283 |V2283 Sgr *|180438.8-365453 |EA/DM | 10.23 | 11.03 | 10.59 |V |38948.5043 | | 3.4714231 |06 *|A0 |07106 03516| +722334 |V2334 Sgr |182056.6-361037 |M | 12.3 | 16.3 | |p |36725. | | 211.2 | |Me |00001 03513| +722346 |V2346 Sgr *|182645.9-210740 |SRB | 12.1 | 13.0 | |p | | | | |M5-M6 |05121 06278| +722347 |V2347 Sgr |182846.5-361616 |M | 11.4 | 18.5 | |p |36792. | | 190.6 | | |00001 03513| +722349 |V2349 Sgr *|182825.1-164205 |EA/D | 8.76 | 9.4 | 9.2 |B |26916.650 | | 5.02565 |12 |B1Vne |05284 BD | +722351 |V2351 Sgr *|182929.9-312802 |EA/DM | 10.21 | 10.73 | 10.31 |V |28784.21 | | 3.748819 |10 *| |03551 02447| +722354 |V2354 Sgr |183011.6-245227 |UV: | 12.4 | 13.2 | |p | | | | |M5 |05121 06278| +722395 |V2395 Sgr |185741.6-335047 |SRA | 12.4 | 14.2 | |p |25490. | | 150. | | |03516 03516| +722506 |V2506 Sgr *|181101.7-283240 |ZAND | 12. |( 3.5 : )| |p | | | | |Mea |05591 08077| +722509 |V2509 Sgr *|181549.9-353814 |EB/KE | 7.35 | 7.71 | 7.50 |V |44387.7712 | | 1.0869739 | |A0 |00001 06618| +722513 |V2513 Sgr |181747.4-274927 |SRA | 11.1 | 12.1 | |p |36050. | | 57.3 | |M2 |05592 06278| +722537 |V2537 Sgr |182300.3-323404 |EA/SD | 12.3 | 14.8 | |p |29864.256 | | 2.5581482 |14 | |05590 05590| +722595 |V2595 Sgr |183636.8-302226 |I | 12.4 | 13.7 | |p | | | | | |05590 05590| +722608 |V2608 Sgr |184056.0-260504 |SRA | 11.9 | 13.1 | |p | | | 200. : | |M3-M6 |05593 06278| +722617 |V2617 Sgr *|195518.4-235813 |EA/KE: | 9.56 | 10.1 | 9.63 |V |25501.340 | | 0.9972646 | |A0 |05779 CoD | +722905 |V2905 Sgr *|181720.3-280950 |ZAND | 10.0 : | 14.6 | |p | | | | |pec(e+cont) |06293 08953| +723508 |V3508 Sgr *|183124.2-190931 |GCAS | 7.70 | 8.00 | |V | | | | |B6IIIe |05914 09872| +723542 |V3542 Sgr |183301.3-312450 |L | 12.5 | 13.2 | |p | | | | | |05869 UCAC2| +723574 |V3574 Sgr |183423.0-353840 |L | 12.1 | 12.6 | |p | | | | | |05869 | +723718 |V3718 Sgr *|183904.6-210848 |RRAB | 12.5 | 15.2 | |p |38563.748 | | 0.4052151 |20 : | |05916 05916| +723788 |V3788 Sgr *|185730.0-363437 |S: | 11.6 | 13.6 | |p | | | | | |05870 05870| +723789 |V3789 Sgr |190007.9-145901 |SRB | 12.1 | 14.9 | |p |29909. | | 96. : | | |04231 04231| +723790 |V3790 Sgr |193320.3-163637 |LB: | 7.24 | 7.54 | |V | | | | |M2 |05918 BD | +723792 |V3792 Sgr *|180854.0-252823 |EB/DM | 6.43 | 6.88 | 6.81 |V |41879.349 | | 2.248082 | |B5 |04831 05151| +723794 |V3794 Sgr |181248.4-215439 |EA | 12.0 | 12.7 | |p |40058.752 | | 0.9541102 |16 | |06379 06379| +723795 |V3795 Sgr |181323.6-254641 |RCB | 11.5 |< 15.5 | |p | | | | |pec |06274 06274| +723796 |V3796 Sgr |181405.3-270022 |LB: | 12.5 | 13.7 | |p | | | | |M5: |06278 06278| +723804 |V3804 Sgr *|182128.8-313205 |ZAND | 11.6 | 13.1 | |p | | | | |pec(e+cont) |09891 09822| +723819 |V3819 Sgr *|182611.6-211319 |RRAB | 12.5 | 14.3 | |p |31674.200 | | 0.524608 | | |06064 06278| +723841 |V3841 Sgr *|183030.3-200252 |M | 12.3 | 14.9 : | |p |41140. | | 367. | |M7e-M8e |06279 06279| +723855 |V3855 Sgr *|183610.1-240549 |SRC: | 12.3 | 14.0 | |p |37138.4 | | 95. | |M: |09901 08792| +723859 |V3859 Sgr |183832.3-274205 |RR: | 11.8 | 12.6 | |p | | | | | |06278 06278| +723863 |V3863 Sgr |184012.3-243106 |EW/KW | 11.7 | 12.5 | |p | | | 0.364913 | | |06278 09903| +723866 |V3866 Sgr |184203.2-194636 |E: | 11.8 | 13.9 | |p | | | | | |06278 06278| +723867 |V3867 Sgr *|184258.7-302851 |M | 12.5 | 17. : | |p |37100. | | 422. | | |06272 06272| +723872 |V3872 Sgr |200239.5-274236 |LB | 4.45 | 4.64 | |V | | | | |M4III |03712 08667| +723873 |V3873 Sgr |182651.6-321736 |SRA | 12.2 | 13.6 | |p |41180. | | 200. | |Me |06279 06279| +723876 |V3876 Sgr *|183312.7-200550 |M | 9.4 | 15.2 | |p |41484. | | 352. | |M8e |09908 06279| +723877 |V3877 Sgr |183625.7-352650 |SRB | 6.84 | 7.30 | |V |40760. | | 50. : | |M5III |06351 CoD | +723878 |V3878 Sgr |184257.5-280626 |M | 11.7 |< 14.5 | |p |40120. | | 345. | | |06279 06279| +723879 |V3879 Sgr *|184255.1-191703 |SRB | 6.05 | 6.58 | |V | | | 50. : | |M5.2III |06645 BD | +723880 |V3880 Sgr *|190854.9-221419 |M | 1.7 | 3.1 | |K |40645. | | 510. | |M8: |07343 2MASS| +723881 |V3881 Sgr |193359.4-425744 |M | 12. | 15. | |p | | | | |Me |00085 02386| +723882 |V3882 Sgr |193620.0-182918 |M | 12.2 |< 16. | |p | | | | |Me |04579 2MASS| +723884 |V3884 Sgr |194138.0-271021 |M: | 12. |< 13. | |p | | | | |Me |00085 02383| +723885 |V3885 Sgr *|194740.5-420026 |NL+ZZ: | 10.27 | 10.51 | |V | | | | |pec |07217 CoD | +723886 |V3886 Sgr *|195606.0-425713 |EA: | 11.5 | 12.3 | |p |28667.550 | | 1.407685 | | |06871 06871| +723887 |V3887 Sgr |195751.8-284502 |SR | 12. | 13.5 | |p | | | | |Me |00085 02384| +723890 |V3890 Sgr |183043.3-240109 |ZAND | 8.4 : | 17.2 | |p | | | | |pec(e+cont) |09472 09472| +723892 |V3892 Sgr |174445.8-271345 |GCAS | 8.44 | 8.95 | |V | | | | |B1:III:nne |07767 04947| +723894 |V3894 Sgr *|174827.8-265830 |EB/D | 6.21 | 6.39 | 6.37 |V |44569.775 | | 2.61862 | |B3IVe |09912 CoD | +723895 |V3895 Sgr |175824.2-291548 |EA | 9.0 | 9.5 | |p |28664.492 | | | |A0 |02448 CoD | +723899 |V3899 Sgr *|180247.9-231902 |INSB | 11.7 | 13.0 | |I | | | | |M |04407 06378| +723903 |V3903 Sgr *|180917.7-235918 |INA: | 7.00 | 7.45 | |V | | | | |O8Vn |06866 09913| +723908 |V3908 Sgr |181334.7-161350 |M | 8.4 | 11.0 | |I |40784. | | 279. | | |07779 UCAC2| +723923 |V3923 Sgr |181849.4-174353 |M | 12.3 | 15.6 | |I | | | 396. : | | |07779 2MASS| +723925 |V3925 Sgr |181933.1-174644 |M: | 12.3 | 15.8 | |I |41138. :| | 135. : | | |07779 2MASS| +723926 |V3926 Sgr |181934.1-174840 |M | 12.4 | 15.6 | |I |39720. | | 286. : | | |07779 2MASS| +723931 |V3931 Sgr |182121.8-164259 |M | 12.0 | 15.6 | |I | | | | | |07779 2MASS| +723932 |V3932 Sgr |182142.5-173207 |M | 12.3 | 15.0 | |I |41144. | | 208. | | |07779 2MASS| +723940 |V3940 Sgr |182509.3-163620 |M: | 11.6 | 15.2 | |I |41214. | | 442. : | | |07779 2MASS| +723941 |V3941 Sgr |182558.3-292549 |UG: | 11.5 |< 14. | |p | | | | | |07782 07782| +723942 |V3942 Sgr |182539.2-163346 |M | 11.2 | 15.3 | |I |41247. | | 379. | | |07779 2MASS| +723947 |V3947 Sgr |182747.4-160706 |M | 11.2 | 15.4 | |I |41162. | | 312. : | | |07779 2MASS| +723952 |V3952 Sgr |184551.3-171759 |M: | 12.2 |< 15.5 | |p |16683. :| | | |M9 |04579 01383| +723953 |V3953 Sgr |185913.9-295020 |M: | 9.6 |< 17. | |p |20338. | | | |M9 |04930 2MASS| +723954 |V3954 Sgr |191051.5-150440 |LB: | 7.15 : | 7.52 | |V | | | | |M3 |07787 BD | +723955 |V3955 Sgr |192107.3-312350 |SRD | 10. | 11.2 | |p | | | | |G0-G5 |05152 CoD | +723958 |V3958 Sgr |192950.0-444914 |SR | 12. | 13.5 | |p | | | 100. : | | |00085 02383| +723959 |V3959 Sgr |193553.6-372048 |LB | 10. | 10.5 | |p | | | | | |00085 CoD | +723960 |V3960 Sgr |194731.8-411045 |LB | 10. | 10.5 | |p | | | | |M5/7 |04001 04001| +723961 |V3961 Sgr *|195150.6-395228 |ACV | 5.28 | 5.34 | |V |44457.77 | | 2300. | |A0p(Si-Cr-Eu) |09914 CoD | +723966 |V3966 Sgr |175814.8-285445 |M | 7.00 | 7.32 | |K | | | 390. | | |08424 08424| +723968 |V3968 Sgr |175822.7-285435 |M | 7.00 | 7.32 | |K | | | 300. | | |08424 08424| +723970 |V3970 Sgr |175829.9-291303 |M | 6.00 | 6.42 | |K | | | 350. | | |08424 08424| +723972 |V3972 Sgr |175843.8-290713 |M | 6.68 | 7.15 | |K | | | 265. | | |08424 08424| +723974 |V3974 Sgr |175855.9-285047 |M: | 5.89 | | |K | | | 450. : | |M8.5 |08424 08424| +723977 |V3977 Sgr |175913.5-285853 |M | 7.34 | 7.84 | |K | | | 315. | | |08424 08424| +723979 |V3979 Sgr |175929.6-290321 |M: | 7.37 | | |K | | | 330. : | | |08424 08424| +723980 |V3980 Sgr |175929.1-285029 |M | 7.13 | 7.30 | |K | | | 320. | | |08424 08424| +723982 |V3982 Sgr |175943.2-291413 |M | 6.49 | 6.71 | |K | | | 330. | | |08424 08424| +723984 |V3984 Sgr |175956.4-332430 |GCAS | 7.38 |( 0.18 )| |V | | | | |B1.5Vne |07908 CoD | +723985 |V3985 Sgr |175946.5-285916 |SR: | 6.25 | 6.60 | |K | | | 450. | | |08424 08424| +723986 |V3986 Sgr |175949.3-285218 |M | 7.91 | 8.32 | |K | | | 280. | | |08424 08424| +723987 |V3987 Sgr |175956.1-285328 |M | 6.12 | 6.39 | |K | | | 350. | | |08424 08424| +723990 |V3990 Sgr |180017.0-285524 |M | 7.36 | 7.83 | |K | | | 308. | | |08424 08424| +723991 |V3991 Sgr |180019.4-285004 |SR: | 7.47 | 7.62 | |K | | | 155. | | |08424 08424| +723992 |V3992 Sgr |180021.2-290645 |M | 6.80 | 7.28 | |K | | | 325. | | |08424 08424| +723994 |V3994 Sgr |180044.5-291618 |M: | 6.09 | | |K | | | 410. | | |08424 08424| +723995 |V3995 Sgr |180045.7-291105 |M | 6.69 | 6.98 | |K | | | 360. | | |08424 08424| +723996 |V3996 Sgr |180048.7-291019 |M | 7.41 | 7.80 | |K | | | 355. | |M8.5 |08424 08424| +723998 |V3998 Sgr |180217.9-301512 |SR | 7.20 | | |K | | | 260. | | |08424 08424| +723999 |V3999 Sgr |180219.2-295917 |M | 5.67 | 6.58 | |K | | | 470. : | | |08424 08424| +724000 |V4000 Sgr |180230.9-300641 |M | 6.44 | 7.31 | |K | | | 465. | |M9 |08424 08424| +724001 |V4001 Sgr |180241.5-300519 |M | 5.77 | 6.57 | |K | | | 465. | |M9+ |08424 08424| +724002 |V4002 Sgr |180311.5-295747 |SR: | 7.33 | | |K | | | 290. : | |M7 |08424 08424| +724003 |V4003 Sgr |180314.0-294922 |M: | 7.66 | | |K | | | 265. | | |08424 08424| +724005 |V4005 Sgr |180354.8-300052 |M | 7.03 | 7.10 | |K | | | 305. | |M8 |08424 08424| +724006 |V4006 Sgr |180720.4-272432 |M | 11.6 |< 14.4 | |p |37846. | | 281. | | |07912 07912| +724008 |V4008 Sgr |181437.4-275709 |M: | 7.02 | 7.15 | |K | | | 360. : | |M9: |08424 08424| +724010 |V4010 Sgr |181527.8-275817 |M | 6.15 | 6.28 | |K | | | 410. | |M9 |08424 08424| +724017 |V4017 Sgr |181802.3-292933 |SR: | 12. | 15. | |p | | | 4000. : | | |07087 07087| +724018 |V4018 Sgr |182526.8-283558 |L: | 9.5 |< 13.6 | |p | | | | | |07912 07912| +724024 |V4024 Sgr *|190816.7-191725 |GCAS | 5.34 | 5.60 | |V | | | | |B2Ve |08419 BD | +724025 |V4025 Sgr |194133.1-264019 |SR: | 11.5 | 12.9 | |p | | | | | |07922 07922| +724026 |V4026 Sgr |194709.0-170441 |SR: | 6.69 | 6.90 | |V | | | | |M5III |08225 BD | +724028 |V4028 Sgr |182131.4-245455 |SR: | 6.10 | 6.38 | |V | | | 35. : | |M5III |06645 CoD | +724029 |V4029 Sgr |182114.9-162232 |SDOR | 8.12 | 8.29 | |V | | | | |B9Iapeq |08070 BD | +724030 |V4030 Sgr |182119.6-162226 |ACYG: | 8.30 | 8.41 | |V | | | | |B8Iaea |08070 BD | +724031 |V4031 Sgr |182922.0-251524 |GCAS | 6.52 | 6.67 | |V | | | | |B2IVnep |05890 CoD | +724033 |V4033 Sgr |183844.8-230517 |LB: | 12.0 | 12.6 | |p | | | | |M5 |06278 06278| +724034 |V4034 Sgr *|184353.8-171314 |M: | 12.4 | 13.3 | |p |36420. | | 254. | | |05384 07594| +724035 |V4035 Sgr |180218.3-300044 |M | 7.10 | 7.89 | |K | | | 330. | | |08424 08424| +724036 |V4036 Sgr |180226.2-300530 |M | 6.95 | 7.20 | |K | | | 420. : | | |08424 08424| +724037 |V4037 Sgr |180234.8-295959 |M | 5.74 | 5.81 | |K | | | 400. : | | |08424 08424| +724038 |V4038 Sgr |180308.5-300526 |M | 6.94 | 7.24 | |K | | | 335. | |M7 |08424 08424| +724039 |V4039 Sgr |180321.2-301205 |M | 7.01 | 7.23 | |K | | | 430. | |M8 |08424 08424| +724040 |V4040 Sgr |180400.2-301216 |M | 7.75 | 8.44 | |K | | | 375. | |M8-M8.5 |08424 08424| +724042 |V4042 Sgr |180414.2-294834 |M | 6.71 | 7.48 | |K | | | 420. : | | |08424 08424| +724044 |V4044 Sgr |180443.0-295243 |M | 6.66 | 7.07 | |K | | | 335. | | |08424 08424| +724045 |V4045 Sgr |181158.2-285406 |ACV | 6.51 | 6.54 | |V | | | 2.8855 | |A0p(Si-Cr-Eu) |09919 CoD | +724046 |V4046 Sgr *|181410.4-324735 |BY+UV | 10.32 | 10.39 | |V | | | 1.701 | |K5e |08601 CoD | +724048 |V4048 Sgr *|181731.3-200840 |EA/SD | 12.4 | 13.8 | 12.6 |B |42543.531 | | 1.49509021 |17 *| |08519 08519| +724050 |V4050 Sgr |182253.1-364010 |ACV | 5.31 |( 0.012 )| |V | | | 6.3 | |B8p(Sr-Ti-Cr) |08375 CoD | +724058 |V4058 Sgr *|183751.4-231142 |EA | 11.8 | 12.8 | |B |41927.272 | | 3.03523995 |10 | |08519 08519| +724059 |V4059 Sgr |184336.2-294910 |SRA | 12.0 | 16. | |p |42684. | | 89.8 | | |08526 08526| +724062 |V4062 Sgr |193856.2-283626 |ACV | 6.71 | 6.75 | |V |42620.099 | | 1.737 |30 |B9p(Si) |08312 CoD | +724063 |V4063 Sgr |194237.1-242246 |DSCT | 7.9 |( 0.12 )| |V | | | 0.361 | |F0 |08403 CoD | +724064 |V4064 Sgr |195110.2-272819 |ACV | 7.23 | 7.36 | |V |42621.478 | | 4.718 |30 |B9p(Si) |00208 CoD | +724066 |V4066 Sgr *|183309.6-230423 |EA | 11.0 | 11.8 | |p |44025.73 | | 2.145508 |15 |M5 |04325 06278| +724071 |V4071 Sgr |175821.5-284925 |M | 6.47 | | |K | | | | | |67225 67225| +724072 |V4072 Sgr |180143.1-324255 |ELL/WR+* | 8.74 |( 1.2 )| |V | | | | | |67228 CoD | +724074 |V4074 Sgr |181605.5-305114 |ZAND | 8.6 | 12.3 | |p | | | | | |67231 HIP | +724077 |V4077 Sgr |183439.5-262603 |N | 8.0 |< 20. | |V | | | | | |67237 67236| +724088 |V4088 Sgr |185106.4-201800 |E | 7.49 | 7.87 | |V | | | | | |67241 BD | +724089 |V4089 Sgr |193408.5-400205 |EA/DM | 5.87 | 6.07 | |V | | | | | |67244 CoD | +724090 |V4090 Sgr |193955.5-392558 |EA/DM | 6.58 | 6.81 | |V | | | | | |67244 CoD | +724091 |V4091 Sgr |200602.7-184216 |RS: | 8.4 |( 0.04 )| |V | | | | | |67246 BD | +724092 |V4092 Sgr |175342.1-290208 |NA | 9.7 | 15.3 | |V | | | | | |68338 68339| +724120 |V4120 Sgr |180356.5-201900 |M | 0.6 | 1.0 | |K | | | | | |68015 2MASS| +724121 |V4121 Sgr |180755.0-284927 |N | 9.5 |< 19. | |p | | | | | |68341 68341| +724131 |V4131 Sgr |184011.0-223950 |GCAS: | 8.68 | 8.82 | |V | | | | | |68346 BD | +724133 |V4133 Sgr |200335.2-385109 |ACV | 6.90 | 6.92 | |V | | | | | |68290 CoD | +724135 |V4135 Sgr |175945.1-321621 |N | 10.4 |< 22. | |V | | | | | |69240 69157| +724136 |V4136 Sgr |180935.7-232520 |IT: | 11.81 | 12.42 | |V | | | | | |69241 69242| +724138 |V4138 Sgr |192240.3-203835 |RS | 6.57 | 6.85 | |V | | | | | |69011 BD | +724139 |V4139 Sgr |192805.6-405005 |RS | 8.40 | 8.69 | |V | | | | | |69011 CoD | +724142 |V4142 Sgr |180744.6-282404 |EA/DS | 10.9 | 14.1 | |p | | | | | |70097 | +724152 |V4152 Sgr |185847.3-293018 |SR: | 9.24 | 9.52 | |V | | | | | |70066 CoD | +724153 |V4153 Sgr |192008.0-142709 |EA: | 7.64 | 7.87 | |V | | | | | |70102 BD | +724154 |V4154 Sgr |180516.4-360506 |M | 8.93 | 11.95 | |J | | | | | |71144 2MASS| +724155 |V4155 Sgr |180546.6-354306 |M | 10.87 | 12.52 | |J | | | | | |71144 2MASS| +724156 |V4156 Sgr |180922.1-345053 |M | 6.72 | 9.11 | |J | | | | | |71144 2MASS| +724157 |V4157 Sgr |180935.0-255158 |NA | 7. |< 21. | |V | | | | | |71158 71159| +724158 |V4158 Sgr |181112.8-351039 |M | 7.92 | 9.01 | |J | | | | | |71144 2MASS| +724159 |V4159 Sgr |181147.6-165338 |BCEP | 8.09 | 8.16 | |V | | | | | |71160 BD | +724160 |V4160 Sgr |181413.9-321229 |NA | 7.0 |< 21. | |V | | | | | |71162 | +724161 |V4161 Sgr |181612.1-330406 |M | 11.30 | 13.93 | |J | | | | | |71144 2MASS| +724162 |V4162 Sgr |181700.1-330233 |M | 8.87 | 11.83 | |J | | | | | |71144 2MASS| +724163 |V4163 Sgr |181814.0-314032 |M | 7.68 | 8.82 | |J | | | | | |71144 2MASS| +724164 |V4164 Sgr |181936.2-310441 |M | 7.41 | 8.66 | |J | | | | | |71144 2MASS| +724165 |V4165 Sgr |182008.5-303340 |M | 7.50 | 8.82 | |J | | | | | |71144 2MASS| +724166 |V4166 Sgr |182009.9-300451 |M | 9.16 | 11.97 | |J | | | | | |71144 2MASS| +724167 |V4167 Sgr |182030.3-310601 |M | 8.99 | 10.60 | |J | | | | | |71144 UCAC2| +724168 |V4168 Sgr |182113.2-303156 |M | 8.06 | 9.00 | |J | | | | | |71144 2MASS| +724169 |V4169 Sgr |182326.9-282200 |NA | 7.7 |< 12.6 | |V | | | | | |71166 71167| +724170 |V4170 Sgr |182335.5-302553 |M | 8.87 | 10.00 | |J | | | | | |71144 2MASS| +724171 |V4171 Sgr |182341.4-225928 |NA | 7.49 | 20.5 : | |V | | | | | |71168 71252| +724172 |V4172 Sgr |182455.3-290447 |M | 8.35 | 11.03 | |J | | | | | |71144 2MASS| +724173 |V4173 Sgr |182511.2-291846 |M | 8.14 | 9.95 | |J | | | | | |71144 2MASS| +724174 |V4174 Sgr |182533.4-275436 |M | 8.03 | 9.81 | |J | | | | | |71144 2MASS| +724175 |V4175 Sgr |182544.3-285044 |M: | 9.23 | 9.81 | |J | | | | | |71144 2MASS| +724176 |V4176 Sgr |182910.3-261704 |M | 8.17 | 10.11 | |H | | | | | |71144 2MASS| +724177 |V4177 Sgr |182936.8-271800 |M | 10.61 | 14.6 | |H | | | | | |71144 2MASS| +724178 |V4178 Sgr |182948.3-260106 |M | 10.49 | 12.64 | |J | | | | | |71144 2MASS| +724179 |V4179 Sgr |182952.5-271258 |M | 9.40 | 11.35 | |J | | | | | |71144 2MASS| +724180 |V4180 Sgr |183028.4-263020 |M | 6.84 | 7.89 | |H | | | | | |71144 2MASS| +724181 |V4181 Sgr |183036.3-265514 |M | 8.00 | 10.11 | |J | | | | | |71144 2MASS| +724182 |V4182 Sgr |183118.7-253405 |M | 9.50 | 11.87 | |J | | | | | |71144 2MASS| +724183 |V4183 Sgr |183150.4-260849 |M | 9.38 | 12.53 | |H | | | | | |71144 2MASS| +724184 |V4184 Sgr |183207.7-245721 |M | 3.21 | 4.26 | |H | | | | | |71144 2MASS| +724185 |V4185 Sgr |183213.2-263957 |M | 8.68 | 11.17 | |J | | | | | |71144 2MASS| +724186 |V4186 Sgr |183338.5-244537 |M | 8.28 | 9.71 | |J | | | | | |71144 2MASS| +724187 |V4187 Sgr |183353.5-260202 |M | 7.46 | 9.04 | |J | | | | | |71144 2MASS| +724188 |V4188 Sgr |183413.1-254339 |M | 7.81 | 8.77 | |J | | | | | |71144 2MASS| +724189 |V4189 Sgr |183504.0-244012 |M | 8.15 | 9.33 | |J | | | | | |71144 2MASS| +724190 |V4190 Sgr |183521.3-205026 |DSCTC | 6.44 | 6.48 | |V | | | | | |71017 BD | +724191 |V4191 Sgr |183713.3-235515 |M | 12.50 | 15.4 | |J | | | | | |71144 2MASS| +724192 |V4192 Sgr |183748.4-234842 |M | 8.41 | 11.53 | |J | | | | | |71144 2MASS| +724193 |V4193 Sgr |183813.7-232218 |M | 8.27 | 9.56 | |J | | | | | |71144 2MASS| +724194 |V4194 Sgr |183813.4-230123 |M | 6.65 | 8.08 | |H | | | | | |71144 2MASS| +724195 |V4195 Sgr |183847.4-220602 |M | 7.96 | 9.25 | |J | | | | | |71144 2MASS| +724196 |V4196 Sgr |184423.0-195628 |M | 7.88 | 9.52 | |J | | | | | |71144 2MASS| +724197 |V4197 Sgr |190557.9-192853 |EW/KE | 7.95 | 8.70 | |V | | | | | |71179 BD | +724198 |V4198 Sgr |190708.3-184417 |* | 6.23 | 6.29 | |V | | | | | |71123 BD | +724199 |V4199 Sgr |192137.1-191404 |* | 6.18 | 6.26 | |V | | | | | |71123 BD | +724200 |V4200 Sgr |195417.8-235628 |BY | 6.18 |( 0.07 )| |V | | | | | |71001 CoD | +724201 |V4201 Sgr |175318.9-265637 |SR | 7.76 |( 2.20 )| |J | | | | | |72036 72142| +724202 |V4202 Sgr |180324.9-223701 |E: | 8.21 |( 0.25 )| |V | | | | | |72015 BD | +724203 |V4203 Sgr |180422.7-242210 |INA | 9.60 | 10.19 | |V | | | | | |72028 72143| +724204 |V4204 Sgr |180549.7-241521 |INA | 11.06 | 11.35 | |V | | | | | |72028 72143| +724327 |V4327 Sgr |181249.9-292905 |NA | 8. |< 12. | |V | | | | | |72146 | +724328 |V4328 Sgr |181753.4-310850 |M | 9.32 | 12.73 | |H | | | | | |72147 2MASS| +724330 |V4330 Sgr |182712.9-283028 |M | 10.48 | 12.94 | |J | | | | | |72147 2MASS| +724331 |V4331 Sgr |183103.7-270541 |M | 9.61 | 12.20 | |J | | | | | |72147 2MASS| +724332 |V4332 Sgr |185036.7-212329 |* | 8. | 17. | |V | | | | | |72149 2MASS| +724333 |V4333 Sgr |193626.1-185111 |DSCT | 5.48 | 5.60 | |V | | | | | |72150 BD | +724334 |V4334 Sgr |175232.7-174108 |* | 10.90 | 21. | |V | | | | | |73280 73280| +724335 |V4335 Sgr |175817.5-290913 |M | 8.01 | 10.57 | |K | | | | | |73281 2MASS| +724336 |V4336 Sgr |175906.2-284907 |M | 9.28 | 11.16 | |J | | | | | |73281 2MASS| +724337 |V4337 Sgr |175917.2-291622 |M | 8.67 | 12.64 | |J | | | | | |73281 2MASS| +724338 |V4338 Sgr |175918.3-290953 |UG | 8.0 |< 14. | |V | | | | | |73282 | +724339 |V4339 Sgr |175949.6-285306 |M | 10.78 | 13.86 | |J | | | | | |73281 2MASS| +724340 |V4340 Sgr |180100.1-290049 |SRA | 8.24 | 8.61 | |J | | | | | |73281 2MASS| +724341 |V4341 Sgr |180102.5-291405 |M | 7.27 | 8.37 | |K | | | | | |73281 2MASS| +724361 |V4361 Sgr |182342.5-180715 |N | 10.6 |< 15.5 | |p | | | | | |73374 | +724362 |V4362 Sgr |183023.1-171157 |NB | 8.0 |< 15.0 | |V | | | | | |73288 | +724368 |V4368 Sgr |185440.3-194200 |NC: | 10.0 |< 21. | |V | | | | | |73291 73292| +724371 |V4371 Sgr |192257.3-141532 |BY | 9.42 | 9.60 | |V | | | | | |73293 BD | +724372 |V4372 Sgr |192835.3-150608 |ELL: | 6.76 | 6.80 | |V | | | | | |73294 BD | +724373 |V4373 Sgr |193920.4-294434 |ACVO | 9.94 |( 0.01 B )| |V | | | | | |73295 CoD | +724374 |V4374 Sgr |201758.9-280759 |EA: | 8.87 | 9.22 | |V | | | | | |73296 73296| +724375 |V4375 Sgr |174814.0-280053 |BE | 8.93 | 9.06 | |Hp| | | | | |HIP HIP | +724376 |V4376 Sgr |175915.8-193227 |ELL: | 9.14 | 9.27 | |Hp| | | | | |HIP HIP | +724377 |V4377 Sgr |180032.7-335456 |LB: | 8.94 | 9.04 | |Hp| | | | | |HIP HIP | +724378 |V4378 Sgr |180228.3-191025 |LB | 9.94 | 10.47 | |Hp| | | | | |HIP HIP | +724379 |V4379 Sgr |180533.3-194515 |BE: | 7.03 | 7.13 | |Hp| | | | | |HIP HIP | +724380 |V4380 Sgr |180728.7-283024 |LB | 9.68 | 10.13 | |Hp| | | | | |HIP HIP | +724381 |V4381 Sgr |180838.6-212658 |ACYG: | 6.57 | 6.62 | |Hp| | | | | |HIP HIP | +724382 |V4382 Sgr |180844.9-220939 |BCEP | 7.93 | 7.98 | |Hp| | | | | |HIP HIP | +724383 |V4383 Sgr |181124.3-204245 |BE | 8.69 | 8.82 | |Hp| | | | | |HIP HIP | +724384 |V4384 Sgr |181214.7-192558 |ACYG: | 7.20 | 7.30 | |Hp| | | | | |HIP HIP | +724385 |V4385 Sgr |181237.6-281411 |ELL: | 7.42 | 7.46 | |Hp| | | | | |HIP HIP | +724386 |V4386 Sgr |181442.1-330827 |E: | 8.37 | 8.55 | |Hp| | | | | |HIP HIP | +724387 |V4387 Sgr |181530.8-183942 |ACV | 6.09 | 6.12 | |Hp| | | | | |HIP HIP | +724388 |V4388 Sgr |181556.0-314532 |LB: | 8.25 | 8.34 | |Hp| | | | | |HIP HIP | +724389 |V4389 Sgr |181751.6-272117 |SRB: | 7.16 | 7.26 | |Hp| | | | | |HIP HIP | +724390 |V4390 Sgr *|182148.9-161929 |EB | 7.75 | 7.87 | |Hp| | | | | |HIP HIP | +724391 |V4391 Sgr |182224.7-321252 |SRB | 8.32 | 8.53 | |Hp| | | | | |HIP HIP | +724392 |V4392 Sgr |182314.7-282444 |SRD: | 8.41 | 8.55 | |Hp| | | | | |HIP HIP | +724393 |V4393 Sgr |182319.9-203913 |LB: | 7.54 | 7.65 | |Hp| | | | | |HIP HIP | +724394 |V4394 Sgr |182501.3-193326 |EB: | 10.52 | 11.06 | |Hp| | | | | |HIP HIP | +724395 |V4395 Sgr |182944.9-341608 |SRB | 8.10 | 8.27 | |Hp| | | | | |HIP HIP | +724396 |V4396 Sgr |183002.1-332943 |EA | 7.68 | 8.11 | |Hp| | | | | |HIP HIP | +724397 |V4397 Sgr |183129.0-211458 |SRB | 8.11 | 8.27 | |Hp| | | | | |HIP HIP | +724398 |V4398 Sgr |183310.1-182206 |ACYG | 6.89 | 6.93 | |Hp| | | | | |HIP HIP | +724399 |V4399 Sgr |183405.1-325740 |EA: | 7.13 | 7.31 | |Hp| | | | | |HIP HIP | +724400 |V4400 Sgr |183520.5-220527 |BE | 8.02 | 8.15 | |Hp| | | | | |HIP HIP | +724401 |V4401 Sgr |183523.7-191607 |SRB | 6.64 | 6.77 | |Hp| | | | | |HIP HIP | +724402 |V4402 Sgr |183620.9-321938 |LB | 8.35 | 8.65 | |Hp| | | | | |HIP HIP | +724403 |V4403 Sgr |184211.5-340225 |EA | 8.68 | 9.14 | |Hp| | | | | |HIP HIP | +724404 |V4404 Sgr |184553.2-182151 |ACV | 7.43 | 7.48 | |Hp| | | | | |HIP HIP | +724405 |V4405 Sgr |184601.1-193623 |SRB: | 6.20 | 6.33 | |Hp| | | | | |HIP HIP | +724406 |V4406 Sgr |184647.3-293754 |SRB | 6.73 | 6.89 | |Hp| | | | | |HIP HIP | +724407 |V4407 Sgr |185241.7-304403 |EB | 6.62 | 6.80 | |Hp| | | | | |HIP HIP | +724408 |V4408 Sgr |185418.0-195559 |LPB: | 8.28 | 8.37 | |Hp| | | | | |HIP HIP | +724409 |V4409 Sgr |190447.9-184227 |BE | 8.67 | 8.78 | |Hp| | | | | |HIP HIP | +724410 |V4410 Sgr |190736.8-314018 |LB: | 8.48 | 8.60 | |Hp| | | | | |HIP HIP | +724411 |V4411 Sgr |191426.5-291626 |E: | 8.50 | 8.76 | |Hp| | | | | |HIP HIP | +724412 |V4412 Sgr |192013.4-361340 |LB: | 7.97 | 8.10 | |Hp| | | | | |HIP HIP | +724413 |V4413 Sgr |192036.9-275958 |LB: | 8.75 | 8.86 | |Hp| | | | | |HIP HIP | +724414 |V4414 Sgr |192031.8-170240 |SRB | 7.60 | 7.77 | |Hp| | | | | |HIP HIP | +724415 |V4415 Sgr |192225.7-315612 |SRB | 6.93 | 7.04 | |Hp| | | | | |HIP HIP | +724416 |V4416 Sgr |192247.9-323012 |SRB | 8.01 | 8.17 | |Hp| | | | | |HIP HIP | +724417 |V4417 Sgr *|192329.7-343137 |E: | 8.94 | 9.34 | |Hp| | | | | |HIP HIP | +724418 |V4418 Sgr |192850.7-163103 |LB: | 8.47 | 8.57 | |Hp| | | | | |HIP HIP | +724419 |V4419 Sgr |193228.5-305210 |SRB | 6.47 | 6.65 | |Hp| | | | | |HIP HIP | +724420 |V4420 Sgr |194128.5-200506 |SRB: | 8.62 | 8.82 | |Hp| | | | | |HIP HIP | +724421 |V4421 Sgr |194247.8-201145 |LB | 9.20 | 9.39 | |Hp| | | | | |HIP HIP | +724422 |V4422 Sgr |194632.1-161234 |LB: | 8.01 | 8.07 | |Hp| | | | | |HIP HIP | +724423 |V4423 Sgr |194833.9-160949 |LB: | 8.17 | 8.27 | |Hp| | | | | |HIP HIP | +724424 |V4424 Sgr |195401.9-301510 |RRAB | 10.04 | 10.68 | |Hp| | | | | |HIP HIP | +724425 |V4425 Sgr |195509.8-254826 |SXPHE: | 9.38 | 9.92 | |Hp| | | | | |HIP HIP | +724426 |V4426 Sgr |195602.7-364004 |SRB | 8.67 | 8.85 | |Hp| | | | | |HIP HIP | +724427 |V4427 Sgr |195622.6-162219 |LB | 8.58 | 8.76 | |Hp| | | | | |HIP HIP | +724428 |V4428 Sgr |200104.8-421011 |EA | 8.26 | 8.53 | |Hp| | | | | |HIP HIP | +724429 |V4429 Sgr *|200629.4-181829 |SRD: | 8.12 | 8.30 | |Hp| | | | | |HIP HIP | +724430 |V4430 Sgr |201034.8-391245 |LB | 8.86 | 9.18 | |Hp| | | | | |HIP HIP | +724431 |V4431 Sgr |201212.3-293311 |SRD | 8.54 | 8.68 | |Hp| | | | | |HIP HIP | +724432 |V4432 Sgr |201223.6-354658 |LB: | 8.23 | 8.35 | |Hp| | | | | |HIP HIP | +724433 |V4433 Sgr |201250.2-345408 |IB: | 10.63 | 11.36 | |Hp| | | | | |HIP HIP | +724434 |V4434 Sgr |201623.6-362713 |LB | 6.16 | 6.33 | |Hp| | | | | |HIP HIP | +724435 |V4435 Sgr |201736.1-292339 |LB | 8.66 | 8.86 | |Hp| | | | | |HIP HIP | +724436 |V4436 Sgr |201836.8-380531 |LB: | 8.91 | 9.06 | |Hp| | | | | |HIP HIP | +724437 |V4437 Sgr |201958.2-323700 |EB | 7.26 | 7.56 | |Hp| | | | | |HIP HIP | +724438 |V4438 Sgr |202148.0-404520 |LB | 6.99 | 7.10 | |Hp| | | | | |HIP HIP | +724439 |V4439 Sgr |202142.5-362817 |SRB: | 8.48 | 8.92 | |Hp| | | | | |HIP HIP | +724440 |V4440 Sgr |202531.8-391946 |LB: | 8.75 | 8.88 | |Hp| | | | | |HIP HIP | +724441 |V4441 Sgr |202520.9-295905 |LB | 7.42 | 7.53 | |Hp| | | | | |HIP HIP | +724442 |V4442 Sgr |202626.1-370633 |LB: | 8.47 | 8.59 | |Hp| | | | | |HIP HIP | +724443 |V4443 Sgr |202707.9-385935 |LB | 7.78 | 7.91 | |Hp| | | | | |HIP HIP | +724444 |V4444 Sgr |180736.2-272013 |NA | 7.7 |< 21. | |V | | | | | |75225 75304| +724445 |V4445 Sgr |174357.0-290028 |M | 8.2 | 9.2 | |K | | | | | |75191 2MASS| +724446 |V4446 Sgr |174356.9-285031 |M | 9.9 | 11.5 | |K | | | | | |75191 2MASS| +724447 |V4447 Sgr |174404.7-291954 |M | 9.3 | 11.9 | |K | | | | | |75191 2MASS| +724448 |V4448 Sgr |174407.5-292446 |M | 10.1 | 11.3 | |K | | | | | |75191 2MASS| +724449 |V4449 Sgr |174415.0-284506 |M | 7.7 | 8.8 | |K | | | | | |75191 2MASS| +724450 |V4450 Sgr |174419.2-284422 |M | 8.8 | 10.3 | |K | | | | | |75191 2MASS| +724451 |V4451 Sgr |174428.4-285100 |M | 9.0 | 11.4 | |K | | | | | |75191 2MASS| +724452 |V4452 Sgr |174429.4-290459 |M | 5.93 | 6.96 | |L'| | | | | |75226 2MASS| +724453 |V4453 Sgr |174430.1-290114 |M | 8.75 | 9.90 | |K | | | | | |75191 2MASS| +724454 |V4454 Sgr |174431.4-290104 |M: | 8.9 | 9.6 | |K | | | | | |75191 2MASS| +724456 |V4456 Sgr |174433.9-292307 |M | 11.3 | 12.6 | |K | | | | | |75191 2MASS| +724457 |V4457 Sgr |174434.3-291039 |M | 10.6 | 12.6 | |K | | | | | |75191 2MASS| +724458 |V4458 Sgr |174435.0-290436 |M | 3.60 | 5.51 | |L'| | | | | |75226 2MASS| +724459 |V4459 Sgr |174436.5-290020 |M | 11.0 | 12.8 | |K | | | | | |75191 2MASS| +724460 |V4460 Sgr |174437.5-292305 |M | 11.1 | 12.1 | |K | | | | | |75191 2MASS| +724461 |V4461 Sgr |174438.5-292322 |M | 9.9 | 11.4 | |K | | | | | |75191 2MASS| +724462 |V4462 Sgr |174439.7-291646 |M | 10.0 | 12.6 | |K | | | | | |75191 2MASS| +724463 |V4463 Sgr |174444.4-290538 |M | 9.6 | 11.8 | |K | | | | | |75191 2MASS| +724465 |V4465 Sgr |174446.0-290614 |M | 9.9 | 12.1 | |K | | | | | |75191 2MASS| +724466 |V4466 Sgr |174451.3-290945 |M | 10.8 | 12.7 | |K | | | | | |75191 2MASS| +724467 |V4467 Sgr |174451.3-290921 |M | 8.95 | 10.10 | |K | | | | | |75191 2MASS| +724468 |V4468 Sgr |174454.2-291345 |M | 8.25 | 9.25 | |K | | | | | |75191 2MASS| +724469 |V4469 Sgr |174455.6-285227 |M | 10.9 | 12.6 | |K | | | | | |75191 2MASS| +724470 |V4470 Sgr |174456.8-291326 |M | 4.74 | 5.92 | |L'| | | | | |75226 2MASS| +724471 |V4471 Sgr |174457.7-292042 |M | 10.1 | 12.6 | |K | | | | | |75191 2MASS| +724472 |V4472 Sgr |174502.4-285055 |M: | 11.6 | 12.5 | |K | | | | | |75191 2MASS| +724473 |V4473 Sgr |174503.2-290713 |M | 9.2 | 10.6 | |K | | | | | |75191 2MASS| +724474 |V4474 Sgr |174503.3-285023 |M: | 10.3 | 11.1 | |K | | | | | |75191 2MASS| +724475 |V4475 Sgr |174505.3-291713 |M | 7.0 | 8.0 | |K | | | | | |75191 2MASS| +724476 |V4476 Sgr |174506.3-291705 |M | 9.5 | 11.4 | |K | | | | | |75191 2MASS| +724477 |V4477 Sgr |174507.0-290335 |M | 8.4 | 9.7 | |K | | | | | |75191 2MASS| +724478 |V4478 Sgr |174508.0-290343 |M: | 9.0 | 9.7 | |K | | | | | |75191 2MASS| +724479 |V4479 Sgr |174508.8-285917 |M | 9.6 | 11.5 | |K | | | | | |75191 2MASS| +724480 |V4480 Sgr |174510.4-291812 |M | 10.2 | 13.1 | |K | | | | | |75191 2MASS| +724481 |V4481 Sgr |174511.4-283839 |M | 11.0 | 13.6 | |K | | | | | |75191 2MASS| +724482 |V4482 Sgr |174512.9-291255 |M | 8.9 | 10.5 | |K | | | | | |75191 2MASS| +724483 |V4483 Sgr |174513.1-290936 |M | 8.9 | 10.1 | |K | | | | | |75191 2MASS| +724484 |V4484 Sgr |174512.4-284044 |M | 8.0 | 9.7 | |K | | | | | |75191 2MASS| +724485 |V4485 Sgr |174514.0-291528 |M | 10.2 | 13.3 | |K | | | | | |75191 2MASS| +724487 |V4487 Sgr |174514.3-290721 |M | 9.8 | 11.4 | |K | | | | | |75191 2MASS| +724488 |V4488 Sgr |174514.4-290918 |M | 11.1 | 13.2 | |K | | | | | |75191 | +724489 |V4489 Sgr |174513.9-284743 |M | 5.18 | 6.72 | |L'| | | | | |75226 2MASS| +724490 |V4490 Sgr |174516.4-291538 |M | 7.9 | 9.2 | |K | | | | | |75191 2MASS| +724492 |V4492 Sgr |174517.8-290553 |M | 5.34 | 6.98 | |L'| | | | | |75226 2MASS| +724493 |V4493 Sgr |174518.3-285839 |M | 8.4 | 9.4 | |K | | | | | |75191 2MASS| +724494 |V4494 Sgr |174519.3-291406 |M | 8.4 | 10.0 | |K | | | | | |75191 2MASS| +724495 |V4495 Sgr |174518.9-285858 |M | 10.1 | 12.0 | |K | | | | | |75191 2MASS| +724496 |V4496 Sgr |174526.4-290804 |M | 5.45 | 6.94 | |L'| | | | | |75226 2MASS| +724497 |V4497 Sgr |174529.5-290917 |M | 6.32 | 7.72 | |L'| | | | | |75226 | +724498 |V4498 Sgr |174530.4-292100 |M | 9.7 | 11.3 | |K | | | | | |75191 2MASS| +724499 |V4499 Sgr |174529.4-283935 |M | 10.1 | 12.2 | |K | | | | | |75191 2MASS| +724500 |V4500 Sgr |174531.9-292500 |M: | 11.6 | 12.4 | |K | | | | | |75191 2MASS| +724501 |V4501 Sgr |174531.4-284622 |M | 5.91 | 6.85 | |L'| | | | | |75226 2MASS| +724502 |V4502 Sgr |174532.1-284619 |LB | 6.91 | 7.53 | |L'| | | | | |75226 2MASS| +724503 |V4503 Sgr |174533.2-291120 |SR: | 8.30 |< 9.8 | |L'| | | | | |75226 | +724504 |V4504 Sgr |174533.2-290329 |M | 9.8 | 11.5 | |K | | | | | |75191 2MASS| +724505 |V4505 Sgr |174533.5-290216 |M | 6.35 | 7.93 | |L'| | | | | |75226 | +724506 |V4506 Sgr |174534.3-284956 |M | 10.8 | 13.2 | |K | | | | | |75191 2MASS| +724507 |V4507 Sgr |174534.8-290603 |M | 8.4 | 10.2 | |K | | | | | |75191 2MASS| +724508 |V4508 Sgr |174537.9-285926 |SR: | 11.7 | 12.6 | |K | | | | | |75191 2MASS| +724509 |V4509 Sgr |174538.3-290234 |LB | 12.0 | 12.6 | |K | | | | | |75191 | +724510 |V4510 Sgr |174538.5-290204 |M: | 7.8 | 8.7 | |K | | | | | |75191 2MASS| +724511 |V4511 Sgr |174540.7-290024 |M: | 9.2 | 9.9 | |K | | | | | |75191 2MASS| +724512 |V4512 Sgr |174540.7-290024 |M | 9.6 | 10.8 | |K | | | | | |75191 2MASS| +724513 |V4513 Sgr |174540.6-290056 |LB | 11.2 | 12.6 | |K | | | | | |75191 | +724514 |V4514 Sgr |174541.4-290127 |M: | 10.0 | 10.9 | |K | | | | | |75191 2MASS| +724515 |V4515 Sgr |174542.4-285918 |M | 9.2 | 10.3 | |K | | | | | |75191 2MASS| +724516 |V4516 Sgr |174542.9-285902 |M | 8.0 | 10.2 | |K | | | | | |75191 2MASS| +724517 |V4517 Sgr |174544.3-285913 |LB | 8.0 | 8.4 | |K | | | | | |75191 2MASS| +724518 |V4518 Sgr |174546.6-283240 |M | 8.5 | 11.0 | |K | | | | | |75191 2MASS| +724519 |V4519 Sgr |174548.5-291045 |M | 8.8 | 11.1 | |K | | | | | |75191 2MASS| +724520 |V4520 Sgr |174549.4-285849 |M | 8.9 | 10.4 | |K | | | | | |75191 2MASS| +724521 |V4521 Sgr |174551.3-285807 |M | 10.3 | 11.7 | |K | | | | | |75191 2MASS| +724522 |V4522 Sgr |174551.3-284807 |M | 4.75 | 6.22 | |L'| | | | | |75226 2MASS| +724523 |V4523 Sgr |174552.6-291430 |M | 9.8 | 12.0 | |K | | | | | |75191 2MASS| +724524 |V4524 Sgr |174552.0-284451 |M | 11.5 | 14.2 | |K | | | | | |75191 | +724525 |V4525 Sgr |174553.2-291441 |M: | 8.4 | 9.3 | |K | | | | | |75191 2MASS| +724526 |V4526 Sgr |174553.3-290034 |M | 11.9 | 13.6 | |K | | | | | |75191 | +724527 |V4527 Sgr |174553.4-285813 |M: | 9.7 | 10.4 | |K | | | | | |75191 2MASS| +724528 |V4528 Sgr |174554.7-285954 |M: | 8.8 | 9.3 | |K | | | | | |75191 2MASS| +724529 |V4529 Sgr |174554.2-283146 |M | 8.7 | 11.7 | |K | | | | | |75191 2MASS| +724530 |V4530 Sgr |174556.1-285552 |M | 5.57 | 7.03 | |L'| | | | | |75226 2MASS| +724531 |V4531 Sgr |174555.8-284519 |M | 5.81 | 8.48 | |L'| | | | | |75226 2MASS| +724532 |V4532 Sgr |174556.1-283928 |M | 9.7 | 12.0 | |K | | | | | |75191 2MASS| +724533 |V4533 Sgr |174558.9-290113 |M: | 8.6 | 9.2 | |K | | | | | |75191 2MASS| +724534 |V4534 Sgr |174558.9-285835 |M | 9.7 | 12.2 | |K | | | | | |75191 2MASS| +724535 |V4535 Sgr |174559.5-285524 |M: | 8.7 | 9.6 | |K | | | | | |75191 75227| +724536 |V4536 Sgr |174600.3-285012 |M | 10.7 | 13.0 | |K | | | | | |75191 2MASS| +724537 |V4537 Sgr |174600.2-285014 |M | 11.0 | 12.7 | |K | | | | | |75191 2MASS| +724539 |V4539 Sgr |174601.7-284957 |M | 10.0 | 11.5 | |K | | | | | |75191 2MASS| +724540 |V4540 Sgr |174601.6-285001 |M | 10.1 | 11.6 | |K | | | | | |75191 2MASS| +724541 |V4541 Sgr |174602.9-284421 |M | 11.9 | 13.1 | |K | | | | | |75191 | +724542 |V4542 Sgr |174604.8-284400 |M | 9.5 | 10.8 | |K | | | | | |75191 2MASS| +724543 |V4543 Sgr |174606.4-290930 |M: | 12.5 | 13.3 | |K | | | | | |75191 | +724544 |V4544 Sgr |174607.3-291400 |M | 10.1 | 12.9 | |K | | | | | |75191 | +724546 |V4546 Sgr |174608.0-290913 |M | 11.2 | 12.8 | |K | | | | | |75191 | +724547 |V4547 Sgr |174610.4-290043 |M: | 8.7 | 9.4 | |K | | | | | |75191 2MASS| +724548 |V4548 Sgr |174614.5-283640 |M | 11.8 | 13.8 | |K | | | | | |75191 2MASS| +724549 |V4549 Sgr |174615.0-284417 |M | 8.4 | 9.5 | |K | | | | | |75191 2MASS| +724550 |V4550 Sgr |174615.3-285542 |M | 6.42 | 8.47 | |L'| | | | | |75226 | +724551 |V4551 Sgr |174622.1-284623 |M | 9.3 | 11.2 | |K | | | | | |75191 2MASS| +724552 |V4552 Sgr |174624.9-290001 |M | 10.6 | 13.0 | |K | | | | | |75191 2MASS| +724553 |V4553 Sgr |174625.8-285000 |M | 8.3 | 10.0 | |K | | | | | |75191 2MASS| +724554 |V4554 Sgr |174628.0-285338 |M: | 9.0 | 9.6 | |K | | | | | |75191 2MASS| +724555 |V4555 Sgr |174628.7-285320 |M | 8.1 | 9.8 | |K | | | | | |75191 2MASS| +724556 |V4556 Sgr |174630.8-283134 |M | 9.2 | 10.4 | |K | | | | | |75191 | +724557 |V4557 Sgr |174631.4-283948 |M | 8.4 | 9.5 | |K | | | | | |75191 | +724558 |V4558 Sgr |174631.3-283106 |M: | 9.4 | 10.1 | |K | | | | | |75191 2MASS| +724559 |V4559 Sgr |174631.7-283541 |M | 11.2 | 12.4 | |K | | | | | |75191 | +724560 |V4560 Sgr |174633.1-284502 |M | 10.0 | 11.2 | |K | | | | | |75191 | +724561 |V4561 Sgr |174635.6-292151 |M | 10.6 | 13.4 | |K | | | | | |75191 2MASS| +724562 |V4562 Sgr |174635.3-285857 |M | 7.36 | 9.53 | |L'| | | | | |75226 | +724564 |V4564 Sgr |174637.6-291928 |M | 9.0 | 10.0 | |K | | | | | |75191 2MASS| +724565 |V4565 Sgr |174638.1-291931 |M | 9.4 | 10.8 | |K | | | | | |75191 2MASS| +724566 |V4566 Sgr |174637.3-283226 |M | 9.5 | 10.8 | |K | | | | | |75191 2MASS| +724567 |V4567 Sgr |174642.3-283326 |M | 10.5 | 12.2 | |K | | | | | |75191 2MASS| +724569 |V4569 Sgr |174643.9-180242 |M | 12.0 |< 14.5 | |p | | | | | |75228 2MASS| +724570 |V4570 Sgr |174702.2-284556 |M | 9.2 | 11.1 | |K | | | | | |75191 2MASS| +724571 |V4571 Sgr |174719.5-292032 |M: | 8.7 | 9.4 | |K | | | | | |75191 2MASS| +724572 |V4572 Sgr |174721.3-292025 |M | 9.4 | 11.2 | |K | | | | | |75191 2MASS| +724573 |V4573 Sgr |174721.3-283923 |M | 10.7 | 13.1 | |K | | | | | |75191 2MASS| +724574 |V4574 Sgr |174724.0-283243 |M | 8.15 | 9.65 | |K | | | | | |75191 2MASS| +724576 |V4576 Sgr |174740.0-283521 |M: | 9.1 | 9.8 | |K | | | | | |75191 UCAC2| +724577 |V4577 Sgr |180029.4-284831 |M | 6.53 | 7.63 | |J | | | | | |75229 2MASS| +724579 |V4579 Sgr |180337.9-280009 |NB | 11.0 | 16.5 | |B | | | | | |75307 2MASS| +724633 |V4633 Sgr |182140.5-273137 |NA | 7.4 |< 20. | |V | | | | | |75232 75233| +724635 |V4635 Sgr |183341.6-300926 |M | 11.6 |< 15.0 | |p | | | | | |75002 2MASS| +724636 |V4636 Sgr |185039.6-163328 |M | 12.4 | 15.0 | |p | | | | | |75064 75064| +724637 |V4637 Sgr |185218.4-262757 |M | 11.8 |< 15.0 | |V | | | | | |75236 75236| +724638 |V4638 Sgr |193400.4-205556 |SR | 9.05 | 9.33 | |V | | | | | |75169 BD | +724639 |V4639 Sgr |195525.8-242741 |EA | 12.3 | 14.3 | |p | | | | | |75002 UCAC2| +724640 |V4640 Sgr |201504.8-400544 |RPHS | 12.47 |( 0.02 )| |V | | | | | |75237 GSC | +724641 |V4641 Sgr |181921.6-252426 |XN | 9. | 13.8 | |V | | | | | |75309 75310| +724642 |V4642 Sgr |175509.8-194601 |NA | 10.4 |< 19. | |V | | | | | |76166 76165| +724643 |V4643 Sgr |175440.4-261415 |NA | 8.1 | 16. | |V | | | | | |76275 GSC22| +724644 |V4644 Sgr |174614.4-285003 |M | 8.2 | 9.2 | |K | | | | | |76162 76162| +724645 |V4645 Sgr |174614.9-284843 |M | 9.6 | 11.3 | |K | | | | | |76162 76162| +724646 |V4646 Sgr |174615.1-284928 |M | 8.0 | 9.6 | |K | | | | | |76162 76162| +724647 |V4647 Sgr |174615.2-285004 |SDOR | 7.1 | 7.6 | |K | | | | | |76162 76267| +724648 |V4648 Sgr |174615.6-285024 |M | 9.6 | 10.5 | |K | | | | | |76162 76162| +724649 |V4649 Sgr |174617.4-285014 |M | 7.9 | 8.6 | |K | | | | | |76162 76162| +724650 |V4650 Sgr |174618.0-284904 |SDOR | 7.0 | 7.9 | |K | | | | | |76162 76267| +724653 |V4653 Sgr |175302.0-173534 |SR: | 12.2 | 14.2 | |* | | | | | |76057 76057| +724654 |V4654 Sgr |175313.6-172844 |M: | 12.1 | 14.8 | |* | | | | | |76072 76057| +724655 |V4655 Sgr |175434.3-194406 |SR: | 11.5 | 13.0 | |* | | | | | |76057 76057| +724658 |V4658 Sgr |175734.1-282608 |M: | 12.1 |< 14.5 | |* | | | | | |76057 2MASS| +724659 |V4659 Sgr |175737.6-255940 |SR: | 11.7 | 13.0 | |* | | | | | |76057 76057| +724660 |V4660 Sgr |175740.1-204623 |SR: | 12.4 | 13.9 | |* | | | | | |76057 76057| +724663 |V4663 Sgr |175751.3-244632 |SR: | 12.4 | 14.1 | |* | | | | | |76057 2MASS| +724665 |V4665 Sgr |175801.4-293637 |L: | 12.3 |< 15.0 | |* | | | | | |76057 76057| +724667 |V4667 Sgr |175828.5-293801 |SR: | 12.0 | 14.1 | |* | | | | | |76057 2MASS| +724668 |V4668 Sgr |175829.0-275203 |SR: | 12.3 | 14.6 | |* | | | | | |76057 76057| +724669 |V4669 Sgr |175831.5-311446 |M: | 11.8 |< 14.0 | |* | | | | | |76072 2MASS| +724670 |V4670 Sgr |175840.7-281224 |SR: | 9.9 | 11.9 | |* | | | | | |76057 UCAC2| +724671 |V4671 Sgr |175842.3-181507 |M: | 10.5 | 12.8 | |* | | | | | |76269 2MASS| +724672 |V4672 Sgr |175845.8-295604 |M: | 11.4 |< 14.4 | |* | | | | | |76072 76057| +724677 |V4677 Sgr |175907.8-272928 |SR: | 11.6 | 12.8 | |* | | | | | |76057 2MASS| +724679 |V4679 Sgr |175918.3-205237 |SR: | 11.7 | 13.9 | |* | | | | | |76269 2MASS| +724681 |V4681 Sgr |175934.1-211941 |SR: | 12.2 | 13.3 | |* | | | | | |76057 2MASS| +724682 |V4682 Sgr |175937.4-293828 |SR: | 11.6 | 13.2 | |* | | | | | |76072 76057| +724683 |V4683 Sgr |175939.6-251329 |M | 10.8 | 19. :B | |* | | | | | |76168 2MASS| +724684 |V4684 Sgr |175940.5-293758 |SR: | 12.5 | 13.6 | |* | | | | | |76072 UCAC2| +724688 |V4688 Sgr |175957.0-245137 |M: | 12.3 | 14.8 | |* | | | | | |76057 76057| +724689 |V4689 Sgr |175959.3-280320 |SR: | 12.0 | 13.6 | |* | | | | | |76057 2MASS| +724692 |V4692 Sgr |180009.5-274742 |SR: | 12.2 | 14.1 | |* | | | | | |76269 2MASS| +724694 |V4694 Sgr |180030.4-272346 |SR: | 12.1 | 13.9 | |* | | | | | |76057 76057| +724695 |V4695 Sgr |180041.3-293737 |SR: | 11.7 | 12.6 | |* | | | | | |76057 2MASS| +724698 |V4698 Sgr |180053.1-312852 |M: | 12.3 | 15.2 | |* | | | | | |76057 UCAC2| +724700 |V4700 Sgr |180102.5-311426 |M: | 12.5 | 15.4 | |* | | | | | |76072 2MASS| +724701 |V4701 Sgr |180109.9-300331 |M: | 11.1 | 14.4 | |* | | | | | |76057 76057| +724706 |V4706 Sgr |180130.2-275701 |SR: | 11.9 | 12.7 | |* | | | | | |76057 2MASS| +724710 |V4710 Sgr |180219.5-274203 |SR: | 11.9 | 12.8 | |* | | | | | |76057 76057| +724712 |V4712 Sgr |180225.3-275036 |SR: | 10.8 | 12.5 | |* | | | | | |76057 2MASS| +724713 |V4713 Sgr |180229.5-302415 |M: | 11.9 | 14.5 | |* | | | | | |76057 2MASS| +724714 |V4714 Sgr |180230.4-245126 |SR: | 11.2 | 12.5 | |* | | | | | |76269 76057| +724715 |V4715 Sgr |180233.9-312520 |SR: | 12.2 | 14.3 | |* | | | | | |76072 76057| +724720 |V4720 Sgr |180757.7-271552 |SR: | 12.5 | 14.5 | |* | | | | | |76057 UCAC2| +724723 |V4723 Sgr |181146.9-292023 |M | 11.9 |< 13.1 | |V | | | | | |76172 2MASS| +724724 |V4724 Sgr |181157.9-185213 |M: | 11.1 |< 13.2 | |V | | | | | |76173 2MASS| +724725 |V4725 Sgr |181326.0-285652 |SR | 10.9 | 11.8 | |V | | | | | |76174 2MASS| +724726 |V4726 Sgr |182619.2-292813 |M | 12.1 |< 13.4 | |V | | | | | |76178 UCAC2| +724727 |V4727 Sgr |183330.7-285851 |E | 10.6 |< 13.8 | |V | | | | | |76182 DM | +724728 |V4728 Sgr |184137.0-275701 |SRD | 9.00 | 9.28 | |V | | | | | |76084 DM | +724730 |V4730 Sgr |185901.4-165158 |SR: | 11.3 | 12.6 | |* | | | | | |76057 2MASS| +724732 |V4732 Sgr |185939.6-142617 |PVTEL | 11.13 | 11.15 | |V | | | | | |76196 GSC | +724733 |V4733 Sgr |190222.2-182518 |SR: | 11.9 | 13.3 | |* | | | | | |76057 2MASS| +724735 |V4735 Sgr |191338.2-182435 |M: | 11.2 |< 13.8 | |V | | | | | |76204 2MASS| +724736 |V4736 Sgr |194201.4-231037 |M | 12.4 |< 15.0 | |V | | | | | |76216 UCAC2| +724737 |V4737 Sgr |201726.5-300427 |SR: | 12.2 | 14.4 | |V | | | | | |76225 UCAC2| +724739 |V4739 Sgr |182446.0-300041 |NA | 7.2 |< 18. | |V | | | | | |77153 77222| +724740 |V4740 Sgr |181146.0-303051 |NA | 6.5 |< 18. | |V | | | | | |77150 77151| +724741 |V4741 Sgr |175959.6-305321 |NA | 9.2 |< 18. | |V | | | | | |77138 | +724742 |V4742 Sgr |180221.9-252032 |NA | 8.0 |< 18. | |V | | | | | |77141 77142| +724743 |V4743 Sgr |190109.3-220006 |NA | 5.0 | 16.8 : | |V | | | | | |77163 77224| +724744 |V4744 Sgr |174721.6-232821 |NA | 9.7 |< 20. | |R | | | | | |77134 77135| +724745 |V4745 Sgr |184002.5-332656 |N | 7.41 |< 17. | |V | | | | | |77229 77213| +724746 |V4746 Sgr |174446.7-285108 |M | 8.5 | 9.7 | |K | | | | | |77133 2MASS| +724747 |V4747 Sgr |174446.9-290221 |SR: | 8.2 | 9.3 | |K | | | | | |77133 2MASS| +724748 |V4748 Sgr |174448.5-285907 |M: | 7.8 | 8.9 | |K | | | | | |77133 2MASS| +724749 |V4749 Sgr |174448.8-290148 |M | 8.7 | 9.2 | |K | | | | | |77133 2MASS| +724750 |V4750 Sgr |174449.4-291150 |M: | 9.0 | 9.7 | |K | | | | | |77133 2MASS| +724751 |V4751 Sgr |174449.5-290316 |M | 9.0 | 9.6 | |K | | | | | |77133 2MASS| +724752 |V4752 Sgr |174449.7-290722 |M | 9.3 | 10.6 | |K | | | | | |77133 2MASS| +724753 |V4753 Sgr |174450.0-285709 |M | 9.9 | 10.6 | |K | | | | | |77133 2MASS| +724754 |V4754 Sgr |174450.1-285803 |M: | 9.6 | 10.7 | |K | | | | | |77133 2MASS| +724755 |V4755 Sgr |174451.7-290803 |M: | 9.5 | 10.2 | |K | | | | | |77133 2MASS| +724756 |V4756 Sgr |174453.5-291215 |M: | 8.4 | 9.2 | |K | | | | | |77133 2MASS| +724757 |V4757 Sgr |174454.2-290631 |M: | 9.1 | 10.3 | |K | | | | | |77133 2MASS| +724758 |V4758 Sgr |174454.4-290456 |M | 8.5 | 9.6 | |K | | | | | |77133 2MASS| +724759 |V4759 Sgr |174454.9-285814 |M | 7.8 | 8.8 | |K | | | | | |77133 2MASS| +724760 |V4760 Sgr |174455.1-285103 |M: | 9.1 | 10.0 | |K | | | | | |77133 2MASS| +724761 |V4761 Sgr |174455.4-285947 |M: | 8.1 | 8.8 | |K | | | | | |77133 2MASS| +724762 |V4762 Sgr |174455.8-290131 |M | 9.0 | 9.6 | |K | | | | | |77133 2MASS| +724763 |V4763 Sgr |174456.0-290605 |M | 10.1 | 10.8 | |K | | | | | |77133 2MASS| +724764 |V4764 Sgr |174456.1-290145 |M: | 8.3 | 9.3 | |K | | | | | |77133 2MASS| +724765 |V4765 Sgr |174456.7-290442 |M: | 8.8 | 9.4 | |K | | | | | |77133 2MASS| +724766 |V4766 Sgr |174456.7-291020 |M: | 9.0 | 9.9 | |K | | | | | |77133 2MASS| +724767 |V4767 Sgr |174457.3-285607 |M | 10.4 | 11.2 | |K | | | | | |77133 2MASS| +724768 |V4768 Sgr |174457.7-290012 |M | 8.9 | 9.8 | |K | | | | | |77133 2MASS| +724769 |V4769 Sgr |174457.7-290156 |M: | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +724770 |V4770 Sgr |174458.8-290327 |M: | 7.9 | 8.6 | |K | | | | | |77133 2MASS| +724771 |V4771 Sgr |174458.9-290911 |M | 8.0 | 9.6 | |K | | | | | |77133 2MASS| +724772 |V4772 Sgr |174459.0-285702 |M: | 8.7 | 9.6 | |K | | | | | |77133 2MASS| +724773 |V4773 Sgr |174459.2-290549 |M | 7.9 | 8.5 | |K | | | | | |77133 2MASS| +724774 |V4774 Sgr |174459.5-290926 |M | 7.9 | 9.1 | |K | | | | | |77133 2MASS| +724775 |V4775 Sgr |174459.6-291115 |M: | 8.0 | 8.8 | |K | | | | | |77133 2MASS| +724776 |V4776 Sgr |174500.8-290716 |M: | 8.5 | 9.0 | |K | | | | | |77133 2MASS| +724777 |V4777 Sgr |174501.0-290115 |M | 9.0 | 10.0 | |K | | | | | |77133 2MASS| +724778 |V4778 Sgr |174501.7-285916 |M: | 8.6 | 9.5 | |K | | | | | |77133 2MASS| +724779 |V4779 Sgr |174501.7-290250 |M | 7.8 | 8.7 | |K | | | | | |77133 2MASS| +724780 |V4780 Sgr |174501.8-290324 |M: | 8.3 | 8.9 | |K | | | | | |77133 2MASS| +724781 |V4781 Sgr |174501.8-290056 |M: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +724782 |V4782 Sgr |174502.3-290332 |M: | 8.2 | 9.0 | |K | | | | | |77133 2MASS| +724783 |V4783 Sgr |174502.8-290652 |M | 5.4 | 6.0 | |K | | | | | |77133 2MASS| +724784 |V4784 Sgr |174502.9-290828 |M | 7.6 | 8.4 | |K | | | | | |77133 2MASS| +724785 |V4785 Sgr |174502.9-290250 |M: | 9.9 | 10.7 | |K | | | | | |77133 2MASS| +724786 |V4786 Sgr |174503.0-290557 |M | 8.7 | 9.3 | |K | | | | | |77133 2MASS| +724787 |V4787 Sgr |174503.7-290630 |M: | 8.5 | 9.0 | |K | | | | | |77133 2MASS| +724788 |V4788 Sgr |174504.4-285931 |M | 6.8 | 7.8 | |K | | | | | |77133 2MASS| +724789 |V4789 Sgr |174504.4-290625 |M | 10.0 | 11.2 | |K | | | | | |77133 2MASS| +724790 |V4790 Sgr |174504.7-290125 |M | 8.0 | 9.0 | |K | | | | | |77133 2MASS| +724791 |V4791 Sgr |174504.8-290549 |M | 8.0 | 8.7 | |K | | | | | |77133 2MASS| +724792 |V4792 Sgr |174504.8-290622 |M: | 8.8 | 9.8 | |K | | | | | |77133 | +724793 |V4793 Sgr |174505.0-290653 |M: | 8.4 | 9.4 | |K | | | | | |77133 2MASS| +724794 |V4794 Sgr |174505.2-290136 |M | 7.6 | 8.5 | |K | | | | | |77133 2MASS| +724795 |V4795 Sgr |174505.8-285645 |M | 9.3 | 10.0 | |K | | | | | |77133 2MASS| +724796 |V4796 Sgr |174506.0-285748 |M: | 8.0 | 9.0 | |K | | | | | |77133 2MASS| +724797 |V4797 Sgr |174506.6-290100 |M | 8.6 | 9.4 | |K | | | | | |77133 | +724798 |V4798 Sgr |174507.2-285027 |M | 8.0 | 9.1 | |K | | | | | |77133 2MASS| +724799 |V4799 Sgr |174507.2-290143 |M: | 8.8 | 9.4 | |K | | | | | |77133 2MASS| +724800 |V4800 Sgr |174507.6-291023 |M | 9.5 | 11.6 | |K | | | | | |77133 2MASS| +724801 |V4801 Sgr |174508.0-290901 |M: | 9.4 | 9.9 | |K | | | | | |77133 2MASS| +724802 |V4802 Sgr |174508.2-290122 |M: | 9.7 | 11.1 | |K | | | | | |77133 2MASS| +724803 |V4803 Sgr |174508.5-291105 |M: | 8.1 | 8.8 | |K | | | | | |77133 2MASS| +724804 |V4804 Sgr |174509.1-290121 |M: | 10.0 | 11.5 | |K | | | | | |77133 | +724805 |V4805 Sgr |174509.2-290610 |M | 7.3 | 7.9 | |K | | | | | |77133 2MASS| +724806 |V4806 Sgr |174509.5-290117 |M: | 9.8 | 10.4 | |K | | | | | |77133 2MASS| +724807 |V4807 Sgr |174510.7-290956 |M: | 8.8 | 9.5 | |K | | | | | |77133 2MASS| +724808 |V4808 Sgr |174510.9-285124 |M: | 9.6 | 10.5 | |K | | | | | |77133 2MASS| +724809 |V4809 Sgr |174511.0-290918 |M | 8.5 | 8.8 | |K | | | | | |77133 2MASS| +724810 |V4810 Sgr |174511.4-291142 |M | 7.9 | 8.7 | |K | | | | | |77133 2MASS| +724811 |V4811 Sgr |174511.7-285618 |M: | 8.4 | 9.3 | |K | | | | | |77133 2MASS| +724812 |V4812 Sgr |174511.9-290208 |M | 7.3 | 8.6 | |K | | | | | |77133 2MASS| +724813 |V4813 Sgr |174512.1-290425 |M | 7.9 | 9.1 | |K | | | | | |77133 2MASS| +724814 |V4814 Sgr |174512.1-285902 |M | 9.0 | 9.3 | |K | | | | | |77133 2MASS| +724815 |V4815 Sgr |174512.2-291111 |M | 9.6 | 10.1 | |K | | | | | |77133 2MASS| +724816 |V4816 Sgr |174512.6-290036 |M | 8.2 | 9.5 | |K | | | | | |77133 2MASS| +724817 |V4817 Sgr |174512.9-290447 |M | 9.0 | 9.8 | |K | | | | | |77133 2MASS| +724818 |V4818 Sgr |174513.3-285932 |M | 9.4 | 10.0 | |K | | | | | |77133 2MASS| +724819 |V4819 Sgr |174513.4-290336 |M: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +724820 |V4820 Sgr |174513.5-290527 |M: | 7.3 | 8.3 | |K | | | | | |77133 2MASS| +724821 |V4821 Sgr |174514.2-285742 |M: | 8.9 | 9.8 | |K | | | | | |77133 2MASS| +724822 |V4822 Sgr |174514.2-285645 |M | 10.2 | 13.0 | |K | | | | | |77133 2MASS| +724823 |V4823 Sgr |174514.2-291045 |M | 9.5 | 10.5 | |K | | | | | |77133 2MASS| +724824 |V4824 Sgr |174514.4-285744 |M: | 9.9 | 10.8 | |K | | | | | |77133 2MASS| +724825 |V4825 Sgr |174514.6-290440 |M: | 8.7 | 9.5 | |K | | | | | |77133 2MASS| +724826 |V4826 Sgr |174515.3-285150 |M | 9.5 | 10.8 | |K | | | | | |77133 2MASS| +724827 |V4827 Sgr |174516.1-290920 |M | 8.5 | 9.2 | |K | | | | | |77133 2MASS| +724828 |V4828 Sgr |174516.4-291116 |M | 9.1 | 10.0 | |K | | | | | |77133 2MASS| +724829 |V4829 Sgr |174517.1-290134 |M: | 10.0 | 11.8 | |K | | | | | |77133 2MASS| +724830 |V4830 Sgr |174517.1-290409 |M | 7.5 | 8.0 | |K | | | | | |77133 2MASS| +724831 |V4831 Sgr |174517.4-290425 |M | 7.8 | 8.8 | |K | | | | | |77133 2MASS| +724832 |V4832 Sgr |174517.9-290918 |M: | 8.4 | 9.3 | |K | | | | | |77133 2MASS| +724833 |V4833 Sgr |174518.6-290036 |M | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +724834 |V4834 Sgr |174518.8-284920 |M: | 9.2 | 10.0 | |K | | | | | |77133 2MASS| +724835 |V4835 Sgr |174519.0-285527 |M: | 10.1 | 10.8 | |K | | | | | |77133 2MASS| +724836 |V4836 Sgr |174519.5-290325 |M: | 8.9 | 9.5 | |K | | | | | |77133 2MASS| +724837 |V4837 Sgr |174519.7-291121 |M: | 8.6 | 10.2 | |K | | | | | |77133 2MASS| +724838 |V4838 Sgr |174520.1-290208 |M: | 9.2 | 10.1 | |K | | | | | |77133 2MASS| +724839 |V4839 Sgr |174520.1-290050 |M: | 9.7 | 10.7 | |K | | | | | |77133 2MASS| +724840 |V4840 Sgr |174520.5-290719 |M | 10.1 | 11.4 | |K | | | | | |77133 2MASS| +724841 |V4841 Sgr |174521.0-290845 |M | 10.5 | 11.8 | |K | | | | | |77133 | +724842 |V4842 Sgr |174521.4-290636 |M | 9.8 | 11.5 | |K | | | | | |77133 2MASS| +724843 |V4843 Sgr |174522.6-290326 |M | 10.6 | 12.5 | |K | | | | | |77133 2MASS| +724844 |V4844 Sgr |174522.8-291017 |M | 8.5 | 9.6 | |K | | | | | |77133 2MASS| +724845 |V4845 Sgr |174522.8-285933 |M | 8.0 | 9.5 | |K | | | | | |77133 2MASS| +724846 |V4846 Sgr |174522.9-290342 |M | 9.6 | 10.3 | |K | | | | | |77133 2MASS| +724847 |V4847 Sgr |174523.1-285636 |M | 9.2 | 10.7 | |K | | | | | |77133 2MASS| +724848 |V4848 Sgr |174523.8-285618 |M: | 9.2 | 9.8 | |K | | | | | |77133 2MASS| +724849 |V4849 Sgr |174523.9-285539 |M | 9.3 | 10.8 | |K | | | | | |77133 2MASS| +724850 |V4850 Sgr |174524.0-285128 |M: | 11.1 | 11.8 | |K | | | | | |77133 2MASS| +724851 |V4851 Sgr |174525.6-285402 |M: | 8.9 | 9.9 | |K | | | | | |77133 2MASS| +724852 |V4852 Sgr |174525.8-290419 |M: | 8.5 | 9.4 | |K | | | | | |77133 2MASS| +724853 |V4853 Sgr |174525.9-285105 |M | 10.0 | 12.2 | |K | | | | | |77133 2MASS| +724854 |V4854 Sgr |174526.2-290604 |M | 9.0 | 10.5 | |K | | | | | |77133 2MASS| +724855 |V4855 Sgr |174526.3-290002 |M: | 8.6 | 9.2 | |K | | | | | |77133 2MASS| +724856 |V4856 Sgr |174526.3-290924 |M | 9.0 | 10.9 | |K | | | | | |77133 2MASS| +724857 |V4857 Sgr |174526.5-285035 |M: | 9.5 | 10.4 | |K | | | | | |77133 2MASS| +724858 |V4858 Sgr |174526.7-285624 |M: | 8.8 | 9.8 | |K | | | | | |77133 2MASS| +724859 |V4859 Sgr |174527.1-285918 |M: | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +724860 |V4860 Sgr |174527.5-285423 |M | 10.4 | 11.8 | |K | | | | | |77133 2MASS| +724861 |V4861 Sgr |174527.5-285938 |M: | 10.2 | 11.0 | |K | | | | | |77133 2MASS| +724862 |V4862 Sgr |174527.7-285853 |M: | 8.5 | 9.1 | |K | | | | | |77133 2MASS| +724863 |V4863 Sgr |174527.8-290234 |M | 8.9 | 10.0 | |K | | | | | |77133 2MASS| +724864 |V4864 Sgr |174527.8-285812 |M | 7.7 | 8.3 | |K | | | | | |77133 2MASS| +724865 |V4865 Sgr |174528.1-285433 |M | 10.0 | 13.0 | |K | | | | | |77133 UCAC2| +724866 |V4866 Sgr |174528.0-290016 |M | 9.3 | 10.3 | |K | | | | | |77133 2MASS| +724867 |V4867 Sgr |174528.1-284940 |M | 10.5 | 11.7 | |K | | | | | |77133 2MASS| +724868 |V4868 Sgr |174528.2-285331 |M: | 8.9 | 9.3 | |K | | | | | |77133 2MASS| +724869 |V4869 Sgr |174528.4-285414 |M | 9.3 | 10.3 | |K | | | | | |77133 2MASS| +724870 |V4870 Sgr |174528.4-290400 |M | 8.6 | 9.1 | |K | | | | | |77133 2MASS| +724871 |V4871 Sgr |174528.6-285959 |M: | 9.1 | 10.1 | |K | | | | | |77133 2MASS| +724872 |V4872 Sgr |174528.7-290146 |M: | 7.7 | 9.4 | |K | | | | | |77133 2MASS| +724873 |V4873 Sgr |174528.8-285544 |M | 10.3 | 12.1 | |K | | | | | |77133 | +724874 |V4874 Sgr |174529.0-290413 |M: | 8.3 | 9.3 | |K | | | | | |77133 2MASS| +724875 |V4875 Sgr |174529.2-290704 |M | 9.5 | 11.0 | |K | | | | | |77133 2MASS| +724876 |V4876 Sgr |174529.7-285611 |M | 9.5 | 10.2 | |K | | | | | |77133 2MASS| +724877 |V4877 Sgr |174530.0-290510 |M: | 7.8 | 8.7 | |K | | | | | |77133 2MASS| +724878 |V4878 Sgr |174530.4-290014 |M | 9.5 | 11.0 | |K | | | | | |77133 2MASS| +724879 |V4879 Sgr |174530.4-285750 |M | 7.8 | 8.8 | |K | | | | | |77133 2MASS| +724880 |V4880 Sgr |174530.6-285939 |M | 9.0 | 11.1 | |K | | | | | |77133 2MASS| +724881 |V4881 Sgr |174530.7-285649 |M | 9.8 | 11.4 | |K | | | | | |77133 2MASS| +724882 |V4882 Sgr |174530.7-285801 |M: | 10.4 | 11.4 | |K | | | | | |77133 2MASS| +724883 |V4883 Sgr |174530.9-290141 |M | 9.5 | 11.0 | |K | | | | | |77133 2MASS| +724884 |V4884 Sgr |174530.9-290521 |M | 8.4 | 8.9 | |K | | | | | |77133 2MASS| +724885 |V4885 Sgr |174531.1-290030 |M: | 9.6 | 10.5 | |K | | | | | |77133 2MASS| +724886 |V4886 Sgr |174531.6-291124 |M: | 9.8 | 10.8 | |K | | | | | |77133 | +724887 |V4887 Sgr |174531.9-285747 |M | 8.4 | 9.8 | |K | | | | | |77133 2MASS| +724888 |V4888 Sgr |174532.1-290209 |M: | 8.5 | 9.2 | |K | | | | | |77133 2MASS| +724889 |V4889 Sgr |174532.2-290818 |M: | 10.3 | 11.3 | |K | | | | | |77133 2MASS| +724890 |V4890 Sgr |174532.3-290205 |M | 9.7 | 11.7 | |K | | | | | |77133 | +724891 |V4891 Sgr |174532.5-290159 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +724892 |V4892 Sgr |174532.8-290523 |SR: | 8.5 | 9.2 | |K | | | | | |77133 2MASS| +724893 |V4893 Sgr |174533.0-290110 |SR: | 9.4 | 12.0 | |K | | | | | |77133 | +724894 |V4894 Sgr |174533.1-291111 |M: | 9.6 | 10.1 | |K | | | | | |77133 2MASS| +724895 |V4895 Sgr |174533.1-285922 |M: | 9.2 | 10.2 | |K | | | | | |77133 2MASS| +724896 |V4896 Sgr |174533.2-285555 |M | 8.8 | 10.0 | |K | | | | | |77133 2MASS| +724897 |V4897 Sgr |174533.3-284858 |M | 9.1 | 10.2 | |K | | | | | |77133 2MASS| +724898 |V4898 Sgr |174533.7-285912 |M: | 8.7 | 9.6 | |K | | | | | |77133 2MASS| +724899 |V4899 Sgr |174533.8-290235 |M: | 9.4 | 10.1 | |K | | | | | |77133 2MASS| +724900 |V4900 Sgr |174534.2-290010 |M: | 9.2 | 9.9 | |K | | | | | |77133 2MASS| +724901 |V4901 Sgr |174534.4-290208 |M: | 9.7 | 10.3 | |K | | | | | |77133 2MASS| +724902 |V4902 Sgr |174534.4-285403 |M: | 10.5 | 12.1 | |K | | | | | |77133 | +724903 |V4903 Sgr |174534.7-290732 |M: | 7.9 | 8.8 | |K | | | | | |77133 2MASS| +724904 |V4904 Sgr |174534.8-290154 |M: | 8.7 | 9.4 | |K | | | | | |77133 2MASS| +724905 |V4905 Sgr |174535.3-290832 |M | 9.2 | 11.0 | |K | | | | | |77133 2MASS| +724906 |V4906 Sgr |174535.6-290325 |M: | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +724907 |V4907 Sgr |174535.8-285740 |M: | 9.0 | 9.7 | |K | | | | | |77133 2MASS| +724908 |V4908 Sgr |174536.1-290500 |M | 8.6 | 9.2 | |K | | | | | |77133 2MASS| +724909 |V4909 Sgr |174536.4-285000 |M | 9.4 | 10.2 | |K | | | | | |77133 2MASS| +724910 |V4910 Sgr |174537.2-290046 |M | 9.9 | 11.1 | |K | | | | | |77133 | +724911 |V4911 Sgr |174538.0-290102 |M | 9.2 | 11.2 | |K | | | | | |77133 2MASS| +724912 |V4912 Sgr |174538.0-285622 |M | 7.4 | 8.4 | |K | | | | | |77133 2MASS| +724913 |V4913 Sgr |174538.3-285702 |M | 8.4 | 9.5 | |K | | | | | |77133 2MASS| +724914 |V4914 Sgr |174538.3-290904 |M: | 9.0 | 10.0 | |K | | | | | |77133 2MASS| +724915 |V4915 Sgr |174538.5-284824 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +724916 |V4916 Sgr |174538.5-285606 |M: | 8.3 | 9.3 | |K | | | | | |77133 2MASS| +724917 |V4917 Sgr |174538.7-290610 |M: | 9.7 | 10.5 | |K | | | | | |77133 2MASS| +724918 |V4918 Sgr |174538.8-285636 |M: | 8.2 | 8.7 | |K | | | | | |77133 2MASS| +724919 |V4919 Sgr |174539.5-285730 |M: | 9.2 | 9.6 | |K | | | | | |77133 2MASS| +724920 |V4920 Sgr |174540.5-290035 |M: | 8.3 | 9.3 | |K | | | | | |77133 2MASS| +724921 |V4921 Sgr |174540.5-290812 |M: | 8.9 | 9.7 | |K | | | | | |77133 2MASS| +724922 |V4922 Sgr |174540.5-285320 |SR: | 8.3 | 9.0 | |K | | | | | |77133 2MASS| +724923 |V4923 Sgr |174540.8-290034 |M: | 9.0 | 9.7 | |K | | | | | |77133 | +724924 |V4924 Sgr |174541.1-285623 |M: | 8.0 | 8.8 | |K | | | | | |77133 2MASS| +724925 |V4925 Sgr |174541.7-285236 |M | 8.7 | 9.7 | |K | | | | | |77133 2MASS| +724926 |V4926 Sgr |174542.1-285637 |M: | 8.7 | 9.7 | |K | | | | | |77133 2MASS| +724927 |V4927 Sgr |174542.3-285139 |M: | 9.2 | 10.0 | |K | | | | | |77133 2MASS| +724928 |V4928 Sgr |174542.7-285958 |M: | 7.6 | 8.3 | |K | | | | | |77133 2MASS| +724929 |V4929 Sgr |174543.0-285154 |M | 9.3 | 11.0 | |K | | | | | |77133 2MASS| +724930 |V4930 Sgr |174543.0-290012 |M | 8.2 | 9.3 | |K | | | | | |77133 2MASS| +724931 |V4931 Sgr |174543.2-285422 |M | 8.3 | 9.1 | |K | | | | | |77133 2MASS| +724932 |V4932 Sgr |174543.3-284822 |M | 8.9 | 10.2 | |K | | | | | |77133 2MASS| +724933 |V4933 Sgr |174544.3-285153 |M: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +724934 |V4934 Sgr |174544.7-285815 |M | 7.8 | 9.0 | |K | | | | | |77133 2MASS| +724935 |V4935 Sgr |174545.0-285234 |M | 9.7 | 10.7 | |K | | | | | |77133 2MASS| +724936 |V4936 Sgr |174545.1-285741 |M | 8.1 | 9.2 | |K | | | | | |77133 2MASS| +724937 |V4937 Sgr |174545.3-285346 |M | 8.6 | 10.5 | |K | | | | | |77133 2MASS| +724938 |V4938 Sgr |174546.9-285700 |M: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +724939 |V4939 Sgr |174547.1-285536 |M: | 8.6 | 9.3 | |K | | | | | |77133 2MASS| +724940 |V4940 Sgr |174547.4-290424 |M | 11.0 | 12.1 | |K | | | | | |77133 2MASS| +724941 |V4941 Sgr |174547.7-285529 |M | 10.1 | 11.3 | |K | | | | | |77133 2MASS| +724942 |V4942 Sgr |174547.8-285625 |M | 9.1 | 9.8 | |K | | | | | |77133 2MASS| +724943 |V4943 Sgr |174547.9-285304 |M | 8.4 | 10.1 | |K | | | | | |77133 2MASS| +724944 |V4944 Sgr |174548.0-285521 |M: | 8.5 | 9.3 | |K | | | | | |77133 2MASS| +724945 |V4945 Sgr |174548.0-290302 |M | 8.6 | 9.3 | |K | | | | | |77133 2MASS| +724946 |V4946 Sgr |174548.2-285124 |M | 6.5 | 7.1 | |K | | | | | |77133 2MASS| +724947 |V4947 Sgr |174548.6-290357 |M: | 8.1 | 8.6 | |K | | | | | |77133 2MASS| +724948 |V4948 Sgr |174549.8-285651 |M | 7.6 | 8.5 | |K | | | | | |77133 2MASS| +724949 |V4949 Sgr |174550.0-285248 |M | 10.8 | 12.3 | |K | | | | | |77133 2MASS| +724950 |V4950 Sgr |174550.1-285338 |M: | 9.8 | 11.0 | |K | | | | | |77133 2MASS| +724951 |V4951 Sgr |174550.4-290922 |M: | 9.4 | 10.4 | |K | | | | | |77133 2MASS| +724952 |V4952 Sgr |174550.7-285400 |M: | 9.6 | 10.5 | |K | | | | | |77133 2MASS| +724953 |V4953 Sgr |174550.8-290421 |M | 9.2 | 10.8 | |K | | | | | |77133 2MASS| +724954 |V4954 Sgr |174551.0-290148 |M | 9.3 | 10.5 | |K | | | | | |77133 2MASS| +724955 |V4955 Sgr *|174551.4-285803 |M: | 10.3 | 11.0 | |K | | | | | |77133 2MASS| +724956 |V4956 Sgr |174552.2-285131 |M | 8.5 | 10.5 | |K | | | | | |77133 2MASS| +724957 |V4957 Sgr |174552.4-290202 |M | 9.5 | 11.0 | |K | | | | | |77133 2MASS| +724958 |V4958 Sgr |174553.1-290428 |M | 9.7 | 11.0 | |K | | | | | |77133 2MASS| +724959 |V4959 Sgr |174553.5-284950 |M | 8.3 | 9.6 | |K | | | | | |77133 2MASS| +724960 |V4960 Sgr |174553.8-285635 |M | 9.1 | 9.8 | |K | | | | | |77133 2MASS| +724961 |V4961 Sgr |174555.3-291007 |M | 8.4 | 9.5 | |K | | | | | |77133 2MASS| +724962 |V4962 Sgr |174555.5-285011 |M | 8.2 | 9.5 | |K | | | | | |77133 2MASS| +724963 |V4963 Sgr |174555.5-290628 |M | 9.6 | 10.7 | |K | | | | | |77133 2MASS| +724964 |V4964 Sgr |174555.7-290128 |M: | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +724965 |V4965 Sgr |174555.8-290313 |M | 9.0 | 10.1 | |K | | | | | |77133 2MASS| +724966 |V4966 Sgr |174556.2-284948 |M | 9.7 | 10.6 | |K | | | | | |77133 2MASS| +724967 |V4967 Sgr |174556.3-285109 |M: | 7.3 | 8.8 | |K | | | | | |77133 2MASS| +724968 |V4968 Sgr |174556.4-284927 |M | 8.8 | 9.4 | |K | | | | | |77133 2MASS| +724969 |V4969 Sgr |174556.8-290631 |M | 8.2 | 9.3 | |K | | | | | |77133 2MASS| +724970 |V4970 Sgr |174557.1-285559 |M | 7.5 | 8.5 | |K | | | | | |77133 2MASS| +724971 |V4971 Sgr |174557.5-290743 |M: | 9.8 | 10.7 | |K | | | | | |77133 2MASS| +724972 |V4972 Sgr |174557.9-290736 |M: | 9.6 | 10.2 | |K | | | | | |77133 2MASS| +724973 |V4973 Sgr |174558.4-285336 |M: | 8.4 | 9.7 | |K | | | | | |77133 2MASS| +724974 |V4974 Sgr |174558.7-290807 |M | 8.1 | 8.6 | |K | | | | | |77133 2MASS| +724975 |V4975 Sgr |174559.3-291200 |M | 8.3 | 9.4 | |K | | | | | |77133 2MASS| +724976 |V4976 Sgr |174559.5-285444 |M | 8.8 | 9.3 | |K | | | | | |77133 2MASS| +724977 |V4977 Sgr |174559.6-285412 |M | 8.4 | 10.2 | |K | | | | | |77133 2MASS| +724978 |V4978 Sgr |174559.9-290212 |M: | 9.1 | 10.1 | |K | | | | | |77133 2MASS| +724979 |V4979 Sgr |174600.5-285332 |M: | 9.2 | 9.9 | |K | | | | | |77133 2MASS| +724980 |V4980 Sgr |174600.9-285451 |M: | 8.9 | 9.5 | |K | | | | | |77133 2MASS| +724981 |V4981 Sgr |174600.9-290601 |M | 8.4 | 9.3 | |K | | | | | |77133 2MASS| +724982 |V4982 Sgr |174601.0-290334 |M: | 8.4 | 8.8 | |K | | | | | |77133 2MASS| +724983 |V4983 Sgr |174601.7-290655 |M | 8.7 | 9.9 | |K | | | | | |77133 2MASS| +724984 |V4984 Sgr |174601.9-290142 |M | 9.5 | 10.6 | |K | | | | | |77133 2MASS| +724985 |V4985 Sgr |174602.2-285315 |M: | 8.8 | 9.8 | |K | | | | | |77133 2MASS| +724986 |V4986 Sgr |174603.4-285829 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +724987 |V4987 Sgr |174603.5-285135 |M | 9.5 | 11.1 | |K | | | | | |77133 2MASS| +724988 |V4988 Sgr |174603.6-285742 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +724989 |V4989 Sgr |174603.6-290419 |M: | 9.1 | 9.5 | |K | | | | | |77133 2MASS| +724990 |V4990 Sgr |174603.9-285657 |M: | 9.6 | 10.4 | |K | | | | | |77133 2MASS| +724991 |V4991 Sgr |174604.0-285233 |M: | 7.3 | 8.2 | |K | | | | | |77133 2MASS| +724992 |V4992 Sgr |174604.1-285625 |M: | 8.9 | 9.6 | |K | | | | | |77133 2MASS| +724993 |V4993 Sgr |174604.2-285956 |M: | 9.3 | 9.8 | |K | | | | | |77133 2MASS| +724994 |V4994 Sgr |174604.3-285737 |M: | 7.0 | 7.4 | |K | | | | | |77133 2MASS| +724995 |V4995 Sgr |174604.6-290547 |M | 9.8 | 11.0 | |K | | | | | |77133 | +724996 |V4996 Sgr |174604.7-285333 |M: | 9.1 | 9.9 | |K | | | | | |77133 2MASS| +724997 |V4997 Sgr |174605.0-290355 |M | 8.2 | 8.8 | |K | | | | | |77133 2MASS| +724998 |V4998 Sgr |174605.6-285132 |SR: | 6.3 | 7.4 | |K | | | | | |77133 2MASS| +724999 |V4999 Sgr |174605.9-290632 |M: | 8.7 | 9.4 | |K | | | | | |77133 2MASS| +725000 |V5000 Sgr |174606.2-285000 |M | 8.9 | 10.2 | |K | | | | | |77133 2MASS| +725001 |V5001 Sgr |174606.3-290000 |M: | 8.8 | 9.7 | |K | | | | | |77133 2MASS| +725002 |V5002 Sgr |174606.3-285907 |M | 8.9 | 10.4 | |K | | | | | |77133 2MASS| +725003 |V5003 Sgr |174606.5-285556 |M: | 8.9 | 9.8 | |K | | | | | |77133 2MASS| +725004 |V5004 Sgr |174607.5-291043 |M | 8.5 | 9.7 | |K | | | | | |77133 2MASS| +725005 |V5005 Sgr |174607.6-290454 |M | 8.6 | 9.4 | |K | | | | | |77133 2MASS| +725006 |V5006 Sgr |174607.7-285734 |M: | 9.0 | 9.8 | |K | | | | | |77133 2MASS| +725007 |V5007 Sgr |174607.8-290206 |M: | 9.1 | 9.6 | |K | | | | | |77133 2MASS| +725008 |V5008 Sgr |174607.9-290423 |M | 9.7 | 11.0 | |K | | | | | |77133 2MASS| +725009 |V5009 Sgr |174608.1-284849 |M: | 7.2 | 7.8 | |K | | | | | |77133 2MASS| +725010 |V5010 Sgr |174608.6-291017 |M | 8.6 | 9.3 | |K | | | | | |77133 2MASS| +725011 |V5011 Sgr |174609.8-285119 |M | 9.0 | 10.2 | |K | | | | | |77133 2MASS| +725012 |V5012 Sgr |174609.9-291210 |M: | 7.6 | 8.1 | |K | | | | | |77133 2MASS| +725013 |V5013 Sgr |174610.0-285410 |M | 9.2 | 10.4 | |K | | | | | |77133 2MASS| +725014 |V5014 Sgr |174610.9-290208 |M | 9.3 | 10.0 | |K | | | | | |77133 2MASS| +725015 |V5015 Sgr |174611.0-285845 |SR: | 9.9 | 10.5 | |K | | | | | |77133 2MASS| +725016 |V5016 Sgr |174610.9-285723 |M | 9.5 | 10.8 | |K | | | | | |77133 2MASS| +725017 |V5017 Sgr |174611.0-284951 |M: | 7.4 | 9.0 | |K | | | | | |77133 2MASS| +725018 |V5018 Sgr |174611.1-290216 |M: | 7.7 | 8.6 | |K | | | | | |77133 2MASS| +725019 |V5019 Sgr |174611.6-290157 |M | 9.1 | 10.0 | |K | | | | | |77133 2MASS| +725020 |V5020 Sgr |174611.7-285932 |M | 8.7 | 10.2 | |K | | | | | |77133 2MASS| +725021 |V5021 Sgr |174611.9-285256 |M | 7.5 | 8.3 | |K | | | | | |77133 2MASS| +725022 |V5022 Sgr |174612.4-285519 |M | 9.1 | 10.5 | |K | | | | | |77133 2MASS| +725023 |V5023 Sgr |174612.5-284849 |M | 8.4 | 9.5 | |K | | | | | |77133 2MASS| +725024 |V5024 Sgr |174612.6-290825 |M: | 7.6 | 8.2 | |K | | | | | |77133 2MASS| +725025 |V5025 Sgr |174612.6-290809 |M: | 8.3 | 9.1 | |K | | | | | |77133 2MASS| +725026 |V5026 Sgr |174612.7-291012 |M | 8.0 | 9.0 | |K | | | | | |77133 2MASS| +725027 |V5027 Sgr |174612.8-290626 |M: | 9.3 | 10.3 | |K | | | | | |77133 2MASS| +725028 |V5028 Sgr |174612.8-285811 |M: | 9.1 | 9.6 | |K | | | | | |77133 2MASS| +725029 |V5029 Sgr |174613.2-285540 |M: | 9.2 | 10.0 | |K | | | | | |77133 2MASS| +725030 |V5030 Sgr |174613.6-285231 |M | 9.0 | 9.6 | |K | | | | | |77133 2MASS| +725031 |V5031 Sgr |174613.7-285514 |M: | 7.7 | 8.4 | |K | | | | | |77133 2MASS| +725032 |V5032 Sgr |174613.8-290559 |M | 9.0 | 10.0 | |K | | | | | |77133 2MASS| +725033 |V5033 Sgr |174614.2-290518 |M | 8.8 | 10.2 | |K | | | | | |77133 2MASS| +725034 |V5034 Sgr |174614.3-285409 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +725035 |V5035 Sgr |174614.8-285132 |M: | 8.9 | 9.5 | |K | | | | | |77133 2MASS| +725036 |V5036 Sgr |174614.9-285709 |M | 9.8 | 10.5 | |K | | | | | |77133 2MASS| +725037 |V5037 Sgr |174615.1-285425 |M: | 8.9 | 9.7 | |K | | | | | |77133 2MASS| +725038 |V5038 Sgr |174615.2-285342 |M | 8.1 | 9.3 | |K | | | | | |77133 2MASS| +725039 |V5039 Sgr |174615.7-285632 |M | 8.9 | 10.2 | |K | | | | | |77133 2MASS| +725040 |V5040 Sgr |174615.8-291052 |M: | 8.3 | 9.0 | |K | | | | | |77133 2MASS| +725041 |V5041 Sgr |174615.9-291138 |M: | 8.9 | 9.6 | |K | | | | | |77133 2MASS| +725042 |V5042 Sgr |174616.4-285426 |M: | 9.5 | 10.2 | |K | | | | | |77133 2MASS| +725043 |V5043 Sgr |174616.4-285859 |M: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +725044 |V5044 Sgr |174616.5-290428 |M | 8.4 | 9.1 | |K | | | | | |77133 2MASS| +725045 |V5045 Sgr |174616.6-285716 |M: | 8.1 | 8.8 | |K | | | | | |77133 2MASS| +725046 |V5046 Sgr |174616.8-285614 |M | 8.9 | 10.4 | |K | | | | | |77133 2MASS| +725047 |V5047 Sgr |174617.0-290408 |SR: | 8.5 | 9.5 | |K | | | | | |77133 2MASS| +725048 |V5048 Sgr |174617.1-290006 |M | 9.0 | 10.1 | |K | | | | | |77133 2MASS| +725049 |V5049 Sgr |174617.4-290223 |M | 8.7 | 9.9 | |K | | | | | |77133 2MASS| +725050 |V5050 Sgr |174617.4-290517 |M: | 8.3 | 9.0 | |K | | | | | |77133 2MASS| +725051 |V5051 Sgr |174617.5-284812 |M | 7.5 | 8.5 | |K | | | | | |77133 2MASS| +725052 |V5052 Sgr |174617.5-285524 |M | 9.0 | 9.8 | |K | | | | | |77133 2MASS| +725053 |V5053 Sgr |174617.9-285540 |M: | 9.2 | 10.2 | |K | | | | | |77133 2MASS| +725054 |V5054 Sgr |174618.0-285716 |M | 9.8 | 11.3 | |K | | | | | |77133 2MASS| +725055 |V5055 Sgr |174618.5-290337 |M | 8.4 | 10.2 | |K | | | | | |77133 2MASS| +725056 |V5056 Sgr |174618.8-291001 |M | 9.0 | 9.7 | |K | | | | | |77133 2MASS| +725057 |V5057 Sgr |174619.1-285520 |M | 8.5 | 10.0 | |K | | | | | |77133 2MASS| +725058 |V5058 Sgr |174619.4-290007 |M | 11.7 | 12.8 | |K | | | | | |77133 2MASS| +725059 |V5059 Sgr |174619.4-290439 |M: | 8.5 | 8.9 | |K | | | | | |77133 2MASS| +725060 |V5060 Sgr |174619.5-290149 |M | 8.9 | 9.6 | |K | | | | | |77133 2MASS| +725061 |V5061 Sgr |174619.9-290736 |M: | 8.9 | 9.5 | |K | | | | | |77133 2MASS| +725062 |V5062 Sgr |174620.7-285320 |M: | 11.6 | 12.2 | |K | | | | | |77133 2MASS| +725063 |V5063 Sgr |174620.9-285328 |M | 11.8 | 12.9 | |K | | | | | |77133 | +725064 |V5064 Sgr |174621.0-284923 |M: | 8.6 | 9.6 | |K | | | | | |77133 2MASS| +725065 |V5065 Sgr |174621.1-290846 |M | 9.3 | 10.5 | |K | | | | | |77133 2MASS| +725066 |V5066 Sgr |174621.6-285840 |M | 10.5 | 12.3 | |K | | | | | |77133 2MASS| +725067 |V5067 Sgr |174621.6-290321 |M: | 8.5 | 9.1 | |K | | | | | |77133 2MASS| +725068 |V5068 Sgr |174622.0-285207 |M: | 8.8 | 9.8 | |K | | | | | |77133 2MASS| +725069 |V5069 Sgr |174622.6-290305 |M: | 9.7 | 10.3 | |K | | | | | |77133 2MASS| +725070 |V5070 Sgr |174623.0-290601 |M | 9.2 | 10.0 | |K | | | | | |77133 2MASS| +725071 |V5071 Sgr |174623.2-285043 |M | 7.8 | 8.7 | |K | | | | | |77133 2MASS| +725072 |V5072 Sgr |174623.3-290703 |M: | 8.4 | 8.9 | |K | | | | | |77133 2MASS| +725073 |V5073 Sgr |174623.6-290619 |M: | 7.3 | 7.8 | |K | | | | | |77133 2MASS| +725074 |V5074 Sgr |174624.4-290040 |M | 8.6 | 9.4 | |K | | | | | |77133 2MASS| +725075 |V5075 Sgr |174625.5-290612 |M | 8.6 | 9.0 | |K | | | | | |77133 2MASS| +725076 |V5076 Sgr |174625.6-285054 |M: | 9.7 | 10.5 | |K | | | | | |77133 2MASS| +725077 |V5077 Sgr |174626.8-285357 |M | 9.7 | 12.4 | |K | | | | | |77133 2MASS| +725078 |V5078 Sgr |174627.1-284857 |M: | 8.8 | 9.7 | |K | | | | | |77133 2MASS| +725079 |V5079 Sgr |174627.9-285023 |M | 7.8 | 9.0 | |K | | | | | |77133 2MASS| +725080 |V5080 Sgr |174628.2-290613 |M | 8.7 | 9.7 | |K | | | | | |77133 2MASS| +725081 |V5081 Sgr |174628.4-290728 |M | 8.4 | 9.4 | |K | | | | | |77133 2MASS| +725082 |V5082 Sgr |174628.8-285148 |M: | 9.0 | 9.5 | |K | | | | | |77133 2MASS| +725083 |V5083 Sgr |174628.9-290208 |M: | 9.3 | 10.0 | |K | | | | | |77133 2MASS| +725084 |V5084 Sgr |174629.3-285405 |M | 9.7 | 10.9 | |K | | | | | |77133 2MASS| +725085 |V5085 Sgr |174630.6-285700 |M | 7.8 | 8.8 | |K | | | | | |77133 2MASS| +725086 |V5086 Sgr |174631.6-285913 |M | 10.4 | 12.1 | |K | | | | | |77133 2MASS| +725087 |V5087 Sgr |174631.8-290719 |M | 10.8 | 12.4 | |K | | | | | |77133 2MASS| +725088 |V5088 Sgr |174632.0-285220 |M | 9.2 | 10.3 | |K | | | | | |77133 2MASS| +725089 |V5089 Sgr |174632.5-285753 |M | 8.4 | 9.8 | |K | | | | | |77133 2MASS| +725090 |V5090 Sgr |174632.5-290409 |M: | 10.2 | 11.0 | |K | | | | | |77133 2MASS| +725091 |V5091 Sgr |174633.8-290735 |M | 8.6 | 9.2 | |K | | | | | |77133 2MASS| +725092 |V5092 Sgr |174633.9-285405 |M | 8.6 | 9.9 | |K | | | | | |77133 2MASS| +725093 |V5093 Sgr |174634.2-285629 |M: | 9.7 | 10.4 | |K | | | | | |77133 2MASS| +725094 |V5094 Sgr |174634.3-285238 |M: | 8.4 | 9.3 | |K | | | | | |77133 2MASS| +725095 |V5095 Sgr |175116.5-230932 |SR: | 11.5 | 12.9 | |V | | | | | |77004 UCAC2| +725096 |V5096 Sgr |175357.3-221053 |SR: | 12.5 |< 13.2 | |V | | | | | |77004 2MASS| +725097 |V5097 Sgr |180204.1-233742 |WR | 11.8 |< 14.5 | |V | | | | | |77140 77140| +725098 |V5098 Sgr |180250.9-241617 |INA | 12.04 | 13.71 | |V | | | | | |77145 GSC | +725101 |V5101 Sgr |180443.7-210931 |WR | 11.4 | 14.7 | |V | | | | | |77220 77220| +725102 |V5102 Sgr |181626.0-163956 |SR: | 11.0 | 12.6 | |V | | | | | |77004 UCAC2| +725103 |V5103 Sgr |181905.8-301907 |M | 11.5 |< 13.8 | |V | | | | | |77004 2MASS| +725104 |V5104 Sgr |182234.7-270629 |M | 2.99 | 4.49 | |K | | | | | |77081 77152| +725105 |V5105 Sgr |182334.7-274009 |M | 11.3 |< 13.4 | |V | | | | | |77004 2MASS| +725106 |V5106 Sgr |183049.2-181244 |M: | 11.8 |< 13.2 | |V | | | | | |77004 2MASS| +725107 |V5107 Sgr |183726.7-174541 |M: | 11.7 |< 13.3 | |V | | | | | |77004 2MASS| +725108 |V5108 Sgr |184733.6-240720 |M: | 11.8 |< 14.0 | |V | | | | | |77004 2MASS| +725109 |V5109 Sgr |190921.7-170359 |SR: | 11.8 | 14.0 | |V | | | | | |77004 UCAC2| +725110 |V5110 Sgr |193945.2-172932 |M | 10.9 |< 15.0 | |V | | | | | |77004 GSC | +725111 |V5111 Sgr |194000.6-311317 |DSCTC | 11.8 |( 0.04 )| |V | | | | | |77101 GSC | +725112 |V5112 Sgr *|195252.7-170150 |E: | 8.68 | 8.95 | |V | | | | | |77178 DM | +725119 |V5119 Sgr |175040.9-174038 |SR: | 11.7 | 13.6 | |* | | | | | |78006 USNO | +725131 |V5131 Sgr |175244.9-172401 |SR: | 12.5 | 14.4 | |* |52544 | | | | |78006 2MASS| +725161 |V5161 Sgr |175658.6-240611 |M | 10.7 | 13.2 | |I |51325 | | | | |78006 2MASS| +725168 |V5168 Sgr |175752.4-224134 |M | 10.5 | 12.9 | |I |51325 :| | 400. : | | |78006 2MASS| +725171 |V5171 Sgr |175819.1-233629 |M: | 8.8 | 10.7 | |I | | | | | |78006 2MASS| +725172 |V5172 Sgr |175825.4-270555 |M: | 10.3 | 13.7 | |* | | | | | |78006 2MASS| +725265 |V5265 Sgr |175907.5-293029 |M | 10.7 |< 13.0 | |* | | | | | |78006 2MASS| +725293 |V5293 Sgr |175914.8-295353 |M: | 11.9 |< 15.8 | |* | | | | | |78006 2MASS| +725318 |V5318 Sgr |175921.9-245935 |M: | 12.4 |< 16.0 | |* | | | | | |78006 USNO | +725355 |V5355 Sgr |175950.4-293542 |SR | 12.4 | 13.4 | |V |52840 | | 500. : | | |78006 2MASS| +725357 |V5357 Sgr |180032.8-241619 |M | 7.7 | 10.8 | |I |51255 :| | 550. : | | |78006 2MASS| +725358 |V5358 Sgr |180039.6-283145 |M: | 12.4 |< 15.5 | |* | | | | | |78006 2MASS| +725360 |V5360 Sgr |180110.5-293038 |SR: | 12.3 |< 14.4 | |* | | | | | |78006 2MASS| +725361 |V5361 Sgr |180113.9-302037 |RVA | 11.7 | 13.1 | |I |50597 | | 56.7 | | |78006 2MASS| +725362 |V5362 Sgr |180131.6-294352 |M | 11.2 | 17.4 | |I | | | 350. : | | |78006 2MASS| +725363 |V5363 Sgr |180135.9-301559 |SR | 11.0 | 12.9 | |I |53128 :| | 260. : | | |78006 2MASS| +725364 |V5364 Sgr |180149.5-301545 |SRA | 12.5 | 13.8 | |V |52854 | | 236. | | |78006 2MASS| +725365 |V5365 Sgr |180210.9-284750 |M | 11.5 | 15.6 | |I | | | 310. : | | |78006 2MASS| +725366 |V5366 Sgr |180214.6-281537 |M | 11.1 | 13.3 | |I | | | 270. : | | |78006 2MASS| +725367 |V5367 Sgr |180222.8-282224 |SR | 10.6 | 12.2 | |I | | | 193. | | |78006 2MASS| +725368 |V5368 Sgr |180229.7-281410 |M: | 11.6 |< 14.4 | |* | | | | | |78006 2MASS| +725382 |V5382 Sgr |180243.6-294215 |SRA | 10.7 | 11.9 | |I |53170 | | 204. | | |78006 2MASS| +725410 |V5410 Sgr |180301.4-234231 |SRA | 9.7 | 11.3 | |I |51354 | | 438. | | |78006 2MASS| +725427 |V5427 Sgr |180307.9-251857 |SR: | 12.3 | 14.3 | |* |51340 :| | | | |78006 2MASS| +725470 |V5470 Sgr |180330.5-295836 |SRS | 12.26 |( 0.05 )| |R | | | 19.6 | |M2 |78227 2MASS| +725505 |V5505 Sgr |180357.9-295700 |DSCT | 11.10 | 11.48 | |V | | | 0.08493 | | |78022 GSC | +725506 |V5506 Sgr |180736.9-273347 |SRA | 10.8 | 12.4 | |I |51377 | | 229. | | |78006 2MASS| +725507 |V5507 Sgr |180754.2-273416 |M | 11.5 | 13.8 | |I |51360 | | 288. | | |78006 2MASS| +725512 |V5512 Sgr |181431.1-170926 |XB | 11.87 | 12.60 | |K | | | | |K5III |78235 | +725530 |V5530 Sgr |181936.7-252553 |M | 12.0 | 16.8 | |V |52114 | | 200. | | |78240 78239| +725533 |V5533 Sgr *|182329.0-301530 |LPB: | 9.77 | 9.80 | |V | | | 0.89164 | |B8IV |78022 DM | +725535 |V5535 Sgr *|182457.4-302443 |EB | 10.65 | 11.00 | 10.96 |V |51950.288 | | 2.2517 | |A0 |78022 DM | +725537 |V5537 Sgr |182612.7-260540 |SRB | 10.9 | 11.5 | |V | | | 41. | | |78040 DM | +725539 |V5539 Sgr |183209.6-295547 |SRA | 11.1 | 13.5 | |V |52850 | | 169.26 | |Me |78090 GSC | +725540 |V5540 Sgr |183958.9-331412 |SRB | 12.0 | 12.8 | |V | | | 53. : | | |78012 GSC | +725543 |V5543 Sgr |184550.3-321626 |M | 11.5 | 16.7 | |R |52945 | | 241. | | |78130 2MASS| +725544 |V5544 Sgr |184721.8-310748 |SRA | 11.6 | 14.0 | |V |52883 | | 194. | |Me |78090 USNO | +725545 |V5545 Sgr |185352.8-222204 |SRA | 12.1 | 14.2 | |V |53050 | | 377. | |Me |78130 USNO | +725546 |V5546 Sgr |192401.6-333232 |GDOR | 7.69 | 7.79 | |Hp| | | | |F0V |78024 DM | +725547 |V5547 Sgr |193057.4-324157 |ELL: | 7.39 |( 0.1 )| |V | | | 0.692 | |F2 |78024 DM | +725548 |V5548 Sgr |193601.6-244309 |DSCTC: | 5.82 |( 0.04 )| |B | | | 0.11340 | |A1m |78270 DM | +725549 |V5549 Sgr |193640.5-283504 |M | 11.8 |< 15.0 | |V |52775 | | 377. | |Me |78130 GSC | +725550 |V5550 Sgr |194208.9-284611 |M | 11.7 | 14.7 | |V |52812 | | 216. | |Me |78090 GSC | +725551 |V5551 Sgr |194231.0-220612 |M | 11.3 | 15.0 | |V |52787 | | 278. | |Me |78090 GSC | +725553 |V5553 Sgr |195517.7-440039 |EB | 8.53 | 8.62 | |V |48404.165 | | 2.69466 | |F5/F6V |78011 DM | +725554 |V5554 Sgr |195958.0-225815 |M | 11.3 | 15.4 | |V |52757 | | 276. | |Me |78090 GSC | +725555 |V5555 Sgr *|200149.8-124118 |* | 11.08 | 11.51 | |V | | | | |B1Ibe |78281 DM | +725556 |V5556 Sgr |202729.2-304837 |M | 12.0 |< 15.0 | |V |52832 | | 233. | |Me |78090 2MASS| +725559 |V5559 Sgr *|175406.3-283910 |EA | 12.43 | 13.1 | 13.0 : |V |53263.542 | | 4.4361 |05 | |79009 79116| +725560 |V5560 Sgr |175621.5-273756 |CEP: | 11.7 | 12.1 | |V |53125.76 | | 11.6097 | |ea |79064 79116| +725561 |V5561 Sgr |180016.1-240206 |SRC | 9.46 | 9.78 | |V | | | 86. | |M3-M5Ib |79064 DM | +725562 |V5562 Sgr |180247.5-292159 |EA | 7.77 | 7.99 | 7.98 |V |52548.530 | | 3.03868 |12 |B2V |79011 DM | +725563 |V5563 Sgr |180434.2-242201 |EW: | 9.60 | 9.93 | 9.92 |V |52840.577 | | 0.617262 | |B2Vne |79004 DM | +725564 |V5564 Sgr |181317.2-263214 |SRB | 10.8 | 11.4 | |V | | | 57. | |M5 |79064 79127| +725565 |V5565 Sgr *|181641.6-353810 |EA | 10.39 | 10.89 | 10.69 |V |52819.836 | | 4.3028 |05 |B9 |79011 DM | +725566 |V5566 Sgr *|181957.8-220715 |EA | 11.95 : | 12.35 : | 12.3 : |V |52566.494 | | 2.37999 |10 |M6: |79003 79127| +725567 |V5567 Sgr |182105.5-182720 |DCEP | 10.3 | 10.7 : | |V |52826.76 | | 9.7616 |30 | |79064 79195| +725569 |V5569 Sgr *|185003.6-262415 |EA | 10.0 | 12.0 | |V |52031. | | 513. |16 |Be |79161 DM | +725570 |V5570 Sgr |191056.8-255440 |EA | 8.60 | 9.05 | 8.88 |V |52474.633 | | 11.7902 |03 : |B9V |79006 DM | +725571 |V5571 Sgr |191309.7-321601 |EA | 11.76 | 12.30 | 12.23 |V |52740.875 | | 0.948834 |12 | |79018 79034| +725572 |V5572 Sgr |193203.1-281245 |EA | 7.60 | 7.95 | 7.76 |V |52055.777 | | 1.43979 |15 |B8V |79003 DM | +725573 |V5573 Sgr |193906.6-204914 |CWA | 11.35 | 12.55 | |V |52001.10 | | 14.279 |40 | |79123 79096| +725574 |V5574 Sgr |194544.6-311237 |RRAB | 12.4 | 13.7 | |V |53827.891 | | 0.554840 |10 | |79064 79080| +725575 |V5575 Sgr |195419.4-295440 |EB | 10.76 | 11.08 | 10.95 |V |52529.568 | | 0.80681 | | |79018 DM | +725576 |V5576 Sgr |200222.5-120319 |EA | 11.68 | 12.3 | 11.9 : |V |52513.521 | | 1.14177 |20 | |79018 GSC | +725577 |V5577 Sgr |200311.1-220739 |SRB | 12.0 | 12.8 | |V | | | 134. | |M7 |79100 GSC | +725578 |V5578 Sgr |201123.5-431348 |SRB | 11.5 | 13.4 | |V | | | 211. | | |79100 79063| +725590 |V5590 Sgr |181103.7-271729 |ZAND: | 10.6 | 15.4 | |* | | | | |pec(e) |80486 80489| NL80_3 +725620 |V5620 Sgr |175839.5-332034 |EW | 12.25 | 12.65 | 12.60 |V |52405.79 | | 0.421905 | | |80002 GSC | NL80_3 +725622 |V5622 Sgr |175940.9-333911 |LPB | 9.3 |( 0.06 )| |V | | | 1.4828 | |B5II/III |80491 DM | NL80_3 +725624 |V5624 Sgr |180106.5-174423 |M | 3.49 | 4.63 | |K | | | 628. | |C |80166 2MASS| NL80_3 +725631 |V5631 Sgr *|180604.7-241144 |EA | 7.70 | 7.81 | 7.73 |V |52383.888 | | 4.5928 |07 |O8V(n) |80015 DM | NL80_3 +725632 |V5632 Sgr *|180642.0-234422 |M | 4.17 | 5.81 | |K | | | 664. | |C |80166 2MASS| NL80_3 +725633 |V5633 Sgr *|180807.5-343432 |BCEP | 9.34 | 9.44 | |V | | | 0.210641 | |B1II |80445 GSC | NL80_3 +725638 |V5638 Sgr |181501.4-224358 |M | 4.70 | 6.87 | |K | | | 611. | | |80166 2MASS| NL80_3 +725639 |V5639 Sgr *|181639.2-241833 |RCB | 11.2 | 13.9 | |Ic| | | | | |80500 2MASS| NL80_3 +725640 |V5640 Sgr *|181923.1-282857 |DSCTC: | 11.20 | 11.22 | |V | | | 0.224046 | |F2 |80502 GSC | NL80_3 +725641 |V5641 Sgr *|182610.4-170421 |BCEP | 10.15 | 10.27 | |V | | | 0.203362 | |B |80445 GSC | NL80_3 +725642 |V5642 Sgr |183105.6-251137 |M | 11.9 |< 14.3 | |V |54644. | | 183.5 | | |80001 GSC | NL80_3 +725643 |V5643 Sgr |183324.0-193020 |EA | 9.53 | 9.88 | 9.74 |V |52080.6265 | | 1.91860 |10 |B9IV/V |80001 DM | NL80_3 +725644 |V5644 Sgr *|183951.9-320055 |RR(B) | 11.95 | 13.00 | |V | | | 0.46126 | | |80300 GSC | NL80_3 +725645 |V5645 Sgr |184116.7-290441 |M | 11.8 |< 13.7 | |V |53869. | | 303. | | |80001 GSC | NL80_3 +725648 |V5648 Sgr |185243.6-160048 |EA | 12.0 | 12.9 | 12.1 : |V |53236.358 | | 2.498117 |12 | |80624 GSC | NL80_3 +725649 |V5649 Sgr *|190255.8-141502 |SRA: | 11.7 |< 12.9 | |V |53642. | | 213. | | |80297 80297| NL80_3 +725651 |V5651 Sgr |191134.7-343509 |RS | 9.8 | 10.1 | |V | | | 3.3775 | |G9III |80001 DM | NL80_3 +725652 |V5652 Sgr |191533.2-241046 |BY | 6.23 | 6.25 | |V | | | 7.06546 | |F8V |80518 HIP | NL80_3 +725653 |V5653 Sgr |193008.7-253603 |EA | 12.16 | 13.4 | 12.22 |V |53555.833 | | 1.516915 |12 | |80011 GSC | NL80_3 +725654 |V5654 Sgr |193443.5-242214 |EA | 11.47 | 13.7 | 11.56 |V |53465.866 | | 1.49863 |11 | |80011 GSC | NL80_3 +725655 |V5655 Sgr |193906.4-254406 |RS | 10.6 | 11.1 | |V | | | 12.76 | |K0IIIe |80034 DM | NL80_3 +725656 |V5656 Sgr |194217.1-145814 |EA | 8.55 | 8.72 | 8.62 |V |53522.806 | | 3.70677 |05 |A0V |80011 DM | NL80_3 +725658 |V5658 Sgr |195904.7-375028 |EA | 8.32 | 8.50 | 8.50 |V |53820.883 | | 1.76937 |12 |F3V |80015 DM | NL80_3 +725659 |V5659 Sgr *|195926.7-340004 |RRAB | 11.7 | 12.8 | |V |52027.5 | | 0.3797209 | | |80377 GSC | NL80_3 +725660 |V5660 Sgr |200152.0-175201 |BY | 12.5 | 13.0 | |V | | | 6.5789 | |K7V |80001 GSC | NL80_3 +725663 |V5663 Sgr |200556.4-321659 |RS | 11.9 | 12.2 | |V | | | 8.3114 | | |80001 DM | NL80_3 +729007 |eta Sgr *|181737.6-364542 |LB: | 3.05 | 3.12 | |V | | | | |M3.5III |05840 08087| +729012 |mu. Sgr *|181345.8-210332 |EA+ACYG | 3.80 | 3.88 | |V |44035. | | 180.55 |11 |B8eqIa+B1.5V |09921 BD | +7290171|rho 1 Sgr |192140.4-175050 |DSCTC | 3.90 | 3.94 | |V | | | 0.050 | |F0IV-V |06255 BD | +729020 |ups Sgr *|192143.6-155718 |EB/GS | 4.53 | 4.61 | 4.59 |V |20439.55 | | 137.939 | |B8pI:+O9V |09924 BD | +730001 |R Sco *|161739.1-225640 |M | 9.8 | 15.5 | |V |44678. | | 224.61 |46 |M(3)e |00001 00002| +730002 |S Sco *|161740.2-225336 |M | 9.5 | 15.5 | |V |41463. | | 177.92 |50 |M(3)e |00001 00002| +730006 |W Sco |161145.8-200814 |M | 10.5 | 15.4 | |V |39162. | | 221.27 |47 | |00001 00002| +730007 |X Sco |160831.9-213150 |M | 10.2 | 15.0 | |V |39135. | | 199.86 |50 |M2e |00001 00002| +730008 |Y Sco *|162926.4-192051 |M: | 10.9 | 15.0 | |V |34531. | | 351.88 |45 |M8 |00001 00002| +730009 |Z Sco *|160600.7-214400 |M | 8.7 | 13.4 | |V |41750. | | 343.03 |49 |M5.5e:-M7e |00001 00002| +730010 |RR Sco *|165637.8-303448 |M | 5.0 | 12.4 | |V |45418. | | 281.45 |47 |M6II-IIIe-M9 |00001 00002| +730011 |RS Sco |165537.8-450611 |M | 6.2 | 13.0 | |V |44676. | | 319.91 |42 |M5e-M9 |00001 00002| +730012 |RT Sco |170332.6-365514 |M | 7.0 | 15.2 | |V |39252. | | 449.04 |41 |S7,2(M6e-M7e) |00001 00002| +730013 |RU Sco *|174225.2-434501 |M | 7.8 | 13.7 | |V |39980. | | 370.75 |54 |M4/6e-M7II-IIIe |00001 00002| +730014 |RV Sco *|165819.8-333633 |DCEP | 6.61 | 7.49 | |V |34925.38 | | 6.06133 |24 |F5-G1 |02309 08953| +730015 |RW Sco *|171451.7-332555 |M | 8.8 | 15.5 | |V |39078. | | 388.45 |40 |M5e |00001 00002| +730016 |RX Sco |161157.3-245356 |M | 11.2 |< 16. | |p |40838. | | 235.7 |40 |Me |00001 CoD | +730017 |RY Sco *|175052.3-334220 |DCEP | 7.51 | 8.44 | |V |28256.45 | | 20.31322 |37 |F6-G2 |09288 02852| +730018 |RZ Sco *|160436.1-240601 |M | 8.0 | 12.8 | |V |44698. | | 156.60 |45 |M3e-M4e |00001 00002| +730019 |SS Sco |165515.3-323750 |LC: | 9.78 | 11.9 : | |B | | | | |K2 |06450 00261| +730020 |ST Sco |163636.2-311402 |SRA | 10.4 | 13.9 | |p | | | 194.5 | |S4,7:(R5) |00236 08953| +730021 |SU Sco |164038.7-322248 |SR | 11.7 |< 13.2 | |p | | | 414. : | |C5,5(N0) |00236 00261| +730022 |SV Sco *|174820.0-354205 |M | 8.7 | 14.9 | |V |39606. | | 262.0 |49 |M3e |00001 00002| +730023 |SW Sco |172521.7-434956 |M | 10.8 |< 13.0 | |p |28410. | | 260.86 | |M4e |00236 CoD | +730024 |SX Sco |174728.2-354205 |SR: | 10.5 | 11.4 | |p | | | | |C5,4(N3) |02448 00262| +730025 |SY Sco *|175348.8-342403 |M | 10.5 |< 15.0 | |p |29458. | | 234.9 | |M6e |00001 02448| +730026 |SZ Sco |165629.2-393821 |M | 11.1 |< 13.0 | |p |30110. | | 320.86 | |M6e |00236 00263| +730027 |TT Sco |174030.4-413750 |SR: | 11.4 | 13.4 | |p | | | | |C4,4(N3) |00264 00021| +730028 |TU Sco |170735.6-314930 |M | 10.1 |< 13.0 | |p |34906. | | 373.04 | |M7IIe-M9 |00001 00261| +730029 |TV Sco |174327.1-434604 |SRB | 11.0 | 13.0 | |p | | | 200. | |Me |00014 03508| +730031 |TX Sco *|175515.2-341408 |CST | 7.7 | | |p | | | | |A2n | 09467| +730034 |UU Sco |160733.5-240312 |RRC | 12.5 | 13.4 | |p |40060.240 | | 0.36533 |20 | |09565 09565| +730037 |UX Sco |161026.2-240610 |SRA | 12.5 | 14.5 | |p |40706. | | 201.8 |40 | |00001 09565| +730044 |VZ Sco |161941.7-232428 |M | 11.0 | 15.5 | |p |40784. | | 217.7 |30 |Me |09565 09565| +730045 |WW Sco |162722.1-311814 |M | 10.6 |< 14.7 | |p |19944. | | 431. | |M6e-M9 |00017 UCAC2| +730046 |WX Sco |163248.6-262306 |IN: | 11.8 |< 16.0 | |p | | | | | |09447 09447| +730052 |YY Sco |163813.1-283410 |M | 10.4 | 17.0 | |p |36395. | | 327.43 | |M7e |00001 02452| +730054 |ZZ Sco |164101.3-272644 |M | 12.0 |< 17.0 | |B |43995. | | 209.3 | |Me |09567 00261| +730055 |AA Sco |164447.7-250653 | | 12. | 14. | |p | | | | | |00268 00261| +730056 |AB Sco |164544.1-281249 |EB:/D: | 12.5 | 13.0 | |p |29844.18 | | 10.636 | | |00270 00261| +730057 |AC Sco *|164635.2-272317 |UG: | 12.5 |< 16. | |p | | | | | |00121 00261| +730059 |AE Sco |165011.6-282734 |M | 12.2 | 16.4 | |p |24730. | | 174.5 | |M0e |00271 00261| +730060 |AF Sco |165025.6-253338 |N: | 10.9 |< 15. | |p | | | | | |00268 00261| +730062 |AH Sco *|171117.0-321931 |SRC | 8.1 | 12.0 | |p |29769. | | 713.6 |46 |M4e-M5Ia-Iab |00001 00261| +730063 |AI Sco *|175618.6-334843 |RVB | 9.3 | 12.9 | |p | | | 71.0 | |G0-K2 |00236 00272| +730064 |AK Sco |165444.9-365319 |INSB | 8.7 | 11.7 | |p | | | | |F5Vpea |00082 00263| +730065 |AL Sco *|164813.1-325642 |EA/SD | 11.2 | 13.5 | 11.3 |p |25086.135 | | 1.532249 |14 *|F: |00273 02532| +730077 |AX Sco |164149.8-270619 |SRB | 9.85 | 12.0 | |B | | | 138. : | |M6 |00236 00261| +730088 |BK Sco |155923.7-234624 |M | 10.4 |< 15.0 | |p |33044. | | 197.7 | |M7e |00265 GSC22| +730089 |BL Sco |172407.4-385225 |M | 11.0 | 17.0 | |p |29550. | | 396.3 | |M5e |00263 00263| +730090 |BM Sco *|174058.5-321252 |SRD | 6.8 | 8.7 | |p | | | 815. : | |K2.5Ib |00236 09864| +730091 |BN Sco *|175410.6-342027 |M | 12.5 | 16. : | |p |27910. | | 616. | | |00251 02448| +730095 |BR Sco |161313.4-102016 |SR | 11. | 12. | |p | | | | |MB |00278 BD | +730096 |BS Sco *|175504.4-313835 |EA/SD | 11.5 | 13.2 | |p |39301.468 | | 7.6223759 |10 |B5V |00001 00280| +730109 |CH Sco |163957.4-283027 | | 12.5 | 17. | |p | | | | | |00249 00261| +730112 |CL Sco *|165452.0-303718 |ZAND | 11.2 | 13.9 | |p | | | | |pec(e) |09566 09472| +730117 |CQ Sco *|174954.9-401953 |CWA | 11.94 | 13.00 | |V |44151.19 | | 30.447 |36 |F6 |00001 03513| +730143 |DU Sco |165024.4-304207 |SR: | 12.2 | 13.5 | |p | | | 70. : | | |00283 00261| +730146 |DX Sco *|165056.2-251038 | | 12.5 |< 15.0 | |p | | | | | |00283 00261| +730166 |EW Sco |165750.0-323444 |LB: | 11.5 | 12.3 | |p | | | | |S5,2 |00283 00261| +730170 |FF Sco |165810.6-320437 | | 12.3 | 13.6 | |p | | | | | |00283 00261| +730180 |FQ Sco *|170804.5-324202 |UGSS | 12.0 | 18.45 | |B | | |( 48. ) | | |08852 00261| +730184 |FU Sco *|171225.7-314848 |EA/DM | 12.0 | 12.8 | 12.7 |p |26586.250 | | 11.2682 |06 *| |00262 00261| +730185 |FV Sco *|171345.0-325109 |EA/DM | 7.95 | 8.72 |( 0.1 pg)|V |42954.0424 | | 5.7278964 |13 |B6V |00001 00262| +730187 |FX Sco |174200.0-391443 |M | 12.0 | 16.4 | |p |26130. | | 264. | |M1e |00014 00021| +730191 |GH Sco |175302.2-433839 |M | 10.5 |< 12.5 | |p |13710. | | 277. | |Me: |00285 08953| +730193 |GK Sco |160335.1-224112 |SR: | 11.8 | 14.1 | |p | | | | | |00286 CoD | +730250 |KQ Sco *|165138.5-452536 |DCEP | 9.34 | 10.29 | |V |35281.4 | | 28.6896 |35 |K5 |02309 00021| +730251 |KR Sco |161441.2-322328 |M | 11.6 | 14.4 | |p |26140. | | 357. | |M3e |00255 | +730252 |KS Sco |175846.4-422347 |M | 11.4 |< 16.3 | |p |26445. | | 429. | |M2e |00255 GSC22| +730254 |KU Sco |161501.4-134554 |LB: | 12.3 | 13.7 | |p | | | | |M6 |00293 00293| +730255 |KV Sco |163528.7-245649 |SRB | 12.0 | 12.7 | |p | | | 100. | |M6 |09447 00294| +730263 |LO Sco *|172540.3-442757 |M | 11.9 |< 16.5 | |p |25450. | | 420. | |Me |00014 GSC22| +730266 |LR Sco *|172753.6-435046 |SRD | 10.9 | 12.3 | |p |26460. | | 104.4 | |Fp |00014 | +730332 |QX Sco |174813.3-441544 |M | 11.6 | 14.6 | |p |23890. | | 360. | |Me |00014 | +730361 |V0361 Sco |175346.3-402807 |M | 12.5 | 16.5 | |p |24375. | | 148.5 | | |00014 USNO | +730364 |V0364 Sco |175448.2-440947 |M | 11.1 |< 16.5 | |p |24730. | | 256.3 | |Me |00014 | +730380 |V0380 Sco |165608.1-301906 |SRA | 9.16 | 10.6 | |V |27682. | | 187.17 |29 |M1 |00295 00261| +730381 |V0381 Sco *|174703.4-354707 |EA/GS | 12.3 | 16.0 | |p |24574. | | 6545. |10 |A5Ia |05772 00262| +730383 |V0383 Sco |175334.5-380501 |EA/GS | 11.7 | 14.1 | |p |20350. | | 4900. |12 :*|F0Ia |00250 03516| +730385 |V0385 Sco *|173809.5-374220 |E/D | 10.9 | 11.7 | |p |24711.690 | | 2.34515 | |B9 |00251 06286| +730387 |V0387 Sco *|174101.6-360106 |E | 12.1 | 12.5 | 12.2 |p |26120.570 | | 1.37494 | | |00251 00262| +730393 |V0393 Sco *|174847.6-350326 |EA/SD | 8.2 | 9.0 | 8.3 |p |28321.118 | | 7.71250 |12 *|B9 |00001 08953| +730438 |V0438 Sco |175716.4-372900 |M | 11.1 | 16.2 | |p |27274. | | 392.0 | |M3e |00001 CoD | +730449 |V0449 Sco |173658.6-320743 |CST | 7.1 | | |p | | | | |A2V | 00262| +730450 |V0450 Sco *|174223.0-351500 |LB | 10.33 | | |V | | | | |C4-5,4-5(R8-N3) |00251 00262| +730451 |V0451 Sco |174851.6-352230 |E | 12.0 | 12.4 | |p |24411.480 | | | | |00251 06286| +730453 |V0453 Sco *|175616.1-322830 |EB/GS | 6.36 | 6.73 | 6.70 |V |42218.74 | | 12.00597 | |B0.5Iape |08105 09467| +730457 |V0457 Sco *|170802.5-355741 |EA/DM | 10.6 | 11.4 | 11.3 |p |27182.630 | | 2.00738 |10 *| |00262 00262| +730458 |V0458 Sco |170807.1-301905 |EA/SD | 12.5 | 13.6 | |p |25386.435 | | 0.799654 |18 *| |00262 00262| +730459 |V0459 Sco |170821.2-310320 |LB | 11.9 | 12.4 | |p | | | | |M7 |00262 00262| +730461 |V0461 Sco |171006.9-331917 |LB | 11.3 | 12.8 | |p | | | | | |00262 00262| +730462 |V0462 Sco |171014.3-332501 |E | 11.7 | 12.5 | |p |26098.750 | | | | |00262 00262| +730464 |V0464 Sco *|171122.4-364547 |EA/SD: | 12.5 | 14.2 | |p |26559.210 | | 4.70901 |08 | |00262 00262| +730465 |V0465 Sco |171224.8-334349 |LB | 10.5 | 11.4 | |p | | | | |M1 |00262 00262| +730467 |V0467 Sco *|171519.3-363900 |EA/SD | 11.7 | 15.4 | |p |26503.430 | | 2.41342 |14 | |00262 00262| +730468 |V0468 Sco |171546.5-365201 |E | 12.1 | 12.5 | |p |26572.340 | | | | |00262 00262| +730470 |V0470 Sco *|171725.5-371908 |DCEP | 10.48 | 11.37 | |V |35308.32 | | 16.2615 |27 | |02309 00262| +730472 |V0472 Sco *|171755.2-350539 |EA/GS | 12.2 | 12.6 | |p |28698. | | 208.75 |04 |K3III |00262 00262| +730474 |V0474 Sco *|171851.4-313459 |EB | 10.3 | 11.0 | 10.6 |p |26472.510 | | 1.62004 | |B3-5 |00262 00262| +730475 |V0475 Sco |171856.1-322453 |E | 12.2 | 13.2 | |p |28334.410 | | | | |00262 00262| +730477 |V0477 Sco |172415.8-304927 |LB | 11.6 | 12.4 | |p | | | | |M2 |00262 00262| +730479 |V0479 Sco |172741.3-310819 |LB | 11.7 | 12.5 | |B | | | | |M1 |00262 00262| +730482 |V0482 Sco |173048.4-333636 |DCEP | 7.63 | 8.30 | |V |40754.495 | | 4.527807 |28 |F5 |00001 00262| +730483 |V0483 Sco *|173127.9-340306 |LB | 12.3 | 13.6 | |p | | | | | |00262 00262| +730485 |V0485 Sco *|173155.0-334343 |SRA | 11.0 | 11.6 | |p |26550. | | 845. | |M5III |00262 00262| +730487 |V0487 Sco *|173505.8-342345 |RRC | 11.11 | 11.59 | |V |41456.611 | | 0.329141 |35 |A3-F8 |00001 02448| +730490 |V0490 Sco *|173754.5-335704 |EA/DM | 12.0 | 12.6 | 12.5 |p |28425.295 | | 3.003757 |05 *| |02448 02448| +730494 |V0494 Sco *|174048.5-313232 |RRAB | 10.62 | 11.91 | |V |41126.388 | | 0.4273326 |20 |A5-F5: |07984 00262| +730495 |V0495 Sco *|174140.1-362433 |SRB | 11.0 | 12.2 | |p | | | 700. : | | |00262 00262| +730496 |V0496 Sco *|174302.6-322214 |EA/SD | 11.1 | 12.3 | |p |27299.340 | | 2.19250 |09 |F5 |00262 00262| +730499 |V0499 Sco *|172902.3-330016 |EB/DM | 8.25 |( 0.51 )| |V |28340.405 | | 2.3332977 | |B1V |02853 08953| +730500 |V0500 Sco |174837.5-302834 |DCEP | 8.40 | 9.13 | |V |44400.89 | | 9.316863 |49 |K0 |00001 00299| +730502 |V0502 Sco *|171614.7-404923 |E/SD | 12.4 | 14.0 | |p |26595.309 | | 7.969388 | | |00300 00263| +730503 |V0503 Sco |171635.4-452543 |E/SD | 12.0 | 13.6 | |p |26183.236 | | 6.08628 | |A0 |00300 00021| +730511 |V0511 Sco |172822.5-420239 |E/SD | 12.5 |< 16.0 | |p |26156.420 | | 7.5799 | | |00300 08613| +730527 |V0527 Sco |174117.7-441946 |E/SD | 11.8 | 13.5 | |p |26176.300 | | 5.6192 | | |00300 | +730543 |V0543 Sco |174740.8-425308 |EA/SD | 12.0 | 13.3 | |p |31204.5260 | | 0.9333668 |18 *| |03516 03516| +730562 |V0562 Sco *|164430.2-374805 |EA/KE | 11.6 | 12.1 | 12.1 |p |29113.19 | | 1.054997 |20 | |00263 00263| +730563 |V0563 Sco |164506.2-412445 |LB | 11.5 | 12.5 | |p | | | | | |00263 00263| +730565 |V0565 Sco |164932.5-405556 |EA/D | 10.6 | 11.0 | |p |29392.54 | | 6.289269 |06 *|B3 |00263 00263| +730567 |V0567 Sco *|164950.7-405506 |CEP | 12.21 | 13.31 | |V |29820.0 | | 34.0483 |15 | |00263 00263| +730569 |V0569 Sco *|165002.4-423608 |EA/DM | 10.7 | 11.5 | 11.4 |p |27923.60 | | 1.047238 |17 |A3 |00263 00263| +730571 |V0571 Sco |165217.0-381622 |EA/SD: | 12.4 | 13.3 | |p |29458.42 | | 2.100399 |12 *| |00263 00263| +730575 |V0575 Sco *|165424.5-364922 |EA/SD: | 12.3 | 12.9 | 12.4 |p |29846.29 | | 0.658939 |16 *| |00263 00263| +730577 |V0577 Sco |165458.2-420650 |LB | 12.5 | 13.6 | |p | | | | | |00263 00263| +730581 |V0581 Sco *|165618.7-375755 |EA | 11.8 | 12.3 | 11.9 |p |29470.53 | | 0.510999 |19 | |00263 00263| +730583 |V0583 Sco |165701.5-371738 |EA/SD: | 12.0 | 12.8 | |p |29486.34 | | 0.994728 |11 *| |00263 00263| +730586 |V0586 Sco *|165732.2-411836 |EA | 12.4 | 12.8 | |p |29428.53 | | 0.955937 |07 | |00263 00263| +730590 |V0590 Sco *|165850.8-422214 |EA/SD: | 10.68 | 11.3 | |B |28392.24 | | 2.47282 |11 |B5 |00263 00263| +730591 |V0591 Sco |165853.0-350539 |EA/SD: | 11.7 | 12.4 | |p |29486.44 | | 0.777684 |15 *| |00263 00263| +730594 |V0594 Sco *|170024.6-414239 |EA/SD | 10.6 | 11.6 | |p |28720.41 | | 3.63293 |11 |F0 |00263 00263| +730600 |V0600 Sco |170403.8-384538 |RRAB | 12.5 | 13.6 | |p |29458.41 | | 0.455254 |25 | |00263 00263| +730604 |V0604 Sco |170612.0-400133 |EA/D: | 12.1 | 12.4 | |p |29428.53 | | 1.53789 |12 *|F8 |00263 00263| +730605 |V0605 Sco |170627.6-403027 |M | 12.0 |< 17.0 | |p |29000. | | 370.8 | | |00263 00263| +730606 |V0606 Sco *|170622.1-374131 |EA | 11.9 | 12.2 | |p |27945.45 | | 1.342884 |08 | |00263 00263| +730607 |V0607 Sco *|170616.9-355758 |EA/SD: | 10.2 | 10.8 | 10.3 |p |29470.45 | | 4.51657 |11 *|B8 |00263 00263| +730612 |V0612 Sco *|170953.0-423855 |EA/SD: | 12.0 | 12.6 | |p |29793.28 | | 1.06270 |10 | |00263 00263| +730614 |V0614 Sco |171220.5-365933 |SRA | 11.9 | 12.6 | |p |29750. | | 439. | | |00263 00263| +730616 |V0616 Sco *|171313.3-425903 |EA/DM | 12.0 | 12.5 | 12.4 |p |29750.64 | | 0.84411 |15 |F8 |00263 00263| +730619 |V0619 Sco *|171416.1-412121 |EB/KE | 11.9 | 12.4 | 12.1 |p |29458.23 | | 0.754620 | | |00263 00263| +730621 |V0621 Sco *|171436.8-410415 |EA/SD | 12.3 | 15.0 | |p |29113.13 | | 6.68717 |08 | |00263 00263| +730626 |V0626 Sco |171711.2-401725 |EA/D: | 11.4 | 11.8 | |p |29458.39 | | 1.03368 |11 *|A7 |00263 00263| +730628 |V0628 Sco *|171724.8-365208 |EA/KE | 11.9 | 12.5 | 12.4 |p |29458.56 | | 1.169566 |16 | |00263 00263| +730629 |V0629 Sco *|171820.3-390342 |E | 11.9 | 12.4 | |p |27601.43 | | 3.2491 | | |00263 00263| +730632 |V0632 Sco *|172030.4-430434 |EA/D: | 11.5 | 11.9 | |p |29049.52 | | 1.610168 |07 |F |00263 00263| +730633 |V0633 Sco *|172120.4-415818 |EB:/KE: | 11.9 | 12.5 | 12.2 |p |29458.30 | | 0.493333 | | |00263 00263| +730634 |V0634 Sco *|172139.1-364511 |EA/DM | 11.7 | 12.3 | 12.2 |p |29458.23 | | 1.224028 |08 |A |00263 00263| +730635 |V0635 Sco |172222.9-414441 |LB | 9.5 | 10.7 | |p | | | | |S7,6:(Np) |00263 00263| +730636 |V0636 Sco *|172246.5-453651 |DCEP | 6.40 | 6.92 | |V |40364.392 | | 6.79671 |34 |F7/8Ib/II-G5 |05366 03520| +730637 |V0637 Sco |172330.8-405649 |SRB | 12.0 | 12.8 | |p | | | 85. : | | |00263 00263| +730638 |V0638 Sco *|172407.3-430204 |EA/D: | 11.3 | 12.0 | |p |27964.53 | | 2.358218 |10 |A |00263 00263| +730639 |V0639 Sco |172404.9-400358 |LB | 12.0 : | 14.0 | |p | | | | | |00263 00263| +730690 |V0690 Sco *|175738.6-403327 |RRAB | 10.80 | 12.00 | |V |41797.592 | | 0.4922551 |17 |A7-F8 |00001 02383| +730693 |V0693 Sco |175815.4-384747 |SR | 12.5 | 13.9 | |p | | | 140. : | |M3-5 |00248 06286| +730700 |V0700 Sco *|173113.2-312243 |EB:/DM | 10.19 | 10.5 | 10.3 |B |28066.28 | | 2.34690 | |B5 |00296 00296| +730701 |V0701 Sco *|173424.5-323016 |EW/KE | 8.63 | 9.05 | 9.05 |V |43574.8358 | | 0.76187547 | |B1:V:nn |09573 00296| +730702 |V0702 Sco *|173424.8-322747 |EA/DS | 12.0 | 13.8 | |B |27715.25 :| | 11.344818 | *|A0Ve |09574 00296| +730703 |V0703 Sco *|174216.8-323124 |DSCT | 7.58 | 8.04 | |V |42979.3923 | | 0.11521772 |35 |A9-G0 |00001 00262| +730714 |V0714 Sco *|175556.6-314247 |EA | 12.2 | 12.8 | |p |28342.431 | | 0.6982113 |23 | |00296 00296| +730715 |V0715 Sco |175725.9-334856 |M | 12.2 |< 14.7 | |p |28445. | | 340. | | |00296 00296| +730718 |V0718 Sco *|161311.6-222907 |EA | 8.98 | 10. | |V |42630.1 | | | |A2 |07492 08953| +730726 |V0726 Sco |171343.8-330407 |EA | 10.3 | 11.3 : | |p |31262.282 | | | |A0 |00306 00262| +730727 |V0727 Sco |171531.4-330615 |LB: | 9.7 |( 0.7 )| |p | | | | |M1 |00306 05474| +730756 |V0756 Sco *|162225.8-320713 |EA/D | 10.5 | 11.1 | 10.7 |p |38204.520 | | 10.78 |12 | |04399 04001| +730760 |V0760 Sco *|162443.7-345338 |EA/DM | 7.04 | 7.4 | 7.4 |B |38230.250 | | 1.7309 |17 |B3:Vn |04430 CoD | +730761 |V0761 Sco *|164347.9-354825 |EA/SD: | 12.5 | 14. | |p | | | | | |06561 06561| +730764 |V0764 Sco *|175608.5-450921 |EB/DM | 8.5 | 9.1 | 9.0 |p |38233.210 | | 6.8084 | |A5IV/V |04399 08953| +730765 |V0765 Sco |155054.9-245150 |RRAB | 12. | 13. | |p |29806.198 | | 0.4636602 |17 | |03551 03551| +730767 |V0767 Sco |160320.7-103011 |SR | 12.4 | 13.5 | |V |36700. | | | | |03519 | +730806 |V0806 Sco |161443.7-104253 |LB | 12.2 | 13.3 | |V | | | | | |03519 GSC22| +730818 |V0818 Sco *|161955.1-153825 |XI | 11.1 | 14.1 | |B |40081.13 | | 0.787313 | |pec(cont+e) |07593 03963| +730833 |V0833 Sco *|175356.0-363202 |EB/KE | 11.0 | 11.6 | 11.2 |p |31293.224 | | 1.187827 | |F0 |03513 03513| +730842 |V0842 Sco *|175613.0-434624 |EW/KW | 11.5 | 12.5 | 12.3 |p |31233.543 | | 0.4982826 | | |03513 03513| +730843 |V0843 Sco *|175635.5-364222 |EA/SD | 10.4 | 10.9 | 10.5 |p |30970.270 | | 0.983629 |18 *| |03513 03513| +730856 |V0856 Sco *|160834.3-390618 |INA | 6.80 | 8.00 | |V | | | | |A7IVe |09577 CoD | +730857 |V0857 Sco *|161141.5-270332 |M | 12.0 |< 15.6 | |B |40691. | | 361.8 | |Me |09565 05690| +730861 |V0861 Sco *|165636.0-404924 |EB | 6.07 | 6.40 | 6.28 |V |43704.21 | | 7.84825 | |B0.5Iae |06621 08953| +730862 |V0862 Sco *|174001.0-321204 |GCAS: | 2. | 8.5 | |V | | | | |B1ne-B8 |05922 05922| +730864 |V0864 Sco |160530.9-232838 |M | 12.5 | 17. | |p |40429. | | 223.0 |10 |Me |09565 UCAC2| +730866 |V0866 Sco *|161131.3-183826 |INT | 12.05 |( 0.5 )| |V | | | | |cont+e(T) |06415 06415| +730867 |V0867 Sco |161617.3-284443 |EA/SD | 12.3 | 14.5 | |p |39297.347 | | 3.32613 | | |09565 05234| +730869 |V0869 Sco |162409.3-282222 |SR: | 11.6 | 13.4 | |p | | | | | |09660 00294| +730870 |V0870 Sco *|165426.1-415603 | | 12.46 | 12.73 | |V | | | | |F5Ia |09661 06629| +730874 |V0874 Sco |161307.9-354133 |M | 12.5 | 15.2 | |p | | | | |Me |04453 UCAC2| +730877 |V0877 Sco *|163341.9-252334 |EB | 12.4 | 13.3 | 13.1 |p |40359.381 | | 4.58776 | | |09565 05690| +730880 |V0880 Sco |164114.4-340733 |M | 11. | 15. | |p | | | | |Me |02935 CoD | +730881 |V0881 Sco |164208.1-334601 |E | 8.8 |( 0.4 )| |p |28772.350 | | 2.491600 | |A0 |06871 06871| +730883 |V0883 Sco *|165752.5-375948 |EB/KE | 7.34 | 7.66 | |V |43285.794 | | 1.29484 | |B2.5Vn |00001 06871| +730884 |V0884 Sco *|170356.8-375039 |ELL+X | 6.51 | 6.60 | 6.57 |V |42476.6801 | | 3.41168 | |O5.5-O6.5Iaf |09664 09665| +730885 |V0885 Sco *|174759.0-373824 |E/DM | 8.6 |( 0.3 )| |p |28786.300 | | 3.119975 | |B2V |06871 06871| +730889 |V0889 Sco *|165137.2-445746 |E | 11.35 | 12.37 | |V |28673.0 | | 12.5127 | | |06871 06871| +730890 |V0890 Sco *|161329.3-322029 |L | 10.5 | 11.4 | |p | | | | |M7 |07790 CoD | +730891 |V0891 Sco |161345.9-230029 |INS | 12.5 | 14.5 | |p | | | | | |09447 07791| +730893 |V0893 Sco |161515.0-283732 |UG: | 10.6 | 14.5 | |p | | | | | |09447 UCAC2| +730894 |V0894 Sco *|161447.1-153931 |LB | 9.5 | | |V | | | | |Me |07594 07594| +730896 |V0896 Sco *|162538.5-261354 |INS | 12.0 | 13.7 | |p | | | | | |09447 05690| +730900 |V0900 Sco *|165358.9-415940 |ELL: | 6.29 | 6.34 | |V |42469.86 | | 2.63 | |B0.5Iae |08222 CoD | +730903 |V0903 Sco *|172731.3-310722 |LB | 12.1 | 12.7 | |p | | | | |M6 |02448 02448| +730904 |V0904 Sco |172956.7-410324 |E | 10. |( 0.4 )| |p |14862.588 | | 2.533993 | |A0 |08040 06561| +730905 |V0905 Sco |174159.0-333014 |ACYG: | 6.49 | 6.67 | |V | | | | |A2Ia-0pe |07887 CoD | +730906 |V0906 Sco *|175354.8-344510 |EA/DM | 5.96 | 6.23 | 6.21 |V |39649.8190 | | 2.785847 |13 *|B9V+B9V |09748 07798| +730907 |V0907 Sco *|175655.6-344501 |EA/DM | 8.61 | 9.2 | 9.2 |V |14862.585 | | 3.776277 | |A0 |09749 CoD | +730911 |V0911 Sco *|165227.4-404323 |ACV | 6.32 | 6.38 | |V | | | 1.85 | |B9p(Si) |07924 CoD | +730912 |V0912 Sco |165926.2-445027 |LB | 12.2 | 13.5 | |p | | | | |Me |02935 USNO | +730913 |V0913 Sco *|155834.9-244953 |SXARI | 5.40 | 5.47 | |V | | | 0.492 | |B4IV-Vp(He weak) |09750 CoD | +730914 |V0914 Sco *|165648.6-390538 |UV+BY | 12.4 | 14.0 | |U | | | | |M3Ve+M4Ve |09752 09751| +730915 |V0915 Sco *|171427.6-394600 | | 6.22 | 6.64 | |V | | | | |G5Ia |09754 CoD | +730918 |V0918 Sco |163622.6-425132 |ELL | 5.42 | 5.50 | |V | | | 9.813 | |O8.5I+O7III(f) |08530 CoD | +730919 |V0919 Sco *|165219.3-415116 |WR | 6.45 | 6.61 | |V | | | 2. : | |WN7+O-B1I |04326 CoD | +730920 |V0920 Sco *|165443.2-414936 |BCEP | 9.85 |( 0.043 )| |B | | | 0.10120 | |B1V(n) |09948 09949| +730921 |V0921 Sco *|165906.8-424209 |GCAS | 11.43 |( 0.30 )| |V | | | | |Bep |08535 04349| +730922 |V0922 Sco *|170253.8-382737 |DSCTC | 7.45 |( 0.10 )| |B | | | 0.05 | |A1IV |04355 CoD | +730923 |V0923 Sco *|170350.9-380909 |EA/D | 5.86 | 6.24 | |V |41903.691 | | 34.8269 | |F3IV-V+F3V |08537 CoD | +730924 |V0924 Sco *|173021.7-334530 |ACYG | 10.11 | 10.35 | |V | | | | |A2Iaeq |04386 04386| +730925 |V0925 Sco *|173556.4-332557 |SRD | 8.35 | 8.53 | |V | | | | |G0Ia |04388 09951| +730927 |V0927 Sco *|155439.5-251438 |SXARI | 5.8 |( 0.03 )| |V |44256.572 | | 1.45937 | |B8IIIp(He weak) |08054 CoD | +730928 |V0928 Sco |155748.8-233138 |ACV | 6.74 | 6.76 | |V | | | | | |67248 CoD | +730929 |V0929 Sco |160606.4-233623 |SXARI | 5.89 | 5.91 | |V | | | | | |67248 CoD | +730932 |V0932 Sco |161847.4-284511 |IN | 12.3 |< 15.5 | |p | | | | | |67089 67090| +730933 |V0933 Sco |162005.5-200323 |ACV | 7.37 |( 0.045 )| |V | | | | | |67072 BD | +730936 |V0936 Sco |162539.1-292402 |ACV | 7.63 | 7.71 | |V | | | | | |67065 CoD | +730944 |V0944 Sco |163549.5-251747 |INS | 10.2 | 11.4 | |p | | | | | |67089 67267| +730945 |V0945 Sco |165354.5-415215 |BCEP | 9.83 |( 0.02 )| |B | | | | | |67281 67282| +730946 |V0946 Sco |165401.8-415112 |BCEP | 10.45 |( 0.06 )| |B | | | | | |67281 67282| +730947 |V0947 Sco |165436.0-415338 |BCEP | 10.16 |( 0.04 )| |B | | | | | |67281 67282| +730948 |V0948 Sco |170415.6-380306 |ACV | 9.34 | 9.36 | |V | | | | | |67248 CoD | +730949 |V0949 Sco |173224.6-341646 |DSCTC | 6.13 |( 0.05 )| |V | | | | | |67284 CoD | +730950 |V0950 Sco |173737.6-404849 |DCEPS | 7.07 | 7.40 | |V | | | | | |67287 CoD | +730951 |V0951 Sco |175358.1-344952 |ACV | 6.39 | 6.44 | |V | | | | | |67072 CoD | +730952 |V0952 Sco |161015.9-265433 |ACV | 6.57 |( 0.04 )| |V | | | | | |68222 CoD | +730953 |V0953 Sco |162009.8-255126 |ACV | 9.2 |( 0.04 )| |V | | | | | |68222 CoD | +730954 |V0954 Sco |163853.9-440926 |EB/KE | 7.49 | 7.75 | |V | | | | | |68332 68224| +730955 |V0955 Sco |163931.6-271708 |ACV | 8.65 |( 0.04 )| |V | | | | | |68222 CoD | +730956 |V0956 Sco |170705.2-354532 |GCAS | 8.0 | 8.6 | |p | | | | | |68225 68225| +730957 |V0957 Sco |175213.7-344757 |SXARI | 5.87 |( 0.05 )| |V | | | | | |68187 CoD | +730958 |V0958 Sco |175316.0-343715 |ACV | 6.95 |( 0.05 )| |V | | | | | |68187 CoD | +730959 |V0959 Sco |175323.4-350101 |ACV | 7.25 |( 0.14 )| |V | | | | | |68187 CoD | +730960 |V0960 Sco |175634.3-314936 |N | 10.5 |< 17. | |V | | | | | |68340 68340| +730961 |V0961 Sco |162049.3-252339 |ACV | 10.17 | 10.25 | |U | | | | | |69056 CoD | +730962 |V0962 Sco |165339.1-414748 |BE | 10.01 |( 0.05 )| |B | | | | | |69249 69250| +730963 |V0963 Sco |165414.2-415501 |BCEP: | 10.7 |( 0.014 )| |B | | | | | |69249 69250| +730964 |V0964 Sco |165418.3-415136 |BCEP | 9.86 |( 0.02 )| |B | | | | | |69249 69250| +730965 |V0965 Sco |173033.4-333916 |RS | 8.46 | 8.67 | |V | | | | | |69252 CoD | +730970 |V0970 Sco |173941.2-321758 |ACV: | 9.52 | 9.56 | |U | | | | | |69056 CoD | +730971 |V0971 Sco |174012.6-320933 |ACV | 10.19 | 10.24 | |U | | | | | |69056 CoD | +730972 |V0972 Sco |162322.9-262216 |DSCT | 9.52 | 9.69 | |V | | | | | |70103 70171| +730973 |V0973 Sco |165133.7-411350 |ACYG | 5.22 | 5.28 | |V | | | | | |70077 CoD | +730974 |V0974 Sco |170409.3-374603 |ACV | 8.80 |( 0.07 )| |V | | | | | |70104 70164| +730975 |V0975 Sco |172239.2-374817 |ACYG | 6.27 | 6.35 | |V | | | | | |70077 CoD | +730976 |V0976 Sco |174009.4-321214 |DSCT | 11.51 | 11.68 | |V | | | | | |70105 70106| +730977 |V0977 Sco |175150.4-323158 |N | 10.0 |< 19. | |V | | | | | |70107 2MASS| +730984 |V0984 Sco |163308.8-360912 |M | 7.66 | 8.74 | |J | | | | | |71144 2MASS| +730985 |V0985 Sco |164044.6-353729 |M | 8.45 | 9.67 | |J | | | | | |71144 USNO | +730986 |V0986 Sco |164711.3-331756 |M | 10.62 | 12.46 | |J | | | | | |71144 2MASS| +730987 |V0987 Sco |164848.5-330101 |M | 9.09 | 10.44 | |J | | | | | |71144 2MASS| +730988 |V0988 Sco |165404.6-312543 |M | 9.46 | 13.19 | |J | | | | | |71144 2MASS| +730989 |V0989 Sco |165657.0-311641 |M | 7.89 | 9.57 | |J | | | | | |71144 GSC22| +730990 |V0990 Sco |165810.7-305824 |M | 8.03 | 9.23 | |J | | | | | |71144 GSC22| +730991 |V0991 Sco |170629.1-374927 |RS: | 9.67 | 9.76 | |V | | | | | |71007 CoD | +730992 |V0992 Sco |170717.5-431522 |NA | 7.26 | 18. : | |V | | | | | |71145 71146| +730993 |V0993 Sco |173709.9-452121 |M | 7.94 | 9.99 | |J | | | | | |71144 GSC22| +730994 |V0994 Sco |173937.6-321913 |BCEP | 7.10 | 7.22 | |V | | | | | |71123 71153| +730995 |V0995 Sco |174829.3-424322 |M | 6.47 | 8.62 | |J | | | | | |71144 GSC22| +730996 |V0996 Sco |175416.6-401117 |M | 9.04 | 10.31 | |J | | | | | |71144 GSC22| +730997 |V0997 Sco |175424.9-395708 |M | 7.95 | 9.33 | |J | | | | | |71144 GSC22| +730998 |V0998 Sco |175556.7-400704 |M | 8.54 | 9.89 | |J | | | | | |71144 USNO | +730999 |V0999 Sco |175652.0-391110 |M | 8.90 | 10.64 | |J | | | | | |71144 2MASS| +731000 |V1000 Sco |161108.9-190447 |INT | 11.90 | 12.06 | |V | | | | | |72063 72151| +731001 |V1001 Sco |161159.3-190653 |INT | 11.61 | 11.70 | |V | | | | | |72063 72151| +731002 |V1002 Sco |161240.5-185928 |INT | 10.74 | 10.93 | |V | | | | | |72063 72151| +731003 |V1003 Sco |163826.3-432354 |ELL: | 5.83 |( 0.03 )| |V | | | | | |72099 CoD | +731004 |V1004 Sco |164508.9-450337 |M | 8.25 |( 1.39 )| |K | | | | | |72036 2MASS| +731005 |V1005 Sco |165102.2-442329 |M | 7.92 |( 1.46 )| |H | | | | | |72036 GSC22| +731006 |V1006 Sco |165304.9-433247 |SR | 7.80 | 10.40 | |J | | | | | |72036 2MASS| +731007 |V1007 Sco |165410.1-414930 |EB | 6.06 |( 0.24 )| |V | | | | | |72041 CoD | +731008 |V1008 Sco |170356.0-412401 |M | 3.00 | 5.85 | |L'| | | | | |72036 2MASS| +731009 |V1009 Sco |170717.9-403045 |SR | 3.52 | 5.10 | |L'| | | | | |72036 2MASS| +731010 |V1010 Sco |171053.7-422900 |M | 9.11 |( 1.43 )| |H | | | | | |72036 2MASS| +731011 |V1011 Sco |171052.4-395850 |M | 7.53 |( 2.72 )| |J | | | | | |72036 2MASS| +731012 |V1012 Sco |171522.3-381247 |EB | 6.76 | 6.83 | |b | | | | | |72040 CoD | +731013 |V1013 Sco |171616.1-375207 |SR | 8.34 |( 1.64 )| |K | | | | | |72036 USNO | +731014 |V1014 Sco |171752.8-374908 |M | 10.83 |( 1.61 )| |J | | | | | |72036 2MASS| +731015 |V1015 Sco |171929.2-372136 |SR | 10.47 |( 2.68 )| |H | | | | | |72036 2MASS| +731016 |V1016 Sco |173027.6-342745 |SR | 9.44 |( 2.79 )| |K | | | | | |72036 2MASS| +731017 |V1017 Sco |173030.7-343221 |RS: | 8.23 | 8.27 | |V | | | | | |72152 CoD | +731018 |V1018 Sco |173502.7-333330 |SR | 2.42 | 4.70 | |L'| | | | | |72036 2MASS| +731019 |V1019 Sco |173914.9-301424 |SR | 8.11 |( 3.39 )| |J | | | | | |72036 2MASS| +731026 |V1026 Sco |155640.0-220140 |IA | 8.85 | 9.83 | |T | | | | | |73157 BD | +731027 |V1027 Sco |160834.6-390534 |ACV: | 6.60 | 6.67 | |V | | | | | |73297 CoD | +731028 |V1028 Sco |162729.7-291718 |ACV | 7.00 |( 0.01 )| |V | | | | | |73298 CoD | +731031 |V1031 Sco |163614.4-261813 |UV | 12.0 |< 18. | |U | | | | | |73209 73209| +731032 |V1032 Sco |165358.6-414842 |BCEP | 9.90 |( 0.02 )| |B | | | | | |73300 73300| +731034 |V1034 Sco |165419.8-415009 |EA | 8.12 | 8.43 | |V | | | | | |73300 73300| +731035 |V1035 Sco |171823.1-342431 |WR | 9.27 |( 0.03 )| |V | | | | | |73303 CoD | +731036 |V1036 Sco |173442.5-323454 |ELL | 5.71 | 5.79 | |V | | | | | |73304 CoD | +731037 |V1037 Sco |173758.5-352304 |PVTEL: | 9.62 | 9.83 | |V | | | | | |73305 CoD | +731038 |V1038 Sco |175206.8-421406 |M | 8.06 | 9.57 | |J | | | | | |73116 GSC22| +731039 |V1039 Sco |154737.7-220521 |SRD: | 11.01 | 11.44 | |Hp| | | | | |HIP HIP | +731040 |V1040 Sco |155355.9-235841 |BCEP: | 5.39 | 5.42 | |Hp| | | | | |HIP HIP | +731041 |V1041 Sco |160151.5-282226 |EA | 8.94 | 9.26 | |Hp| | | | | |HIP HIP | +731042 |V1042 Sco |160200.4-111733 |LB | 9.18 | 9.38 | |Hp| | | | | |HIP HIP | +731043 |V1043 Sco |160229.1-260853 |SRB | 7.45 | 7.58 | |Hp| | | | | |HIP HIP | +731044 |V1044 Sco |160402.9-215540 |E: | 8.76 | 8.96 | |Hp| | | | | |HIP HIP | +731045 |V1045 Sco |160607.6-135327 |LB: | 8.08 | 8.19 | |Hp| | | | | |HIP HIP | +731046 |V1046 Sco |160639.0-262502 |E | 9.34 | 9.70 | |Hp| | | | | |HIP HIP | +731047 |V1047 Sco |160835.8-204827 |I: | 11.17 | 11.53 | |Hp| | | | | |HIP HIP | +731048 |V1048 Sco |160921.9-354412 |LB: | 9.05 | 9.15 | |Hp| | | | | |HIP HIP | +731049 |V1049 Sco |161023.4-291700 |LB | 7.96 | 8.08 | |Hp| | | | | |HIP HIP | +731050 |V1050 Sco |161312.3-341825 |SRB | 7.38 | 7.49 | |Hp| | | | | |HIP HIP | +731051 |V1051 Sco |161345.5-242520 |SXARI | 6.40 | 6.43 | |Hp| | | | | |HIP HIP | +731052 |V1052 Sco |161646.0-082547 |LB: | 8.62 | 8.73 | |Hp| | | | | |HIP HIP | +731053 |V1053 Sco |161952.0-143835 |LB: | 8.03 | 8.16 | |Hp| | | | | |HIP HIP | +731054 |V1054 Sco |162028.2-125440 |E: | 6.63 | 6.71 | |Hp| | | | | |HIP HIP | +731055 |V1055 Sco |162726.2-372837 |EW | 8.65 | 8.92 | |Hp| | | | | |HIP HIP | +731056 |V1056 Sco |162752.3-354700 |BY: | 9.47 | 9.55 | |Hp| | | | | |HIP HIP | +731057 |V1057 Sco |162846.2-354124 |SRB | 7.62 | 7.85 | |Hp| | | | | |HIP HIP | +731058 |V1058 Sco |163141.8-414902 |ACYG | 5.36 | 5.42 | |Hp| | | | | |HIP HIP | +731059 |V1059 Sco |163548.7-420722 |BE | 9.37 | 9.64 | |Hp| | | | | |HIP HIP | +731060 |V1060 Sco |163641.0-320633 |DSCTC | 8.88 | 8.92 | |Hp| | | | | |HIP HIP | +731061 |V1061 Sco |163740.1-425705 |LB | 8.03 | 8.23 | |Hp| | | | | |HIP HIP | +731062 |V1062 Sco |163830.9-390908 |ACV | 6.92 | 6.98 | |Hp| | | | | |HIP HIP | +731063 |V1063 Sco |164042.5-410737 |GCAS | 7.87 | 8.06 | |Hp| | | | | |HIP HIP | +731064 |V1064 Sco |164124.8-420338 |LB: | 7.60 | 7.70 | |Hp| | | | | |HIP HIP | +731065 |V1065 Sco |164300.6-384021 |ACV | 7.69 | 7.75 | |Hp| | | | | |HIP HIP | +731066 |V1066 Sco |164358.4-363821 |LB: | 9.07 | 9.20 | |Hp| | | | | |HIP HIP | +731067 |V1067 Sco |165059.1-264652 |E: | 10.37 | 10.77 | |Hp| | | | | |HIP HIP | +731068 |V1068 Sco |165342.4-430304 |LB | 5.71 | 5.96 | |Hp| | | | | |HIP HIP | +731069 |V1069 Sco |165531.0-392759 |EA: | 8.54 | 8.79 | |Hp| | | | | |HIP HIP | +731070 |V1070 Sco |165552.3-312811 |LPB | 7.65 | 7.70 | |Hp| | | | | |HIP HIP | +731071 |V1071 Sco |165750.2-390657 |SRB | 6.54 | 6.64 | |Hp| | | | | |HIP HIP | +731072 |V1072 Sco |170322.2-400516 |DSCTC | 7.42 | 7.47 | |Hp| | | | | |HIP HIP | +731073 |V1073 Sco |170449.4-340723 |ACYG: | 4.89 | 4.95 | |Hp| | | | | |HIP HIP | +731074 |V1074 Sco |170628.4-352704 |ACYG: | 6.23 | 6.26 | |Hp| | | | | |HIP HIP | +731075 |V1075 Sco |171519.3-333254 |BE: | 5.57 | 5.64 | |Hp| | | | | |HIP HIP | +731076 |V1076 Sco |171617.6-422021 |BE | 6.76 | 6.84 | |Hp| | | | | |HIP HIP | +731077 |V1077 Sco |171820.5-323311 |BE | 6.36 | 6.44 | |Hp| | | | | |HIP HIP | +731078 |V1078 Sco |171924.1-380013 |BE | 7.78 | 7.97 | |Hp| | | | | |HIP HIP | +731079 |V1079 Sco |172046.2-402318 |LB | 8.98 | 9.62 | |Hp| | | | | |HIP HIP | +731080 |V1080 Sco |172241.9-381208 |IA: | 7.65 | 7.78 | |Hp| | | | | |HIP HIP | +731081 |V1081 Sco |172912.9-313203 |EA | 6.97 | 7.12 | |Hp| | | | | |HIP HIP | +731082 |V1082 Sco |173627.4-332936 |E: | 10.09 | 10.53 | |Hp| | | | | |HIP HIP | +731083 |V1083 Sco |173730.9-351959 |BE | 8.15 | 8.36 | |Hp| | | | | |HIP HIP | +731084 |V1084 Sco |173757.4-391123 |EW: | 9.07 | 9.18 | |Hp| | | | | |HIP HIP | +731085 |V1085 Sco |173937.8-361541 |LB: | 8.99 | 9.20 | |Hp| | | | | |HIP HIP | +731086 |V1086 Sco |174335.2-323946 |LB | 6.44 | 6.67 | |Hp| | | | | |HIP HIP | +731087 |V1087 Sco |174911.0-331501 |LB | 8.65 | 8.84 | |Hp| | | | | |HIP HIP | +731088 |V1088 Sco |174944.9-423619 |LB | 8.01 | 8.18 | |Hp| | | | | |HIP HIP | +731089 |V1089 Sco |174946.9-412633 |ACV | 7.52 | 7.57 | |Hp| | | | | |HIP HIP | +731090 |V1090 Sco |175015.2-412630 |E: | 8.30 | 8.45 | |Hp| | | | | |HIP HIP | +731091 |V1091 Sco |175330.0-363031 |ACV | 7.95 | 8.01 | |Hp| | | | | |HIP HIP | +731092 |V1092 Sco |175710.4-415842 |LPB | 6.69 | 6.74 | |Hp| | | | | |HIP HIP | +731094 |V1094 Sco |160836.2-392303 |EB | 12.5 |( 0.50 )| |V | | | | | |75163 75164| +731095 |V1095 Sco |160939.5-385507 |IT | 11.5 |( 0.13 )| |V | | | | | |75163 75164| +731096 |V1096 Sco |161004.8-401612 |IT | 11.1 |( 0.10 )| |V | | | | | |75163 75164| +731098 |V1098 Sco |161407.9-193829 |INT | 11.20 | 12.05 | |V | | | | | |75086 UCAC2| +731099 |V1099 Sco |162329.6-395801 |IT | 11.0 |( 0.12 )| |V | | | | | |75163 75164| +731100 |V1100 Sco |162316.4-295603 |M | 12.0 |< 15.1 | |p | | | | | |75002 UCAC2| +731104 |V1104 Sco |170653.9-423640 |GCAS: | 8.96 | 9.14 | |V | | | | | |75242 CoD | +731109 |V1109 Sco |171754.9-301106 |M | 12.5 | 16.8 | |R | | | | | |75183 75184| +731141 |V1141 Sco |175411.2-300253 |NA | 8.5 |< 20. | |V | | | | | |75244 75245| +731142 |V1142 Sco |175525.0-310142 |NA | 6.9 |< 20. | |V | | | | | |75246 75311| +731149 |V1149 Sco |155836.9-225715 |INT | 10.10 | 10.25 | |V | | | | | |76136 DM | +731152 |V1152 Sco |160125.6-224040 |BY | 11.45 |( 0.14 )| |V | | | | | |76134 76135| +731154 |V1154 Sco |160210.4-224128 |RS: | 11.32 |( 0.13 )| |V | | | | | |76134 76135| +731156 |V1156 Sco |160447.8-193023 |BY | 11.16 |( 0.17 )| |V | | | | | |76134 76135| +731157 |V1157 Sco |161120.6-182054 |BY | 12.45 |( 0.16 )| |V | | | | | |76134 76135| +731160 |V1160 Sco |162052.1-315323 |M | 11.3 |< 14.7 | |V | | | | | |76012 UCAC2| +731161 |V1161 Sco |163246.0-394549 |M | 10.1 |< 13.9 | |V | | | | | |76141 GSC22| +731162 |V1162 Sco |164601.3-363307 |M: | 12.5 |< 14.3 | |V | | | | | |76142 USNO | +731163 |V1163 Sco |173337.1-361535 |M | 9.9 | 12.4 | |V | | | | | |76054 UCAC2| +731172 |V1172 Sco |175447.5-310126 |SR: | 12.3 | 14.3 | |* | | | | | |76072 76057| +731174 |V1174 Sco |175512.2-310113 |SR: | 11.7 | 13.7 | |* | | | | | |76072 76057| +731176 |V1176 Sco |175640.5-300425 |SR: | 11.8 | 12.6 | |* | | | | | |76057 GSC22| +731177 |V1177 Sco |175728.3-311530 |M: | 12.4 | 15.0 | |* | | | | | |76072 GSC22| +731178 |V1178 Sco |175706.9-322305 |NA | 10.2 |< 18. | |V | | | | | |77136 77137| +731179 |V1179 Sco |155356.7-275420 |M | 12.1 |< 15.3 | |V | | | | | |77004 UCAC2| +731181 |V1181 Sco |163731.9-300603 |M: | 11.6 |< 14.2 | |V | | | | | |77004 UCAC2| +731182 |V1182 Sco |164933.5-333633 |SR: | 10.3 | 12.2 | |V | | | | | |77004 DM | +731183 |V1183 Sco |165832.7-331001 |M | 11.5 |< 13.8 | |V | | | | | |77004 2MASS| +731184 |V1184 Sco |173030.1-394011 |SR: | 9.6 | 10.8 | |V | | | | | |77004 DM | +731185 |V1185 Sco |174424.0-315536 |M | 3.41 | 4.47 | |L | | | | | |77081 2MASS| +731189 |V1189 Sco |160742.6-264508 |SRA | 11.2 | 13.2 | |V |53150 | | 192. | |Me |78090 GSC | +731194 |V1194 Sco |161221.2-274441 |SRA | 10.2 | 12.4 | |V |53100 | | 220. | | |78130 GSC | +731195 |V1195 Sco *|161923.0-405639 |EA | 8.86 | 9.04 | 9.01 |V |47963.349 | | 4.00305 | |B9IV |78011 DM | +731196 |V1196 Sco *|165120.4-260027 |SRA | 11.9 | 13.8 | |V |53300 | | 430. | |C(N)e |78130 GSC | +731197 |V1197 Sco |165124.6-282154 |M | 12.4 |< 16.0 | |R |52483 | | 555. : | | |78006 USNO | +731198 |V1198 Sco |165359.3-415304 |LPB: | 11.89 |( 0.05 )| |V | | | 0.606 | | |78195 GSC | +731201 |V1201 Sco |165410.7-414747 |LPB: | 10.60 |( 0.03 )| |V | | | 0.714 | |B2IV-V |78195 GSC | +731204 |V1204 Sco |165415.7-414932 |BCEP: | 10.17 |( 0.05 )| |V | | | 0.323 | | |78195 GSC | +731206 |V1206 Sco |165416.2-415026 |LPB: | 10.74 |( 0.03 )| |V | | | 2.5 : | |B1.5V |78195 GSC | +731207 |V1207 Sco |165420.6-414929 |BCEP: | 11.20 |( 0.04 )| |V | | | 0.189 | |B1V(n) |78195 GSC | +731208 |V1208 Sco |165421.3-415142 |E | 9.72 |( 0.15 )| |V |51740.6702 | | | |B0.5V |78195 GSC | +731212 |V1212 Sco *|165431.2-415529 |DSCTC | 10.3 |( 0.04 )| |V | | | 0.0896 | | |78189 DM | +731216 |V1216 Sco *|165457.7-435627 |EA | 10.09 | 10.52 | 10.35 |V |52481.518 | | 3.92070 | |B0.5V |78011 DM | +731218 |V1218 Sco |165611.6-403529 |BCEP: | 10.4 |( 0.02 )| |B | | | 0.26 | |B5 |78197 78197| +731221 |V1221 Sco |165628.6-403328 |DSCT: | 12.5 |( 0.10 )| |B | | | 0.11 | |F5 |78197 78197| +731223 |V1223 Sco |165643.3-403625 |EA | 11.0 |( 0.22 )| |B |52468.5701 | | 1.9083 | |B1 |78197 78197| +731225 |V1225 Sco *|165647.4-404728 |EW: | 10.16 | 10.25 | 10.25 |V | | | 0.7791625 : | | |78197 78197| +731226 |V1226 Sco |170225.0-364935 |EA | 10.59 | 10.78 | |V |52929.460 | | 2.08355 |11 |A0 |78011 DM | +731227 |V1227 Sco |170228.9-351457 |M: | 10.8 | 12.7 | |R | | | | | |78199 78199| +731229 |V1229 Sco *|172643.3-421356 |EB | 8.90 | 9.08 | 8.96 |V |47921.793 | | 1.859839 | |B4III |78011 DM | +731230 |V1230 Sco *|174534.6-340054 |M | 11.3 | 16.5 | |R | | | 450. : | | |78218 2MASS| +731246 |V1246 Sco |175448.3-310220 |M: | 11.8 | 14.7 | |* |52482 :| | | | |78006 2MASS| +731252 |V1252 Sco |175531.5-310523 |M: | 11.9 | 15.0 | |* | | | | | |78006 2MASS| +731258 |V1258 Sco |175605.1-311520 |SR: | 11.7 | 13.2 | |* | | | | | |78006 2MASS| +731259 |V1259 Sco |175624.0-311048 |M | 12.2 | 15.9 | |I |50929 | | 460. | | |78006 2MASS| +731261 |V1261 Sco |175637.1-305105 |SR | 11.5 | 12.2 | |I |50987 | | 145. | | |78006 2MASS| +731262 |V1262 Sco |175637.9-310046 |M | 11.7 | 15.7 | |I |50588 | | 363. | | |78006 2MASS| +731263 |V1263 Sco |175638.8-305318 |SRA | 12.1 | 14.0 | |I |51320 | | 207. | | |78006 2MASS| +731265 |V1265 Sco |175644.3-310402 |M: | 11.6 | 13.2 | |I | | | 390. | | |78006 2MASS| +731268 |V1268 Sco |175656.2-304513 |M | 11.7 | 17.0 | |I |51350 | | 310. : | | |78006 2MASS| +731269 |V1269 Sco |175658.3-305230 |M | 11.2 | 14.8 | |I |50685 | | 216. | | |78006 2MASS| +731270 |V1270 Sco *|175702.5-400716 |EA | 9.17 | 9.72 | 9.70 |V |52441.669 | | 4.24319 | |A0IV |78011 DM | +731272 |V1272 Sco |175709.0-305823 |M | 11.5 | 14.2 | |I |51200 :| | 420. : | | |78006 2MASS| +731274 |V1274 Sco |175722.2-305458 |M: | 11.1 | 14.2 | |* | | | | | |78006 2MASS| +731275 |V1275 Sco |175725.4-304910 |M | 11.8 | 13.9 | |I | | | 390. : | | |78006 2MASS| +731276 |V1276 Sco |175735.4-310518 |M | 10.7 | 13.2 | |I |51070 | | 480. : | | |78006 2MASS| +731277 |V1277 Sco |175736.1-305952 |M: | 11.3 | 13.9 | |* | | | | | |78006 2MASS| +731278 |V1278 Sco |175746.5-312006 |M | 11.3 | 13.7 | |I |50585 | | 229. | | |78006 2MASS| +731279 |V1279 Sco *|160822.5-390447 |INT | 12.49 | 13.21 | |V | | | | |ea |07923 04068| +731283 |V1283 Sco |160817.0-170805 |EB | 8.58 | 8.68 | 8.61 |V |48510.607 | | 1.7587 | |A0V+K0III |79011 DM | +731284 |V1284 Sco |161338.8-412051 |EA | 9.54 | 9.72 | 9.71 |V |52722.863 | | 3.7297 |09 |B9III |79004 DM | +731288 |V1288 Sco |163700.0-451907 |EA | 8.17 | 8.51 | 8.26 |V |52040.789 | | 1.108897 |19 |B3III |79018 DM | +731290 |V1290 Sco |165001.4-413717 |EA | 7.96 | 8.07 | 8.01 |V |48704.307 | | 4.49244 |09 |O9.5IV |79006 DM | +731291 |V1291 Sco |165311.4-363807 |EA | 10.40 | 11.2 | 10.5 |V |51995.070 | | 50.007 |04 | |79009 DM | +731292 |V1292 Sco *|165355.6-415252 |EA | 7.57 | 7.80 | 7.73 |V |53182.567 | | 4.24038 |12 |O9.5III |79009 DM | +731293 |V1293 Sco |165357.6-413842 |EA | 9.77 | 10.19 | 10.07 |V |53478.825 | | 1.317716 |12 |B1V |79009 DM | +731294 |V1294 Sco |165400.0-414253 |EA | 7.58 | 7.67 | 7.59 |V |52468.620 | | 5.604 |10 |O9.5IV |79003 DM | +731295 |V1295 Sco |165435.8-412523 |EA | 7.96 | 8.19 | 8.11 |V |52439.649 | | 2.15767 |20 |B0IVn |79006 DM | +731296 |V1296 Sco *|165444.6-431653 |EA | 12.18 | 12.77 : | 12.72 : |V |52071.677 | | 5.8082 |08 | |79011 79108| +731297 |V1297 Sco |165605.2-402058 |EA | 8.40 | 8.47 | 8.46 : |V |52893.699 | | 4.84886 |08 |O7.5V |79011 DM | +731298 |V1298 Sco |170102.3-402025 |SRB | 12.2 |< 13.1 | |V | | | 96. | | |79064 79108| +731299 |V1299 Sco *|170426.0-391604 |EA | 11.73 | 12.2 : | 12.1 : |V |52501.474 | | 7.6945 |04 : |A2 |79011 79108| +731300 |V1300 Sco *|170458.4-383706 |EA | 8.87 | 9.03 | 9.02 : |V |48005.710 | | 29.3467 |02 : |B9IV/V |79006 DM | +731303 |V1303 Sco *|171305.3-344510 |EA | 11.74 | 12.10 | 11.78 |V |51978.842 | | 11.0943 |04 | |79193 79108| +731304 |V1304 Sco |172821.8-384148 |EA | 8.28 | 8.6 : | 8.59 : |V |52030.779 | | 3.3682 |14 |B3Vn |79011 DM | +731305 |V1305 Sco *|172840.0-333458 |EB: | 8.74 | 9.07 | 9.07 |V |52452.597 | | 1.297320 | |B2V:+B2V: |79011 DM | +731306 |V1306 Sco |173134.2-385140 |EA | 11.21 | 11.60 | 11.52 |V |52117.565 | | 5.54177 |07 |A3-A8 |79003 79115| +731307 |V1307 Sco |173741.7-423105 |DSCT | 9.89 | 10.55 | |V | | | 0.117031 |22 |A3 |79064 DM | +731308 |V1308 Sco *|174916.4-381135 |EA | 10.40 | 11.0 | 10.92 : |V |52549.519 | | 9.1066 |04 |G0 |79003 DM | +731314 |V1314 Sco |154939.5-251253 |SRB | 12.0 | 13.2 | |V | | | 490. | | |80001 GSC | NL80_2 +731315 |V1315 Sco |155244.8-260546 |SRB | 8.7 | 10.0 | |V | | | 82.8 | |M5 |80001 DM | NL80_2 +731316 |V1316 Sco |155341.6-251712 |M | 11.6 |< 15.0 | |V |54657. | | 225. | | |80415 80415| NL80_2 +731317 |V1317 Sco *|155517.1-292437 |RCB: | 11.8 |< 14. | |V | | | | | |80293 80293| NL80_2 +731318 |V1318 Sco |155526.1-250959 |M | 12.4 |< 15.0 | |V |53871. | | 252.5 | | |80002 2MASS| NL80_2 +731319 |V1319 Sco *|155551.6-214833 |RRC | 11.35 | 11.90 | |V |53129.476 | | 0.2541281 | | |80420 GSC | NL80_2 +731320 |V1320 Sco |155729.7-234510 |SRB | 12.0 | 13.8 | |V | | | 146.0 | | |80001 GSC | NL80_2 +731321 |V1321 Sco |155748.3-291811 |SRB | 12.0 | 14.0 | |V | | | 73.0 | | |80001 GSC | NL80_2 +731322 |V1322 Sco |155815.6-224443 |M | 10.9 |< 15.0 | |V |55064. | | 366.2 | |Me |80002 GSC | NL80_2 +731323 |V1323 Sco |155856.3-282449 |SRB | 12.1 | 12.8 | |V | | | 43.6 | | |80001 GSC | NL80_2 +731325 |V1325 Sco |160028.9-291153 |EA | 12.45 | 13.65 | 12.6 |V |53767.8643 | | 1.011387 |20 | |80002 DM | NL80_3 +731326 |V1326 Sco |160242.7-265438 |M | 11.0 |< 14.8 | |V |55064. | | 254. | |M7e |80001 GSC | NL80_3 +731327 |V1327 Sco *|160254.0-202248 |RS | 12.25 | 12.80 | |V | | | 1.95313 | |K7 |80001 GSC | NL80_3 +731330 |V1330 Sco |162307.8-230100 |INT: | 11.72 | 12.18 | |V | | | 4.0538 | |K5Ve |80034 DM | NL80_3 +731332 |V1332 Sco |162402.0-291045 |IT: | 9.8 | 10.1 | |V | | | 4.017 | |K7Ve |80001 DM | NL80_3 +731333 |V1333 Sco |162620.4-341713 |SRD | 11.1 | 11.7 | |V | | | 68.0 | |F8 |80001 DM | NL80_3 +731344 |V1344 Sco |164100.4-442823 |M | 11.6 : | 13.7 | |Ic|51570. :| | 404. | | |80450 2MASS| NL80_3 +731363 |V1363 Sco |164938.6-443141 |BCEP | 11.2 | 11.3 | |V | | | 0.1775964 | |B2 |80445 DM | NL80_3 +731364 |V1364 Sco *|165314.0-434458 |BCEP | 9.00 | 9.18 | |V | | | 0.2036040 | |B2Iab |80445 DM | NL80_3 +731365 |V1365 Sco |165429.5-413915 |EA | 9.23 | 9.43 | 9.28 |V |53033.926 | | 6.3495 | |B0.5V |80015 GSC | NL80_3 +731366 |V1366 Sco |165806.3-421924 |M | 1.79 | 3.51 | |K | | | 534. | |C |80166 GSC | NL80_3 +731387 |V1387 Sco |170045.0-442318 |M | 12.0 |< 13.5 | |Ic|50900. :| | 430. : | | |80450 2MASS| NL80_3 +731412 |V1412 Sco |170119.8-443748 |EA | 12.4 | 13.1 | 12.9 |V |54739.52 | | 2.32129 : |05 | |80001 GSC | NL80_3 +731417 |V1417 Sco |170214.2-442409 |M | 11.7 : | 12.8 | |Ic| | | 382. | | |80450 2MASS| NL80_3 +731421 |V1421 Sco |170402.2-443220 |M | 11.5 |< 13.4 | |Ic|51605. | | 350. | | |80450 2MASS| NL80_3 +731425 |V1425 Sco |170443.5-442730 |M | 11.0 : | 13.4 : | |Ic|51570. :| | 434. | | |80450 2MASS| NL80_3 +731427 |V1427 Sco |170457.3-443707 |M | 12.5 : | 14.7 | |Ic|50980. :| | 413. | | |80450 2MASS| NL80_3 +731430 |V1430 Sco |170758.0-342612 |DSCT | 9.51 | 9.80 | |V | | | 0.0837770 | |A5 |80171 DM | NL80_3 +731432 |V1432 Sco |171115.6-323805 |M | 12.5 |< 18.0 | |R |41180. | | 285. | |M6 |80461 2MASS| NL80_3 +731433 |V1433 Sco |171116.7-335859 |M | 11.9 | 17.6 | |R |39675. | | 210. | | |80461 2MASS| NL80_3 +731434 |V1434 Sco |171120.3-322628 |M | 12.0 | 17.6 | |R |40030. | | 150. | | |80461 2MASS| NL80_3 +731435 |V1435 Sco |171127.4-325623 |M | 12.5 | 17.6 | |R |40700. | | 395. | |M6 |80461 2MASS| NL80_3 +731436 |V1436 Sco |171132.3-322458 |M | 12.5 |< 18.0 | |R |40090. | | 235. | | |80461 2MASS| NL80_3 +731437 |V1437 Sco |171132.5-322911 |M | 11.6 | 14.8 | |R |40110. | | 160. | | |80461 2MASS| NL80_3 +731438 |V1438 Sco |171134.5-321227 |M | 12.5 | 18.5 | |R |40485. | | 335. | | |80461 2MASS| NL80_3 +731439 |V1439 Sco |171141.8-332740 |M | 11.9 | 17.6 | |R |40690. | | 340. | |M6 |80461 2MASS| NL80_3 +731440 |V1440 Sco |171143.1-332803 |M | 12.3 | 14.6 | |R |40490. | | 330. | | |80461 2MASS| NL80_3 +731443 |V1443 Sco |171151.7-325149 |M | 11.0 | 17.6 | |R |40090. | | 260. | |M7 |80461 2MASS| NL80_3 +731444 |V1444 Sco |171153.0-330052 |M | 11.3 | 14.8 | |R |40380. | | 310. | |M5 |80461 2MASS| NL80_3 +731445 |V1445 Sco |171153.1-331949 |M | 11.8 | 17.8 | |R |40360. | | 235. | |M6 |80461 2MASS| NL80_3 +731446 |V1446 Sco |171153.7-325948 |M | 12.3 |< 18.0 | |R |39450. | | 250. | |M3 |80461 2MASS| NL80_3 +731449 |V1449 Sco |171206.0-321705 |M | 11.2 | 14.8 | |R |40690. | | 230. | |M4 |80461 2MASS| NL80_3 +731452 |V1452 Sco *|171218.4-330603 |BCEP | 9.42 | 9.52 | |V | | | 0.1807742 | |B1/2Ib |80445 DM | NL80_3 +731453 |V1453 Sco |171223.2-340647 |M | 11.5 | 17.6 | |R |39700. | | 200. | |M5: |80461 2MASS| NL80_3 +731454 |V1454 Sco |171231.8-324846 |M | 12.1 | 16.2 | |R |40440. | | 340. | | |80461 2MASS| NL80_3 +731455 |V1455 Sco |171241.3-320452 |M | 11.9 | 17.6 | |R |39690. | | 225. | | |80461 2MASS| NL80_3 +731456 |V1456 Sco |171254.0-321424 |M | 11.9 | 17.6 | |R |40040. | | 205. | | |80461 2MASS| NL80_3 +731457 |V1457 Sco |171301.1-334137 |M | 11.9 | 15.8 | |R |40380. | | 260. | |M5 |80461 2MASS| NL80_3 +731458 |V1458 Sco |171302.9-333612 |M | 10.9 | 13.8 | |R |40480. | | 175. | |M3 |80461 2MASS| NL80_3 +731459 |V1459 Sco |171310.4-323920 |M | 12.1 | 16.5 | |R |39660. | | 195. | |M7 |80461 2MASS| NL80_3 +731466 |V1466 Sco |171354.4-325402 |M | 12.1 |< 18.0 | |R |40450. | | 180. | | |80461 2MASS| NL80_3 +731467 |V1467 Sco |171356.7-340157 |M | 11.0 |< 18.0 | |R |39715. | | 215. | | |80461 2MASS| NL80_3 +731468 |V1468 Sco |171359.5-322655 |M | 12.1 |< 18.0 | |R |40680. | | 490. | |M7: |80461 2MASS| NL80_3 +731469 |V1469 Sco |171359.9-375014 |M | 4.21 | 6.44 | |K | | | 568. | | |80166 2MASS| NL80_3 +731471 |V1471 Sco |171400.3-325158 |M | 11.7 |< 17.0 | |R |39730. | | 210. | | |80461 2MASS| NL80_3 +731472 |V1472 Sco |171403.3-320031 |M | 11.2 |< 16.0 | |R |40695. | | 185. | |M6 |80461 2MASS| NL80_3 +731477 |V1477 Sco |171423.3-322720 |M | 12.5 |< 18.0 | |R |39715. | | 185. | |M3 |80461 2MASS| NL80_3 +731479 |V1479 Sco |171439.7-322453 |M | 12.1 | 17.6 | |R |39705. | | 210. | |M4: |80461 2MASS| NL80_3 +731480 |V1480 Sco |171440.4-322559 |M | 12.5 |< 18.0 | |R |40680. | | 355. | |M6 |80461 2MASS| NL80_3 +731481 |V1481 Sco |171442.0-320910 |M | 11.6 | 17.6 | |R |40060. | | 240. | |M6 |80461 2MASS| NL80_3 +731482 |V1482 Sco |171443.5-321022 |M | 12.2 |< 18.0 | |R |39800. | | 305. | | |80461 2MASS| NL80_3 +731483 |V1483 Sco |171448.7-324120 |M | 12.3 |< 18.0 | |R |40740. | | 230. | |M7 |80461 2MASS| NL80_3 +731484 |V1484 Sco |171453.7-320622 |M | 11.9 | 15.8 | |R |40695. | | 355. | | |80461 2MASS| NL80_3 +731486 |V1486 Sco |171522.1-322041 |M | 12.3 |< 16.0 | |R |40400. | | 250. | |M7 |80461 2MASS| NL80_3 +731488 |V1488 Sco *|171524.5-322817 |M | 12.3 | 17.6 | |R |40030. | | 250. | |M6 |80461 2MASS| NL80_3 +731489 |V1489 Sco |171526.4-322646 |M | 12.3 |< 18.0 | |R |41180. | | 240. | | |80461 2MASS| NL80_3 +731490 |V1490 Sco |171529.1-321429 |M | 12.4 |< 16.0 | |R |40090. | | 240. | | |80461 2MASS| NL80_3 +731493 |V1493 Sco |171632.7-391046 |M | 3.49 | 5.11 | |K | | | 628. | |C |80166 2MASS| NL80_3 +731494 |V1494 Sco |171634.6-323852 |M | 12.0 |< 17.0 | |R |40380. | | 260. | |M5 |80461 2MASS| NL80_3 +731497 |V1497 Sco |171709.8-341548 |M | 11.9 | 16.6 | |R |40685. | | 205. | |M5 |80461 2MASS| NL80_3 +731500 |V1500 Sco |171758.7-341315 |M | 12.2 | 16.6 | |R |40370. | | 250. | |M6 |80461 2MASS| NL80_3 +731501 |V1501 Sco |171806.9-324730 |M | 12.2 |< 18.0 | |R |39700. | | 180. | | |80461 2MASS| NL80_3 +731503 |V1503 Sco |172513.1-391922 |M | 5.51 | 7.38 | |K | | | 630. | |C |80166 2MASS| NL80_3 +731504 |V1504 Sco *|172658.6-433314 |RVB | 11.7 | 13.1 | |V | | | 44. | |G0p |80184 GSC | NL80_3 +731506 |V1506 Sco *|172738.2-380836 |EW | 11.5 | 11.8 | |V | | | 0.378603 | | |80138 GSC | NL80_3 +731507 |V1507 Sco |173228.2-340314 |LB | 10.5 | 11.4 | |V | | | | |M3 |80001 GSC | NL80_3 +731512 |V1512 Sco *|173510.2-322904 |DSCTC | 10.03 |( 0.04 )| |V | | | 0.068554 | |A5 |80470 80470| NL80_3 +731515 |V1515 Sco |174812.2-404936 |M | 3.10 | 4.18 | |K | | | 545. | |C |80166 2MASS| NL80_3 +731516 |V1516 Sco |174950.0-400758 |M | 6.79 | 7.80 | |K | | | 399. | | |80166 2MASS| NL80_3 +739001 |alf Sco *|162924.5-262555 |LC | 0.88 | 1.16 | |V | | | | |M1.5Iab-Ib | 08953| +739004 |del Sco |160020.0-223718 |GCAS | 1.86 | 2.32 | |V | | | | | |76137 DM | +7390061|zet 1 Sco *|165359.7-422143 |SDOR: | 4.66 | 4.86 | |V | | | | |B1Iape |09758 CoD | +739010 |kap Sco *|174229.3-390148 |BCEP | 2.41 | 2.42 | |V | | | 0.1998303 | |B1.5III |09761 CoD | +739011 |lam Sco *|173336.5-370614 |BCEP+E: | 1.62 |( 0.06 )| |V |40000.1235 | | 0.2136966 | |B1.5IV |09953 CoD | +7390121|mu. 1 Sco *|165152.2-380251 |EB/SD | 2.94 | 3.22 | 3.12 |V |32001.0451 | | 1.44626907 | |B1.5V+B6.5V |00308 CoD | +739016 |pi. Sco |155851.1-260651 |EB | 2.82 | 2.85 | |Hp| | | | | |HIP HIP | +739018 |sig Sco *|162111.3-253534 |BCEP | 2.86 | 2.94 | |V |44450.548 | | 0.2468390 |50 |B2III+O9.5V |00001 CoD | +740001 |R Scl *|012658.1-323236 |SRB | 9.1 | 12.9 | |p | | | 370. | |C6,5ea(Np) |00001 00002| +740002 |S Scl *|001522.3-320243 |M | 5.5 | 13.6 | |V |42345. | | 362.57 |48 |M3e-M9e(Tc) |00001 00002| +740003 |T Scl *|002912.1-375431 |M | 8.47 | 13.5 | |V |41985. | | 202.42 |49 |M3-M6e |00001 00002| +740004 |U Scl |011136.4-300629 |M | 8.3 | 15.21 | |V |41430. | | 333.73 |39 |M5e |00001 00002| +740005 |V Scl *|000837.3-391305 |M | 8.7 | 15.0 | |V |40378. | | 296.1 |48 |M4e-M6e |00001 00002| +740007 |X Scl *|004929.5-345446 |M | 10.1 | 14.7 | |V |41425. | | 261.63 |50 | |00001 00002| +740008 |Y Scl *|230905.6-300802 |SRB | 8.7 | 10.3 | |p | | | | |M4 |01188 05474| +740009 |Z Scl |003957.8-335741 |CST: | 6.68 | | |V | | | | |F8V |01378 04408| +740011 |RS Scl |012707. -325439:| | 9.8 |< 15. | |p | | | | | |01379 03389| +740012 |RT Scl *|003628.1-254023 |EB/SD: | 10.18 | 10.89 | 10.47 |V |43450.6332 | | 0.51156012 | |A5n+F3 |09684 CoD | +740013 |RU Scl *|000248.1-245643 |RRAB | 9.35 | 10.75 | |V |31122.839 | | 0.49333878 |12 |A5:-F8 |08636 06286| +740014 |RV Scl |011942.6-265155 |RR: | 11.1 | 11.8 | |p | | | | | |00180 00022| +740015 |RW Scl *|012253.6-261734 |RRAB | 12.1 | 14.2 | |p |24731.866 | | 0.451707676 |18 | |03782 03782| +740021 |SU Scl |014335.3-293040 |CST: | 10.5 | | |p | | | | | |00016 00022| +740022 |SV Scl *|014459.7-300333 |RRC | 11.12 | 11.66 | |V |41918.555 | | 0.37760 |35 |A8-F6 |07984 00022| +740023 |SW Scl |000614.2-324859 |SRC | 7.3 | 9.3 | |V |40037. | | 146. | |M1Ib-IIe-M4IIIe |09693 03389| +740025 |SY Scl *|000736.2-252940 |M | 12.15 |< 16.3 | |B |40451. | | 411. : | |M6e-M8: |05973 00190| +740027 |TT Scl |001654.6-301352 |SR | 11.30 | 14.02 | |V |25470. | | 133.3 | |e |00001 UCAC2| +740031 |TX Scl |235522.3-261807 |RR | 12.5 | 13.7 | |p |25446.60 | | 0.72777 | |F0hb |00193 06286| +740038 |UY Scl *|001445.8-391436 |RRC: | 11.53 | 11.96 | |V | | | | | |00016 09930| +740039 |UZ Scl *|232247.0-300710 |RRAB | 11.62 | 12.83 | |V |39112.335 | | 0.449119 |11 |F4-F7 |05233 02385| +740040 |VV Scl *|011606.8-340856 |EB:/DM: | 8.35 | 8.50 | 8.50 |V |36498.450 | | 2.47962 | |A5p |04344 CoD | +740041 |VW Scl |011815.0-391245 |RRAB | 10.4 | 11.4 | |V |27809.381 | | 0.5109147 |13 | |04183 02834| +740042 |VX Scl |013523.7-350743 |RRAB | 11.55 | 12.32 | |V |41614.354 | | 0.637334 |14 | |07233 06561| +740043 |VY Scl *|232900.5-294646 |NL | 12.5 | 18.5 | |p | | | | |pec(cont+e) |07196 09931| +740047 |WY Scl |010027.8-281221 |RRAB | 12.32 | 13.59 | |V |41217.739 | | 0.46369 |12 |A0hb |06630 05887| +740048 |WZ Scl *|012843.5-334550 |DSCT | 6.52 | 6.62 | |V | | | | |F0IV |09695 CoD | +740049 |XX Scl *|012926.1-331914 |DSCT | 8.84 | 8.93 | |V | | | | |A7V |09695 CoD | +740050 |XY Scl |000635.8-323535 |SRB | 8.44 | 9.00 | |V | | | 60. : | |M6III |05973 CoD | +740051 |XZ Scl |000635.9-374637 |SRB | 9.01 | 9.70 | |V | | | 55. : | |M5III |05973 08588| +740052 |YY Scl |000829.1-255842 |LB | 8.69 | 8.91 | |V | | | | |M6III |05973 CoD | +740053 |YZ Scl |002828.1-354309 |LB | 8.45 | 8.78 | |V | | | | |M5III |05973 CoD | +740054 |ZZ Scl |003550.0-245241 |LB | 8.01 | 8.33 | |V | | | | |M5III |05973 CoD | +740055 |AA Scl |003628.9-302001 |LB | 8.63 | 8.99 | |V | | | | |M5III |05973 CoD | +740056 |AB Scl |004430.2-333914 |LB | 8.40 | 8.85 | |V | | | | |M5III |05973 CoD | +740057 |AC Scl |005618.7-253314 |SRB | 7.92 | 8.26 | |V | | | 47. : | |M3III-M4III |05973 CoD | +740058 |AD Scl |010528.7-314137 |M: | 10.5 | 13. | |p | | | | |M9 |00085 08588| +740059 |AE Scl |010725.8-321835 |RRAB | 11.78 | 12.92 | |V |41217.730 | | 0.55009 |12 |A7-F0 |06630 02380| +740060 |AF Scl |230724.6-253544 |SRB | 8.71 | 9.15 | |V | | | 32. : | |M4:III |05973 CoD | +740061 |AG Scl |230809.8-353710 |LB | 9.15 | 9.37 | |V | | | | |MB |05973 CoD | +740062 |AH Scl |232827.7-312409 |LB | 9.28 | 9.47 | |V | | | | |MB |05973 CoD | +740063 |AI Scl *|011245.4-375123 |DSCT | 5.89 | 5.98 | |V | | | | |A7III |09695 CoD | +740064 |AK Scl |233656.6-372220 |SR: | 12.5 | 13.5 | |p | | | | | |06561 06561| +740065 |AL Scl *|235516.6-315517 |EA/DM | 6.06 | 6.33 | 6.20 |V |43698.5118 | | 2.445088 |09 *|B6V+A0V |09934 HIP | +740066 |AM Scl |010910.8-282154 |LB: | 12.42 | 13.29 | |V | | | | |C2,4:(R1-2) |08545 03536| +740067 |AN Scl |011240.5-291047 |EW:/KW: | 8.8 | 9.0 | |V | | | 0.25 : | |G5 |08549 CoD | +740069 |AP Scl |010555.7-264344 |ACVO | 8.60 |( 0.03 )| |B | | | | | |68227 CoD | +740072 |AS Scl |010534.6-265718 |ELL: | 8.10 |( 0.03 )| |V | | | | | |69255 CoD | +740073 |AT Scl |000411.9-300806 |ELL: | 7.08 |( 0.03 )| |V | | | | | |70022 70109| +740074 |AU Scl |001508.0-290023 |DSCTC | 8.4 |( 0.01 )| |B | | | | | |70110 CoD | +740075 |AV Scl |002312.6-310209 |ACV | 6.24 |( 0.03 u )| |U | | | | | |70022 CoD | +740076 |AW Scl |010626.6-353938 |ACV: | 6.87 |( 0.04 u )| |U | | | | | |70022 CoD | +740078 |AY Scl |000419.2-303935 |EA | 8.98 | 9.88 | |J | | | | | |73306 UCAC2| +740079 |AZ Scl |005301.7-362021 |BE | 12.32 | 12.54 | |V | | | | | |73307 CoD | +740080 |BB Scl |013501.0-295437 |E | 7.10 | 7.17 | |V | | | | | |73055 CoD | +740081 |BC Scl *|002718.0-335255 |LB: | 8.00 | 8.10 | |Hp| | | | | |HIP HIP | +740082 |BD Scl |003225.2-245235 |EB | 10.12 | 10.39 | |Hp| | | | | |HIP HIP | +740083 |BE Scl |012133.0-290753 |EW | 10.41 | 10.84 | |Hp| | | | | |HIP HIP | +740084 |BF Scl |012401.1-373559 |SRD | 9.01 | 9.23 | |Hp| | | | | |HIP HIP | +740085 |BG Scl |013411.3-295722 |SRB | 8.72 | 8.96 | |Hp| | | | | |HIP HIP | +740086 |BH Scl |013418.4-272147 |EA | 7.942 | 8.182 | |Hp| | | | | |HIP HIP | +740087 |BI Scl *|013423.4-281412 |LB: | 6.92 | 7.01 | |Hp| | | | | |HIP HIP | +740088 |BK Scl |013558.9-362713 |LB: | 7.61 | 7.72 | |Hp| | | | | |HIP HIP | +740089 |BL Scl |014533.2-262350 |LB: | 7.68 | 7.80 | |Hp| | | | | |HIP HIP | +740090 |BM Scl |230735.3-360418 |LB: | 8.28 | 8.38 | |Hp| | | | | |HIP HIP | +740091 |BN Scl |230742.8-301400 |EA | 8.96 | 9.33 | |Hp| | | | | |HIP HIP | +740092 |BO Scl |231007.5-335433 |LB | 8.08 | 8.22 | |Hp| | | | | |HIP HIP | +740093 |BP Scl |231016.6-352356 |LB: | 8.07 | 8.19 | |Hp| | | | | |HIP HIP | +740094 |BQ Scl |231942.3-312118 |LB: | 8.93 | 9.08 | |Hp| | | | | |HIP HIP | +740095 |BR Scl |232432.2-252205 |LB: | 9.74 | 9.92 | |Hp| | | | | |HIP HIP | +740096 |BS Scl |232825.2-252514 |DSCTC | 6.95 | 6.97 | |Hp| | | | | |HIP HIP | +740097 |BT Scl |233131.1-285637 |LB: | 8.87 | 8.98 | |Hp| | | | | |HIP HIP | +740098 |BU Scl |235927.9-292907 |LB: | 5.70 | 5.72 | |Hp| | | | | |HIP HIP | +740099 |BV Scl |012527.7-284656 |ACV | 8.36 |( 0.04 )| |V | | | | | |75026 CoD | +740103 |BZ Scl |011143.2-255730 |RS | 9.64 | 9.73 | |V | | | | | |77014 DM | +740106 |CE Scl *|003133.5-361625 |EA | 9.70 | 9.92 | 9.75 |V |48635.666 | | 2.277687 | |F3V |78011 DM | +740107 |CF Scl |003307.3-320120 |RS: | 9.78 | 10.10 | |V | | | 27.6 | |G1V |78012 DM | +740108 |CG Scl |005526.8-373126 |EA | 8.67 | 9.16 | |V |52227.588 | | 11.03574 | |G5V |78011 DM | +740109 |CH Scl |005743.8-261322 |EA: | 9.99 | 10.18 | |V |51881.544 | | 1.577216 | |F2V |78011 DM | +740110 |CI Scl *|010343.8-302355 |EA | 8.78 | 9.0 | 8.92 : |V |52559.740 | | 14.7104 |03 : |F5/F6V |79006 DM | +740111 |CK Scl |011339.4-261709 |SRB | 10.4 | 11.1 | |V | | | 50.7 | | |79064 79118| +740113 |CM Scl *|233603.6-323724 |EA | 8.81 | 8.93 : | 8.92 : |V |48077.581 | | 10.28857 |03 |F7V |79009 DM | +740115 |CO Scl |001217.1-351114 |LB | 10.7 | 11.7 | |V | | | | | |80001 DM | NL80_1 +740116 |CP Scl *|002449.4-274419 |EW | 12.39 | 13.15 | 13.01 |V |51868.265 | | 0.313661 | | |80036 GSC | NL80_1 +740117 |CQ Scl *|002821.3-290405 |EW | 11.97 | 12.51 | 12.40 |V |51868.195 | | 0.269892 | | |80036 GSC | NL80_1 +740118 |CR Scl *|004430.2-360629 |EW | 9.58 | 9.71 | 9.68 |V |51868.064 | | 0.246537 | | G5 |80036 DM | NL80_1 +740120 |CT Scl *|011600.6-254233 |EW | 11.91 | 12.12 | 12.08 |V |52235.550 | | 0.406798 | | A7 |80015 GSC | NL80_1 +740121 |CU Scl |014226.4-302737 |RRC | 12.1 | 12.6 | |V |53355.7239 | | 0.377317 |40 | |80001 DM | NL80_1 +740122 |CV Scl |230930.5-354717 |RRAB | 12.05 | 12.80 | |V |51870.9 | | 0.593485 |18 | |80002 DM | NL80_3 +740123 |CW Scl |232801.1-335952 |EW | 12.13 | 12.87 | 12.8 |V |52940.676 | | 0.385588 | | |80365 80365| NL80_3 +740124 |CX Scl *|234520.2-310025 |E+DSCTC | 10.91 | 11.20 | 11.10 |V |52069.1521 | | 0.8834334 | | |80281 DM | NL80_3 +749001 |alf Scl |005836.4-292127 |SXARI | 4.31 |( 0.04 u )| |V | | | | | |73308 CoD | +749007 |eta Scl |002755.7-330026 |LB | 4.80 | 4.90 | |V | | | | |M4IIIa |04456 CoD | +749018 |sig Scl |010226.4-313307 |ACV: | 5.50 |( 0.03 u )| |V | | | | | |73308 CoD | +750001 |R Sct *|184728.9-054219 |RVA | 4.2 | 8.6 | |V |44872. | | 146.5 | |G0Iae-K2p(M3)Ibe |00001 00002| +750002 |S Sct *|185020.0-075427 |SRB | 9.63 |< 10.9 | |B | | | 148.0 | |C6,4(N3) |00444 00884| +750003 |T Sct |185527.6-081110 |SRB | 11.1 | 12.0 | |p | | | 122. : | |C7,3(N3) |00444 04231| +750004 |U Sct *|185427.2-123635 |EB/SD | 10.08 | 11.04 | 10.31 |V |44468.6658 | | 0.95498575 | |F0 |00001 00097| +750005 |V Sct |184808.8-120731 |M | 12. |< 16. | |p |35988. | | 252.9 | |M3IIIe |03122 01383| +750006 |W Sct *|182433.5-133913 |EA/DM | 9.92 | 10.57 | 10.1 |V |20665.47 | | 10.2703 |12 *|B3n+B0 |01384 08953| +750007 |X Sct *|183119.8-130629 |DCEP | 9.50 | 10.42 | |V |34905.58 | | 4.19807 |31 |F6-G2 |00004 01918| +750008 |Y Sct *|183803.3-082208 |DCEP | 9.22 | 10.02 | |V |34947.20 | | 10.341504 |46 |F8-G3 |02309 01918| +750009 |Z Sct *|184257.3-054915 |DCEP | 9.05 | 10.16 | |V |36247.160 | | 12.901325 |40 |F8-G4 |09667 01918| +750010 |RR Sct |184055.7-040504 |CST: | 10.2 | | |p | | | | |B9Ib |00444 09940| +750011 |RS Sct *|184911.3-101428 |EB/SD | 9.78 | 10.91 | 10.08 |V |44437.1658 | | 0.6642384 | |F5 |09941 04231| +750012 |RT Sct |184937.3-102318 |LB: | 10.0 : | 10.6 | |V | | | | |M1-M2III |09942 00884| +750013 |RU Sct *|184156.4-040638 |DCEP | 8.82 | 10.02 | |V |31174.67 | | 19.70062 |36 |F4-G5 |09288 01918| +750014 |RV Sct |184425.2-131248 |LB: | 8.7 | 9.05 | |V | | | | |C4,4(R3/NB) |04018 08953| +750015 |RW Sct |185631.4-103131 |SRB | 10.0 | 11.5 | |p |29772. | | 116.7 | |M5 |01387 08953| +750016 |RX Sct *|183704.1-073612 |LB | 11. | 13. | |p | | | | |C5,5(N3) |01388 01388| +750017 |RY Sct *|182531.5-124124 |EB/GS | 9.12 | 9.72 | 9.56 |V |43342.42 | | 11.12471 | |O9.7Ibpeq |09943 08953| +750018 |RZ Sct *|182633.5-091206 |EA/GS | 7.34 | 8.84 | 7.47 |V |19261.1025 | | 15.1902079 |17 *|B3Ib |05774 05773| +750019 |SS Sct |184343.5-074352 |DCEP | 7.90 | 8.43 | |V |35315.625 | | 3.671253 |37 |F6-G0 |01386 03203| +750020 |ST Sct |185133.7-125541 |M | 11.5 |< 15.0 | |p |33858. | | 219.5 | |M4e |00966 00567| +750022 |SV Sct |185341.0-141138 |M | 12.0 | 15.4 | |p |13103. | | 310. | |Se |09944 02452| +750031 |TX Sct *|182814.5-111509 |DCEP: | 12.5 | 14.5 | |p |25830. | | 24.344 |20 | |09729 09729| +750032 |TY Sct *|184207.9-041737 |DCEP | 10.31 | 11.25 | |V |37377.090 | | 11.05302 |47 |F7-G5 |01386 00494| +750038 |UY Sct |182736.5-122759 |SRC | 11.2 | 13.3 | |p | | | 740. : | |M4Ia-Iab |07806 07806| +750039 |UZ Sct *|183122.4-125543 |DCEP | 10.79 | 11.76 | |V |41101.5 | | 14.7442 |37 |G0-G4 |07934 00884| +750041 |VW Sct *|183223.1-095510 |M | 10.6 | 18.0 | |p |34616. | | 234.0 | |M4-M7 |04231 02452| +750044 |VZ Sct *|183658.5-124431 |EB | 11.8 | 13.0 | 12.0 |V |28368.260 | | 2.19612 | | |01384 00279| +750045 |WW Sct |183814.9-103413 |M | 12.0 |< 16.5 | |p |23954. | | 250. | |M6.5 |01395 06286| +750052 |YY Sct |184314.4-102910 |M | 12.5 |< 16.0 | |p |23964. | | 348. | |M5.5 |04231 06286| +750055 |AA Sct |184445.0-091331 |M | 12.4 | 15.3 | |p |43700. | | 264.7 |25 |M4-M6 |00001 06286| +750057 |AC Sct *|184601.5-101456 |EA/SD | 10.0 | 12.6 | 10.2 |V |28817.143 | | 4.797584 |14 |B9 |01386 04231| +750058 |AD Sct |184556.2-073235 |E | 12.5 | 13.2 | |p |23259.307 | | 1.076482 | | |00001 06286| +750060 |AF Sct |184826.7-135748 |RRAB | 11.9 | 13.3 | |p |27355.204 | | 0.5289735 |16 | |01400 01400| +750091 |BN Sct *|185842.9-082029 |EA | 11.4 | 14.6 | |p |28745.175 | | 14.61155 |09 |A0Ib |01386 04231| +750096 |BS Sct *|185206.0-061440 |EA/SD | 11.00 | 12.40 | 11.07 |V |40148.620 | | 3.8210104 |11 *|B7e-A0III |07237 00110| +750097 |BT Sct |184207.2-042042 |CST | 12. | | |p | | | | | |00742 | +750098 |BU Sct *|184607.4-043719 |RRAB | 12.4 | 14.5 | |p |40412.216 | | 0.420252 |20 | |07806 02274| +750101 |BX Sct *|185009.2-042205 |DCEP | 11.7 | 12.62 | |V |27901.83 | | 6.41133 |33 |F6-G0 |02274 02274| +750102 |BY Sct |185115.6-074821 |LB | 11.1 | 12.0 | |p | | | | | |04231 06286| +750109 |CH Sct *|185255.4-084232 |M | 11.2 | 16.2 | |V |35327. | | 190.48 |48 |Me |03613 03613| +750111 |CK Sct *|184100.7-060550 |DCEP | 10.30 | 10.88 | |V |40855.25 | | 7.41522 |32 |G |02309 BD | +750113 |CM Sct *|184226.8-052027 |DCEP | 10.79 | 11.49 | |V |35111.320 | | 3.916977 |25 | | 01407| +750114 |CN Sct *|184230.5-041950 |DCEP | 12.13 | 12.78 | |V |28670.16 | | 9.9923 |48 | |01407 01407| +750118 |CR Sct *|184947.6-093011 |EA/D | 11.6 | 12.1 | 12.1 |p |28069.626 | | 4.192325 |06 *| |01407 01407| +750120 |CT Sct *|185421.6-060017 |EA/SD | 10.9 | 11.9 | 11.1 |p |28727.374 | | 4.95360 |15 |B7V(n) |01407 04231| +750123 |CW Sct *|185541.7-055803 |EB/DM | 9.8 | 10.2 | 10.1 |p |27978.655 | | 1.786183 | |B9 |01407 04231| +750133 |DK Sct |185142.4-054334 |EA/SD | 11.8 | 12.9 | |p |28755.296 | | 1.217744 |14 | |01404 01404| +750160 |EQ Sct *|182702.0-115919 |EB/KE: | 11.7 | 12.6 | 12.6 : |p |30918.267 | | 1.3217788 | |B |01408 00552| +750161 |ER Sct *|184243.9-074133 |EA/KE: | 9.1 | 9.4 | 9.3 |p |27335.483 | | 1.361041 |18 *|A0 |00714 BD | +750165 |EV Sct *|183639.6-081105 |DCEPS | 9.90 | 10.32 | |V |43292.274 | | 3.09099 |50 |G0II |09003 02855| +750166 |EW Sct *|183751.1-064749 |CEP(B) | 7.77 | 8.24 | |V | | | | |G5 |09959 BD | +750168 |EY Sct *|184219.8-061847 |EA/KE: | 11.9 | 12.7 | 12.4 |p |27953.949 | | 1.166382 |13 *| |01397 01397| +750169 |EZ Sct *|184345.8-050953 |EB/KE | 12.0 | 12.9 | 12.5 |p |27901.996 | | 1.134676 | | |01397 01397| +750176 |FM Sct *|185053.1-083111 |EA/KE: | 12.5 | 13.3 | 12.9 |p |28833.338 | | 1.451404 |16 | |01397 01397| +750181 |FR Sct *|182322.8-124052 |ZAND | 11.6 | 12.91 | |B | | | | |M2.5epIab+B |00351 00552| +750351 |V0351 Sct |185756.3-080643 |M | 12.5 | 15.3 | |p |24000. | | 210. | |M5 |04231 04231| +750356 |V0356 Sct *|185811.2-073647 |EA | 12.0 | 12.4 | 12.3 |p |28755.340 | | 1.061441 |12 | |04231 04231| +750367 |V0367 Sct *|183335.2-102538 |CEP(B) | 11.21 | 11.91 | |V |37430.66 | | 6.29307 |30 | |09972 07597| +750369 |V0369 Sct *|185116.9-062111 |DSCT | 9.14 | 9.43 | |V |40393.709 | | 0.223 | |F8III |06565 BD | +750376 |V0376 Sct |182421.9-125155 |M: | 10.4 | 15.4 | |I |40388. :| | 600. : | | |07779 2MASS| +750377 |V0377 Sct |182459.2-141813 |M: | 12.2 | 15.9 | |I |41142. | | 522. : | | |07779 2MASS| +750382 |V0382 Sct |182608.1-144715 |SRC | 12.1 | 14.7 | |I | | | | | |07779 GSC22| +750388 |V0388 Sct |182734.7-133811 |M | 12.3 | 15.6 | |I |37570. | | 376. | | |07779 GSC22| +750389 |V0389 Sct |182735.9-111643 |IS: | 11.7 | 13.0 | |p | | | | | |06996 06996| +750390 |V0390 Sct |182755.9-144842 |M | 12.5 | 16.8 | |I |40478. :| | 322. | | |07779 2MASS| +750393 |V0393 Sct |182816.2-141223 |M | 11.3 | 15.2 | |I |41098. | | 378. | | |07779 GSC22| +750401 |V0401 Sct |182854.2-142920 |M | 12.1 | 15.4 | |I |40804. | | 477. | | |07779 2MASS| +750402 |V0402 Sct |182900.7-144355 |M | 12.0 | 15.4 | |I |39720. | | 312. | | |07779 USNO | +750403 |V0403 Sct |182902.7-144658 |M | 12.5 | 16.1 | |I |37558. | | 335. : | | |07779 GSC22| +750406 |V0406 Sct |182923.8-154726 |M | 11.5 | 15.4 | |I |39712. | | 450. | | |07779 2MASS| +750407 |V0407 Sct |182932.2-154839 |M | 11.7 | 15.2 | |I |40394. | | 716. | | |07779 GSC22| +750409 |V0409 Sct |182940.0-140018 |M | 12.2 | 15.6 | |I |41104. | | 468. | | |07779 2MASS| +750415 |V0415 Sct |183013.4-142518 |M | 11.4 | 15.0 | |I |41100. | | 302. | | |07779 GSC22| +750417 |V0417 Sct |183015.7-143127 |M | 11.0 | 14.9 | |I |39758. :| | 400. | | |07779 GSC22| +750420 |V0420 Sct |183048.1-145246 |M | 11.3 | 14.1 | |I |41170. | | 264. | | |07779 UCAC2| +750422 |V0422 Sct |183125.3-151823 |M | 12.1 | 15.6 | |I |40137. :| | 428. : | | |07779 2MASS| +750424 |V0424 Sct |183136.3-152658 |M | 10.0 | 15.5 | |I |41158. | | 468. | | |07779 2MASS| +750425 |V0425 Sct |183142.3-151214 |M | 12.0 | 15.8 | |I |37870. :| | 448. : | | |07779 2MASS| +750426 |V0426 Sct |183648.2-145908 |M | 11.9 |< 16.0 | |p |25828. | | 134. | | |04231 04231| +750428 |V0428 Sct |184541.4-053547 |SR | 11.9 | 13.4 | |p | | | 380. : | |M5-M6 |07806 07806| +750430 |V0430 Sct |182515.2-135842 |ACYG | 6.50 | 6.64 | |V | | | | |B1Ia-Oe |08070 BD | +750431 |V0431 Sct |182925.7-060437 |ACYG | 11.60 | 12.10 | |V | | | | |B1Iaeq |08433 07822| +750432 |V0432 Sct |182946.8-143455 |ACV | 5.96 |( 0.012 )| |V | | | 2.1912 | |B9p(Si-Cr-Eu) |09919 BD | +750433 |V0433 Sct |182506.2-143858 |ACYG | 8.18 |( 0.055 )| |V | | | | | |67291 BD | +750434 |V0434 Sct |182813.9-111610 |M | 6.3 | 8.7 | |K | | | | | |67012 2MASS| +750435 |V0435 Sct |182928.7-123753 |M | 4.7 | 7.2 | |L | | | | | |67012 GSC22| +750436 |V0436 Sct |183007.0-073652 |M | 6.7 | 9.1 | |K | | | | | |67012 2MASS| +750437 |V0437 Sct |183732.5-052359 |M | 6.9 | 10.8 | |K | | | | | |67012 2MASS| +750438 |V0438 Sct |184114.2-061500 |M | 8.3 | 11.5 | |K | | | | | |67012 2MASS| +750439 |V0439 Sct |184548.4-040046 |M | 7.2 | 9.4 | |H | | | | | |67012 2MASS| +750440 |V0440 Sct |184626.8-064034 |M | 9.4 | 12.0 | |H | | | | | |67012 2MASS| +750441 |V0441 Sct |182831.6-095811 |M | 5.2 | 8.1 | |L | | | | | |68345 2MASS| +750442 |V0442 Sct |183903.8-075135 |ACYG | 9.42 | 9.45 | |V | | | | | |70077 BD | +750443 |V0443 Sct |184939.1-061116 |NA | 8.5 : |< 13.2 | |V | | | | | |70111 | +750444 |V0444 Sct |184710.0-082053 |NA | 10.5 |< 20. | |V | | | | | |71174 71175| +750445 |V0445 Sct |183030.6-142856 |SR | 11.45 | 11.7 | |J | | | | | |72155 72155| +750447 |V0447 Sct |184433.3-070638 |BE | 7.85 |( 0.12 )| |V | | | | | |73309 BD | +750448 |V0448 Sct |183108.6-054722 |BE | 7.42 | 7.48 | |Hp| | | | | |HIP HIP | +750449 |V0449 Sct |183237.8-154206 |ACYG: | 7.93 | 8.02 | |Hp| | | | | |HIP HIP | +750450 |V0450 Sct |183243.3-145156 |SRD | 5.49 | 5.62 | |Hp| | | | | |HIP HIP | +750451 |V0451 Sct |183350.8-142533 |ACV | 7.93 | 8.00 | |Hp| | | | | |HIP HIP | +750452 |V0452 Sct |183926.1-135047 |ACYG: | 9.87 | 10.10 | |Hp| | | | | |HIP HIP | +750453 |V0453 Sct |184217.9-072014 |LB | 6.84 | 7.01 | |Hp| | | | | |HIP HIP | +750454 |V0454 Sct |184345.6-151625 |SRB | 8.54 | 8.67 | |Hp| | | | | |HIP HIP | +750455 |V0455 Sct |184638.1-075555 |GCAS | 9.00 | 9.32 | |Hp| | | | | |HIP HIP | +750456 |V0456 Sct |185005.6-082308 |LB | 8.59 | 8.78 | |Hp| | | | | |HIP HIP | +750457 |V0457 Sct |185109.8-074756 |GCAS: | 8.49 | 8.73 | |Hp| | | | | |HIP HIP | +750458 |V0458 Sct |182227.1-100729 |CEP(B) | 10.5 | 11.5 | |B | | | | | |75249 BD | +750461 |V0461 Sct |183649.2-135156 |M | 11.2 |< 13.9 | |p | | | | | |75002 UCAC2| +750462 |V0462 Sct |184100.9-042615 |WR | 12.28 |( 0.15 )| |V | | | | | |75109 75020| +750463 |V0463 Sct |183403.1-144512 |NA | 10.6 |< 18. | |V | | | | | |76183 76184| +750465 |V0465 Sct |184022.6-153413 |SR: | 12.1 |< 12.9 | |V | | | | | |76185 UCAC2| +750467 |V0467 Sct |185905.4-151549 |M: | 11.7 | 14.8 | |* | | | | | |76057 2MASS| +750469 |V0469 Sct |183334.8-143700 |SR: | 12.5 | 13.4 | |* | | | | | |77156 UCAC2| +750470 |V0470 Sct |183429.7-153319 |SR: | 10.5 | 12.0 | |V | | | | | |77004 UCAC2| +750471 |V0471 Sct |184018.8-100730 |M | 11.4 |< 13.3 | |V | | | | | |77004 UCAC2| +750472 |V0472 Sct |184622.0-050234 |M | 8.5 |< 10.5 | |I | | | | | |77149 USNO | +750473 |V0473 Sct |184643.3-045400 |SR | 10.0 | 10.4 : | |V | | | | | |77149 DM | +750474 |V0474 Sct |185531.7-141947 |M | 12.4 |< 13.5 | |V | | | | | |77004 UCAC2| +750479 |V0479 Sct *|182615.1-145054 |XJ: | 8.53 | 9.01 | |K | | | | |O6.5V((f)) |78243 GSC | +750480 |V0480 Sct |182826.8-154518 |SRA | 10.0 | 10.3 | |V |52062 | | 63.36 | | |78090 DM | +750481 |V0481 Sct |183355.3-065839 |BE: | 5.85 | 6.23 | |K | | | | |pec(e) |78245 78245| +750482 |V0482 Sct |184402.2-063844 |M | 11.4 |< 14.1 | |V |52524 | | 388. | | |78103 GSC | +750484 |V0484 Sct *|184916.1-101330 |EA | 9.15 | 9.24 | 9.22 |V |52104.641 | | 29.717 | |B8III |78011 DM | +750485 |V0485 Sct |185740.7-131335 |M | 12.4 |< 14.1 | |V |52027 | | 288. | | |78006 2MASS| +750488 |V0488 Sct |185810.3-054459 |SR: | 12.3 | 13.3 | |* | | | | | |76192 USNO | +750493 |V0493 Sct *|182836.7-125951 |EA | 8.32 | 8.74 : | 8.52 : |V |52556.459 | | 30.811 |05 |B1Iab |79011 DM | +750494 |V0494 Sct |183218.9-111724 |EA | 9.69 | 9.96 | 9.93 |V |52879.618 | | 4.95232 |16 |B1:V:pe |79006 DM | +750495 |V0495 Sct |185000.4-110955 |EA | 9.78 | 10.81 | 10.20 : |V |52922.518 | | 2.63743 |12 |B8 |79018 DM | +750498 |V0498 Sct *|182616.9-151543 |BCEP | 10.68 | 11.00 | |V | | | 0.201051 | |B |80445 GSC | NL80_3 +750499 |V0499 Sct |182639.5-065404 |M | 3.85 | 5.56 | |K | | | 635. | |C |80166 2MASS| NL80_3 +750500 |V0500 Sct |182725.9-144208 |BCEP | 9.99 | 10.08 | |V | | | 0.2401721 | |B |80445 GSC | NL80_3 +750501 |V0501 Sct |182734.2-083723 |M | 5.16 | 6.99 | |K | | | 659. : | |C |80166 2MASS| NL80_3 +750506 |V0506 Sct |185718.2-100150 |SRA | 12.4 | 13.3 | |V |54592. | | 264.7 | | |80001 GSC | NL80_3 +759004 |del Sct *|184216.4-090309 |DSCT | 4.60 | 4.79 | |V |43379.05 | | 0.1937697 | |F3IIIp |09974 BD | +760001 |R Ser *|155041.7+150801 |M | 5.16 | 14.4 | |V |45521. | | 356.41 |41 |M5IIIe-M9e |00001 00002| +760002 |S Ser *|152139.5+141853 |M | 7.0 | 14.1 | |V |45433. | | 371.84 |43 |M5e-M6e |00001 00002| +760003 |T Ser *|182848.7+061753 |M | 9.1 | 15.5 | |V |45509. | | 338.12 |47 |M7e |00001 00002| +760004 |U Ser *|160717.7+095553 |M | 7.8 | 14.7 | |V |45652. | | 237.50 |48 |M3e-M6e |00001 00002| +760005 |V Ser *|181649.1-153107 |EB/SD | 9.50 | 10.50 | 9.85 |V |29936.459 | | 3.453551 | |B8 |01414 00318| +760006 |W Ser *|180950.6-153300 |EA/GS | 8.42 | 10.20 | |V |26625.493 | | 14.15486 |20 : |F5eIb(shell) |09795 00318| +760008 |Y Ser *|151401.5-015311 |SRA | 8.43 | 9.75 | |V |27514. | | 432.7 | |M5IIIe |00867 08953| +760009 |Z Ser *|151602.7+021005 |SRA | 9.4 | 10.9 | |p |23204. | | 87.57 | |M5III |09992 08953| +760010 |RR Ser |153121.7+013935 |CST | 11.8 | | |p | | | | | |01416 | +760011 |RS Ser *|181718.5-130337 |EW/DW | 10.8 | 11.5 | 11.4 |V |34921.838 | | 0.598140369 | |F8 |00001 | +760012 |RT Ser *|173952.0-115639 |NC | 10.6 | 17.0 | |p | | | | |pec | 01419| +760013 |RU Ser |155629.7+090150 |M | 11.6 |< 13.8 | |p |32685. | | 280.0 | | |01413 01413| +760014 |RV Ser *|171750.5-115933 |M | 12.0 | 17.0 | |p |26592. | | 269.9 | |M4IIIe-M8 |00475 UCAC2| +760019 |SS Ser |172347.9-150103 | | 11.8 | 15.0 | |p | | | | | |02073 06286| +760022 |SV Ser |172541.9-141455 |M | 11.0 | 16.0 | |p |23930. | | 373. | |Me |01000 06286| +760023 |SW Ser |172630.6-105930 | | 12.3 |< 15.5 | |p | | | | | |02073 06286| +760024 |SX Ser |172649.3-152513 |M | 12.0 |< 15.8 | |p | | | | |Me |02073 06286| +760039 |UZ Ser |181124.9-145534 |UGSS | 12.0 | 16.7 | |p | | |( 26.4 ) | |pec(UG) |05386 08852| +760040 |VV Ser |182847.9+000840 |INA | 11.8 | 14.5 | |p | | | | |A2e |06996 09800| +760043 |VY Ser *|153101.9+014102 |RRAB | 9.73 | 10.46 | |V |31225.341 | | 0.71409384 |20 |F2-F6 |01421 06286| +760045 |WW Ser *|153224.9+033827 |M | 11.4 |< 15.8 | |p |40739. | | 365.8 | |M8e |00001 00002| +760046 |WX Ser *|152747.0+193352 |M | 12. |< 16. | |p |33365. | | 425.1 | |M8e |00001 03586| +760047 |WY Ser |175721.6-000629 |M | 11.9 |< 15.0 | |p |26160. | | 399. | |M7-8 |00401 00531| +760049 |XX Ser |154618.3+205235 |SRA | 11.5 | 13.3 | |p |26103. | | 171.2 |40 |M |01422 01423| +760050 |XY Ser |180055.3-003817 |M | 11.7 |< 15.6 | |p |25414. | | 166. | |M3 |00401 00133| +760055 |AA Ser *|184121.8-010640 |DCEP | 11.74 | 12.64 | |V |44039.34 | | 17.1412 |37 |F9-G2 |00494 00494| +760056 |AB Ser |172203.5-130849 |SR | 11.8 | 13.2 | |p |27623. | | 69.6 | |M7 |01000 00464| +760057 |AC Ser |172951.8-101716 | | 12.0 | 13.5 | |p | | | | | |00467 00467| +760062 |AH Ser |155920.6+194647 |M | 10.0 | 13.7 | |V |36682. | | 283.5 | |M2 |01004 00002| +760063 |AI Ser |160708.2-001854 |M | 11.5 | 16.0 | |p |34963. | | 212.5 | | |00278 00470| +760064 |AK Ser *|174204.4-135312 |EA/SD | 10.8 | 13.6 | |p |46255.462 | | 1.9225800 |11 *|A5 |00001 00551| +760065 |AL Ser |175808.0-025608 |M | 12.3 |< 15.0 | |p |24314. | | 175.5 | |M3IIIe |01425 00486| +760066 |AM Ser |152938.0-002346 |SR | 10.3 | 12.4 | |V |28674. | | 104.3 |45 |K2-M2 |01422 01422| +760067 |AN Ser *|155331.1+125740 |RRAB | 10.40 | 11.44 | |V |14708.9500 | | 0.52207162 |18 |A7-F5 |07258 02740| +760068 |AO Ser *|155818.4+171610 |EA/SD | 10.7 | 12.0 | 10.8 |V |34133.464 | | 0.87934745 |18 *|A2 |03658 00318| +760069 |AP Ser *|151400.9+095852 |RRC | 10.85 | 11.38 | |V | | | 0.341 | |A7-F3 |09037 00470| +760070 |AQ Ser *|152215.2+023011 |EB/DM | 10.57 | 11.2 | 11.1 |V |28333.220 | | 1.687391 | |F2+A5 |01428 00318| +760071 |AR Ser *|153330.8+024638 |RRAB | 11.43 | 12.33 | |V |42918.394 | | 0.5751416 |20 : |F3 |00001 08081| +760072 |AS Ser *|153849.0+021530 |EB/KE | 11.4 | 12.0 | 11.5 |V |28333.326 | | 0.465937 | |F2 |00753 00470| +760073 |AT Ser *|155540.4+075920 |RRAB | 11.00 | 11.92 | |V |41798.579 | | 0.7465465 |18 |A9-F5 |00001 00470| +760074 |AU Ser *|155649.5+221602 |EW/KW: | 10.9 | 11.80 | 11.61 |V |44722.4745 | | 0.38650086 | |G5 |00001 00553| +760075 |AV Ser *|160341.8+003557 |RRAB | 10.84 | 12.00 | |V |28343.337 | | 0.48755736 |14 |F2 |00001 00561| +760076 |AW Ser *|160628.8+152206 |RRAB | 12.39 | 13.21 | |V |28344.222 | | 0.597097 |14 |F6 |00561 00470| +760081 |BC Ser |160058.1+021028 |M | 10. |< 14. | |p |38860. | | 245.0 | |M3e-M5e |00001 00002| +760083 |BE Ser |180533.2-135318 |M | 12.1 |< 15.5 | |p |26946. | | 143. | |M5 |00477 00552| +760084 |BF Ser *|151628.5+162640 |CWB | 11.05 | 12.56 | |V |28744.094 | | 1.1654394 |12 |A7-F3 |05448 00470| +760085 |BG Ser |154336.8-014238 |M | 11.0 | 15. | |p |19887. | | 143. | |M6e-M8e |00455 08953| +760086 |BH Ser *|151501.1+192635 |RRAB | 11.9 | 13.5 | |p |41482.427 | | 0.4345527 |13 |A2: |09857 06286| +760087 |BI Ser *|155600.1+173016 |EA/SD: | 11.5 | 12.2 | |p |46264.414 | | 1.204882 |16 *|A3 |01431 00470| +760094 |BQ Ser *|183615.9+042354 |CEP(B) | 9.21 | 9.93 | |V |32410.50 | | 4.2709 |35 |F6III |08079 03165| +760104 |CC Ser *|153624.4+153158 |EW/KE | 11.14 | 11.68 : | 11.63 |V |37481.570 | | 0.5160062 | |A6 |07259 01432| +760105 |CD Ser |154345.0+124009 |SRB | 10. | 11. | |p | | | 80. : | |M4 |01426 08953| +760116 |CP Ser |172034.0-143959 |SR | 11.8 | 13.9 | |p | | | 56. : | | |00351 00351| +760117 |CQ Ser *|180853.7-141555 |EB/SD: | 11.6 | 12.6 | 12.0 |p |30900.324 | | 0.760076 | |A8: |00318 00318| +760118 |CR Ser *|181002.1-133246 |DCEP | 10.50 | 11.32 | |V |35631.53 | | 5.30141 |25 |G5 |02309 00552| +760119 |CS Ser *|152836.3+030524 |RRAB | 12.13 | 12.79 | |B |31176.430 | | 0.5267959 |14 |F1 |03506 00470| +760122 |CV Ser |181907.4-113759 |E/D/WR | 9.00 | 9.63 | |V |40785.29 | | 29.7005 | |WC8+O8-O9III-IV |04466 08953| +760123 |CW Ser |155309.8+060526 |DSCT | 11.59 | 12.06 | |V |31212.280 | | 0.1891505 |40 |A/F |03506 00470| +760124 |CX Ser *|152336.1+023530 |EA/SD: | 12.3 | 13.1 | |p |31213.490 | | 0.9972918 |20 :*|F8 |08117 00470| +760125 |CY Ser |174302.3-132313 |M | 11.6 |< 16. | |p |27282. | | 289.2 | |M3IIIe |01003 00551| +760126 |CZ Ser |183721.0-023915 |LB | 11.9 | 13.0 | |p | | | | |M6.5 |01397 BD | +760127 |DD Ser |184113.2-015806 |INA | 10.1 | 12.5 | |p | | | | |A5III |03160 06996| +760128 |DE Ser |184223.0+043719 |M | 12.1 | 19. : | |p |25839. | | 368.5 | |M8 |00164 00542| +760129 |DF Ser *|151519.1+183928 |RRAB | 11.4 : | 13.0 | |p |29706.054 | | 0.43779512 |16 | |00873 06286| +760132 |DI Ser |182201.4+043728 |M | 12.3 |< 17.0 | |p |33186. | | 237.08 | | |08097 06887| +760133 |DK Ser *|182407.8+051123 |M | 11.4 | 18.0 : | |p |38186. | | 264.80 | |M7III |08097 06887| +760140 |DR Ser *|184721.0+052719 |LB | 10.4 | 13.39 | |B | | | | |C6,4(N) |00164 02368| +760143 |DU Ser |183905.8-015904 |LB | 12.5 | 14.6 | |p | | | | |M3 |02394 00141| +760145 |DW Ser |160249.2+003641 |M | 11.5 | 15. | |p |36758. | | 235. | |Me |04188 03816| +760146 |DX Ser |160834.8-013214 |SRA | 10.4 | 12.4 | |p |33880. | | 360. | |M5-M8 |03135 04238| +760150 |EF Ser *|182102.1-155300 |M | 12.3 | 15.3 | |I |37585. | | 350. : | | |04243 04407| +760151 |EG Ser *|182602.2-014051 |EA/SD: | 8.44 | 9.2 | |B |26487.525 | | 4.97362 |05 *|A0 |04024 BD | +760173 |FI Ser *|151421.0+002211 |ACV | 7.97 | 8.09 | |V | | | 3. : | |A0p(Sr-Cr-Eu) |09870 BD | +760174 |FK Ser *|182022.8-101114 |BY: | 10.9 | 11.5 | |p | | | 5.20 | |K5Ve(Li)+K7Ve(Li)|06948 05927| +760175 |FL Ser *|151204.3+185834 |LB | 5.79 | 6.02 | |V | | | | |M4IIIab |05841 BD | +760178 |FO Ser |181921.8-153646 |LB | 8.45 | 8.74 | |V | | | | |C4,5(R6) |06059 BD | +760179 |FP Ser |155440.3+083449 |DSCTC | 6.28 |( 0.025 )| |V | | | 0.2 : | |A7Vn |06456 BD | +760180 |FQ Ser |160836.5+083647 |LB | 6.31 | 6.60 | |V | | | | |M4III |06645 BD | +760181 |FR Ser *|183536.5+045610 |ACV | 6.34 | 6.52 | |V |41460.79 | | 2.1436 | |A2p(Sr-Cr) |07221 BD | +760182 |FS Ser |160828.1+083204 |LB: | 5.68 | 5.73 | |V | | | | |M3.5IIIa |04621 BD | +760183 |FT Ser |172141.0-143620 |LB: | 11.8 | 13.7 | |p | | | | |S5,8 |00551 00551| +760184 |FU Ser |173533.1-141929 |LB: | 12.3 |< 13.2 | |p | | | | |M7 |00551 07897| +760186 |FW Ser |180206.9-153151 |EA | 12.5 | 13.2 | |p | | | | | |07594 07594| +760190 |GG Ser |180811.0-143428 |M | 10.9 | 15.9 | |I |41244. | | 358. | | |07779 GSC22| +760192 |GI Ser |180826.4-153512 |M | 11.2 | 16.0 | |I |40860. | | 256. | | |07779 GSC22| +760195 |GM Ser |180835.8-150402 |RCB: | 12.0 | 14.0 | |I | | | | | |07779 2MASS| +760200 |GR Ser |180924.4-151936 |M | 10.1 | 13.4 | |I |41214. | | 239. | | |07779 UCAC2| +760205 |GW Ser |180959.8-145116 |M | 12.2 | 15.4 | |I |40410. | | 316. | | |07779 2MASS| +760206 |GX Ser |181005.7-151402 |M | 11.7 | 15.4 | |I |40814. | | 193. | | |07779 2MASS| +760211 |HK Ser |181040.8-135218 |M | 11.8 | 15.6 | |I |40032. | | 434. | | |07779 2MASS| +760218 |HR Ser |181139.1-144706 |M | 11.7 | 15.4 | |I |41092. | | 434. | | |07779 2MASS| +760219 |HS Ser |181143.5-150856 |M | 11.7 | 15.9 | |I |40520. :| | 510. | | |07779 2MASS| +760225 |HY Ser |181217.0-154722 |M | 12.3 | 15.3 | |I |40804. | | 204. | | |07779 2MASS| +760226 |HZ Ser |181216.5-142438 |M | 12.4 | 16.0 | |I |41048. :| | 460. | | |07779 2MASS| +760232 |IO Ser |181424.7-153104 |M | 12.0 | 15.8 | |I |41220. | | 394. | | |07779 2MASS| +760233 |IP Ser |181446.2-140711 |M | 11.6 | 14.7 | |I |40808. | | 213. | | |07779 UCAC2| +760242 |IY Ser |181602.5-151803 |M | 12.5 | 15.9 | |I |41104. | | 458. | | |07779 2MASS| +760245 |KL Ser |181645.6-150931 |SR: | 11.4 | 13.6 | |I |40836. :| | 490. : | | |07779 UCAC2| +760246 |KM Ser |181647.3-131437 |M | 11.7 | 16.2 | |I |40844. | | 450. | | |07779 2MASS| +760248 |KO Ser |181700.8-151820 |M | 11.2 | 15.7 | |I |41198. | | 280. | | |07779 2MASS| +760251 |KR Ser |181813.1-121024 |M | 12.0 | 15.8 | |I |41058. | | 407. | | |07779 2MASS| +760252 |KS Ser |181814.9-122707 |M | 12.3 | 15.8 | |I |41220. | | 420. | | |07779 2MASS| +760253 |KT Ser |181840.6-144447 |M: | 12.0 | 15.1 | |I |41100. | | 388. | | |07779 2MASS| +760255 |KV Ser |181922.7-122353 |M | 12.1 | 15.8 | |I |40424. | | 410. | | |07779 2MASS| +760256 |KW Ser |181936.4-143930 |M: | 11.6 | 12.7 | |I |41124. | | 226. : | | |07779 2MASS| +760258 |KY Ser |181958.7-123615 |M | 12.4 | 15.9 | |I |40826. | | 310. | | |07779 2MASS| +760270 |LV Ser *|151134.4+083101 |ACV | 7.45 | 7.60 | |V |41060.5 | | 2.7800 | |A3p(Sr-Cr-Eu) |09011 BD | +760273 |LY Ser |153816.6+243119 |LB: | 6.70 | 6.96 | |V | | | | |M4III |08225 BD | +760279 |MQ Ser |151918.8+014556 |BY: | 4.99 | 5.11 | |V | | | | | |67295 BD | +760281 |MS Ser |155844.0+253410 |BY | 8.20 | 8.31 | |V | | | | | |67299 BD | +760283 |MU Ser |175552.8-140117 |NA | 7.7 |< 20. | |V | | | | | |67304 67305| +760284 |MV Ser |183206.9+033935 |ACV | 6.13 |( 0.03 )| |U | | | | | |67134 BD | +760285 |MW Ser |152843.7+034943 |M | 2.7 | 4.0 | |K | | | | | |68015 UCAC2| +760287 |MY Ser |181805.9-121433 |EB | 7.33 | 7.66 | |V | | | | | |68342 BD | +760288 |MZ Ser |181857.3-135214 |IN: | 8.0 | 9.5 | |K | | | | | |68231 68343| +760290 |NO Ser |180355.5-010023 |PVTEL: | 10.29 |( 0.08 )| |V | | | | | |69257 BD | +760292 |NQ Ser |160553.4+104106 |RS | 8.3 |( 0.11 )| |V | | | | | |71001 BD | +760293 |NR Ser |174652.3-140524 |M | 7.57 | 9.08 | |J | | | | | |71144 2MASS| +760294 |NS Ser |174728.4-141643 |M | 7.70 | 8.71 | |J | | | | | |71144 2MASS| +760295 |NT Ser |174834.5-134804 |M | 7.79 | 9.33 | |J | | | | | |71144 2MASS| +760296 |NU Ser |174835.1-130228 |M | 7.59 | 9.00 | |J | | | | | |71144 2MASS| +760297 |NV Ser |175042.2-122752 |M | 7.60 | 9.38 | |H | | | | | |71144 2MASS| +760298 |NW Ser |182128.4+052609 |BE | 5.39 | 5.59 | |U | | | | | |72093 BD | +760299 |NX Ser |183546.8+053551 |M | 2.8 | 4.7 | |K | | | | | |72121 2MASS| +760302 |OO Ser |182949.1+011621 |FU: | 11.4 | 16.1 | |K | | | | | |73313 73313| +760303 |OP Ser |151303.3+093441 |LB: | 8.41 | 8.53 | |Hp| | | | | |HIP HIP | +760304 |OQ Ser |151457.7-022453 |SRB | 7.19 | 7.47 | |Hp| | | | | |HIP HIP | +760305 |OR Ser |151446.0+212006 |LB: | 8.62 | 8.78 | |Hp| | | | | |HIP HIP | +760306 |OS Ser |151503.1+180253 |SRB | 9.12 | 9.38 | |Hp| | | | | |HIP HIP | +760307 |OT Ser |152152.9+205840 |BY: | 10.03 | 10.16 | |Hp| | | | | |HIP HIP | +760308 |OU Ser *|152243.5+161541 |EW: | 8.25 | 8.43 | |Hp| | | | | |HIP HIP | +760309 |OV Ser |152455.1-021407 |LB | 7.70 | 8.16 | |Hp| | | | | |HIP HIP | +760310 |OW Ser |152630.3+100210 |LB | 7.00 | 7.14 | |Hp| | | | | |HIP HIP | +760311 |OX Ser |152944.5+161131 |SRD: | 7.27 | 7.32 | |Hp| | | | | |HIP HIP | +760312 |OY Ser |153224.2-014701 |SRB | 8.24 | 8.43 | |Hp| | | | | |HIP HIP | +760313 |OZ Ser |153508.4+004446 |LB | 8.72 | 9.05 | |Hp| | | | | |HIP HIP | +760314 |PP Ser |153737.6+215132 |LB: | 10.01 | 10.23 | |Hp| | | | | |HIP HIP | +760315 |PQ Ser |153753.8+212627 |NL: | 8.12 | 8.22 | |Hp| | | | | |HIP HIP | +760316 |PR Ser |154105.2+232107 |LB: | 9.42 | 9.62 | |Hp| | | | | |HIP HIP | +760317 |PS Ser *|154357.9+222023 |E | 8.19 | 8.37 | |Hp| | | | | |HIP HIP | +760318 |PT Ser *|154605.6-014815 |LPB | 5.36 | 5.39 | |Hp| | | | | |HIP HIP | +760319 |PU Ser |160402.1+095941 |SRB | 8.35 | 8.65 | |Hp| | | | | |HIP HIP | +760320 |PV Ser |160641.9+021925 |LB: | 9.50 | 9.68 | |Hp| | | | | |HIP HIP | +760321 |PW Ser |160848.4+015047 |LB: | 8.26 | 8.38 | |Hp| | | | | |HIP HIP | +760322 |PX Ser |160938.0+055237 |LB: | 9.33 | 9.47 | |Hp| | | | | |HIP HIP | +760323 |PY Ser |161048.3+074645 |LB | 8.33 | 8.52 | |Hp| | | | | |HIP HIP | +760324 |PZ Ser |161604.7+021808 |LB: | 9.59 | 9.74 | |Hp| | | | | |HIP HIP | +760325 |QQ Ser |180222.2-121906 |LB: | 7.51 | 7.64 | |Hp| | | | | |HIP HIP | +760326 |QR Ser |181858.7-135928 |EB: | 8.25 | 8.41 | |Hp| | | | | |HIP HIP | +760327 |QS Ser |181948.2-045742 |EA: | 7.69 | 8.25 | |Hp| | | | | |HIP HIP | +760328 |QT Ser |183104.5+043737 |ISA: | 7.77 | 7.85 | |Hp| | | | | |HIP HIP | +760329 |QU Ser |183336.1+053624 |ACV | 7.78 | 7.84 | |Hp| | | | | |HIP HIP | +760330 |QV Ser |183629.6+051719 |ACV | 7.83 | 7.88 | |Hp| | | | | |HIP HIP | +760332 |QX Ser |154932.9+252737 |E/RS | 8.66 |( 0.08 )| |V | | | | | |75011 BD | +760333 |QY Ser |155434.6+201839 |SRB | 5.42 | 5.50 | |V | | | | | |75251 BD | +760335 |V0335 Ser |155905.8+003545 |EA | 7.6 | 8.3 | |V | | | | | |75253 BD | +760336 |V0336 Ser |155911.4+193957 |M: | 11.5 | 14.1 | |p | | | | | |75254 UCAC2| +760337 |V0337 Ser |160512.2+104033 |SR: | 11.8 | 14.5 | |p | | | | | |75021 75021| +760340 |V0340 Ser |173046.9-112208 |RV: | 9.52 | 9.70 | |V | | | | | |75082 BD | +760343 |V0343 Ser |181222.1-114007 |ZAND | 11.7 | 14.9 | |p | | | | | |75257 UCAC2| +760346 |V0346 Ser |151840.3+145903 |SRA | 11.9 | 14.0 | |V | | | | | |76012 UCAC2| +760349 |V0349 Ser |173019.9-101857 |M | 11.9 |< 15.1 | |V | | | | | |76156 UCAC2| +760350 |V0350 Ser |175702.0-142310 |SR: | 11.6 | 12.8 | |* | | | | | |76197 USNO | +760354 |V0354 Ser |175746.6-105353 |M: | 12.3 |< 14.7 | |* | | | | | |76197 76057| +760355 |V0355 Ser |175757.1-114046 |M: | 11.7 | 14.0 | |* | | | | | |76057 2MASS| +760356 |V0356 Ser |175822.1-114513 |M: | 12.3 | 15.8 | |* | | | | | |76057 USNO | +760360 |V0360 Ser |175854.4-145153 |M: | 12.2 |< 14.6 | |* | | | | | |76197 USNO | +760364 |V0364 Ser |180053.0-103236 |SR: | 12.3 | 14.6 | |* | | | | | |76146 UCAC2| +760365 |V0365 Ser |180054.9-143830 |SR: | 12.3 | 14.2 | |* | | | | | |76197 76057| +760371 |V0371 Ser |182951.1+011640 |INT | 10.2 | 12.2 | |K | | | | | |76271 76271| +760372 |V0372 Ser |151735.0-010517 |RR(B) | 10.85 | 11.69 | |V | | | | | |77116 77116| +760373 |V0373 Ser |155235.1-010153 |ACV | 7.96 |( 0.02 u )| |V | | | | | |77117 DM | +760375 |V0375 Ser |173105.4-160258 |SR: | 11.7 | 13.1 | |V | | | | | |77004 2MASS| +760376 |V0376 Ser |180951.3-020042 |SR | 7.9 | 8.4 | |I | | | | | |77149 UCAC2| +760377 |V0377 Ser |182909.3+045118 |SR: | 12.3 | 13.5 | |* | | | | | |77156 USNO | +760379 |V0379 Ser |151559.2+004747 |BY | 7.05 | 7.08 | |Hp| | | 5.97 | |K0 |78005 DM | +760380 |V0380 Ser |152610.7+003157 |SRA | 10.8 | 12.9 | |V |52765 | | 170. | |Me |78090 GSC | +760381 |V0381 Ser *|154552.4+050227 |RS | 9.15 |( 0.02 )| |V | | | 13.83 : | |K2V |78018 DM | +760382 |V0382 Ser |154809.5+013418 |BY | 7.44 |( 0.04 )| |V | | | 14.045 | |G8V |78018 DM | +760383 |V0383 Ser *|155519.1+160240 |RS | 8.68 |( 0.03 )| |V | | | 33.52 | |KV |78018 DM | +760384 |V0384 Ser *|160153.6+245218 |EW | 11.88 | 12.41 | 12.35 |* |52365.4575 | | 0.268729 | | |78264 GSC | +760392 |V0392 Ser |181219.9-150503 |SR | 11.4 | 12.7 | |I | | | 99.7 | | |78040 78230| +760399 |V0399 Ser *|181736.2-150225 |EA | 11.6 | 12.7 | 11.9 |V |52442.697 | | 4.11315 |16 | |78011 78230| +760401 |V0401 Ser |181849.5-122343 |M | 11.9 |< 16.0 | |I |40500 | | 327.0 | | |78230 78230| +760404 |V0404 Ser |181847.5-123712 |M | 11.2 | 15.1 | |I |41260. :| | 334. | | |07779 2MASS| +760405 |V0405 Ser |172607.7-141659 |M | 11.5 |< 14.0 | |V |53147. | | 285. | | |79179 79010| +760409 |V0409 Ser |175900.8-113323 |M | 11.4 |< 14.8 | |V |53474. | | 487. | |S |79064 2MASS| +760410 |V0410 Ser |180321.7-002552 |LB | 12.0 | 13.4 | |V | | | | | |79100 79013| +760411 |V0411 Ser |181224.7-104353 |EA | 8.40 | 8.55 | |V |52437.660 | | 34.536 |04 |O7.5If+O9I |79009 DM | +760412 |V0412 Ser |181415.8-092021 |DCEP | 11.57 | 12.35 | |V |52415.9 | | 5.121 |27 | |79125 79010| +760413 |V0413 Ser *|183508.2+000235 |EA | 7.95 | 8.09 | 8.09 |V |49038.828 | | 2.259775 |09 |B3V |79160 DM | +760423 |V0423 Ser |151918.8+075306 |RRAB | 12.3 | 13.5 | |V |53085.86 | | 0.547990 |15 | |80002 GSC | NL80_2 +760425 |V0425 Ser *|151930.0+191558 |EW | 11.7 | 12.1 | 12.1 |V |52699.2 | | 0.54429 | | |80002 GSC | NL80_2 +760426 |V0426 Ser |151951.9+162751 |BY: | 8.09 | 8.34 | |V | | | 48. : | |K5 |80001 DM | NL80_2 +760436 |V0436 Ser |152346.1-004425 |BY | 10.92 | 11.26 | |V | | | 11.685 | |K1e |80034 GSC | NL80_2 +760437 |V0437 Ser *|152430.7+114717 |SR | 10.6 | 11.4 | |V | | | 430. | | |80001 GSC | NL80_2 +760445 |V0445 Ser |152951.1+020248 |RS | 11.9 | 12.2 | |* | | | 11.3819 | | |80067 80067| NL80_2 +760454 |V0454 Ser |153634.4+121930 |RS | 10.2 | 10.7 | |V | | | 5.407 | | |80034 GSC | NL80_2 +760456 |V0456 Ser |153732.9-014353 |RRAB | 12.3 | 13.1 | |V |53171.71 | | 0.517554 |25 | |80001 GSC | NL80_2 +760467 |V0467 Ser |154435.2+042308 |BY | 12.2 | 12.4 | |* | | | 0.73874 | | |80043 80043| NL80_2 +760472 |V0472 Ser |154753.5+004118 |LB | 8.8 | 9.5 | |V | | | | |M5III |80001 DM | NL80_2 +760474 |V0474 Ser |154840.9-031044 |RS | 10.75 | 11.00 | |V | | | 1.9236 | | |80034 DM | NL80_2 +760475 |V0475 Ser |154946.6+235453 |DSCT | 12.37 | 12.60 | |V |51283.7738 | | 0.119955 | | |80001 GSC | NL80_2 +760484 |V0484 Ser |155229.3+100834 |RRAB | 12.1 | 13.5 | |V |52724.7990 | | 0.511385 |12 | |80002 GSC | NL80_2 +760486 |V0486 Ser |155307.5+202839 |RS | 11.75 | 12.05 | |V | | | 9.2291 | | |80021 GSC | NL80_2 +760493 |V0493 Ser *|155644.2-000950 |UGSU | 12.2 | 19. | |V | | | | |pec(UG) |80233 80027| NL80_2 +760498 |V0498 Ser |155936.0+124623 |RRAB | 12.5 | 13.5 | |V |53156.643 | | 0.571260 |12 | |80002 GSC | NL80_2 +760502 |V0502 Ser |160105.6-001307 |LB | 12.5 | 13.4 | |V | | | | |M6.5 |80001 GSC | NL80_3 +760505 |V0505 Ser |160248.2+252038 |EA+RS | 10.44 | 10.75 | 10.60 |V |55029.388 | | 0.495413 |10 | |80001 DM | NL80_3 +760510 |V0510 Ser |160704.3+023824 |RS | 9.50 | 9.70 | |V | | | 3.7836 | | |80034 DM | NL80_3 +760520 |V0520 Ser |161132.5+003111 |SRB | 10.7 | 12.5 | |V | | | 72.5 | | |80001 GSC | NL80_3 +760531 |V0531 Ser |175936.1-012503 |SRB | 12.00 | 12.45 | |* | | | 56. | | |80001 USNO | NL80_3 +760534 |V0534 Ser |180841.9-141859 |DSCTC | 12.3 |( 0.05 )| |* | | | 0.06527 | | |80497 USNO | NL80_3 +760536 |V0536 Ser |181130.6-155534 |DCEP: | 11.5 | 12.1 | |V |51962.4 | | 9.011 | | |80002 GSC | NL80_3 +760539 |V0539 Ser *|181716.1-152706 |BCEP | 9.59 | 9.69 | |V | | | 0.207308 | |B2Ib |80445 DM | NL80_3 +760541 |V0541 Ser |182440.2+061004 |DSCTC: | 12.5 |( 0.04 )| |V | | | 0.06559 | | |80504 GSC | NL80_3 +760542 |V0542 Ser |182445.3+060531 |RRC: | 12.4 | 12.6 | |V |54746.54 | | 0.285368 |28 | |80001 GSC | NL80_3 +760543 |V0543 Ser |182455.0-005714 |LB | 12.3 | 13.0 | |* | | | | | |80062 USNO | NL80_3 +760545 |V0545 Ser |182753.3+060851 |BCEP: | 11.2 |( 0.02 )| |V | | | 0.34196 | | |80504 GSC | NL80_3 +760546 |V0546 Ser |182804.1+055813 |DSCTC: | 10.3 |( 0.01 )| |V | | | 0.08375 | |F0 |80504 GSC | NL80_3 +760547 |V0547 Ser |182824.4+061336 |E | 11.3 |( 0.02 )| |V | | | 1.11068 | | |80504 GSC | NL80_3 +760549 |V0549 Ser |182917.7+053919 |DSCTC: | 10.8 |( 0.01 )| |V | | | 0.04683 | |A4 |80504 GSC | NL80_3 +760552 |V0552 Ser |183159.1+054020 |BY | 10.7 |( 0.12 )| |V | | | 0.43263 | | |80504 GSC | NL80_3 +760553 |V0553 Ser |183317.4+055931 |RRC: | 12.10 | 12.27 | |V | | | 0.21377 | | |80504 GSC | NL80_3 +760554 |V0554 Ser |184010.1-004742 |EA | 11.6 | 12.6 | 12.0 |V |54400.525 | | 0.435800 |16 | |80002 GSC | NL80_3 +760555 |V0555 Ser |184256.0+043500 |EA | 12.28 | 13.1 | 12.32 : |V |52782.814 | | 3.91352 | | |80013 GSC | NL80_3 +769004 |del Ser *|153448.1+103220 |DSCTC | 4.23 |( 0.04 )| |V | | | 0.134 | |F0IV |06204 BD | +769015 |omi Ser *|174124.9-125231 |DSCTC: | 4.26 |( 0.01 )| |V | | | 0.053 | |A2V |06204 BD | +7690194|tau 4 Ser |153628.2+150605 |SRB | 5.89 | 7.07 | |V | | | 100. : | |M5IIb-IIIa |09893 08953| +769022 |khi Ser |154147.4+125051 |ACV | 5.33 |( 0.03 )| |V |34134.06 | | 1.59584 |50 |A0p(Sr-Cr-Eu) |01435 BD | +769104 |d Ser *|182712.5+001146 |I: | 5.17 | 5.29 | |V | | | | |G0III+A6V |09899 08953| +770001 |R Sex |094242.4-080600 |LB: | 9.7 | 10.6 | |p | | | | |M5IIIe |09902 BD | +770002 |S Sex *|103456.0-002034 |M | 8.2 | 13.7 | |V |45390. | | 264.9 |50 |M2e-M5e |00001 00002| +770003 |T Sex *|095328.4+020326 |RRC | 9.81 | 10.32 | |V |41384.300 | | 0.3246980 |42 |A7II-III-F4III |07984 06286| +770005 |V Sex |095607.8+045107 |RR | 12.1 | 13.6 | |p |27509.325 | | 0.4880788 | | |00183 06286| +770006 |W Sex |095058.3-020143 |SR | 10.3 | 12.5 | |B | | | 134.0 | |C6,3e(Nbe) |01437 00002| +770007 |X Sex |102330.9-070517 |SR: | 11. | 12.5 | |p | | | | |M |00190 08953| +770008 |Y Sex *|100248.0+010540 |EW/KW | 9.83 | 10.21 | 10.17 |V |41766.288 | | 0.4198228 | *|F8 |09982 01432| +770009 |Z Sex |101059.4+023329 |LB | 8.7 | 9.84 | |V | | | | |M4-M5III |07515 06928| +770010 |RR Sex |095453.7+051152 |LB | 10.0 | 11.0 | |p | | | | |M4 |00351 08953| +770011 |RS Sex |102102.0+021723 |BCEP: | 6.64 | 6.68 | |V | | | | |B2.5IV |01438 BD | +770012 |RT Sex |101219.2-101917 |SRB | 7.9 | 8.95 | |V | | | 96. | |M6 |05828 08953| +770013 |RU Sex *|094540.8-064400 |EB: | 10.6 | 11.4 | 11.4 |p |38504.130 | | 13.07 : | | |04655 BD | +770014 |RV Sex |104641.8-082233 |RRAB | 11.8 | 12.6 | |p |29640.620 | | 0.503413 |20 |A0-A2 |03160 03160| +770015 |RW Sex *|101956.6-084156 |NL+ZZ: | 10.39 | 10.84 | |V | | | | |pec |06416 BD | +770016 |RX Sex *|102609.2+035557 |DSCTC | 6.70 |( 0.02 )| |V |41303.024 | | 0.0799 | |A3V |06417 BD | +770019 |SS Sex |102326.5-040427 |ACV | 5.94 | 5.98 | |V |44318.00 | | 4.37 | |B9p(Si-Sr-Cr) |09983 BD | +770027 |TT Sex |094625.6-060135 |LB | 10.4 | 11.9 | |p | | | | | |71034 BD | +770029 |TV Sex |094751.3+041257 |LB: | 8.82 | 8.97 | |Hp| | | | | |HIP HIP | +770030 |TW Sex |095500.6-001056 |LB: | 7.91 | 8.03 | |Hp| | | | | |HIP HIP | +770031 |TX Sex |095848.8+044831 |SRB | 7.18 | 7.29 | |Hp| | | | | |HIP HIP | +770032 |TY Sex |095841.5-110426 |E: | 9.19 | 9.38 | |Hp| | | | | |HIP HIP | +770033 |TZ Sex |100733.3+005506 |SRB | 6.66 | 6.87 | |Hp| | | | | |HIP HIP | +770034 |UU Sex |102144.0+041801 |SRB | 8.74 | 9.05 | |Hp| | | | | |HIP HIP | +770035 |UV Sex |102241.8-092343 |SRB | 6.91 | 7.18 | |Hp| | | | | |HIP HIP | +770036 |UW Sex |104013.0-113415 |LB: | 9.17 | 9.33 | |Hp| | | | | |HIP HIP | +770040 |VV Sex |094522.8+035733 |SR | 11.6 |( 1. )| |V | | | | | |77067 GSC | +770041 |VW Sex |100145.6-021317 |SR: | 12.1 | 13.4 | |V | | | | | |77004 UCAC2| +770042 |VX Sex |100241.3-013338 |SR: | 10.7 | 12.2 | |V | | | | | |77004 GSC | +770043 |VY Sex |105029.7-024143 |EW | 9.01 |( 0.34 )| |V | | | | | |77092 DM | +770045 |WW Sex *|095039.3-053043 |EA | 9.96 | 10.50 | 10.46 |V |52705.725 | | 1.43916 | | |78322 DM | +770046 |WX Sex *|100624.9+010012 |EW | 12.4 | 12.8 | 12.8 |V |50544.4116 | | 0.428870 | | |78017 GSC | +770047 |WY Sex *|100937.4-005628 |EW | 11.5 |( 0.36 )|( 0.29 )|V |50928.4287 | | 0.368055 | | |78017 GSC | +770048 |WZ Sex *|101326.9-013951 |EB | 9.8 | 10.2 | 10.0 |V |52722.77 | | 1.05917 | | |78094 DM | +770049 |XX Sex |101602.1-061826 |EW | 9.32 | 9.56 | |V |52314.79 | | 0.54011 | |F0 |78094 DM | +770051 |XZ Sex |102557.5-073051 |SRA | 9.7 |< 10.4 | |V |51950 | | 364. | | |78103 GSC | +770053 |YZ Sex |103543.9-091625 |M | 11.5 | 15.3 | |V |53493. | | 148. | | |79100 GSC | +770063 |AI Sex *|100346.3+012510 |EB | 10.85 | 11.1 | 11.0 |V |53386.6120 | | 0.603620 | |F5 |80002 GSC | NL80_2 +770067 |AN Sex |101217.7-034444 |RS | 9.16 | 9.32 | |V | | | 21.535 | |M1.5V |80002 HIP | NL80_2 +770074 |AU Sex |101900.3-021329 |RRAB | 12.5 | 13.7 | |V |53754.8002 | | 0.777160 |20 | |80002 GSC | NL80_2 +770081 |BC Sex |103002.7-004732 |RS | 11.6 | 12.1 | |V | | | 15.37 | | |80034 GSC | NL80_2 +770093 |BP Sex *|104548.2-104249 |ACV | 7.40 | 7.44 | |Hp| | | 1.72907 | |A0p(Si) |80340 HIP | NL80_2 +779002 |bet Sex |103017.5-003813 |ACV: | 5.00 | 5.10 | |V | | | | | |69140 BD | +780001 |R Tau *|042818.0+100945 |M | 7.6 | 15.8 | |V |45250. | | 320.9 |41 |M5e-M9e |00001 00002| +780002 |S Tau *|042911.8+095644 |M | 9.2 | 16.2 | |V |44927. | | 374.50 |43 |M6.5e-M9e |00001 00002| +780003 |T Tau *|042159.4+193207 |INT | 9.3 | 13.5 | |V | | | | |F8Ve-K1IV-Ve(T) |00574 02301| +780004 |U Tau *|042150.1+194849 |CST | 10.4 | | |p | | | | |F5 |00960 00576| +780005 |V Tau *|045202.3+173217 |M | 8.5 | 14.6 | |V |45316. | | 168.7 |47 |M0e-M4.5e |00001 00002| +780006 |W Tau *|042757.2+160236 |SRB | 8.2 | 13.0 | |V | | | 264.6 |53 |M4-M6.5 |09890 00002| +780007 |X Tau |035313.2+074614 |CST | 6.60 | | |V | | | | |F8IV |00862 BD | +780008 |Y Tau |054539.4+204142 |SRB | 6.50 | 9.2 | |V | | | 241.5 |50 |C6.5,4e(N3) |00589 08953| +780009 |Z Tau *|055224.9+154744 |M | 9.2 | 14.2 | |V |43436. | | 466.2 |41 |S7.5,1e(M7e) |00001 00002| +780010 |RR Tau *|053930.5+262227 |INSA | 10.2 | 14.30 | |V | | | | |B8e-A5eII-III |08044 02301| +780011 |RS Tau |055148.6+155255 |CST | 9.0 | | |V | | | | |F5 |00960 00578| +780012 |RT Tau |050414.0+233851 |CST | 10.1 | | |p | | | | |A0 |00589 | +780013 |RU Tau *|055236.8+155814 |M | 9.7 | 15.3 | |V |42690. | | 544.6 |62 |M3.5e-M6.5 |00001 00002| +780014 |RV Tau *|044706.7+261046 |RVB | 9.8 | 13.3 | |p |17486.6 | | 78.731 | |G2eIa-M2Ia |00001 00368| +780015 |RW Tau *|040354.3+280734 |EA/SD | 7.98 | 11.59 | 8.09 |V |45684.204 | | 2.7688356 |14 |B8Ve+K0IV |00001 00010| +780016 |RX Tau *|043814.6+082009 |M | 9.1 | 14.8 | |V |41282. | | 331.8 |47 |M6e-M7e |00001 00002| +780017 |RY Tau *|042157.4+282636 |INT | 9.3 | 13.0 | |p | | | | |F8Ve-K1IV-Ve(T) |09990 09990| +780018 |RZ Tau *|043637.7+184518 |EW/KW | 10.08 | 10.71 | 10.66 |V |37676.567 | | 0.4156747 | |A7V+A7V |09084 00318| +780019 |SS Tau *|033641.9+052141 |RRAB | 11.92 | 13.02 | |V |39033.953 | | 0.369901 |15 | |00001 06286| +780020 |ST Tau |054503.2+133435 |DCEP | 7.79 | 8.62 | |V |41761.963 | | 4.034299 |27 |F5-G5 |08300 00321| +780021 |SU Tau |054903.7+190422 |RCB | 9.1 | 16.86 | |V | | | | |G0-1Iep(C1,0 HD) |08129 00002| +780022 |SV Tau *|055208.2+280640 |EA/SD | 9.68 | 10.78 | 9.8 |V |34423.7491 | | 2.1669051 |19 *|B9+A0 |09987 08953| +780023 |SW Tau *|042433.0+040724 |CWB | 9.33 | 10.16 | |V |41687.770 | | 1.583584 |36 |F4-F8 |08300 03703| +780025 |SY Tau *|034845.8+233132 |LB | 10.7 | 11.7 | |p | | | | |M4 |00339 03706| +780026 |SZ Tau *|043714.8+183235 |DCEPS | 6.33 | 6.75 | |V |34628.57 | | 3.14873 |45 |F5Ib-F9.5Ib |00001 00021| +780027 |TT Tau *|045131.3+283137 |SRB | 10.2 | 12.2 | |p | | | 166.5 | |C4,2-C7,4(N3) |00373 00021| +780028 |TU Tau |054513.7+242512 |SRB | 5.9 | 9.2 | |V | | | 190. : | |C5,4(N3)+A2III-V |00589 BD | +780029 |TV Tau |040833.9+265035 |SRA | 9.3 | 12.2 | |V |25870. | | 120. |50 |M6 |00373 00002| +780030 |TW Tau |042708.6+131732 |LB: | 10.6 | 11.6 | |p | | | | |K0IV-V: |00340 00021| +780031 |TX Tau |040811.8+263554 |SRA | 10.5 | 12.3 | |V |19384. | | 40.1 |50 |M5 |00360 00002| +780032 |TY Tau *|043443.3+151554 |EA | 11.5 | 12.0 | |V |21192.395 | | 1.0773555 |05 |K0V |00960 00318| +780033 |TZ Tau |040245.7+164034 |M | 10.3 | 14.0 | |V |34860. | | 269.0 | |M9 |00001 06286| +780037 |UX Tau *|043004.0+181349 |INT | 10.6 | 13.7 | |p | | | | |G0Ve-K2Ve(Li) |04050 09991| +780038 |UY Tau |035423.6+160102 |M | 11. | 16. | |p |35014. | | 334.5 | | |00001 06286| +780039 |UZ Tau *|043243.0+255231 |INT(YY) | 11.7 | 15.0 | |p | | | | |G5Ve-M1-3Ve(T) |09478 10000| +780040 |VV Tau |034134.4+200629 | | 11. | 15.4 | |p | | | | | |10001 UCAC2| +780042 |VX Tau |042527.2+163323 |M | 9.8 |< 15. | |V |33600. | | 298.9 | |M8e |00001 02224| +780043 |VY Tau |043917.4+224754 |INT | 9.0 | 15.26 | |B | | | | |M0e(T) |05472 09994| +780044 |VZ Tau |050514.3+214549 |ISB | 11.5 | 14.6 | |p | | | | |M4 |06190 06190| +780045 |WW Tau *|040142.0+301516 |SRD | 9.0 | 12.9 | |p |34325. | | 116.4 | |G2e-K2(M3) |03707 08953| +780046 |WX Tau |050816.8+215644 |M | 12.0 |< 13.5 | |p |33706. | | 191.0 | |M |02861 00592| +780047 |WY Tau *|055626.1+261840 |EW/KE | 11.14 | 11.73 | 11.73 |V |37402.2580 | | 0.6927584 | |B9 |03709 00594| +780048 |WZ Tau *|034705.6+202342 |LB | 10.8 | 11.9 | |V | | | | |M0 |00104 | +780050 |XY Tau |040655.9+061721 |M | 12.4 |< 16. | |p |24448. | | 206. | | |00001 06286| +780051 |XZ Tau *|043140.1+181357 |INT | 10.4 | 16.62 | |B | | | | |G5Ve-M3e(T) |07822 09991| +780052 |YY Tau |052838.5+154055 |M | 11.9 |< 16.2 | |p |24830. | | 192.1 |30 : | |00384 06286| +780055 |AA Tau *|043455.4+242853 |INT | 12.2 | 16.1 | |p | | | | |K5Ve-M1Ve(T) |06996 09991| +780056 |AB Tau |054102.5+280623 |SRA | 10.4 | 12.0 | |p |37340. | | 142.0 | |M5-M7 |08044 08953| +780057 |AC Tau *|043706.4+014131 |EA/SD | 10.3 | 13.1 | |V |45636.590 | | 2.043356 |18 |F0 |00001 00318| +780058 |AD Tau |053417.0+253616 |I | 12.0 | 13.7 | |p | | | | | |02427 00467| +780059 |AE Tau |053436.7+261209 |CEP | 12.5 | 13.5 | |p |26415.52 | | 3.89645 |28 | |00600 00533| +780061 |AG Tau |034456.1+302224 |M | 12.4 |< 15. | |p |39108. | | 206.4 | | |00001 00603| +780062 |AH Tau *|034712.0+250700 |EW/KW | 11.25 | 11.92 | 11.85 |V |31062.5081 | | 0.3326754 | |G1p |09998 09999| +780064 |AK Tau |040239.4+210359 |M | 11.8 | 15.8 | |p |37648. | | 241.56 | |M5e |00001 03713| +780066 |AM Tau *|055221.4+161701 |EA/SD: | 10.4 | 12.3 | |V |45253.417 | | 2.043926 |10 : |B8 |00001 07929| +780067 |AN Tau *|035611.4+293123 |EB/DM | 10.3 | 11.15 | 10.5 |V |28181.388 | | 1.61464 | |A3 |00606 BD | +780070 |AQ Tau |045558.0+275328 |EA/SD: | 12.0 | 12.9 | |p |29651.774 | | 1.215904 |15 *|A-F |07089 07089| +780072 |AS Tau *|051428.5+274325 |EA/SD | 12.4 | 14.4 | |p |46033.597 | | 3.483328 |16 *| |00001 07806| +780074 |AU Tau *|054331.0+280744 |SRA | 12.0 | 14.5 | |V |38057. | | 70.2 |51 | |08079 00533| +780079 |AZ Tau |055141.9+281825 |LB | 12.1 | 13.6 | |p | | | | |M7-M8 |00609 02321| +780085 |BG Tau |033110.7+284231 |SR | 11.8 | 13.2 | |p | | | | |M6 |00193 06286| +780088 |BK Tau *|035138.3+254553 |LB | 11.9 | 12.7 | |p | | | | |M7 |00193 06286| +780089 |BL Tau |035301.6+201229 |SR: | 10.0 | 12.0 | |p | | | | |M4-M5 |00193 08953| +780090 |BM Tau |035431.7+283418 |ISA: | 12.5 | 14.0 | |p | | | | | |00602 00603| +780093 |BP Tau *|041915.8+290627 |INT(YY) | 10.7 | 13.6 | |B | | | | |K3Ve-M0Ve(T) |05469 00598| +780095 |BR Tau |043442.9+214622 |RRAB | 12. | 14. | |p |36487.401 | | 0.3905928 |12 | |03691 06286| +780098 |BU Tau *|034911.2+240812 |GCAS | 4.77 | 5.50 | |V | | | | |B8Vne |10005 08953| +780099 |BV Tau *|053834.7+225445 |EB/KE: | 11.7 | 12.4 | 11.9 |p |46052.63 | | 0.93044 | |B9: |10006 | +780105 |CD Tau *|051731.1+200755 |EA/D | 6.77 | 7.34 | 7.31 |V |41619.4075 | | 3.435137 |08 *|F7V+F5IV |00001 08953| +780106 |CE Tau |053212.8+183539 |SRC | 4.23 | 4.54 | |V | | | 165. | |M2Iab-Ib |00615 BD | +780107 |CF Tau *|040510.1+222948 |EA/D | 10.03 | 10.5 | 10.2 |V |30651.230 | | 2.75589 |12 |G0 |00318 00318| +780109 |CH Tau *|034459.4+095636 |SRB | 9.4 | 10.7 | |V |28733. | | 97. | |M6.5 |00197 08953| +780116 |CP Tau |054526.5+153045 |LB | 11.8 | 13.7 | |p | | | | |C5,4(N) |00619 02351| +780117 |CQ Tau |053558.5+244454 |INSA | 8.7 | 12.25 | |B | | | | |A1-F5IVe |05471 05471| +780118 |CR Tau *|055128.9+240331 |EA | 12.5 | 13.0 | |p |26004.35 | | 0.681346 |30 : | |00612 02357| +780120 |CT Tau *|055850.1+270442 |EW/KE | 10.34 | 11.12 | 11.12 |V |45404.359 | | 0.6668303 | |B2n |00001 00608| +780121 |CU Tau *|034736.9+252316 |EW/KW | 11.5 | 11.92 | 11.90 |V |40969.2328 | | 0.41222 | |G0 |00001 02954| +780123 |CW Tau |041417.0+281058 |INST | 12.36 | 15.01 | |V | | | | |K0Ve-K5Ve(T) |08292 10000| +780129 |DF Tau |042702.8+254222 |INST | 9.2 | 15.0 | |p | | | | |M0-3Ve(T) |05785 10000| +780130 |DG Tau *|042704.7+260616 |INST | 10.5 | 14.9 | |p | | | | |GVe(T)-M0Ve |05785 10000| +780133 |DK Tau |043044.2+260125 |INST | 11.9 | 15.36 | |B | | | | |K5Ve-M1Ve(T) |04046 10000| +780136 |DN Tau *|043527.4+241459 |INST | 11.5 | 14.7 | |p | | | | |K6Ve-M1:Ve(T) |06996 10000| +780137 |DO Tau *|043828.6+261049 |INST | 12.3 | 17.0 | |p | | | | |GVe-M1Ve(T) |04046 10000| +780139 |DQ Tau |044653.1+170000 |INST | 12. | 15.33 | |B | | | | |K7-M1Ve(T) |10025 10000| +780140 |DR Tau |044706.2+165843 |INST(YY) | 10.5 | 16.0 | |B | | | | |(cont+e)-K5Ve(T) |10026 10000| +780141 |DS Tau *|044748.4+292512 |INST | 11.9 | 14.02 | |B | | | | |K3Ve-M0:Ve(T) |00598 10000| +780143 |DU Tau |053026.1+215323 |LB | 12.2 | 13.9 | |p | | | | |M3: |00619 02351| +780144 |DV Tau |053106.3+183338 |LB | 9.8 | 10.3 | |p | | | | |M6 |00619 02357| +780146 |DX Tau |054105.1+163530 |LB | 12.29 | 13.5 | |B | | | | |M3 |00619 02351| +780147 |DY Tau |054200.0+183227 |LB | 10.8 | 11.52 | |B | | | | |M2-M5(S) |00619 08953| +780157 |EN Tau |055643.5+251418 |EA/SD: | 11.4 | 12.1 | |p |26003.435 | | 1.239029 |08 |G0-G2 |03165 02321| +780159 |EP Tau |033004.1+280653 |CST: | 11.10 | | |V | | | | |G2 | 00586| +780160 |EQ Tau *|034813.4+221851 |EW/KW | 10.5 | 11.03 | 10.97 |V |40213.325 | | 0.34134848 | |G2 |00001 00318| +780163 |ET Tau *|053740.9+271617 |EA/SD | 9.1 | 10.1 | 9.3 |p |29362.476 | | 5.996879 |18 |B8 |00620 00620| +780164 |EU Tau |054540.5+183925 |DCEPS | 7.90 | 8.25 | |V |41324.22 | | 2.10248 |40 |G5 |08637 02351| +780165 |EV Tau |042324.1+063432 |M | 12. |< 16. | |p | | | | |M8e |02782 06286| +780166 |EW Tau |055135.2+160157 |EA/D | 11.7 | 12.3 | |p |29641.76 | | 5.26934 | |A-F |03738 02352| +780198 |GP Tau *|053832.6+250007 |SRB | 11.2 | 11.7 | |p | | | 90. | |M7 |02394 BD | +780199 |GQ Tau |054134.9+255953 |EA/SD: | 11.2 | 12.2 | |p |36493.516 | | 1.5317673 | |B9 |02600 | +780200 |GR Tau *|040103.2+202450 |EB/SD: | 10.26 | 10.80 | 10.49 |V |44573.1071 | | 0.4298525 | |A4-5V+K5V |10039 08953| +780201 |GS Tau *|040636.4+273600 |ACV | 5.15 | 5.22 | |V |21944.74 | | 7.227424 |50 |B9p(Si) |07320 BD | +780203 |GU Tau *|042639.1+261013 |INS | 12.5 | 14.3 | |p | | | | | |04046 10024| +780205 |GW Tau *|043009.5+253227 |EB/KE | 11.2 | 11.9 | 11.7 |p |16900.230 | | 0.6413291 | |A3 |10040 10040| +780221 |HU Tau *|043815.8+204105 |EA/SD: | 5.85 | 6.68 | 5.91 |V |41275.3219 | | 2.0562997 |15 *|B8V |10045 08953| +780225 |HY Tau |054322.4+192405 |EA | 12.4 | 13.6 | |p |31530.305 | | 3.01682 |09 *| |04088 04088| +780227 |II Tau *|034943.3+241905 |UV | 12.4 | 16.9 | |U | | | | |M3Ve-M5Vea |10031 10033| +780228 |IK Tau *|035328.9+112422 |M | 10.8 | 16.5 : | |V |45079. | | 470.0 |50 |M6e-M10e |00001 05118| +780229 |IL Tau |040713.9+291832 |EA/SD | 12.4 | 14.4 | |p |40512.531 | | 5.36062 |10 *| |06210 06210| +780230 |IM Tau *|041049.9+262851 |DSCT | 5.37 | 5.58 | |V |44250.3492 | | 0.145067 | |F2IV-V |10021 BD | +780233 |IP Tau |042457.1+271157 |INS | 12.2 | 13.2 | |V | | | | | |08292 03903| +780238 |IU Tau |043557.3+283052 |SRA | 12.1 | 13.8 | |p |38480. | | 418.0 | |M7 |03804 UCAC2| +780246 |KM Tau *|033908.1+244615 |UV | 12.2 | 18.4 | |B | | | | |M2: |05789 05789| +780263 |LO Tau *|034240.2+235922 |UV | 11.6 | 18.6 | |U | | | | | |10031 10031| +780274 |LZ Tau *|034336.6+241356 |UV | 12.2 | 15.92 | |B | | | | |K7Ve-M0e |10031 10031| +780293 |NR Tau *|034455.1+252141 |UV | 12.0 | 15.0 | |B | | | | |K7-M0: |10031 10031| +780314 |PP Tau *|034631.2+240703 |UV | 12.4 | 15.70 | |B | | | | |K5V |10031 10031| +780323 |PY Tau |034658.5+242740 |UV | 12.1 | 19.2 | |B | | | | | |10031 05607| +780329 |QU Tau *|034725.8+222058 |UV | 11.5 | 18.0 | |p | | | | |M3Ve-M4Ve |10031 06819| +780332 |QX Tau *|034741.4+235819 |UV+BY | 12.4 | 15.68 | |U | | | | |K7Ve-M0Ve |10031 10031| +780341 |V0341 Tau *|034805.7+223810 |UV | 12.0 : | 21.0 | |U | | | | | |07328 10031| +780384 |V0384 Tau *|035138.0+231059 |UV | 12. | 16.5 | |U | | | | |M0-M1 |10031 10031| +780410 |V0410 Tau *|041831.1+282716 |INSB | 11.3 | 12.4 | |B | | | | |K3Ve-K7Ve |05796 10000| +780471 |V0471 Tau *|035025.0+171447 |EA/D/RS+X | 9.40 | 9.71 | |V |45612.38065 | | 0.52118301 |06 |K0Vea+DA |10059 05120| +780473 |V0473 Tau *|044916.0+293417 |ACV | 7.22 | 7.36 | |V |38466.729 | | 1.3900 | |B9p(Si-Cr) |08022 BD | +780479 |V0479 Tau *|035427.2+051029 |DSCTC | 7.39 | 7.46 | |V | | | 0.076 | |F1/3III-IV |05932 BD | +780480 |V0480 Tau *|045122.5+185024 |DSCTC | 5.09 | 5.13 | |V | | | 0.042 | |A7IV/V-A9IIIn |05830 BD | +780482 |V0482 Tau |041343.5+262456 |LB: | 11.5 | 13.0 | |p | | | | |M0-M6 |06821 06821| +780483 |V0483 Tau *|041957.7+140207 |DSCTC | 5.55 | 5.59 | |V | | | 0.054 | |F0IV |08569 BD | +780486 |V0486 Tau *|033658.0+231240 |ACV | 6.65 | 6.78 | |V |41252.12 | | 10.61 : | |A0p(Cr-Sr-Eu) |07221 BD | +780514 |V0514 Tau *|034423.4+252130 |UV | 12.5 | 18.45 | |B | | | | | |10031 10031| +780534 |V0534 Tau *|034703.5+244912 |DSCTC | 8.26 | 8.30 | |V | | | 0.032 | |A9/F0V |06400 02953| +780593 |V0593 Tau |055306.1+262644 |GCAS | 8.13 |( 0.22 )| |V | | | | |B3Ve |05522 BD | +780624 |V0624 Tau *|034343.2+242229 |DSCTC | 8.23 | 8.25 | |V | | | 0.0205 | |A7V |10068 02953| +780627 |V0627 Tau *|034402.8+253923 |UV | 12.0 | 14.8 | |U | | | | | |06894 06894| +780647 |V0647 Tau *|034719.4+240821 |DSCTC | 8.25 | 8.30 | |V | | | 0.047 | |A7V-F0V |10068 02953| +780650 |V0650 Tau *|034726.8+234042 |DSCTC | 7.76 |( 0.03 )| |V | | | 0.031 | |A3V-A3.5V |06400 02953| +780652 |V0652 Tau *|034741.0+225548 |UV | 12.4 | 14.24 | |U | | | | |K2.5Ve |06894 06894| +780660 |V0660 Tau *|034828.0+231803 |UV+BY | 12.4 | 14.46 | |U | | | | |K3Ve |06894 06894| +780696 |V0696 Tau *|042036.3+150544 |DSCTC | 5.22 | 5.28 | |V | | | 0.036 | |A9/F0IV-V |06838 BD | +780697 |V0697 Tau *|043323.8+235927 |UV | 12.4 | 14.5 | |p | | | | |M1ea |06903 06903| +780703 |V0703 Tau *|034733.7+244103 |UV | 12.2 | 14.88 | |U | | | | |K3V |06894 06894| +780711 |V0711 Tau *|033647.3+003516 |RS | 5.71 | 5.94 | |V |40000.58 | | 2.840612 | |G5IV/Vea+K1IVea |10071 BD | +780718 |V0718 Tau *|043121.9+173910 |M | 10.2 | 14.3 | |V |41280. | | 405. |50 |C2:e(Ne) |09098 10073| +780719 |V0719 Tau |044838.9+251706 |INS: | 12. |< 15.7 | |p | | | | | |06996 01090| +780724 |V0724 Tau |041936.7+214625 |ACV | 5.36 | 5.40 | |V |42299.51 | | 1.56896 |40 |A0p(Si) |08824 BD | +780725 |V0725 Tau *|053854.6+261857 |XNGP | 9.4 | 10.1 | |p | | | | |O9.7IIIe |10075 10074| +780726 |V0726 Tau *|055221.4+161755 |EB/D | 10.9 | 11.5 | 11.2 |V |37016.357 | | 1.98453 | | |07929 07929| +780731 |V0731 Tau |054319.5+231216 |GCAS | 5.98 | 6.27 | |V | | | | |B2Ve-B5Vpe |10080 BD | +780744 |V0744 Tau *|034501.1+244641 |UV | 12.5 | 20.0 | |U | | | | | |08558 10031| +780766 |V0766 Tau |035115.9+130246 |ACV | 6.30 |( 0.065 )| |V |43849.27 | | 2.53465 |50 |B9p(Si) |04013 BD | +780771 |V0771 Tau *|035623.5+244957 |UV | 11.6 | 16.6 | |U | | | | | |10031 10031| +780773 |V0773 Tau *|041412.9+281212 |INB+BY | 10.59 | 10.95 | |V | | | | |K2ea |08567 10000| +780774 |V0774 Tau *|041528.8+061113 |BY: | 6.28 | 6.37 | |V | | | | |G0IV-V |04443 BD | +780775 |V0775 Tau *|042203.5+140438 |DSCTC | 5.72 |( 0.01 )| |V | | | 0.0625 | |A3m |08569 BD | +780776 |V0776 Tau *|042529.4+175541 |ACV: | 4.29 | 4.32 | |V |40501.35 | | 57.25 |50 |A2/3IV/Vm |04447 BD | +780777 |V0777 Tau *|042620.7+153706 |DSCTC | 4.73 |( 0.02 )| |B | | | 0.16 | |A8Vn/F0V |08569 BD | +780781 |V0781 Tau *|055013.1+265743 |EW/KW | 8.9 | 9.3 | 9.3 |p |43874.954 | | 0.3449100 | |G0 |10085 08576| +780806 |V0806 Tau |043215.4+242900 |IN | 10.2 | 11.2 | |J | | | | |ea |08799 00596| +780807 |V0807 Tau *|043306.6+240955 |IN | 12.2 | 12.9 | |B | | | | |ea |10024 10024| +780808 |V0808 Tau *|044913.0+244810 |RS | 9.52 |( 0.08 )| |V |44272.77 | | 6.82 |50 |K3V+K3V |08801 BD | +780809 |V0809 Tau |055222.3+141018 |ACV | 5.59 |( 0.02 )| |V |43859.00 | | 2.6541 |50 |B9p(Si-Eu-Cr) |04013 BD | +780810 |V0810 Tau |034302.9+244011 |BY | 12.04 |( 0.075 )| |V | | | | | |67312 67312| +780814 |V0814 Tau |034639.4+240147 |BY | 12.30 |( 0.075 )| |V | | | | | |67312 67312| +780815 |V0815 Tau |034713.5+234252 |BY | 12.41 | 12.52 | |V | | | | | |67315 67315| +780817 |V0817 Tau |035703.8+231032 |ELL | 6.06 |( 0.05 )| |V | | | | | |67318 BD | +780818 |V0818 Tau |041738.9+165652 |E/RS | 8.30 |( 0.15 )| |V | | | | | |67321 BD | +780830 |V0830 Tau |043310.0+243343 |BY | 12.08 | 12.37 | |V | | | | | |67323 67322| +780833 |V0833 Tau |043648.2+270756 |BY | 9.1 | 9.9 | |p | | | | | |67335 BD | +780834 |V0834 Tau |044118.9+205406 |BY | 7.94 | 8.33 | |V | | | | | |67337 BD | +780837 |V0837 Tau |033711.0+255928 |BY: | 8.2 |( 0.09 )| |V | | | | | |68234 BD | +780855 |V0855 Tau |034540.2+243738 |BY: | 10.0 |( 0.035 )| |V | | | | | |68242 68242| +780880 |V0880 Tau |035123.9+220648 |UV | 12.5 | 14.5 | |U | | | | | |68236 68236| +780891 |V0891 Tau |041525.8+061159 |BY | 6.92 | 7.00 | |V | | | | | |68256 BD | +780892 |V0892 Tau |041840.6+281916 |INA | 5.55 | 6.07 | |K | | | | | |68258 68258| +780893 |V0893 Tau |041858.0+195424 |BY | 8.63 |( 0.029 )| |V | | | | | |68259 BD | +780895 |V0895 Tau |042412.5+144530 |BY | 7.62 |( 0.032 )| |V | | | | | |68259 BD | +780897 |V0897 Tau |042428.3+165310 |BY | 7.80 |( 0.042 )| |V | | | | | |68259 BD | +780906 |V0906 Tau |042624.6+165112 |BY | 7.98 | 8.06 | |V | | | | | |68259 BD | +780911 |V0911 Tau |042640.1+164449 |BY | 8.11 |( 0.030 )| |V | | | | | |68259 BD | +780918 |V0918 Tau |042837.2+194427 |BY | 8.6 |( 0.044 )| |V | | | | | |68259 BD | +780920 |V0920 Tau |042848.3+171708 |BY | 7.84 |( 0.050 )| |V | | | | | |68259 BD | +780921 |V0921 Tau |042931.6+175336 |BY | 8.96 | 8.99 | |V | | | | | |68259 BD | +780938 |V0938 Tau |043435.3+153017 |BY | 7.94 |( 0.035 )| |V | | | | | |68259 BD | +780960 |V0960 Tau |053331.6+183225 |GCAS | 5.53 | 5.69 | |V | | | | | |68293 BD | +780963 |V0963 Tau |034337.7+233210 |BY | 10.69 | 10.76 | |V | | | | | |69258 69259| +780966 |V0966 Tau |034411.2+232246 |BY | 11.41 | 11.54 | |V | | | | | |69258 69259| +780969 |V0969 Tau |034542.1+245422 |BY | 9.46 | 9.51 | |V | | | | | |69258 69259| +780971 |V0971 Tau |034619.6+235654 |BCEP | 4.18 |( 0.01 )| |V | | | | | |69264 BD | +780984 |V0984 Tau |041633.5+215427 |BY | 9.15 |( 0.04 )| |V | | | | | |69265 BD | +780985 |V0985 Tau |041819.3+160518 |BY | 9.60 |( 0.02 )| |V | | | | | |69266 BD | +780986 |V0986 Tau |042013.0+191401 |BY | 7.47 |( 0.05 )| |V | | | | | |69266 BD | +780987 |V0987 Tau |042158.9+281807 |INT | 8.98 | 9.10 | |V | | | | | |69268 BD | +780988 |V0988 Tau |042322.9+193931 |BY | 9.40 |( 0.05 )| |V | | | | | |69266 BD | +780989 |V0989 Tau |042325.3+154547 |BY | 10.49 |( 0.03 )| |V | | | | | |69266 BD | +780990 |V0990 Tau |042416.9+180011 |BY | 9.99 |( 0.03 )| |V | | | | | |69266 BD | +780991 |V0991 Tau |042500.3+165906 |BY | 10.30 |( 0.04 )| |V | | | | | |69266 BD | +780992 |V0992 Tau |042605.9+153128 |BY: | 7.49 |( 0.03 )| |V | | | | | |69266 BD | +780993 |V0993 Tau |042735.9+153521 |BY | 7.42 |( 0.02 )| |V | | | | | |69266 BD | +780994 |V0994 Tau |042850.8+161720 |BY | 10.71 |( 0.04 )| |V | | | | | |69266 69308| +780995 |V0995 Tau |042931.0+161441 |BY | 10.32 |( 0.04 )| |V | | | | | |69266 BD | +780996 |V0996 Tau |043250.1+160021 |BY | 8.94 |( 0.05 )| |V | | | | | |69266 BD | +780997 |V0997 Tau |043259.5+154908 |BY | 8.66 |( 0.04 )| |V | | | | | |69266 BD | +780998 |V0998 Tau |043732.0+150847 |BY | 7.54 |( 0.03 )| |V | | | | | |69266 BD | +781024 |V1024 Tau |041926.1+210832 |ACV | 5.02 |( 0.03 )| |U | | | | | |70123 BD | +781025 |V1025 Tau |043554.1+225414 |INSB | 11.02 | 11.12 | |V | | | | | |70124 70166| +781028 |V1028 Tau |052718.9+230625 |INT | 10.5 | 13.0 | |B | | | | | |70128 70129| +781038 |V1038 Tau |034420.1+244746 |BY | 11.26 | 11.46 | |U | | | | | |71028 71027| +781041 |V1041 Tau |034539.4+234515 |UV: | 12.4 | 14.1 | |U | | | | | |71029 71027| +781045 |V1045 Tau |034622.7+243413 |BY | 11.17 | 11.28 | |U | | | | | |71028 71027| +781046 |V1046 Tau |034654.9+244747 |BY: | 11.28 | 11.37 | |U | | | | | |71028 71027| +781051 |V1051 Tau |035116.9+234936 |UV | 11.1 | 14.2 | |U | | | | | |71029 71027| +781060 |V1060 Tau |045037.7+154750 |LB: | 11.2 | 12.18 | |B | | | | | |71034 BD | +781061 |V1061 Tau |045852.8+242945 |EB/KE | 7.95 | 8.45 : | |V | | | | | |71038 BD | +781065 |V1065 Tau |034640.2+232952 |RS: | 12.18 |( 0.15 )| |V | | | | | |72157 72158| +781069 |V1069 Tau |041851.7+172317 |INT | 12.16 | 12.36 | |V | | | | | |72019 72020| +781072 |V1072 Tau |042710.6+175043 |INT | 10.24 | 10.37 | |V | | | | | |72161 72020| +781073 |V1073 Tau |043125.1+181617 |INT | 10.27 | 10.34 | |V | | | | | |72161 72020| +781075 |V1075 Tau |043209.3+175723 |INT | 12.01 | 12.36 | |V | | | | | |72019 72020| +781078 |V1078 Tau |043514.2+182136 |INT | 10.92 | 11.02 | |V | | | | | |72161 72020| +781079 |V1079 Tau |043917.8+222103 |INT | 11.91 | 12.89 | |V | | | | | |72019 72160| +781080 |V1080 Tau |044032.6+242631 |INA | 10.29 | 10.56 | |V | | | | | |72019 BD | +781081 |V1081 Tau |044354.0+225640 |E | 6.9 | 7.3 | |V | | | | | |72162 72162| +781082 |V1082 Tau |033933.6+182306 |RS | 8.19 |( 0.05 )| |V | | | | | |73005 BD | +781083 |V1083 Tau |034343.9+065530 |M | 5.99 | 7.39 | |J | | | | | |73014 UCAC2| +781084 |V1084 Tau |034420.5+244622 |RS | 11.04 |( 0.08 )| |V | | | | | |73263 73315| +781085 |V1085 Tau |034535.4+240500 |BY | 10.12 |( 0.05 )| |V | | | | | |73259 73315| +781089 |V1089 Tau |034924.1+235021 |BY | 11.35 |( 0.06 )| |V | | | | | |73263 73315| +781090 |V1090 Tau |034933.1+234743 |BY | 10.93 |( 0.03 )| |V | | | | | |73263 73315| +781091 |V1091 Tau |035035.7+252535 |UV | 12.2 | 13.1 | |U | | | | | |73319 73319| +781092 |V1092 Tau |035705.8+283752 |BY+UV | 11.7 |( 0.13 )| |V | | | | | |73321 73153| +781094 |V1094 Tau |041203.6+215651 |EA | 8.95 | 9.43 | |V | | | | | |73322 BD | +781097 |V1097 Tau |041430.6+285130 |BY | 11.64 | 12.37 | |V | | | | | |73323 73324| +781098 |V1098 Tau |041448.0+275235 |INB | 12.00 | 12.19 | |V | | | | | |73325 73324| +781099 |V1099 Tau |041546.3+152403 |ELL: | 6.31 |( 0.02 )| |V | | | | | |73326 BD | +781100 |V1100 Tau |042125.4+201559 |M | 12.5 |< 15.5 | |p | | | | | |73256 73256| +781102 |V1102 Tau |042828.8+174145 |BY | 12.05 |( 0.07 )| |V | | | | | |73263 73329| +781110 |V1110 Tau |043439.3+250101 |RS | 10.34 |( 0.06 )| |V | | | | | |73005 BD | +781115 |V1115 Tau |043619.1+254259 |BY | 11.65 | 11.82 | |V | | | | | |73325 73324| +781116 |V1116 Tau |043629.1+232027 |DSCTC: | 6.02 |( 0.01 )| |V | | | | | |73326 BD | +781119 |V1119 Tau |052425.5+172301 |BY | 4.98 | 5.02 | |V | | | | | |73242 BD | +781120 |V1120 Tau |032415.4+115140 |LB: | 8.88 | 9.00 | |Hp| | | | | |HIP HIP | +781121 |V1121 Tau |032415.5+012124 |EB: | 8.46 | 8.89 | |Hp| | | | | |HIP HIP | +781122 |V1122 Tau |033335.9+144043 |LB: | 7.51 | 7.61 | |Hp| | | | | |HIP HIP | +781123 |V1123 Tau |033458.5+174238 |EW | 9.87 | 10.25 | |Hp| | | | | |HIP HIP | +781124 |V1124 Tau |033518.4+185411 |SRD: | 7.59 | 7.70 | |Hp| | | | | |HIP HIP | +781125 |V1125 Tau |033858.8+004748 |E | 8.77 | 9.03 | |Hp| | | | | |HIP HIP | +781126 |V1126 Tau |033910.9+110524 |E: | 10.47 | 10.60 | |Hp| | | | | |HIP HIP | +781127 |V1127 Tau |034318.1+124738 |SRB | 8.40 | 8.91 | |Hp| | | | | |HIP HIP | +781128 |V1128 Tau |034927.8+125444 |EW | 9.65 | 10.24 | |Hp| | | | | |HIP HIP | +781129 |V1129 Tau |034927.0+110840 |BY: | 7.75 | 7.85 | |Hp| | | | | |HIP HIP | +781130 |V1130 Tau |035041.9+013350 |EB | 6.65 | 7.04 | |Hp| | | | | |HIP HIP | +781131 |V1131 Tau |035653.1+153213 |DSCTC | 8.82 | 8.89 | |Hp| | | | | |HIP HIP | +781132 |V1132 Tau |035837.3+110139 |LB: | 7.18 | 7.29 | |Hp| | | | | |HIP HIP | +781133 |V1133 Tau |040344.6+052608 |LPB: | 5.28 | 5.32 | |Hp| | | | | |HIP HIP | +781134 |V1134 Tau |040411.9+252357 |LB: | 8.63 | 8.73 | |Hp| | | | | |HIP HIP | +781135 |V1135 Tau |040604.7+244356 |SRB | 8.78 | 8.93 | |Hp| | | | | |HIP HIP | +781136 |V1136 Tau |041156.2+233811 |RS: | 9.49 | 9.58 | |Hp| | | | | |HIP HIP | +781137 |V1137 Tau |041251.2+222448 |ACV: | 6.18 | 6.22 | |Hp| | | | | |HIP HIP | +781138 |V1138 Tau |041324.4+035408 |SRB | 8.10 | 8.27 | |Hp| | | | | |HIP HIP | +781139 |V1139 Tau |041524.1+240443 |LB: | 7.36 | 7.71 | |Hp| | | | | |HIP HIP | +781140 |V1140 Tau |042037.8+285331 |ACV: | 7.97 | 8.02 | |Hp| | | | | |HIP HIP | +781141 |V1141 Tau |042332.4+205855 |LPB | 6.00 | 6.02 | |Hp| | | | | |HIP HIP | +781142 |V1142 Tau |042344.2+225753 |LB: | 6.97 | 7.07 | |Hp| | | | | |HIP HIP | +781143 |V1143 Tau |042621.1+083525 |LPB | 6.06 | 6.09 | |Hp| | | | | |HIP HIP | +781144 |V1144 Tau *|042942.9+103119 |LPB | 6.80 | 6.82 | |Hp| | | | | |HIP HIP | +781145 |V1145 Tau |042938.9+050951 |SRC: | 6.87 | 7.07 | |Hp| | | | | |HIP HIP | +781146 |V1146 Tau |043107.2+150618 |LB: | 6.33 | 6.36 | |Hp| | | | | |HIP HIP | +781147 |V1147 Tau |043225.6+130648 |BY: | 10.96 | 11.13 | |Hp| | | | | |HIP HIP | +781148 |V1148 Tau *|043754.3+071903 |ELL: | 6.98 | 7.00 | |Hp| | | | | |HIP HIP | +781149 |V1149 Tau |043831.1+184401 |EA | 8.49 | 8.65 | |Hp| | | | | |HIP HIP | +781150 |V1150 Tau |043836.2+081031 |BE | 7.59 | 7.68 | |Hp| | | | | |HIP HIP | +781151 |V1151 Tau |043846.2+064913 |LB: | 7.86 | 7.98 | |Hp| | | | | |HIP HIP | +781152 |V1152 Tau *|044106.1+063753 |SRB: | 8.69 | 9.18 | |Hp| | | | | |HIP HIP | +781153 |V1153 Tau |050215.9+240145 |BE | 8.21 | 8.56 | |Hp| | | | | |HIP HIP | +781154 |V1154 Tau |050537.7+230340 |E: | 6.71 | 6.81 | |Hp| | | | | |HIP HIP | +781155 |V1155 Tau |050755.4+214217 |BE | 5.82 | 5.96 | |Hp| | | | | |HIP HIP | +781156 |V1156 Tau |050945.1+280150 |E: | 6.00 | 6.10 | |Hp| | | | | |HIP HIP | +781157 |V1157 Tau |051040.0+172625 |LPB | 7.90 | 7.94 | |Hp| | | | | |HIP HIP | +781158 |V1158 Tau |051354.0+172712 |SRB: | 8.89 | 9.35 | |Hp| | | | | |HIP HIP | +781159 |V1159 Tau |052018.3+193442 |ACV | 6.63 | 6.66 | |Hp| | | | | |HIP HIP | +781160 |V1160 Tau |053015.4+223225 |LB: | 7.66 | 7.81 | |Hp| | | | | |HIP HIP | +781161 |V1161 Tau *|053546.4+184544 |LB: | 9.50 | 9.78 | |Hp| | | | | |HIP HIP | +781162 |V1162 Tau |053738.2+230851 |BE: | 8.88 | 9.07 | |Hp| | | | | |HIP HIP | +781163 |V1163 Tau |053858.0+282737 |BE | 8.40 | 8.53 | |Hp| | | | | |HIP HIP | +781164 |V1164 Tau |054032.5+272634 |ELL: | 8.30 | 8.51 | |Hp| | | | | |HIP HIP | +781165 |V1165 Tau |054339.1+252622 |BE: | 6.78 | 6.86 | |Hp| | | | | |HIP HIP | +781166 |V1166 Tau |054346.7+264909 |E: | 9.41 | 9.58 | |Hp| | | | | |HIP HIP | +781167 |V1167 Tau |055331.1+254432 |BE | 8.36 | 8.62 | |Hp| | | | | |HIP HIP | +781168 |V1168 Tau |034404.8+241632 |BY | 11.63 |( 0.16 )| |V | | | | | |75260 75261| +781169 |V1169 Tau |034413.9+244646 |BY | 10.79 |( 0.03 )| |V | | | | | |75262 75261| +781170 |V1170 Tau |034426.3+243523 |BY | 11.57 |( 0.05 )| |V | | | | | |75260 75261| +781171 |V1171 Tau |034628.4+242602 |BY | 11.10 |( 0.12 )| |V | | | | | |75260 75261| +781175 |V1175 Tau |035040.1+235559 |BY | 10.31 |( 0.07 )| |V | | | | | |75260 75261| +781176 |V1176 Tau |035054.3+235006 |BY: | 11.57 |( 0.04 )| |V | | | | | |75263 75261| +781185 |V1185 Tau |033900.6+294146 |IA | 10.74 | 10.88 | |V | | | | | |76027 GSC | +781187 |V1187 Tau |034400.3+243325 |DSCTC | 8.28 |( 0.02 )| |B | | | | | |76009 DM | +781188 |V1188 Tau |034536.0+243001 |EW | 11.85 | 12.30 | |V | | | | | |76030 76030| +781190 |V1190 Tau |034733.8+295851 |SR: | 12.4 | 13.8 | |V | | | | | |76012 UCAC2| +781191 |V1191 Tau |034927.7+060440 |M | 11.1 |< 15.3 | |V | | | | | |76012 UCAC2| +781192 |V1192 Tau |035028.1+274006 |SR: | 11.5 | 12.5 | |V | | | | | |76012 UCAC2| +781194 |V1194 Tau |040324.9+172426 |IT | 11.65 | 11.80 | |V | | | | | |76033 GSC | +781195 |V1195 Tau |040651.4+254128 |IT | 11.68 |( 0.21 )| |V | | | | | |76033 UCAC2| +781197 |V1197 Tau |040909.8+290130 |IT | 10.55 | 10.62 | |V | | | | | |76033 GSC | +781198 |V1198 Tau |041251.2+244144 |IT | 11.93 | 12.01 | |V | | | | | |76033 GSC | +781199 |V1199 Tau |041522.9+204417 |IT | 10.60 | 10.72 | |V | | | | | |76033 GSC | +781200 |V1200 Tau |042341.3+153755 |IT | 11.17 | 11.33 | |V | | | | | |76033 GSC | +781201 |V1201 Tau |042449.0+264310 |IT | 11.31 |( 0.16 )| |V | | | | | |76033 GSC | +781202 |V1202 Tau |043116.9+215025 |IT | 10.79 | 10.92 | |V | | | | | |76033 GSC | +781203 |V1203 Tau |043242.4+185510 |IT | 10.74 | 10.85 | |V | | | | | |76033 GSC | +781204 |V1204 Tau |043839.1+154614 |IT | 10.64 | 10.84 | |V | | | | | |76033 GSC | +781206 |V1206 Tau |044551.3+155550 |IT | 9.18 | 9.41 | |V | | | | | |76033 GSC | +781207 |V1207 Tau |045839.7+204644 |IT | 11.86 | 11.96 | |V | | | | | |76033 UCAC2| +781210 |V1210 Tau |034704.2+235943 |GDOR | 8.37 |( 0.03 )| |V | | | | | |77031 DM | +781214 |V1214 Tau |045013.4+300745 |M | 10.3 | 13.6 | |I | | | | | |77012 77013| +781215 |V1215 Tau |051743.6+252459 |M | 9.9 | 13.6 | |I | | | | | |77012 77013| +781217 |V1217 Tau |053018.2+202203 |M | 9.8 | 13.7 | |I | | | | | |77012 77013| +781220 |V1220 Tau |032809.6-011805 |EB | 11.9 | 12.5 | |V |51550.250 | | 1.06425 | | |78045 GSC | +781221 |V1221 Tau |032815.0+040948 |BY | 9.49 | 9.56 | |V | | | 0.5473 : | |G6V+K3V |78046 DM | +781223 |V1223 Tau |032914.7+091120 |EW | 12.13 | 12.59 | |* |52264.982 | | 0.44713 | | |78047 GSC | +781224 |V1224 Tau |032938.4+243038 |INT | 12.05 | 12.23 | |V | | | | |K1 |78048 GSC | +781225 |V1225 Tau |033951.2+251142 |GDOR | 8.81 |( 0.08 )| |V | | | 0.390 | |A2 |78050 DM | +781227 |V1227 Tau |034544.5+244250 |BY | 11.1 |( 0.15 )| |V | | | 24.814 | |M1 |78048 78056| +781228 |V1228 Tau |034724.1+243518 |DSCTC | 7.71 |( 0.02 v )| |V | | | 0.0603 | |A4V |78057 DM | +781229 |V1229 Tau *|034729.4+241718 |EA | 6.84 | 6.94 | 6.88 |V |52903.5981 | | 2.461134 | |A0V |78058 DM | +781232 |V1232 Tau |041801.8+181525 |RS | 7.53 |( 0.05 )| |V | | | 8.968 | |G4V+G8V |78018 DM | +781233 |V1233 Tau |042551.7+185151 |BY | 8.07 |( 0.02 )| |V | | | 9.16 | |G3V+G6V |78018 DM | +781235 |V1235 Tau |043210.2+174318 |DSCTC | 10.96 | 11.00 | |V | | | 0.1169 | |F3 |78022 GSC | +781238 |V1238 Tau *|054214.6+222217 |EW | 8.50 | 8.87 | 8.87 |V |52978.7388 | | 1.121730 | |A0 |78130 DM | +781239 |V1239 Tau *|055025.9+265651 |EA: | 10.66 | 11.08 | 10.76 |V |52645.6567 | | 1.084820 | | |78130 GSC | +781241 |V1241 Tau *|032423.3-004215 |EA/SD | 9.38 |( 0.90 )|( 0.22 )|V |27531.687 | | 0.82327038 |19 *|A7+F6V: |09199 08953| +781243 |V1243 Tau *|034851.6+114232 |GDOR | 8.60 |( 0.08 )| |B | | | 0.44316 | |F2V |79219 DM | +781244 |V1244 Tau |034906.3+253523 |SRB | 10.7 | 11.2 | |V | | | 42.9 | | |79064 GSC | +781245 |V1245 Tau |035147.4+251207 |UV | 12.4 | 13.6 | |U | | | | | |79023 79024| +781246 |V1246 Tau |035152.5+302525 |SR | 10.5 | 10.8 | |* | | | 95. | | |79100 79022| +781248 |V1248 Tau *|043248.1+223953 |SR: | 10.4 | 10.8 | |* | | | | |M8 |79100 GSC | +781251 |V1251 Tau |044157.7+053634 |EA/RS | 9.49 | 10.08 | 9.95 |V |51946.829 | | 18.897 |10 |G8III+K1/2III |79003 DM | +781252 |V1252 Tau |050907.5+260819 |LB | 10.3 | 10.8 | |* | | | | | |79100 GSC | +781253 |V1253 Tau |051507.6+182229 |SR | 12.1 | 13.2 | |V | | | 160. | | |79100 GSC | +781254 |V1254 Tau |051708.7+274140 |SR | 11.2 | 12.2 | |V | | | 188. | |C(N) |79064 GSC | +781257 |V1257 Tau |053441.2+175319 |LB | 10.4 | 10.8 | |* | | | | |M4 |79100 GSC | +781258 |V1258 Tau *|053533.8+235318 |M | 11.6 |< 15.0 | |V |52699. | | 428. : | | |79100 GSC | +781260 |V1260 Tau *|053903.9+253610 |EA | 10.15 | 10.75 : | 10.61 |* |53347.724 | | 5.43077 |05 |A3m |79003 DM | +781261 |V1261 Tau |053934.9+185238 |SRB | 12.0 | 13.0 | |V | | | 123. | |M5 |79100 GSC | +781262 |V1262 Tau |054520.5+190753 |LB | 12.1 | 13.4 | |V | | | | | |79100 79022| +781263 |V1263 Tau |032405.6+072927 |E:/RS | 10.44 | 10.77 | |V | | | 20.43 | | |80034 DM | NL80_1 +781267 |V1267 Tau |033311.6+103556 |IT: | 12.0 |( 0.18 )| |V | | | | | K3 |80127 GSC | NL80_1 +781268 |V1268 Tau *|034038.8+284624 |EA | 7.42 | 8.62 | |V |54329.479 | | 8.161235 | | A1V |80146 HIP | NL80_1 +781269 |V1269 Tau |034145.6+271857 |IT: | 11.68 | 11.89 | |V | | | 2.6380 | | K2IV |80021 GSC | NL80_1 +781270 |V1270 Tau |034220.9+291441 |RS | 11.1 |( 0.06 * )| |R | | | 2.3271 | | |80021 GSC | NL80_1 +781271 |V1271 Tau |034348.4+250016 |RS | 11.43 | 11.79 | |V | | | 0.4749 | | |80021 GSC | NL80_1 +781272 |V1272 Tau |034403.5+243015 |BY | 11.73 |( 0.15 )| |B | | | 1.365 | | G1V |80147 GSC | NL80_1 +781274 |V1274 Tau |034557.9+273335 |RS | 10.2 |( 0.10 * )| |R | | | 6.6237 | | K5 |80021 GSC | NL80_1 +781282 |V1282 Tau *|034906.1+234653 |RS | 10.84 | 11.00 | |* | | | 0.3082 | | K0IV |80021 GSC | NL80_1 +781283 |V1283 Tau *|034942.3+242747 |RS | 12.05 | 12.26 | |* | | | 7.7479 | | K3 |80021 GSC | NL80_1 +781286 |V1286 Tau |035208.3+241349 |RS: | 10.60 | 10.76 | |V | | | 1.6604 | | G5 |80021 GSC | NL80_1 +781287 |V1287 Tau *|035307.4+253207 |EA | 8.53 |< 8.87 | 8.69 |V |53354.715 | | 13.0620 | | A0 |80015 DM | NL80_1 +781288 |V1288 Tau |035331.4+263141 |BY | 12.1 |( 0.09 * )| |V | | | 0.2835 | | G7IV |80021 GSC | NL80_1 +781289 |V1289 Tau |035425.2+242136 |RS | 10.9 |( 0.12 * )| |V | | | 2.2386 | | G5IV |80021 HIP | NL80_1 +781290 |V1290 Tau |035430.2+012419 |SRB | 11.7 | 12.2 | |V | | | 26.6 | | M5III: |80001 GSC | NL80_1 +781293 |V1293 Tau |040031.1+193521 |IB | 10.12 | 10.29 | |V | | | 1.1683 | | K1 |80154 DM | NL80_1 +781295 |V1295 Tau *|040259.3+271855 |EA | 11.27 | 11.66 | 11.35 |V |51566.648 | | 2.09160 |13 | G5 |80011 GSC | NL80_1 +781297 |V1297 Tau |040512.3+263244 |IB | 11.21 | 11.49 | |V | | | 1.9610 | | K2 |80154 GSC | NL80_1 +781298 |V1298 Tau |040519.6+200926 |IB | 10.31 | 10.54 | |V | | | 2.86 | | K1 |80154 DM | NL80_1 +781299 |V1299 Tau *|040540.6+224812 |IB | 9.29 | 9.44 | |V | | | 0.8160 | | G3 |80154 DM | NL80_1 +781300 |V1300 Tau |040638.8+201811 |IB | 9.62 | 9.75 | |V | | | 1.0790 | | G1 |80154 HIP | NL80_1 +781302 |V1302 Tau |040754.0+175026 |RS | 12.21 |( 0.18 )| |B | | | | | K4 |80127 GSC | NL80_1 +781308 |V1308 Tau |041259.9+161148 |IB | 10.95 | 11.12 | |V | | | | | G1 |80154 GSC | NL80_1 +781309 |V1309 Tau |041427.3+122607 |BY | 8.06 |( 0.02 )| |V | | | 8.65 | | G0 |80129 HIP | NL80_1 +781310 |V1310 Tau |041432.3+233430 |BY | 8.08 |( 0.03 )| |V | | | 8.48 | | G3V |80129 HIP | NL80_1 +781313 |V1313 Tau |041810.8+231705 |RS | 9.36 | 9.60 | |V | | | 1.8787 | | K0 |80034 DM | NL80_1 +781314 |V1314 Tau |041946.6+231748 |RS | 10.8 |( 0.09 * )| |V | | | 2.2176 | | G5 |80021 GSC | NL80_1 +781315 |V1315 Tau |041953.7+300954 |RS | 11.3 |( 0.28 * )| |V | | | 10.2706 | | K0 |80021 GSC | NL80_1 +781316 |V1316 Tau |042127.3+012913 |M | 5.31 | 6.83 | |K | | | 226. : | | N |80166 GSC | NL80_1 +781317 |V1317 Tau |042347.6+294038 |BY | 11.5 |( 0.11 * )| |V | | | 1.3836 | | K2 |80021 GSC | NL80_1 +781319 |V1319 Tau |043049.2+211411 |IB | 10.26 | 10.40 | |V | | | 0.7360 | | G8 |80154 DM | NL80_1 +781323 |V1323 Tau |043342.0+182427 |IB | 12.04 | 12.12 | |V | | | 1.122 : | | G5 |80154 GSC | NL80_1 +781325 |V1325 Tau |043813.1+202247 |IB | 12.12 | 12.28 | |V | | | 2.9600 | | K2 |80154 GSC | NL80_1 +781327 |V1327 Tau |044009.9+114317 |RRC | 12.45 | 13.05 | |V |51536.73 | | 0.33120 |25 | |80026 GSC | NL80_1 +781329 |V1329 Tau |044155.1+265849 |IB | 9.61 | 9.69 | |V | | | 0.6000 | | G2V |80154 HIP | NL80_1 +781330 |V1330 Tau |044218.6+011740 |RS | 11.7 | 12.1 | |V | | | 8.771 | | K2 |80002 GSC | NL80_1 +781332 |V1332 Tau *|044341.3+225338 |EW: | 11.58 | 11.80 | 11.78 |* |53686.6648 | | 0.2718255 | | |80172 GSC | NL80_1 +781334 |V1334 Tau |044454.5+271745 |IB | 9.48 | 9.55 | |V | | | | | K1 |80154 DM | NL80_1 +781337 |V1337 Tau *|044800.4+275620 |RS | 12.35 | 12.52 | |* | | | 1.27 | | K0 |80127 GSC | NL80_1 +781338 |V1338 Tau |044817.6+275518 |SRB | 11.5 | 12.3 | |V | | | 56.4 | | |80002 GSC | NL80_1 +781339 |V1339 Tau |044858.0+191456 |RS | 11.60 | 12.10 | |V | | | 16.055 | | K0 |80034 GSC | NL80_1 +781341 |V1341 Tau |045000.2+222957 |IB | 11.15 | 11.31 | |V | | | 0.4778 | | K1 |80154 GSC | NL80_1 +781346 |V1346 Tau |045230.8+173026 |IB | 12.00 | 12.11 | |V | | | 0.8204 | | K4 |80154 GSC | NL80_1 +781347 |V1347 Tau *|045250.2+162209 |RS | 11.60 | 11.86 | |V | | | 3.6 | | K6 |80127 GSC | NL80_1 +781348 |V1348 Tau |045257.1+191950 |IB | 12.05 | 12.29 | |V | | | | | K5 |80154 GSC | NL80_1 +781349 |V1349 Tau |045509.6+182631 |IB | 9.16 | 9.27 | |V | | | | | G1 |80154 DM | NL80_1 +781350 |V1350 Tau *|045547.7+174202 |RS | 11.09 | 11.19 | |* | | | 8.1 | | K3 |80127 GSC | NL80_1 +781354 |V1354 Tau |045730.7+201429 |IB | 10.96 | 11.20 | |V | | | 1.46 | | K3 |80154 GSC | NL80_1 +781356 |V1356 Tau *|050444.2+221708 |EA | 10.86 | 11.48 | 11.37 |V |52645.558 | | 12.8075 |03 : | F8 |80042 DM | NL80_1 +781357 |V1357 Tau |050559.7+280717 |IB | 9.93 |( 0.06 * )| |V | | | 0.5239 | | G0 |80021 HIP | NL80_1 +781359 |V1359 Tau |051319.2+180825 |SR | 12.1 | 12.7 | |* | | | 88. | | |80001 GSC | NL80_1 +781360 |V1360 Tau |052037.1+244714 |RS | 11.82 |( 0.10 * )| |V | | | 0.6931 | | |80021 GSC | NL80_1 +781361 |V1361 Tau |052146.8+240045 |IB | 10.85 |( 0.10 * )| |V | | | 3.4547 | | G7IV |80021 GSC | NL80_1 +781362 |V1362 Tau |052210.3+243209 |RS | 10.94 |( 0.06 * )| |V | | | 2.5206 | | G0 |80021 DM | NL80_1 +781363 |V1363 Tau |052247.2+243731 |RS | 11.95 |( 0.07 * )| |V | | | 1.3385 | | |80021 GSC | NL80_1 +781364 |V1364 Tau *|052354.6+253048 |IB | 12.32 |( 0.10 * )| |V | | | 7.7241 | | G4V |80021 GSC | NL80_1 +781365 |V1365 Tau |052705.9+213526 |IB | 11.26 |( 0.09 * )| |V | | | 0.5477 | | G7IV |80021 GSC | NL80_1 +781367 |V1367 Tau *|053019.1+235127 |EW | 10.81 | 11.20 | 11.15 |V |52700.5490 | | 0.347678 | | |80002 DM | NL80_1 +781368 |V1368 Tau |053104.4+231235 |IB | 9.23 | 9.38 | |Hp| | | 0.9426 | | G0 |80021 HIP | NL80_1 +781369 |V1369 Tau *|053224.0+214111 |EA | 12.35 | 12.75 | 12.43 |V |51536.885 | | 1.35567 |08 | |80015 GSC | NL80_1 +781370 |V1370 Tau *|053248.8+190204 |EW | 10.9 | 11.31 | 11.28 |V |53653.817 | | 0.295523 | | |80002 GSC | NL80_1 +781371 |V1371 Tau |053439.1+280304 |BE | 8.00 | 8.20 | |V | | | 312. | | B8e |80002 HIP | NL80_1 +781372 |V1372 Tau |053858.1+244257 |BY | 12.43 |( 0.13 * )| |V | | | 4.3542 | | |80021 GSC | NL80_1 +781373 |V1373 Tau |054540.9+154349 |SRB | 11.7 | 12.6 | |V | | | 80.6 | | |80002 GSC | NL80_1 +789001 |alf Tau *|043555.2+163034 |LB: | 0.75 | 0.95 | |V | | | | |K5III |03000 BD | +789006 |zet Tau *|053738.7+210833 |E/GS+GCAS | 2.88 | 3.17 | 3.05 |V |44936.781 | | 132.9735 | |B1IVe+G8III: |10086 BD | +7890082|tet 2 Tau *|042839.7+155215 |DSCTC+E: | 3.35 | 3.42 | |V | | | 0.07564 |50 |A7III |10088 BD | +789011 |lam Tau *|040040.8+122925 |EA/DM | 3.37 | 3.91 | 3.54 |V |21506.8506 | | 3.9529478 |15 *|B3V+A4IV |08608 08953| +789014 |ksi Tau |032710.2+094358 |E: | 3.70 | 3.79 | |Hp| | | | | |HIP HIP | +789017 |rho Tau *|043350.9+145040 |DSCTC | 4.90 |( 0.01 )| |B | | | 0.067 | |A8Vn |08569 BD | +789020 |ups Tau *|042618.5+224849 |DSCTC | 4.28 | 4.31 | |V | | | 0.1484 |50 |A8Vn |10091 BD | +790001 |R Tel |201445.1-465855 |M | 7.6 | 14.8 | |V |52979. | | 467. |43 |M5IIe-M7e |00001 00002| +790003 |T Tel |182646.1-493934 |M | 11.3 | 18. | |p |52762. | | 254. | |M4e |N0002 USNO | +790004 |U Tel *|190802.3-485412 |M | 9.1 | 14.4 | |V |52576. | | 449. |30 |M7e |N0002 2MASS| +790005 |V Tel |191814.6-502648 |SRB | 9.1 | 10.2 | |V | | | 373. | |M6/8e |00001 CoD | +790006 |W Tel |195034.6-500034 |M | 9.4 | 14.0 | |V |52750. | | 310. |40 |M5e-M8(III:)e |N0002 GSC | +790007 |X Tel |201847.2-523704 |M | 10.4 |< 14.0 | |V |52973. | | 309. | |M5e-M8e |N0002 CoD | +790008 |Y Tel |202014.3-504212 |SRB | 8.6 | 9.8 | |V | | | 258. | |M7III |00001 CoD | +790009 |Z Tel |193933.8-453433 |M | 9.2 |< 14.6 | |V |52586. | | 233. | |M4e |N0002 N0003| +790011 |RS Tel *|181851.2-463253 |RCB | 9.0 | 15.34 | |V | | | | |C(R4) |00017 CoD | +790012 |RT Tel |184359.4-471453 |LB | 9.3 | 9.8 | |V | | | | |M4/6 |00001 CoD | +790013 |RU Tel |190807.0-481552 |M | 9.5 | 15.0 | |V |53866. | | 273.3 | |M2e-M4e |00001 CoD | +790014 |RV Tel *|184337.4-513750 |EA | 10.3 | 12.0 | |p |51953.664 | | 8.328119 |10 |A2/3III/IV |00001 03743| +790015 |RW Tel |184322.2-454653 |SRB | 9.4 | 11.8 | |p | | | 127.35 | |M4-6II-IIIe |00624 CoD | +790016 |RX Tel |190658.2-455814 |LC | 6.6 | 7.4 | |V | | | | |M3Iab |10201 CoD | +790017 |RY Tel |182706.6-505033 |M | 11. |< 15. | |p |52635. | | 241. | |M3e |N0002 2MASS| +790018 |RZ Tel |182613.5-560219 |M | 10.5 | 14.2 | |V |52249. | | 178.6 |50 | |N0002 06286| +790019 |SS Tel *|183216.7-563702 |M | 9.1 | 13.3 | |V |52566. | | 416.5 |45 | |00001 06286| +790022 |SV Tel |185617.9-492810 |M | 8.5 |< 14. | |V |52421. | | 226. | |M4e-M6e |N0002 N0003| +790023 |SW Tel |192739.6-455231 |M | 10.4 | 14.3 | |V |48719. | | 228.2 | |M4e |00001 CoD | +790028 |TU Tel |182030.3-523829 |M | 12.0 | 16.0 | |p |23624. | | 238.4 | | |00630 06286| +790032 |TY Tel *|182154.9-524827 |M | 10.5 | 16.0 | |p |52205. | | 397. | | |00001 2MASS| +790033 |TZ Tel |181030.2-545946 |SRA | 11.9 | 13.3 | |V |52172. | | 202. | | |10201 06286| +790039 |UZ Tel |181740.1-501119 |SRA | 12.5 | 14.2 | |V |52082. | | 190. | | |10201 06286| +790040 |VV Tel |181847.1-561357 |SRA | 10.7 | 12.5 | |V |52253. | | 140.9 |50 | |N0002 06286| +790041 |VW Tel |181905.1-565447 |SRA | 12.4 | 14.6 | |V |52759. | | 73.9 | | |N0002 06286| +790044 |VZ Tel |181916.0-520630 |SRB | 9.9 | 11.9 | |V | | | 82.4 | |Me |N0002 06286| +790049 |XX Tel |182910.1-564200 |SRB | 12.2 | 12.9 | |V | | | 46. : | | |10201 06286| +790053 |YZ Tel |183613.3-503814 |SR | 12.1 | 13.0 | |V | | | 73. : | | |10201 2MASS| +790055 |AA Tel |183735.1-524743 |SRB | 12.5 | 12.9 | |V | | | 105. | | |00001 06286| +790056 |AB Tel *|183735.3-505736 |EW | 12.3 | 13.0 | 12.9 |V |51956.446 | | 0.326000 | | |N0002 06286| +790057 |AC Tel |183916.8-563944 |SRA | 11.9 | 13.8 | |V |52954. | | 252. | | |10201 06286| +790058 |AD Tel |183930.2-513009 |LB | 12.5 | 13.5 | |V | | | | | |00629 06286| +790059 |AE Tel |183942.7-531336 |SRB | 11.9 | 13.0 | |V | | | 76. : | | |10201 06286| +790060 |AF Tel |184039.2-560601 |SRB | 11.6 | 12.6 | |V | | | 96. : | | |10201 06286| +790061 |AG Tel *|184112.8-515750 |SRA | 11.4 | 12.7 | |V |52453. | | 115. | |Me |10201 2MASS| +790062 |AH Tel |184200.5-502138 |SRB | 12.3 | 13.8 | |V | | | 143. | | |N0002 06286| +790063 |AI Tel |184201.9-500630 |SRA | 11.9 | 12.4 | |V |52713. | | 55. | | |10201 06286| +790065 |AL Tel |184434.8-532815 |SRA | 11.8 | 13.5 | |V |52868. | | 63.4 | | |10201 06286| +790067 |AN Tel *|184639.0-552113 |SRB | 10.5 | 11.0 | |V | | | 235. | | |10201 06286| +790068 |AO Tel |184630.5-504204 |SRB | 10.7 | 12.0 | |V | | | 121. : | | |10201 02383| +790069 |AP Tel |184748.0-553305 |M | 10.7 |< 14.5 | |V |52930. | | 156. | |Me |10201 06286| +790072 |AS Tel |184931.3-491517 |M | 11.3 |< 14.6 | |V |52032. | | 183. | | |10201 06286| +790074 |AU Tel |185003.7-495601 |SRA | 11.4 | 13.1 | |V |52787. | | 159. | |Me |10201 06286| +790076 |AW Tel *|185105.2-521139 |EA | 12.2 | 13.4 | 12.3 |V |51956.874 | | 1.188490 |13 | |N0002 06286| +790077 |AX Tel *|185249.1-564032 |CWA | 12.2 | 13.2 | |V |51976.0 | | 9.90808 |45 | |N0002 06286| +790078 |AY Tel |181526.1-542953 |M | 11.3 |< 14.5 | |V |52839. | | 221. | |Me |10201 06286| +790081 |BC Tel |182404.9-502708 |M | 10.9 |< 13.9 | |V |52756. | | 176. | | |10201 02386| +790082 |BD Tel |182537.3-510033 |M | 11.8 |< 14.8 | |V |52581. | | 218.2 | | |N0002 06286| +790083 |BE Tel |182719.9-500549 |M | 11.5 |< 14.3 | |V |52089. | | 173. | |Me |10201 06286| +790085 |BG Tel |182757.4-533507 |M | 11.2 |< 14.1 | |V |52171. | | 245. | |Me |10201 2MASS| +790086 |BH Tel |184931.7-495430 |M | 10.0 |< 14.3 | |V |52912. | | 217. | |M0e-M2(Ib)pe |10201 04256| +790087 |BI Tel *|181817.6-532220 |CWB | 11.8 | 13.1 | |V |51951.940 | | 1.166490 |20 | |N0002 06286| +790088 |BK Tel |184740.5-460817 |M | 10.4 | 13.0 | |V |52509. | | 153. |56 | |10201 02339| +790089 |BL Tel *|190638.1-512503 |EA+SRD | 7.09 | 9.41 |( 0.1 )|V |45589. | | 778.3 |10 *|F5Iab/b+M |N0032 CoD | +790090 |BM Tel |190741.0-500242 |M | 11.4 |< 14.5 | |V |53088. | | 391. | |Me |10201 2MASS| +790091 |BN Tel |190949.9-480923 |M | 10.3 | 14.1 | |V |52878. | | 282. | |Me |10201 CoD | +790092 |BO Tel *|191552.0-545119 |CWA | 12.01 | 13.4 | |V |52102.6 | | 14.81659 |42 |F5e |00001 02339| +790093 |BP Tel |200949.7-554801 |M | 11.0 |< 15.0 | |V |52570. | | 237. | | |N0002 2MASS| +790094 |BQ Tel |202102.5-561102 |M | 9.6 |< 14.8 | |V |52465. | | 287.7 | |M5e |N0002 GSC | +790095 |BR Tel |202359.9-525212 |SRD | 9.6 | 10.9 | |V | | | 107. : | |G5 |10201 CPD | +790104 |CC Tel |181206.4-492828 |M | 11.8 |< 15.0 | |V |53081. | | 425. : | | |00001 2MASS| +790121 |CU Tel |181731.1-494438 |SRB | 12.0 | 12.5 | |V | | | 255. | | |00001 06286| +790165 |EV Tel |183355.3-512111 |RRAB | 12.3 | 13.8 | |V |52838.805 | | 0.44194 |10 | |10201 06286| +790171 |FG Tel |183603.5-502027 |M | 12.2 |< 15.3 | |V |52191. | | 177. | | |10201 06286| +790181 |FR Tel |184149.6-515126 |SRA | 12.0 | 13.8 | |V |52500. | | 174. | |Me |10201 N0034| +790184 |FU Tel |184323.7-545850 |RRAB | 12.5 | 13.8 | |V |52104.647 | | 0.35969 |11 | |10201 06286| +790200 |GR Tel |185222.3-530950 |RRAB | 12.4 | 13.4 | |V |52888.623 | | 0.61196 |25 | |10201 UCAC2| +790201 |GS Tel |183133.6-475242 |M | 12.1 |< 15.2 | |V |51985. | | 329. | | |10201 02383| +790203 |GU Tel |183529.3-494630 |M: | 12.5 |< 13.8 | |V |52178. | | 166. : | | |10201 06286| +790204 |GV Tel |190220.1-473144 |M | 11.4 |< 15.4 | |V |52690. | | 261. | |Me |10201 02383| +790205 |GW Tel |193012.8-451733 |M | 11.3 |< 14.6 | |V |52193. | | 146. | | |10201 02383| +790206 |GX Tel |201148.3-552527 |M | 11.5 |< 15.0 | |V |53042. | | 345. | |M8e |73014 02386| +790207 |GY Tel *|185540.0-480531 |EB | 11.43 | 12.53 | 11.83 |V |46973.7640 | | 0.4460348 | | |N0035 02383| +790208 |GZ Tel |193646.1-504740 |RRAB | 11.7 | 13.0 | |V |52122.650 | | 0.455353 |15 | |N0002 02383| +790209 |HH Tel *|193320.3-453949 |RRAB | 11.6 | 12.7 | |V |53232.676 | | 0.482092 |17 | |N0002 02383| +790210 |HI Tel |185522.6-524504 |RVA | 10.6 | 11.9 | |V |52955.5 | | 66.5 | | |10201 06561| +790211 |HK Tel |190650.0-522943 |SRB | 10.6 | 13.0 | |V | | | 97. | | |N0002 06561| +790212 |HL Tel |193105.6-502347 |M | 10.9 |< 14.3 | |V |52718. | | 209. | |M0e |10201 06561| +790213 |HM Tel *|193410.5-491046 |EA | 12.0 | 13.8 | 12.3 |V |52192.545 | | 6.2318 | | |10201 06561| +790214 |HN Tel |193704.1-525819 |RRAB | 11.55 | 12.7 | |V |52950.563 | | 0.600370 |15 | |N0002 02383| +790215 |HO Tel *|195158.9-465142 |EA | 8.22 | 8.73 | 8.67 |V |52202.506 | | 1.613101 |12 |A7III(m) |00001 CoD | +790225 |HY Tel *|200813.4-551402 |RRAB | 11.95 | 13.2 | |V |52855.713 | | 0.402725 |11 | |N0002 04001| +790234 |IQ Tel *|201922.0-554845 |EB | 12.1 | 13.1 | 12.4 |V |51873.828 | | 0.736550 | | |N0002 04001| +790236 |IS Tel *|202142.7-494855 |EA | 9.67 | 10.40 | 9.82 |V |52985.526 | | 1.152800 |17 |F5V |00001 06561| +790243 |IZ Tel *|202843.6-562043 |EA | 12.0 | 14.2 | 12.2 |V |51877.040 | | 4.880179 |10 *| |N0002 04001| +790269 |LU Tel |182108.3-463257 |EA | 12.4 | 13.5 | |V |52086.66 | | 1.57173 |15 | |10201 03776| +790282 |MT Tel *|190212.3-463912 |RRC | 8.68 | 9.28 | |V |48500.270 | | 0.3169 |35 |A0w |HIP 04001| +790293 |NR Tel |183112.9-490459 |M | 10.7 | 14.8 | |V |52839. | | 196. | | |10201 05829| +790294 |NS Tel *|191507.8-533239 |EB | 9.2 | 10.0 | 9.8 |V |52764.796 | | 1.3397 | |A5V |N0009 CPD | +790295 |NT Tel |192252.1-502323 |M | 10.3 |< 14.4 | |V |52152. | | 261. | |S1,9e-S5,9e |10201 2MASS| +790296 |NU Tel |181258.9-550815 |SRA | 12.3 | 13.5 | |V |52841. | | 61. | | |10201 06286| +790297 |NV Tel *|181731.0-483555 |EA | 9.70 | 10.35 | 9.83 |V |52179.524 | | 3.544966 |07 |B9IV |00001 06871| +790298 |NW Tel |181943.9-511553 |RVA | 11.0 | 12.1 | |V |52184.5 | | 68.9 | |F7-F8 |10201 06871| +790299 |NX Tel |184611.1-482540 |SR | 11.5 | 13.7 | |p |52924. | | 277. | |Me |00001 2MASS| +790300 |NY Tel |190602.2-471435 |SRB | 10.4 | 11.4 | |V | | | 75. : | |Me |10201 05557| +790301 |NZ Tel |192301.6-483552 |M | 10.7 | 14.7 | |V |52931. | | 195. | |Me |10201 06031| +790303 |OP Tel |182313.2-470605 |M | 12.0 |< 14.3 | |V |52487. | | 162. | | |10201 04001| +790308 |OU Tel |184515.5-491359 |SRA | 10.8 | 11.7 | |V |52935. | | 75. | | |10201 06561| +790310 |OW Tel |185424.9-460836 |M | 10.6 | 14.3 | |V |52878. | | 225. | |Me |10201 06031| +790311 |OX Tel |191455.9-473505 |M | 11.5 |< 14.4 | |V |53075. | | 290. | | |10201 2MASS| +790312 |OY Tel |193928.7-525124 |SRA | 9.5 | 10.7 | |V |52195. | | 123. | |M5/7 |10201 CoD | +790315 |PQ Tel |191025.4-511518 |M | 10.7 |< 14.5 | |V |52741. | | 240. | |Me |10201 06031| +790316 |PR Tel *|192940.8-521950 |EB | 11.1 | 11.6 | 11.4 |V |51965.320 | | 0.590637 | |F |N0002 08266| +790320 |PV Tel *|182314.7-563744 |PVTEL | 9.24 | 9.40 | |V | | | | |B5p(He) |04509 CPD | +790321 |PW Tel |193321.6-451618 |ACV | 5.61 |( 0.011 )| |V | | | 2.9213 | |A0p(Cr-Eu-Sr) |09919 CoD | +790323 |PY Tel |182236.3-484532 |SRA | 10.6 | 12.4 | |V |52814. | | 266. |32 | |10201 06561| +790324 |PZ Tel |185305.9-501050 |BY | 8.33 | 8.63 | |V | | | 0.94088 | |K0Vp |HIP CoD | +790325 |QQ Tel |193941.8-451643 |DSCTC | 6.53 |( 0.050 )| |B | | | 0.065 | |F2/3IV/III |67245 CoD | +790326 |QR Tel *|202411.8-514325 |ACVO | 9.19 |( 0.01 B )| |V | | | | |A9pSrCrEu |71157 CPD | +790330 |QV Tel |181707.5-560124 |BE | 5.31 | 5.38 | |Hp| | | | |B3IIIe |HIP HIP | +790331 |QW Tel *|182209.9-553351 |EW | 7.55 | 7.69 | 7.67 |V |52445.656 | | 0.411930 | |F8/G0 |00001 HIP | +790332 |QX Tel |182317.9-532536 |SRD: | 8.62 | 8.78 | |Hp| | | 28.3 | |K0III |00001 HIP | +790333 |QY Tel *|184029.1-454452 |EA | 9.58 | 10.07 | 10.06 |V |51957.064 | | 2.488926 |12 |F8 |N0002 HIP | +790334 |QZ Tel *|184323.8-525142 |EB | 8.07 | 8.27 | 8.27 |V |52831.746 | | 1.0309913 | |A2V |00001 HIP | +790335 |V0335 Tel |185750.4-464411 |LB: | 8.06 | 8.17 | |Hp| | | | |M2/M3III |HIP HIP | +790336 |V0336 Tel |191612.3-471628 |BY: | 11.69 | 12.03 | |Hp| | | | |M |HIP HIP | +790337 |V0337 Tel *|192627.7-454527 |EW | 9.90 | 10.21 | 10.20 |V |51963.442 | | 0.423389 | |F5V |N0002 HIP | +790338 |V0338 Tel |192711.8-562956 |LB | 8.47 | 8.63 | |Hp| | | | |M0III |HIP HIP | +790339 |V0339 Tel |193157.1-540955 |SRS | 6.80 | 7.02 | |V | | | 24.20 | |M4III |00001 HIP | +790340 |V0340 Tel *|194134.1-464613 |BY: | 9.65 | 9.84 | |V | | | 1.71966 | |K0V |HIP HIP | +790341 |V0341 Tel |194313.7-561537 |LB | 7.19 | 7.56 | |Hp| | | | |M5/M6III |HIP HIP | +790342 |V0342 Tel |194847.1-493130 |LB | 7.84 | 7.97 | |Hp| | | | |M3III |HIP HIP | +790343 |V0343 Tel *|195003.5-514646 |EB | 9.11 | 9.44 | 9.40 |V |51874.858 | | 0.875460 | |A2/A3V |N0002 HIP | +790344 |V0344 Tel |195413.5-492742 |SRS | 8.6 | 9.0 | |V | | | 27.4 | |M6III |N0002 HIP | +790345 |V0345 Tel |200040.1-493631 |LB | 6.62 | 6.72 | |Hp| | | | |M4III |HIP HIP | +790346 |V0346 Tel |200403.3-511245 |LB | 8.96 | 9.55 | |V | | | | |M4/M5III |00001 HIP | +790347 |V0347 Tel |202437.5-495335 |LB | 8.36 | 8.68 | |Hp| | | | |M3III |HIP HIP | +790348 |V0348 Tel |202741.2-494601 |LB: | 8.49 | 8.64 | |Hp| | | | |M3III |HIP HIP | +790349 |V0349 Tel *|195008.4-503609 |GDOR: | 7.60 | 7.73 | |Hp| | | 0.6953 | |F0V |75029 CoD | +790350 |V0350 Tel |201819.3-510513 |ACV | 7.55 |( 0.03 U )| |V | | | 4.45 | |B9CrEuSr |75026 CoD | +790351 |V0351 Tel *|184400.5-492053 |EA | 10.05 | 10.52 | 10.27 |V |52104.601 | | 6.4478 |07 |A9IV |78011 CoD | +790352 |V0352 Tel |184720.6-473806 |M | 10.5 |< 13.0 | |V |53261. | | 382. | |Me |N0002 GSC | +790353 |V0353 Tel |184957.3-520719 |ELL:+DSCTC| 7.13 | 7.20 | |Hp| | | 3.2 | |A3III/IV |78024 DM | +790354 |V0354 Tel |182718.7-483259 |EA | 11.60 | 12.92 | 11.90 |V |51981.962 | | 5.23975 |08 | |79018 79071| +790355 |V0355 Tel |182911.9-505819 |EA | 11.97 | 12.50 | 12.10 |V |52114.769 | | 0.838637 |16 | |79003 79010| +790356 |V0356 Tel *|183718.6-515433 |EA | 9.64 | 9.89 : | 9.89 : |V |52124.556 | | 23.1868 |03 : |F2 |79004 DM | +790357 |V0357 Tel |183836.2-484826 |EA | 12.38 | 14.6 | 12.5 |V |52811.846 | | 2.96857 |13 | |79018 79071| +790358 |V0358 Tel *|183836.4-535228 |EA | 11.79 | 12.3 | 12.28 |V |52739.824 | | 3.45563 |06 | |79009 DM | +790359 |V0359 Tel *|184423.7-465727 |EA | 8.54 | 8.83 | 8.66 |V |48315.454 | | 19.2449 |02 : |B9V |79193 DM | +790360 |V0360 Tel |184938.0-474739 |EA | 11.78 | 12.28 | 11.88 |V |51962.854 | | 1.3675 |10 | |79004 79063| +790362 |V0362 Tel *|185404.9-513058 |EA | 9.68 | 9.96 | 9.96 : |V |48017.991 | | 1.21125 |08 |G3V |79006 DM | +790363 |V0363 Tel |191012.7-474219 |EA | 11.37 | 12.13 | 11.44 |V |52875.681 | | 2.67524 |12 | |79018 79233| +790364 |V0364 Tel |193922.5-523748 |EA | 11.36 | 11.9 | 11.4 : |V |52095.622 | | 11.2359 |04 : | |79011 DM | +790365 |V0365 Tel |194217.1-454622 |LB | 9.8 | 10.6 | |V | | | | | |79100 79118| +790367 |V0367 Tel |195044.9-512043 |LB | 10.8 | 11.7 | |V | | | | | |79100 79204| +790368 |V0368 Tel |195349.9-500329 |EW | 11.25 | 12.37 | 11.95 |V |52202.550 | | 0.286829 | | |79011 79118| +790369 |V0369 Tel |201828.0-494256 |SRB | 9.6 | 11.4 | |V | | | 89. | |Mb |79100 79095| +790374 |V0374 Tel *|184035.3-535032 |RR(B) | 12.27 | 13.42 | |V | | | 0.35636 | | |80132 GSC | NL80_3 +790376 |V0376 Tel |184740.4-483603 |CWA | 11.32 | 12.65 | |V |53886.87 | | 14.3116 |35 | |80135 GSC | NL80_3 +790381 |V0381 Tel *|195612.0-504346 |RR(B) | 12.05 | 12.80 | |V | | | 0.34778 | | |80300 GSC | NL80_3 +790382 |V0382 Tel |200955.2-455947 |RS | 9.26 | 9.50 | |V | | | 10.695 | |K0III |80001 DM | NL80_3 +800001 |R Tri *|023702.3+341551 |M | 5.4 | 12.6 | |V |45215. | | 266.9 |44 |M4IIIe-M8e |00001 00002| +800002 |S Tri *|022719.5+324423 |M | 8.9 |< 12.4 | |V |35850. | | 241.6 |48 |M2e |00001 06286| +800003 |T Tri *|015647.0+340112 |M | 10.0 |< 14. | |V |38294. | | 324.0 | |M8e |00001 00528| +800004 |U Tri *|015531.4+334608 |RRAB | 11.88 | 13.20 | |V |19100.2275 | | 0.44725300 |16 |A8-F5 |03506 06286| +800005 |V Tri *|013147.1+302202 |EB/SD | 10.7 | 11.8 | 11.0 |V |24474.305 | | 0.5852057 | |A3 |00001 06286| +800006 |W Tri |024130.6+343058 |SRC | 8.5 | 9.7 | |p | | | 108. | |M5II |00634 03746| +800007 |X Tri *|020033.7+275319 |EA/SD | 8.55 | 11.27 | 9.07 |V |42502.721 | | 0.9715352 |18 |A5V+G0V |00001 10044| +800009 |Z Tri |020750.9+275615 |M | 11.2 | 14.8 | |p |32915. | | 216.1 | |M2e |00001 06286| +800010 |RR Tri |023225.9+353336 |S: | 11.9 | 12.9 | |p | | | | | |00635 | +800011 |RS Tri *|013449.2+293521 |EA/DM | 10.27 | 11.0 | 10.4 |V |37940.490 | | 1.9089234 |22 |A5V |03432 00318| +800012 |RT Tri |022119.6+315258 |M | 12.5 |< 15.5 | |p |32835. | | 115.4 | | |02931 00542| +800013 |RU Tri *|020021.2+351713 |EA | 11.6 | 12.3 | 11.8 : |p |51461.75 | | 3.26818 |18 *|G0 |00001 00819| +800014 |RV Tri |021318.2+370102 |EA/SD | 11.5 | 13.3 | |p |46033.308 | | 0.75366648 |14 |F9+K2 |00001 00819| +800015 |RW Tri *|022536.2+280551 |EA/WD+NL | 12.50 | 15.61 |( 0.16 J)|V |43512.6615 | | 0.231883276 |07 |pec(cont+e)+M0V |00001 09472| +800016 |RX Tri *|023927.1+351850 |SRA | 11.8 | 13.2 | |p |39842. | | 192. | |M5 |00821 02378| +800021 |SU Tri |021810.3+314457 |LB: | 10.6 | 11.4 | |p | | | | |S5,1 |04187 BD | +800032 |TY Tri |020327.7+323957 |E | 11.2 | 12.1 | |p |43868.449 | | | | |04364 04364| +800033 |TZ Tri *|021222.3+301811 |ELL/RS | 5.19 |( 0.09 )| |V |43729.8 | | 14.732 | |G5III+G5III: |08538 BD | +800035 |UV Tri |013200.1+302157 |DSCTC | 11.2 |( 0.07 )| |V | | | | | |67339 | +800037 |UX Tri |014535.0+312250 |RRAB | 10.5 | 11.5 | |p | | | | | |69005 69005| +800039 |UZ Tri |015824.7+333131 |N: |>14.2 | 21.0 : | |p | | | | | |69005 69005| +800045 |WW Tri |022323.6+370138 |EA | 12.2 | 12.7 | |p | | | | | |69005 69278| +800049 |XX Tri |020347.1+353529 |RS | 8.1 | 8.7 | |V | | | | | |71008 BD | +800052 |YY Tri |021806.0+283645 |M | 5.84 | 7.72 | |K | | | | | |73014 2MASS| +800053 |YZ Tri |013354.4+353630 |SRB | 6.90 | 7.02 | |Hp| | | | | |HIP HIP | +800054 |ZZ Tri |015137.9+334646 |LB: | 8.75 | 8.85 | |Hp| | | | | |HIP HIP | +800055 |AA Tri |015803.8+310804 |SRB | 6.56 | 6.74 | |Hp| | | | | |HIP HIP | +800056 |AB Tri |020937.4+370659 |EB: | 8.28 | 8.38 | |Hp| | | | | |HIP HIP | +800057 |AC Tri |021253.6+351920 |LB: | 9.15 | 9.33 | |Hp| | | | | |HIP HIP | +800058 |AD Tri |021757.3+290026 |LB: | 6.70 | 6.78 | |Hp| | | | | |HIP HIP | +800059 |AE Tri |022510.0+335200 |SRB: | 6.96 | 7.14 | |Hp| | | | | |HIP HIP | +800060 |AF Tri |022714.9+365802 |LB | 7.30 | 7.67 | |Hp| | | | | |HIP HIP | +800061 |AG Tri |022729.3+305825 |BY: | 10.19 | 10.29 | |Hp| | | | | |HIP HIP | +800062 |AH Tri |024031.3+360021 |SRD | 8.24 | 8.44 | |Hp| | | | | |HIP HIP | +800064 |AK Tri |022438.9+331558 |EW | 12.0 |( 0.34 )| |V | | | | | |75268 75269| +800067 |AN Tri |021315.8+335751 |SR: | 12.4 | 13.4 | |V | | | | | |77004 UCAC2| +800068 |AO Tri |021929.4+280413 |SR: | 12.5 | 13.8 | |V | | | | | |77004 77021| +800071 |AR Tri |013442.6+302528 |DSCTC: | 10.60 | 10.63 | |V | | | 0.045 | | |78022 GSC | +800072 |AS Tri |020358.2+295418 |DSCTC | 8.25 |( 0.09 )| |V | | | 0.08 | |F0 |78033 DM | +800075 |AV Tri |020806.5+352353 |EB: | 11.90 | 12.5 : | 12.05 |* |51437.733 | | 0.88198 | | |79006 79017| +800081 |BC Tri *|013551.2+301929 |EW: | 11.9 | 12.1 | 12.08 |* |51480.747 | | 0.7078 | | |80085 80085| NL80_1 +800085 |BG Tri |014447.6+323300 |NL | 12.0 | 12.6 | |* | | | | | |80096 80096| NL80_1 +800087 |BI Tri *|015308.1+311601 |EW | 12.3 | 12.65 | 12.65 |* |51491.652 | | 0.54934 | | |80052 80052| NL80_1 +800088 |BK Tri |015337.5+332508 |SR | 9.91 | 10.14 | |* |51520. | | 90. | | |80070 80070| NL80_1 +800089 |BL Tri |015339.2+295757 |EA/RS | 12.5 | 12.8 | |* |51507.55 | | 7.036 |05 | |80063 80063| NL80_1 +800091 |BN Tri |015458.0+294737 |DSCT | 12.15 | 12.35 | |* |51513.544 | | 0.070037 |36 | |80103 80103| NL80_1 +800092 |BO Tri *|015631.9+310805 |EA | 11.9 | 12.24 | 12.0 |* |51492.12 | | 2.012 |10 | |80104 80104| NL80_1 +800094 |BQ Tri *|020647.3+334942 |EW | 12.5 | 12.85 | 12.8 |* |51482.715 | | 0.4958 | | |80101 80101| NL80_1 +800101 |BX Tri *|022050.8+332048 |EW: | 12.35 | 12.70 | 12.60 |* |51566.6629 | | 0.192634 | | M |80001 GSC | NL80_1 +800102 |BY Tri |022133.3+340445 |RS | 9.70 | 9.83 | |* | | | 3.6159 | | G0 |80021 GSC | NL80_1 +800103 |BZ Tri |022226.7+292911 |EA | 11.8 | 12.5 | |V |51481.429 | | 2.94935 |06 | |80063 80063| NL80_1 +800105 |CD Tri *|022430.2+350810 |EB | 12.14 | 12.65 | 12.3 |V |52931.3523 | | 0.36907 | | |80057 GSC | NL80_1 +800106 |CE Tri |022529.1+304151 |RS | 11.3 | 11.6 | |* | | | 5.095 | | |80115 80115| NL80_1 +800107 |CF Tri |022532.1+323828 |SR | 10.55 | 10.76 | |* | | | 49. | | |80070 80070| NL80_1 +800108 |CG Tri |022708.4+342321 |RS | 11.69 | 12.07 | |V | | | 3.1078 | | |80057 GSC | NL80_1 +800109 |CH Tri |022734.8+285830 |RS | 9.87 | 9.99 | |* | | | 4.3104 | | G0 |80021 DM | NL80_1 +800110 |CI Tri |022842.4+342950 |LB | 10.91 | 11.25 | |V | | | | | |80057 GSC | NL80_1 +800111 |CK Tri |022936.4+342343 |RS | 11.70 | 11.86 | |* | | | 2.7458 | | |80021 GSC | NL80_1 +800112 |CL Tri *|022941.0+315940 |EA | 11.7 | 12.15 | 12.07 |* |51492.989 | | 0.57877 |14 | |80052 80052| NL80_1 +800114 |CN Tri *|023215.2+301652 |EW | 12.0 | 12.3 | 12.25 |* |51501.705 | | 0.36706 | | |80101 80101| NL80_1 +800115 |CO Tri |023228.2+321136 |CWA: | 11.7 | 11.9 | |* |51491.0 | | 15.3 |55 | |80116 80116| NL80_1 +800116 |CP Tri *|023428.7+344255 |EA | 10.85 | 11.65 | 10.95 |* |51521.683 | | 13.620 |03 | |80121 GSC | NL80_1 +800117 |CQ Tri |023503.8+313922 |RS | 10.41 | 10.58 | |* | | | 1.2771 | | G0 |80021 DM | NL80_1 +800119 |CS Tri *|023824.8+320742 |EW | 11.15 | 11.4 | 11.4 |* |51494.82 | | 0.6633 | | |80102 80102| NL80_1 +800121 |CU Tri |024000.4+351817 |EA | 12.25 | 12.60 | |* |51461.657 | | 2.5785 |11 | |80033 80033| NL80_1 +809001 |alf Tri *|015304.9+293444 |ELL | 3.52 | 3.53 | |Hp| | | | | |HIP HIP | +810001 |R TrA *|151945.7-662946 |DCEP | 6.33 | 7.00 | |V |40838.21 | | 3.389287 |30 |F6Ib/II-G0 |02309 08667| +810002 |S TrA |160110.7-634636 |DCEP | 5.95 | 6.81 | |V |40734.45 | | 6.32344 |28 |F6II-G2 |02309 08953| +810003 |T TrA |150936.5-684317 |CST: | 6.84 | | |V | | | | |B9IV | CPD | +810004 |U TrA *|160719.0-625438 |CEP(B) | 7.30 | 8.29 | |V |43267.14 | | 2.568423 |34 |F5-F8Ib/II |09918 08953| +810005 |V TrA |165006.6-674658 |LB | 10.0 | 10.7 | |p | | | | |C5,5(Nb) |00016 09611| +810006 |W TrA |165200.6-675914 |M | 9.4 | 12.5 | |p |11441. | | 248.7 | |Me |00031 09611| +810007 |X TrA |151419.2-700446 |LB | 5.02 | 6.4 | |V | | | | |C5,5(Nb) |00624 03470| +810008 |Y TrA |161409.2-620547 |M | 11.0 | 16.0 | |p |24710. | | 323. | |S4,1 |00424 06286| +810009 |Z TrA |165446.8-651207 |M | 9.8 |< 12.5 | |p |29710. | | 150.55 | |M3e-M5IIe |00624 08953| +810010 |RR TrA *|161822.7-624415 |EA/SD | 10.36 | 11.85 | 10.60 |V |35629.36932 | | 0.71309172 |20 *|B8 |09928 06286| +810011 |RS TrA |162158.4-612709 |M: | 10.1 |< 11.5 | |p |24408. | | 436.4 | |Me |01000 08953| +810012 |RT TrA |163430.9-630801 |CWB | 9.43 | 10.18 | |V |41922.54 | | 1.9461124 |40 |F8:(R)-G2I-II |00001 06286| +810013 |RU TrA |163827.8-683230 |M | 9.8 |< 13.5 | |p |15214. | | 326.5 | |M4e |00031 05834| +810014 |RV TrA |153205.6-623319 |LB: | 12.0 | 13.74 | |B | | | | |Np |02132 06286| +810015 |RW TrA *|170046.7-663950 |RRAB | 10.89 | 11.66 | |V |41489.292 | | 0.3740438 |20 |F5-F6 |00001 06286| +810016 |RX TrA |153352.6-605000 |M | 12.0 | 15.5 | |p |25382. | | 274. | | |00424 06286| +810019 |SS TrA |153921.6-605338 |EA/SD: | 10.5 | 11.3 | |p |28387.28 | | 1.72043 | | |00016 06286| +810025 |SY TrA |154644.6-620023 | | 12.4 | 14.5 | |p | | | | | |00424 06286| +810027 |TT TrA |154917.3-625612 |RR: | 12.5 | 13.2 | |p | | | | | |00424 06286| +810031 |TX TrA |155201.2-623201 |M | 11.5 | 16.5 | |p |24680. | | 276. | | |00424 06286| +810048 |WZ TrA |160138.6-650024 |E/SD: | 12.3 | 13.4 | |p | | | | | |00424 06286| +810084 |BF TrA |161848.3-622547 |S: | 12.1 | 12.7 | |p | | | | | |00424 06286| +810142 |DT TrA |163732.8-650442 |M | 12.5 | 16.1 | |p |24710. | | 297. | |Me |00424 06286| +810150 |EF TrA |164034.1-681506 |M | 9.2 | 11.9 : | |V |54686. | | 219.0 |45 |Me |00001 08661| +810151 |EG TrA |151801.1-653100 |EA/SD: | 10. | 11.5 | |p | | | | |B9-A1V |00085 08667| +810152 |EH TrA *|161833.8-694357 |EA/SD | 11.3 | 13.6 | |V |34239.430 | | 3.83301 |42 *| |00080 03784| +810153 |EI TrA |162623.8-653012 |M | 11.5 |< 13.5 | |p | | | | |Me |00085 02382| +810154 |EK TrA *|151400.4-650536 |UGSU | 10.4 |< 15.0 | |V | | |( 231. ) | | |09276 08852| +810155 |EL TrA *|161321.3-695804 |EB/KE | 10.8 | 11.2 | 10.9 |V |40381.97915 | | 0.54550918 | | |00001 02382| +810156 |EM TrA *|145633.2-680835 |EB/KE | 10.1 | 10.5 | 10.4 |p |38232.773 | | 1.03026 | | |04181 03776| +810157 |EN TrA *|145700.7-685023 |CEP: | 8.7 | 9.1 | |p |41785.0 | | 36.54 |32 |F2Ib |03939 09423| +810158 |EO TrA |154913.3-641847 |EA/SD | 11.4 | 13.5 | |p |15499.680 | | 2.141744 |13 *| |08040 02834| +810159 |EP TrA *|154926.2-641557 |EA/D | 9.4 | 9.9 | 9.5 |p |38204.360 | | 2.14165 |16 |B9III |04399 08953| +810160 |EQ TrA *|161000.0-660930 |EA/D | 8.9 | 9.5 | 9.0 |p |41100.006 | | 2.709149 |20 *|F3V |00001 08953| +810170 |FF TrA |162626.4-605438 |EA/SD: | 12.3 | 13.5 | |p |36695.379 | | 2.422 | | |08121 04001| +810182 |FS TrA |164311.7-663734 |M | 11.5 |< 14.5 | |V |54518. | | 272.6 | | |00001 08661| +810186 |FW TrA |165403.5-645935 |SR | 11.5 | 12.5 | |p | | | | | |06561 06561| +810188 |FY TrA |170117.3-661055 |M | 12.4 |< 15.5 | |p |36820. | | 223. | |Me |04489 04489| +810196 |GN TrA *|154859.2-664429 |EA/KE | 11.7 | 12.1 | 12.0 |p |28664.350 | | 0.614605 | | |03948 02382| +810199 |GQ TrA |162120.0-655149 |EA/SD: | 9.89 | 10.78 | |V |16166.795 | | 2.33947 | |A3V |08040 CPD | +810210 |HI TrA |154233.3-664956 |M: | 11.6 | 17. | |p | | | | | |05829 05829| +810211 |HK TrA |154230.8-653847 |M | 11.0 | 18. | |p | | | | |Me |05834 05834| +810212 |HL TrA |155135.2-641701 |M | 12.0 | 17.3 | |p | | | | |Me |05834 05834| +810214 |HN TrA |163609.8-651113 |M | 12.2 | 17.5 | |p | | | | |Me |05834 05834| +810215 |HO TrA |164453.0-695923 |LB | 12. | 13.5 | |p | | | | | |06561 05937| +810216 |HP TrA *|152606.5-632538 |E | 8.2 | 8.6 | |p |38196.250 | | 2.75815 | |B5III |06336 06336| +810233 |IP TrA |152710.9-615136 |M | 11.2 |< 13.5 | |p | | | | |Me |05834 05834| +810234 |IQ TrA |153659.1-645349 |EA | 9.9 | 10.3 | |p | | | | | |06318 06318| +810236 |IS TrA |160911.8-691659 |M: | 11.9 |< 13.5 | |p | | | | |Me |05834 05834| +810238 |IU TrA |162815.9-653911 |M | 11.7 |< 15. | |p | | | | |Me |05834 05834| +810243 |IZ TrA |154240.4-655528 |LB | 9.7 | 10.5 | |p | | | | |M6III |09956 CPD | +810244 |KK TrA |154700.1-654359 |L | 9.5 | 10.5 | |p | | | | | |00085 CoD | +810246 |KM TrA |163302.2-673519 |SR: | 11.4 | 12.5 | |p | | | | | |02554 05829| +810247 |KN TrA |163235.6-603235 |IS: | 12.5 | 13.5 | |p | | | | | |08121 04001| +810252 |KS TrA |151341.8-684429 |M: | 12.4 | 15. | |p | | | | |M4e |04618 UCAC2| +810253 |KT TrA |153207.5-664246 |M: | 11.7 | 17.3 | |p | | | | | |04618 05834| +810257 |KX TrA *|164435.5-623714 |ZAND: | 10.1 | 13.6 | |B | | | | |pec(e) |07930 08077| +810260 |LL TrA |160833.0-625855 |ACV | 6.88 |( 0.028 )| |V | | | 4.41 | |B9p(Si) |08415 CPD | +810261 |LM TrA *|162033.6-683416 |M | 10.8 |< 15.0 | |V |55038. | | 205.7 | | |00001 UCAC2| +810264 |LP TrA *|164640.0-670635 |ACV | 5.12 |( 0.033 )| |V | | | 3.76 | |A0p(Si) |08415 CPD | +810265 |LQ TrA |164804.7-651224 |M | 11.4 |< 15.5 | |V |54625. | | 203. | | |00001 08661| +810266 |LR TrA |153049.8-653558 |DCEPS | 7.73 | 7.92 | |V | | | | | |67346 CPD | +810267 |LS TrA |152745.7-630114 |RS | 7.30 | 7.53 | |V | | | | | |69011 CPD | +810268 |LT TrA |160349.3-624136 |WR | 10.2 |( 0.13 )| |V | | | | | |69064 69224| +810270 |LV TrA |163545.8-670737 |RCB: | 8.28 | 8.35 | |V | | | | | |70066 70133| +810271 |LW TrA |150816.7-685950 |LB: | 8.55 | 8.68 | |Hp| | | | | |HIP HIP | +810272 |LX TrA |152733.1-643153 |SRD: | 5.81 | 5.83 | |Hp| | | | | |HIP HIP | +810273 |LY TrA |153450.3-685321 |LB | 7.10 | 7.29 | |V | | | | | |HIP HIP | +810274 |LZ TrA |153652.7-672905 |LPB | 8.05 | 8.08 | |Hp| | | | | |HIP HIP | +810275 |MM TrA |155601.7-660909 |BE | 10.45 | 10.60 | |Hp| | | | | |HIP HIP | +810276 |MN TrA |155828.3-620338 |EA | 8.50 | 9.00 | |Hp| | | | | |HIP HIP | +810277 |MO TrA |160125.3-665055 |SRB | 7.16 | 7.42 | |Hp| | | | | |HIP HIP | +810278 |MP TrA |160153.0-642401 |E: | 7.76 | 7.87 | |Hp| | | | | |HIP HIP | +810279 |MQ TrA |160344.5-602955 |BE | 6.86 | 7.25 | |Hp| | | | | |HIP HIP | +810280 |MR TrA |162436.3-654318 |ACV | 8.71 | 8.82 | |Hp| | | | | |HIP HIP | +810281 |MS TrA |162841.3-630836 |ACV: | 8.86 | 8.96 | |Hp| | | | | |HIP HIP | +810282 |MT TrA |163211.7-694556 |LB: | 8.44 | 8.55 | |Hp| | | | | |HIP HIP | +810283 |MU TrA |163921.1-701007 |ACV | 9.27 | 9.34 | |Hp| | | | | |HIP HIP | +810284 |MV TrA |164153.5-632410 |SRD | 9.01 | 9.20 | |Hp| | | | | |HIP HIP | +810285 |MW TrA |164440.5-684817 |LB: | 8.60 | 8.71 | |Hp| | | | | |HIP HIP | +810286 |MX TrA |165934.0-691605 |ACV | 5.75 | 5.77 | |Hp| | | | | |HIP HIP | +810287 |MY TrA |150820.0-700435 |M | 10.8 |< 14.0 | |V |52786 | | 314. | |M5e |78090 USNO | +810288 |MZ TrA *|153434.1-650611 |EA | 8.57 | 8.76 | 8.73 |V |48127.076 | | 4.73065 | |A4V |78011 DM | +810289 |NN TrA |161234.8-663636 |M | 10.4 |< 13.2 | |V |52491 | | 259. | |Me |78090 USNO | +810290 |NO TrA *|162004.5-695748 |EA | 8.67 | 8.86 | 8.85 |V |48022.005 | | 5.66215 | |F6V |78011 DM | +810291 |NP TrA |163305.2-605413 |DSCTC | 7.88 |( 0.03 b )| |V | | | 0.0613 | |A3III |78037 DM | +810294 |NS TrA |150729.8-653414 |EA | 12.30 | 14.3 | 12.33 : |V |52417.590 | | 19.0017 |06 : | |79003 79087| +810295 |NT TrA *|154051.2-614343 |EA | 9.20 | 9.56 | 9.51 |V |52062.557 | | 3.2300 |10 |B9IV |79006 DM | +810296 |NU TrA |163909.3-692425 |EA | 11.72 | 12.75 | 11.85 |V |52439.601 | | 1.92834 |10 | |79009 79106| +810297 |NV TrA |164005.6-625556 |EA | 9.17 | 9.6 : | 9.5 : |V |52860.710 | | 7.9935 |05 |A2mA3-A7 |79018 DM | +810298 |NW TrA |150235.9-681636 |M | 10.6 |< 15.0 | |V |55068. | | 262. | | |80001 2MASS| NL80_2 +810299 |NX TrA |150431.1-682708 |M | 10.7 |< 13.7 | |V |54136. | | 298. | | |80399 80399| NL80_2 +810300 |NY TrA *|150710.9-650940 |M | 10.7 |< 13.0 | |V |55013. | | 342. | | |80001 2MASS| NL80_2 +810301 |NZ TrA |150834.7-654409 |M | 12.5 |< 14.3 | |V |54142. | | 302. | | |80406 80406| NL80_2 +810304 |OQ TrA |151311.1-685120 |M | 12.0 |< 14.5 | |V |55088. | | 213.1 | | |80002 2MASS| NL80_2 +810306 |OS TrA |151555.1-645251 |M | 12.1 |< 14.3 | |V |54643. | | 199. | | |80406 80406| NL80_2 +810307 |OT TrA |151821.9-643209 |M | 11.8 |< 15.3 | |V |54884. | | 236. | | |80001 2MASS| NL80_2 +810310 |OW TrA |152244.8-642428 |M | 12.5 |< 14.8 | |V |54133. | | 280. | | |80406 80406| NL80_2 +810311 |OX TrA |152441.8-651605 |M | 12.4 |< 16.0 | |V |54619. | | 283. | | |80406 80406| NL80_2 +810313 |OZ TrA |152516.4-651210 |M | 12.5 |< 16.0 | |V |54204. | | 252. | | |80406 80406| NL80_2 +810314 |PP TrA |152635.0-625304 |M | 11.0 |< 14.1 | |V |54643. | | 246. | | |80406 80406| NL80_2 +810316 |PR TrA |153055.1-670754 |M | 11.1 |< 13.5 | |V |54594. | | 308. | |M9-M10e |80406 80406| NL80_2 +810317 |PS TrA |153129.2-661435 |M | 12.5 |< 16.3 | |V |54320. | | 240. | | |80406 80406| NL80_2 +810318 |PT TrA |153141.9-653610 |M | 12.0 |< 13.5 | |V |54500. | | 300.2 | | |80002 2MASS| NL80_2 +810320 |PV TrA |153411.2-643622 |M | 10.8 |< 14.5 | |V |54916. | | 236. | | |80001 2MASS| NL80_2 +810322 |PX TrA |153528.3-643749 |M | 11.3 |< 15.0 | |V |54746. | | 439. | |M8-M9 |80001 2MASS| NL80_2 +810323 |PY TrA |153908.1-652514 |M | 12.2 |< 14.7 | |V |54542. | | 241. | | |80415 80415| NL80_2 +810324 |PZ TrA |154055.8-682612 |M | 11.1 |< 14.5 | |V |54529. | | 339. | | |80415 80415| NL80_2 +810325 |QQ TrA |154226.3-670754 |M | 12.5 |< 14.6 | |V |54717. | | 229. | | |80415 80415| NL80_2 +810327 |QS TrA |154429.9-611711 |M | 12.5 |< 14.3 | |V |54571. | | 336. | | |80415 80415| NL80_2 +810328 |QT TrA |154643.0-634135 |M | 11.9 |< 14.4 | |V |54695. | | 278. | | |80415 80415| NL80_2 +810332 |QX TrA |155230.1-693607 |M | 11.5 |< 15.7 | |V |54640. | | 220. | | |80415 80415| NL80_2 +810334 |QZ TrA |155622.7-612434 |M | 11.9 |< 14.0 | |V |54892. | | 238.8 | | |80002 2MASS| NL80_2 +810335 |V0335 TrA |155832.1-652220 |M | 12.4 |< 16.0 | |V |54504. | | 290. | | |80415 80415| NL80_2 +810336 |V0336 TrA *|155906.4-631750 |EW | 10.46 | 11.20 | 11.1 |V |52151.542 | | 0.266768 | |K1Ve: |80365 80365| NL80_2 +810337 |V0337 TrA |160007.0-683517 |M | 11.0 |< 14.5 | |V |54580. | | 205.1 | | |80002 USNO | NL80_3 +810338 |V0338 TrA *|160228.7-672910 |SR | 11.8 | 12.5 : | |V |54596. | | 163. | | |80001 GSC | NL80_3 +810339 |V0339 TrA |160322.4-674751 |M | 11.6 |< 14.2 | |V |54684. | | 270. | | |80415 80415| NL80_3 +810344 |V0344 TrA *|164801.2-671510 |EW | 11.34 | 11.76 | 11.74 |V |55697.061 | | 0.4225126 | | |80622 80622| NL80_3 +810345 |V0345 TrA *|164803.1-671518 |EA | 11.19 | 11.45 | 11.24 |V |55722.029 | | 1.59339 | | |80622 80622| NL80_3 +819009 |iot TrA |162757.3-640329 |GDOR: | 5.30 | 5.42 | |Hp| | | | | |75029 CPD | +820001 |R Tuc |235726.4-652305 |M | 8.5 | 15.2 | |V |39745. | | 286.06 |41 |M5e |00001 00002| +820002 |S Tuc |002307.7-614017 |M | 8.2 | 15.0 | |V |41432. | | 240.71 |44 |M3e-M5II-Ibe |00001 00002| +820003 |T Tuc *|224033.5-613314 |M | 7.50 | 13.8 | |V |41974. | | 250.3 |46 |M3IIe-M6IIe |00001 00002| +820004 |U Tuc *|005713.1-750000 |M | 8.0 | 14.8 | |V |44914. | | 264.8 : |46 |M3e-M7e |00001 00002| +820005 |V Tuc *|005146.6-715953 |EA/SD | 10.60 |( 2.40 )|( 0.11 )|V |36139.142 | | 0.87091649 |21 *|B9/A2(IV) |02487 10055| +820006 |W Tuc *|005809.7-632344 |RRAB | 10.73 | 11.92 | |V |36878.431 | | 0.64222988 |18 |A5-F4: |00639 06286| +820007 |X Tuc |224948.8-645931 | | 11.5 | 13.5 : | |p | | | | | |01017 09611| +820008 |Y Tuc |231717.9-641642 | | 12. |< 14.5 | |p | | | | | |01017 09611| +820032 |TY Tuc |234850.8-693212 | | 12.3 | 12.7 | |p | | | | | |09985 | +820033 |TZ Tuc *|005259.8-695310 |M | 11.2 |< 17.7 | |p |24359. | | 239.92 | |M0e-M3Iab:e |03641 09255| +820034 |UU Tuc |222219.0-605215 |M | 10.4 | 13.6 | |p |24005. | | 335. | |M4e |00210 05232| +820035 |UV Tuc |223810.4-645816 |M | 11.7 |< 13.4 | |p |23985. | | 310. | |M4e |00210 09611| +820038 |UY Tuc |001511.3-601325 |SR | 12.2 | 13.8 | |p | | | 105.2 | | |00193 06286| +820051 |XZ Tuc |001230.1-740503 |LB: | 11.2 | 12.2 | |p | | | | |M2-3 |V 203 V 204|=SMC V0005 +820052 |YY Tuc *|231100.6-582007 |RRAB | 11.32 | 12.44 | |V |41894.497 | | 0.635021 |13 |A9-F0 |00016 06286| +820053 |YZ Tuc |231500.2-571312 |LB | 10.4 | 11.0 | |p | | | | | |00016 09611| +820054 |ZZ Tuc |221654.0-634815 |M | 11. | 15. | |p | | | | |Me |00085 02386| +820055 |AA Tuc |222145.7-602714 |M | 10.00 |< 13. | |V |40530. | | 216.9 | | |00001 02386| +820056 |AB Tuc |232339.4-662155 |M | 11. |< 15.5 | |p | | | | |Me |00085 02386| +820057 |AC Tuc |233802.6-592629 |EA/SD | 11.5 | 13.1 | |V |34307.380 | | 1.265829 |13 *| |00080 02385| +820059 |AE Tuc |005000.6-623808 |RRAB | 11.52 | 12.53 | |V |34273.232 | | 0.414363 |16 | |00080 02380| +820061 |AG Tuc |005453.3-664229 |RRAB | 12.24 | 13.33 | |V |39792.411 | | 0.602582 |14 | |05233 02380| +820066 |AM Tuc *|011830.6-675505 |RRC | 11.39 | 11.87 | |V |41960.387 | | 0.4056575 |45 |A7:-F3 |00001 02380| +820067 |AN Tuc |233022.3-582535 |EA/SD | 10.2 | 11.4 | |V |34305.650 | | 5.46093 |07 *|A5III(m) |00080 03834| +820068 |AO Tuc *|000406.3-592906 |RRC | 10.88 | 11.40 | |V |41948.542 | | 0.3332332 |42 |A5-F2 |07984 06286| +820070 |AQ Tuc *|001721.5-715457 |EW | 9.91 | 10.48 | 10.48 |V |40477.7743 | | 0.59484267 | |F3/5(+A) |06217 09611| +820088 |BK Tuc |232933.3-723240 |RRAB | 12.4 | 13.3 | |p |36735.605 | | 0.5502 |10 | |09264 04001| +820094 |BQ Tuc |005337.9-625217 |LB: | 5.70 |( 0.20 )| |V | | | | |M4III |05840 CPD | +820096 |BS Tuc *|010804.0-615218 |DSCT | 7.43 | 7.57 | |V | | | 0.065 | |A5III |06338 CoD | +820097 |BT Tuc |010019.0-724436 |UV: | 10.5 | 11.32 | |B | | | | |K0V: |07487 04660| +820103 |BZ Tuc *|004143.4-734324 |DCEP | 11.53 | 12.44 | |V |44141.64 | | 127.61 |42 |F8-G1I |V 059 V 212|=SMC V0233 +820104 |CC Tuc |010242.9-652722 |LB | 6.19 |( 0.10 )| |V | | | | |M2III |05840 CPD | +820106 |CE Tuc |232902.5-644556 |SR | 9.5 | 10.5 | |p | | | 60. : | |M6III |00085 05937| +820107 |CF Tuc *|005307.8-743906 |EA/RS | 7.44 | 7.80 | 7.52 |V |44160.52 | | 2.79765 |10 *|F8V+K1IV |10064 CPD | +820108 |CG Tuc |232901.0-630638 |ACV | 5.66 |( 0.045 )| |V | | | 2.3148 | |A0p(Si) |09919 CPD | +820113 |CM Tuc |005553.5-731827 |SRC: | 11.62 | 12.8 | |V | | | 86.6 |45 : |M4+I |V 277 V 212|=SMC V1240 +820114 |CN Tuc |230927.7-633912 |ACVO | 9.35 |( 0.01 B )| |V | | | | | |71157 CPD | +820117 |CQ Tuc |000619.0-655026 |BY: | 12.02 | 12.34 | |Hp| | | | | |HIP HIP | +820118 |CR Tuc |001420.8-624619 |LB | 6.64 | 6.82 | |Hp| | | | | |HIP HIP | +820119 |CS Tuc |001512.3-685059 |LB | 8.73 | 8.89 | |Hp| | | | | |HIP HIP | +820120 |CT Tuc |002514.6-613048 |BY: | 11.35 | 11.63 | |Hp| | | | | |HIP HIP | +820121 |CU Tuc |003713.4-634913 |EA | 9.99 | 10.40 | |Hp| | | | | |HIP HIP | +820122 |CV Tuc |004635.3-580255 |LB: | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +820123 |CW Tuc |004843.2-614343 |ELL: | 9.44 | 9.60 | |Hp| | | | | |HIP HIP | +820124 |CX Tuc |005629.4-594023 |LB: | 9.23 | 9.43 | |Hp| | | | | |HIP HIP | +820125 |CY Tuc |005752.2-702730 |LB: | 8.70 | 8.85 | |Hp| | | | | |HIP HIP | +820126 |CZ Tuc |010431.2-703225 |SRA | 8.81 | 9.25 | |Hp| | | | | |HIP HIP | +820127 |DD Tuc |011515.8-580152 |SRB | 8.54 | 8.74 | |Hp| | | | | |HIP HIP | +820128 |DE Tuc |011735.0-651242 |SRB | 6.86 | 7.03 | |Hp| | | | | |HIP HIP | +820129 |DF Tuc |221123.7-640052 |LB: | 7.62 | 7.75 | |Hp| | | | | |HIP HIP | +820130 |DG Tuc |221357.5-612656 |LB | 7.96 | 8.19 | |Hp| | | | | |HIP HIP | +820131 |DH Tuc |221402.6-571306 |LB | 7.70 | 8.25 | |Hp| | | | | |HIP HIP | +820132 |DI Tuc |221608.2-573405 |LB | 7.08 | 7.21 | |Hp| | | | | |HIP HIP | +820133 |DK Tuc |222721.2-580002 |E: | 6.90 | 6.97 | |Hp| | | | | |HIP HIP | +820134 |DL Tuc |225101.5-593651 |BY: | 11.74 | 12.02 | |Hp| | | | | |HIP HIP | +820135 |DM Tuc |225705.8-572404 |LB | 6.62 | 7.26 | |Hp| | | | | |HIP HIP | +820136 |DN Tuc |230718.9-605235 |E: | 8.57 | 8.71 | |Hp| | | | | |HIP HIP | +820137 |DO Tuc |231026.4-634112 |BY: | 11.26 | 11.61 | |Hp| | | | | |HIP HIP | +820138 |DP Tuc |231242.7-635313 |LB: | 8.80 | 8.96 | |Hp| | | | | |HIP HIP | +820139 |DQ Tuc |231415.6-565052 |BY: | 11.86 | 12.18 | |Hp| | | | | |HIP HIP | +820140 |DR Tuc |232256.7-600321 |LB | 6.08 | 6.20 | |Hp| | | | | |HIP HIP | +820141 |DS Tuc |233939.4-691145 |RS: | 8.27 | 8.39 | |Hp| | | | | |HIP HIP | +820142 |DT Tuc |234839.3-590327 |LB: | 9.09 | 9.24 | |Hp| | | | | |HIP HIP | +820143 |DU Tuc |234958.2-610807 |SRB | 7.19 | 7.58 | |Hp| | | | | |HIP HIP | +820144 |DV Tuc |235412.8-593231 |ACV | 7.03 | 7.06 | |Hp| | | | | |HIP HIP | +820145 |DW Tuc |235433.0-625204 |LB: | 9.04 | 9.15 | |Hp| | | | | |HIP HIP | +820146 |DX Tuc *|235721.5-641436 |EW: | 9.63 | 9.90 | |Hp| | | | | |HIP HIP | +820149 |EE Tuc |225759.4-590522 |GDOR: | 6.72 | 6.82 | |Hp| | | | | |75029 CPD | +820151 |EG Tuc |011948.3-693327 |SRS | 9.4 | 9.8 | |V |52173.7 | | 22.92 | |M2III: |78130 DM | +820152 |EH Tuc |005123.7-593746 |SRB | 9.2 | 10.1 | |V | | | 73.5 | |M(5)III |79100 DM | +820153 |EI Tuc |222912.5-565212 |EA | 9.53 | 9.97 | 9.87 |V |52770.852 | | 3.64523 |05 |F0IV/V |79018 DM | +820154 |EK Tuc |223851.8-603909 |EB | 9.71 | 10.17 | 9.92 |V |52875.786 | | 1.23501 | |F6 |79011 79028| +820156 |EM Tuc *|000208.2-665040 |EW | 12.05 | 12.7 | 12.6 |V |54290.630 | | 0.326576 | | |80002 GSC | NL80_1 +820157 |EN Tuc *|003453.4-683548 |EB | 8.58 | 8.64 | 8.61 |V |52517.605 | | 2.88083 | | A0V |80048 HIP | NL80_1 +820160 |EQ Tuc |223835.7-633421 |BY | 8.93 | 9.06 | |V | | | 1.1138 : | |G8/K1III/IVp |80034 HIP | NL80_3 +820162 |ES Tuc |225726.0-564541 |BY | 10.40 | 10.57 | |V | | | 6.0264 | |G5V |80001 DM | NL80_3 +829008 |tet Tuc *|003323.4-711559 |DSCTC | 6.06 | 6.15 | |V | | | 0.049308 | |A7IV |09621 CPD | +829009 |iot Tuc |010718.6-614631 |SRD: | 5.47 | 5.53 | |Hp| | | | | |HIP HIP | +829013 |nu. Tuc |223300.1-615856 |LB: | 4.75 | 4.93 | |V | | | | |M4III |03712 CoD | +830001 |R UMa *|104438.5+684633 |M | 6.5 | 13.7 | |V |45593. | | 301.62 |39 |M3e-M9e |00001 00002| +830002 |S UMa *|124356.7+610536 |M | 7.1 | 12.7 | |V |45778. | | 225.87 |47 |S0,9e-S5,9e |00001 00002| +830003 |T UMa *|123623.5+592913 |M | 6.6 | 13.5 | |V |45623. | | 256.60 |41 |M4IIIe-M7e |00001 00002| +830004 |U UMa |101507.7+595908 | | 6.20 | 6.25 | |V | | | | |M0III | 00097| +830005 |V UMa |090814.4+510649 |SRB | 9.5 | 11.5 | |V | | | 207.65 | |M5-M6 |08642 00002| +830006 |W UMa *|094345.5+555709 |EW/KW | 7.75 | 8.48 | 8.43 |V |45765.7385 | | 0.33363749 | |F8Vp+F8Vp |00001 00462| +830007 |X UMa |084049.5+500812 |M | 8.1 | 14.8 | |V |45707. | | 249.04 |43 |M3e-M4e |00001 00002| +830008 |Y UMa |124021.3+555048 |SRB | 7.7 | 9.8 | |V | | | 168. | |M7II-III: |00650 08953| +830009 |Z UMa *|115630.2+575218 |SRB | 6.2 | 9.4 | |V | | | 195.5 | |M5IIIe |09833 00002| +830010 |RR UMa |132556.3+622252 |M | 8.6 | 14.2 | |V |45719. | | 230.58 |43 : |M4e |00001 00100| +830011 |RS UMa |123857.5+582900 |M | 8.3 | 14.9 | |V |45991. | | 258.97 |42 |M4e-M6e |00001 00002| +830012 |RT UMa |091824.4+512407 |LB | 8.6 | 9.6 | |V | | | | |C4,4(N5) |00651 08953| +830013 |RU UMa |114140.2+382829 |M | 8.1 | 15.0 | |V |45687. | | 252.46 |30 |M3e-M5e |00001 04169| +830014 |RV UMa *|133318.1+535915 |RRAB | 9.81 | 11.30 | |V |45075.511 | | 0.468060 |20 |A6-F5 |00001 00652| +830015 |RW UMa *|114046.4+515953 |EA/D/RS | 10.16 | 11.72 | 10.34 |V |45823.412 | | 7.328238 |08 |F9V+K1IV |00001 00318| +830016 |RX UMa |091425.3+671538 |SRB | 9.8 | 12.2 | |V | | | 195. | |M5 |00655 00102| +830017 |RY UMa |122027.3+611835 |SRB | 6.68 | 8.3 | |V | | | 310. : | |M2-M3IIIe | 08953| +830018 |RZ UMa |081059.7+651322 |SRB | 9.7 | 11.9 | |p | | | 115. | |M5-M6 |02137 00002| +830020 |ST UMa |112750.4+451107 |SRB | 6.0 | 7.6 | |V | | | 110. : | |M4-M5III | 08953| +830021 |SU UMa *|081228.3+623622 |UGSU | 10.8 | 14.96 | |V | | |( 19. ) | |pec(UG) |09782 00002| +830022 |SV UMa |104632.3+550208 |SRD | 9.1 | 10.6 | |V |44705. | | 76. |45 |G1Ibe-K3Iap |09318 08953| +830023 |SW UMa *|083642.7+532838 |UG | 9.7 | 16.50 | |V | | |( 460. ) | |pec(UG) | 09472| +830024 |SX UMa *|132613.5+561525 |RRC | 10.58 | 11.21 | |V |45109.333 | | 0.3071178 |38 |A4-F5 |00001 10083| +830025 |SY UMa |095543.0+494911 |CST | 5.27 | | |V | | | | |A3III | 00663| +830026 |SZ UMa *|112004.8+655047 |UV | 10.74 |( 0.06 )| |B | | | | |M1.5V |06948 08874| +830027 |TT UMa |090514.4+601713 |LB | 8.9 | 9.5 | |V | | | | |M6III |00179 08953| +830028 |TU UMa *|112948.5+300402 |RRAB | 9.26 | 10.24 | |V |42831.4947 | | 0.5576587 |16 |A8-F8 |00001 09331| +830029 |TV UMa |114535.0+355340 |SRB | 6.75 | 7.34 | |V | | | 42. | |M5III |05429 00228| +830030 |TW UMa *|134045.5+592600 |EA/SD | 12.2 | 14.5 | 12.3 : |V |45447.535 | | 2.1668246 |14 | |00001 00670| +830031 |TX UMa *|104520.5+453359 |EA/SD | 7.06 | 8.80 | 7.13 |V |44998.1475 | | 3.0632382 |12 *|B8V+G0III-IVea |09838 03685| +830032 |TY UMa *|120902.5+560154 |EW/KW | 11.48 | 12.14 |< 12.12 |V |39532.4965 | | 0.354538609 | |F7+F0: |09841 00670| +830033 |TZ UMa |120935.0+582302 |SRB | 9.8 | 10.6 | |p | | | 116. | |M4 |00650 00670| +830035 |UV UMa |125926.0+524524 |SRA | 10.2 | 11.5 | |V |29219. | | 65.65 |47 |M4 |00672 00670| +830036 |UW UMa |131201.5+562249 |LB | 11.0 | 11.9 | |V | | | | |M6 |00335 00670| +830040 |VV UMa *|093806.7+560107 |EA/SD | 10.13 | 10.91 | 10.26 |V |45815.3365 | | 0.687380 |19 *|A2V |00001 06824| +830041 |VW UMa |105901.8+695921 |SR | 6.85 | 7.71 | |V | | | 610. | |M2 |08179 08953| +830042 |VX UMa *|105540.9+715209 |M | 11.7 |< 14.5 | |p |35480. | | 215.2 | |M8e |00001 | +830043 |VY UMa |104504.0+672441 |LB | 5.87 | 7.0 | |V | | | | |C6,3(N0) |09844 08953| +830045 |WW UMa |114701.5+581418 |LB | 10.7 | 11.9 | |p | | | | |M6 |03693 00346| +830047 |WY UMa |104153.2+513800 |LB | 10.0 | 10.8 | |p | | | | |M5 |00680 02379| +830048 |WZ UMa |120547.1+540218 |CST: | 9.5 | 10.0 | |V | | | | |F5 |10089 08953| +830050 |XY UMa *|090955.9+542918 |EB/DW/RS | 9.50 |( 0.67 )|( 0.19 )|V |35216.5011 | | 0.478994587 | |G2V |08623 08953| +830051 |XZ UMa *|093124.6+492804 |EA/SD | 10.1 | 11.7 | 10.2 |p |46168.426 | | 1.22232 : |10 *|A5+F9 |00001 10092| +830052 |YY UMa |094407.9+534600 |SRB | 10.2 | 11.3 | |p |25590. | | 326. | |M6 |00499 02379| +830053 |YZ UMa |095519.9+440029 |LB | 10.7 | 12.0 | |p | | | | |M5 |00499 02379| +830054 |ZZ UMa |103003.2+614841 |EA/D | 10.1 | 10.7 | |p |35951.484 | | 2.29926 |08 |F8 |04009 03694| +830055 |AA UMa *|094659.3+454556 |EW/KW | 10.88 | 11.58 | 11.53 |V |40664.8920 | | 0.46812555 | |G0 |10094 09868| +830056 |AB UMa |121114.6+474944 |RRAB | 10.3 | 11.7 | |p |36227.640 | | 0.599577 |30 |F2 |03695 02379| +830057 |AC UMa *|085554.1+645815 |EA/SD | 10.30 | 14. | |V |46072.466 | | 6.854939 |07 |A2 |00001 BD | +830059 |AE UMa *|093653.2+440400 |SXPHE: | 10.86 | 11.52 | |V |35604.338 | | 0.086017055 |16 |A9 |07114 00819| +830060 |AF UMa *|102407.8+640751 |EA/SD: | 10.8 | 11.6 | |p |26796.400 | | 5.257555 |10 |A0 |03835 00174| +830076 |AW UMa *|113004.3+295753 |EW/KW | 6.83 | 7.13 | 7.08 |V |44664.7993 | | 0.4387299 | |F0-F2 |00001 BD | +830078 |AY UMa |114043.8+300317 |LB | 11.01 | 12.1 | |B | | | | |M2 |04022 BD | +830079 |AZ UMa |114713.8+432816 |LB | 9.6 | 10.3 | |p | | | | |M6III |02576 04167| +830080 |BB UMa |114902.0+491136 |RRAB | 12.3 | 14.1 | |p |40384.354 | | 0.5590529 |12 | |00001 04354| +830081 |BC UMa |115215.9+491442 |UG | 10.9 | 18.3 | |B | | | | | |04375 09875| +830082 |BD UMa |115706.8+482426 |RRAB | 12.2 | 13.8 | |p |40290.30 | | 0.681147 |12 | |05493 04354| +830084 |BF UMa |120344.6+464018 |RRAB | 12.0 | 13.6 | |p |40295.46 | | 0.501015 |14 | |05493 04354| +830085 |BG UMa *|132644.0+561834 |ELL: | 10.84 | 10.93 | 10.93 |V |35860.665 | | 0.669397 | | |04175 BD | +830086 |BH UMa *|104555.8+521451 |EW/KE | 11.5 | 12.3 | 12.3 |p |45093.348 | | 0.6986834 | |B9 |00001 00174| +830103 |BZ UMa |085344.1+574841 |UG | 10.5 | 15.3 | |B | | |( 97. ) | |pec(UG) |00001 05619| +830104 |CC UMa |105340.6+422813 |SRB | 11.7 | 12.4 | |p | | | | |M0 |05264 04065| +830107 |CF UMa *|115256.5+374306 |UV: | 8.5 | 12. : | |V | | | | | |05941 | +830108 |CG UMa |092143.3+564157 |LB | 5.47 | 5.95 | |V | | | | |M4IIIa |05841 BD | +830109 |CH UMa *|100700.7+673247 |UG | 10.6 | 16.0 | |B | | |( 204. ) | |pec(UG)+K |07608 06409| +830115 |CO UMa |110919.1+361834 |LB | 5.74 | 5.95 | |V | | | | |M3.5IIIab |06907 BD | +830117 |CQ UMa *|134021.4+571227 |ACV | 6.28 | 6.30 | |V |40747.620 | | 2.449967 | |A4p(Sr-Cr-Eu) |09883 BD | +830118 |CR UMa *|134635.7+542558 |ACV | 5.65 | 5.70 | |V |41444.80 | | 1.37996 | |B9p(Eu-Cr) |09308 BD | +830119 |CS UMa |094631.7+570741 |LB: | 6.78 |( 0.16 )| |B | | | | |M3IIIab |01371 BD | +830120 |CT UMa |103417.4+694552 |LB | 10.5 | 10.9 | |p | | | | |M6 |07863 BD | +830122 |CV UMa |110736.0+491037 |LB | 9.3 | 10.3 | |p | | | | |K5 |02578 BD | +830124 |CX UMa |112353.3+371405 |DSCTC: | 6.8 |( 0.028 )| |V | | | | |F0 |07866 BD | +830125 |CY UMa |105657.0+494118 |UG | 11.9 | 17. | |p | | | | | |07931 07931| +830127 |DD UMa |091611.3+540119 |DSCTC | 5.02 |( 0.03 )| |B | | | 0.12 : | |A5V |08209 BD | +830129 |DF UMa *|113724.6+472745 |BY | 10.12 | 10.41 | |V | | | | |M0Ve |08313 BD | +830131 |DH UMa |090315.3+500539 |LB: | 9.2 |( 0.24 )| |V | | | | |C3,5J(R5) |08460 BD | +830133 |DK UMa *|093428.9+694949 |RS: | 4.56 |( 0.058 )| |V | | | 0.9202 | |G4III-IV |07964 BD | +830134 |DL UMa *|093641.0+693812 |DSCTC+E | 7.55 |( 0.056 )| |V | | | 0.0831 | |F0 |07964 BD | +830135 |DM UMa *|105543.5+602810 |RS | 9.57 |( 0.32 )| |V |45831.72 | | 7.478 | |K0-K1III-IVea |10121 BD | +830136 |DN UMa *|115505.8+462837 |EA | 6.63 | 6.73 | 6.73, |B |43936.4814 | | 1.730418 |10 *|A3Vn |08557 BD | +830137 |DO UMa |120130.1+405224 |L | 12.0 | 12.9 | |p | | | | | |08362 08362| +830138 |DP UMa |120206.8+430244 |DSCTC | 5.21 |( 0.03 )| |V | | | | |A7m |08448 BD | +830148 |DZ UMa |111833.6+524055 |RVB: | 12.0 | 13.5 | |p | | | | | |68268 68268| +830149 |EE UMa |113024.8+463927 |ELL: | 6.35 |( 0.16 )| |V | | | | | |68053 BD | +830152 |EH UMa |135320.2+521923 |LB | 6.69 | 6.87 | |V | | | | | |68006 BD | +830157 |EN UMa |102103.3+684452 |DSCTC | 5.83 | 5.88 | |V | | | | | |70134 BD | +830158 |EO UMa |104523.4+411828 |DSCTC | 7.07 | 7.15 | |V | | | | | |71098 BD | +830159 |EP UMa |110939.8+671237 |ACVO | 6.06 |( 0.01 )| |V | | | | | |71099 BD | +830160 |EQ UMa |083627.3+533440 |EW/KW | 12.4 |( 0.2 )| |V | | | | | |72166 72166| +830161 |ER UMa |094711.9+515409 |UG: | 12.4 | 15.2 | |V | | | | | |72167 72085| +830162 |ES UMa |095428.6+691322 |EW | 10.99 | 11.38 | |V | | | | | |72168 72217| +830163 |ET UMa |102407.8+653359 |ACV | 4.91 |( 0.05 )| |B | | | | | |72169 BD | +830166 |EW UMa |081826.6+730516 |IS | 9.83 | 11.08 | |V | | | | | |73062 73062| +830167 |EX UMa |084512.2+563627 |RRAB | 10.90 | 11.38 | |V | | | | | |73334 73334| +830169 |EZ UMa |092544.2+635627 |SRD: | 6.23 | 6.28 | |V | | | | | |73005 BD | +830170 |FF UMa |093346.5+624940 |RS | 8.35 |( 0.12 )| |V | | | | | |73005 BD | +830171 |FG UMa |102147.5+605446 |RS | 7.45 |( 0.11 )| |V | | | | | |73005 BD | +830173 |FI UMa |111244.5+545339 |DSCTC | 6.65 |( 0.03 b )| |V | | | | | |73338 BD | +830174 |FK UMa |111714.6+293414 |RS | 9.29 |( 0.04 )| |V | | | | | |73005 BD | +830175 |FL UMa |082048.0+673137 |LB: | 7.05 | 7.14 | |Hp| | | | | |HIP HIP | +830176 |FM UMa |082841.0+605638 |ACV: | 9.10 | 9.17 | |Hp| | | | | |HIP HIP | +830177 |FN UMa |083427.6+671120 |LB | 8.29 | 8.70 | |Hp| | | | | |HIP HIP | +830178 |FO UMa |083640.8+492235 |LB | 7.11 | 7.22 | |Hp| | | | | |HIP HIP | +830179 |FP UMa |084807.6+605259 |LB: | 9.23 | 9.36 | |Hp| | | | | |HIP HIP | +830180 |FQ UMa |084806.3+464131 |LB: | 8.24 | 8.30 | |Hp| | | | | |HIP HIP | +830181 |FR UMa |085115.8+483503 |LB: | 8.80 | 8.96 | |Hp| | | | | |HIP HIP | +830182 |FS UMa |085146.3+523052 |LB: | 9.16 | 9.36 | |Hp| | | | | |HIP HIP | +830183 |FT UMa |085430.3+511440 |RRC: | 9.29 | 9.42 | |Hp| | | | | |HIP HIP | +830184 |FU UMa |085754.4+641843 |LB: | 8.97 | 9.07 | |Hp| | | | | |HIP HIP | +830185 |FV UMa |090236.8+631445 |SRB | 8.65 | 8.81 | |Hp| | | | | |HIP HIP | +830186 |FW UMa |090325.3+584504 |LB: | 9.34 | 9.66 | |Hp| | | | | |HIP HIP | +830187 |FX UMa |090622.4+682643 |EA: | 7.14 | 7.18 | |Hp| | | | | |HIP HIP | +830188 |FY UMa |090608.7+644646 |SRB: | 9.04 | 9.80 | |Hp| | | | | |HIP HIP | +830189 |FZ UMa |090905.1+691239 |LB | 7.41 | 7.62 | |Hp| | | | | |HIP HIP | +830190 |GG UMa |091853.7+625034 |DSCTC: | 8.66 | 8.72 | |Hp| | | | | |HIP HIP | +830191 |GH UMa |092158.7+533759 |SRB | 8.32 | 8.58 | |Hp| | | | | |HIP HIP | +830192 |GI UMa |092655.7+494133 |SRB | 7.86 | 8.12 | |Hp| | | | | |HIP HIP | +830193 |GK UMa |093900.7+583253 |SRB: | 7.36 | 7.42 | |Hp| | | | | |HIP HIP | +830194 |GL UMa |095216.2+601648 |BY: | 12.31 | 12.95 | |Hp| | | | | |HIP HIP | +830195 |GM UMa *|101343.8+502948 |EB | 6.66 | 6.81 | |Hp| | | | | |HIP HIP | +830196 |GN UMa |101426.1+662447 |LB | 9.01 | 9.23 | |Hp| | | | | |HIP HIP | +830197 |GO UMa |101424.6+592359 |LB | 7.42 | 7.68 | |Hp| | | | | |HIP HIP | +830198 |GP UMa |101717.6+412803 |LB: | 6.60 | 6.65 | |Hp| | | | | |HIP HIP | +830199 |GQ UMa |102448.1+511041 |LB | 10.07 | 10.35 | |Hp| | | | | |HIP HIP | +830200 |GR UMa |102631.6+622048 |LB | 9.36 | 9.94 | |Hp| | | | | |HIP HIP | +830201 |GS UMa |102926.8+394609 |DSCTC: | 8.76 | 8.81 | |Hp| | | | | |HIP HIP | +830202 |GT UMa |103555.6+633532 |EB | 8.14 | 8.43 | |Hp| | | | | |HIP HIP | +830203 |GU UMa |104007.5+595700 |LB: | 9.61 | 9.77 | |Hp| | | | | |HIP HIP | +830204 |GV UMa |104047.1+563131 |LB: | 9.30 | 9.44 | |Hp| | | | | |HIP HIP | +830205 |GW UMa |104411.3+444044 |DSCT: | 9.48 | 9.97 | |Hp| | | | | |HIP HIP | +830206 |GX UMa |104607.7+590339 |SRD | 9.08 | 9.33 | |Hp| | | | | |HIP HIP | +830207 |GY UMa |104736.7+653700 |SRB | 6.89 | 7.03 | |Hp| | | | | |HIP HIP | +830208 |GZ UMa |104902.0+671252 |E: | 10.56 | 10.78 | |Hp| | | | | |HIP HIP | +830209 |HH UMa *|110448.1+353627 |DSCT: | 10.58 | 10.79 | |Hp| | | | | |HIP HIP | +830210 |HI UMa |110550.8+515118 |LB: | 9.50 | 9.64 | |Hp| | | | | |HIP HIP | +830211 |HK UMa |110554.0+535103 |LB: | 7.62 | 7.72 | |Hp| | | | | |HIP HIP | +830212 |HL UMa |110752.8+682159 |SRB | 7.98 | 8.17 | |Hp| | | | | |HIP HIP | +830213 |HM UMa |110916.7+512244 |LB | 6.86 | 6.98 | |Hp| | | | | |HIP HIP | +830214 |HN UMa *|111556.4+373835 |EW: | 9.90 | 10.02 | |Hp| | | | | |HIP HIP | +830215 |HO UMa |112136.2+320235 |LB | 8.42 | 8.56 | |Hp| | | | | |HIP HIP | +830216 |HP UMa |112845.1+493332 |LB | 9.06 | 9.27 | |Hp| | | | | |HIP HIP | +830217 |HQ UMa |113042.8+564447 |DSCTC | 7.16 | 7.21 | |Hp| | | | | |HIP HIP | +830218 |HR UMa |113253.0+552507 |EA | 8.70 | 9.02 | |Hp| | | | | |HIP HIP | +830219 |HS UMa |113530.7+345204 |LB | 8.30 | 8.95 | |Hp| | | | | |HIP HIP | +830220 |HT UMa |114814.7+483126 |LB: | 8.27 | 8.39 | |Hp| | | | | |HIP HIP | +830221 |HU UMa *|115019.0+374051 |BY: | 11.19 | 11.48 | |Hp| | | | | |HIP HIP | +830222 |HV UMa |115538.0+471527 |RRC | 8.60 | 8.89 | |Hp| | | | | |HIP HIP | +830223 |HW UMa |115716.8+450038 |LB: | 8.87 | 9.01 | |Hp| | | | | |HIP HIP | +830224 |HX UMa |120133.1+430230 |EB | 8.89 | 9.06 | |Hp| | | | | |HIP HIP | +830225 |HY UMa |120333.2+294045 |LB: | 7.32 | 7.43 | |Hp| | | | | |HIP HIP | +830226 |HZ UMa |120459.8+501701 |LB: | 8.28 | 8.40 | |Hp| | | | | |HIP HIP | +830227 |II UMa *|123254.9+544743 |EW: | 8.17 | 8.48 | |Hp| | | | | |HIP HIP | +830228 |IK UMa |123843.8+550510 |LB: | 9.66 | 9.96 | |Hp| | | | | |HIP HIP | +830229 |IL UMa |124923.5+620338 |SRB | 9.44 | 9.79 | |Hp| | | | | |HIP HIP | +830230 |IM UMa |125119.6+574354 |LB | 7.61 | 7.75 | |Hp| | | | | |HIP HIP | +830231 |IN UMa |125351.9+564912 |LB: | 8.77 | 8.91 | |Hp| | | | | |HIP HIP | +830232 |IO UMa |131454.5+591744 |EA | 8.19 | 8.79 | |Hp| | | | | |HIP HIP | +830233 |IP UMa |133912.6+475346 |DSCTC: | 7.72 | 7.77 | |Hp| | | | | |HIP HIP | +830234 |IQ UMa |134044.3+544054 |SRB | 4.69 | 4.75 | |Hp| | | | | |HIP HIP | +830235 |IR UMa |135001.0+545210 |LB | 7.48 | 7.70 | |Hp| | | | | |HIP HIP | +830236 |IS UMa |135842.4+550556 |SRB: | 9.90 | 10.07 | |Hp| | | | | |HIP HIP | +830237 |IT UMa |140417.4+512718 |LB: | 8.69 | 8.85 | |Hp| | | | | |HIP HIP | +830238 |IU UMa |141343.2+580655 |LB: | 8.29 | 8.40 | |Hp| | | | | |HIP HIP | +830239 |IV UMa |141501.7+611804 |ELL: | 9.00 | 9.06 | |Hp| | | | | |HIP HIP | +830240 |IW UMa |092900.6+434402 |EA | 11.9 |( 0.50 )| |V | | | | | |75272 75272| +830241 |IX UMa |094844.6+433956 |DSCTC | 7.79 |( 0.01 )| |V | | | | | |75273 BD | +830246 |KM UMa |114749.0+351335 |EW: | 11.0 | 11.6 | |p | | | | | |75276 BD | +830247 |KN UMa |123952.3+551121 |BY: | 11.77 |( 0.35 Rc)| |V | | | | | |75277 75277| +830248 |KO UMa |081542.1+661032 |GDOR | 7.18 |( 0.04 )| |V | | | | | |76080 DM | +830249 |KP UMa |084750.8+661238 |ELL | 7.87 |( 0.04 )| |V | | | | | |76091 DM | +830252 |KS UMa |102026.5+530433 |UGSU | 12.2 | 16.2 | |V | | | | | |76100 GSC22| +830253 |KT UMa |105807.4+560709 |RRAB | 11.07 | 11.57 | |V | | | | | |76109 76110| +830256 |KW UMa |114707.8+612407 |DSCTC | 6.83 |( 0.03 )| |B | | | | | |76009 DM | +830258 |KY UMa |122129.1+530437 |RPHS | 12.4 |( 0.05 * )| |B | | | | | |76094 76095| +830259 |KZ UMa |093142.1+665119 |DSCTC | 8.15 |( 0.02 b )| |V | | | | | |77082 DM | +830261 |LM UMa |094600.6+455213 |SRS | 8.21 |( 0.06 )| |V | | | | | |77008 DM | +830266 |LR UMa |112251.2+314941 |DSCTC: | 7.74 |( 0.07 )| |B | | | | | |77094 DM | +830267 |LS UMa |082740.1+675827 |GDOR | 8.12 |( 0.20 )| |V | | | 1.14 : | |F0 |78091 DM | +830268 |LT UMa |084447.8+553220 |BY | 8.91 |( 0.03 )| |V | | | | |K0V |78018 DM | +830269 |LU UMa *|092403.3+614623 |GDOR | 8.44 | 8.65 | |Hp| | | 1.1156 | |F0V |78091 DM | +830270 |LV UMa |093245.7+493806 |DSCTC: | 10.7 |( 0.03 )| |V | | | 0.037 | | |78049 78049| +830271 |LW UMa |095656.1+412641 |DSCTC | 10.22 | 10.27 | |V | | | 0.0585 | | |78022 DM | +830272 |LX UMa |101435.8+534615 |BY | 8.02 |( 0.05 )| |V | | | 4.935 : | |G5V |78018 DM | +830274 |LZ UMa |105040.3+514759 |BY | 8.31 |( 0.02 )| |V | | | 8.47 | |G5V |78018 DM | +830276 |MN UMa |111232.4+354851 |BY | 6.53 | 6.56 | |Hp| | | 8.25 | |G0V |78005 DM | +830277 |MO UMa |111306.0+402138 |RRC | 11.66 | 12.04 | |* |51306.702 | | 0.31802 |40 | |78144 GSC | +830278 |MP UMa |112037.7+392101 |DSCT: | 12.06 | 12.19 | |* | | | 0.0526 : | | |78144 GSC | +830279 |MQ UMa |112141.1+433653 |EW | 11.57 | 11.83 | |* |51312.8513 | | 0.476058 | | |78144 GSC | +830281 |MS UMa *|113220.9+494410 |EW | 11.97 | 12.60 | 12.50 |* |51563.9502 | | 0.410384 | | |78144 GSC | +830282 |MT UMa *|113334.7+425830 |EW | 11.75 | 12.16 | 12.09 |* |51330.7415 | | 0.800632 | | |78144 GSC | +830283 |MU UMa |113536.7+384558 |RRC | 11.8 | 12.3 | |* |51305.7228 | | 0.267946 |40 | |78144 GSC | +830284 |MV UMa *|113859.7+421944 |RS | 8.22 |( 0.02 )| |V | | | 10.84 | |K5V |78018 DM | +830285 |MW UMa |114302.3+603437 |EA | 9.26 |( 0.49 )| |Rc|52402.3278 | | 1.23472 | |F8 |78151 78151| +830286 |MX UMa |114752.9+530055 |DSCTC | 8.78 |( 0.08 )| |B | | | 0.116 | |F3III/IV |78152 DM | +830287 |MY UMa |115157.9+480519 |BY | 8.97 |( 0.03 )| |V | | | 11.43 | |K0V |78018 DM | +830288 |MZ UMa |121127.8+532518 |BY | 7.96 |( 0.02 )| |V | | | 7.44 : | |K0V+K1V |78018 DM | +830289 |NN UMa |122620.2+543519 |BY: | 7.53 |( 0.03 )| |V | | | 7.4 : | |K2 |78018 DM | +830290 |NO UMa *|123118.9+550708 |RS: | 8.08 |( 0.03 )| |V | | | 8.81 : | |K2V |78005 DM | +830291 |NP UMa |124144.5+554329 |BY | 8.27 |( 0.03 )| |V | | | 11.75 | |K3V |78018 DM | +830292 |NQ UMa |132545.5+565814 |BY | 7.29 |( 0.04 )| |V | | | 4.27 | |G9V |78018 DM | +830294 |NS UMa *|082424.7+654303 |RRAB | 10.75 | 11.35 | |* |51522.677 | | 0.599132 |20 |A |79045 79046| +830296 |NU UMa *|105301.1+574208 |EA | 9.27 | 9.50 | 9.50 : |V |48058.296 | | 5.50762 |03 : |G5IV |79006 DM | +830300 |NY UMa *|113212.9+385533 |GDOR | 7.95 | 8.02 | |V | | | 0.7564 | |F1V+G0:V |79219 DM | +830301 |NZ UMa |120826.1+485807 |GDOR | 7.72 | 7.82 | |V | | | 0.7572 | |F0III |79111 DM | +830303 |OP UMa |123653.6+575808 |LB | 9.75 | 10.10 | |* | | | | | |79100 GSC | +830305 |OR UMa *|081329.5+695034 |EA | 12.30 | 12.65 | 12.4 |* |51602.596 | | 14.215 |03 | |80013 GSC | NL80_2 +830306 |OS UMa |081917.2+623026 |EA/RS | 5.73 | 5.79 | |V |48022.9 | | 89.06 |10 : |G8III+F0: |80015 DM | NL80_2 +830307 |OT UMa *|081923.2+661236 |EW | 12.22 | 12.53 | 12.48 |* |51518.739 | | 0.316067 | | |80102 80102| NL80_2 +830308 |OU UMa |082831.2+672947 |RRAB | 12.5 | 13.2 | |* |51332.74 | | 0.66088 |16 | |80001 GSC | NL80_2 +830309 |OV UMa *|083605.6+711022 |EA | 10.78 | 11.7 | 11.10 |* |51631.63 | | 9.2512 |05 | |80013 GSC | NL80_2 +830310 |OW UMa |083725.7+491608 |RRC | 12.26 | 12.69 | |* |51511.79 | | 0.31127 |31 | |80026 GSC | NL80_2 +830311 |OX UMa *|083918.2+673942 |EA | 11.95 | 12.45 | 12.14 |* |51274.687 | | 3.4832 |13 | |80013 GSC | NL80_2 +830313 |OZ UMa |085114.6+562120 |RRC | 11.46 | 11.80 | |* |51600.77 | | 0.34528 |40 | |80026 GSC | NL80_2 +830317 |PS UMa *|085646.5+694032 |EA | 12.47 | 12.8 : | 12.78 |* |51628.645 | | 9.272 |05 | |80023 GSC | NL80_2 +830318 |PT UMa |085819.8+522628 |SR | 10.73 | 11.70 | |V | | | 101.7 | | |80057 GSC | NL80_2 +830320 |PV UMa *|090332.3+530630 |SRD: | 6.86 |( 0.02 )| |V | | | 82.0 | |G5Ba1 |80315 HIP | NL80_2 +830321 |PW UMa *|091531.2+650127 |EW | 11.06 | 11.63 | 11.5 |* |51627.6894 | | 0.5553 | | |80316 GSC | NL80_2 +830322 |PX UMa *|091544.9+624832 |DSCTC: | 10.01 | 10.06 | |V | | | 0.0422 | |A0 |80317 DM | NL80_2 +830324 |PZ UMa *|092907.1+495123 |EW | 12.5 | 13.4 | 13.1 |* |51337.71408 | | 0.2627 | | |80316 GSC | NL80_2 +830326 |QR UMa |093038.3+444610 |EA | 7.35 | 7.45 | |V |48147.080 | | 1.7854 |09 |A5 |80015 HIP | NL80_2 +830328 |QT UMa *|093629.2+485246 |EW | 11.00 | 11.80 | 11.70 |* |51563.948 | | 0.473522 | | |80042 GSC | NL80_2 +830331 |QW UMa |094656.6+634144 |RRC | 11.04 | 11.38 | |* |51633.656 | | 0.29849 |45 | |80001 GSC | NL80_2 +830335 |V0335 UMa |095411.5+423901 |SRD: | 10.1 | 10.4 | |* | | | 87. | |K2 |80001 GSC | NL80_2 +830340 |V0340 UMa |103439.6+513921 |RS | 10.6 | 10.9 | |* | | | 12.11 | | |80158 GSC | NL80_2 +830344 |V0344 UMa |110639.0+701826 |RS | 10.1 | 10.4 | |* | | | 9.058 | | |80158 DM | NL80_2 +830346 |V0346 UMa |114823.6+350421 |BY | 11.64 |( 0.27 *)| |V | | | 14.7895 | | |80021 GSC | NL80_2 +830347 |V0347 UMa |114903.6+380031 |BY: | 11.00 |( 0.24 *)| |V | | | 8.7540 | |G7III |80021 DM | NL80_2 +830350 |V0350 UMa |120026.5+515718 |BY | 10.8 |( 0.05 )| |R | | | 1.336 | |K7V |80362 80362| NL80_2 +830352 |V0352 UMa |125539.0+545741 |ELL: | 6.78 | 6.82 | |Hp| | | 1.41353 | |A0 |80112 HIP | NL80_2 +830354 |V0354 UMa *|133538.4+491406 |EW | 10.93 | 11.21 | 11.12 |* |51420.700 | | 0.293825 | | |80384 80384| NL80_2 +830358 |V0358 UMa *|134739.5+514835 |EA | 12.15 | 13.15 | 12.45 |* |51469.83 | | 4.669 |13 | |80104 80104| NL80_2 +830368 |V0368 UMa |142605.1+580512 |M | 10.4 | 13.2 | |* |51476. | | 233. | | |80341 GSC | NL80_2 +839005 |eps UMa *|125401.8+555735 |ACV | 1.76 |( 0.02 )| |V |26437.01 | | 5.0887 | |A0p(Cr-Eu) |02100 BD | +839014 |ksi UMa |111810.9+313145 |RS | 4.38 |( 0.01 )| |V | | | | | |70157 BD | +8390161|pi. 1 UMa |083911.7+650115 |BY | 5.64 |( 0.08 )| |V | | | | | |77075 DM | +839020 |ups UMa *|095059.4+590220 |DSCT | 3.68 | 3.86 | |V |41353.540 | | 0.1327 |64 |F2IV |09888 BD | +840001 |R UMi *|162957.9+721649 |SRB | 8.5 | 11.5 | |V | | | 325.7 |50 |M7IIIe |00001 00002| +840002 |S UMi *|152934.6+783800 |M | 7.5 |< 13.2 | |V |45931. | | 331.0 |50 |M6e-M9e |00001 00002| +840003 |T UMi *|133441.0+732553 |M | 7.8 | 15.0 | |V |45761. | | 301.0 |45 |M4e-M6e |00001 00002| +840004 |U UMi *|141719.9+664739 |M | 7.1 | 13.0 | |V |45418. | | 330.92 |50 |M6e-M8e |00001 00002| +840005 |V UMi *|133841.1+741836 |SRB | 7.2 | 9.1 | |V | | | 72.0 |45 |M5IIIab: |00657 08953| +840006 |W UMi *|160827.3+861200 |EA/SD | 8.51 | 9.59 | 8.66 |V |33682.323 | | 1.7011576 |23 |A3 |00001 08953| +840007 |X UMi *|201955.6+881628 |M | 12.5 | 18.4 | |p |43530. | | 338.0 |36 |Me |08009 00685| +840008 |Y UMi |171035.2+835028 |M | 11.2 |< 14.0 | |V |27892. | | 293. | | |00142 00145| +840009 |Z UMi |150201.0+830349 |M: | 11. |< 14. | |V |26040. | | 475. : | | |00144 00145| +840010 |RR UMi *|145735.0+655557 |SRB | 4.53 | 4.73 | |V | | | 43.3 | |M5III |09895 BD | +840011 |RS UMi |155049.4+721241 |EA/D/RS | 10.81 | 11.4 | |B |44756.734 | | 6.16862258 |12 |F8 |09897 00462| +840012 |RT UMi *|170405.6+801945 |EA/SD | 10.79 | 11.47 | 10.86 |V |41306.2902 | | 1.841962 |20 *|F0 |09898 09898| +840013 |RU UMi *|133856.8+694811 |EB/DW | 10.0 | 10.66 | 10.20 |V |41596.3365 | | 0.52492618 | |F5 |09900 08953| +840014 |RV UMi |142339.6+723022 |M | 11.5 | 16. | |p |27485. | | 304. | | |03235 02594| +840017 |RY UMi |133837.8+760426 |LB: | 10.8 | 11.5 | |p | | | | |M4 |00174 BD | +840022 |SV UMi |140110.2+694150 |LB: | 9.30 | 9.50 | |Hp| | | | | |HIP HIP | +840023 |SW UMi |140458.0+662021 |LB: | 8.71 | 8.82 | |Hp| | | | | |HIP HIP | +840024 |SX UMi |142222.3+663247 |LB: | 8.07 | 8.24 | |Hp| | | | | |HIP HIP | +840025 |SY UMi |143547.5+790828 |LB: | 8.63 | 8.77 | |Hp| | | | | |HIP HIP | +840026 |SZ UMi *|145055.8+671911 |BY: | 11.41 | 12.02 | |Hp| | | | | |HIP HIP | +840027 |TT UMi |145500.2+745252 |SRB | 6.90 | 7.04 | |Hp| | | | | |HIP HIP | +840028 |TU UMi |145543.8+761824 |DSCTC | 8.84 | 8.90 | |Hp| | | | | |HIP HIP | +840029 |TV UMi |150059.7+730312 |EB | 8.77 | 8.85 | |Hp| | | | | |HIP HIP | +840030 |TW UMi |151250.9+752816 |LB | 7.93 | 8.09 | |Hp| | | | | |HIP HIP | +840031 |TX UMi |150747.1+854500 |BY: | 10.82 | 11.26 | |Hp| | | | | |HIP HIP | +840032 |TY UMi |151757.5+835134 |EA | 7.79 | 8.24 | |Hp| | | | | |HIP HIP | +840033 |TZ UMi |153000.1+702310 |LB | 8.40 | 8.60 | |Hp| | | | | |HIP HIP | +840034 |UU UMi |154116.6+755934 |BY: | 12.04 | 12.40 | |Hp| | | | | |HIP HIP | +840035 |UV UMi |161029.6+735305 |LB: | 9.47 | 9.84 | |Hp| | | | | |HIP HIP | +840036 |UW UMi |162559.6+782750 |SRB | 8.81 | 9.09 | |Hp| | | | | |HIP HIP | +840037 |UX UMi |165428.3+833022 |LB: | 9.70 | 9.87 | |Hp| | | | | |HIP HIP | +840038 |UY UMi |121520.3+874200 |GDOR: | 6.30 | 6.38 | |Hp| | | | | |75029 BD | +840039 |UZ UMi |181119.2+885925 |CST | 9.1 | | |p | | | | |G2V |00095 00095| +840040 |VV UMi *|125734.6+885727 |EA | 9.78 | 10.03 | 9.99 : |V |48557.320 | | 7.1520 |04 |A3 |79006 DM | +840041 |VW UMi |155446.8+854006 |EW | 12.10 | 12.52 | 12.52 |* |51420.948 | | 0.48885 | | |79004 GSC | +840042 |VX UMi |170140.1+751751 |GDOR | 6.48 |( 0.06 )| |B | | | 0.34511 | |A9V |79111 DM | +840043 |VY UMi |171414.0+764214 |EW | 11.09 | 12.00 | 11.70 |* |51274.913 | | 0.32540 | | |79006 79062| +840045 |WW UMi *|132757.2+725623 |EB: | 12.45 | 12.6 | 12.55 |* |51608.784 | | 0.60194 | | |80013 GSC | NL80_2 +840051 |XZ UMi |143951.6+744502 |RRAB | 11.96 | 12.47 | |* |51612.62 | | 0.58509 |25 | |80026 GSC | NL80_2 +840053 |YZ UMi |153530.2+853739 |DSCT | 12.15 | 12.53 | |* |51511.600 | | 0.096605 | | |80171 GSC | NL80_2 +840054 |ZZ UMi |153636.6+691121 |EA | 11.25 | 12.0 | |* |51593.733 | | 3.20644 |10 | |80011 GSC | NL80_2 +840055 |AA UMi *|154642.7+814231 |EA | 12.39 | 12.7 | 12.68 : |* |51571.770 | | 1.46228 |16 | |80011 GSC | NL80_2 +840065 |AL UMi |195712.2+864526 |EW | 12.35 | 12.6 : | 12.6 : |* |51495.800 | | 0.47687 | | |80013 GSC | NL80_3 +849001 |alf UMi *|023149.1+891551 |DCEPS | 1.86 | 2.13 | |V |31495.813 | | 3.9696 |50 |F7Ib-F8Ib |10096 BD | +849003 |gam UMi *|152043.7+715003 |DSCTC | 3.04 |( 0.05 )| |V |39950.367 | | 0.143009 | |A3II-III |09905 BD | +849005 |eps UMi *|164558.3+820214 |EA/D/RS | 4.19 | 4.23 | 4.21 |V |33077.75 | | 39.4809 |04 *|G5III |02994 BD | +849011 |lam UMi |171657.3+890216 |SRB | 6.35 | 6.45 | |Hp| | | | | |HIP HIP | +850001 |R Vel |100607.2-521117 |CST: | 6.49 | 6.52 | |V | | | | |K1III |00960 CoD | +850002 |S Vel *|093313.2-451231 |EA/SD | 7.74 | 9.50 | 7.83 |V |27612.3560 | | 5.9336475 |10 |A5Ve+K5IIIe |06220 00024| +850003 |T Vel |083740.8-472143 |DCEP | 7.68 | 8.34 | |V |40713.28 | | 4.63974 |30 |F6-G0II |05676 08086| +850004 |U Vel |093313.2-453054 |SR | 7.87 | 8.19 | |V | | | 37. | |M6III |05828 08953| +850005 |V Vel |092216.2-555737 |DCEP | 7.19 | 7.95 | |V |40736.25 | | 4.370991 |30 |F6-F9II |02309 08953| +850006 |W Vel *|101514.8-542842 |M | 8.3 | 14.0 | |V |40699. | | 394.72 |44 |M5-M8IIIe |00001 00002| +850007 |X Vel |095526.1-413513 |SR | 10.3 | 11.53 | |B | | | 140. : | |C4-5,4-5(Nb) |00693 08588| +850008 |Y Vel *|092901.4-521054 |M | 8.0 | 14.2 | |V |40437. | | 449.9 |40 |M8e-M9.5 |00001 00002| +850009 |Z Vel *|095254.3-541048 |M | 7.8 | 14.8 | |V |39898. | | 411.4 |46 |M9e |00001 00002| +850010 |RR Vel *|102204.1-422134 |EA/SD: | 10.7 | 11.6 | 10.9 |p |28171.546 | | 1.8541803 |13 |A |00007 00546| +850011 |RS Vel *|092345.3-485200 |M | 9.1 : |< 12.6 | |p |29810. | | 409.5 |40 |M7e |00692 08073| +850012 |RT Vel |103017.6-464113 |M: | 10.5 |< 12.0 | |p |15400. | | 141. | |M7e |00017 09423| +850013 |RU Vel *|105340.8-531128 |SR: | 10.6 | 15.3 | |p |28705. | | 125. |52 |M2e-M3e |00016 05474| +850014 |RV Vel |091900.6-503401 |EA/D: | 10.6 | 11.4 | |p |29231.739 | | 4.82109852 |13 |G0 |00007 08073| +850015 |RW Vel *|092019.4-493131 |M | 8.9 |< 13.1 | |p |30170. | | 443.1 |50 |M7III(II)e |00001 08073| +850016 |RX Vel *|092732.6-510415 |EA/SD | 10.4 | 11.2 | 10.5 |p |29243.272 | | 3.11182966 |22 |A2 |00007 08953| +850017 |RY Vel *|102041.0-551917 |DCEP | 7.86 | 8.89 | |V |44017.94 | | 28.1357 |22 |F5-G3Ib/II |10108 00694| +850018 |RZ Vel |083701.3-440653 |DCEP | 6.42 | 7.64 | |V |34845.57 | | 20.398240 |30 |G1Ib-G8 |05060 03715| +850019 |SS Vel |105251.5-532532 |LB | 11.8 | 13.2 | |p | | | | |C(N3) |00016 05474| +850020 |ST Vel |084455.9-503336 |DCEP | 9.39 | 10.08 | |V |40896.70 | | 5.8584249 |30 |K |00692 08953| +850021 |SU Vel |095002.6-420113 |SRB | 9.3 | 12.2 | |p | | | 150. : | |M5(III) |00693 08588| +850022 |SV Vel |104456.4-561722 |DCEP | 7.91 | 9.12 | |V |36195.125 | | 14.09707 |34 |F6-G5II |02309 09650| +850023 |SW Vel *|084338.7-472411 |DCEP | 7.44 | 8.96 | |V |40738.24 | | 23.4410 |15 |F8/G0Ib |00001 03715| +850024 |SX Vel *|084453.5-462035 |DCEP | 7.92 | 8.72 | |V |21015.98 | | 9.54993 |49 |F8II |00695 08086| +850025 |SY Vel |091225.7-434639 |SRB | 8.9 | 10.2 | |p | | | 63. | |M5/6III |00693 08953| +850026 |SZ Vel |095007.4-443908 |SRB | 9.4 | 10.9 | |p | | | 150. : | |M5e |00693 08953| +850027 |TT Vel *|102016.5-461404 |EA/SD: | 10.5 | 11.9 | 10.7 |p |28633.367 | | 2.1083805 |13 |A5 |00007 08953| +850028 |TU Vel |101835.3-451432 |CST: | 10.5 | | |p | | | | |G0 |01113 CoD | +850029 |TV Vel |103427.9-541428 |M | 11. |< 15. | |p |28285. | | 365.2 | |Ce(R8e) |00001 08613| +850030 |TW Vel |090306.6-544551 |SR | 11.0 |< 13.5 | |p | | | 280. : | |Ce(Ne) |00016 UCAC2| +850031 |TX Vel |091357.9-545012 |I: | 10.0 | 13. | |p | | | | |G5 |00016 08953| +850032 |TY Vel |091818.6-543609 |CST: | 11.84 | 11.93 | |V | | | | | |09963 UCAC2| +850033 |TZ Vel |093027.6-530849 |M | 11.3 |< 13.5 | |p |28901. | | 237.4 | | |00001 00696| +850034 |UU Vel |093533.2-540326 |M | 11.0 |< 14.0 | |p |28930. | | 408.9 | |M2e(S7,8e) |00692 00021| +850035 |UV Vel |094846.9-561939 | | 12. | 15. | |p | | | | | |00029 UCAC2| +850036 |UW Vel *|094905.2-562447 | | 12.0 |< 15. | |p | | | | | |00029 UCAC2| +850037 |UX Vel |104012.8-544255 |M | 10. |< 17. | |p |20265. | | 226. | |M0e |00697 08613| +850038 |UY Vel |104903. -544453:| | 12.5 | 16. | |p | | | | | |00697 08613| +850039 |UZ Vel |104916.7-552529 |SRA | 12.4 | 14.0 | |p |24550. | | 354. | |C |03551 03551| +850040 |VV Vel |104947.4-565105 |SR | 12.5 | 14.3 | |p |23868. | | 270. | | |03551 03551| +850041 |VW Vel |105508.4-543343 | | 11.0 |< 16. | |p | | | | | |00697 CPD | +850043 |VY Vel |110020.4-553053 | | 12.0 | 15.0 | |p | | | | | |00029 2MASS| +850044 |VZ Vel |102811.0-511108 |SRA | 10.3 | 12.5 | |p |15511. | | 317. | |M6e |00031 08953| +850045 |WW Vel |105023.9-484024 |M | 10.8 | 14. | |p |23173. | | 187.4 | |M5e |00031 CPD | +850046 |WX Vel |104859.9-541054 |M | 11.2 | 14.2 | |p |28910. | | 411.5 | |M5e-M7IIIe |00016 08613| +850047 |WY Vel |092159.1-523352 |ZAND | 8.8 | 10.2 | |p | | | | |M3epIb:+B |00692 08953| +850048 |WZ Vel |101733.3-475650 |SRB | 9.0 | 10.0 | |p | | | 130. : | |M3-M5/6II/III |00692 08953| +850049 |XX Vel |103608.6-560236 |DCEP | 10.25 | 11.22 | |V |34909.742 | | 6.98457 |26 | |02309 00694| +850050 |XY Vel |110458.9-553905 |EA | 11.5 | 12.8 | |p |23901.375 | | 2.51037 |11 | |00032 CoD | +850051 |XZ Vel |101728.0-500550 | | 12.0 |< 14.0 | |p | | | | |C(N) |10109 CoD | +850052 |YY Vel |103210.4-561457 |EA/D | 10.6 | 11.1 | |p |23871.249 | | 4.1636 |12 | |00035 08613| +850053 |YZ Vel *|103705.1-560202 |EA/D | 12.2 | 12.8 | 12.8 |p |26363.458 | | 5.488342 |07 *| |03551 03551| +850054 |ZZ Vel *|103754.1-555637 |EA/DM | 9.93 | 10.39 | 10.0 |V |23700.420 | | 2.87615 |16 |A0V |00035 08613| +850055 |AA Vel *|105117.0-562437 |EB/DM | 9.68 | 9.9 | 9.9 |B |23852.212 | | 2.33432 | |B2 |00698 03715| +850057 |AC Vel *|104618.4-564946 |EB/DM | 8.6 | 9.11 | 9.11 |V |29342.594 | | 4.5622426 | |B3III/V+B3III/V |00007 03715| +850058 |AD Vel |104526.6-560942 |M | 11.8 |< 14.4 | |p |24261. | | 161. | | |00699 08613| +850059 |AE Vel |093651.5-530158 |DCEP | 9.88 | 10.73 | |V |40772.20 | | 7.13357 |33 | |07934 09967| +850060 |AF Vel *|105302.5-495423 |RRAB | 10.68 | 11.78 | |V |41432.267 | | 0.5273984 |15 |F1-F4 |07984 06286| +850062 |AH Vel *|081200.0-463840 |DCEPS | 5.50 | 5.89 | |V |42035.675 | | 4.227171 |50 |F7Ib-II |09968 CoD | +850063 |AI Vel *|081405.2-443433 |DSCT | 6.15 | 6.76 | |V | | | 0.11157411 | |A2p-F2pIV/V |10112 00702| +850065 |AL Vel *|083111.3-473957 |EA/GS/D | 8.60 | 8.93 | |V |42510.04 | | 96.107 |09 |K0III+A3III/V |00001 08086| +850067 |AN Vel |080609.9-433953 |RRAB | 11.7 | 13.8 | |p |26309.496 | | 0.3894864 |16 | |00705 00705| +850068 |AO Vel *|081153.9-484446 |EA/DM | 9.35 | 9.79 | 9.55 : |V |24269.333 | | 1.5845993 |15 *|A1p(Si)V |00049 03389| +850069 |AP Vel *|083945.8-435139 |CEP(B) | 9.49 | 10.48 | |V |34900.805 | | 3.12776 |33 |F9 |07326 03715| +850070 |AQ Vel *|102926.4-550314 |EA/KE: | 11.5 | 12.0 |( 0.05 )|p |24358.145 | | 1.042499 |12 | |00060 00060| +850071 |AR Vel |104003.6-564427 |EA/D | 12.0 | 12.6 | |p |24193.324 | | 3.21275 |12 | |00060 00060| +850072 |AS Vel *|082818.2-385819 |EA/KE: | 8.3 | 8.92 | 8.4 |V |26454.440 | | 1.55788874 |12 |A3 |00007 08953| +850073 |AT Vel *|080439.7-450126 |EA/DM | 12.1 | 12.6 | |p |26362.27 | | 11.7971 |07 | |00706 00706| +850074 |AU Vel *|080638.5-445554 |EA/SD | 11.9 | 13.6 | |p |26166.420 | | 5.67380 |10 *| |00706 00706| +850075 |AV Vel *|080701.3-473846 |EA/SD | 11.9 | 14.6 : | |p |26172.278 | | 3.8805 |08 | |00706 00706| +850076 |AW Vel *|080811.7-442054 |EA/DM: | 11.5 | 12.2 | |p |26176.139 | | 1.99246 |11 | |00706 00706| +850077 |AX Vel *|081049.3-474155 |CEP(B) | 7.93 | 8.48 | |V |43878.253 | | 2.592891 |42 |F6II |09970 08953| +850078 |AY Vel *|082017.3-435257 |EB/DM: | 9.46 | 9.9 | 9.7 |V |26308.903 | | 1.617677 | |B9IV/V |00001 03389| +850081 |BC Vel *|084320.6-443901 |EA/D: | 11.8 | 12.3 | 12.3 |p |26174.647 | | 1.1735824 |22 |F8 |00706 00706| +850082 |BD Vel *|084444.0-430524 |EA/D | 12.0 | 13.0 | |p |26168.860 | | 13.2290 |12 | |00706 00706| +850083 |BE Vel *|085016.4-485920 |EB | 12.4 | 13.0 | 12.5 |p |26173.489 | | 0.6946717 | | |00706 00706| +850084 |BF Vel *|085627.0-395836 |EA/SD | 11.4 | 11.9 |( 0.04 )|p |28253.07 | | 0.70402 |20 | |00709 08086| +850085 |BG Vel |090815.8-512611 |DCEP | 7.43 | 7.91 | |V |34918.94 | | 6.923655 |32 |F7/8II |05060 08953| +850088 |BK Vel |080838.1-435935 |M | 12.0 | 16.0 : | |p |24802. | | 461. | |Me |00710 00710| +850089 |BL Vel |080838.6-463101 |M | 11.7 | 16.2 | |p |27383. | | 303. | |Me |00710 00710| +850091 |BN Vel |081305.5-480756 |SRA | 11.1 | 11.7 | |p |26659. | | 118.5 | |M4/6III |00710 CoD | +850095 |BR Vel *|082720.0-400414 |EA | 12.1 | 13.0 | |p |26141.36 | | 7.72461 |05 | |00710 00710| +850098 |BU Vel *|084006.3-424943 |EW | 10.49 | 11.07 | 10.96 |V |41013.386 | | 0.5162856 | |F0 |00710 05151| +850099 |BV Vel *|084447.6-445910 |EA | 12.5 | 13.4 | |p |26183.48 | | 4.2308 |15 *| |00710 00710| +850102 |BY Vel |090251.7-492816 |EA | 10.6 | 11.5 | |p |28684.179 | | 3.455370 |14 *| |00696 CoD | +850103 |BZ Vel *|091420.8-494619 |EB/KE | 10.3 | 10.9 | 10.4 |p |29776.193 | | 1.262417 | |A0 |00696 08073| +850104 |CC Vel |093802.3-452340 |M | 11.5 |< 15. | |p |28810. | | 327. | |M7e |00016 UCAC2| +850105 |CD Vel |094438.2-455237 |RRAB | 11.3 | 12.4 | |p |28721.235 | | 0.5734894 |14 |F |00696 06286| +850106 |CE Vel |094900.9-414925 |LB | 10.1 | 11.1 | |p | | | | |M4 |00016 08588| +850107 |CF Vel |101057.5-503053 |M | 10.3 | 15.5 | |p |28882. | | 245. | |Me |00016 08953| +850108 |CG Vel |103921.9-425049 |EA/SD | 10.6 | 12.5 | |p |28874.45 | | 3.685 |11 : | |00016 CoD | +850109 |CH Vel |104820.0-413038 |M | 9.9 |< 13.5 | |p |28275. | | 327. | | |00016 02338| +850110 |CI Vel |110101.3-542442 |M | 11.0 | 13.5 | |p |28230. | | 142.5 | |M0e |00016 02338| +850111 |CK Vel *|103730.8-560742 |EA | 10.0 | 10.6 | |p |23879.400 | | 35.009 /N| | |00712 08613| +850113 |CM Vel |100732.8-531537 |SRC | 8.7 | 11.0 | |p |28780. | | 780. | |M0-M5(II) |00714 05625| +850115 |CO Vel |082941.3-402002 |DCEP | 12.15 | 12.93 | |V |35567.46 | | 4.27536 |26 | |00001 00716| +850119 |CS Vel *|094110.3-534858 |DCEP | 11.24 | 12.21 | |V |44021.06 | | 5.90474 |25 | |00719 10114| +850120 |CT Vel |083205.1-442328 |M | 12.4 |< 15.5 | |p |25923. | | 264. | | |00720 00720| +850121 |CU Vel *|085833.0-414752 |UGSU | 10.0 | 15.5 : | |V | | |( 164.7 ) | | |08092 08852| +850122 |CV Vel *|090038.0-513320 |EA/DM | 6.69 | 7.19 | 7.17 |V |42048.6689 | | 6.889494 |07 *|B2.5V+B2.5V |10116 03711| +850123 |CW Vel *|090221.3-525029 |EA/SD | 10.10 | 11.12 |( 0.1 pg)|V |44248.7584 | | 2.360927 |17 |B5III/IV |00001 03711| +850124 |CX Vel |090638.1-522127 |DCEP | 12.36 | 13.3 | |B |41002.28 | | 6.255425 |28 | |00001 00696| +850126 |CZ Vel *|091044.5-504241 |EA/D | 10.8 | 11.4 | 11.1 |p |29756.463 | | 5.19287 |17 *| |00696 CoD | +850127 |DD Vel |091209.6-502234 |CWA | 12.18 | 13.04 | |V |34746.312 | | 13.1948 |50 | |02309 00696| +850130 |DG Vel |091523.6-524502 |I | 12.1 | 12.9 | |p | | | | | |00696 00696| +850132 |DI Vel |091704.5-535210 |M | 12.2 |< 14.0 | |p |28172. | | 259. | | |00696 00696| +850133 |DK Vel *|091716.7-530506 |DCEP | 10.34 | 10.88 | |V |41354.250 | | 2.48164 |40 |F8II |06223 06826| +850134 |DL Vel *|091805.5-460431 |EA | 11.8 | 12.4 | 12.1 |p |29776.216 | | 0.56355802 |18 | |00696 CoD | +850135 |DM Vel *|091911.8-502311 |SRB: | 10.9 | 11.9 | |p | | | 175. : | |M6 |00696 08073| +850136 |DN Vel |091937.7-454048 |EA/GS/D | 9.57 | 10.1 : | |V |28450.69 | | 12.8977 |09 *|A0III/IV |00696 08953| +850138 |DP Vel |093015.8-530331 |DCEP | 11.51 | 12.20 | |V |35250.94 | | 5.48438 |24 | |02309 00696| +850139 |DQ Vel *|093034.2-501154 |EA | 10.7 | 11.6 | 11.0 |p |30881.20 | | 6.08337 |13 *| |00696 CoD | +850140 |DR Vel |093141.0-493918 |DCEP | 9.12 | 9.97 | |V |34930.70 | | 11.1993 |42 | |10108 08953| +850141 |DS Vel *|093427.1-523223 |EW | 10.5 | 11.0 | 10.8 |p |29015.211 | | 0.721565 | | |00696 08953| +850143 |DU Vel |094542.1-491330 |EA | 10.8 | 11.5 | |p |27485.313 | | 1.552563 |12 | |00696 CoD | +850145 |DW Vel |095003.4-520005 |M | 10.0 | 16. | |p |27549. | | 476. | |M8e |00696 00696| +850146 |DX Vel *|095146.0-505324 |EA/SD: | 10.2 | 11.0 | 10.3 |p |29037.269 | | 1.117296 |14 |A5 |00696 08953| +850147 |DY Vel |095215.5-493132 |M | 11.1 |< 16. | |p |31484. | | 315. | |M7e |00696 00696| +850148 |DZ Vel |095436.6-495956 |EA/D | 10.5 | 11.0 | |p |29747.194 | | 2.81044 |15 *|G0 |00696 00696| +850149 |EE Vel |095522.6-495244 |LB | 10.9 | 12.56 | |B | | | | |C(R) |00696 00696| +850151 |EG Vel |105016.1-443214 |EA | 10. | 12. | |p | | | | |F1 |00085 08953| +850155 |EL Vel *|083050.3-400422 |EA/D | 11.0 | 11.6 | |p |26414.290 | | 2.758420 |10 *| |00720 CoD | +850156 |EM Vel |083540.3-404008 |I | 12.3 | 13.5 | |p | | | | | |00720 00720| +850157 |EN Vel |083652.8-464344 |M | 11.1 |< 14.3 | |p |26388. | | 107. | |C |00720 00720| +850158 |EO Vel *|083903.3-434356 |EA/DM | 11.37 | 11.90 | 11.90 |V |41713.60 | | 5.32966 |10 *|A0 |08094 05151| +850159 |EP Vel *|084141.3-480645 |SRA | 9.8 | 11.2 | |p |26335. | | 240. | |M6 |00720 08086| +850160 |EQ Vel |084346.6-450512 |EA/SD | 11.0 | 12.2 | |p |26507.2858 | | 1.0802672 |13 *|B7 |00720 05151| +850162 |ES Vel *|085918.0-500834 |EA/D | 12.5 | 13.2 | 12.7 |p |28846.41 | | 5.32946 |11 | |00720 00720| +850163 |ET Vel *|090902.5-463750 |EA/D | 11.9 | 12.3 | 12.1 |p |29778.222 | | 3.080858 |12 *| |00720 CoD | +850167 |EX Vel |092001.5-525122 |DCEP | 11.21 | 12.07 | |V |34920.945 | | 13.2341 |44 | |02309 00720| +850168 |EY Vel *|092046.5-514245 |EA | 12.5 | 13.6 | |p |28982.756 | | 4.07908 |10 | |00720 00720| +850171 |FG Vel |093323.7-524521 |DCEP | 11.54 | 12.13 | |V |34916.875 | | 6.45320 |35 | |02309 00720| +850172 |FH Vel |093711.4-530615 |EA/KE: | 11.6 | 12.0 | |p |29753.26 | | 1.457473 |10 *| |00720 00720| +850174 |FK Vel |094336.1-464458 |SRB | 12.1 | 13.5 | |p |31230. | | 206. | |C(N) |01007 00720| +850175 |FL Vel |094710.9-484245 |SR | 11.4 | 12.3 | |p |28280. | | 840. | | |00720 00720| +850176 |FM Vel *|094742.3-532811 |EW/KW | 12.2 | 12.9 | 12.9 |p |29043.238 | | 0.3895262 | | |00720 00720| +850177 |FN Vel |094841.5-553110 |CEP | 10.9 | 12.1 | |p |33240.35 | | 5.32422 | | |00090 CPD | +850179 |FP Vel |095325.9-523034 |LB | 12.0 | 13.38 | |B | | | | |C |00720 00720| +850181 |FR Vel |095904.0-503049 |M: | 12.4 |< 14.0 | |p |27485. | | 430. | | |00720 00720| +850182 |FS Vel *|104600.3-435917 |RRAB | 11.54 | 12.59 | |V |39560.324 | | 0.4757324 |15 |A5-F5 |05233 02382| +850183 |FT Vel *|084230.6-512512 |EB/SD: | 10.1 | 11.2 | 10.5 |p |38374.535 | | 1.05975 | | |04371 08953| +850184 |FU Vel |093350.6-555506 |EA/SD: | 10.3 | 12.1 | |p |28655.225 | | 2.446805 |12 *|A0 |08040 08953| +850185 |FV Vel |094606.2-440822 |EA | 10.82 | 12.2 | |V |52463.5142 | | 1.521100 |13 | |03973 DM | +850186 |FW Vel *|104525.9-522420 |EA/DM | 9.5 | 10.2 | 10.0 |p |28694.240 | | 2.384082 | |A2 |03918 05474| +850187 |FX Vel *|083235.8-375902 |EB/KE | 9.70 | 10.70 | 10.5 |V |34302.525 | | 1.052565 | |Be |05857 08953| +850188 |FY Vel *|083223.4-493605 |EB:/GS | 6.84 | 7.06 | 7.03 |V |40210.586 | | 33.72 | |B2Ibpe |05943 CoD | +850189 |FZ Vel *|085852.4-471405 |DSCTC | 5.14 | 5.17 | |V | | | 0.065 | |A6/7(m)-F0m |05944 CoD | +850190 |GG Vel *|091249.8-432916 |EA | 8.72 | 9.07 | |V |41329.98944 | | 1.4752160 | *|A0V |10050 CoD | +850191 |GH Vel |091343.9-483905 |SRB | 9.05 | 9.27 | |V |40664. | | 75. | |M5III |05828 CoD | +850192 |GI Vel |092501.4-452235 |SRB | 7.88 | 8.05 | |V | | | 120. : | |M3III |05828 CoD | +850193 |GK Vel |092507.9-435836 |SRB | 6.26 | 6.39 | |V | | | 120. : | |M3III-M5III |05828 CoD | +850194 |GL Vel |092644.0-533055 |SRB | 7.31 | 8.01 : | |V |40644. | | 117. | |M4II/III |05828 08953| +850195 |GM Vel |094740.9-463825 |SRB | 8.83 | 9.10 | |V | | | 120. | |M2 |05828 CoD | +850196 |GN Vel |105531.0-412333 |M: | 11.9 |< 13.0 | |p | | | | |Me |06645 06316| +850197 |GO Vel |083739.7-402608 |SRB | 6.61 | 6.98 | |V | | | 75. | |M4III-M5III |06645 CoD | +850198 |GP Vel *|090206.9-403317 |E+ACYG+XP | 6.76 | 6.99 | 6.90. |V |44275.20 | | 8.9647 | |B0.5Iaeq |10051 08086| +850201 |GS Vel |104530.8-563642 |LC | 9.21 | 9.45 | |V | | | | |M2Ib |06149 05151| +850202 |GT Vel |091037.7-430456 |EA | 9.7 | 10.3 | |p |41689.080 | | | |A2/3III/IV |06847 06847| +850203 |GU Vel |082736.6-530519 |DSCTC | 5.08 | 5.11 | |V | | | 0.07 | |A9/F0III/IV |07489 CoD | +850204 |GV Vel *|084233.8-471225 |LB | 10.0 | 12.00 | |V | | | | |C(N) |10130 07868| +850205 |GW Vel |085035.8-453256 |GCAS | 8.97 | 9.50 | |V | | | | |B2Vne |04456 CoD | +850206 |GX Vel |091104.4-445204 |ACYG: | 4.97 | 5.04 | |V | | | | |B5Ia |03712 CoD | +850207 |GY Vel |101640.1-511217 |LB | 6.23 | 6.5 | |V | | | | |M4/5III |06324 10118| +850208 |GZ Vel |101936.8-550146 |LC | 3.43 | 3.81 | |R | | | | |K3II |06352 05625| +850209 |HH Vel |104209.2-534313 |SRB | 8.34 | 9.54 | |V | | | 100. : | |M5/6III |07871 CPD | +850210 |HI Vel |104410.6-530538 |LB | 8.33 | 8.62 | |V | | | | |M3/5III |07871 CoD | +850211 |HK Vel |104551.4-544339 |LB | 9.09 | 9.45 | |V | | | | |M3-M8 |07871 04641| +850212 |HL Vel |104754.1-553927 |LB | 9.62 | 9.99 | |V | | | | |M6-M7 |07871 04641| +850213 |HM Vel |104859.6-563609 |SRB | 8.57 | 9.08 | |V | | | 70. : | |M6/7III |07871 04641| +850216 |HP Vel |104102.7-520509 |LB | 8.42 | 8.87 | |V | | | | |S5,2(M4/5) |07871 CoD | +850217 |HQ Vel |104543.9-533743 |LB | 7.30 | 7.56 | |V | | | | |M1/2III |07871 CPD | +850218 |HR Vel |104733.5-532115 |LB | 9.24 | 9.87 | |V | | | | |M2/3 |07871 CoD | +850219 |HS Vel |105402.6-492114 |M | 11.3 | 16.0 | |p | | | | |M7e |02935 | +850220 |HT Vel |105913.4-570715 |SRB | 10.65 | 11.07 | |V | | | 55. : | |M5-M7 |07871 04641| +850222 |HV Vel *|083552.0-505811 |ACVO: | 5.77 | 5.81 | |V | | | 2.66745 | |B9p(Si) |09919 CoD | +850223 |HW Vel *|083923.8-532623 |BCEP | 5.46 | 5.52 | |V |42745.000 | | 0.26145 | |B6V |08565 04745| +850224 |HX Vel *|084216.2-480557 |ELL: | 5.48 | 5.53 | 5.50 : |V |42758.253 | | 1.12488 | |B1.5Vn |09019 CoD | +850225 |HY Vel *|084225.4-530650 |ELL: | 4.83 | 4.90 | 4.90 |V |44627.727 | | 3.106 | |B3IV |10093 04745| +850226 |HZ Vel |084952.4-390830 |DSCTC | 6.39 |( 0.025 )| |V | | | 0.087 | |A5III |08215 CoD | +850227 |II Vel |085225.1-491405 |E/D | 9.52 | 9.65 | |V | | | 2.9757 | | |08389 CoD | +850228 |IK Vel |090513.9-531245 |EB/DM | 8.50 | 8.95 | |V | | | 1.992321 | |B5 |08389 CoD | +850229 |IL Vel *|091731.1-525020 |BCEP | 9.13 |( 0.15 )| |V | | | 0.18465 | |B2III |08568 CoD | +850230 |IM Vel *|093625.4-484504 |ACVO | 6.50 |( 0.04 )| |B |43181.00 | | 2.85204 | |A8p(Sr-Eu-Cr) |10140 CoD | +850231 |IN Vel *|093713.0-420115 |RS: | 8.84 | 9.13 | |V | | | | |K2IIIp |08570 CoD | +850232 |IO Vel |093803.2-541309 |ACV | 6.9 |( 0.03 )| |V |43185.702 | | 1.08184 |65 |A0p(Si-Sr) |09919 CPD | +850233 |IP Vel *|094327.6-511341 |E | 6.03 |( 0.19 )| |B |42861.6697 | | | |B6V |08572 CoD | +850236 |IS Vel *|080943.2-475614 |BCEP | 5.23 | | |V | | | 0.108 | |B1IVn |08787 CoD | +850237 |IT Vel *|081801.1-470531 |ELL: | 7.03 | 7.08 | 7.08 |V |42524.231 | | 2.088 | |B7III |08805 CoD | +850238 |IU Vel |090022.3-431026 |GCAS | 5.97 | 6.08 | |V | | | | |B2.5Vne |10142 CoD | +850239 |IV Vel |095710.9-523820 |BCEP | 5.99 |( 0.013 )| |B |43215.675 | | 0.1608 | |B3IV |08420 CoD | +850240 |IW Vel |105707.8-504554 |DSCTC | 5.90 |( 0.016 )| |V | | | 0.150 | |A4V |08403 CoD | +850241 |IX Vel |081519.0-491321 |NL | 9.1 | 10.0 | |p | | | | | |67360 CoD | +850242 |IY Vel |085519.2-450230 |* | 6.23 | 6.27 | |V | | | | | |67362 CoD | +850243 |IZ Vel |090120.9-415151 |* | 5.53 | 5.56 | |V | | | | | |67362 CoD | +850244 |KK Vel |090742.5-443757 |BCEP | 6.75 | 6.80 | |V | | | | | |67365 67366| +850245 |KL Vel |091230.5-433648 |ACV | 5.56 | 5.57 | |V | | | | | |67368 CoD | +850246 |KM Vel |094114.0-492247 |M | 8.12 | 8.99 | |J | | | | | |67189 67186| +850247 |KN Vel |094743.9-495636 |E | 7.1 |( 0.09 )| |V | | | | | |67370 CoD | +850250 |KQ Vel |105501.0-421504 |ACV | 6.10 | 6.12 | |V | | | | | |67198 CoD | +850251 |KR Vel |083959.4-531540 |ACV | 7.22 | 7.27 | |V | | | | | |68187 68377| +850253 |KT Vel |084219.0-530600 |ACV | 5.49 | 5.56 | |V | | | | | |68187 68377| +850255 |KV Vel |105440.6-484703 |R/PN | 11.78 | 12.34 | |V | | | | | |68312 68311| +850256 |KW Vel |080841.6-492950 |ACV | 7.84 | 7.98 | |U | | | | | |69056 CoD | +850257 |KX Vel |085033.5-463145 |E | 4.87 |( 0.08 b )| |B | | | | | |69287 CoD | +850258 |KY Vel |085707.1-521532 |ACV | 10. |( 0.04 )| |V | | | | | |69233 CoD | +850259 |KZ Vel |095307.7-550115 |SRD | 8.64 |( 0.07 )| |V | | | | | |69288 CPD | +850260 |LL Vel |110342.6-512110 |ELL: | 6.71 | 6.76 | |V | | | | | |69289 CoD | +850261 |LM Vel |084047.8-450330 |ACYG | 7.54 | 7.57 | |V | | | | | |70077 CoD | +850262 |LN Vel |084156.9-452439 |ACYG | 5.19 | 5.25 | |V | | | | | |70077 CoD | +850266 |LR Vel |091842.4-513338 |ACYG | 5.82 | 5.96 | |V | | | | | |70077 CoD | +850268 |LT Vel |084813.9-445222 |EB | 9.95 | 10.46 | |V | | | | | |71077 71236| +850269 |LU Vel |095834.3-462530 |UV | 11.5 | 13.76 | |U | | | | | |71095 CoD | +850271 |LW Vel |101322.8-511359 |DSCTC | 5.24 | 5.29 | |V | | | | | |71017 CoD | +850272 |LX Vel |103022.4-570439 |EB/GS | 6.60 | 6.66 | |b | | | | | |71074 CPD | +850273 |LY Vel |092034.8-473401 |LPB | 7.75 |( 0.02 )| |V | | | | | |72172 CoD | +850274 |LZ Vel |095439.1-431916 |RS: | 7.27 | 7.39 | |V | | | | | |72173 CoD | +850276 |MN Vel |083800.9-465415 |SRA | 7.89 | 9.35 | |T | | | | | |73157 10204| +850277 |MO Vel |084828.6-420119 |ACVO | 9.58 |( 0.01 B )| |V | | | | | |73339 CoD | +850278 |MP Vel |091107.5-431612 |DSCTC | 7.8 |( 0.02 )| |V | | | | | |73067 CoD | +850279 |MQ Vel |092118.5-453057 |M | 3.5 | 5.2 | |K | | | | | |73029 2MASS| +850281 |MS Vel |093614.7-523241 |SRA | 8.13 | 8.98 | |T | | | | | |73157 CoD | +850282 |MT Vel |094538.8-455440 |DSCTC | 8.1 |( 0.09 )| |B | | | | | |73067 CoD | +850283 |MU Vel |094656.0-473042 |M | 8.6 | 10.4 | |K | | | | | |73029 2MASS| +850284 |MV Vel |102054.8-560236 |BE | 4.49 |( 0.06 )| |V | | | | | |73309 CPD | +850285 |MW Vel |110431.4-511319 |SRB | 7.58 | 8.86 | |V | | | 188. | | |00001 HIP | +850286 |MX Vel |080520.3-465842 |BE: | 6.09 | 6.16 | |Hp| | | | | |HIP HIP | +850287 |MY Vel |080638.3-433558 |LPB | 8.64 | 8.69 | |Hp| | | | | |HIP HIP | +850288 |MZ Vel |080733.5-491613 |LB: | 7.74 | 7.84 | |Hp| | | | | |HIP HIP | +850289 |NN Vel |080909.5-484104 |ACYG: | 5.62 | 5.65 | |Hp| | | | | |HIP HIP | +850290 |NO Vel |081336.2-465930 |EB | 5.08 | 5.12 | |Hp| | | | | |HIP HIP | +850291 |NP Vel |081610.4-433813 |LB: | 8.80 | 8.90 | |Hp| | | | | |HIP HIP | +850292 |NQ Vel |082320.0-445756 |IA: | 7.63 | 7.77 | |Hp| | | | | |HIP HIP | +850293 |NR Vel |082750.5-500600 |GCAS: | 7.56 | 7.75 | |Hp| | | | | |HIP HIP | +850294 |NS Vel |083105.9-390340 |GCAS: | 7.23 | 7.37 | |Hp| | | | | |HIP HIP | +850295 |NT Vel |083424.4-544003 |EA | 8.33 | 9.01 | |Hp| | | | | |HIP HIP | +850296 |NU Vel |083541.0-521920 |LB | 7.32 | 7.50 | |Hp| | | | | |HIP HIP | +850297 |NV Vel |083636.3-523440 |IB: | 9.47 | 9.72 | |Hp| | | | | |HIP HIP | +850298 |NW Vel |083843.3-474716 |SRD | 7.92 | 8.05 | |Hp| | | | | |HIP HIP | +850299 |NX Vel |083909.5-402509 |E | 7.25 | 7.38 | |Hp| | | | | |HIP HIP | +850300 |NY Vel |084019.2-401550 |ACV | 5.15 | 5.19 | |Hp| | | | | |HIP HIP | +850301 |NZ Vel |083957.6-530317 |ELL: | 5.11 | 5.14 | |Hp| | | | | |HIP HIP | +850302 |OO Vel |084008.4-515630 |ACV | 7.41 | 7.44 | |Hp| | | | | |HIP HIP | +850303 |OP Vel |084630.6-455445 |ACYG: | 5.50 | 5.55 | |Hp| | | | | |HIP HIP | +850304 |OQ Vel *|084623.2-525037 |RRC: | 7.73 | 7.77 | |Hp| | | | | |HIP HIP | +850305 |OR Vel |084820.9-465438 |BE | 8.98 | 9.14 | |Hp| | | | | |HIP HIP | +850306 |OS Vel |085053.2-434505 |ACYG: | 7.68 | 7.75 | |Hp| | | | | |HIP HIP | +850307 |OT Vel |085131.0-463228 |SRB | 7.61 | 7.72 | |Hp| | | | | |HIP HIP | +850308 |OU Vel |085508.7-432800 |BE | 8.04 | 8.12 | |Hp| | | | | |HIP HIP | +850309 |OV Vel |085523.1-465328 |EB: | 8.19 | 8.32 | |Hp| | | | | |HIP HIP | +850310 |OW Vel |085657.3-502124 |SRD: | 7.73 | 7.91 | |Hp| | | | | |HIP HIP | +850311 |OX Vel |085944.3-541413 |ACV: | 7.60 | 7.71 | |Hp| | | | | |HIP HIP | +850312 |OY Vel |090144.6-521119 |ACV | 5.19 | 5.22 | |Hp| | | | | |HIP HIP | +850313 |OZ Vel |090309.4-383635 |LB: | 7.69 | 7.79 | |Hp| | | | | |HIP HIP | +850314 |PP Vel |090347.1-540430 |LB: | 8.32 | 8.43 | |Hp| | | | | |HIP HIP | +850315 |PQ Vel |090523.4-421002 |EA | 7.66 | 7.83 | |Hp| | | | | |HIP HIP | +850316 |PR Vel |090557.0-524803 |LPB | 8.22 | 8.26 | |Hp| | | | | |HIP HIP | +850317 |PS Vel |090952.8-472834 |LPB | 6.78 | 6.81 | |Hp| | | | | |HIP HIP | +850318 |PT Vel |091057.7-431603 |EA | 7.05 | 7.60 | |Hp| | | | | |HIP HIP | +850319 |PU Vel |091500.8-401624 |EB | 8.52 | 8.65 | |Hp| | | | | |HIP HIP | +850320 |PV Vel |091554.8-495825 |ACYG: | 7.51 | 7.66 | |Hp| | | | | |HIP HIP | +850321 |PW Vel |091627.2-383937 |LB: | 8.37 | 8.55 | |Hp| | | | | |HIP HIP | +850322 |PX Vel |091700.4-512620 |ACV | 7.53 | 7.56 | |Hp| | | | | |HIP HIP | +850323 |PY Vel |091806.5-444537 |SRD: | 9.32 | 9.46 | |Hp| | | | | |HIP HIP | +850324 |PZ Vel |091853.3-494747 |LPB | 8.43 | 8.47 | |Hp| | | | | |HIP HIP | +850325 |QQ Vel |092042.1-421043 |BE | 9.74 | 9.87 | |Hp| | | | | |HIP HIP | +850326 |QR Vel |092158.4-511035 |BE | 10.13 | 10.30 | |Hp| | | | | |HIP HIP | +850327 |QS Vel |092627.4-511028 |ACV | 8.28 | 8.33 | |Hp| | | | | |HIP HIP | +850328 |QT Vel |092649.6-514611 |EA | 8.02 | 8.23 | |Hp| | | | | |HIP HIP | +850329 |QU Vel |093417.8-410322 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +850330 |QV Vel |093538.2-483049 |ACV | 8.66 | 8.73 | |Hp| | | | | |HIP HIP | +850331 |QW Vel |094840.3-552943 |LB | 7.41 | 7.61 | |Hp| | | | | |HIP HIP | +850332 |QX Vel |094856.5-475445 |EB | 7.98 | 8.21 | |Hp| | | | | |HIP HIP | +850333 |QY Vel |094919.9-503934 |EA | 8.25 | 8.46 | |Hp| | | | | |HIP HIP | +850334 |QZ Vel |095300.1-552224 |LPB | 6.42 | 6.47 | |Hp| | | | | |HIP HIP | +850335 |V0335 Vel |095350.1-510848 |LPB | 5.88 | 5.91 | |Hp| | | | | |HIP HIP | +850336 |V0336 Vel |100501.8-565353 |DSCTC | 6.93 | 6.96 | |Hp| | | | | |HIP HIP | +850337 |V0337 Vel |100918.1-503823 |GCAS | 7.83 | 8.10 | |Hp| | | | | |HIP HIP | +850338 |V0338 Vel |101148.0-500924 |ACV | 7.86 | 7.92 | |Hp| | | | | |HIP HIP | +850339 |V0339 Vel |101555.7-443416 |LB | 8.23 | 8.47 | |Hp| | | | | |HIP HIP | +850340 |V0340 Vel |101812.0-504925 |E: | 7.89 | 7.99 | |Hp| | | | | |HIP HIP | +850341 |V0341 Vel |101929.4-453849 |EA | 7.90 | 8.30 | |Hp| | | | | |HIP HIP | +850342 |V0342 Vel |102011.7-523606 |ACYG: | 7.21 | 7.27 | |Hp| | | | | |HIP HIP | +850343 |V0343 Vel |102111.3-514456 |EA | 8.31 | 8.95 | |Hp| | | | | |HIP HIP | +850344 |V0344 Vel |102205.7-493152 |DSCTC | 7.96 | 8.00 | |Hp| | | | | |HIP HIP | +850345 |V0345 Vel |102208.9-491737 |EA | 7.49 | 7.95 | |Hp| | | | | |HIP HIP | +850346 |V0346 Vel |102439.6-541919 |LB | 6.50 | 6.84 | |Hp| | | | | |HIP HIP | +850347 |V0347 Vel |102546.4-545919 |LB | 7.03 | 7.13 | |Hp| | | | | |HIP HIP | +850348 |V0348 Vel |102615.6-535329 |SRC | 6.81 | 7.07 | |Hp| | | | | |HIP HIP | +850349 |V0349 Vel |102922.7-503414 |ACV: | 9.64 | 9.78 | |Hp| | | | | |HIP HIP | +850350 |V0350 Vel |103003.1-430747 |ACV | 7.45 | 7.53 | |Hp| | | | | |HIP HIP | +850351 |V0351 Vel |103221.8-411035 |E: | 12.19 | 12.79 | |Hp| | | | | |HIP HIP | +850352 |V0352 Vel |103842.9-494432 |LB: | 7.95 | 8.06 | |Hp| | | | | |HIP HIP | +850353 |V0353 Vel |104542.4-412951 |DSCTC: | 7.68 | 7.72 | |Hp| | | | | |HIP HIP | +850354 |V0354 Vel |104541.0-472735 |LB | 6.55 | 6.71 | |Hp| | | | | |HIP HIP | +850355 |V0355 Vel |104705.0-445333 |LB: | 8.90 | 9.08 | |Hp| | | | | |HIP HIP | +850356 |V0356 Vel |104755.5-521446 |EB | 6.73 | 6.87 | |Hp| | | | | |HIP HIP | +850357 |V0357 Vel |105857.4-540332 |LB: | 8.35 | 8.50 | |Hp| | | | | |HIP HIP | +850358 |V0358 Vel |110015.5-445439 |LB | 7.34 | 7.46 | |Hp| | | | | |HIP HIP | +850359 |V0359 Vel |110033.4-515650 |EA | 7.58 | 7.84 | |Hp| | | | | |HIP HIP | +850360 |V0360 Vel *|110211.7-422952 |ACV | 7.70 | 7.80 | |Hp| | | | | |HIP HIP | +850361 |V0361 Vel |110213.9-410651 |LB | 6.20 | 7.55 | |Hp| | | | | |HIP HIP | +850362 |V0362 Vel |110421.0-460331 |EW | 9.09 | 9.36 | |Hp| | | | | |HIP HIP | +850363 |V0363 Vel |083802.6-384535 |LPB | 8.84 | 8.93 | |Hp| | | | | |75030 CoD | +850364 |V0364 Vel |083953.0-525757 |BY | 11.86 |( 0.07 )| |V | | | | | |75278 75278| +850365 |V0365 Vel |084006.2-533807 |BY | 10.45 |( 0.08 )| |V | | | | | |75278 75278| +850370 |V0370 Vel |084214.8-525602 |BY | 10.70 |( 0.07 )| |V | | | | | |75278 75278| +850374 |V0374 Vel |084329.3-524129 |BY | 11.73 |( 0.12 )| |V | | | | | |75278 75278| +850376 |V0376 Vel |084405.2-525317 |BY | 10.85 |( 0.08 )| |V | | | | | |75278 75278| +850377 |V0377 Vel |084426.2-524232 |BY | 11.46 |( 0.08 )| |V | | | | | |75278 75278| +850378 |V0378 Vel |084447.3-455856 |EA/WR | 11.06 |( 0.12 )| |V | | | | | |75067 75020| +850380 |V0380 Vel |084539.1-522600 |BY: | 9.91 |( 0.07 )| |V | | | | | |75278 75278| +850382 |V0382 Vel |104448.4-522531 |NA | 2.66 | 16.4 | |V | | | | | |75280 75312| +850383 |V0383 Vel |102141.8-494924 |UGSS | 12.5 | 17. | |p | | | | | |76101 76101| +850389 |V0389 Vel |085335.8-373242 |SRA | 11.6 |< 12.5 | |V |52720 | | 390. | | |78130 GSC | +850390 |V0390 Vel *|085614.2-444311 |RV: | 9.01 | 9.19 | |V | | | 71.9 : | | |78119 DM | +850391 |V0391 Vel |085628.1-430558 |INA | 11.21 | 11.64 | |V | | | | |O8.5 |78038 GSC | +850392 |V0392 Vel |085826.2-432608 |BE | 11.25 | 14.76 | |V | | | | |B5Ve |78038 DM | +850393 |V0393 Vel |085925.8-555850 |SRB | 12.5 | 14.7 | |V | | | 450. | |S |78040 USNO | +850394 |V0394 Vel |090058.1-545555 |SRB | 10.6 | 11.2 | |V | | | 140. | | |78130 GSC | +850395 |V0395 Vel |090100.9-545700 |M | 11.7 |< 14.0 | |V |52903 | | 370. | |M9 |78040 GSC | +850396 |V0396 Vel |090715.3-532519 |M | 11.9 |< 13.8 | |V |52628 | | 489. | |M9 |78040 USNO | +850397 |V0397 Vel |091014.7-375523 |SRB | 11.8 | 14.2 | |V | | | 260. | |M8 |78130 USNO | +850398 |V0398 Vel |102009.0-563655 |ELL: | 7.92 |( 0.03 )| |V | | | 1.455 | |A1IV/V |78136 DM | +850399 |V0399 Vel |102501.1-570511 |BCEP: | 8.24 |( 0.02 )| |V | | | 0.65664 | |B9IV/V |78136 DM | +850400 |V0400 Vel |105307.9-413728 |M | 11.8 |< 14.8 | |V |53060 | | 370. | |Me |78090 USNO | +850401 |V0401 Vel |080825.0-483645 |SRB | 8.5 | 9.3 | |V | | | 900. : | |M5/6(III) |79100 DM | +850402 |V0402 Vel |083921.8-463343 |LB | 12.2 | 13.0 | |V | | | | |C |79100 GSC | +850403 |V0403 Vel |084629.1-404928 |EA | 9.63 | 10.09 | 10.0 : |V |51981.556 | | 7.2027 |05 : |A0 |79011 DM | +850404 |V0404 Vel |085914.9-484949 |EA | 9.37 | 9.48 | 9.47 |V |52714.620 | | 11.4248 |05 |B0IVnp |79006 DM | +850405 |V0405 Vel *|090438.4-410353 |EA | 8.89 | 9.06 | 9.05 |V |48311.779 | | 10.31168 |02 : |G3V |79018 DM | +850406 |V0406 Vel |090723.3-522957 |EA | 9.40 | 10.10 | 9.50 |V |52662.738 | | 2.0340 |11 |B8V |79011 DM | +850407 |V0407 Vel |092502.3-552920 |EB | 9.62 | 10.07 | 9.81 |V |52634.770 | | 1.438215 | |A2 |79011 DM | +850408 |V0408 Vel |093718.4-432205 |SRB | 11.2 | 12.8 | |V | | | 120. | |M6 |79100 GSC | +850409 |V0409 Vel *|093922.9-542456 |EA | 12.45 | 13.45 | 12.79 |V |52929.846 | | 2.78678 |05 | |79004 79074| +850410 |V0410 Vel |094911.2-404136 |M | 12.3 | 16.2 | |R |53867. | | 236. | | |79072 USNO | +850411 |V0411 Vel |095247.9-435931 |M | 10.8 | 14.5 | |V |53651. | | 360. | |M9e: |79100 GSC | +850412 |V0412 Vel |095306.4-442017 |SRB | 9.6 | 10.2 | |V | | | 400. | |C5-C7 |79100 GSC | +850413 |V0413 Vel |100125.5-452726 |M | 10.8 |< 15.0 | |V |53873. | | 178. | | |79100 USNO | +850415 |V0415 Vel |100329.9-464914 |SRA | 10.0 | 12.0 | |V |53723. | | 414. | |S5,8e |79064 79071| +850416 |V0416 Vel |100420.3-551216 |EA | 10.4 | 11.0 | 11.0 |V |53387.809 | | 1.40787 |16 |F2 |79064 DM | +850417 |V0417 Vel |100708.8-550216 |EA | 10.7 | 11.7 | 10.8 |V |53075.7229 | | 2.7527 |15 |B8 |79064 DM | +850418 |V0418 Vel |100827.1-470052 |M | 10.7 | 15.0 | |V |53399. | | 251. | | |79100 GSC | +850419 |V0419 Vel |101150.9-485119 |M | 11.4 |< 14.5 | |V |53800. | | 215. | |M7+OB |79072 GSC | +850420 |V0420 Vel *|101214.7-461011 |RRAB | 10.0 | 10.5 | |V |51870.70 | | 0.60508 |20 | |79064 GSC | +850421 |V0421 Vel |101334.7-493630 |M: | 12.5 |< 14.7 | |V |53709. | | 300. | |M7: |79100 GSC | +850422 |V0422 Vel |101446.9-415636 |M | 11.4 | 15.0 | |V |53672. | | 330. | |Me |79064 GSC | +850423 |V0423 Vel |101522.4-475449 |M | 11.4 |< 15.0 | |V |53080. | | 290. | |Me |79100 GSC | +850424 |V0424 Vel |101616.1-512925 |M | 11. | 14.5 | |R |51941. | | 345. | |M7 |79072 2MASS| +850425 |V0425 Vel |101620.6-553551 |ZAND: | 8.63 | 9.21 | |V | | | | |B0.5ep+K |79100 DM | +850426 |V0426 Vel |101711.9-484727 |M | 10.6 |< 14.8 | |V |53434. | | 265. | |M8 |79100 79071| +850427 |V0427 Vel |102521.7-464037 |SRB | 9.3 | 10.5 | |V | | | 112. | |M2/M3 |79100 DM | +850428 |V0428 Vel |102831.6-492812 |EA: | 11.03 | 11.91 | 11.25 |V |52964.806 | | 0.85496 |20 | |79011 DM | +850429 |V0429 Vel |103503.9-442532 |M | 10.3 | 14.2 | |V |53833. | | 165. | | |79072 79080| +850430 |V0430 Vel |104013.8-441945 |M | 12.0 |< 14.5 | |V |53385. | | 365. | | |79072 USNO | +850432 |V0432 Vel |104206.5-425241 |EA | 9.04 | 9.22 | 9.22 |V |48970.460 | | 1.46857 |08 |F2V |79006 DM | +850433 |V0433 Vel |104311.5-473637 |LB | 10.3 | 11.6 | |V | | | | | |79100 DM | +850434 |V0434 Vel |104712.6-435507 |SRA | 10.5 | 13.1 | |V |53744. | | 430. | |C |79100 2MASS| +850435 |V0435 Vel |104746.5-461000 |SRA | 11.1 | 12.7 | |V |53407. | | 265. | | |79072 GSC | +850436 |V0436 Vel |105036.3-523040 |M | 10.8 |< 14.2 | |V |53717. | | 380. | |M8 |79072 GSC | +850438 |V0438 Vel |105209.2-565527 |SRB | 9.0 | 9.7 | |V | | | 53.6 | |M4/6 |79064 DM | +850439 |V0439 Vel |105424.1-561527 |LB | 9.7 | 10.1 | |V | | | | |M4-M5 |79100 DM | +850440 |V0440 Vel |105443.6-453610 |EA | 9.47 | 9.63 | 9.60 |V |48603.597 | | 2.354858 |09 |A7III |79006 DM | +850442 |V0442 Vel |105700.1-534558 |SRA: | 12.2 |< 14.2 | |V |53512. | | 256. | |M8 |79072 USNO | +850443 |V0443 Vel |105719.2-553525 |M | 12.4 |< 16.8 | |V |53383. | | 379. | |M4: |79072 USNO | +850444 |V0444 Vel |110055.4-480056 |M | 11.2 |< 14.8 | |V |53480. | | 240. | | |79072 GSC | +850445 |V0445 Vel |110148.0-561031 |M | 10.7 |< 13.0 | |V |53907. | | 312. | |M5 |79072 USNO | +850446 |V0446 Vel |081245.4-491406 |LB | 12.3 | 13.4 | |V | | | | | |80256 GSC | NL80_2 +850447 |V0447 Vel *|081418.6-443636 |EB | 11.73 | 12.24 | 11.91 |V |52997.792 | | 0.972013 | | |80048 GSC | NL80_2 +850448 |V0448 Vel *|082455.5-483335 |EW | 11.63 | 11.97 | 11.96 |V |51868.180 | | 0.364875 | | |80036 GSC | NL80_2 +850449 |V0449 Vel |083041.4-505042 |M | 11.8 |< 14.5 | |V |54796. | | 468. | |S |80001 2MASS| NL80_2 +850451 |V0451 Vel *|083408.1-443241 |EB | 7.46 | 7.50 | 7.49 |V |52224.81 | | 7.8553 | |B2V |80011 HIP | NL80_2 +850452 |V0452 Vel *|083743.4-395336 |EW | 10.88 | 11.05 | 11.01 |V |52196.855 | | 0.525412 | | |80048 GSC | NL80_2 +850454 |V0454 Vel *|083809.0-400452 |EA | 7.55 | 7.66 | 7.65 |V |52717.769 | | 1.13492 |18 |B3V |80015 DM | NL80_2 +850461 |V0461 Vel *|084243.7-453318 |EA+BE | 8.26 | 8.52 | 8.44 |V |53010.762 | | 1.50941 |12 |B2:Vn |80011 DM | NL80_2 +850467 |V0467 Vel *|084349.8-460709 |EA+BCEP: | 10.82 | 11.04 | 11.00 : |V |51951.7719 | | 2.75320 |18 |O6.5V+B1V |80281 GSC | NL80_2 +850469 |V0469 Vel *|084515.6-535128 |EA | 9.47 | 9.59 | 9.51 |V |52172.863 | | 1.031615 |15 |A2/3mA7-A8 |80011 DM | NL80_2 +850473 |V0473 Vel |085405.1-453946 |LB: | 11.35 | 11.62 | |V | | | 34.25 | |M4 |80001 GSC | NL80_2 +850474 |V0474 Vel |085501.5-510720 |M | 7.49 | 9.44 | |K | | | 703. | |C |80166 2MASS| NL80_2 +850475 |V0475 Vel |085510.7-473556 |M: | 6.41 | 8.61 | |K | | | 570. : | | |80166 2MASS| NL80_2 +850477 |V0477 Vel |085709.6-395406 |SR | 12.2 | 13.1 | |V | | | 204. | |M8III |80256 2MASS| NL80_2 +850479 |V0479 Vel *|090451.4-374809 |EA | 9.14 | 9.23 | 9.22 |V |53127.600 | | 2.18882 |06 |A2IV |80011 DM | NL80_2 +850481 |V0481 Vel |090654.2-433354 |LB | 12.3 | 13.2 | |V | | | | | |80256 GSC | NL80_2 +850483 |V0483 Vel *|091142.3-465310 |EA | 8.23 | 8.30 | 8.25 |V |52943.785 | | 2.61362 |10 |A4V |80011 DM | NL80_2 +850484 |V0484 Vel *|091224.9-380307 |EA | 9.87 | 10.0 | 9.91 |V |53701.827 | | 2.60431 |05 |B9.5V |80011 DM | NL80_2 +850487 |V0487 Vel *|091801.6-540227 |RCB: | 9.0 | 13.4 | |V | | | | |C(N) |80001 GSC | NL80_2 +850488 |V0488 Vel |091917.2-520028 |M | 5.39 | 7.25 | |K | | | 431. : | |C |80166 2MASS| NL80_2 +850489 |V0489 Vel |092618.7-520604 |SR: | 6.70 | 7.65 | |K | | | | |C |80166 2MASS| NL80_2 +850490 |V0490 Vel |092645.5-492225 |M | 8.47 | 9.51 | |J | | | 265. | |C |80166 2MASS| NL80_2 +850492 |V0492 Vel |093450.7-494845 |LB | 12.4 |< 13.5 | |V | | | | |M7 |80256 GSC | NL80_2 +850493 |V0493 Vel |093457.0-502430 |M | 7.68 | 8.55 | |J | | | 413. | |C |80166 2MASS| NL80_2 +850494 |V0494 Vel |094151.9-474658 |LB | 10.5 | 10.6 | |V | | | | |M0 |80184 GSC | NL80_2 +850495 |V0495 Vel *|094553.6-441943 |EA | 10.13 | 10.58 | 10.47 |V |52842.444 | | 1.95847 |13 |F5 |80323 GSC | NL80_2 +850496 |V0496 Vel *|095047.6-444129 |EA | 9.15 | 9.31 | 9.21 |V |53905.545 | | 2.45506 |07 |A0V |80011 DM | NL80_2 +850497 |V0497 Vel *|095131.9-493124 |EA | 9.52 | 9.78 | 9.63 |V |53901.54 | | 12.43617 |04 |A3/5IV |80011 DM | NL80_2 +850498 |V0498 Vel |095249.7-460318 |M: | 12.4 |< 14.4 | |V |54470. | | 365. | |M7 |80001 2MASS| NL80_2 +850499 |V0499 Vel |095306.7-533854 |M | 4.36 | 5.89 | |K | | | 630. | |C |80166 2MASS| NL80_2 +850500 |V0500 Vel |095440.7-552016 |M | 5.15 | 6.65 | |K | | | 688. : | |C |80166 2MASS| NL80_2 +850501 |V0501 Vel |095612.8-481029 |EA | 9.55 | 9.73 | |V |54172.718 | | 2.01571 |06 |A1V |80011 DM | NL80_2 +850502 |V0502 Vel |100425.4-500531 |LB | 12.2 | 14.0 | |V | | | | |M7 |80256 2MASS| NL80_2 +850503 |V0503 Vel *|100653.7-405323 |EA | 8.93 | 9.07 | 8.98 |V |54463.782 | | 3.45291 |06 |A1IV |80011 DM | NL80_2 +850515 |V0515 Vel |102435.1-524420 |M: | 3.70 | 5.68 | |K | | | 756. | | |80166 2MASS| NL80_2 +850516 |V0516 Vel *|103359.5-473150 |EA | 8.48 | 8.64 | |V |53869.650 | | 2.86839 |07 |A0V |80011 DM | NL80_2 +850518 |V0518 Vel *|104619.9-455800 |EA | 12.05 | 13.33 | 12.14 |V |51908.748 | | 3.24198 |14 | |80048 GSC | NL80_2 +8590032|gam 2 Vel *|080931.9-472012 |WR | 1.81 | 1.87 | |V | | | | |WC8+O9I |07244 CoD | +859004 |del Vel |084442.2-544232 |EA | 1.96 |( 0.4 )| |V | | | | | |76076 DM | +859011 |lam Vel *|090759.8-432557 |LC | 2.14 | 2.30 | |V | | | | |K4Ib-IIa |06620 CoD | +859015 |omi Vel *|084017.6-525519 |* | 3.55 | 3.67 | |V |44651.6922 | | 2.779 |50 |B3III-IV |10093 04745| +859214 |N Vel |093113.3-570204 |CST: | 3.12 | 3.15 | |V | | | | |K5III |03712 00021| +860001 |R Vir *|123829.9+065919 |M | 6.1 | 12.1 | |V |45872. | | 145.63 |50 |M3.5IIIe-M8.5e |00001 00002| +860002 |S Vir *|133300.1-071141 |M | 6.3 | 13.2 | |V |45046. | | 375.10 |45 |M6IIIe-M9.5e |00001 00002| +860003 |T Vir *|121436.7-060209 |M | 9.0 | 14.8 | |V |40277. | | 339.47 |36 |M6e |00001 00002| +860004 |U Vir |125105.7+053312 |M | 7.4 | 13.5 | |V |44736. | | 206.64 |47 |M2e-M8e: |00001 00002| +860005 |V Vir *|132748.1-031023 |M | 8.1 | 15.0 | |V |44667. | | 250.08 |42 |M3e-M6e |00001 00002| +860006 |W Vir *|132602.0-032243 |CWA | 9.46 | 10.75 | |V |32697.783 | | 17.2736 |38 |F0Ib-G0Ib |03716 03716| +860007 |X Vir *|120151.4+090420 |CST: | 7.3 | 11.2 | |V | | | | |F2pIV-V |00726 08953| +860008 |Y Vir |123353.0-042520 |M | 8.3 | 15.0 | |V |45805. | | 218.43 |46 |M2e-M5e |00001 00002| +860009 |Z Vir *|141021.4-131815 |M | 9.9 | 15.1 | |V |42496. | | 305.71 |39 |M5e |00001 00002| +860010 |RR Vir |140453.4-091141 |M | 10.7 | 15.6 | |V |38146. | | 217.52 |47 | |00001 00002| +860011 |RS Vir *|142716.4+044041 |M | 7.0 | 14.6 | |V |45753. | | 353.95 |37 |M6IIIe-M8e |00001 00002| +860012 |RT Vir *|130238.0+051108 |SRB | 7.41 | 8.70 | |V | | | 155. : | |M8III |00727 00097| +860013 |RU Vir *|124718.4+040841 |M | 9.0 | 14.2 | |V |37773. | | 433.2 |49 |C8,1e(R3ep) |10100 00002| +860014 |RV Vir *|130755.4-130959 |M | 10.2 | 15.1 | |V |40635. | | 265.87 |41 |M5e |00001 00002| +860015 |RW Vir |120714.9-064556 |LB | 6.72 | 7.38 | |V | | | | |M5III |08837 00097| +860016 |RX Vir *|120444.9-054624 |SRD: | 8.7 | 9.1 | |p | | | 200. : | |K0 |00727 00097| +860017 |RY Vir |134144.1-190811 |SRB | 10.2 | 10.8 | |p | | | 140. : | |MB |00018 08953| +860018 |RZ Vir |132150.4+015051 |CST: | 10.0 | | |p | | | | |M2 |00729 | +860019 |SS Vir *|122514.4+004611 |SRA | 6.0 | 9.6 | |V |45361. | | 364.14 |48 |C6,3e(Ne) |00001 00002| +860020 |ST Vir *|142739.1-005406 |RRAB | 10.84 | 12.08 | |V |40736.374 | | 0.4108280 |12 |A6-A8 |04957 03506| +860021 |SU Vir *|120514.8+122138 |M | 8.4 | 14.5 | |V |44278. | | 208.6 |48 |M2e-M5.5e |00001 00002| +860022 |SV Vir *|120020.8-101105 |M | 9.3 |< 12.5 | |p |42506. | | 295.33 | |M4e |00001 10147| +860023 |SW Vir |131404.4-024825 |SRB | 6.40 | 7.90 | |V | | | 150. : | |M7III |07444 08953| +860024 |SX Vir |133629.8-193516 |SRB | 10.2 | 13.3 | |p | | | 105.55 | |Me |01652 08953| +860025 |SY Vir |135837.6-043433 |M | 9.6 | 13.4 | |V |38440. | | 236.65 |57 |M6: |00001 06286| +860030 |TW Vir *|114521.2-042606 |UGSS | 11.2 | 16.40 | |V | | |( 32. ) | |pec(UG) |09782 09472| +860032 |TY Vir *|115150.1-054544 |SRD | 7.97 | 8.5 | |V | | | 50. : | |G3pIb |06231 BD | +860033 |TZ Vir *|120436.1+023711 |SRB | 9.4 | 11.2 | |p | | | 134. | |M5 |00727 08953| +860034 |UU Vir *|120835.1-002724 |RRAB | 9.89 | 11.07 | |V |41797.461 | | 0.47560652 |17 |A9-F5 |04957 00188| +860035 |UV Vir |122116.7+002203 |RRAB | 11.35 | 12.35 | |V |39992.720 | | 0.5870824 |20 |A4 |05274 00188| +860036 |UW Vir *|131520.7-172817 |EA/SD | 8.98 | 12.3 | |V |44345.413 | | 1.8107755 |14 |A2 |00001 00318| +860038 |UY Vir *|130153.4-194629 |EA/DM | 8.00 | 8.8 | 8.1 |V |30020.667 | | 1.9945051 |16 |A7V |00734 00024| +860039 |UZ Vir |130844.3+132408 |RRAB | 12.2 | 13.9 | |p |25004.399 | | 0.458844 |24 | |00266 00735| +860040 |VV Vir *|140525.2-100922 |EB/SD: | 11.9 | 13.2 | 12.2 : |p |31221.218 | | 0.44613577 | |A-F |08543 00318| +860041 |VW Vir *|122716.9+092505 |SN | 12.5 |< 16. | |p | | | | | |01653 06286| +860043 |VY Vir |131830.5-044103 |M | 10.5 | 14.7 | |p |44717. | | 280.04 | |M3ep |00001 09487| +860044 |VZ Vir |132612.1+001121 |RRC | 12.2 | 12.8 | |p |45388.651 | | 0.3396113 |42 |B8hb |10103 10102| +860045 |WW Vir |132823.9-051709 |RRAB | 11.9 | 13.5 | |p |36722.344 | | 0.6515827 |20 : | |07806 06286| +860048 |WZ Vir |134527.3+001214 |SR | 10.2 | 12.3 | |p |28209. | | 135. : | |M0 |02427 00002| +860049 |XX Vir *|141648.6-061715 |CWB | 11.55 | 12.78 | |V |43287.50 | | 1.3482051 |12 |F6 |07984 00739| +860051 |XZ Vir |115859.2+023556 |RR: | 12.0 | 13.8 | |p | | | | | |00573 06286| +860052 |YY Vir |130648.5-055710 |I: | 10.7 | 11.6 | |p | | | | |G5III: |00498 08953| +860056 |AB Vir |140204.4-053716 |SR | 11.9 | 13.4 | |p |25743. | | 313. : | |M |00147 06286| +860057 |AC Vir |140216.5-053838 |LB: | 11.7 | 12.9 | |p | | | | |M |00147 06286| +860058 |AD Vir *|140537.1-071451 |RRAB | 12.0 | 13.65 | |B |36893.285 | | 0.5522151 |10 | |03718 06286| +860059 |AE Vir |142729.4+034641 |RRAB | 11.5 | 13.9 | |p |28282.471 | | 0.6338581 |12 |A3 |03719 03719| +860060 |AF Vir *|142809.8+063244 |RRAB | 10.94 | 12.01 | |V |40333.771 | | 0.48376 |30 |A2 |10113 10159| +860061 |AG Vir *|120103.5+130030 |EW/KE | 8.35 |( 0.58 )|( 0.44 )|V |45432.4146 | | 0.64265075 | |A7-A9V |00001 00228| +860062 |AH Vir *|121421.0+114909 |EW/KW | 8.89 |( 0.60 )|( 0.53 )|V |45814.385 | | 0.407521 | |K0V+K0V |00001 00228| +860063 |AI Vir |135320.9-064448 | | 11.7 | 13.7 | |p | | | | |M5 |01792 00744| +860064 |AK Vir *|140452.4-182153 |EA/SD | 10.0 |( 1.49 )| |V |42576.408 | | 1.1935981 |13 *| |00001 02532| +860065 |AL Vir *|141109.1-131838 |CWA | 9.10 | 9.92 | |V |44396.69 | | 10.30256 |41 |F0-F8 |00001 08953| +860066 |AM Vir |132333.3-163958 |RRAB | 11.07 | 11.80 | |V |26859.275 | | 0.61508784 |21 |A6 |07806 00132| +860067 |AN Vir *|141800.3-144223 |SRB | 9.2 | 10.1 | |p | | | 100. : | |M5 |00729 08953| +860068 |AO Vir *|142151.9+035428 |M | 10.5 | 13.0 | |p |42529. | | 254.61 |43 |M2e-M4e |00001 08953| +860069 |AP Vir |142830.3+071737 |M: | 12.4 |< 14.0 | |p |25732. | | 330. : | |M3 |00747 06286| +860070 |AQ Vir |144618.4-071550 |M | 11.0 | 15.8 | |p |29408. | | 292.8 | |M5e: |02931 00132| +860072 |AS Vir *|125245.9-101536 |RRAB | 11.42 | 12.34 | |V |39154.913 | | 0.5534240 |14 |A7 |00001 00464| +860073 |AT Vir *|125510.5-052732 |RRAB | 10.63 | 11.82 | |V |39678.262 | | 0.5257931 |12 |A7 |00001 00464| +860074 |AU Vir *|132448.0-065846 |RRC | 11.36 | 11.90 | |V |41795.317 | | 0.3432307 |35 |A5-F6: |00001 00464| +860075 |AV Vir *|132011.6+091116 |RRAB | 11.42 | 12.16 | |V |41470.283 | | 0.6569090 |17 |A9-F6 |00001 03506| +860076 |AW Vir *|132732.9+030229 |EW/KW | 11.0 | 11.81 | 11.67 |V |45022.645 | | 0.35399695 | |F8 |00001 00470| +860077 |AX Vir *|132744.8+035227 |EB/KE | 10.0 | 10.81 | 10.24 |V |27570.444 | | 0.7025262 | |A0p |09982 BD | +860078 |AY Vir *|135151.7-034034 |SRB | 10.3 | 11.4 | |p | | | 113. | |M6 |00729 08953| +860079 |AZ Vir *|134325.6+043657 |EW/KW | 10.74 | 11.37 | 11.37 |V |43976.540 | | 0.34966511 | |F8 |10117 10117| +860080 |BB Vir *|135140.8+062551 |RRAB | 10.70 | 11.42 | |V |39613.776 | | 0.4710965 |13 |A2 |00001 03506| +860081 |BC Vir *|132221.1+055311 |RRAB | 11.31 | 12.71 | |V |19922.289 | | 0.56451468 |13 |A8 |04307 00470| +860082 |BD Vir *|132640.6-160617 |EA/SD | 9.9 | 11.2 | |V |42538.413 | | 2.548537 |18 *|A5 |00001 00318| +860084 |BF Vir *|134752.6-003541 |EB/KE: | 10.5 | 11.23 | 10.72 |V |46070.684 | | 0.640570 | |A2 |06070 00753| +860085 |BG Vir |144703.7+045308 |SRB: | 9.5 | 10.68 | |B | | | 50. : | |M5 |05429 08953| +860086 |BH Vir *|135824.9-013939 |EA/DW/RS: | 9.60 | 10.56 | 10.24 |V |43230.609 | | 0.81687161 |16 *|G0V+G2V |00001 00110| +860088 |BK Vir |123021.0+042459 |SRB | 7.28 | 8.8 | |V | | | 150. : | |M7III |05429 08953| +860093 |BP Vir |123420.6-011037 |SR | 12.5 | 13.5 | |p | | | | |M4 |00756 06286| +860094 |BQ Vir *|123627.3-022533 |RRAB | 12.1 | 12.7 | |p |19858.356 | | 0.6359125 |21 | |07806 07806| +860103 |BZ Vir |130041.3-173848 |M | 9.5 |< 13. | |p |29701. | | 150.92 | |M5e |01109 00110| +860106 |CE Vir |134917.1-015545 |RV: | 8.37 | 10.71 | |V | | | 67. : | |G-K |00729 08953| +860107 |CF Vir |141544.5-055208 |M | 11.0 |< 14.0 | |p |31970. | | 227.6 | |M5e: |02931 06286| +860108 |CG Vir *|150454.7+042403 |EB/D | 10.56 | 11.2 | 10.9 |V |31556.540 | | 0.93529 | |F8 |00397 BD | +860109 |CH Vir |122021.4-090000 |LB | 9.5 | 10.6 | |p | | | | |MC |00349 08953| +860110 |CI Vir |123308.3+071501 |LB | 10.2 | 10.9 | |p | | | | |M6 |00349 08953| +860111 |CK Vir *|123547.5+090428 |SRD | 10.19 : | 11.04 | |V | | | 93. : | |G |06232 06232| +860112 |CL Vir |134319.5-100637 |LB | 10.8 | 11.4 | |p | | | | |M |00104 BD | +860114 |CN Vir |125848.4+081236 |SRB | 8.17 | 9.0 | |V | | | 60. : | |M3 |05429 08953| +860115 |CO Vir |130355.8+070405 |SRB | 8.49 | 9.54 | |V | | | 70. : | |M5 |05429 08953| +860116 |CP Vir |135659.5+063429 |SRB | 8.38 | 8.91 | |V | | | 70. : | |M7 |05429 08953| +860117 |CQ Vir |142125.2+062633 |SRB | 8.99 | 9.64 | |V | | | 70. : | |M3 |00351 00156| +860118 |CR Vir |143754.7+033119 |SRB | 10.8 |( 0.5 )| |p | | | 75. : | |M5 |00351 00156| +860119 |CS Vir *|141838.3-184258 |ACV | 5.84 | 5.95 | |V |40382.25 | | 9.2954 |50 |A0p(Cr-Eu) |04498 BD | +860120 |CT Vir |125204.0+055628 |SRB | 10.6 | 11.3 | |p | | | 100. : | |M1 |00503 BD | +860121 |CU Vir *|141215.8+022434 |ACV | 4.92 | 5.07 | |V |41455.685 | | 0.5206794 |50 |A0Vp(Si) |00001 BD | +860123 |CW Vir *|133407.9+033932 |ACV | 4.91 | 4.99 | |V |34816.9 | | 3.7220 | |A1p(Sr-Cr-Eu) |05638 BD | +860124 |CX Vir *|140927.4-153454 |EW | 9.8 |( 0.65 )|( 0.30 )|V |26092.450 | | 0.746077 | |F5 |06871 06871| +860133 |DK Vir *|131625.5-012326 |DSCTC | 6.67 | 6.72 | |V |41777.804 | | 0.119153 |40 |F0IV |08101 BD | +860134 |DL Vir *|135238.8-184233 |EA | 7.0 | 7.5 | |V |38796.525 | | 1.31548 |14 |G8III+A3 |05640 08953| +860135 |DM Vir *|140752.4-110908 |EA/D | 8.75 | 9.50 | 9.49 |V |43583.8810 | | 4.6694335 |06 *|F6IV+F6IV |10144 08953| +860136 |DN Vir *|141119.2-102845 |SRB | 9.1 | 9.6 | |p | | | | |MB |05828 08953| +860137 |DO Vir |143846.0-051931 |RRAB | 11.5 | 13.0 | |p |26588.220 | | 0.5327227 | | |03717 06286| +860140 |DR Vir |122142.4+075328 |RRAB | 12.5 | 13.8 | |p |39580.423 | | 0.545596 |30 |G5 |04784 05515| +860142 |DT Vir *|130046.6+122233 |UV+BY | 10.34 | 11.32 | |B | | | | |M2Ve |05793 07060| +860159 |EP Vir *|124702.3+055701 |ACV | 6.29 | 6.39 | |V |40640.20 | | 16.304 | |A0p(Sr-Eu-Cr) |10152 BD | +860160 |EQ Vir *|133443.2-082031 |UV+BY | 11.80 | 14.1 | |U | | | | |K5Ve |06948 BD | +860161 |ER Vir |140641.6-141218 |SRB | 6.45 | 6.63 | |V |40752. | | 55. | |M4III |05828 BD | +860162 |ES Vir |140837.7-085143 |LB | 8.15 | 8.33 | |V | | | | |MB |05828 BD | +860163 |ET Vir |141050.5-161807 |SRB | 4.80 | 5.00 | |V |40697. :| | 80. | |M2IIIa |05828 BD | +860164 |EU Vir |141222.3-184446 |SRB | 9.01 | 9.19 | |V |40710. :| | 38. | |MB |05828 BD | +860165 |EV Vir |141309.8-135136 |SRB | 6.74 | 7.09 | |V |40726. | | 120. | |M4II-III |05828 BD | +860166 |EW Vir *|141659.4-162620 |SRB | 9.16 | 9.31 : | |V |40710. :| | | |M6III |05828 BD | +860167 |EX Vir *|141717.7-164459 |SRB | 10.4 : | 10.6 : | |V | | | | |M8 |05828 BD | +860168 |EY Vir *|141911.7-132554 |SRB | 8.2 : | 8.6 : | |V | | | | |M5 |05828 BD | +860169 |EZ Vir |142104.1-185932 |SRB | 7.77 | 7.97 | |V |40710. :| | 39. | |M1 |05828 BD | +860170 |FF Vir *|142555.9+005934 |ACV | 7.07 | 7.13 | |V | | | 130.0 | |A2p(Cr-Sr) |06265 BD | +860171 |FG Vir *|121415.5-054300 |DSCTC | 6.53 | 6.58 | |V | | | 0.079 | |Am |10191 BD | +860172 |FH Vir |131623.9+063017 |SRB | 6.92 | 7.45 | |V |40740. | | 70. : | |M6III |06351 08953| +860174 |FK Vir |122411.5+055818 |SRB | 7.50 | 7.78 | |V | | | 40. : | |M4III |06645 BD | +860176 |FM Vir *|124537.1+074024 |DSCTC | 5.20 | 5.28 | |V | | | 0.07188 | |F0IVm+A7V |10179 BD | +860178 |FO Vir *|132947.1+010543 |EB/KE | 6.50 | 6.82 | 6.67 |V |45441.7110 | | 0.775567 | |A7V |10180 BD | +860179 |FP Vir |133552.1+081734 |SRB | 6.72 | 7.35 | |V | | | 40. : | |M4III |06645 BD | +860180 |FQ Vir *|140630.3-153028 |E/DM | 10.1 | 10.9 | |p |27841.725 | | 3.018375 | |A0 |06871 06871| +860181 |FR Vir |140900.3-191444 |LB: | 7.02 | 7.19 | |V | | | | |M3III |06590 BD | +860182 |FS Vir |141453.0+032009 |LB: | 6.37 | 6.52 | |V | | | | |M4IIIab |06590 BD | +860183 |FT Vir |122751.5-043655 |DSCTC | 6.20 | 6.24 | |V | | | 0.05 | |F2III |07489 BD | +860184 |FU Vir |123826.3+130058 |RRAB | 12.0 | 13.1 | |p |39936.405 | | 0.574360 |27 | |07457 07457| +860186 |FW Vir |123822.4+015117 |SRB: | 5.63 | 5.75 | |V |42250. | | 15. : |50 |M3IIIab |07873 BD | +860189 |FZ Vir |122909.7-022546 |SRB | 6.81 | 6.98 | |V | | | 25. | |M4III |07959 BD | +860190 |GG Vir *|124134.4+102535 |DSCT | 6.19 | 6.33 | |V | | | | |A7V |10183 HIP | +860198 |GP Vir |133543.3-060922 |GCAS | 8.03 | 8.10 | |V | | | | |B5e |08580 04785| +860200 |GR Vir *|144520.3-064404 |EW/KW | 7.8 |( 0.45 : )|( 0.41 )|V |45116.381 | | 0.419757 | |G0 |10192 08581| +860208 |GZ Vir |131313.8-023321 |DSCTC | 8.0 |( 0.035 )| |V | | | | | |67378 BD | +860220 |HT Vir |134606.8+050656 |EW/KW | 7.06 | 7.48 | |V | | | | | |67383 BD | +860221 |HU Vir |121320.7-090447 |RS: | 8.1 |( 0.27 )| |V | | | | | |68316 BD | +860222 |HV Vir |132103.1+015330 |N | 11. |< 13.0 | |p | | | | | |68307 68275| +860223 |HW Vir |124420.2-084017 |EA/D | 10.5 |( 0.90 )| |V | | | | | |69291 BD | +860224 |HX Vir |133202.8-184344 |DSCTC | 6.01 |( 0.02 )| |V | | | | | |69292 BD | +860225 |HY Vir |130829.9-024044 |EA | 7.81 | 8.10 | |V | | | | | |70137 BD | +860226 |HZ Vir |135951.8-052256 |UV | 11.7 | 11.98 | |V | | | | | |70138 70087| +860227 |II Vir |121027.2-074626 |DSCTC: | 6.49 | 6.55 | |V | | | | | |71109 BD | +860228 |IK Vir |121356.1+020034 |EA | 11.51 | 11.79 | |V | | | | | |71110 71110| +860230 |IM Vir |124938.7-060445 |EA/RS: | 9.74 |( 0.15 )| |V | | | | | |71116 BD | +860231 |IN Vir |132424.2-021855 |RS | 9.24 |( 0.15 )| |V | | | | | |71007 BD | +860232 |IO Vir |141117.6-074450 |M | 4.0 | 6.0 | |J | | | | | |71002 71124| +860233 |IP Vir |144007.0+000145 |DSCT | 11.51 | 11.63 | |V | | | | | |71128 71129| +860234 |IQ Vir |115350.3+003308 |DSCTC | 6.30 |( 0.02 )| |V | | | | | |73067 BD | +860235 |IR Vir |123808.5-035917 |EW | 12.1 |( 0.70 )| |V | | | | | |73341 73341| +860236 |IS Vir |130626.0-045045 |RS | 8.27 |( 0.05 )| |V | | | | | |73005 BD | +860237 |IT Vir |135547.0-181457 |ELL | 7.82 | 7.86 | |V | | | | | |73342 BD | +860239 |IV Vir |141634.3-214550 |ELL | 10.71 | 10.86 | |V | | | | | |73344 BD | +860240 |IW Vir |113748.0+041924 |LB | 8.79 | 9.52 | |Hp| | | | | |HIP HIP | +860241 |IX Vir |114436.1-012305 |LB: | 8.22 | 8.48 | |Hp| | | | | |HIP HIP | +860242 |IY Vir |115809.4+073247 |LB: | 9.43 | 9.59 | |Hp| | | | | |HIP HIP | +860243 |IZ Vir |120418.8+045554 |SRB | 7.14 | 7.24 | |Hp| | | | | |HIP HIP | +860244 |KK Vir |120946.3+081044 |LB: | 9.23 | 9.34 | |Hp| | | | | |HIP HIP | +860245 |KL Vir |121246.6+110641 |SRB | 8.27 | 8.42 | |Hp| | | | | |HIP HIP | +860246 |KM Vir |121951.9+113555 |LB | 8.15 | 8.30 | |Hp| | | | | |HIP HIP | +860247 |KN Vir |122151.1-042311 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +860248 |KO Vir |122215.0+045118 |LB | 7.46 | 7.62 | |Hp| | | | | |HIP HIP | +860249 |KP Vir |122751.0-101002 |EA | 8.42 | 8.79 | |Hp| | | | | |HIP HIP | +860250 |KQ Vir |122922.9-011359 |LB: | 8.84 | 8.95 | |Hp| | | | | |HIP HIP | +860251 |KR Vir |124103.6-003714 |SRD: | 9.39 | 9.65 | |Hp| | | | | |HIP HIP | +860252 |KS Vir |124108.9-091444 |LB | 7.62 | 7.82 | |Hp| | | | | |HIP HIP | +860253 |KT Vir |124315.9+100603 |SRB | 7.42 | 7.56 | |Hp| | | | | |HIP HIP | +860254 |KU Vir |124425.4+003212 |LB | 7.86 | 8.06 | |Hp| | | | | |HIP HIP | +860255 |KV Vir |125831.0-123048 |LB: | 7.82 | 7.92 | |Hp| | | | | |HIP HIP | +860256 |KW Vir |130130.4+013113 |SRB | 7.45 | 7.58 | |Hp| | | | | |HIP HIP | +860257 |KX Vir |130359.8+111351 |SRB | 7.30 | 7.42 | |Hp| | | | | |HIP HIP | +860258 |KY Vir |130936.1-074651 |SRB: | 8.02 | 8.35 | |Hp| | | | | |HIP HIP | +860259 |KZ Vir |131222.9+023914 |EB: | 8.45 | 8.52 | |Hp| | | | | |HIP HIP | +860260 |LL Vir |131245.8-014530 |SRB: | 6.91 | 7.08 | |Hp| | | | | |HIP HIP | +860261 |LM Vir |131326.8-184935 |EW: | 6.29 | 6.33 | |Hp| | | | | |HIP HIP | +860262 |LN Vir |131431.3+111954 |E: | 5.75 | 5.80 | |Hp| | | | | |HIP HIP | +860263 |LO Vir |131502.9+043103 |SRB | 7.16 | 7.30 | |Hp| | | | | |HIP HIP | +860264 |LP Vir |131727.3-103247 |ELL: | 6.92 | 7.08 | |Hp| | | | | |HIP HIP | +860265 |LQ Vir |131836.7+125442 |LB | 8.16 | 8.30 | |Hp| | | | | |HIP HIP | +860266 |LR Vir |131854.1+023237 |SRD | 8.44 | 8.70 | |Hp| | | | | |HIP HIP | +860267 |LS Vir |132045.2-112701 |SRB: | 8.30 | 8.54 | |Hp| | | | | |HIP HIP | +860268 |LT Vir |132201.8+024526 |SRB: | 7.49 | 7.67 | |Hp| | | | | |HIP HIP | +860269 |LU Vir |132653.5-055551 |EB: | 7.88 | 8.16 | |Hp| | | | | |HIP HIP | +860270 |LV Vir *|133246.1-174533 |EW: | 8.50 | 8.68 | |Hp| | | | | |HIP HIP | +860271 |LW Vir |133454.3-090218 |LB: | 9.14 | 9.29 | |Hp| | | | | |HIP HIP | +860272 |LX Vir |133532.0-042324 |LB | 8.41 | 8.75 | |Hp| | | | | |HIP HIP | +860273 |LY Vir |133651.6-214210 |LB: | 8.45 | 8.81 | |Hp| | | | | |HIP HIP | +860274 |LZ Vir |134221.4+005949 |LB | 7.99 | 8.17 | |Hp| | | | | |HIP HIP | +860275 |MM Vir |134704.6-130644 |SRB: | 8.89 | 9.05 | |Hp| | | | | |HIP HIP | +860276 |MN Vir |134936.8-091156 |LB: | 9.02 | 9.13 | |Hp| | | | | |HIP HIP | +860277 |MO Vir |135215.8-013022 |SRD | 9.03 | 9.26 | |Hp| | | | | |HIP HIP | +860278 |MP Vir |135758.4-042310 |LB: | 8.72 | 8.82 | |Hp| | | | | |HIP HIP | +860279 |MQ Vir |135953.4-222041 |LB | 8.80 | 8.99 | |Hp| | | | | |HIP HIP | +860280 |MR Vir |140402.3-002145 |EB | 8.57 | 8.69 | |Hp| | | | | |HIP HIP | +860281 |MS Vir |140614.4-174119 |EW: | 9.40 | 9.67 | |Hp| | | | | |HIP HIP | +860282 |MT Vir |141135.5-115332 |LB: | 9.02 | 9.16 | |Hp| | | | | |HIP HIP | +860283 |MU Vir |141233.5-095400 |E: | 7.24 | 7.28 | |Hp| | | | | |HIP HIP | +860284 |MV Vir |141421.4-152122 |BY: | 10.38 | 12.06 | |Hp| | | | | |HIP HIP | +860285 |MW Vir *|141727.7-195750 |EW: | 7.00 | 7.04 | |Hp| | | | | |HIP HIP | +860286 |MX Vir |141741.8-214944 |DSCTC: | 7.41 | 7.46 | |Hp| | | | | |HIP HIP | +860287 |MY Vir |141901.5+041047 |LB: | 8.19 | 8.52 | |Hp| | | | | |HIP HIP | +860288 |MZ Vir |141914.9-142429 |LB | 7.29 | 7.66 | |Hp| | | | | |HIP HIP | +860289 |NN Vir *|141937.7+055347 |RRC: | 7.60 | 8.02 | |Hp| | | | | |HIP HIP | +860290 |NO Vir |142135.0-022308 |LB | 8.03 | 8.34 | |Hp| | | | | |HIP HIP | +860291 |NP Vir |142440.0+023213 |SRB: | 8.79 | 9.00 | |Hp| | | | | |HIP HIP | +860292 |NQ Vir |142828.6+054051 |LB | 7.36 | 7.57 | |Hp| | | | | |HIP HIP | +860293 |NR Vir |142856.5+034311 |SRD | 6.93 | 7.09 | |Hp| | | | | |HIP HIP | +860294 |NS Vir |143149.8+064136 |EB | 8.79 | 9.13 | |Hp| | | | | |HIP HIP | +860295 |NT Vir |143546.7+021438 |LB: | 8.47 | 8.61 | |Hp| | | | | |HIP HIP | +860296 |NU Vir |143644.9+025021 |SRD | 8.47 | 8.73 | |Hp| | | | | |HIP HIP | +860297 |NV Vir |144158.7-033125 |SRB: | 8.54 | 8.98 | |Hp| | | | | |HIP HIP | +860298 |NW Vir |144644.2+071653 |LB: | 7.22 | 7.32 | |Hp| | | | | |HIP HIP | +860301 |NZ Vir |143043.9+071932 |EA/RS | 11.06 |( 0.20 Rc)| |V | | | | | |75283 GSC | +860302 |OO Vir |150131.6+022620 |SR | 12.3 | 14.1 | |p | | | | | |75021 75021| +860303 |OP Vir |130327.6+045429 |SRB | 8.30 | 8.64 | |V | | | | | |76122 DM | +860304 |OQ Vir |132543.3+060317 |SR: | 12.3 | 14.3 | |V | | | | | |76054 UCAC2| +860305 |OR Vir |133213.3-193950 |SR: | 12.4 | 14.4 | |V | | | | | |76054 UCAC2| +860309 |OV Vir |144130.2-020228 |DSCTC: | 7.83 |( 0.03 v )| |V | | | | | |76126 DM | +860310 |OW Vir |115914.6-060714 |SR: | 12.3 | 13.3 | |V | | | | | |77004 UCAC2| +860311 |OX Vir |120535.0-055045 |SRS: | 6.64 | 6.75 | |V | | | | | |77053 DM | +860312 |OY Vir |130030.2+033615 |SRS | 7.51 |( 0.06 )| |V | | | | | |77008 DM | +860314 |PP Vir |140448.9+052452 |ACVO | 8.67 |( 0.01 )| |B | | | | | |77112 DM | +860315 |PQ Vir |114928.1+003633 |BY: | 9.12 |( 0.03 )| |V | | | | |K0V |78018 DM | +860316 |PR Vir |115641.2-024644 |BY | 9.50 |( 0.05 )| |V | | | 17.16 | |K3V |78018 DM | +860317 |PS Vir *|115751.3+062705 |EW | 11.6 | 12.3 | 12.2 |V |53073.7375 | | 0.289807 | | |78154 GSC | +860319 |PU Vir *|123948.6-022622 |EW | 11.54 | 11.71 | 11.68 |* |52407.514 | | 0.2562555 | | |78060 GSC | +860320 |PV Vir |125536.3-053836 |DSCTC | 11.57 | 11.63 | |V | | | 0.18611 | |F |78022 GSC | +860321 |PW Vir |130310.6-160321 |M | 9.5 |< 15.1 | |V |52760 | | 255.2 | |M7e |78090 GSC | +860322 |PX Vir |130349.7-050943 |BY | 7.69 |( 0.04 )| |V | | | 6.47 | |G5V |78018 DM | +860323 |PY Vir *|131032.2-040933 |EW | 9.60 | 10.09 | 10.04 |V |51950.8407 | | 0.311251 | |K0 |78094 DM | +860326 |QR Vir |134334.0-174938 |SRA | 9.3 | 11.1 | |V |52469 | | 203.6 | |Me |78090 DM | +860328 |QT Vir |135209.3+060005 |DSCTC | 8.50 |( 0.02 b )| |V | | | 0.0562 | |A3 |78037 DM | +860329 |QU Vir *|140543.2+003412 |EW | 11.75 | 12.06 | 12.03 |* |52415.018 | | 0.399249 | | |78135 GSC | +860332 |QX Vir *|143628.4-053621 |EW | 12.1 | 12.7 | 12.6 |V |52025.629 | | 0.242074 | | |78130 GSC | +860333 |QY Vir |144716.1+024212 |BY | 7.76 |( 0.02 )| |V | | | 21.79 | |G8V |78018 DM | +860334 |QZ Vir *|113826.8+032207 |UG | 10. | 15.71 | |B | | | | |pec(UG) |09303 08852| +860336 |V0336 Vir |122608.7+101501 |LB | 11.0 | 11.3 | |V | | | | | |79100 79040| +860338 |V0338 Vir *|131117.4-110621 |EA | 9.16 | 9.45 | |V |53900.5899 | | 2.9927 |10 |F5 |79190 DM | +860339 |V0339 Vir |131120.8-103051 |SRB | 7.1 | 7.7 | |V | | | 58.5 | |Mb |79190 DM | +860340 |V0340 Vir |131324.2-135757 |EW | 11.53 | 12.22 | 11.85 |V |52879.487 | | 0.454857 | | |79018 79081| +860342 |V0342 Vir |132710.3-041021 |EA | 10.50 | 10.86 | 10.63 |V |53167.644 | | 0.754190 |17 |A |79100 DM | +860343 |V0343 Vir |133057.9+101332 |LB | 9.0 | 9.3 | |V | | | | | |79100 DM | +860344 |V0344 Vir |134224.6-192350 |SRB | 8.8 | 9.4 | |V | | | 54. | |M2 |79100 DM | +860345 |V0345 Vir |134406.5-132257 |LB | 9.2 | 9.8 | |V | | | | |M0 |79100 DM | +860347 |V0347 Vir |135441.8-220453 |EA | 11.75 | 12.43 | 11.85 |V |53090.714 | | 0.81672 |18 | |79018 79096| +860348 |V0348 Vir |141625.7-170529 |RRAB | 12.1 | 13.0 | |V |53796.812 | | 0.565210 |25 | |79100 79096| +860349 |V0349 Vir |142603.1-004130 |EA | 8.29 | 8.34 | 8.30 |V |48612.396 | | 2.12408 |06 |F3V |79003 DM | +860354 |V0354 Vir *|114332.2+024156 |RRAB | 12.4 | 13.3 | |V |52649.8561 | | 0.59503 |22 | |80001 GSC | NL80_2 +860355 |V0355 Vir |114925.1+052946 |BY: | 11.82 | 11.98 | |* | | | 0.65589 | | |80403 GSC | NL80_2 +860358 |V0358 Vir |115651.6+082721 |RS | 11.25 | 11.55 | |V | | | 4.402 | |K |80034 GSC | NL80_2 +860383 |V0383 Vir |121653.0+054126 |BY | 10.10 | 10.35 | |V | | | 14.26 | |K0 |80034 DM | NL80_2 +860388 |V0388 Vir |122252.8+011751 |RRAB | 12.0 | 13.1 | |V |53883.6720 | | 0.542991 |10 | |80002 GSC | NL80_2 +860394 |V0394 Vir |122549.8+094546 |BY | 11.3 | 11.6 | |V | | | 7.718 | | |80034 GSC | NL80_2 +860415 |V0415 Vir *|124501.6+075705 |EW | 10.10 | 10.34 | 10.32 |V |53133.62 | | 0.373705 | |G0 |80002 80372| NL80_2 +860419 |V0419 Vir *|124804.5-082047 |RRAB | 11.7 | 12.8 | |V |52728.7022 | | 0.5105287 |20 | |80377 GSC | NL80_2 +860430 |V0430 Vir |125558.9+075711 |RS | 11.03 | 11.2 | |* | | | 9.4260 | | |80375 80375| NL80_2 +860432 |V0432 Vir |125610.6-111742 |RRAB | 12.2 | 13.0 | |V |53821.7439 | | 0.597145 |20 | |80001 GSC | NL80_2 +860445 |V0445 Vir |130529.1+124936 |RS | 10.04 | 10.24 | |V | | | 3.6866 | |G5 |80001 DM | NL80_2 +860457 |V0457 Vir |131253.6+082336 |RS | 8.42 | 8.54 | |V | | | 9.870 | |G5 |80034 HIP | NL80_2 +860467 |V0467 Vir *|132244.8-060207 |EW | 9.28 | 9.72 | 9.69 |V |53869.7215 | | 0.604568 | |F0 |80002 DM | NL80_2 +860476 |V0476 Vir *|132922.5-055259 |RRAB | 11.2 | 12.1 | |V |55014.4814 | | 0.576341 |20 | |80001 GSC | NL80_2 +860546 |V0546 Vir *|141940.6+055403 |EW | 10.37 | 10.50 | 10.48 |V |52767.3482 | | 0.56717 | | |80396 80396| NL80_2 +860577 |V0577 Vir |143517.0-005933 |LB | 10.53 | 10.85 | |V | | | | |M2 |80001 DM | NL80_2 +860585 |V0585 Vir *|143927.4-032737 |RRAB | 12.1 | 12.9 | |V |54298.543 | | 0.601615 |13 | |80001 GSC | NL80_2 +860586 |V0586 Vir |143947.5-040805 |RRAB | 12.4 | 13.7 | |V |54292.54 | | 0.682772 |15 | |80001 GSC | NL80_2 +860591 |V0591 Vir *|144212.6+032414 |EW | 11.97 | 12.38 | 12.38 |* |52766.289 | | 0.350954 | | |80005 80005| NL80_2 +860601 |V0601 Vir |150013.9+064442 |BY | 11.7 | 11.9 | |* | | | 12.5002 | | |80067 GSC | NL80_2 +860604 |V0604 Vir |150612.7+025457 |RRAB | 12.4 | 13.7 | |V |53032.8682 | | 0.49580 |12 | |80001 GSC | NL80_2 +869001 |alf Vir *|132511.6-110941 |ELL+BCEP | 0.95 |( 0.10 )|( 0.08 )|V |19530.49 | | 4.014604 | |B1III-IV+B2V |04627 BD | +869013 |nu. Vir |114551.6+063146 |SRB | 4.10 | 4.16 | |Hp| | | | | |HIP HIP | +869017 |rho Vir |124153.1+101408 |DSCTC | 4.88 |( 0.02 )| |V | | | | | |67385 BD | +869023 |psi Vir *|125421.2-093220 |LB | 4.73 | 4.96 | |V | | | | |M3III |05055 BD | +869024 |ome Vir |113827.6+080804 |LB | 5.23 | 5.50 | |V | | | | |M4III | BD | +870001 |R Vol *|070536.2-730052 |M | 8.7 | 13.9 | |V |42279. | | 453.60 |48 |C(N)e |00001 00002| +870002 |S Vol *|072945.6-732244 |M | 7.7 | 13.9 | |V |41940. | | 394.8 |54 |M4e |00001 00002| +870003 |T Vol *|065747.9-670726 |M | 9.7 |< 13.9 | |p |40947. | | 175.0 |47 |M5II-IIIe |00001 05625| +870004 |U Vol |070022.8-661301 |EA: | 10.2 | 11.5 | |p | | | | | |00016 05625| +870005 |V Vol |074252.5-660556 |M | 10.5 |< 13.3 | |p |28900. | | 237.5 | |Me |00001 UCAC2| +870006 |W Vol |073740.0-693232 |EA/AR: | 10.9 | 11.8 | |p |16846.411 | | 2.758361 |17 *|K/M |00760 CPD | +870007 |X Vol |075750.5-651753 |M | 10.3 |< 13.0 | |p |28845. | | 280. | |Me(S7,2) |00016 08953| +870008 |Y Vol |081359.9-704415 |M | 12. |< 14. | |p | | | | | |00085 02381| +870014 |RV Vol |083252.6-700424 |RR | 12.5 | 13.5 | |p | | | | | |04001 04001| +870022 |SV Vol *|084832.6-713915 |RRAB | 11.76 | 12.56 | |V |41742.428 | | 0.37850 |11 | |07233 07233| +870031 |TX Vol *|083220.3-655028 |EA/D | 10. | 10.5 | 10.5 |p |41339.593 | | 5.38837 | | |08040 CPD | +870034 |UU Vol |081600.2-682821 |SRB: | 9.2 | 9.5 | |p | | | | |M4e |00085 CPD | +870035 |UV Vol |081840.9-660155 |M | 12.2 | 15.5 | |p | | | | |Me |04453 05254| +870036 |UW Vol |063904.0-741134 |M: | 12. | 15. | |p | | | | | |04663 02385| +870037 |UX Vol |084617.4-710220 |LB: | 9.20 | 9.62 | |V | | | | |SC |06059 | +870039 |UZ Vol |063608.0-724707 |E: | 9.41 | 9.90 | |Hp| | | | | |HIP HIP | +870040 |VV Vol |064702.8-702806 |SRB | 8.42 | 8.62 | |Hp| | | | | |HIP HIP | +870041 |VW Vol |065149.4-692457 |LB: | 8.67 | 8.78 | |Hp| | | | | |HIP HIP | +870042 |VX Vol |065344.3-655450 |E: | 8.03 | 8.28 | |Hp| | | | | |HIP HIP | +870043 |VY Vol |065349.8-713549 |LB: | 8.81 | 8.92 | |Hp| | | | | |HIP HIP | +870044 |VZ Vol |070435.1-681455 |LB: | 8.21 | 8.34 | |Hp| | | | | |HIP HIP | +870045 |WW Vol |071914.6-671115 |LB | 7.92 | 8.21 | |V | | | | | |HIP HIP | +870046 |WX Vol |074400.8-671207 |LB | 7.51 | 7.67 | |Hp| | | | | |HIP HIP | +870047 |WY Vol |080751.3-695357 |ACV | 7.97 | 8.02 | |Hp| | | | | |HIP HIP | +870048 |WZ Vol |084346.2-714934 |EA | 8.40 | 8.66 | |Hp| | | | | |HIP HIP | +870049 |XX Vol |082830.1-644319 |M | 10.7 |< 14.8 | |V |52643 | | 315. | | |78040 GSC | +870054 |ZZ Vol |072701.1-693055 |EW | 8.37 | 8.69 | 8.68 |V |52723.672 | | 0.847434 | |A3IV/V |79011 DM | +870055 |AA Vol |075105.5-673437 |SRB | 9.3 | 10.5 | |V | | | 176. | | |79064 79068| +870056 |AB Vol |081043.5-723245 |EA | 11.98 | 12.81 | 12.16 : |V |53461.716 | | 1.92193 |12 | |79003 79063| +870057 |AC Vol |084016.9-654758 |EA | 11.02 | 11.47 | 11.20 |V |52619.896 | | 8.0758 |05 | |79003 79068| +870058 |AD Vol *|084439.8-710741 |M | 12.0 |< 14.4 | |V |53157. | | 270. | | |79190 79190| +870059 |AE Vol |084539.4-645928 |EW | 9.97 | 10.54 | 10.48 |V |52613.631 | | 0.406614 | | |79011 DM | +870060 |AF Vol |085334.9-702808 |EW | 10.60 | 11.05 | 11.00 |V |52617.843 | | 0.638940 | | |79011 79063| +870061 |AG Vol |085743.9-730545 |EA | 10.45 | 11.34 | 10.85 |V |51928.634 | | 12.4398 |09 | |79011 DM | +870062 |AH Vol *|071001.1-643708 |EA | 11.56 | 11.8 | 11.8 |V |51933.642 | | 3.32932 |06 | |80011 GSC | NL80_2 +870063 |AI Vol |074502.4-711946 |M | 2.04 | 3.67 | |K | | | 511. | |C |80166 2MASS| NL80_2 +870064 |AK Vol |074923.1-654927 |RS | 8.54 | 8.65 | |V | | | 31.808 | |G8III |80286 DM | NL80_2 +870065 |AL Vol *|081609.4-664448 |RR(B) | 12.30 | 13.25 | |V |52614.70 | | 0.51721 | | |80300 GSC | NL80_2 +880001 |R Vul *|210422.5+234918 |M | 7.0 | 14.3 | |V |45586. | | 136.73 |49 |M3e-M7e |00001 00002| +880002 |S Vul *|194823.8+271711 |DCEP | 8.69 | 9.42 | |V |44147.2 | | 68.464 |29 |G0-K2(M1) |10148 00884| +880003 |T Vul *|205128.2+281502 |DCEP | 5.41 | 6.09 | |V |41705.121 | | 4.435462 |32 |F5Ib-G0Ib |08300 08953| +880004 |U Vul |193637.7+201959 |DCEP | 6.73 | 7.54 | |V |44939.58 | | 7.990676 |33 |F6Iab-G2 |00001 00766| +880005 |V Vul *|203632.0+263615 |RVA | 8.05 | 9.53 | 8.65 |V | | | 75.7 | |G4e-K3(M2) |00767 00368| +880006 |W Vul *|201004.3+261707 |SRB | 10.2 | 11.8 | |p | | | 234.52 |43 |M5IIIe |03785 08953| +880007 |X Vul *|195728.6+263323 |DCEP | 8.33 | 9.22 | |V |35309.977 | | 6.319588 |30 |F6Ia-F9 |09667 00884| +880009 |Z Vul *|192139.1+253430 |EA/SD | 7.25 | 8.90 | 7.58 |V |42947.4777 | | 2.454934 |18 *|B4V+A3III |00001 00010| +880010 |RR Vul |205447.6+275506 |EA | 10.0 | 11.4 | |p |35035.437 | | 5.05070 |09 *|A2 |07929 08953| +880011 |RS Vul *|191740.0+222628 |EA/SD: | 6.79 | 7.83 | 6.86 |V |32808.257 | | 4.4776635 |14 *|B4V+A2IV |00770 08953| +880012 |RT Vul |191128.8+222259 |CST | 7.5 | | |p | | | | |B8 |00366 00021| +880013 |RU Vul *|203852.7+231531 |SRA | 8.1 | 12.7 | |V |43440. | | 173.6 |47 |M3e-M4e |00001 00002| +880015 |RW Vul |200359.0+214219 |M | 12. | 15. | |p |39022. | | 208.55 | |M6.5 |00001 00772| +880016 |RX Vul *|205259.8+232216 |M | 11. | 15. | |p |27520. | | 457. | |M9e |00001 00567| +880018 |RZ Vul *|194714.1+192917 |* | 12.5 | 16.5 | |p | | | | |G2IV/V: |10153 00772| +880020 |ST Vul |200113. +230634:| | 11. | 14.4 | |p | | | | | |00775 | +880021 |SU Vul *|201131.4+263254 |LB: | 11.9 | 12.9 | |p | | | | | |00341 BD | +880022 |SV Vul *|195130.9+272737 |DCEP | 6.72 | 7.79 | |V |43086.89 | | 45.0121 |23 |F7Iab-K0Iab |10155 00766| +880024 |SX Vul *|203509.4+283421 |M | 12.2 | 17. | |p |26315. | | 425.4 | |M8e |00001 UCAC2| +880026 |SZ Vul |203642.3+225412 |M | 12. |< 16.5 | |p |25928. | | 253.6 | | |00001 00779| +880028 |TU Vul |203916.7+222945 |M | 10.3 |< 16. | |p |27391. | | 300.2 | | |00001 00779| +880033 |TZ Vul |204137.4+281814 |LB: | 12. | 14.9 | |p | | | | |C(N) |00341 00779| +880034 |UU Vul *|204240. +205349:| | 10.5 | 13.5 | |p | | | | | |01622 08953| +880036 |UW Vul |205232.1+271028 |M | 11. |< 15.0 | |p |26540. | | 365.5 | |M7 |00001 06286| +880040 |VV Vul *|205723.7+275123 |EA/SD | 12.0 | 13.9 | 12.1 |V |45151.57 | | 3.411361 |18 |A2/3V |00001 00779| +880044 |VZ Vul |210346.7+233517 |CST: | 10.2 | | |p | | | | |K0 |00653 BD | +880045 |WW Vul *|192558.8+211231 |ISA | 10.25 | 12.94 | |V | | | | |A3ea |10134 06239| +880046 |WX Vul |210923.9+264017 |M | 11. |< 14. | |p |26189. | | 280.7 | |M5e |03122 UCAC2| +880050 |XY Vul |192559.3+262435 |M | 12. | 17. | |p |36894. | | 288.6 | |M6e-M6.5 |04427 04427| +880051 |XZ Vul *|192924.3+272605 |EA/SD: | 11.3 | 12.8 | 11.4 |p |45932.55 | | 3.089631 |24 *|G0 |00001 04427| +880053 |YZ Vul |194402.1+274606 |M | 10.7 | 17.3 | |p |45628. | | 376.87 |40 |M5e-M9 |00001 04427| +880056 |AB Vul *|195347.0+285656 |EA/KE: | 12.4 | 12.9 |( 0.02 )|p |25145.467 | | 1.4613343 |15 *|A8: |04244 04244| +880057 |AC Vul |185955.7+251037 |M | 12.1 | 18.5 | |p |25446. | | 231.2 |45 | |00332 00133| +880072 |AS Vul |194744.5+275506 |DCEP | 11.76 | 12.71 | |V |31662.723 | | 12.224726 |36 | |02773 02773| +880073 |AT Vul *|195358.5+233352 |EA/SD: | 9.08 | 10.0 | 9.3 |V |29906.980 | | 3.98039 |13 |B3 |00007 00785| +880074 |AU Vul |201805.9+274404 |SRB | 11.8 | 13.4 | |p | | | 145. | |K-M |00460 06286| +880075 |AV Vul |202606.4+261417 |LB | 10.7 | 12.2 | |p | | | | |M5-M8 |03785 00786| +880076 |AW Vul *|202901.7+244828 |EA/SD: | 10.8 | 11.9 | 10.9 |V |46285.465 | | 0.80645141 |20 |F0 |00001 00318| +880077 |AX Vul *|203310.3+245156 |EA/SD: | 11.0 | 12.8 | |V |44853.390 | | 2.0248386 |12 |A1V |00001 00318| +880078 |AY Vul *|203538.9+223727 |EA | 11.3 | 12.4 | |p |42685.377 | | 2.4124468 |16 |F0 |10157 00318| +880079 |AZ Vul *|203054.0+253905 |EA/KE: | 11.8 | 12.4 | 11.9 |p |42654.387 | | 1.1226255 |20 *|A0 |00001 00593| +880080 |BB Vul *|203219.5+273944 |E | 12.5 | 13.2 | |p | | | | | |00599 00599| +880082 |BD Vul |203717.8+262913 |M | 9.3 | 12.7 | |V |25758. | | 430. |53 |C6-7,3e(Ne) |00780 00601| +880083 |BE Vul *|202533.6+272209 |EA/SD | 9.78 | 11.31 | 9.90 |V |40111.381 | | 1.552044 |17 *|A3V-A5V |10167 08953| +880084 |BF Vul *|204414.8+204945 |SR | 10.3 | 12.8 | |V |27694. | | 148.2 | |M4 |00310 00158| +880091 |BN Vul *|192756.1+242051 |RRAB | 10.63 | 11.40 | |V |45530.395 | | 0.5941295 |19 |A6-F4 |00001 00616| +880092 |BO Vul *|195629.1+235445 |EA/SD | 10.5 | 13.3 | 10.6 |p |35989.431 | | 1.945869 |15 *|F0 |00001 00636| +880093 |BP Vul *|202533.3+210218 |EA/SD | 10.1 | 11.3 | 10.5 |p |46003.248 | | 1.9403491 |10 *|A7 |00001 10158| +880094 |BQ Vul |203119.2+250051 |EA/SD | 11.9 | 13.0 | |V |27976.565 | | 4.4271 |08 |A0IV |00654 00492| +880095 |BR Vul |194635.2+225323 |DCEP | 11.8 | 12.8 | |p |16728.15 | | 5.197170 |28 | |03788 02329| +880096 |BS Vul *|193726.5+215550 |EB/KW | 10.9 | 11.60 | 11.10 |V |43271.578 | | 0.47597147 | |F2 |00001 00554| +880097 |BT Vul *|202304.9+272839 |EA | 11.8 | 12.5 | 12.3 |p |35402.180 | | 1.141200 |12 |F8 |03785 03785| +880098 |BU Vul *|204618.9+281544 |EA/SD | 10.6 | 11.4 | |p |33533.683 | | 0.5689930 |20 *|G0 |10162 00601| +880099 |BV Vul *|205712.4+292004 |SRA | 10.5 | 11.5 | |V |27705. | | 85.3 | |S7,8 |00001 00492| +880100 |BW Vul *|205422.4+283119 |BCEP | 6.52 |( 0.24 )| |V |45177.6220 | | 0.20104117 |50 |B1III-B2IIIeaV |09953 00021| +880105 |CD Vul *|202534.3+262806 |EB/SD | 11.5 | 12.6 | 11.9 |p |46298.505 | | 0.6837450 | |F0V |00001 00786| +880106 |CE Vul |193257.8+233616 |RRAB | 12.2 | 14.5 | |p |37176.393 | | 0.3704876 |20 | |06248 06248| +880109 |CH Vul |201737.4+265319 |M | 12.1 |< 16.5 | |p |32130. | | 224.6 | |M5 |00001 00601| +880110 |CI Vul |210842.4+275144 |M | 12.0 |< 14.5 | |p |28748. | | 317.7 | | |00793 00601| +880114 |CN Vul |194334.0+224459 |M | 11.6 |< 16.5 | |p |34970. | | 330.2 | |M5e-M8 |00001 02329| +880130 |DG Vul |195840.2+274101 |CEP | 10.73 | 11.87 | |V |28427.344 | | 13.60831 |35 | |04427 04427| +880134 |DL Vul |200717.5+224842 |SRA | 12.5 | 14.8 | |p |27727. | | 375. | |M6 |00773 00772| +880140 |DR Vul *|201346.9+264502 |EA/DM | 8.65 | 9.27 | 9.19 |V |40300.6680 | | 2.2508645 |15 *|B8 |06242 08953| +880144 |DV Vul |203739.2+243815 |LB | 10.8 | 12.1 | |p | | | | |M0-M4 |00797 BD | +880146 |DX Vul |204623.1+254906 |M | 12.4 |< 15. | |p |26575. | | 313. | | |00797 00601| +880147 |DY Vul *|210329.8+235947 |LB | 8.4 | 9.7 | |p | | | | |M3-M6 |00797 08953| +880159 |EP Vul *|193317.8+233920 |LB | 11.0 | 14.7 | |p | | | | |S6,5-S8,7 |10186 06248| +880160 |EQ Vul *|195823.2+280108 |EA/DM: | 11.79 | 12.5 | 12.5 |B |35344.763 | | 9.297164 |07 *|B8 |06178 10187| +880161 |ER Vul *|210225.9+274827 |EW/DW/RS | 7.27 | 7.49 |< 7.44 |V |40182.2621 | | 0.69809409 | |G0V+G5V |10188 BD | +880162 |ES Vul *|191743.6+230132 |BCEP: | 5.42 |( 0.06 )| |V |36338.5 | | 0.6096 |50 |O8IV-B0.5IVeV |02602 BD | +880163 |ET Vul *|193520.1+262549 |CWA | 11.94 | 12.50 | |V |44042.81 | | 53.493 |30 |F8: |00001 02773| +880165 |EV Vul *|195138.4+235317 |EB/DM | 11.5 | 12.2 | 11.9 |p |42731.135 | | 2.82200 | |B1V: |10169 10169| +880167 |EX Vul *|200447.4+221922 |EA/DS | 12.49 | 15.1 | |B |36096.34 | | 16.135485 |10 |ea: |07806 10170| +880168 |EY Vul *|200716.6+241216 |EA/SD | 11.2 | 12.2 |( 0.05 )|p |35771.238 | | 4.103052 |12 *|A4 |07056 02786| +880171 |FG Vul *|203433.0+281651 |SRC | 8.97 | 9.51 | |V |36095.8 | | 86.0 | |M5II |10190 02973| +880172 |FH Vul *|204019.9+221324 |RRAB | 11.4 | 13.6 | |p |36027.454 | | 0.4054185 |15 | |08109 06286| +880173 |FI Vul |204851.2+225939 |LB | 8.6 | 10.3 | |p | | | | |M3 |03135 08953| +880174 |FK Vul *|205231.0+222612 |RRAB | 11.8 | 13.7 | |p |36076.423 | | 0.4340529 |23 | |08109 06286| +880180 |FQ Vul *|193536.6+261702 |EA/D | 12.3 | 12.9 | 12.9 |p |34238.507 | | 6.262398 | | |04248 04248| +880181 |FR Vul *|193624.8+264557 |EA | 10.3 | 11.0 | |p |34981.3980 | | 0.94185866 |20 |A2 |04248 04248| +880185 |FV Vul |193840.9+273556 |UV | 12.3 | 14.1 | |p | | | | |Me: |04248 04248| +880196 |GN Vul *|194624.6+272326 |EA/DM | 12.3 | 12.9 | 12.4 |p |35399.273 | | 1.9724441 |18 | |04427 04427| +880198 |GP Vul *|194656.9+285108 |EB/KE | 10.7 | 11.9 | 11.2 |p |34601.466 | | 1.0325031 | | |00001 04244| +880203 |GU Vul *|194857.1+262323 |EW | 11.6 | 12.2 | 12.2 |p |34985.423 | | 0.77422704 | | |04427 04427| +880207 |GY Vul |195155.2+290300 |SRB: | 12.5 | 13.6 | |p | | | 100. : | |M4 |04244 04244| +880209 |HH Vul |195210.1+291409 |LB | 10.8 | 11.8 | |p | | | | |M3 |04248 04248| +880210 |HI Vul *|195347.5+284417 |EB/KE | 12.3 | 12.7 | 12.6 |p |34119.521 | | 1.2937249 | | |04248 04248| +880228 |IK Vul |202516.3+240011 |LB | 12.0 | 14.5 | |p | | | | |M7 |04295 00158| +880230 |IM Vul |204306.0+222855 |E | 11.6 |< 13.3 | |p | | | | | |02587 02975| +880231 |IN Vul |205321.9+253500 |LB | 12.0 | 13.0 | |p | | | | |M7 |04306 | +880241 |IX Vul |193856.0+262451 |LB | 11.9 | 12.9 | |p | | | | | |03662 03662| +880249 |KP Vul |201112.1+221011 |I | 12.5 | 13.3 | |p | | | | | |03980 03980| +880268 |LT Vul *|190342.5+211606 |DSCT | 6.52 | 6.62 | |V |40720.7916 | | 0.1090 |47 |F2III |07015 00021| +880283 |MU Vul |200234.3+225806 |RR | 11.5 | 12.0 | |p |40483.341 | | 0.5 : | | |07232 02786| +880284 |MV Vul |201509.8+220908 |ISB: | 9.9 | 10.4 | |p | | | | |K0 |07232 02787| +880285 |MW Vul |201627.2+274634 |ACV | 6.62 | 6.70 | |V |42644.3 | | 16.846 |40 |A0p(Si) |08824 BD | +880286 |MX Vul *|202647.7+242919 |SRD: | 10.7 | 11.3 | |p |38995. | | 362.5 | |F5 |10178 02786| +880293 |NR Vul |195011.9+245524 |LC | 9.13 | 9.61 | |V | | | | |M1Ia |07315 10175| +880294 |NS Vul *|195230.1+222714 |LB: | 7.75 | 8.12 | |V | | | | |M5III |10176 00021| +880295 |NT Vul |200106.0+274513 |ACV | 4.62 | 4.67 | |V |41885.2 | | 14.0 | |A4IIIm |04447 BD | +880296 |NU Vul |201414.5+284141 |DSCTC | 5.36 |( 0.05 )| |B | | | 0.227 | |A7IVn-shell |10177 BD | +880299 |NX Vul |200243.4+214927 |SR: | 12.0 | 12.8 | |p | | | | | |10178 02787| +880301 |NZ Vul |192054.9+202452 |M | 12.0 | 15.5 | |I |41660. | | 370. |40 | |08319 08319| +880302 |OO Vul |192103.1+200232 |M | 7.4 | 13.5 | |I |42190. | | 365. |50 |M9 |08319 08319| +880303 |OP Vul |192104.1+193255 |M | 11.2 : | 14.2 | |I |42440. | | 350. |50 : |M6 |08319 08319| +880305 |OR Vul |192120.7+200612 |M | 10.8 | 14.0 : | |I |41565. | | 365. |60 : |M9 |08319 08319| +880310 |OW Vul |192224.2+200345 |M | 9.2 | 14.0 | |I |42145. | | 375. |50 |M6 |08319 08319| +880311 |OX Vul |192232.1+195301 |M | 9.6 | 12.6 | |I |41650. | | 178. |50 |M9 |08319 08319| +880313 |OZ Vul |192420.7+200026 |M | 9.8 | 13.6 | |I |42200. | | 350. |60 |M6 |08319 08319| +880315 |PQ Vul |192600.5+194036 |M | 10.2 | 14.0 | |I |41660. | | 368. |55 |M3 |08319 08319| +880317 |PS Vul *|194356.0+270807 |E: | 6.28 |( 0.076 )| |V | | | | |B7V+G1:III |07964 BD | +880319 |PU Vul *|202113.3+213419 |NC | 8.7 | 16.6 | |p | | | | |A4II-F8Iab+M6IIIe|10196 04797| +880321 |PW Vul |192605.0+272158 |N | 6.43 | 17. : | |V | | | | | |67387 67388| +880322 |PX Vul |192640.3+235351 |INB | 11.56 | 11.82 | |V | | | | | |67390 67390| +880326 |QR Vul |201515.9+253531 |GCAS | 4.60 | 4.80 | |V | | | | | |67396 BD | +880327 |QS Vul |201530.2+233032 |EA/GS | 5.15 |( 0.12 )| |V | | | | | |67397 BD | +880328 |QT Vul |205605.5+235612 |SR | 10.3 | 11.4 | |V | | | | | |67269 BD | +880329 |QU Vul |202646.0+275043 |NA | 5.2 |< 11.2 | |V | | | | | |68361 68361| +880330 |QV Vul |190440.3+214614 |NA | 7.0 | 19. | |V | | | | | |69294 69009| +880331 |QW Vul |191231.5+242138 |ACV | 9.94 |( 0.15 )| |V | | | | | |69295 BD | +880333 |QY Vul |194615.9+281619 |E/WR | 10.43 | 10.53 | |B | | | | | |69299 69224| +880335 |V0335 Vul |192314.1+242740 |SR | 10.1 | 12. | |p | | | | | |71164 71164| +880336 |V0336 Vul |193441.9+235322 |SRB: | 7.7 | 9.6 | |V | | | | | |71188 71188| +880337 |V0337 Vul |190618.0+253421 |M | 12.5 |< 16.0 | |V | | | | | |72071 72071| +880340 |V0340 Vul |191242.7+231126 |M | 11.8 |< 15. | |V | | | | | |72071 72071| +880342 |V0342 Vul |192200.9+230625 |M | 12.2 | 15.2 | |V | | | | | |72071 72071| +880344 |V0344 Vul |192241.1+255838 |M | 12.5 |< 15.2 | |V | | | | | |72071 72071| +880347 |V0347 Vul |192745.9+244234 |M | 11.9 | 15.2 | |V | | | | | |72071 72071| +880349 |V0349 Vul |193110.5+233034 |M | 11.4 | 15.2 | |V | | | | | |72071 72071| +880350 |V0350 Vul |193920.5+234418 |M | 11.7 |< 15.0 | |V | | | | | |72071 72071| +880352 |V0352 Vul |194102.4+245235 |M | 12.1 |< 15.2 | |V | | | | | |72071 72071| +880356 |V0356 Vul |195201.7+270946 |SR | 12.0 | 15.0 | |V | | | | | |72071 72071| +880358 |V0358 Vul |195512.4+223106 |M | 12.1 |< 15.0 | |V | | | | | |72071 72071| +880359 |V0359 Vul |195557.1+222100 |M | 11.3 | 14.5 | |V | | | | | |72071 72071| +880360 |V0360 Vul |195628.2+231612 |SRB | 12.4 | 14.2 | |V | | | | | |72071 72071| +880363 |V0363 Vul |200620.2+252726 |M | 12.5 |< 15.2 | |V | | | | | |72071 72071| +880365 |V0365 Vul |201001.1+253800 |M | 11.8 | 15.1 | |V | | | | | |72071 72071| +880366 |V0366 Vul |201237.9+243648 |M | 12.4 |< 15.2 | |V | | | | | |72071 72071| +880367 |V0367 Vul |201540.5+252638 |M | 10.3 |< 15.2 | |V | | | | | |72071 72071| +880368 |V0368 Vul |201605.7+241339 |M | 11.6 |< 15.2 | |V | | | | | |72071 72071| +880369 |V0369 Vul |201822.8+263917 |M | 11.8 |< 15.2 | |V | | | | | |72071 72071| +880371 |V0371 Vul |202021.9+224349 |M | 6.7 | 8.7 | |K | | | | | |72121 2MASS| +880372 |V0372 Vul |202134.5+291445 |SR | 12.4 | 15.0 | |V | | | | | |72071 72071| +880375 |V0375 Vul |202728.3+241722 |M | 12.0 |< 16.0 | |V | | | | | |72071 72071| +880376 |V0376 Vul |191513.8+251258 |SR | 10.3 | 11.3 | |r | | | | | |73345 73346| +880377 |V0377 Vul |192250.9+261545 |LPB | 5.18 |( 0.03 )| |V | | | | | |73347 BD | +880379 |V0379 Vul |194954.7+282623 |ELL | 6.22 | 6.29 | |V | | | | | |73349 BD | +880381 |V0381 Vul |201045.4+264436 |DSCTC | 10.23 |( 0.03 )| |V | | | | | |73351 73241| +880382 |V0382 Vul |201118.7+263118 |DSCTC | 10.41 |( 0.03 )| |V | | | | | |73351 73241| +880383 |V0383 Vul |201625.6+222347 |DSCTC | 7.2 |( 0.03 v )| |V | | | | | |73279 BD | +880387 |V0387 Vul |185958.1+224852 |LB | 6.21 | 6.32 | |Hp| | | | | |HIP HIP | +880388 |V0388 Vul |191308.7+225208 |ACV: | 9.69 | 9.82 | |Hp| | | | | |HIP HIP | +880389 |V0389 Vul |191931.9+223415 |SRB | 6.69 | 6.98 | |Hp| | | | | |HIP HIP | +880390 |V0390 Vul |192539.0+260614 |ACV: | 7.39 | 7.41 | |Hp| | | | | |HIP HIP | +880391 |V0391 Vul |193136.4+265912 |LPB | 7.32 | 7.36 | |Hp| | | | | |HIP HIP | +880392 |V0392 Vul |193404.7+241837 |ACV: | 9.99 | 10.14 | |Hp| | | | | |HIP HIP | +880393 |V0393 Vul |193657.9+205707 |BY: | 9.39 | 9.56 | |Hp| | | | | |HIP HIP | +880394 |V0394 Vul |194902.7+202531 |E: | 8.75 | 8.92 | |Hp| | | | | |HIP HIP | +880395 |V0395 Vul |195104.1+223636 |BE | 4.78 | 4.97 | |V | | | | | |HIP HIP | +880396 |V0396 Vul |195104.7+274301 |BE | 7.77 | 7.82 | |Hp| | | | | |HIP HIP | +880397 |V0397 Vul |200043.4+234756 |ELL: | 7.38 | 7.46 | |Hp| | | | | |HIP HIP | +880398 |V0398 Vul *|201032.2+292150 |LPB: | 7.54 | 7.62 | |Hp| | | | | |HIP HIP | +880399 |V0399 Vul |202510.8+212919 |EA: | 7.01 | 7.17 | |Hp| | | | | |HIP HIP | +880400 |V0400 Vul |204042.3+260445 |EA: | 6.76 | 6.82 | |Hp| | | | | |HIP HIP | +880401 |V0401 Vul |204300.2+264834 |BY: | 10.85 | 11.03 | |Hp| | | | | |HIP HIP | +880402 |V0402 Vul |204806.3+272726 |EB: | 8.32 | 8.45 | |Hp| | | | | |HIP HIP | +880403 |V0403 Vul |210555.5+205648 |EB | 6.83 | 6.88 | |Hp| | | | | |HIP HIP | +880404 |V0404 Vul |210625.0+213807 |SRD | 9.46 | 9.69 | |Hp| | | | | |HIP HIP | +880409 |V0409 Vul |194013.5+223135 |BE: | 11.73 | 12.05 | |V | | | | | |76215 UCAC2| +880419 |V0419 Vul |201019.5+292009 |SR: | 11.3 | 12.3 | |* | | | | | |76221 2MASS| +880420 |V0420 Vul |205936.8+262834 |M | 10.3 | 13.0 | |V | | | | | |76230 76230| +880421 |V0421 Vul |210310.3+242707 |SR | 7.44 | 7.61 | |V | | | | | |76122 DM | +880422 |V0422 Vul |210511.0+265414 |M | 11.0 |< 13.2 | |V | | | | | |76232 UCAC2| +880423 |V0423 Vul |192744.2+242327 |SR: | 10.4 | 12.3 | |* | | | | | |77156 UCAC2| +880424 |V0424 Vul |192942.4+254445 |SR: | 12.1 | 13.0 | |* | | | | | |77156 2MASS| +880425 |V0425 Vul |193006.6+233440 |M: | 12.5 |< 14.9 | |* | | | | | |77156 2MASS| +880428 |V0428 Vul |193209.9+211425 |SR: | 11.8 | 14.2 | |* | | | | | |77156 2MASS| +880429 |V0429 Vul |193250.6+211722 |SR: | 11.4 | 12.9 | |* | | | | | |77156 2MASS| +880430 |V0430 Vul |194925.9+223404 |SR: | 12.5 | 13.2 | |* | | | | | |77156 UCAC2| +880431 |V0431 Vul |195029.3+231442 |SR: | 12.5 | 13.3 | |* | | | | | |77156 2MASS| +880432 |V0432 Vul |200015.6+235844 |SR: | 10.9 | 12.0 | |* | | | | | |77156 2MASS| +880433 |V0433 Vul |200032.5+224015 |SR: | 10.3 | 11.2 | |* | | | | | |77156 UCAC2| +880434 |V0434 Vul |200033.2+224341 |SR: | 11.4 | 12.3 | |* | | | | | |77156 2MASS| +880435 |V0435 Vul |200101.4+253745 |SR: | 11.3 | 12.8 | |* | | | | | |77156 2MASS| +880436 |V0436 Vul |202718.6+281944 |BE | 8.81 |( 0.05 )| |V | | | | | |77119 DM | +880438 |V0438 Vul |204321.1+262437 |M | 12.5 |< 20. | |V | | | | | |77144 77144| +880439 |V0439 Vul |204412.4+261247 |M | 12.0 | 15.8 | |V | | | | | |77144 77144| +880440 |V0440 Vul |204501.2+271507 |M | 12.5 |< 16.0 | |V | | | | | |77144 77144| +880442 |V0442 Vul |205909.6+272639 |M | 2.97 | 4.07 | |K | | | | | |77081 77154| +880443 |V0443 Vul |210129.9+250343 |M | 12.0 | 15.0 | |V | | | | | |77144 77144| +880444 |V0444 Vul |210405.6+263211 |M | 12.2 | 15.0 | |V | | | | | |77144 77144| +880445 |V0445 Vul |210801.3+234345 |M | 10.5 | 14.4 | |V | | | | | |77144 77144| +880446 |V0446 Vul |210901.2+273123 |LB | 9.7 | 11.1 | |V | | | | | |77144 77144| +880447 |V0447 Vul |211343.6+280014 |M | 11.7 |< 16.0 | |V | | | | | |77144 77144| +880448 |V0448 Vul |212019.5+280858 |LB | 12.4 | 14.1 | |V | | | | | |77144 77144| +880450 |V0450 Vul |194205.5+231900 |BE | 10.05 | 10.37 | |V | | | | |B1e |78277 GSC | +880451 |V0451 Vul |195304.9+215133 |SRB | 11.9 | 12.7 | |V | | | 160. | | |78040 GSC | +880452 |V0452 Vul |200043.7+224239 |BY | 7.67 |( 0.03 )| |V | | | 12.039 | |G5V |78018 DM | +880453 |V0453 Vul |200924.8+240331 |M: | 12.2 | 14.8 | |* |51290 | | | | |78006 2MASS| +880454 |V0454 Vul |201035.8+255507 |M: | 10.9 | 13.7 | |* | | | | | |78006 2MASS| +880455 |V0455 Vul |202626.1+243039 |LB: | 11.3 | 13.2 | |V | | | | | |78292 GSC | +880456 |V0456 Vul |210018.0+275256 |EA | 12.14 | 12.81 | |V |52871.0792 | | 3.0421 | | |78214 GSC | +880457 |V0457 Vul |211858.2+261350 |BY | 8.45 |( 0.04 )| |V | | | 6.664 | |G8V |78018 DM | +880460 |V0460 Vul |193918.1+201101 |LB | 10.6 | 11.4 | |V | | | | |M3 |79100 DM | +880462 |V0462 Vul |200308.2+251726 |M: | 9.8 | 12.0 : | |* |51525. | | 398. : | | |79036 2MASS| +880463 |V0463 Vul |201142.7+215107 |SR: | 11.1 | 11.6 | |* | | | | | |79100 79040| +880465 |V0465 Vul |210408.9+264750 |LB | 11.1 | 11.8 | |V | | | | | |79100 79010| +880467 |V0467 Vul |211723.9+215334 |EB | 12.44 | 12.85 | 12.70 |* |53185.827 | | 0.427417 | | |79004 GSC | +880468 |V0468 Vul |191145.8+223105 |SR | 11.8 | 12.3 | |* | | | 73. | | |80001 USNO | NL80_3 +880469 |V0469 Vul *|192852.2+271001 |LB: | 12.0 | 12.9 | |V | | | | |e |80077 80077| NL80_3 +880470 |V0470 Vul |192854.0+222136 |LB | 11.6 | 12.1 | |* | | | | | |80062 USNO | NL80_3 +880473 |V0473 Vul |193751.9+213526 |EB | 11.6 | 12.0 | 11.7 |V |53530.7457 | | 0.5754471 | | |80001 GSC | NL80_3 +880487 |V0487 Vul |194314.6+231601 |EA | 10.76 |( 0.06 )| |Ic|51422.45 :| | | |B1V |80528 80528| NL80_3 +880488 |V0488 Vul |194320.3+231921 |INB: | 12.01 |( 0.03 )| |Ic| | | | | |80528 80528| NL80_3 +880490 |V0490 Vul |194352.7+231141 |SRB | 9.8 | 10.3 | |V | | | 79.5 | |M6III |80002 DM | NL80_3 +880491 |V0491 Vul *|194622.7+243748 |EA | 9.94 | 10.35 : | 10.33 : |V |51511.507 | | 7.6699 | |B0.5V |80023 DM | NL80_3 +880492 |V0492 Vul |194755.4+272256 |SRB | 12.1 | 12.5 | |V | | | 27.3 | |M4III |80009 GSC | NL80_3 +880493 |V0493 Vul |195152.8+272503 |EB | 11.30 | 11.65 | 11.60 |V |52791.775 | | 1.2966 | |B3IVn |80002 GSC | NL80_3 +880494 |V0494 Vul |195316.6+203343 |DSCT | 11.8 | 12.0 | |V | | | 0.135674 | | |80531 80531| NL80_3 +880495 |V0495 Vul *|195345.3+203033 |EA | 9.76 | 10.16 | 10.14 |V |54651.4603 | | 1.635135 |10 |B9 |80532 DM | NL80_3 +880496 |V0496 Vul |195349.7+233040 |EW | 11.90 | 12.45 | 12.35 |V |53579.416 | | 0.301201 | | |80002 GSC | NL80_3 +880499 |V0499 Vul |201750.7+285807 |EA | 11.19 | 11.60 | 11.60 |* |51464.816 | | 0.83951 |11 |G5 |80011 GSC | NL80_3 +880500 |V0500 Vul |202056.1+210045 |EA | 12.44 | 13.0 : | 12.6 : |V |51332.770 | | 0.73574 |18 | |80042 GSC | NL80_3 +880502 |V0502 Vul |203101.0+240200 |EA | 10.39 | 11.08 | 10.60 |V |51467.654 | | 1.551913 |22 |A0 |80042 DM | NL80_3 +880503 |V0503 Vul |203529.5+260726 |EW | 11.9 | 12.6 | 12.4 |V |53128.913 | | 0.320995 | | |80002 GSC | NL80_3 +880504 |V0504 Vul |203904.7+233847 |BY | 12.28 |( 0.22 *)| |V | | | 0.7145 | | |80021 GSC | NL80_3 +880505 |V0505 Vul |204009.1+250330 |SR | 11.85 | 12.38 | |* | | | 65. | | |80001 2MASS| NL80_3 +880506 |V0506 Vul |204232.1+203645 |SR | 12.0 | 12.6 | |* | | | 76. | | |80001 USNO | NL80_3 +880507 |V0507 Vul *|204945.8+241245 |RRC | 11.46 | 12.0 | |V |54632.809 | | 0.336126 |40 | |80001 GSC | NL80_3 +880508 |V0508 Vul |205059.2+262814 |LB | 12.2 | 12.9 | |* | | | | | |80062 USNO | NL80_3 +880510 |V0510 Vul |205659.6+234430 |BY | 11.2 | 11.4 | |* | | | 15.2382 | | |80067 80067| NL80_3 +880511 |V0511 Vul |205818.8+252814 |EW | 12.41 | 12.86 | 12.83 |Rc|54289.2333 | | 0.38451 | | |80562 80562| NL80_3 +880512 |V0512 Vul |210338.2+212808 |EA | 12.20 | 13.05 | 12.30 |* |51362.77 | | 4.38093 |11 | |80013 GSC | NL80_3 +880513 |V0513 Vul |210455.7+245615 |EW | 12.1 | 12.7 | 12.6 |V |54305.6870 | | 0.96361 | | |80002 GSC | NL80_3 +880514 |V0514 Vul |210704.6+244542 |EB | 11.30 | 11.90 | 11.75 |V |54253.8243 | | 1.151470 | | |80002 GSC | NL80_3 +880515 |V0515 Vul |212519.6+265654 |BY | 11.26 |( 0.08 *)| |V | | | 2.8246 | | |80021 GSC | NL80_3 diff -Nru stellarium-0.12.1/util/GCVS/vcat-hip.dat stellarium-0.12.4/util/GCVS/vcat-hip.dat --- stellarium-0.12.1/util/GCVS/vcat-hip.dat 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/util/GCVS/vcat-hip.dat 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,6886 @@ +1901 |010001 |R And *|002402.0+383437 |M | 5.8 | 15.2 | |V |53820. | | 409.2 |38 |S3,5e-S8,8e(M7e) |HIP 00002| +10687 |010006 |W And *|021733.0+441818 |M | 6.7 | 14.6 | |V |48654. | | 397.3 |42 |S6,1e-S9,2e |HIP 00002| +116287|010009 |Z And *|233340.0+484906 |ZAND | 7.7 | 11.3 | |V | | | | |M2III+B1eq |N0036 00002| +114484|010012 |RT And *|231110.1+530133 |EA/RS | 8.97 | 9.83 | 9.28 |V |51421.737 | | 0.6289216 |17 *|F8V+K1 |00001 HIP | +10192 |010014 |RV And |021102.6+485645 |SRA | 9.0 | 11.5 | |V |48667. | | 168.9 | |M4e |00001 00002| +114345|010018 |RZ And |230930.0+530240 |CST | 9.43 | | |V | | | | |K0 |00098 00002| +114507|010019 |SS And *|231130.1+525313 |SRC | 10.0 | 11.4 | |p | | | 152.5 | |M6II |00098 00098| +116681|010020 |ST And |233845.1+354621 |SRA | 7.7 | 11.8 | |V |53720. | | 326.6 |52 |C4,3e-C6,4e |00001 00002| +363 |010021 |SU And *|000436.4+433305 |LC | 8.0 | 8.5 | |V | | | | |C6,4(C5II) | HIP | +344 |010022 |SV And *|000420.1+400636 |M | 7.7 | 14.7 | |V |53220. | | 313. |42 |M5e-M7e |00001 00002| +1878 |010023 |SW And *|002343.1+292404 |RRAB | 9.14 | 10.09 | |V |53735.538 | | 0.4422618 |17 |A7III-F8III |00001 HIP | +2546 |010028 |TU And |003222.7+260146 |M | 7.5 | 13.5 | |V |53700. | | 316.8 |48 |M5e |00001 00002| +113405|010029 |TV And |225803.0+424411 |SRB | 8.3 | 11.5 | |V | | | 110. | |M4e-M5e |00001 00002| +262 |010030 |TW And *|000318.2+325045 |EA | 8.98 | 11.04 | 9.13 |V |53693.355 | | 4.122834 |13 |F0V+K0 |00001 HIP | +114757|010032 |TY And |231444.2+404739 |SRB | 8.8 | 10.5 | |V | | | 260. : | |M5e-M6e |00001 00002| +117591|010033 |TZ And |235051.8+473028 |LB: | 8.0 | 9.3 | |V | | | | |M5-6III |00001 HIP | +12298 |010038 |UY And |023823.8+391010 |LB | 7.4 | 12.3 | |V | | | | |C5,4(N3) |00104 00002| +1593 |010042 |VX And *|001954.0+444234 |SRA | 7.5 | 9.7 | |V | | | 375. | |C4,5J(N7) |N0039 00002| +113715|010043 |VY And |230149.5+455309 |SRB | 9.6 | 11.8 | |V | | | 149. : | |C3,5J-C4,4-5(R8) |00310 00002| +117143|010045 |WW And *|234453.5+454112 |EA | 10.92 |( 0.67 )|( 0.16 )|V |34618.185 | | 23.285213 |05 *|A5+F3p |N0040 HIP | +116883|010047 |WY And *|234129.7+473544 |SRD | 8.65 | 9.65 | |V | | | 109.65 |43 |G2e-K2(M3) |N0042 DM | +6029 |010049 |XX And *|011727.4+385702 |RRAB | 10.08 | 11.13 | |V |53662.575 | | 0.722757 |19 |A8-F6 |00001 00002| +114012|010055 |AA And *|230522.8+474035 |EB | 10.3 | 11.2 | 10.6 |p |52500.730 | | 0.9350969 | |B8V |N0041 HIP | +114508|010056 |AB And *|231132.1+365335 |EW | 9.49 | 10.46 | 10.32 |V |52500.0599 | | 0.3318912 | |G5+G5V |N0041 00002| +115046|010057 |AC And *|231802.4+484658 |* | 10.70 |( 1.2 )| |V |28009.31 | | 0.7112376 | |A9-F8 |N0043 HIP | +115065|010067 |AN And *|231823.3+414625 |EB | 5.96 | 6.11 | 6.05 |V |48500.732 | | 3.21952 | |A7mIII-IV |HIP DM | +2180 |010070 |AQ And *|002731.7+353515 |SRB | 7.7 | 9.5 | |V | | | 169. | |C5,4(Nb) |N0039 DM | +116958|010073 |AT And *|234230.8+430052 |RRAB | 10.42 | 10.92 | |V |53287.4851 | | 0.6169122 |21 |F0-F7 |00001 HIP | +10027 |010101 |BX And *|020903.4+404739 |EB | 8.87 | 9.53 | 9.12 |V |52500.3454 | | 0.6101119 | |F2V |N0041 HIP | +2962 |010103 |BZ And |003737.7+453615 |LB | 7.7 | 8.6 | |V | | | | |K9 |00821 02377| +3432 |010104 |CC And *|004348.0+421656 |DSCT | 9.19 | 9.46 | |V | | | 0.1249078 |40 |F3IV-V |02269 HIP | +63 |010108 |CG And *|000043.6+451512 |ACV | 6.32 | 6.42 | |V |41152.67 | | 3.73975 | |B9pSiEu |69120 HIP | +8939 |010110 |CI And *|015508.3+434557 |RRAB | 11.76 | 12.66 | |V |51441.803 | | 0.4847267 |18 |A8 |00001 HIP | +4639 |010139 |DQ And *|005934.5+452424 |CWB: | 11.23 | 12.00 | |V |51481.584 | | 3.200635 |23 |K-M |00001 02546| +3494 |010151 |EG And *|004437.2+404046 |ZAND | 6.97 | 7.8 | |V | | | | |M2IIIep |N0057 DM | +115036|010163 |ET And *|231756.0+452920 |ACV | 6.48 |( 0.03 )| |V | | | 1.618875 | |B9pSi |N0063 HIP | +115743|010166 |EW And |232657.4+493059 |LB | 10.8 | 11.8 | |p | | | | |C7,3(Nb) |04336 04336| +3362 |010170 |FF And *|004248.3+353256 |UV+BY | 12.02 | 12.90 | |U | | | | |M1Ve+M1Ve |07472 HIP | +2355 |010196 |GN And *|003007.4+294506 |DSCTC | 5.23 |( 0.05 )| |V | | | 0.069304115 | |A9IV |N0070 HIP | +3919 |010197 |GO And |005018.3+450008 |ACV | 6.12 |( 0.04 )| |V | | | 2.5481 | |A0pSrCrEu |N0071 HIP | +4322 |010198 |GP And *|005518.1+230949 |DSCT | 10.53 |( 0.6 )| |V |47005.61456 | | 0.0786827620 |31 |A3 |N0072 HIP | +2243 |010200 |GR And |002828.6+322616 |ACV | 6.87 | 6.95 | |V | | | 546.87 | |A2pSrCrEu |N0073 HIP | +1475 |010206 |GX And *|001822.9+440123 |UV | 10.30 | 10.85 | |U | | | | |M1Ve |N0074 09033| +7651 |010207 |GY And *|013831.8+452359 |ACV | 6.27 | 6.44 | |V | | | 8000. : | |B9VpCrEu |N0075 HIP | +10270 |010208 |GZ And *|021214.1+443934 |EW | 10.83 | 11.61 | 11.58 |V |52500.1211 | | 0.3050169 | | |N0041 06830| +6560 |010214 |HN And *|012418.7+430832 |ACV | 6.67 | 6.76 | |V | | | 69.92 | |A2pSrCrEu |06992 DM | +7321 |010244 |KK And |013416.6+371414 |ACV | 5.91 |( 0.012 )| |V | | | 0.6684 | |B9IVpSi |07740 HIP | +116039|010250 |KQ And |233043.5+460911 |LB: | 9.4 | 10.1 | |p | | | | |K5 |05526 05526| +114154|010257 |KX And *|230706.2+501133 |BE | 6.88 | 7.28 | |V | | | | |B3pe+K1III |N0088 HIP | +114329|010258 |KY And |230916.8+493902 |BE | 6.68 | 6.95 : | |V | | | | |B3Vne |N0089 HIP | +114379|010259 |KZ And *|230957.4+475730 |BY | 7.91 | 8.03 | |V | | | 3.03 | |K2Ve+K2Ve |N0115 HIP | +113802|010262 |LN And *|230245.1+440332 |CST: | 6.39 | | |V | | | | |B2V |N0091 HIP | +118214|010265 |LQ And *|235846.4+462448 |BE | 6.50 | 6.66 | |V | | | 0.309446 | |B4Ven |HIP HIP | +1799 |010266 |LR And *|002249.9+292715 |ELL | 7.10 | 7.15 | 7.14 |V |44854.8800 | | 1.432321 | |A3V |N0093 HIP | +7493 |010303 |OP And |013627.2+484322 |RS: | 6.27 | 6.41 | |Hp| | | 2.35954 | |K1III: |HIP HIP | +7951 |010304 |OQ And |014207.8+392444 |LB | 7.64 | 7.73 | |V | | | | |M3III |68006 HIP | +115200|010307 |OT And *|232001.2+414518 |EA | 7.32 | 7.72 | |V |45711.73 | | 20.85290 |03 | |68007 HIP | +117503|010308 |OU And |234941.0+362531 |FKCOM: | 5.87 | 5.94 | |V | | | 24.2 : | |G1IIIe |N0097 HIP | +117963|010320 |PV And |235537.9+462130 |ACV | 6.91 | 6.99 | |V | | | 3.5112 | |B9pSi |N0101 HIP | +2865 |010323 |PY And *|003620.1+271517 |ACV | 6.02 |( 0.03 )| |U | | | 4.6904 | |B8IIIpHgMn |71005 HIP | +10944 |010324 |PZ And |022058.2+500905 |ACV | 5.59 |( 0.05 )| |V | | | 4.1890 | |B9VpSi |N0102 HIP | +5684 |010329 |QU And *|011306.1+413916 |RS | 7.25 |( 0.05 )| |V | | | 21.08 | |G5IV |78018 HIP | +5939 |010330 |QV And |011624.5+480456 |ACV | 6.22 |( 0.05 )| |U | | | 5.229 | |B9IIIpSi |67131 HIP | +116354|010340 |V0340 And |233437.5+401411 |DSCTC | 5.69 |( 0.03 )| |B | | | 0.063 | |A1Vp |N0104 DM | +590 |010341 |V0341 And |000710.2+345114 |LB | 8.63 | 8.94 | |Hp| | | | | |HIP HIP | +882 |010343 |V0343 And |001047.2+321433 |LB | 7.04 | 7.55 | |Hp| | | | |M2 |HIP HIP | +919 |010344 |V0344 And |001122.4+302659 |BY | 7.95 |( 0.04 )| |V | | | 6.105 | |K0V |78018 HIP | +988 |010345 |V0345 And |001215.8+434906 |SRB: | 7.79 | 7.98 | |Hp| | | 45.13 | |M4 |HIP HIP | +1112 |010346 |V0346 And |001350.2+365137 |LB: | 8.98 | 9.10 | |Hp| | | | |K5 |HIP HIP | +1110 |010347 |V0347 And |001349.5+253307 |SRS: | 9.38 | 9.72 | |Hp|48510.60 | | 15.11 | |M2 |HIP HIP | +1233 |010348 |V0348 And *|001517.8+441212 |EA | 6.75 | 6.90 | |Hp|48504.070 | | 5.5392 | |B9 |HIP HIP | +1289 |010349 |V0349 And |001609.4+475334 |LB: | 8.81 | 8.93 | |Hp| | | | |M0 |HIP HIP | +2054 |010350 |V0350 And |002602.7+354909 |EA | 7.56 | 7.63 | |Hp|47947.413 | | 1.538824 : |10 |A3 |HIP HIP | +2216 |010351 |V0351 And |002801.4+270551 |LB | 9.12 | 9.49 | |Hp| | | | |M5 |HIP HIP | +2285 |010352 |V0352 And |002911.2+445942 |LB: | 9.01 | 9.13 | |Hp| | | | |M0 |HIP HIP | +2384 |010353 |V0353 And |003026.2+402209 |LB: | 9.44 | 9.59 | |Hp| | | | |M0 |HIP HIP | +2651 |010354 |V0354 And |003336.8+395303 |SRD: | 8.65 | 8.78 | |Hp| | | 10.877 | |K0 |HIP HIP | +3454 |010355 |V0355 And *|004411.3+461408 |EA | 7.69 | 8.0 | 7.9 |V |52295.088 | | 4.71841 | |F5 |N0105 HIP | +3498 |010356 |V0356 And |004439.0+363609 |LB: | 9.04 | 9.17 | |Hp| | | | |M1 |HIP HIP | +4129 |010357 |V0357 And *|005253.4+383256 |ELL: | 6.70 | 6.74 | 6.7 |Hp| | | 1.66238 | |A2V |HIP HIP | +4621 |010358 |V0358 And |005921.9+425104 |LB: | 8.22 | 8.36 | |Hp| | | | |M2 |HIP HIP | +4900 |010359 |V0359 And |010252.7+470250 |BY: | 10.89 | 11.31 | |Hp| | | | |M0 |HIP HIP | +5002 |010360 |V0360 And |010404.5+384119 |LB | 7.05 | 7.23 | |Hp| | | | |M3III |HIP HIP | +5450 |010361 |V0361 And *|010945.3+380728 |DSCTC | 7.79 | 7.83 | |Hp|48500.0220 | | 0.1140500 | |F0 |HIP HIP | +6852 |010362 |V0362 And |012807.0+422801 |E: | 8.42 | 8.55 | |Hp| | | 18.518518 : | |M0 |HIP HIP | +7122 |010363 |V0363 And *|013146.6+360538 |EB | 9.10 | 9.37 | 9.34 |Hp|48500.3980 | | 1.27799 | |A2 |HIP HIP | +7205 |010364 |V0364 And |013250.5+453732 |LB | 9.21 | 9.31 | |Hp| | | | |K2III |HIP HIP | +7511 |010365 |V0365 And |013646.7+481856 |DSCTC | 7.49 | 7.53 | |Hp| | | 0.142816 | |F0 |HIP HIP | +8034 |010366 |V0366 And |014311.1+483100 |LC | 6.74 | 6.93 | |Hp| | | | |M2Ib |HIP HIP | +8618 |010367 |V0367 And |015109.3+380126 |SRS: | 7.11 | 7.45 | |Hp| | | 24.457 : | |M4 |00001 HIP | +8682 |010368 |V0368 And |015143.2+390826 |LB | 9.01 | 9.58 | |Hp| | | | |M8 |HIP HIP | +9150 |010369 |V0369 And *|015754.9+473353 |LB: | 9.07 | 9.18 | |Hp| | | | |M0 |HIP HIP | +9234 |010370 |V0370 And |015844.3+452607 |SRB | 6.18 | 7.19 | |Hp| | | 228. | |M7III |N0106 HIP | +9500 |010371 |V0371 And *|020212.9+364301 |BY: | 8.30 | 8.34 | |Hp| | | 1.4937 | |G5 |HIP HIP | +9740 |010372 |V0372 And *|020518.2+450534 |EA | 9.05 | 9.53 | 9.37 |Hp|51483.5838 | | 2.940986 |11 |A5 |00001 HIP | +9779 |010373 |V0373 And |020546.2+394535 |DSCTC | 7.63 | 7.69 | |Hp| | | 0.1128020 | |F0 |HIP HIP | +9867 |010374 |V0374 And |020657.2+451104 |E: | 10.30 | 11.55 | |Hp| | | | |M0 |HIP HIP | +11785 |010375 |V0375 And |023206.5+501051 |SRB | 7.01 | 7.22 | |Hp| | | 54. : | |A0 |00001 HIP | +12039 |010376 |V0376 And *|023511.6+495137 |EB | 7.68 | 8.00 | 7.96 |Hp|52500.492 | | 0.7986720 | |A0 |N0041 HIP | +12136 |010377 |V0377 And |023618.9+401218 |EA | 7.46 | 7.58 | |Hp|48700.254 | | 4.06366 : |05 : |B9 |00001 HIP | +113640|010378 |V0378 And |230054.8+384228 |BE | 6.47 | 6.64 | |V | | | | |B3Vpe |N0107 HIP | +114100|010379 |V0379 And |230633.0+465525 |IA: | 7.70 | 7.85 | |Hp| | | | |B3 |HIP HIP | +114106|010380 |V0380 And |230637.0+423927 |LPB | 7.97 | 8.02 | |Hp| | | 1.37678 | |B9 |HIP HIP | +114305|010381 |V0381 And |230857.1+385455 |EA | 7.35 | 7.42 | |Hp| | | | |A0 |HIP HIP | +114384|010382 |V0382 And *|230958.0+425009 |EB | 9.16 | 9.44 | 9.24 |Hp|51402.871 | | 1.478983 | |A0 |00001 HIP | +114850|010383 |V0383 And |231549.3+423444 |LB: | 8.35 | 8.46 | |Hp| | | | |M0 |HIP HIP | +115504|010384 |V0384 And |232352.0+490408 |LB: | 9.22 | 9.41 | |Hp| | | | |M2 |HIP HIP | +115530|010385 |V0385 And |232408.9+413646 |LB | 6.36 | 6.47 | |Hp| | | | |M0 |HIP HIP | +115541|010386 |V0386 And |232414.9+352947 |LB: | 9.32 | 9.53 | |Hp| | | | |M0 |HIP HIP | +115643|010387 |V0387 And |232536.1+525846 |LB | 6.76 | 6.87 | |Hp| | | | |M0 |HIP HIP | +115755|010388 |V0388 And |232707.4+425443 |ACV | 5.73 | 5.77 | |Hp| | | 1.47931 | |B9Mn |N0108 HIP | +116153|010389 |V0389 And |233201.3+434921 |EA | 8.22 | 8.32 | |Hp| | | | |A0 |HIP HIP | +116228|010390 |V0390 And |233256.5+460725 |SRB | 6.56 | 6.75 | |Hp| | | 303. | |M0 |HIP HIP | +116411|010391 |V0391 And |233524.2+364454 |LB | 9.05 | 9.43 | |Hp| | | | |M2 |HIP HIP | +116685|010392 |V0392 And *|233848.7+442445 |EA | 9.07 | 9.41 | 9.41 |V |48035.107 | | 4.046275 |06 *|A2 |N0109 HIP | +116716|010393 |V0393 And *|233912.5+503242 |LB: | 10.31 | 10.38 | |Hp| | | | | |HIP HIP | +116870|010394 |V0394 And |234120.2+465136 |LPB | 7.40 | 7.42 | |Hp| | | 1.7776 | |B9 |HIP HIP | +117111|010395 |V0395 And *|234432.1+462249 |EW | 7.55 | 7.62 | 7.61 |Hp|48699.9945 | | 0.6847 | |A0 |HIP HIP | +117647|010396 |V0396 And |235133.4+472916 |DSCTC | 7.92 | 7.95 | |Hp| | | 0.1047310 | |F0 |HIP HIP | +117691|010397 |V0397 And |235207.5+375101 |LB: | 8.60 | 8.72 | |Hp| | | | |M5 |HIP HIP | +117744|010398 |V0398 And |235245.1+345819 |LB: | 8.23 | 8.34 | |Hp| | | | |M2 |HIP HIP | +117769|010399 |V0399 And |235300.1+412045 |LB | 6.95 | 7.05 | |Hp| | | | |M2III |HIP HIP | +118238|010400 |V0400 And |235857.8+404732 |E | 8.57 | 8.65 | |Hp| | | | |A5 |HIP HIP | +76 |010401 |V0401 And |000054.8+324932 |LB: | 9.04 | 9.14 | |Hp| | | | |M0 |HIP HIP | +12056 |010406 |V0406 And *|023525.6+455603 |EB | 9.22 | 9.42 | 9.39 |V |52500.27 | | 2.165032 | |B8 |N0041 HIP | +117844|010413 |V0413 And *|235404.0+391657 |EA/RS | 7.61 | 8.46 | |U |48127.2 | | 53. |04 |G0III |73005 HIP | +10023 |010419 |V0419 And *|020902.3+393532 |DSCTC | 9.14 |( 0.04 )| |B | | | 0.054 | |F0 |76019 HIP | +2900 |010428 |V0428 And *|003646.4+442919 |SRS | 5.13 |( 0.06 )| |V | | | 11.5 | |K5-M0III |77008 HIP | +10951 |010436 |V0436 And |022102.7+425638 |ACV | 7.23 | 7.29 | |Hp| | | 26.87 | |B9pCrEuSi |77022 HIP | +544 |010439 |V0439 And |000636.8+290117 |BY | 6.13 |( 0.04 )| |V | | | 6.23 | |K0Ve |78005 DM | +4983 |010442 |V0442 And |010353.4+473832 |BE | 6.63 | 6.92 | |V | | | | |B2IVe |78019 HIP | +5521 |010443 |V0443 And |011041.9+425555 |BY | 7.66 |( 0.02 )| |V | | | 20.27 | |K0V |78018 HIP | +5944 |010445 |V0445 And |011629.3+425622 |BY | 6.61 |( 0.03 )| |V | | | 5.67 | |G0 |78018 HIP | +6680 |010446 |V0446 And *|012540.9+470707 |* | 7.61 |( 0.09 )| |V | | | 64.23 | |G4III |78018 HIP | +10321 |010450 |V0450 And |021255.0+404006 |BY | 7.19 |( 0.02 )| |V | | | 7.6 : | |G0V |78018 HIP | +10339 |010451 |V0451 And |021313.3+403027 |BY | 7.35 |( 0.03 )| |V | | | 7.52 | |G0V |78018 HIP | +115331|010453 |V0453 And |232136.5+440552 |BY | 7.36 |( 0.04 )| |V | | | 7.489 | |K1V |78018 HIP | +116613|010454 |V0454 And |233758.5+461158 |BY | 6.58 |( 0.02 )| |V | | | 7.5 : | |G3/4V |77119 HIP | +1030 |010470 |V0470 And |001250.3+374137 |LPB | 6.66 | 6.70 | |Hp| | | 2.74725 | |B2V |80019 HIP | NL80_1 +6794 |010529 |V0529 And *|012726.7+410604 |GDOR+DSCT | 6.48 | 6.51 | |Hp| | | 0.40331 | |A7Vm |80161 HIP | NL80_1 +677 |019001 |alf And *|000823.3+290526 |ACV: | 2.06 |( 0.04 )| |V | | | 0.966222 | |B8IVpHgMn |08030 HIP | +3693 |019006 |zet And *|004720.3+241602 |ELL/RS | 3.92 | 4.14 | |V |32761.016 | | 17.769586 | |K1IIe |N0112 HIP | +116584|019011 |lam And *|233733.8+462729 |RS | 3.65 | 4.05 | |V |43832.8 | | 53.95 | |G8III-IV |N0113 HIP | +113726|019015 |omi And *|230155.3+421934 |GCAS | 3.55 | 3.78 | |V | | | | |B6IIIpe+A2p |N0107 HIP | +49784 |020001 |R Ant |100945.5-374356 |CST | 7.65 | | |V | | | | |A0V |01113 CoD | +46810 |020002 |S Ant *|093218.4-283740 |EW | 6.27 | 6.83 | 6.80 |V |52627.7968 | | 0.6483489 | |F3V |00001 CoD | +46924 |020003 |T Ant *|093350.9-363657 |DCEP | 8.88 | 9.82 | |V |36120.608 | | 5.898053 |22 |F6Iab |N0027 CoD | +51821 |020004 |U Ant |103512.9-393345 |LB | 8.8 | 9.7 | |p | | | | |C5,3(Nb) |06258 CoD | +50697 |020005 |V Ant *|102109.1-344719 |M | 8.2 | 14.0 | |V |52772. | | 303. | |M7IIIe |01113 06286| +49524 |020007 |X Ant |100642.2-300438 |M | 8.8 | 14.0 | |V |53458. | | 164.1 | |M2-M6e |N0002 02452| +47076 |020010 |RR Ant |093538.9-395413 |LB | 8.0 | 8.8 | |V | | | | |M6III |00016 CoD | +50289 |020047 |WY Ant *|101605.0-294342 |RRAB | 10.27 | 11.22 | |V |48500.5339 | | 0.574341 |15 |A5-F4 |HIP 06286| +48188 |020049 |XX Ant *|094924.7-382057 |EA | 8.60 | 9.23 | 9.23 |V |53413.7871 | | 0.888014 |20 |A8/F0V |N0009 CoD | +49118 |020052 |YY Ant |100130.6-380528 |LB | 8.74 | 9.4 | |V | | | | |M3/4III |00001 CoD | +49950 |020056 |AB Ant |101153.8-351929 |LB | 6.6 | 7.1 | |V | | | | |C6,3(N0) |00001 CoD | +50456 |020061 |AG Ant *|101807.6-285931 |* | 5.29 | 5.83 | |V | | | 429. | |B9.5Ib-II |N0018 CoD | +53227 |020062 |AH Ant |105314.9-325919 |SRD | 8.40 | 8.7 | |V | | | 83. | |K2III |00001 CoD | +47018 |020064 |AK Ant |093456.5-285239 |DSCTC | 8.80 |( 0.03 b )| |V | | | 0.066 | |A2II/III(w) |73012 CoD | +46521 |020065 |AL Ant |092918.1-334021 |LB | 7.40 | 7.78 | |V | | | | |M2/M3III |HIP HIP | +46833 |020066 |AM Ant |093235.1-335950 |ACV | 9.31 | 9.38 | |Hp| | | 4.8910 | |Ap(Si) |HIP HIP | +46845 |020067 |AN Ant *|093244.3-371335 |EB | 8.21 | 8.34 | 8.26 |V |52974.8389 | | 3.681309 | |F0/F2IV |00001 HIP | +47467 |020068 |AO Ant |094034.9-363214 |LB | 8.6 | 9.0 | |V | | | | |M0 |HIP HIP | +49375 |020069 |AP Ant |100449.0-281119 |ACV | 6.93 | 6.99 | |Hp| | | 18.201 | |Ap(Eu-Cr) |HIP HIP | +49960 |020070 |AQ Ant |101200.9-332725 |LB | 9.06 | 9.22 | |Hp| | | | |K5 |HIP HIP | +50160 |020071 |AR Ant |101421.0-380914 |LB | 9.30 | 9.48 | |Hp| | | | |M2/M3 |HIP HIP | +50256 |020072 |AS Ant |101542.7-312852 |LB: | 8.29 | 8.39 | |Hp| | | | |K5III |HIP HIP | +50268 |020073 |AT Ant |101550.7-321034 |SRA | 8.1 | 8.6 | |V |53497. | | 45.3 | |M4III |00001 HIP | +51112 |020074 |AU Ant |102634.7-344203 |SRB | 8.30 | 8.64 | |V | | | 30.3 | |M3III |N0002 HIP | +51175 |020075 |AV Ant |102710.0-371247 |SRB | 7.5 | 8.3 | |V | | | 84. | |M4III |00001 HIP | +51847 |020076 |AW Ant |103532.4-362312 |SRD: | 8.6 | 9.5 | |V | | | 700. : | |G5 |00001 HIP | +51924 |020077 |AX Ant |103624.9-314959 |LB | 8.53 | 8.70 | |V | | | | |K5 |HIP HIP | +52239 |020078 |AY Ant |104020.8-395603 |SRD | 9.64 | 10.06 | |V | | | 53.5 | |Kp |00001 HIP | +52567 |020079 |AZ Ant |104450.7-352039 |DSCTC | 7.93 | 7.96 | |Hp| | | 0.1053030 | |A5/7V |HIP HIP | +53078 |020080 |BB Ant |105133.1-343216 |SRB | 8.1 | 9.0 | |V | | | 125. | |M6III |00001 HIP | +53325 |020081 |BC Ant |105426.1-333009 |LB | 8.85 | 9.09 | |V | | | | |K5 |HIP HIP | +48776 |020084 |BF Ant |095654.1-272831 |DSCTC | 6.32 |( 0.01 )| |V | | | | |A4V |78024 CoD | +73223 |030001 |R Aps |145753.0-763946 |CST: | 5.35 | | |V | | | | |K4III-M0III |00207 CoD | +74179 |030002 |S Aps |150924.5-720345 |RCB | 9.6 | 15.2 | |V | | | | |C(R3) | 00002| +75707 |030004 |U Aps |152801.0-755547 |LB | 11.0 | 11.6 | |p | | | | |C(Nb) |00016 CoD | +72444 |030032 |TY Aps *|144850.0-711942 |RRAB | 11.25 | 12.20 | |V |39726.275 | | 0.5016935 |32 |A8-F6 |05233 00022| +85473 |030049 |XX Aps |172802.1-692022 |M | 10.1 | 13.2 | |V |53669. | | 159.54 | |Me |80002 08661| +72721 |030051 |XZ Aps |145205.4-794047 |RRAB | 10.8 | 12.8 | |p |28715.330 | | 0.587434 |12 : | |06960 05389| +85095 |030145 |DW Aps |172330.0-675545 |EA/SD: | 7.9 | 9.1 | |p |39209.502 | | 2.312950 |14 |B6III |05236 CoD | +76011 |030289 |NN Aps |153127.1-710344 |ACV | 6.86 | 6.92 | |V | | | | | |71133 CPD | +85760 |030290 |NO Aps |173127.5-805133 |SR | 5.71 | 5.95 | |V | | | | | |71030 CPD | +69451 |030291 |NP Aps |141310.9-732535 |LB | 8.27 | 8.66 | |Hp| | | | | |HIP HIP | +69850 |030292 |NQ Aps |141743.3-760518 |SRB | 7.22 | 7.35 | |Hp| | | | | |HIP HIP | +69956 |030293 |NR Aps |141855.8-712347 |LB: | 7.86 | 7.97 | |Hp| | | | | |HIP HIP | +70547 |030294 |NS Aps |142554.6-782728 |LB | 7.84 | 8.23 | |Hp| | | | | |HIP HIP | +71929 |030295 |NT Aps |144242.6-741842 |EW | 8.40 | 8.87 | |Hp| | | | | |HIP HIP | +72825 |030296 |NU Aps |145308.3-824057 |LB: | 8.56 | 8.71 | |Hp| | | | | |HIP HIP | +72801 |030297 |NV Aps |145251.2-713751 |LB: | 8.90 | 9.03 | |Hp| | | | | |HIP HIP | +73041 |030298 |NW Aps |145538.5-794821 |EB | 9.23 | 9.51 | |Hp| | | | | |HIP HIP | +73122 |030299 |NX Aps |145641.8-751904 |I: | 11.24 | 11.66 | |Hp| | | | | |HIP HIP | +74405 |030300 |NY Aps |151223.4-751516 |BY: | 9.50 | 9.61 | |Hp| | | | | |HIP HIP | +74673 |030301 |NZ Aps |151538.2-722355 |LB | 7.94 | 8.08 | |Hp| | | | | |HIP HIP | +74999 |030302 |OO Aps |151929.1-714731 |LB | 6.58 | 6.68 | |Hp| | | | | |HIP HIP | +75420 |030303 |OP Aps |152432.5-802626 |DSCTC | 8.15 | 8.23 | |Hp| | | | | |HIP HIP | +78179 |030304 |OQ Aps |155746.8-813130 |LB | 8.58 | 8.75 | |Hp| | | | | |HIP HIP | +79747 |030305 |OR Aps |161632.3-780800 |LPB: | 9.11 | 9.22 | |Hp| | | | | |HIP HIP | +81438 |030306 |OS Aps |163800.7-705303 |LB | 8.93 | 9.43 | |Hp| | | | | |HIP HIP | +81530 |030307 |OT Aps |163909.3-752919 |EA | 7.98 | 8.34 | |Hp| | | | | |HIP HIP | +81743 |030308 |OU Aps |164148.4-732558 |ACV: | 8.60 | 8.69 | |Hp| | | | | |HIP HIP | +82982 |030309 |OV Aps |165727.9-762506 |ACV: | 8.14 | 8.19 | |Hp| | | | | |HIP HIP | +83972 |030310 |OW Aps |170951.6-821907 |LPB | 7.14 | 7.19 | |Hp| | | | | |HIP HIP | +84042 |030311 |OX Aps |171051.2-734049 |LB | 8.24 | 8.52 | |Hp| | | | | |HIP HIP | +85714 |030312 |OY Aps |173054.8-813642 |LB | 8.01 | 8.43 | |Hp| | | | | |HIP HIP | +85849 |030313 |OZ Aps |173236.0-680404 |EA | 8.59 | 8.67 | |Hp| | | | | |HIP HIP | +86712 |030314 |PP Aps |174304.7-705222 |EA | 9.65 | 10.02 | |Hp| | | | | |HIP HIP | +72055 |030316 |PR Aps |144417.2-735806 |DSCTC | 8.07 | 8.16 | |Hp| | | | | |77086 DM | +75994 |030317 |PS Aps *|153111.1-784511 |EB | 7.86 | 7.97 | 7.89 |V |48574.241 | | 1.086152 | |F3V |78011 DM | +70248 |039005 |eps Aps |142223.2-800632 |GCAS: | 4.99 | 5.04 | |Hp| | | | | |HIP HIP | +68815 |039008 |tet Aps |140519.9-764748 |SRB | 6.4 | 8.6 | |p | | | 119. | |M7III |00207 CPD | +117054|040001 |R Aqr *|234349.5-151704 |M+ZAND | 5.2 | 12.4 | |V |54045. | | 390. |41 |M5e-M8.5e+pec |00001 00002| +102829|040003 |T Aqr |204956.4-050848 |M | 7.0 | 14.2 | |V |53229. | | 201.1 |47 |M2e-M5.5e |00001 00002| +108876|040004 |U Aqr |220319.7-163735 |RCB | 10.6 | 15.9 | |V | | | | |pec |03891 00002| +102546|040005 |V Aqr *|204649.4+022615 |SRB | 7.6 | 10.1 | |V | | | 241. | |M6e |N0039 00002| +110146|040007 |X Aqr |221839.3-205404 |M | 7.2 | 15.0 | |V |52951. | | 311.4 |42 |S6,3e:(M4e-M6.5e)|00001 00002| +117703|040009 |Z Aqr |235214.6-155117 |SRA | 7.4 | 10.2 | |V |52945. | | 136.6 |50 |M1e-M7III |00001 HIP | +110509|040012 |RT Aqr |222312.9-220324 |M | 8.8 | 13.1 | |V |51890. | | 252.2 |50 |M5e-M6e |N0002 00002| +115553|040013 |RU Aqr |232424.3-171909 |SRB | 8.5 | 10.1 | |V | | | 118.8 | |M4/5III |N0002 HIP | +104930|040023 |SW Aqr *|211517.9+000435 |RRAB | 10.37 | 11.68 | |V |52896.700 | | 0.459300 |11 |A5-G1 |N0002 HIP | +106645|040024 |SX Aqr *|213608.4+031350 |RRAB | 11.05 | 12.19 | |V |53882.828 | | 0.5357087 |10 |A5-F7 |00001 HIP | +106565|040045 |WW Aqr |213453.0+024210 |M | 10.5 |< 14.5 | |V |53640. | | 242.7 | | |00001 06286| +101991|040059 |AE Aqr *|204009.2-005215 |XM+ELL | 10.18 | 12.12 | |V | | | | |K3Ve+pec(e) | 72085| +109165|040090 |BM Aqr |220645.0-153840 |SRB | 9.6 | 10.4 | |V | | | 55.6 | |M3III: |N0002 HIP | +116664|040095 |BR Aqr *|233832.9-091908 |RRAB | 10.75 | 11.93 | |V |52068.837 | | 0.4818713 |12 |A8-F6 |00001 HIP | +117439|040096 |BS Aqr *|234846.0-080845 |DSCT | 9.12 | 9.62 | |V |52093.793 | | 0.197822 |31 |A8-F3 |N0002 HIP | +108839|040099 |BV Aqr *|220254.0-213132 |RRC | 10.72 | 11.24 | |V |52730.904 | | 0.363714 |50 | |00001 HIP | +110514|040100 |BW Aqr *|222315.9-151956 |EA | 10.31 | 10.92 | 10.86 |V |52501.720 | | 6.719708 |04 *|F8IV+F7IV |N0041 HIP | +111719|040125 |CY Aqr *|223747.9+013204 |SXPHE | 10.42 | 11.20 | |V |52956.629 | | 0.061038408 |26 |A2-A8 |00001 HIP | +115135|040136 |DN Aqr *|231917.2-241259 |RRAB | 10.73 | 11.51 | |V |52033.899 | | 0.633760 |16 |F3-F9 |00001 HIP | +113021|040141 |DS Aqr *|225317.0-183531 |RVA | 10.2 | 11.3 | |V |52213.5 | | 77.34 | |F2II |N0002 HIP | +103545|040144 |DV Aqr *|205841.8-142859 |EB | 5.89 | 6.25 | 6.1 |V |52500.21 | | 1.575529 | |A9IV |N0041 HIP | +110396|040148 |DZ Aqr |222141.8-073630 |LB | 8.2 | 9.3 | |V | | | | |M7 |00001 HIP | +111452|040149 |EE Aqr *|223442.0-195135 |EB | 7.91 | 8.55 | 8.12 |V |52500.055 | | 0.50899582 | |F0V |N0041 HIP | +117317|040155 |EL Aqr *|234718.4-080512 |EW | 10.35 | 10.75 | 10.71 |V |52500.119 | | 0.4814092 | |F3V |N0041 BD | +103261|040156 |EM Aqr |205508.3-012223 |DSCTC | 6.55 |( 0.03 )| |V | | | 0.1024746 | |A9Vn |HIP HIP | +102624|040157 |EN Aqr |204744.2-050140 |LB | 4.41 |( 0.06 )| |V | | | | |M3III |05840 HIP | +107516|040159 |EP Aqr *|214631.9-021246 |SRB | 6.37 | 6.82 | |V | | | 55. : | |M8III |06645 HIP | +113930|040160 |EQ Aqr |230417.2-160036 |SRB | 9.1 | 9.9 | |V | | | 117. | |M3/M4 |00001 HIP | +114017|040161 |ER Aqr |230525.6-222913 |LB | 7.14 | 7.81 | |V | | | | |M3III |05973 HIP | +117629|040163 |ET Aqr |235121.3-185433 |ACV | 5.12 | 5.21 | |V | | | 3.735239 | |B9pSiCrSr |N0102 HIP | +104634|040166 |EW Aqr |211141.3-142821 |DSCTC | 6.41 | 6.48 | |V | | | 0.0968946 | |A8III |HIP HIP | +108644|040170 |FF Aqr *|220036.4-024427 |EA/RS | 10.08 | 11.47 | |U |42752.9577 | | 9.207755 |06 |G8III+sdOB |08201 HIP | +110616|040173 |FI Aqr *|222433.9-232203 |ACV | 7.49 | 7.52 | |V | | | 4.689 | |B9pSi |00208 HIP | +111802|040174 |FK Aqr *|223845.6-203716 |UV+BY | 10.9 | 11.72 | |U | | | 4.252 | |M2Ve |N0024 HIP | +112615|040176 |FM Aqr |224830.2-103320 |DSCTC | 6.16 | 6.19 | |V | | | 0.087 | |A9III-IV |08336 HIP | +103899|040177 |FN Aqr |210307.6-011831 |DSCTC | 7.34 |( 0.01 )| |V | | | | |F5III |67009 HIP | +113031|040210 |HI Aqr *|225328.7-113700 |ACV: | 5.80 |( 0.01 )| |V | | | 3.40 : | |B9pHgMn |09919 HIP | +114252|040211 |HK Aqr *|230819.6-152436 |BY+UV | 10.72 | 10.94 | |V | | | 0.4312 | |M2.5Ve |N0123 HIP | +111506|040213 |HM Aqr *|223527.5-171527 |E: | 8.72 | 9.40 | |V |52404. | | 255. | |A0III |00001 HIP | +106335|040226 |HZ Aqr *|213211.9+001318 |RS | 9.78 | 9.90 | |V | | | 4.03 | |K3Ve+K7Ve |73005 HIP | +113020|040229 |IL Aqr |225316.7-141549 |BY | 10.15 | 10.21 | |V | | | | |M4V |73018 BD | +101926|040230 |IM Aqr |203918.0+020837 |LB | 7.81 | 7.97 | |Hp| | | | |M1 |HIP HIP | +101988|040231 |IN Aqr |204006.3-140047 |LB | 8.01 | 8.14 | |Hp| | | | |M4III |HIP HIP | +102041|040232 |IO Aqr *|204045.5+005621 |EA | 8.80 | 9.22 | 9.17 |V |52530.4516 | | 2.368091 |11 |G0 |N0129 HIP | +102777|040233 |IP Aqr |204919.4-084739 |LB | 7.70 | 7.86 | |Hp| | | | |M0 |HIP HIP | +102770|040234 |IQ Aqr |204917.2-003348 |SRB | 6.02 | 6.58 | |Hp| | | 384.6 : | |M3 |HIP HIP | +103026|040235 |IR Aqr |205221.6-031314 |LB | 7.73 | 7.92 | |Hp| | | | |M4III: |HIP HIP | +103447|040236 |IS Aqr |205729.2-031412 |LB | 7.77 | 7.89 | |Hp| | | | |M0 |HIP HIP | +103769|040237 |IT Aqr |210140.5-040753 |SR | 7.10 | 7.25 | |Hp| | | | |M0 |HIP HIP | +103851|040238 |IU Aqr |210235.2-095944 |LB | 6.46 | 6.64 | |Hp| | | | |M3 |HIP HIP | +104279|040239 |IV Aqr |210732.9-000950 |LC | 6.50 | 6.65 | |Hp| | | | |M4:II: |HIP HIP | +105019|040240 |IW Aqr |211617.8-091253 |SRB | 6.47 | 6.54 | |Hp| | | 163. : | |M4III: |00001 HIP | +105389|040241 |IX Aqr |212050.1-090906 |LB | 7.50 | 7.61 | |Hp| | | | |K2 |HIP HIP | +105575|040242 |IY Aqr |212259.2-061358 |LB | 7.67 | 7.86 | |Hp| | | | |M0 |HIP HIP | +106544|040243 |IZ Aqr |213442.8+014945 |LB | 6.23 | 6.47 | |Hp| | | | |M3 |HIP HIP | +108562|040244 |KK Aqr |215927.7-175944 |LB | 7.90 | 8.23 | |Hp| | | | |M2III |HIP HIP | +108844|040245 |KL Aqr |220256.4+000412 |LB | 8.33 | 9.07 | |Hp| | | | |M8 |HIP HIP | +108909|040246 |KM Aqr |220339.1-074705 |LB: | 8.13 | 8.25 | |Hp| | | | |M0 |HIP HIP | +109201|040247 |KN Aqr |220718.1-102649 |LB | 6.85 | 7.02 | |Hp| | | | |M3 |HIP HIP | +109382|040248 |KO Aqr |220935.5-020116 |LB | 8.51 | 8.86 | |Hp| | | | |M0 |HIP HIP | +109395|040249 |KP Aqr |220944.9-135330 |LB: | 8.03 | 8.15 | |Hp| | | | |M1/M2III |HIP HIP | +109476|040250 |KQ Aqr *|221040.0-240134 |RS: | 9.45 | 9.57 | |V | | | 2.43367 | |A0V |HIP HIP | +109613|040251 |KR Aqr |221216.9-110356 |LB | 7.25 | 7.36 | |Hp| | | | |M0 |HIP HIP | +110037|040252 |KS Aqr |221715.9-042922 |LB | 9.42 | 9.63 | |Hp| | | | |M1 |HIP HIP | +110388|040253 |KT Aqr |222133.4-142725 |LB: | 7.83 | 7.94 | |Hp| | | | |M0III |HIP HIP | +110528|040254 |KU Aqr |222330.4-201850 |LB | 7.7 | 8.6 | |V | | | | |M3III |HIP HIP | +110707|040255 |KV Aqr *|222548.0-201413 |E: | 6.84 | 7.03 | |Hp| | | | |A1V+G8/K1III |HIP HIP | +110881|040256 |KW Aqr |222750.8-215211 |LB | 7.92 | 8.31 | |Hp| | | | |M3III |HIP HIP | +111162|040257 |KX Aqr *|223113.4-225948 |EA | 8.11 | 8.58 | 8.47 |V |52444.834 | | 2.073225 |10 |F8/G0V |00001 HIP | +111315|040258 |KY Aqr |223304.1-071027 |LB: | 8.81 | 8.94 | |Hp| | | | |K5 |HIP HIP | +111365|040259 |KZ Aqr |223341.1+011134 |LB: | 8.05 | 8.15 | |Hp| | | | |M1 |HIP HIP | +111454|040260 |LL Aqr *|223442.1-033558 |EA | 9.23 | 9.86 |( 0.32 )|V |48762.552 | | 20.1784 | |G0 |N0109 HIP | +111581|040261 |LM Aqr |223617.9-050917 |LB | 8.19 | 8.39 | |Hp| | | | |M0 |HIP HIP | +111606|040262 |LN Aqr |223638.2-132034 |BY: | 10.86 | 11.30 | |Hp| | | | |K: |HIP HIP | +111647|040263 |LO Aqr |223700.9-073400 |IB: | 7.44 | 7.59 | |Hp| | | | |F0 |HIP HIP | +112078|040264 |LP Aqr |224206.0-050607 |LB | 6.30 | 6.64 | |Hp| | | | |M0 |HIP HIP | +112420|040265 |LQ Aqr |224614.2-110959 |LB | 6.71 | 6.78 | |Hp| | | | |M0 |HIP HIP | +114094|040266 |LR Aqr |230630.3-134507 |LB | 8.7 | 9.3 | |V | | | | |M3III: |00001 HIP | +114426|040267 |LS Aqr |231025.4-131835 |SRD: | 8.33 | 8.61 | |V | | | 269. : | |G6/G8Ib |00001 HIP | +115657|040268 |LT Aqr |232547.9-110920 |LB | 7.96 | 8.13 | |Hp| | | | |M3 |HIP HIP | +115844|040269 |LU Aqr |232807.3-121244 |SRD | 7.39 | 7.54 | |Hp| | | 14.9 : | |K3III |HIP HIP | +117738|040270 |LV Aqr |235241.4-162229 |SR | 7.53 | 7.75 | |Hp| | | 34.32 | |M2III |HIP HIP | +117747|040271 |LW Aqr |235247.6-120101 |LB | 7.24 | 7.46 | |Hp| | | | |M4III |HIP HIP | +118002|040272 |LX Aqr |235607.2-215931 |SRB | 7.29 | 7.38 | |Hp| | | 312. | |M2III |HIP HIP | +102935|040291 |NP Aqr *|205119.1-135528 |EB | 7.59 | 7.69 | 7.64 |V |47985.661 | | 0.806982 | |F0V |78011 BD | +104456|040293 |NR Aqr |210935.1-140700 |SRS: | 7.56 |( 0.02 )| |V | | | 12.08 : | |K5III |78018 BD | +105066|040294 |NS Aqr |211702.1-010439 |BY | 8.08 |( 0.02 )| |V | | | 13.78 : | |K0V |78018 BD | +109110|040295 |NT Aqr |220605.3-052129 |BY | 7.57 |( 0.06 )| |V | | | 10.29 | |G0V |78018 BD | +111726|040296 |NU Aqr |223753.2-132215 |LB: | 8.72 |( 0.02 )| |V | | | | |K0III |78018 BD | +111870|040297 |NV Aqr |223934.6-123655 |BY | 7.74 |( 0.02 )| |V | | | 6.20 : | |G8/K0V |78018 BD | +115527|040299 |NX Aqr |232406.3-073303 |BY: | 7.62 |( 0.02 )| |V | | | | |G5V |78018 BD | +104743|040305 |OR Aqr |211313.7-041600 |EA | 7.94 | 8.11 | 8.11 |V |47977.020 | | 11.42365 |03 |F0V |79004 DM | +115675|040309 |OV Aqr *|232608.6-192224 |EA | 8.72 | 8.98 | |V |48635.393 | | 21.66595 |02 : |F2V |79003 DM | +112961|049011 |lam Aqr |225236.9-073447 |LB | 3.57 | 3.80 | |V | | | | |M2.5IIIa |HIP HIP | +108874|049015 |omi Aqr |220318.8-020919 |GCAS | 4.68 | 4.89 | |V | | | | |B7IVe-sh |HIP HIP | +110672|049016 |pi. Aqr |222516.6+012239 |GCAS | 4.42 | 4.87 | |V | | | | |B1Ve |08067 HIP | +114939|049022 |khi Aqr |231650.9-074335 |SRB: | 4.75 | 5.10 | |V | | | 35.250 : | |M3III |N0132 HIP | +93820 |050001 |R Aql *|190622.3+081348 |M | 5.5 | 12.0 | |V |43458. | | 284.2 |42 |M5e-M9e |00001 00002| +99503 |050002 |S Aql |201137.5+153715 |SRA | 8.9 | 12.8 | |V |43855. | | 146.45 |48 |M3e-M5.5e |00001 00002| +95820 |050004 |U Aql *|192921.4-070239 |DCEP | 6.08 | 6.86 | |V |34922.31 | | 7.02393 |30 |F5I-II-G1 |02392 02061| +93666 |050005 |V Aql |190424.2-054105 |SRB | 6.6 | 8.4 | |V | | | 353. | |C5,4-C6,4(N6) |00444 00097| +93867 |050008 |Y Aql *|190658.6+110416 |E/KE | 5.02 |( 0.04 )|( 0.03 )|B |38607.445 | | 1.30227 | |B8III-V |05239 BD | +98220 |050010 |RR Aql *|195736.1-015311 |M | 7.8 | 14.5 | |V |41764. | | 394.78 |30 |M6e-M9 |00001 00002| +96580 |050012 |RT Aql *|193801.6+114318 |M | 7.6 | 14.5 | |V |43290. | | 327.11 |42 |M6e-M8e(S) |00001 00002| +93681 |050026 |SZ Aql *|190439.4+011822 |DCEP | 7.92 | 9.26 | |V |35528.937 | | 17.137939 |37 |F7-K1 |00025 06225| +93990 |050027 |TT Aql *|190813.8+011755 |DCEP | 6.46 | 7.70 | |V |37236.10 | | 13.7546 |34 |F6-G5 |03509 06225| +94605 |050032 |TY Aql |191507.7-070049 |ACV: | 10.5 | 11.0 | |p | | | | |A1p(Si) | 00002| +101162|050033 |TZ Aql |203018.5-044517 |LB | 10.2 | 11.0 | |p | | | | |M6 | BD | +93158 |050035 |UV Aql |185832.4+142150 |SRA | 11.1 | 12.4 | |p |30906. | | 385.5 | |C5,4-5(N4) |01004 BD | +97465 |050046 |WX Aql |194837.2+034149 |SRB | 11.5 | 12.6 | |p |30584. | | 107. |45 |M6 |01000 GSC | +101453|050109 |CH Aql |203342.2-053849 |RR | 11.5 | 12.5 | |p |36050.335 | | 0.38918702 | | |03506 00504| +93124 |050170 |FF Aql *|185814.8+172139 |DCEPS | 5.18 | 5.68 | |V |41576.428 | | 4.470916 |48 |F5Ia-F8Ia |08300 BD | +94094 |050176 |FM Aql *|190916.0+103309 |DCEP | 7.89 | 8.66 | |V |35151.723 | | 6.11423 |30 |F5-F9Ia |02083 03203| +94402 |050177 |FN Aql *|191247.3+033327 |DCEPS | 7.96 | 8.75 | |V |36804.603 | | 9.48151 |49 |F8-G2 |05661 03203| +97586 |050207 |GY Aql *|195006.3-073653 |SR | 10. |< 16. | |p | | | 204. | |M6III:e-M8 | 06286| +98553 |050245 |KL Aql *|200109.8+154813 |DCEP | 9.82 | 10.56 | |V |43338.695 | | 6.108015 |23 |F6Iab-G6 |08632 08632| +101156|050247 |KN Aql |203015.2+015237 |SRB | 8.52 | 9.35 | |V | | | 70. |41 |M5e |01331 BD | +92177 |050248 |KO Aql *|184710.7+104549 |EA/SD: | 8.3 | 9.50 | 8.40 |B |41887.4724 | | 2.864055 |13 |A0V-A3V |08720 00110| +96637 |050269 |LU Aql *|193852.0+154410 |SRB | 10.9 | 12.0 | |p |27344. | | 105.7 | |M4-M5 |00310 BD | +97184 |050290 |NO Aql |194509.8+045422 |SRA | 11.0 | 12.7 | |p |31592. | | 73.6 |42 |M4e |00364 01422| +98270 |050322 |PX Aql |195802.5-091329 |SR | 9.4 | 11.7 | |V |27658. | | 154.8 | |M5 |00460 08073| +96840 |050327 |QS Aql *|194105.5+134857 |EA/SD | 5.93 | 6.06 | 5.97 |V |40443.489 | | 2.513294 |17 *|B5V |06428 BD | +99309 |050333 |QY Aql *|200928.8+151845 |EA/DS: | 11.4 | 14.6 | |p |30223.615 | | 7.229590 |15 |F0 | 00192| +93399 |050336 |V0336 Aql *|190119.7+000849 |DCEP | 9.50 | 10.28 | |V |36255.641 | | 7.303552 |31 |F5-G2 |02274 05404| +101356|050341 |V0341 Aql *|203231.6+003507 |RRAB | 10.13 | 11.39 | |V |41196.251 | | 0.57802054 |13 |A6-F5 |07984 02104| +94774 |050342 |V0342 Aql *|191703.5+092039 |EA | 9.5 | 12.9 | |p |39318.581 | | 3.390882 |14 |A4II |00001 04493| +96349 |050417 |V0417 Aql *|193524.1+055018 |EW/KW: | 11. | 11.5 | 11.5 |p |43016.404 | | 0.3701288 | |G2V |00001 02106| +96204 |050450 |V0450 Aql |193346.0+052757 |SRB | 6.30 | 6.65 | |V |31320. | | 64.20 |52 |M5III-M8III |01000 BD | +93063 |050493 |V0493 Aql *|185724.3-004349 |DCEP | 10.79 | 11.36 | |V |35653.117 | | 2.987751 |30 | |00001 01407| +94004 |050496 |V0496 Aql *|190820.8-072616 |DCEPS | 7.59 | 7.98 | |V |36017.062 | | 6.80703 |33 |G5 |05366 05462| +98675 |050572 |V0572 Aql *|200232.7+004250 |CWB | 11.00 | 11.44 | |V |41921.259 | | 3.767697 |45 | |08300 00470| +93502 |050599 |V0599 Aql *|190234.1-104318 |EB/KE: | 6.67 | 6.75 | 6.73 |V |21836.539 | | 1.849084 | |B2V+B8 |00007 BD | +95118 |050600 |V0600 Aql *|192102.4+083059 |DCEP | 9.73 | 10.40 | |V |36317.031 | | 7.23845 |33 |F6-G0 |00001 00156| +98217 |050733 |V0733 Aql *|195733.0+110237 |DCEP | 9.73 | 10.16 | |V |42597.207 | | 6.178748 |32 |F9Ib |08632 03173| +93809 |050805 |V0805 Aql *|190618.2-113857 |EA/DM | 7.58 | 8.22 | 7.90 |V |27927.8470 | | 2.4082337 |11 *|A2+A7 |00001 BD | +96007 |050822 |V0822 Aql *|193115.8-020637 |EB/DM | 6.87 | 7.44 | 7.07 |V |42577.333 | | 5.294950 | |B5+B8:V |08091 00562| +93751 |050843 |V0843 Aql |190526.4-064752 |EA/KE | 9.8 | 10.2 | |p |29864.182 | | 1.497957 : | |B9 |00169 06286| +100599|050865 |V0865 Aql |202354.6+005645 |M | 9.5 | 13.9 | |p |38593. | | 364.8 | |M6-M7(S7,5e:) |00001 04341| +92787 |050913 |V0913 Aql |185429.0+103757 |SRA | 9.2 | 10.5 | |p |29735. | | 50. | |M5II |02593 03763| +95929 |050923 |V0923 Aql *|193033.1+032640 |GCAS | 6.04 |( 0.12 )| |V | | | | |B5.5IIIpe-B8V |03178 BD | +97794 |051162 |V1162 Aql |195221.0-112201 |DCEPS | 8.6 | 9.3 | |p |25803.400 | | 5.3761 |50 : |G5 |03929 BD | +97991 |051165 |V1165 Aql *|195452.8+124558 |CEP: | 10. | 10.5 | |p |36755.472 | | 6.82957 |30 : | |03932 04564| +92865 |051182 |V1182 Aql *|185523.1+092048 |EB/KE: | 8.5 | 8.65 | 8.65 |V |39651.720 | | 1.621924 | |O8Vnn |06442 BD | +94982 |051208 |V1208 Aql *|191939.4+122229 |DSCTC | 5.51 | 5.56 | |V | | | 0.149663 | |F0III |04591 BD | +92871 |051285 |V1285 Aql |185527.4+082409 |UV | 10.8 | 11.82 | |B | | | | |M2Ve |05831 GSC | +93179 |051286 |V1286 Aql *|185846.9+135424 |ACV | 5.83 | 5.93 | |V |41517.4 | | 6.05 | |A4p(Eu-Cr-Sr) |07021 BD | +94477 |051288 |V1288 Aql *|191342.7+021737 |ACV | 5.06 | 5.16 | |V |44099.23 | | 1.73 | |B8II-IIIp(Hg:) |04602 BD | +97871 |051291 |V1291 Aql *|195318.7-030652 |ACV | 5.61 | 5.67 | |V |32323. | | 224.5 | |A5p(Sr-Cr-Eu) |07022 BD | +96159 |051293 |V1293 Aql |193307.8+050146 |SRB | 8.3 | 9.0 | |p | | | | |M5III |06302 BD | +96196 |051294 |V1294 Aql |193336.9+034541 |GCAS | 6.82 | 7.23 | |V | | | | |B0.5IV |08110 BD | +98719 |051295 |V1295 Aql *|200302.5+054417 |* | 7.87 |( 0.02 )| |V | | | | |A0ep |05880 BD | +91910 |051331 |V1331 Aql *|184412.8-013316 |EB/KE: | 7.7 | 8.05 | 7.95 |V |42610.070 | | 1.364209 | |B1V |08113 BD | +97607 |051339 |V1339 Aql |195017.5+075409 |GCAS: | 6.33 | 6.52 | |V | | | | |B2.5IVe |05150 BD | +99540 |051357 |V1357 Aql *|201203.9+152128 |SXARI | 7.94 |( 0.04 )| |V |44084.32 | | 19.5 | |B5p |08747 BD | +96714 |051379 |V1379 Aql |193938.8-060350 |RS | 8.34 | 8.55 | |V | | | | | |68316 BD | +98910 |051401 |V1401 Aql |200505.4-113558 |SRD | 6.18 | 6.55 | |V | | | | | |68029 BD | +93626 |051402 |V1402 Aql |190359.0-041902 |WR | 11.59 |( 0.14 )| |B | | | | | |69021 BD | +93904 |051403 |V1403 Aql |190718.1+032635 |ACYG | 7.41 |( 0.08 )| |V | | | | | |69022 BD | +99101 |051422 |V1422 Aql |200709.3+151602 |BY | 8.09 |( 0.10 )| |V | | | | | |72012 BD | +99210 |051423 |V1423 Aql |200827.0+154030 |RS | 7.8 |( 0.045 )| |V | | | | | |72012 BD | +94496 |051427 |V1427 Aql |191358.6+000732 |SRD | 10.48 | 10.88 | |U | | | | | |73022 BD | +94761 |051428 |V1428 Aql |191655.3+051008 |BY | 9.09 | 9.13 | |V | | | | | |73018 BD | +95793 |051431 |V1431 Aql |192901.0+015702 |ACVO: | 6.06 |( 0.04 )| |v | | | | | |73026 BD | +92151 |051434 |V1434 Aql |184655.6+092509 |LB: | 7.56 | 7.68 | |Hp| | | | | |HIP HIP | +92715 |051435 |V1435 Aql |185329.9+093931 |LB: | 7.32 | 7.46 | |Hp| | | | | |HIP HIP | +92836 |051436 |V1436 Aql |185453.7+105840 |E: | 9.52 | 11.45 | |Hp| | | | | |HIP HIP | +93215 |051437 |V1437 Aql |185915.2-070801 |BE | 8.99 | 9.10 | |Hp| | | | | |HIP HIP | +93259 |051438 |V1438 Aql |185951.0+112642 |DSCTC | 7.79 | 7.86 | |Hp| | | | | |HIP HIP | +93349 |051439 |V1439 Aql |190049.4+143249 |EB: | 7.68 | 7.98 | |Hp| | | | | |HIP HIP | +93724 |051440 |V1440 Aql |190500.1-070831 |ELL:+NL: | 8.40 | 8.75 | |Hp| | | | | |HIP HIP | +93732 |051441 |V1441 Aql |190508.5+093832 |EB | 6.91 | 7.00 | |Hp| | | | | |HIP HIP | +93773 |051442 |V1442 Aql |190548.2+121227 |LB: | 7.46 | 7.56 | |Hp| | | | | |HIP HIP | +94011 |051443 |V1443 Aql |190825.2+090801 |GCAS: | 8.95 | 9.13 | |Hp| | | | | |HIP HIP | +94169 |051444 |V1444 Aql |191009.9+022127 |ACV: | 7.93 | 7.99 | |Hp| | | | | |HIP HIP | +94294 |051445 |V1445 Aql |191135.3-012353 |LB: | 11.10 | 11.37 | |Hp| | | | | |HIP HIP | +94384 |051446 |V1446 Aql |191240.3-062732 |BE | 9.16 | 9.28 | |Hp| | | | | |HIP HIP | +94588 |051447 |V1447 Aql |191458.1+102434 |LPB: | 7.34 | 7.44 | |Hp| | | | | |HIP HIP | +94596 |051448 |V1448 Aql |191501.4+094827 |BE: | 7.92 | 8.09 | |Hp| | | | | |HIP HIP | +94793 |051449 |V1449 Aql |191714.8+010334 |BCEP | 8.30 | 8.38 | |Hp| | | | | |HIP HIP | +94824 |051450 |V1450 Aql |191741.0+083651 |EB: | 8.98 | 9.30 | |Hp| | | | | |HIP HIP | +95049 |051451 |V1451 Aql |192024.7-103337 |LB | 6.83 | 6.99 | |Hp| | | | | |HIP HIP | +95082 |051452 |V1452 Aql |192040.9+142509 |CEP: | 7.75 | 7.85 | |Hp| | | | | |HIP HIP | +95499 |051453 |V1453 Aql |192529.0-065542 |LB: | 9.10 | 9.20 | |Hp| | | | | |HIP HIP | +95547 |051454 |V1454 Aql |192605.1+033110 |E: | 8.09 | 8.23 | |Hp| | | | | |HIP HIP | +95588 |051455 |V1455 Aql |192633.2-080942 |EA: | 8.08 | 8.27 | |Hp| | | | | |HIP HIP | +95716 |051456 |V1456 Aql |192806.2+114701 |SRB | 8.42 | 8.63 | |Hp| | | | | |HIP HIP | +95748 |051457 |V1457 Aql |192827.9+093747 |SRB | 8.07 | 8.26 | |Hp| | | | | |HIP HIP | +96309 |051458 |V1458 Aql |193455.8+061402 |SRA | 8.33 | 8.45 | |Hp| | | | | |HIP HIP | +96682 |051459 |V1459 Aql |193920.7+102316 |LB: | 8.48 | 8.65 | |Hp| | | | | |HIP HIP | +96916 |051460 |V1460 Aql |194202.0-100532 |LB: | 9.31 | 9.41 | |Hp| | | | | |HIP HIP | +97065 |051461 |V1461 Aql |194334.1-090402 |EA | 8.91 | 9.34 | |Hp| | | | | |HIP HIP | +97059 |051462 |V1462 Aql |194330.5+004032 |BE | 8.28 | 8.39 | |Hp| | | | | |HIP HIP | +97117 |051463 |V1463 Aql |194415.9+073518 |BE | 8.05 | 8.19 | |Hp| | | | | |HIP HIP | +97600 |051464 |V1464 Aql |195015.5-083606 |RRC: | 8.69 | 8.76 | |Hp| | | | | |HIP HIP | +97664 |051465 |V1465 Aql |195055.2+064925 |ACV: | 9.22 | 9.32 | |Hp| | | | | |HIP HIP | +97787 |051466 |V1466 Aql |195215.6+102106 |BE: | 6.50 | 6.56 | |Hp| | | | | |HIP HIP | +98060 |051467 |V1467 Aql |195542.9+032152 |LB: | 11.81 | 12.28 | |Hp| | | | | |HIP HIP | +98542 |051468 |V1468 Aql |200105.2-072152 |LB | 10.31 | 10.63 | |Hp| | | | | |HIP HIP | +98538 |051469 |V1469 Aql |200103.8+093051 |LB | 8.48 | 8.66 | |Hp| | | | | |HIP HIP | +98826 |051470 |V1470 Aql *|200409.3+114740 |E | 7.83 | 7.93 | |Hp| | | | | |HIP HIP | +98893 |051471 |V1471 Aql |200454.9+022631 |EB: | 8.42 | 8.63 | |Hp| | | | | |HIP HIP | +98954 |051472 |V1472 Aql *|200526.6+153002 |E: | 6.38 | 6.54 | |Hp| | | | | |HIP HIP | +99250 |051473 |V1473 Aql |200849.7+121342 |LPB: | 7.15 | 7.21 | |Hp| | | | | |HIP HIP | +99456 |051474 |V1474 Aql |201109.6+062055 |LB | 7.39 | 7.65 | |Hp| | | | | |HIP HIP | +99533 |051475 |V1475 Aql |201202.0+074104 |LB | 7.11 | 7.26 | |Hp| | | | | |HIP HIP | +99547 |051476 |V1476 Aql |201207.0+074708 |LB: | 11.69 | 11.98 | |Hp| | | | | |HIP HIP | +99720 |051477 |V1477 Aql |201405.4-045016 |CEP: | 9.32 | 9.76 | |Hp| | | | | |HIP HIP | +99755 |051478 |V1478 Aql |201424.9-000020 |LB | 8.78 | 9.17 | |Hp| | | | | |HIP HIP | +99754 |051479 |V1479 Aql |201424.3+115726 |LB: | 11.29 | 11.53 | |Hp| | | | | |HIP HIP | +99890 |051480 |V1480 Aql |201600.9+020641 |LB | 12.05 | 12.69 | |Hp| | | | | |HIP HIP | +99983 |051481 |V1481 Aql |201700.3+070418 |LB | 7.24 | 7.56 | |Hp| | | | | |HIP HIP | +100550|051482 |V1482 Aql |202319.2-002708 |SRB | 6.96 | 7.09 | |Hp| | | | | |HIP HIP | +100926|051483 |V1483 Aql |202746.1-053915 |LB: | 6.83 | 7.00 | |Hp| | | | | |HIP HIP | +101639|051484 |V1484 Aql |203605.7+010146 |LB: | 10.10 | 10.31 | |Hp| | | | | |HIP HIP | +91911 |051485 |V1485 Aql |184413.2-034758 |WR | 11.88 | 12.70 | |V | | | | | |75019 75020| +98698 |051654 |V1654 Aql |200247.0+031934 |BY | 7.48 |( 0.04 b )| |V | | | | | |77182 DM | +92943 |051665 |V1665 Aql *|185609.9+075608 |EA | 8.09 | 8.40 | 8.26 |V |52810.870 | | 3.88181 | |B9V |78011 DM | +94482 |051686 |V1686 Aql *|191347.7-015007 |EB | 8.91 | 9.01 | 8.98 |V |52070.764 | | 6.07195 | |B6III |78011 DM | +94650 |051688 |V1688 Aql |191535.0+113317 |BY | 8.06 |( 0.02 )| |V | | | 14.16 : | |K0V |78018 DM | +95453 |051691 |V1691 Aql |192501.5-045304 |DSCTC | 6.82 |( 0.04 )| |B | | | 0.0781 | |A9V |78270 DM | +99711 |051703 |V1703 Aql |201359.8-005201 |BY | 7.79 |( 0.03 )| |V | | | 23.98 | |K2V |78018 DM | +92837 |051709 |V1709 Aql |185454.4+010718 |GDOR | 7.43 | 7.49 | |Hp| | | 0.78666 | |F5 |79145 DM | +97649 |059001 |alf Aql |195047.0+085206 |DSCT | 0.77 |( 0.004 * )| |V | | | 0.06342 | |A7IV/V |79163 DM | +97804 |059007 |eta Aql *|195228.4+010020 |DCEP | 3.48 | 4.39 | |V |36084.656 | | 7.176641 |32 |F6Ib-G4Ib |02392 BD | +96665 |059018 |sig Aql *|193911.6+052352 |EB/DM | 5.14 |( 0.2 )|( 0.1 )|V |22486.797 | | 1.95026 | |B3V+B3V |02005 BD | +81589 |060001 |R Ara *|163944.7-565940 |EA | 6.17 | 7.32 | 6.2 |V |47386.1200 | | 4.42522 |14 *|B9Vp |N0001 CPD | +88064 |060002 |S Ara *|175910.7-492601 |RRAB | 9.92 | 11.24 | |V |52764.738 | | 0.4518587 |12 |A5-F3 |00001 CoD | +83387 |060003 |T Ara *|170233.1-550416 |SRB | 8.9 | 9.8 | |V | | | 170. | |C(R-Nb) |N0002 CPD | +81309 |060007 |X Ara |163624.7-552453 |M | 8.4 | 13.5 | |V |52455. | | 177.7 |40 |M5e-M7eII-III |N0002 00002| +82695 |060009 |Z Ara |165413.3-561554 |M | 9.2 |< 14.0 | |V |52982. | | 293.3 |60 |M3e-M5e |N0002 GSC | +87980 |060019 |SS Ara |175819.1-500940 |CST: | 9.28 | | |V | | | | |K2/4 |00001 CoD | +84059 |060026 |SZ Ara *|171107.4-615715 |SRA | 9.0 | 11.5 | |V |53097. | | 221.8 | |Ce(R-Nb) |00001 06286| +88802 |060231 |IN Ara *|180740.2-543629 |RRAB | 12.32 | 13.6 | |V |52802.840 | | 0.631489 |17 | |00001 06286| +88402 |060281 |MS Ara *|180304.3-524321 |RRAB | 11.52 | 12.48 | |V |52918.610 | | 0.5249875 |25 | |00001 06286| +82023 |060340 |V0340 Ara *|164519.1-512033 |DCEP | 9.63 | 10.76 | |V |52351.75 | | 20.81110 |24 : | |N0011 02382| +83003 |060341 |V0341 Ara *|165741.5-631238 |NL: | 10.47 | 11.04 | |V | | | | | |00001 CPD | +86306 |060535 |V0535 Ara *|173805.5-564917 |EW | 7.17 | 7.75 | 7.71 |V |39292.9351 | | 0.62930098 | |A8V |N0016 06561| +87314 |060539 |V0539 Ara *|175028.4-533645 |EA+LPB | 5.71 | 6.24 | 6.16 |V |48753.440 | | 3.169094 |11 |B2V+B3V |N0017 CPD | +82531 |060610 |V0610 Ara |165211.3-571542 |EW | 8.86 | 9.31 | |V |52549.548 | | 0.543159 | |F0V |HIP CPD | +86628 |060626 |V0626 Ara |174203.6-503039 |LB | 6.23 | 6.46 | |V | | | | |M3III |06645 CoD | +85467 |060750 |V0750 Ara |172754.8-470134 |BE | 6.62 | 6.68 | |V | | | | |B35e |75098 CoD | +84586 |060824 |V0824 Ara |171725.5-665704 |RS | 6.63 | 6.97 | |V | | | 1.681652 | |G5IV+K0V-IV |N0024 CPD | +83323 |060828 |V0828 Ara |170147.4-585730 |BE | 6.11 | 6.24 | |V | | | | |B2IVe |75098 CPD | +84311 |060829 |V0829 Ara *|171413.4-565319 |ELL: | 6.09 | 6.20 | |V | | | 80. | | |68034 CPD | +88743 |060832 |V0832 Ara *|180700.3-481450 |RS | 7.08 | 7.16 | |V | | | 34.6 | |G8-K0III-IIp |69011 CoD | +83916 |060837 |V0837 Ara *|170900.9-565448 |WR | 10.9 | 12.4 | |V | | | | |[WC10] |72179 CPD | +81376 |060840 |V0840 Ara |163708.5-522254 |LB | 6.83 | 6.91 | |Hp| | | | |M2/M3III |HIP HIP | +81478 |060841 |V0841 Ara |163831.1-572811 |BY: | 8.73 | 8.79 | |Hp| | | 4.6875 | |K0V |HIP HIP | +81700 |060842 |V0842 Ara |164119.7-551752 |SRB | 8.0 | 8.7 | |V | | | 166. | | |N0002 HIP | +82335 |060843 |V0843 Ara |164926.5-495909 |ACV | 7.78 | 7.82 | |Hp|48502.3182 | | 2.57281 | |Ap(Si) |HIP HIP | +82745 |060844 |V0844 Ara |165443.5-460524 |LB: | 8.38 | 8.49 | |Hp| | | | |K2/K3III |HIP HIP | +82769 |060845 |V0845 Ara |165455.5-480611 |LB: | 8.37 | 8.48 | |Hp| | | | |M3/M4III |HIP HIP | +82868 |060846 |V0846 Ara |165608.8-504029 |BE | 6.27 | 6.37 | |Hp| | | | |B3Vnpe |HIP HIP | +82985 |060847 |V0847 Ara |165729.9-603600 |LPB | 6.50 | 6.53 | |Hp| | | 0.94213 | |B5III |HIP HIP | +83105 |060848 |V0848 Ara |165856.8-460744 |BE: | 8.05 | 8.24 | |Hp| | | | |B2IV |HIP HIP | +83250 |060849 |V0849 Ara |170055.7-562848 |LC | 8.02 | 8.21 | |Hp| | | | |M3/M4Ib |HIP HIP | +83618 |060850 |V0850 Ara |170523.5-580436 |LB | 7.87 | 8.03 | |Hp| | | | |M3III |HIP HIP | +83802 |060851 |V0851 Ara *|170735.1-464047 |EB | 6.93 | 6.98 | 6.97 |Hp|48500.2098 | | 0.617372 | |A7III |HIP HIP | +83943 |060852 |V0852 Ara *|170929.9-471539 |EA | 7.75 | 8.10 | 7.94 |Hp|48500.410 | | 3.7400 |09 |B8V |HIP HIP | +84025 |060853 |V0853 Ara |171034.4-500315 |ACV | 8.77 | 8.82 | |Hp|48501.486 | | 1.9525 | |Ap(Si) |HIP HIP | +84105 |060854 |V0854 Ara |171138.7-485224 |LB | 5.87 | 5.99 | |Hp| | | | |M1/M2III |HIP HIP | +84148 |060855 |V0855 Ara |171214.6-532234 |LB | 7.25 | 7.35 | |Hp| | | | |M4III |HIP HIP | +84231 |060856 |V0856 Ara |171302.9-585441 |LB: | 8.34 | 8.44 | |Hp| | | | |K4III: |HIP HIP | +84642 |060857 |V0857 Ara |171814.7-602728 |BY: | 9.59 | 9.71 | |Hp| | | | |G8/K0V |HIP HIP | +84686 |060858 |V0858 Ara |171845.1-572621 |ACV | 8.21 | 8.31 | |Hp|48500.6500 | | 1.80495 | |Ap(Cr-Eu) |HIP HIP | +85435 |060859 |V0859 Ara |172733.6-531321 |LC | 7.02 | 7.14 | |Hp| | | | |M2II |HIP HIP | +85553 |060860 |V0860 Ara |172902.2-590157 |LB | 7.17 | 7.30 | |Hp| | | | |M2/M3III |HIP HIP | +85729 |060861 |V0861 Ara |173107.1-532843 |ACYG: | 8.11 | 8.18 | |Hp| | | | |B1Ib |HIP HIP | +85751 |060862 |V0862 Ara |173123.3-565516 |BE: | 5.92 | 6.04 | |Hp| | | | |B7II/III |HIP HIP | +85820 |060863 |V0863 Ara |173210.5-510427 |SRB | 7.47 | 8.15 | |Hp| | | 294. | |M4/5+A2/3V |HIP HIP | +85895 |060864 |V0864 Ara |173311.4-583327 |BE | 6.97 | 7.09 | |Hp| | | | |B7:Vnnpe |HIP HIP | +85968 |060865 |V0865 Ara |173411.7-482807 |SRS | 7.55 | 7.70 | |V | | | 27.8 | |M3/4III |00001 HIP | +86200 |060866 |V0866 Ara |173656.6-550816 |ACV: | 7.68 | 7.74 | |Hp| | | | |Ap(Si-Cr) |HIP HIP | +86658 |060867 |V0867 Ara *|174221.2-461756 |EW | 7.40 | 7.60 | 7.57 |V |52764.7376 | | 0.4937123 | |A0/A1IV |00001 HIP | +87302 |060868 |V0868 Ara |175018.9-471350 |BE | 7.57 | 7.63 | |Hp| | | 22.568 | |B6Vne |HIP HIP | +88491 |060869 |V0869 Ara |180408.9-474313 |LC | 7.64 | 7.83 | |Hp| | | | |M2Ib/II |HIP HIP | +88853 |060870 |V0870 Ara *|180822.7-564602 |EW | 9.00 | 9.40 | 9.40 |Hp|52031.780 | | 0.399773 | |F8 |00001 HIP | +81650 |060872 |V0872 Ara |164044.4-512842 |GDOR: | 6.37 | 6.39 | |Hp| | | 0.4266 | | |75029 CoD | +83603 |060873 |V0873 Ara |170518.9-470409 |ACYG | 7.17 | 7.23 | |Hp| | | 3.08 | | |75030 CoD | +81604 |060882 |V0882 Ara |163956.4-610928 |EA | 7.61 | 7.80 | 7.77 : |V |48180.587 | | 20.9659 |03 |A2IV |79018 DM | +85792 |069001 |alf Ara |173150.5-495234 |BE | 2.79 | 3.13 | |b | | | 0.9807 | |B2Vne |71150 CoD | +85079 |069009 |iot Ara |172316.1-472806 |BE | 5.18 | 5.26 | |V | | | 0.5565 | |B2IIIne |71150 68335| +10576 |070001 |R Ari *|021607.1+250324 |M | 7.1 | 14.3 | |V |53640. | | 185.67 |47 |M3e-M6e |00001 00002| +13092 |070003 |T Ari *|024819.7+173034 |M | 7.3 | 11.5 | |V |52600. | | 340. |49 |M6e-M8e |00001 00002| +10472 |070005 |V Ari |021500.1+121424 |SRC | 8.45 | 8.90 | |V | | | 58.7 | |C5II |N0002 HIP | +14601 |070007 |X Ari *|030830.9+102645 |RRAB | 8.97 | 9.95 | |V |52894.804 | | 0.6511628 |13 |A8-F4 |00001 HIP | +8993 |070010 |RR Ari |015551.0+233438 |CST: | 5.76 | | |V | | | | |K0III |HIP HIP | +13654 |070018 |RZ Ari |025548.5+181954 |SRB | 5.45 | 6.01 | |V | | | 56.5 | |M6III |N0135 HIP | +14893 |070024 |SX Ari |031214.3+271525 |SXARI | 5.75 | 5.81 | |V | | | 0.727902 | |B9pSi |N0136 BD | +11678 |070034 |UU Ari *|023038.4+195119 |DSCTC | 6.10 | 6.15 | |V | | | 0.0676 | |A9V |N0140 HIP | +12832 |070035 |UV Ari *|024457.6+122645 |DSCTC | 5.18 | 5.22 | |V | | | 0.0355 | |A7III-IV |07985 HIP | +14514 |070036 |UW Ari |030725.7+175248 |CST: | 6.11 | | |V | | | | |B1.5V |N0141 HIP | +16042 |070037 |UX Ari *|032635.4+284254 |RS | 6.36 | 6.70 | |V | | | | |G5V+K0IV |N0142 HIP | +8619 |070040 |VV Ari |015109.5+203052 |DSCTC | 6.69 | 6.73 | |V | | | 0.0764 | |F0III |08336 HIP | +11390 |070041 |VW Ari *|022645.6+103355 |DSCT | 6.64 | 6.76 | |V | | | 0.1606 | |F0IV |N0143 HIP | +12781 |070042 |VX Ari |024415.5+253124 |UV | 11.2 : | 12.14 | |B | | | | |M3.5Ve |08341 HIP | +13118 |070043 |VY Ari *|024843.7+310655 |RS | 6.68 | 7.15 | |V | | | 16.1996 | |K3-4IV-V |77103 HIP | +13121 |070044 |VZ Ari |024845.9+251117 |ACV | 5.82 | 5.89 | |V | | | | |A0V |68036 HIP | +14610 |070048 |WZ Ari |030840.7+253531 |RS | 8.17 | 8.25 | |V | | | 6.5870 | |G4V+G6V |HIP HIP | +15506 |070049 |XX Ari |031947.8+190435 |ACV | 7.33 | 7.42 | |V | | | 2.4997 | |B9VSiCr |77014 HIP | +8968 |070054 |ZZ Ari |015531.2+171122 |SRB | 8.14 | 8.47 | |V | | | 98. | |M2 |00001 HIP | +9619 |070055 |AA Ari |020337.7+225222 |RV: | 8.53 | 8.77 | |V |53586.9 | | 67.1 | |K7 |00001 HIP | +9796 |070056 |AB Ari |020558.7+220929 |LB: | 9.00 | 9.20 | |V | | | | |M0 |00001 HIP | +9963 |070057 |AC Ari |020817.0+244909 |SRB | 7.08 | 7.28 | |V | | | 32. | |M1 |00001 HIP | +10701 |070058 |AD Ari *|021745.4+182718 |EB | 7.40 | 7.47 | 7.4 |V |53330.654 | | 0.53972 | |F0 |N0002 HIP | +10964 |070059 |AE Ari |022114.5+232536 |LB | 7.4 | 7.8 | |V | | | | | |00001 HIP | +11035 |070060 |AF Ari |022206.6+225225 |EA: | 6.71 | 6.99 | |Hp|48081.59 | | | |G2IV |HIP HIP | +11369 |070061 |AG Ari *|022627.0+125356 |EA | 8.14 | 8.42 | 8.3 |V |48500.2720 | | 1.96315 | |B9 |HIP HIP | +11982 |070062 |AH Ari |023433.5+250057 |LB: | 8.26 | 8.40 | |V | | | | |K5 |00001 HIP | +12017 |070063 |AI Ari |023500.6+222758 |SRB | 10.0 | 10.6 | |V | | | 41.4 | |M5 |N0002 HIP | +12468 |070064 |AK Ari |024031.7+211116 |LB: | 7.87 | 8.02 | |V | | | | |M1 |00001 HIP | +12657 |070065 |AL Ari *|024236.3+124408 |EA | 9.23 | 9.77 | 9.4 |V |52892.849 | | 3.747457 |06 |F8 |00001 HIP | +12731 |070066 |AM Ari |024339.0+173255 |SRB | 7.18 | 7.38 | |V | | | 55. : | |M1 |00001 HIP | +13461 |070067 |AN Ari |025318.9+120017 |SRS | 9.10 | 9.42 | |V | | | 26.4 | |M2 |N0002 HIP | +13645 |070068 |AO Ari |025541.3+310235 |LB: | 6.81 | 6.93 | |Hp| | | | |M0 |HIP HIP | +13801 |070069 |AP Ari |025742.8+235745 |BY: | 9.90 | 10.06 | |Hp| | | | |K0V |HIP HIP | +14433 |070070 |AQ Ari |030617.1+113955 |SRS: | 7.14 | 7.27 | |Hp| | | 4.17 : | |M1III |HIP HIP | +15361 |070071 |AR Ari |031804.2+245238 |DSCT | 7.87 | 7.98 | |Hp| | | 0.1770392 | |F0 |HIP HIP | +15939 |070072 |AS Ari |032514.0+211251 |LB: | 7.86 | 8.02 | |Hp| | | | |M1 |HIP HIP | +16071 |070073 |AT Ari |032659.4+244925 |SRS: | 8.06 | 8.17 | |Hp| | | 7.64 : | |K5 |HIP HIP | +10013 |070074 |AU Ari |020856.7+173446 |SRS | 8.44 | 8.55 | |V | | | 6.1236 : | |M0 |HIP HIP | +10155 |070075 |AV Ari |021037.6+193001 |SRS | 5.67 | 5.74 | |V | | | 5.0320 : | |M3III |HIP HIP | +12600 |070078 |AY Ari |024200.8+305609 |SRD: | 6.82 |( 0.02 )| |V | | | | |K0IV |77023 HIP | +10218 |070079 |AZ Ari |021123.1+212239 |BY | 7.33 |( 0.02 )| |V | | | 8.98 : | |G5V |78018 HIP | +13081 |070081 |BC Ari |024809.1+270407 |BY | 7.56 |( 0.02 )| |V | | | | |K1V |78018 HIP | +13806 |070100 |BW Ari |025746.7+293941 |BY | 8.90 |( 0.03 )| |V | | | 9.57 | |G5 |80129 HIP | NL80_1 +16090 |070111 |CK Ari |032714.4+272309 |RS | 11.04 | 11.17 | |* | | | 10.0933 | |M0.5V |80021 HIP | NL80_1 +8832 |079003 |gam Ari *|015331.8+191738 |ACV | 4.62 |( 0.04 )| |V | | | 2.6095 | |A1pSrCrEu |08141 HIP | +24645 |080001 |R Aur *|051717.7+533510 |M | 6.7 | 14.0 | |V |54040. | | 450. |51 |M6.5e-M9.5e |00001 HIP | +30449 |080005 |V Aur |062402.3+474224 |M | 8.5 | 13.0 | |V |54699. | | 349. |54 |C6,2e(N3e) |00001 HIP | +29441 |080007 |X Aur |061213.4+501340 |M | 7.8 | 13.8 | |V |54858. | | 165.5 |50 |M3e-M7e |00001 HIP | +25642 |080008 |Y Aur |052839.2+422616 |DCEP | 9.16 | 10.02 | |V |48164.755 | | 3.8594076 |33 |F5-F9 |00001 HIP | +28714 |080011 |RS Aur *|060353.7+461735 |SR | 8.7 | 11.7 | |V | | | 173. |47 |M4e-M6e |N0039 HIP | +30827 |080012 |RT Aur *|062834.1+302935 |DCEP | 5.00 | 5.82 | |V |54153.880 | | 3.728485 |25 |F4Ib-G1Ib |00001 HIP | +26675 |080013 |RU Aur *|054007.9+373811 |M | 8.0 | 16.0 | |V |54782. | | 463.0 |42 |M7e-M9e |00001 HIP | +31379 |080014 |RV Aur |063444.6+423013 |SRB | 11.8 | 13.1 | |p | | | 229. | |C4,5 |00373 HIP | +23873 |080015 |RW Aur *|050749.6+302405 |IT | 9.2 | 12.5 | |V | | | | |G5Vep |01923 HIP | +23360 |080016 |RX Aur *|050123.2+395737 |DCEP | 7.28 | 8.02 | |V |48503.159 | | 11.626 |49 |F6-G2 |HIP HIP | +22925 |080021 |SU Aur *|045559.4+303402 |INT | 8.9 | 10.0 | |V | | | | |G2III(Li) |N0151 HIP | +24201 |080024 |SX Aur *|051142.9+420955 |EB | 8.38 | 9.14 | 8.87 |V |52500.3179 | | 1.2100855 | |B3V+B5V |N0041 HIP | +24281 |080025 |SY Aur *|051239.2+424954 |DCEP | 8.74 | 9.40 | |V |48164.95 | | 10.14465 |50 |F5-F8 |00001 HIP | +31484 |080028 |TU Aur |063537.1+453723 |SRB | 7.60 | 8.30 | |Hp| | | 156. | |M5III |00001 HIP | +23965 |080031 |TX Aur |050905.5+390009 |LB | 8.5 | 9.2 | |V | | | | |C5,4(N3) | HIP | +34743 |080033 |TZ Aur *|071135.0+404637 |RRAB | 11.08 | 12.45 | |V |53751.356 | | 0.39167475 |14 |A9-F7 |00001 HIP | +31579 |080034 |UU Aur *|063632.8+382644 |SRB | 4.9 | 7.0 | |V | | | 441. | |C5,3-C7,4(N3) |N0039 HIP | +25050 |080035 |UV Aur *|052148.9+323040 |M | 7.4 | 10.7 | |V |54821. | | 392.8 | |C6,2-C8,2Jep(Ne) |00001 HIP | +33450 |080036 |UW Aur *|065717.4+410704 |SRA | 9.5 | 11.6 | |V |42800. | | 560.7 |55 |C4,5J(R6p/N3) |04972 HIP | +24549 |080037 |UX Aur |051557.9+493247 |SRC | 8.4 | 9.2 | |V | | | 90. : | |M4II |01078 HIP | +24476 |080039 |UZ Aur |051510.0+400757 |SRB | 9.7 | 10.8 | |p | | | 69. : | |M3-M4III |00589 HIP | +36314 |080042 |VX Aur |072830.5+405813 |M | 8.0 | 13.1 | |V |54467. | | 325.8 | |M5e |00001 HIP | +31173 |080045 |WW Aur *|063227.2+322718 |EA | 5.86 | 6.54 | 6.43 |V |52501.8139 | | 2.52501936 |10 *|A4m+A5m |N0041 HIP | +24500 |080053 |YZ Aur *|051522.0+400441 |DCEP | 9.94 | 10.93 | |V |43816.417 | | 18.192830 |30 |F5-G2 |N0154 HIP | +22910 |080056 |AB Aur *|045545.8+303304 |INA | 6.3 | 8.4 | |V | | | | |A0Ve+sh | HIP | +25672 |080058 |AD Aur |052900.0+390254 |SRB | 11.0 | 13.1 | |p | | | 162.3 | |M6 |00608 HIP | +24575 |080059 |AE Aur *|051618.1+341844 |INA | 5.78 | 6.08 | |V | | | | |O9.5V | HIP | +30618 |080062 |AH Aur *|062604.9+275956 |EW | 10.18 |( 0.50 )|( 0.50 )|V |52500.3848 | | 0.4941067 | |F7V |N0041 HIP | +23210 |080067 |AN Aur |045941.5+405010 |DCEP | 10.11 | 10.83 | |V |51536.715 | | 10.289381 |52 |F6-F9 |00001 HIP | +24740 |080071 |AR Aur *|051818.9+334603 |EA | 6.15 | 6.82 | 6.70 |V |52501.392 | | 4.134651 |07 *|B9p+B9(Hg-Mn) |N0041 HIP | +22796 |080074 |AU Aur |045415.0+495400 |M | 10.0 | 14.0 | |V |54521. | | 400.5 |50 |C6-7,3e(N0e) |00001 HIP | +23657 |080084 |BF Aur *|050503.5+411719 |EB | 8.70 | 9.48 | 9.48 |V |52500.950 | | 1.5832232 | |B5V+B5V |N0041 HIP | +24226 |080086 |BH Aur |051204.3+335747 |RRAB | 11.12 | 12.20 | |V |53755.264 | | 0.4560898 |17 | |N0161 HIP | +24105 |080088 |BK Aur |051040.2+494115 |DCEP | 9.12 | 9.90 | |V |42825.384 | | 8.002432 |31 |G2 |08632 HIP | +28715 |080117 |CQ Aur *|060353.6+311941 |EA/RS | 9.04 | 9.37 | 9.14 : |V |43814.05 | | 10.62251 |14 |G8IV+F5V |N0165 HIP | +33368 |080124 |CX Aur |065622.1+465927 |LB: | 11.7 | 12.3 | |p | | | | |K8V |01941 HIP | +23520 |080155 |EL Aur |050323.0+503758 |LB | 8.9 | 9.6 | |V | | | | |C5,4(N3) |01078 HIP | +24744 |080158 |EO Aur *|051821.1+363755 |EA | 7.56 | 8.13 | 7.89 |V |52500.255 | | 4.0656497 |12 *|B3V+B3V |N0041 HIP | +27398 |080184 |FU Aur |054808.2+303752 |LB | 10.6 | 12.5 | |p | | | | |C7,2(N0) | HIP | +26619 |080209 |HH Aur |053929.8+295001 |CST: | 8.54 | | |V | | | | |G6IV |09984 HIP | +32900 |080219 |HS Aur *|065118.5+474024 |EA | 10.16 | 10.90 | 10.70 |V |46105.6419 | | 9.815377 |03 *|G8V+G8V |N0171 HIP | +23733 |080226 |HZ Aur |050608.4+335507 |ACV | 7.02 | 7.13 | |V | | | 6.43000 | |B9pSiCr |N0173 HIP | +24799 |080234 |IQ Aur |051900.0+334454 |ACV | 5.35 | 5.43 | |V | | | 2.4660 |22 |B9VpSi |03357 HIP | +25565 |080238 |IU Aur *|052752.4+344658 |EB | 8.19 | 8.89 | 8.74 |V |38448.4068 | | 1.81147435 | |B0p+B1Vp |N0175 HIP | +24504 |080256 |KW Aur *|051524.4+324115 |DSCTC+ELL | 4.95 | 5.08 | |V | | | 0.088088 | |A9IV |04822 HIP | +25733 |080273 |LY Aur *|052942.6+352230 |EB | 6.66 | 7.35 | 7.23 |V |52501.836 | | 4.002494 | |O9.5+O9.5III |N0041 HIP | +24938 |080288 |MZ Aur |052033.0+363756 |BE | 8.14 | 8.30 | |Hp| | | | |B2Vnpea |HIP HIP | +26718 |080290 |NO Aur |054042.0+315514 |LC | 6.06 | 6.44 | |V | | | | |M2SIab |09344 HIP | +33643 |080300 |NY Aur |065920.1+421853 |ACV | 6.56 | 6.73 | |V | | | 5.4379 | |A0pEuSrCr |07039 HIP | +33041 |080311 |OX Aur *|065301.4+385209 |DSCT | 5.94 | 6.14 | |V | | | 0.154412 | |F2IV |05453 HIP | +24738 |080319 |PU Aur |051815.7+424732 |LB: | 5.55 | 5.78 | |V | | | | |M4III |N0191 HIP | +29565 |080326 |QR Aur |061343.1+414150 |ACV | 7.19 | 7.21 | |Hp| | | 16.990 | |A0pEuSrCr |HIP HIP | +34603 |080333 |QY Aur *|071001.8+383146 |UV | 10.9 | 13.19 | |B | | | | |M5Ve+M5Ve |06948 HIP | +22670 |080346 |V0346 Aur |045234.9+383020 |LB: | 8.43 | 8.72 | |Hp| | | 365. : | |SC5/9 |HIP HIP | +24815 |080348 |V0348 Aur *|051910.2+354732 |LB | 12.0 | 13. | |p | | | | |C6,3(N) |02576 HIP | +33269 |080352 |V0352 Aur |065514.7+435436 |DSCTC | 6.13 | 6.18 | |V | | | 0.17 | |F1IV |01746 HIP | +25500 |080362 |V0362 Aur |052710.2+295516 |LC | 7.29 | 7.73 | |V | | | | |M1.5Iab-Ib |02556 HIP | +31695 |080382 |V0382 Aur *|063752.4+533102 |SRD: | 9.00 | 9.12 | |V | | | | |F7IVwe |68039 HIP | +24488 |080390 |V0390 Aur *|051515.5+471015 |BY:+UV: | 6.92 | 6.99 | |V | | | 9.8 | |G5III |69044 HIP | +28930 |080394 |V0394 Aur *|060622.4+293045 |SRC | 6.01 | 6.11 | |V | | | 32.896 | |M3II |71062 HIP | +29793 |080395 |V0395 Aur |061622.2+285107 |ELL | 7.34 | 7.43 | |V |43978.905 | | 23.1755 | |F5III+B8V |71064 HIP | +23783 |080398 |V0398 Aur *|050640.6+513552 |GDOR | 4.93 | 5.03 | |V | | | 1.25804 | |F0V |N0200 HIP | +23433 |080402 |V0402 Aur *|050214.7+311549 |EW | 8.84 | 8.98 | 8.98 |V |54115.520 | | 0.6034956 | |F2 |00001 HIP | +28162 |080403 |V0403 Aur *|055704.6+490147 |RS | 6.49 | 6.68 | |V | | | 73.1 | |G8III |73005 HIP | +29911 |080406 |V0406 Aur *|061751.5+323017 |EA | 7.47 | 7.58 | 7.57 |V |46770.690 | | 5.46414 |07 :*|A3 |73038 HIP | +22863 |080407 |V0407 Aur |045507.2+404452 |LB: | 8.10 | 8.25 | |Hp| | | | |M1 |HIP HIP | +22928 |080408 |V0408 Aur |045603.4+432936 |LC | 7.36 | 7.47 | |Hp| | | | |M0Ib |HIP HIP | +23013 |080409 |V0409 Aur |045659.0+375158 |SRD: | 8.76 | 8.93 | |Hp|48532.31 | | 58.19 | |F8 |HIP HIP | +23337 |080410 |V0410 Aur *|050110.8+343027 |EW | 10.10 | 10.45 | |Hp|54783.884 | | 0.3663612 | |G0 |N0201 HIP | +23608 |080411 |V0411 Aur *|050434.5+302250 |LB: | 8.24 | 8.35 | |Hp| | | | |M0 |HIP HIP | +23947 |080412 |V0412 Aur |050848.0+423443 |LB: | 8.45 | 8.70 | |Hp| | | | |M6III: |HIP HIP | +24029 |080413 |V0413 Aur |050956.4+370016 |BE | 7.95 | 8.33 | |Hp| | | | |B1Ve |HIP HIP | +24118 |080414 |V0414 Aur |051048.2+410010 |BE | 8.20 | 8.30 | |Hp| | | | |B2Vne |HIP HIP | +24238 |080415 |V0415 Aur |051214.5+411255 |BE | 7.80 | 7.87 | |Hp| | | | |B2:V:nne |HIP HIP | +24326 |080416 |V0416 Aur |051313.3+401137 |GCAS: | 7.23 | 7.48 | |Hp| | | | |B2V:pe |HIP HIP | +24350 |080417 |V0417 Aur *|051331.8+353911 |EA | 7.92 | 8.15 | 8.08 |Hp|48500.5262 | | 1.86553 |13 |A0 |HIP HIP | +24481 |080418 |V0418 Aur |051511.5+482142 |LB: | 8.39 | 8.49 | |Hp| | | | |K0 |HIP HIP | +24892 |080419 |V0419 Aur |052008.2+354710 |LB: | 7.32 | 7.42 | |Hp| | | | |M3 |HIP HIP | +25114 |080420 |V0420 Aur |052235.2+374034 |BE | 7.42 | 7.53 | |Hp| | | | |B0IVpe |HIP HIP | +25203 |080421 |V0421 Aur |052330.2+501314 |LB | 7.84 | 8.01 | |Hp| | | | |M0 |HIP HIP | +25224 |080422 |V0422 Aur |052342.6+504451 |BY: | 11.73 | 12.04 | |Hp| | | | |K5 |HIP HIP | +25178 |080423 |V0423 Aur |052310.1+354232 |LPB: | 8.63 | 8.79 | |Hp| | | | |B8 |HIP HIP | +25252 |080424 |V0424 Aur *|052400.8+323732 |EB | 8.31 | 8.48 | 8.44 |Hp|48500.154 | | 1.8370 | |B9 |HIP HIP | +25284 |080425 |V0425 Aur *|052430.5+414938 |EB | 7.62 | 7.90 | 7.84 |Hp|48500.8290 | | 1.568583 | |B5 |HIP HIP | +25599 |080426 |V0426 Aur *|052812.3+352552 |EB | 10.55 | 10.76 | 10.66 |Hp|52925.5394 | | 1.419094 | |B3V |00001 HIP | +25801 |080427 |V0427 Aur |053035.9+313040 |LB | 7.52 | 7.65 | |Hp| | | | |K5 |HIP HIP | +25877 |080428 |V0428 Aur |053126.7+381911 |RV | 6.74 | 7.26 | |Hp|48526.89 | | 89.20 : | |K5 |HIP HIP | +25996 |080429 |V0429 Aur |053254.9+520741 |LB: | 8.61 | 8.71 | |Hp| | | | |K0 |HIP HIP | +26128 |080430 |V0430 Aur |053417.0+410724 |SRC | 6.89 | 7.02 | |Hp|48636. | | 410. | |M2II |HIP HIP | +26354 |080431 |V0431 Aur *|053642.3+341206 |BE: | 8.97 | 9.29 | |Hp| | | 16.86 : | |B5e |HIP HIP | +26434 |080432 |V0432 Aur *|053732.5+370512 |EA | 7.98 | 8.40 | |V |51571.4123 | | 3.08175 |09 |G0 |N0202 HIP | +26606 |080433 |V0433 Aur *|053918.3+291255 |LPB: | 6.02 | 6.06 | |Hp| | | 4.6382 | |B2IV-V |HIP HIP | +26872 |080434 |V0434 Aur |054219.9+430335 |BE | 7.16 | 7.30 | |Hp| | | | |B3Vne |HIP HIP | +26845 |080435 |V0435 Aur |054159.4+293122 |BE | 8.91 | 9.02 | |Hp| | | | |B3e |HIP HIP | +27144 |080436 |V0436 Aur |054517.0+354142 |LB: | 8.27 | 8.44 | |Hp| | | | |K5 |HIP HIP | +27469 |080437 |V0437 Aur *|054903.1+540157 |EA | 8.42 | 9.00 | |Hp|48500.101 | | 3.3638 : | |B9 |HIP HIP | +27459 |080438 |V0438 Aur |054853.6+290810 |GCAS | 8.03 | 8.14 | |Hp| | | | |B3:pe:shell |HIP HIP | +27591 |080439 |V0439 Aur |055033.8+472740 |LB: | 7.45 | 7.54 | |Hp| | | | |K5 |HIP HIP | +27661 |080440 |V0440 Aur *|055125.8+320729 |LB: | 6.24 | 6.37 | |Hp| | | | |M3III |HIP HIP | +28023 |080441 |V0441 Aur |055537.6+532736 |SR: | 7.38 | 7.50 | |Hp| | | | |M0 |HIP HIP | +28151 |080442 |V0442 Aur |055654.8+353444 |SR: | 7.04 | 7.39 | |Hp| | | | |M5 |HIP HIP | +28283 |080443 |V0443 Aur |055833.7+433015 |LB | 8.33 | 8.64 | |Hp| | | | |M2 |HIP HIP | +28499 |080444 |V0444 Aur |060058.6+475407 |ACV | 5.70 | 5.74 | |Hp| | | 14.368 | |B9.5pSiFe |N0108 HIP | +28628 |080445 |V0445 Aur |060239.2+425256 |LPB | 8.36 | 8.44 | |Hp| | | 2.27366 | |B8 |HIP HIP | +28701 |080446 |V0446 Aur |060342.6+503645 |LB | 8.45 | 8.65 | |Hp| | | | |M5 |HIP HIP | +28783 |080447 |V0447 Aur |060438.4+463506 |BE | 7.17 | 7.31 | |Hp| | | | |B3Ve |HIP HIP | +28851 |080448 |V0448 Aur |060524.0+334402 |LPB | 8.49 | 8.56 | |Hp| | | 4.0420 | |B9 |HIP HIP | +29108 |080449 |V0449 Aur *|060819.0+453316 |EB | 7.46 | 7.58 | 7.53 |Hp|52500.5934 | | 0.70366366 | |A0 |N0041 HIP | +29198 |080450 |V0450 Aur |060932.6+283957 |SR: | 7.94 | 8.10 | |Hp| | | | |K7 |HIP HIP | +29352 |080451 |V0451 Aur |061114.9+285427 |LPB | 7.74 | 7.80 | |Hp| | | 2.63323 | |B8 |HIP HIP | +29901 |080452 |V0452 Aur |061745.0+392826 |LB: | 6.77 | 6.87 | |Hp| | | | |K2 |HIP HIP | +30227 |080453 |V0453 Aur |062133.3+523114 |SR: | 7.71 | 8.22 | |Hp| | | | |M3 |HIP HIP | +30270 |080454 |V0454 Aur |062203.1+343551 |EA | 7.74 | 8.17 | |Hp|48502.21 | | 27.027 | |F8 |00001 HIP | +30878 |080455 |V0455 Aur *|062854.9+520733 |EA | 7.33 | 7.64 | 7.64 |Hp|47931.70 | | 3.14578 | |F2 |N0203 HIP | +30822 |080456 |V0456 Aur |062831.7+390638 |DSCTC | 7.88 | 7.95 | |Hp| | | 0.138657 | |F0 |HIP HIP | +31027 |080457 |V0457 Aur |063037.7+514645 |LB: | 8.84 | 8.94 | |Hp| | | | |M0 |HIP HIP | +31255 |080458 |V0458 Aur |063319.6+471306 |LB | 7.53 | 7.65 | |Hp| | | | |M5 |HIP HIP | +31485 |080459 |V0459 Aur *|063537.6+323437 |EB | 7.68 | 8.12 | 7.96 |Hp|48500.8270 | | 1.062637 | |B8 |HIP HIP | +31719 |080460 |V0460 Aur |063806.4+511208 |LB: | 7.57 | 7.87 | |Hp| | | | |M5 |HIP HIP | +32495 |080461 |V0461 Aur |064653.2+450211 |LB: | 9.41 | 9.56 | |Hp| | | | |K5 |HIP HIP | +33389 |080462 |V0462 Aur *|065636.6+463219 |EB: | 8.13 | 8.30 | 8.30 |Hp|48500.7417 | | 1.75680 | |A0 |HIP HIP | +34778 |080463 |V0463 Aur |071201.1+435035 |ACV: | 6.86 | 6.92 | |Hp| | | 0.804150 | |A0 |HIP HIP | +22776 |080536 |V0536 Aur |045356.2+364527 |BY | 7.77 |( 0.03 )| |V | | | 7.878 | |G5Ve |78018 DM | +26779 |080538 |V0538 Aur |054120.3+532852 |BY | 6.34 | 6.38 | |Hp| | | 10.86 | |K1Ve |78005 HIP | +32263 |080553 |V0553 Aur |064411.8+365938 |GDOR | 7.53 | 7.58 | |Hp| | | 1.1505 | |F0 |78091 HIP | +22979 |080560 |V0560 Aur *|045642.8+391724 |EA | 9.07 | 9.20 | 9.18 : |V |48181.925 | | 1.528311 |12 : |A0 |79006 HIP | +21697 |080584 |V0584 Aur *|043931.0+340745 |RS | 9.9 |( 0.07 * )| |V | | | 0.7333 | |K2 |80021 HIP | NL80_1 +26658 |080617 |V0617 Aur *|053956.6+300511 |EB | 8.03 | 8.21 | 8.13 |V |48013.1 | | 66.76 | |F5II+Be |80015 HIP | NL80_1 +28360 |089002 |bet Aur *|055931.7+445651 |EA | 1.89 | 1.98 | 1.98 |V |52500.573 | | 3.960036 |06 *|A2IV+A2IV |N0041 HIP | +23416 |089005 |eps Aur *|050158.1+434924 |EA | 2.92 | 3.88 | |V |45513. | | 9884. |08 |A8Iab: |00001 HIP | +23453 |089006 |zet Aur *|050228.7+410433 |EA | 3.70 | 3.97 | |V |52968.7941 | | 972.150912 |04 |K5Ib-II+B6.5IV-V |N0041 HIP | +28380 |089008 |tet Aur *|055943.3+371245 |ACV | 2.62 | 2.70 | |V | | | 3.6186 | |B9.5p(Si) |HIP HIP | +28404 |089016 |pi. Aur |055956.1+455612 |LC | 4.24 | 4.34 | |V | | | | |M3.5II |05841 HIP | +71490 |090001 |R Boo *|143711.6+264412 |M | 6.0 | 13.3 | |V |55029. | | 223.11 |45 |M3e-M8e |00001 HIP | +70291 |090002 |S Boo |142252.9+534837 |M | 7.4 | 14.0 | |V |55035. | | 269.88 |47 |M3e-M6e |00001 HIP | +70885 |090005 |V Boo *|142945.3+385141 |SR | 7.0 | 12.0 | |V | | | 257. |48 |M6e |N0039 HIP | +71995 |090006 |W Boo |144325.4+263140 |SRB | 4.49 | 5.4 | |V | | | 25. | |M2-M4III |N0208 HIP | +70224 |090008 |Y Boo |142201.6+194819 |CST: | 7.94 | | |V | | | | |K0III | HIP | +72300 |090010 |RR Boo |144705.8+391902 |M | 8.2 | 15.0 | |V |54929. | | 194.0 |48 |M2e-M6e |00001 HIP | +71186 |090011 |RS Boo *|143333.2+314517 |RRAB | 9.63 | 10.88 | |V |48500.3370 | | 0.377339 |17 |A7-F5 |HIP HIP | +74802 |090012 |RT Boo |151714.7+362133 |M | 8.2 | 14.0 | |V |54873. | | 275.5 |49 |M6.5e-M8e |00001 HIP | +71644 |090014 |RV Boo |143915.9+323222 |SRB | 7.0 | 9.0 | |V | | | 144. | |M5e-M7e |N0039 HIP | +71802 |090015 |RW Boo |144113.4+313420 |SRB | 7.2 | 8.7 | |V | | | 209. | |M5 |01100 HIP | +70401 |090016 |RX Boo *|142411.6+254213 |SRB | 6.43 | 9.1 | |V | | | 162.3 | |M6.5e-M8IIIe |N0209 HIP | +72528 |090017 |RY Boo |144943.0+230156 |CST: | 7.12 | 7.16 | |V | | | | |F5III-IV | HIP | +74509 |090019 |SS Boo *|151332.5+383406 |EA/RS | 10.28 | 10.95 |( 0.1 )|V |52501.03 | | 7.606146 |10 *|G0V+K1IV |N0041 HIP | +75942 |090020 |ST Boo *|153039.2+354704 |RRAB | 10.28 | 11.54 | |V |48500.1722 | | 0.622286 |15 |A7-F7 |HIP HIP | +69759 |090029 |TV Boo *|141636.6+422136 |RRC | 10.71 | 11.30 | |V |51308.71 | | 0.3125609 |36 |A7-F2 |00001 06286| +72115 |090030 |TW Boo *|144505.9+410144 |RRAB | 10.63 | 11.68 | |V |51559.98 | | 0.5322715 |13 |F0-F9 |00001 HIP | +74061 |090033 |TZ Boo *|150809.1+395813 |EW | 10.45 | 11.00 | 10.82 |V |54961.423 | | 0.2971613 | |G2V |00001 HIP | +70259 |090035 |UV Boo |142232.4+253300 |CST: | 8.13 | | |V | | | | |F5V | HIP | +68292 |090038 |UY Boo *|135846.3+125707 |RRAB | 10.23 | 11.40 | |V |53575.517 | | 0.6508964 |16 |A8-F0 |00001 HIP | +69826 |090041 |VW Boo *|141726.0+123403 |EW | 10.42 | 11.11 | 10.93 |V |52500.0099 | | 0.3423147 | |G5 |N0041 HIP | +67431 |090050 |XY Boo *|134911.6+201125 |EW | 10.29 | 10.76 | 10.73 |V |52500.4721 | | 0.3705754 | |F5V |N0041 HIP | +75373 |090053 |YZ Boo |152407.0+365201 |DSCT | 10.30 | 10.80 | |V |48500.0030 | | 0.1040920 |31 |A6-F1 |HIP HIP | +68064 |090054 |ZZ Boo *|135609.5+255507 |EA | 6.79 | 7.44 | 7.44 |V |52502.9212 | | 4.9917633 |06 |F2V |N0041 HIP | +73103 |090057 |AC Boo *|145628.3+462144 |EW | 10.14 | 10.67 | 10.67 |V |52500.3020 | | 0.3524485 | |F8Vn |N0041 HIP | +72342 |090059 |AE Boo *|144735.3+165044 |RRC | 10.44 | 10.88 | |V |52861.512 | | 0.3148958 |45 |F2 |00001 HIP | +76957 |090093 |BP Boo |154250.8+522139 |ACV | 5.34 |( 0.02 )| |U | | | 1.30488 | |B9pSiCr |06989 HIP | +71487 |090100 |BW Boo *|143708.8+355547 |EA | 7.13 | 7.46 | 7.17 |V |52501.026 | | 3.332816 |06 |F0V |N0041 HIP | +73454 |090101 |BX Boo *|150038.7+471639 |ACV | 6.33 | 6.41 | |V | | | 2.88813 | |B9VpSiCrSr |HIP HIP | +69038 |090102 |BY Boo |140755.8+435116 |LB: | 4.98 | 5.33 | |V | | | | |M4-4.5III |05055 HIP | +66538 |090103 |BZ Boo |133821.4+271714 |DSCTC: | 8.20 |( 0.03 )| |V | | | 0.1329 : | |A5 |00001 HIP | +72944 |090106 |CE Boo *|145429.2+160604 |UV | 11.35 | 11.68 | |B | | | | |M2Ve+M8Ve |07440 HIP | +69068 |090107 |CF Boo |140817.3+492729 |LB | 5.29 | 5.38 | |Hp| | | | |M2IIIab |HIP HIP | +71280 |090109 |CH Boo |143439.6+492206 |LB: | 5.83 | 5.87 | |Hp| | | | |M1IIIab |HIP HIP | +70236 |090110 |CI Boo |142214.0+292212 |LB | 6.23 | 6.57 | |Hp| | | | |M3III |HIP HIP | +71319 |090111 |CK Boo *|143503.8+090649 |EW | 8.95 | 9.25 | 9.22 |V |52500.029 | | 0.3551522 | |F8 |N0041 HIP | +71168 |090116 |CP Boo |143320.3+365733 |DSCTC: | 6.89 |( 0.02 )| |B | | | | |F8IV |08353 HIP | +69829 |090125 |CY Boo |141728.4+151548 |SRB | 5.74 | 5.90 | |V | | | 23. | |M3III |77065 HIP | +72848 |090128 |DE Boo *|145323.8+190910 |RS | 5.97 | 6.04 | |V | | | 10.39 | |K2V |73005 HIP | +66496 |090131 |DH Boo |133752.9+132648 |LB: | 7.90 | 8.24 | |Hp| | | | |M4 |HIP HIP | +66899 |090132 |DI Boo |134234.2+231907 |LB | 7.31 | 7.42 | |Hp| | | | |M0 |HIP HIP | +67010 |090133 |DK Boo |134359.1+214905 |LB | 8.02 | 8.77 | |Hp| | | | |K5 |HIP HIP | +67325 |090134 |DL Boo |134757.4+185640 |LB | 7.58 | 7.80 | |Hp| | | | |K5 |HIP HIP | +67449 |090135 |DM Boo *|134922.7+103527 |NL: | 8.73 | 8.94 | |Hp| | | | |G5 |HIP HIP | +67657 |090136 |DN Boo *|135142.0+141806 |EW | 11.03 | 11.32 | 11.28 |V |53803.760 | | 0.4475667 | |G0 |00001 HIP | +67917 |090137 |DO Boo |135437.5+121615 |LB: | 8.82 | 9.25 | |Hp| | | | |M5 |HIP HIP | +68913 |090138 |DP Boo |140629.6+165813 |LB: | 6.53 | 6.69 | |Hp| | | | |M1 |HIP HIP | +69405 |090139 |DQ Boo *|141236.2+451153 |BY: | 9.30 | 9.42 | |Hp| | | | |K0 |HIP HIP | +69695 |090140 |DR Boo |141558.2+342615 |LB | 8.06 | 8.60 | |Hp| | | | |K0 |HIP HIP | +69712 |090141 |DS Boo |141609.5+525617 |LB | 8.74 | 8.94 | |Hp| | | | |M2 |HIP HIP | +70198 |090142 |DT Boo |142144.6+435948 |ISB | 8.42 | 8.86 | |Hp| | | | |M5 |HIP HIP | +70240 |090143 |DU Boo *|142217.7+412702 |EB | 8.48 | 9.02 | 8.86 |V |52500.033 | | 1.055889 | |A2 |N0041 HIP | +70287 |090144 |DV Boo *|142249.7+145620 |EA | 7.53 | 7.76 | 7.69 |V |48045.254 | | 3.78264 |06 |A2 |79006 HIP | +70621 |090145 |DW Boo *|142647.4+082254 |EB: | 7.36 | 7.45 | 7.43 |V |55048.523 | | 0.9244464 | |A0 |00001 HIP | +70800 |090146 |DX Boo |142846.0+255114 |LB | 6.67 | 6.76 | |V | | | | |M1III |HIP HIP | +70876 |090147 |DY Boo |142938.6+190009 |LB | 9.26 | 9.47 | |Hp| | | | |M2 |HIP HIP | +70902 |090148 |DZ Boo |142953.9+193508 |LB: | 8.68 | 8.89 | |V | | | | |K5 |HIP HIP | +70999 |090149 |EE Boo |143114.3+453543 |LB | 8.49 | 8.69 | |Hp| | | | |K5 |HIP HIP | +71107 |090150 |EF Boo *|143230.5+504941 |EW/RS | 9.23 | 9.83 | 9.78 |V |52500.2231 | | 0.4205161 | |G5 |N0041 HIP | +71712 |090151 |EG Boo |144008.2+282536 |LB: | 7.96 | 8.06 | |Hp| | | | |K5 |HIP HIP | +71900 |090152 |EH Boo |144223.3+544812 |LB | 7.28 | 7.50 | |Hp| | | | |M2 |HIP HIP | +71965 |090153 |EI Boo |144306.9+425407 |SRD | 8.89 | 9.11 | |Hp| | | 35.32 | |K0 |HIP HIP | +72208 |090154 |EK Boo |144606.0+150754 |LB: | 5.33 | 5.71 | |Hp| | | | |M5IIIab |HIP HIP | +72391 |090155 |EL Boo *|144803.4+135641 |EW | 9.20 | 9.43 | 9.42 |V |54633.625 | | 0.4137642 | |F8 |00001 HIP | +72426 |090156 |EM Boo *|144832.2+244504 |EA | 8.98 | 9.32 | 9.23 |V |52736.755 | | 2.446228 |13 |G5 |00001 HIP | +72637 |090157 |EN Boo |145102.9+120951 |LB: | 7.67 | 7.85 | |Hp| | | | |M1 |HIP HIP | +72689 |090158 |EO Boo |145142.2+190521 |LB: | 8.45 | 8.60 | |Hp| | | | |M2III |HIP HIP | +72680 |090159 |EP Boo |145136.8+260735 |LB: | 9.56 | 9.68 | |Hp| | | | |M0 |HIP HIP | +72757 |090160 |EQ Boo *|145225.8+175723 |EA | 8.80 | 9.20 | 9.11 |V |47931.794 | | 5.43536 |04 |G5 |79193 HIP | +72838 |090161 |ER Boo |145318.0+355345 |LB: | 9.89 | 10.02 | |Hp| | | | |M0 |HIP HIP | +73034 |090162 |ES Boo |145533.6+352721 |LB: | 8.53 | 8.64 | |Hp| | | | |M0 |HIP HIP | +73346 |090163 |ET Boo *|145920.3+464904 |EB | 9.14 | 9.50 | 9.40 |Hp|54982.456 | | 0.6450412 | |F8 |00001 HIP | +73378 |090164 |EU Boo |145942.4+320351 |LB: | 10.09 | 10.25 | |Hp| | | | |M0 |HIP HIP | +73589 |090165 |EV Boo |150230.7+314102 |LB | 6.42 | 6.61 | |Hp| | | | |M5 |HIP HIP | +73612 |090166 |EW Boo *|150246.1+375436 |EA | 10.31 | 10.69 | 10.34 |Hp|52500.229 | | 0.9063492 |20 |A0 |N0041 HIP | +73662 |090167 |EX Boo |150327.3+252538 |SRB | 9.4 | 10.0 | |V | | | 52. | |M5 |00001 HIP | +73643 |090168 |EY Boo |150310.2+431115 |LB: | 9.46 | 9.72 | |Hp| | | | |M5 |HIP HIP | +74214 |090169 |EZ Boo |150957.0+202526 |SRB | 9.72 | 9.88 | |V | | | 195. | |M2 |00001 HIP | +74253 |090170 |FF Boo |151031.5+114025 |LB: | 6.93 | 7.02 | |Hp| | | | |M2.5III |HIP HIP | +74337 |090171 |FG Boo |151135.0+495411 |LB | 7.35 | 8.06 | |Hp| | | | |M0 |HIP HIP | +74440 |090172 |FH Boo |151246.8+441617 |LB: | 9.18 | 9.35 | |Hp| | | | |M0 |HIP HIP | +75203 |090173 |FI Boo *|152206.0+511055 |EW | 9.55 | 9.68 | 9.66 |V |52500.337 | | 0.390001 | |G3V |N0041 HIP | +75641 |090174 |FK Boo |152714.9+503710 |LPB | 7.79 | 7.83 | |Hp| | | 1.5129 | |B9 |HIP HIP | +75720 |090175 |FL Boo *|152809.9+382138 |LB: | 9.40 | 9.55 | |Hp| | | | |K0 |HIP HIP | +76036 |090176 |FM Boo |153145.0+434513 |LB: | 10.65 | 10.83 | |Hp| | | | |M0 |HIP HIP | +76042 |090177 |FN Boo |153146.8+470325 |BY: | 10.47 | 10.76 | |Hp| | | | |K6 |HIP HIP | +76684 |090178 |FO Boo |153932.1+424149 |LB: | 7.65 | 7.76 | |Hp| | | | |M1 |HIP HIP | +76970 |090179 |FP Boo *|154300.3+431555 |EW | 10.14 | 10.44 | 10.38 |Hp|52500.311 | | 0.640458 | |A5 |N0041 HIP | +67481 |090180 |FQ Boo |134944.1+082431 |DSCTC | 6.59 |( 0.02 b )| |V | | | 0.049 | |A2V |75040 HIP | +68660 |090181 |FR Boo |140315.7+243551 |RS | 9.26 | 9.30 | |B | | | 96. | |K3III |73005 HIP | +68879 |090189 |FZ Boo |140612.9+104934 |LB: | 7.62 | 7.72 | |V | | | | |M0III |77023 HIP | +69410 |090207 |GY Boo |141241.6+234852 |BY | 8.88 |( 0.03 )| |V | | | 9.52 : | |K0V |78018 HIP | +70142 |090208 |GZ Boo |142108.9+372404 |BY | 8.90 |( 0.04 )| |V | | | 7.52 | |K2V |78018 HIP | +70826 |090211 |HK Boo *|142901.2+120720 |RS | 8.43 |( 0.09 )| |V | | | 17.62 | |G5IVe |78018 HIP | +70828 |090212 |HL Boo |142902.8+110234 |EA: | 7.61 |( 0.03 )| |V |51327.5 | | 26.68 |15 : |K0 |78018 HIP | +70836 |090213 |HM Boo |142909.3+381640 |E:/RS | 9.17 |( 0.02 )| |V |51339. | | 21.84 | |K3V |78018 HIP | +71395 |090214 |HN Boo |143600.6+094448 |BY | 7.48 |( 0.04 )| |V | | | 11.54 | |K0V |78018 HIP | +72200 |090215 |HO Boo |144603.1+273044 |BY | 7.98 |( 0.02 )| |V | | | 93. : | |K2V |78018 HIP | +72567 |090216 |HP Boo |145015.8+235443 |BY | 5.98 | 6.01 | |Hp| | | 7.85 | |G2V |78005 HIP | +71075 |099003 |gam Boo *|143204.7+381830 |DSCTC | 3.02 | 3.07 | |V | | | 0.2903137 | |A7III |03236 HIP | +69713 |099009 |iot Boo |141609.9+512202 |DSCTC | 4.73 | 4.78 | |V | | | 0.027 | |A7V |N0219 HIP | +72659 |099014 |ksi Boo *|145123.4+190602 |BY | 4.52 | 4.67 | |V | | | 10.137 | |G8Ve+K4Ve |03866 HIP | +73695 |099109 |i Boo *|150347.3+473915 |EW | 4.70 | 4.86 | 4.84 |V |52500.1807 | | 0.2678190 | |G2V+G2V |N0041 HIP | +21766 |100001 |R Cae |044030.1-381407 |M | 6.7 | 13.7 | |V |40645. | | 390.95 |41 |M6e |00001 00002| +22247 |100003 |T Cae |044718.9-361234 |SR | 9.0 | 10.8 | |p |27840. | | 156. | |C6,4(N4) |00016 03389| +23596 |100007 |X Cae *|050426.2-354218 |DSCTC | 6.28 | 6.39 | |V |39395.570 | | 0.1352227 |50 |F1III-F2IV |06451 CoD | +22674 |100009 |Z Cae |045235.4-430338 |SR | 7.84 | 7.99 | |V |40667. | | 52. | |M2III |05828 CoD | +20665 |100012 |RT Cae |042538.7-380334 |EW: | 10.00 | 10.21 | |Hp| | | | | |HIP HIP | +20670 |100013 |RU Cae |042540.4-395009 |SRB | 8.08 | 8.24 | |Hp| | | | | |HIP HIP | +20856 |100014 |RV Cae |042809.5-415735 |LB | 6.44 | 6.56 | |Hp| | | | | |HIP HIP | +20961 |100015 |RW Cae |042940.9-482220 |SRB: | 8.81 | 8.91 | |Hp| | | | | |HIP HIP | +21063 |100016 |RX Cae *|043053.3-411027 |DSCTC | 7.07 | 7.16 | |Hp| | | | | |HIP HIP | +21190 |100017 |RY Cae |043235.4-401230 |LB: | 8.38 | 8.48 | |Hp| | | | | |HIP HIP | +21213 |100018 |RZ Cae |043301.5-381700 |EA: | 7.68 | 7.82 | |Hp| | | | | |HIP HIP | +21339 |100019 |SS Cae |043444.9-420146 |LB: | 8.23 | 8.33 | |Hp| | | | | |HIP HIP | +22837 |100020 |ST Cae |045449.4-293342 |LB: | 9.29 | 9.46 | |Hp| | | | | |HIP HIP | +22912 |100021 |SU Cae |045550.0-274217 |LC: | 8.51 | 8.71 | |Hp| | | | | |HIP HIP | +23321 |100022 |SV Cae |050056.5-420011 |SRB | 7.74 | 7.86 | |Hp| | | | | |HIP HIP | +26753 |110002 |S Cam |054102.5+684755 |SRA | 7.7 | 11.6 | |V |43360. | | 327.26 |51 |C7,3e(R8e) |00001 00002| +17257 |110004 |U Cam *|034148.2+623854 |SRB | 11.0 | 12.8 | |p |43060. | | | |C3,9-C6,4e(N5) | 00002| +22127 |110007 |X Cam |044542.2+750604 |M | 7.4 | 14.2 | |V |44679. | | 143.56 |49 |K8-M8e |00001 00002| +37440 |110008 |Y Cam *|074111.0+760426 |EA+DSCTC | 10.50 | 12.24 | 10.60 |V |42961.92757 | | 3.3056244 |16 *|A8V |08593 05177| +26247 |110010 |RR Cam |053527.2+722758 |SRA | 9.5 | 11.3 | |V |37750. | | 123.88 |44 |M6 |00001 01078| +43438 |110011 |RS Cam *|085049.6+785741 |SRB | 7.9 | 9.7 | |V |27143. | | 88.6 |45 |M4III |00310 00102| +35681 |110013 |RU Cam *|072144.1+694015 |CWA | 8.10 | 9.79 | |V | | | 22. |35 |C0,1-C3,2e(K0-R0)| 02301| +21046 |110014 |RV Cam |043041.7+572442 |SRB | 9.3 | 10.6 | |p |28861. | | 101. | |M4II-III-M6 |03246 01078| +18260 |110015 |RW Cam *|035421.8+583912 |DCEP | 8.20 | 9.10 | |V |37389.57 | | 16.41437 |34 |F8Ib(F5-G1)+A: |03167 07170| +19057 |110016 |RX Cam *|040458.5+583935 |DCEP | 7.30 | 8.07 | |V |42766.583 | | 7.912024 |28 |F6Ib-G2Ib |08632 05186| +21059 |110017 |RY Cam *|043050.1+642630 |SRB | 8.9 | 11.0 | |p |39238. | | 135.75 | |M3III |01078 01078| +35197 |110019 |SS Cam *|071624.7+731957 |EA/SD/RS | 10.05 | 10.62 | 10.35 : |V |35223.672 | | 4.8242541 |20 |G1III+F5V |08623 GSC | +22552 |110020 |ST Cam |045113.4+681008 |SRB | 9.2 | 12.0 | |p | | | 300. : | |C5,4(N5) | 01078| +32015 |110022 |SV Cam *|064119.1+821602 |EA/DW/RS | 8.40 |( 0.71 )|( 0.15 :pg)|V |42594.61518 | | 0.59306995 |17 *|G5V+G3V |08593 00010| +19270 |110026 |SZ Cam *|040749.3+621959 |EA/DM | 7.0 | 7.29 | 7.24 |B |41665.2516 | | 2.6985439 |17 |O9.5V+B0 |04226 02071| +27971 |110028 |TU Cam *|055457.8+595318 |EB/DM | 5.12 | 5.29 | 5.22 |V |38051.375 | | 2.933241 | |A0IV-V |05266 BD | +19115 |110035 |UV Cam |040553.9+614740 |SRB | 7.5 | 8.1 | |V | | | 294. : | |C5,3(R8) |01078 01078| +39009 |110038 |UY Cam *|075858.9+724715 |RRC | 11.33 | 11.66 | |V |35565.239 | | 0.26704234 |45 |A3III-A6III |03258 00675| +36547 |110044 |VZ Cam |073104.5+822441 |SR | 4.80 | 4.96 | |V | | | 23.7 | |M4IIIa |02082 00462| +19340 |110049 |XX Cam *|040838.8+532139 |RCB: | 8.09 | 9.8 | |B | | | | |G1I(C0-2,0) |02086 08129| +20027 |110054 |ZZ Cam |041743.9+622048 |LB | 8.7 | 9.3 | |p | | | | |M0-M5 |01078 01078| +35045 |110055 |AA Cam |071452.1+684815 |LB | 9.0 | 9.6 | |p | | | | |M5(S) |00333 BD | +25740 |110072 |AS Cam *|052946.9+692945 |EA/DM | 8.57 | 9.19 | 8.97 |V |40204.5137 | | 3.4309714 |08 |B8V+B9 |05267 BD | +32549 |110076 |AW Cam *|064728.8+693745 |EB/KE | 8.22 | 8.66 | 8.36 |V |38738.452 | | 0.7713468 | |A0V | BD | +39261 |110077 |AX Cam *|080142.5+601928 |ACV | 5.95 | 6.08 | |V |41701.41 | | 8.0278 |40 |A2p(Sr-Cr-Eu) |05268 BD | +37934 |110081 |BC Cam |074627.4+624950 |ACV | 6.43 | 6.48 | |V |41254.08 | | 4.285 | |F0p(Sr-Cr-Eu) |07441 BD | +17296 |110082 |BD Cam |034209.3+631301 |LB | 5.04 | 5.17 | |V | | | | |S5,3(M4III) |01371 BD | +17884 |110083 |BE Cam |034931.3+653134 |LC | 4.35 | 4.48 | |V | | | | |M2II |04590 BD | +15520 |110088 |BK Cam *|031959.3+653908 |GCAS | 4.78 | 4.89 | |V | | | | |B2Ve | BD | +23743 |110090 |BM Cam *|050612.1+590117 |RS | 6.18 |( 0.140 )| |V |44288.8 | | 82.8 | |K0III |08737 BD | +24254 |110091 |BN Cam |051222.5+735648 |ACV | 5.3 |( 0.05 )| |V |41252.91 | | 0.7325 | |A0p(Si) |08488 BD | +25156 |110096 |BS Cam |052259.9+692405 |DSCTC | 8.0 |( 0.05 )| |V | | | | | |67044 BD | +23734 |110099 |BV Cam |050608.4+585821 |GCAS | 5.08 |( 0.07 )| |V | | | | | |68046 BD | +16281 |110106 |CE Cam |032954.7+585244 |ACYG | 4.54 |( 0.03 )| |V | | | | | |73044 BD | +23768 |110111 |CK Cam |050631.6+552113 |DCEP | 7.19 | 7.80 | |V | | | | | |73050 BD | +24760 |110112 |CL Cam |051831.1+755649 |RS | 7.55 |( 0.13 )| |V | | | | | |73005 BD | +34101 |110113 |CM Cam |070415.1+752441 |FKCOM | 6.96 |( 0.05 )| |V | | | | | |73005 BD | +59504 |110115 |CO Cam |121211.9+773659 |ELL | 5.14 |( 0.07 )| |V | | | | | |73052 BD | +15321 |110116 |CP Cam |031739.2+641220 |EB | 10.75 | 11.23 | |Hp| | | | | |HIP HIP | +15890 |110117 |CQ Cam |032440.6+643510 |LC | 5.15 | 5.27 | |Hp| | | | | |HIP HIP | +16195 |110118 |CR Cam |032839.2+622935 |BE: | 8.22 | 8.53 | |Hp| | | | | |HIP HIP | +16228 |110119 |CS Cam |032904.1+595625 |ACYG: | 4.29 | 4.34 | |Hp| | | | | |HIP HIP | +16941 |110120 |CT Cam |033801.0+551015 |BE | 7.70 | 7.83 | |Hp| | | | | |HIP HIP | +17333 |110121 |CU Cam |034235.9+771013 |EA | 7.94 | 8.18 | |Hp| | | | | |HIP HIP | +17261 |110122 |CV Cam |034149.8+531737 |EB | 9.42 | 9.66 | |Hp| | | | | |HIP HIP | +17361 |110123 |CW Cam |034300.3+573356 |IA: | 8.31 | 8.52 | |Hp| | | | | |HIP HIP | +17590 |110124 |CX Cam |034606.2+535419 |SRB: | 7.79 | 7.97 | |Hp| | | | | |HIP HIP | +18151 |110125 |CY Cam |035249.0+532901 |LPB: | 8.43 | 8.51 | |Hp| | | | | |HIP HIP | +18593 |110126 |CZ Cam *|035843.6+690100 |* | 9.52 | 9.72 | |Hp| | | | | |HIP HIP | +18585 |110127 |DD Cam |035838.2+535919 |EB | 7.04 | 7.23 | |Hp| | | | | |HIP HIP | +19008 |110128 |DE Cam |040421.6+531945 |BE | 8.16 | 8.33 | |Hp| | | | | |HIP HIP | +19105 |110129 |DF Cam |040542.3+570737 |SR: | 9.01 | 9.35 | |Hp| | | | | |HIP HIP | +19764 |110130 |DG Cam |041415.2+663253 |LB: | 8.34 | 8.47 | |Hp| | | | | |HIP HIP | +20004 |110131 |DH Cam |041721.1+571042 |ACV | 6.70 | 6.74 | |Hp| | | | | |HIP HIP | +20896 |110132 |DI Cam |042842.1+794207 |EA | 7.85 | 8.09 | |Hp| | | | | |HIP HIP | +20779 |110133 |DK Cam |042703.5+714653 |EA | 7.60 | 7.71 | |Hp| | | | | |HIP HIP | +21148 |110134 |DL Cam |043201.8+535439 |BCEP: | 5.81 | 5.85 | |Hp| | | | | |HIP HIP | +21233 |110135 |DM Cam |043316.9+524818 |LB | 7.15 | 7.23 | |Hp| | | | | |HIP HIP | +21913 |110136 |DN Cam |044246.2+725842 |EW | 8.28 | 8.74 | |Hp| | | | | |HIP HIP | +22383 |110137 |DO Cam |044905.8+613027 |SRB | 6.91 | 7.25 | |Hp| | | | | |HIP HIP | +22498 |110138 |DP Cam |045025.1+631959 |E: | 9.90 | 10.44 | |Hp| | | | | |HIP HIP | +22795 |110139 |DQ Cam |045414.8+583813 |E: | 8.12 | 8.23 | |Hp| | | | | |HIP HIP | +23033 |110140 |DR Cam |045709.6+590713 |SRB | 6.46 | 6.63 | |Hp| | | | | |HIP HIP | +23440 |110141 |DS Cam |050218.9+634613 |LB: | 8.86 | 8.96 | |Hp| | | | | |HIP HIP | +24390 |110142 |DT Cam |051357.7+563029 |E: | 8.17 | 8.23 | |Hp| | | | | |HIP HIP | +24653 |110143 |DU Cam |051723.4+620049 |SRB | 8.60 | 9.18 | |Hp| | | | | |HIP HIP | +24836 |110144 |DV Cam |051927.9+580703 |EA | 6.10 | 6.30 | |Hp| | | | | |HIP HIP | +25233 |110145 |DW Cam |052345.5+684114 |BY: | 10.96 | 11.56 | |Hp| | | | | |HIP HIP | +25229 |110146 |DX Cam |052344.2+604316 |LB: | 8.90 | 9.18 | |Hp| | | | | |HIP HIP | +26758 |110147 |DY Cam |054103.7+785842 |LB: | 9.28 | 9.46 | |Hp| | | | | |HIP HIP | +26517 |110148 |DZ Cam |053820.6+692358 |LB: | 8.49 | 8.62 | |Hp| | | | | |HIP HIP | +27199 |110149 |EE Cam |054555.0+631747 |DSCTC | 7.78 | 7.86 | |Hp| | | | | |HIP HIP | +27500 |110150 |EF Cam |054924.9+780324 |LB: | 8.85 | 8.96 | |Hp| | | | | |HIP HIP | +28368 |110151 |EG Cam |055937.8+583535 |BY: | 10.30 | 10.54 | |Hp| | | | | |HIP HIP | +28583 |110152 |EH Cam |060201.3+694757 |LB: | 9.41 | 9.59 | |Hp| | | | | |HIP HIP | +28607 |110153 |EI Cam |060216.3+665359 |LB: | 7.12 | 7.16 | |Hp| | | | | |HIP HIP | +29436 |110154 |EK Cam |061206.8+625809 |LB: | 8.74 | 8.84 | |Hp| | | | | |HIP HIP | +30785 |110155 |EL Cam |062804.9+744435 |LB: | 9.03 | 9.60 | |Hp| | | | | |HIP HIP | +31174 |110156 |EM Cam |063229.4+665453 |LB: | 9.13 | 9.31 | |Hp| | | | | |HIP HIP | +31259 |110157 |EN Cam |063322.5+630821 |ACV: | 8.99 | 9.04 | |Hp| | | | | |HIP HIP | +32085 |110158 |EO Cam |064211.3+742851 |SRB | 8.88 | 9.23 | |Hp| | | | | |HIP HIP | +32647 |110159 |EP Cam |064837.5+765924 |SRB | 7.61 | 7.86 | |Hp| | | | | |HIP HIP | +32653 |110160 |EQ Cam |064840.5+644516 |SRB | 7.94 | 8.08 | |Hp| | | | | |HIP HIP | +33573 |110161 |ER Cam |065835.1+705451 |LB: | 9.04 | 9.16 | |Hp| | | | | |HIP HIP | +34641 |110162 |ES Cam |071029.9+633709 |LB | 8.72 | 8.90 | |Hp| | | | | |HIP HIP | +35200 |110163 |ET Cam |071627.9+792845 |LB: | 9.51 | 9.63 | |Hp| | | | | |HIP HIP | +35247 |110164 |EU Cam |071700.2+740841 |SRB | 9.24 | 9.54 | |Hp| | | | | |HIP HIP | +35690 |110165 |EV Cam |072150.7+750522 |ACV: | 6.95 | 6.99 | |Hp| | | | | |HIP HIP | +36213 |110166 |EW Cam |072728.0+724213 |RRAB | 9.33 | 9.83 | |Hp| | | | | |HIP HIP | +36578 |110167 |EX Cam |073124.3+660805 |LB: | 7.24 | 7.34 | |Hp| | | | | |HIP HIP | +36945 |110168 |EY Cam |073541.5+672710 |SRB: | 8.52 | 8.80 | |Hp| | | | | |HIP HIP | +36983 |110169 |EZ Cam |073604.4+662813 |SRB | 7.17 | 7.31 | |Hp| | | | | |HIP HIP | +37961 |110170 |FF Cam |074652.9+814057 |BE: | 7.71 | 8.02 | |Hp| | | | | |HIP HIP | +37595 |110171 |FG Cam |074250.5+610927 |SRD | 7.97 | 8.11 | |Hp| | | | | |HIP HIP | +38900 |110172 |FH Cam |075739.8+773435 |EW | 6.91 | 6.97 | |Hp| | | | | |HIP HIP | +38971 |110173 |FI Cam |075828.4+671854 |LB: | 8.88 | 9.00 | |Hp| | | | | |HIP HIP | +39755 |110174 |FK Cam |080732.0+604233 |SRB | 8.90 | 9.38 | |Hp| | | | | |HIP HIP | +43431 |110175 |FL Cam |085046.6+780955 |LB | 6.75 | 7.03 | |Hp| | | | | |HIP HIP | +44943 |110176 |FM Cam |090915.8+745321 |SRB: | 9.07 | 9.29 | |Hp| | | | | |HIP HIP | +46005 |110177 |FN Cam |092258.0+771311 |EW | 8.60 | 9.06 | |Hp| | | | | |HIP HIP | +47833 |110178 |FO Cam |094500.1+851440 |LB: | 10.08 | 10.22 | |Hp| | | | | |HIP HIP | +56328 |110179 |FP Cam |113252.4+795500 |LB: | 8.15 | 8.28 | |Hp| | | | | |HIP HIP | +57923 |110180 |FQ Cam |115247.4+765920 |LB: | 9.36 | 9.53 | |Hp| | | | | |HIP HIP | +58545 |110181 |FR Cam |120018.6+805112 |LB | 6.16 | 6.37 | |Hp| | | | | |HIP HIP | +68832 |110182 |FS Cam |140538.6+813624 |LB | 8.81 | 8.99 | |Hp| | | | | |HIP HIP | +19404 |110199 |GQ Cam |040923.3+570528 |ACYG | 8.13 | 8.20 | |Hp| | | | | |75030 BD | +16974 |110259 |KZ Cam |033819.7+565558 |ACV | 6.28 | 6.30 | |V | | | | | |77029 DM | +18012 |110275 |MM Cam *|035100.5+690610 |* | 7.11 |( 0.04 )| |V | | | | |K0III |78018 DM | +21276 |110281 |MS Cam |043354.3+643800 |BY | 7.75 |( 0.03 )| |V | | | 7.604 | |G0Ve |78018 DM | +60725 |110285 |MW Cam |122643.7+812826 |DSCT | 9.25 | 9.36 | |Hp| | | 0.132792 | |F0 |78157 DM | +40534 |120001 |R Cnc *|081633.8+114335 |M | 6.07 | 11.8 | |V |44231. | | 361.60 |47 |M6e-M9e |00001 00002| +42853 |120002 |S Cnc *|084356.1+190203 |EA/DS | 8.29 | 10.25 | 8.39 |V |36985.029 | | 9.4845516 |08 |B9V+G8IV |06111 00462| +43905 |120003 |T Cnc |085640.1+195057 |SRB | 7.6 | 10.5 | |V | | | 482. |35 |C3,8-C5,5(R6-N6) |00001 00002| +40977 |120005 |V Cnc *|082142.9+171707 |M | 7.5 | 13.9 | |V |43485. | | 272.13 |46 |S0e-S7,9e |00001 00002| +44995 |120006 |W Cnc |090952.6+251454 |M | 7.4 | 14.4 | |V |43896. | | 393.22 |40 |M6.5e-M9e |00001 00002| +43811 |120007 |X Cnc |085522.9+171353 |SRB | 5.6 | 7.5 | |V |43631. | | 195. : | |C5,4(N3) |05628 00097| +41028 |120009 |Z Cnc |082225.3+145932 |SRB | 9.4 | 10.7 | |p |37026. | | 104. : | |M6III |02079 BD | +45058 |120011 |RS Cnc *|091038.8+305747 |SRC: | 6.2 | 7.7 | |p | | | 120. : | |M6eIb-II(S) | 06225| +44050 |120012 |RT Cnc *|085816.0+105043 |SRB | 7.12 | 8.6 | |V | | | 60. : | |M5III |08643 00119| +42303 |120013 |RU Cnc *|083730.1+233342 |EA/DS/RS | 10.10 | 11.25 | 10.21 : |V |22650.720 | | 10.172988 |08 |F9V:+G9V: |02087 00537| +45709 |120015 |RW Cnc *|091906.0+290356 |RRAB | 10.7 | 12.6 | |p |39556.314 | | 0.547199 |13 |A5 |05238 02088| +40388 |120016 |RX Cnc |081443.5+244405 |SRB | 9.2 | 11.3 | |p | | | 120. : | |M8 |02079 BD | +42432 |120018 |RZ Cnc *|083908.5+314745 |EA/GS/RS | 8.67 | 10.03 | 9.21 |V |18702.531 | | 21.642998 |15 |K2III+K4III |07194 BD | +41936 |120027 |TT Cnc *|083255.2+131129 |RRAB | 10.72 | 11.78 | |V |39944.367 | | 0.5634494 |18 |A9-F4 |05271 02111| +40351 |120029 |TV Cnc |081418.8+083425 |M | 9.5 |< 14.5 | |V |52984. | | 263. | |M7 |00001 00491| +39341 |120034 |UU Cnc *|080230.9+151042 |EB/GS | 8.68 | 9.35 | 9.2 |V |41072.03 | | 96.71 | |K4III |03257 BD | +42594 |120044 |VZ Cnc *|084052.1+094927 |DSCT | 7.18 | 7.91 | |V |39897.4246 | | 0.178363704 |26 |A7III-F2III |05272 06286| +44349 |120047 |WY Cnc *|090155.5+264123 |EA/SD/RS | 9.51 | 10.14 | 9.60 |V |26352.3895 | | 0.82937122 |16 |G5V |03261 02378| +42917 |120087 |BI Cnc *|084445.0+100454 |ACV | 5.58 | 5.71 | |V |41616.50 | | 4.2359 | |A0p(Si-Cr) |04479 BD | +39659 |120089 |BL Cnc |080618.4+223808 |LB | 5.97 | 6.04 | |V | | | | |M3III |05841 BD | +40240 |120090 |BM Cnc *|081308.9+293924 |ACV | 5.53 | 5.65 | |V |39482.9 | | 4.116 | |B9p(Si-Cr) |05390 BD | +43575 |120092 |BO Cnc |085228.6+281533 |LB: | 5.9 | 6.37 | |V | | | | |M3III |05840 BD | +41400 |120093 |BP Cnc |082643.9+123917 |SRB | 5.41 | 5.75 | |V | | | 40. : | |M3III |06994 BD | +42319 |120095 |BR Cnc *|083740.7+193106 |DSCTC | 8.26 |( 0.02 )| |V | | | 0.038 | |F0Vn |06838 08667| +42485 |120097 |BT Cnc *|083942.7+194643 |DSCTC | 6.66 |( 0.06 )| |V | | | 0.10228 | |F0III |04482 08667| +42705 |120102 |BY Cnc *|084210.8+185604 |DSCTC | 7.91 |( 0.01 )| |V | | | 0.058 | |A7Vn |06838 08667| +41824 |120121 |CU Cnc *|083137.6+192340 |UV | 10.9 | 13.9 | |U | | | | |M5Ve |07800 07477| +44862 |120123 |CW Cnc |090826.5+131314 |LB | 10.0 | 11.2 | |p | | | | |M6 |02609 BD | +41574 |120124 |CX Cnc |082836.8+240842 |DSCTC | 6.10 |( 0.025 )| |V | | | 0.096 | |A5 |08290 BD | +42600 |120159 |EP Cnc |084056.3+193449 |DSCTC | 6.76 |( 0.03 )| |V | | | | | |70016 BD | +41875 |120173 |FI Cnc |083217.3+291910 |FKCOM | 7.28 |( 0.17 )| |V | | | | | |73005 BD | +41951 |120174 |FK Cnc |083305.0+111605 |BY: | 7.94 |( 0.03 )| |V | | | | | |73005 BD | +42874 |120175 |FL Cnc |084414.8+320346 |DSCTC | 7.03 |( 0.06 )| |V | | | | | |73053 BD | +39297 |120178 |FO Cnc |080205.4+245835 |LB: | 8.60 | 8.77 | |Hp| | | | | |HIP HIP | +41749 |120180 |FQ Cnc |083048.8+142552 |SRB | 8.40 | 8.62 | |Hp| | | | | |HIP HIP | +41889 |120181 |FR Cnc |083230.5+154926 |BY: | 10.28 | 10.47 | |Hp| | | | | |HIP HIP | +41978 |120182 |FS Cnc |083323.1+202324 |LB: | 8.60 | 8.81 | |Hp| | | | | |HIP HIP | +42826 |120183 |FT Cnc |084334.9+311902 |SRD | 8.43 | 8.63 | |Hp| | | | | |HIP HIP | +42921 |120184 |FU Cnc |084450.3+073717 |SRB: | 9.01 | 9.11 | |Hp| | | | | |HIP HIP | +43199 |120185 |FV Cnc *|084801.7+184038 |UG: | 10.44 | 10.62 | |Hp| | | | | |HIP HIP | +43245 |120186 |FW Cnc |084837.0+102559 |LB | 6.91 | 7.05 | |Hp| | | | | |HIP HIP | +43251 |120187 |FX Cnc |084839.5+123249 |SRB | 6.63 | 6.77 | |Hp| | | | | |HIP HIP | +43967 |120188 |FY Cnc |085713.8+305838 |SRB | 8.71 | 8.97 | |Hp| | | | | |HIP HIP | +44126 |120189 |FZ Cnc |085910.7+180806 |SRB | 6.28 | 6.38 | |Hp| | | | | |HIP HIP | +44222 |120190 |GG Cnc |090025.9+242948 |LB: | 8.24 | 8.36 | |Hp| | | | | |HIP HIP | +44530 |120191 |GH Cnc |090422.5+291605 |SRB | 7.59 | 7.72 | |Hp| | | | | |HIP HIP | +44718 |120192 |GI Cnc |090643.4+242321 |SRB | 8.58 | 8.73 | |Hp| | | | | |HIP HIP | +44773 |120193 |GK Cnc |090730.4+163637 |LB: | 9.10 | 9.20 | |Hp| | | | | |HIP HIP | +45194 |120194 |GL Cnc |091235.3+065629 |LB: | 9.43 | 9.53 | |Hp| | | | | |HIP HIP | +45295 |120195 |GM Cnc |091350.1+141239 |LB: | 8.61 | 8.73 | |Hp| | | | | |HIP HIP | +45483 |120196 |GN Cnc |091604.4+200423 |RR: | 8.80 | 8.89 | |Hp| | | | | |HIP HIP | +45597 |120197 |GO Cnc |091738.1+164218 |EA | 8.40 | 8.66 | |Hp| | | | | |HIP HIP | +44303 |120212 |HL Cnc |090122.8+104359 |BY | 8.83 | 8.87 | |V | | | | | |77080 DM | +42253 |120215 |HO Cnc |083655.8+231448 |BY | 8.73 |( 0.03 )| |V | | | 5.21 : | |K5Ve |78018 DM | +43422 |120216 |HP Cnc |085042.2+075152 |BY | 9.08 |( 0.02 )| |V | | | 11.14 : | |K0V |78018 DM | +43670 |120227 |II Cnc |085349.9+265448 |BY | 8.46 |( 0.05 )| |V | | | 8.19 | |G8V |78018 DM | +43751 |120228 |IK Cnc |085441.5+163640 |BY | 8.32 |( 0.03 )| |V | | | 9.45 : | |G5V |78018 DM | +45617 |120233 |IP Cnc |091753.5+283338 |BY | 7.20 |( 0.02 )| |V | | | 43.4 | |K3V |78018 DM | +40361 |120249 |KP Cnc |081427.1+204228 |DSCTC | 7.30 |( 0.04 )| |B | | | 0.12 : | |F2 |80299 HIP | NL80_2 +42753 |120257 |KX Cnc *|084246.2+315145 |EA | 7.25 |( 0.71 I)|( 0.49I )|V |54182.8146 | | 31.21985 |01 |F8 |80310 HIP | NL80_2 +44798 |129010 |kap Cnc *|090744.8+104006 |ACV: | 5.22 | 5.27 | |V |39633.5 | | 5.0035 | |B9IIIp(Hg-Mn) |05339 BD | +67410 |130001 |R CVn *|134857.0+393233 |M | 6.5 | 12.9 | |V |43586. | | 328.53 |46 |M5.5e-M9e |00001 00002| +64488 |130002 |S CVn |131306.4+372237 |CST | 9.75 | | |V | | | | |K3III |01701 07204| +61009 |130003 |T CVn *|123012.4+313012 |M: | 7.6 | 12.6 | |V |42784. | | 290.09 |42 |M6.5e |00001 00002| +65006 |130005 |V CVn *|131927.8+453138 |SRA | 6.52 | 8.56 | |V |43929. | | 191.89 |50 |M4e-M6eIIIa: |00001 00002| +68908 |130006 |W CVn *|140628.0+374942 |RRAB | 10.03 | 10.96 | |V |21402.4238 | | 0.551759337 |15 |F0-F7 |07366 00884| +62223 |130008 |Y CVn *|124507.8+452625 |SRB | 7.4 | 10.0 | |p | | | 157. | |C5,4J(N3) |00650 06225| +64293 |130011 |RS CVn *|131036.9+355606 |EA/AR/RS | 7.93 | 9.14 | 8.19 |V |22811.6995 | | 4.7978870 |11 |F4IV-V+K0IVe |08623 00462| +68357 |130015 |RW CVn |135933.5+371150 |SRB | 10.1 | 11.2 | |p | | | 100. : | |M7III |00231 BD | +67087 |130018 |RZ CVn *|134503.0+323917 |RRAB | 10.88 | 11.92 | |V |40343.851 | | 0.5674110 |17 |A8 |00001 03272| +67354 |130019 |SS CVn |134815.9+395403 |RRAB | 11.52 | 12.27 | |V |39622.705 | | 0.4785210 |15 |A0 |00001 03272| +68188 |130020 |ST CVn *|135734.1+295129 |RRC | 11.04 | 11.60 | |V |40390.467 | | 0.329045 |43 |A1 |05839 03272| +64267 |130025 |SY CVn |131020.3+470228 |LB | 11. | 12. | |p | | | | |M8 |00922 BD | +63389 |130027 |TT CVn |125922.6+374904 |SRB | 10.4 | 11.11 | |B | | | 105. | |C3,5CH(R6p) |07213 BD | +63024 |130028 |TU CVn |125456.5+471148 |SRB | 5.55 | 6.6 | |V | | | 50. | |M5III |05429 BD | +60564 |130038 |UY CVn |122453.8+453505 |LB | 10.6 | 11.8 | |p | | | | |M5III |04022 BD | +61029 |130039 |UZ CVn |123027.7+403032 |RRAB | 11.3 | 12.0 | |p |26427.3806 | | 0.6977829 |16 |A5-F2 |04171 00819| +65913 |130043 |VY CVn |133043.9+374630 |LB | 10.38 | 11.4 | |B | | | | |M5 |04022 BD | +66017 |130044 |VZ CVn *|133203.4+283505 |EA/DW | 9.17 | 9.72 | 9.54 |V |38880.5804 | | 0.84246163 |17 *|F2V |05984 00462| +60467 |130063 |AI CVn *|122347.0+423234 |DSCT | 5.89 | 6.15 | |V | | | 0.2085 | |F3IV |04652 BD | +64844 |130068 |AO CVn |131732.5+403421 |DSCTC | 4.70 | 4.75 | |V |44381.6675 | | 0.12168 |50 |F3IIIp |04677 BD | +67665 |130076 |AW CVn |135147.5+342639 |SR: | 4.72 | 4.81 | |V | | | | |K5III |04513 BD | +61748 |130077 |AX CVn |123916.9+355707 |ACV | 6.32 | 6.55 | |V | | | 4900. | |A0p(Sr-Cr-Eu) |06631 BD | +63253 |130084 |BF CVn *|125740.3+351330 |BY+UV: | 10.50 | 10.60 | |V | | | 3.17 | |M1.5Ve |02195 06874| +66257 |130086 |BH CVn *|133447.8+371057 |RS | 4.94 | 5.01 | |V |43639.52 | | 2.6131738 | |F2IV |08365 BD | +63701 |130087 |BI CVn *|130316.4+363701 |EW/KW | 10.26 | 10.71 | 10.70 |V |44365.2497 | | 0.38416 | |G0 |03876 BD | +64906 |130088 |BK CVn |131814.5+494055 |ACV | 5.13 |( 0.04 )| |V | | | | | |68036 BD | +64956 |130089 |BL CVn |131851.9+332619 |ELL | 8.13 |( 0.24 )| |V | | | | | |68052 BD | +65187 |130090 |BM CVn |132132.3+385250 |RS | 7.21 |( 0.06 )| |V | | | | | |68053 BD | +63368 |130094 |BQ CVn |125903.8+470905 |RS | 7.98 |( 0.09 )| |V | | | | | |73005 BD | +65309 |130095 |BR CVn |132305.5+470007 |SRB | 6.58 |( 0.50 )| |V | | | | | |73054 BD | +59136 |130096 |BS CVn |120735.4+420415 |LB: | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +60384 |130097 |BT CVn |122251.1+500246 |LB: | 9.25 | 9.41 | |Hp| | | | | |HIP HIP | +60477 |130098 |BU CVn |122353.9+404310 |LB | 7.90 | 8.20 | |Hp| | | | | |HIP HIP | +61163 |130099 |BV CVn |123159.4+432859 |LB | 9.18 | 9.47 | |Hp| | | | | |HIP HIP | +61186 |130100 |BW CVn |123214.4+452950 |SRB | 8.66 | 8.82 | |Hp| | | | | |HIP HIP | +62097 |130101 |BX CVn |124333.7+411542 |LB | 7.65 | 7.97 | |Hp| | | | | |HIP HIP | +62355 |130102 |BY CVn |124637.5+472220 |LB | 7.71 | 7.91 | |Hp| | | | | |HIP HIP | +62891 |130103 |BZ CVn |125320.0+463923 |LB | 7.32 | 7.47 | |Hp| | | | | |HIP HIP | +63360 |130104 |CC CVn |125859.0+343245 |SRB: | 7.92 | 8.13 | |Hp| | | | | |HIP HIP | +63442 |130105 |CD CVn |130002.5+472632 |LB: | 9.48 | 9.64 | |Hp| | | | | |HIP HIP | +63653 |130106 |CE CVn |130244.4+452305 |LB | 7.45 | 7.62 | |Hp| | | | | |HIP HIP | +63706 |130107 |CF CVn |130320.3+393814 |LB: | 10.34 | 10.48 | |Hp| | | | | |HIP HIP | +63850 |130108 |CG CVn |130508.0+483707 |LB: | 9.57 | 9.73 | |Hp| | | | | |HIP HIP | +64508 |130109 |CH CVn |131319.8+403339 |LB: | 8.64 | 8.75 | |Hp| | | | | |HIP HIP | +64528 |130110 |CI CVn |131333.4+474752 |EA: | 9.36 | 9.87 | |Hp| | | | | |HIP HIP | +65296 |130111 |CK CVn |132257.3+513911 |LB: | 7.74 | 7.84 | |Hp| | | | | |HIP HIP | +65376 |130112 |CL CVn |132353.9+370202 |LB | 6.10 | 6.20 | |Hp| | | | | |HIP HIP | +65633 |130113 |CM CVn |132723.4+390858 |LB: | 8.89 | 9.03 | |Hp| | | | | |HIP HIP | +65746 |130114 |CN CVn |132837.8+424534 |LB: | 9.54 | 9.69 | |Hp| | | | | |HIP HIP | +65876 |130115 |CO CVn |133012.7+454407 |LB | 7.17 | 7.28 | |Hp| | | | | |HIP HIP | +65953 |130116 |CP CVn |133117.2+362849 |LB: | 7.58 | 7.64 | |Hp| | | | | |HIP HIP | +66124 |130117 |CQ CVn |133319.8+441734 |LB: | 8.19 | 8.29 | |Hp| | | | | |HIP HIP | +66470 |130118 |CR CVn |133738.7+421203 |SRB | 7.55 | 7.68 | |Hp| | | | | |HIP HIP | +66682 |130119 |CS CVn *|134011.4+350311 |LB: | 9.13 | 9.25 | |Hp| | | | | |HIP HIP | +67263 |130120 |CT CVn |134710.9+474345 |LB | 7.37 | 7.67 | |Hp| | | | | |HIP HIP | +67357 |130121 |CU CVn |134820.1+312404 |EW: | 7.56 | 7.61 | |Hp| | | | | |HIP HIP | +67662 |130122 |CV CVn |135147.1+394010 |LB: | 7.27 | 7.47 | |Hp| | | | | |HIP HIP | +67803 |130123 |CW CVn |135323.1+334712 |SRD | 7.00 | 7.24 | |Hp| | | | | |HIP HIP | +68384 |130124 |CX CVn |135955.7+280941 |EA | 9.39 | 9.69 | |Hp| | | | | |HIP HIP | +68417 |130125 |CY CVn |140022.4+375216 |LB | 8.09 | 8.47 | |Hp| | | | | |HIP HIP | +68904 |130126 |CZ CVn |140626.1+305047 |LB: | 7.69 | 7.83 | |Hp| | | | | |HIP HIP | +60571 |130127 |DD CVn |122456.9+425117 |GDOR | 7.15 |( 0.04 )| |V | | | | | |75054 BD | +61481 |130137 |DO CVn |123551.3+511317 |BY | 8.52 |( 0.02 )| |V | | | 8.73 | |K0V |78018 DM | +61520 |130138 |DP CVn |123617.0+513052 |BY: | 8.58 |( 0.07 )| |V | | | 14.21 | |G5III |78018 DM | +62641 |130142 |DT CVn |125010.7+373101 |DSCTC | 6.04 |( 0.03 )| |B | | | 0.114 | |A3V |78037 DM | +63622 |130145 |DW CVn |130222.3+372043 |BY: | 8.12 |( 0.04 )| |V | | | | |F8V |78018 DM | +65380 |130155 |EL CVn |132357.0+433555 |EA | 9.42 | 9.59 | 9.50 |V |48331.778 | | 0.795629 |10 |A1V |79006 DM | +35487 |140001 |R CMa *|071928.2-162343 |EA/SD | 5.70 | 6.34 | 5.78 |V |44289.361 | | 1.1359405 |15 *|F1V |00001 00010| +34413 |140006 |W CMa |070803.4-115524 |LB | 6.35 | 7.9 | |V | | | | |C6,3(N) |00374 06360| +34042 |140009 |Z CMa *|070343.2-113306 |INA | 8.8 | 11.2 | |p | | | | |B8peq |00867 04002| +33756 |140014 |RV CMa |070040.1-142059 |LB | 10.4 | 11.6 | |p | | | | |M6 |01710 00391| +34895 |140015 |RW CMa |071311.7-184351 |DCEP | 11.8 | 12.8 | |p |41042.22 | | 5.729685 |25 |F5-G2 |00001 00391| +35212 |140017 |RY CMa |071637.6-112914 |DCEP | 7.71 | 8.45 | |V |36416.937 | | 4.67825 |24 |F6-G0Ib |02309 00391| +35665 |140018 |RZ CMa *|072132.9-164114 |DCEP | 9.36 | 9.97 | |V |36428.062 | | 4.254832 |28 |F6 |00001 00391| +36088 |140019 |SS CMa |072607.2-251526 |DCEP | 9.26 | 10.36 | |V |41109.19 | | 12.361 |45 |F6-G2 |00001 01717| +34431 |140023 |SW CMa *|070815.2-222625 |EA/DM | 9.5 | 10.0 | 9.9 |p |26706.177 | | 10.091948 |06 *|A8 |03284 00391| +34527 |140029 |TV CMa |070915.4-134710 |DCEP | 10.16 | 10.96 | |V |40676.34 | | 4.67001 |29 |F5-G2 |00001 00391| +35708 |140030 |TW CMa |072202.4-141906 |DCEP | 9.28 | 9.93 | |V |39429.26 | | 6.99507 |31 |F5-F8 |00001 00391| +35412 |140036 |UW CMa *|071840.4-243331 |EB/KE: | 4.84 | 5.33 | 5.25 |V |36185.358 | | 4.393407 | |O7Ia:fp+OB |04990 06425| +34302 |140040 |VV CMa |070641.3-143006 |CEP | 12.2 | 12.8 | |p |26090.220 | | 3.8627 | | |01716 GSC | +35793 |140043 |VY CMa *|072258.3-254603 |* | 6.5 | 9.6 | |V | | | | |M5eIbp(C6,3) |06132 06599| +36125 |140044 |VZ CMa |072628.3-255536 |DCEPS | 9.15 | 9.60 | |V |26747.14 | | 3.12640 |43 | |01266 00391| +35865 |140083 |BE CMa |072338.6-225811 |LB | 11.0 | 12.3 | |p | | | | |C5,5J(N) |01719 01719| +34981 |140166 |EW CMa *|071415.2-262109 |GCAS | 4.42 | 4.82 | |V | | | | |B3IVe |08419 CoD | +33092 |140168 |EY CMa *|065332.9-201327 |BCEP | 4.79 | 4.84 | |V |41296.1640 | | 0.184557 |50 |B1III-IV |07243 BD | +33165 |140169 |EZ CMa *|065413.1-235542 |WR | 6.71 | 6.95 | |V |43200.47 | | 3.763 | |WN5 |05019 CoD | +34646 |140170 |FF CMa *|071030.6-303945 |EB/KE | 7.38 | 7.74 | 7.6 |V |28847.465 | | 1.213375 | |B2V+B2V |05284 CoD | +34221 |140176 |FM CMa *|070542.1-124843 |EB/DM | 7.28 | 7.50 | |V | | | 2.7888 | |B1V |06135 08087| +34301 |140177 |FN CMa *|070640.8-111739 |BCEP | 5.38 | 5.42 | |V | | | 0.12377 | |B0III |05522 06633| +30214 |140181 |FR CMa *|062124.7-114624 |GCAS | 5.46 | 5.64 | |V | | | | |B1Vpe |06311 BD | +30800 |140182 |FS CMa *|062817.4-130311 |* | 7.55 | 8.58 | |V | | | | |B2IVep |06312 BD | +32292 |140183 |FT CMa *|064428.5-310414 |GCAS | 5.13 | 5.44 | |V | | | | |B2Ve |08419 CoD | +33721 |140184 |FU CMa *|070019.4-220709 |GCAS | 6.48 | 6.60 | |V | | | | |B3IV-Vne |06311 BD | +34360 |140185 |FV CMa |070722.6-235027 |GCAS | 5.64 | 5.94 | |V | | | | |B2IV-Ve |08419 CoD | +35951 |140186 |FW CMa *|072440.2-161205 |GCAS | 5.00 | 5.50 | |V | | | | |B3Ve |08419 BD | +36168 |140188 |FY CMa |072659.5-230510 |GCAS | 5.54 | 5.69 | |V | | | | |B0IVpe |08419 BD | +33953 |140189 |FZ CMa *|070242.6-112712 |EA/DM | 8.05 | 8.44 | 8.44 |V |41742.324 | | 1.27306 |16 *|B2.5IV-Vn |07045 07045| +34937 |140190 |GG CMa *|071347.2-310501 |ELL+BCEP: | 6.55 | 6.61 | |V | | | | |B2IV |06840 CoD | +35746 |140191 |GH CMa |072223.1-203024 |SRB | 6.82 | 7.19 | |V | | | 20. : | |M6III |06645 BD | +33868 |140203 |GU CMa *|070149.5-111803 |GCAS | 6.49 | 6.72 | |V | | | | |B2Vne |07824 06633| +34924 |140207 |GY CMa *|071336.5-272123 |BCEP: | 6.12 |( 0.04 )| |V | | | 0.112 | |B0.5V |06840 CoD | +35187 |140208 |GZ CMa *|071619.2-164300 |EA/DM | 8.1 | 8.7 | |p |38814.273 | | 4.801052 |07 |A0 |04514 BD | +33447 |140209 |HH CMa |065714.8-221210 |BCEP | 6.59 | 6.66 | |V | | | 0.19 | |B2III |08115 CoD | +34852 |140210 |HI CMa |071245.5-153007 |GCAS | 7.8 |( 0.4 )| |p | | | | |B2IIIe |05857 BD | +32504 |140211 |HK CMa *|064701.5-210055 |ACV | 6.06 | 6.09 | |Y |42818.88 | | 2.181 | |B9p |08054 BD | +34814 |140214 |HN CMa |071224.2-272829 |DSCTC | 6.61 |( 0.025 )| |V | | | | | |67057 CoD | +34898 |140215 |HO CMa |071313.1-305759 |E: | 7.55 | 8.62 | |V | | | | | |67058 CoD | +32385 |140216 |HP CMa |064531.2-305656 |GCAS | 5.48 | 5.80 | |V | | | | | |68296 CoD | +35611 |140217 |HQ CMa |072054.9-265750 |EA | 6.01 | 6.27 | |V | | | | | |68298 CoD | +31205 |140218 |HR CMa |063246.9-110959 |EA/GS | 6.24 | 6.32 | |V | | | | | |71065 BD | +32810 |140226 |HZ CMa |065023.4-314222 |ELL | 5.69 | 5.82 | |y | | | | | |73056 CoD | +34248 |140229 |IL CMa |070600.5-303921 |E+LPB: | 6.32 | 6.54 | |V | | | | | |73058 CoD | +29455 |140232 |IO CMa |061222.4-302853 |EA | 8.46 | 8.71 | |Hp| | | | | |HIP HIP | +29488 |140233 |IP CMa |061246.3-174548 |LPB | 6.44 | 6.48 | |Hp| | | | | |HIP HIP | +29474 |140234 |IQ CMa |061237.3-251607 |EB | 9.24 | 9.63 | |Hp| | | | | |HIP HIP | +29604 |140235 |IR CMa |061419.0-193131 |SRB | 7.56 | 7.70 | |Hp| | | | | |HIP HIP | +30174 |140236 |IS CMa |062056.4-294015 |EW | 6.96 | 7.44 | |Hp| | | | | |HIP HIP | +30263 |140237 |IT CMa |062158.2-262211 |LPB | 7.82 | 7.86 | |Hp| | | | | |HIP HIP | +30426 |140238 |IU CMa *|062347.6-194707 |ACV: | 6.55 | 6.58 | |Hp| | | | | |HIP HIP | +30409 |140239 |IV CMa |062339.1-270357 |SRC | 8.21 | 8.75 | |Hp| | | | | |HIP HIP | +30583 |140240 |IW CMa |062540.5-294211 |E: | 6.88 | 6.96 | |Hp| | | | | |HIP HIP | +30786 |140241 |IX CMa |062805.6-270837 |EB | 7.77 | 7.84 | |Hp| | | | | |HIP HIP | +30840 |140242 |IY CMa |062839.2-322217 |E: | 5.64 | 5.72 | |Hp| | | | | |HIP HIP | +30903 |140243 |IZ CMa |062912.0-260708 |SRB | 7.85 | 8.03 | |Hp| | | | | |HIP HIP | +31008 |140244 |KK CMa |063026.6-150608 |EB | 8.17 | 8.26 | |Hp| | | | | |HIP HIP | +31017 |140245 |KL CMa |063029.8-145716 |EA | 6.73 | 6.97 | |Hp| | | | | |HIP HIP | +31086 |140246 |KM CMa |063124.0-325207 |LB | 6.24 | 6.50 | |Hp| | | | | |HIP HIP | +31180 |140247 |KN CMa |063234.5-231108 |SRD: | 8.65 | 8.72 | |Hp| | | | | |HIP HIP | +31296 |140248 |KO CMa |063346.2-303458 |LB | 8.06 | 8.48 | |Hp| | | | | |HIP HIP | +32408 |140249 |KP CMa |064557.9-284844 |LPB | 7.58 | 7.63 | |Hp| | | | | |HIP HIP | +32570 |140250 |KQ CMa |064747.1-221010 |ACV | 8.24 | 8.29 | |Hp| | | | | |HIP HIP | +32671 |140251 |KR CMa |064850.6-202532 |SRB | 8.08 | 8.40 | |Hp| | | | | |HIP HIP | +32696 |140252 |KS CMa |064915.9-124005 |BE | 7.25 | 7.37 | |Hp| | | | | |HIP HIP | +32758 |140253 |KT CMa |064950.3-113024 |E: | 9.37 | 9.61 | |Hp| | | | | |HIP HIP | +32815 |140254 |KU CMa |065026.5-140648 |BE | 7.93 | 8.10 | |Hp| | | | | |HIP HIP | +32856 |140255 |KV CMa |065052.7-205437 |E: | 7.09 | 7.14 | |Hp| | | | | |HIP HIP | +32937 |140256 |KW CMa |065141.4-234810 |ACV | 7.55 | 7.59 | |Hp| | | | | |HIP HIP | +33040 |140257 |KX CMa |065300.3-265728 |LB | 6.07 | 6.37 | |Hp| | | | | |HIP HIP | +33042 |140258 |KY CMa |065302.0-314651 |LB | 10.46 | 11.00 | |Hp| | | | | |HIP HIP | +33119 |140259 |KZ CMa |065352.2-131109 |BE | 8.66 | 8.77 | |Hp| | | | | |HIP HIP | +33200 |140260 |LL CMa |065435.9-175502 |BE | 7.36 | 7.64 | |Hp| | | | | |HIP HIP | +33260 |140261 |LM CMa |065511.7-215219 |ACYG: | 8.64 | 8.70 | |Hp| | | | | |HIP HIP | +33443 |140262 |LN CMa |065712.5-302937 |LB: | 9.15 | 9.26 | |Hp| | | | | |HIP HIP | +33592 |140263 |LO CMa |065844.5-203655 |SRB: | 7.75 | 7.86 | |Hp| | | | | |HIP HIP | +33676 |140264 |LP CMa |065946.5-161203 |BE | 9.20 | 9.31 | |Hp| | | | | |HIP HIP | +33673 |140265 |LQ CMa |065944.5-282359 |BE: | 7.12 | 7.26 | |Hp| | | | | |HIP HIP | +33778 |140266 |LR CMa |070051.1-233548 |ACYG: | 9.26 | 9.35 | |Hp| | | | | |HIP HIP | +33804 |140267 |LS CMa |070106.0-251256 |E: | 5.57 | 5.60 | |Hp| | | | | |HIP HIP | +34080 |140268 |LT CMa |070402.6-121717 |EA | 7.38 | 7.56 | |Hp| | | | | |HIP HIP | +34161 |140269 |LU CMa |070500.2-313134 |LB: | 7.75 | 7.87 | |Hp| | | | | |HIP HIP | +34287 |140270 |LV CMa |070630.5-113216 |EB | 8.65 | 8.83 | |Hp| | | | | |HIP HIP | +34342 |140271 |LW CMa |070709.6-293222 |SRB: | 7.38 | 7.50 | |Hp| | | | | |HIP HIP | +34448 |140272 |LX CMa |070827.7-183611 |LB: | 7.28 | 7.31 | |Hp| | | | | |HIP HIP | +34569 |140273 |LY CMa |070937.0-160547 |GCAS | 8.99 | 9.27 | |Hp| | | | | |HIP HIP | +34579 |140274 |LZ CMa |070943.0-251352 |EB: | 5.63 | 5.66 | |Hp| | | | | |HIP HIP | +34798 |140275 |MM CMa |071212.2-255633 |LPB | 5.84 | 5.87 | |Hp| | | | | |HIP HIP | +34986 |140276 |MN CMa |071419.9-152344 |BE | 9.53 | 9.70 | |Hp| | | | | |HIP HIP | +35015 |140277 |MO CMa *|071435.1-172319 |I: | 11.13 | 11.53 | |Hp| | | | | |HIP HIP | +35036 |140278 |MP CMa |071448.3-210127 |EB | 8.30 | 8.48 | |Hp| | | | | |HIP HIP | +35109 |140279 |MQ CMa |071534.7-272522 |LB: | 8.16 | 8.31 | |Hp| | | | | |HIP HIP | +35156 |140280 |MR CMa |071558.7-175406 |ACV | 8.99 | 9.08 | |Hp| | | | | |HIP HIP | +35168 |140281 |MS CMa |071606.9-302607 |EA | 7.08 | 7.20 | |Hp| | | | | |HIP HIP | +35201 |140282 |MT CMa |071630.1-295615 |LB: | 8.23 | 8.35 | |Hp| | | | | |HIP HIP | +35355 |140283 |MU CMa |071809.6-153742 |BE: | 8.94 | 9.04 | |Hp| | | | | |HIP HIP | +35356 |140284 |MV CMa |071809.9-300505 |EB | 9.74 | 10.08 | |Hp| | | | | |HIP HIP | +35407 |140285 |MW CMa |071838.5-291745 |ACV | 8.66 | 8.79 | |Hp| | | | | |HIP HIP | +35461 |140286 |MX CMa |071912.8-245721 |EB | 6.74 | 6.81 | |Hp| | | | | |HIP HIP | +35549 |140287 |MY CMa |072007.2-201958 |LB: | 10.49 | 10.76 | |Hp| | | | | |HIP HIP | +35626 |140288 |MZ CMa |072104.3-255330 |SRB | 5.87 | 5.95 | |Hp| | | | | |HIP HIP | +35769 |140289 |NN CMa |072243.3-260041 |GCAS | 7.05 | 7.30 | |Hp| | | | | |HIP HIP | +35795 |140290 |NO CMa *|072300.7-315526 |BE: | 5.33 | 5.38 | |Hp| | | | | |HIP HIP | +35829 |140291 |NP CMa |072319.3-300441 |BE | 8.99 | 9.16 | |Hp| | | | | |HIP HIP | +35926 |140292 |NQ CMa |072420.7-263028 |BE: | 9.81 | 10.12 | |Hp| | | | | |HIP HIP | +36186 |140293 |NR CMa |072708.0-175154 |DSCTC | 5.67 | 5.70 | |Hp| | | | | |HIP HIP | +32101 |140301 |NZ CMa |064223.3-222138 |LPB | 8.82 | 8.90 | |Hp| | | | | |75030 BD | +34561 |140306 |OS CMa |070933.4-161404 |ACYG | 6.04 | 6.07 | |Hp| | | | | |75030 BD | +32144 |140350 |V0350 CMa |064246.0-222655 |GDOR | 6.18 | 6.27 | |V | | | | | |77035 DM | +29568 |140352 |V0352 CMa |061345.3-235143 |BY | 6.37 | 6.40 | |V | | | 7.2 | |G5V |78046 DM | +30225 |140353 |V0353 CMa |062133.1-221253 |BY | 8.48 |( 0.02 )| |V | | | | |K2V |78018 DM | +31821 |140356 |V0356 CMa |063911.6-263419 |BY: | 8.44 |( 0.02 )| |V | | | | |K1V |78018 DM | +33274 |140377 |V0377 CMa *|065516.1-171255 |EA | 7.88 | 7.98 | 7.98 |V |48323.304 | | 3.01351 |04 |B8III |79018 DM | +33844 |140381 |V0381 CMa |070132.0-275134 |EB | 7.73 | 7.82 | 7.78 |V |52942.804 | | 3.37443 | |A2V |79006 DM | +34262 |140388 |V0388 CMa *|070607.4-125708 |EA | 8.25 | 8.43 | 8.34 |V |53067.651 | | 2.98260 |05 |B3V |79018 DM | +35859 |140398 |V0398 CMa |072334.6-311800 |EA | 7.98 | 8.11 | 8.02 |V |47912.729 | | 2.198515 |06 |B9III |79006 DM | +35370 |140422 |V0422 CMa *|071821.9-245112 |EA | 8.91 | 9.07 | 8.95 |V |51993.495 | | 4.19184 |05 |B2IV/V |80015 GSC | NL80_2 +30324 |149002 |bet CMa *|062242.0-175721 |BCEP | 1.93 | 2.00 | |V |41296.175 | | 0.25003 | |B1II-III |07254 BD | +35904 |149007 |eta CMa |072405.7-291811 |ACYG | 2.38 | 2.48 | |Hp| | | | | |HIP HIP | +33347 |149009 |iot CMa |065608.2-170315 |BCEP | 4.36 | 4.40 | |V | | | 0.08 : | |B3II-III |08395 BD | +32759 |149010 |kap CMa |064950.5-323031 |GCAS | 3.78 | 3.97 | |V | | | | |B2Vne | CoD | +33856 |149018 |sig CMa *|070143.1-275605 |LC | 3.43 | 3.51 | |V | | | | |K7Ib |04659 CoD | +35415 |149019 |tau CMa *|071842.5-245716 |EB | 4.32 | 4.37 | |Hp| | | | | |HIP HIP | +35037 |149024 |ome CMa *|071448.6-264622 |GCAS | 3.60 | 4.18 | |V | | | | |B2IV-Ve |07367 CoD | +34474 |150001 |R CMi *|070842.6+100127 |M | 7.25 | 11.6 | |V |41323. | | 337.78 |48 |C7,1Je(CSep) |00001 00002| +36675 |150002 |S CMi |073243.1+081905 |M | 6.6 | 13.2 | |V |43911. | | 332.94 |49 |M6e-M8e |00001 00002| +37459 |150004 |U CMi *|074120.0+082249 |M | 8.0 | 14.0 | |V |43150. | | 413.88 |52 |M4e |00001 00002| +38124 |150006 |W CMi |074845.5+052335 |SRB | 8.72 | 9.04 | |V | | | 95. : | |C7,2(R6) |07213 BD | +37850 |150037 |UX CMi |074533.8+051231 |SRA | 10.2 | 11.6 | |p |26735. | | 150.5 | |M5 |02431 BD | +37766 |150053 |YZ CMi *|074440.2+033309 |BY+UV | 8.6 | 12.93 | |B |41355.178 | | 2.780964 | |M4.5Ve |06948 00664| +35915 |150054 |ZZ CMi |072414.0+085352 |SR | 10.2 | 11.9 | |p |28960. | | 500. : | |M6I-IIep |00346 00346| +35281 |150055 |AA CMi |071719.2+014340 |RRAB | 11.01 | 12.00 | |V |36576.435 | | 0.47632310 |20 |A6 |03297 00156| +38473 |150058 |AD CMi |075247.2+013551 |DSCT | 9.21 | 9.51 | |V |42429.4582 | | 0.12297443 |37 |F0III-F3III |06719 06463| +37705 |150079 |AZ CMi |074407.6+022420 |DSCTC | 6.44 | 6.51 | |V |40886.0713 | | 0.09526 | |F0III |06014 BD | +38361 |150080 |BB CMi |075124.6+045439 |RRC | 10.0 | 10.8 | |p |25644.400 | | 0.396424 |40 |A5 |05957 05957| +38406 |150081 |BC CMi |075207.2+031638 |SRB | 6.14 | 6.42 | |V | | | 35. : | |M5 |06645 BD | +34463 |150091 |BN CMi |070836.9+041034 |SRB: | 7.01 | 7.10 | |Hp| | | | | |HIP HIP | +35776 |150092 |BO CMi *|072248.4+072940 |* | 8.07 | 8.36 | |Hp| | | | | |HIP HIP | +36746 |150093 |BP CMi |073327.5+110042 |SRB | 6.77 | 6.91 | |Hp| | | | | |HIP HIP | +36888 |150094 |BQ CMi |073503.0+061140 |SRA: | 7.69 | 7.90 | |Hp| | | | | |HIP HIP | +37232 |150095 |BR CMi |073851.0+075800 |ACV: | 7.16 | 7.22 | |Hp| | | | | |HIP HIP | +38807 |150096 |BS CMi |075631.7+062423 |SRD: | 7.80 | 7.89 | |Hp| | | | | |HIP HIP | +38855 |150097 |BT CMi |075704.0+025703 |BE | 7.68 | 7.80 | |Hp| | | | | |HIP HIP | +38945 |150098 |BU CMi |075805.9+071249 |EA: | 6.41 | 6.51 | |Hp| | | | | |HIP HIP | +38987 |150099 |BV CMi |075845.2+053724 |EA: | 6.91 | 7.03 | |Hp| | | | | |HIP HIP | +39635 |150100 |BW CMi |080559.0+060001 |LB: | 9.02 | 9.12 | |Hp| | | | | |HIP HIP | +38138 |150127 |DD CMi |074858.2+003943 |GDOR | 7.50 | 7.57 | |Hp| | | 0.713 | |F2 |78091 DM | +39986 |150128 |DE CMi |080958.5+010114 |DSCTC | 7.96 |( 0.06 )| |B | | | 0.088474 | |F0 |78106 DM | +38581 |150135 |DM CMi |075359.9+034500 |EA | 8.13 | 8.22 | 8.20 |V |48588.418 | | 7.72461 |03 : |A0V |79006 DM | +36188 |159002 |bet CMi |072709.0+081722 |GCAS | 2.84 | 2.92 | |V | | | | |B8Ve | BD | +105498|160003 |T Cap |212200.8-150933 |M | 8.4 | 14.3 | |V |39267. | | 269.28 |44 |M2e-M8.2 |00001 00002| +104285|160005 |V Cap |210736.6-235514 |M | 8.2 | 14.4 | |V |40395. | | 275.72 |42 |M5e-M8.2 |00001 00002| +104252|160011 |RS Cap *|210715.4-162521 |SRB | 8.3 | 10.3 | |p | | | 340. | |M4 |00358 BD | +99990 |160012 |RT Cap *|201706.5-211905 |SRB | 8.9 | 11.7 | |p | | | 393. | |C6,4(N3) | 06754| +103755|160014 |RV Cap *|210128.9-151346 |RRAB | 10.22 | 11.57 | |V |33883.262 | | 0.44774401 | |A7-F4 |03506 01729| +99765 |160030 |TW Cap *|201428.4-135008 |CWA | 9.95 | 11.28 | |V |44073.10 | | 28.6101 |20 : |A5Ib-F4Ib |00001 08588| +106653|160034 |UU Cap |213610.4-135206 |SRB | 9.3 | 10.4 | |p | | | 100. : | |M4 |01158 BD | +105285|160053 |YZ Cap *|211932.4-150701 |RRC | 11.02 | 11.60 | |V |43729.741 | | 0.2734563 |40 |A5-A7 |00001 08087| +106961|160058 |AD Cap *|213948.9-160021 |E/RS | 10.77 | 11.4 | |B | | | 2.96000 | |G5+G5 |07373 BD | +100154|160059 |AE Cap *|201857.2-155128 |SR | 9.0 | 11.1 | |B | | | 200. | |M4 |03263 BD | +107487|160061 |AG Cap |214616.3-091633 |SRB | 5.90 | 6.14 | |V | | | 25. : | |M3III |06645 BD | +101500|160064 |AK Cap |203407.6-231459 |LB | 9.0 | 9.7 | |p | | | | |M2 |00190 CoD | +103616|160068 |AO Cap |205936.1-190207 |ACV | 6.2 |( 0.050 )| |V | | | 2.25 | |B9p(Si) |08375 BD | +107594|160069 |AP Cap |214736.4-171741 |ACV | 7.60 | 7.65 | |V |42619.827 | | 2.67 | |B9p(Si) |08312 BD | +99333 |160071 |AR Cap |200942.0-182048 |ACV | 8.08 | 8.28 | |V | | | | | |68148 BD | +106497|160072 |AS Cap |213416.6-132902 |RS: | 8.0 |( 0.13 )| |V | | | | | |68056 BD | +101098|160073 |AT Cap |202936.9-210735 |RS | 8.87 | 9.18 | |V | | | | | |69011 BD | +99221 |160075 |AV Cap |200831.3-100345 |ACV: | 6.24 |( 0.02 u )| |B | | | | | |70022 BD | +106255|160080 |BB Cap |213118.6-094726 |BY | 11.96 | 11.99 | |V | | | | | |73018 73066| +99249 |160081 |BC Cap |200849.5-152444 |SRB | 8.13 | 8.37 | |Hp| | | | | |HIP HIP | +99365 |160082 |BD Cap |201006.8-251702 |DSCTC | 7.51 | 7.57 | |Hp| | | | | |HIP HIP | +99457 |160083 |BE Cap |201110.1-085032 |BE: | 6.16 | 6.43 | |V | | | | | |HIP HIP | +100107|160084 |BF Cap |201828.6-191729 |EB | 8.94 | 9.27 | |Hp| | | | | |HIP HIP | +100234|160085 |BG Cap |201945.3-132709 |SRD: | 8.92 | 9.04 | |Hp| | | | | |HIP HIP | +100869|160086 |BH Cap *|202708.5-113251 |EB: | 8.03 | 8.16 | |Hp| | | | | |HIP HIP | +101277|160087 |BI Cap |203143.0-115304 |LB: | 9.64 | 9.79 | |Hp| | | | | |HIP HIP | +101405|160088 |BK Cap |203303.0-191819 |LB: | 8.78 | 8.90 | |Hp| | | | | |HIP HIP | +102217|160089 |BL Cap |204239.8-180635 |RR: | 7.38 | 7.45 | |Hp| | | | | |HIP HIP | +102723|160090 |BM Cap |204855.7-203708 |E | 9.16 | 9.42 | |Hp| | | | | |HIP HIP | +105324|160091 |BN Cap *|212002.5-271816 |IB: | 8.15 | 8.54 | |Hp| | | | | |HIP HIP | +106600|160092 |BO Cap |213522.8-230705 |LB: | 8.07 | 8.19 | |Hp| | | | | |HIP HIP | +106739|160093 |BP Cap |213720.0-112739 |LB | 7.34 | 7.44 | |Hp| | | | | |HIP HIP | +106764|160094 |BQ Cap |213736.1-202555 |EA | 8.11 | 8.40 | |Hp| | | | | |HIP HIP | +107530|160095 |BR Cap |214644.9-222901 |LB: | 8.97 | 9.10 | |Hp| | | | | |HIP HIP | +107845|160096 |BS Cap |215056.5-201120 |LB | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +108236|160097 |BT Cap |215538.4-210824 |SRB: | 7.04 | 7.14 | |Hp| | | | | |HIP HIP | +108274|160098 |BU Cap |215607.6-140208 |LB | 7.70 | 7.95 | |Hp| | | | | |HIP HIP | +108298|160099 |BV Cap |215624.9-093509 |LB | 7.82 | 8.02 | |Hp| | | | | |HIP HIP | +108494|160100 |BW Cap |215843.8-211059 |LB | 6.07 | 6.19 | |Hp| | | | | |HIP HIP | +107095|160102 |BY Cap |214132.9-140251 |RS | 5.13 | 5.18 | |V | | | | | |75011 BD | +106985|169003 |gam Cap |214005.5-163944 |ACV | 3.20 |( 0.03 )| |J | | | | | |75065 BD | +107556|169004 |del Cap *|214702.4-160738 |EA | 2.81 | 3.05 | 2.90 |V |35656.913 | | 1.0227688 |08 *|A7mIII |06781 BD | +106723|169005 |eps Cap *|213704.8-192758 |GCAS | 4.48 | 4.72 | |V | | | | |B3IV-Vpeq |03712 BD | +105515|169009 |iot Cap |212214.8-165004 |BY | 4.27 |( 0.06 )| |V | | | | | |73005 BD | +46806 |170001 |R Car *|093214.6-624720 |M | 3.9 | 10.5 | |V |42000. | | 308.71 |48 |M4e-M8e |00001 00002| +49751 |170002 |S Car |100921.9-613256 |M | 4.5 | 9.9 | |V |42112. | | 149.49 |51 |K5e-M6e |00001 00002| +53394 |170003 |T Car |105517.2-603101 |CST: | 7.00 | | |B | | | | |K0III |00693 03508| +53589 |170004 |U Car *|105748.2-594356 |DCEP | 5.72 | 7.02 | |V |37320.055 | | 38.7681 |21 |F6-G7Iab |06006 08613| +41588 |170005 |V Car *|082843.7-600721 |DCEP | 7.08 | 7.82 | |V |37454.023 | | 6.69668 |30 : |F6-G2Ib-II |06006 CoD | +41793 |170007 |X Car *|083116.8-591337 |EB/KE | 7.90 | 8.65 | 8.6 |V |28857.146 | | 1.0826310 | |A0V+A0V |00007 CoD | +51653 |170008 |Y Car *|103310.9-582955 |DCEP(B) | 7.53 | 8.48 | |V |41041.39 | | 3.639760 |29 |F3 |06143 03308| +52562 |170012 |RT Car *|104447.1-592448 |LC | 8.2 | 9.9 | |V | | | | |M2Ia-0 |00001 03508| +45416 |170013 |RU Car |091516.9-661410 |LB | 10.9 | 12.1 | |p | | | | |N3 |00370 05625| +52661 |170024 |SX Car |104605.8-573251 |DCEP | 8.66 | 9.47 | |V |35074.336 | | 4.8600 |30 |F5-G2Ib-II |06006 02483| +52656 |170033 |TZ Car *|104603.0-653653 |SRB | 10.2 | 11.9 | |p | | | 69. | |R5 |00003 05625| +51142 |170036 |UW Car |102650.9-594010 |DCEP | 8.98 | 9.86 | |V |34897.059 | | 5.345773 |28 |G0 |06006 05625| +51338 |170037 |UX Car *|102911.2-573648 |DCEP | 7.81 | 8.67 | |V |34906.805 | | 3.682246 |26 |F5-G1II |06006 03508| +51909 |170039 |UZ Car |103617.8-610045 |DCEP | 9.00 | 9.62 | |V |34894.69 | | 5.20466 |29 |G0 |06006 03508| +52538 |170043 |VY Car *|104432.7-573355 |DCEP | 6.87 | 8.05 | |V |10009.58 | | 18.990 |36 |F6-G4Iab-Ib |02309 06998| +53083 |170045 |WW Car |105135.8-592306 |DCEP | 9.35 | 10.11 | |V |34925.15 | | 4.67681 |28 |F0 |02309 08613| +53397 |170048 |WZ Car *|105518.7-605624 |DCEP | 8.65 | 10.01 | |V |44143.17 | | 23.0132 |17 |F8 |00001 08613| +53536 |170049 |XX Car *|105709.2-650805 |DCEP | 8.67 | 9.89 | |V |36221.730 | | 15.71624 |33 |G0 |02309 CoD | +53945 |170050 |XY Car *|110216.1-641546 |DCEP | 8.82 | 9.77 | |V |36190.230 | | 12.43483 |39 |G5 |02309 CoD | +54101 |170051 |XZ Car *|110413.5-605848 |DCEP | 8.05 | 9.13 | |V |36205.754 | | 16.6499 |37 |K5 |06006 08613| +51262 |170053 |YZ Car *|102816.9-592101 |DCEP | 8.24 | 9.08 | |V |34907.04 | | 18.1631 |41 |G5 |02309 03308| +34310 |170057 |AC Car |070648.0-582252 |SRB | 9.1 | 10.3 | |p | | | 99. : | |M7III |00016 03389| +53461 |170061 |AG Car *|105611.6-602713 |SDOR | 7.1 | 9.0 | |p | | | | |B0I-A2Ieq |01890 08613| +50722 |170070 |AQ Car |102123.0-610427 |DCEP | 8.55 | 9.15 | |V |36188.449 | | 9.76896 |50 |F8-G0Ib |06006 05625| +53300 |170103 |BZ Car *|105406.3-620233 |SRC | 8.9 | 10.8 | |p | | | 97. | |M3Ib |00003 08613| +50244 |170114 |CN Car |101532.9-581028 |DCEP | 10.24 | 11.00 | |V |34510.24 | | 4.93261 |30 | |02309 00694| +53593 |170125 |CY Car |105750.7-604432 |DCEP | 9.44 | 10.05 | |V |35069.355 | | 4.26593 |34 |G0 |06006 00694| +54543 |170161 |ER Car *|110941.1-585016 |DCEP | 6.58 | 7.13 | |V |40277.88 | | 7.71855 |34 |F8-G1Iab-Ib |05366 03389| +50992 |170167 |EX Car |102459.6-633810 |EA/SD | 10.0 | 11.5 | |p |23997.641 | | 1.396366 |14 *|G0 |01892 CPD | +52380 |170168 |EY Car |104223.0-610957 |DCEP | 10.00 | 10.68 | |V |35067.004 | | 2.87598 |30 | |08711 CPD | +53867 |170177 |FN Car |110114.4-600700 |DCEP | 11.16 | 11.85 | |V |34899.352 | | 4.58569 |40 : | |06006 08613| +54891 |170181 |FR Car |111421.2-600311 |DCEP | 9.29 | 10.04 | |V |41048.5 | | 10.71697 |43 |G5 |00001 05151| +53444 |170190 |GG Car *|105558.9-602334 |EB/GS | 9.1 | 9.5 | 9.5 |p |29580.13 | | 62.086 | |Beq |00007 01906| +54621 |170191 |GH Car *|111044.6-604501 |DCEPS | 9.00 | 9.35 | |V |35069.395 | | 5.72557 |44 |G0 |06006 05288| +54862 |170192 |GI Car |111400.0-575439 |DCEPS | 8.10 | 8.47 | |V |34924.602 | | 4.43061 |46 |F3-F8Iab-Ib |06006 05625| +48663 |170206 |GX Car |095526.2-582547 |DCEP | 8.94 | 9.77 | |V |40741.13 | | 7.19673 |29 |F8II-K0 |00001 05625| +50615 |170208 |GZ Car *|102020.4-592236 |DCEPS(B) | 9.98 | 10.47 | |V |40742.6 | | 4.15901 |45 |G5 |07326 00092| +54066 |170211 |HK Car *|110345.2-603832 |DCEP | 10.71 | 11.60 | |B |34535.35 | | 6.69574 |30 |G5 |02309 00092| +50843 |170218 |HR Car *|102253.8-593728 |SDOR | 8.2 | 9.6 | |p | | | | |B2eq |01913 03308| +52157 |170223 |HW Car *|103920.3-610909 |DCEP | 9.0 | 9.8 | |p |24404.94 | | 9.2002 |50 |G2-3Ib-II |00077 CoD | +54715 |170237 |IT Car |111210.1-614518 |DCEP | 7.90 | 8.29 | |V |37299.766 | | 7.53320 |36 |F8-K2Iab-Ib |06006 05288| +52991 |170241 |IX Car *|105026.3-595857 |SRC | 9.0 | 10.0 | |p |28900. | | 400. | |M2Iab |01918 08613| +51576 |170314 |PP Car |103201.5-614107 |GCAS | 3.27 | 3.37 | |V | | | | |B5Vne |04118 CoD | +51740 |170327 |QS Car *|103417.5-710954 |EA/DM | 9.0 | 9.4 | 9.3 |p |28656.315 | | 9.3208 | |F2-F5 |05289 CoD | +54226 |170329 |QU Car *|110542.5-683758 |NL | 11.4 |( 0.7 )| |V | | | | |pec |05524 05778| +48589 |170332 |QX Car *|095433.9-582517 |EA/DM | 6.60 | 7.21 | 7.02 |V |40701.3715 | | 4.47804 |06 |B5V+B5V |07436 05625| +49934 |170333 |QY Car *|101146.5-580338 |GCAS | 5.63 | 5.83 | |V | | | | |B2IVpne |05188 04641| +52526 |170334 |QZ Car *|104422.9-595936 |EB | 6.16 | 6.49 | 6.43 |V |43192.4 | | 5.9981 | |O9III |05189 04641| +50371 |170337 |V0337 Car |101705.0-611956 |LC | 3.36 | 3.44 | |V | | | | |K3II |03712 05625| +38834 |170341 |V0341 Car *|075651.0-590733 |L | 6.2 | 7.10 | |V | | | | |M1-3II-III |05196 07467| +42568 |170343 |V0343 Car *|084037.0-594540 |BCEP: | 4.20 |( 0.04 )| |B | | | | |B1.5III |04456 CoD | +43105 |170344 |V0344 Car |084642.5-564611 |GCAS | 4.4 | 4.51 | |V | | | | |B3Vne |06311 CoD | +44626 |170345 |V0345 Car |090538.4-703219 |GCAS | 4.67 | 4.78 | |V | | | | |B2Vne |06311 CoD | +50088 |170347 |V0347 Car *|101333.8-732004 |EA/DM | 8.5 | 9.0 | |p |38474.425 | | 5.72555 | |A3m |06871 06871| +54572 |170353 |V0353 Car |111002.3-600543 |GCAS | 7.59 | 7.78 | |V | | | | |B2Ve |07778 04641| +120404|170356 |V0356 Car *|075802.9-603653 |EA: | 7.59 | 8.01 | |V | | | | |B9.5IVp(Si) |07829 07829| +45080 |170357 |V0357 Car *|091058.1-585801 |E: | 3.41 | 3.44 | |V | | | | |B2IV-V |07832 05625| +52221 |170364 |V0364 Car |104011.4-650601 |ACV | 5.48 | 5.52 | |V |42428.81 | | 1.668 | |B8IIIp(Si) |07614 CPD | +48761 |170367 |V0367 Car *|095645.3-573917 |EB/DM | 7.49 | 7.59 | 7.54 |V |42468.79 | | 5.73 | |B6V |08222 07616| +49926 |170368 |V0368 Car |101135.5-584940 |LB: | 6.1 | 6.40 | |V | | | | |M5III |08223 CPD | +51676 |170369 |V0369 Car |103325.4-581125 |ACYG | 6.11 |( 0.1 )| |V | | | | |B6eIa |08070 CPD | +52004 |170370 |V0370 Car |103727.1-584400 |ACYG | 5.45 | 5.52 | |V | | | | |A0eIa |08070 07619| +54461 |170371 |V0371 Car |110834.0-615650 |ACYG | 5.12 | 5.19 | |V | | | | |B9.5eIa |08070 CPD | +38438 |170372 |V0372 Car |075229.7-542202 |BCEP | 5.69 |( 0.027 )| |V | | | 0.1160 | |B2III |08380 CoD | +38994 |170374 |V0374 Car *|075850.5-604928 |GCAS | 5.72 | 5.84 | |V | | | | |B2IV-Vpne |08386 07830| +39530 |170375 |V0375 Car *|080442.9-625011 |BCEP: | 6.29 |( 0.04 )| |V | | | | |B4Vn |08387 CPD | +43937 |170376 |V0376 Car *|085658.4-591346 |BCEPS | 4.91 | 4.96 | |V | | | 0.0208 | |B2IV-V |08308 CPD | +46224 |170377 |V0377 Car |092527.1-572144 |EA/DM | 8.05 | 8.34 | |V | | | 2.242624 | |B4V |08389 CPD | +54463 |170382 |V0382 Car *|110835.4-585830 |DCEP: | 3.84 | 4.02 | |V | | | | |F8-G2Ia |02555 05625| +33616 |170383 |V0383 Car |065904.0-583053 |DSCTC | 8.84 |( 0.06 )| |V | | | | |Fm |03889 CPD | +54283 |170385 |V0385 Car *|110617.2-653035 |ELL:+WR | 7.70 |( 0.04 )|( 0.04 )|V |42000.0 | | 4.762 | |WN8 |03899 CPD | +34105 |170386 |V0386 Car |070418.3-564459 |ACV | 5.16 |( 0.026 )| |V | | | | | |67064 CPD | +34929 |170387 |V0387 Car |071339.9-534004 |ACV | 7.0 |( 0.023 )| |V | | | | | |67064 CPD | +35692 |170388 |V0388 Car |072151.4-554616 |ACV | 7.94 |( 0.03 )| |V | | | | | |67066 CPD | +35676 |170389 |V0389 Car |072141.1-615705 |ACV | 7.2 |( 0.01 )| |V | | | | | |67066 CPD | +37248 |170390 |V0390 Car |073900.3-531624 |ACV | 6.06 |( 0.004 )| |V | | | | | |67067 CoD | +48617 |170396 |V0396 Car |095452.9-574338 |ELL | 8.32 |( 0.06 )| |V | | | | | |67081 CPD | +51109 |170398 |V0398 Car |102631.4-583826 |E | 9.69 |( 0.035 )| |V | | | | | |67084 CPD | +51192 |170399 |V0399 Car |102724.5-573820 |CEP | 4.64 | 4.71 | |V | | | | | |67098 CPD | +52059 |170407 |V0407 Car |103817.6-650231 |ACV | 6.71 | 6.74 | |V | | | | | |67104 CPD | +36537 |170409 |V0409 Car |073057.0-575928 |ACVO | 9.1 |( 0.03 )| |B | | | | | |68299 CPD | +54179 |170414 |V0414 Car |110457.6-595132 |ACYG: | 6.55 |( 0.09 )| |V | | | | | |68313 CPD | +32761 |170415 |V0415 Car |064951.3-533721 |EA/GS | 4.39 |( 0.06 )| |V | | | | | |69051 CPD | +48643 |170423 |V0423 Car |095506.0-572259 |ACV | 6.9 |( 0.02 )| |B | | | | | |69057 CPD | +53274 |170428 |V0428 Car |105344.8-593047 |E:/WR | 10.7 |( 0.05 )| |V | | | | | |69064 CPD | +52308 |170429 |V0429 Car |104117.5-594037 |EA/WR | 6.38 |( 0.12 )| |B | | | | | |70023 70024| +54266 |170430 |V0430 Car |110605.8-595700 |BCEP: | 6.68 |( 0.03 )| |V | | | | | |70025 CoD | +54574 |170431 |V0431 Car |111004.1-605845 |E/WR | 8.09 |( 0.02 )| |B | | | | | |70023 CoD | +30252 |170435 |V0435 Car |062150.1-511416 |DSCTC | 7.3 |( 0.02 )| |B | | | | | |73067 CoD | +48619 |170437 |V0437 Car |095453.4-584145 |ACVO | 9.32 |( 0.01 B )| |V | | | | | |73069 CPD | +30546 |170444 |V0444 Car |062517.1-515023 |LB: | 8.07 | 8.30 | |Hp| | | | | |HIP HIP | +31644 |170445 |V0445 Car |063721.7-545845 |SRB | 9.01 | 9.35 | |Hp| | | | | |HIP HIP | +31664 |170446 |V0446 Car |063737.7-572615 |LB: | 8.72 | 8.84 | |Hp| | | | | |HIP HIP | +32218 |170447 |V0447 Car |064333.1-530126 |SRB | 8.51 | 8.69 | |Hp| | | | | |HIP HIP | +32531 |170448 |V0448 Car |064718.7-553224 |SRD: | 5.66 | 5.86 | |Hp| | | | | |HIP HIP | +33063 |170449 |V0449 Car |065312.9-522437 |SRD | 9.03 | 9.18 | |Hp| | | | | |HIP HIP | +34000 |170450 |V0450 Car |070315.1-591041 |LPB | 5.45 | 5.47 | |Hp| | | | | |HIP HIP | +34122 |170451 |V0451 Car |070431.4-602802 |SRB | 8.83 | 9.12 | |Hp| | | | | |HIP HIP | +34792 |170452 |V0452 Car |071210.2-595022 |EA: | 8.04 | 8.37 | |Hp| | | | | |HIP HIP | +35979 |170453 |V0453 Car |072452.4-630042 |EA: | 11.32 | 12.19 | |Hp| | | | | |HIP HIP | +36682 |170454 |V0454 Car |073246.1-533319 |EB | 6.92 | 7.10 | |Hp| | | | | |HIP HIP | +37012 |170455 |V0455 Car |073625.3-615226 |EA | 8.33 | 8.55 | |Hp| | | | | |HIP HIP | +37549 |170456 |V0456 Car |074223.8-560846 |SXARI: | 7.21 | 7.26 | |Hp| | | | | |HIP HIP | +37555 |170457 |V0457 Car |074227.3-632908 |LB: | 8.41 | 8.51 | |Hp| | | | | |HIP HIP | +37966 |170458 |V0458 Car |074656.7-522050 |ACV: | 6.85 | 6.92 | |Hp| | | | | |HIP HIP | +38416 |170459 |V0459 Car |075213.3-593649 |ACV | 7.47 | 7.51 | |Hp| | | | | |HIP HIP | +39070 |170460 |V0460 Car |075937.5-603513 |LC | 5.15 | 5.30 | |V | | | | | |HIP HIP | +39225 |170461 |V0461 Car |080123.0-543056 |EA | 6.08 | 6.20 | |Hp| | | | | |HIP HIP | +39310 |170462 |V0462 Car |080215.5-553226 |EB | 6.68 | 6.84 | |Hp| | | | | |HIP HIP | +39611 |170463 |V0463 Car |080540.0-592526 |BY: | 10.41 | 10.60 | |Hp| | | | | |HIP HIP | +39885 |170464 |V0464 Car |080848.9-613408 |LB: | 8.95 | 9.06 | |Hp| | | | | |HIP HIP | +40638 |170465 |V0465 Car |081745.0-612800 |LB: | 8.73 | 8.87 | |Hp| | | | | |HIP HIP | +40666 |170466 |V0466 Car |081805.0-601850 |EA | 7.25 | 7.55 | |Hp| | | | | |HIP HIP | +40838 |170467 |V0467 Car |082001.7-565130 |EA: | 8.00 | 8.46 | |Hp| | | | | |HIP HIP | +41266 |170468 |V0468 Car |082509.3-552822 |ACV: | 6.59 | 6.62 | |Hp| | | | | |HIP HIP | +41644 |170469 |V0469 Car |082929.8-541242 |ACV | 6.39 | 6.42 | |Hp| | | | | |HIP HIP | +41906 |170470 |V0470 Car |083241.1-552812 |EB: | 7.45 | 7.61 | |Hp| | | | | |HIP HIP | +42251 |170471 |V0471 Car |083652.7-633739 |BE | 8.02 | 8.10 | |Hp| | | | | |HIP HIP | +42819 |170472 |V0472 Car |084330.1-614120 |ACV | 6.78 | 6.83 | |Hp| | | | | |HIP HIP | +43763 |170473 |V0473 Car |085454.0-581423 |LPB | 6.31 | 6.35 | |Hp| | | | | |HIP HIP | +44216 |170474 |V0474 Car |090023.2-630004 |BY | 10.26 | 10.44 | |Hp| | | | | |HIP HIP | +44266 |170475 |V0475 Car |090051.3-575501 |SRB | 7.79 | 8.25 | |Hp| | | | | |HIP HIP | +44650 |170476 |V0476 Car |090552.6-693431 |EA: | 8.28 | 8.39 | |Hp| | | | | |HIP HIP | +45094 |170477 |V0477 Car |091108.3-581953 |EA | 8.34 | 8.56 | |Hp| | | | | |HIP HIP | +45615 |170478 |V0478 Car |091751.7-670303 |SRD | 6.28 | 6.30 | |Hp| | | | | |HIP HIP | +46063 |170479 |V0479 Car |092335.0-611136 |BY: | 10.07 | 10.22 | |Hp| | | | | |HIP HIP | +46147 |170480 |V0480 Car |092439.5-584121 |BE | 7.76 | 7.99 | |Hp| | | | | |HIP HIP | +46452 |170481 |V0481 Car |092826.3-722521 |ACV | 7.72 | 7.77 | |Hp| | | | | |HIP HIP | +46620 |170482 |V0482 Car |093023.4-582143 |SRB: | 5.85 | 5.95 | |Hp| | | | | |HIP HIP | +46985 |170483 |V0483 Car |093434.9-640151 |LPB | 7.40 | 7.43 | |Hp| | | | | |HIP HIP | +46978 |170484 |V0484 Car |093429.8-660720 |GCAS | 7.43 | 7.62 | |Hp| | | | | |HIP HIP | +47549 |170485 |V0485 Car |094137.3-683018 |BE | 7.07 | 7.12 | |Hp| | | | | |HIP HIP | +47591 |170486 |V0486 Car |094213.0-665453 |EB | 6.31 | 6.45 | |Hp| | | | | |HIP HIP | +47893 |170487 |V0487 Car |094540.6-571110 |ACV | 6.39 | 6.49 | |Hp| | | | | |HIP HIP | +47892 |170488 |V0488 Car |094540.4-700706 |LPB | 7.13 | 7.16 | |Hp| | | | | |HIP HIP | +47992 |170489 |V0489 Car |094654.6-693012 |SRB | 8.17 | 8.60 | |Hp| | | | | |HIP HIP | +48104 |170490 |V0490 Car |094827.1-573931 |SRB | 8.10 | 8.32 | |Hp| | | | | |HIP HIP | +48665 |170491 |V0491 Car *|095530.2-575717 |BY:+E: | 9.18 | 11.22 | |Hp| | | | | |HIP HIP | +48782 |170492 |V0492 Car |095659.8-690607 |LPB | 6.14 | 6.18 | |Hp| | | | | |HIP HIP | +48832 |170493 |V0493 Car *|095740.3-594252 |EA | 8.84 | 9.19 | |Hp| | | | | |HIP HIP | +48794 |170494 |V0494 Car |095705.5-703503 |LB: | 9.24 | 9.53 | |Hp| | | | | |HIP HIP | +49642 |170495 |V0495 Car |100756.6-621317 |ACV | 6.40 | 6.42 | |Hp| | | | | |HIP HIP | +49816 |170496 |V0496 Car |101010.6-710412 |SRB | 7.96 | 8.57 | |Hp| | | | | |HIP HIP | +49927 |170497 |V0497 Car |101136.3-595302 |BE | 8.99 | 9.12 | |Hp| | | | | |HIP HIP | +49945 |170498 |V0498 Car *|101149.9-613231 |E: | 7.14 | 7.24 | |Hp| | | | | |HIP HIP | +50272 |170499 |V0499 Car |101552.6-572230 |ACYG: | 7.91 | 7.99 | |Hp| | | | | |HIP HIP | +50368 |170500 |V0500 Car |101702.3-575447 |WR | 10.61 | 10.81 | |Hp| | | | | |HIP HIP | +50626 |170501 |V0501 Car |102027.4-720749 |SRB | 6.91 | 7.01 | |Hp| | | | | |HIP HIP | +50846 |170502 |V0502 Car |102257.6-604011 |LB: | 8.25 | 8.36 | |Hp| | | | | |HIP HIP | +51063 |170503 |V0503 Car |102600.2-574937 |BE: | 9.27 | 9.39 | |Hp| | | | | |HIP HIP | +51150 |170504 |V0504 Car |102655.7-573625 |ACYG: | 7.14 | 7.21 | |Hp| | | | | |HIP HIP | +51141 |170505 |V0505 Car |102649.3-731005 |SRB | 6.60 | 6.68 | |Hp| | | | | |HIP HIP | +51246 |170506 |V0506 Car |102802.9-571155 |LPB: | 6.77 | 6.80 | |Hp| | | | | |HIP HIP | +51265 |170507 |V0507 Car |102818.3-630952 |BE | 6.39 | 6.45 | |Hp| | | | | |HIP HIP | +51310 |170508 |V0508 Car |102849.3-605341 |ACYG | 7.66 | 7.70 | |Hp| | | | | |HIP HIP | +51429 |170509 |V0509 Car |103011.7-622922 |EA | 8.61 | 8.97 | |Hp| | | | | |HIP HIP | +51453 |170510 |V0510 Car |103033.7-612011 |GCAS | 7.47 | 7.67 | |Hp| | | | | |HIP HIP | +51424 |170511 |V0511 Car |103007.9-705317 |LB | 7.10 | 7.26 | |Hp| | | | | |HIP HIP | +51810 |170512 |V0512 Car |103506.2-692105 |SRB | 6.85 | 6.98 | |Hp| | | | | |HIP HIP | +51857 |170513 |V0513 Car |103542.0-581134 |ACYG | 6.72 | 6.76 | |Hp| | | | | |HIP HIP | +52043 |170514 |V0514 Car |103802.6-571523 |LPB | 5.83 | 5.86 | |Hp| | | | | |HIP HIP | +52046 |170515 |V0515 Car |103807.1-603256 |SRB | 7.79 | 8.03 | |Hp| | | | | |HIP HIP | +52274 |170516 |V0516 Car |104053.0-575608 |ACYG | 7.03 | 7.08 | |Hp| | | | | |HIP HIP | +52291 |170517 |V0517 Car |104105.5-731700 |SRB: | 7.86 | 7.95 | |Hp| | | | | |HIP HIP | +52370 |170518 |V0518 Car |104214.1-642759 |GCAS: | 4.60 | 4.76 | |Hp| | | | | |HIP HIP | +52405 |170519 |V0519 Car |104240.6-591257 |BE | 5.40 | 5.48 | |Hp| | | | | |HIP HIP | +52468 |170520 |V0520 Car |104332.3-603400 |LC: | 4.63 | 4.70 | |Hp| | | | | |HIP HIP | +52507 |170521 |V0521 Car |104410.0-720352 |LB | 7.23 | 7.69 | |Hp| | | | | |HIP HIP | +52827 |170522 |V0522 Car |104805.4-595509 |ACYG: | 6.04 | 6.12 | |Hp| | | | | |HIP HIP | +53109 |170523 |V0523 Car |105156.2-582456 |ACYG | 6.95 | 6.99 | |Hp| | | | | |HIP HIP | +53154 |170524 |V0524 Car |105230.9-571426 |ACYG | 5.28 | 5.34 | |Hp| | | | | |HIP HIP | +53470 |170525 |V0525 Car |105616.3-580311 |LB | 7.10 | 7.26 | |Hp| | | | | |HIP HIP | +53479 |170526 |V0526 Car |105624.5-573305 |ACYG: | 7.38 | 7.45 | |Hp| | | | | |HIP HIP | +53708 |170527 |V0527 Car |105920.6-580728 |DSCTC: | 9.04 | 9.09 | |Hp| | | | | |HIP HIP | +54021 |170528 |V0528 Car |110306.2-605439 |LC | 6.51 | 6.75 | |Hp| | | | | |HIP HIP | +54026 |170529 |V0529 Car |110312.8-630400 |EA | 8.19 | 8.58 | |Hp| | | | | |HIP HIP | +54130 |170530 |V0530 Car |110429.2-625744 |LC | 8.00 | 8.22 | |Hp| | | | | |HIP HIP | +54431 |170531 |V0531 Car |110816.5-613310 |LB: | 9.28 | 9.48 | |Hp| | | | | |HIP HIP | +54708 |170532 |V0532 Car |111203.5-582524 |SRB | 6.10 | 6.28 | |Hp| | | | | |HIP HIP | +54751 |170533 |V0533 Car |111236.0-601904 |ACYG: | 4.69 | 4.75 | |Hp| | | | | |HIP HIP | +55078 |170534 |V0534 Car *|111633.9-620656 |IA: | 10.73 | 11.06 | |Hp| | | | | |HIP HIP | +55140 |170535 |V0535 Car |111719.0-674925 |LB | 6.05 | 6.16 | |Hp| | | | | |HIP HIP | +55207 |170536 |V0536 Car |111818.3-625829 |LPB: | 8.87 | 8.97 | |Hp| | | | | |HIP HIP | +55238 |170537 |V0537 Car |111843.7-581111 |SRB | 6.24 | 6.56 | |Hp| | | | | |HIP HIP | +55355 |170538 |V0538 Car |112006.2-651507 |LB: | 7.64 | 8.20 | |Hp| | | | | |HIP HIP | +52762 |170540 |V0540 Car |104719.1-571932 |ACYG | 6.98 | 7.04 | |Hp| | | | | |75030 CPD | +48269 |170596 |V0596 Car |095028.5-605803 |IA | 8.44 | 8.75 | |V | | | | |B5Vne |78038 DM | +37763 |170606 |V0606 Car |074438.7-564232 |EA | 8.31 | 8.68 | 8.60 : |V |53042.680 | | 12.3192 |04 |B8/9III |79018 DM | +51425 |170655 |V0655 Car *|103008.8-665905 |EA | 6.19 | 6.36 | 6.35 |V |48175.220 | | 16.9330 |05 |B4IV |79009 DM | +54753 |170830 |V0830 Car |111236.4-583838 |BCEP: | 8.32 | 8.36 | |Hp| | | 0.112217 | |B1:Vn |80019 HIP | NL80_2 +38827 |179022 |khi Car *|075646.7-525857 |BCEP | 3.46 |( 0.015 )| |V | | | 0.101 | |B2IV |08395 CoD | +47854 |179112 |l Car |094514.8-623028 |DCEP | 3.28 | 4.18 | |V |40736.9 | | 35.53584 |26 |F6Ib-K0Ib |00001 05232| +118188|180001 |R Cas *|235824.9+512320 |M | 4.7 | 13.5 | |V |44463. | | 430.46 |40 |M6e-M10e |00001 00002| +1834 |180003 |T Cas *|002314.3+554733 |M | 6.9 | 13.0 | |V |44160. | | 444.83 |56 |M6e-M9.0e |00001 00002| +114515|180005 |V Cas |231140.7+594159 |M | 6.9 | 13.4 | |V |44605. | | 228.83 |48 |M5e-M8.5e |00001 00002| +4284 |180006 |W Cas *|005453.9+583349 |M | 7.8 | 12.5 | |V |44209. | | 405.57 |46 |C7,1e |00001 00002| +9057 |180007 |X Cas *|015638.1+591534 |M | 9.45 | 13.2 | |V |43922. | | 422.84 |55 |C5,4e(N1e) |00001 00002| +116556|180011 |RS Cas *|233716.1+622544 |DCEP | 9.53 | 10.36 | |V |42773.487 | | 6.295983 |27 |F7-G1Ib |08632 07920| +5589 |180013 |RU Cas |011141.4+650108 |CST: | 5.50 | 5.60 | |V | | | | |B9IV | 02061| +7548 |180015 |RW Cas *|013714.0+574533 |DCEP | 8.62 | 9.76 | |V |35575.227 | | 14.7949 |37 |F6-G5 |00001 00884| +14542 |180016 |RX Cas *|030745.8+673439 |EB/GS | 8.64 | 9.49 |< 9.49 |V |16250.910 | | 32.31211 | |K1III+A5eIII |05031 06225| +117690|180017 |RY Cas *|235207.0+584430 |DCEP | 9.38 | 10.39 | |V |37344.602 | | 12.13726 |41 |F5-G3Ib |03157 00884| +13133 |180018 |RZ Cas *|024855.5+693803 |EA/SD | 6.18 | 7.72 | 6.26 |V |43200.3063 | | 1.195247 |17 *|A2.8V |00018 05056| +781 |180019 |SS Cas |000936.5+513401 |M | 8.8 | 13.3 | |V |44208. | | 140.57 |48 |M3e-M8e |00001 00002| +1401 |180020 |ST Cas |001732.1+501714 |SR | 11.6 | 12.4 | |p | | | | |C4,4(N3) |00882 00103| +13367 |180021 |SU Cas *|025158.8+685319 |DCEPS | 5.70 | 6.18 | |V |38000.598 | | 1.949319 |40 |F5Ib-II-F7Ib-II |00883 05056| +116705|180022 |SV Cas *|233901.4+521545 |SRA | 9.1 | 12.5 | |p |37964. | | 264.5 |42 |M6.5 |00001 BD | +114160|180023 |SW Cas |230710.1+583315 |DCEP | 9.32 | 10.01 | |V |42989.590 | | 5.440950 |31 |F6-G2 |08632 00884| +871 |180024 |SX Cas *|001042.1+545329 |EA/GS | 8.96 | 9.83 | 9.32 |V |39009.525 | | 36.56375 |10 |B7eIII+K3III |05067 00102| +1213 |180025 |SY Cas *|001509.8+582527 |DCEP | 9.40 | 10.24 | |V |41682.230 | | 4.071098 |25 |F5-G0 |08300 00887| +11420 |180026 |SZ Cas *|022713.8+592738 |DCEPS | 9.60 | 10.02 | |V |39059.47 | | 13.63289 |44 |F6-G4Ib |05074 00884| +2085 |180028 |TU Cas *|002619.4+511649 |CEP(B) | 6.88 | 8.18 | |V |41704.839 | | 2.139298 |31 |F3II-F5II |05075 BD | +1550 |180029 |TV Cas *|001918.7+590821 |EA/SD | 7.22 | 8.22 | 7.34 |V |44602.4534 | | 1.8125956 |18 |B9V+F7IV |00001 05100| +12906 |180030 |TW Cas *|024554.8+654335 |EA | 8.32 | 8.98 | 8.40 |V |42008.3873 | | 1.4283240 |16 |B9V+A0: |08720 00010| +117763|180033 |TZ Cas |235256.2+610008 |LC | 8.86 | 10.5 | |V | | | | |M2Iab |00104 BD | +117576|180034 |UU Cas *|235039.5+605439 |EB/DM | 10.4 | 10.8 | 10.5 |p |28751.72 | | 8.51929 | |B0.5III |00893 00884| +5658 |180039 |UZ Cas *|011241.2+611248 |DCEP | 10.93 | 11.73 | |V |36982.266 | | 4.259459 |26 |F6-G2 |00321 00321| +8614 |180040 |VV Cas *|015107.0+595318 |DCEP | 10.26 | 11.20 | |V |42836.853 | | 6.207059 |26 |F6-G2Ib |08632 00884| +5138 |180041 |VW Cas *|010548.2+614518 |DCEP | 10.36 | 11.07 | |V |42778.693 | | 5.993859 |33 |F6-G2 |08632 00884| +4008 |180043 |VY Cas |005126.0+625515 |SRB | 10.5 | 12.0 | |p | | | 100. | |M6-M7 |00898 00884| +7260 |180045 |WW Cas |013332.7+574505 |LB | 9.1 | 11.7 | |V | | | | |C5,5(N1) | 00685| +99 |180048 |WZ Cas *|000115.9+602119 |SRB | 9.4 | 11.4 | |p | | | 186. | |C9,2JLi(N1p) |00001 00002| +3886 |180050 |XY Cas |004953.3+600739 |DCEP | 9.61 | 10.26 | |V |42006.786 | | 4.501697 |31 |F6Ib-G2Ib |08300 00884| +3572 |180053 |YZ Cas *|004539.1+745917 |EA/DM | 5.71 | 6.12 | 5.78 |B |28733.4218 | | 4.467224 |15 |A2V+F2V |00905 BD | +2644 |180054 |ZZ Cas *|003330.4+623040 |EB/KE | 10.7 | 11.1 | 10.9 |p |33437.495 | | 1.243527 | |B3 |00001 00522| +6191 |180055 |AA Cas |011925.7+561945 |LB | 8.3 | 9.4 | |V | | | | |M6III |00179 04551| +12235 |180056 |AB Cas *|023731.5+711816 |EA+DSCT | 10.10 | 11.85 | 10.28 |V |42714.4627 | | 1.3668738 |18 *|A3+KV |00001 00906| +1415 |180068 |AO Cas *|001743.1+512559 |ELL/KE | 6.07 | 6.24 | 6.24 |V |32191.189 | | 3.523487 | |O9III+O9III |03323 BD | +6174 |180070 |AQ Cas *|011910.4+622348 |EA/D | 10.06 | 11.0 | 10.4 |V |26282.50 | | 11.72115 |18 |B3+B9: |00001 00192| +115990|180071 |AR Cas *|233001.9+583256 |EA/DM | 4.82 | 4.96 | 4.86 |V |35792.8948 | | 6.0663309 |06 *|B3IV-V |06470 BD | +796 |180082 |BD Cas *|000951.4+613051 |CWB | 10.84 | 11.21 | |V |41932.032 | | 3.650900 |47 | |08300 00915| +4279 |180090 |BM Cas *|005446.0+640505 |EB/GS | 8.78 | 9.31 | 8.98 |V |25772.9 | | 197.28 | |A5Ia-F0eIab |03257 08828| +5846 |180093 |BP Cas |011501.1+653558 |DCEP | 10.55 | 11.33 | |V |36991.353 | | 6.272724 |28 |F6-G1 |05693 00920| +8312 |180102 |BY Cas *|014711.9+612521 |DCEPS | 10.06 | 10.58 | |V |41774.191 | | 3.223316 |50 |F5-F7 |08300 00921| +15063 |180104 |CC Cas *|031405.3+593349 |EB/DM | 7.06 | 7.30 | 7.26 |V |43818.166 | | 3.368753 | |O9IV+O9IV |00001 BD | +117154|180105 |CD Cas |234502.6+630014 |DCEP | 10.37 | 11.15 | |V |37023.312 | | 7.80089 |34 |F6-G5 |03157 00924| +118174|180107 |CF Cas *|235818.0+611316 |DCEP | 10.80 | 11.47 | |V |37022.191 | | 4.87522 |29 |F8Ib-G0Ib |05295 00137| +115390|180109 |CH Cas *|232228.4+624526 |DCEP | 10.37 | 11.45 | |V |36912.426 | | 15.08619 |40 |F3pIb-F6 |03330 00137| +115925|180125 |CY Cas *|232912.8+632228 |DCEP | 11.07 | 12.21 | |V |40119.466 | | 14.37686 |34 |G0Ib-G2Ib |07920 00137| +118122|180127 |DD Cas *|235735.0+624306 |DCEP | 9.56 | 10.18 | |V |42780.493 | | 9.812027 |50 |F7-G1 |08632 03203| +12817 |180129 |DF Cas *|024443.3+612753 |DCEP | 10.53 | 11.13 | |V |41719.622 | | 3.832472 |30 |F6-G4: |08300 00930| +2347 |180134 |DL Cas *|002958.6+601243 |DCEP | 8.63 | 9.26 | |V |42780.334 | | 8.000669 |33 |F5Ib-G2Ib |08632 00932| +12543 |180137 |DO Cas *|024124.2+603312 |EB/KE | 8.39 | 9.01 | 8.61 |V |33926.4573 | | 0.6846661 | |A4V |05895 BD | +116684|180145 |DW Cas |233848.4+592331 |DCEP | 10.81 | 11.41 | |V |36980.605 | | 4.99776 |28 |F7 |03157 00098| +1162 |180176 |FM Cas |001428.2+561511 |DCEP | 8.82 | 9.47 | |V |42817.713 | | 5.809284 |30 |F7-G0I |08632 02288| +12416 |180198 |GP Cas |023950.4+593551 |LC | 11.5 | 12.7 | |p | | | | |M2.0Iab |00911 02282| +7139 |180230 |IM Cas |013200.3+621945 |SRB | 10.2 | 11.0 | |p |27990. | | 323. | |M2 |00911 02340| +390 |180241 |IX Cas *|000450.8+501406 |CWA | 11.19 | 11.77 | |V |42779.743 | | 9.153375 |49 |F7 |08632 00098| +779 |180247 |KN Cas |000936.4+624004 |LC | 10.5 | 11.2 | |p | | | | |M1epIb+B2.6V |00812 BD | +1263 |180283 |MU Cas *|001551.6+602554 |EB/DM | 10.6 | 10.9 | 10.8 |p |27962.509 | | 3.861145 | |B8 |00176 02376| +1945 |180292 |NQ Cas |002434.9+541738 |LB | 10.6 | 11.52 | |B | | | | |C4,5J(R5) |00176 02376| +5391 |180311 |OX Cas *|010900.1+612815 |EA/DM | 9.90 | 10.35 | 10.30 |V |41269.6355 | | 2.4893427 |15 |B1V |07383 04190| +117078|180324 |PZ Cas *|234403.3+614722 |SRC | 11.16 | 12.9 | |B |34150. | | 925. | |M2-4Ia |06803 02225| +116018|180358 |V0358 Cas |233027.4+575834 |LC | 11.5 | 13.8 | |p | | | | |M3Ia-Iab |02267 02376| +1222 |180363 |V0363 Cas *|001514.3+602026 |RRAB | 10.29 | 10.73 | |V |36142.592 | | 0.5465353 |40 |F3-F7 |03633 02551| +14936 |180368 |V0368 Cas |031235.5+595511 |EA | 8.45 | 9.2 | |B |25554.320 | | 4.451642 |12 |B3III |02594 BD | +117957|180373 |V0373 Cas *|235533.8+572444 |E:/GS | 5.9 | 6.3 | |V |36491.237 | | 13.4192 | |B0.5II+B0.5II |02646 BD | +1543 |180377 |V0377 Cas *|001914.3+594218 |DSCT: | 7.78 | 7.83 | |V | | | 0.03 | |F0 |04005 BD | +9042 |180391 |V0391 Cas |015631.7+701214 |LB | 9.2 | 10.0 | |p | | | | |M4 |04024 BD | +116210|180436 |V0436 Cas |233247.6+575420 |ACV | 7.39 | 7.84 | |V |38666. | | 159.0 | |A0p(Sr-Cr-Eu) |07219 BD | +6093 |180465 |V0465 Cas |011813.9+574811 |SRB | 7.7 | 8.9 | |p | | | 60. | |M5 |07112 03980| +6231 |180466 |V0466 Cas *|011953.6+581831 |LC | 9.8 | 10.74 | |B | | | | |M1.5Ib |05394 05397| +12495 |180482 |V0482 Cas *|024044.9+611656 |BCEP | 8.27 | 8.31 | |B | | | 0.37822 : | |O9.5I-II |05522 BD | +3346 |180486 |V0486 Cas |004238.0+522014 |E: | 6.91 |( 0.04 )| |V |39012.27 | | 5.551 | |B1III |05847 BD | +5239 |180487 |V0487 Cas |010659.7+634623 |SRD | 7.44 | 7.74 | |V | | | 134. | |G0-G4Ia |05848 BD | +113561|180509 |V0509 Cas *|230005.1+565643 |SRD | 4.75 | 5.5 | |V | | | | |F8e-KIa-0+B1V |08863 BD | +3965 |180526 |V0526 Cas *|005057.4+513029 |DSCTC | 6.34 | 6.37 | |V | | | | |F5III |07695 BD | +11604 |180528 |V0528 Cas |022937.7+603926 |BCEP: | 8.69 | 8.86 | |B | | | | |B5V |06844 BD | +11607 |180529 |V0529 Cas |022943.5+604039 |GCAS | 8.44 | 8.86 | |V | | | | |B5Vea |06844 BD | +6084 |180538 |V0538 Cas |011807.2+614304 |ISB | 9.4 | 10.6 | |p | | | | |K5III |08870 05394| +7598 |180539 |V0539 Cas |013752.4+624749 |LB: | 8.36 | 8.72 | |V | | | | |M2 |07315 BD | +9604 |180540 |V0540 Cas *|020330.5+693456 |ACV | 7.73 | 7.75 | |V |40854.7 | | 34.9 | |A0p(Cr) |06992 BD | +2552 |180547 |V0547 Cas *|003229.4+671408 |UV | 11.5 | 12.01 | |B | | | | |M2.5Ve |07835 08874| +4717 |180551 |V0551 Cas *|010033.4+602641 |ACV | 8.43 | 8.77 | |V |41206. | | 69.0 | |A0p(Sr-Cr) |07893 BD | +7965 |180557 |V0557 Cas |014220.5+680235 |ACV | 5.55 | 5.64 | |V |40974.88 | | 3.1848 |50 |B9p(Si-Sr-Cr) |08819 BD | +9906 |180558 |V0558 Cas |020731.8+652856 |E | 9.0 | 9.6 | |B | | | | |A-F |03835 07846| +11318 |180559 |V0559 Cas *|022540.1+613259 |EA | 7.01 | 7.23 | 7.21 |V |41357.560 | | 1.58064 |12 |B9V |07295 BD | +117447|180566 |V0566 Cas *|234850.2+621252 |ACYG | 5.34 | 5.45 | |V | | | | |A3eqIa-0 |07850 BD | +418 |180567 |V0567 Cas |000506.2+611850 |ACV | 5.71 | 5.81 | |V |40482.444 | | 6.4322 |50 |B9p(Hg-Mn) |07955 BD | +3401 |180594 |V0594 Cas |004318.3+615440 |INA | 10.9 | 12.00 | |B | | | | |O9.5e |08328 BD | +8025 |180595 |V0595 Cas |014302.7+563046 |LC | 8.75 | 9.05 | |V | | | | |M2Ib |02556 BD | +9481 |180598 |V0598 Cas *|020159.1+615418 |LB | 7.38 | 7.54 | |V | | | | |M3-4III |08875 BD | +10904 |180605 |V0605 Cas |022022.5+594017 |LC | 8.22 | 8.48 | |V | | | | |M2Iab |02556 BD | +12469 |180615 |V0615 Cas *|024031.7+611346 |* | 11.2 | 11.9 | |B | | | | |B1eIb: |08346 03544| +14827 |180623 |V0623 Cas |031125.3+575411 |LB: | 9.0 | 9.8 | |p | | | | |C4,5J(R5) |02576 BD | +113373|180627 |V0627 Cas *|225741.0+584913 |SR: | 12.4 | 13.24 | |V | | | | |M2eII-III |08433 08893| +114995|180628 |V0628 Cas |231725.6+605043 |INA | 10.88 | 11.84 | |V | | | | |Beq |06415 04002| +7192 |180636 |V0636 Cas |013243.2+633538 |DCEPS | 7.09 | 7.26 | |V |44001.355 | | 8.377 |50 |G0Ib |08745 BD | +113797|180638 |V0638 Cas *|230243.9+551411 |ACV | 5.7 |( 0.10 )| |U |44115.24 | | 5.36 | |B9IIIp(He weak) |08747 BD | +274 |180639 |V0639 Cas |000325.7+633826 |ACYG | 6.19 | 6.28 | |V | | | | | |67108 BD | +518 |180640 |V0640 Cas |000615.8+582612 |E: | 5.96 |( 0.066 )| |V | | | | | |67109 BD | +13290 |180648 |V0648 Cas |025104.0+575120 |LC | 11.8 | 12.6 | |p | | | | | |67118 BD | +114904|180649 |V0649 Cas |231627.1+615747 |EA/DM | 6.53 |( 0.10 )| |V | | | | | |67128 BD | +117430|180650 |V0650 Cas |234839.0+645235 |ACV | 6.41 |( 0.02 )| |V | | | | | |67134 BD | +6081 |180662 |V0662 Cas |011802.7+651730 |XP: | 11.06 |( 0.10 : )| |V | | | | | |69066 69067| +14537 |180704 |V0704 Cas |030740.5+602922 |SR | 11.4 | 12.1 | |p | | | | | |72022 BD | +114817|180728 |V0728 Cas |231529.2+615157 |RS: | 8.1 |( 0.06 )| |V | | | | | |73082 BD | +336 |180739 |V0739 Cas |000416.0+650911 |LB | 7.62 | 7.70 | |Hp| | | | | |HIP HIP | +723 |180740 |V0740 Cas |000857.2+662724 |SRD: | 8.69 | 8.74 | |Hp| | | | | |HIP HIP | +834 |180741 |V0741 Cas |001010.5+643848 |EB | 8.26 | 8.51 | |Hp| | | | | |HIP HIP | +940 |180742 |V0742 Cas *|001137.1+581243 |BE | 7.11 | 7.17 | |Hp| | | | | |HIP HIP | +1652 |180743 |V0743 Cas |002043.6+615247 |SRB | 6.81 | 6.91 | |Hp| | | | | |HIP HIP | +1735 |180744 |V0744 Cas |002156.7+532851 |EA | 8.44 | 8.70 | |Hp| | | | | |HIP HIP | +1805 |180745 |V0745 Cas *|002253.3+621429 |EB | 8.06 | 8.16 | |Hp| | | | | |HIP HIP | +1921 |180746 |V0746 Cas *|002415.7+520112 |LPB | 5.54 | 5.56 | |Hp| | | | | |HIP HIP | +2271 |180747 |V0747 Cas *|002857.0+482449 |LB: | 6.89 | 7.16 | |Hp| | | | | |HIP HIP | +2596 |180748 |V0748 Cas |003258.9+483930 |SRB | 10.01 | 10.40 | |Hp| | | | | |HIP HIP | +2667 |180749 |V0749 Cas |003348.9+581255 |LB: | 8.62 | 8.74 | |Hp| | | | | |HIP HIP | +2808 |180750 |V0750 Cas |003544.2+494411 |LB: | 8.89 | 9.02 | |Hp| | | | | |HIP HIP | +2813 |180751 |V0751 Cas |003547.7+554226 |LPB | 7.88 | 7.91 | |Hp| | | | | |HIP HIP | +2899 |180752 |V0752 Cas |003645.4+485708 |LB | 7.75 | 8.54 | |Hp| | | | | |HIP HIP | +3171 |180753 |V0753 Cas |004024.8+593050 |LB | 7.16 | 7.26 | |Hp| | | | | |HIP HIP | +3294 |180754 |V0754 Cas |004201.9+535733 |SRD | 8.76 | 9.07 | |Hp| | | | | |HIP HIP | +3367 |180755 |V0755 Cas |004250.1+641729 |EA/GS: | 7.14 | 7.30 | |V | | | | | |HIP HIP | +3513 |180756 |V0756 Cas |004450.4+601833 |DSCTC: | 8.75 | 8.83 | |Hp| | | | | |HIP HIP | +3839 |180757 |V0757 Cas |004916.1+682802 |LPB | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +4451 |180758 |V0758 Cas |005658.1+561424 |LB: | 8.57 | 8.69 | |Hp| | | | | |HIP HIP | +4918 |180759 |V0759 Cas |010309.9+530826 |LB: | 7.43 | 7.61 | |Hp| | | | | |HIP HIP | +5161 |180760 |V0760 Cas |010604.0+574523 |LPB | 7.12 | 7.17 | |Hp| | | | | |HIP HIP | +5688 |180761 |V0761 Cas |011309.8+614222 |ACV: | 6.38 | 6.41 | |Hp| | | | | |HIP HIP | +5926 |180762 |V0762 Cas |011611.9+714438 |BY: | 5.92 | 6.02 | |Hp| | | | | |HIP HIP | +5976 |180763 |V0763 Cas |011647.9+751202 |SRB | 8.27 | 8.43 | |Hp| | | | | |HIP HIP | +6027 |180764 |V0764 Cas |011726.3+573756 |BE | 6.85 | 6.93 | |Hp| | | | | |HIP HIP | +6171 |180765 |V0765 Cas |011909.1+581726 |EB | 10.72 | 11.11 | |Hp| | | | | |HIP HIP | +6287 |180766 |V0766 Cas |012040.6+513541 |EA | 7.10 | 7.51 | |Hp| | | | | |HIP HIP | +6934 |180767 |V0767 Cas |012920.6+614542 |SRB | 8.87 | 9.04 | |Hp| | | | | |HIP HIP | +7103 |180768 |V0768 Cas |013131.6+594608 |LPB: | 10.09 | 10.18 | |Hp| | | | | |HIP HIP | +7512 |180769 |V0769 Cas |013647.0+632452 |LPB: | 7.59 | 7.65 | |Hp| | | | | |HIP HIP | +7755 |180770 |V0770 Cas |013951.7+605408 |LB | 7.45 | 8.13 | |Hp| | | | | |HIP HIP | +7936 |180771 |V0771 Cas |014200.9+614744 |BE: | 9.31 | 9.48 | |Hp| | | | | |HIP HIP | +7939 |180772 |V0772 Cas |014202.9+610218 |ACV: | 6.67 | 6.72 | |Hp| | | | | |HIP HIP | +8115 |180773 |V0773 Cas |014418.0+573212 |EA | 6.21 | 6.30 | |Hp| | | | | |HIP HIP | +8297 |180774 |V0774 Cas |014700.0+602220 |SRB | 8.35 | 8.67 | |Hp| | | | | |HIP HIP | +8693 |180775 |V0775 Cas |015150.5+632715 |EA: | 9.73 | 9.93 | |Hp| | | | | |HIP HIP | +8821 |180776 |V0776 Cas |015323.4+700233 |EW: | 8.94 | 9.09 | |Hp| | | | | |HIP HIP | +8980 |180777 |V0777 Cas |015542.9+591624 |BE | 6.95 | 7.12 | |Hp| | | | | |HIP HIP | +9211 |180778 |V0778 Cas |015828.9+591609 |SRC | 8.19 | 8.36 | |Hp| | | | | |HIP HIP | +9494 |180779 |V0779 Cas |020209.3+753008 |EA: | 6.59 | 6.65 | |Hp| | | | | |HIP HIP | +9538 |180780 |V0780 Cas |020236.4+594117 |BE | 8.08 | 8.24 | |Hp| | | | | |HIP HIP | +9635 |180781 |V0781 Cas |020349.1+641415 |SRD | 7.58 | 7.68 | |Hp| | | | | |HIP HIP | +9997 |180782 |V0782 Cas |020845.4+650215 |BE | 7.66 | 7.74 | |Hp| | | | | |HIP HIP | +10147 |180783 |V0783 Cas |021030.9+640531 |BE | 9.81 | 10.00 | |Hp| | | | | |HIP HIP | +10141 |180784 |V0784 Cas |021025.5+595847 |DSCTC | 6.70 | 6.76 | |Hp| | | | | |HIP HIP | +10173 |180785 |V0785 Cas |021049.9+644945 |EA | 9.33 | 9.64 | |Hp| | | | | |HIP HIP | +10243 |180786 |V0786 Cas |021143.9+604245 |ACYG: | 8.67 | 8.78 | |Hp| | | | | |HIP HIP | +10486 |180787 |V0787 Cas |021513.0+640128 |BE | 8.00 | 8.24 | |Hp| | | | | |HIP HIP | +11894 |180788 |V0788 Cas |023326.6+705723 |LPB | 7.88 | 7.92 | |Hp| | | | | |HIP HIP | +11978 |180789 |V0789 Cas |023430.7+764305 |SRB | 6.70 | 6.84 | |Hp| | | | | |HIP HIP | +12009 |180790 |V0790 Cas |023448.1+603308 |ACYG: | 8.42 | 8.54 | |Hp| | | | | |HIP HIP | +12178 |180791 |V0791 Cas |023655.3+595301 |EB | 7.78 | 7.94 | |Hp| | | | | |HIP HIP | +13016 |180792 |V0792 Cas |024722.3+591711 |BCEP | 9.26 | 9.45 | |Hp| | | | | |HIP HIP | +13221 |180793 |V0793 Cas |025012.0+725452 |EB | 7.93 | 8.22 | |Hp| | | | | |HIP HIP | +13276 |180794 |V0794 Cas |025053.5+622204 |EA | 7.88 | 8.10 | |Hp| | | | | |HIP HIP | +13474 |180795 |V0795 Cas |025334.7+734616 |E | 8.97 | 9.19 | |Hp| | | | | |HIP HIP | +13446 |180796 |V0796 Cas |025309.8+584556 |LPB | 8.062 | 8.112 | |Hp| | | | | |HIP HIP | +13797 |180797 |V0797 Cas |025737.8+610744 |LPB: | 7.71 | 7.74 | |Hp| | | | | |HIP HIP | +14049 |180798 |V0798 Cas |030053.8+593958 |ACV | 7.33 | 7.37 | |Hp| | | | | |HIP HIP | +14377 |180799 |V0799 Cas |030527.5+613918 |EA | 8.80 | 9.15 | |Hp| | | | | |HIP HIP | +14526 |180800 |V0800 Cas |030735.0+754813 |LB | 7.05 | 7.22 | |Hp| | | | | |HIP HIP | +14626 |180801 |V0801 Cas |030854.2+622305 |BE | 6.48 | 6.57 | |Hp| | | | | |HIP HIP | +14932 |180802 |V0802 Cas |031233.6+691414 |I: | 10.60 | 10.90 | |Hp| | | | | |HIP HIP | +15139 |180803 |V0803 Cas |031510.9+595443 |BE: | 9.12 | 9.28 | |Hp| | | | | |HIP HIP | +15408 |180804 |V0804 Cas |031839.7+771924 |LB: | 8.28 | 8.38 | |Hp| | | | | |HIP HIP | +16319 |180805 |V0805 Cas |033019.4+715150 |SRB | 6.30 | 6.51 | |Hp| | | | | |HIP HIP | +113897|180806 |V0806 Cas |230357.6+541154 |E: | 9.00 | 9.20 | |Hp| | | | | |HIP HIP | +114552|180807 |V0807 Cas |231213.0+593559 |ELL: | 10.89 | 11.02 | |Hp| | | | | |HIP HIP | +114815|180808 |V0808 Cas |231527.9+620445 |BE: | 9.76 | 9.93 | |Hp| | | | | |HIP HIP | +115141|180809 |V0809 Cas |231923.8+624423 |LC | 6.58 | 6.71 | |Hp| | | | | |HIP HIP | +115224|180810 |V0810 Cas |232019.0+554828 |BE | 8.56 | 8.69 | |Hp| | | | | |HIP HIP | +115244|180811 |V0811 Cas |232034.3+581639 |BE | 8.62 | 8.79 | |Hp| | | | | |HIP HIP | +115267|180812 |V0812 Cas |232048.9+622445 |ACV | 8.12 | 8.18 | |Hp| | | | | |HIP HIP | +115368|180813 |V0813 Cas |232210.5+562054 |BE | 7.90 | 8.02 | |Hp| | | | | |HIP HIP | +115952|180814 |V0814 Cas |232931.3+514107 |LB | 7.55 | 7.80 | |Hp| | | | | |HIP HIP | +116507|180815 |V0815 Cas |233631.4+510737 |LB: | 8.77 | 8.88 | |Hp| | | | | |HIP HIP | +116948|180816 |V0816 Cas |234220.9+643055 |LB | 6.50 | 6.63 | |Hp| | | | | |HIP HIP | +117205|180817 |V0817 Cas |234555.1+544408 |BE | 8.26 | 8.61 | |Hp| | | | | |HIP HIP | +117514|180818 |V0818 Cas |234953.1+621251 |BE | 7.67 | 7.81 | |Hp| | | | | |HIP HIP | +117830|180819 |V0819 Cas |235350.0+605112 |ACYG: | 7.01 | 7.09 | |Hp| | | | | |HIP HIP | +118139|180820 |V0820 Cas |235747.7+594312 |BE | 8.19 | 8.27 | |Hp| | | | | |HIP HIP | +118223|180821 |V0821 Cas |235849.2+534020 |EA | 8.27 | 8.62 | |Hp| | | | | |HIP HIP | +181 |180822 |V0822 Cas |000217.7+604211 |SRB | 6.75 | 6.84 | |Hp| | | | | |HIP HIP | +3415 |180863 |V0863 Cas |004328.4+644535 |WR | 10.54 |( 0.09 )| |V | | | | | |76007 76008| +4907 |180966 |V0966 Cas |010257.2+691337 |BY | 7.67 |( 0.02 )| |V | | | 12.165 | |G5V |78018 DM | +8362 |180987 |V0987 Cas |014744.8+635109 |BY | 5.63 |( 0.05 )| |V | | | 21.7 | |K0V |78005 DM | +10531 |180989 |V0989 Cas |021542.5+674020 |BY | 7.13 |( 0.03 )| |V | | | 6.79 | |K2V |78018 DM | +10618 |180990 |V0990 Cas *|021641.8+671702 |* | 7.03 |( 0.02 )| |V | | | 7.48 : | |K4II |78018 DM | +623 |181006 |V1006 Cas *|000737.5+533136 |GDOR | 8.37 |( 0.13 )| |V | | | 0.9004 | |F2V |79111 DM | +5674 |181012 |V1012 Cas *|011253.9+513609 |GDOR | 7.68 |( 0.06 )| |B | | | 0.5486 | |F1V |79219 DM | +118077|181022 |V1022 Cas *|235708.5+554221 |EA | 5.56 | 5.68 | 5.59 : |Hp|49040.829 | | 12.1564 |04 : |F1/6V+F3V |79213 DM | +2232 |181036 |V1036 Cas *|002817.1+634406 |INT: | 9.40 |( 0.10 )| |V | | | | |G0 |80039 HIP | NL80_1 +7238 |181123 |V1123 Cas *|013316.3+603802 |EA | 10.91 |( 0.20 )|( 0.11 )|I |51427.8223 | | 4.5020 : |08 |B2V |80088 80088| NL80_1 +7280 |181132 |V1132 Cas |013345.5+603723 |GDOR | 8.24 | 8.30 | |I | | | 0.62576 | |FOV |80HIP 80088| NL80_1 +3179 |189001 |alf Cas *|004030.4+563214 |CST: | 2.20 | 2.27 | |V | | | | |K0IIIa | BD | +746 |189002 |bet Cas *|000910.7+590859 |DSCTC | 2.25 | 2.31 | |V |38991.876 | | 0.10430 |40 |F2III-IV |03902 BD | +6686 |189004 |del Cas *|012549.0+601407 |EA: | 2.68 | 2.76 | 2.75 |V |20161. | | 759. | |A5V |05160 BD | +3821 |189007 |eta Cas |004906.3+574855 |RS: | 3.58 | 3.63 | |Hp| | | | | |HIP HIP | +11569 |189009 |iot Cas *|022903.9+672409 |ACV | 4.45 | 4.53 | |V |37248.313 | | 1.74050 |35 |B9p(Cr-Sr) |08824 BD | +2599 |189010 |kap Cas *|003300.0+625554 |ACYG | 4.22 | 4.30 | |B | | | | |B1eaIa |08876 BD | +3504 |189015 |omi Cas *|004443.5+481704 |GCAS | 4.50 | 4.62 | |V | | | | |B2-5eIV |07855 BD | +3414 |189016 |pi. Cas *|004328.1+470128 |ELL | 5.00 | 5.02 | |Hp| | | | | |HIP HIP | +117863|189017 |rho Cas *|235423.0+572958 |SRD | 4.1 | 6.2 | |V | | | 320. | |F8pIa-K0pIa-0 |08877 BD | +69754 |190001 |R Cen *|141634.3-595449 |M | 5.3 | 11.8 | 8.3 |V |41942. | | 546.2 | |M4e-M8IIe |00001 00002| +60534 |190002 |S Cen |122433.9-492625 |SR | 9.2 | 10.7 | |p | | | 65. | |C4,5(Nbp) |00003 05464| +66825 |190003 |T Cen |134145.6-333551 |SRA | 5.5 | 9.0 | |V |43242. | | 90.44 |47 |K0:e-M4II:e |00001 00002| +61286 |190004 |U Cen |123330.8-543934 |M | 7.0 | 14.0 | |V |39941. | | 220.28 |47 |M3II:e-M5IIe |00001 00002| +71116 |190005 |V Cen *|143233.1-565316 |DCEP | 6.43 | 7.21 | |V |40308.60 | | 5.493839 |26 |F5Ib/II-G0 |05060 CoD | +58107 |190006 |W Cen |115501.3-591514 |M | 7.60 | 13.7 | |V |41786. | | 201.57 |47 |M3e-M8(III)e |00001 00002| +57642 |190007 |X Cen |114911.8-414527 |M | 7.0 | 13.8 | |V |41709. | | 315.1 |41 |M5e-M6.5e |00001 00002| +70969 |190008 |Y Cen |143058.6-300552 |SRB: | 8.9 | 10.0 | |p | | | 180. : | |M4e-M7 |00005 CoD | +69779 |190010 |RR Cen *|141657.2-575116 |EW/KE: | 7.27 | 7.68 | 7.63 |V |24231.0981 | | 0.60569029 | *|A9/F0V |06477 08830| +67359 |190012 |RT Cen *|134820.9-365145 |M | 8.1 | 13.6 | |V |42098. | | 255.02 |47 |M6II:e |00001 00002| +59267 |190013 |RU Cen |120923.8-452535 |RV | 8.7 | 10.7 | |p |28015.51 | | 64.727 | |A7Ib-G2pe |03510 05464| +66466 |190014 |RV Cen |133736.0-562835 |M | 7.0 | 10.8 | |V |40960. | | 446.0 |56 |N3e |00001 00002| +67626 |190016 |RX Cen |135125.4-365638 |M | 8.7 |< 15. | |V |42114. | | 327.90 |38 |M5e |00001 00002| +67556 |190026 |SZ Cen *|135035.1-582957 |EA/D | 8.3 | 8.9 | 8.7 |p |41386.7466 | | 4.107983 |15 |A6III |05213 CoD | +62071 |190036 |UW Cen *|124317.2-543141 |RCB | 9.1 |< 14.5 | |V | | | | |K |00003 05464| +65242 |190037 |UX Cen |132209.8-641308 |SRB | 10.1 | 10.6 | |p | | | 122. : | |C(Nb) |00003 CoD | +64778 |190038 |UY Cen |131631.8-444216 |SR | 9.22 | 11.2 | |B | | | 114.6 : | |SC |00018 CoD | +56991 |190039 |UZ Cen *|114058.5-624133 |CEP(B) | 8.30 | 9.12 | |V |40746.1 | | 3.33434 |27 |F3Ib/II |05119 CoD | +66189 |190041 |VW Cen *|133359.0-640320 |DCEP | 9.67 | 10.72 | |V |44023.17 | | 15.03618 |38 | |02309 00022| +57895 |190044 |VZ Cen *|115228.8-613127 |EA | 8.34 | 8.6 | 8.4 |B |29125.519 | | 4.9287012 |20 |B2III/IV |00007 04641| +66696 |190049 |XX Cen |134018.6-573648 |DCEP | 7.30 | 8.31 | |V |40366.24 | | 10.954348 |49 |F6-G4(F7/8II) |05060 CoD | +60502 |190051 |XZ Cen |122412.0-353802 |M | 7.8 | 10.7 | |V |30136. | | 290.7 | |M5e |00026 05464| +55726 |190078 |AY Cen |112505.8-604405 |DCEP | 8.58 | 9.16 | |V |36733.520 | | 5.30975 |32 |G1I-G5 |02309 CoD | +55736 |190079 |AZ Cen *|112513.0-612209 |DCEPS | 8.41 | 8.80 | |V |35223.36 | | 3.21068 |40 |F7 |02431 CoD | +57978 |190080 |BB Cen |115333.5-625108 |DCEPS | 9.86 | 10.48 | |V |40990.27 | | 3.99766 |45 |F5 |08834 00021| +73533 |190083 |BE Cen |150146.2-301441 |M | 9.8 | 14.0 | |p |28740. | | 201.56 |45 |Me |00005 08087| +57649 |190088 |BK Cen *|114916.0-630443 |CEP(B) | 9.60 | 10.38 | |V |35221.711 | | 3.173887 |30 |G5 |05316 04655| +57130 |190244 |KK Cen *|114248.2-585936 |DCEP | 10.84 | 11.94 | |V |41017.51 | | 12.1803 |47 | |02309 00045| +66383 |190247 |KN Cen *|133636.9-643330 |DCEP | 9.28 | 10.36 | |V |36238.172 | | 34.0457 |21 | |00001 00022| +70203 |190339 |V0339 Cen *|142148.5-613259 |DCEP | 8.40 | 9.17 | |V |40768.15 | | 9.4660 |50 |F7II-G5 |00001 05288| +64969 |190378 |V0378 Cen |131858.3-622256 |DCEPS | 8.27 | 8.68 | |V |34917.113 | | 6.45930 |32 |F5Iab/b-G5 |02309 CoD | +65492 |190379 |V0379 Cen *|132521.3-594653 |EA/SD | 8.8 | 9.6 | 8.9 |p |28402.23 | | 1.874685 |18 *|B5V |00013 05464| +67566 |190381 |V0381 Cen |135044.3-573450 |CEP | 7.32 | 8.01 | |V |36201.953 | | 5.07878 |28 |F6-G7(F8Ib/II) |02309 CoD | +68178 |190412 |V0412 Cen *|135728.1-574240 |LB | 7.1 | 9.6 | |B | | | | |M3Iab/b-M7 |00014 06965| +56176 |190419 |V0419 Cen *|113054.4-565356 |DCEPS | 7.98 | 8.36 | |V |40760.28 | | 5.50691 |42 |F7II-K0 |00001 CoD | +56898 |190420 |V0420 Cen *|113950.3-475751 |CWA | 9.37 | 10.60 | |V |25350.67 | | 24.7678 |27 | |02309 00074| +63693 |190496 |V0496 Cen *|130310.7-605239 |DCEP | 9.62 | 10.24 | |V |40773.38 | | 4.42419 |29 |G3 |00001 CoD | +67976 |190499 |V0499 Cen *|135514.8-431425 |RRAB | 10.36 | 11.54 | |V |41126.248 | | 0.5212100 |12 |A3-F5 |07984 06286| +72257 |190553 |V0553 Cen *|144633.6-321015 |CWB | 8.23 | 8.80 | |V |41124.28 | | 2.06051 |41 |F4-K0Ia(C) |06480 CoD | +57844 |190572 |V0572 Cen |115143.1-391227 |SR | 12.1 | 12.7 | |p | | | 135. | | |00066 06286| +69781 |190636 |V0636 Cen *|141657.9-495642 |EA/DM: | 8.7 | 9.2 | 8.8 |V |34540.340 | | 4.28398 |04 *|G0V |02412 CoD | +70890 |190645 |V0645 Cen *|142943.0-624046 |UV | 12.1 | 13.12 | |B | | | | |M5Ve |00089 05288| +65970 |190659 |V0659 Cen |133133.4-613457 |DCEP | 6.45 | 6.71 | |V |40348.77 | | 5.62180 |43 |F7Ib |05366 05317| +65977 |190701 |V0701 Cen *|133137.7-514618 |EB/KE | 8.8 | 9.3 | 9.1 |V |39243.2661 | | 0.738447 | |B9V |00001 CoD | +69491 |190716 |V0716 Cen *|141339.8-543732 |EB/KE | 5.96 | 6.52 | 6.21 |V |38524.4069 | | 1.490096 | |B5V |05318 CoD | +71492 |190737 |V0737 Cen |143712.0-620039 |DCEP | 7.5 | 8.0 | |p |28656.350 | | 7.06585 |39 |G2Ib |05319 CoD | +65715 |190743 |V0743 Cen *|132822.1-511732 |DSCT | 8.57 | 8.82 | |V |39243.6436 | | 0.10225435 |36 |A0V |06779 CoD | +66666 |190744 |V0744 Cen |133959.8-495700 |SRB | 5.14 | 6.55 | |V | | | 90. : | |M8III |05992 CoD | +57129 |190752 |V0752 Cen *|114248.1-354858 |EW/KW | 9.1 | 9.66 | 9.61 |V |44243.6916 | | 0.37022484 | |G0 |00001 CoD | +57812 |190753 |V0753 Cen *|115115.3-554816 |RRC: | 10.24 | 10.64 | |V |41386.144 | | 0.221349 |45 |A5 |06970 05855| +67682 |190757 |V0757 Cen *|135155.7-363725 |EW/KW | 8.3 | 8.7 | 8.6 |V |42308.69312 | | 0.34316929 | | |07391 CoD | +67746 |190758 |V0758 Cen *|135242.9-553228 |EW/KE | 8.8 | 9.40 | 9.15 |B |44403.2797 | | 0.58078556 | |B9IV |07413 CoD | +69256 |190759 |V0759 Cen *|141041.3-474608 |EW/KW | 7.4 | 7.56 | 7.56 |V |42196.09732 | | 0.39395129 | |F9V |07420 CoD | +70300 |190761 |V0761 Cen *|142302.2-393043 |SXARI | 4.38 | 4.43 | |V |42807.75 | | 8.8171 | |B2V-B8IIIp(He-Si)|08054 CoD | +56518 |190763 |V0763 Cen *|113513.3-472221 |SRB | 5.55 | 5.80 | |V | | | 60. : | |M3III |06590 CoD | +66358 |190764 |V0764 Cen |133608.3-332845 |SRD | 8.84 | 9.13 | |V | | | | |K2III |06450 CoD | +66645 |190765 |V0765 Cen |133940.8-394451 |LB: | 6.28 |( 0.08 )| |V | | | | |M4 |05840 CoD | +67261 |190766 |V0766 Cen *|134710.9-623523 |SDOR: | 6.17 | 7.50 | |V | | | | |G8Ia-0 |06481 06965| +67861 |190767 |V0767 Cen *|135357.2-470741 |GCAS | 5.86 | 6.26 | |V | | | | |B2IIIe |08419 CoD | +72432 |190768 |V0768 Cen *|144838.0-363805 |SRB | 5.93 | 6.15 | |V | | | | |M3 |06023 CoD | +55863 |190771 |V0771 Cen |112659.7-612210 |SRC: | 6.87 |( 0.2 )| |V | | | | |M2Ib-II |05899 04641| +57057 |190772 |V0772 Cen *|114149.4-632452 |LC: | 7.80 | 8.36 | |V | | | | |M2Ibep+B |06149 04641| +67809 |190774 |V0774 Cen |135328.2-390326 |GCAS | 7.63 | 7.72 | |V | | | | |B3Vne |06313 CoD | +59229 |190788 |V0788 Cen *|120853.8-441934 |EA/D | 5.74 | 5.93 | 5.90 |V |41370.496 | | 4.966377 |08 |A2mA5-F2 |07860 CoD | +63820 |190789 |V0789 Cen |130448.2-411147 |LB: | 6.22 |( 0.09 )| |V | | | | |M3/4III |06324 CoD | +69618 |190795 |V0795 Cen *|141457.1-570510 |GCAS | 4.97 | 5.10 | |V | | | | |B4Vne |06311 06965| +57569 |190801 |V0801 Cen *|114800.0-621225 |GCAS:+XP | 8.93 | 9.39 | |V | | | | |B1Vne |07928 08882| +67457 |190806 |V0806 Cen |134926.7-342703 |SRB | 4.16 | 4.26 | |V | | | 12. : | |M5III |07704 CoD | +56050 |190808 |V0808 Cen |112915.1-633314 |ACYG | 6.42 | 6.47 | |V | | | | |B2eaIa |08070 04641| +56201 |190809 |V0809 Cen |113115.1-611643 |ACYG | 6.31 | 6.36 | |V | | | | |A3eIa |08227 04641| +57175 |190810 |V0810 Cen *|114331.2-622922 |SRD | 4.95 | 5.12 | |V | | | 130. : | |F5-G0Ia-0+B1Iab |04388 07715| +54360 |190815 |V0815 Cen |110716.7-423819 |ACV | 5.14 |( 0.03 )| |V | | | 2.433 | |A3p(Sr) |02590 CoD | +56709 |190816 |V0816 Cen *|113737.0-464235 |DSCT: | 7.996 | 8.020 | |V |43400.00090 | | 0.00843060 | |F8p |08885 CoD | +59232 |190817 |V0817 Cen |120854.6-411354 |GCAS | 5.47 | 5.58 | |V | | | | |B3eaIV |06311 CoD | +69525 |190820 |V0820 Cen *|141356.4-380547 |RV | 8.42 |< 10.10 | |V |43325. | | 150. | |K0e |08369 CoD | +69619 |190821 |V0821 Cen |141458.6-461719 |PVTEL | 9.94 | 10.03 | |V | | | | |B3p |07799 CoD | +63204 |190823 |V0823 Cen |125658.2-543514 |ACV | 6.7 |( 0.005 )| |V | | | 2.84 | |A0p(Si-Cr) |02590 CPD | +64320 |190824 |V0824 Cen |131058.4-523401 |ACV | 6.3 |( 0.035 )| |V | | | 1.272 | |A0p(Si) |02590 CoD | +67036 |190827 |V0827 Cen |134416.0-510045 |ACV | 6.46 |( 0.025 )| |V | | | 2.605 | |A0p(Si) |02590 CoD | +68673 |190828 |V0828 Cen |140327.5-412524 |ACV | 6.10 |( 0.045 )| |V | | | 1.837 | |A0p(Si) |02590 CoD | +56851 |190829 |V0829 Cen |113922.2-392308 |RS | 7.9 : |( 0.11 )| |V | | | | | |67024 CoD | +64425 |190831 |V0831 Cen |131217.6-595514 |ELL: | 4.49 | 4.66 | |V | | | | | |67169 CPD | +72241 |190836 |V0836 Cen |144625.8-371320 |BCEP | 8.02 | 8.12 | |V | | | | | |67197 CoD | +56759 |190837 |V0837 Cen |113810.9-454458 |DSCT | 7.16 |( 0.10 )| |V | | | | | |68314 CoD | +57269 |190838 |V0838 Cen |114438.5-492503 |BY | 8.97 |( 0.08 )| |V | | | | | |68315 CoD | +63347 |190839 |V0839 Cen |125849.7-365833 |EW/KW | 9.51 | 10.13 | |V | | | | | |68318 CoD | +67013 |190851 |V0851 Cen |134400.9-612159 |RS | 7.78 | 7.88 | |V | | | | | |69078 CPD | +70904 |190853 |V0853 Cen |142958.4-560753 |DSCTC | 6.97 |( 0.02 )| |V | | | | | |69084 CPD | +56586 |190855 |V0855 Cen |113605.5-614206 |BE | 9.58 |( 0.07 )| |B | | | | | |70030 70029| +63250 |190856 |V0856 Cen |125736.3-494650 |BCEP | 8.32 | 8.37 | |V | | | | | |70031 CoD | +59173 |190863 |V0863 Cen |120805.2-503941 |BE: | 4.38 | 4.43 | |b | | | | | |71074 CoD | +69174 |190869 |V0869 Cen |140935.0-513017 |* | 5.92 |( 0.09 )| |V | | | | | |71123 CoD | +56769 |190871 |V0871 Cen |113820.4-632222 |EB | 6.48 |( 0.12 )| |V | | | | | |72041 CPD | +69122 |190883 |V0883 Cen |140856.3-591636 |E | 6.40 | 6.63 | |b | | | | | |72040 CPD | +56992 |190885 |V0885 Cen |114058.8-553426 |* | 7.60 | 7.95 | |U | | | | | |73084 CPD | +54593 |190897 |V0897 Cen |111021.4-360543 |LB: | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +54659 |190898 |V0898 Cen |111120.4-543325 |DCEPS: | 7.93 | 8.21 | |Hp| | | | | |HIP HIP | +54670 |190899 |V0899 Cen |111127.4-485106 |LB: | 8.20 | 8.33 | |Hp| | | | | |HIP HIP | +54814 |190900 |V0900 Cen |111317.5-500721 |E | 6.95 | 6.99 | |Hp| | | | | |HIP HIP | +54865 |190901 |V0901 Cen |111403.3-513256 |EW: | 11.94 | 12.31 | |Hp| | | | | |HIP HIP | +55031 |190902 |V0902 Cen *|111556.4-484127 |E: | 12.20 | 12.75 | |Hp| | | | | |HIP HIP | +55283 |190903 |V0903 Cen |111921.2-450536 |SRC | 7.57 | 7.83 | |Hp| | | | | |HIP HIP | +55396 |190904 |V0904 Cen |112034.2-355901 |LB: | 8.47 | 8.58 | |Hp| | | | | |HIP HIP | +55448 |190905 |V0905 Cen |112121.9-554547 |LB: | 10.49 | 10.68 | |Hp| | | | | |HIP HIP | +55499 |190906 |V0906 Cen |112158.8-610146 |LPB: | 9.57 | 9.71 | |Hp| | | | | |HIP HIP | +55524 |190907 |V0907 Cen |112219.7-610425 |BE | 9.03 | 9.30 | |V | | | | | |HIP HIP | +56353 |190908 |V0908 Cen |113304.8-444614 |SRB | 7.80 | 7.95 | |Hp| | | | | |HIP HIP | +56435 |190909 |V0909 Cen |113413.7-543320 |SRB | 7.73 | 7.86 | |Hp| | | | | |HIP HIP | +56556 |190910 |V0910 Cen |113545.0-613441 |LC | 7.19 | 7.34 | |Hp| | | | | |HIP HIP | +56592 |190911 |V0911 Cen |113609.4-614142 |GCAS: | 9.00 | 9.45 | |Hp| | | | | |HIP HIP | +56698 |190912 |V0912 Cen |113732.6-392132 |LB | 6.81 | 6.98 | |Hp| | | | | |HIP HIP | +56702 |190913 |V0913 Cen |113734.1-605412 |LB | 6.19 | 6.45 | |Hp| | | | | |HIP HIP | +56970 |190914 |V0914 Cen |114042.5-535807 |LB | 5.99 | 6.12 | |Hp| | | | | |HIP HIP | +57067 |190915 |V0915 Cen *|114155.0-634743 |ACV: | 8.00 | 8.05 | |Hp| | | | | |HIP HIP | +57106 |190916 |V0916 Cen |114225.4-622838 |BE | 8.61 | 8.83 | |Hp| | | | | |HIP HIP | +57237 |190917 |V0917 Cen |114409.0-453443 |SRD | 8.28 | 8.37 | |Hp| | | | | |HIP HIP | +57512 |190918 |V0918 Cen |114719.1-574147 |SRD: | 5.49 | 5.56 | |Hp| | | | | |HIP HIP | +57607 |190919 |V0919 Cen |114839.2-355913 |SRB: | 6.07 | 6.64 | |Hp| | | | | |HIP HIP | +57653 |190920 |V0920 Cen |114924.5-602533 |LB | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +57737 |190921 |V0921 Cen *|115023.4-354547 |SRB: | 9.57 | 10.01 | |Hp| | | | | |HIP HIP | +57808 |190922 |V0922 Cen |115113.0-615046 |ACYG: | 6.57 | 6.64 | |Hp| | | | | |HIP HIP | +57843 |190923 |V0923 Cen |115142.9-610930 |LC | 7.60 | 7.95 | |Hp| | | | | |HIP HIP | +58059 |190924 |V0924 Cen |115426.7-565811 |SRB | 6.89 | 7.05 | |Hp| | | | | |HIP HIP | +58328 |190925 |V0925 Cen |115743.0-373902 |SRB | 8.60 | 8.76 | |Hp| | | | | |HIP HIP | +59811 |190926 |V0926 Cen |121555.6-540325 |SRB | 6.67 | 6.73 | |Hp| | | | | |HIP HIP | +60934 |190927 |V0927 Cen |122921.0-381550 |LB | 9.05 | 9.44 | |Hp| | | | | |HIP HIP | +60979 |190928 |V0928 Cen |122957.9-414409 |SRB | 6.01 | 6.08 | |Hp| | | | | |HIP HIP | +60984 |190929 |V0929 Cen |123000.5-425547 |LB: | 6.76 | 6.79 | |Hp| | | | | |HIP HIP | +61040 |190930 |V0930 Cen |123037.7-361423 |LB: | 8.54 | 8.67 | |Hp| | | | | |HIP HIP | +61226 |190931 |V0931 Cen |123246.3-380437 |LB: | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +61247 |190932 |V0932 Cen |123305.8-373849 |LB | 9.07 | 9.34 | |Hp| | | | | |HIP HIP | +61362 |190933 |V0933 Cen *|123426.0-452346 |LB: | 8.61 | 8.71 | |Hp| | | | | |HIP HIP | +61507 |190934 |V0934 Cen |123608.2-334446 |SRB | 7.84 | 7.96 | |Hp| | | | | |HIP HIP | +61773 |190935 |V0935 Cen |123939.0-445536 |LB | 8.11 | 8.24 | |Hp| | | | | |HIP HIP | +61975 |190936 |V0936 Cen |124202.1-375637 |SRB | 8.41 | 8.68 | |Hp| | | | | |HIP HIP | +62064 |190937 |V0937 Cen |124313.3-360040 |LB: | 8.53 | 8.58 | |Hp| | | | | |HIP HIP | +62086 |190938 |V0938 Cen |124330.4-411918 |LB: | 7.16 | 7.22 | |Hp| | | | | |HIP HIP | +62316 |190939 |V0939 Cen |124614.1-435955 |LB: | 8.25 | 8.38 | |Hp| | | | | |HIP HIP | +62445 |190940 |V0940 Cen |124751.9-512638 |BY: | 9.59 | 9.73 | |Hp| | | | | |HIP HIP | +62623 |190941 |V0941 Cen |124954.6-341824 |LB: | 8.87 | 8.95 | |Hp| | | | | |HIP HIP | +62767 |190942 |V0942 Cen |125144.7-310501 |LB | 7.21 | 7.32 | |Hp| | | | | |HIP HIP | +62773 |190943 |V0943 Cen |125150.6-311207 |ACV | 6.93 | 6.98 | |Hp| | | | | |HIP HIP | +63186 |190944 |V0944 Cen |125642.1-384840 |LB: | 9.23 | 9.42 | |Hp| | | | | |HIP HIP | +63210 |190945 |V0945 Cen |125704.3-511156 |LPB | 5.14 | 5.16 | |Hp| | | | | |HIP HIP | +63565 |190946 |V0946 Cen |130134.9-604017 |BE | 7.33 | 7.46 | |Hp| | | | | |HIP HIP | +63849 |190947 |V0947 Cen |130506.7-470701 |DSCTC: | 6.52 | 6.55 | |Hp| | | | | |HIP HIP | +63979 |190948 |V0948 Cen |130637.6-643337 |EB: | 9.01 | 9.29 | |Hp| | | | | |HIP HIP | +64025 |190949 |V0949 Cen |130712.8-542000 |EA | 9.15 | 9.52 | |Hp| | | | | |HIP HIP | +64130 |190950 |V0950 Cen |130838.4-543652 |DSCTC | 7.82 | 7.85 | |Hp| | | | | |HIP HIP | +64334 |190951 |V0951 Cen |131114.3-390008 |LB: | 8.49 | 8.64 | |Hp| | | | | |HIP HIP | +64359 |190952 |V0952 Cen |131129.5-552125 |BE | 8.02 | 8.11 | |Hp| | | | | |HIP HIP | +64391 |190953 |V0953 Cen |131152.4-524844 |LB | 6.99 | 7.14 | |Hp| | | | | |HIP HIP | +64471 |190954 |V0954 Cen |131249.9-613242 |DSCT | 7.29 | 7.40 | |Hp| | | | | |HIP HIP | +64578 |190955 |V0955 Cen |131411.5-632225 |BE | 7.93 | 8.04 | |Hp| | | | | |HIP HIP | +64572 |190956 |V0956 Cen |131408.3-544135 |SRD: | 8.31 | 8.58 | |Hp| | | | | |HIP HIP | +64613 |190957 |V0957 Cen |131436.4-312511 |SRB | 11.11 | 11.78 | |Hp| | | | | |HIP HIP | +64622 |190958 |V0958 Cen |131440.7-383906 |BE | 7.09 | 7.16 | |Hp| | | | | |HIP HIP | +64653 |190959 |V0959 Cen |131510.0-605801 |GCAS | 9.67 | 10.00 | |Hp| | | | | |HIP HIP | +64719 |190960 |V0960 Cen |131554.9-561931 |E | 9.51 | 9.82 | |Hp| | | | | |HIP HIP | +64737 |190961 |V0961 Cen |131604.8-623502 |ELL: | 7.99 | 8.08 | |Hp| | | | | |HIP HIP | +64712 |190962 |V0962 Cen |131547.0-420318 |LB: | 8.29 | 8.40 | |Hp| | | | | |HIP HIP | +64941 |190963 |V0963 Cen |131844.4-581601 |E: | 8.69 | 8.79 | |Hp| | | | | |HIP HIP | +65112 |190964 |V0964 Cen |132037.8-524452 |EB | 5.40 | 5.44 | |Hp| | | | | |HIP HIP | +65294 |190965 |V0965 Cen |132255.6-620044 |ACYG: | 8.01 | 8.10 | |Hp| | | | | |HIP HIP | +65517 |190966 |V0966 Cen |132547.8-481458 |RS: | 9.84 | 9.94 | |Hp| | | | | |HIP HIP | +65637 |190967 |V0967 Cen |132725.1-623856 |BE: | 7.50 | 7.70 | |Hp| | | | | |HIP HIP | +65776 |190968 |V0968 Cen |132903.9-585632 |ACV | 8.10 | 8.16 | |Hp| | | | | |HIP HIP | +65818 |190969 |V0969 Cen |132934.3-611136 |LPB: | 10.03 | 10.25 | |Hp| | | | | |HIP HIP | +66030 |190970 |V0970 Cen |133214.3-615926 |LB | 8.47 | 8.73 | |Hp| | | | | |HIP HIP | +66070 |190971 |V0971 Cen |133241.7-534952 |LB | 8.51 | 8.69 | |Hp| | | | | |HIP HIP | +66142 |190972 |V0972 Cen |133330.1-621901 |WR | 10.42 | 10.64 | |Hp| | | | | |HIP HIP | +66157 |190973 |V0973 Cen |133338.9-303755 |LB: | 8.94 | 9.10 | |Hp| | | | | |HIP HIP | +66394 |190974 |V0974 Cen |133646.7-322413 |ELL: | 7.67 | 7.71 | |Hp| | | | | |HIP HIP | +66580 |190975 |V0975 Cen |133854.1-550128 |E: | 7.41 | 7.50 | |Hp| | | | | |HIP HIP | +66631 |190976 |V0976 Cen |133927.9-635908 |ACV: | 9.38 | 9.50 | |Hp| | | | | |HIP HIP | +67179 |190977 |V0977 Cen |134602.9-332803 |LB: | 8.87 | 8.97 | |Hp| | | | | |HIP HIP | +67202 |190978 |V0978 Cen |134617.6-470922 |LB | 7.65 | 7.79 | |Hp| | | | | |HIP HIP | +67324 |190979 |V0979 Cen |134756.8-635144 |EB | 7.49 | 7.61 | |Hp| | | | | |HIP HIP | +67298 |190980 |V0980 Cen |134730.9-460940 |LB | 8.05 | 8.30 | |Hp| | | | | |HIP HIP | +67604 |190981 |V0981 Cen |135108.9-303358 |LB | 8.18 | 8.38 | |Hp| | | | | |HIP HIP | +67616 |190982 |V0982 Cen |135117.8-392818 |BY: | 9.60 | 9.85 | |Hp| | | | | |HIP HIP | +67669 |190983 |V0983 Cen |135149.6-325939 |E: | 4.27 | 4.32 | |Hp| | | | | |HIP HIP | +67704 |190984 |V0984 Cen |135207.8-412733 |SRB | 8.28 | 8.45 | |Hp| | | | | |HIP HIP | +67830 |190985 |V0985 Cen |135341.0-444953 |LB: | 8.29 | 8.41 | |Hp| | | | | |HIP HIP | +68019 |190986 |V0986 Cen |135544.1-415942 |LB | 6.69 | 6.79 | |Hp| | | | | |HIP HIP | +68218 |190987 |V0987 Cen |135757.8-595305 |BE | 8.80 | 8.90 | |Hp| | | | | |HIP HIP | +68186 |190988 |V0988 Cen |135734.0-313911 |BY: | 9.77 | 10.02 | |Hp| | | | | |HIP HIP | +68298 |190989 |V0989 Cen |135852.2-474825 |LB: | 7.45 | 7.55 | |Hp| | | | | |HIP HIP | +68500 |190990 |V0990 Cen |140121.9-371953 |LB | 7.37 | 7.60 | |Hp| | | | | |HIP HIP | +68788 |190991 |V0991 Cen |140448.1-343347 |LB: | 9.15 | 9.30 | |Hp| | | | | |HIP HIP | +68842 |190992 |V0992 Cen |140546.5-544010 |EB: | 6.23 | 6.32 | |Hp| | | | | |HIP HIP | +68979 |190993 |V0993 Cen |140719.3-632608 |ACV | 8.87 | 8.91 | |Hp| | | | | |HIP HIP | +68998 |190994 |V0994 Cen |140733.5-541550 |SRD: | 8.26 | 8.38 | |Hp| | | | | |HIP HIP | +69272 |190995 |V0995 Cen |141052.2-391109 |LB: | 8.63 | 8.87 | |Hp| | | | | |HIP HIP | +69539 |190996 |V0996 Cen |141407.3-535555 |LB | 7.01 | 7.37 | |Hp| | | | | |HIP HIP | +69582 |190997 |V0997 Cen |141433.7-614756 |LPB: | 9.44 | 9.70 | |Hp| | | | | |HIP HIP | +69557 |190998 |V0998 Cen |141417.2-475025 |LB: | 9.07 | 9.23 | |Hp| | | | | |HIP HIP | +69847 |190999 |V0999 Cen |141741.3-604719 |LPB: | 9.03 | 9.15 | |Hp| | | | | |HIP HIP | +69980 |191000 |V1000 Cen |141909.4-565518 |E | 8.40 | 8.65 | |Hp| | | | | |HIP HIP | +69978 |191001 |V1001 Cen |141909.0-555256 |IA: | 7.24 | 7.42 | |Hp| | | | | |HIP HIP | +70026 |191002 |V1002 Cen |141944.3-365130 |LB | 6.48 | 6.98 | |Hp| | | | | |HIP HIP | +70290 |191003 |V1003 Cen |142252.2-555744 |LC: | 7.47 | 7.74 | |Hp| | | | | |HIP HIP | +70250 |191004 |V1004 Cen |142226.4-383855 |LB | 8.86 | 9.12 | |Hp| | | | | |HIP HIP | +70769 |191005 |V1005 Cen |142825.1-393229 |SRB | 7.98 | 8.13 | |Hp| | | | | |HIP HIP | +70832 |191006 |V1006 Cen |142906.4-603847 |SRB | 8.59 | 8.81 | |Hp| | | | | |HIP HIP | +71048 |191007 |V1007 Cen |143148.0-383330 |SRB: | 8.11 | 8.29 | |Hp| | | | | |HIP HIP | +71194 |191008 |V1008 Cen |143336.8-584915 |BE | 7.70 | 7.77 | |Hp| | | | | |HIP HIP | +71178 |191009 |V1009 Cen |143325.8-343238 |BY: | 10.24 | 10.43 | |Hp| | | | | |HIP HIP | +71264 |191010 |V1010 Cen |143429.3-641207 |GCAS | 8.93 | 9.23 | |Hp| | | | | |HIP HIP | +71563 |191011 |V1011 Cen |143810.2-624304 |LB: | 8.47 | 8.64 | |Hp| | | | | |HIP HIP | +71709 |191012 |V1012 Cen |144005.5-595553 |BE | 9.10 | 9.16 | |Hp| | | | | |HIP HIP | +71665 |191013 |V1013 Cen |143928.3-313936 |LB | 9.01 | 9.18 | |Hp| | | | | |HIP HIP | +71922 |191014 |V1014 Cen |144236.4-324335 |I: | 11.52 | 12.24 | |Hp| | | | | |HIP HIP | +71967 |191015 |V1015 Cen *|144308.9-302133 |CEP: | 8.64 | 8.78 | |Hp| | | | | |HIP HIP | +72117 |191016 |V1016 Cen |144508.2-384517 |LB: | 8.42 | 8.54 | |Hp| | | | | |HIP HIP | +72372 |191017 |V1017 Cen |144753.6-321450 |LB | 7.59 | 7.79 | |V | | | | | |HIP HIP | +72710 |191018 |V1018 Cen |145157.6-404821 |LPB: | 7.89 | 7.98 | |Hp| | | | | |HIP HIP | +72800 |191019 |V1019 Cen |145251.1-374811 |LPB | 4.96 | 4.98 | |Hp| | | | | |HIP HIP | +73082 |191020 |V1020 Cen |145612.0-352316 |LB | 8.77 | 8.92 | |Hp| | | | | |HIP HIP | +73426 |191021 |V1021 Cen |150019.1-375214 |SRB | 8.46 | 8.64 | |Hp| | | | | |HIP HIP | +73595 |191022 |V1022 Cen |150234.8-413425 |RR: | 8.33 | 8.38 | |Hp| | | | | |HIP HIP | +57567 |191023 |V1023 Cen |114759.8-401730 |DSCTC | 7.94 |( 0.05 v )| |V | | | | | |75081 CoD | +62774 |191026 |V1026 Cen |125150.8-520743 |GDOR | 9.33 | 9.38 | |Hp| | | | | |75029 CoD | +63547 |191028 |V1028 Cen |130117.8-485319 |BE | 10.52 | 10.70 | |Hp| | | | | |75084 CoD | +64896 |191029 |V1029 Cen |131806.9-634114 |ACYG | 7.86 | 7.95 | |Hp| | | | | |75030 CPD | +56726 |191051 |V1051 Cen |113748.4-631924 |EA | 7.13 | 7.24 | |V |47964.840 | | 9.64645 | |O6.5V(f)+O8.5V |78011 DM | +69617 |191061 |V1061 Cen *|141456.8-611418 |EA | 9.55 | 9.71 | 9.61 |V |52738.708 | | 2.20957 |11 |B2V |78011 DM | +56249 |191089 |V1089 Cen *|113148.7-604136 |EA | 7.88 | 7.96 | 7.95 |V |48502.854 | | 5.48793 |06 |B9.5V |79006 DM | +59869 |191118 |V1118 Cen |121643.0-455203 |EA | 9.55 | 10.1 : | 9.9 : |V |47945.451 | | 11.30489 |02 : |G3V |79004 DM | +63883 |191154 |V1154 Cen |130530.8-520656 |SRS | 6.33 | 6.58 | |V | | | 21.8 | |M1III |79190 DM | +64327 |191160 |V1160 Cen |131106.7-541000 |EA | 8.63 | 8.80 | 8.78 |V |53183.610 | | 10.35420 |02 |B7V |79003 DM | +64716 |191166 |V1166 Cen *|131551.3-635303 |EA | 8.77 | 8.98 | 8.87 |V |51955.858 | | 13.4197 |04 : |B1/2V |79006 DM | +65403 |191177 |V1177 Cen |132418.2-371701 |EA | 9.08 | 9.44 : | 9.42 : |V |52014.643 | | 5.7945 |05 |G5V |79018 DM | +66751 |191198 |V1198 Cen *|134051.6-625247 |EA | 8.66 | 8.80 | 8.73 : |V |48966.453 | | 6.50404 |06 |B6II/III |79003 DM | +67712 |191200 |V1200 Cen |135217.5-383717 |EA | 8.44 | 8.70 | 8.51 |V |48509.652 | | 2.482874 |05 |F5V |79011 DM | +68339 |191202 |V1202 Cen *|135920.1-622737 |EA | 8.42 | 8.62 | 8.62 : |V |47917.350 | | 15.5543 |02 : |B9V |79018 DM | +69358 |191203 |V1203 Cen |141148.0-620135 |EB | 7.67 | 7.80 | 7.72 |V |48433.960 | | 2.67096 | |B4/5III/IV |79009 DM | +57589 |191239 |V1239 Cen *|114824.2-372849 |IT | 11.2 | 11.5 | |V | | | 5.10 | |K5V |80330 DM | NL80_2 +68702 |199002 |bet Cen *|140349.4-602223 |BCEP | 0.61 |( 0.045 )| |V | | | 0.157 | |B1III |08886 05288| +59196 |199004 |del Cen *|120821.5-504321 |GCAS | 2.51 | 2.65 | |V | | | | |B2IVne |08663 CoD | +66657 |199005 |eps Cen *|133953.3-532759 |BCEP | 2.29 | 2.31 | |V |41040.965 | | 0.169608 | |B1III |06356 CoD | +71352 |199007 |eta Cen *|143530.4-420928 |GCAS | 2.30 | 2.41 | |V | | | | |B1.5Vne |07869 CoD | +67472 |199012 |mu. Cen *|134937.0-422825 |GCAS | 2.92 | 3.47 | |V | | | | |B2IV-Ve |00094 CoD | +67464 |199013 |nu. Cen |134930.3-414116 |ELL:+BCEP | 3.38 | 3.41 | |V | | | | | |67201 CoD | +68862 |199022 |khi Cen |140602.8-411047 |BCEPS | 4.15 |( 0.020 )| |B | | | 0.035 | |B2V |08308 CoD | +106583|200002 |S Cep |213512.8+783728 |M | 7.4 | 12.9 | |V |43787. | | 486.84 |55 |C7,4e(N8e) |00001 00002| +104451|200003 |T Cep *|210931.8+682927 |M | 5.2 | 11.3 | |V |44177. | | 388.14 |54 |M5.5e-M8.8e |00001 00002| +4843 |200004 |U Cep *|010218.4+815232 |EA/SD | 6.75 | 9.24 | 6.93 |V |44541.6031 | | 2.4930475 |15 |B7Ve+G8III-IV |08888 00097| +118027|200005 |V Cep |235627.8+831128 |CST: | 6.56 | | |V | | | | |A3V | 08953| +111592|200006 |W Cep *|223627.6+582534 |SRC | 7.02 | 9.2 | |V | | | | |K0ep-M2epIa+B0/B1|00001 00098| +23727 |200011 |RS Cep *|050603.2+801452 |EA/DS | 10.2 | 11.9 | |V |40862.677 | | 12.420105 |08 |A5IIIe+G |06978 00100| +6325 |200013 |RU Cep |012111.9+850756 |SRD | 8.2 | 9.8 | |V | | | 109. | |G6-M3.5III |02430 00102| +110504|200015 |RW Cep |222307.0+555748 |SRD | 8.6 | 10.7 | |p | | | 346. : | |K0Ia-0 |00111 00103| +3905 |200016 |RX Cep |005004.6+815802 |SRD: | 7.2 | 8.2 | |V | | | 55. : | |G5 |00334 03514| +111839|200018 |RZ Cep *|223913.2+645131 |RRC | 9.11 | 9.75 | |V |42635.374 | | 0.3086853 |32 |A0-F2 |08697 00107| +17881 |200019 |SS Cep *|034930.0+801921 |SRB | 8.0 | 9.1 | |p | | | 90. | |M5III |00108 08953| +108317|200040 |VV Cep *|215639.1+633732 |EA/GS+SRC | 4.80 | 5.36 | |V |43360. | | 7430. |08 |M2epIa-Iab+B8:eV |08698 02471| +101750|200041 |VW Cep *|203721.5+753602 |EW/KW | 7.23 | 7.68 | 7.56 |V |44157.4131 | | 0.27831460 | *|G5+K0Ve |08898 07302| +111166|200046 |WX Cep *|223115.8+633122 |EA/DM | 8.7 | 9.29 | 9.14 |V |25088.537 | | 3.3784535 |13 |A2+A5: |08901 00124| +116648|200049 |XX Cep *|233820.3+642003 |EA/SD | 9.20 | 10.32 | 9.24 V |V |44839.8022 | | 2.3373266 |14 *|A8V |00001 00124| +117724|200050 |XY Cep *|235232.9+685602 |EA/SD | 10.05 | 10.90 | 10.10 |V |43791.3160 | | 2.774527 |12 *|B8-A0 |08903 00124| +111257|200051 |XZ Cep *|223225.1+670903 |EB/DM: | 8.0 | 8.83 | 8.43 |V |43297.811 | | 5.0972267 | |O9.5V |08904 00124| +112317|200054 |ZZ Cep *|224502.6+680759 |EA/DM | 8.60 | 9.55 | 8.74 |V |27928.451 | | 2.141800 |12 *|B7+F0V |00803 00124| +112562|200062 |AH Cep *|224752.9+650344 |EB/DM | 6.78 | 7.07 | 7.03 |V |34989.4026 | | 1.7747505 | |B0.5Vne+B0.5V |08873 BD | +107500|200063 |AI Cep *|214622.6+565502 |EB/DM | 9.18 | 9.86 | 9.48 |V |26550.341 | | 4.225288 | |B0.5V:p |03526 03526| +110964|200064 |AK Cep |222850.1+581239 |DCEP | 10.86 | 11.52 | |V |37022.531 | | 7.23268 |28 |F6-G2 |03532 00137| +112882|200071 |AR Cep |225133.9+850247 |SRB | 7.0 | 7.9 | |V | | | | |M4III | 08953| +108427|200116 |CP Cep *|215752.7+560950 |DCEP | 10.06 | 10.96 | |V |33052.33 | | 17.8590 |40 |F5Ib-F7 |08617 00155| +111633|200117 |CQ Cep *|223654.0+565421 |EB/DM/WR | 8.63 | 9.12 | |V |32456.668 | | 1.641249 | |WN5.5+O7 |06489 08953| +112430|200118 |CR Cep *|224624.8+592632 |DCEP | 9.43 | 9.83 | |V |42774.236 | | 6.232964 |39 |F8.4 |08632 00098| +113907|200123 |CW Cep *|230402.2+632349 |EA/DM | 7.60 | 8.04 | 8.01 |V |35373.4496 | | 2.729140 |13 *|B0.5+B0.5IV-Vea |08620 BD | +112254|200130 |DG Cep |224411.1+614343 |LB | 11.54 | 12.5 | |B | | | | |C6,4(Nb/R8) |00085 02374| +112470|200131 |DH Cep *|224654.1+580504 |ELL | 8.58 | 8.62 | |V |32759.279 | | 2.111040 | |O5.5+O6.5IV-Vn |08912 05479| +113269|200132 |DI Cep |225611.5+584002 |INST | 11.95 | 13.5 | |B | | | | |G8pVe-K3Ve(T) |00166 00166| +109273|200135 |DM Cep |220816.4+724607 |LB | 8.4 | 9.6 | |p | | | | |M4 |03135 08900| +103471|200139 |DQ Cep *|205748.6+552916 |DSCT | 7.22 | 7.32 | |V |33924.8404 | | 0.07886444 |50 |F4III |06484 BD | +106024|200153 |EI Cep *|212828.2+762413 |EA/DM | 7.54 | 8.06 | 7.98 |V |36820.4665 | | 8.439334 |06 *|Am+F1 |08922 08953| +107083|200154 |EK Cep *|214121.5+694134 |EA/DM | 7.99 | 9.32 | 8.06 |B |39002.7240 | | 4.4277926 |06 |A0V |08626 03539| +108073|200156 |EM Cep *|215348.1+623652 |EW/KE | 7.02 | 7.17 | 7.16 |V |40134.7326 | | 0.806187 | |B1IVe |08701 03542| +18548 |200169 |EZ Cep *|035805.4+811423 |RRC | 11.6 | 12.2 | |p |26631.370 | | 0.378999 |50 | |04109 04353| +105303|200189 |FZ Cep |211942.8+552700 |SR | 8.5 | 9.1 | |p | | | | |M5 |02522 08953| +106226|200193 |GK Cep *|213059.1+704924 |EB/KE | 6.89 | 7.37 | 7.35 |V |38694.7063 | | 0.936157 | |A2V+A2V |07405 04315| +110154|200198 |GP Cep *|221845.6+560734 |E/WR+E: | 8.96 | 9.07 | |V |31256.602 | | 6.6883 | |WN6+O8-B0III:+O+O|07306 04323| +111849|200199 |GQ Cep |223922.9+753928 |ACV | 8.11 | 8.29 | |V |38350.57 | | 2.037638 |45 |A0p(Si) |08022 BD | +113385|200202 |GT Cep *|225747.3+682426 |EA/SD | 8.2 | 9.1 | 8.6 |V |25628.250 | | 4.908756 |14 *|B3V |04020 08645| +113017|200229 |IL Cep *|225315.6+620845 |EA | 9.29 | 9.61 | |V | | | 1.401 : | |B2-B3pe |05522 BD | +108426|200235 |IR Cep *|215751.9+610108 |DCEP | 7.58 | 7.98 | |V |41696.582 | | 2.114124 |40 |G0 |08300 08940| +108772|200274 |LZ Cep *|220204.6+580001 |ELL | 5.56 | 5.66 | 5.63 |B |41931.868 | | 3.070510 | |O8.5III+O9Vn |08213 BD | +108924|200277 |MO Cep |220353.0+630712 |LB: | 5.13 | 5.33 | |V | | | | |M5III |06330 BD | +112969|200286 |MX Cep *|225241.9+584823 |ACV | 7.81 | 7.96 | |V |40785.2 | | 17.22 | |A2p(Sr-Cr-Mn) |06992 BD | +113738|200289 |NN Cep *|230205.6+623044 |EA/DM | 8.2 | 8.58 | 8.52 |V |44507.4033 | | 2.058305 |12 *|A5 |08948 08686| +113461|200300 |NY Cep *|225839.8+630438 |EA/DM | 7.40 | 7.55 | |V |41903.8136 | | 15.275727 |02 |B0IV+B0IV |08691 07410| +14870 |200308 |OU Cep |031158.3+833446 |SR | 11.1 | 12.0 | |p | | | | |M8 |00174 BD | +37391 |200309 |OV Cep |074030.5+870112 |SR | 5.00 | 5.07 | |V | | | | |M2IIIab |06994 BD | +112558|200317 |PS Cep *|224749.6+580850 |E/DM | 10.13 | 10.19 | |V | | | 2.09168 | |B6Vne |07882 05479| +106801|200337 |V0337 Cep |213755.2+620455 |ACYG | 4.69 | 4.78 | |V | | | | |B2Ib |08213 BD | +107004|200360 |V0360 Cep |214018.7+682322 |DSCTC | 8.3 |( 0.03 )| |V | | | | | |67214 BD | +106205|200364 |V0364 Cep |213044.2+705959 |ACV: | 8.4 |( 0.025 )| |V | | | | | |68070 BD | +114307|200367 |V0367 Cep |230858.7+624856 |L | 8.24 | 8.91 | |B | | | | | |69089 BD | +115147|200368 |V0368 Cep |231926.6+790013 |RS | 7.7 |( 0.04 B )| |V | | | | | |69090 69305| +108461|200376 |V0376 Cep |215819.8+825216 |RS | 7.5 |( 0.07 )| |V | | | | | |71001 BD | +115550|200377 |V0377 Cep |232420.7+862504 |DSCTC | 6.58 | 6.64 | |V | | | | | |71222 BD | +116109|200378 |V0378 Cep |233133.9+861041 |ELL | 7.09 | 7.12 | |V | | | | | |71222 BD | +102258|200379 |V0379 Cep |204313.7+570650 |EA | 6.65 |( 0.06 b )| |B | | | | | |72045 BD | +103763|200380 |V0380 Cep |210136.9+680948 |INA | 7.10 | 7.36 | |U | | | | | |72187 72046| +105259|200381 |V0381 Cep |211915.7+583725 |LC: | 5.51 | 5.71 | |V | | | | | |72047 BD | +105268|200382 |V0382 Cep |211922.2+645219 |BE | 5.08 | 5.23 | |V | | | | | |72048 BD | +107913|200383 |V0383 Cep |215147.6+615635 |EB | 7.27 | 7.58 | |V | | | | | |72050 72050| +113853|200387 |V0387 Cep |230323.7+602644 |LPB | 6.72 |( 0.02 b )| |B | | | | | |72045 BD | +114831|200388 |V0388 Cep |231537.7+705317 |DSCT: | 5.56 |( 0.07 )| |V | | | | | |72053 BD | +215 |200396 |V0396 Cep |000241.9+750210 |LB: | 9.24 | 9.35 | |Hp| | | | | |HIP HIP | +270 |200397 |V0397 Cep |000324.0+731028 |EA | 7.39 | 7.81 | |Hp| | | | | |HIP HIP | +302 |200398 |V0398 Cep |000351.6+664244 |SRB | 6.30 | 6.40 | |Hp| | | | | |HIP HIP | +386 |200399 |V0399 Cep |000449.0+681119 |IA | 9.15 | 9.35 | |Hp| | | | | |HIP HIP | +1041 |200400 |V0400 Cep |001301.0+723119 |WR | 10.58 | 10.77 | |Hp| | | | | |HIP HIP | +1131 |200401 |V0401 Cep |001406.0+732327 |SRB | 8.17 | 8.33 | |Hp| | | | | |HIP HIP | +2299 |200402 |V0402 Cep |002920.1+795242 |DSCTC | 10.56 | 10.64 | |Hp| | | | | |HIP HIP | +9014 |200403 |V0403 Cep |015602.9+805430 |SRB: | 7.19 | 7.33 | |Hp| | | | | |HIP HIP | +9717 |200404 |V0404 Cep |020459.9+825036 |LB: | 9.78 | 9.96 | |Hp| | | | | |HIP HIP | +12805 |200405 |V0405 Cep |024434.4+791156 |EA: | 8.75 | 8.95 | |Hp| | | | | |HIP HIP | +18468 |200406 |V0406 Cep |035650.7+844910 |LB: | 8.23 | 8.36 | |Hp| | | | | |HIP HIP | +20315 |200407 |V0407 Cep |042107.4+812542 |DSCTC | 8.06 | 8.15 | |Hp| | | | | |HIP HIP | +20860 |200408 |V0408 Cep |042813.3+834828 |GCAS: | 5.41 | 5.50 | |Hp| | | | | |HIP HIP | +21499 |200409 |V0409 Cep |043702.4+824125 |LB: | 9.30 | 9.42 | |Hp| | | | | |HIP HIP | +34575 |200410 |V0410 Cep |070939.5+853412 |LB: | 8.07 | 8.17 | |Hp| | | | | |HIP HIP | +41118 |200411 |V0411 Cep |082323.4+862243 |LB | 8.27 | 8.42 | |Hp| | | | | |HIP HIP | +99381 |200412 |V0412 Cep |201016.1+612045 |LB | 7.45 | 7.82 | |Hp| | | | | |HIP HIP | +100746|200413 |V0413 Cep |202533.5+801313 |E: | 7.54 | 7.59 | |Hp| | | | | |HIP HIP | +102358|200414 |V0414 Cep |204422.1+562918 |SRB: | 5.87 | 6.04 | |Hp| | | | | |HIP HIP | +102445|200415 |V0415 Cep |204531.8+622345 |EA | 7.90 | 8.23 | |Hp| | | | | |HIP HIP | +102558|200416 |V0416 Cep |204701.1+582500 |SRB: | 6.75 | 6.90 | |Hp| | | | | |HIP HIP | +102926|200417 |V0417 Cep |205110.0+552920 |GCAS: | 8.28 | 8.48 | |Hp| | | | | |HIP HIP | +102943|200418 |V0418 Cep |205124.1+570343 |BE | 9.34 | 9.48 | |Hp| | | | | |HIP HIP | +104719|200419 |V0419 Cep |211247.3+600553 |LC: | 6.28 | 6.55 | |Hp| | | | | |HIP HIP | +104883|200420 |V0420 Cep |211445.5+594540 |GCAS | 8.54 | 8.83 | |Hp| | | | | |HIP HIP | +105091|200421 |V0421 Cep *|211718.8+583641 |BE: | 6.45 | 6.51 | |Hp| | | | | |HIP HIP | +105193|200422 |V0422 Cep |211832.4+611104 |LB | 6.37 | 6.51 | |Hp| | | | | |HIP HIP | +105337|200423 |V0423 Cep |212011.1+794603 |LB | 8.74 | 8.99 | |Hp| | | | | |HIP HIP | +105690|200424 |V0424 Cep |212423.3+562142 |EA | 8.92 | 9.28 | |Hp| | | | | |HIP HIP | +105934|200425 |V0425 Cep |212717.0+595330 |LPB | 9.20 | 9.31 | |Hp| | | | | |HIP HIP | +105949|200426 |V0426 Cep |212725.3+594500 |LB | 6.04 | 6.19 | |Hp| | | | | |HIP HIP | +105960|200427 |V0427 Cep |212732.6+591741 |EB: | 9.17 | 9.27 | |Hp| | | | | |HIP HIP | +106200|200428 |V0428 Cep |213040.8+615013 |EB | 8.29 | 8.62 | |Hp| | | | | |HIP HIP | +106285|200429 |V0429 Cep |213138.4+573009 |ACYG: | 7.48 | 7.54 | |Hp| | | | | |HIP HIP | +106400|200430 |V0430 Cep |213301.1+620009 |BY: | 9.41 | 9.52 | |Hp| | | | | |HIP HIP | +106604|200431 |V0431 Cep |213525.9+681309 |ACV | 6.42 | 6.47 | |Hp| | | | | |HIP HIP | +106716|200432 |V0432 Cep |213659.6+580825 |BE | 8.56 | 8.66 | |Hp| | | | | |HIP HIP | +106712|200433 |V0433 Cep |213657.1+681107 |GCAS: | 8.19 | 8.36 | |Hp| | | | | |HIP HIP | +106964|200434 |V0434 Cep |213949.7+654401 |E | 9.12 | 9.31 | |Hp| | | | | |HIP HIP | +107353|200435 |V0435 Cep |214434.0+590326 |BE | 9.48 | 9.59 | |Hp| | | | | |HIP HIP | +107473|200436 |V0436 Cep |214604.7+790107 |SRB | 7.68 | 8.06 | |Hp| | | | | |HIP HIP | +107725|200437 |V0437 Cep |214921.0+563333 |LB: | 9.32 | 9.49 | |Hp| | | | | |HIP HIP | +108133|200438 |V0438 Cep |215426.6+801831 |SRB | 6.32 | 6.49 | |Hp| | | | | |HIP HIP | +108546|200439 |V0439 Cep |215919.7+601752 |BE: | 7.69 | 7.80 | |Hp| | | | | |HIP HIP | +108714|200440 |V0440 Cep |220119.9+593007 |ACYG: | 9.43 | 9.55 | |Hp| | | | | |HIP HIP | +108646|200441 |V0441 Cep |220036.6+750423 |EA | 8.74 | 9.22 | |Hp| | | | | |HIP HIP | +108938|200442 |V0442 Cep |220412.9+595202 |EB | 6.93 | 7.06 | |Hp| | | | | |HIP HIP | +108957|200443 |V0443 Cep |220427.8+622428 |EA | 8.44 | 8.70 | |Hp| | | | | |HIP HIP | +109124|200444 |V0444 Cep |220613.6+562036 |ELL: | 6.33 | 6.40 | |Hp| | | | | |HIP HIP | +109191|200445 |V0445 Cep |220710.9+722222 |ELL: | 6.88 | 6.91 | |Hp| | | | | |HIP HIP | +109311|200446 |V0446 Cep |220845.6+610121 |EA | 7.31 | 7.45 | |Hp| | | | | |HIP HIP | +109505|200447 |V0447 Cep *|221059.6+632359 |LPB: | 7.39 | 7.44 | |Hp| | | | | |HIP HIP | +109606|200448 |V0448 Cep *|221209.8+534156 |E: | 9.59 | 9.73 | |Hp| | | | | |HIP HIP | +110200|200449 |V0449 Cep |221920.9+585711 |ACYG: | 8.95 | 9.06 | |Hp| | | | | |HIP HIP | +110662|200450 |V0450 Cep |222503.7+575030 |BE | 10.29 | 10.45 | |Hp| | | | | |HIP HIP | +111250|200451 |V0451 Cep |223226.9+583706 |LB | 10.27 | 11.12 | |Hp| | | | | |HIP HIP | +112088|200452 |V0452 Cep |224210.3+752611 |SRD | 8.74 | 8.84 | |Hp| | | | | |HIP HIP | +112972|200453 |V0453 Cep *|225245.8+605459 |EA | 7.54 | 7.66 | |Hp| | | | | |HIP HIP | +113065|200454 |V0454 Cep *|225354.0+623548 |EA: | 9.15 | 9.25 | |Hp| | | | | |HIP HIP | +113263|200455 |V0455 Cep |225608.6+585315 |ACYG | 8.48 | 8.53 | |Hp| | | | | |HIP HIP | +113316|200456 |V0456 Cep |225656.1+595742 |ACV: | 7.18 | 7.23 | |Hp| | | | | |HIP HIP | +114344|200457 |V0457 Cep |230928.4+682542 |LPB | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +114791|200458 |V0458 Cep |231512.4+602702 |WR | 9.64 | 9.82 | |Hp| | | | | |HIP HIP | +115262|200459 |V0459 Cep |232045.1+770346 |DSCTC | 7.72 | 7.75 | |Hp| | | | | |HIP HIP | +116622|200460 |V0460 Cep |233801.6+652602 |LB | 8.35 | 8.55 | |Hp| | | | | |HIP HIP | +117469|200461 |V0461 Cep |234909.1+684007 |LB: | 8.06 | 8.18 | |Hp| | | | | |HIP HIP | +117670|200462 |V0462 Cep |235149.7+815013 |EB | 8.66 | 8.77 | |Hp| | | | | |HIP HIP | +40 |200463 |V0463 Cep |000029.3+671300 |E: | 10.24 | 10.55 | |Hp| | | | | |HIP HIP | +109743|200741 |V0741 Cep *|221348.1+671026 |EA | 9.09 | 9.25 | 9.17 |V |51450.602 | | 6.00911 |04 |B8 |79006 DM | +139 |200747 |V0747 Cep *|000146.9+673025 |EA | 9.97 | 10.13 | 10.05 |V |54400.5322 | | 5.33146 |06 |O5V(f)n |80009 80009| NL80_1 +106032|209002 |bet Cep *|212839.6+703339 |BCEP | 3.16 | 3.27 | |V |40444.625 | | 0.1904881 |50 |B2IIIeV |06487 BD | +110991|209004 |del Cep *|222910.3+582455 |DCEP | 3.48 | 4.37 | |V |36075.445 | | 5.366341 |25 |F5Ib-G1Ib |02392 08953| +109857|209005 |eps Cep *|221502.2+570237 |DSCTC | 4.15 | 4.21 | |V | | | 0.041242 | |F0IV |08955 BD | +109492|209006 |zet Cep *|221051.3+581205 |E: | 3.50 | 3.54 | |Hp| | | | | |HIP HIP | +107259|209012 |mu. Cep *|214330.5+584648 |SRC | 3.43 | 5.1 | |V | | | 730. | |M2eIa |08956 08953| +107418|209013 |nu. Cep |214526.9+610715 |ACYG | 4.25 | 4.35 | |V | | | | | |68370 BD | +11350 |210001 |R Cet |022602.3-001042 |M | 7.2 | 14. | |V |43768. | | 166.24 |43 |M4e-M9 |00001 00002| +1728 |210003 |T Cet |002146.3-200329 |SRC | 5.0 | 6.9 | |V |40562. | | 158.9 | |M5-6SIIe |00001 00002| +11910 |210004 |U Cet |023343.7-130854 |M | 6.8 | 13.4 | |V |42137. | | 234.76 |44 |M2e-M6e |00001 00002| +15465 |210007 |X Cet |031926.1-010356 |M | 8.4 | 13.0 | |V |41953. | | 177.14 |49 |M2e(S)-M6e |00001 00002| +7149 |210010 |RR Cet *|013208.2+012030 |RRAB | 9.10 | 10.10 | |V |33181.404 | | 0.55302814 |12 |A7-F5 |03506 00188| +4725 |210013 |RU Cet *|010040.3-155728 |RRAB | 10.83 | 12.13 | |V |39826.411 | | 0.586280 |18 |A7:-F8 |05233 02455| +10491 |210014 |RV Cet *|021514.9-104801 |RRAB | 10.35 | 11.22 | |V |39113.363 | | 0.623403 |20 |F0-G5 |05233 00184| +2655 |210016 |RX Cet *|003338.3-152915 |RRAB | 11.01 | 11.75 | |V |40125.799 | | 0.5736918 |20 |F0:-F4 |05839 00188| +11517 |210018 |RZ Cet *|022832.4-082130 |RRAB | 11.24 | 12.36 | |V |33906.892 | | 0.51061074 |16 |A6-F4 |06071 00188| +7647 |210023 |SW Cet |013830.1+012140 |LB | 9.8 | 10.9 | |p | | | | |M7III |00195 00196| +8294 |210027 |TT Cet *|014656.5-094510 |EW/KE: | 10.8 | 11.32 | 11.1 |V |32545.830 | | 0.4859565 | |A |01005 02532| +15090 |210029 |TV Cet *|031436.5+024516 |EA/DM | 8.60 | 9.32 | 9.10 |V |41275.962 | | 9.1032884 |03 *|F2 |06011 08953| +8447 |210030 |TW Cet *|014854.1-205335 |EW/KW | 10.43 | 11.18 | 11.14 |V |42373.378 | | 0.3168519 | |G5+G5 |00001 08953| +320 |210034 |UU Cet *|000405.1-165952 |RRAB | 11.54 | 12.36 | |V |41208.576 | | 0.606081 |20 |A7-F6: |07984 00182| +7417 |210047 |WY Cet |013535.9-115631 |EA/SD: | 9.6 | 10.4 | |p |26619.350 | | 1.939675 |13 *|A2 |05304 BD | +13937 |210050 |XY Cet *|025933.5+033103 |EA/DM | 8.65 | 9.54 | 9.34 |V |38372.949 | | 2.780712 |10 |Am+Am |05488 04132| +9361 |210051 |XZ Cet |020016.6-162046 |RRAB | 9.24 | 9.71 | |V | | | 0.8231000 |22 |A |03306 08953| +9258 |210055 |AA Cet *|015900.7-225511 |EW/KE | 6.2 | 6.7 | 6.7 : |p |41268.689 | | 0.53616996 | |F2 |00001 08953| +11348 |210056 |AB Cet *|022600.3-152029 |ACV: | 5.71 | 5.88 | |V |33226.69 | | 2.997814 |50 |A5Vp(Sr-Cr) |05880 BD | +893 |210057 |AC Cet |001058.0-183423 |LB | 7.96 | 8.29 | |V | | | | |M5III |05973 BD | +1158 |210058 |AD Cet *|001427.6-074650 |LB: | 4.9 | 5.16 | |V | | | | |M3III |05841 BD | +1170 |210059 |AE Cet |001438.4-185558 |LB: | 4.26 | 4.46 | |V | | | | |M1III-M3III |05841 BD | +2215 |210061 |AG Cet |002800.6-113932 |SRB | 6.99 | 7.45 | |V | | | 90. : | |M3 |05973 08953| +4707 |210064 |AK Cet |010030.4-121145 |LB | 7.68 | 7.94 | |V | | | | |M3 |05973 BD | +5368 |210065 |AL Cet |010838.9-170349 |LB | 8.75 | 9.07 | |V | | | | |M5III |05973 BD | +5559 |210066 |AM Cet |011117.3-133012 |SRB | 6.84 | 7.12 | |V | | | 70. : | |M5III |05973 BD | +8521 |210070 |AQ Cet |014954.6-045134 |LB | 8.49 | 9.00 | |V | | | | |MC |05973 BD | +9372 |210071 |AR Cet |020026.8-083126 |SR: | 5.40 | 5.61 | |V | | | | |M3III |05973 BD | +10733 |210072 |AS Cet |021808.6-140801 |LB | 7.90 | 8.09 | |V | | | | |M2 |05973 BD | +12594 |210073 |AT Cet |024157.5-223622 |SRB | 8.08 | 8.32 | |V | | | 60. : | |M5 |05973 00022| +6539 |210075 |AV Cet |012402.5-080027 |DSCTC | 6.20 | 6.22 | |V | | | 0.070 | |F0V |06255 BD | +5951 |210078 |AY Cet |011636.3-023001 |RS | 5.35 | 5.58 | |V | | | | |G5III-IVe |08933 BD | +3025 |210080 |BB Cet |003831.9-201748 |ACV | 6.63 | 6.64 | |V |42620.629 | | 1.4788 |30 |B8p(Si) |00208 BD | +4488 |210081 |BC Cet |005732.5-102833 |ACV | 7.64 | 7.66 | |V | | | 1.11 | |A0p(Si) |08934 BD | +1792 |210082 |BD Cet |002246.3-091351 |RS | 8.2 |( 0.10 )| |V | | | | | |67226 BD | +1803 |210083 |BE Cet |002251.8-121234 |BY | 6.38 | 6.43 | |V | | | | | |67239 BD | +2852 |210085 |BG Cet |003606.9-225032 |DSCTC | 6.35 |( 0.009 )| |B | | | | | |67245 CoD | +6448 |210087 |BI Cet |012250.3+004243 |RS | 8.08 | 8.30 | |V | | | | | |68279 BD | +8778 |210088 |BK Cet |015252.1-165545 |DSCTC | 5.73 | 5.81 | |V | | | | | |68079 BD | +12460 |210096 |BS Cet |024026.6-142657 |DSCTC | 6.65 | 6.73 | |V | | | | | |71017 BD | +2762 |210098 |BU Cet |003514.9-033534 |RS | 3.86 | 3.96 | |K | | | | | |72054 BD | +13976 |210103 |BZ Cet |030002.8+074459 |BY | 7.95 |( 0.05 )| |V | | | | | |73005 BD | +520 |210106 |CE Cet |000616.9-104643 |SRB | 7.54 | 7.67 | |Hp| | | | | |HIP HIP | +696 |210107 |CF Cet |000833.5-173441 |SRB | 6.11 | 6.27 | |Hp| | | | | |HIP HIP | +720 |210108 |CG Cet |000853.6-221046 |SRB | 7.12 | 7.23 | |Hp| | | | | |HIP HIP | +1032 |210109 |CH Cet |001253.4-221551 |LB | 8.53 | 8.67 | |Hp| | | | | |HIP HIP | +1378 |210110 |CI Cet |001713.2-140633 |ACV: | 9.46 | 9.52 | |Hp| | | | | |HIP HIP | +1808 |210111 |CK Cet |002257.0-203924 |EB | 10.41 | 10.74 | |Hp| | | | | |HIP HIP | +2274 |210112 |CL Cet *|002904.1-171301 |RRC: | 9.88 | 10.00 | |Hp| | | | | |HIP HIP | +2618 |210113 |CM Cet |003314.3-104343 |LB: | 9.58 | 9.73 | |Hp| | | | | |HIP HIP | +3158 |210114 |CN Cet |004010.0-085553 |EA: | 9.10 | 9.74 | |Hp| | | | | |HIP HIP | +4106 |210115 |CO Cet |005240.6-212619 |SRD | 7.48 | 7.61 | |Hp| | | | | |HIP HIP | +4530 |210116 |CP Cet |005800.4-223545 |SRD | 8.57 | 8.63 | |Hp| | | | | |HIP HIP | +4586 |210117 |CQ Cet |005843.8-193758 |SRB | 7.11 | 7.24 | |Hp| | | | | |HIP HIP | +4726 |210118 |CR Cet |010040.4-013931 |SRB | 6.81 | 6.94 | |Hp| | | | | |HIP HIP | +5227 |210119 |CS Cet |010649.0-225121 |BY: | 7.89 | 7.95 | |Hp| | | | | |HIP HIP | +5452 |210120 |CT Cet |010945.8-201259 |EW | 9.41 | 9.59 | |Hp| | | | | |HIP HIP | +6286 |210121 |CU Cet |012037.1-082453 |SRB | 8.66 | 9.70 | |Hp| | | | | |HIP HIP | +6430 |210122 |CV Cet |012236.2-045612 |SRB | 9.23 | 9.65 | |Hp| | | | | |HIP HIP | +6501 |210123 |CW Cet |012330.2-135527 |RR: | 8.40 | 8.49 | |Hp| | | | | |HIP HIP | +7021 |210124 |CX Cet |013028.1-173359 |E: | 9.60 | 10.22 | |Hp| | | | | |HIP HIP | +7218 |210125 |CY Cet |013258.9+000737 |SRB: | 7.98 | 8.11 | |Hp| | | | | |HIP HIP | +7757 |210126 |CZ Cet |013953.8-225448 |SRB | 7.28 | 7.40 | |Hp| | | | | |HIP HIP | +7986 |210127 |DD Cet |014235.8-201021 |SRD | 7.30 | 7.34 | |Hp| | | | | |HIP HIP | +8196 |210128 |DE Cet |014521.4-031008 |SRB | 7.39 | 7.57 | |Hp| | | | | |HIP HIP | +8337 |210129 |DF Cet |014731.4-075237 |LB: | 8.55 | 8.66 | |Hp| | | | | |HIP HIP | +8579 |210130 |DG Cet |015037.3-045715 |E | 9.03 | 9.49 | |Hp| | | | | |HIP HIP | +8574 |210131 |DH Cet |015034.0-173900 |SR | 9.31 | 9.93 | |Hp| | | | | |HIP HIP | +8646 |210132 |DI Cet |015128.3-152719 |SRD | 9.42 | 9.72 | |Hp| | | | | |HIP HIP | +9141 |210133 |DK Cet |015749.0-215405 |BY: | 8.16 | 8.28 | |Hp| | | | | |HIP HIP | +9274 |210134 |DL Cet |015911.3+013645 |SRB | 11.29 | 11.76 | |Hp| | | | | |HIP HIP | +9701 |210135 |DM Cet |020446.7-171715 |LB | 7.27 | 7.52 | |Hp| | | | | |HIP HIP | +9854 |210136 |DN Cet |020646.6+035415 |SRB | 8.51 | 8.72 | |Hp| | | | | |HIP HIP | +9996 |210137 |DO Cet |020844.9-172329 |LB: | 7.93 | 8.03 | |Hp| | | | | |HIP HIP | +10099 |210138 |DP Cet |020951.4+034610 |EA | 6.85 | 7.05 | |Hp| | | | | |HIP HIP | +10522 |210139 |DQ Cet |021535.7-232208 |LB | 7.76 | 8.02 | |Hp| | | | | |HIP HIP | +10591 |210140 |DR Cet |021622.9+030611 |SRB | 9.14 | 9.35 | |Hp| | | | | |HIP HIP | +10579 |210141 |DS Cet |021609.3-210030 |EA: | 8.97 | 9.34 | |Hp| | | | | |HIP HIP | +11314 |210142 |DT Cet |022537.8+084318 |EB: | 9.15 | 9.27 | |Hp| | | | | |HIP HIP | +11864 |210143 |DU Cet |023305.1+100814 |LB: | 10.08 | 10.32 | |Hp| | | | | |HIP HIP | +11921 |210144 |DV Cet |023352.7-060020 |LB: | 8.35 | 8.45 | |Hp| | | | | |HIP HIP | +11998 |210145 |DW Cet |023440.5-024740 |SRB | 8.47 | 8.63 | |Hp| | | | | |HIP HIP | +12113 |210146 |DX Cet |023602.6+062557 |DSCT | 6.96 | 7.16 | |Hp| | | | | |HIP HIP | +12311 |210147 |DY Cet |023833.2-141757 |EW | 9.54 | 10.12 | |Hp| | | | | |HIP HIP | +12317 |210148 |DZ Cet |023836.2-210218 |LB: | 8.00 | 8.13 | |Hp| | | | | |HIP HIP | +13198 |210150 |EF Cet |024951.7+062802 |LB: | 12.08 | 12.53 | |Hp| | | | | |HIP HIP | +13495 |210151 |EG Cet |025346.2+092009 |SRB | 6.36 | 6.52 | |Hp| | | | | |HIP HIP | +13756 |210152 |EH Cet |025704.6+043004 |SRB: | 6.05 | 6.22 | |Hp| | | | | |HIP HIP | +14087 |210153 |EI Cet |030138.0+021006 |ACV: | 9.07 | 9.16 | |Hp| | | | | |HIP HIP | +14731 |210154 |EK Cet |031015.5+055432 |BY: | 11.59 | 11.99 | |Hp| | | | | |HIP HIP | +14915 |210155 |EL Cet *|031226.4+063939 |LB: | 5.66 | 5.70 | |Hp| | | | | |HIP HIP | +15728 |210156 |EM Cet |032237.9-003143 |EA: | 9.75 | 10.09 | |Hp| | | | | |HIP HIP | +11192 |210159 |EP Cet |022409.6-161516 |GDOR | 6.74 | 6.77 | |V | | | | | |75029 BD | +5938 |210166 |EW Cet |011624.2-120549 |BY | 7.55 |( 0.03 )| |V | | | 7.85 | |K0V |78018 DM | +7576 |210167 |EX Cet |013735.5-064538 |BY | 7.66 |( 0.02 )| |V | | | 7.15 | |G5V |78018 DM | +7852 |210168 |EY Cet |014058.8-052413 |BY | 8.50 |( 0.03 )| |V | | | 9.17 | |G0 |78018 DM | +8486 |210169 |EZ Cet |014923.4-104213 |BY | 6.75 |( 0.05 )| |V | | | 8.92 | |G1V |78005 DM | +9716 |210177 |FN Cet |020459.3-154041 |BY | 7.79 |( 0.04 )| |V | | | 15.78 | |K0V |78018 DM | +9807 |210178 |FO Cet |020610.7-101634 |GDOR | 6.68 | 6.75 | |V | | | 0.8227 | |F0 |78034 DM | +11261 |210181 |FR Cet *|022458.4-024648 |* | 6.31 | 6.65 | |V | | | | |A0III |78038 DM | +12031 |210182 |FS Cet |023507.6+034357 |R | 12.41 |( 0.01 )| |V | | | | |DAwke+M1.5V |78041 78009| +12158 |210183 |FT Cet |023641.8-030922 |BY | 8.10 |( 0.04 )| |V | | | 11.784 | |K0V |78018 DM | +13968 |210184 |FU Cet *|025953.2-004047 |* | 7.86 |( 0.05 )| |V | | | 21.20 | |G2III-IV |78018 DM | +14228 |210220 |HT Cet |030328.2+061336 |GDOR | 7.06 |( 0.02 )| |B | | | 1.0833 | |F2 |80130 HIP | NL80_1 +14135 |219001 |alf Cet |030216.8+040523 |LB: | 2.45 | 2.54 | |V | | | | |M2III |06994 BD | +12387 |219004 |del Cet *|023929.0+001943 |BCEP | 4.05 | 4.10 | |V |38338.4763 | | 0.16113668 | |B2IV |08935 BD | +10826 |219015 |omi Cet *|021920.8-025840 |M | 2.0 | 10.1 | |V |44839. | | 331.96 |38 |M5e-M9e |00001 00002| +66121 |220002 |S Cha *|133313.7-773410 |CST | 6.51 | | |V | | | | |F5V |00207 CPD | +58285 |220003 |T Cha *|115713.5-792132 |INSB | 10.09 | 14.0 | |V | | | | |F5 |02412 03508| +42794 |220011 |RS Cha *|084312.2-790412 |EA+DSCT | 6.02 | 6.68 | 6.53 |V |42850.7688 | | 1.669870 |15 *|A5V+A7V |04293 CPD | +52381 |220018 |RZ Cha *|104224.1-820214 |EA/DM | 8.2 | 9.1 | 8.8 |p |41401.7711 | | 2.832084 |11 *|F5+F5V |04302 CPD | +53691 |220118 |CR Cha |105907.0-770140 |INB | 11.20 | 11.37 | |V | | | | |K2e |06415 06415| +54413 |220121 |CU Cha |110803.3-773918 |INA | 8.38 | 8.48 | |V | | | | |B9-A0Vpe |08378 06415| +54744 |220122 |CV Cha |111227.7-764422 |INB | 10.93 | 10.98 | |V | | | | |G8e(T:) |06415 06415| +54365 |220132 |DI Cha |110720.7-773807 |INT | 10.65 | 10.74 | |V | | | | | |70037 70009| +44145 |220135 |DM Cha |085924.6-780534 |SRB | 8.22 | 8.36 | |Hp| | | | | |HIP HIP | +44189 |220136 |DN Cha |090005.1-754332 |SRB | 7.62 | 7.72 | |Hp| | | | | |HIP HIP | +44800 |220137 |DO Cha |090747.2-821930 |ELL: | 7.74 | 7.78 | |Hp| | | | | |HIP HIP | +48027 |220138 |DP Cha |094724.3-810341 |SRB | 7.84 | 7.98 | |Hp| | | | | |HIP HIP | +51632 |220139 |DQ Cha |103252.7-810947 |ACV | 7.80 | 7.84 | |Hp| | | | | |HIP HIP | +52340 |220140 |DR Cha |104151.5-794700 |E | 5.94 | 5.99 | |Hp| | | | | |HIP HIP | +55085 |220141 |DS Cha |111641.4-791553 |LB: | 8.96 | 9.09 | |Hp| | | | | |HIP HIP | +57263 |220142 |DT Cha |114436.1-774903 |LB: | 8.56 | 8.66 | |Hp| | | | | |HIP HIP | +57505 |220143 |DU Cha |114714.3-763705 |LB | 7.10 | 7.55 | |Hp| | | | | |HIP HIP | +57661 |220144 |DV Cha |114930.6-760932 |ACV | 9.93 | 10.07 | |Hp| | | | | |HIP HIP | +58400 |220145 |DW Cha |115828.2-775430 |BY: | 10.64 | 10.83 | |Hp| | | | | |HIP HIP | +58520 |220146 |DX Cha |120005.1-781135 |IA: | 6.59 | 6.70 | |Hp| | | | | |HIP HIP | +66607 |220147 |DY Cha |133912.0-754102 |LPB | 6.32 | 6.34 | |Hp| | | | | |HIP HIP | +58410 |220149 |EE Cha |115835.2-774932 |DSCT | 7.04 | 7.15 | |B | | | | | |76116 DM | +59093 |220150 |EF Cha |120705.5-784428 |DSCT | 7.86 | 7.97 | |B | | | | | |76116 DM | +49416 |220161 |ER Cha |100513.7-790344 |DSCTC | 7.6 |( 0.08 )| |B | | | | | |77086 DM | +46928 |229006 |zet Cha *|093353.4-805629 | | 5.06 | 5.17 | |V | | | | |B5IV |04614 CPD | +68837 |230004 |U Cir *|140542.4-670055 |SR | 12.0 | 13.5 | |p |23950. | | 145. | |C |00047 00022| +68692 |230073 |AT Cir *|140338.2-664407 |EA/DM | 8.4 | 8.8 | |p |15221.517 | | 3.257494 |15 |A5IV/V |08040 06871| +72583 |230075 |AV Cir |145030.3-672951 |DCEP | 8.0 | 8.6 | |p |38206.05 | | 3.0651 |40 |F7II |04383 08953| +72773 |230077 |AX Cir *|145235.3-634835 |DCEP | 5.65 | 6.09 | |V |38199.54 | | 5.273268 |32 |F2-G2II+B4 |05060 CPD | +72264 |230093 |BP Cir |144642.0-612743 |CEP | 7.54 |( 0.33 )| |V | | | 2.3984 |42 |F2/3II |02873 CPD | +70346 |230096 |BS Cir |142332.1-663842 |ACV | 6.7 |( 0.14 )| |V | | | 2.205 | |A2p(Si-Cr) |02590 CPD | +71960 |230097 |BT Cir |144304.5-621226 |DSCTC | 7.4 |( 0.01 )| |V | | | | | |67247 CPD | +72121 |230098 |BU Cir |144511.0-553606 |BCEP | 6.10 |( 0.02 )| |V | | | | | |67249 CPD | +73483 |230099 |BV Cir |150102.2-643434 |DSCT | 6.8 |( 0.10 )| |V | | | | | |67250 CPD | +74634 |230104 |CC Cir |151457.7-595030 |WR | 11.71 |( 0.10 )| |V | | | | | |73112 73090| +67226 |230105 |CD Cir |134631.5-644032 |LB: | 7.74 | 7.82 | |Hp| | | | | |HIP HIP | +68750 |230106 |CE Cir |140420.9-652458 |E: | 7.94 | 8.06 | |Hp| | | | | |HIP HIP | +69445 |230107 |CF Cir |141303.5-652653 |WR | 11.89 | 12.40 | |Hp| | | | | |HIP HIP | +71313 |230108 |CG Cir |143459.8-660150 |EA | 10.34 | 10.76 | |Hp| | | | | |HIP HIP | +71359 |230109 |CH Cir |143535.1-684421 |ACV | 7.72 | 7.78 | |Hp| | | | | |HIP HIP | +71390 |230110 |CI Cir |143555.0-695814 |LB | 7.12 | 7.23 | |Hp| | | | | |HIP HIP | +71668 |230111 |CK Cir |143931.7-681212 |BE | 6.81 | 6.89 | |Hp| | | | | |HIP HIP | +72032 |230112 |CL Cir |144404.1-562133 |EA | 8.57 | 9.15 | |Hp| | | | | |HIP HIP | +72377 |230113 |CM Cir |144757.1-683111 |ACV | 7.08 | 7.14 | |Hp| | | | | |HIP HIP | +72367 |230114 |CN Cir |144749.0-602526 |EB | 8.92 | 9.18 | |Hp| | | | | |HIP HIP | +72438 |230115 |CO Cir |144844.5-663537 |BE | 5.79 | 5.92 | |Hp| | | | | |HIP HIP | +72592 |230116 |CP Cir |145034.2-661534 |GCAS: | 7.51 | 7.74 | |Hp| | | | | |HIP HIP | +72616 |230117 |CQ Cir |145050.3-601710 |BE | 9.91 | 10.06 | |Hp| | | | | |HIP HIP | +72989 |230118 |CR Cir |145456.9-610433 |LC: | 7.39 | 7.50 | |Hp| | | | | |HIP HIP | +73247 |230119 |CS Cir |145812.2-611404 |EB | 8.95 | 9.14 | |Hp| | | | | |HIP HIP | +74011 |230121 |CU Cir |150730.1-604637 |BE | 8.48 | 8.59 | |Hp| | | | | |HIP HIP | +74147 |230122 |CV Cir |150903.3-615315 |BE | 6.90 | 7.03 | |Hp| | | | | |HIP HIP | +74654 |230123 |CW Cir |151516.2-581022 |BE | 7.95 | 8.16 | |V | | | | | |HIP HIP | +74660 |230124 |CX Cir |151524.1-590429 |ACYG: | 8.04 | 8.23 | |Hp| | | | | |HIP HIP | +75054 |230125 |CY Cir |152013.0-572353 |LB | 6.98 | 7.14 | |Hp| | | | | |HIP HIP | +75224 |230126 |CZ Cir |152220.1-590850 |ACYG: | 7.92 | 8.02 | |Hp| | | | | |HIP HIP | +69867 |230129 |DF Cir |141751.4-680249 |RS | 7.54 |( 0.08 )| |V | | | 0.646 | |F5V |78046 DM | +71908 |239001 |alf Cir |144230.4-645831 |ACVO | 3.18 | 3.21 | |V | | | | | |67251 CPD | +75323 |239003 |gam Cir |152322.6-591915 |BE: | 4.50 | 4.56 | |Hp| | | | | |HIP HIP | +74778 |239004 |del Cir |151656.9-605726 |ELL | 5.08 |( 0.1 )| |V | | | | | |72059 CPD | +73129 |239008 |tet Cir *|145644.0-624652 |GCAS | 5.02 | 5.44 | |V | | | | |B3Vne |08419 CPD | +27286 |240002 |S Col |054656.3-314128 |M | 8.9 | 14.2 | |V |40559. | | 325.85 |46 |M6e-M8 |00001 00002| +24824 |240003 |T Col *|051917.3-334229 |M | 6.6 | 12.7 | |V |41973. | | 225.84 |50 |M3e-M6e |00001 00002| +24514 |240011 |RS Col *|051531.2-284502 |EW/DW | 9.54 | 9.99 | 9.97 |V |40612.6483 | | 0.672355 | *|G+G |00001 08953| +29528 |240016 |RX Col |061314.7-371501 |RRAB | 11.4 | 12.6 | |p |28812.567 | | 0.594043 | | |00016 02338| +24471 |240017 |RY Col *|051507.8-413742 |RRAB | 10.44 | 11.24 | |V |34310.565 | | 0.4788571 |15 |A7-F3 |03126 06286| +23868 |240021 |SU Col |050747.0-335155 |RRAB | 11.3 | 12.3 | |p | | | | |A2II | CoD | +25194 |240023 |SW Col |052324.0-394042 |LB: | 5.71 |( 0.34 )| |V | | | | |M1III |05890 CoD | +31099 |240024 |SX Col |063135.0-365624 |LB: | 6.28 |( 0.13 )| |V | | | | |M1III |05840 CoD | +28489 |240030 |TW Col |060051.0-425214 |ACV | 7.0 |( 0.032 )| |V | | | | | |67064 CoD | +27727 |240033 |TZ Col |055216.0-283925 |RS | 9.05 |( 0.06 )| |V | | | | | |72060 CoD | +23815 |240039 |UZ Col |050706.2-374202 |LB: | 8.59 | 8.74 | |Hp| | | | | |HIP HIP | +23981 |240040 |VV Col |050915.1-381314 |LB | 9.34 | 9.61 | |Hp| | | | | |HIP HIP | +24710 |240041 |VW Col *|051800.4-272927 |EA | 9.24 | 10.33 | |Hp| | | | | |HIP HIP | +24713 |240042 |VX Col |051803.4-300009 |LB: | 8.48 | 8.58 | |Hp| | | | | |HIP HIP | +25710 |240043 |VY Col |052924.5-305722 |SRB | 7.65 | 7.89 | |Hp| | | | | |HIP HIP | +25775 |240044 |VZ Col |053014.0-424150 |BY: | 9.77 | 9.91 | |Hp| | | | | |HIP HIP | +26123 |240045 |WW Col |053415.9-362601 |LB: | 9.52 | 9.65 | |Hp| | | | | |HIP HIP | +26401 |240046 |WX Col |053712.9-424256 |RS: | 9.36 | 9.48 | |Hp| | | | | |HIP HIP | +26620 |240047 |WY Col |053930.0-363359 |LB: | 9.19 | 9.30 | |Hp| | | | | |HIP HIP | +26868 |240048 |WZ Col |054215.2-344004 |LPB: | 5.27 | 5.29 | |Hp| | | | | |HIP HIP | +26959 |240049 |XX Col |054314.5-332530 |SRB | 6.75 | 6.93 | |Hp| | | | | |HIP HIP | +27221 |240050 |XY Col |054610.2-352349 |LB: | 8.94 | 9.10 | |Hp| | | | | |HIP HIP | +27407 |240051 |XZ Col |054812.8-331353 |LB: | 9.17 | 9.27 | |Hp| | | | | |HIP HIP | +27473 |240052 |YY Col |054905.3-282247 |SRD | 8.47 | 8.64 | |Hp| | | | | |HIP HIP | +27656 |240053 |YZ Col |055121.4-415742 |SRD | 9.06 | 9.23 | |Hp| | | | | |HIP HIP | +27776 |240054 |ZZ Col |055239.5-364253 |SRB | 8.68 | 8.85 | |Hp| | | | | |HIP HIP | +27925 |240055 |AA Col |055432.7-350507 |DSCTC | 8.18 | 8.25 | |Hp| | | | | |HIP HIP | +28017 |240056 |AB Col |055534.5-285713 |SRB: | 7.71 | 7.87 | |Hp| | | | | |HIP HIP | +28770 |240057 |AC Col |060430.7-340328 |SRD | 8.58 | 9.09 | |Hp| | | | | |HIP HIP | +29096 |240059 |AE Col |060814.5-285941 |BY: | 11.69 | 11.99 | |Hp| | | | | |HIP HIP | +29263 |240060 |AF Col |061010.4-402114 |LB | 5.46 | 5.68 | |Hp| | | | | |HIP HIP | +29592 |240061 |AG Col |061411.9-341518 |LB | 8.78 | 9.10 | |Hp| | | | | |HIP HIP | +30587 |240062 |AH Col |062542.5-354151 |ACV | 7.83 | 7.89 | |Hp| | | | | |HIP HIP | +30875 |240063 |AI Col |062852.7-372029 |SRB | 8.15 | 8.27 | |Hp| | | | | |HIP HIP | +31113 |240064 |AK Col |063143.4-343001 |EA | 9.03 | 9.25 | |Hp| | | | | |HIP HIP | +31116 |240065 |AL Col |063145.2-371023 |ACV | 7.46 | 7.53 | |Hp| | | | | |HIP HIP | +31701 |240066 |AM Col |063753.6-341745 |LB | 9.05 | 9.31 | |Hp| | | | | |HIP HIP | +25007 |240067 |AN Col |052116.9-342042 |BE | 6.03 | 6.11 | |V | | | | | |75098 CoD | +24947 |240072 |AS Col |052038.0-394518 |RS: | 7.34 | 7.38 | |V | | | 0.690 : | |F5/6V |78046 DM | +29159 |240074 |AU Col |060902.6-410705 |DSCTC | 7.45 |( 0.04 b )| |V | | | 0.143 | |A2V |78037 DM | +28836 |240076 |AW Col *|060511.3-324351 |EA | 8.00 | 9.74 | 8.17 |V |52764.4934 | | 10.319 |04 |A3m |79100 DM | +27810 |249011 |lam Col |055306.9-334805 |ELL: | 4.85 | 4.92 | |V | | | 0.640 |35 |B5V |08380 CoD | +58854 |250001 |R Com *|120415.2+184657 |M | 7.1 | 14.6 | |V |43539. | | 362.82 |38 |M5e-M8ep |00001 00002| +61225 |250002 |S Com *|123245.6+270145 |RRAB | 10.89 | 12.13 | |V |40654.641 | | 0.5865907 |14 |A6-F7 |05917 00107| +61809 |250004 |U Com *|124003.2+272956 |RRC | 11.50 | 11.97 | |V |24961.445 | | 0.2927382 |35 |A8-F0 |00217 00107| +61243 |250015 |RW Com *|123300.3+264258 |EW/KW | 11.00 | 11.70 | 11.56 |V |40022.4163 | | 0.2373459 | |G2+G2 |08968 00107| +61414 |250018 |RZ Com *|123505.1+232014 |EW/KW | 10.42 | 11.13 | 11.09 |V |34837.4198 | | 0.33850604 | |K0+G9 |03580 00192| +64875 |250020 |ST Com *|131751.3+204651 |RRAB | 10.91 | 11.84 | |V |43224.506 | | 0.59892864 |19 |F2-F8 |00001 04948| +61071 |250034 |UU Com *|123100.6+243402 |ACV+DSCTC | 5.41 | 5.46 | |V |40334.194 | | | |A3p(Sr-Cr-Eu) |08969 02979| +63561 |250037 |UX Com *|130133.0+283754 |EA/AR/RS | 9.96 | 10.52 | 10.13 |V |25798.328 | | 3.642583 |08 |G2III |08592 BD | +60904 |250063 |AI Com *|122854.7+255446 |ACV+DSCT: | 5.23 | 5.40 | |V |39586.07 | | 5.0633 | |A0p(Cr-Eu-Sr) |08974 02979| +65915 |250174 |FK Com *|133046.8+241358 |FKCOM | 8.14 | 8.33 | |V |42192.345 | | 2.400 |40 : |G2eapnIII+K3V |08343 BD | +60066 |250176 |FM Com *|121902.0+260030 |DSCTC | 6.40 | 6.48 | |V | | | 0.0551 | |A5-A7mIV-V |07015 02979| +63950 |250182 |FS Com |130622.6+223658 |SRB | 5.30 | 6.1 | |V | | | 58. : | |M5III |04513 08953| +58519 |250193 |GK Com |120004.7+192510 |SRB | 6.84 | 7.13 | |V | | | 50. | |M4III |06645 BD | +59527 |250195 |GM Com *|121224.9+272248 |DSCTC | 8.06 | 8.14 | |V | | | 0.208 : | |F5V |06456 02979| +60514 |250196 |GN Com *|122418.5+260555 |ACV: | 5.15 | 5.18 | |V | | | | |A2V(Am) |06456 02979| +64936 |250209 |HH Com *|131837.3+262157 |ACV | 7.77 | 7.85 | |V |41731.0 | | 5.07 | |A2p(Sr-Cr-Eu) |08470 BD | +59995 |250225 |HY Com |121816.0+160916 |RRC | 10.25 | 10.73 | |V | | | | | |67254 BD | +60582 |250229 |IL Com |122502.3+253338 |RS: | 8.16 |( 0.04 )| |V | | | | | |68082 BD | +63087 |250231 |IN Com |125533.7+255331 |R:/PN | 8.7 |( 0.07 )| |V | | | | | |68084 68083| +65150 |250232 |IO Com |132103.6+222826 |EA | 9.15 | 9.48 | |V | | | | | |70038 70038| +66286 |250237 |IT Com |133508.1+204655 |RS | 7.57 |( 0.20 )| |V | | | | | |73005 BD | +59181 |250238 |IU Com |120811.6+170317 |BY: | 12.08 | 12.54 | |Hp| | | | | |HIP HIP | +59602 |250239 |IV Com |121320.5+164140 |BY: | 11.91 | 12.13 | |Hp| | | | | |HIP HIP | +59889 |250240 |IW Com |121656.6+274423 |LB | 7.94 | 8.08 | |Hp| | | | | |HIP HIP | +60867 |250241 |IX Com |122832.7+293524 |SRB | 8.60 | 8.75 | |Hp| | | | | |HIP HIP | +60999 |250242 |IY Com |123007.5+175344 |LB | 7.29 | 7.52 | |Hp| | | | | |HIP HIP | +61180 |250243 |IZ Com |123210.0+205509 |LB: | 8.66 | 8.80 | |Hp| | | | | |HIP HIP | +61204 |250244 |KK Com |123231.1+210603 |EB: | 9.54 | 9.77 | |Hp| | | | | |HIP HIP | +61290 |250245 |KL Com |123332.2+242655 |SR: | 7.25 | 7.39 | |Hp| | | | | |HIP HIP | +61701 |250246 |KM Com |123851.5+134814 |LB | 8.25 | 9.00 | |Hp| | | | | |HIP HIP | +61976 |250247 |KN Com |124202.4+140934 |LB: | 8.78 | 8.92 | |Hp| | | | | |HIP HIP | +62216 |250248 |KO Com |124503.9+233537 |LB: | 7.82 | 7.92 | |Hp| | | | | |HIP HIP | +62484 |250249 |KP Com |124817.9+191922 |SRB: | 7.64 | 7.77 | |Hp| | | | | |HIP HIP | +62494 |250250 |KQ Com |124823.3+203813 |LB: | 8.16 | 8.25 | |Hp| | | | | |HIP HIP | +65069 |250251 |KR Com |132015.8+174557 |EB: | 7.26 | 7.32 | |Hp| | | | | |HIP HIP | +65841 |250252 |KS Com |132947.7+274030 |LB | 8.47 | 8.71 | |Hp| | | | | |HIP HIP | +66179 |250253 |KT Com |133350.2+172530 |CWB: | 8.34 | 8.41 | |Hp| | | | | |HIP HIP | +60266 |250254 |KU Com |122126.7+245949 |DSCTC: | 7.42 |( 0.01 )| |V | | | | | |75101 BD | +62763 |250267 |LS Com |125141.9+273227 |FKCOM | 4.87 | 4.97 | |V | | | | | |77103 DM | +63462 |250269 |LU Com |130016.5+304706 |RS: | 4.90 |( 0.15 )| |V | | | | | |77105 DM | +59152 |250270 |LV Com |120750.9+185656 |BY | 9.16 |( 0.03 )| |V | | | 5.5 | |K2V |78018 DM | +62523 |250271 |LW Com |124847.0+245025 |BY | 6.31 |( 0.10 )| |V | | | 15.80 | |G5V |78160 DM | +62758 |250272 |LX Com |125138.4+253032 |BY | 9.09 |( 0.05 )| |V | | | 7.74 | |K1Ve |78018 DM | +63951 |250278 |MP Com |130622.7+221648 |GDOR | 6.86 | 6.94 | |Hp| | | 1.073 | |F0 |78165 DM | +59015 |250281 |MS Com |120600.8+231217 |GDOR | 7.85 |( 0.10 )| |B | | | 0.6879 | |F0V+G5:V |79219 DM | +61011 |250287 |MY Com |123013.7+215811 |BY | 10.23 |( 0.08 *)| |V | | | 1.1489 | |G0 |80021 HIP | NL80_2 +61902 |250290 |NO Com |124107.8+302614 |EA | 6.94 | 7.02 | |V |48052.22 | | 2.7044 | |A5mF0 |80015 HIP | NL80_2 +62772 |250292 |NQ Com |125147.2+223240 |BY | 10.48 |( 0.06 *)| |V | | | 3.4046 | |M0 |80021 HIP | NL80_2 +64463 |250298 |NW Com *|131247.4+265252 |DSCTC+GDOR| 8.43 | 8.48 | |V | | | 0.047852 | |Am |80380 HIP | NL80_2 +65933 |250314 |PP Com |133100.9+262325 |DSCTC | 7.38 |( 0.01 )| |V | | | 0.06230061 | |sgF1 |80092 HIP | NL80_2 +93449 |260001 |R CrA *|190153.6-365708 |INSA | 10.0 | 14.36 | |B | | | | |A5IIpe |08962 08961| +92207 |260005 |V CrA *|184732.3-380932 |RCB | 8.3 |< 16.5 | |V | | | | |C(R0) |08140 08613| +88584 |260006 |W CrA |180512.2-392033 |SRB | 11.0 | 13.1 | |p | | | 125. : | |C0-3(R4) |00236 CoD | +88081 |260015 |RW CrA *|175920.3-375253 |EA/SD | 9.3 | 10.3 | 9.4 |p |31017.297 | | 1.6835995 |18 |A0 |00240 00024| +88933 |260328 |QT CrA |180912.4-401213 |SRD: | 11.4 | 12.5 | |p | | | 79.145 |47 |A/Fe-K |00235 06286| +92244 |260413 |V0413 CrA *|184757.6-374423 |RRAB | 10.23 | 10.90 | |V |41500.369 | | 0.589339 |17 |F0-F8 |05233 06286| +90894 |260668 |V0668 CrA |183224.8-421914 |DSCTC | 8.70 | 8.76 | |V | | | 0.088 | |A4/5V |06338 CoD | +91327 |260681 |V0681 CrA |183739.6-425720 |EA/DM | 7.6 | 8.1 | |p |28748.350 | | 2.163925 | |B9.5V |03973 CoD | +92989 |260686 |V0686 CrA *|185640.5-372036 |ACV | 5.25 | 5.41 | 5.40 |V |42254.500 | | 7.34 | |B8IV(Si) |08970 CoD | +89290 |260692 |V0692 CrA *|181312.7-412010 |SXARI | 5.46 |( 0.05 )| |V | | | 1.67 | |B3p(Si) |08415 CoD | +93552 |260701 |V0701 CrA |190317.7-381511 |DSCTC | 5.69 | 5.73 | |V | | | | | |71017 CoD | +88517 |260711 |V0711 CrA |180432.8-421324 |EB | 8.36 | 8.69 | |Hp| | | | | |HIP HIP | +88711 |260712 |V0712 CrA |180636.4-433739 |SRC | 7.68 | 8.06 | |Hp| | | | | |HIP HIP | +88902 |260713 |V0713 CrA |180853.3-392940 |LB | 7.57 | 7.72 | |Hp| | | | | |HIP HIP | +89225 |260714 |V0714 CrA |181229.5-414258 |ACV | 8.10 | 8.15 | |Hp| | | | | |HIP HIP | +89955 |260715 |V0715 CrA |182114.4-390118 |ACV: | 6.80 | 6.85 | |Hp| | | | | |HIP HIP | +90254 |260716 |V0716 CrA |182457.8-383430 |LB: | 7.72 | 7.84 | |Hp| | | | | |HIP HIP | +91292 |260717 |V0717 CrA |183715.7-404813 |SRD | 7.03 | 7.13 | |Hp| | | | | |HIP HIP | +91494 |260718 |V0718 CrA |183935.2-431109 |LB: | 5.45 | 5.51 | |Hp| | | | | |HIP HIP | +91777 |260719 |V0719 CrA |184253.1-391708 |BE | 6.99 | 7.03 | |Hp| | | | | |HIP HIP | +93893 |260720 |V0720 CrA |190709.1-390757 |LB | 8.57 | 9.10 | |Hp| | | | | |HIP HIP | +93174 |269005 |eps CrA *|185843.4-370627 |EW | 4.74 | 5.00 | 4.95 |V |39707.6619 | | 0.5914264 | |F2V |05341 03508| +77442 |270001 |R CrB *|154834.4+280924 |RCB | 5.71 | 14.8 | |V | | | | |C0,0(F8pep) | 00002| +75143 |270002 |S CrB *|152124.0+312203 |M | 5.8 | 14.1 | |V |44604. | | 360.26 |35 |M6e-M8e |00001 00002| +74881 |270004 |U CrB *|151811.4+313849 |EA/SD | 7.66 | 8.79 | 7.72 |V |16747.9718 | | 3.45220133 |14 *|B6V+F8III-IV |08608 00010| +77501 |270005 |V CrB |154931.3+393418 |M | 6.9 | 12.6 | |V |43763. | | 357.63 |41 |C6,2e(N2e) |00001 00002| +77460 |270007 |X CrB |154853.5+361453 |M | 8.5 | 14.2 | |V |43719. | | 241.17 |46 |M5e-M7e |00001 00002| +77284 |270008 |Y CrB |154643.7+381921 |SRB | 10.9 | 12.8 | |p | | | 300. | |M8 | 00567| +76844 |270010 |RR CrB *|154126.2+383327 |SRB | 8.4 | 10.1 | |p | | | 60.8 |50 |M5 |01100 00002| +78235 |270011 |RS CrB *|155830.8+360120 |SRA | 8.7 | 11.6 | |p |34825. | | 332.2 |47 |M7 |02430 08953| +76551 |270012 |RT CrB *|153803.0+292914 |EA/AR:/RS | 10.20 | 10.82 | 10.52 |V |28273.243 | | 5.1171590 |08 *|G0 |08592 08953| +76343 |270013 |RU CrB |153536.6+254510 |SRA | 10.6 | 11.7 | |V |25812. | | 436. |52 |M5 |00373 BD | +79974 |270014 |RV CrB *|161925.9+294248 |RRC | 11.14 | 11.70 | |V |42926.334 | | 0.331565 |36 |A9 |08697 01102| +76658 |270015 |RW CrB *|153915.2+293720 |EA/SD: | 10.22 | 10.78 | 10.29 |V |40751.7302 | | 0.7264114 |20 |F2V |06497 08953| +80259 |270017 |RY CrB |162305.1+305101 |SRB | 9.2 | 10.4 | |V |31344. | | 90. |52 |M10III |03246 08953| +76791 |270023 |SW CrB |154045.3+384307 |SRB | 7.8 | 8.5 | |V | | | 100. : | |M0 |08179 08953| +79659 |270024 |SX CrB |161523.8+331948 |LB | 9.8 | 10.3 | |p | | | | |M5 |00169 02379| +76460 |270025 |SY CrB |153655.2+323454 |LB | 10.4 | 11.0 | |p | | | | |M6 |04022 08953| +75225 |270029 |TV CrB |152221.4+265238 |RRAB | 10.6 | 12.2 | |p |31618.537 | | 0.5846145 |15 |A8 |05436 03160| +79607 |270033 |TZ CrB *|161440.9+335131 |RS+DSCT: | 5.69 |( 0.05 )| |V |23869.561 | | 1.139789 | |F8V |08402 BD | +75283 |270034 |UU CrB *|152252.8+313313 |* | 8.59 | 8.64 | |V |44381.753 | | | |F8 |08751 BD | +75233 |270035 |UV CrB |152225.3+253727 |ELL | 7.20 |( 0.16 )| |V | | | | | |68316 BD | +76414 |270050 |XY CrB |153626.2+372236 |LB: | 8.18 | 8.30 | |Hp| | | | | |HIP HIP | +77605 |270051 |XZ CrB |155034.3+342530 |LB: | 9.47 | 9.66 | |Hp| | | | | |HIP HIP | +77598 |270052 |YY CrB |155032.4+375008 |EW | 8.64 | 9.13 | |Hp| | | | | |HIP HIP | +77841 |270053 |YZ CrB |155338.9+254715 |LB: | 9.18 | 9.30 | |Hp| | | | | |HIP HIP | +78061 |270054 |ZZ CrB |155615.4+311320 |LB | 7.89 | 8.05 | |Hp| | | | | |HIP HIP | +78209 |270055 |AA CrB |155813.3+281622 |LB: | 9.41 | 9.53 | |Hp| | | | | |HIP HIP | +78777 |270056 |AB CrB |160457.4+273820 |LB: | 9.15 | 9.26 | |Hp| | | | | |HIP HIP | +78844 |270057 |AC CrB |160540.4+305501 |LB: | 8.23 | 8.36 | |Hp| | | | | |HIP HIP | +78959 |270058 |AD CrB |160708.7+322247 |SRB: | 8.73 | 9.11 | |Hp| | | | | |HIP HIP | +79057 |270059 |AE CrB |160812.5+373601 |LB: | 9.97 | 10.16 | |Hp| | | | | |HIP HIP | +79162 |270060 |AF CrB |160924.8+305201 |LB: | 9.72 | 9.83 | |Hp| | | | | |HIP HIP | +79283 |270061 |AG CrB |161053.3+290830 |SRB | 9.10 | 9.37 | |Hp| | | | | |HIP HIP | +80073 |270062 |AH CrB |162035.0+343740 |SRB | 8.41 | 8.93 | |Hp| | | | | |HIP HIP | +80100 |270063 |AI CrB |162104.4+373932 |LB: | 9.18 | 9.28 | |Hp| | | | | |HIP HIP | +78234 |270065 |AL CrB *|155830.5+265111 |* | 8.49 | 8.55 | |V | | | | | |77119 DM | +76330 |270067 |AN CrB |153530.2+361235 |BY | 8.61 |( 0.02 )| |V | | | 9.37 : | |K0V |78018 DM | +76674 |270068 |AO CrB |153925.2+273735 |BY | 8.99 |( 0.04 )| |V | | | 6.98 | |G5V |78018 DM | +78913 |270073 |AT CrB |160629.6+383756 |BY | 8.58 |( 0.02 )| |V | | | 26.02 | |K3V |78018 DM | +75011 |270077 |AX CrB |151940.1+315033 |BY | 9.04 |( 0.18 )| |V | | | 9.24 | |K0V |80412 HIP | NL80_2 +76426 |270087 |BI CrB |153633.4+271029 |RS: | 10.00 |( 0.05 *)| |V | | | 1.3393 | |A0 |80021 HIP | NL80_2 +76452 |270088 |BK CrB |153650.3+373449 |BY | 11.30 |( 0.06 *)| |V | | | 4.3950 | |M2 |80021 HIP | NL80_2 +76267 |279001 |alf CrB *|153441.3+264253 |EA/DM | 2.21 | 2.32 |( 0.25 )|B |23163.770 | | 17.359907 |03 *|A0V+G5V |01106 05056| +75695 |279002 |bet CrB *|152749.7+290621 |ACV | 3.65 | 3.72 | |V |40335.0 | | 18.487 | |F0IIIp(Sr-Cr-Eu) |05343 05056| +76952 |279003 |gam CrB *|154244.6+261744 |DSCTC | 3.80 | 3.86 | |V | | | 0.030 | |A0IV |06255 05056| +77512 |279004 |del CrB |154935.6+260406 |RS: | 4.57 | 4.69 | |V | | | | | |69098 BD | +76127 |279008 |tet CrB |153255.8+312133 |BE | 4.06 | 4.33 | |V | | | | | |72066 BD | +60106 |280001 |R Crv |121937.9-191522 |M | 6.7 | 14.4 | |V |42781. | | 317.03 |41 |M4.5e-M9:e |00001 00002| +62518 |280007 |X Crv |124843.4-193020 |SRB | 10.8 |< 12.0 | |p | | | 112.3 | |M6III |00018 BD | +61620 |280014 |RV Crv *|123740.7-193440 |EB/KE | 8.60 | 9.16 | |V |41029.384 | | 0.7472521 | |F0+G0: |07026 08953| +62611 |280022 |SV Crv |124947.0-150444 |SRB | 6.78 | 7.6 | |V | | | 70. : | |M5III |08225 07071| +61825 |280024 |SX Crv *|124015.0-184801 |EW/KW | 8.99 | 9.25 | 9.23 |V |41017.4557 | | 0.3166386 | |F8 |07459 BD | +60421 |280027 |TT Crv |122318.9-114844 |SR | 6.47 | 6.57 | |V | | | 11.5 | |M3III |08225 BD | +61496 |280028 |TU Crv |123558.8-203139 |DSCTC | 6.53 |( 0.025 )| |B | | | 0.082 | |F0III |08403 BD | +58579 |280031 |TX Crv |120047.5-120927 |E: | 8.08 | 8.60 | |Hp| | | | | |HIP HIP | +58587 |280032 |TY Crv *|120051.2-193932 |ELL | 5.19 | 5.23 | |Hp| | | | | |HIP HIP | +58596 |280033 |TZ Crv |120057.3-211503 |SRD | 8.27 | 8.47 | |Hp| | | | | |HIP HIP | +58997 |280034 |UU Crv |120549.1-234652 |LB: | 8.95 | 9.05 | |Hp| | | | | |HIP HIP | +59914 |280035 |UV Crv |121724.0-210330 |BY: | 9.38 | 9.49 | |Hp| | | | | |HIP HIP | +60117 |280036 |UW Crv |121942.6-191156 |LB | 8.03 | 8.28 | |Hp| | | | | |HIP HIP | +60213 |280037 |UX Crv |122051.0-125112 |LB | 8.08 | 8.39 | |Hp| | | | | |HIP HIP | +60438 |280038 |UY Crv |122328.2-230941 |BY: | 10.82 | 11.00 | |Hp| | | | | |HIP HIP | +60520 |280039 |UZ Crv |122422.8-224808 |LB | 9.45 | 9.80 | |Hp| | | | | |HIP HIP | +61910 |280040 |VV Crv |124115.9-130050 |EA | 5.19 | 5.34 | |Hp| | | | | |HIP HIP | +62853 |280041 |VW Crv |125258.8-143714 |SRB: | 7.48 | 7.80 | |Hp| | | | | |HIP HIP | +62505 |280044 |VZ Crv |124832.3-154310 |BY | 7.93 |( 0.03 )| |V | | | 18.62 : | |K2V |78018 DM | +53809 |290001 |R Crt *|110033.9-181930 |SRB | 9.8 | 11.2 | |p | | | 160. : | |M7 |01113 08953| +57917 |290002 |S Crt *|115245.1-073548 |SRB | 10.7 | 12.3 | |p | | | 155. | |M6e-M7e | BD | +55639 |290003 |T Crt *|112353.0-195430 |SRB | 9.7 | 11.3 | |p | | | 70. : | |M4 |01113 08953| +55825 |290006 |W Crt *|112629.6-175452 |RRAB | 10.74 | 12.08 | |V |39644.289 | | 0.41201459 |13 |A5:-F6: |09009 00464| +57625 |290007 |X Crt *|114856.2-102629 |RRAB | 11.12 | 11.76 | |V |41798.339 | | 0.73283324 |18 |F2-F7 |00727 06286| +53915 |290012 |RT Crt |110155.1-073942 |M | 10.8 | 14. | |p |27459. | | 342.7 | |M8 |00349 00132| +57800 |290013 |RU Crt |115106.5-111228 |LB: | 8.5 | 9.5 | |p | | | | |M3 |00349 08953| +55173 |290016 |RX Crt |111747.1-220845 |SRB | 7.3 : | 7.7 : | |V | | | 300. : | |M3 |05828 BD | +56555 |290019 |SS Crt |113544.7-175538 |SRB | 8.54 | 8.82 | |V |40692. :| | 65. | | |05828 BD | +56327 |290021 |SU Crt *|113251.6-120206 |DSCTC | 8.62 | 8.65 | |V | | | 0.055 | |F2V |06338 BD | +55106 |290022 |SV Crt *|111658.2-070805 |ACV | 6.32 | 6.35 |( 0.015 )|B |40373.62 | | 5.90513 | |A8IVp(Sr-Cr-Si) |07074 BD | +54999 |290025 |SY Crt |111539.8-123533 |LB: | 6.34 | 6.62 | |V | | | | |M4III |08225 BD | +55454 |290026 |SZ Crt |112126.7-202714 |BY | 8.1 |( 0.035 )| |V | | | | | |68087 BD | +55505 |290029 |TV Crt |112205.3-244640 |RS | 8.91 | 8.98 | |V | | | | | |73005 CoD | +53905 |290030 |TW Crt |110148.0-215031 |EA | 8.39 | 8.72 | |Hp| | | | | |HIP HIP | +54215 |290031 |TX Crt |110534.0-250109 |ACV | 9.58 | 9.71 | |Hp| | | | | |HIP HIP | +54799 |290032 |TY Crt |111306.6-171523 |SRB | 8.00 | 8.18 | |Hp| | | | | |HIP HIP | +54820 |290033 |TZ Crt |111320.2-220213 |LB | 7.97 | 8.14 | |Hp| | | | | |HIP HIP | +54974 |290034 |UU Crt |111523.6-113518 |SRB | 6.70 | 7.01 | |Hp| | | | | |HIP HIP | +55274 |290035 |UV Crt |111913.1-161445 |SRB | 8.49 | 8.67 | |Hp| | | | | |HIP HIP | +55294 |290036 |UW Crt |111926.4-212559 |LB: | 8.24 | 8.35 | |Hp| | | | | |HIP HIP | +55795 |290037 |UX Crt |112554.0-134505 |SRB | 6.53 | 6.69 | |Hp| | | | | |HIP HIP | +55910 |290038 |UY Crt |112736.2-130621 |LB: | 8.26 | 8.39 | |Hp| | | | | |HIP HIP | +56100 |290039 |UZ Crt |112957.7-174609 |LB | 7.74 | 7.90 | |Hp| | | | | |HIP HIP | +56139 |290040 |VV Crt |113026.1-151920 |E:/RS: | 9.48 | 9.69 | |Hp| | | | | |HIP HIP | +56835 |290041 |VW Crt |113905.6-163644 |LB | 7.75 | 7.88 | |Hp| | | | | |HIP HIP | +56899 |290042 |VX Crt |113950.3-163713 |SRB: | 6.14 | 6.25 | |Hp| | | | | |HIP HIP | +57072 |290043 |VY Crt |114158.0-242309 |DSCTC | 6.94 | 7.04 | |Hp| | | | | |HIP HIP | +57173 |290044 |VZ Crt |114330.7-150234 |LPB: | 6.89 | 6.93 | |Hp| | | | | |HIP HIP | +57411 |290045 |WW Crt |114609.9-245225 |LB | 7.47 | 7.61 | |Hp| | | | | |HIP HIP | +55890 |290050 |XY Crt |112716.6-085208 |ACVO | 8.5 |( 0.01 )| |B | | | | | |77095 DM | +54002 |290056 |AB Crt |110250.1-091949 |BY | 9.03 |( 0.03 )| |V | | | 10.33 | |K3V |78018 DM | +60455 |300001 |R Cru *|122337.7-613745 |DCEP | 6.40 | 7.23 | |V |34514.629 | | 5.82575 |28 |F6-G2Ib-II |02309 01115| +62986 |300002 |S Cru |125422.0-582550 |DCEP | 6.22 | 6.92 | |V |34973.520 | | 4.68997 |34 |F6-G1Ib-II |05366 03511| +60259 |300003 |T Cru *|122121.1-621654 |DCEP | 6.32 | 6.83 | |V |34541.340 | | 6.73331 |34 |F6-G2Ib |05366 01115| +63175 |300005 |V Cru |125635.6-575357 |M | 10.4 | 13.90 | |B |15539. | | 376.5 | |Ce(Ne) |00001 08953| +59483 |300006 |W Cru *|121159.2-584701 |EB/GS | 9.04 | 10.38 | 9.3 |B |40731.6 | | 198.53 | |G2eIab |01117 08953| +59996 |300021 |SU Cru *|121816.9-631649 |DCEP | 9.38 | 10.10 | |V |35075.766 | | 12.8476 |34 | |02309 00040| +59935 |300056 |AB Cru *|121737.1-580953 |EA/DM | 8.56 | 9.2 | 8.9 |B |29235.019 | | 3.4132987 |19 *|O8Vne |00007 08588| +59575 |300058 |AD Cru *|121259.7-620549 |DCEP | 10.64 | 11.45 | |V |43344.123 | | 6.39789 |30 | |09003 01122| +59026 |300063 |AI Cru *|120607.7-611525 |EA/KE | 9.55 | 10.30 | 9.94 |B |33466.3358 | | 1.4177073 |20 |B2IVe |01126 04641| +59943 |300068 |AO Cru |121745.8-633658 |LC | 8.5 | 10.0 | |p | | | | |M0Ia/ab |00714 05625| +61136 |300085 |BG Cru |123140.3-592526 |DCEPS | 5.34 | 5.58 | |V |40393.66 | | 3.3428 |47 |F5Ib-G0p |05538 05317| +59844 |300086 |BH Cru *|121616.8-561710 |M | 7.2 | 10.0 | 8.0 |V |40858. | | 421. | |SC4.5/8-e-SC7/8-e|09006 06031| +60781 |300089 |BL Cru |122728.9-585930 |SR: | 5.43 |( 0.35 )| |V | | | | |M4/5III |06994 CoD | +62913 |300098 |BU Cru *|125337.6-602125 |E: | 6.80 | 6.90 | |V |43228.61 | | | |B1.5Ib |08407 03167| +62949 |300100 |BW Cru *|125357.5-602458 |BCEP | 9.03 | 9.09 | |V | | | 0.203 | |B2III |08407 03167| +58910 |300102 |BY Cru |120448.8-620008 |EB/GS/K | 7.62 | 8.01 | |V | | | | | |68088 CPD | +62027 |300103 |BZ Cru |124250.3-630331 |GCAS | 5.24 | 5.45 | |V | | | | | |68090 68317| +62115 |300105 |CD Cru |124351.0-630515 |E:/WR | 10.71 |( 0.11 )| |V | | | | | |69064 69100| +61966 |300109 |CH Cru |124156.6-594109 |GCAS: | 4.88 | 5.7 | |B | | | | | |71105 CPD | +59231 |300115 |CO Cru |120854.3-554342 |DSCTC | 9.22 | 9.30 | |V | | | | | |73129 CPD | +62937 |300125 |CY Cru |125352.2-602228 |BCEP+E: | 9.66 |( 0.05 B )| |V | | | | | |73131 73132| +58513 |300127 |DD Cru |115958.8-583603 |LB: | 8.89 | 9.05 | |Hp| | | | | |HIP HIP | +58748 |300128 |DE Cru |120256.4-621031 |LPB | 6.77 | 6.82 | |Hp| | | | | |HIP HIP | +58783 |300129 |DF Cru |120323.9-624146 |LPB | 7.78 | 7.84 | |Hp| | | | | |HIP HIP | +58794 |300130 |DG Cru |120332.6-610554 |GCAS | 7.43 | 7.64 | |Hp| | | | | |HIP HIP | +58835 |300131 |DH Cru |120404.1-643220 |ACV | 7.34 | 7.40 | |Hp| | | | | |HIP HIP | +58954 |300132 |DI Cru |120518.7-620310 |WR | 10.62 | 10.94 | |Hp| | | | | |HIP HIP | +59653 |300133 |DK Cru |121401.8-592349 |BE | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +59678 |300134 |DL Cru |121416.9-642431 |ACYG | 6.24 | 6.28 | |Hp| | | | | |HIP HIP | +60128 |300135 |DM Cru |121953.7-625115 |ACYG: | 6.88 | 6.91 | |Hp| | | | | |HIP HIP | +60786 |300136 |DN Cru |122731.3-554922 |E: | 8.73 | 8.87 | |Hp| | | | | |HIP HIP | +61448 |300137 |DO Cru |123532.5-641317 |BE | 10.09 | 10.32 | |Hp| | | | | |HIP HIP | +61997 |300138 |DP Cru |124219.8-625938 |EB | 9.69 | 9.98 | |Hp| | | | | |HIP HIP | +62291 |300139 |DQ Cru |124554.0-603306 |BE | 9.03 | 9.19 | |Hp| | | | | |HIP HIP | +62333 |300140 |DR Cru |124626.0-575702 |BY: | 8.88 | 8.99 | |Hp| | | | | |HIP HIP | +62732 |300141 |DS Cru |125118.0-601947 |ACYG: | 5.79 | 5.84 | |Hp| | | | | |HIP HIP | +62919 |300142 |DT Cru |125341.4-611257 |LPB: | 10.02 | 10.21 | |Hp| | | | | |HIP HIP | +62918 |300143 |DU Cru *|125341.3-602058 |LC | 7.08 | 7.52 | |Hp| | | | | |HIP HIP | +63136 |300144 |DV Cru |125611.2-572814 |BY: | 9.38 | 9.50 | |Hp| | | | | |HIP HIP | +63170 |300145 |DW Cru |125633.7-642139 |ACYG: | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +62434 |309002 |bet Cru *|124743.3-594120 |BCEP | 1.23 | 1.31 | |V | | | 0.2365072 | |B0.5III-IV |07423 03511| +59747 |309004 |del Cru |121508.7-584456 |BCEP | 2.78 | 2.84 | |V | | | 0.151038 |40 |B2IV |08410 CPD | +63007 |309011 |lam Cru *|125439.2-590848 |BCEP: | 4.62 |( 0.02 )| |V |41779.081 | | 0.3951 | |B4Vne |09019 CPD | +102571|310003 |T Cyg *|204710.8+342227 |LB: | 4.91 | 4.96 | |V | | | | |K3III | 08953| +100219|310004 |U Cyg *|201936.6+475339 |M | 5.9 | 12.1 | |V |44558. | | 463.24 |48 |C7,2e-C9,2(Npe) |00001 00002| +102082|310005 |V Cyg |204118.3+480829 |M | 7.7 | 13.9 | |V |44038. | | 421.27 |46 |C5,3e-C7,4e(Npe) |00001 00002| +106642|310006 |W Cyg *|213602.5+452229 |SRB | 6.80 | 8.9 | |B | | | 131.1 |50 |M4e-M6e(Tc:)III |08641 00002| +102276|310007 |X Cyg *|204324.2+353516 |DCEP | 5.85 | 6.91 | |V |43830.387 | | 16.386332 |35 |F7Ib-G8Ib |09029 09027| +102999|310008 |Y Cyg *|205203.6+343928 |EA/DM | 7.30 | 7.90 | 7.75 |V |09453.4192 | | 2.9963328 |10 *|B0IV+B0IV |08839 06225| +99653 |310011 |RS Cyg *|201323.7+384345 |SRA | 6.5 | 9.5 | |V |38300. | | 417.39 | |C8,2e(N0pe) |05352 00002| +97068 |310012 |RT Cyg |194337.8+484641 |M | 6.0 | 13.1 | |V |44588. | | 190.28 |44 |M2e-M8.8eIb |00001 00002| +107036|310013 |RU Cyg *|214039.1+541929 |SRA | 9.2 | 11.6 | |p |43798. | | 233.43 |50 |M6e-M8e |00001 00002| +107242|310014 |RV Cyg *|214316.3+380103 |SRB | 10.8 | 12.4 | |p | | | 263. | |C6,4e(N5) |00653 00097| +101023|310015 |RW Cyg |202850.6+395854 |SRC | 8.05 | 9.7 | |V | | | 550. : | |M2-4Ia-Iab |00001 00097| +99424 |310016 |RX Cyg |201049.6+474847 |CST | 8.19 | | |V | | | | |B0III-IVn |00458 BD | +97150 |310021 |SU Cyg *|194448.7+291553 |DCEP | 6.44 | 7.22 | |V |43301.778 | | 3.8455473 |37 |F2-G0I-II+B7V |09083 00884| +99310 |310022 |SV Cyg *|200930.1+475217 |LB | 11.67 | 13.2 | |B | | | | |C5,5-C7,4(N3) | 00002| +99089 |310023 |SW Cyg *|200657.9+461758 |EA/SD | 9.24 | 11.83 | 9.30 |V |41867.8173 | | 4.57313411 |12 |A2e+K0 |09084 01131| +101393|310026 |SZ Cyg *|203254.3+463605 |DCEP | 8.92 | 9.84 | |V |43306.79 | | 15.10965 |42 |F9-G5Ib |00001 00097| +96836 |310027 |TT Cyg *|194057.0+323706 |SRB | 10.2 | 11.9 | |B | | | 118. | |C5,4e(N3e) |00366 00097| +103656|310031 |TX Cyg *|210006.4+423551 |DCEP | 8.59 | 10.02 | |V |43794.971 | | 14.7098 |37 |F5-G6Ib |09029 09029| +103364|310038 |UY Cyg *|205628.3+302540 |RRAB | 10.59 | 11.46 | |V |22433.7270 | | 0.56070478 |22 |A8-F5 |01132 00568| +99820 |310041 |VW Cyg *|201512.3+343048 |EA/DS | 10.25 | 12.58 | 10.31 |V |41116.8678 | | 8.4303102 |11 |A3e+G5 |09099 01135| +103433|310042 |VX Cyg *|205720.8+401039 |DCEP | 9.54 | 10.55 | |V |43783.642 | | 20.133407 |31 |F5e-G2I-II |09029 00097| +104002|310043 |VY Cyg |210416.6+395820 |DCEP | 9.19 | 10.02 | |V |43045.282 | | 7.856982 |29 |F6-G1Ib |08632 00097| +107899|310044 |VZ Cyg *|215141.4+430803 |DCEP | 8.60 | 9.28 | |V |41705.702 | | 4.864453 |28 |F5-G0 |08300 00100| +98814 |310045 |WW Cyg *|200402.7+413517 |EA/SD | 10.02 | 13.26 | 10.16 |V |40377.886 | | 3.3177690 |14 |B8+G |00001 00101| +100113|310046 |WX Cyg |201833.3+372659 |M | 8.8 | 13.2 | |V |40480. | | 410.45 |48 |C8,2JLi(N3e) |00001 00002| +98737 |310049 |XX Cyg *|200315.6+585717 |SXPHE | 11.28 | 12.13 | |V |44455.3945 | | 0.134865113 |22 |A5 |09100 00101| +96112 |310051 |XZ Cyg *|193229.3+562318 |RRAB | 8.9 | 10.16 | |V |44124.440 | | 0.46670 | |A5-F5 |00001 06225| +105539|310052 |YY Cyg |212228.7+422347 |SRA | 12.1 | 13.2 | |p |29826. :| | 388. | |C6,0-C7,3eaV(n) |01000 BD | +103856|310053 |YZ Cyg |210239.8+411709 |CST: | 8.2 | | |p | | | | |A0 | BD | +98856 |310055 |AA Cyg *|200427.6+364901 |SRB | 9.4 | 12.4 | |p | | | 212.7 | |S7,5-S7.5,6(MpTc)|00653 08953| +106690|310056 |AB Cyg |213633.8+320610 |SRB | 9.5 | 10.1 | |p | | | 520. | |M4IIIe | 01142| +101270|310058 |AD Cyg *|203136.5+323352 |LB | 10.4 | 11.4 | |B | | | | |S5,8(Nb) | 08953| +95902 |310060 |AF Cyg *|193012.9+460852 |SRB | 7.4 | 9.4 | |p | | | 92.5 | |M5e-M7 |08641 00002| +101282|310063 |AI Cyg |203145.2+323121 |SRB | 9.2 | 11.8 | |p | | | 197.3 | |M6-M7 |00653 08953| +102732|310066 |AM Cyg |204900.8+315056 |M | 11.3 | 14.5 | |p |30075. | | 370.6 | |M6e |01000 00565| +95777 |310076 |AW Cyg |192847.6+460238 |SRB | 11.0 | 14.5 | |p | | | 340. : | |C4,5(N3) |09105 08953| +98190 |310077 |AX Cyg *|195712.5+441540 |LB | 7.85 | 8.8 | |V | | | | |C4,5(N6) |00340 00103| +99336 |310078 |AY Cyg *|200944.2+412937 |LB | 11.7 | 13.9 | |B | | | | |C4,8-C7,4(N) |01155 BD | +100404|310081 |BC Cyg |202138.5+373159 |SRC | 11.3 | 13.8 | |p | | | 700. : | |M3.5Ia |07341 07341| +96647 |310085 |BG Cyg *|193857.7+283047 |M | 9.0 | 12.8 | |V |43784. | | 288.0 |30 |M7e-M8e |00001 00002| +98852 |310105 |CD Cyg *|200426.6+340644 |DCEP | 8.35 | 9.56 | |V |43831.167 | | 17.073967 |28 |F8-K0Ib |09029 00884| +103505|310108 |CG Cyg *|205813.4+351030 |EA/SD/RS | 9.73 | 10.86 : |< 10.44 |V |39425.1221 | | 0.63114100 |13 *|G9.5V+K3V |07499 00192| +95413 |310109 |CH Cyg *|192433.1+501429 |ZAND+SR | 5.60 | 8.49 | |V | | | | |M7IIIab+Be |08849 00002| +97594 |310110 |CI Cyg *|195011.8+354103 |EA/GS+ZAND| 9.9 | 13.1 | |p |11902. | | 855.25 |16 |Bep+M5III |01567 03677| +100048|310114 |CN Cyg |201753.6+594734 |M | 7.3 | 15.0 | |V |44577. | | 198.53 |44 |M2-M7e(S) |00001 01172| +106752|310116 |CP Cyg |213727.9+444148 |CST | 6.20 | | |V | | | | |A7III | BD | +96031 |310127 |DD Cyg *|193131.4+344218 |M | 10.5 |< 13. | |p |44568. | | 147.6 |47 |M0e |00001 01149| +106574|310133 |DK Cyg *|213502.7+343545 |EW/D | 10.37 | 10.93 | 10.90 |V |37999.5838 | | 0.47069055 | |A7V |03682 00225| +104185|310142 |DT Cyg *|210630.3+311105 |DCEPS | 5.57 | 5.96 | |V |44046.969 | | 2.499215 |48 |F5.5-F7Ib-II |00001 01182| +98376 |310191 |GH Cyg |195910.8+292703 |DCEP | 9.50 | 10.33 | |V |42743.743 | | 7.817930 |33 |F5-G1 |08632 04244| +101748|310197 |GO Cyg *|203720.1+352610 |EB/KE | 8.47 | 9.09 | 8.73 |V |33930.4056 | | 0.71776382 | |B9n+A0n:V |05222 08953| +99599 |310254 |KU Cyg *|201245.1+472341 |EA/D:/RS: | 10.73 | 12.38 | 11.15 |V |33884.84 | | 38.4393 |08 |F4p+K5eIII: |03730 01225| +108205|310271 |LW Cyg |215513.8+502950 |LB | 12.30 |< 14.5 | |B | | | | |C5,4(R3) |06566 06566| +108508|310280 |MR Cyg *|215856.6+475900 |EA/SD | 8.75 | 9.68 | 9.12 |V |33396.4069 | | 1.67703362 |22 |B3V+B9 |06501 08953| +99567 |310285 |MW Cyg |201222.8+325218 |DCEP | 9.14 | 9.90 | |V |42923.839 | | 5.954586 |30 |F8-G2Ib |08632 01232| +100258|310287 |MY Cyg *|202003.4+335635 |EA/DM | 8.30 | 9.02 | 8.99 |V |33847.607 | | 4.0051873 |09 *|A7:m+A5:m |08861 00192| +105485|310288 |MZ Cyg *|212154.7+372733 |CWA: | 10.76 | 12.68 | |V |43983.40 | | 21.314 |34 |G1-G3 |00001 01235| +100198|310346 |V0346 Cyg *|201924.7+362024 |EA/SD | 11.8 | 13.5 | 11.9 |p |35686.750 | | 2.743282 |14 *|A5 |08867 01241| +102648|310367 |V0367 Cyg *|204759.6+391716 |EB/GS/SD: | 6.67 | 7.60 | 7.16 |V |37390.855 | | 18.59773 | |B8peIa+F4III |08608 08953| +97634 |310380 |V0380 Cyg *|195037.3+403559 |EA/DM | 5.61 | 5.78 | 5.76 |V |41256.053 | | 12.425612 |11 *|B1III+B3V: |07134 00846| +100135|310382 |V0382 Cyg *|201847.2+362026 |EB | 8.29 | 9.18 | 9.12 |V |36814.7706 | | 1.8855146 | |O7+O8V |08873 08953| +101035|310383 |V0383 Cyg |202858.2+340806 |CWB: | 10.60 | 11.14 | |V |37298.125 | | 4.612211 |35 | |00782 00601| +104877|310386 |V0386 Cyg |211440.4+414259 |DCEP | 9.25 | 9.97 | |V |42777.188 | | 5.257606 |29 |F5-G1Ib |08632 01142| +104371|310389 |V0389 Cyg *|210838.9+301220 |* | 5.55 | 5.71 | |V | | | | |B9Vp(Si) |01256 01182| +95816 |310401 |V0401 Cyg *|192920.3+302429 |EW/KE | 10.64 | 11.17 | 11.13 |V |43835.259 | | 0.5827220 | |F0 |00001 04427| +99276 |310402 |V0402 Cyg *|200907.8+370907 |DCEP | 9.53 | 10.22 | |V |41698.635 | | 4.364836 |30 |G0III |08300 01260| +108183|310413 |V0413 Cyg |215505.2+542902 |LB | 12.4 | 13.2 | |p | | | | |C5,4(N3) |01280 06566| +100214|310444 |V0444 Cyg *|201932.4+384354 |EA/WR | 7.92 | 8.22 | 8.06 |V |41164.332 | | 4.212424 |20 *|O6+WN5.5 |07149 01283| +99021 |310448 |V0448 Cyg *|200609.9+352310 |EB/SD | 7.90 | 8.72 | 8.40 |V |16361.107 | | 6.5197162 | |O9.5e+B1Ib-II |08916 08953| +104564|310459 |V0459 Cyg |211054.4+490831 |DCEP | 10.27 | 10.99 | |V |36808.656 | | 7.25125 |29 |F8 |03157 01141| +107129|310460 |V0460 Cyg |214201.1+353037 |SRB | 5.57 | 7.0 | |V | | | 180. : | |C6,4(N1) |09125 08953| +100193|310470 |V0470 Cyg *|201921.7+405317 |ELL/DM | 8.53 | 8.55 | 8.545 |V |42283.860 | | 1.873142 | |B2+B2 |08917 BD | +98955 |310477 |V0477 Cyg *|200527.7+315818 |EA/DM | 8.50 | 9.34 | 8.69 |V |44189.2639 | | 2.3469906 |07 |A3V+F5V |00001 01296| +100227|310478 |V0478 Cyg *|201938.8+382009 |EA/DM | 8.63 | 9.04 | 9.02 |V |41602.724 | | 2.8808994 |16 *|O9.5Vp+B0V |08920 BD | +98411 |310482 |V0482 Cyg *|195942.6+335928 |RCB | 11.8 |< 15.5 | |p | | | | | |03662 01299| +99887 |310495 |V0495 Cyg |201558.3+350053 |DCEP | 12.2 | 12.7 | |p |28419.278 | | 6.72379 |17 | |00782 00601| +103241|310520 |V0520 Cyg *|205457.5+473202 |DCEP | 10.53 | 11.11 | |V |43670.714 | | 4.049068 |23 |G0 |00001 08637| +105369|310532 |V0532 Cyg *|212032.9+452803 |DCEPS | 8.85 | 9.30 | |V |41706.559 | | 3.283612 |44 |F5 |08300 02344| +106754|310538 |V0538 Cyg *|213728.1+514545 |DCEP | 10.20 | 10.73 | |V |42772.924 | | 6.118961 |33 | |08632 01304| +98165 |310548 |V0548 Cyg *|195658.3+544758 |EA/SD: | 8.54 | 9.29 | 8.62 |V |44456.4958 | | 1.805233 |20 *|A1V+F7 |00001 02354| +102195|310568 |V0568 Cyg |204222.3+352722 |GCAS | 6.40 | 6.68 | |V | | | | |B2IV-VeV | 09128| +99675 |310695 |V0695 Cyg *|201337.9+464429 |EA/GS/D | 3.73 | 3.89 | |V |41470.0 | | 3784.3 |02 |K4Iab+B4IV-V |09130 BD | +101341|310729 |V0729 Cyg *|203222.4+411819 |EB/D/GS | 9.05 | 9.37 | 9.29 |V |40413.796 | | 6.5977915 | |O7fIa+O8 |07162 03853| +100582|310744 |V0744 Cyg |202355.5+561452 |LB | 11.7 | 13.1 | |p | | | | |C4-5,3(N) |01320 01320| +97845 |310819 |V0819 Cyg |195301.3+474828 |BCEP: | 6.26 | 6.30 | |V | | | 0.3775 : | |B0.5IIIp |02602 BD | +103632|310832 |V0832 Cyg *|205949.6+473115 |GCAS | 4.49 | 4.88 | |V | | | | |B1.5Venn |02602 BD | +105437|310836 |V0836 Cyg *|212123.6+354411 |EB/KE | 8.57 | 9.23 | 8.77 |V |44853.4903 | | 0.6534122 | |A0V |09137 08953| +96596 |310924 |V0924 Cyg *|193811.6+322922 |DCEPS | 10.56 | 10.85 | |V |43066.075 | | 5.571472 |40 |F6 |08632 04266| +97151 |310973 |V0973 Cyg |194449.0+404301 |SRB | 7.75 | 8.6 | |B | | | 40. : | |M3IIIa |03500 08953| +99525 |311042 |V1042 Cyg *|201153.5+361151 |WR | 8.06 | 8.16 | |V | | | | |WC8(+OB) |04301 BD | +104263|311061 |V1061 Cyg *|210720.5+520258 |EA/D | 9.4 | 9.9 | 9.5 |p |26355.233 | | 2.346656 |07 |F8 |03835 08953| +105562|311070 |V1070 Cyg |212248.6+405557 |SRB | 6.5 | 8.5 | |V | | | 73.5 | |M7III |09000 08953| +105739|311073 |V1073 Cyg *|212500.4+334115 |EW/KE | 8.23 | 8.61 | 8.57 |V |38672.5816 | | 0.7858597 | |A3Vm |03794 BD | +96620 |311143 |V1143 Cyg *|193841.2+545826 |EA/DM | 5.85 | 6.37 | 6.06 |V |42212.7651 | | 7.6407613 |02 |F5V+F5V |00001 BD | +97439 |311154 |V1154 Cyg |194815.5+430737 |CEP | 8.95 | 9.37 | |V |37706.721 | | 4.925537 |31 |G2 |08053 09151| +99648 |311183 |V1183 Cyg |201321.5+374444 |LB | 10.5 | 11.7 | |p | | | | |M6 |09150 09150| +96292 |311264 |V1264 Cyg |193443.9+435645 |ACV | 6.48 | 6.67 | |V |40848.258 | | 1.84534 |40 |B9p(Si-Cr-Sr) |00001 BD | +96988 |311276 |V1276 Cyg |194249.1+291954 |DSCTC | 6.50 | 6.53 | |V | | | 0.088 | |F3III |06255 06183| +105269|311334 |V1334 Cyg *|211922.2+381415 |DCEPS | 5.77 | 5.96 | |V |40124.533 | | 3.332816 |50 |F2Ib |09016 BD | +107140|311339 |V1339 Cyg |214208.4+454557 |SRB | 5.9 | 7.1 | |V | | | 35. : | |M3-M6 |05422 08953| +96919 |311351 |V1351 Cyg |194204.2+552748 |LB | 6.33 | 6.55 | |V | | | | |M5IIIa |05840 BD | +98298 |311357 |V1357 Cyg *|195821.7+351206 |ELL+XF | 8.72 | 8.93 | 8.88 |V |41561.22 | | 5.599824 | |O9.7IabpeV |09020 07267| +98778 |311362 |V1362 Cyg |200341.6+362532 |E: | 8.09 | 8.21 | |V | | | 7. : | |B5II:nea |06034 BD | +99672 |311372 |V1372 Cyg *|201336.3+533934 |ACV | 7.33 | 7.39 | |V | | | 18.2 | |A4p(Cr) |09023 BD | +103655|311396 |V1396 Cyg *|210005.3+400413 |UV+BY: | 11.4 | 11.65 | |B | | | | |M3Ve |06035 06936| +104573|311425 |V1425 Cyg *|211101.8+551956 |EB/KE: | 7.7 |( 0.45 )|( 0.31 )|V |40400.944 | | 1.252387 | |B9+A0 |06508 08953| +106628|311427 |V1427 Cyg *|213551.7+475443 |GCAS | 9.10 | 9.19 | |V | | | | |B3eq |06509 06511| +99848 |311488 |V1488 Cyg *|201528.3+474251 |EA/GS/D | 3.90 | 4.14 | |V |41256.96 | | 1147.4 |02 |K5Iab+B4IV-V |06506 BD | +97472 |311507 |V1507 Cyg *|194841.9+292408 |E | 6.92 | 7.04 | 7.01 |V |43760.37 | | 27.9705 | |B8II-IIIep |07747 BD | +97630 |311509 |V1509 Cyg *|195034.0+384321 |LB | 5.08 | 5.4 | |V | | | | |M2IIIa |01371 BD | +107983|311578 |V1578 Cyg *|215234.1+471344 |INA | 10.09 | 10.24 | |V | | | | |A0eq |09061 07766| +100250|311584 |V1584 Cyg *|201956.0+465014 |ACV | 6.48 |( 0.04 )| |V |41153.246 | | 1.132854 | |B9p(Si) |07946 BD | +107856|311619 |V1619 Cyg |215105.0+393212 |ACV | 6.17 |( 0.01 )| |V | | | 20.70 | |B8IIIp(Hg-Mn) |07851 BD | +99303 |311624 |V1624 Cyg *|200925.6+365023 |SXARI | 4.91 | 4.97 | |V |43699.12 | | 0.70 | |B3VeV |09067 BD | +99770 |311644 |V1644 Cyg |201432.0+364823 |DSCTC | 4.94 | 4.97 | |V | | | 0.031 | |A2V |08254 BD | +102724|311661 |V1661 Cyg *|204856.3+460651 |ACYG | 4.81 | 4.87 | |V | | | | |B3eaIa |08213 BD | +96362 |311671 |V1671 Cyg *|193532.0+311636 |SXARI | 7.45 | 7.46 | |V |44107.24 | | 9.35 | |B2Vp |08747 BD | +98572 |311675 |V1675 Cyg |200121.9+431339 |INSB | 8.4 | 9.1 | |p | | | | |M2 |08432 08432| +99002 |311676 |V1676 Cyg *|200557.3+354718 |WR | 6.75 | 6.84 | |V | | | | |WN5+O9.5Ia |08213 BD | +99769 |311679 |V1679 Cyg |201431.8+363940 |WR | 5.99 | 6.5 | |K | | | | |WC6-7+Be |07306 BD | +100289|311685 |V1685 Cyg |202028.3+412152 |INA | 10.58 | 10.72 | |V | | | | |B2e |03309 04002| +100287|311687 |V1687 Cyg |202028.0+435116 |WR | 4.0 |( 2.5 )| |K | | | | |WC7p+O5 |03478 BD | +102088|311696 |V1696 Cyg *|204121.6+523515 |* | 10.30 |( 0.06 )| |V |38626.237 | | 4.3174 | |WN7.5 |03541 03499| +104029|311719 |V1719 Cyg *|210432.9+504703 |RRC | 7.95 | 8.33 | |V |43776.715 | | 0.267299 |49 |F5III |09180 BD | +104290|311720 |V1720 Cyg *|210740.1+485119 |ELL: | 7.77 | 7.79 | 7.79 |V |42692.557 | | 0.248331 | |G5III |08517 BD | +95556 |311741 |V1741 Cyg |192609.1+361904 |ACV | 4.60 |( 0.02 )| |U |41451.03 | | 0.68674 | |B9p(Si) |08488 BD | +96198 |311743 |V1743 Cyg |193341.6+491544 |SRB: | 5.96 |( 0.18 )| |V | | | 40. : | |M4.5III |08755 BD | +96480 |311744 |V1744 Cyg *|193652.2+301930 |ACV: | 7.5 |( 0.04 U )| |V |44100.28 | | 12.46 |40 |B9 |08747 BD | +96530 |311745 |V1745 Cyg |193729.9+293654 |DSCTC | 7.3 | 7.34 | |V | | | 0.0534 | |A3V |08756 BD | +98425 |311746 |V1746 Cyg *|195955.2+370234 |GCAS+BCEP | 5.19 |( 0.07 )| |V | | | | |B3IV-Ve |08663 BD | +94013 |311762 |V1762 Cyg |190825.8+522533 |RS | 5.81 | 6.03 | |V | | | | | |67258 BD | +96467 |311764 |V1764 Cyg |193642.6+275303 |RS | 7.69 |( 0.15 )| |V | | | | | |67261 BD | +97485 |311765 |V1765 Cyg |194850.6+332614 |EB/GS+ACYG| 6.44 |( 0.16 )| |V | | | | | |67263 BD | +98863 |311768 |V1768 Cyg |200436.2+321307 |ACYG | 5.56 | 5.70 | |V | | | | | |67271 BD | +99377 |311769 |V1769 Cyg |201014.2+361035 |EA/D/WR | 7.99 | 8.09 | |V | | | | | |67274 BD | +99546 |311770 |V1770 Cyg |201206.5+382118 |E:/WR | 7.48 | 7.52 | |V | | | | | |67275 BD | +100142|311773 |V1773 Cyg |201849.7+461920 |ELL | 6.44 |( 0.05 )| |V | | | | | |67283 BD | +102953|311792 |V1792 Cyg |205130.9+375922 |ELL | 7.29 |( 0.09 )| |V | | | | | |67001 BD | +103144|311794 |V1794 Cyg |205353.6+442311 |FKCOM | 7.23 |( 0.17 )| |V | | | | | |67327 67326| +104214|311803 |V1803 Cyg |210653.9+384458 |BY | 5.19 | 5.27 | |V | | | | | |67336 BD | +105186|311809 |V1809 Cyg |211827.2+435645 |ELL | 4.98 | 5.09 | |V | | | | | |67352 67352| +96003 |311817 |V1817 Cyg |193113.6+554355 |RS: | 6.37 |( 0.05 )| |V | | | | | |68094 BD | +96862 |311818 |V1818 Cyg |194119.9+290840 |EA: | 8.68 | 8.96 | |B | | | | | |68095 BD | +103968|311898 |V1898 Cyg |210353.8+461950 |EA/DM | 7.71 | 8.15 | |V | | | | | |68366 BD | +96310 |311919 |V1919 Cyg |193456.1+334744 |LB | 6.66 | 6.73 | |V | | | | | |69103 BD | +103732|311931 |V1931 Cyg |210110.9+460921 |E+BE | 5.33 | 5.48 | |V | | | | | |69117 BD | +105733|311934 |V1934 Cyg |212455.4+491923 |ACV | 6.51 |( 0.02 )| |U | | | | | |69120 BD | +108845|311942 |V1942 Cyg |220256.7+443900 |ACV | 5.47 |( 0.05 )| |U | | | | | |69128 BD | +96295 |311966 |V1966 Cyg |193445.2+303059 |E:/PN | 9.95 | 10.04 | |V | | | | | |71189 BD | +97235 |311967 |V1967 Cyg |194542.9+301526 |SRB | 7.43 | 7.83 | |V | | | | | |71094 BD | +103828|311981 |V1981 Cyg |210224.2+444728 |SRB | 7.5 | 8.1 | |B | | | | | |71209 BD | +99031 |312008 |V2008 Cyg |200621.8+355821 |RS: | 5.36 |( 0.05 )| |V | | | | | |72073 BD | +99580 |312011 |V2011 Cyg |201233.1+401605 |* | 7.93 |( 0.07 )| |B | | | | | |72074 BD | +101138|312014 |V2014 Cyg |203003.5+485706 |BCEP: | 4.86 |( 0.03 b )| |B | | | | | |72045 BD | +101475|312015 |V2015 Cyg |203354.8+464138 |ACV | 5.62 |( 0.02 b )| |B | | | | | |72045 BD | +100586|312031 |V2031 Cyg |202351.0+382934 |EA | 8.53 | 8.67 | |V | | | | | |73135 73135| +108198|312075 |V2075 Cyg |215514.5+442507 |RS | 7.46 |( 0.36 )| |V | | | | | |73005 BD | +94743 |312077 |V2077 Cyg |191644.5+503848 |E: | 9.16 | 9.31 | |Hp| | | | | |HIP HIP | +95187 |312078 |V2078 Cyg |192151.4+283958 |BY: | 11.34 | 11.65 | |Hp| | | | | |HIP HIP | +95543 |312079 |V2079 Cyg |192601.2+450047 |ACV: | 7.00 | 7.06 | |Hp| | | | | |HIP HIP | +95611 |312080 |V2080 Cyg |192648.0+500844 |EA | 7.46 | 7.87 | |Hp| | | | | |HIP HIP | +95691 |312081 |V2081 Cyg |192749.0+504413 |CEP: | 8.69 | 8.75 | |Hp| | | | | |HIP HIP | +95833 |312082 |V2082 Cyg |192930.1+361715 |ELL | 6.72 | 6.77 | |Hp| | | | | |HIP HIP | +96011 |312083 |V2083 Cyg |193116.4+472852 |EA | 6.94 | 7.18 | |Hp| | | | | |HIP HIP | +96189 |312084 |V2084 Cyg |193329.8+360119 |DSCTC | 7.41 | 7.46 | |Hp| | | | | |HIP HIP | +96533 |312085 |V2085 Cyg |193732.2+545728 |LB | 7.29 | 7.40 | |Hp| | | | | |HIP HIP | +96687 |312086 |V2086 Cyg |193924.9+295529 |LB: | 8.20 | 8.31 | |Hp| | | | | |HIP HIP | +96872 |312087 |V2087 Cyg |194127.5+471941 |LB | 7.23 | 7.37 | |Hp| | | | | |HIP HIP | +96966 |312088 |V2088 Cyg |194236.2+282053 |DSCTC: | 8.33 | 8.39 | |Hp| | | | | |HIP HIP | +96989 |312089 |V2089 Cyg |194249.3+550137 |SRB | 8.20 | 8.35 | |Hp| | | | | |HIP HIP | +97142 |312090 |V2090 Cyg |194438.2+342451 |LB | 6.32 | 6.73 | |V | | | | | |HIP HIP | +97501 |312091 |V2091 Cyg |194903.0+295258 |LB: | 8.34 | 8.59 | |Hp| | | | | |HIP HIP | +97584 |312092 |V2092 Cyg |195004.1+323825 |LPB | 8.20 | 8.24 | |Hp| | | | | |HIP HIP | +97651 |312093 |V2093 Cyg |195046.9+374935 |LB | 6.00 | 6.40 | |Hp| | | | | |HIP HIP | +98028 |312094 |V2094 Cyg |195512.1+463956 |ACV | 7.70 | 7.79 | |Hp| | | | | |HIP HIP | +98156 |312095 |V2095 Cyg |195650.2+441616 |ACV: | 7.86 | 7.94 | |Hp| | | | | |HIP HIP | +98121 |312096 |V2096 Cyg |195631.5+534704 |SRD | 7.98 | 8.09 | |Hp| | | | | |HIP HIP | +98289 |312097 |V2097 Cyg |195813.7+342522 |LPB | 7.68 | 7.71 | |Hp| | | | | |HIP HIP | +98283 |312098 |V2098 Cyg |195810.6+423139 |LB | 8.22 | 8.42 | |Hp| | | | | |HIP HIP | +98422 |312099 |V2099 Cyg |195952.5+315049 |SRB: | 8.15 | 8.24 | |Hp| | | | | |HIP HIP | +98379 |312100 |V2100 Cyg |195915.4+520321 |LPB: | 6.05 | 6.11 | |Hp| | | | | |HIP HIP | +98424 |312101 |V2101 Cyg |195953.8+520859 |LB | 6.74 | 7.06 | |Hp| | | | | |HIP HIP | +98603 |312102 |V2102 Cyg |200140.2+400145 |LB | 9.94 | 10.49 | |Hp| | | | | |HIP HIP | +98635 |312103 |V2103 Cyg |200201.3+293509 |BE | 9.09 | 9.21 | |Hp| | | | | |HIP HIP | +98611 |312104 |V2104 Cyg |200145.5+573907 |IA | 7.63 | 7.76 | |Hp| | | | | |HIP HIP | +98729 |312105 |V2105 Cyg *|200311.6+315510 |ACYG: | 8.07 | 8.17 | |Hp| | | | | |HIP HIP | +98902 |312106 |V2106 Cyg |200502.3+521721 |LB | 8.42 | 8.61 | |Hp| | | | | |HIP HIP | +99246 |312107 |V2107 Cyg |200845.8+371413 |EB | 8.57 | 8.75 | |Hp| | | | | |HIP HIP | +99279 |312108 |V2108 Cyg |200911.8+335512 |EB | 7.86 | 8.01 | |Hp| | | | | |HIP HIP | +99252 |312109 |V2109 Cyg |200850.4+485439 |DSCT | 7.48 | 7.66 | |Hp| | | | | |HIP HIP | +99370 |312110 |V2110 Cyg |201009.4+450100 |LPB | 7.71 | 7.79 | |Hp| | | | | |HIP HIP | +99415 |312111 |V2111 Cyg |201038.2+335121 |LPB | 7.62 | 7.65 | |Hp| | | | | |HIP HIP | +99403 |312112 |V2112 Cyg |201032.9+522306 |LB | 7.34 | 7.61 | |Hp| | | | | |HIP HIP | +99953 |312113 |V2113 Cyg |201648.2+322247 |BE | 7.09 | 7.26 | |Hp| | | | | |HIP HIP | +100051|312114 |V2114 Cyg |201754.5+340525 |LB | 6.92 | 7.19 | |Hp| | | | | |HIP HIP | +100140|312115 |V2115 Cyg |201848.6+505350 |LB: | 8.52 | 8.63 | |Hp| | | | | |HIP HIP | +100242|312116 |V2116 Cyg |201949.8+294337 |SXARI: | 6.71 | 6.75 | |Hp| | | | | |HIP HIP | +100308|312117 |V2117 Cyg |202039.2+430737 |SXARI: | 8.95 | 9.15 | |Hp| | | | | |HIP HIP | +100548|312118 |V2118 Cyg |202318.2+404533 |ACYG: | 7.12 | 7.20 | |Hp| | | | | |HIP HIP | +100574|312119 |V2119 Cyg |202344.4+372835 |BE | 5.74 | 5.85 | |Hp| | | | | |HIP HIP | +100744|312120 |V2120 Cyg |202532.8+544103 |GCAS | 7.13 | 7.34 | |Hp| | | | | |HIP HIP | +100859|312121 |V2121 Cyg *|202702.3+492300 |RRAB: | 5.75 | 5.84 | |Hp| | | | | |HIP HIP | +101068|312122 |V2122 Cyg |202920.8+502737 |ACV: | 7.58 | 7.62 | |Hp| | | | | |HIP HIP | +101411|312123 |V2123 Cyg |203305.1+313925 |BE | 7.71 | 7.85 | |Hp| | | | | |HIP HIP | +101412|312124 |V2124 Cyg |203306.6+542725 |LB | 6.80 | 6.90 | |Hp| | | | | |HIP HIP | +101474|312125 |V2125 Cyg |203354.2+351503 |LC | 4.67 | 4.78 | |Hp| | | | | |HIP HIP | +101439|312126 |V2126 Cyg |203327.7+504100 |EB: | 9.01 | 9.10 | |Hp| | | | | |HIP HIP | +101569|312127 |V2127 Cyg |203506.2+333309 |ACV: | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +101632|312128 |V2128 Cyg |203555.6+373727 |LB: | 8.65 | 8.77 | |Hp| | | | | |HIP HIP | +101862|312129 |V2129 Cyg |203828.6+605507 |DSCTC | 8.37 | 8.44 | |Hp| | | | | |HIP HIP | +101949|312130 |V2130 Cyg |203933.3+403447 |SXARI: | 6.02 | 6.04 | |Hp| | | | | |HIP HIP | +102397|312131 |V2131 Cyg |204458.5+402442 |LB | 8.21 | 8.47 | |Hp| | | | | |HIP HIP | +102457|312132 |V2132 Cyg |204542.0+461149 |LB | 8.51 | 8.74 | |Hp| | | | | |HIP HIP | +102524|312133 |V2133 Cyg |204636.0+545235 |EA | 8.44 | 8.75 | |Hp| | | | | |HIP HIP | +102622|312134 |V2134 Cyg |204743.3+431612 |EB | 8.32 | 8.49 | |Hp| | | | | |HIP HIP | +102700|312135 |V2135 Cyg |204832.8+535422 |BE | 8.17 | 8.29 | |Hp| | | | | |HIP HIP | +102827|312136 |V2136 Cyg |204954.6+463941 |E: | 6.30 | 6.38 | |Hp| | | | | |HIP HIP | +103013|312137 |V2137 Cyg |205214.7+354405 |LB: | 7.82 | 7.93 | |Hp| | | | | |HIP HIP | +103126|312138 |V2138 Cyg |205339.9+410258 |ACV: | 7.55 | 7.61 | |Hp| | | | | |HIP HIP | +103277|312139 |V2139 Cyg |205523.1+401800 |BE | 7.12 | 7.28 | |Hp| | | | | |HIP HIP | +103312|312140 |V2140 Cyg |205549.8+472504 |ACYG: | 5.65 | 5.84 | |V | | | | | |HIP HIP | +103476|312141 |V2141 Cyg |205753.2+444717 |LB | 7.11 | 7.38 | |Hp| | | | | |HIP HIP | +103645|312142 |V2142 Cyg |205958.8+322944 |SRB | 6.85 | 6.95 | |Hp| | | | | |HIP HIP | +103667|312143 |V2143 Cyg |210016.2+333039 |LB: | 9.24 | 9.36 | |Hp| | | | | |HIP HIP | +103700|312144 |V2144 Cyg |210049.9+463443 |GCAS: | 7.12 | 7.27 | |Hp| | | | | |HIP HIP | +103873|312145 |V2145 Cyg |210250.0+383415 |LB | 8.48 | 8.65 | |Hp| | | | | |HIP HIP | +104130|312146 |V2146 Cyg |210549.1+301302 |SRA | 8.45 | 8.94 | |Hp| | | | | |HIP HIP | +104196|312147 |V2147 Cyg |210636.9+483740 |ACV: | 8.82 | 8.89 | |Hp| | | | | |HIP HIP | +104483|312148 |V2148 Cyg |210958.6+453009 |EA | 6.52 | 6.69 | |Hp| | | | | |HIP HIP | +105010|312149 |V2149 Cyg |211609.6+423227 |GCAS | 8.77 | 8.99 | |Hp| | | | | |HIP HIP | +105162|312150 |V2150 Cyg *|211810.9+303522 |EW: | 8.09 | 8.19 | |Hp| | | | | |HIP HIP | +105230|312151 |V2151 Cyg |211856.3+541241 |NL: | 12.08 | 12.89 | |Hp| | | | | |HIP HIP | +105448|312152 |V2152 Cyg |212129.5+415358 |ACV: | 8.94 | 9.00 | |Hp| | | | | |HIP HIP | +105565|312153 |V2153 Cyg |212251.1+404150 |BE | 7.52 | 7.62 | |Hp| | | | | |HIP HIP | +105584|312154 |V2154 Cyg |212308.3+483108 |EA | 7.85 | 8.24 | |Hp| | | | | |HIP HIP | +105699|312155 |V2155 Cyg |212430.3+552200 |GCAS | 7.55 | 7.80 | |Hp| | | | | |HIP HIP | +105741|312156 |V2156 Cyg |212502.4+442706 |BE | 8.96 | 9.04 | |Hp| | | | | |HIP HIP | +105811|312157 |V2157 Cyg |212547.0+364003 |ACYG: | 5.87 | 5.92 | |Hp| | | | | |HIP HIP | +105846|312158 |V2158 Cyg |212617.6+355021 |LB | 7.57 | 7.78 | |Hp| | | | | |HIP HIP | +105866|312159 |V2159 Cyg |212628.4+491649 |ACV: | 7.87 | 7.96 | |Hp| | | | | |HIP HIP | +105963|312160 |V2160 Cyg |212733.0+340129 |BY: | 11.02 | 11.19 | |Hp| | | | | |HIP HIP | +106009|312161 |V2161 Cyg |212814.9+475714 |LPB | 8.03 | 8.08 | |Hp| | | | | |HIP HIP | +106079|312162 |V2162 Cyg |212914.9+442017 |BE | 7.56 | 7.67 | |Hp| | | | | |HIP HIP | +106145|312163 |V2163 Cyg |213000.9+452939 |BE | 6.89 | 7.02 | |Hp| | | | | |HIP HIP | +106211|312164 |V2164 Cyg |213047.0+474012 |LB: | 8.02 | 8.15 | |Hp| | | | | |HIP HIP | +106476|312165 |V2165 Cyg |213355.4+504504 |EA | 8.73 | 8.92 | |Hp| | | | | |HIP HIP | +106620|312166 |V2166 Cyg |213544.5+294444 |BE | 8.11 | 8.23 | |Hp| | | | | |HIP HIP | +106662|312167 |V2167 Cyg |213614.2+444545 |LPB | 9.43 | 9.48 | |Hp| | | | | |HIP HIP | +106694|312168 |V2168 Cyg |213638.6+392721 |BY: | 10.18 | 10.65 | |Hp| | | | | |HIP HIP | +106812|312169 |V2169 Cyg |213759.4+482914 |EB | 7.61 | 7.76 | |Hp| | | | | |HIP HIP | +107161|312170 |V2170 Cyg |214222.7+340409 |LB | 8.16 | 8.39 | |Hp| | | | | |HIP HIP | +107532|312171 |V2171 Cyg |214646.4+373929 |LB | 7.21 | 7.33 | |Hp| | | | | |HIP HIP | +108326|312172 |V2172 Cyg |215645.0+513434 |BE | 8.17 | 8.30 | |Hp| | | | | |HIP HIP | +108348|312173 |V2173 Cyg |215702.2+484007 |LPB | 6.47 | 6.51 | |Hp| | | | | |HIP HIP | +108476|312174 |V2174 Cyg *|215829.8+542906 |ACYG: | 8.92 | 9.07 | |Hp| | | | | |HIP HIP | +108738|312175 |V2175 Cyg *|220138.2+501005 |BE | 9.26 | 9.38 | |Hp| | | | | |HIP HIP | +120155|312183 |V2183 Cyg |202131.7+365513 |WR | 9.80 | 10.00 | |Hp| | | | | |75111 BD | +102237|312195 |V2195 Cyg |204300.0+352948 |RR: | 12.1 | 13.7 | |p | | | | | |75115 75116| +103736|312200 |V2200 Cyg |210114.3+434318 |ACV | 7.12 |( 0.04 )| |U | | | | | |75118 BD | +100542|312245 |V2245 Cyg |202310.8+405230 |LPB: | 8.50 |( 0.04 )| |V | | | | | |76226 DM | +106708|312256 |V2256 Cyg |213653.9+334307 |ELL | 8.07 | 8.17 | |Hp| | | | | |76235 DM | +95934 |312286 |V2286 Cyg |193035.8+315848 |LB | 7.51 |( 0.03 )| |V | | | | | |77023 DM | +99539 |312312 |V2312 Cyg *|201203.8+474413 |LBV | 6.92 |( 0.08 b )| |V | | | | | |77190 DM | +100443|312314 |V2314 Cyg |202210.2+311512 |EA | 8.64 | 8.76 | |Hp| | | | | |77192 DM | +101227|312425 |V2425 Cyg |203107.8+333235 |BY | 8.35 |( 0.03 )| |V | | | 6.94 : | |K0 |78018 DM | +102766|312431 |V2431 Cyg |204916.2+321705 |BY | 8.25 |( 0.03 )| |V | | | 22.64 | |K2V |78018 DM | +103859|312436 |V2436 Cyg |210240.8+455305 |BY | 7.69 |( 0.03 )| |V | | | 10.526 | |K2V |78018 DM | +102098|319001 |alf Cyg *|204125.9+451649 |ACYG | 1.21 | 1.29 | |V | | | | |A2Iae |04766 BD | +102589|319011 |lam Cyg |204724.5+362927 |BE | 4.47 | 4.54 | |Hp| | | | | |HIP HIP | +104887|319019 |tau Cyg *|211447.5+380243 |DSCT | 3.65 | 3.75 | |V | | | | |F0IV |06283 BD | +105138|319020 |ups Cyg *|211755.1+345349 |GCAS | 4.28 | 4.50 | |V | | | | |B2Vne | BD | +97629 |319022 |khi Cyg *|195033.9+325451 |M | 3.3 | 14.2 | |V |42140. | | 408.05 |41 |S6,2e-S10,4e(MSe)|00001 00002| +100044|319216 |P Cyg *|201747.2+380159 |SDOR | 3. | 6. | |V | | | | |B1Iapeq | 08953| +99802 |320001 |R Del |201455.1+090521 |M | 7.6 | 13.8 | |V |44091. | | 285.07 |45 |M5e-M6e |00001 00002| +102246|320002 |S Del *|204304.9+170517 |M | 8.3 | 12.4 | |V |44887. | | 277.75 |52 |M5e-M8 |00001 00002| +102440|320004 |U Del *|204528.2+180524 |SRB | 7.6 | 8.9 | |p | | | 110. : | |M5II-III |03767 00002| +101780|320006 |W Del *|203740.1+181704 |EA/SD | 9.69 | 12.33 | 9.79 |V |43328.5495 | | 4.806100 |12 |B9.5Ve+G5 |08593 09031| +101056|320011 |RS Del |202909.7+161625 |SRB: | 9.18 | 10.0 | |B | | | 60. | |M5-M8 |00653 08953| +102853|320031 |TX Del *|205012.7+033908 |CWB: | 8.84 | 9.54 | |V |42947.009 | | 6.165907 |33 |G0-G5 |08632 08953| +101079|320120 |CT Del |202926.4+095352 |LB | 6.8 | 8.5 | |V | | | | |M7 |00911 08953| +102593|320146 |DX Del *|204728.4+122751 |RRAB | 9.52 | 10.26 | |V |39367.340 | | 0.47261673 |20 |A9-F6 |03506 01442| +101810|320164 |EU Del |203754.7+181607 |SRB | 5.79 | 6.9 | |V |41156. | | 59.7 | |M6.4III |08814 08073| +103246|320266 |LR Del |205502.2+171534 |ACV | 7.7 |( 0.039 )| |V | | | 26. | |A0p |08323 BD | +102158|320269 |LU Del |204158.2+173117 |SR: | 6.22 |( 0.25 )| |V | | | | | |70053 BD | +99995 |320274 |LZ Del |201709.8+155222 |GCAS | 7.43 | 7.63 | |Hp| | | | | |HIP HIP | +100383|320275 |MM Del |202129.5+120936 |LB: | 11.44 | 11.70 | |Hp| | | | | |HIP HIP | +100468|320276 |MN Del |202226.7+165500 |SRB | 7.17 | 7.37 | |Hp| | | | | |HIP HIP | +100802|320277 |MO Del |202620.4+105019 |BY: | 11.04 | 11.27 | |Hp| | | | | |HIP HIP | +100981|320278 |MP Del |202826.6+114315 |EA | 7.62 | 7.89 | |Hp| | | | | |HIP HIP | +101195|320279 |MQ Del |203044.5+120527 |SRD | 8.64 | 8.79 | |Hp| | | | | |HIP HIP | +101236|320280 |MR Del |203113.5+051309 |EA | 8.85 | 9.16 | |Hp| | | | | |HIP HIP | +101238|320281 |MS Del |203115.2+062121 |LB | 8.28 | 8.44 | |Hp| | | | | |HIP HIP | +101316|320282 |MT Del |203208.0+183739 |LB | 7.05 | 7.30 | |Hp| | | | | |HIP HIP | +101369|320283 |MU Del |203243.0+193135 |BY: | 11.56 | 11.89 | |Hp| | | | | |HIP HIP | +101512|320284 |MV Del |203416.4+193150 |SRB: | 7.24 | 7.34 | |Hp| | | | | |HIP HIP | +101615|320285 |MW Del |203538.7+035951 |SRB: | 8.48 | 8.76 | |Hp| | | | | |HIP HIP | +101657|320286 |MX Del |203623.1+203558 |EB | 8.99 | 9.17 | |Hp| | | | | |HIP HIP | +102330|320287 |MY Del |204359.3+173418 |LB: | 8.01 | 8.15 | |Hp| | | | | |HIP HIP | +102427|320288 |MZ Del |204520.0+070220 |EB | 8.32 | 8.54 | |Hp| | | | | |HIP HIP | +102545|320289 |NN Del |204649.2+073310 |EA | 8.49 | 8.92 | |Hp| | | | | |HIP HIP | +102844|320290 |NO Del |205004.8+165905 |LB | 9.04 | 9.40 | |Hp| | | | | |HIP HIP | +103083|320291 |NP Del |205311.3+152555 |ELL: | 8.89 | 8.97 | |Hp| | | | | |HIP HIP | +103185|320292 |NQ Del |205420.3+081108 |LB: | 11.76 | 12.16 | |Hp| | | | | |HIP HIP | +103417|320293 |NR Del |205711.2+161505 |LB | 7.18 | 7.48 | |Hp| | | | | |HIP HIP | +99866 |320294 |NS Del |201542.4+135057 |ACV | 9.22 |( 0.09 U )| |V | | | | | |75026 BD | +101955|320304 |OQ Del |203937.7+045819 |BY | 7.88 |( 0.04 )| |V | | | | |K5V |78018 DM | +102490|320305 |OR Del *|204613.3+155426 |RS | 7.09 |( 0.03 )| |V | | | 6.557 | |K0IV |78018 DM | +102281|329004 |del Del *|204327.5+150429 |DSCT | 4.38 | 4.49 | |V | | | | |F0IV |07528 BD | +21479 |330001 |R Dor *|043645.6-620438 |SRB | 4.8 | 6.6 | |V | | | 338. : | |M8IIIe |00353 00002| +24055 |330004 |U Dor |051008.8-641904 |M | 8.1 | 14.6 | |p |29850. | | 394.4 | |M8IIIe |00001 09040| +24763 |330015 |RW Dor *|051832.5-681333 |EW/KW | 10.8 | 11.4 | 11.2 |p |30938.6017 | | 0.285463812 | |G |09041 09040| +22256 |330021 |SU Dor |044730.0-554106 |M | 8.5 |< 14.0 | |V |40741. | | 235.86 | | |00001 02381| +29055 |330041 |VW Dor |060745.7-665839 |RRAB | 11.22 | 12.11 | |V |38379.453 | | 0.570610 |20 | |00001 09040| +19722 |330045 |WW Dor |041336.8-503510 |SRB | 8.66 | 8.87 | |V |40625. | | 52. | |M2(Ib/II) |05828 CoD | +19826 |330046 |WX Dor |041505.4-530033 |SRB | 8.76 | 8.91 | |V | | | 80. : | |MB |05828 CPD | +23840 |330048 |WZ Dor |050734.0-632359 |SRB | 5.2 |( 0.12 : )| |V | | | 40. | |M3III |06994 CPD | +18691 |330050 |XY Dor |040015.5-513354 |LB: | 6.50 |( 0.07 )| |V | | | | |M1III |05150 CoD | +22381 |330051 |XZ Dor |044904.8-564000 |LB: | 6.55 |( 0.16 )| |V | | | | |M4III |04456 CPD | +25647 |330056 |AB Dor |052844.8-652655 |FKCOM: | 6.77 | 6.98 | |V | | | | | |67395 CPD | +19248 |330061 |AG Dor |040729.2-523417 |RS | 8.66 | 8.83 | |V | | | | | |69011 CPD | +22229 |330065 |AL Dor |044652.3-603613 |EA | 7.80 | 8.12 | |Hp| | | | | |HIP HIP | +22474 |330066 |AM Dor |045009.1-583122 |LB: | 8.35 | 8.45 | |Hp| | | | | |HIP HIP | +22663 |330067 |AN Dor |045228.2-554149 |EA | 7.61 | 7.79 | |Hp| | | | | |HIP HIP | +23374 |330068 |AO Dor |050132.8-680143 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +23793 |330069 |AP Dor |050645.1-590303 |EW: | 9.38 | 9.60 | |Hp| | | | | |HIP HIP | +24064 |330070 |AQ Dor |051013.6-602621 |LB | 8.57 | 9.00 | |Hp| | | | | |HIP HIP | +24221 |330071 |AR Dor |051203.1-651033 |E: | 7.12 | 7.20 | |Hp| | | | | |HIP HIP | +24823 |330072 |AS Dor |051916.9-675149 |LB: | 9.72 | 9.95 | |Hp| | | | | |HIP HIP | +25610 |330073 |AT Dor |052816.2-590847 |LB: | 8.63 | 8.73 | |Hp| | | | | |HIP HIP | +26324 |330074 |AU Dor |053622.3-661725 |LB: | 8.73 | 8.86 | |Hp| | | | | |HIP HIP | +26760 |330075 |AV Dor |054104.9-615128 |EA | 9.67 | 10.09 | |Hp| | | | | |HIP HIP | +29564 |330076 |AW Dor |061342.7-664759 |LB: | 9.17 | 9.35 | |Hp| | | | | |HIP HIP | +30775 |330077 |AX Dor |062758.9-664516 |LB: | 8.37 | 8.47 | |Hp| | | | | |HIP HIP | +31057 |330078 |AY Dor |063101.1-665215 |LB: | 6.77 | 7.24 | |Hp| | | | | |HIP HIP | +26368 |330079 |AZ Dor |053655.0-663337 |BE | 6.26 | 6.29 | |V | | | | | |76053 DM | +21281 |339001 |alf Dor *|043359.8-550242 |ACV | 3.26 | 3.30 | |V |43481.50 | | 2.95 |50 |A0IIIp(Si) |04013 CPD | +26069 |339002 |bet Dor *|053337.5-622923 |DCEP | 3.46 | 4.08 | |V |40905.30 | | 9.8426 |48 |F4-G4Ia-II |08654 08953| +19893 |339003 |gam Dor |041601.6-512912 |EW: | 4.23 | 4.27 | |V | | | | |F0V-F5V |06065 HIP | +81014 |340001 |R Dra |163240.2+664518 |M | 6.7 | 13.2 | |V |44779. | | 245.60 |45 |M5e-M9eIII |00001 00002| +81835 |340002 |S Dra |164255.9+545414 |SRB | 10.5 | 11.5 | |p | | | 136. : | |M7 |01169 08953| +87820 |340003 |T Dra *|175623.3+581306 |M | 7.2 | 13.5 | |V |43957. | | 421.62 |44 |C6,2e-C8,3e(N0e) |00001 00002| +57348 |340009 |Z Dra *|114529.2+721458 |EA/SD | 10.8 | 14.1 | 11.0 |p |43499.736 | | 1.3574560 |15 *|F4V |00001 09082| +91316 |340011 |RS Dra *|183733.5+741943 |SRA | 9.0 | 12.0 | |V |15120. | | 282.72 |44 |M5e |03817 00101| +81238 |340015 |RW Dra *|163531.6+575023 |RRAB | 11.05 | 12.08 | |V |39377.391 | | 0.442917 | |A7-F4 |08636 00102| +63152 |340017 |RY Dra |125625.9+655940 |SRB: | 6.03 | 8.0 | |V | | | 200. : | |C4,5J(N4p) |00001 08953| +90092 |340018 |RZ Dra *|182305.4+585413 |EB/SD: | 10.11 | 11.01 | 10.38 |V |44177.5555 | | 0.5508738 | |A5 |09052 00102| +60694 |340019 |SS Dra |122620.9+684117 |SRB | 8.4 | 10.4 | |V |27667. | | 51.5 |48 |M5 |00310 08953| +56734 |340021 |SU Dra *|113756.6+671947 |RRAB | 9.18 | 10.27 | |V |43902.0467 | | 0.66042001 |15 |F2-F7 |08299 08299| +59946 |340023 |SW Dra *|121746.6+693038 |RRAB | 9.94 | 10.94 | |V |26224.5876 | | 0.56966993 |17 |A7-F8 |03506 06286| +94162 |340026 |SZ Dra |191002.3+660610 |LB | 10.0 | 11.0 | |p | | | | |M5 | 08953| +84213 |340027 |TT Dra *|171252.3+575146 |SRB | 10.5 |< 12.5 | |p | | | 107. : | |M6 |01169 08953| +83866 |340029 |TV Dra |170824.5+641909 |LB | 10.2 | 11.6 | |p | | | | |M8p(S) | 08953| +76196 |340030 |TW Dra *|153351.1+635426 |EA/SD | 8.0 | 10.5 | 8.1 |p |44136.295 | | 2.8068470 |17 |A8V+K0III |09053 08953| +81188 |340031 |TX Dra *|163500.7+602805 |SRB | 7.9 | 10.2 | |p | | | 78. : |50 |M4e-M5 |01169 00002| +100605|340034 |UU Dra *|202403.6+751514 |SRB | 10.8 | 12.3 | |p | | | 120. |50 |M8IIIe |01463 01464| +72026 |340035 |UV Dra |144401.9+560625 |SRA | 8.6 | 9.8 | |V |24436.4 | | 77.4 |43 |M5 |00898 08953| +87913 |340036 |UW Dra |175731.3+543956 |LB | 7.0 | 8.2 | |V | | | | |K5p | 08953| +95154 |340037 |UX Dra *|192135.5+763335 |SRA: | 5.94 | 7.1 | |V | | | 168. |50 |C7,3(N0) |00108 06225| +87816 |340038 |UY Dra |175622.1+581254 |CST: | 10.99 | | |V | | | | |K2III-IV |00458 00119| +84496 |340041 |VW Dra *|171629.4+604014 |SRD: | 6.0 | 7.0 | |V | | | 170. : | |K1.5IIIb |03828 08953| +76709 |340043 |VY Dra |153950.5+643943 |CST: | 9.2 | | |p | | | | |K2 |01466 09087| +80102 |340044 |VZ Dra |162105.7+582703 |RRC | 11.4 | 12.2 | |p |43361.3979 | | 0.3210308 | |A |04150 09088| +81519 |340045 |WW Dra *|163904.0+604159 |EA/AR/RS | 8.3 |( 0.65 )|( 0.08 )|V |28020.3686 | | 4.6296238 |12 *|G2IV+K0IV |08592 01467| +94134 |340051 |XZ Dra *|190942.6+645132 |RRAB | 9.59 | 10.65 | |V |41928.374 | | 0.476497 |20 |A6-F6 |07032 01474| +100261|340057 |AC Dra |202006.0+685249 |LB | 7.14 |( 0.25 )| |B | | | | |M5IIIab |01371 BD | +101260|340060 |AF Dra *|203130.4+745717 |ACV | 5.15 | 5.22 | |V | | | 20.2747 | |A0p(Sr-Cr-Eu) |07946 BD | +78512 |340061 |AG Dra *|160141.0+664810 |ZAND | 8.9 | 11.8 | |p |38900. | | 554. | |K3IIIep |05724 09092| +82249 |340062 |AH Dra |164816.6+574849 |SRB | 8.5 | 9.3 | |p |30520. | | 158. | |M7 |03775 08953| +82884 |340063 |AI Dra *|165618.1+524154 |EA/SD | 7.05 | 8.09 | 7.16 |V |43291.627 | | 1.1988146 |18 *|A0V |00001 06515| +90474 |340065 |AL Dra |182740.5+491833 |M | 11.0 | 13.8 | |p |39409. | | 330.3 | |M7ea |00001 04238| +60331 |340072 |AS Dra *|122211.7+731455 |* | 8.00 | 8.10 | |V |35926.055 | | 5.414905 | |G4+G9 |02790 BD | +79804 |340073 |AT Dra |161715.4+594518 |LB | 6.8 | 7.5 | |p | | | | |M4IIIa |02696 08953| +81646 |340079 |AZ Dra |164042.5+724018 |LB | 8.0 | 8.9 | |p | | | | |M2 |04198 08953| +87604 |340080 |BB Dra |175345.0+570321 |LB | 10.9 | 11.7 | |p | | | | |M8 |04213 BD | +89372 |340081 |BC Dra |181419.1+764108 |RRAB | 11.27 | 11.80 | |V |42278.443 | | 0.719576 |22 |F5 |09094 09094| +92489 |340084 |BF Dra |185059.4+695258 |EA | 10.1 | 10.8 | |p |36317.579 | | 5.60545 |06 *|F8 |04109 04235| +93595 |340086 |BH Dra *|190339.5+572726 |EA/SD: | 8.38 | 9.27 | 8.58 |V |40019.7982 | | 1.81723857 |11 *|A2V+Ap |06517 08953| +94869 |340088 |BK Dra *|191820.7+662448 |RRAB | 10.59 | 11.87 | |V |25523.305 | | 0.5920815 |12 |A8 |03835 04250| +98118 |340096 |BS Dra *|195628.8+733658 |EA/DM | 9.12 | 9.86 | 9.84 |V |41461.4242 | | 3.3640120 |07 *|F5V+F5V |00001 08953| +72691 |340097 |BT Dra |145144.6+600409 |RRAB | 11.36 | 12.30 | |V |30734.635 | | 0.5886740 |16 |A8 |00001 09095| +74370 |340099 |BV Dra *|151150.4+615125 |EW/KW | 7.88 | 8.48 | 8.40 |V |44474.327 | | 0.3500671 | |F7V |00001 09096| +74368 |340100 |BW Dra *|151150.1+615141 |EW/KW | 8.61 | 9.08 | 9.02 |V |42572.538 | | 0.2921671 | | |09097 09096| +78891 |340101 |BX Dra |160617.4+624546 |RR | 11.5 | 12.2 | |p |27216.410 | | 0.561192 |20 |A3 |03929 03587| +91009 |340102 |BY Dra *|183355.8+514309 |BY+UV | 8.04 | 8.48 | |V | | | 3.813 | |K3V+MVe |06948 04028| +78180 |340112 |CL Dra |155747.4+544459 |DSCTC | 4.95 |( 0.02 )| |V | | | 0.063 | |F0IV |06255 BD | +97326 |340114 |CN Dra |194644.7+682617 |DSCTC | 6.29 |( 0.09 )| |V | | | 0.100 | |F0III |05500 BD | +60998 |340117 |CQ Dra |123006.7+691204 |LB: | 4.95 | 5.04 | |V | | | | |M3IIIa |05841 BD | +79796 |340118 |CR Dra *|161705.4+551609 |UV | 9.46 | 12.53 | |U | | | | |M1.5Ve |09119 04069| +57002 |340120 |CT Dra |114109.3+752822 |LB | 9.8 | 10.4 | |p | | | | |M |02618 BD | +67627 |340121 |CU Dra |135125.9+644324 |LB: | 4.52 | 4.67 | |V | | | | |M3III |09152 BD | +92133 |340124 |CX Dra *|184643.1+525917 |GCAS+ELL | 5.68 | 5.99 | |V | | | | |B2.5Ve |09164 BD | +100221|340128 |DE Dra *|201936.7+621527 |EA/DM | 5.72 |( 0.16 )| |V |42626.2861 | | 5.298036 |05 |B9V |09155 BD | +93727 |340130 |DG Dra *|190503.4+570732 |ELL | 9.40 |( 0.19 )|( 0.17 )|V |41851.848 | | 0.5713698 | |A5V |08284 BD | +50709 |340132 |DI Dra |102116.0+784552 |ACV | 8.2 |( 0.015 )| |B | | | 18. | |A0p(Sr-Cr-Eu) |08323 BD | +59796 |340133 |DK Dra *|121541.5+723304 |RS | 6.29 |( 0.19 )| |V |44048.0 | | 63.15 |50 |K0III+K0III |08600 BD | +71876 |340134 |DL Dra *|144203.3+611543 |DSCTC | 6.22 | 6.29 | |V | | | | |F2IV |04026 BD | +62556 |340138 |DP Dra |124902.8+660637 |UV | 10.9 |( 1.55 B )| |V | | | | | |67403 HIP | +80375 |340139 |DQ Dra |162425.3+551218 |ACV | 5.74 |( 0.017 )| |V | | | | | |67415 BD | +85852 |340140 |DR Dra |173241.2+741339 |RS | 6.55 |( 0.12 )| |V | | | | | |67419 BD | +86167 |340148 |DZ Dra |173629.8+682920 |SRB: | 7.6 |( 0.03 )| |V | | | | | |69136 BD | +93187 |340149 |EE Dra |185852.6+693153 |ACV | 5.84 |( 0.05 )| |U | | | | | |69128 BD | +70953 |340153 |EI Dra |143046.8+604634 |DSCT | 8.50 |( 0.11 )| |V | | | | | |71127 BD | +71631 |340154 |EK Dra |143900.2+641730 |BY | 8.15 |( 0.09 )| |B | | | | | |71130 BD | +71040 |340161 |ER Dra |143142.8+601332 |DSCTC | 6.18 |( 0.03 )| |V | | | | | |72083 BD | +87311 |340163 |ET Dra |175025.1+704537 |FKCOM | 11.52 | 11.83 | |U | | | | | |72086 BD | +74280 |340164 |EU Dra |151049.8+635226 |SRD: | 8.56 |( 0.20 )| |V | | | | | |73147 BD | +78519 |340165 |EV Dra |160147.5+512052 |RS | 8.63 |( 0.06 )| |V | | | | | |73005 BD | +79762 |340166 |EW Dra |161645.3+671523 |BY | 10.69 | 10.74 | |V | | | | | |73018 73148| +53079 |340170 |FF Dra |105133.4+751128 |LB | 8.67 | 8.90 | |Hp| | | | | |HIP HIP | +53564 |340171 |FG Dra |105727.6+742011 |LB | 7.41 | 7.68 | |Hp| | | | | |HIP HIP | +53732 |340172 |FH Dra |105935.0+752829 |SRB | 8.51 | 8.80 | |Hp| | | | | |HIP HIP | +56923 |340173 |FI Dra |114013.1+681323 |SRB | 8.30 | 8.52 | |Hp| | | | | |HIP HIP | +61006 |340174 |FK Dra |123011.7+635321 |EA | 9.30 | 9.79 | |Hp| | | | | |HIP HIP | +63602 |340175 |FL Dra |130204.2+681355 |LB | 9.84 | 10.13 | |Hp| | | | | |HIP HIP | +65035 |340176 |FM Dra |131951.0+651104 |SRB | 8.76 | 8.99 | |Hp| | | | | |HIP HIP | +67238 |340177 |FN Dra |134643.3+633151 |LB | 8.13 | 8.36 | |Hp| | | | | |HIP HIP | +71015 |340178 |FO Dra |143125.7+560929 |LB: | 9.75 | 9.91 | |Hp| | | | | |HIP HIP | +71269 |340179 |FP Dra |143432.3+645758 |LB: | 8.55 | 8.66 | |Hp| | | | | |HIP HIP | +72198 |340180 |FQ Dra |144601.6+643733 |ACV: | 8.17 | 8.22 | |Hp| | | | | |HIP HIP | +73237 |340181 |FR Dra |145804.7+635122 |LB: | 8.71 | 8.83 | |Hp| | | | | |HIP HIP | +74938 |340182 |FS Dra |151847.5+593117 |LB | 8.20 | 8.33 | |Hp| | | | | |HIP HIP | +76047 |340183 |FT Dra |153149.0+542817 |LB | 8.35 | 8.48 | |Hp| | | | | |HIP HIP | +76272 |340184 |FU Dra |153445.2+621644 |EW | 10.58 | 11.10 | |Hp| | | | | |HIP HIP | +76627 |340185 |FV Dra |153854.6+572742 |LB | 7.33 | 7.48 | |Hp| | | | | |HIP HIP | +76947 |340186 |FW Dra |154242.0+670400 |LB | 7.84 | 7.98 | |Hp| | | | | |HIP HIP | +77037 |340187 |FX Dra |154347.6+580127 |EB | 9.29 | 9.59 | |Hp| | | | | |HIP HIP | +77445 |340188 |FY Dra |154840.6+612631 |LB | 8.14 | 8.41 | |Hp| | | | | |HIP HIP | +77993 |340189 |FZ Dra |155537.7+575331 |LB: | 10.49 | 10.68 | |Hp| | | | | |HIP HIP | +80961 |340190 |GG Dra |163155.6+525927 |EB | 8.77 | 8.89 | |Hp| | | | | |HIP HIP | +81244 |340191 |GH Dra |163535.9+615049 |LB: | 10.04 | 10.19 | |Hp| | | | | |HIP HIP | +81284 |340192 |GI Dra |163607.2+585131 |SRD: | 8.10 | 8.15 | |Hp| | | | | |HIP HIP | +82056 |340193 |GK Dra |164541.2+681531 |EA | 8.78 | 9.20 | |Hp| | | | | |HIP HIP | +83102 |340194 |GL Dra |165854.1+544343 |SRB | 8.60 | 8.84 | |Hp| | | | | |HIP HIP | +84837 |340195 |GM Dra |172021.9+575827 |EW | 8.79 | 9.02 | |Hp| | | | | |HIP HIP | +84896 |340196 |GN Dra |172101.3+662722 |SRB | 9.06 | 10.07 | |Hp| | | | | |HIP HIP | +85125 |340197 |GO Dra |172349.0+634545 |LB | 9.14 | 9.45 | |Hp| | | | | |HIP HIP | +85076 |340198 |GP Dra |172315.5+715212 |LB | 6.83 | 7.05 | |Hp| | | | | |HIP HIP | +85277 |340199 |GQ Dra |172529.4+512935 |EB | 8.98 | 9.42 | |Hp| | | | | |HIP HIP | +85522 |340200 |GR Dra |172839.4+590207 |L | 8.30 | 8.43 | |Hp| | | | | |HIP HIP | +85718 |340201 |GS Dra |173057.1+650637 |LB: | 9.78 | 9.91 | |Hp| | | | | |HIP HIP | +86450 |340202 |GT Dra |173950.8+725753 |IA: | 8.13 | 8.26 | |Hp| | | | | |HIP HIP | +87228 |340203 |GU Dra |174920.8+530054 |LB: | 10.13 | 10.35 | |Hp| | | | | |HIP HIP | +87576 |340204 |GV Dra |175327.5+522308 |EA | 8.59 | 8.70 | |Hp| | | | | |HIP HIP | +87541 |340205 |GW Dra |175304.1+772302 |DSCTC | 9.31 | 9.38 | |Hp| | | | | |HIP HIP | +88411 |340206 |GX Dra |180306.3+504148 |SRD | 8.32 | 8.57 | |Hp| | | | | |HIP HIP | +89083 |340207 |GY Dra |181052.6+571530 |LB | 9.02 | 9.26 | |Hp| | | | | |HIP HIP | +89243 |340208 |GZ Dra |181241.0+544607 |E: | 9.52 | 9.65 | |Hp| | | | | |HIP HIP | +90463 |340209 |HH Dra |182734.1+582846 |LB | 8.80 | 9.13 | |Hp| | | | | |HIP HIP | +90972 |340210 |HI Dra |183324.4+584223 |RRC | 9.02 | 9.20 | |Hp| | | | | |HIP HIP | +91061 |340211 |HK Dra |183430.9+514656 |LB | 6.56 | 6.77 | |Hp| | | | | |HIP HIP | +91052 |340212 |HL Dra |183426.3+574807 |EB | 7.35 | 7.66 | |Hp| | | | | |HIP HIP | +91335 |340213 |HM Dra |183743.7+594531 |SRD | 8.17 | 8.30 | |Hp| | | | | |HIP HIP | +91983 |340214 |HN Dra |184453.1+570517 |RR: | 8.16 | 8.23 | |Hp| | | | | |HIP HIP | +92523 |340215 |HO Dra |185122.1+623916 |LB | 8.37 | 8.54 | |Hp| | | | | |HIP HIP | +92835 |340216 |HP Dra |185453.5+511830 |EA | 8.06 | 8.36 | |Hp| | | | | |HIP HIP | +92889 |340217 |HQ Dra |185534.1+672250 |LB: | 9.15 | 9.28 | |Hp| | | | | |HIP HIP | +93145 |340218 |HR Dra |185826.4+530536 |LB | 9.25 | 9.51 | |Hp| | | | | |HIP HIP | +94361 |340219 |HS Dra |191222.6+735333 |LB | 7.24 | 7.37 | |Hp| | | | | |HIP HIP | +94897 |340220 |HT Dra |191841.0+635518 |LB: | 8.92 | 9.05 | |Hp| | | | | |HIP HIP | +95320 |340221 |HU Dra |192334.2+690053 |SRB | 6.96 | 7.08 | |Hp| | | | | |HIP HIP | +94978 |340222 |HV Dra |191938.0+814746 |SRD+E: | 7.79 | 8.14 | |Hp| | | | | |HIP HIP | +96350 |340223 |HW Dra |193524.2+694820 |LB | 6.81 | 6.98 | |Hp| | | | | |HIP HIP | +96429 |340224 |HX Dra |193616.1+754448 |LB: | 9.56 | 9.76 | |Hp| | | | | |HIP HIP | +96547 |340225 |HY Dra |193742.2+803055 |SRB | 8.38 | 8.53 | |Hp| | | | | |HIP HIP | +97263 |340226 |HZ Dra |194602.5+695509 |EA | 8.16 | 8.32 | |Hp| | | | | |HIP HIP | +97678 |340227 |II Dra |195103.9+783727 |SRD: | 7.72 | 7.79 | |Hp| | | | | |HIP HIP | +98095 |340228 |IK Dra |195608.9+762701 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +98297 |340229 |IL Dra |195821.6+664726 |LB: | 8.48 | 8.60 | |Hp| | | | | |HIP HIP | +98932 |340230 |IM Dra |200517.4+732727 |SRB | 8.08 | 8.18 | |Hp| | | | | |HIP HIP | +99037 |340231 |IN Dra |200627.7+703935 |DSCTC | 8.05 | 8.09 | |Hp| | | | | |HIP HIP | +99640 |340232 |IO Dra |201318.5+710630 |DSCTC: | 7.86 | 7.92 | |Hp| | | | | |HIP HIP | +99863 |340233 |IP Dra |201541.6+655113 |EB | 7.84 | 7.90 | |Hp| | | | | |HIP HIP | +101960|340234 |IQ Dra |203943.3+803000 |SRB: | 8.47 | 8.95 | |Hp| | | | | |HIP HIP | +63076 |340235 |IR Dra |125528.6+652619 |GDOR | 5.26 | 5.34 | |Hp| | | | | |75029 BD | +70819 |340237 |IT Dra |142858.0+602311 |DSCTC | 7.53 |( 0.03 b )| |V | | | | | |75133 BD | +73869 |340238 |IU Dra |150549.9+640250 |BY | 8.42 |( 0.04 )| |V | | | | | |75134 BD | +89005 |340264 |LP Dra |180955.5+694050 |RS | 8.50 | 8.58 | |V | | | | | |77119 DM | +91329 |340268 |LT Dra |183741.1+515646 |RCB | 7.48 |< 12.6 | |V | | | | | |77159 DM | +93299 |340270 |LV Dra |190013.7+503201 |ACV | 5.31 | 5.34 | |Hp| | | | | |77162 DM | +68076 |340278 |MP Dra |135617.8+665641 |BY | 8.45 |( 0.03 )| |V | | | 9.52 | |K0V |78018 DM | +83536 |340280 |MR Dra |170425.6+524907 |DSCTC | 8.21 |( 0.01 )| |V | | | 0.032 | |A5 |78200 DM | +86456 |340281 |MS Dra |173955.7+650006 |BY | 8.39 |( 0.03 )| |V | | | 18.31 | |K0V |78018 DM | +94346 |340284 |MV Dra |191211.4+574019 |BY | 7.04 |( 0.02 )| |V | | | 5.49 | |G8V |78018 DM | +74355 |340290 |NO Dra *|151144.4+633719 |EA | 8.02 | 8.14 | 8.13 : |V |48953.470 | | 5.47798 |04 |A2V |79004 DM | +86058 |340291 |NP Dra |173516.3+550012 |EA | 9.04 | 9.15 | 9.15 |* |48604.780 | | 3.10886 |08 |A0 |79006 DM | +58567 |340305 |OR Dra *|120037.5+691108 |DSCT | 7.40 | 7.44 | |V | | | 0.1128290 | |F2 |80363 HIP | NL80_2 +74037 |340322 |PX Dra *|150750.2+630702 |EA | 9.82 | 6.95 : | 6.88 |V |48832.12 | | 2.44405 |12 |F4III |80015 HIP | NL80_2 +61281 |349010 |kap Dra *|123328.9+694718 |GCAS | 3.82 | 4.01 | |V | | | | |B6IIIe |09013 BD | +92512 |349015 |omi Dra |185112.1+592318 |RS | 4.63 |( 0.10 )| |V | | | | | |69137 BD | +89908 |349021 |phi Dra *|182045.4+712016 |ACV | 4.22 |( 0.04 )| |V |42229.40 | | 1.71646 |60 |A0p(Si) |08824 BD | +103419|350002 |S Equ *|205712.8+050449 |EA/SD | 8.0 | 10.08 | 8.11 |V |42596.74348 | | 3.4360969 |13 *|B9V+F9III-IV |08593 05373| +104895|350014 |RV Equ |211453.6+085937 |SRB | 9.09 | 9.39 | |V | | | 80. : | |K0 |09121 08594| +103431|350022 |SV Equ *|205718.9+054852 |EW/KE | 9.25 |( 0.20 )|( 0.16 )|V |39382.427 | | 0.881 | |A0 |05425 BD | +103586|350024 |SX Equ |205917.2+083816 |LB: | 8.29 | 8.41 | |Hp| | | | | |HIP HIP | +105614|350025 |SY Equ |212328.8+095555 |BCEP | 8.47 | 8.54 | |Hp| | | | | |HIP HIP | +104075|350029 |TV Equ |210508.0+075644 |BY: | 7.98 |( 0.02 )| |V | | | 7.52 | |G5 |78018 DM | +104521|359003 |gam Equ *|211020.5+100754 |ACVO | 4.58 | 4.77 | |V | | | 0.00868 | |F0p(Sr-Cr-Eu) |09123 BD | +22881 |360001 |R Eri |045518.6-162504 |CST: | 5.72 | | |V | | | | |G4III |00458 BD | +23231 |360002 |S Eri |045955.7-123215 |RRC: | 4.77 | 4.80 | |V | | | 0.273 | |F0IV |09189 BD | +18336 |360003 |T Eri |035513.9-240157 |M | 7.2 | 13.2 | |V |42079. | | 252.29 |45 |M3e-M5e |00001 00002| +19004 |360005 |V Eri *|040418.8-154331 |SRC | 8.8 | 10.4 | |p | | | 97.0 | |M6II |01485 08667| +19567 |360006 |W Eri *|041131.0-250802 |M | 7.5 | 14.5 | |V |40345. | | 376.63 |40 |M7e-M9 |00001 00002| +9767 |360008 |Y Eri |020534.2-570839 |M | 10.7 | 13.5 | |p |30060. | | 302.7 | |M7e |01486 CoD | +13064 |360009 |Z Eri *|024755.9-122738 |SRB | 7.0 | 8.63 | |B | | | 80. | |M4III |01487 00002| +13384 |360010 |RR Eri |025214.2-081601 |SRB | 7.4 | 9.20 | |B | | | 97. | |M5III |01487 00002| +20045 |360011 |RS Eri |041755.4-183025 |M | 9.2 |< 12.8 | |p |38048. | | 296.00 | |M7e |00001 06286| +16647 |360012 |RT Eri |033412.5-160951 |M | 8.5 | 12.9 | |p |29360. | | 370.8 |46 |M7e |00001 08953| +20429 |360015 |RW Eri |042234.8-053004 |SRA | 10.2 | 11.7 | |p |16780. | | 91.4 |44 |M6 |01489 08073| +22442 |360016 |RX Eri *|044944.3-154428 |RRAB | 9.17 | 10.10 | |V |21692.479 | | 0.58724622 |16 |A7-F6 |03506 01045| +22000 |360018 |RZ Eri *|044345.8-104056 |EA/DS/RS | 7.70 | 8.72 |( 0.04 pg)|V |43574.083 | | 39.28238 |05 |A5+G8IV |09194 09197| +14856 |360022 |SV Eri *|031152.1-112114 |RRAB | 9.56 | 10.23 | |V |35552.109 | | 0.7137964 |30 |A8-F5 |09195 00182| +24025 |360025 |SY Eri |050948.3-053055 |SRB | 10.4 | 11.4 | |p | | | 96.0 : | |C6,3(N0) |00372 00002| +21464 |360034 |UU Eri |043633.9-273443 |SRB | 10.6 | 12.0 | |p | | | 340. | |M7 |01191 CoD | +14699 |360037 |UX Eri *|030952.7-065334 |EW/KW | 10.5 | 11.11 | 11.01 |V |41922.3195 | | 0.44527942 | |F8 |09198 00279| +15027 |360038 |UY Eri *|031339.1-102632 |CWB | 10.93 | 11.66 | |V |40862.908 | | 2.213235 |28 |A5-F2 |05375 00279| +15653 |360041 |VW Eri *|032130.0-212727 |SRD | 9.2 | 11.16 | |B | | | 83.4 | |K5 |01496 08953| +15926 |360042 |VX Eri |032509.3-122119 |SR: | 10.0 | 10.6 | |p | | | | |M3 |00862 08953| +19610 |360052 |YY Eri *|041208.8-102810 |EW/KW | 8.1 | 8.80 | 8.72 |V |41581.624 | | 0.32149415 | |G5+G5 |00001 08953| +16496 |360072 |AS Eri *|033225.1-031848 |EA/SD | 8.29 | 9.00 | 8.42 |V |28538.066 | | 2.664152 |09 *|A3V |03851 08953| +22750 |360080 |BB Eri *|045337.5-192601 |RRAB | 10.96 | 11.91 | |V |39559.291 | | 0.569898 |12 |F4 |05233 01111| +22234 |360081 |BC Eri *|044659.0-143723 |EW/KE | 10.83 : | 11.32 : | 11.26 : |V | | | 0.52778916 | |A6 | 01111| +19717 |360090 |BM Eri *|041329.6-102314 |E:/GS+SR | 8.5 | 9.3 | |p |31140. | | | |M6III |00007 08953| +17821 |360095 |BR Eri |034847.5-070054 |SRB | 8.37 | 9.7 | |B | | | 175.5 | |M5 |00123 00002| +17859 |360098 |BU Eri |034920.9-205227 |EA | 8.5 | 9. | |p |32244.33 | | | |A3 |00948 08953| +18080 |360099 |BV Eri *|035153.3-103150 |EW | 8.12 | 8.63 | 8.42 |V |43449.7103 | | 0.5076649 | *|F2 |09202 08953| +11964 |360104 |CC Eri *|023422.6-434747 |BY+UV | 8.70 | 9.05 | |V | | | 1.56145 | |K7Ve |02838 CoD | +9230 |360110 |CI Eri *|015838.5-533139 |EA/SD: | 9.5 | 10.5 | |p |28782.475 | | 3.382880 | |F8V |05235 04001| +12071 |360115 |CO Eri *|023538.6-450412 |EA/SD | 9.0 | 9.6 | 9.1 |p |28776.575 | | 5.7836 | |F7V |03795 08953| +12199 |360119 |CS Eri *|023705.8-425748 |RRC | 8.75 | 9.31 | |V |38417.087 | | 0.311331 |47 |A2 |06523 CoD | +20943 |360120 |CT Eri *|042924.8-333434 |EW/KE | 10.0 | 10.52 | 10.27 |V |44555.6736 | | 0.634195498 | |F0 |09205 08953| +12981 |360121 |CU Eri |024658.2-132028 |CST | 8.7 | | |V | | | | |G5 |00001 08953| +14040 |360122 |CV Eri |030050.9-025243 |LB: | 6.10 |( 0.18 )| |V | | | | |M2III | BD | +14273 |360123 |CW Eri *|030400.0-174416 |EA/DM | 8.43 | 8.96 | 8.86 |V |41267.6752 | | 2.7283737 |10 *|F0 |07512 BD | +18928 |360124 |CX Eri |040326.4-392242 |SRB | 8.89 | 9.43 | |V |40666. | | 97. | |MA |05828 08953| +19116 |360125 |CY Eri |040554.1-101745 |SRB | 6.95 | 7.20 | |V | | | 25. | |M4III |05828 BD | +19238 |360126 |CZ Eri |040723.8-392955 |SRB | 8.75 | 8.97 | |V | | | 50. | |MA |05828 CoD | +19533 |360128 |DE Eri |041104.5-200305 |SRB | 8.91 | 9.06 | |V | | |> 150. | |M2 |05828 BD | +19694 |360129 |DF Eri |041307.2-363242 |SRB | 8.21 | 8.33 | |V |40643. | | 36. | |MA |05828 CoD | +20269 |360130 |DG Eri |042041.4-164948 |SRB | 6.94 | 7.14 | |V |40623. :| | 82. | |M4III |05828 BD | +20506 |360131 |DH Eri |042340.4-274950 |SRB | 8.13 | 8.33 | |V | | | 60. | |M3 |05828 CoD | +18455 |360134 |DL Eri *|035637.9-094503 |DSCTC | 6.15 |( 0.09 )| |V | | | 0.155879 | |F1V |09206 BD | +21763 |360135 |DM Eri *|044026.5-194017 |SRB | 4.28 | 4.36 | |V | | | 30. | |M4III |06994 BD | +18339 |360137 |DO Eri *|035516.1-120557 |ACVO | 5.97 | 6.00 | |V |44577.0 | | 12.4580 |50 |A5p(Sr-Cr-Eu) |09208 BD | +18931 |360138 |DP Eri |040328.9-242736 |SRB | 7.18 | 7.40 | |V | | | 55. : | |M5III |08225 CoD | +20243 |360139 |DQ Eri |042015.3-023743 |SRB | 6.84 | 7.05 | |V | | | 30. : | |M4III |06645 BD | +20922 |360143 |DU Eri |042906.9-130254 |GCAS | 5.41 | 5.49 | |V | | | | |B1Vne |06311 BD | +21296 |360144 |DV Eri |043411.6-081353 |LB: | 5.10 | 5.13 | |V | | | | |M3III |06994 BD | +22024 |360146 |DX Eri |044405.3-083013 |GCAS | 5.76 | 5.98 | |V | | | | |B2Ve |09209 BD | +21192 |360148 |DZ Eri *|043237.5-031234 |SXARI | 5.73 | 5.82 | |Y |42815.52 | | 1.374 | |B9III(He weak) |08054 BD | +14736 |360149 |EE Eri |031018.1-014141 |ACV | 7.33 | 7.38 | |V |44197.2 | | 2.1945 | |B9p(Cr-Eu) |08934 BD | +16803 |360151 |EG Eri *|033617.4-172801 |ACV | 5.23 | 5.32 | |V |43485.50 | | 1.93 |38 |B9p(Si) |04013 BD | +21278 |360152 |EH Eri *|043354.7-064420 |ACV | 5.72 |( 0.035 )| |V |43461.00 | | 3.82 |60 |B9p(Si) |04013 BD | +19431 |360153 |EI Eri |040940.9-075334 |RS | 6.95 | 7.32 | |V | | | | | |67435 BD | +20263 |360154 |EK Eri |042038.6-061446 |BY | 6.24 |( 0.12 )| |V | | | | | |68122 BD | +14763 |360155 |EL Eri |031038.5-052338 |RS | 7.92 | 8.20 | |V | | | | | |69011 BD | +20271 |360156 |EM Eri |042042.8-073533 |* | 5.84 |( 0.06 )| |V | | | | | |69140 BD | +23794 |360157 |EN Eri |050645.6-043919 |ACV: | 4.89 |( 0.01 u )| |U | | | | | |70022 BD | +13402 |360159 |EP Eri |025232.1-124611 |RS | 6.03 | 6.08 | |V | | | | | |72087 BD | +20979 |360160 |EQ Eri |042957.6-285247 |DSCT | 7.7 |( 0.10 )| |V | | | | | |72088 CoD | +17447 |360164 |EU Eri |034418.6-415352 |SRC | 7.23 | 7.86 | |V | | | 395. | | |00001 HIP | +22192 |360167 |EX Eri |044625.8-280515 |DSCTC | 6.19 |( 0.03 b )| |V | | | | | |73160 CoD | +8762 |360170 |FF Eri |015244.7-540041 |LB: | 7.89 | 8.00 | |Hp| | | | | |HIP HIP | +8985 |360171 |FG Eri |015548.3-550420 |DSCTC: | 6.75 | 6.80 | |Hp| | | | | |HIP HIP | +12016 |360172 |FH Eri |023459.7-420646 |SRB | 6.97 | 7.09 | |Hp| | | | | |HIP HIP | +12373 |360173 |FI Eri |023917.0-434806 |DSCTC | 8.49 | 8.59 | |Hp| | | | | |HIP HIP | +12833 |360174 |FK Eri |024458.4-174652 |EA | 9.21 | 9.58 | |Hp| | | | | |HIP HIP | +13130 |360175 |FL Eri |024853.8-190139 |SRB | 8.39 | 8.60 | |Hp| | | | | |HIP HIP | +13188 |360176 |FM Eri |024942.6-171647 |LB: | 8.23 | 8.33 | |Hp| | | | | |HIP HIP | +13293 |360177 |FN Eri |025106.2-405748 |SRA | 7.19 | 7.27 | |Hp| | | | | |HIP HIP | +13396 |360178 |FO Eri |025224.6-410903 |EA | 8.51 | 8.80 | |Hp| | | | | |HIP HIP | +13475 |360179 |FP Eri |025334.8-091229 |EW | 9.71 | 9.85 | |Hp| | | | | |HIP HIP | +13493 |360180 |FQ Eri |025344.7-230844 |LB: | 8.18 | 8.28 | |Hp| | | | | |HIP HIP | +14038 |360181 |FR Eri |030048.4-204137 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +14055 |360182 |FS Eri |030103.9-412106 |LB: | 8.73 | 8.83 | |Hp| | | | | |HIP HIP | +14665 |360183 |FT Eri |030927.9-422851 |BY: | 11.96 | 12.21 | |Hp| | | | | |HIP HIP | +14703 |360184 |FU Eri |030956.5-445930 |EA: | 9.25 | 9.59 | |Hp| | | | | |HIP HIP | +14919 |360185 |FV Eri |031228.8-113655 |LB: | 9.01 | 9.12 | |Hp| | | | | |HIP HIP | +16315 |360186 |FW Eri |033015.6-402203 |E | 11.87 | 12.21 | |Hp| | | | | |HIP HIP | +16864 |360187 |FX Eri |033701.4-413140 |EW | 9.73 | 9.97 | |Hp| | | | | |HIP HIP | +17167 |360188 |FY Eri |034038.3-051239 |ACV | 5.47 | 5.51 | |Hp| | | | | |HIP HIP | +17145 |360189 |FZ Eri |034019.6-431427 |SRB | 7.28 | 7.52 | |Hp| | | | | |HIP HIP | +17390 |360190 |GG Eri |034326.8-393723 |LB: | 9.57 | 9.74 | |Hp| | | | | |HIP HIP | +17441 |360191 |GH Eri |034413.0-411647 |EA | 9.03 | 9.61 | |Hp| | | | | |HIP HIP | +17442 |360192 |GI Eri |034413.3-431410 |SRB | 7.99 | 8.29 | |Hp| | | | | |HIP HIP | +17530 |360193 |GK Eri |034512.0-162438 |EA | 8.96 | 9.49 | |Hp| | | | | |HIP HIP | +17993 |360194 |GL Eri |035044.4-385855 |SRB | 6.88 | 7.11 | |Hp| | | | | |HIP HIP | +18048 |360195 |GM Eri |035126.5-400509 |SRB | 7.37 | 7.62 | |Hp| | | | | |HIP HIP | +18124 |360196 |GN Eri |035233.2-200730 |LB: | 8.71 | 8.82 | |Hp| | | | | |HIP HIP | +18318 |360197 |GO Eri |035458.6-145421 |LB: | 7.14 | 7.26 | |Hp| | | | | |HIP HIP | +18291 |360198 |GP Eri |035442.4-291426 |SRB: | 9.66 | 10.22 | |Hp| | | | | |HIP HIP | +18398 |360199 |GQ Eri |035559.5-294839 |LB: | 8.94 | 9.09 | |Hp| | | | | |HIP HIP | +18694 |360200 |GR Eri |040018.6-062303 |SRB: | 8.33 | 8.48 | |Hp| | | | | |HIP HIP | +18695 |360201 |GS Eri |040019.0-312644 |LB: | 8.58 | 8.72 | |Hp| | | | | |HIP HIP | +19062 |360202 |GT Eri |040506.4-311011 |EA | 8.57 | 9.14 | |Hp| | | | | |HIP HIP | +19398 |360203 |GU Eri |040917.8-162309 |LPB | 5.39 | 5.42 | |Hp| | | | | |HIP HIP | +19463 |360204 |GV Eri |041003.4-342952 |LB: | 7.21 | 7.37 | |Hp| | | | | |HIP HIP | +19571 |360205 |GW Eri |041136.2-202122 |EA | 5.84 | 6.01 | |Hp| | | | | |HIP HIP | +19700 |360206 |GX Eri |041312.5-035306 |SRB: | 7.51 | 7.62 | |Hp| | | | | |HIP HIP | +19725 |360207 |GY Eri |041338.1-010859 |LPB | 6.40 | 6.42 | |Hp| | | | | |HIP HIP | +20075 |360208 |GZ Eri |041816.1-204255 |LB | 5.94 | 6.10 | |Hp| | | | | |HIP HIP | +20806 |360209 |HH Eri |042731.9-170631 |EA | 8.50 | 8.85 | |Hp| | | | | |HIP HIP | +20903 |360210 |HI Eri |042850.6-145846 |LB: | 8.19 | 8.30 | |Hp| | | | | |HIP HIP | +20992 |360211 |HK Eri |043006.9-080310 |LB: | 9.74 | 9.91 | |Hp| | | | | |HIP HIP | +21050 |360212 |HL Eri |043045.1-071428 |EB | 8.56 | 8.60 | |Hp| | | | | |HIP HIP | +21080 |360213 |HM Eri |043105.2-361436 |SRB: | 8.24 | 8.42 | |Hp| | | | | |HIP HIP | +21241 |360214 |HN Eri |043324.9-235620 |EB | 8.66 | 8.97 | |Hp| | | | | |HIP HIP | +21563 |360215 |HO Eri |043744.5-312438 |LB: | 8.25 | 8.37 | |Hp| | | | | |HIP HIP | +21648 |360216 |HP Eri |043855.7-132048 |SRD: | 8.44 | 8.53 | |Hp| | | | | |HIP HIP | +21688 |360217 |HQ Eri |043922.8-302724 |LB: | 8.10 | 8.34 | |Hp| | | | | |HIP HIP | +21825 |360218 |HR Eri |044130.9-235835 |SRB | 7.33 | 7.50 | |Hp| | | | | |HIP HIP | +21894 |360219 |HS Eri |044222.6-005548 |DSCTC: | 6.79 | 6.86 | |Hp| | | | | |HIP HIP | +21959 |360220 |HT Eri |044310.3-153715 |LB: | 7.91 | 8.03 | |Hp| | | | | |HIP HIP | +22171 |360221 |HU Eri |044611.7-101320 |LB: | 9.05 | 9.19 | |Hp| | | | | |HIP HIP | +22326 |360222 |HV Eri *|044833.3-114508 |DSCTC: | 8.37 | 8.46 | |Hp| | | | | |HIP HIP | +22631 |360223 |HW Eri |045209.3-192347 |LB: | 9.31 | 9.45 | |Hp| | | | | |HIP HIP | +19383 |360228 |IK Eri |040907.8-162358 |GDOR | 8.14 | 8.16 | |V | | | | | |77035 DM | +13558 |360233 |IP Eri |025438.8-051951 |BY: | 7.32 |( 0.04 )| |V | | | | |K0IV+DA |78018 DM | +14157 |360235 |IR Eri |030232.7-151621 |RS | 8.45 |( 0.02 )| |V | | | 8.05 | |K0V |78018 DM | +14684 |360236 |IS Eri |030942.3-093447 |BY | 8.48 |( 0.06 )| |V | | | 5.41 | |G0V |78018 DM | +19938 |360238 |IU Eri |041636.0-100509 |DSCTC | 7.49 | 7.55 | |Hp| | | 0.0689 | |A2 |78024 DM | +22263 |360241 |IX Eri |044736.3-165604 |BY | 5.47 | 5.51 | |V | | | 11.3 | |G3V |78005 DM | +21955 |360249 |KP Eri *|044307.2-072442 |EA | 8.78 | 8.93 | 8.93 : |V |47908.707 | | 7.447126 |03 |A2 |79003 DM | +12953 |360254 |KU Eri *|024634.0-064207 |GDOR | 7.83 | 7.89 | |Hp| | | 2.136 | |F2V |80160 HIP | NL80_1 +7588 |369001 |alf Eri |013742.9-571412 |BE | 0.40 | 0.46 | |Hp| | | 1.263 | |B3Ve |78023 DM | +18543 |369003 |gam Eri *|035801.8-133031 |LB: | 2.88 | 2.96 | |V | | | | |M0III |04614 BD | +17378 |369004 |del Eri |034314.9-094548 |RS: | 3.51 | 3.56 | |V | | | | | |68123 BD | +16537 |369005 |eps Eri |033255.8-092730 |BY | 3.73 |( 0.05 )| |V | | | | | |72089 BD | +23972 |369011 |lam Eri *|050908.8-084515 |BCEP | 4.22 | 4.34 | |V | | | 0.701538 | |B2IVe |09212 BD | +22109 |369012 |mu. Eri *|044530.1-031517 |EA+LPB: | 4.00 |( 0.05 )| |V |52574.04 | | 7.380618 | |B5IV |80173 HIP | NL80_1 +21444 |369013 |nu. Eri *|043619.1-032109 |BCEP | 3.92 |( 0.14 )| |V |33629.277 | | 0.17790414 | |B2III |03857 BD | +17593 |369016 |pi. Eri |034608.5-120606 |LB: | 4.38 | 4.44 | |V | | | | |M2III |03712 BD | +11582 |370001 |R For |022915.3-260556 |M | 7.5 | 13.0 | |V |41974. | | 388.73 |52 |C4,3e(Ne) |00001 00002| +17600 |370002 |S For *|034613.2-242328 |CST: | 5.6 | 8.5 | |V | | | | |F8 | 08953| +12682 |370007 |X For |024257.8-260708 |SRB | 9.5 | 10.8 | |p | | | 76. : | |M3 |01485 00022| +16503 |370018 |RZ For |033226.7-253931 |SRA | 9.2 | 10.0 | |p |28075. | | 64.6 | |M5 |00016 08953| +9932 |370019 |SS For *|020752.0-265158 |RRAB | 9.45 | 10.60 | |V |38668.951 | | 0.495432 |17 |A3-G0 |05233 06286| +16321 |370024 |SX For |033022.4-360314 |RRAB | 10.68 | 11.38 | |V |39158.231 | | 0.6053397 |16 |F2-G2 |05233 06286| +11644 |370032 |TY For |023013.7-251111 |DSCTC | 6.49 | 6.51 | |V | | | 0.05 | |A9V |08462 CoD | +15092 |370033 |TZ For *|031440.1-353328 |EA/GS | 6.84 | 7.05 | |V |43216.558 | | | |G0III+G0III |08463 CoD | +8281 |370035 |UV For |014641.6-240050 |RS | 7.97 | 8.07 | |V | | | | | |69011 CoD | +12716 |370037 |UX For |024325.6-375543 |RS | 7.97 | 8.11 | |V | | | | | |69011 CoD | +12788 |370038 |UY For |024421.4-245105 |RS | 8.22 | 8.25 | |V | | | | | |69011 CoD | +8481 |370044 |VZ For |014919.7-351758 |SRB | 9.21 | 9.33 | |Hp| | | | | |HIP HIP | +8681 |370045 |WW For |015141.9-364818 |SRD | 9.25 | 9.49 | |Hp| | | | | |HIP HIP | +8698 |370046 |WX For |015154.1-312001 |LB | 8.79 | 9.04 | |Hp| | | | | |HIP HIP | +8749 |370047 |WY For |015235.2-263417 |E: | 9.91 | 10.09 | |Hp| | | | | |HIP HIP | +8781 |370048 |WZ For |015258.1-280444 |EA: | 9.35 | 9.73 | |Hp| | | | | |HIP HIP | +8953 |370049 |XX For |015518.4-354811 |SRB | 8.93 | 9.59 | |Hp| | | | | |HIP HIP | +9208 |370050 |XY For |015827.0-364854 |LB: | 9.47 | 9.86 | |Hp| | | | | |HIP HIP | +9443 |370051 |XZ For |020118.7-370452 |EW | 9.97 | 10.29 | |Hp| | | | | |HIP HIP | +10039 |370052 |YY For |020912.4-314833 |LB: | 7.81 | 7.92 | |Hp| | | | | |HIP HIP | +10191 |370053 |YZ For |021102.2-354015 |BY: | 10.01 | 10.20 | |Hp| | | | | |HIP HIP | +10841 |370054 |ZZ For |021933.4-251809 |LB: | 8.99 | 9.11 | |Hp| | | | | |HIP HIP | +10851 |370055 |AA For |021940.2-333711 |SRC | 7.89 | 8.06 | |Hp| | | | | |HIP HIP | +11677 |370056 |AB For |023037.3-311642 |LB: | 8.33 | 8.51 | |Hp| | | | | |HIP HIP | +11970 |370057 |AC For |023425.6-324306 |LB: | 8.49 | 8.59 | |Hp| | | | | |HIP HIP | +12163 |370058 |AD For |023646.2-354944 |SRB | 7.44 | 7.66 | |Hp| | | | | |HIP HIP | +14568 |370059 |AE For |030806.7-244535 |EA | 10.32 | 10.89 | |Hp| | | | | |HIP HIP | +14605 |370060 |AF For |030837.5-262647 |LB | 8.13 | 8.46 | |Hp| | | | | |HIP HIP | +14750 |370061 |AG For |031027.6-330259 |SRB | 7.84 | 7.97 | |Hp| | | | | |HIP HIP | +15324 |370062 |AH For |031740.4-385743 |LB: | 8.29 | 8.42 | |Hp| | | | | |HIP HIP | +15479 |370063 |AI For |031934.9-240722 |SRB: | 5.65 | 5.75 | |Hp| | | | | |HIP HIP | +16247 |370064 |AK For |032922.9-240603 |E: | 9.24 | 9.35 | |Hp| | | | | |HIP HIP | +16366 |370065 |AL For |033050.5-323020 |LB: | 8.97 | 9.09 | |Hp| | | | | |HIP HIP | +17373 |370066 |AM For |034310.0-310109 |SRB | 6.93 | 7.15 | |Hp| | | | | |HIP HIP | +17599 |370067 |AN For |034612.6-253155 |LB: | 8.79 | 8.95 | |Hp| | | | | |HIP HIP | +12694 |370068 |AO For |024303.6-310412 |BY: | 7.51 | 7.54 | |V | | | | | |75139 CoD | +10765 |370075 |AV For *|021833.7-294016 |EA | 8.63 | 8.72 | 8.65 |V |48674.823 | | 1.87970 |06 |F5V |79003 DM | +9677 |379013 |nu. For |020429.4-291749 |ACV | 4.68 | 4.73 | |V |43475.00 | | 1.89 | |B9.5p(Si) |04013 CoD | +34356 |380001 |R Gem *|070721.3+224213 |M | 6.0 | 14.0 | |V |43325. | | 369.91 |36 |S2,9e-S8,9e(Tc) |00001 00002| +35812 |380005 |V Gem *|072309.3+130605 |M | 7.8 | 14.9 | |V |42694. | | 274.8 |45 |M4(S)e-M8 |00001 00002| +31404 |380006 |W Gem *|063457.5+151950 |DCEP | 6.54 | 7.38 | |V |42755.191 | | 7.913779 |30 |F5-G1 |08632 08953| +32512 |380007 |X Gem |064707.0+301634 |M | 7.5 | 13.8 | |V |43553. | | 264.16 |49 |M5e-M8e(Tc:) |00001 00002| +37438 |380008 |Y Gem |074108.5+202544 |SRB | 10.4 | 12.3 | |p | | | 160. : | |M6e-M7 |01505 00100| +35667 |380010 |RR Gem *|072133.5+305300 |RRAB | 10.62 | 11.99 | |V |41357.205 | | 0.3973106 |13 |A9-F6 |08652 00101| +28537 |380015 |RW Gem *|060128.1+230828 |EA/SD: | 9.53 | 11.76 | 9.74 |V |18302.655 | | 2.8654972 |15 |B5V+F5 |07117 01509| +32791 |380016 |RX Gem *|065011.5+331421 |EA/DS | 9.20 | 10.81 | 9.28 |V |40555.782 | | 12.2086588 |09 |A3IIIea+K1: |07096 00102| +36209 |380017 |RY Gem *|072724.2+153935 |EA/DS | 8.69 | 11.04 | 8.75 |V |39732.6328 | | 9.300567 |10 |A2Ve+K2IV |09224 00102| +28625 |380018 |RZ Gem *|060236.6+221403 |DCEP | 9.49 | 10.46 | |V |42714.970 | | 5.529286 |22 |F5-F9 |08632 01509| +28472 |380022 |SV Gem |060041.0+242826 |EA/SD: | 10.55 | 12.0 | |V |18662.488 | | 4.0061216 |15 |B3 |00125 00279| +38561 |380026 |SZ Gem |075343.5+191624 |RRAB | 10.98 | 12.25 | |V |27194.027 | | 0.5011365 |12 |A0 |04957 01517| +29416 |380029 |TV Gem |061151.4+215206 |SRC | 8.54 | 9.8 | |B | | | | |K5.5-M1.3Iab | 03654| +32083 |380041 |VW Gem |064208.6+312718 |LB | 8.14 | 8.52 | |V | | | | |C5,4(Na) |00179 BD | +34859 |380042 |VX Gem |071249.0+143604 |M | 10.8 |< 15.1 | |p |41280. | | 379.4 | |C7,2e-C9,1e(Nep) |00001 02535| +29425 |380047 |WY Gem *|061156.3+231225 |LC+E: | 8.89 | 9.8 | |B | | | | |M2epIab+B2V-B3V |01505 08953| +28945 |380055 |AA Gem *|060634.9+261945 |DCEP | 9.36 | 10.11 | |V |37397.250 | | 11.30235 |47 |F6-G3Ib |01512 01509| +32180 |380058 |AD Gem |064307.5+205621 |DCEP | 9.45 | 10.23 | |V |41694.911 | | 3.787980 |28 |F5-G2: |08300 00321| +31361 |380080 |BB Gem *|063435.3+130445 |DCEP | 10.75 | 11.88 | |V |41839.695 | | 2.308207 |18 | |08300 01538| +30965 |380088 |BK Gem |062958.4+133655 |ISB: | 9.8 | 10.1 | |p | | | | |K5III |01251 BD | +35617 |380090 |BM Gem |072059.0+245958 |SRB | 11.5 | 12.1 | |p | | | 286. : | |C5,4J(Nb) |07213 BD | +37074 |380091 |BN Gem |073705.7+165415 |GCAS | 6.75 | 6.85 | |V | | | | |O8Vpe |00196 03654| +34909 |380094 |BQ Gem |071322.3+160932 |SRB | 6.63 | 7.02 | |B | | | 50. : | |M4IIIab |05429 03654| +29450 |380098 |BU Gem |061219.1+225431 |LC | 5.74 | 8.1 | |V | | | | |M1-M2Ia-Iab | 01509| +31349 |380118 |CR Gem |063423.9+160430 |LB | 10.9 | 12.10 | |B | | | | |C8,3e(N) |00911 BD | +31306 |380146 |DX Gem *|063354.6+142817 |DCEPS | 10.53 | 10.92 | |V |41866.668 | | 3.137486 |50 | |08637 00940| +32427 |380206 |GX Gem *|064609.1+342453 |EB/D: | 10.9 | 11.5 | 11.3 |p |25999.696 | | 1.35003708 | |G5 |01550 01550| +31108 |380224 |HX Gem |063139.7+160652 |LB: | 12.5 | 14. : | |p | | | | |C4,4(N) |04101 04101| +32740 |380236 |IS Gem |064941.3+323624 |SRC | 6.6 | 7.3 | |p | | | 47. : | |K3II |04113 04113| +29687 |380266 |LR Gem |061515.4+221804 |BCEP | 9.01 | 9.12 | |B | | | 0.23887 | |B0IV |05522 BD | +30046 |380269 |LU Gem |061919.3+232810 |BCEP | 7.21 | 7.24 | |B | | | 0.21909 | |B0II |05522 BD | +33929 |380291 |NP Gem |070225.5+174520 |LB: | 5.89 | 6.04 | |V | | | | |M1.5 |05841 BD | +36623 |380292 |NQ Gem *|073154.5+243013 |SR+ZAND | 7.4 | 7.99 | |V | | | 70. : | |C6,2(R9)eV |08460 BD | +31829 |380300 |NY Gem *|063917.8+223618 |SRB | 12.5 |< 15.5 | |p | | | 200. : | |C4-5,4(N) |08670 04101| +37521 |380301 |NZ Gem |074203.2+141231 |SR | 5.52 | 5.72 | |V | | | | |M3II-IIIS |06994 BD | +35933 |380307 |OT Gem |072427.6+153102 |GCAS | 6.0 | 6.44 | |V | | | | |B2III-Ve |04039 09235| +30630 |380308 |OU Gem |062610.3+184525 |BY | 6.76 |( 0.05 )| |V | | | | | |67436 BD | +32753 |380309 |OV Gem |064949.8+161210 |SXARI | 5.85 |( 0.10 )| |V | | | | | |68125 BD | +34038 |380317 |PS Gem |070339.6+104613 |SRD | 7.24 | 7.58 | |V | | | | | |73164 BD | +29225 |380319 |PU Gem |060944.0+230649 |ACYG | 5.78 | 5.82 | |Hp| | | | | |HIP HIP | +29589 |380320 |PV Gem |061408.9+235911 |DSCTC | 7.58 | 7.64 | |Hp| | | | | |HIP HIP | +29757 |380321 |PW Gem |061600.1+234700 |EA: | 9.14 | 9.49 | |Hp| | | | | |HIP HIP | +29840 |380322 |PX Gem |061658.7+234427 |ACYG | 6.33 | 6.38 | |Hp| | | | | |HIP HIP | +30452 |380323 |PY Gem |062403.9+252501 |BE | 8.40 | 8.53 | |Hp| | | | | |HIP HIP | +30722 |380324 |PZ Gem |062715.8+145321 |BE: | 6.60 | 6.65 | |Hp| | | | | |HIP HIP | +31236 |380325 |QQ Gem |063305.6+165656 |E: | 7.62 | 7.74 | |Hp| | | | | |HIP HIP | +31982 |380326 |QR Gem |064100.0+251925 |LB | 7.58 | 7.73 | |Hp| | | | | |HIP HIP | +32459 |380327 |QS Gem |064628.7+205037 |DSCT | 8.86 | 8.97 | |Hp| | | | | |HIP HIP | +32612 |380328 |QT Gem |064816.5+143533 |EB | 7.66 | 8.06 | |Hp| | | | | |HIP HIP | +32743 |380329 |QU Gem |064943.3+252904 |LB: | 6.88 | 7.06 | |Hp| | | | | |HIP HIP | +32776 |380330 |QV Gem |065002.2+120329 |LB: | 6.83 | 6.92 | |Hp| | | | | |HIP HIP | +32845 |380331 |QW Gem |065046.1+292711 |EW | 10.34 | 10.73 | |Hp| | | | | |HIP HIP | +33166 |380332 |QX Gem |065413.6+330009 |LPB: | 8.16 | 8.22 | |Hp| | | | | |HIP HIP | +33493 |380333 |QY Gem |065742.9+175407 |E: | 7.08 | 7.20 | |Hp| | | | | |HIP HIP | +33583 |380334 |QZ Gem |065838.5+172805 |SRB | 8.49 | 8.63 | |Hp| | | | | |HIP HIP | +33890 |380335 |V0335 Gem |070205.5+214753 |EA | 7.90 | 8.05 | |Hp| | | | | |HIP HIP | +33945 |380336 |V0336 Gem |070239.1+312024 |SRB | 7.84 | 8.04 | |Hp| | | | | |HIP HIP | +33944 |380337 |V0337 Gem |070238.3+134659 |EA: | 8.52 | 8.89 | |Hp| | | | | |HIP HIP | +34704 |380338 |V0338 Gem |071115.4+243950 |LB: | 7.95 | 8.06 | |Hp| | | | | |HIP HIP | +35428 |380339 |V0339 Gem |071851.5+290603 |E: | 8.94 | 9.31 | |Hp| | | | | |HIP HIP | +35664 |380340 |V0340 Gem |072132.8+260933 |BY: | 7.62 | 7.86 | |Hp| | | | | |HIP HIP | +36110 |380341 |V0341 Gem |072618.3+255716 |LB | 8.24 | 8.42 | |Hp| | | | | |HIP HIP | +36412 |380342 |V0342 Gem |072930.9+350950 |LB: | 7.31 | 7.38 | |Hp| | | | | |HIP HIP | +36386 |380343 |V0343 Gem |072918.2+224719 |SRB | 7.61 | 7.86 | |Hp| | | | | |HIP HIP | +36822 |380344 |V0344 Gem |073419.6+144511 |DSCTC | 8.07 | 8.10 | |Hp| | | | | |HIP HIP | +37197 |380345 |V0345 Gem *|073830.2+334242 |DSCTC: | 7.82 | 7.88 | |Hp| | | | | |HIP HIP | +37436 |380346 |V0346 Gem |074105.8+165224 |SRD: | 8.37 | 8.51 | |Hp| | | | | |HIP HIP | +37708 |380347 |V0347 Gem |074409.7+141024 |LB: | 7.28 | 7.39 | |Hp| | | | | |HIP HIP | +37775 |380348 |V0348 Gem |074444.9+322046 |E: | 8.50 | 8.58 | |Hp| | | | | |HIP HIP | +34995 |380356 |V0356 Gem |071426.6+244240 |ACV | 6.89 |( 0.04 u )| |V | | | | | |76069 DM | +34775 |380373 |V0373 Gem *|071155.3+232456 |EB | 9.26 | 9.42 | 9.39 |V |53343.769 | | 1.60498 | |F8 |78011 DM | +36357 |380376 |V0376 Gem |072901.8+315938 |BY | 7.73 |( 0.03 )| |V | | | 11.63 | |K2V |78018 DM | +38228 |380377 |V0377 Gem |074955.1+272148 |BY | 6.93 |( 0.05 )| |V | | | 6.46 | |G5IV |78005 DM | +35624 |380389 |V0389 Gem |072103.3+254008 |EA | 8.74 | 8.92 | 8.78 |V |48536.929 | | 1.04776 |13 |A2 |79006 DM | +38797 |380436 |V0436 Gem |075624.6+314144 |GDOR | 7.89 |( 0.06 )| |B | | | 0.7248 | |F2IV-V |80289 HIP | NL80_2 +34088 |389006 |zet Gem *|070406.5+203413 |DCEP | 3.62 | 4.18 | |V |43805.927 | | 10.15073 |50 |F7Ib-G3Ib |00001 06225| +29655 |389007 |eta Gem *|061452.7+223025 |SRA+EA | 3.15 | 3.9 | |V |37725. | | 232.9 |50 |M3IIIab |04513 06225| +30343 |389012 |mu. Gem *|062257.6+223049 |LB | 2.75 | 3.02 | |V | | | | |M3.0IIIab |06590 BD | +37629 |389018 |sig Gem *|074318.7+285301 |RS | 4.13 | 4.29 | |V |44677.1 | | 19.423 | |K1III |09239 BD | +33927 |389024 |ome Gem |070224.8+241256 |CEP: | 5.14 |( 0.086 )| |V | | | 0.7282 | |G5II |07964 BD | +110736|390002 |S Gru |222605.5-482619 |M | 6.0 | 15.0 | |V |40608. | | 401.51 |43 |M5e-M8IIIe |00001 00002| +110697|390003 |T Gru |222540.9-373409 |M | 7.8 | 12.3 | |p |42072. | | 136.49 |48 |M1Iae-M2Ibe |00001 00002| +112009|390006 |W Gru *|224118.7-435029 |EA/AR | 9.4 | 10.0 | 10.0 |p |30132.149 | | 2.9685036 |11 |F6IV+F6IV |09218 08953| +107231|390011 |RS Gru *|214304.2-481122 |DSCT | 7.92 | 8.51 | |V |34325.2931 | | 0.14701131 |24 |A6-A9IV-F0 |09220 08953| +112532|390051 |XZ Gru |224734.7-390333 |RRC | 10.4 | 10.7 | |p |38260.438 | | 0.34741 |50 | |04383 CoD | +110188|390076 |AW Gru *|221908.8-480206 |E: | 10.5 | 11.0 | |p |36758. | | 120. :/N| |M4III |08685 04001| +112750|390077 |AX Gru |225001.0-551403 |LB: | 7.0 |( 0.16 )| |V | | | | |M3III |04456 CoD | +110624|390088 |BK Gru |222437.6-390737 |ACV | 6.82 | 6.89 | |V | | | 2.48 | |A3p(Sr) |08375 CoD | +113711|390093 |BP Gru |230146.8-445027 |ACVO | 7.6 |( 0.004 )| |B | | | | | |67440 CoD | +108347|390103 |BZ Gru |215702.1-374449 |DSCTC | 6.13 | 6.21 | |V | | | | | |68079 CoD | +111833|390104 |CC Gru |223908.4-524131 |DSCTC | 6.62 | 6.68 | |V | | | | | |68079 CPD | +106077|390112 |CL Gru |212913.9-412457 |SRB | 8.61 | 8.82 | |Hp| | | | | |HIP HIP | +106652|390113 |CM Gru |213609.9-475719 |SRB | 8.55 | 8.86 | |Hp| | | | | |HIP HIP | +107745|390114 |CN Gru |214935.7-364149 |LB | 8.00 | 8.16 | |Hp| | | | | |HIP HIP | +108128|390115 |CO Gru |215422.2-411558 |SRB | 7.70 | 8.17 | |Hp| | | | | |HIP HIP | +108486|390116 |CP Gru |215837.8-454436 |EA | 7.73 | 8.09 | |Hp| | | | | |HIP HIP | +109594|390117 |CQ Gru |221202.3-430805 |LB: | 8.45 | 8.55 | |Hp| | | | | |HIP HIP | +109666|390118 |CR Gru |221256.2-555642 |LB | 7.20 | 7.32 | |Hp| | | | | |HIP HIP | +109901|390119 |CS Gru |221535.2-390051 |BY: | 9.45 | 9.56 | |Hp| | | | | |HIP HIP | +110703|390120 |CT Gru |222546.2-494933 |LB | 7.77 | 8.16 | |Hp| | | | | |HIP HIP | +111190|390121 |CU Gru |223133.3-532257 |LB: | 8.17 | 8.30 | |Hp| | | | | |HIP HIP | +111219|390122 |CV Gru |223158.4-433253 |LB: | 7.35 | 7.46 | |Hp| | | | | |HIP HIP | +111610|390123 |CW Gru |223639.0-481822 |SRB | 6.65 | 6.76 | |Hp| | | | | |HIP HIP | +111718|390124 |CX Gru |223747.7-395126 |ELL: | 6.66 | 6.71 | |Hp| | | | | |HIP HIP | +111771|390125 |CY Gru |223827.9-365342 |LB | 8.99 | 9.41 | |Hp| | | | | |HIP HIP | +111856|390126 |CZ Gru |223928.2-504053 |SRB | 7.74 | 7.93 | |Hp| | | | | |HIP HIP | +111989|390127 |DD Gru |224103.0-512732 |LB | 7.99 | 8.16 | |Hp| | | | | |HIP HIP | +112205|390128 |DE Gru |224330.2-400744 |LB | 7.38 | 7.58 | |Hp| | | | | |HIP HIP | +113442|390129 |DF Gru |225832.0-421717 |EA | 10.35 | 10.78 | |Hp| | | | | |HIP HIP | +113683|390130 |DG Gru |230130.7-543013 |BY: | 12.21 | 12.73 | |Hp| | | | | |HIP HIP | +113968|390131 |DH Gru |230451.5-495926 |BY: | 11.71 | 12.07 | |Hp| | | | | |HIP HIP | +114127|390132 |DI Gru |230648.0-384739 |E: | 8.78 | 8.85 | |Hp| | | | | |HIP HIP | +114217|390133 |DK Gru |230750.3-560836 |SRB: | 7.87 | 7.98 | |Hp| | | | | |HIP HIP | +114407|390134 |DL Gru |231009.7-403530 |LB | 5.86 | 5.98 | |Hp| | | | | |HIP HIP | +114736|390135 |DM Gru |231431.6-535729 |BY: | 11.06 | 11.27 | |Hp| | | | | |HIP HIP | +114946|390136 |DN Gru |231656.7-515144 |LB: | 8.32 | 8.42 | |Hp| | | | | |HIP HIP | +115392|390137 |DO Gru |232231.3-473113 |LB: | 8.32 | 8.47 | |Hp| | | | | |HIP HIP | +115647|390138 |DP Gru |232540.6-425359 |EA | 8.31 | 8.63 | |Hp| | | | | |HIP HIP | +115510|390139 |DQ Gru |232354.5-534831 |DSCTC: | 6.18 | 6.25 | |Hp| | | | | |76247 DM | +111411|390140 |DR Gru |223418.7-541753 |DSCTC | 7.44 | 7.51 | |Hp| | | 0.0666 | |A3IV |78037 DM | +109642|390144 |DV Gru *|221238.5-541727 |EA | 7.73 | 7.85 | 7.74 |V |48398.245 | | 4.818025 |05 |F8V |79001 DM | +112122|399002 |bet Gru |224240.0-465305 |LC: | 2.0 | 2.3 | |V | | | | |M3-5II-III |03712 03674| +82516 |400002 |S Her |165153.9+145631 |M | 6.4 | 13.8 | |V |45054. | | 307.28 |47 |M4,Se-M7.5,Se |00001 00002| +88923 |400003 |T Her *|180906.2+310116 |M | 6.8 | 13.7 | |V |45306. | | 164.98 |47 |M2.5e-M8e |00001 00002| +80488 |400004 |U Her *|162547.5+185333 |M | 6.4 | 13.4 | |V |44994. | | 406.10 |40 |M6.5e-M9.5e |00001 00002| +78574 |400007 |X Her *|160239.2+471425 |SRB | 7.5 | 8.6 | |p | | | 95.0 | |M6e |01466 00002| +81354 |400008 |Y Her |163651.6+070626 |CST: | 7.3 | | |p | | | | |B9 | 03384| +87965 |400009 |Z Her *|175807.0+150822 |EA/AR/RS | 7.30 | 8.18 | 8.18 |V |13086.3345 | | 3.9928077 |11 *|F4IV-V |08623 00097| +78721 |400010 |RR Her |160413.4+502957 |SRB | 8.8 | 13.5 | |B | | | 239.7 | |C5,7e-C8,1e(N0e) |01466 00097| +84948 |400011 |RS Her |172142.4+225516 |M | 7.0 | 13.0 | |V |45194. | | 219.70 |47 |M4e-M8: |00001 00002| +79233 |400013 |RU Her *|161014.5+250414 |M | 6.8 | 14.3 | |V |44899. | | 484.83 |43 |M6e-M9 |00001 00002| +90727 |400016 |RX Her *|183039.3+123640 |EA/DM | 7.28 | 7.87 | 7.74 |V |33170.398 | | 1.7785724 |13 |A0V+A0V |00001 00097| +81026 |400019 |SS Her |163255.5+065130 |M | 8.5 | 13.5 | |V |45209. | | 107.36 |48 |M0e-M5e |00001 00002| +77619 |400020 |ST Her |155046.6+482859 |SRB | 8.8 | 10.3 | |p | | | 148.0 | |M6-7IIIaS |01466 00097| +78994 |400024 |SX Her *|160727.3+245430 |SRD | 8.6 | 10.9 | |p |34218. | | 102.90 |46 |G3ep-K0(M3) |00001 00002| +83304 |400025 |SY Her *|170129.3+222839 |M | 8.4 | 14.0 | |p |45248. | | 116.91 |49 |M1e-M6e |00001 00002| +86430 |400026 |SZ Her *|173936.8+325647 |EA/SD | 9.86 | 11.87 | 10.10 |V |41864.30517 | | 0.81809828 |18 |F0V |08593 01738| +82710 |400027 |TT Her *|165423.0+165013 |EB/KE | 9.61 | 10.34 | 9.89 |V |39995.908 | | 0.91207546 | |A7V-F2V |00001 00110| +87681 |400030 |TW Her *|175431.2+302438 |RRAB | 10.52 | 11.83 | |V |21545.2340 | | 0.399600104 |13 |A4-F6 |03572 04449| +84670 |400031 |TX Her *|171836.5+415317 |EA/DM | 8.54 | 9.31 | 8.97 |V |40008.3643 | | 2.05980944 |08 *|A5+F0 |09242 08206| +81291 |400032 |TY Her |163611.7+131845 |CST: | 10.0 | | |p | | | | |M0 | BD | +81160 |400033 |TZ Her |163434.9+375944 |CST: | 9.1 | | |p | | | | |F5 | BD | +81272 |400034 |UU Her *|163557.3+375802 |SRD | 8.5 | 10.6 | |p |43651. | | 80.1 | |F2Ib-G0 |09243 00368| +84329 |400036 |UW Her |171424.5+362205 |SRB | 8.6 | 9.5 | |p | | | 103.6 | |M5e |09244 08953| +87643 |400037 |UX Her *|175407.9+165638 |EA/SD | 9.05 | 10.21 | 9.11 |V |39672.37853 | | 1.5488479 |15 *|A3V |08953 01745| +80853 |400042 |VX Her *|163040.8+182201 |RRAB | 9.89 | 11.21 | |V |21750.4827 | | 0.45537282 |14 |A4-F4 |03506 02166| +84233 |400044 |VZ Her *|171304.0+355843 |RRAB | 10.72 | 12.04 | |V |36788.898 | | 0.44032789 |13 |A6-F4 |07114 01747| +89018 |400051 |XZ Her |181003.6+180625 |M | 10.5 | 13.6 | |p |33887. | | 171.69 | |M0 |00001 00563| +90697 |400057 |AC Her *|183016.2+215201 |RVA | 6.85 | 9.0 | |V |35097.8 | | 75.01 | |F2pIb-K4e(C0,0) |09249 00368| +92414 |400058 |AD Her *|185000.3+204317 |EA/SD | 9.70 | 11.17 | 9.79 |V |39001.1348 | | 9.76657 |11 |A4V+K2 |08636 BD | +84293 |400064 |AK Her *|171357.8+162101 |EW/KW | 8.29 | 8.77 | 8.64 |V |42186.460 | | 0.42152201 | *|F2+F6 |00001 00110| +86080 |400067 |AN Her |173530.6+204242 |SRB | 10.1 | 10.9 | |p | | | 65. : | |M5 | 08953| +92452 |400069 |AP Her *|185027.7+155625 |CWA | 10.19 | 11.18 | |V |43745.347 | | 10.4156 |40 |F2Ib-II-G0 |09029 01762| +78417 |400071 |AR Her *|160032.2+465526 |RRAB | 10.59 | 11.63 | |V |41454.347 | | 0.470028 |20 |A7-F3 |00001 00323| +81506 |400072 |AS Her |163851.9+140358 |M | 9.9 | 15.3 | |p |40750. | | 269.14 |53 |M2e |00001 01763| +86131 |400073 |AT Her *|173608.8+445738 | | 11.2 | 12.25 | |B | | | | |K0V |09261 06929| +90312 |400076 |AW Her *|182538.7+181740 |EA/AR/RS | 9.65 | 11.0 | |V |25719.434 | | 8.800760 |07 |G0+K2 |08592 08953| +92067 |400080 |BB Her *|184554.1+122010 |DCEP | 9.76 | 10.46 | |V |42679.289 | | 7.507945 |32 |G5 |08632 00869| +80432 |400083 |BE Her |162505.0+291504 |SRB | 8.2 | 9.9 | |V | | | 71.6 | |M4 |08713 08953| +88242 |400089 |BL Her *|180109.2+191457 |CWB | 9.70 | 10.62 | |V |41841.289 | | 1.3074502 |26 |F0-F6II-III |08300 02215| +84027 |400124 |CX Her |171037.1+273530 |SRB | 10.7 | 12.1 | |p | | | 114. : | |M7 |01882 08953| +92708 |400132 |DI Her *|185326.2+241641 |EA/DM | 8.39 | 9.11 | 8.95 |V |42233.3476 | | 10.5501680 |04 *|B5V+B4V |09272 08953| +80903 |400147 |DY Her *|163117.9+115953 |DSCT | 10.15 | 10.66 | |V |33439.4865 | | 0.148631353 |28 |A7III-F4III |09100 00561| +92478 |400219 |HS Her *|185049.8+244312 |EA/DM | 8.50 | 8.97 | 8.63 |V |45160.434 | | 1.637435 |12 |B6III |00001 08953| +89669 |400234 |IQ Her *|181754.8+175853 |SRB | 6.99 | 7.47 | |V |30496. | | 75. |44 |M4 |03246 03729| +79349 |400265 |LQ Her |161138.0+232941 |LB: | 5.58 | 5.83 | |V | | | | |M4IIIa |05841 BD | +78539 |400267 |LS Her *|160203.8+172850 |RRC | 10.79 | 11.12 | |V |28004.947 | | 0.23080771 |40 |A5 |08811 01739| +88008 |400275 |MM Her *|175838.5+220847 |EA/AR/RS | 9.45 | 10.43 | 9.7 |V |31302.445 | | 7.960322 |05 *|G2-5 |08623 00279| +89141 |400292 |NQ Her *|181133.7+181927 |CST | 8.41 | | 8.4 |V | | | | |A0 |09291 00021| +87818 |400302 |OO Her |175621.3+310737 |LB | 10.2 | 10.8 | |p | | | | |M6 |00569 02365| +87850 |400303 |OP Her |175648.5+452103 |SRB | 5.85 | 6.73 | |V |41196. | | 120.5 | |M5IIb-IIIa(S) |08814 02379| +88397 |400308 |OU Her *|180302.0+282939 |LB | 11.1 | 11.6 | |p | | | | |M6 |01766 00832| +89039 |400321 |PW Her *|181024.1+332411 |EA/AR:/RS | 9.84 | 10.44 | 10.1 |V |44785.433 | | 2.8809877 |18 |K0IV-V |00001 02379| +87190 |400337 |V0337 Her |174847.2+454159 |SRB | 9.5 | 10.2 | |p | | | 280. : | |M8 |01778 02379| +87556 |400338 |V0338 Her *|175312.7+434623 |EA/SD | 10.07 | 11.15 | 10.13 |V |43691.123 | | 1.3057393 |17 *|F1V |00001 02379| +87747 |400441 |V0441 Her *|175525.2+260300 |SRD | 5.34 | 5.54 | |V | | | 68. : | |F2Ibe |09294 BD | +81815 |400449 |V0449 Her |164239.1+482424 |LB | 8.9 | 9.9 | |p | | | | |M6 |04197 02379| +83308 |400451 |V0451 Her *|170133.0+145659 |ACV | 6.26 | 6.34 | |V |37145.3 | | 6.0094 | |B9p(Cr-Eu) |09298 BD | +88832 |400529 |V0529 Her *|180759.0+421326 |SR | 10.5 | 11.4 | |p |36800. | | 400. | |M7-M10 |04216 04217| +92036 |400535 |V0535 Her |184535.6+215905 |ACV | 6.41 | 6.58 | |V |38543.8 | | 9.9750 |40 |B9p(Si-Sr-Cr) |08824 BD | +88820 |400566 |V0566 Her |180751.0+414309 |SRB | 8.6 | 9.26 | |p | | | 137. | |M4III |09244 03944| +81362 |400600 |V0600 Her *|163658.2+142831 |ELL+BCEP: | 7.03 |( 0.03 : )| |V | | | 5.20065 | |B0.5III |04189 BD | +84054 |400620 |V0620 Her |171103.2+241416 |DSCTC | 6.19 | 6.23 | |V | | | 0.0797 |48 |A8V |07015 BD | +86809 |400624 |V0624 Her *|174417.3+142436 |EA/DM | 6.18 | 6.36 | 6.35 |V |40321.0049 | | 3.894977 |10 *|A3m |06256 BD | +82172 |400636 |V0636 Her |164719.8+421420 |LB | 5.83 |( 0.20 )| |V | | | | |M4III-IIIa |05840 BD | +82321 |400637 |V0637 Her *|164914.2+455900 |ACV | 4.78 | 4.85 | |V | | | 3.8567 | |A3Vp(Sr-Cr-Eu) |09301 BD | +85302 |400640 |V0640 Her *|172554.4+165503 |LB | 5.98 | 6.21 | |V | | | | |M4IIIab |05841 BD | +85934 |400642 |V0642 Her |173342.8+145030 |SRB | 6.41 | 6.56 | |V | | | 12. : | |M4IIIa |06645 BD | +82798 |400644 |V0644 Her *|165516.0+133712 |DSCTC | 6.32 | 6.36 | |V | | | 0.11505449 |50 |F2IV |07015 BD | +82779 |400645 |V0645 Her *|165501.3+290220 |DSCT: | 7.30 |( 0.14 )| |V | | | | |A5 |06456 BD | +84794 |400647 |V0647 Her *|171954.2+263003 |UV | 12.2 | 12.99 | |B | | | | |M4eV |06864 07547| +85840 |400648 |V0648 Her |173225.2+262622 |DSCTC | 6.86 |( 0.04 )| |V | | | 0.29 : | |A7V |06456 BD | +82236 |400652 |V0652 Her *|164804.7+131543 |* | 10.50 | 10.61 | |V |42216.8050 | | 0.10800182 |30 |B1 |09302 BD | +84289 |400655 |V0655 Her *|171353.7+155703 |ACV: | 8.2 |( 0.02 )| |V |36005.007 | | 5.891 |49 |A7V |04203 BD | +84833 |400656 |V0656 Her |172018.9+180326 |LB: | 4.9 | 5.1 | |V | | | | |M2IIIab |06412 BD | +85503 |400657 |V0657 Her *|172824.3+155151 |LB: | 9.9 | 10.7 | |p | | | | |M7 |02609 BD | +89172 |400669 |V0669 Her |181154.2+312419 | | 6.62 |( 0.14 )| |B | | | | |M3III |01371 BD | +87280 |400744 |V0744 Her *|175003.3+482339 |GCAS | 6.65 | 6.94 | |V | | | | |B7Vne |09306 BD | +80548 |400746 |V0746 Her |162643.3+105926 |SR | 6.59 | 6.76 | |V | | | | |M4III |08225 BD | +88030 |400771 |V0771 Her *|175852.3+452834 |ACV | 6.44 | 6.52 | |V |41450.86 | | 0.517468 | |B9p(Si-Cr-Sr) |09308 BD | +88637 |400772 |V0772 Her *|180549.7+212645 |E | 6.9 |( 0.10 )| |V |43392.823 | | 0.879511 | |G2V |08482 BD | +81337 |400773 |V0773 Her |163642.9+152951 |ACV | 6.01 |( 0.03 )| |U |41459.05 | | 1.45876 |40 : |B9p(Si-Sr-Cr:) |09308 BD | +90959 |400774 |V0774 Her *|183317.8+221851 |UV | 9.45 : | 10.90 : | |B | | | | |K2 |08764 BD | +92919 |400775 |V0775 Her |185553.2+233324 |RS | 8.05 |( 0.12 )| |V |43677.520 | | 2.879395 | |K0V |08765 BD | +82216 |400776 |V0776 Her |164746.4+051448 |ACV | 5.21 | 5.27 | |V | | | | | |67134 BD | +84014 |400792 |V0792 Her |171025.6+485756 |EA/GS/RS | 8.5 |( 0.33 )| |V | | | | | |67449 BD | +86869 |400814 |V0814 Her |174455.5+500240 |SRD | 6.97 | 7.12 | |V | | | | | |67468 BD | +88848 |400815 |V0815 Her |180816.1+294128 |RS | 7.6 |( 0.1 )| |V | | | | | |67469 BD | +84680 |400818 |V0818 Her |171841.4+433633 |SRB | 9.80 | 11.2 | |B | | | | | |68334 BD | +84949 |400819 |V0819 Her |172143.6+395829 |EA/D+BY | 5.51 |( 0.12 )| |V | | | | | |68131 BD | +88331 |400820 |V0820 Her |180223.1+205001 |* | 5.17 | 5.19 | |B | | | | | |68132 BD | +92593 |400822 |V0822 Her |185201.9+135756 |EB/KE | 6.12 | 6.30 | |V | | | | | |68134 BD | +82526 |400823 |V0823 Her |165204.8+145827 |ACV | 6.40 |( 0.03 )| |U | | | | | |69128 BD | +86946 |400826 |V0826 Her |174558.5+391921 |ELL | 6.68 |( 0.028 )| |V | | | | | |69154 BD | +92934 |400828 |V0828 Her |185603.8+175943 |ACV | 6.15 |( 0.04 )| |U | | | | | |69128 BD | +87497 |400830 |V0830 Her |175239.7+294316 |DSCT: | 9.20 | 9.33 | |V | | | | | |70062 BD | +88528 |400831 |V0831 Her |180440.2+235631 |DSCTC: | 6.28 | 6.34 | |V | | | | | |70063 BD | +84291 |400832 |V0832 Her |171356.5+261051 |RS | 8.8 |( 0.04 )| |V | | | | | |71001 BD | +86579 |400834 |V0834 Her |174137.4+293556 |RS | 8.0 |( 0.10 )| |V | | | | | |71001 BD | +87746 |400835 |V0835 Her |175524.7+361120 |RS | 7.94 | 8.09 | |V | | | | | |71001 BD | +77986 |400839 |V0839 Her |155530.6+423358 |BE | 5.74 | 5.84 | |V | | | | | |72093 BD | +82959 |400841 |V0841 Her |165710.7+351712 |UV | 11.08 | 11.25 | |U | | | | | |72096 72096| +83921 |400873 |V0873 Her |170904.9+162744 |DSCT: | 8.4 |( 0.21 )| |V | | | | | |73171 BD | +88639 |400885 |V0885 Her |180550.3+212622 |BY | 10.62 |( 0.06 )| |V | | | | | |73176 BD | +91043 |400889 |V0889 Her |183420.1+184124 |BY | 7.39 |( 0.14 )| |V | | | | | |73005 BD | +79331 |400890 |V0890 Her |161127.3+234912 |LB: | 9.26 | 9.37 | |Hp| | | | | |HIP HIP | +79347 |400891 |V0891 Her |161137.7+415035 |LB: | 8.51 | 8.63 | |Hp| | | | | |HIP HIP | +79543 |400892 |V0892 Her |161352.3+162604 |SRB | 7.70 | 7.96 | |Hp| | | | | |HIP HIP | +80020 |400893 |V0893 Her |162004.1+451300 |RR: | 9.20 | 9.38 | |Hp| | | | | |HIP HIP | +80302 |400894 |V0894 Her |162335.7+210327 |SRD | 8.17 | 8.32 | |Hp| | | | | |HIP HIP | +80523 |400895 |V0895 Her |162617.9+230353 |SRB | 7.84 | 7.99 | |Hp| | | | | |HIP HIP | +80541 |400896 |V0896 Her |162638.2+374554 |LB: | 8.67 | 8.85 | |Hp| | | | | |HIP HIP | +80791 |400897 |V0897 Her |162946.7+074456 |SRD: | 6.88 | 7.12 | |Hp| | | | | |HIP HIP | +80876 |400898 |V0898 Her |163049.5+271848 |BY: | 11.87 | 12.19 | |Hp| | | | | |HIP HIP | +81191 |400899 |V0899 Her |163502.0+331248 |EW | 7.93 | 8.07 | |Hp| | | | | |HIP HIP | +81245 |400900 |V0900 Her |163536.7+211819 |LB: | 8.74 | 8.86 | |Hp| | | | | |HIP HIP | +81243 |400901 |V0901 Her |163533.7+262828 |SR: | 8.69 | 8.78 | |Hp| | | | | |HIP HIP | +81319 |400902 |V0902 Her |163631.7+360224 |LB: | 7.08 | 7.17 | |Hp| | | | | |HIP HIP | +81411 |400903 |V0903 Her |163737.7+222642 |SRB | 6.99 | 7.16 | |Hp| | | | | |HIP HIP | +81426 |400904 |V0904 Her |163749.0+270238 |LB: | 6.98 | 7.08 | |Hp| | | | | |HIP HIP | +81420 |400905 |V0905 Her |163746.0+423138 |LB: | 8.86 | 9.00 | |Hp| | | | | |HIP HIP | +81483 |400906 |V0906 Her |163832.5+485144 |LB | 6.52 | 6.65 | |Hp| | | | | |HIP HIP | +81622 |400907 |V0907 Her |164013.5+073734 |LB: | 8.38 | 8.48 | |Hp| | | | | |HIP HIP | +81694 |400908 |V0908 Her |164117.7+300636 |BY: | 10.14 | 11.95 | |Hp| | | | | |HIP HIP | +81855 |400909 |V0909 Her |164306.5+260325 |LB | 7.84 | 8.02 | |Hp| | | | | |HIP HIP | +81938 |400910 |V0910 Her |164416.9+314926 |LB: | 8.47 | 8.62 | |Hp| | | | | |HIP HIP | +81975 |400911 |V0911 Her |164444.7+323531 |LB: | 8.41 | 8.57 | |Hp| | | | | |HIP HIP | +81967 |400912 |V0912 Her |164440.1+383724 |SRD: | 8.69 | 8.79 | |Hp| | | | | |HIP HIP | +82029 |400913 |V0913 Her |164523.3+453723 |LB: | 8.45 | 8.56 | |Hp| | | | | |HIP HIP | +82050 |400914 |V0914 Her |164537.6+390902 |SRD | 8.48 | 8.69 | |Hp| | | | | |HIP HIP | +82103 |400915 |V0915 Her |164615.2+175019 |LB: | 8.32 | 8.44 | |Hp| | | | | |HIP HIP | +82123 |400916 |V0916 Her |164635.5+414732 |E: | 8.03 | 8.38 | |Hp| | | | | |HIP HIP | +82207 |400917 |V0917 Her |164739.3+141858 |LB: | 10.18 | 10.31 | |Hp| | | | | |HIP HIP | +82253 |400918 |V0918 Her |164824.2+170800 |EB | 7.40 | 7.51 | |Hp| | | | | |HIP HIP | +82346 |400919 |V0919 Her |164932.0+260206 |DSCTC | 8.42 | 8.46 | |Hp| | | | | |HIP HIP | +82390 |400920 |V0920 Her |165006.4+162944 |E: | 7.88 | 7.98 | |Hp| | | | | |HIP HIP | +82344 |400921 |V0921 Her |164931.2+470629 |EB | 9.45 | 9.80 | |Hp| | | | | |HIP HIP | +82387 |400922 |V0922 Her |165004.9+320012 |LB: | 10.58 | 10.73 | |Hp| | | | | |HIP HIP | +82428 |400923 |V0923 Her |165044.2+302409 |EB | 9.09 | 9.27 | |Hp| | | | | |HIP HIP | +82776 |400924 |V0924 Her |165500.5+461635 |SRB: | 7.78 | 7.95 | |Hp| | | | | |HIP HIP | +82825 |400925 |V0925 Her |165533.9+483639 |LB: | 9.57 | 9.72 | |Hp| | | | | |HIP HIP | +82920 |400926 |V0926 Her |165642.1+260405 |LB: | 9.27 | 9.39 | |Hp| | | | | |HIP HIP | +82883 |400927 |V0927 Her |165618.0+500736 |DSCT | 10.11 | 10.24 | |Hp| | | | | |HIP HIP | +83208 |400928 |V0928 Her |170018.4+261439 |LB: | 8.00 | 8.12 | |Hp| | | | | |HIP HIP | +83370 |400929 |V0929 Her |170221.2+400423 |DSCTC | 8.06 | 8.11 | |Hp| | | | | |HIP HIP | +83425 |400930 |V0930 Her |170305.5+174350 |BY: | 10.48 | 10.67 | |Hp| | | | | |HIP HIP | +83462 |400931 |V0931 Her |170330.2+352451 |LB: | 6.07 | 6.26 | |Hp| | | | | |HIP HIP | +83584 |400932 |V0932 Her |170459.9+390952 |LB | 9.61 | 10.03 | |Hp| | | | | |HIP HIP | +83713 |400933 |V0933 Her |170631.0+132625 |LB: | 9.26 | 9.37 | |Hp| | | | | |HIP HIP | +83714 |400934 |V0934 Her |170634.5+235819 |SRB: | 7.62 | 7.78 | |Hp| | | | | |HIP HIP | +83814 |400935 |V0935 Her |170745.6+243501 |EB | 8.44 | 8.64 | |Hp| | | | | |HIP HIP | +83868 |400936 |V0936 Her |170825.3+202119 |LB: | 8.94 | 9.08 | |Hp| | | | | |HIP HIP | +83904 |400937 |V0937 Her |170853.9+395347 |LB: | 9.53 | 9.65 | |Hp| | | | | |HIP HIP | +84016 |400938 |V0938 Her |171026.5+291003 |SRB: | 7.89 | 7.98 | |Hp| | | | | |HIP HIP | +84004 |400939 |V0939 Her |171018.5+404124 |LB | 7.24 | 8.02 | |Hp| | | | | |HIP HIP | +84038 |400940 |V0940 Her |171046.0+492049 |SRD | 7.44 | 7.93 | |Hp| | | | | |HIP HIP | +84191 |400941 |V0941 Her |171235.8+473120 |LB: | 10.10 | 10.24 | |Hp| | | | | |HIP HIP | +84385 |400942 |V0942 Her |171507.9+174806 |LB | 7.18 | 7.30 | |Hp| | | | | |HIP HIP | +84504 |400943 |V0943 Her |171632.8+274100 |LB: | 8.69 | 8.85 | |Hp| | | | | |HIP HIP | +84596 |400944 |V0944 Her |171734.6+285448 |LB | 6.88 | 7.02 | |Hp| | | | | |HIP HIP | +84726 |400945 |V0945 Her |171908.4+303757 |LB | 10.41 | 10.75 | |Hp| | | | | |HIP HIP | +84752 |400946 |V0946 Her *|171927.1+330510 |BY: | 10.86 | 11.52 | |Hp| | | | | |HIP HIP | +84775 |400947 |V0947 Her |171942.9+391724 |LB: | 7.79 | 7.93 | |Hp| | | | | |HIP HIP | +85057 |400948 |V0948 Her |172257.7+292043 |EA | 9.02 | 9.31 | |Hp| | | | | |HIP HIP | +85065 |400949 |V0949 Her |172305.3+252535 |SRB | 8.78 | 9.28 | |Hp| | | | | |HIP HIP | +85252 |400950 |V0950 Her |172514.9+195515 |LB: | 8.60 | 8.70 | |Hp| | | | | |HIP HIP | +85344 |400951 |V0951 Her |172623.3+220635 |LB: | 8.84 | 8.95 | |Hp| | | | | |HIP HIP | +85510 |400952 |V0952 Her |172829.9+500950 |LB: | 8.65 | 8.77 | |Hp| | | | | |HIP HIP | +85644 |400953 |V0953 Her |173007.5+471605 |LB: | 9.16 | 9.27 | |Hp| | | | | |HIP HIP | +85672 |400954 |V0954 Her |173028.5+400803 |LB: | 9.09 | 9.23 | |Hp| | | | | |HIP HIP | +85904 |400955 |V0955 Her |173317.0+414706 |LB: | 9.86 | 10.07 | |Hp| | | | | |HIP HIP | +86000 |400956 |V0956 Her |173437.7+275922 |LB: | 8.57 | 8.72 | |Hp| | | | | |HIP HIP | +85992 |400957 |V0957 Her |173430.4+433003 |LB | 8.14 | 8.37 | |Hp| | | | | |HIP HIP | +86073 |400958 |V0958 Her |173528.1+310355 |LB: | 9.64 | 9.84 | |Hp| | | | | |HIP HIP | +86153 |400959 |V0959 Her |173621.4+273400 |SRC | 6.33 | 6.51 | |Hp| | | | | |HIP HIP | +86392 |400960 |V0960 Her |173909.5+315310 |SRD | 7.51 | 7.60 | |Hp| | | | | |HIP HIP | +86439 |400961 |V0961 Her |173942.1+163336 |SRB | 8.99 | 9.33 | |Hp| | | | | |HIP HIP | +86395 |400962 |V0962 Her |173913.4+460918 |SRB: | 7.93 | 8.24 | |Hp| | | | | |HIP HIP | +86588 |400963 |V0963 Her |174144.5+395911 |LB | 9.15 | 9.47 | |Hp| | | | | |HIP HIP | +86710 |400964 |V0964 Her |174302.0+174045 |LB | 8.09 | 8.25 | |Hp| | | | | |HIP HIP | +86709 |400965 |V0965 Her |174301.3+293911 |SRC: | 7.02 | 7.15 | |Hp| | | | | |HIP HIP | +86711 |400966 |V0966 Her |174303.5+373411 |DSCTC | 8.01 | 8.11 | |Hp| | | | | |HIP HIP | +86846 |400967 |V0967 Her |174442.0+350623 |LB: | 9.25 | 9.36 | |Hp| | | | | |HIP HIP | +87114 |400968 |V0968 Her |174756.7+363319 |LB | 6.47 | 6.66 | |Hp| | | | | |HIP HIP | +87245 |400969 |V0969 Her |174934.3+203814 |LB: | 7.51 | 7.55 | |Hp| | | | | |HIP HIP | +87446 |400970 |V0970 Her |175205.0+335439 |LB: | 8.37 | 8.48 | |Hp| | | | | |HIP HIP | +87908 |400971 |V0971 Her |175724.2+334734 |SRB | 8.20 | 8.52 | |Hp| | | | | |HIP HIP | +87958 |400972 |V0972 Her |175805.0+323853 |EW | 6.73 | 6.80 | |Hp| | | | | |HIP HIP | +88067 |400973 |V0973 Her *|175911.5+185236 |SRB: | 9.04 | 9.47 | |Hp| | | | | |HIP HIP | +88172 |400974 |V0974 Her |180027.7+193021 |BE | 6.38 | 6.45 | |Hp| | | | | |HIP HIP | +88181 |400975 |V0975 Her |180031.4+170612 |LB | 7.31 | 7.52 | |Hp| | | | | |HIP HIP | +88308 |400976 |V0976 Her |180202.2+293336 |LB: | 9.44 | 9.58 | |Hp| | | | | |HIP HIP | +88394 |400977 |V0977 Her |180300.4+150009 |LB | 7.62 | 7.79 | |Hp| | | | | |HIP HIP | +88434 |400978 |V0978 Her |180320.6+193321 |LB | 6.82 | 6.97 | |Hp| | | | | |HIP HIP | +88537 |400979 |V0979 Her |180445.2+235312 |DSCTC | 8.52 | 8.58 | |Hp| | | | | |HIP HIP | +88563 |400980 |V0980 Her |180500.4+165536 |LB | 6.96 | 7.06 | |Hp| | | | | |HIP HIP | +88769 |400981 |V0981 Her |180720.7+151405 |LB: | 7.24 | 7.34 | |Hp| | | | | |HIP HIP | +88722 |400982 |V0982 Her |180647.5+432707 |LB | 6.99 | 7.38 | |Hp| | | | | |HIP HIP | +88761 |400983 |V0983 Her |180711.5+344931 |LB | 7.29 | 7.40 | |Hp| | | | | |HIP HIP | +88823 |400984 |V0984 Her |180752.8+450253 |LB: | 9.56 | 9.67 | |Hp| | | | | |HIP HIP | +89132 |400985 |V0985 Her |181125.2+205709 |LB: | 9.17 | 9.36 | |Hp| | | | | |HIP HIP | +89142 |400986 |V0986 Her |181134.2+473935 |LB: | 8.00 | 8.10 | |Hp| | | | | |HIP HIP | +89271 |400987 |V0987 Her |181301.1+365802 |LB | 9.82 | 10.07 | |Hp| | | | | |HIP HIP | +89862 |400988 |V0988 Her |182018.2+210425 |EA | 7.71 | 7.90 | |Hp| | | | | |HIP HIP | +89999 |400989 |V0989 Her |182148.5+213028 |LPB | 6.79 | 6.82 | |Hp| | | | | |HIP HIP | +90338 |400990 |V0990 Her |182556.7+213621 |EA: | 7.72 | 7.96 | |Hp| | | | | |HIP HIP | +90417 |400991 |V0991 Her |182655.6+150906 |SRD: | 9.33 | 9.98 | |Hp| | | | | |HIP HIP | +90420 |400992 |V0992 Her |182657.0+174403 |SRD | 8.93 | 9.10 | |Hp| | | | | |HIP HIP | +90409 |400993 |V0993 Her |182650.5+233017 |LB: | 9.80 | 9.94 | |Hp| | | | | |HIP HIP | +90483 |400994 |V0994 Her *|182745.9+244151 |EA | 6.93 | 7.24 | |Hp| | | | | |HIP HIP | +90770 |400995 |V0995 Her |183109.7+250948 |LB: | 7.76 | 7.87 | |Hp| | | | | |HIP HIP | +90803 |400996 |V0996 Her |183125.1+141721 |LB: | 9.80 | 9.97 | |Hp| | | | | |HIP HIP | +91071 |400997 |V0997 Her |183434.9+151346 |SRB | 8.05 | 8.22 | |Hp| | | | | |HIP HIP | +91140 |400998 |V0998 Her |183531.2+210427 |E: | 9.02 | 9.15 | |Hp| | | | | |HIP HIP | +91422 |400999 |V0999 Her |183841.3+175254 |LB: | 8.89 | 9.14 | |Hp| | | | | |HIP HIP | +91970 |401000 |V1000 Her |184445.9+142537 |SRD | 9.20 | 9.42 | |Hp| | | | | |HIP HIP | +92237 |401001 |V1001 Her |184753.8+244744 |LB | 9.53 | 9.94 | |Hp| | | | | |HIP HIP | +92374 |401002 |V1002 Her |184930.1+181114 |EA | 8.99 | 9.14 | |Hp| | | | | |HIP HIP | +92699 |401003 |V1003 Her |185317.5+211333 |DSCTC: | 9.81 | 9.90 | |Hp| | | | | |HIP HIP | +89972 |401017 |V1017 Her |182126.1+181026 |EA | 10.29 | 10.47 | |V | | | | | |76176 DM | +81633 |401082 |V1082 Her |164035.1+490959 |BY | 9.00 |( 0.02 )| |V | | | 23. : | |K2V |78018 DM | +82042 |401085 |V1085 Her |164532.3+334948 |BY | 9.45 |( 0.01 )| |V | | | 13.65 : | |K5V |78018 DM | +83006 |401089 |V1089 Her |165742.2+472144 |BY | 7.93 |( 0.03 )| |V | | | 15.39 | |K0V |78018 DM | +83020 |401090 |V1090 Her |165753.2+472200 |BY | 7.76 |( 0.02 )| |V | | | 7.22 : | |K0V |78018 DM | +92372 |401109 |V1109 Her |184929.4+120841 |EB | 9.30 | 9.57 | |V |52760.834 | | 2.59849 | |B9 |78011 DM | +92449 |401110 |V1110 Her |185024.5+240624 |BY | 7.0 |( 0.02 )| |V | | | 11.7 | |K5 |78018 DM | +90919 |401136 |V1136 Her |183247.9+244045 |GDOR | 8.07 |( 0.06 )| |B | | | 1.0044 | |F2IV |79219 DM | +84345 |409001 |alf Her *|171438.9+142325 |SRC | 2.74 | 4.0 | |V | | | | |M5Ib-II | 08953| +80170 |409003 |gam Her |162155.2+190911 |SRD: | 4.02 |( 0.09 )| |B | | | | | |71140 BD | +86414 |409009 |iot Her |173927.9+460023 |BCEP | 2.93 |( 0.02 )| |U | | | | | |69161 BD | +87998 |409013 |nu. Her *|175830.1+301121 |SRD: | 4.38 | 4.48 | |V | | | 29. : | |F2II |04044 BD | +87933 |409014 |ksi Her |175745.9+291452 |SRD | 3.85 | 3.88 | |Hp| | | | | |HIP HIP | +88794 |409015 |omi Her *|180732.5+284545 |GCAS | 3.80 |( 0.07 )| |B | | | | |B9Ve | BD | +79101 |409016 |phi Her *|160846.2+445606 |ACV: | 4.22 | 4.23 | |Hp| | | | | |HIP HIP | +79992 |409019 |tau Her |161944.4+461848 |LPB | 3.83 | 3.86 | |Hp| | | | | |HIP HIP | +80463 |409024 |ome Her *|162524.9+140200 |ACV | 4.57 |( 0.08 )| |V |41254.70 | | 2.951 | |B9p(Cr-Mn-Sr) |07805 BD | +80704 |409107 |g Her *|162838.5+415254 |SRB | 4.3 | 6.3 | |V | | | 89.2 | |M6III | 00002| +13502 |410001 |R Hor *|025352.8-495323 |M | 4.7 | 14.3 | |V |41494. | | 407.6 |40 |M5e-M8eII-III |00001 00002| +14042 |410003 |T Hor |030052.1-503832 |M | 7.2 | 13.7 | |V |41957. | | 217.60 |48 |M5IIe |00001 00002| +14229 |410005 |V Hor *|030328.4-585559 |SRB | 8.7 | 9.8 | |p | | | | |M5III |01486 03389| +14488 |410026 |SZ Hor *|030701.2-560805 |EW/KW | 10.4 : | 10.8 : | 10.7 : |p |28048.610 | | 0.4804562 | | |05433 CPD | +16339 |410028 |TU Hor *|033037.0-472231 |ELL | 5.90 | 6.04 | 6.03 |V |43055.620 | | 0.935971 | |A2V+K |04429 CoD | +11648 |410029 |TV Hor |023015.6-574834 |SRB | 6.74 | 6.89 | |V | | | 30. : | |M4-5III |06351 CoD | +14930 |410030 |TW Hor |031233.2-571918 |SRB | 5.52 | 5.95 | |V | | | 158. : | |C7,2(N0) |07296 CoD | +11293 |410033 |TZ Hor |022526.4-662939 |LB: | 6.41 |( 0.11 )| |V | | | | |M5III |04614 CPD | +13359 |410044 |VZ Hor |025153.0-613705 |BY | 8.75 | 8.88 | |V | | | | | |68135 CPD | +17889 |410046 |WX Hor |034935.8-520448 |SRA | 7.14 | 7.88 | |V | | | | | |71030 71230| +11934 |410047 |WY Hor |023401.1-653634 |EW | 9.55 | 9.70 | |Hp| | | | | |HIP HIP | +13074 |410048 |WZ Hor |024801.1-625751 |EA: | 8.14 | 8.46 | |Hp| | | | | |HIP HIP | +13101 |410049 |XX Hor |024826.4-602453 |LB: | 8.99 | 9.09 | |Hp| | | | | |HIP HIP | +13185 |410050 |XY Hor |024940.9-524531 |SRB | 7.72 | 7.98 | |Hp| | | | | |HIP HIP | +13575 |410051 |XZ Hor |025452.7-515713 |LB: | 8.73 | 8.91 | |Hp| | | | | |HIP HIP | +14238 |410052 |YY Hor |030336.5-653143 |SRB | 8.00 | 8.18 | |Hp| | | | | |HIP HIP | +14656 |410053 |YZ Hor |030922.1-485746 |ACV: | 8.16 | 8.30 | |Hp| | | | | |HIP HIP | +15186 |410054 |ZZ Hor |031544.4-453227 |LB: | 9.01 | 9.11 | |Hp| | | | | |HIP HIP | +15316 |410055 |AA Hor |031737.2-461206 |LB: | 8.69 | 8.79 | |Hp| | | | | |HIP HIP | +15757 |410056 |AB Hor |032302.9-513317 |LB: | 8.11 | 8.22 | |Hp| | | | | |HIP HIP | +16070 |410057 |AC Hor |032659.3-533351 |LB: | 9.02 | 9.19 | |Hp| | | | | |HIP HIP | +16772 |410058 |AD Hor |033549.8-434259 |DSCTC | 7.03 | 7.11 | |Hp| | | | | |HIP HIP | +19380 |410059 |AE Hor |040906.7-482834 |EA | 8.56 | 8.87 | |Hp| | | | | |HIP HIP | +65835 |420001 |R Hya *|132942.8-231653 |M | 3.5 | 10.9 | |V |43596. | | 388.87 |49 |M6e-M9eS(Tc) |00001 00002| +43653 |420002 |S Hya |085334.0+030407 |M | 7.2 | 13.3 | |V |43509. | | 256.63 |49 |M4e-M8.0e |00001 00002| +43835 |420003 |T Hya *|085539.8-090829 |M | 6.7 | 13.48 | |V |41975. | | 298.7 |49 |M3e-M9:e |00001 00002| +52009 |420004 |U Hya |103733.3-132304 |SRB | 7.0 | 9.4 | |B | | | 450. : | |C6.5,3(N2)(Tc) |03610 03610| +53085 |420005 |V Hya *|105137.3-211500 |SRA | 10.9 | 16. | |p |30920. | | 530.7 |50 |C6,3e-C7,5e(N6e) |09247 00002| +67419 |420006 |W Hya *|134902.0-282204 |SRA | 7.7 | 11.6 | |p |43271. | | 361. |50 |M7.5e-M9ep |00001 08953| +47066 |420007 |X Hya *|093530.3-144129 |M | 7.2 | 13.6 | |V |41060. | | 301.10 |42 |M7e-M8.5e |00001 00002| +48327 |420008 |Y Hya *|095103.7-230102 |SRB | 8.3 | 12.0 | |p | | | 302.8 | |C5,4(N3p) |00693 05151| +41664 |420012 |RT Hya *|082941.1-061908 |SRB | 7.0 | 10.2 | |V | | | 290. |46 |M6e-M8e |03616 00002| +69346 |420013 |RU Hya *|141134.4-285307 |M | 7.2 | 14.3 | |V |43162. | | 331.5 |35 |M6e-M8.8e |00001 00002| +42489 |420014 |RV Hya |083943.8-093513 |SRC | 8.7 | 10.0 | |p | | | 116. | |M5II |00374 08953| +44632 |420016 |RX Hya *|090541.2-081540 |EA/SD | 8.9 | 11.6 |( 0.05 )|V |43447.700 | | 2.2816450 |13 |A8 |09254 00462| +65896 |420019 |SS Hya *|133029.5-233858 |EA: | 7.88 | 8.1 | |B | | | | |B9 |00018 BD | +61031 |420022 |SV Hya *|123030.5-260251 |RRAB | 9.78 | 11.00 | |V |39318.319 | | 0.47854395 |15 |F0-F8 |00001 01786| +67064 |420024 |SX Hya *|134437.4-264648 |EA/SD | 8.6 | 12.6 | |p |44344.451 | | 2.895737 |11 |A3+K5: |00001 08953| +45292 |420026 |SZ Hya *|091348.8-091909 |RRAB | 10.44 | 11.84 | |V |40679.412 | | 0.53724022 |15 |A7 |06557 00182| +54807 |420027 |TT Hya *|111312.5-262754 |EA/SD | 7.25 | 9.02 | 7.32 |V |43918.1060 | | 6.95342913 |11 |A5IIIe+G5IV |09127 03628| +66433 |420029 |TV Hya |133710.6-233658 |E: | 8.0 | 8.2 | |p | | | | |A3 |00018 BD | +53911 |420030 |TW Hya |110151.9-344217 |S: | 10.5 | 12.2 | |p | | | | | |00016 HIP | +47904 |420042 |VX Hya *|094546.9-120014 |DSCT: | 10.21 | 10.96 | |V | | | 0.2233889 | |F2Ib-F8 |03630 00975| +41834 |420044 |VZ Hya *|083141.4-061908 |EA/DM | 8.96 | 9.68 | 9.46 |V |40254.8607 | | 2.9042998 |07 *|F5V+F5V |05691 08953| +50073 |420048 |WZ Hya *|101324.1-130817 |RRAB | 10.27 | 11.28 | |V |39627.363 | | 0.537715 |16 |A2 |05233 06286| +42502 |420064 |AK Hya |083953.5-171811 |SRB | 6.33 | 6.91 | |V | | |( 75. :) | |M4III |08837 08953| +55347 |420088 |BK Hya |112003.1-351524 |LB | 10.4 | 11.4 | |p | | | | |K5 |00076 06286| +40186 |420127 |DD Hya *|081231.8+025005 |RRAB | 11.5 | 12.5 | |p |41695.504 | | 0.501776 |12 |A-F |04957 01432| +57009 |420136 |DN Hya |114116.7-334233 |M | 11.4 | 14.4 | |p |28190. | | 182.4 | |Me |00066 02385| +43063 |420168 |EY Hya *|084621.2+013756 |SRA | 9.6 | 12.0 | |p |32707. | | 182.7 | |M7 |04027 08953| +41437 |420171 |FG Hya *|082703.9+033052 |EW/KW | 9.90 | 10.28 | 10.25 |V |44968.2764 | | 0.327832 | |G0 |00001 00182| +41201 |420174 |FK Hya |082427.9-083113 |LB | 8.9 | 10.2 | |p | | | | |MB |01792 08953| +41751 |420193 |GK Hya *|083049.3+021627 |EA/DM/RS | 9.35 | 9.91 | 9.57 |V |14968.863 | | 3.587052 |10 |G4V |08623 08953| +40766 |420217 |HQ Hya |081915.1-100957 |DSCTC | 6.29 | 6.33 | |V | | | 0.0755 | |F3IIIp |07015 BD | +50966 |420219 |HS Hya *|102436.8-190533 |EA/D | 8.07 | 8.61 | 8.55 |V |41374.5954 | | 1.5680420 |10 *|F3+F4 |00001 08953| +42146 |420222 |HV Hya |083528.2-075856 |ACV | 5.66 | 5.76 | |V |40619.8 | | 5.57 | |A2p(Sr-Cr-Eu) |06066 BD | +57613 |420227 |II Hya |114845.1-264459 |SRB | 4.85 | 5.12 | |V |40684. | | 61. | |M4III |05828 CoD | +58907 |420228 |IK Hya *|120447.3-274043 |RR | 9.96 | 10.42 | |V |38461.510 | | 0.65 | |A2: |09271 08953| +46159 |420229 |IL Hya |092449.0-234935 |RS | 7.45 | 7.95 | |V |44662.355 | | 12.86833 | |K1III |09237 08953| +45824 |420231 |IN Hya |092036.7+001054 |SRB | 6.27 | 6.87 | |V | | | 65. : | |M4III |08225 BD | +49610 |420232 |IO Hya |100732.2-222923 |SRB | 6.87 | 7.02 | |V | | | 80. : | |M4III |06645 BD | +45266 |420234 |IQ Hya |091331.9-232331 |M | 5.0 | 6.2 | |I | | | | |C3,2(Ne) |07465 07465| +45999 |420254 |KU Hya *|092250.9-095020 |ACV | 6.51 | 6.53 | |V |41799.78 | | 33.97 |50 |A3Vp(Sr-Cr-Eu) |08934 BD | +45184 |420256 |KW Hya *|091226.0-070635 |EA/DM | 6.11 | 6.58 | 6.35 |V | | | 7.750 | |A3mIII:+A0V: |09246 BD | +43305 |420257 |KX Hya |084921.7-032635 |ACV | 5.31 |( 0.02 )| |V | | | 6. | |B9p(Hg-Mn) |07968 BD | +41375 |420261 |LM Hya |082627.2-035915 |DSCTC | 5.80 |( 0.006 )| |B | | | | | |67473 BD | +63159 |420262 |LN Hya |125630.1-262737 |SRD | 6.57 | 6.90 | |V | | | | | |67098 CoD | +41564 |420263 |LO Hya |082829.1-023102 |EA/DM | 6.37 | 6.61 | |V | | | | | |68137 BD | +46816 |420265 |LQ Hya |093225.6-111105 |BY | 7.79 | 7.86 | |V | | | | | |68135 BD | +51884 |420266 |LR Hya |103602.2-115448 |BY | 8.03 | 8.05 | |V | | | | | |68138 BD | +55292 |420267 |LS Hya |111925.9-301923 |ACV | 7.87 | 8.00 | |V | | | | | |68148 CoD | +41274 |420269 |LU Hya |082514.1-071013 |RS | 7.34 | 7.39 | |V | | | | | |69011 BD | +58272 |420270 |LV Hya |115703.8-331856 |ACV: | 6.20 |( 0.03 )| |V | | | | | |69140 CoD | +62905 |420271 |LW Hya |125332.8-225223 |R: | 9.56 | 9.63 | |V | | | | | |69169 69166| +45658 |420272 |LX Hya |091825.0-202216 |ACVO | 7.79 | 7.82 | |V | | | | | |71090 BD | +62788 |420277 |MO Hya |125157.9-264418 |DSCTC | 6.15 |( 0.06 v )| |V | | | | | |73179 CoD | +70972 |420278 |MP Hya |143100.7-251854 |DSCTC | 7.9 |( 0.02 )| |B | | | | | |73180 CoD | +40689 |420279 |MQ Hya |081823.0+055818 |SRD | 8.52 | 8.69 | |Hp| | | | | |HIP HIP | +40750 |420280 |MR Hya |081907.4-020448 |SRB | 9.00 | 9.18 | |Hp| | | | | |HIP HIP | +40763 |420281 |MS Hya |081914.4-073329 |SRD | 6.99 | 7.09 | |Hp| | | | | |HIP HIP | +40892 |420282 |MT Hya |082041.4+051122 |SRB | 9.83 | 10.15 | |Hp| | | | | |HIP HIP | +42013 |420283 |MU Hya |083346.8-095953 |SRB | 7.45 | 7.62 | |Hp| | | | | |HIP HIP | +42674 |420284 |MV Hya |084150.3-053639 |SRB | 7.74 | 7.86 | |Hp| | | | | |HIP HIP | +42700 |420285 |MW Hya |084209.4-030300 |LB | 7.26 | 7.49 | |Hp| | | | | |HIP HIP | +42951 |420286 |MX Hya |084520.8-023604 |EA | 6.52 | 7.01 | |Hp| | | | | |HIP HIP | +43039 |420287 |MY Hya |084609.6-104948 |LB | 6.57 | 6.90 | |Hp| | | | | |HIP HIP | +43308 |420288 |MZ Hya |084922.1-075631 |SRB | 8.84 | 9.03 | |Hp| | | | | |HIP HIP | +43746 |420289 |NN Hya |085438.2-112239 |LB: | 6.65 | 6.76 | |Hp| | | | | |HIP HIP | +44123 |420290 |NO Hya |085909.9+000612 |SRB: | 9.57 | 9.79 | |Hp| | | | | |HIP HIP | +44359 |420291 |NP Hya |090158.8+024016 |ACV: | 7.08 | 7.14 | |Hp| | | | | |HIP HIP | +44609 |420292 |NQ Hya |090519.6-172022 |LB: | 7.97 | 8.08 | |Hp| | | | | |HIP HIP | +44675 |420293 |NR Hya |090616.8-005951 |LB: | 9.58 | 9.76 | |Hp| | | | | |HIP HIP | +44738 |420294 |NS Hya |090659.9+012746 |SRB | 6.18 | 6.29 | |Hp| | | | | |HIP HIP | +44813 |420295 |NT Hya |090758.1-074818 |DSCTC | 7.42 | 7.49 | |Hp| | | | | |HIP HIP | +45030 |420296 |NU Hya |091019.8-113700 |LB | 8.33 | 8.50 | |Hp| | | | | |HIP HIP | +45547 |420297 |NV Hya |091659.9-093718 |LB: | 7.65 | 7.75 | |Hp| | | | | |HIP HIP | +45755 |420298 |NW Hya |091948.3-055930 |LB: | 7.79 | 7.89 | |Hp| | | | | |HIP HIP | +45846 |420299 |NX Hya |092049.4+005247 |EB | 8.33 | 8.50 | |Hp| | | | | |HIP HIP | +45887 |420300 |NY Hya |092122.8-064020 |EA | 8.65 | 9.02 | |Hp| | | | | |HIP HIP | +46002 |420301 |NZ Hya |092256.7-152945 |EA | 8.28 | 8.78 | |Hp| | | | | |HIP HIP | +46323 |420302 |OO Hya |092642.1+035009 |I: | 10.37 | 10.83 | |Hp| | | | | |HIP HIP | +46435 |420303 |OP Hya |092813.3-074315 |LB | 6.97 | 7.10 | |Hp| | | | | |HIP HIP | +46722 |420304 |OQ Hya |093126.7-182501 |LB: | 8.00 | 8.11 | |Hp| | | | | |HIP HIP | +46948 |420305 |OR Hya |093407.3-210406 |LB: | 9.24 | 9.40 | |Hp| | | | | |HIP HIP | +46987 |420306 |OS Hya |093436.5-002914 |LB | 8.45 | 8.70 | |Hp| | | | | |HIP HIP | +46988 |420307 |OT Hya |093437.5-162233 |SRB: | 7.82 | 7.95 | |Hp| | | | | |HIP HIP | +47130 |420308 |OU Hya |093612.9+054305 |LB: | 9.59 | 9.76 | |Hp| | | | | |HIP HIP | +47102 |420309 |OV Hya |093559.0-203310 |LB: | 8.67 | 8.77 | |Hp| | | | | |HIP HIP | +47427 |420310 |OW Hya |093947.4-103413 |EA | 6.29 | 6.66 | |Hp| | | | | |HIP HIP | +48494 |420311 |OX Hya |095323.3-175534 |SRB | 7.67 | 7.84 | |Hp| | | | | |HIP HIP | +48943 |420312 |OY Hya |095906.3-235703 |BE | 6.09 | 6.15 | |Hp| | | | | |HIP HIP | +49177 |420313 |OZ Hya |100211.6-194601 |EA | 9.50 | 9.75 | |Hp| | | | | |HIP HIP | +49209 |420314 |PP Hya |100237.0-202527 |ELL: | 6.84 | 6.91 | |Hp| | | | | |HIP HIP | +49322 |420315 |PQ Hya |100404.3-153855 |LB: | 9.03 | 9.17 | |Hp| | | | | |HIP HIP | +49463 |420316 |PR Hya |100552.9-144838 |SRB | 8.96 | 9.17 | |Hp| | | | | |HIP HIP | +49755 |420317 |PS Hya |100922.9-132144 |SRB: | 7.12 | 7.21 | |Hp| | | | | |HIP HIP | +49783 |420318 |PT Hya |100943.3-144545 |LB: | 8.02 | 8.13 | |Hp| | | | | |HIP HIP | +50212 |420319 |PU Hya |101501.3-134749 |LB: | 8.83 | 8.92 | |Hp| | | | | |HIP HIP | +51289 |420320 |PV Hya |102836.4-263559 |LB | 9.32 | 9.87 | |Hp| | | | | |HIP HIP | +51496 |420321 |PW Hya |103103.6-213840 |BY: | 10.17 | 12.31 | |Hp| | | | | |HIP HIP | +51683 |420322 |PX Hya |103330.7-201052 |E | 8.47 | 8.57 | |Hp| | | | | |HIP HIP | +52509 |420323 |PY Hya |104412.0-124726 |LB: | 8.88 | 8.99 | |Hp| | | | | |HIP HIP | +52565 |420324 |PZ Hya |104448.9-240456 |LB: | 9.93 | 10.38 | |Hp| | | | | |HIP HIP | +52789 |420325 |QQ Hya |104733.4-313612 |LB: | 7.02 | 7.06 | |Hp| | | | | |HIP HIP | +53487 |420326 |QR Hya |105631.1-343350 |E | 8.51 | 8.69 | |Hp| | | | | |HIP HIP | +53753 |420327 |QS Hya |105950.7-305434 |SRD | 9.16 | 9.33 | |Hp| | | | | |HIP HIP | +55953 |420328 |QT Hya |112758.7-351944 |SRD | 6.52 | 6.58 | |Hp| | | | | |HIP HIP | +56300 |420329 |QU Hya |113231.6-290831 |SRB | 7.39 | 7.50 | |Hp| | | | | |HIP HIP | +57678 |420330 |QV Hya |114945.1-331649 |LB: | 9.05 | 9.16 | |Hp| | | | | |HIP HIP | +58802 |420331 |QW Hya |120338.8-322439 |LB | 8.84 | 9.36 | |Hp| | | | | |HIP HIP | +58946 |420332 |QX Hya |120511.9-341232 |SRB | 7.47 | 7.59 | |Hp| | | | | |HIP HIP | +59259 |420333 |QY Hya |120920.8-275856 |EB: | 9.07 | 9.36 | |Hp| | | | | |HIP HIP | +59443 |420334 |QZ Hya |121133.4-270415 |LB | 7.57 | 7.70 | |Hp| | | | | |HIP HIP | +59588 |420335 |V0335 Hya |121312.9-340731 |LB | 5.84 | 6.34 | |Hp| | | | | |HIP HIP | +59789 |420336 |V0336 Hya |121534.3-314125 |LB | 7.47 | 7.59 | |Hp| | | | | |HIP HIP | +59921 |420337 |V0337 Hya |121729.6-343018 |SRA | 8.38 | 9.20 | |Hp| | | | | |HIP HIP | +60273 |420338 |V0338 Hya |122129.9-302906 |SRB | 8.27 | 8.55 | |Hp| | | | | |HIP HIP | +61024 |420339 |V0339 Hya |123023.6-270509 |SRB | 8.16 | 8.42 | |Hp| | | | | |HIP HIP | +61836 |420340 |V0340 Hya |124019.2-293654 |EA | 8.24 | 8.53 | |Hp| | | | | |HIP HIP | +61908 |420341 |V0341 Hya |124113.7-275430 |SRB | 6.61 | 6.71 | |Hp| | | | | |HIP HIP | +62062 |420342 |V0342 Hya |124313.1-245926 |LB | 6.72 | 6.91 | |Hp| | | | | |HIP HIP | +62432 |420343 |V0343 Hya |124742.0-294742 |SRB | 8.01 | 8.23 | |Hp| | | | | |HIP HIP | +63357 |420344 |V0344 Hya |125857.2-295955 |LB: | 7.28 | 7.38 | |Hp| | | | | |HIP HIP | +63650 |420345 |V0345 Hya |130243.3-270038 |LB: | 8.93 | 9.03 | |Hp| | | | | |HIP HIP | +65324 |420346 |V0346 Hya |132320.0-243920 |SRB: | 7.50 | 7.74 | |Hp| | | | | |HIP HIP | +66273 |420347 |V0347 Hya |133457.4-295524 |BY: | 8.58 | 8.83 | |Hp| | | | | |HIP HIP | +67531 |420348 |V0348 Hya |135009.3-292910 |LB: | 8.52 | 8.63 | |Hp| | | | | |HIP HIP | +67984 |420349 |V0349 Hya |135519.3-262557 |SRB | 7.36 | 7.76 | |Hp| | | | | |HIP HIP | +68757 |420350 |V0350 Hya |140423.8-295359 |LB | 7.89 | 8.16 | |Hp| | | | | |HIP HIP | +69017 |420351 |V0351 Hya |140743.6-290134 |LB | 8.65 | 9.06 | |Hp| | | | | |HIP HIP | +69110 |420352 |V0352 Hya |140850.4-240522 |LB: | 9.08 | 9.22 | |Hp| | | | | |HIP HIP | +69211 |420353 |V0353 Hya |141012.3-252402 |EA | 7.51 | 7.65 | |Hp| | | | | |HIP HIP | +69894 |420354 |V0354 Hya |141812.2-273116 |E: | 8.40 | 8.52 | |Hp| | | | | |HIP HIP | +70370 |420355 |V0355 Hya |142351.3-280903 |LB: | 8.33 | 8.43 | |Hp| | | | | |HIP HIP | +71077 |420356 |V0356 Hya |143205.1-274233 |EB | 7.56 | 7.69 | |Hp| | | | | |HIP HIP | +48958 |420359 |V0359 Hya |095914.3-124514 |ACV | 7.85 | 7.88 | |V | | | | | |75147 BD | +40774 |420397 |V0397 Hya |081919.1+012020 |BY | 8.35 |( 0.03 )| |V | | | 8.75 : | |G5V |78018 DM | +42333 |420401 |V0401 Hya |083750.3-064825 |BY | 6.73 |( 0.05 : )| |V | | | 6.14 | |G0 |78005 DM | +44526 |420405 |V0405 Hya |090420.7-155451 |BY | 8.77 |( 0.03 )| |V | | | 8.64 : | |K2Ve |78018 DM | +46223 |420415 |V0415 Hya |092527.0-062416 |GDOR: | 7.07 | 7.10 | |Hp| | | 0.490 | |A3 |78091 DM | +48830 |420416 |V0416 Hya |095739.7-163120 |GDOR | 6.64 | 6.73 | |Hp| | | | |F0V |78024 DM | +49366 |420417 |V0417 Hya |100437.7-114347 |BY | 8.15 |( 0.03 )| |V | | | 10.74 | |K0V |78018 DM | +51931 |420418 |V0418 Hya |103630.8-135036 |BY: | 8.71 |( 0.02 )| |V | | | | |K2V |78018 DM | +52462 |420419 |V0419 Hya |104328.3-290351 |BY | 7.72 |( 0.02 )| |V | | | 13.47 : | |K1V |78018 DM | +45171 |420432 |V0432 Hya |091218.6-110444 |EA | 7.90 | 7.98 | 7.98 |V |48594.965 | | 1.115657 |07 |A1/2III/IV |79004 DM | +42457 |420490 |V0490 Hya *|083923.5-093440 |EA | 8.65 |< 8.80 | 8.71 : |V |48794.107 | | 92.1711 | |A0V |80011 HIP | NL80_2 +44258 |420511 |V0511 Hya *|090047.0-182047 |EA | 8.99 | 9.06 | 9.05 |V |48568.32 | | 2.03915 |08 |A1V |80015 DM | NL80_2 +57936 |429002 |bet Hya *|115254.5-335429 |ACV | 4.27 |( 0.04 )| |V |42451.78 | | 2.344 | |B9IIIp(Si) |09248 CoD | +43109 |429005 |eps Hya |084646.5+062508 |BY: | 3.35 | 3.39 | |V | | | | | |69171 BD | +42799 |429007 |eta Hya |084313.5+032355 |BCEP | 4.27 | 4.33 | |V | | | 0.17 | |B3V |08395 BD | +6552 |430085 |BG Hyi |012412.2-704031 |DSCTC | 8.2 |( 0.03 )| |V | | | | | |67476 CPD | +8132 |430090 |BM Hyi |014433.0-610107 |ACV | 7.0 |( 0.04 )| |V | | | | | |67066 CPD | +14521 |430091 |BN Hyi |030732.1-785921 |DSCTC | 5.7 |( 0.02 )| |V | | | | | |67481 CPD | +10722 |430094 |BQ Hyi |021800.8-712803 |E:/RS | 8.06 | 8.22 | |V | | | 18.66 | |G1 |V 301 CPD |=SMC V2391 +14026 |430097 |BT Hyi |030037.1-815407 |ACVO | 9.1 |( 0.01 B )| |V | | | | | |71020 CPD | +610 |430103 |BZ Hyi |000725.9-772939 |EA | 8.53 | 8.69 | |Hp| | | | | |HIP HIP | +7326 |430104 |CC Hyi |013420.3-643108 |LB | 8.97 | 9.17 | |Hp| | | | | |HIP HIP | +7496 |430105 |CD Hyi |013633.8-762219 |SRB: | 8.28 | 8.35 | |Hp| | | | | |HIP HIP | +7682 |430106 |CE Hyi |013856.1-583449 |DSCTC | 8.48 | 8.53 | |Hp| | | | | |HIP HIP | +8035 |430107 |CF Hyi |014311.1-580037 |BY: | 9.23 | 9.41 | |Hp| | | | | |HIP HIP | +8485 |430108 |CG Hyi |014922.7-722443 |LPB | 7.77 | 7.82 | |Hp| | | | | |HIP HIP | +9472 |430109 |CH Hyi |020152.3-742645 |SRB | 6.77 | 6.90 | |Hp| | | | | |HIP HIP | +10248 |430110 |CI Hyi |021148.9-712903 |SRB | 8.52 | 9.09 | |Hp| | | | | |HIP HIP | +11039 |430111 |CK Hyi |022207.5-813303 |LB: | 8.38 | 8.48 | |Hp| | | | | |HIP HIP | +11455 |430112 |CL Hyi |022746.8-693126 |SRB: | 6.48 | 7.15 | |Hp| | | | | |HIP HIP | +12674 |430113 |CM Hyi |024250.5-711216 |SRB | 7.66 | 7.87 | |Hp| | | | | |HIP HIP | +12884 |430114 |CN Hyi |024537.0-711409 |EW | 6.68 | 6.93 | |Hp| | | | | |HIP HIP | +13189 |430115 |CO Hyi |024942.7-694843 |SRB | 8.55 | 8.88 | |Hp| | | | | |HIP HIP | +13999 |430116 |CP Hyi |030013.7-810519 |EW: | 7.90 | 8.04 | |Hp| | | | | |HIP HIP | +15931 |430117 |CQ Hyi |032512.1-783958 |LB | 8.48 | 8.67 | |Hp| | | | | |HIP HIP | +16592 |430118 |CR Hyi |033335.9-690100 |ELL: | 9.28 | 9.34 | |Hp| | | | | |HIP HIP | +16775 |430119 |CS Hyi |033553.0-691135 |SRA | 8.24 | 9.28 | |Hp| | | | | |HIP HIP | +17543 |430120 |CT Hyi |034523.7-713929 |ACV: | 6.21 | 6.24 | |Hp| | | | | |HIP HIP | +20015 |430121 |CU Hyi |041735.5-715839 |BY: | 9.20 | 9.44 | |Hp| | | | | |HIP HIP | +8472 |430131 |DH Hyi |014913.3-633100 |EA | 8.45 | 8.63 | 8.58 |V |48375.910 | | 7.43367 |03 |A2mA5-A7 |79009 DM | +105334|440003 |T Ind |212009.5-450119 |SRB | 7.7 | 9.4 | |p | | | 320. : | |C7,2(Na) |01016 08953| +104613|440005 |V Ind *|211129.9-450428 |RRAB | 9.12 | 10.48 | |V |40118.393 | | 0.4795910 |10 |A5-G3: |07984 06286| +107490|440010 |RR Ind |214617.6-651828 |SRB | 10.9 | 13.1 | |p |30120. | | 140. : |60 |C6II(Na) |01016 CoD | +103215|440021 |SU Ind *|205441.2-454351 |EB/DW | 9.3 | 9.7 | 9.5 : |V |34267.489 | | 0.986323 | |F5/6V |00080 CoD | +104424|440064 |AK Ind |210912.2-464605 |LB | 9.1 | 9.4 | |p | | | | |M4/5III |04294 04001| +107705|440078 |AY Ind *|214905.8-720609 |UV | 9.9 | 11.26 | |B | | | | |M2Ve |07816 CPD | +107525|440081 |BC Ind |214637.9-673547 |ACV | 7.18 | 7.24 | |V |42619.508 | | 1.788 |40 |B9p(Si) |08312 CPD | +108340|440082 |BD Ind |215656.7-615046 |ACV | 7.5 |( 0.01 )| |V | | | | | |67066 CPD | +108584|440083 |BE Ind |215947.7-593412 |DSCTC | 8.4 |( 0.02 )| |V | | | | | |67448 CPD | +108478|440085 |BG Ind |215830.1-590044 |EA | 6.11 | 6.36 | |V | | | | | |68303 CPD | +106013|440086 |BH Ind |212819.9-524915 |RS | 9.44 | 9.89 | |V | | | | | |69011 CPD | +114678|440087 |BI Ind |231352.8-681729 |RS | 7.65 | 7.70 | |V | | | | | |73181 CPD | +101185|440088 |BK Ind |203034.6-495119 |EA | 10.30 | 10.84 | |Hp| | | | | |HIP HIP | +101366|440089 |BL Ind |203242.0-572907 |LB | 8.76 | 9.02 | |Hp| | | | | |HIP HIP | +102064|440090 |BM Ind |204101.4-515251 |LB | 8.85 | 9.05 | |Hp| | | | | |HIP HIP | +102160|440091 |BN Ind |204201.5-501546 |SRB | 7.51 | 7.64 | |Hp| | | | | |HIP HIP | +102353|440092 |BO Ind |204416.5-535040 |EW | 8.41 | 8.61 | |Hp| | | | | |HIP HIP | +102895|440093 |BP Ind |205042.9-561430 |BY: | 9.05 | 9.17 | |Hp| | | | | |HIP HIP | +103290|440094 |BQ Ind |205533.7-564431 |SXPHE | 9.78 | 10.05 | |Hp| | | | | |HIP HIP | +104604|440095 |BR Ind |211122.8-522021 |EA | 7.08 | 7.22 | |Hp| | | | | |HIP HIP | +105404|440096 |BS Ind |212059.8-522840 |EA | 9.01 | 9.32 | |Hp| | | | | |HIP HIP | +106316|440097 |BT Ind |213200.7-584855 |SRB | 7.87 | 8.52 | |Hp| | | | | |HIP HIP | +107349|440098 |BU Ind |214431.2-650334 |LB: | 10.09 | 10.32 | |Hp| | | | | |HIP HIP | +107523|440099 |BV Ind |214635.7-575948 |LB: | 8.98 | 9.08 | |Hp| | | | | |HIP HIP | +108524|440100 |BW Ind |215908.3-714455 |SRD: | 9.14 | 9.20 | |Hp| | | | | |HIP HIP | +108741|440101 |BX Ind |220139.8-540926 |DSCTC | 7.94 | 8.03 | |Hp| | | | | |HIP HIP | +109325|440102 |BY Ind |220855.6-703119 |LB | 8.86 | 9.04 | |Hp| | | | | |HIP HIP | +109580|440103 |BZ Ind |221153.2-675625 |LB: | 8.72 | 8.89 | |Hp| | | | | |HIP HIP | +114917|440104 |CC Ind |231637.8-701504 |SRB: | 6.66 | 7.36 | |Hp| | | | | |HIP HIP | +106954|440107 |CF Ind |213940.9-513422 |DSCTC | 7.76 | 7.81 | |Hp| | | | | |76009 DM | +108976|440111 |CK Ind *|220438.4-644342 |GDOR | 7.36 | 7.44 | |Hp| | | 0.8853 | |A9/F0V |78301 DM | +106360|440113 |CM Ind |213230.3-735335 |SRB | 7.77 | 7.93 | |Hp| | | | | |HIP HIP | +106234|440117 |CQ Ind *|213103.3-505049 |EA | 8.38 | 8.8 : | 8.75 : |V |52625.750 | | 26.921 |02 : |F7V |79011 DM | +110972|450002 |S Lac *|222900.9+401856 |M | 7.6 | 13.9 | |V |43804. | | 241.50 |46 |M4e-M8.2e |00001 00002| +112545|450004 |U Lac *|224743.4+550930 |SRC | 9.4 | 12.1 | |p | | | | |M4epIab+B |00882 00098| +112626|450005 |V Lac *|224838.0+561918 |DCEP | 8.38 | 9.42 | |V |28901.285 | | 4.983458 |25 |F5-G0 |09288 00884| +112675|450007 |X Lac *|224903.2+562542 |DCEPS | 8.20 | 8.64 | |V |42738.132 | | 5.444990 |38 |F6-G0 |08632 00884| +109340|450008 |Y Lac |220902.9+510245 |DCEP | 8.76 | 9.50 | |V |41746.745 | | 4.323776 |34 |F5-G0 |08300 00102| +111972|450009 |Z Lac *|224052.1+564946 |DCEP | 7.88 | 8.93 | |V |42827.123 | | 10.885613 |43 |F6Ib-G6Ib |09029 00884| +112026|450010 |RR Lac *|224126.5+562558 |DCEP | 8.38 | 9.30 | |V |42776.686 | | 6.416243 |30 |F6-G2 |08632 00884| +108728|450012 |RT Lac *|220130.7+435326 |EB/AR/RS | 8.84 | 9.89 | 9.62 |V |44873.3648 | | 5.0739496 | |G9IV+K1IV |09292 00010| +112292|450014 |RV Lac *|224440.9+494357 |SRB | 11.0 | 12.7 | |p | | | 67. | |M4 |00197 00098| +108981|450019 |SS Lac *|220441.5+462538 |EA/D | 10.1 | 10.5 | 10.5 |p |15900.76 | | 14.41629 |05 |B7 |00063 00010| +113052|450023 |SW Lac *|225341.7+375619 |EW/KW | 8.51 | 9.39 | 9.31 |V |45275.3477 | | 0.3207209 | |G8Vp+G8Vp |00001 00010| +113252|450024 |SX Lac |225600.0+351145 |SRD | 9.0 | 10.0 | |p | | | 190.0 |47 |K2 |01026 08953| +113260|450029 |TV Lac |225607.4+541346 |LB | 11.5 | 12.3 | |p | | | | |C4,5(N3) |00098 00098| +112394|450031 |TX Lac |224551.2+550435 |LB | 11.2 | 12.9 | |p | | | | |C3:,4J(R5) |09299 00098| +109303|450071 |AR Lac *|220840.8+454432 |EA/AR/RS | 6.08 | 6.77 | 6.43 |V |41593.7123 | | 1.98319204 |15 |G2IV-V+K0IV |09313 00010| +108630|450085 |BG Lac |220025.1+432643 |DCEP | 8.51 | 9.18 | |V |35315.273 | | 5.331908 |33 |F7-G4 |01821 01142| +108606|450113 |CM Lac *|220004.5+443308 |EA/DM | 8.18 | 9.15 | 8.53 |V |27026.316 | | 1.6046916 |11 *|A2V+A8V |01823 00010| +112436|450115 |CO Lac *|224630.0+564932 |EA/DM | 10.28 | 10.89 | 10.79 |V |27534.0728 | | 1.5422075 |13 *|B8.5IV+B9.5V |05710 01965| +109158|450120 |CT Lac |220639.9+482707 |SRA | 10.6 | 17.2 | |p |41110. | | 555. |62 |C6-,4(R) |04972 06566| +110213|450126 |CZ Lac *|221930.8+512815 |RRAB | 10.77 | 11.26 | |V |45178.328 | | 0.432205 |14 |A8-F5 |09334 01442| +112031|450127 |DD Lac *|224128.6+401332 |BCEP | 5.16 | 5.28 | |V |43063.774 | | 0.1930924 |50 |B1.5III |00001 BD | +109420|450128 |DE Lac *|221007.8+405511 |DSCT | 10.08 | 10.43 | |V |42659.819 | | 0.2536934 |33 |F5-F8 |08114 01142| +109619|450131 |DH Lac *|221221.6+392556 |M | 11.6 | 14.6 | |p |41221. | | 288.8 | |M5e |00001 01089| +113281|450157 |EN Lac *|225623.6+413614 |BCEP+EA/D | 5.41 |( 0.11 )| |B | | | |50 |B2IV |09343 BD | +112460|450165 |EV Lac *|224649.7+442002 |UV+BY | 8.28 | 11.83 | |B | | | | |M4.5Ve |03380 09349| +113327|450166 |EW Lac *|225704.5+484103 |GCAS | 5.22 | 5.48 | |V | | | | |B3III-IVpeV |01838 BD | +112247|450194 |GL Lac |224407.5+553521 |ACV | 8.73 | 8.90 | |V |36864.88 | | 9.4871 |57 |B8p(Si) |07553 04323| +109002|450211 |HK Lac *|220456.6+471405 |RS | 6.77 | 7.04 | |V | | | 25.83 | |K0III-IVpeaV |08933 BD | +109033|450220 |HT Lac *|220516.5+464441 |SRB | 6.08 | 6.36 | |V | | | 82. : | |M4IIIab |08814 BD | +111072|450350 |V0350 Lac *|223006.5+492123 |ELL+RS | 6.27 | 6.47 | 6.45 |V |44207.743 | | 17.748 | |K2III-IVp |00001 BD | +110287|450357 |V0357 Lac |222022.7+515140 |GCAS | 7.02 |( 0.2 )| |B | | | | |B1IV:pnne |07970 BD | +112778|450360 |V0360 Lac *|225021.8+415712 |EB/DM: | 5.91 | 5.98 | 5.93 |V |41895.8077 | | 10.075 | |B3IV:eaV |00001 BD | +111400|450362 |V0362 Lac *|223407.3+392008 |ACV | 8.69 |( 0.07 )| |V |44509.32 | | 1.43 |50 |A0p(4200-Si) |08766 BD | +112316|450363 |V0363 Lac *|224458.5+492853 |LB | 11.2 | 12.0 | |p | | | | |C(N) |08762 08762| +112928|450364 |V0364 Lac *|225214.8+384445 |EA/DM | 8.51 | 9.25 | 9.15 |B |44257.2865 | | 7.351522 |06 |A3 |09358 BD | +109082|450365 |V0365 Lac |220551.2+481353 |ELL | 6.27 |( 0.08 )| |V | | | | | |67283 BD | +113009|450377 |V0377 Lac |225311.4+401003 |LPB | 6.25 |( 0.02 b )| |B | | | | | |72045 BD | +108892|450378 |V0378 Lac |220327.8+453407 |LB | 8.7 | 9.1 | |R | | | | | |73134 73134| +108776|450393 |V0393 Lac |220205.8+422247 |I: | 10.51 | 10.98 | |Hp| | | | | |HIP HIP | +108888|450394 |V0394 Lac |220325.1+484103 |EB | 8.04 | 8.15 | |Hp| | | | | |HIP HIP | +108911|450395 |V0395 Lac |220341.3+531245 |ACYG: | 8.45 | 8.52 | |Hp| | | | | |HIP HIP | +109020|450396 |V0396 Lac |220510.6+440353 |IA: | 9.83 | 10.13 | |Hp| | | | | |HIP HIP | +109113|450397 |V0397 Lac |220608.3+495409 |BE | 9.67 | 9.79 | |Hp| | | | | |HIP HIP | +109193|450398 |V0398 Lac |220712.4+523808 |EA | 8.73 | 9.02 | |Hp| | | | | |HIP HIP | +109205|450399 |V0399 Lac |220725.6+531827 |ACYG: | 6.24 | 6.29 | |Hp| | | | | |HIP HIP | +109238|450400 |V0400 Lac |220749.0+425712 |LPB: | 7.87 | 7.95 | |Hp| | | | | |HIP HIP | +109283|450401 |V0401 Lac |220821.3+491316 |EA | 7.93 | 8.16 | |Hp| | | | | |HIP HIP | +109354|450402 |V0402 Lac |220915.2+445047 |EA | 6.70 | 6.99 | |Hp| | | | | |HIP HIP | +109802|450403 |V0403 Lac |221424.1+523049 |LB: | 7.73 | 7.81 | |Hp| | | | | |HIP HIP | +110177|450404 |V0404 Lac |221900.2+454809 |BE | 8.28 | 8.47 | |Hp| | | | | |HIP HIP | +110408|450405 |V0405 Lac |222150.9+420441 |LPB | 6.35 | 6.37 | |Hp| | | | | |HIP HIP | +110500|450406 |V0406 Lac |222301.6+551359 |ACYG: | 7.95 | 8.02 | |Hp| | | | | |HIP HIP | +110622|450407 |V0407 Lac |222436.9+411824 |ELL: | 8.31 | 8.38 | |Hp| | | | | |HIP HIP | +110699|450408 |V0408 Lac |222541.8+522618 |GCAS | 7.86 | 8.10 | |Hp| | | | | |HIP HIP | +110921|450409 |V0409 Lac |222822.5+472659 |GCAS | 8.41 | 8.62 | |Hp| | | | | |HIP HIP | +110948|450410 |V0410 Lac |222845.6+500817 |LB | 8.47 | 8.83 | |Hp| | | | | |HIP HIP | +110968|450411 |V0411 Lac |222858.3+505747 |DCEPS | 7.83 | 8.07 | |Hp| | | | | |HIP HIP | +111022|450412 |V0412 Lac *|222931.8+474225 |LC | 4.39 | 4.56 | |Hp| | | | | |HIP HIP | +111071|450413 |V0413 Lac *|223005.7+544725 |ELL | 9.72 | 9.85 | |Hp| | | | | |HIP HIP | +111360|450414 |V0414 Lac |223337.6+463355 |ACV | 7.33 | 7.39 | |Hp| | | | | |HIP HIP | +111785|450415 |V0415 Lac |223831.8+555005 |BE | 9.22 | 9.35 | |Hp| | | | | |HIP HIP | +111795|450416 |V0416 Lac |223837.9+564744 |LB | 5.05 | 5.18 | |Hp| | | | | |HIP HIP | +111877|450417 |V0417 Lac |223940.9+470333 |LB | 8.03 | 8.21 | |Hp| | | | | |HIP HIP | +111907|450418 |V0418 Lac |224005.8+404013 |LB | 6.72 | 7.09 | |Hp| | | | | |HIP HIP | +112047|450419 |V0419 Lac |224141.7+440006 |LB: | 9.15 | 9.33 | |Hp| | | | | |HIP HIP | +112261|450420 |V0420 Lac |224417.3+492444 |SRD: | 7.11 | 7.18 | |Hp| | | | | |HIP HIP | +112339|450421 |V0421 Lac |224515.9+471214 |LB | 7.73 | 7.89 | |Hp| | | | | |HIP HIP | +112698|450422 |V0422 Lac |224917.7+475548 |IA: | 7.78 | 7.85 | |Hp| | | | | |HIP HIP | +113226|450423 |V0423 Lac |225547.1+433334 |BE | 7.97 | 8.06 | |Hp| | | | | |HIP HIP | +113288|450424 |V0424 Lac |225626.0+494401 |LC | 5.03 | 5.11 | |Hp| | | | | |HIP HIP | +112887|450442 |V0442 Lac *|225138.9+515042 |* | 12.26 |( 0.30 )| |V | | | | | |77205 GSC | +108774|450443 |V0443 Lac |220205.4+442035 |BY: | 7.96 |( 0.02 )| |V | | | | |G5V |78018 DM | +109527|450446 |V0446 Lac |221111.9+361523 |BY | 7.23 |( 0.02 )| |V | | | 9.083 | |K0V |78018 DM | +109926|450447 |V0447 Lac |221554.1+544022 |BY | 7.50 |( 0.03 )| |V | | | 4.4266 | |K1V |78018 DM | +111590|450457 |V0457 Lac *|223623.0+380618 |EA | 9.84 | 10.04 | 10.02 : |V |48305.198 | | 6.15727 |02 : |B9V |79006 DM | +48036 |460001 |R Leo *|094733.5+112544 |M | 4.4 | 11.3 | |V |44164. | | 309.95 |43 |M6e-M8IIIe-M9.5e |00001 00002| +49026 |460005 |V Leo *|100001.9+211544 |M | 8.4 | 14.6 | |V |42706. | | 273.35 |44 |M5e |00001 00002| +53265 |460006 |W Leo *|105337.4+134254 |M | 8.9 | 14.8 | |V |43627. | | 391.75 |35 |M5.5e-M7e |00001 00002| +47178 |460008 |Y Leo *|093651.8+261358 |EA/SD | 10.09 | 13.20 |( 0.1 IR)|V |45436.451 | | 1.6861020 |14 *|A5V |00001 00279| +48405 |460009 |Z Leo |095208.4+265423 |SRB | 9.9 | 11.5 | |p |36717. | | 56.83 |47 |M3III-IV |00761 00884| +49628 |460010 |RR Leo *|100743.5+235930 |RRAB | 9.94 | 11.27 | |V |43295.402 | | 0.4523933 |13 |A7-F5 |00001 09331| +49333 |460017 |RY Leo |100415.9+135858 |SRB | 9.0 | 11.8 | |V | | | 155. |47 |M2e | 00002| +56409 |460019 |SS Leo *|113354.5-000200 |RRAB | 10.38 | 11.56 | |V |41781.409 | | 0.6263441 |12 |A7-F6 |00001 01841| +56785 |460020 |ST Leo *|113832.7+103342 |RRAB | 10.74 | 12.02 | |V |27923.118 | | 0.4779843 |15 |A6-F8 |00001 01842| +51802 |460031 |TX Leo *|103502.2+083902 |EA/DM | 5.66 | 5.75 | 5.69 |V |38844.3055 | | 2.4450566 |11 *|A2V |05720 00462| +52066 |460035 |UV Leo *|103820.8+141604 |EA/DW | 8.90 | 9.56 | 9.49 |V |38440.72633 | | 0.60008478 |18 |G0V+G2V |01234 03385| +51353 |460038 |UY Leo |102921.6+230344 |LB | 9.5 | 11. | |p | | | | |M7III |00483 08953| +52249 |460039 |UZ Leo *|104033.2+133401 |EW/KE | 9.58 | 10.15 | 10.12 |V |39800.373 | | 0.6180428 | |A7 |00001 08953| +53449 |460043 |VY Leo |105601.5+061107 |LB: | 5.69 | 6.03 | |V | | | | |M5.5III |01371 BD | +58203 |460046 |WX Leo |115612.3+154344 |LB | 9.42 | 9.99 | |B | | | | |M5 |00904 08953| +49136 |460050 |XY Leo *|100140.4+172433 |EW/KW | 9.45 | 9.93 | 9.80 |V |45074.4906 | | 0.2840969 | |K0V+K0 |09317 00156| +49204 |460051 |XZ Leo *|100234.2+170247 |EW/KE | 10.6 | 11.2 | 11.1 |p |45025.358 | | 0.4877351 | |A6 |00001 01432| +49664 |460052 |YY Leo |100820.0+200013 |SRB | 10.5 | 11.4 | |p | | | 40.9 | |M3 |00156 00156| +49033 |460057 |AC Leo |100014.7+172735 |CST: | 9.44 | 9.49 | |V | | | | |K0III |03596 BD | +56947 |460063 |AI Leo |114028.6+111143 |LB | 8.44 | 10.5 | |V | | | | |M5 |00104 08953| +56976 |460064 |AK Leo |114048.4+130441 |SRB | 8.36 | 9.4 | |V | | | 60. : | |M5 |05429 08953| +53937 |460066 |AM Leo *|110210.9+095343 |EW/KW | 9.25 | 9.83 | 9.83 |V |42493.389 | | 0.36579740 | |F8V |00001 08953| +54188 |460069 |AP Leo *|110505.0+050906 |EW/KW | 9.32 | 9.91 | 9.88 |V |39536.542 | | 0.4303576 | |G0V |00001 08953| +56350 |460077 |AX Leo |113303.8+120914 |RRAB | 11.8 | 12.3 | |p |25244.703 | | 0.726828 |18 |A2 |04166 02347| +56742 |460101 |BX Leo *|113802.1+163236 |RRC | 11. | 11.7 | |p |38406.72 | | 0.36286 |40 |A6 |03925 00470| +58016 |460122 |CV Leo |115358.8+202924 |LB | 10.67 | 11.2 | |B | | | | |K5 |05264 BD | +51213 |460124 |CX Leo *|102739.0+094545 |ACV | 5.97 | 6.15 | |V | | | 7.897 | |A0p(Si-Cr-Sr) |09322 BD | +49657 |460127 |DD Leo |100814.9+172131 |SRB: | 10.2 | 10.9 | |p | | | | |M8 |00156 00156| +51008 |460128 |DE Leo *|102515.2+084706 |SRB: | 5.60 |( 0.07 )| |V | | | | |M2IIIabS |05896 08953| +46053 |460129 |DF Leo |092329.5+074250 |SRB | 6.74 | 6.95 | |V | | | 70. : | |M4III |06645 BD | +48218 |460130 |DG Leo *|094950.1+211046 |DSCTC | 6.08 | 6.12 | |V | | | 0.08184505 |50 |A8IV |07015 BD | +49018 |460131 |DH Leo *|100001.7+243310 |RS | 7.75 | 7.94 | |V |43194.475 | | 1.06950 | |K0Ve+B: |04066 BD | +50156 |460133 |DK Leo *|101419.2+210430 |BY | 9.87 | 10.20 | |V | | | 8.05 |50 |M0Ve |08768 HIP | +52123 |460136 |DN Leo |103855.2+100349 |PVTEL: | 9.91 | 10.00 | |V | | | | | |67455 BD | +57565 |460139 |DQ Leo |114759.1+201308 |RS | 4.53 |( 0.03 )| |V | | | | | |67458 BD | +47544 |460140 |DR Leo |094135.1+311640 |LB | 5.84 | 5.98 | |V | | | | | |68006 BD | +53985 |460141 |DS Leo |110238.3+215802 |BY | 9.52 | 9.57 | |V | | | | | |68147 BD | +48540 |460144 |DV Leo |095358.3+101532 |SR | 7.78 | 8.13 | |V | | | | | |71094 BD | +51080 |460145 |DW Leo |102611.5+145401 |RS | 8.5 |( 0.08 )| |V | | | | | |71001 BD | +46843 |460146 |DX Leo |093243.8+265919 |BY | 7.00 |( 0.10 )| |V | | | | | |73360 BD | +48215 |460147 |DY Leo |094948.5+110623 |RS | 7.59 |( 0.05 )| |V | | | | | |73005 BD | +53020 |460149 |EE Leo |105052.1+064829 |BY | 11.64 | 11.70 | |V | | | | | |73018 73066| +46570 |460151 |EG Leo |092950.1+190558 |LB | 8.78 | 8.97 | |Hp| | | | | |HIP HIP | +46689 |460152 |EH Leo |093106.2+250250 |SRB | 7.70 | 7.89 | |Hp| | | | | |HIP HIP | +46994 |460153 |EI Leo |093441.5+081115 |SRB | 7.38 | 7.49 | |Hp| | | | | |HIP HIP | +47733 |460154 |EK Leo |094348.9+072955 |SRB | 8.73 | 8.91 | |Hp| | | | | |HIP HIP | +48020 |460155 |EL Leo |094720.4+324656 |SRB | 7.52 | 7.83 | |Hp| | | | | |HIP HIP | +48292 |460156 |EM Leo |095045.0+312334 |LB | 7.06 | 7.27 | |Hp| | | | | |HIP HIP | +48472 |460157 |EN Leo |095304.4+220724 |LB | 8.11 | 8.25 | |Hp| | | | | |HIP HIP | +49220 |460158 |EO Leo |100249.0+215657 |LPB: | 5.59 | 5.62 | |Hp| | | | | |HIP HIP | +49300 |460159 |EP Leo |100346.5+120720 |SRD: | 8.01 | 8.08 | |Hp| | | | | |HIP HIP | +50072 |460160 |EQ Leo |101323.9+120846 |LB: | 9.49 | 9.65 | |Hp| | | | | |HIP HIP | +50750 |460161 |ER Leo |102147.1+153204 |DSCTC: | 9.88 | 9.94 | |Hp| | | | | |HIP HIP | +51585 |460162 |ES Leo |103211.8+140814 |SRB: | 5.46 | 5.56 | |Hp| | | | | |HIP HIP | +51677 |460163 |ET Leo |103325.8+173427 |EW: | 9.60 | 9.72 | |Hp| | | | | |HIP HIP | +52315 |460164 |EU Leo |104123.5+083346 |LB | 7.59 | 7.71 | |Hp| | | | | |HIP HIP | +52329 |460165 |EV Leo |104137.2+135843 |SRB | 7.63 | 7.77 | |Hp| | | | | |HIP HIP | +52553 |460166 |EW Leo |104440.4+192523 |SRB: | 9.15 | 9.57 | |Hp| | | | | |HIP HIP | +52580 |460167 |EX Leo |104506.8+162016 |EW | 8.27 | 8.49 | |Hp| | | | | |HIP HIP | +52999 |460168 |EY Leo |105030.8+101949 |LB | 8.55 | 8.85 | |Hp| | | | | |HIP HIP | +53653 |460169 |EZ Leo |105836.9+211417 |LB | 8.18 | 8.31 | |Hp| | | | | |HIP HIP | +53944 |460170 |FF Leo |110215.8+041157 |SRB | 9.35 | 9.71 | |Hp| | | | | |HIP HIP | +54108 |460171 |FG Leo |110419.1+051330 |SRB | 7.84 | 8.01 | |Hp| | | | | |HIP HIP | +54268 |460172 |FH Leo |110607.4+070201 |NL: | 8.33 | 8.62 | |Hp| | | | | |HIP HIP | +54613 |460173 |FI Leo |111036.8+111806 |LB | 6.92 | 7.34 | |Hp| | | | | |HIP HIP | +54711 |460174 |FK Leo |111205.5+141822 |EA | 8.57 | 8.85 | |Hp| | | | | |HIP HIP | +54723 |460175 |FL Leo *|111213.3+220320 |SRD: | 8.39 | 8.76 | |V | | | | | |HIP HIP | +54766 |460176 |FM Leo |111245.1+002053 |EA | 8.54 | 8.86 | |Hp| | | | | |HIP HIP | +54951 |460177 |FN Leo |111512.2+230544 |LC | 4.56 | 4.64 | |Hp| | | | | |HIP HIP | +55146 |460178 |FO Leo |111725.1+224940 |EB | 8.50 | 8.73 | |Hp| | | | | |HIP HIP | +55432 |460179 |FP Leo |112107.7+151347 |LB: | 9.93 | 10.10 | |Hp| | | | | |HIP HIP | +55460 |460180 |FQ Leo |112129.3+035615 |LB: | 8.19 | 8.32 | |Hp| | | | | |HIP HIP | +55545 |460181 |FR Leo |112239.0+095327 |LB: | 9.70 | 9.89 | |Hp| | | | | |HIP HIP | +55952 |460182 |FS Leo |112758.5+144956 |EB | 9.06 | 9.25 | |Hp| | | | | |HIP HIP | +56072 |460183 |FT Leo |112935.6+280524 |LB: | 8.81 | 8.92 | |Hp| | | | | |HIP HIP | +56217 |460184 |FU Leo |113127.7+084500 |LB | 8.77 | 9.25 | |Hp| | | | | |HIP HIP | +56267 |460185 |FV Leo |113203.6+180918 |SRB | 7.87 | 8.05 | |Hp| | | | | |HIP HIP | +57126 |460186 |FW Leo |114244.0+181431 |ACV: | 7.31 | 7.38 | |Hp| | | | | |HIP HIP | +57480 |460187 |FX Leo *|114657.2+270123 |SR: | 8.91 | 9.34 | |Hp| | | | | |HIP HIP | +57655 |460188 |FY Leo |114927.1+181408 |SRB | 8.45 | 8.59 | |Hp| | | | | |HIP HIP | +58359 |460189 |FZ Leo |115801.0+140217 |BY: | 8.44 | 8.58 | |Hp| | | | | |HIP HIP | +49328 |460195 |GM Leo |100408.4+113743 |DSCTC | 7.10 |( 0.04 )| |V | | | | | |77084 DM | +58314 |460200 |GR Leo |115728.9+195902 |BY | 8.87 | 8.92 | |B | | | | | |77053 DM | +46637 |460201 |GS Leo |093035.8+103606 |BY | 8.66 |( 0.06 )| |V | | | 3.041 | |G9V |78018 DM | +47587 |460202 |GT Leo |094209.9+073525 |BY | 8.92 |( 0.04 )| |V | | | 10.92 | |K0Ve |78018 DM | +53472 |460206 |GX Leo |105616.9+222106 |SRS | 7.71 | 7.79 | |B | | | 13.96 | |K4III |78141 DM | +53486 |460207 |GY Leo |105630.8+072319 |BY | 7.37 |( 0.03 )| |V | | | 11.43 | |K0V |78018 DM | +53923 |460208 |GZ Leo |110202.3+223546 |RS | 8.83 | 8.95 | |V | | | 1.5264 | |K0V+K2V |78141 DM | +54155 |460209 |HH Leo |110441.5-041316 |BY | 7.57 | 7.61 | |V | | | 6.9 | |G5V |78046 DM | +57198 |460212 |HL Leo |114347.0+240037 |BY | 7.40 |( 0.06 )| |V | | | 37.17 | |G2V |78018 DM | +48895 |460214 |HN Leo |095826.0+274532 |GDOR | 6.44 | 6.51 | |V | | | 0.7753 | |F0V+F5:V |79219 DM | +54156 |460218 |HR Leo |110442.3-025820 |EB | 8.94 | 9.03 | 8.98 |V |48220.840 | | 1.081354 | |F2V |79004 DM | +55791 |460255 |KV Leo *|112550.0+035136 |GDOR: | 6.34 | 6.37 | |V | | | 0.45286 | |F3IV |80130 HIP | NL80_2 +57632 |469002 |bet Leo |114903.6+143419 |DSCTC | 2.14 |( 0.025 )| |V | | | | | |67459 BD | +51624 |469017 |rho Leo |103248.7+091824 |ACYG | 3.83 | 3.90 | |V | | | | |B1Iab |07884 BD | +47886 |470001 |R LMi *|094534.3+343043 |M | 6.3 | 13.2 | |V |45094. | | 372.19 |41 |M6.5e-M9.0e(Tc:) |00001 00002| +48520 |470002 |S LMi |095343.2+345535 |M | 7.5 | 14.3 | |V |45292. | | 233.83 |42 |M2.0e-M8.2e |00001 00002| +48106 |470003 |T LMi *|094828.5+331720 |EA/SD | 10.87 | 12.92 | 10.97 |V |45397.368 | | 3.019885 |12 *|A3V |00001 01924| +52366 |470016 |RX LMi |104211.3+314149 |SRB | 5.98 | 6.16 | |V | | | 150. : | |M4IIIa |06590 BD | +46952 |470021 |SU LMi |093413.4+362351 |RS: | 4.54 |( 0.02 )| |V | | | | | |69181 BD | +47080 |470022 |SV LMi |093539.5+354837 |RS: | 5.39 |( 0.04 )| |V | | | | | |69181 BD | +47761 |470028 |TU LMi |094415.6+344315 |LB | 9.0 | 9.9 | |p | | | | | |HIP HIP | +48688 |470029 |TV LMi |095545.7+371142 |EA: | 9.10 | 9.36 | |Hp| | | | | |HIP HIP | +49271 |470030 |TW LMi |100327.6+411817 |SRB | 7.36 | 7.48 | |Hp| | | | | |HIP HIP | +49944 |470031 |TX LMi |101149.5+330729 |LB: | 8.76 | 8.86 | |Hp| | | | | |HIP HIP | +50358 |470032 |TY LMi |101657.4+294106 |LB | 8.53 | 8.71 | |Hp| | | | | |HIP HIP | +50502 |470033 |TZ LMi |101846.5+391841 |SRB | 8.46 | 8.63 | |Hp| | | | | |HIP HIP | +50951 |470034 |UU LMi |102422.2+341035 |SRB | 6.89 | 7.03 | |Hp| | | | | |HIP HIP | +52299 |470035 |UV LMi |104110.3+344118 |LB: | 8.07 | 8.18 | |Hp| | | | | |HIP HIP | +52465 |470036 |UW LMi |104330.2+284109 |EA | 8.44 | 8.67 | |Hp| | | | | |HIP HIP | +52623 |470037 |UX LMi |104542.2+275754 |DSCTC | 9.16 | 9.24 | |Hp| | | | | |HIP HIP | +52723 |470038 |UY LMi |104644.3+344353 |LB | 8.13 | 8.35 | |Hp| | | | | |HIP HIP | +52889 |470039 |UZ LMi |104901.1+264813 |SRD: | 8.64 | 8.82 | |Hp| | | | | |HIP HIP | +53932 |470040 |VV LMi |110208.5+275223 |SRD | 8.21 | 8.44 | |Hp| | | | | |HIP HIP | +54003 |470041 |VW LMi |110251.9+302455 |EW: | 8.03 | 8.45 | |Hp| | | | | |HIP HIP | +54230 |470042 |VX LMi |110545.3+303545 |SRB | 8.55 | 8.84 | |Hp| | | | | |HIP HIP | +53355 |470045 |WW LMi |105442.2+252927 |DSCTC | 6.16 | 6.23 | |V | | | | | |75159 BD | +53747 |470051 |XZ LMi *|105948.3+251724 |RS: | 8.49 |( 0.03 )| |V | | | 7.019 | |G8V |78018 DM | +54028 |470052 |YY LMi *|110314.5+303531 |RS: | 8.96 |( 0.06 )| |V | | | 11.53 | |G5V |78018 DM | +23203 |480001 |R Lep *|045936.4-144823 |M | 5.5 | 11.7 | |V |42506. | | 427.07 |55 |C7,6e(N6e) |00001 00002| +28874 |480002 |S Lep *|060545.5-241144 |SRB | 6.0 | 7.58 | |V | | | 89.0 | |M6III |01266 00097| +23636 |480003 |T Lep *|050450.8-215417 |M | 7.4 | 14.3 | |V |41844. | | 368.13 |47 |M6e-M9e |00001 00002| +22952 |480004 |U Lep *|045618.0-211302 |RRAB | 9.84 | 11.11 | |V |41352.346 | | 0.5814762 |13 |A7-F7 |07114 01045| +23950 |480008 |Y Lep |050850.9-242529 |SRB | 10.3 | 11.7 | |p | | | 109. | |M4III |01191 08953| +24169 |480016 |RX Lep |051122.9-115057 |SRB | 5.0 | 7.4 | |V | | | 60. : | |M6.2III |08837 08953| +27400 |480017 |RY Lep |054810.3-200125 |EA | 8.2 | 9.1 | |V |38315.595 | | | |F0 |04400 08953| +28816 |480019 |SS Lep *|060459.1-162904 |ZAND | 4.82 | 5.06 | |V | | | | |A0Veq+M1III |07141 BD | +24621 |480023 |SW Lep |051649.6-243529 |LB | 9.5 | 10. | |p | | | | |M3 |00190 CoD | +26284 |480026 |SZ Lep |053547.7-254419 |LB: | 7.40 | 7.93 | |V | | | | |C7,3(R8) |06869 CoD | +23755 |480028 |TU Lep |050622.1-144148 |ACV | 7.07 |( 0.105 )| |V | | | | | |67065 BD | +26714 |480030 |TW Lep |054039.7-201756 |RS: | 7.0 |( 0.32 )| |V | | | | | |67401 BD | +24827 |480031 |TX Lep |051918.3-183034 |ACV | 6.54 |( 0.04 )| |V | | | | | |68148 BD | +24430 |480034 |UU Lep |051430.6-261231 |RS | 6.91 | 7.02 | |V | | | | | |69011 CoD | +29365 |480035 |UV Lep |061121.8-154735 |ACVO | 6.77 |( 0.01 B )| |V | | | | | |72098 BD | +23112 |480036 |UW Lep |045823.0-255705 |LB: | 9.84 | 10.04 | |Hp| | | | | |HIP HIP | +23217 |480037 |UX Lep |045946.4-212340 |LB: | 9.47 | 9.67 | |Hp| | | | | |HIP HIP | +23842 |480038 |UY Lep |050734.8-240757 |LB: | 9.68 | 9.85 | |Hp| | | | | |HIP HIP | +23928 |480039 |UZ Lep |050831.9-210414 |LB: | 9.56 | 9.72 | |Hp| | | | | |HIP HIP | +24318 |480040 |VV Lep |051305.2-235752 |LB: | 8.44 | 8.52 | |Hp| | | | | |HIP HIP | +24707 |480041 |VW Lep |051800.8-183645 |LB: | 7.91 | 8.02 | |Hp| | | | | |HIP HIP | +24840 |480042 |VX Lep |051931.2-250727 |LB | 6.76 | 6.99 | |Hp| | | | | |HIP HIP | +25234 |480043 |VY Lep |052347.7-264838 |LB: | 9.08 | 9.19 | |Hp| | | | | |HIP HIP | +25981 |480044 |VZ Lep |053241.8-161909 |SRD | 6.76 | 6.86 | |Hp| | | | | |HIP HIP | +26243 |480045 |WW Lep |053526.6-154417 |LPB | 6.76 | 6.80 | |Hp| | | | | |HIP HIP | +26612 |480046 |WX Lep |053925.1-111237 |EB | 7.93 | 8.02 | |Hp| | | | | |HIP HIP | +27229 |480047 |WY Lep |054614.0-233840 |LB | 6.39 | 6.55 | |Hp| | | | | |HIP HIP | +27318 |480048 |WZ Lep |054714.0-124817 |LB | 7.26 | 7.55 | |Hp| | | | | |HIP HIP | +27748 |480049 |XX Lep |055223.8-261728 |ACV | 7.82 | 7.86 | |Hp| | | | | |HIP HIP | +28094 |480050 |XY Lep |055618.3-240520 |LB: | 7.75 | 7.85 | |Hp| | | | | |HIP HIP | +28973 |480051 |XZ Lep |060651.9-111025 |LPB | 6.60 | 6.62 | |Hp| | | | | |HIP HIP | +28984 |480052 |YY Lep |060657.5-214844 |SRB: | 5.60 | 5.82 | |Hp| | | | | |HIP HIP | +24825 |480053 |YZ Lep |051917.4-183112 |LPB | 6.30 | 6.36 | |Hp| | | | | |75160 BD | +28434 |480057 |AC Lep |060017.7-125400 |GDOR | 6.28 | 6.30 | |Hp| | | | | |75029 BD | +25486 |480060 |AF Lep |052704.8-115404 |RS | 6.26 | 6.35 | |V | | | 1. : | |F7V+G5V |78071 DM | +28778 |480076 |AW Lep |060435.1-140157 |GDOR: | 7.65 | 7.69 | |Hp| | | 0.4199 | |A9V |79145 DM | +24305 |489012 |mu. Lep |051255.9-161220 |ACV | 2.97 | 3.41 | |V | | | 2. : | |B9IIIp(Hg-Mn) |07968 BD | +75144 |490002 |S Lib *|152124.0-202318 |M | 7.5 | 13.0 | |V |41883. | | 192.9 |49 |M1.0e-M6.0e |00001 00002| +74350 |490008 |Y Lib *|151141.3-060041 |M | 7.6 | 14.7 | |V |44017. | | 275.7 |41 |M5e-M8.2e |00001 00002| +75393 |490011 |RS Lib *|152419.8-225440 |M | 7.0 | 13.0 | |V |42154. | | 217.65 |48 |M7e-M8.5e |00001 00002| +76152 |490013 |RU Lib *|153316.5-151935 |M | 7.2 | 14.4 | |V |41840. | | 316.56 |46 |M5e-M6e |00001 00002| +71380 |490014 |RV Lib *|143548.4-180212 |EA/D/RS | 9.02 | 9.50 | 9.44 |V |30887.236 | | 10.722164 |14 *|G5 |00279 00024| +77471 |490019 |SS Lib *|154905.1-153209 |EA/KE: | 10.4 | 11.3 | 10.8 |V |41155.660 | | 1.4379983 |20 |A5 |00001 01862| +76086 |490039 |UZ Lib |153223.2-083201 |FKCOM | 9.16 | 9.62 | |V |43222.15 | | 4.75 | |K0IIIe |09367 BD | +77663 |490043 |VY Lib *|155117.0-154503 |RRAB | 11.12 | 12.14 | |V |41144.370 | | 0.5339412 |14 |A7:-F7 |00001 00190| +76050 |490044 |VZ Lib *|153151.8-154110 |EW/KW | 10.13 | 10.63 | 10.55 |V |44788.59010 | | 0.35826334 | |F5 |09333 00279| +74063 |490052 |YY Lib |150810.7-211001 |M | 9. |< 12. | |p | | | 229.53 | |Me |01872 00464| +76313 |490108 |CG Lib *|153516.8-242013 |RRC | 11.20 | 11.80 | |V |41153.324 | | 0.306850 |32 |A4-G0 |00001 06286| +73315 |490152 |EH Lib *|145855.9-005653 |DSCT | 9.35 | 10.08 | |V |33438.6082 | | 0.0884132445 |32 |A5-F3 |09335 01874| +74765 |490162 |ES Lib *|151648.6-130221 |EB/KE | 7.10 | 7.57 | 7.33 |V |40329.4669 | | 0.8830356 | |A2-3V |07559 08953| +78207 |490187 |FX Lib *|155811.4-141646 |GCAS | 4.74 | 4.96 | |V | | | | |B5IIIpe |08419 BD | +73213 |490188 |FY Lib |145746.5-122615 |SRB | 7.06 | 7.78 | |V | | | 120. : | |M5III |08225 BD | +74982 |490189 |FZ Lib |151921.8-090848 |LB | 6.73 | 7.24 | |V | | | | |M4III |08225 BD | +76075 |490190 |GG Lib |153215.2-235249 |SR: | 6.83 | 6.93 | |V | | | | |M5:III |06866 CoD | +75325 |490206 |GX Lib |152326.1-063638 |RS | 7.31 |( 0.08 )| |V | | | | | |67404 BD | +75848 |490208 |GZ Lib |152934.7-172627 |ACVO | 6.66 | 6.71 | |V | | | | | |67408 BD | +74145 |490210 |HI Lib |150902.4-135959 |ACVO | 7.48 |( 0.007 )| |V | | | | | |68151 BD | +70945 |490212 |HL Lib |143040.5-222739 |ELL: | 6.93 | 7.02 | |V | | | | | |70065 BD | +75694 |490213 |HM Lib |152748.3-251010 |SR: | 7.42 | 7.63 | |V | | | | | |70066 CoD | +71253 |490214 |HN Lib |143416.8-123110 |BY | 10.30 | 10.33 | |V | | | | | |73018 BD | +74995 |490215 |HO Lib |151926.8-074320 |BY | 10.56 | 10.58 | |V | | | | | |73018 BD | +78078 |490218 |HR Lib |155633.4-144946 |DSCTC | 6.13 |( 0.02 b )| |V | | | | | |73185 BD | +70932 |490219 |HS Lib |143024.5-212952 |LB | 8.32 | 8.69 | |Hp| | | | | |HIP HIP | +72209 |490220 |HT Lib |144606.3-134555 |LB: | 9.32 | 9.44 | |Hp| | | | | |HIP HIP | +72566 |490221 |HU Lib |145015.7-075153 |SRD | 8.71 | 8.96 | |Hp| | | | | |HIP HIP | +73445 |490222 |HV Lib |150031.7-115228 |LB | 7.89 | 8.10 | |Hp| | | | | |HIP HIP | +73465 |490223 |HW Lib |150053.1-042720 |RR: | 9.09 | 9.22 | |Hp| | | | | |HIP HIP | +73604 |490224 |HX Lib |150242.7-250519 |LB: | 8.45 | 8.56 | |Hp| | | | | |HIP HIP | +73710 |490225 |HY Lib |150402.0-280341 |DSCT | 7.78 | 7.88 | |Hp| | | | | |HIP HIP | +73984 |490226 |HZ Lib |150709.7-085543 |LB: | 8.02 | 8.12 | |Hp| | | | | |HIP HIP | +74005 |490227 |II Lib |150725.4-144044 |SRB | 8.05 | 8.19 | |Hp| | | | | |HIP HIP | +74119 |490228 |IK Lib |150853.0-230358 |LB: | 7.91 | 8.02 | |Hp| | | | | |HIP HIP | +74127 |490229 |IL Lib |150856.8-114726 |E | 7.64 | 7.76 | |Hp| | | | | |HIP HIP | +74245 |490230 |IM Lib |151020.8-282759 |E: | 9.66 | 10.01 | |Hp| | | | | |HIP HIP | +74825 |490231 |IN Lib |151732.1-103002 |RR: | 7.33 | 7.42 | |Hp| | | | | |HIP HIP | +74838 |490232 |IO Lib |151739.6-171150 |RS: | 9.34 | 9.46 | |Hp| | | | | |HIP HIP | +75563 |490233 |IP Lib |152613.1-281838 |BY: | 9.97 | 10.15 | |Hp| | | | | |HIP HIP | +75715 |490234 |IQ Lib |152806.2-133106 |CEP: | 9.33 | 9.42 | |Hp| | | | | |HIP HIP | +75836 |490235 |IR Lib |152926.9-285052 |EW: | 8.72 | 8.83 | |Hp| | | | | |HIP HIP | +75992 |490236 |IS Lib |153108.8-051227 |LB: | 9.11 | 9.28 | |Hp| | | | | |HIP HIP | +76161 |490237 |IT Lib |153318.9-250137 |EA: | 9.01 | 9.51 | |Hp| | | | | |HIP HIP | +76243 |490238 |IU Lib |153426.5-091100 |LPB | 5.11 | 5.16 | |Hp| | | | | |HIP HIP | +76480 |490239 |IV Lib |153713.4-182006 |E: | 8.46 | 9.00 | |Hp| | | | | |HIP HIP | +76694 |490240 |IW Lib |153938.1-273128 |RR: | 9.45 | 9.56 | |Hp| | | | | |HIP HIP | +76828 |490241 |IX Lib |154110.1-115208 |LB: | 8.54 | 8.65 | |Hp| | | | | |HIP HIP | +76909 |490242 |IY Lib |154215.1-075451 |LB: | 7.90 | 8.01 | |Hp| | | | | |HIP HIP | +77861 |490243 |IZ Lib |155356.2-185703 |SRB | 7.52 | 7.63 | |Hp| | | | | |HIP HIP | +72428 |490245 |KL Lib |144834.9-010703 |DSCTC | 8.79 |( 0.02 v )| |V | | | | | |76263 DM | +71743 |490254 |KU Lib |144031.1-161234 |BY | 7.36 | 7.39 | |Hp| | | 9.35 | |G6V |78005 DM | +73184 |490257 |KX Lib |145728.0-212456 |BY | 5.72 |( 0.04 )| |V | | | | |K4V |78018 DM | +77707 |490258 |KY Lib |155156.6-092809 |RS | 8.93 |( 0.04 )| |V | | | 13.62 | |K2V |78018 DM | +73708 |490298 |NW Lib |150400.5-025105 |LB | 10.23 | 10.54 | |V | | | | |C4,4 |80001 HIP | NL80_2 +73473 |499004 |del Lib *|150058.4-083108 |EA/SD | 4.91 | 5.90 | 4.98 |V |42960.6994 | | 2.3273543 |23 *|A0IV-V |00001 08953| +77811 |499011 |lam Lib |155320.1-201001 |ELL | 5.03 |( 0.02 )| |V | | | | | |73186 BD | +73714 |499018 |sig Lib |150404.2-251655 |SRB | 3.20 | 3.46 | |V | | | 20. | |M3.5IIIa |06994 CoD | +73381 |500005 |V Lup |145944.0-532428 |LB: | 9.16 | 9.26 | |V | | | | |C5,5(Nb) | CoD | +71386 |500009 |Z Lup |143551.7-432203 |LB | 10.5 | 12.6 | |p | | | | |C4,3-C6,3(Na) | 06286| +70339 |500011 |RS Lup |142327.7-473121 |LB | 10.7 | 12.30 | |B | | | | |C(Nb) |00623 08588| +78094 |500013 |RU Lup *|155642.3-374916 |INT | 9.6 | 13.4 | |p | | | | |pec(T) | 04068| +70590 |500015 |RW Lup |142621.3-440911 |M | 9.9 | 13.0 | |p |28766. | | 197. |36 |MB |00016 06286| +78317 |500017 |RY Lup *|155928.4-402151 |INSB | 9.9 | 13.0 | |p | | | | |G0Vea |02412 03508| +77023 |500180 |FQ Lup |154333.6-371010 |L: | 9.5 | 10.5 | |p | | | | | |00503 08953| +75234 |500186 |FW Lup |152225.4-405536 |RR | 8.82 | 9.22 | |V |42171.377 | | 0.4841712 |23 |F5IV |07984 CoD | +74950 |500190 |GG Lup *|151856.4-404718 |EB/DM | 5.49 | 6.0 | 5.8 |B |34532.325 | | 2.164175 | |B7V |05137 08953| +75430 |500191 |GH Lup |152438.3-525114 |CEP | 7.55 | 7.83 | |V |41125.4 | | 9.285 | |G2Iab |03931 05742| +73764 |500195 |GM Lup |150442.9-405141 |LB: | 6.38 : | 6.7 | |V | | | | |M6III |05150 CoD | +75727 |500197 |GO Lup *|152813.3-372131 |SRB | 6.98 | 7.19 | |V | | | | |M4III |06645 CoD | +74321 |500216 |HP Lup |151126.8-361457 |EA | 9.27 | 9.52 | |V | | | | | |67411 CoD | +75558 |500217 |HQ Lup |152606.9-395320 |ACV | 7.37 | 7.38 | |V | | | | | |67248 CoD | +74066 |500218 |HR Lup |150812.1-403502 |ACV | 5.76 | 5.81 | |V | | | | | |68154 CoD | +74049 |500219 |HS Lup |150757.8-453446 |E:/RS: | 7.74 |( 0.04 )| |V | | | | | |70067 CoD | +77157 |500220 |HT Lup |154512.9-341731 |INT | 10.26 | 10.40 | |V | | | | | |70069 70068| +70270 |500224 |HX Lup |142238.7-481912 |ELL: | 6.09 |( 0.06 )| |V | | | | | |72099 CoD | +73937 |500226 |HZ Lup |150633.2-305507 |ACV | 5.96 |( 0.07 U )| |V | | | | | |72101 CoD | +78053 |500230 |IM Lup |155609.2-375606 |INT | 11.73 | 12.09 | |y | | | | | |72107 72108| +78435 |500232 |IO Lup |160046.9-390519 |DSCTC | 6.65 |( 0.03 b )| |V | | | | | |73187 CoD | +70530 |500233 |IP Lup |142543.9-532715 |ACV | 7.95 | 8.04 | |Hp| | | | | |HIP HIP | +70840 |500234 |IQ Lup |142910.2-501121 |E: | 10.40 | 10.72 | |Hp| | | | | |HIP HIP | +71128 |500235 |IR Lup |143246.5-450622 |LB: | 8.49 | 8.60 | |Hp| | | | | |HIP HIP | +71666 |500236 |IS Lup |143928.8-510929 |LPB | 9.29 | 9.33 | |Hp| | | | | |HIP HIP | +71727 |500237 |IT Lup |144019.3-454738 |ACV | 6.56 | 6.60 | |Hp| | | | | |HIP HIP | +73479 |500238 |IU Lup |150101.4-425958 |EA | 8.78 | 9.10 | |Hp| | | | | |HIP HIP | +73526 |500239 |IV Lup |150143.3-454932 |LB | 8.03 | 8.37 | |Hp| | | | | |HIP HIP | +73763 |500240 |IW Lup |150442.6-333643 |SRB | 8.83 | 9.00 | |Hp| | | | | |HIP HIP | +74152 |500241 |IX Lup |150905.7-545536 |LB: | 8.30 | 8.40 | |Hp| | | | | |HIP HIP | +74166 |500242 |IY Lup |150914.8-325008 |LB: | 8.23 | 8.35 | |Hp| | | | | |HIP HIP | +74252 |500243 |IZ Lup |151030.6-473643 |SRB | 8.30 | 8.45 | |Hp| | | | | |HIP HIP | +74369 |500244 |KK Lup |151150.4-464506 |LB | 7.59 | 7.87 | |Hp| | | | | |HIP HIP | +74714 |500245 |KL Lup |151608.6-373005 |LB: | 8.23 | 8.34 | |Hp| | | | | |HIP HIP | +74807 |500246 |KM Lup |151717.5-415537 |LB: | 7.57 | 7.69 | |Hp| | | | | |HIP HIP | +75035 |500247 |KN Lup |151956.5-300625 |BY: | 9.21 | 9.33 | |Hp| | | | | |HIP HIP | +75207 |500248 |KO Lup |152208.8-321123 |LB: | 6.89 | 6.99 | |Hp| | | | | |HIP HIP | +75620 |500249 |KP Lup |152704.2-482720 |LB: | 7.93 | 8.18 | |Hp| | | | | |HIP HIP | +75818 |500250 |KQ Lup |152919.3-383806 |E: | 6.50 | 6.54 | |Hp| | | | | |HIP HIP | +75924 |500251 |KR Lup |153026.2-321813 |BY: | 8.87 | 8.98 | |Hp| | | | | |HIP HIP | +76044 |500252 |KS Lup |153148.5-373847 |LB | 8.89 | 8.98 | |Hp| | | | | |HIP HIP | +76371 |500253 |KT Lup |153553.3-445730 |BE | 4.48 | 4.50 | |Hp| | | | | |HIP HIP | +76762 |500254 |KU Lup |154024.7-441719 |ACV | 6.93 | 6.99 | |Hp| | | | | |HIP HIP | +76987 |500255 |KV Lup |154310.9-375506 |EB | 8.75 | 8.97 | |Hp| | | | | |HIP HIP | +77199 |500256 |KW Lup |154547.6-302056 |BY: | 9.40 | 9.58 | |Hp| | | | | |HIP HIP | +77462 |500257 |KX Lup |154856.3-383645 |LB: | 8.34 | 8.44 | |Hp| | | | | |HIP HIP | +77657 |500258 |KY Lup |155114.5-313027 |ACV | 8.88 | 8.99 | |Hp| | | | | |HIP HIP | +77691 |500259 |KZ Lup |155141.2-380929 |SRB | 8.30 | 8.84 | |Hp| | | | | |HIP HIP | +78533 |500260 |LL Lup |160158.9-373204 |ACV: | 7.41 | 7.47 | |Hp| | | | | |HIP HIP | +78756 |500261 |LM Lup |160444.5-392605 |ACV | 6.90 | 6.94 | |Hp| | | | | |HIP HIP | +78781 |500262 |LN Lup |160501.1-391300 |SRB | 7.37 | 7.72 | |Hp| | | | | |HIP HIP | +76485 |500299 |NX Lup |153716.9-320326 |GDOR | 7.95 | 8.03 | |Hp| | | | |F0V |78024 DM | +72178 |500302 |OO Lup *|144546.2-464812 |EA | 8.66 | 8.75 | 8.75 |V |48347.805 | | 7.06114 |04 : |F3/F5V |79006 DM | +73780 |500305 |OR Lup *|150450.4-532136 |EA | 9.28 | 9.55 | 9.53 |V |48681.670 | | 7.55596 |04 |G0IV/V |79003 DM | +74348 |500312 |OY Lup |151140.0-421126 |EA | 8.94 | 9.05 | 9.03 |V |52878.610 | | 6.14395 |04 : |A1mA3-A6 |79009 DM | +77972 |500314 |PP Lup *|155524.2-415530 |EA | 8.67 | 9.06 | 8.82 |V |53170.910 | | 29.6924 |04 |A7+F |79006 DM | +75787 |500376 |V0376 Lup |152855.7-530517 |BCEP: | 8.17 | 8.20 | |Hp| | | 0.564882 | |B9III |80019 HIP | NL80_2 +71860 |509001 |alf Lup *|144155.8-472318 |BCEP | 2.29 | 2.34 | |V |37418.395 | | 0.2598466 | |B1.5III |09370 CoD | +76297 |509003 |gam Lup *|153508.4-411000 |ELL: | 2.69 | 2.71 | |Hp| | | | | |HIP HIP | +75141 |509004 |del Lup *|152122.3-403851 |BCEP | 3.20 | 3.24 | |V |41045.172 | | 0.16547 |50 |B1.5IV |06356 CoD | +71121 |509018 |sig Lup |143237.1-502726 |ELL: | 4.42 |( 0.02 )| |V | | | | | |72099 CoD | +33824 |510001 |R Lyn *|070118.0+551950 |M | 7.2 | 14.3 | |V |45175. | | 378.75 |44 |S2.5,5e-S6,8e: |00001 00002| +41058 |510003 |T Lyn *|082242.9+333109 |M | 8.8 | 13.5 | |V |43200. | | 406.0 |47 |C5,2e-C7,1e(NOe) |00001 00002| +30945 |510005 |V Lyn *|062940.9+613233 |SRB | 9.5 | 12.0 | |p | | | | |M5III-IV |00310 08953| +40546 |510006 |W Lyn |081646.9+400753 |M | 7.5 | 14.0 | |V |42050. | | 295.2 | |M6 |00001 06286| +36288 |510008 |Y Lyn *|072811.6+455926 |SRC | 7.8 | 10.3 | |p | | | 110. | |M6SIb-II |00361 08953| +39878 |510009 |Z Lyn |080844.1+574945 |CST: | 8.8 | | |p | | | | |A2 |00179 00119| +30651 |510010 |RR Lyn *|062625.8+561706 |EA/DM | 5.52 | 6.03 | 5.90 |V |33153.8623 | | 9.945079 |04 *|A7Vm+F3V |08626 02465| +39433 |510022 |SV Lyn |080339.9+362042 |SRB | 8.2 | 9.1 | |p | | | 70. : | |M5III |05429 02378| +39771 |510023 |SW Lyn *|080741.6+414802 |EA/DW | 9.51 | 10.20 | 9.65 |V |43975.390 | | 0.6440634 |12 |F2V |00001 02378| +39960 |510026 |SZ Lyn *|080935.8+442818 |DSCT | 9.08 | 9.72 | |V |38124.39824 | | 0.120534920 |30 |A7-F2 |09389 02378| +44428 |510027 |TT Lyn *|090307.8+443508 |RRAB | 9.42 | 10.21 | |V |36651.3560 | | 0.597434355 |17 |F0-F8 |07366 03252| +36750 |510029 |TV Lyn *|073331.7+474810 |RRC | 11.24 | 11.66 | |V |40950.922 | | 0.24065119 |42 |A6 |04957 07350| +37805 |510030 |TW Lyn *|074506.3+430642 |RRAB | 11.0 | 12.3 | |p |45022.458 | | 0.481860 |17 |F6-F8: |09334 02819| +41782 |510033 |TZ Lyn *|083110.6+401330 |ACV | 6.65 | 6.79 | |V |37311.12 | | 6.80054 |56 |A0p(Eu-Cr-Sr) |09390 BD | +44455 |510035 |UV Lyn *|090324.1+380555 |EW/KW | 9.41 | 9.81 | 9.78 |V |40271.5032 | | 0.41498088 | |F8 |09391 06991| +29919 |510036 |UW Lyn |061754.8+613055 |LB: | 4.95 |( 0.11 )| |V | | | | |M3IIIab |05840 BD | +44481 |510037 |UX Lyn |090347.1+384432 |SRB: | 6.60 | 6.78 | |V | | | | |M6III |06357 BD | +34912 |510038 |UY Lyn |071323.4+512544 |LB: | 5.47 | 5.55 | |V | | | | |M3IIIab |01371 BD | +30060 |510039 |UZ Lyn *|061937.4+590040 |E:+DSCTC: | 4.43 | 4.73 | |V | | | | |A2V |08547 BD | +36626 |510040 |VV Lyn *|073157.7+361310 |UV+BY: | 10.53 | 10.60 | |V | | | | |M3.5Ve |08313 07060| +39348 |510059 |AE Lyn |080235.8+571625 |RS | 6.49 |( 0.06 )| |V | | | | | |67412 BD | +45649 |510083 |BE Lyn |091817.2+460911 |DSCT | 8.60 | 9.00 | |V | | | | | |69188 BD | +45963 |510084 |BF Lyn |092225.9+401204 |BY | 7.72 |( 0.1 )| |V | | | | | |69190 BD | +36627 |510089 |BL Lyn |073157.3+361347 |BY | 11.76 | 11.80 | |V | | | | | |73018 73102| +38003 |510090 |BM Lyn |074720.8+472018 |RS+E | 7.70 |( 0.25 )| |V | | | | | |73005 BD | +41075 |510091 |BN Lyn |082250.1+431117 |SRD: | 4.21 | 4.27 | |V | | | | | |73039 BD | +31359 |510094 |BQ Lyn |063432.8+552111 |SRD | 6.48 | 6.69 | |Hp| | | | | |HIP HIP | +33100 |510095 |BR Lyn |065338.1+610056 |SRB: | 7.39 | 7.95 | |Hp| | | | | |HIP HIP | +33707 |510096 |BS Lyn |070011.5+560709 |LB: | 8.36 | 8.46 | |Hp| | | | | |HIP HIP | +34343 |510097 |BT Lyn |070710.1+543455 |SRB | 9.18 | 9.45 | |Hp| | | | | |HIP HIP | +34362 |510098 |BU Lyn |070722.9+514755 |SRB: | 8.61 | 8.80 | |Hp| | | | | |HIP HIP | +34435 |510099 |BV Lyn |070821.0+611432 |LB: | 8.13 | 8.25 | |Hp| | | | | |HIP HIP | +35525 |510100 |BW Lyn |071955.9+594148 |SRB | 8.22 | 8.41 | |Hp| | | | | |HIP HIP | +35977 |510101 |BX Lyn |072451.4+522400 |LB: | 8.37 | 8.48 | |Hp| | | | | |HIP HIP | +36334 |510102 |BY Lyn |072843.5+475515 |SRB: | 6.60 | 6.70 | |Hp| | | | | |HIP HIP | +36545 |510103 |BZ Lyn |073103.5+500255 |SRB: | 7.56 | 7.72 | |Hp| | | | | |HIP HIP | +36965 |510104 |CC Lyn |073556.0+430152 |EW | 6.42 | 6.52 | |Hp| | | | | |HIP HIP | +37615 |510105 |CD Lyn |074306.4+484110 |E: | 9.83 | 10.37 | |Hp| | | | | |HIP HIP | +37707 |510106 |CE Lyn |074409.5+385016 |SRB | 7.20 | 7.66 | |Hp| | | | | |HIP HIP | +37748 |510107 |CF Lyn |074432.3+364144 |E | 9.61 | 9.93 | |Hp| | | | | |HIP HIP | +37847 |510108 |CG Lyn |074531.7+420603 |LB: | 8.65 | 8.77 | |Hp| | | | | |HIP HIP | +37973 |510109 |CH Lyn |074700.4+553229 |SRB | 7.93 | 8.07 | |Hp| | | | | |HIP HIP | +37999 |510110 |CI Lyn |074715.6+420313 |SRD | 8.70 | 8.86 | |Hp| | | | | |HIP HIP | +38257 |510111 |CK Lyn |075013.5+394615 |LB | 6.81 | 6.94 | |Hp| | | | | |HIP HIP | +38684 |510112 |CL Lyn |075512.5+540946 |EA | 9.78 | 10.37 | |Hp| | | | | |HIP HIP | +38738 |510113 |CM Lyn |075550.6+380312 |LB | 8.48 | 8.83 | |Hp| | | | | |HIP HIP | +39250 |510114 |CN Lyn |080137.2+384458 |EA | 9.07 | 9.58 | |Hp| | | | | |HIP HIP | +39944 |510115 |CO Lyn |080928.9+551521 |DSCTC | 6.88 | 6.94 | |Hp| | | | | |HIP HIP | +40135 |510116 |CP Lyn |081149.5+514609 |LB: | 8.11 | 8.21 | |Hp| | | | | |HIP HIP | +40230 |510117 |CQ Lyn |081259.0+553731 |DSCT | 8.04 | 8.14 | |Hp| | | | | |HIP HIP | +40651 |510118 |CR Lyn |081753.7+432435 |DSCTC | 7.70 | 7.77 | |Hp| | | | | |HIP HIP | +40641 |510119 |CS Lyn |081747.5+375204 |EB | 8.49 | 8.67 | |Hp| | | | | |HIP HIP | +40931 |510120 |CT Lyn |082111.4+351948 |SRB | 7.97 | 8.11 | |Hp| | | | | |HIP HIP | +41149 |510121 |CU Lyn |082345.9+361851 |LB | 8.76 | 8.97 | |Hp| | | | | |HIP HIP | +41302 |510122 |CV Lyn |082537.4+521656 |SRB: | 8.61 | 8.73 | |Hp| | | | | |HIP HIP | +42554 |510123 |CW Lyn *|084026.3+445418 |EB: | 9.61 | 9.85 | |Hp| | | | | |HIP HIP | +42744 |510124 |CX Lyn |084241.7+390341 |LB | 7.48 | 7.65 | |Hp| | | | | |HIP HIP | +43685 |510125 |CY Lyn |085355.7+353218 |ELL: | 6.15 | 6.18 | |Hp| | | | | |HIP HIP | +43963 |510126 |CZ Lyn |085712.1+412027 |SRB | 7.92 | 8.07 | |Hp| | | | | |HIP HIP | +38723 |510127 |DD Lyn |075540.8+352446 |DSCTC | 6.23 |( 0.03 b )| |V | | | | | |75040 BD | +47053 |510132 |DI Lyn |093522.5+395748 |EA | 6.79 | 6.87 | |V | | | | | |75167 BD | +37863 |510137 |DO Lyn |074542.3+393249 |GDOR | 7.17 |( 0.05 )| |V | | | | | |76080 DM | +37946 |510143 |DU Lyn |074639.3+373103 |SRB | 5.18 |( 0.13 )| |V | | | | | |77065 DM | +36704 |510146 |DX Lyn |073300.6+370147 |BY | 7.68 |( 0.02 )| |V | | | 8.03 | |G5V |78018 DM | +40395 |510149 |EE Lyn |081450.3+484916 |DSCTC | 9.12 | 9.14 | |V | | | 0.05 : | |F0 |78022 DM | +40791 |510150 |EF Lyn |081931.8+350244 |GDOR | 7.23 | 7.27 | |Hp| | | 0.4229 | |A5 |78091 DM | +45290 |510153 |EI Lyn |091348.2+431304 |SXARI | 5.32 |( 0.03 )| |V | | | 3.834 | |B8IIIp |78127 DM | +38458 |510163 |ET Lyn |075240.0+393218 |DSCTC | 7.38 | 7.42 | |V | | | 0.184373 | |gF1 |80092 HIP | NL80_2 +92862 |520001 |R Lyr |185520.1+435646 |SRB | 3.88 | 5.0 | |V | | | 46. : | |M5III |09225 00002| +90883 |520003 |T Lyr |183220.1+365956 |LB | 7.84 | 9.6 | |V | | | | |C6,5(R6) | 00103| +89419 |520006 |W Lyr *|181455.9+364013 |M | 7.3 | 13.0 | |V |45084. | | 197.88 |48 |M2e-M8e |00001 00002| +95497 |520010 |RR Lyr *|192527.9+424704 |RRAB | 7.06 | 8.12 | |V |42923.4193 | | 0.56686776 |19 |A5.0-F7.0 |09338 06874| +94438 |520019 |SS Lyr *|191315.5+465856 |M | 8.4 | 14.0 | |V |45090. | | 346.33 | |M5IIIe |00001 00563| +89498 |520033 |TZ Lyr *|181549.7+410638 |EB/D | 10.87 | 11.85 | 11.05 |V |44784.4093 | | 0.5288269 | |F5V |00001 00529| +91373 |520050 |XY Lyr |183806.5+394006 |LC | 5.80 | 6.35 | |V | | | | |M4-5Ib-II |09344 02396| +91015 |520104 |CC Lyr *|183357.4+313824 |CWA | 11.65 | 12.45 | |V |44045.09 | | 24.16 : |21 |F0p |00001 09341| +91634 |520114 |CN Lyr |184115.9+284321 |RRAB | 11.07 | 11.76 | |V |44486.3338 | | 0.41138232 |22 |F0-F5 |03426 00133| +92221 |520169 |EZ Lyr *|184741.2+355927 |RRAB | 10.8 | 11.8 | |V |33914.3357 | | 0.52526769 |10 |A7-F4 |09341 00464| +91703 |520173 |FI Lyr |184204.8+285730 |SRB | 9.6 | 10.4 | |V | | | 146. | |M |00335 09341| +94335 |520175 |FL Lyr *|191204.9+461927 |EA/DM | 9.27 | 9.89 | 9.52 |V |38221.55250 | | 2.1781544 |08 *|G0V |03435 03433| +91774 |520211 |HK Lyr |184250.0+365731 |LB | 7.8 | 9.6 | |V | | | | |C6,4(N4) | 00346| +95032 |520215 |HO Lyr |192008.8+414059 |M | 11.4 | 14.0 | |p |30584. | | 100.4 |40 |M2e |00346 00346| +90053 |520232 |IO Lyr *|182238.0+325733 |RRAB | 11.27 | 12.24 | |V |39618.9315 | | 0.57712278 |18 |F1-F6 |00001 00350| +93989 |520398 |V0398 Lyr |190813.2+390918 |LB | 7.30 : | 7.57 | |V | | | | |M6 |05445 BD | +94311 |520471 |V0471 Lyr |191146.0+311700 |ACV | 5.91 | 5.98 | |V |41449.99 | | 1.160898 | |B9p(Si) |09308 BD | +94685 |520473 |V0473 Lyr *|191559.5+275535 |DCEPS: | 5.99 | 6.35 | |V |39320.6859 | | 1.49078 |50 |F6Ib-II |04071 BD | +93926 |520478 |V0478 Lyr |190732.4+301516 |RS | 7.63 |( 0.033 )| |V |44506.76 | | 2.185 | |G6V |08770 BD | +93817 |520511 |V0511 Lyr |190621.3+274248 |RS | 8.92 |( 0.08 )| |V | | | | | |73005 BD | +89645 |520527 |V0527 Lyr |181739.4+345506 |LB: | 9.26 | 9.60 | |Hp| | | | | |HIP HIP | +90170 |520528 |V0528 Lyr |182400.0+435428 |SRB | 6.61 | 6.77 | |Hp| | | | | |HIP HIP | +90293 |520529 |V0529 Lyr |182523.1+382627 |ACV | 7.32 | 7.35 | |Hp| | | | | |HIP HIP | +90723 |520530 |V0530 Lyr |183034.6+361457 |LB: | 7.40 | 7.51 | |Hp| | | | | |HIP HIP | +90880 |520531 |V0531 Lyr *|183217.1+362534 |E: | 8.27 | 8.63 | |Hp| | | | | |HIP HIP | +90970 |520532 |V0532 Lyr |183323.0+305332 |BE | 6.44 | 6.54 | |Hp| | | | | |HIP HIP | +91250 |520533 |V0533 Lyr |183645.5+431319 |EB | 6.26 | 6.38 | |Hp| | | | | |HIP HIP | +91359 |520534 |V0534 Lyr |183758.8+372606 |ACYG: | 8.08 | 8.42 | |Hp| | | | | |HIP HIP | +91671 |520535 |V0535 Lyr |184140.2+340556 |LPB | 7.36 | 7.40 | |Hp| | | | | |HIP HIP | +91789 |520536 |V0536 Lyr |184301.1+294828 |LB | 7.97 | 8.27 | |Hp| | | | | |HIP HIP | +92048 |520537 |V0537 Lyr |184541.5+412420 |LB: | 7.89 | 8.02 | |Hp| | | | | |HIP HIP | +92335 |520538 |V0538 Lyr |184907.9+473057 |LB | 7.11 | 7.45 | |Hp| | | | | |HIP HIP | +92537 |520539 |V0539 Lyr |185126.8+391914 |EA | 7.26 | 7.31 | |Hp| | | | | |HIP HIP | +92513 |520540 |V0540 Lyr |185112.0+464418 |LB | 7.77 | 7.94 | |Hp| | | | | |HIP HIP | +92700 |520541 |V0541 Lyr |185318.5+405943 |LB | 6.44 | 6.66 | |Hp| | | | | |HIP HIP | +93104 |520542 |V0542 Lyr |185801.9+381558 |EA | 5.83 | 5.95 | |Hp| | | | | |HIP HIP | +93177 |520543 |V0543 Lyr |185846.6+404045 |BCEP: | 6.10 | 6.20 | |Hp| | | | | |HIP HIP | +93214 |520544 |V0544 Lyr |185914.8+314054 |DSCTC | 7.51 | 7.54 | |Hp| | | | | |HIP HIP | +93210 |520545 |V0545 Lyr |185912.3+391302 |LPB: | 6.36 | 6.38 | |Hp| | | | | |HIP HIP | +93222 |520546 |V0546 Lyr |185921.4+413813 |LB: | 7.78 | 7.88 | |Hp| | | | | |HIP HIP | +93309 |520547 |V0547 Lyr |190019.1+404102 |LB | 6.48 | 6.58 | |Hp| | | | | |HIP HIP | +93359 |520548 |V0548 Lyr |190057.8+462924 |SRB | 8.49 | 8.75 | |Hp| | | | | |HIP HIP | +93633 |520549 |V0549 Lyr |190402.1+330216 |DSCTC: | 8.11 | 8.14 | |Hp| | | | | |HIP HIP | +93808 |520550 |V0550 Lyr *|190617.0+412450 |LPB | 6.43 | 6.47 | |Hp| | | | | |HIP HIP | +93907 |520551 |V0551 Lyr |190719.2+410315 |ELL: | 7.11 | 7.17 | |Hp| | | | | |HIP HIP | +94354 |520552 |V0552 Lyr |191217.4+411416 |LB | 7.05 | 7.18 | |Hp| | | | | |HIP HIP | +94474 |520553 |V0553 Lyr |191339.7+271822 |LB | 9.51 | 10.19 | |Hp| | | | | |HIP HIP | +94619 |520554 |V0554 Lyr |191517.3+400649 |ACV: | 8.06 | 8.14 | |Hp| | | | | |HIP HIP | +94862 |520555 |V0555 Lyr |191812.1+340810 |LB | 8.45 | 8.59 | |Hp| | | | | |HIP HIP | +95459 |520556 |V0556 Lyr |192508.3+355958 |EB | 8.09 | 8.30 | |Hp| | | | | |HIP HIP | +95537 |520557 |V0557 Lyr |192558.3+361111 |SRD | 7.22 | 7.46 | |Hp| | | | | |HIP HIP | +95673 |520558 |V0558 Lyr |192736.4+375628 |BE | 6.22 | 6.30 | |Hp| | | | | |HIP HIP | +89771 |520590 |V0590 Lyr |181908.8+331353 |BY | 8.28 |( 0.02 )| |V | | | 4.825 | |K0V |78018 DM | +92122 |520595 |V0595 Lyr |184634.6+382103 |BY | 8.10 |( 0.02 )| |V | | | 10.973 | |G5V |78018 DM | +91262 |529001 |alf Lyr *|183656.3+384701 |DSCTC | -0.02 | 0.07 | |V | | | 0.19 | |A0V |04126 BD | +92420 |529002 |bet Lyr *|185004.8+332146 |EB | 3.25 | 4.36 | 3.85 |V |08247.950 | | 12.913834 | |B8II-IIIep |07042 08953| +93903 |529009 |iot Lyr |190718.1+360601 |BE | 5.20 | 5.27 | |Hp| | | | | |HIP HIP | +19424 |530004 |U Men *|040935.9-815118 |SRA | 8.0 | 10.9 | |p |36065. | | 407.28 | |Me |00001 08953| +25472 |530032 |TY Men *|052649.7-813507 |EW/K | 8.08 | 8.56 | 8.47 |V |42054.7973 | | 0.46166701 | |A3-4V |08590 CPD | +25776 |530033 |TZ Men *|053013.9-844706 |EA/D | 6.19 | 6.87 | 6.36 |V |39190.34 | | 8.56898 |04 *|A1III+B9V: |05334 08953| +25760 |530037 |UX Men *|053003.2-761455 |EA/DM | 8.8 | 9.57 | 9.47 |p |41984.64388 | | 4.181100 |05 *|G1V+G1V |07981 CoD | +26169 |530046 |WX Men |053444.8-734429 |LB: | 5.72 |( 0.15 )| |V | | | | |M2-3III |05840 CPD | +22260 |530051 |XZ Men *|044734.6-794826 |DSCTC(B) | 7.85 |( 0.03 )| |V | | | | |A3p |09378 CPD | +23106 |530052 |YY Men |045817.9-751638 |FKCOM: | 8.60 | 8.89 | |V | | | | | |67422 CPD | +24085 |530053 |YZ Men |051026.8-771302 |RS | 7.69 | 7.75 | |V | | | | | |68026 CPD | +30582 |530059 |AE Men |062540.3-720235 |RS | 8.24 | 8.33 | |V | | | | | |69011 CPD | +17955 |530063 |AI Men |035019.1-755344 |SRB | 7.42 | 7.48 | |Hp| | | | | |HIP HIP | +18179 |530064 |AK Men |035320.0-794835 |DSCT | 9.13 | 9.27 | |Hp| | | | | |HIP HIP | +25864 |530065 |AL Men |053118.6-790032 |EB | 8.90 | 9.21 | |Hp| | | | | |HIP HIP | +28587 |530066 |AM Men |060204.8-704031 |LB: | 8.48 | 8.58 | |Hp| | | | | |HIP HIP | +28440 |530067 |AN Men *|060019.5-803553 |EW | 9.36 | 9.54 | |Hp| | | | | |HIP HIP | +29964 |530068 |AO Men |061828.2-720242 |BY: | 9.96 | 10.18 | |Hp| | | | | |HIP HIP | +31678 |530069 |AP Men |063741.7-773219 |SRB | 7.64 | 7.98 | |Hp| | | | | |HIP HIP | +26264 |539009 |iot Men *|053536.2-784915 |ELL: | 6.00 | 6.05 | 6.05 |V |41979.85 | | 5.288 | |B8II |07983 CPD | +101985|540001 |R Mic *|204003.0-284731 |M | 8.3 | 13.8 | |V |43311. | | 138.62 |46 |M4e |00001 00002| +100935|540003 |T Mic |202755.2-281540 |SRB | 7.7 | 9.6 | |p | | | 347. | |M6e |00358 06478| +101063|540004 |U Mic *|202915.8-402501 |M | 7.0 | 14.4 | |V |39540. | | 334.29 |39 |M5e-M7e |00001 00002| +105638|540005 |V Mic *|212348.8-404205 |M | 9.4 | 14.0 | |p |30044. | | 381.15 | |M3e-M6e |00001 08953| +105026|540009 |Z Mic *|211622.7-301703 |RRAB | 11.23 | 11.86 | |V |41597.376 | | 0.5869340 |15 |F0-F8II |07984 06286| +104986|540010 |RR Mic *|211549.3-431140 |CWA | 11.01 | 11.86 | |V |44139.57 | | 31.52 |19 | |05127 CoD | +103684|540054 |ZZ Mic *|210035.2-423920 |DSCT(B:) | 9.27 | 9.69 | |V |40442.8443 | | 0.0671835 |40 |A3-A8IV |06432 06431| +102141|540073 |AT Mic *|204151.2-322607 |UV | 11.4 | 12.90 | |U | | | | |M4.5Ve+M4.5Ve |05865 05288| +102409|540074 |AU Mic *|204509.5-312027 |BY+UV | 8.59 | 8.96 | |V |42720.75 | | 4.865 | |M1.6Ve |06168 CoD | +102096|540075 |AV Mic |204124.7-420802 |LC: | 6.25 | 6.35 | |V | | | | |M3II |06351 CoD | +105249|540076 |AW Mic *|211905.9-335508 |RRC: | 9.04 | 9.13 | |V | | | 0.479 : | |B9 |07896 CoD | +105090|540077 |AX Mic *|211715.3-385203 |UV | 9.21 | 9.31 | |U | | | | |M0Ve |08771 CoD | +104861|540090 |BM Mic |211431.1-304527 |RS | 8.23 | 8.45 | |V | | | | | |69011 CoD | +104894|540091 |BN Mic |211452.7-311101 |RS | 7.68 | 7.94 | |V | | | | | |69011 CoD | +102626|540092 |BO Mic |204745.0-363541 |BY | 9.2 |( 0.21 )| |V | | | | | |73196 CoD | +105912|540095 |BR Mic |212701.1-315621 |BCEP | 8.78 | 8.82 | |V | | | | | |73197 CoD | +101678|540096 |BS Mic |203635.8-380132 |LB | 8.64 | 9.02 | |Hp| | | | | |HIP HIP | +101977|540097 |BT Mic |203957.3-433623 |EB | 10.14 | 10.41 | |Hp| | | | | |HIP HIP | +101968|540098 |BU Mic |203952.5-360201 |DSCTC | 7.28 | 7.32 | |Hp| | | | | |HIP HIP | +102256|540099 |BV Mic |204312.5-321735 |EA: | 9.86 | 10.20 | |Hp| | | | | |HIP HIP | +102355|540100 |BW Mic |204421.1-343108 |SRD: | 9.19 | 9.31 | |Hp| | | | | |HIP HIP | +102412|540101 |BX Mic |204511.7-350959 |EB: | 6.91 | 6.96 | |Hp| | | | | |HIP HIP | +103168|540102 |BY Mic |205406.6-275531 |LB: | 6.49 | 6.52 | |Hp| | | | | |HIP HIP | +103625|540103 |BZ Mic |205944.1-433026 |LB | 8.72 | 8.90 | |Hp| | | | | |HIP HIP | +105058|540104 |CC Mic |211655.7-283617 |E: | 9.76 | 10.17 | |Hp| | | | | |HIP HIP | +105464|540105 |CD Mic |212143.9-300855 |E: | 8.59 | 9.04 | |Hp| | | | | |HIP HIP | +105648|540106 |CE Mic |212356.1-442330 |BY: | 11.17 | 11.39 | |Hp| | | | | |HIP HIP | +105788|540107 |CF Mic |212528.4-414207 |LB | 7.28 | 7.90 | |Hp| | | | | |HIP HIP | +31978 |550002 |S Mon *|064058.7+095345 |IA: | 4.62 | 4.68 | |V | | | | |O7.5III-Vf | 02750| +30541 |550003 |T Mon *|062513.0+070509 |DCEP | 5.58 | 6.62 | |V |43784.615 | | 27.024649 |27 |F7Iab-K1Iab+A0V |09029 00559| +36521 |550004 |U Mon *|073047.5-094637 |RVB | 6.1 | 8.8 | |p |38496. | | 91.32 |22 |F8eVIb-K0pIb(M2) |08125 00368| +30326 |550005 |V Mon *|062243.6-021144 |M | 6.0 | 13.9 | |V |44972. | | 340.5 |46 |M5e-M8e |00001 00002| +33441 |550007 |X Mon *|065711.8-090352 |SRA | 6.8 | 10.2 | |V |42446. | | 155.8 |51 |M1eIII-M6ep |00001 00002| +39877 |550012 |RT Mon |080843.5-104723 |SRB | 8.13 | 10.3 | |V | | | 107. |49 |M3-4III |00374 08953| +33163 |550013 |RU Mon *|065412.3-073545 |EA/DM | 10.33 | 11.18 | 11.06 |V |41743.1947 | | 3.584749 |06 *|B9p |09546 00102| +33550 |550014 |RV Mon *|065821.5+061002 |SRB | 9.71 | 11.9 | |B | | | 131.5 | |C4,4-C6,2(Nb/R9) |00372 00119| +31383 |550015 |RW Mon *|063445.9+084932 |EA/SD | 9.26 | 11.51 | 9.45 |V |33680.4481 | | 1.90609412 |15 |B9V+F8V-G0IV |09399 03455| +36394 |550016 |RX Mon *|072921.3-041644 |M | 9.6 |< 13.0 | |p |35800. | | 345.7 | |M6e-M9 |00001 00528| +34326 |550017 |RY Mon *|070656.5-073327 |SRA | 7.5 | 9.2 | |V |27440. | | 455.7 |43 |C5,5-C7,4:(N5/R) |00001 08953| +30219 |550022 |SV Mon *|062126.3+062813 |DCEP | 7.61 | 8.88 | |V |43794.338 | | 15.232780 |38 |F6-G4 |09029 00560| +30701 |550023 |SW Mon |062701.0+052244 |SRB | 9.05 | 10.9 | |V | | | 112. | |M4III-M6 |00507 00002| +32915 |550026 |SZ Mon *|065127.8-012216 |RVA | 9.66 | 10.75 | 10.55 |V |40550.0 | | 32.685 | |F9-K5 |00001 03453| +36043 |550027 |TT Mon |072540.6-055101 |M | 8.0 |< 13.5 | |p |38323. | | 323.17 | |M5e-M8 |00001 00400| +38523 |550028 |TU Mon *|075319.8-030231 |EA/SD | 9.0 | 11.7 | 9.1 |p |34068.1230 | | 5.0490291 |15 *|B5V+A5III: |08608 02532| +32854 |550031 |TX Mon *|065052.3-012545 |DCEP | 10.67 | 11.36 | |V |35838.977 | | 8.701731 |36 |F6-G2 |03453 00380| +33520 |550033 |TZ Mon |065800.9-002234 |DCEP | 10.43 | 11.18 | |V |37633.801 | | 7.42818 |30 |F6-G1 |03453 03453| +39042 |550037 |UX Mon *|075916.4-073018 |EA+DSCT: | 8.22 | 9.16 | 8.52 |V |33328.8533 | | 5.9045505 |17 |A6Vep+G0-G2III-IV|08608 06286| +34003 |550040 |VV Mon *|070318.3-054416 |EA/D/RS | 9.4 | 9.95 | 9.55 |V |26037.543 | | 6.050829 |11 |K0IV+G2 |08592 07991| +33791 |550057 |AC Mon *|070059.8-084232 |DCEP | 9.75 | 10.47 | |V |37683.203 | | 8.01425 |30 |F5-G1 |03263 08588| +34299 |550068 |AO Mon *|070636.3-043725 |EA/DM | 9.6 | 10.23 | 10.16 |V |40588.3272 | | 1.884660 |17 *|B3+B5 |00001 08953| +35600 |550071 |AR Mon *|072048.5-051536 |EA/GS/RS | 8.62 | 9.47 | 9.03 |V |26606.408 | | 21.20911 |08 |G8III+K0III |08623 00391| +33237 |550074 |AU Mon *|065454.7-012233 |EA/DS: | 8.11 | 9.06 | 8.2 : |V |42801.3752 | | 11.1130371 |10 *|B5ea+F0 |09407 00391| +31019 |550077 |AX Mon *|063032.9+055201 |* | 6.59 | 6.94 | |V |39550. | | 232.5 | |B1eqIV+K1II-III |09410 BD | +31905 |550083 |BE Mon *|064005.6+073621 |DCEP | 10.19 | 10.88 | |V |41880.240 | | 2.705510 |26 |F4-G0 |08300 03455| +33369 |550085 |BG Mon |065622.8+070440 |SRB | 9.2 | 10.4 | |V |31881. | | 30. : | |C5,2(N) |02563 00491| +31624 |550122 |CV Mon *|063704.8+030350 |DCEP | 9.90 | 10.70 | |V |42773.136 | | 5.378898 |26 | |08632 08633| +33014 |550154 |EK Mon *|065246.2-022730 |DCEP | 10.77 | 11.42 | |V |40896.54 | | 3.957941 |31 | |03453 03453| +30301 |550184 |FU Mon *|062223.9+032528 |SR | 11.6 | 12.7 | |p |29350. | | 309.8 | |C8,0J(CSe) |00403 00403| +38898 |550186 |FW Mon *|075738.4-071122 |EA/SD: | 9.4 | 10.6 |( 0.04 )|p |27562.220 | | 3.8735903 |13 |B5+F2 |00001 00404| +33059 |550207 |GY Mon |065311.3-043434 |LB | 9.4 | 11.6 | |p | | | | |C6,3(N3/R8) |00085 08953| +30351 |550230 |IM Mon *|062301.5-031637 |EB/KE | 6.40 | 6.49 | 6.47 |B |33340.168 | | 1.190243 | |B5Vp+B7 |03465 05288| +32520 |550280 |MR Mon |064711.5+013146 |LB | 9.6 | 11.2 | |p | | | | |M3-M5 |05285 05285| +32621 |550324 |PZ Mon |064821.1+011308 |ISB: | 9.6 | 11.1 | |p | | | | |K2Ve |05285 05285| +34421 |550465 |V0465 Mon *|070809.3-000357 |DCEP | 10.17 | 10.77 | |V |41698.687 | | 2.713176 |38 |G0 |08300 03453| +28321 |550474 |V0474 Mon *|055901.1-092256 |DSCT | 5.93 | 6.36 | |V |41661.1668 | | 0.13612600 | |F2IV |08668 BD | +32397 |550505 |V0505 Mon *|064550.0+022957 |EB/GS/D | 7.15 | 7.65 | 7.55 |V |44635.318 | | 53.7805 | |B5eaIb+B5 |09443 08953| +32516 |550508 |V0508 Mon |064709.4+035802 |DCEP | 10.22 | 10.74 | |V |41732.070 | | 4.133608 |26 | |08300 03453| +33530 |550523 |V0523 Mon |065807.1-090138 |SRB | 6.95 | 7.45 | |V | | | 45. : | |MB |05128 08588| +33874 |550526 |V0526 Mon *|070153.6-010752 |DCEPS | 8.45 | 8.78 | |V |40286.290 | | 2.674985 |48 |F6II |08053 05123| +34234 |550569 |V0569 Mon *|070549.6-103936 |BCEP | 6.42 | 6.53 | |V | | | 0.267 : | |B0V |06585 08087| +34724 |550571 |V0571 Mon *|071123.6-001807 |DSCTC | 5.43 | 5.50 | |V | | | | |F2V |09450 BD | +30920 |550577 |V0577 Mon *|062923.4-024850 |UV | 12.5 | 13.3 | |B | | | | |M4.5Ve |06586 06874| +32838 |550592 |V0592 Mon |065042.3-080228 |ACV | 6.16 | 6.32 | |V |33942.98 | | 2.9760 | |A2p(Sr-Cr) |09454 BD | +32627 |550613 |V0613 Mon *|064822.3+053230 |SRB: | 7.64 | 8.5 | |V | | | | |M2(S5,1) |06059 BD | +33794 |550614 |V0614 Mon |070102.0-031509 |SRB | 7.01 | 7.36 | |V | | | 60. : | |C4,5J(R5) |06059 BD | +39264 |550635 |V0635 Mon |080144.5-083535 |EA/DM | 7.6 | 8.1 | |p |29658.375 | | 1.807805 | |F5+A2 |08040 07762| +33971 |550637 |V0637 Mon *|070254.8-041421 |BCEP | 4.96 | 5.01 | |V |43496.1169 | | 0.19120 | |B1IV-Vea |08696 BD | +29401 |550638 |V0638 Mon *|061143.7-043956 |ACV | 6.16 | 6.18 | |V |43852.00 | | 0.724 |50 |B9p(Hg-Mn) |04013 BD | +31646 |550640 |V0640 Mon *|063724.0+060807 |* | 6.04 | 6.08 | |V | | | | |O8V+O8f |04106 BD | +31939 |550641 |V0641 Mon *|064028.6+094904 |ELL | 8.46 |( 0.07 )| |V |43214.577 | | 1.304054 | |B1.5IV+B2V |08500 BD | +33436 |550644 |V0644 Mon |065709.4-104928 |GCAS | 6.88 | 6.98 | |V | | | | |B0-1V-IVeq+K |08587 08588| +39211 |550645 |V0645 Mon *|080113.3-012333 |FKCOM | 4.68 |( 0.020 )| |V |43100.000 | | 0.207878 |50 |K4III |08506 BD | +34049 |550646 |V0646 Mon |070347.5-010559 |ACV | 8.85 | 8.92 | |V |44230.732 | | 11.978 | |A0p(Sr-Eu) |09466 BD | +30793 |550648 |V0648 Mon |062814.0+051620 |ACV | 7.35 | 7.39 | |V | | | | | |67066 BD | +34541 |550651 |V0651 Mon |070922.5-004824 |* | 11.29 | 15.28 | |V | | | | | |67428 67427| +29323 |550653 |V0653 Mon |061101.2-064515 |ACV | 6.19 |( 0.04 )| |U | | | | | |68020 BD | +30789 |550682 |V0682 Mon |062810.8-045357 |ACV | 7.65 | 7.73 | |U | | | | | |69056 BD | +31766 |550689 |V0689 Mon |063838.2+013649 |ACYG | 6.19 | 6.26 | |V | | | | | |70077 BD | +39172 |550695 |V0695 Mon |080044.1-025255 |BE | 6.48 | 6.55 | |V | | | | | |71074 BD | +28744 |550696 |V0696 Mon |060413.5-064232 |* | 5.12 | 5.18 | |B | | | | | |72113 BD | +31235 |550700 |V0700 Mon |063305.2+101920 |INA | 8.62 | 8.91 | |V | | | | | |72115 72029| +32682 |550715 |V0715 Mon |064903.6+010007 |LPB: | 5.34 |( 0.18 u )| |U | | | | | |73201 BD | +28215 |550717 |V0717 Mon |055741.4-060541 |LB | 7.27 | 7.50 | |Hp| | | | | |HIP HIP | +29847 |550718 |V0718 Mon |061705.4-060709 |LPB | 8.08 | 8.13 | |Hp| | | | | |HIP HIP | +30185 |550719 |V0719 Mon |062102.9+023408 |LB: | 7.14 | 7.23 | |Hp| | | | | |HIP HIP | +30380 |550720 |V0720 Mon |062318.4-072705 |LC: | 9.60 | 9.83 | |Hp| | | | | |HIP HIP | +30407 |550721 |V0721 Mon |062335.9-095229 |LB | 6.18 | 6.26 | |Hp| | | | | |HIP HIP | +30806 |550722 |V0722 Mon |062820.4-004346 |E: | 7.84 | 7.99 | |Hp| | | | | |HIP HIP | +30891 |550723 |V0723 Mon |062904.7-053420 |SRD: | 8.37 | 8.51 | |Hp| | | | | |HIP HIP | +30909 |550724 |V0724 Mon |062915.4-080602 |SRB | 7.88 | 8.14 | |Hp| | | | | |HIP HIP | +30992 |550725 |V0725 Mon |063017.6+025052 |BE | 8.87 | 9.01 | |Hp| | | | | |HIP HIP | +30993 |550726 |V0726 Mon |063018.0-062549 |LPB | 7.93 | 7.97 | |Hp| | | | | |HIP HIP | +31065 |550727 |V0727 Mon |063109.3+095623 |EB | 7.88 | 7.99 | |Hp| | | | | |HIP HIP | +31199 |550728 |V0728 Mon |063243.2-073032 |BE | 8.03 | 8.12 | |Hp| | | | | |HIP HIP | +31363 |550729 |V0729 Mon |063435.6+045805 |SRB | 6.72 | 6.90 | |Hp| | | | | |HIP HIP | +31371 |550730 |V0730 Mon |063440.6-083629 |EA: | 8.85 | 8.95 | |Hp| | | | | |HIP HIP | +31697 |550731 |V0731 Mon |063752.7+045724 |ACYG: | 6.16 | 6.22 | |Hp| | | | | |HIP HIP | +31739 |550732 |V0732 Mon |063823.1+043727 |LPB: | 8.16 | 8.26 | |Hp| | | | | |HIP HIP | +31894 |550733 |V0733 Mon |064001.6-044155 |BE | 8.61 | 8.83 | |Hp| | | | | |HIP HIP | +31906 |550734 |V0734 Mon |064006.3-101839 |ACV | 8.49 | 8.55 | |Hp| | | | | |HIP HIP | +31934 |550735 |V0735 Mon |064025.2+023329 |ACV: | 7.50 | 7.54 | |Hp| | | | | |HIP HIP | +31925 |550736 |V0736 Mon |064018.9-062047 |LB | 6.90 | 7.04 | |Hp| | | | | |HIP HIP | +32088 |550737 |V0737 Mon |064212.9-102953 |BE | 8.81 | 8.92 | |Hp| | | | | |HIP HIP | +32187 |550738 |V0738 Mon |064312.5-084530 |SRB | 9.72 | 9.98 | |Hp| | | | | |HIP HIP | +32586 |550739 |V0739 Mon |064757.3+004634 |BE | 8.94 | 9.04 | |Hp| | | | | |HIP HIP | +32745 |550740 |V0740 Mon |064944.3-012024 |ACV | 7.28 | 7.34 | |Hp| | | | | |HIP HIP | +32839 |550741 |V0741 Mon *|065043.3-041558 |LPB: | 6.84 | 6.88 | |Hp| | | | | |HIP HIP | +32947 |550742 |V0742 Mon |065145.8+050504 |BE | 6.89 | 6.94 | |Hp| | | | | |HIP HIP | +32923 |550743 |V0743 Mon |065133.4-065800 |GCAS | 6.57 | 6.87 | |V | | | | | |HIP HIP | +33267 |550744 |V0744 Mon |065513.7+052602 |BE: | 7.61 | 7.85 | |Hp| | | | | |HIP HIP | +33261 |550745 |V0745 Mon |065511.9-091916 |EA | 7.69 | 7.99 | |Hp| | | | | |HIP HIP | +33361 |550746 |V0746 Mon |065619.1-034826 |BE | 8.04 | 8.14 | |Hp| | | | | |HIP HIP | +33437 |550747 |V0747 Mon |065709.5-083231 |BE: | 8.02 | 8.21 | |Hp| | | | | |HIP HIP | +33822 |550748 |V0748 Mon |070116.4-020919 |LB: | 8.59 | 8.73 | |Hp| | | | | |HIP HIP | +34032 |550749 |V0749 Mon |070337.2-022827 |GCAS: | 7.08 | 7.25 | |Hp| | | | | |HIP HIP | +34116 |550750 |V0750 Mon *|070425.5-102716 |GCAS | 6.92 | 7.22 | |V | | | | | |HIP HIP | +34385 |550751 |V0751 Mon |070747.0-032216 |SRB | 7.85 | 7.99 | |Hp| | | | | |HIP HIP | +34401 |550752 |V0752 Mon |070756.9-044040 |DSCTC: | 6.99 | 7.01 | |Hp| | | | | |HIP HIP | +34684 |550753 |V0753 Mon *|071057.9-035243 |EB: | 8.30 | 8.82 | |Hp| | | | | |HIP HIP | +34807 |550754 |V0754 Mon |071219.1-014640 |ACV: | 8.70 | 8.79 | |Hp| | | | | |HIP HIP | +35300 |550755 |V0755 Mon |071731.6-054922 |LPB | 7.18 | 7.23 | |Hp| | | | | |HIP HIP | +35475 |550756 |V0756 Mon |071922.1-084659 |LB: | 7.12 | 7.29 | |Hp| | | | | |HIP HIP | +35669 |550757 |V0757 Mon |072134.6-055350 |BE: | 6.49 | 6.58 | |Hp| | | | | |HIP HIP | +35810 |550758 |V0758 Mon |072307.0-041249 |LB | 8.96 | 9.25 | |Hp| | | | | |HIP HIP | +35831 |550759 |V0759 Mon |072321.3-042557 |ACV: | 8.68 | 8.80 | |Hp| | | | | |HIP HIP | +36004 |550760 |V0760 Mon |072513.1-030803 |LB | 8.56 | 8.82 | |Hp| | | | | |HIP HIP | +36093 |550761 |V0761 Mon |072609.5-103257 |E: | 8.36 | 8.44 | |Hp| | | | | |HIP HIP | +36495 |550762 |V0762 Mon |073030.8-003749 |LB: | 8.81 | 8.91 | |Hp| | | | | |HIP HIP | +36969 |550763 |V0763 Mon |073557.8-032206 |BE | 7.70 | 7.85 | |Hp| | | | | |HIP HIP | +37126 |550764 |V0764 Mon |073743.2-074338 |RRC | 7.13 | 7.20 | |Hp| | | | | |HIP HIP | +37294 |550765 |V0765 Mon |073927.0-020901 |LB: | 11.12 | 11.49 | |Hp| | | | | |HIP HIP | +37466 |550766 |V0766 Mon |074123.9-091254 |LB | 8.25 | 8.39 | |Hp| | | | | |HIP HIP | +38242 |550767 |V0767 Mon |075004.0-005255 |LB | 9.53 | 9.97 | |Hp| | | | | |HIP HIP | +38728 |550768 |V0768 Mon |075544.1-031154 |LB: | 10.24 | 10.42 | |Hp| | | | | |HIP HIP | +39017 |550769 |V0769 Mon |075903.9-041957 |EB: | 7.03 | 7.09 | |Hp| | | | | |HIP HIP | +39541 |550770 |V0770 Mon |080449.1-052442 |SRB: | 7.37 | 7.46 | |Hp| | | | | |HIP HIP | +39844 |550771 |V0771 Mon |080826.2-010153 |LB: | 8.15 | 8.26 | |Hp| | | | | |HIP HIP | +39857 |550772 |V0772 Mon |080833.9-020445 |CEP: | 10.22 | 10.38 | |Hp| | | | | |HIP HIP | +39927 |550773 |V0773 Mon |080915.7-043310 |E: | 7.59 | 7.67 | |Hp| | | | | |HIP HIP | +39997 |550774 |V0774 Mon |081006.5-064443 |LB | 7.78 | 7.90 | |Hp| | | | | |HIP HIP | +40025 |550775 |V0775 Mon |081030.6-093617 |LB | 7.57 | 7.73 | |Hp| | | | | |HIP HIP | +30089 |550777 |V0777 Mon |061958.2-103815 |R: | 8.78 | 8.94 | |V | | | | | |75170 BD | +36419 |550827 |V0827 Mon |072935.5-091533 |ACV | 7.96 | 8.00 | |V | | | | | |76075 DM | +32475 |550839 |V0839 Mon |064640.7+082147 |GDOR: | 7.5 |( 0.01 b )| |V | | | | | |77056 DM | +31069 |550848 |V0848 Mon |063111.1+055237 |BY | 8.94 |( 0.02 )| |V | | | 19.98 : | |K2IV-V |78018 DM | +31849 |550850 |V0850 Mon |063931.4+031911 |BY | 9.37 |( 0.03 )| |V | | | 9.99 : | |K3V |78018 DM | +34095 |550862 |V0862 Mon |070410.4+051247 |BY | 9.08 |( 0.02 )| |V | | | 10.88 | |G5V |78018 DM | +36827 |550867 |V0867 Mon |073426.2-065348 |BY | 8.16 |( 0.02 )| |V | | | 4.76 : | |K2V |78018 DM | +37349 |550869 |V0869 Mon |073959.3-033551 |BY | 7.18 |( 0.02 )| |V | | | | |K2Ve |78018 DM | +33225 |550878 |V0878 Mon *|065448.9-011657 |EB | 8.11 | 8.18 | 8.14 |V |48574.663 | | 0.697461 | |K0 |79004 DM | +33303 |550880 |V0880 Mon *|065537.7-092923 |EW | 8.21 | 8.41 | 8.41 |V |52232.752 | | 0.372457 | |G0 |79006 DM | +33538 |550883 |V0883 Mon |065811.9-050429 |EA | 8.71 | 8.86 | 8.77 |V |48701.550 | | 50.363 |02 : |F0 |79018 DM | +37455 |550891 |V0891 Mon |074118.6-013230 |EA | 8.12 | 8.33 | 8.30 : |V |48196.000 | | 31.4204 |02 : |B9.5/A0IV |79006 DM | +33513 |550920 |V0920 Mon *|065757.8+021732 |EA | 7.47 | 7.54 | 7.48 |V |48356.79 | | 6.7664 |05 |A2:V:m+G8IIIe |80011 DM | NL80_2 +33891 |550926 |V0926 Mon |070206.7-034517 |SRC | 6.50 | 6.70 | |V | | | 39. : | |M1Ib+A0 |80268 DM | NL80_2 +34355 |550930 |V0930 Mon *|070720.7-093500 |EB | 8.32 | 8.41 | 8.40 |V |51889.743 | | 2.35510 | |B3II/III |80015 GSC | NL80_2 +30867 |559002 |bet Mon |062849.1-070159 |BE | 3.77 | 3.84 | |Hp| | | | | |75174 BD | +61981 |560001 |R Mus |124205.0-692427 |DCEP | 5.93 | 6.73 | |V |26496.288 | | 7.510211 |30 |F7Ib-G2 |00003 09423| +59551 |560002 |S Mus *|121247.0-700906 |DCEP | 5.89 | 6.49 | |V |40299.42 | | 9.66007 |49 |F6Ib-G0 |05366 03470| +65166 |560003 |T Mus *|132113.9-742631 |SRB | 9.4 | 12.0 | |p | | | 93. | |C(Np) |00003 08953| +63911 |560008 |Y Mus |130548.2-653047 |RCB | 10.5 | 12.1 | |p | | | | |Fp |00017 08129| +57260 |560012 |RT Mus |114432.9-671819 |DCEP | 8.57 | 9.32 | |V |43290.39 | | 3.086131 |27 |F8 |00001 00021| +56196 |560028 |TU Mus *|113110.9-654432 |EB/KE | 8.17 | 8.75 | 8.65 |V |41699.8270 | | 1.3872833 | |O8.5Vn+O8 |08132 05625| +57884 |560034 |UU Mus |115217.7-652415 |DCEP | 9.13 | 10.28 | |V |36208.270 | | 11.63641 |37 |F7/G0p |00001 00544| +61404 |560092 |BO Mus |123454.5-674525 |LB | 5.85 | 6.56 | |V | | | | |M6II-III |00422 03470| +58504 |560148 |DZ Mus *|115953.5-695305 |EA/D | 8.3 | 8.9 | |p |18093.728 | | 3.247619 | |B8/9IV-V |07002 CPD | +62981 |560150 |EF Mus |125417.9-700212 |LB: | 8.0 | 8.8 | |p | | | | |K1II/III |05835 09423| +65755 |560169 |EZ Mus *|132846.8-693738 |ACV | 6.19 |( 0.09 )| |V |43172.57 | | 4.3127 |50 |B8Vp(Si) |08806 CPD | +61796 |560172 |FH Mus *|123955.9-663040 |ELL: | 6.26 |( 0.03 )|( 0.03 )|V | | | 0.58 : | |B8V |08215 CPD | +58998 |560201 |GS Mus |120549.9-693423 |ACYG | 7.34 | 7.55 | |V | | | | | |68313 CPD | +56862 |560202 |GT Mus |113929.6-652352 |E:/RS | 5.08 | 5.21 | |V | | | | | |69011 69201| +56144 |560248 |KO Mus |113028.6-743631 |SRB: | 8.52 | 8.85 | |Hp| | | | | |HIP HIP | +56252 |560249 |KP Mus |113150.7-680329 |BE | 8.55 | 8.68 | |Hp| | | | | |HIP HIP | +56246 |560250 |KQ Mus |113147.9-735410 |LPB | 6.92 | 6.98 | |Hp| | | | | |HIP HIP | +56379 |560251 |KR Mus |113325.4-701141 |E | 6.68 | 6.87 | |Hp| | | | | |HIP HIP | +57928 |560252 |KS Mus |115252.4-695303 |LB: | 8.07 | 8.17 | |Hp| | | | | |HIP HIP | +58719 |560253 |KT Mus |120237.4-705133 |LC: | 7.76 | 8.10 | |Hp| | | | | |HIP HIP | +59665 |560254 |KU Mus *|121408.1-683756 |EB: | 9.06 | 9.26 | |Hp| | | | | |HIP HIP | +59959 |560255 |KV Mus |121751.6-691310 |BE: | 8.46 | 8.61 | |Hp| | | | | |HIP HIP | +60862 |560256 |KW Mus |122828.0-674837 |LB: | 9.18 | 9.30 | |Hp| | | | | |HIP HIP | +61703 |560258 |KY Mus |123852.4-671135 |ACYG: | 6.24 | 6.30 | |Hp| | | | | |HIP HIP | +61751 |560259 |KZ Mus |123919.2-713718 |BCEP | 9.02 | 9.10 | |Hp| | | | | |HIP HIP | +61882 |560260 |LL Mus |124050.9-674424 |EA | 8.93 | 9.34 | |Hp| | | | | |HIP HIP | +62247 |560261 |LM Mus |124525.9-714241 |SRB | 6.99 | 7.19 | |Hp| | | | | |HIP HIP | +62339 |560262 |LN Mus |124628.7-645504 |EB | 9.19 | 9.46 | |Hp| | | | | |HIP HIP | +62403 |560263 |LO Mus |124719.0-661415 |BY: | 8.61 | 8.72 | |Hp| | | | | |HIP HIP | +62588 |560264 |LP Mus |124931.3-663516 |LB: | 8.45 | 8.56 | |Hp| | | | | |HIP HIP | +62801 |560265 |LQ Mus |125208.2-685401 |EA | 9.08 | 9.78 | |Hp| | | | | |HIP HIP | +63154 |560266 |LR Mus |125626.5-742933 |LB: | 8.13 | 8.25 | |Hp| | | | | |HIP HIP | +63688 |560267 |LS Mus |130305.3-712833 |BE | 5.90 | 6.01 | |Hp| | | | | |HIP HIP | +65398 |560268 |LT Mus |132413.6-671855 |EB: | 7.80 | 7.92 | |Hp| | | | | |HIP HIP | +65693 |560269 |LU Mus |132807.3-661647 |BE | 9.17 | 9.28 | |Hp| | | | | |HIP HIP | +65848 |560270 |LV Mus |132954.6-653007 |BE | 7.65 | 7.78 | |Hp| | | | | |HIP HIP | +66572 |560271 |LW Mus |133845.0-701112 |DSCT | 9.22 | 9.36 | |Hp| | | | | |HIP HIP | +66683 |560272 |LX Mus |134011.5-740445 |EA | 8.85 | 9.03 | |Hp| | | | | |HIP HIP | +66783 |560273 |LY Mus |134113.6-715206 |LB | 6.55 | 6.97 | |Hp| | | | | |HIP HIP | +60944 |560277 |MO Mus |122931.1-665138 |ACYG | 7.37 | 7.42 | |Hp| | | | | |75030 CPD | +57032 |560280 |MR Mus *|114137.8-675452 |EA | 8.41 | 8.53 | 8.53 |V |48009.675 | | 3.115733 | |A2V+F6V |78011 DM | +61585 |569001 |alf Mus *|123711.0-690808 |BCEP | 2.68 | 2.73 | |V | | | 0.0903 | |B2IV-V |08395 CPD | +61199 |569003 |gam Mus |123228.0-720759 |LPB | 3.78 | 3.80 | |Hp| | | | | |75030 CPD | +59929 |569005 |eps Mus |121734.3-675739 |SRB: | 3.99 | 4.31 | |V | | | 40. | |M5III |06590 CPD | +64661 |569007 |eta Mus *|131514.9-675341 |E | 4.76 | 4.81 | |V | | | | |B8V |08513 CPD | +64094 |569008 |tet Mus *|130807.2-651822 |E+WR | 5.50 | 5.52 | |V |40661.4 | | 18.341 | |WC6+O9.5I |08513 CPD | +57581 |569012 |mu. Mus |114814.5-664854 |LB | 4.6 | 4.8 | |V | | | | |K4III |03712 CPD | +76377 |570001 |R Nor *|153557.4-493029 |M | 6.5 | 13.9 | |p |41874. | | 507.50 | |M3e-M6II |00001 00002| +79932 |570002 |S Nor *|161851.8-575359 |DCEP | 6.12 | 6.77 | |V |44018.69 | | 9.75411 |47 |F8-G0Ib |00001 03473| +77058 |570003 |T Nor *|154403.8-545913 |M | 6.2 | 13.6 | |V |40976. | | 240.7 |41 |M3e-M6e |00001 00002| +76918 |570004 |U Nor *|154220.9-551843 |DCEP | 8.63 | 9.83 | |V |44788.5 | | 12.64371 |46 |F6-F8Ib/II-G5 |00001 00546| +78797 |570011 |RS Nor *|160510.0-535510 |DCEP | 9.62 | 10.39 | |V |35308.21 | | 6.19814 |29 | |00004 08953| +80365 |570012 |RT Nor *|162418.7-592039 |RCB | 10.6 | 16.3 | |p | | | | |C(R) |00424 06286| +77913 |570025 |SY Nor *|155442.8-543359 |DCEP | 8.98 | 9.94 | |V |40737.43 | | 12.6452 |35 | |00001 00427| +78771 |570030 |TW Nor *|160455.2-515713 |DCEP | 11.17 | 12.22 | |V |41092.21 | | 10.78618 |50 | |00001 09439| +80931 |570043 |VY Nor |163133.1-535824 |RRAB | 12.1 | 12.8 | |p |25535.249 | | 0.375305 |43 | |00427 00427| +79625 |570203 |GU Nor *|161454.8-532018 |DCEP | 10.08 | 10.73 | |V |44025.74 | | 3.452877 |34 | |00001 00433| +74448 |570234 |IQ Nor *|151249.5-544519 |DCEP | 9.47 | 10.11 | |V |37875.77 | | 8.23862 |32 | |00001 08953| +80721 |570313 |OZ Nor |162849.9-444845 |GCAS: | 7.5 | 7.67 | |B | | | | |B2Ve |04456 06871| +80678 |570315 |PQ Nor *|162816.4-571242 | | 7.69 | 7.74 | |V |42180.2 | | 5.58 | |B8/9V |08149 06871| +80782 |570329 |QU Nor |162942.3-461436 |GCAS | 5.29 | 5.41 | |V | | | | |B1.5Iape |06311 CoD | +78731 |570333 |QY Nor |160421.3-534237 |ACV | 6.45 |( 0.014 )| |V | | | 5.2 | |A0p(Si) |08415 CPD | +76629 |570343 |V0343 Nor |153857.5-574227 |BY: | 8.14 |( 0.12 )| |V | | | | | |68325 CPD | +80563 |570348 |V0348 Nor |162656.7-434757 |BCEP: | 7.87 | 7.96 | |V | | | | | |69037 CoD | +75878 |570358 |V0358 Nor |152955.8-492024 |LB: | 8.40 | 8.54 | |Hp| | | | | |HIP HIP | +76968 |570359 |V0359 Nor |154258.3-580653 |LB | 7.59 | 7.76 | |Hp| | | | | |HIP HIP | +77645 |570360 |V0360 Nor |155106.8-550320 |ACYG: | 5.77 | 5.79 | |Hp| | | | | |HIP HIP | +78310 |570361 |V0361 Nor |155923.7-584334 |ACYG: | 7.10 | 7.16 | |Hp| | | | | |HIP HIP | +78803 |570362 |V0362 Nor |160515.5-562024 |LC: | 7.12 | 7.28 | |Hp| | | | | |HIP HIP | +78810 |570363 |V0363 Nor |160519.7-541047 |LB: | 7.89 | 8.02 | |Hp| | | | | |HIP HIP | +79038 |570364 |V0364 Nor |160759.8-550750 |BE | 9.24 | 9.32 | |Hp| | | | | |HIP HIP | +79055 |570365 |V0365 Nor |160810.8-530444 |LB | 6.89 | 6.99 | |Hp| | | | | |HIP HIP | +79207 |570366 |V0366 Nor |160959.1-483428 |ACYG: | 8.52 | 8.62 | |Hp| | | | | |HIP HIP | +79490 |570367 |V0367 Nor *|161317.0-534016 |LC: | 5.94 | 6.11 | |Hp| | | | | |HIP HIP | +79754 |570368 |V0368 Nor |161643.3-534840 |SRB | 5.43 | 5.54 | |Hp| | | | | |HIP HIP | +79880 |570369 |V0369 Nor |161817.5-462659 |LB | 7.12 | 7.44 | |Hp| | | | | |HIP HIP | +79949 |570370 |V0370 Nor |161909.7-541703 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +79958 |570371 |V0371 Nor |161915.9-553017 |BY: | 9.35 | 9.48 | |Hp| | | | | |HIP HIP | +80531 |570372 |V0372 Nor |162623.9-565304 |ACV: | 7.80 | 7.86 | |Hp| | | | | |HIP HIP | +80545 |570373 |V0373 Nor |162641.0-594609 |E: | 8.47 | 8.65 | |Hp| | | | | |HIP HIP | +80557 |570374 |V0374 Nor *|162649.8-480240 |ELL: | 7.16 | 7.23 | |Hp| | | | | |HIP HIP | +80580 |570375 |V0375 Nor |162710.4-474556 |LB: | 9.79 | 9.93 | |Hp| | | | | |HIP HIP | +80640 |570376 |V0376 Nor |162754.2-595055 |BE: | 8.57 | 8.74 | |Hp| | | | | |HIP HIP | +80659 |570377 |V0377 Nor |162805.3-433940 |LC | 9.07 | 9.33 | |Hp| | | | | |HIP HIP | +80788 |570378 |V0378 Nor |162945.2-574523 |CEP: | 6.21 | 6.23 | |Hp| | | | | |HIP HIP | +80830 |570379 |V0379 Nor |163024.9-440656 |LB | 7.77 | 7.89 | |Hp| | | | | |HIP HIP | +80965 |570380 |V0380 Nor |163159.5-445312 |SRB | 7.58 | 7.68 | |Hp| | | | | |HIP HIP | +80222 |570399 |V0399 Nor |162235.9-503238 |EB | 8.19 | 8.30 | 8.24 |V |53170.830 | | 3.19288 | |F6/7V |79004 DM | +81122 |579012 |mu. Nor *|163405.0-440243 |ACYG: | 4.87 | 4.98 | |V | | | | |O9.7Iab | CoD | +25412 |580001 |R Oct |052606.2-862318 |M | 6.4 | 13.2 | |V |41985. | | 405.39 |44 |M5.5e |00001 00002| +51084 |580007 |X Oct *|102614.3-842054 |SRA | 8.7 | 12.7 | |p |28885. | | 206.80 | |M3e-M6IIIe |00207 08953| +86836 |580009 |Z Oct |174436.6-862911 |M | 11.0 | 13.5 | |p |13825. | | 335. | | |00359 09467| +113652|580012 |RT Oct |230106.2-870311 |M | 10.4 | 14.6 | |p |36063. | | 180.16 | |Me |00001 08613| +703 |580013 |RU Oct |000846.2-861119 |M | 10.2 | 15. | |p |13443. | | 373. | | |00440 08613| +67227 |580014 |RV Oct *|134631.8-842406 |RRAB | 11.6 | 12.1 | |p |15116.665 | | 0.5711625 |11 | |05735 HIP | +106649|580017 |RY Oct |213609.4-771814 |RRAB | 10.4 | 12.1 | |p |27987.453 | | 0.563469 |36 : | |00016 06286| +108057|580019 |SS Oct |215335.4-824644 |RRAB | 10.8 | 12.1 | |p |28020.607 | | 0.621825 |13 | |00016 06286| +80990 |580035 |UV Oct *|163225.5-835411 |RRAB | 8.70 | 9.97 | |V |34328.396 | | 0.542625 | |A6-F6 |00080 06286| +21989 |580039 |UZ Oct *|044336.0-844840 |EB/KE | 9.03 | 9.56 | 9.48 |V |42064.44803 | | 1.1493549 | | |07167 CoD | +75736 |580093 |BP Oct *|152819.1-880759 |DSCTC | 6.46 |( 0.04 )| |V | | | 0.08 | |A2m |06364 CPD | +71348 |580094 |BQ Oct |143529.5-894618 |LB: | 6.8 |( 0.1 )| |V | | | | |M4III(S5,1) |07763 CPD | +89858 |580095 |BR Oct |182016.4-774019 |LB: | 9.4 | 10.0 | |p | | | | |M4-6 |01944 06618| +110428|580100 |BW Oct |222202.5-843958 |LB: | 8.8 | 9.7 | |p | | | | |M7III |07821 CPD | +98757 |580104 |CC Oct *|200331.8-784951 |DSCTC | 8.01 |( 0.10 )| |V | | | 0.12490 | |Fm |08522 CPD | +99013 |580106 |CE Oct *|200604.8-792524 |DSCTC | 8.02 |( 0.02 )| |V | | | | |A7IV/V |08773 CPD | +102803|580107 |CF Oct |204937.3-800801 |RS | 8.27 |( 0.3 )| |V | | | | | |67442 CPD | +112355|580108 |CG Oct |224530.2-884906 |DSCTC | 6.85 |( 0.04 )| |B | | | | | |67443 CPD | +4266 |580114 |CN Oct |005433.6-824010 |LB: | 8.45 | 8.55 | |Hp| | | | | |HIP HIP | +14210 |580115 |CO Oct |030313.2-853822 |LB | 8.74 | 8.92 | |Hp| | | | | |HIP HIP | +14700 |580116 |CP Oct *|030953.8-833154 |DSCTC: | 7.68 | 7.73 | |Hp| | | | | |HIP HIP | +20930 |580117 |CQ Oct |042916.7-844818 |SRB | 8.12 | 8.59 | |Hp| | | | | |HIP HIP | +22379 |580118 |CR Oct |044902.6-881616 |SRB | 7.16 | 7.27 | |Hp| | | | | |HIP HIP | +39998 |580119 |CS Oct |081006.7-842642 |LB: | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +57037 |580120 |CT Oct |114142.8-880353 |BY: | 10.91 | 11.34 | |Hp| | | | | |HIP HIP | +59404 |580121 |CU Oct |121109.4-834642 |ACV | 7.39 | 7.43 | |Hp| | | | | |HIP HIP | +82459 |580122 |CV Oct |165105.6-870812 |LB | 8.92 | 9.19 | |Hp| | | | | |HIP HIP | +83255 |580123 |CW Oct |170058.5-862152 |ACV: | 6.05 | 6.07 | |Hp| | | | | |HIP HIP | +83366 |580124 |CX Oct |170218.4-841813 |SRB | 7.83 | 8.05 | |Hp| | | | | |HIP HIP | +93082 |580125 |CY Oct |185741.5-853355 |LB | 7.97 | 8.10 | |Hp| | | | | |HIP HIP | +97159 |580126 |CZ Oct |194454.5-800519 |LB | 7.55 | 7.72 | |Hp| | | | | |HIP HIP | +98832 |580127 |DD Oct |200413.3-752622 |E: | 9.72 | 9.94 | |Hp| | | | | |HIP HIP | +100187|580128 |DE Oct |201919.2-760736 |RRC: | 9.19 | 9.26 | |Hp| | | | | |HIP HIP | +101572|580129 |DF Oct |203506.6-751000 |LB: | 8.85 | 8.99 | |Hp| | | | | |HIP HIP | +102428|580130 |DG Oct |204520.7-790525 |LB: | 8.81 | 8.97 | |Hp| | | | | |HIP HIP | +102984|580131 |DH Oct |205154.6-785224 |LB: | 9.10 | 9.21 | |Hp| | | | | |HIP HIP | +105581|580132 |DI Oct |212306.7-853820 |SRD | 7.24 | 7.41 | |Hp| | | | | |HIP HIP | +107823|580133 |DK Oct |215038.6-835740 |LPB | 7.62 | 7.66 | |Hp| | | | | |HIP HIP | +108192|580134 |DL Oct |215510.8-765626 |LB | 7.64 | 8.18 | |Hp| | | | | |HIP HIP | +108768|580135 |DM Oct |220202.0-801855 |BY: | 11.69 | 12.03 | |Hp| | | | | |HIP HIP | +110364|580136 |DN Oct |222112.2-745803 |SRB: | 7.28 | 7.36 | |Hp| | | | | |HIP HIP | +114889|580137 |DO Oct |231617.2-875738 |SRB: | 8.20 | 8.34 | |Hp| | | | | |HIP HIP | +114451|580138 |DP Oct |231045.8-762748 |LB | 7.81 | 7.95 | |Hp| | | | | |HIP HIP | +115609|580139 |DQ Oct |232511.0-760617 |SRB | 8.35 | 8.59 | |Hp| | | | | |HIP HIP | +49616 |580140 |DR Oct |100729.5-850433 |RS: | 8.70 | 8.73 | |V | | | | | |75179 CPD | +102842|580143 |DU Oct *|205004.2-755437 |EA/RS: | 9.21 | 9.48 | 9.34 |V |52845.852 | | 2.47867 | |G3V |78011 DM | +104043|589001 |alf Oct *|210443.1-770126 |EB | 5.22 | 5.26 | |Hp| | | | | |HIP HIP | +110256|589005 |eps Oct |222001.7-802623 |SRB | 4.58 | 5.30 | |V | | | 55. : | |M6III |06590 CPD | +112781|589014 |ksi Oct |225022.8-800726 |LPB | 5.26 | 5.29 | |Hp| | | | | |HIP HIP | +104382|589018 |sig Oct |210846.9-885723 |DSCTC | 5.45 |( 0.05 )| |V | | | 0.097 | |F0IV |09479 CPD | +84500 |590004 |U Oph *|171631.7+011238 |EA/DM | 5.84 | 6.56 | 6.46 |V |44416.3864 | | 1.67734617 |16 *|B5V+B5V | 00562| +80550 |590005 |V Oph *|162643.7-122536 |M | 7.3 | 11.6 | |V |45071. | | 297.21 |48 |C5,2-C7,4e(N3e) |00001 00002| +91389 |590007 |X Oph *|183821.1+085003 |M | 5.9 | 9.2 | |V |44729. | | 328.85 |53 |M5e-M9e |00001 00002| +87495 |590008 |Y Oph *|175238.7-060837 |DCEPS | 5.87 | 6.46 | |V |39853.30 | | 17.12413 |44 |F8Ib-G3Ib |06591 02544| +84763 |590009 |Z Oph *|171932.1+013054 |M | 7.6 | 14.0 | |V |42238. | | 348.7 |40 |K3ep-M7.5e |00001 00002| +89568 |590017 |RY Oph *|181636.9+034135 |M | 7.4 | 13.8 | |V |45205. | | 150.41 |46 |M3e-M6e |00001 00002| +92055 |590018 |RZ Oph *|184546.4+071312 |EA/GS | 9.65 : | 10.42 | |V |42204.39 | | 261.9277 |04 |F3eIb+K5II |04954 00100| +82352 |590027 |TT Oph *|164935.9+033754 |RVA | 9.45 | 10.84 | |V |44449. | | 61.08 | |G2e-K0 |00368 03145| +85617 |590030 |TW Oph *|172943.7-192823 |SRB | 11.6 | 13.8 | |p | | | 185. : | |C5,5(Nb) |00236 03479| +82977 |590034 |UU Oph *|165722.6-254759 |EA/SD | 10.0 | 12.5 | |p |20750.489 | | 4.3968025 |12 |A0 |09486 00261| +83582 |590037 |UX Oph *|170457.0-121205 |M | 9.4 | 13.6 | |V |38879. | | 116.71 | |M4e |00001 00002| +85429 |590041 |VW Oph *|172725.9+041339 |M | 10.5 | 14. | |p |38851. | | 285.00 | |M5e |00001 09487| +83719 |590048 |WZ Oph *|170639.0+074658 |EA/DM | 9.14 | 9.82 | 9.82 |V |35648.775 | | 4.183506 |06 *|F8V+F8V |00001 00564| +86777 |590049 |XX Oph *|174356.5-061609 |* | 8.59 | 10.2 | |V | | | | |Bpeq+M5 |08079 05464| +83674 |590084 |BF Oph *|170605.5-263450 |DCEP | 6.93 | 7.71 | |V |44435.21 | | 4.06775 |26 |F6-G2 |00001 00261| +83963 |590241 |IX Oph |170948.2-271659 |INB | 11.8 | 12.7 | |p | | | | |Fpe |00121 00261| +84346 |590438 |V0438 Oph *|171439.8+110410 |SRB | 9.3 | 11.6 | |p |37130. | | 169.9 |42 |M0-M7e |09484 09436| +80402 |590445 |V0445 Oph *|162441.2-063230 |RRAB | 10.53 | 11.39 | |V |27543.547 | | 0.3970227 |18 |A9-F6 |07114 00190| +90599 |590451 |V0451 Oph *|182914.0+105331 |EA/DM | 7.94 |( 0.60 )| 11.9 |B |44834.365 | | 2.19659616 |12 *|B9V+A2 |00001 08953| +85386 |590453 |V0453 Oph |172649.1-022336 |RVA | 10.40 | 11.53 | |V |37505. | | 81.300 | |Fp |09437 06286| +89450 |590455 |V0455 Oph *|181518.5+122109 |RRAB | 11.6 | 12.5 | |p |41833.389 | | 0.45391060 |20 |A7 |00001 00470| +81703 |590502 |V0502 Oph *|164120.9+003027 |EW/KW | 8.34 | 8.84 | 8.81 |V |41174.2288 | | 0.45339345 | |G2V+F9V |07576 08953| +88028 |590508 |V0508 Oph *|175848.6+132946 |EW/KW | 10.06 | 10.69 | 10.59 |V |45082.5430 | | 0.344792129 | |G5 |00001 00279| +87538 |590533 |V0533 Oph *|175303.3-023446 |SR: | 8.3 | 9.3 | |p |41169. | | | |M6 |08837 08953| +87860 |590566 |V0566 Oph *|175652.4+045915 |EW/KW | 7.46 | 7.96 | 7.89 |V |41835.8617 | | 0.40964569 | |F4V |08286 05288| +87994 |590567 |V0567 Oph *|175827.2+010605 |DSCT | 11.07 | 11.43 | |V |38592.4048 | | 0.149521 |40 |A7-F3 |06594 06593| +89579 |590577 |V0577 Oph *|181645.9+065418 |EA/DM | 11.36 | 12.00 | 10.5 |B |42652.332 | | 6.079096 |03 *|A |00001 09442| +88946 |590839 |V0839 Oph *|180921.3+090904 |EW/KW | 8.8 | 9.39 | 9.38 |V |40448.4129 | | 0.40899532 | |F8V |00001 00487| +86260 |590974 |V0974 Oph |173733.7-294525 |DSCT | 11.6 | 12.0 | |p |28671.437 | | 0.1910568 |30 | |02448 02448| +88522 |590986 |V0986 Oph *|180437.4+015508 |* | 6.10 | 6.15 | |V | | | 0.323 | |B0.5III |09523 BD | +82339 |591010 |V1010 Oph *|164927.7-154005 |EB/KE | 6.1 | 7.00 | 6.46 |V |38937.7690 | | 0.66142613 | |A5V |09527 06439| +82817 |591054 |V1054 Oph *|165528.8-082011 |UV | 10.14 | 11.72 | |U | | | | |M4.5Ve+M4.5Ve |09530 05288| +82323 |591121 |V1121 Oph *|164915.3-142209 |INT | 11.2 | 12.2 | |V | | | | |K5Ve(T) |05548 HIP | +88149 |592048 |V2048 Oph *|180015.8+042207 |GCAS+UV: | 4.55 | 4.85 | |V | | | | |B2-B6IV-VneV |05150 05288| +87812 |592052 |V2052 Oph |175618.4+004013 |BCEP | 5.81 | 5.84 | |V |41442.048 | | 0.1398903 |50 |B2IV-V |07579 BD | +86605 |592076 |V2076 Oph |174151.6-175349 |PVTEL | 9.78 | 10.08 : | |V | | | 0.71 : | |O9.5Ia-B1Ia(p) |04509 BD | +80620 |592105 |V2105 Oph *|162743.5-073553 |SRB: | 5.0 | 5.38 | |V | | | | |M2.5III |06994 BD | +82351 |592106 |V2106 Oph *|164935.0-215108 |SR | 7.38 | 7.46 | |V | | | 22. : | |M2III |08225 BD | +82011 |592111 |V2111 Oph |164511.4-030506 |SR | 6.69 | 7.08 | |V | | | 45. : | |M5III |08225 BD | +84704 |592112 |V2112 Oph *|171852.8+060508 |DSCTC | 6.50 | 6.52 | |V |44114.5474 | | 0.1874472 | |F0III-IV |09552 BD | +84780 |592113 |V2113 Oph |171946.5+020822 |SR: | 6.59 | 6.81 | |V | | | | |M5III |08225 BD | +85450 |592114 |V2114 Oph |172744.1+082631 |SR | 6.40 | 6.51 | |V | | | 18. : | |M4III |08225 BD | +88272 |592118 |V2118 Oph *|180133.2+111709 |* | 7.02 | 7.09 | |V |43330.644 | | 0.8171 |43 |F2IV |09556 BD | +86060 |592125 |V2125 Oph |173518.5-220238 |ACV | 6.57 |( 0.041 )| |V | | | 9.75 | |B8p(Si) |08415 BD | +88148 |592126 |V2126 Oph |180015.7+003746 |ACV | 6.36 |( 0.008 )| |V | | | 2.41 : | |A3p(Sr-Cr-Eu) |08415 BD | +81300 |592133 |V2133 Oph |163621.4-021929 |BY | 6.57 |( 0.04 )| |B | | | | | |67092 BD | +80698 |592205 |V2205 Oph |162835.4-091932 |PVTEL | 10.40 | 10.59 | |V | | | | | |68330 BD | +83601 |592213 |V2213 Oph |170516.8+004209 |BY | 6.01 |( 0.04 )| |V | | | | | |69205 BD | +84478 |592215 |V2215 Oph |171613.4-263246 |RS | 6.26 | 6.34 | |V | | | | | |69011 CoD | +82583 |592253 |V2253 Oph |165256.0-264502 |RS | 8.1 |( 0.18 )| |V | | | | | |71001 CoD | +90313 |592291 |V2291 Oph |182538.8+080155 |EA/GS | 7.02 |( 1.1 )| |U | | | | | |71169 BD | +82588 |592292 |V2292 Oph |165258.8-000135 |BY: | 6.78 |( 0.04 )| |V | | | | | |72119 BD | +88132 |592300 |V2300 Oph |180007.3+063314 |ELL: | 6.7 |( 0.02 )| |V | | | | | |72045 BD | +80824 |592306 |V2306 Oph |163018.1-123945 |BY | 10.05 | 10.10 | |V | | | | | |73018 73210| +81624 |592307 |V2307 Oph |164017.9-235345 |INA | 9.50 | 11.13 | |U | | | | | |73211 CoD | +86805 |592315 |V2315 Oph |174415.7+054252 |ELL: | 8.28 | 8.34 | |V | | | | | |73218 BD | +86960 |592320 |V2320 Oph |174610.9+053930 |ELL: | 7.36 | 7.39 | |V | | | | | |73218 BD | +86993 |592323 |V2323 Oph |174636.4+060714 |ELL: | 8.09 | 8.12 | |V | | | | | |73218 BD | +87184 |592327 |V2327 Oph |174843.4+054205 |ELL: | 7.51 | 7.54 | |V | | | | | |73218 BD | +78509 |592348 |V2348 Oph |160139.8-054142 |LB | 8.93 | 9.19 | |Hp| | | | | |HIP HIP | +78949 |592349 |V2349 Oph |160701.1-035240 |LB | 7.31 | 7.45 | |Hp| | | | | |HIP HIP | +80248 |592350 |V2350 Oph |162259.5-071232 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +80442 |592351 |V2351 Oph |162515.0-095153 |RR: | 8.43 | 8.51 | |Hp| | | | | |HIP HIP | +81165 |592352 |V2352 Oph |163440.8+031756 |BY: | 11.33 | 11.67 | |Hp| | | | | |HIP HIP | +81893 |592353 |V2353 Oph |164339.7-224411 |ACV | 7.58 | 7.64 | |Hp| | | | | |HIP HIP | +82089 |592354 |V2354 Oph |164605.3-165402 |LB: | 8.58 | 8.68 | |Hp| | | | | |HIP HIP | +82442 |592355 |V2355 Oph |165055.5-163249 |EB | 7.11 | 7.25 | |Hp| | | | | |HIP HIP | +82544 |592356 |V2356 Oph |165219.7+111431 |LB: | 7.07 | 7.26 | |Hp| | | | | |HIP HIP | +82967 |592357 |V2357 Oph |165716.8+105951 |EW: | 10.66 | 10.79 | |Hp| | | | | |HIP HIP | +83021 |592358 |V2358 Oph |165753.4-194730 |LB | 8.35 | 8.52 | |Hp| | | | | |HIP HIP | +83117 |592359 |V2359 Oph |165905.6+113047 |LB | 7.84 | 7.96 | |V | | | | | |HIP HIP | +83209 |592360 |V2360 Oph |170018.8-191006 |LB: | 8.34 | 8.45 | |Hp| | | | | |HIP HIP | +83322 |592361 |V2361 Oph |170146.9+063636 |LB: | 8.62 | 8.79 | |Hp| | | | | |HIP HIP | +83416 |592362 |V2362 Oph |170300.6+044452 |LB: | 8.72 | 8.85 | |Hp| | | | | |HIP HIP | +83632 |592363 |V2363 Oph |170531.6+021645 |SRB | 9.51 | 10.18 | |Hp| | | | | |HIP HIP | +83638 |592364 |V2364 Oph |170534.7+034603 |SRB | 7.36 | 7.48 | |Hp| | | | | |HIP HIP | +83891 |592365 |V2365 Oph |170845.8+091110 |E: | 8.91 | 9.11 | |Hp| | | | | |HIP HIP | +83958 |592366 |V2366 Oph |170943.1+001939 |LB: | 8.97 | 9.06 | |Hp| | | | | |HIP HIP | +84277 |592367 |V2367 Oph |171340.5-082515 |BY: | 11.88 | 12.15 | |Hp| | | | | |HIP HIP | +84479 |592368 |V2368 Oph |171614.3+021110 |EA | 6.22 | 6.42 | |Hp| | | | | |HIP HIP | +84595 |592369 |V2369 Oph |171734.7+102459 |BY: | 8.54 | 8.65 | |Hp| | | | | |HIP HIP | +85087 |592370 |V2370 Oph |172325.1+105250 |LB: | 9.79 | 9.90 | |Hp| | | | | |HIP HIP | +85189 |592371 |V2371 Oph |172434.8-265529 |BCEP | 9.12 | 9.18 | |Hp| | | | | |HIP HIP | +85507 |592372 |V2372 Oph |172827.6-290331 |LB | 7.31 | 7.40 | |Hp| | | | | |HIP HIP | +85812 |592373 |V2373 Oph |173202.9+024925 |EB | 7.39 | 7.46 | |Hp| | | | | |HIP HIP | +85925 |592374 |V2374 Oph |173334.6-221018 |SRD | 7.81 | 7.92 | |Hp| | | | | |HIP HIP | +85905 |592375 |V2375 Oph |173317.0+000612 |LB | 7.74 | 7.86 | |Hp| | | | | |HIP HIP | +85974 |592376 |V2376 Oph |173414.6-245233 |LB: | 8.01 | 8.11 | |Hp| | | | | |HIP HIP | +85944 |592377 |V2377 Oph |173356.0+080958 |EB | 8.60 | 8.73 | |Hp| | | | | |HIP HIP | +85997 |592378 |V2378 Oph |173433.4-181315 |E: | 7.17 | 7.28 | |Hp| | | | | |HIP HIP | +86084 |592379 |V2379 Oph |173532.6+050101 |E: | 7.95 | 8.12 | |Hp| | | | | |HIP HIP | +86085 |592380 |V2380 Oph |173532.6+112202 |LB | 7.60 | 7.70 | |Hp| | | | | |HIP HIP | +86374 |592381 |V2381 Oph |173857.9+023930 |RR: | 7.77 | 7.84 | |Hp| | | | | |HIP HIP | +86487 |592382 |V2382 Oph |174023.9-285524 |BE | 7.26 | 7.29 | |Hp| | | | | |HIP HIP | +86509 |592383 |V2383 Oph |174043.8-074613 |BY: | 10.38 | 10.68 | |Hp| | | | | |HIP HIP | +86672 |592384 |V2384 Oph |174230.4-284456 |E | 9.10 | 9.24 | |Hp| | | | | |HIP HIP | +86964 |592385 |V2385 Oph |174615.2-010900 |BE | 8.85 | 8.98 | |Hp| | | | | |HIP HIP | +87107 |592386 |V2386 Oph |174752.8+062409 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +87474 |592387 |V2387 Oph |175221.1+064603 |LB | 7.64 | 7.82 | |Hp| | | | | |HIP HIP | +87655 |592388 |V2388 Oph |175414.2+110750 |EB | 6.27 | 6.55 | |Hp| | | | | |HIP HIP | +87797 |592389 |V2389 Oph |175607.4-012436 |SRB | 7.65 | 7.82 | |Hp| | | | | |HIP HIP | +87999 |592390 |V2390 Oph |175830.9+131154 |LB: | 10.73 | 10.90 | |Hp| | | | | |HIP HIP | +88601 |592391 |V2391 Oph *|180527.3+023000 |BY: | 4.14 | 4.16 | |Hp| | | | | |HIP HIP | +89527 |592392 |V2392 Oph |181605.6+022239 |SRB: | 6.03 | 6.20 | |Hp| | | | | |HIP HIP | +90971 |592393 |V2393 Oph |183323.3+081606 |ACV | 6.40 | 6.44 | |Hp| | | | | |HIP HIP | +83232 |592398 |V2398 Oph |170035.0-273804 |IT | 11.32 | 12.82 | |U | | | | | |75086 CoD | +87937 |592500 |V2500 Oph |175748.5+044136 |BY | 9.55 |( 0.02 )| |V | | | | | |75192 75300| +89601 |592502 |V2502 Oph |181704.8+010021 |GDOR: | 6.61 | 6.77 | |Hp| | | | | |75029 BD | +82693 |592542 |V2542 Oph |165410.6-013644 |DSCTC | 6.25 |( 0.02 )| |V | | | | | |77124 DM | +88527 |592564 |V2564 Oph |180440.1+034645 |LB: | 7.34 |( 0.05 )| |V | | | | | |77023 DM | +80366 |592578 |V2578 Oph |162419.8-133830 |BY | 8.40 |( 0.02 )| |V | | | 13.83 : | |K2V |78018 DM | +81716 |592581 |V2581 Oph |164129.1+011847 |BY | 9.42 |( 0.04 )| |V | | | 10.58 | |K2V |78018 DM | +83634 |592626 |V2626 Oph *|170532.0+103247 |EA | 8.26 | 8.43 | 8.36 |V |52787.824 | | 10.8743 |04 |A5 |79006 DM | +87511 |592653 |V2653 Oph |175247.3+034739 |EA | 9.51 | 9.77 | 9.75 |V |48744.790 | | 4.39435 |07 |G5 |79004 DM | +88964 |592666 |V2666 Oph *|180933.9+035936 |GDOR | 6.11 |( 0.02 )| |B | | | 0.61439 | |F0V+G1V |79202 DM | +81377 |599006 |zet Oph |163709.5-103402 |GCAS | 2.56 | 2.58 | |V | | | | |O9.5V(e) |09557 BD | +84970 |599008 |tet Oph *|172200.6-245958 |BCEP | 3.25 | 3.31 | |V |40324.230 | | 0.140531 | |B2IV |04207 CoD | +83000 |599010 |kap Oph |165740.1+092230 |LB: | 4.1 | 5.0 | |p | | | | |K2III |04808 BD | +80569 |599022 |khi Oph *|162701.4-182723 |GCAS | 4.18 | 5.0 | |V | | | | |B1.5IV-Vpe |00495 03389| +80975 |599024 |ome Oph *|163208.2-212759 |ACV | 4.44 | 4.51 | |V | | | 2.99 : | |A7p(Sr-Cr) |08415 BD | +23165 |600001 |R Ori *|045900.6+080750 |M | 9.05 | 13.4 | |V |41391. | | 377.1 |40 |C8,2e(Ne) |00001 00002| +25673 |600002 |S Ori *|052900.9-044133 |M | 7.2 | 14.0 | |V |43945. | | 414.30 |48 |M6.5e-M9.5e |00001 00002| +28041 |600004 |U Ori *|055549.2+201031 |M | 4.8 | 13.0 | |V |45254. | | 368.3 |38 |M6e-M9.5e |00001 00002| +23680 |600006 |W Ori *|050523.7+011039 |SRB | 8.2 | 12.4 | |p | | | 212. | |C5,4(N5) |00372 05288| +28045 |600009 |Z Ori *|055550.9+134142 |EA/DS | 9.8 | 10.7 | 9.9 |p |25190.720 | | 5.203265 |12 |B3 |01004 03778| +30286 |600011 |RS Ori *|062213.2+144041 |DCEP | 8.01 | 8.88 | |V |42820.794 | | 7.566881 |32 |F5Ib-G1Ib |08632 00963| +26032 |600012 |RT Ori *|053313.8+070912 |SRB | 9.7 | 11.8 | |p | | | 321. | |C6,4(Nb) |00372 08953| +23602 |600037 |UX Ori |050430.0-034714 |ISA(YY) | 8.7 | 12.8 | |p | | | | |A2ea |05762 08953| +26063 |600040 |VV Ori *|053331.4-010922 |EA/KE: | 5.31 | 5.66 | 5.50 |V |40890.5158 | | 1.4853784 |20 |B1V+B7V |09469 08953| +26403 |600084 |BF Ori *|053713.3-063501 |INA | 9.69 | 13.47 | |V | | | | |A0:-FpII-Vea |09468 00861| +30564 |600089 |BL Ori |062528.2+144319 |LB | 7.9 | 9.7 | |p | | | | |C6,3(Nb,Tc) |04079 08953| +28166 |600094 |BQ Ori |055707.4+225020 |SR | 9.4 | 11.5 | |p | | | 110. | |M5IIIe-M8III |00589 00119| +25737 |600110 |CI Ori *|052944.0-010532 |CST: | 4.67 : | 4.71 | |V | | | | |K5III |03712 BD | +25785 |600111 |CK Ori |053019.9+041217 |SR: | 5.9 | 7.1 | |V | | | 120. : | |K2IIIe: |09427 08953| +25540 |600115 |CO Ori *|052738.3+112539 |INSB | 10.3 | 13.8 | |p | | | | |G5Vpe |09468 05469| +29022 |600119 |CS Ori |060725.5+110907 |DCEP | 10.85 | 11.80 | |V |37258.156 | | 3.88939 |23 |F5-G0 |00921 00530| +28456 |600136 |DN Ori *|060028.4+101305 |EA/DS | 9.8 | 11.1 | 9.9 |p |35577.20 | | 12.96641 |08 |A2e+F5III |08050 08050| +28558 |600138 |DP Ori |060139.8+105440 |SRB | 10.5 | 12.5 | |p |33260. | | 90. : | |M6.5 |02563 00002| +22535 |600159 |EP Ori |045057.3+030832 |M | 10.5 | 13. | |p |33182. | | 358.5 | |M10e |03597 06286| +24156 |600161 |ER Ori *|051114.5-083325 |EW/KW | 9.28 | 10.01 | 9.97 |V |41626.415 | | 0.4233987 | |F8V |00001 01467| +25863 |600168 |EY Ori *|053118.4-054214 |EA/D | 9.43 | 10.13 | 9.54 |V |43527.466 | | 16.787832 |06 |A7Vm |09476 08052| +25591 |600178 |FO Ori *|052809.7+033723 |EA/DS: | 9.5 | 10.3 | 9.7 |p |31820.627 | | 18.80058 |02 |A3 |03115 08953| +29896 |600193 |GK Ori |061742.1+083111 |SR | 9.5 | 11. | |V |26002. | | 236. | |C4-5,4-5(N) |00483 08953| +25689 |600205 |GW Ori *|052908.4+115213 |INST | 10.1 | 11.5 | |p | | | | |G5-8Ve(T) |08289 00598| +26258 |600296 |NU Ori *|053531.4-051603 |INSA | 6.80 | 6.93 | |V | | | | |B0.5V |07359 00861| +25299 |600346 |V0346 Ori |052442.8+014348 |ISA | 10.0 | 11.9 | |p | | | | |A5III: |04079 00491| +27059 |600351 |V0351 Ori |054418.8+000840 |INSA | 8.3 | 11.6 | |p | | | | |A7III |00201 08953| +26081 |600371 |V0371 Ori *|053344.8+015643 |UV | 11.0 | 13.01 | |B | | | | |M2.5Ve |00997 07060| +26327 |600380 |V0380 Ori *|053625.4-064258 |INAT | 8.2 | 11.10 | |B | | | | |B8-A2eq(T) |00861 04002| +22943 |600429 |V0429 Ori |045612.0-033124 |RRAB: | 10. | 11. | |V |28876.413 | | 0.5017 |27 | |02455 06286| +26742 |600901 |V0901 Ori *|054056.4-013026 |SXARI | 6.97 | 7.02 | |V |42808.59 | | 1.5385 | |B2Vp |08054 08043| +29106 |600916 |V0916 Ori *|060818.1+135818 |BCEP | 8.11 | 8.13 | |B | | | 0.39912 : | |B2.5V |05522 07525| +29121 |600917 |V0917 Ori *|060827.4+135551 |BCEP | 8.77 | 8.90 | |V | | | 0.4033 | |B3Vn |05522 BD | +30041 |600963 |V0963 Ori |061916.9+203448 |BCEP: | 8.47 : | 8.50 | |V | | | 0.2 : | |B2Ibpea |05838 BD | +28271 |601004 |V1004 Ori *|055824.4+015014 |DSCTC | 5.88 | 5.92 | |V | | | 0.0611 | |A5m |08679 BD | +23200 |601005 |V1005 Ori *|045934.8+014701 |BY+UV | 9.96 | 10.17 | |V |44521.37 | | 4.565 |50 |M0.5Ve |09503 05288| +26220 |601016 |V1016 Ori *|053515.8-052314 |EA | 6.72 | 7.65 | |V |43144.600 | | 65.43233 |01 |B0.5Vp |09522 00861| +27341 |601031 |V1031 Ori *|054726.9-103159 |EA/DM | 6.02 | 6.43 | 6.32 |V |42688.8732 | | 3.4057 |01 |A4V |08476 BD | +23607 |601032 |V1032 Ori |050434.1+152415 |ACV | 4.65 | 4.69 | |V |43864.78 | | 4.6398 |50 |B9p(Si) |04013 BD | +26182 |601045 |V1045 Ori *|053454.0-040638 |ACV | 6.73 |( 0.045 )| |V |43470.63 | | 1.564 |40 |B9IVp(Si-Mn) |04013 00861| +26233 |601046 |V1046 Ori *|053521.9-042939 |E:+SXARI | 6.54 | 6.58 | 6.58 |V |43495.091 | | 0.94629 | |B2Vp(He+) |04134 00861| +26728 |601051 |V1051 Ori |054046.2-102431 |ACV | 6.52 |( 0.02 )| |V |41728.18 | | 1.099 |55 |B9.5IIIp(Si) |04136 BD | +27423 |601054 |V1054 Ori *|054825.5-004535 |ACV | 7.32 | 7.35 | |V |44202.159 | | 8.635 | |F0p(Sr-Eu) |08934 BD | +30162 |601056 |V1056 Ori *|062048.3+054426 |LC | 7.93 | 8.19 | |V | | | | |M3Ib-II |02556 BD | +24716 |601057 |V1057 Ori |051804.1+132504 |SRB | 7.70 | 8.11 | |V | | | 67. | |M5III |04142 04142| +24196 |601085 |V1085 Ori |051141.4+003053 |ACV | 6.65 | 6.70 | |V | | | | | |67072 67141| +25302 |601086 |V1086 Ori |052444.8+015047 |GCAS | 4.92 | 4.96 | |V | | | | | |67143 67141| +25954 |601101 |V1101 Ori |053214.8-043106 |SXARI | 8.14 |( 0.06 )| |V | | | | | |67072 67148| +26048 |601107 |V1107 Ori |053326.1+003717 |SXARI | 8.06 |( 0.02 )| |V | | | | | |67072 BD | +26656 |601148 |V1148 Ori |053955.4-031950 |ACV | 8.04 |( 0.04 )| |V | | | | | |67072 67141| +26795 |601149 |V1149 Ori |054126.8+034641 |RS: | 7.2 |( 0.11 )| |V | | | | | |67163 BD | +30019 |601155 |V1155 Ori |061901.8+171931 |ACV | 6.32 |( 0.02 )| |V | | | | | |67131 BD | +25235 |601156 |V1156 Ori |052350.4+020456 |SXARI | 7.89 |( 0.03 )| |V | | | | | |68187 BD | +26304 |601179 |V1179 Ori |053606.2-072347 |ACV | 7.37 |( 0.10 )| |V | | | | | |68187 BD | +23245 |601192 |V1192 Ori |050008.2+031712 |RS | 7.50 | 7.57 | |V | | | | | |69011 BD | +26953 |601197 |V1197 Ori |054309.3-013648 |ELL | 6.30 |( 0.03 )| |V | | | | | |69154 BD | +23105 |601198 |V1198 Ori |045817.0+002714 |RS | 7.12 | 7.19 | |V | | | | | |70084 BD | +30055 |601260 |V1260 Ori |061928.9+132654 |RS | 7.7 |( 0.11 )| |V | | | | | |71001 BD | +25092 |601261 |V1261 Ori |052218.6-083958 |EA/GS/WD | 6.91 |( 0.27 )| |V | | | | | |72129 BD | +28582 |601307 |V1307 Ori |060200.0+163057 |INA | 9.48 |( 0.35 )| |V | | | | | |72131 72029| +29988 |601308 |V1308 Ori |061845.5+151652 |INA | 11.47 | 11.62 | |V | | | | | |72028 72051| +26857 |601352 |V1352 Ori |054209.3+122922 |BY | 11.48 | 11.55 | |V | | | | | |73018 73237| +29525 |601357 |V1357 Ori |061312.5+103738 |RS: | 6.44 | 6.49 | |V | | | | | |73242 BD | +30030 |601358 |V1358 Ori |061908.1-032620 |BY | 7.91 | 7.99 | |V | | | | | |73055 BD | +22454 |601359 |V1359 Ori |044954.9-022839 |DSCTC | 8.52 | 8.56 | |Hp| | | | | |HIP HIP | +23328 |601360 |V1360 Ori |050106.0+034302 |LPB: | 7.18 | 7.22 | |Hp| | | | | |HIP HIP | +23496 |601361 |V1361 Ori |050303.1+144557 |EB | 9.21 | 9.42 | |Hp| | | | | |HIP HIP | +23701 |601362 |V1362 Ori |050540.4+062755 |LB: | 9.94 | 10.08 | |Hp| | | | | |HIP HIP | +23809 |601363 |V1363 Ori |050702.1-004733 |EW | 10.35 | 10.59 | |Hp| | | | | |HIP HIP | +23996 |601364 |V1364 Ori |050929.8+142121 |LB: | 7.95 | 8.08 | |Hp| | | | | |HIP HIP | +24441 |601365 |V1365 Ori |051437.0-003346 |BY: | 6.46 | 6.87 | |Hp| | | | | |HIP HIP | +24552 |601366 |V1366 Ori |051600.5-094835 |E: | 9.87 | 10.64 | |Hp| | | | | |HIP HIP | +24625 |601367 |V1367 Ori |051654.3+043950 |LB | 8.58 | 8.78 | |Hp| | | | | |HIP HIP | +25004 |601368 |V1368 Ori |052113.4+072119 |SRA | 9.66 | 10.01 | |Hp| | | | | |HIP HIP | +25011 |601369 |V1369 Ori |052119.3+040043 |BE | 6.47 | 6.67 | |Hp| | | | | |HIP HIP | +25394 |601370 |V1370 Ori |052555.9-022008 |LPB | 8.23 | 8.29 | |Hp| | | | | |HIP HIP | +25577 |601371 |V1371 Ori |052759.1+125442 |EB | 8.16 | 8.24 | |Hp| | | | | |HIP HIP | +25655 |601372 |V1372 Ori |052848.5+020953 |BE | 7.06 | 7.19 | |Hp| | | | | |HIP HIP | +25681 |601373 |V1373 Ori |052905.8-063806 |SRD | 8.83 | 8.91 | |Hp| | | | | |HIP HIP | +25896 |601374 |V1374 Ori |053141.0+091334 |BE | 7.45 | 7.72 | |Hp| | | | | |HIP HIP | +25902 |601375 |V1375 Ori |053143.7-031259 |E: | 6.82 | 7.00 | |Hp| | | | | |HIP HIP | +26223 |601376 |V1376 Ori |053516.7+084203 |LB | 6.89 | 7.19 | |Hp| | | | | |HIP HIP | +26263 |601377 |V1377 Ori *|053535.9-031510 |LPB | 6.35 | 6.37 | |Hp| | | | | |HIP HIP | +26442 |601378 |V1378 Ori |053736.8-045603 |LPB | 7.06 | 7.12 | |Hp| | | | | |HIP HIP | +26464 |601379 |V1379 Ori |053745.9-004642 |LPB | 7.56 | 7.60 | |Hp| | | | | |HIP HIP | +27309 |601380 |V1380 Ori *|054707.9+001756 |EA | 9.76 | 10.61 | |Hp| | | | | |HIP HIP | +27912 |601381 |V1381 Ori |055422.5-010435 |LB: | 7.25 | 7.51 | |Hp| | | | | |HIP HIP | +27941 |601382 |V1382 Ori |055444.7+135117 |BE: | 7.82 | 7.96 | |Hp| | | | | |HIP HIP | +28039 |601383 |V1383 Ori |055547.3-073810 |EB | 8.47 | 8.66 | |Hp| | | | | |HIP HIP | +28142 |601384 |V1384 Ori |055650.6+162118 |EA | 7.14 | 7.41 | |Hp| | | | | |HIP HIP | +28519 |601385 |V1385 Ori |060110.5+192514 |EB | 7.47 | 7.64 | |Hp| | | | | |HIP HIP | +28954 |601386 |V1386 Ori |060640.5+153232 |BY: | 6.88 | 6.94 | |Hp| | | | | |HIP HIP | +29186 |601387 |V1387 Ori |060925.2+171100 |EB | 8.77 | 8.87 | |Hp| | | | | |HIP HIP | +29321 |601388 |V1388 Ori |061059.2+115942 |EA | 7.41 | 7.76 | |Hp| | | | | |HIP HIP | +29509 |601389 |V1389 Ori |061259.6+060059 |SRB: | 6.49 | 6.59 | |Hp| | | | | |HIP HIP | +29563 |601390 |V1390 Ori |061342.2+084245 |BE | 8.04 | 8.16 | |Hp| | | | | |HIP HIP | +29707 |601391 |V1391 Ori |061527.9+174501 |LB | 8.14 | 8.43 | |Hp| | | | | |HIP HIP | +29787 |601392 |V1392 Ori |061617.9+090140 |EB | 7.73 | 7.92 | |Hp| | | | | |HIP HIP | +29899 |601393 |V1393 Ori |061743.6-001507 |CST: | 11.3 | | |V | | | | |A5 | HIP | +29961 |601394 |V1394 Ori |061825.9-010746 |LB | 9.60 | 9.93 | |Hp| | | | | |HIP HIP | +30010 |601395 |V1395 Ori |061858.9+101934 |LB: | 8.92 | 9.02 | |Hp| | | | | |HIP HIP | +25205 |601649 |V1649 Ori |052331.1+051923 |DSCTC | 6.34 |( 0.01 b )| |V | | | 0.0259 | |A2V |78037 DM | +23385 |601801 |V1801 Ori |050138.0+025425 |EA/RS | 8.91 | 9.15 | 9.05 |V |52997.720 | | 4.14357 | |G3/G5V |79004 DM | +25174 |601804 |V1804 Ori *|052305.5+010325 |EA | 7.08 | 7.14 | 7.12 |V |48188.925 | | 2.22878 |08 |B9.5V |79006 DM | +22848 |601834 |V1834 Ori *|045456.4+083600 |EA | 6.85 | 6.94 | 6.87 |V |47998.857 | | 1.51058 |08 |A2III |80011 HIP | NL80_1 +26120 |601936 |V1936 Ori |053414.9-025254 |INA: | 6.89 | 7.03 | |J | | | | |B3Vn |80189 HIP | NL80_1 +26335 |602689 |V2689 Ori *|053631.0+111940 |RS | 8.80 | 9.05 | |V | | | 12.285 | |K7 |80002 HIP | NL80_1 +27989 |609001 |alf Ori *|055510.3+072425 |SRC | 0.0 | 1.3 | |V | | | 2335. | |M1-M2Ia-Ibe |06116 08953| +24436 |609002 |bet Ori |051432.3-081206 |ACYG | 0.17 | 0.22 | |Hp| | | | | |HIP HIP | +26311 |609005 |eps Ori *|053612.8-011207 |ACYG | 1.64 | 1.74 | |V | | | | |B0.5Iabea |03712 08043| +25281 |609007 |eta Ori *|052428.6-022350 |EA+BCEP: | 3.31 | 3.60 | 3.57 |V |15761.826 | | 7.989268 | |B0.5Vea+B3V |09504 08043| +25473 |609023 |psi Ori *|052650.2+030544 |E/D | 4.55 | 4.61 | 4.58 |V |38802.914 | | 2.52596 | |B2IVea+B0 |09537 08043| +26594 |609024 |ome Ori |053911.2+040717 |GCAS | 4.40 | 4.59 | |V | | | | |B2IIIe |03712 08043| +89258 |610001 |R Pav *|181253.0-633657 |M | 7.5 | 13.8 | |V |42009. | | 229.46 |48 |M3e-M5(II)e |00001 00002| +98031 |610002 |S Pav *|195514.0-591144 |SRA | 6.6 | 10.4 | |V |38859. | | 380.86 |49 |M7IIe-M8III |00001 00002| +97644 |610003 |T Pav *|195043.5-714617 |M | 7.0 | 14.0 | |V |39429. | | 243.62 |43 |M4e |00001 00002| +86728 |610005 |V Pav *|174318.9-574326 |SRB | 9.3 | 11.2 | |p | | | 225.4 | |C6,4(Nb) |00624 08588| +99512 |610007 |X Pav |201145.9-595613 |SRB | 9.2 | 11.1 | |p | | | 199.19 |48 |MC |06036 05474| +105678|610008 |Y Pav |212416.7-694402 |SRB | 8.6 | 10.3 | |p |30060. | | 233.3 | |C7,3(N0) |01016 05474| +88775 |610011 |RS Pav |180722.0-585742 |CWA | 10.10 | 11.25 | |V |27247.600 | | 19.954 |38 |Ke |00251 06286| +106044|610024 |SX Pav *|212844.8-693019 |SRB | 5.34 | 5.97 | |V | | | 50. : | |M5-M7III |06645 05474| +87804 |610047 |WY Pav |175612.4-570943 |RRAB | 11.4 | 12.5 | |p |26868.320 | | 0.58858 | | |00251 06286| +89886 |610071 |AR Pav *|182027.9-660443 |EA+ZAND | 7.4 | 13.62 | |B |20330. | | 604.6 |15 |cont+M3III+shell |06915 09560| +96581 |610091 |BN Pav |193803.4-603640 |RRAB | 11.2 | 12.5 | |p |28336.513 | | 0.567173 |16 | |00016 02339| +97605 |610092 |BO Pav |195017.0-654659 |EA/D: | 9.3 | 10.1 | |p |28698.43 | | 19.23 |03 : | |00016 08953| +98265 |610093 |BP Pav |195800.2-654410 |RRAB | 11.3 | 12.7 | |p |28334.480 | | 0.53740 | | |00016 02339| +98447 |610094 |BQ Pav |200011.1-695255 |M | 10.9 |< 14.0 | |p |27985. | | 112. |54 | |00016 02339| +101545|610239 |IV Pav |203444.9-723655 |RR: | 10.4 | 10.8 | |p | | | | | |06920 04001| +103542|610259 |KZ Pav *|205840.1-702520 |EA/SD | 7.71 | 9.30 | |V |44431.7546 | | 0.9498768 | |F6V |09213 08953| +102508|610285 |MW Pav *|204627.7-715659 |EW | 8.51 | 8.95 | 8.92 |V |40862.6076 | | 0.79498855 | |F3IV/V |06921 06871| +98608 |610296 |NU Pav |200144.7-592233 |SRB | 4.91 | 5.26 | |V | | | 60. : | |M6III |05992 05474| +89324 |610298 |NW Pav *|181334.6-651413 |CWA | 11.4 | 13.0 | |p |44168.80 | | 30. | | |06561 05829| +97674 |610301 |NZ Pav |195101.1-653618 |DSCTC | 6.04 |( 0.017 )| |V | | | 0.08 : | |F2III-IV |06338 CPD | +102070|610342 |V0342 Pav |204106.8-613532 |DSCTC | 8.4 |( 0.03 )| |V | | | 0.034 | |A6V |08445 CPD | +102717|610343 |V0343 Pav |204848.2-721244 |ACV | 7.99 | 8.02 | |V | | | | | |67484 CPD | +90304 |610346 |V0346 Pav |182531.6-630118 |DSCTC | 6.14 |( 0.04 b )| |V | | | | | |73243 CPD | +87043 |610352 |V0352 Pav |174707.4-595940 |DSCTC | 6.55 | 6.61 | |Hp| | | | | |HIP HIP | +88118 |610353 |V0353 Pav |175949.6-574608 |I: | 11.89 | 12.42 | |Hp| | | | | |HIP HIP | +88620 |610354 |V0354 Pav |180536.8-650955 |LB | 8.34 | 8.51 | |Hp| | | | | |HIP HIP | +89316 |610355 |V0355 Pav |181328.5-674831 |LB: | 8.34 | 8.48 | |Hp| | | | | |HIP HIP | +89416 |610356 |V0356 Pav |181450.2-664854 |E: | 7.45 | 7.62 | |Hp| | | | | |HIP HIP | +90815 |610357 |V0357 Pav |183132.4-675718 |ACV: | 7.94 | 7.99 | |Hp| | | | | |HIP HIP | +91193 |610358 |V0358 Pav |183612.0-653157 |LB: | 8.43 | 8.53 | |Hp| | | | | |HIP HIP | +91516 |610359 |V0359 Pav |183948.7-591806 |LB | 7.38 | 7.68 | |Hp| | | | | |HIP HIP | +91813 |610360 |V0360 Pav |184310.7-711718 |LB | 7.63 | 7.81 | |Hp| | | | | |HIP HIP | +92148 |610361 |V0361 Pav |184652.3-651459 |LB | 7.07 | 7.17 | |Hp| | | | | |HIP HIP | +92330 |610362 |V0362 Pav |184903.5-631610 |E | 7.44 | 7.64 | |Hp| | | | | |HIP HIP | +92629 |610363 |V0363 Pav |185227.0-571146 |EA | 8.17 | 8.50 | |Hp| | | | | |HIP HIP | +93272 |610364 |V0364 Pav |185958.5-715558 |LPB: | 6.77 | 6.80 | |Hp| | | | | |HIP HIP | +93786 |610365 |V0365 Pav |190558.2-600633 |LB: | 8.88 | 9.00 | |Hp| | | | | |HIP HIP | +94443 |610366 |V0366 Pav |191316.9-731854 |LB: | 8.32 | 8.48 | |Hp| | | | | |HIP HIP | +94693 |610367 |V0367 Pav |191605.4-644920 |EB | 9.07 | 9.26 | |Hp| | | | | |HIP HIP | +95160 |610368 |V0368 Pav |192137.2-664326 |EB: | 8.96 | 9.27 | |Hp| | | | | |HIP HIP | +95405 |610369 |V0369 Pav |192426.6-714858 |LB: | 8.39 | 8.53 | |Hp| | | | | |HIP HIP | +95403 |610370 |V0370 Pav |192425.6-632142 |LC | 8.15 | 8.45 | |Hp| | | | | |HIP HIP | +95479 |610371 |V0371 Pav |192517.5-572234 |LB | 8.77 | 8.90 | |Hp| | | | | |HIP HIP | +95592 |610372 |V0372 Pav |192634.6-565519 |SRB | 7.80 | 7.95 | |Hp| | | | | |HIP HIP | +97803 |610373 |V0373 Pav |195227.6-591003 |LB: | 8.62 | 8.72 | |Hp| | | | | |HIP HIP | +98267 |610374 |V0374 Pav |195801.0-603523 |LB: | 8.18 | 8.28 | |Hp| | | | | |HIP HIP | +98811 |610375 |V0375 Pav |200404.7-653601 |BY: | 11.17 | 12.23 | |Hp| | | | | |HIP HIP | +99358 |610376 |V0376 Pav |201001.3-633932 |LB | 7.82 | 7.95 | |Hp| | | | | |HIP HIP | +99615 |610377 |V0377 Pav |201257.6-584645 |ACV | 8.89 | 8.93 | |Hp| | | | | |HIP HIP | +99758 |610378 |V0378 Pav |201425.8-621645 |SRB | 6.67 | 6.82 | |Hp| | | | | |HIP HIP | +100389|610379 |V0379 Pav |202131.8-732907 |LB: | 8.92 | 9.02 | |Hp| | | | | |HIP HIP | +100576|610380 |V0380 Pav |202345.1-592029 |LB: | 8.67 | 8.77 | |Hp| | | | | |HIP HIP | +101064|610381 |V0381 Pav |202918.0-642339 |LB | 8.86 | 9.06 | |Hp| | | | | |HIP HIP | +101286|610382 |V0382 Pav *|203147.4-730418 |DSCT: | 8.91 | 9.10 | |Hp| | | | | |HIP HIP | +101303|610383 |V0383 Pav |203200.5-600238 |LB: | 8.73 | 8.90 | |Hp| | | | | |HIP HIP | +101705|610384 |V0384 Pav |203654.5-672510 |LB: | 7.99 | 8.11 | |Hp| | | | | |HIP HIP | +102866|610385 |V0385 Pav |205026.9-725852 |LB | 8.93 | 9.37 | |Hp| | | | | |HIP HIP | +103320|610386 |V0386 Pav |205557.9-652559 |EW | 8.39 | 8.49 | |Hp| | | | | |HIP HIP | +103553|610387 |V0387 Pav |205847.5-614841 |LB | 8.57 | 8.87 | |Hp| | | | | |HIP HIP | +103803|610388 |V0388 Pav |210201.3-715000 |DSCTC | 8.81 | 8.88 | |Hp| | | | | |HIP HIP | +104183|610389 |V0389 Pav |210629.4-683845 |LB: | 7.61 | 7.71 | |Hp| | | | | |HIP HIP | +105441|610390 |V0390 Pav |212124.4-665457 |BY: | 9.03 | 9.20 | |Hp| | | | | |HIP HIP | +105468|610391 |V0391 Pav |212146.0-642435 |LB: | 7.72 | 7.83 | |Hp| | | | | |HIP HIP | +105915|610400 |V0400 Pav *|212704.4-623914 |EB | 9.18 | 9.33 | 9.23 |V |51905.532 | | 1.155466 | |F5V |78011 DM | +90773 |610405 |V0405 Pav |183110.9-640731 |EA | 9.11 | 9.20 | 9.12 |V |48528.814 | | 5.64797 |04 |F2IV |79009 DM | +93015 |619010 |kap Pav *|185657.0-671401 |CEP | 3.91 | 4.78 | |V |40140.167 | | 9.09423 |44 |F5-G5I-II |00001 04234| +92609 |619011 |lam Pav *|185213.0-621115 |GCAS | 4.0 | 4.26 | |V | | | | |B2II-IIIe | 04234| +90797 |619013 |nu. Pav |183122.4-621642 |LPB | 4.56 | 4.60 | |Hp| | | | | |HIP HIP | +101773|619017 |rho Pav *|203735.3-613148 |DSCTC | 4.85 |( 0.055 )| |V | | | 0.1141 | |F0mIII |04143 CPD | +114114|620001 |R Peg *|230639.2+103236 |M | 6.9 | 13.8 | |V |42444. | | 378.1 |44 |M6e-M9e |00001 00002| +115242|620002 |S Peg |232032.6+085508 |M | 6.9 | 13.8 | |V |45311. | | 319.22 |47 |M5e-M8.5e |00001 00002| +118149|620004 |U Peg *|235758.5+155710 |EW/KW | 9.23 | 10.07 | 9.73 |V |36511.66823 | | 0.374781439 | |F3+F3 |09562 08953| +115188|620006 |W Peg *|231950.5+261644 |M | 7.6 | 13.0 | |V |44873. | | 345.5 |46 |M6e-M8e |00001 00002| +8 |620009 |Z Peg *|000006.6+255311 |M | 7.3 | 13.6 | |V |45090. | | 334.8 |50 |M6e-M8.5e(Tc) |00001 00002| +109610|620011 |RS Peg *|221216.2+143312 |M | 8.2 | 14.7 | |V |45161. | | 415.4 |45 |M6e-M9e |00001 00002| +109089|620018 |RZ Peg *|220553.0+333025 |M | 7.6 | 13.6 | |V |45248. | | 438.7 |44 |C9,1e(Ne)(Tc)/CSe|00001 00002| +111385|620019 |SS Peg *|223358.3+243354 |M | 8.0 | 13.6 | |V |45177. | | 424.8 | |M6e-M7e |00001 00002| +112680|620020 |ST Peg |224904.5+272129 |SRB | 9.9 | 11.6 | |p | | | 136.2 | |M6e |01026 08953| +109070|620022 |SV Peg *|220542.1+352055 |SRB | 9.2 | 11.0 | |p | | | 144.6 | |M7 |01026 08953| +112784|620024 |SX Peg *|225024.8+175337 |M | 9.7 | 15. | |p |45186. | | 303.6 |43 |S3,9e-S4.5,9e |00001 08953| +536 |620027 |TT Peg |000629.3+270524 |SRA | 9.3 | 11.2 | |V |37178. | | 154. | |M6e |03908 08953| +107390|620028 |TU Peg *|214504.6+124155 |M | 8.2 | 14.6 | |V |45137. | | 321.6 |45 |M7e-M8e |00001 08953| +108928|620030 |TW Peg *|220359.5+282054 |SRB | 7.5 | 8.4 | |p | | | 929.3 | |M6-M8 |00653 08953| +110112|620031 |TX Peg |221818.2+133629 |SRB | 9.3 | 10.80 | |B | | | 120. |50 |M5e |00001 05151| +115986|620032 |TY Peg *|232957.0+133232 |EA/SD | 10.1 | 12.0 | 10.2 |V |40451.784 | | 3.092220 |14 *|A2 |00001 00010| +108934|620035 |UV Peg |220408.2+354534 |CST | 9.1 | | |V | | | | |A0 | BD | +110099|620036 |UW Peg *|221810.7+024350 |SRB | 8.7 | 9.9 | |V | | | 106. | |M5-M7 |00898 08953| +107196|620042 |VX Peg *|214244.7+222835 |SRB | 10.0 | 11.6 | |p | | | 934. | |M7 |00653 08953| +116942|620044 |VZ Peg *|234216.3+245458 |RRC | 11.66 | 12.13 | |V |38317.2930 | | 0.3064863 |36 |A0 |03315 02474| +112868|620060 |AF Peg |225123.2+180708 |SRB | 8.4 | 9.8 | |V | | | 65. | |M5II-III |00310 00119| +104506|620066 |AM Peg |211008.4+122730 |SRA | 9.0 | 11.0 | |V |41620. | | 137.1 |44 |M1e-M3e |00373 08953| +106740|620070 |AQ Peg *|213720.9+132829 |EA/SD | 10.39 | 12.85 | 10.47 |V |41222.7048 | | 5.5485028 |12 |A2e+G5 |09099 00110| +105653|620074 |AU Peg *|212400.2+181644 |CEP | 8.98 | 9.47 | |V |42303.61 | | 2.4015 |33 : |F8 |09582 03203| +107935|620075 |AV Peg *|215202.8+223429 |RRAB | 9.88 | 10.92 | |V |43790.316 | | 0.3903747 |17 |A7-F6 |09583 08953| +107960|620076 |AW Peg *|215220.7+240044 |EA/DS | 7.40 | 8.61 | 7.60 |V |43741.400 | | 10.62259 |10 |A5Ve+F2:pe |00001 08953| +110493|620080 |BB Peg *|222256.9+161928 |EW/KW | 10.8 |( 0.68 )|( 0.60 )|B |43764.3334 | | 0.3615021 | |F8 |09586 00975| +112057|620081 |BC Peg |224148.4+211013 |SRB | 9.3 | 10.3 | |V | | | 125. |40 : |M6 |00310 08953| +112155|620082 |BD Peg |224259.0+280926 |SRB | 9.4 | 10.3 | |p | | | 78. |50 |M6-M8 |01026 08953| +112994|620086 |BH Peg *|225301.0+154717 |RRAB | 9.99 | 10.79 | |V |39365.280 | | 0.640993 |20 |A8-F6 |06603 06603| +113390|620087 |BI Peg *|225751.8+180101 |SRA | 9.9 | 11.2 | |V |27020. | | 500. |52 |M6e |00460 08953| +106417|620093 |BP Peg *|213313.5+224424 |DSCT(B) | 11.69 | 12.28 | |V |43014.5786 | | 0.109543375 |30 |A0 |09589 06527| +107078|620108 |CG Peg *|214116.8+244624 |RRAB | 10.64 | 11.58 | |V |39102.396 | | 0.4671382 |17 |A7-F6 |07114 03736| +108153|620129 |DF Peg *|215443.4+143328 |EA/DS | 9.1 | 10.9 | 9.2 |p |33505.62 | | 14.6987 |04 *|A2: |00485 08953| +109890|620131 |DH Peg *|221525.6+064921 |RRC | 9.15 | 9.80 | |V |44463.571 | | 0.25551040 |39 |A5.0-F0.5 |09591 06286| +116167|620132 |DI Peg *|233214.7+145809 |EA/SD | 9.38 | 10.48 | 9.59 |V |45196.488 | | 0.7118168 |21 *|F4IV |00001 08953| +116886|620133 |DK Peg *|234133.5+101257 |EA/DM | 10.0 | 10.7 | |p |45530.466 | | 1.6318117 |15 |A0V+A2V |00001 08953| +107571|620146 |DX Peg |214712.0+235116 |SRA | 8.7 | 9.6 | |V |37555.9 | | 80.66 | |M6 |09593 09593| +114290|620147 |DY Peg *|230851.2+171256 |SXPHE(B) | 9.95 | 10.62 | |V |44502.07044 | | 0.072926297 |32 |A3-F1 |08677 02434| +106981|620149 |EE Peg *|214001.9+091105 |EA/DM | 6.93 | 7.51 | 7.06 |V |45563.8916 | | 2.62821423 |09 *|A3mV+F5 |09595 02433| +114930|620158 |EO Peg |231647.9+103557 |LB | 9.6 | 10.5 | |p | | | | |M7 |00797 08953| +114944|620169 |EZ Peg *|231653.4+254310 |NL: | 9.57 |( 0.34 )| |V | | | | |G5Ve |09442 08953| +113173|620197 |GO Peg |225501.0+193335 |LB | 8.6 | 9.3 | |p | | | | |M4 |04109 08953| +112909|620202 |GT Peg *|225153.5+314515 |BY+UV | 11.66 |( 0.07 )| |V |41388.783 | | 1.6410 | |M3.5Ve |06948 06936| +111191|620206 |GX Peg *|223134.4+293234 |DSCTC | 6.35 |( 0.02 )| |V | | | 0.056 | |A8Vm |05500 BD | +114347|620208 |GZ Peg *|230931.5+084038 |SRA | 4.95 | 5.23 | |V |43085.7 | | 92.66 | |M4SIII |09599 BD | +117628|620209 |HH Peg |235121.3+091848 |LB: | 5.74 | 5.90 | |V | | | | |M3III |06994 BD | +107350|620214 |HN Peg *|214431.3+144619 |BY | 5.92 | 5.95 | |V |40821.48 | | 24.90 | |G0V |04443 BD | +107956|620215 |HO Peg |215218.2+211623 |LB | 8.3 | 8.7 | |p | | | | |M8III |04109 BD | +108953|620216 |HP Peg *|220425.1+210309 |LB | 8.80 | 8.91 | |V | | | | |C1,2CH(R6p) |02406 BD | +113131|620218 |HR Peg *|225435.6+165631 |SRB | 6.12 | 6.49 | |V | | | 50. : | |S5,1(M4) |06059 BD | +117730|620220 |HT Peg |235237.1+105650 |DSCTC | 5.30 | 5.39 | |V | | | 0.06 | |A4Vn |06985 BD | +115806|620222 |HV Peg |232740.4+251002 |ACV | 5.96 | 5.98 | |V | | | 6.97 |47 |A0p(Hg-Mn) |07851 BD | +116264|620223 |HW Peg |233328.1+222956 |LB: | 5.32 |( 0.30 )| |V | | | | |M5IIIa |01371 BD | +117915|620227 |II Peg *|235504.0+283801 |RS | 7.18 | 7.78 | |V |44240. | | 6.7026 | |K2IV-Ve |09602 09603| +105860|620228 |IK Peg *|212626.7+192232 |DSCTC | 6.07 |( 0.03 )| |V | | | 0.044 | |A8m |04147 BD | +112997|620230 |IM Peg *|225302.3+165028 |RS | 5.60 | 5.85 | |V |43760.6 | | 24.44 | |K1III-IVp |09610 BD | +110386|620231 |IN Peg |222131.1+121219 |GCAS | 4.85 | 5.05 | |V | | | | | |67171 BD | +108578|620236 |IS Peg |215942.0+262557 |ZZO | 9.8 |( 0.08 )| |V | | | | | |68190 BD | +112306|620239 |IV Peg |224453.3+180656 |M | 12.0 | 17.8 | |B | | | | | |68191 68191| +105882|620249 |KP Peg |212641.1+134118 |EB/KE | 7.05 | 7.26 | |V | | | | | |69220 BD | +116611|620252 |KS Peg |233756.8+182402 |EB/KE | 5.37 |( 0.12 )| |B | | | | | |69222 BD | +116740|620253 |KT Peg |233930.9+281447 |RS | 7.04 |( 0.03 )| |V | | | | | |69154 BD | +114025|620254 |KU Peg |230529.3+260034 |RS | 7.7 |( 0.08 )| |V | | | | | |70089 BD | +110462|620257 |KX Peg |222232.5+302127 |RS | 7.46 | 7.58 | |V | | | | | |71220 BD | +999 |620262 |LN Peg |001230.3+143349 |RS | 8.40 | 8.59 | |V | | | | | |73005 BD | +106231|620263 |LO Peg |213101.7+232007 |BY | 9.04 | 9.27 | |V | | | | | |73248 73237| +113829|620282 |MT Peg |230305.0+205507 |BY | 7.30 |( 0.02 )| |U | | | | | |73255 BD | +316 |620289 |NN Peg |000400.3+120845 |DSCTC | 7.26 | 7.33 | |Hp| | | | | |HIP HIP | +852 |620290 |NO Peg |001026.8+283910 |SRB | 7.02 | 7.19 | |Hp| | | | | |HIP HIP | +864 |620291 |NP Peg |001038.1+165039 |SRA | 9.61 | 9.81 | |Hp| | | | | |HIP HIP | +989 |620292 |NQ Peg |001215.9+223324 |SRB | 7.58 | 7.84 | |Hp| | | | | |HIP HIP | +104478|620293 |NR Peg |210952.1+160927 |EB: | 8.13 | 8.31 | |Hp| | | | | |HIP HIP | +104923|620294 |NS Peg |211511.9+183709 |LB: | 7.92 | 8.03 | |Hp| | | | | |HIP HIP | +105623|620295 |NT Peg |212335.4+140301 |BE | 6.64 | 6.79 | |Hp| | | | | |HIP HIP | +105958|620296 |NU Peg |212730.6+103404 |LB: | 8.83 | 8.94 | |Hp| | | | | |HIP HIP | +106062|620297 |NV Peg |212859.8+221046 |SRB | 5.66 | 5.84 | |Hp| | | | | |HIP HIP | +106232|620298 |NW Peg |213102.0+112226 |SRB | 8.00 | 8.11 | |Hp| | | | | |HIP HIP | +106242|620299 |NX Peg |213109.2+053445 |LB: | 8.10 | 8.20 | |Hp| | | | | |HIP HIP | +106579|620300 |NY Peg |213509.8+181822 |SRB | 9.50 | 9.73 | |Hp| | | | | |HIP HIP | +106897|620301 |NZ Peg |213901.2+201556 |RR: | 5.83 | 5.86 | |Hp| | | | | |HIP HIP | +107099|620302 |OO Peg |214137.7+143931 |EA | 8.25 | 8.68 | |Hp| | | | | |HIP HIP | +107202|620303 |OP Peg |214248.4+240309 |LB: | 9.50 | 9.65 | |Hp| | | | | |HIP HIP | +108022|620304 |OQ Peg |215303.8+255531 |BE | 5.02 | 5.06 | |Hp| | | | | |HIP HIP | +108061|620305 |OR Peg |215337.7+191030 |LB | 7.40 | 7.68 | |Hp| | | | | |HIP HIP | +108286|620306 |OS Peg |215618.6+073314 |LB: | 9.06 | 9.16 | |Hp| | | | | |HIP HIP | +108576|620307 |OT Peg |215940.1+160218 |BY: | 9.89 | 10.05 | |Hp| | | | | |HIP HIP | +108588|620308 |OU Peg |215949.6+235627 |LB | 6.36 | 6.75 | |Hp| | | | | |HIP HIP | +108807|620309 |OV Peg |220232.1+274329 |LB: | 9.19 | 9.35 | |Hp| | | | | |HIP HIP | +108943|620310 |OW Peg |220418.1+214742 |LB: | 9.08 | 9.23 | |Hp| | | | | |HIP HIP | +109072|620311 |OX Peg |220544.5+295423 |LB: | 7.72 | 7.84 | |Hp| | | | | |HIP HIP | +109212|620312 |OY Peg |220730.0+180003 |LB | 6.26 | 6.47 | |Hp| | | | | |HIP HIP | +109376|620313 |OZ Peg |220929.0+264606 |SRB | 8.83 | 9.07 | |Hp| | | | | |HIP HIP | +109437|620314 |PP Peg |221017.0+321718 |LB | 7.15 | 7.26 | |Hp| | | | | |HIP HIP | +110058|620315 |PQ Peg |221729.8+050839 |LB | 7.24 | 7.42 | |Hp| | | | | |HIP HIP | +110163|620316 |PR Peg |221851.3+040835 |CEP: | 9.15 | 9.25 | |Hp| | | | | |HIP HIP | +110251|620317 |PS Peg |221956.0+165222 |SRB | 8.86 | 9.11 | |Hp| | | | | |HIP HIP | +110346|620318 |PT Peg |222100.1+265607 |SRB | 6.41 | 6.56 | |Hp| | | | | |HIP HIP | +110464|620319 |PU Peg |222233.9+095625 |EB | 8.02 | 8.12 | |Hp| | | | | |HIP HIP | +110569|620320 |PV Peg |222356.4+311542 |LB | 6.55 | 7.42 | |Hp| | | | | |HIP HIP | +110596|620321 |PW Peg |222421.0+050338 |LB: | 8.61 | 8.76 | |Hp| | | | | |HIP HIP | +110617|620322 |PX Peg |222434.4+160901 |LB: | 8.78 | 8.88 | |Hp| | | | | |HIP HIP | +111119|620323 |PY Peg |223036.9+120209 |LB | 8.72 | 8.94 | |Hp| | | | | |HIP HIP | +111523|620324 |PZ Peg |223540.8+142541 |LB: | 9.65 | 9.80 | |Hp| | | | | |HIP HIP | +111932|620325 |QQ Peg *|224021.2+075405 |BY: | 11.31 | 11.88 | |Hp| | | | | |HIP HIP | +111957|620326 |QR Peg |224040.4+264416 |LB: | 7.79 | 7.91 | |Hp| | | | | |HIP HIP | +112050|620327 |QS Peg |224144.9+123428 |LB: | 7.96 | 8.06 | |Hp| | | | | |HIP HIP | +112058|620328 |QT Peg |224149.6+222322 |EA | 7.44 | 7.66 | |Hp| | | | | |HIP HIP | +112212|620329 |QU Peg |224335.3+324919 |LB | 7.32 | 7.42 | |Hp| | | | | |HIP HIP | +112250|620330 |QV Peg |224409.0+273551 |LB: | 7.90 | 8.00 | |Hp| | | | | |HIP HIP | +112294|620331 |QW Peg |224443.5+264151 |LB | 8.49 | 8.68 | |Hp| | | | | |HIP HIP | +112399|620332 |QX Peg |224559.5+284004 |LB: | 9.81 | 9.98 | |Hp| | | | | |HIP HIP | +112574|620333 |QY Peg |224804.0+103421 |LB | 8.63 | 8.77 | |Hp| | | | | |HIP HIP | +112919|620334 |QZ Peg |225203.0+122011 |LB: | 10.05 | 10.21 | |Hp| | | | | |HIP HIP | +112960|620335 |V0335 Peg |225236.2+101313 |E: | 7.36 | 7.39 | |Hp| | | | | |HIP HIP | +113139|620336 |V0336 Peg |225440.4+242314 |LB | 7.32 | 7.47 | |Hp| | | | | |HIP HIP | +113321|620337 |V0337 Peg |225700.2+142508 |LB | 7.72 | 7.86 | |Hp| | | | | |HIP HIP | +113410|620338 |V0338 Peg |225806.4+213047 |LB: | 7.23 | 7.32 | |Hp| | | | | |HIP HIP | +113558|620339 |V0339 Peg |230002.5+290016 |LB: | 9.31 | 9.41 | |Hp| | | | | |HIP HIP | +113687|620340 |V0340 Peg |230132.7+323647 |LB | 7.12 | 7.43 | |Hp| | | | | |HIP HIP | +114024|620341 |V0341 Peg *|230529.0+243911 |ELL | 7.12 | 7.15 | |Hp| | | | | |HIP HIP | +114189|620342 |V0342 Peg *|230728.7+210803 |ELL: | 6.00 | 6.06 | |Hp| | | | | |HIP HIP | +114187|620343 |V0343 Peg |230727.7+324931 |EA: | 6.17 | 6.39 | |Hp| | | | | |HIP HIP | +114368|620344 |V0344 Peg |230946.9+154959 |LB: | 9.63 | 9.78 | |Hp| | | | | |HIP HIP | +114404|620345 |V0345 Peg |231008.9+334604 |LB | 6.22 | 6.59 | |Hp| | | | | |HIP HIP | +114608|620346 |V0346 Peg |231305.0+085748 |LB | 6.65 | 6.78 | |Hp| | | | | |HIP HIP | +114698|620347 |V0347 Peg |231405.7+100939 |SRD | 9.46 | 9.67 | |Hp| | | | | |HIP HIP | +114975|620348 |V0348 Peg |231712.9+314326 |LB: | 7.96 | 8.09 | |Hp| | | | | |HIP HIP | +114985|620349 |V0349 Peg |231719.2+295224 |SRB: | 7.22 | 7.32 | |Hp| | | | | |HIP HIP | +115563|620350 |V0350 Peg |232430.9+304244 |DSCTC | 7.27 | 7.32 | |Hp| | | | | |HIP HIP | +115627|620351 |V0351 Peg |232525.2+154119 |RRC | 8.00 | 8.31 | |Hp| | | | | |HIP HIP | +115991|620352 |V0352 Peg |233001.9+213258 |ACV: | 7.08 | 7.12 | |Hp| | | | | |HIP HIP | +116108|620353 |V0353 Peg |233132.3+334154 |EB | 7.49 | 7.56 | |Hp| | | | | |HIP HIP | +116119|620354 |V0354 Peg |233143.0+282413 |ACV | 6.40 | 6.44 | |Hp| | | | | |HIP HIP | +116435|620355 |V0355 Peg |233539.4+225942 |SRD | 8.98 | 9.36 | |Hp| | | | | |HIP HIP | +117161|620356 |V0356 Peg |234511.1+314122 |LB: | 9.25 | 9.39 | |Hp| | | | | |HIP HIP | +117185|620357 |V0357 Peg |234535.1+252819 |EW | 9.01 | 9.49 | |Hp| | | | | |HIP HIP | +117239|620358 |V0358 Peg |234618.9+245121 |SRB | 10.33 | 10.69 | |Hp| | | | | |HIP HIP | +117244|620359 |V0359 Peg |234623.5+232700 |SRB | 7.94 | 8.09 | |Hp| | | | | |HIP HIP | +117413|620360 |V0360 Peg |234830.4+303139 |RV: | 8.05 | 8.43 | |Hp| | | | | |HIP HIP | +117618|620361 |V0361 Peg |235114.4+160827 |LB | 8.93 | 9.12 | |Hp| | | | | |HIP HIP | +117632|620362 |V0362 Peg |235122.3+231748 |LB: | 8.93 | 9.03 | |Hp| | | | | |HIP HIP | +117986|620363 |V0363 Peg |235554.7+151349 |SRB | 6.37 | 6.51 | |Hp| | | | | |HIP HIP | +107558|620372 |V0372 Peg |214704.8+171139 |GDOR | 6.53 |( 0.07 )| |B | | | | | |76237 DM | +107788|620373 |V0373 Peg |215008.7+171709 |UV: | 5.17 | 5.53 | |V | | | | | |76238 DM | +108706|620374 |V0374 Peg |220113.1+281825 |UV | 3.5 | 16.0 | |U | | | | | |76239 76274| +108859|620376 |V0376 Peg |220310.8+185304 |EP | 7.65 |( 0.02 )| |V | | | | | |76241 DM | +109055|620377 |V0377 Peg |220532.5+173038 |DSCTC | 7.95 |( 0.03 )| |B | | | | | |76242 DM | +106554|620400 |V0400 Peg |213447.0+195611 |LB: | 6.90 |( 0.02 )| |V | | | | |K0 |78018 DM | +107781|620401 |V0401 Peg |215005.4+315053 |BY: | 7.34 |( 0.01 )| |V | | | 6.985 : | |K0 |78018 DM | +108156|620402 |V0402 Peg |215445.0+321943 |BY | 7.73 |( 0.01 )| |V | | | 4.51 : | |K0V |78018 DM | +111888|620403 |V0403 Peg |223950.8+040658 |BY | 8.48 |( 0.03 )| |V | | | 18.05 | |K2V |78018 DM | +116416|620406 |V0406 Peg |233525.6+310941 |BY | 7.90 |( 0.01 )| |V | | | 12.525 | |G5V |78018 DM | +110370|620414 |V0414 Peg |222118.4+054342 |EA | 8.49 | 8.60 | 8.60 |V |48367.865 | | 3.69948 |07 |F8 |79009 DM | +112068|620415 |V0415 Peg *|224158.8+151316 |EA | 8.15 | 8.25 | 8.24 : |V |48223.160 | | 11.4456 |05 : |F8 |79001 DM | +113654|620416 |V0416 Peg *|230105.9+264653 |EA: | 8.13 | 8.19 | 8.19 |V |48560.500 | | 1.424797 |05 : |A8V |79018 DM | +116434|620418 |V0418 Peg *|233537.5+143537 |GDOR | 7.52 | 7.56 | |Hp| | | 1.1417 | |A8:Vm+F3:V |79037 DM | +578 |620421 |V0421 Peg *|000702.0+225040 |EA | 8.27 | 8.73 | 8.63 |V |54759.62 | | 3.0875658 |06 |F2III/IV |80001 HIP | NL80_1 +113881|629002 |bet Peg *|230346.5+280458 |LB | 2.31 | 2.74 | |V | | | | |M2.5II-IIIe |01050 08953| +1067 |629003 |gam Peg |001314.2+151101 |BCEP | 2.78 | 2.89 | |V |41224.640 | | 0.151750125 |50 |B2IV |09605 08953| +107315|629005 |eps Peg *|214411.2+095230 |LC | 0.7 | 3.5 | |V | | | | |K2Ib |06875 08953| +117718|629016 |phi Peg |235229.3+190713 |SRB: | 5.11 | 5.17 | |Hp| | | | | |HIP HIP | +115250|629019 |tau Peg *|232038.2+234425 |DSCTC | 4.60 |( 0.02 )| |V | | | 0.05433 | |A5IV |07580 BD | +11093 |630002 |S Per *|022251.7+583511 |SRC | 7.9 | 12.0 | |V | | | 822. | |M3Iae-M7 |08630 00002| +10829 |630003 |T Per *|021921.9+585740 |SRC | 8.34 | 9.7 | |V | | | 2430. | |M2Iab |08044 03544| +9306 |630004 |U Per *|015935.1+544920 |M | 7.4 | 12.8 | |V |45066. | | 320.26 |46 |M5e-M7e |00001 00002| +13262 |630006 |W Per *|025037.9+565900 |SRC | 8.7 | 11.8 | |V | | | 485. | |M3Ia-Iab-M7 |09653 00002| +18350 |630007 |X Per *|035523.1+310245 |GCAS+XP | 6.03 | 7.0 | |V | | | | |O9.5(III-V)ep | 08953| +16126 |630008 |Y Per *|032742.4+441037 |M | 8.1 | 11.3 | |V |45245. | | 248.60 |48 |C4,3e(R4e) |00001 00002| +15811 |630012 |RT Per *|032340.4+463436 |EA/SD | 10.46 | 11.74 | 10.67 |V |33376.0583 | | 0.84940032 |16 *|F2V |09734 09736| +16328 |630013 |RU Per |033030.3+393929 |SRB | 10.0 | 12.0 | |V | | | 170. : | |M4e | 00002| +20245 |630015 |RW Per *|042016.8+421852 |EA/D | 9.68 | 11.36 | 9.78 |V |36701.0854 | | 13.198904 |08 |A5IIIe+G0III |09655 08953| +12891 |630017 |RY Per *|024542.1+480838 |EA/SD | 8.50 | 10.25 | 8.65 |V |27070.708 | | 6.8635663 |13 |B5Vea+F6IV |00957 00102| +13983 |630020 |ST Per *|030005.7+391125 |EA/SD | 9.52 | 11.40 | 9.62 |V |42436.588 | | 2.648315 |13 |A3V+G-K |00001 09742| +22445 |630022 |SV Per *|044947.9+421723 |DCEP | 8.49 | 9.37 | |V |43839.296 | | 11.129318 |39 |F6-G1 |09029 00884| +19517 |630023 |SW Per |041051.9+421235 |SRB | 9.6 | 11.1 | |p | | | 102. | |M5III |00589 01059| +19978 |630024 |SX Per *|041706.1+414355 |DCEP | 10.70 | 11.54 | |V |41847.979 | | 4.289967 |25 |F5-G5 |08300 01059| +19931 |630025 |SY Per *|041633.2+503735 |SRA | 8.7 |( 3.0 )| |V |37635. | | 474. |54 |C6,4e(N3e) |04972 04972| +8565 |630027 |TT Per |015029.3+534434 |SRB | 9.2 | 10.6 | |p | | | 82. | |M5II-III |01053 00884| +10332 |630037 |UX Per *|021307.5+580448 |DCEP | 11.02 | 12.07 | |V |37402.945 | | 4.565815 |26 |F5-G3 |03537 09759| +15530 |630039 |UZ Per *|032006.0+320118 |SRB | 8.6 |< 11.7 | |p | | | 927. | |M5II-III |00634 08953| +9928 |630042 |VX Per *|020748.5+582637 |DCEP | 8.99 | 9.69 | |V |43758.994 | | 10.88904 |49 |F6-G1 |09029 03203| +12325 |630044 |VZ Per *|023843.1+554559 |LB: | 10.6 | 10.8 | |V | | | | |C4,5J(R4) |08734 HIP | +9582 |630049 |XX Per *|020309.4+551357 |SRC | 8.2 | 10.2 | |p | | | 415. | |M4Ib+B |06116 08953| +17890 |630050 |XY Per *|034936.3+385856 |INA | 9.8 | 11.0 | |p | | | | |A2II+B6e |09770 09481| +12302 |630053 |YZ Per *|023825.4+570246 |SRB | 10.01 | 11.9 | |B | | | 378. | |M1Iab-M3Iab |01053 08953| +15145 |630055 |AA Per |031514.4+463452 |SRA | 10.4 | 11.7 | |p |24890. | | 130.4 |55 |M7 |01073 08953| +16920 |630056 |AB Per *|033745.2+404549 |EA/SD | 10.4 | 11.4 | 10.5 |p |22987.207 | | 7.1602886 |12 |A5 |03671 08953| +19201 |630061 |AG Per *|040655.8+332647 |EA/DM | 6.69 | 7.00 | 7.00 |V |44584.583 | | 2.02870904 |12 *|B3Vn+B3 |00001 00021| +19993 |630071 |AR Per *|041717.2+472401 |RRAB | 9.92 | 10.83 | |V |27236.9179 | | 0.42554892 |16 |A8-F6 |08299 08299| +20202 |630072 |AS Per *|041946.9+485712 |DCEP | 9.17 | 10.14 | |V |41723.934 | | 4.972516 |25 |F8-G1 |08300 01078| +22275 |630076 |AW Per *|044746.3+364322 |DCEP | 7.04 | 7.89 | |V |42709.059 | | 6.463589 |25 |F6-G0 |08632 00021| +11400 |630096 |BS Per |022652.7+520703 |SRB | 12.0 | 13.6 | |p | | | 400. | |C5,5(N4) |00911 02282| +11346 |630135 |DM Per *|022558.0+560610 |EA/SD | 7.86 | 8.59 | 8.02 |V |41920.4543 | | 2.7277427 |17 *|B5V |09679 02340| +18662 |630234 |IQ Per *|035944.7+480905 |EA/DM | 7.72 | 8.27 | 7.88 |V |44290.3461 | | 1.7435701 |12 |B8Vp: |00001 02378| +16591 |630240 |IW Per *|033335.0+395358 |ELL/DM | 5.79 | 5.84 | 5.83 |V |33617.317 | | 0.9171877 | |A5m |00823 BD | +16713 |630241 |IX Per *|033501.2+320100 |ELL | 6.66 |( 0.02 )|( 0.02 )|V |29146.901 | | 1.326363 | |F2IV |00824 BD | +7145 |630243 |IZ Per *|013205.5+540108 |EA/SD | 7.8 | 9.0 | 8.3 |p |44577.5874 | | 3.687673 |12 *|B8 |00001 03543| +15726 |630247 |KN Per |032235.6+411955 |RRC | 11.2 | 11.8 | |p |36599.246 | | 0.433224 |50 |A4-A6 |09637 02378| +16516 |630249 |KP Per *|033239.0+445121 |BCEP | 6.37 |( 0.14 )| |V |43862.739 | | 0.2017786 |50 |B2IV |09790 BD | +22365 |630252 |KS Per *|044853.4+431632 |* | 7.60 |( 0.25 )| |V | | | 30. : | |A5Iape+B2: |05767 BD | +13775 |630268 |LT Per |025717.3+315603 |ACV | 5.03 | 5.14 | |V |39837.7 | | 2.88422 | |B9p(Si-Eu-Sr-Cr) |05768 BD | +15003 |630272 |LX Per *|031322.4+480631 |EA/AR/RS | 8.10 | 8.93 | 8.38 |V |27033.120 | | 8.038207 |07 *|G5IV+G5IV |07407 08953| +19343 |630286 |MX Per *|040839.7+474245 |GCAS | 4.00 |( 0.09 )| |V | | | 72. : | |B3Vpe |04044 BD | +10995 |630316 |PR Per *|022142.4+575146 |LC | 9.8 | 10.8 | |p | | | | |M1Iab-Ib |09635 09635| +10055 |630351 |V0351 Per *|020925.7+565930 |BCEP: | 8.69 | 8.72 | |V | | | 0.3746 | |B1IVe |05522 BD | +10391 |630353 |V0353 Per |021351.8+535453 |BCEP | 8.85 | 8.91 | |B | | | 0.3908 | |B0.5IV |05522 BD | +10541 |630354 |V0354 Per *|021545.9+555947 |BCEP | 8.01 | 8.03 | |B | | | 0.45039 | |O9.7Ib-IIIn: |05522 BD | +10641 |630357 |V0357 Per *|021657.6+564308 |BCEP: | 7.44 | 7.52 | |V | | | 0.28619 : | |B2Ib-II:p |05522 BD | +11953 |630362 |V0362 Per |023411.4+582420 |BCEP: | 8.22 | 8.24 | |B | | | 0.25942 : | |B0IIIn |05522 BD | +17846 |630376 |V0376 Per *|034908.1+435747 |DSCT | 5.77 | 5.91 | |V | | | 0.09937 | |A7IIIn |09642 BD | +18912 |630380 |V0380 Per *|040310.9+380317 |ACV | 7.76 |( 0.03 )| |V |37315.14 | | 3.90072 | |A0p(Sr-Cr-Eu) |09390 BD | +14450 |630383 |V0383 Per |030632.2+333731 |ACV: | 7.84 | 7.87 | |V |39860.7 | | 7.7 | |B9V |05390 BD | +18547 |630386 |V0386 Per |035803.1+344850 |DSCTC | 6.50 | 6.58 | |V | | | 0.052 | |A8V |06255 BD | +16470 |630396 |V0396 Per *|033208.6+480125 |SXARI | 5.45 | 5.53 | |V |45699.972 | | 2.4761 | |B5Vp(Mn-He weak) |06879 BD | +15026 |630410 |V0410 Per |031338.6+474934 |SRB: | 8.8 | 9.4 | |V | | | 110. : | |C7,4(Np) |08460 08422| +15204 |630423 |V0423 Per *|031601.9+344119 |ELL: | 6.65 |( 0.03 )| |U | | | 5.543491 | |A1m |09648 BD | +11769 |630425 |V0425 Per *|023153.4+574152 |ACYG | 6.98 | 7.10 | |V | | | 16.1 | |B6Iaea |09651 BD | +8704 |630436 |V0436 Per *|015159.3+550851 |EA/D | 5.49 | 5.85 | 5.74 |V |43562.853 | | 25.9359 |02 |B1.5V |09801 BD | +10704 |630438 |V0438 Per *|021746.3+563829 |ELL | 8.28 | 8.34 | 8.34 |V |43000.00 | | 3.50924 | |B1IV-V |08454 BD | +11174 |630440 |V0440 Per *|022351.7+552154 |DCEPS | 6.18 | 6.32 | |V |44869.94 | | 7.570 |50 |F7Ib |09803 BD | +11284 |630441 |V0441 Per |022521.9+572614 |LC | 8.19 | 8.53 | |V | | | | |M2.5Iab |02556 BD | +15862 |630461 |V0461 Per *|032419.2+491317 |DSCTC | 8.98 |( 0.01 )| |V | | | 0.035 | |F0V |08456 BD | +17886 |630467 |V0467 Per |034932.7+330529 |E/D | 5.05 | 5.18 | |V |43101.24 | | 22.58 | |A2V |08464 BD | +20354 |630469 |V0469 Per *|042133.2+462956 |BCEP | 4.81 | 4.86 | |V | | | 0.304 | |B4.5V |08468 BD | +9990 |630472 |V0472 Per |020840.6+582525 |ACYG | 5.64 | 5.74 | |V | | | | | |67175 BD | +10615 |630473 |V0473 Per |021639.2+564416 |BCEP: | 8.25 | 8.27 | |V | | | | | |67180 BD | +11060 |630474 |V0474 Per |022221.4+555044 |ACYG | 5.15 | 5.25 | |V | | | | | |67175 BD | +11391 |630475 |V0475 Per |022645.7+574045 |ACYG | 7.15 | 7.26 | |V | | | | | |67175 BD | +13178 |630480 |V0480 Per |024930.7+570504 |ACYG | 6.23 | 6.30 | |V | | | | | |67175 BD | +19178 |630490 |V0490 Per |040639.0+322306 |E: | 6.98 | 7.27 | |V | | | | | |68284 BD | +19255 |630491 |V0491 Per |040734.4+380428 |BY | 7.10 |( 0.03 )| |V | | | | | |68053 BD | +21144 |630492 |V0492 Per |043157.0+364434 |RS: | 6.7 |( 0.07 )| |V | | | | | |68053 BD | +12527 |630493 |V0493 Per |024111.7+564350 |WR | 10.6 |( 0.04 )| |V | | | | | |69223 69224| +16724 |630496 |V0496 Per |033511.9+380055 |ACV | 7.70 | 7.79 | |U | | | | | |69056 BD | +17323 |630497 |V0497 Per |034229.4+353821 |ACV | 9.52 | 9.56 | |V | | | | | |69056 BD | +17911 |630498 |V0498 Per |034948.9+353601 |ACV | 8.96 | 9.04 | |B | | | | | |69056 BD | +10961 |630505 |V0505 Per |022113.0+543036 |EA/DM | 6.87 | 7.46 | |V | | | | | |71013 BD | +14264 |630509 |V0509 Per |030356.7+475055 |DSCT | 6.47 | 6.64 | |V | | | | | |71018 BD | +15041 |630510 |V0510 Per |031351.2+435147 |RS | 7.30 |( 0.22 )| |V | | | | | |71228 BD | +10805 |630520 |V0520 Per |021904.5+570808 |IA | 6.55 | 6.66 | |V | | | | | |73257 BD | +14544 |630521 |V0521 Per |030747.3+471831 |DSCTC | 6.41 | 6.42 | |V | | | | | |73258 BD | +20063 |630545 |V0545 Per |041808.1+420828 |LPB | 6.22 |( 0.04 )| |V | | | | | |73265 BD | +8182 |630547 |V0547 Per *|014510.0+535709 |LB: | 9.91 | 10.06 | |Hp| | | | | |HIP HIP | +9017 |630548 |V0548 Per |015607.1+563316 |BE | 9.65 | 9.98 | |Hp| | | | | |HIP HIP | +10463 |630549 |V0549 Per |021453.1+543154 |BE | 7.81 | 7.88 | |Hp| | | | | |HIP HIP | +10489 |630550 |V0550 Per |021513.3+580832 |SRC: | 8.71 | 8.88 | |Hp| | | | | |HIP HIP | +10633 |630551 |V0551 Per |021651.7+570319 |ACYG | 6.54 | 6.57 | |Hp| | | | | |HIP HIP | +10981 |630552 |V0552 Per |022129.4+511724 |EB | 8.30 | 8.43 | |Hp| | | | | |HIP HIP | +11098 |630553 |V0553 Per |022253.5+571443 |ACYG: | 7.54 | 7.66 | |Hp| | | | | |HIP HIP | +11279 |630554 |V0554 Per |022516.0+563635 |ACYG: | 6.28 | 6.36 | |Hp| | | | | |HIP HIP | +11722 |630555 |V0555 Per |023119.5+565352 |BE | 8.96 | 9.15 | |Hp| | | | | |HIP HIP | +11888 |630556 |V0556 Per |023318.4+561905 |ACYG: | 8.86 | 9.08 | |Hp| | | | | |HIP HIP | +12478 |630557 |V0557 Per |024036.9+440528 |ACV: | 7.32 | 7.37 | |Hp| | | | | |HIP HIP | +12544 |630558 |V0558 Per |024124.2+441541 |LB: | 9.34 | 9.49 | |Hp| | | | | |HIP HIP | +12565 |630559 |V0559 Per |024134.9+472123 |ACV: | 8.96 | 9.06 | |Hp| | | | | |HIP HIP | +12569 |630560 |V0560 Per |024139.2+393217 |LB: | 8.43 | 8.53 | |Hp| | | | | |HIP HIP | +12587 |630561 |V0561 Per |024152.6+450007 |SRD | 7.72 | 7.82 | |Hp| | | | | |HIP HIP | +12662 |630562 |V0562 Per |024241.4+502750 |ACV: | 8.86 | 8.99 | |Hp| | | | | |HIP HIP | +13058 |630563 |V0563 Per |024749.0+521917 |LB | 8.22 | 8.40 | |Hp| | | | | |HIP HIP | +13252 |630564 |V0564 Per |025033.5+361749 |LB: | 8.47 | 8.59 | |Hp| | | | | |HIP HIP | +13785 |630565 |V0565 Per |025728.5+522838 |BY: | 9.34 | 9.54 | |Hp| | | | | |HIP HIP | +13829 |630566 |V0566 Per |025759.2+495241 |ACV: | 9.38 | 9.50 | |Hp| | | | | |HIP HIP | +14213 |630567 |V0567 Per |030315.7+330853 |SRD | 7.91 | 8.05 | |Hp| | | | | |HIP HIP | +14478 |630568 |V0568 Per |030651.4+402134 |BY: | 9.76 | 9.92 | |Hp| | | | | |HIP HIP | +14616 |630569 |V0569 Per |030847.5+370245 |LB: | 7.87 | 7.98 | |Hp| | | | | |HIP HIP | +14673 |630570 |V0570 Per |030934.9+483729 |EB: | 8.15 | 8.25 | |Hp| | | | | |HIP HIP | +14824 |630571 |V0571 Per |031123.7+380410 |LB | 7.17 | 7.34 | |Hp| | | | | |HIP HIP | +15193 |630572 |V0572 Per |031548.7+505721 |EA | 6.50 | 6.79 | |Hp| | | | | |HIP HIP | +15241 |630573 |V0573 Per |031635.2+321103 |E: | 6.11 | 6.19 | |Hp| | | | | |HIP HIP | +15721 |630574 |V0574 Per |032231.1+321424 |SRB | 7.26 | 7.39 | |Hp| | | | | |HIP HIP | +15770 |630575 |V0575 Per |032313.2+491248 |LPB: | 5.27 | 5.32 | |Hp| | | | | |HIP HIP | +15988 |630576 |V0576 Per |032557.4+490715 |LPB: | 6.04 | 6.08 | |Hp| | | | | |HIP HIP | +16563 |630577 |V0577 Per |033313.5+461527 |BY: | 8.24 | 8.35 | |Hp| | | | | |HIP HIP | +16644 |630578 |V0578 Per |033409.8+465057 |EB | 8.94 | 9.10 | |Hp| | | | | |HIP HIP | +17042 |630579 |V0579 Per |033912.2+411658 |RRC: | 7.87 | 7.94 | |Hp| | | | | |HIP HIP | +17666 |630580 |V0580 Per *|034702.0+412538 |E: | 7.75 | 8.07 | |Hp| | | | | |HIP HIP | +18424 |630581 |V0581 Per |035620.4+445615 |BE | 7.77 | 7.87 | |Hp| | | | | |HIP HIP | +19335 |630582 |V0582 Per *|040836.6+380223 |RS: | 5.63 | 5.74 | |Hp| | | | | |HIP HIP | +19487 |630583 |V0583 Per |041025.1+421026 |LB | 7.51 | 7.83 | |Hp| | | | | |HIP HIP | +19647 |630584 |V0584 Per |041236.5+420706 |BE | 8.00 | 8.19 | |Hp| | | | | |HIP HIP | +19992 |630585 |V0585 Per |041716.9+464148 |SRD: | 7.48 | 7.51 | |Hp| | | | | |HIP HIP | +19991 |630586 |V0586 Per |041716.4+461350 |BE | 8.00 | 8.11 | |Hp| | | | | |HIP HIP | +20095 |630587 |V0587 Per |041830.5+495153 |LB: | 8.40 | 8.52 | |Hp| | | | | |HIP HIP | +20235 |630588 |V0588 Per |042012.0+371203 |SRB | 7.77 | 7.93 | |Hp| | | | | |HIP HIP | +20436 |630589 |V0589 Per |042239.9+473936 |LB | 7.81 | 7.90 | |Hp| | | | | |HIP HIP | +20570 |630590 |V0590 Per |042424.9+341853 |EB: | 7.20 | 7.44 | |Hp| | | | | |HIP HIP | +20993 |630591 |V0591 Per |043007.9+455702 |LB: | 7.80 | 8.13 | |Hp| | | | | |HIP HIP | +22050 |630592 |V0592 Per *|044433.0+395232 |EB | 8.30 | 8.65 | |Hp| | | | | |HIP HIP | +22272 |630593 |V0593 Per |044743.1+401357 |EB | 8.67 | 8.87 | |Hp| | | | | |HIP HIP | +22513 |630594 |V0594 Per |045039.2+502433 |LB: | 7.64 | 7.74 | |Hp| | | | | |HIP HIP | +19391 |630643 |V0643 Per |040911.9+362539 |SRS | 7.68 | 7.80 | |Hp| | | | | |76018 DM | +14976 |630683 |V0683 Per |031302.8+325347 |BY | 8.15 |( 0.02 )| |V | | | | |G5V |78018 DM | +15609 |630686 |V0686 Per |032059.5+331306 |BY | 7.94 |( 0.04 )| |V | | | 5.95 | |K0V |78018 DM | +15767 |630687 |V0687 Per |032312.1+330442 |BY | 7.96 |( 0.02 )| |V | | | 2.54 | |G0 |78018 DM | +17094 |630736 |V0736 Per |033941.4+374732 |EA | 9.73 | 10.03 | 10.0 : |V |48678.948 | | 3.76674 |08 |A4IV |79006 DM | +14871 |630889 |V0889 Per *|031158.9+460743 |GDOR | 7.26 |( 0.02 b )| |B | | | 0.34306 | |F1 |80130 HIP | NL80_1 +14576 |639002 |bet Per *|030810.1+405720 |EA/SD | 2.12 | 3.39 | |V |45641.5135 | | 2.8673043 |14 *|B8V |00001 08953| +14328 |639003 |gam Per |030447.8+533023 |EA/GS | 3.63 |( 0.55 )| |B | | | | | |71019 BD | +17358 |639004 |del Per *|034255.5+474715 |GCAS: | 2.99 | 3.04 | |V | | | | |B5III | BD | +18532 |639005 |eps Per |035751.2+400037 |BCEP | 2.88 | 3.00 | |V | | | | | |68283 BD | +18614 |639014 |ksi Per *|035857.9+354728 |* | 4.00 | 4.06 | |V | | | | |O7.5III(f) |04194 BD | +17448 |639015 |omi Per *|034419.1+321718 |ELL | 3.79 | 3.88 | |V |36459.0 | | 4.4191666 | |B1III+B2V |09806 BD | +14354 |639017 |rho Per *|030510.6+385025 |SRB | 3.30 | 4.0 | |V | | | 50. : | |M4IIb-IIIa | 08953| +13531 |639019 |tau Per |025415.5+524545 |EA/GS | 3.94 | 4.07 | |V | | | | | |68204 BD | +8068 |639021 |phi Per *|014339.6+504119 |GCAS | 3.96 | 4.11 | |V | | | 19.5 | |B2Vne+B3Vne |03124 BD | +16826 |639023 |psi Per |033629.4+481134 |GCAS | 4.17 | 4.28 | |V | | | | |B5III-Vne |08663 BD | +20070 |639102 |b Per *|041814.6+501744 |ELL | 4.52 | 4.68 | |V |43141.728 | | 1.5273643 | |A2V |09809 BD | +118249|640002 |S Phe |235904.6-563432 |SRB | 8.6 | 10.6 | |p | | | 141. | |M3e-M6IIIe |00643 05474| +115870|640014 |RV Phe *|232831.4-472713 |RRAB | 11.12 | 12.26 | |V |41915.525 | | 0.5964182 |15 |F6: |07984 06286| +117254|640024 |SX Phe *|234632.9-413455 |SXPHE(B) | 6.76 | 7.53 | |V |38636.6170 | | 0.054964438 |34 |A5-F4 |09525 08953| +7024 |640025 |SY Phe |013030.8-424225 |ISB: | 9.75 | 9.96 | |V | | | | |F8 |02412 03389| +5955 |640058 |AD Phe *|011638.1-394231 |EW/KW | 10.27 | 10.80 | 10.80 |V |44250.598 | | 0.3799252 | | |00001 04001| +7183 |640059 |AE Phe *|013232.9-493141 |EW/KW | 7.56 | 8.25 | 8.19 |V |43732.8819 | | 0.362377 | |G0V+G0V |09615 CoD | +2125 |640061 |AG Phe *|002654.9-395255 |EA/KE: | 8.87 | 9.36 | 8.95 |V |44170.79481 | | 0.75533809 |22 *|A9V |09538 06317| +5438 |640063 |AI Phe *|010934.2-461556 |EA/DM | 8.58 | 9.35 | 8.89 |V |43410.6885 | | 24.592325 |02 |F7V+G5:V |09617 06336| +6207 |640064 |AK Phe |011933.9-471732 |LB | 7.40 | 7.64 | |V | | | | |M4III |05973 CoD | +6952 |640076 |AW Phe |012930.5-464523 |LB: | 6.22 |( 0.15 )| |V | | | | |M2III |05840 CoD | +116601|640078 |AY Phe |233750.0-453408 |LB | 7.76 | 8.04 | |V | | | | |M4III |05973 CoD | +3903 |640079 |AZ Phe |005003.8-432342 |DSCTC | 6.47 |( 0.015 )| |V | | | 0.0492 | |A9/F0III |09618 CoD | +2388 |640080 |BB Phe |003027.8-405623 |DSCTC | 6.18 |( 0.04 )| |V | | | | | |67183 CoD | +6408 |640081 |BC Phe |012219.0-564353 |RS | 8.4 : |( 0.06 )| |V | | | | | |67024 CoD | +8593 |640082 |BD Phe |015054.4-501222 |DSCTC | 5.90 | 5.94 | |V | | | | | |68079 CoD | +117515|640084 |BF Phe |234954.6-421803 |DSCTC | 7.7 |( 0.03 b )| |V | | | | | |70091 CoD | +3812 |640085 |BG Phe |004901.3-560549 |BE | 10.31 | 10.36 | |V | | | | | |73266 73267| +457 |640086 |BH Phe |000528.0-425315 |SRB: | 7.31 | 7.63 | |Hp| | | | | |HIP HIP | +500 |640087 |BI Phe |000600.0-484044 |SRB: | 9.56 | 9.84 | |Hp| | | | | |HIP HIP | +632 |640088 |BK Phe |000741.0-561458 |LB: | 9.17 | 9.30 | |Hp| | | | | |HIP HIP | +883 |640089 |BL Phe |001047.4-572911 |EB | 8.34 | 8.68 | |Hp| | | | | |HIP HIP | +1507 |640090 |BM Phe |001845.9-394038 |EW | 9.27 | 9.53 | |Hp| | | | | |HIP HIP | +1555 |640091 |BN Phe |001922.5-535039 |SRB | 7.81 | 7.93 | |Hp| | | | | |HIP HIP | +1627 |640092 |BO Phe |002020.2-570948 |SRB | 8.58 | 9.56 | |Hp| | | | | |HIP HIP | +1880 |640093 |BP Phe |002343.7-492128 |LB: | 7.72 | 7.84 | |Hp| | | | | |HIP HIP | +2005 |640094 |BQ Phe |002524.1-465527 |SXPHE: | 10.47 | 10.60 | |Hp| | | | | |HIP HIP | +2462 |640095 |BR Phe |003116.5-513858 |LB: | 9.01 | 9.13 | |Hp| | | | | |HIP HIP | +2960 |640096 |BS Phe |003737.0-553937 |SRB | 8.38 | 8.55 | |Hp| | | | | |HIP HIP | +3852 |640097 |BT Phe |004929.4-554552 |SRB | 9.38 | 9.64 | |Hp| | | | | |HIP HIP | +3894 |640098 |BU Phe |004956.3-572311 |SRB | 7.15 | 7.26 | |Hp| | | | | |HIP HIP | +4328 |640099 |BV Phe |005525.3-514958 |BY: | 12.09 | 12.59 | |Hp| | | | | |HIP HIP | +4448 |640100 |BW Phe |005655.4-515232 |BY: | 9.05 | 9.19 | |Hp| | | | | |HIP HIP | +4658 |640101 |BX Phe |005951.6-494502 |SRB | 7.33 | 7.50 | |Hp| | | | | |HIP HIP | +6584 |640102 |BY Phe |012433.9-454317 |SR | 7.87 | 7.91 | |Hp| | | | | |HIP HIP | +6609 |640103 |BZ Phe |012450.1-424552 |LB: | 8.88 | 9.03 | |Hp| | | | | |HIP HIP | +6856 |640104 |CC Phe |012808.6-523819 |BY: | 9.41 | 9.55 | |Hp| | | | | |HIP HIP | +7940 |640105 |CD Phe |014202.9-410705 |ACV: | 8.69 | 8.74 | |Hp| | | | | |HIP HIP | +8344 |640106 |CE Phe |014737.8-461526 |SRB | 7.04 | 7.22 | |Hp| | | | | |HIP HIP | +9812 |640107 |CF Phe |020614.4-393220 |SRB | 7.05 | 7.21 | |Hp| | | | | |HIP HIP | +116103|640108 |CG Phe *|233130.2-405844 |SXPHE: | 10.23 | 10.57 | |Hp| | | | | |HIP HIP | +116640|640109 |CH Phe |233812.5-562704 |LB: | 7.42 | 7.53 | |Hp| | | | | |HIP HIP | +117099|640110 |CI Phe |234419.2-542610 |SRB: | 7.22 | 7.81 | |Hp| | | | | |HIP HIP | +117276|640111 |CK Phe |234651.2-554834 |LB | 7.24 | 7.41 | |Hp| | | | | |HIP HIP | +117669|640112 |CL Phe |235149.5-461909 |BY: | 9.70 | 9.83 | |Hp| | | | | |HIP HIP | +7649 |640121 |CU Phe |013830.8-425541 |GDOR: | 6.68 |( 0.06 )| |V | | | | |F0V |78024 DM | +10304 |640122 |CV Phe |021247.1-442920 |DSCTC | 7.84 |( 0.02 b )| |V | | | 0.080 | |F0V |78037 DM | +6200 |640124 |CX Phe |011931.1-481741 |EA | 8.77 | 9.14 : | 9.0 |V |48736.140 | | 19.9757 : | |F0V |79011 DM | +6867 |649003 |gam Phe *|012821.9-431906 |LB: | 3.39 | 3.49 | |V | | | | |M0IIIa |04613 CoD | +5348 |649006 |zet Phe *|010823.1-551445 |EA/DM | 3.91 | 4.42 | |V |41643.6890 | | 1.6697671 |12 *|B6V+B9V |09544 08953| +116389|649009 |iot Phe *|233504.6-423654 |ACV | 4.70 | 4.75 | |V | | | 12.5 : | |A2Vp(Sr-Cr-Eu) |05880 CoD | +3277 |649014 |ksi Phe *|004146.4-563005 |ACV | 5.68 | 5.78 | |V |42314.48 | | 3.9516 | |A9p(Sr-Cr-Eu) |04196 CPD | +3949 |649017 |rho Phe *|005041.2-505913 |DSCT | 5.17 | 5.27 | |V | | | 0.110 : | |F3III |06255 CoD | +8837 |649023 |psi Phe *|015338.7-461810 |SR | 4.3 | 4.5 | |V | | | 30. | |M4III |06994 CoD | +22170 |650001 |R Pic *|044609.6-491445 |SR | 6.35 | 10.1 | |V |44922. | | 170.9 | |M1IIe-M4IIe |00001 00002| +24126 |650002 |S Pic *|051057.3-483026 |M | 6.5 | 14.0 | |V |39595. | | 428.0 |36 |M6.5e-M8III-IIe |00001 00002| +24468 |650003 |T Pic |051505.9-465505 |M | 7.9 | 14.4 | |V |41283. | | 200.58 |49 |M6IIIe |00001 00002| +22466 |650004 |U Pic *|045006.6-503925 |RRAB | 10.68 | 11.87 | |V |41666.449 | | 0.4403710 |12 |A5-F6 |07984 06286| +26958 |650006 |W Pic |054313.8-462714 |LB | 11.8 |< 15.0 | |p | | | | |C(N) |00016 CoD | +28474 |650012 |RT Pic *|060041.3-445350 |E: | 9.9 |< 12.5 | |p |24120.704 | | | |G8V |01191 08953| +29583 |650020 |ST Pic |061401.2-612824 |RR | 9.29 | 9.77 | |V |42034.450 | | 0.48574 |22 |F5V |03306 CPD | +24733 |650021 |SU Pic *|051814.5-453447 |EA/DM | 10.15 | 10.64 | 10.4 |V |28815.475 | | 1.838115 | |A0 |05393 CoD | +28596 |650023 |SW Pic |060209.3-600549 |LB: | 6.45 |( 0.12 )| |V | | | | |M4III |05840 CPD | +22340 |650025 |SY Pic |044838.5-491012 |ACV | 8.84 | 8.87 | |V | | | 15.864 | |A5p(Sr-Eu) |09625 CoD | +27843 |650026 |SZ Pic |055327.4-433331 |RS | 7.81 | 7.97 | |V |43931.54 | | 2.441 | |G8V |09626 CoD | +24603 |650027 |TT Pic |051637.8-455450 |ACV | 7.1 |( 0.07 )| |V | | | | | |67064 CoD | +23833 |650028 |TU Pic |050725.9-444918 |ACV | 6.93 |( 0.03 )| |V | | | | | |68290 CoD | +22370 |650029 |TV Pic |044857.5-470804 |ELL | 7.5 |( 0.12 )| |V | | | | | |69228 CoD | +26300 |650031 |TX Pic |053602.9-471850 |RS | 6.08 | 6.12 | |V | | | | | |69011 CoD | +29071 |650032 |TY Pic |060756.9-542621 |RS | 7.61 | 7.68 | |V | | | | | |69011 CPD | +31062 |650033 |TZ Pic |063105.7-590017 |RS | 7.59 | 7.66 | |V | | | | | |69011 CPD | +26373 |650038 |UY Pic |053656.9-475753 |RS: | 7.86 | 7.97 | |V | | | | | |73269 73153| +22868 |650039 |UZ Pic |045509.6-495644 |E: | 8.28 | 8.57 | |Hp| | | | | |HIP HIP | +22971 |650040 |VV Pic |045634.9-432557 |LB: | 7.91 | 8.01 | |Hp| | | | | |HIP HIP | +23196 |650041 |VW Pic *|045929.6-492729 |EW | 7.06 | 7.15 | |Hp| | | | | |HIP HIP | +23491 |650042 |VX Pic |050300.3-540553 |SRB | 8.71 | 8.93 | |Hp| | | | | |HIP HIP | +23761 |650043 |VY Pic |050624.5-561353 |LB: | 8.30 | 8.54 | |Hp| | | | | |HIP HIP | +24186 |650044 |VZ Pic *|051140.6-450106 |BY: | 8.90 | 9.22 | |Hp| | | | | |HIP HIP | +24943 |650045 |WW Pic |052036.9-433202 |SRA | 6.49 | 6.98 | |Hp| | | | | |HIP HIP | +25579 |650046 |WX Pic |052800.4-442738 |LB: | 8.74 | 8.86 | |Hp| | | | | |HIP HIP | +26679 |650047 |WY Pic |054011.6-433505 |SRB: | 8.05 | 8.20 | |Hp| | | | | |HIP HIP | +26772 |650048 |WZ Pic |054113.1-572628 |E: | 9.26 | 9.35 | |Hp| | | | | |HIP HIP | +26983 |650049 |XX Pic |054331.0-473246 |SRB | 7.54 | 7.74 | |Hp| | | | | |HIP HIP | +27170 |650050 |XY Pic |054530.6-553441 |EW | 7.61 | 7.66 | |Hp| | | | | |HIP HIP | +27134 |650051 |XZ Pic |054513.4-595526 |BY: | 9.30 | 9.60 | |Hp| | | | | |HIP HIP | +27462 |650052 |YY Pic |054855.6-461856 |DSCTC | 7.57 | 7.64 | |Hp| | | | | |HIP HIP | +27874 |650053 |YZ Pic |055354.3-550537 |SRB | 8.55 | 8.77 | |Hp| | | | | |HIP HIP | +28134 |650054 |ZZ Pic |055648.0-592521 |LB | 8.45 | 9.14 | |Hp| | | | | |HIP HIP | +28217 |650055 |AA Pic |055742.7-481524 |LB: | 8.15 | 8.26 | |Hp| | | | | |HIP HIP | +30034 |650056 |AB Pic |061912.9-580316 |BY: | 9.21 | 9.35 | |Hp| | | | | |HIP HIP | +30237 |650057 |AC Pic |062140.7-562144 |SRB | 6.78 | 6.89 | |Hp| | | | | |HIP HIP | +30319 |650058 |AD Pic |062237.1-623819 |LB | 8.61 | 8.96 | |Hp| | | | | |HIP HIP | +31068 |650059 |AE Pic |063110.6-615246 |EB: | 6.09 | 6.14 | |Hp| | | | | |HIP HIP | +31711 |650064 |AK Pic |063800.4-613200 |BY | 6.14 | 6.19 | |V | | | 2.60 | |G0V+K2/3V |78046 DM | +29276 |659004 |del Pic *|061017.9-545807 |EB/D: | 4.65 | 4.90 | 4.83 |V |41695.336 | | 1.672541 | |B3III+O9V |07587 CPD | +1771 |660005 |V Psc *|002225.2+064003 |UV: | 11. | 12. | |p | | | | |M1V |01897 00664| +4652 |660006 |W Psc *|005946.5+275645 |M | 11.4 | 14.8 | |p |45337. | | 188.1 |48 |M2e-M4 |00001 06073| +116339|660008 |Y Psc *|233425.4+075529 |EA/SD | 10.1 | 13.1 | |p |45635.241 | | 3.765767 |10 |A3+K0IV |00001 08953| +5914 |660009 |Z Psc |011605.0+254610 |SRB | 8.8 | 10.1 | |p | | | 144. | |C7,2(N0) |01194 08953| +5746 |660012 |RT Psc *|011347.9+270759 |SRB | 8.2 | 10.4 | |p | | | 70. | |M0 |01194 08953| +5803 |660013 |RU Psc *|011426.0+242456 |RRC | 9.93 | 10.40 | |V |40143.4027 | | 0.390385 |48 |A7-F3 |09713 04004| +6554 |660015 |RW Psc |012413.7+215129 |SRB | 11.2 | 12.4 | |p |27139. | | 154. |48 |M0e-M3 |00460 01198| +6301 |660019 |SS Psc *|012052.4+214343 |RRC | 10.73 | 11.21 | |V |19130.305 | | 0.28779276 |44 |A7-F2 |04957 03252| +114639|660026 |SZ Psc *|231323.8+024032 |EA/DS/RS | 7.18 | 7.72 | 7.38 |V |35741.8461 | | 3.9657900 |11 *|K1IV-V+F8V |09732 08953| +2219 |660029 |TV Psc |002802.9+175335 |SR | 4.65 | 5.42 | |V |31387. | | 49.1 | |M3III-M4IIIb |00870 08953| +3129 |660030 |TW Psc |003946.0+141201 |LB | 10.6 | 12.2 | |p | | | | |M8 |00865 BD | +117245|660031 |TX Psc |234623.5+032913 |LB | 4.79 | 5.20 | |V | | | | |C7,2(N0)(Tc) | 05288| +1196 |660034 |UU Psc *|001458.8+084916 |ELL/DW: | 6.01 | 6.05 | 6.04 |V |39765.175 | | 0.841678 | |F1IV-V+F1IV-V |06203 BD | +5980 |660035 |UV Psc *|011655.1+064842 |EA/D:/RS | 8.91 | 10.05 | 9.54 |V |43406.5225 | | 0.8610482 |12 *|G2 |09677 08953| +8210 |660039 |UZ Psc *|014542.5+083333 |ACV | 6.43 | 6.65 | |V |39757.91 | | 4.1327 |50 |A2p(Cr-Eu-Sr-Si) |05751 04348| +6981 |660042 |VX Psc |012952.9+182120 |DSCT | 5.90 | 6.02 | |V | | | 0.131 | |A3V |06204 BD | +8271 |660043 |VY Psc |014635.3+172446 |DSCTC | 6.54 | 6.59 | |V | | | 0.2 | |A7III |07157 BD | +115819|660044 |VZ Psc *|232748.4+045124 |EW/KW | 10.20 | 10.45 | 10.43 |V |43832.206 | | 0.2611865 | | |09690 09690| +4655 |660045 |WW Psc *|005949.7+062900 |LB | 5.97 | 6.11 | |V | | | | |M2III |06994 BD | +9809 |660048 |WZ Psc |020612.3+081453 |SR | 6.20 | 6.38 | |V | | | 20. : | |M4 |06645 BD | +3685 |660049 |XX Psc |004713.6+193443 |DSCTC: | 6.13 |( 0.04 )| |V | | | 0.1040 | |F0V |06883 BD | +117887|660051 |XZ Psc |235446.6+000634 |LB | 5.61 | 5.97 | |V | | | | |M5IIb |06645 BD | +154 |660052 |YY Psc |000157.6-060051 |LB: | 4.31 | 4.41 | |V | | | | |M3III |03712 BD | +7119 |660059 |AE Psc |013144.5+224429 |E | 7.09 |( 0.16 )| |V | | | 1.4175 | |G5 |07964 BD | +2903 |660061 |AG Psc *|003647.3+151354 |BCEP | 5.81 | 5.94 | |V | | | 0.08 | |B2.5IV |04200 BD | +7042 |660067 |AN Psc |013047.0+150118 |LB | 8.08 | 8.28 | |V | | | | |MB |08225 BD | +664 |660069 |AP Psc |000812.1-022652 |EB/GS | 6.1 | 6.3 | |V | | | | | |67187 BD | +6307 |660070 |AQ Psc |012103.6+073622 |EW/KW | 8.60 | 8.96 | |V | | | | | |67188 BD | +6454 |660071 |AR Psc |012256.8+072509 |XI+RS | 8.2 | 9.1 | |p | | | | | |67194 67193| +113478|660079 |AZ Psc |225852.9-001857 |RS: | 7.32 | 7.50 | |V | | | | | |68209 BD | +443 |660081 |BC Psc |000520.1-054227 |RS | 4.61 |( 0.08 )| |V | | | | | |70157 BD | +5007 |660083 |BE Psc |010407.2+263513 |RS | 8.8 |( 0.21 )| |V | | | | | |71001 BD | +7134 |660084 |BF Psc |013154.9+160249 |RS | 7.81 |( 0.02 )| |V | | | | | |71001 BD | +118286|660086 |BH Psc |235931.3-025038 |DSCTC | 7.13 |( 0.09 )| |V | | | | | |71223 BD | +3121 |660088 |BK Psc |003942.2+103914 |RS | 10.41 | 10.60 | |V | | | | | |73269 73153| +117473|660095 |BR Psc |234912.5+022404 |BY | 8.93 | 9.03 | |V | | | | | |73018 73066| +118293|660097 |BT Psc |235935.0-015100 |IB: | 7.8 |( 0.09 )| |B | | | | | |73273 BD | +159 |660098 |BU Psc |000202.6-024558 |IB: | 6.9 |( 0.06 )| |B | | | | | |73273 BD | +1325 |660099 |BV Psc |001639.4+015102 |SRB: | 6.89 | 7.07 | |Hp| | | | | |HIP HIP | +1429 |660100 |BW Psc |001751.2+201337 |SRB | 6.88 | 6.99 | |Hp| | | | | |HIP HIP | +1435 |660101 |BX Psc |001752.9+075158 |EB: | 7.61 | 7.67 | |Hp| | | | | |HIP HIP | +1497 |660102 |BY Psc |001841.0+124142 |SRB | 8.42 | 8.63 | |Hp| | | | | |HIP HIP | +1609 |660103 |BZ Psc |002009.5+030201 |SRB: | 7.55 | 7.66 | |Hp| | | | | |HIP HIP | +1843 |660104 |CC Psc |002318.6-013334 |SRB: | 9.92 | 10.17 | |Hp| | | | | |HIP HIP | +1938 |660105 |CD Psc |002428.0+054243 |SRD: | 9.81 | 9.99 | |Hp| | | | | |HIP HIP | +1941 |660106 |CE Psc |002432.9-043852 |SRB | 7.43 | 7.61 | |Hp| | | | | |HIP HIP | +2080 |660107 |CF Psc |002616.5+034933 |LPB | 6.84 | 6.87 | |Hp| | | | | |HIP HIP | +2123 |660108 |CG Psc |002653.3+100856 |SRD | 8.35 | 8.49 | |Hp| | | | | |HIP HIP | +2340 |660109 |CH Psc |002954.2+084823 |SRD | 7.80 | 7.94 | |Hp| | | | | |HIP HIP | +3518 |660110 |CI Psc |004455.3+031204 |SRB | 7.63 | 7.78 | |Hp| | | | | |HIP HIP | +3808 |660111 |CK Psc |004856.9+125247 |LB: | 8.20 | 8.30 | |Hp| | | | | |HIP HIP | +4304 |660112 |CL Psc |005508.7+321734 |LB: | 9.33 | 9.51 | |Hp| | | | | |HIP HIP | +4316 |660113 |CM Psc |005514.6+201806 |SR: | 8.72 | 8.83 | |Hp| | | | | |HIP HIP | +4433 |660114 |CN Psc |005644.5+262024 |SRB | 7.60 | 7.76 | |Hp| | | | | |HIP HIP | +4452 |660115 |CO Psc |005659.2+315347 |LB: | 7.70 | 7.81 | |Hp| | | | | |HIP HIP | +4593 |660116 |CP Psc |005845.9+320620 |EB: | 10.69 | 11.05 | |Hp| | | | | |HIP HIP | +4945 |660117 |CQ Psc |010326.0+031520 |SRD+EA | 7.97 | 8.11 | |Hp| | | | | |HIP HIP | +5091 |660118 |CR Psc |010512.2+191152 |LB: | 7.42 | 7.52 | |Hp| | | | | |HIP HIP | +5409 |660119 |CS Psc |010912.2+024625 |SRB | 9.65 | 9.97 | |Hp| | | | | |HIP HIP | +5525 |660120 |CT Psc |011043.1+232758 |SRB | 8.03 | 8.31 | |Hp| | | | | |HIP HIP | +5662 |660121 |CU Psc |011245.8+103456 |BY: | 11.87 | 12.25 | |Hp| | | | | |HIP HIP | +6220 |660122 |CV Psc |011944.7+060943 |SRB | 7.76 | 7.90 | |Hp| | | | | |HIP HIP | +6453 |660123 |CW Psc |012256.4+315028 |SRB | 7.38 | 7.60 | |Hp| | | | | |HIP HIP | +6998 |660124 |CX Psc |013005.7+300902 |LB: | 8.96 | 9.06 | |Hp| | | | | |HIP HIP | +7505 |660125 |CY Psc |013643.5+074954 |SRB | 6.34 | 6.55 | |Hp| | | | | |HIP HIP | +7768 |660126 |CZ Psc |013959.8+234442 |LB: | 9.28 | 9.44 | |Hp| | | | | |HIP HIP | +8655 |660127 |DD Psc |015132.5+091807 |LB: | 8.16 | 8.26 | |Hp| | | | | |HIP HIP | +9355 |660128 |DE Psc |020012.7+065505 |SRD | 7.43 | 7.56 | |Hp| | | | | |HIP HIP | +9599 |660129 |DF Psc |020328.3+095313 |BY: | 11.84 | 12.07 | |Hp| | | | | |HIP HIP | +112877|660130 |DG Psc |225130.1+063642 |LB: | 8.74 | 8.91 | |Hp| | | | | |HIP HIP | +113095|660131 |DH Psc |225414.3+002455 |LB: | 8.69 | 8.80 | |Hp| | | | | |HIP HIP | +113556|660132 |DI Psc |225959.4+050935 |LB: | 7.28 | 7.38 | |Hp| | | | | |HIP HIP | +113667|660133 |DK Psc |230116.4+010504 |LB: | 8.38 | 8.51 | |Hp| | | | | |HIP HIP | +114489|660134 |DL Psc |231114.1+050016 |LB | 6.12 | 6.66 | |Hp| | | | | |HIP HIP | +116223|660135 |DM Psc |233254.5+032254 |SRB | 7.96 | 8.10 | |Hp| | | | | |HIP HIP | +117311|660136 |DN Psc |234713.8+070513 |LB: | 10.57 | 10.77 | |Hp| | | | | |HIP HIP | +117459|660137 |DO Psc |234858.6+062653 |BY: | 12.25 | 12.58 | |Hp| | | | | |HIP HIP | +118222|660138 |DP Psc |235849.1+093300 |SRD | 8.25 | 8.45 | |Hp| | | | | |HIP HIP | +118307|660139 |DQ Psc |235946.5-001648 |SRB | 6.82 | 6.94 | |Hp| | | | | |HIP HIP | +109 |660140 |DR Psc |000123.2+064729 |DSCTC | 7.29 | 7.33 | |Hp| | | | | |HIP HIP | +5772 |660142 |DT Psc |011404.9+283147 |SR: | 6.37 | 6.45 | |Hp| | | | | |75215 BD | +3632 |660155 |EL Psc |004633.0+152832 |SRS | 5.28 |( 0.22 )| |V | | | 12. : | |M4IIIa |78016 DM | +6339 |660157 |EN Psc |012128.2+312029 |BY | 8.49 |( 0.02 )| |V | | | 13.87 | |K2V |78018 DM | +6917 |660158 |EO Psc |012904.9+214323 |RS | 7.74 |( 0.02 )| |V | | | 10.49 | |K2V |78018 DM | +8156 |660164 |EU Psc *|014453.5+195125 |EA | 8.44 | 8.54 | 8.51 : |V |48648.639 | | 1.69261 |05 |F0 |79006 DM | +1295 |660169 |EZ Psc *|001614.6+195138 |BY | 10.5 | 10.7 | |* | | | 4.7901 | |M4 |80021 HIP | NL80_1 +2510 |660176 |FM Psc *|003149.8+045046 |GDOR | 8.01 | 8.11 | |Hp| | | 0.65070 | |F1V |80160 HIP | NL80_1 +3937 |660183 |FT Psc *|005033.2+244900 |BY | 10.9 | 11.1 | |* | | | 1.6968 | |M3.5 |80021 HIP | NL80_1 +7987 |660221 |HU Psc |014235.8+101440 |DSCTC | 7.57 |( 0.02 )| |B | | | 0.0435787 | | F1V |80092 HIP | NL80_1 +9487 |669001 |alf Psc |020202.8+024550 |ACV | 3.82 | 3.83 | |Hp| | | | | |HIP HIP | +115738|669010 |kap Psc |232656.0+011520 |ACV | 4.87 | 4.95 | |V | | | 0.58525 : | |A0p(Cr-Sr-Si-Eu) |09692 BD | +110743|670003 |T PsA |222609.7-290456 |CST: | 8.1 | | |p | | | | |F0 |01188 CoD | +108869|670027 |TT PsA |220316.8-312643 |LB | 7.00 | 7.49 | |V | | | | |M7III |06351 08953| +113283|670030 |TW PsA |225624.1-313356 |BY | 6.44 | 6.51 | |V | | | 10.3 | |K5Ve |08601 CoD | +113598|670033 |TZ PsA |230028.2-334442 |RS | 8.40 | 8.49 | |V | | | | | |69011 CoD | +108975|670034 |UU PsA |220436.8-264921 |BE | 5.86 | 5.91 | |b | | | | | |71150 CoD | +111350|670036 |UW PsA |223333.5-293954 |DSCTC | 8.2 |( 0.08 )| |B | | | | | |73067 CoD | +106929|670037 |UX PsA |213920.0-301816 |LB: | 7.42 | 7.56 | |Hp| | | | | |HIP HIP | +107054|670038 |UY PsA |214055.6-343113 |LB: | 7.72 | 8.08 | |Hp| | | | | |HIP HIP | +107135|670039 |UZ PsA |214204.3-255136 |LB | 7.27 | 7.40 | |Hp| | | | | |HIP HIP | +108597|670040 |VV PsA |215955.5-313133 |BE | 6.99 | 7.11 | |Hp| | | | | |HIP HIP | +108982|670041 |VW PsA |220442.4-354147 |LB: | 7.50 | 7.75 | |Hp| | | | | |HIP HIP | +109282|670042 |VX PsA |220819.4-343322 |LB: | 6.97 | 7.07 | |Hp| | | | | |HIP HIP | +109884|670043 |VY PsA |221519.0-245927 |EB | 8.81 | 9.01 | |Hp| | | | | |HIP HIP | +111809|670044 |VZ PsA |223851.5-330453 |EA | 5.68 | 5.72 | |Hp| | | | | |HIP HIP | +112312|670045 |WW PsA |224457.9-331502 |BY+UV | 11.81 | 12.16 | |Hp| | | | | |HIP HIP | +113532|670046 |WX PsA |225935.8-292744 |DSCTC | 5.57 | 5.59 | |Hp| | | | | |HIP HIP | +113549|670047 |WY PsA |225951.3-350226 |LB: | 8.71 | 8.87 | |Hp| | | | | |HIP HIP | +114022|670048 |WZ PsA |230528.2-304840 |LB | 8.10 | 8.36 | |Hp| | | | | |HIP HIP | +113860|679016 |pi. PsA *|230329.8-344458 |CST: | 5.10 | 5.12 | |V | | | | |F0V+F3V |06205 CoD | +37415 |680001 |R Pup *|074052.6-313940 |SRD | 6.50 | 6.71 | |V | | | | |G2Ia-0 |09629 CoD | +37950 |680002 |S Pup |074643.9-480644 |CST | 7.2 | | |V | | | | |A2 |00237 CoD | +38074 |680003 |T Pup |074808.6-403909 |CST | 6.14 | | |V | | | | |M2III |06994 03576| +38957 |680005 |V Pup *|075814.4-491442 |EB/SD | 4.35 | 4.92 | 4.82 |V |45367.60633 | | 1.4544859 | |B1Vp+B3: |09630 08953| +37893 |680006 |W Pup *|074557.4-421144 |M | 7.15 | 13.6 | |V |44956. | | 119.7 |47 |M1e-M6e |00001 00002| +36685 |680007 |X Pup *|073247.0-205435 |DCEP | 7.82 | 9.24 | |V |41108.8 | | 25.9610 |15 |F6-G2 |07934 00521| +36669 |680009 |Z Pup *|073238.1-203929 |M | 7.2 | 15.3 | |V |43075. | | 508.6 |38 |M4e-M9e |00001 00002| +40233 |680011 |RS Pup *|081304.2-343443 |DCEP | 6.52 | 7.67 | |V |35734.426 | | 41.3876 |24 |F9-G7 |00001 02440| +39583 |680012 |RT Pup |080520.0-384636 |SRB | 10.2 | 11.0 | |B | | | 100. : | |C6,2(Nb) |00693 03389| +39751 |680013 |RU Pup |080729.8-225445 |SRB | 10.3 | 12.2 | |p | | | 425. | |C5,4(N3) |00693 08953| +32115 |680014 |RV Pup |064228.4-422217 |M | 9.3 | 13.0 | |p |30093. | | 187.96 |50 |M1e-M9 |01004 03389| +36544 |680017 |RY Pup |073102.0-345903 |CST | 9.17 | | |B | | | | |K5 |01266 09520| +37809 |680018 |RZ Pup |074508.4-395056 |CST | 8.8 | | |p | | | | |K2 |01266 CoD | +32675 |680020 |ST Pup *|064856.4-371633 |CWA | 9.28 | 10.68 | |V |44023.96 | | 19. : | |F2:e-G2I |04678 05625| +38772 |680021 |SU Pup |075612.1-440833 |M | 9.3 |< 14.0 | |p |31385. | | 339.8 | |M(S4,2)e |01004 08613| +40593 |680022 |SV Pup *|081716.6-134831 |M | 9.0 |< 13.1 | |p |36284. | | 166.52 | |M5e |00001 08073| +33912 |680031 |TX Pup |070216.8-413640 |CST | 9.2 | | |p | | | | |F7V |01266 CoD | +36683 |680032 |TY Pup *|073246.2-204731 |EW/KE | 8.40 | 8.89 | 8.87 |V |34412.106 | | 0.819235 | |A9n |06215 08953| +37497 |680039 |UZ Pup *|074146.1-132338 |EB/KE | 9.35 | 10.34 | 10.0 |V |44613.69829 | | 0.79485120 | |A6+A6 |09543 08667| +36617 |680041 |VW Pup *|073149.1-200859 |DCEP | 11.00 | 11.75 | |V |43521.291 | | 4.28537 |22 |F5-G0 |09003 00391| +36666 |680042 |VX Pup *|073236.6-215550 |CEP(B) | 7.73 | 8.59 | |V |36237.953 | | 3.01087 |50 |F5-F8 |09649 08953| +37207 |680044 |VZ Pup *|073835.2-282959 |DCEP | 8.92 | 10.35 | |V |41121.19 | | 23.1710 |17 |F5-G2 |09545 09650| +37511 |680045 |WW Pup *|074154.9-210759 |DCEP | 10.03 | 11.03 | |V |41047.29 | | 5.516724 |31 |F5-F9 |01268 00391| +37515 |680046 |WX Pup *|074159.0-255234 |DCEP | 8.76 | 9.44 | |V |35042.184 | | 8.937050 |31 |F6-G1 |09667 00391| +38944 |680047 |WY Pup |075805.1-240230 |DCEP | 10.18 | 10.96 | |V |40925.40 | | 5.25080 |25 |F5-F9 |02309 00391| +39144 |680048 |WZ Pup *|080022.9-234211 |DCEP | 9.85 | 10.76 | |V |34889.465 | | 5.027286 |27 |F5-G2 |09667 00391| +39849 |680049 |XX Pup *|080828.2-163200 |RRAB | 10.49 | 11.77 | |V |41773.255 | | 0.517181 |13 |A0-A7 |09334 00391| +40277 |680051 |XZ Pup *|081331.1-235711 |EA/SD | 7.75 | 10.26 | 7.90 |V |42412.19458 | | 2.1923631 |21 *|A0 |08593 03579| +41061 |680057 |AC Pup |082244.2-155459 |LB | 8.9 | 10.1 | |V | | | | |C5,4(N) |00391 00391| +38063 |680058 |AD Pup |074803.9-253440 |DCEP | 9.27 | 10.36 | |V |41126.18 | | 13.5940 |25 |F5-G2 |02309 00391| +38907 |680069 |AP Pup |075745.7-400724 |DCEP | 7.02 | 7.78 | |V |40689.21 | | 5.0843102 |51 |F5-F7 |07934 08953| +38965 |680070 |AQ Pup *|075822.1-290748 |DCEP | 8.08 | 9.39 | |V |44676.57 | | 30.104 |17 |F5Ib-G2Ib |00001 00391| +39376 |680071 |AR Pup *|080301.6-363548 |RVB | 8.7 | 10.9 | |p | | | 74.58 | |F0I-II-F8I-II |09673 00368| +39967 |680072 |AS Pup *|080939.8-381029 |M | 9.0 | 12.8 | |p |35470. | | 324.65 |50 |M7e-M9 |00001 03389| +40178 |680073 |AT Pup *|081222.4-365638 |DCEP | 7.53 | 8.41 | |V |40741.22 | | 6.6650 |29 |F8-G0 |07934 03203| +38241 |680090 |BM Pup |075003.1-281519 |DCEP | 10.43 | 11.27 | |V |30792.566 | | 7.19853 |25 | |03474 03474| +39666 |680091 |BN Pup *|080621.5-300549 |DCEP | 9.20 | 10.40 | |V |28078.04 | | 13.6731 |29 |G4 |03551 03581| +41352 |680115 |CO Pup *|082612.0-301708 |CWA | 11.25 | 12.46 | |B |40979.52 | | 16.0192 |45 | |07934 HIP | +37506 |680154 |EK Pup *|074149.7-250230 |DCEPS | 10.46 | 10.88 | |V |35573.46 | | 2.62594 |45 | |08637 01343| +35584 |680209 |HH Pup *|072035.6-464230 |RRAB | 10.44 | 11.78 | |V |38500.2486 | | 0.39074628 |12 |A3II-III-F5 |03588 06286| +36762 |680210 |HI Pup *|073338.2-500725 |EW/KW | 10.7 | 11.0 | 11.0 |V |34344.548 | | 0.432651 | | |00080 CoD | +37779 |680211 |HK Pup *|074446.8-130556 |RRAB | 11.4 | 12.4 | |p |36608.383 | | 0.7342382 |20 | |09657 02361| +40078 |680212 |HL Pup |081110.8-333057 |CEP | 11.1 | 11.8 | |p |30700.58 | | 3.48250 |25 | |03551 03551| +36773 |680250 |KQ Pup *|073348.0-143126 |LC | 4.82 | 5.17 | |V | | | | |M2epIab+B2V |02301 BD | +38441 |680259 |KZ Pup |075236.5-172301 |RR | 11.3 | 12.8 | |p | | | | | |00412 04665| +38569 |680260 |LL Pup |075348.8-302737 |CEP | 11.2 | 12.3 | |p |28612.03 | | 5.07753 |24 | |03551 03551| +38854 |680266 |LR Pup |075703.7-280942 |CEP | 11.1 | 12.3 | |p |29631.743 | | 3.33124 |18 | |03551 03551| +39010 |680267 |LS Pup |075859.2-291828 |CEP | 9.8 | 10.8 | |p |38376.500 | | 14.1464 |35 | |03992 03551| +40274 |680286 |MX Pup |081329.5-355358 |GCAS | 4.60 | 4.92 | |V | | | | |B1.5III-IVe |08419 05625| +37174 |680287 |MY Pup |073818.2-483605 |DCEPS | 5.54 | 5.76 | |V |41043.72 | | 5.69482 |37 |F4Iab |08834 CoD | +39487 |680288 |MZ Pup |080416.2-324029 |LC: | 5.2 | 5.44 | |V | | | | |M1IIb |06304 CoD | +41361 |680290 |NO Pup *|082617.7-390332 |EA/KE: | 6.53 | 6.98 | 6.66 |V |41361.7635 | | 1.25689059 |12 *|B8V |09696 CoD | +33189 |680291 |NP Pup |065426.7-422156 |LB | 6.25 | 6.52 | |V | | | | |C7,2(N0) |06258 CoD | +38502 |680292 |NQ Pup *|075305.3-113729 |LB | 7.55 | 7.68 | |V | | | | |S6,3 |06059 BD | +40091 |680294 |NS Pup |081121.5-393707 |LC | 4.4 | 4.5 | |V | | | | |K3Ib |03712 CoD | +35363 |680297 |NV Pup |071818.4-364402 |GCAS | 4.58 | 4.78 | |V | | | | |B3Ve |08419 09697| +35406 |680298 |NW Pup *|071838.2-364434 |BCEP+ELL: | 5.11 |( 0.07 )| |V | | | 0.125 | |B3Vea |06840 09697| +35488 |680299 |NX Pup *|071928.3-443511 |INA | 10.00 | 11.16 | |V | | | | |A1-F2IIIe |09702 09741| +38580 |680305 |OR Pup *|075358.7-262056 |LB: | 6.85 | 7.1 | |V | | | | |M7 |07858 07858| +40321 |680306 |OS Pup *|081358.3-361920 |GCAS: | 5.07 | 5.2 | |V | | | | |B1.5IV |08387 CoD | +34899 |680308 |OU Pup *|071313.4-451058 |ACV | 4.86 | 4.93 | |V | | | 0.9183 | |A0p(Si) |08934 CoD | +36778 |680310 |OW Pup |073351.0-362018 |GCAS | 5.37 | 5.56 | |V | | | | |B3Vne |08419 CoD | +37982 |680311 |OX Pup *|074705.8-391952 |ACV | 6.30 | 6.36 | |V | | | 2.41 | |B9p(Si) |07977 CoD | +39866 |680315 |PQ Pup |080837.6-374052 |GCAS | 6.17 | 6.42 | |V | | | | |B4Ve |08419 CoD | +35029 |680316 |PR Pup |071446.0-465059 |ACV | 5.69 | 5.74 | |V | | | 1.9347 |40 |A0p(Si) |09743 CoD | +36608 |680317 |PS Pup *|073142.7-355316 |ELL | 6.62 |( 0.028 )|( 0.028 )|V | | | 1.3422 | |A0 |08476 CoD | +37036 |680318 |PT Pup *|073641.0-194208 |BCEP(B) | 5.72 | 5.74 | |V |44254.151 | | 0.162840 |50 |B2III |09019 BD | +37173 |680319 |PU Pup *|073818.1-252153 |EB | 4.69 | 4.75 | 4.74 |V |43100.000 | | 2.57895 | |B9 |08478 CoD | +37842 |680320 |PV Pup *|074528.7-144110 |EA/DM | 6.88 | 7.32 | 7.31 |V |43119.73344 | | 1.660728 |10 *|A8V+A8V |09744 BD | +38792 |680322 |PX Pup |075622.7-301704 |LB: | 6.25 |( 0.42 )| |V | | | | |M6III |06324 04257| +39153 |680323 |PY Pup |080029.0-485218 |ACV | 6.12 |( 0.04 )| |V |43196.00 | | 6.82 |50 : |A0p(Si) |08360 CoD | +39329 |680325 |QQ Pup |080227.1-444001 |ACV | 6.6 |( 0.06 )| |V |43174.000 | | 2.226 |50 |A0p(Si) |08360 CoD | +38159 |680327 |QS Pup *|074912.9-465128 |BCEP | 5.84 | | |V | | | 0.1182 | |B1.5IV |08787 CoD | +38370 |680329 |QU Pup *|075140.4-425318 |BCEP(B) | 6.04 | | |V |43480.713 | | 0.1927 | |B2IV |08787 CoD | +34834 |680331 |QW Pup |071233.6-464534 |ACV | 4.47 |( 0.027 )| |V | | | | | |67198 CoD | +38031 |680333 |QY Pup |074738.5-155927 |SRD | 6.24 | 6.71 | |V | | | | | |67098 BD | +38455 |680334 |QZ Pup |075238.6-385146 |ELL | 4.47 | 4.54 | |V | | | | | |67209 CoD | +39360 |680336 |V0336 Pup |080244.8-411835 |ACV | 5.52 |( 0.022 )| |V | | | | | |67064 CoD | +39439 |680337 |V0337 Pup |080342.0-292508 |ACV | 7.6 |( 0.03 )| |V | | | | | |67066 CoD | +31400 |680338 |V0338 Pup |063455.5-451830 |RRAB | 9.07 | 9.25 | |V | | | | | |68295 CoD | +32434 |680339 |V0339 Pup |064612.2-374631 |GCAS | 6.15 | 6.27 | |V | | | | | |68154 CoD | +38737 |680342 |V0342 Pup |075550.1-455848 |SXARI: | 6.7 |( 0.040 )| |V | | | | | |68303 CoD | +36992 |680344 |V0344 Pup |073613.8-445727 |RS | 6.88 | 6.99 | |V | | | | | |69011 CoD | +36381 |680349 |V0349 Pup |072917.1-341017 |DSCTC | 7.49 | 7.53 | |B | | | | | |71072 CoD | +36500 |680350 |V0350 Pup |073034.1-340526 |BCEP | 7.48 | 7.52 | |B | | | | | |71073 CoD | +39676 |680355 |V0355 Pup |080631.0-202004 |DSCTC | 8.5 |( 0.04 )| |B | | | | | |73067 BD | +29103 |680356 |V0356 Pup |060817.8-465058 |RS: | 8.33 | 8.46 | |Hp| | | | | |HIP HIP | +31625 |680357 |V0357 Pup |063705.1-502858 |LB: | 8.11 | 8.21 | |Hp| | | | | |HIP HIP | +33487 |680358 |V0358 Pup |065739.1-411741 |EA: | 9.30 | 9.54 | |Hp| | | | | |HIP HIP | +33549 |680359 |V0359 Pup |065818.3-395831 |LB: | 8.88 | 9.04 | |Hp| | | | | |HIP HIP | +33864 |680360 |V0360 Pup *|070147.2-353253 |EB: | 6.52 | 6.58 | |Hp| | | | | |HIP HIP | +34396 |680361 |V0361 Pup |070753.0-345000 |EW | 8.08 | 8.39 | |Hp| | | | | |HIP HIP | +34659 |680362 |V0362 Pup |071039.6-411554 |E: | 7.52 | 7.63 | |Hp| | | | | |HIP HIP | +34817 |680363 |V0363 Pup |071225.8-363240 |LPB | 5.89 | 5.91 | |Hp| | | | | |HIP HIP | +34836 |680364 |V0364 Pup *|071234.2-361319 |IA: | 8.70 | 9.75 | |Hp| | | | | |HIP HIP | +35447 |680365 |V0365 Pup |071906.5-351103 |EA | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +35607 |680366 |V0366 Pup |072051.8-483051 |EA: | 8.07 | 8.29 | |Hp| | | | | |HIP HIP | +35898 |680367 |V0367 Pup |072402.0-440806 |LB: | 8.36 | 8.46 | |Hp| | | | | |HIP HIP | +35960 |680368 |V0368 Pup |072447.4-371728 |DSCTC | 6.20 | 6.23 | |Hp| | | | | |HIP HIP | +36227 |680369 |V0369 Pup |072737.0-182948 |ACYG: | 7.66 | 7.76 | |Hp| | | | | |HIP HIP | +36250 |680370 |V0370 Pup |072751.0-160538 |BE | 8.47 | 8.59 | |Hp| | | | | |HIP HIP | +36246 |680371 |V0371 Pup |072749.4-282216 |LPB | 7.03 | 7.06 | |Hp| | | | | |HIP HIP | +36349 |680372 |V0372 Pup |072851.4-301449 |BY: | 9.97 | 10.13 | |Hp| | | | | |HIP HIP | +36404 |680373 |V0373 Pup |072928.0-215131 |BE | 7.61 | 7.81 | |Hp| | | | | |HIP HIP | +36409 |680374 |V0374 Pup |072930.3-364105 |SRB | 7.28 | 7.50 | |Hp| | | | | |HIP HIP | +36605 |680375 |V0375 Pup |073140.6-265405 |LPB: | 8.63 | 8.69 | |Hp| | | | | |HIP HIP | +36728 |680376 |V0376 Pup *|073313.2-400331 |EB: | 6.21 | 6.24 | |Hp| | | | | |HIP HIP | +36802 |680377 |V0377 Pup |073408.7-505026 |LB | 7.45 | 7.64 | |Hp| | | | | |HIP HIP | +36981 |680378 |V0378 Pup *|073603.9-142934 |EB: | 5.60 | 5.68 | |Hp| | | | | |HIP HIP | +36971 |680379 |V0379 Pup |073559.6-342528 |ACV | 9.12 | 9.21 | |Hp| | | | | |HIP HIP | +37099 |680380 |V0380 Pup |073725.2-333027 |GCAS: | 9.19 | 9.61 | |Hp| | | | | |HIP HIP | +37296 |680381 |V0381 Pup |073927.2-113350 |EB | 7.26 | 7.71 | |Hp| | | | | |HIP HIP | +37272 |680382 |V0382 Pup |073913.7-293140 |BY: | 11.01 | 11.22 | |Hp| | | | | |HIP HIP | +37343 |680383 |V0383 Pup |073954.7-455811 |SRB: | 7.40 | 7.52 | |Hp| | | | | |HIP HIP | +37433 |680384 |V0384 Pup |074102.6-314059 |LC | 8.76 | 9.40 | |Hp| | | | | |HIP HIP | +37692 |680385 |V0385 Pup |074358.1-282554 |ACV | 8.00 | 8.09 | |Hp| | | | | |HIP HIP | +37668 |680386 |V0386 Pup |074343.4-412309 |SXARI: | 8.66 | 8.81 | |Hp| | | | | |HIP HIP | +37675 |680387 |V0387 Pup |074347.9-401834 |BE | 6.47 | 6.59 | |Hp| | | | | |HIP HIP | +37743 |680388 |V0388 Pup |074429.4-213024 |BE | 9.95 | 10.16 | |Hp| | | | | |HIP HIP | +37758 |680389 |V0389 Pup |074436.6-171727 |IA: | 8.17 | 8.35 | |Hp| | | | | |HIP HIP | +37751 |680390 |V0390 Pup |074434.2-244027 |EA | 5.53 | 5.62 | |Hp| | | | | |HIP HIP | +37927 |680391 |V0391 Pup |074619.4-285438 |DSCTC: | 7.88 | 7.95 | |Hp| | | | | |HIP HIP | +37915 |680392 |V0392 Pup |074610.6-375601 |E: | 5.82 | 5.93 | |Hp| | | | | |HIP HIP | +37925 |680393 |V0393 Pup *|074618.9-375352 |ELL | 7.69 | 7.73 | |Hp| | | | | |HIP HIP | +37985 |680394 |V0394 Pup |074707.4-413103 |SRD | 7.71 | 7.82 | |Hp| | | | | |HIP HIP | +38110 |680395 |V0395 Pup |074836.5-304522 |LPB | 7.14 | 7.17 | |Hp| | | | | |HIP HIP | +38155 |680396 |V0396 Pup |074908.3-360803 |SRD | 8.79 | 8.99 | |Hp| | | | | |HIP HIP | +38167 |680397 |V0397 Pup |074914.7-351436 |EA | 5.91 | 6.09 | |Hp| | | | | |HIP HIP | +38173 |680398 |V0398 Pup |074919.6-331947 |ACYG: | 7.80 | 7.91 | |Hp| | | | | |HIP HIP | +38186 |680399 |V0399 Pup |074928.9-483828 |EA | 9.27 | 9.56 | |Hp| | | | | |HIP HIP | +38326 |680400 |V0400 Pup |075105.7-472406 |LB: | 8.41 | 8.52 | |Hp| | | | | |HIP HIP | +38338 |680401 |V0401 Pup |075110.8-483652 |EA: | 9.44 | 9.76 | |Hp| | | | | |HIP HIP | +38430 |680402 |V0402 Pup |075220.3-262547 |ACYG: | 9.21 | 9.30 | |Hp| | | | | |HIP HIP | +38439 |680403 |V0403 Pup |075230.1-215959 |BE: | 9.01 | 9.12 | |Hp| | | | | |HIP HIP | +38650 |680404 |V0404 Pup |075450.4-453951 |LPB | 7.29 | 7.32 | |Hp| | | | | |HIP HIP | +38866 |680405 |V0405 Pup |075714.8-143107 |EB | 8.72 | 8.92 | |Hp| | | | | |HIP HIP | +38787 |680406 |V0406 Pup |075620.8-495855 |LC | 7.39 | 8.15 | |Hp| | | | | |HIP HIP | +38923 |680407 |V0407 Pup |075754.1-202543 |SRC: | 6.82 | 7.46 | |Hp| | | | | |HIP HIP | +39020 |680408 |V0408 Pup |075905.2-251637 |BE | 9.20 | 9.35 | |Hp| | | | | |HIP HIP | +39090 |680409 |V0409 Pup |075948.9-202655 |E: | 8.38 | 8.47 | |Hp| | | | | |HIP HIP | +39084 |680410 |V0410 Pup |075945.9-471813 |EB | 6.69 | 6.74 | |Hp| | | | | |HIP HIP | +39128 |680411 |V0411 Pup |080015.9-324242 |SRB | 8.28 | 8.62 | |Hp| | | | | |HIP HIP | +39131 |680412 |V0412 Pup |080017.4-375046 |LB: | 8.74 | 8.86 | |Hp| | | | | |HIP HIP | +39162 |680413 |V0413 Pup |080035.4-452013 |LPB: | 7.62 | 7.69 | |Hp| | | | | |HIP HIP | +39229 |680414 |V0414 Pup |080124.6-124736 |ACV: | 8.77 | 8.91 | |Hp| | | | | |HIP HIP | +39290 |680415 |V0415 Pup |080202.5-424613 |LPB | 7.86 | 7.89 | |Hp| | | | | |HIP HIP | +39365 |680416 |V0416 Pup |080250.5-343245 |SRB: | 7.20 | 7.45 | |Hp| | | | | |HIP HIP | +39452 |680417 |V0417 Pup |080350.7-313306 |E: | 9.76 | 10.02 | |Hp| | | | | |HIP HIP | +39521 |680418 |V0418 Pup |080438.8-295758 |LB: | 7.32 | 7.47 | |Hp| | | | | |HIP HIP | +39637 |680419 |V0419 Pup *|080559.5-315026 |LB: | 11.09 | 11.41 | |Hp| | | | | |HIP HIP | +39834 |680420 |V0420 Pup |080819.4-233704 |BE | 6.30 | 6.57 | |Hp| | | | | |HIP HIP | +39968 |680421 |V0421 Pup |080939.8-272621 |EB | 9.07 | 9.23 | |Hp| | | | | |HIP HIP | +40005 |680422 |V0422 Pup |081012.1-353848 |LB: | 8.93 | 9.04 | |Hp| | | | | |HIP HIP | +40066 |680423 |V0423 Pup |081103.4-185827 |ACV | 7.46 | 7.52 | |Hp| | | | | |HIP HIP | +40074 |680424 |V0424 Pup |081110.5-265303 |LB: | 8.93 | 9.04 | |Hp| | | | | |HIP HIP | +40139 |680425 |V0425 Pup |081150.2-273125 |EB: | 7.81 | 7.97 | |Hp| | | | | |HIP HIP | +40148 |680426 |V0426 Pup |081154.8-301243 |BE: | 7.68 | 7.82 | |Hp| | | | | |HIP HIP | +40144 |680427 |V0427 Pup |081153.4-354623 |SRB: | 6.46 | 6.82 | |Hp| | | | | |HIP HIP | +40264 |680428 |V0428 Pup |081321.9-412451 |SRB | 7.69 | 7.84 | |Hp| | | | | |HIP HIP | +40409 |680429 |V0429 Pup |081457.9-174155 |LB: | 8.95 | 9.05 | |Hp| | | | | |HIP HIP | +40459 |680430 |V0430 Pup |081540.1-260036 |BY: | 10.13 | 10.26 | |Hp| | | | | |HIP HIP | +40596 |680431 |V0431 Pup |081717.6-423118 |E | 7.21 | 7.32 | |Hp| | | | | |HIP HIP | +40777 |680432 |V0432 Pup |081922.3-200951 |ACV: | 6.67 | 6.70 | |Hp| | | | | |HIP HIP | +40805 |680433 |V0433 Pup |081943.1-181553 |LB: | 9.41 | 9.62 | |Hp| | | | | |HIP HIP | +40853 |680434 |V0434 Pup |082010.7-232133 |EA | 7.76 | 8.38 | |Hp| | | | | |HIP HIP | +40871 |680435 |V0435 Pup |082023.5-334633 |LB: | 8.33 | 8.43 | |Hp| | | | | |HIP HIP | +41107 |680436 |V0436 Pup |082316.9-381710 |LB | 6.28 | 6.40 | |Hp| | | | | |HIP HIP | +41121 |680437 |V0437 Pup |082326.5-422508 |LB | 8.72 | 8.92 | |Hp| | | | | |HIP HIP | +41250 |680438 |V0438 Pup |082457.2-424611 |EA | 5.90 | 6.07 | |Hp| | | | | |HIP HIP | +41324 |680439 |V0439 Pup |082553.2-333351 |SRC | 8.51 | 8.81 | |Hp| | | | | |HIP HIP | +41390 |680440 |V0440 Pup |082639.9-301750 |LB | 8.77 | 9.01 | |Hp| | | | | |HIP HIP | +37444 |680442 |V0442 Pup |074113.3-323838 |ACYG | 7.72 | 7.84 | |Hp| | | | | |75218 CoD | +37876 |680443 |V0443 Pup |074550.4-341949 |E/WR | 10.49 |( 0.04 )| |V | | | | | |75067 CoD | +37345 |680468 |V0468 Pup |073958.0-373446 |BE | 5.92 | 6.02 | |V | | | | | |76078 DM | +28796 |680575 |V0575 Pup *|060446.7-482730 |RS | 6.62 |( 0.04 )| |V | | | 3.3 | |G2V+G5V |78046 DM | +41278 |680592 |V0592 Pup |082517.7-342201 |RS | 7.83 | 7.87 | |V | | | 1.35 | |G1V+G3V |78046 DM | +41475 |680596 |V0596 Pup *|082733.3-205038 |EA/DM | 6.57 | 7.05 | 7.03 |V |44620.65895 | | 4.5961832 |06 *|A1V+A1V |09765 BD | +38466 |680615 |V0615 Pup |075245.8-480152 |EA | 8.91 | 8.98 | 8.97 |V |52950.772 | | 3.38771 |16 |B5V |79004 DM | +39390 |680626 |V0626 Pup *|080310.4-381148 |EA | 9.04 | 9.16 | 9.10 |V |47913.248 | | 1.425902 |11 |A0V |79006 DM | +29057 |680647 |V0647 Pup |060747.0-444346 |DSCT | 6.74 | 6.78 | |V | | | 0.1167053 | |F0V |80171 HIP | NL80_2 +39206 |680683 |V0683 Pup *|080112.0-293331 |LPB | 8.28 | 8.36 | |Hp| | | 1.21806 | |B7III/IV |80019 HIP | NL80_2 +39429 |689006 |zet Pup |080335.0-400011 |ACYG: | 2.11 | 2.17 | |Hp| | | | | |75111 CoD | +38070 |689015 |omi Pup *|074805.2-255614 |BE: | 4.43 | 4.46 | |Hp| | | | | |HIP HIP | +35264 |689016 |pi. Pup |071708.6-370551 |SRD: | 2.80 | 2.87 | |Hp| | | | | |HIP HIP | +39757 |689017 |rho Pup *|080732.6-241816 |DSCT | 2.68 | 2.87 | |V |44995.905 | | 0.1408809 |48 |F6IIp |09760 03579| +36377 |689018 |sig Pup |072913.8-431805 |ELL: | 3.36 | 3.39 | |Hp| | | | | |HIP HIP | +42975 |690001 |R Pyx |084530.7-281203 |M | 10.4 | 15.1 | |B |18606. | | 364.7 | |C(R)e |00001 08613| +43541 |690018 |RZ Pyx *|085204.4-272901 |EB/KE | 8.83 | 9.72 | 9.69 |B |38431.474 | | 0.656273 | |B7V |05228 09611| +42733 |690031 |TX Pyx *|084230.6-322032 |E/KE | 9.5 | 9.9 | 9.8 |p |27844.475 | | 1.123745 | |A3 |05399 CoD | +44164 |690032 |TY Pyx *|085942.7-274859 |EA/D/RS | 6.85 | 7.50 | 7.48 |V |43187.2304 | | 3.1985787 |07 *|G5+G5 |09431 08953| +42619 |690033 |TZ Pyx *|084108.3-321203 |EW | 10.7 | 11.1 | 11.1 |V |28847.550 | | 0.6973125 | | |05377 CoD | +43093 |690039 |UZ Pyx *|084636.3-294341 |SRB | 6.99 | 7.47 | |V | | | 100. : | |C5,5J(R8) |06059 CoD | +41939 |690042 |VX Pyx |083258.5-343803 |RS | 6.32 | 6.42 | |V | | | | | |69011 CoD | +43736 |690043 |VY Pyx |085429.6-233119 |CWB | 7.65 | 8.08 | |B | | | | | |71086 BD | +41515 |690050 |XY Pyx |082759.4-350650 |EB | 5.68 | 5.76 | |Hp| | | | | |HIP HIP | +41541 |690051 |XZ Pyx |082816.5-225853 |LB: | 9.22 | 9.34 | |Hp| | | | | |HIP HIP | +41535 |690052 |YY Pyx |082813.5-271528 |SRA | 9.07 | 9.36 | |Hp| | | | | |HIP HIP | +41586 |690053 |YZ Pyx |082843.0-344354 |BCEP: | 7.62 | 7.66 | |Hp| | | | | |HIP HIP | +41670 |690054 |ZZ Pyx |082944.5-324459 |LB: | 8.63 | 8.73 | |Hp| | | | | |HIP HIP | +41714 |690055 |AA Pyx |083023.6-303044 |ACV | 9.07 | 9.12 | |Hp| | | | | |HIP HIP | +41726 |690056 |AB Pyx |083029.8-364317 |LC | 6.58 | 6.89 | |Hp| | | | | |HIP HIP | +41811 |690057 |AC Pyx |083128.0-254056 |EA: | 7.80 | 8.10 | |Hp| | | | | |HIP HIP | +42110 |690058 |AD Pyx |083501.9-275947 |LB | 8.48 | 8.73 | |Hp| | | | | |HIP HIP | +42469 |690059 |AE Pyx |083929.8-215533 |SRD: | 8.17 | 8.25 | |Hp| | | | | |HIP HIP | +42533 |690060 |AF Pyx |084017.6-320955 |E: | 8.09 | 8.27 | |Hp| | | | | |HIP HIP | +42756 |690061 |AG Pyx |084248.0-344403 |LB: | 8.36 | 8.46 | |Hp| | | | | |HIP HIP | +42802 |690062 |AH Pyx |084314.1-340419 |LB | 8.45 | 8.69 | |Hp| | | | | |HIP HIP | +43114 |690063 |AI Pyx |084649.2-343723 |IA: | 6.23 | 6.36 | |Hp| | | | | |HIP HIP | +43215 |690064 |AK Pyx |084814.6-283820 |LB | 6.09 | 6.51 | |Hp| | | | | |HIP HIP | +44281 |690065 |AL Pyx |090106.3-273057 |LB | 7.05 | 7.35 | |Hp| | | | | |HIP HIP | +44308 |690066 |AM Pyx |090124.5-304224 |LB: | 8.20 | 8.31 | |Hp| | | | | |HIP HIP | +45009 |690067 |AN Pyx |091002.6-212506 |ACV: | 8.25 | 8.30 | |Hp| | | | | |HIP HIP | +45373 |690068 |AO Pyx |091447.6-334057 |LB | 8.35 | 8.73 | |Hp| | | | | |HIP HIP | +45679 |690069 |AP Pyx |091843.6-340545 |LB: | 7.45 | 7.57 | |Hp| | | | | |HIP HIP | +45706 |690070 |AQ Pyx |091904.7-363757 |SRD | 9.10 | 9.36 | |Hp| | | | | |HIP HIP | +46241 |690071 |AR Pyx |092538.5-272706 |EB: | 8.72 | 8.97 | |Hp| | | | | |HIP HIP | +42214 |690119 |CS Pyx |083623.0-300215 |BY | 8.08 |( 0.03 )| |V | | | 13.97 | |G8/K0V |78110 DM | +42281 |690120 |CT Pyx |083715.5-172941 |BY | 8.72 |( 0.04 )| |V | | | 16.41 | |K1V |78018 DM | +44851 |690125 |CY Pyx *|090817.1-370654 |E: | 8.27 | 8.36 | |V | | | 0.840 | |G3V |78046 DM | +41980 |690133 |DK Pyx *|083324.1-343855 |EA | 7.85 | 7.97 | 7.91 |V |48112.955 | | 6.17848 |06 |B3III |79193 DM | +45945 |690136 |DN Pyx *|092210.2-314753 |EA | 8.45 | 8.55 | 8.55 |V |52764.617 | | 6.64046 |04 : |A0V |79018 DM | +21252 |700001 |R Ret *|043332.8-630145 |M | 6.5 | 14.2 | |V |41703. | | 278.46 |48 |M4e-M7.5e |00001 00002| +19231 |700024 |SX Ret |040719.6-602650 |SRB | 9.24 | 9.80 | |V |40622. | | 100. : | |M4-5III |05828 CoD | +19917 |700027 |TT Ret |041621.0-605655 |ACV | 6.37 |( 0.015 )| |V | | | | | |67064 CPD | +19945 |700031 |TX Ret |041639.3-641856 |DSCTC | 8.6 |( 0.03 )| |B | | | | | |73067 CPD | +16204 |700034 |UU Ret |032846.9-595836 |SRB | 9.26 | 9.45 | |Hp| | | | | |HIP HIP | +16807 |700035 |UV Ret |033620.5-612929 |LB: | 9.20 | 9.33 | |Hp| | | | | |HIP HIP | +17968 |700036 |UW Ret |035029.9-602540 |SRB | 7.76 | 7.92 | |Hp| | | | | |HIP HIP | +18517 |700037 |UX Ret |035734.0-542127 |EW | 8.32 | 9.02 | |Hp| | | | | |HIP HIP | +18659 |700038 |UY Ret |035940.6-584030 |LB: | 9.53 | 9.68 | |Hp| | | | | |HIP HIP | +19530 |700039 |UZ Ret |041103.8-630938 |DSCTC | 9.28 | 9.34 | |Hp| | | | | |HIP HIP | +20304 |700040 |VV Ret |042102.4-590950 |LB | 8.59 | 8.77 | |Hp| | | | | |HIP HIP | +20657 |700041 |VW Ret |042535.4-604525 |EA | 8.76 | 9.28 | |Hp| | | | | |HIP HIP | +16092 |700043 |VY Ret *|032716.8-611533 |EA | 7.89 | 8.47 | 8.43 |V |52898.794 | | 14.21605 | |F5V |79011 DM | +18744 |709003 |gam Ret |040053.8-620933 |SR | 4.42 | 4.64 | |V | | | 25. | |M4III |06994 09611| +98085 |710002 |S Sge *|195601.3+163805 |DCEP | 5.24 | 6.04 | |V |42678.792 | | 8.382086 |31 |F6Ib-G5Ib |08632 08953| +95173 |710003 |T Sge |192142.0+174000 |SRB | 10.4 | 11.9 | |p | | | 165.5 | |M4-M6.5 |00366 08953| +94910 |710004 |U Sge *|191848.4+193638 |EA/SD | 6.45 | 9.28 | 6.71 |V |17130.4114 | | 3.38061933 |17 |B8V+G2IV-III |08608 08953| +98909 |710007 |X Sge *|200504.9+203853 |SR | 7.0 | 9.7 | |V |25648. | | 196. |50 |C6-,5(N3) |01362 05662| +93987 |710022 |SV Sge |190811.8+173741 |RCB | 11.5 | 16.2 | |p | | | | |C0-3,2-3(R2) |09704 09772| +98438 |710044 |VZ Sge *|200003.3+173100 |LB | 5.27 | 5.57 | |V | | | | |M4IIIa |06645 05151| +98662 |710084 |BF Sge |200223.1+210525 |LB | 10.3 | 12.1 | |B | | | | |C4,4(N3) |00773 02331| +98430 |710123 |CW Sge *|195958.0+191045 |EW/DW | 11.0 | 11.8 | 11.7 |p |37501.457 | | 0.660347966 | |F5 |06247 00156| +99527 |710171 |FG Sge *|201156.1+202004 |* | 9.45 | 13.6 | |B | | | | |B4Ieq-K2Ib |09717 05665| +95657 |710220 |HT Sge |192726.6+181745 |ACYG: | 8.07 |( 0.15 )| |B | | | | |B7Ia |08213 BD | +98780 |710221 |HU Sge |200342.2+212947 |LB | 7.8 | 8.8 | |p | | | | |M0 |09725 03915| +94289 |710326 |QR Sge |191130.9+165138 |E:/WR | 11.04 | 11.12 | |V | | | | | |67216 HIP | +97456 |710328 |QT Sge |194832.2+181204 |E:/WR | 10.50 |( 0.04 )| |V | | | | | |67219 67220| +97796 |710334 |QZ Sge |195221.8+184019 |E: | 6.16 | 6.23 | |V | | | | | |71190 BD | +94377 |710338 |V0338 Sge |191234.5+165047 |E: | 6.69 | 6.75 | |Hp| | | | | |HIP HIP | +96599 |710339 |V0339 Sge *|193812.1+164826 |LC | 8.46 | 8.84 | |Hp| | | | | |HIP HIP | +96688 |710340 |V0340 Sge |193925.3+163416 |LC: | 6.37 | 6.47 | |Hp| | | | | |HIP HIP | +96984 |710341 |V0341 Sge |194248.3+175806 |GCAS: | 7.67 | 7.84 | |Hp| | | | | |HIP HIP | +97135 |710342 |V0342 Sge |194431.6+183519 |SRB | 6.78 | 6.92 | |Hp| | | | | |HIP HIP | +97670 |710343 |V0343 Sge |195058.9+165128 |E: | 7.24 | 7.32 | |Hp| | | | | |HIP HIP | +99176 |710344 |V0344 Sge |200806.5+163952 |LB | 6.35 | 6.52 | |Hp| | | | | |HIP HIP | +99327 |710372 |V0372 Sge |200939.6+210444 |BCEP | 8.47 |( 0.03 )| |V | | | 0.164314 | |B0.5III/IV |79164 DM | +97365 |719004 |del Sge *|194723.3+183203 |LB: | 3.75 | 3.83 | |V | | | | |M2.5II-III+B9V |07315 BD | +94738 |720001 |R Sgr *|191641.8-191828 |M | 6.7 | 12.83 | |V |43371. | | 269.84 |46 |M4e-M6e |00001 00002| +94706 |720003 |T Sgr *|191614.4-165817 |M | 7.1 | 12.9 | |V |44897. | | 394.66 |47 |S4.5,8e-S5.5,8e |00001 00002| +90836 |720004 |U Sgr *|183153.3-190730 |DCEP | 6.28 | 7.15 | |V |30117.925 | | 6.745226 |28 |F5Ib-G1.5Ib |06591 03609| +90799 |720005 |V Sgr |183123.4-181545 |CST | 8.1 | | |V | | | | |F2II | BD | +88567 |720006 |W Sgr *|180501.2-293448 |DCEP | 4.29 | 5.14 | |V |43374.77 | | 7.59503 |32 |F4-G2Ib |00001 00478| +87072 |720007 |X Sgr *|174733.6-274951 |DCEP | 4.20 | 4.90 | |V |40741.70 | | 7.01283 |36 |F5-G2II |00001 00478| +89968 |720008 |Y Sgr *|182123.0-185136 |DCEP | 5.25 | 6.24 | |V |40762.38 | | 5.77335 |34 |F5-G0Ib-II |09773 08953| +98077 |720010 |RR Sgr *|195556.4-291124 |M | 5.4 | 14.0 | |V |40809. | | 336.33 |43 |M4e-M9e |00001 00002| +89637 |720011 |RS Sgr *|181736.2-340626 |EA/SD | 6.01 | 6.97 | 6.28 |V |20586.387 | | 2.4156832 |17 *|B3IV-V+A |01593 00010| +100033|720012 |RT Sgr *|201743.6-390646 |M | 6.0 | 14.1 | |V |42083. | | 306.46 |47 |M5e-M7e |00001 00002| +98334 |720013 |RU Sgr *|195842.9-415058 |M | 6.0 | 13.8 | |V |41900. | | 240.49 |43 |M3e-M6e |00001 00002| +90493 |720014 |RV Sgr *|182756.1-331929 |M | 7.2 | 14.8 | |V |42621. | | 315.85 |47 |M4e-M9 |00001 00002| +94489 |720015 |RW Sgr *|191354.6-185142 |SRA | 9.0 | 11.7 | |V |41931. | | 186.82 |47 |M4II/IIIe-M6III:e|00001 00002| +94730 |720017 |RY Sgr *|191632.8-333120 |RCB | 5.8 | 14.0 | |V | | | | |G0Iaep(C1,0) |09797 00002| +90709 |720019 |SS Sgr |183026.1-165349 |SRB | 10.9 | 11.3 | |p | | | | |C3,4(R3/N) |00235 00568| +93605 |720021 |SU Sgr *|190343.8-224243 |SRB | 8.12 | 8.64 | |V | | | 60. | |M6III |08837 09467| +89084 |720025 |SY Sgr *|181054.3-234135 |INSA: | 9.87 : | 10.12 | |V | | | | |F8 |09800 02428| +86873 |720026 |SZ Sgr *|174456.5-183926 |SRB | 11.05 | 11.9 | |B | | | 73. : | |C7,3(Nb) |00236 BD | +97296 |720036 |UW Sgr |194626.1-180906 |SRB | 11.76 | 12.5 | |B | | | | |C6,5-C7,1J(Na) |00235 BD | +88838 |720042 |VX Sgr *|180804.0-221327 |SRC | 6.52 | 14.0 | |V |36493. | | 732. | |M4eIa-M10eIa |01007 00002| +89596 |720048 |WZ Sgr *|181659.7-190433 |DCEP | 7.45 | 8.63 | |V |35506.629 | | 21.849708 |31 |F8-K1 |01601 01601| +90241 |720049 |XX Sgr *|182444.5-164750 |CEP | 8.41 | 9.28 | |V |35308.449 | | 6.424140 |30 |F6-G2 |09667 01603| +90019 |720051 |XZ Sgr *|182206.8-251424 |EA/SD | 8.82 | 10.93 | 8.95 |V |41890.6201 | | 3.275555 |11 |A3V+G5IV-V: |08605 00024| +92370 |720053 |YZ Sgr |184928.6-164323 |DCEP | 7.02 | 7.76 | |V |35514.301 | | 9.553606 |49 |F6-G2 |09667 03203| +89276 |720069 |AP Sgr *|181302.5-230702 |DCEP | 6.52 | 7.41 | |V |36045.500 | | 5.057875 |22 |F6-G1 |09667 08953| +96255 |720070 |AQ Sgr |193419.0-162227 |SRB | 9.1 | 11.4 | |p | | | 199.6 | |C7,4(N3) |00235 08953| +88855 |720077 |AX Sgr |180826.5-183308 |SRD | 9.2 | 10.0 | |p | | | 350. : | |G8Ia-M2Ia |00235 08953| +90110 |720078 |AY Sgr *|182319.1-183429 |DCEP | 10.10 | 10.92 | |V |40768.53 | | 6.56959 |31 |F6-G1 |09812 01612| +92491 |720080 |BB Sgr *|185059.9-201743 |DCEP | 6.55 | 7.30 | |V |36053.535 | | 6.63699 |34 |F6-G1 |02309 05464| +87433 |720256 |KW Sgr |175200.7-280121 |SRC | 11.0 | 13.2 | |p | | | 670. | |M0I-M4Ia |00478 02448| +92013 |720350 |V0350 Sgr *|184517.5-203851 |DCEP | 7.08 | 7.83 | |V |35317.227 | | 5.15424 |28 |F5-G2Ib |02309 10202| +92235 |720356 |V0356 Sgr *|184752.3-201628 |EA/DS: | 6.84 | 7.66 | 7.24 |V |33900.827 | | 8.89610 |12 |B3V+A1II |02185 05464| +96101 |720440 |V0440 Sgr *|193220.8-235113 |RRAB | 9.60 | 10.80 | |V |41509.445 | | 0.47747883 |14 |A4-F8 |07984 02455| +97849 |720505 |V0505 Sgr *|195306.4-143612 |EA/SD | 6.46 | 7.51 | 6.63 |V |44461.5907 | | 1.18287156 |20 *|A2V+F6: |00001 08953| +89326 |720675 |V0675 Sgr *|181335.4-341902 |RRAB | 9.80 | 10.76 | |V |28387.244 | | 0.6422893 |14 |A5-F6 |03126 02447| +93293 |720733 |V0733 Sgr |190008.2-181510 |M | 11.2 | 14.4 | |p |30262. | | 100.9 |50 | |01658 01659| +87668 |720774 |V0774 Sgr |175426.1-231410 |LB | 12.5 | 13.9 | |p | | | | |M5 |00478 00478| +86971 |720777 |V0777 Sgr *|174625.4-261201 |EA/GS | 10.42 | 10.7 | |B |29411.7 | | 936.07 |06 |K5Ib+A |01600 00478| +92403 |721216 |V1216 Sgr *|184949.4-235010 |UV | 11.2 | 12.55 | |B | | | | |M3.6Ve |09848 05770| +88069 |721647 |V1647 Sgr *|175913.5-365620 |EA/DM | 6.94 | 7.57 | 7.43 |V |41829.69510 | | 3.28279251 |08 |A1V+A2V |09854 CoD | +98546 |721711 |V1711 Sgr *|200108.0-303039 |CWA | 10.43 | 11.06 | |V |44151.11 | | 28.556 |35 |F4-F6 |00001 02570| +88022 |721721 |V1721 Sgr *|175843.2-331934 |EA/DM | 10.4 | 10.6 | |p |28664.475 | | 1.788564 |10 |F3V |02448 08613| +94940 |721942 |V1942 Sgr *|191909.6-155430 |LB | 6.74 | 7.00 | |V | | | | |C6,4(N2/R8) |02598 BD | +99082 |721943 |V1943 Sgr |200655.2-271330 |LB | 9. | 11. | |p | | | | |M8 |00848 08953| +99126 |722232 |V2232 Sgr |200727.3-434910 |RR | 11.5 | 12.5 | |p | | | | | |04001 04001| +99129 |722235 |V2235 Sgr |200730.0-383149 |EA | 10. | 10.5 | |p | | | | |MB |04001 04001| +89499 |722509 |V2509 Sgr *|181549.9-353814 |EB/KE | 7.35 | 7.71 | 7.50 |V |44387.7712 | | 1.0869739 | |A0 |00001 06618| +90801 |723508 |V3508 Sgr *|183124.2-190931 |GCAS | 7.70 | 8.00 | |V | | | | |B6IIIe |05914 09872| +96176 |723790 |V3790 Sgr |193320.3-163637 |LB: | 7.24 | 7.54 | |V | | | | |M2 |05918 BD | +88905 |723792 |V3792 Sgr *|180854.0-252823 |EB/DM | 6.43 | 6.88 | 6.81 |V |41879.349 | | 2.248082 | |B5 |04831 05151| +98688 |723872 |V3872 Sgr |200239.5-274236 |LB | 4.45 | 4.64 | |V | | | | |M4III |03712 08667| +91781 |723879 |V3879 Sgr *|184255.1-191703 |SRB | 6.05 | 6.58 | |V | | | 50. : | |M5.2III |06645 BD | +97394 |723885 |V3885 Sgr *|194740.5-420026 |NL+ZZ: | 10.27 | 10.51 | |V | | | | |pec |07217 CoD | +87163 |723894 |V3894 Sgr *|174827.8-265830 |EB/D | 6.21 | 6.39 | 6.37 |V |44569.775 | | 2.61862 | |B3IVe |09912 CoD | +88943 |723903 |V3903 Sgr *|180917.7-235918 |INA: | 7.00 | 7.45 | |V | | | | |O8Vn |06866 09913| +94224 |723954 |V3954 Sgr |191051.5-150440 |LB: | 7.15 : | 7.52 | |V | | | | |M3 |07787 BD | +95127 |723955 |V3955 Sgr |192107.3-312350 |SRD | 10. | 11.2 | |p | | | | |G0-G5 |05152 CoD | +97749 |723961 |V3961 Sgr *|195150.6-395228 |ACV | 5.28 | 5.34 | |V |44457.77 | | 2300. | |A0p(Si-Cr-Eu) |09914 CoD | +88123 |723984 |V3984 Sgr |175956.4-332430 |GCAS | 7.38 |( 0.18 )| |V | | | | |B1.5Vne |07908 CoD | +93996 |724024 |V4024 Sgr *|190816.7-191725 |GCAS | 5.34 | 5.60 | |V | | | | |B2Ve |08419 BD | +97351 |724026 |V4026 Sgr |194709.0-170441 |SR: | 6.69 | 6.90 | |V | | | | |M5III |08225 BD | +89980 |724028 |V4028 Sgr |182131.4-245455 |SR: | 6.10 | 6.38 | |V | | | 35. : | |M5III |06645 CoD | +89956 |724029 |V4029 Sgr |182114.9-162232 |SDOR | 8.12 | 8.29 | |V | | | | |B9Iapeq |08070 BD | +89963 |724030 |V4030 Sgr |182119.6-162226 |ACYG: | 8.30 | 8.41 | |V | | | | |B8Iaea |08070 BD | +90610 |724031 |V4031 Sgr |182922.0-251524 |GCAS | 6.52 | 6.67 | |V | | | | |B2IVnep |05890 CoD | +89178 |724045 |V4045 Sgr |181158.2-285406 |ACV | 6.51 | 6.54 | |V | | | 2.8855 | |A0p(Si-Cr-Eu) |09919 CoD | +90074 |724050 |V4050 Sgr |182253.1-364010 |ACV | 5.31 |( 0.012 )| |V | | | 6.3 | |B8p(Sr-Ti-Cr) |08375 CoD | +96644 |724062 |V4062 Sgr |193856.2-283626 |ACV | 6.71 | 6.75 | |V |42620.099 | | 1.737 |30 |B9p(Si) |08312 CoD | +96967 |724063 |V4063 Sgr |194237.1-242246 |DSCT | 7.9 |( 0.12 )| |V | | | 0.361 | |F0 |08403 CoD | +97684 |724064 |V4064 Sgr |195110.2-272819 |ACV | 7.23 | 7.36 | |V |42621.478 | | 4.718 |30 |B9p(Si) |00208 CoD | +88287 |724072 |V4072 Sgr |180143.1-324255 |ELL/WR+* | 8.74 |( 1.2 )| |V | | | | | |67228 CoD | +89526 |724074 |V4074 Sgr |181605.5-305114 |ZAND | 8.6 | 12.3 | |p | | | | | |67231 HIP | +92505 |724088 |V4088 Sgr |185106.4-201800 |E | 7.49 | 7.87 | |V | | | | | |67241 BD | +96234 |724089 |V4089 Sgr |193408.5-400205 |EA/DM | 5.87 | 6.07 | |V | | | | | |67244 CoD | +96739 |724090 |V4090 Sgr |193955.5-392558 |EA/DM | 6.58 | 6.81 | |V | | | | | |67244 CoD | +99011 |724091 |V4091 Sgr |200602.7-184216 |RS: | 8.4 |( 0.04 )| |V | | | | | |67246 BD | +91550 |724131 |V4131 Sgr |184011.0-223950 |GCAS: | 8.68 | 8.82 | |V | | | | | |68346 BD | +98763 |724133 |V4133 Sgr |200335.2-385109 |ACV | 6.90 | 6.92 | |V | | | | | |68290 CoD | +95244 |724138 |V4138 Sgr |192240.3-203835 |RS | 6.57 | 6.85 | |V | | | | | |69011 BD | +95714 |724139 |V4139 Sgr |192805.6-405005 |RS | 8.40 | 8.69 | |V | | | | | |69011 CoD | +93181 |724152 |V4152 Sgr |185847.3-293018 |SR: | 9.24 | 9.52 | |V | | | | | |70066 CoD | +89164 |724159 |V4159 Sgr |181147.6-165338 |BCEP | 8.09 | 8.16 | |V | | | | | |71160 BD | +91132 |724190 |V4190 Sgr |183521.3-205026 |DSCTC | 6.44 | 6.48 | |V | | | | | |71017 BD | +93785 |724197 |V4197 Sgr |190557.9-192853 |EW/KE | 7.95 | 8.70 | |V | | | | | |71179 BD | +93887 |724198 |V4198 Sgr |190708.3-184417 |* | 6.23 | 6.29 | |V | | | | | |71123 BD | +95159 |724199 |V4199 Sgr |192137.1-191404 |* | 6.18 | 6.26 | |V | | | | | |71123 BD | +97944 |724200 |V4200 Sgr |195417.8-235628 |BY | 6.18 |( 0.07 )| |V | | | | | |71001 CoD | +96440 |724333 |V4333 Sgr |193626.1-185111 |DSCT | 5.48 | 5.60 | |V | | | | | |72150 BD | +95266 |724371 |V4371 Sgr |192257.3-141532 |BY | 9.42 | 9.60 | |V | | | | | |73293 BD | +95755 |724372 |V4372 Sgr |192835.3-150608 |ELL: | 6.76 | 6.80 | |V | | | | | |73294 BD | +87136 |724375 |V4375 Sgr |174814.0-280053 |BE | 8.93 | 9.06 | |Hp| | | | | |HIP HIP | +88073 |724376 |V4376 Sgr |175915.8-193227 |ELL: | 9.14 | 9.27 | |Hp| | | | | |HIP HIP | +88182 |724377 |V4377 Sgr |180032.7-335456 |LB: | 8.94 | 9.04 | |Hp| | | | | |HIP HIP | +88341 |724378 |V4378 Sgr |180228.3-191025 |LB | 9.94 | 10.47 | |Hp| | | | | |HIP HIP | +88615 |724379 |V4379 Sgr |180533.3-194515 |BE: | 7.03 | 7.13 | |Hp| | | | | |HIP HIP | +88789 |724380 |V4380 Sgr |180728.7-283024 |LB | 9.68 | 10.13 | |Hp| | | | | |HIP HIP | +88876 |724381 |V4381 Sgr |180838.6-212658 |ACYG: | 6.57 | 6.62 | |Hp| | | | | |HIP HIP | +88884 |724382 |V4382 Sgr |180844.9-220939 |BCEP | 7.93 | 7.98 | |Hp| | | | | |HIP HIP | +89129 |724383 |V4383 Sgr |181124.3-204245 |BE | 8.69 | 8.82 | |Hp| | | | | |HIP HIP | +89203 |724384 |V4384 Sgr |181214.7-192558 |ACYG: | 7.20 | 7.30 | |Hp| | | | | |HIP HIP | +89238 |724385 |V4385 Sgr |181237.6-281411 |ELL: | 7.42 | 7.46 | |Hp| | | | | |HIP HIP | +89404 |724386 |V4386 Sgr |181442.1-330827 |E: | 8.37 | 8.55 | |Hp| | | | | |HIP HIP | +89470 |724387 |V4387 Sgr |181530.8-183942 |ACV | 6.09 | 6.12 | |Hp| | | | | |HIP HIP | +89510 |724388 |V4388 Sgr |181556.0-314532 |LB: | 8.25 | 8.34 | |Hp| | | | | |HIP HIP | +89662 |724389 |V4389 Sgr |181751.6-272117 |SRB: | 7.16 | 7.26 | |Hp| | | | | |HIP HIP | +90001 |724390 |V4390 Sgr *|182148.9-161929 |EB | 7.75 | 7.87 | |Hp| | | | | |HIP HIP | +90043 |724391 |V4391 Sgr |182224.7-321252 |SRB | 8.32 | 8.53 | |Hp| | | | | |HIP HIP | +90100 |724392 |V4392 Sgr |182314.7-282444 |SRD: | 8.41 | 8.55 | |Hp| | | | | |HIP HIP | +90113 |724393 |V4393 Sgr |182319.9-203913 |LB: | 7.54 | 7.65 | |Hp| | | | | |HIP HIP | +90259 |724394 |V4394 Sgr |182501.3-193326 |EB: | 10.52 | 11.06 | |Hp| | | | | |HIP HIP | +90646 |724395 |V4395 Sgr |182944.9-341608 |SRB | 8.10 | 8.27 | |Hp| | | | | |HIP HIP | +90671 |724396 |V4396 Sgr |183002.1-332943 |EA | 7.68 | 8.11 | |Hp| | | | | |HIP HIP | +90811 |724397 |V4397 Sgr |183129.0-211458 |SRB | 8.11 | 8.27 | |Hp| | | | | |HIP HIP | +90950 |724398 |V4398 Sgr |183310.1-182206 |ACYG | 6.89 | 6.93 | |Hp| | | | | |HIP HIP | +91020 |724399 |V4399 Sgr |183405.1-325740 |EA: | 7.13 | 7.31 | |Hp| | | | | |HIP HIP | +91130 |724400 |V4400 Sgr |183520.5-220527 |BE | 8.02 | 8.15 | |Hp| | | | | |HIP HIP | +91135 |724401 |V4401 Sgr |183523.7-191607 |SRB | 6.64 | 6.77 | |Hp| | | | | |HIP HIP | +91206 |724402 |V4402 Sgr |183620.9-321938 |LB | 8.35 | 8.65 | |Hp| | | | | |HIP HIP | +91718 |724403 |V4403 Sgr |184211.5-340225 |EA | 8.68 | 9.14 | |Hp| | | | | |HIP HIP | +92066 |724404 |V4404 Sgr |184553.2-182151 |ACV | 7.43 | 7.48 | |Hp| | | | | |HIP HIP | +92079 |724405 |V4405 Sgr |184601.1-193623 |SRB: | 6.20 | 6.33 | |Hp| | | | | |HIP HIP | +92142 |724406 |V4406 Sgr |184647.3-293754 |SRB | 6.73 | 6.89 | |Hp| | | | | |HIP HIP | +92649 |724407 |V4407 Sgr |185241.7-304403 |EB | 6.62 | 6.80 | |Hp| | | | | |HIP HIP | +92776 |724408 |V4408 Sgr |185418.0-195559 |LPB: | 8.28 | 8.37 | |Hp| | | | | |HIP HIP | +93696 |724409 |V4409 Sgr |190447.9-184227 |BE | 8.67 | 8.78 | |Hp| | | | | |HIP HIP | +93931 |724410 |V4410 Sgr |190736.8-314018 |LB: | 8.48 | 8.60 | |Hp| | | | | |HIP HIP | +94537 |724411 |V4411 Sgr |191426.5-291626 |E: | 8.50 | 8.76 | |Hp| | | | | |HIP HIP | +95036 |724412 |V4412 Sgr |192013.4-361340 |LB: | 7.97 | 8.10 | |Hp| | | | | |HIP HIP | +95075 |724413 |V4413 Sgr |192036.9-275958 |LB: | 8.75 | 8.86 | |Hp| | | | | |HIP HIP | +95063 |724414 |V4414 Sgr |192031.8-170240 |SRB | 7.60 | 7.77 | |Hp| | | | | |HIP HIP | +95226 |724415 |V4415 Sgr |192225.7-315612 |SRB | 6.93 | 7.04 | |Hp| | | | | |HIP HIP | +95252 |724416 |V4416 Sgr |192247.9-323012 |SRB | 8.01 | 8.17 | |Hp| | | | | |HIP HIP | +95313 |724417 |V4417 Sgr *|192329.7-343137 |E: | 8.94 | 9.34 | |Hp| | | | | |HIP HIP | +95779 |724418 |V4418 Sgr |192850.7-163103 |LB: | 8.47 | 8.57 | |Hp| | | | | |HIP HIP | +96111 |724419 |V4419 Sgr |193228.5-305210 |SRB | 6.47 | 6.65 | |Hp| | | | | |HIP HIP | +96873 |724420 |V4420 Sgr |194128.5-200506 |SRB: | 8.62 | 8.82 | |Hp| | | | | |HIP HIP | +96983 |724421 |V4421 Sgr |194247.8-201145 |LB | 9.20 | 9.39 | |Hp| | | | | |HIP HIP | +97303 |724422 |V4422 Sgr |194632.1-161234 |LB: | 8.01 | 8.07 | |Hp| | | | | |HIP HIP | +97460 |724423 |V4423 Sgr |194833.9-160949 |LB: | 8.17 | 8.27 | |Hp| | | | | |HIP HIP | +97923 |724424 |V4424 Sgr |195401.9-301510 |RRAB | 10.04 | 10.68 | |Hp| | | | | |HIP HIP | +98021 |724425 |V4425 Sgr |195509.8-254826 |SXPHE: | 9.38 | 9.92 | |Hp| | | | | |HIP HIP | +98088 |724426 |V4426 Sgr |195602.7-364004 |SRB | 8.67 | 8.85 | |Hp| | | | | |HIP HIP | +98113 |724427 |V4427 Sgr |195622.6-162219 |LB | 8.58 | 8.76 | |Hp| | | | | |HIP HIP | +98539 |724428 |V4428 Sgr |200104.8-421011 |EA | 8.26 | 8.53 | |Hp| | | | | |HIP HIP | +99042 |724429 |V4429 Sgr *|200629.4-181829 |SRD: | 8.12 | 8.30 | |Hp| | | | | |HIP HIP | +99408 |724430 |V4430 Sgr |201034.8-391245 |LB | 8.86 | 9.18 | |Hp| | | | | |HIP HIP | +99553 |724431 |V4431 Sgr |201212.3-293311 |SRD | 8.54 | 8.68 | |Hp| | | | | |HIP HIP | +99568 |724432 |V4432 Sgr |201223.6-354658 |LB: | 8.23 | 8.35 | |Hp| | | | | |HIP HIP | +99606 |724433 |V4433 Sgr |201250.2-345408 |IB: | 10.63 | 11.36 | |Hp| | | | | |HIP HIP | +99920 |724434 |V4434 Sgr |201623.6-362713 |LB | 6.16 | 6.33 | |Hp| | | | | |HIP HIP | +100024|724435 |V4435 Sgr |201736.1-292339 |LB | 8.66 | 8.86 | |Hp| | | | | |HIP HIP | +100119|724436 |V4436 Sgr |201836.8-380531 |LB: | 8.91 | 9.06 | |Hp| | | | | |HIP HIP | +100253|724437 |V4437 Sgr |201958.2-323700 |EB | 7.26 | 7.56 | |Hp| | | | | |HIP HIP | +100422|724438 |V4438 Sgr |202148.0-404520 |LB | 6.99 | 7.10 | |Hp| | | | | |HIP HIP | +100413|724439 |V4439 Sgr |202142.5-362817 |SRB: | 8.48 | 8.92 | |Hp| | | | | |HIP HIP | +100743|724440 |V4440 Sgr |202531.8-391946 |LB: | 8.75 | 8.88 | |Hp| | | | | |HIP HIP | +100732|724441 |V4441 Sgr |202520.9-295905 |LB | 7.42 | 7.53 | |Hp| | | | | |HIP HIP | +100813|724442 |V4442 Sgr |202626.1-370633 |LB: | 8.47 | 8.59 | |Hp| | | | | |HIP HIP | +100868|724443 |V4443 Sgr |202707.9-385935 |LB | 7.78 | 7.91 | |Hp| | | | | |HIP HIP | +95358 |725546 |V5546 Sgr |192401.6-333232 |GDOR | 7.69 | 7.79 | |Hp| | | | |F0V |78024 DM | +96406 |725548 |V5548 Sgr |193601.6-244309 |DSCTC: | 5.82 |( 0.04 )| |B | | | 0.11340 | |A1m |78270 DM | +98034 |725553 |V5553 Sgr |195517.7-440039 |EB | 8.53 | 8.62 | |V |48404.165 | | 2.69466 | |F5/F6V |78011 DM | +89642 |729007 |eta Sgr *|181737.6-364542 |LB: | 3.05 | 3.12 | |V | | | | |M3.5III |05840 08087| +89341 |729012 |mu. Sgr *|181345.8-210332 |EA+ACYG | 3.80 | 3.88 | |V |44035. | | 180.55 |11 |B8eqIa+B1.5V |09921 BD | +95176 |729020 |ups Sgr *|192143.6-155718 |EB/GS | 4.53 | 4.61 | 4.59 |V |20439.55 | | 137.939 | |B8pI:+O9V |09924 BD | +78872 |730009 |Z Sco *|160600.7-214400 |M | 8.7 | 13.4 | |V |41750. | | 343.03 |49 |M5.5e:-M7e |00001 00002| +82912 |730010 |RR Sco *|165637.8-303448 |M | 5.0 | 12.4 | |V |45418. | | 281.45 |47 |M6II-IIIe-M9 |00001 00002| +82833 |730011 |RS Sco |165537.8-450611 |M | 6.2 | 13.0 | |V |44676. | | 319.91 |42 |M5e-M9 |00001 00002| +83059 |730014 |RV Sco *|165819.8-333633 |DCEP | 6.61 | 7.49 | |V |34925.38 | | 6.06133 |24 |F5-G1 |02309 08953| +87345 |730017 |RY Sco *|175052.3-334220 |DCEP | 7.51 | 8.44 | |V |28256.45 | | 20.31322 |37 |F6-G2 |09288 02852| +78746 |730018 |RZ Sco *|160436.1-240601 |M | 8.0 | 12.8 | |V |44698. | | 156.60 |45 |M3e-M4e |00001 00002| +87063 |730024 |SX Sco |174728.2-354205 |SR: | 10.5 | 11.4 | |p | | | | |C5,4(N3) |02448 00262| +84071 |730062 |AH Sco *|171117.0-321931 |SRC | 8.1 | 12.0 | |p |29769. | | 713.6 |46 |M4e-M5Ia-Iab |00001 00261| +82747 |730064 |AK Sco |165444.9-365319 |INSB | 8.7 | 11.7 | |p | | | | |F5Vpea |00082 00263| +81747 |730077 |AX Sco |164149.8-270619 |SRB | 9.85 | 12.0 | |B | | | 138. : | |M6 |00236 00261| +86527 |730090 |BM Sco *|174058.5-321252 |SRD | 6.8 | 8.7 | |p | | | 815. : | |K2.5Ib |00236 09864| +84282 |730185 |FV Sco *|171345.0-325109 |EA/DM | 7.95 | 8.72 |( 0.1 pg)|V |42954.0424 | | 5.7278964 |13 |B6V |00001 00262| +82498 |730250 |KQ Sco *|165138.5-452536 |DCEP | 9.34 | 10.29 | |V |35281.4 | | 28.6896 |35 |K5 |02309 00021| +87191 |730393 |V0393 Sco *|174847.6-350326 |EA/SD | 8.2 | 9.0 | 8.3 |p |28321.118 | | 7.71250 |12 *|B9 |00001 08953| +87810 |730453 |V0453 Sco *|175616.1-322830 |EB/GS | 6.36 | 6.73 | 6.70 |V |42218.74 | | 12.00597 | |B0.5Iape |08105 09467| +85701 |730482 |V0482 Sco |173048.4-333636 |DCEP | 7.63 | 8.30 | |V |40754.495 | | 4.527807 |28 |F5 |00001 00262| +86512 |730494 |V0494 Sco *|174048.5-313232 |RRAB | 10.62 | 11.91 | |V |41126.388 | | 0.4273326 |20 |A5-F5: |07984 00262| +87173 |730500 |V0500 Sco |174837.5-302834 |DCEP | 8.40 | 9.13 | |V |44400.89 | | 9.316863 |49 |K0 |00001 00299| +85035 |730636 |V0636 Sco *|172246.5-453651 |DCEP | 6.40 | 6.92 | |V |40364.392 | | 6.79671 |34 |F7/8Ib/II-G5 |05366 03520| +87922 |730690 |V0690 Sco *|175738.6-403327 |RRAB | 10.80 | 12.00 | |V |41797.592 | | 0.4922551 |17 |A7-F8 |00001 02383| +85985 |730701 |V0701 Sco *|173424.5-323016 |EW/KE | 8.63 | 9.05 | 9.05 |V |43574.8358 | | 0.76187547 | |B1:V:nn |09573 00296| +86650 |730703 |V0703 Sco *|174216.8-323124 |DSCT | 7.58 | 8.04 | |V |42979.3923 | | 0.11521772 |35 |A9-G0 |00001 00262| +79476 |730718 |V0718 Sco *|161311.6-222907 |EA | 8.98 | 10. | |V |42630.1 | | | |A2 |07492 08953| +80405 |730760 |V0760 Sco *|162443.7-345338 |EA/DM | 7.04 | 7.4 | 7.4 |B |38230.250 | | 1.7309 |17 |B3:Vn |04430 CoD | +79080 |730856 |V0856 Sco *|160834.3-390618 |INA | 6.80 | 8.00 | |V | | | | |A7IVe |09577 CoD | +82911 |730861 |V0861 Sco *|165636.0-404924 |EB | 6.07 | 6.40 | 6.28 |V |43704.21 | | 7.84825 | |B0.5Iae |06621 08953| +86468 |730862 |V0862 Sco *|174001.0-321204 |GCAS: | 2. | 8.5 | |V | | | | |B1ne-B8 |05922 05922| +83499 |730884 |V0884 Sco *|170356.8-375039 |ELL+X | 6.51 | 6.60 | 6.57 |V |42476.6801 | | 3.41168 | |O5.5-O6.5Iaf |09664 09665| +82669 |730900 |V0900 Sco *|165358.9-415940 |ELL: | 6.29 | 6.34 | |V |42469.86 | | 2.63 | |B0.5Iae |08222 CoD | +86624 |730905 |V0905 Sco |174159.0-333014 |ACYG: | 6.49 | 6.67 | |V | | | | |A2Ia-0pe |07887 CoD | +87616 |730906 |V0906 Sco *|175354.8-344510 |EA/DM | 5.96 | 6.23 | 6.21 |V |39649.8190 | | 2.785847 |13 *|B9V+B9V |09748 07798| +82554 |730911 |V0911 Sco *|165227.4-404323 |ACV | 6.32 | 6.38 | |V | | | 1.85 | |B9p(Si) |07924 CoD | +78246 |730913 |V0913 Sco *|155834.9-244953 |SXARI | 5.40 | 5.47 | |V | | | 0.492 | |B4IV-Vp(He weak) |09750 CoD | +82926 |730914 |V0914 Sco *|165648.6-390538 |UV+BY | 12.4 | 14.0 | |U | | | | |M3Ve+M4Ve |09752 09751| +84332 |730915 |V0915 Sco *|171427.6-394600 | | 6.22 | 6.64 | |V | | | | |G5Ia |09754 CoD | +81305 |730918 |V0918 Sco |163622.6-425132 |ELL | 5.42 | 5.50 | |V | | | 9.813 | |O8.5I+O7III(f) |08530 CoD | +82543 |730919 |V0919 Sco *|165219.3-415116 |WR | 6.45 | 6.61 | |V | | | 2. : | |WN7+O-B1I |04326 CoD | +83410 |730922 |V0922 Sco *|170253.8-382737 |DSCTC | 7.45 |( 0.10 )| |B | | | 0.05 | |A1IV |04355 CoD | +83491 |730923 |V0923 Sco *|170350.9-380909 |EA/D | 5.86 | 6.24 | |V |41903.691 | | 34.8269 | |F3IV-V+F3V |08537 CoD | +77909 |730927 |V0927 Sco *|155439.5-251438 |SXARI | 5.8 |( 0.03 )| |V |44256.572 | | 1.45937 | |B8IIIp(He weak) |08054 CoD | +78183 |730928 |V0928 Sco |155748.8-233138 |ACV | 6.74 | 6.76 | |V | | | | | |67248 CoD | +78877 |730929 |V0929 Sco |160606.4-233623 |SXARI | 5.89 | 5.91 | |V | | | | | |67248 CoD | +80024 |730933 |V0933 Sco |162005.5-200323 |ACV | 7.37 |( 0.045 )| |V | | | | | |67072 BD | +80478 |730936 |V0936 Sco |162539.1-292402 |ACV | 7.63 | 7.71 | |V | | | | | |67065 CoD | +85839 |730949 |V0949 Sco |173224.6-341646 |DSCTC | 6.13 |( 0.05 )| |V | | | | | |67284 CoD | +86269 |730950 |V0950 Sco |173737.6-404849 |DCEPS | 7.07 | 7.40 | |V | | | | | |67287 CoD | +87624 |730951 |V0951 Sco |175358.1-344952 |ACV | 6.39 | 6.44 | |V | | | | | |67072 CoD | +79235 |730952 |V0952 Sco |161015.9-265433 |ACV | 6.57 |( 0.04 )| |V | | | | | |68222 CoD | +80027 |730953 |V0953 Sco |162009.8-255126 |ACV | 9.2 |( 0.04 )| |V | | | | | |68222 CoD | +81508 |730954 |V0954 Sco |163853.9-440926 |EB/KE | 7.49 | 7.75 | |V | | | | | |68332 68224| +81566 |730955 |V0955 Sco |163931.6-271708 |ACV | 8.65 |( 0.04 )| |V | | | | | |68222 CoD | +87460 |730957 |V0957 Sco |175213.7-344757 |SXARI | 5.87 |( 0.05 )| |V | | | | | |68187 CoD | +87560 |730958 |V0958 Sco |175316.0-343715 |ACV | 6.95 |( 0.05 )| |V | | | | | |68187 CoD | +85680 |730965 |V0965 Sco |173033.4-333916 |RS | 8.46 | 8.67 | |V | | | | | |69252 CoD | +80290 |730972 |V0972 Sco |162322.9-262216 |DSCT | 9.52 | 9.69 | |V | | | | | |70103 70171| +82493 |730973 |V0973 Sco |165133.7-411350 |ACYG | 5.22 | 5.28 | |V | | | | | |70077 CoD | +85020 |730975 |V0975 Sco |172239.2-374817 |ACYG | 6.27 | 6.35 | |V | | | | | |70077 CoD | +86432 |730994 |V0994 Sco |173937.6-321913 |BCEP | 7.10 | 7.22 | |V | | | | | |71123 71153| +81472 |731003 |V1003 Sco |163826.3-432354 |ELL: | 5.83 |( 0.03 )| |V | | | | | |72099 CoD | +82691 |731007 |V1007 Sco |165410.1-414930 |EB | 6.06 |( 0.24 )| |V | | | | | |72041 CoD | +84409 |731012 |V1012 Sco |171522.3-381247 |EB | 6.76 | 6.83 | |b | | | | | |72040 CoD | +85676 |731017 |V1017 Sco |173030.7-343221 |RS: | 8.23 | 8.27 | |V | | | | | |72152 CoD | +79081 |731027 |V1027 Sco |160834.6-390534 |ACV: | 6.60 | 6.67 | |V | | | | | |73297 CoD | +80607 |731028 |V1028 Sco |162729.7-291718 |ACV | 7.00 |( 0.01 )| |V | | | | | |73298 CoD | +84655 |731035 |V1035 Sco |171823.1-342431 |WR | 9.27 |( 0.03 )| |V | | | | | |73303 CoD | +86011 |731036 |V1036 Sco |173442.5-323454 |ELL | 5.71 | 5.79 | |V | | | | | |73304 CoD | +77369 |731039 |V1039 Sco |154737.7-220521 |SRD: | 11.01 | 11.44 | |Hp| | | | | |HIP HIP | +77859 |731040 |V1040 Sco |155355.9-235841 |BCEP: | 5.39 | 5.42 | |Hp| | | | | |HIP HIP | +78523 |731041 |V1041 Sco |160151.5-282226 |EA | 8.94 | 9.26 | |Hp| | | | | |HIP HIP | +78534 |731042 |V1042 Sco |160200.4-111733 |LB | 9.18 | 9.38 | |Hp| | | | | |HIP HIP | +78563 |731043 |V1043 Sco |160229.1-260853 |SRB | 7.45 | 7.58 | |Hp| | | | | |HIP HIP | +78708 |731044 |V1044 Sco |160402.9-215540 |E: | 8.76 | 8.96 | |Hp| | | | | |HIP HIP | +78880 |731045 |V1045 Sco |160607.6-135327 |LB: | 8.08 | 8.19 | |Hp| | | | | |HIP HIP | +78919 |731046 |V1046 Sco |160639.0-262502 |E | 9.34 | 9.70 | |Hp| | | | | |HIP HIP | +79085 |731047 |V1047 Sco |160835.8-204827 |I: | 11.17 | 11.53 | |Hp| | | | | |HIP HIP | +79158 |731048 |V1048 Sco |160921.9-354412 |LB: | 9.05 | 9.15 | |Hp| | | | | |HIP HIP | +79247 |731049 |V1049 Sco |161023.4-291700 |LB | 7.96 | 8.08 | |Hp| | | | | |HIP HIP | +79479 |731050 |V1050 Sco |161312.3-341825 |SRB | 7.38 | 7.49 | |Hp| | | | | |HIP HIP | +79530 |731051 |V1051 Sco |161345.5-242520 |SXARI | 6.40 | 6.43 | |Hp| | | | | |HIP HIP | +79763 |731052 |V1052 Sco |161646.0-082547 |LB: | 8.62 | 8.73 | |Hp| | | | | |HIP HIP | +80004 |731053 |V1053 Sco |161952.0-143835 |LB: | 8.03 | 8.16 | |Hp| | | | | |HIP HIP | +80060 |731054 |V1054 Sco |162028.2-125440 |E: | 6.63 | 6.71 | |Hp| | | | | |HIP HIP | +80603 |731055 |V1055 Sco |162726.2-372837 |EW | 8.65 | 8.92 | |Hp| | | | | |HIP HIP | +80636 |731056 |V1056 Sco |162752.3-354700 |BY: | 9.47 | 9.55 | |Hp| | | | | |HIP HIP | +80714 |731057 |V1057 Sco |162846.2-354124 |SRB | 7.62 | 7.85 | |Hp| | | | | |HIP HIP | +80945 |731058 |V1058 Sco |163141.8-414902 |ACYG | 5.36 | 5.42 | |Hp| | | | | |HIP HIP | +81256 |731059 |V1059 Sco |163548.7-420722 |BE | 9.37 | 9.64 | |Hp| | | | | |HIP HIP | +81334 |731060 |V1060 Sco |163641.0-320633 |DSCTC | 8.88 | 8.92 | |Hp| | | | | |HIP HIP | +81415 |731061 |V1061 Sco |163740.1-425705 |LB | 8.03 | 8.23 | |Hp| | | | | |HIP HIP | +81477 |731062 |V1062 Sco |163830.9-390908 |ACV | 6.92 | 6.98 | |Hp| | | | | |HIP HIP | +81645 |731063 |V1063 Sco |164042.5-410737 |GCAS | 7.87 | 8.06 | |Hp| | | | | |HIP HIP | +81712 |731064 |V1064 Sco |164124.8-420338 |LB: | 7.60 | 7.70 | |Hp| | | | | |HIP HIP | +81842 |731065 |V1065 Sco |164300.6-384021 |ACV | 7.69 | 7.75 | |Hp| | | | | |HIP HIP | +81921 |731066 |V1066 Sco |164358.4-363821 |LB: | 9.07 | 9.20 | |Hp| | | | | |HIP HIP | +82451 |731067 |V1067 Sco |165059.1-264652 |E: | 10.37 | 10.77 | |Hp| | | | | |HIP HIP | +82650 |731068 |V1068 Sco |165342.4-430304 |LB | 5.71 | 5.96 | |Hp| | | | | |HIP HIP | +82819 |731069 |V1069 Sco |165531.0-392759 |EA: | 8.54 | 8.79 | |Hp| | | | | |HIP HIP | +82848 |731070 |V1070 Sco |165552.3-312811 |LPB | 7.65 | 7.70 | |Hp| | | | | |HIP HIP | +83014 |731071 |V1071 Sco |165750.2-390657 |SRB | 6.54 | 6.64 | |Hp| | | | | |HIP HIP | +83457 |731072 |V1072 Sco |170322.2-400516 |DSCTC | 7.42 | 7.47 | |Hp| | | | | |HIP HIP | +83574 |731073 |V1073 Sco |170449.4-340723 |ACYG: | 4.89 | 4.95 | |Hp| | | | | |HIP HIP | +83706 |731074 |V1074 Sco |170628.4-352704 |ACYG: | 6.23 | 6.26 | |Hp| | | | | |HIP HIP | +84401 |731075 |V1075 Sco |171519.3-333254 |BE: | 5.57 | 5.64 | |Hp| | | | | |HIP HIP | +84483 |731076 |V1076 Sco |171617.6-422021 |BE | 6.76 | 6.84 | |Hp| | | | | |HIP HIP | +84650 |731077 |V1077 Sco |171820.5-323311 |BE | 6.36 | 6.44 | |Hp| | | | | |HIP HIP | +84745 |731078 |V1078 Sco |171924.1-380013 |BE | 7.78 | 7.97 | |Hp| | | | | |HIP HIP | +84876 |731079 |V1079 Sco |172046.2-402318 |LB | 8.98 | 9.62 | |Hp| | | | | |HIP HIP | +85022 |731080 |V1080 Sco |172241.9-381208 |IA: | 7.65 | 7.78 | |Hp| | | | | |HIP HIP | +85569 |731081 |V1081 Sco |172912.9-313203 |EA | 6.97 | 7.12 | |Hp| | | | | |HIP HIP | +86163 |731082 |V1082 Sco |173627.4-332936 |E: | 10.09 | 10.53 | |Hp| | | | | |HIP HIP | +86253 |731083 |V1083 Sco |173730.9-351959 |BE | 8.15 | 8.36 | |Hp| | | | | |HIP HIP | +86294 |731084 |V1084 Sco |173757.4-391123 |EW: | 9.07 | 9.18 | |Hp| | | | | |HIP HIP | +86434 |731085 |V1085 Sco |173937.8-361541 |LB: | 8.99 | 9.20 | |Hp| | | | | |HIP HIP | +86751 |731086 |V1086 Sco |174335.2-323946 |LB | 6.44 | 6.67 | |Hp| | | | | |HIP HIP | +87221 |731087 |V1087 Sco |174911.0-331501 |LB | 8.65 | 8.84 | |Hp| | | | | |HIP HIP | +87255 |731088 |V1088 Sco |174944.9-423619 |LB | 8.01 | 8.18 | |Hp| | | | | |HIP HIP | +87257 |731089 |V1089 Sco |174946.9-412633 |ACV | 7.52 | 7.57 | |Hp| | | | | |HIP HIP | +87298 |731090 |V1090 Sco |175015.2-412630 |E: | 8.30 | 8.45 | |Hp| | | | | |HIP HIP | +87580 |731091 |V1091 Sco |175330.0-363031 |ACV | 7.95 | 8.01 | |Hp| | | | | |HIP HIP | +87886 |731092 |V1092 Sco |175710.4-415842 |LPB | 6.69 | 6.74 | |Hp| | | | | |HIP HIP | +79970 |731195 |V1195 Sco *|161923.0-405639 |EA | 8.86 | 9.04 | 9.01 |V |47963.349 | | 4.00305 | |B9IV |78011 DM | +85377 |731229 |V1229 Sco *|172643.3-421356 |EB | 8.90 | 9.08 | 8.96 |V |47921.793 | | 1.859839 | |B4III |78011 DM | +79061 |731283 |V1283 Sco |160817.0-170805 |EB | 8.58 | 8.68 | 8.61 |V |48510.607 | | 1.7587 | |A0V+K0III |79011 DM | +82378 |731290 |V1290 Sco |165001.4-413717 |EA | 7.96 | 8.07 | 8.01 |V |48704.307 | | 4.49244 |09 |O9.5IV |79006 DM | +83583 |731300 |V1300 Sco *|170458.4-383706 |EA | 8.87 | 9.03 | 9.02 : |V |48005.710 | | 29.3467 |02 : |B9IV/V |79006 DM | +80763 |739001 |alf Sco *|162924.5-262555 |LC | 0.88 | 1.16 | |V | | | | |M1.5Iab-Ib | 08953| +78401 |739004 |del Sco |160020.0-223718 |GCAS | 1.86 | 2.32 | |V | | | | | |76137 DM | +86670 |739010 |kap Sco *|174229.3-390148 |BCEP | 2.41 | 2.42 | |V | | | 0.1998303 | |B1.5III |09761 CoD | +85927 |739011 |lam Sco *|173336.5-370614 |BCEP+E: | 1.62 |( 0.06 )| |V |40000.1235 | | 0.2136966 | |B1.5IV |09953 CoD | +78265 |739016 |pi. Sco |155851.1-260651 |EB | 2.82 | 2.85 | |Hp| | | | | |HIP HIP | +80112 |739018 |sig Sco *|162111.3-253534 |BCEP | 2.86 | 2.94 | |V |44450.548 | | 0.2468390 |50 |B2III+O9.5V |00001 CoD | +6759 |740001 |R Scl *|012658.1-323236 |SRB | 9.1 | 12.9 | |p | | | 370. | |C6,5ea(Np) |00001 00002| +1236 |740002 |S Scl *|001522.3-320243 |M | 5.5 | 13.6 | |V |42345. | | 362.57 |48 |M3e-M9e(Tc) |00001 00002| +2286 |740003 |T Scl *|002912.1-375431 |M | 8.47 | 13.5 | |V |41985. | | 202.42 |49 |M3-M6e |00001 00002| +114318|740008 |Y Scl *|230905.6-300802 |SRB | 8.7 | 10.3 | |p | | | | |M4 |01188 05474| +3142 |740009 |Z Scl |003957.8-335741 |CST: | 6.68 | | |V | | | | |F8V |01378 04408| +226 |740013 |RU Scl *|000248.1-245643 |RRAB | 9.35 | 10.75 | |V |31122.839 | | 0.49333878 |12 |A5:-F8 |08636 06286| +8163 |740022 |SV Scl *|014459.7-300333 |RRC | 11.12 | 11.66 | |V |41918.555 | | 0.37760 |35 |A8-F6 |07984 00022| +516 |740023 |SW Scl |000614.2-324859 |SRC | 7.3 | 9.3 | |V |40037. | | 146. | |M1Ib-IIe-M4IIIe |09693 03389| +1182 |740038 |UY Scl *|001445.8-391436 |RRC: | 11.53 | 11.96 | |V | | | | | |00016 09930| +5916 |740040 |VV Scl *|011606.8-340856 |EB:/DM: | 8.35 | 8.50 | 8.50 |V |36498.450 | | 2.47962 | |A5p |04344 CoD | +6094 |740041 |VW Scl |011815.0-391245 |RRAB | 10.4 | 11.4 | |V |27809.381 | | 0.5109147 |13 | |04183 02834| +7398 |740042 |VX Scl |013523.7-350743 |RRAB | 11.55 | 12.32 | |V |41614.354 | | 0.637334 |14 | |07233 06561| +6888 |740048 |WZ Scl *|012843.5-334550 |DSCT | 6.52 | 6.62 | |V | | | | |F0IV |09695 CoD | +6942 |740049 |XX Scl *|012926.1-331914 |DSCT | 8.84 | 8.93 | |V | | | | |A7V |09695 CoD | +2880 |740055 |AA Scl |003628.9-302001 |LB | 8.63 | 8.99 | |V | | | | |M5III |05973 CoD | +5661 |740063 |AI Scl *|011245.4-375123 |DSCT | 5.89 | 5.98 | |V | | | | |A7III |09695 CoD | +117931|740065 |AL Scl *|235516.6-315517 |EA/DM | 6.06 | 6.33 | 6.20 |V |43698.5118 | | 2.445088 |09 *|B6V+A0V |09934 HIP | +5150 |740069 |AP Scl |010555.7-264344 |ACVO | 8.60 |( 0.03 )| |B | | | | | |68227 CoD | +5118 |740072 |AS Scl |010534.6-265718 |ELL: | 8.10 |( 0.03 )| |V | | | | | |69255 CoD | +328 |740073 |AT Scl |000411.9-300806 |ELL: | 7.08 |( 0.03 )| |V | | | | | |70022 70109| +1210 |740074 |AU Scl |001508.0-290023 |DSCTC | 8.4 |( 0.01 )| |B | | | | | |70110 CoD | +1830 |740075 |AV Scl |002312.6-310209 |ACV | 6.24 |( 0.03 u )| |U | | | | | |70022 CoD | +5193 |740076 |AW Scl |010626.6-353938 |ACV: | 6.87 |( 0.04 u )| |U | | | | | |70022 CoD | +7372 |740080 |BB Scl |013501.0-295437 |E | 7.10 | 7.17 | |V | | | | | |73055 CoD | +2164 |740081 |BC Scl *|002718.0-335255 |LB: | 8.00 | 8.10 | |Hp| | | | | |HIP HIP | +2550 |740082 |BD Scl |003225.2-245235 |EB | 10.12 | 10.39 | |Hp| | | | | |HIP HIP | +6350 |740083 |BE Scl |012133.0-290753 |EW | 10.41 | 10.84 | |Hp| | | | | |HIP HIP | +6536 |740084 |BF Scl |012401.1-373559 |SRD | 9.01 | 9.23 | |Hp| | | | | |HIP HIP | +7315 |740085 |BG Scl |013411.3-295722 |SRB | 8.72 | 8.96 | |Hp| | | | | |HIP HIP | +7323 |740086 |BH Scl |013418.4-272147 |EA | 7.942 | 8.182 | |Hp| | | | | |HIP HIP | +7330 |740087 |BI Scl *|013423.4-281412 |LB: | 6.92 | 7.01 | |Hp| | | | | |HIP HIP | +7449 |740088 |BK Scl |013558.9-362713 |LB: | 7.61 | 7.72 | |Hp| | | | | |HIP HIP | +8206 |740089 |BL Scl |014533.2-262350 |LB: | 7.68 | 7.80 | |Hp| | | | | |HIP HIP | +114196|740090 |BM Scl |230735.3-360418 |LB: | 8.28 | 8.38 | |Hp| | | | | |HIP HIP | +114206|740091 |BN Scl |230742.8-301400 |EA | 8.96 | 9.33 | |Hp| | | | | |HIP HIP | +114400|740092 |BO Scl |231007.5-335433 |LB | 8.08 | 8.22 | |Hp| | | | | |HIP HIP | +114414|740093 |BP Scl |231016.6-352356 |LB: | 8.07 | 8.19 | |Hp| | | | | |HIP HIP | +115176|740094 |BQ Scl |231942.3-312118 |LB: | 8.93 | 9.08 | |Hp| | | | | |HIP HIP | +115565|740095 |BR Scl |232432.2-252205 |LB: | 9.74 | 9.92 | |Hp| | | | | |HIP HIP | +115858|740096 |BS Scl |232825.2-252514 |DSCTC | 6.95 | 6.97 | |Hp| | | | | |HIP HIP | +116105|740097 |BT Scl |233131.1-285637 |LB: | 8.87 | 8.98 | |Hp| | | | | |HIP HIP | +118277|740098 |BU Scl |235927.9-292907 |LB: | 5.70 | 5.72 | |Hp| | | | | |HIP HIP | +6659 |740099 |BV Scl |012527.7-284656 |ACV | 8.36 |( 0.04 )| |V | | | | | |75026 CoD | +2486 |740106 |CE Scl *|003133.5-361625 |EA | 9.70 | 9.92 | 9.75 |V |48635.666 | | 2.277687 | |F3V |78011 DM | +4332 |740108 |CG Scl |005526.8-373126 |EA | 8.67 | 9.16 | |V |52227.588 | | 11.03574 | |G5V |78011 DM | +4505 |740109 |CH Scl |005743.8-261322 |EA: | 9.99 | 10.18 | |V |51881.544 | | 1.577216 | |F2V |78011 DM | +4974 |740110 |CI Scl *|010343.8-302355 |EA | 8.78 | 9.0 | 8.92 : |V |52559.740 | | 14.7104 |03 : |F5/F6V |79006 DM | +116475|740113 |CM Scl *|233603.6-323724 |EA | 8.81 | 8.93 : | 8.92 : |V |48077.581 | | 10.28857 |03 |F7V |79009 DM | +4577 |749001 |alf Scl |005836.4-292127 |SXARI | 4.31 |( 0.04 u )| |V | | | | | |73308 CoD | +2210 |749007 |eta Scl |002755.7-330026 |LB | 4.80 | 4.90 | |V | | | | |M4IIIa |04456 CoD | +4852 |749018 |sig Scl |010226.4-313307 |ACV: | 5.50 |( 0.03 u )| |V | | | | | |73308 CoD | +92202 |750001 |R Sct *|184728.9-054219 |RVA | 4.2 | 8.6 | |V |44872. | | 146.5 | |G0Iae-K2p(M3)Ibe |00001 00002| +92442 |750002 |S Sct *|185020.0-075427 |SRB | 9.63 |< 10.9 | |B | | | 148.0 | |C6,4(N3) |00444 00884| +92874 |750003 |T Sct |185527.6-081110 |SRB | 11.1 | 12.0 | |p | | | 122. : | |C7,3(N3) |00444 04231| +90225 |750006 |W Sct *|182433.5-133913 |EA/DM | 9.92 | 10.57 | 10.1 |V |20665.47 | | 10.2703 |12 *|B3n+B0 |01384 08953| +90791 |750007 |X Sct *|183119.8-130629 |DCEP | 9.50 | 10.42 | |V |34905.58 | | 4.19807 |31 |F6-G2 |00004 01918| +91366 |750008 |Y Sct *|183803.3-082208 |DCEP | 9.22 | 10.02 | |V |34947.20 | | 10.341504 |46 |F8-G3 |02309 01918| +91785 |750009 |Z Sct *|184257.3-054915 |DCEP | 9.05 | 10.16 | |V |36247.160 | | 12.901325 |40 |F8-G4 |09667 01918| +92340 |750011 |RS Sct *|184911.3-101428 |EB/SD | 9.78 | 10.91 | 10.08 |V |44437.1658 | | 0.6642384 | |F5 |09941 04231| +91697 |750013 |RU Sct *|184156.4-040638 |DCEP | 8.82 | 10.02 | |V |31174.67 | | 19.70062 |36 |F4-G5 |09288 01918| +91929 |750014 |RV Sct |184425.2-131248 |LB: | 8.7 | 9.05 | |V | | | | |C4,4(R3/NB) |04018 08953| +91275 |750016 |RX Sct *|183704.1-073612 |LB | 11. | 13. | |p | | | | |C5,5(N3) |01388 01388| +90303 |750017 |RY Sct *|182531.5-124124 |EB/GS | 9.12 | 9.72 | 9.56 |V |43342.42 | | 11.12471 | |O9.7Ibpeq |09943 08953| +90382 |750018 |RZ Sct *|182633.5-091206 |EA/GS | 7.34 | 8.84 | 7.47 |V |19261.1025 | | 15.1902079 |17 *|B3Ib |05774 05773| +91867 |750019 |SS Sct |184343.5-074352 |DCEP | 7.90 | 8.43 | |V |35315.625 | | 3.671253 |37 |F6-G0 |01386 03203| +91706 |750032 |TY Sct *|184207.9-041737 |DCEP | 10.31 | 11.25 | |V |37377.090 | | 11.05302 |47 |F7-G5 |01386 00494| +91613 |750111 |CK Sct *|184100.7-060550 |DCEP | 10.30 | 10.88 | |V |40855.25 | | 7.41522 |32 |G |02309 BD | +91738 |750113 |CM Sct *|184226.8-052027 |DCEP | 10.79 | 11.49 | |V |35111.320 | | 3.916977 |25 | | 01407| +91239 |750165 |EV Sct *|183639.6-081105 |DCEPS | 9.90 | 10.32 | |V |43292.274 | | 3.09099 |50 |G0II |09003 02855| +91342 |750166 |EW Sct *|183751.1-064749 |CEP(B) | 7.77 | 8.24 | |V | | | | |G5 |09959 BD | +90115 |750181 |FR Sct *|182322.8-124052 |ZAND | 11.6 | 12.91 | |B | | | | |M2.5epIab+B |00351 00552| +92517 |750369 |V0369 Sct *|185116.9-062111 |DSCT | 9.14 | 9.43 | |V |40393.709 | | 0.223 | |F8III |06565 BD | +90281 |750430 |V0430 Sct |182515.2-135842 |ACYG | 6.50 | 6.64 | |V | | | | |B1Ia-Oe |08070 BD | +90617 |750431 |V0431 Sct |182925.7-060437 |ACYG | 11.60 | 12.10 | |V | | | | |B1Iaeq |08433 07822| +90651 |750432 |V0432 Sct |182946.8-143455 |ACV | 5.96 |( 0.012 )| |V | | | 2.1912 | |B9p(Si-Cr-Eu) |09919 BD | +90267 |750433 |V0433 Sct |182506.2-143858 |ACYG | 8.18 |( 0.055 )| |V | | | | | |67291 BD | +91946 |750447 |V0447 Sct |184433.3-070638 |BE | 7.85 |( 0.12 )| |V | | | | | |73309 BD | +90768 |750448 |V0448 Sct |183108.6-054722 |BE | 7.42 | 7.48 | |Hp| | | | | |HIP HIP | +90907 |750449 |V0449 Sct |183237.8-154206 |ACYG: | 7.93 | 8.02 | |Hp| | | | | |HIP HIP | +90913 |750450 |V0450 Sct |183243.3-145156 |SRD | 5.49 | 5.62 | |Hp| | | | | |HIP HIP | +91001 |750451 |V0451 Sct |183350.8-142533 |ACV | 7.93 | 8.00 | |Hp| | | | | |HIP HIP | +91477 |750452 |V0452 Sct |183926.1-135047 |ACYG: | 9.87 | 10.10 | |Hp| | | | | |HIP HIP | +91728 |750453 |V0453 Sct |184217.9-072014 |LB | 6.84 | 7.01 | |Hp| | | | | |HIP HIP | +91871 |750454 |V0454 Sct |184345.6-151625 |SRB | 8.54 | 8.67 | |Hp| | | | | |HIP HIP | +92128 |750455 |V0455 Sct |184638.1-075555 |GCAS | 9.00 | 9.32 | |Hp| | | | | |HIP HIP | +92423 |750456 |V0456 Sct |185005.6-082308 |LB | 8.59 | 8.78 | |Hp| | | | | |HIP HIP | +92510 |750457 |V0457 Sct |185109.8-074756 |GCAS: | 8.49 | 8.73 | |Hp| | | | | |HIP HIP | +90552 |750493 |V0493 Sct *|182836.7-125951 |EA | 8.32 | 8.74 : | 8.52 : |V |52556.459 | | 30.811 |05 |B1Iab |79011 DM | +91726 |759004 |del Sct *|184216.4-090309 |DSCT | 4.60 | 4.79 | |V |43379.05 | | 0.1937697 | |F3IIIp |09974 BD | +77615 |760001 |R Ser *|155041.7+150801 |M | 5.16 | 14.4 | |V |45521. | | 356.41 |41 |M5IIIe-M9e |00001 00002| +75170 |760002 |S Ser *|152139.5+141853 |M | 7.0 | 14.1 | |V |45433. | | 371.84 |43 |M5e-M6e |00001 00002| +78976 |760004 |U Ser *|160717.7+095553 |M | 7.8 | 14.7 | |V |45652. | | 237.50 |48 |M3e-M6e |00001 00002| +88994 |760006 |W Ser *|180950.6-153300 |EA/GS | 8.42 | 10.20 | |V |26625.493 | | 14.15486 |20 : |F5eIb(shell) |09795 00318| +74558 |760008 |Y Ser *|151401.5-015311 |SRA | 8.43 | 9.75 | |V |27514. | | 432.7 | |M5IIIe |00867 08953| +74704 |760009 |Z Ser *|151602.7+021005 |SRA | 9.4 | 10.9 | |p |23204. | | 87.57 | |M5III |09992 08953| +75982 |760043 |VY Ser *|153101.9+014102 |RRAB | 9.73 | 10.46 | |V |31225.341 | | 0.71409384 |20 |F2-F6 |01421 06286| +78307 |760062 |AH Ser |155920.6+194647 |M | 10.0 | 13.7 | |V |36682. | | 283.5 | |M2 |01004 00002| +77830 |760067 |AN Ser *|155331.1+125740 |RRAB | 10.40 | 11.44 | |V |14708.9500 | | 0.52207162 |18 |A7-F5 |07258 02740| +74556 |760069 |AP Ser *|151400.9+095852 |RRC | 10.85 | 11.38 | |V | | | 0.341 | |A7-F3 |09037 00470| +76172 |760071 |AR Ser *|153330.8+024638 |RRAB | 11.43 | 12.33 | |V |42918.394 | | 0.5751416 |20 : |F3 |00001 08081| +77997 |760073 |AT Ser *|155540.4+075920 |RRAB | 11.00 | 11.92 | |V |41798.579 | | 0.7465465 |18 |A9-F5 |00001 00470| +74739 |760084 |BF Ser *|151628.5+162640 |CWB | 11.05 | 12.56 | |V |28744.094 | | 1.1654394 |12 |A7-F3 |05448 00470| +77027 |760085 |BG Ser |154336.8-014238 |M | 11.0 | 15. | |p |19887. | | 143. | |M6e-M8e |00455 08953| +91201 |760094 |BQ Ser *|183615.9+042354 |CEP(B) | 9.21 | 9.93 | |V |32410.50 | | 4.2709 |35 |F6III |08079 03165| +89013 |760118 |CR Ser *|181002.1-133246 |DCEP | 10.50 | 11.32 | |V |35631.53 | | 5.30141 |25 |G5 |02309 00552| +89769 |760122 |CV Ser |181907.4-113759 |E/D/WR | 9.00 | 9.63 | |V |40785.29 | | 29.7005 | |WC8+O8-O9III-IV |04466 08953| +77798 |760123 |CW Ser |155309.8+060526 |DSCT | 11.59 | 12.06 | |V |31212.280 | | 0.1891505 |40 |A/F |03506 00470| +92194 |760140 |DR Ser *|184721.0+052719 |LB | 10.4 | 13.39 | |B | | | | |C6,4(N) |00164 02368| +74584 |760173 |FI Ser *|151421.0+002211 |ACV | 7.97 | 8.09 | |V | | | 3. : | |A0p(Sr-Cr-Eu) |09870 BD | +89874 |760174 |FK Ser *|182022.8-101114 |BY: | 10.9 | 11.5 | |p | | | 5.20 | |K5Ve(Li)+K7Ve(Li)|06948 05927| +74386 |760175 |FL Ser *|151204.3+185834 |LB | 5.79 | 6.02 | |V | | | | |M4IIIab |05841 BD | +89783 |760178 |FO Ser |181921.8-153646 |LB | 8.45 | 8.74 | |V | | | | |C4,5(R6) |06059 BD | +77910 |760179 |FP Ser |155440.3+083449 |DSCTC | 6.28 |( 0.025 )| |V | | | 0.2 : | |A7Vn |06456 BD | +79086 |760180 |FQ Ser |160836.5+083647 |LB | 6.31 | 6.60 | |V | | | | |M4III |06645 BD | +91142 |760181 |FR Ser *|183536.5+045610 |ACV | 6.34 | 6.52 | |V |41460.79 | | 2.1436 | |A2p(Sr-Cr) |07221 BD | +79072 |760182 |FS Ser |160828.1+083204 |LB: | 5.68 | 5.73 | |V | | | | |M3.5IIIa |04621 BD | +74334 |760270 |LV Ser *|151134.4+083101 |ACV | 7.45 | 7.60 | |V |41060.5 | | 2.7800 | |A3p(Sr-Cr-Eu) |09011 BD | +76573 |760273 |LY Ser |153816.6+243119 |LB: | 6.70 | 6.96 | |V | | | | |M4III |08225 BD | +74975 |760279 |MQ Ser |151918.8+014556 |BY: | 4.99 | 5.11 | |V | | | | | |67295 BD | +78259 |760281 |MS Ser |155844.0+253410 |BY | 8.20 | 8.31 | |V | | | | | |67299 BD | +90858 |760284 |MV Ser |183206.9+033935 |ACV | 6.13 |( 0.03 )| |U | | | | | |67134 BD | +89681 |760287 |MY Ser |181805.9-121433 |EB | 7.33 | 7.66 | |V | | | | | |68342 BD | +78864 |760292 |NQ Ser |160553.4+104106 |RS | 8.3 |( 0.11 )| |V | | | | | |71001 BD | +89977 |760298 |NW Ser |182128.4+052609 |BE | 5.39 | 5.59 | |U | | | | | |72093 BD | +74471 |760303 |OP Ser |151303.3+093441 |LB: | 8.41 | 8.53 | |Hp| | | | | |HIP HIP | +74633 |760304 |OQ Ser |151457.7-022453 |SRB | 7.19 | 7.47 | |Hp| | | | | |HIP HIP | +74618 |760305 |OR Ser |151446.0+212006 |LB: | 8.62 | 8.78 | |Hp| | | | | |HIP HIP | +74642 |760306 |OS Ser |151503.1+180253 |SRB | 9.12 | 9.38 | |Hp| | | | | |HIP HIP | +75187 |760307 |OT Ser |152152.9+205840 |BY: | 10.03 | 10.16 | |Hp| | | | | |HIP HIP | +75269 |760308 |OU Ser *|152243.5+161541 |EW: | 8.25 | 8.43 | |Hp| | | | | |HIP HIP | +75456 |760309 |OV Ser |152455.1-021407 |LB | 7.70 | 8.16 | |Hp| | | | | |HIP HIP | +75584 |760310 |OW Ser |152630.3+100210 |LB | 7.00 | 7.14 | |Hp| | | | | |HIP HIP | +75861 |760311 |OX Ser |152944.5+161131 |SRD: | 7.27 | 7.32 | |Hp| | | | | |HIP HIP | +76091 |760312 |OY Ser |153224.2-014701 |SRB | 8.24 | 8.43 | |Hp| | | | | |HIP HIP | +76296 |760313 |OZ Ser |153508.4+004446 |LB | 8.72 | 9.05 | |Hp| | | | | |HIP HIP | +76515 |760314 |PP Ser |153737.6+215132 |LB: | 10.01 | 10.23 | |Hp| | | | | |HIP HIP | +76538 |760315 |PQ Ser |153753.8+212627 |NL: | 8.12 | 8.22 | |Hp| | | | | |HIP HIP | +76822 |760316 |PR Ser |154105.2+232107 |LB: | 9.42 | 9.62 | |Hp| | | | | |HIP HIP | +77045 |760317 |PS Ser *|154357.9+222023 |E | 8.19 | 8.37 | |Hp| | | | | |HIP HIP | +77227 |760318 |PT Ser *|154605.6-014815 |LPB | 5.36 | 5.39 | |Hp| | | | | |HIP HIP | +78705 |760319 |PU Ser |160402.1+095941 |SRB | 8.35 | 8.65 | |Hp| | | | | |HIP HIP | +78925 |760320 |PV Ser |160641.9+021925 |LB: | 9.50 | 9.68 | |Hp| | | | | |HIP HIP | +79106 |760321 |PW Ser |160848.4+015047 |LB: | 8.26 | 8.38 | |Hp| | | | | |HIP HIP | +79178 |760322 |PX Ser |160938.0+055237 |LB: | 9.33 | 9.47 | |Hp| | | | | |HIP HIP | +79277 |760323 |PY Ser |161048.3+074645 |LB | 8.33 | 8.52 | |Hp| | | | | |HIP HIP | +79712 |760324 |PZ Ser |161604.7+021808 |LB: | 9.59 | 9.74 | |Hp| | | | | |HIP HIP | +88326 |760325 |QQ Ser |180222.2-121906 |LB: | 7.51 | 7.64 | |Hp| | | | | |HIP HIP | +89753 |760326 |QR Ser |181858.7-135928 |EB: | 8.25 | 8.41 | |Hp| | | | | |HIP HIP | +89816 |760327 |QS Ser |181948.2-045742 |EA: | 7.69 | 8.25 | |Hp| | | | | |HIP HIP | +90761 |760328 |QT Ser |183104.5+043737 |ISA: | 7.77 | 7.85 | |Hp| | | | | |HIP HIP | +90990 |760329 |QU Ser |183336.1+053624 |ACV | 7.78 | 7.84 | |Hp| | | | | |HIP HIP | +91224 |760330 |QV Ser |183629.6+051719 |ACV | 7.83 | 7.88 | |Hp| | | | | |HIP HIP | +77504 |760332 |QX Ser |154932.9+252737 |E/RS | 8.66 |( 0.08 )| |V | | | | | |75011 BD | +77902 |760333 |QY Ser |155434.6+201839 |SRB | 5.42 | 5.50 | |V | | | | | |75251 BD | +77752 |760373 |V0373 Ser |155235.1-010153 |ACV | 7.96 |( 0.02 u )| |V | | | | | |77117 DM | +74702 |760379 |V0379 Ser |151559.2+004747 |BY | 7.05 | 7.08 | |Hp| | | 5.97 | |K0 |78005 DM | +77210 |760381 |V0381 Ser *|154552.4+050227 |RS | 9.15 |( 0.02 )| |V | | | 13.83 : | |K2V |78018 DM | +77408 |760382 |V0382 Ser |154809.5+013418 |BY | 7.44 |( 0.04 )| |V | | | 14.045 | |G8V |78018 DM | +77963 |760383 |V0383 Ser *|155519.1+160240 |RS | 8.68 |( 0.03 )| |V | | | 33.52 | |KV |78018 DM | +89218 |760411 |V0411 Ser |181224.7-104353 |EA | 8.40 | 8.55 | |V |52437.660 | | 34.536 |04 |O7.5If+O9I |79009 DM | +91113 |760413 |V0413 Ser *|183508.2+000235 |EA | 7.95 | 8.09 | 8.09 |V |49038.828 | | 2.259775 |09 |B3V |79160 DM | +76276 |769004 |del Ser *|153448.1+103220 |DSCTC | 4.23 |( 0.04 )| |V | | | 0.134 | |F0IV |06204 BD | +86565 |769015 |omi Ser *|174124.9-125231 |DSCTC: | 4.26 |( 0.01 )| |V | | | 0.053 | |A2V |06204 BD | +76866 |769022 |khi Ser |154147.4+125051 |ACV | 5.33 |( 0.03 )| |V |34134.06 | | 1.59584 |50 |A0p(Sr-Cr-Eu) |01435 BD | +90441 |769104 |d Ser *|182712.5+001146 |I: | 5.17 | 5.29 | |V | | | | |G0III+A6V |09899 08953| +47630 |770001 |R Sex |094242.4-080600 |LB: | 9.7 | 10.6 | |p | | | | |M5IIIe |09902 BD | +51791 |770002 |S Sex *|103456.0-002034 |M | 8.2 | 13.7 | |V |45390. | | 264.9 |50 |M2e-M5e |00001 00002| +48503 |770003 |T Sex *|095328.4+020326 |RRC | 9.81 | 10.32 | |V |41384.300 | | 0.3246980 |42 |A7II-III-F4III |07984 06286| +48316 |770006 |W Sex |095058.3-020143 |SR | 10.3 | 12.5 | |B | | | 134.0 | |C6,3e(Nbe) |01437 00002| +49217 |770008 |Y Sex *|100248.0+010540 |EW/KW | 9.83 | 10.21 | 10.17 |V |41766.288 | | 0.4198228 | *|F8 |09982 01432| +50684 |770011 |RS Sex |102102.0+021723 |BCEP: | 6.64 | 6.68 | |V | | | | |B2.5IV |01438 BD | +49989 |770012 |RT Sex |101219.2-101917 |SRB | 7.9 | 8.95 | |V | | | 96. | |M6 |05828 08953| +50581 |770015 |RW Sex *|101956.6-084156 |NL+ZZ: | 10.39 | 10.84 | |V | | | | |pec |06416 BD | +51075 |770016 |RX Sex *|102609.2+035557 |DSCTC | 6.70 |( 0.02 )| |V |41303.024 | | 0.0799 | |A3V |06417 BD | +50885 |770019 |SS Sex |102326.5-040427 |ACV | 5.94 | 5.98 | |V |44318.00 | | 4.37 | |B9p(Si-Sr-Cr) |09983 BD | +48063 |770029 |TV Sex |094751.3+041257 |LB: | 8.82 | 8.97 | |Hp| | | | | |HIP HIP | +48632 |770030 |TW Sex |095500.6-001056 |LB: | 7.91 | 8.03 | |Hp| | | | | |HIP HIP | +48923 |770031 |TX Sex |095848.8+044831 |SRB | 7.18 | 7.29 | |Hp| | | | | |HIP HIP | +48913 |770032 |TY Sex |095841.5-110426 |E: | 9.19 | 9.38 | |Hp| | | | | |HIP HIP | +49613 |770033 |TZ Sex |100733.3+005506 |SRB | 6.66 | 6.87 | |Hp| | | | | |HIP HIP | +50749 |770034 |UU Sex |102144.0+041801 |SRB | 8.74 | 9.05 | |Hp| | | | | |HIP HIP | +50827 |770035 |UV Sex |102241.8-092343 |SRB | 6.91 | 7.18 | |Hp| | | | | |HIP HIP | +52225 |770036 |UW Sex |104013.0-113415 |LB: | 9.17 | 9.33 | |Hp| | | | | |HIP HIP | +49986 |770067 |AN Sex |101217.7-034444 |RS | 9.16 | 9.32 | |V | | | 21.535 | |M1.5V |80002 HIP | NL80_2 +52634 |770093 |BP Sex *|104548.2-104249 |ACV | 7.40 | 7.44 | |Hp| | | 1.72907 | |A0p(Si) |80340 HIP | NL80_2 +51437 |779002 |bet Sex |103017.5-003813 |ACV: | 5.00 | 5.10 | |V | | | | | |69140 BD | +20390 |780003 |T Tau *|042159.4+193207 |INT | 9.3 | 13.5 | |V | | | | |F8Ve-K1IV-Ve(T) |00574 02301| +18174 |780007 |X Tau |035313.2+074614 |CST | 6.60 | | |V | | | | |F8IV |00862 BD | +27181 |780008 |Y Tau |054539.4+204142 |SRB | 6.50 | 9.2 | |V | | | 241.5 |50 |C6.5,4e(N3) |00589 08953| +27695 |780011 |RS Tau |055148.6+155255 |CST | 9.0 | | |V | | | | |F5 |00960 00578| +18972 |780015 |RW Tau *|040354.3+280734 |EA/SD | 7.98 | 11.59 | 8.09 |V |45684.204 | | 2.7688356 |14 |B8Ve+K0IV |00001 00010| +21600 |780016 |RX Tau *|043814.6+082009 |M | 9.1 | 14.8 | |V |41282. | | 331.8 |47 |M6e-M7e |00001 00002| +20387 |780017 |RY Tau *|042157.4+282636 |INT | 9.3 | 13.0 | |p | | | | |F8Ve-K1IV-Ve(T) |09990 09990| +21467 |780018 |RZ Tau *|043637.7+184518 |EW/KW | 10.08 | 10.71 | 10.66 |V |37676.567 | | 0.4156747 | |A7V+A7V |09084 00318| +27119 |780020 |ST Tau |054503.2+133435 |DCEP | 7.79 | 8.62 | |V |41761.963 | | 4.034299 |27 |F5-G5 |08300 00321| +20587 |780023 |SW Tau *|042433.0+040724 |CWB | 9.33 | 10.16 | |V |41687.770 | | 1.583584 |36 |F4-F8 |08300 03703| +21517 |780026 |SZ Tau *|043714.8+183235 |DCEPS | 6.33 | 6.75 | |V |34628.57 | | 3.14873 |45 |F5Ib-F9.5Ib |00001 00021| +22578 |780027 |TT Tau *|045131.3+283137 |SRB | 10.2 | 12.2 | |p | | | 166.5 | |C4,2-C7,4(N3) |00373 00021| +27135 |780028 |TU Tau |054513.7+242512 |SRB | 5.9 | 9.2 | |V | | | 190. : | |C5,4(N3)+A2III-V |00589 BD | +19332 |780029 |TV Tau |040833.9+265035 |SRA | 9.3 | 12.2 | |V |25870. | | 120. |50 |M6 |00373 00002| +19296 |780031 |TX Tau |040811.8+263554 |SRA | 10.5 | 12.3 | |V |19384. | | 40.1 |50 |M5 |00360 00002| +21334 |780032 |TY Tau *|043443.3+151554 |EA | 11.5 | 12.0 | |V |21192.395 | | 1.0773555 |05 |K0V |00960 00318| +26754 |780056 |AB Tau |054102.5+280623 |SRA | 10.4 | 12.0 | |p |37340. | | 142.0 | |M5-M7 |08044 08953| +18165 |780089 |BL Tau |035301.6+201229 |SR: | 10.0 | 12.0 | |p | | | | |M4-M5 |00193 08953| +20160 |780093 |BP Tau *|041915.8+290627 |INT(YY) | 10.7 | 13.6 | |B | | | | |K3Ve-M0Ve(T) |05469 00598| +17851 |780098 |BU Tau *|034911.2+240812 |GCAS | 4.77 | 5.50 | |V | | | | |B8Vne |10005 08953| +24663 |780105 |CD Tau *|051731.1+200755 |EA/D | 6.77 | 7.34 | 7.31 |V |41619.4075 | | 3.435137 |08 *|F7V+F5IV |00001 08953| +25945 |780106 |CE Tau |053212.8+183539 |SRC | 4.23 | 4.54 | |V | | | 165. | |M2Iab-Ib |00615 BD | +26295 |780117 |CQ Tau |053558.5+244454 |INSA | 8.7 | 12.25 | |B | | | | |A1-F5IVe |05471 05471| +20777 |780129 |DF Tau |042702.8+254222 |INST | 9.2 | 15.0 | |p | | | | |M0-3Ve(T) |05785 10000| +27183 |780164 |EU Tau |054540.5+183925 |DCEPS | 7.90 | 8.25 | |V |41324.22 | | 2.10248 |40 |G5 |08637 02351| +19171 |780201 |GS Tau *|040636.4+273600 |ACV | 5.15 | 5.22 | |V |21944.74 | | 7.227424 |50 |B9p(Si) |07320 BD | +21604 |780221 |HU Tau *|043815.8+204105 |EA/SD: | 5.85 | 6.68 | 5.91 |V |41275.3219 | | 2.0562997 |15 *|B8V |10045 08953| +19513 |780230 |IM Tau *|041049.9+262851 |DSCT | 5.37 | 5.58 | |V |44250.3492 | | 0.145067 | |F2IV-V |10021 BD | +20097 |780410 |V0410 Tau *|041831.1+282716 |INSB | 11.3 | 12.4 | |B | | | | |K3Ve-K7Ve |05796 10000| +17962 |780471 |V0471 Tau *|035025.0+171447 |EA/D/RS+X | 9.40 | 9.71 | |V |45612.38065 | | 0.52118301 |06 |K0Vea+DA |10059 05120| +22402 |780473 |V0473 Tau *|044916.0+293417 |ACV | 7.22 | 7.36 | |V |38466.729 | | 1.3900 | |B9p(Si-Cr) |08022 BD | +18265 |780479 |V0479 Tau *|035427.2+051029 |DSCTC | 7.39 | 7.46 | |V | | | 0.076 | |F1/3III-IV |05932 BD | +22565 |780480 |V0480 Tau *|045122.5+185024 |DSCTC | 5.09 | 5.13 | |V | | | 0.042 | |A7IV/V-A9IIIn |05830 BD | +20219 |780483 |V0483 Tau *|041957.7+140207 |DSCTC | 5.55 | 5.59 | |V | | | 0.054 | |F0IV |08569 BD | +16859 |780486 |V0486 Tau *|033658.0+231240 |ACV | 6.65 | 6.78 | |V |41252.12 | | 10.61 : | |A0p(Cr-Sr-Eu) |07221 BD | +27808 |780593 |V0593 Tau |055306.1+262644 |GCAS | 8.13 |( 0.22 )| |V | | | | |B3Ve |05522 BD | +20261 |780696 |V0696 Tau *|042036.3+150544 |DSCTC | 5.22 | 5.28 | |V | | | 0.036 | |A9/F0IV-V |06838 BD | +16846 |780711 |V0711 Tau *|033647.3+003516 |RS | 5.71 | 5.94 | |V |40000.58 | | 2.840612 | |G5IV/Vea+K1IVea |10071 BD | +20186 |780724 |V0724 Tau |041936.7+214625 |ACV | 5.36 | 5.40 | |V |42299.51 | | 1.56896 |40 |A0p(Si) |08824 BD | +26566 |780725 |V0725 Tau *|053854.6+261857 |XNGP | 9.4 | 10.1 | |p | | | | |O9.7IIIe |10075 10074| +26964 |780731 |V0731 Tau |054319.5+231216 |GCAS | 5.98 | 6.27 | |V | | | | |B2Ve-B5Vpe |10080 BD | +18033 |780766 |V0766 Tau |035115.9+130246 |ACV | 6.30 |( 0.065 )| |V |43849.27 | | 2.53465 |50 |B9p(Si) |04013 BD | +19762 |780773 |V0773 Tau *|041412.9+281212 |INB+BY | 10.59 | 10.95 | |V | | | | |K2ea |08567 10000| +19859 |780774 |V0774 Tau *|041528.8+061113 |BY: | 6.28 | 6.37 | |V | | | | |G0IV-V |04443 BD | +20400 |780775 |V0775 Tau *|042203.5+140438 |DSCTC | 5.72 |( 0.01 )| |V | | | 0.0625 | |A3m |08569 BD | +20648 |780776 |V0776 Tau *|042529.4+175541 |ACV: | 4.29 | 4.32 | |V |40501.35 | | 57.25 |50 |A2/3IV/Vm |04447 BD | +20713 |780777 |V0777 Tau *|042620.7+153706 |DSCTC | 4.73 |( 0.02 )| |B | | | 0.16 | |A8Vn/F0V |08569 BD | +27562 |780781 |V0781 Tau *|055013.1+265743 |EW/KW | 8.9 | 9.3 | 9.3 |p |43874.954 | | 0.3449100 | |G0 |10085 08576| +22394 |780808 |V0808 Tau *|044913.0+244810 |RS | 9.52 |( 0.08 )| |V |44272.77 | | 6.82 |50 |K3V+K3V |08801 BD | +27743 |780809 |V0809 Tau |055222.3+141018 |ACV | 5.59 |( 0.02 )| |V |43859.00 | | 2.6541 |50 |B9p(Si-Eu-Cr) |04013 BD | +18485 |780817 |V0817 Tau |035703.8+231032 |ELL | 6.06 |( 0.05 )| |V | | | | | |67318 BD | +20019 |780818 |V0818 Tau |041738.9+165652 |E/RS | 8.30 |( 0.15 )| |V | | | | | |67321 BD | +21482 |780833 |V0833 Tau |043648.2+270756 |BY | 9.1 | 9.9 | |p | | | | | |67335 BD | +21818 |780834 |V0834 Tau |044118.9+205406 |BY | 7.94 | 8.33 | |V | | | | | |67337 BD | +16879 |780837 |V0837 Tau |033711.0+255928 |BY: | 8.2 |( 0.09 )| |V | | | | | |68234 BD | +19855 |780891 |V0891 Tau |041525.8+061159 |BY | 6.92 | 7.00 | |V | | | | | |68256 BD | +20130 |780893 |V0893 Tau |041858.0+195424 |BY | 8.63 |( 0.029 )| |V | | | | | |68259 BD | +20553 |780895 |V0895 Tau |042412.5+144530 |BY | 7.62 |( 0.032 )| |V | | | | | |68259 BD | +20577 |780897 |V0897 Tau |042428.3+165310 |BY | 7.80 |( 0.042 )| |V | | | | | |68259 BD | +20719 |780906 |V0906 Tau |042624.6+165112 |BY | 7.98 | 8.06 | |V | | | | | |68259 BD | +20741 |780911 |V0911 Tau |042640.1+164449 |BY | 8.11 |( 0.030 )| |V | | | | | |68259 BD | +20890 |780918 |V0918 Tau |042837.2+194427 |BY | 8.6 |( 0.044 )| |V | | | | | |68259 BD | +20899 |780920 |V0920 Tau |042848.3+171708 |BY | 7.84 |( 0.050 )| |V | | | | | |68259 BD | +20951 |780921 |V0921 Tau |042931.6+175336 |BY | 8.96 | 8.99 | |V | | | | | |68259 BD | +21317 |780938 |V0938 Tau |043435.3+153017 |BY | 7.94 |( 0.035 )| |V | | | | | |68259 BD | +26064 |780960 |V0960 Tau |053331.6+183225 |GCAS | 5.53 | 5.69 | |V | | | | | |68293 BD | +17608 |780971 |V0971 Tau |034619.6+235654 |BCEP | 4.18 |( 0.01 )| |V | | | | | |69264 BD | +19934 |780984 |V0984 Tau |041633.5+215427 |BY | 9.15 |( 0.04 )| |V | | | | | |69265 BD | +20082 |780985 |V0985 Tau |041819.3+160518 |BY | 9.60 |( 0.02 )| |V | | | | | |69266 BD | +20237 |780986 |V0986 Tau |042013.0+191401 |BY | 7.47 |( 0.05 )| |V | | | | | |69266 BD | +20388 |780987 |V0987 Tau |042158.9+281807 |INT | 8.98 | 9.10 | |V | | | | | |69268 BD | +20482 |780988 |V0988 Tau |042322.9+193931 |BY | 9.40 |( 0.05 )| |V | | | | | |69266 BD | +20485 |780989 |V0989 Tau |042325.3+154547 |BY | 10.49 |( 0.03 )| |V | | | | | |69266 BD | +20563 |780990 |V0990 Tau |042416.9+180011 |BY | 9.99 |( 0.03 )| |V | | | | | |69266 BD | +20815 |780993 |V0993 Tau |042735.9+153521 |BY | 7.42 |( 0.02 )| |V | | | | | |69266 BD | +21543 |780998 |V0998 Tau |043732.0+150847 |BY | 7.54 |( 0.03 )| |V | | | | | |69266 BD | +20171 |781024 |V1024 Tau |041926.1+210832 |ACV | 5.02 |( 0.03 )| |U | | | | | |70123 BD | +22510 |781060 |V1060 Tau |045037.7+154750 |LB: | 11.2 | 12.18 | |B | | | | | |71034 BD | +23151 |781061 |V1061 Tau |045852.8+242945 |EB/KE | 7.95 | 8.45 : | |V | | | | | |71038 BD | +21768 |781080 |V1080 Tau |044032.6+242631 |INA | 10.29 | 10.56 | |V | | | | | |72019 BD | +22013 |781081 |V1081 Tau |044354.0+225640 |E | 6.9 | 7.3 | |V | | | | | |72162 72162| +17076 |781082 |V1082 Tau |033933.6+182306 |RS | 8.19 |( 0.05 )| |V | | | | | |73005 BD | +19877 |781099 |V1099 Tau |041546.3+152403 |ELL: | 6.31 |( 0.02 )| |V | | | | | |73326 BD | +21459 |781116 |V1116 Tau |043629.1+232027 |DSCTC: | 6.02 |( 0.01 )| |V | | | | | |73326 BD | +25278 |781119 |V1119 Tau |052425.5+172301 |BY | 4.98 | 5.02 | |V | | | | | |73242 BD | +15857 |781120 |V1120 Tau |032415.4+115140 |LB: | 8.88 | 9.00 | |Hp| | | | | |HIP HIP | +15858 |781121 |V1121 Tau |032415.5+012124 |EB: | 8.46 | 8.89 | |Hp| | | | | |HIP HIP | +16593 |781122 |V1122 Tau |033335.9+144043 |LB: | 7.51 | 7.61 | |Hp| | | | | |HIP HIP | +16737 |781124 |V1124 Tau |033518.4+185411 |SRD: | 7.59 | 7.70 | |Hp| | | | | |HIP HIP | +17024 |781125 |V1125 Tau |033858.8+004748 |E | 8.77 | 9.03 | |Hp| | | | | |HIP HIP | +17040 |781126 |V1126 Tau |033910.9+110524 |E: | 10.47 | 10.60 | |Hp| | | | | |HIP HIP | +17379 |781127 |V1127 Tau |034318.1+124738 |SRB | 8.40 | 8.91 | |Hp| | | | | |HIP HIP | +17878 |781128 |V1128 Tau |034927.8+125444 |EW | 9.65 | 10.24 | |Hp| | | | | |HIP HIP | +17873 |781129 |V1129 Tau |034927.0+110840 |BY: | 7.75 | 7.85 | |Hp| | | | | |HIP HIP | +17988 |781130 |V1130 Tau |035041.9+013350 |EB | 6.65 | 7.04 | |Hp| | | | | |HIP HIP | +18474 |781131 |V1131 Tau |035653.1+153213 |DSCTC | 8.82 | 8.89 | |Hp| | | | | |HIP HIP | +18581 |781132 |V1132 Tau |035837.3+110139 |LB: | 7.18 | 7.29 | |Hp| | | | | |HIP HIP | +18957 |781133 |V1133 Tau |040344.6+052608 |LPB: | 5.28 | 5.32 | |Hp| | | | | |HIP HIP | +18996 |781134 |V1134 Tau |040411.9+252357 |LB: | 8.63 | 8.73 | |Hp| | | | | |HIP HIP | +19137 |781135 |V1135 Tau |040604.7+244356 |SRB | 8.78 | 8.93 | |Hp| | | | | |HIP HIP | +19591 |781136 |V1136 Tau |041156.2+233811 |RS: | 9.49 | 9.58 | |Hp| | | | | |HIP HIP | +19672 |781137 |V1137 Tau |041251.2+222448 |ACV: | 6.18 | 6.22 | |Hp| | | | | |HIP HIP | +19714 |781138 |V1138 Tau |041324.4+035408 |SRB | 8.10 | 8.27 | |Hp| | | | | |HIP HIP | +19853 |781139 |V1139 Tau |041524.1+240443 |LB: | 7.36 | 7.71 | |Hp| | | | | |HIP HIP | +20262 |781140 |V1140 Tau |042037.8+285331 |ACV: | 7.97 | 8.02 | |Hp| | | | | |HIP HIP | +20493 |781141 |V1141 Tau |042332.4+205855 |LPB | 6.00 | 6.02 | |Hp| | | | | |HIP HIP | +20513 |781142 |V1142 Tau |042344.2+225753 |LB: | 6.97 | 7.07 | |Hp| | | | | |HIP HIP | +20715 |781143 |V1143 Tau |042621.1+083525 |LPB | 6.06 | 6.09 | |Hp| | | | | |HIP HIP | +20963 |781144 |V1144 Tau *|042942.9+103119 |LPB | 6.80 | 6.82 | |Hp| | | | | |HIP HIP | +20958 |781145 |V1145 Tau |042938.9+050951 |SRC: | 6.87 | 7.07 | |Hp| | | | | |HIP HIP | +21082 |781146 |V1146 Tau |043107.2+150618 |LB: | 6.33 | 6.36 | |Hp| | | | | |HIP HIP | +21179 |781147 |V1147 Tau |043225.6+130648 |BY: | 10.96 | 11.13 | |Hp| | | | | |HIP HIP | +21575 |781148 |V1148 Tau *|043754.3+071903 |ELL: | 6.98 | 7.00 | |Hp| | | | | |HIP HIP | +21621 |781149 |V1149 Tau |043831.1+184401 |EA | 8.49 | 8.65 | |Hp| | | | | |HIP HIP | +21626 |781150 |V1150 Tau |043836.2+081031 |BE | 7.59 | 7.68 | |Hp| | | | | |HIP HIP | +21633 |781151 |V1151 Tau |043846.2+064913 |LB: | 7.86 | 7.98 | |Hp| | | | | |HIP HIP | +21810 |781152 |V1152 Tau *|044106.1+063753 |SRB: | 8.69 | 9.18 | |Hp| | | | | |HIP HIP | +23436 |781153 |V1153 Tau |050215.9+240145 |BE | 8.21 | 8.56 | |Hp| | | | | |HIP HIP | +23699 |781154 |V1154 Tau |050537.7+230340 |E: | 6.71 | 6.81 | |Hp| | | | | |HIP HIP | +23883 |781155 |V1155 Tau |050755.4+214217 |BE | 5.82 | 5.96 | |Hp| | | | | |HIP HIP | +24019 |781156 |V1156 Tau |050945.1+280150 |E: | 6.00 | 6.10 | |Hp| | | | | |HIP HIP | +24103 |781157 |V1157 Tau |051040.0+172625 |LPB | 7.90 | 7.94 | |Hp| | | | | |HIP HIP | +24386 |781158 |V1158 Tau |051354.0+172712 |SRB: | 8.89 | 9.35 | |Hp| | | | | |HIP HIP | +24906 |781159 |V1159 Tau |052018.3+193442 |ACV | 6.63 | 6.66 | |Hp| | | | | |HIP HIP | +25779 |781160 |V1160 Tau |053015.4+223225 |LB: | 7.66 | 7.81 | |Hp| | | | | |HIP HIP | +26282 |781161 |V1161 Tau *|053546.4+184544 |LB: | 9.50 | 9.78 | |Hp| | | | | |HIP HIP | +26449 |781162 |V1162 Tau |053738.2+230851 |BE: | 8.88 | 9.07 | |Hp| | | | | |HIP HIP | +26574 |781163 |V1163 Tau |053858.0+282737 |BE | 8.40 | 8.53 | |Hp| | | | | |HIP HIP | +26708 |781164 |V1164 Tau |054032.5+272634 |ELL: | 8.30 | 8.51 | |Hp| | | | | |HIP HIP | +26998 |781165 |V1165 Tau |054339.1+252622 |BE: | 6.78 | 6.86 | |Hp| | | | | |HIP HIP | +27012 |781166 |V1166 Tau |054346.7+264909 |E: | 9.41 | 9.58 | |Hp| | | | | |HIP HIP | +27850 |781167 |V1167 Tau |055331.1+254432 |BE | 8.36 | 8.62 | |Hp| | | | | |HIP HIP | +17704 |781229 |V1229 Tau *|034729.4+241718 |EA | 6.84 | 6.94 | 6.88 |V |52903.5981 | | 2.461134 | |A0V |78058 DM | +20056 |781232 |V1232 Tau |041801.8+181525 |RS | 7.53 |( 0.05 )| |V | | | 8.968 | |G4V+G8V |78018 DM | +20686 |781233 |V1233 Tau |042551.7+185151 |BY | 8.07 |( 0.02 )| |V | | | 9.16 | |G3V+G6V |78018 DM | +17826 |781243 |V1243 Tau *|034851.6+114232 |GDOR | 8.60 |( 0.08 )| |B | | | 0.44316 | |F2V |79219 DM | +18263 |781289 |V1289 Tau |035425.2+242136 |RS | 10.9 |( 0.12 * )| |V | | | 2.2386 | | G5IV |80021 HIP | NL80_1 +19176 |781300 |V1300 Tau |040638.8+201811 |IB | 9.62 | 9.75 | |V | | | 1.0790 | | G1 |80154 HIP | NL80_1 +19786 |781309 |V1309 Tau |041427.3+122607 |BY | 8.06 |( 0.02 )| |V | | | 8.65 | | G0 |80129 HIP | NL80_1 +19793 |781310 |V1310 Tau |041432.3+233430 |BY | 8.08 |( 0.03 )| |V | | | 8.48 | | G3V |80129 HIP | NL80_1 +21852 |781329 |V1329 Tau |044155.1+265849 |IB | 9.61 | 9.69 | |V | | | 0.6000 | | G2V |80154 HIP | NL80_1 +23721 |781357 |V1357 Tau |050559.7+280717 |IB | 9.93 |( 0.06 * )| |V | | | 0.5239 | | G0 |80021 HIP | NL80_1 +25848 |781368 |V1368 Tau |053104.4+231235 |IB | 9.23 | 9.38 | |Hp| | | 0.9426 | | G0 |80021 HIP | NL80_1 +26162 |781371 |V1371 Tau |053439.1+280304 |BE | 8.00 | 8.20 | |V | | | 312. | | B8e |80002 HIP | NL80_1 +21421 |789001 |alf Tau *|043555.2+163034 |LB: | 0.75 | 0.95 | |V | | | | |K5III |03000 BD | +26451 |789006 |zet Tau *|053738.7+210833 |E/GS+GCAS | 2.88 | 3.17 | 3.05 |V |44936.781 | | 132.9735 | |B1IVe+G8III: |10086 BD | +18724 |789011 |lam Tau *|040040.8+122925 |EA/DM | 3.37 | 3.91 | 3.54 |V |21506.8506 | | 3.9529478 |15 *|B3V+A4IV |08608 08953| +16083 |789014 |ksi Tau |032710.2+094358 |E: | 3.70 | 3.79 | |Hp| | | | | |HIP HIP | +21273 |789017 |rho Tau *|043350.9+145040 |DSCTC | 4.90 |( 0.01 )| |B | | | 0.067 | |A8Vn |08569 BD | +20711 |789020 |ups Tau *|042618.5+224849 |DSCTC | 4.28 | 4.31 | |V | | | 0.1484 |50 |A8Vn |10091 BD | +100137|790007 |X Tel |201847.2-523704 |M | 10.4 |< 14.0 | |V |52973. | | 309. | |M5e-M8e |N0002 CoD | +89739 |790011 |RS Tel *|181851.2-463253 |RCB | 9.0 | 15.34 | |V | | | | |C(R4) |00017 CoD | +95676 |790023 |SW Tel |192739.6-455231 |M | 10.4 | 14.3 | |V |48719. | | 228.2 | |M4e |00001 CoD | +93844 |790089 |BL Tel *|190638.1-512503 |EA+SRD | 7.09 | 9.41 |( 0.1 )|V |45589. | | 778.3 |10 *|F5Iab/b+M |N0032 CoD | +97756 |790215 |HO Tel *|195158.9-465142 |EA | 8.22 | 8.73 | 8.67 |V |52202.506 | | 1.613101 |12 |A7III(m) |00001 CoD | +100414|790236 |IS Tel *|202142.7-494855 |EA | 9.67 | 10.40 | 9.82 |V |52985.526 | | 1.152800 |17 |F5V |00001 06561| +93476 |790282 |MT Tel *|190212.3-463912 |RRC | 8.68 | 9.28 | |V |48500.270 | | 0.3169 |35 |A0w |HIP 04001| +90099 |790320 |PV Tel *|182314.7-563744 |PVTEL | 9.24 | 9.40 | |V | | | | |B5p(He) |04509 CPD | +96178 |790321 |PW Tel |193321.6-451618 |ACV | 5.61 |( 0.011 )| |V | | | 2.9213 | |A0p(Cr-Eu-Sr) |09919 CoD | +92680 |790324 |PZ Tel |185305.9-501050 |BY | 8.33 | 8.63 | |V | | | 0.94088 | |K0Vp |HIP CoD | +96721 |790325 |QQ Tel |193941.8-451643 |DSCTC | 6.53 |( 0.050 )| |B | | | 0.065 | |F2/3IV/III |67245 CoD | +89605 |790330 |QV Tel |181707.5-560124 |BE | 5.31 | 5.38 | |Hp| | | | |B3IIIe |HIP HIP | +90026 |790331 |QW Tel *|182209.9-553351 |EW | 7.55 | 7.69 | 7.67 |V |52445.656 | | 0.411930 | |F8/G0 |00001 HIP | +90108 |790332 |QX Tel |182317.9-532536 |SRD: | 8.62 | 8.78 | |Hp| | | 28.3 | |K0III |00001 HIP | +91578 |790333 |QY Tel *|184029.1-454452 |EA | 9.58 | 10.07 | 10.06 |V |51957.064 | | 2.488926 |12 |F8 |N0002 HIP | +91832 |790334 |QZ Tel *|184323.8-525142 |EB | 8.07 | 8.27 | 8.27 |V |52831.746 | | 1.0309913 | |A2V |00001 HIP | +93092 |790335 |V0335 Tel |185750.4-464411 |LB: | 8.06 | 8.17 | |Hp| | | | |M2/M3III |HIP HIP | +94702 |790336 |V0336 Tel |191612.3-471628 |BY: | 11.69 | 12.03 | |Hp| | | | |M |HIP HIP | +95578 |790337 |V0337 Tel *|192627.7-454527 |EW | 9.90 | 10.21 | 10.20 |V |51963.442 | | 0.423389 | |F5V |N0002 HIP | +95635 |790338 |V0338 Tel |192711.8-562956 |LB | 8.47 | 8.63 | |Hp| | | | |M0III |HIP HIP | +96065 |790339 |V0339 Tel |193157.1-540955 |SRS | 6.80 | 7.02 | |V | | | 24.20 | |M4III |00001 HIP | +96875 |790340 |V0340 Tel *|194134.1-464613 |BY: | 9.65 | 9.84 | |V | | | 1.71966 | |K0V |HIP HIP | +97032 |790341 |V0341 Tel |194313.7-561537 |LB | 7.19 | 7.56 | |Hp| | | | |M5/M6III |HIP HIP | +97481 |790342 |V0342 Tel |194847.1-493130 |LB | 7.84 | 7.97 | |Hp| | | | |M3III |HIP HIP | +97583 |790343 |V0343 Tel *|195003.5-514646 |EB | 9.11 | 9.44 | 9.40 |V |51874.858 | | 0.875460 | |A2/A3V |N0002 HIP | +97935 |790344 |V0344 Tel |195413.5-492742 |SRS | 8.6 | 9.0 | |V | | | 27.4 | |M6III |N0002 HIP | +98500 |790345 |V0345 Tel |200040.1-493631 |LB | 6.62 | 6.72 | |Hp| | | | |M4III |HIP HIP | +98815 |790346 |V0346 Tel |200403.3-511245 |LB | 8.96 | 9.55 | |V | | | | |M4/M5III |00001 HIP | +100665|790347 |V0347 Tel |202437.5-495335 |LB | 8.36 | 8.68 | |Hp| | | | |M3III |HIP HIP | +100921|790348 |V0348 Tel |202741.2-494601 |LB: | 8.49 | 8.64 | |Hp| | | | |M3III |HIP HIP | +97590 |790349 |V0349 Tel *|195008.4-503609 |GDOR: | 7.60 | 7.73 | |Hp| | | 0.6953 | |F0V |75029 CoD | +100090|790350 |V0350 Tel |201819.3-510513 |ACV | 7.55 |( 0.03 U )| |V | | | 4.45 | |B9CrEuSr |75026 CoD | +92412 |790353 |V0353 Tel |184957.3-520719 |ELL:+DSCTC| 7.13 | 7.20 | |Hp| | | 3.2 | |A3III/IV |78024 DM | +91928 |790359 |V0359 Tel *|184423.7-465727 |EA | 8.54 | 8.83 | 8.66 |V |48315.454 | | 19.2449 |02 : |B9V |79193 DM | +92754 |790362 |V0362 Tel *|185404.9-513058 |EA | 9.68 | 9.96 | 9.96 : |V |48017.991 | | 1.21125 |08 |G3V |79006 DM | +12193 |800001 |R Tri *|023702.3+341551 |M | 5.4 | 12.6 | |V |45215. | | 266.9 |44 |M4IIIe-M8e |00001 00002| +11423 |800002 |S Tri *|022719.5+324423 |M | 8.9 |< 12.4 | |V |35850. | | 241.6 |48 |M2e |00001 06286| +12557 |800006 |W Tri |024130.6+343058 |SRC | 8.5 | 9.7 | |p | | | 108. | |M5II |00634 03746| +9383 |800007 |X Tri *|020033.7+275319 |EA/SD | 8.55 | 11.27 | 9.07 |V |42502.721 | | 0.9715352 |18 |A5V+G0V |00001 10044| +10280 |800033 |TZ Tri *|021222.3+301811 |ELL/RS | 5.19 |( 0.09 )| |V |43729.8 | | 14.732 | |G5III+G5III: |08538 BD | +9630 |800049 |XX Tri |020347.1+353529 |RS | 8.1 | 8.7 | |V | | | | | |71008 BD | +7289 |800053 |YZ Tri |013354.4+353630 |SRB | 6.90 | 7.02 | |Hp| | | | | |HIP HIP | +8665 |800054 |ZZ Tri |015137.9+334646 |LB: | 8.75 | 8.85 | |Hp| | | | | |HIP HIP | +9171 |800055 |AA Tri |015803.8+310804 |SRB | 6.56 | 6.74 | |Hp| | | | | |HIP HIP | +10077 |800056 |AB Tri |020937.4+370659 |EB: | 8.28 | 8.38 | |Hp| | | | | |HIP HIP | +10319 |800057 |AC Tri |021253.6+351920 |LB: | 9.15 | 9.33 | |Hp| | | | | |HIP HIP | +10714 |800058 |AD Tri |021757.3+290026 |LB: | 6.70 | 6.78 | |Hp| | | | | |HIP HIP | +11272 |800059 |AE Tri |022510.0+335200 |SRB: | 6.96 | 7.14 | |Hp| | | | | |HIP HIP | +11421 |800060 |AF Tri |022714.9+365802 |LB | 7.30 | 7.67 | |Hp| | | | | |HIP HIP | +11437 |800061 |AG Tri |022729.3+305825 |BY: | 10.19 | 10.29 | |Hp| | | | | |HIP HIP | +12465 |800062 |AH Tri |024031.3+360021 |SRD | 8.24 | 8.44 | |Hp| | | | | |HIP HIP | +9644 |800072 |AS Tri |020358.2+295418 |DSCTC | 8.25 |( 0.09 )| |V | | | 0.08 | |F0 |78033 DM | +8796 |809001 |alf Tri *|015304.9+293444 |ELL | 3.52 | 3.53 | |Hp| | | | | |HIP HIP | +75018 |810001 |R TrA *|151945.7-662946 |DCEP | 6.33 | 7.00 | |V |40838.21 | | 3.389287 |30 |F6Ib/II-G0 |02309 08667| +78476 |810002 |S TrA |160110.7-634636 |DCEP | 5.95 | 6.81 | |V |40734.45 | | 6.32344 |28 |F6II-G2 |02309 08953| +74192 |810003 |T TrA |150936.5-684317 |CST: | 6.84 | | |V | | | | |B9IV | CPD | +78978 |810004 |U TrA *|160719.0-625438 |CEP(B) | 7.30 | 8.29 | |V |43267.14 | | 2.568423 |34 |F5-F8Ib/II |09918 08953| +82392 |810005 |V TrA |165006.6-674658 |LB | 10.0 | 10.7 | |p | | | | |C5,5(Nb) |00016 09611| +74582 |810007 |X TrA |151419.2-700446 |LB | 5.02 | 6.4 | |V | | | | |C5,5(Nb) |00624 03470| +81157 |810012 |RT TrA |163430.9-630801 |CWB | 9.43 | 10.18 | |V |41922.54 | | 1.9461124 |40 |F8:(R)-G2I-II |00001 06286| +83244 |810015 |RW TrA *|170046.7-663950 |RRAB | 10.89 | 11.66 | |V |41489.292 | | 0.3740438 |20 |F5-F6 |00001 06286| +73152 |810157 |EN TrA *|145700.7-685023 |CEP: | 8.7 | 9.1 | |p |41785.0 | | 36.54 |32 |F2Ib |03939 09423| +79212 |810160 |EQ TrA *|161000.0-660930 |EA/D | 8.9 | 9.5 | 9.0 |p |41100.006 | | 2.709149 |20 *|F3V |00001 08953| +79079 |810260 |LL TrA |160833.0-625855 |ACV | 6.88 |( 0.028 )| |V | | | 4.41 | |B9p(Si) |08415 CPD | +82129 |810264 |LP TrA *|164640.0-670635 |ACV | 5.12 |( 0.033 )| |V | | | 3.76 | |A0p(Si) |08415 CPD | +75961 |810266 |LR TrA |153049.8-653558 |DCEPS | 7.73 | 7.92 | |V | | | | | |67346 CPD | +75689 |810267 |LS TrA |152745.7-630114 |RS | 7.30 | 7.53 | |V | | | | | |69011 CPD | +78689 |810268 |LT TrA |160349.3-624136 |WR | 10.2 |( 0.13 )| |V | | | | | |69064 69224| +81254 |810270 |LV TrA |163545.8-670737 |RCB: | 8.28 | 8.35 | |V | | | | | |70066 70133| +74077 |810271 |LW TrA |150816.7-685950 |LB: | 8.55 | 8.68 | |Hp| | | | | |HIP HIP | +75665 |810272 |LX TrA |152733.1-643153 |SRD: | 5.81 | 5.83 | |Hp| | | | | |HIP HIP | +76279 |810273 |LY TrA |153450.3-685321 |LB | 7.10 | 7.29 | |V | | | | | |HIP HIP | +76454 |810274 |LZ TrA |153652.7-672905 |LPB | 8.05 | 8.08 | |Hp| | | | | |HIP HIP | +78034 |810275 |MM TrA |155601.7-660909 |BE | 10.45 | 10.60 | |Hp| | | | | |HIP HIP | +78231 |810276 |MN TrA |155828.3-620338 |EA | 8.50 | 9.00 | |Hp| | | | | |HIP HIP | +78491 |810277 |MO TrA |160125.3-665055 |SRB | 7.16 | 7.42 | |Hp| | | | | |HIP HIP | +78526 |810278 |MP TrA |160153.0-642401 |E: | 7.76 | 7.87 | |Hp| | | | | |HIP HIP | +78682 |810279 |MQ TrA |160344.5-602955 |BE | 6.86 | 7.25 | |Hp| | | | | |HIP HIP | +80395 |810280 |MR TrA |162436.3-654318 |ACV | 8.71 | 8.82 | |Hp| | | | | |HIP HIP | +80707 |810281 |MS TrA |162841.3-630836 |ACV: | 8.86 | 8.96 | |Hp| | | | | |HIP HIP | +80978 |810282 |MT TrA |163211.7-694556 |LB: | 8.44 | 8.55 | |Hp| | | | | |HIP HIP | +81554 |810283 |MU TrA |163921.1-701007 |ACV | 9.27 | 9.34 | |Hp| | | | | |HIP HIP | +81753 |810284 |MV TrA |164153.5-632410 |SRD | 9.01 | 9.20 | |Hp| | | | | |HIP HIP | +81968 |810285 |MW TrA |164440.5-684817 |LB: | 8.60 | 8.71 | |Hp| | | | | |HIP HIP | +83150 |810286 |MX TrA |165934.0-691605 |ACV | 5.75 | 5.77 | |Hp| | | | | |HIP HIP | +76254 |810288 |MZ TrA *|153434.1-650611 |EA | 8.57 | 8.76 | 8.73 |V |48127.076 | | 4.73065 | |A4V |78011 DM | +80022 |810290 |NO TrA *|162004.5-695748 |EA | 8.67 | 8.86 | 8.85 |V |48022.005 | | 5.66215 | |F6V |78011 DM | +81039 |810291 |NP TrA |163305.2-605413 |DSCTC | 7.88 |( 0.03 b )| |V | | | 0.0613 | |A3III |78037 DM | +80645 |819009 |iot TrA |162757.3-640329 |GDOR: | 5.30 | 5.42 | |Hp| | | | | |75029 CPD | +111946|820003 |T Tuc *|224033.5-613314 |M | 7.50 | 13.8 | |V |41974. | | 250.3 |46 |M3IIe-M6IIe |00001 00002| +4541 |820006 |W Tuc *|005809.7-632344 |RRAB | 10.73 | 11.92 | |V |36878.431 | | 0.64222988 |18 |A5-F4: |00639 06286| +110451|820034 |UU Tuc |222219.0-605215 |M | 10.4 | 13.6 | |p |24005. | | 335. | |M4e |00210 05232| +6115 |820066 |AM Tuc *|011830.6-675505 |RRC | 11.39 | 11.87 | |V |41960.387 | | 0.4056575 |45 |A7:-F3 |00001 02380| +1387 |820070 |AQ Tuc *|001721.5-715457 |EW | 9.91 | 10.48 | 10.48 |V |40477.7743 | | 0.59484267 | |F3/5(+A) |06217 09611| +4200 |820094 |BQ Tuc |005337.9-625217 |LB: | 5.70 |( 0.20 )| |V | | | | |M4III |05840 CPD | +5321 |820096 |BS Tuc *|010804.0-615218 |DSCT | 7.43 | 7.57 | |V | | | 0.065 | |A5III |06338 CoD | +4693 |820097 |BT Tuc |010019.0-724436 |UV: | 10.5 | 11.32 | |B | | | | |K0V: |07487 04660| +4879 |820104 |CC Tuc |010242.9-652722 |LB | 6.19 |( 0.10 )| |V | | | | |M2III |05840 CPD | +4157 |820107 |CF Tuc *|005307.8-743906 |EA/RS | 7.44 | 7.80 | 7.52 |V |44160.52 | | 2.79765 |10 *|F8V+K1IV |10064 CPD | +115908|820108 |CG Tuc |232901.0-630638 |ACV | 5.66 |( 0.045 )| |V | | | 2.3148 | |A0p(Si) |09919 CPD | +523 |820117 |CQ Tuc |000619.0-655026 |BY: | 12.02 | 12.34 | |Hp| | | | | |HIP HIP | +1146 |820118 |CR Tuc |001420.8-624619 |LB | 6.64 | 6.82 | |Hp| | | | | |HIP HIP | +1217 |820119 |CS Tuc |001512.3-685059 |LB | 8.73 | 8.89 | |Hp| | | | | |HIP HIP | +1993 |820120 |CT Tuc |002514.6-613048 |BY: | 11.35 | 11.63 | |Hp| | | | | |HIP HIP | +2933 |820121 |CU Tuc |003713.4-634913 |EA | 9.99 | 10.40 | |Hp| | | | | |HIP HIP | +3634 |820122 |CV Tuc |004635.3-580255 |LB: | 7.43 | 7.53 | |Hp| | | | | |HIP HIP | +3791 |820123 |CW Tuc |004843.2-614343 |ELL: | 9.44 | 9.60 | |Hp| | | | | |HIP HIP | +4406 |820124 |CX Tuc |005629.4-594023 |LB: | 9.23 | 9.43 | |Hp| | | | | |HIP HIP | +4513 |820125 |CY Tuc |005752.2-702730 |LB: | 8.70 | 8.85 | |Hp| | | | | |HIP HIP | +5038 |820126 |CZ Tuc |010431.2-703225 |SRA | 8.81 | 9.25 | |Hp| | | | | |HIP HIP | +5868 |820127 |DD Tuc |011515.8-580152 |SRB | 8.54 | 8.74 | |Hp| | | | | |HIP HIP | +6039 |820128 |DE Tuc |011735.0-651242 |SRB | 6.86 | 7.03 | |Hp| | | | | |HIP HIP | +109547|820129 |DF Tuc |221123.7-640052 |LB: | 7.62 | 7.75 | |Hp| | | | | |HIP HIP | +109763|820130 |DG Tuc |221357.5-612656 |LB | 7.96 | 8.19 | |Hp| | | | | |HIP HIP | +109770|820131 |DH Tuc |221402.6-571306 |LB | 7.70 | 8.25 | |Hp| | | | | |HIP HIP | +109955|820132 |DI Tuc |221608.2-573405 |LB | 7.08 | 7.21 | |Hp| | | | | |HIP HIP | +110842|820133 |DK Tuc |222721.2-580002 |E: | 6.90 | 6.97 | |Hp| | | | | |HIP HIP | +112830|820134 |DL Tuc |225101.5-593651 |BY: | 11.74 | 12.02 | |Hp| | | | | |HIP HIP | +113330|820135 |DM Tuc |225705.8-572404 |LB | 6.62 | 7.26 | |Hp| | | | | |HIP HIP | +114175|820136 |DN Tuc |230718.9-605235 |E: | 8.57 | 8.71 | |Hp| | | | | |HIP HIP | +114427|820137 |DO Tuc |231026.4-634112 |BY: | 11.26 | 11.61 | |Hp| | | | | |HIP HIP | +114580|820138 |DP Tuc |231242.7-635313 |LB: | 8.80 | 8.96 | |Hp| | | | | |HIP HIP | +114716|820139 |DQ Tuc |231415.6-565052 |BY: | 11.86 | 12.18 | |Hp| | | | | |HIP HIP | +115433|820140 |DR Tuc |232256.7-600321 |LB | 6.08 | 6.20 | |Hp| | | | | |HIP HIP | +116748|820141 |DS Tuc |233939.4-691145 |RS: | 8.27 | 8.39 | |Hp| | | | | |HIP HIP | +117431|820142 |DT Tuc |234839.3-590327 |LB: | 9.09 | 9.24 | |Hp| | | | | |HIP HIP | +117520|820143 |DU Tuc |234958.2-610807 |SRB | 7.19 | 7.58 | |Hp| | | | | |HIP HIP | +117853|820144 |DV Tuc |235412.8-593231 |ACV | 7.03 | 7.06 | |Hp| | | | | |HIP HIP | +117871|820145 |DW Tuc |235433.0-625204 |LB: | 9.04 | 9.15 | |Hp| | | | | |HIP HIP | +118096|820146 |DX Tuc *|235721.5-641436 |EW: | 9.63 | 9.90 | |Hp| | | | | |HIP HIP | +113402|820149 |EE Tuc |225759.4-590522 |GDOR: | 6.72 | 6.82 | |Hp| | | | | |75029 CPD | +2731 |820157 |EN Tuc *|003453.4-683548 |EB | 8.58 | 8.64 | 8.61 |V |52517.605 | | 2.88083 | | A0V |80048 HIP | NL80_1 +2629 |829008 |tet Tuc *|003323.4-711559 |DSCTC | 6.06 | 6.15 | |V | | | 0.049308 | |A7IV |09621 CPD | +5268 |829009 |iot Tuc |010718.6-614631 |SRD: | 5.47 | 5.53 | |Hp| | | | | |HIP HIP | +111310|829013 |nu. Tuc |223300.1-615856 |LB: | 4.75 | 4.93 | |V | | | | |M4III |03712 CoD | +52546 |830001 |R UMa *|104438.5+684633 |M | 6.5 | 13.7 | |V |45593. | | 301.62 |39 |M3e-M9e |00001 00002| +62126 |830002 |S UMa *|124356.7+610536 |M | 7.1 | 12.7 | |V |45778. | | 225.87 |47 |S0,9e-S5,9e |00001 00002| +61532 |830003 |T UMa *|123623.5+592913 |M | 6.6 | 13.5 | |V |45623. | | 256.60 |41 |M4IIIe-M7e |00001 00002| +50222 |830004 |U UMa |101507.7+595908 | | 6.20 | 6.25 | |V | | | | |M0III | 00097| +44846 |830005 |V UMa |090814.4+510649 |SRB | 9.5 | 11.5 | |V | | | 207.65 | |M5-M6 |08642 00002| +47727 |830006 |W UMa *|094345.5+555709 |EW/KW | 7.75 | 8.48 | 8.43 |V |45765.7385 | | 0.33363749 | |F8Vp+F8Vp |00001 00462| +61839 |830008 |Y UMa |124021.3+555048 |SRB | 7.7 | 9.8 | |V | | | 168. | |M7II-III: |00650 08953| +58225 |830009 |Z UMa *|115630.2+575218 |SRB | 6.2 | 9.4 | |V | | | 195.5 | |M5IIIe |09833 00002| +66122 |830014 |RV UMa *|133318.1+535915 |RRAB | 9.81 | 11.30 | |V |45075.511 | | 0.468060 |20 |A6-F5 |00001 00652| +56974 |830015 |RW UMa *|114046.4+515953 |EA/D/RS | 10.16 | 11.72 | 10.34 |V |45823.412 | | 7.328238 |08 |F9V+K1IV |00001 00318| +60180 |830017 |RY UMa |122027.3+611835 |SRB | 6.68 | 8.3 | |V | | | 310. : | |M2-M3IIIe | 08953| +40060 |830018 |RZ UMa |081059.7+651322 |SRB | 9.7 | 11.9 | |p | | | 115. | |M5-M6 |02137 00002| +55936 |830020 |ST UMa |112750.4+451107 |SRB | 6.0 | 7.6 | |V | | | 110. : | |M4-M5III | 08953| +65547 |830024 |SX UMa *|132613.5+561525 |RRC | 10.58 | 11.21 | |V |45109.333 | | 0.3071178 |38 |A4-F5 |00001 10083| +48682 |830025 |SY UMa |095543.0+494911 |CST | 5.27 | | |V | | | | |A3III | 00663| +55360 |830026 |SZ UMa *|112004.8+655047 |UV | 10.74 |( 0.06 )| |B | | | | |M1.5V |06948 08874| +44601 |830027 |TT UMa |090514.4+601713 |LB | 8.9 | 9.5 | |V | | | | |M6III |00179 08953| +56088 |830028 |TU UMa *|112948.5+300402 |RRAB | 9.26 | 10.24 | |V |42831.4947 | | 0.5576587 |16 |A8-F8 |00001 09331| +57362 |830029 |TV UMa |114535.0+355340 |SRB | 6.75 | 7.34 | |V | | | 42. | |M5III |05429 00228| +52599 |830031 |TX UMa *|104520.5+453359 |EA/SD | 7.06 | 8.80 | 7.13 |V |44998.1475 | | 3.0632382 |12 *|B8V+G0III-IVea |09838 03685| +47279 |830040 |VV UMa *|093806.7+560107 |EA/SD | 10.13 | 10.91 | 10.26 |V |45815.3365 | | 0.687380 |19 *|A2V |00001 06824| +53682 |830041 |VW UMa |105901.8+695921 |SR | 6.85 | 7.71 | |V | | | 610. | |M2 |08179 08953| +52577 |830043 |VY UMa |104504.0+672441 |LB | 5.87 | 7.0 | |V | | | | |C6,3(N0) |09844 08953| +52346 |830047 |WY UMa |104153.2+513800 |LB | 10.0 | 10.8 | |p | | | | |M5 |00680 02379| +44998 |830050 |XY UMa *|090955.9+542918 |EB/DW/RS | 9.50 |( 0.67 )|( 0.19 )|V |35216.5011 | | 0.478994587 | |G2V |08623 08953| +47756 |830052 |YY UMa |094407.9+534600 |SRB | 10.2 | 11.3 | |p |25590. | | 326. | |M6 |00499 02379| +51411 |830054 |ZZ UMa |103003.2+614841 |EA/D | 10.1 | 10.7 | |p |35951.484 | | 2.29926 |08 |F8 |04009 03694| +59411 |830056 |AB UMa |121114.6+474944 |RRAB | 10.3 | 11.7 | |p |36227.640 | | 0.599577 |30 |F2 |03695 02379| +47181 |830059 |AE UMa *|093653.2+440400 |SXPHE: | 10.86 | 11.52 | |V |35604.338 | | 0.086017055 |16 |A9 |07114 00819| +56109 |830076 |AW UMa *|113004.3+295753 |EW/KW | 6.83 | 7.13 | 7.08 |V |44664.7993 | | 0.4387299 | |F0-F2 |00001 BD | +57504 |830079 |AZ UMa |114713.8+432816 |LB | 9.6 | 10.3 | |p | | | | |M6III |02576 04167| +45915 |830108 |CG UMa |092143.3+564157 |LB | 5.47 | 5.95 | |V | | | | |M4IIIa |05841 BD | +54522 |830115 |CO UMa |110919.1+361834 |LB | 5.74 | 5.95 | |V | | | | |M3.5IIIab |06907 BD | +66700 |830117 |CQ UMa *|134021.4+571227 |ACV | 6.28 | 6.30 | |V |40747.620 | | 2.449967 | |A4p(Sr-Cr-Eu) |09883 BD | +67231 |830118 |CR UMa *|134635.7+542558 |ACV | 5.65 | 5.70 | |V |41444.80 | | 1.37996 | |B9p(Eu-Cr) |09308 BD | +47965 |830119 |CS UMa |094631.7+570741 |LB: | 6.78 |( 0.16 )| |B | | | | |M3IIIab |01371 BD | +54382 |830122 |CV UMa |110736.0+491037 |LB | 9.3 | 10.3 | |p | | | | |K5 |02578 BD | +55641 |830124 |CX UMa |112353.3+371405 |DSCTC: | 6.8 |( 0.028 )| |V | | | | |F0 |07866 BD | +45493 |830127 |DD UMa |091611.3+540119 |DSCTC | 5.02 |( 0.03 )| |B | | | 0.12 : | |A5V |08209 BD | +44439 |830131 |DH UMa |090315.3+500539 |LB: | 9.2 |( 0.24 )| |V | | | | |C3,5J(R5) |08460 BD | +46977 |830133 |DK UMa *|093428.9+694949 |RS: | 4.56 |( 0.058 )| |V | | | 0.9202 | |G4III-IV |07964 BD | +47165 |830134 |DL UMa *|093641.0+693812 |DSCTC+E | 7.55 |( 0.056 )| |V | | | 0.0831 | |F0 |07964 BD | +53425 |830135 |DM UMa *|105543.5+602810 |RS | 9.57 |( 0.32 )| |V |45831.72 | | 7.478 | |K0-K1III-IVea |10121 BD | +58112 |830136 |DN UMa *|115505.8+462837 |EA | 6.63 | 6.73 | 6.73, |B |43936.4814 | | 1.730418 |10 *|A3Vn |08557 BD | +58684 |830138 |DP UMa |120206.8+430244 |DSCTC | 5.21 |( 0.03 )| |V | | | | |A7m |08448 BD | +56135 |830149 |EE UMa |113024.8+463927 |ELL: | 6.35 |( 0.16 )| |V | | | | | |68053 BD | +67799 |830152 |EH UMa |135320.2+521923 |LB | 6.69 | 6.87 | |V | | | | | |68006 BD | +50685 |830157 |EN UMa |102103.3+684452 |DSCTC | 5.83 | 5.88 | |V | | | | | |70134 BD | +52602 |830158 |EO UMa |104523.4+411828 |DSCTC | 7.07 | 7.15 | |V | | | | | |71098 BD | +54540 |830159 |EP UMa |110939.8+671237 |ACVO | 6.06 |( 0.01 )| |V | | | | | |71099 BD | +50933 |830163 |ET UMa |102407.8+653359 |ACV | 4.91 |( 0.05 )| |B | | | | | |72169 BD | +46247 |830169 |EZ UMa |092544.2+635627 |SRD: | 6.23 | 6.28 | |V | | | | | |73005 BD | +46919 |830170 |FF UMa |093346.5+624940 |RS | 8.35 |( 0.12 )| |V | | | | | |73005 BD | +50752 |830171 |FG UMa |102147.5+605446 |RS | 7.45 |( 0.11 )| |V | | | | | |73005 BD | +54765 |830173 |FI UMa |111244.5+545339 |DSCTC | 6.65 |( 0.03 b )| |V | | | | | |73338 BD | +55135 |830174 |FK UMa |111714.6+293414 |RS | 9.29 |( 0.04 )| |V | | | | | |73005 BD | +40902 |830175 |FL UMa |082048.0+673137 |LB: | 7.05 | 7.14 | |Hp| | | | | |HIP HIP | +41581 |830176 |FM UMa |082841.0+605638 |ACV: | 9.10 | 9.17 | |Hp| | | | | |HIP HIP | +42068 |830177 |FN UMa |083427.6+671120 |LB | 8.29 | 8.70 | |Hp| | | | | |HIP HIP | +42239 |830178 |FO UMa |083640.8+492235 |LB | 7.11 | 7.22 | |Hp| | | | | |HIP HIP | +43207 |830179 |FP UMa |084807.6+605259 |LB: | 9.23 | 9.36 | |Hp| | | | | |HIP HIP | +43205 |830180 |FQ UMa |084806.3+464131 |LB: | 8.24 | 8.30 | |Hp| | | | | |HIP HIP | +43469 |830181 |FR UMa |085115.8+483503 |LB: | 8.80 | 8.96 | |Hp| | | | | |HIP HIP | +43515 |830182 |FS UMa |085146.3+523052 |LB: | 9.16 | 9.36 | |Hp| | | | | |HIP HIP | +43738 |830183 |FT UMa |085430.3+511440 |RRC: | 9.29 | 9.42 | |Hp| | | | | |HIP HIP | +44021 |830184 |FU UMa |085754.4+641843 |LB: | 8.97 | 9.07 | |Hp| | | | | |HIP HIP | +44397 |830185 |FV UMa |090236.8+631445 |SRB | 8.65 | 8.81 | |Hp| | | | | |HIP HIP | +44457 |830186 |FW UMa |090325.3+584504 |LB: | 9.34 | 9.66 | |Hp| | | | | |HIP HIP | +44683 |830187 |FX UMa |090622.4+682643 |EA: | 7.14 | 7.18 | |Hp| | | | | |HIP HIP | +44666 |830188 |FY UMa |090608.7+644646 |SRB: | 9.04 | 9.80 | |Hp| | | | | |HIP HIP | +44925 |830189 |FZ UMa |090905.1+691239 |LB | 7.41 | 7.62 | |Hp| | | | | |HIP HIP | +45693 |830190 |GG UMa |091853.7+625034 |DSCTC: | 8.66 | 8.72 | |Hp| | | | | |HIP HIP | +45935 |830191 |GH UMa |092158.7+533759 |SRB | 8.32 | 8.58 | |Hp| | | | | |HIP HIP | +46344 |830192 |GI UMa |092655.7+494133 |SRB | 7.86 | 8.12 | |Hp| | | | | |HIP HIP | +47364 |830193 |GK UMa |093900.7+583253 |SRB: | 7.36 | 7.42 | |Hp| | | | | |HIP HIP | +48422 |830194 |GL UMa |095216.2+601648 |BY: | 12.31 | 12.95 | |Hp| | | | | |HIP HIP | +50097 |830195 |GM UMa *|101343.8+502948 |EB | 6.66 | 6.81 | |Hp| | | | | |HIP HIP | +50169 |830196 |GN UMa |101426.1+662447 |LB | 9.01 | 9.23 | |Hp| | | | | |HIP HIP | +50167 |830197 |GO UMa |101424.6+592359 |LB | 7.42 | 7.68 | |Hp| | | | | |HIP HIP | +50389 |830198 |GP UMa |101717.6+412803 |LB: | 6.60 | 6.65 | |Hp| | | | | |HIP HIP | +50979 |830199 |GQ UMa |102448.1+511041 |LB | 10.07 | 10.35 | |Hp| | | | | |HIP HIP | +51110 |830200 |GR UMa |102631.6+622048 |LB | 9.36 | 9.94 | |Hp| | | | | |HIP HIP | +51361 |830201 |GS UMa |102926.8+394609 |DSCTC: | 8.76 | 8.81 | |Hp| | | | | |HIP HIP | +51876 |830202 |GT UMa |103555.6+633532 |EB | 8.14 | 8.43 | |Hp| | | | | |HIP HIP | +52215 |830203 |GU UMa |104007.5+595700 |LB: | 9.61 | 9.77 | |Hp| | | | | |HIP HIP | +52265 |830204 |GV UMa |104047.1+563131 |LB: | 9.30 | 9.44 | |Hp| | | | | |HIP HIP | +52508 |830205 |GW UMa |104411.3+444044 |DSCT: | 9.48 | 9.97 | |Hp| | | | | |HIP HIP | +52663 |830206 |GX UMa |104607.7+590339 |SRD | 9.08 | 9.33 | |Hp| | | | | |HIP HIP | +52794 |830207 |GY UMa |104736.7+653700 |SRB | 6.89 | 7.03 | |Hp| | | | | |HIP HIP | +52892 |830208 |GZ UMa |104902.0+671252 |E: | 10.56 | 10.78 | |Hp| | | | | |HIP HIP | +54165 |830209 |HH UMa *|110448.1+353627 |DSCT: | 10.58 | 10.79 | |Hp| | | | | |HIP HIP | +54243 |830210 |HI UMa |110550.8+515118 |LB: | 9.50 | 9.64 | |Hp| | | | | |HIP HIP | +54251 |830211 |HK UMa |110554.0+535103 |LB: | 7.62 | 7.72 | |Hp| | | | | |HIP HIP | +54396 |830212 |HL UMa |110752.8+682159 |SRB | 7.98 | 8.17 | |Hp| | | | | |HIP HIP | +54518 |830213 |HM UMa |110916.7+512244 |LB | 6.86 | 6.98 | |Hp| | | | | |HIP HIP | +55030 |830214 |HN UMa *|111556.4+373835 |EW: | 9.90 | 10.02 | |Hp| | | | | |HIP HIP | +55471 |830215 |HO UMa |112136.2+320235 |LB | 8.42 | 8.56 | |Hp| | | | | |HIP HIP | +56012 |830216 |HP UMa |112845.1+493332 |LB | 9.06 | 9.27 | |Hp| | | | | |HIP HIP | +56158 |830217 |HQ UMa |113042.8+564447 |DSCTC | 7.16 | 7.21 | |Hp| | | | | |HIP HIP | +56330 |830218 |HR UMa |113253.0+552507 |EA | 8.70 | 9.02 | |Hp| | | | | |HIP HIP | +56533 |830219 |HS UMa |113530.7+345204 |LB | 8.30 | 8.95 | |Hp| | | | | |HIP HIP | +57582 |830220 |HT UMa |114814.7+483126 |LB: | 8.27 | 8.39 | |Hp| | | | | |HIP HIP | +57731 |830221 |HU UMa *|115019.0+374051 |BY: | 11.19 | 11.48 | |Hp| | | | | |HIP HIP | +58157 |830222 |HV UMa |115538.0+471527 |RRC | 8.60 | 8.89 | |Hp| | | | | |HIP HIP | +58295 |830223 |HW UMa |115716.8+450038 |LB: | 8.87 | 9.01 | |Hp| | | | | |HIP HIP | +58648 |830224 |HX UMa |120133.1+430230 |EB | 8.89 | 9.06 | |Hp| | | | | |HIP HIP | +58795 |830225 |HY UMa |120333.2+294045 |LB: | 7.32 | 7.43 | |Hp| | | | | |HIP HIP | +58927 |830226 |HZ UMa |120459.8+501701 |LB: | 8.28 | 8.40 | |Hp| | | | | |HIP HIP | +61237 |830227 |II UMa *|123254.9+544743 |EW: | 8.17 | 8.48 | |Hp| | | | | |HIP HIP | +61686 |830228 |IK UMa |123843.8+550510 |LB: | 9.66 | 9.96 | |Hp| | | | | |HIP HIP | +62581 |830229 |IL UMa |124923.5+620338 |SRB | 9.44 | 9.79 | |Hp| | | | | |HIP HIP | +62738 |830230 |IM UMa |125119.6+574354 |LB | 7.61 | 7.75 | |Hp| | | | | |HIP HIP | +62936 |830231 |IN UMa |125351.9+564912 |LB: | 8.77 | 8.91 | |Hp| | | | | |HIP HIP | +64636 |830232 |IO UMa |131454.5+591744 |EA | 8.19 | 8.79 | |Hp| | | | | |HIP HIP | +66609 |830233 |IP UMa |133912.6+475346 |DSCTC: | 7.72 | 7.77 | |Hp| | | | | |HIP HIP | +66738 |830234 |IQ UMa |134044.3+544054 |SRB | 4.69 | 4.75 | |Hp| | | | | |HIP HIP | +67511 |830235 |IR UMa |135001.0+545210 |LB | 7.48 | 7.70 | |Hp| | | | | |HIP HIP | +68284 |830236 |IS UMa |135842.4+550556 |SRB: | 9.90 | 10.07 | |Hp| | | | | |HIP HIP | +68744 |830237 |IT UMa |140417.4+512718 |LB: | 8.69 | 8.85 | |Hp| | | | | |HIP HIP | +69502 |830238 |IU UMa |141343.2+580655 |LB: | 8.29 | 8.40 | |Hp| | | | | |HIP HIP | +69627 |830239 |IV UMa |141501.7+611804 |ELL: | 9.00 | 9.06 | |Hp| | | | | |HIP HIP | +48129 |830241 |IX UMa |094844.6+433956 |DSCTC | 7.79 |( 0.01 )| |V | | | | | |75273 BD | +40462 |830248 |KO UMa |081542.1+661032 |GDOR | 7.18 |( 0.04 )| |V | | | | | |76080 DM | +43185 |830249 |KP UMa |084750.8+661238 |ELL | 7.87 |( 0.04 )| |V | | | | | |76091 DM | +57498 |830256 |KW UMa |114707.8+612407 |DSCTC | 6.83 |( 0.03 )| |B | | | | | |76009 DM | +46748 |830259 |KZ UMa |093142.1+665119 |DSCTC | 8.15 |( 0.02 b )| |V | | | | | |77082 DM | +47924 |830261 |LM UMa |094600.6+455213 |SRS | 8.21 |( 0.06 )| |V | | | | | |77008 DM | +55563 |830266 |LR UMa |112251.2+314941 |DSCTC: | 7.74 |( 0.07 )| |B | | | | | |77094 DM | +41488 |830267 |LS UMa |082740.1+675827 |GDOR | 8.12 |( 0.20 )| |V | | | 1.14 : | |F0 |78091 DM | +42919 |830268 |LT UMa |084447.8+553220 |BY | 8.91 |( 0.03 )| |V | | | | |K0V |78018 DM | +46099 |830269 |LU UMa *|092403.3+614623 |GDOR | 8.44 | 8.65 | |Hp| | | 1.1156 | |F0V |78091 DM | +50180 |830272 |LX UMa |101435.8+534615 |BY | 8.02 |( 0.05 )| |V | | | 4.935 : | |G5V |78018 DM | +53008 |830274 |LZ UMa |105040.3+514759 |BY | 8.31 |( 0.02 )| |V | | | 8.47 | |G5V |78018 DM | +54745 |830276 |MN UMa |111232.4+354851 |BY | 6.53 | 6.56 | |Hp| | | 8.25 | |G0V |78005 DM | +56829 |830284 |MV UMa *|113859.7+421944 |RS | 8.22 |( 0.02 )| |V | | | 10.84 | |K5V |78018 DM | +57558 |830286 |MX UMa |114752.9+530055 |DSCTC | 8.78 |( 0.08 )| |B | | | 0.116 | |F3III/IV |78152 DM | +57859 |830287 |MY UMa |115157.9+480519 |BY | 8.97 |( 0.03 )| |V | | | 11.43 | |K0V |78018 DM | +59432 |830288 |MZ UMa |121127.8+532518 |BY | 7.96 |( 0.02 )| |V | | | 7.44 : | |K0V+K1V |78018 DM | +60693 |830289 |NN UMa |122620.2+543519 |BY: | 7.53 |( 0.03 )| |V | | | 7.4 : | |K2 |78018 DM | +61100 |830290 |NO UMa *|123118.9+550708 |RS: | 8.08 |( 0.03 )| |V | | | 8.81 : | |K2V |78005 DM | +61946 |830291 |NP UMa |124144.5+554329 |BY | 8.27 |( 0.03 )| |V | | | 11.75 | |K3V |78018 DM | +65515 |830292 |NQ UMa |132545.5+565814 |BY | 7.29 |( 0.04 )| |V | | | 4.27 | |G9V |78018 DM | +53209 |830296 |NU UMa *|105301.1+574208 |EA | 9.27 | 9.50 | 9.50 : |V |48058.296 | | 5.50762 |03 : |G5IV |79006 DM | +56275 |830300 |NY UMa *|113212.9+385533 |GDOR | 7.95 | 8.02 | |V | | | 0.7564 | |F1V+G0:V |79219 DM | +59203 |830301 |NZ UMa |120826.1+485807 |GDOR | 7.72 | 7.82 | |V | | | 0.7572 | |F0III |79111 DM | +40772 |830306 |OS UMa |081917.2+623026 |EA/RS | 5.73 | 5.79 | |V |48022.9 | | 89.06 |10 : |G8III+F0: |80015 DM | NL80_2 +46642 |830326 |QR UMa |093038.3+444610 |EA | 7.35 | 7.45 | |V |48147.080 | | 1.7854 |09 |A5 |80015 HIP | NL80_2 +58557 |830350 |V0350 UMa |120026.5+515718 |BY | 10.8 |( 0.05 )| |R | | | 1.336 | |K7V |80362 80362| NL80_2 +63096 |830352 |V0352 UMa |125539.0+545741 |ELL: | 6.78 | 6.82 | |Hp| | | 1.41353 | |A0 |80112 HIP | NL80_2 +62956 |839005 |eps UMa *|125401.8+555735 |ACV | 1.76 |( 0.02 )| |V |26437.01 | | 5.0887 | |A0p(Cr-Eu) |02100 BD | +55203 |839014 |ksi UMa |111810.9+313145 |RS | 4.38 |( 0.01 )| |V | | | | | |70157 BD | +48319 |839020 |ups UMa *|095059.4+590220 |DSCT | 3.68 | 3.86 | |V |41353.540 | | 0.1327 |64 |F2IV |09888 BD | +80802 |840001 |R UMi *|162957.9+721649 |SRB | 8.5 | 11.5 | |V | | | 325.7 |50 |M7IIIe |00001 00002| +75847 |840002 |S UMi *|152934.6+783800 |M | 7.5 |< 13.2 | |V |45931. | | 331.0 |50 |M6e-M9e |00001 00002| +69816 |840004 |U UMi *|141719.9+664739 |M | 7.1 | 13.0 | |V |45418. | | 330.92 |50 |M6e-M8e |00001 00002| +66562 |840005 |V UMi *|133841.1+741836 |SRB | 7.2 | 9.1 | |V | | | 72.0 |45 |M5IIIab: |00657 08953| +79069 |840006 |W UMi *|160827.3+861200 |EA/SD | 8.51 | 9.59 | 8.66 |V |33682.323 | | 1.7011576 |23 |A3 |00001 08953| +73199 |840010 |RR UMi *|145735.0+655557 |SRB | 4.53 | 4.73 | |V | | | 43.3 | |M5III |09895 BD | +77623 |840011 |RS UMi |155049.4+721241 |EA/D/RS | 10.81 | 11.4 | |B |44756.734 | | 6.16862258 |12 |F8 |09897 00462| +68477 |840022 |SV UMi |140110.2+694150 |LB: | 9.30 | 9.50 | |Hp| | | | | |HIP HIP | +68798 |840023 |SW UMi |140458.0+662021 |LB: | 8.71 | 8.82 | |Hp| | | | | |HIP HIP | +70245 |840024 |SX UMi |142222.3+663247 |LB: | 8.07 | 8.24 | |Hp| | | | | |HIP HIP | +71376 |840025 |SY UMi |143547.5+790828 |LB: | 8.63 | 8.77 | |Hp| | | | | |HIP HIP | +72625 |840026 |SZ UMi *|145055.8+671911 |BY: | 11.41 | 12.02 | |Hp| | | | | |HIP HIP | +72992 |840027 |TT UMi |145500.2+745252 |SRB | 6.90 | 7.04 | |Hp| | | | | |HIP HIP | +73047 |840028 |TU UMi |145543.8+761824 |DSCTC | 8.84 | 8.90 | |Hp| | | | | |HIP HIP | +73474 |840029 |TV UMi |150059.7+730312 |EB | 8.77 | 8.85 | |Hp| | | | | |HIP HIP | +74451 |840030 |TW UMi |151250.9+752816 |LB | 7.93 | 8.09 | |Hp| | | | | |HIP HIP | +74034 |840031 |TX UMi |150747.1+854500 |BY: | 10.82 | 11.26 | |Hp| | | | | |HIP HIP | +74866 |840032 |TY UMi |151757.5+835134 |EA | 7.79 | 8.24 | |Hp| | | | | |HIP HIP | +75886 |840033 |TZ UMi |153000.1+702310 |LB | 8.40 | 8.60 | |Hp| | | | | |HIP HIP | +76832 |840034 |UU UMi |154116.6+755934 |BY: | 12.04 | 12.40 | |Hp| | | | | |HIP HIP | +79253 |840035 |UV UMi |161029.6+735305 |LB: | 9.47 | 9.84 | |Hp| | | | | |HIP HIP | +80503 |840036 |UW UMi |162559.6+782750 |SRB | 8.81 | 9.09 | |Hp| | | | | |HIP HIP | +82720 |840037 |UX UMi |165428.3+833022 |LB: | 9.70 | 9.87 | |Hp| | | | | |HIP HIP | +59767 |840038 |UY UMi |121520.3+874200 |GDOR: | 6.30 | 6.38 | |Hp| | | | | |75029 BD | +63245 |840040 |VV UMi *|125734.6+885727 |EA | 9.78 | 10.03 | 9.99 : |V |48557.320 | | 7.1520 |04 |A3 |79006 DM | +83317 |840042 |VX UMi |170140.1+751751 |GDOR | 6.48 |( 0.06 )| |B | | | 0.34511 | |A9V |79111 DM | +11767 |849001 |alf UMi *|023149.1+891551 |DCEPS | 1.86 | 2.13 | |V |31495.813 | | 3.9696 |50 |F7Ib-F8Ib |10096 BD | +75097 |849003 |gam UMi *|152043.7+715003 |DSCTC | 3.04 |( 0.05 )| |V |39950.367 | | 0.143009 | |A3II-III |09905 BD | +82080 |849005 |eps UMi *|164558.3+820214 |EA/D/RS | 4.19 | 4.23 | 4.21 |V |33077.75 | | 39.4809 |04 *|G5III |02994 BD | +84535 |849011 |lam UMi |171657.3+890216 |SRB | 6.35 | 6.45 | |Hp| | | | | |HIP HIP | +49477 |850001 |R Vel |100607.2-521117 |CST: | 6.49 | 6.52 | |V | | | | |K1III |00960 CoD | +46881 |850002 |S Vel *|093313.2-451231 |EA/SD | 7.74 | 9.50 | 7.83 |V |27612.3560 | | 5.9336475 |10 |A5Ve+K5IIIe |06220 00024| +42321 |850003 |T Vel |083740.8-472143 |DCEP | 7.68 | 8.34 | |V |40713.28 | | 4.63974 |30 |F6-G0II |05676 08086| +45949 |850005 |V Vel |092216.2-555737 |DCEP | 7.19 | 7.95 | |V |40736.25 | | 4.370991 |30 |F6-F9II |02309 08953| +50230 |850006 |W Vel *|101514.8-542842 |M | 8.3 | 14.0 | |V |40699. | | 394.72 |44 |M5-M8IIIe |00001 00002| +48662 |850007 |X Vel |095526.1-413513 |SR | 10.3 | 11.53 | |B | | | 140. : | |C4-5,4-5(Nb) |00693 08588| +46502 |850008 |Y Vel *|092901.4-521054 |M | 8.0 | 14.2 | |V |40437. | | 449.9 |40 |M8e-M9.5 |00001 00002| +50655 |850017 |RY Vel *|102041.0-551917 |DCEP | 7.86 | 8.89 | |V |44017.94 | | 28.1357 |22 |F5-G3Ib/II |10108 00694| +42257 |850018 |RZ Vel |083701.3-440653 |DCEP | 6.42 | 7.64 | |V |34845.57 | | 20.398240 |30 |G1Ib-G8 |05060 03715| +42929 |850020 |ST Vel |084455.9-503336 |DCEP | 9.39 | 10.08 | |V |40896.70 | | 5.8584249 |30 |K |00692 08953| +52570 |850022 |SV Vel |104456.4-561722 |DCEP | 7.91 | 9.12 | |V |36195.125 | | 14.09707 |34 |F6-G5II |02309 09650| +42831 |850023 |SW Vel *|084338.7-472411 |DCEP | 7.44 | 8.96 | |V |40738.24 | | 23.4410 |15 |F8/G0Ib |00001 03715| +42926 |850024 |SX Vel *|084453.5-462035 |DCEP | 7.92 | 8.72 | |V |21015.98 | | 9.54993 |49 |F8II |00695 08086| +52988 |850045 |WW Vel |105023.9-484024 |M | 10.8 | 14. | |p |23173. | | 187.4 | |M5e |00031 CPD | +52887 |850046 |WX Vel |104859.9-541054 |M | 11.2 | 14.2 | |p |28910. | | 411.5 | |M5e-M7IIIe |00016 08613| +50407 |850048 |WZ Vel |101733.3-475650 |SRB | 9.0 | 10.0 | |p | | | 130. : | |M3-M5/6II/III |00692 08953| +51894 |850049 |XX Vel |103608.6-560236 |DCEP | 10.25 | 11.22 | |V |34909.742 | | 6.98457 |26 | |02309 00694| +47177 |850059 |AE Vel |093651.5-530158 |DCEP | 9.88 | 10.73 | |V |40772.20 | | 7.13357 |33 | |07934 09967| +53213 |850060 |AF Vel *|105302.5-495423 |RRAB | 10.68 | 11.78 | |V |41432.267 | | 0.5273984 |15 |F1-F4 |07984 06286| +40155 |850062 |AH Vel *|081200.0-463840 |DCEPS | 5.50 | 5.89 | |V |42035.675 | | 4.227171 |50 |F7Ib-II |09968 CoD | +40330 |850063 |AI Vel *|081405.2-443433 |DSCT | 6.15 | 6.76 | |V | | | 0.11157411 | |A2p-F2pIV/V |10112 00702| +41784 |850065 |AL Vel *|083111.3-473957 |EA/GS/D | 8.60 | 8.93 | |V |42510.04 | | 96.107 |09 |K0III+A3III/V |00001 08086| +42492 |850069 |AP Vel *|083945.8-435139 |CEP(B) | 9.49 | 10.48 | |V |34900.805 | | 3.12776 |33 |F9 |07326 03715| +44847 |850085 |BG Vel |090815.8-512611 |DCEP | 7.43 | 7.91 | |V |34918.94 | | 6.923655 |32 |F7/8II |05060 08953| +47796 |850105 |CD Vel |094438.2-455237 |RRAB | 11.3 | 12.4 | |p |28721.235 | | 0.5734894 |14 |F |00696 06286| +53853 |850110 |CI Vel |110101.3-542442 |M | 11.0 | 13.5 | |p |28230. | | 142.5 | |M0e |00016 02338| +49611 |850113 |CM Vel |100732.8-531537 |SRC | 8.7 | 11.0 | |p |28780. | | 780. | |M0-M5(II) |00714 05625| +44245 |850122 |CV Vel *|090038.0-513320 |EA/DM | 6.69 | 7.19 | 7.17 |V |42048.6689 | | 6.889494 |07 *|B2.5V+B2.5V |10116 03711| +45570 |850133 |DK Vel *|091716.7-530506 |DCEP | 10.34 | 10.88 | |V |41354.250 | | 2.48164 |40 |F8II |06223 06826| +46610 |850138 |DP Vel |093015.8-530331 |DCEP | 11.51 | 12.20 | |V |35250.94 | | 5.48438 |24 | |02309 00696| +46746 |850140 |DR Vel |093141.0-493918 |DCEP | 9.12 | 9.97 | |V |34930.70 | | 11.1993 |42 | |10108 08953| +48122 |850177 |FN Vel |094841.5-553110 |CEP | 10.9 | 12.1 | |p |33240.35 | | 5.32422 | | |00090 CPD | +48499 |850179 |FP Vel |095325.9-523034 |LB | 12.0 | 13.38 | |B | | | | |C |00720 00720| +41882 |850188 |FY Vel *|083223.4-493605 |EB:/GS | 6.84 | 7.06 | 7.03 |V |40210.586 | | 33.72 | |B2Ibpe |05943 CoD | +44093 |850189 |FZ Vel *|085852.4-471405 |DSCTC | 5.14 | 5.17 | |V | | | 0.065 | |A6/7(m)-F0m |05944 CoD | +46188 |850192 |GI Vel |092501.4-452235 |SRB | 7.88 | 8.05 | |V | | | 120. : | |M3III |05828 CoD | +46194 |850193 |GK Vel |092507.9-435836 |SRB | 6.26 | 6.39 | |V | | | 120. : | |M3III-M5III |05828 CoD | +42315 |850197 |GO Vel |083739.7-402608 |SRB | 6.61 | 6.98 | |V | | | 75. | |M4III-M5III |06645 CoD | +44368 |850198 |GP Vel *|090206.9-403317 |E+ACYG+XP | 6.76 | 6.99 | 6.90. |V |44275.20 | | 8.9647 | |B0.5Iaeq |10051 08086| +41483 |850203 |GU Vel |082736.6-530519 |DSCTC | 5.08 | 5.11 | |V | | | 0.07 | |A9/F0III/IV |07489 CoD | +45085 |850206 |GX Vel |091104.4-445204 |ACYG: | 4.97 | 5.04 | |V | | | | |B5Ia |03712 CoD | +50332 |850207 |GY Vel |101640.1-511217 |LB | 6.23 | 6.5 | |V | | | | |M4/5III |06324 10118| +50555 |850208 |GZ Vel |101936.8-550146 |LC | 3.43 | 3.81 | |R | | | | |K3II |06352 05625| +42177 |850222 |HV Vel *|083552.0-505811 |ACVO: | 5.77 | 5.81 | |V | | | 2.66745 | |B9p(Si) |09919 CoD | +42459 |850223 |HW Vel *|083923.8-532623 |BCEP | 5.46 | 5.52 | |V |42745.000 | | 0.26145 | |B6V |08565 04745| +42712 |850224 |HX Vel *|084216.2-480557 |ELL: | 5.48 | 5.53 | 5.50 : |V |42758.253 | | 1.12488 | |B1.5Vn |09019 CoD | +42726 |850225 |HY Vel *|084225.4-530650 |ELL: | 4.83 | 4.90 | 4.90 |V |44627.727 | | 3.106 | |B3IV |10093 04745| +43354 |850226 |HZ Vel |084952.4-390830 |DSCTC | 6.39 |( 0.025 )| |V | | | 0.087 | |A5III |08215 CoD | +47145 |850230 |IM Vel *|093625.4-484504 |ACVO | 6.50 |( 0.04 )| |B |43181.00 | | 2.85204 | |A8p(Sr-Eu-Cr) |10140 CoD | +47206 |850231 |IN Vel *|093713.0-420115 |RS: | 8.84 | 9.13 | |V | | | | |K2IIIp |08570 CoD | +47272 |850232 |IO Vel |093803.2-541309 |ACV | 6.9 |( 0.03 )| |V |43185.702 | | 1.08184 |65 |A0p(Si-Sr) |09919 CPD | +47694 |850233 |IP Vel *|094327.6-511341 |E | 6.03 |( 0.19 )| |B |42861.6697 | | | |B6V |08572 CoD | +39970 |850236 |IS Vel *|080943.2-475614 |BCEP | 5.23 | | |V | | | 0.108 | |B1IVn |08787 CoD | +40662 |850237 |IT Vel *|081801.1-470531 |ELL: | 7.03 | 7.08 | 7.08 |V |42524.231 | | 2.088 | |B7III |08805 CoD | +44213 |850238 |IU Vel |090022.3-431026 |GCAS | 5.97 | 6.08 | |V | | | | |B2.5Vne |10142 CoD | +48799 |850239 |IV Vel |095710.9-523820 |BCEP | 5.99 |( 0.013 )| |B |43215.675 | | 0.1608 | |B3IV |08420 CoD | +53530 |850240 |IW Vel |105707.8-504554 |DSCTC | 5.90 |( 0.016 )| |V | | | 0.150 | |A4V |08403 CoD | +40430 |850241 |IX Vel |081519.0-491321 |NL | 9.1 | 10.0 | |p | | | | | |67360 CoD | +43807 |850242 |IY Vel |085519.2-450230 |* | 6.23 | 6.27 | |V | | | | | |67362 CoD | +44299 |850243 |IZ Vel |090120.9-415151 |* | 5.53 | 5.56 | |V | | | | | |67362 CoD | +44790 |850244 |KK Vel |090742.5-443757 |BCEP | 6.75 | 6.80 | |V | | | | | |67365 67366| +45189 |850245 |KL Vel |091230.5-433648 |ACV | 5.56 | 5.57 | |V | | | | | |67368 CoD | +48054 |850247 |KN Vel |094743.9-495636 |E | 7.1 |( 0.09 )| |V | | | | | |67370 CoD | +53379 |850250 |KQ Vel |105501.0-421504 |ACV | 6.10 | 6.12 | |V | | | | | |67198 CoD | +42715 |850253 |KT Vel |084219.0-530600 |ACV | 5.49 | 5.56 | |V | | | | | |68187 68377| +39873 |850256 |KW Vel |080841.6-492950 |ACV | 7.84 | 7.98 | |U | | | | | |69056 CoD | +43413 |850257 |KX Vel |085033.5-463145 |E | 4.87 |( 0.08 b )| |B | | | | | |69287 CoD | +54060 |850260 |LL Vel |110342.6-512110 |ELL: | 6.71 | 6.76 | |V | | | | | |69289 CoD | +42587 |850261 |LM Vel |084047.8-450330 |ACYG | 7.54 | 7.57 | |V | | | | | |70077 CoD | +42679 |850262 |LN Vel |084156.9-452439 |ACYG | 5.19 | 5.25 | |V | | | | | |70077 CoD | +45675 |850266 |LR Vel |091842.4-513338 |ACYG | 5.82 | 5.96 | |V | | | | | |70077 CoD | +48904 |850269 |LU Vel |095834.3-462530 |UV | 11.5 | 13.76 | |U | | | | | |71095 CoD | +50070 |850271 |LW Vel |101322.8-511359 |DSCTC | 5.24 | 5.29 | |V | | | | | |71017 CoD | +51444 |850272 |LX Vel |103022.4-570439 |EB/GS | 6.60 | 6.66 | |b | | | | | |71074 CPD | +45823 |850273 |LY Vel |092034.8-473401 |LPB | 7.75 |( 0.02 )| |V | | | | | |72172 CoD | +48598 |850274 |LZ Vel |095439.1-431916 |RS: | 7.27 | 7.39 | |V | | | | | |72173 CoD | +45091 |850278 |MP Vel |091107.5-431612 |DSCTC | 7.8 |( 0.02 )| |V | | | | | |73067 CoD | +47131 |850281 |MS Vel |093614.7-523241 |SRA | 8.13 | 8.98 | |T | | | | | |73157 CoD | +47889 |850282 |MT Vel |094538.8-455440 |DSCTC | 8.1 |( 0.09 )| |B | | | | | |73067 CoD | +39584 |850286 |MX Vel |080520.3-465842 |BE: | 6.09 | 6.16 | |Hp| | | | | |HIP HIP | +39687 |850287 |MY Vel |080638.3-433558 |LPB | 8.64 | 8.69 | |Hp| | | | | |HIP HIP | +39759 |850288 |MZ Vel |080733.5-491613 |LB: | 7.74 | 7.84 | |Hp| | | | | |HIP HIP | +39919 |850289 |NN Vel |080909.5-484104 |ACYG: | 5.62 | 5.65 | |Hp| | | | | |HIP HIP | +40285 |850290 |NO Vel |081336.2-465930 |EB | 5.08 | 5.12 | |Hp| | | | | |HIP HIP | +40504 |850291 |NP Vel |081610.4-433813 |LB: | 8.80 | 8.90 | |Hp| | | | | |HIP HIP | +41113 |850292 |NQ Vel |082320.0-445756 |IA: | 7.63 | 7.77 | |Hp| | | | | |HIP HIP | +41501 |850293 |NR Vel |082750.5-500600 |GCAS: | 7.56 | 7.75 | |Hp| | | | | |HIP HIP | +41774 |850294 |NS Vel |083105.9-390340 |GCAS: | 7.23 | 7.37 | |Hp| | | | | |HIP HIP | +42061 |850295 |NT Vel |083424.4-544003 |EA | 8.33 | 9.01 | |Hp| | | | | |HIP HIP | +42161 |850296 |NU Vel |083541.0-521920 |LB | 7.32 | 7.50 | |Hp| | | | | |HIP HIP | +42227 |850297 |NV Vel |083636.3-523440 |IB: | 9.47 | 9.72 | |Hp| | | | | |HIP HIP | +42399 |850298 |NW Vel |083843.3-474716 |SRD | 7.92 | 8.05 | |Hp| | | | | |HIP HIP | +42433 |850299 |NX Vel |083909.5-402509 |E | 7.25 | 7.38 | |Hp| | | | | |HIP HIP | +42540 |850300 |NY Vel |084019.2-401550 |ACV | 5.15 | 5.19 | |Hp| | | | | |HIP HIP | +42504 |850301 |NZ Vel |083957.6-530317 |ELL: | 5.11 | 5.14 | |Hp| | | | | |HIP HIP | +42519 |850302 |OO Vel |084008.4-515630 |ACV | 7.41 | 7.44 | |Hp| | | | | |HIP HIP | +43082 |850303 |OP Vel |084630.6-455445 |ACYG: | 5.50 | 5.55 | |Hp| | | | | |HIP HIP | +43071 |850304 |OQ Vel *|084623.2-525037 |RRC: | 7.73 | 7.77 | |Hp| | | | | |HIP HIP | +43229 |850305 |OR Vel |084820.9-465438 |BE | 8.98 | 9.14 | |Hp| | | | | |HIP HIP | +43443 |850306 |OS Vel |085053.2-434505 |ACYG: | 7.68 | 7.75 | |Hp| | | | | |HIP HIP | +43493 |850307 |OT Vel |085131.0-463228 |SRB | 7.61 | 7.72 | |Hp| | | | | |HIP HIP | +43792 |850308 |OU Vel |085508.7-432800 |BE | 8.04 | 8.12 | |Hp| | | | | |HIP HIP | +43812 |850309 |OV Vel |085523.1-465328 |EB: | 8.19 | 8.32 | |Hp| | | | | |HIP HIP | +43936 |850310 |OW Vel |085657.3-502124 |SRD: | 7.73 | 7.91 | |Hp| | | | | |HIP HIP | +44166 |850311 |OX Vel |085944.3-541413 |ACV: | 7.60 | 7.71 | |Hp| | | | | |HIP HIP | +44337 |850312 |OY Vel |090144.6-521119 |ACV | 5.19 | 5.22 | |Hp| | | | | |HIP HIP | +44433 |850313 |OZ Vel |090309.4-383635 |LB: | 7.69 | 7.79 | |Hp| | | | | |HIP HIP | +44482 |850314 |PP Vel |090347.1-540430 |LB: | 8.32 | 8.43 | |Hp| | | | | |HIP HIP | +44612 |850315 |PQ Vel |090523.4-421002 |EA | 7.66 | 7.83 | |Hp| | | | | |HIP HIP | +44655 |850316 |PR Vel |090557.0-524803 |LPB | 8.22 | 8.26 | |Hp| | | | | |HIP HIP | +44996 |850317 |PS Vel |090952.8-472834 |LPB | 6.78 | 6.81 | |Hp| | | | | |HIP HIP | +45079 |850318 |PT Vel |091057.7-431603 |EA | 7.05 | 7.60 | |Hp| | | | | |HIP HIP | +45392 |850319 |PU Vel |091500.8-401624 |EB | 8.52 | 8.65 | |Hp| | | | | |HIP HIP | +45467 |850320 |PV Vel |091554.8-495825 |ACYG: | 7.51 | 7.66 | |Hp| | | | | |HIP HIP | +45509 |850321 |PW Vel |091627.2-383937 |LB: | 8.37 | 8.55 | |Hp| | | | | |HIP HIP | +45548 |850322 |PX Vel |091700.4-512620 |ACV | 7.53 | 7.56 | |Hp| | | | | |HIP HIP | +45633 |850323 |PY Vel |091806.5-444537 |SRD: | 9.32 | 9.46 | |Hp| | | | | |HIP HIP | +45692 |850324 |PZ Vel |091853.3-494747 |LPB | 8.43 | 8.47 | |Hp| | | | | |HIP HIP | +45833 |850325 |QQ Vel |092042.1-421043 |BE | 9.74 | 9.87 | |Hp| | | | | |HIP HIP | +45934 |850326 |QR Vel |092158.4-511035 |BE | 10.13 | 10.30 | |Hp| | | | | |HIP HIP | +46295 |850327 |QS Vel |092627.4-511028 |ACV | 8.28 | 8.33 | |Hp| | | | | |HIP HIP | +46340 |850328 |QT Vel |092649.6-514611 |EA | 8.02 | 8.23 | |Hp| | | | | |HIP HIP | +46959 |850329 |QU Vel |093417.8-410322 |LB: | 8.17 | 8.28 | |Hp| | | | | |HIP HIP | +47074 |850330 |QV Vel |093538.2-483049 |ACV | 8.66 | 8.73 | |Hp| | | | | |HIP HIP | +48120 |850331 |QW Vel |094840.3-552943 |LB | 7.41 | 7.61 | |Hp| | | | | |HIP HIP | +48155 |850332 |QX Vel |094856.5-475445 |EB | 7.98 | 8.21 | |Hp| | | | | |HIP HIP | +48185 |850333 |QY Vel |094919.9-503934 |EA | 8.25 | 8.46 | |Hp| | | | | |HIP HIP | +48469 |850334 |QZ Vel |095300.1-552224 |LPB | 6.42 | 6.47 | |Hp| | | | | |HIP HIP | +48527 |850335 |V0335 Vel |095350.1-510848 |LPB | 5.88 | 5.91 | |Hp| | | | | |HIP HIP | +49393 |850336 |V0336 Vel |100501.8-565353 |DSCTC | 6.93 | 6.96 | |Hp| | | | | |HIP HIP | +49743 |850337 |V0337 Vel |100918.1-503823 |GCAS | 7.83 | 8.10 | |Hp| | | | | |HIP HIP | +49940 |850338 |V0338 Vel |101148.0-500924 |ACV | 7.86 | 7.92 | |Hp| | | | | |HIP HIP | +50276 |850339 |V0339 Vel |101555.7-443416 |LB | 8.23 | 8.47 | |Hp| | | | | |HIP HIP | +50463 |850340 |V0340 Vel |101812.0-504925 |E: | 7.89 | 7.99 | |Hp| | | | | |HIP HIP | +50550 |850341 |V0341 Vel |101929.4-453849 |EA | 7.90 | 8.30 | |Hp| | | | | |HIP HIP | +50598 |850342 |V0342 Vel |102011.7-523606 |ACYG: | 7.21 | 7.27 | |Hp| | | | | |HIP HIP | +50702 |850343 |V0343 Vel |102111.3-514456 |EA | 8.31 | 8.95 | |Hp| | | | | |HIP HIP | +50775 |850344 |V0344 Vel |102205.7-493152 |DSCTC | 7.96 | 8.00 | |Hp| | | | | |HIP HIP | +50780 |850345 |V0345 Vel |102208.9-491737 |EA | 7.49 | 7.95 | |Hp| | | | | |HIP HIP | +50970 |850346 |V0346 Vel |102439.6-541919 |LB | 6.50 | 6.84 | |Hp| | | | | |HIP HIP | +51049 |850347 |V0347 Vel |102546.4-545919 |LB | 7.03 | 7.13 | |Hp| | | | | |HIP HIP | +51087 |850348 |V0348 Vel |102615.6-535329 |SRC | 6.81 | 7.07 | |Hp| | | | | |HIP HIP | +51355 |850349 |V0349 Vel |102922.7-503414 |ACV: | 9.64 | 9.78 | |Hp| | | | | |HIP HIP | +51412 |850350 |V0350 Vel |103003.1-430747 |ACV | 7.45 | 7.53 | |Hp| | | | | |HIP HIP | +51595 |850351 |V0351 Vel |103221.8-411035 |E: | 12.19 | 12.79 | |Hp| | | | | |HIP HIP | +52095 |850352 |V0352 Vel |103842.9-494432 |LB: | 7.95 | 8.06 | |Hp| | | | | |HIP HIP | +52624 |850353 |V0353 Vel |104542.4-412951 |DSCTC: | 7.68 | 7.72 | |Hp| | | | | |HIP HIP | +52622 |850354 |V0354 Vel |104541.0-472735 |LB | 6.55 | 6.71 | |Hp| | | | | |HIP HIP | +52748 |850355 |V0355 Vel |104705.0-445333 |LB: | 8.90 | 9.08 | |Hp| | | | | |HIP HIP | +52816 |850356 |V0356 Vel |104755.5-521446 |EB | 6.73 | 6.87 | |Hp| | | | | |HIP HIP | +53676 |850357 |V0357 Vel |105857.4-540332 |LB: | 8.35 | 8.50 | |Hp| | | | | |HIP HIP | +53782 |850358 |V0358 Vel |110015.5-445439 |LB | 7.34 | 7.46 | |Hp| | | | | |HIP HIP | +53806 |850359 |V0359 Vel |110033.4-515650 |EA | 7.58 | 7.84 | |Hp| | | | | |HIP HIP | +53938 |850360 |V0360 Vel *|110211.7-422952 |ACV | 7.70 | 7.80 | |Hp| | | | | |HIP HIP | +53940 |850361 |V0361 Vel |110213.9-410651 |LB | 6.20 | 7.55 | |Hp| | | | | |HIP HIP | +54112 |850362 |V0362 Vel |110421.0-460331 |EW | 9.09 | 9.36 | |Hp| | | | | |HIP HIP | +42349 |850363 |V0363 Vel |083802.6-384535 |LPB | 8.84 | 8.93 | |Hp| | | | | |75030 CoD | +50596 |850398 |V0398 Vel |102009.0-563655 |ELL: | 7.92 |( 0.03 )| |V | | | 1.455 | |A1IV/V |78136 DM | +50996 |850399 |V0399 Vel |102501.1-570511 |BCEP: | 8.24 |( 0.02 )| |V | | | 0.65664 | |B9IV/V |78136 DM | +44550 |850405 |V0405 Vel *|090438.4-410353 |EA | 8.89 | 9.06 | 9.05 |V |48311.779 | | 10.31168 |02 : |G3V |79018 DM | +52362 |850432 |V0432 Vel |104206.5-425241 |EA | 9.04 | 9.22 | 9.22 |V |48970.460 | | 1.46857 |08 |F2V |79006 DM | +53357 |850440 |V0440 Vel |105443.6-453610 |EA | 9.47 | 9.63 | 9.60 |V |48603.597 | | 2.354858 |09 |A7III |79006 DM | +42036 |850451 |V0451 Vel *|083408.1-443241 |EB | 7.46 | 7.50 | 7.49 |V |52224.81 | | 7.8553 | |B2V |80011 HIP | NL80_2 +42913 |859004 |del Vel |084442.2-544232 |EA | 1.96 |( 0.4 )| |V | | | | | |76076 DM | +44816 |859011 |lam Vel *|090759.8-432557 |LC | 2.14 | 2.30 | |V | | | | |K4Ib-IIa |06620 CoD | +42536 |859015 |omi Vel *|084017.6-525519 |* | 3.55 | 3.67 | |V |44651.6922 | | 2.779 |50 |B3III-IV |10093 04745| +46701 |859214 |N Vel |093113.3-570204 |CST: | 3.12 | 3.15 | |V | | | | |K5III |03712 00021| +61667 |860001 |R Vir *|123829.9+065919 |M | 6.1 | 12.1 | |V |45872. | | 145.63 |50 |M3.5IIIe-M8.5e |00001 00002| +66100 |860002 |S Vir *|133300.1-071141 |M | 6.3 | 13.2 | |V |45046. | | 375.10 |45 |M6IIIe-M9.5e |00001 00002| +62712 |860004 |U Vir |125105.7+053312 |M | 7.4 | 13.5 | |V |44736. | | 206.64 |47 |M2e-M8e: |00001 00002| +65531 |860006 |W Vir *|132602.0-032243 |CWA | 9.46 | 10.75 | |V |32697.783 | | 17.2736 |38 |F0Ib-G0Ib |03716 03716| +70669 |860011 |RS Vir *|142716.4+044041 |M | 7.0 | 14.6 | |V |45753. | | 353.95 |37 |M6IIIe-M8e |00001 00002| +63642 |860012 |RT Vir *|130238.0+051108 |SRB | 7.41 | 8.70 | |V | | | 155. : | |M8III |00727 00097| +62401 |860013 |RU Vir *|124718.4+040841 |M | 9.0 | 14.2 | |V |37773. | | 433.2 |49 |C8,1e(R3ep) |10100 00002| +59108 |860015 |RW Vir |120714.9-064556 |LB | 6.72 | 7.38 | |V | | | | |M5III |08837 00097| +120212|860019 |SS Vir *|122514.4+004611 |SRA | 6.0 | 9.6 | |V |45361. | | 364.14 |48 |C6,3e(Ne) |00001 00002| +70702 |860020 |ST Vir *|142739.1-005406 |RRAB | 10.84 | 12.08 | |V |40736.374 | | 0.4108280 |12 |A6-A8 |04957 03506| +64569 |860023 |SW Vir |131404.4-024825 |SRB | 6.40 | 7.90 | |V | | | 150. : | |M7III |07444 08953| +57850 |860032 |TY Vir *|115150.1-054544 |SRD | 7.97 | 8.5 | |V | | | 50. : | |G3pIb |06231 BD | +59208 |860034 |UU Vir *|120835.1-002724 |RRAB | 9.89 | 11.07 | |V |41797.461 | | 0.47560652 |17 |A9-F5 |04957 00188| +64672 |860036 |UW Vir *|131520.7-172817 |EA/SD | 8.98 | 12.3 | |V |44345.413 | | 1.8107755 |14 |A2 |00001 00318| +63592 |860038 |UY Vir *|130153.4-194629 |EA/DM | 8.00 | 8.8 | 8.1 |V |30020.667 | | 1.9945051 |16 |A7V |00734 00024| +70751 |860060 |AF Vir *|142809.8+063244 |RRAB | 10.94 | 12.01 | |V |40333.771 | | 0.48376 |30 |A2 |10113 10159| +58605 |860061 |AG Vir *|120103.5+130030 |EW/KE | 8.35 |( 0.58 )|( 0.44 )|V |45432.4146 | | 0.64265075 | |A7-A9V |00001 00228| +59683 |860062 |AH Vir *|121421.0+114909 |EW/KW | 8.89 |( 0.60 )|( 0.53 )|V |45814.385 | | 0.407521 | |K0V+K0V |00001 00228| +69306 |860065 |AL Vir *|141109.1-131838 |CWA | 9.10 | 9.92 | |V |44396.69 | | 10.30256 |41 |F0-F8 |00001 08953| +65344 |860066 |AM Vir |132333.3-163958 |RRAB | 11.07 | 11.80 | |V |26859.275 | | 0.61508784 |21 |A6 |07806 00132| +63054 |860073 |AT Vir *|125510.5-052732 |RRAB | 10.63 | 11.82 | |V |39678.262 | | 0.5257931 |12 |A7 |00001 00464| +65445 |860074 |AU Vir *|132448.0-065846 |RRC | 11.36 | 11.90 | |V |41795.317 | | 0.3432307 |35 |A5-F6: |00001 00464| +65063 |860075 |AV Vir *|132011.6+091116 |RRAB | 11.42 | 12.16 | |V |41470.283 | | 0.6569090 |17 |A9-F6 |00001 03506| +65660 |860077 |AX Vir *|132744.8+035227 |EB/KE | 10.0 | 10.81 | 10.24 |V |27570.444 | | 0.7025262 | |A0p |09982 BD | +67653 |860080 |BB Vir *|135140.8+062551 |RRAB | 10.70 | 11.42 | |V |39613.776 | | 0.4710965 |13 |A2 |00001 03506| +65575 |860082 |BD Vir *|132640.6-160617 |EA/SD | 9.9 | 11.2 | |V |42538.413 | | 2.548537 |18 *|A5 |00001 00318| +67313 |860084 |BF Vir *|134752.6-003541 |EB/KE: | 10.5 | 11.23 | 10.72 |V |46070.684 | | 0.640570 | |A2 |06070 00753| +68258 |860086 |BH Vir *|135824.9-013939 |EA/DW/RS: | 9.60 | 10.56 | 10.24 |V |43230.609 | | 0.81687161 |16 *|G0V+G2V |00001 00110| +61022 |860088 |BK Vir |123021.0+042459 |SRB | 7.28 | 8.8 | |V | | | 150. : | |M7III |05429 08953| +63501 |860103 |BZ Vir |130041.3-173848 |M | 9.5 |< 13. | |p |29701. | | 150.92 | |M5e |01109 00110| +67439 |860106 |CE Vir |134917.1-015545 |RV: | 8.37 | 10.71 | |V | | | 67. : | |G-K |00729 08953| +61473 |860111 |CK Vir *|123547.5+090428 |SRD | 10.19 : | 11.04 | |V | | | 93. : | |G |06232 06232| +63344 |860114 |CN Vir |125848.4+081236 |SRB | 8.17 | 9.0 | |V | | | 60. : | |M3 |05429 08953| +68137 |860116 |CP Vir |135659.5+063429 |SRB | 8.38 | 8.91 | |V | | | 70. : | |M7 |05429 08953| +69929 |860119 |CS Vir *|141838.3-184258 |ACV | 5.84 | 5.95 | |V |40382.25 | | 9.2954 |50 |A0p(Cr-Eu) |04498 BD | +69389 |860121 |CU Vir *|141215.8+022434 |ACV | 4.92 | 5.07 | |V |41455.685 | | 0.5206794 |50 |A0Vp(Si) |00001 BD | +66200 |860123 |CW Vir *|133407.9+033932 |ACV | 4.91 | 4.99 | |V |34816.9 | | 3.7220 | |A1p(Sr-Cr-Eu) |05638 BD | +64769 |860133 |DK Vir *|131625.5-012326 |DSCTC | 6.67 | 6.72 | |V |41777.804 | | 0.119153 |40 |F0IV |08101 BD | +67744 |860134 |DL Vir *|135238.8-184233 |EA | 7.0 | 7.5 | |V |38796.525 | | 1.31548 |14 |G8III+A3 |05640 08953| +69029 |860135 |DM Vir *|140752.4-110908 |EA/D | 8.75 | 9.50 | 9.49 |V |43583.8810 | | 4.6694335 |06 *|F6IV+F6IV |10144 08953| +69325 |860136 |DN Vir *|141119.2-102845 |SRB | 9.1 | 9.6 | |p | | | | |MB |05828 08953| +63510 |860142 |DT Vir *|130046.6+122233 |UV+BY | 10.34 | 11.32 | |B | | | | |M2Ve |05793 07060| +62376 |860159 |EP Vir *|124702.3+055701 |ACV | 6.29 | 6.39 | |V |40640.20 | | 16.304 | |A0p(Sr-Eu-Cr) |10152 BD | +66252 |860160 |EQ Vir *|133443.2-082031 |UV+BY | 11.80 | 14.1 | |U | | | | |K5Ve |06948 BD | +68937 |860161 |ER Vir |140641.6-141218 |SRB | 6.45 | 6.63 | |V |40752. | | 55. | |M4III |05828 BD | +69269 |860163 |ET Vir |141050.5-161807 |SRB | 4.80 | 5.00 | |V |40697. :| | 80. | |M2IIIa |05828 BD | +69449 |860165 |EV Vir |141309.8-135136 |SRB | 6.74 | 7.09 | |V |40726. | | 120. | |M4II-III |05828 BD | +69981 |860168 |EY Vir *|141911.7-132554 |SRB | 8.2 : | 8.6 : | |V | | | | |M5 |05828 BD | +70134 |860169 |EZ Vir |142104.1-185932 |SRB | 7.77 | 7.97 | |V |40710. :| | 39. | |M1 |05828 BD | +70553 |860170 |FF Vir *|142555.9+005934 |ACV | 7.07 | 7.13 | |V | | | 130.0 | |A2p(Cr-Sr) |06265 BD | +59676 |860171 |FG Vir *|121415.5-054300 |DSCTC | 6.53 | 6.58 | |V | | | 0.079 | |Am |10191 BD | +64768 |860172 |FH Vir |131623.9+063017 |SRB | 6.92 | 7.45 | |V |40740. | | 70. : | |M6III |06351 08953| +60500 |860174 |FK Vir |122411.5+055818 |SRB | 7.50 | 7.78 | |V | | | 40. : | |M4III |06645 BD | +62267 |860176 |FM Vir *|124537.1+074024 |DSCTC | 5.20 | 5.28 | |V | | | 0.07188 | |F0IVm+A7V |10179 BD | +65839 |860178 |FO Vir *|132947.1+010543 |EB/KE | 6.50 | 6.82 | 6.67 |V |45441.7110 | | 0.775567 | |A7V |10180 BD | +66345 |860179 |FP Vir |133552.1+081734 |SRB | 6.72 | 7.35 | |V | | | 40. : | |M4III |06645 BD | +69126 |860181 |FR Vir |140900.3-191444 |LB: | 7.02 | 7.19 | |V | | | | |M3III |06590 BD | +69614 |860182 |FS Vir |141453.0+032009 |LB: | 6.37 | 6.52 | |V | | | | |M4IIIab |06590 BD | +60813 |860183 |FT Vir |122751.5-043655 |DSCTC | 6.20 | 6.24 | |V | | | 0.05 | |F2III |07489 BD | +61658 |860186 |FW Vir |123822.4+015117 |SRB: | 5.63 | 5.75 | |V |42250. | | 15. : |50 |M3IIIab |07873 BD | +60924 |860189 |FZ Vir |122909.7-022546 |SRB | 6.81 | 6.98 | |V | | | 25. | |M4III |07959 BD | +61937 |860190 |GG Vir *|124134.4+102535 |DSCT | 6.19 | 6.33 | |V | | | | |A7V |10183 HIP | +66339 |860198 |GP Vir |133543.3-060922 |GCAS | 8.03 | 8.10 | |V | | | | |B5e |08580 04785| +72138 |860200 |GR Vir *|144520.3-064404 |EW/KW | 7.8 |( 0.45 : )|( 0.41 )|V |45116.381 | | 0.419757 | |G0 |10192 08581| +64498 |860208 |GZ Vir |131313.8-023321 |DSCTC | 8.0 |( 0.035 )| |V | | | | | |67378 BD | +67186 |860220 |HT Vir |134606.8+050656 |EW/KW | 7.06 | 7.48 | |V | | | | | |67383 BD | +59600 |860221 |HU Vir |121320.7-090447 |RS: | 8.1 |( 0.27 )| |V | | | | | |68316 BD | +62157 |860223 |HW Vir |124420.2-084017 |EA/D | 10.5 |( 0.90 )| |V | | | | | |69291 BD | +66015 |860224 |HX Vir |133202.8-184344 |DSCTC | 6.01 |( 0.02 )| |V | | | | | |69292 BD | +64120 |860225 |HY Vir |130829.9-024044 |EA | 7.81 | 8.10 | |V | | | | | |70137 BD | +59346 |860227 |II Vir |121027.2-074626 |DSCTC: | 6.49 | 6.55 | |V | | | | | |71109 BD | +65411 |860231 |IN Vir |132424.2-021855 |RS | 9.24 |( 0.15 )| |V | | | | | |71007 BD | +58002 |860234 |IQ Vir |115350.3+003308 |DSCTC | 6.30 |( 0.02 )| |V | | | | | |73067 BD | +63958 |860236 |IS Vir |130626.0-045045 |RS | 8.27 |( 0.05 )| |V | | | | | |73005 BD | +68023 |860237 |IT Vir |135547.0-181457 |ELL | 7.82 | 7.86 | |V | | | | | |73342 BD | +56724 |860240 |IW Vir |113748.0+041924 |LB | 8.79 | 9.52 | |Hp| | | | | |HIP HIP | +57264 |860241 |IX Vir |114436.1-012305 |LB: | 8.22 | 8.48 | |Hp| | | | | |HIP HIP | +58372 |860242 |IY Vir |115809.4+073247 |LB: | 9.43 | 9.59 | |Hp| | | | | |HIP HIP | +58866 |860243 |IZ Vir |120418.8+045554 |SRB | 7.14 | 7.24 | |Hp| | | | | |HIP HIP | +59289 |860244 |KK Vir |120946.3+081044 |LB: | 9.23 | 9.34 | |Hp| | | | | |HIP HIP | +59549 |860245 |KL Vir |121246.6+110641 |SRB | 8.27 | 8.42 | |Hp| | | | | |HIP HIP | +60126 |860246 |KM Vir |121951.9+113555 |LB | 8.15 | 8.30 | |Hp| | | | | |HIP HIP | +60298 |860247 |KN Vir |122151.1-042311 |LB: | 7.41 | 7.51 | |Hp| | | | | |HIP HIP | +60333 |860248 |KO Vir |122215.0+045118 |LB | 7.46 | 7.62 | |Hp| | | | | |HIP HIP | +60812 |860249 |KP Vir |122751.0-101002 |EA | 8.42 | 8.79 | |Hp| | | | | |HIP HIP | +60938 |860250 |KQ Vir |122922.9-011359 |LB: | 8.84 | 8.95 | |Hp| | | | | |HIP HIP | +61899 |860251 |KR Vir |124103.6-003714 |SRD: | 9.39 | 9.65 | |Hp| | | | | |HIP HIP | +61903 |860252 |KS Vir |124108.9-091444 |LB | 7.62 | 7.82 | |Hp| | | | | |HIP HIP | +62070 |860253 |KT Vir |124315.9+100603 |SRB | 7.42 | 7.56 | |Hp| | | | | |HIP HIP | +62168 |860254 |KU Vir |124425.4+003212 |LB | 7.86 | 8.06 | |Hp| | | | | |HIP HIP | +63313 |860255 |KV Vir |125831.0-123048 |LB: | 7.82 | 7.92 | |Hp| | | | | |HIP HIP | +63560 |860256 |KW Vir |130130.4+013113 |SRB | 7.45 | 7.58 | |Hp| | | | | |HIP HIP | +63752 |860257 |KX Vir |130359.8+111351 |SRB | 7.30 | 7.42 | |Hp| | | | | |HIP HIP | +64210 |860258 |KY Vir |130936.1-074651 |SRB: | 8.02 | 8.35 | |Hp| | | | | |HIP HIP | +64433 |860259 |KZ Vir |131222.9+023914 |EB: | 8.45 | 8.52 | |Hp| | | | | |HIP HIP | +64460 |860260 |LL Vir |131245.8-014530 |SRB: | 6.91 | 7.08 | |Hp| | | | | |HIP HIP | +64607 |860262 |LN Vir |131431.3+111954 |E: | 5.75 | 5.80 | |Hp| | | | | |HIP HIP | +64645 |860263 |LO Vir |131502.9+043103 |SRB | 7.16 | 7.30 | |Hp| | | | | |HIP HIP | +64834 |860264 |LP Vir |131727.3-103247 |ELL: | 6.92 | 7.08 | |Hp| | | | | |HIP HIP | +64935 |860265 |LQ Vir |131836.7+125442 |LB | 8.16 | 8.30 | |Hp| | | | | |HIP HIP | +64959 |860266 |LR Vir |131854.1+023237 |SRD | 8.44 | 8.70 | |Hp| | | | | |HIP HIP | +65122 |860267 |LS Vir |132045.2-112701 |SRB: | 8.30 | 8.54 | |Hp| | | | | |HIP HIP | +65225 |860268 |LT Vir |132201.8+024526 |SRB: | 7.49 | 7.67 | |Hp| | | | | |HIP HIP | +65590 |860269 |LU Vir |132653.5-055551 |EB: | 7.88 | 8.16 | |Hp| | | | | |HIP HIP | +66078 |860270 |LV Vir *|133246.1-174533 |EW: | 8.50 | 8.68 | |Hp| | | | | |HIP HIP | +66266 |860271 |LW Vir |133454.3-090218 |LB: | 9.14 | 9.29 | |Hp| | | | | |HIP HIP | +66324 |860272 |LX Vir |133532.0-042324 |LB | 8.41 | 8.75 | |Hp| | | | | |HIP HIP | +66407 |860273 |LY Vir |133651.6-214210 |LB: | 8.45 | 8.81 | |Hp| | | | | |HIP HIP | +66875 |860274 |LZ Vir |134221.4+005949 |LB | 7.99 | 8.17 | |Hp| | | | | |HIP HIP | +67254 |860275 |MM Vir |134704.6-130644 |SRB: | 8.89 | 9.05 | |Hp| | | | | |HIP HIP | +67471 |860276 |MN Vir |134936.8-091156 |LB: | 9.02 | 9.13 | |Hp| | | | | |HIP HIP | +67709 |860277 |MO Vir |135215.8-013022 |SRD | 9.03 | 9.26 | |Hp| | | | | |HIP HIP | +68221 |860278 |MP Vir |135758.4-042310 |LB: | 8.72 | 8.82 | |Hp| | | | | |HIP HIP | +68383 |860279 |MQ Vir |135953.4-222041 |LB | 8.80 | 8.99 | |Hp| | | | | |HIP HIP | +68718 |860280 |MR Vir |140402.3-002145 |EB | 8.57 | 8.69 | |Hp| | | | | |HIP HIP | +68881 |860281 |MS Vir |140614.4-174119 |EW: | 9.40 | 9.67 | |Hp| | | | | |HIP HIP | +69348 |860282 |MT Vir |141135.5-115332 |LB: | 9.02 | 9.16 | |Hp| | | | | |HIP HIP | +69403 |860283 |MU Vir |141233.5-095400 |E: | 7.24 | 7.28 | |Hp| | | | | |HIP HIP | +69562 |860284 |MV Vir |141421.4-152122 |BY: | 10.38 | 12.06 | |Hp| | | | | |HIP HIP | +69828 |860285 |MW Vir *|141727.7-195750 |EW: | 7.00 | 7.04 | |Hp| | | | | |HIP HIP | +69848 |860286 |MX Vir |141741.8-214944 |DSCTC: | 7.41 | 7.46 | |Hp| | | | | |HIP HIP | +69966 |860287 |MY Vir |141901.5+041047 |LB: | 8.19 | 8.52 | |Hp| | | | | |HIP HIP | +69987 |860288 |MZ Vir |141914.9-142429 |LB | 7.29 | 7.66 | |Hp| | | | | |HIP HIP | +70020 |860289 |NN Vir *|141937.7+055347 |RRC: | 7.60 | 8.02 | |Hp| | | | | |HIP HIP | +70188 |860290 |NO Vir |142135.0-022308 |LB | 8.03 | 8.34 | |Hp| | | | | |HIP HIP | +70450 |860291 |NP Vir |142440.0+023213 |SRB: | 8.79 | 9.00 | |Hp| | | | | |HIP HIP | +70772 |860292 |NQ Vir |142828.6+054051 |LB | 7.36 | 7.57 | |Hp| | | | | |HIP HIP | +70816 |860293 |NR Vir |142856.5+034311 |SRD | 6.93 | 7.09 | |Hp| | | | | |HIP HIP | +71052 |860294 |NS Vir |143149.8+064136 |EB | 8.79 | 9.13 | |Hp| | | | | |HIP HIP | +71374 |860295 |NT Vir |143546.7+021438 |LB: | 8.47 | 8.61 | |Hp| | | | | |HIP HIP | +71455 |860296 |NU Vir |143644.9+025021 |SRD | 8.47 | 8.73 | |Hp| | | | | |HIP HIP | +71868 |860297 |NV Vir |144158.7-033125 |SRB: | 8.54 | 8.98 | |Hp| | | | | |HIP HIP | +72268 |860298 |NW Vir |144644.2+071653 |LB: | 7.22 | 7.32 | |Hp| | | | | |HIP HIP | +71820 |860309 |OV Vir |144130.2-020228 |DSCTC: | 7.83 |( 0.03 v )| |V | | | | | |76126 DM | +58981 |860311 |OX Vir |120535.0-055045 |SRS: | 6.64 | 6.75 | |V | | | | | |77053 DM | +63487 |860312 |OY Vir |130030.2+033615 |SRS | 7.51 |( 0.06 )| |V | | | | | |77008 DM | +68790 |860314 |PP Vir |140448.9+052452 |ACVO | 8.67 |( 0.01 )| |B | | | | | |77112 DM | +57658 |860315 |PQ Vir |114928.1+003633 |BY: | 9.12 |( 0.03 )| |V | | | | |K0V |78018 DM | +58237 |860316 |PR Vir |115641.2-024644 |BY | 9.50 |( 0.05 )| |V | | | 17.16 | |K3V |78018 DM | +63742 |860322 |PX Vir |130349.7-050943 |BY | 7.69 |( 0.04 )| |V | | | 6.47 | |G5V |78018 DM | +67705 |860328 |QT Vir |135209.3+060005 |DSCTC | 8.50 |( 0.02 b )| |V | | | 0.0562 | |A3 |78037 DM | +72312 |860333 |QY Vir |144716.1+024212 |BY | 7.76 |( 0.02 )| |V | | | 21.79 | |G8V |78018 DM | +70566 |860349 |V0349 Vir |142603.1-004130 |EA | 8.29 | 8.34 | 8.30 |V |48612.396 | | 2.12408 |06 |F3V |79003 DM | +64473 |860457 |V0457 Vir |131253.6+082336 |RS | 8.42 | 8.54 | |V | | | 9.870 | |G5 |80034 HIP | NL80_2 +65474 |869001 |alf Vir *|132511.6-110941 |ELL+BCEP | 0.95 |( 0.10 )|( 0.08 )|V |19530.49 | | 4.014604 | |B1III-IV+B2V |04627 BD | +57380 |869013 |nu. Vir |114551.6+063146 |SRB | 4.10 | 4.16 | |Hp| | | | | |HIP HIP | +61960 |869017 |rho Vir |124153.1+101408 |DSCTC | 4.88 |( 0.02 )| |V | | | | | |67385 BD | +62985 |869023 |psi Vir *|125421.2-093220 |LB | 4.73 | 4.96 | |V | | | | |M3III |05055 BD | +56779 |869024 |ome Vir |113827.6+080804 |LB | 5.23 | 5.50 | |V | | | | |M4III | BD | +36423 |870002 |S Vol *|072945.6-732244 |M | 7.7 | 13.9 | |V |41940. | | 394.8 |54 |M4e |00001 00002| +37120 |870006 |W Vol |073740.0-693232 |EA/AR: | 10.9 | 11.8 | |p |16846.411 | | 2.758361 |17 *|K/M |00760 CPD | +31539 |870039 |UZ Vol |063608.0-724707 |E: | 9.41 | 9.90 | |Hp| | | | | |HIP HIP | +32507 |870040 |VV Vol |064702.8-702806 |SRB | 8.42 | 8.62 | |Hp| | | | | |HIP HIP | +32953 |870041 |VW Vol |065149.4-692457 |LB: | 8.67 | 8.78 | |Hp| | | | | |HIP HIP | +33107 |870042 |VX Vol |065344.3-655450 |E: | 8.03 | 8.28 | |Hp| | | | | |HIP HIP | +33115 |870043 |VY Vol |065349.8-713549 |LB: | 8.81 | 8.92 | |Hp| | | | | |HIP HIP | +34126 |870044 |VZ Vol |070435.1-681455 |LB: | 8.21 | 8.34 | |Hp| | | | | |HIP HIP | +35464 |870045 |WW Vol |071914.6-671115 |LB | 7.92 | 8.21 | |V | | | | | |HIP HIP | +37695 |870046 |WX Vol |074400.8-671207 |LB | 7.51 | 7.67 | |Hp| | | | | |HIP HIP | +39791 |870047 |WY Vol |080751.3-695357 |ACV | 7.97 | 8.02 | |Hp| | | | | |HIP HIP | +42841 |870048 |WZ Vol |084346.2-714934 |EA | 8.40 | 8.66 | |Hp| | | | | |HIP HIP | +38176 |870064 |AK Vol |074923.1-654927 |RS | 8.54 | 8.65 | |V | | | 31.808 | |G8III |80286 DM | NL80_2 +104015|880001 |R Vul *|210422.5+234918 |M | 7.0 | 14.3 | |V |45586. | | 136.73 |49 |M3e-M7e |00001 00002| +102949|880003 |T Vul *|205128.2+281502 |DCEP | 5.41 | 6.09 | |V |41705.121 | | 4.435462 |32 |F5Ib-G0Ib |08300 08953| +96458 |880004 |U Vul |193637.7+201959 |DCEP | 6.73 | 7.54 | |V |44939.58 | | 7.990676 |33 |F6Iab-G2 |00001 00766| +99362 |880006 |W Vul *|201004.3+261707 |SRB | 10.2 | 11.8 | |p | | | 234.52 |43 |M5IIIe |03785 08953| +98212 |880007 |X Vul *|195728.6+263323 |DCEP | 8.33 | 9.22 | |V |35309.977 | | 6.319588 |30 |F6Ia-F9 |09667 00884| +95163 |880009 |Z Vul *|192139.1+253430 |EA/SD | 7.25 | 8.90 | 7.58 |V |42947.4777 | | 2.454934 |18 *|B4V+A3III |00001 00010| +94822 |880011 |RS Vul *|191740.0+222628 |EA/SD: | 6.79 | 7.83 | 6.86 |V |32808.257 | | 4.4776635 |14 *|B4V+A2IV |00770 08953| +94287 |880012 |RT Vul |191128.8+222259 |CST | 7.5 | | |p | | | | |B8 |00366 00021| +101888|880013 |RU Vul *|203852.7+231531 |SRA | 8.1 | 12.7 | |V |43440. | | 173.6 |47 |M3e-M4e |00001 00002| +103069|880016 |RX Vul *|205259.8+232216 |M | 11. | 15. | |p |27520. | | 457. | |M9e |00001 00567| +97717 |880022 |SV Vul *|195130.9+272737 |DCEP | 6.72 | 7.79 | |V |43086.89 | | 45.0121 |23 |F7Iab-K0Iab |10155 00766| +95702 |880091 |BN Vul *|192756.1+242051 |RRAB | 10.63 | 11.40 | |V |45530.395 | | 0.5941295 |19 |A6-F4 |00001 00616| +100745|880093 |BP Vul *|202533.3+210218 |EA/SD | 10.1 | 11.3 | 10.5 |p |46003.248 | | 1.9403491 |10 *|A7 |00001 10158| +97309 |880095 |BR Vul |194635.2+225323 |DCEP | 11.8 | 12.8 | |p |16728.15 | | 5.197170 |28 | |03788 02329| +103191|880100 |BW Vul *|205422.4+283119 |BCEP | 6.52 |( 0.24 )| |V |45177.6220 | | 0.20104117 |50 |B1III-B2IIIeaV |09953 00021| +103933|880147 |DY Vul *|210329.8+235947 |LB | 8.4 | 9.7 | |p | | | | |M3-M6 |00797 08953| +103833|880161 |ER Vul *|210225.9+274827 |EW/DW/RS | 7.27 | 7.49 |< 7.44 |V |40182.2621 | | 0.69809409 | |G0V+G5V |10188 BD | +94827 |880162 |ES Vul *|191743.6+230132 |BCEP: | 5.42 |( 0.06 )| |V |36338.5 | | 0.6096 |50 |O8IV-B0.5IVeV |02602 BD | +101527|880171 |FG Vul *|203433.0+281651 |SRC | 8.97 | 9.51 | |V |36095.8 | | 86.0 | |M5II |10190 02973| +102720|880173 |FI Vul |204851.2+225939 |LB | 8.6 | 10.3 | |p | | | | |M3 |03135 08953| +93603 |880268 |LT Vul *|190342.5+211606 |DSCT | 6.52 | 6.62 | |V |40720.7916 | | 0.1090 |47 |F2III |07015 00021| +99927 |880285 |MW Vul |201627.2+274634 |ACV | 6.62 | 6.70 | |V |42644.3 | | 16.846 |40 |A0p(Si) |08824 BD | +98543 |880295 |NT Vul |200106.0+274513 |ACV | 4.62 | 4.67 | |V |41885.2 | | 14.0 | |A4IIIm |04447 BD | +99738 |880296 |NU Vul |201414.5+284141 |DSCTC | 5.36 |( 0.05 )| |B | | | 0.227 | |A7IVn-shell |10177 BD | +97091 |880317 |PS Vul *|194356.0+270807 |E: | 6.28 |( 0.076 )| |V | | | | |B7V+G1:III |07964 BD | +99824 |880326 |QR Vul |201515.9+253531 |GCAS | 4.60 | 4.80 | |V | | | | | |67396 BD | +99853 |880327 |QS Vul |201530.2+233032 |EA/GS | 5.15 |( 0.12 )| |V | | | | | |67397 BD | +97281 |880333 |QY Vul |194615.9+281619 |E/WR | 10.43 | 10.53 | |B | | | | | |69299 69224| +95260 |880377 |V0377 Vul |192250.9+261545 |LPB | 5.18 |( 0.03 )| |V | | | | | |73347 BD | +97572 |880379 |V0379 Vul |194954.7+282623 |ELL | 6.22 | 6.29 | |V | | | | | |73349 BD | +99923 |880383 |V0383 Vul |201625.6+222347 |DSCTC | 7.2 |( 0.03 v )| |V | | | | | |73279 BD | +93270 |880387 |V0387 Vul |185958.1+224852 |LB | 6.21 | 6.32 | |Hp| | | | | |HIP HIP | +94427 |880388 |V0388 Vul |191308.7+225208 |ACV: | 9.69 | 9.82 | |Hp| | | | | |HIP HIP | +94969 |880389 |V0389 Vul |191931.9+223415 |SRB | 6.69 | 6.98 | |Hp| | | | | |HIP HIP | +95512 |880390 |V0390 Vul |192539.0+260614 |ACV: | 7.39 | 7.41 | |Hp| | | | | |HIP HIP | +96034 |880391 |V0391 Vul |193136.4+265912 |LPB | 7.32 | 7.36 | |Hp| | | | | |HIP HIP | +96228 |880392 |V0392 Vul |193404.7+241837 |ACV: | 9.99 | 10.14 | |Hp| | | | | |HIP HIP | +96493 |880393 |V0393 Vul |193657.9+205707 |BY: | 9.39 | 9.56 | |Hp| | | | | |HIP HIP | +97500 |880394 |V0394 Vul |194902.7+202531 |E: | 8.75 | 8.92 | |Hp| | | | | |HIP HIP | +97679 |880395 |V0395 Vul |195104.1+223636 |BE | 4.78 | 4.97 | |V | | | | | |HIP HIP | +97681 |880396 |V0396 Vul |195104.7+274301 |BE | 7.77 | 7.82 | |Hp| | | | | |HIP HIP | +98504 |880397 |V0397 Vul |200043.4+234756 |ELL: | 7.38 | 7.46 | |Hp| | | | | |HIP HIP | +99402 |880398 |V0398 Vul *|201032.2+292150 |LPB: | 7.54 | 7.62 | |Hp| | | | | |HIP HIP | +100719|880399 |V0399 Vul |202510.8+212919 |EA: | 7.01 | 7.17 | |Hp| | | | | |HIP HIP | +102037|880400 |V0400 Vul |204042.3+260445 |EA: | 6.76 | 6.82 | |Hp| | | | | |HIP HIP | +102238|880401 |V0401 Vul |204300.2+264834 |BY: | 10.85 | 11.03 | |Hp| | | | | |HIP HIP | +102650|880402 |V0402 Vul |204806.3+272726 |EB: | 8.32 | 8.45 | |Hp| | | | | |HIP HIP | +104135|880403 |V0403 Vul |210555.5+205648 |EB | 6.83 | 6.88 | |Hp| | | | | |HIP HIP | +104175|880404 |V0404 Vul |210625.0+213807 |SRD | 9.46 | 9.69 | |Hp| | | | | |HIP HIP | +98505 |880452 |V0452 Vul |200043.7+224239 |BY | 7.67 |( 0.03 )| |V | | | 12.039 | |G5V |78018 DM | +105232|880457 |V0457 Vul |211858.2+261350 |BY | 8.45 |( 0.04 )| |V | | | 6.664 | |G8V |78018 DM | diff -Nru stellarium-0.12.1/util/HipJ1991ToJ2000.pl stellarium-0.12.4/util/HipJ1991ToJ2000.pl --- stellarium-0.12.1/util/HipJ1991ToJ2000.pl 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/HipJ1991ToJ2000.pl 2013-09-07 15:50:48.000000000 +0000 @@ -6,6 +6,23 @@ # # All catalogs can be found here: http://astro.uni-altai.ru/~aw/stellarium/hipparcos/ # +# Copyright (C) 2013 Alexander Wolf +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA +# 02110-1335, USA. + # Original Hipparcos catalog (1997; J1991.25) $HIPmain = "./hip_main.dat"; diff -Nru stellarium-0.12.1/util/HipJ1991ToJ2000.v2.pl stellarium-0.12.4/util/HipJ1991ToJ2000.v2.pl --- stellarium-0.12.1/util/HipJ1991ToJ2000.v2.pl 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/util/HipJ1991ToJ2000.v2.pl 2013-09-07 15:50:48.000000000 +0000 @@ -0,0 +1,129 @@ +#!/usr/bin/perl -w + +# +# Copyright (C) 2013 Alexander Wolf +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA +# 02110-1335, USA. + +# v.1 +# This tool read original Hipparcos catalog (J1991.25) + Hipparcos from VizieR (J2000.0) +# and update coordinates in original catalog. +# v.2 +# Get Hipparcos 2 from VizieR (cat. 2007 - I/311) and improve original catalog. +# +# All catalogs can be found here: http://astro.uni-altai.ru/~aw/stellarium/hipparcos/ +# + +# Original Hipparcos catalog (1997; J1991.25) +$HIPmain = "./hip_main.dat"; +$HIPcom = "./h_dm_com.dat"; + +# Hipparcos from VizieR (2013; J2000.0) +$HIPmainV = "./hip_main_j2000.dat"; +$HIPmainVa = "./hip_main_j2000a.dat"; +$HIPcomV = "./h_dm_com_j2000.dat"; + +# Hipparcos 2 from VizieR (2013) +$HIP2main = "./hip2_main.dat"; + +# Result +$HIPmainR = "./hip_main_r.dat"; +$HIPcomR = "./h_dm_com_r.dat"; + +# Hipparcos main catalog +open(oHIP, "<$HIPmain"); +@catalog = ; +close oHIP; + +open(cHIP, "<$HIPmainV"); +@catalogV = ; +close cHIP; + +open(vHIP, "<$HIPmainVa"); +@catalogA = ; +close vHIP; + +open(tHIP, "<$HIP2main"); +@catalogT = ; +close tHIP; + +for($i=0;$i$HIPmainR"); +for($i=0;$i; +close oHIP; + +open(cHIP, "<$HIPcomV"); +@catalogV = ; +close cHIP; + +open(rHIP, ">$HIPcomR"); +for($i=0;$is (Brasil) +LanguageName=Português brasileiro LanguageID=$0416 LanguageCodePage=1252 [CustomMessages] -ForAllUsers=Para todos os usu<00E1>rios -ForCurrentUserOnly=Apenas para o usu<00E1>rio atual -RemoveFromPreviousInstallation=Remover os arquivos deixados por uma instala<00E7><00E3>o anterior: -RemoveMainConfig=Remover o arquivo de configura<00E7><00E3>o principal -RemovePluginsConfig=Remover os arquivos de configura<00E7><00E3>o dos complementos +ForAllUsers=Para todos os usuários +ForCurrentUserOnly=Apenas para o usuário atual +RemoveFromPreviousInstallation=Remover os arquivos deixados por uma instalação anterior: +RemoveMainConfig=Remover o arquivo de configuração principal +RemovePluginsConfig=Remover os arquivos de configuração dos complementos RemoveSolarConfig=Remover o arquivo do Sistema Solar -RemoveUILandscapes=Remover as paisagens instaladas pelo usu<00E1>rio -RemoveShortcutsConfig=Remover o arquivo de configura<00E7><00E3>o de atalhos -LastRunLog=Registro da <00FA>ltima execu<00E7><00E3>o -ChangeLog=Registro de altera<00E7><00F5>es +RemoveUILandscapes=Remover as paisagens instaladas pelo usuário +RemoveShortcutsConfig=Remover o arquivo de configuração de atalhos +LastRunLog=Registro da última execução +ChangeLog=Registro de alterações FallbackMode=(modo de compatibilidade) diff -Nru stellarium-0.12.1/util/constellationship_check.pl stellarium-0.12.4/util/constellationship_check.pl --- stellarium-0.12.1/util/constellationship_check.pl 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/constellationship_check.pl 2013-09-07 15:50:48.000000000 +0000 @@ -3,7 +3,6 @@ # Quick sanity check for constellationship.fab files # - $c = $F[0]; $n = $F[1]; @F = @F[2..$#F]; diff -Nru stellarium-0.12.1/util/copy-translations.bat.cmake stellarium-0.12.4/util/copy-translations.bat.cmake --- stellarium-0.12.1/util/copy-translations.bat.cmake 1970-01-01 00:00:00.000000000 +0000 +++ stellarium-0.12.4/util/copy-translations.bat.cmake 2013-08-04 06:20:27.000000000 +0000 @@ -0,0 +1,21 @@ +@echo off +REM Translation files copying script (by Bogdan Marinov) +REM This script copies compiled translation files from the build directory to +REM the project's root directory, allowing translations to be tested without +REM packing Stellarium or manually copying files. +REM +REM Can be run from Qt Creator if added in "Tools"->"External"->"Configure..." +REM Just set the "Working directory" field to "%{CurrentProject:Path}" +REM +REM WARNING: The .cmake file just generates the script, you need the .bat file +REM generated after CMake is first run! + +setlocal EnableDelayedExpansion +rd @PROJECT_SOURCE_DIR_WINPATH@\locale +cd @PROJECT_BINARY_DIR_WINPATH@\po\stellarium + +for %%f in (*.gmo) do ( +set d=@PROJECT_SOURCE_DIR_WINPATH@\locale\%%~nf\LC_MESSAGES\ +md !d! +copy .\%%f !d!\stellarium.mo +) diff -Nru stellarium-0.12.1/util/dssheaderToJSON.py stellarium-0.12.4/util/dssheaderToJSON.py --- stellarium-0.12.1/util/dssheaderToJSON.py 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/dssheaderToJSON.py 2013-09-07 15:50:48.000000000 +0000 @@ -1,6 +1,8 @@ #!/usr/bin/python +# # Simple script which convert the FITS headers associated to Brian McLean DSS images into simplified JSON files # Fabien Chereau fchereau@eso.org +# import sys import os diff -Nru stellarium-0.12.1/util/genSkyTiles.py stellarium-0.12.4/util/genSkyTiles.py --- stellarium-0.12.1/util/genSkyTiles.py 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/genSkyTiles.py 2013-09-07 15:50:48.000000000 +0000 @@ -13,7 +13,8 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA +# 02110-1335, USA. # Tool which converts a large image + FITS headers into a bunch of multiresolution tiles + JSON description files diff -Nru stellarium-0.12.1/util/generate_asteroid_ssystem.pl stellarium-0.12.4/util/generate_asteroid_ssystem.pl --- stellarium-0.12.1/util/generate_asteroid_ssystem.pl 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/generate_asteroid_ssystem.pl 2013-09-07 15:50:48.000000000 +0000 @@ -1,6 +1,7 @@ #!/usr/bin/perl # # See POD docs at end of this file for genereal info +# use strict; use warnings; diff -Nru stellarium-0.12.1/util/import_launchpad_translations.sh stellarium-0.12.4/util/import_launchpad_translations.sh --- stellarium-0.12.1/util/import_launchpad_translations.sh 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/import_launchpad_translations.sh 2013-09-07 15:50:48.000000000 +0000 @@ -22,8 +22,8 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. +# Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA +# 02110-1335, USA. main() { po_dir="${STELROOT:?You must set STELROOT before running this program}/po" diff -Nru stellarium-0.12.1/util/locations-editor/Makefile stellarium-0.12.4/util/locations-editor/Makefile --- stellarium-0.12.1/util/locations-editor/Makefile 2013-04-17 15:06:40.000000000 +0000 +++ stellarium-0.12.4/util/locations-editor/Makefile 1970-01-01 00:00:00.000000000 +0000 @@ -1,304 +0,0 @@ -############################################################################# -# Makefile for building: locations-editor -# Generated by qmake (2.01a) (Qt 4.8.1) on: Wed Apr 17 22:06:40 2013 -# Project: locations-editor.pro -# Template: app -# Command: /usr/bin/qmake -o Makefile locations-editor.pro -############################################################################# - -####### Compiler, tools and options - -CC = gcc -CXX = g++ -DEFINES = -DQT_WEBKIT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -CFLAGS = -m64 -pipe -O2 -Wall -W -D_REENTRANT $(DEFINES) -CXXFLAGS = -m64 -pipe -O2 -Wall -W -D_REENTRANT $(DEFINES) -INCPATH = -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I. -LINK = g++ -LFLAGS = -m64 -Wl,-O1 -LIBS = $(SUBLIBS) -L/usr/lib/x86_64-linux-gnu -lQtGui -lQtCore -lpthread -AR = ar cqs -RANLIB = -QMAKE = /usr/bin/qmake -TAR = tar -cf -COMPRESS = gzip -9f -COPY = cp -f -SED = sed -COPY_FILE = $(COPY) -COPY_DIR = $(COPY) -r -STRIP = strip -INSTALL_FILE = install -m 644 -p -INSTALL_DIR = $(COPY_DIR) -INSTALL_PROGRAM = install -m 755 -p -DEL_FILE = rm -f -SYMLINK = ln -f -s -DEL_DIR = rmdir -MOVE = mv -f -CHK_DIR_EXISTS= test -d -MKDIR = mkdir -p - -####### Output directory - -OBJECTS_DIR = ./ - -####### Files - -SOURCES = main.cpp \ - LocationListEditor.cpp \ - Location.cpp \ - LocationListModel.cpp \ - ../../src/core/external/kfilter/kzip.cpp \ - ../../src/core/external/kfilter/klimitediodevice.cpp \ - ../../src/core/external/kfilter/kgzipfilter.cpp \ - ../../src/core/external/kfilter/kfilterdev.cpp \ - ../../src/core/external/kfilter/kfilterbase.cpp \ - ../../src/core/external/kfilter/karchive.cpp moc_LocationListEditor.cpp \ - moc_LocationListModel.cpp \ - qrc_locationsEditor.cpp -OBJECTS = main.o \ - LocationListEditor.o \ - Location.o \ - LocationListModel.o \ - kzip.o \ - klimitediodevice.o \ - kgzipfilter.o \ - kfilterdev.o \ - kfilterbase.o \ - karchive.o \ - moc_LocationListEditor.o \ - moc_LocationListModel.o \ - qrc_locationsEditor.o -DIST = /usr/share/qt4/mkspecs/common/unix.conf \ - /usr/share/qt4/mkspecs/common/linux.conf \ - /usr/share/qt4/mkspecs/common/gcc-base.conf \ - /usr/share/qt4/mkspecs/common/gcc-base-unix.conf \ - /usr/share/qt4/mkspecs/common/g++-base.conf \ - /usr/share/qt4/mkspecs/common/g++-unix.conf \ - /usr/share/qt4/mkspecs/qconfig.pri \ - /usr/share/qt4/mkspecs/modules/qt_phonon.pri \ - /usr/share/qt4/mkspecs/modules/qt_webkit_version.pri \ - /usr/share/qt4/mkspecs/features/qt_functions.prf \ - /usr/share/qt4/mkspecs/features/qt_config.prf \ - /usr/share/qt4/mkspecs/features/exclusive_builds.prf \ - /usr/share/qt4/mkspecs/features/default_pre.prf \ - /usr/share/qt4/mkspecs/features/release.prf \ - /usr/share/qt4/mkspecs/features/default_post.prf \ - /usr/share/qt4/mkspecs/features/unix/gdb_dwarf_index.prf \ - /usr/share/qt4/mkspecs/features/warn_on.prf \ - /usr/share/qt4/mkspecs/features/qt.prf \ - /usr/share/qt4/mkspecs/features/unix/thread.prf \ - /usr/share/qt4/mkspecs/features/moc.prf \ - /usr/share/qt4/mkspecs/features/resources.prf \ - /usr/share/qt4/mkspecs/features/uic.prf \ - /usr/share/qt4/mkspecs/features/yacc.prf \ - /usr/share/qt4/mkspecs/features/lex.prf \ - /usr/share/qt4/mkspecs/features/include_source_dir.prf \ - locations-editor.pro -QMAKE_TARGET = locations-editor -DESTDIR = -TARGET = locations-editor - -first: all -####### Implicit rules - -.SUFFIXES: .o .c .cpp .cc .cxx .C - -.cpp.o: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<" - -.cc.o: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<" - -.cxx.o: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<" - -.C.o: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o "$@" "$<" - -.c.o: - $(CC) -c $(CFLAGS) $(INCPATH) -o "$@" "$<" - -####### Build rules - -all: Makefile $(TARGET) - -$(TARGET): ui_LocationListEditor.h $(OBJECTS) - $(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS) - -Makefile: locations-editor.pro /usr/share/qt4/mkspecs/linux-g++-64/qmake.conf /usr/share/qt4/mkspecs/common/unix.conf \ - /usr/share/qt4/mkspecs/common/linux.conf \ - /usr/share/qt4/mkspecs/common/gcc-base.conf \ - /usr/share/qt4/mkspecs/common/gcc-base-unix.conf \ - /usr/share/qt4/mkspecs/common/g++-base.conf \ - /usr/share/qt4/mkspecs/common/g++-unix.conf \ - /usr/share/qt4/mkspecs/qconfig.pri \ - /usr/share/qt4/mkspecs/modules/qt_phonon.pri \ - /usr/share/qt4/mkspecs/modules/qt_webkit_version.pri \ - /usr/share/qt4/mkspecs/features/qt_functions.prf \ - /usr/share/qt4/mkspecs/features/qt_config.prf \ - /usr/share/qt4/mkspecs/features/exclusive_builds.prf \ - /usr/share/qt4/mkspecs/features/default_pre.prf \ - /usr/share/qt4/mkspecs/features/release.prf \ - /usr/share/qt4/mkspecs/features/default_post.prf \ - /usr/share/qt4/mkspecs/features/unix/gdb_dwarf_index.prf \ - /usr/share/qt4/mkspecs/features/warn_on.prf \ - /usr/share/qt4/mkspecs/features/qt.prf \ - /usr/share/qt4/mkspecs/features/unix/thread.prf \ - /usr/share/qt4/mkspecs/features/moc.prf \ - /usr/share/qt4/mkspecs/features/resources.prf \ - /usr/share/qt4/mkspecs/features/uic.prf \ - /usr/share/qt4/mkspecs/features/yacc.prf \ - /usr/share/qt4/mkspecs/features/lex.prf \ - /usr/share/qt4/mkspecs/features/include_source_dir.prf \ - /usr/lib/x86_64-linux-gnu/libQtGui.prl \ - /usr/lib/x86_64-linux-gnu/libQtCore.prl - $(QMAKE) -o Makefile locations-editor.pro -/usr/share/qt4/mkspecs/common/unix.conf: -/usr/share/qt4/mkspecs/common/linux.conf: -/usr/share/qt4/mkspecs/common/gcc-base.conf: -/usr/share/qt4/mkspecs/common/gcc-base-unix.conf: -/usr/share/qt4/mkspecs/common/g++-base.conf: -/usr/share/qt4/mkspecs/common/g++-unix.conf: -/usr/share/qt4/mkspecs/qconfig.pri: -/usr/share/qt4/mkspecs/modules/qt_phonon.pri: -/usr/share/qt4/mkspecs/modules/qt_webkit_version.pri: -/usr/share/qt4/mkspecs/features/qt_functions.prf: -/usr/share/qt4/mkspecs/features/qt_config.prf: -/usr/share/qt4/mkspecs/features/exclusive_builds.prf: -/usr/share/qt4/mkspecs/features/default_pre.prf: -/usr/share/qt4/mkspecs/features/release.prf: -/usr/share/qt4/mkspecs/features/default_post.prf: -/usr/share/qt4/mkspecs/features/unix/gdb_dwarf_index.prf: -/usr/share/qt4/mkspecs/features/warn_on.prf: -/usr/share/qt4/mkspecs/features/qt.prf: -/usr/share/qt4/mkspecs/features/unix/thread.prf: -/usr/share/qt4/mkspecs/features/moc.prf: -/usr/share/qt4/mkspecs/features/resources.prf: -/usr/share/qt4/mkspecs/features/uic.prf: -/usr/share/qt4/mkspecs/features/yacc.prf: -/usr/share/qt4/mkspecs/features/lex.prf: -/usr/share/qt4/mkspecs/features/include_source_dir.prf: -/usr/lib/x86_64-linux-gnu/libQtGui.prl: -/usr/lib/x86_64-linux-gnu/libQtCore.prl: -qmake: FORCE - @$(QMAKE) -o Makefile locations-editor.pro - -dist: - @$(CHK_DIR_EXISTS) .tmp/locations-editor1.0.0 || $(MKDIR) .tmp/locations-editor1.0.0 - $(COPY_FILE) --parents $(SOURCES) $(DIST) .tmp/locations-editor1.0.0/ && $(COPY_FILE) --parents LocationListEditor.hpp Location.hpp LocationListModel.hpp ../../src/core/external/kfilter/kzip.h ../../src/core/external/kfilter/klimitediodevice.h ../../src/core/external/kfilter/kgzipfilter.h ../../src/core/external/kfilter/kfilterdev.h ../../src/core/external/kfilter/kfilterbase.h ../../src/core/external/kfilter/karchive.h .tmp/locations-editor1.0.0/ && $(COPY_FILE) --parents ../../data/locationsEditor.qrc .tmp/locations-editor1.0.0/ && $(COPY_FILE) --parents main.cpp LocationListEditor.cpp Location.cpp LocationListModel.cpp ../../src/core/external/kfilter/kzip.cpp ../../src/core/external/kfilter/klimitediodevice.cpp ../../src/core/external/kfilter/kgzipfilter.cpp ../../src/core/external/kfilter/kfilterdev.cpp ../../src/core/external/kfilter/kfilterbase.cpp ../../src/core/external/kfilter/karchive.cpp .tmp/locations-editor1.0.0/ && $(COPY_FILE) --parents LocationListEditor.ui .tmp/locations-editor1.0.0/ && (cd `dirname .tmp/locations-editor1.0.0` && $(TAR) locations-editor1.0.0.tar locations-editor1.0.0 && $(COMPRESS) locations-editor1.0.0.tar) && $(MOVE) `dirname .tmp/locations-editor1.0.0`/locations-editor1.0.0.tar.gz . && $(DEL_FILE) -r .tmp/locations-editor1.0.0 - - -clean:compiler_clean - -$(DEL_FILE) $(OBJECTS) - -$(DEL_FILE) *~ core *.core - - -####### Sub-libraries - -distclean: clean - -$(DEL_FILE) $(TARGET) - -$(DEL_FILE) Makefile - - -check: first - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: moc_LocationListEditor.cpp moc_LocationListModel.cpp -compiler_moc_header_clean: - -$(DEL_FILE) moc_LocationListEditor.cpp moc_LocationListModel.cpp -moc_LocationListEditor.cpp: LocationListEditor.hpp - /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) LocationListEditor.hpp -o moc_LocationListEditor.cpp - -moc_LocationListModel.cpp: Location.hpp \ - LocationListModel.hpp - /usr/bin/moc-qt4 $(DEFINES) $(INCPATH) LocationListModel.hpp -o moc_LocationListModel.cpp - -compiler_rcc_make_all: qrc_locationsEditor.cpp -compiler_rcc_clean: - -$(DEL_FILE) qrc_locationsEditor.cpp -qrc_locationsEditor.cpp: ../../data/locationsEditor.qrc \ - ../../data/iso3166-1-alpha-2.utf8 \ - ../../data/icon.bmp - /usr/bin/rcc -name locationsEditor ../../data/locationsEditor.qrc -o qrc_locationsEditor.cpp - -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: ui_LocationListEditor.h -compiler_uic_clean: - -$(DEL_FILE) ui_LocationListEditor.h -ui_LocationListEditor.h: LocationListEditor.ui - /usr/bin/uic-qt4 LocationListEditor.ui -o ui_LocationListEditor.h - -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_moc_header_clean compiler_rcc_clean compiler_uic_clean - -####### Compile - -main.o: main.cpp LocationListEditor.hpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o main.o main.cpp - -LocationListEditor.o: LocationListEditor.cpp LocationListEditor.hpp \ - ui_LocationListEditor.h \ - LocationListModel.hpp \ - Location.hpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o LocationListEditor.o LocationListEditor.cpp - -Location.o: Location.cpp Location.hpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o Location.o Location.cpp - -LocationListModel.o: LocationListModel.cpp LocationListModel.hpp \ - Location.hpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o LocationListModel.o LocationListModel.cpp - -kzip.o: ../../src/core/external/kfilter/kzip.cpp ../../src/core/external/kfilter/kzip.h \ - ../../src/core/external/kfilter/kfilterdev.h \ - ../../src/core/external/kfilter/klimitediodevice.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o kzip.o ../../src/core/external/kfilter/kzip.cpp - -klimitediodevice.o: ../../src/core/external/kfilter/klimitediodevice.cpp ../../src/core/external/kfilter/klimitediodevice.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o klimitediodevice.o ../../src/core/external/kfilter/klimitediodevice.cpp - -kgzipfilter.o: ../../src/core/external/kfilter/kgzipfilter.cpp ../../src/core/external/kfilter/kgzipfilter.h \ - ../../src/core/external/kfilter/kfilterbase.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o kgzipfilter.o ../../src/core/external/kfilter/kgzipfilter.cpp - -kfilterdev.o: ../../src/core/external/kfilter/kfilterdev.cpp ../../src/core/external/kfilter/kfilterdev.h \ - ../../src/core/external/kfilter/kfilterbase.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o kfilterdev.o ../../src/core/external/kfilter/kfilterdev.cpp - -kfilterbase.o: ../../src/core/external/kfilter/kfilterbase.cpp ../../src/core/external/kfilter/kfilterbase.h \ - ../../src/core/external/kfilter/kgzipfilter.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o kfilterbase.o ../../src/core/external/kfilter/kfilterbase.cpp - -karchive.o: ../../src/core/external/kfilter/karchive.cpp ../../src/core/external/kfilter/karchive.h \ - ../../src/core/external/kfilter/klimitediodevice.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o karchive.o ../../src/core/external/kfilter/karchive.cpp - -moc_LocationListEditor.o: moc_LocationListEditor.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_LocationListEditor.o moc_LocationListEditor.cpp - -moc_LocationListModel.o: moc_LocationListModel.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_LocationListModel.o moc_LocationListModel.cpp - -qrc_locationsEditor.o: qrc_locationsEditor.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o qrc_locationsEditor.o qrc_locationsEditor.cpp - -####### Install - -install: FORCE - -uninstall: FORCE - -FORCE: - Binary files /tmp/HO3Yl05qTe/stellarium-0.12.1/util/locations-editor/locations-editor and /tmp/qEvCSzZF1M/stellarium-0.12.4/util/locations-editor/locations-editor differ diff -Nru stellarium-0.12.1/util/macosx_bundle.sh stellarium-0.12.4/util/macosx_bundle.sh --- stellarium-0.12.1/util/macosx_bundle.sh 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/macosx_bundle.sh 2013-08-04 06:20:27.000000000 +0000 @@ -5,6 +5,14 @@ PROJECT_SOURCE_DIR=$1 shift; +QTPLUGIN_DIR="" +for d in /Developer/Applications/Qt/plugins /opt/local/share/qt4/plugins; do + if [ -e "$d" ]; then + QTPLUGIN_DIR="$d" + break + fi +done + mv ${CMAKE_INSTALL_PREFIX}/bin ${CMAKE_INSTALL_PREFIX}/MacOS if [ -e "${CMAKE_INSTALL_PREFIX}/MacOS/stellarium.app/Contents/MacOS/stellarium" ] ; then @@ -20,7 +28,8 @@ mkdir ${CMAKE_INSTALL_PREFIX}/Frameworks /usr/bin/perl util/pkgApp.pl ${CMAKE_INSTALL_PREFIX} MacOS/stellarium Frameworks mkdir ${CMAKE_INSTALL_PREFIX}/plugins -cp -pr /Developer/Applications/Qt/plugins/{imageformats,iconengines}/* ${CMAKE_INSTALL_PREFIX}/plugins + +cp -pr "$QTPLUGIN_DIR/"{imageformats,iconengines}/* ${CMAKE_INSTALL_PREFIX}/plugins for f in ${CMAKE_INSTALL_PREFIX}/plugins/*.dylib; do fdir=`dirname $f` dir=`basename $fdir` diff -Nru stellarium-0.12.1/util/parse_hip.pl stellarium-0.12.4/util/parse_hip.pl --- stellarium-0.12.1/util/parse_hip.pl 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/parse_hip.pl 2013-09-07 15:50:48.000000000 +0000 @@ -4,8 +4,12 @@ # from source hip_main.dat data file available at # http://cdsweb.u-strasbg.fr/viz-bin/Cat?I/239 -# Copyright 2005 Robert Spearman +# Copyright (C) 2005 Robert Spearman # +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. + # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 @@ -16,9 +20,8 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + print "\nConverting hip_main.dat to hipparcos.fab\n\n"; print "WARNING: This script has only been tested on x86 Linux.\n"; diff -Nru stellarium-0.12.1/util/pkgApp.pl stellarium-0.12.4/util/pkgApp.pl --- stellarium-0.12.1/util/pkgApp.pl 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/pkgApp.pl 2013-08-04 06:20:27.000000000 +0000 @@ -63,13 +63,16 @@ if ( ! -e $fwPath ) { my $c = "cp -RP -p $absname $frameworks_dir/$fwname"; `$c`; + system('chmod', '-R', '755', "$frameworks_dir/$fwname"); } else { $not_existed = 0; } my $c = sprintf($id_inmt, $relPath, $fwPath); + print "$c\n"; `$c`; $c = sprintf($ch_inmt, $name, $relPath, $main_executable); + print "$c\n"; `$c`; if ( $not_existed ) { @@ -97,13 +100,16 @@ if ( ! -e $fwPath ) { my $c = "cp -RP -p $absname $frameworks_dir/$fwname"; `$c`; + system('chmod', '-R', '755', "$frameworks_dir/$fwname"); } else { $not_existed = 0; } my $c = sprintf($id_inmt, $relPath, $fwPath); + print "$c\n"; `$c`; $c = sprintf($ch_inmt, $name, $relPath, $main_executable); + print "$c\n"; `$c`; if ( $not_existed ) { @@ -130,13 +136,16 @@ if ( ! -e $fwPath ) { my $c = "cp -P $absname $frameworks_dir/$current_arch"; `$c`; + system('chmod', '-R', '755', "$frameworks_dir/$current_arch"); } else { $not_existed = 0; } my $c = sprintf($id_inmt, $relPath, $fwPath); + print "$c\n"; `$c`; $c = sprintf($ch_inmt, $absname, $relPath, $main_executable); + print "$c\n"; `$c`; if ( $not_existed ) { @@ -166,8 +175,10 @@ my $relPath = "\@executable_path/$basename"; my $c = sprintf($id_inmt, $relPath, $absname); + print "$c\n"; `$c`; $c = sprintf($ch_inmt, $name, $relPath, $main_executable); + print "$c\n"; `$c`; &recurse($absname, $frameworks_dir, $current_arch); @@ -224,7 +235,7 @@ sub locateFramework { my $fname = shift; my $lib; - foreach $lib ( '~/Library/Frameworks', '/Library/Frameworks', '/usr/local/Trolltech/Qt-4.7.1/lib' ) { + foreach $lib ( '/opt/local/Library/Frameworks', '~/Library/Frameworks', '/Library/Frameworks', '/usr/local/Trolltech/Qt-4.7.1/lib' ) { if ( -e "$lib/$fname" ) { return "$lib/$fname"; } diff -Nru stellarium-0.12.1/util/runAllDSS.py stellarium-0.12.4/util/runAllDSS.py --- stellarium-0.12.1/util/runAllDSS.py 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/runAllDSS.py 2013-09-07 15:50:48.000000000 +0000 @@ -1,6 +1,8 @@ #!/usr/bin/python +# # Simple script which convert the FITS headers associated to Brian McLean DSS images into simplified JSON files # Fabien Chereau fchereau@eso.org +# import sys import os diff -Nru stellarium-0.12.1/util/skyTile.py stellarium-0.12.4/util/skyTile.py --- stellarium-0.12.1/util/skyTile.py 2013-03-26 10:44:46.000000000 +0000 +++ stellarium-0.12.4/util/skyTile.py 2013-09-07 15:50:48.000000000 +0000 @@ -1,5 +1,7 @@ #!/usr/bin/python +# # Fabien Chereau fchereau@eso.org +# import os import gzip